Server : LiteSpeed
System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User : nandedex ( 1060)
PHP Version : 8.1.33
Disable Function : NONE
Directory :  /home/nandedex/www/s.nandedexpress.com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]


Current File : /home/nandedex/www/s.nandedexpress.com/ml-slider.tar
admin/Notices.php000064400000050337151213254510007760 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

if (!class_exists('Updraft_Notices_1_0')) {
    require_once(METASLIDER_PATH . 'admin/lib/Updraft_Notices.php');
}

/**
 * Meta Slider Notices
 */
class MetaSlider_Notices extends Updraft_Notices_1_0
{
    /**
     * All Ads
     *
     * @var object $ads
     */
    protected $ads;

    /**
     * Notices content
     *
     * @var object $notices_content
     */
    protected $notices_content;

    /**
     * Populates ad content and loads assets
     */
    public function __construct()
    {
        /*
         * There are three options you can use to force ads to show.
         * The second two require the first to be set to true
         *
         * define('METASLIDER_FORCE_NOTICES', true);
         *
         * Be sure not to set both of these at the same time
         * define('METASLIDER_FORCE_LITE_NOTICES', true);
         * define('METASLIDER_FORCE_PRO_NOTICES', true);
         *
         */

        $this->ads = $this->lite_notices();

        // To avoid showing the user ads off the start, lets wait
        $this->notices_content = ($this->ad_delay_has_finished()) ? $this->ads : array();

        add_action('admin_enqueue_scripts', array($this, 'add_notice_assets'));
        add_action('wp_ajax_notice_handler', array($this, 'ajax_notice_handler'));
        // Notices in admin pages except in MetaSlider admin pages - See MetaSliderPlugin->filter_admin_notices()
        add_action('admin_notices', array($this, 'show_dashboard_notices'));
        // @since 3.90.1 - Notices in MetaSlider admin pages
        add_action('metaslider_admin_notices', array($this, 'show_dashboard_notices'));
    }

    /**
     * Handles assets for the notices
     */
    public function add_notice_assets()
    {
        wp_enqueue_style('ml-slider-notices-css', METASLIDER_ADMIN_URL . 'assets/css/notices.css', false, METASLIDER_ASSETS_VERSION);
        wp_register_script('metaslider-notices-extra-js', '');
        wp_enqueue_script('metaslider-notices-extra-js');
        $nonce = wp_create_nonce('metaslider_handle_notices_nonce');
        $this->wp_add_inline_script(
            'metaslider-notices-extra-js',
            "window.metaslider_notices_handle_notices_nonce = '{$nonce}'"
        );
    }

    /**
     * Deprecated for MetaSlider for now
     */
    public function notices_init()
    {
        return;
    }

    /**
     * Returns notices that free/lite users should see. dismiss_time should match the key
     * hide_time is in weeks. Use a string to hide for 9999 weeks.
     *
     * @return array returns an array of notices
     */
    protected function lite_notices()
    {
        if (defined('METASLIDER_FORCE_PRO_NOTICES') && METASLIDER_FORCE_PRO_NOTICES) {
            // Override to force pro, but make sure both overrides arent set
            return (!defined('METASLIDER_FORCE_LITE_NOTICES')) ? $this->pro_notices() : array();
        }

        return [
            'rate_plugin' => [
                'title' => _x('Like MetaSlider? Please help us by giving a positive review at WordPress.org', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
                'text' => '',
                'image' => 'notices/metaslider_logo.png',
                'button_link' => 'metaslider_rate',
                'button_meta' => 'review',
                'dismiss_time' => 'rate_plugin',
                'hide_time' => 12,
                'supported_positions' => ['header'],
            ],
            'pro_layers' => [
                'title' => __('Spice up your site with animated layers and video slides with MetaSlider Pro', 'ml-slider'),
                'text' => '',
                'image' => 'notices/metaslider_logo.png',
                'button_link' => 'metaslider',
                'button_meta' => 'buy-w-discount',
                'dismiss_time' => 'pro_layers',
                'hide_time' => 12,
                'supported_positions' => ['header'],
                'validity_function' => 'metaslider_pro_is_not_installed',
            ],
            'pro_features' => [
                'title' => __('Increase your revenue and conversion with video slides and many more MetaSlider Pro features', 'ml-slider'),
                'text' => '',
                'image' => 'notices/metaslider_logo.png',
                'button_link' => 'metaslider',
                'button_meta' => 'buy-w-discount',
                'dismiss_time' => 'pro_features',
                'hide_time' => 12,
                'supported_positions' => ['header'],
                'validity_function' => 'metaslider_pro_is_not_installed',
            ],
            'translation' => [
                'title' => __('Can you translate? Want to improve MetaSlider for speakers of your language?', 'ml-slider'),
                'text' => '',
                'image' => 'notices/metaslider_logo.png',
                'button_link' => 'metaslider_translate',
                'button_meta' => 'lets_start',
                'dismiss_time' => 'translation',
                'hide_time' => 12,
                'supported_positions' => ['header'],
                'validity_function' => 'translation_needed',
            ],
        ];
    }

    /**
     * Premium user notices, if any.
     *
     * @return array
     */
    protected function pro_notices()
    {
        if (defined('METASLIDER_FORCE_LITE_NOTICES') && METASLIDER_FORCE_LITE_NOTICES) {
            // Override to force pro, but make sure both overrides arent set
            return (!defined('METASLIDER_FORCE_PRO_NOTICES')) ? $this->lite_notices() : [];
        }

        return [];
    }

    /**
     * Add fields needed for an notice to show
     *
     * @param string $notice - the name of the notice
     * @return array
     */
    public function prepare_notice_fields($notice)
    {
        if (!isset($notice['dismiss_time']) && isset($notice['discount_code'])) {
            $notice['dismiss_time'] = $notice['discount_code'];
        }
        return $notice;
    }

    /**
     * Checks if MetaSlider Pro is NOT installed
     *
     * @return bool
     */
    protected function metaslider_pro_is_not_installed()
    {
        return ! metaslider_pro_is_installed();
    }

    /**
     * Checks if the user agent isn't set as en_GB or en_US, and if the language file doesn't exist
     *
     * @param  string $plugin_base_dir The plguin base directory
     * @param  string $product_name    Product name
     * @return bool
     */
    protected function translation_needed($plugin_base_dir = '', $product_name = '')
    {
        return parent::translation_needed(METASLIDER_PATH, 'ml-slider');
    }

    /**
     * This method checks to see if the ad has been dismissed
     *
     * @param string $ad_identifier - identifier for the ad
     * @return bool returns true when we dont want to show the ad
     */
    protected function check_notice_dismissed($ad_identifier)
    {
        if ($this->force_ads()) {
            return false;
        }
        return (time() < get_option("ms_hide_{$ad_identifier}_ads_until"));
    }

    /**
     * Checks whether this is an ad page - hard-coded
     *
     * @return bool
     */
    protected function is_page_with_ads()
    {
        global $pagenow;
        $page = isset($_GET['page']) ? sanitize_key($_GET['page']) : '';

        // I'm thinking to limit the check to the actual settings page for now
        // This way, if they activate the plugin but don't start using it until
        // a few weeks after, it won't bother them with ads.
        // return ('index.php' === $pagenow) || ($page === 'metaslider');
        return ($page === 'metaslider');
    }

    /**
     * This method checks to see if the ad waiting period is over (2 weeks)
     * If not, it will set a two week time
     *
     * @return bool returns true when we dont want to show the ad
     */
    protected function ad_delay_has_finished()
    {
        // The delay could be empty, ~2 weeks (initial delay) or ~12 weeks
        $delay = get_option("ms_hide_all_ads_until");

        if ($this->force_ads()) {
            // If there's an override, return true
            return true;
        }

        if (!$this->is_page_with_ads() && !$delay) {
            // Only start the timer if they see a page that can serve ads
            return false;
        }

        if (!$delay) {
            // Set the delay for when they will first see an ad, 2 weeks; returns false
            return !update_option("ms_hide_all_ads_until", time() + 2 * 7 * 86400);
        } elseif ((time() > $delay) && !get_option("ms_ads_first_seen_on")) {
            // Serve ads now, and note the time they first saw ads
            update_option("ms_ads_first_seen_on", time());

            // Now that they can see ads, make sure the rate_plugin is shown first.
            // Since this shows after 2 weeks, it's better timing.
            $notices = $this->lite_notices();
            $this->ads = array('rate_plugin' => $notices['rate_plugin']);
            return true;
        } elseif (time() < $delay) {
            // This means an ad was dismissed and there's a delay
            return false;
        } elseif (get_option("ms_ads_first_seen_on")) {
            // This means the initial delay has elapsed,
            // and the dismissed period expired
            return true;
        }

        if (metaslider_pro_is_installed()) {
            // If they are pro don't check anything but show the pro ad.
            return true;
        }

        // Default to not show an ad, in case there's some error
        return false;
    }

    /**
     * Method to handle dashboard notices
     */
    public function show_dashboard_notices()
    {
        $current_page = get_current_screen();
        if ('dashboard' === $current_page->base && metaslider_user_is_ready_for_notices()) {
            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            echo $this->do_notice(false, 'dashboard', true);
        }
    }

    /**
     * Selects the template and returns or displays the notice
     *
     * @param array  $notice_information     - variable names/values to pass through to the template
     * @param bool   $return_instead_of_echo - whether to
     * @param string $position               - where the notice is being displayed
     * @return null|string - depending on the value of $return_instead_of_echo
     */
    protected function render_specified_notice($notice_information, $return_instead_of_echo = false, $position = 'header')
    {
        $views = array(
            'header' => 'header-notice.php',
        );
        $view = isset($views[$position]) ? $views[$position] : 'header-notice.php';
        return $this->include_template($view, $return_instead_of_echo, $notice_information);
    }

    /**
     * Displays or returns the template
     *
     * @param string $path                   file name of the template
     * @param bool   $return_instead_of_echo Return the template instead of printing
     * @param array  $args                   template arguments
     * @return null|string
     */
    public function include_template($path, $return_instead_of_echo = false, $args = array())
    {
        if ( $return_instead_of_echo ) {
            ob_start();
        }

        if ( ! empty( $args['hide_time']) && is_int($args['hide_time'])) {
            $hide_time = $args['hide_time'] . ' ' . __('weeks', 'ml-slider');
        }

        include METASLIDER_PATH . 'admin/views/notices/' . $path;

        if ($return_instead_of_echo) {
            return ob_get_clean();
        }
    }

    /**
     * Builds a link based on the type of notice being requested
     *
     * @param string $link - the URL to link to
     * @param string $type - which notice is being displayed
     * @return string - the resulting HTML
     */
    public function get_button_link($link, $type)
    {
        $messages = array(
            'lets_start' => __('Let\'s Start &rarr;', 'ml-slider'),
            'review' => _x('Review MetaSlider &rarr;', 'Keep the plugin name "MetaSlider" when possible', 'ml-slider'),
            'ml-slider' => __('Find out more &rarr;', 'ml-slider'),
            'buy-w-discount' => __('Get MetaSlider Pro &rarr;', 'ml-slider'),
            'signup' => __('Sign up &rarr;', 'ml-slider'),
            'go_there' => __('Go there &rarr;', 'ml-slider')
        );
        $message = isset($messages[$type]) ? $messages[$type] : __('Read more', 'ml-slider');

        return '<a class="updraft_notice_link ml-discount-ad-button" target="_blank" href="' . esc_url($this->get_notice_url($link)) . '">' . esc_html($message) . '</a>';
    }

    /**
     * Handles any notice related ajax calls
     *
     * @return void
     */
    public function ajax_notice_handler()
    {
        if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'metaslider_handle_notices_nonce')) {
            wp_send_json_error(array(
                'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
            ), 401);
        }

        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
        if (! current_user_can($capability)) {
            wp_send_json_error(
                [
                    'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                ],
                403
            );
        }

        if (! isset($_POST['ad_identifier'])) {
            wp_send_json_error(array(
                'message' => __('Bad request', 'ml-slider')
            ), 400);
        }

        $ad_data = $this->ad_exists(sanitize_key($_POST['ad_identifier']));

        if (is_wp_error($ad_data)) {
            wp_send_json_error(array(
                'message' => __('This item does not exist. Please refresh the page and try again.', 'ml-slider')
            ), 401);
        }

        $result = $this->dismiss_ad($ad_data['dismiss_time'], $ad_data['hide_time']);

        if (is_wp_error($result)) {
            wp_send_json_error(array(
                'message' => $result->get_error_message()
            ), 409);
        }

        wp_send_json_success(array(
            'message' => __('The option was successfully updated', 'ml-slider'),
        ), 200);
    }

    /**
     * Returns the available ads that havent been dismissed by the user
     *
     * @param string|array $location     the location for the ad
     * @param boolean      $bypass_delay Bypass the ad delay
     * @return array the identifier for the ad
     */
    public function active_ads($location = 'header', $bypass_delay = false)
    {
        $dismissed_ads = array();

        $ads = ($bypass_delay) ? $this->ads : $this->notices_content;

        // Filter through all site options (cached)
        foreach (wp_load_alloptions() as $key => $value) {
            if (strpos($key, 'ms_hide_') && strpos($key, '_ads_until')) {
                $key = str_replace(array('ms_hide_', '_ads_until'), '', $key);
                $dismissed_ads[$key] = $value;
            }
        }

        // Filter out if the dismiss time has expired, then compare to the database
        $valid_ads = array();
        foreach ($ads as $ad_identifier => $values) {
            $is_valid = isset($values['validity_function'])
                ? (bool)call_user_func([$this, $values['validity_function']]) : true;
            $not_dismissed = !$this->check_notice_dismissed($ad_identifier);
            $is_supported = in_array($location, $values['supported_positions']);

            if ($is_valid && $not_dismissed && $is_supported) {
                $valid_ads[$ad_identifier] = $values;
            }
        }

        return array_diff_key($valid_ads, $dismissed_ads);
    }

    /**
     * Returns all possible ads or the specified identifier
     *
     * @param string|null $ad_identifier Ad Identifier
     * @return string|null the data of the ad
     */
    public function get_ad($ad_identifier = null)
    {
        $all_notices = array_merge($this->pro_notices(), $this->lite_notices());
        return is_null($ad_identifier) ? $all_notices : $all_notices['ad_identifier'];
    }

    /**
     * Checks if the ad identifier exists in any of the ads above
     *
     * @param string $ad_identifier Ad Identifier
     * @return bool the data of the ad
     */
    public function ad_exists($ad_identifier)
    {
        $all_notices = array_merge($this->pro_notices(), $this->lite_notices());
        if (isset($all_notices[$ad_identifier])) {
            return $all_notices[$ad_identifier];
        }

        return new WP_Error('bad_call', __('The requested data does not exist.', 'ml-slider'), array('status' => 401));
    }

    /**
     * Updates the stored value for how long to hide the ads
     *
     * @param string     $ad_identifier Ad Identifier
     * @param int|string $weeks         time in weeks or a string to show
     * @return bool|WP_Error whether the update was a success
     */
    public function dismiss_ad($ad_identifier, $weeks)
    {

        // If the time isn't specified it will hide "forever" (9999 weeks)
        // Update 12/18/2017 - will set this an extra week, so that this individual ad will hide, for example, 13 weeks, while ALL ads will hide for 12 weeks. This ensures that the user doesn't see the same ad twice. Minor detail.
        $weeks = is_int($weeks) ? $weeks + 1 : 9999;

        $result = update_option("ms_hide_{$ad_identifier}_ads_until", time() + $weeks * 7 * 86400);

        // Update 12/18/2017 - Hide all ads for 12 weeks (this used to be 24 hours)
        // This skips over the scenario when a user has seen a seasonal ad within the 2 week grace period. That way we can still show them the "rate plugin" ad after 2 weeks.
        if (get_option("ms_ads_first_seen_on")) {
            update_option("ms_hide_all_ads_until", time() + 12 * 7 * 86400);
        }

        return $result ? $result : new WP_Error('update_failed', __('The attempt to update the option failed.', 'ml-slider'), array('status' => 409));
    }

    /**
     * Returns the url for a notice link
     *
     * @param string $link_id the link to get the url
     * @return string the url for the link id
     */
    public function get_notice_url($link_id)
    {
        $urls = array(
            'metaslider' => apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade'),
            'metaslider_rate' => 'https://wordpress.org/support/plugin/ml-slider/reviews?rate=5#new-post',
            'metaslider_survey' => 'https://www.metaslider.com/survey',
            'metaslider_survey_pro' => 'https://www.metaslider.com/survey-pro',
            'metaslider_translate' => 'https://translate.wordpress.org/projects/wp-plugins/ml-slider',
        );

        // Return the website url if the ID was not set
        if (!isset($urls[$link_id])) {
            return 'https://www.metaslider.com';
        }

        // Return if analytics code is already set
        if (strpos($urls[$link_id], 'utm_source')) {
            return esc_url($urls[$link_id]);
        }

        // Add our analytics code
        return esc_url(add_query_arg(array(
            'utm_source' => 'metaslider-plugin-page',
            'utm_medium' => 'banner'
        ), $urls[$link_id]));
    }

    /**
     * Forces ads to show when any override is set
     */
    private function force_ads()
    {
        return (defined('METASLIDER_FORCE_NOTICES') && METASLIDER_FORCE_NOTICES) ||
            (defined('METASLIDER_FORCE_PRO_NOTICES') && METASLIDER_FORCE_PRO_NOTICES) ||
            (defined('METASLIDER_FORCE_LITE_NOTICES') && METASLIDER_FORCE_LITE_NOTICES);
    }

    /**
     * Polyfill to handle the wp_add_inline_script() function.
     *
     * @param  string $handle   The script identifier
     * @param  string $data     The script to add, without <script> tags
     * @param  string $position Whether to output before or after
     *
     * @return object|bool
     */
    public function wp_add_inline_script($handle, $data, $position = 'after')
    {
        if (function_exists('wp_add_inline_script')) {
            return wp_add_inline_script($handle, $data, $position);
        }
        global $wp_scripts;
        if (!$data) {
            return false;
        }

        // First fetch any existing scripts
        $script = $wp_scripts->get_data($handle, 'data');

        // Append to the end
        $script .= $data;

        return $wp_scripts->add_data($handle, 'data', $script);
    }
}
admin/support/Analytics.php000064400000023440151213254510012012 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

/**
 * Class to handle analytics for MetaSlider. Will act more like a controller
 */
class MetaSlider_Analytics
{
    /**
     * @var Appsero\Insights $appsero
     */
    public $appsero;

    /**
     * @var array $whereToShow
     */
    public $whereToShow = array('plugins', 'dashboard');

    /**
     * Start various analytics systems
     *
     * @return void
     */
    public function __construct()
    {
        // Since only one service for now, keep it simple and just load it directly
        $this->boot(
            apply_filters('metaslider_appsero_app_key', 'c3c10cf6-1a8f-4d7f-adf3-6bbbc5fe2885'),
            apply_filters('metaslider_appsero_app_name', 'MetaSlider'),
            apply_filters('metaslider_appsero_app_path', METASLIDER_PATH . 'ml-slider.php')
        );

        // Show notice only if they are not already opt in (pro will override this to show the opt-out notice once)
        add_action('wp_ajax_handle_optin_action', array($this, 'handleOptinDismiss'));
        add_action('admin_enqueue_scripts', array($this, 'addAdminNonce'));
    }

    /**
     * Show the dang thing
     *
     * @return void
     */
    public function addAdminNonce()
    {
        wp_register_script('metaslider-optin-extra-js', '');
        wp_enqueue_script('metaslider-optin-extra-js');
        $nonce = wp_create_nonce('metaslider_optin_notice_nonce');
        $this->wp_add_inline_script(
            'metaslider-optin-extra-js',
            "window.metaslider_optin_notice_nonce = '{$nonce}'"
        );
    }

    /**
     * Handle the skip on the notice
     *
     * @return void
     */
    public function handleOptinDismiss()
    {
        if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'metaslider_optin_notice_nonce')) {
            wp_send_json_error(array(
                'message' => esc_html__('The security check failed. Please refresh the page and try again.', 'ml-slider')
            ), 401);
        }
        // They opted in, so we can instruct Appsero to communicate with the server
        if (isset($_REQUEST['activate']) && filter_var($_REQUEST['activate'], FILTER_VALIDATE_BOOLEAN)) {
            update_option('metaslider_optin_via', 'notice', true);
            $this->optin();
        }
        update_user_option(get_current_user_id(), 'metaslider_optin_notice_dismissed', time());
        wp_send_json_success();
    }

    /**
     * Start Appsero's insights client
     *
     * @var string $key - The app key
     * @var string $name - The app slug
     * @var string $path - The app path to main file
     *
     * @return MetaSlider_Analytics
     */
    public function boot($key, $name, $path)
    {
        if (is_multisite()) {
            return $this;
        }
        if (!class_exists('Appsero\\Client')) {
            require_once(METASLIDER_PATH . 'lib/appsero/src/Client.php');
        }
        add_filter('ml-slider_tracker_data', array($this, 'filterTrackingData'));
        $client = new Appsero\Client($key, $name, $path);
        $this->appsero = $client->insights();
        return $this;
    }

    /**
     * Start Appsero's insights client
     *
     * @return void
     */
    public function load()
    {
        if (!$this->appsero) {
            return;
        }

        if (self::siteIsOptin()) {
            // If the user has opted in to sharing data with MetaSlider, we can skip the Appsero opt in
            // $this->appsero->hide_notice()->init()->optinIfNotAlready(); <-- would be nice
            $this->appsero->hide_notice()->add_extra(array($this, 'extraDataToCollect'))->init();
            if (get_option('ml-slider_allow_tracking') === 'no') {
                $this->appsero->optin();
            }
        } else {
            // Here we are hiding the notice for users that aren't opted in, because we are serving our own notices
            // We will make sure they are opted out from appsero too. Note, this initializes, but that's just for
            // showing the notice and doesn't do any actual tracking unless the user approves.
            $this->appsero->hide_notice()->add_extra(array($this, 'extraDataToCollect'))->init();
            if (get_option('ml-slider_allow_tracking') === 'yes') {
                $this->appsero->optout();
            }
        }
    }

    /**
     * Filter Appsero's data
     * - We want the user that opts in, not the first admin user
     *
     * @var array $data - The data from Appsero
     *
     * @return array
     */
    public function filterTrackingData($data)
    {
        if (!$extras = get_option('metaslider_optin_user_extras')) {
            return $data;
        }
        if ($admin_user = get_userdata($extras['id'])) {
            $data['admin_email'] = $admin_user->user_email;
            $data['first_name'] = $admin_user->first_name ? $admin_user->first_name : $admin_user->display_name;
            $data['last_name']  = $admin_user->last_name;
        }
        return $data;
    }

    /**
     * Add some extra fields - This is called async now so no need to cache it.
     *
     * @return array
     */
    public function extraDataToCollect()
    {
        try {
            $sliders_count = new WP_Query(array(
                'post_type' => 'ml-slider',
                'post_status' => array('inherit', 'publish'),
                'suppress_filters' => 1,
                'posts_per_page' => -1
            ));

            $date_activated = new DateTime();
            $date_activated->setTimestamp((int) get_option('ms_hide_all_ads_until'));
            $date_activated->modify('-2 week');
            $date_activated = $date_activated->getTimeStamp();
            $data = array(
                'has_pro_installed' => metaslider_pro_is_installed() ? metaslider_pro_version() : 'false',
                'cancelled_tour_on' => get_option('metaslider_tour_cancelled_on'),
                'optin_user_info' => get_option('metaslider_optin_user_extras'),
                'optin_via' => get_option('metaslider_optin_via'),
                'slider_count' => $sliders_count ? $sliders_count->found_posts : 0,
                'first_activated_on' => $date_activated > 0 ? $date_activated : 0
            );

            return $data;
        } catch (\Exception $e) {
            return array();
        }
    }

    /**
     * Helper method for checking whether the site has opted in
     *
     * @return boolean
     */
    public static function siteIsOptin()
    {
        // Users of non-WP.org plugins can manage the opt in state manually here
        if (apply_filters('metaslider_force_optout', false)) {
            return self::updateOptinStatusTo(false);
        }
        if (apply_filters('metaslider_force_optin', false)) {
            return self::updateOptinStatusTo(true);
        }

        $settings = get_option('metaslider_global_settings');
        return isset($settings['optIn']) && (int) $settings['optIn'] > 0;
    }

    /**
     * Helper method for setting the opt in status
     *
     * @var string $status - Whether the user is opt in ('true') or opt out ('false')
     *
     * @return boolean - The same as $status
     */
    public static function updateOptinStatusTo($status)
    {
        $settings = get_option('metaslider_global_settings');

        $settings['optIn'] = filter_var($status, FILTER_VALIDATE_BOOLEAN) ? 1 : 0;
        update_option('metaslider_global_settings', $settings, true);

        return filter_var($status, FILTER_VALIDATE_BOOLEAN);
    }

    /**
     * Method to optin
     * Note: Need to init() before optin/optout
     *
     * @return void
     */
    public function optin()
    {
        $current_user = wp_get_current_user();

        //check if there is a custom email added for optin
        $optin_email = get_option('metaslider_optin_email');
        if (!empty($optin_email)) {
            $use_email = filter_var($optin_email, FILTER_SANITIZE_EMAIL);
        } else {
            $use_email = $current_user->user_email;
        }

        update_option('metaslider_optin_user_extras', array(
            'id' => $current_user->ID,
            'email' => $use_email,
            'ip' => isset($_SERVER['REMOTE_ADDR']) ? sanitize_text_field($_SERVER['REMOTE_ADDR']) : '', // phpcs:ignore WordPressVIPMinimum.Variables.ServerVariables.UserControlledHeaders
            'time' => time()
        ));

        if ($this->appsero) {
            $this->appsero->hide_notice()->add_extra(array($this, 'extraDataToCollect'))->init();
            $this->appsero->optin();
        }

        self::updateOptinStatusTo('true');
    }

    /**
     * Method to optout
     * Note: Need to init() before optin/optout
     *
     * @return void
     */
    public function optout()
    {
        // We could possibly track who opted out, but for now just clear it
        update_option('metaslider_optin_user_extras', array());

        if ($this->appsero) {
            $this->appsero->hide_notice()->init();
            $this->appsero->optout();
        }

        self::updateOptinStatusTo('false');
    }

    /**
     * Polyfill to handle the wp_add_inline_script() function.
     *
     * @param  string $handle   The script identifier
     * @param  string $data     The script to add, without <script> tags
     * @param  string $position Whether to output before or after
     *
     * @return object|bool
     */
    public function wp_add_inline_script($handle, $data, $position = 'after')
    {
        if (function_exists('wp_add_inline_script')) {
            return wp_add_inline_script($handle, $data, $position);
        }
        global $wp_scripts;
        if (!$data) {
            return false;
        }

        // First fetch any existing scripts
        $script = $wp_scripts->get_data($handle, 'data');

        // Append to the end
        $script .= $data;

        return $wp_scripts->add_data($handle, 'data', $script);
    }
}
admin/support/Settings.php000064400000002345151213254510011664 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

if (! class_exists('MetaSlider_Settings')) {
    /**
     * Class to handle settings for MetaSlider.
     */
    class MetaSlider_Settings
    {
        const GLOBAL_OPTIONS_OPTION_NAME = 'metaslider_global_settings';

        /**
         * Instance object
         *
         * @var MetaSlider_Settings
         * @see get_instance()
         */
        protected static $instance = null;

        public function __construct()
        {
        }

        /**
         * Used to access the instance
         *
         * @return MetaSlider_Settings - class instance
         */
        public static function get_instance()
        {
            if (null === self::$instance) {
                self::$instance = new self();
            }

            return self::$instance;
        }

        private function get_option($option_name, $default = null)
        {
            $settings = get_option(self::GLOBAL_OPTIONS_OPTION_NAME);

            if (false === $settings) {
                return $default;
            }

            if (! isset($settings[$option_name])) {
                return $default;
            }

            return $settings[$option_name];
        }
    }
}
admin/Gutenberg.php000064400000007016151213254510010272 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

/**
 * Adds a MetaSlider block to Gutenberg
 */
class MetaSlider_Gutenberg
{
    /**
     * Init
     */
    public function __construct()
    {
        add_action('enqueue_block_editor_assets', array($this,'enqueue_block_scripts'));
        if (isset($_REQUEST['override_preview_style']) && filter_var($_REQUEST['override_preview_style'], FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE)) {
            add_filter('metaslider_preview_styles', array($this, 'preview_styles'));
        }
    }

    /**
     * Enqueues gutenberg scripts
     */
    public function enqueue_block_scripts()
    {
        $version = MetaSliderPlugin::get_instance()->version;

        // Enqueue the bundled block JS file
        wp_enqueue_script(
            'metaslider-blocks',
            plugins_url('assets/dist/js/editor-block.js', __FILE__),
            array('wp-i18n', 'wp-element', 'wp-block-library', 'wp-components', 'wp-api'),
            $version
        );

        wp_localize_script('metaslider-blocks', 'metaslider_block_config', array(
            'preview_url' => add_query_arg('ms_gutenberg_preview', 1, set_url_scheme(home_url())),
            'plugin_page' => admin_url('admin.php?page=metaslider')
        ));

        /*
         * gutenberg_get_jed_locale_data uses WP function get_translations_for_domain,
         * which can be usefull if we want to use wp.18n.__ in the rest of the plugin.
         */
        $locale_data = $this->gutenberg_get_jed_locale_data('ml-slider');
        wp_add_inline_script(
            'metaslider-blocks',
            'wp.i18n.setLocaleData(' . json_encode($locale_data) . ', \'ml-slider\');',
            'before'
        );

        // Enqueue optional editor only styles
        wp_enqueue_style(
            'metaslider-blocks-editor-css',
            plugins_url('assets/dist/css/editor-block.css', __FILE__),
            array('wp-block-library'),
            $version
        );
    }

    /**
     * Preview styles
     *
     * @param string $styles The preview styles
     * @return string
     */
    public function preview_styles($styles)
    {
        ob_start(); ?>
        body, html {
            overflow: hidden;
            height: auto;
            margin:0;
            padding:0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            font-size: 14px;
        }
        .metaslider {
            margin: 0 auto;
        }
        <?php
        return ob_get_clean();
    }

    /**
     * Backup function for Gutenberg's gutenberg_get_jed_locale_data
     *
     * @param string $domain - The text domain for the strings
     */
    private function gutenberg_get_jed_locale_data($domain)
    {
        if (function_exists('gutenberg_get_jed_locale_data')) {
            return gutenberg_get_jed_locale_data($domain);
        }

        $translations = get_translations_for_domain($domain);
        $locale = array(
            '' => array(
                'domain' => $domain,
                'lang' => is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(),
            ),
        );

        if (!empty($translations->headers['Plural-Forms'])) {
            $locale['']['plural_forms'] = $translations->headers['Plural-Forms'];
        }

        foreach ($translations->entries as $msgid => $entry) {
            $locale[$msgid] = $entry->translations;
        }
        return $locale;
    }
}
admin/Table.php000064400000034560151213254530007405 0ustar00<?php
if (!defined('ABSPATH')) {
    die('No direct access.');
}
if (!class_exists('WP_List_table')) {
    require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
}
class MetaSlider_Admin_Table extends WP_List_table
{
    public function prepare_items()
    {
        $this->process_action();
        $columns = $this->get_columns();
        $hidden = array();
        $sortable = $this->get_sortable_columns();
        $this->_column_headers = array($columns, $hidden, $sortable);

        if (isset($_REQUEST['s'])) {
            $table_data = $this->table_data(sanitize_text_field($_REQUEST['s']));
        } else {
            $table_data = $this->table_data();
        }

        //pagination
        $slideshows_per_page = 10;
        $table_page = $this->get_pagenum();
        $this->items = array_slice($table_data, (($table_page - 1) * $slideshows_per_page), $slideshows_per_page);
        $total_slideshows = count($table_data);
        $this->set_pagination_args(array(
            'total_items' => $total_slideshows,
            'per_page'    => $slideshows_per_page,
            'total_pages' => ceil($total_slideshows/$slideshows_per_page)
        ));
    }

    public function no_items() {
        printf(
            esc_html__(
                'You don\'t have any slideshows yet. Click %shere%s to create a new slideshow.',
                'ml-slider'
            ),
            '<a href="' . esc_url(wp_nonce_url(admin_url("admin-post.php?action=metaslider_create_slider"), "metaslider_create_slider")) . '">','</a>'
        );
    }
    

    protected function get_views() {
        global $wpdb;
        $views = array();
        $paramaters = array('action', 'slideshows', 'post_status', '_wpnonce', 'paged');
        $current = ( !empty($_REQUEST['post_status']) ? $_REQUEST['post_status'] : 'all');
   
        $all = remove_query_arg($paramaters);
        $class = ($current == 'all' ? ' class="current"' :'');
        $views['all'] = "<a href='" . esc_url($all) . "' {$class} >" . esc_html__('Published', 'ml-slider') . " (" . $this->slideshow_count('all') . ")</a>";
        
        if ($this->slideshow_count('trash') != 0) {
            $class = ($current == 'trash' ? ' class="current"' :'');
            $views['trash'] = "<a href='" . esc_url($all) . "&post_status=trash' {$class} >" . esc_html__('Trash', 'ml-slider') . " (" . $this->slideshow_count('trash') . ")</a>";
        }
        
        return $views;
    }

    public function get_columns()
    {
        $columns = array(
            'cb' => '<input type="checkbox" />',
            'slides' => esc_html__('Preview', 'ml-slider'),
            'post_title' => esc_html__('Title', 'ml-slider'),
            'post_date' => esc_html__('Created', 'ml-slider'),
            'ID' => esc_html__('Shortcode', 'ml-slider')
        );

        return $columns;
    }

    public function get_bulk_actions()
    {
        if (isset($_REQUEST['post_status']) && $_REQUEST['post_status'] == "trash") {
            $actions = array(
                'restore'    => __('Restore', 'ml-slider'),
                'permanent'  => __('Delete Permanently', 'ml-slider')
            );
        } else {
            $actions = array(
                'delete'    => __('Trash', 'ml-slider')
            );
        }
        
        return $actions;
    }


    public function get_hidden_columns()
    {
        return array();
    }

    public function get_sortable_columns()
    {
        $sortable_columns = array(
          'post_title' => array('post_title',false),
          'post_date' => array('post_date',false),
          'ID' => array('ID',false)
        );
        return $sortable_columns;
    }

    public function column_default($item, $column_name)
    {
        switch($column_name) {
            case 'slides':
                return $this->slideshow_thumb($item[ 'ID' ]);
            case 'post_title':
                return $item[ $column_name ];
            case 'post_date':
                $date = strtotime($item[ $column_name ]);
                $dateFormat = get_option('date_format');
                $timeFormat = get_option( 'time_format' );
                return ucfirst( wp_date( $dateFormat.' \a\t '.$timeFormat, $date ) );
            case 'ID':
                return $this->shortcodeColumn($item[$column_name]);
            default:
                return print_r($item, true);
        }
    }

    public function shortcodeColumn($slideshowID)
    {
        return ('<pre class="copy-shortcode tipsy-tooltip" original-title="' . __('Click to copy shortcode.', 'ml-slider') . '"><div class="text-orange cursor-pointer whitespace-normal inline">[metaslider id="'. esc_attr($slideshowID) .'"]</div></pre><span class="copy-message" style="display:none;"><div class="dashicons dashicons-yes"></div></span>');
    }

    protected function column_cb($item)
    {
        return sprintf(
            '<input type="checkbox" name="slideshows[]" value="%d" />', (int)$item['ID']
        );
    }

    protected function process_action()
    {
        if (isset($_POST['_wpnonce']) && ! empty($_POST['_wpnonce'])) {
            $nonce  = filter_input( INPUT_POST, '_wpnonce', FILTER_SANITIZE_SPECIAL_CHARS );
            $action = 'bulk-' . $this->_args['plural'];
            if ( ! wp_verify_nonce($nonce, $action)) {
                wp_die( 'Cannot process action' );
            }
        }

        if (isset($_POST['delete_all'])) {
            $slideshows = $this->table_data('', 'trash');
            foreach($slideshows as $slideshow_id) {
                wp_delete_post($slideshow_id['ID'], true);
            }
        }

        if(isset($_GET['_wpnonce'])) {
            if ( ! wp_verify_nonce($_GET['_wpnonce'], 'metaslider-action')) {
                wp_die( 'Cannot process action' );
            }
        }

        $action = $this->current_action();
        if(isset($_REQUEST['slideshows'])) {
            if(is_array($_REQUEST['slideshows'])) {
                $slideshows = array_map('intval', $_REQUEST['slideshows']);
            } else {
                $toArray = array($_REQUEST['slideshows']);
                $slideshows = array_map('intval', $toArray);
            }
        } else {
            //single slider
            if(isset($_REQUEST['id'])) {
                $toArray = array($_REQUEST['id']);
                $slideshows = array_map('intval', $toArray);
            }
        }
        switch ( $action ) {
            case 'delete':
                foreach($slideshows as $slideshow_id) {
                    wp_update_post(array(
                        'ID' => $slideshow_id,
                        'post_status' => 'trash'
                    ));
                }
                break;
            case 'permanent':
                foreach($slideshows as $slideshow_id) {
                    wp_delete_post( $slideshow_id, true);
                }
                break;
            case 'restore':
                foreach($slideshows as $slideshow_id) {
                    wp_update_post(array(
                        'ID' => $slideshow_id,
                        'post_status' => 'publish'
                    ));

                    $slides = $this->get_slides($slideshow_id, 'trash');
                    foreach ($slides as $key => $slide) {
                        wp_update_post(array(
                            'ID' => $slide->ID,
                            'post_status' => 'publish'
                        ));
                    }
                }
                break;
            default:
                return;
                break;
        }
        return;
    }

    private function table_data($search='', $status='all')
    {
        global $wpdb;
        $wpdbTable = $wpdb->prefix . 'posts';
        $columns = ['slides', 'post_title', 'post_date'];
        $orderBy = isset($_GET['orderby']) && in_array($_GET['orderby'], $columns, true ) ? $_GET['orderby'] : 'ID';
        $order = isset($_GET['order']) && 'desc' === $_GET['order'] ? 'desc' : 'asc';
        $orderBySql = sanitize_sql_orderby( "{$orderBy} {$order}" );
        $status = isset($_GET['post_status']) && 'trash' === $_GET['post_status'] ? 'trash' : 'all';

        if (!empty($search)) {
            $slides_query = $wpdb->prepare("SELECT ID, post_title, post_date FROM $wpdbTable WHERE post_type = %s AND post_status = %s AND post_title LIKE %s ORDER BY $orderBySql", array('ml-slider', 'publish', '%'. $wpdb->esc_like($search). '%'));  // WPCS: unprepared SQL OK.
        } else {
            if( $status == 'all' ) {
                $slides_query = $wpdb->prepare("SELECT ID, post_title, post_date FROM $wpdbTable WHERE post_type = %s AND post_status = %s ORDER BY $orderBySql", array('ml-slider', 'publish'));  // WPCS: unprepared SQL OK.
            } else {
                $slides_query = $wpdb->prepare("SELECT ID, post_title, post_date FROM $wpdbTable WHERE post_type = %s AND post_status = %s ORDER BY $orderBySql", array('ml-slider', 'trash'));  // WPCS: unprepared SQL OK.
            }         
        }

        $query_results = $wpdb->get_results($slides_query, ARRAY_A ); // WPCS: unprepared SQL OK.
        return $query_results;
    }

    private function slideshow_count($status = 'all')
    {
        global $wpdb;
        $wpdbTable = $wpdb->prefix . 'posts';
        if ($status == 'trash') {
            $slides_query = $wpdb->prepare("SELECT ID, post_title, post_date FROM $wpdbTable WHERE post_type = %s AND post_status = %s", array('ml-slider', 'trash'));  // WPCS: unprepared SQL OK.
        } else {
            $slides_query = $wpdb->prepare("SELECT ID, post_title, post_date FROM $wpdbTable WHERE post_type = %s AND post_status = %s", array('ml-slider', 'publish'));  // WPCS: unprepared SQL OK.
        }

        $wpdb->get_results($slides_query, ARRAY_A ); // WPCS: unprepared SQL OK.
        return $wpdb->num_rows;
    }

    public function getslide_thumb($slideId)
    {
        $logo = 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(dirname(__FILE__) . '/assets/metaslider.svg'));
        if (get_post_type($slideId) == 'attachment') {
            $image = wp_get_attachment_image_src($slideId, 'thumbnail');
        } else {
            $image = wp_get_attachment_image_src(get_post_thumbnail_id($slideId), 'thumbnail');
        }

        if (isset($image[0])) {
            $slidethumb = "<img src='". esc_url($image[0]) ."'>";
        } else {
            $slidethumb = "<img src='". $logo ."' class='thumb-logo'>";
        }
        return $slidethumb;
    }

    public function get_slides($slideshowId, $status)
    {
        $slides = get_posts(array(
            'post_type' => array('ml-slide'),
            'post_status' => array($status),
            'orderby' => 'menu_order',
            'order' => 'ASC',
            'lang' => '',
            'suppress_filters' => 1,
            'posts_per_page' => -1,
            'tax_query' => array(
                array(
                    'taxonomy' => 'ml-slider',
                    'field' => 'slug',
                    'terms' => (int) $slideshowId
                )
            )
        ));

        return $slides;
    }

    public function slideshow_thumb($slideshowId)
    {
        $slides = $this->get_slides($slideshowId, 'publish');
        $numberOfSlides = count($slides);
        $logo = 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(dirname(__FILE__) . '/assets/metaslider.svg'));
        $thumbHtml = "<div class='w-16 h-16 bg-gray-light slidethumb'>";
        if ($numberOfSlides === 0) {
            $thumbHtml .= "<img src='". $logo ."' class='thumb-logo'>";
        } else {
            if ($numberOfSlides === 1){
                $thumbHtml .= $this->getslide_thumb($slides[0]->ID);
            } else {
                foreach ($slides as $key => $slide) {
                    $thumbHtml .= $this->getslide_thumb($slide->ID);
                }
            }        
        }
        $thumbHtml .= "</div>";
        return $thumbHtml;
    }

    public function column_post_title($item)
    {
        $page = empty($_REQUEST['page']) ? 'metaslider' : sanitize_key($_REQUEST['page']);
        if(isset($_GET['post_status']) && $_GET['post_status'] == 'trash') {
            $restoreUrl = wp_nonce_url('?page=' . $page . '&post_status=trash&action=restore&slideshows=' . absint($item['ID']), 'metaslider-action' );
            $deleteUrl = wp_nonce_url('?page=' . $page . '&post_status=trash&action=permanent&slideshows=' . absint($item['ID']), 'metaslider-action' );

            $actions = [
                'restore' => '<a href="' . esc_url($restoreUrl) . '">' . esc_html__('Restore', 'ml-slider') . '</a>',
                'permanent'  => '<a class="submitdelete" href="' . esc_url($deleteUrl) . '">' . esc_html__('Delete Permanently', 'ml-slider') . '</a>',
            ];

            return sprintf(
                '%1$s %2$s',
                '<a class="row-title">' . esc_html($item['post_title']) . '</a>',
                $this->row_actions($actions)
            );
        } else {
            $editUrl = '?page=' . $page . '&id=' . absint($item['ID']);
            $deleteUrl = wp_nonce_url('?page=' . $page . '&action=delete&slideshows=' . absint($item['ID']), 'metaslider-action' );

            $actions = [
                'edit' => '<a href="' . esc_url($editUrl) . '">' . esc_html__('Edit', 'ml-slider') . '</a>',
                'trash'  => '<a class="submitdelete" href="' . esc_url($deleteUrl) . '">' . esc_html__('Trash', 'ml-slider') . '</a>',
            ];

            return sprintf(
                '%1$s %2$s',
                '<a class="row-title" href="' . esc_url($editUrl) . '">' . esc_html($item['post_title']) . '</a>',
                $this->row_actions($actions)
            );
        }
    }

    public function extra_tablenav( $which ) {
		if ( $which == "top" ) {
            if (isset($_REQUEST['post_status']) && $_REQUEST['post_status'] == "trash") {
                if ( ! empty($this->table_data('', 'trash'))) {
                    submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false );
                }
            }
        }
	}

    public function check_num_rows()
    {
        $table_data = $this->table_data();
        return $table_data;
    }
}
admin/views/slides/tabs/link.php000064400000004331151213254530012655 0ustar00<?php 
if ( ! defined( 'ABSPATH' ) ) {
 die( 'No direct access.' );
} 
?>
<div class="row alt-link mb-2">
    <div class="mb-2">
        <label>
            <?php esc_html_e( 'Image Link URL', 'ml-slider' ) ?>
            <span class="dashicons dashicons-info tipsy-tooltip-top" title="<?php esc_attr_e('When visitors click on your image slide, they will be taken to this URL.', 'ml-slider') ?>" style="line-height: 1.2em;"></span>
        </label>
    </div>
    <div class="row has-right-checkbox mb-0">
        <div>
            <input class="url" data-lpignore="true" type="text" name="attachment[<?php echo esc_attr($slide_id); ?>][url]" placeholder="<?php echo esc_attr("URL", "ml-slider"); ?>" value="<?php echo esc_url($url); ?>" />
        </div>
        <div class="input-label">
            <label>
                <?php 
                esc_html_e( 'New window', 'ml-slider' ); 
                // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                echo $this->info_tooltip( __(
                    'Open link in a new window', 
                    'ml-slider'
                ) );
                // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                echo $this->switch_button( 
                    'attachment[' . esc_attr( $slide_id ) . '][new_window]', 
                    (bool) $target,
                    array(
                        'autocomplete' => 'off',
                        'tabindex' => '0' 
                    ),
                    'mr-0 ml-2'
                );
                ?>
            </label>
        </div>
    </div>
</div>
<div class="row alt-link">
    <div class="mb-1 link-alt-label">
        <label>
            <?php esc_html_e( 'Image Link Alt Text', 'ml-slider' ); ?>
            <span class="dashicons dashicons-info tipsy-tooltip-top" title="<?php esc_attr_e('This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended.', 'ml-slider') ?>"></span>
        </label>
    </div>
    <input type="text" size="50" name="attachment[<?php echo esc_attr($slide_id); ?>][link-alt]" placeholder="<?php echo esc_attr("Enter text here", "ml-slider"); ?>" value="<?php echo esc_attr($link_alt); ?>">
</div>
admin/views/slides/tabs/mobile.php000064400000011144151213254530013167 0ustar00<?php
    if (!defined('ABSPATH')) {
        die('No direct access.');
    }
    $slideshow_defaults = array();
    if (is_multisite() && $settings = get_site_option('metaslider_default_settings')) {
        $slideshow_defaults = $settings;
    }
    if ($settings = get_option('metaslider_default_settings')) {
        $slideshow_defaults = $settings;
    }
    if(!isset($slideshow_defaults['smartphone'])){
        $slideshow_defaults['smartphone'] = 320;
    }
    if(!isset($slideshow_defaults['tablet'])){
        $slideshow_defaults['tablet'] = 768;
    }
    if(!isset($slideshow_defaults['laptop'])){
        $slideshow_defaults['laptop'] = 1024;
    }
    if(!isset($slideshow_defaults['desktop'])){
        $slideshow_defaults['desktop'] = 1440;
    }
    $screen = array('smartphone', 'tablet', 'laptop', 'desktop');
    $default_sizes = array($slideshow_defaults['smartphone'], $slideshow_defaults['tablet'], $slideshow_defaults['laptop'], $slideshow_defaults['desktop']);
    $settings = get_post_meta($this->slider->ID, 'ml-slider_settings', true);
    $hide_css = 'display: none';
    if (isset($settings['type']) && $settings['type'] == 'flex') {
        $hide_css = 'display: block';
    }
?>
<div class="row flex-setting" style="<?php echo esc_attr($hide_css); ?>">
    <label style="margin-right: 20px;"><?php esc_html_e("Hide slide on:", "ml-slider"); ?></label>
    <?php
        $checked_slide = '';
        foreach ($screen as $key => $value) {
            $hideslide = get_post_meta($slide_id, 'ml-slider_hide_slide_' . $value, true);
            if (!empty($hideslide)) {
                $checked_slide = 'checked = "checked"';
            } else {
                $checked_slide = '';
            }

            if($key == 3){
                $tooltip = sprintf( 
                    __( 
                        'When enabled this setting will hide the slide on screen widths equal to or greater than %spx', 
                        'ml-slider'
                    ), 
                    $default_sizes[$key] 
                );
            } else {
                $maxkey = $key + 1;
                $max_width = $default_sizes[$maxkey] - 1;
                $tooltip = sprintf( 
                    __( 
                        'When enabled this setting will hide the slide on screen widths of %1$spx to %2$spx', 
                        'ml-slider'
                    ), 
                    $default_sizes[$key],
                    $max_width
                );
            }
    ?>
            <span class="mobile-checkbox-wrap">
                <input type="checkbox" name="attachment[<?php echo esc_attr($slide_id); ?>][hide_slide_<?php echo esc_attr($value); ?>]" class="mobile-checkbox tipsy-tooltip-top" title="<?php echo esc_attr($tooltip); ?>" <?php echo esc_attr($checked_slide); ?> />
                <span class="dashicons <?php echo esc_attr( 'dashicons-' . $value ); ?>"></span>
            </span>
    <?php } ?>
</div>
<div class="row">
    <label style="margin-right: 4px;"><?php esc_html_e("Hide caption on:", "ml-slider"); ?></label>
    <?php
        $checked_caption = '';
        foreach ($screen as $key => $value) {
            $hidecaption = get_post_meta($slide_id, 'ml-slider_hide_caption_' . $value, true);
            if (!empty($hidecaption)) {
                $checked_caption = 'checked = "checked"';
            } else {
                $checked_caption = '';
            } 
            
            if($key == 3){
                $tooltip = sprintf( 
                    __( 
                        'When enabled this setting will hide the caption on screen widths equal to or greater than %spx', 
                        'ml-slider'
                    ), 
                    $default_sizes[$key] 
                );
            } else {
                $maxkey = $key + 1;
                $max_width = $default_sizes[$maxkey] - 1;
                $tooltip = sprintf( 
                    __( 
                        'When enabled this setting will hide the caption on screen widths of %1$spx to %2$spx', 
                        'ml-slider'
                    ), 
                    $default_sizes[$key],
                    $max_width
                );
            }
    ?>
            <span class="mobile-checkbox-wrap">
                <input type="checkbox" name="attachment[<?php echo esc_attr($slide_id); ?>][hide_caption_<?php echo esc_attr($value); ?>]" class="mobile-checkbox tipsy-tooltip-top" title="<?php echo esc_attr($tooltip); ?>" <?php echo esc_attr($checked_caption); ?> />
                <span class="dashicons <?php echo esc_attr( 'dashicons-' . $value ); ?> "></span>
            </span>
    <?php } ?>
</div>
admin/views/slides/tabs/crop.php000064400000003755151213254530012674 0ustar00<?php if (!defined('ABSPATH')) {
die('No direct access.');
} ?>
<div class="row has-right-field">
    <label>
        <?php esc_html_e("Crop Position", "ml-slider"); ?>
        <span class="dashicons dashicons-info tipsy-tooltip-top" title="<?php esc_attr_e('Choose how images are cropped if their size doesn\'t exactly match the size of your slideshow. This works if "Smart Crop" is selected in the "Image Crop" settings.', 'ml-slider') ?>" style="line-height: 1.2em;"></span>
    </label>
    <select class="crop_position" name="attachment[<?php echo esc_attr($slide_id); ?>][crop_position]">
        <option value="left-top" <?php echo selected($crop_position, 'left-top', false); ?>> <?php esc_html_e("Top Left", "ml-slider"); ?></option>
        <option value="center-top" <?php echo selected($crop_position, 'center-top', false); ?>> <?php esc_html_e("Top Center", "ml-slider"); ?></option>
        <option value="right-top" <?php echo selected($crop_position, 'right-top', false); ?>> <?php esc_html_e("Top Right", "ml-slider"); ?></option>
        <option value="left-center" <?php echo selected($crop_position, 'left-center', false); ?>> <?php esc_html_e("Center Left", "ml-slider"); ?></option>
        <option value="center-center" <?php echo selected($crop_position, 'center-center', false); ?>> <?php esc_html_e("Center Center", "ml-slider"); ?></option>
        <option value="right-center" <?php echo selected($crop_position, 'right-center', false); ?>> <?php esc_html_e("Center Right", "ml-slider"); ?></option>
        <option value="left-bottom" <?php echo selected($crop_position, 'left-bottom', false); ?>> <?php esc_html_e("Bottom Left", "ml-slider"); ?></option>
        <option value="center-bottom" <?php echo selected($crop_position, 'center-bottom', false); ?>> <?php esc_html_e("Bottom Center", "ml-slider"); ?></option>
        <option value="right-bottom" <?php echo selected($crop_position, 'right-bottom', false); ?>> <?php esc_html_e("Bottom Right", "ml-slider"); ?></option>
    </select>
</div>
admin/views/slides/tabs/general.php000064400000002554151213254530013342 0ustar00<?php if (!defined('ABSPATH')) die('No direct access.'); ?>

<div class="thumb-col-settings">
	<?php // Handle captions
	if( isset( $_GET['metaslider_add_sample_slides'] ) ){
		$slide_caption = (esc_html( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent vitae.' ));
	} else {
		$slide_caption = $this->cleanup_content_kses( $this->slide->post_excerpt );
	}

	$image_caption = (wp_filter_post_kses($attachment->post_excerpt));
	$image_description = (wp_filter_post_kses($attachment->post_content));

	// Deprecate inherit_image_caption by deleting it and setting the source as the image
	if (filter_var(get_post_meta($this->slide->ID, 'ml-slider_inherit_image_caption', true), FILTER_VALIDATE_BOOLEAN)) {
		update_post_meta($this->slide->ID, 'ml-slider_caption_source', 'image-caption');
		delete_post_meta($this->slide->ID, 'ml-slider_inherit_image_caption');
	}

	$caption_source = get_post_meta($this->slide->ID, 'ml-slider_caption_source', true); 
	
	// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	echo $this->get_admin_slide_thumb();
	?>
	
	<div>
		<metaslider-caption
			image-caption="<?php echo esc_attr($image_caption); ?>"
			image-description="<?php echo esc_attr($image_description); ?>"
			override="<?php echo esc_attr($slide_caption); ?>"
			caption-source="<?php echo esc_attr($caption_source); ?>"></metaslider-caption>
	</div>
</div>
admin/views/slides/tabs/schedule.php000064400000001545151213254530013520 0ustar00<?php if (!defined('ABSPATH')) {
die('No direct access.');
} ?>
<div class="schedule_placeholder">
    <?php if (metaslider_pro_is_installed()) : ?>
        <p style="mb-0 text-base"><?php esc_html_e('Update or activate your MetaSlider Pro now to add a start/end date option to your slides', 'ml-slider'); ?></p>
    <?php else : ?>
        <h1><?php esc_html_e('Get MetaSlider Pro', 'ml-slider'); ?></h1>
        <p><?php esc_html_e('With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day.', 'ml-slider'); ?></p>
        <a href="<?php echo esc_url(metaslider_get_upgrade_link()); ?>" class="probutton button button-primary button-hero" target="_blank"><?php esc_html_e('Upgrade now', 'ml-slider'); ?> <span class='dashicons dashicons-external'></span></a>
    <?php endif; ?>
</div>
admin/views/slides/tabs/seo.php000064400000006233151213254530012511 0ustar00<?php if (!defined('ABSPATH')) {
die('No direct access.');
} ?>
<div class="row mb-2 can-inherit title<?php echo esc_attr($inherit_image_title_class); ?>">
    <div class="mb-1 image-title-label">
        <label>
            <?php esc_html_e("Image Title Text", "ml-slider"); ?>
            <span class="dashicons dashicons-info tipsy-tooltip-top" title="<?php esc_attr_e('Visitors will see this text if they hover over your image slide. Adding Title text is useful but not required.', 'ml-slider') ?>"></span>
        </label>
        <div class="input-label right">
            <label class="small" title="<?php esc_attr_e("Enable this to inherit the image title", "ml-slider"); ?>">
                <?php 
                esc_html_e( 'Use the image title', 'ml-slider' ); 
                echo $this->switch_button( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    'attachment[' . esc_attr( $slide_id ) . '][inherit_image_title]',
                    $inherit_image_title_check, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    array(
                        'autocomplete' => 'off',
                        'class' => 'js-inherit-from-image' 
                    ),
                    'mr-0 ml-1'
                );
                ?> 
            </label>
        </div>
    </div>
    <div class="default"><?php echo $image_title ? esc_html($image_title) : "<span class='no-content'>&nbsp;</span>"; ?></div>
    <input tabindex="0" type="text" size="50" name="attachment[<?php echo esc_attr($slide_id); ?>][title]" value="<?php echo esc_attr($title); ?>">
</div>
<div class="row can-inherit alt<?php echo esc_attr($inherit_image_alt_class); ?>">
    <div class="mb-1 image-alt-label">
        <label>
            <?php esc_html_e("Image Alt Text", "ml-slider"); ?>
            <span class="dashicons dashicons-info tipsy-tooltip-top" title="<?php esc_attr_e('This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.', 'ml-slider') ?>"></span>
        </label>
        <div class="input-label right">
            <label class="small" title="<?php esc_attr_e('Enable this to inherit the image alt text', 'ml-slider'); ?>">
                <?php 
                esc_html_e( 'Use the image alt text', 'ml-slider' ); 
                ?> <?php 
                echo $this->switch_button( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    'attachment[' . esc_attr( $slide_id ) . '][inherit_image_alt]', 
                    $inherit_image_alt_check, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    array(
                        'autocomplete' => 'off',
                        'class' => 'js-inherit-from-image' 
                    ),
                    'mr-0 ml-1'
                );
                ?> 
            </label>
        </div>
    </div>
    <div class="default"><?php echo $image_alt ? esc_html($image_alt) : "<span class='no-content'>&nbsp;</span>"; ?></div>
    <input tabindex="0" type="text" size="50" name="attachment[<?php echo esc_attr($slide_id); ?>][alt]" value="<?php echo esc_attr($alt); ?>">
</div>
admin/views/pages/settings.php000064400000020423151213254530012443 0ustar00<?php if (!defined('ABSPATH')) {
    die('No direct access.');
} ?>

<div
    id="metaslider-ui"
    class="metaslider metaslider-ui block min-w-0 p-0 bg-white relative"
    style="min-height:calc(100vh - 32px)">
<metaslider-toolbar inline-template>
<div id="ms-toolbar"
    class="flex-col bg-white h-16 shadow-sm sticky z-999">
    <div class="h-full px-6">
        <div class="flex items-center h-full -mx-4">
            <a href="<?php echo esc_url(admin_url('admin.php?page=metaslider')) ?>" class="flex items-center h-full py-2 px-4">
                <img style="height:46px;width:auto;" class="mr-2 rtl:mr-0 rtl:ml-2" src="<?php echo esc_url(METASLIDER_ADMIN_URL . 'images/metaslider_logo3.png'); ?>" alt="MetaSlider">
            </a>
        </div>
    </div>
</div>
</metaslider-toolbar>
<div v-if="isIE11" class="justify-center bg-gray-lighter" :class="{'flex': isIE11, 'hidden': !isIE11}" style="display:none">
    <?php include METASLIDER_PATH . "admin/views/pages/parts/ie-warning.php"; ?>
</div>
<div v-else>
<metaslider inline-template>
<metaslider-settings-page inline-template>
<div
    id="metaslider-settings-page"
    class="border-b border-gray-light flex h-full inset-0 min-w-0 p-0 w-full"
    :class="{'absolute': !hasNotice}">
    <div class="flex md:flex-shrink-0">
        <div class="flex flex-col md:w-48 border-r border-gray-lightest pt-5 pb-4 bg-white">
            <div class="-mt-1 h-0 flex-1 flex flex-col overflow-y-auto">
                <nav class="flex-1 px-2 py-1 bg-white">
                    <a
                        href="#"
                        @click.prevent="loadPage('settings')"
                        @keydown.space.prevent="loadPage('settings')"
                        @keyup.enter.prevent="loadPage('settings')"
                        class="mt-1 group flex items-center justify-between px-2 py-2 text-sm leading-5 font-medium text-gray-darker rounded-md hover:text-gray-darkest hover:bg-gray-light focus:outline-none transition ease-in-out duration-150"
                        :class="{'text-gray-darker bg-gray-light': 'settings' === component}">
                        <span class="hidden md:flex"><?php esc_html_e('Settings', 'ml-slider'); ?></span>
                        <svg
                            class='opacity-0 md:mr-2 w-5 group-hover:text-gray-darkest group-focus:text-gray-darkest transition ease-in-out duration-150'
                            :class="{'opacity-100': true, 'text-gray-darker': 'settings' === component, 'md:text-white': 'settings' !== component}"
                            xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
                        </svg>
                    </a>
                    <a
                        href="#"
                        @click.prevent="loadPage('helpcenter')"
                        @keydown.space.prevent="loadPage('helpcenter')"
                        @keyup.enter.prevent="loadPage('helpcenter')"
                        class="mt-1 group flex items-center justify-between px-2 py-2 text-sm leading-5 font-medium text-gray-darker rounded-md hover:text-gray-darkest hover:bg-gray-light focus:outline-none transition ease-in-out duration-150"
                        :class="{'text-gray-darker bg-gray-light': 'helpcenter' === component}">
                        <span class="hidden md:flex"><?php esc_html_e('Help Center', 'ml-slider'); ?></span>
                        <svg
                            class='opacity-0 md:mr-2 w-5 group-hover:text-gray-darkest group-focus:text-gray-darkest transition ease-in-out duration-150'
                            :class="{'opacity-100': true, 'text-gray-darker': 'helpcenter' === component, 'md:text-white': 'helpcenter' !== component}"
                            xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z" />
                                </svg>
                        </svg>
                    </a>
                    <a
                        href="#"
                        @click.prevent="loadPage('import')"
                        @keydown.space.prevent="loadPage('import')"
                        @keyup.enter.prevent="loadPage('import')"
                        class="mt-1 group flex items-center justify-between px-2 py-2 text-sm leading-5 font-medium text-gray-darker rounded-md hover:text-gray-darkest hover:bg-gray-light transition ease-in-out duration-150"
                        :class="{'text-gray-darker bg-gray-light': 'import' === component}">
                        <span class="hidden md:flex"><?php esc_html_e('Import', 'ml-slider'); ?></span>
                        <svg
                            class='opacity-0 md:mr-2 w-5 group-hover:text-gray-darkest group-focus:text-gray-darkest transition ease-in-out duration-150'
                            :class="{'opacity-100': true, 'text-gray-darker': 'import' === component, 'md:text-white': 'import' !== component}"
                            xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12" />
                        </svg>
                    </a>
                    <a
                        href="#"
                        @click.prevent="loadPage('export')"
                        @keydown.space.prevent="loadPage('export')"
                        @keyup.enter.prevent="loadPage('export')"
                        class="mt-1 group flex items-center justify-between px-2 py-2 text-sm leading-5 font-medium text-gray-darker rounded-md hover:text-gray-darkest hover:bg-gray-light transition ease-in-out duration-150"
                        :class="{'text-gray-darker bg-gray-light': 'export' === component}">
                        <span class="hidden md:flex"><?php esc_html_e('Export', 'ml-slider'); ?></span>
                        <svg
                            class='opacity-0 md:mr-2 w-5 group-hover:text-gray-darkest group-focus:text-gray-darkest transition ease-in-out duration-150'
                            :class="{'opacity-100': true, 'text-gray-darker': 'export' === component, 'md:text-white': 'export' !== component}"
                            xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4" />
                        </svg>
                    </a>
                    <?php do_action('metaslider_settings_page_nav_items'); ?>
                </nav>
            </div>
        </div>
    </div>
    <div class="flex flex-col w-0 flex-1 overflow-hidden">
        <main class="flex-1 relative z-0 overflow-y-auto py-6 focus:outline-none" tabindex="0">
            <div class="max-w-7xl w-full px-4 md:px-6 md:px-8">
                <transition name="settings-fade" mode="out-in">
                    <?php $slideshowCount = wp_count_posts('ml-slider'); ?>
                    <component :needs-slideshows="<?php echo $slideshowCount->publish < 1 ? 'true' : 'false'; ?>" :is="$options.components[component]"></component>
                </transition>
            </div>
        </main>
    </div>
</div>
</metaslider-settings-page>
</metaslider>
</div>
</div>
admin/views/pages/start.php000064400000006646151213254540011754 0ustar00<?php if (!defined('ABSPATH')) die('No direct access.'); 
$demo_options = array(
	array(
		'slug' => 'carousel',
		'label' => esc_html__( 'Carousel Slideshow', 'ml-slider' )
	),
	array(
		'slug' => 'withcaption',
		'label' => esc_html__( 'Carousel Slideshow with Captions', 'ml-slider' )
	)
);

// Allow to add new options
$demo_options = apply_filters( 'metaslider_quickstart_options', $demo_options );
?>
<div id="metaslider-ui">
<div class="metaslider-start mt-16">
	<div class="metaslider-welcome">
		<div class="welcome-panel-content items-center">
			<h2><?php esc_html_e('Thanks for using MetaSlider, the WordPress slideshow plugin', 'ml-slider'); ?></h2>
		</div>
		<div class="welcome-panel-content" style="min-height:270px;">
			<div class="ms-panel-container">
				<div class="">
					<div>
						<h3 class="ms-heading"><?php esc_html_e('Create a slideshow with your images', 'ml-slider'); ?></h3>
						<p><?php esc_html_e('Choose your own images to start a new slideshow.', 'ml-slider'); ?></p>
					</div>
					<div>
						<div id="plupload-upload-ui" class="hide-if-no-js">
							<div id="drag-drop-area">
								<div class="drag-drop-inside">
								<p class="drag-drop-info"><?php _e('Drop files to upload'); ?></p>
								<p><?php _ex('or', 'Uploader: Drop files to upload - or - Select Files'); ?></p>
								<p class="drag-drop-buttons">
									<input id="plupload-browse-button" type="button" value="<?php esc_attr_e('Select Files'); ?>" class="button" />
									<button id="quickstart-browse-button" class="button"><?php esc_html_e('Open Media Library', 'ml-slider'); ?></button>
								</p>
								
								</div>
							</div>
						</div>
						<div class="media-upload-form">
							<div id="media-items" class="hide-if-no-js"></div>
						</div>
						
					</div>
				</div>
				<div class="">

					<div>
						<h3 class="ms-heading"><?php esc_html_e('Create a slideshow with sample images', 'ml-slider'); ?></h3>
						<p>
							<?php 
								echo apply_filters( 'metaslider_quickstart_description', esc_html__('Create a demo slideshow.', 'ml-slider'));  //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
							?>
						</p>
					</div>

					<div class="try-gutenberg-action">
						<select id="sampleslider-options">
							<option value="<?php echo esc_url(wp_nonce_url(admin_url("admin-post.php?action=metaslider_create_slider"), "metaslider_create_slider")); ?>"><?php esc_html_e('Blank Slideshow', 'ml-slider'); ?></option>
							<option value="<?php echo esc_url(wp_nonce_url(admin_url("admin-post.php?action=metaslider_create_slider&metaslider_add_sample_slides"), "metaslider_create_slider")); ?>"><?php esc_html_e('Image Slideshow', 'ml-slider'); ?></option>
							<?php foreach ( $demo_options as $item ) : ?>
								<option value="<?php 
									echo esc_url( 
										wp_nonce_url( 
											admin_url( 
												'admin-post.php?action=metaslider_create_slider&metaslider_add_sample_slides=' . $item['slug'] ), 
												'metaslider_create_slider' 
											) 
										) ?>">
									<?php echo esc_html( $item['label'] ) ?>
								</option>
							<?php endforeach; ?>
						</select>
						<button id="sampleslider-btn" class="button button-primary"><?php esc_html_e('Create a Slideshow', 'ml-slider'); ?></button>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
</div>
<?php // TODO: I think after here maybe we can add images from their media library, or perhaps from an external image API
admin/views/pages/parts/slider-settings-legacy.php000064400000132560151213254540016325 0ustar00
<table class="ms-settings-table border-0">
    <tbody>
            <?php
            $aFields = array(
                'type' => array(
                    'priority' => 0,
                    'type' => 'slider-lib',
                    'value' => $this->slider->get_setting('type'),
                    'options' => array(
                        'flex' => array('label' => "FlexSlider"),
                        'responsive' => array('label' => "R. Slides"),
                        'nivo' => array('label' => "Nivo Slider"),
                        'coin' => array('label' => "Coin Slider")
                    )
                ),
                'mainOptions' => array(
                    'priority' => 1,
                    'type' => 'highlight',
                    'value' => esc_html__( 'Main Options', 'ml-slider' )
                ),
                'width' => array(
                    'priority' => 10,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 9999,
                    'step' => 1,
                    'value' => $this->slider->get_setting('width'),
                    'label' => __("Width", "ml-slider"),
                    'class' => 'coin flex responsive nivo',
                    'helptext' => __("Slideshow width", "ml-slider"),
                    'after' => __("px", "ml-slider")
                ),
                'height' => array(
                    'priority' => 20,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 9999,
                    'step' => 1,
                    'value' => $this->slider->get_setting('height'),
                    'label' => __("Height", "ml-slider"),
                    'class' => 'coin flex responsive nivo',
                    'helptext' => __("Slideshow height", "ml-slider"),
                    'after' => __("px", "ml-slider")
                ),
                'effect' => array(
                    'priority' => 30,
                    'type' => 'select',
                    'value' => $this->slider->get_setting('effect'),
                    'label' => __("Transition Effect", "ml-slider"),
                    'class' => 'effect coin flex responsive nivo width w-40',
                    'helptext' => __("This animation is used when changing slides.", "ml-slider"),
                    'dependencies' => array(
                        array(
                            'show' => 'easing', // Show Easing setting
                            'when' => 'slide' // When Effect is 'slide'
                        ),
                        array(
                            'show' => 'firstSlideFadeIn',
                            'when' => 'fade'
                        )
                    ),
                    'options' => array(
                        'random' => array(
                            'class' => 'option coin nivo',
                            'label' => __("Random", "ml-slider")
                        ),
                        'swirl' => array(
                            'class' => 'option coin',
                            'label' => __("Swirl", "ml-slider")
                        ),
                        'rain' => array(
                            'class' => 'option coin',
                            'label' => __("Rain", "ml-slider")
                        ),
                        'straight' => array(
                            'class' => 'option coin',
                            'label' => __("Straight", "ml-slider")
                        ),
                        'sliceDown' => array(
                            'class' => 'option nivo',
                            'label' => __("Slice Down", "ml-slider")
                        ),
                        'sliceUp' => array(
                            'class' => 'option nivo',
                            'label' => __("Slice Up", "ml-slider")
                        ),
                        'sliceUpLeft' => array(
                            'class' => 'option nivo',
                            'label' => __("Slice Up Left", "ml-slider")
                        ),
                        'sliceUpDown' => array(
                            'class' => 'option nivo',
                            'label' => __("Slide Up Down", "ml-slider")
                        ),
                        'sliceUpDownLeft' => array(
                            'class' => 'option nivo',
                            'label' => __("Slice Up Down Left", "ml-slider")
                        ),
                        'fade' => array(
                            'class' => 'option nivo flex responsive',
                            'label' => __("Fade", "ml-slider")
                        ),
                        'fold' => array(
                            'class' => 'option nivo',
                            'label' => __("Fold", "ml-slider")
                        ),
                        'slideInRight' => array(
                            'class' => 'option nivo',
                            'label' => __("Slide in Right", "ml-slider")
                        ),
                        'slideInLeft' => array(
                            'class' => 'option nivo',
                            'label' => __("Slide in Left", "ml-slider")
                        ),
                        'boxRandom' => array(
                            'class' => 'option nivo',
                            'label' => __("Box Random", "ml-slider")
                        ),
                        'boxRain' => array(
                            'class' => 'option nivo',
                            'label' => __("Box Rain", "ml-slider")
                        ),
                        'boxRainReverse' => array(
                            'class' => 'option nivo',
                            'label' => __("Box Rain Reverse", "ml-slider")
                        ),
                        'boxRainGrow' => array(
                            'class' => 'option nivo',
                            'label' => __("Box Rain Grow", "ml-slider")
                        ),
                        'boxRainGrowReverse' => array(
                            'class' => 'option nivo',
                            'label' => __("Box Rain Grow Reverse", "ml-slider")
                        ),
                        'slide' => array(
                            'class' => 'option flex',
                            'label' => __("Slide", "ml-slider")
                        )
                    ),
                ),
                'links' => array(
                    'priority' => 50,
                    'type' => 'checkbox',
                    'label' => __("Arrows", "ml-slider"),
                    'class' => 'option coin flex nivo responsive',
                    'checked' => $this->slider->get_setting(
                        'links'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => __(
                        "Show the Previous / Next arrows.",
                        "ml-slider"
                    ),
                    'dependencies' => array(
                        array(
                            'show' => 'mobileArrows_smartphone',
                            'when' => true
                        )
                    )
                ),
                'navigation' => array(
                    'priority' => 60,
                    'type' => 'navigation',
                    'label' => __("Navigation", "ml-slider"),
                    'class' => 'option coin flex nivo responsive',
                    'value' => $this->slider->get_setting('navigation'),
                    'helptext' => __(
                        "Show navigation options so that users can browse the slides.",
                        "ml-slider"
                    ),
                    'options' => array(
                        'false' => array(
                            'label' => __("Hidden", "ml-slider")
                        ),
                        'true' => array(
                            'label' => __("Dots", "ml-slider")
                        ),
                        'thumbs' => array(
                            'label' => __("Thumbnail", "ml-slider"),
                            'addon_required' => true
                        ),
                        'filmstrip' => array(
                            'label' => __("Filmstrip", "ml-slider"),
                            'addon_required' => true
                        ),
                    ),
                    'dependencies' => array(
                        array(
                            'show' => 'mobileNavigation_smartphone',
                            'when' => array(
                                'true',
                                'thumbs', 
                                'filmstrip'
                            )
                        ),
                        array(
                            'show' => 'ariaCurrent',
                            'when' => array(
                                'true',
                                'thumbs', 
                                'filmstrip'
                            )
                        ),
                    )
                ),
                'fullWidth' => array(
                    'priority' => 570,
                    'type' => 'checkbox',
                    'label' => esc_html__("100% width", "ml-slider"),
                    'class' => 'option flex nivo responsive',
                    'checked' => $this->slider->get_setting(
                        'fullWidth'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Stretch the slideshow output to fill it's parent container.",
                        "ml-slider"
                    )
                ),
            );

            $aFields = apply_filters(
                'metaslider_basic_settings',
                $aFields,
                $this->slider
            );

            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            echo $this->build_settings_rows($aFields);
            ?>
            
            <tr class="empty-row-spacing">
                <td colspan="2"></td>
            </tr>
            <tr class="highlight">
                <td colspan="2">
                    <?php esc_html_e( 'Theme', 'ml-slider' ) ?>
                </td>
            </tr>
            <tr class="empty-row-spacing">
                <td colspan="2"></td>
            </tr>
            <tr>
                <td colspan="2">
                    <metaslider-theme-viewer
                            theme-directory-url="<?php
                            echo esc_url(METASLIDER_THEMES_URL); ?>"
                    ></metaslider-theme-viewer>
                </td>
            </tr>
            <tr class="empty-row-spacing">
                <td colspan="2"></td>
            </tr>
            
<?php
    // Mobile options
    if ( !isset( $global_settings['mobileSettings'] ) 
        || ( isset( $global_settings['mobileSettings'] ) && true == $global_settings['mobileSettings'] )  
    ) {
        $default_settings   = get_site_option( 'metaslider_default_settings' );
        $breakpoints = array(
            'smartphone' => isset( $default_settings['smartphone'] ) ? (int) $default_settings['smartphone'] : 320,
            'tablet' => isset( $default_settings['tablet'] ) ? (int) $default_settings['tablet'] : 768,
            'laptop' => isset( $default_settings['laptop'] ) ? (int) $default_settings['laptop'] : 1024,
            'desktop' => isset( $default_settings['desktop'] ) ? (int) $default_settings['desktop'] : 1440
        );

        $aFields = array(
            'advancedOptions' => array(
                'priority' => 0,
                'type' => 'highlight',
                'value' => esc_html__( 'Mobile Options', 'ml-slider' )
            ),
            'mobileArrows' => array(
                'priority' => 1,
                'type' => 'mobile',
                'label' => __("Hide arrows on", "ml-slider"),
                'options' => array(
                    'smartphone' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_smartphone') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths less than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'] 
                        )
                    ),
                    'tablet' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_tablet') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'],
                            $breakpoints['laptop'] - 1
                        )
                    ),
                    'laptop' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_laptop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['laptop'],
                            $breakpoints['desktop'] - 1
                        )
                    ),
                    'desktop' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_desktop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths equal to or greater than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['desktop'] 
                        )
                    ),
                ),
            ),
            'mobileNavigation' => array(
                'priority' => 2,
                'type' => 'mobile',
                'label' => __("Hide navigation on", "ml-slider"),
                'options' => array(
                    'smartphone' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_smartphone') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths less than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'] 
                        )
                    ),
                    'tablet' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_tablet') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'],
                            $breakpoints['laptop'] - 1
                        )
                    ),
                    'laptop' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_laptop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['laptop'],
                            $breakpoints['desktop'] - 1
                        )
                    ),
                    'desktop' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_desktop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths equal to or greater than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['desktop'] 
                        )
                    ),
                )
            ),
        );
        $aFields = apply_filters('metaslider_mobile_settings', $aFields, $this->slider);
        // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        echo $this->build_settings_rows($aFields);

    }
?>
<tr class="empty-row-spacing">
    <td colspan="2"></td>
</tr>
            <?php
            // Advanced options
            $aFields = array(
                'advancedOptions' => array(
                    'priority' => 3,
                    'type' => 'highlight',
                    'value' => esc_html__( 'Advanced Options', 'ml-slider' )
                ),
                'center' => array(
                    'priority' => 10,
                    'type' => 'checkbox',
                    'label' => esc_html__("Center align", "ml-slider"),
                    'class' => 'option coin flex nivo responsive',
                    'checked' => $this->slider->get_setting(
                        'center'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Center align the slideshow in the available space on your website.",
                        "ml-slider"
                    )
                ),
                'autoPlay' => array( // Don't target 'autoPlay' to show/hide with 'dependencies' array key
                    'priority' => 20,
                    'type' => 'checkbox',
                    'label' => esc_html__("Auto play", "ml-slider"),
                    'class' => 'option flex nivo responsive coin',
                    'checked' => 'true' == $this->slider->get_setting(
                        'autoPlay'
                    ) ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Transition between slides automatically.",
                        "ml-slider"
                    )
                ),
                'pausePlay' => array( // Don't target 'pausePlay' to show/hide with 'dependencies' array key
                    'priority' => 21,
                    'type' => 'checkbox',
                    'label' => esc_html__("Play / Pause Button", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'pausePlay'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "This allows user to pause or resume Auto Play on the slideshow.",
                        "ml-slider"
                    )
                ),
                'loop' => array(
                    'priority' => 25,
                    'type' => 'select',
                    'label' => __("Loop", "ml-slider"),
                    'class' => 'option flex nivo',
                    'helptext' => __('If you choose "Loop continuously", the slides will loop infinitely. If you choose "Stop on first slide", the slideshow will stop on the first slide after showing all the items. If you choose "Stop on last slide", the slides will stop on the last slide.', 'ml-slider'),
                    'value' => $this->slider->get_setting('loop'),
                    'options' => array(
                        'continuously' => array('label' => __("Loop continuously", "ml-slider"), 'class' => ''),
                        'stopOnLast' => array('label' => __("Stop on last slide", "ml-slider"), 'class' => ''),
                        'stopOnFirst' => array('label' => __("Stop on first slide", "ml-slider"), 'class' => ''),
                    )
                ),
                'smartCrop' => array(
                    'priority' => 30,
                    'type' => 'select',
                    'label' => esc_html__("Image Crop", "ml-slider"),
                    'class' => 'option coin flex nivo responsive',
                    'value' => $this->slider->get_setting('smartCrop'),
                    'options' => array(
                        'true' => array(
                            'label' => esc_html__(
                                "Smart Crop",
                                "ml-slider"
                            ),
                            'class' => ''
                        ),
                        'false' => array(
                            'label' => esc_html__(
                                "Standard",
                                "ml-slider"
                            ),
                            'class' => ''
                        ),
                        'disabled' => array(
                            'label' => esc_html__(
                                "Disabled",
                                "ml-slider"
                            ),
                            'class' => ''
                        ),
                        'disabled_pad' => array(
                            'label' => esc_html__(
                                "Disabled (Smart Pad)",
                                "ml-slider"
                            ),
                            'class' => 'option flex'
                        ),
                    ),
                    'helptext' => esc_html__(
                        "Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size.",
                        "ml-slider"
                    )
                ),
                'smoothHeight' => array(
                    'priority' => 35,
                    'type' => 'checkbox',
                    'label' => __("Smooth Height", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'smoothHeight'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => __(
                        "Allow navigation to follow the slide's height smoothly.",
                        "ml-slider"
                    )
                ),
                'carouselMode' => array(
                    'priority' => 40,
                    'type' => 'checkbox',
                    'label' => esc_html__("Carousel mode", "ml-slider"),
                    'class' => 'option flex showNextWhenChecked',
                    'checked' => $this->slider->get_setting(
                        'carouselMode'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        'Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the "Slide" Effect.',
                        "ml-slider"
                    ),
                    'dependencies' => array(
                        array(
                            'show' => 'infiniteLoop', // Show Infinite loop
                            'when' => true // When carouselMode is true
                        ),
                        array(
                            'show' => 'loop', // Show Loop
                            'when' => false // When carouselMode is false
                        )
                    )
                ),
                'infiniteLoop' => array(
                    'priority' => 43,
                    'type' => 'checkbox',
                    'label' => esc_html__("Loop Carousel Continuously", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'infiniteLoop'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Infinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.",
                        "ml-slider"
                    )
                ),
                'carouselMargin' => array(
                    'priority' => 45,
                    'min' => 0,
                    'max' => 9999,
                    'step' => 1,
                    'type' => 'number',
                    'label' => esc_html__("Carousel margin", "ml-slider"),
                    'class' => 'option flex',
                    'value' => $this->slider->get_setting('carouselMargin'),
                    'helptext' => esc_html__(
                        "Pixel margin between slides in carousel.",
                        "ml-slider"
                    ),
                    'after' => esc_html__("px", "ml-slider")
                ),
                'firstSlideFadeIn' => array(
                    'priority' => 47,
                    'type' => 'checkbox',
                    'label' => esc_html__("Fade in", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => 'true' == $this->slider->get_setting(
                        'firstSlideFadeIn'
                    ) ? 'checked' : '',
                    'helptext' => esc_html__(
                        'This adds an animation when the slideshow loads. It only uses the "Fade" transition effect.',
                        "ml-slider"
                    ),
                ),
                'random' => array(
                    'priority' => 50,
                    'type' => 'checkbox',
                    'label' => esc_html__("Random", "ml-slider"),
                    'class' => 'option coin flex nivo responsive',
                    'checked' => $this->slider->get_setting(
                        'random'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Randomise the order of the slides.",
                        "ml-slider"
                    )
                ),
                'hoverPause' => array(
                    'priority' => 60,
                    'type' => 'checkbox',
                    'label' => esc_html__("Hover pause", "ml-slider"),
                    'class' => 'option coin flex nivo responsive',
                    'checked' => $this->slider->get_setting(
                        'hoverPause'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Pause the slideshow when hovering over slider, then resume when no longer hovering.",
                        "ml-slider"
                    )
                ),
                'reverse' => array(
                    'priority' => 70,
                    'type' => 'checkbox',
                    'label' => esc_html__("Reverse", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'reverse'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Reverse the animation direction.",
                        "ml-slider"
                    )
                ),
                'touch' => array(
                    'priority' => 80,
                    'type' => 'checkbox',
                    'label' => esc_html__("Touch Swipe", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => 'true' == $this->slider->get_setting(
                        'touch'
                    ) ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Allow touch swipe navigation of the slider on touch-enabled devices.",
                        "ml-slider"
                    )
                ),
                'delay' => array(
                    'priority' => 85,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 500,
                    'max' => 10000,
                    'step' => 100,
                    'value' => $this->slider->get_setting('delay'),
                    'label' => esc_html__("Slide delay", "ml-slider"),
                    'class' => 'option coin flex responsive nivo',
                    'helptext' => esc_html__(
                        "How long to display each slide, in milliseconds.",
                        "ml-slider"
                    ),
                    'after' => esc_html_x(
                        "ms",
                        "Short for milliseconds",
                        "ml-slider"
                    )
                ),
                'animationSpeed' => array(
                    'priority' => 90,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 2000,
                    'step' => 100,
                    'value' => $this->slider->get_setting('animationSpeed'),
                    'label' => esc_html__("Transition Speed", "ml-slider"),
                    'class' => 'option flex responsive nivo',
                    'helptext' => esc_html__(
                        'Choose the speed of the animation in milliseconds. You can select the animation in the "Effect" field.',
                        'ml-slider'
                    ),
                    'after' => esc_html_x(
                        "ms",
                        "Short for milliseconds",
                        "ml-slider"
                    )
                ),
                'slices' => array(
                    'priority' => 100,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 20,
                    'step' => 1,
                    'value' => $this->slider->get_setting('slices'),
                    'label' => esc_html__("Number of slices", "ml-slider"),
                    'class' => 'option nivo',
                    'helptext' => esc_html__("Number of slices", "ml-slider"),
                ),
                'spw' => array(
                    'priority' => 110,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 20,
                    'step' => 1,
                    'value' => $this->slider->get_setting('spw'),
                    'label' => esc_html__(
                            "Number of squares",
                            "ml-slider"
                        ) . " (" . esc_html__("Width", "ml-slider") . ")",
                    'class' => 'option nivo',
                    'helptext' => esc_html__("Number of squares", "ml-slider"),
                    'after' => ''
                ),
                'sph' => array(
                    'priority' => 120,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 20,
                    'step' => 1,
                    'value' => $this->slider->get_setting('sph'),
                    'label' => esc_html__(
                            "Number of squares",
                            "ml-slider"
                        ) . " (" . esc_html__("Height", "ml-slider") . ")",
                    'class' => 'option nivo',
                    'helptext' => esc_html__("Number of squares", "ml-slider"),
                    'after' => ''
                ),
                'direction' => array(
                    'priority' => 130,
                    'type' => 'select',
                    'label' => esc_html__("Slide direction", "ml-slider"),
                    'class' => 'option flex',
                    'helptext' => esc_html__(
                        'Select the direction that slides will move. Vertical will not work if "Carousel mode" is enabled or "Effect" is set to "Fade".',
                        'ml-slider'
                    ),
                    'value' => $this->slider->get_setting('direction'),
                    'options' => array(
                        'horizontal' => array(
                            'label' => esc_html__(
                                "Horizontal",
                                "ml-slider"
                            ),
                            'class' => ''
                        ),
                        'vertical' => array(
                            'label' => esc_html__(
                                "Vertical",
                                "ml-slider"
                            ),
                            'class' => ''
                        ),
                    )
                ),
                'easing' => array(
                    'priority' => 140,
                    'type' => 'select',
                    'label' => esc_html__("Easing", "ml-slider"),
                    'class' => 'option flex',
                    'helptext' => esc_html__(
                        'Easing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the "Slide" Effect.',
                        "ml-slider"
                    ),
                    'value' => $this->slider->get_setting('easing'),
                    'options' => $this->get_easing_options()
                ),
                'prevText' => array(
                    'priority' => 150,
                    'type' => 'text',
                    'label' => esc_html__("Previous text", "ml-slider"),
                    'class' => 'option coin flex responsive nivo',
                    'helptext' => esc_html__(
                        'Set the text for the "previous" direction item.',
                        "ml-slider"
                    ),
                    'value' => $this->slider->get_setting(
                        'prevText'
                    ) == 'false' ? '' : $this->slider->get_setting('prevText')
                ),
                'nextText' => array(
                    'priority' => 160,
                    'type' => 'text',
                    'label' => esc_html__("Next text", "ml-slider"),
                    'class' => 'option coin flex responsive nivo',
                    'helptext' => esc_html__(
                        'Set the text for the "next" direction item.',
                        "ml-slider"
                    ),
                    'value' => $this->slider->get_setting(
                        'nextText'
                    ) == 'false' ? '' : $this->slider->get_setting('nextText')
                ),
                'sDelay' => array(
                    'priority' => 170,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 500,
                    'step' => 10,
                    'value' => $this->slider->get_setting('sDelay'),
                    'label' => esc_html__("Square delay", "ml-slider"),
                    'class' => 'option coin',
                    'helptext' => esc_html__(
                        "Delay between squares in ms.",
                        "ml-slider"
                    ),
                    'after' => esc_html_x(
                        "ms",
                        "Short for milliseconds",
                        "ml-slider"
                    )
                ),
                'opacity' => array(
                    'priority' => 180,
                    'type' => 'text',
                    'value' => $this->slider->get_setting('opacity'),
                    'label' => esc_html__("Opacity", "ml-slider"),
                    'class' => 'option coin',
                    'helptext' => esc_html__(
                        "Opacity of title and navigation, between 0 and 1.",
                        "ml-slider"
                    ),
                    'after' => ''
                ),
                'titleSpeed' => array(
                    'priority' => 190,
                    'type' => 'number',
                    'size' => 3,
                    'min' => 0,
                    'max' => 10000,
                    'step' => 100,
                    'value' => $this->slider->get_setting('titleSpeed'),
                    'label' => esc_html__("Caption speed", "ml-slider"),
                    'class' => 'option coin',
                    'helptext' => esc_html__(
                        "Set the fade in speed of the caption.",
                        "ml-slider"
                    ),
                    'after' => esc_html_x(
                        "ms",
                        "Short for milliseconds",
                        "ml-slider"
                    )
                ),
                'accessibilityOptions' => array(
                    'priority' => 191,
                    'type' => 'highlight',
                    'value' => esc_html__( 'Accessibility Options', 'ml-slider' ),
                    'topspacing' => true
                ),
                'keyboard' => array(
                    'priority' => 192,
                    'type' => 'checkbox',
                    'label' => esc_html__("Keyboard Controls", "ml-slider"),
                    'class' => 'option coin flex nivo responsive',
                    'checked' => 'true' == $this->slider->get_setting(
                        'keyboard'
                    ) ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Use arrow keys to get to the next slide.",
                        "ml-slider"
                    )
                ),
                'tabIndex' => array(
                    'priority' => 193,
                    'type' => 'checkbox',
                    'label' => esc_html__("Tabindex for navigation", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'tabIndex'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "This helps make the slideshow navigation more accessible.",
                        "ml-slider"
                    )
                ),
                'ariaLive' => array(
                    'priority' => 195,
                    'type' => 'checkbox',
                    'label' => esc_html__("ARIA Live", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'ariaLive'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "If Autoplay is enabled, this causes screen readers to announce that the slides are changing.",
                        "ml-slider"
                    )
                ),
                'ariaCurrent' => array(
                    'priority' => 196,
                    'type' => 'checkbox',
                    'label' => esc_html__("ARIA Current", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'ariaCurrent'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "This is used on the navigation button for the active slide. It helps screen readers understand which slide is active.",
                        "ml-slider"
                    )
                ),
                'developerOptions' => array(
                    'priority' => 198,
                    'type' => 'highlight',
                    'value' => esc_html__( 'Developer Options', 'ml-slider' ),
                    'topspacing' => true
                ),
                'cssClass' => array(
                    'priority' => 200,
                    'type' => 'text',
                    'label' => esc_html__("CSS classes", "ml-slider"),
                    'class' => 'option coin flex responsive nivo',
                    'helptext' => esc_html__(
                        "Enter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.",
                        "ml-slider"
                    ),
                    'value' => $this->slider->get_setting(
                        'cssClass'
                    ) == 'false' ? '' : $this->slider->get_setting('cssClass')
                ),
                'printCss' => array(
                    'priority' => 210,
                    'type' => 'checkbox',
                    'label' => esc_html__("Print CSS", "ml-slider"),
                    'class' => 'option coin flex responsive nivo useWithCaution',
                    'checked' => $this->slider->get_setting(
                        'printCss'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Uncheck this if you would like to include your own CSS.",
                        "ml-slider"
                    )
                ),
                'printJs' => array(
                    'priority' => 220,
                    'type' => 'checkbox',
                    'label' => esc_html__("Print JS", "ml-slider"),
                    'class' => 'option coin flex responsive nivo useWithCaution',
                    'checked' => $this->slider->get_setting(
                        'printJs'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Uncheck this if you would like to include your own Javascript.",
                        "ml-slider"
                    )
                ),
                'noConflict' => array(
                    'priority' => 230,
                    'type' => 'checkbox',
                    'label' => esc_html__("No conflict mode", "ml-slider"),
                    'class' => 'option flex',
                    'checked' => $this->slider->get_setting(
                        'noConflict'
                    ) == 'true' ? 'checked' : '',
                    'helptext' => esc_html__(
                        "Delay adding the flexslider class to the slideshow.",
                        "ml-slider"
                    )
                )
            );

            $aFields = apply_filters(
                'metaslider_advanced_settings',
                $aFields,
                $this->slider
            );

            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            echo $this->build_settings_rows($aFields);
            ?>
            <tr class="empty-row-spacing">
                <td colspan="2"></td>
            </tr>
            <tr class="highlight">
                <td colspan="2">
                    <?php esc_html_e( 'Shortcode', 'ml-slider' ) ?>
                </td>
            </tr>
            <tr class="empty-row-spacing">
                <td colspan="2"></td>
            </tr>
            <tr>
                <td colspan="2">
                    <?php include METASLIDER_PATH . "admin/views/pages/parts/shortcode.php"; ?>
                </td>
            </tr>
            <tr class="empty-row-spacing">
                <td colspan="2"></td>
            </tr>
            <?php
            // Show the restore button if there are trashed posts
            // Also, render but hide the link in case we want to show
            // it when the user deletes their first slide
            $count = count(metaslider_has_trashed_slides($this->slider->id));
            if ( ! metaslider_viewing_trashed_slides( $this->slider->id ) ) {
            ?>
            <tr class="highlight trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
                <td colspan="2">
                    <?php esc_html_e( 'Trashed slides', 'ml-slider' ) ?>
                </td>
            </tr>
            <tr class="empty-row-spacing trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
                <td colspan="2"></td>
            </tr>
            <tr class="trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
                <td colspan="2">
                    <a class="restore-slide-link text-blue-dark hover:text-orange"
                        href="<?php
                        echo esc_url(
                            admin_url(
                                "admin.php?page=metaslider&id={$this->slider->id}&show_trashed=true"
                            )
                        ); ?>">
                        <i><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"
                                viewBox="0 0 24 24" fill="none" stroke="currentColor"
                                stroke-width="2" stroke-linecap="round"
                                stroke-linejoin="round" class="feather feather-trash-2"><polyline
                                        points="3 6 5 6 21 6"/><path
                                        d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/><line
                                        x1="10" y1="11" x2="10" y2="17"/><line x1="14" y1="11" x2="14" y2="17"/></svg></i> 
                        <?php esc_attr_e( 'View trashed slides', 'ml-slider' ); ?> 
                        <?php echo $count ? '(' . (int) $count . ')' : '' ?>
                    </a>
                </td>
            </tr>
            <tr class="empty-row-spacing trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
                <td colspan="2"></td>
            </tr>
            <?php
            }
            ?>
    </tbody>
</table>admin/views/pages/parts/toolbar.php000064400000024021151213254540013375 0ustar00<?php if (!defined('ABSPATH')) {
    die('No direct access.');
}
/**
 * Using inline-template as there's a flicker before it loads
 */
?>
<metaslider-toolbar inline-template>
	<div id="ms-toolbar"
		class="flex-col items-center bg-white h-16 shadow-sm lg:sticky z-999<?php echo !$this->slider ? ' ms-toolbar-no-slides' : '' ?>"
		:class="{'shadow-md':scrolling, 'flex': !isIE11}">
		<div class="container h-full px-6">
			<div class="flex items-center h-full -mx-4">
    			<a href="<?php echo esc_url(admin_url('admin.php?page=metaslider')); ?>" class="flex items-center h-full py-2 px-4 hidden sm:block">
    				<img style="height:46px;width:auto;" class="mr-2 rtl:mr-0 rtl:ml-2" src="<?php echo esc_url(METASLIDER_ADMIN_URL); ?>images/metaslider_logo3.png" alt="MetaSlider">
    			</a>
				<?php if ($this->slider) : ?>
				<div class="flex-grow h-full px-4">
					<div class="-mx-4 items-center flex h-full">
						<div class="flex items-center flex-grow px-4 h-full toolbar-separator"></div>
						<div class="px-4 h-full toolbar-actions">
							<div class="flex justify-end items-center h-full text-gray">

                            <?php if (  ! metaslider_viewing_trashed_slides( $this->slider->id ) ) : ?>
								<button @click.prevent="addSlide()" id="add-new-slide" class='ms-toolbar-button tipsy-tooltip-bottom-toolbar' title='<?php esc_attr_e("Add a new slide", "ml-slider") ?>'>
                                    <svg class="w-6 p-0.5 text-gray-dark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
                                    </svg>
									<span class="text-sm text-gray-darkest"><?php esc_html_e("Add Slide", "ml-slider") ?></span>
								</button>

								<button
                                    @click.prevent="preview()"
                                    id="preview-slideshow"
                                    title="<?php esc_attr_e('Save & open the preview', 'ml-slider'); echo esc_attr(_x(' (alt + p)', 'This is a keyboard shortcut.', 'ml-slider')); ?>" class="ms-toolbar-button tipsy-tooltip-bottom-toolbar"
                                    :disabled="locked"
                                    :class="{'disabled': locked}">
                                    <svg
                                        :class="{'text-gray-dark': !locked}"
                                        class="w-6 p-0.5"
                                        xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z" />
                                    </svg>
									<span class="text-sm"><?php esc_html_e('Preview', 'ml-slider'); ?></span>
								</button>

                                <?php /* Removed for now
                                <span class="border-l h-8 mx-2"></span>

                                <a class="ms-toolbar-button tipsy-tooltip-bottom-toolbar" title="<?php _e('Read the documentation', 'ml-slider'); ?>" href="https://www.metaslider.com/documentation/" target="_blank">
                                    <svg class="w-6 p-0.5 text-gray-dark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253" />
                                    </svg>
                                    <span class="text-sm text-gray-darkest"><?php _e('Docs', 'ml-slider'); ?></span>
                                </a>
                                */?>

								<span class="border-l h-8 mx-2"></span>

								<a class="ms-toolbar-button tipsy-tooltip-bottom-toolbar" title="<?php esc_attr_e('Add a new slideshow', 'ml-slider'); ?>" href="<?php echo esc_url(wp_nonce_url(admin_url("admin-post.php?action=metaslider_create_slider"), "metaslider_create_slider")); ?>">
                                <svg class="w-6 p-0.5 text-gray-dark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z" />
                                </svg>
									<span class="text-sm text-gray-darkest"><?php esc_html_e('New', 'ml-slider'); ?></span>
								</a>

								<button
                                    @click.prevent="duplicate()"
                                    title="<?php esc_attr_e('Duplicate this slideshow', 'ml-slider'); ?>"
                                    class="ms-toolbar-button tipsy-tooltip-bottom-toolbar"
                                    :disabled="duplicating"
                                    :class="{'disabled transition-none': duplicating}">
                                <svg
                                    :class="{'text-gray-dark': !duplicating}"
                                    class="w-6 p-0.5"
                                    mlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z" />
                                </svg>
									<span
                                        :class="{'text-gray-darkest': !duplicating, 'transition-none': duplicating}"
                                        class="text-sm"><?php esc_html_e('Duplicate', 'ml-slider'); ?></span>
								</button>

								<!-- Pro only add css feature -->
								<?php ob_start(); ?>
								<button @click.prevent="showCSSManagerNotice()" title="<?php esc_attr_e('Adding custom CSS is a MetaSlider Pro feature. Click to learn more.', 'ml-slider'); ?>" class="ms-toolbar-button tipsy-tooltip-bottom-toolbar" :class="{'disabled':true}">
                                <svg class="w-6 p-0.5 text-gray-dark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01" />
                                </svg>
									<span class="text-sm text-gray-darkest"><?php esc_html_e('Add CSS', 'ml-slider'); ?></span>
								</button>
								<?php echo apply_filters('metaslider_add_css_module', ob_get_clean()); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>

								<span class="border-l h-8 mx-2"></span>

								<!-- TODO: Create a vue component -->
								<!-- TODO: check what triggers id="ms-save" -->
								<button
                                    @click.prevent="save()"
                                    title="<?php esc_attr_e('Save slideshow', 'ml-slider'); ?>"
                                    id="ms-save"
                                    class="ms-toolbar-button tipsy-tooltip-bottom-toolbar"
                                    :disabled="locked"
                                    :class="{'disabled': locked}">
                                    <svg
                                        v-if="locked"
                                        :class="{'opacity-100': true}"
                                        class="opacity-0 w-6 p-0.5 ms-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" />
                                    </svg>
                                    <svg v-else class="w-6 p-0.5 text-gray-dark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7H5a2 2 0 00-2 2v9a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-3m-1 4l-3 3m0 0l-3-3m3 3V4" />
                                    </svg>
									<span :class="{'text-gray-darkest': !locked}" class="text-sm"><?php esc_html_e('Save', 'ml-slider'); ?></span>
								</button>
                            <?php else : ?>
                                <a href="<?php 
                                    echo esc_url(
                                            admin_url( "admin.php?page=metaslider&id={$this->slider->id}" )
                                    ) ?>" class="ms-toolbar-button tipsy-tooltip-bottom-toolbar">
                                    <svg class="w-6 p-0.5 text-gray-dark" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
                                        <path stroke-linecap="round" stroke-linejoin="round" d="M9 15L3 9m0 0l6-6M3 9h12a6 6 0 010 12h-3" />
                                    </svg>
									<span :class="{'text-gray-darkest': !locked}" class="text-sm">
                                        <?php esc_html_e( 'Return to Published Slides', 'ml-slider'); ?>
                                    </span>
                                </a>
                            <?php endif; ?>

							</div>
						</div>
					</div>
				</div>
				<?php endif; ?>
			</div>
		</div>
	</div>
</metaslider-toolbar>
admin/views/pages/parts/ie-warning.php000064400000002001151213254540013765 0ustar00<div class="m-6 mt-10 bg-white shadow sm:rounded-lg">
  <div class="px-4 py-5 sm:p-6">
    <h3 class="text-lg leading-6 font-medium text-gray-darker mt-0">
      <?php esc_html_e('Browser upgrade required', 'ml-slider'); ?>
    </h3>
    <div class="mt-2 max-w-xl text-sm leading-5 text-gray-dark">
      <p>
        <?php printf(esc_html__('It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.', 'ml-slider'), '<strong>' . esc_html__('Microsoft Internet Explorer 11', 'ml-slider') . '</strong>', esc_html__('IE11', 'ml-slider')); ?>
      </p>
    </div>
    <div class="mt-3 text-sm leading-5">
        <?php printf('<a href="https://support.microsoft.com/help/17621/internet-explorer-downloads" class="font-medium text-orange hover:text-orange-darker transition ease-in-out duration-150">%s</a>', esc_html__('Update Internet Explorer', 'ml-slider')); ?>
    </div>
  </div>
</div>
admin/views/pages/parts/slider-settings.php000064400000077410151213254540015065 0ustar00<?php
    if (!defined('ABSPATH')) {
        die('No direct access.');
    }
?>
<table id="hide-legacy-settings" class="ms-settings-table border-0">
    <tbody>
    <?php
        $aFields = array(
            'type' => array(
                'priority' => 0,
                'type' => 'slider-lib',
                'value' => $this->slider->get_setting('type'),
                'options' => array(
                    'flex' => array('label' => "FlexSlider"),
                    'responsive' => array('label' => "R. Slides"),
                    'nivo' => array('label' => "Nivo Slider"),
                    'coin' => array('label' => "Coin Slider")
                )
            ),
            'mainOptions' => array(
               'priority' => 1,
               'type' => 'highlight',
               'value' => esc_html__( 'Main Options', 'ml-slider' )
            ),
            'width' => array(
                'priority' => 10,
                'type' => 'number',
                'size' => 3,
                'min' => 0,
                'max' => 9999,
                'step' => 1,
                'value' => $this->slider->get_setting('width'),
                'label' => __("Width", "ml-slider"),
                'class' => 'flex',
                'helptext' => __("Slideshow width", "ml-slider"),
                'after' => __("px", "ml-slider")
            ),
            'height' => array(
                'priority' => 20,
                'type' => 'number',
                'size' => 3,
                'min' => 0,
                'max' => 9999,
                'step' => 1,
                'value' => $this->slider->get_setting('height'),
                'label' => __("Height", "ml-slider"),
                'class' => 'flex',
                'helptext' => __("Slideshow height", "ml-slider"),
                'after' => __("px", "ml-slider")
            ),
            'effect' => array(
                'priority' => 30,
                'type' => 'select',
                'value' => $this->slider->get_setting('effect'),
                'label' => __("Transition Effect", "ml-slider"),
                'class' => 'effect flex width w-40',
                'helptext' => __("This animation is used when changing slides.", "ml-slider"),
                'dependencies' => array(
                    array(
                        'show' => 'easing', // Show Easing setting
                        'when' => 'slide' // When Effect is 'slide'
                    ),
                    array(
                        'show' => 'firstSlideFadeIn',
                        'when' => 'fade'
                    )
                ),
                'options' => array(
                    'fade' => array(
                        'class' => 'option flex',
                        'label' => __("Fade", "ml-slider")
                    ),
                    'slide' => array(
                        'class' => 'option flex',
                        'label' => __("Slide", "ml-slider")
                    )
                ),
            ),
            'links' => array(
                'priority' => 50,
                'type' => 'checkbox',
                'label' => __("Arrows", "ml-slider"),
                'class' => 'option flex',
                'checked' => $this->slider->get_setting(
                    'links'
                ) == 'true' ? 'checked' : '',
                'helptext' => __(
                    "Show the Previous / Next arrows.",
                    "ml-slider"
                ),
                'dependencies' => array(
                    array(
                        'show' => 'mobileArrows_smartphone',
                        'when' => true
                    )
                )
            ),
            'navigation' => array(
                'priority' => 60,
                'type' => 'navigation',
                'label' => __("Navigation", "ml-slider"),
                'class' => 'option flex',
                'value' => $this->slider->get_setting('navigation'),
                'helptext' => __(
                    "Show navigation options so that users can browse the slides.",
                    "ml-slider"
                ),
                'options' => array(
                    'false' => array(
                        'label' => __("Hidden", "ml-slider")
                    ),
                    'true' => array(
                        'label' => __("Dots", "ml-slider")
                    ),
                    'thumbs' => array(
                        'label' => __("Thumbnail (Pro)", "ml-slider"),
                        'addon_required' => true
                    ),
                    'filmstrip' => array(
                        'label' => __("Filmstrip (Pro)", "ml-slider"),
                        'addon_required' => true
                    ),
                ),
                'dependencies' => array(
                    array(
                        'show' => 'mobileNavigation_smartphone',
                        'when' => array(
                            'true',
                            'thumbs', 
                            'filmstrip'
                        )
                    ),
                    array(
                        'show' => 'ariaCurrent',
                        'when' => array(
                            'true',
                            'thumbs', 
                            'filmstrip'
                        )
                    ),
                )
            ),
            'fullWidth' => array(
                'priority' => 70,
                'type' => 'checkbox',
                'label' => esc_html__("100% width", "ml-slider"),
                'class' => 'option flex nivo responsive',
                'checked' => $this->slider->get_setting(
                    'fullWidth'
                ) == 'true' ? 'checked' : '',
                'helptext' => esc_html__(
                    "Stretch the slideshow output to fill it's parent container.",
                    "ml-slider"
                )
            ),
        );
        $aFields = apply_filters('metaslider_basic_settings', $aFields, $this->slider);
        // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        echo $this->build_settings_rows($aFields);
?>
                                                    
    <tr class="empty-row-spacing">
        <td colspan="2"></td>
    </tr>
    <tr class="highlight">
        <td colspan="2">
            <?php esc_html_e( 'Theme', 'ml-slider' ) ?>
        </td>
    </tr>
    <tr class="empty-row-spacing">
        <td colspan="2"></td>
    </tr>
    <tr>
        <td colspan="2">
            <metaslider-theme-viewer
                    theme-directory-url="<?php
                    echo esc_url(METASLIDER_THEMES_URL); ?>"
            ></metaslider-theme-viewer>
        </td>
    </tr>
    <tr class="empty-row-spacing mobileOptions">
        <td colspan="2"></td>
    </tr>
<?php
    // Mobile options
    if ( !isset( $global_settings['mobileSettings'] ) 
        || ( isset( $global_settings['mobileSettings'] ) && true == $global_settings['mobileSettings'] )  
    ) {
        $default_settings   = get_site_option( 'metaslider_default_settings' );
        $breakpoints = array(
            'smartphone' => isset( $default_settings['smartphone'] ) ? (int) $default_settings['smartphone'] : 320,
            'tablet' => isset( $default_settings['tablet'] ) ? (int) $default_settings['tablet'] : 768,
            'laptop' => isset( $default_settings['laptop'] ) ? (int) $default_settings['laptop'] : 1024,
            'desktop' => isset( $default_settings['desktop'] ) ? (int) $default_settings['desktop'] : 1440
        );

        $aFields = array(
            'mobileOptions' => array(
                'priority' => 0,
                'type' => 'highlight',
                'value' => esc_html__( 'Mobile Options', 'ml-slider' )
            ),
            'mobileArrows' => array(
                'priority' => 1,
                'type' => 'mobile',
                'label' => __("Hide arrows on", "ml-slider"),
                'options' => array(
                    'smartphone' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_smartphone') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths less than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'] 
                        )
                    ),
                    'tablet' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_tablet') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'],
                            $breakpoints['laptop'] - 1
                        )
                    ),
                    'laptop' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_laptop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['laptop'],
                            $breakpoints['desktop'] - 1
                        )
                    ),
                    'desktop' => array(
                        'checked' => $this->slider->get_setting('mobileArrows_desktop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the arrows on screen widths equal to or greater than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['desktop'] 
                        )
                    ),
                )
            ),
            'mobileNavigation' => array(
                'priority' => 2,
                'type' => 'mobile',
                'label' => __("Hide navigation on", "ml-slider"),
                'options' => array(
                    'smartphone' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_smartphone') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths less than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'] 
                        )
                    ),
                    'tablet' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_tablet') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['tablet'],
                            $breakpoints['laptop'] - 1
                        )
                    ),
                    'laptop' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_laptop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['laptop'],
                            $breakpoints['desktop'] - 1
                        )
                    ),
                    'desktop' => array(
                        'checked' => $this->slider->get_setting('mobileNavigation_desktop') == 'true' ? 'checked' : '',
                        'helptext' => sprintf( 
                            __( 
                                'When enabled this setting will hide the navigation on screen widths equal to or greater than %spx.', 
                                'ml-slider'
                            ), 
                            $breakpoints['desktop'] 
                        )
                    ),
                )
            ),
        );
        $aFields = apply_filters('metaslider_mobile_settings', $aFields, $this->slider);
        // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        echo $this->build_settings_rows($aFields);

    }
?>
    <tr class="empty-row-spacing">
        <td colspan="2"></td>
    </tr>
<?php
    // Advanced options
    $aFields = array(
        'advancedOptions' => array(
            'priority' => 3,
            'type' => 'highlight',
            'value' => esc_html__( 'Advanced Options', 'ml-slider' )
        ),
        'center' => array(
            'priority' => 10,
            'type' => 'checkbox',
            'label' => esc_html__("Center align", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'center'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Center align the slideshow in the available space on your website.",
                "ml-slider"
            )
        ),
        'autoPlay' => array( // Don't target 'autoPlay' to show/hide with 'dependencies' array key
            'priority' => 20,
            'type' => 'checkbox',
            'label' => esc_html__("Auto play", "ml-slider"),
            'class' => 'option flex',
            'checked' => 'true' == $this->slider->get_setting(
                'autoPlay'
            ) ? 'checked' : '',
            'helptext' => esc_html__(
                "Transition between slides automatically.",
                "ml-slider"
            )
        ),
        'pausePlay' => array( // Don't target 'pausePlay' to show/hide with 'dependencies' array key
            'priority' => 21,
            'type' => 'checkbox',
            'label' => esc_html__("Play / Pause Button", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'pausePlay'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "This allows user to pause or resume Auto Play on the slideshow.",
                "ml-slider"
            )
        ),
        'loop' => array(
            'priority' => 25,
            'type' => 'select',
            'label' => __("Loop", "ml-slider"),
            'class' => 'option flex',
            'helptext' => __('If you choose "Loop continuously", the slides will loop infinitely. If you choose "Stop on first slide", the slideshow will stop on the first slide after showing all the items. If you choose "Stop on last slide", the slides will stop on the last slide.', 'ml-slider'),
            'value' => $this->slider->get_setting('loop'),
            'options' => array(
                'continuously' => array('label' => __("Loop continuously", "ml-slider"), 'class' => ''),
                'stopOnLast' => array('label' => __("Stop on last slide", "ml-slider"), 'class' => ''),
                'stopOnFirst' => array('label' => __("Stop on first slide", "ml-slider"), 'class' => ''),
            )
        ),
        'smartCrop' => array(
            'priority' => 30,
            'type' => 'select',
            'label' => esc_html__("Image Crop", "ml-slider"),
            'class' => 'option flex',
            'value' => $this->slider->get_setting('smartCrop'),
            'options' => array(
                'true' => array(
                    'label' => esc_html__(
                        "Smart Crop",
                        "ml-slider"
                    ),
                    'class' => ''
                ),
                'false' => array(
                    'label' => esc_html__(
                        "Standard",
                        "ml-slider"
                    ),
                    'class' => ''
                ),
                'disabled' => array(
                    'label' => esc_html__(
                        "Disabled",
                        "ml-slider"
                    ),
                    'class' => ''
                ),
                'disabled_pad' => array(
                    'label' => esc_html__(
                        "Disabled (Smart Pad)",
                        "ml-slider"
                    ),
                    'class' => 'option flex'
                ),
            ),
            'helptext' => esc_html__(
                "Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size.",
                "ml-slider"
            )
        ),
        'smoothHeight' => array(
            'priority' => 35,
            'type' => 'checkbox',
            'label' => __("Smooth Height", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'smoothHeight'
            ) == 'true' ? 'checked' : '',
            'helptext' => __(
                "Allow navigation to follow the slide's height smoothly.",
                "ml-slider"
            )
        ),
        'carouselMode' => array(
            'priority' => 40,
            'type' => 'checkbox',
            'label' => esc_html__("Carousel mode", "ml-slider"),
            'class' => 'option flex showNextWhenChecked',
            'checked' => $this->slider->get_setting(
                'carouselMode'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect.",
                "ml-slider"
            ),
            'dependencies' => array(
                array(
                    'show' => 'infiniteLoop', // Show Infinite loop
                    'when' => true // When carouselMode is true
                ),
                array(
                    'show' => 'loop', // Show Loop
                    'when' => false // When carouselMode is false
                )
            )
        ),
        'infiniteLoop' => array(
            'priority' => 43,
            'type' => 'checkbox',
            'label' => esc_html__("Loop Carousel Continuously", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'infiniteLoop'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Infinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.",
                "ml-slider"
            )
        ),
        'carouselMargin' => array(
            'priority' => 45,
            'min' => 0,
            'max' => 9999,
            'step' => 1,
            'type' => 'number',
            'label' => esc_html__("Carousel margin", "ml-slider"),
            'class' => 'option flex',
            'value' => $this->slider->get_setting('carouselMargin'),
            'helptext' => esc_html__(
                "Pixel margin between slides in carousel.",
                "ml-slider"
            ),
            'after' => esc_html__("px", "ml-slider")
        ),
        'firstSlideFadeIn' => array(
            'priority' => 47,
            'type' => 'checkbox',
            'label' => esc_html__("Fade in", "ml-slider"),
            'class' => 'option flex',
            'checked' => 'true' == $this->slider->get_setting(
                'firstSlideFadeIn'
            ) ? 'checked' : '',
            'helptext' => esc_html__(
                'This adds an animation when the slideshow loads. It only uses the "Fade" transition effect.',
                "ml-slider"
            )
        ),
        'random' => array(
            'priority' => 50,
            'type' => 'checkbox',
            'label' => esc_html__("Random", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'random'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Randomise the order of the slides.",
                "ml-slider"
            )
        ),
        'hoverPause' => array(
            'priority' => 60,
            'type' => 'checkbox',
            'label' => esc_html__("Hover pause", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'hoverPause'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Pause the slideshow when hovering over slider, then resume when no longer hovering.",
                "ml-slider"
            )
        ),
        'reverse' => array(
            'priority' => 70,
            'type' => 'checkbox',
            'label' => esc_html__("Reverse", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'reverse'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Reverse the animation direction.",
                "ml-slider"
            )
        ),
        'touch' => array(
            'priority' => 80,
            'type' => 'checkbox',
            'label' => esc_html__("Touch Swipe", "ml-slider"),
            'class' => 'option flex',
            'checked' => 'true' == $this->slider->get_setting(
                'touch'
            ) ? 'checked' : '',
            'helptext' => esc_html__(
                "Allow touch swipe navigation of the slider on touch-enabled devices.",
                "ml-slider"
            )
        ),
        'delay' => array(
            'priority' => 85,
            'type' => 'number',
            'size' => 3,
            'min' => 500,
            'max' => 10000,
            'step' => 100,
            'value' => $this->slider->get_setting('delay'),
            'label' => esc_html__("Slide delay", "ml-slider"),
            'class' => 'option flex',
            'helptext' => esc_html__(
                "How long to display each slide, in milliseconds.",
                "ml-slider"
            ),
            'after' => esc_html_x(
                "ms",
                "Short for milliseconds",
                "ml-slider"
            )
        ),
        'animationSpeed' => array(
            'priority' => 90,
            'type' => 'number',
            'size' => 3,
            'min' => 0,
            'max' => 2000,
            'step' => 100,
            'value' => $this->slider->get_setting('animationSpeed'),
            'label' => esc_html__("Transition Speed", "ml-slider"),
            'class' => 'option flex',
            'helptext' => esc_html__(
                'Choose the speed of the animation in milliseconds. You can select the animation in the "Effect" field.',
                "ml-slider"
            ),
            'after' => esc_html_x(
                "ms",
                "Short for milliseconds",
                "ml-slider"
            )
        ),
        'direction' => array(
            'priority' => 95,
            'type' => 'select',
            'label' => esc_html__("Slide direction", "ml-slider"),
            'class' => 'option flex',
            'helptext' => esc_html__(
                'Select the direction that slides will move. Vertical will not work if "Carousel mode" is enabled or "Effect" is set to "Fade".',
                'ml-slider'
            ),
            'value' => $this->slider->get_setting('direction'),
            'options' => array(
                'horizontal' => array(
                    'label' => esc_html__(
                        "Horizontal",
                        "ml-slider"
                    ),
                    'class' => ''
                ),
                'vertical' => array(
                    'label' => esc_html__(
                        "Vertical",
                        "ml-slider"
                    ),
                    'class' => ''
                ),
            )
        ),
        'easing' => array(
            'priority' => 100,
            'type' => 'select',
            'label' => esc_html__("Easing", "ml-slider"),
            'class' => 'option flex',
            'helptext' => esc_html__(
                'Easing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the "Slide" Effect.',
                "ml-slider"
            ),
            'value' => $this->slider->get_setting('easing'),
            'options' => $this->get_easing_options()
        ),
        'accessibilityOptions' => array(
            'priority' => 181,
            'type' => 'highlight',
            'value' => esc_html__( 'Accessibility Options', 'ml-slider' ),
            'topspacing' => true
        ),
        'keyboard' => array(
            'priority' => 182,
            'type' => 'checkbox',
            'label' => esc_html__("Keyboard Controls", "ml-slider"),
            'class' => 'option coin flex nivo responsive',
            'checked' => 'true' == $this->slider->get_setting(
                'keyboard'
            ) ? 'checked' : '',
            'helptext' => esc_html__(
                "Use arrow keys to get to the next slide.",
                "ml-slider"
            )
        ),
        'tabIndex' => array(
            'priority' => 183,
            'type' => 'checkbox',
            'label' => esc_html__("Tabindex for navigation", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'tabIndex'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "This helps make the slideshow navigation more accessible.",
                "ml-slider"
            )
        ),
        'ariaLive' => array(
            'priority' => 185,
            'type' => 'checkbox',
            'label' => esc_html__("ARIA Live", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'ariaLive'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "If Autoplay is enabled, this causes screen readers to announce that the slides are changing.",
                "ml-slider"
            )
        ),
        'ariaCurrent' => array(
            'priority' => 186,
            'type' => 'checkbox',
            'label' => esc_html__("ARIA Current", "ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'ariaCurrent'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "This is used on the navigation button for the active slide. It helps screen readers understand which slide is active.",
                "ml-slider"
            )
        ),
        'developerOptions' => array(
            'priority' => 195,
            'type' => 'highlight',
            'value' => esc_html__( 'Developer Options', 'ml-slider' ),
            'topspacing' => true
        ),
        'cssClass' => array(
            'priority' => 200,
            'type' => 'text',
            'label' => esc_html__("CSS classes", "ml-slider"),
            'class' => 'option flex',
            'helptext' => esc_html__(
                "Enter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.",
                "ml-slider"
            ),
            'value' => $this->slider->get_setting(
                'cssClass'
            ) == 'false' ? '' : $this->slider->get_setting('cssClass')
        ),
        'printCss' => array(
            'priority' => 210,
            'type' => 'checkbox',
            'label' => esc_html__("Print CSS", "ml-slider"),
            'class' => 'option flex useWithCaution',
            'checked' => $this->slider->get_setting(
                'printCss'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Uncheck this if you would like to include your own CSS.",
                "ml-slider"
            )
        ),
        'printJs' => array(
            'priority' => 220,
            'type' => 'checkbox',
            'label' => esc_html__("Print JS", "ml-slider"),
            'class' => 'option flex useWithCaution',
            'checked' => $this->slider->get_setting(
                'printJs'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Uncheck this if you would like to include your own Javascript.",
                "ml-slider"
            )
        ),
        'noConflict' => array(
            'priority' => 230,
            'type' => 'checkbox',
            'label' => esc_html__("No conflict mode","ml-slider"),
            'class' => 'option flex',
            'checked' => $this->slider->get_setting(
                'noConflict'
            ) == 'true' ? 'checked' : '',
            'helptext' => esc_html__(
                "Delay adding the flexslider class to the slideshow.",
                "ml-slider"
            )
        )   
    );
    $aFields = apply_filters('metaslider_advanced_settings', $aFields, $this->slider);
    // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    echo $this->build_settings_rows($aFields);
?>
    <tr class="empty-row-spacing">
        <td colspan="2"></td>
    </tr>
    <tr class="highlight">
        <td colspan="2">
            <?php esc_html_e( 'Shortcode', 'ml-slider' ) ?>
        </td>
    </tr>
    <tr class="empty-row-spacing">
        <td colspan="2"></td>
    </tr>
    <tr>
        <td colspan="2">
            <?php include METASLIDER_PATH . "admin/views/pages/parts/shortcode.php"; ?>
        </td>
    </tr>
    <tr class="empty-row-spacing">
        <td colspan="2"></td>
    </tr>
<?php
    // Show the restore button if there are trashed posts
    // Also, render but hide the link in case we want to show
    // it when the user deletes their first slide
    $count = count(metaslider_has_trashed_slides($this->slider->id));
    if ( ! metaslider_viewing_trashed_slides( $this->slider->id ) ) { ?>
        <tr class="highlight trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
            <td colspan="2">
                <?php esc_html_e( 'Trashed slides', 'ml-slider' ) ?>
            </td>
        </tr>
        <tr class="empty-row-spacing trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
            <td colspan="2"></td>
        </tr>
        <tr class="trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
            <td colspan="2">
                <a class="restore-slide-link text-blue-dark hover:text-orange" href="<?php echo esc_url(admin_url("admin.php?page=metaslider&id={$this->slider->id}&show_trashed=true")); ?>">
                    <i><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-trash-2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/><line x1="10" y1="11" x2="10" y2="17"/><line x1="14" y1="11" x2="14" y2="17"/></svg></i> 
                    <?php esc_attr_e( 'View trashed slides', 'ml-slider' ); ?> 
                    <?php echo $count ? '(' . (int) $count . ')' : '' ?>
                </a>
            </td>
        </tr>
        <tr class="empty-row-spacing trashed-slides-cont" style="<?php echo ! $count ? 'display: none;' : ''  ?>">
            <td colspan="2"></td>
        </tr>
<?php } ?>
    </tbody>
</table>
admin/views/pages/parts/shortcode.php000064400000001123151213254540013723 0ustar00<?php if (!defined('ABSPATH')) {
    die('No direct access.');
}
/**
 * The shortcode module
 */
?>
<metaslider-shortcode inline-template>
    <div class="flex flex-col">
        <div class="mt-0">
            <pre id="shortcode" ref="shortcode" dir="ltr" class="text-yellow text-lg tipsy-tooltip bg-yellow-50 shadow p-4" original-title="<?php esc_attr_e('Click to copy shortcode.', 'ml-slider'); ?>"><div @click.prevent="copyShortcode($event)" class="text-orange cursor-pointer whitespace-normal">[metaslider id="{{ current.id }}"]</div></pre>
        </div>
    </div>
</metaslider-shortcode>
admin/views/pages/dashboard.php000064400000005046151213254540012537 0ustar00<?php
if (!defined('ABSPATH')) {
    die('No direct access.');
}
?>
<div id="slideshows-list">
    <div class="wrap">
        <h1 class="wp-heading-inline"><?php echo esc_html_e('Slideshows', 'ml-slider'); ?></h1> <a href="<?php echo esc_url(wp_nonce_url(admin_url('admin-post.php?action=metaslider_create_slider'), 'metaslider_create_slider'));?>" class="page-title-action"><?php echo esc_html_e('Add New', 'ml-slider'); ?></a>
        <?php
            if (isset($_REQUEST['slideshows'])) {
                if(is_array($_REQUEST['slideshows'])) {
                    $count = count($_REQUEST['slideshows']);
                } else {
                    $count = 1;
                }
                if ('delete' === $listtable->current_action()) {
                    echo '<div class="updated below-h2" id="message"><p>' . sprintf( esc_html( _n('%d slideshow moved to the Trash.', '%d slideshows moved to the Trash.', $count), 'ml-slider'), esc_html($count) ) . '</p></div>';
                }
                if ('restore' === $listtable->current_action()) {
                    echo '<div class="updated below-h2" id="message"><p>' . sprintf( esc_html( _n('%d slideshow restored from the Trash.', '%d slideshows restored from the Trash.', $count), 'ml-slider'), esc_html($count) ) . '</p></div>';
                }
                if ('permanent' === $listtable->current_action()) {
                    echo '<div class="updated below-h2" id="message"><p>' . sprintf( esc_html( _n('%d slideshow permanently deleted.', '%d slideshows permanently deleted.', $count), 'ml-slider'), esc_html($count) ). '</p></div>';
                }
            }

            if (isset($_REQUEST['delete_all'])) {
                echo '<div class="updated below-h2" id="message"><p>' . esc_html__('Slideshows permanently deleted.', 'ml-slider') .'</p></div>';
            }
        ?>
        <hr class="wp-header-end">
        <h2 class="screen-reader-text">Filter posts list</h2>
        <?php $listtable->views(); ?>
        <form id="metaslider-list-form" method="POST">
            <?php
                $listtable->search_box(esc_html__('Search', 'ml-slider'), 'search_slideshow');
                if(isset($_REQUEST['page'])) {
            ?>
                    <input type="hidden" name="page" value="<?php echo esc_attr($_REQUEST['page']); ?>" />
            <?php
                }
                wp_nonce_field('metaslider_search_slideshows', 'search_wpnonce');
                $listtable->display();
            ?> 
        </form>
    </div>
</div>
admin/views/pages/upgrade.php000064400000016312151213254550012236 0ustar00<?php if (!defined('ABSPATH')) {
    die('No direct access.');
} ?>

<div id="metaslider-ui" class="flex p-6 mb-16">
    <table id="comparison-chart" class="metaslider_feat_table">
        <thead>
            <tr>
                <th>
                    <h1>MetaSlider</h1>
                </th>
                <th colspan="2">
                    <h3><?php esc_html_e('Comparison Chart', 'ml-slider'); ?></h3>
                </th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td class="ms-dark-blue text-white">Features</td>
                <td class="ms-orange text-white"><?php esc_html_e('Free', 'ml-slider');?></td>
                <td class="ms-orange text-white"><?php esc_html_e('Pro', 'ml-slider');?></td>
            </tr>
            <tr>
                <td></td>
                <td class="metaslider_installed_status"><?php esc_html_e('Installed', 'ml-slider');?></td>
                <td class="metaslider_installed_status"><?php echo metaslider_optimize_url("https://www.metaslider.com/upgrade/", esc_html__('Upgrade now', 'ml-slider')); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Create unlimited slideshows', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Create and manage as many slideshows as you need.', 'ml-slider');?></p>
                </td>
                <td><div class="dot available"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Regular updates', 'ml-slider');?></h4>
                    <p><?php esc_html_e('We keep MetaSlider compatible with the latest versions of WordPress.', 'ml-slider');?></p>
                </td>
                <td><div class="dot available"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Intelligent image cropping', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Unique Smart Crop functionality ensures your slides are perfectly resized.', 'ml-slider');?></p>
                </td>
                <td><div class="dot available"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Thumbnail navigation', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Allow users to browse your slideshows using thumbnail navigation.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Add YouTube, Vimeo and Tiktok slides', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Easily include videos hosted by YouTube, Vimeo or TikTok.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Add local video slides', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Create slideshows with videos from your WordPress media library.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Add external video slides', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Create slideshows with external videos.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Extra premium themes', 'ml-slider');?></h4>
                    <p><?php esc_html_e('MetaSlider Pro provides stylish and exclusive themes for your slideshows.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Add slide layers', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Add layers to your slides with over 50 available transition effects.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Add Post Feed slides', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Easily build slides based on your WordPress posts.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Add custom CSS', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Customize your slideshows to fit with your website.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Schedule your slides', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Add a start/end date to individual slides.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Toggle your slide\'s visibility', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Hide any slide, without having to delete them.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
            <tr>
                <td>
                    <h4><?php esc_html_e('Premium support', 'ml-slider');?></h4>
                    <p><?php esc_html_e('Have your specific queries addressed directly by our experts.', 'ml-slider');?></p>
                </td>
                <td><div class="dot unavailable"></div></td>
                <td><div class="dot available"></div></td>
            </tr>
        </tbody>
        <tfoot>
            <tr>
                <td></td>
                <td class="metaslider_installed_status"><?php esc_html_e('Installed', 'ml-slider');?></td>
                <td class="metaslider_installed_status"><?php echo metaslider_optimize_url("https://www.metaslider.com/upgrade/", esc_html__('Upgrade now', 'ml-slider')); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></td>
            </tr>
        </tfoot>
    </table>
</div>
admin/views/notices/header-notice.php000064400000002633151213254550013664 0ustar00<?php if (!defined('ABSPATH')) {
    die('No direct access.');
} ?>

<div class="updraft-ad-container ml-discount-ad notice updated">
    <div class="updraft_notice_container">
        <div class="updraft_advert_content_left">
            <img src="<?php echo esc_url(METASLIDER_BASE_URL . 'admin/images/' . $args['image']);?>" width="60" height="60" alt="<?php esc_attr_e('Logo', 'ml-slider');?>" />
        </div>
        <div class="updraft_advert_content_right">
            <div class="ml-discount-ad-title">
                <?php
                echo esc_html($args['title']);
                if (!empty($args['button_link'])) {
                    // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    echo $this->get_button_link($args['button_link'], $args['button_meta']);
                }
                ?>
            </div>
            <div class="updraft-advert-dismiss">
                <a class="underline text-blue-dark" href="#" onclick="jQuery('.updraft-ad-container').slideUp(); jQuery.post(ajaxurl, {action: 'notice_handler', ad_identifier: '<?php echo esc_js($args['dismiss_time']);?>', _wpnonce: metaslider_notices_handle_notices_nonce });"><?php echo sprintf('%s', esc_html__('Dismiss', 'ml-slider'));
echo ('' !== $args['hide_time']) ? esc_html(sprintf(' (%s)', $args['hide_time'])) : ''; ?></a>
            </div>
        </div>
    </div>
    <div class="clear"></div>
</div>
admin/Pages.php000064400000041000151213254550007402 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

/**
 * Entry point for building the wordpress admin pages.
 * Temporarily extends the MetaSlider Class until more refactoring can be done.
 */
class MetaSlider_Admin_Pages extends MetaSliderPlugin
{
    /**
     * The MetaSlider plugin class
     *
     * @var object $plugin
     */
    private $plugin;

    /**
     * The current admin page
     *
     * @var string $current_page
     */
    private $current_page;

    /**
     * @var \MetaSlider_Notices
     */
    protected $notices;

    /**
     * Sets up the notices, security and loads assets for the admin page
     *
     * @param array $plugin Plugin details
     */
    public function __construct($plugin)
    {
        $this->plugin = $plugin;
        $this->notices = new MetaSlider_Notices($plugin);
        add_action('admin_enqueue_scripts', array($this, 'load_upgrade_page_assets'));
    }

    /**
     * Loads in the overlay assets
     */
    public function load_overlay()
    {
        wp_enqueue_style('metaslider-colorbox-styles', METASLIDER_ADMIN_URL . 'assets/vendor/colorbox/colorbox.css', false, METASLIDER_ASSETS_VERSION);
        wp_enqueue_script('metaslider-colorbox', METASLIDER_ADMIN_URL . 'assets/vendor/colorbox/jquery.colorbox-min.js', array('jquery'), METASLIDER_ASSETS_VERSION, true);
    }

    /**
     * Loads in tooltips
     */
    public function load_tooltips()
    {
        wp_enqueue_style('metaslider-tipsy-styles', METASLIDER_ADMIN_URL . 'assets/vendor/tipsy/tipsy.css', false, METASLIDER_ASSETS_VERSION);
        wp_enqueue_script('metaslider-tipsy', METASLIDER_ADMIN_URL . 'assets/vendor/tipsy/jquery.tipsy.js', array('jquery'), METASLIDER_ASSETS_VERSION, true);
    }

    /**
     * Loads TinyMCE
     * 
     * @since 3.62
     * 
     * @return void
     */
    public function load_wysiwyg()
    {
        wp_enqueue_script(
            'metaslider-tinymce-script',
            METASLIDER_ADMIN_URL . 'assets/vendor/tinymce/js/tinymce/tinymce.min.js',
            array(),
            METASLIDER_ASSETS_VERSION
        );
    }

    /**
     * Loads in custom javascript
     */
    public function load_javascript()
    {
        wp_enqueue_media();
        wp_enqueue_script('jquery-ui-core');
        wp_enqueue_script('jquery-ui-sortable');
        wp_enqueue_style( 'wp-color-picker' );
        wp_register_script(
            'metaslider-admin-script', 
            METASLIDER_ADMIN_URL . 'assets/dist/js/admin.js', 
            array('jquery', 'plupload-all', 'metaslider-wp-color-picker'), 
            METASLIDER_ASSETS_VERSION, 
            true
        );
        wp_register_script(
            'metaslider-wp-color-picker',
            METASLIDER_ADMIN_URL . 'assets/vendor/wp-color-picker-alpha/wp-color-picker-alpha.min.js',
            array( 'wp-color-picker' ),
            METASLIDER_VERSION
        );
        
        $global_settings = get_option( 'metaslider_global_settings' );

        // @TODO - Move the logic below and MetaSlider->get_breakpoints() to a single place to avoid duplication
        $default_settings   = get_site_option( 'metaslider_default_settings' );
        $global_settings    = $this->get_global_settings();
        
        if ( $default_settings 
            && ! isset( $global_settings['mobileSettings'] ) 
            || ( isset( $global_settings['mobileSettings'] ) 
                && true == $global_settings['mobileSettings'] 
            )  
        ) {
            $breakpoints = array(
                'smartphone' => isset( $default_settings['smartphone'] ) ? (int) $default_settings['smartphone'] : 480,
                'tablet' => isset( $default_settings['tablet'] ) ? (int) $default_settings['tablet'] : 768,
                'laptop' => isset( $default_settings['laptop'] ) ? (int) $default_settings['laptop'] : 1024,
                'desktop' => isset( $default_settings['desktop'] ) ? (int) $default_settings['desktop'] : 1440,
            );
        } else {
            $breakpoints = array(
                'smartphone' => 480,
                'tablet' => 768,
                'laptop' => 1024,
                'desktop' => 1440
            );
        }
        
        wp_localize_script('metaslider-admin-script', 'metaslider', array(
            'url' => esc_html__("URL", "ml-slider"),
            'caption' => esc_html__("Caption", "ml-slider"),
            'new_window' => esc_html__("New Window", "ml-slider"),
            'confirm' => esc_html__("Please confirm that you would like to delete this slideshow.", "ml-slider"),
            'restore_language' => esc_html__("Undo", "ml-slider"),
            'restored_language' => esc_html__("Slide restored", "ml-slider"),
            'deleted_language' => esc_html__("Slide deleted", "ml-slider"),
            'success_language' => esc_html__("Success", "ml-slider"),
            'copied_language' => esc_html__("Item was copied to your clipboard", "ml-slider"),
            'click_to_undo_language' => esc_html__("Press to undo", "ml-slider"),
            'ajaxurl' => admin_url('admin-ajax.php'),
            'update_image' => esc_html__("Select replacement image", "ml-slider"),
            'resize_nonce' => wp_create_nonce('metaslider_resize'),
            'create_slide_nonce' => wp_create_nonce('metaslider_create_slide'),
            'delete_slide_nonce' => wp_create_nonce('metaslider_delete_slide'),
            'undelete_slide_nonce' => wp_create_nonce('metaslider_undelete_slide'),
            'permanent_delete_slide_nonce' => wp_create_nonce('metaslider_permanent_delete_slide'),
            'update_slide_image_nonce' => wp_create_nonce('metaslider_update_slide_image'),
            'duplicate_slide_nonce' => wp_create_nonce('metaslider_duplicate_slide'),
            'quickstart_slideshow_nonce' => wp_create_nonce('metaslider_quickstart_slideshow'),
            'legacy_notification_nonce' => wp_create_nonce('metaslider_legacy_notification'),
            'useWithCaution' => esc_html__("Caution: This setting is for advanced developers only. If you're unsure, leave it checked.", "ml-slider"),
            'locale' => preg_replace('/[^a-z]/', '', get_locale()),
            'newSlideOrder' => isset( $global_settings['newSlideOrder'] ) 
                && $global_settings['newSlideOrder'] === 'first' 
                ? esc_html( $global_settings['newSlideOrder'] ) : 'last',
            'tinymce' => array(), // Just initialize to add values later through JS files
            'quickstart_slugs' => $this->quickstart_slugs(),
            'breakpoints' => $breakpoints
        ));
        wp_enqueue_script('metaslider-admin-script');
        do_action('metaslider_register_admin_scripts');

        // Register components and add support for the REST API / Admin AJAX
        do_action('metaslider_register_admin_components');
        $dev = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG;
        wp_register_script('metaslider-admin-components', METASLIDER_ADMIN_URL . 'assets/dist/js/app' . ($dev ? '' : '.min') . '.js', array(), METASLIDER_ASSETS_VERSION, true);

        // Check if rest is available
        $is_rest_enabled = $this->is_rest_enabled();

        wp_localize_script('metaslider-admin-components', 'metaslider_api', array(
            'root' => $is_rest_enabled ? esc_url_raw(rest_url("metaslider/v1/")) : false,
            'nonce' => wp_create_nonce('wp_rest'),
            'ajaxurl' => admin_url('admin-ajax.php'),
            'proUser' => metaslider_pro_is_active(),
            'hoplink' => metaslider_get_upgrade_link(),
            'privacy_link' => metaslider_get_privacy_link(),
            'metaslider_admin_assets' => METASLIDER_ADMIN_ASSETS_URL,
            'metaslider_page' => admin_url('admin.php?page=metaslider'),
            'theme_editor_link' => admin_url('admin.php?page=metaslider-theme-editor'),
            'site_id' => get_current_blog_id(),
            'supports_rest' => $is_rest_enabled,
            'locale' => $this->gutenberg_get_jed_locale_data('ml-slider'),
            'default_locale' => $this->gutenberg_get_jed_locale_data('default'),
            'current_server_time' => current_time('mysql'),
        ));
        wp_enqueue_script('metaslider-admin-components');
    }

    /**
     * Loads in custom styling for upgrade page
     */
    public function load_upgrade_page_assets()
    {
        if ('upgrade-metaslider' == $this->current_page || !is_plugin_active('ml-slider-pro/ml-slider-pro.php')){
            wp_enqueue_style('metaslider-upgrade-styles', METASLIDER_ADMIN_URL . 'assets/css/upgrade.css', false, METASLIDER_ASSETS_VERSION);
        }
    }

    /**
     * Loads in custom styling
     */
    public function load_styles()
    {
        wp_enqueue_style('metaslider-shepherd-css', METASLIDER_ADMIN_URL . 'assets/tether-shepherd/dist/css/shepherd-theme-arrows.css', false, METASLIDER_ASSETS_VERSION);
        wp_enqueue_style('metaslider-admin-styles', METASLIDER_ADMIN_URL . 'assets/dist/css/admin.css', false, METASLIDER_ASSETS_VERSION);

        // Hook to load more styles and scripts (from pro)
        do_action('metaslider_register_admin_styles');
    }

    /**
     * Area used to handle any third-party plugin conflicts
     */
    public function fix_conflicts()
    {
        // WP Posts Filter Fix (Advanced Settings not toggling)
        wp_dequeue_script('link');

        // All In One Events Calendar Fix (Advanced Settings not toggling)
        wp_dequeue_script('ai1ec_requirejs');
    }

    /**
     * Method to add pages
     *
     * @param string $title  - The title of the page
     * @param string $slug   - The slug used for the page
     * @param string $parent - Setting a parent will make this page a submenu item
     */
    public function add_page($title, $slug = '', $parent = '')
    {
        $slug = ('' == $slug) ? sanitize_title($title) : $slug;
        $method = 'render_' . str_replace("-", "_", $slug) . '_page';
        if (!method_exists($this, $method)) {
            return false;
        }
        $this->current_page = $slug;
        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);

        $dashboard_icon = 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(dirname(__FILE__) . '/assets/metaslider.svg'));

        $page = ('' == $parent) ? add_menu_page($title, $title, $capability, $slug, array($this, $method), $dashboard_icon) : add_submenu_page($parent, $title, $title, $capability, $slug, array($this, $method));

        // Load assets on all pages
        add_action('load-' . $page, array($this, 'fix_conflicts'));
        add_action('load-' . $page, array($this, 'load_overlay'));
        add_action('load-' . $page, array($this, 'load_tooltips'));
        add_action('load-' . $page, array($this, 'load_javascript'));
        add_action('load-' . $page, array($this, 'load_styles'));

        // TinyMCE is only required in edit sldieshow page
        add_action('load-toplevel_page_metaslider', array($this, 'load_wysiwyg'));
    }

    /**
     * Sets up any logic needed for the main page
     * TODO continue refactoring from here
     */
    public function render_metaslider_page()
    {
        // @since 3.90.1
        do_action('metaslider_admin_notices');

        $listtable = new MetaSlider_Admin_Table();
        $listtable->prepare_items();
        if (isset($_REQUEST['post_status'])) {
            include METASLIDER_PATH . "admin/views/pages/parts/toolbar.php";
            include METASLIDER_PATH . "admin/views/pages/dashboard.php";
        } else {
            if (empty($listtable->check_num_rows())) {
                include METASLIDER_PATH . "admin/views/pages/parts/toolbar.php";
                include METASLIDER_PATH . "admin/views/pages/dashboard.php";
            } else {
                if (isset($_REQUEST['id'])) {
                    parent::render_admin_page();
                } else {
                    include METASLIDER_PATH . "admin/views/pages/parts/toolbar.php";
                    include METASLIDER_PATH . "admin/views/pages/dashboard.php";
                }
            }
        }
    }

    /**
     * Sets up any logic needed for the main page
     * TODO continue refactoring from here
     */
    public function render_metaslider_start_page()
    {
        // @since 3.90.1
        do_action('metaslider_admin_notices');

        include METASLIDER_PATH . "admin/views/pages/parts/toolbar.php";
        include METASLIDER_PATH . "admin/views/pages/start.php";
    }

    /**
     * Sets up any logic needed for the main page
     * TODO continue refactoring from here
     */
    public function render_metaslider_settings_page()
    {
        // @since 3.90.1
        do_action('metaslider_admin_notices');

        include METASLIDER_PATH . "admin/views/pages/settings.php";
    }

    /**
     * Sets up any logic needed for the upgrade page
     */
    public function render_upgrade_metaslider_page()
    {
        // @since 3.90.1
        do_action('metaslider_admin_notices');

        include METASLIDER_PATH . "admin/views/pages/parts/toolbar.php";
        include METASLIDER_PATH . "admin/views/pages/upgrade.php";
    }

    /**
     * Backup function for Gutenberg's gutenberg_get_jed_locale_data
     *
     * @param string $domain - The text domain for the strings
     */
    private function gutenberg_get_jed_locale_data($domain)
    {
        if (function_exists('gutenberg_get_jed_locale_data')) {
            return gutenberg_get_jed_locale_data($domain);
        }

        $translations = get_translations_for_domain($domain);
        $locale = array(
            '' => array(
                'domain' => $domain,
                'lang' => is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(),
            ),
        );

        if (!empty($translations->headers['Plural-Forms'])) {
            $locale['']['plural_forms'] = $translations->headers['Plural-Forms'];
        }

        if (isset($translations->entries) && ! empty($translations->entries)) {
            foreach ($translations->entries as $msgid => $entry) {
                $locale[$msgid] = $entry->translations;
            }
        }

        return $locale;
    }

    /**
     * The main purpose of this is to try to detect that REST is *disabled*. That can be done in many ways, so the results will not be 100% successful in catching all possibilities.
     *
     * @return Boolean
     */
    private function is_rest_enabled()
    {

        // Let users override
        if (defined('METASLIDER_FORCE_ADMIN_AJAX') && METASLIDER_FORCE_ADMIN_AJAX) {
            return false;
        }

        // < WP 4.4
        if (!class_exists('WP_REST_Controller')) {
            return false;
        }

        // A pre-WP 4.7 filter (deprecated in 4.7)
        if (!(bool) apply_filters('rest_enabled', true)) {
            return false;
        }

        // Some plugins remove this
        if (!has_action('init', 'rest_api_init')) {
            return false;
        }

        // Disable via blanking the URL
        if (function_exists('get_rest_url') && class_exists('WP_Rewrite')) {
            global $wp_rewrite;
            if (empty($wp_rewrite)) {
                $wp_rewrite = new WP_Rewrite(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
            }
            if ('' == get_rest_url()) {
                return false;
            }
        }

        // Disable via removing from the <head> output, and non-default permalinks which mean that a default guess will not work
        if (false === has_action('wp_head', 'rest_output_link_wp_head')) {
            $permalink_structure = get_option('permalink_structure');
            if (!$permalink_structure || false !== strpos($permalink_structure, 'index.php')) {
                return false;
            }
        }

        // Plugins which, when active, disable REST. Do not add a plugin which merely has an *option* to disable REST. (For that, we will need further logic, to detect the option setting).
        $plugins = array(
            'disable-permanently-rest-api' => 'Disable Permanently REST API',
        );

        $slugs = array_keys($plugins);

        $active_plugins = get_option('active_plugins');
        if (!is_array($active_plugins)) {
            $active_plugins = array();
        }
        if (is_multisite()) {
            $active_plugins = array_merge($active_plugins, array_keys(get_site_option('active_sitewide_plugins', array())));
        }

        // Loops around each plugin available.
        foreach ($active_plugins as $value) {
            if (!preg_match('#^([^/]+)/#', $value, $matches)) {
                continue;
            }
            if (in_array($matches[1], $slugs)) {
                return false;
            }
        }

        return true;
    }
}
admin/routes/api.php000064400000140730151213254550010447 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

/**
 * Class to handle ajax endpoints, specifically used by vue components
 * If possible, keep logic here to a minimum.
 */
class MetaSlider_Api
{
    /**
     * Theme instance
     *
     * @var object
     * @see get_instance()
     */
    protected static $instance = null;

    /**
     * @var \MetaSlider_Slideshows
     */
    public $slideshows;

    /**
     * @var \MetaSlider_Themes|object|null
     */
    public $themes;

    /**
     * Constructor
     */
    public function __construct()
    {
    }

    /**
     * Setup
     */
    public function setup()
    {
        $this->slideshows = new MetaSlider_Slideshows();
        $this->themes = MetaSlider_Themes::get_instance();
    }

    /**
     * Used to access the instance
     */
    public static function get_instance()
    {
        if (null === self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }

    /**
     * Register routes for admin ajax. Even if not used these can still be available.
     */
    public function register_admin_ajax_hooks()
    {

        // Slideshows
        add_action('wp_ajax_ms_get_slideshows', array(self::$instance, 'get_slideshows'));
        add_action('wp_ajax_ms_list_slideshows', array(self::$instance, 'list_slideshows'));
        add_action('wp_ajax_ms_get_single_slideshow', array(self::$instance, 'get_single_slideshow'));
        add_action('wp_ajax_ms_get_legacy_slideshows', array(self::$instance, 'get_legacy_slideshows'));
        add_action('wp_ajax_ms_get_preview', array(self::$instance, 'get_preview'));
        add_action('wp_ajax_ms_delete_slideshow', array(self::$instance, 'delete_slideshow'));
        add_action('wp_ajax_ms_duplicate_slideshow', array(self::$instance, 'duplicate_slideshow'));
        add_action('wp_ajax_ms_save_slideshow', array(self::$instance, 'save_slideshow'));
        add_action('wp_ajax_ms_search_slideshows', array(self::$instance, 'search_slideshows'));
        add_action('wp_ajax_ms_export_slideshows', array(self::$instance, 'export_slideshows'));
        add_action('wp_ajax_ms_import_slideshows', array(self::$instance, 'import_slideshows'));

        // Themes
        add_action('wp_ajax_ms_get_all_free_themes', array(self::$instance, 'get_all_free_themes'));
        add_action('wp_ajax_ms_get_custom_themes', array(self::$instance, 'get_custom_themes'));
        add_action('wp_ajax_ms_set_theme', array(self::$instance, 'set_theme'));

        // Slides
        add_action('wp_ajax_ms_import_images', array(self::$instance, 'import_images'));
        add_action( 'wp_ajax_ms_import_others', array( self::$instance, 'import_others' ) );

        // Settings
        add_action('wp_ajax_ms_update_user_setting', array(self::$instance, 'save_user_setting'));
        add_action('wp_ajax_ms_get_user_details', array(self::$instance, 'get_user_details'));
        add_action('wp_ajax_ms_update_all_slideshow_settings', array(self::$instance, 'save_all_slideshow_settings'));
        add_action('wp_ajax_ms_update_single_slideshow_setting', array(self::$instance, 'save_single_slideshow_setting'));
        add_action('wp_ajax_ms_get_slideshow_default_settings', array(self::$instance, 'get_slideshow_default_settings'));
        add_action('wp_ajax_ms_save_slideshow_default_settings', array(self::$instance, 'save_slideshow_default_settings'));

        // Global settings
        add_action('wp_ajax_ms_get_single_setting', array(self::$instance, 'get_single_setting'));
        add_action('wp_ajax_ms_get_global_settings', array(self::$instance, 'get_global_settings'));
        add_action('wp_ajax_ms_update_global_settings', array(self::$instance, 'save_global_settings'));
        add_action('wp_ajax_ms_update_global_settings_single', array(self::$instance, 'save_global_settings_single'));

        // Other
        add_action('wp_ajax_set_tour_status', array(self::$instance, 'set_tour_status'));
        add_action('wp_ajax_ms_get_image_ids_from_filenames', array(self::$instance, 'get_image_ids_from_file_name'));

        /* Pro settings
         * @since 3.62
         */
        add_action('wp_ajax_ms_get_pro_settings', array(self::$instance, 'get_pro_settings'));
        add_action('wp_ajax_ms_update_pro_settings', array(self::$instance, 'save_pro_settings'));
    }

    /**
     * Helper function to verify access
     *
     * @return boolean
     */
    public function can_access()
    {
        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);

        // Check for the nonce on the server (used by WP REST)
        if (isset($_SERVER['HTTP_X_WP_NONCE']) && wp_verify_nonce(sanitize_key($_SERVER['HTTP_X_WP_NONCE']), 'wp_rest')) {
            return current_user_can($capability);
        }

        // This is for when not using Axios (example: callout.php)
        if (isset($_REQUEST['METASLIDER_NONCE']) && wp_verify_nonce(sanitize_key($_REQUEST['METASLIDER_NONCE']), 'metaslider_request')) {
            return current_user_can($capability);
        }

        return false;
    }

    /**
     * Helper function to return an access denied response
     */
    public function deny_access()
    {
        wp_send_json_error(array(
            'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
        ), 401);
    }

    /**
     * Helper function to get data from the request
     * (supports rest & admin-ajax)
     * Does not handle any validation
     *
     * @param object $request    The request
     * @param array  $parameters The wanted parameters
     * @return array
     */
    public function get_request_data($request, $parameters)
    {
        $results = array();
        foreach ($parameters as $param) {
            if (method_exists($request, 'get_param')) {
                $results[$param] = $request->get_param($param);
            } else {
                $results[$param] = isset($_REQUEST[$param]) ? stripslashes_deep(sanitize_text_field($_REQUEST[$param])) : null;
            }
        }

        return $results;
    }

    /**
     * Returns all slideshows
     *
     * @param object|null $request The request
     */
    public function get_slideshows($request = null)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('page', 'count'));
        $page = isset($data['page']) ? intval($data['page']) : 1;
        $count = isset($data['count']) ? intval($data['count']) : 25;

        $slideshows = $this->slideshows->get($count, $page);

        $slideshows = array_map(array($this, 'get_slide_data'), $slideshows);

        if (is_wp_error($slideshows)) {
            wp_send_json_error(array(
                'message' => $slideshows->get_error_message()
            ), 400);
        }

        wp_send_json_success($slideshows, 200);
    }

    /**
     * Returns all slideshows
     *
     * @param object|null $request The request
     */
    public function search_slideshows($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('term', 'count'));

        $slideshows = $this->slideshows->search((string) $data['term'], (string) $data['count']);

        $slideshows = array_map(array($this, 'get_slide_data'), $slideshows);

        if (is_wp_error($slideshows)) {
            wp_send_json_error(array(
                'message' => $slideshows->get_error_message()
            ), 400);
        }

        wp_send_json_success($slideshows, 200);
    }

    /**
     * Returns a list of all slideshows
     *
     * @param object|null $request The request
     */
    public function list_slideshows($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $slideshows = $this->slideshows->get_all_slideshows();

        if (is_wp_error($slideshows)) {
            wp_send_json_error(array(
                'message' => $slideshows->get_error_message()
            ), 400);
        }

        wp_send_json_success($slideshows, 200);
    }

    /**
     * Returns a single slideshow
     *
     * @param object $request The request
     */
    public function get_single_slideshow($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('id'));

        $slideshow = $this->slideshows->get_single($data['id']);

        $slideshow = array_map(array($this, 'get_slide_data'), $slideshow);

        if (is_wp_error($slideshow)) {
            wp_send_json_error(array(
                'message' => $slideshow->get_error_message()
            ), 400);
        }

        wp_send_json_success($slideshow, 200);
    }

    /**
     * Returns Nivo, Coin, Responsive Slideshows
     *
     * @param object|null $request The request
     */
    public function get_legacy_slideshows($request = null)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('page', 'count'));
        $page = isset($data['page']) ? intval($data['page']) : 1;
        $count = isset($data['count']) ? intval($data['count']) : 25;
        $slideshows = $this->slideshows->get($count, $page);
        $slideshows = array_map(array($this, 'get_slide_data'), $slideshows);
        $count_sliders = 0;
        foreach ($slideshows as $slideshow) {
            if(isset($slideshow['id'])) {
                $settings = get_post_meta($slideshow['id'], 'ml-slider_settings', true);
                if (is_array($settings) && isset($settings['type'])) {
                    $type = $settings['type'];
                    if($type !== 'flex'){
                        $count_sliders++;
                    }
                }
            }
        }

        if (is_wp_error($slideshows)) {
            wp_send_json_error(array(
                'message' => $slideshows->get_error_message()
            ), 400);
        }

        wp_send_json_success($count_sliders, 200);
    }

    /**
     * Maps some slide data to the slideshow
     *
     * @param array $slideshow - a slideshow
     *
     * @return array
     */
    private function get_slide_data($slideshow)
    {
        if (isset($slideshow['slides'])) {
            foreach ($slideshow['slides'] as $order => $slide_id) {
                $thumbnail_id = 'attachment' === get_post_type($slide_id) ? $slide_id : get_post_thumbnail_id($slide_id);
                $thumbnail_data = wp_get_attachment_image_src($thumbnail_id);

                unset($slideshow['slides'][$order]);
                $slideshow['slides'][$order] = array(
                    'id' => $slide_id,
                    'thumbnail' => isset($thumbnail_data[0]) ? $thumbnail_data['0'] : '',
                    'post_excerpt' => get_post_field('post_excerpt', $slide_id),
                    'order' => $order,
                    'meta' =>  array()
                );
                foreach (get_post_meta($slide_id) as $metakey => $value) {
                    $slideshow['slides'][$order]['meta'][$metakey] = $value[0];
                }
            }
            $slideshow['slides'] = array_values($slideshow['slides']);
        }

        return $slideshow;
    }

    /**
     * Returns all custom themes
     */
    public function get_custom_themes()
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $themes = $this->themes->get_custom_themes();

        if (is_wp_error($themes)) {
            wp_send_json_error(array(
                'message' => $themes->get_error_message()
            ), 400);
        }

        wp_send_json_success($themes, 200);
    }

    /**
     * Returns all themes
     */
    public function get_all_free_themes()
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $themes = $this->themes->get_all_free_themes();

        if (is_wp_error($themes)) {
            wp_send_json_error(array(
                'message' => $themes->get_error_message()
            ), 400);
        }

        wp_send_json_success($themes, 200);
    }

    /**
     * Sets a specific theme
     *
     * @param object $request The request
     */
    public function set_theme($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id', 'theme'));

        $response = $this->themes->set(absint($data['slideshow_id']), (array) $data['theme']);

        if (!$response) {
            wp_send_json_error(array(
                'message' => 'There was an issue while attempting to save the theme. Please refresh and try again.'
            ), 400);
        }

        // If we made it this far, return the theme data
        wp_send_json_success((array) $data['theme'], 200);
    }

    /**
     * Returns the preview HTML
     *
     * @param object $request The request
     */
    public function get_preview($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id', 'theme_id'));

        // The theme id can be either a string or null, exit if it's something else
        if (!is_null($data['theme_id']) && !is_string($data['theme_id'])) {
            wp_send_json_error(array(
                'message' => __('The request format was not valid.', 'ml-slider')
            ), 415);
        }

        // If the slideshow was deleted
        $slideshow = get_post($data['slideshow_id']);
        if ('publish' !== $slideshow->post_status) {
            wp_send_json_error(array(
                'message' => __('This slideshow is no longer available.', 'ml-slider')
            ), 410);
        }

        $html = $this->slideshows->preview(
            absint($data['slideshow_id']),
            $data['theme_id']
        );

        if (is_wp_error($html)) {
            wp_send_json_error(array(
                'message' => $html->get_error_message()
            ), 400);
        }

        wp_send_json_success($html, 200);
    }

    /**
     * Duplicate a slideshow
     *
     * @param object $request The request
     */
    public function duplicate_slideshow($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id'));

        $new_slideshow = $this->slideshows->duplicate(absint($data['slideshow_id']));

        if (is_wp_error($new_slideshow)) {
            wp_send_json_error(array(
                'message' => $new_slideshow->get_error_message()
            ), 400);
        }

        wp_send_json_success($new_slideshow, 200);
    }

    /**
     * Export slideshows
     *
     * @param object $request The request
     */
    public function export_slideshows($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_ids'));

        $export = $this->slideshows->export((array) json_decode($data['slideshow_ids'], true));

        if (is_wp_error($export)) {
            wp_send_json_error(array(
                'message' => $export->get_error_message()
            ), 400);
        }

        if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) {
            // @codingStandardsIgnoreLine
            echo wp_json_encode($export, JSON_PRETTY_PRINT);
            die;
        }

        wp_send_json($export, 200);
    }

    /**
     * Import slideshows
     *
     * @param object $request The request
     */
    public function import_slideshows($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshows'));

        if (!$data['slideshows']) {
            wp_send_json_error(array(
                'message' => __('Nothing to import.', 'ml-slider')
            ), 400);
        }

        $status = $this->slideshows->import((array) json_decode($data['slideshows'], true));

        if (is_wp_error($status)) {
            wp_send_json_error(array(
                'message' => $status->get_error_message()
            ), 400);
        }

        wp_send_json_success($status, 200);
    }

    /**
     * Delete a slideshow
     *
     * @param object $request The request
     */
    public function delete_slideshow($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id', 'slider_id'));

        // Backwards compatability for slider_id param
        $slideshow_id = is_null($data['slideshow_id']) ? $data['slider_id'] : $data['slideshow_id'];

        // If the slideshow was deleted
        $slideshow = get_post($slideshow_id);
        if ('publish' !== $slideshow->post_status) {
            wp_send_json_error(array(
                'message' => __('This slideshow is no longer available.', 'ml-slider')
            ), 410);
        }

        // Confirm it's one of ours
        if ('ml-slider' !== get_post_type($slideshow_id)) {
            wp_send_json_error(array(
                'message' => __('This was not a slideshow, so we cannot delete it.', 'ml-slider')
            ), 409);
        }

        $next_slideshow = $this->slideshows->delete(absint($slideshow_id));

        if (is_wp_error($next_slideshow)) {
            wp_send_json_error(array(
                'message' => 'There was an issue while attempting delete the slideshow. Please refresh and try again.'
            ), 400);
        }

        wp_send_json_success($next_slideshow, 200);
    }

    /**
     * Save a slideshow
     *
     * @param object $request The request
     */
    public function save_slideshow($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id', 'attachment', 'count'));

        // If we are missing the count, then it's likely the payload was truncated
        if (!$data['count'] && version_compare(phpversion(), '5.3.9', '>=')) {
            // If the input vars count is close to the max allowed, assume that the data was truncated and inform the user to increase the value
            // phpcs:ignore WordPress.Security.NonceVerification.Missing
            $current_vars = count($_POST, COUNT_RECURSIVE);
            if (($current_vars + 50) > ini_get('max_input_vars')) { // phpcs:ignore PHPCompatibility.IniDirectives.NewIniDirectives.max_input_varsFound
                wp_send_json_error(array(
                    'current_input_vars' => $current_vars
                ), 400);
            }
        }

        try {
            // phpcs:ignore WordPress.Security.NonceVerification.Missing
            if (isset($data['attachment'])) {
                foreach ($data['attachment'] as $slide_id => $fields) {
                    $fields = $this->sanitize_files_array($fields);

                    $slide_id = (int)$slide_id;

                    // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
                    do_action("metaslider_save_{$fields['type']}_slide", $slide_id, $data['slideshow_id'], $fields);
                }
            }
        } catch (Exception $e) {
            wp_send_json_error(array('message' => $e->getMessage()), 400);
        }

        wp_send_json_success('OK', 200);
    }

    private function sanitize_files_array($fields)
    {
        if (isset($fields['caption_source'])) {
            $fields['caption_source'] = sanitize_text_field($fields['caption_source']);
        }

        if (isset($fields['post_excerpt'])) {
            $fields['post_excerpt'] = $this->cleanup_content_kses( $fields['post_excerpt'] );
        }

        if (isset($fields['url'])) {
            $fields['url'] = sanitize_url($fields['url']);
        }

        if (isset($fields['inherit_image_title'])) {
            $fields['inherit_image_title'] = sanitize_text_field($fields['inherit_image_title']);
        }

        if (isset($fields['title'])) {
            $fields['title'] = sanitize_text_field($fields['title']);
        }

        if (isset($fields['inherit_image_alt'])) {
            $fields['inherit_image_alt'] = sanitize_text_field($fields['inherit_image_alt']);
        }

        if (isset($fields['alt'])) {
            $fields['alt'] = sanitize_text_field($fields['alt']);
        }

        if (isset($fields['link-alt'])) {
            $fields['link-alt'] = sanitize_text_field($fields['link-alt']);
        }

        if (isset($fields['crop_position'])) {
            $fields['crop_position'] = sanitize_text_field($fields['crop_position']);
        }

        if (isset($fields['type'])) {
            $fields['type'] = sanitize_text_field($fields['type']);
        }

        if (isset($fields['menu_order'])) {
            $fields['menu_order'] = sanitize_text_field($fields['menu_order']);
        }

        if (isset($fields['new_window'])) {
            $fields['new_window'] = sanitize_text_field($fields['new_window']);
        }

        if (isset($fields['hide_slide_smartphone'])) {
            $fields['hide_slide_smartphone'] = sanitize_text_field($fields['hide_slide_smartphone']);
        }

        if (isset($fields['hide_slide_tablet'])) {
            $fields['hide_slide_tablet'] = sanitize_text_field($fields['hide_slide_tablet']);
        }

        if (isset($fields['hide_slide_laptop'])) {
            $fields['hide_slide_laptop'] = sanitize_text_field($fields['hide_slide_laptop']);
        }

        if (isset($fields['hide_slide_desktop'])) {
            $fields['hide_slide_desktop'] = sanitize_text_field($fields['hide_slide_desktop']);
        }

        if (isset($fields['hide_caption_smartphone'])) {
            $fields['hide_caption_smartphone'] = sanitize_text_field($fields['hide_caption_smartphone']);
        }

        if (isset($fields['hide_caption_tablet'])) {
            $fields['hide_caption_tablet'] = sanitize_text_field($fields['hide_caption_tablet']);
        }

        if (isset($fields['hide_caption_laptop'])) {
            $fields['hide_caption_laptop'] = sanitize_text_field($fields['hide_caption_laptop']);
        }

        if (isset($fields['hide_caption_desktop'])) {
            $fields['hide_caption_desktop'] = sanitize_text_field($fields['hide_caption_desktop']);
        }
        
        return $fields;
    }

    /**
     * Sanitize HTML and avoid rgb() color being stripped by wp_filter_post_kses
     * 
     * @since 3.62
     * 
     * @param html $content
     * 
     * @return html
     */
    public function cleanup_content_kses( $content ) {

        // Remove any script tag instance
        $content = preg_replace( '/<script[^>]*>.*?<\/script>/', '', $content );
    
        return $content;
    }

    /**
     * Update tour status
     *
     * @param object $request The request
     */
    public function set_tour_status($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('current_step'));

        // This wont provide a useful return
        update_option('metaslider_tour_cancelled_on', $data['current_step']);

        wp_send_json_success('OK', 200);
    }

    /**
     * Update legacy notification status
     *
     * @param object $request The request
     */
    public function set_legacy_notification($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('notif_status'));
        update_option('metaslider_legacy_notification', $data['notif_status']);

        wp_send_json_success('OK', 200);
    }

    /**
     * Update a single seting specific to a slideshow
     *
     * @param object $request The request
     */
    public function save_single_slideshow_setting($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id', 'setting_key', 'setting_value'));

        // Confirm it's one of ours
        if ('ml-slider' !== get_post_type($data['slideshow_id'])) {
            wp_send_json_error(array(
                'message' => __('This was not a slideshow, so we cannot update the setting.', 'ml-slider')
            ), 409);
        }

        // If it's the title, process
        if ('title' === $data['setting_key']) {
            wp_update_post(array(
                'ID' => absint($data['slideshow_id']),
                'post_title'  => (string) $data['setting_value']
            ));
            return wp_send_json_success('OK', 200);
        }

        // This wont provide a useful return
        update_post_meta($data['slideshow_id'], $data['setting_key'], $data['setting_value']);

        wp_send_json_success('OK', 200);
    }

    /**
     * Update all settings on a slideshow
     *
     * @param object $request The request
     */
    public function save_all_slideshow_settings($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id', 'settings'));

        $result = $this->slideshows->save(
            absint($data['slideshow_id']),
            (array) $data['settings']
        );

        if (is_wp_error($result)) {
            wp_send_json_error(array(
                'message' => 'There was an issue while attempting delete the slideshow. Please refresh and try again.'
            ), 400);
        }

        wp_send_json_success($result, 200);
    }

    /**
     * Update a global user setting
     *
     * @param object $request The request
     */
    public function save_user_setting($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('setting_key', 'setting_value'));

        // Ensure the key is prefixed
        $key = $data['setting_key'];
        $key = (0 === strpos($key, 'metaslider_')) ? $key : 'metaslider_' . $key;

        // This will not provide a useful return (reminder, key is prefixed)
        update_user_option(get_current_user_id(), $key, $data['setting_value']);

        wp_send_json_success('OK', 200);
    }

    /**
     * Get current user's email for optin email
     */
    public function get_user_details()
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $current_user = wp_get_current_user();
        wp_send_json_success($current_user->user_email, 200);
    }

    /**
     * Get default settings
     */
    public function get_slideshow_default_settings()
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }
        wp_send_json_success(MetaSlider_Slideshow_Settings::defaults(), 200);
    }

    /**
     * Save setting defaults
     *
     * @param object $request The request
     */
    public function save_slideshow_default_settings($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('settings'));
        $settings = json_decode($data['settings'], true);

        // These settings should include a title and not be empty
        if (!isset($settings['title'])) {
            wp_send_json_error(array('message' => __('The title cannot be empty.', 'ml-slider')), 422);
        }
        foreach ($settings as $key => $value) {
            if ($value === '') {
                wp_send_json_error(array('message' => sprintf(__('The field (%s) cannot be empty', 'ml-slider'), $key)), 422);
            }
            //convert mobile setting to integer
            if ($key == 'smartphone' || $key == 'tablet' || $key == 'laptop' || $key == 'desktop') {
                $settings[$key] = (int)$value;
            }
        }

        // This will not provide a useful return
        update_option('metaslider_default_settings', $settings);

        wp_send_json_success($settings, 200);
    }

    /**
     * Get a single setting
     *
     * @param object $request The request
     */
    public function get_single_setting($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }
        $data = $this->get_request_data($request, array('setting'));

        $key = (0 === strpos($data['setting'], 'metaslider_')) ? $data['setting'] : 'metaslider_' . $data['setting'];
        if ($setting = get_option($key)) {
            return wp_send_json_success($setting, 200);
        }

        wp_send_json_success(array(), 200);
    }

    /**
     * Get global settings whether multisite or not
     */
    public function get_global_settings()
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        if (is_multisite() && $settings = get_site_option('metaslider_global_settings')) {
            return wp_send_json_success($settings, 200);
        }

        if ($settings = get_option('metaslider_global_settings')) {
            return wp_send_json_success($settings, 200);
        }

        wp_send_json_success(array(), 200);
    }

    /**
     * Save global settings whether multisite or other
     *
     * @param object $request The request
     */
    public function save_global_settings($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('settings'));
        $settings = json_decode($data['settings'], true);

        // TODO: validate the license if not ''

        // If the user has opted out, clean up. If they opt in, that will load on next WP reload
        if (!isset($settings['optIn']) || (isset($settings['optIn']) && !filter_var($settings['optIn'], FILTER_VALIDATE_BOOLEAN))) {
            if (!class_exists('MetaSlider_Analytics')) {
                require_once(METASLIDER_PATH . 'admin/support/Analytics.php');
            }
            $analytics = new MetaSlider_Analytics();
            $analytics->optout();

            // This includes a setting "metaslider_user_explicitly_opted_out" which can be used elsewhere to
            // say "Hey, this user actually pressed the button to enable or disable their 'opt' preference"
            update_option('metaslider_user_explicitly_opted_out', get_current_user_id() . ':' . time(), true);
        }

        update_option('metaslider_global_settings', $settings, true);

        // This is meant to keep track of the user who opted in last. This is so that the user is
        // able to understand exactly when the optin occured and by whom exactly.
        if (isset($settings['optIn']) && filter_var($settings['optIn'], FILTER_VALIDATE_BOOLEAN)) {
            $analytics = new MetaSlider_Analytics();
            $analytics->optin();
        }

        // for legacy library
        update_option('metaslider_new_user', 'old');

        wp_send_json_success($settings, 200);
    }

    /**
     * Update a global single setting
     *
     * @param object $request The request
     */
    public function save_global_settings_single($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('setting_key', 'setting_value'));

        // Ensure the key is prefixed (ie only allow access to metaslider_ settings)
        $key = $data['setting_key'];
        $key = (0 === strpos($key, 'metaslider_')) ? $key : 'metaslider_' . $key;

        // This will not provide a useful return (reminder, key is prefixed)
        update_option($key, $data['setting_value'], true);

        wp_send_json_success('OK', 200);
    }

    /**
     * Get ids of images based on filename. Used during import
     *
     * @param object $request The request
     */
    public function get_image_ids_from_file_name($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('filenames'));
        $images = MetaSlider_Image::get_image_ids_from_file_name(json_decode($data['filenames'], true));
        wp_send_json_success($images, 200);
    }

    /**
     * Get pro settings whether multisite or not
     * 
     * @since 3.62
     */
    public function get_pro_settings()
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        if (is_multisite() && $settings = get_site_option('metaslider_pro_settings')) {
            return wp_send_json_success($settings, 200);
        }

        if ($settings = get_option('metaslider_pro_settings')) {
            return wp_send_json_success($settings, 200);
        }

        wp_send_json_success(array(), 200);
    }

    /**
     * Save pro settings whether multisite or other
     *
     * @since 3.62
     * 
     * @param object $request The request
     */
    public function save_pro_settings($request)
    {
        if ( ! $this->can_access() ) {
            $this->deny_access();
        }

        $data = $this->get_request_data( $request, array( 'settings' ) );
        $settings = json_decode( $data['settings'], true );

        // Supported types: 'number' (int), 'text' (string)
        $fields_label = array(
            'postFeedFields' => __( 'Maximum Number of Custom Field in Post Feed Sliders', 'ml-slider' )
        );

        // These settings should not be empty and be the type defined in $fields_check
        foreach ($settings as $key => $value) {

            if ( $value === '' ) {
                wp_send_json_error(
                    array(
                        'message' => sprintf(
                        __( 'The field (%s) cannot be empty', 'ml-slider' ), 
                        $fields_label[$key]  
                    )
                ), 422 );
            }
        }

        update_option('metaslider_pro_settings', $settings, true);

        wp_send_json_success($settings, 200);
    }

    /**
     * Import theme images
     *
     * @param object $request The request
     */
    public function import_images($request)
    {
        if (!$this->can_access()) {
            $this->deny_access();
        }

        $data = $this->get_request_data($request, array('slideshow_id', 'theme_id', 'slide_id', 'image_data'));

        // Create a slideshow if one doesn't exist
        if (is_null($data['slideshow_id']) || !absint($data['slideshow_id'])) {
            $data['slideshow_id'] = MetaSlider_Slideshows::create();
            if (is_wp_error($data['slideshow_id'])) {
                wp_send_json_error(array('message' => $data['slideshow_id']->getMessage()), 400);
            }
        }

        // If there are files here, then we need to prepare them
        // Dont use get_file_params() as it's WP4.4
        // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
        $images = isset($_FILES['files']) ? $this->process_uploads($_FILES['files'], $data['image_data']) : array();

        // $images should be an array of image data at this point
        // Capture the slide markup that is typically echoed from legacy code
        ob_start();

        $image_ids = MetaSlider_Image::instance()->import($images, $data['theme_id']);
        if (is_wp_error($image_ids)) {
            wp_send_json_error(array(
                'message' => $image_ids->get_error_message()
            ), 400);
        }

        $errors = array();
        $method = is_null($data['slide_id']) ? 'create_slide' : 'update';
        foreach ($image_ids as $image_id) {
            $slide = new MetaSlider_Slide(absint($data['slideshow_id']), $data['slide_id']);
            $slide->add_image($image_id)->$method();

            if (is_wp_error($slide->error)) {
                array_push($errors, $slide->error);
            }
        }

        // Disregard the output. It's not needed for imports
        ob_end_clean();

        // Send back the first error, if any
        if (isset($errors[0])) {
            wp_send_json_error(array(
                'message' => $errors[0]->get_error_message()
            ), 400);
        }

        wp_send_json_success(wp_get_attachment_thumb_url($slide->slide_data['id']), 200);
    }

    /**
     * Import others (aka Local videos, YouTube videos, Vimeo videos, etc.)
     *
     * @since 3.70
     * 
     * @param object $request The request
     */
    public function import_others( $request )
    {
        if ( ! $this->can_access() ) {
            $this->deny_access();
        }

        $data = $this->get_request_data(
            $request, 
            array( 
                'slideshow_id',
                'slug'
            )
        );

        if ( empty( $data['slug'] ) || empty( $data['slideshow_id'] ) ) {
            wp_send_json_error( 
                array( 'message' => __('Import slug not found', 'ml-slider') ), 
                404 
            );
        }

        $slider_id  = intval( $data['slideshow_id'] );
        $slug       = (string) $data['slug'];
        $new_slides = array();

        if ( class_exists( 'MetaSliderPro_Quickstart' ) ) {
            $quickstart = new MetaSliderPro_Quickstart();
            $new_slides = $quickstart->import_slides( $slug, $slider_id );
        }

        if ( ! count( $new_slides ) ) {
            wp_send_json_error( 
                array( 'message' => __('Import data could not be processed', 'ml-slider') ), 
                404 
            );
        }

        wp_send_json_success(
            $data, 
            200
        );
    }

    /**
     * Verify uploads are useful and return an array with metadata
     * For now only handles images.
     *
     * @param array $files An array of the images
     * @param array $data  Data for the image, keys should match
     *
     * @return array An array with image data
     */
    public function process_uploads($files, $data = null)
    {
        $images = array();
        foreach ($files['tmp_name'] as $index => $tmp_name) {
            // If there was an error, skip this file
            // TODO: consider reporting an error back to the user, but skipping might be best
            if (!empty($files['error'][$index])) {
                continue;
            }

            // If the name is empty or isn't an uploaded file, skip it
            if (empty($tmp_name) || !is_uploaded_file($tmp_name)) {
                continue;
            }

            // For now there's no reason to import anything but images
            if (!strstr(mime_content_type($tmp_name), "image/")) {
                continue;
            }

            // Ignore images too large for the server (According to WP)
            // The server probably handles this already
            // TODO: possibly provide user feedback, but skipping moves forward
            $max_upload_size = wp_max_upload_size();
            if (!$max_upload_size) {
                $max_upload_size = 0;
            }
            $file_size = $files['size'][$index];
            if ($file_size > $max_upload_size) {
                continue;
            }

            // Tests were passed, so move forward with this image
            $filename = $files['name'][$index];
            $images[$filename] = array(
                'source' => sanitize_text_field($tmp_name),
                'caption' => isset($data[$filename]['caption']) ? sanitize_text_field($data[$filename]['caption']) : '',
                'title' => isset($data[$filename]['title']) ? sanitize_text_field($data[$filename]['title']) : '',
                'description' => isset($data[$filename]['description']) ? sanitize_text_field($data[$filename]['description']) : '',
                'alt' => isset($data[$filename]['alt']) ? sanitize_text_field($data[$filename]['alt']) : ''
            );
        }
        return $images;
    }
}

if (class_exists('WP_REST_Controller')) :
    /**
     * Class to handle REST route api endpoints.
     */
    class MetaSlider_REST_Controller extends WP_REST_Controller
    {
        /**
         * Namespace and version for the API
         *
         * @var string
         */
        protected $namespace = 'metaslider/v1';

        /**
         * Constructor
         */
        public function __construct()
        {
            add_action('rest_api_init', array($this, 'register_routes'));
            $this->api = MetaSlider_Api::get_instance();
            $this->api->setup();
        }

        /**
         * Register routes
         */
        public function register_routes()
        {
            register_rest_route($this->namespace, '/slideshow/all', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_slideshows'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/list', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'list_slideshows'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/single', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_single_slideshow'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/legacy', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_legacy_slideshows'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/preview', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_preview'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/save', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_slideshow'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/delete', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'delete_slideshow'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/duplicate', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'duplicate_slideshow'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/search', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'search_slideshows'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/export', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'export_slideshows'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/slideshow/import', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'import_slideshows'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/themes/all', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_all_free_themes'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/themes/custom', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_custom_themes'),
                'permission_callback' => array($this->api, 'can_access')
            )));
            register_rest_route($this->namespace, '/themes/set', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'set_theme'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/import/images', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'import_images'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/import/others', array(
                array(
                    'methods' => 'POST',
                    'callback' => array($this->api, 'import_others'),
                    'permission_callback' => array($this->api, 'can_access')
                )
            ));

            register_rest_route($this->namespace, '/tour/status', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'set_tour_status'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/user/save', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_user_setting'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/user', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_user_details'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/global/save', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_global_settings'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/global/single/save', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_global_settings_single'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/single', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_single_setting'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/global', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_global_settings'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/slideshow/save', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_all_slideshow_settings'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/slideshow/save-single', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_single_slideshow_setting'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/slideshow/defaults', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_slideshow_default_settings'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/slideshow/defaults/save', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_slideshow_default_settings'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/images/ids-from-filenames', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'get_image_ids_from_file_name'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            // Pro
            register_rest_route($this->namespace, '/settings/pro', array(array(
                'methods' => 'GET',
                'callback' => array($this->api, 'get_pro_settings'),
                'permission_callback' => array($this->api, 'can_access')
            )));

            register_rest_route($this->namespace, '/settings/pro/save', array(array(
                'methods' => 'POST',
                'callback' => array($this->api, 'save_pro_settings'),
                'permission_callback' => array($this->api, 'can_access')
            )));
        }
    }
endif;
admin/slideshows/slides/Slide.php000064400000022075151213254550013065 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/** 
 * Class to handle individual slides
 */
class MetaSlider_Slide
{
    /**
     * The id of the current slide
     * 
     * @var string|int
     */
    public $slide_id;
    
    /**
     * The id of the slideshow 
     * 
     * @var string|int
     */
    public $slideshow_id;
    
    /**
     * The data used to update the slide
     * 
     * @var array
     */
    public $slide_data = array();

    /**
     * Slide instance
     * 
     * @var object
     * @see get_instance()
     */
    protected static $instance = null;

    /**
     * The slide type
     * 
     * @var string
     */
    public static $slide_type = 'image';

    /**
     * Since WP doesn't throw exceptions
     * 
     * @see __call
     * @var WP_Error
     */
    public $error;

    /**
     * Constructor
     * 
     * @param mixed $slideshow_id - ID of the slideshow
     * @param mixed $slide_id     - An id of a slide or 
     */
    public function __construct($slideshow_id = null, $slide_id = null)
    {

        // This requires a slideshow id
        if ('ml-slider' !== get_post_type($slideshow_id)) {
            $this->error = new WP_Error('slide_init_failed', 'Creating a slide requires a slideshow ID');
            wp_die(esc_html($this->error));
        }

        $this->slideshow_id = $slideshow_id;
        $this->slide_id = $slide_id;
    }

    /**
     * Used to update the modified date of the slideshow parent post type
     * 
     * @return null
     */
    public function __destruct()
    {
        if ($this->slideshow_id) {
            wp_update_post(array('ID' => $this->slideshow_id));
        }
    }

    /**
     * Used to access the instance
     * 
     * @param mixed $slideshow_id - ID of the slideshow
     * @return MetaSlider_Slide
     */
    public static function get_instance($slideshow_id = null)
    {
        if (null === self::$instance) {
self::$instance = new self($slideshow_id);
        }
        return self::$instance;
    }

    /**
     * Exit if there's a WP_Error
     * 
     * @param string $name      - The name of the method being called
     * @param array  $arguments - An enumerated array containing the parameters passed to the $name'ed method
     */
    public function __call($name, $arguments)
    {
        if (is_wp_error($this->error)) {
            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            wp_die($this->error);
        }
    }

    /**
     * Method to create a single slide. This isn't currently being used.
     * 
     * @return self
     */
    public function create_empty_slide()
    {
        // TODO: Refactor everywhere to have a better post_title
        $return = wp_insert_post(
            array(
                'post_title' => "Slider {$this->slideshow_id} - {$this->type}",
                'post_status' => 'publish',
                'post_type' => 'ml-slide'
            )
        );

        if (is_wp_error($return)) {
            $this->error = $return;
            return $this;
        }

        $this->slide_id = $return->ID;
        
        // Set some defaults for the image slide
        update_post_meta($this->slide_id, 'ml-slider_type', $this->type);
        update_post_meta($this->slide_id, 'ml-slider_inherit_image_title', true);
        update_post_meta($this->slide_id, 'ml-slider_inherit_image_alt', true);
        
        return $this;
    }

    /**
     * Method to create a single slide
     * 
     * @param array $data - Optional data that builds the slide
     * @return self
     */
    public function create_slide($data = null)
    {
        if (is_null($this->slide_data)) {
            $this->error = new WP_Error('slide_create_failed', 'Creating a slide requires image data to be set');
            return $this;
        }

        if (!class_exists('MetaImageSlide')) {
            require_once(METASLIDER_PATH . 'inc/slide/metaslide.image.class.php');
        }

        // TODO: Uses the previously existing class to create the slide (refactor this)
        $slide = new MetaImageSlide();
        $slide_data = $slide->add_slide(
            $this->slideshow_id,
            $this->slide_data
        );

        if (is_wp_error($slide_data)) {
            $this->error = $slide_data;
            return $this;
        }

        $this->slide_id = $slide_data['slide_id'];

        // If there were errors creating the slide, we can still attempt to crop
        $slide->resize_slide($this->slide_id, $this->slideshow_id);

        return $this;
    }

    /**
     * Method to update a single slide, right now just the image.
     * 
     * @param array $data - The data for the slide including the image id
     * @return self
     */
    public function update($data = null)
    {
        if (is_null($data) && is_null($this->slide_data)) {
            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            wp_die(new WP_Error('slide_create_failed', 'Creating a slide requires data to update'));
        }

        // If data wasn't passed in then use the imported image
        $image = is_null($data) ? $this->slide_data : $data;

        set_post_thumbnail($this->slide_id, $image['id']);

        if (!class_exists('MetaImageSlide')) {
            require_once(METASLIDER_PATH . 'inc/slide/metaslide.image.class.php');
        }

        // TODO: Uses the previously existing class to create the slide (refactor this but not critical)
        $slide = new MetaImageSlide();
        $return = $slide->update_slide($this->slide_id, $image['id'], $this->slideshow_id);
        if (is_wp_error($return)) {
            $this->error = $return;
            return $this;
        }

        // This performs the cropping of the image
        $slide->resize_slide($this->slide_id, $this->slideshow_id);

        return $this;
    }

    /**
     * Method to import an image. If nothing passed in it will load in a random one from 
     * the theme directory. A theme can also be defined. Currently not used by this plugin.
     * 
     * @param array  $image    - Images to upload, if any
     * @param string $theme_id - The folder name of a theme
     * @return self
     */
    public function import_image($image, $theme_id = null)
    {
        $image_id = Metaslider_Image::instance()->import($image, $theme_id);
        if (is_wp_error($image_id)) {
            $this->error = $image_id;
            return $this;
        }
        
        $this->slide_data = $this->make_image_slide_data($image_id);
        
        return $this;
    }

    /**
     * Adds the type and image id to an array
     *
     * @param  int $image_id - Image ID
     * @return array
     */
    public function add_image($image_id)
    {
        $this->slide_data = $this->make_image_slide_data($image_id);
        return $this;
    }

    /**
     * Adds the type and image id to an array
     * Public for legacy reasons, otherwise should be private. i.e. don't use it outside this class.
     *
     * @param  int $image_id - Image ID
     * @return array
     */
    public function make_image_slide_data($image_id)
    {
        return array(
            'type' => 'image',
            'id'   => absint($image_id)
        );
    }

    /**
     * Method to import image slides from an image or a theme (using default images)
     * 
     * @deprecated
     * @param string $slideshow_id - The id of the slideshow
     * @param string $theme_id     - The folder name of a theme
     * @param array  $images       - Images to upload, if any
     * @return WP_Error|array - The array of ids that were uploaded
     */
    public function import($slideshow_id, $theme_id = null, $images = array())
    {
        $images = !empty($images) ? $images : Metaslider_Image::instance()->get_theme_images($theme_id);
        if (is_wp_error($images)) {
return $images;
        }

        $image_ids = array();
        foreach ($images as $image) {
            $image_ids[] = $this->upload_image($image, $theme_id);
        }
        return $this->create($slideshow_id, array_map(array($this, "make_image_slide_data"), $image_ids));
    }

    /**
     * Method to create slides, single or multiple. Better to create slides by one instead
     * 
     * @deprecated
     * @param string|int $slideshow_id - The id of the slideshow
     * @param array      $data         - The data for the slide
     * @return array - The array of ids that were uploaded
     */
    public function create($slideshow_id, $data)
    {
        $this->slideshow = $slideshow_id;
        $slide_ids = array();
        foreach ($data as $slide_data) {
            $slide_ids[] = $this->create_slide($slide_data);
        }
        return $slide_ids;
    }

    /**
     * Method to disassociate slides from a slideshow and mark them as trashed
     * 
     * @deprecated
     * @param int $slideshow_id - the id of the slideshow
     * @return int
     */
    public function delete_from_slideshow($slideshow_id)
    {
        if (!class_exists('MetaSlider_Slideshows')) {
            require_once METASLIDER_PATH . 'Slideshows.php';
        }
        $slideshow = MetaSlider_Themes::get_instance();
        return $slideshow->delete_all_slides($this->slideshow_id);
    }
}
admin/slideshows/Themes.php000064400000035436151213254560011775 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Class to handle themes
 */
class MetaSlider_Themes
{
    /**
     * Theme instance
     * 
     * @var object
     * @see get_instance()
     */
    protected static $instance = null;

    /**
     * Theme name
     * 
     * @var string
     */
    public $theme_id;

    /**
     * List of supported slide types
     * 
     * @var array
     */
    public $supported_slideshow_libraries = array('flex', 'responsive', 'nivo', 'coin');

    /**
     * Constructor
     */
    public function __construct()
    {
    }

    /**
     * Used to access the instance
     */
    public static function get_instance()
    {
        if (null === self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }

    /**
     * Method to get all the free themes from the theme directory
     * 
     * @return array|WP_Error whether the file was included, or error class
     */
    public function get_all_free_themes()
    {
        if (!file_exists(METASLIDER_THEMES_PATH . 'manifest.php') || !file_exists(METASLIDER_THEMES_PATH . 'manifest-legacy.php')) {
            return new WP_Error('manifest_not_found', __('No themes found.', 'ml-slider'), array('status' => 404));
        }

        
        if (is_multisite() && $settings = get_site_option('metaslider_global_settings')) {
            $global_settings = $settings;
        }
        
        if ($settings = get_option('metaslider_global_settings')) {
            $global_settings = $settings;
        }
        
        $new_install = get_option('metaslider_new_user');
        
        if (
            (isset($global_settings['legacy']) && true == $global_settings['legacy']) ||
            (isset($new_install)  && 'new' == $new_install)
        ) {
            $themes = (include METASLIDER_THEMES_PATH . 'manifest.php');
        } else {
            $themes = (include METASLIDER_THEMES_PATH . 'manifest-legacy.php');
        }

        // If is not Pro, let's include some Premium themes with upgrade link
        if (! metaslider_pro_is_active()) {
            $premium_themes = (include METASLIDER_THEMES_PATH . 'manifest-premium.php');
            $themes = array_merge($themes, $premium_themes);
        }
        
        // Let theme developers or others define a folder to check for themes
        $extra_themes = apply_filters('metaslider_extra_themes', array());
        foreach ($extra_themes as $location) {
            // Make sure there is a manifest
            if (file_exists(trailingslashit($location) . 'manifest.php')) {
                $manifest = include(trailingslashit($location) . 'manifest.php');

                // Make sure each theme has an existing folder, title, description
                foreach ($manifest as $data) {
                    if (
                        file_exists(trailingslashit($location) . $data['folder'])
                        && isset($data['title']) 
                        && isset($data['description'])
                        && isset($data['screenshot_dir'])
                    ) {
                        // Identify this as an external theme
                        $data['type'] = 'external';
                        
                        // Add a key to the theme array
                        $data = array( $data['folder'] => $data );

                        // Merge and set new theme to the top
                        $themes = array_merge($themes, $data);
                    }
                }
            }
        }

        return $themes;
    }

    /**
     * Method to get all custom themes from the database.
     * 
     * @return array Returns an array of custom themes or an empty array if none found
     */
    public function get_custom_themes()
    {
        $custom_themes = array();
        if ((bool) $themes = get_option('metaslider-themes')) {
            foreach ($themes as $id => $theme) {
                $custom_themes[$id] = array(
                    'folder' => $id,
                    'title' => $theme['title'],
                    'type' => 'custom'
                );
            }
        }
        return $custom_themes;
    }

    /**
     * Method to get details about a theme
     *
     * @param string $id - Id of the slideshow
     * @return void
     */
    public function details($id)
    {
    }

    /**
     * Method to get the object by theme name/id
     *
     * @param string $slideshow_id - Id of the slideshow
     * @param string $theme_id     - Id of the theme
     * 
     * @return bool|array - The theme object or false if no theme
     */
    public function get_theme_object($slideshow_id, $theme_id)
    {
        if (is_wp_error($free_themes = $this->get_all_free_themes())) {
            $free_themes = array();
        }
        $themes = array_merge($free_themes, $this->get_custom_themes());
        foreach ($themes as $one_theme) {
            if ($one_theme['folder'] === $theme_id) {
                $theme = $one_theme;
            }
        }

        // If the folder isn't set then something went wrong or no theme is set.
        if (!isset($theme['folder']) || '' == $theme['folder']) {
            return false;
        }

        // If the version isn't set, grab the latest
        if (!isset($theme['version']) || '' == $theme['version']) {
            $theme['version'] = $this->get_latest_version($theme['folder']);
        }

        return $theme;
    }


    /**
     * Method to get a random theme
     *
     * @param bool $all - Whether to include themes that arent fully supported
     * 
     * @return bool|array - The theme object or false if no theme
     */
    public function random($all = false)
    {
        if (is_wp_error($free_themes = $this->get_all_free_themes())) {
            return false;
        }
        if ($all) {
return array_rand($free_themes);
        }

        $themes = array();
        foreach ($free_themes as $id => $theme) {
            // Be sure the theme supports all slider libraries
            if (count($this->supported_slideshow_libraries) === count($theme['supports'])) {
                $themes[$id] = $theme;
            }
        }

        return array_rand($themes);
    }

    /**
     * Method to get the current set theme for a slideshow
     *
     * @param string $slideshow_id - Id of the slideshow
     * 
     * @return bool|array - The theme object or false if no theme
     */
    public function get_current_theme($slideshow_id)
    {

        $theme = get_post_meta($slideshow_id, 'metaslider_slideshow_theme', true);

        // If the theme is none, it means no theme is set (happens if they remove a theme)
        // $theme may be WP_Error due to a bug in 3.9.1
        if ('none' === $theme || is_wp_error($theme)) {
return false;
        }

        $is_a_custom_theme = (isset($theme['folder']) && ('_theme' === substr($theme['folder'], 0, 6)));

        // Check here for a legacy theme OR a custom theme
        if (!isset($theme['folder']) || $is_a_custom_theme) {
            $settings = get_post_meta($slideshow_id, 'ml-slider_settings', true);
            
            // * This might be a nivo theme or a custom theme (pro)
            if (isset($settings['theme'])) {
                $settings['theme'] = in_array($settings['theme'], array('light', 'dark', 'bar')) ? 'nivo-' . $settings['theme'] : $settings['theme'];
                $theme = $this->get_theme_object($slideshow_id, $settings['theme']);

                // Update the theme to the new system
                update_post_meta($slideshow_id, 'metaslider_slideshow_theme', $theme);
            }
        }

        // If the folder isn't set then something went wrong or no theme is set.
        if (!isset($theme['folder']) || '' == $theme['folder']) {
            return false;
        }

        // If the version isn't set, grab the latest
        if (!isset($theme['version']) || '' == $theme['version']) {
            $theme['version'] = $this->get_latest_version($theme['folder']);
        }

        // At this point, if it's a custom theme we are okay
        if ($is_a_custom_theme) {
return $theme;
        }

        // If the theme exists via outside source
        $extra_themes = apply_filters('metaslider_extra_themes', array());
        foreach ($extra_themes as $location) {
            if (file_exists(trailingslashit($location) . trailingslashit($theme['folder']) . trailingslashit($theme['version']) . 'theme.php')) {
                return $theme;
            }
        }

        // If the folder is in in our theme selection
        if (file_exists(METASLIDER_THEMES_PATH . trailingslashit($theme['folder']) . $theme['version'])) {
            return $theme;
        }

        // Remove the broken/not found theme
        $this->set($slideshow_id, array());

        // The theme wasnt found anywhere
        return new WP_Error('theme_not_found', __('We removed your selected theme as it could not be found. Was the folder deleted?', 'ml-slider'));
    }

    /**
     * Method to get the version of the latest theme
     *
     * @param string $folder - Folder name in /themes/
     * @return string the version number
     */
    public function get_latest_version($folder)
    {

        // If the changelog isn't there for some reason just assume it's v1.0.0
        if (!file_exists(METASLIDER_THEMES_PATH . trailingslashit($folder) . 'changelog.php')) {
            return 'v1.0.0';
        }
        $changelog = (include METASLIDER_THEMES_PATH . trailingslashit($folder) . 'changelog.php');
        return current(array_keys($changelog));
    }

    /**
     * Method to set the theme
     *
     * @param int|string $slideshow_id The id of the current slideshow
     * @param array      $theme        The selected theme object
     * @return bool true on successful update, false on failure.
     */
    public function set($slideshow_id, $theme)
    {

        // For legacy reasons we have to query the settings
        $settings = get_post_meta($slideshow_id, 'ml-slider_settings', true);

        // If the theme isn't set, then they attempted to remove the theme
        if (!isset($theme['folder']) || is_wp_error($theme)) {
            $settings['theme'] = 'none';
            //$settings['theme_customize'] = array();
            update_post_meta($slideshow_id, 'ml-slider_settings', $settings);
            return update_post_meta($slideshow_id, 'metaslider_slideshow_theme', 'none');
        }

        // For custom themes, it's easier to use the legacy setting because the pro plugin
        // already hooks into it.
        if ('_theme' === substr($theme['folder'], 0, 6)) {
            $settings['theme'] = $theme['folder'];
            update_post_meta($slideshow_id, 'ml-slider_settings', $settings);
        } else if (isset($settings['theme'])) {
            // If the theme isn't a custom theme, we should unset the legacy setting
            // unset($settings['theme']); // ! Pro requires this to be set
            $settings['theme'] = '';
            update_post_meta($slideshow_id, 'ml-slider_settings', $settings);

            // Save the customizations defaults
            //$this->save_theme_customizations( $slideshow_id, $theme );
        }

        // This will return false if the data is the same, unfortunately
        return (bool) update_post_meta($slideshow_id, 'metaslider_slideshow_theme', $theme);
    }

    /**
     * Load in the selected theme assets.
     * 
     * @param int|string $slideshow_id The id of the current slideshow
     * @param string     $theme_id     The folder name of a theme
     * 
     * @return bool|WP_Error whether the file was included, or error class
     */
    public function load_theme($slideshow_id, $theme_id = null)
    {

        // Don't load a theme on the editor page.
        if (is_admin() && function_exists('get_current_screen') && $screen = get_current_screen()) {
            if ('metaslider-pro_page_metaslider-theme-editor' === $screen->id) {
            return false;
            }
        }

        $theme = (is_null($theme_id)) ? $this->get_current_theme($slideshow_id) : $this->get_theme_object($slideshow_id, $theme_id);

        // No theme for this slideshow? Set a default class
        if ( false === $theme ) {
            add_filter( 'metaslider_css_classes', array( $this, 'add_no_theme_class' ), 10, 3 );
            remove_filter( 'metaslider_css_classes', array( $this, 'add_theme_class' ), 10, 3 );
        }
        
        // 'none' is the default theme to load no theme. 
        // @TODO - Why we don't seem to get 'none' for slideshows with no theme?
        if ('none' == $theme_id) {
            return false;
        }
        if (is_wp_error($theme) || false === $theme) {
            return $theme;
        }

        // We have a theme, so lets add the class to the body
        $this->theme_id = $theme['folder'];

        // Add the theme class name to the slideshow
        add_filter('metaslider_css_classes', array($this, 'add_theme_class'), 10, 3);
        remove_filter( 'metaslider_css_classes', array( $this, 'add_no_theme_class' ), 10, 3 );

        // Check our themes for a match
        if (file_exists(METASLIDER_THEMES_PATH . $theme['folder'])) {
            $theme_dir = METASLIDER_THEMES_PATH . $theme['folder'];
        }

        // Let theme developers or others define a folder to check for themes (this lets them override our themes)
        $extra_themes = apply_filters('metaslider_extra_themes', array(), $slideshow_id);
        foreach ($extra_themes as $location) {
            if (file_exists(trailingslashit($location) . $theme['folder'])) {
                $theme_dir = trailingslashit($location) . $theme['folder'];
            }
        }

        // Load in the base theme class
        if (isset($theme_dir) && isset($theme['version'])) {
            require_once(METASLIDER_THEMES_PATH . 'ms-theme-base.php');
            return include_once trailingslashit($theme_dir) . trailingslashit($theme['version']) . 'theme.php';
        }
        
        // This should be a custom theme (pro)
        return $theme;
    }

    /**
     * Add the theme to the class so styles will apply. The theme can be
     * overridden, for example from the preview functionality
     * 
     * @param string $class        The slideshow classlist
     * @param string $slideshow_id The id of the slideshow
     * @param string $settings     The settings for the slideshow
     */
    public function add_theme_class($class, $slideshow_id, $settings)
    {
        $class .= ' ms-theme-' . $this->theme_id;
        return $class;
    }

    /**
     * Add the default class when no theme is selected
     * 
     * @since 3.31
     * 
     * @param string $class        The slideshow classlist
     * @param string $slideshow_id The id of the slideshow
     * @param string $settings     The settings for the slideshow
     */
    public function add_no_theme_class( $class, $slideshow_id, $settings )
    {
        $class .= ' ms-theme-default';
        return $class;
    }
}
admin/slideshows/Image.php000064400000027507151213254560011572 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Utility class to handle various image tasks
 */
class MetaSlider_Image
{
    /**
     * Theme instance
     * 
     * @var object
     * @see get_instance()
     */
    protected static $instance = null;

    /**
     * Used to access the instance
     */
    public static function instance()
    {
        if (null === self::$instance) {
self::$instance = new self();
        }
        return self::$instance;
    }

    /**
     * Method to import an image (or more than one). If nothing passed in it will load in a random one from 
     * the theme directory. A theme can also be defined.
     * 
     * @param array  $images   - Images to upload, if any
     * @param string $theme_id - The folder name of a theme
     * @return WP_Error|array - The array of ids that were uploaded
     */
    public function import($images, $theme_id = null)
    {
        /*
        If we are provided images, they should be formatted already
        It should look like this, possibly without the meta data
        $image[$url] = array(
            'source' => $tmp_name,
            'caption' => '',
            'title' => '',
            'description' => '',
            'alt' => ''
        );
        */
        if (empty($images)) {
$images = $this->get_theme_images($theme_id);
        }

        // Get an array or sucessful image ids
        return $this->upload_multiple($images);
    }

    /**
     * Method to import images from a theme
     *
     * @param array $images - The full path to the local image or an array that includes the path
     */
    public function upload_multiple($images)
    {

        $successful_uploads = array();
        foreach ($images as $filename => $image) {
            if ($image_id = $this->upload($filename, $image['source'], $image)) {
                array_push($successful_uploads, $image_id);
            }
        }

        return $successful_uploads;
    }

    /**
     * Method to upload a single image, you should provide a local location on the server
     *
     * @param string $filename  - The preferred name of the file
     * @param string $source    - The current location of the file without the file name
     * @param array  $meta_data - Extra data like caption, description, etc
     * @return int|boolean - returns the ID of the new image, or false
     */
    public function upload($filename, $source, $meta_data = array())
    {
        if (!function_exists('media_handle_upload')) {
            require_once(ABSPATH . 'wp-admin/includes/image.php');
            require_once(ABSPATH . 'wp-admin/includes/file.php');
            require_once(ABSPATH . 'wp-admin/includes/media.php');
        }

        if (file_exists($source)) {
            $wp_upload_dir = wp_upload_dir();

            // Create a new filename if needed
            $filename = wp_unique_filename(trailingslashit($wp_upload_dir['path']), $filename);

            // Get the file path of the target destination
            $destination = trailingslashit($wp_upload_dir['path']) . $filename;

            // We want these both to return true
            if (copy($source, $destination)) {
                if ((bool) $image_id = $this->attach_image_to_media_library($destination, $meta_data)) {
                    return $image_id;
                }
            }

            // TODO: we might want to provide a specific error message if an image 
            // fails to upload.
            return false;
        }

        // If we make it this far then the file doesn't exit
        return false;
    }

    /**
     * Adds the type and image id to an array
     *
     * @param  int $image_id Image ID
     * @return array
     */
    public function make_layer_slide_data($image_id)
    {
        return array(
            'type' => 'layer',
            'id'   => absint($image_id)
        );
    }

    /**
     * Method to import images from a theme
     *
     * @param array|null $theme_id - The name of a theme
     * @param int        $count    - How many images? (4 for legacy reasons)
     * @return array - a formatted image array
     */
    public function get_theme_images($theme_id, $count = 4)
    {

        // To use local images, the folder must exist
        if (!file_exists($theme_image_directory = METASLIDER_THEMES_PATH . 'images/')) {
            return new WP_Error('images_not_found', __('We could not find any images to import.', 'ml-slider'), array('status' => 404));
        }

        if (is_multisite() && $settings = get_site_option('metaslider_global_settings')) {
            $global_settings = $settings;
        }
        
        if ($settings = get_option('metaslider_global_settings')) {
            $global_settings = $settings;
        }

        $new_install = get_option('metaslider_new_user');
        
        if (
            (isset($global_settings['legacy']) && true == $global_settings['legacy']) ||
            (isset($new_install)  && 'new' == $new_install)
        ) {
            $manifest_file = 'manifest.php';
        } else {
            $manifest_file = 'manifest-legacy.php';
        }

        // Check for the manifest, and load theme specific images for a theme (if a theme is set)
        if (!is_null($theme_id) && file_exists(METASLIDER_THEMES_PATH . $manifest_file)) {
            $themes = (include METASLIDER_THEMES_PATH . $manifest_file);

            // Check if the theme is available and has images set
            foreach ($themes as $theme) {
                if (!empty($theme['images']) && $theme_id === $theme['folder']) {
                    $images = $theme['images'];
                }
            }
        }

        // Get list of images in the folder
        $all_images = array_filter(scandir($theme_image_directory), array($this, 'filter_images'));

        // If images are specified, make sure they exist and use them. if not, use 4 at random
        $images = !empty($images) ? $this->pluck_images($images, $all_images) : array_rand(array_flip($all_images), $count);

        $images_formatted = array();
        foreach ((array) $images as $filedata) {
            $data = array();

            // Only process strings or arrays
            if (!is_string($filedata) && !is_array($filedata)) {
continue;
            }

            // If a string, convert it to an array with the string as the key (filename)
            if (is_string($filedata)) {
                $data[$filedata] = array();
                $filename = $filedata;
            }

            // If it was an array, the filename needs to become the key
            if (!empty($filedata['filename'])) {
                $filename = $filedata['filename'];
                unset($filedata['filename']);
                $data = $filedata;
            }

            // Set the local images dir as the source
            $data['source'] = trailingslashit($theme_image_directory) . $filename;
            
            /*
            It should look like this, possibly without the meta data
            $images_formatted[$filename] = array(
                'source' => $tmp_name,
                'caption' => '',
                'title' => '',
                'description' => '',
                'alt' => ''
            );
            */
            $images_formatted[$filename] = $data;
        }

        return $images_formatted;
    }

    /**
     * Method to use filter out non-images
     * TODO: possible extract this into static method on a utility class
     *
     * @param string $string - a filename scanned from the images dir
     * @return boolean
     */
    private function filter_images($string)
    {

        // TODO: allow all image types (this is currently used in the themes folder only)
        return preg_match('/jpg$/i', $string);
    }

    /**
     * Method to use filter out images that might not exist
     * TODO: possible extract this into static method on a utility class
     *
     * @param array $images_to_use - Images defined in the manifest
     * @param array $images        - Images from the images folder
     * @return array
     */
    private function pluck_images($images_to_use, $images)
    {

        // For the filename/caption scenario
        if (!empty($images_to_use[0]) && is_array($images_to_use[0])) {
            // Just return the multi-dimentional array and handle the filecheck later
            return $images_to_use;
        }

        // Return the images specified by the filename or four random
        $images_that_exist = array_intersect($images_to_use, $images);
        return (!empty($images_that_exist)) ? $images_that_exist : array_rand(array_flip($images), 4);
    }

    /**
     * Method to add a file to the media library
     * TODO: possible extract this into static method on a utility class
     *
     * @param string $filename   - The full path to the image dir in the media library
     * @param array  $image_data - Optional data to attach / override to the image
     * @return int
     */
    private function attach_image_to_media_library($filename, $image_data = array())
    {

        $filetype = wp_check_filetype(basename($filename), null);
        $wp_upload_dir = wp_upload_dir();

        $attachment = array(
            'guid'           => $wp_upload_dir['url'] . '/' . basename($filename),
            'post_mime_type' => $filetype['type'],
            'post_title'     => preg_replace('/\.[^.]+$/', '', basename($filename)),
            'post_content'   => '',
            'post_excerpt'   => '',
            'post_status'    => 'publish'
        );

        // Add the caption, title and description if set. This used human-friendly words
        // instead of WP specific to make it more simple for theme developers
        if (!empty($image_data['caption'])) {
            $image_data['post_excerpt'] = $image_data['caption'];
            unset($image_data['caption']);
        }
        if (!empty($image_data['title'])) {
            $image_data['post_title'] = $image_data['title'];
            unset($image_data['title']);
        }
        if (!empty($image_data['description'])) {
            $image_data['post_content'] = $image_data['description'];
            unset($image_data['description']);
        }

        // Merge the theme data with the defaults
        $data = array_merge($attachment, $image_data);

        // Insert the attachment
        $attach_id = wp_insert_attachment($data, $filename);

        // Double check it was an image, delete if not.
        if (!wp_attachment_is_image($attach_id)) {
            wp_delete_post($attach_id, true);
            return false;
        }

        // Generate the metadata for the attachment, and update the database record
        $attach_data = wp_generate_attachment_metadata($attach_id, $filename);
        wp_update_attachment_metadata($attach_id, $attach_data);

        // The theme can set the alt tag too if needed
        if ($attach_id && !empty($image_data['alt'])) {
            update_post_meta($attach_id, '_wp_attachment_image_alt', $image_data['alt']);
        }

        return $attach_id;
    }

    /**
     * Method to get image id from the filename
     *
     * @param array $filenames - It should be the the post_name
     * @return array
     */
    public static function get_image_ids_from_file_name($filenames)
    {
        $images = array();
        foreach ($filenames as $filename) {
            $image = get_posts(array(
                'post_type' => 'attachment',
                'name' => $filename,
                'posts_per_page' => 1,
                'post_status' => 'inherit',
            ));
            $image = $image ? array_pop($image) : null;

            if (is_null($image)) {
                $images[$filename] = null;
                continue;
            }

            $images[$filename] = array(
                'url' => wp_get_attachment_url($image->ID),
                'thumbnail' => wp_get_attachment_thumb_url($image->ID),
                'id' => $image->ID
            );
        }
        return $images;
    }
}
admin/slideshows/Settings.php000064400000006703151213254560012343 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Class to handle individual slideshow settings
 */
class MetaSlider_Slideshow_Settings
{
    /**
     * Themes class
     *
     * @var object | bool
     */
    private $settings;

    /**
     * Constructor
     *
     * @param string|null $slideshow_id The settings object
     */
    public function __construct($slideshow_id = null)
    {
        $this->settings = get_post_meta($slideshow_id, 'ml-slider_settings', true);
    }

    /**
     * Returns settings
     *
     * @return object
     */
    public function get_settings()
    {
        return $this->settings ? $this->settings : self::defaults();
    }

    /**
     * Returns a single setting
     *
     * @param string $setting A single setting name
     *
     * @return mixed|WP_error The setting result or an error object
     */
    public function get_single($setting)
    {
        return isset($this->settings[$setting]) ? $this->settings[$setting] : new WP_Error('invalid_setting', 'The setting was not found', array('status' => 404));
    }

    /**
     * Returns the default settings
     *
     * @return array
     */
    public static function defaults()
    {
        $defaults = array(
            'title' => __('New Slideshow', 'ml-slider'),
            'type' => 'flex',
            'random' => false,
            'cssClass' => '',
            'printCss' => true,
            'printJs' => true,
            'width' => 700,
            'height' => 300,
            'spw' => 7,
            'sph' => 5,
            'delay' => 3000,
            'sDelay' => 30,
            'opacity' => 0.7,
            'titleSpeed' => 500,
            'effect' => 'slide',
            'navigation' => true,
            'filmstrip_delay' => 7000,
            'filmstrip_animationSpeed' => 600,
            'links' => true,
            'hoverPause' => true,
            'theme' => 'none',
            'direction' => 'horizontal',
            'reverse' => false,
            'keyboard' => true,
            'touch' => true,
            'animationSpeed' => 600,
            'prevText' => __('Previous', 'ml-slider'),
            'nextText' => __('Next', 'ml-slider'),
            'slices' => 15,
            'center' => false,
            'smartCrop' => true,
            'smoothHeight' => false,
            'carouselMode' => false,
            'infiniteLoop' => false,
            'carouselMargin' => 5,
            'firstSlideFadeIn' => false,
            'easing' => 'linear',
            'autoPlay' => false,
            'thumb_width' => 150,
            'thumb_height' => 100,
            'responsive_thumbs' => true,
            'thumb_min_width' => 100,
            'fullWidth' => true,
            'noConflict' => true,
            'mobileArrows_smartphone' => false,
            'mobileArrows_tablet' => false,
            'mobileArrows_laptop' => false,
            'mobileArrows_desktop' => false,
            'mobileNavigation_smartphone' => false,
            'mobileNavigation_tablet' => false,
            'mobileNavigation_laptop' => false,
            'mobileNavigation_desktop' => false,
            'ariaLive' => false,
            'ariaCurrent' => false,
            'tabIndex' => false,
            'pausePlay' => false
        );
        $defaults = apply_filters('metaslider_default_parameters', $defaults);
        $overrides = get_option('metaslider_default_settings');
        return is_array($overrides) ? array_merge($defaults, $overrides) : $defaults;
    }
}
admin/slideshows/Slideshows.php000064400000101367151213254560012671 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

/**
 *  Class to handle slideshows
 */
class MetaSlider_Slideshows
{
    /**
     * Themes class
     *
     * @var object
     */
    private $themes;

    /**
     * Theme instance
     *
     * @var object
     * @see get_instance()
     */
    protected static $instance = null;

    /**
     * @var object|null
     */
    public $plugin;

    /**
     * Constructor
     */
    public function __construct()
    {
        if (!class_exists('MetaSlider_Themes')) {
            require_once plugin_dir_path(__FILE__) . 'Themes.php';
        }
        $this->themes = MetaSlider_Themes::get_instance();
        $this->plugin = MetaSliderPlugin::get_instance();
    }

    /**
     * Used to access the instance
     */
    public static function get_instance()
    {
        if (null === self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }

    /**
     * Method to add a slideshow
     *
     * @return int
     */
    public static function create()
    {

        // Duplicate settings from their recently modified slideshow, or use defaults.
        $last_modified =  self::get_last_modified();
        $last_modified_id = !empty($last_modified) ? $last_modified['id'] : null;
        // TODO: next branch, refactor to slideshow object and extract controller type methods.
        // TODO: I want to be able to do $last_modified->settings()
        $last_modified_settings = new MetaSlider_Slideshow_Settings($last_modified_id);
        $last_modified_settings = $last_modified_settings->get_settings();
        $default_settings = MetaSlider_Slideshow_Settings::defaults();

        $new_id = wp_insert_post(array(
            'post_title' => $default_settings['title'],
            'post_status' => 'publish',
            'post_type' => 'ml-slider'
        ));

        if (false !== strpos($default_settings['title'], '{id}')) {
            wp_update_post(array(
                'ID' => $new_id,
                'post_title' => str_replace('{id}', $new_id, $default_settings['title'])
            ));
        }

        if (is_wp_error($new_id)) {
            return $new_id;
        }

        $overrides = get_option('metaslider_default_settings');
        $last_modified_settings = is_array($overrides) ? array_merge($last_modified_settings, $overrides) : $last_modified_settings;

        $last_modified_settings['keyboard'] = true;

        // Force these always by default - @since 3.70
        $last_modified_settings['printJs'] = true;
        $last_modified_settings['printCss'] = true;
        $last_modified_settings['noConflict'] = true;
        $last_modified_settings['effect'] = 'slide';
        $last_modified_settings['autoPlay'] = false;

        
        /* Make sure we set a default theme if available - Pro set '_theme_default' 
         * to bypass $last_modified_settings['theme'] that takes the last saved theme configuration 
         * 
         * @since 3.62 */
        $default_theme = apply_filters( 'metaslider_default_theme', '' );
        if ( $default_theme ) {
            $last_modified_settings['theme'] = $default_theme;
        }
        
        add_post_meta($new_id, 'ml-slider_settings', $last_modified_settings, true);

        // TODO: next branch, refactor to slideshow object and extract controller type methods.
        // TODO: I want to be able to do $last_modified->theme()
        // Get the latest slideshow used
        $theme = get_post_meta($last_modified, 'metaslider_slideshow_theme', true);

        // Lets users set their own default theme
        if ( $default_theme ) {
            $themes = MetaSlider_Themes::get_instance();
            $theme = $themes->get_theme_object( null, $default_theme );
        }

        // Set the theme if we found something
        if (isset($theme['folder'])) {
            update_post_meta($new_id, 'metaslider_slideshow_theme', $theme);
        }

        // Needed for creating a relationship with slides
        wp_insert_term($new_id, 'ml-slider');

        return $new_id;
    }

    /**
     * Method to save a slideshow
     *
     * @param int|string $slideshow_id - The id of the slideshow
     * @param array      $new_settings - The settings
     *
     * @return int - id of the slideshow
     */
    public function save($slideshow_id, $new_settings)
    {

        // TODO: This is old code copied over and should eventually be refactored to not require hard-coded values
        $old_settings = get_post_meta($slideshow_id, 'ml-slider_settings', true);

        // convert submitted checkbox values from 'on' or 'off' to boolean values
        $checkboxes = apply_filters("metaslider_checkbox_settings", array('noConflict', 'fullWidth', 'hoverPause', 'links', 'reverse', 'random', 'printCss', 'printJs', 'smoothHeight', 'center', 'carouselMode', 'autoPlay', 'firstSlideFadeIn', 'responsive_thumbs', 'keyboard', 'touch', 'infiniteLoop',  'mobileArrows_smartphone', 'mobileArrows_tablet','mobileArrows_laptop', 'mobileArrows_desktop', 'mobileNavigation_smartphone', 'mobileNavigation_tablet', 'mobileNavigation_laptop', 'mobileNavigation_desktop', 'ariaLive', 'tabIndex', 'pausePlay','ariaCurrent'));

        foreach ($checkboxes as $checkbox) {
            $new_settings[$checkbox] = (isset($new_settings[$checkbox]) && 'on' == $new_settings[$checkbox]) ? 'true' : 'false';
        }

        $settings = array_merge((array) $old_settings, $new_settings);

        update_post_meta($slideshow_id, 'ml-slider_settings', $settings);

        return $slideshow_id;
    }

    /**
     * Method to duplicate a slideshow
     *
     * @param int|string $slideshow_id - The id of the slideshow to duplicate
     *
     * @throws Exception - handled within method.
     * @return int|boolean - id of the new slideshow to show, or false
     */
    public function duplicate($slideshow_id)
    {
        $new_slideshow_id = 0;

        try {
            $new_slideshow_id = wp_insert_post(array(
                'post_title' => get_the_title($slideshow_id),
                'post_status' => 'publish',
                'post_type' => 'ml-slider'
            ), true);

            if (is_wp_error($new_slideshow_id)) {
                throw new Exception($new_slideshow_id->get_error_message());
            }

            foreach (get_post_meta($slideshow_id) as $key => $value) {
                update_post_meta($new_slideshow_id, $key, maybe_unserialize($value[0]));
            }

            // Not used at the moment, but indicates this is a copy
            update_post_meta($new_slideshow_id, 'metaslider_copy_of', $slideshow_id);

            // Slides are associated to a slideshow via post terms
            $term = wp_insert_term($new_slideshow_id, 'ml-slider');

            // Duplicate each slide
            foreach (self::active_slide_ids($slideshow_id) as $slide_id) {
                $type = get_post_meta($slide_id, 'ml-slider_type', true);
                $new_slide_id = wp_insert_post(array(
                    'post_title' => "Slider {$new_slideshow_id} - {$type}",
                    'post_status' => 'publish',
                    'post_type' => 'ml-slide',
                    'post_excerpt' => get_post_field('post_excerpt', $slide_id),
                    'menu_order' => get_post_field('menu_order', $slide_id)
                ), true);

                if (is_wp_error($new_slide_id)) {
                    throw new Exception($new_slideshow_id->get_error_message());
                }

                foreach (get_post_meta($slide_id) as $key => $value) {
                    add_post_meta($new_slide_id, $key, maybe_unserialize($value[0]));
                }

                wp_set_post_terms($new_slide_id, $term['term_id'], 'ml-slider', true);
            }
        } catch (Exception $e) {
            // If there was a failure somewhere, clean up
            wp_trash_post($new_slideshow_id);
            $this->delete_all_slides($new_slideshow_id);

            return new WP_Error('slide_duplication_failed', $e->getMessage());
        }

        // External modules manipulate data here
        do_action('metaslider_slideshow_duplicated', $slideshow_id, $new_slideshow_id);

        return $new_slideshow_id;
    }

    /**
     * Will return an array of information needed to import a slideshow
     *
     * @param array $slideshow_ids - The ids of the slideshow to export
     *
     * @return array
     */
    public function export($slideshow_ids)
    {
        $export = array();
        $args = array(
            'post_type' => 'ml-slider',
            'post_status' => array('inherit', 'publish'),
            'orderby' => 'modified',
            'suppress_filters' => 1, // wpml, ignore language filter
            'posts_per_page' => -1,
            'post__in' => $slideshow_ids
        );
        $slideshows = get_posts($args);

        foreach ($slideshows as $slideshow) {
            $slideshow_export = array(
                'title' => $slideshow->post_title,
                'original_id' => $slideshow->ID,
                'meta' =>  array(),
                'slides' => array()
            );

            foreach (get_post_meta($slideshow->ID) as $metakey => $value) {
                $slideshow_export['meta'][$metakey] = $value[0];
            }

            if (isset($slideshow_export['meta']['metaslider_extra_slideshow_css'])) {
                $slideshow_export['meta']['metaslider_extra_slideshow_css'] = str_replace(
                    'metaslider-id-' . $slideshow->ID,
                    'metaslider-id-{#ID#}', // To replace with correct ID during import
                    $slideshow_export['meta']['metaslider_extra_slideshow_css']
                );
            }

            // Unset unecessary meta
            unset($slideshow_export['meta']['metaslider_copy_of']);

            $slides = get_posts(array(
                'post_type' => array('ml-slide'),
                'post_status' => array('publish'),
                'lang' => '', // polylang, ingore language filter
                'suppress_filters' => 1, // wpml, ignore language filter
                'posts_per_page' => -1,
                'tax_query' => array(
                    array(
                        'taxonomy' => 'ml-slider',
                        'field' => 'slug',
                        'terms' => $slideshow->ID
                    )
                )
            ));

            $slides_export = array();
            foreach ($slides as $key => $slide) {
                $image = get_post(get_post_meta($slide->ID, '_thumbnail_id', true));
                $image_name = isset($image->post_name) ? $image->post_name : '';
                $image_alt_name = isset($image->post_title) ? $image->post_title : '';

                // Youtube and Vimeo prepend text to the file name, but not post_name
                $slide_type = get_post_meta($slide->ID, 'ml-slider_type', true);
                if ($image_name && in_array($slide_type, array('youtube', 'vimeo'))) {
                    $image_alt_name = $image_name;
                    $image_name = $slide_type . '_' . $image_name;
                }
                $slides_export[$key] = array(
                    'original_id' => $slide->ID,
                    'order' => $slide->menu_order,
                    'post_excerpt' => $this->stub_image_urls_from_string($slide->post_excerpt),
                    'image' => $image_name,
                    'image_alt' => $image_alt_name,
                    'meta' =>  array()
                );

                // Replace content url with placeholder for easier importing
                foreach (get_post_meta($slide->ID) as $metakey => $value) {
                    $slides_export[$key]['meta'][$metakey] = $this->stub_image_urls_from_string($value[0]);
                }

                // Unset unnecessary meta
                unset($slides_export[$key]['meta']['_thumbnail_id']);
            }

            $slideshow_export['slides'] = $slides_export;
            $export[] = $slideshow_export;

            unset($slides_export);
            unset($slideshow_export);
        }
        $export['metadata'] = array(
            'version' => $this->plugin->version,
            'date' => date("Y/m/d") // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date
        );
        return $export;
    }

    /**
     * Will import slideshows
     *
     * @param array $slideshows - The data generated by the export method
     *
     * @throws Exception - handled within method.
     * @return WP_Error|array - True on success, WP_Error on failure
     */
    public function import($slideshows)
    {
        $errors = array();
        foreach ($slideshows as $index => $slideshow) {
            $errors[$index] = array();
            $new_slideshow_id = 0;
            try {
                $new_slideshow_id = wp_insert_post(array(
                    'post_title' => $slideshow['title'],
                    'post_status' => 'publish',
                    'post_type' => 'ml-slider'
                ), true);

                if (is_wp_error($new_slideshow_id)) {
                    throw new Exception($new_slideshow_id->get_error_message());
                }

                if (isset($slideshow['meta']) && is_array($slideshow['meta'])) {
                    foreach ($slideshow['meta'] as $key => $value) {
                        update_post_meta(
                            $new_slideshow_id,
                            $key,
                            maybe_unserialize(str_replace('{#ID#}', $new_slideshow_id, $value))
                        );
                    }
                }

                // Slides are associated to a slideshow via post terms
                $term = wp_insert_term($new_slideshow_id, 'ml-slider');

                if (!isset($slideshow['slides']) || !$slideshow['slides']) {
                    continue;
                };
                foreach ($slideshow['slides'] as $slide) {
                    $new_slide_id = wp_insert_post(array(
                        'post_title' => "Slider {$new_slideshow_id} - {$slide['meta']['ml-slider_type']}",
                        'post_status' => 'publish',
                        'post_type' => 'ml-slide',
                        'post_excerpt' => $this->restore_image_urls_from_string($slide['post_excerpt']),
                        'menu_order' => $slide['order']
                    ), true);

                    if (is_wp_error($new_slide_id)) {
                        throw new Exception($new_slideshow_id->get_error_message());
                    }

                    // Update the thumbnail from the computed new image id
                    if (isset($slide['id'])) {
                        $slide['meta']['_thumbnail_id'] = $slide['id'];
                    }

                    foreach ($slide['meta'] as $key => $value) {
                        $value = $this->restore_image_urls_from_string($value);
                        add_post_meta($new_slide_id, $key, maybe_unserialize($value));
                    }

                    wp_set_post_terms($new_slide_id, $term['term_id'], 'ml-slider', true);

                    // This will crop the image so it's ready (and not already cropped)
                    $settings = maybe_unserialize($slideshow['meta']['ml-slider_settings']);
                    if (isset($settings['width']) && isset($settings['height'])) {
                        $image_cropper = new MetaSliderImageHelper(
                            $new_slide_id,
                            $settings['width'],
                            $settings['height'],
                            isset($settings['smartCrop']) ? $settings['smartCrop'] : 'false'
                        );
                        // This crops even though it doesn't sounds like it
                        $image_cropper->get_image_url();
                    }
                }
            } catch (Exception $e) {
                array_push($errors[$index], $e->getMessage());

                // If there was a failure somewhere, clean up
                wp_trash_post($new_slideshow_id);
                $this->delete_all_slides($new_slideshow_id);
            }

            // If no errors, remove the index
            if (!count($errors[$index])) {
                unset($errors[$index]);
            }

            // External modules manipulate data here
            do_action('metaslider_slideshow_imported', $new_slideshow_id);
        }

        $errors = reset($errors);
        return isset($errors[0]) ? new WP_Error('import_slideshow_error', $errors[0]) : $slideshows;
    }

    /**
     * Function to leve a marker for images that are found in content.
     * This can be any string, but it will most likely be HTML
     * * Idea: this could keep track of image names that JS can use to search
     *
     * @param string $string - A string that may contain an image to be replaced
     *
     * @return string - the filtered string
     */
    private function stub_image_urls_from_string($string)
    {
        // First, replace the media upload url. We only handle images inside there
        $dir = wp_upload_dir(null, false);
        $string = str_replace($dir['baseurl'], '{#CONTENTURL#}', $string);

        // Next, attampt to parse the image and find it's name/slug
        return preg_replace_callback('/[\'\"]({#CONTENTURL#}.*?)[\'\"]/', array($this, 'format_image_stub'), $string);
    }

    /**
     * Attempt to locate an image by the image filename, and if not found, just update the content url
     *
     * @param string $string - A string that may contain a {#CONTENTURL#} to be replaced
     *
     * @return string - the filtered string
     */
    private function restore_image_urls_from_string($string)
    {
        return preg_replace_callback('/[\'\"]({#CONTENTURL#}.*?)[\'\"]/', array($this, 'unformat_image_stub'), $string);
    }

    /**
     * Used by a callback to replace images with a stub containing the name and title
     * Makes it possibel to look up images later
     *
     * @see stub_image_urls_from_string()
     * @param array $matches - The image
     *
     * @return string - the filtered string
     */
    private function format_image_stub($matches)
    {
        global $wpdb;
        $dir = wp_upload_dir(null, false);
        $url = str_replace('{#CONTENTURL#}', $dir['baseurl'], $matches[1]);
        $content_urlname = str_replace('{#CONTENTURL#}', '', $matches[1]);
        $image = $wpdb->get_row($wpdb->prepare("SELECT post_name, post_title FROM $wpdb->posts WHERE guid = %s AND post_type = 'attachment' LIMIT 1", $url));
        return '"{#CONTENTURL#}{#URLname:' . $content_urlname . '#}{#filename:' . $image->post_name . '#}{#filetitle:' . $image->post_title . '#}"';
    }

    /**
     * This is the reverse of the above. IT will attempt to find the image locally
     * {#CONTENTURL#}{#URLname:/2020/04/imagename.jpg#}{#filename:imagename#}{#filetitle:imagename#}
     *
     * @see restore_image_urls_from_string()
     * @param array $image_data - The image
     *
     * @return string - the filtered string
     */
    private function unformat_image_stub($image_data)
    {
        $filename = preg_match('{#filename:(.*?)#}', $image_data[1], $matches);
        if ($image = MetaSlider_Image::get_image_ids_from_file_name(array($matches[1]))) {
            $image = reset($image);
            return '"' . $image['url'] . '"';
        }
        $filetitle = preg_match('{#filetitle:(.*?)#}', $image_data[1], $matches);
        if ($image = MetaSlider_Image::get_image_ids_from_file_name(array($matches[1]))) {
            $image = reset($image);
            return '"' . $image['url'] . '"';
        }

        // nothing found, so return the image relative to the new media directory
        $urlname = preg_match('{#URLname:(.*?)#}', $image_data[1], $matches);
        $dir = wp_upload_dir(null, false);
        return '"' . $dir['baseurl'] . $matches[1] . '"';
    }

    /**
     * Method to delete a slideshow
     *
     * @param int|string $slideshow_id - The id of the slideshow to delete
     *
     * @return int|boolean - id of the next slideshow to show, or false
     */
    public function delete($slideshow_id)
    {

        // Send the post to trash
        $id = wp_update_post(array(
            'ID' => $slideshow_id,
            'post_status' => 'trash'
        ));

        $this->delete_all_slides($slideshow_id);

        $last_modified = self::get_last_modified();
        return !empty($last_modified) ? $last_modified['id'] : false;
    }


    /**
     * Method to disassociate slides from a slideshow
     *
     * @param int $slideshow_id - the id of the slideshow
     *
     * @return int
     */
    public function delete_all_slides($slideshow_id)
    {
        $args = array(
            'force_no_custom_order' => true,
            'orderby' => 'menu_order',
            'order' => 'ASC',
            'post_type' => array('ml-slide'),
            'post_status' => array('publish'),
            'lang' => '', // polylang, ingore language filter
            'suppress_filters' => 1, // wpml, ignore language filter
            'posts_per_page' => -1,
            'tax_query' => array(
                array(
                    'taxonomy' => 'ml-slider',
                    'field' => 'slug',
                    'terms' => $slideshow_id
                )
            )
        );

        // I believe if this fails there's no real harm done
        // because slides don't really need to be linked to their parent slideshow
        $query = new WP_Query($args);
        while ($query->have_posts()) {
            $query->next_post();
            wp_trash_post($query->post->ID);
        }

        return $slideshow_id;
    }


    /**
     * Method to get the most recently modified slideshow
     *
     * @return array The id of the slideshow
     */
    public static function get_last_modified()
    {
        $args = array(
            'force_no_custom_order' => true,
            'post_type' => 'ml-slider',
            'num_posts' => 1,
            'post_status' => 'publish',
            'suppress_filters' => 1, // wpml, ignore language filter
            'orderby' => 'modified',
            'order' => 'DESC'
        );

        $slideshow = get_posts(apply_filters('metaslider_all_meta_sliders_args', $args));

        return isset($slideshow[0]) ? self::build_slideshow_object($slideshow[0]) : array();
    }

    /**
     * Method to get a single slideshow from the database
     *
     * @param int $id How many slideshows to return
     *
     * @return array
     */
    public function get_single($id)
    {
        $args = array(
            'post_type' => 'ml-slider',
            'post_status' => array('inherit', 'publish'),
            'orderby' => 'modified',
            'p' => $id,
            'suppress_filters' => 1, // wpml, ignore language filter,
        );

        $slideshow = new WP_Query(apply_filters('metaslider_get_single_slideshows_args', $args));
        if (is_wp_error($slideshow)) {
            return $slideshow;
        }

        return array_map([self::class, 'build_slideshow_object'], $slideshow->posts);
    }

    /**
     * Method to get slideshows from the database
     *
     * @param int $posts_per_page How many slideshows to return
     * @param int $page           What page to return
     *
     * @return array
     */
    public function get($posts_per_page = 25, $page = 1)
    {
        if (!$posts_per_page || !$page) {
            return array();
        }

        $args = array(
            'post_type' => 'ml-slider',
            'post_status' => array('inherit', 'publish'),
            'orderby' => 'modified',
            'suppress_filters' => 1, // wpml, ignore language filter,
            'paged' => $page,
            'posts_per_page' => $posts_per_page
        );

        $slideshows = new WP_Query(apply_filters('metaslider_get_some_slideshows_args', $args));
        if (is_wp_error($slideshows)) {
            return $slideshows;
        }

        $slideshows_formatted = array_map('self::build_slideshow_object', $slideshows->posts);

        $remaining_pages = intval($slideshows->max_num_pages) - intval($page);
        if ($remaining_pages > 0) {
            $slideshows_formatted['page'] = $page;
            $slideshows_formatted['remaining_pages'] = $remaining_pages;
        }

        // Add the total count so we know there are more to fetch
        if (1 == $page) {
            $slideshows_formatted['totalSlideshows'] = $slideshows->found_posts;
        }

        return $slideshows_formatted;
    }

    /**
     * Method to get slideshows from the database by term
     *
     * @param int $term  The search term
     * @param int $count How many to return
     *
     * @return array
     */
    public function search($term, $count)
    {
        $args = array(
            'post_type' => 'ml-slider',
            'post_status' => array('inherit', 'publish'),
            'orderby' => $term ? 'relevance' : 'modified',
            's' => $term,
            'suppress_filters' => 1,
            'posts_per_page' => $count
        );

        $slideshows = new WP_Query(apply_filters('metaslider_get_some_slideshows_args', $args));
        if (is_wp_error($slideshows)) {
            return $slideshows;
        }

        return array_map('self::build_slideshow_object', $slideshows->posts);
    }

    /**
     * Method to get all slideshows from the database
     *
     * @return array
     */
    public function get_all_slideshows()
    {
        $args = array(
            'post_type' => 'ml-slider',
            'post_status' => array('inherit', 'publish'),
            'orderby' => 'modified',
            'suppress_filters' => 1, // wpml, ignore language filter
            'posts_per_page' => -1
        );

        $slideshows = get_posts(apply_filters('metaslider_all_meta_sliders_args', $args));

        return array_map(array($this, 'build_slideshow_object_simple'), $slideshows);
    }

    /**
     * Method to build out a simple slideshow object
     *
     * @param object $slideshow - The slideshow object
     * @return array
     */
    public function build_slideshow_object_simple($slideshow)
    {
        if (empty($slideshow)) {
            return array();
        }
        $slideshows = array(
            'id' => $slideshow->ID,
            'title' => $slideshow->post_title ? $slideshow->post_title : '# ' . $slideshow->ID,
        );
        return $slideshows;
    }

    /**
     * Method to build out the slideshow object
     *
     * @param object $slideshow - The slideshow object
     * @return array
     */
    public static function build_slideshow_object($slideshow)
    {
        if (empty($slideshow)) {
            return array();
        }

        $slideshows = array(
            'id' => $slideshow->ID,
            'title' => $slideshow->post_title ? $slideshow->post_title : '# ' . $slideshow->ID,
            'created_at' => $slideshow->post_date,
            'modified_at' => $slideshow->post_modified,
            'modified_at_gmt' => $slideshow->post_modified_gmt,
            'slides' => self::active_slide_ids($slideshow->ID)
        );

        foreach (get_post_meta($slideshow->ID) as $key => $value) {
            if (in_array($key, array('title', 'id', 'created_at', 'modified_at', 'modified_at_gmt', 'slides'))) {
                continue;
            }

            $key = str_replace('ml-slider_settings', 'settings', $key);
            $key = str_replace('metaslider_slideshow_theme', 'theme', $key);
            $slideshows[$key] = maybe_unserialize($value[0]);
        }

        return $slideshows;
    }

    /**
     * Method to get the slide ids
     *
     * @param int|string $id - The id of the slideshow
     * @return array - Returns an array of just the slide IDs
     */
    public static function active_slide_ids($id)
    {
        $slides = get_posts(array(
            'force_no_custom_order' => true,
            'orderby' => 'menu_order',
            'order' => 'ASC',
            'post_type' => array('attachment', 'ml-slide'),
            'post_status' => array('inherit', 'publish'),
            'lang' => '',
            'posts_per_page' => -1,
            'tax_query' => array(
                array(
                    'taxonomy' => 'ml-slider',
                    'field' => 'slug',
                    'terms' => $id
                )
            )
        ));

        $slide_ids = array();
        foreach ($slides as $slide) {
            $type = get_post_meta($slide->ID, 'ml-slider_type', true);
            $type = $type ? $type : 'image'; // Default ot image

            // If this filter exists, that means the slide type is available (i.e. pro slides)
            if (has_filter("metaslider_get_{$type}_slide")) {
                array_push($slide_ids, $slide->ID);
            }
        }
        return $slide_ids;
    }

    /**
     * Method to get the latest slideshow
     */
    public function recently_modified()
    {
    }

    /**
     * Method to get a single slideshow from the database
     *
     * @param string $id - The id of a slideshow
     */
    public function single($id)
    {
    }

    /**
     * Returns the shortcode of the slideshow
     *
     * @param string|int  $id          - The id of a slideshow
     * @param string|int  $restrict_to - page to limit the slideshow to
     * @param string|null $theme_id    - load a theme, defaults to the current theme
     */
    public function shortcode($id = null, $restrict_to = null, $theme_id = null)
    {

        // if no id is given, try to find the first available slideshow
        if (is_null($id)) {
            if (function_exists('vip_get_random_posts')) {
                $ids = vip_get_random_posts(1, 'post', true);
                $id = isset($ids[0]) ? $ids[0] : $id;
            }

            if (! function_exists('vip_get_random_posts')) {
                // phpcs:ignore WordPressVIPMinimum.Performance.OrderByRand.orderby_orderby
                $the_query = get_posts(array('orderby' => 'rand', 'posts_per_page' => '1'));
                $id = isset($the_query[0]) ? $the_query[0]->ID : $id;
            }
        }

        return "[metaslider id='{$id}' restrict_to='{$restrict_to}' theme='{$theme_id}']";
    }

    /**
     * Return the preview
     *
     * @param int|string $slideshow_id The id of the current slideshow
     * @param string     $theme_id     The folder name of the theme
     *
     * @return string|WP_Error whether the file was included, or error class
     */
    public function preview($slideshow_id, $theme_id = null)
    {
        if (!class_exists('MetaSlider_Slideshow_Settings')) {
            require_once plugin_dir_path(__FILE__) . 'Settings.php';
        }
        $settings = new MetaSlider_Slideshow_Settings($slideshow_id);

        try {
            ob_start();

            // Remove the admin bar
            remove_action('wp_footer', 'wp_admin_bar_render', 1000);

            // Load in theme if set. Note that the shortcode below is set to 'none'
            $this->themes->load_theme($slideshow_id, $theme_id); ?>

<!DOCTYPE html>
<html>
    <head>
        <style type='text/css'>
            <?php ob_start(); ?>
            body, html {
                overflow: auto;
                height:100%;
                margin:0;
                padding:0;
                box-sizing: border-box;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
                font-size: 14px;
            }
            body {
                padding: 60px 40px 40px;
            }
            #preview-container {
                min-height: 100%;
                max-width: <?php echo (int) $settings->get_single('width') > 0 ? (int) $settings->get_single('width') : 700; ?>px;
                margin: 0 auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                   -ms-flex-align: center;
                      align-items: center;
                -webkit-box-pack: center;
                   -ms-flex-pack: center;
                 justify-content: center;
            }
            #preview-inner {
                width: 100%;
                height: 100%;
            }
            .metaslider {
                margin: 0 auto;
            }
            <?php echo apply_filters('metaslider_preview_styles', ob_get_clean()); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
        </style>
        <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
        <meta http-equiv="Pragma" content="no-cache">
        <meta http-equiv="Expires" content="0">
    </head>
    <body>
        <div id="preview-container">
            <div id="preview-inner">
                <?php echo do_shortcode($this->shortcode(absint($slideshow_id), null, $this->themes->theme_id)); ?>
            </div>
        </div>
        <?php wp_footer(); ?>
    </body>
</html>
            <?php return preg_replace('/\s+/S', " ", ob_get_clean());
        } catch (Exception $e) {
            ob_clean();
            return new WP_Error('preview_failed', $e->getMessage());
        }
    }
}
admin/slideshows/bootstrap.php000064400000000571151213254570012556 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Use this file to load in models and libraries.
 */
require_once(dirname(__FILE__) . '/Settings.php');
require_once(dirname(__FILE__) . '/Slideshows.php');
require_once(dirname(__FILE__) . '/slides/Slide.php');
require_once(dirname(__FILE__) . '/Themes.php');
require_once(dirname(__FILE__) . '/Image.php');
admin/images/upgrade/vimeo.png000064400000622037151213254570012374 0ustar00�PNG


IHDR�w�)��PLTE		����'w��ud$,\QDi{U�c}�>o�<SF_�����w��Y��`��c��z��l��s��Z��d��������~��
������V�����|��h��p����ʗ��ө���߱i��ۮf��تˠl����ŝ��p�����}������������������
Φǜ������u��������͌v���Ÿ
���S���ʓz��ÿ�Ɠ��—�����ʲ����#3�n,�vwh��
ң+8ndLK)8Nz�&���Ȥ
[SMW AI
��f_zp	�n1> �}�~	��GP��g���4<��ױ� -684ok>>dcRRBO#^]
������?KdU7F 1�suq;C��.;6/@ %%n[TZOS6D
ͫaf&Z`�yHBv`��)/������ٕ yjjV_' 5B;��np(Fv�{x%ä33Xe8��сp�����8J,VHDT/\Xdl3VcM��&N\0)9%ae\#*dpH��$��+��!'=B&,*ot;L[@8IE{|:JUN���A>5��3jqd�����{wzSΰ1BM?Re^B4$37Vpj�!~���
c|vJ^������B`\w�u�����-`F)*+��������܋�o���1MR��I��d�����^��Fl��=t���F��Emϻ�����޻�}�_tRNS /\<MjvՉӡ��Ρ�ˡ�Ϋ��2 �IDATx�������`����a 8����H��\ϋ�욁n�@D����'4:=K�,õ��ػ�:�!���b��~�$�q�3_,>]�#q2Eg[�y���nKڋ�[�4�|�p&ez�F/��\8kϘn��X�:����
f�c&�}8��[�Z��D����S�Ɨڋ���&�[�Z��J0��K�`�5�K������XwnC-Q�Ե�W�ۥ-�3h$Pg��H5�6{%��9t��_���Ԕ������N������P�Y�ab��^���\�����Xù@\��iQG�X�Ur%o&��:�A=�����6d�+�?'u����bSE(U��jP,;>����4���4��%H�??18Z��Vty���LI�>���)�[��r�H,��ޛ;@�Qݢߤ��՝���
���բ��R���#Due�wڂ��"�CMTE �UN]�_���(N�x��'u��9�t~�(����"��@͝E��v�p���1�Ap�1���D
+�k�OljF��uT3��C=���{Vڀ"�awF�1�c	"f<��6�Z�Td�Wz���ʵq9$�2�uzT/��������r�Z� �m����>�IW�oL�Le?R�2���.y�5Bُf>LM̠VPk���GY
[�4�l�3\(3烛��F�fN4U9���x*�,��"�Gm?���%�;���� CQ�?�Eu#]`���5��LO��J���3.����,qЌ\��tK���')
�\��(�;m�K۶Y������P�D?'�D�A�PSԌ��p���Z��
xP���Z��Cs\(��i-����")cR��r��$��m���E�3e�|�_z^�5+}V�!ֹ��J�^���n�O8<q�����ijMZ��+LŁ콜"�����L;���&���"X�NH{z
ǶO��bd��L����5]�Y������v�b��(�C�׍	����))�F=�d�#3�V+��Ԑ�����x>��J�
��/��|��\(<ǹ���%��y_��w��C�$�
�P4�B��K_���7�t9�
�U�%5q�Q�~�P��z�o4�v��g�������x}�9�<�l0��1�G��=�E�K9�~�P��������m��3�6o1�Z���idLW�mᵲmRv r�T�;ݡ���W:�y',OK�d�c���a��4ud�U����rj�pAAT�e�l�C}��Zcdc�,k�0!��EZX�ZW['5�[͞)F���cs��X�C��ر
����ͫP�R�Rl��(�U�HH뻣aZ~j���i]�,��"Bk��,�;Uz��X|/�O�bM�ȴ>��QԐzq����;�8�߮��B��H8�⟡5�B�-˖Gϭ&q*�z�I��
t�uŴ��hE2bYq�Ů����	��p��x*�A��l
�Xޏ]d;���vd=�b�+�%�RV8�=y��/����Q�E�"Ѵx�r���9E��M˖uL���B6Qԃ���+b�:E�T�98�,ֻ���/}o[��e8g��a+F�ƤEXy"ӲIk0eaY��v:�2&r8j�(��u�.�W�X���ū�D�Mm^#?�-�¬<HR�`�o�Gԫ�
D��$���-�)�C� ���δ8�-=��L����&v�y�.aռ�$���\,H|+<�����@ŕ\��S��G�-2���ea[ѳ�Ә��∩�
oŧ��]-�����#�(x����4��ajJ�j2YX��~��B�����x�o�����t�"��x�R�
����I�ӁA�|�w�\3ӕ�pv��	ݟ���-/*|�q��_��Tl;j��[lH�ײ��LuaW��s�?�x�u�I�wg�"E�a�LDF��Ev��5�5D�-|3��E�D0�XQ�@LV
\�L0���ڪrjf4��������k�;���'�Ljz����!�ԥ�~�l���L�$�j��>�����ϕ:�y���T� ���a��<q	iAT�&�bL�_f���`��1,{�C*���O���=���-������#���ϐ���>s#+�(���F��-"f��2�
�âJY\�����~���#6Y���tD�_��d���
�jp*Ee]Tm��e�à�N~�7�]����������|D�,�y�W�ar3�"~��WF���������R#�'�K�l�.�Ix,�0i�q̃f��FI__�Z0�UMT�RGq*C�2�=�R�)�T��~�%�-�#�xllLJ
b�ŋ9�J����Y��O#,-�+,�E	˄����/�g�w1K'�!�G�����Z%F�d�H�pA_�F��$v۾f��bR�4S(K�J�1U
�f���/�/+��\�><)��i�4�#~���,�J�"2+��؂��z�E��0�?֋��-*�S�o��͋t�>���;vK_1j$�
h��JhRᇚ�\6�I����V]�T��

������j	qɳQu��ЦZc�Pia<�qG@VI�^ ��ԓ"���\+�<������C��ڕ5�bDh0�B0X��	os�c�Ո��}u�x��o�8�+O�";"�"�{��A\*(�����w5�EL��Sem]���Boq�m��}�ت�<C��T`�C\u2mE�b�5��;�5��U�L��#�Z�Y�>&2�H�=hMU
-z�8�5ɫv�*"�rX��֊�u'k5p.��5���u�?�k�5�x����|u�x�]��]yp��bؠBMx�ˢ!!���'O�TiK�꺏K���kU%DR&�� �嘕�5��>gi\�@S�T�=��d�c3���pU�U�i�
�I��K�ڬc�1�jR
6U/Ɗ��[6��������A�J�2V<�U4�?<��V��م+�u{8?S�ʤ%�U�E�m�0��,�2bl�e�t�����+�p���˷�<��a�v�d�29ྒ�EUPR���D��k�US(�<k�0���R�Z����7�*.�aQ�rv��P��e�ϙ5�>�wd���YF]Ж\0V�$�n|��p��*�։VZ3l!��g��*�����h0�/����Bg�MG�e��������:�q��y_�[Z�r����HPZ�JK2�;C�H�I0fU�$�GI+��z��6<c�QHO_4��,e�P?�d}n�/�)�ܹ�e>���R�
_��^���^#b��<�H�UZ�����0�DZZYE��jdWy,��:=���i�Rv�)�#�D@��éy��M�&VS"��R
�-CK1k�*>���S	ej[�1F��"��\Ss)')g�H��;�e�Ze��N��e�A���ǘ��N�q|�8�9�5�[wġRx
Q�0]�?�Jk��Wi�[.+V���aA1������%��y�G�:}+t��rp;Q,�鄓ZKVCd)�cBE.���Y��E_\�@?i��u�˜U`��1��k��Z��X|��)�Ъ�!!.J���
��-�RO<�_��F�ʢ+�[[e�}r���XV9�zW����BC^�;��Q,�t��9�%���-Һ�;i�_�xx��7�q^��!����ͷ'ì�y�e�K����[������^�ii}���8:������w���&��
�$}-J.��g*\�����S-i����u���|J�O�¯]�e���<H��ZJX���XE��T���^E%�@[���Ϧw�T�`|�X��n<���aG�r4�G#�i����w*�[��֫�`!���O��o���~}��m?�֓�%��m?@Z��`�x�v�W��_��?VJ8�^݅�6XA�H:WM-�0Tg6���C	FI���В�6kdT,���5�
Tac�9Y�%N-�r��d�V�-��1�q�wɣ��S�O�0+�Շ�-Ɗ�s�4����;[ ��GWBSDJY�Pi�n<��lv�;D���n{�1Z���7?�l.g�ٵ����jU�BZ��6�#�Os�������s��HZ_����v���?�{_3i�<_�t�
�,k��D�y�X�b�:+lK&��IN�ѕ��/��_�u+�S�H�,�f1qaȂ���5�@�}���v���}��{��J�H�[�	�Q��2.)3s>�f�������Ιs$[�?fFG�߆\d��	;6AԨ�O��\|(�S�f��> T"&���z�b��Bt�-�/Ii�b����p�"K�d�40�c<+&K��p	ô��a%"6�ʕ�I�$��E���v���k��Z?kZ�tyu�ؼ���e\4m��o�]Id{{m�I�n�un�o��.Mr�VY��f�`ۼPb�y������z��4��Z;�vܦ�QpӶ|]����o��Y��]M�E�,�L�����R���N�'�Y#ȥr/\�3�%��$C)b퇡�6�LMD�h����k��-��9��Y��,��Z.�f�E�B�$�a^u�
�Il�S�r�]8j�ӻ�R�7�9lR�,KZ�~@`ˑ˃˦�~�g�DZ��KC���5�B�񠅧mZ_M(����2�.�ϋ�*n,w��gv��V>M[e
��������4Y��h*���t�yޥ|��B�>~~��L�N۪*�i��Ŋ��8L�4y�<m�i~&����t�m )�]6L"�Q�g-�T���Kڨ��n�[[E㿹��X�k��/)40���yW�?_�&-�G�cR��` "-k�)�F��4g�TJ-��в�"� ��0�&�P�>#CJ�-�Bh8�Nr8�Rpف�o�D0�0�Б)�T��֧A��-�z��K����}�עL�br��7�]Z>�҇�x��B���e��M�Ak�|#��-�B�h����e�o�j�\��vZ���CB�z�k���0I4l^�XK_Y�Ҵ|N���oS�����5����w���O}��q�;���,ŕ��FZ�L~�Zb5��22?p+���Sw��@KP��~������`)BC3�)��fpU
(�ÀWי;��B��q�.$�G�$]���dh�}=0�-q`�h�o���IkZ�[���- ��
[��8�ִ4�2�V�OE�x�`hjWUZ�T��:}�ZD��v�>�q��ɪu���8!����)����L����|��$~M7����`h%�g*Z���d���S5��E�]��Jj�w'�<��/�|�ſ
-���!F�X4F�?��[�����tE6%<I�w4
����„��8��.�cb���0r�V�^L�t��FY3oj���$�[L�1f�R|��$4�,���&rey5�{�"�/���GZ�t�������:���
^�6ah͓�(�i\P–$�,:h=M�d��P,u���~/D�{:�O�Z�dr�5���]uZۖj^M�L�ɖNy||��o���j
�Y�䛀@-`��ND��/G,DQ��E�^a@:����G��8��u#w�?�˟��LA�<T8F�T�(�F2I&��b`�����
�5>�`���
,/>��}�B�B�Z4|B� ;.“���,[�B�֦�~��$���Z����>����9h%������J�Q
�wivC�zر��[�����C@�!h���H+K��zwZ��;�'C�v�#5��zh8=\lZ��Ӫ����}h}�Ky�����
C���8x$�QÙx'0���$����*Y�I]�=�(ca��k`�~�����`P��E1�h��e_�4��d#iIX��,�`r��HT��(�x�9�KɅXJ-���_ ����%I��d�<p��$A�m-�B��(�D1�����U�gu��>Sh��a�E<*&C����6�Y�ј��6�&�xm�Z-��[���s�j���}��<i=�8zʓ}*����F���q�8=䐬J�O���s�����qzt2{ԑ���w�~>�&��d��N_q��R��������i}�Zh�`�/���٤�4�`̍	_�B��}N�����q�� �X���,8X\�G]�D:R)��_h��p��PN)���9���2^S�)hh�0`K�EQ�gy� a������u��e-:@�ߪ�h���
SYZ5�fZ>����lI���0���Ӝ�}��Ӗ2дY>��)�+�ch�)i���g�	m�+�`$}���G�F�„G{bWz���%sM��ԁ�C�|C�=�
$��@$M	C�Οu�Lpl9P3�1
�`���`&�d�Ƞ�\	��K��B����uFn�<��H�}��`�9�%[2��K����p�֛{�#�=�.Y,�f!�r5-���=��I��(�K��Re��v
�Nw�pI�,�Pۜ��{L�+ڳI��ҹU�#�����M�Q�r�^zH_BWYǫ�?6}��/�����E9=�Э�*��u�_?C�$ig}8��0ki��Z��LG}:߾�w#ӧ�����e�z�œ��C�|R��yr	�FJ�F�dn�f(4r6��a�I�FiZ���5ohN�^�sc�e���&DA��^�禿��-A�z����r�,t'^�sвԺ�J|.�YZ�к|��<�K�ټ.k*�gTBz)��Y-�e�O�u�Ϊ��'e�GA�x�.��`�r�=N��2��\��l���z��¡%��u�|�,�r��mB�(�߲ru3�k��,ަ���������,���A��!ԭ{ēu"�΁�T��a��F\➔}�'�C6	E
*�
Tp,�!��zЂ9�x��kD��d��F:p�k�剣}n?����]����-�f��ՃcSFK6�X�]E�3�/�8�,6�J�rK���xWh�Z�8ϧ0���K���no0��gx�xo�&n�$�2��
N�S��c��װ��(�/J\��BAuM���q@q��#B�eg��/_�r�r����U�}��,��"�M��Y��ԣ��@!� �%���lFH��OܱDŽ�F���K�=�)�,8d-�؇~�%�̋N5�G^o�e�F� ����ٷ�\�Ģ)�-�y[���Ę��C�,�0՗Cf}r9�
�H_�8���o��SVi��+�,�\��9zLR^Zb�T��U
*�������#��5��f��4���KtG�|�J�eG�x#��@��;ī.T��[$|��qq�jc7b���ge0��3CIqR���{T�S����W?�5�BL�E8��t�J� -����ί|�u�,�ǖRK��غ�[���i���g_��G-����uS��?\j)��$�;ʫ���
���@�g��b6��������.i��ũÙ L5u��B
C̰�T�DO¢�)lL�g��N��iW�YD��!��0��/�����
��f�̬ӲI!0e�I���A�%˶�Zn�ep	���[���в�f�E�̥�����q��0px��H&�|n�U8
!w ���DT�7��.�͈��_��궑�]����PTˁ��_�g�������=hQDz�ߎ�X+lvx�����h��Z�r���":Ɩ�mT��$�A�E�l4����H+A��Wڔ@+,RCA-
�Dk����ٸ��u+�bU��7¶Y�*���*�+[Ϯ��a�"��ÔT�K8eybG,�	��e]�V�`�†�Bme-�u�%�׻.��I>`��uG%�"��S�Q�H	����Νk)<[�k�(�Ŭ�SpN"b���LZp�L o,%��Q-֚uNX$�\rD���g�ڛ��V�'�_0���ʣ����n��}]c��vs�S�Q��uyF14~$1"-�Ť�V�[�c�ǡV�j�QhݝR�=��h��;��?xG<�2b�X5g��q\�q���0���Ǐ�рAy�&_���	�j�S�A��q��uvѬ��Ld�����킦F##�4=eiez�z�C"�&��sE�wM�j�����4-?������jf[P#-$M�j�������被�ҮFZ8�"�R�,iw C�KZ@K�iwZosW��>n�WT��*pd+�&�b��j�����)�O�Yq�T�M�L��K�X��C�]?�;�>�B-<9X%��Z��P&���7�F�E�
ᨽ[��b"��ƺ��1�+�A�1)��fkQ>�t2�e�"1�H�E[�^=`��S�gpaiQԺC���9��֣��%�{��ė��XlT�� )�o2�/ȅ�3���.e�)J�^E=,=�w"x�b�ZW�V`�[�M,�Mi�6�8e1���Eg�5|i�8�%{^��wM�_��s�m�\ƪ�ܡ��)�3�����x)^<�����9�:~QZ��zb�Gz����ɡ6��-�޾��և���2�N�MI�� �f����ZW�oF1�D�"��D�LhΚ���¥ᗆ�"9F���ǀ�',�"/T�>/�t�-/DV�/�C,�є$>��x�~�7�^�/��+f�Y̞a5K$֪��Q�j-���s����ayYM��u���9Ԃ�`+"�{^����?�w���	��9�@#�R�&��������"V1�6)6�Ztf��lm�9#ʻ���QlM�y�RE��+_")�W-~F���B��.��RH�٧Jk?"��.UD1S5�U�:�o�&��tQg�jrh^���Q�UyU�D�U*�'Ԋ�P[Z
-���+��6��N�]oѣ��fDS�e�R��
&��$�K�g5W�L����+��>���&5kX�`v�I���<q1��H�Tkk�+'[��f˥'�Rh���on^Pl�i/�ג�"F���iW��O��M�ٞ��q�F�>�ڿ�ؔ_S�Cm�>"�Ժ#5-�{xi#yڬ�E�~Q|�sn�m����5�m9-�R;��UT��1l��m���ih�GP���w�9���p�vB�h������ב����mx����FT�.CH�	C9��U/�c
����It�y����N��E��Ɇbpː建hj�&>]zTfaQ�RC1A���ê�Y"�Ezxv=�rrH��М��*�+��e|�!�9���f��jdY��������"��*8Ťh!ؚ|��'^�
����9
,�e�U-Ƹ:ZLN����i�&F��է6�'vig�ؗQ�49)b�'82���u�UHq&��!����@�ܹec*���!/b�DZ9=|D�u��x�j^�Դ<��z�R<J�zq�RbhD������
1ц�:s9���v��]�e�g�ںs��Tܥa���:j"���z(EL���w�۳�I�.�����cN�����JZs�4E4�m�>���*=_��&��`�#c���-"A����h���/��Dq ��Xa�QQK�E��!���i�=d�K,��+� ԵX*�q\���>�$���ιU1��ѱd�UQ�"C�Ơk*��5�s��d7��6+�Lu�%��l�=����1V����b�Ewd6�s�Ƴs��k�]�]y��+�f�I'Bᬙ�[�v���VA��­��B��\m-�؍�8�ʶ-�UC�c�Hк~��/�Z �DZߙ;�+b �[�n}	>4��A�%�Kq��?�u1u����t�����T������d�j5��OFW^$��nW�p��V���+���VZKt�!�"@�'U)i��c?��3�.<ο�nf-\��ݏ�W�4������m�fs�ɉU�Z=+��v^��U1V�l��B,C�s�����ʹ�L��	��\�꩞�i�wz�fZ���B-�2��?_��a��( ��|��v]����&�¢�pb]��*�r�$�l��T��_�R��c���t((�#�D
)�Y�i�6��[j@��\E��:W�%c�\���1�*��V�����4�Ģ�ܢ�%��,܄�Oq����0���y�s�UN0�"��3���qkX�I��U���S,1_dZh&��dT�o��~k�\�~#.0G��}�w�n�w��� 3��=�*��i�\���"���N,R���Ѧ�h�E��!���\�.*F����d#��y"�iC�lbW���n�
�V9�C���"_2�9�\ї*1���%Z�*���adZw�Of�Lh%f�Wj�ɥb
�`��ZU��W���7�����eh]�T��W�h�@��W8��|���*��`���V9�l&P����ꊻ�dJ)X4W�Z(�&���낁4���6�cZp<�����m�+�԰:��@�ʙ���˶j��e5j��j�H����O�w�iEy����ei$>s+�
�pU��G�� �8UX��g�Ƅ�e�X��,D���#hu���|mk
�m}�gH5ƥ�ea�X�
�mD�AE�EU�W!�Ҝ�ѧo�X6V��<h�y�
->Z7��+�oP�[݀��ˋG�p褻.��O䛲k5���Z)R��KN>?J�,K  ����4�~�,b�R_�%�kZS�u�3��6ͧ$|0���Ex]9�V�Nф)u�2R+:L���%R�b�PՈ	,s�H��&S�W�U�s����+=q�U��	B|Z��/aV8��1�w�.bb��"�Z-{L�6`5zЦ	�G•^���J��U�m�� >i���Ͻ�G�a���RGn��I"�r�J��p*����*�R����̒��i��V^�—�3R��+Xy>tH��]�}�b�
2�,�z����B��D��&��͇�R�&�jV~��$)��{�V��7�r;VE���̠�GX�%f�A�	��{V�:�bF���7�*Di�K�홈T+��Qh�T"'Feۤ��kki�kz����\�r����ѓjdZ�@���S}���jy8Շw���L�x*;`��Y��a&����խeV\�T2��y���i���QaU��-1��U�MW�e����wG��ۗ�y6�*�e���w��ӵ�nfN޵DF�(k-�<������m]��U�ZV��X���'�{�է�V�X�}|z�Z������v(gX]��[�F��DI���f�P�kʶ�އ]l
S��hM�����5�
�Z&=aD("M�*��E���k薞O-CY��������J@�atŐA�«�@�"�z���PZ�	X]W.�U�̞��w��hUm�V�@W4s��Z���V�Jn\W_�Z�t'3[�W�(W�U��^=���[��ֹ-R-ש�*Z��<�%Xy�s�9x���;�j�����L	LВ��������ZۏE���(��	��u�9��ԱA�v��k�ƕ4��.'/�]i(VU�$�aN�U�S.�_3����?+�̭m��4J �KZ}#Ԍ��5��0%j��V�`-fK77L���v��ɃG�+��.M���㛇/_�y�헵mY��8�9��鲜X�q�H0��z�����w�Z}����jiD�A�V�w���iQ�>��w�*�[�aѣ�YE�u���0W���BtK���H���WE]��6���~^���@V����6r-FC�-2������n�0�4-��4�Ex,��Y��u��Ѻ&�r���/����m\�l��4K7��~y��͛��߿����ͺv��,?}1����xVʹ|q��Z�G$�'V��F�(?ӣK��^N#dʦL��'ͧ���3��e1��XD���%�jP�����4�zpY]�Z{HR^%�D�{�@_��m����W9�P+.#\|k�/Q&޾�M�Ը�Si�\X����[٣���4]��*ֶ0*�f��.�t�n5x���u�3�7�Y?~�|�֛ׯ?��v����Q�����z�+_���D}��N��lI�������>�J��Q)N���j�@���ؒ�b%�.[�\��{���u§��n��6��U���=Y�JB�**?"\c@�Z��o^��z�m kt�K��FIE�0�W9���4]��F0gL�a	�������sC���^s}0�+u痣D��D�}5�l]�U4Ę����#�C�x���
{O��������)gp�D�����g�?�R]�3;;���"*��'�#B��Q�H��)gdY��~��^OKjI�=�r��ld�j���ӭ�n��{hŊ|�򐼲0`�og��DM�:jZ��E��C@+�1���mŠ�'�Z,�;�s\� ��GY�c�ʼ�㌓����A/])N�Z��)+�2�� �TZ���_���&��Q��s-92���ī:�'�Լ&G���F!�"6M4�+�0Q}-JG��(��:J�*�9_�81\�J`ͅV���x��>n��� ���>��~�����V�g��'+i��xmWQ7�j�:�c���/2�������cK_�BK���:���[�N!�Pb�W��:Fl�:T�����e�KnM`z}��ʲ�,�\YZ��/�����Jè��`Q�g��Ќ+Q�\�V��i���Mâ��%M�8���/*S.B�atM�����J�sH�;[��&��v>/�%�d�oo���-�I4l)���]�B-��6CC��]�)<������w�P�\��>n�o�J�]vM+�=|3-
�lfZ<�=Hh�j���"ˈ���D+��!h��ץsz�1�&s5�a�/��2&N`iPdA������"�@ānƣZ�JI&��sI�5"�H<4�RH�2ϴR���Y<�*��(���-�E�<�p���*�h.����q|^Ʊȃ��()������~�:̀-qJ�L;i�v1�R��
�>���2��+�!�A���EW�_�[j1Ӻ��\����ϲ��-Ĭ��������U�Tqwz��jWA/�ic�-fWpc��
��j�X6�Ӝ�BTr�76���~cD�D8)���ƒOM3!��%+��b0jV��'���ֆ�O���Q�2�43)���j�bǐi�ϝ0�S:H�j%������b/�av��!`K4{���)��lk����ܛe0����.x����䨅�uf�<=fZ����x˴.w���F!�@_�w>����,�z"���T�
4=�J�Ps�E�v���5�^�
V`��7T���7X�kF��^Kjꕪl�6?��]J$��C9Q[�q<W?�a5�1`$�hT����`���p��n���n���i��8���b��1�bN���?
��|���{Գn��mv`^?e��ZQ�R�k1�-W���O�ׅ�<��}h�X:���C�gZ��ߚi=|��Xy�WИ�',lzG�Y��%Nb!V^u��1d3�s+�;(�4kZ�f�:ea5�ߠ�fS�,�f��<q|I�W����h�<!^8�FIِ��J5h��B�c�U�?�����V6,��RZ��B_���|����O��"����`�{��6J��rD?�/@��'��Y�ub�-)-�tQ��}�2d)���VZJ��C��I��-�2X��S�X�|�M:8㨢�eq/C@����x�ʳ�
���fi ��$�U����{8� 
Q�*���n��u7_߇E�`�OTVa��t.�j*��uv�=r�贈f|M��n+�N]�oA��G�ڗ(�o?��fq���,���f����r#q��Vʥf�[�XM?����xq�t��;1���c��&B����C2�w/{G��{�D9�x����#��l#����J�D�Y4vL3�J�)����>�$L��Cdb���'k�ٟ���m�n�ec��P��"�D+�iE����S�j�]GՉ�(M,L��\V���5
�o�~���k�>J����#�7yQ�_�qӥR�;�˥�N��O�a?��WXTr.���Ӵz��EiN�L����{d�k��)r�򬋽{�ܧ��铇�+�$��64ub��u�	�a��>����!�v\u�ΐ木B@^�j�_�����M������!��\�>M�S�G�'d��B�0�I${5������E��.
v�+��f�9
��Z��ɺP�.���Z��"'lԺz��&-��rI��Z�W�ao�әm�V5�z�I[p����ӈ�e���~K�ձF�y�]�>��#�ʯz^=��@G��w��9t�-d�b!�.��c�E��>u���>�[b�NbٚА��@M@��3�,n�B\#C� M5g�G���M!�Nܢ%~�!̗�[	��ȢR�'5��)�#R-���%�֒s!grw!��l#\�V��}�m*+�S�u�^�`�V��]�V��pX��B��e?��v-�d�����c��q�0}CZ�]�x0K�����'tkDw�wFQ�W��ͣ��J�Y\yb��2pM�rT�W6��iLK���&.�G�*�T
AE��Z�a�C5�E� �J"�6�D��@�@g:�Sf)�$̉���"9K�Ne��k��|��rx_��^���������j:�4�(S}�j��o\��o������,�}��e:d��z�e�v��H��v7LH���:хd�������Z]���C�}�VӮUb#׺�L+�=$���5>��OQ���_�.�V�\���=���B�f$�P�B�V�#V�;�QȦ䀍��-z¢0���Z�iL�L+��*m�ӌ��Y�}�]<��.y���U�	<E�ܓ9~O�=5Nͺ���J�O?3ׂ��v����\�ZL�(�_��R�_!?_�z�������Q�j<�
R�@��n��)ϊ(_��?���X�9�]H��Q�
�C��}��kں3^ǚ.�������m��8/��C�-QIHPq�*Uʉ�^zB�g�Q�gfƟ̟�ěP
����7-�|{�޼O���W�G�7���X��WA�2��]_@*V�����ނe+��?�u�-"�Va�;2��wskM��Z�JC�Z���"^'U�<�=u*�p(��Nu�ג-�=�5<�D���S��T�u�P��u�S	�"�j�M��[ϵ��?��E�9�,Mɍ�	h�c���^�%���&�A6o�z��A�Q���~q����D��>D2���T_
�J�k����
}P+��%-�3
g���񟶯�R�M���ʭH�+ȊƗ��h\��Y�]4(?(X�d
L)��>��P�[H�Y�����ݪ4��_Uf��r����-@AO,O�ִ��dD�E�t
L�[�WU�����u���,��J��eK�O?������'�&�pY&�P���tŞOE:��ê�����Rד�,�����Z߉�V���9���e�֧�I���R�L�7D/�ê�;���r��&a�9�/�R?�ΐ��C��c'��)akͰ04����A���u~�vu
�.F�E��YW���3����t�5M�R����
Ij���"50�&[�~���m��:L�a��-u4�&u��^��K%���^���k65�"����8���"����V�s�+��%�-O��{G|�{�vz�3+��F��Y����*��o�����9J���@m8ڈ�`R�tF�Q{�z�e�#�kK��)3�g�z^f�AT1�p����<^�Ej�.�$��w�$a�٠��������>[l6#���˿�N,��/���j��
�X���Z�0�ck4G�e����9���v�;Q�U����U�b%L9�h�T�����ӯƚäsM?�J�i���6�4VbS�:z�Rv��l�>[�˟b��O0��t��i��C�W��-�_3��Z�:�3��0������]��T�R�5@�n=[<j�E�u]g�Z��5yltD���`��WQ����M���Ć;�yi胭gm�	񘔢B��f���ꈋ��	�\!ڂ)-�t&5i��ӡ���/	�0T���9Wh�7�>��(�i�2)��ƴ/�+đ�DAA�}.�����…�Xg��to*��pҵvz�%䨣�[+�_|�ѡ�D�i�O�[�է�gv�ss���-�nh�,kC0���`/����D�d��g_u��U��#:|��Q��W4X��rtlIq��Y$ښ¬��@��xB�Q�\Fn��k��J���:�2���
"[�^�Hإ�.\H�)!Q�S;��lQru�J�,I�5�)�,��Dן��"#
fa���Y	�{��r%��ݕ\/Ҹ.]��[z���L��z*`ݶ�3�����Y�<@�
��,��h0-��l�A�Y�2tJ�#01��ڍf�ha��&��N�߀^3�*�L��U�z�dSDY�ή�8�v��?�'V��af���.�R<��x��5�X�?^d�?j��;x�s󫛗`˟���.ܪ�0[�*�� Õ�Ŧ+�l�h.	h��>-��ȴ80q��7�".��0r����V��"v��Fi��67�3Ӽ�����,N��'�0?���w�2���WoS^�/�U�ِҝ�!Ҳ[����N�5��XoO�O0Ͽ�7&	I'wtp𪡎?dm=J����q�^�G
�T�tS�I�TD�9^lxb
E+�s-)�L�NyșV�Ycd�b�Ѵ��E\@E{iK���T��r*��H��)�[�e�W�t�r�92-ڦ��"j�'^�;���mY�Vօ�P�7�J]F��~4M��֋a���#P����s��vZc�F������t+�D��u=c/j�ZT�����.yp���C���8Ӫ�i��Y_\ȱ@<�
��7���«<�2LE3\o����xꍍ��lju�h��������ĤG�Uu<cRk�PiL��'���$�%:T-�B*�,a��h���;�D��r���逺'�����s��М�1�e,�9"�&����R�\��d�0O�3�.ak�Z����CK���ֱXw�.oxǜW�����A����v`��"V!=W`J�0s"Z*S/
)��(H�M�9|�^���b�!]ma�phq�8GI��[�
�l���6�D�PPd��܉����[�ޤ�Qr2��;�D�x����d���̇y�T�S,+�BA�-��m�2�����B,o��?Qݧ���B��U�_�]?�=��Z� iN�N���diF��N-�b4D��QĈ�ڄ�F+�[�)�/�e�pj��R+�[c-e�;�$h)8X&�~����
?E(�H���:)|B�&D�~��T�yA�#�;	x3�,��:���E��nɸ�VVB��3hq0s��h��X`k�ʋu����Ǚ�
C;6����촍-��I�	V�f‘��U�B�>�:�L���f�E5X)���W���n4�:#e.������R��Is2����痉5
��0�%)״}���&ЂZXP�6�Pl��?�?8S˰�bQi@z�T�Y�jI�gZZ�Yʬ-V�FԊY�(ߺ��yMk�h=�s��V�51?�J�2�:���l��R�8�n�A֔c򭹓KjpKJ��m���AZ��j���]1��m��#1��S=�!��H��y|�Q��dY�
�F�V�VIW�t��	�V�yY�؍".��V���b��[��P?�>K'�_�����{>#>�=\��<�3��NQ��ʯT313BϮ WzjX��b�\ʦfj����M�ED33���w4a����&.��CS1�������r����-z�L���h/�gڹ]�\�<!�d�ĸ�u�5c0������l�M�|A�K�����XӒy��ힿ4f)��z�VL��9�Ϸ�n��Z1��4�~!�[~G�֤��__dC�lI�	U�Jq�C�pYy�GAsqQ�ya��Uy��4��f"�xN�*|&G��Z�L,�q-��X�Cۛ��^|
Ϩ
��]��$>‡�e^2r�iy��)�l1����WԘ��8<:Rzd7�%8S>	n�.Q]�'�\bq�)^%�c;��ӣ"�,�G}ۉP+�U��b�@�#�nw�?��w����w
����U��F[/
�ȱT����Qe��K�bé}�����:~X����́�(�$�5���[�%EA~!�J�B�$��2��*��Fk�.i�.~��p�Wc�ri
2�M��d�V	g����5ì�8_��m��3�z)��"��Rj=>�W�
������-���ǯj���%]ϴ���C'ӄ�k@-�Ɠ�iL2;<��nCQ�*,\(�e
,I�7u	Z:��t�B�M}���A
�7����iĥH
�'�0T&���ys�]V��[4�b�sT����nH�l��L��@9�ʟ��FE�����=s��X��Т����5~�~�\B�g=�Yz�~n9�p�YS][Xs[��ظ�3���C���
���H��i���gk��:䥬9vc9��Ќ�nbJє�=V~�¥*I�
��{w:��ܽ�W���>��det-��"��13ԑ�G(	ZI��,�R��װ{�=�=~D����-:�(����)FIW�mC�+c�3�Y�,EMCkY�[�&������Φ��p��nS���̒w0>~%y����y�_�"Ur�l�3�;��0ܧՁ�?����X�dN�P��T�T�O��Eͭl>�+X/�Q���j�
'V�?�K�#	ZzQ����BY⥄�Ђu3�E8P������rq��C|��Җ}4�!Z	�OV��GU�
�]I��a��Wƶ.��]����7��@L�\���^�V1�Ǖ6ϱB�U<"t^�z�@����9��:����������neZ��x�l��zT^�iY�~m{�1�R���D�as���"X�6��� �*/��#���)#daW��-��
���n�:�©�)#��.�W:`�˼F~�L�<�A6XU-u�P�=���Q��1,/�)u�+��=z�2��Vs̅�\�0:Nf�+�*]+��yCh�����fJεcW��k\���
��.o@�B�I"�Hy��A��\+��Xw�i�5�Gя_�}�����N�}R`?v.�U�G)�)��!��?UO�L�߇6D��Gˌq�h+��,IZ�DCL?[���[�W�&Z/ǫH�&R�I�9�
@�%	
���a�2 Φ�B�)���y��̜��qQC���U��#k�`����7D��O���`l^��l�Xv��ݧ����W�j.�*�X^�.�"�7ʴ�hM+�=��I�d�&�B
������VK�US2�C���
 �3�\�u�(� �>�,����^�#N{�[T��I}*�پ;c�����z1<YH�A��=�Ky�����U��Az�[�kx[��>F@C�A1+��Ȋ�j�n8���pDh��^B��z�Yf.�xG] +T���D{��y��8}��k�fԪK�>=D�2�/�bvh~��uw�{Ug֯��&�q��z�sbO�z;,m���,�e�*p5���cc�6.�8�pa���p��r�(�0�QҗJDk�*j<��Md�z��`W��&��ƒ����v�݃1m�� �3�b8/�aD"@N�O.�
9u�۬�����z9�Ȯ�t�)��f1����g�iy{��ƻ^��>V_{��P��Z��=�	"3�A�u���{(\R@���U*_2&RJ=��Z��dd��6��廟�WX�����F�$�ʮD�E�o����y
�s��u�.�u�l�`M�
j��ʼn�7�6
��	 R*��r�a,$ʘ�w�
8�(*Fux������W��ώ8��o�IM�G�
�LGY�2��O��͓�BG�ttC��YH<��'u��H��w�l��g4�6D��)��\|@�2��G�=x���"�8!������S]5t���~��]�36K������/A��i����v���
����>��O%bm:�0��=���%<��\�f�ct�ӽ_�sc�H+�Vo����`�ﶗ����vk,� �0
^�#_��2���mzo0�U&c�������z�Z�PB.;8�W�U)|���Rߐ�׷��u�u=7%�z��ޮ�5�I�a���P5b�k?����
����Xo��	ݎ��>CL[\���j��	�M�7����N��ŋ5��m��B�4��V�5�-�7Q��B͎���=*2kM<AMu��,4����k��<Ъg\���h��_�1��*�U�.����_�k$���Dp�	)%9p{b��G�[�����2j��]��5��ƚ.�%��E�
-����|%*�"�:b����	h��
K)�I���n�G�+���#��"�$��E尢��ʸ���{۔��i��1J�s5K%�a�(G�E�Ǹ��F,k�����F�_V���\bYi_�8�;���0��G�!hA-ܤ&В=�V~���SC��2S�K���W�+����jm���G�x��1���l���z��b_P2X4T��Z��ru�R`�r�[��hX��j��6'9�t����.�h�^~ѱE%��S�S��\d���\��quX�@#�HF��+�B�`	����4.�Ҹ�F<2�s�/tl���F��*0�,��F��*���a-�+;��<9l#�fR�5�#ТF�d4�Uh�r�U�vZam]�e�ޫ<�C��@�w�W5Q�m�� Rc���!�rh!8�Q�T#ո̵�`����+d���4��<�P�z���#���+�(�tj�\{u��pV�4�t�a�z5�K�;ѥ�z�uF��By��C RQ�*|�4�Pǧw:RS,*�r�Q��BE`���q%/��x\�_0S�m�b�5+
q`ǵ����L�9�119}�71�	��P%1�H-O��N*�a��x1d�Jo�0;���Mʘ��Tj�c��u����C_�0[H
�`�S\��Z�ͮ0��?��¬�V`Բ���W��S��3c��:��iu�ΪάE�V�Vf��w�u�"��KY(nj�N�߂S�I�"�N�S�9���.(V�C(�D7[�����[�l�XX*���?���f���h;&��3����ȣ��+n<J�z-��4��e�(�(��Xo��o���[�x�5�x5��n>���ͮV�K�2�&�b)����|y|�,6�J��ss�P/H�o͛�RG�B��w_{���ưe�2fi�(h���XK)0f�UBW���*�hLJ��a�6���&��-⃀l�W7"���o*
&�W����O`��Z�����J�4t���I��
ct`Q�ʼn��tfVfjf��F�Vc��$�j�57)/�(�C�*2^o�%�j�dX�J,y9�En+�;�q
f��Ŝ)����5�k�]�U �eI��<٨uk T� ��n\�e����EՇg���˓�ή��8Q���F��o�ÌY��wh�f��k}�n7��J�P��Hs<ڬ�ۥ����w��LP����ps&v�m��ۋD�d��j5���-� ��*�̏��P�ccʹD�p��g�p<��"��	�Z9s������c@��2%.�P�T%�F�prpu�W�����Ր�P3�\nq[]5��N���PKU�\x(���o�˯���6?T���V��M���ǻ�M���2@ن<f��o�Kb�/�-ǩ~�iSr1�G�,"-�F�e�z0RKȒ.�+���+C��ҥ� �<����R�3�I>��,-ֺR�/��:j��cd�GVݝE*���(��NF
rf��T��M�Cģ���+QD��$�!.�n��nېK�a����a��9����ըy)�[a
<���e��P`+UP�,$j�Pԃ�y��*��Բrg���}�d��prɠز�2+�
d9�����p<��։N��+�2���Hk�֩��-���rn?C֛�nh��KolA���2z#��e��{���B���>%vlu����`h�CÙ�'�Z]:��ע'�1��(��!��p�<�j��P��9�h�b���#�*ݎ���R̶c�a�儘�Z�D�IjZi����#j?�+<�2��d��C���M7�4��W�x-_���sWI->E�#�����2l�o��H6�B +AK�,�k�b�-���Yw���F|q:9|~����)qK��T���+?E�@��8"�	�Z�C-1he)���/��QTV���J�CDJ�%hI�
�L�@
�R9*2\�XΕ���絛�gy9?�G���.*��p�AOVt�0�a�\��B�5Ѣf$�h���J�T�E��Bs�
QI�G���eT��v4>D%�q��#�ec������xu��W,;U�%�l�����\ǰ9k���v[���M�8Le/檴�!\S ���t��^��w�uZ���=��X2+o� ��~�qW4�Z–Z>=LI-)B���r[+�N0��-��VÁdVZ��#���{c�5�[:nU{O�?E�R�nH��V���QG�RX�3I41SD\�i$���0Hhc��q6F���8���k�șɬ+����	s�[�9��W�
��'ғIN�v=&QsҌ1E*���X��
��*l��
��,1KC@ˑ5]�����0=?D��
�˻�7���%lP뼘Y�7���L����O)��
-S��2�9�K�^5Y����`í��kLJ�+�C��]e�1p|����㿯�hk�4$G'A��@A�9�_:Ho ��Ct�W��T�҇w8
W���D��/�T���dnQ�L�#�j�B�QL�_�1� b$�l�P��X�5�$&���לZ��Bo�e���4��7sV5z�p�}5z�洚=�:UI0�c�R��q��B,�
h	[ZY�k��$��7�Y�"���:�8,�3,�Yc70Y�j�-�I�>2ȿ�"�O�]�D���Lޥ�dN�Z)�԰i8�D�	�0��-����Q��_�b������	eTM�F'2^��\�b��L�-Z����:K����N�y��VqX���o:��Ӽ��y�V���X�C��z��	Ԋ�e��l��eN���r�0hU������6K͟�ٓ��5�Z6I?��<�cm�Bc6��*��I1W]�y8���˲`oUnG��'*�{��Z'��[fY�]C���w�J����&�S\@�q�[�/��:���L�N��p�ݕ#�jf���<$��d4n0���8Vկ�U�_u�NL�\�@Lx����w�$����B���;$y�I���=2��a%!�ۿ�Vk�7����zSUF+n��e)�Q���K��%-w��H�Y�u*)����
���96�hl�6@k�7-U[H!	�-zeu��1�{�VL�#OAU�Z˕=�cs��wZ��{W�h�+�@8���hЕɣ:�n(�V�k�"`�gv���\`B�\�E�)��@�l�����Yq��A����m���9�OJ������ �wXv9�|=W��	R�~C���Պ�V�$2?������ȱ���0�-��)i��֚����b�[�0;���^V�U�;�[17���������i�I zK:�*�P��N*��hfH���&��!���"кС�V@�r��JCC-�����R�Z__���K#fq���É'�U��T�x��ʼ�h&�!�O����Tq��@BO��iWRo�a�(�L�j�*����o����U4�/�	Y�Y��mS,)��+��jV�uVҚ��u��l�+��,P�s`�{֑�G#��]f�ս���
��ZW��O�����L����د���=l�iͳ�TV�2v�\P�Bk/A-`z�ȭ�Z,=x�NRZ�+�B����yW�֪H�;���S�e`(�8<�����jղ���?H

Ӊ��":�=���9��������%=i5���Q�E����ī�
��`
����`1n����E&1O�!J�J5�SWw�?��J�r���j[uٖ*y<���Y�e�=$����u����p�ko�y�U0�%'/����°�N�.!k�Ӻw��p��ↇ�֎�VQq�*�z�"&�DY���A�@k��W��I��aDZKaJ�Z���\��� �s4)�פ������X�N���@�F�&�,���
�r��|)vS1[��I������[�?��r���[�J��z�Rt��G��϶��d$��f�7�K�Fi�&fl�O��?m���E�s.��DZ��jEc�ZA,`�e皇�A�?I����Xv����(<�k��-E[��:99y�^���;��ԯni�(��yN+�����Yz5�ruu�@�4�PH��}P�ZKZK���t'�R��©�-#Y��+�Z���0��Hi̽�������"~A]DQ�	�|��6����VWM�?��Y����1���g?n�5L�8[](�����)P�Ke��b\���kn����;�V�k�Z5=Hc�g��x���7	şD%�Q
��Gg\��J���j"�
����b��Vg�<��*ҘE6����^nwƦQ�}�C���^[��9��������i�����o)�TZ���ZhW��e�G\�	U-��Hd�/h���;��D�El�����R#�:���$[�����a�ƞN�&�$蔈�*9��p������ӧ�K�~[��W�m�����F�(�fxEP��3^�l�,�\����3�,�H�S�;�&�8��T!'T:]��W��`z;e�o��J������>0��$պu���,���~+}����洼�9^F��=���=�������yϝM�MM�m�k��Z��u-F-W&�F�YP��s�����i9��xi���K��?•yO��& i��C%O>Yo�2*|N��W�h����O?��rK�z�l��M��0�G��Rŕ�Q:�[1�����ZȗM�n�1��W�DY�Q_m��KeZ�bJ�G�=3
��Rǭ�i��b���I��b�M��z�iRf��ӻܶG0k\q�ߖ�sJ�-i�k^>aɩA��=Y�~Zgy���զ�?�%�G�sI�G�ː�.`t�Ư�͑ձD������J��q[Z�e���r�D~�n`p.@Z��&k.k�� �L"���N�� �nD*f5���wHa�

q1Cf���|��g_|��O?���%j}��o��ĕz�z��U,���	��y,c ˎ����U��Vq�R�2��V%�>�Va4��=�W�R�ò� �M҂�ZO�5n����Y�^���³�۬(ܒ'n�oȩe����v3g�(r�ӻ�`f��a}��R�$�Z �mR�ӆ�X/�KOIr��"�^ޛÞ�"��2Xeb^qԞ���A�F8h��,WC����9]}����ɐ�<�{2xKv
HM:�����0" :>K`�����GO�|�ĸ���l�Q�!Ux���/XQ�_m�]�M�h��?��[)��&����N�׌'���]��@Tx��W�8��}DU
����$q!�5O�����[*3������5�Z֨�
#�ԚUK��ֻ����a��`;7�Z0+�[G\]m�Ee��+6�|����%��VM�M��>ߙ2�FQ
�*�Pi�b<�F�K�N�`�8�*�C�0�
U+�԰J�i�k�Th᫂V�U���(壀�
�jq	�����/?����>zb�嗊���,3�@F+���ħ�l�N��J�U�]��&lœ�2&��sM\� Z��'�?�3�P������i�����Z�1DU2�8+�M3K	�,�7��9��.A˩E&+�T�k>?���{}���i�z��M�n�9�0����P�*��^�`���<�c���Ȝc�eb�f�`�5�Q叡%�����d��2��vF-�e-�p@U�%�@����X�j�ѯ_}����F�/D-�e�Va�	���pi�4v|L���q*���+�~�yq*�q�f���9F�u'�A0�fPw6�u%U~&����R ��6���a�2�c]+/��
�z�=�G����R	D6J@@P-�4��2h!֪���uR�m'�N����t�k׮:+�<��U�$���F�
W\���a��Y�~���+�ү{R,C��ؒ���U;A�q��׾��Y=�S�c?|��
5�p��[���n�l7[K�ְI�x�V��dV.�shg��D�1W�-j�*�gy���s����.K�ȱbF��9_��F�i&�R0a3M"�zie��D�B�6�*�^=	ސ�%�ƕ�bԈ9a`c,�������b�=x�¬͍?�Yp+��Lb�xqU҉��8hrp>�WO4{�2�`aq������ũ��zoɛu��3�/�բ=�fݓ�P
�o�el�z�-�6Nk|Tc�9�_+��R~�h���-��S�j�e^)��©�	���X�ˊ6Q�vV�(��]m��/6���.72a���3�(����m�S�и۳h��7�T��9�Aӹ��><�SB�o���W���bL1�<*�|A�����tEu���V�L�g}�oDCС7W�3f��'_~�����Z���i9EM�XabQ�Zdf���#qe�Y���
nu���6���D��{��q��K�zx����>ԡ�I:�}B�J�b�S��߰!��};�d�R��VT�@�J���Zߒ�J�M�>�bu�>�%�ZfU�Y�I4��9��l0���yZ	BQ��&h-�¤�D�r����	���}��_��߃����IG��WK��W��^S8�r�̨T�o	�Rn��DmQo�e�̘�n�/�•a�Y|Z"�����rУ�XL	ZYp���[uVf�W�|��l U�cهS
�j<%�@����\=�|Z@��[�^c76�qz@��E��4�\ ��*hI��
�Z����R_I%�����V�/ئYNY]SWI9桑/.;�R$
g�O�j���]T�I�ރ��6Eo�ܭ����	�@W��ljɩ���8���s����'嶠�њ�v�RI�|��S�-o���;�9�o�Ij����Z��Cf�3F�(b���(�xrH�(C�[>����.��*�J�Z�k�	��O���YA)7#������%Y=�U-��92��y�-]Tw��AL�խ���0���IX�j�S K�k��Jv�v
��y
R�J���,4Y/��@K���B��hT:U�Z�r�
���>V�M'�dM�JԤ ��R��^���7+�Z��� ��0�&����|�Hm-G&�s���E~Y�!b���,�'�s΋[��b
W�M��\����s��V�4ڹ�8�>�t��
�O3�yoi�XJezȱ����&��͘,��1���74����iuqZ>O�p�xWV-�{7#�x[���LQ���ʪT�K��V9*^%�-er�7#��Ui$jakYb���lBGAs����3D����L*r�ޚQJQ�ԘXYwF���U�c�������.>�����[XZ`��Oc����Vh��61c��P���mB�+&� �r��=�7��X��ፄV<?2�2}����#x��Ds��:]�8�x�
]���,��.�.l�Z�mULI6�$�Y��WJ'�)M*J̯�\���.">�5�|�
65�J���+�fTZ���-�C֑��k刭-�-]^!���-�d��w�9�A_�3i�,
-F�S{n*ӕNj{o'LMŷ��U�r�,�Ut�xMZ�di���a�y�)+�#2}���O���9j��-��Ѩ�>tdŹ[عP4�l�`C9���`|�.{rk,���!����K+�܎2�ZZۇ�D i��j�/Eե��Z����0�����K���V8F����
�/[{�[���U[� ���ej!o*/�ȦCM�����fXI#�Ĉ���.)x�Cʭ`�svGI7��
U���Dži�jL�����թ%h�8Dꕆ�r;J�^fF��r�c󠕋
*3l�x�<.� �bo�l�8D�ٕA[���vdo��S1�|�k��z̫��R����Ƙ��F�Y�ҶS)܁Zw���"o-�<hE�g��A_�����J7V���6�=R8��]T��+���v�,m����{y,��v�]��-��Yw�d��iDA.(	�J�tQ���:g�_�$5�U��ҹ
�Ѧ�H=I�VJ���X<�cP�oL�V��D�'YR���(�Q�&pN�Ș�[}��v0-�q�K�1�r�b/������]cf����`H�X�\g\l���6a�I.~��a�1�zZ���^���ʋ���lZ��\���6N��:cl���cC��^��go����U���S� ��`
&mw��.+aO���z�+wh�=J1�E��ɦ&��p�z@�͞V��$�v���6]!���0�T�R��L�o�$,h�����΄�p�����Z���ˉ�<�b1��j}!%����ϙI��p|р^"��ܢ�J�����r�7fi�NY��!H�к‹/�l#?���=�U�u��e^=YZ����8'�36���.>O���W.�he�i��j�iZM���x��Ejg�TyS�K<�|>�B]�*e�)2Ef(���\*C�G��9s�H�dM��2�G�ђ��ph�᫩����zk|���h�>��GG;;;GOԖ�52f.���cOW���R��:�!��D\��(�I�\qɹA����$���@Va����3�ja;	'~-^G��7��cu��w.�O���X k�j�,|�����y�J~Z�thh!��f�R١�z�&R
>(��L 0����V&�������K�x�NcZE�m��jbrTMr'�S2i�}�W[q�����[\ѱ��-��ώu������ߪ�_��A�Zʅ>[�Th���q��p�������7~ �X�����ݣ=����6�C+w��s91]oY�(h�Y�Eb6E���]P�e+�j*����,C�3S�V"�*�>
�H
���f��z�ط�����^|�+�o����
h���V^�.���̥|�Sm��D~x�W	[l��1L���gp�ܽ{ �+%��9�����I��(�z��ю�8��+m"Kt]�1Y���3��^\[�E�`���?}.={��ҹ�(�_�}<�,!�mI�UP����<�%���(���4��7L��wdz����#���s���>7&��]��
d{�>��Y{�6&�,
��Ӹ��Ybg!h՜~N��Y���XF�"�u�j}��zј�+�5Nl�}Z���p�H��b���r�[N�c�r�DEwb�����W��U��M^,�%�j��vࡵ̓M_�	-�IY�[�&@�����1�T�&�W�'+e�6k�&`���_���Ȇxq煎��X������ӗB���K����JԔ�̢	��RW�����ޒ��s���[�n	Z)�\��R�L�XĬ���b�W���b�Ar��N@ko��_�]١n-�^��'� (L,_.���k�N:b���p�])B�ڔ�`�B_�������>q�2��,-k��05+)_=�4��g�άuޠ�ݥ��2����:Z�v��w
�Z�"l�@�`�=�5�tE�J��\�V�����Dp����Q���$&|��6��;ſp��Z�p�7��oS�������|���N����\�|��'��M
���%
pD14֣]�+��tM�o��ё�ut��f��S-
h	Z���c:A��@�Y����Q\�/r]a����"QA���ř��d!�ĞV#�!T^��e���E`�Bg�Wf�eޤ�z���,1�eh}�W5?�;kQ_�IW�8-	w�A�#���x�^�lJ���ng��nm�`L^\KǜK�(6�0e\=0�v��'�|tS�"��ڂB0���X.3�dQ�-ؔ���H�̠W8�"mR�c$�<�b�
r�9Q��2���א*�r�����?+�����g��I���1�b���u���m�3Տ��6�]�G��;Gj�Z<����B����H��k^$*�W����V�1S:�hs���S��Z�Y����)"�)��}�hqQ��2���w�:����n����o��br�_}�;�5u�]��C��Z�2c�0B�+��٤��*�&]��<X!�z.�bM[bi]	�eE|\�Bf�!���I���ev�l*�)7 W�_-�_4�+1�*����(���i��k�V�*�h�<n�lmt)B�en;‰[���A�Gx~��+��%���N��Ta.��Pr)A�
�h��n�*�в�}�>+��H�U�I��\�O�=�o��".��5)It�]a%�g�J�ƶ��?x�@WO��15tZh�I}E�l,3�\��ucV}>���+u�Dni�x���k����Ä�.�t[ii�K+m�����^)˥4�%Mв�.
��,Na�Z%3q,$[������G�n��ʗ��e�'��h� �+���$e �9\F�5��RO�*����P�C�$��@O�$�5��CYZ��~hr�M?��}jnx�g8�jC�ٸ`��|FBzٍ��� hfŽW���7*�nܒQ&lI��NR��h�FGt���P�ʳ��p�+Nɬ�"}A���E(�U�ú>YR�cp�ZHl�^_5u�׌-*ZN������(aJ�U��*�Z�g�y��
K�n��5��%�
�.����H�&N�#�M�Jl�?ց�!�C�Jщ�򐀥a��'�-oV%�\:ƨaU+�h$�d��?�∂:�@ޢ�?�KUZ�J�)�C�x(�q�Hb�vsQ:CD��o\9Q����>�w���ӗe��S!K*I���E�;S
�R�ko��i�%r��W�)���-q��-=-M�gB�VB;Wybt����5Kx���]@#d���<j��[N���:�o}����h-��s7�P��%�Z��yјy����B�E;�nY�i]^K���Y�d��x�����D7�rk����hY���x�>S�ĕ����`�A(�ۖ��.(M̪��.&M4<)��s�\�0�@S�XK�l�_�sț�J:_�40��	@�^�pDɗ��_�y�И[.����#jZt���˟`J9]ݹ=��J����F?��Z��)?�����֚>_ȴr��UB�fǭ�u�#�^��ةDW�xy��4�rWRb�ݽi�����;3ݪ
n�lp�^����E��!��
�}}QZ�I�DFܺ�{���Y��Fk`�&E��,�HhaiUs��Z��J�+xQ�ˈ�h�]g��U_�mf�Z��[�,2n���Z��EY][�.I��W`$��*�����B!�[y��<6�Qa�DG�����(�&�m]Ҩ�5�����ECKG�
�T���=�o��ѣ����d��tK��V����/sM�2���z�i��o�W��kSi�.�7_�Q��
���R9=����z��!^�O�s3uM��d�Pq�*����#�Vb���U�X�[WE�E�&c�GZ�u����j�,'Lm��b)����r�M+-�m<���&',-bN�,�SKI�
f!l/��m���R���˩�j�&\�.x��T�l�vIS�\�7t��&�T-�>$�C�	mQ�)����,-I�:��4�����{���
 i���JƐ
��G�{��0�FJlMB�'�
���#I.Z7���\A��u�3��Ci�`�#RA���E�%m���M|��Q��ކ�bm��a/�k�9;�{�V��\Ted�c^$�X޼S���#tG���ci�7�,�
vq�,�ΫnOĆgV�Um6���v��`L�G���t�*B灖ehE��t :x�m�lآl��";1��U�\�����^�q��p+�.T
?��V�U�$ʭ�X�3k�5�<cK몡�v9����-	#dqUdi
W,'YD%�ᚵ#ag5�ʌĦ[�mQ
A-V%}�>nWO��D4����k%.�]mj����h��F�j��,^����DꝢ�1��Ȯ�M�;Eb�5a�&ҽ��_4�|��"B�J�}�P�6V�]��"�~&]��z��r��9T9̫�5�Y�k��@i^E*�V�f�����I�ڔ��J�p^�(!�٭eb��'��@a����G�OD����ʭ�sx~6��S�Y�P$�HՁL�%�&Ƃ��� 7P��;���JiH١�m��J�u�}�ѢK��.�.�Z_�Q�~�[D%YA�� ���:R�(�aާk�~,h�Z���kG�sM'���mA�����m�X��w�i��aؒZ�
�(��#��Tgd�-��g��B%|R�ٍ�ScgA��s�o+d���	�����[’���yCK��!5눶��;��㶾L���r�'�U�cl+���8xv�dtɆ���]έ��K�n�°*���8��B�4�$nMܡ�ή	�ɺ�]�	6ui���F��	6�7_��t}�pA�j_��.���O
`�A�ic	�
É�V5�I��+~��gO��겹u�?z}(ݹvۺUJ�J�)�oh�摄3
haA���Fv�Z�LHucpa������iCk�@0��!3B�#��p�ȡ���용$�ʣ�9P��+�^�C��i3Eԕ��UElQ�ec��O�!
GpmK�|����j[>��$�]����YqZc�V,ַ�"~t�ph)����W~�9!��R��������Kn*��V��Gwo�-�|��\ĤP��Z����r��s8�&�/P���K��	j�O����F�0U��J(3�&99���Ѧ��\lmL?{��V�*�}x�?����ׇOn��'>�^�V��2����5�$�4�V�%jI��ѷͬ�=���ۻ鏻}4m�%��
e�n�Ih��ϱ����n�WX��%<����@}�4xAD#�Z+�B�MFE-�j��F�2�e-o�6U/,Jq.���JUZW/�{�Eģ<�,V
�����F�bJI��[j5�cK���0ESa�Z��@z�.�V��ZJ�ƗK�Y��}��ٺ$W0���0��IXL=�6�ɀ�[D�U�����b(+F{�{(;��d�#1�����O"`�_>���˗��
�PA�j7y�ObY�h%Tg��$�*A�5�؊+����&�p�Q�h��I{ꮭ�Գxp�e(���Nw�^<OyW�T4p�d�i	<�S�J�,1C�����[_�1����2��)�\���N��-�<�f�?���2���6*z
x�|hl^
��\|�IޮK�z��=l�w�T�"�$��{ߑi5��B�H���)�&�?j�k�hZ���U���z��%�G �dt-�
TL�0��lM�]��]ls1���ƿI�b��[
j��S3�15�~"ϭ��X��6-^�ošՄÓ���Z�������>}��*𡅗�=S`� ���e��[�ےyU6n�����~Of����#��T�~�/Uh��s��FH#74:��̊r�R��h7_S���+�����~w���M�tn%���箬�I8o9���ZX\���]��'l2�Q��3�R@-3K-�a�F�$Q�ۢץ>����8,V�x8Rq�r*v���rf��*]�!~q7ō5U0�Wq�nZ����+}����dh������
�
W��X(�sNJUH�nnt��r AS[9�i��5*r��Z^�.��zH��>��2�^�~��C�O�t��?�����<��@+(�~�ς8d���5ܻ�d��RI��-�#׎��UB�v��k��f��KI�˵�\���y�YK�|U?���t��t�#A)Ц� ���-�5l�kk݌
p����J"���x�}�Vm�	؄-�7U�qBM��A\�z}���8�Twv�)�O7Uu�����ƬP��Nj�.cC�Ik��D3z
��ƃ����"L��E)öʪ��Zuw���L�G��g��04���.�Qy�t�$�k6Z��o~fd���~��7���f֣{��z��p	��X�
Z��O1�D/��11K�Sl׵��?��e������o����|�O�AF@W�3�$�U�ѳ�-1�Lb��*/��.s�8s油U�*�@lS�otsE��F��_&�v��� �.ge�2��&�U1�*���IV�5��};H]G>h��O<,gC|iN.]�3�V����{l�--H�Tt���q)��'v8GJ��ƻ)a�%K˲~����(]X�iH��
`֣�5����<�e�`�@�`q�t��00�uj��?~|r�]��T}����';�	j#8$�b
�O��5�R䮝[��0Ul�_[�)�cN5%��:�����⊦��pD�ou��܏���&U:��Y����Yy��S���joe|=f��OkۡI�﹎��H���Yю��1��ԊYb}���A�
ZF�v����[Z�lBOV@Wki�7��Z�v���a�l��w� �W�.�Y�0����X��΄��R.F�(��廓��D��I�gz��T����?���,�F�(}�����Ǫt������:�T��1l0�pc53����T�#J2�<O�I�`��aw,��M
:���vP\�`
2�J�F�~Q=�p\	t�cG��,.t�=��a�P꩕�\�(SV��+��[+x��]YI�+3d�NV"�p*rJXI�ۥ�V��1],�,1¬�˷zxv�V�)���odEu�m-Ej�_s�8��E<�aa[H��
B�u��a���4W�
��f5��\�* �8y��d��9���|�.%[I�䱆	���S�*��겮�RSx�۟
̺/e��zt��������g�|���W/U�>aj�Ӫ珪�Z&�m�(����J��roO�߻��xwvU�0�`d��F�l�P{��?�2ED4�qrepDom�y�M��*{��X+����ʦں���Ƨ���%sN�}}�6�}KҐY;,�
Ck�,�9#�Y�yV��$di[���EtIW������?���nnXԿa'�X�XZ��*yܒ&$�I��j��s@E�D��|z���'3���$D���a�8���*r&����{�מs4��ڭ�+���W��(\���z,S��8~,}|��N.��Ow�ϭ�T�K�IN
��5$���"���Z<�wʻ3>B��Y���֟�|��F��������v�-'��S�-�5�q]s�/vycc+û��E�s�e��{����2��J�*�b't@�EeF��g>�U�߾ԫ�#K�h����V���">c�@�?����D��Ν0U���=D�W������S��0�
��ʱLo+(�U�t*MGC���G������jv�����=��G,-�,,��>zt�����ǿ?��ɱa�t�x��ӌd��`��b�D�62�v
%�v�<e���1�J�Դ�<#p���3��a_���f۵5m��K��8�X(���L��
��(�y
ǖ+�]�#+��U��ީ8]N4'ʁ�)��o\�J�!��H�:�A�J��벾����
���^ q�,'��R�H8�ȧxZ���--SKsA�,]F�3�k��sM��h�kv
�pL\�\$)��!����]�e�yG� q��hJ'tp�Fƕ�P.	pm����%N�2�<YZ���������p=>=}e�\/^>�|�E��H�����b��.p�%��QQB�<a�CYe�P���E�C�����FL�S��Xeqn�>[e�rvsa� �;0KW��W�n�b�
�M�U�xM]+]�ETP
C�n,���xӘ;~�E�,Gi}���\��Â�n�b7��x?o�M�T��8(yk»�P��F�Z���j`eaETh� 
�TV3�s���P�E����)B�*M���9`7kp'���a���S�.��[����R^sC��{���
fZ�Ƙ�Tn���|�Ӈ�{�RǗ-[�Gځh�	i��U{��0RQK��\ȩ!�r�~�s�>�F��� �mT�+�ԯ[U�rl�Sl�t����k�����^S�x�cl
FE�bX�4.���Q,�Nj�G�/�ЂK�)�
1��C8�J�Ô�	1k�0��CCkqdk},��iŻj���~�[��"�
�j��p�ޚ-�����Zh�ú.�Kp�$�<r��\)�.��+���|�(mJx�2E4��w����@ת��*U��J��-�X�nJ*����H��Z��3�!8��e_��ҽ�/_��xZ�������'�V�8U!G���^x��*u)�a'C��8}�>K.�g#j'�I`��zڔ�pM�5��Y�ٺyפ��k��Z�c�`�Q
LgD�iߥQQ��	��&[�+|+Լ���*d���/(�]j�-�
�2�k�U���;N |iZ�i::=�2����~ړݡ
�2f��d�#������>2�&)�V�ς%���� F�W�.'7JK+Rkp��$5I�(fkn��Р���Qϣnp�"o�r�(�hѦ������Y��&ڵ�tĬ1�$�~�c��o�������,�/^	$�`\i^'H�FA	���"@�(E`k<
�aV9@^=����G;H-_�@1N/.*�p��Β���G��#yHbk���5��TX>�z�����(���NL�u�l��SܱB�;�e�{U1��&�ҍ�/q���bU��vakR�����w/��a��"��+�`�*��q��S��W*Zۚ���	�2�hN��Z(�y�L`*�8���qʽ�p�	ˤ�8ψ�v]�$);����>{E��M�F���1���_:��;�G�C�ƒY���^�������e^ɣ�����ϟT_<qU�P��R&�j����V�QPG� �p	N� ��R"���̳P4?�g1F�
(��!e������@�2
labe���'��+S��XV�#�ؼ��$�2a�!��a�d~��<���GU�P�V���j����
=[
��R	r/DoX>ԅ�e]Q�_��C��S�F��V�dHO��,�Sc�={��l^5��\ ��|A�lR�,�Q�'uz�.*�s\�I$2������f�XXW�
��Ґ��Z�t�#���`W�Sf�#��f��b��H�V@��3�	�x�X�G���GٮNE��U��3�r>�k��p�R�rI������T�K��Z��1�4c��ɍ`�(~�_6�R{c�ۚy����X�z�����u$j��򦬋J�Cͮ �	�(�y�eԚ�{�+�I��s�>sԀ�2��P���_^���$�,�K����*|㿔D#VNaVh����ޚ�D>����W
���{Len���E$�a�7��e�ƍ5?�<�'hS��Q�-��_����ŏjg^Y�$
�;W{���T�Y��,�X�^�����_�C>T@���Y�N_iߴ1�P˰$�5�1��r�3^�O��@��3H�N
�^���la���k�eཽ]@K
v�:�>i���D����X7��nM
�&&�y�c�m.��'�T쬩��]�Zy��-�.�Og�$?r��^5^�a��):����_�������$���\�#�,���mi�̭nz��6�V��d[�m<��рk���A��Y9��VQ/jF#��c+t@�+�5�(K�
b��5��N�#R>׎Dg��y_�#��Sc��U����
sÁY��ރ���ފ7M�<6���ǧ��OE�W/O_�Ӌw�ِ�)�C1B+�
�N��T.�s
ѼA^M�[-��Ȥj���w�6!4�U�)��:��$�%w}Pˬ�U��{|��=��A���L7�L_���,��Us�)�d�3M���q
���+�!˯��'Z��HzK������cl	Y�w����Ȫs���C��v(��h���$��m�H+Ft����m�J�����T?cr���D���B�|�UZ��ؓ��K|�VHVg7e�V�4J�]��|��5]dR��i�ri�̲����=�]wv=�Z���?����ZBT���,]8�F{v,��TV���'Z7é�.Y,1�Rju�MA)����f�Q
hI�m��<�g�ш�kW�m�ŋ6�2�dԖ~�&�Ծ��H=�]`����=�sE�n��и=)TK�M��D&*��,q�,�cG��ܺ�+��eY=���a��Lh���sb�=�+���0�oZ�\ë!�)P�]_$�DY���S%��7�HX�K�9]<O�+�*��&��>0~8s��'���i���u��d.�{
l�S+'��hh=;��<���C!��Z�V�R�J�U��R5���SL��.���đVh��v�q�3�_����q���c%���W�\y"��
�����F�і��=�=�n��h�Dn��-s�zZ8�H��o�W%�5˹h����b���C���2�����iY�\ k�;�yj���`hˊ���}"�p<KLb�WT)p�*S���2usHr�ː�8'_m�;���<{�;A�Ɓ�&2W��~�s��@����}�F����'���>o����m�I\�,��|��#G��܇��lai�i��4h�N�8�4X��o"?��x�8�Lo�/*��#�d5g{|�a9�*�D-��0����Q�!�1��oq�S)�����Z�����3p�d����y�ѯL2,"�e ��c!�)|r���lj�����xcϢ�`��_��˷z�G���d��bvX?t�X��0YP-�1����KUyt��5 l,�ӧ�U��r�ҪȤʗR����1�ҘI ��K%�.�?���5�h�fMXS՜��ܡ؛�.�5��m:XZ>��ɇZPK�#Z����{�B>������-[Z����I	a��S�JU�"��%�����^ִ�Ԣ�t��l\̭�RT�U�o�L��?i����������Y�hB��f(�5��Ob)��	��V�MQY�x���i���� xZ�Z����Vb+--{�T��u�r�.��ץ��K�6�֧u��)-��R�`�z�H�m�w�&�<�߽rJ�_�#�`v!��V�pA�L�J�
3Jf��9	���_LI
�lfz��>_�r���O��̦��D}L?��"�As�,�O�� #
KˊF����G�>�<���-]^�n��y�&�pN�Z�-H��.��o��j��"���ۧψ�G[k[@�v�(D�������	�-�u���
{��N`e���R���}7��4���G�V�P^�/'e�I\!�U���Tj�l��"��+z4���Y=�n�YU�-{��<01LWj~���rn-^�����Ih�f]��&��DVS�W�
�7H���<M��W�o�F��u~k%n�G�ԙFj��n<i�O0K������E��Z�4 h=x(��c��WZB,�kF�B���N�mv�X5[�N�������bVz��Zj�}�-吟,܊�q�r��Z״�H�*��ilagQ��؉x�9�g���*e��)��b�rӬ�	@������ZJۚ�l�$��+��WL�;(B��{�=[Wh��ZZ]�֡խJU�+O�.~��,I%�����Х��O���U(���.Y��{w..�L�R��C]C�d��I�޽�b�+H8����C�r,�t��}����`ևb�l-�uh��V�i?�h=�N�1�%ǖ#l3���4�HhA;Nb���T>DN&9%��a�z@��"��/KɊU����5���e�[5`�N�
O< ���v���
Z%��1�{�JTj������aꋐV���k�		V��7�JQ��"�2�vqZ�+r�%��$���-S�f����&�0�܊(#*���
X��7����<��OHoC.��1�m�90y���n)�؃~�W"+�0΁,z���M�
z_���Qw6��Q^�TPT�T���?@�e"׋%@��ܙ��dp��0+��12��H�!��d��d��[O�>U�\?7����I4�O�9u���_F[z�̺��!h��Z
��p77׿Z����1���\M�У	�B��I2,�����<#�҅�H�r��Ua=ohe���ns!�|ʳ��d8��\x�U�F*+l�T�ǃ��iqI0����d��I���US�7�`"l-Ŷ��m).���al���ʢ�Zv�pMW�yZ��]b<"�V����iI�V(�� vJ�2�b���e��7��2�S6����`�Wv-��8�ˀ"�I��C�{�m�Mݍ���{��a�������t��i(��OZ��Ho_��̟���~�����߂T!"�Z���+�A�܀HL�NR0�A+�O�2��^C�^.�dbXI%�\sYaK
n_0)������0Gy�uf�������Ҧ��ȥ&E���@#\D7H?鱕��;{��zJA����!�,�.�Z��B+5̓��+mL�x>ت��SC�Gʻzs
q��z�0OD�C�
�Oa���j}e�z��zPV�	��1#����ʵ
d�$�i�F����ied��
�Lu�7(����l��Eʍm��F-P��v���B�q����Z��^��R��m����-��[䔢���	h�&��=,Кz��^Z��R8wiS��m���2�$J�;�2��Ur�*�0������mE�5���,C�83��.U
C�|$
������z/1J'�����E�g�zY�dw͸S<\�ȟg�¾bUĵ^r�S�h9�����'�Yϓsz}WG�=l�}�#E��2�\�H�`�*�愖l�ϹQv��jh	PW��e�\ �>���
j��+z���mH���bvQ�5E�eQ��%���q�|IW-�Q�S�+,����;Xr
u玼CAK7�hgg��3Kk�a[���>��kv�j���X�jM��m5��eư�G.�����
"w���������[ݑ�{53���r�V2�@��H�cj��>/`-L-�|�O���R>�
���$1�[;��8����t&Ӌ�#Ǯ���?Ԧ��Z��*�����^���.O˲u���Q@��ߑA��mZ:���U
��T\�/�C�sUw�הA�D�v��_p$-�}�"��R���!ꓽť)j��A�`I������M|�P1Wo�
�j��c/l�6��?Ά'��ꇲ��Xo8�g�'�~�������Z2���{v��K-=�o��,-zj9����tJM��Kf!��,w���h2��j���8U}�w� �⥷.��er���7��]��$��jU\��8�"�%�g���*ZU����-�[]��jh!l��^��~VIi�Jx��ZZ�<��[�ҫ5��-��F�Sϗ��̗o^����%D��,�SW��T���;�X��^K.�g8�7�>�Z�5���ȃ��ͫD�2Z�Wl)�2��A�b��H9��ؕc+0ɣfO�@OQ��YN���%PYZ�z��v�,��yZ�g'��ɝC�YV��7K�K����?�V�O��jM�PA��s(����`��;`��X���M�۩�-2!�l�K�2�(�,TSl}��FV�K;�A
�V<�DqK�z�y#��I�Ń��$b�����[5~�<���ryN��i��Q�/{����,�@��\mVb��z�o\{�6�}1=,v�w�=qTl+�.�I��U���&G���):WgKF�^�P���E���b*�bw�D��WS/���,�IW�4�[��f�ڃ�Yl��*��,3�송�ٯw6yv`���
����8�aݧ�Q^�>�`���ϊ��K�{�2�X�' �g�ef��4���������W��&1	�Kd-I�\n]�/'���$�$����#/�N�\�GlG1^���ҽy��+�I� �����W�O�@qi9��ޛ�Gli��;������|���T��s�W\2��[��5]=�FyZ/��3��I�[��^�B��!���l��H�@[@K�x�޲lh4�~ɦ�4��_�*�}Y����	��K�*�R�t%:|��Z�
�+�*^s����o!,.�U���J1���*����~�*�&�n>Y{p�ۣ���-��p��Z��&�*U�+��
�{gg�z0�����X��u�H�Z�@�������QϬi;�$�7�(f@YL֩Z�S'�Uo*Ě��G�A��̝8��t3��W�X7�����\Wx�VU%b�j��ڼ-�<�9�S�_�x,&��#���)2
�D���r�i	(Ǵ�7*s��A�*�炂&\�xh����u
�=�:Of�,�+P�itz5���*��u|*�*�!��G5���Um�zǍ�.�bN�wWDp3έq ��4�nsIp%��B��`h"`|�}���K[Q�����Z{6J0�H3�FP�F̄��Qo����)K�>�YU��!KhI�V��c��&�~�=��yN�ܿ9Y��P&�␩��=�UW?��XT�[������]:�~�B�uݭ�P�v�ڪ<Z�����2�XW������*��Wul�8�T�7� ��x�2ob0�L��!�
lq��㘄�5\�*���Y^��.�%l.��kL�<��(�
��R��3�8*%�^�S��Jᐫ��Z��)`+���3�O���b��a�8E��c�Cu���O�Y���^W��]ǟZ K�+�s†",�s$���u2XX�ra��wF�Ӆ�.#���yx C��WV��ކ�C���u�׷-4�9\>P΃n���U�5wʃaE	�)�U�&��o���
���<JC+L��J2��^Lő:3
+�U�����A�\��"�Q`�2�:/1�mi����@�F&�� )�$f���'�g^�	�ւW��Ӳ�.�ӵ`��Z\�Zf�t�?���i�-U������(��F���^����C^*��M�Nt�Z�<6B	����������G���ԶU����u����}4-�|	�uj�đ',#�kN�r]vmZqm4�.^D�R���)��~CcOL�ŎH�]<�Thahaie ~�t�r�i�����+��}��?���!����"��S��\:�D��Q[�c<`JL)fEU�U�h�I	x�#�+U�0�s�8��q�|/X"
hakIZRC�y�Z��>�+�@�	vA"ޅ��\�g2�����.x?��Ҫ1-���z�@<[�]��.��G��w�}���=���1���]B��&V����Uǜ4�xz��E?��8ŏ���9�OUr�嫕���U���K#ax8��\ؼ�I[n�d|v_,p�W{*K@�|�d��a�_6Z�����{�|L��֎��w[�Z�Р�b�$�˱X�Z�I�<u�R9�W~�^�T�b�z�>W�h}��,��/8�告[W�`W'\�)�/�C���Y)|�aZ�9�7��[� e�C�ϵq	��B>�4,b��aX����qN`V��B�[=\`i�Y�.ϩ��hTˍ.�*�V�����8c��%RU�[�+�	�a�6؊�2T"�e3+<ĩ�N�
�Z���|�@K`��D��/����)��y&m�&i�o
�"�Dh��y�C>$�Fi� �+��ϙ��{`g����!��-YZch9�U��˶�r&d����9�ߌ��Mj|�<�%���AG�\�ɬp
�M�f��r�����K��|���Kb@��Y��/�LdMV������_��	����.Q�M�e@�Q5��>N _��{�E�@�9�H '�Z���X��N#;ȳк���WĴ�V�ix���ּj�fpYPK��\�׍8����M`�.��"n��l̔T�刭�V�t�����1�y����
*ِX��֖H�_1ky�	c��	l%q�ª��^l�\hsf�a��J�,�мoA<d�^$�����:��_���
�~i�uW���L����}<b��n�����AVJ\1-�~�7����Y1��Z���:�FW&2��6��*��k4�
`�h�;v�'K�
v[ ��#��?~6�%�?��'�o�T�(�$�<��l�W�z
�4�v�YB��b�zI����R����Sm��X��&��yA�zhJ=����H�K�d��.Ul.��)���gU�
	R�Ҿ�8��(��ʻz"�>d<���ő���>j�U���dŅNp�C�]��Nd����f�(�.u�R=�R�[u����l��Um�V�6�S�x!i��.��ع�T��-i��ls�7Ԟ�E�雱���jVꎝ�Sis�o�MMD�J����&��3W�ٸ��j��N��`L�k�&S�����]t�ˈu��a|á-U��y�"��e����a�֚h�\0�{���q�u��1*L-b�%;����Z:�����4L�
%�"����g",�`�����EG4OT���{8��z��k7�ջ�y�)��H$fE��*�Lam�T&�5��
�5�"[+4K%�ľ�P<���լi�~H8x5\[5�4C��k����a�P�6�[
5�*~���rq1���e������V���./	iH��Vzg�a�2Wg��z h�9�nhmGQԲ��!-#��sM8kǏ�9Ӷ�y����#��#0�3H$!������uA(ժ���;(�XTU~ǜ�_y��UT]�)�}���������Y�څI�d�O$��b��G|~x��|&�2��a`���xy���-S*�en�
.�q�ZUo�B+H&W�~��m+%ܸ~��Wg�?/T].� �Ue;��R������*�3l��R�"�A=C��F�yܮ�!�"��E�����I�.�k���|\�6PL���fF�7
z�H$�TD�HT��%�ô�-�u�3�|���JjE7�jE%���a�.����D,��Z޳���	%�4�Z��3�
\��=<���:�ƫx��ݍ7]V�S
v!�I-�1�L2x%p1㬡y���8�0',-���u+��O:��������Z�\�bhk��N����5����%v����j�K�W�^���Qn�����P���Ǯ��ef%��T_�����\8�E�&�7�e|D�"H�J��]�o�0WC.��d'g>���Dˎ<�	�OS0c_1�	{0m�^�JU�ʝw\�T#&�#A��
�4AxwiW����3/{���C+E�/*p՘]�Cy�[�Һkhm-G������b���Wz馃��i�;Y�ڷ�O	AU�h�JU
�Aۺ�$sݽ��#�R�n��*��@��}@Ґ�3����龹�j��fEzh�������B*f�&�������c�Wq���ڟ��8�Jjq��M�|8�uǨ:D�����?V�k8���%W���[�J_]~�<���O�*�j�A-���r��%��C�!����,w�&6/��9T+����hiE*�$�L�WOjY�V�v�0�/�ai%����t�2�4�Ug>��Nh���ۃY
jaz-�����Z2���X�nքw�S1����Jt��}�F��-hY���r��
u�-�����)&���ܖ��m8�Lb{y��2+:�-�5D,4CrHm ���j��K�ݨ�Fc�a��j�A�6 �n�c%;�[�Ng'�Ꞌ��Ǯ���#@�Fhm<}�����FEL�0~�=�����*b�_Q�%�R�t�T���ᯰ,#�$����tr�������
�!V�q��^��Mn�|�Ɣ;���6s;����`b�4�\@U)����'<�]�\--�j���-?�yC��H<���Y}�����U����n�m-�92�l`4m���>��ZpImV8�x�X�	���W�Xi��IC��k9<dQ��`�Zs"�y ��Dcl�c7�ĬO�`Y1��~4ݒZڎ������B�M�}�Ǯ��akiu�B�ߺ�@��Dxn@l��z�������
���b0ΗZ�*�pC��)�Sl��TQAL�hIS
ɤ.<2�3\5H�b�"�*B���;����R�
Oo�gis�ҥ���ҹ"+���b����{�ch5!-7�ҢMh�dA��VŽ͓�;�Zk%�5�4���*�0�i��Q�jry_%c]���|,�p�s���@��D#7����$�U��q�<��(#f9�^�Xs_��%e�PO%��4�y��ZG`��H	c����;UE'���4��UC�^ϘV��Z����ōmnKw�[�o<��X7:��x��܈�5A+�[A��[.���m�͢Ka 	U˳�%Uu�	�Z������LX�L��_Y%8���Y56trjCD�����_���x�/�q���i���6��O�J˽?�e���r��:J�J��1ܢ_:4m�Ak+�5���ZK˦��^B�#p�xv:Nj��\-��U��fj��vCɭ��`,�L_��x9z�>������;��=��Z�I`�q�&�U��a��Lr%�OcB�Y���w�B/�Tzy��4$��ꔌ��k��k$�#n��@��ɉ���{��r|��X�c�n�K%��5��Y–���
A�}A�&]��V�"9.|����ӽ>�*�����fR˼0�f��p@V��ö2U�b��o`��{��_>�Y�_c0�
O�2�[vt���A��R>����Ho�����bd�Z�	��|
Z��tN}�஡��A������V�E=_��*��#��wN~��;9��{g�����	bug�"`g1N8'�n4�_;<�t������c�����j��R�/ɡt2�\3��O�π��Sl-,'�I`HM�S�f������8��S-�^\���]i��
��Z�J�X;?�\gKCh=s�̓O^XSح�y�ٲ-P�������ok(rQ���}MG�E�V��"�y�)7, .PPf9�u�<���H�r�"y��hM�Qƪ�L�\��YP&c鈙�uR�CE�/���	'F8U*`w���…ЂZ��7h�5��mi���}EIˇ{��998��D�(�>+̝�I�Y�t8p��	^T��F�ty���F�x=�&���	$Gp�it_
��Ċ' �-4W�x^j
�j�v$B[FV�SK�Y\8�T@�͹��Vo�>��ܲ�m%T9��+HaZV�G,�����I%���G���aki]\|a}�2���_�l����-\5�j����"���Jʳ�C��T2�k��c_}�U.�ٛ3�fޛ�����Uf�G�-���-B#�=���~Ju���7h1��խ������P�����잞	�gh�%���gbYv�&�u$��q�ai�Ԫ��=������W�r�z`S����䖶�"�>�+BQWQ+߿�|���P��T����:2�Ti8�TS$e�5i�>լ�`f�3� <z?C� ,M-��Q�*0Et�Ka��Bة\AA�#�
XYfUBJ��c�$���H���ͣ�s��r����J޾���b�T�\����߄��V�-htQ�"p��.�+�f�b����E��ٔ��5?5!g�hƑKO��^Xi��<a��VD/NY�.��X��M���%�68��@0�6/�\��uc�mfgz��m{w6��������@k��[�W9ၬQˎ�sS7�,ic�����H�~w�-X�U�8l!�G�Z+�±�z��	Ž�h Wk$[ʅ�j�u_՝[;����\Cg�������,¹*����G۠V1�(�?�;�ָ�0�n�.
~���Q��7��E܍�o;!P�;��Q��Ag�:�����I„fBI�Ħ��?���sonR�U��y�˽����/�y;���,%�Qu�ϴ�׬Z�ӳ7JV��n���M��8A� +���w�dq�0Ck%�)C@�nW&�a]U��&6k�I��k]oɴ=5��ߑ�� �U�+�US�[<7�����Z�yelјF�K�*�4�Ǭȕ)���f�W���.YN[3T���,et�#L	@4ߎ��~���{�bC��p�5�"��@�
�Jj�>O�:{����A�;�TBKOk�����]n����n�s��˒�q8�NY���8��
n�E�Q1����2�U%��R����N�zG�nO�煬l�6P	f���2kŋ��y�`Uy�@K%��� �Uum�b 9����v7��NF֊
��"�RqZE|���i�-��*"-6p�Ⱥ�F��5Ru����)������p8<�u�\��B�r��H��RM^��L)��1Fr�^��/�-����Z[SynFbɩ������B�'�KFI����qIh���$��Z^;B,)G+LQu����Y
�%��&��k7#���b܃�Ȫ?��;/�V{0J�Z��V��=n��Ԣ�(�-�DM�T
�j��6˹:��Ȣ�*�hQF5�[��Yp)�Ō���"���o��
�	Nu�Db�ڡ[d�vS�PT�A�ٚv��P�`V�j�^2mW���w���f����c�U	�(6ɭ�5���7���%S��b`,T��igU7G,��%�6���)��ً���B��︐��D��0�N�������-�rwh�6���ݡ�>�A,��"��%�:�’r�_{$���Z_�u�%�Z&Sۃ��&=�0h�����%dW�tf{��@�4Pۙ
-�%s�m�(�ɮ�V�it$J$�j0+�q�%��@=T� ��6����Z{2�K:�v��Ȋs�_~����jed���x�	��R����/J���:PR�����VRU�E�Yiy8,R��r�ܙ�V}���lB����(U�R��cҍ�Rl��el����x�`�	����|1Q�".�PMEV씰�b�˷"Z�\l��r+'�h�c��|?N\.�:+C��H��xO��gc@���U'�Y�̶�#6%ܴͩ+�&�ZW;����Q������h��fu�N�TE�?7�&t!�T�����Fz�!PrܜI��)|�$��u��Ҙ�=�P�aP��J��������$�L	���¤�4�ȗtXդh&��a�̅��w|��rp5-�V󮲎kh��x��%4P�P���!���zx�`�9��t�4�Nͭl6��:�X����tBd�_�&�؎S�0I��6�GE�_Bb��qf�`�f�+��9�\9��kHȅc��Xsx
"�@����T��	�J[M��+�J^r��O�L��#
�
AJ���@�	��s�“���	�
f�ɥ��bg�Њ<���`��8&	t߷Z���m���`���j��'�.�����q��Qj�߁�
��7w0��ܩ`�~4{{Ko'�L{���=:�8t�I$��O%DY_�C?єڴ�!:*t��]��2�o(�J"�\��y��r��RW�J���Y@�μzxt��}�'�
x���m��Z���&a؍j�!�i1Q����MdZj��I0�d=�����H$,web!R����G,
��j5]�I������.�Z��RqܼJ�r_NVSl��*20b�=
�UA+��kG�U�]@�%g&u�绋g�V/A�w����d��ʛg�7��R�ej�)�����C��[o��ik�B�����9��"��)%܂tJ�YO묡?KD2G��Į���fR��`�i�6�lCS����}�.Ķ7z����/i�m
�)BX�VZ�:����¶���h!�@U���2�+Ak�~]��qW�����2����&ɻd���ȸ��ݓ�>)2b.��ښ���m3
�m���^u�0�!��\�O	P�-X���B���)��f��
#�h�W�� x{k�6H��fǒ�ef	ZgY��I�=�Z�����ـ�+:{��~K�Zd�xi����J](Ӫ:hJs�taN��o�Q�YW��
�أ'��4�Jᒔ�B��ﺑv��&�VY���)Z�ʫ�:��(�ʌ�_r���O��
��V���u
�/�5�U��yK��׏�2&�y#���V�
1��t�<ᗘ�yǘjh��z]�F�.Y�n�i�W�T�SUM��T�/LZ�����Q�iZ�K���J�D-{O45����R��r0�$9/S,�e���h�Qo�*�[�h�f@�<�R�i:��Ӷj��4Vr]`Fk��:�Z����EK��0��[*��@뼡�ꎴ���K@K����Z�t�tGuVA�����@n�P
2�W/�x1��Kuc�:8��+�+W���Ԍ�A��"����2X�҈�G�A��x�3�Va�l��w�S����J�"�.u�-��ҵ8�$O9�Z�t>��s�����*v�cٹ�e��o��v��v��{��9�����~(�t�Hk�ufǜ�1+C1�$�
���aZ�YS�T�-ɝC���eX��'�ur�ڲ��3cq�>��9xp��ߝ�V� ��E	�X��T��ڳ@�<-�g9�E�h�
�S�����b�x��/�VL�"��./�ŪՈ�~���l/�v�~�%h�ډZ+{m-��'ne�E�\0��qE�`e�YGd�TTQ�N9uPh����p�T�WbM#��¯"�$)�|؈�Cz�5�����"��%tɛTA)k �x	���G���[��,U��T�w�s�߹c]�;g]����[>���$}a�:��߾x!�̙3��s��W_�p�n٧+C|@k��d�䕹k��)-��V ��I��i���l�B)�pX�ꈄ����
OҶ���V㌱�Ay?�!�<�f�L2|������(M+��,#Y�H[ޢ5]�&綨�<̒��G�1�T5��Wey�W��O�/����hqH�>A�,�*����[�W���V�,h�Ke��A+|Bn-�j&�����r*�X�YW��8��ute;V��?��UY��訊X�N7x5k���qE�K�����F��򲜚yUɮ��m��ş/^�����z�ϾH��G&�I��}��/�Nz��'�|�к��+���Iw޽���W˶o��j-לw��M������c�HkE�r���DDt�¹!��}UY�[�ܼ����*t��~0|VN�g钓\�.6��x��7���Q��ʪ����M��#�ey�3J�󣁷�В�RZ�9��~�;��2��q<-Ak6��W��t�kh�l��Z���~����]�='����$����Nί�sn�I�� �M�GC��dqQ�Y��.��2nGn/�Z��cH�:��ܮ��^h�l
�l���JU�]�A��?|&+��_~��_~X��s7O���㥢�ۍ9Q�t*�“
�̩����J���z���{��-�w��*"-�����������ܩ�::�U��bh��K'ֱ�3��ɚ�[k�y�r)+>4̩���n`�6 ����:Ű�\��ƙ��du�͠�Tt��|lGzt���^)̚5��_���DZ����؈�mҫ����jy�^hh�b����W�����__���j�YO���*��A�ԡ�yP�rPU�UFU]C�m��
f��W����$"������+�=&��EZG~���ѓ�+v���e�A����X�?�	,����/?,�҃�^�Iz����Ub��N�~��5Q+�J1�����O?�ڳ��h��k�?��z��瞻��=<a�V�E1��@|kuN]�Y���+ss��R�9�ou�$ϔ��2�`��cE�2�,�1]��.1+�8
]e0k�]vruh1EW���+Z�0;7t$q���|*G�.���X5�fĘp'�l	��k-�VM�C�ټ�V�a|ԴYG\B��AQ�,� "��A	����D�����Q4蓊,���L��evK�7jR��24�z{����Y���}�������9���;��:��z�(�;~K��K���[DZ)В+h�c;FأŇv�l��Z:(�O���4��V��*���4��
A*>���Qb:P�B9�RM�2��[&cS
�q�2�_�yi�.-/T5,s�Em���Z.Z���5�&nʚ���S�j����3�ϼ:�Fg��|��Q{�z�ѱѱ��K�dK����ohu����E�oweE�������ܣ�Ͳ��z눮iU�iE���Jŝ��vŷkߢ5��ׯx�ۋOnj*�7�#Ҳ{6}�Z�c[K��$������1yZZ[��󾠕���o\{فX�`��)��5�e1��VdA�2��t�>h�Gy,����dc�e�I�7�=�O���Wj+��-���$��&�|�蝇�wڪ�y���,���+����{Mz�yqˣe%6:��i��H73�b��gE-I�zp��ͭ��Y�QfR�\�9�)���dUb�Ϣ$[�R�+�]ikk����H@�ن�ޜ�����K�AJ������ļZE��]�AU�NL�0��"uw���Yy����s�`� �[�G{G{G/U�T��̫��s��W��O��Z�0{��c$�"�A���{�v">B����}g�yMk���%v�;7\/>ݴ6�nmN��8AK; ��,|�V��9�õ��o����+��CA���'�F��ޅ�2�2��{�F3��泬��N���Z+��̻�2���\��U��Y7�L.7ټ����ELy��o�<���UDZ���o���|!�}��)�ь
�������g	Y䇊�"��-�'%��(��*�g�U�_pJ��=�*��$��%��Η;�;;;�۶{���Š����S���������N���1��~U5I�5�k\�@��*ȅz� �E��B�1�l�Z]���y��k���8&r�\y�#���u�E���HY��ۥO�!q�Ɵ���⬪84���ss�*>^�:��b]�)�d�Gq�ک�W>�b���m$loQ�+�E�u�z�(��R\O{b���IfU)x����޶E�wm%�T��/�[�j/�զ��t��C�O��"�4���Ǐ~`�4>N��-��4b��CK��]"��ҙT�+�-"���$͜y�����r,A!�T#)��KY��HB�ĝ��I6K�/d�G���҆�r�&�&GF&'U�c��;�g
ӅeBj:�:U3�T�Z�JM��X��5P�j��"u��Z�=ϊVC=CCC�
Z��aU�[U������ES�*C��u�v����v�����8��~̂S��[�fZ+.�(��;=O<�OOi 2�=��[%��.{ hGT18�+���"Ĵ����=O�c�^maO�U�,�$FX�x���|�fC���t����7%�:?|l�N	R9��H˳K�p���WfuFki����JJc%>�aډ"��Ia�k���kߥ]�*6�irr\�0k�����aq���D�DŽ�0�؂b�]e����=Oe]ӯP��jt��t�\B�����#�G]C�j!z������u[e�]�!��'�uDw��Z�2��1�8�Fn�QqSE��V�2g�A� JӔ<�"�e�=�i�J�ۑ
�eCR� ��o��o��p�]~@<��k�M{;-S���K�*�G_:ЂZJ?��[��o�+8�e�-�.j~��Tk_�1-e���a���k�gϞy�XӪy�`Ҩ6(bT����#�O�O����6u��xGTt\�J�񎎎K�$�[k(e'Y�$��O�e�ŕa�*a�.)�-5�ePY�d��!�r��
�`�j�z� ��/�5�C֘�u���'�
���b-�W��к�]Gy��i����&gj9��߆7�J��^��̚��\��E?=W�T�aP�L`�����2��0��T�^N$9"���!�$a�Q/�Xxy��N�~�V=�ݐE�ݘ;��3��ܽ�ӛ�̙3���{kÌ�Y��,�%�	��EZ�ئS�Z���)��]'��VA�͓�����s�VW�7N�.�u�q@�֕�,�\
	8��0.;t��Й=	8ǀ�$�(�J��o���e��@���R�K�Rx��2��JʤR��YH\2�z"�2����h�8��*��Z��K� �Bc���j]ل�M�Q]�j?�u�K��e�t�wt��z���y�Ɵ����oGy�mi!�G���O���:*{��۩j�R�{4�Җ�j��\0^G�S��>��x�$���pUo)���[��*)�h�#
��k�F�/q�J���e~�m/�g6�i���Nm\f|u!1Kz�̙�7��d<d�&C��$wfػ�s����f��k4+hݫP�cˑ����S��<s��ڬ�Z_��لܵ��'�K>��s��L-���t�RJS��|��(�+Pc:�����a_b�k��)dJ�*i�4�|��)��#���Y��!��2D&�	�f�u�m�ծ"��Zr�U�Un2q�2��������vA�кV�.��hq������~���]����	�޾P�T����~:���6��H�ر�C��)V&�O�ajH���H?;7�*���,^�m�B�Ş�RWuɡ��2}�m�b���<,��T�i��k�ej�|���X��7-7XӂZ��h�(�q�YA�0Кm8�������H]�̦4�{�����ZfPZ1)��r�W���-!�'�+��cܤ�H#�u�x)��w1q���|	bY���ݏ�PH�A8hY��W*�t�C,�����P�-��=C!Vx����fL��Weh�u��$�anW�q~F�Ƈ�i�ZjG:�"�Z�J�J�|�;�gx��ZQmr��y!����B“**s*�dϊqa�]�M6E�3L˄�3:<��or'l&P�V���>
�*Sy��Ʌ&�N
Z'/��g�h��!h��H��87��X�,�#�F��x��-�,�;AL�"'t��
x�Հj
Ws�����⁗�9��<J�2J�1\�ќ#�H<�Md���X�>�`�!#$�t�&pIr ��œ�(���һ���֌�kj-��b�{ ��ʻ�V����2�<D'H�-ԅ������#�
h„*)�k�=ʻ��HN�ehq�P��z��b뢷"����"cG^��XX�Κ_
#p˦��
�r��P�-�?�̍����O�bL8"�eY\�~+~S��nBkS��:O�nz����u/紼7�������0��Se�|u��Lz�qys���7[s��Nj _�:��_���}(��4"�"������w�D�cN"�@<>X$�C��.ݮѰ!����N;��R{ K�zea��RTE�����˫�ewo�Op���
l	G��2���P�8%D�Q����^B���O�_���UVPˍxk��;bֵbӵ
����C=$�9��\{��=L�rLY�̢C��!Ɩ�!����#-�����"V��@��"^����bb��*+�QE�ג�y�L%n���[�Vu
V0��/?{�w�;�*��JȜ��a
4��¬��q!�-->��
��T���q��Z��8���q��uEAԳ���Z�;�|�6�`kB����]x����;�;�>d��9��,MV�*��H<�T
��	�<��)��L�H�F�=�H�Q+�䩁,��`�c��
M2�w���2-U͓
>;t"����e׿L�ѠF^s�͡U�V��@��8�U@+eK�A���8��b�˩`@K�I�������i�A+/[@-+�A;��Վ*zb,5�%��2��+ժ�H_�cx��M ^��R��T��qJQ2i���
�1gD�EL��N^�\d��S�A��t�'TT�Ո�^k2KK���!����ЂZp+�)7�k�f	L�+Z�'~��_셀�����:y����M�oԖ��I"��\d��QN��
�q���r=<��@Ԉr��ʷ��u���4�C�����N��/�Fs~1��B#�P�V,cx�c�)=C��ʽn�n�����ZwO,��'��k�毄��yS=ϊZbրyŢ��K��
KϠ��D)�ߜPlu�&�%ִ�-[����EnȉxΜ*
���Ho�D���{�+u���L��Q(!��@`�$��0�,�RI"�P�UZ� .7B��"��7�,���(^P>7~(�JDp� ^~�y�m�m�oۙ�;�43�y�sN��:�������v|v����`�@n!�����v��_K7�hU�޵5��fY�kj[?�x��u6nL$Fy�[0�Ds�*9 �e{Q���u�Wi��η*�"S����+:��a�z�݈0y?ƔIX�2ѹW�����:Z�Yg��adu��_݅���WJw�z�:��|����#|�Χ%���=ӢVTſ�|����z��o��bڦV���q�����m������N:����~���qU"#��"S��2��Tĉ�d��f�,�ջ�����b<iQ�$�5+�S�b#<����R���U��p�--���J*�G=!���zX�28ȇ���XauU(�1���pY����k�)�DA�!�P����A�h�g�����죮�f	I�Y�����C�l�2{�/J��ŖGy(��S����;�Y�ZmZ�:$ly���Ab���<��j�-��w�t7�m5�	E���bC+��v#H�4�έz�2��Q�F��<�I���W�.W�L�2v�؟��˄�$�<3��S1���*��J뉬��zZc�	h�Z�/����/�.h�=��Ŭ��~JMb������h=Nq�}k��P;�e���dɛY��^�2�VW��e���e��C[��R�/�۩�NW:��b�N�.���L
i$@�z�ߊ�씮PJ�&����>�q#��-G�	U@J��F�X�>���K��2��^_�as�4D�z���ǒ��5J�@��a�ʊ"Z�fA�U��"��}Yb�d��!::���d
����u|v6�z�qvx��WZ��r�)��o���ӈ�;Ċl�!*ƶ��V	Z�"��Ƈ���-�]4��|2��x�>X%��jAë��ye]�'Ck�1WOK�h�۞��ie%U�6����5��̈́{�BSo�K�|�&��I/�6/`��qh��	3�nrļ�Bkˬ��%(l“��C+1���U�N굏_�x-
��B��B�ޗ��{l��=;>?)�ӝ�DO�L�o�t�Z���=
�h֮��Nh���2������z7B?�Y��&j��dI�u����qf�]�CU-�P�+�*D�g�J�7�R��TI�LM��2�X#:�^�*ͳWK����'���h�P�)�CLR����tp6W>Y"�ll��j����$��ײ���-��\2��ã�΂^G�J���\�xZ8aF
zA��a��?1�N�Vk9jtc��E�����oC+��ԢEh��*5	�qd��Ł��W�5��j���1��4�\�0@�c'� 	G�	�;b<�&�h���FC�>�0� �uX�W��UG����]����@�[w�e��S5q�sݐ7P��[�i+_�h��ڣ���M�G����-c+~`�k�:o?���9���Sn�v���	Z��y����q��'6��d�_=���lA#8���=��Y��d{�L$C�-��S��"�w ��j΅@��/J:b���B��"��|y]q��,jL�c��1��a����hT`�W���V'�\-&]?:�>�5��`�,��В�rJ�����W�"�9(&��"+�V\h�j}r�VO8���f�t�@k�ȥ-�Gf�����l�>ԓ��+#~��}���괒�b�v'�~h%���JU��]�S�4��*�ֲ&hydh����p���ȥj��gU��O+�������L�m�:�푨!�h���J��|�q�3���	]��F��Ĭ:���"F�&|�x�	@	Wv�N�{u���`�lvk�?&��P[;+z��^��.��Z�-ݴ���u7�ś�E��������w��4}�+���=�t�E��K�n��c<���*�h��V�Iƚɚi™�A|���G?{-��^[�#�F��EU��crQ�6b��*׈��k���-Ժ+����(��Iλ�C�d1�0ѕ�1,"0���;�!⪅���\-�qM7������e.N&��VkH�;��!Һ/]�J�w���ĩ3��:�Ð?�镟��	�c���Q�KU�!�c�k��'�C�u,�
�YZ�=��xwj.3��P��6ׯ��)�#~x��`�G���-.
E�<T����rs�(SGŌ����K��W[u �uJ�#�i뵘��@�R��o��mE�i��=�`[ܰ�X�$=�u��kge���p],��cJ����u��[�����/Fu�TS$���ÖG���4�./�f�>=���m>�lGgM�!�RA�����cD�uj��o��
�f�?��ۯ��kh�+�<������|��HpP����p�RF��T�CTmCp�Ė���F{��Q斤Z��v����A�R�R�?f�8%P;㚅���LH�2�ZհlᢈU�"XF��*�jxv�`��|,{�� �7�r���e� ��ʢ�ev
������gy�Pq2����aZA#�qa��%�m}2?�秳C��Z5�~��`-�Ž�]��0�D�����b*�����#�:?Wp�����{y
�v�)�Zh���MLDr�7`�o�y��h�� �S������ݜt��(=�d-��
ʴdve#KZ��T� ?R=��VaAC��PNk$�(.�ZA#���0�����`X�A�2Ă���p\Ů�Qy�f��>��y�JZN6M	�����T���Ι��vq��H����;B����O6�p Zl�f�?Nˍ���vE��p���ޤ���Ĭ�T���5���O?�tBZ�$�襴�Y����P��&�iO.:���H�.��1��2tNzݚ� h�G���xq5�'�o�R�,��h�	YSegTu�:Yh�q�4�T�8e7kQ���h�s-r�X(-�+� �b��O���|٠bB�p��.����VAW�2���������Q�W�9�	��HwN-z��-H�|�s/���=��gyq��4ri~p(C0��gx���~Q���3���R��@Т��'�P.��G�`��&{8��Σ�3�uxۍ���Ӻ��Rj���
q��\�����Q%ǀ<I����j�'ʜV5HZ�/��Fs�cL7�z�l�6�U\�:�2ehm�zujϜŎ���
Õ.��]���uJ�.��0Vm]�FW�����M]�ao�Qe��w��1&Wr��XD5A���^4�`Iӝ�,a�7�}q�}&��a��ą�x��2�M�m��;�4�Dne�D��f�ì��Ɣ�soJbIhA��Y��b�+S��t��=��M��S�!���t:��w�˪#](<�S����{) Z蔈��5�r��适�9x�v�\��������M�ZU�Zi��~Ҕ�AG�bIB)���
��4���5C��G�pʲq��1�] Kgkv��b~].Xi���uz�bTX�U�m;mI�P������z,\,�|6�N�Q3���ZW���}q ��6�´b�R�~{��89OU�6t�dz�ߢ�5;<��Ƴ����e���4�uvx���ٍ�����7$h�B�;h�|
�'�)��߂�.<�u����0�����^Jk���q�XO�)D\�薒��8冣�2=�U�UUi�J���F�!��֟_����)�8�lt�d��cRdAw0j����I��֊�6緂Q*��E��̱**%��M�8ݮ5u���p%hQ'm�@%z�!�>$��E\���g�b��R3Y�����7����Ԅ;Y��">c;J��ދ�7�P��)�r����t0����O[���C3���N��F���ֵ�I$���-&h���⇏����_��κ�7�.����S�:¦�
;��7�_l�.�E���Fr�Q;�ʇ����;%ѳ�U,�:�l戲��4�tƐD%%���@gw�-���6����,�źqU�BZD_53�����h�F��?�ݑh�*����Z-.d�+dq�j���t/$�PL��\��0���e�Č�;���a>xX�;lQE�>lR���lzПG��Fp�7L�QV�<��<��b~2���Q��`��1��֏�>�wZ��tю�����
1E }KZtV��ʱ�-:&kescaP%��CF�^
Qk��k^
n���̯x�$��,݃;��XgQU��q8���"J�S�
0.U�-2�X:�#�D��#p�bQ���Yܲ���=@Г�Z�'ό�L����-S��y���"���%�P�R��Z�N�_:n��O�Vt����m�!IuRMT�bo�`S�ˮ
g��ו�����BI8H�E[�72��Y���&����(F�G�,l���>�/����L��}�可]3�v�E{����~��'節Iux��5��&k��u�pۇە���<+0n!�$�lJI#럿b@?O�y�
h�'�<Pp�Q�œ����i$m)uh��Z�&�����jAh��� *Q�d��^um���ԑ�>e�I[��1ЂJ�!�2»(m�:�j*�\\pf�rt��nk�/��&Sߡm�/F�޽��
�j���K�L9���[�pu0�L�i�Z,��+_\�F}���gPKВ����B�4��PK!S��2����Zo���3��[�����_�>�R��tB��.��Rי�y�F��\Q�zJ���?��K(���f�$�x?BE�o�-�Ί��Y��H$F.�
�C�GRZV�����e�@Ќ[)�i�^ʈ#�p�a]-t�;3(]!E�4��VF�+Ii�2�!4u|���}A���`��a,ޘcD�fA�Ѩ�
�i����T���
��,�*�ڼ�l��Ph�x.�F��!�l�VWɆ��4�_1��� 퐱8F��G�ͬ��L�J�������kr�ᖾM�z�`_R����M�,��Ǣ�
�{b��7�O�(T�ګ^u�y�:��숙n�%2����ⱋ��^S����
�]&"EIm�dfW�fH����]J��]r>U�1+�H��:͈�k���r�k�Ի�e	�d���!R0�.9�l9��)V���By������?CB���ʮ&�;�Ӣ�*c	2 ����︳@z�`h?�e���Ak����`��*F9�"m6;�Ci-��U/��m�ɸr�������uQ���'"<<#<�͏G{�=��:��g��|�<���hIw)J�
��et\A�)W��
hM�,��b�Pp�W��u��t,ȣ��[qE�Q�{�КYd�26ñ�	Wk),��lZ'uK-�Y�&�z,VY8�3O����ܓ.P����a�<��FY4��֋�UoDV�55�F|�+��h�c�1��a�ŭ=����$��V��T�nRV/n\���]<t�f\17"���@\����h�ͱ'���Ϯ��f�d�
�Fp�2Af��%V�V����!��"��(>Z�[�x״�����탧N@�7_訕�GN���dnw��-�ɗo��鸡�*�c+�}��4�]�"���������8��LU&B;{d^�$�$R'�.t�L2�X��`�w[�iJW-p?�Ya �+���1/6��E:�wJ�m<��B����:�<�B�
p-������I^�u'	�)� Gl-��)���~�tN�|��K��ɐ�[G8X@�e�W�<g����O~plx
�(n8���J�uz*�A%�ѭ��;v�}N��g��ɹ|�Sz��c�
1`�,{���{��i��N��g�/}$�:�pz��5tVU�x޿���-p����5�X��Q��0�L�,~�{>���g��XgP��
J3���%�H.8We�U�K�dY�l�ڻВ�����#AK	iM��*�M��E4���#@%7Ȕ�]V�~eX���2r�#V�/ry`Y;�N0���>��*��^�yuf�^�A�J�AR�)��0{��8t� �p����E�
t��F�Qe�p�z�F�W�}\�Ћ�6�_m3�������=v��^�D�Ċ���Z`�y�,�Z�u��֗O�._r���o��oz(�0h)1�W]�h[��bd�H�rIv�y�����c��f�c�[Hka{+�ʚ����z���
U���R��`u����md=<r
�M���ed�6����ԝˋ�d��"�nZ$�J]
%%�����2��/���!::����]��mPE�+*.F��(x���<q��q�����t���缩���*_ο��,xjnVҋ8J�C�+��tD�L��e�
����?�L�_�3j��
#�|8��%�hEiu����A�t���:����t�p��>#��Ob��;$��Bu�L"�H��%"PȌ�r�|	h�G��>Y>/V�x˘��M���w���,��wp�Т����V��������?$�'�'��I[̈o�Ŷ��g�����ϔ������-/�ԛ%R�����A�\Z�amؗ$�(�(�nĵUJ5���m���S0�'!:����B�_ɷ�1�)�A�Sǡ�D0̓��0H��א	88��SQbI��]()yP�O����.MR@����4��;e�"��>�h�-��C�8jB��d�	��6�j�uY/H�֓���S�5�W�QJ�������6���@��ւ����)%�>YܸiJ�-i�7@KH2���׷p�ԂZ@K�aK�S�[_.�Q1�-G>�r��'���wd��z
���k7��˿��(�B�
E�LU������]�'���$7�>a4/�9�i*c@{@����Zi�SA���,�6���d�m5h⩴�r�֒�%.����5���O�(�Î�zV��S���.�3��RA��(�$��Bv3ئjҝaj1j��$���&�R�6 ��0@Mynh���$�U�3�H|!ά!?�/ֹI	�@�8t�_�K��j*����D��|����L��?�Z���/��bV��X��Q������"V]��_�lg.�u�k�,�V�@|㨱�s��`��(�4�d@��	��Ʉ<��D��F8Ev2! ���n�w��c�V�e�K�e:4�
��ĉ��u�"Q�-M��������(�q�K�J��	D
��
;�����ʞ����k��7�[9;�|G���Ad��6�Y�,5����S��Wђ�� ��=�6���v�P�N@^S*?�&}���X�ж�|G�L��)����e�����RPj>����j��^���?�Wv�I#,�%BM�����
a��Ŀ�c@�.�A�
A��R��B�!�Z���U�y�.//�C4װ��.�Ͼᅵ�$&�ӫ���wR�H���n,%�$֖�-"� w3*��"��;������lG�6��9���K�#��eK)gB��D�Mc�Ҧ�${o7���B��2i�ۛ�eY2?"J��%,�|�M?B�Y�눒7ppڝ�'Or�$֓���E%@"���c�P5�A�_�2�'3����&���a����&����l��oh��&�h�&i9W}䗚���7�0_ܶ�cU�VB�q�x<?8�3�?�=���׳<dY<�d�zc�����~zj>��sg�X�1��#EOy�6��a��]�7�9�7M[ًY1�O�&Tb��\��:VɂO��1B+XiT�gr"gGQ(GS^��bi��X�	��Ďt=;�ƃՖC�j�a��Hq
K��6��#�|�U���̏�
�0!r����=V���<��H��[���J�
����Yܨ՚�=�
`K٬�&�)՜�N�#D��î
W��@&�����Y��u�E�T �YȬ�}e�3?p-��sx�E>(�:��2�|�!ݖ~�o?�裿�
�Qii���-��e��i�~�:]�'�K�z@��}ԖE�L'Y]Z�jn(v��Đ�T��{zZ�PK�0j���,\����!{�k�!��s"�L�OKH�|я�U�Ŷ-�5}I(�!h
+F�%b�=����S�Ra*y�����2�ES��q+j�q����d���88�U�e#���C�����R
���C�u����hN<��(c�`�i�v	Tm�l�U�$c�@V>bZ�Y?��5a�l��{"�ށ�5.����B-Ҥ�Y�X@9��)-�����j��RZ��N��D�b����?崊1�r�؈��"K"@��z�=#����'�K&|Q��En������c����,/2�LEd�\�L�:'r��������
�\`챌[�Dw�d%d�Ԃ�&$��`�W��װ�<�6��|�|g���Z�����$�8�w�I�΄֎'��F�!ݪ��4��-[��/��"ʘ�n�*m��6�D���]S%#SvP��ێ
�6�RE���0h}�T�,�C4�w�k��/K�
;�QsѠ�p{G��jBʄ��ӓ�L�DW�u�������Kîy�ַ�]�🰥�t�,I-�Zˍ�����lQ�Q�?��z���[��J�S�B�'"۵Cӌ�m8��y�Ӷ�j>#�7�
�P�[�β�
�B7�ũ�i��� ��0���T�$��:�,Ur��
a@%o�3��_t0��Y S2H�����v�eD�T)�>�[��/��<���ꇬ@֓*$�ph��3o��7�~?(�I�!B��CX{�rG8��cj��&ȜQ6n6NjuV
��G㜕�Y�5�AX���Z���wV�)܁)���x��o�����P *r��bMu��Y&�B�ťK��_�������v�p��?䴊�P� G���x�(����[�t��ݱ;���T�� ��<����u�$��QZ�v�H�g�oU��~)�*�k�Y��脘-v����$Y�a-U�`��H/˪�K��\����0�a?s�z�+�aH��S�ҏ�,׀�Q�&Z�QX"G������MYJ����0i�'�ht��\���_�p&���D-6MT~vv֔�Q�L[��$o�<0�ӗ2�٪1o($K!b��J�7���+T�?�����K^e}�6�E�0�X�డ��}������0S���+|���.�$B-M?X���cy�t��R�ƥ)^e�l���\/���T$��R�u�V�Gj�t�a���Z(6U>QRaJڹ�x�S�6��B�Ɗ���.�����:a��h5�GTx�^	%Mo	�:��Xu�h��9~�(��e����pw[n*��X�m�C��)�Cd�4%�&�c�h��#�&eo�Y%�=�*�G�h�a�Ǿ�-�cU���;Uu&[��dY��Z\`��d89ى�>"B8[nt4��x4?�$_���/,�Pp��ě����1�Y�p�V7�PS�Yf|��7�D���Y~����u`��	��>r�˼������iY!
��s���.�d�k�!��zo����Q�e\��xDQX��2�6�5ZR�S��Z�)rK{Yf+L�T����cQmp�z#�~UE<�
U�NO��&U���CT!M�@�X���\ׁ�G�+F��	�i��	5�q�R
�65��z�0*F|��F���2��U�n�Q��2h`��e�}TB��?ba��2T�'�㢡�X%xX�#�ˁg��2�I"ƨ�h�mjT�LpH?�"��h�4a��_;��ܓ��K?{Y%�2뾃P��U����N!_�WR}J�����Z7��Lf��Yfl�����
}���g�:��A�M0q��-�ʱ�d�t�����C{���`���s�E�J��J �E��-���q�.f�p
3��Tϗ���\
`V�$}y�E�Б�>DL��f�p�;��B�����(�*���$(&U��:
$��u:�E�MQq�m��_�`XpSvq�#��/$�4�vr-�͆ӑ�:a�\%��S$uj��>���P@�:�aL��f܂4��*ˋ �-�MqJ�8ܕ.�i���A�A��P�����jr�".�}).I����M뢘�b���M; l.s��dg����RY�[����0���j����[Cq.�����H�1��"F,�e�i�4Oc�e5*C��B��]� l&b�<�H:�������.�(�Jme�,J,ٕ!��l�m0�R�f�|.�Q�JiRu���2֦���<�"�K��ڱ(��4��m�"C�k���P�2	����fÎ�-���2���J�V�R_�Ov}�t|qlo����7�]%u%��ة�I2��|�,]dS�d�;@-q	��<P�J�z/B�@�k_8Ӕ��{�Rc�A98+�-;�T���A��.'Mԓ�&/_�=D���2}���2�D�/�ŗ��� �l1h�U>L�:�2t�G^�)�R���iTBh�6�c��Η�r�Lb{W]��?��, ��"i�R ZABjJ��^�Ղߎ��DF�Ι�R��GTo*�B��	��1K~ʃ�|�3�g�po�a���?#	ƥr<8�*t��FuP'x�i���w*J�:��<��Ζ�2�ݡ3��6��A�`��F��
��=�w���b�N�:� �f�� kk�>�f��yޗ'�Wm:J�+<�F�H�z���"_�F���^<�/3y�[�-���i!�b$��x��W7�>��vV;�]}i���d�?�z�F\\����]�s�0�/�3%��i���@�b�4���Z(�3B�g��GE󝏇�������뎏+]<=�X�,�S���-K��O����8�x�O�����O
>A�20J���k����������O�4�!�N�h.�9WfbVЩ!�E�+�N�$���T"U��U�K���	�-��]��%�&ӥyH]��2��eǦ|�'�,dES�`k�ա/�.�PÌ�g��2̩\�S.�^�[�)XWB#��f���r'lWD �����>K����H8�h-�s?���F�S"�F$�R}[F��^�^�ʬ��U$qE@}��]�7PB�i���Y��t��?�-�b���?Q���^|haɿ��gx�	���y���4FD���i�9�n�(����tu�m �R�a�ߥ+�n;]�����w8B� �7I���"�j�6I7*I<�i��j+2BY��ݡ7u#�/�,�*��ꥥt�
��T}E_3�U���I�,'IyH�AJF�%z]P;�b�F�^��S�S�g
�����^0-,�Ԡ*g�d���Fa��n:�t�zD�g��)<i�~L��Ʉ��L4���ikW����X\�c�*/��C�4gD�sr�G��uڬ��Ǟ|�1F�'�O�|v���y��Kw�{�=�?��O2Z�O���x�هOY^~量߻�ҥ�_Rn�;��{�ÿWZ���M7_}���W3'�0�����_,O��Ɠ}��Iq�9!%e�e9�L6M@�G���s�����s4�>;
?$� yhmMF�"D	�^V@�z��$t3�ֈ��>qL(�F��jG�hB����R)�:�ܫ6��P�j#�f�m?C��T@ �Z<P��,a�e�[���6[-DX��ܸR>�K��I�Q"a%�75gE��t���W��Pp��1Oԭ�%��3�a������J�Ԛ�0�N/e�:[.���������8n���)8.�8JF{{�J�F�R�g�[��/�?!�P�E#��e��z�7�y�7>x��������e��O$�2�`
�
�1(�O��[������\9?����}�W�R����4�� h�$D��:�v|��Ihs$�R��߬r�2*P��i۠���d��^V�܌�Bo�Ă'8��S����)�I�%�����lC� v��+C]�me�k��K� +g�.sg�����[ ُa2�;TGC�0:0���M�y�N>ڝ�GI��t4I��LZ_=�tJ�;��y�n����={���M�E��u���u����r�1���9gy��F�>ȷ����u�	���F�@���{�Ok�S��%&,=tҞS��/��B�0?\<�NH;^1�lį&�\<�&�M�~��j=L��n`S�{�U�3�Z�2�ޑ"UH~���p񓸍�&Z ��bi���̵	*��Y�"S:�X�\TwC���)tQa`.��Ľ(�rg��wkEN}K(O~���,���zAy�Zʎ2dT/=�[�2�$�Hcb�D��c���"�9���H�C$���iɨS���.%�������ζ%������v���o����Eih:ko{nA�n���u�{Q�Ճ��Ξxd韘�b|ҏG/puA��#�����y��O8e͛���_7�t���/ˠ\
WA/'�BR�<��}�;�*�*!�[��JP2�@�P�2�2��N��b��1�hS���������D�[��ӈiBR��a�Q@#4�	�(���
h8#%��Ѥ�n��2��GW&�c*�8�aFl�$�x��L��DgR�%$�q:2M5��`� A
_̳>k�2�G
�H���x���?�?y�Λ�>3��q��C���Unm��z���s}<e���{z�{ǥkoCj�f� �n�m���ai��<Vݸ )�^��_����j~8��d$@@>��=�6���b}��m��NP3>=�B���߽��ۧg�|����>�%R�g����>�ګ�'�\O�Z�y�Q6�N/�?¸A[%�z5Vn���~���	e�,jң����
~"%۵ㄎ�n�,��q�L���>�f�i����_��Q#�Z@+�:�Ǧ�p���2��+�֦��P���%Pu�G��e�s-h���U�P|F^$s���K���n4)7L����,�Q��[Ws��U�}��p�nӉ��76'c����"(��M rK����E�l��-�'$�
9)�b	ݚ�~O�Bi�C�r.gގ�/nM�+4Z|�ђg��H�Ϟ�
o��+K�2:=�/�����o�rRZ/~������~��}F�'5���$M�~V�4I��]�,��T��W��
t��ꔯҬ���i,x��J9�]&ՠr�O�jI1ϛ����eY��,R���\%�-z�QZ������\�~�Pn<��Yә�����p��?9�@a[�D�D�M�3�%:A�,t�r�6�{
W	^LJ�8�����n4_c��^(&�C�Lr]);�]ϱ)����{��LJc$�ܑtg�G�;OV�'�8.��*M�;�vV8�l5[\�Sd�_rw��W߲�ܜ;��c���`q�-W�r�jq�KO0_z�_G��g�����K\��������S~��܋�tawM�~������Z h�948���еP��N�b����M�s%a�p����&k��|�D'z>�*��C��"��p�����(a<����n�n�VO�y�I�w�۵8�f�S�$�W,��2�Ӏh��\*��Dc�Auڷ�Γ.�M���7�����Dv�AAKs0����39���4����'�5СD��K��-�uO�D��v:�G�r�M��:��� �+��p)b4�R�1qz�R�B'�-;˜��c��H~�K�̓
��2�4w--Օ�3�U�K���߹6��]��_�h��Ĭ�怛~T���*PT�Cf�̜-U3к �X�(�Wp���2+Ih�Y��,�ֻ(�o~���J<��>J:��3�-�Δ�޸)ϚZ��F�R�����u����+��)3~�,K�w��7/�$��G0u�|�}]ds�^<0�V�A��/�QB3^��{.��U�����jO�J	?���jRWF!M�%k'��C?�t����b	C)��uB�~�������<9`Vd'�<�u���k*�	��c�C�W�n���7�}��/ߴV��.��o��\E�!��<<S���d�9>\Ǐ�ʁN�(�~��ܴ�YS�ټ�p�w�<t{�n��!K��5��N��������M�>���0i��1IS���*���\Zk�˃���ÿO��Z����y'�3I0�e�)��К)8��*�5P胯�DE�g�T]ڑ�#97��4s7k���O��<uD�]{��'^z�гc�&�+r�9o�Kh��pS�u�O�T��.���1���Z����[;w��"ۏKh1�Q@˙6�L~S]v��0i�q@KI)�
�O{xQºr�ʮ�#)�#,��W���T*`U)]@S)��Ĕ�g����u��+��/"��
	Z��d�E�P�u�j��M�`K��؅Tf�¨�8R�X1H�U�>Q�mq�������I}��q�{g�<:����w��2�^d��c������+|���TTDB�H�N�h1W�l�����&��M.2���->rߔ���G�������w,v���4]�*�0�W���Y:4���y�0�C�L7/܎f�w�!XU@�_�+��{5�C�x�C��w/�������;0֔��g_l����_g�,�#��d�Ġ�R� ��8�>�(Ctp�~��LfT�xi<�0t���ս
�m������UrJo�q{E�ꂈۮ�=uVqdH�P
�.̄�i�j^Ӕ'3���5F֘p�@��L�-6�0��k�b�D��,J��	�WmA���(Z�r�Ba|m��*c�iu�Z��'ͪ�0��CH_�3��T�f�`v0yx�?	Qz�PG�Nf���|�d2�x:�
�K��H���j�u�V�+��:��W���;�v�\�8SG<�P���Z���M]�pU8`�,�*��u��B�-�w�vқQ�H@f�j�쳌I�Ϧ<�3#�
�E�`!a�^�P�!�	Ug�2��p�9S
B��0���l��.�E3f�Py�P�8���#U�[�՚�A�÷��󌁊�:�<jo8^�f�V�orU��$vgԦqd��qltr�uoI�Hɮr�!��P�c:R�K6��d`�]�
�$�%qL�M9�����n���D-2���}�tA*J��݆ .�"z�L�ܑV��|
�Y��`���B�tl@��{T�facV�
�$�t����i�#�ˇ�6uu�&���c:l)��y����?��K	�~͕\o��X%˜�m�8vl���J�-�O/�@�	^��~Ũ������*-��*������>����"���W�=SWsB!)��Z�u�?��$�x]@^�ߤ$�:��#��bi��5�.P!���V�l��c,��S���PrA]S��C-uM�6�(D�°ώ�fȆCsh�Q�Z���Տ^�ə�d{c���f�ٸ�'�
@o�{��<de�j�����B}<M��,�D���c$M%�Q�F6iYM�����W�L��_@�b:�v���ܿ�Ah�Hլ�>��O\LE~�H7b��v�"]�\��� P~y$;>p�0��i�h���l�p�H��.���qo�oÂ����Vg6;�|����I��3���!��Ӫ����S2�ez�[T��M��\}��
�[e/�mw� q
�	�A3	؁����q�\�As�����Q��0�Q�Z�	ۈD�5��t:Y���>RR@������G⾴��)�<:�#
2��$���f�,�)��n��#'-a#���Bj����ib��!��V�Vs+�q��P�'���|��i`F�M.Z\��ԋ����‘>04Ol�qc��v�|��F/)��TQ��`���M+�I�����
E���!2���7󈲋̛��VLJ�(WLiYhr��5��7~���-f��
������V��q�77ɑB6�m�Fj�|���H�%�q���W�������������~��>Z����@:R��K��Eꈅ��ѤKlj��A�]d��]ɽ�f�ME5Y�bj������n�N�����i��ӡ�-\��[<c��o᱄��	�hU�z��Ů
��J%OZW%�s�l��KY��+�/W8��8/���K��]�e&�DGqNqFi(3?:��WOH�1�jeg.�"��ȏE'�-S�\� w��0@i�-�OiM��h�m�Jڽ�^:�u4�19��%��ƨ.����B�t��a~n{��q�kNt�`>��}�/>o��l��(���EO��N}E�D5x*Ɓn����A��+*�z�<	�\��&�-���NY��d'����uZ�Q�u���?9�q\��̴C��=Z:?���@Q�rJ3�]�?�|�Dp���D���k�'("P3pc�9e��~P+�pq{1�F�Ҭ<4� 
.�KMeu9]��i���i� ��^7���0u(Ҧ<U?Y�eP#���12��-+�p�xABS$�"��h1�����"�����LS��jJ�5������
�q~1��4�ҸRq�]�\ ���f�9��"������ab�II��)�mV(� �Ĩ��#�el�;/�6�}�Vt^?o�"�-�?I��T��-;�H�w��兣�?��Q)�`` ��fP�}1�8��cs��;�dq��v���qPi}�
���߽��@���XU����K�QtN��S{�	W$%1.�.�DEUb�D�bV�r<��$�J�9�`6Ѷm�y\���/�g���0�Xbw�ڄm�<ث�6�*�X�ehB��/�0�6ш!\��5��Xupi�.S�w~�Z�2��,�
���n����B�D���q���/�-P�A����r�7m!���q�,���G˪A_��U��P}����''pQdŜ�4(��i�k���1�+-�D���M`Nj�!��+%���~���<��7j�Z�l
����e4��-Qi0
���<�m�R�K��t:j���v]e��ܙ[���#b��������N�4G-BK]h;J�د�b� �R6��os�O���-��?��c�V�NA$&����]��1�_��f��U"U� ��?R��g�
���.�w��@��A.�&+�A6W��L4�uE��eqcb8C�B��d���q��
2l|�X!i��"
�iY�0

��(<�\����S�"�8�JC�[���+>�4�[J�HS�&]��<\%H*�ۆR�
�eu#�'V�,f�L�yW
u*j�@�$ŗ�>(��>H*v��	9�n��2��b;1�F��]�T����O��{�$)C�]s?MBǀ/<��Sg�.�Vj�%�}���-���,^���"��ϵ�r_��?���^�~�)Ek6�^�}��U�M;�Cf��T���#8r�&��]`�xI�H��$q�$�&�����O-1Ip~�RɝUF8��V��<i�,���37��	_�+�&Z�$p`ѫ]4^Ja�W�����[Tj���J
��;�9smF��P�x0�D��S�M�_�"Z��b+�BL��~�]�U
�K�����L� a�d���O>��d�s9���n���X�׌NZ���5�tڜv�s?��T���%�o|v6軚��heķ��
���z}��l>����Y�R���g���0�⧓$/��+x��C��ǽ�j��;�Q����Ϊ���Ӻ���I]��Ґ|:�v�s��S�e�I�`�����К\�����cG躪�Xܻ@���j���
ƊD9�235Tj?gyi:N8p�
I�`5=��J�tx	*��4�NOK{��KM�H_�ɡ��&�+7ЇzV7���:�d���:A� �L�bO��L�8;����Y�[p�@��2��B9Ni����ns�����;FC��(�*t�ciyF񡂥Bڠ�(7��p�t�<R��)X�cY�<�_�Z�q9��<h��CSz��e�s��|�\�zÕIe��nC#��sR�)�F���
��h�`4W�N�!�VYA���ǟ+�C�� �/�ś�_�w[��;�Ks��~��/<���;�E�.��G�A�S�2 ɩ�Cߡ��|F
FXAM]k"w����TQA��<0��`YZ6�$�բ��`����q��F7O|��tM>�'W'8Uĕ
_��j�:��ņ�b�cTȼB�lѨ���(��+a/�ߔ2��S�R���o�t��ຑ�/�B"?�r5y��zBƇ���Z�P?�z<���Qi�r�H�^	�B����yhIJ�9��<���d6?Jz�fq)\:�d� �gY��O50*�[��9F�.
ks�t�I�I�^�O&�=�+<�G�O���,[��A�
O�K��{� ��f��=?-ůX��l����3���7=��t���u����oz��:�����{��m�`���6�Ò��4ew�f��-%,���Md��/���W����ɤ�����",��5o�������.Y�E����I⠭�Y�M�]�/R���'� M����)s�i-�Ȭ~�+JkY�����2��Ġ�.u���E��UX�!���uh��\��[�pt[lf�T��h�I@?`p��A�i�Wx��3�Z[����|M�"<~�א������D��F�,7R�j�J���W���)<�I��v�+��x7J4`+�O41\fDј�� )?�w�
�,iX���W�V�W+`?�n��Y�����U.�h?|��W?�������z�&hʓE�3X��!Ų�F�J���u�RZ�j��z鹽�N��"���2J䒤$�Z2������cH�0�_-%Qٞ3#�2�/�[
6���BuI��0�s����bS��3I�%����n85��I�5�L,�
b��Tݎdfʗ����c{�^�J0Y����,���Q�r�'��l�}��qȜݧs����:�1��(�Q���t�[�t�[�F����6N���"�.�2bt����။��G�SZ<���-�D�V���E1�w�7��$N��lw����,T��Φ���`���$fp;G�/�̞E�5��犡fQ�j�?q�M1S���q�t���{7��l�?_i��i1EPH���?�d��v䓁f�d�7*{���b+�EQm�/_
��H���/�~U�|�m��b^AE�C�g�����a��BE^��mm�$��wm�@�lrRlӠΫ�T	���sJ�Vx�~��
u��q���n����Rys)x*M�%Y��h�����4Ÿ���"^L�� �ws���S�shjr4
��fÕ�њn6��6΄"�1s��N�x��XQ��iiY��V0Aţ��R�2ׇy�%ߌ� �4]w$�G�^w��Gq@���@��u��5˘���n�3�X={\�={h�^)��B���H��H!��z���@Y�!��Z/����&]����������~��8-�>��+lC|���7?=9�ך��[�<^.î�.���z�z�-b��8�co~�{��R�(�Ozb�k��~;����)�M��3���-��J����	H9��"Ӑ����?��m�Q�%�Us� ��p��r

�����>m;�e���-ٳ���gzdK�@+�
�:OR�0��e`�` yE���H��dҮgg��;�p� ��"$�Ke�LV��F9�e"弁�&œB�|�t�*��3��qPk�JY:P���В�'�&$�(Py,�v�՛�ieH�ߴ������:s2�s����z��tr�v��3�}���	�|�-L;�UG��������O���'�ێ~��J,Ox�YH�E�p�7�D�k�T��"<a8���E�
s�c�)���Pi����}�SE�v�RQi������!qՑ�����tY�<��	�|F?�=tdh��"���
�F1�{�2?�a��d{Q��TԘ#�^Z�
����qX�1E���ӆ���	M+�\��m��!P◌��ě�����ј�ig5CC{%�+�/��(��:���7�B�E!퇶�5����,�2T('5v�xe^t=�I��ġG��ŹQ1�~W�����ur8_����M�a\]�9�ĕ
FQ���b6�c��S	���c�f���!/:��o��z��-@�z��^��'�|���E�N��t�Q�{�¾4�^����Z��Jq���9YL�T���"�Q4i
��x��^+ZS�%)]&9�Z���1:����
0Z�.��EX)��ӡ�V
��]�oO�RL�J���VuɛWv�Dk�=��
�S)��OC�1D�@Y�2�0�SŠDI�`>��v�v�%�B�e����W��!WZ�Pa����Q�=`sX��L���ɤ3�=����+��:*���� �V�i`+W+6j �A��ɭ6���i>�M�
T1�>�px|p�-���*�^Z���λ�y�1�3����<p����E9=��ξD
��\��08�EXg��NlE��%�?:=��N+҄B�w���ls,�<TO��ZIji&hH?���v��>��x\޻��{��H�59�[�$K��Nh;p��wM0�%'��wR��)Zb�`��w�{�^���]��9�|\�j,49:M��i4������>sZMq����fC�k�o"$��>�
���P��B�j�~����S��m¯��n\܀���y�Y�@�R���]����h
�~�zP�E}S�{n�l�o���"帆��"D�sT ���;�|�-}��Q�)Jm��<��h��.�U����9�S".pXkͼR"h���{�P�<.
_=�&��� hE	�}�&�y�ٕͤ�<�>����(�X�^x�[��ZD��BJ_�0KZ/������>~����G�Q*ɃR���'� c��/�^{o#�6�O>Fn�dqA�^��.��lj)D|�a)��)��`&��!�m��-�Kx��3�U�)���rpT�y
�=�Q�Q��4����;ey�a� 4G��:�h���RɐIK2�����P���o����#���1�Z��S�Lb;I����6�H�6��XѮ���Ϸ�>�R����E1:qCX�ƞ3;�,߰AW|B���u�E�rd&TmC�gV{4���kb���"�+du��-�n���{n9�����e���?��n�w��N�S��c��z�Uǒ��,�Z:���ozX<�L=
HYZ	�#m�1�rE�����b�X��^)�G
c�$���YҊ�٢ߛ`-�:v�n-�Q�?r�G����������T�|��B��N��,:<Q9;����1F)U�y�[p:�����Z�N$Ol�_�B۲v��}+��I"P�"�5�*X* �l�z?OQ\$��V42@
�dZ�T:]C�*Bb���z��9(g�Q���C��b׏�n�
O��ƸE@��c�?r
����U��:I�9�il�z�	�o숵qP�R{����$Y�񫁖�اZ�����γ��G�l�(�:͍�K�3�̏�In�G'˺ �O�$f�T+y�C�&v<�^���������$��ז�7������,��t��{�P�[E�FB��Ё<!��Mn)Q籧�5q��%��VL��s�;l��]�<��#\1|N�_ ���W\E��x�3H�	+�P��0�h:]�.a�_@�!�P��7��B�m�c�f��	��Y*�e�0A�T;��Bk\��:�*�ͪ&�R枰mpNT�x
�Ә���|��R�3��%V�~È�=�U�Idլk��J��,J���z]�T��L{��`�����x�2$��^��	����9EW	
��Ľ��bk>T0
������{H'2����N�!+Ɍ��]���tBO�e<9��O�j���[D�
�P:�N;��	[�tWg�)����;�d�QN��N�J�`�!m՗'.[�(LiW��^K8e|9�9ޒ̶ �&np�ؾ���;��+�ļ;
���C?
��@�V��P�)f��f�a����@���	�X
�nh�qR�
&��I������L�Q��U��z^��|K���tc1]\8�/Y��#jc�,�ܲ�U��g�g�!�|�R	�a�>@��m�ь���2[+aH\�BTQ��l�S�%��*���Q�E[�٧���;v���.�����Xc����7O���T)��A�*MF�V�vZ?�9�l<`v].�\�Mih�4d[o��6CP��T�ƑEd�h��G
f٬�!�*B΁~�	Z�
���`6�.^�������W���q�W�
�t�j�����|�_|����۲I�Z�?��92ʼn�KM�%ڦTTL��ds��z7��zUI��U�:����4$��r��ZI)�ȯ��o�y��%b��ċ|�A���VBk_#���A��}-�5�0�x�P�����sS6{�ޡ�Q�ֳl�)G13��Z(zv���
����[�ҸF[@e-��-2���2�#�Y=�X�K�Ug�t�î�������s�?�<xR�V��\��Ԇ̓h�Z��AH�3�
@*���̩��C9yJ{ǽGz�re�hd�7�[�7M�k�mQ�=�=ߛ1�S���}�/t>n�^{��x��1Z�g�mv��Ŏ�T`��yz��JA��P��@�xW�Xu?�Ί�
��P���.v\�e�Ѥ��c��=�p��N{��0��j3�h��/�q�4���8��քH�W����`˟@��{���!�e��ǐ�6��j�;��p2�9�2��Ȓ��J�)b��GK�h?�9?+5	����
�JɁ�.���G�LH%�J^;�) ��{k@c�D��^0�R�
�@,�h1MO�;���Q����ŖD͢h��g�ĸ��
��Hx��YL6�}���#H~�A!�uC�l��5�M�^�㤒'��Br���M�g� �RL>�~0P5ʤ���Ft�4�YH7�%1
z�Ñ��`��m�2�kEv��b/��!��^��_.j-!�g^��×w�0K��O���g���5#u���t��Qj�PA4Y��h�֯����0h��7��s�C(:�[ٰť\�ɏ�gʬ"O6dGRfJ��a� ~���h}�0ٗA?7,��ƞ*�0<i��6`�W��6<��%R�(�в�8G���Q�a1a��V��<7g�j5�H;C��l�hQ�9������pz�	oe7S���LGM�#YJ��Rɧ���#������Y�٠����Q������Oޟ�f�2��V��g�^��M^��- ���ן�.�V݃�:������F�A,�pOzw��F�W�w��C��0�=o��f.l<�մ3��;�M�;�����R���4=�d��ծA�w����/ԝ�k#
���EĽI ����r��B0&d7Y$i'ӵ3�҄�ib�R�tX�ɦ��"c����$�F�)OE*Z<��qQqe/���ý~߮��4��g�y��y�5Ok�Y�����4�	����p���K-3�w\�(q�����o�|9-$H3��}�	F=v,�2z�i9�ϩ��ޛx4r�rī�t$�h��r�X
-Bq$��
)̛�XDhj}飯3�i@�̈s�`��l��ȴM��H��@����:TVW�HW
i��
G/�I�1�*s�GYF��C�&R����`�zw��3���jH�)i
8Qa�F��x�n
^nJ(~�8n&L���I	dh���n�Mn�{�h9���K"�Jc#a�i-IJ"�hKM��I`�w3�lk�?|��L��:�z��J�pUݥV���:
꒘C\��o�߫2��	z"P�
we�
�D`���O~�+O��ó/��U��+��'?���'�Yd���K?�ů��wo�������C�ݗ�I'�P�)�w}3d��]��m�2�MfyiLі���4�"`�Lv�=D3�ʝ�"x/�"t�mX#��5&s���T��=��Z�D�Z�i�9�#������@�"��Z�xu<���\8vI�����Zm���!�b}�8N� "���_�oeГJ�it�ua,:�eu�Ҫx�pDJ�:T��+a݈�pE����̬l��L��O�hTP���1O�5�9�.���/^T�{�PQA�%R�K�D=��3])㳞]�� L�5���ď��`1�Qj�o��W)���r�(�c�����zPl2Ϲط,4D!O�e�3n��'�>�
��R��&��E��U�Rh�}<�'�ÙL�PiA��Y���B����)�8d��$��Fl��Iؿl��I�{�U���5E�Kf>��h�J>%I�J���i�b
�ට�CR�	?��dy�c��.*�{�*� �5���z
]�h�!�-�NJ�P�8�BHp����
a�)ůV����'�����J(�t#�H�,W�؃)+��yP���3�a�ʐg��&O�kP�Q�?��p�������Z�E,�l�yxG@xEA�l�,�,�Wȋ¼�������ݻ�L,*�@�������IA��
��J"�/�-�G����k��h^�Ԑ�(n����0=�	�2l�T�����k�֒�l4×l�DBD����A�;)!\F�w�ϾR��2��-`韏��h�x{;
�O�V���|�?x;�t�wR��F<�l��_H�&SN���R���o���3�P���u7%-a$�����N̙]d��F���e��a&��H���l�/󰷷pb�+1CS��cV�L��X��)�)�&������Ne�!6�Z�K6���ӛ��B�J����1�L��+�l
}�5��nO�ݽD-fu����"3Bb�p83^�B��n�]@Pf�t�Hg��qc�0OI�������.F<V�M�J�~����� �]ϙvlӢ��%vƈe[0���
D���@���(BI�r�N�?�(:A�1ݶ�-7���Ŗ��urӓ����W�������4�,#2�˽U����_�����i�����Pϵ�:�.2+�����<���qM
jy��%{����gԈBt��d�g;��~[[��$�Ɯ��p\&w���9,��x�}Ҕy�0�.����eq�{੡MNh�zC%��S�p�ڥ�z�U���^�
eŴ�2�r�'1)Ӭ	�Vb]��M"c/茑���3P�������}n�ό`��oo��<Ȥ%���Kghr1EBQ~!B�Q<"��5*$0�1F�҈l�ݣa��d:�u{=��V"��?��C�%5�b��`B�!��~(�d�'L��|��]8
;$k��1�E�+$$�w��]���E�dɬ�{7HX?[BI-1�Y��@8��!@.��ʺ{7�䳓TB��>�J,�'��'=o���}�V�]������ì����~fw"��4D�ӆD�v�zb��H�Y��:^��(n"j��#T�%1R!)Ad ��k)$��%:J�$P��2X�v�p�2���[p]�r�̇W�ƫ�P,�.AL_t9<V-(�r�ow*�(TD��̄ULB3���"�2b�D?/���&�0���3X��U�Z�s>�3�L8�/!��JXG7Bhdq]\l���L�����Mx�����
MT��'��C�5��ٞnR�E�*ء&��O�Rӱ9�.n��
@!$�٠&��S��X��Z�B��EqJ�pƥ�{2D��.WZœ��V⪙7.V/�l��L<�Xʃ���㨐������e��S34�B�ӷ�p@�M�7���ދ����to7�� &��l���]V��!c�`1 9�8x
�U���ʦ���U��j�U�^(Hr
ti��|~B�K �ۍ$���5+��ij���Bv�fqq��	��+z!�5�*�<cNE�r�3t�Օ	�S[���$CIFqF6��ʌӆ�#xo]��GV@F�1��7
'�����;5ǃ+�7����1+V�D�Pg0�%��N�X\��Z:^��;V�����<�|���<�Һ���b6D.B�������D�`CDt�w�~�~���("&�,I�v�T�n���WQ5���}'2��4UV@�F�z�T��Z�YJh4N�����(M�9��}����>���}��#y�ދ���<���[��$�Ug�<B  0����[�7w��U���",U��-��\Y�Ϻ����N�X�,c]xo^�r	�㾾�K0 �����Qp����]�5o��o�8���u����:2��7ϣ���*�\����f���?x?c]�lq7 !�F�>��d���L⯊t�yñ�^�&�y��0؀�C��Ic�����O���Պ�:�h�E6C�`zq���]��������n®�Z���l	ڭ�o�-;Q[Kh���6K'
���y��i4:����Kt�>�� JB��
7��!��l��3��UdZ_����#xڙN����<~��<(6�MCB��ƴ��Y�2Q��\^�`���k�����i�[F<���ݭQd4Z�S���e&+&��
�Dj�S�aL��_Bk%��?�H�w�'��F�� *���
<Y���O�G	(1ONSq���Uh�՞	Y����C=��w��z��M&�a�c�b{ं}"�!fi�(��O"QV}+���I)o.�4P�#�F���0(�E��V��\�"v@�Jİ�%]-�(�Un���OzY�y�Z4������<s)~Rm�!��*=U��0�Dm_��~\~��
�`,�hfx+�����j�B�5�¨��=�0�G�λ���#�#�<�һ%�<_;@)��ƹ�F����(��]Zn���[��m|��
%��?��鲐�� �)�(_�p�|���?��سg{��=�r�]�s����o>��iW�<�)W_�YrPg���{�!:TY��eN���۰��{�׭������x���a�~>�r�d|ĖDj���T���.���-i>u~-D_Z�ġ�`��e"����kpQ�,�Z���U���V�M�/�u�|_Ia�������JK���QN�*]�s��us����ĺM���E��C�6>����y�wdzJ�^8t���ݬIh�&�m��XdI���{�]�ThK7܄�F�ґ���	���/of���s��wr���P���6�:��b���>�u���fY(�!�ۍ���R�@J=6
��`��T�U@��^6��<}���uxrrrX-6+vg��}a����L��A`�C��|l��t�/�CQa��=-^x�[���D�ǰ4���LA<�y*�Z^�+d�^u7N�Lآ.k�w �%�&�#�7��s�@�G�9!�rO��"���'���c�X��#	��A�D%tM¿K ��i�������ŵ�H>���V �d>�C/,�F�2���A6	�n�Ѽ�����D�UgZI�0���Yˮ;i���	_���k�j�n�{�-
⤿����V]Pk#�������
����S�lD�AN*&�$�g�\��\�h2�Ә�&w$碄�G%�E6T'��t.2���=�5і�	zx��Z�
>3u6�*` �-tg�k��N?��7�:槑�K����o>����|������^���Eq�ί?�ͯ}�k�����;D|�Nd�_~%��&�wgfܚ-�����"Q5��0K��|9���/��� *z8�ɿ�n)k�Q�ă���� �Y��DÉ
-�`�C���l�q��Gk���%�%��gr'��oAA� v��>|���!=���qB��&%:s
w��j
�r�gE���<C�Ý�c��t�8Yc7,�s�Q�0���R�c"�*��	u¹,qI&Tg���栋B�=]���l��t1�ڴ�!R`�:�rq�)Q[�q���as�M���>���noW�:�-
Q$[������^������g$���Ұ���}��Ӄb�z�}�C}��������������Rin���2�+��.�Di�V:���ܤ�G+��ia;���h'?��̑pixq��.��)��u��<��*e�O�Ъ��D��DS����h��8C��Ǽs/�&�Arjd_&�f�]�����f�����
�G�)¦�c��F��<���N�Ip�����I�rw���m������Ka< ��p�~�"��t�0�#�D��P�o���Jau~�,&aC�\�߀��	Z��T"�y@?C�C�O6s�h�4-����ZBKz_����f���4��.�鎔��Gh��#BqQ�������-�����E�O\��l�2J���Ζdlv��S��Js&Pi�_��gs�,h��vBQ�b�[G�q5
�c�s����z���X�NîK����o�	f]���uj�Ԏr���������߽}7_���;T�hmiόn����\%���߲��D�%���=y%8����x�\4�1S�>�vJ[q)$Qn*n�ZZF� �tJaS�z�Qm�f����</g�#�߸x�ᝇ�es�Pк��hj�������?���;���@�8�ϟyZo6r�u��|R?\����x�v+�5�OmC%�ug�����"-<�(0D;�1z\�m�`�a
mn�\(�>�ٟ$+�_6:� ۺ�1��kmw�5h�
4n{��k�K���t�m�O��6V���M���A��b�Zm�V��qE�…\��n��ݐ}����gϞ<y���W>����S`��nA�O�-�v�?��O�ۅ�(��̓��2$<�ꋋ��Wo>���'��{�禇�Y_~}Ji�#�^�~�=ʬ�*^K�y�w	ܒ��=�U������G�����2iI~8=�$�Y�]L���-RQ$EuUlw��P�'�����¥�nmS*����ݩ�a�d�`2D���"�G���`m��ٰ��V�a`\�`#�W�5���.����&ل:ɥ��jzZb��+,��,
�V�����k;�^���x�JTv���PҾ�+���6��`L��%/��|p{�:^�i���i�ɮ���.�4���@�[�-���JWA�_΃�H��V� R�ˏ��1V��C<@�l�+����Th�����~�4�����k5no5莾m�0��l�qZv�����/n���Zz��_}|3���w穫�r�F���,IV���g��W^½���@�?��w���?���\�k2Y7��w܀��`��&�_$�3D��vg2� �^cH���v{P�3���fJ)�~w�b"w'AD�(�E?\C��H���E
�M�`Y�l�=B�����3��BC����)���1Dl�q�k#���PG� �ַn�w�2�U��J�f��؃���D0Vm8>Ы������A}	�}��J��ծ�-�IJrㄡ	X��ܔ�����޲�$!�5��+9)q+��a�����킆}1oO���7l4m=�A��M�lmm��-�l�Xee��ئFjڕ��㧇���ʢFz}tZ9��Ь;}�~yx�_��iT?��/|������'�>~�9o7�E��Y�I�y��D��x�����/�?���G?��'O���sz�o��1-�F�ֱ��R�$�&���Kq�����9�S�"2w�#�1
�֞.0��������6/�.+��	@���+#X' _�V�aqC�5a����B��&�쁖p�gJ.�j�iIY�+��Erp�+�w�p[uZ�U�0����4�|�l"��4*���H����b�����ܮҸ�$���'ޝ�Wk�+,�I�PF��K��bI���m�(J2ĕ������A!�:Z���q¼��w%�a��XgHz�#pZ�-D��Hb�3	��KmP��yJZ�����9���-���6q�#z�>�G�k܌�l�:-��+�^8�i��p~�҆��Ï}�c_�[j�\���C�/�d�L��7�����ז9cm��8���o~�:.�ɩ��y��:�1�?��O���߂Zoߺs���ywwU�f�i�Q	�Pj.K޽&7�G��v�X�A�ۚ��\���bńR�
�Y=�'~��{� �0!�Z���Ff�L�5��p�H(_����%�8��fރz�Zp3^�M&�|>�>�����[��O+�wx�`���^�l#I��&3��G��t�fe	�u_S%>�fٷb�u�v��\��%'�׆J4�%��kb�xG�>�L�ҕ0t��qܛ�)�a�t�{<�Mf��c{ӓj�����-J��1h?��lj|�����~{ځM�nӬx��H�
�N��T	s�h����:�zBs��>y�<���.����
�^����-�\�3>j�|�So�|�C�;
����LIJ�c|^��*�}!��T[Z�hGQ \mm���˱PO��1C���e�.	������D����A����Kz��*���&>¨��T����H<�VvL�`�Ft��NlWv�V"�AT�\�����?F��B*8���S�C��Q��e�����2�ס݊&9H	q�v].�@,}�,>����W#ge��jQ�\����7����?�`R�IJ�$Ĉ�A��`ԕ�o�ө:��@ۇ?����%����]�(KA��f��� #�S�*HF�����R]·��EM�~�n��tׂ���-[6�h�K|�0��Y�7�]����k���Y!��&�<�]Fqsv�������럯"����g�l���"h#�oo�c�Ew��Q���o^����Iߋ����?tr0qɸU�'_���į��XܾU}v�9�s�L^�Z˙�#
C%�rKؼ{�w��ZAt��r��-����/=*�.w��}�n$	�FmY=I+�	i��Ns>�s��ںkd1;�;�d"xb*�..��T�ae�0ϳ��������"0M��Y���w�&�́^�{X��:��X�{������
���W8�醱M�z�[�H�g2�}����Ɠy��!x^�Rһ9TU�p��M�%2��K��O��<�IN��ܼ�1��9N~��bBMІ��d�c�h�<���E™ۭB��¸����a�}	W�ŋÓ���tڶ?�NJ<Qh�l�5���?����� ��-�2$d�v9��D��_1�H����:=�<�����>y�������M���� �.
��j�2��b��KֻБv�Ӭ8�\1��$v���
�١�E)#Ů�� Z�㐨S�+m����p��fɢyIgGj���%�FHAm0�شq�L���a�H�BNÛB@1|����E`�+�h�
��g�9�s;�����Ն�vI�%�~�d&����׏ ~Fe��a�Xjf��%N�4�m�>Yܼ<"Tls=��#�ꌂg&ۍ90�D���^�Q�~5\z/;1�6���z�~7��mP�X����
wI��y�U�A� 2��`9�BC�ߪ\
ئ�4��ID���^��	|t�����B������8��.��x��w}s�Ë��hv��������ޑp�|��E�N��{�����^a�͵uk����*�����5����������P�}7��|v^m�֙��F��
U+X��b���R�L���VϟaF;�Ő�#R�%��:7;B��D�!n �KV��a�V+��(����W�1DMb?�2�y?��n7j;��A���+�x�*��j���m�l�Q���Ϝ�)�D�����Z���50��O�;�]E&5���Q >M��>���`l��ژ�4	��(�n�/��>��_��V?fa��h��Mĥ"rf0��ЀSd�U�Z����Z9�>��;�
}���1bB�_l={�=F~uQ�j�;�K�-]%��ݴ�T��~�򐞯 ��
��-��{�~��:ʍ/�:L_}��۶�q���W��A�	q֥X%]y/�t�bzZ�~���U����ON��?<=��J�ݎ���X��2^8�$
��,
d�he�CG��F�kz=��$��Ɛc�b#��:L��s��"�‹̋���C�^��,(��b�u%$��&x��X�d4���}
u.�gD%�FD��$G%ie�
�4��q78�|���(��
��*�#؅�R����%lC󉓍m��1x��h�#�RD��E�>�I�@KM>*�����d1d+S*�׵���b��J|�F�yY�؍�	�|0�y��Azw>���{bl����к��� 0�!�x�|Úx�IHE�@��4�4˻���ތ�Ֆe6[<��4�$��:��
S�o����lXm��.�
F��
{�����d�v�_x�����V����dI.���%r�t�L"@�8�?]�Un��?�^���7�L�����Fp���wY����)��V� ��g(��%h4
2E���^ҿ����*�2�u��Z^�j�K:g��D�3kŜ,�-B��`��[�3�F~�(ؔ���V�Y�ʙ��x���qo����Yɒ'�w������ٽ@������N�l�ۜ��Ͱ��b$7�d�P/�N�5�L�؉�I�,��I3GH��N����E�ES!x5wL&©f�wcr��t�BF��UFlã�
��&�f�5q;%����rm0	���~��/]��fĞc�u�_I��*s�'O�����Ӄ�yE���-�b{O�mm\no=�(�ÿ8C�EBCY��U\�A�U���>�/>�'�{�G����.N�>y�,$�t��Y��ԃ��e�n:v��b�n�J��D�壽���G$$�}��1��'���/��q�kܸ21f�V���c�(��)�ki�=�%��-�+�#F,N���%we���i3��\I6�*/��1𝪗Ast>�$@E5"�Y�PFd�/gN#�Q�YÓ&\/��2�EB��؛ר�bF�߮��g�[�C2�
���:S�2V���m�|ܥ��&Z�sm�:6��;Z���*�>s��m7/1�ɒ�����
�
p��"Lp�aL��G������s�B��T���RWPGE�#S����.[Z��%�Rw�u�D6t�x��MfR;�S��ZI)sm��Ϧ��-��[*C[�&�����~9������iy��rΫ�Ee�C
?^�o@,)A��l9�?Wǥw��o���p���o���_��W��� ;�KW�<ٹ��p�^Ո��b8�S4u
�;��|�_��\D�~�רxzaJF�a�~�K�L��e��h����g��_�;�����_4�m{ӯ�{3��7��Hԝ@\�������tAq�l9��!�[j *'Hݵ�MǶɤW���&6�$����q��~���;{���Z�Y����f���CU���!PB���c�0H�CFb���X�h�}f�@���p�!r�|lXg
�}��	�Omj��]L�4�����J�M~ϡ@���%x�FL��վ�OR�Ԙ<�]q��;��Х�>��ћN&n���&�
K‚���^�_#mp����)P��O��[=D7u���n;��
0�٢���:������ݲ���ET�\�|j7θ-$sn9�XLY��P��V�T�V]aG�TS«�tV٣
[=M*�D�d�mQ�H�	�l�f42V�TCFk��'��Ð�����_<��mv�{�>B"E3m�r�~��tB��Q���[?���Ŕ�OI:�����6Ά7��
�KJ�]�żv��ţ9$p
�8��z�X�:p�,��@��X��0��Wo��7���(�l��0�C�V�JE�
��L1�7C[S�c��1m�[�����U](ߕ����6}iDz����h��rލ��ix&�>�ɗ�Yu��6���Ɖ��1��@ �0�VVtӄW�����+�`�2:� X�z�聰6��/�G90�C�8�0�m�`=���OO߄8?0J�~�A͂VNl�a�N+�6�zf�S����ȳ���w`rԣ�P!��$Y,9���ěl=�Z=��҈^�\��u+�8�c��r�S��q8$"��?������ޏ|�2{�8;�����������{|&���"V�}s�o�Q�5vh!d��b��pj��MtO����{�K&z�p�"vN�{*�8�H
�ǐ?^R�'����j���
!|���Z�S�,����=��@��u��5k��bsb�j�CT؜J�9�4r��@��b?�P�����ى��A�"rd�ٱJ=d@�ڠ�h���b�ʙ5��B4�xȈ-)
�V�Zt'�A�C�W)�{<U餌��̮��;c�=�\�MS��h�&�d�㱮�q�q:^�F�a&_����j+�C�R�``w7�7kC�(vJ��D���^��(�
�+	���
�`1�J��aw&��6�U��"O���ϳo$#�)�)�����`�H��i��:����ݙ_���b�ʲ�)�4X���^���t�4l���+tD������J��Z`��Ƞ�Ǟ �q�A�	��3��P�P�0Ǡ���jF�Â7�j^�]8�(��L�9��5���:��{�ǜ�\b�ÕM�I5F+�H�ڕ�ta�r��h�NĐ��ԛ�n��fs��b�<�'h�v^�}ķ�滧^�ڬ�a>U���)��,�8+7�����V2�;9l��Xzu�e,#����o����fK�nV��#�0�G3$}�Z
j��s�>Ѻ��ԑ��>��@($�>�D'Ɋr{<�1F=?{��OT/5�4��<S�8R`δ����p�d��K�ó�*.�:�Eu�1:�j���|�]��Z�u�=3�rD5���E��&f��
���3�_�n����׵���;W�!4�LP�LM���2���KN��h���$�FR�p��Y&��lj�C�սݢ�ROz9	j��+�Q-1	�$"�LF>Gؕ�&cO��KA���V�J���3z#V�� 8@‡/tjp+�%��vÜ��U���H�t3��HJ�e6Z9z���l�[�b+g�^�3ƒ$����6�{^3?c��%4[T!�¬�Z`�mc�����8{l�kl�XI��8fjX��FOlFί��[�Sj��
����"�r�PG�NV�������3l���!�A��A)���x�-��G=�i��/���e"�NT����h9��j+Rfaњ�/�ggQ۪"����N����<� r�	*�L:�t��]�סn��������u���
%e����=Y��XtL���YSl����u�K8X�b��za���'>���X�]R�U‚��c�Kg!V̡�`+H���[- �
�Rq6i>P�������D���q�kF��“��Et� \J��$�|&a��'���m�n��5"h�D%
��M"���|��~5��G���kF>ꈑVd�<��F��N㽾�Ed�ae�	ݥD���b��8^����q�W�v��nhC����/���f��0��h��8��r�V�[���ե�zű��-F�=�SS��i����olA;:���S1�;ExN�^ rc�ա����u�|0��tR�es~!r�2��K߻�>��4��C�e:<d���)G{<�}!����H�&F���E����H�N�U��Vߌ��O�`LĚKے!�;?ꛘ��D�wP�;PY��l�x`�f;��ջ�V�{�}��P0�Ў��ܤU�My8���p"S�Vx,�JwJ!
��lk��Z�ܠ鱊-���,�E�d���+�ƀf�L��N������y�û�X.7���y�ݨ��O��nB�U���U��K�/�om #���9e�?��;�B�fEQ�	Q�.Y�c�RB���p7�0ܳ+D�G���$�x�(��hcj��<�i
�:��mKaޔf'�鶰G>6����4�fsoWJ���R��0\,��T��k����9�x���'�y���G9��hӯ��T�nJ��0i2��U��oW�?�}�sR���� YγշoO(]2��n*/`�Xl���	0�!�R�Q��bZ���e�7Q�(��j����I�b)�aM�њ�
�=�f����&��x�îv��Vx���t3/	��WoX�.\�ֺN�N"C��a�zX㊥�D~�N�Q B�"	�3�l���QC��_�YtAA�4[�U��f��eH�!�0�1*��x;	����V�����]� ��
��m�
�|g0ij�@�̓�%جҿw:�^���kq���i��D�m0=tt2!"�T��o:h��%T�#�ç�c�;�KЈ�C��Ŋ
�2hr�F�����	���0��߅K]W
/a�<
�_�څג�
��$aLCx}���!
J�V�ة^���?�5#�椝�>]�ߠګ�<�\	�w3�wz�P���~�Z��KH,��|騺�I�V���F���F�
�q�Ѡn�P�Z`�%>�3^B�Tb�� �3sBdѨ�Q�s^=
/��3`�M$F?�҃��m����pN2���J2�ID�Ir2��^o�	!���h���j�n@,"���i�'�����~�;F<b�lm�y��F�l)��nY�:A�Z_�F��K���J�ٙ$��Nߋ`A�V���[�Vd5���.c�)Db��v݉H�<@� �x�4��B�rߚ>�-�0��
Ёߨ#[�ўb�����ʶ�W+]����Y��318d�8%����Q��^��TZ9�݃�;dQh��v��n;+c:�#�OB.Vƣ��=)��@`����fqK.M��{����k�"�o���v/9y8}}������;y�×������إ������Qp �6 v�/����L�������3��oQ�TZ��\�fҹ
r9�����(\zs�eS�oQ�(K�_��p$���L��/рR�bD�,��Y��bFOTL���}=��|�X��q�/�4�yƥY�"�A�BTM�<�ۡ���]����x
�k��KQ����-d�c���L�J�\�Lz����/��1v�*��;n�V��P:�k=���{�`�Sc�ŝ�D����~k��FX`�Ǩ)���‘7�ӥ�B!AQB�:�DZa��u�m��-��i�z��H*ɺ�y`�aS��p]ҳ��dI�$]!8����r^Xk�˧}w��펳f�N�Ey�n)���OMf� x�p�pg�����e8|�Z��ǟd<<;ژ�4�_�G|%w~.��v��g!�9�e�18���|���(�<�%/�כ��ivcOO�dc\r��'�*rϩ��K�]�8k�&�������L������%�$�.�\9]9&7"���[�p��#�7c�1'88�D��;2�fm�*2y{\�A���E�ȴ�s
�Ԯ��,^�,6r��jOKͅغ��7�r��ߑ�ws�jQ1Ǟ��)
	plˀ�)�9��]nj-t,��e��{�7yX�&�Q��]���V*y��M�
ۡY���}�>�:�Nn�F�Tmz�W�p*��†E��&�LK�L6n��i���~�ߵ�� �'Ir}�p)m�x��p~
.��Uc��s��k����.1��I���}�I��W�o�bm�j�Gu���_ONvvV���x��wZ|s�=d1H�f���۴�:��#����>
<Pp�Wִ�Rӷ�,&�v2��S�!r�s�/{�GFʡ�9@)�6R-����(&��3o����E�)���X�]�P��n�@�E��;�Vn2����8������j{"m��.�<b\ڜ��x2�K�
5B�cwݏ*��:�/D��I8�5���V�YSɞM����T	Nk�0����E��ݱ��G����1^��};�ؖ�hB	p���Jgƌp�i
;5�@�p[��98�V�pܪ�R�6����ge��@����	��xB�,x(F�(����ۛ�k�!a�j4���1�.W�ZfY�4'-n�r��h
~�<>5�����:5�|�CJUw(%���	ZY�.U+��ɞ�5Y	J�)_B~*\K�؟e�ұC�=\@{�V�Ũ?b�c�Cwz������L��W��Ot���A�D��L�9�P��=L���8ʐ�k�L�>???D�V�@B<;�P'�7�H�W��c�1�[
/Ke+Lz��31SLL"�TXb�p�ʴ@�Y�ׂ�Ki��Q����{=i��EG3f%�G��r�	�j���1E���G<|C�4-fM��Tb3[G(�S�^GA��237\}��� ��u�
���t���@#��(��G*ì���߇ݮ��]l���{��_�QF���g�8����յ��T*`C=���;țf�.��;lOl�k?�\ۉ:�P-�x��1�ߝ�ټ���_��*�4k�(,/ԍJ�~���U�����Y_C񳺺s��]}�q�,�j��E��U"�Y�Q<��Ԋn*=|�#�Z�C0FՒJî�$�!���ry�u񠅵�T�~�E������|�)�9	�����}��f�*�/Sn�j��5L�E.��Q�)7�2���Ф��C�J�}�`�N�E{#A؏��%n��f�Fd�Lۙ�DފXx���尢�#��Z�䁺3_B�~0��N
�Q��᎖+*��97�i͙�G[���~���I�U�l��V���b���A}�.3��a
\Z%�)b%zb;P�R,y5F#���Clٰ�yw�[z�h�������l�J����w�j<q`�Z�h��Bk�MZ�A�8hru�E�ܴW��]�J����[�rU�F���V8S?��C�ԭ��駇
�_ch�|�R��ț;�,�,����$�<����/İ`�ƺ����?�2TP��axB�e`�l���T�1ul��Z��h>#��:��Q+Ek��"ֿ�DDm���E���QS�Լ����cY#�`��6B�Q�{�f0��|�m�����H&6�Sx�	����2k�#9��Z��j5�ܞ�ۥH�ՄݿgG
��C�~��h�<�%\P#F�(�\�ۥ7�:J��N7]OP��۬5��֌�~�|��Dk��u�+�g׵���j���&��#�dݮ�H�/v��R���[��x��aG��W�y���Pc�o.�p�zt�A�)Z�T�P_l�j�j`u��*�&b�0���kT��㭍��U>p��Z ��u�v?����,�K��WL��^��!��UG�4t�	P˲�S1d���/T4�D�V�Q�f;�ľ�șe`�
����c��(��Gj�w0譵3+`	�٤hy%�
��Ue�� 
%��Z�f�R_�k���w}@S������x���2��z�u_>{ȕ9ɀ�z�Y�m�ĭ���b�^��1˛n*�&��#�|�D?���d�+��f�j�Ԏ�d�i-4��n��`�a]�i�t�
�E�]v3��D�"x�2�<M����o���\����$R`ɱ�Y���i�J8}Z��'�P+
�A����f~8G{o�)�"�nOY�[�b?�}F�"���ɿ�d��_Ͼz���'FAI&����Iw2�RM}��r���
a��{��uU��Nͧ�R������~�Q�������p���kX?�_�
���V�s^J��!���͒�Wl�&�N37���8H�B!��Ά�&.>��2b��I#����D�� ,.��Ŧ�g��҄��D�O6ݠ�0�TsR��ABX��j��������ihe�
x��gg�ߡB��N,�Ds�A���g�1K]�ˌ�X-�����8D^���S��mD�yYLi�F�2CB�<��%Q���-5�N�߂��As����'ѥz}_)�K\˱Xx٧V���`��‘\ը6xxȖv/�T`�W��v���R�G˴��� �I���i�
@2�L���$}S�p�ʝ�JGq�pn,Sb8��Iج�2z�o�i���ϻ���[��[|�^Ѩ0$�|��{��t��bFۈ�<�pw���Ϊ��~�P��YC��xłD�0�%�Z��a��g���r�7s��eqN��
�-x�����W���P��U�Ւkkd�h&��8E�#�ϣ���L�\%wV��«
�`zxy���L����`T�]sd��ީEt���\���G8�Ab˜����Rɮ��>3İ%��E�݉�
�jӮ�Ui��E��VrS9J��k��{Oߪ&+�`�çX�X��ti(=�5�#���ua:M����ݰ-^C-��H4}Ƙ�7<E̷
l+7Ѡ(a`\3l�ԧ^:���mXG�<h�?�����#ft%Xc#�LnZ���0��g_)��Y!���N��VdJ�m%�O�)l|�+q��ү���'fxً*C�&�6hQ.��?Q���v�N�Ə�8�L����q������<d�*R��f�1�G�"?̖�����ww���9Z.�B5���<�]�|h�$���)-u�l϶6�	FJP�2��<|{z�;Bb�S�Df�n1X����pkOD�u�
|�~
�V������d���k0�(���K�46-,O͵��
`lpw�M3�b�T��k�f@;9H޴4֪C�/�9�j?x�B�35�xR�aI�w�՛�ڕ�+UN���B'�_u��b����9y��RZ%4컫k���Ǐ'�)�rv%H2����Y9�� }\�Ou2�M�dx�w�c* C���3=���%�tc�D������V&�����T�tws����ɋ���?~���X�ȵ���۵5��;Xմ۟V�E�8ѯ���`�O����i�w��R�O�����j���8R�L��+jNji�A~7�yh���Mk��zG���%����ݔm�_t�I{P����+*W
��{�K?�jr�h�n�Xb�d2!!!��bMG�����j�u�܋[WH���p�4���}��Z� ;Tjf�|�zArpH�}
�`]5�iDǃ9
�n��_y�0(���D
��")[��mlNu	��Q�a�sZ�R��<c5���<�%����RlM��M���4�X�m��_�'��&�E8xQ^�ot�\�[)qA�����b����y�W�Q�0s�AS�nsrI�2�F�M�����Vö�N+��E4n�h��V޼����>�I%�+��S����M�b��fq1���vU�Ū�X��׮��,R��evЫ=�T���qZ:��t�e�+��,Jz����N����Ҡh!E������p�"��2'��3Kd8��!�2[Y�(��c:�����{��`s�x:�;̅Ѥ�K6q�+ X�.����P�?��G1Q��mt(r8yu+�����N�X���Z��t��M�lJǜ�:_����MV�+	�K���@Y��,h�-rS�޽#Q�X���Oһ6h��O��:&U(ߐI6�
~77E���0��	��
攒�"��,!�x�yK.���x��Q;����#�iBk���y-`ky�Rr䂵�e�y��l�,��uG)o��M�Z�L����ŇW���̉t]wNDXL$�k�%�YgI��k��.�-�⛕��j��H��
��Q?y/�/o{�3�u <��G�E7`
rP��p��Fy�����`
��严V$;�v�/�"Id��R
�!���7�~m������u��T�5C���K a'wiiH��M�=�4�A��7�$�@>�cPat{@m�V)K,��)3Ekh�Y�9�
'cq�2o�f2[����@m3�@�+\wk+��f�z}SB��J߷��A��4��̣��p5�N{�)���É���ycy&bdK>�h��+�{<��A�����޼�BvDs� �:f~�~5Sh��]�Kݾ�x�|�uU���O=7hpA�����q��'ѶF+��uD�Znp��uq9�,Q�Lz5L����A\���_�_��-��3*iG��Wg�E���&�pg*�.����9k�Qwx.5+|��'A�j9*W�a�l��5ʞ��H��A%��o�.}��`7��\ѻ��]�1�`�j8���ߜ���#�j^��tH(���bCQ8��<5#�a+H� >��XO���N��l���[�҅C�Yw��H��%��p���kG��(�6e��
��j��* ޮR�Z,Q�\�t�:�E��f�%_dԫt[T�t1Nkp��b�߆��Zk`%щ���-�Oq^��X�Z�򹛠�@��R}!
�-_��K�ۨ�2ewf-Ն��F���.=�+45�~8��M]\\���J��&j�XV�
�0 溮L)��Vw�3���%���S@�j@����!��=��N�L���F��p�����D��"`�P0+��_�X[n֏����T���2�3�%�5�2��a{�_r���xZN�Yj�J�Gs�ǜ���K{e �^���/"r��Nġ4s���A�$��-��],kV�g��@�i�ã�J�np�2N�I/�&�~���aUdE
�?�7�p�̃��=�l�@ɒ�x-��Pm�q�uI;7	��w|��
A� ��dSp�-Ѵ��w�DB���+�2�L;�ף�w*���)6�(��W�z�a�q���)ɬi~��ڊ���ht�A>emc�5�O�2\�Mﻓ{�;ͷ�;2����a�V�V(Z����A��ߡ*
^T̕��lkB�U��x=��C_�f��%ձ�"f��0*UX���e��$��O#dv������lh�Z��ۏ��]�\���J
�̈́�ܱXL�M��Z��U	^6�6��u���]������v���"�ͻe�,���h�]^~�`UI�l�8ws�*���9�t�Pϋ����NS��ݗGc�EU���G�fCR�ģe�G�8�= g��Əs�-6��`(w��e�C�쒕�
�V�23r�gz�b�,�!u)������cg�<<=�
�TQ�
5�
zm%��)߱��%\h��mY�@s{��J��,�j"Hnd��S�d���a�o��4C+��N#��堸r'X�Mr�BV�_����ٯ>��I�G�B�v3��gM[�F6�I���kBf}����G�h��5��t��s��0��Ug;k�4E�R:|/%ݶ��]<C���%�f���2��A5��S� Fd\����#>�rj�U��Ƈ@A-�ր��0w^-8�-<dI��R��la�{a����	�4��r�����1R�x��X��io�F�=�Gd���tpЏ�8��^��tP�����_6���clL�����s
5�.bJ�넖�vs;��eR�m,�t�yDB��D.ԁ�~�������g���d��ϿE2��X�ч@��ũ��7�T���mW��L��N��0�D�>��\��Br4��lǔ�+i�,�M�pﴳ_b���ʬF���U�ђŸOȊ.L�+�i՝UC�8�S�%p@�t/9�fn<��E��⅚ةM*�k�c����d�c���D��Ӯ]����`��?D��#�`޿Ť�!��a��N��5��#Uckӗ�,*CR��w��iәLt��]�$Pc��mw;O�d�GDC#6MwKu�,F�?���~�]�K��G��q��!�׮oSv�r��k|���1k�]�]W*i~�����/^l$��/��VzA�חgԴ��7��o�F�;���!���E|}��ғ
��~ڞ�$�]�L�;Ks��V��s�x:G���η\�|����W�ON�ҡɞ(_�_�o���r1d%*�4'8lsU��N��n�5��<�b�r ,)2�Nد��CF��e鳟���S���#�Ѥnf��q��7[��n��[1�˄�3��T#�}�A;���H?���hҖ�Ӻ����c;^S����N�P9��o$p����Ջ��nf���~�C>ר�\y<޵��b�tX"L��`� 9��p �G)����'6v�;g�$-��h��C|��*���s�@1䈞��䈆�Ԁd�_����u��$��l��,5k�2%���L�e�G�6�+�i	�MX���_�z ��	Rc&�����B��D˪ڿ��m������H��#�%�L��ic��]g�<9����e	�j0�|y���`�M�>TW�{�k�?h%�Y�Ay��|%
��)B�Y��=�cV���h]_K�Cc
�P.���Z�JX�	�����1[�s� =�^j������<n���x���)Cdp�:��+L����b�=�":9�	$ȝf9j0�UA���Oll�Sv#h	cO���B���C(SXZ���x�/���������� �X�MWe7�p񱯼^��@Y���n�m!'��-us=���=�3�}�F<Λ�@w�]w\A��Ǒ��Y]'�@[�=���T�wo�_I�",)[E`��5���}���Aql����"p�^8c�q�/�:pq��J���࿽@=^_��cIӡ�V�#��߾=��ٓ9p�������4�R/�S�?�hmkE\r����
�6�=X��m��^�r���7�{�ak�L���Ó��0�u�yļ
�z̒��5u�<�k�z���
{0fF����em�Zҽ<����4��XbT��248��T>#��]�6���){;�aB�����������U�>~��ti5l>���*c_�⤗����J���U���F�oe�h�bVz4z�_lh����>��5� fa7E��--��������i1s��:d<��Z	���j�B,����2ī旷=���R��I~9�3|8V�f���
�tL+�7�?���L�t~)Zz�,񆀴Ex*�/R�d�O�1G
T����i�u+��du4~`$
TK�S!�E��A&(�O�7J��w�Y��>�Fj8��쪸¥�]1Y�(�w
�2�V�Z5-�g/�����v�[�v�&��.
G�as�C�G�s�ft�� }	T�Y�CS�Ҡ����w���}թ7��U]"Ԑ�ppn��Y�;Լ�V����؀<y:0EBؑQ�F�ک��7iI*�-���cD}���*5Ə��)O=�_�2�2r3vIM�܌A+X�K_u��-�)��R�Z�k�x:6ͽ�w��&����m*Պ�2A�w3.^"�c�6"�f�>L|h*��PO@����?-���]<[C�{�0Kw$q����4zR�Dٔ{� 5�쒂ߺFW�sUz�4&�_͵z���R`��2v��[�jG�:�6=�:�x�9>�G5���_��5������[���GJ�uꬩ��,�HLjC7� �����:�N8�L��y�SL��k��Ѩ{w��a[�iO#��Y=�0J��k��z,w=D3��s[:X-m�0ƪ�twf
�A[F@{�������2��ΩMl�	��3����E��r�_	������06�L��e9,��������.�wA�߾g+�6�ݫ����(y�``y��2k����n;���H�4
��bv����LQrvlTË��V򻻶�
j���j�$�R�R�1d�R�][�g�˜�f�'��U8��}��/9����EK��n9h�$QD���<�~�I�������.аL<t!&x|v��&ցv'�J��*h?0j��77�+E����qF�n5k�`zc�@-�P�Z�Lp�
�N�X�{-M}S,!4�`�0$c�,�3+x����6C�7sk
H�HH$v�3��9���»Y�������t$�����هRX:w0n���
�b�cn��pߢ���6Bd�6{ϟ��o�W�{W�k��E,������ڻ�~I��C('��EI���f�� ��Z;F���[�^|�L���=��
G/C��_.�xRtU�/ܰ��ؗ���k'���D2C~,�cXQk%�O��O����i�T�n�D���g�I�p�.�`Q�Y<�]l�������0X��~�ؕ���wͺ9O��׳a�^[��O �e�E���-j{g��nw����]���c���ͩy��<â{��GO�|��zflk���xĒ�B��$�D��p6�ͮT�'��i"��J�т_2�Ѩ�,��$��9�.9F��䵂�M�]k��ɠ�܊�s`���[�Snk����Q��Jœ�M��"9Rd�4��XBqox@h�z����z˞�?`V�S�8���M���7�?O��]�t��P#Z�,��L��~�l=�g��#}��!��VDYc<�������I�=�#H4�ï��z�Y��o��W�W߿���?]쯮�Yji�Yn���6�;kk�$>Rs�.��ֽ'��f[�����h�tQ�PT�i՝�]T���>��;ϒvhN��߿� �m�;�}�������Q��h��;�be,�;�/���c��W�\øm�aO��N���s�
���[
-x�`O��
#~�{{�l*�v~IJ���Vr��q3d�i��xk�E
X�q@�E'�n3� j&��c��R-	@�h���^�� fl,K��z��ғ�"ݟ�^�2殠/⡇ĀRY���ؐD
P43Ew���G�u�ɻn�K+�_��d��_�z���X�v��wS���}���4BU�4�48�}�iVG�����H>(^V�Ft_�Lt[�	U��F[^lr���c�ƄEa����C�ZUb؀W]矯�S#���G�O�y�e���\�0n�<(�t��SqF$*��)w������
g���`˹-�BϘ��=�l#F�O��O���'�f�V~�no��|��]a���)�{�I�\�����ݲE�ʖPer��BZ�p�xnH;I���Z����'��珱"�]d�^���H�}�VYLZ�����pŎ�ݮ���͘D>�n�d���e���h��^������%��E�+�]���iw��Sg��A�JJ�r�����bsC�ϢbG�:����LvpP�=��d�h�H�5<�ס�E.aŭ���:���b�uLvt�*��꺹��	Ɓ��M��{�Y!r;M�¦��dE�tCZ��b��3n&��uo
7��P�c�������zfH�z/��ߋ�m�/N3��T�w��8����ΐ6����ߡґ�%U�����hC�g��'�~i�C�l$R�ޮڢ �LXdR��ڢ�"ˇ_h���xZ���RI|��9�ko��P{5�F3��.,Cʗw�%�L�E��	C+���3{���J�E�z4Z�Ņf�#X�B(�)��5�?h1��ВƂ��U)��0��R��d_]`�MŬ�(��
]8d���Q��i��i_W�@F��^���T���m;�Ռt/���5��I�����s[?CQ�&�Rյ$$��h���x��ݫB3\;*�a�4�OJ�
���O�
a��!+���ĕ;ku��^�}��R�ssx(b�X2ќ�0��K&Ku�5b$�W.�t�A�N�l�ɤgZ�a[��E@9(�=�U%��Y#��41VZ��-{�M߸��m趿[�":M��w��ջ�05���oSQ�����J��!��7ѝ����;����O/��	�	���5�l8�׍s�l�0���`����N#�DSK��f��)
\!���$ E-�1�2x��m%5����w�Ȉ]����ѿ/�a�א%��[:�#��}f���ք� baB�
G��+ /dT��!L����F.Y�6�:���Fz�G�2��F"H1�:}�O,hhùDž�dR�z��*!�U��`M�v�ݬ��2�+v���!j}$^��@{�4�7�W��`a��(�&�t�-E�9�<:�(p袼^�
"=�D
��@�5r�B���
�R*Uv`�pdQ�-b����(QM R��N�%!%�~O�z��o>}O	�h�hɐG�l�3܉ϖ+�;ߧ䬮Ag_�KyW*�p�������I��PGU!�nm���DM(	4񓏰�W�؀�%�J�w~����i�vNh^1��9�<Z$�1��҉�a�W��8F1/��`Z�|�[p2$fMf祗�#"L���bގt�V
��
2/�(��r������ȭY�����4�˃�H+��a�"��5��Z2�Hd��7�2q6�A����/�;M�P�س��ҽ��;��E�##��<�;tۨ^xr���ꐇ��[�h�������Wnw�=$&�;��E�<$�M��}�[�Z��U��d���7��k�/�pqɮX
z�E�]#Q��#^aZ���m�@�ݹ�#b��j�%|�aYy���5�S��%nN{�ӧ��l=jݣޏ�th�؏b�B���u�r�����;W8|��M�-CAt]�
���ϟ]׮�TC��>��+(�ϙ|*�ʍ*B/�&]h�5�22ʞ@�G��x2�#��ޙ�f:�X�w�����(Nu�:󀱐�Q���Rt)B"{����y=�Q��A��G�v�P�^�Mm�t��������m+�o�D�j��-���p���s}���n����5'}_�G�@]�1Ț���8�j9�x�ֱ I�ta>$.E�a-͜��$x�77���U��uˋ�Z��	'����<٭#;,,�_-q���#���o�%�X�!th�E��~��eJE
J;��G6�v�L0b��b5�}Qa���Vjv��GG����:�6�n�z����'���������������z��R�;����׏;;�5�j��P�8I?��ӟ�$:����|����lqK'�N�t`��5����(��D2>١rQm��	���2�����V`������{xF������3�YbR
�>Y,��XW*B��s5zV��y8	���'�:�բD�9�~5��1�0D\W��y�Q�6����R��.�n��3{����'	-��K���߲����p�<���h�>h�����̇4y�{I��Q`YL�z��.�sS̺���˅�}������]��
U�7MJJ���֥�
u�c`��zF�S��{Z�^��;`��mA�1Kډ@��`�I~To
��˯d���$��ό)A��z�^���|^d���¯
�W��y-6Ъ�ܲ��r:���0�a�*�E��D�\�4��7U��<�
a���n.����@��.@w�T���<^,�?�_�����T��������׷�v����x=�ܽP��î���J�����{g_O�����|$��+��R)�j���Q"�'t�=7t����:���UjN%��5��@�:Z��G��2#��GYk[ww������H�c�Wyxh6���h���fKm�LƸ����xj�v%�0��+	%h�Č�d�:�r���%�Q���1i�?�z9�b1��8o� y5��-����Ն��u%�v=<Q\��bO[Pd��&���3Zz�EIڼ��w��`|w��Y?ަ��Ja�@;��έ�,;�A��������9�6��&�pn��i�b��[��z�|C�K�3�̠4��"�)Z�_z��k$U�����U�,����Uk�B\���n��!�w��t]@i$-أ|i�>��΢ ��h�4L�}�Y������%(II�Q˜@�Ys&¿����Ӣh�cE�j&��0���4�>�A{�c��T��e��1�����~�Q��y���IV"��;:�]��E�^�f"p9W-籪nu3ь�Ti�D	�ŝm��.��^�:���҂�#е�"R�N���s��Yӝq�_��_1� &�� ���Sh�S�:Be�D?:%��E�ӑ vkgtVuI��O#�u��v��)j�����,��GF�{)f���L57��d�>c����w(�M|tt�4،W�q/;7�*X̯��LM�����&�9�
���f�v���XXf_��զ�nS�\Z�Hj��K��vN�l� tx�bu������:(�u�v�ؤgڙb�jٖqQ��7��n\w��s_�0�������s�5����ʵ/l�~��W�u:�:k��8x����k�a;s�E6A���0n�,hbc�VG�6�4������0jm�Y������Z���ਭ�Ƃf��Q�E���p��E݆;s��Ot�L!;��~�o'b ���~/F��׭><�m.�Xf�,��7pׅoS�2�n��":>���)��i3��9����jfl,�\��p:ȇ�{�L��LTڕId�0a�$/�i��
Y����H82�7)�+� @�ؽ�HѺ�h�Fa�P�B��0���[�.�p��>��DŽe��G�m�[��?L�#F6\���o�b��8n$���_��T,����E;���������k�>}���g�(C���@઼�հ"��4[��殶';lwەf�k��G�;��3����n4I�*���i����|�-V��[��U$���À�I����Υ���Q�/ID���4UwB�F ���@58��Bd��r�s�pUTp�r�wS��5[�Q��V��FR�Y<�)V���1�|�XǬǂ ��3��"��t�eW��P����>�I��p�4�ff��m��&��^���‹g��
���w��A=�G*�N����F�&u��=O�x�>T�� S"�ֶkH�g���#�y�M��zz0���^Q��) �IZ���1�H�V�Z\�"�e��ٺg,u�kxh�r�sW݂��o/�E�8����м�NtM�h}�����䪹�f�P��-BX�=���א�j�ʗ�����+S�SR�Y�R�@�o׷��.���W��H�x����î��@<ǟ��׿[s]�ȟY��Q�X��ٔ篻��ȶ�l��;|�R�"�0霷�-�]�(�"��<%\�n	P*��K�H��٣�@���Ϭl�M���W��HlX`�q��w-%��z�q�s����]�I�cu�s}ik��1�Z<;d�#�>�������P��#V�[�S	L���KAȴ!��զH��
�P���[�j����{~]UB��K�
�0�X=X�NbҀ�x��}��S���dS�»H��ݫ�nn���]�T*�Fz�&�K�[��"؎�Y�xM�Z㈩Ǹ�m���c�3�t�7�ssxA>=�MӦ�d:�B�/��y��M���O����
{5U����3�A"��XW.�-���ŏ/�x���e�ᯤf���G���?�V7���+���0Z�
�uɴ��v]ϲN�%k�k�e�!-�D(�qS��h�xi�l	�,�p�d*���҄X���[��V��4aX��|:-�?�V �e/75������mf���Wi�x�.vi�%���9�����5�<��/�I��vB#�
}^!�=�a_7�͚c�pA}Ȑ)��h��{l��򀟅�HP�zy���c��=f\��u�g�JѺʃ�c�Mk����uվ��( ���a�B���v�n��
�����ú�	�l��]��>v��Zڛ�֧�x-�&⯴��;��������qY�2ߗ	��n�4��+O�ECf ��'{�ޤ���)[k�D��Ƌ�GĽi)fI�6�������p0�E���(V�hT�)�,��YV����(��相%�`��y���[I�x���n�_H�ݫ���(@�R?Y��m��C�:���:�9O��:��<�3�r֗�zޤA�������nV��J���4�&;��u
������N�@2\�V���ç�#�NP-��V�צ�1 �2wB��-��u�
,[�L��9h��?������_�6ŰC�kN��zX�H��1fj 9#"s̚����:o��[�v9�~��a���k=���#˧G��b��#G0i��k
���I��,vo9��/	�n2��)���MP�ö��.��u�L��U��0d>MC<�}f6鳐?V��(
��d-��&L ˴�tx��EW�ι'���R�����'|*�N�/�,	��g.>�����a�Ĕf����p�+%N&�ry�D��!15�c�E��`Cgu����A��=�_<�$�D��l�<X�~��p
�mZ��S���z��Tr���A�d���Y�%�iI2h	����0{描u!�Y.Q�W�������V���'R֯�'�A@У��M��s/�D�8e:�m�
5� �O��[��3;���f���=]D;G
���?����7���V"�<�y�?O{�G]�7�vo�(8�[����n���u~}}Ǎ���<���<jL��
�Iʬ�b���֡3�C�25��w��H	o��<�Nzw^���7�����Mls�~nSKĘ��[IOO����Ŋ�a3a�����=W��QǺ��
�BO�u����G�J���J:�	qd�<b�SD:ט��z#dv
b3z�d��!���oC��hvp0/�M�?��j�%����Ѣo8�K��l����] ��㠰���g�S.�fl'��{M8��!h|��L�����ಐ	�U�n��?�:�s��%�_i�k1��?�x��z�!�OS��t���0]I�"[S�n�Ԋ�21s�|5�!
�ڎʰ۾�N4�؇}\�O7/ӊ���[�����p��-2�;y����,o�%�	�l�*7�4�����yhm��5t���?=Q�0:e�F@��rt��gR=k�U	�����>_�S��a�t��l�0"�X��;Ünc����fa�e"�ˇ�̒=�_���a�(e��S��ZC���#�8sA2���K���0�K|�D����x�\��B
"���-E��K\��`1DK����xe�
�F����"�A�6�[R1ׂ�_���[�_~Z}���E���9��LB�t�ul�B�#s�餅L�J���5ɒ6�Xc��c��Ŝ��NFcpq��ȉH�.�	�9ma�j��j��M��HS�$�lZY�*S<$���4��Q;5q����'TW���9�Kp3�Ѥ���\��v�1��o�c�t��u��6�sw�=���	����,��8���ʴ�F�f$����<e4uhQ�wn��O5��T��YrZ��ІH7L�
�Y��a��$E):���;�/�j��u�#�j���]�����V䇿ʡ��:~��i02Ɖ�j�S
:���c����4M�S�p�g]ƒoI�@yfr��)Z�p�[���TKQWf7z|�q]�����n�<�K��Y��)TR�~>�A�uS�N�H��^���n��JΎjk֠�q�X��dXKV �cT+~{h��O1�!�12'�SG���n]�ߏ�<nn�h�����&��X���'���qܻ��B�/�^g%a���ݻ��#W��q([�7�mQ"�T���t���UɟW�id�}ŧ:|l��E(=��+Wk4���S�-����g=�dW�a2��ޫ��3���KT�~Pv�+w���a<&�'!�u[�'r{@.u�N�ssT�]�x˵���_N@�b�vQ�@�"��d��fCԂ!�g
nѴ���!��`�#�p9�`G""�a���j��O����Ջ�+A�V<:H'~&b+,#�j�'�� ��$�Z:-|�߾[��	<}��|����v2i*ܑ�D����J�~8^�-�m�-��e"]�[���=�l���CJ�=���E
�,r$�{��!\_�A/ͣ�C�f"�ERH�v�'�@�����0��Z����#�`�xWZά���`�%��(��Nek��A`]�#E�;���.b�bΛ-��jw�������5����1��H"V���i��vA��ޞIH6�^��Kx���~
�6e�������aC�w���{s8��ݕ۫T)7z|�:�9��y�|K��PezϿ�+_�����7I;��.�3�F��E�$̽�*�Y2���I��3�-
�C���;���z��.N��R����97�c3�ý3��=�NZ��~�ޤ��Av-����}���9�Z}�"DNs���4L�!�UJ{�(��I ��72!)}��[�>��xrC���f��E��_�_j�?�;�|���Y*�����m�}c˔z55A��LQ�J8S.:�}��V��0�
�Mt��l6�u�1��;��Ϸ)٧�����A�bd,f�GBa������~9��_�<K_0`fڇ3Q-��;����<98�`��m�"pu���^
�|�t�R�G�~
�'�S�:SY(�l�u�U��]�)�t��9U;�
^ϡ�����p�z�;-"�b�pu{�2G���H�`�>�ƒ���033����Ұ�_��7�f�}*O��ykS�]���(&E������6�ZȏҒ�q��:
N�Rػt��z'+FW`���Y���7���|�5�mF�@�
���[ԉ�v�۟��@�5@��5�!��q(�·����S��~�a�!8P�L5����|�o�,�]��/x{�_;-�e�#>T�V����.3(zV����W�if��'2f~<�榅D�9�V���(
Tr�LHҜ�.t����,,,�{QZE�Wt��:��o�.H�.���&��F�$7�ڸ��
c����$r��=�͕qWRpH���M^�V�3���WO�_ݳs(��Y5b�!�������g���/�qG��Գ��>��6N�";��-�Ղd�T�a�p�/ݝC/��Ӄ�h�Q�$j�mXG��`Nd���J�>����ga·����cp%��9x�>���J��<��^�`=ؤ�za4�Y-���A�T���Ղ}K��+�x���
�k��<��0��蛅wo�+Cɓ|�*��-�@��m�(��Jg"�x%"&���|5��q稡`�8���lI�z~>�6��]x�����s�ց�yjҀ���
���*w�p:@��1&k�՗ǐ�5{�d�h�DY���n&�{�<��`�G��4[��4�yD���X�� -�YC,vZ�X˦Rw)�>]B�A�#�ϢI_�
z�B�Wr��^ Lu��F#�ϔ�>߳�,�O
�Q���[U����ܵ��3n�nqnm�uS�}
?��
O��CB�`��MQ���x��3E����YX6��N�Xj�{>D����\��JlN[�a�eK���Kw�A��Y�j��I�[͔�=��F,p�TZK�
Ca/봣v��S���n���,�k�u�E��{~��=֭�k�k�_:�bYH���J�%���΋N���25����������<�([�bjty;���E����(vk�<�b1���e�Q��C���LV�qY(��F�$��X���t>�Փl�5�9�.Z[v�s��WEW�K.fY+x�+N��|��8�����
�a��]�������4�\/�8J���usuuu��!�h�ZG��c��U�g�&'s����+H\�<��BȖ/%s�n�}�V\n��Â6��0I_u��'an��Hƙ�at*Q��sWվw\��
�HlŴ`h$�x ��j�j���%ѥwC�W8�����<�y*�q<��Ei���$�'V8}�61[sh�A`���y���#VD܎�en2}fF� 3���pYK��M�pK�����{�D�IsHA$)ٴIn��ӃѤ��#����l�d-�i�w2�DEV��
_�'�
�{��+�k�يѝ��J���~=_CJ��5�����G�+O߮���<��0��A��ll��VVo>���t*��N�8_�1���zp��S��1�Y���#��A4����U��O�u����b�}�ʍ���7<�s�wΈ~޽*5u��]���_X�[Ĕ�$5�m�����u.�ʙϓ��R-:��������mw�eQ�{u{�4�S�[�U�x���0�IO*��1���}`�]>�˸�C�c�U+����İ����T΋J���m&z&���r�U�_!����eI2g��g�����;�,{�v#����:�91<�jl�$��q)�I��/��|���'CQ��F���yi�>P��^&>�ݸ��AL����Rk�`-��-O��ׯ��Hx�ZBL�;�]��?�������ǝ�SMߜ����4m���V�^`���'Y"(��=������$���g̐X�P�D›,K�#!�*�� ���
��cI'62ܜ[0`�,#gM42�3����$ZN}aA����Vk&N/��X-;� u��q��B�u�r�Lx�M��f"�P:�
_a�Rjfx1F�`�9�B��r�<�v�c˃��[
��%O+��w�%�����Q۽�2����3
H��{m�с/*E���Úu}㬥��nEa��d�<}a��Y?WF��c��ӕ�^�7G��3<u��K�n�>`��N�T�P�
32h#��޻J����d�l4Ll�1`�.�ֵ�����v'�Sj�U۔k���0<��B�n ��Q�
�1;24��b>G���G��������O� \y6�Ǖ�O�׮����{u\�UE�玲�iu�"��g^���oϸ�4�#Q�5E�(����ag�0�H?4��CƮ�%�]�j�:5����:׌I�a��N!�V��>L�}&#���p���R�([ [s����;l����T;%�̗N�3>���;Ⴂ�cW��NV�<�c����<��EM���j.2���1�4��D,�v{����6J�
�y3^���9�]Ҽiʹ����u�I$ܫ�\�Ur�$�GU���h�-�lf���,�\�f6�8>��c��8TH��K~m�
vg>Սt/a��}�d�`0`"�	��Tٯ���>�*��Wԯ��/�Z��%�(wB����ȅF!��`��;��!���u��O�7F�P3���Mþw=fߴ)+
��*��(Ă��i�����o�J�)L,C���TL��.z�&�1�KrENqz�#?�w.��hy�e�Z�A1�j��Ņu��f�l�7A�U�
�\�w
�.��h�����~j�2��Lh�ܗ}QƔ��0�\�M�)��N���x�f�Ѭ�y̵��E�T�uDt��K܅2��d�J��d�;L!�g�q�#
_S���Et�>���.������bi��������ݵ��b����ںMc�������؂�2�Y��䟭/�� �	�Tn*P!�ξ�Yi
t�1���+R�z��B�vՍ�d@��~2�|�H�ȼ1Z�`pi.�u�	yB���������?�@9D���	vF��ͤ��_���@���F��3��E��Ǐ��g�);4�=�ʑ���J�uݪ��2nܛ��Qž�{��+
�a�c���\4�7�Rcy�〛����?�i�*i%�NP@��t1n���\�k�1�������������R�<^-�{����5t���l��~�-E�S(����V�F����D�PʃC�ݲ�f^�x�F�cG2�b�1"�3���	Ek�f���m/�N����ĽCH�؛��R���wH?��}�ׯ�H��@��F�SU�\d��
�I�����7�_?+MA=�B^��rCܮ��ᵵ|��R=N�
\w��T��,!ɤ"O�'��%�X
2����JZ'�)>��&f��2�\b5/��QI� �2_ʇ0TҊ��06�?q.�����k��D�� �&��h#��H��'�'���Z� ǻ�>A�1��Ԙ�ʙ��+�I9����4V&���l)(�^X�m��m�>�ayr��|�?%�В��*%u�XB|��]�,
V\x��M�ݜT2�]��VO�m��ƠY-��:�Z��[V-���-�,
�T[�AY���"qmUy�s?jq=��E*�P�}�)BhǕ��N�EC��OGn�Y�a3�T�P���@2����ݝ<	�יS?Ky�F$!��U|���}w����RL������yY�-��A��t�s�X�ۘ �	���!ܦ<�������2QcX;;��|F7�heN�G�^Y�y�n%~g�e_U����h�3;�8I��\��O��V�R
�:{$j�����ߩZԬ�<�Plf�f���u��@cPͭ%։E2���I��Fh�����"x	�׻�#��qh{�/�J�k�=�6�y���B��ԣ�`@�,v[dD䠰�:�	��i���x<��q�V����@�����p�xFS�Fl���raЉ�ھ\���?�����.&ܲb�3�c�s�xqC�؇�p��%��1��*�T��D�v����\��A��B����$����|����bҫէ�9�qFV42 eA>La=��%�fK8n�jG�=�A/���s$h�\jk�?^�\Uߦ�����\�9~t)Z'��x�r3H:@�	ku��R�r��Wow�i�(;o)C����dzx��	F��_i�lg�\H+^Bv���R����$��/Թ�bZ�9]0�}���=��t��o�D��l(�E��Y4�v/C��H�fB\LZQ���NU	���i�H|:}�iN�`)Z�dq�I�?�Em��j#��3mŠ9��������w<�&$�SЋo-�>r�L��@�{��B�b���2(���^i'�޵�����n�D�g�H$"��[6�<�Q�[�J����Ӡx��jg7�E�B�6��@
{
|׸(�G�� 
���~�L���ۉ=�*a���S�*>�.����7���UG�4��u[U�A��#!�8+�㨯e�Z�:=6��{$����t��"�J�#����z���#D��2QB�:tTVb�歑&r�T�d�G��d[�fW^�Y\�vwv��2�b�p��zÙ��S+=��3A�d�%����1�G����
{�z�>	��2���O�G�]�)o-x6%�}`�#˴实��L���]e�n��2�hVa�w�� �n�$���NvBĎ��uWjL���*��P@T���}Ld�:Ȗ���0��r^fU5����j�_�LfD�_e��2�*P3�e�p꺅z%��:^��oGϩ\����.{��mQ��k��cFf*):&Dz^_SV��n��_��Ot�I����v�jqS���>��2W������g)��ݘN�@�³R�1R����W�n��lg'�9-���9Y#���a�VY�2ۻ������ᐚEvXԭ4-v�,��=�f��@��Ȥ?K�v�?�!�F����s�	O^�Mɸp�MvR���/�X�:�z!������=�q��"�r�U����@̹qF��ڑ�i���|_X|iBn��~��I~̓�M\_a\F����A�Ԁ�+��d��nU\�*��u��{�e��h��Y8Z�l�Ӥ�d&x˶d�_SC����N�R�c9Wwe�����? d2�� 
ū��6���3�(�]���,�	���%'��x�a#�F�D
�M"��.g.�U�J?ST5\yǐ�T6D����j��:�"�N���>:&9���g\Z�fCٓ�3���"1}#�y��\�.K���,�7t���m���ri����u�[�!��s�3rJ�E�
W������llGI=Ȗ�ٞ�¡�����T�*�V������@tl}�����l�w���u���`��b�x��n����HO����_��\1|g���V�#�z�8�*U�h�I��^H�`c�O�k�+a�M���Rr�߁n��Ć�O>_�a�d���A�C��.pMA��ƌ����J�b�T|�ue��9��%l���Y�ԑ��s��%�{>�c�h�v�P��GqEG��3�ֵ�
+5K�]�7��I��J�(��6U�� N���:�Zi�y����Vۈћ��B�d�
t=+{�'X����t�y�}����]���$�h+�Qp�٣�j5��h$��k��"�c)6cHF�-w�0��z�&��\h���T
o��*��rX�(N^�~	�w� _d�`}/������g/�hQ�0$B_T�4���}�}�K���������,�h�bah������i�5`P�l|����!�L[���08��Ň}u$� �q_Z���ɽt�Ygx�ѓR�lļ5�*�d%/
&�{ڙ-D�Qre��#�+�r��wm�I��*g�Ԓ�O�v�,Kx�0�ۛ5�j!f�KSP��P�G�n;4��7�5������ ,��*	�w��I�y�7��Y.�N��nQt��
ĕ::��r�ԩT�\0� 
[��Є�Z��|�v<�[�ހu�Y��lq�l����|��U�]nwC�����N��<J�z~k#"ƨ�L�p�.5޽~�0�%�	�&A
���.�/6Ծd�߉X���gx�eTte����-�F�彬��[E'�f�DOL�YV���#�7���C��Z�(P2z��e}�]���B�R��*�p�8O:27��۫7�&Ϡ��xx����펪���x�,[X?^>�8�9�Gc�0^�^����C����K�Ua"�Ӥ�+�o�J)Z�v��M��*gv3�{��wRF��{��˚!Sj�c��~�c�g�j��R=�v�$�f�ͻ�-��%6�[�9-�<�1{nP��B��Kf\��:�K�a�E�d�׬IW�G�� ]�����������uD����p�b
)W�߫䥮�����9�#�b�ed1�A��Y���R�k��r�N�Zs�J���ԫ��n3ĎW��Š�+9�'��#�F+r�ݽ��ZZ	j���I�h7�C��ڍ��W\����ϷW�6�3-���8=��4x��?]�4H���S���6�h�ٟ�1UKV��<!:���.��`1:-�H�Ä�$O��Iٝ�x��������y������e�N�
�޶�U�fʗ^弍��]D��@��M
OD7�(���<�@�Zc�4+���J�kH�BDGf�õ+MMf�„i��a�Ȑ
e��ܖ�l��uA�A�Q��7��=>d���1b�D����~��O�o���U�j ���*�����n�o��i%��	k���q%���6�R��C��<�˱�P�T�nv�i�ucvc�΅�	�d^�%F�%�R��!~E�z��"�t�8	�J9�Ĭ�ę��"WZ>#@ya�0���)ƿG+��w:
N}a�-3gn/H�����P�A�@;F�;�,�Z��S�'X��p%�]�����W���J��v\��a6Zq_'���ei��(dz9��%�T���
FтYJ���{����O�J��jk.ю��	,�CxO
��y� ;��dD��c��?}���{����fDB�>s�\��a��D�����8@�b:��>>
8Pі�Z�����Mb0�%��V�4چ3��B���P�6DJ�,�C<�uF�ҖZ��`��v
�21����F�T4)���*3u���B5��(3x��k�Dg��z+��Zj�-���"
��Y�y��_�A�.芯�U�m�(T�Qq9A�沽���k�s"Qѥ^�L�^w�j��6�8VBT̳����ubvHx���ZUdN�mb<N����\iXӛ��l;��Q-�����V�~��O��a��b��N݄Yɦ��v>Ƴ͇ק����@��yx�_-�xb��c���%L�C�l����J,><�5Y6�>s����\QSTԼ�K���'��_r��_���~&[�z:p,EI�\:��vG�7'rv/�~Njl��5�2=Y���<�Ri���c	%l��h9��s3h�%���r�]V�Z���M��e�Ϊ
[�̫̓Ky�g��I����]�[��>>wW>P�n��s����uf'��cԅ�̛����^�xŊ�᝖k�J!�<Ls�ΩaifD8�������}����V[�E~�O��6L�������W8�p�d��w4]�O�mKϵ�c<"U{ovfvy�xq���4�qj����E+ä�G�FYfl4��yR�
}�|z�!��Ճ�r�B���5Y=���E����@����׃K�:�E�
[��i�A~įQ5'"��F%S�|�������4�
�dEev��)Za�+�X��
���*S�	�_oo%[�����,Id����¨�+E+��W�>x�������H�3��n��\[݅�Y,R�w���z>�Q��KェI
E�Wy�)���A���+Ɇ�_�da{Vg:2m�u�=�ɳ�p��p�}���;~�x}��� �i�h���n��q�Ͼ�+�
v��Rr0*��E�i��ps�I�i�c�n���v����Ry&Cp��C�3��Z7�D������%��:��\���jw�2��\�MW�7�<�#���A������!��sI�
J��mX���j-id�a�UO�����q�!I���v
[Y̳a������fQ^p����O4U��8	p����Z?�ˤ(B�O�i����/����@ܙ(E)L�Pl�(D�il�b��b	�2SR�B8���=���ޅ���a��L&�t}E|A7��u.'���3�n�{uI��W��1�B
-
q���0��VS��X斉���'qP2%�B�N���R�+@�q�-�;�p9�А�7�#,���E�BXx��F�p�����4}H����?^�x�lh7�T�L�H9IC�h�dP�aA����84��$od����_�E��䫊�5�i3q~�f�
tS��Kf�=Ӗ�ڠ���P��e�{�(a/��9��ạ����B;��ٻ��6�gg�Fs�Q�<���*��^~�*�M� �n� ���Ȓ�"�n
[�
�M(���@���V�gT
W�4�.�+�y�_�x�N�^�O�y�1��+�����v7jyzH\߈iFm\
��
���	���>T�r�ls1R�S�~�o�
/�j����u�: 0#+�S_RX��Sܟ�m׽��Y:��ۛ{p��b����qۧ����w�����Z�vK���ب��c�%7���>���Z.�{w�x%���F��+�g�U~���eakK�*��Ǫ�Cm���ʖ�"�6����Dzِ��'�m�����,>���ş��E�]���7��]KwF�3p�-~��,{̴�֧�!��h���7*J�fC����z��#���?\������F��~�{�Q*jQ7jY\�F���2l_:-
�
��E|�
�&Ր}ԗ'nLO��t�&g���g9��] i��5Ԗ��|�Ϊf9�<�կvw�����|��P����Ύ�o�,���y�g��늖�Ϸ�,�R��TDXY71��h�P76]���R��_�*��������T�d��h�G���s�]Z��Ĭ��f�]v�1�^���K������O�#z"O�Y�%�<�L��r8�E~x�55�"E�f�)ې���% ��8z=�)`��0�u'��k��f��D������x���8����O�Z�9��欞D��+x�����wl��]��M��i�Rt��R��E�	h�݇o��W������¸�����7`������C�(���$"�
�lP� H��(`K@+hWb}�k�����Z5�
�Շ�V���J	^��\y7³�6�ަ���|�mC3�n��
��ׄ��wFH��i�<8�y��Y��cMi�7`�j5OLq�ؙ'�wL[ϟ�'��*�7�v);͝�b�R��`E ��I�V]�֛�۫������N@/��@��R��Q��s$8�6e�L�P0��4���բ$��f�k���Xm?wӐ0I蹹��`r
����n��HL�M�������y��D"<���m�C�-y5X�Ϊ����+x+l��U�f���ų�W"�1,�S����bU���╫:��l��
bB�B����3�Va��I���մ[���/��F�����)Z��S�cA��I&�A�;��_Ƌ�3f4�ݝ�+��Qj${�bq�������ʰ���?ceq�`����fYy�����
�f#7d��"���8�;b�	X��7����E�0^�Ňw��3���X����Ay�f���d�A�F}P�֦C���!$��{��e�w�t����s)�'��"��3`�#��#\/�L�+���/Υx����%Ŝ��:��x%�
��P%Q�d	��`|�*�q�j�6t�09;֠���C}�>9���c������;���ʅD&���	����E�dᆌ�{�i�_�"�L
�>�M�> �j��Ӻ�L���>�&��H��D�V�����
[) h��Hh)\��;k���"�c��������Ifm��6|`2m,�~���w�Bv�Y�T$���_�?1;RѨM۝bѱ��sJO�t��Y�v8m5NG��Ok��%�/�z���p##�������u��0�����`��GB�fۧ��=I���F��a���y�L�����&��"�G�����㸫w\�E�����8�b�+��Sܓ=��933�߹�J� �Ԑ���Y?��T�Zb+X�%�͆v�ƶ�v~צR}�pWע,R\y��m+�.u	�U�SH�m�a��5a��Ӹ�q�J{�tB��U�����}�8�����FM�b(x�&�
��z�b�q�.,CV�6xU��6��Z�E�L
�>�Q�є@�.R�+~���L���Gbtw[A1c��.a��V_n>~<^�t�S�ڀE�>��VJV�xb�˨�AhlNN��z[��c�P.���V��kW�y�!W�t�!l��m�pc���,�̋��:=�k5��K���StI��%�������*J��c�	��3���3�,U��"$�_���D2,�	�`��sU��ݩm��Z}a���8��$$��%���i`��3�-�v�0/̈_(���<��Q��-����_��6�t<u(F��(c0���_���4�t����@�^;Oj”�Z�#��WL[r-�pd�X#J�M�J��ѳ�M���	�x��A�A^}�����4Zx�B �όq(@?��WNO;X�|��j֏X��
���4c懏�J+7����zuM���^�+�^��hk�l�k����N̰~�E︛Bh��kC��P���_��P�A�ݣi�����,�~�8��P�h�*�I��̊�D~l�Tq;���ӡ��j�5|�YW,�L9��Gm�����������Q#��K�E	�ŏa���p�j�{�	�f��
����}+�]߃Y)y6�J
�R�)���
f���U�{�/�zڎ�6E������g�xF�ymQ��:�_ƹ�H��Ĩ���#��ֻ��&�1_m���27�V�d<�\�.�~�@R�6U�LjƝ��
S���i�i�L��iX�t_7k�*��u��o=;H�&��H�Н0��6�a7ə05�lUޭ(���io�ն��+̦�����m���V���p���m$z��|?|��ş��GO�R뫛[��+@���r�t�uĩ*,O�v򓑙d	�:��DFPO���g0-�o'B�#i����"�I���^_�tq��4,��a��XZfx�*���}��@t��Ɔu��2y�l�g=9�����uC8�G��s5B�����#h�U�T|�H~��q�W���#DS�pb��J!!�l-v������,pFe�GE��R������\@)���F���^�-��@�A��|����� ��g�oI~��,�5*?�	���k�	*$H+���^5;�`��w�?�lH����
��A�E��Q�G~<���M��n%xG�N`0�q7+p�	�CE�Uk4�#���Y��>��A��k��#�ǒÇ���\�ͼPf���!�n����1���Ӥݾ��S�|n+����x�*}�̒6D.F��–���}�P�&�h�N;�qw�œ��!�o�l�ȿ�!\!��j��S~!�)��%=67��d�v&-�}ȴ����I	�?�X۽��g�ڌ̃/�/��ٹcR�_���zPp�u���B^��݌�7^~��t[w����hT,\��<�	��L�����/������÷i
߅.���*3��0�”��@g/_ߖ�O������E�Je�]���ׯ�4T�Dgd	2-�
9WJ�kw��^1��M�����T��'#�q�m�
}�{�k-�'��D�|�%��b�q
�z<jFE�@��n�~�6�Ȇ�Y�2�6��z���h"����r���4�}g���h-,���m���n贰�oCg�`[��׽�aC������b؎�P�<�f�lgYT�6+$�u���s��x^����MT��R%��ɉiw�ǻ�k	Bl�7A; �en|�aWѬ����eH+v�hδ���8�e~�~/����T!#b7���čQj��v��"���R�X#��xO�Z|��8^�V��LR��j<.%��ͦ+/ך̻_O�|�2(G�II�r�\������4d���t��	��;����R|rXPv���z�+N�f�����[A1����b�|Z�Ҥ?g�m`
����}��ˠW�(*�Y��E����@�!��yvJ�M4�u�i����u+L�����5bn]�WZ��v��6��L@S3��� E&mk-	\46&䢃�OF��Ѡs�ow��;ˊQ�G��05g4+�2E�m<K���3��O�uSʪƽ�iO"��$�c2�$�N�itos�aP���w*��I1��2�q�+�9��
<t(h#F���@���D��~��E��^��Z�����@����N���;x(��H11^�>O�t��-J�*��~?�qck5��C�ц����<�|3@�ߊ%'�G��a��.W��+F�-Ҕ�c���_1Ced�:Zb���Yl�r���
�&V�Kpw�.�pw��U���%��n�f�q�>��Mcb,Q`�:���F�G�p�b
�G�C�lw�MDWw�n�����i8�$;s�A���n�r���^��8�J��E�0����&��q��1%�C�G$�F��5��ٻ���h�+y�6	�}[�~��,q�ڛ:쟗[{jN��t�N6�K͢�њ�����[�-�a|�p=��q��ME!]�i9u��v��LJlJɌ�u���e�o�j1�6�f��@�:���'���ѥX�_�rN/���I�%��hJ�
��P-m����VK��l~��ˡ���S>���@���Y��݂�3<�l�t��*�@TE���`��f���%��~@^)½��D��V�j�%o�����&㟄z�%FE�RT�h�:�R4�{'"�`d���fFF
Q�bN���R��=y�=���#��[`%8�\�����/��'
��L�M9�Y��y�$0u@�Ҕx|�ϙ,��F�gЯ�*O�}w�'��bw�
#��̯Vmu�J�f��ڃm�<Lz���m�^B-�&����091kݾ�x[?�zB/����B/s�r��������ScV�@4�\Z��`D7���%H�,���yv��3���,��W�O�-���a��?�ڜ��l\�
�sђ�eH$/[�$�"y_��Η�+�T�
��/mu̞A��jw����1�-�J�`3k�f_j ����p��d<Ӿ�m����l��s�]��J߳r�\E������n>�ß� E��ӯ[D��Gp��
������~d鵡:�F�c��͋�0
�	��S���w!�-,�A������)`N&�g���{v�	G��t��q��T*_��;��Ň	��n��i9���#F�qy��>4�ԇ��p�0ιS[�
&�� 1H�=�����/�
�ݮd;���'ED�l`������n���\,�_Zl��a��TD$�ҩ�K�(6i�m�puC������3�%�ZX4Z�O�sP��+��>�
\C��SWkb�`D�ҕ钺�T�+�Z��$�e	���l���S'�t^=Hq_- ����E"�U��z�Z�&$Rj�kG`�^ֳ��6��<��-��i{��_}/֣'^���8kRaOP~0��-5=��HЃ���[���ӄ���!��EOū�y�>���=��<-��G+�:�e�9��iA���&�)U@�n"�7�b+X�l��Ӭ �h�"f�F��IqA�er�]��}�:���ӗ��s'��~�?¬�JB��j�Y��t<m͹n{hG9��5��T�ճ��Y�_���'r{�Q ��+1idۍ&���6(V�ݽ���F������ꂚ��xY�o�l�Y���/Y��-���p�&i��wK��&�C�/5K�`x�6�ʖtn$���i�̇���e��
`{�,�?݁��f�0V���ہU�<;|)_��Q�L��~��i�
�$�F�8�<i�C7�8أ�bh�⡭ǤQU�.�;�Z�F��a�7U\���A�c��f'��F�{ɶ�T�q`�an#Z�3�w��	ܜ����Z�2��<��D�
��=������a�=���+�YyX����~3DNN$�
KCh���)�����\���`����A/N����TS�U�q6P�XJ&!.O��r���V,uwn�?�F�D�`�a>�+��=����c�#��m:̧!IJ�.xt�c@���<�w/�f䕀����h��-�f���ia�U�Z1M0���9�u�V�����۫*�*�[]vF ZR�N��'I7��2��sQ�Ym�V�ѩ���aE��z�s�uT�l��E%��;�5�s��js�������=��S��Z�B���d��X��'�^4��`|H�Zҙak��}3|kz-6*y��%��g�NԻ�.�8,��y�B�
�"�y껆�P�IlA�8�{j1E��۝̊舩j�����_����;�_~Z�Ds*,�$���Q�)�fh�KB��R�Y�%bl��_/%x�٥	����E��j�86�tA��~�xb����z7�E�ک]�0�Ӑ��C>4	q��e��5s��u��&�e�]مSw���Q{q��鲠g!U���1>�*�}PW�V���}"1��'8�9�'�Sy�׬��Y.%������"HvoSC����<��M��p<�ak���W���48�nX0Pڴx��q+��@�[w�^CE��������/��|���%���0��CO"��rsv�cgS��w�*|�\h�M�,f�[����;8�if(ֽ���7/QEP[=��7f�vJoW���&�5���C0u���Rs5l�Yl�"�;���׿���u"�a�j�n=��<L��(�Ѫo<��$ݹ0VKap����5N����b��ϓ��P�
��?!�$j�"�|s4(��c�̯�ӷ�}Ni���fgPL�I�'
���&�I��H��m�
�Ȣ��#+O�Ĉz��&b��6z�je�`���_��ݽ���p�0J�Y#�.���;�k�s��<�)!e�ZU�4��Ե�1F"j�f�����v/noo����
|q՞����K(�����hQI�]XS�l�]��&�]�e�9��Rj�Ĵ�hf�����
h��vh���4�&��ZŪr��N͙�Mb��X�$Ek}���O�J^ڴ:�w�;�t?sc�,|�[�֣֗�O#�6���pJJ�v���:$$��i��є���H��GҾ7��i?3��:��\���e��i��9���<(r�AST�^��C�͜��(��z��Ck�u��R�m9w7�p@�@m.��eyG��(���h�`!]���(7�ɑ���6э%�lb��O��Ǔs�()��?eM!�V�u�/V]�G�l�����Zb����<�B���ǜ�ie2���؛���[ԒLW�S���@X&[���
�OO�{����9��fa^5'~��7�H��j7�g߼������x�nf�k.4�8�-<��E����S?�N�/-sy5+L��Y�^�^-Ή�XH_PPxǓ�q�A�`hf�U{�izdv���+��[���Fg��+��19�€=f�	�����ZN>���~xam�`L�z*z
�$ޏ����*B�� �� �=�������!��{ւ�P�7�ԎǓ��M%��=<��?�>�9AD�xTz���+[Ŝ♜h��u�D�FX��;:Ûm�җ/���T�4y��q�$�Ȓ�vB�d�RD<0��A���ސ�p���f�N��"�tTx�QH`�dl]��6�sl����?��n�Ut�鴄�W��m-�B"�����XYml�v�9���vkv}n��ff^�t�Q�h��u@IE65PS�G����ú;�5-Uh1�}�-���4A$�:U
���ł���k~1�hiʐ�%������C� @�[��Pk�SҢ���
#�f�
���)t�Z���)㥱?^��h���,.'����WMj�7��~��X�����l,
-F�=~���&���ZL{��8��اj�N�F��ѷ��~
8~��=�����~�=K�}Vb��h1Ӥ)���՝r1!f�ҥ&��R��_�3�/ƃ�4C��
����'�ja���iݫ0�wWY���3y�ĀR\�Osa���:�x�5K�i��
�ϖ��b+�)ZQ���s�2�	5�p�?R���B�0
&縣E�j17I`�Q
OP.M���H�Z&J'6�T�s�!��T�m��׽Zut�a���6M�ơ�6��~T!r��Dd=�=m��
�m�p�������KO��3Ig�k�+(Q\'G��k����eV�A�i�Y��˛�ASm:$X�R��t:�pd�,[�9� �.Vq��<>�~�}x��8�9�#���ﶭNj�z`$5~�����N�G+x:�9�hS L:���_a8�����mѾJ��<�N��X�)6��eD�i��0�Ƨ�t���[�7�ɏx8T����!����?D.�8�o-����h��8O�Wv#	���[�Q��̥剷a�d�R��AIF�x����E+S �1ī�jM��7�noG�:��-��Gv�C��r�d�kj�m���EP�x>�k�!��7F�G�%�������@��r�29�w�,Q�c�u�>=��jz** .ToO���6�ml�{�Xx|�S��T(Z/�.�qN�.BId_�3�.Q�(Z���r~��2T3z<G��^B!���������"��	V���),��)}����X��.�=���t�|@�#XD��&09�6�vp�Z=q���C~v�!����˓��o��҂jy9�~�?��ؠh	�rȈx��z��w.�w ��u��8r�L �]~F)W�Y�0uc3RB>�Z���	
��2\ȥQ���ܼ'��B���'�2�F�����ٶܸ����W6 ��ڠ��F�J	E��"K#���J�o9�A:Wа���W��s^]��lk6��gnT�`c������l��>R!p��s�X�2Gڒ�6��k,�c�녰>���y��j�9�E��з,�)�@��Elϋ^�9���tx�2�i�{0�L�P��J!��Y��?�yItT��^C���(B�C�-�O]���b���^��������[rC1���LJ��c�yРh1X.�ջ"��	/���
�s|6>���7���,��<�ү>�"�Ԣ���n���Eba6Wn��ί��׿���r@�#�$��5G�d�����b5&� ���9� _j=`O��1���Q)e"#��̆�Q���4���f��ެ׆l�_�E��*�H���a���
�Z;^"���Q�H,_��}��:�h��RĂ�=}�׫+vҧ��:��i�F]��^�m.`2�K"�O4�ƣȺE�Vy.�- }�W�Vo=\�PMZ�!{A�
��<4:�|���~1�*͕�i���7����O�dC#��e����?`N�������Vp��A��!��y:��#����
�J��Y��g^΃F�(�N��i\K��Q]z%�W�,�T�I�m6K�r�7�cއ~��:X]�D-����P��55���;�-�_�B^����8;�Ip>kg����p濮F��l�كM��:��y9�_�(�V!�[�Q�Lk<�z�D�
��\F����?{'@:��a�n�Bu��೑�}�^3u}�A^y)Q�D�,���5a�B_(&�2k��6@w��4[^_<�_*��E�Z�b�h]�-�/(�q#Ϩg�3����G��"�u`6gG����uka^쨤aZJ�ԌlKF�ʲ���0�U���z��(3�nڻ�E/A�uE��3_���g�p1R�������)�k�
�3(�Qg4�=R��'��X������
�A1��{A
n��85̜��)�:��b�dy��3?�ub2��x�`p}IcĖ��O���I�ȼ)�Z6�b�X��7W�Woyxxp@_�o�V�G�nC�~X�<Ԃ�o(�9IÒ�9]J�I_y��f���à;��������O?���W��<3 �UB!o�o]t�/�)��'�{��U&5G�(�hA��挹*��7��A
��������?����$��XR�q�MsѷH�\�$�u�ە��
�
rZ[��H�K�lX�!����<�;�o��JWV3�Mm�TT��Xf�V�Hg3���n�
s�i���<�Pp��R,�m�Vgv�������iw�b-�vK��X���Ft��U���6�T�D��]b��--�0J�۬G�F�'Ml�yy��L:�k�\I���y�hA���-y�KFd��aꊨ�p�7���!�2�a[8�V�|��!��17�����&a�%��w{)aB���C�db�=�Cć�_����}�Y�.���,)�^6&0���Ce*V��%�6����8@�|"��q<g輜q��
��$�U����svw�h�C��c�݅Ȉ
jݫ����ߪ[̒�%6�(�����I�[�޴ <�A�%�1�B�a2�A�d1*ҕ�z�PxNѺX#,��ō���*;Ȁ	Z6f�pϣР�^Ғ�N�b��)E��~z,�j��j�x�����B�8B5��E�B(ϟ�	�hg>"Z����` �X�/���M��c�B�!�DP
w
zHܶ���Z�+�W��8�7x��Ҿ���T�HX��f�-y�{�vϒAgw�}E��$��;/�Sc���Xу��ҩT]�ޚ��o�9���e=jUv)�U�?_�gp�k����<1n����@�5���7_xx~o���G�>9���!�)2�h��]��7̼�a�YdrB7%&���,h��E�S��Ҿ�r�H�7'���&|���V32�Z���
�$�Kܧ)M0�={�oA"�x׋��i{�b�(���W�0ɨF7f�w�,�:{����F��h�ޘ{�ɝ���叫L�®�)��� �jg=�&|a����qOA1�?�#��>F�^�)R�̵��W��m�"{��|�j�f��T�';r���)\��q��'rSI���J���j@*�"�A[��YX?�[���������t<�Kp�4��[ >���4�P��J�#�
�,��ވ�_;7��Q��X=8�A�/~��^z^p�OբLE-f�x	MGB��Ic�w(Rx
�f�W���#=�
�=������/�)�1ڬ-��v��&�	�̈&�*����51�A��[:��,�<��cw�(�۫��Л�dL܇���a�L �>SA�{R�����J��Rw&�m�a ��_��BU{��H1I�lY9�)�c�zQ�x�9xE�؉m�z���B�vƖ��V�I!�H	��NYF\@��"�8�y����of:�N�&��>��|��2(�*�<�K���
J�,���<4�-�DM���V��G���
�?j������V�~
�E�Vn�/�“��
,�P�)v�a[/=�48>�$�a�j���jU�
�2d���ҋ9g��
����.�T7h�-�F���5�>���c���=G��H"u����[��p��T�έ�z��X�Ҍ�̉�v������-pC�A TKl�"��(���f�aTaG�s^H50�0UKB�1.�Ç�&���_�<z.�H�7�-o"���� NwTK�d�M��C��׺Z�(Ws~���6�4�ӄ�|��~�A�#����W����i�$�~�廫��_������^YG"y�\��ÿ��hQ<�N�
,��]���z�#b�t`�p�-�W��fOw���x��F���D���(=qXS�G��S�����&�ֆNJ�:U"Me��s#@F���ۀ��0��Z��-3>�N�9�H�Fʅ�C8#�ۑ�Ϲ�>ßb����2(	�e�$	٩��U�-�v�-�|����#��)�I˒όYͻO�������O���WfA$�#�l���,����������\!z�mظ�t����"�n�4��J���'��nB�y����Ա�t�<G�TI�U�B�-�O���x�h?:������N;FgEb��P�� ���iU2J#'�I�n������H�aQ�-�ht��� ��kRfGe�]�-���a�4(sq�>8ɫ�â
��R���S_�"L|��d^B����+߅��q���K�N�!�I�5Ek�������km��8�v��K�TE���C�L��	��أ��&��"��{*Z4]�Ð��C�up�YJJ���!a���q�i*z^���.ss[l��"�]��+^���Ya��0Ī�\u�>9��?��3
c��_��E�&
lպ%a�/���9E�Wc� 9(���ը\x	�j�Y|F�!gs~��8�
���A*)Ev�
<#�s��l��п/L��˸~-�ٜ�TX�m!L���%"r������
�k+����fZ��7�9�:n���Q0����G����|�
���s��d=�6yJz�f��;'s_:�q@�E�p�F+�Yd�%/~��yw��Q�� ���no��p�˰9����/6-ٳ,"�x���X�a�V&0L\'L+lU샻�$��{�G&�А��X�/#.�k������f�x��`���2XO���4nz
��qw��L'����ʬ�8a��0˅�oDN!%��F�������~E���
��L��3^����,Ze���s��w�.�7��ӥ1��`q���g~H�q���.Mm�0�Z]��S������=d40à�p���i����$�h4��$@��-q>��+��X�d&�I�'�|qu���$�!$�2�y��bҭ�c�;aG�|�|Od�Z�@��ɧ�5
[����l�sђ�U��F��D�Y_-�Shk����aӊ~Z�G/���p%!=F��sq6��4Ek�J"��?���Y�J�h�p��Ρ�uѳW	��2[��皶�?�rp�KXibR�˞����:�~�EK�����Ak�'�$�d�z�u�s�
���<3l�@�90�a�P������V�h��01�6�pż�
�j���)~M��8��,.��m�]�_�Cl)۫��j�O��ж��#�w]X��Y���(l�$�N�ixR�\�
��g<n�4�O;#�:yLp�E|�ZW��p>l����06;)5��<~��[�T�k-,�h�����KB�xH�!���$)��e�&(�x�/}�FL�(Z:-,��H_�q��‡�ai=�󥗑Jޭ��*���wu?�/?R����ck���.qݙko�%+Q�b�owt��e��Y�V�Jtn8�ܡ�Լ�d�w�'3۱�C7p�RYn�{�ەN��1��&"1\�T��OWV`T������O`}j�:8&i�as[UK�POa~'_X�|���w�<�ޔ�r������;&%��G�$�n2�蘯g6'��z�m��~3
G���lĩdv�P��H+ƥn}9	�s~��#8����S��*GF�?������5,l�vr��o�JIt��aT�Y�ԙM����.d�.��>�hS&J��P���o�������3)�(�-�7��R�^ d�Y�� ���I�t�H�}oK��j�*��=B��
��<o�ǜ�x�e��2�jG`�;��}����Ӓ�Y���eH�47�����A�K�y����Ah%�
��c���~�b�^V��L)G�Z�Ÿbp[���Cz��u�:��_bBg۬p��X�c~�	��f�n+\��R��.�Ds��e��J|����Ik
�O�F-��^[i�WW@B�}g=C�H�"���(��'<���8��gd�	����Fw?w1५��")!hԁ
/\U�^@�r#86Bǧ��;?�l�aDƊ��+.C+�����{�@��Vmhnyr��uկ�L*�:.6��mҼ��*C�%�tw�+ɓ���{X���c�׶M��Uca}m�`�'}���o�5���Q���Cj�ң\�c�u�k�⹻���[6�Kԏ����׾9cs�n[�Pl��������@Nk������k�����%��|B��}���T�g_��&�'%Q�a�B��J�I0�v�O%S&�����qc:��rc���ױ����*��N�nl�B�j�d�nr{������D��3��ַ��.?W��K��{�J�N�����Ol6��-R��z��sr�v�����tN�i��,Q��'W��O3�(�{�b��-~/���g�z�{���V�X4�n�E2��ÖA��	�q��=� u14��?�����Q��~�|��қ�L=�Btb��ʝ��QR����,���$�dIPI��U�h:�RA�σ�Ԃ�h��V0Xo���~�Z��ULuC��J����E�]�Χw���p�.q�T�܇,�GO�(Z\���S��*��a�ܐ�jQ`�e�Y�����;#~��עx��arS͋?�T�x�G��IZ�c�z�mGg�� (��#��<���WNɂ�Zp-j�J2��n�������G�\�!��[F�g����S�*i"���}c����R�S+�6jn7���˹�5~��^C�E�JG��!䭳�'��k�<X;N&��„Z_��E�Tåހ�x�<������b� ¯��Bk� ��;�c��1��R�!���k�y��8(0PGP��Xj���[m���9̹jھ�Z�c�Хʘ��n�֟�֒��!k�D��8���x��z+�⨶ݬ=T��sk#�)����hˊ��A�����Xf�
<�p�Z�h��V�\~����q"��
Y��T�\��<��ĒCvR�꭫^5��v������^�&�$��t*'� �o��d�r>^b��Rnnd+���5':�
��{�v�,򚊝��\�c\��
�vQU��|��?d�b��k.�')6��|se��/�O����g�Z�Ӆ�13�UHg���FD{���DT���s���0Jh��>��@���__�<����R��/1̯l��:���}.�������]�*?�Eş	mj">�ad�K��%x�-�#I�_W��%n�r�3[����+��~�v�&��r�I�Y=��(1�BqTd�����f��a8�?�h�'�D[�8Q�G:�:���ŋtU�T�7;2Y�+������d+`�g:t�c�t}��pؑ'�):��ƾ�@2�gqb�X���Y����T`��7 R�nذ�r'/P��I��<�"�(RΔ��E-��irJ�y��2�!��g)�z`��I��Y�l᥃�h#�ӳZ�,N�]��x�M����O��Cϓ;*n�^�#=I
u m��-#ڃhb��ǡ���\��{�@����V����R���%W�S"�C~�����S�v�⥎a�aO���AoT7��S�)�'qW�A�����z��}�L����s/��g��z��;�[�a�<�ȷH��a���K�
%'a 1�K�2����������J��K�h�ex,�Xxxɞ��o�/'�J_���dw�\B���(ذ�s�b�)V��Qe�!��
E˚D� ���(b,CM29e��:�pVİ��8{�/��|li�Yʻr�U���Ű6�4�x�c�)��#�
��ъ��
�"�l����R�n�q�j��\���v�`2&|�E�0�)m��Lַ?���_V��m����D��B?~�[/L]���䏃GniX��!kv���6��{�\���Ӣ2xNB�+�+���Z�b����`aC׻���d#cf���AAEx���M;{T�'�NVP-�9Ȇ�嬑���mFþ���՚����v�?Vb\�Dߑ�G�=X��#����]��"��v
�H���Y�LtD{�qv�c
W��c�=�Fg>o�	�*H"�����\����������@��q1b;!��E�v�'U�Y�1�N�j��;@�l�(R��,H�Fqi���,"i��Q�	6�x*Z�?����+�"�]��urq��)8L�3�;.BK�1�!�}�ed�A�e�[%���z)^KS'΍k�qn����(vxِ���2[�	7V�
�D�Ɉ��9壒� �D��(�`]P��� �2ۡ�SRn\�j?���1��wv)Z&���a?��g�0��
�Dd'�A�-v>��|)��z��X��ɧHt3{������&�#&[�,fa��u�<��.i�Ϩ�#�[ ��Bs�@�mz��@'$&�9��
��K�~����@�x�����y�s0#�P�iIH;�l�P�F�6Ӆ�
���5�f�����L�~7�df�c��ۖ�`��!QAT1K�ܕo�yg������)Nɬ'�y�ӼBy�q�/�òҬ�P���-��j �%����%-��k��e8�G�7Sˠ2�8���(.�
�IS���'r�<�`h�.�e
�s�����ׯ�R��𩜺���wY^ٻ�^��4�-{��H�T�r�۵��TJ$���ԃ5���e�W)Z�׮�0"t��g |詶�e[����В�5R�)B���'3��
/	g!���]�[�as-��hyvmm���ƈ;��jSo���-J�,T�O��x�wX#�ƃ�wg�/� +����Q�����a0y{u3��]�yfŞ���zH���zȀ�9�����,+6؊[0}�>R9H�nȟ����>��G��2
J�E�lo�����h�!Ĕ*��wP�q����V��*X�1X�$Y��)����Nc��QL��p.��	�C!ZeA'���e:���hpp�{6ggY�h�6��S)"!9м�j�+7˙Y�$�!�3*
�~��l}�� ��ک��lE�C�Ķ)}m=�^d�����Ӡ��r�qm��6	�Y+�yh�|��6�!�t�b�p���
�+��� ���9���;ڔ�#����ﶙ��~R��z�Z�l��쯄�F��7V�7&�z�{e0h���**D�`�����p>�DEy�JU*ܸ�ODG�hD6���3��`�H�!ՋƎ�����`���=b�n�|w�F�4�%"~f��;0v��P�k��{��u*�6�V����}�Fe��`K�}Zd&ܢp���eL��񇫯7�/�6�>Ga���÷ק‹�o�Њ&���lSk�:���`3Ƥ�+E�:��e2ji��g�.5�12��bxP����4	U"����{�;�/���b}�$8�F����ǜ�ܭF���'�k�A�z}�ś<�^{W �gwr訃nd+��<�n%u�������(���=~{A��s����Jr'U!]�>��kcf�x��1ZġԽW��6
�ܠu��~��P�Asi#4�U��)��qaI���O�
V�L�:x�?|���E
�����wg���+�g7��U��f�*S��ɋB��_�e����@��4�u��A�*��qd�5M&+�@��7Q�MJ<�iN�뺾>��A��TL��~w�\b����B\y�O���Ŭ���%�9�CYV	�vMU:?l�X�(���e�Nt��+���-o�S�E�:go��]\Z�h�-���K����aF�^�h��C�X��
���J֦N�u�Qjt�&/TP)Y�ŝZʹ�:F�p-�8���ʋ�x8�үW����
C��ێ��"�Gl�����=���R1xv����J��U���۱�@��q�2X
#Tu��[BCF23��/Gn{F�`�t��4���7�$_.��j)�.�o�e��0j��$������Y�9��#�N�8��7��\��[����~l�%I�w�
[0��P%e����=�>(lF<����p�ht���D�+y��w�ɉ�&���
~�98�<K�����KɪL�P�z��Y6
�3��Q�P{�9(D���c�H���
{�)�g(Z�lW�S����aq.���
c)vt����߿��F�4��/����^�6��i���4[�p%@�2�������Y����7C�<��3�*��W�Q��U�r�=�"�ξ�����饰1�#�p��qZ�f%�L��!�=�ro�04���Y/����?<-6˩�d&��ѣ���i��6�7s�;%�D��s�%�ꋪ��Ġ��}�șK)�N3�jF��Yu0�&oկX;Qx<˰��J��:b��YӐk?�,@�3Ƹ�żw��uՎ�ҭWǕ�B��I|kҁbeA�^��
��h����HK3�x��c���Rۯ�vb}��4�Dv�/'"7��z��F��N��D~����Gب큿��g?�	ґ�ԠTn�tR��M��9B��4��>w��7So>ra�e�v�}˝����	&G�]�I�#�j�a1�
S��2EMh
*��:�.\��A~:���,�0 m2�K40�;�S_l�c4!��-���D7�A��6==y���c��2��Q�h�Z`>�P��DLZ����LN��U�������J�
��p��ˇ��,w;�z�Y=��ƙ�e���X��N�ׁ�s�Ν�;�:�`C�+7�!:T�81�"�DC�s%E����։f�F\�3j,�!�5rA��%t��3�>�Y�{s���?0���3�#�x'�r��4��~�JU9�������ea�����u����5�Zu�pm�.�s�N�H�����"�U�#D��(|����ߚ+|�M�4[B-��:�����v��Ժ�GVMhho�Y�x��+U�S�m��ÿ����h�ng��_n�V%��/]�Y~�ԾDlMjc�υ0�,���ϯ�}6��2z���܃�K4>�J�M�)�v-�KJ܄)�l�u�~Jٻ�d!E^H2�.aJ�
Nvx�8�K��B���>U���S��,��j5�V�PI<B/��2J˃qO3K���hH��T��f�	�/�_y��3����MT�g��ʀ�|кFC���Q�8%�<�)BJ֍w(��\AOFc!�d~�c�8f��=���2�1v�7i�-��y�3pc���Fؼ3���J�*pp���Ͼ�,��j�|ܑb.���H��R+�ˀq���#����ц60�Ą����(�T,��{{���&��)Z�|��ƐM�V>����}{��=����7%�B[!-'d.��t�-�&IfUk^X��R.���>�����i
�x1F.H�O�'a'�҈�e���2V���tZxB��f�yx�ts��.��;<\t�A���4�Ӓ��F���wO/��
!���/�X�K�gՃ�v��0(9@���a,�+�%*ˠ�R�&�N@���0ڥZ�������RP�y�/�J����򚖭�_R�����M:���}NF�b�iʘ76r��y���J��߹[;��*n���he�]���Տu�ln�O������x�y6k�E����l��"�k���Xo��]��08S��-�#�X��]���+�I矜�����Q��u�rϹ��m�_Y��pK��ܯ�vB)�@���5k
�.w�L!���
�������x0��h*f��X�S�E���������0���JJ?��z�[?����"�ޚ��� G�cTi�/Y"b�XpF�u=q��[�?�v�b�~�޺��+��?#�a#�	�׷����8�Z�b�@>�����I+^Mb�	��܋��o�kW?nm=[���xʨ|!�����ġ�-:�A�[ЩZ���3�R�[�p�n��NG��(~[������E��R/,Űjo�0IN�9hk'j�ʛ�%���]��)
c�|f�^��>�K�dǰ�ن�İ�O��o�j3�އA ��b
TKJ��L�0z�\ǭ�H&.v~�,�c�YV�-�S�h�!u����l��-�'F��4wz�^�L���Uj�18<06�\��������ie������0�������2#���L���$�x�Ei���!/�Sp�S�*�N��#襰�����U1w��V���>e�m���x��*�0,�L��2Hr�sc��Nn[,j��G��)����Z)��.m)C.q���%.�L�Z�I�ꃏI!�2t�a��z�|�e��*@~�F@�RȨ�r��p0:a�\�*�I�c�ev1�/��>��'���G��I��)\E6�gW�m�	[��;j5̃�UXNC-3�[=���"L��/��5&�G��Ǜ=2#���W��u-���E+˵��<��G�6�n
��

�25�=�����}	���軕ԴEx����,�@��Z���O�+�+��D
g���J��6�h���ߣh%����*�2_�O[���#
�FCBE*�v�ū������J��ϖ����E��^�!�~���W��Ѷ[�?�ྚf�l��W�X�Χ��ؖ�b��/f�T���6,��s�r]���ۊyI�Z_?���݊#�y2CK}a�}��9z��^�4���%`��l�R�?�t�[�d�7ƌ��$�"�׺���^ĥ"'k�Tԧ�%InfF��=�h���-�*&�T-4�h���,R�J<����,X�D�|�AD��Y�qK��D4������ք�"��ox��Bq�Md����E������ױ�5x���o޽{��ݪ�^��m�Sx&7�$_O��Is:рV2!aF�
Hq>����/�9��
�x���ܯ���Y�}�Υ�{�ŷ��s��:*q=3Y=�Rlڊ#Jb���<��P������V��!���4zBJWre�'U���w�$K��t�w@��c["`�aq�;Lh�R'�>]��ΌF��e�ְ���C�W.������v��dw���2�t/An�p����]K�(tx
�	i/R;ɚ]�FF�N<7�_�(�zn}8�򅄷c�WTAIT~���*�jѻ��7�%D(�fi�'�9Զn޾��1�NW�X#<<��ݍr9�B�ȗI�q��J��)������swo����ڀZUhM_��hA���ha��m��	.[7�H�W�Zg����R���]cm����E+g~�$WbHSξ�;R-����f���y��0�8c�cT-�BzA%?� �}��"dō�S����+E�{j�,�M�"��Ƣ̇�<�����bg��'Ch�
I2{X��/Q)/��Z�"Y�K��ǯ��/kQ���Q�!֟��h�类evm��6�0Q��@�`��B6��e�>+��^SܠVg�)���|�Z����_�l�%a�O?N������[.$.�EۥIj�u,!��~w�$Ԋ:�9I��V\�|�M���)I�"��%�27�Sgx8�{h1%ouGE�\�{�R"�"xԣK�`�GR3`��ǥ�\+-"�fԐ����ښ̨�2�`r0��Q��ۯ���P���#E>���!˥��l��y�l�ȶ�FU83.�{3L���a(�@ʗ�_��1&p!�&{P�o�w.���u,��>Ek�
-���ִ�aF����	lK�F�7q$ R���AK#ſ�,hYΎ{~���.�MM�<��_�BO��,R��x�焑�M�<2��O�!;�u:��|@�(uqV1�Yz�ts��daVM��a4D�ag��ͫ%���}��jS�Q�.LC)��Ϗ�H�Y\��?['p��
�*C3P�	Q]��緵kX��4�7��:	������Cos�͕!/k[�����{��F��t��81#4j�6K��7�<����d��(5�-��XTަl���//;9�x�m��}NO�hy/��P��ӯ��@)f�Z��u2��-LTX�LmtW�m��]F8֏��̄����@���4��Hj󊛒*x�l��10�����s�s��"N�Շ��𥙿��W�6tj��
������'��Z������F��>�5[�x�6v#�D܏��g�zͽ?d����^ހ�]�s,Ѩk�N9�
x���C��";j�ɕ��la|mr���D�����Bd2N�j��Q2h�Z�E�p^�*Y��Qw*�(�b�)����"[T�#Q�S��7}FaS�6=��V3G5��ϷʢP-t]f�܄�{�rŬޔ��'1���k�-��5\}R���.P�����N�ȴ\qXP-��V�+��Oo��1�J>�
p�Y��j�I8�3��aI�3��Hڣ��r�׋`�O�qD�g,.i�K<"���m��p�ɒ�ޖ֏�W2	U��9��#�=w�B%�R��������P�8	�oϹtZ���P���|su�/�Nr�Y�/Σ�K��
o�:����[L�T�͕�!C�����g2�b�E9��:��ԭ��E���Jd�5-�z�;F�n�|�T��J>�Q�Z�j�Di� f�X�|�}_�hyY�`rs�'?@ޙz�d�* iK�M;��g��SQ�I����W�ej9�hmD2�+l�	VE>}ҡ0��e��-F���f������}�Ś��TK"(����^�'FΓH*��T�&��hC6
'����)��wx5GF@�EC|c#��K��v����\����S���M�7{\�M���j�
5� >�MX'xGqc�����S��F
�Ou1�1w���B�LY[��q�e��rQ�)s�N:���ޟ^Nl��#��h�fi?IW��;cD������WT��g�S��t��^LM�g���~�w�b��z��5������rf"u}k`:��䙣�v7&�"wu��S�#fɿ���-%�r�!-�r��<�	9�p�����#��"�_����(YZqɠ�SE(
��N�O�.�<`Kv2>�!�6o~��@I�_5��+�t���()q&��*�i�L�I�5�I�fP�&�3�b6=��P��A��?�g�
�X����?��lz�뢡_���8�\X��)j���|V�TQ�Z�F�>������?KY�[+�a�lY:���A�y���aC��!��(O����;���R�����5xtГ���)V�����nf��
�%�Pbž�N�?�,��]Iv�
x�Q�W���@��>O>�/�i���AN�9<Ш-���q&@]�]@@��4�fM�wg��ĕ6ɚ�z�n��6�*��kj�J�vʒbWbF(Ƽ�2iMm0�!9��~C�Z��W����˷��'���2�CVG��),��f����b|׉�[���'ߜ��(�W�J&St�O�AG�9Fxzr�~�!fUd��]6,���xUkQȜ��[�B4�q���3�PPy�T}�lҎ[y�ZP˻�;+��`��X�j��>���:}�έ��bٴ�����N��i��/��
�K�+"�{���./���ms����Wn���yH�F�~�RJ�R�CעjI�*�ƹvϏذ���ɍh
�j*��H܁ٯ��]�����}���M�c�ɏ�ډ�����+�3�>���Gλ���,���[��:�+�+��~��.9��F���C�֩�0<`��(��abT�M.�5��%��*����'	�jKĤh�뫵
j��s��L�,�T��r��*#��ڍ�nj�	E3��xI}�=49f�j�Fk~Z��j���eV�9,���
J�L81�p�7�E���01�?O{�Hak������*���aVzOz#ǧ���y���ӧn.cE�r���(�b�B������e�s�&�2*fP�)C!��<HN�`Ќ@6�5%6!�¬�h�?�š��<����9�����
�l�$�i�M�!�Q|�e�MbC��G`�
a`-̅&��\�׾������H���cS����aOX&��x�d�Ԥ�R%1�P�倒���؛J$ga���v��C<�j%��֋3baҀ&���	�%�X6�S�P�e�o���v�7wA���Kg�!�v�3�Kl��d�|���>��F���S�NѲ_!Z?q��ߧ�b<��q���>ߗ�PP �������M�vս�,L����Z��(
Nh���U��=��k�;F�Jf��Nߞ9|��ӏ��MwW���J3Iw�_�����V��G�Y��q�R�W��|�ѯ��r��m!�3��`ێ�]
i��J�|���;>9�Ў���U�u��B�U��{䖎��|E�q����d6"'XG�q*y0>���{84��,װ�4K�e��R��{+$��}{��rjT����F���X�&�1k~��0�+~&E�-C����s^�;�H�j�3������t/�$�7W�hM�I*�4�z��t-`=��_�AJi�3�O�J����b��1�eb+r۫���P���qi|��ـ$���[��B|�^�KIOu�<��a%�F�N�$��y�0��%>�s<w��9�X(j�*��T.� ��y�y8q��8�
�M��v�f�Ҵ�ꇖ�ʯ� ��A�Ca"�h�:;/zTG���9IN���’��g��N���|�C�,��ި�O�:f�w6�݊��X
`�M��kV�M�l�lRdȷ��wpB���R��'n^�k�����+MD&F��H���U�������� ��\�2���o.Zb-�=+�(�BOG���ˈ���O'&��0tŀ�-�)9j5h)	��C��ss�4�6z�]�m*HM�� �ދw��o��b�،�X�$��Et}�q�p��3v�JmP��Lm��
�K��3$�9��l�}H*M��[I?��s⦧�?&o�r}v�f�B�cϲ��{��<��K��d�.��\��
��f71��V��lp�2���-q�!1^�*�6�dw-:��ty	��'I��*y�$���LZ's/1�w�j�ip8p&��@����,K��v���"
rG�A�`�1�Z"Z ������U
�[o���H5o�E���c0����ZXW��o����tp�:���D��+�K�`qY�g�d�������¯
:�l�
-��YYZ�5���M|�����e��=�]�AI�����mml�����kq޵T��Hq���r���֫5j���/�3	����=e}o���$wq�aoi�f���q
�{�X�>L����Zߝa,D�Gx��~���!+��H�I8|A����!8�.�矶N�4��3|ur�Y�ج#��9�WX,B%��%u�X�����"�[]�Z�\S<¡�g0 4-��é��j(vz�|���IʧYXT�`�F����v��qG�4�� S��u���R*Ԟ�Y����3~	�*�X'qS���e>�^H{�*4�|����
I�4S��B7�۰sm�A�>a�C����ȿ�Er��<�)^�1 1����e<D�B�9ƃ��Z����at�?��
�3x,Sz\X7Ly&bh0&�y(�e0�Je��E�2�R��E�+����0��ئI#�#�E��%:�� ��dN	�Dl�u�Y�P�AFT�Y�4Yf˙C��H�Y����gT���4�Ӣ���)?|"V@���c���ћ�r�^@��'O���hX����*�J�F|�em���x9�0��Š*%&�)_Ϊ֜���H:�Ԡ�[��up��ɘQ���y�0�S���Ǯ#�	 M��e�^��Z!�~���	�X�N5��;[NU��v�x��ճ��N�sW_{�[�A.�����~��K��,0M��٤s�*�T�ktZ��: �������饑���	Cr�]��lB����|��N�Pδ�ŨQj���Q�x�k���Z�w����|~8��l\����bӢ]�N?�I��[|��H�	�囏U�}�C�筥�����IDY��3�p��,�ڑ��z�”��;��*�ުˀj��/;;�I��8�qGf/�o���]���:�r�a�����n�Zj�Ǔ���\�$ �вf6�xV�#��lє�E��. R7�P�_,.�0W�*G�`I� U�'�%�k�y͔�.�$l�0�8�=^I%;*U�Dâ���~��$����M�Ѧ	Ul�1�)76[�Rj�%��&���"֥k�H^O��"+�!�m���f��
F��Ո0G|:
�V�hy�_����,~&�Ǩ�e?L�G��L[x(�2C�����lş�(Njh�	P�e��`���?�i�8�
j���"|�q�Z�"ґW�G?�؈'�[�]����d�Nm�%��H����l��l��'��0�l�t���5�I�C�{{�� 䙍D���g{)GZ-�@�~i|�	���`�(}�<sY���=�;y�	{Z�Fԋ�܋IoVd�0".@�@�)�VpMV��`Џ�oo��xj�2)������g��^R�0Wg!��X�ww�$H�+�>��+P�.�om���ƪ�݄��+WO/ �U)Zp����η��f���=G3���fe;Ϛ��|�8έE
��Z�/���‹�`����f�_��0���
�x����>�����Տ_�K3T���k2R��2ǷZ��}
Y�g�V��05맵M�|̩F��������}W�5�Y��׻�e����S�'i��
�tz�n�>����A/f�Nn�콣��sjwp�T���4$�ΥW�U뾗ڽ�Vlcke��
JQ�q�}a�?����D"�۽�\��r�Bj��n�?��%��?�r��3�����w�t�3I@�s�7Jw�I���s�K�,^���������$;�eA�� ���P'�ۢ�#��©���d�_@�Ⱦ�*�h:�$�\D��t�"�FȑAA�5
����a$,�0ޮ�m�;K���Ǚ9��������Ո�����l��!��!a��Y��:�_I��&��ښ�*4=�,~ʰ�g*>�HRh�؂�AI�=�PQ���j��eWl�EV�S!N�g�㷬=��~Z��z�i�Д�<!D��@t8�R���4\`��I�KaZcf�vI�8
H9+
��"m��?�_P�!�\C��o��mh.>���îVD�Ѱx
�td��4r��hM��jE���(T:s"����]�wo�"��`&�ӕ�0�p)Z8��%��q701��]�,��}����dH� "�����l�9̷w�Az�R��D��~`�l�j�ӑ�L����~5-�B�����KV��ͣA��ⷐ���ݯ�>��=�҄n]^����r�H/Q)ՀuN�	��R����Q����̦+��w�E��p�#q�	��{,=c�����g�a��039bܡ�����:Y�ўJ�_�����ADUi����^Aȥ+e�@��
�ǟf�Q`sd��h����\؛��r��<�\�*b��`��D�s1}����Ź��V��u,Y��YS��q�Ջ�
��J�vD�h�@V��0;?��{c�v���e�Zr�� �ք�Qt$¬ev��b���ģ��n�s�C�^���ɮ�@A���'?�2���C�7�_g�����
�(z�)�8��Kтc�W�l�8Rn��A�W��єomI�!ϳi���R@DO�a��n��G����[C�@E������N\���´?
��9���M�������Qi0Ơ-�К�����{$��.���U.E��0���ғ��̡�-*�5P�2E�����s�T1O.�����ӧߛ0^K��p�e5(^]��)�3�H߅���F4>:�/B!]�7�i�\�<�&QT����/^Y���AA��Q��8/ꖀ�r�$l���0�(�f�[~����
;���]��د��gh��	摐�.�H�!
��/�(3�Uk^~|Z��[�o�<-H��1�CƄ�!�c��{b)��#E��U0�N���HJ���ȩV}$X��-�c��#��6���VJ�2d�@���s�.�b�<�\�"`CU]M#ҹIW����J�b%�]��Cf��M���蔀/��	���v��.�E�"�
,�C{@R�C5�n�(�ɼ!w��M�^+_����A��.��~�Z�g
OJ���}9@��~�U�TU	�����I�V���c7W{�����P�ve��ymknyCDz��(f��M#�!+a��3}J�y�>N$Rns�73WU��?����a%��E�u���S�"����H��$V��&<�Ik��j9v����
��Z>�8Tr���+Y�����*�=6_�/K��0u�bM�)3R�O<���<<���~(Eq�_sNN�݉˒����u�"�_U۳�Ӯ���ogcD��-�1n��#��B�D	t0O�3��6X=�q��"��)hE��3�b4(�p��	5:w�Af���_c��~$8�O��+S�!�Gэ z�e N��;gv7x	u	��@��I��aCܶa�A�G��uW�Lۃ�8V�Q7�{�	
��>��>&C��)��
rd���R��f����{��O��a�{��$�~-�<�6Pj�.�X���>�~�jI�Ӣ=&�)�Lη�=��~Z�D�B�
�h�)Z8G3Q�4*�"�]�jzf8�s�,Ls��dk��D��(��72�%�uq}��g�QF[vJ��+�r>�bɯi�;q@%3��d/P���	�1�pltZ����2.�C�X���u�#}1�X6'�ꩽ3�
�8���G�`DŜj��&�5�����$�Us?��p&0SJ��-��W:f��`H�	��~��fgx��+�Ֆ�/�~��f/�j/i�qQ))�Í�¸�\�J����
^Q@����Ҋ'5̲Hȩ~e��H_½��R��$s`yd
ϐl�K1�����]�8���.��]�v�؋u��t�ڙ�d����ӱ.��CI��@���񰾽�+??���4P�Ȭ�h��o�'ln�dԿ�$����Y�q��p+�F��)%�#�㚃i��ZD(ǫ��5��?��К�g
+�
D������e�+*6G��d5��B1y�G��
e��U��Ә�L�IN�-����2n�(��$�h-����$�͇�$���f�[�j��g?
vE���֪)B���Sn�`��Vx@n�����-�����0anq�G#���e�50Z�0;mF�"���A�'"g�sm�߬��s^���fJ��w�!q�p��zWA*�49?���KDAF0kd):M�'�#]�|ۃ	(��iX�:��0�?���ޙ�"�F��ߓ
fr��i4�*D����8��Q��.�K��T��rgq��a��2����b����0���O�{
�t���������7;�p�L��¢d�ͲB�.:��n�3�+3�[�O6/B`g�G	W
�n`Q����M�P�V��g;o���/�<U�~�6��Z"a�<�Mg8”���"���Pdh��°3B�AԷ*����
�E��H�}��w;��
�Uʮ��OH���pE�n��r�:�ǂ���|���5�*Wi
�|��ʚ	�Dsu5��{�Hj��a�������j�7}�?�Y�z���o�g=|��[�W��,8�I�k6�z�_��R�Rv�Q�J��v��8#��s�&�{�uο�Y�K�3|�0��~|Tt�j鼉v�a	���k�[L���[pi�viNV'F��X�&{o�R�&n�!>	T���bv�)%Cv����ߟy�F���8ae�f's^$�/抬��s��~���MU�ӯU=Z�$�Z�����4�+@��
��Ƙ��x$���
�������=�Mo֞�K7b�C�j�(|�e�u��=���o��Gg�r�
���4�Ҭ���Ss�d������@��F��'��A����m(|*ͮޣ�
�m���
�F�\eE����鈳iD�J��.Q���������گ�
��Tx��^P�aN�핕��MI���m��|X��5�SJ�n�"��������s�q�p�0�R��_��X�2�r?JHyJ�Z=>��!ʉa�)ԇf�H����笞}ڻx+�zR����[A�)Z��ߔ�;h�Q�P��ߠ�q���i��y�������K�F�p@���/�ج��,����{���imv�^�([r�c��ajm�������(��"<EP8���m�ʶ��nS�X�zq&5m;:QP~3���)yw�8RI�����6���%�ن�p[���<,(y���L͒C�Z��|�����{t�XF�&UU9�!�D�]�I]��pd6U>��2_8)�Q�}1�s�D�+w���H,�/*}cc����%E�jQ~  �{
�
q��g��a����9�q��� ��p�
��R����v��&Y��@�i�e|�o&��T]�9Y�= 
�
J�(Q[=P���v�l������>up$'����B���P��&9�v�ec�X�L�%K'�x�%đ���ϻ���'v����dX|�$A
��U���dz�'+�*��N�X�ߝ��N_�'m�i�J b��C�P7/���2�ꤸ�Q��֠�69���W@��sk�	Y<k�'/����{DӼ��e���h�;�͢ww%�`�MM�xw�`;��$E&�r'�Ä#f�.��p��'�ʠ�+�([�u9�bV+�Xx��D���-0	�‚J2W;(s�D�.X�"���3��E(C8Y/ð[X�a�P��#=F�r-|���tI��
�C1�{]��.���-z�=z67�(�s�(��G��?�CO0��*gg���js �e<k<>Ɋ)�13��yϕ�9��L�I{ ��/@;���!ς���O|��iw�O�-�UI�ٞ�I�4�7ҩ!y�W�R�	o�2�P���P��h}�Υ�C{(_��a�3`��RpxE�pj�	���jM�-���EŪE��t���v�RfB�r�F� �a��;�&Y���S-���K$�f����ڜ�m��T��-�iG�$����&80��0�+,��:���k�=��$��:�8��5��R1<X��e咯�-�VN\�E��6r�Ԑ&��;)��	�|.>����K�ͽ�`���˄F�M��uF!f�pypU(�>W����(�m�}|�j],2���=����\,*����*��Y@b�fj����l�I��4�€nһ�*	nC��l��>��Sҷu��m.A�.�������a^\!Z9�m��.m��?f���LX3Nc��ޜߗ��B�0{�/N�B[@�d��
y@�,x�K,,$pu4+&�FNZ��6�7�K�u�y���N2���Ħ84�e�8i�1v}y�s�=)Q�xսO�*�c>���yp��b���������%Q���t|����k#]��ɷ��xpJY����=�̇��
�B2W��Lf���-9ʄ�j=sd�FIu�i�Rl,�|5�į����b�+�kE�hen`���?˻���F�#�F�k���
���0�	�ju-=�z��V.|���\��[��6�-^K&ߟ"�&�8�@A�p}�U��y-�|���@�y�'�]���;���@��J
��2;6�h���s)c�i}��O�&Ș-���?��-���N�_u�@�}�ѧn�HcIv�؇>!Y?�[�NɈ�0Q4��Jߴ�%�HL=ʓb=����C�c+�^�YyVpUv�aRo�FA�M$��t����l��wO���d�F9���;�$�ّ94r5���-_4���3��Jr�$&�<aA����d��N	NO��M����fP�*�0����?@P���.xpp���/h���/!KԺ�L��]�z(�M�˛3���"r�w�$-?��͈
�}F�
j��ݺ�H�Ͼ���F<tZ!��$f�Lc'A���P��w�ȧ����^�˅a�l�~#�!�
/=r󮪎�(�j��ֺjI��K�l�~��g��Z�n��L��u�[����=Ԁ�`CT;��;b�q�͕+�k�A���k�q��l=��;�h�c��}@}bڮTV�H4V���ҍ^��ŹTB8��;j�T�C�%�����>�=Q6/���ge��L�����Vލ��N���S+���݅g��]+�9{;0���֬�h!�I�:�}�6���à�V	�`mm��Ƹ��@􅑌���h��^t��.+="��H��Ǯᑝ�(����aQ�f���fd}�'DO�y������u^$�^�(��J��/��LD�ae����-��X]���u��]�QO�#e�PH�$������F�z8��d�5Î�+�o�{�YS�@А��@Aޟ`Z�~#-�ΧOo���7�����þ@>�C�3�&{�iU��l	��gi��ՒF������S�%�d) ~^z�Nz��'�u ��l���!�WR����f7 �N�W�}����
���@���/�5߭�\��	"��^+�yjڤM�hA��A�ґ)׺r��kk�3�dz�����Ϯ�V�i�y�$�xD��l^���\��K�|fw�=H�b V1h�/lF�r�
��P�i��j%��ˏ��V��xQ����C��waI��Xp�|��|ꚝk�K�
�h����`h�-
Z˲n\7����Q����)�݇$ӱ�K�,IƠb7U~|�6C|צ�i�E���yZ�4G�+Y��*�1�����p�+����w1�R�@��[��#��ׇ��,���v�*J�������)x��5���6�^p�[���3���=p>���&*������6���;�.y�a&�O4��F��L7�.���S�-�^����?Gxe��f�Ǯ�d�4�|�s��{�Z�z����ܷ���T
�Q����L<?�g�	���A���@�ůo�c%�Zj��P�m��-hԅ�CQ��k?9T-���� si�Wv�y��qV����G��G� =�"_�u%R�g������`S��0^ u�1IR�ƕLq��B"s�|�����GF�/\�Hd2	�ԛJsw!,%�4Q�8�#֔IB2�WX���C^$鵒�O,b�І�m��+	M�l�w��s1�6���b��O~���G��G����}��0L3CfR���8Y����b���iq���l�P<�򒊫�Q,`����Å��3�#KS=��'�X�$�T��[=x�8�

y�2PP�x�w��u(	�@e�	Q�CS�R��g[
����&еK�r�#��KND�G`m���2c!60^��������^1u��u�X�<:�u\�b���<6 d0�s��4RAt�p��q���1�ݧ�Q;��O���B�P���P,n̿\(��ך�RW��� i\ ^|ڑ)�	t�`P�f"�eB�)��j��]���
��1�sj���2S��ev��%�j�ְ��g.EK��	��$�A��|!�Xkc���D<��S8�W�L�l@/m'ڰzJy$"�d��_��GN��c�vQC�gd1�肛W���׏�e�cM�rΗ����+�ĺo�����
j���r*Ċj-O���;R(i��Ba��]]u�3�
ŝ=�0�Ҥ>�z:]$9^�G�5���)ϙ����V���/*U��
h�ic�N��^y�l�������k��#�5�Ji��%�[�����L��S@��z�%o��B�fӭ��7(f_ j:�`��Q��P(��^ڶW쏓��wV{~h��܈���Đ�-//��"{���>�
yp}aY	���8�<��=P�dC�O�7&��0�����k����ܙc�<�a��h\��٭i�QMqấ)�O��>�%�wt�,��I��HZ�H�!-p��b�o~����ց���Ee�u�KS�D�r�hQ�D�����V�A�R��!�U�f���C{(�tw��j��:�>l�u��[M�p��"�G�W�>���8�Ɓ���j3�5�̯Tr��Έ��Iz�Ql��5������� �zd0�B3İ?�t9U��R)�����Re��H|t�EC6�2ʇy��K/���~L�V�Hz���cG������5��<�&E���t,0/��g4CzA�xttwWt�?����鴽
�^�q�����W�45d02]w�j
ٚJI
k�6�R��jc��Ý�ݻ"�A�E��3VN��S�F79���1����{��$LS):h)�޸c��eI�pnЧ���e֔zux�K��iD*����� cM�<y���⥤��X��n�o�ԌZ�J����u�ÈX�=��)
�,�%��‰�3�ۿS�.+h�-��.Zay�wI;�����6cv������>�ȼj��N�pW5ģ{i�
yP���\�Y�T�f��w`4��Y�!��|�篏�����1�u\��;E�O�ʅ��L�WT��9���h�� d2i�
��w�
�%qȂdN�rbn�J%�
�
��\��Ѯ=aD2z��%���$ϴz������tblƧ	NwD3*��U�U����r�p�(m��y�9=��H�p��'Q�m�Cp{�@��� �L�PĆ�_��Ji�X.V��O8�c��a�;�Mٌ���R�PF�?�ۏE�%����y���Zɏ�m���~'��-�kI��'�S��h5S,1D�I��9񐞍9������������>fq���Av#��4�I��C.C�"o&с�7�pY����Ӈ*T˒��BH ��$�|�~�>��O[:��Q)����"�z�bX�:��|���Rv��h
���8�B����6��R(X�Q�5h�<�`IY��W���'U�ڳ�SF"�	���ˊr!�?����Y51�T&�T���xIڢ�g�_����y�_����!��T[�p��o���;g=���q�|91FNT���٨�|��2%�N�V!�_/��yN$m���$>��Z���l;�e�YS�D�A�����YI�F�Z��+{�]������sS������R�i$��tR},i!�:�&��{��E�z|�׺,��_�ﺴ�?�u� )�<�+"t��u��˯]jv�ק�i#�B�n��3u�4�qa�����������
��/�*0��ۋ�3Yb跣++_����
�B��a�Q�N�����"$b��^.o����ڮj�N�>��+�ϗf��ԟ�B�	y]᧜�0��:�!S���P���ǚ�B�C�<��m.�&�c+�)��L����OUx�kȮ1R�[�<]�E�k͖]�
�hQ��z�!�'��3����'�����(S�-
�Ȩ���7�\;��w���:�*
�zOh�;���J"�=������hm�l��˳Qm���y/O�
�G6	�J��qX,�Ŕ��p*��V+���.�+��"�j6�EY�U%%�@:2A���.�e��:��H͒���#���[ƴ�3OkG�w�-ִ�R4�q��ĉl>0
D��� ~�(
��/��+S��c�h�.OB���<)yqZ���E9���('�F{�#��I�}{��R��F�\�������z@�#-�H��(Z���Tt�~�Եu~�A�
o�t�B�Mr�%�L��l�y�^<��̹�����{t^��z{�ps���%��W‰��
�wd�M��O�1��
��˭��N��YPSw��qma�@��qt[ �඿��ˆ��=d��-�Kt���Q��ӕW�ke��h'`�	1�O��N �0_������	pOݾ�h�#�A	�5����]Nz�=S�J}j�:���C�5!�����|̲���^����_(_��Ukwՠ*���4Z0���~��2��h�ws#)����>L��%ٗ�<S�u�uɮ[�߷b�}�Ø�u�K�o���n�44��|~��9I��2�6>e����5EK4L+U���a�ᰓJ�)���i-��=!��(��4X̋�������	S�E$�My4[n3�*�e���7��~�([l��
����-HJ��b�h�u�2��1y��E�RH�+�-@H)
Z��21�9��Z�����7��}r�sLQ��p7�G�&+��:�����[�01�_ں�kb1�υ
nk�@�5��-%tH}A�yE�e+���~����k8��<7�-�'LZx��ǿ�g���%�Px"����I��o�2^�tZZ��4�h���If�o{{��;-��^o��"J��LI/l�+i�B���!�5���K���FK<��@���75	�յn����۹x�7�AMgmKg	74p꾖_'�"}�̢�u�s
%)^N��� �P�&e�	�
?+Nl��	�^��|��0H
ی�z���
ޢ�Y5�!5�����{�$ٝcl"���!�	�1��;ǵ�^� 
�Q�9;�E9Y��>�)��b���~�m���l<�������ο҅����UD�l��G=��l�����v�n��09,��$�K%���
�fW�Ҟr� ^z5/U노��k���~��[�S��,�0��_����z�4վB4u��H�U����7�x��2OF��ٓ^ 
�sq�u�o���m����=)P�c��?wP���F�B����
=G6��4�{�c���Jt��T����yp[�15�����J��:=���"�T”8���r�k���f���!�"J�sl{�0�_���k����+<�|�����,����!?N�"=s�Yl�
��8��L�g�M]��o��a��Fu'1dCB^����1�ܥ$	?�v� �W��a4*�R��$�Ŵ���d�^P�\�^֋�:~*Z��2�!V>7*w]؈��$P����l��a<�!������'9cw�6�47��tYJ[ł��B�z�ſa;V������L���Oh<�-��3b	@է�%J��~���X��M�k&��H�X�n��0b9��xZV��C�4dU($�.fH!�V�p���]Be��C����kIཽZ+�����i�k�
�VI��ӯ�G�8�h�uƔ��L�z��ጂ����`�~�9-Z|6��e<�!�.�JZ�qK,'8�t��!��M�*�F9a�bF�տ�f�:�R��0���E���/w��)sr�rY�B�`�7���̤�W��,��s�t�]���-8��X��ٗ�d��|�+��/϶'�
�+�
�m�2_����z�X�H�ٵ)�7L_H�i �_����x�T�(ZU��R"�!���K�
�������1�������v������?����䗨%O�5d�T�R��2�󘠼��p�����P���=�1}旘��8Ʃ�\��w�[6{�m�9�,9�V��Ў�N��G���&���
 ��*�����E�\&���
ܳ#���4sk�����u���a�6����^I:�FH�{���C�Q3�)�����nђL��0�����8|�*0R=a
�6���X�ɞ$��(w�p3i�^�7#`��׊�X�&�"\dE��P���-@�Y�a=Ei�J&#V��y��rp�0����~<������6�z�H�Q9�$2-��v���#WX�Ia>��Q2��-�w�u�K��M��({km�xה�����jXi�����(�:O�)Ԫ�AE).贘���O�x�B����{�N�@�-Î�.9���s��	r�A���K��Ca:1���V�ҕn�d�bUzIN*�w0�#L��!Ǝx�W�^j@|3<��R (LR�$k�&hvR�h�Q��C�[_gȕ��Z�m�%lg����.�%Z!�G+G����p7�L�ޑ���cc�AOX��ՇǷ�{;�q��7���Pu�F����%�A�K6���f"�z��aw��|R�1����x�&�T2�yJ�2��:jw�ʱL�����<r4c�3l��+������u1���ɽ#oilW��Q�}����2��-<�\N�5���:_G�kʮ�>�Fhy��|�R
yaa�i�r��9�J�s����TZ""Fa�2�ݞ8{�jT-�f��]S�	���������%�^�-P�0�b>ܶZO�E�����C.{oc�ȐZ�P�B�J�7E�vWo�)Zv��ꊹ��aD;��NjJ��,��k�{��š�,��h���p �Y���k���L�d�aCU�Zw��"�~��(�����N��+A�}fetԝ���
�{������7�8�q�ѧ{�:���Y�nԖ���l3�h톊	8<�;{LZoO�ܮ�<lvo~fN�X��[�xܬ���U�D����٭TLE!G�M7cD�#.^������}bMQ^��=HX_�6G�m��e��N�b�o�``��jZ��s�a�
���w�	�q�% �'�U��(���1����@�ٴ��r����#S��]?A���ާ�����E�����1��p�"�j�Z�婍S�k��R��+O�{]�(�d�&OZjC<m6l���u�NuU���-E�cw<=S�M��"c��]PY�"�:�O�.��8u\[��۸8w�)��F7�cuX�H�y�
=M��q�h�#-X.�l(Q���`���L��嫢�Z��V�p�O��Ž{�����k��^+�����w;V����B������;ȟ&V
rMȲGx_b!X�ºT*@d[�f�dR`��ގ9�&Y���=�_L��u�2[�=��]S5{���WZ���h"��F�ahG����iUx��~{d���=[&e��x��'�p>s�����(ZD��u�r���I��!����ON�zw���.�l���5���8T�WVN?^:�nC+l����k���@za-x�E���!�X��O�,Xu�����w�R����TB�:p�_,>h�-�g��}�pi~��G�A�lӦޚ�&���Ͼ�R���`~Ư�d�&3c2)�KDN��^+�N�Q��X��e��>�z�⌲�S�a5ܭV&Q[���
���=Q2S�8��X���.+��rԨ��3sNbIFB�A�l+S��\��/m�j��> :̒'#Ca�X[�d$e�3�yq�z#��)�t��L��.����Ag���<��-+��Nd�Ӂ;̪�5�$��^��N�b
�����y�^�����)�pPq���;ʼ>v��yMe
߾������8�WqOR�i�8bK���d�0�?~C�F�_O�I�V�9���i�@�W(x��-o�K��jӒç�?����ce����(@��I��f%'�ɧ��&���;/�DD�;��dgr)��4��O�9�#�~/gy� s�B�kɳd�!,,qA�	���Np�d`��"4<�$[C���'he��Ύ2aF&�g�()���h�o�]u��r1���D6�;�iBӟԸ�a�Čh��no{�ʞ7�ǢZT�b."�!��t��\��eŚ�&�NS�w	�ۍC���F!rEo�9��#l:��.����]���ֽ�%`�%��Mi���&ZN_�..?t��h��_Ì{d�W�W�f�x)�w���M��$��=3�����jt�*��
D	�l����?E���U����l�>��w5�����?��E�ֽ������P��^W�i�PGo(Z��7���^V�+���?m\v1�
7+�
��׻��@
~U��];�nNH۠nu�͡x-�s���w
ʈ���ﰵ��E	�5��R�(Z�z��D�Ƅ��S��L�z�|Յ(ZX�,?cu:���
����K��i��*�2`u"�Mb3:5�3�Ò2�c����^�r�S��X�ՠ9�Z��.�D`@��y/��S�)h�as�Ԩ��YCw��`�#UK��2��_�Ye������e��ꏝӹ���) ��mtQ�n,�8d�k���(�j��d��s���fa�ɕ9�P�  �=��@n(^�k�g�ED+�p��`6Sy�?���H��?�z���w� �N/vt	x,,��@/D�7Ӣ��bZ���u����IC��)Tx�]����;,���<����E�jr�YL�v�����Yq��%�(�B%1G?��j�=E�����9�Ճ�	iv��,E��kAb�J�:�@��@*Q�)�'�Ic������!AD�^�\��%����p��+����\"��K8PJ�;�I�c��]%$��iy��:l�yp� `�ӈ�kq���y��V|}��;m©Ǜ�ށH�b9��R|_ه��տ~Hе�g�~��ۉRf�ƚ�ep�p�>�^�3|�)B:���u+��|�ߵE�\���a.��ڠ�d=!��~�5_��	�͛ʃ�s�2�x����"���xd�П��X�4N�M���@��[�\��I��.���{��Vh�����I鱼V�ط�FO�����p��Y���ލۤ_h"��	v��r!�I��H%��^�E���qR������]�d:�5���hp�mǚ�?�]���@AZv�p�����9f:}�d��%�E����� I�ݮ�R�2��7������",�+e����9�,[����պ��a��_�۱h��D�P�
����35�#kӉS�r�B�R��Q�@Я,6Ww������j�-`}/����I�Ln��!l5i�*gP�,jC)�X��gs�H�	�(R�8�h
~雟'=^9��V?}b�}��67�9씇�+�x��P���Ͽ�0{V+��ا�<�~No�Hژ�]�P�x��l_7ˣ911JV{j篣T�S/�_�4��F���SI璗|h^�s��⓼�4�T�ĚY�Oq$k�����L
�O-��[�H��d�1�Ư�-{G�{Q`�sf�@�㺯]�e]y��-t�7c
�ڢJ['
�����A�S����t��]As��8{^��y0�g������
��#LA5��靬!�];L�����6����m�X_sr��b�sׁ��G���i�PmEtѻ��3��o2eT���>�8"�6Nr_�Z}�?<Tk�
@6*�s�H������r��L�ݍ�V5���y4���he�3``��s��Yw�1{���L�+<��g�}wj�Z��YI�&�8��2>-������a�h�LT��,F�/���o�l�MA�eP1�y0�A����G<#��W�\���4tkFLVgة��Wf�d���w�껋3�wo߮X!�NgC�С�r.����S>��cj��#��DoI?�l}s���B{C�
?zR&��k��4j�]���,�����l���-���=ng�
�u��a��R�FeрZw��?n
�-��Vc�w��9Z=�Ƒ<si�UUƄ��˭Z��+���v3M�KV��IO��M�l�"��3	`��Y����geU��+�)�� ���+����aF�2�tnO"�<���;�~x�������xs-�\��d�
M�}2����K�0���,��!\Ho�Z.��d�i�	(�e��f������M���i��f�� ��lN�V��B�
1�nxg��Ho��r����?ܰĘ�a�`��;��j�i�C�7(�D�H���-\�)Z!�\rĂ�b�@�Ā 
�����k��Ė-�*pX��C&5��'~�1��`Hg��*:-�k(�VsT�o%2�"��v�c�Єf�=[���7�޺M�
�Zan(�$�.jZ=�Z5�b�JZ�s��޻F��hc�i��?��"�o7����Y�E�m)�+�z$8�T��M��ͤ�dÉ����M���3����n��Z�[�=r��%]�'�=�m��h��Mr%]�N��-`fw5�~�ߧ���{��y�!�xqs�M��m���u,ܺ�)Q��u~b:f�j�w��aϚ�2��I�
�z��+��tk���[�r8��b��d�%t��Z��?�*�Y�V)Z�Ћ�{�����"^+�&S�� T�A��%��瞙g0�PA�P��ͼآ��E"}�ʖ�0���l?�3��Z�/�Bs��	{�Y�)�����B�2�J����\M/ħ�Ϸ�Q~�����E��Ќ�ḃ�z)P������3�[��Y1R��ME8�uI��l��ʨk9O,�<�e�v֜|i��J
�/DעH����gD�hIS�Pi�҄mS��h	�j��f�X\4��řXD��f_���"���x�^�@R�d<{-:NP��E�"�/��N&�@ڻ���ǹ�W�������N�"��!�_qN�F��]!�bFƣD��wS��~.����t�f=��}t�Q�BP.��\�&0I
�\ɑ��V����՚�f���:;�O�"2RԴlIn��� I_5uߟ�����v��Mzq�@e��kN7�C��eF���y����G��;t��Т�N��6�=�Y�ކg��jp�+E+�l0�#�È1������G�r�FD�j��]�������U=;I@�qI
��Ā{j���m�"XM �d0uA�	a�upW��2	$�WHv�b*�[�b�|el]��j�����5�������<�=�n7����??^��%-bZ��[���;�?��i��M��~Cђs,�2�=�r�>�=}�S�Z��7�/��eC�cB��P�
�9‚2��A�J�yy��OK�A�>3"��-s��r�;���؈���wo>�;%j�f���?•I:�~�^G�<��R��9�n�C�G��4��ȋ�v(vAǜd��B����0���w�_n�hFb�J�3��UAc���<��C�Wj��\�c�˳k�c֑=}�Z���b�-/b����f��|Y#>~R������4xM��#ߨ�l�Q+*�*O�&D��,�n6��|b��&�Z�<ro���v��jֱń��!wK���1ஒ��n�X�wEփR�D�C;��&�{l[�t%�&��EJ`a�-��5H�ř��i.��,�� ��b2��9�H����N	b��n��EYB�-$i/'�=�x@�|/������Ȋ��p�G�H�p=k��بp�ȣ��"Ïb�1�UQ�H�፡龾N��Q��rT�;D�ST�Ѿ'by(��|,C���l=],��\^g�����g�4&��Ѭ_�T(�Y�`��P� �\��Y8�U�=P�K�I(���̌2*& �Z�+C���B�]���|�n
�g��^D��v%�g/����a���>�O\�F�|O��z��n����.\G��ԑ[���⑬�`��lL��Mĵ�J�_���n�lO��C.�Q��E D���/�>+�-3t���(�:��=U��[�s����ޑWԑ�#���C��l���)6��l�Aq�M�m��4F)Z�;�Tү�A*�7e�������ٙ)���wMWd�Ud�z�Oaz0a��7�Zx����˭���a��7��� SY���j�3练/o�j���� ��V�h���8@3?�����I�/6��F���f�:<S:Ч�E��I1y��h�]H����=+f�T���v<�Rk g�6h�׃�p���<@�B]?���O����|��,Ml�Es8�e������u��f	�*6ɹ�P��7!헼*E�kPm�Hc�cC��ͱp�Y`��v�_�6�����K��z���1ku����p�,k2q}K�Za�+�A&9�B@*��b����P{p����|��l�d2����G�8�PZK�T�[)�-QJ�_#�ql����5a	���_��	^���?�H:@�㜔��(]�>����{��lf��8���n�(C�1C�
@�h'5�b5
��.16{$^n[�1;<T@�2��e��pɵ�-�e=m<P��������5��44o��fN��Q9��	�5�e�̙��E���ʠ��=� �q�N�d�*��VpwN�*<�
�x˙]�}I �V��ݪ[P�CX�և����gw�فJx���`$�{DKh�����-
�@�����E�j�$�p�\�{&���1SP(i4s�x{�:���~=���aG�ʖ�De�gm��.�zY��Z��Ӌ�ۤ`�7�+������޿�4��Y���4�������Ӌ�@�^&*���d���%_Lh+OE�N/Z���p�~?�e�\(�"�XZ~�a��>�H��@�'�YA�Ge����r�J.�{��Y��%�{�O/���]$y�P�x��]~�m���y���� R��y-,6����X{����br�地�΂FIѪE�F��P�Bй<uw��h{w1�^�_�ag���YtA���c�`��ٯ?~�b"���������B� �b��$�*��VK�N��T�r�H��������0De���b��������ZN;͓>��-��D���κ
�f"�19���-�����]�����{9;?@��J�!EX�KJ��h-�8����$f �-�Gɨb��u����k�b�U�H�.�B���'���-�Cn�oӢj���Cp�����r�fӁZTN�ř��~B��V3$xd��J�n��4�rsʺ��&��TZO�(1��7�'a�~e�f��Ng�LUh�٩%&i�ұ��r��d&.D���(Z�� v��yM������fF�}��k�z	v�HTy7�ʎ����%�lK�㈀l�wV�<�VA��\�t�VY-�죧���EP�
�@T�\������ÑKܛL�;��F�.�@g���F�����~yZq���x�������`�p�C�ʯ%hz�e���:]�$w�A!~W�K\�'�3PY]��tA�4��s�{j����x`�����rv�0�B���v�P��}��q0N�a+�}���O�h�ӕ
s�q��N�=4B�Jv��OEk'as��V�#�=�$P=���S	� ��8?���*ܖM�Ԣ��
j��^PO^�(7E�-"ɓ8����i貘�/}�|��Y A7/Eɕ��W8�n��k����M$G�Q8���ٹ��8�\WK�WCTP��hi�6a�[[_E7C�ѬX?��!
vꦄ���f&��grڞe�T�p�a+>�6ꩲ	Xkb2��Mт;M�$��7�u�#$���Ж�#,��_�]�,s̚%��3!�T��EɎ��	 ��Ƣn*zB�B�a����<y�R���
��dq�>�h��c�A���~~�4�~�"	��|�W��F?A���j�����e��:��ԭ�q�}/��?�'�-�>4%�����/F5�98a�ַ�=����m����=�rҠ��eM\E9.Fޔ��*\#�v�;�����Y�0��l�>��%�k2�9G���
�Z�M�X	!,�Y{�^�T.#;H�B��7%2�8����<�\����f�.��xR�\\?X��*�����ރv콽9���23�5	��ڄ�"V����JUccD�2��"
�j;�Vq�_���d��6�p�P��K4���+7)���+@�C[���S��:4���vM�˳N3��A��Y���5��f���=V5�+[b�C��hw���U-j�Հ�жخn�{W����.�`�xh�ė@�W�t�R�6�W�4��p�29���t�U�j7\�=ʣ�Ϸ�kv�S�K�w_�]�4ZY���S��*ˬ�x&u���p{a�`��c;Y;�B�Tw�33�lT�Sinm��q�z+���KG/d��R��[���M�5��y���=r�ʂw�\��]<{x�\73��#�Z]���a���æ]�㘢���>^ѣ@�JF/��>�"z�yF��IjTο�S)��"jb����b�)��{-h�@Z���y�j�𞃮�d�z��.w�ZF����X.� }�8|5�/#�C��fW�`��x�P�sK�ȶ^��mN"�n�af; <��SW���Ε�vG��h�$��e�k x��^GŒ�u�2��`���gb���R�L�+�/~��Y�Yζ�Z�Bc�R�~΄�j�@��d߽;;��㻟�h$�������p�'�Z)�1$���ˌ��wZ?-�T����m�{��(O2�A�K�}�Y�2EK��B�y$�Wc��T�v9�h$�@�J��t������ҩ:_r�h�Z���'=9�I��@�LXrL�W��4Mɷ]{8�ņ�����4�p��y'�N`7�����A�n�*{g�~���~�T;}���~���I��'�:�~�u�,�+x�1�yq0H�'�jl���;Ql��?3�d�+�b<K���P�����o��D[�L]pKvR�7�֝m����x���U�"�
6zf��p3�Q�:E=IA'�\���IG�ˆ�k�2���k��-q:��}}��*^�_b����C������s�>UX�}�~c	b��o�Jpm��
�,�B?<Ɋ�������H������z:u�׎���\V�>|��$��/fT-4|U�zį/hJ)�i���_R�^̈́�)X�Y&��la�-��w�vOj�5�{7I��Zg�j��h�;|<��:�S9�I�4�8#
�qwdiis��pBP9�|�֋Z���3$k!���T���ff�T*��i���Ә�u��-���~��`QzH���\9LY#A���&�����4���"X/��&.;�?�`!�q؈j�,4�\@F.[�V7��TF���q�b1.���Ԑ�`��6C�/_�T-�ڟ�&ŚDZ-B�R�-,2������0���7d$&��gCL��/����푁����Eo�����YӲ��Wf̧��39|��*OY�5�g���~#�ʴh�p�cfV>�R��N�2HQ�_�u#�)�BR&��z�Y��!���E�4���#�<��~E�(Zũ��
`�"�ƞ��ؒe�v~��RK#�3�&�dz2�	�>s�V��[~C��
�Y���gH���?{f�]�B ���0��Oߊ,%|����v�ɀ=ɥ��,��'�v�lo������c��]L���'�՗�$��`��z��㡧uhd� �a��{}��y;�[|�i�½�Fi8ܕ���}VE�Q�skJvJ�f��CXԛ�#<��ns����}��F�ѭ�HU��+��sg�j᧟~���/��f{�`t��:�Y��u�B�S-�<���b��0_�z/n�q����@�-��kx�I13�!ߛ(Z���Ӯ��e��nԝNI��l}����"�_�5'�(Z��+�%�Pv7�_Q����7vg�A�,6
[��#y�Z�EA�wqF�%�R+,֋�	�����ɨwo	3���*�L�G1�r�b�H��)-J�hl�t4}/��P)���#*3j�m�*ݮf�hq�Qu��J�4Q!m�L:� J���d
���#z�ʰpF��.�JVd?�~ )kr<�=���t&��@�h�E��~GDI��W_�Ek0��0x�d��X��
~eD��6�C���͘��Oe�zuP߈��k�e�k�����kТj����HV��~�{b΀��S��J$3DK�����<4�^X���ߨ��#��wr���DݔL~����ઉ�
v��)z-��aiJT�[���´l�T�X�����eD<��%X֔WH��ɞ�KxXO�~w���|`'L�,aǀ
P�4�X��P�,M��m*�RR�	�3�2!��@:)�T��R�f1�]S��eي��
Ͱ�s�����B��|$����Q���������kޤ7_��*�����5v�t�-�j�D��� ��aE�d{ɋ3�?ܧ2��hqE��<5�4D&�x��!��#����8��`�����0�8:rG/t
4d+)2
 °�Ρ�i�;�A4���H��Q�/�#"�k�]Pk�Y�U./.by�v����3—�a�)�TTX8uS��#�P�Cl��}jϴn����*�]-p)48���mω�R:���E��:͋��d[��hcf�n�=��$_�v�k7̕O/�Ҵz�����m����"��X�J�#��/u��/�����g6B\K�!p���Mb=�?�P��+-��;;�Œ�oop�}K��Y��h%q�d��=�ގ��ʰ���a�sM{n�ƴ�fN���� ;:��*�DZ+�����|hխb۫�]�y<�ȦS�5����x��x�Jx������i��6��%L�H!t^Ԃ��h������83�k� ��~���k�
�޾�;�W�m �a��zA ^x<���0�5
j&�nd�¦�Ӡ�RG�.M�	_|h7�h��\���4S�V:2#���aKO�D�4�P�~�����{�����#�a
�$���ɤn�4�N��o7��I��~��7B|�و�?V�ϟW�����s�""rV�=�p���s)�;i0<�C.lȗ%��dd�ࠐ#����Q�ߐjO�&�#C�F0j6>o�E�B79\C�Z!��ofdđCъ��tâK��^3fV�G��Ԉ�z��7��r��2
��۫���q,Dݓ����[����jӎ�h��_�)!l��Ob�aN
'�h=r�C�^!���+�&d�+�1�A�1p�beY�A�L4��b�G�L����F�!�Tf�ٓ;w �l�
W��T�R����L�PC�լ
�>1һ�̝�#�?�U���d,��q��ݬ5����4�|b'֊;����R�ދ��p�VO�V�+w�T��m��k&_�*��ܡ���m��P�k�|8��w{j'*'�5I@:-�k���#��	;+1_�Z=4�
j�G�����0��{�-���)o����BE��.�1�[[|������u0�.��h��w..�
`����쁿���^��Xw�N�'�hm�J�I��Q��О'�X�m��z/�u �Nƭn{�p��+��j!P�n�D���3��اQ�G���U��ÌddHl�%�`IS�yl[�ՙT�WI*%��9::-i�_�����5����HC��~b%�ŔB�OԹ��u!W����ȯ%Txz�*Q<+��F
�BH�*���sߵ
.u|о��P*b*���\��C۔h�S"�����OM�WO�xGK��8$��W��g�A� �'�L#mm��-�S��1��B�矦��i�5��P�b~���ߢ����%�L�w�0�C[��>��a"a�ϛ�"K���|�`y�2B����E��u�ۈvq�#�D����	5O���1M�]�F������n��M) ��&�#�Ϝ1…H���Z��w�����=A�ԭ���>��X	e-0���9��=Z�alBn�ڣj�]S:`j
n�$/�:�.�FT
wv����z*����lo�l!��]�S�Mlk�����[H@h#ׯ�����U��,9!��8	Jђ�n�\���u�N"W�CK
�l,�.�~���r�*��l���;j�D�>�[x�C>���g�q˂zՌ����]�u�E�� �w��@T���P]�v�����k&�=��w0T��h	ۓ�?��K�|�<��ڶ��Y�w�
�%
��O/�Ww�YhYt1OQ��)�vC�w!�um(Q�#�1d��^�5r��7{��I��ϰx��.{�x߉%a.��j�E�~;�Z�%��[;�~Pp[�mZ�)�g9O	��k��1��w~�Z��bS�x�� E+�5�����I>�h�:��u��J����
PGg���^t���	��yՒ�w)K~��溺O)f[,+e�����4ϔۧ�Q(%��R2$�>&��G`K$��C#�5��_�"�}:a����!J^���ȮG��?�c�*��M�
��lA�0��(= �©���!K���;&A�r)�[��la��Ai������[�~���>-��j}�Υ����֮�"wN�����.zChg�x%$��m���}�N�2�1\�'����%w���*ف� ]�Oɘ���2L��v�5+XwY���#�{�lZ+�S��HA٩Z~��?��8Ŭ���X�O:n��
��!}]_�ݺ���Jl
�꒷%r�9̰�Gi!���������^�qz��>U����kɤ6m���e�蕎�wh�x�i8W<�q��f^�j@����O�£��]kzvyp�hڀ�p��·���u/1+�)���(u:�͗���r����N�̺H��>��2��}��
�re�E�-!:���z��KU.�*�`�pJ�2�U;��$�*�CxC~?�ދ�:C}�|�/8�=�����������xn�7�\F\�BvN4���4Y��tl��lU^���M��X���L����6ַ������v����2�E�6�E�)Uae�}e��fjLc��TV�^�^��J`w�u �]��uP �GqKT��?�tkh����nަ��d��-���"���(�������rA��I-6���$UՑB$a��ʃ��۔�w/��KG�W=���0��Ox�
#�jЈ�>6�����3{Ml���4�2�!�tf
�����:.q��L1�Q�L<�i�q�H��4bӸ�10Ih��N��R(}(��CaZ����;I7J�<��;w��lz����] �s��PF�[%�N#R/�*9�
k|���t��I'&ctY���	>Ёr'�G��<Sds�~�BR�]��v՟l�*{s��Z�@DO�j�sT	�W��f0�:�i��K�凴�w�T����n�퍨�d��ĀJi��
��)A<������w?�=<���Hq��aB/�F5�Pp�:E�D�l�@g��C�p)I���Z "m�ܝ���$K@'���7G�a��`�@>Ry2z�
�c�!0��]r�D2mjH�Ţ'u<y(�
“@�Q։�"@�E�����_��:�B��� �ok���dbW��D���џ�.2�������Z�K��\�3���z}Dd^.֝g�2�JT�!%H7,���Z��m�'bpڢ�Q�J�S!?I2&��ai�t{�����ʬ;��V���_������8�!�.��"u`z�lUBԎ��<$�p֭z���� �k��?�K4��w�K�fsXr�ze2�-���S�h	%#t���?���o��ȕ
W��*]���-���</����
Cm��@t�J�"����.��,t:oB�m[����B���PN��q�W���� !^c��q;�v
��[n*��N47�	~�b�T�]�}�M�<6"QR�����bw��;�V�����M[�m��M�v�~�(��vSOH�H�$Y�jY�g
u�1J-h`�W��WAD>����o���a����4�F�
M7F�"�e6sI��1I�Z/I��f|rS(
]���O.�ilA-]�����i!�
we	�
Ƃ�{�JV7����2����;.(�r��I	�����x`s�%|l�8B%�Ӑ���;�Ֆ�-��+���|�)Ĺn�\9�x��n�\�j^������R��J/���\�UE�	y�qyPI���(.2�&���������\z{{ۂ�T:�E��T��ף������k���0��4�*qp�7��
c���R�Ԅs����9�D%#���x�T�I�\劐��)�)���MV�%$�ȢAg		�t5�0\��Qg����'��\�O�������[�����������H|�{�pYl����R)�ZyV��6����!~Y.��j���A
��Z{{<󔫮h�n���?P�U�⭞n��(r�,�J��aJ8�ǀ�2�X����5L��k�1\V�vk9����T���e����9�n$�q��[
��+„�����cA��E��q���3�$���F�X�Ǹ�(��J�ʰYB�8��]�Z5{F���-sw�A0�n�h
���"�֬D����drR0I�Uk5�ԁK��� �UP��=�9�/���{
<a�����	�m����&��K�E�x�0�}�f$���9�8:B������i�\&j:�J�y0К2m?hf,���K�l2�ը᮵��C�A'4��	���s�vfޣ��̡�#�TX��{@�H�K�Z���\i�{%�J���<��ј��s�tU��C*OFM:tiIgpo(9d��( �Dﵰ�b7Y8�!�c%����R|�rhI��͍���"F���l����W���%)"d4���f�CzJ"#a�V�2Mkz�&,l1����z��}A
�MBҩX������u\�ƽ�{�g�уsY�e��!��q����<�#�B��F+=���l7@O��0�'K5����-���F�4=c@Rs)FҙQ;N�	�<1��B��P��x6�����7�+�Qϴy���&�,�A�	Cha6��q��&V�8��H��rB�3�I�٣M�Ά��6(V��+���h�!�K$p2�_̈_���-�Z�
��eD�)p~j��\�Z�3��KO=�N=��6���??��>�Sq�N�`id���s�S���X�ù��33�r���O��.X�v�9��s-"��<8X����c��R��M(���e�R��@,SC%Xd	�o��L�����Ǘ����wh��"Q^%*�^�'�+7y
��R�P�}�Y�0��=<�	��9zE�T8�!���,/�O�DHZn8(k�~��̝�B���ˆ�M�ħ͇�71P�R��	9`"<__�Q�����9u>��E:.C`�oo�^p@e�;��e5O�c3MDtM�u���@��k���E�>R�&�,�Z'�ζ�ʱS��L��$if��N�E)	`����d��7�4�_��W3�ލ��t��dZH�~�*�z�80(�.
g]􄃴RT\�aV�������֨�����侞)D����5���u���R��8��@6��Z[�]��dj�
�h�d'C�2�F��Q�J-�[�	�㫢���l*�'&9ȃǦ[Z�O�=����O�P%�a����Ƿ�N]�yp}jC�Gz��'�Yc��V]N�>[B�R�Y��b!�QDJ
���������+-$3~f?}Vb5�|����BX���a�$�LRm�F�q�\sÍ��3��BQ'Su�0X����{�S8�=1�Q�����f��rܢ܅N�
)��(݋@XI>!C�97Vq@]��``gSL��h2��:��e(��"�PU�'֒$���ی��$�qf����I�8�p҆w���t-\��j�P�"��*��q�c��J�~>���&`{,0x+o�KՍ
�]��OԽ�SG��%�?u����-�3逧��桄ۿn��[�H4���ƺ��{x�f�S���c��=!F.��A�Q�8��7����������a�`�D��1���#w�Oc�p:x�̙^�Jm��{��ƙ�u�[�
��TZz�8�Q�!\;[;��2�����<,�:6(���4���G��������(X�}����3�0m�5���G��Q��
�+Pwj���U�ޯ̺g�t8@�&�Z��{�=�Y<1�QF��{!BX�W!��ƕT�����c�9�i�T��U<�8�{RD7:�H�kT�B3骰7%�#���BW���u�$�WPՇ�<`�@��z&a;�����w5�����S���<�p�D�x_�,d��e�!T;��h�j<�>��C��E�CR�M�$)���Z�~q�_]���Y��,�fd�k����.�6�ޜg[ā�ZPnV*��)�r̀x���A],��&����,@-�9��w�xp?�k�3h+x�g̒��Z"�VO�δ�����2������C�tA	ñp�2��y��]����Uq�aq��c�W,!�LOmRI�@$K`:���b����_p�4=+[��Z��I0s8�2�0Cc��wVI����Y]�n���d^�����%���d�[%�W	�C��␀
�JŕŻ��k�g�c߲�Eк��u�h���0<�`�숀Ex�u�dY/�a/�Ŷ\��;z��Ņ�3���,�)�=2�C��jǍ��,�,�P1T%���L����#̃4Z|��$���c�aN@<4/�X*L�7��ae/�+>��h�j8�V�s�Ԧ�7�d�v�<|d7��`�X�5	�k0q���u��^��@ ��P�"�޾>
w	��1�"��Vܺ�Y�<� �5)e�W^�^/��0�J�N��Dk�.�J��>�:^�׫[a��ڳ}�a<�(��Z[����>|��[˅&dN��@KL�i�����i���ȗ�b���L�&y'�eÖ�$�k����8��Z������?���[N��9�&N>����׺��_ypL��~�)�%��e���#����
��i'0�c��~�>O��[��M�\F7���	�����w���<�Q�C���F$^�b�%m3�6�f��"l�h��qSH
�WW^�wLv�������r����1����|+�����Z���?��5�
���
P�*z]�Q�B0�m��
�$";%��G�l�T��6K̽��%�`F
-L陴;�,���s��{�Ec�Ŵ����Eu���5U��#��0ma��ۅh15��q���R�>N@K�ArX�c�M�(e��#�Ջ^,P���8�l
��K�K*��9��*��09�t���X�ӿ|�?^�����'un(4a��n����0���������H
����	���/[m��;9��G�7���BmZ����J�%R�=	�_�B~�X�y96:�U�����5�U#�|y��(�(��^��8
;�Z�qBVʳ���!��(=ψt*��؊{}�Γ���ޠ���J
7��������D���;��;�*��a"l��b�%9e�7�z3
��ċZR3r!�0���x/�K�&�����DK,`'�A�!�.�:��FH�Mb����˺��~�(��ݓ��5��Va@����6G���M�)x���y�9&����=�H1qV��$��B��Lu�8�L�*�"�i���MKHD['E��sU廩j5�$�F?ŕ�A~�ҳG�M��`�!{TW�xȉؕe,*�:SQ�_�GO�,n�/�"L1O������\�.����s!��<R<G�9�ޫ�$�=�@N/��P�ݞ�-�2̯��0]H�Amkd	ڬq��|��\.[D��*r�Q�#* �~td�C3#0��9���>2<{j-r@�fN-al�����^�/��[Џp�i,�f�e'�<��i��?.?S�oL�_��]�Μ����H��te-(Z��%B���gZi�O�{`��qev��Ԓp�3���E]����'�����	�bL���Y� B;tZ��>,��I��z�����
�5�Y(�|�}Du���t�L��-�k�"�8&�b�|��lx?��\�D�T���~�Q�hW�X&��.���m_�L@KA�/�T}¬�I�r�lq�2�#��a	ʂf��������.̃�X���O���w\�^7�	��%��i�^RL�WP-����ʂ�aS�>��ZǦ�x�\�m�FG~)����'����8?��}d��M�r�OQ��b�[�\�3;3h�E�Ȩ����z9Žu��0��Ja�]-WX��{5�s� �^9Z}���t�-�T̰f�%�,�VERY�2A2
������H��[;E�y�k
������5駰������*�gh�h�H�쟆Q��O���:����m5ut�0R�Cs� �xS�����XC����+���Dm�y6�E��	iM�)TN�q�+f3Q�JT\����r�Q��B�Ս؊h��7�}�Ň�������]2�1OH�I�
*ZZ��ш�
tL^�d��r���<��0��X�B��9F(!ݭ�&�qOMu$ha	;1u�/.�lNj�Ҭ}R�Q���T?���OV%��鲉v�)��Q�Id��8����+��ˍ����]t��""�s^&T�]��7�����H�s���U���8e%��s�*!Ft7%_�Ҏ-1���W�wRjnA
���Υl��@dhZ1Z?�� c�Z�!�p �k���Ym���ws��Q����b%(����<��tC���[y"	E�G�6w$L�h��$�0��О��&n����t3�'��jδ��cn�vy�E).IHc
`�}z�/*�b�o��b$[��L.jW8��̦lv->6�5�	ަ�o��xۨ�[�0��У�r<X�u4A-��7�e��ߑl��Sn�O�t��ժV��Q�0��ׇ��V/M�>x�QjJ��E�KHaaj��{�n8{]Wm6W��կ|�y�n`r���9�(�	��\���Fc�t��
��h�b�+�����W�Ms51Cӭ�=z��/�y�5.sm��Yg-��e`�tkuV��5vFU�*+���j"-%c���U��#6���k�,���q�ےq�p�R�~�������QڬIL�ÁY+��j&����V�rN�ߊ%W�Z����iK�fji�����C
��K��1
�σ����B�Z�5�����Sɥ�{��0v�O����(b-ɷ�Bis8G.o���q��/&a|�PU�n1֩8Z����	Q�Y����
+eR|��B2���u(������l@�A�PZ���d�+��v��E_�'��5��FH��
�
���s�>L����������nR�/.�^Rn��X
l=��b�#�9�ܭYVޔV#�@����C[�FuU�G����0K�4�&�Hk����Q�K&��@K�C�L������D�Á��x�:���)d)FX�Yu#��
�slh�%�5�D���Ͳ8�MK\���[�B�2�jb&O%�o!O�[���0C`U�K2M�r�5�?�ˆ��F\0G
���"�MPHs�X&�
$rTZeD�>2V���E�w%�*�Gź�:,#�<x�Ў�xͅEu��S9Ŵ�?}��$�N��^b�my������{�!��|���pղ{�9Պ�w�ۣ=Z��DelT��=_\`��V�pH�\�q𭖞������\�<���׷�s��Z�<$lVA��t��*}sү�d�̳���zk�9TsH��r/H<�喟?x��w��aQ(���S�z{�5�t�Hd�-:�����9�N���1������**y�j���<�εU֯ީ1�7;��l�!��}z}��	�Q��b`{
h횖���0ՖZ���@[��\km��[@�{�^�t�U�ht�,��O�mU����!�e�C#M�(�VID1��	p�!�zz�/1�iɘ�$�r��#����B���h�<N�/>խ�n�����xg��*N9p�e0��{�^ID_>����6��b��j9�q�.do�0wI⣊�<��SV�1��\K.9��({�ӕ�n�-�WB�Z}�Ƃq�[֏	m������c��3���@��<Vw�h�W���9O.�41��ڤfW�!���f>��G��[�����(_�W�������w�\�m��5�rě�ܒP hidp��i�w�s)VE�
&��:
��G99:z/�F�-�l-��
��C�W��A!���B�We�Z�ݍ;=r��,J��=��K@�J�����Ǘy&)�������q�sfu�O��}ȟ���o��?�������˿��_~���^��dp�b-T��:�L ���5����2��hu,��ˣNm�(+���a�QW�yg��J�
�r.�hU�Ǥ��'�CF�( �I�{�2A��iK�����0�̳�������C��{�T���aw],���%�/T�
<��B����g͆��H�o::��_'��1�{�z5?�b��C���,f}���~��]�\��soA��ӊ�a�2:��U���o[�t
f�S_�v���OT!����ش�O���G�
����C�ZyL����������_A-�4�EK�6��*g��;L�����P�}.�����a���a���� �X�d��H�����Y��A��o��ZZ/IhD���1�D�|5<�{л(`)�T�ĺ�1vuU0�i��r8b�$��*<�R9%�ՠ�T0�M
*F�A[�;b�%8��'�eiUXF��<_CRU9��T��ɼ��O��L�'�"�����(�팈fd����j���}�X�[色�	�`�sng|rGj!j	ko@�3��f���T�F
+9���/~P*%��Y�#�͕�����VJ��$j7.>EB��l~�?>�4���iq��G<E3��!��<�%��5�-��xmZ�4�	��[��Sd��r��7m����ٚ`��B:m�g �0���k�>RtP%�%U"�$#.d)4��,l"�msc���Č�`?^�/�����w�%�,f��Bt��6�_y�4�V�F����z%]��������Ց��6vս��Q���<�č�68�V���1}��M3Ou�@� ���Nξ����������n�s�=}��{BI�U,�r�l�٬�tX��^��?�e��ja+�]�U P�в3���	>C1R�ۧ�Id�Zy��i����v;��_����x�XU�V�arG+���_�u��rx���{� ~���-��E����dڌj7�z��V�Aʆ%-Sy�+	��h�������T��̰� R�R�h�v����w��zԢk&�[�1€���f�t��٫k��W_����`e':�3±��<�������}/�ii_Z�B�5�z>_�	�{��t����C���I���2�=#w��0UL'��|E�?�nå�3Q���/��}0�Q�=��t���(��+�:����*Q�z��?�yOM�A���M!@���<4e�T�&m B�}h���Θ%Sy�M%����I�'Ń�%�f����0��La3�?��mX�^��U�8�l�Z��h	a�fcK�����%Q6����}�1},"'���ԉ�n�vl�3ܙB�3D_��[�uc��������p\�YPo���}*W�[U�Y��LK�,9���6�Ezj�в�"s�%��v^"�ڶ���2d�K��ϼ�+�,e	�*�^��������m&��9�~��RyQa�����?����1�!��/�I�?i�4r����O�o�W�>/+�|�����VחN����'j}�vr�����o���v���4��+<�<��:]!��a��?��X�U<􇀖o�]@+f�=�ם��Y{C�c�?y�p%�ފ�����O����y��FW�[a<g�1_��������oY|Fƽ��EΓ��Ϗry_�.ރ�D�
Q��t��An��V�B�U\���#쨭���Um��r��vO>}��x]��G��K��{=�E{*�ZI��@�b�盡v�8�l�#�Sz�z^�g"��8�=�i���Փǀ�+�
j��-�����+
��6Ok�:Sp��ݪ�x��*�K�A)��X�v�Wh�/�lH���J�[n�ռ?� ߄���8G�I&э�v��-ޖ=�4ww��k5Q>|w�s�uu/AfK�Ķ"#�y��x<�|���_X��o,�A@@5D�+�8���<@e��G�C��9��i�ɴ�`�{�jU��\w*5�ؠ�d���*�����ř�@���߅��t��ׯ���x��
ڛ�����ݗ�Ӷ�%��X�.�t����X��(�7#n�FN��no�ZnIo�v������?�J�xZ��{oǪ��=h��iS��0�Z���}L�-���H�7{�Z��z�-W�O���p��'(�%����u���0�8���M8��j� �M�J����]
��M�(d�0���m�-}%te�e��C��R�v�S�nSQ�V�v5�"��������Yze�O[i9�̂)8b���\�Pj�~XE�B	ڪ��맊7kBI�� ���שG���q8˪����>\ZfcMZ��Q�y�Ys�B-�4����1%F���/��O���xǡ�7�ƠUh�mvwV]�a����x��rx�����'@��B.ڨ�m�'j�vS����C� �s�Z.K;xyq���Yvxs�%��<A�ٱiisÅ����X00�䌁�hѻC�`�?��$\����	kM�:H[
��� ���eM.1.�K"^J<�tMï|��p�Uy(!�����������i�����HL .ֆCcL�K'�vZ��)Vi��I-l��}���&Z�aۀ}��|Kt��Ũ�o1z��{�k4��q�Ȳ�.e�;����uT�f<���{�Ƴ��vBn��;>0R��1ھA��
��y���<5�jM�	1��eǟ��X!�$��|5;�쭞'��t��9�A�t<�S��p^*��
��B���s0Kr����"qF.��W�Hr��D�aN�GW6?�%�����(p��jumn�jx�fپ��L�Pi�g�(Du!�w�h��`Ȅ�1�l^d���dR�5eM�RLp�𗹄	mm�6
6��Cr ��(^E �<;�An�Pp����~��XZs�r�'�Q��2K���4���3#�J=V�g$�IJ*.��M�+�h��U�ց$ �X�^0�XMӚM�Ϗ9�"^;�����=��aن'&�y���WR�����
$���8��氝��M�}��1,��h'�"}�Sh^��/d�{�u���5�U���ăr���M���eg�`����&�`��6�n�Z�#�%�_Vl2�	���u.m	NX�$J+�8>بK~�F_+YF�?8���Q��[e�{dT�ۧ���T?�`�j�(�8?�F�l��Ȧ�4E(���*�!cM���c���T�O�:6y{��?4�E�6m]��bEFc6>��"x��mB��uԮK`���o~~wSU�s}�(WT���Ȥ�Ȉ<c5ak��Uu�\^�c�8G��S������" &t,�TZ�s>��ǚ����'�dp���äah�
P&�k{
k�%}̺F��t���!&)"R	��'̱�5����P2Eҋn�o��ZL�s�<u�����`\��i..��p���"!�W4���&�y\Mdk9_Ww@�2��]~p��x0k5��^�e&�x��)�'�w��y�T� :O��v̯y.���VI�#��
'��A�z	����]�i��>�>���=0 H+J��Y�4.�f��{.СTq�ni�;��R���bI��B_��Z��Բ�<Ӵ�-�9��?>�-@�\8Y�R}�"�-��<�l�$�3)fYꨵ������h���t{�7�!�˗���g@..Ѯ�+BM4��`�(ud9-�q�J�Ǫ��Ϻ�Y���d�E=���]�-IQ�V*`�.
"��Bڶ�g)��j6�pW�
�jR�t���
���̚^���sl
*�EB&:j��b\�0_�ɺcl�A��_��tLZC��I���d�IQ��@�����Z�0�?ގ�����D@�B�Ԧ�}r�4�����33��G���<(Z��_"���ЪFff�ݭS���:�^�=6��,��l���C��f3f�$�1e��u�ij��u�$N�]cȥ��-���Ɨ��鵨�rB����ח%1�����ʌN�%f��t?���� ����+��*�a��u��&�~�`��t�����w6�ؘ�'��N���L'��U�%��J\[�Ql]�l�u�̾��Dc���??�e�uu=��|���*��O�~M�ذ�v�[�vKs���AZ`=L��	��1��&�&}Y`���RC���'v�|8x&�CF�bdHHx��9�
8�Y�vˆcƭ�Ue���!L���n�s��0~M>q����q��!�<�
��Ow� ��]ŗ�u��U��e�sXɻ֜�='D@6r�ʯ���?��Q4d>��ˊ|�I��͵��X���Ot�Vn�$����ɮʋ���9V�%"�j��Z]F�#O-i %z���
G��Z{Rb�j
 #G�2�:����@��B<
հ{B�U����U���/��^~�M��_�����O;��=�h�2�G�ՕQq����cX
�N����U&��yG�2�*
�Lq�򨫱��B�!��Ŗ�󯊑<3������f��i�%�o�`z
}O�~�(vi����P�i�h%�5$��3LjbM?�5ΐޝ�.����	��RHCNWؓ��԰�{KE_�5����A��k���W���(�ehVW�<N�YŚǧg�A�.�:����v���e76k���x�p��ދ�.�aX�~%�_}���r���NOm�uw�gg�Z��ؒp�9�Bf��m�հ�b�+
��f��9v���lu��/
,g�GSH{ժ���S�{����f��el���w�1
~��K�G��i�ǭ�6�Ρ>��I>'�1�4U���9�n��@�W�QcV�U:z��,�2�@���[��� �׶2���������7�iGbx���%A-8�`3R�e���"�
�}F�kw��~�K���-x8��$6�	B��e�mV��$�����h�l���x�x��i�VSMW�Z��:�z����� 8��m�����~ҧ��!�����R��Ne�L�k�T%s���<S�?���(#
z�3�sN�M5������՗P�7��]
�9~g�v�fMm�݀��+i�	?A���|)ٴb�'��#�OE��A-&��`�E������]�\�w�R��>�{�5c[�P�p�Z����R@���i4�7�?-��%��"�ar��<�A_
^�)�;̯0D�s�;y=���Y�	r�[I8w7�+n��b�,v�H��J<]�0��!!��%�RSN����u�r)8�r�E�U̪�>P1�L�X�[�!"��z�@�X0`��`D�l��fQ\�t��v{�`ӽo������;0�޷����_xL��N/f�S2�>qO�ݿ��W֜yO�����چ�Yd�\��/�4�0Uj��}����J�^����\EN'�pq���^�z�ƴ?�~wЂ���0A�c�W�]9��ac}ZM���<X̺#����x5��sBhL�N	~��!�y�ͷ��m��6�U�i��?�3�c�F�L�O�G
��$x�,*F߬��X�Ց,7�8�b	��(}`-5[�K��\�V���d4�E)�{�����78�6���Iźg�ZQ@��Y)�"`૟�3��a҃��Q��$�b��b����]>7��-G>K�H|T���<�U�D�0��À�e��+#Ϙ�=��z�����m�i�u//p����4q�-$��C�PRL�j����%*�֏Œ&
�̢������|V�5FPegB�)GD2�����[d�%��N�Fa�h!H-����@WS�P��:;R�ZK�vH����&{1�H��_
����5�Ɓ���FY�@
"m��z���kS��M�zPb�0�Ԣ)g��Kr�s�� J�Z�r9:#��o�\iZ�).��
��@K]d�ӴW�2��NVd�ʲ./�8m!���<�k���hB���GS%�КB:�QM�ФU�'
{@���dIP$����a��]�`X�T����G~0�_�׋⮊�1+���8�E+�$���BX��Q,�QQ���/>����߸���=���~��'o|�	x\��p��="�™��ݭ	��C7~‘l���e/��~̭�(��[�����1�LKT9\��fIo�̤oگ	Eb�t�aT�����4-��-@�0����I���o���Y<���ΠY���1��`�pڡ1B����Nk��nV�tujX����N_@��ԧXz
�Yg�4u3W�z��͉t��Ax�y����{nz/��R��~�J�w��v��.0�T���I�2�[���q�����H����)��lR���b�Z0Z-.&��e���%���#%�g�u�/[���%O,�|�z&�Y�}��N���MҘ��	YH�(��#�Y���cZ u˨�1'�~������|ze�F"f�M�<<�u�r`��N@��'�(ܳ�v`�1�8]�Y,���<]���*{<�d\�/����(R�,�$�g���,���
-�ȓ�wj��d|�]�9m��Ը�b�
�g����r� F_"��n�YIt���8b��`�ҏ	7^��ܭ�<0�(�F�ވ2?���{�	�H䫘JtS��T,�߆Z��Z�����xZ�r�US��7Т�R�%�b����K�#���е<�8��I�2*�Ç?
/3\S 'N�rg��Z��CM�PI�����{K1Dr,��1�Z&8?�S����|�Cc��93�&C_x�bl�\Q�ѽE$йFAfdl�T.�\�f�"��h}�oܻw�7���פ��{o<��t�
���"���&dvFq�lM<;��|7ި@���T����`�b	*�E�`�C˅�Z
�-W(gUl~x7X����5.L/B�D�j{�z�%G�E�Vqrjm!��l�F�B�IoE�L܎:�1{�4`;�w�����`���
�H���FY"�3�g�r�#1D�
̖7�]�u;��V��(�
?DƖ�3�2
�O�fN��o��֭:wI�`�SH;��O����~��
S|cƶn_T����`�T@K��Oف������F6��$�W�x~�Yryi���>�;�"Z��%�7R��<��T +D� ?UQ�K_�/��_)ܥ"��|�n��/�
i{�8�"�Q�)� _�)_d��4�[�m`�%Xj��߃c�ބ���3�
�L�ɺ8h%k��@�7�D"E�6�2�b}L�c��&�f��p��&��q��������M��:L�8����[Fh|B�g#�Z�]9��8�o� ${��K�Ce�.�iʖ���=PK��D�,�Qi�J3�h)�S� �7��zGP뿷=���s�q)����ϰ�6�H��YHDi�4�>��N[�hzi%�K[�V�"1�R�۔��a��xl$������9��+��a��:ә�8��8�s��ӂ{](a�ghY�I{�Ż��SQʒ+�>�KvM�;�"dg�p
�����J��Ȗ?��BJX�gb��G�ݸF)H���e��)�_�
"q`��un���P� m��L�\[���gў��i|�&a���4��PT��3��E����A���m_�y#�9�������lr�r�JP�3G����R�<�;�{�/N�|�6�`�y�hC�0�0ә�eN�BJ���h�>�%C�G&R��-�C+x��+�C[U�E���"��c���UU{[��"CP�ȯ��Ɖ�����@�r�ҭ���5N����J�yH*��V-��o�x R@ܡ���Ni?v`�����9$O�\ُ5w�NVvzW|����o�i�eQ�4 T"|0`���"ٜ�oղJ6m���!ve�p8+W��(�K;���Վ
�5y���-�}߭����ec�4�G.��k�f0t����B�0К�Ҙt��I1�#Q�),G��Рd&�A��֪u��J4~k�
��Gv�!{u��U3�!��c8���J�}����c��Kp.����&�"����c�'�&x|3�"MX�ʵ:��@�!hH����H�3��Q�|�D��㉊��t/�KX�Њx��]�-r<��&|~���N�a1ڶ�K�{;��i���~�ǎ��c���R��(��@��,��h#�z�l�=���HKOX����<��T?Z]S��Z�DZ�, rl0��J��i+g�p4�Zw1����)��"�	��7~2�A�@��`+�"��5�*�q�x�-��2	�2|矺*�|�W����J�$)�ns�����%���z���Px؂��Zֱ8<S
�!���H^��
�-�'Z�?_|��ኋ�g}�������/Zeb|;��zՠ�� ��%4���OMp^:�v6�q׹V�����U
�����Fk��Ģ�X^_��+9�h���������A�`���מ�w��f�Y#�����gB��!v�3	�$'�֤A>TM�f�������Ѿ^���f�o/�L&���Pb���4b�˖�jթ��hz��5x�[�jtn7�<y��Kn5��+��9���DF|&��$�k@,u�� ��n��Zzd�>iu2e���<6վm��|��s�1�W�@#HtǦ�,�x���|�(�S,�4~��K,�Je��� Z}*6�
#�{�4�-Z�P��B��XF��8�`�t��8S_؂��.����)�(�8N���3�<ТZ�9�\�ۻe�R��Ԛ��]Q��>	��0`k���l�S盉��EP�!ہ��5����<�<,C��7ǣ�<��;���U%�lV�y\*[`���56s;��Av̍�6i��+��<�Ft4)W�����٤��ql�(D73+����l�.��,�i�Ht��O�v��}gk���/��a�s��HkV!Ɲ�v��E�����|��N�^J�O� ˥��?ɗH�b��q�FI�/$����Í���P]�)*O�tr�Y��\a�w�kj��p�'��L���s�2������y�����K��M�A����W�~�^�Sn��av�Aǀٖ�#�4��h��VDz����+��z����m�^}�����m�O�x뀖亥	5��^�\>i�ӿ����8�����/s#t�_e�h��ր9�{'#��g��O,Sc~Ѻh/�ϳ#��V���-�"?Q�;����s}��,�c��Ldz�i�0��=m�-����
4I�E���㺩��mʅS����3��h�S���{�N�2��D#A���V����ux��.\F0~�w�t7'�Z�(H�\(AG���I�@T�a��3�V#�}N۶˗�v�l��9�w�[Woߎ�X�&c�›ji��0��C��y	\-���_�tG�_����[�`Wf�8���2so�8K}���3�ݫ�����cj9*�q%ACH�&��B�tzgi텬MHֺ�p��vdg�[+��ߞV��C�8���r�
X�9��ԯ���*��c�ƌ�/`M���n�]��P,�8�������i�p�vG�D��^��7���l�X5�3�dog�'C�2�hrW
Djd����JcD�W��ڐh��/��\'5i!�C�7��㽂@�M�8xB����W*ȟ_�Z����գ�������7O��â��K�x9Z�_�~�{�����GO^?|��-,�Hő�&�x�Q���L�8-/H�2H�f�|By���H%��l
杖�r,J��GqW��5�(h
�%��W��zj�lfrHJ$:�)�r�
��4��X�.t�n�=0w��QQ}��� ���&�a�h@
A!�
.cDL��F��f�'PA�+b����w�|w��e��̙�sϝ�{f�{�6�}���[_�����~�9����H��N�t���
��b�Y.��c�]3���z�)&�|��[N��S8ۃ�'�G8Hn��My}��+凳ט�r@Y���۬�@r��|4�q!+�
pa�1���=�OF�K�7L�5lsx����n����{����r��뜛�b��uA;Yi�����	�>��Qڅ�����^�ǵ�!���Sd�5��e��=�e'Jny�8��r���	�eU��Z��EEY���	;�pۭx�Cf���U�H��쭐�Р�3LȒ6Y��F���N�S�:�E��qѵ�(�{�L+Pl��:J��l��*�û�xw�+����3�h�
=��g��\���JnCAV��mNC]���Pg�!�pE%�����;S�= �+
ߜ��#Jk���>��P��Nz��i�d�� !	44��f��夛ݖ���'��܃7H�yk��w��6�5-��!���鑨�V�@nX����KSe�顕�˵�D�}����ׇ�M4��r�W�!��.tXj���-�˿`$j�n�'��)j���s�_n�O�q�5F${@�"`���w���̠��/ST
EC"Y�B�����Q02Q$/6 (���ɱ�]�E\I��tw�Y�`�^�����$�6{��(���p3��ݵ���$�r��c����� d���XJ\r�����n5SQG�x I�g\�IF�2k�/�"d����u�����QU���p�D`Z�M�|����yϴVP�7N��W+�(���)×��� �dA��b����i�,����Ec�u.���)pв�Tq�%M%�z�7|����b�Ҋ�1J���2�R�' 處�ܔ|%Ϊ$���M�"�Zo|@iF�#� 6Q���6q�w��RG��f��@+��v���xD a��U�j�*�rq�}WpT5���L��ܪ�,�r͝�XŠ�c�-�+�H�_�����Z�=$�.쬚s��玬i�\���ߍ��/+�l
��1��eX@�$SZ�x#C)J��dl7r`� �y�~n��TEa��P>U��$ �r�*�,�M�gf�J�T�󡠢\�`��"�`��+����w�.Q���FR]�"��V*X�Y���~���6� �_Q�"����a!�V�;�Y-��z�W����o~�er�<W��m>&��$3����\��u�L�p+�D���_WS��*y�R��Nj>h15�������$�no�<F�0F�N|��I�а[H�D�}-ʋ�ة�,`/���\��XpͲB��{��6xC�)�CӺ��;M�뷣2�V[����O����+���/=.��ן�	��+Y�PZBL%�Zl�)����q���9 -�MJd�������F,�o��/��[򟤢�P��,^Ӎ�:ܰ��v��aȢ�o@Z�0.5�(S�ƒ�<��M�X<��<%��h�D�*�x�_b=�V漋	�*���S=����w=�z�2&y8KC@������
���|fģ��O;�0�վ�앚RPF�R�అ�j�+Ɇ�K�LjFR�;�_(�Ih^R�g�P9(�L�\
�x�U�o�N+��zSfH����@�g�F*�5�Rr�%��õɜ�.c*1�okE��:�j����$�G�x	��
�z1� ��q�W�A#��^<�wH�3	 ŵ����jY��
|�Nkd�>��0������+��WdK��lu�ny�!hY�OL$���N�V�SU�-�7�b��O�I�Xi��������šR������j�`����xѐ�|R7,�@���l>�z^�U�,!��@A�X������2:��߼W�9�@����q���G�$��#�m4���u�䡣��1Q�̨��q,#6�����&�
q��p�_�:Dwc��r����U���B-��T^)Ȏ�v�|�.�#�x�^�D-�Qk�[����N��Vж�Zdk��v_���:�E	6i	0�:�3{��9��ccbm	��3�t�<h#"+PFIw〙��Tz�g�f���|�[WxfӦ9�d�rj�J&��Z���p}�{F��P/�Qr0׺�;���\�nB|��Ͳ�Q�z^��֣���9ǁ�:2�M�^Q�Ք=����c����'+ʬ�Tv�X"m��h�s�2|a4�������w.Z�,JAQ�2��	a	�u0��l�x�SHDZ@^���E�>
4"�˓-�3oTV�=�Ӂ�!�ț��0�+H�F�0�Ό���=N��1�
1��tPF�
l�X��������ӵq�1�D�1_߰�:h�x	�t��t�S���e��ҴKO5ZxN!�H>�@�у�r�][j=�P�:�{���ӟG@��W^Ѱ~���5ԓ��9R��GFˎ<���(���oӎ�Q���q��%�?��_��4/������Fk��qaD-�_j�"+F�"G(�۲�����{��
�r\hh����a���.`\ C�^��Z<��B��m/q��:�����Mgrvk\0]�"�����"-����s���Ua-�(`��8`�*&��[��և��g�ˍ��z�8_���К���yg9��g�X�cL6 *��ѭ��! ���
,�AK��۟/�������^6t�Nr��Z����	���G$�Y�Y�e�%�“�d���
t��(��'���Y+�Ft$�� �d��;ߢ�}�ĥ��P#�A�CA(ʚ�t��
�[�ܮI�A�|��)P{[4>����F+=�X;-Ĉ��$6z�a�Ln͡J�xr��0�^Z��m��#�Ņ�c�>��.��.��p=�J�G�Zx�v��2Zڗ���|�m��4��'��V��^QOn�vj���Ь��;u���"�u�=/g[#���"h�qZJ����փO��#����M�@���TB�}�o��r�m�V�Dr>�zb	D��u��O�����R��?��z��L��\hQ>���i�q{ϻ�d�Gوn|��X[�S��=	���g��bV�����a�4���n�i���/*QWf��|[Qn�7�+��+O}��T}tzv����Y����*yŪ90��!��d:_4Qr��M==+�E��y�՛f=��O��bz�MN7gu6?�{�73;����է���ϳ���LB���b=|�1N�5Z�|�71�v��ɿ�꺮�����H�Ԓh�hJKu�D"��ȥE��.I�Qz�,+��1ӟ�]U�/�4�=l�V[�WɄ޴�<��$���g��j�?KZ�����P^;6���;L*&�͏�fE��ig���v��-�EU�,����:�ʈ�塰d_����$�|a!�l�r��g��z���4����W-�O���J��dZ�8��4(#�,����N^�WЗ�i1��W��G���l��
���s��e�x"j��h��쓔�$]�_�Q��zYbn�����*'��W#J�&��2e�5@�X���fAi�:�cgIsYo��t.�(�J's��@ઘ���n��S�����]�cY�	~-$��H�͢>=h��&)ŬO��z�8�1�Qk��z�� ���/��6�w�cg���O�IB�Ȼ�WSZ�����獁_����'��%��9�!��"��Rе�mAkg���f�G��E׵ʭfOU*PS�z^�'~�)����y)P5�\��j"�U���<�ly&��~X"�m��P��:-a����N�q�8�g�D��/��9Z��"P<���4?/0ҽ	�i8�1쎾ߟ�L�f"��G�l���|
GWa���t[�p>^xzR�}����P���ߓ'`h�`g��R8-z�V��?CദKx�@���Z��S%"_��Zb����"X�򟤔�^��7^̈́٪�*+���n��B�l��p�k<��w@��tZ/�G�ď3�M�Վ~�����Y~3�|��7��˱@X�Y���a]�$��,����
9}�V��XQW��e��NV������CcTq�R�������2T��|(,�^�uT>��
�6�)c��B)f)hU�F�U7�M���<L���Zu^,N��8>����H��(�6�Z����9�/��էk.�Lj����
�|"�yV�
����-	P��6봀Yഞ)ǭ���~Z�#[3q ��]*r�\ÐNJ=��RW�~�^�K���M��Ɇ�a B����`c�>mX+;<n��N���S�,��+\�K��t �
�q]f�����b>���
z�1@#����n4*�w�ke��Ҥ���N��N�%1?�"��v��H�)��*�˸*�ܧ��T7����k��䜴A�Y�
.�kѣ���zx:]������6���U�_�|�>���Ln8�;��w%'��xE������}Ŧc)A5���d��s=)���0�F�G���ȥ#��h]�u"��������q���J@o���=�I(g,J�=�̉�T�=���Pz��%�l3���X*r/;}��O܊^��<��8���E��y�\B�?��9Z��v����p�Y�h�T$��{#�^���~�a��YQ'U�%�mE����O���mA_U���
1�}/\,�0�ò@ڹ�֬.�61�}�֕e���F���M�/�]��bSN4�b'��Sa��6ev
�kd�+h����R��-���r���#�d�#^@��PN���y�bNJ3T9l	��(j��X��j9'fO����\�$�U�Z����^��NF@��(v,ha�
��	Zpu��'��S����9��P�d�h�S�9A� k0�w
�:���&�;A�ï
��Fy�ܝ�Zx�n�D�`��RB*QJ�M�fn�|b��mj�$Q󩠶)r�n?�j�{���������e�*UX�v��i�^^���'�?f��T@k�^OW�ݦ�U^���Ym��ѷ$p�Y���sZ�E����7�O}?�ro����e(N�<���\ K�{�&:�$Z��yZ����	���e��0h�~���Q�`$D�6�?���"�-V���ݍ�U�^�ҥ:\����L��1(����������:�h�T|�-��6M��v�C�6?[!�&`��M�&�9�s`�.$�J�
[��\pe��>.���<PR�,�]U�;��7�A���]��$��I���H���Z���|RJ�r���q�n/�#��R�3�sZ'L�޸���!�);�ʉHM�xFK��	Z�Բ�D2|	�E
�y�d�x�8�
T"�ʨ��S~�B�ٕ9�a]C"C:qJ#8<B��w\�t82�ai�w���8�
Pt�o�+ f)���U��1b����]��@lےIB�a�&�C"+r��ODA5����r���ʋ͏D���$��޺�6�O��(���\�K1DOX����.��N,���'<����l=���~�q��7`���O[}���R[J���>�ky
�	�tIF�\�@��јZ�T�������ĦqS`�N+"���r��Ả\�Fq���Zz���P�͎=F�h��BCa��^��V*c���4)�+�Pl_?DQ�@��'�+1
���O@��J!2v���-����B�B�#'~����U/�
Nf
�h,���8.=����?��:��O�lY�+|�߿��
=h����w����A+e��
Y�
���'|���h,�k��A�����d��I��rYz�]AJ@��0�����ԁ	 h%��q�{}��+HA��5��C�j���|v��'�W2u�ضhAcHT6���6�VbXq����.�N)�N�3o%Q�8���*|�z=]2l�h���п�z�rZ�@��޿�ƛo4��a �-9Ь��>���D�?Z�>���`��Ʀ[����%a��7B���AK��Q��|�`E
���ہ�uk��<Z��k7��ր�����c���E(�a�O�A����NTd����NXyuȃ��3l}Y�
w!�w0Rj�L0��2PҙC�
@�������&�iXM�r*�¿RDlk�z�!���꫏]��tZW�����;n#h�2�y�«|���m5^
Dr�F ��_�
2GT�z����Z�!I��vO|�X��DO�c��Y�� #h����<���Cm�Fv%a�� �&BO~�Z6��6��BV��T�`��<\v��^`����D�m���{�=����A�=�k�Ui�������'�~�S�#��l
��� h1�;�%�×�{��m����x<��ӯw�t�-7�|�{p)�kt�	7�]h�]�%���P�@����`6�F�r��vh$�a)dE{c4���Z��}ʹ�BBIJ�O�ta��}>�C��e����+opi�zl8�<dM��t�/3A˂jC�?����ʺ{wmb;���EM�F�t2D�1��CB��J�h�Gf��|�Ԩ{D-�#'��̜xϟ)��R��5�
C)|d>W�[?���u�vZ���޽�~s��λn���g�}�E�
���{=�Naz�DR.Y̛�23��"���=���ŵn̲����;�5-,;|ny?n3!�>�l�V�����A��|���][����Φd�8^K�dH��A���#�u�姩�m�#��S�����,Z�a�m�M�řM��
Nq�Ra�1��^�u���
=KN,\�.&
�h�vt�p.vo�F��4O�q��{����;bܰ��E�B��d���acX�b��֙tka�n���PX�`LW�M���c╉7\��=��k4���;�<��>O�[q�������rü����pc�D��;؝]>��=���7���ʣg�w쇛���|�I�?
I��O�o��m?�8�/�W��oG�?z��GW����m�%���'�z���~��5�~��p�_?g�=�Vd�?����|Y�}N�[_��}���_��aw�>�_Y�MUU߆`k�F�͈�.�N� ź��2���	ѿ��ٷ��q���^���lϫ�(���ʹ{�R�ԣ�n72|�i��u\�*�U}_V}�7�4z�B�Z�P¹߽���^���*�<�֕b��Bž�YS��n��JW�h��#�?l��6���J��F��

�<�Jz�U8��Wզ���Eū{f�آ?��l��7{���c��z�p+,�<��!L��#d���vj��˺�w;�W���N��/��	�!�Q���P�]���ʲh4EQ$����#~`~1�3��IJ��u�}�CÂ��[�bӣ�v��f���ײ��K���b�5f��k:>:U�6ݨ�j;�����v��h}]T`�G���3��;s,<�r��#���]ߦ�I�LG6[��*�m_����$��',s�����b#a����va�A�Eg�E�:mk�'cò�����B�b�5�d�V�(�A9+�Z�5J�G��֨(���^u��F�I,s<�EX�GϹ%t]�:D���n�c����o�����{��i��W�3�Ȇ�n5��T����Y��v����3�W�L0m/2��‗8��ś��F��~{�]��<SD!�S�yEM�������Тup:�[���
��\|��E�����{�˟��bu˾�����&zI�S����𢂙Ke}�X`8�d8GU�j�Q��sg~/��v�l� ������l6�����aČ|-����J���ȲkӏK�v���ˇ����������i<���{�|�[�W�&�s}��sM��DH'b����釧�67����ͩ��I����0�>;�I�
��"{xz1���I&��a`|"�굓l�E�uX؏����ߏ�/�R"�>�X��YZ�~�r��r����`�T�����	X�
onn�l��wt�X+H !a�&�
`�?�T㌀h��?��j����9G'j�V��|~o~mm;���COm�L=����vy��U%QQ�ϯ%��guI���p�`�
cY�&`:�}0�e)wT+_�{��h0�p�,�VD�E�;��^~|��T�F�V���mh1,�0�ѻ]����p�,]��k���b��y�I��4�x�l��o�L�
�s].�q�gs�M* ��s�x���^iue���ϙ �!jM�0Z�d�'���[M�`�R*]S]E��Dۅ@n"���C�NNNd%����uS<9�;�e��P��
sW(��%3�lA�_�W�P�9�[=��!�Ђ0�f�E���i� ���E0��\&�g7��?����	!��
�,x��s����ՃXl��N�$�^8�����Z-}X��w�R���xl�srċt�1�QC�9�e���E+Dnayb����>@"C�	�5��@q�q�W�x���U�jbyyv6�Z����hG�O+�洰����	�bs��E)��*���4�N�#�Lؘ�t��f�wV�H����qV�, ��*2n=c�ZxAh�9�f�0n]�牻wWbH��>K���E	��G��ݍ�'ә�Ѝ�^W������B#����͙�ō���>�X���|"�W��r:�;�ߘٜ�m�,��݅ݙ��jz{�**/eCK�.x��;�������TZ-Z;��������������#�E��?J��&�Ǣ’���p4�1�>Yu@ٺ��D��X+��&|�
��;YLJM�^���R.���O����s�ڕs�j�o����������4����P��E�u$k��ug�q(ʬ	��;�a-��EN�:ٓn��C��B�cu	%�8Ǫ3Q��j�ґ��[/�(�L�i��f�Ɏc7�j�E�Gq������ڋ�r25T�&Z�@kB�9���x������Zu�z���ݕ}�seP�����%�|i}��aHL��ԛ
a�.�
��+{���?��#����r‰V��6�h�uh+��T*�]}�*�q���00�PM��[�D" �I)�LHQTe�@�I�s��e�
�`D��!� $�M��%�U�9�ER�:VHG��N���N��X�%��N�|��a��U^]uA H�\����`�jA�X+�󹱂7�@1К�gGO�A)�Z0ʣ��F��l��_#!�B��L����jlyy9���F���}���q�����E���� �9��e������""ę��v��ٽt#��`��ZhahШh��	�N�l�Q�@I�ө��֖��,m@\ݙ=��]�ݟ��0�`5���b���m9��"@�\7�RB��6(�@�SZv�+�k���t>�OS�lB�M�,�P]6��6����`��J�貮i�3P��j�_����*�&���}������{�ױ,������N��
L��b�(e�{��{'��WO4ņ��;���l��<@��5Q���E��W_}ukkm���I�j5����eH��疶{������Ï>��C��m1+9�-�O�h���<"
�7ҡ�#hY��u���bR��C� w
(%�zqy�i��q�(J�Z�wE�G�ja��,1�vhؠ2�U�]�x�cv �B5�5=��|Q�+jXA�i7zǀ�cE�������K&�<f��Eq6I��W�׶�zumq�nۮ�Y���<��>�|v��_�ネ�A�clz�ԡ����Gϱ^hyd�8|���kY�j^�f/�%:ʢ;&f3h1f��z�>��c�&U`���.�
bHG������^$Ѹ�o�"t5"fP���`¬oh�@V0���j�� I��ۥ�����yGoZj�Z����
�BKp�����/_��D)�0�K��c)�����������x�lB.��0�*8�BHL�
h��Va��H� �f��W�;��PE��?�����a}�2�<
dea�h��b� �w�(�(�d+�V&�R'S
@�V�u:�yVD�๗M�[4 � 9RD�<lg���Ǘ�W�έm̀7���V���ɴ�]I4�jTs9K���+b�]�QZߏ�O��
Њt�,�8����Η�5�h����U+�g��ώ����>�3�( �ٺm�J�_ŗV�A+H�����!��?������eV���*���*��^Ҡ ��p{k����SO��4M��C@+����w�hqǗO<?�.,킞��aY�	)7���+˥F!?h�vO��ٔQ��]	9"�"�㌈Mc=���
�!��>G��E��9��h� 
��//k�
���Tt�0�t� ���4��l��0oY���.2Q	�������O�н8K��ڱf���&s�3��AH�M�xS@p�{+Κ��d'��i���.W][��ai�t.�]Z4��O^�t�Oo/a�x���c�^bB-�)�v�ݵ!|n>y�BK
����㜪�������ŵω^{�
���(-��QPK���0�V��)U��h�B��
Y���b�P�c��u@�}�	��P{&��1�Y�C��a�]Z-52��s�I��H@R�r�d#�%gR��w�z�"�t�@%$yB-bN�4>m�RN�����>F�9��$�P��0�|��Rb_S�|s����rl=�V:a�_����ֽN��T�;�"v��0�1"���8��g&B+2�J���c��3����Ue���t>R�|`[�
�DB�q|����������lkmkm��^ă�*��z����������ZQ�tH�Z���M=!	������ͅ�%��t��!A*� ����ÑM-�}小�������_X=��X�zj�"�L�VW��B��ߝ�ݍ/,�m�v�
�ab�Zy���&f���o��T��Ϣ?os
	{M�Ɏ��
���YQ>ymܘ��-���v�ڠ�H4�lU�ŭ��Se�W���H/FA2�냀��pDg4f�)wY�hA��q�i�㖀i���x9� �#�@���M@�VC�"�_�wv�M�Q��.DoV(L��2��B�,��6��.�LC雐5��t/��ڋ�� �e#M���y!~�~�'���^+xV��Y�5y��9��qiQA����"��m�ÖPC��q�R�ap�(cA
������(���v��1R��ړ��.�J	k�n���
ʴF��nԵ��e����Z�Vo\�ܮ�x�&N��3����^[�6���q�P�	^^���/�Ϝ�G)�a^�Z�zeK8��ea����f.=�X�]qي\�����j��v����&H�g�i�쾬8h�h)��n�.|�$7hF(��:�sE�r�
2Y�e:�̒���)y�n,��'��\|��=��r����b���NY������\��R*�"���>~��JҒ�QF��*Jč�J .7-�$_$A�	J�5[�,�/Z<Q�"� x���$n�B��E�r�_�n<Ĭ)���8�%8#[ h�M�5aT]E�|��m�A�5��,��J�����fs�B��8<\MH1���Y�����-4}����
�����A�Z���~�3Y!�TQ�q�xQڵu��l$Ǧl*4�Ɲj.Αy�V�VȺH��ZJ-p��F����
t����׀����evC�nܟ�Ə���W��k멽D������;
���-��_�Y_=l748|�Cy4"h��?���ټ�g���p~�]���a̲�[#�]5ڲ��[i�����k��ԡ5D����a7��#Ń���m�r�fy��uM{`1��H|(uu �������Rv�&�3����H&�7e���T�k�0#|���_�7K�n>���肀i\G�`@�4��:oY{ε�vbq���n&Е��J2f&#E1o<B���[���v����ca2�C]�ʽe�F��Q�y�Z��GW7g���C�jOZ�ԞE���˱�١�>
[��7w��I�S�B!�k�V��7hy��0��h��*���[+���S����L�!wxKq_KN��E
5�B@���F蹁���G�	����ޛ�����9�Dm4��1[�l�q�3�a���,.<����Ez��H�/�Fs��*�D;��r+_�tՐA���C5x�i�⢧y��A�,R�DS��@+ZT�%�
���BK�El\Y���G�^�lU��YH:���=�u���ӧgΜ9;�s�f��ƹ__�:1�3}�>�&��ӳL��|e��Va(1��;��kE
��3φx�.�|�8$�4��g���>[���o�D$��5��b�@�(�Oq�A1���!{�*�'���sIq><˃h�'^���j@�(
�^�F	��p%��v�|C��� _j�L�N4�i�Ǹ�OA՛xӬޗ76e�Fw�C�Z2h�׳��`[ɀ�I� O�T��~��p�JbP�NH
�����›c��)w��z���՛��hi�g+��a'6RTB�l��c��yӂ�AIsAL|�#��Cslqz�� �n�4��~�Ih��]c���+�b���e�2-̈́�l�l��\�U�z��C�h�j![����WH�#'�O�����@�Z$O�b[F��B$U�1������D
fW'N=>��2֩�WcP�
�*�i�F�A��웍��0�B���գ�S4"G�Z�l���|�|(�����>�|�5����j����#���S���}>��<�ex-�L�Rv�o�)*��Pz/0�,4=#�d
P�9�C�MN��GO�Ï7�>��U��h]�<lRA�ѱ�W��bF�o�����TY=#Ҷ1�c���Y�=���8O�$�=4�N܊&��*R4�Ǵ��A:Y��v���zG��:-��!�m�DR��d"	Re÷�A��������dQ$��/����H��x�=v�ؒ�n��*�D���n˽̚,�d7�D:[Rq̢���0{��JJ+K����hV�V��V9��
BM�;�2�V*�ɒdRl3	@-S[}��&�k����[4�ς�~[�=�����+-��ح���F����,��e�%�uGiqq�|BV�_��!�T�2��"4��R#΍�b���I��#h��5�q��>�luU�����pt'��j�Z0+����]E��~D���$�������C�0��V���Z\L��i��Y<���3�)8���ä�	S5��[�2�aK<��Z5�,�l���F*ڷ:i˾9�ܢ'�p�L�rl�=���K��E[1��S/a��'u
��w�,A$�^G��^Ͷa�H�hTy�x7�l��/2t�|�
��:K	9�k}����ť�0�����\ koA<���[?�ZZ���+%�U1%�FM��ʱ���wX-�o��y>?N��h����:�`�Ow�0X3>c+�nMc'�U�
N�8�I9�a�y�3���1f+�1�M�EHK��k�����ZP�!R!�KH���R|"z
���p��'(��g��Ǧ��1��>�_�U��}�[�3vR^`�-Z(��V�c@�7S��a��_�L���jA��NR
�뙲o^����������۷���Fe���ԹC�u��%*
'��K,�]XV�?�{�d7,=�.K��!�X��]�s �-��@���g��Ȗ9n_//��Su56����/!J��gt*���6@�]����uT�G�9�
'�.�!��>�z�H��]J1Jơ���jD�b�"jF�*cY���EZdyI<A���"��Wz)=J�ϣ|�|�����i�He9l��`�|���\��ب{
���c5�q[�4�L�Xat��BQ�G]�$��q�dqi^^:��Bk)J�P��J'�yuB�E��OT`��E�vqtc��*��/�O��F�m�%�������O��?	�
�����J�i�YK���~�+
K"b$�~�o\�aUVL�R����7>\�8-9�z����!���U�<�'a�2�>���X)M�t�E�x#8��\�FUu��š͋��Oآ}a�d{&�D��3�X�1&��J�%����
ѥ�ʩ%�Ro�����Ү�j�U�+�3&N�KOJۓ�wE�Ƶ�i�Uգ��7��Ӯ�G�]< 1�mf1�.�S�i��f�.Ḧ́aS8F�:�5�,����Z�I�[��Kc��;��g�� ��(1��0'��U�t]�g�!����@D�8�u�j���S�KU
�܅!��p���������gu6�c<6�XF��7����oriu���j������B���,JQ��.p�*�
K�c�!��n�]���/�AV�-�(���.�,x�f�e%(�*�<	S����؏��U��{��[<��jm��x�|մ�˅���]'�O�*��i!2	T0��]��o%�ذov�zz=�D�g���$3���&PLG��J�YٓF*�Dk׏����n�H9&�o	�P�>m�Og�INjp%�N5�T�����a��_���dV�*^nt��<)S6%"��ξ��!Dk�j�*&�`k�<�\�&pC͉�>�|$�L6����D���x&T�!�O��;#[xX�-�`�9ۓ̻�l
~�����_z�n��LZ�%e�iTQ^��x�jJ�伉9�ĕ����]{t�E�VA=8$.Z��*M˺��4n�7A�m3�x�"��5�'l�
x*�`��]P'
�q�PO<�~�\��@��7~�F��Ƿ���q��N�f��a� �iy/�q�̬�Ea����Y�(L�l��R�t��NO�$�؅ɴaX>�f:zz�6R�c���������]���򊸶N���T�
�j�S�E�U�KS�K��]�h���۟0�$U���u�Ք,s���O����	��ه`ô���[��~o"��)��nO*�����T�_��Z�-p��x����^X�B�C#ε�:%B�C+�p(3��,��M�J�@����&�ʉ)*�a�r$�R;�aZ�y�?	�U!t�=i��^�f�A�v,U*	w@&����t���j��n������!���/c”_���y�ʳ�9�Ie��z+����H�	�F�L�j@��Lʺ2,��#' n3:�"g
�`l���1�ԗK@�֫���d+;�u(L��3�w?�Q�ͧy�RJ?�Ĉ��J9Fu��uh�'�j�re�jp'^���Qڿ�.6E#x���ab�����\Jj�U羂��h-�W�1��h$cR�F�����u���+x~�Vj��T�U���6��%溜5qy�}�j�Wx�����@���E�Qaz]4����粖��Їc��G��C˖-2���6q�EgTW����&�Zm�t�$�j��%d!�
8�j�G�� Bְ\_����J��+R-@�NR3��y"�	j�.y�T(vŠ4p�ܖi�\�Cl%v)��<�[��v�xL4��^�);IٍT���P��(�M�?��R�E.� �J -)2�?��54�����7���,�̇\�d``h�>V���ea�?5��E3�g�
.�ܸQY�F��O�<h�e�K���tQ	�P���%�sLn000&t�j�k:�%@6��$�|Dtި=y�z��Pw�rآY�*Nh����V��\К�[t9b��u]��;9g��O��b�� @���MG��E�[Q���D��f �������w�"�YK	����Ӱ*+lo2.��O&�Hd�U�`�8��}"�\��_��A����5����S����i�@�OUr��>����Tw
�`�*�a�.���)�l�ϙ��< ��!��3�5Y@2�/�ө��+����R桞^�����I!if�a�5v�9^���璊$,?r�	r�
4�ʟ�Q��V)V�B����7���!�A%���I�s7=k�ҠYy٨�F�&�z-=��]xNy��o�X��D����U8u�H-�P�����؅]�%��
��T5)ʓ�6�Bۀ��$$X�B���Jes�&}J~,�k4�uc/��T�,�i�a�+�	b�o�6�q���T���@tE^�Vi������b]$$��sl��O�ə�bV{`-�)b�OJPn1��56*I�Cx�}q���e}G��k��&--K��*mlM_b�Ts�ȟ"^�?�-�ϰ(i�3��*b�g���#U�q�.��.��;��B���uB�K-ШZ����J�H�P��<�����LO�hO�7n��|,�#|�.����.�Z�[CzbC�m
,U�ه�&PoR%��n��-:��N87��N`�-��0-$����FL��\h�1K���W�E=`Q�SkL��.A+��(��O�?���7:J��k��0Ǽ<�P@p���c����^��~���*\�F�Q�:��K��@�nV�ނ���>��=�s�z�c$P8�xS��zo>�:�m����$tc_�75��"Pg-��5��T�*�|�mIs��1���H�kM�M,�`Wj
��s\1AGB���Z�Ѥ�lqBs1rx�u��V�t�T��*����K�g!��
�d�5��b��
�Ѹ��0?=zPlUpt�n���搒l�K�����	{x*"<;��[��Z����,�M�b�f���|ZD�C\���1�F��!�\b��w����ح�8�(VAPB2-�q���ͪ9D)r%��h�&~'��kV�}s�Y�Y*.���8Ȍ�=�0�cߎM@��O����J�CK��x�}�J�ia��,,�,ڛ������k#�����������������������������*�	������p
Z�1�^7UIEND�B`�admin/images/upgrade/youtube.png000064400001212204151213254570012741 0ustar00�PNG


IHDR��LxU��PLTE�����鳸�������������#",-$%(=8(+'62#'(KH: "RN?XUF05,ZQ=kbQh\H@>26*"56ΣrHC3`[M.0aWE�vG>E<VK49;թx�ʴH=)qiV..�ůA1��N�nA�sI��W��ȞlϺ���[�{`bN2V2�{R™e5<3r[=whN�mG&
�l:��m�i=�f@�Ȫ�g4�^-Ŷ�ɲ�BCqbHRC,`aU�t]�����o���yoZJ-�_9̾����K6fU<��c��g�{g�ί�b7��xyX3��m�b.©�yud]F'۰~ᵆ��UV=mS3UZR��w1"�}I?>gh[�|[KSQ���nS|cC��`��pjJ&��h��Zro_��v�����]ѯ��ָ��x���>'IGٽ�b6�ĠOSG��eԶ�໑��d��m�uQ�e6�n?��oCLF�sA�Y-��v�ț�jI���LK!����tW���tP*ɨ~�Һ�d5f@ w�rBSP��˸}K���yO龏ׅ"ɖa��Q�Q(�[0�yF��~ɌW�Q��V����Ҧ�rM�W#q=�yxGÃM�
���ܥn.)�KXV'Рe_Y{|m�T�zfhJ֗bb_:j���zAup@{{WE_M�n��{jc�����a�|A�n7of4ҍDPj]��Y�uB��I�KX��y�{���
���dzm���v�����:@��׼½a��}q!��Š��A���udAq��S7Ud�G*�5�b;�tRNS1[AeOnu��x���[���`&IDATx�������`��@��TUUUUUUUUUUUUUUa�lw�� �}���O�(�9�U����I
��i!�B!�p��B�hD���w<�Ĕ����[������NL1\	q'��U��fq�T#�b��?q��#���Vd�	UGl!4tfZ�/�B�}MzG˅EX���R�ؘ�r>��G�ֵ�b����� ��*�G�b)?���,ۈ���B���e�4V�$|�y�aZx/�.:�t��C�*�'�4��b��~RTV�}�Rܩ�p��;����w���Y���UFf�	���X�Ŵ��f��G̈́�v���,
���.^���.����*A��U'��2����Yx1���.���l+�0gY�٬��l�9u`��M�좽�b]S6�e�ե[e�:�ש�����&A+�O��C[�r��$Kr��S��n�qY�RJU�ۈ����m]��a;TR�2\��XN%���es�aߌr� �wS��?E��P�I�f*�h��yK�Ȃ4�f�%���Tc�UƑ�Arʔ����o\q��M۹�n����z��{H)\�?�mK\�*�K?lnNuѿ�]P�X�J��{t0�y�
����C�r�W���ab���L#��&D�d#,M<�A�Y��jg�]qq�a.�y�d�+4�z������x��սC�/c��<B8oc���1��S�z_�	�j6��$�L�UV]_v���i(����\5�b�j�T�áP�Hk��:\).ٲ�*8�Ǻ�2��
]3vqqps�p����/?�K����~��{/���k���/�D�;6@#�p������tmy{��,��r�����GW�?v���n�Ƙ0MI�m�rۡ
`ͯ=��Oמ4�f�UM�z������t��'&̞.������~���j�\��Y��1�c� o�e�����7ep�2��9v�R��M�M2CV�����p�����ɓ'�K���<zpo�� ���훏�<��������]���ɫgY@b�%��������澿w�`1],�q�@Z��$��
��seq@I2���k�����'���_l���ӈ�:lb�=��T#'�sثQ��l����J�܁љ؛��UW�~B�Z�hV��t�C��i�ٌ#��8Gi+G���֋b��(ˊ0�/�Xy�8]=mwbh-���t����o���:��@Tt�j�"<��I��㪧��*L�W|�V��
	J��S���&F����Wh����z�`Y���묀���v�&�4h{hp��(0�;�Q6*D�84�jO	F
���g��!��Z1v:'�l甦�
 {vx��\��"M�ҋ$�Q�nE��<�٫W��sr�?<��U'��L��:�c������p
� "�h0�I��Kz�1=��`L06<(��c]�V����cw�޶S
m���u�4Wt�bi�F
Nʄ��)zN.�
����eʫ�L��`Fpa7�q��Ya��V.�H���]-ڥ6�v�|�����I<��|��~~���ݾ�G��]�+�޹V~�۱$)��~�κ���w�V����#T׷�}4��{�����<�X�[k!�l��l�^.E�L������d��ț�ch�H�c���Qd��q8R`�Q�
�>p���������Eg|�d�ћ.��A�s2�P�q�+#!�?[Z��g	�Y$!t�5�WHؕ�� U����S�B�Y�xWBP�VR��85R[s#�=r=m�9V��h�/B=�jӱ��+f��N���$)�	f€�LC�
����UR.(�3��P�C�R�KP�m6_�^0,�n}���(���v�NpA]�8<	��e���n��T���̪\;�rѸ{CSz�T�6Z�i@u�;ݒUe�	��X	�
)[ԭ���nK���AI�^�nAd4ү�lct��fx���������iCu�-%E��0��T٪�J1h�R�'��^/{w<��qk�sZ�R�8::88��S����O�wk�7�$��2��]f4B���h��X`.�(�|u+Sѭ�������x�����I��b��n�Ks����V[c��mN�Fg6�b�J�"���F�3p�V�x�TU���TF�Cv��	欌N�L�I���"��4�nD5���V�t�G��.zq�P��Tꂎ��a&\'�>}!��"/uK�C�f�>5`�-���e�ݮ5�η��R�\�x�m�}=֬�{�[HDuK�ہ�Um��nµF̀j�#�-#�{QD���R�����m�1�At�����63bfX����
NZ�r
2U��GЭt��|?�����OP1U��l�eJ!Y!�QB�i���4�A�Х�:[�w!�ʈ;��4�[<Ti���KZ��VD�"~#�xQ��M��������6�Op�_��s&�V�0ؠX5~�g�7��rD���N����8���uWV˹W�jAk[(s�⵺�G�fF�R�^�[��i�>XUt+ߍ�����+�DH5��V[�Y�bQ�Hr�x�}.>~�mTȪw@��B�fy$�,U.�%����nA��
���^7��\/�������@E���n4�B"�[N�Xns�uUyN��=��0�R��V��q]��PP��[�M�[X����-����Q�cU.c�:o�xX��-O��ut
2�[��<��o<��}�#�h����98(9�M굆-o��E�b��Z�h5[�����Rh� ��h|���%��E ��f���Yb!���mi�)�����(���P9A6�v_˓���f��k�QP�)��1P�����=K6ŖE�UT�lخ�
�H�Z��;���vjh~Pw���[Q�A��S��)��$L��5ő���������Biұ��ӣ��
�J�֩Д�:��=��^����זt-�cK}ϹGﭧS�,��:�����*JkkVX�nܒ�*e<��I�6rm��Q+ -�{8.�,�
a�6�mn9<�!���j��M��èLG�n�u����恩���Z2z+K6za�zGfK8l����N�V��m�-o�C\��@���^�����a<TY���!=��RCǃ$Ǻ�FdV�}d��b�Ȗ3'%&�Ъ1an�bf!b,;Q�����C~kv}����S[��b6�KO��qK��������Y�٧��iM��'���-�[�e+tq�
��b�x6N^�"VGt�5�V=�.o(>Q �_n��a|�6Z��؉4��2@ѡj�H�$�ѳ෽��)u�W%���(�J/�-�1�#��C�I��
d.#Di�LlBCF�ű(����@E?!�[.3��`�jzyZ��Vӗ�O@��-m-�[Mo"W��IH*��bӞ�Gk{��nK�e��ŭן�3�hj��K ��#��]�Ӯh�X>��!�'��Ӈ��/C
oh�+�	���r.�-�҈/������MV��%��D�խ��K��:��[5
Y;�Q ��QQ��V�~	C׳�'�|�A���"C�N�t1r����o6(��"�w֘�nA���%{.E#����h������Y�_k7'Nj��7�X5�0&��zLp�n�)�+T�@�	G��0.p��`!`PSl�R�'�ȁb��\�a�����\ӧEm[q��e-x��d[o�}0)A�,ɭY�[�\��m�`��du�0�r�-h�C��22��SŦ����	M��3t'��\���+g���C+dv�o�g�����~�Ӧ�6��A�AC/ĉ����E�xeԑ@Y4�ٞ[mC?��V.�]7c9(��ɰ(:�Vʃ$w��g�~�YVʸ �CLѨ�TbIS��pQ[~�)�����d˲+�S�������+F|�;�[��-�i�ß�LM}��.�RwI�4�X~����̘�G���p&�f�Z�pyY̗�έ�[#�-�uY\�p��$&��hݑ:�Wmn��=��)!>67a!��-sS�V�ok�	���HȸeEr:צ�O�*/��
�����R
���Ȁ�儼�P��SKGS�A��� 
�|%��G��

(�[�$�<V�L�c�)�s1�b���Cܢn���)P+pkg��]���xeT�+�Ξ)�x
^��"�(�F�/�[}F�
9����X�G��cL���h�8u)e?F��}�17��-��r�J�"#ϭ��w�C��a!�"���C������q���֚
��u�Ih���K�$J��\w��b� �Z��l%e�R�9�e�خi��[�������j��4S���h�z��-��x��_7�(���
@uW�eBkPL��Egg��BJ���/�+������\�[&BxAj�cxa�bi���x@V��L��ni1!�@�A�:��`3��N�F���顠Ԋ�<�g$&�ߒ&>�,ۤ�5%��!�#����Ɔ��i���ⷎ�Մ�cm�k�|��U�W��WU �?��+91��W���a�U����f���vUն��X��-��
��y��[}�Q��� 0c+��/���[Aϙ%�ә�)�47O���}Yܺ���XTz���M$N��X�z�!�p+$8B���)�\��"z9��Nm���'Ԋ�­�qK�֘Gn�%�<ƙQgT��I�$�&h�2`��h䘥�d4*u'57Ck�s*v>M7ҟɐ`;����N�Z��������43��o��{pk���~ʣz~���6[���_�In#�0nI!B��{�#YD�}��)9x�Qx�B
��-K}��2��)���b8n�&���-̍c����W�Ȏ1dҌ�Sn��[:�� ��-�2Ϡ�*��%9�M^��[X}ڣ&�iYՌ�n��b��^>���1�"��D"?�%�t>0�x���wu�-�[Zp:�jlU���������X�
�J�#FQ�ŗ�U{���˽@B�q��E��rV�(N��/ّ�F�?����� c�
o���H�x�ߊP�[Qkv߸����-��{iܺ�BR���7ʂ@Nb1��^󰖾7�*���}�.�Eڛ[!��3��a�[��Q��8�9p�Wte�n��".�^-����D\CCB*Q��TII��yi��Ezʭ�����I�<I�=�P�[]�[�.��U�ƋX��~�����y>'���f+ L)��O�[��y�k�ͭ����/�浘��۶�?hy�%^�d~��
�8t cU�[}-���75ɾ�AV���#���-��J�{#
��4)���/׷�6���Žy�2„����F����L�k�ڑ��08�M������Ki1F�����z��)��
>�!��$����6E��'��ʐ��%:B<��g2;���ě'�ʭ��U!���Dnx8d��eE�~�e�q��(qlqln&z�ߢl}�g�[Q�6�<~Q�zϸe�V�H�����޸��䶪���\�H�͚�n�n��QGR�%�wp+-�?�`b�}cw�d-nE|�[�b���Mz^	����^�/F�s�O�[�D�-����Iz�9�趃.2���+���/>���Z��$��r���Hr!yy�O|xx�q�e�-��2&y�[����믿��z���N�j�~'������B��[~���b�O1jYi�Z`40��Ъ!z�Բ�F��'	�M`��|�%�:HC�H���F���"b�?��D��ϰ��<�hq���d,��3~<�r_;�e:��P--��'˂v�H�hJ��z�}�u����ޠ�tF=Nh�fGeRm�´ߧ�]x�n�%�,d��Z�ud���:�oEYpX!�eܒ��5�����r[F7���;��S�[|�^�?��u�ݖ! ����b���`�F&ɳ�j������v��F�ʝv��[��&,�����-n!�j���Rv-�f�@h�K�e�21	I�|H?��i��l�;-��޶�~�>D
�
���l;�?�8QLW�ɭK.bQ4Z������[5���=r�y����-�x-{0\�g~�X]9z	џq�_M��oB��8pBs�]�$Z��N�F(�R�M&X\eև"�v|�
H,�$�W��J�c�{�&�[�a�[�ܸu+��*7ۊ��:Ƃck8���(�<���j{1㖦�p�m�V�t[�ޞx4n�h��&�r��j�
x��q��a�Z�d�_ٽ|_O��9�֑x�pt����Ƹ%n��k]�߼2�x5�S*j������j
����i�v��sz����θ�������{�o��h�7�؅P������-�%S�5�5sI�lA,��9��Ml!P$Ęp,��Ě�%S�th�VFn�6E��lz\��d�ڀ*E�h��0�K�9��"H��T���#�U]u��+H�埃��3�m�����'�,�DI�����?8��c	/F��q�
�L���o��?\�+ߧ/�T�b��Y�ح(I�ǟ�NO�h����O_rA�>N�~<\1�-�"������W��Xa�)�4�1N��,8��L��G�a�PU)~����O�ԩ���(bRo��x^�	�#�2Yӥ�^��+~�99s�X�-7��d2�i�ivML�~J���D�%TSs�e�z;@Y�������~��=�П��@��Ւ6X��1��~:B��_3�a݉%�.���� B��%�e�V �?D�
�	�,Y�v_���@�)4(��[v�uJ\y�o���*R�t�E�09��ʊ	Z����t�6MM�\�V��ldϭɄܢ�K��Tn�@����?܊4^M�-DL�RŴ �&&���@x9Z$_�ߚ��Ag)�&��a�
o#��k7�[pZH�]�9G�������H"�z�`�3҅�Y��2�V�H3�I�E�]
�,��p#$ŞE����$�Epi^^\@���F�T�22X���O2��	�R���c
�a(�/�.˖�[}�pK����F����ܔj��-$��αX�z{9!K'��݊�҅�z�K��)��܊���wt�$,�.!*D6��"�(�!�[H>Y��j�¤q\�-�{�k��<�?�#A��)rK�n۟>!-o�R��=���r�&+�����|�
7S9+��bEZvd�d���W��(o�;��+(j�֟ڭh5�2�������&P��}�ŝ%8� ?����ε���R�(�#&�H,N�ڔ{[�S��#��r����0P��Mr����LQnչ��W��
�+�<�6��[���
��ztq9��4ev^ڀY��⋄犫��Y܊B���m6yt��U|��b�
8 �iHn!(��@<�9�-ѭx&��q(����H�[EC���b蓖�sՁ�ϭ%�@�؏��Uo�4����;�|dY������9�!Ϸ2$��;-xQˤ��$B^Iɪ��|1r��Al����a� ?0�<�&�I3��syB����$ŚN��~����
;%�-�6i9��V�oߍ��Lh���'������­g~Kdv�r�r��gP�%�دx�B&�+�[WS�K1�,X4�������-���K���(�2��b*�\����� �	�e
]�k+�[�-��z����o���o\�[�kjy�*�⡗s>E�zBlA��^!�gF
i,�Ň}���V�3f�+����Ky���$w�-uv�7�����C"Pr���
un������,%�2����"���b*�=\X�9	�"&yi�:�i����<Iȭ�x(�:�ŀ�|���C�w� ����آЭxr��G=M8]t�>m�O���Op�B[����`�m��?�>����F�=�^����՝
�z.uK���S�<����v���`�l������'-�,�	�I��V4����
|�5J����NίY�m�h pĮ�^!q�XG�$��@n�9N��BYۮ�]*�@2��,�9��k�	���vLnID�Ȅ����pN�e%����A�3�*a���f��7tq�)<����1Y�6�cC�,0���ǃ+Ya��rՔ��V����8����b�4u��ř!5oq���[e���Ra�}��������j����ym�/�z�_(7��
E��"Zʀ�B�$�d—P���9�n���ne��

��
� �{�z,*ś�,�"x���<�I�V�c�If��1I���<��|>�:�io�[,e�fq���<��,��y�h*��]9��Z,ZWX�;��^���>j�2�)���2_r���{��1�.3͸�q�`�Gn��*�&B����1���C��W��v>���2ޚ7�5��9��Xo�;}�̉啠[��Iv�Y��D��T�عu#l5ь��Zr+��v�]��]���ا��*5�<ODJ���<�M�@�/�9�~�}�^���;��O!�ry͗��RGK ���Rp��\�|�+�ėW��Wͩ�wU��UZ��l��N�$��r���T؂[����z�\�-�"�G"��tŭ�m�[�-��̜�,>qn
��"��k�����*�K-<E\���{���	_�b�-��7y�h7�N��O\k�.���|pCOʣ�w������3D���2|�O�~xMqj�����[��g =v�y�u�Ϸ��'n]X����"�B@i�[��3c!J.[�k��T\��tLL���B;a+$�-��U�.��ȹ%o'�9�'n�QB$n)^���9��g�[�˸�_Ҫ����-��w�%|Vĭĥ�R7j;���S�n��pn9�<�jײ.F��A٧��4[u�%�X�6�d4Y�[�UDvhSV{V7�� ���ʈ[ن�-ɺ��ɏ(o#���d����n(�O@q���o�4�ʍɳ@��4�Ƹn).����u��G�^,��dJ���,�$'MQ���E�.nYt�rk�5ܚy�%ߍ�ԧ�4��F�-d͌+l\�m+b�X*���k��)W�֎ȕ9j �fuO�g�i�K#�S�J���iQZEr��b}L�H�[��Ok?�]u�w�i��;_�22
�\y�����J�e� �0�ԫH2��d:6�c/svY�uo�����2�*y���Ƞ%9�a^��Q=Ѿ��������MirWY���X���?����^��a�pgڠ(n�Ί[b��S��iV�	��z-����pM�"9���R>�"��fD!ď���p���P<�d������9q�/�[?tp�uyH�=u�mjF���Gp�e�^8�t3���\��V��F>(*�b��c�L��l(�Li�V.��n̋[�q���
�#P�v�r|3�^����M+��Y_�(e|C���m	�����-5ڱhܪr���آ`�9��p�6�D�J�V�^�K��\j&i�[N��s~�8�s�LN7q��v�m��2.`��v�@�L��yf����*_�'�?凫j��E��ޒ���՗���� C��@DML%q˛�u�x��9��[䉟�((���t�����JB,\�_�U����a��^��x��
|�{�%N+�IeFƭ{M.QKoOd�@u��,�=��D�2�}py��к�wę�7�"-u,L�xM�V#���.����ݹu�*HDn�'t��0�X�òI�͎�ٹ����.����-i$n��ɗ����+��P�j�o���=�gON��-+��q��b>%��z�]��d��=^�c>CDv�4�3��h�4�
ua;\Ib�OveW{�{�>�ݕ”��-��U�'���v��ɜ���-�����,��b.d�VѱD�U�x�h��-�e�uu�H�V�9�س�J
��]'��#��L�[�s�����2�Ro��.>1��Td-��wF���
�e�켭Z�u���P��Rw¡���}Q��(S��qk�{��i��|�K{K
gZ1\b�߆`��{�vwO���33i�$�yܩ?�qn���SF��3~��ߎ���Z��?i�=%/�}���q�~'��-�������I�
�t�]+54F�Ӑ�I{"�'
h;��o����+Lw�.Җ�	BR͑�P����H�}v�.ޫ��P1В:��ʮB�A��un�:
��O��Zuy��Iu�$�Aا>ʶ�qJ�7�=qw�+��,�LE�V�z�lch�b�Q�U���d�N�u���_pK��i�1I�\�+�VhP��=��]������2)�%q�#J����~T�]�%c3���7�Ӕ[˜��,{���?��7R[�N��Qy��T�õ�%��MF��E�f��[��ȹ�i�:��i�ע�b�xK%Ìw��kE.` jҭ:T4��B��M}����#·���R)�"��-H���:sn�D=IZ�������L󟅥p���P?nOM�ҢmgV���*l�5�O.}��F�N�챇�*��S�x�'�Sn�&n}��2��H+`��P���g�ni[�rj�5�FU�5]iՍ�-S]��^+��-�/,Z��t9�I:�d1ٗ�F�T�Y�Q��%��q�3L7��=O�\�sf��e�Z���y&p���v5�;�Ź5�[4��+n��$i��e͞���FN��-�VC�F���D�q�&lB��Ҥ1R�'*�$9l[���,ь���N:\o0ua�������~�t�J�[�e��1��d��T|�kA��ULNO�%��T�"�.�MU��q�^��IS[G+��ȭS[��XHƊȔ'J3�C?z����z�[��lH�ﲗ�xKI��[¦>�s���b���N�6���]��)��bܪ�;����J&�I,#�qk(�^���6[-��>�p��y���Ù�?#�2nu�ֈ��-��S;Bp��.�e�G�X�J�/M�n�M��y����b�ր��s+�Z�9A�у!f�n�+^}�\�-v�>W��c"��|�T���Ҩy<�A���p�Iq�z��i�sc1k�#U�;ew�}C,ֽ�+"�L|f�Ϙ�m�W�l
6p�+|�@���Z���IOGt~�\r��}橎cR�󃺸���]剣f�$n�k�o��I3
H$1Vĭ
l)�ƕYq�@5�m.�^+�B�0�f��B�!�V�O�HX��J�{�u����*l	V*c��n�!{r�	Q gv<�O�GwK�(�3�q�j,@���F�IJ�+��T�=�'�����Bc<�=T��rk�"�SV����i�QoP�n�}��u�ħ[�-���{,��v�[��3�"pkX����B�y���<�� (:U�g���]�)˽�-��[‘3�"iA��-W�����x��d�M��*!�[x:��J+j5>n]\\��9}���i�K��S��58(�5Y��d��D��-�?3!޲�����a��/`K�'�����x�~��?�&�������V���&�"}��s#5�>K�v|�"��rz���dOLnn�D��h��,��:�Jĩ���MG~��BQ�UV��rsy��Z�{r�=�k��->����m��a�`���;���է��A1b��3���x����e�Q-T��n���<%��ey�6�Y<��3�����o����G�jI��\�c��3q�r�ƭ\�+�Y���Vu�r�(lYf���J��m
)�N��_}��h�$��}�:/�v��3�FЂ$�ֈ�޻O���g\��Y�jq���D��ȫ�-����>N
�~g�>�<��-_���[�>�xK��sKq=/�����جv}�&�����j�< Z��|yqK�`�-�\�q���<�J�-4tz-Lέ�권�,������֩�I���g�\���qk�㼸��7?ҡh�̦�
�j��m��.A2��ɚ�t�Wp3}�<r�z7_�*��	y��Uzz��?�[�
Y+y��r���vN[/N���*����Ne��pp�bK:y�lѾ^w9<��$U]�
���^��}�qE��	�!�k"��d���u�ʭ��w���X|��%�}��!0vx~R�ǝX��Xdw`n�PX�%=
�b �|��rJ�2�;<�M��(��ow阂�� ��>�
�ք�m� V��1�r_��|Z6J���4�\:�UN&���u��A�sK	.��1���w���$T�E�^W/{��^4>�8�|�	�rl�*R� �dk�[	���*���?N�+ܚ5
�[����#����m>ܒ���[Ϸ�w��L����=� �Ŷ��x�>{|Њ�'_���$�W�	_��-��
�B� ���Ǽ˭P��p_��9/I˷V��[4(�nkj�_q���9}"����:w1b�Џ���^�'u��
�ٔbC�%8��b�$��|���1�0j-f�~��x+�E����[�m�[rt�o=ɹ����Ojjnq]���aVTO�.����7��p�[\��u�^�����W�Wz��U��~Wlv{��5Mm(��YQ�iL�:�ݵ�#�P��Z��7��#Q]�a��4n����yt�X�z�ϟ��1��*o��%��;���[6$�P�q2�[D@}�����ڌd*�c��K�o��eۃܦ�A��(9�x�O�RU4��b3�K����pe�0aؕ\�C�$dƭ�hC��#�%�˹����j��'�������<���f�����!D&����^��@r��n�o��HԳpVV���1������6ֽ��v<��y�A��7}x�m��c[��ei��v�[^�l��%�jo?���k߹����tv}���I��8�r��vni�Dqŭ�:�B<G��R!@��D�J���s�3�/Jgѫ�ʸC�u�@�X0u&2�Θ}͢,%�QR�f˳�X^E�+�m�t��lW�A��K��fC�ѡxlyf,�|Di\=Wm^�[���rz�|<����	ls�E%�ꔖ�~r.o˳D"*�NRz�)w�����+���%'�ׂq��F8s[�biD��٪�_�˹"��wj72)�m,o�,�dX�p����ܗ�jL�u�
|��k�DUƚGۻ������f~PR�&=*����|l�Ze��X��<����
q�lr�Ib��	W
P�ۦz��
�*�`�E�"�a�[�K`���T�M�:��u'�[o,7��ϩҐ�ݖ��6���Vb�:?y�m�eɄ�M3(����J�(r}U|%n�[�&J�!�j��e�����V-�UuE��w�V}��rBq�5܊��	ټ3PZ�jN�s���a��e��T��ĭq(�0�3���
1
�oyt4!4�[���[�e��E���SWkut�g�-��7@p�j��\�?w��9�P��߽��.�ۧD���r�A*�1��qk2��*�o�f
��Hh�� ��.��װ�fЮ\Zs���l��ci���t�PL���f:2n�z�l�����zyȅ�i㝆aN�K�[q��q?z��]S���Z�
��k�A�2A�&��p����xȽH
a��c+�\;�����gq�8)��'ԗ��Z-���5+\�����!Q2�'4�[����Y-7`KE�N x��8��"�Y�py��$�_D��H��IG�]�x�m��Rg���d73��������P���Hǃ�8�#����^��'�Zƭ7�K(p)�Ke��k��D��,���v@Y$P�<F���_�uR��)P�T~s�᷒�-���q���u�T��u���I�Q����≷�*i�-��{4�V�뵣+p���%ܲ�ª��Y�0
��)�X��"�YY������rƌ�p �����5B]t�B�^!KԌ��3�쉙� ʸE1Ye�y��[�Kі��[f��
�
���l�-nM��k�Dxb��6�f�Ҕ�
�`@�[zDE��
TsY�£��W��gc�o}��uOʸ�&co9����0�}Pbn�J^з}��B���+��fe�=~K���_������,u�l?���А'��D�/13�?<�J�u�!�����v�Mvz��2�Mϸٰ{���|�V���x��З xdFʈb��ԍG�����:�����gjH��%W+Ԝ~=��u=|�p��~�H�Ũ�'JO�jq.P�i�tn�Tk�X,�QØ����؀-q��;�Vk��i�|����K�h���B����Mq$�h���O�A�"l!����MW�I�%O�)�S���yby�&*���ZpnAD9g���[���[�J�YcU��?��
�Qe�SSl)&���ܪ֑xs7ߜ�Az�mU;ֹly��5jx�(zu�-\$�����eh
mU����	���(��D$��(���Z�Һ�P����t�Qz��AiȨ��f9�[�͞l���p�*p�t�r�Jq�ir0(��]ZG�(_
�b D�q(h��CC�����at2�i�?���̸E)���[��������z7��v�Ê��G���+	�2�b-����կ�B���
7�"P5u�j�Zi��8��b�#!�`n�Sd{G@cl�R�V�Ƶ̦��b����Qa�¹ל��i�O��;ғU]%i�r��A�d�>s+>eWq�If�y��Ǐ1��}�h[�M���ɂ��l-[�\p�"����w+�(�0
dgm�
T��>N��C�B������up*Sn1����$a+��H]R��$=��P�̎�l�ث����-)�Y}��nͧ�)x%1ODŽ��U�6�G�f\4n�'9�lM�A���^3����A8�qˌ�~iB���3�����)��"
9h��n��-��-��u�am���_��5�����F�(}�'z��
w�gWs���3���b1S�ED�:�kѵi������YIܢ�Nq°
(ŭ���[�/��Q��41O��Pi�P/��k-4����P
��Z��ke��
��[)��e�bp���+�ņa�U۫�R�Vn������Uj�S�S��zO������D2��zL�R�6A2;A
�ubs�u�5pJw�W�g���"�z�XT�?��B�DU���(�-hy���\c�
R�9�">���QFb���*���O�o;39<�o��[.�V;�����``�˩�O2�3����}+nd�ُ�S\'&KO�9��)yEĀ��[ �6U�	i䛇xk�_?���Q�*��!,
gfD�C�ԃ����XM�75��øȌ��zX�V<U�8�$�n㢁R9�n�[�)jRٰ�E��^�~�dh�UW�S�6��p��F��'њf�����Y�ñF�Uέ��2!-O���΋����s���c�[�8a˂.�:�,��6|���-�F�rn]���q-S�V��WH�]Ђ]/ĭJʭ6�:�ՙ�+��%�x��V9k}+D����oU|���Xe�C0SE�?��.�)'*�`|&���(~}�-�7�a����
�:bG�1�&;ʥU(��,O(����/�cxB͠�v�a�T�٘Gy�:���t�USn�[�Vn����\=�l�nonozZ�[�.]���q��i�;p�])�
�i���#K=h��nq���,X+-J�����.�9����E_��YK�ejAݢ���:{nsZC���ǹ���*�#�� �����Z�#ǖ���}�de�0Ds�WE�N�����=&4��+(��x�jD�=�e��<�PKK�e�B-�����j؅�(�b�xk
�oE��u�"B7�ݪ$
Q�~z
E��qK@��[�{��ޮ��p�*'m�ʵB�Z�E��Y��d�#�;���;n��5ǖKK%�
Ԃ��v����ګ�%w����3	HnHQC�Z7�`߻<���W�RDq�ӿ�[��kܺ� KF�5���unu�e��H}���K�X:��O�A����-
q�I�)�jm��+���-�+TE3f���[uq�ýKQ��Mƭ����>��P%��L�=��"O:+a�,w�F����,Kom���A�P��.�j���r1�	&5�[.��M��Q-�l�VMhW�x��Xyb/Us���VV��Q�L�,�V�bM�a
N�C�u㚙�-qTܺՌh�4�d��h�O��.�U���P��DR��@���w��!$M'���呖n:#�0�a
����%���9��C/n�(��wk�XN髲P9"O�0�M�B�����,�V���q)ݫ�HvD8�Y�p���(�2��[ˠe<��[d����9li�2n	�jKn͖��	?.R4&nE�I��^�;����ꟘJEe��K�����	5v����J!jb9��}2L��An�a��AaWr�+
�L��z׫��s�����,O��}i��������C�4�L	�nU�έ;���v���<0nUdo��ۖ�Ei��!j�Q ��[�B�xˠ��x���,S6�s�����-6_21���ع5�P�q8Gƭ{�p���?��%�$]g&Q9o��,p�R�K~�Lx�����B.�gɭ�S�����6����P�n��r.X������B�ٺ��
p���Zq�$�[��W���z�����5��A�$�,t�Q��yq��к��׺4��j>5+nE��|&�pO�{���r٢�F#l\���U�x6�?
ʖ��ӠrԃZA�[�.bu6�PȘO�Ƴ�%!�ܲalr�����Tr?�<
�|Y!O�Ƽ=�o�L�B,iG�Y_ղ^P=~!�rщ����Ǹur@��'�[��=���ҫ�BZS"ݮ�~'��+nM�rC�
53qAT�.�[g���
4�%�hbN���}Do�Qs����u�(V!�.�}�"�����E�x�a 8
��D�=�0��U�Ĝ�⭠P�=~l��}�/�g�(�C4@iI0�;|��g��X<�3nM��o�q��2�և89�[� ͨ�6n�-�,p+�-�í�ӊ�5j�B�ָ��ĸ�<O�Ɩ|��
��F^�<���Y�F��H>�B��-qoZ�&n��%Zq.%�\���0U{ɀ�^�~J�o����|q���@�/޾���$�=�U*N.��j�*�tUm���Ղ-=���h��;�ݲD��
� ��U�[]��N
�H��1I�[�v��pK�Z�����X�.������K�v�Or��;���Ck)���vNi'�i�\���Ǐ�<y~Ժ?����ƾ(y���B4�A���X����&ՁG�
0/�"�7s%.�lQ�Nɪ
��B4�,J*��7��'���t8WW�
��S���|�:~Y�x����7X��RS
�R�"j�[p+���-&I5p�ȣ��P���fY�n�ɆDC�EЄ��H�@L�֨G�n�B��[;q��R|�$Sx�t�Y�3idh\���2�_V��|:�:xT2#^!�
K�,8��Yz��xKpC,�����y�{[�e�8���-,��<.ʷ�(��b�$p�L"�
Rn��[�F��Pܪ�E��=�#1�����
O�sւ9_�ϣ񐈾@}R&O��[�ƭ�X^I�O�iT�L���k�%:��e�ᖏ{��ݏ��5���t�KuSMoS/��p�6�ry���V.�Y.�[����0�p�yf,ny���M�%f\�1)v��U��͆24�,�2ذ��M���P4�)sB���S�K
Μ9�/@�vmk�!C�P���(�P߹�
��٧���/ ����{�.�� ��񆫻(���<��X�����C���
�<O�7W9T�!r�!��߈	�_��4����q��0*�uK��a#�ȊA��s�n&]X1�Iy(��,�RɱT��9<���&~�zXY
�V�F� U3Q\�V4����!O,�M�u��������F�U:����4��_X>[�I�D�D�f����dn=�Gէ*�hN�XsUK��chd��i/�5����W^��^���¢;:S��6���,������ <�,eC�b��*����E�ؽ��Al���MU�b����ye�[�S3n�s�\�5'n�-↸5�����x�[�r�b_e��[�D�
%�r���<OT�Vs6iʴQ]~gR�Kn��E>��xk��?�S�'�J���1A��[zCԩ��#�Xn)����"no��ŋ�=��
^ ����
�R�.q����ku�Yǹ��Ը�B4�q�p��8����Чf�5�����я��,'>�<�῵�k�u��<T�&�����##$�"m��<~��Z*�0o>OM&ӯ�h��[�L�<_V�Q�Ep���ߚ�G��
�F&p�&��;tt�ǣ�wQQF�Gfc�Kqc��1o)�1��.G��C��3��!1�՟�۱D���V���{����̣�C"���-I|	�ZfoU[
i(�D@K�SW���9�#X��dB�%n�(�[k�
���$���HyV��Ml�D<�g
�H���bI�ݤ��#a��Sy�ӣ9�Ⱎl��*�&I-��jN���2o�&^B�+�H�
��
ނ-����[���'�,MD�]Z���nQ!n�ѷ��p�
�
*fpn�kܪe2�[���<*�٦�:�Q��vn����skh�R�%��>��F����A��!n�_��k��k@ͪ�a<3��A��ߙ��rn],�5~*��,y�"�$i�z����
���ق[b�pu��?}���{(�{�C@�\[��[U��Yl�u|�#
u_n�0�Q%r�@�>�	Z��t���.�H�k��Ʋ2��G��x����\=�*���yʆ����Wy�;E�͇�q�5�;��[^j�vRnp˶mW�A���$xr|jqK��P#�8p�!��t$v��^�G%�ݣ��/�3�n�9~�N��P.�BV�{�pR0����~dIc��g�L�_���˗��*9�--��b������I��U
\���4���`ň)�(:����(qa�U�nI3[��2������9�����h���«uq{ǥ͖5_˕W'�	o���=�Gv�ƶ��;v=>Pܠ�\)�Rn�!ݫn5����M-b����b�v�J�:��eUW�V
]���<7nUĭvʭ��s�w׸�QD�t�^�N$DD�	u~�֛/��T��[\��-5':�����>lY�J�
�DS�.n��K�z`ip����x��z��Q8�&���Z��i����~�M)�1���JDW��n�K�yP ���l��b%��P�hۭ%vZe!��*�#}���}H	f$��@�[�	���,e�B5驢n�g�Ho�U�}�5F��*�T����r���<Q��|rM*��f�%���O�jW}�#�i$���z�疡����u�Muj�!���s']�4�W��7"
d3�Q��^�}9V����z�ח��·'-�u|�ƹ%���#�s�DJ�N�{�Q�c~P}4�Ɖ�Ϡ��
�@[�+RD_!��C)ad�i�[�^��'�*Q�W��NIVwt�ع5�����4 �	�x��B�H�`s;�8c<�x�ʩ&,[��z٪�k��w�-�'
1�eo���+mF�Lݑp�ܸZ��+���Rtяqai��`�����o]v3B-�����[��[�$]�ʥZ�Z�d��nG�dp��|Y��^�W.���(ɗJ
�p�E<e�X�l�^g�ǔe}øC�],��j8`IŸ%r׬|kL ! ­%X��e�u���ש��B5����$�~zf~�?��т`��6ֳ����p�/�'�����l�x\} µ��-�������z]���U�'*���]��nW��;;7��Q��{���>�'[��0 �_�)�
�V19W8e�K��v�٦[\�\����'J&	�j5{�H+1Jag��-�F�=�\��<"��	�5���.��J�����}I!Qv1xH�lOa�P 7����?ţIRsn�13y��t�w�d��V����"4��
�]�uK&q��B1�+�2�Dc���.틯o9�<��Qo�����"�zl��K�y`-u�V�)s �W6���Պ	s�����<�:.4[r��Qwtf�}�s�@�]�m��4XH����V�V�#"�4�TL�8�,SE����&���:^���u�Uh��p��^Jk��\A�-��2El����b����-fZ�� ��8��Ƅ�<qB�|{��-������	M�Ji��a듔������������ӓwG�v�*v\�Z�~W}%i ܪy?�,����IL���O�jlUK_�[��)���_���)��έ�ݛA!�Z��
�����s�YZ�V�c&3�:6��-	ƭ.&%ol�?��t`qqAM���:��:�4�[qs������O
W�dr5.�/˓It(>�qK�rw����LI�Dn#(�3u�XOlx1��_?;۠ UhY��O(^�r�[��D.���Y�J����2�j��C��ָ�ͥ2ne�?��-H'�ɀ7���:�z�*fKn��ɋ�L^˭�͖q`�����Z��:\p+9��Y����*8@!n�e���%pob��
aڃ$�qK��C�A��*?�0�ָ�+㡈[�&�
�Z�P�.�S9�q�$0��V�(��	+���ƭ:�i�,�pK
(_7��j��(����=j�k�E�jPG=�"퓸.�8��sb�r����C��5�۾�[b�]l�p��$WxE咲�)ܲ2�!u�|+*�bQ��n���Vθ�%�Q���7��2	d=���-��|��nYAG#��[����)���R��a��[���Z��i�����oݭ�wn}��o�\^�����U��_dBW�G�[	3UONLd��V;�P��|����~	��Z��."��N��Wx��#�9#�C��Z���o�ʛ���ͧG��4B�׭��]sZ�U�z��E�cTy��fs^w��l<(��aB��ڼ4��9j+ޢѽ��;\��q`��ԝ�k�o���Mv�Bt8C�9kFuD����	�tO�XZ_p9H46���d����Д*��;�=�
��J�Dx�'�~��u�ɜ��&y�v�˒<�纾�u_w�LS���MT5�#�Ĩ�{��#n�&�_�q�z
r(G1T�����͛�ˇ,VW��uG�^�T��)[�ks<H�A�y���j	]��0�W-g��K��]>%�������P3������FZ�e�[���@I�4Z���6ؚQ�>��C�	Z�qC���
p	];;U�1���U��B�\�U�\��J��F��
a�/��.�ӆ�)�5byQ
CUs�v�L�(�X)�_� �XU�e��\�,�ۨv���(�MBhс��5�*��+#�K2��~ꗑ�'�a))z%"i��[]p���}lh���zu�^�F(�*�]�VT�[�!�CnU+	*籷R��2������T�U�p�g[s�Kn�W�����%�pb�w~��䴙V�:�p�^�ATŭ,��vw��<�Y�C���o_
;�0ޢ1�ʄ斜��cX0ʨ�ڠ�U*+.�֔kpI��:�������xkrU�GJu.�ŠY.��Of��L�ڨd����o����c7b��]�j\8�iI�&A	������HM$]1��1�Bc�\Y��d��r���KΖq�\�V9u��9�~�NL5[�$W�*%]�Վ��ݠ��X����<���Fxݐ�A����o��a��B��a�N\̛�O���[v�v��j>)	��|�/g�C$s�"��V��w7}Ϋ�.>�
jf�?�܂o���������D�%�
0�߲nks���KgA��}�$�������'� ��,9���nq��Ѭ^q vS��;�-]��<��\d���HsMA��X�ӊ��~�v�!����Xꄩ�HY��ָ��-s�:�F�<�Cu��0�qr�#`���tz��z�\�P���T	�Z?�\n�}�d�����&��[�)qK��+q+���N,��
��o���2��-�lT]�(�%]p��#Mu8~�z�l�ҷBEܢ
��[���-�%ﶛ�G��8�ދ�u�o�@��l�>cR6K���%o7��“���J�pk0x�vrnݻ���skŒj�����\>�T!����r>�^��Ka���U�x�����4A:R\xIA��A��0�����*�N��*����/Ȗ}4l�-P/�j�;$�ƁW5�:�*@���J�R�E�K3�9c�qS�q+1!jIgV�V"��6��EPզ�?��Zƭ�y�J�;�ƭ�]��΋*�rb�7�ɓM���PJi��[m�鞸5�ֵ�N�������>��O�g~��9�de�s�og�0�u��;��Xn��,��\��2PM��}	����kZSUl��X����p牷9����L��e���:Cy\4�sn��`�[�!Q�e� �t�
\4�׭V,ޢ|k��0��;�/ܺ(�U���<.p;���c�U�P�*nE|{G���N9�lkvb�.nYU|��N{�+�����E����ڽ'��C`L�4P�n��H3O�^&��o����ަ��5��'��!��P�u"��Z�����"�#8���P_ЪuO���fBg
[ݟ���������	*
{n\���y�͟��B��[xm,d�Nz�ٗ���_��~0k�rn
�����|Rp�ȲS`/n�MJ��)��w�mSUuzT�@�i)}���T�'�V�[1� Z9�0���Q�5�A�o����g2������%D���D�W�h1���SO�������HaDqW��١x�E�5{`+p+���;�ƭl���</NM13��c]F
\�O�=�����{�4$�2��-�W,޺�Q�fX
�Vl�j���s���H����	A;�J`�pK�U��#9�h���}�Z�FӈD2��黾c��E��<�(O԰bQ�_qpk���[��	f�=^B�N~S!W>�iܬ�~C��������Or��DOÅ�~(�`��:�[Cn�l�-V<�wn�ne�-�^/��֎���:=Y�@�DB}����{�[剨�tӝ*����F�V����u��a��H��Ӫ�m-�BM�z��價�n���2Yo��3��{v�0��#�v%^N#q����iTpn�.� ��3���Ͷ0)�^��#l�A����To�f�xs�7;�=�:_���lo�W9��|C��	n.�j�bD���8I-U��]k��U�i���(�M���5Ra�>���*v�����i3�2�I���L��r��:�
ؒXi�R/
��UpI7&�2��_IG��l����Q��1�?�(�Ќ�Q��]��k��_��_$��� q�Z��n�QT�=]$T�//j�6��[5��i�%���'n/B#���b�j��NO'�����������"~��B1��~m�V[�:�[}��P	�M��PmPQ̯;�t�?St�'�`�J�v��{U�5��fk8h�5P~�qk<KD��ϓDd%$����R,���r��
G67Hw��:�-�8��EW�D��3*tv�"��0�^x��T���J�cp+5έ���rn�C�[G{�hm{��iu�eM�b�-剩
)��EAW�C��r'>��Ң���꺸9��ȿ?�w�×G��֝��kd묞�]����
�>9��}��T�#�3p[y���9��6�ƭ�|�+O�Pe\uW�����>�֥�-����y�=��r2^f�v|)�U�AC�2~�YQ(ʪv^ay��&�Ձ
RH��&~g�ڌ�x�O��&���_�%�I�@�I
!���Y�=xU�y�`�<�O
\BΨy �2n]���-~�����SoSKJ��/�)߫��g.�b�S��w�M�cAu�/�)H=�[]��̌�%������Nxo�on��,O�M�J�Å�Te��5��%--����A<ۙv�j�de[~>q���|��Q��Ga������ n�w+B�m���`�5��~���<|�x��Q���D-GFj��3І&�එ��Ra����ţw.�R\L�U��%�Vo�������1n"�V�g���SD����u-�qpHA��5i�i��-Z�z�AJ٩���fc|֚�ib���?GI��ӭ�j,�4U{=��
�TQF�I0�_��E>�#f��4h�-n���[=��K�-�e����x�%�G��:�S˹�~��=pX�4&���3��I�el�8�0��؂[�$��D�x�+_y6pӋ$�?�k�d�����Yp��a�-�2�t��
��d|r)�RY�2bpq��袧ތ/0�^GEA�Yrb8��}!Q��U�d�L{���nIS\���i�\�rb��W��s�j*����+��3���1n�h��XC�����l��m��r��D�Pua!�Ϩ4^u0k)�\�-�˗W�b,Ҹ^���F1�jmmY�|����l�z����5���f�kw���3�g���ܧ+72n�-�U*U(��;�z�S��Y�������O�r�>7�޿�;3�¹U�����'���vj���C��a��@�#[���zU�O���%���-e�A��[#�k|4�k;u:���[?�ơ�j�-LxÐ�g�������
��YҢ�D޸E�j��,É�-쏨�ܲ��a_��p��?�Ue&����?���ؚ+������qKc��#W<��Q�����o=}���A�юqK~�[��c��x��������U�,��&��6H�+�*m��N��E�s5O�KNnqB��-�p����7�P����t.c�bD�g ��r���ZTi:�	����V��l�&jkl���q�y���Y<�י�Fʘd�۹9@�fq�����R-vXG��/��2u�քr����.�Az4b�7�Ǽ�[��^V'o'��V
\qFl^�&:}�7����J����T��z>��ʿ�e�.��Ձ)�)��g���b���k����e\�1iNp���ts�x�xG�j`p����j乿b��M�ٷE��`��7�߹{w�����s_�b���óq����ᖢ���U��L��W�̬�GmA��<Z�c[Zq�
ElG�NS+[�U�-M��5��G�X}
����x�5^//��)ΦQH��L��Ը9�Ӫ���YbE%_N-?

|�*��yͰQm�	�z��������U�VDu�q�S��i"��'�*	Ezx]M��:��ӧ���~�X�b)����P�p�q�����mFU����������+��X{�$���������+��r}�,1p>�4�ʻ�J�(`�1,���!M��r�Da��T����A2�[ǖ�b�vj���.�������W��,mP�\�Ζ�����Rvv6��՗A�
��K�j��<i��2=-��~�^����0\,��tR�i���y�z9mX|�o�\$n�n1
�y���|L}�>�0?2�~Zg���LX6��e+����9���TLn���E�l4֦u�Zu�c�k�ZE!A�+\i�)�9��2�:���>��\��@�PbQ]u�	u.�`J玘>���K�GV�����[�-;X���	�����䝻�����@��_��?�����_��}����[oq�Ν;?���v}��_�7�w|t��� ����ѣ�[[�?Y�[�ng0�T`�t�Z'^��1�f<.�l*E���„�p�[��A��A=;���tYJ�DÑ��Fˆ�Fi���[?	�\!˕CD����a=��������k)�����[�[�PÉ�-�pk�x���w���w�RfR�җ‡e�IU�05�����B�O���?hF���[N|�[�]�8b�;��ʛ&���‚	2`K&�-2���Y>�e0ggp��m��7�p$����=��ܒ�D�ץ�Ruj6��Ջ��R�A��t��P�.ε_�n���Z��nz���;��e�4_�<Sf5��rFjF�sʡ,�$x����´�N�&��,���r���'9�
.5��$�\S{��8FXf_�d��5B[z��L���D�Z��)N�1)�q� ƻ(ө�Ʈ���gr�
��M�`5��`5Z�֨��qg�[�[G�-�-5sd`��"�����x뉾��+[��1n��ٜ[f���D��4B�|�E�RT���I	N����
�LGǟW�0~�)�sK��.������gpaZ��8��!'���[��1�����I%����P�ՍT�E���*����]��|��c�i՜�r*����U�0?�0��<��9躣�7l��'���Jࢷr�b�s�"�qb��.���A�VZ���Oy�-\J��D�Ŀ��T�{|�to�)��㇥L�y􊷜[��-�-AH���-����?���v:;����-���%��c��Ty:�2��x��50U{r�#�jɝ�:<Qp�[�������`'3Q�@�=,B�pؗ��Q�	��e����p~̖��W�{tb4�����hE$e��f�g�x�i!DnlL��mi-{��.L��,�t>r8~`��`���-q���zT���%��gC��Ժ�0u5��&�XONë�O����5�&>}eb���	y���z�|��:��€b<Ej����<�4W\z.�ctM�]<��(k(`k��ܮՌ�ȝ2yɛ�bIZф�	��o�`�ț����J2��3pk_�"�1n���SK!l5��c eI�`u��$��$���w���Q�U��]Z�6zQ�{?��o��X�����V���B.����C&K��U�v1����Iot5Aj���ףPqn��[~�\�;�k�@�`��0(;�yU�x��D�=I)kv�[>��4��C!{���?�j╼����ϫ�I�G�*ȯz�AÉ1�\B'����<��{��G��)|yo1F�K�l�ى�I��5�n"�����Gfn��#nU���՗�o��셢*[�V��fc�@�)�^�V�~	����[�^�vM`�mnuۢV�+@┪p�\ggM�,�]��w>��<hfi�2
]g��[$+!�jG癳��\��%�Ρ�q�:���#�h �p=MpN�zL&19�L�J?��:�R���8bC����J�V�<r%8��c��r�P4�˨��_	�an��̵��I���К�|��}��|��5�0u����Sjչ�a��-�Z[c(����!�����+5�p_��I�-qK��`��xkO��>ӆdo�a7��PU�%A�	�{볟��wA�������'�
^ŭ{3�W�VչEc�%��زyƓo�N��ΰ٠Qm4vvx5�=�*����t5�կ���o�b�5Z+�;5"1�֘�����E�/nUB3� �����
��Gô���^�[~?��pz��s��G��j��!�[��|�כ��D��[u��ġa��������M��d�$tˌ
n}�;��'�T"�'�Q�7;m�eڦ}�m�и�e�5ҕ���H��%��]np�����x��pqW�"N�ؚ������c?��O�v���� x֡g
5�*@�?!�Di�V��͹����+�5�4�ZM���\&��p����M_�]`XD��Fq�զ��Y�_<`!���~���QL�KN�.��\��Mp�t%�({F}���_m1�q��-=��c)�Ґ*�R�8aF��8����M���eϺ�]��F�r/��"���<�aZ��= �,�J��\��˓̏U,Q���/oj
��M"[\�O�/������-+O5kM���E�W��v�rk_{��=i+Ǵ5�*֓,���[3�f4���R�[.���p��ֈ�E,�tT��ʉX!\��-���Ch4����w{�F����-ŊLQ�[U�K`���5�J]������N$�
��S�( ���Z�]5�r���*��2���y��xh�]����$���S���TJnܤ|�P�V[�6)��▂V=�&yH����H�d[�#������o�1�Ӫݫ��p�ʷR�vRꞾ��k��c����D~�SGG�騢xkո�og��<�6uJG�V(<}/��w��-_���]}����>��_��b����;�1�h�%�S�8$5ai��SE�[�. �nK��o
�b��*.T[��h�v�����ٛ�ҏ�7oW0]3jQ7��h���?LpwK{LV+[����
����F�P:�ț�'��m�Y�b�q��m=?dP1r�����q[ܺ6\c�-V�.�r^�#jtOR�q6�v�s`�u��!��[���(�3/��^>��>[?Y4����+ܵ�m��L�Ub�5��f������'��Vk��VÊ�gOŭ�VI�1���B��W~(n�����i5�܉�-#����zʓ�or��m�km�-��4�J"�E�6��m5��ۤp��	��[G?x$n͵`����|�~��7n�5-f��)­�D��e1�S�H�wQ�>z#n��'���9�|N��i�^V��8�?����a�	(��GW]�Jt�!o^3R�q�^n��rȭ����[4^�u�ղ9q�>�q4W�;��� �BR��^�?XV$�|�¯�O�[�A�*3_ܪ:��#�V��~+�z��"�X��x�u1FqrN��1���(`-a��VaCX�[3G�LhQ[�9�Bw>�q�
ny4�+B#���kMMѠ�D���Bu�y�����l����
��c��ĭ�lÒ�K�JGBV���9��������Q����%� ��5g�
��\ll�+�[���~<fS�92��k����C�׬vjI�럦*N�Z��S�W����ٹ��X���:d^0O#ޑ€G�֛�	_�m�
}�Az�+�P��1<sl<Ѫ���[�V��Y?�x�0����½�Vv�-�����"n�$��dx�I6L7W����<�â����Qg�K�%�nѾ��2)P�%����n�Y�o���D���$�3���-��t�NT�dQӼ�QU����;�l��B�o�Me�!0
���H�/���X� ���[�4,��,a��=Fw@�i	��aݡqk\)W�����~0�6nq��9��R�Дh򋢷ڮ���fyȭl2p���$n�!X���yך��w\ˌ�Ӿ-n7�*=qKS�����Oy�{A.׻��(���y�\}_x��$��i�V�)�6Z>_1L	R����Tf!���:�˹�S�Z.�e�[D
]��V�ﵚK������%puý�2�i��|ׯL�Rkb�:ܸ��ņ4l/��#���3�L�

�>��N��T��*�/v5��T=��D�d�����O��m�6�+VP���ښ3��34��[IB4�E��5Fp�׃�k�1��q��n�R�!�)�i(޲��m
'ᖷ�`О��-���R�y�[-q�-25��dvn�V���4���&�7����3"-���/e�{fȓ�b�m6F��.N���2��)yws�V�A3�t�����"6�i������Q۬s�؆[4��[/���<Ѹ�D��^�V�%z[ή݀�����]�í����|ܒ����;8�8?���v��z޸5K���]�B*pK{�,�B�yj��Ո2�[[p�S[+kjZ�q�s�����Jp��E�Vuy�і����չ�Vָ�U���6�ak,�z"��v�:�v;~�b��'�j�	pQdޞ�Y�W��>�	F��HX%���c�=G�|��"��5PK+��@
����Uh���"����ӥx�E�^�;K�;w~�mu��߼V�&��u�X\�Lΐ�X�㭸聥��EZ�g)���1%�����
�8�6b����㓻��֌�'��ml�Vl�H���T�=�a���4�-�ֹU��-��.��"mX�Ⱥ�0ȀCo�b��˹U9R�W��.-_�[o�i>�R��&�r<�3���5�;e����U�N2n��%j@TSRH�-׆[�'�[�R�:훿Gpk�,[���
E*�k�.�����\�Vi(9��s�~����%��\�0P~/��l鷶�S�V/LL�.ĭ�
!�V�p9��
��+"
�U��
�"���vUÈ[�QIt����w	ܲy��m�[�/�fXA1���E/;}~W�5�I��|��qK�|4[�[�+p��>�Χ>�q�U�Ro�[ٞ��տ�]�-^d��­�NJ������Fʸ��-�mP��VrK
�z���������W�4�b�3因�%�X�VI>h��e�֠�
�.q��F�b�
����r�N5��5��7�.����!kdf�����d�+I��f�Gj�5�-��6Gao+|js �
v�a��O�L�t0d�y�3m�֔
�T�DV�O6f�^uY�\�zn'�e����M����!ĕ�΁��P3�XU{xW�)�l��H܂X#�S̖��C�R��.�v���2����V�W�1jQ�
��-z�o�n�'��:m�[�R�NX6����r_��-����x��>�l��Eb5f3R@���<qn��¤q+��>�
t���l0x��ܽ���o��[L�N�Z{�$O4Sl��W�z�7�<}6s�+p����m⭝.��8���ax����-,����z7ނ[$`r*�7�p�tT.?��o�o����rn�o�t�z�[a�@O<d�’?�[x\p�}n��&�.�}��A�;u�VJ���r�e'Pe��uynA�R�.�qnal�-��۪��{oն��oom7�O��->F�>�-�#J�tń4q��O��K�mP	q"1)X�*o
���A��}iXm�U5�\tpXv.P����h�8�9}g3i���7��E
��ܢ�������͙���,}va1Z\��o�Z�I��}&nI�R8}�@�����V�EċOk~|���V�o�yR��5��@ k��ߘS?�qt=�e���2�0�PVO/�����h�h�|�ׄ�%�o�B���FY�֨��`>����M���aA�J��3��_�ɣ�|��y�Xe�
�	\�E2������ږ��[�O��bȭ����VU�DŜ[�|��8Ep���)ILتy��[XY�Y�~xw����?�Ϥ&��2�
�V���۳�IK���oQ�p�ٔ���H�h
���V
�2�!��,�/�{k�4�*��c�Vk���^C�����<�c#��J�e)j��P.�����e�0�!�J�/�-�0��
��0X���u�H�Uy\/l�"��e�������qn��;�b`и����­�oS��!�3nu�[j?ݑ���'l5@�W�.����Wm��q�PG�-}�3���{5�����Գ�*U�S�ʉ�য়����4�i�t� kKĨ�h}b���@s��mf��xC��קo���[�����b�Յ���T��Џg��l6�(����Ogl���uJx%p����\�*8�$d�ɰ�+i�%�(�
a�}��}�]t�1�r{��dzjjz6Qyx��$�(�-���)���:EM�I�~|uN��0v��G��=�Q����Lv���i2�̇Ԑ�3�j݃IUP��5ۆ��]�[��7�2b7g��s�с[�&WmP�-��Y�u��-h����N��:�װLu�شԗx�q���۷�P	��ė��/:�#WY��Z�n��M{�d���pW_���@�m�[�u5���`ye�6pn�ƭ^_���c���rS�2��<ѹ��)ʮ��-�p,��x�f�g\�|�}�}~"�e����p��z��u�?��"��� �� l:�غ�p�Ե��U�[��D"'���[�|�V%M�R�'"�g5�Xѽ>E��j�c]���cK�j:���ޏN6�o㉪�o�TT@X׃���[��i���=c���D��h��4矠镆l�F�F8ﲄ��7�)�Ν�t
���څ-����2��i4�Pޝ��;�<��z,9�Z暉\�+�I�Y�%�T��r#�:;�n�ո���P��=��1B.�.��)#��	���&oܸa@�n�y]CbnQ0�Z"51i%��P�x�Z�U��G��z��<1��&���x12`/n?M�t����I�x���x3�[=͗���6�#p+i�������-�kP�|�'X��rn��9mO|�g�V���k
\*f����z�����xθ��2(�7D��9��Ueto�>}R���{����a3�[��[�[�捯ݸs�[w���%�4�޸�R�#�V��%����^���&x�� �%j��M��|�a��,������-��Ϋb�b㸣I�B�yB-�(­
u
����魨���[>�І��ڲq����[���oC���V\ܪ�U�o�Bz�G�[�t����樸��t�g<�q����Xd��u3�"�]�+��҇M��ي�>p�/��[|�s�i��i<[]��WI���,~��.{i�!?M+���
j˗r��8=�&o��M�yG�.*A����m(f�󙸅��M���0�߆�6�ִ��p�J{��S�.�4�~�L�O���!oX_R����sB.���W�M�D*���F�8����[*��-9���PV���2�|*k�[rԸ��,�u+G+��^V��;�E�'.�x��n�'���Q>�/?o�N���`<�uae���[�oQ��Bɨ�]�e�V�<1���'�m1���e��8�#�v�{��8����Şyx�����Q;�� U.W��m�fnQ��Y������*bjq��[=�ŭv3:|5����ߥ��(d#���G�
w��+�ݺ+�{��ly��	G ����Q�J�z��f�誵|�>ƭv�<�� Uĭ���VW��bt��A8��<�f�
E�e�V�������� �R����"����M�,����{�-�'�-w�|�̽Jxi$��*��8@x�l����b�*���\C�1�ZY�8�k�P���$n���b�V�Yi�ڔ�f��r.�+��Zݧ\��-�Y���hS�2�Z�B��>�������O� ��IJY��w�����$,��
`re���B�<��p+�I�HOac�J�#A�և�(�sQ,R�]$�z6��2A��9?w�f�W��x������w	I1��.���Z—���E���
[�V˹E�G���"=�y�JƭM��6%�W���ܚm�ˌ��6D�k^bv`�@���P5���x�����!u�d�;(�LЩ���s�trҎNeb�SU}a�3�����x�{���ܹq����%�
i��q������6���8��\�?S	�-�Y����ox꫐	VCjy��5�\���`���[?�y��7^�R�V��X����G?q�ud�$&n���(�[�-FVʸՀ[6�oe�j
�ى������P���[��-l������z��8�uzJ�[�w�-N�A��?�-��]F�;���c��\�9�6�f"�5���"���-Fq��+�Yl�A�Ep��:"�0��#�}2E����h����ha#�]���o�L/LUO���n.�n�J�o�HS�D��p�p��o�A:/� �%����� �G@%\�V�/�����ג�^
1���P���'	F>�7C���O�ߺ*���N���J¡�04�*8j�RE!I�;�b��A��N���,������C
��,��H�"]���f�e�PӍ+|�X��/V��֚ȋ[++���rҋQ��k���bdˋ_�\���n$c��6�}�ֽ'*�jfR�L�r���tl��FZ�{��u�"W|���oQ=��2����<!LM��7��i���nf-�rnU"�UU�U��W��:>����?p�B�PM󙀍x�`K��8.���>��|K4����-���-�;r�G]���S�B)���zy���9�����(;<"�Q�B�#�v�X�o�AV[m{����E��~��>�[6��N��}I�ŭ��
�Zo5˖&��� �>$S�/疬=�VJ#N�l¸��������	�4�jnEVn]6�?9�'���0�w�P�Iy�$D)�hR���BcǖV�,�4��Ȧ��o˟Bl�� Չ�vVh3~����eM�^o�2�QЪ�/�Lb�;]`�]��"�+�XAB�|.�z��-������\:i��'��\�-&��E�-�56�zj�e!�2�H�j4�T%v��z�ߺ��S���,��-��C�l�UE�%�Uj�Qf��d����ԓ(�f'�/��rp�����/ذ�d-Md�O;�[��í�>�z⬣��t5�߲�1��<=V���ظHS�G8�=�o��Ї��i�뽍Zf�7�-��5�i�@��C���v���w�{kf����;w�LL��~6�p+���We�-
ԢŌ�v���5y�<�V�k_��;K����9��#�S"W�l�t[2ne�[���D��
�jk�[��fb�(��d�]m\*h��v�� �4�E
�OdԒ_�k�����ٍ�0����ˍŅ٢�߱Ipà�[	���)"��Aن�-[	�}ɭ�s+��[)q�����4�\��-f�(�2n-�[���zz�a��ǫv���+������{��j��+5��{�!�/}��?UW���c�����oe㓶xY<ƷwlA-.he�	�Z�ߡi�[*�^S��L�v�D��NEZ�,�����j+������ҍ\f)�i\r�I�
�`A��.��H������q+/by�R�LI�rl�,���D��I�٤e��$t&id�)�䢑���k���`��y��+WK����o��gW�����ݘ��Q��QW�]�{*<ūb�Zoq���+
B\8��xϛx������$�ƭ���^�@����ھ�;��	w�-B�ܫ�HP�[B��`6C$���Pb�8��ĭ�p��P�P0�ts�J�Tw�����J�e���EM�5U6i�n6�J�t�m��ä����ӵ�cv��6�O��{��鵁�l7L�݋��os�G���T݉l/ҫX���|V�G�Z'7�	��MM�Z�54kX�=��y��ez��
��]�n,�[CC�ԗ�K��~qK�:��V�Jvj*
��|�KmܢĨ��,n�T�@��qK�o(3Y�К����<f*�)v�z(����j�3.M��$��wm,����J.J�S鴱�n�j��[k�5zE�L["�\�F��ay���)>�[������W"�����'�%�-��+/�"�[��[��� ���V'B�kqж�"x�+r�Jp}[=����"N���bK>��O��)vh߾����ϯ���ӌ��-Ʊ��URY�К=�y�@��TN�r��[D �ЊA�S<�8g/h+��-g$�i�G8U�����FH�`��Puo�@��_��_ ���M�0["����d�%��V�֘J���uU�M�]V���u�n\[G�r2�ع�l����!*e��$g��芩�R�4����[+��L�M3p
Jj�c:����^���O�1<�<�C���!,�����xTӝ:�)�!N�R��%R�xd}��s5��~�}r+�ŕ]��"3G�ܚѨv�qp��w;6�:r���\��p�����2��44!�|N��RzS�W�ǖ�T��M����(E�������<94��ŒL�X�l9��iN�:%n��R+&��(��IГ|P��a�Vr8������7�k������Wf�g#��?����"���Ҳ�,#�vR�6���.��(l��]ۂ�Qy�u[��tű5�w��ܳ��Lr�uK9�'�2��	'��[3�[���T!�㮳;�0ͫ�2I���p˒biH,�������<n��4U�ᖷ�ϸ�x����ֿ�Xf��!�ʄ���/ŭ�q��O�
�I�,+iYעt<��;�q�;_��}��q3e���f��Mُ�ђ2�Ԇ���WEtn��H�SL�}����B>��H{��Mx���\��-����Y�"w�$���
点
��[_�-6r�n=��-�u��z�F���V���j��H-D��Y���E���w�
��p-�v�֧�=?�>�}���[�C�<�#���^�8��9u"Wo��d	–ms����Y�o��Q}k�c�1JH�z������q�,�����/���[
�[����|fC$�LG��r�w��	=D�'��P�,�՜(n��`�-��Uc=�ئ�"���ŭQ�Bؔ��G�MJM���8祀�[>��蹖'��;�A����8�&��_�4��F�����h��
��1�.�]$g'Jv
������w3=8����l49���b��B��F	]b�f^PF^�0��膂�N�L�[k7�Sm=�0#���TOO(�˅�?K�Kwm:��d��ŭJ=q�h�� �M݁�L�,�[���r��;��z"�ԡ�_��r�qk��6�I�+�op̜=4
��"F8�=�%u>!��k'G��m^�x��|�[�ݞX��O���<�H(��=�������/��HުyH�>Fs%k�zD^ޫ$"{�[���eoy
��n͊�2g�ǭ�ޘ���-��:Bz�)�{�@ճ��<�}�>�!-vT[-��-�f�����	,�UyX7�Ga�N}��E���-鷶�܂���@�2gR�{%E ڧ�2�q���$��&�x�uӸ%����_G�ʼn�����~ �֌����Y�5+x_���҂Z%��#��5'�r	:������&��֓�/l��ӗh&ni�u���c/jxW��{#��ۓԞ����
�S�xF���Є�N�Nq�&;D}p˰������6�l6�ZdM��3�S$��+�O�ܜ�� �L��`e�Q�SAxqbq���$b����d�!QD��{{������ô��d�5�Hy��؂Q$�ŭ�ӌ.��[��.���0���pJ#
��N��5u�D_l!���o���;�b�謪������g��l���"����[n͢B",#|���*}���D�[�Ȟm,���^���XAj�XG28���
h
�qt�����8Q'G����E�Y�r���%�o�3e>?�](t?n1�Kj�B~k���t�q�s�oi�����Y\�����r���̩0���S̓E]q�R��pwu���aKfwԣ�ô�篠�ev6cؗ>�v�E�4���r4�E#jF�Q�i�=�9����A�lX ��9�3�G�c���_�o½J���[�W4���qF�|mq���0n}�fj6�+��Hܲ���(α�u�ud��ʭ{��rN����~50�l�V�W]�j��	�z{�V�C���|��4��D�"Nm:644$��J(�;���DDN��pzBB�܂u�����)#�F�s�����\;>B�ݱ(XF���0f��]�|�F?k�.^��>���y��E�F@��Kne_Wv�Āzp�@�@�>������!b�64�ԓ��u�����X��2iCٰ�L!n��H	PL.Ē*.P3�tP��:�n�[��_�b��a��	�f���K%m�;q���o}�^�u��CL���ă+$�I{��ڰy�-,x5����p+	�:bH�=�Ҹ��Z��)���R*�g�X�N=v(R4�؃�W��+�~,R]E�7/�#���1��D�-*����ʑ���Y<�0v}���H�:F�l�����m�ޯ'>@�����O�
Y6r��ȭ�
�9E��@y(�f�ZQ^r�y�`�~(����}�՚�hs��rt+�MNFZ���˶xc��J@��B��.���"KA��s�ߦE��:e�W]إK�ah0kM��n�/��u@���ȷ�A��,�����+UlU^�+4)/��䨉Yj���CWy9G�G�F���A(�Rף�r���ӭ$�R!"���jK7�A�F��֜�2 RZH�W��h�K8�K=��T(g?>�'�i�$�S��nO����[��̗&JX���\���.ܹS����.47_����k\�-��8������sp+�?t"AvhLS�lz�D�o��ü�Jɘ݈:�:�d� S!SNOm�WA�4���
���������U�z��L.�����q��)��2,���X����FS`K�/�Cy�,����DR"��89H$��a�������[�O���[�e�eJ]�y�?|�̏U�5�h���w�e�~ʥ�K&H3�D�Tk�_��;Y\mfCqө�Kn���,�Sp�Y����S�A=?���E��RTw�l��#��HUN��>&^��"��y{ͫUb��m���W�{��o��8g�u���$Ȕy3 �U�ke>mJ���
rDܳ�r��ˆe�r�G�������Q_�
���69�}e���|{�d�)�ŭ*Eo�72s1���n��Jq���(QC�K���Wp}\�DȚ
�Eor�`�'�|yk����>�C1���n$q+����oNeŐ��(�����V�ʼn��a��H�7��T�T�*�^�-���l�/�ذ0�=�'���p�Bp=G��������H"��I��`�r�	�%%,�9T�5�J0�)ڇ�uc�r�
N}àn�E�U�����@k�x�v��΅�/���k��67���&�޲�u5=��'�B+�!�Se�z}��5+�z�w�%3�d�Q����WUR]�f<�
X�����ӂ[,���BJ��Ò<�zlE��*<���&����B��Oq':�4A��%�� 	��Y������@���ٕ%uJ0γ�v����z��A|�|���-�7X�@P���oU�������9�,:@�ꧧ{�Vvsi.�Y�ܙ��
�,h��/">t�–��(.~�|4<�0�#���2�Y�˭������`h΃rh���[B��ĭҫ7s�Ѩ�xθE����]s�Bpe�X3��[��nWPi{��OcT}w+E��R1k�˵�޲@�*Ō��lT[��\����]4
6@���:+gA��J��wM�s,����[�OS=1�tZ.��Rp�t�Y �8LR3$��[ia�l�ꎸeT
=�G�y��������1uǺP��_-�h��˒6�m...-5^nl�[�^r����^��U�g�"N,7n�PR$�@��2��a���T�ѣ��N����}\�{`O��cc�`weǥ	PE��-&�$�����ჭr�Z�ņ���co��7�0v����^;h��r�$�W��RW�xz4+8�`�2^:����Ax��yHy�%��k�}�@$@s㆒�դ1	hy�"�!�`5�U�{�	k��[ir�\?��6؁�^�(��[)�a�6^	+��mny�����a��	�mWoBdxe�I�^jd�$BW�����#ʐB�u!\�ϗ_��ʽ��0*T�$���I����:� j��nƭ���0%���Ϸv�;j
ɚ�pkMr��r�Hk��H��V���l�-�������A]
��b>��wE��۝��a�*��ގr������1�Ύ�3��U% �w��|��b�x��U�xaꞪ�i����6�!��{�;+���h�_yN�|�n�h�lv��;V�|M��aJ��~^�*e=$��ߢ��Q��aqGA�&�ŕM�d
�e�|T*Q�F2V��:�A!a�;WOt���|i5w\~k��"	*�#�0�xEI�q8�ʙʵ����^zwp���iqk�鹡Q��z��Z��-eù�ȦiDS�P����-҂�,�l8M555e��繙�����2o�<F���!+����67�j�4�����Z�󷰥�ˍKw^���'��r��#}��h��77x�Nz�άO;����]�8�M�2�X��V޳D��
8Ȗ���+D�a�k��ZW/�I#�0�579�`�ib���p���x�|����-�[�p�43N��/�$��9����?u|hq	'@�}�5���D~�o�w��#���S�տ«���r��w;��(��d��I^m
O\��v�j'��{��G�G@�=<�Z��Fw>ٝ$,�$�|��m���d"V���6��go�E9������2.���#\�ʙ'�W�'Y�N|1�o�e�=<f�P:@�M+ف:���b�*�[ž����/|9��)��=T5Bf$�w��R�s��~��q��`��\��C�l���5�e&z�q��R�e����3!_2�Sz�p0��l]�-�,���Z���:e������Ҏ~K�i��ɮ�A�w��V�U��7���Th;��/��KT�i���%ny������J���� ۅ��ń��鹶t�C#_���[L�:wS�Z����IH�R$3����i�:Ψ{4(r+<�$Z��Yٰb�M�!������H�~����a��b��������M-ƭ�`K�m��7�q�qn}����9�������0D�&�'��jB`�<x�w�3����I���
�����F��xX���H'�Ÿ��Y�=?�>K�Î�&�
�vJ�5f+`;���ϸu�~�����	[-
�Ǐ�w�ĉs
K��1�Ui��ʾA���L��z~kdz��U��[��w�����`M��vQ��ӄ���H	�
��s��vKٝdK���g.�C��\��D\u�@0������^+A�#qN�$!�4�bz����E0r����}q(q.�u�`����p���x>k���m`Zk��:�Owp������u��[݉���MO�1���FX�HӯhPm�2-�}{Kɟ�@���J�1c�:լ���*�|�� (V��U�Æ�KY>v����ĭJ�!1�!���@�u���5�fYT�%�ߡȭE'C6a:����v�榒���0�!r5�7�F̄/�ւmj��<2l�����p��8��%���1�O����azD�sF/Oh�D��D�e&������J�y��|��k���-���3����j���Kg�T�#����CO>|��1�U���;w'�;��?��e.���Ė;?�t�[�3�<B�|9x�f�=>���S���3�q��-���ց�S�Y���|0�`p���kpk
	��Ҧ(!�e���Q}��a����.@h����}�s��'G�ք�5t|}������s(�sA���Dz?�[�?�[D�
�L�P���_^�{�.�c�aj�OJ���a��U ��^~˙{���G;�\
�!�C�E�DU�j!!@�PT�ЁZ�b82T������y��Z<����9r��[-/\��g3����IẀ\7�?�L-�\����)UB���1w���s؉�7f�{bIfv^.��ѣU�Ύ~�:Bͭ���6o�<Zz_N�L�nt�Np˥���L���[&���χ�l���kJ���z��b9��o	�e��P��h�B�~�E��K�[�𦊻�[D��z�6�6ə�vI�
`]��l�W�-��D.��p�xy�Y�'K�YK��-/���!-�z����JH{�#dU0��GN&�pK�[hej�I���h�9SWl�o����պ#?4]�6fO	j�*�8�bZ�t9�:+����I��*�����|��9����:�r�v�'o�^��|̸uG���[�V�D�[.��ǭ`�3/-߮ ���@3�RMx��SNc�m	�X��>��z[��3��"�:�b=����ת��ԀfY�M2!j�|[fXm����ۖ��Vi��D62�.�s��T浺���CC���#�}�x�/�_.n��u�ߘ��>?��C�1�@!��X�m��<�R��`f���TP�`�ă�z�RNK�W8F�2�ꯈ>d����A6������N |�k/
����w-��Dx�#:,=Ӣ��
�G����g���CJ>%,�2�U�2oXs�%�b���yеvs���������x���k�A��BAD����Z�|7�_e�8£��V����O��ʫRiɄ��X(��AU.H�ͭ�j4x �j�h���̄-!��b�s��E-����>���n���* 
G�;��

F��[hd49��eә��K?�pD�S���%ͅ�XF�e)��=�uo{
Yo$7�04��X������&�Tz(s��[|%3�r�|S�B��2�Dza�-��|Oݙ�[mG�J���)ī$��Z�M�v�����r����E��
��#����'���[]��-9W�͵�L�u��k^������D��@�ʒ2"���*�K�:b��;��O������Qښ���qs՘�b��	�s�=(f0�h���x�mm�j�D�W�S���	�@�3�{�Q?u=�s}��D��oK�҄
�\ޗ�.d�n�^G�F^�G(��徿w�[�Ӽӯ��w�b\A�TRvOȔ�{X�V�z�$
W�c27e�[3m����/��0�{��,z��3�B����O���yc��d�u<���u?Lv�����B���65���$��(���֣l��� �3HVm�Q�GFE�{����
u��ٽ�5��W��š�LJ��wzt�a=}�ĉ8\d�M' ����f;H2E.�@�q�$��g]�W����֡x4�m��R��|��h�h�A��"�'V �z+�$|�E��#౩^�dq��_�ѯ����'�e[fA~��;T~��X�����E�%'����ny-�1���zt��?Ww��.�U��[�ϓ˫�����i�-��-P��x7r��X�*w�`1n� I71��$\��*�҈�31֋��#O3�����%O��8��؅��ez����h�cy��ǟ���II���;w��zkߪV;V���'EK�"a_��T�㖪�W�-��?���e�cQ�F�2m�G��Vg	�}t�>���5�Z���
a.��3��E[�.�
c}��%�$J%�R�muu��`����v:��^��q��֖ċ�����H%1ּM��<yU�
�t�m�q�[���k�3L��!�/���4ת��u�m�pv�(N|�^]����̼�/��`��>Bڅ�˽�o����l%{���pty9��E�����C�$~��"Ӟ��m�lZ2GC�}�>�ճN�m��"�HE%Ӎ�s�ͩ�͡s'�=0�����o?g"<�~�b��O�������v�oI�T�ϖT��$��I��&�&1n��p�g�#9������B�e;����*\<c�T�tz&j�f�j�M?e�-]��}��"(�߂G�::���/�A.�?u�-��ˣ�x����8��&��Ԑ��+� ����J�:�|�_m������A"�{q����7���|�!r��'�3�H;��@��܀��@K-���ؑA�9�t��ej�6Ŝ�������ƥ�*�ނIO4�9ܒ���{��dk�ܭ;�^]��sn���J�9n��NN u��eK_����?�ӆ����x+��|�-Ч�I�–�Ӻ�+3|0����:�R�ő�Zf��Կ
�,?격z�ȩa�k��\*��
���i.�,␐?��Y�X�����7�~㍷ߞ\�W[C��q�o}s=��S6��J���(R�^)̺�F9�ݳ8M��"�aD�D�fVb�~�<mr8�g%<�	�#C-/GR]E�+�[]U]
Gw�%�0�H@0,2����h�c�"�B�.����TW"�V�v%E�^�%����5�J��R7@�#��,Ic�
A0��yz3�"��L��{TJ����,zck�I9/�����>F"��~�G���mn��E"�^.�x
���p��_i��7����r9�{��A8���~酣%G����1+*��;@%"�H
Y��mՖ|d��x,�q
�-=R�@��s_�nʹU�#�Bt,��;ĭ�Pn��$��&��xoo0��xK�D��a�c:�E��p�QA&cl&N���N���/��o�o��8S�v��Ue�^}f �#�)���-G�2gGB��Ң9h��|�+�ig�n=u��2\�p�B˱��[w.������v�Xی.�K�j�[�ȷ>��G����j�wT��q��؆���8$��6��uw{@�ΰ�0f]K�����0bI����p�ϧ��Xd��1�P@ր$S9�#�b�#�6�<3p�.���A�,u�E��V��_ꟻ19���։�5���[~�q������_�/�]�0fÕ�����)�E�r�^7~��d��g��Չ%�p����
Y�P�m��>[
�zI�'B�AB?��k�I�b���� Jm+����S*�u(^��ea��Kj�\��V6�]ut�y�����a���^q�䍐k�l=bS'�M�K�B>�|.==YD8���z�9N�Xw���u���am�f �z3�	os�U�D��<E3~"Tcer�d7�~O��@�l�ű��*�{�VT��l��n�y"�tb�����p�2��
J��@�T�-"�oO���o�8=�1`{W�WV]
��&C��'�V�y��Z�V���g&�(�zh��߲?�m`��#�Ϧ�m3�y��2;_�j[ϙ�WH-�7nL­mzۋ�&F���2����qA��5��/��/��G뤡�t1n�[�`�DZp�p��o9n��o�[��j�޶)���vd�–��&~��	@Iv��~�@Rl�6�G�|h7b�l�]��E�]%�Fϳ�-
� TEQ�����hb0 ?�8's�⎮��\#�z��hNW
$X�47�����o�x�0s�G	�(�����6�|q/�����оC]u�@��^�I�ٙ�+<L�Y��x2DoP>�K�Tq֏id�+4V乊�V�(�����3�(\�G��D,_.o��[q��;�L}D6�`�����Y����j�R䖆p����;y/���
�|�Z�U��_�W�<E톙<����B�
-

W���{p�]���mݖ��i�YO!ŋ#��@��������h�ZJg3>q��<��׆��2�<�򺔼0Q,����N�zN(t"r���jg$�bn�&�h\i�t^���z���}D��[x"���4nݓ�UmM��}���j�`�7�����(e5�D��p��'R��jQ~��!I�{8�Z�L��^~�T-�t]Ϗ"ꗿ��د�E����ؙ�����%�5~�>ӛ�\��'���p�>�>\��	�U���m��ɏ�}�q�ı��W�'^�[�1�N�qb��m>ƭ��	�`���BSyv�[�z6
J�$
�9xX�� lMr��1�qq�{R�T�y6ϙ�Q��bҼ���0
�6ԎuBQ��mL_n��yb���t_�����t�9s�2#lD<���?���o�/��p;Mi����ҫ�W�$�5nK��ƭ�(�3�S�v@Ƽ��o|����{F�X�V��f|��5!����pMw�|�Vk��&?~����H���x���G�F���/P��_gI�H��[�v[`�������?}���^�*S�>,��O/�F!�k�x�Hf�,�m3�Gb���u�k�]�c0o�4ߛ##��2��ꙙɅ���0#4P��o�E^~ǂ��3����bǸ�ծǾq���I�~&
1�"\��m���P�P����z�?�O�"���6� �LEM��	� ��Fש@��_̢Y��jm$��	=�F(�r%��o
��S��}�v;n)>�JU1
�s�7���͋K�$�:B�x��cu`ʉh��3a��a��� 2O��L����@��pqNX"�šs>>pb���E
`�-�똮/���-'ڀ��Jqmv�Tqb6��$�֏�2WIE�݂[1\.�^�.Rs�NЦ��E��,;�ߵ=y��G�q���p|FN�P�e<Q���A�+�''��U�M����Ŭ�Uf����Mǒd�ի��Fb��s�C��5�u
n����%��y�><��úJ��d�՗U������{W��C9`n�r0U_w���-�M<Zdӡ�ٽ�;;�o۩-/�}k�oy<��G7�q����$��IE���&�0V�ߤ_��2M��A�"^Z^m8^ c������o�}����/�*��)G�Ojcx�_:~������\GD�7~��vY�%jTo�fX�p�z|<�9�qIW�Rd�&�5ӓ
6�	���qKdd$�1�X--��D7����U���Ӗ�g���\�+)��A�01�z�%�m��'�ӏ���i����-�:K�`�E��B�^w���_F��� ��2O^%u��^�D��v>��6eADz;��(R�[+j�d���t������iW��@�M�u���Ϟ�&/���r��)[�լu�֙iDNx��m��lc�
➁۷Ox�����"2���+�TZD��?���7߹�u�bsӅ� k�q��ҙ��ev͍��V����4���#�{RI��~3p-��@�c�0b�$\a7��CWnj[���K�:��Pcֆ�H�j�sA��Yf@
H�-��\EZ��a���RU�ITD\���4(i|�����������u�t���pV��<���v�~P�o^��X�d:���]MP����K^3����M��/�&l��]�
&�z}vA�(��s�y�p����,���g�9�t����0ا�N&���/��k�O3y��.�-{��5�FX)�-�U_���Z�R��<9�ʼn�37d���|�šsk�Z���0
htM���0�,B�s�`o6ޭD�A\�\4$�J�f��
Pw����-N(��l�W�p�v���1���'����~�	_�,��
�0�+օ��d��9�*������ͮ�M�㪓�U�]��
��
����z�*)�"�M���ւR!H���'*������jN�UA��9A}��r��Uk�Xa��y:F�;���[gfh(>w{m��*<5q�G/�*��լu��������n��ˑv�z=.�O���{o�.�̭
5�a��o��|�M�|Z<n�g�e��8l鸛[<K�2���쿪93 n]���S&X�0����M��w��_h�(q�TdW@�O�8ߠ5�u^�iJ@g2	�r� [l�H�8xq�nn��M'� Agsv%M�τ��p{R�79߰1���o�'n�D�gԖ�6ЛHqǾ4;��O���_�Ty�{�D�L
��	��gׯ_ǝ��2/�ӝ�Č����󫏞�-��V��-�~n���?�l�<�m:��^\f"�j[2��̸u^���6�bνA����2�lc�O^9q{�
�Α�<>�6y�T�Yi;����l��
�1_Ş����%N��5l�5׀�Qaz{W>M��g��P�N���[�����|�E�LԌ�$�v�]�w�h��Ի-n}�w����:�����|n#OR���4֡������K
�q�6D�?��M�z�[F.k�,�;�!Be���Nq��$���h"A��&H�!�_�C.��j����l��~م�_Ъ�Uc����D�yNZ�{�[��(����<.q����B6�p�؉�tbm����m�iF��S��|�R#�M�);���x�'H!��^}u��K���&�o�]���7qiRUQ.�S�d����K�K�Jo����*��]K%�e%�RC��Y�Iv3��Y~_�0�Jm��&����[��z;��,niWL l�
gH? ���̯��r���z�-�I4���H��4z����R�-4l�c���?��V��Cf�Hf��;��������~�
�%+RV�B�S���=MX�����d�ђu�l�1�y0��n��Օh�����|���D���r2��/l%�򮐰��-�</����!�-V�sK�h�{�%�--�MO�$� i��>w|��������������ٕ�j� ?�?C�rI�Y+Q�ZC`���x��YޚǫԽ���.q<�X�tY��f�Wɚ7k�,�سwf����@�p��j�/�r��dߓ���5n:-}��-�P�&bYz��l�1]�d �[Oe��G,�3���
�������zHmږ�ō�5��:�XEPۃ�.j���`���9qI1��h�]�ؔM�pՊr���{#���ce��ځ��ȫ�j��jf�~�^�S>Yq�Q���g�C/����P�&S��Z������4] M9I��s�=��|���S�5���פ�`쪽��n5ג�R��.]����l���~/�uY�J+V��+l�ek(��%��ݱd��b��5ȇ�-S�g�>���kF0lL��Fy��?�BMh�����xC&8��e=Wb��OY�`Yv0�bZjiy5[�\���k*��/n�b��?���ߪ���?�I!,
�,�5�K�&ʼn�gʮ�\`�KM������v��9�OQ��@��X��y��JS�A#�W�4�:�;�5���d��[���#I͛g�b���-'�Ɖ;dF}]�R�/�W�ӏ���8x4���P���t<f7.��JO�;aQ��r(�sh	&|n�x�Q?�(�q��QX)�e2Ku%�_YBʌQ�R�CN���7�����1�bZe�_H��a,g[q,�v�r*Y��f��e����"�Hk�O~�{N�{��֡���Ԍ������Q��Z
g�Ů���c��q��?��񐩵t�J?�G���m�695�¹�?���8Q-��o�cTc���aI�Ҋ	I��y���������
��0�_�RrP�̚3�I�˿tn]�^?5P��u�M� N�~����jz���'�#�����
���S��Q����>p��g?~����x�2%ܢ�n5�>�j��-����PGxZ���";
YU"|U�c�e�}�nmpY%�}��5��˭���}��J�kO��ř���x]��N>uL�F�1>��m�k/����3��#�XnΨRxS�[�(�}>�G%p�Q�G�9/�_E�����rM!\��\�1�����o�/�9T;��iU�[���^9����|���d3������pnJ��~P�gY6+��[�
���ʰcc@���V[]G<�Ll䣅| �G
��#N�&|~†x�9�p�Z�`��,����B�/�����6Ry{�;�r�+��d^-��GWWG�|�E�p�M*�߀D�EKJȸݞ�L8n��܋3	גW�o�7�bWw�9iW@��jT昑.�m9M�uQ��+n�vɼ�p3�-�%��[�T�4��e	�}W^Wv��ցb��GW��-.OΜ�0W�c�o�2R�}��)Ku�>R��Y��2�b�|��W�����o��-|��ƥ��y
S���>œfj�ިs����ҝ���clc�^u,B�\Ɩk��w
N���9��K�'�����$�ᓓ���V�׹#H��KG��.����N���<�i7�9�܍gO�M�x�c���mt[�6j�B�ʼn&�2�y�w.�hu�֫Yr�s���t�ب��Ft˱̧q5 ��a�5c�����꽃P�3|{�2q�.=u�����6Mx&�l��S�J�y1˰}�ǸAߠʉ�Ar�	��ɕ�<�B�WK���($��#�D��À[j�>����������TO\��+!su���Z����]�ի��?Z%v�A��vNa����&`�rI̕�&�"a[	�A�<W-�\�ks�s{�CU�d�ʫ��q�Y)Q��H-���
�)�+�
�˿�ko`���d�V�	揺�{��`�/3�_����
!��B����nHW6�lj�(��[0�y��-)"r�"��4i��2b�Y4JԪ`�*e�t
B��2��´��%��S�e�������ke�ק���ı�JU�\\���{|���+�M���lo�6F����2C��Ň!!�o�
'n�-N��-���kDݫ���[�MI:�П�
���"RԎ�5\�C�y��L�4ڊ��W�.oo��>D�OՄ��V��V�i�p�3�ٙ��s�-�[����~o3��Rf�92�p��_y�GO�;9t��`m� v����s=����>y{�o8���[���	��-�o����]�oI1���՟n�Ԗ��TF���"�����������T�u��Y���Mr��k0/��Jk��$�T��Z��b��Yʉ�-ͭ�>9qK��|�B�8d�p�p��iJ���K�b��#�CG]�y�Z��r�\\��	��K�0�O�!���H����o��`��{��a$[yo��p�P�-±+�Y/����Bֈ�r�7Zz�Y
�S�\�%�@K�Rn�o]Ť���ݘN�"�!E�XSshW���.�@��bɊgsZ�%�?�n�61k�I���[p�q�{�<��YuG����@�3<D̢<�L9�j��T9]�ؽu��5R�bӎ�堥����5�?7�	�;��T�JBh�t�~���ZY��;���&A�˼���`��6ص�R%gS���_�…�?���E}nu@nY[���x|��5P�{�r�I��*D�	��`�(F���,M���GT��wj7iǫ��%�O��j��lZ����c���7�e�K�VI�2���U� �(𳟙�`s�榖.���Sk0�����pKs�^9w�������4/�iҗ�	ɢ��?���1w��օ�i&DlF��-�/巚�&�[d�FҨ*��ݯ(B�L�b3�Fq��N���]�\�[Wh�M��,&'俸w��c�U-�ݹWr�;,�kg����|�9�l�[�̸	F�zB�&==�JВZ�ʹW_�E�2Pқ��v�;
�M�����6ģ��g����-d��}����}���.鼕G$����Asz��N[57�"l]�Qg��D�r�"�i\�Y��@Kg�F�"{��l$�GÁ`!�χ}�B<<��/����<#P[�����s���D��o����+�%��[{:��&����3i�7��B�37�_ݛ������)�u��!`ӭ��*V�F�����&������$�'��*�T�@��‘M��s�ԘA��%���C
[|��f�j_��+�W�����7��N\�a����!Ņ)L�F�w�i�
Fn����&�M';��(L�o�̦�YgA��Zݫ��Wls�-��˓z������|bs1+^5��e:[�!PGw��	Jq��Ewk\[���^����oͱ��*���ӛ�8��<�Q�NR���P\��zs��cCǏ�<��?;wݭ �N	��s�^�k����EZ���v��E���ɵ'��J�G�7�o&	K��jt�Ʋ��kV��i/r�kcЊ�	U�V�
��Ly�wYO�������ëe��xĭ��|���,��&�x�p3f�����zv8��	
��En���b��ۡ�aBڌ5�<BԚ� ����k���Ec���'�Ê�і*�����T,+
X�3�-���v,���n�v�v˩�"D�
`�bt�-t+*GL����s�+���#���D�V>_3޷�]�f!�r|c9�q�����20��X�����A�A6E��.\1�43�Qy�*����nP�mO�Y
]F�h�O��y�J3<`����
�LN��gW�'y�KͶh!(�h��o�.��`kg;?��j��9�
�
�}O�
?�6�"��E�	X�sd":�.*!�Ąڕ������Qw�V�b��X��#ޘ�˳���8��S�)�e��C�'�R��BT��*��/�Y9�d��Ax�&JW��Z�Wk������n�:��;Ob�z�!F���L�Xj�0��&���r��j����b��ɓ����bC}��~�ɧ��g��T��2���qy����y��ֱ;ov]|n��6�y.�ւƾ�,��^7����b���� �A��[U���NN>��b�bB�-��Kշ�3� ��)������1饷ĭ<�i0�I�[�Ww��ϋ[���21��Z��	�T�}z�X�	'�)�V�A���n=N�>ߪ��q�+iL��X6[�aG�N���{��6�Ap�Ϧ̿�ڑڶ����1�̈́Uv#�R	����	]]��V��$!Z�d$���Q���h�!&��R'���M�Pn����Bb�m�Cs�ږ%��!1�Öܻ&e$ڼl4R�!���̦ud�����wOI�����(0�8���)�r��.�A
��ǯ�3����Z�&;;n�y�*��F��I�yF�I0Ո³G�����}g�C>���m��<-\^s{o�#�������������d�OaU�T
�tÝ��>}�?��x�j��)J�-#��-�6��Җ�Z�{�5�
�7��+�G̰偫�
.�USת��~���d_mp���O��,y��G�X�E��e�-�[�֛k�+B�����n������w?����!
[�JvzP�S�[��w5C.�fKӅ�$;�����)��`;�	G�[T��N5��w��n��
�Op�,��uU�n+,��}�VX�,���-�W�e&�p�Gq+�C�ߧ�rA�A�3	�s^UQ{���U�,8f\�ɷ�~MgB�u,���Kkgʽ�x(�q�j�v���b�����^q�Dw,��,�F�{״�c��z���g?q+e���Z�"�Yބh�*i�V�-�*���0	�Fz������,�xM���Um�m��FV�^�:u��~�i�0�]�{�O�����׻CάN���Q�1��Y���}�܀�A��C�ٞ�J_)5H	�
<nab�Ϛ����^�Xzq6{5jȄ����.&n)�ݣ�Un����yYno�>{�
>�����h����L���=G+|c~tP9
��A��w�֮��ۓӤ�V��j��}�<��Vdֿ}�;�?|ʱw.��s��?���]�|���/w-f���h
0ۡ
l	\\��-cWrEp�Jqu9RS�íW���<1u�qk&��f(��G��7O]���G���5�����:�y�@64?}ިu~n��'����'�<{��L��c��6/#t�[�Z���4]`�����@�#�p�Gx\q�BRL�C�\���H�u�
w[��J�����-�i��Y$��-�_*gl��S��O��F��)'R�,�'�gp*En-��D�����D`%�CQv�ڋ�x��W��8�=a�DN+pk		;SBQVy����[�����D�b�+^�k�Ar-bY;��YjܖT�yu,j*I�AH[�M3��|�*t�#�Ǽ�o�b����8nA��K9I|��o�L/�����v�*�Z?���iQ��Æ-�5�x�	.���
�Z^�����ׂk�L�Y4]~T�2lq+a��5�`���xV����3�����E��PI��_�z�YE+bk�[���]��U���pY���[�d���Яt��gϞ�y �C8X~�:�7��_��_���ղ���ש9��:?30qQM�َLb�����O���?��]�
�����'�SS+��)d�(����.�4-�O��6g���+�\����������V�ߪc,�q�W��pw��΋[���҄����a�±��'��f��qqY�z텦��W%ٚ[;|X��瞃[&��T-�;�"�&�Ŧ�;/t��O�[Tr�2��S�P;�)]~���r�-�g�?�)�����>��w+���RLh�!~�K�SX��	+�LD\��D�0ӝF}�XU
����T6���[ƭ23�[�E�"���0U�r����O�̥�ߨ��h���8�_�O|\���<�]ޕ�<-%�=��{�JC!'��=>��K�n��f�����{�����?����]��T-�f)��:�巌[���d'�f���B=���y�{����j�u<�՝/���j=��[&c��=ͼ�w�/N�l��-
'r��m���B��of"���q��oS��/7�<'���&������6��xO_�^��T����ĉP�[�w��2���V܂XG)�"�@��/�ү}w�=%���A��Q<�)�}��_+{��;���@++�2����鉑55+!��
>�o��^+q��F&��Ժ����4����f*�yydsT]���o�|�rW�HS:�0=7s�r*L�2�Z2Ö�':p1���D������D���ѱn>�jѼ�gO����͋!Ô����0-؍�7B�x���o�ؖAx�Z�ڦ���u�͋�9�;i���ڊ�01�&%�ɩ�����\�B��o��������Ե=�ʷk�5q���e)����
���#���\��A�;ne����3���`$�|��A�Ad��g&�PWui���_E�ߥ7�蜰�D���g��ѕ���/��[F�Ǣ�Xt��VOt�b6��N;?����mܵ�������q8ip���?����֏�,�E����Z�T����[��'	-��R�p�f5Q����+t�݅�xb�5�*D7�����l�i�4)���(MF�:j}rxa���ʤaQ�k݉IN�`�S(�y6z��2bE?�8V$��UQy��X��'�=g`��ҽ�W���)m�|��U^�(��[����pˠ�`�;�v�U��_O�)�-�Wp"�+�W���_��L����eV�,�m��yZʞ�[��C%�~͡�c#��y�k������2���B�9��jY�ዸ%d��sr��e���0�qK�;1/mD*;rK;���M.,Ѓu~F�	�Fm�C6��KǏ�Q�Z:5��ɛ�C�]?Ȃ����_�d6ާ�~���&�:{� ��m�V��8^��e'jHDם.��­N,��r $T�Tw�[��qbޘj:�I��Ԡ^b�A����*:l�O��2X��g�u*t�+�#n�J�S�zI#�	%�[�r�"n)����o��R&e��*���̿�F����
f�	S��j�؎��qkAraq�7���1�o}�^7¶�0�`���[,� �s�p%���q�}pe�o�����-�	�S���VX�q���V4�v�[*f��|��x8�O$H[���M��2��j���x�^��mz�R�Ey-:�7�.w��99�	a6�m�R�-�E�M㦋��&�gxC_��D�2�9m�2h)�E��]-6U)ʸ/fp���y��,��s��JL
̋+'��Ԝ3�-�^.�s�5���~��!엾Ğ�9�ĬB�@>��Ų�p"T^�g��,�P�>�!Q���e�w��t��h�lN,�\����y��/]F�e�w2Y�uҷ�H�5�[Ep���VX�Ʒ�[��Q����n�:S����>�34��'נS�����4�h(b�[(�.=�rӐyZ���N�-O���!��B�����?n�3�B-w��k��[JoY��z�c�55��v��Ĥ>ԤJ�������r>��A����xI�����WJJU',��𨜂�7f2�냫� �ZJ6ܒ(��� 
P�ؕ�D�W���s�8���c�W�[^S�;��<��J�����E��p��w����x�M�B��HO$U�b����J�Sӣ�&�Í�F*I��,�Ջ�'����[�J�+�S�� �~��s9�e�������Y��E(N�H���`s*�i�w��u
��a�#�Jx�ޘYM1���[��M����M}]���=G��~�h̭>J�D/��g~�Ai��J'k=��ı��+zE4��O	U�X��W��cFIEXy����r)�����{�|�x��t���W$��Y8Z��	1�>�;��G����b��3ג��E]#��.=�;���Υ������
l1n����q�3n����[_�������[2���@�Wv��k��F��Z��š��y�鸒]^��kb��mn�(�G�쥙!Ov
�\n���Ұ�7Iӑ�uk�[j�Tܚ6���ᪧ���(�o�h���%�������	ǔ�B�\�<}��R۫�5fA$y|d���]N,�����Pƙ�|k8Ց��}�Is���*�Y%�J�ng�^.N-O�O�q�	��_Btg:a��jUg���ֿ� ^c#��)P����7 Ios�;�:��!ۦ����..�>Qee(W<J��%��|<����Oh���;~�-�М��)Ħ�B7F�ٱP�T�8�D Z�c{\$K���~X�j1��e��!�	����O>�@[g�O�y�˱�*����^a�`�O�*��q�$`�#Ga�t6mp�\����J�^K��{J�l»�<f�}�J��dgv�����&�'ke�AY&۵�Gt��!�~.Ur�����%�d�֎���W��>LOhX���(.�QK~�����,/�î݄ҝ��bb���m�=�y�����3������JA�:��݂Z�:rj��A�3�V�q���bAфK��6�DaK�=hE�?S�s��?��MuQ/.mnsK̢�x���߿��5�N�n�>p��'n� �
��_}C�����8�.������/�-|-�WZ^���[����0���_�Y�{��:��}�֭#5gjZc�T!���������-bBE��-��<�)�נ+>��V�
����2;�Ө_�D�ؐ�_Y�H�[�3�IFzk�>O��αh�>�z"Q��B{���`Ʃ{��,��ַΗ��>u�pf�į�ʼPh�zb;�j�V��h�O���[���d��P8��.D.�֭�Vkx�5��=��ۀ[�����"������x0����؈'����p�Vb�&�5\�շU�՚SnA�H��X���֩�c'�~n}z��$��[�iM��͊`e��|��*?�{R�k�o����CB�-7��`�m�f_�J�Q����`�*ٞ'��/oBD�X;�K󓜕���ʸg�T�hIݼ<]�^~'N����3QK�S��O~�TĖ]���Q6�������=�����%�W�"H�*��!�&�
�����f��g��h�E�FR[l���K�?�|/�	-9Z\0n�Pxr��rՑ�ڍ���웰�y+��`���[g�B�W���~���I�\�'�;�U�(�N�,t�[Ͽ���r٭�E04�v���I�������-�	LT@�����v<���5�Y+_m�|3S�iOLM���na5���dnu�
I���Z�~���q�:�bS^1(̓��2��4�U�ɷ�����Zi�T^r�J-��V��<�<�3&+j�|,�����Ʉ���*��i�lq�)oR
Ɉ��`'F�[�0̮�Q�o�#~e�w~���PA�R����n�̛�
��8�b(1~�'�њ�Z��|k�N� �A�ʒe	&XV�CE�Q����@��+E���b�V!�-�|�Н���؈��}�j��E����{���_K���F��!�Dg�ܸ^W���q�L�³���H����hBIOi��:�ze.�0:��n��"�T��]�!i�u�rpھ��zu9P98�O��3o��b��I���|����[G��р�k�/�-o�Ӟ�7�͞K�r�Uӛ>�yn�vq#�"Cndbwg�����b"kiqԶyD�$}5�`����<u�`#��3K�+�x�|�[x\E�j���t��V�ȭݱb��#B��UsDI���I��-�n�[_�8�K���a�f܂T�Z�����-�[8LL\��,��3kC��f������?7v9hΠ��5E��꤈V�M;�[��͎�W�M�S�.����M1�V16���R�=�J+AS��������d1��Z@
�xB.�8����Y@&n,�Ew"�b@,]���xj%K�kU5�k����qK�մ���5L%7���p6����5����o��wK��+�T�=p�`�m�� �e���i��&@�*$�~�ÉP$ʍ��~�.���.KW��a�T(5;I6>|;�B����h��rz!d��FWK��3{ݚv�;�V��򏐞�4�'by�z���\L�F�j\�Ƹzcį�x��/�yZ��<R�iT�ݰ������4}�t��񷜷4��؄)�c�'��Ս���=�ž�י����F��):3(��F����٨K/�E��ɼ��-ˍ[U�8nq���هxRPK{��CpK��{��	^��
_߽a�v������y_@�Öya�pl�i�jգ��9�ӊ���*~�,ݘ��)nG�G��p�¬�gK��3l��'�f5Vs���c�oY��v���>h��-л��FG.��;
�2O[��c]�-�F�h�Zlb�Wj)~=��G�"	�XJ�\n�Mw���Ra�N��g^�;�5u���`�X�OL.��H*��Ѫ"��ǻ�k�[���w��!7=4�ɻ��}��RC$�%/�W���}mU���ݱ�=WX���2nA��%�Á*�Q�I�d�-���J����qwZ~��Z]����0���6�n͏12m%��W}���~���[��>��H�>�:�b��ܫ��նT��#1�+��V�S��Y����Q0�%H�?N�q̀D��Ɨ�����/��㛚-�L�MJ���.ݳ8T�w��݈�a�E�U��A5S�[��}��'��O?������*���5D��p�G��i�-�uu�#��WX�p�TcZZ�9�����5w���B�r��lu�o�G	�rz�&e��=��C�N �f�S�񇡳�Z)
#찶C�
�Y�/@�p�8�����nA,A
b�����Z�[���<dI��\�ˮ��8/�]�2/�Nn���Zܔ�qP��?7��n3]F�zɮ�[��W��x�r"��Uk���zIƺ��6�NeH��8�-ǭ�)�B�`SIIP1x���������-�X��f����|�\m��U�Hg�ũJπ��S��_��yu@,�-ɷ,�l��]�J%c���ݭp���*�7�[{Ɠ�t�G@OL��dX*z-�I+]�4"���>�M�����0�:),�Y9��8Q�ּWN�;n	N����lD���D6��
;ݷ�Z}�����v(�(���wk�q�|�r�-���4��-zy�aI���C�+J�6�A�6�}0��-o�ϒ��{�dU�g�j�¤��=��xG��5�ӚߪInՠ"]-�sa"��������{��ãýh��8]�*�ܫ�w�(Q�~�_���[����JH�ܵ.g	����ss	
�b�P奐�,����9̈́�H&k�Zms"�[ّ5��h'OkƪcG�%��	�QK١[�$.�Cb�C��`�����ݠ�AG[j��7Zxk��#|$\~֔ljj��1D��#�c�e���UiN�=�d����w�da��x�m���~�����C�G����n��79c�/c�^p�b�fk��U޶�ף���/��;�����+:�/t�䷡�����[������%������[Ŵ�;�[jO�u����?釷��p˫.�M4��lB��)ⱃ��ɡ����#�H������ԥ��ɛ����4��9���uyqt��`��(�67�HX�-�+5
B�a�C.�R��&���
�
n-Ǭ����VOkO2�j0��X�������Q�8FC!H�x�1���Th�h�P��	d���e��^Piy�O	��N�}�W^-�2��3m�[�$�Z�e��V�GQS	����ֽJˢ���om(y��=��a2l�j'**9D��n]hE\d�c�TN֭a�U͙!�{����t�$;j::jb��L}O��'�ӊw���	��.����o�����>��wt{`<'��]n��^������{�fu�{K�!�ua�Wpkظ�"�����Ė�����3��b^~?��"tQ�Ӆ{��i��T�"�֙�͑�i�̖_Ϙ#qk��g{��Ӝ(��6��׌5�����f#
[W�����zj���<W�+�W�kD����qE0_�iϴB��~�c�E!f��"3_���*}]�J�)��\����\���ij����#gގ$]1��K/��;��h Z����Ss睧�Q/f�jq��j�cD�[2��/� :��V����ݪ�%�$�y
����=�K�C�N��|�<��r�.51}��g�y4��n�[�>�f�M"A��?w���&j�d���;?s�65��n�P@�t��EZ������FK+��#Bd��� Zv,���|��̛��S$h����-_	�{�h�6U��W0E��D�-M#Pg��Uy~�V�
;�'��^��8:��[^��4��טgB��%�h\2�Ml6Vy���VQv�[asLy&�S��m5ѓ<����;��k�LE�{�jW�vb0N4����±\��&sù�!�>�o��*\$��\R-y�jz�'D������ppk#Z؊�nu�7��r�s9>X����>��|���.��u�M�>�Z�p�q&cy�Rl�LJ�ϪҤ!2L��E�s��`��d6���V�j���q�S�[|��U�T���fD������ö������
Ē�[�F"_���:;5�y�L㗷�\������ӝ��Ζ�Y��׽ʼn`�ryxq�y_��[X��o�
i��Ј�6/�ŋ3�����b2��`��Y1�|�͂C��v'F��-��(�������r��w�[����٩u����/�55��
�qZh�.����u=���&�7��jhXg_���$��1Y�f�m���'�>~p��Ћ�l���g?;y����W���G�$;}������F�e��G3oD3�va,��dZ����>�J�>�t(%:T.K�k&;E[��E
�Z�>�,���������-c����iD*����XE���dA�����bw�۝hE+%Q���Ӹ�h�q��n<�R/0�P�<�����757ꐃ��<�10u�Iɀ���V�@Ҧ<m��m��h��&��C�L�W�-�޲��j����Y�����>uq�I�w��t&!.d4��ke_n�,�����}q�q���l}�l]��*�e?�d2o8�֐�СX�bQBiˍL�6���S�p�N�=�u-���+�hq
�+\$�w��:���+����j뭟��~�s�[�na���RA,�AƋ�<�r�����tV�e Fi�2?�C�X��zr���-��Yb��Z�\��e���N�\I�~�]$z�{�K�?�r�(ܚ�[��xx��9ԔmsΏ�E�jq�[.FĔ����D�%D�[N��8qp孻4;0�"j_C,/a0����p,�V�R�[�hyr�C-����.70��ృ�Qp=����[p��ko��c�����8!x5��K#������k3�֔q�X�K�[�D�jS\�g&��,����]��<���	���&����VT;,�O��SuB���c)O5��Dʉ�-�]�*JW�-��k�T�>�	|���G.u'��8S�-��]��jigU�&$�wZ�K��D�Za��G������z���燶3�zAv�ē��گ��þԣ����'��b6��3~�fM)̓�g���T�(]f���pB;�2��L!�O�7�:[�c[�>5,^�:w��a�t��F��H�%�zy���ג
�S�V%5��-��p5^�t�w�Yキ��O��O��v��g��8��.̘e��7��	�'Y`57��Y]�o��\?335�?��*='�c�@�����w5�������!Ԁ騩�G�he�����\�j,3�a��-A�q��O5g��5m�}��)%Z�B�-��V�	��c������|�Z��'*����ꉖ��
�Ӻ�Õ[G�a	��R�޳<����gw�=`�5�d���_~����$��o���j����Q@�"r9p�Z��0��K�4�N�U���v�[�ʜ����&m�"oC��J�{]��Sg�w.�H���X�I�[M�/}�7_hl8�"�z�)>��%�`r�s����4O�}l���w��Gk�Ɵ��=���ᦝl^`j�q+Th�b��a�M�܋�m�ޛ��4�|Q�*/_�I�bԞ�CYg��EIyQk�jcA$˰!���ja4ѩ�eNW"�G%:wz���\�g\*�b���W�\z뫺�Y̺�mY��m�a2����+�p������?}ݴ>zyR����#8��0}���[�8���+�dG6�pV��iXOdb�i��zz2m���=5�y�#�dw�ok�ok������Ü��oa����|��>�Z����Az�V�˅@x#��Lv�I!��?t�=��G�8��L4�������U~�|�=�}��E�K�k�F2Ӥ�f�P�����pW-�$���R�~�c<��%?Њ����K��_��w��L�[3������[;�3;�:�s٭���ʪR�aVE���kՁ���)��p�4x+ 	s<�*��긵;��N1������b��>p���ħ�w��[5=�懎��?:�C~M�~0�I��U��t:���n-��J�K��!��v5͹̖�j9�ʼn�n��\�Y1N�bEjq����T&��v�5�=|��$�*��zmK�?�q���n=����?�����5�ȫO=����>����;o6M�6:��sC��Q��x�}m�����3��g�|��D�)6D�d�0Q2��e���,&�8�Y�"�����V��O�$9Zۡb�Rń֧��.�$!�3潳��uC�,��^�>*�ڂ6��ģ8�.wU�n)N4��r�D8fE��촏^GW�'�"kn�GST����2���z���^���'OW��{9���L�%
�	X�c��3l�[N��8��-M�B	ŝ��O�Z��֎pOG.ֱ��̤���J0ND�xO�<�,P$N<��y
�_�8��e��Ǻ�}����NfDt��o��w�=m���|��[#�������R?�mL��N{A�]�e㖙6�˙�>ɦ��C�_k>���3m '��|��V[*��Cڕ$i���p�:�]�@�泴��K��4Q�˩;��fF���-���8��U�@���6�E"��O{�?��
��~�=��k�/�KRx����h0�������/˻+�rb{<��c�gO�̪�i�F�����Q�=����d>�]���2��\>uydq���ر?i��s�I�-�=�y��DG-���nK�r�֖�6�Ĝ������,�C�t[�W,�~�Ɓ5�e��bY��]� �d�����/�p�p�O��A�����&�c��Ւ�������Y�ҏ.�ޔ�?��s�~���ʢ��Є.�����,��2�L������`�<�d,$L��Sl*J�)���G6�7�Z/��BG�t��Y����+,J�7�F�?��a�(��A����^΀Z��~kϼ���]�p�:�z��6�m�9nM�?C��j���c��k��^���P�2���xEaQV�8�Ç���ڧ��7�e�'u$������_���[2T2hO��*�}t��J�.O�>0��]�S���x�r��x'c��$�;W��*r�}U��Huh�3&���'�PE�ϝ���фg,�*�j�[��9Y"Z��#�@�0�'(F�
��'�u�es�B�δ�gbٕ��`TI:��0��W�Q����h��.Ug��2Xw�-���u�{#%(�XP��{4���	b���
��<�N]Z^��e��}��F(��Bh�����=_��v���'{�V�y�N$oA�Μ��p&���&_��-���4���c�sd8ճ������x���r��퉖��E_�]=wj�`�a˸%gKׯƉ��*p$'܁����&�9��9|��Y36[�5+.0J��j�����`�|����+/\l�=�fƭ�4�KO�<Ɛ�S�_b�
�Q��b��-9\��U7�n�I�wj��2
���
�d�Z��B�a�
�L�V`O��Z�J��cD��F��=�V�^�hR���Ho�-�eQbnXg<�W�N&4�T��=1)��P���E/Yq��h���Y���dZ��M��[_��a���ַΗ�H �{�#��C���Ļ_[ޕx��e��77�PV^u��5��"P-(�S�IN�2"�QKˮJ�W�3Ȧ�I��D(�����I���ig��2�WG+$�ޣ�<S�ԛ� d[`�O�T2t���� ����D���Y)�R'�@�uAUPG��F��\�"���gR�/5�#O�[s�wDH2��_�Nͥ:zL�]o:p}�#���r�L,y+���֑�q�-��f���R�j4£<
�CG�#�NU+A(C�]8XU�V!-�C�pn1����4�V�M�J;w������d�yȅt�
��_–r�Xi��~t�ȼY�����@��n�Ov�W�S�K�S��/�ޞo�Ph�E�\,�%g�[��=�Y��nq^��=�lٱ�d�B&�nZ���;$?̏���k�^��F6�9l9[���zm����_&ND���%����g�px��Pכ�l����&ڔ�s�V=�����oռ�FJ��<�Mם���WXVMp�׶5�/����Ft�X��ZΉ;���aH��Z���o�,[�:&��o]�N�q=@c�0�\pl�����
	yw{V'?J9�w���-(��&�8`z���������t���A��W�������;��
z�n)�mX�T[�=$w�m�5ӝ��
k*�%�WY���L~��"�gA"	
��LB)��	'�2ֵ��G��l�}���8[)&7���#��PU0*(D���X���[@�Y\�V(��u�j�MtE��7�'�h#�s �게$�BJQn�ퟮ�g3�yY�șzn�� ���*QH�Z��xu�rru�{�x���2��K�z��_f�Nvd+��O�	Z��P0
�z�#�\rf�R�x������y��V2�ґwP�FWRN��,�l�����o��­�-�Me�_�fQ�hI�vđ��OЖ��d���x5t��vFU���)J�[c��]̅��_��XM�&��̋���,qK�b����ܒҙ�	�-���P:=��9q-�W5'8d:�M}8�"�0.>��_���<:����ct�`�^����GO=jd%�_�Q���'L�p�ɸ���u����r��=�&��� p��.��q�Uϣ���dt�[&5���d�>)gĭ��=%{,&�n�LT�7٪?�wזi���d:D{A������o�ۭg*yg^XXfB
���t]�dK4wޙ
����'3ņ����G–��5��_ԝ�S��W���W�T $4s�@vK��n��.a��p�Y������mjL�
���tb�oM�N���D���q�3���8�NGGǩ��9������r��>�9�y�s���D
�)��,>Dt/|�zn	�Qm��KEa	�#pn�6�ں��2�B��"1H�]U��R.�m�]�hi$�;�#��@!C���#˷z��,�bz�Ό���JK�dmcW���=Tcb�CӇX��%�W�=l�Y����:o+�O�0�ܧ�Q�']R�}��+��+V����TIViծ�gۣX	��]����:���g��P���@��(j�5$��q�k;����Z]��k�Yc�F����3:78�å�F����%(���&p�5���9U5tWp���V�'h�4���?�o����M�x�7H�DiY���-��Ɯ��:��x�.�=_Y'��
b�bJ1C��g���t�����s�}�퀼#�]	�Dí�Va��@����6��;V���TW�����=]�c�
tWs,mU�h��,b�"m�G!?�S�޶t{�������*�p�pu�ݦ8[�UR�[�D�8֖u���dk��m������W��}�����/>�ãG�ɰ�\�:�υ�0�Qz��_���d���BqYJ�$���u*A�k,概*��n���K#�T01��]�\�SA,��e��8iB�,�[B0a����
���zR/V��L�}���Ν;7o쬜7/�΅��	j�_��߭�L9('��i]ް��pc�!�B��+״Y�5�O�?�j�&��V?��hs$:�aG23���ǣ��@�ұV�d��[$�qP�>ć�c��z>s�ڕɭwm�6y�����4�;�`�|`ZE��N���.s
-�p��m	G�%~7�(�L:�DҴj�x�������"&�J��V�
�� �%�n'!����ګ������Hq*�J��eժa�3�l�Plߞ[gc��jH'��'�2�����Z����(eh�X�^9��/T�;<2�>�S��[y�σ@h܊�Q/���Ю���+�'�^C�[�|]�[��B�X����3��Pnڴ��wl_���Љxܜ��`~s��Zi�_r�m
/r�q�T��k1fp��\��Vq�Xɷd�g�|x�����-��B����y��� 2zR��4�WV�I�kk��Y�{�a�<�z��!��˼4$\��(� ���K:7��$��s_]�؈*Nc�f��T���$��-Ô�Z�]�o�g��+��nc��<g���7��Ʃ�5�p�|��%�b�ڪC|�sO���M���*ʫ��b��3g��-p��7�7,� �+����Ƅ!*D�+�!	��Uc�XV�m�x�VXި')�s�Z��Q��7�����ݹ��q�/ɲ)�;�d~���'�?ۼ� �Ur���ڒ�R~e����i����_�bO.�ttj��
��r��������X"�q�f]���ϛ�=��\���[;�c9�E�P
NL��AĨ�q�Y"�����X���`�Byy��T�%1�BۦثG�W��Iz�������8��C�]U�y�WhxfA[SC�J���ַ�3z�����<��YNF�LRj�c�l�d9A攚��4�Saz.PoI-	�)���%H�PV>B��%�{ۻ�&���e�J�D���$��/�%jNg�N�A�� v���?�Y'�ͳl��^��t�n�e��bs�/n�d.f�sV�K)N�%�j�of��ɭ��.������׮��V��_�����4�8R#ry����[Z��C_|`n��?>����\��ܡp���H-�\Ft�i�d�!�=��)��[E�8�;���8��x�qJJ�Y�
�Ml��sr���k'_ކ�J\w'�6�L��l��#I��hZ��*3%��`0���Ѹ^ډLO�.D\iN1��Ǒ�/O��h#�-O<���X<��S�t`����Պ��HQYo5$�c!�:rx�LJr5����"J�ǧ��L��T4܊�����ĥK7>�,�?�n��o}O/nmFH�����
I�L�P��jZ�dW�ЊI���
��^�t�X�53�I�B�xi��X��W$gS۝���>"�2���E�s�C?����@�4�@u�.�A��u�j�@h/̴ٮ�9-�'Q�m;K/��w�9��t%��b�m�x �Э�c���6�[U!�V�Q�T�8"�^_[(<�ak�2�D,�1Bs�J6�v�c�y�-H$ʕ�?�!�Z�*�L�G�
�za��]вʐ%B��m�,!%%��F�T�V�$\�[���lO�B�w��ӓ�6��y��=~�@%���&{���F�b�S"���]V4>����+�����G�����{�g��'�*�م�K+K%Ŵ�=�O��2�oP�w4Q��p��[���k�Ԉ��Vx�HT�e7�I�V[��p�pkpbh?�E�:188��ՊD
:��/����!A+�2��T���]T�� G��p�U�[f'�"�����ƣ�p�t�@H�����y~B��T��$���t�"��Z����9�����i�e�H>��EIL�[�2Dh��-"�MqRe�^�����~~���]�-"U���]	��s�J.�%Z	�\i.nI�
���P^y+��.��p���Ko���{G*���V� p儿�?z�Ɛ��O���c���W�BX����fg�w<�~�+��
�#'P;�� C��p��hhW4�+��Nef�@ۇKx}<��3O]�����L�l%\s��88��46r����b�X���
΍��Y��z��t�\�Q���_�TZO��u��@W�<����#��R�0�Pn%�bC�XD�i%bm!)�L�wG��T�,UC��n�(e����h�cΥ��9'�5��9YV��f��B���@��K�&�!H�ּ��vgVg%9�����vp+���;��\���;�o�P+�R���.������R\��a-��b��YJy���k%�W%�u=���ވO!��#5��"@�&ڏ��}�"��#4r��Y7�.nYv]M��ɷ�Ӵ�ms#.�#.������ݬ�At� ��_���TGuË]�lN,�SI
Ln�(y9{���-5ׇ~�'�^0�b��\�Ė�;L��?�+�O����Uh��[��U�P�4\Fo5;u���f�)HC�`]$�˫��%��n)s=��IkpK�3вc7��
X���:�}�I�e�b�	w��=�n�iʍ��c�5ˤ\*ޮ֫�Z�:���z��/]z��[:{a���u��t��G�L�E�eA+�:�<�]�OGRH"m���R�z�<�֏kM�@i��4.
��b���-"���A�������'��Ai�aݯW�ψ�D���G=a�c���nM���Ob$���!�v2�2�2���܈dX��v�
�B3��8�V=�XJ@��h�~ z5� (Aan�c�������9W����D��[��I�!��!�;:Z0����baf&�A�+p��Qi�D�]��Q�Aw}O�VW$W�"[���(sp�j��p+up��^�yܤy5��3�sֹz�u�[6��cFH;���������j6`|%����k���Ż-p䕉Q�Bȣc?L�뫨�RW���ũ�[�-�j���l^�&��Q��F�Ary�8�[s��i�Kol���&J�,���ŝ�X�+�~����8c�n�^�Q1x+��[��!A=t��_eD1הݴ'���́�?��?Zz|���ψ�Ů�R>�u)�_
�e���[��aQ�Չ=ȅ�[���焃[T�-���1
).nt�1磡�Wq���j�8�5^Qn�VP�|YE�PXFb��[
��t5��9q1=-F`I�M��N�)��۷o�n��o9�,�7O"��&|��'��G�#<�pz<���r�k��\yט�_^[|&5Z-�����t"�E����ϐi�~��Tw��(�N�,���j� �!pC��ky�9��B����@�럎�c���N%�KH��Y��Mj�|T��+��8��|�lQ2��P�~׮�x{�=�}T��τ��Ѷ�!�WW�"}���f("ͤL�Z�_3,�dne�:��H�X�N1��[�[��V&�I�P��#Z��^5w�d�g�%�_�65C 9&��>�
>�[�Y��V;
ni-�wqJ��y�wp+5HS"�i޽Nz;C,�n�-c�R��Ttr��w)`i)�џ]87����1?oZ+�����AB�)�y[/�LkD�$���&�o)�2�J�7�jW�%��zw5���\.��`�1�n�[:�Ѹ4E�����n�괬��B۷oh�uqK�<�SP����o����M]���n�H�����d�n^.I����?����
թ.��L(
eZˎ+���@�hw#1{'����Z�3�j�+�Vz��2��y�2�l�Ǎ@b�����u�X ޿�@Tk��\�R�:d�yc�3U��j�2s:x���BD�QN���Ut����<����˟�V$z\�3�[�g����u�ɶP��^+Gg�;�c+E�x����1��<gdJn��p��(�0�6�=874:�ҍdK'�d��H���YC,�0$_<��j8
���b�{�NUCꛑ�pء�$���T|�m7vOHt�rrk)��v��E�A��/n�B��eYmT�OC�q��#���Ɍ���4�:?#� �J�ؘ$I��V5j��*�-h���ņ�k���eIP��ŭ���YkalJA��2P�n�dž�����q����u��'~���;��-V�瘸ވ-�٭X."�;�lN�W+h%(�D3�����J	z�w$������ȅW`�I�F+N9'ꮮީ:�.^%�b�y��.fc����qz��p�_̋��-Չp[����|k�
�o�[3S�=<��9�ss&�7��s�ʊĮ;�eǢ��7_ې�ܛ��eǏSB�e�oR�(ú��э����뭋�L�P�Nlm�@� ��Ν�6��v8���#~�h�R�,�pi��u42�
�W4Z�
��U�R�\~0%��ɔ+>̘���a(�*Q�V�o��磭��lc��+ܚb�2��wIdrp��"�6�a�fY����R�;��Q췐d�91@n�~�:����<������G[���[�m��
�W�p�x��#D�W޳����j�\�O�?��z:�P��� VT�s2���*ܭl���!!��X�[��{��=h��_ҁ��4�(�����h���]�/�]�b�fQ�yf��g$\����޵>�]�Q�-�k[�a0JI��7���&n��~c�#C T�H�w�0})��Laj��\	���?�亓7Q��6�5HͿ�[�4������CA����������[.d�o9�EW�%�#A˷b�.nQ�R*N��[+ļ��wޒ���(}r�p��7uc�]M�b�=�KǪ����Ӛ�����]�y�?��
蝳g_٢�M{.��LM�\�Z��A�V�@w6M�!n�o*W;�$��OuG�W��O$�(�Z�%^�E�<�0����y\��R��A���?s�쫬+R�KK:\�e��_K^���eڀ��+ͺ����%�;������
����޻x�8��@�=%��O/<t���Џ�o�0
os�­�f�o�Y=���1rS���C	K�$��}+%ͪ�,�­��܂k2(;����Rg<�"�1܊)≩�.�&�Zx4`��6ڝv�e�)��!E���-�[*!Ew‰�?Z(K�`&$�
��r��jF2op���y�'��a����eW�&��-\�,|h�5B+w��g�]�0^�^'�<��o��1x&Y��~1`����о�V{�ᖽk�:G|L��M��[ƨ�vqVe+�#�Ç��0����C&$^�����%�ꎈ�jN�`�hOrm��<ţki���?�s�{4�(TxQ�7�b�d��|&p�3��\��Bpk�6P����̗zt�����,'<Y������'��<:�5~��I�hY�pe��:���BGrY��y@1,�v��0m���X|��F�J�]�rKE��)7�u�L^������p�	s��.�޽��}E���.���7���٩��WûN^�:{a�P��ȶH�؊�cʯ<H^�8F��1U6:�}���͛��uw�q��z�;k�q��['1�f��B��8è��68rapNm�I��������S�ee���( ���ا�����N7nn�8�u	BK���7n|hW��߽��"�nA�
Outk���k!���������aj*]���p�!�0����t�kp+��T)�k8������g��ЊH�.+"�g��Y�[n��3�w_ ��n)��]����Wn�
F�7�b�ԦdZ]����J�O���p�h�x]+��֝?)����[�C�������7�tDe
ш�!��JR���� �3^��ש#�U�P+0ɲN�'�9-�R�Y
c��V��7�h�>���Lj�ua-�3tz�>��?�(h=$��4M(jb�aU}��-������?#�9��j�w2�߯p���΍��C�_ˇİ�@�%��tׁG�h^J_Z\��=M(����Sm�o���5��}���?��۷}��=Z��@�ʿ�4eqZ-�����Ka��^<�
h��Ų-}X���C���C�mP��-���d��e���Jю����3�rv�h��Q@h�x��,��hk�b�n���==(�/ߗ�G:˒h`k��ѽ�Sr5ls;BT�)
����-�w����˿���|�`�����#lg<�j[�a���#>n3qZ�%�w2�*�Pg�B�ut��\�^YTV�AQ�c._V�հ!y��05�_���@�y��(��[�}�pKW��_yY�/MM%�$�sT�}R��N����s�_�|k�vp,dxM놈F�!@��ΙȷT&�nQ
��´Z�<0��MrSp��}.,�� B�vP*.�L�p+��"�.��������*S6�j	��"c�/��Q�2�WO��Y�Qr�yh�:|>�>�t
�O¥��G�~t������Ň����(k��ag���Ut�?�'�^N�<��?�`�7�~k�lK����A��6x����Y��X�.�Gr�s�����d��C�C��C�t�B�p�)a��T%�S���h��_����~��;�!9�,_�j՗��S�C5؈lP�~���9���sQ����i��e�?���^���n����$�U{����]��NIY�/=|(t��,
��Yb���	�ȵ������k7��n��[Q���qz��ikU#:��ƺx@t��N�a��ؙ���3h
v&Q�WQ~)��jq�7�0��B�#��=��jp��,G��5��bC�����7��j	����&p���[�^�c��b�
�����t��['���֕f��d�Rfij�T��`�vJ���VAJ򚧟rp�-��_z�-�]�;��{�i=��?�8�xӖ�K@����)�ӄ�R��&f/�p���+�~�iJ�����3��}����qO��z�pi�u?�����(EW��;��'�(��rE�)s�5�Xn)M�t���*5�@"Tq�G�KG�p�J�\�]W�h�ؙB>���ϋ�r.Xy��J{
�ֺ�S��/��j+�[~|�	淸|��(?�p󫣅��7yl�����l��z�e)�*<m�`'Q���.$S�'���V�����ԎU#�Gf�e��p���s�g
�Y���W�/��!��Ĝ-ZS�x��kZT~D��ڄe�u$^��I���	i%���F��T�u�S�dG��%�����Gj��0z������#�h����?.�+{ܺ�H)<҄�Vz
��Ղv��!y]2�%6��,�+��,�SA�6�"�K3^�p�;��D��1ncͩ�V��'*�oŢh������s��P��}]�Sk�g��V�W���e��7�`U�U��
��V��ُ�MФ�2�K�S�J&����U&	�_����.�b݄CF�\�5�	\v�-ljr�@ԑ�ɖ>n���Q(�챕g� �Y��C���]�ZY��}ż��]�]~橧�^Ӱ`�u���7�6/n��\5�:Ά�#;wn�¹��M��ҝ�X�i�ĉ���v�����,&v���+>>��"LgPLfF�r�]zP�tY���C3*�{B�!-�O36^�6�-sd�:�����Lh�s()�a�H�)"���8n%�-E\�K��0���w͝Ė��(�k���o1d�\&߲F���
%,�6~K#�t�]�Zy�*�Ǖyu��n=��G7�=�����0Yv���q�ʯ(<��r8�g���jj�q\�@_��'	�:�W��i1]O� E�9B�;�,�x��r�A���>;%�r	ü��4[�h��7cU2�g��zn̝�j�`	�Y|��$�	����B^��\d��	�q]۵��y2/_��T�i��;��)�|��o�/kk�x���Tl��o��g����1Vj�,�n-�X4
�R��x�e�zT•����;nE�
Ԧ� ���������,�� )�����S�ҏ$����*�&�d��.�2�N�Z֕�;e�$�:7[�9�npBC�uL����;RUL�f�nɖť�/��߾J'�/ZII�f։S1��)���h�0�n�4���Ձ[%��ԉj�Q)�V�6r���2L�'���?�Ժ���o\�-�Q�%3T��V���뭔���ݷ�Hky�AI����˘
��d`g')�p�F���R'�&��� =%e��a�טW��@�Q��
�O#;u�x�q�ɷ��Z�μ�A�|!<��#������j��X•A�&J�h�萠ϗ�G,�Z#C��%,5��]��Boqn�`�]�y��(�~�H�{P'�r�p�L��K}ti�/~���- ����qˆp��Ì��C���V+��=�h��ׇ	6�FI�ʁ���T��]�Úaf�x9����3WVhR
�С+���dƄ�q�
iPPr�0�Q:�|w4E����W���)9�]��m.!L)�d֞oV��)�	^���Hu!@A�'���%�=�o�R�q�/^y�w�������U��'���Co�MNN1�r1�0�{�u?�@#�;�}�pK�T�f��j�/�
���x�˸E�Ȑ����Kv�B���_�B�/?)E)�*PQ($I4�,Q��%�[K��J�����|���Ay��:�h�T��p�c��*�*9`WYS��[w�\�bX���(���P��W9���V�)Jc�.�-	��-�#�Ʈ�Ѧ[�����=�ᘫzC2*��s���8>�bG�
WC˗7<��?���SE�(
]~���yY��.��'GV���+�sܺyg��&�7T����u�u~�ot�{7^/����~��	II�<#��TNKK��y�}ޭs+�M�L}� ��~��O5;@���E��,E�yn�j*�3���II�ebc�5�8B���ţŰ�BC=�k�i3ex�|!]��J�Y�Ko�}�|�GOH8O���0�,��߾1���VdDWk�L�|��G7���ⷜ=���,�ڽY{Q�r�7k�u��Mk�%)�Aǯ����گm�%�﵇��U�b���*��!{R-V[�B/Nvh��>g,�����d��)N:�h�yg�x�o��o���7!Y�O}E���	y�jtW��
ܡ�4
�ऒi��W�Mh�Q�ZG�e?@F������۷�b��a ����~{�<3X�w��H"H�R��-t���<���ia�p˹u�i���Cpo����ca? &ܚ		��7j�$B���R�-b������u�s��{�`^Z�p��j����C	��a��՟j}k���Z�+����S��7XrK�5:$�
���ǘ��@���e�v�d?�1���@����pKɍ�yJD���-ri���H�5i��n��h7ߍ{��~��o���-p+{��-h�
���_<U"IwZԅ�)����5,�aq��[�]�'v�[��:3��@ΎSM{��J^���m�4cSg�h�2�k{f�U'j?J{O��Y��
��#��Z�U���ר�%Xbޒ����ԃ.4�R��ś�LJl��DU���)暖>�e>�e��b�}W�H�Xdσ�n�WxDn�;�\H3�b�,�m*�e!���-I��0�������B�E�,�/|�ѝ���D.?����(�ȶRO��x�_��b!ƙC�E�\Y�)Ro��v&˦DtFjq����<�DԂP�] ^.ٳ�W��d�v�q�/̄�^|�f����pqk�s'�jq<^2�U�
�KU0�z{��N��v�3Id,�^֓�U魸�G���e>�=��i�mg���[k�u�ׁWo��3˯�����[�k���%��7)5K+xĶ�u��O�<[�a9��QG�x��b�pb
�����P"n��-n��,!����|���s�`Dw廑Ⱡ��媹�
�q�8{�=�Hϟ�'�F�#kzH�`�:n�nm))��
U���@#��:+>�zu'�V�ů�<��7��k�=���Q0�֋Ւ�8�C=��5�5��:�.�-�"�Z�'��cM;nܸs����v��Q��l�p���L�֦���
?��?�S?��U�wB^�Ck�<���&"��M�]�g�A��sEM%w��DUn�2���u�x�5_�71�L�6.��B���8��r�+(x�g_�T;�܋�u�R9�y�~���d��2�r����5!rTc�0��b����,L�[�(⁈&�h��L����y��B�9�������'
3�k��n�i �"�=ÙN��q�Ko]5ܒ���_�>8���[?�o�]�S�����+��4�J�7�ܢF�A�j5~]<���d)�yx(@DȔ��"w�;:��1e��}Q���zj�zy��-#z\�a6��ʩ�;�*i�s��Wo��Ⱦ}�]$���!�uv���
�h�%���	v�.)�ׯ��X����C"�D�&�q��/j���w.:-���V���@v�Kﱈ��ȑۧ:�ҫ7��f

wU������j�e$�:�:H�VqK7n�������O ��.naX���[��1�b�Nā��y؂��ڵkop�?�I�՗�*6�N��:��Tqv�
�T~����v�mS�#���Kcz��>Ɲ�Htv�o���/�,���ɏ���#x���C�*T-D%H����˼`
��I]f>"ġB�O���(���쉹s�����1 ���pkW��|��Z��u�;��f�������]�9YdŜI�g�T�*j�u��-�-���[l�-���o�
;߉� ���U��B3��tP�2�H��T����x"TZ�?�y
�k��U���Q�tH�D�~��d�H�5��;ksr@.����4��MJc|���.6���-���^�>ޫd�ll���6�j�d���+D���KX��+cOS���:ıcWߺt�vK�{�����?�y���o���SZ�����1�1�c]E,�{.Z��*l�'�d[Xh��Ѱ����7"?�sw�cs��;�978w#�i�Ґ�����
�
%�)}c�
�.��񫭜�;�%M%�\��*!=5�ۈh�`�.���~��'+t�B4]#�Ԍ�A�8Y+�r�!�? ��w��z���u�P�Ly�����ԍ?�f�Z�b�
�e���q�+z_ƭ_O�r�Ʌ���j���q,n������p+EŹ?��Nϐ�F#3Qo
u"��,�sy������w���ID��on��VU��I��WI��M����.�7.����i߰���DӦ#E�N��*��R�wuJ;Ō̭�k�����?!~,^��u��UjE� �9�P,
�L`� �)�*Y�e[��f�
��Tl�DZM�؝�{l���Eώ�7,�[���Ve�s?k��S���M��A�׍�� ��[�՞��
nU`aJ7n��m�[f���+*���X\46���LRq�i���Ԗx�j7p`���*���&iOzF�`�P3u�ɷ�t6�1�nne�&<$�V$6��(�L����[�qJXC1���~��(��h�<u�n�i�M�㭚��3D2��Z� ����A�C^�Zd��j@q��K7T�B�;�����xr�����m93����$�y1�v���Np�N��%#xDh ��CGk�q���1B�f�D�Dža�Ɯ	^U�׻
6>�u�ZE���2I&���w�L�5�3�轪���9�u���hC�SF�վ$��B߇lΫƾ��]�"��Z��JwX��3�2BZC�[�Y�^yuc�b�4�g$'��J$%o\�f#��);Evڥ��Z
 B�˖�0n	���j$�%ŽL������3w��'�᩷��:�ZdT���j�m����A�Y߿
cl���v�L-`�JA�.i�ovS����+�R�1!ן���?훛��g��b��&F+$z� w�,������b`�6��ï[���o�3m�� �˥��X+�]���\�ϻj�#�c:ny�G�+�d��Yl�ق�
n
�!���z~�*�nb�v�'�8���6UW7�~�����x	�ւ[{�j�(.�%�0���dl��܉K�ĦNpk��+*:��z���~�)��e��B�?q~C2a��TL���4΂<�C�9���T
@Sh�f��m'�b�=t�*�[��9'j���
��r�M����뷞|I�}��>���Y�%��	��=X���ԲF��>�\B3�̏�{Z��֪ND��޻��E��\E3�� ��t�'���� Hc���E��F_Yz�����l�G�N�!���H/Sze,�J���"fw=�D�$!���Au@��d5�����7��ɼ�7S��A[��?m���F?��2ґ/��`JhhD����6����-���C
��>�6Cx�n�|eK �r�I�	�%�PK���@G�
]o������AO��}c,��J�;���D�k&���#Ӭ�r3(�$Z�G֛A�^�ny��eS��@�>��K�������S!��X�'�БZ�Ez�
\���6��4<~��Z�����ԊG=I|��t��Jt87�iJzO���2.�ؿ��K�+F�ɵ�F������g_C�I��-�n�(k}���u��FTy(f�?q���H��2^!���Fы��I���QC�Ĕ�{+�(b4�I���޾ݻ!n\<�cwIq�V�Q�m��8u�w��Աr�-%\W_lȬ�Lb�p�z�⎦b��֎�x���z2�,�V{2d2�-u��;��ˊ'�:�:7�}��o�!�����e����[�.}�YB(Ӄ�?\�_��J�x��{aK)�U}���3�G uzY�p����t���\L)^��=<��;/�v�奯�Y-	�u���ґ��񹱺On�
�I�D:z�jWf����jI��ZH��B�^R�ְ�.=���?heÑ�֥�/y��/~�{6���L�Y�P��Ux����l�1���O#����K��D�0���얺E�b�i"2AZ�ϓ�S�j�柙�wK(5-+/�$9]`6�>��&jSY�KSC��b�Y�C)��;Cwl#<����0�b���@R��~\�.\��i��V����1y
/�|]�ܾ}�<}mVA�lw��=�9�R��Zji���3�h�!{�J��]X��ػ�64��w�*^ni��;jU˷�Z�Wj�����陓͙�9b�Dd&T�]2�ǻ�ܺ�-���ۮ1$��䮶�6�%�~�7���o�R+�=���W��W�v�6u�0���o���lb��2��)����{�ʤ:���i��=�l��jD�.=Xŭ���GY!���r_aD�DS_Y펮M~�3e�$؉>�*Sss�2�z}�q������L7v�̕Q%UT^?V�:q'�[F��|��������1���D�7�;�o�6
��Tk�f`-#��@�咒Wf��]�F+:��:�:M����dbF����^����=_E�BH+�R�ЌI�$/l0_[�N0v����j&n��e92���l�%/�J���7��K1p�rs�h��_<J'�7�`��UC������������*��`�n$��/��W
�ۂ�7r^U�yb8�	�޺��ۗ.�}��K�q�~��K7/�={�	�~�_^'��8B�U�E�� ���ʓ%�{>�6�r��K^v�v�O��Q�%��{P�$!����9��&t�A|l6���$
C#
P�OЪ	���,�+�<~&���Y�}���a��\�Y�b��7�60 ���ܢ��
T�i�hK�J�4����tp+�p)E��
�о�tOrVNcM�i��#ԣ���{�gX����G�R,�2g.'߂HY�-�tQ��pk�˷R-��S��ӑ��4��89Ȝ�	F�j7��O}��7�ҭMO�E��x%�z�4��m-i9?2u1��d��a��.c+_��Z<�7�~nz'�FgG�F�S�>+E�:<���_/�bů?]ƭ���=�fM2�2Cc�x̒�(��櫡��
�T94~=�e�&�<Y��Ƣj�V��bK��;v�޳gwӜ�Q�͎_��uT��S���*�.oe�Ͼ��&�	q����M�X�l�&�5OJ|[_m��zw��u��n`��1��΢M���� ̄=BU��j��` �7�q�h}{ԴiS6~i�1[A��!�7��m�EvO��cH�e�u4����{�=����-wjV���Չ���.�9���Ӥ
�pMw�T]e�8�5>0��:��2�{�����	u6Ee ����_x�z�����r�[oT��?�/��ڌ
'ͷ�0 fVچLdj{��]%�x�`/kbG��E��A�yN��A��*�Z�	�FH�-B����:#
���x�"K!�Iu)��Y9��xݚ����*j}���V���-jv_$[mCm2�jwJK�V� Ld�:z%��n6�WP��[greA�8MV&9'܊���-@��vǢڙ(�¼޿�w�zA�*n�u�h�U3A�"(n+�����?9���L3��n�P(&3�923]�����-�,�
�V0�<zo:6�:�
q�֓��ߋ+�l�.��
V�yy
d�gb�\b�x��a�i���td'
��/(ϙ�<;Zw�R�Y�P<vj�-���x����[��z�H��n�m��
�c;8/�������jW2��S_����s��ZWֹ��gf}��/�ڑ+���W\�^YQ�k��0
�(2Ky]�/�[�V��x"ȅ��|ٔϣ:���9�V���Aî��ݝ�_�+"F�r��U�cz�-[^a{K�i6��Z�ырl-��<-���4Џ�etX��d8�Ms
���s�r=��[1TB@je�p�G
�<�撌!�J�I�[�r�q}��O$������D
�vQ�:�K�j�Ʀ�1T��>6�Z�6�!�^I}�Uv���۞�}�A��&�tmmzp�>�`���'?�dz�����`��_�?��H�9����5B���*�H+�b��T\)U�l6����B�#�ڇ�q��.�:�D%�C��M6K���C-�ū��6l��0�6EHM���Ȯ��"�����d�:Q��[�r�e#��5b
(�z^�_�4�P�k���(�\��.�����N�aϏ.�NS�>��)x�
3LC���O�Iodh���pB�~)ԗ6G;�L��udT��
�V�D��։�N�0N�0��|.�x��t���X$P��j��p���3��IʷLr��, �+�u�^ ?�u[h2���5�޶H��kW<�*\a҄_����Yp�XQ����=P������D�\���g��j�
��Z9KZS�~���t�a��
 ,+<,�f�)�
�ڇI�eҭ��s@�ͫRJ�����c���t�O��,n���4��b6{nb��b��V� c+3�@#�L�j��;M.ϳq�N�o�*�-�8n����ش���W��G���hQ'�մ�v�o]xgh��P������a�5�\�_%�gJ0��Ez�\���~:�e�6m�?��"�1E�R��4���D��V:BXp��R<��U�e\�Bae^�o����#�Z��ª$��d�2A�m�9�];��b�=��;(~��vbC��֥_��6����k�M&�U���?�G���+Y|(�������~^!�)��
Z3[�RR��HB���9�ӻ��%2�r�>��J��tiU�����ЮPW�S5v'�ʆΞ�
r�Z��Sn�y�9'r��$,-���5O��O�ta?�5-�� �`�t<��Q��gI�Ca��-a�T�[s��et��WNX����{���N��A����P�I,�n�|���Q[���R��e�K��
	t\ᰜe^�o�㎰wE�$����J��˼@o�@m��7�y5Of6�Y�n
���x�H���o�\�Ϭ�6{�B�L�=�k�S%sG7���6�<M�L���E-�[�;71�b�,��Yfv�����:>�V=����ɖ���W���o���� a���T	�#�2���J
���l&q~m�(�.)>��گ�1�c]K�֞9E��bT����W���@Q�@�ʎ���U?�[
u��[�=��G�˚^i��,�آ�8
tM���֧�['�%�󋤑�Q~�G��(��f�t�%�g/��	�seK}d�PnV���0�!�"��D͛���t�=e���0���:�d���1T?1
+��N�M(�+}�T�D��h��䏃�t�<@�\h���bu������.2_m�<��
��#�x��Z��l�
c�q���'����T�#����&n���1K�\�:��r�Ң5N���9	
��:�P8h��	�gD��CMFx�i����gH��맛3
��<%b�p'eƧ��px1�t���L�Oʸ��r�<'1�yG'%7J!�y�<p���+-�G�z���g3e�w&/	B
���cD�?��&�G�b?�f�M�L�H�����z���j��Za�8�B5p�X.˷�Kv��d�@U�@��F���ok*��ɠ�:����ɜ�$���}l�y>��p"|�0{�	K���o�
��U�Ⱥ�j{hZ^$z$
�Z ��{^y��6w_{F�iܾ����}�Q�eM�`�]�����O��OWqk��Ce#�Ɉް_��2"f+��2���JK�)�7}p�u��&�.����Sv���*,0<%ʰ6%8t�aU�}�!�n5w�w���o��ɷ�49��m���.��0FS�ӈъ��>(��;���5��Y�,�6g.e.f�y�,�'���$V�^?������0�	�*
���9�/���Z�t��D�i����:�c�[�=�;�A�hE$;�A7�-��
�� �<Ѿ��TʯJU�&jG���Ԓ��P�&'H�1&�﵀F<ϟ��<9_fF:�e�E;�zG�3y��	�5ɻ����~ ߺ˩�)MM6��p��эm4R/+�+��@h�>)"��l�ֻ9�zClN@�f�X�_��Iߜ���4�jMɳ����7�����d+�,��ggƘ<�
�׃X5~9%��ݣi�C�ܽ���84��Z���k �
آrѪ�׏�SQ��iW�����+�))h �-�l��/�����%�ą�����\k���GIu��HȖƸ�>
YA(�Z�ੁ�u�&�s��o���ƹ�A���L�Vp+�1�R�w_yB7k�_�z�Q r��VZ"����!�Ž4��n���-˸l�qB��@}���$[�^�~?{Ӧ&f���9q�����qZ�u� F�Hl�R[�j��nq�˭M����S�&d��n�w��B�V��t��Y�j���b$��0bIYV��#)*�(i�DX���ϽÈ���ܷ�b��k'����Mn�2���[M�e��;�"�*8vj߄`+{K�ś��^C�1>:^�W���ka���#�M�U�[o\;�Lw;3�����9-͵�֜�i�N��[g�1+�&U�`�4,�2YCK��
I�8�i�G>�J�t�L��kD�i�O��O�)�|+F�Z:��[T�(�9SAPJ�t�D��,�^SKTՃjJ���6�Q�lN�JX5ٴ���oC��ذ����6�7M=����/f��׭4�r���n�b
s��-�gl&����A@G�bƢ�e�c�Fǣm=�>M�n+(X
^el(���/ü˂j�B�/�<zp/�����KT$+�p]k�>��B�`���xrj��.����}U�ıj�A�KBA���(�+2K\���9����Ood���R��8<3���Ǩ?XX�(�����$\4��;S!ޜ�
�$qW&�]���p܌��]��pKub�Lth�OíT����(Kls~�Zޘ���@�����Oܥ}�+<}��~R�񊁹��aѳ�.ĕȀs�m���[��7�����4��-����>�rvS�؅s<íW+S��-���dKٖ+~��S �έ�wv�'�Q���U7�j�d��Y���BFp=����#U�kȹ�	�`��+��4�Őkfu��\��.�
�㾽Eh���m�(o��W��j�����߽��^l��t��O�+*��6^׍��*���<W�nY�e��<��=	Q�8�=$Q�0VȌvieh��d������26�#A�A�[)3���#r/Go0�"���pK2�h|����ь�U�r(*��i>�Ky�- ���u���L�i�#�P�P�e.ב��u�C���
��U�'���^��A�k��X�\~*����0-��� �-'s�.1��0�Y+_�o!D�	��g{:�;a2�-�:�)ԩS�X�9A����g�
p�	%��
\�ɧ0޿?��9,)�j�u-B�o�ԖŸ�@����ÏtcI�c�����GG�Nc�&;��ږ�7EoFn�.YF3�3���#��hѰ��GWn�1��,�N��)��4�ݜ��p]��V�M����j��D����ní���A��|�%��>;��F�m��z���������!e�����$w]~K�LfM"Fd�<xy��O���:���m;�UV)�P_��w��D�?~�))��[XY�y�R������[�z���P�kG;�n\���F���F��.�vm�{��K�#����,�`IME�MB*A�`��
�1wM���R&k=�ECb��6�1O2���ȑ���"&-��<�n�l��c�p�̂[�)<r�R���)�]X.e�#�$�M=dW8��+�5�A�[��yp�8d���88;�&��։$p˭�QG�6Z>kg��G�d|�ˌ��"DoM�[a$��{,U�e��_�!���m����S����]G�j@K��l�SpV��'���~"����:3�*���喝jɯ,׼FW�&Q�d!�H���6�tw��(�1��*�D	V�Jؒa�35��2-�n�oż�)?�k��}���ݺj2~��X8�kCإq������'9�1:�aJa<��R�e�
Z�f[�z]M����W���^h$&=�ΣLn4sj"��#������7E�h�	eȡӞu����j��'D�+٢.��Mk37l8�6�6��[ݔKh$c��Wn����D@F�_ͷ���
@��m,�!���ihʹrQ���ǃ�x܊��u��V^��{Ԋ�?�"��J\���Pn[8UI=��i�|��К��i�]ܺs���|�st8��t�Њ[\�\ds�O=��W˾֯L��+�a��v`�����-��������!���:+�
Wb�`bR76��
G7	�L�R���� ���s��M{�A�g���?�Zч��n���}��&&��s�!�TEA[�eL)U��cjՠ�A(X�����DJ�~849Y��<RĿ�y�ZY9�b��5�� �v�7��<Ͻ���i%[`����+(�굇�<$Ӓd+�˶�cu��	��!����.�V0�Y�/zKe ���2�kW߻�u�ۓ̚GQ`]�
O�~���3YKI<=yˑҌG�
(�)y&�v7;��!�����h�=����Pt��aV(6���k�	�}A��ܭ������
ۓ<_��;��̓7� �^�?x��&�5Fb�j�aW4���6��Ht����(�A���I
�K��q^�H�ie�/���{dvҚ��T�ԨamKPO��쾠@���"�&�k�d��a�HxO�^�6\���R��mF�
PWJ�>W�X;�#C}�r��Nk��[��63��1Szy]�ۊ}�{�_�&ز?
�����{�i!�Z�)<���­<|bn�5C�a�ۗ'x�"��j�|�Fw7�N'ѝ���U�z��{�ʡ����ޜ��X\�X
n���~�'�vYs�(
�b�D�[!��m�Ln=��ڹъ��^��L��g��z_{n�������U@e";*r5\�&�6V�����ܲX��[���8����Mٰ�gg�k.,t�wt���C:?14F_�_Σ��;���Z��wGy�خ��v	?�ͨgmD�4;P:���c �n�*�:
,8ʈTX�#�ͩ�<N! �Lq�*�ִ��ʸ�|K8n�nI	Zf���L�Ne^���f��W��O^�LC$F�af'@Xn��s��:rDeb�vtކ[�B.b���o}_/%������(,t��I5�r�1�r�泴�[-E���FzX6��F�E��	��oJ�\��ßG�+����P��?+2PHEۢ��[λc(����T�fȶ�fF!�]h��<��͵�k�u��2��?��7a�r�<�&
W�4�(>d�ʿ|���F��y$E!J�X�YsF�2�3�1 ��N�h�B	���0,��Ɖ�Il���=\�i��!��!����*��*%��u!����hv�lJ�1T���
���6�'MY�=ǭ�w�
����+���[�K��p\��<$���zp|-{v	��S"��Rh������"z�G���Ķ�`���փ�۷[[��f2�����nV� �r���|ke��ɋ=��:�ҹ���<Vשw�^���~�'��UX>Uֻ}CRACW�Ui�k�(�j)���0��h�zpĖ-��C���Jp�gy���_~~�k��/e�,

���aL���Q�b��T]f$�`w����̑�@�u`Z
����z8��H!I���<�Y��O�Vn��A�C>QSBH�	�(�|��	��o�
h$4>Ǜy��'l0&ĵ@�\��A�X�2uD�|��{E+Qܖ���v|��d~���b�O#g	����'^���`�5��bI��Ș�h$N!�|���$��ڌBscA�n�1�o
��O���7��QhCd�����4zt�0�¨��Z�zO?
�7c�z��dgy�Ɣgr����+5"�<��[�[���p��u��,�=�������0�o²:���{`���ں{��9��+���Zb�@V�y�R�])�M^�P��5u7�5	T.G�&h�,������������y�p5ܲ�K�8���5� \4���o��nm��R���֗5�d�4#�1���D�֭�%��p��˛nW�Ct#�-���;��;0�t��/�Z��ZƭO�̷^�g?>�pAcc�z�+��j<��VW�캼�_�Y%*蜻�k��3@��kE�X�!Um����.@K	V�kk~}���a{�v L�D���ڌS��ֹ���uӎ�T�hl;w�[�M��j�����3_}�6pv���˸%�k/�̢��&=0�*�i�o�w�GJ�Ĩ��G���<��oqns�
͛YD�X-C�p�)vϖ�8��%�2��-O��V����:��n2P̲/�<��{��ҭ<%�y������&22��ߤݟ�C�[
�T�ز�����\�/c�Un?����,
V+��5�f�$�|k�>�S���彉Xo�yk��eƉ��'��"K��>.�d66����=�%�pN2�P�DumF����/���~���=�\�|4i�9�&lz���~�6ף�<>�,1�25-0+]��œ��"�Z�N���k�����j��NC_�ey���Nrxn,	Ӑ�b�<�e���zzc��1�}3z.��E�u^ɖz��欶E]v��><�[)�(T�`��\�{g�oaf��k~@!��57�"N�ͼ����ꅸw��5�\�3h���[��
O��綐ke��`�+��I�����^|���W�����5�_@�;�n9��c9YǩJ����F�K[nY�*�xŠ��'����ʷ�ߧ^���r��􍑾��7�l|��w�-0݇��k��Ƹ���y���'5v�u7&���5^6o��^_���Zo��5($���in�l*.�O��Ħ��١�ZL��[��S��Wmc}�,�q�,�3�s��ENesf�87::JƕXB���|K�~��sy�iK�i)�!��]4�m_�!�uX-�'x$��8{(�zg�\l���!L.�/���Q"t�8���t�����SD�f�9��­�<U��M�b:S�����Ә�W���E�%ˋ.p���wN>��Ҙ.P��)�'�o//z���Kg�_;$�u������*OD��|�6T����L$�Z����"�kk2�9�&��P�
c-�<�|5<��؁ñ|/�����
�yR�[�Y�*�]
>��|z��RX�ظ�5�M���q�P\���a���4G��#��`zAz��\Ծ��Y&)���7�E1�g,;b����$�IO�$p��r�4����Mi*!����e9�s9���\ޠK�B�Q(��`�5�ە�
u�s����˫�Z巸*Pm��u�뇌��w�}7���O�M��0�)�Z�Pwޣ��lIҩ�V`K�� ]�w���⢺����,JUх����%ډ�ޚ�@�`;z�#����֮�rP��*n)4�ț�:��l���+(�R%�x�v��qnb����2��6�}��~bC�����փ[�R�����p�~�WoX�m��-��D�V%���Mʶ��owN`��c����—�Q6�!�nZS�����b��-X?
Ł���ӥ@?\d�`��Rd�G=9��G��Tl<f�i8&�V�~��c�sZ�L�%d ��Z:D��c1�m��/#�8�C��G�����ɷ��['�--{Զ]��k�y���%�����<�ve�k�,��F�?���O"��?�O�d��?{u/�(�;)Iix���Xh��+�)st�.����&4�o荵�4�G���ӷ7��
�"?���՘K�Y1[Ȱ������=S
��l�n��L4�g�U�h�/��u�LJ�Q���j1׍�f����7Ԫ
oR\&��-�-��N>/�C�b��^�z��g�W�Ԭ����ƒ�|����I�A&�8���EGO,f��]�^��Q���N'!�м�yՇڬx�J�k>����JϵLmq5,[��ے:z�X�Ƴ�G�[�J[�-��Ȳ�O���q� K/[��ox.�asb���x�Lu~�]�/��B�,&�j"��X�����h�KW(��2Qt�����G���.l	���~�oj��A�F��,�F��\�
��^����-��S�~;5,�eaD���>�ss��
]�lS.�8u���k"��9�I�[���;�Ł��$P�k,C.��Vp�o5��(!��VO��j�"��w��}(>�;�>��kjj|F�գ����C@&�^�,��NJ����X	�'��aG��E��&�-��JC�`j�U�$�Ye0_�X���v�}�1�J��p��u�Ko=0�ÃJ@��0�N�8T�L��:�ϊ��;51�sDOyf!�K^R2���"�s�'��}⏸����_��'���{Ҳ6n�wI_��|X�&/��?��n���.	�-�o�]\���b;<k�#T�W{����0*�'�1����'-%��o-�ͩ�|�(]�DxF=��o=�g��
qL�4�8'
�+Ô���W����4�5=R?��R��� χ;�"pd�d�5�ҽ��Z��֬=O�x�|� n|�T,8U��mEc-�����9�����{��8s���$GY�>)
�~��z�̝?����*lR��x�d�Ouq���s(��lGhy��V]0_�DB�#�Ij9l�C�#��pK�s�=�����7w��󽇭�X+��\3�����1�<(iڱ{��,�P�n��״�# �v���[�w^��㮙�z6�}�a;��|{Ჺd��rb�\B5�j����^U��[u]�2bV�6�Ylh�T::�l�L;ʵ���p{��x4�)��_+�,.+wpk/B`&��6�4�u�x����{����M�$��A�}*��6ջ��A-LO�C�a/>2���8Vϵ��w�0δB��p���� �<�\����6��#�Kh�E�k�a.k���­��u�7hY�[�DlZT;�4}`k}��{���V�]��f	����4����0�|��G�Cä����=$8���h�=�ܜ�����Z"��~�W�I�����MVj.\3|�Մ��4..*�r��Z+!�3�k	hQ��E�(o�%z|$
T�=��+��3��U)?��qc~J%�D�1i�6`�
����3j��"3
�pMuy�|&ы�C����R��s��C��<�40m�J�	/���*��R2�2��53u?9��ϋ��(N�+%s�L���Iz����N��~�ܒ����:��Y.P��ũp�XgU$����ٖ���c�]H����n|Z�z]���,�[V%n!-ؐ>�M��U5⁌d`+9}rz��o��a?Ioum�5�kۏt���2��}%�U��`k�P�\�ҫ[:1I�s�ǂ��Wa���ρ�xU�F��
T�W�e.N�����;Gv����3��&#=�\�"k��cb	2iN^����(�D���:�~��j��"6<�H�,߂��ޠ��ށ���r��ց<��VRA׼p׭���Q�8P>��jd#Y�l+���Xl/G����Gތ5����$I�8ڦ�O��h�b~
��Ё���#�K�H-O"uH�VFZ�ɷX��� R�IS
�<���,���菹[_(��`)�:��2Pub(c$�"K�����]�&���ϣi*�]�ɃZ��Q�k�H���oM^�bN��S#�vn��'����e��� ��tq���h�C,<��ҍ�G��G��E��r����+������
E-h�]���g.�+��y&3����L���ibM�sk��j�љ�B�xu��=�f{u����P}�ƛ!rFi�d�����U�l*s?�}�X��͂��8,1^��r�!�����EA��/ȧ��a���h���
�&��P�u^��[�Ӭ�qV��9���i%T��Y���TI��k�vt�5��VAb��s/�Ƒn���-pn)L"/�(�P򇕽 ��R�{n������7�����<�"����ѱi=%��$�VS�-WaWv������M�\�����r��ܺ���p�Tt�*�}��Dp*�	VT�OH���IO1��,!r.�l���ڣ߬��Hgke|�lb��K�=G�V&�2�r�Z�)�=e����ȼ�K�ս�}��-��Z�q
�����ŝ��WY9
\ge�Ԯg�꿱�sg�p�l�L$�N�ј�_}���?�񙤂<H�ɻwŗ�"�*g�R�B���5 �e�V��Ϝ����=4і�<��v��T��8��P�^,=��[�jZ��f�J��^XPV�e�G�2yFH7�cL��͋�?=Ǹ�t,�]*dM���������������_��'{�Q*`{f�ug46�-`�
���j�Wr�zD��d�cP_{dR�|�'V���9���$y(_��P�i�W�b�"���b>5r�Җ����X�Lh&��+��z^ޕ@c�_���$X�өI*-�o][���_�I�x���Eg�	��j�#���D�J�2�,���'/��\I=@�V�ay;:&����Qb4�w�K-���R
�,5,��Z�j��zh(��1����d��ֆF?��6�g�H�d�+ؚ�‹�b�1X��֤= �u��:Y����m���X��
�epm�!}�dJ�r��k��Ǡ7�S��a�e�?q^t�Rv��Vpn�����>|�H�����^��-��3�L-&�6 c���.���V�n�n�[���%��Hg�@wW�칗�;���>s[��iqխ2,�v�m�?pMM�7��p
tTO��X�U�2�VSQ���=%����2[�55�~a��]ؿ�����
y�r-y�Iנ��.|����<��g6�T�����fx5D��IB�O�f����<)e��M%��gz��zg�}�g�d�"�NpU��8��,��pi���՚�^#ʹ��_�uoz�
2�^B�V?�0}�Y��c���tm9VI(��:�K�)4R����sr�_���/�#QJb���r�m%���G�X�s�#IJ�"��4��(H��z��́��Ls �o��JL�!
�=6{C�Z���z���af��A@�|������j���k3Yÿ�4�:'P��"Z��#-+	���fEk쇕�L�@�������B#R5�|����W�6�/*�4P�>�0�>��w�>�c�)&Տ�����/�n��bO-'Ҵ��vR�$@�Rr �R�h#+��1�N�ߑ/y ��r�i��5yCϰ���*p$>�ue/��0��Q�⊷�r����5P��Dz[�d��ֿ�~�:5w%��:��k�n��V��8%L�eɖ] ��}�߼^t��M�pX�~��p������Xc�*:S�;����J��L-7�+�Da�:ŸcW7�nq]����[ߐo�l�+[h�j����H��'~ⵎ�J�V��Ѵ�H"dU��5(fA��}�/p+�T�n��~e��ݛv�mVc��s�T��D����J�4G����r-֧씊f-�c�y����Vr�ԋ�vNz��\hE���0:R��Q����	��2������|���J9(ؚ����+�D��2i�ٵ_���2�L�<}OV��u㣐�Q�2U70556��4R�ZK�������$Z���/��aK�>����˯��;���m�����P�~\1W͊2mT\YV�'�RMҮR䨈O��3�^� |��-TEmq��lfpQ@���7�.�x���ʏ1��v��D���]m/��#�ĭWc%���g&�����{P�g
�L!w|T2E�Fד��A��H�5�(���!�B�·�T�p"��jQ�o��\�f2��6�K!wAs@&�+����›��[��;���z�- �X5G�*�St5##��#���ׂ����ѱ��sg#Y��[�ti����\ZS����רs5��q�p���S�u��k9�p8P�7G'1�|��m)�rkD�^~��ԛǦ��m}���y cS�^�t��H��=<<`��嘛���H]��Y ��p�ï�"43O,�wY-۾al��%� ��51֫�M���k6�O�zƱ���L*�UrwJ�4��S���<�Y�-,�������vg�C>��g�*�}K���p����{/�
��˨%Z�*�!̆Ԭ.li�J2)�|-����/��i�p��1��\V��V>*�<v���H��1ז�(ۜu�`�"N����k��:S��g.鎗�����4H���y�eH��˺<>rn��Wu�����^�ļ��p�7��,�>���`i�<��C��ΰ+}蚩��� [�%�f��Ψ�`�^C�/�z[Zj����qyO�#���PMt��uO���\�V���C�^�B�
)��х~��g�!���،VP��.��D^8r��?��e�6 �BUIx4����0nj���
ڼ��d,�nQ��/`�6�����4�]Rx"܊�Kώظ���s��G��X��%3/�l6�? �HY^���J��ܸoW��ӂ$��[���G/
b���(�a�#I�Z|�5)�(L�av�Õן�����&fd�q�����l[w�v����uvbO��b#�|� Kal<7n��n�o>�;0϶15��+p�S�u�U\�5nZ
V�����t��+\�^���kNv�
P���q{�9-lt��`�.����)�%$)��|��/�mR�ջ�*%�l���&Y�1�7+$����WQ4��˟�v��4W6���i~�q�!J()�'z%@+g��fn��^��P>,^K%���4�0�������#&�YϤl��-!���Pg��W�
�҈�:E�"��myR����#޲2�c�a
����:Q�ŭ��|kZ}��᰸Z/'Z�+����$�Ƿxf�K��(:F��P���:7º�G�I��,�Hϓjk#�p�D��y�]^U��9��?�[gR�;��r��HdU.3�]"S�A%;�u�/_�\g'F3�A�K���Dw��5૖�w�ol�ʔg$��^i�k]	�����q�⇨FSOb��Qf�)�ڰI���3��/��#_ʬn�w�3S �^���,���n�s��tkC2��_�Ց�
��Ǻ6�UcYt��'��X��[~P842�_��g-�Kl�nf؈�&��5�MS9˶Z��w#˨0c�V�-���k�N�B�ѾYy��hM��*E�scp��Gq��SY-\f辰;w>���u����w{�{u�k�}��q��?�:i+��F�~�Ӓ�=�M/�����/�L���l]g�J���[6�Sr����تj��C���3V��I���Ξ!���nV�^�;
S
����Q�ō��������ШO4��4&�$�ւ�>��nx�[T�A�l��Q��T���I����V�-L'�[��l�Q��MI'V6�w#;�4(o+�5r��pЗ^M3�X�eZ�I���(�i��,|~�L� K��4Utz����π��4��s4�:��p�����:�[��&A���?�^��nŬVL�[h��Ӈ�3����j��/ '(�j�k�.����b£���Q����Ms�9��,٥'m�|�2.��P[�	�G�_~���ߺ�D����!&��#9Ԣ��>O`Q}Bɘ͕q�'�Sk�3ة��/�u��f%f�D,�~s��ܟ�OF$^����LM��ۤP�1s:9����O��h��9�RZ˭��:��0�ߪ��B+���M���T�g�-4�. 
o{J�
�|MS_����p	�3
�$�`�5P�7���*HEO��!A���w)on�%)TA�a�l��OJZk�e�3��`�G�ݍ���p�.�Ɗ��?;W\%�7�Y����@EQ�hgY�h"�'E�S#��|�m�U�O��x��S3�W�Õ�KºB�UQZ�sKn�᧮pK�L�B��]/�U��bkg��/L��(5�E�hEb�>e[S�3W�l��^�6&�/k%��Y�st@̥�t� ͑��u�3y�D��k��7�|`lL�MM}]۟{�"�֬�*��bn�o�ŭ�Z$?��b�'G�"C��F�d�a;�"X���Q_ñ`������ ��g"�RR���ׅYv�ZM��­g6&f�-���S�2N�9ϱ%#��pK��,A���x�h���+ܒ�0U8����o".�
ĩXdZ�‘u
4��d0�`9�{�D���-R�46��N�̣�.�v�@��?�gG��j����I�����>C�����/��b��h?�D�G��2m����G�4E|�"�Ea��"!�C]E�Z��ѿ�cO�y���&����m\:_uCCA��e�e�:��|�F��yw)e�-.�nA�l����j˾��%Cj�Ќ��i�����CH�7�G\��V�~x+�iH�	�x<J�ϔ�,���YfE���м���%?Cr��(���q�)�1p����s�A?`[A؂$D_�oۅ“?E��SW�j��J�pŵ�13��uEMn��I�Pև����I�4;1!�Ϧ�h��4�˽��`˰gn獛�����>��wEz��R<�	J{NQ0܊��ٷ�K�/�,���[�pm);�b�t[�(5]Ŀ|^ubӾV�ˆc3��O��]��](���C��e��y�+S����֏��}c3'Y9�'xD�p�X�J��jY��3H��}2���ԑJ���1�*�������V�o|�Bӊ��T��{�pˑoA�o.(�U���	����;wǀk0���
�"ނ��/C����W8��q�ڦ|L2>�s?�sEV(�R�L�Ѥ���MJ=
n�2�C�U\��Mʲ��+�Uc�:T�j���y�/p��RZC����in&	����T��+�2�_�X�y�����Z/�B�1P�Y���[<�����%��H[��	�o�@�՟��^5rnp̼�c�����%�J��@�d��"�y����"S}��,�f�_ť�fozC���B[,�L='
�
|~�A��#b>Pz�=�HY�Z�E��I����	����̇>|$W*S�}�4�:K����5�Jܶ�_>0\y��P�ϣܥy(έL�$�m�T���p�����L�)"3k����za
��;�GpriC���\TMR\l�:���h�짅<ܸ�e�>�$�B��_­un$;y���!D�vQ�@��cC%��a��P�O��O���Ӈ���E�|��bb�'�|b��[ů��~߄%�~���$�*���fp
d��+���v�ٮ�;˸���[�v���j��$��e��N���N��Fzi�RzN��<
�yu�\/��Ȣ�`���x�I�S/;ܖ[)�s�{0��� `H:^af5i��[旓oa��e�� �Hi��_�-�A4���,�{�w��ܳG�������[CS��NAЗ������Z7����W_P<��Q�"6�!B릒Qf�Z��H;M�7��w�/*�d���
mtQ������h���p+A����7����������M~�ɽh�AX�sE���>��؉�.�ph&//O<�#A��-���(��
ot��ȷ�H����N���e�[�sB�S�3�����$��z�䭓`ȋ8E��_��_C����[�!��Å�B����j�LM�\�iͮ?/�A!`�ι��Cv�S�uR�Wr�4�H�����O��������v�|���9�E�c:��L���X�u*�x�1���8f(��k?y\�l�2k�������m�e��C��&!%����+n�0�9�`�-���[t�
�#i+����;�(�%��=�D�sϭI:d6��^���i%�}˸�쳉k�C�+�ex�����P%��D}.,���M�^�/�y���l�Z��Ѿ�/6��$���3�V�ʦ������������Ds^�pN�/��OX�\Q�O�2�՘�&%��Gw��~��Di��Op�
Zn�dτ#ђ\��
�Pl���.D����j�0%�w�޶'f1�-�J2�z1m1���mo���k���їG��N)e�m+�M���8��>�j�rr�\b�-rXkq�6Xά=
n���&c-����['�R@.�-St�h�Gv��+�,���^�
@(9`b��4�j	B'�Gx��\��W���x���W
��z8�(�_�����9]�/,�8lW)>ZK�ٍ.M/U�>���������p�(���K;%ڔ�0�7���d�ϟ�٫�|�W;l�Ϳ�>�^����?�;�����5"���Y��g����9�x��7�ڏz�4%�u�.l���SC�̴���g�[Nu��� X�ف�@��ѽC�B0"�4�Q#ֹ���?��%��~@��5z-ܒ�^��h������"�B*5Ъ"B19����!��
�ԓX�=C��5���"����U=��~��	j���E��n�؃�(�ؕ��o���o��v��!��k<�����)�xe�Y�Tb	�@{9yn�%rk���%���&\��G�=V���V����?��H"�z�j���J�V�����`cG>�fAJk��PH��)��{�詩��)ee�@�ڏ1����z����!�*N\�S���{��y�k11^Y9�^�
Lk�#Ւw
����q�BL����k*H(2B�[�ֱ��l��u� O�XҴev�7g�u��Q�S�޶]o��^}�������_}�Gz�?�Db"�J5{7�t����ퟄ�?ޒgRj��z��8��Dֽ��0��1.+��:h��^�f�˄[o�誑�
r�<}�\`KžjM�����q��y�^n��<Y�8��/��>�ߪx[.!��G�o}D�o�aT��TB�ē������͍pV����x�p"�\c���x���R���J�[�^�=q���x<h��<zk|�]"P5V]l�����"$ߊU	�v�l�)���u�'
Gt�*"ܙ��W�s�+bS���T7&�D=����a������B1�F5�e�u�,́�����C&�
�1��<�o=��,�v��� ��B�F����ף� �R��y����]�f{���wqK�e�e��7��̫	Wí���W�ly�)��i���- ��21:TN�̒�}a'�iNh�4���h����n}/����/��)��;���^�u�K�*f�%� �
� An&Ei�j���
�&
�[K&�ƚ�N��4S�Ĵ�3��M�3m��η�N��9�4M��=�
���=�9�y�=@�8^�l�nS�o^��J�lk���_��Ɓ^m"��Io�+՚����"��A+�a�k"v�&L�Y�xy�?-.�ϭ��gP��?�v):�힞��Hg��'��@*�G����D�Xv�:��`��r,0P�s�8d̮χ��ڒ}�B-���jR3v��!;=��av&�dUfe�0����)&�N7����*ف��G�%��ZOY���S�	0a
x�|^���&2�&�݇`*L,_�MP���Va|��WRF�d3���5�B
a�e�-q\�����!5jBL���B—��Z/1h#��cB�O?-�[k���<~X{��_���x��8]7*��b	��
�v0�x��	�o���2�Pێ#�'�Ƕ���D�fK;66:1�5n%�~�/,΀[0�������z9tN1���tڀ���d&�Φ�S�!��[��-O���6׆r�U��O�zX�&7�ۚ5F��Jᕱ�n�g�)�Բ�i3�ieω�oqH�(`�%�S<ͺ��C�w��F�y"_ZL*@/�h=������yP�5���@ac!����J �"֯]�̾C	m�<�c) a9�NnZ-�0�l*Z�.K�/��������z�N��n�������;�webV9��)Ӊ��ťJL�!�t�
���<�[?Uq)���K���*���M����<��WZ*�ȶ��kH�n��\y�
M^fa��xR(R-�W�\�P�� v i�I~��>�����#������֪��{s�	�c�������rh.����������9��Yr-ܚi�	�xjEՔ
E��ƨ��������ly���q��`�1f��VUK=3�x�4��#)�3�I�9u}4�MT�m��Ml�?��K$*�{���w��	ܢ��E0~N�6�
����rc��C��r���_��b{���+t��`a"/pWy��� 9�X^�(TZ90�����^T@������i@(�w�M"�N��Y�-�Z�r�n�T\������[?��/(K�
L#Bf��)��j��7�~t���h��l���P�z������D�p�b�ѽ�(���
��"vtP'�x.wfvvh�U����y�
�U&�<YU]�D��-�G�鉰�fUV���=/��̎��2$J��d�%��7������E�U.b^:U�%�<�A�o"�wQ'���yx��Q-�9�	l!/�Ǥ.��eB�X��.L��va�����ǁ���A�lT��.�^S�Q4�*႖�;޷���]���$Z#gG� �"~��D��n��/nC���O��`K>Z�K��ť��JY��2���`�5��͆V?�r�@[8gmg�G��Y���Mͽ/dg����{�l����w/i;eS���tv�.b��0=��0!�%\�cu�wٲ�+�Z�2���;(��%Mu7�e4��j|t�!�`��ΝD�`�JܬRV��/�r'ZV��}L-��Lc�g�SOUu
�����<��l=�-��:�j�,�=ct�Cl�<I-l�9�<Ws$^C>s�ff[O2��z�J�<C�^=�����N�p�S���&/��^��i��%<�� ���}�a��W[ �J�&h`������|�1jȮH4�>�-�z{U'�_L,��m�2���D��D���5	�ܦ��E9��—� �1�� �4`z�}�uB�8�B��|֒,�,��^�7�z������[?���,���s�bff� ����2HIgffG�f�G�/DI�_�SF���a*z�QNm&�w���%�h�D1D��[E�!�3�LI}���i��l3����Y�N<�uMH����S�>�V*��L}�s���Szg����R��<,˻��i逻��҅v|�?@!0܊����/V>
U���H�s�&:x��V��]t�'ũa��3m�D ���6�@%`�8�D\
�b!�r�x���E-��4��/��̇m���~h��/��q����g!��ά�	n��ٽtK]	�J�6o۲���_����P�f���0^E�G�s�	�~]܂^�����z���E7���/>���g���a��@
A�2a`��s�s����^�*ޕ+�yW._�_��Ś�� s�����QY�H�14�V�ŘhI�c��W,�{H�<�,f��(�KR�5��4�|n�z�p�є���[+h
�n)�Zp���m�9t$�F"��5p��&ꛊ[�,Z�w�u�?����X���~N<�@-`k7��Vn�����<C1�l�5s�F8_�'=⸝���
Q4�l�>��ހ��=T��4c)o�u� �vb�s{D��嵓�$��"����4WH���X�%u�Yđ�%�Ƅ6.��o�?. �Z�编������{!�z[��9ïG�>�y���/���~�?���?��?��Ok3;G
g�f8�� �f�.	�I�kٜtQ�S%�^zۛ!@H$w)
�v�C��:����œ�r�Y���s��2�I<cՙ,���-����wP���+�TVɾIJm
��G&/u�vY��2ݦ\
rbJ]�ς���hՇ
t�$IZT�N����oD�E�E/�4袓�������[m��&ȷ\��,͡q�Q���0���	2�V�h��\d�*'��RC	ɝ�q�Zv��Z�-��P�����~��=-��~���7�q��Ȇ�����}���)í}�EE�r�6o�ORVI���P�//�d������I)�~�����o�:lm��;fU"o�e��.NT�В�|K�D�-pˮ�ʶ0�(��f�MXX��N\c�z���Ӱ���\=q؂��*�j��X�����	7@��)���K�Yf��8��
��b>�S�34p�=í��+v��Cdi&1���آ��b�(�)� ��'_�Z.�[p��.٧�h�ŘZ[ô
Z��f|�”TB���m�;+/�T[��w�-QA>\����[�`�<n!�w�󫳵���R�HK
k4��/�ZЙc\v)�A�2�o���0+�!9|�(/I�|Ɯ��;�d Č��|�
Kf0�"�=������w��"Dj�=鎝Q��i9I�;�(ż`�oM�H���?����������烉=��0�L�����A)�Lw
uy{���SM2:�>\��E���3�%r�����eAOy�:��s��������¨�{�ԣ=��}^���Ø�K��;ڝ�?;�!�`u��PcegR\D{U�`L��+���su���
���-�x��!ȴ@�S� �v@�!��A�~��(������N	��P򍋨���KŢbixkI�[�8�I�-!�^F�!��iq��
>a����y[��[�I^"��!��_~f�_~��yC�%p�K6������-��0h����2}[������ph*�
)�V�Sr�-�w@nm��8f�8����@1��•\t�^��Ԉ�|q+��mU�m�=]�M�4��J���&K[?��M�^B���#�o����<��ao���8\Wݑ��[���7���'�tzA-d�/��3��F4�ā���'O6A�;��#»2�e��R�5ߌ�
�|WȻjY{���-���iwyh�x5q���AQ�=+:d��M���t45�
��`��PP�G�q�m`�L'y�	�&آ)�BT��K�N�P;�Π��u�\��bH��Q2�(��p��KvT+����jDW&��@N�>\�Z����j�OS�<xԊ���K0����Z�c2m\�z=��-��{|��X�,�wr���\�o�y"���S/������ں�a����S�t���4S����dm\�X6;���Xd �s�d�嚫��?_���S�fvf�΢�a��
��@$�ӢeO[��x&e������Q������dUu�ߓ\���NP*���St���^6q⾽賋�%u�$��(�P�ڌ�P1�A:�ȶ��Ec��*��Y���--�BU�­2J3�$�J���zu�h-@7�G�Cx���.n���n������~��wy�\?�ಠn�S�Q���@�}�m�Y[�`�wb�	�|;�8��ds¾;_�E%u.m�YJ�~���V$f4'���n���Z��M/��h��"���=�-!Щ��GR�6���ت�%��<��Fz��XF��XN�w4��-�"@����Ѓ}ٝmC�pPWT�������#Y.�� f��̞Fץ��~s@MX�����UDz����o�M���F��%�9cv���3�b`���T�e�>2�}���%��MI�,����Aõ\mt4v���Zne��ޅ-V���#�\�J��l�Sp�W_	��#���p��� �A���`�xy�R�Фj���@���Jǰp���Hw�0(�e�"0�`�E-�j��^�����[?�o���H��מ�urJ����lf`t���
ɥ6�|i�n�V"���t�[q�Ah�o�F�
�ga՜w�b�mT�>�OG#i�7e������$�[Xy�ˋ��R^ՙ���.ɾeߖ�R^�JCV�Y���� ,߲x�6�m��}�e�?�a���֘�ms�d���A�^>�t�6�~)���a�5�^F,�;O�U]T�SnuNgv�p�j$�sJ�ʅcOm��� a�U�D,G��+�*�–\!֞yN��+�p��B��:�5�׳��:��6I�B�U�[��4s+�6>��E+d{������:C�[2C,N�+�d�j� =�����基5���_��:�C�T�P��_\���l�J�±�r�$�<pD0���a��,F��CJ��˽Z�*,��ú����Ibk�j��I,�?'�H���u���Tf�,��
�`�S��F1Z�	����V�&̕\�K.ZSJ���))-��IM�s��Ģ���n9.ͫ�
{B��JT2�"*QS���W_m�m�k���H���g�-���W�
���z����Ga���0B�� ]/+(�	�ET�����)Eq<Jn�����q�7i�0��p]Rsi�C�x&լ���z�J��d>���A��b�U��sd����#x�Q��6�pĭ^o���;ZpAaV�O�~���}[��
��(��@��3�lfl��ݰ���5�5��n���B�`gN�D�_u��V�G�+��3rQ�v�i��?�����om-*��P�%�[�n�N�/���t�W*+�����Q�hd���#�/rqk��o�,�l.��kg���A2��r�n�
E?�В�����9r%r:��6��ypN�f�&���:@.��*m���^mT����B(a�:r\x"���.S�زM>M�X�qZ�[�-ms��k8���V�N�(�Z{�p[�kl�uy��^����\9��Y\�9��U��}����'�
W��'5�Ò\^CR����㷧�KV�h���|K��^��K�1�k�%���Ƕ��L��j�*�w��H����Y\���;	��U�U�=��+��@'�:�gyHc�#�dD���(��ضo$��
�I!�<����&�7�~�;l�0�&A=����)�A�CK�R�-���Sn!;�P<�ќ:Qs�IE��P���o�H�m��yd���e\B�uy�P��l�6P�F���m��Wd=�jz7W�$ԒN����?�d�Z'^~ϋ>Ԇ[����u=�#hH�x�f�#:��o�5m�A��0��4������߂g��B-K����=:�Μ'�����a����N�m�y��8������E�&u�{�#��N�.��*8A0U��z��I���O��0`(�@G�wv�W�[҇�p�i�E�w�ٻ��Y��b}�FlZ�	»*�	Yk�+"��}<���T�>\����r�H�&���q��n�������|l�B�z0�[����ni!A�-���4n�&�����Aa���X��a���H9ui�ϧ�@�7m����.9A��D�UpOlQϵk�δ�\�bi��~<��Ҿ#<�Ɖun�}�7Z)�Zn�Ug�U�l���=��S�Y����<b��m\�a��	*tz᧩HĻ&e�Z���GD�ܕ+�)s7����ɷ���om�m�~����+�z�iقZ����j4�)�ZBc�����6rW���d\nT*�,�3}"��D�)��m���OD�!p���D�[Y���$\[wn�K���2؎0ls��֊֠'��+K������JíM�Q�,�).�X��l���n���t�8��u`�����|@KХt�Μ�E`��4���1gd%a���S�3��#V>J\ؙߦ�|1r�j�H���j,bP�C��U�|��OB�����C��&���U�!����FS����QW���i�:f����X�$�[�(��K���B��	����I�~���Y�ò:L^9�0����H8;�<;3���:ZӼ=U
�r��؛�Lb�GGQ��]�f
�p�����էu���WP��������p����*y����z?.#�n�OA�P�8>N�o�蛢��y���Y���ɜ,�f�I�;���P�d����+o4�%���
r~
y"��G�q���j���A��Lj?Y��	��9���|����l�iةmJk�I�t=@���!�
F"�7��j��m���P�\7��+1P@�[���CqA
���H��W����DE�%))���Ձ������*�˻\��y>q��ZL�����]�}վ��E�'�T�P�L�0��o��=�7ɶm�����'�M����[�0	��_��;�@|�z�U
C�5ʑ,�ĖB��-Q9n��s�>��aë�!C��J��ʷH���’�Z'bk�0�J�Uf[�5=�
����f(�d�ɪl��ܭ�Le�+�J� ܂lV7��;w��6��#[­��Mr�H��IC�6Q��i�v�:����OO̎�f��'���9{�[���ɶ�0^��K�BdQ�X�p)�H�bH�����c�U���g�G�?�~y�B�G��ɷ��>�H�,�z�����A�J��U�䐰T�W~�uv�B-�C�LkPמy�Ԑ�����Rq]���7�"��'X��3��>z�C��'tzk�R�<0��m��hZ�	��=dq8��e6y��@˴)>��J�3'1=����0��/W�̏u�S�Q�%���!�gw.n��T��酥}�l�<v;��0e;J�bO��y\�\�����~�0BX���#��*�=$�p�J��+�8����|�<���mI:����,�$��o����2�2�<RP/D!�x�$=E���bmg��o�U�:��X\u���[Nfk�����]x�upV�����fN��9L���._7?s��e�s�٫~�2;��dr�$�jR�O�Y��U�df���N��}0�ƋS�L��$߸y��C��br�o-�8Ub�߼4ޜ|
�k��������R������mJ9s�4�&�B�����/�Zg-����e
�[�;�΂��Xz1��i��r<,�і�@^:��<�f�_ԑ/�aH�uv`�����q�Jlm�CRE>$��\��J��I���7�0%��xlgTk��Mx�nH#��z�P����u���#gD��:--5���W��G�w��yV�S
���������_�[>z(>�}w��˧r2��(�HD�ߏ�M��e��j,T2Z��q��ż��9��g�[^}���i@)�7O��X�@���k{����,�z..z�@�d��	�EO2��S����fU	��Z30�3#$]c)ݠV�D�%*�1�~�+F,��S�'�D�G����Fl�;Tv��{��x��?��j̭�zϿ۟��-���෥l �|yK�Ü"
��D�����e�1:������qƿZ��qѳ�����
 j42�w�t
0}֨N`J�p��N,��5�(�;�t
H����������y�ج�z�q�:�%���-��)��^�,X�//�<�&��[��Z�	���,��%Z�n�}�?r���p���*í�j�<v�ڍ���<P_�|v���5<��
�Qu�>�5"��K�����k>>���/�%'�����z�n~�5	*�.7�2Ֆ`�[_h�����;6�#˭�����L>)��a�o:���Q˖����PqZՠXG��.n�L�A���CJ)�C�Reb���:}��[�V�&7FN�[Q�D��pˏ\>.{�d��v*�*��2G�����
�~��E��O�p��utS��#5�8@&�hp�&��5ܒY
�5ŵ��X�W���ܲ��4�<[MVx����i��e�)������}�C(Z���(���'jKJt���8I�
�ᜢ�,�teV��7�ʰ��^������.d��(��m\
|	�Lh��4�-��r�������~��F/���<��~<��S�k���K͚�FL�Hc���q('D~����FϤX��k���(��NM�n���:2A�ꥫ{p,�c����"^`��?QP6�Y�9D�\V�k���S�L�H9�g=���H�I�aK���=˖��1���+�1��9�q3t���>gt"U
����|��W%��1�
Ws�?��V���Y�Q��`�ϝϢ31Bu2�~M���`�#�4������?�bMd�<��x^��xa?�G
�N!U�}�pp�/���ފ��Z���]���c��m��ڗ]�`�c��o;��,�<�7T��?����s_~q�ƍ[_���7��GN��AFk���Z.r��U?�zk	�n��k�l5U�g2�J�H�US��)4�[,�L���wQpg�<4Y:8T��X���v��Ʀ��m��.[�4��Q��̎y<�ֈt��Arjp
�j�!і������U�in���^>�5pq��V=�ӭ��Ⱳi��J�?��=-m"m�ß:qf4��ᑨ-=<�T�]Lq�/h�_�qK+��g�j-p`ė!��qoBq(@3���Č\�9�O/����\���wj
EB �OI���_Y��6�Ҥ��ok�h(q{j=��;��A%�)Q�n�\J�m�x�a���Հ�6����Do���|o�(�V�iMG�'j�8)m���,��w��#ea(�S��˘�MP��.�����N��$F7�{T��Z�"5:�D�	6r�ZN)h�
j�E���s��G��3
����m;��B���ֶ�#ceP�5�S�D��!"uL�+���1���Y�xv���N��TwMQ2�
�K��dW�0m��\�Q�l���!k<k,��R�xV��-��y<� �l]��p+�"�@˸.�[3:���9�[���9�찲c�G?��f�/��^���Ǿ����"~��ڱ[J��f�{_x���Nf(!���믨߹��a���/�ݺu3m��Hs�&���o��V�Zʸt�+k�%��[�������޽�[�\��Yjڰ1�ʱ:���2��p'�|td�ƖŒ�&�Ru���̴^Feֲ<EϠ41�ݠ�ۥQ%�T2���:a�������I])�\�xÏ���\��X���E"k��J��|���[R�0��a��ġM�5h@�'�f�N�xnOe��ˌpk�;Ų-T[T���@,�ПKt�.'�Y[�oa{��>�
kmu[�q��P�o�����$�>gV0�)���}9����[uanY�h��[HaeX���L����¬�?�H^Zy`��Q
)��x�T8���B�`���&���659���
LF����1	��%��	�7�̍�cf�t;|���2�3J��hxpv��pO^��Z),!��0��2PP���o�9]C��&}J���9�g��ys����ِ���
6�:���P�b��+|�P3�:�r=������)�ۑL�6��ch@O�Cs&\��0"�PM +�&�U�#��
���,�6����߬��H#��~�qy��A+/�r����k��_�_\�^kE�;�j�m\mι���ʣ�������r^*�c}��Y]���\?�.���?���\��;8Τ��M��A���8YL���n��>�9}z"c��k>��0�"�ПoJ;�%C��-�߿��k�~��"�Ҝ�s�
�C�9G���
^W��2AM�\e��R<�,p��vO^˂�2�*��ԋԉ��v�*|x�j�0
��X�#c���
��tH�[�^�R�rN��߲cYD\R5(6%�ת�T�\��Vл��e�)���j�t�n�O�u�"1Օ�ޞfū�8���)�����]c��j�"%|h��J�ڋ��q`�b��Nd��	����ry�_�(M�5�HlMf�2�W� �|xq�=y����T�TԹb��	B��5N^���o�V������R�/w��"('C�G�`�{Y�E��H~�M�~�O�B��9���qV�����������@�4����
v!� (�m͍|���Ȫ��!���cS�E���:�Dq�
��/^�B����i�Z�h�����o��*FeJ���O:�n�%�R�� a����!`%�?[��)[~���������x�aZ2�1���B�-���-�NL�k�hnsJ}� 6�0s��q��8�ˁ��|˕�ڊ-���tj���[ ٢��S*�X���p)&��q<��\�֎K7��}��M��ׂ��͛����ڭ#;\�t�+Ԏ�����*	��z�[�&�HS���{8}n-����+��[��$�����u�������[]T�B{��
����9a������,x%,��܊,�DY��@K4�l�D�No��C�(NFN���2�r��}��s�V�@��	u��'fh�UT\ߺ��9�VSR������bY�/l���
ufQ2�ݱjí����C�&|�R�_��ր[��p2����TO�!�SK���u��;c�>&��'m���9mD��C�W�F�"����~V���H�ȴXK
����]{�����{A��./FZ�<�_l��n%�
��n�hy�,^�<6���iM#���z}��E/�3��	h�S��� "�`~�g��(c�9�R��'m���ȚH��I��F�W]�5��{h��ש/��� Knj�F�NO%Ź��`��/��W�IŊ�y�7n��Z�91�6��V��X��Zw42���
�-KK����9I:���]O�����Z,��*H7ؒ��\s�ر�
mr�@S�M-n4�s��`�B	e�e1��-+���E	�Mň�'NKHV�ԞN��+)�*#���/�Y(�]R(����-�t�" �
m+�׫�����̋�UO��~�Ƒs_�v�������"�d�"���V��h:w��4ҭ�����}(b�G\<����[�T#
�^z�׻�֫*����`cO��%
�hc`��NN�EB��Z���--�`~�­�<@
n�R���@�RTVب|k���.�p��6ͯZ��m�c"���෤@��2��[+곙��9`�跤�ܹ�#­��p��@��S�+��"f�!���
��V�����6����~xt�pKA/�rr.4�Gͥl�|�존��A�q�,���*ܵ UL�Ef�GGL�����3�0d��.�������A/�+��ob�����.�,zg��b���q�'�U����W�N�����b�U�o�������O$����'��]![Ǭ�&�,�����S㷧m�Hܪ���أ�c2���L&l��P10H3
n5Қ�ˬ�JT�ǝL��k�/���٫�+�.C0B�����c�?�bT-T9:ˇb�
�����M<�[���d��òmK>��\3'k���zj�
�WS�0�M�pR�f��LI�9�}���	.�Wj��^Z��R����DKH%��-�[�VJ��YԷ8��_���,ܵ��m 3�EzqNV)�a��8�b��sc�wg2T��%�t%�-�9�^���J�^|�9����e�/el�t�@ŕ�K�|���箒�^���w����j}U�,Ih�X�����͛�
|>0�I�]�_̸�u�\��b��p�믿��k�^�
yI������6� �(s�dM�n�/�M&Y�b��JO;�UY���ե�['�1JQT��e�p�P�p]��d�&��
��ipj�0/����-$��}N��~>w�9g!5?�"TF~d�Za�[�S?ЗL�n=�?q++�J#�:%��A�[&����d<��Ǐ��ZQ���<&���%�o5h%owB�x<�����ybq�k-����ɋo~��^�x<i������v��=�����(VR��]/�8Ư���onޗ2��M�x�O�3?��+���b�p��d�E��c���k���ܞ_0*���m�Y�`~�g��u�xsgx�f叁[�R�PT��V#׺��4���.�DaKL���[�e~��d{�!D���3�����z`�U�]
c}l�_��[���+M�n�^Ⱥ�$�8�X���A�c���<���^p�'�҂-o-
J��H��`�2�$�kQj����*�B�H��b;Q���Q|�]�C@K�L�Z�r4?�$��F7=8.����a��V#
�i:��`'���<ϸ.��M��:�*�]�rg��u\.n=cӎVp�
�\��7�ȥ�����������^O�z�6�7����}������W�^�F��^�
$g�gO���N����">�ӹd�,��ߺy�JU���G�|+��Ld*�S+!��a�a��(�/E��M�98�<��Q��QĎ`���ND���mpk�1w��(��nŔn����k�����(���[C�~��wj��ʟ�,�f���
�*��wqK�V+���5$[5r��9n�ƣ�P?�0��Sc�.���K�(E-�G���c&�Y�Y->��!��ݠ(=�E�E���^�'�ۿ7���7��|�� �7{�ڪ�m�[�8�<�<�_���W���
OMi��w˾{HLeHㅑ��g"����=�z���/�E�-����]pKTWՅb,f-�`C�#�7f�V�=�����[%��e;Z1^њ�?��pk��{�#:��V3�?�®[�LJqd#���;h&�G��:�)\#G44[�u�=dN��"/�2�yW��EDÛB�D.��`׉��z/��o���R���މ�]�|��#�x�~���X-*MS��KX�X<J&\��K��͢TbN\<ݬ�Z_~���er��ʼ&f�ՊF�2R�c�̟`lbt�P�h]e?4�w,|㭡[W�=E������m�
<�r��'O,���$a(��
��!���9��+�'�z噕g~����W�[�SSE���B�+-/���jm�꽴s���p��|�2�Z�ŝ���M=v�t���3R�~��{�֏�*���>��=m�\�6&���܎`�x��4���B㉶_NI�4pzk�oWu�Ou�bQ�g�ycY-2�$��}��[˼�.n5d��E=g�����',�[r|�~���S�=q+���V~o8�B��,�������nHɆ�W�n!��F���BFG6mjN�,�q�s�18^_�=0�h7�_��V"o���P��7��߰����	��_W"�J��F�B��/�sI�w�
��B~�u�S��hϓ���:hY�]w���N$ �� ��"����`�7�ȼ�>�=�t�l`.v)��.�VSX�8�j%
V[��N�I�o�ܾjT#M�����F�sGD��t�`f�'v>c���6u^���#{����b�fy�ia����ղ�͏Ԛ�>�=�1+^�/�T%�:]؃3�	|�Y���ug7JyL Ρ�k���R��:S��9����Ksd_J��ދ�9vL�� ����pMP-z�qG��Ї�	�6ٜ-�GN�Z��16�
�!w*kt���d?��T���_z�b��0�B�>Ta��M��lO�y�ǀ�@�X��w4ܲ��e��`����íU�+_Y���z�Z�r���P(���PyqKE~�G��Y��{�ƍ�;�-ߊ;Y����m�-�5Iq����lo�Q��v��zs�ٖd��� >|+�	�o{�T_n����ÆVZ'�q����8��P�-�,��c��&*�N�)iC�U�~��AO�Vb��my�k!���-�`��鵪Eu�#f2R���
�VM�t%���_�g���\�kļp"��\V��-k�,��9A��55�+>�#�����{�g[�3�/XN��nG�%�������ֻw�a{���4v"E�(r��������6,܊L@Mh��g��Q���&gf�ӫU
�
�����"�"H�v���Qo?<~|o�۔��ռzVK���=�oWK�,����շ'�I�<���"��e��9O�|�O��.í�7��\pk&kt4e,e�N��#��4�F���Il��}%�8�Wi��;���N6�/�^��NܖcB��:ǻ�����S#X�j1�vj����p߾Oם9��J;�Zf�
��i!��Vj�9n8uʦ�L�x�Jo�(����������B� �m8�{[3��Rgԉ4ŗ�>\�-�Z����\�f�L�ȩ����L4����ҷ�������n+��\^���U^��<k)�r��O9�e��
WB� p��Y��Z%�z�V�ܸz�ܹ��S�/l͸ԒS\�=U]Ujy4՚�ni�1�M��ZzCO��2�������X���������
W^nM��N}�<N�8+^[CP5I]
ݗ�m#58����%¼،�����!�i���沈��2�'�0իc��Di�����-��f8�Ę"6�ln	H�L�z$�Θ�X��,W{��b�S�D�5�]�Ҕki��L��'\܊4)��$;���?Ym��ޜ\�A'���x��G,�j|lV��1�@�M��PI��Eۗ��Q���W��yU�b�X׺W��@��A3F{1C�1��2���'�=ۈGLu���Z8��C�8�q�Bj:�u_���D����m_�UG�U���(�1=)�)2�B9v�-���-�.���I�~��.!�bZ���Yͩ5s5�-Q\��S�[5�
m��82
�e���Q�0�	E�
d8=`E��@�K��1�0؟�8�Q�պ��'�s!��m�Pp]~?����0���2)��Wnqp��w�R��m�n��w)�����I�؆g��{b���BQ���%wU�i��u�-n���0�L؂��o|㍡Vy�n�1よ��X��0N#��M�yy屮�
�wF�$U�����I��`t?'F�p���{��qW����kB�WV��kZ���7����f�㽽;�r�Z�Vu�_�0�z���n9�Z�Z~p+j�R��W�C^j��a���K:�/2�I� �[�k˫���K�(�_�?�E�
��6bSX5auv��8XL�h�V�h/�b�XEu��$����-��=Lp��p�1����[��[�'�f���J����c��h�՚B�oeG<M]ٔ��2[�L!��e�	�c�֫s�1n;�p+T\��� ��&9�v�f��H�)�+�F�]P�b�7%*�*�-g�볎s�;�W�1������ꤐ�>	C=XD.��������u�B�cgY��35b>T:��%������ ��+/z���FV�'^��⏦�n+��˶�r.Ց��ׂL�B�0��VW`�S����6��&60��b��z����$��˞n5#�I��졙x&�[i��dL@hv���?N�D�;�9�6���i� �8���a^�8�V0����OG����Ht��p�{�A8�Qd���SH��v�e�8p)�ڜ�q�F�.��V�4�������u�9
�[��*�\X�q(]H+��Pq7����Ԕ��+W.�gN��hx��鎡�S#
S��T��㉴����1�^c#}�U �ޞY+�:������iI������|�[���p�&0?}}��W�~e�o����J���[�]���7������W��~�[W?����+\za*ܒ2ں{�')�j�FP\�j�&��>�=��{�J��-�ˁ������:�ċt�`���VEKeb�`��m�66�*��M>��7��S=�yc��_R�R�G�͈�8ĉ��J=�'�P[)�4�XtU����t�ؐ�oK��F� u����Nz3/_"�2�������z�ݮȎ����� �D�|u�ܤ�%<��F�F�d��4��p`�|�r/���#��85F^���Kɖ����}�z�$�7�v풘�n��,���	(&]l�O�-b��o���8b�z��qD)$��`����b8`9^wn�DG�n�+pS%��.MeZ�@%���+<��&d	���<����%b\��Ld�����s�ZE1������O����Q=(bܪ�h��"~��Z���+ߢ��b��o֍�$�"�GOQ<��~g��Ѻ�p�Aj�ΟϤ��j��ȉZ��䕧#�O��k�Z\����1� �hF��з��Hj/�L�o>|���m���}�%Z'H��N$�jc���T�Ј�ec_��zi�b�9�J���zy��Z	��l���l*����0yꭧmEF1��7�;�wT�YͣTΜ���0��-���&'�JBm2C�[�SVqG�!�����f
;������R`���p���άzE��H�2w�>8w=%�k__;�����n�szs��Hƥ�1!m�:Y�_Eq�ryS�-��[�[��U�)�Z.�f��)�<�D� n����s�$A�'ew��kM"�	-
n1V�[LNA�琉�<IK�ª_��\���0/ڡJeR�Gl�Yh�M(�c@���x����íl¯��������d���m'����*�d,�֋�[��	0����M�s�h��2opk��G�9�	W�q�2ڻ֬{ޖ;[2��d����
��w/$B��P�%?ӷ�aߺ�([����d�n
�Z��"��liT�����H�Tbz@�*]��C԰�	Y5ýݽ�~����K��q3����MۀKbK�jV5ď��p���O"����o�!��C�4A�8:�*q
HE���d@�R�������Z��e\�{���n4A&�-�(�,|?����;p1}c
yѱ�K�9�)S�)B����oqhf��FƮ�J$�CFJn<w&2��eb�t �%�R;��FD���v��ؐ�(��7�[���~b&�JU�U�|�J����v�xĂ5���Y��~J�܊���]oUN+��*�x.��|�������?�[��n���r�g-
��Ƃ[<tSw�Z\�0�"3Y//��v��ූ��ʪ�^[��+ܣO�������[��[��R�����ݸ�[�l��[z��-��M/��#�~
�*νvC���x�YBU����ԧ�^{�D�M>���ǒ���{[i��Ma#R��	P��*k-�W$#˾�㿵2Q�Ea$�B-O�\D#��`#Ӎ�ԉ���m�h-+ߪ����ewJ46v��),�7�G�����8�������+��|��-�"//�J���>�dž���2ܒbV�El2+���:.�X@�"�’�<��a���G��?<��Ѧi�6�2��'i��E���$��_�x�^-,
�1�fi�ِZY��Gڨ�,��4�ς���V.~(��!l��i}ʹb�jw���(�{v_��S��6�,"M�ؙ35�m���	�~&ߺ�d���)ة�)�Ikơ(>#��'Z���d�2��1V�/�I� ��Fq��y�;�D�t	_q�Q�YW���<Ŭ5��Y�\m�;�%�JF����}�1��@p�V�N�Çu��mӞjp�JL�w_E��gv��]�]�p\�yU��|5����,
�P�L��In��� ץzyh��J
��`�
s	T�S�C
$[�,g���C3�����א�>�{���-Ţ% ���cxA��
c���ܸ�W/�5˗p��^[�����&l�����U���������W*�����ymm>r�ͫ;S\�~�ҕ�p��O��z����3�Xd
r��E�V�EoV2���J�u{��f��_��;[	��Ѳ�V���්���jJ�(a�4���c��4Wm���L��5en�%�f��Չ��Dp��\M��2R�QJ?u
�n�|es�9�Ks~k1Oj�Tzy�U��O�(&�6ߢ|+vA.���XM��x�^�[���֩��\�$ԕ >W�&N�:�Q���x'>&��T�c%�bА����2�m=��v��7��}t
�z2�HX�*x��t)3Cڠ�H�u�련�	�nqi�]ʹ��*.<���1B������]�inD�X�hڼ�-|�^,I�H~����N�LX��=['�#tXx���0䳽&���D�����>�d�,�h�6�3/����^cLK�#���
����bUq�w�Bpy��5�:,ۇ3	6/=Tc�Zq��}����V�w�����J-�p=u�7�mm�
J		R�Lg��"�槺�Ī3����/F�w�ˉ��NZ�\�V�zH�?p ����0� �+4�8�YZq�����l��-!WdM­E��Fh��e<�b1DzJ���
�c��ͼ>�z5-Ep�1��=k_!����K�淄c�Z'�N&[���_�������?p�捭G䣷�@~k����ǵl��?��<�kA��&��lك�+/���b�Q��⦖����O�jj����"�Ǣ}�Ȳ���`�ޭ�2R�R�j�Q�-	q�j��RlM�p-�4c/������מQ'rEΗ�qQߐ�o�N�ȖM��[�hC�sX�2�]_��`kù
$bUqȼR��[&ߊ���=U&�O�\~n�d�s�RSՙ��:qd,�~~p��F���l�˫RC�!c>vn��m����I��vs+[�e�)6�e��UU�>b�cm�&��˫��0ˁ�u��I!i�^�ܯV�j�"��t�n��Q!���g�Y`)N�%�>S�?�R0.�`l�f�:�d-��'����C1�V+O���	�1e�Hޕ�l�B1�\ˬlȺFr��{�~41	�X�E-PtIz2���b�\��%�0fU�Dk�h�n�_2�5���N��C�:l�UWJ���נ�N��� "Գ�-B��N��߅�ozϵ-Ý@*�)��@p� �x����R��㓇r"\e�Ԕ�Sʭ�Bd9L�IUg�ǻG�	�C�y�,���o�+�.�Jߺ�~���"���6�j.�޹.��w,�፟��m!�z�׀Ι���_
��\��E��y����S32�6TLM�Ȓ_E���U}����֮pRL����\��ϧ�U���ɵ�z�W�_�C�<��ZK�u�zKo��DXy���p+-+��E��::f�s�`�c��ව-
�$�G���)2.9B�.��:q)��[���mD�Չ�JQ]l1i`���N!#K}���
�b<�A�o�����fL��s�NNɑ��А5�����ι�8*R�V�p˥��)����5�5�3搝f�̭x�������P�Ug��k/����LX�^A���p���f#݄�� ���7���%};]��R9>�Rt�˱IJ-y`��yVz9��ER��c��#�����M$�2:�9d�����?�q=W	�D��ZM����xyW�"��yZs�	�~���Fay���w⽳�g��FL�&�!�n�2^
y����~�kBSu��"��y��0�Ô�`����&���k4gw�n�cؿ>TggQ��P�=�p}�ىϬ\�-Z�Q���	u`n�f�3��>A��Y�7��nԕ��o��0��
)�6ThW�Yt�(���L�xT����{6�yn�L��b�+̙C��n�E���k�ӳ��3���Q��0c&c�^T�89�i�@bY�~\<X,�<j�\�n=#�*�ϚK�8559y�JV��Oe�Zf_I��`{��d�襗��nm�F�['?y��[�Y�o9�}�-A���__p��|�����g��Z_��<u�QU��$�V�8�{�r$��0VY�$y�_�+`��ҽg�.ީ/q�<�|��aY�����R_��[&'�6����C0^R��cj[U��[�a�wT��1���g�E�-�ȝb���s)]���t����5d[�7���r;�̪����揍bߕ$�P��vMˠD7�h����/��>c�	�z7tw�[|8rWح����ST��F������yO
x�
n��w;�i�JM�/�"�g�ޯJ�!zټ:(3��li_Z9�~���]�"=��V��/~��6:�(�f`f�D�lF�,9V�o5�v��}t�6
?g���YUFt��s�}f�Q�����}Ųhi�k�ӃbϪ���Ȏ����������[�I��\ܧE�K�U�'��U��.
���9�%�z����<�{d.e���"�Wy*�Q
I�EaH����55��1.8
�O\���Fa�	�D���Fg��P�lYh�3]�M��=�Ҳ�bM�2G`�4�D�����YO�ۻƈ�(��5�c�dɾl�W��L����{����n|��|���dE�^�\���]S�	�'�[ۋC'����^Q��u��yC�`��h�^.���a~��$�~���|�u�hoo\h~�����"T-(��«,̫�)�G��I��|���>�cn�?.OmY�PY��<ˤY�(��"9�UY�h>V��J
��[��9���-� ���<O=�}C
)VnWՎ�ޤ��ܝ[+�[P�pk�HĒo�2[�n�[��Ҽi{�|�z�F�9�,^(�V�T���I�-�X#P���#6:E�>']��?ZQ�&b%��p�G��-&R��`n��.@��.)����Q�|�k-(��zV�\W��([%����z��	K���H�槠���'̅�c|Z���P��<���&��0&V���o��_���{>��b���:��T3&k�)����`�(A���+�k3��a?B(�+���N��U=�z�f�¨��w�uq�tc�Mr�5��7ψ�u,�)��˘L��e+qE�	O��J��OŚ���d�VrF	
�U�=$w7��}*�
l��G໡�GQɋA���	C,��l��پ�1����O�/��!u�u|��;,W���%Ń$`-�^�����V<�I�7tru�2�k_s�Doqo
���k,�#����r���z�ֿ���ڃ	�e�I�z�Ϟ�u�B�:��j9q�?�dg
���;���_�����&B�+U��N*jkk�%#��2F�Ħ��l�������ZDz��=�����8m}����,�pY��ΨD�DZ�Z�+[­	X"�s�=QR�p������c>+����%w��Mi}
���- l�����g����C���p[��\*�Ӵ#�[�i3�N����G߈�F�E(�r��̠ɒ,�u@M��k���C���ҝ���O�CH�%uqˀK��y�
R�"�F����ck��D�R-�Rʾ�g�C�a^[Ξ`�91���0�u�d�ORab	�`�3BI�������p�	�~��?a�)GБװ(�Y.ͣ$Z�R�3�ǭ�١8���|�s/j8�Z�A{��j�0t8Z@�yX��.�m("&����g81`¦5��qɸ���3��s�[��t1@�ae'��V���D�l{c)L�U)����;�9�.w��۸��d�Hr��q
?<W�#Y);9�ֳ #��]����ꇇ��$�g���rpKٕp���fuw����:<쉰�i
���ֺ��ve�Δ�����hZ��>(�9'������(o��`)���^�|⊸PKWn���f����r�Ƶ[��!��Cd_Ԏ[�Ob���DUk�gGՆ��o֤�_��=<��S��?���J�ś]>��N|s�[��n~!��By�*ym�<�S��X���1��wiw�9��$,IWU8a�Wج~!�bԴ��(8��XI��$�:Q�(_y^��5�5
n�fǑ�E�%hwR�p�ٻ?�Nl�pK�Vv�����)�zb4Qך��m��d���X5YE�b�ŭ����xo1�S31�1��S��|��[��������?����:��u�(�,X�E������Ө�rё�#L��Ⱥ��T�@P�0��l�'̣t�kF�JU!�p-��[�a,���&���ZJ�l�ș��^m��&��x��N�}\Yk��T�JD���0�l�:�w�Bl�D�zX��/��_Y���^�C�Nɶ�Gg�gf���4\�%:�Ѩ"�
}�/V6pI��Uk�'�<S���Jj�A52$�x�@�������&���5��t�lå=ml�%ܲ���%r��QHj1e�/�^P)��Njy��-�F-x�b�ݜl�a!�@AG6q�������cIm����Y�*Ӎ��b!��,�na�p�!$T����Ht�H��U������M��w(/_�L�e��F�#�q���#��VEy�<����HU/L3�)���z�	�>��1*�9'(��ؚ�H�`��+.�⟖25�N���&��"����Q���G}
�E�~������l9���~��Z�=�[a����+�$�j��puX�.zVV'�)�PK�_p�G���+(�601��]���;l
O���ȷ�Q�F��5�r^��=��(�S���H��߹�=���UQ5?� V!���'��>��}v
�Wu~˴�­p�d�ZQ=WC�ϳ�����g���֬���mf`#y��[��_zG���� ZY�y���\˫�e9)�@�Y�#�b�Y�uG��mr�ߊ�B{��V[�˃���^���
��tK�h�EG/=�V���׸�x-7�2�P�`K�D!�'�p�?�?���wLħ�'`6u�M�E�E�U�1M��D
'�p�!;�w�� �����`˗P�2/�,
��li<5�ۊ���}�
{�z�!�@[n���:�v�jϩ��%��B9���Z]�vޖŖez�
�&0�2��
��E
�n�Y��W�io�N2ڿ��`R{�K��c�x��3�[�)�jq@��Wg����C�֡�b�q*�����飠>�[nT����
5�r|JH���F�-�[����pq����j�.��we���S�/jE�d�xܠVDs�(e�9p+�{�77�lF��)���f���x�2XlClR8�i >�i۩���D
rʙ�̴*����c6��	���	"[#�V5PL��Ӷ���W�_`�Er��
��X�LD�m`k��ص�]{bʶ���4���V�e��0沧�	������Iޤ�\��ayQ�e���)�S��'����j�cl����-d[�Nk6l�۩p���1�y������Y33?��6�<��������X�J�兹�����sg��&���LL�z�F*SRW�`�*P��[�BTa�g=p��y�}��� j��\�����}tW>5���}�Vc�ĘAal/\�F�}a��o��ўz"���S/�&JU~|b<9UQ%R*b
�����[�EF�8�5�WrPu��Uk��Z��C���!��=k�C|�b��3;��G�����[1x�ԕ���|*�WH+\��m�6�7.�1��}۶lތW3�E�����}�z�n�7$�R�8㘲-�c5DŽ[GY]�J��lB�W�*D��ض%����7�u�CT>[�<)k���A��J��ܞ�b�+�����X\DOm�i9	9�e�Ň��!D�j�b�"� ������7��A:Y�NJ�o\�4r��i�i��㆝R�����2��Ԕ1E�[��Wi.b���r�l���͎b9�;:ӝ��h�v�7�p�Q���l�t�PS?��b��g�+7]t��l����&�

Ner)"#5�^-
?���n��t�6í����F&�i��s�M�[�z�P=II�p�[!/lhҔ���AY�%�Qġ}>x˳E����H�g���J/ˎ���juKk���
a�7�N��nw\��F��6�U�W�찄^B)g�W�����y���Zd�viVKġ���n���UY�Gp�ɴ\�2'�&�S��ڠ��� �?�h��:H��ƽ{Qx K��ݪ��`~������[EY6׌5ό�2��
'�3Q�[6^
M��GƆن"rx�X3��0ˉ�^۳'*�	j~S�e
F�-��/
�G:��{��m����
���=��n2�`�Y��(2{�z1�����/�qaīC��	���"@�MY����+��nA��^�Y�i-�dN7�,$�`p��i�h�w�V�wO��`Hy�9�/����!/��hy�e��|�W�[�Re�b����p˵i�[K�aN�9�� �.��������g&��d�V_9�;��j�"o�鑊��n%��꾥����Ks�_�o�6����H�!A�l�2�C�c�����Ç���"�|䑭/����7U�Ϣ�:8��QjoQ]E�WSQy�W��RK��7���d4
;k1
ND3[Q^ �m�f��%x�E��c
eN�˫��p��t�&X?����4���"�f�x.���oE��eց�s��%��<��-*Eg�O(�n!7=(o��9��j�m���o�]iɝ9=��w� �P�J���ƀ�[�%�@%���%R'��iϮ���췝v1u��74�����x������C�R��*D���,�`	Z\.r�7�]�G�ؑb�.t0|��xD��~P�x�Z��-����z"����_�D1�æ	���n� ƺa�F��U��fi��:26���VP���&{mݞ�"c�R�GKx�ՍasIy����GNj"W��ǻ_<�L=�Q]��F���}��ΝώkU�.��%�����o��ۏ���bwB�ğ$\;�r�Ea�qsJV��G&/n�p5Eh��$��얗�
6�e��HW������ޓqX�X�eY��&��39�N�N^8̋u1\��ʹxG����ډaT��Z�-�F�V�n���eH�M����>�(x��������`�@I�,mu0�X�V\r��P�gI��rr�Vj֥��xr,�jV
����?�?F�d)>4ܲ0�Z.�ɦ<���@�U0��l
*^R0Ri����)�Q5�$x����`0�VO���<��%�)��ml(�c���k���9�2�_F�1C"v}��m��+[�ewjbyZ>��
@��-@Rr�V%�����ZPC��
��1N.k^qi�a� q�-�
�`�uv$�7wpd��/�G	1�b�jC{`�a<as�y����H�e_�1�nZ�;��w������g�,1��ͬ�Q�q%`ޝ��s'L�Ζ���?C��\v���'����S�>�h��C��L��d033i�,�s���o��^��n��RY/q,k�*񈜉(���bԄ"�5�@*�f9%�-YA?���䐮��z�@V��Ec\	W��E�h�t�J��1�ˡ�P����D�/�}Ew@QZ�j���"o�2���**!vI�܂_�#)_�L�7�f�*��#�]q�gdND�,^WR2=�/ty�p�>�#<��VK;�$�2o��I��LW{��ϼ��*~%.n�&+���[ά��`�>�l��+��zUX,���8��ʋ�]�fRl�;�ۘ$�Pj�:��e�� �vLI�۵ﴫ�2�"��k��WvnO��ˏ�jFgΞ>��Y
�c����t�(~�\n��(�Gݺ�<wn�v�~���謿t�%�
xqq�%	'�E~k��֐��u>��!�?�,��-)��,D��đ�I��4x����v�[�~-�I�"݂���6q9|{�V�\*dm=neYH�E�ۚ_��Cރ[�1��*d�pW�@���;ݔ����
��B��ʝ95���7���.4���^�-�)l�^��kI����r?�/��q!{�U#zQ��
����/��$XfU"7�Ln�VK�+^W�rR�\��[gM�����J���{���\O��x��A2���æ:�X~����9�[8}X#Ț���zF�T۵��:B^
�=��ܱڐ,�=�	ì��~}��� ���V�f)p��P숎b0j�&@!b^�[�|\���Ulvf}��-�Xn5ApLo{�h�<W7n5#-'�����-+�s��P%"G��ڿӍ=_>��̼��\"m�{G��a��X1��6F#[�c6���x�M�-h�Ub��g�g���2N�I���uq����l�G�d
➄��.DkZ�u��-p�����7��`yGNg�`�ߋ�WI]��81D�cG(&t2bMR���S��+�'4�0;;2O3��L����iIP��W4q�n�B~� ��{�mn�_���_��>x�&��2�`���
��On��[.�E�ڍŠ�P1D�n�ذ��L��,���t
F%�"�lDq˛H!C�ií��+ױc..;���
�M&g��G��1A� /���t�-�LE`��I��5���`�n����Y�4�l���o��;��������\`��R��rv.r�\h:���]̀�x$�g1��$t޷*�U������7�Ҭ��׈�AA��R���CӪ��!/���Z��e�x�Z#v��"�[p=�����g���� ��g�kFA-9˧�ECQ�]�������E�3��L�m�������LI�X�G(⸰�.�|+`Fͫc�N}��50�* ,�����W�e����]�_yِJ��DM�ž�L?N&�!��.�{:B'��-�L��6;}�N�|��.�V4!������2f�5ni
&���&Dc�L��Y��Ba!{�(��p����i��c`�Dw-�5�k`�?Y���JR�+�[�V��o������<��|��̜�3�y�9��F��O���&�v<�T�[Ҝ��v6>
����q~��D�8`���^���◨-�\"�Vܼ}[jTB+y�ݰ7����{[�K���EۜuQB�̏��d/TQ-n�I4�;�>�¼H�f5a<��-�j.o��#e����Ӽ����%e��JS!Vk�U�oU?�5���)d_�H1l9e��
�dQ��R�a��nR)A�%����`~�`�w���
��,R��@�D�"��`%�l�!�NM��g�a|76����9�Ih�����=��
��Sw�\j;*��t�����!�ɪ��;��i�wHl*������^!��j��{E=n��^�
3W���'���^�_��*Ώ?��&��f4��( ��W�<�V��"�2���m9�%�P���$��a����*̂�������w������d3���:��7ŝ(۲ha��/&�9f�("��=�z�"�q��������jz�^u"NV4�J3u:�20K����OY��[��[C՜.#�@�F�$�b��P#���~�� x�-�\-V-B�`.l�.ܭF���z͚�ϟlɾn�\��ɷz7���v��s�}}���b&�כ�p�A罨������2��X��M�c����ĕWgV��HW�
ܪlܶ�o~��\g���~�G����hj�k`�P�Bw��}��wU6V�� Z��U��v�g#��cc���)	967�ʜ>TVP�B�U��"n�+���ߪ,��(�j�bK��%�ҤÊ�ք��z�s�4U���AT��n��bí�Z�ne�"Ѣ}��n5�b�l�Eh��U<���]��P@Eq�L�i�HM��D�(GTMV��Ԗ�rA~��{wR�j�Le�����#-�r��d��c=t�/������u	�6��H~�;���S"b�PX8B�w�F�~H<j�B��dy�4���H���~���,���s�9���&oyt.��Ƀ[������ٱ汞D[piN��tKӫ�}Kq�TC[�5›TU�1ڕ!3��k����n�u�]{�g#��q���f�����c8�V�	����]�2��S}:�ū�5��~�_2(>��O��7;�VG���--�$����Ɵ������]7f���nN�p[��=������½�=CW N8�6k.~a	�c��}�pli�Z
�8N�M��. �2�2~��?ab��?v��u���}���)|�����|�����,�Kqǯ=;�r"�fP��>5�4�N����^�dĩal�o��Zz/aL]��Q���2-�Y�$�Z*7x��]/}��}�I}}W��f������w0�^��� �]Gϸ�|�I&}N4����ospݩ'O�e���}���;T'��No��ko�B.o��YC>���4$�J�m���5�	R-f�[T�*����Q��!7�v-9À�`�L����o?��`{�%�NHC�z�ȶ�O�V!4�+6�>���D~YI�4��`�E�Ciݨ͞Z����oj`��*�q���.dq�NV�t�
��+����õ��U��łRK��1���������5�W�/σ's>�h�[���=Us5s��H��*?u͏�u!ۢ�8vd�@e�����em�k�`>Lsc#YT���̷�*{�a*)����B���[���	G����b�}scˌ�_)�X�&����Ҷ�W�{z��(��L��[�2�Cp=m!02!�EsJ�N�����ͩRB�f��lNG42*2�<1*ָAώ���"�G:��%�=b�����3�C�!0έ�g9�%��o��Ѕ��<��zp�/>h�z�:����5ʯݵ�v���5-7,ߺ}�u�����^V{y�����s��?}��u��Zd���*g5_}�v��…'�`&k�[å���r�t�v�`���r�dU*��/�\齾ᖚ�dZ�e��)l���|���O�}����?�a'��ц[��"�¥���H���Ҥq*�
���o����ډ2b+8H��:��z�`k��2ryv�n��uQՕ�a<�p+8�1����NQs�[Fo�i���a9?"����(�i2�EP,�}od���{d��(��!���B}��
0���I�4����Y<�[L�x��z�	I��ѥ�]�j��f��d���DZW�^ �ȷ���\�
TsU��
��}���3�����2�0��?]��V��3��e[G��Yf(��~s� V�0]����)�$�@���&��LlH��'6?�fp+U��cǒ����]ܲ�w �ƪr^2�q���G��Տ:�!KJ#�W]WV�o��m�D�z�!�-Z�y�#כ
��J�(���*K.�O��.fW��Q�.���6���X0]�$�x�z�pk�V~n�Dw}���:�9;…�e
#~+�:b�'��>:�c��﫫�����p��Y�ն��Xg*�{�(Y���EВM��d��d�H$�pk�g\�U�r��Dn6�W=���_�u�>�>����W{J��O�����͟S$��t��O?}sIIf��k��ѕ?��K�\����T�f�����{����T�8��XZw41}����qI/_����i�^�b��
�~�ɗ~��~]��O�O���`��x�:q��+�Z�U�i��;T[F�ߘ�>��V���㛴�)����6�"� �o�d�_�S���|H-�(�e4_������LLq��Y�[�o�Bc��m����c���n�B�����Ze�5���iX@r��@
t�#5�!"�X!�t�	�<x�+�E��P���P|�O?R�α��qW�%��ANW��(!\�rmu[�c��W�w�<2��h�nݰiDvh+�Z�-Z��mf�PzM����k��o9?��G���{畚�M>���"�l��H�ve[��:P�T	^�^C���@�-X�X� Pl��u�;�$�0�Ӝ9�%=Ty�y�80�>D�U����q��D9�-^�Ɖ'z�.o�l�ٕޙ]�Vcuu�N���sk�(h)��-��iNِ�t����W`%o�B�;�[k��62����k��uv��k #@���O�2p�(�+F�h.�bQ:X�OJ�xpz@j�D�g���Jk�"���%���G��7�[+N�S����$�㢔Sb���܏!�Sq9A�R���%��*O�w������k�\�~�ʕ?$���~��4�>���FpEdr\��MS}Ý��$����Y4��ia���?��K/�����;����Ecy�+�>n������B�V��5;By� �ov�[�X�+�_��0)Ķ��xƃ�U;S��|��`�V^z��)�ʾ�$onw<��<�[T��!sy�|b�$;=��~�i<y�L.�&�L�g��Pd���1�2�m��h	��˼��.w[��KJM*32`1骀�{8Y��
�Kej>9�D���{��_�A�9�M���T>����p�R=��g�QK%��)#�ש��8�lG3��s�k*܍'[��3�ֶ��U�'+��~XBCr��M�ەre�m�+�(cn���z�z��w浣ǿ�'�,m=�p��p�n!A�C~�ω�h!ZCA,G�ʃR'N��W�0�r�pݖ˥E��.��>�.�af6J�����%[6g&�l�ՙ��FeSU�����B(�qKŤ�f�j�cp�d���8��V����oWPH�ٳW���c#lDG��]4	�h�eC����'κʦ�`�u�����ʀ �ۢ���)���P�K���a��`cĵ��*��E�R���;]�	�J!ȩ���F�W��ёl����^��ǟӕ�q��	n�r	����:�5��q�>#�>D� ���C}��3��n�x�����u�/^��;��/@0�C!׻a��_P��O|�a��N鐋J�����5kv�UT�N,��n9���.���MF�j
�Ҍ`f��>�Sp���
st
�;��@=�
�Ο3~+n�s�-!�Z+�
��"�HS��)�m<�|`�l}���3��#��]�v5v�5;�B��r=�
o;�"V^�e�LCP�c3p^n�R�.�(� ���s9d�]��6E��Д�Z��D�@�P�p��Ѻ���?<f��qw���P�c$g`���Yʵ���!�N��Aw�2Q��3��{�}B�[��^��t���,����ɪin�Χy{j�q�0D5��j���u��$ۢ4<#�fN$���!��x���2�bT}>&�'�|��,'��
[z2+�ڗS]�Ve���wK��
����*�ȶ��oueuU�˵'��wu�̼�-��A$n����S���W�Twj
�5����{������Y���L��'�<V�9��=c���A�ZE!4�	9%u�
ʷ��@�T�ʵ8�݅�(��[ϭ]N�~)t�8���Ȯ����,�[M�WR'��
j	��;�K�k����;s��E~/�2�Z���?��u}'����_���t�-n�N��O�=�˛TTG�52302���G�n��Kr=�Y
��[Rqq����i��Gd=��������+hU��
����a�����'�"V��
 ������N�?s@Q����l(n}�v���U�;�*֮�D�?nc�^~�4C��TE�;?ƭP8k�p�\MrM<��	8�M�N�,íC��f����h�@�5����;Kɒ&z�+h�"]^Hص@�8Jc�)�ԃ�\�zRޙ�U�e�6^��h�7��_�V�)���uw��]�K�Q�v7
���X�����K�R¼���%�R�v���X�-�'y>�g��><;ĺ������S���f��m5���b�����1��S�uF�EHg�G��U6��ŢGe?����=���(=��G�ؠυ��E�!$��:�uo������ST����1���\-�m�r&��&��Ҧp�����Wۺ�.�j�ND�3i��@-	p�C��eͫ1*�
oppH��� ؕ���ּG����*��:J���U�#�����N����gN"�[���Kz3T���K�/\fG�@��+9��,:��S��m\��V���=j��ݸr�+�N�tt7*�1�%��{�|s�%�Xe'��H:狡j��������k�یa׿�[�,�'�~!��J�~���d��K.
�jq�{[O��W��Q��/���o�k߻���a��Ǫ��ބ���,�D@D@]j�:Yq��,,ˡ[�S_l�LT��S�8�ۿ��P(�)��yO�ho�w�|�m1@�N�rW�>s�[dO;堺”���E2IJ�"b��q���j���N����`V~��X8�_�6��Z�u��Cr�&
���–��ZE� �X�x�k-�⑮�b�Հ9�����0�%���٘�\���rY�\z�?6������M1֓h�U�����e��6X�X�A��-�?u�4��f��[�_�������tk��C�S�%2��r���V<fTD��S�:׎��{���9�&p�h�b�W�w��^L@�S�%5�Ϣ<���,��hc{��W߸�~kWfU߫ۊ���(W�$��'t�&�
�Us��6ڈ��������]��CZ���\1j<-?f����+Ԕ��'��2���G��=fNJ��$J�o�;�D*d�>4'����,�}ph���ܺ��v�)�����!+��}�n�7`K	��!܄��A�6�p^�!Y�\�F���*�1�2^~�joLN
��%{?����Z@쫯���hߊW^YWq�{�Ĭ��$@��\��'���^bI��n�/�Ҭ�y�v�ܻ�گ������
;{��������o�ѻ9�B����ߺޔd�^p��)+|�3�ƺ�ZðBQYe9$E���2�0������E
&���S[B`���nA�3O�5��v�f����U>qdr�9
�IIɗ�T���[�����$��x�o�`�)�F�58?�L�H����Ν��&�E�v�I��bȃTa��?��p)����do��
)\xr�ϯY#����B�p)/g��\`╊Ov@�u�dP��d�G��m�M����f��V�o�[�R�(
���`�?�����쿢��;�7D]' bF��(d�C�a2f�!Bf�<�``
fi��@���Dh){| ��Ě�&͉����dmӞn�MϞ������4i�k�2̌1:3���~�}KFιQ�:^y�R��2\����*��hE�%5��$�JF|��C�ZlQ���.5��[V�A.q��조d�j"��nPq����j"�:=T�)8֞;UP�w潖�q��qmw$2�,ۏ�.h�\t,�v(�XQ�tfAg��p�����"��;�D����Ŧ�@�I?t�B�Ζ~,�o�[m��6����ü#2��ӜJ����|�+G<+X��>���ގ>s��|؉���zv(N�cfR�[ʭ
Q<LTBz�zYktm�����)e1�'�p��F�[�o9s7Yc$Y���������S�N���!�[G���Y�t��]~]�e�ZҥԺŇ_z�7����C��������ߟ;w�W�
{�Ro�'.��:33>_�s�߻u��qQ)�
�&�*u���r�
���ā��#�Ӓ��D��:T�.���鹶n�|u���ǒo�A�0���$��.o�r�%�ฐ�f��ȣ��S�5��I
|�c��ɛ��.��<�cM2����2�j�Kg'��:feY��L3}Ϳ�֫�j��C,�^�?)��V�/��r�ȉ��'�B�O����I!�w5@�^\�l�[[�k��0��*_���@F�\�q�R��޶z}w�_�v������d[l��(;t�l'����]�^%FE�okW��ڂ[�g��m��q8Z��-.��<1oj��a����k2�i^\'�9��EO~?y՞f	�p
�[Vd[�h�[���E�I+u��j�`���FxE-�+�Rfy}
E^�q�E���t�[�N���݃�C����j�K����
��ٖ��No�:[�5�y�("����&}����q<i����V�*���g�w4�P��ހ�BCz󲳝�M:�3�����uиobt@���(u�sB�T�j��F�9R����t;�
�(2R
\~mV�$^�pK�e�Y_ڋ@�[�.�e��a�:����z���ʍƊ��";v�2��YN�B0����̸t]���-nͻ&�n�%�33o|�.���ɖ1�s���[�cvgc����^���7�|{�v�����nO�bT�<����L%�7K�ȣ�������V�ߢ5��M	�*[EE%b��}ѝ�@��S��![�����[��팹��Z&�q�
=�-�"�K�V|�o�k��yl���­�<ji�o��*s{"�_���	��4Fզ"�7�e\�.�{�X���'JDP^��1�ez��R�-"#�.<�R���Ӵ����p[���CU�g�6�"�@�����~T4���
C�ě7o3Cߞ�]&��u����0s�..�%�"�N�D,a��Y�}
�U�䇛�������?*ja�닏Y�G\�9FL�[Xp�-Ϋ���*d���S�nK��t������G�f|����f󪧹kL,�c����WT��3�X�=t�tf����饙���YR�/�7Cʓ�Y�S:Gq洳� ���^��gK\�RFӏ�i�="gn55a"��NM���a����8�D����!��7�}���fcUձQ�	��:�M?�s}�
���ȩe��d��9Z����f����a�ǨY'����)u�'a�_M--�k��s�#�Bbo��9�P����y�b~�3N�-���	�~��omJH��6�_�8>z��G?9utui�ť����p]�Er�slYz%���?6�e��n��BH��ku��&�LO��O~��ĝ�wG�ƼM��FO���{�_��ޤ��P��U�}!��{
��Ȱ�)��^��B�M�H�؀I6v��I­��N�<r�؂�)u#�C.zZ�Ѣ?ƺ���p+B�5%C�­	s����1��u�[�fÑ�RVj=�x������&^�[��3�5)����0�h���[���[-X0&aw<\"'s�!�֦�&c���[	�{]9�E�Pp	-w1|&XGGў]�<+��^�	�j��4�N��C�C���2q%���FL�R�t˶�h�,RD��D�FKĶ\�4�C��޿���or
�Xy�~0��OZٖ�YiMU�l�Ų�t���D<s�j�#E�;���em}��]������^bLL�C�T�aO�XG��99rB�Y���7�L�N_+-9s:3���t������4��H������llOg������%�!��Qnm6t^qb{)�ؽp��m�ҝ���S��m��v�p	�:��1��S2U���뱚)�6+��Υo����e��A�3��­�}^ļ��nƏLn���2�!S8lY/�p�V.�W��1A��'����T����H�x�f�'h�Ip�ͶhI@7��!6\�e�s��ב�����S]��oh�(�=��/��/����[�D�w_�ov��Gz������������cq�;<!9��|i�m����߽��/hT��+j�7s܊�`!���i��f�ɮ-haKy}��Ū�b[u�I�ԁk�hk��-�"��όx�ȝ������p�ɭ8�[Kc~���ɭ�)׸55!oC�H|�PD��%c�lk�1�J��7zv�[�����(��jX	����}c���C=����֞*Ndv�s�&�q��8PW5���Z��H�DLa��)���o�[�r.�)�V���ߐ9<Ђt+<�EJME��-B	E�z1��$1c1E��.��P�����OX�����e�Fy�tM2Ӻ��O��[�-�	[��֡<,���*1>^�-檥#O�����&���È��T�-�4
`�D���P��r�(w\�Xw�X�z?_}��M����i�(���i8]t��VtU�.q�+Jw��7�[�El�/PQV��+=�ٖN�8�[q�Uk�&�o��8F���Y�X� )Iv�;p��u�������-�@�*�];wĪ�A7�2�?i' �Ǐ'2*bs�34�=��y�C?�H��]%�	�Z�Z�I�[J���~��|ӗ�%?>���AO�o����'�'.�Leg�<�_e�Z��ٝ���FX�����r¦_���ؕ�歬�QD)����]�1~�p덻/���D�������`��H�n-/��N�y�Õ�����^
<�4wc�|�ۋl�X9��K/�?��g5]�ɸ�V��,Zӆ�R��q;/7���3���Z���ϔ+0���Q�s�,6�2W��4�)�ߨk&?�{��u�|��¶�~�W7Iļ!��*���Y�$���g�[Bv�dU#��"�o�[����Njv��]�E���o�)I�(�Đ!���u�(�%�X�H�(�RY+��!M�L�@z��)�u�^Wb�Y4Ki)��?���Հ���^c(���ɢbKѤ7�
`q�k�J��4��v{Z�i5���I���q��O~�M�o����U�6�Eb�0F�1�W�t�ȶ��B}���uB~�'L�a��Ŝ�2���\���n�_�S8�>V[��b��?�5P�|*`іt�6}�������Tv��V֟��JOW؃==X`������8T�8+K�LԧS��9�!���"UE���8�k6��� f�ee9��1A[GSr�v��.I�Us��?Jn�K���t@n��O����'�����G�h�T%���(?�U5E�Z&p�����[�g���U�e|�0=x�4_W�V�p��ʭ�{�|��~g9�9��O����l�wСD'Do���͚ ��I��z"�[+���3��Jݚ����Lf�7��z�9喁<�ٸ��p��n��}�/�]^��x��o'.,�����f�h$���ޢxC\8�z��*�D{Q��/í�Ev&�Ĉo�NF��?�ꮵ����ģ���%��-:S�Ӧ��I�6^�>io�ǩ���-qi�M��#���	D�ʓ!ƪ}��bK��ll��<.���MiK*;�*����-T�t����`K.%��H�xT�5��P�P-�_r��~��/��^�C��^\.����fh��|GӦ��-zbde:>�d�j�����,A�l�'�ތ���t-�=-���K��-�BP=`VM�n�?�i��+����˟���&�ȹ:[�|�Z��5p"�4��`5�h"WUR#V5�\Wu��R�H�6݀�VA�j"����j���Q�)$�L �ayh��c�N��g�%;}�U���kC����iW��t�t��+�[6����iG��U{i���do�:�Zi������R�&�f��V;渃�Tw�?��p\P���&*�Vؕ���!�"WE(�
�Cz�� S�Q߉�!�N�'չ�Pe\Dl�t�w������n���[7��Ã�G�O*�Ln��\��iX�o��
3�2uB�J��o�C���TZ�(8s߻�ɟ�5�냲O1���(w��%$XXI�ig�#�K.���57�.ܢ
�?��]��2�\*��ν�oi_���0���w,��[��9m�pk�L.�HMYJ��%��XU�L��e�]�
���{~�=�TT�s!D���Ӫ���~(������EDR�� �C��	�$lG�ӛN6�^�aj�w�fh�H����,��'Tm���.�/�U���V�)|ݥ��-4�y6�V瑝�_Jˈ?�ǚ*<泌|�j�é��'����μ*��v�厂���b�pKu�P�M��Uk@-��S��	�y�ke���B)ɵֆy6�z�˓B�e����o1���V;� ΃�3
�`����`ẹ��5��ni•����+B��7��5ڞ��Iә��p�
Twos����g�_������
��[���W�D���|���*�D � ��ӕ���Q���آ'�@KGmv�
6�T�m���MU�V`��]�ގ��#�������L������cՕ�{��;ێ��ғ,�k
.�>e{Dd^��A���d�-��YQx�����pz��3f,�%�h��+w�55��x��b�E�����-c��/�љĭғ�a��(�w�pz3�������J���(����QR�v����o�u4����ʟ�o��;�&��X�Dž�:����5_�Y�|��>��]]��jt��1������`�uO�ug�ƙ�́�ӿ��A����eD|J*�?=���/�O2�Vy�rkna�(�x�`M3��Gp�(Eʍ�P�ܽw_HtU������˨ZYX�m�_:8)�����:y��]䧂�{w����5���cE'uRl^I�@i����(J���Q��*8[?֟��F#�z�2Ll�E��[@�݂�€l�/N�KE[d_�M��^AҪvѳ�O��l���)�[!����U����fӒ9kR�|�|:fp��HQ�<�wM�D�x1�(���aVc�\�vj��2DŖ#�v�[��GB��$k�\�"!�7~j�mc�����hʃ��nͶ*j���Z�~��%قT&��̸5���԰������|�=�*C��*�̭�|s�[_���j�?�M���Ͳ���*y�*&ǫg`kS�VZN6�p��!*(ѹ�_�`/0RK��t.��D�&<AiF'�n��V��Ϭm�s���dz��L�F�Wp�=���h�E��-DnqfI[IA�Pv�{�r&c
���ry�rIEv8���v���y�%�*��eIDN�H��o�H�����]m�i�މ⼅R����e�%q��AƘT���b��;��{}�Ǐ�4?��=n��t��"���ÔlI�d�0]�Mnk.�\����Q���珲?�.4���p���J��l����?�����?:t�P1��)��1����Kc���q9-<x��/����w�x|	�6J�
n�W�
�s�­�_H�j�T����-�?�����D��S�09��[+'o�^x�(/��[�K�z��ʽ�pu
�n�]�����o	��fG��o5�ٶ<�ly�H��~?�q���CF����3=��a��+�2BS^��0��T�%^�.�nm5�U�?���ٖ�Ou�9�w��(��YV���̓?u%�2�E�}[�K.��F��X���ܒ�>|��*b-��4^�\�-�
7��
�[�k��qD�Cl��G�P�i��b�Si��S��>�OZ�	���k�R�%@�7~�__/�#�3Ͼ;��j��������<��3o��X���9Akb>��|�'"@��H�����	f�G~�LlJS���
�8Q4��DE�*1��K"��\�
z�#�Ce�"΍�)ˆ�n�hǗ��q�bఢ���!適��0ːB�v/��q��g���Kq�G�*]�>����MlY�[8�7�M����&0��$v�+��#,~׉����i+G�Z�nA۪�A\l�2H�$�:3����[�C휋:���B����q�R�C��l�KVz�d��<_Q�A)�XJ����lP��f�Ͼ����7�	��[�S[s-�vN�M��_#�ꏎ��]r�>=��h�XS��|oF��'I��k�g�4@�F�Q=­������ݕv#�Z��c!kb�͓w�\I,o���7zʗ&�.����+7n�YY<���zq��n2���s��
p��r��jK�&�y�i�
N�b�p�"����[�����ry����=�u>ę�ˑ�[�E�e3�����m��X�P�2��N�:�D��[}߫JԪ0�-e��˓oQ>L�]�����rz�ߦLSd�R�F���R4�D˹��p�_���b*P�"�4ָ�+�1����َ7.���n�S>�v�qƉ0�fXB<^uí��̒!d�DKpО�s��/!�Z�n�(�-�p�([�����D�ɳl۲�*t�m�F�6&�뗬����χ�1�q�b�J��‚k?���*����2���N��,�S�o�)I�4�#��<Q��,����1�)���o�=�Ï#/s{IQg}���!��zz�����_�Ҟk�,�>�����>����v�
b�8�"���Yhl�NϜ�K=���45U֭��h�Sj��<ϣ��y�-�{$�(�ȿMSn�Ӥ
d	RTF��.����w�������b��xO3��d��#�Sg�j�o�~�C&�j����v��
�<Xff�(��˼�K����ȷ��b����[|�%!R���1B����X	�y1J�C�Xy}ieQ���y��ƭ��ŭ�Y/^� �jn'N�U�����˩S��������i��n�/.�օ�,�ҏ�d�΍��4���r����4��#]
9�%-��"آ`lh [�)�ܩ�fE�)/����A\����'G���c�����E�N�G�p�2q5&�p��Md^�fǞ)�M��f��[�;ť���e�dY���T���	֟���5�{�p��ݐC
��7X�F��
�"���QR~A�r����~Qֲ�
����By��-�\��.����]����S�.�^��VI[w�d��f�U�#Ԓ�KA����3��N0��{�i�dĬ�)�b�;�~�%X?�9�0%%���}��[_���I�sux�x`��T�S&��#�2'}dL�J;��I�]d��Mf�1���S�������3�&��{u!i�����Lu�H��=��������R�N����b��WL�;V.�F���WD��d(lHow�T܏y���b�3�(�mjb�KJy]*�c�*�"1b�S�E�.<S�w{)Ux�Xw�TȇC9����Pƴ�#��[
���f�!V�@K�4����VD��JFA��kv�a�S<�ր��$Uz�\$�2���>]�oɗe��DU�l����|+q*��Ni$X$��[��l�'<ÿ�%�]8�������%��!��u^�i�1B�-������0�ui�u`�f��bFƇ+�+�siaO�{�opkq�I-�xA��օ|Ks����U���O.Л'.�w�ZZJj���:[J�[#�܇g��j����vU�����QQ�i���牤�-��Ç�|k���.��v�F:P�j�]���f�A�!6���
3���Y�iR+2�B7�RX0�Һ��|l��1r9��A�$@:�#�iÞ�DM��2�%�vx���BCy�a
Iy[�6�$%�c�J�!gD"��u�Lɍ�{�Zڇ�4��+C���4����Z�`��<����f'�dfo~��R3F�f���g/]:��~_���h�7X��5z���
���~�`��WV�D�R�-��j�Z��,���N���J`1WL����F�BmVWc���\�kn.o���m�9��U�M�#nz&��G��p��-�Vp-���t��Y�Z������.‘��p��yg���@Iz�#����@vaEu���=���M$\�͇�RO��<S��p��|N�`ߡZd��p�����0��:�vjQG��At�g���Wf'H���ʬ�X[�h�b���Kp�u7Ãz�(�Rge���C)M���/韨��{E?WN�67��i����h����4'�e(%��i�=�B!�e�\Ϛ�|`�<lLd)�p뽻��ԇ��v��q�ܺ.�Jt���[�����.ܪ[Z\��q�5�1�����U���ge�������UXJ���*.�y��J�X���1�(�YAk� ����آ�U,��,6����d(��o�����7\^w[춨C�2��/?�"��0)�M�ea�nqn��g�7�Rwy̙�x:g��41+��e&�=���ٿ��~��Y�@�� 5^\�[���E���J�e�"0�1���[�45�e�8J�^�erK������$�#>
�X�)O�)���Z��K3+XC9u�y��r6�[k���*[
1-M����z;����������p��e�2���p�1��dSSZ�µ_���2��j���p�G?r�T�ȶ@y�}�H��Ȩ��<ܢ��m���eHC�f8�3�_�uTΚ�F:��͞U����5��;�:"����zG����3�EӇ�Μ�[�S�eWN_K/nl9}f5x�'�A"�,p�	���u��)_�ޓW[Qq�⣒+WO���..�N��6��j��N��v�ٴ��52�Y�i�O�0�ل�K����EC���Y�V�(-9���6D=�A���ږ�y�������@�֙��緘�.�\�G�-�!�V�f搷X?m^[�!�zn��SB�?�������9Ib}���Ư>�=*�B1[8�RNZR������z����"��z�#Bh��a�~|`��̭�u��g��妴��Y)5s+�'�Dd:����n-J���ݻ�5�n+�R''�RƓ32޻u~Q5��F�9�����
2䃍�?��;�֐5�N��-�D��J�{`�d{��֙�3��nJD3�˻�:Ol�wS��X��|k��-��->ָEG�Drb�l�I�n�7��q��Y�od��1R�g�l�'�2�Ҷ�OQzW2�Ch�%��n�V�RE�Lu=hz��p��\��$\�g�Ls��wa!؊кt}�/��N�i ̂1�^�H�U2�|���${-�򛹕����F7^�%���p[�{����W��+�gG����s<mEg�ɢ��=��_z闬��3���G�&	:X'0j�8!)W*�"}�	9]L�\+ͼ{(a3��ZA��������ګ?2����nScmX�c!E���sw����͈������a�N[��׺ڙ�fn�`:p�~������ߢ�,���;t4���Z�=x�o��$� ��8��s�]qV��n;)G��� 4�vyƘ��@�y_��`�`���i:#�M�d��ê�r�i_����t6��w�,��k)�[,���7_�\��<n72ޱY��F�poݷFN�_�Wz������$�f�{��k�o|&���l�+���!�11�c�:�g�.��v'�-��{R'r�G@.�qi@�s#������gf���p�g&߁��8i|�n�W�U>��_x[$[P��{h�n͔�������fq��I@�3�}��D����1Pt��p+�TFk80ZU짿ՀMs�z;���^��ę�Z{��zP���$�Y.��-zW����}zj�pVVv��l�8�T͕r̃��r�	ͷ|�t��N�!�`�nQF��&�,	�;���>x���ː����I�U?�^������ЊTp�-k�$��]�|���c�Ҹ4%a������M��L�jD�"~I�� Xܷ+=S�1w����i`r���y��ejI��T')�[��$�Y<&��x�S�V?�������/�O�O2F�aa!�T7i؍;�|�'�����~�����_���t��M�X9ڗ*1�Dk�0����Ԭ��ս�&��j�7
��5j�ڴDY��,G���f�r���Tl����6�E�S��O?&���y%T4B�(en���Ӳ�O���f_��{�(��E��>�����.��Ӿ�ʎ��X&��T�vjG��ͳ��	o�'�^'���V\4��#8���!\��wLU2�a� <��u��w�p4�1�F�S��}�S�y���W�+S�u2�{]������Q�qW]h͛�ָ�vN�Ǎ��B׳��r�Ʈĝl�_e�^/K��ǃ���s�A�`�����_/FHm�(��~�g��qY�y+�Gp�=��'����U#��XJmjZz���	���í���zO��[���,�2y�E^&Y/�6T���m�íFO�v��5�o�7x�t�6pו}� 2/�,,�*+fɣ�U�Oӷ�b?5a��j�����:�Q�,vo���Dᖍ���'V�6��������8+cO�ZR6	�ʛ���H�g��kF�s�3"}0S*
B��1���My�U��QhL�,�ZטߋTޘ�y��?��b�U��Hqil�V =��]X��5�R�{zI}��3Lt�嬝$^��N��ܡ�*ш]��	���p��1F���p�Y���ΔzcW(\?|�C��/�ֱon�k�AO]�wc ИJ��<A��(�K��G4�"��NdKpk�j�K��q`L���CE�������V����ZMrF����b���̡��׎��8�"�~R�$TzT�=r*E۩�y�zz.�-,��\9����a��I�L�|^|�=�v@wl�v�Um�"r��>y���=�;^�O,�%W��i��J����7_r���` ����?��{+���y9!���=���L��!'erS��1|/�2'�9���Rz�#�h)���j��/S����9ͷ�ַ7m�Fo��[v�rjk����$����՟���ׄ�q��i���_�\��d��l�ɭ����W�7~-�~~�U7�Q�K}Y�N���+��L��T�ond��dtH��=��jI*Ņ���i��ɷ.:�D"�/B�y�!4U�#�>6���~�h�t�"-��+�t�̥wŷ9ݟ�Ec�!��ɺFi1�H��\�ϧ׿Õu���o��B�gQw��Dj��V���@٩��,>F�|��#�t�9R�ѥ�ҟ���
v� pA"���SBsS5C@�d�fUj��Pe6�en&A+9�|��MqN���1R�Ƌ�$N�?b�
��5��f���,$�bBL�k�.B�
l���
����ԕ;���"���1en��{]]333���s�|—���7����������Lz��$XL�`Y�j��T[\U�\%������C֎�85AI't!�a�X"h���~�Ç	�oy;z��W��%�b�#v��Wѓy$�����G}��W�[�{�Q*����<kYaa����DG��@mQ�pѪ�ݔ�t�M$b@�i�Jk�ilzM�
Y��k�=<�M�3�h;!�	R/�x0�J�ݑ���O?>~|4,�X:����Q��wg�Y-��u��w_/��5/]�����Y��md-y�!*sRS֭T�r�M��n[�%!��V�*�Pu�9wG�ح;b�	d\��矎�o����;^�qY�BK�Ă8*+�4�2�gB)�[�~5ߒ��J�%�"�0�o�[3��$��eZeL3�d%qn|����L��*��:q������o�d�o�,�����n޶\ӥj/O#�^��X*�Q�3bG�y�����	�p�ػ�#ҏXy"
�e_����Jɴ�L�xS
l-�aZ@��z���Z�?��
�8M;�XbZ��z*[�U.n��;�G�8x�9��j4����_�V���H���LQ�.�W�¨�ׂ-5�# �,������'�yz�[%��1��0��ԉ�X�a-��c����Tve_����(!�Z�I����['oޣI�t��j&o��|b��~I/���o}U/�"�9��R�1��N��M:�Ho�ǖ��1������P~!W�I�ӿE�(��m��<&�1��Y����:�A+��n�C�%�k;�:��DM����ykN6ƋZ�[p1�jG�"����IpT>�W
í��jRͼ�V�5p=�|��𿥆��a��U�_o�5
��orSv�u>�^�m��3N�?�����n���gć���1ѱ�	�(��RG��ȸ�2N�h��ʦu�!9她1�8�
u���-�p�m ��h��ٲώg���MlbŔ�c��mQ���v����͸q��d��Ҿ���!�:�_&��p�&��2ͼ2ȶ�-����`oy$[l�O��=�89�r���N��u��Br���&5�v�{�}�rZ\#-��5sE^��*�?V��P��rkW��ߢN���Z�Z< ry���[*;��2�'�#�c&�#!|�o[c�1Y�3%�zZ�%���p�x�R�����:�|K6d��H�
��/�����P��2A��_T���~�YҪ��D}*)*76XPD�S���+��I��Z�F�>�CTõ�	�Fb{c��5����[S��F�¤[krӤ��If�x�Laŕ�v�]y�oVI���|�ޏ�����\j���;�ȭo�|�z�x�5PϢ�_�~x�344.�X�W�r5œK����P�<����icf#Л�V��Fc>6rw�)�dR�j�јw��v��#����#���y�D���^.E���s-3/������DLT��͑Wj���b���Š�`�}pZ�5k"���O�Xq/�eX�	�����jpy�Q&,
�?��b��"~� #͗����27�lb�F�O;��Q��x��E���D�����{��#cA9M0[�FP8�-mti��\�d�0�K����0�-Ckr�։�ޜ�_ߙ͎��6���ȸ6S;;v�FZ��s���`#�e�[?8�ֹ�s�[J��ԉ�_����-���/���m�3�w>��R�)_���w�6e-�\Y!��c�;S�8>�0�F�p�B��l�j��
�L���1� ��z�4���z�pj�E�T�p�E��������-o�${��1�*'}��:-��MyEvz½���
�m�搛�XZ����n�;�`T�ov��:�|���&�����g~C��KD��$H�'8ӒP	%Ҿ�ڌ_��]��Q#-��nR8i-*}�B����9�	��RLW�~���d["�<��������ѣ;b[�W1�&���P(�vsܺxoP
�ƛFG3(7,!��R��NY��t�5�D>���&�T�K�m%+�p���&]�81R�X�	�:���ju<���UT.v���m�4*"2�
nEFҹں�AEm�O߽y-׮]���{,۞w-��Q{�n���ԍT�[��w_|�p֦g�:J3cZ��Ag{�`>-c�LW]�;�W��:�F�xj��=*����N~6RU���x�Ǥ�ˀ�2ܒ��=���i����IC��e�����=�����TlD\�X�
l-�T��P�%�yB,W�2�e��a[t/�ʽ̭����f퀩�
O^���Z��g���G�r^�J>)���S�����c��݉s�YES9Fwk�[w_�K����ٖ�@��-ͺ�։��-�/�> �x������US!��ťԚ�7Wn.�]�XJI���97��rri��|XȚͼ�NeX�
*�[�Z������ȤB�oi�k��(�Ęl��YٲrrVL��,����1�\q�+;9]Qp��BLL��6k�:�b�uM���0
�ӌ����u"���s�gg����V��p�������^��.��\vk#*���F�[�pr�]c8���	��Y�$�y�,
e���6�)��z��;�[L�p�E��_�lm��I�G�P�oѐ����`�m�Oؼ���[���ĭM#��|��'��	��
�o}U/�m��^�-.i��O��F��a���s�2���4��M�9�5]����_��V
��c#�:>�2����gV b���MmlΒ��}��lg��Ӝ�k����cyA�ٕ����1��.�Ic,�ޱ::�;��¼�⊢�e���
���%�jl������t�'���5�JWy"�ƹ�YVj�s�떐O��y�t���ď�� e|��[v�����Nc��<OOʖ����~$C�%�Ѯ疎�y�����c�H WROs�G���hқ[2�k�Zf�h�4�a	�5���8�qm�}G�[�-���?������|����1�X���	6���B~9[�=KiP�_˷���t���W�D�N\��/���T�=����/T������o����p��BZ]�w$��qn��
��e��ԥ��˨N�YT(�ɒ��
D�P����P���^��2�YF[��:�u�cuu3u"��,Q�w[Z�b^�|R5�pi����[ȷ�߿�UP,�n�x�`�Xd4���؏K�KÒm
w���eVq�[�@�w����p
�an�;�o�)3�r�,�g�r7�����R�
�4���sg���j�5�:�y�Z$��R����"E~��MyP&_��&*��eOf?>��Du����M#�^���3��k���W����##=}ݖݑ��=�^�-�-�-���Q��2�C٘v�/��f%�V175]��C���Hq��,qX=�xrb۶�h��`��S��(�b�+4
p���/�Vb���
��e�� �1\Ԋ�K-6�~�0�hiz�ŋ=�=/��&����<­����)���pc{���	�9t�
&D�b�
�:�膔W���7\y�Ν�����f��gn�{�z���~�=��~kT$��%v7��Н��ո�m|.q�[�.����P�"#T\��!y�i�ePL!��%���}yv�Y�a�[u��#�1��_{�_�e�Gs�X��01�y��JoS�bk����K*ܢL_�i-L8}�[f�]����ϡ��{����j�'��Y&�ZB�}�E`�oϥ��Vͭ����w�`�E�w���x]��3D�� �S�K�/��2�(:���4w���S6bVcrgs�
��B^�
����+��l��&�V�p���m1�[E�*�>t���3�����\��K�p����Zp�:._���or�Il���r��	,�KU�e@K�3��0�>��ٴ�Z�85Rm�4���wCJ�)]��E1��ÿ�v��ڔ������$,*�Z�������E�a��m������&�32>�j����)��g�}�ҥw���_��?���o�q��j��X>��r�u��1)W�ǚ����!ȶ�$��"9�O2L�T!����P��(�n�g�pMZ�!gO�Enr��1T�cp�u�dzK
N�v�\r���(����y��
ٵ�1!����$1�W�J�+��y�W�΢�VG-�*��M�H�+y�C��H�d�._"S�U�3n�q��y�+��w�pk���)��h��!ʬ%ɧt4q�=h��V�f��jm�B�������S����=p����)�IPJ�#Uw����6�����oJN�V��\��������q�[��E[��yme��w_/#�S����x�o�aS�M���ąt�-��*�����ew
�_U��'������T��VUW�^Z�C����[s�]u�U)s���Lҳ��8�­í��­�jR�jZ��ۜIo	w?�í�D���-��-,��?n�:��"��^�� Ԧ��C犎�窴X�*�
1���'@<E�����m�[Y�N��}���_�JIN�҈�ti����o�]2M�P�%a����g���Z��򘡵"��J�e��qi�ȍ�_m�G*�p|xq��/s;#�W^��诤-_�^E7ߦk��~��Rړ�oEw&�M�������L��eOՏ�\�m��4�s�Ġہ�:fe������d��\���==�gүb�ԙy�ݳ
�gh.H?b��[�7�}�8���WK����9�up������EG�lvqӚ�o!�0���(
��z��g<��'JNy���zr�2��{δ�P)�X lJx'���k\N�e����:��)ub�1-�&�O�M{�d��U]�U,�"�&���#hr�[�U�H�H�ep�ƞ�냀�S&
@�5
�춈\�ÉsX9��H�
״�iϹ������Ԫ�5nM�#$�'��U�Ҳ��JZtT�빗��#�\KD�l���VG&F{]�߂[��[��}���[�;<���_�ɚ���믗���jfB.g�Oӭq.s�2⿀�F������r�hP��3�sႤU]��ݽM�p��'wi}��׸us���$v�(S���?~��A'�j���q2���Y҂���Nk�[��}�������6*�����i�+Ј�TB�yzZ@��_�K��m>�O��[_��F�b;�?m)Cd��+nu"$�t������_�H�J�.�H	��v�F��iYe�U��Ȑ׹��)B.�<_$j��/���{"��ژ��X�[BO��:&�ji�Ly?��)�7L���-�.bA�%mz���(���+/�'�����L]
�q��%���M�H��ob�L��z�x���wJ�\�=|GNˊ��L.eʽt.�|5=}^�@�svR�)��a$\��G�~U�����/q�Bc>�a��<e�k��]6�D�2ݏ�ͱc{/��>VZZ��MIzi���`T�ba-�����s�H������b��!ܕ���M��0�8�H�-"��I�R��!�t/�>� 6��1u��n%í㌲H�}������4�6zT��y!/�N�;���2[�\
���7�9q<�P`�E�:@(�7d�����8�[|3�ݲ���;2���[O���b�e7����[HdQ�;��Ͻ#�}�[
ڡ/�-�E�:�@t�[ړ���tM�%w7Z�m��o�1��ᖋu���dV�Xo-dU�߮�5�4"_nV�$�Z\YJ����q8_s��M��DʙS�P�2���ja-}y�R���|*�����#��EV��e(�gp��v�Od����3��B��^��%�܊�[���{��Z�[��z%-��|�D�j��'��]d<j�ndd��8�$vK���Ԑ���(�̍=���v�@A�a��UY�;
�2�H6���dK�h&��%����-�[-%maTӫ��=~�ɠJ�*�.�s��&)��0[\	y��9V���w_|�����{�k����w�5��{�9r�w�ׯ]+��7����|n]�z�����N�z�B�E��V
,p�N0~5+ց��!Ͳ���FË�[$��'��A�n�Ua��1ow��x��[����m9��
gQ̧#湖Y�ks�t�̜P�]�2S���s�Gm���b'���8Q�#��A�Pj��hu5zj�8z������S"<-�1,�;tNp�$�����䴛l5eJ��Db��p��m�/҆\��nAtZ��:F�Z}���|l(OI��]����=���C}e���
��>�Xs��T�ĭ��ޒ�U
w�n��|�ܺ�~���\�FGG���6glr`��k�:���[�&��3���):]�i}U.�-y��Zn�#��|�fa�p+�M۟R���0��u	�����[��S���ٓ�ٝY�3�~�T��upߧ��ܸ�Ң���B-y��Eb��^p̴�����2��p�4�b�[����7s�2 �0��T|�
���uuy����L��m�­./s�)iU�81����i'�[�нr�\�,by�(c�j(��Kv�`��|��|��г�Elq����Rri�%�27%jʶ�5�83�zS~m��Vni��\�(�H��%�*b��t����켼��F1X�ҭ����.]�j�� �?�c���?��ĵk?���V���_��׸wz��kא�^��ob����+�Z�jŵ·N�u���NA��"k�*SX&���l?��W��
:F���ߔ~ׯE�jJH��p�G:o�ܾ�E+�r؃�6쵶��jQ����3��Ϟ�vb<<TȮ}1�1OZ����֋��B�%Gv�+J�9
}EE��n��'t�CL��o��L#iN$
G�2l�_�NTn��aXz��M�
]����p�����V���2C+O�k(�k�ۻi�<�I�y���ܽ�or+j�"��>��Ef�K�L���G��q���&+
�jj|�\�r�Sn}�>���X��#
 íXy�;<�rm��I�d�[)p���u��MX�x�+���ZSCȅO3�k(�B>)�����y͍���d7����.	�N�Ęe*^7M!29	�hq��̒o]�[���=�b/�{��ڶhakyq�i#
��Z���Җ?F����n�[3^WnnD\�l��h^�-	�B
�(n�Q�7�����P$�џ=Ν�*�$W�-�Ǧj�D��]�*-�`�‹c=�����8�6"���-٥�m��|m}}7��Qja2
d	�ȶ�%����f��$�G���x�W�U�=�)��`����moi����L�ԇ;v}G᥍��?���w�yj��w�O5`�r�Hők$Zp�����k�E�d����oU��֩+{�]�[%�(܄Pf���E�-�_ne�,`�E��<�|P�Vc�Lyd��ͽ\��(�u�:k�I�Īn��N�:=ç�����T��,Cqur�Us\�eGku�E��%��Sڐc�7�Ҷ1�2�y<^C0_�Ɖ�D�lЋL|O1j�ߋ�,��I��M��_�r2\�[��v�$f�r�w���i�>�譧@,��?H2��%J���lp�p+~O�e��:m1\��5�:��a�$�T�+喌TZt!`~��<�˿ok�ɭ��$��'%%�d�-!*b�ݮ���3�h��MKKKf�uK���U���K?�Ȝ$�ɭ��ϟ�Es�gC�`r�@��Y��KY�u>��7u�ąɴ��4�[+���/\X\_X
y���q��`��<��e�3�]��А	�*��H����3Ǫ�K�	vG��|��l�/*�[�.:�̕z��[�<z�'Tұj�B��)���D��[q
�4˃�_�*:����pp�x	�</�>��]�
��>$̊Q�%(�_k��N�u؂9&�ݑ�|�O�h�(��V�f���}��F�����[o��	n�^�!�`U?(#��F|��T��hck}�z�q��8�\'H�ŴO�У���/���-�%����{�ĵ��{��h���O��|��pf��SW��-�|�DN��_̶�ר��0�jJms���Lϼ���%�-Qy+���@_��[h!��eQZJ�����N�4�.uy�D�u��Ps{���^�dZ��R1�������Ҳ�����y��ʫmh��S��V1�$�����@ë�<�B�7!�1�U�����x����NBW|���B�6dt�ȴ�c~5D���&p���Pn}�GV�+�`S"�)q3�[��!�2�N5��˯*��GF��q���Y�������[��5�i��Lz���z9��[o}TF��7�����!��rC�D��0�(�"�L�4�[�I �ar����֗��%K>�[����ϯ�x�?�8���<�4�KI�]n-pƎ4�����ɹD���n�����G&J:�Y�4�m����ݰ:�y�iNrj�����zvZ��T��3"���d'f�4��Rk;
n���k�q�g�$��n�t�);��@����<��ɤYR+�O<qa"���[��>��`K�E���liȒW�
�*��`jGQ��Y*-5��\K��a�T��qC��N�Ŕ�ݹ��6�'4�=�+�z�`G��n�d{qBҩ��Ԓ�P�S2��'��Rx)WRu�ŷ��?�7�r�LC�^���&ؒ�R�K��z
s�#���վ}��Q��mkm�[P+1-��oc��w�+9i�y}
���T8T{:J^�t.��/u�X۴�w �pv6�4����ʖ�E.�UR��p�
?
��jd����aKnBB([]��Z*���>v����@k3u(΁�<L��㢢b-O�[bG���eE���q�8�5,ܺy��m��,<���|!k�U��R���`iݜI�,���H�~��-��
n�o�*��F��O�U�~�[
-]d'��~��v�.�$�;���lݼ���ͻ�a0��	�S��T����g��9,gc�ZԼ�� ٌ�k��5s�p���K?�ۯpKo������9�E�����ʍ����'Su�i5�o�,��Q���~��VMS[�p�,�@6�\51�N�l��/\�g�x������2�$��*�:���PW��س�k�:��0��p˛��kc��0���X��-d�nu�ݏ���||ډ=�†B�[Æ��/��tM��sQ1J��n]�g��
�#��ŭ4��~���n��4`e�k+��.�]|3�v�����9ߣz��J�&:�*�*��-�CY���v��d�&\G������[`��֗���~�}{�)Ů��]��op��8O|���{�39�+,,,J�sƤURdB	����VZ"�J���4Z��2fH{��M�;��#6Ҍݖ�
�r����jKgQ{e��w_+��N�t�<�h,!�b�0Z�a(�������sʞSQ��9�Y�pfӡwt����{Re#�k���iϠ�j��r��2�ª��1���Z
WJ�r��0�S)٘0��8Z���u86���x��e���ݼ�:�B��S�p�:�j[�-�;r-˖d��U���F|�opMw��ÍZ@��')��S���ho�-�����Yә)#�6+�e�����as��k"�J'�1�uPu���ᖆ�"������lc�g�yo�Q��-����^����s�Y+˷�[޴��)K��½�.�m�dqr�f���V�ͯ���p���zF�g���S"��a�
�O�p�8R�*5v'��e�+;9-F��p�]+]�ʇ�թ��\�A'ֲ��Gw�Mh-�:�a.��[2*�S��>����&��'�ɷ2�]��yi�{?���L��2�E-�H�>�kZ��
~3���<pK-��xKJ�5S�A�ʉ����k�]�(��j{i�@��#/����
�l�"�hCn�i�1;��,��+�]4_vl���ǻ�hv�To�差�ÿ��Pn)�~���Ƥّ#��5��~��[_�˿��#��rŵL����`7kÄ��EE����k>-1-19��͎�[{���,e�~�6���I0��ܲ[�lP{ٵ�.q���!Y�1=8-;�[N��
�N�\�^*gf�H��fr��E]9�l��bg�?�J�Y�S� Ć[.��m����6\9	vu�^r%��GzE�W�[8�4:]�ڄ
�i���}��Mj0?���05��n�����-ԍ��P�
��ϵ�oa!�5���b'�Qk���D�o�*��%�l�T�8]AMy���p�y�[�l��-J�X�n�aqv�3�lI��q�sk.eniK��B�
nm �K��ޏn�U��dzcp�_�3<+#iԥ��}h�X���r�/]�D��0iX9n��c����VN����F��&ȷJy�Pr�xv`t���O��S�O0�f�|U�^�[E�Z'J.���q\�A���� �1�sy�!�B1W���ÇBnY,*�מe�	�C�8g�K��4���{�o���#��Z?J�_��	�s��gdR��<Jo�Z��x��]-0��� KC~R����j)j�̶���n�Q"�a3���l[:��]�T��^��V4
.SǔU���i`��;��a���y���"�����R��ȷ�^=uyؗ�`�@1LE�PbW&�����K���-��i�!�7z������{�M��m�-�]�5�q�JVu��ZCuɱc��Ǯ�"�+鮨HزfKEO^��e��C���bg��'ƑӃ3fv�Gq�K�ʍ�X\���q��o@
.s�xYc�@n����I�|���U��7�<�[��e��PΩ�?6��P�[���J�hJI�V�x29�h�c.0m��o@k�Q�m�#�������-`�I���]��אpyZ��~�.2��Q�x��v Uܜk��
��:ҭ�1�D��s�[���]��	�[�ӿ��5�\�x���~���������,,I�[嬇�y��ɕ�w!�gwN.���09W7S�4i&o-�I��{�Mn�ޞ�����?36VR�����S�j(����hK�cKHcΧ(܌e�,�#��N��=q;e�j9�5�j��0���-2�-­�f�c���ij��@�l�n�{.����<��G�
��T�e,�1��mq�Z���aV��	X鼢�"�+����,�UZ=���-
u��ɀP{����c��+$�4W{�E���f��R���I�'(��2>�&v-���.}ovx����+��?rĤ�S��6����%l��_����[�O]ݷ��ON��M�C�U���Lɶ�[Z*�''Js�M����v�7��^�JQ1;�6�#��n�U����1Q,HDM`/mh**Y��eEvg���ƶ���ʡ#e\�.�+U������,<���'���yd���4oɓ۽���+�#����Ĉֱ-���[|ƨ�6���k�E���un]P�q|�S��3��k�;��� �
��iѨj���u�,ś؊�y/�ѝ���o�"��IiL��>�4�-"R�,6�s�^<�2!�������|k<���b�N�ͺ��͔��8;v�u.{��"4�Z��2��.5�7�hs�痱�w7���XG5�į����
	�"�-m�ݺ���Ĵ���4�!>\�|����g;�N�#84�U:f���2��a��[`�����h3�޽t�…���<_�W^.��CHx	Cy�˷{[k�M��AO�b#ry�]�L��LgK&Yi��1�����2��Z�1�.6����!��e�[�Q���.���JZ�ˬ_�I-�`�!�"�Z0�4�0��l���y
��'fsK�S�H��2��m,G�,���$I��\$�J�t�Pd��.����Mڙ3Tt���žwz�)�r������2��?�;�������k����So�+ܺXț���ŝ��2��|�7������%�\iu�fͷ����,v[���[���9���Áb����|����%ͮ�cy��̷WN1T)ur��oE�|��X�(!��Ų��G�>:u�����xkL��R��E0Æ,J�F�U��$�JLU��%���[2u;���h��Xqx�5n��Lp��|���˃�wob����'Ӛ�ynɰ�[Y��
���Y�c@)A�$F����&^21G��ug��"<���H�]�Z)y^�Z,�0�5WWv�S���_��;w�p䉈�WzR�ow5:Z+}0
��knn�7�o�79)��n}m �Z�^��~����U�5���r��1��x�['n���b�ZW)�5�ԥ.L�#�K���97y���T<���p�ƆG͜�Ҩ�ҲX9N�<1��� 
2���ndd��VAA��m�N�����Xu�*�W�C"�D���I<�u����[�&�|"&߬℘l+M,�Y�l}�_�u����;�#x����en3�
�o�-��@�(I��1)p��B'��2�����L��'�9�3b��w�
S[b�Β��z��S����2�n#V�t�j�zšrK��eI;�f���"
�];p�|�u,ԏ�
�;wFN
�rA�%+��ǚ��7�^_��7���u��*�9u�bo�[?9t��@�EoK#:����+�*��07O�v���ZF�Q�y���Eu�L����yv�n�=����>oˉ}��zb�����\����ʒ�
.W�1����]�ő
,s�	��1�x�,�+z���^��i�H�\{L�4�­|��� ��!�-ƕ����w�>���:��p����v�f�
��hP掿2����C��?PR������H��V�m�'��K[�il�J��S��e �"�K�����i{KjX��~�Zӝ-C~�����i�{:q7�|��r��.�$�Go]�z��ė��#!�
���4�]^����4�n�1=�u��+�4�Rdɧ����mz.ĝ�'?�[U�.fջ��㓋+'q~X����++K��^<!�Yr��2�#Ƃ7�_�G��ʞ>��iS�SVje�m�-�8�Ș��m��e��h;ܢ-�.��|�pKH�q�n��VMm.�Bv���㯵d] Vc�LU#�T'EvJ�/�����N�[#�޾����љ�No�-)�4��k�å�yBc�~H�W�Mnm3���k���0�-j�m��)��f�O����\�c��m��C��6剑4�������=��+��b��"
y�/���'o�u��7�5�Z���;R��w
\��}��}��7�����~���m��S���'?9tnm`+=�r����YGv31�DGN��'ih��W�����b#9WQ�9W�#�L{�����@�.�j��ho��1�n�=�v��p^ki�T\�Vj�ŷ��TL�rm�G�~�- +���<x��eW�V?C#�bKUx*'F��(��q\p[Da���*�rcF��BE9[L&n�`^c��U��Goe�ˤ���	�0�io����Mmb@��p����=�l6;���r�[����a�ES�	�M`7s�-�BK�����8bK�3$z���_��_�3R�<�;�AĔo��<�V*�25�`k�{o<G\�~���K���onI@/i��}�[�n�\�w���:\=\������
�_Z�{{��[�v�;p��'p��78WL����-�e��/(��/�a�����)��N#�E�f���dR'��ʬ�|kSk@��c�8�tڌ�bh�@0B}���	�K38����Ue�x4g�h���������-/{�z=�
dZP��J�*56�WD߮�.�4Q�L�L����G�O������1�\ƒ})V[�����[z��K���v���JҬ)��awbS�hA&i�sA�)���E���˿����O����n!�ZF�f��W�녂��_h�撃�op�zy�EHc~�����J�k����%�I�U4��Ir
�jÔ/�y���k����wD�gV�j������!8��0��"��wn�7O�Μj�=���^t�h����(ݳ�ԀK!Y��@��Ͳ�싧�T_9�c�՞�ҋ=nb\�Yɩp���ŇA�j�"��C��ꚯ�3����u�
�3@��f��FW��hi���$+�8[L�Pg�P{�z~��>��1��߳���� m�٩���)m2��ˎ�M&�voí���
W���$)$���n�x����9<�έݖ��'u떨+�Ȏ�Oy��nw�ZCX������jȷ�;|������z}_]6�?�[�����-��9�sgy|��c��4u����Z�1��x弄���3�:>	�n�x��;�w~��B��ߛO�o��l62X��:��Hi���:���F�H�XX�#*��j@v*牬Rg7IH��HJ[�nIo> Kw�àJ���_�:���-��"n�R�uK�T�{!Db|����O���K}�������]7��z�1�j�J�ƙ?4�i�P�#����lp�$���;��2Z�*��[Fw�o�l|�[�S�A�B��[�)2.�k�L�%�RzF��U��1Vm	���Zz����_����?\�-a>qC.���}����k���%y��;���kd^������:1��[��]���z5lmd[EE�-��ǶrIR�>�Y}pdS��7Qw����Z��M+~GB�gPl��-j�M[�JM����Μ��%y�VT�!O,�5�e�귞@5�y��Щ����2���W��O{�:.bD�(�s��RXO�rxlih)�x!�T^�.��9}��-�-��5]3^ڶp�n�;5�+�u�3���ZB���H�U����GA�l�a�:�+�p�nUf�l{�f�oH�I�6�| +5/�h�:�Tj�����+�������i��un݃[q�"�c�<i�I�i���t���}K��2"n՘ܪ$�9��`�Px��ޡõ.@�]�-��,�儿u�/1ynl��~<-������X�|�q�΍�?������'k���x�|C�+y���@Lb���矢�d�Ln!��L���te�q"v��S�a��Ɩ����S�Հ40lN$V,�e�}���gE����KK�!;���"���O�EO�{��Y�:Q^W����RԨ����#IJj�$<���I��o��$B��҆3�rK��#'��\�r�EI��K}�pef�����*��=F5|��[�@ ��[ԇ�ܒ�<��?�ÿ���0�xlm�)�2�����	b_�;����(�2��/WnIc����}�\���oU�a+Jz[EZ#��2���P�����?0�Eб!�o�,�W�y�t~��J�[��:��ؽU-�-Iy�-
g�f�@��e>������}�e�5f�˜O�2��G��g��J�3�4���n(-q5��B�ŲY?�x�M�f��z��������g�l�T�)�B�����|�W,��ecb^Y��&�#���C�B��kjWR�,Y���Ϟ/���N������S�oy�V�^��
4�Ԛ���%�J�����4��2&��[O֘ܪsDDD�6q|���Ik.'l5��T6z�J4�[t��[ԉ���L����+�n��w�8Ɖ��qK��)mY�~�X�B���lQ�n�|i#K��[�w>�����jbee|2qd��-q�f[����̒��=��|l�k���R+���"��w�=v��X!*�jjf����3)��)�|~�×��\�e��9�ܲ��ʷwy���
s���?��q�q0S>�}}�3��I!�ڤ!�]���q�	�YU?w4@��$��5n�JũdB����������`ʬ=��8��u�1�`L!ܢH��|k�[;�X<F��j`�+�����������˿�#�5���-3����Mp]��t�"�M����
�o}�_~�r�x�g�;��ڵ^$�K�� ܒ��f^�d[i�+�s�HU[Z+n%�`EC��Goˈ�1� e"	W{0�"�-�#c ���*/�O�ղܧ�6�ʕ�L(!rÌ�fաS6{'.��Ҙ���ZG\;:�V��U�`��p8������̺$��^�L,:r���]�ՉS� �V�!��<�
�&Ĉ��E�k���i`Nummgv�NB�gx��R����732�f���������[F��E5�2����x��aj�i`-R-�j�����I�r(�n�Z��p�e�i�Z�x\cy��P�)�n�,��mɋ[�[fH�����:�w[J-�[����u���o-�t?�gZS�z��ޝ�����R=KK��?|�B���C�����%��3��`~{y�4\tYVKX��;���(�[��"�Dbxx�'�C�U�^-
��$1��䭒��։ޠc˓��割���Ô�[nQ(b�KQ/�!�'�O�
">n��"?u���st���Z�:����E�.��bO�e���)�v��pK�-�����
� !?h NbMwj��	Z��O��u�ml���-u2�ipK{�	<���D)�'_n)��\?��L�	Zy��W���2�St�TB��}��[_���[I�u�do�)6 o���
j�+���[�\��MM�4�܏呄M<ބ�+kpc�v��ī.�V8���8ɦ��"ʫ���G-�
7�΢����y��G-4���B�	5����HM�����:+�����@D��i�E�*^+L�be�"����b��o�f�E�a��Jd�u��M!<5�u��sn��$&F�;��N{Lqw-��SƂ�؄�^���0���z?9���͛{z��u��84�s�
�O���tik=���ZҋC�5��|�чPi*��6b�[�59/�����YX�:_ͭ����_���U"�2��ύ���7�4^�Z_��~�/Ϛ��[Kޮ�q��+"~8�������s��Ut��O��}���Ƀ�!V���O@��^lQ'��2py�����C{
h��(f'�q��)%�\g�t7�;e<Q���R�Յ\v{����-�%��o99�a��b�a2q;Un��Q"���d�+Y㬜������s�KM�
��m���O���J܅8��!՜
��g��X��bmu"?��J�-?B�ǜs�^���XC�|۳FK^��u3�T�pk��'(���JjB��j2���"���kg�5�*��?Hp�u�B���D�(�YD|S��v��zN�1����V��*��֑�>w�q!�>��ѳ<�9�n����7�4Ӗz��f?�BJ�����F�R��UO�x�v甜��J���cPq9���FJ_~c��椋�8�N�μ�lGLIi{�f1h��O�{APȋ���	����r�Kq���X�.)�*�2t�Mx��u���UnM���5l�W5q��>�Y�ϼբ�3t�b�v�v�G ��[��s�e�a�w։�����B+�f��U����f�����	�F���Ь����r��@į�J��ٗ���iR���NC6����*
��#U��d$3P��ݞ�E���7�?n�l�ؒX�i^Ǖ���F�@���_J>�-bq�vȻ|p.��=~3��������ϛ�68GO­�j��=���|�i}��r�̚�n.6o�&r)(�[hK��c՜(���=<#U���|^QS+�e�0�l>�Q�p�r{yYWmp+�q��},?���f��K�n��{��
�"��7u�r�&(s�j��F�-2cŖ��40����El�)�~�$n��X7��e փ��+�ЎA���)�����ܲ��4A�Y��x2ca���"�[1v�tifO�G޹r��U�9|%��|�wm>���>��u�-��3�o�xd��C��V����`�,�mI�(72瓆
�ش�Zn,�2Be\�)�;�_��("�f���Qd)�����^�P���lg��"&Xq��Mcy���L��"dtĮG�'���<�h)�.���r6���!����S�S���~��٨�h&�F���n�K����윐�n7�'�@Tk-�[���#;�369�`��~$���w��j��F��ԙ���et8n=�����K�Vf)���Y!� �,����kMLh��
6=�ղέ.�-����ƒTvHNk�\��{�wKMl�֜p�J���^�'��ܺF����q�[ḽ̌��� �&�d��"��rZ�ǻt�Jr�H���{I�u��O���XR��0�)j�^^��7w{Zj�4����jc�1If�E;�){���
aD��om�#��\�]��t���)�ᵸ�\�3�@cj��?�����Vd�i�X�3W���O��Dͷp���<ѷz�Q�8|��dUP��"����h�Dh"e*�>\�5�9��j(��I'�Ȩee�"���(g�H�%v͆�U��rRy�[\��Tq��j�},�� ^FaM0�e\E��	,���7�w��T=yWO\��lk
[���~�[��^�,y&��{{�tE����V
d[ڝ�[�Y2��M��ͱ6N��T��&��R�W��/�g&d]����0!R�W�<?��=�ѵ����tAz{�б"Os˱RG�ˁ-:Nm5��;�z�ʡ΢���ΊLmE������e1��8(N6��.ާd���V\D.A�㐩��[T�b��T��t��	����Y�	D��E�%�>�,Z��y��zM�=Uޮ��3)�����g�ɖ8VV6R s�]�+_%ߜ2u��U�k=1%Ln�q~�3�H�̢ɭ��l�|�(���O{�H��s�D��T�@�n�wk��AB}l4��[덭��c��e.#�:?��Bl������r��Z\^\��z�Ń5�z���A� ��.����Ѣ��q�^w�T4�߂[�~�U��L�eD-�����a)$�*(����A�x�w�����n�m���b^�/���d<7�V3[1���:N2m��D���ē�~B�b�vs���f4��͕N�E^J:���(������&rx��2�h_D�L�`4���Kƒ�(r6�f��=�mz��
׉�r�5=����H���2�h��Q�4�_N�,A����h=�ѳ�{��%��x��;���#��70����L�w>Q�Eg���>�ر5pH��=��Eo�fj�Q�O
-����O*��ۿ�P?��
g	�sX{t�|Y:;7G�ױ��Ng0�`z��X��	�����V�t����g�)���)���4f����<N6��!�ڠ��V�K_Y�����[��~��It2���o���^�aѩ���]�KEոј�Z�G뻳)D� *����j��ٙ�	���G�S�e0M���ʙ����ͦ����
zEZ�*���[�uaq'Y5�E��!��V���&�E��)f+�2t�I���A"�6��W����3Wz����LU����2�:�#��_4�
���Ihj�j�[��V����%��������;��J�O>y�����-�x��w�#"u���ǿ��Ң�o�yZ:��0Q� j)E0��#+���e��
���s5��Wn9�a�Dv��R��Ғ����VYT���U�V_d�)���&��<N�ߝ�����zGe�1fr�0]%;���my��K4�Y�T�n���[X���E&z���ՙ����|�lڭ���Y6���_3�6��
��ܚ�/�N����V�T�)���$���$��h����s��y��2�yv����b�z=�֧�������o�\����O�zy�3aJA:ҩ�#�ť�2�̿��":���� �VʉD&��"o*��F~ieK
�n=�#CO�q�Y3.�m����Z߻D��E��}�r%É��6�n����RY#��k��o�AˣC��-1���������b38���c��z�a�nv�D��.i��MK_������;��I��n�J\��e��33���.G�F�#f:��X�!.����}���KB:�@U���gj�F��r���՛(q�oϦ�:�J��t*$�K
�Eg8j�^�r^�^1���p���E��n��=6�j������f'���25�� (����p�w%�S0�=>&����?��_6��/���o� ��I�����&S�Bx.滗��'|cy��'r��#�:���͖�o�������sJ�^��po�@��)c��H��'ðH���N�L~����S>A�lUo��e��U�W}�T�����-��i�N��g?:��|9Q���M��\�u��g��S��4�ҁ��ׄ]�ӭr�+)�Y{��Ro4D̠-��Rp)�̄k7O;k��O��np˴�Tna)�֔ol��@]�~?^~Ñ�岝	H�08}=)�k<
��^���S\�ޟy^_�\�R;ƀ�����Dr���m�H���/�|���凇��>[T{�ʾ·��Ɯ!Ӷ^*�I"�֚�|?jy���� ��ὅ딆>�įn��3�"�{�G��Q���3111��̷���������m)������1q����KE��PG�#Dٳ���`��$�7%� ��c�3wZ8u�Bq��]�r�pB�-���-�?���fN#~��!g��+>�-�\v̸0��?>�ё�D<��뇛�j��Xm�^�PZ�o���AW���'��q5-�"�lvIZ��=�D�ٸre����B>fxV�n��­F��d��y��2���4�TtJܞ��}ͷ�0�uj}e�>-{�X_�YC��~V�Ow5ْ��h�+��L����Z�['�߿��D�@툆k�V�H�@;�G�p&q�m�B ��^N?+�A�V���ʅ[�n
�<���%'�'���e?u�.��#=^�{�X8�	2&�R'��Y�V�+5'㉀�*n%f!�@![1؄�v�;?0����y���{C��7
1Ev�3⹠��
�c�]1&G�ŗ��2Q��VD�(%���G*E�s��~#�R':]S�{<I�,��A��f%��¨;���D:��-2S^	|ź��ٯ��s�#}ga��L�� q؋��©�p�w��o��(~�K0����'љ�I��G�'}
,k�J�X˶Tџ(�JF��"����Xh�'j?�J�T�d�`�j}�Y�}�=d�{��8GԷ
��t���$�t�P[���`LQ��`L�QS��-��w(�eWE�����4�k-�u�z�1�ns����\�����c�9��j�4϶�BS8����$K�0
����[�����l��j��v�[h%ܒzj}�urOFj��iA��iߤF\l���(K��1 Բ,�x��p�?���Q&r��:q9%�r�������u�9uU6�����-�e`k���{o�.6ʭ
l}9���/s�,����4�w�^����;'|��\*=������V�ܺs��!��/p�B�H��=:P�^8�6@��^癊j����C.��ֵ<�� }y�ΞC�@VU#�f'A
�d�JO�$����|�[ȈحO>��)1Ev��<��|�7\7�[�xuO�ͣ7~��!��G̑}͍C����<�ͦ����~�����s��"�V�:_�e*�G�]v�����U�Rz��5�d���Ђ	��E�&���K|�T���o�854�-فa�wf+arKc�H��]����[�):;r}�
bxV��s���5mf�ի�����?��/[K�U���[��]�[��4�F�P#V��:�hp�q��:)���F��Pp��b�:$�Vj}�����=S�,Ib�d��MUv�9{:}���f|������F!e�#-S	�D�U[D{Qu���"'��r��|���s��݄ŃoJ�l�9X�H�[C�E�(���Bd2�,S�[�D��`���s��P��o�-h���*>�=�b��3D*/���LJ��'���y=�a����V"7����XC��â�ֺw�k���C����^>�+��9��Z��?�Q����FHE���u��0�����u�[tb���W3�n}��TC��q뿩;��6��
��h�^g�@U�H�1ȢB�8��.67 �ʖT e��ec�s�aq�a1�0�!�3������&M:�v&�4�t���e�����t����A��/!���s��y��HM���Q~��
���Y��prs�Ƶ#0����5���)K�'V��q�x{rc#��r��j�� i��N1,���")�t����eֽ�<pK�#nv��R�!OLM}.����0f��ܢN�X3u)�7v�V�y��i
�IgaANAy~�����n�6ƪ�O1�S�o�s����c񺺠�_�=��E�W�p�quv�5TT�b��W����ųn�G�Z����+���%�����7�=�t=�-H���O>��~|�\|	��ͷveU���jZ�s
�z��-�7"����͗]�x�����W�x�mcU;�0g�\<��Ϙ��_�į�˳8n����yꝗ��9#\-��TWb��2U\��4��e��N�O��PB���Ŷ{�)�Z���<�M>��P���h�Fƣ2��YÁb<�î}��U���I�P����ەz�aK�֬��]%�ʪ��[�Y(�/��zgY�Z�JO��̷ySTxe\��ܫHnc�O�=n��җ����.1�hS?���L�`ecJgOO���,�7®-��[XY\̛��p���!��x	���nq�k��aR����<�O�-C/��z�����Ͽ��\���n�����,�nMu"	�rKc��-��X'bc���	I��_s#>ݚX�Pp;{���څ�0K��ؔQ������͵ō+���c"����+�"�z*��H�2ll��DY־���-~�Ġ'
����tQ[w8��_���l���ń[�L�i6���iqa>�������H�1i[9\��!�’;��1Z::�:�Q"WOk���j�N�m���֪7.�dd��������*����!��`b�2�/�Z�ر(#�H��q�[�O>�w>��1��M�Bq*��n�{���\��vj��������dZ�3bd���gip� tgl�!c^
�<K���.a��}��:�O��<�������/ceC�������mɅ7��Aŗ=q[��(R[f�2Nb�.Pk��7	���Z��`�~T��3�-�_��	ϱ�8<��!���*��b�$���ہ	Ծ�/Wtk)k���Z��Ty��ilm���D���8�oO��'���
Y��D��C�Hz��*��VMn��ףNwM�����q�eH��"˖��€��3<�#�`ku�ꩅٚڂ��H��w���z@�qn��U��4@�<�Rڛ��R�w���|KvzX��65��l�&'g� ����-��>5��̓-���������(^���ċpKd�WՉ�[ /��� CQ�`ϊ,u��k�W�N'܎<4[[+�6��
�[ԉd[n\8�r�嵜��+���ߨ�\K������&���1��+��a��1�cU�twJ\��|c��\����2^�1;$�­YOd:Q�9sN�;���2�CrW��.D�F�nM��/-D�W�=�����ϟ���#5+��b�zr_:ܪ+�lz�bC�>��kMuB���$�ͪ�5�}�Ԅ[z�R�ys\Q7�c�
�,J�N>��K��cw>�q��N�Ml�pK^�C��+H��T�'
��+%��Ȓԉ�[��@K&x���?�?��f�����`��	��~���گ�D�ى���[�7�-6�]�׉Cg,��f[�����4R��G}iI��{��f�^v����U��6<�:�Ҽ����uTq�o�atk�s��\���~�U�t"U�b(a��Н�\z+��D��U]'VV��
�c��ݫn7�{||�<	n�e8!ķ�{L�e�]<���F���X"�^�+�ZyN�5�B7�u~aL��:�iMޥ��佹eM�Ĩ��(|��-ԧ��g���kW&�f�[|�z���s���В�{I��y�H(��g���W6j�]���F7[p�n�.�ޤ��f�˗�"l�+�.�"��/`nEí_�`U��1��.�
�������d��[�ȴ��o���hM�	n�fk�ڲ0K��6�����"��p���$�[�%�`*�hG�o���%�����BlS�I�%���S��N>I��ׅ������Ȗȗ�u�󏆄[.�f��l!S�f�/�W�t"����e�+���.6�����듛WߧEw��a��m�Z�2�����I�3_�X�J�!s?Jff[2���=|L�a\R�w�Ҡ��5]���H��؆d�֝��K7�IY�n�'��%
��{�h��{�2w��:Q-���/����J:+�ƿ��n!�ps�~$����O�Bg����!�/=�ǿ���J��}�F��W�&�=���?�ԉr��K�4�n�&Y��ECUSٖ�йj����H,o'��(Iڭ�N{0 �慘��.D����lǢL�F�ݵ�l
�iiA�Ъ:�'6G=_?}p���P��Ԭ=*�R$v'����V��UM���ʆ�9�O&��cu��qo��E_S�ڊ!ķa�&��l��V��:�D0s�����|�mp5��gyܒ^��i�����ʊ⌏�$_����2�F6pk�m�M�ٖ�sd�1d�j�t��B�w��}~cc��U*��ի�o��ܳ�Ed����5�����˓2󲨶[PK赡ܢNn/���>f����D}A�{�}�<sn96WG��c��[B-�ƅ�ɷ�������GWV�遭�\8�����Z�ݸ�ұVkz���'6��:+Sɷ�@ђ�X�+�˟(	�#��[oX�[^�E�e���j�-�(�E��C�y�]6��|��V=�r�{};����UL�3��Yr'F�C٫+����p���Y�K3������wR-I�,LH�Nf���9�#3d�d�>�F�I��Mzn:�	-1}6�2�zTl5Qȫ�3&��ߏ}�By�h��n=f&[&�L{f�
�}n��+�*�@�o��~i����
�<�'��O���VH&:	�_���ױ�e|_�wje=��[3Xټ��[���!=��Vheֈʭz�m�g���w������/R""��|[7�D���Z�%�B�T344TC�/��n@h";���bx�c�b��t�P.RS�RT�f��N>y2]6��S.Vۂ����4���%�1<܋<u�4�hP@�{�W�wI����>)-A�^�l� �Q�5&s[N'܊�uO�"2�����=$��2�9V[�i{��ȩS\�6Z�99�[­�t��P�*����n6��,�R��x�H����0��D�9�0��`��#hynqo�ye�~]:�^�[�Mɸv�[���ND���b�P\_J.�[�̐��#xkp���}�����Bol|u�����@�Tn!բd�>*5�ﯭ,�*�VA�jc(���5T#�:���Lݏ�a�~�xA��;�k��4ˇgu�j� �^��$���q���M/�-�y�ٻ�2Q��2�p���pR�勩e+ƚa�?��?Y@�5���h|��f�ʱ�xt�U&d&��~˲��?�B:Hݨ�2:�e�Y�-p�㯾��L�E����^�J��[�ttZ�Z,�NjP��)؝;�P'
�XI���5�<餏�-�g6�Z�ȭ�,ECg'�J���2:����wpg�>?�jH���d�+B����_c�֗�'�3���Иg9F��pK�|�m��U�R)R��B���cs䝝{|�,B��V5t[���G��:w�u.�8m(}�N��z	A��p��3��PC.;�t�k�P���A���;L���ݹ3[Ù�t�EB\B�U��qeS��8��4mQ���R3Q��ň��s���W��jφX�!�:p��*>�_����>�����H@�d��D�LX�I�C�)��*Q���'�-fz��X�8p�T*F�����ƆH�[�mv�G�Uzxl	��it_-��3�'�����-	��<apݩ��L��+���%��A�/p�o��(F[��C�}���h���������o� 9U���	�?����t�{�1�/t6n���ޡ���[#��;.��M3���Cڗ�D��P�i1��ǎ
��K�P^�N��P�)�f��C�^b���|�*�-�[�����bO����|��˯�ӒW���(s�O%����!�K7��k��׈MK%H���L���T���bu��\0���ۣ
-3��$V���%5J%C��0Pյ��%�Y�\���a�`kv�ئ+�h�#����e5�`��@�[�RLGy
��J����c#���r�u�?1^[��dTǏ?�?B�!�}H�����g�� q��ꯥ~��J-�Ec���Ҙ���+/`���-�ֈ-��Zh/o��.�yk}�9�!��'9�#��v�����9O�N�i$8B&�tb��Pe�O7����tg����h�Jv��2lc*j�Z�,�^���uƚr�LQV��K�'˰�Eܠ���!r�p��R�4��=nI�έ�h������S�y��q������<S c�2�P��r딱����Xqcwhre���Ưޓ7�ׇ�n��>n�uU�u/3�s������y�?]�ĚI�[��翋������_�e�X[�+��e�����/"����/J�>��/2���I��/�o��^��G>��VCݾ�ˆ�|�E��r�D�敛�m�M��7o�-����՛��W��4���ʸ��V�2�z1K��b8Y-� ��&����ߺc�|v`�P>,J+P��B[�+�d��:Q�À
٩�z����7�[6rynB�u4rxBg���rNsf�?
���b��Hy(�q�vi�V�/�uhR��V������`,�U-�zΈ���-B̼���A�E�ųr��Ų��W5H����w���YLTnbqO�&�O*�@�O��n��&E����A����st��4ž�P�q���V�[�oA,3v�U�J�'~�^��X���y�u���f[:��6d[ɶB�؜�|ˬ\R$2]-g��r��ܒ'VL�cː��$Ν���1��}��?�t����c���ر&��*�Y.��K's�*�N~�l��;��2}��-k0�opkV��V{(4���wJ.8��
.�)��m1��0;a&D�1���*�]������S�t�� L�z��9}�w��rJ��\ߜiwtj��#�#䢧����
4~��6-��[�w��87�y��>�bi�?f��9�5
f��y�3#<5,��X4���/���k_��z�[_����˓b���o\�<rc�:n�>_�ܺ6q����{ʭ�E"/��nQ���[�T��쑍E�&�%���.�ry����-����̀��հ���K�f_��LȖ�|oPv#� Cb�@XB��܊A{K��#���)I\�g�kva�)݊AP(2~|zjta�M����G�>�FQ����(K-u��
( �6%����p}�Ȁ����ܙ��|A���=���"��#�-�~"�qpKe����p�`��lYSxJ�tn����f�����\��٥Ăpk�|?��e�>q��
.&���[�j����'~�y�f[<�x�Go={+��g��uа9U`��B~#e�y
YM�v(�2�r\�10�-x?h��Pl�����e��Cu�ضQ!����bW�
dì}=wa�ʔ�D=O6��뛶�8�Ŧ֪e?3<%�
'�� �:�i�=%�b+���Y�)Ue�*]�,�E�ih�E���*�@+[*�����}Cm�`'s���y8�V�B�}�}Nӣ9�^7�O��-.6v֬*�W�YdH�fa�z�3���s}�o@-�B���BW��b­�&
�<��-�s��9�ʇ��ۺ
��E^_�*�j��o�
��lfbB�}�H����o��;��e�B�??����b���[r��{��}x1ڂ[�.\]lq �p��-�m2z���؈����ι&�[�����io%[���3W}"-���3t��t1x�~�f�NC��L�����q����ܰw���:k	���T.�Q"'@���
���#�i�U��?�ND �IG�םH`֡^2�^�Y$�)���^W� �'���&���,y��$�4��{(C�!���"^bAO�6˳�
�:�讹�i�%|&��+��
0�H�U���2L�a�P�hh`6>7��m�J2
0�7^y��O�<~���cb!��v62W
�~5����eƱK�Ϝ8���o�4�{�c-R ����y�ˋ��[;�u)�n#��ɶ� �:�_X�N*��jO+6�<���ژ�t�[^�#隓�9��ue���G��&���O�T�p27��K'K-�޹!��nE���^��xA<�eHO��18����*2��W[��2W��"�� �
���y(	��br����!;�.c�3N9�3r�/�֞s��ള�*Tn��U\O�N��(�lۣ f���#>`p5���ƁbO��C�;�ڃ�S�,�
y�mC���I#�Y޻x������đ#�G��o���u�R��D�3�l��[�Rӣ�ّB$[8�ܸ����.L\�&{����bS�F�[����х~��/~܅^�p���i��sWr�Ӫ9Un�g��P'�
���؝�;�n�!����S@�Ke@�cysX�C��lj��*�V3d&�-���N���{�����7���*qt)84��3�Wbji�$`�[ ����h� �[o8�
Gi�1���s^���rz���R�e.��LC�|���p�9U�J<�u��`?��n1b��s�-�(v��Q�-�3�Y�i����-���B�v�5
n�uv�t,-E"��#���� �:~�8�G�O�KC�D�����%���y�z�f^{��qoa���p�hM�bga�T"·5�u�FF�F��i�r/�ct�a���8VvqP�ٖ�=<�X;�:]?���v����`��~�U��s�骮���Z[>��Um����N���?�y�:%���R��w�mE(�����>�U����2����j��m�w{���kµ�v;'c��ž�Q':�f#z�K|P�)�mAL��{����k!�&��›k��_�ޘ���_M�]�E�QږL�%��#E�����'���z��t��E�ġEC�U{����i��֦�0Ll)��Lw=��+�TW.�C�������>�;�~��q�F�%�_���Q�ֺ���U�����*�=7�6���o��ZSD[Gn�TnQ�b�g��Z:&�Dw��[gZd
��3,����"5ӂ�`%�:G�x�P*�:����[���b��7��U���ܟ�qd��<�֯s��/^-�+8�3�](ʜb�����ӂ�7�\��_�D��hp����O����ra8��DB0��@J�>��n�Á؟��6��p��x�S�^���+ݯ���t�u,Z.ɻt��G�[��b�����Oq�(c=�&��nU���<�n�jQ0r���+�ΒΞ�)����Q�w��u�^b�c'���3��jh���%�v��x睟��5�/-�_��/�叭yr*��+,�B?�vR0�O:�#�z�N�rԦ�3瓦8��x���Gw�Ά�ڗ'TĪrҠ+5�$��#KR~i��#�`Uա��V��8Q�1{2�}�� E"aN�h1��j[ٙ��p�^<i�ϵ�Y]�,�w�ԅ��cv+��!;~�M��O�E� Ibp�?����:\���.��Q|���f��w(:�x~	�i'���PX��*aY5����8|�e�+���o��_>��[�]BFs]u�t�[<qr^�D�DS1������.5�@-.C#߂[�<T~C�����o���W<�PH��h�H��L$|�a�[pkbb�ʼnG&48�C⿌x�]�n��^;��W�\��v�?��>?2�ȡ�ҕ����F�V���QL��T�un���W�[��j��)�z�����b�ʊ�Y[�Ҙl-���rP����]�d�b�b�yE�D��/���u�;���8�8P����}d���0�K5
���)A�e���o)��H�V���<&��𑶷�3�<��Ddja��>��|7������]N9��M�:^�g�-LWa��>`�q�U\�PiC؞c
��D ��֥����Y�2E��@����[ҫ����q�C���m'���,�`��B�\�z���"-�0�%��pͤ�T�l��%�S��=�?5:��^{:Hf7s%O-�Í�E�ߏ��+���_�$��o��[���v����&\���h�3;�0��Rapʰ�[d[�n�����{d�*�k���E��:⺄Zx��Ws���+��V��jbYCQ
F6��r�v}Ô(� �!��L{љ�d���ֶ����:)=��b�T{�"�OiV�e��B}*���y��W�歮:#1ќ����T����L��B7s�4t�B-�i�Ύ�h"�<�騝����e����k����W��ش/G�jcC��#�y��E�0�|�lj׷�[�y�O�l�,v�[$��_�	�n��t�z�'�cֶ��ϼ�C� �[��ִ/V���Y�r�BHL,O �O�)㵷�\F�z���b��%T��k����l}�3f��q���2ڃ�T��t�W�]}���k�[ϼ}�X�ώn��ߺ���W^^����������͚6�40������2�p���&i˫��P�^���Et�	��
����

���]bj3����a����������b���$�! �u�P f 8-�dD���B�e�4�z�_���w��zU����ݻ�KJ.I���*霆.G)QN�D]\��R�A*V��iB��3+�x�^�]��x���j!k�9x�Q[�4��t������v�N���܎L|TK�U��~�-�a#Ӻ��ښUBЉ+X`U��	'p��l{f�~D@
M��aJ�j��m/����t=��~���J����f��p+�"�}4�!{4/�4��H��+�P�-g{D��e?=?U�n����
�=!l>���x@�e�C9'�maq����W�B_�lL(k������e
UOT�t��A�c��	W�[�m�'����ff�ց殢�qiUё�:��]������c`c֍���y:"­D<L�q��jʡ�����M9�g~`.�r
���~R-��S,�I(OME걄�..��_���7�7�����f�%�V���$�-j'�bz��v	�q&��Pn�cD�"r�����M	�Y]�]um1D4�7^�/ͷB�F����-ͬ��3�
��j�Y���ڵ+�?za+1��pNm�p�kK��q5%�Z�ż��Y׬C���>ܺIc���`J}N���ȿ�[�m��^[+d��*�On叶���U� �-����e���ڲ�� �`��L���9��egOX�� ��)DO͈t���r���Z��	�t����bvJ2+�Rw��B.fF}2��Pn���7�DF��kc�on�7�;nc2:6�pK�kn�&[�+TX���n�;rn�ѝ;��z��6���s�}��?�쩿0�\�]��LmQŅ^����;{R�#�=�;���:KJx�Y��;��V^Y�+�HY,�d��0��S҄qA�D�iz�E�5����w3�X���I�0l�8�Ï�f���G�-,���\��u���⥷�����*y��2�Z_w�J�|c.�쎌S����Hv>�"�*�䷓~yɶ|H���c��Q�[�s�tŃ�Q�=9��!�47W��z��}�K�ިj6<u�omz��e}�=%	�p>B+ͺd-��@'_TYb�jj*ɚkEZU��B��6�\�/�a`��̝H���Vv�ʹ�����X����&��SuI\pXp�f��͗�+mo��*��>h�8W�3"�4��:�WP˰�$t��ؓ��'=S���"����L|��y
`��)���m���|���Ҷcr��c򁭼�MB�e3ߒ�|�^ZwY�N�[^���
p�\>
� ����&�n�u=���Þ���kG�DD�����dC���O8�8"���n9Z]+$[�-~�aj�-���l�w�"��B_1��eCZ+��N�VC�'~+y�ŧ
�f��kf�%�F�����m��D�l�'=sa���
vxZ��۩�'�:�or+�r����<�
���Vo��L�活"��^�8n�����Xa�B�1��	>,�u�������Q�K�?�(�1Ɠ�,�Y��f{$I��+����J�3�Y,@��@��\t7��Y�b�"�h@i3��:;�9G�E�+�=~VnEIE�!���.S4\!�&J��q�+�bQ:p��3�Ra�)��ӿ#�J�����b*�x���X����{b�����~���{9۩#���И�;݇�x9����a��i${��Z�۵n�U�p4·[��X��'�RC���l�d�s��X��n�r���`�E����/	���s���p�LI�썽,/ו�<��-N6I_�
t��X�;Âؙ�?.�(/Ғ�G���\�2W�/II�'��kD��M�hr�$�#}7R��x���VN�Q���ˆ��m7���XE������$H����?�5"���|aN�j}�Ss�	�
d)��XTn�T�I�P��XT����A����h�*Y�C���B~�s��?\��d�O[4d�.ɷ&�ʆ�D�e-5������&4�[گ��:�ѕ-�s�w¡��e��f��:�
����HbtU��>��Y�[֘��!�Z����U��7�J�^�`k3�����:#4��c-grɜ��f����:b�E4t���J����I>�@.ol$��ucw�(�k>W[)���nY�Gº
��Ɛ-h�y��-�C�o\�z���Нf�.p�s�=T�������e>�ݽE�#�4�"�z�w�a�W�3�#(e�]G~㕐&̢Ͽ{W�U[������m?~�-:�� �SȔ�����1����LL��21ƭT�m����6|��i�\�h��o'���1�/��N���sr9X�I�d��
�ȁ8eu�\�M�ty�a��n��{���O�T���]:�>��w���K�����M�-L��ױ����NG�{�&�[Β6҈���6�j^�=&)W���<��#B2�a"Y�����2Q
�P�i�(�0hX�G"���e����K��\C)ֶ�s�����@z��}j���L����h��TQv��(��j&��P�iӘ/
x$����!�-2��}2F}_�Nb�/CU�r�{��hG7ό�:B��>U`T��૿��\+87,��]
�*;G�s�z���p.���B����S�*85�e��;"���c::��/��lY4Z�.e9l�>9��Y�{��(�%]�Mbe�'��|��c�]zX��_���5�]�ZIJ�=z�[�oY�ق�<L�}�M��'�f��S�R��]��Ղz�42�xCz���%!���'�߼*�'Aۺ-E�ӹ:-&�N���ԉ���v�&J��I=����JN�2�[��o`y66�F�}�n����D(ZG�ʅ[r;ou��e{pWi]��)�՘���bA._,��Bg1'M�y�X9$Ž�-�oe�;��܎���Q���r��
����x+��d������Y�,}0���#^|�`��џ��䫨��N6M[-:ո��)�d���T�`����n�:\ ϑ���!f �m�����;�f��N�U�����Pr�>$�ҵդ[�-<�8I��8q����=�n�qk�-]�S,���ZJ-��_���Bk�e
/t��:{l�/����_��í��E�V��"��ƽ��Ȯ�h!��|�#��m��m���&��FDS,��)�[$\V{i)�RpI"�h`{�&Q�ظt�?��)��֌s�K�\6Ki�-���j��@��M���˜J�ݖ�ˬ��ʴ��wVu�?������H�fՁ�կ��3�븯�P�Iո���N����S`��q�	�j�N�� �F�@t5�vJr�ԙ-�s�'�.D3idYO����|��W���4�ڡN[d}��`n����2�JB�{��v����^�H�S�w�`�ܺ�K7�%-��<ȷ���{��/��km��<qBN�V�6qdbZfi�E��>��YuY�ޕ�l�۹u��g>!��{��2�Zv����֖'{�����ɭ#o��rCkD,���܄[�	q����3{z2�Q��U���H&�l�3�ul���B{��<V���x�`Q���w, ��|k��K�%BG9��{Z]qu�P�k؝ΦX���Yc{"�r�[ј��gЎϐ�H*���b	�O��Q��_Y�O�q�q���Ud��hݒ���W�V�c�������fO%��L_��ݻ�0�:H�u()�ɶ'E-��r�0�\lqg�G���ed�eh����4�n1�s�EE�DW�TW�U�ni_n���,��f����u�Xu
�l�x�HN�����	��)�����!�^��?�����][Wl�9ݶ��;��Ώ`U~�)yg{#�kԋP��G�s�/>H"�ly\vc�n���V�ƜQX����e3�'��B�S?/�p��N�V�8��@��РÔ����ɢ�J��cz�%�E6K�����.��AF�L��"�.3��u�yr���K��'0־^���
_��K��uT���A����
��l�A*�F�A�$=|��b}�M�U��D�3�Lq��Ś,#�pKL!���i!�}/��&;�N��V����}����Ģ�ĆV~ӌ�{�B�b����rK�-��</�,�J`,������+����[�+kܹ����̧�>��5gm��֑k�n�\b�������O+pkks��	�e��^|�-���<-í���Q��'��y���S���4��V�|�h��/�b�ڰi���*��$[;�����:9��~��}p�F2��0���|���	NRTZ\���'�37����)����­�.#r�|�%�K��77w�V�֫�����sv�Vݺ%��0�F�]�P��ܫ����M���5gxϓM�ɇށp�?ѰLy��r�s�Q�믱gf]�mLǀ��qB�[}͸S��KH��0���dlan�	���nU�P&B�ni��c-�‘�]�~{���\UxT�����ip���=��C]��u�o}Ik��9�*�׈+���/H3�F�\t�N�M��G<A�\�|�=a��P�c�-��PK��V4�߯T�(Ͱy4�R(­�3v��/~m����a�bIݻ75W�o�r��le�%鶮�Sڂ�
�6?	Q���u�E�5g�b.
ֿ�؞��1"������&�h_vԆ|�4�ڹ��n��`
O�:�?�LЌ�%�a*�����l
o{�F�\5ٳ�g3ܪy
n%�rY"�"h�_�#�izr�Td��.�.�)�t�[���m��v٨%�i0�@<�[��<����Ͳ2�Ŗ�N'.��Ln]�*�0�RNNh��O<��[׏^��ꂍ�k�� 0~���Oi��z�}pkzy���M�>ݬ�naR�����5e�ڍ�޻z������r�V��/O/�;�y+�����@������1�Ԓ�,�D�)Ͼ"�x=հw?n{�[_��h&��[؝��sB/�N�xp5��_�
$?�6����"� U/�!n�DN�f1��ƪ9Nd�T�T��hbadl`Y@s�g�w<Az�h7jG���$^R;e9p��E)w��g6Wc�u����Cr�ץ�D�H����qn}�����ڥ�r���l=�q����[���㾸�O�A�
2.�6Wb����V*j��94YE��e(��J�O�*�=��?'�5�^�����}M�[_�/��B��	�~�PwŸ� ?H��Q@h��I��ɧ����qxh#�Ϥ�<z�(^��r�R���8]�$)��^�R�|O�n�s��bM�/���E�4iQz���f�UV��*�J��e�RSks��C��W܊
RS�r�B�j��]�αV�䖋ͩ��h�|v;����DHX����b��i0��e���!::]��ėN/�v��"�>����h	�AX����o�.��NJk��i�>�
I�NZ�Bj���pw�����T�e�[���_���J���Tp�U����E�j�[�e1�4��<�O��M���"�~��˗�}�c%����>ҭOeh�P�5qm��1����ak:��c��剷'���t�_4�ň5�Bj��6�N/se�l�L�'���B��r��Cg[�
�|O;n��8T�?yρ`��U��<�w�	_w
��yz��V������у[.�n��ǭ�jr�Y��^�,g]d�24o� d>qAD����1�F����E"k���. 2�%�>�Pf�e#���@����_��gw�!�2S���F���q�"�v!��b.�G��~���[�j�.ϸ{��:�V���j�%������4h�����t�v�U�4T�f�3���|\����K�.ɻ�N�ś{��gy|��[_��Y[\���v����z:�(�{ia����T��QG��ṣ �
���{{���y����7V�1eǞ�B�-W����‚�k��Ƣ�S�g[])i�$r���������g[��,�#�?F�(�W5��U��/Дf�$'�����m�v<`M�D��1"�&��;�W�]��V
o^{y�4���)�>9��P�%�B�5�kM�x��,��\��/>qm��J�=��}�1z��|�~�fx�a�"LN�eAb�t���`����lw9<�� 
jA�4�
ă.]�N{(��L�H��Y'ƶݫ������M�ɛ���­�P_����~��е����_�L.b��kʭ�ǝ���b�MԔ�ʭ&��ۋ�޿���֊���[$[+��T��Ư���(�k��$ \>��9y��:X�P����j���m��VR곆�)�:�����o�n�B���Mn9|6�U�l�d���ه[��_j�	������-�U�1���6V;�3&�rz��U0�����L-`�����k�`�lKg��Nu�5hڤ�=m.9Y$X���뾍wߍ���nU��i��`�R;��?-��2Qw����wܲ���jѝ��/�RA�X�B���[��۝~�TQR]�7D� dHr.���2̀�=QU�9Rj����l��������/���������귾�<Q���xf�<-��k�óS�7s���m5��k%nw-�rKo+������H|�)�I�b7|���n/���b�����FCNq�Ȃ�_��y�2�Bf{Zβ�?�UpǾ��
>T�i�I��T6�e
��V4U6T7��2�֘[��[O05s�iA���2ځW��t���fG��p�1���
(tū�j!{��Gs��Z�PK�C�9��o`qę�[�bd��jc3�Z�Q��;m�*�X��N�R2�(���x��Ҭv�%N��1��d1��h�����E�k�p>'�+������Я���ÄԀ��hL�,~�R���/�.y�S4��ҫ�6>E��t�b^�O���[[�7y�[G`�
���hϨ�������5k�r�8�Z�N[V���8O\L!�u�`<ޚ�Ā+9���}U�iU�v���(_@)n�1c�zֆ��8��.��h���+�ȳ���V���Vr�=:/㉅��'��w=g}R�[����|� �V��ZZ@*��e��r��묨h�T��䁔j+z�WB���_��v���/'�?�����'�O�^#�hH,^�
p����v�po��H���uŚneG���m�[��δ��6��LLS����/����f[�7~T<t)�WSG��A��G>�s+`�l��*�df_�K�>���W��Ւ�í�Bw �m��VM�M�띴�9I��Í���ն?�"o�c�p�{�[�:%��U竿7��h�����I�͘ù��wq�`�F�iy�c�2��'%��&�zE��B�����ʓ�Ã3i�������]%;܊�®�'u��EJW��Q5*�4�.��X�F���B�n�er��M�����$[X4�o :��@�p+��]�Q�t�:''\��7����^W�o�R�ߨ�O %`�E�� ^���WT�<e镅�pL����B�ː�S�6������&ryd]��-��I�F�
�^�lF7>č�z��ML,�@���kGV���W��3G�=��g��_��A��f�-ɮh]����Q��>������*�V�^�*}�ۤdX^�u�9����$的[�.Z!5b�V�噭L�|K�R-�"�"�:���pK� ���2SҶ<��ݏ��#�-+��=v�7_�)��I�drC�6P�rr���'��y�Nq�1���<���H��A掖汑�%�5�Y�v�44�Ѳ��wm�K���Rx�ZX�F��+�>(�==2wx@dh�|�s���x���wQ%E�;�V��-���ʓuQ��C��n�-qү�*D��R?�����/�O����S�;pB��s����f��9F@����eϟ���@�Gw��#��}����귀�����׳���z����<��૰ϕ�V�l�'o(�6�A�EW>����-8ɂ:���t1*�[Lv�deT��d�Pˬ�n�i~��ZtI�n߾y��vԦ�z:�[��k��E��ʉ"�a&��T�f��XX�S�V7�*�!�C��-V��)�ݷR�Ex*��=���8Sx��/2Y���R�5��X�\4�)%�p���DmM��f1*��yA���-V2)��0�e�Yj5t8��}���A@��Yn�\����I�(+��_���Mn!���r=sS��!�
�0��a��..��(K�)��[fD%.���Dvi׋`�����H��#7.\�X�Fc����Q�
s>B&9*\�QjY}�v���,#?p�\�w
�"�jt�9��8�kC�%��V&�{Q6���{�[ᖸ4�M3����=}"w_����D3��g���d�k,}�+�(��ܢ�|<���^9��@]�,%�[��[�-K]�W(���v|NɹD���.nD��/8U�1?V�ٞ�s/��q����KaG����w-�ʫGM@p$�zV%"�zI��>��[���0QД$���%��(�?��.���qu�;�p3T��?ۚnQ�nU���VT���w��-�]����D��o���ǿ�����~;�:��t^:��]���i�?���y��nbO���<�P)�P�/lG�\=]M]3_��_���IZ�\��R/��jjǼf��nӾɆ[�٣�[�ٍn�\P�Z$�[.R�G��$I<$�J�p��I�3��)^��K'#^1�u����W��Sov�qDk���PCɥ�)���e8f���(�J�'���-��
{��*r�-R�0./re?��U��)7�%좙�M��Ϯg�G�N���Śjɡ����g��3�&�NjF��lY�É�^*D����WӸ����.o�My�ŵ��=%��S>ïK�v`���,�!ա'�b��B~��c�ǒD��Ʃ���~tY
!�'%�Z����}�0���['�P-n٢pk[5�w
�
w�B���ؚ�r���tT<hD�%�?'K�Fq������45$­�+*���+�j����-��kN<�'��x��?���1���<��Z�؝�x{�Rș�]*��ku�;�(Hl%�'j�옗��F>v��;��<�J�xn����v�C�����T�[a��9�����ζ}�xm���2���/EF��8~�vz�]��DG|�XG����N=o�|�����i{\
D`e����nY�X�cF�����[�o4��r�@2��R@0J-�'w?�쳎�;��vǼ	N��&"9�tn5t��t��%�T�����n���2�\��o��Ԣ�fݖ�T� bbp��cnn���i�����ҹ��=��G9�Ŝzl��K�?�t�9u�Z����_nab�m�7y�E����f�|+�1/�\`��DOv��n��~l%'���[�d�G����g8��)�Yka�Ʈ.��\�u��	-~�nXd���p��J+>�mԇ����7s�[����pW�����|���ckz��"{zI�7q r�]c�P!ķ�F��픍I|���nP��Xa�Z�l���@j��5U{8����6�$?��v&m��;
ѝ^�̎��ω�
��7��J��°������{��h<�ACɘ���+��mmC5����7W���l���Cni��4���"��ҍZ_!�Ay�qn��|_�T�)�񚄂K��v���	��������>��#4�L�su�H���YP��
���U�֊pj�G�O��e�z�V�������_��$��e+dr��>�+H
\W�e�!z�-��z�.o)¦Y{�7�,|sJZ��>�s4�e_"`�_2d&M-_Xv��:�5�rY|��쵘�̺ĥ�7؊ar�:� �=���IT\���@v� �iH �|�k�@]�3#?�98l��b��ԗ_��WW[hsK�I�0�����O�?�ɫ�J��>��� ,�d[��'�@�[b!H9�V"��1!ч���l~Ο��:NO��s��	�)�\j�|^&Kp\�P4�oS'��O��۩ͨKP�%Ȱ��1�'���m9�䋜?׿�00� ��hd�"�M�c}1���2P63�5�o}�^~`y]'}�7Ќ�B�ػ���
�be�p:��7��>��~}[X=�-�D$��c{x?��-mpi�*6��t���cٗ�&�`��:�2Ǜ��TV�|Zb��t̿���o#��Ҭ[[5B[�Y�i�R�`��bowС�pI��݉��2�e8�J�|x����^�[��r�XO��k���MB���&K����L��va��@�×�n�w{� ������1	�J�Hr%��ʈt:;?	��b{'v@��(��@�l�D-���'�urv�SAƉd��6Whd9�l���=)#�@�.R�|ϐN��o���.Aov���u��K�F
����N��-Vnm�ܸ6���;�k��ε�Ϡ�ז;�B���K�Ekof�un���f��g/N�L����H$)t
�����K"��ĉ�E��5%�[�ۆ�0J�gR��O�|p�6�3Yl��D5<%/v�/Je��F��;����Ve��2��%��l���+�Cp��_�p"����-��c�uA�{6��N��ie~�Pz]�*��\��5`@�e��Ň�m�O�\���¦M�[E�^��<�߂r�e�y��eAF��a9���Hˆ��Q�[HN��:���7�	�DQEӉg/VW�]���g�.�5Я�"���o����g?�.� �#iR�����5Gx|�}dK��/
�����od�<�T�:�p~�,'���ԏ�c��k����[�d[��/v�Օ2�Fc����^^�#��Ķ-d\[�6���!�i��
�<����!i�g���Z[/\+-�<d`P��V��������2Ŗ�J�󠩑�R�����JI/yc�ᬦw��=9Sv���ڟ ��ke)�G\�4�N�0����N�q��tO�)鋣����ռM^n�Ly��|�C��n~�Y��t,Y�����Kne��IGrڟ���&_��zw�f赍�ٶ�� R]�z�IC�|wתg'�xr�Ҷ@	#�����u4�>�n���-����YTn��a�K�R^�v:0��zW��f��i&cm���3�
��
��u����Ҡ�M����5q��Oo��Š�:���ꨧO�\����5�⨐�
TA-Sk�\5��4������l�o̞���.�`d�ّP����Ҡ�47�5UV;;rV������R­ܽ�=��A�o�Z�}�O ��Q;/���������b�pˑ/܂\��oM�S!�y�'��p�HO�@�-�N1�r֎� �����o
P���-@X�3M%V�&hңAiM��8^r-eׇ?�<�_K���Y�/�@�2������E�k�n}��p�s���e`���m,�dQ�E������g���.�[S:�����ln��T����(��K�t����F)��� �Ӏk��#���4<'m-��s�`�1�ϝ<�Ƚ �.\<��P��_���r�ޖ�I�1�=�c��2�O�G"�W�"2��Z�AKWGi?bM�
��q��5�D�V*dҁ|&�n*�$�:��:-+��n���i�##��]��)={\�B��
��_�UP<R�9��a�|�djQS�w�+����%�d��n� N6n]�:����R��%��oIՈ�4=8�����[]��v;I\�o�8�5`���@�06\�KGtE�=EgI��29�r���jݦӛ�<���+�k{�|+@���HnL��ĝ������Àg(P��3�3�x�1��_��j�'��-�XӍ���.U���b���yJ��.�-�-�o��"�p��M��5��"�����~�~<�Zs\�-�"�ZI�%�;���:�"<:�C��Y�t&qS�!6q6%�q6��[;
�iN89�v�NOG�a�VU6Wb�5��5Q'J$YʞPݩp�:1iv�,}�O<}&��[^�6l�&�t��(Q��\��	n�ܢ������1u���:�<N�V�*�����si���p�؇������nȠ��W�%�	�Ye-�RseɼD��D������Nms�.i��~X���6��l�,���M��n���>���v��i���S]��O|��z�Y3Oܚ+�S�T*E��eL*+�K:1�2���;��#�ZZ�7�O�8NDIW�ԅ��8w>�o��,162���4Bz�����|�W��hlT�y�Gu鱞�.�'��I�UG�����~oI�t���-���k?�%"��I)�`8`'�`O!����-0�ev�2��E�e.U`9($
9���…��:R�F�K�8r�q�X�g�?-�V;�)s��c��?�2���ܪ���N��k�0������R���[�q�B��l6��NT�@�����p�}s-'Q7�S���.m[�K��u�N�V��Z�HFK��f����_�����b9o�-��z�����i;�c�q������@ЃK�;`9ќ����$vI;���_���D�Vm��sY��LM�8zY�@����C'Š�-]��H�����e:^��2��ޚ��(;]��K;~m�V��1��g8-|�rK���l-���6jl����nݤk?�X��Y�QjBsjqe�5�g�F������(�wt�̓]�âM�߱i~��J�Vtl�[��xᖡ���m�=�#��g7δ��زτ?��nO�%�2��m�L~���Ro!�S�}�Ub�������Ԏ7.�O���Y�6�DkuS���ـK�p��Rȱ����⃏��p����Ŋ���[����G	3F�K�YD�F:��An�'�"�z�(�Rq靓\�R���_�������\�\	�n���V���c�Gz�؛v�:��}�����P��!��\bt�<.J�s��-��ғ���"}K��.$���׸��Kzy�[��(��ț
���Ih$�9/[�"���G��M1O��KZ�sIW$;h��]R� ���ҼҤK��Y��m:�1��Y<x"�Ȟ�˖I���cq�A�0�l}���������N~���{�73SS9+�N�~�d��s&�bm��:��s�p�;���)��;��"���َv7�(yv�-��
�9����8+�/v,̰
-��g�|uk!�"�A+�(�I3F�_��X[g�`q���j�e��E���#mY3�0n}$�B�Ul���/�ײ�}A����h7�$�}��[���5mCC�8.��cW�������/�!��B�u�jTVjA��H�$��K�����~�~kj�J�y��������,���x��
�ND.�D~Y��0��W������jc��ɢ���g���ظ?�X���޾<ݘ,��s=��ı��xk�p;�p���Læ��s�k��''*�B��*��#і7T'31_�&\�Y����ʭ��^p���.�˝2F�ދk�����)�s!�����T��W�O7Ƣ6ɖuh#���!�
�L0$���(J�X�r>h��'�,>����H�\��!���l!?'h��u���v��s3�rk�ӓ���é�=��ř�,�T�{�l��`��6Bع���5�A8�c>�E%�#:p��U��1
@�-���Yc�[p'ؓ��;���s�Ϫ��lb-}b|�{�F����[_�10�'��tB��
�9��u�l�ht7F��&2��ޯ�ޯ'�#�b�&ܢ���r�%��$l�p����zQ�K�N�j��Y�\���1?_��k�#>�t�/�φ|c�K��U��Hkg0��h�s_�J�LMϺXfk�7��5���շ��y���=i)ɺCC�[�轊��h���ty�(r:���)�{
��7)���d���d�YLJ29N{~{<R@�Š��h�ܫ��q�닽��R�#c�{�S"җ5����̸��Ki����ʹ�aTU����c�.C٨�r��װwR�f�ed���J!�����$���[JHR(Y����k���.pɆ��F�{	��_��ы7�')����^���{ߗ���"ՠ���|�	�w���,�&.՘?�X��<��
�[�\�(�����׷��;m�d0أu��ЀpKe�֦�r�ȋ�4[�[��Y���4��2,r)_x7�9{���6����̬��T��(]�[{��-n,"�ϖ������H��̯#�j��.�x��7
�����?z����ݍx����m+��uC��e�[�ݲXT��n^.^yB�E��!�B|?�e�?Pg���Rݫ.:PD��"Q��9��@q���~��{�);fʂ���[gho�����d���؎����A�v�ꈅ��Z���|f?�x����R?U`�Q{�v�����ê-#oX�BR?�u����Vk���rk<�ymy��<��"����y,(��{	����jӶ
���#o�IDrX6˄{�a�����RjQ("k(�͞�ނ����ٍ\t	w��˲c�l�wv5�0�Fo~4�Cybl��L�.4�{rO�m
S��]e�mi3�Xw
������U��˟��w�E�[*=��=e]�_��f�QW�s3b��x� �{9������XQL��"+*�PQ�LX�����u�1�}9�Q_~����u��n�e��m*�v�JC���l�`K�'
y�c\e�}��Z�rR���a%Q:�F�R�Q�-ONo\����x�F��ta��FWQ��Im��Q�E�zY|����l�敐�>�¤p��a����n\Ҧ:�S�īk���7�[2�#�ZF�u�*P�W�[$b�a�p�Uc����k/�캱%����4h�*kkSeM�H"4��<�@+}y	F�f��Z�
-̪��|kp�K���VnCh#����Pz��q"����J�-?>S.or+�.)q}�����z.����Vܢ��&������-�E���2�#�2���!q�|�L�����Yk{�|�U4�j���[|`��u��%�!2�x��k_�g��v�E5���X���7t0�XIɭ���7rQ����3e��K�'bl�\
��\������R�o��
�ڥ���7���M���z�6��Ԩ#�/=��혇
2Ѽ ���[�h{1��4���o	ߗ�'..�S9-ip��C� >�5刪�an��-�7fe�7�V�>�b�/:,�r�	��B9��
닍p�"
�\����{���f�$>�e"e_l&�(��J�y�@,�*6���9�4uf�XEeu���ɺ��U��V2���ֶ���٠-X��[���<F�F�Xtͺ�[�uFɗ���\���#����9��c4�%��ijJ낳\{���Œ���!24AXamt��{#�p6�%(�ul���P2�7��)@K��Z�Z�L���Zs.�:���O>�[ψ�ߧ�����gkyq�kX�۬A�]�_&�(�{�y�U�m	�[��"�Ӳ-c�Jw��:���:*ĥ�xdK��-��a��rkM[�G��T��nI)5"�5y&�p]��'W���L���y�ԉ--�[�\<�k���[��4�ʬDu*q�:��|zJ}yiy=}n��
EB��=	>�p��]�19[�8��Ź>���S��?H{K�ɠ;��(>�N��z��)�l�s�c����u}z�zW2�w�=���&��'P�YS�[D�ڙ�=<�k�
��t|Z,�;.���%2ĥ���}�in	�Ҕ׮|&�sl��A���s�i�L?��wΜ�̤b�=�
��_�r�m��w�e�����U�:8�4U2Z)֩��Q/�
DžFП�	��0�kb��fV[�2A�”$b�Z����&94�<��[,NJrhc�f�d9����H(f�Tl��G!%����|�FP-rpSH�!^!
.���^�ͷhpe�����aI������t\���]�A����d��&�~�Ǭ��<�aeERz��Y�Z����櫀k(��s` 7
pI��Z"��	F�n7#L��˵R\�-]E���ي��"����$ג$jW އR�^�<'{
|5��I���|c{�W6�����)e� �7;�z��*��/a�=*-��[H�b��+�KL���-�5���s	�y��>��;�u��ʧ���n!�ǭ��	�4�E���,ܚX���񒄓:������^�����Np�����*}���U2+�9n\_�����V!f�F���^
���n
$Z��"Н�T<�E�<�UdR��8KV��~'���oQz<�}��ӭ ߒ�����
zMn��/�t{���&������/���}]�|�V�H�;�狏'�6^�5��6�w_���5�
��#k*::�v�"�V�Ƃ|	͹�D�PwA4��E��R1&[�e��ʹ�nu�9:6@G�9����9�0N9*�Y��R��
�6s����|h�nL;�kpK�e���<�[zȍ�R���\Z�LWW��MM���8scc�rf(�-��	�@b�S����A�[��S�~�-&8N�z���J/or
�"�ֲ�3�pb;}7�O4��Qp	�|�,5�P��L���	�����k8�n)�Ğ�^�ȩa�������9��A˜�ԴZÄh�c1W��u����^y�DЎ:g���1O)>Ǚ��VYf`��"���TM×����	�<�:2a\��\� ���ߓu�f�s�Tz���P�cu�K-������#����O�T�lE�FKɆ��y�g�
�_�G8�*Џn�R'^懷��B.�Er-}�s\�јf��T=�w�*��ГCƳ�I��"7SV��]!�q��3>�����6)��@�����<?�zb�n��R�P%��2�
�@�[X5�^���[�.�V�踛a"4�B��A-�����"���M~��Vᔛ
{cqu9ol��@N����_�
�1<�����A�
���Z��y��"�Nĺ���~rɸd[bE&����DwJq�&'����}98@�`LP�<�:�|��G���V�r��dL�
0����[���5�w���}������nE�C�����&ً_����`K��-��k!���y��~�I�wD�Ȼ^}�9�5�l��!2���؋��8��I��Ё�m�bʵa�|把*r)��i�����@��Ŧ�jLᗱ�t��";_�P�tK&�ǧ��O������矯���W:66v���7�]Hܽs��gމ��,��-���w�|�{�����L/�8)���I����AV��m��ͻ���X(�.�祰W%�.WlIF�#�o�:Mly�����K�:��eh�#�nIV��x���/YqnE,�?����xɕ0�Lpw��pDXjk��U^ĺ��T�pS��/f
A�^�R�o�SgcU�#��S�@�C?��j7B��[v���q��v`ռ�W\�]EG�v>B�Ť�\Z@V���sX�I�p&�&C��~q��+W�v�[�t�LR��Y5ܮ_g]�.������!a�<qcƱ��8��.T�mWVnl6��9?��&�ᕷ�1�A �L�'�9�F�kC���-5��0��j��ܚ0�����p����p�m�|눚?l�<��mͪ[�ں�n��ִ���ւ�+l�W�<�ˌRF�|���H)�V�W�[2��@�e�4��L�|�	���S�孜V�F���u�E6͒r��D/oh`�ȽONT=��Jud���Z��"��[��ʭB^xdd��/ϲ�3<��mni���P�-Ď��JAZ���ts\�L�-��mG��i{K�[��-�O���-R1�E�'p�/1ΞF��Վ�.�^V�N=���Y�|z�Y�^ATW��I�����ei"H�[$�(�xBף{�%�[���t��&��jo2fI��vp�4GM�T������?��;�#z�Ȩ��[^���_��W�'
�8y��;l�C޾��o�ZM����M�͵C���j�y���u8"�6�Kw�{Š>�`ڱ�<I4��T��`p뼻���c$D(ٽ�S��f�_1�%/K�j��t(�2��9�%�MSm��"���㴶�pWO�?L��P!S�.W�i�l^��ϼ^��.�:^._U�8�u�y�ޡ�l���v(�c��PI�q'e�:XȺc���W�7.��m.��dr��
�j=qq��( ��.�z�.�G?XZD��F�+q8J�7>̬��+J8�n�c�׍�ÕF��������$D��j��[�M��w�Z[
ܺv�N�	��G]�D�l�[פ�5�v�:
�>\ct@���+GuA��ںapKE����˓+��=�W&��H|qzr�
�r;W�Yq�E1�
}ybp`�g��5")�$�u>��g3��%߲�;
�"�E�[OU���-�vk9D��u @�Cf�8�Cwz�6_�e� Ln�3��%v��t ��u���66K}�講-g��x��7��.�O��b�;;k�v��T�`=�na]�l�Z�3�;�ɣ���it�2��%���X(���Y�/��;�D*�a�f��0|l(+*k��)+j�TU����ᮮ� �z,�a��Ž�PnQGZ���57��U�-��m�l���[Ў9��x���KM�	�8wG�H��?��h���[�-ݢȁZ$\�Vq��y:��[W{�9xb�-�����[�
-y�y��bv���Џa!z�$���k�E9ś�����H�iþ��S#I���������#�BZ �걗2�\q�^W֚����%M��"
�V�q#n5�|O�>����jў��=-x��m��D�C!�ʼ�~p��]S�*E����#�[Lr���P��p+����۬��1�]�ub<�
`�&\*;Tn�֋�N3
Q6��@����b@((��܆Q����.����0�9�1�R@U�D ���O5
��g
	�E��K��JM���M���5�<�s�3
�v�[�k��r�	��$٢�ɋ�H�����צ�	w"��5����yܚg�J�ss�ŌyN�Fy��
֐���lj�;<Q��9�Ӵg���x6���J��z��pk�֛/��9_v���2�A8�b�3�Q ���n}���iĖ�^��x���3��s�����ө�8��<Q4q�
��@�p�P���ڨ�h��C��Jlə��b�q�Q跤P4��m\��d\ڶ�bQ�e��X���!�R����h��luΖ��C�R��PV���k��_����U*Lp+�KVT3p�b$%-�����a�?�|u�6+:��\�����_��[?�@���9���ݏr�F��0z�C�X≯q��/�'­�)9�+�<��A�߿y[
H���#4
a��(��
j�Ǔ��	G(�����U�u�f�h�l�nJy�s~�N���$���};o��n�[�K��+�`K6���pQ4&W���@G�5SfC��n��/�)��@����q(���d�~t��n9M�Il�=�晬�[9��i�[9�u��]���$�Z����N�yZ�×�4����3Y�6\jh�'�-�.�f�x�E��o�R��.�׶M����lPC�[5�8<�� �Z�}bR�QnI��	!�z��5�[&�h�+�v��e���#WpKg0�+�Lt,l]�hԉ*��r���E��;
��W���A%�����H"V�qlv:B­��E�]��K�5�}-��h]m�)�q�S��V��R%bwZ��rkH�U{'�k�bfݍ�<1	��F�f��P��Vw~�4�iga���/	E#�z���v���ӊ�xMv��ܚ����u5�4���ݜE֔�d�g� k����PB�ķW/&�h�k�%VF�`�-���&�AB%�5%~y5�Qj�U6\�Ǹ!c�,�""T��o1����_��J�Hd/�o����`�_V�W
߹�ZZ0.!��ѝ�|����]�����'���_���-t6d[��`�1�[�Z�vG�o���ɼ����

ҭ�KOʸ����в�7��r.��DB�7�&�*{�������h"��a���B�@���P�
n��y�/�y�E�4��f�di������f�֙jv]˩L��V�&�E���>�[꫰��Pv��p+�M��"�R�@ٌA/�T�/�����h�\�;�O_��p�
���b��NZ�a~�_齝7X!��Ymp�����D��z@�EoM�;��!�1>qL�)�o��vo_�V�9Y��!= �,��p�P���!֗��%�Ҁ�A,�@4�-s��ެwז/o��5�u���m�O�;=z��?(�n(�������F���[7(WW�V(�}�H}/��t��*[	�Ǯ�6W��9av@hY�
�ĥ��&��ӌ��N|e�Sl9�0t�}�}�7J�����˛-[��Af��f�Q��u�Z�-�[�oi[��Lb��;Ik7�b̒��(e!s���4��� ��hΚ�(�**��4<;�T��A�ܒ`J^�A^!��[�D�q�#*+̸+�-z2��p�2��y$�f���wa�<��TQ!�WWS%1L٘�`�A�},QԤk/���{�E~�~�ܦ�UUo`��$Ⱥ.�(�8%�|�p�[�����g��7���;����ߒEΥ�7D(���l��M\D`������,B�������TJ}#?�V�鲄F�����P�Q ��2�H��n��Y�	z�NY��cӑ_���i��Sn�&�/���/�E���%w��K{��*+�ڊ.���Y���pG��G_�3���W몳�J3K'�u&[B�Hӭ��f5�rS��H�tK�[������;��?wmOA(�����LS-
OaX��r+����|���j�4��"SC���\��O�7��d�(�-	�[�t�N��`�kF���:�jWn�B��6����Ѐ��e���քQ=.�p�sc��wM��ܒ��!y�'�-~I�EKf~V����Z��0�Y�|eB�%g;���kpk���8j�˯��J����j/�2;ے��+x�j�ӪԽ����D�M��0b�a�r��BQQ��^��?�Ç��2Y��]��LQK�|��n��u�R�l����b^A����A��Q7�h2�	�nuc�i�e���[u��܊���h�m���=
-�=�՗W�v���Q�Z{�0���a��:1�7�����X��=~&���lJ���
�������������
'O�T���-.��V8(ͅ9
M���qIW�Xk�%�[&�~��}�5�CxP+���G}@���_��TkpQ��������y-�9����7���''7�@�Wצ?��q$�\�%�e�V���rB8�D��p+��6E�Y$���.����>��A��skdilJlNGkݣ#?h�&%�}x_fJ�;�~����]��9��^W�qnf��LnZEO�gE�p-b�9אO]8٘ݬ߅]ȷ��������|��>\O��%z���֩���!/��DbI�u�؉���=R?���Z���P(��^�`W�Xt:�v�cs�!�Q���X�p+.���%9� z�;�k/�%�d����{���nd+� �A+�P^�eׯ4�.cU�t�����4��p�6<�S�%�Rn�&���vRd����(�0�l�'(�"n�4v��⚡�_t�j�Ͻ)���^gc#b��Q'���z�p�g�!����7p�2�'�T��Ms|�%հiNz���"�=T�eZ�����|#T�B��n�Aꡤ�W��p�H���[��s+���f�[듅\��ԉ2�X?��ԡ�nH7
�Y�r��9)g�c����_�Z]}�*`���|ٽ)�z(I���\/�&8 ҭkS��O
���E�H�e��?��;ޡl�D���_ɣ��2�U��'�(UW4�|����O�<Y��v"�QzlnX�����R�t6�M
T�p)����~\���!oI��K����ױ��U��p���E
���e�r��
c��9Pd�'o�m
��$�n��Y��G��+]�k��I�q�w��n7�3�Y�M.I�x]]�ɢh���_tnVn��cu�<.����ņ|y����cǪ��Vu�lHM��I��
�e���WT�e�2[��P��C?�Ƶ����<�n���v� [�)����k�[E
��0��WQz��x���oP��C�HG��}���b���<�$X&�[�b��n�EV�2���?��]�V	S��q��1�L��Z6������G��ae��Z,���¶�[F_^C���EҮ��zW�ֶ@�n]3�u�?|��
�E^P�����[��輎���[[[���[[��P#K�e���-�
�8d��sr�|n��$�S��l��2Ǫ�+I�H:�dEq����s��[�C���ځ��$���a3�!��q[2�a�כ��Ah����R�\e_y���oE\C�\��X�@�E�X�V0M@�%1�m+9Y}�}QE������,��ӑ��HQ|������
��G/%ݍ�z�[uܔ��"���n(	���f1���W.��Β�\^�	���ɋ�Cl+��q���ց���w���?(�����?���Ƙ�n�PW��%!Zx���_�֗�[�F����J>�s�J]��+C�:�==���i<�'�-�ې<�l�Á�ł���%�>m,�4�TF#.������F����Ey�4Lr�#3��[���Ũ���x��D
ّ�/\:��s'f��Z�����
��s&�����o������{�۳��Q��>L(�^�=Նׁ ��Zl�)�����n���I�Ϗ���O,�\�T}6&5,7�M��d�K�p�I�ԋ�苨����EY�۪MwUe�C�!
cuzVwy3`��W���-�z��3�S-Y�����y\|�N�ڰ�!���4������}n�`��2�ëѮ��-R�5T�u�f�U����Ԉ���(Z���pky��E%!Φ�fGP/­e�Ikآ�R�U�\�\�OT~���5KEz�C�q��:�����'�[�x<8H���YypI�x̃G���Rr�aj63�2��6?��jmc��cQ����V-�[�z��^o\��{
y?K}a,��D��{�lH��`��
���V����@���-n�`@}8$�S{x�-�TB���t�kPv��1�c�F�!�[<��[�anZ�_�6^��5��j�/d��,-W��œ'�����рm�[��.��殙7����[f���^<���U�2�$_)ɢ�u�r�����_���{�Z�����Z��&펢���&����(�Ğ-:���ֈڡl�^8�!+��Vq�HFذ���1�F|%��F��
���*v�`Y��n��x�? �yS���Ƚ}>g�����s�ˁ�csu�.6[����3imvƼ�KX|.3Қ��O�_�ៈ��̼��)��A�;;���b��p+^3��t~g,�
�%���M9Gq�$�cy����bd�g�V��Y�L���k��pkc:�a7�X��>`�Q�(@�&`��F\م���u.r�;�
.J'�i6��	�j�[f�(Op�WB�EDy��1:$�j�[��l�-}�3�h��eϾ����6V5"�Rn�wdj����-�P�í������ev�on֫�)B��Io�;�]e��ܗ��j�Br���Zaq�c����24Ta�<Bǝ~�9Vm);�e�<^x�bV&:�N���8�'=��)�(�'��)�����a�)F���-��)�
���b��eD1�wr-��b��@��+ܢ��al_26YJs2��G�Uv2�.��Cm��I�v��7���p@�I���ycK?o���=%~���Q����-�e��<����6E���[y@.��TO�F�G$bee3e]dZ4ж綩';:=���k\�^��?�Ē��:�����)����tK���,�G��5�o��^��x��j�Ȏ�ﶻ;�r���]2-2.[{�6k<@����M��6�.c��W(���{��jE�/����-�<��� 9�p�(�<K�w���=%)V�c��J���u�A-��X�	��޴�b�
GB[:B��
�Nj���+}�t���HK+~]\%4�&�ܵ���}웸\����V
�R.�Ŝ%R���b&����xT����3�'�G�|cq}�<��F�â���;�"ԗF.�]�)���R��\��$[4'�S�L�AO&���2fE��,mr`K�֌5���-dI�����PB��[���=��L}<9�矿�"�-#�@�`��9�:/ܚ@"�Dlzm�qËH>��z���W�Q��3��.�j̞��l�.���SNǪ�T��]�e�,��['�E[tL��?@���Jo�?�-�è���	��J��d�'��������-qi����0��}y��dAF��o�,��~@�e\��rI��,���í�����f]j�i�{*���L���*u�HƔ[8yW��a��L!J�\�ի�peݏB�+�}1�Ŵ�<�
��4
JȢ��4bh���'���zf޺��[�<�¹��@'gR �����z��bDqr��=_��W�'pK��hq��n���/���Mz�$\\y�\7ǥ%o�í�;μHa}��Y�x�J���*��b�ډ��u�D�BI_!{c����^l:ߡI���R(��T��8�3
����g{T?gr�'`/���h@��RV��^�Z��h�+���҄^p�
a�[DV�^!�B�=n߈'�4�
���S7	Ͷ����ӹsd��Q����j>������b�|��
��Af���-
�LlM4[HyJ�3����SlN$�:1�_���f�hF�W�X<ݏ�/s����o�/�T�.^�Nzih�~�������z��PG�����S��F�Jo����ϼ͑
��"�<��P�An-���&d�Ξ�f 8@�#Գ�Z*S�Н
�fD��~Sf��l�ǴQ���C_nԨ�)�pqC�]�ײQ7:�솱E#��#�۩�n��|!��ł��un��o��Mn�!!W�.x����˅��'�s��I���8$��D�
��7$����}�1��)�*!>�쳻��{*�`:H���ʺG*}�O�/`����/#�f�b0(�i�Ӛ�m�9��
������9�s}/!��Ԓ�L����`g>��?���[���_��V�4ܒ5���Ӌ��:���1��./r�ȯ��ߘۓ�>cߤ��|�܉zd�	��@�Yy�0&�r
��9�44�>����G��iS� ���uFE�	��>T>��.�K���Qʙ�:�eK�~��hhJM��y>�����4�HI���4�Qf��?��
�%G��nC$���(�s�݆k<܂Zf0�Ċ�~�U3d�@���z9�Z�g�Md����}��\�K�1?��o�o"��-��[��a��s� w�(�&od��P��P�]f�Sb�����跞ٙ2����ٳ/{_o�y�����pK%ۺJG��g��|5P��D�龜Q�|�$���ni�}�v�W=w��+�N�n]�`~��-���V�$��f�`4 �nUnY�c>�OZX�anQ*=���P[�����h?vu!��̼�%�Ԍ��ln���.�ʷp;}0��=�Zc"+�=d��+(�\�l$��M�mppA Y)�K2+��Vf����p�a�A;=��+W�}p}C)��V�6����-Ӵ�4#��%b��ث��x�GUp���p�����O��Z>aV�)_�,�^br�Ptik�����6D�M�Nᖂ�o����_�Ƴ�"H�p@W��쭟��?�ُ~�ӟ?���Z�����j���c�
�`� l���T�<��b�ڱQ#d�X���ba,�����X��ā�q�x�Mj\|�x�Y�dkO���M׵�Y�m�Yvz��^�~��xM�~u.B�}y��y��c��p4��^;?�"�	i�?o���U�5"�-FBV'O��aJw�i����1�����ҋ�	�H�B�*�5PƉb����(�Y<ܒ��4�Ξ�������%�B	�����˥(j�'���;���(����v��EG l�)6��H!K��x�P®�ryJ�C?Y�$��8�E[B��[$\���j)������a��UCv��fT�%���Aqe8G2�5H)1�_�3�e4Q[ub�vCI��A1�l%"=���D���5ӭ��%~��V�-�FX�1��sk�t��k��8��pL����-cG�%�y��k����J����G)���a`�ˈMg��K��ø�θ�j�uѱ����!;s��&��_�־���pKe��Y؝J���C� ,���N5�Bbwj�A�­�VX����LZ���_.��[y��*�碛s7���6
�H��)�.��J[��ѷ"�JF�!��k��o](t31<�?R.��k��WR*j+�K�TK���u�/�)b$P��.�%wpK�[��'ͣ�*��I2"E-�l���0,�q9��,�D���Y���o��7y�L)�:��R���,k���|*�7����������P�����"���WP�ЏAv��'�Ӕ��?o�>�T�<��
���c��=���*�3���\�Dm#�@������V	��j,
�)��:QE(��O8�tu��MER�gwǷ�ev��<��d���C;����:���P�>��$5Ϙ!ߒ{f�pw`��Loo�
���TˍPj����Z�h�\�7BP���D_��e5��a[�GPܙ����r�d�8
�9�f/\�IL>�[�Z)����_Q48=%��n<��;���
�b=�։pK:\pKu�.-���^�[�­������n�%�WDw*���2ڳ���n�|�2�W�ݾ#N�Ly�F�隞%�^��%�86;opи(���3�O��m*O�]8p��i>}�&v�fXR^�~K���׎$�"c���t}{,�3S�	���n�փvz4@Gn�*E���-�Al�[��h~�	T�y�9t�MShP�d�q�p�*
��▙o���lu����W�kW���ȷ�87[E&�����d�v^��㧒��H��ͻtHN�W�Ŗkӗ����t+�7�]�|Q���R�)����.n�7b�c#jdZ���I�=��ʭ�Tr}���N���ca�h����=��'����n}���j�O<��B��V�	*�7b�`��9�ܬ&��Ӧ��M4�[�+�3%M	�P0���*
x�V����b�2A��Z�p�vW�v��}��h�ieu��yGҰ�l��oNدR����ӜJ+�����?�-c�O��o�TPg�6D��� F�E<�������XKe��)�/*�u$z����4�l+�����HYHf�u���1��M�E��B05sz�[��2{�b�)�Š���
0�kR�+���펚�F=jl�nz`����U�z��TH���y�X�~�03��|������[�Õ��T�A����s>z.ѝ�-�l�RI��$��Zo.�~6���i��xFɷ���v�ug�_]�E���)גK���v��Z�yL,¦��֙}��Ld�9(s�=p�lh������IIJLJ=%�|�-<�5,�gY��Y<�:Qf{H�Q� ��������n�./�Z�����'�`'u�g��*��	?7�:����!?�Ө��&\�e ���rGծ�Rq�`�<M������Ԉ�ta��_��<0$*�Q���tQ(
�T���j��Q�*���0��׀�ou-�r	���{`I�` �6��N���j��a�����3,ۅZZ2%���o�߿����_y����߾R���7��E03�b~J��U���2����&T��K̺���FDb+�o�E|�6F��6~��8�*��Ӻ�%k6�rQ;���ށa
2�PP�ř�|G�?�k(*5��"�Rn]�����"�?v�i���]�ٻ^M�J����{���O�Dk�E����B�#5{*��Ɉ �]�կh ��/�[^�h��{B���4�$�w(�����/lS���(/�
�(�
-���!�Ҭ�%�M�9m���[r*`��
ͲN%1:���T��[b��F3���
��^^�`�o�r[=�$ݪ5���\���AoK�%s>
pkn�g��Ȼ0�GU���R��^c%5�nU��T�śr�aE�B������I�D4��{o�"~^���2�3��
��5]�7k�ǧ��#g�|����>�k��ZO��mG����pK�-��_ߑ�`�ל��@��3#��&9�YX��,D��A�Ê�Ҽ砱�P���2V
�B,\*q�*hX�J)��M(9��j�(��,�O�|��#�[��pٮ���mQ�E��(��U,m)���>V��u��YD�D�Y>ҝ�A�@U[g�7�2�>��	.ESV�f����ŃO��)��-)��&v�e�5e��}��? z�5pv 6���"��[G>'���ﰺ��7��?��{�������"<%���Ǜf���T懝2�Xh|�6�>����~�V��!Z��.�څ�7o�����
���_2S��&�2�Vj�%��l=�a=����X�3���T���uV��[�T1��T�=��g,�?	��?�?]��v��>aI���sY�6�[��V.{b��@Q���y��Q�8�G<
��bqwɤ┳`�[��׉i��"�wl��[�,ӈ@���Nt��,E*B�m5	F•�%c�[�X�35y;=��X7�������N��N��`Iޜn�+��&>���^�խ�"�`X��]7�kGϭ�(ƅ\�ܢ��o�^��P�y1
�= �2����o�ܺ�$
��$e`���?܂B�
�ki`��!�,�m�SCf��J����j5?=>,����.��YM6����[���G{kg�i�'bwJ�eI=�T�)��)ܒ��E�"�"�a���M/�ܲ����r�S����q+����n�4Wf�TI�T]�4�m�5n�����-�Uc�W�z[��_��BF��RW'�3u�_v<dA<���V_xe��x[�t�G=��ys�G��A[^�UXȓ�F%�E��-��_\k~ek¥����<mk���t��C5�e��}D���T��ݖ���ܺ�����7�ʟ�k�$���o}��آ���A�w�i��ú,����ի˻?r�����6a��uM��奇#ږ՞�L��ִbK
�g�E�\C�-�.N�v��2�>V��Ɍ�!���5�V�G�E�'��G�)u��>�w������֞�X���<q�s���R(z�FI�: k�f�xi(�,��k"���ol�Qs)��bDAMOCц�N]ꚻc#�*񉍴�Y���f]$�l�aY�b����#�]d<�4�x�"1I|{�Q�9��f�f%��,�W�h*#5-[֍��{��*܂Aʭ�ޫ�Q�$�<6W!j�e��Q��|�:�xJ��R#�N�5}[.�]��o���d���-Ѧ�&�2[��7*��ZCߪ�#2���ҙ��g�qI��X5�8[ʇ[��X��V(�[`��4��p�v>�������[�ȷН��Y}�A�X�>�e!b���g<1jS�@�s�1m�S�i�CD.J�GF��&�� *�0�dY�����_e&��*x9�x3��>\�9>(cf�'����Q��qn��U��:����������,�!�6Ųi�Zh�i*!���y'x̢��(�N
w��e�~[��/�ɑ��xK�%ub�-]��ך_k���[���量��;�j��=���~c?c�ɗ^7�߽q��������ȷ|pp}���>��漸�|zO�����|�ؒ�E<�oj�(gIZ�E��A]�RyG�%�r��J��`�x
F<(��R��*�#%�&4����LS��$Aܥ�*���ԧwR�U�e`4�(�uQ�����\(n��o��NL���:���^�����)�}����B����_�0K��%B���4*�נ�e+5�U�auZ>=���&����1/���ù��C�|k�Z�i1�=O�Y$�����A�~�l��	������LԄKW���*�`�E��D�-�b�b��xȇ���$ye����p�n�DT
������NL�F�[��[��ـ�$�І�V�Y�*��nC/�"x��&�b�+0[�G
y1�a
Q$��=�K�s33A]�����0v��b�rknN��`*�e(f
3������⮺S�dy�Q���}l���YS��c-�i�oI(��c�|-����
���xj��1��t6�[!���lr�a*ᖌ��蘓��&U���ָ��8'6��a�ΐJ�(�-1��Y�]�opk�-��S��г��sm��e�V�n�Pv�;}���X�v��/#��V�U�����?k��/�[�+�L&q�R����8����o�xa�\��C�pK��!P+�"�%�꺖nG��ܢ��1�m�'����X4�����֗����Z������pEA��U��B�XQ��{��r�؇�&�z�2�vxB��ڒ���`$���H���YR<�eFLTm����~q藅�'@��V�
�����m!�K#?GW@��*����Z���;Rme���QܑU�gώ�]G�c����-��ȸD����󈦚*a��]�?/�J-U.<�d`���x��Iv(
q����i����92�X��}n�|��Ϭ�l�?[s��$��	��6������ڴn�$�:\��JJ[��qv./�6����5n��7|iȓ> ��n��@��W��f_�E=#��.��aߟ���|�r뒘��0x�OMn��:q���v� v��-;�ҁ�~��w�=S��t�:���	U�93�!�b\��g\p�
WjN�N՝��^�|��d�X�䷿�#0�mg���rG遳��X=W6YPn��B#�M;{}%�+B�Dh�[cK�N��xA�rr�]�GQf	�_������π�����؂��@G[aC
�}6���[����Ђn���v�9!4wc��2�g�C���.�o��m��Rn!F��ڵR�L*2s���������d��p+\�;�\��TY��ZX���&x�zE*��­'��N�P�-�[�G�`Xt�ոW�[_~��	�$�u�W;���`5��E4S�o�3.|��?��c�H~���`�1�p��9y&v�nʽ\TN/FƝ����d�jJ�������q��c�� �؊D"C;G��dƚ�m��lK4��S/����v��^���.�:������ƀ-��g)�� QkFL���[5&�X�,��=�Kؘ��Z���G � �$�c��o���[�]2���	#q��2@l���*v�[�yl���N�?�.��=3Ѱ,�X5o����m�ʌ.LO���8���cp���1bx~t" }�r�[E��!A59::O�uI�e� J��"���D�W{))�[R'b���t�í1��5�>�����m���u�"cq���73�|��A������Sâ��8)���־�3��ؾ%���;�
��<����V{v?Buz~���j�[�ĭ7&��o��6��+o\JE� l)�Tv�q"��!�����y� |JÅ�\�̐r$)J喤\\G�]���pC��=��Ot�F?y^�����{zJ(�[8̫�A�$u�Y)�疈æ�!�[k���F����
�$ }^ ���.ơ�W�Rx�QD&����f�,�,!��#����bO�������hnm]喯���
|�G�h���o�-�Ã|T�fr��ݷ�~ֻ�Jx�����j�X;�oj���"dU��6�k�I�˚p���ٖ��!�Q�=b���'x&z����HwN�,�A��'�	E��ҙ��	���z�B�װ��r$��rt?�=�(���r�[�����./bq�	��՞)�p�_���˪�5nѼ��Cr,���v�.�{'S%�,B�[��ʭ�ĺ#�����O^�t�Z��,$���q�0��"v�R��0=4��4��Ȣ#��܂R��K��]w$10�0ڀ��?h�'T���/��t�.�4i֯�'�
��E՚�Y��.�ִ։ʭ����oh�g��4��ґwzy���՛YZB��rq��b�IH˞*=�{�풾�����"�b��L���]��V҃$?�6P�[؝�Z�[�U]��;.���m��:�Q���*�T�Q�f���<�V*�-d��o�\�M�3N:�9'"��⤻���UF��������ԊZ��	7�	L��`+긦&����1�82ֿ<�܋�NJ���N8V����{
n�3l����{�$V�&
�Ğ�PZ�u��m�a��-Vi������Xgq�e��l/קɷ⡕"�n�h��
����[њ�}g���w�x��Ň�0u���'��^~�V-�q>�B
���W�ކRJ���ő�J\����A���9Kt��l	��5�BbZ�4ZDߴ�,9~����&`�
��kx�wx<�­Ɉ��˰�h�"��"�Y"l����E�'m�J[a�����C{j�v.��B��\���B���9f$ث�[9�~�݋���� ur�–�[�[sy�@W��E�jP�X���|n��+���/ܢdilm>u�&���U��SC��l�w��x�!_
�(v��Yŵ(�Ox8I�l�NT�ԉpkQ�51|7�����k*R���Ul���.�h��ʻ�� ���yVB�-������K�D�sUV.�r���|�؍+K�L��í�0i��ҭw��]�/-z��㥥�ۻ��k�\t��k_/vV"�ߵo��֓���;�Ft˓�P�Lϲ'9��A�wZ����Zqp-},?Bo%:E��촐n}L�~�փ�nԥ9��;��gf�r�|zG��VC�x���Nnu���Vծ]U���Z�%��$�vߵ��B�E����lJ>h�H���q��-����y�`��{����xk)�F���!3 �Z^զ�R�T���
3��aX��,�)���꺨
$(�j�������n���V��1������/��ҫ��⽼?���W(D*?0����A��7�#㒸�|�:��tO��5���[Mys&��]�#�@\sKԂ[���Y�\2.?�	��3�'�8VV�y��q�`�36��E\*�P�<���
��@��4�Pl�����k*�ȬU{p�9��^���x],�N�T���ZG��*t�����ƃq ����A�[��I �\%��.1
|M���c��C2�9lc�BcC�k|�m�g�詭V�CR�^UY�̑�Y�V�,�{bPic>�'Fn�6ibf������<�+
�7�zn�s�����E7�<��bjw#�p�L����F'd��H�de�� *���A��R?v��7�r�
1ے>>�H�\�LO
ӑt�{\��e)A��S�w_��Q괅���'[ybz]�b���ңf{ܒt�Yl���--g�[���}�-��a�l�"�™>�QZap+l��:�[�)߇[Z'Z����\>33g&Xtg�	�fQp��Z��Q��pk��-r�r���t ߺ���Հ�~n��>����{4ԵY��j'(�z�qs�u<���5=Sԑt��=,;r��_�v��T���\6�m�~��mB'���Y�-Yhc��v��q໚p}r��+�u�}qnY[�m��(��z���G._8z���Z��Ⰸ}ƥ�%)�Mm���m\�7ϝ��pu��Vl���%�k�D�Q��E�uc��m��f����<�գ%���`��?	�s('�G��B�*���2���t]7���C�^CH��xS��C�U8[Ҭ]��Se��þ��Ĉz[1ӟj)���.Λ�]$^�­V�������">�
��%r%���&Π�T��1ʹ�C'ҭ\�0&Y==��3��U~9�d�Pԅ����+/T��I���*-+�)+\F|�dI�:�ƗV�qny�[�o���eo��a:�:�f�t�Äy�e�h�1�[�	њ��d��-�M�s��gq.g��5�\y�>��2�3=?�q-�f"��o,�_r�J8r�́��f���%k��,�[	���]=�FFN�d%!�O�PՓgEA�;jKܔdo�:���yІCC�_6Ԓy!˛�|��
��ц��a����C<�֤<����7�eE���`&�:^���t�s�-��H�pku̇��<a�[�c�p��rk���i����]�ƒ���C�B�L{�{�?��`�/I'g����R��lB�&7ٗ��	����?\��y��u�X�PuתmͶl]�H�h�tKkD�Q�e	�y+���8Q�WA�d�7>�#R�ي�-�%Ӳ��gz�6A�9��)*�-���Tk���Օ����L�4���l:y�N\ԑE��Efo����~���=�j'@�2�1r�<�2G����,2�꼆
*����ʄYS���Xfu�$3��-��������3A@Ŕ���w�~��a�������{|8��g�Ϟ4{��~��F��!�m/��)>E����"'2�ˀ�k�38�
J-��V3�]ʮ-.�f��D�,#:	�F#~T�c�L�_f,����/�!�ek�t��_~���\s�…�(!+!���oB*c%�*�Pn�ƹU���[u⚽��%�4�����=lD�Ȋ�K	1����0�G|\����H����}�=�\b��^�T�	yX�?8=�Z��t�[�%�K{�j�A��u���=�p�H���]g�t�>Pe��R��"�z������-���qiFw�؟�bY�D"q�V��[��PE�b
?� �$Y­u�P�pk3��:1�:Q\ ��n^{�ܹ%���9���Q1��yh<��A��A�L^k�4�4���n�.���˓�}�чM:���@V��5��|I9�F�\�K�3��ޖ^�}�`���~�!�s���s�:D��n
���e�,.���MQ+��&��V��fg��i�[�w�:s�
�l��u����s��<�s�S~�x��.��s��^�o��/9O�_��|u�qFy~�ۻW���W�˒�w���s++��c�~h$\W�$�׊�K�4�榝�`�L�����C�;+�iiu�$�ߑw&�"�/����p	"Ɇ�枀nl:蝤aF?_���[,]0��Ы���i�
�w�*K-S!Ğ���-�<�V���Ԉ�3n�n�kM7o��g�[C�"��h�N��Rp5s%H"�sԋ�����7���;y�'�����Ş�q����Kk�v�p���a�G�v*�_~��� �*�w~9j���\Z_��i�[�ԅ�pK�DsZz��%��<�̷*��0М���,�I0R0���'f�ԉ�v��*�j�i���5�md�g~jzz63��/?����a�M�>��[l�o/	�f��#'O���B��|p{���ny���گ6�ZH�0Nq��D=`��Z_ޠ�b<�Z�k$�%�r��$�C������
	t�ȷ�ܒ�j���o-:UV,��E������~˚����k}��p��L�R�ҫOe	@��ЛK�B�E��=�G�
���x�ɬ���K�{7
�d�����`�B�#;�`;���J^r-m_e�H�e�Z�ߠ%�`�BIjIb}uai�P���o��$��侯����c{���-��鱋���|@=�������[_�o�-#d\��}9A|��L��z�j`����݄[wnR=ucxp��p9�[qr��W�I��D8W����=��xƺj�.a
@�U4��@8R3�!R��t�+���N��2�36����3��.a���z�K��0
��Qh��Z�/
.���t�|+�U�映� `�
�\��o!����x�C)�W�%�\�M�S��p������#'�|����?W4�6k
�zR0�l�D�~��眜����2�j�Z=�0�[�mޫ�k)<��jDW��[�j@�%
�ʫ�H�\880�C��}y��n��t�Ty�5O	���"Gliyx[�[��>E���dӵ�A-iȋ'״3�)����]Nt3�b7��w#6)M>��ӳKA�X 
���<���2�(U�2;�ly������F�,���l���rK��dH*F���m }xcCY(�N����}q;5�|\��S���ݵ�̡ܷd�s���`�]@�����|l�o��(r��ƆB��E�H#jN�!B�e/~�ͺI3(͜���l��^��3�h8bˬ�.	�y��x�=����y�&���.��U�_��{Hv�٧�؎��Y�DU�o�j��L�ȷH��Rm�ֺ��.Yow�Z[W_�;3�⏾C��wk�$��FbM]��\����'&�Hҁ�~/����^�W��e�<�7?��α�7��߼a~�ýW�ޜ�����'p��vl��E��}pة6̜$��r�0w	���JE���/Mڠ@�n֤�T�`��:=�ڋp��m��[�Ûz3 �:�XWi)�Rl��߷��q�Y���ˎ�:�����v�Y:y
W��8�A|�
��:�C����%1�����&Y�'ZS���s.h`KD�y�*���n�o
�G�m�=|��]sD�/&QP�滆\�����,��^��B�0�k�%q���s���oS���\}��o.��]ȵv���F�[�ʭ��ܒ���C��󺮆8��"�]=�d n�v_�~W'{�Q0,ݨܽTQqB-���;�N��Ƒ:q�]=����Zrg���Af�9�����˕Gj����H�N�$�Ŧ���"����QK���|��ɾO< �1l�+��ߺ1Q>	�uR��^/5�@̯c�ʭkX����U[��Zp��ޚ�2��J:|�-n f�T�/�9m�1��>d�k����I�DG󵲚�9���1)}���F�i��*�N�%�v��w�wm|�=A]19z�����HMOO%�k�طn��'�:�̳;���lvZ�-i�18����-F���Ws����?|��^:p�ͱ}�p�e�!���f��
r\�3��\�ЋW��w�[�e�V%�Z~�3�(�����;Wo��o��ke�����h!�̖�l�Pt�4�Oͪ�)
!�[S*yG7i�oTy�dgU"�a�Vr�Ma(���~ϕ['�Ѓ%����bt�c��!V]�Q)�r2΀,�l�/�F�N�;v!�*�Fg�W��5,.C�T��������9P-O=�Z�]955Ac�
�<PT�GPTkH�+�\m�A-iuM��C-�|2�{�9`%db��P�Z��,T@D�u^�r]
����r��a�h���Z
��W��S��n._��N�p��;_ʭ�5��S�!��$^f�^�5�l�ir�@��a�kS�����R#N��c��� �9�k���
at*���0���^�"	�[S�x�᪀[��S�����ɪ$�[­�q{��9���������=�(���B����5��6�-E�e�o!;��!�E��N��c>�#:]M��3�9�.�>��KZHE�qC%�B5�p_[���4�G�,�5��;._k��iZSV�J�4�v4���n�'66	�-m�sިMx�`�^@�P9��Z`
�v�˱!pRz�-�;��'�J{��#�I{jG����/1�\�^�,���٣?��#F_}���ο4���gXPw�I-]�'
�X��
a�2�;�s��g�h���eHIڥ}x����
%�ٛ�}��: ��ߑ�E���t���sxJ�T�q�p���T;��iAo��;~7}����q�iVO�0��sQ�-Y�yB����c\9|��Ų+�G��$�$i=U�M�#��w��%Zv��������׼r��5L���ҼK(�Ӯ��UW��?��	}z����+f�iZ��3+y�-�6Dg'M����v+�!I!J����v!�}�nI�C����ϧ	�=.����|�t���ż��oI�-!��s����]�֟��[�-]>vI���7M%�ר�[αC;[_����T{�/��+�:�#�����Y��u��֢s���y	�DJQ9�2;���Ƈgfr�+FYW]��u�ԩ�L�t��b>q�WM�
D�o6P
ľ*�c绬���3��~�[�P�|��Ma�`�}�R&.�}2f�-���0���U|N�%�B�)��K�E �R����>��n�j~�ڒ�"
��w��Idb���⥑2�鎇�և�b���4�Ņ��
n��%ݯU�<آI�t��dm�K�K�E�jɩ;�m�o�1����x��D�UVU�^F�n���!�$~�ҏ���:|e���}��3��^9������;��:�/rK�>:)��=���.�
W���Z+�f�b�d� ׇ�s�*�����pu���wޅk�N�%yI��n)�n
s���?�:���r�7؃S�x�xd��R��{�����hN�v�$a�eB?v�R���;�H���zM���O\w_bZvy��a;+}���$;+�EN��n���r�9��Z5�H1jF3���?n����X��`�]��-��Ԅ�� +������-�_P���6'�U�<h�~o��7��'��@F��[�)���T6��A-�Ѽ�H�H$���E�oUk�E�|iƅ3��~��S�r�2�%C�:@������W�|��WhB�uI6�ܚ�}���E�X\!�QOí+0I}"V���`$���g��>��X�V��k��tpn�}|8�6o�b!'o�{�*�-�e��]]��δ���<Q�Nm��i6�Ղ$���
<��%`V-w1���)��z��+_tސT�1K�/�(���\=�\�9Ut幱S�<A��oA�]�����g��;
�:�9^nI��E}b�-��aǩV��Z
��+�hMe#�(��3��g1J.ʹ4"袢Tn�#����4�p+-Efy��%�f܁��g�:���b�%Q���L��u�ae�#�z�����7k�aR�M3���0�[�,��V羯���i��o����/?O�Y)�,���qp~�o���n~�_zs:�-Zp�+���9�6�-n�9[�.�
�8�hp���>����>�4v���v��<=w�XP�qg��q�(��mw�/�P�д��E��| �O�}	�v�m�_`5�s��mKK#��5��ؑN��
v@��,�j���3t[��­�bO��xcb�T�]
z#N%�]��Adɏ�!&�Ī�)2Yf�l5z"�la�����c�����&cQ�rT��%�߯�"�*��VP`�[L�ܺznݼ�*��E�rX��ֵ:qm���߻o�C̝N�-Y��-_ZʛqϹ#�Ж��[WT�u[��3^�N'Zӫ��y3�������ۂ�i��+�9��k|�v�B���+���r�jg��ԉ]��j�&rK=e���g�퉩����1�|�b� �/�Q��f�ExKm�$��ʭ��ȷ��:W��%<�%M���1�p���|��4J�u���|�j��F�\�t�­-e>U��
K��4�(��5�'�`�›$�)�2����vH!����I��� {��9���.n�d���mK�{ZjVv[IS��j.���o�`,+��]-k,��
.�0�_�1Z����a��oe����o�%p�cr��|�g��+ԓ�b��G�}"��=<��%z���+�x�HC�V�Y+opU� nR)?���7�VBA
��&Uט�zwI�5,���{6���͈_�	�	 7�V��(���Nň^�%��\wgG^�7�;u3��@<Bp<���!bǶ�J��G3�ZQXx[
#B=��2�T
�<�+���#
u�`����Fg��lg_�Z7C,�V'�tJ��������g�d�,c�F#OMخ;YK�S�����&�$����rT�i¦à|�[�������ŭwH��[��Vu@�e�'RC�ܚ����r�(�6U�&*��4��pK���"9��I�K�u��^Z�ı�)�7�>{e��ww/��"�������K�4�8!�),��f��,O��5{���MsW酣��H$َ�^�<�/݊Fn��U���2�X���KZ\�g_&G�w37�7�2���6���*�ɱQ����&����r�ecaTR�wq�>�l:C�U_��T�ղ&�)R�%A�Q��F'n��7m>�&����X�un��ɩ\����	=�M}���-X���9��Y)��۲|>LqG��e��W�d۬\,:�*ԓ�y��SQp�RK[Gv��ǫ�{se5���V�[:{N��3����>�=��Gݓ�[|��s��6&F��_��v|z�6� ��}�|
�U"�u�[W��3�������ljjw.�wlzG��hk���V_,V���nͷB`\��2h�4��{���1�F(�;`�fj������*ln�tVna+j�EO0��Ѫ��JeU��	�[��bc��Rnqȇ5n�S�E�e$[��^vk�û�d����b��Ԣ,��6���.�-
m��Cc	�j�-n��LK+I�,k\Q�R�$Z��-��`k5ߺ�[k�^%�~i�MJK#ߺdrK��/-O�\�{�.ـᬼt�Ww���Y�qly1�#Ȏ�q��T-z���={=*����� ܚv��D�0W�K:��}­��'A�U��,�I�N��p��N<�6�SE@o;�C�(�6�|����-�~�Wp�)WE��nY6$t���%c��53�U2��a#-sD.�ܺU,,�s+A'ߵ-����#";�|��X~�e��$�Sn��U�Q-b�'�T,�v��c�p�Ș"ƨ`+Qi'B�Y�4ڜ�l
�d���mYY"5��S}�B�^k�^z��8ڐVI(�$O�[�tj�2���|+�-$�|�/r����-�&?~槇���=���J����e1ܛ��������1��I���0��8B��q���a��j%y��I.�5���wsk8�ݵ��rW<�n�F��״/� d����	�.�.%�	z؞X���Et��ɍ�� ��E	�W���Mz�iik|c�-��Z}\�^6JWb��9
Z=�pIH���xi!D�{����d��vL��p�Չ�.rI��8�t@Q�ka,�36��I#�}�pkH�?�:�@�S�vVW7��:1^.Fj���	&ƌM�⾳5A-��-Y�CG��o���[{��8]�~�D7
~���ı��	單칁h���79K��b�[,_�՝c�������Pv�ܸ1�<X�p��%&���v�.�
. ��M�ܪ�a�`��v���&j�����d�)��X�Ssn=�m��gS����6����6��["v�W�Z�w�SD!ָr�:HJ�n�֤��ڒ�kWN�q�89W���z�A��q���!�[����GqO����h>͓�RF�ALj��� �4Iw�eٴ�H<YF���kIµ�5]P��!=G��V"&��Y/�^���Ϥ�$_�'���)�NR��.�W_=b�>�����(��B�^[\\�J��_j���o�V��O�b\�|�;O�9����?~�Ю���}���o�Q��׫���Y�	�+������Q]�y>���xNq�s�6�u��mY�1��y���`&0�n�rk��]q�8��L?���N�Ե����!(�M%�	�&G9��bC�/
pt>�Z.:��Fi��}�붮Kz�(vUbɹ�%�W�["�[��}��X�d.a��՜9�b�����cdME
���x�%�r.4��Z8W;��)�Y(�"r-�>�ʒ�j�EE����j�v4�{)��x�����k�~����_�K������^�<�{�	�������O6X%�[���K�Ln-���9W�k6k"�&��LnI�%�,F�����'�ܚ�Z,��<	�P���`�(���{�|x�v�v���42���~���p,�FJT�d�vѢ�Z>�+�S�&P���=yt&ԩ{ֳe_��>mI�9O46�~=�JBR�6����rɷt�皭����@i�5�؜�-ͷН��}	��7��(����;��B89��[j��4�2:\��|+��x�Q�9ZZIr��9a�5�΀)�D_*�"�ϑ�7�n8���n�$D��I�_����eVQ0o�,���s���ܒ{�| ����m y۳�e3A��b���iv[Z�!<���H�nYl5���>��uW���«�[�ſ����'�q�1��3��w�n�����I����p�[��E�W>x_\1-��>�O��w@}��9w_ku��ׇwDc�yؚ�V27�0'�Z˷��­[捇��<�oO#�SWN��љ��;!�5 ��|��(��{�F�K�3��Xˎm2�%������?�,'P^�Lp��]����l��'0�P�<��1P��r$\W:��z:W\���U�wni���ƫš�|p�8��n�#�*��+F^�5%���t#�k�`_�����H��#�/}��6d�bٮA�B�Ȩ�ҭ<�#��Q��ܒ7�-i/�,�?U���u�g�A�6���y�D��n�Y�&ݚ^d�gq&�洫c�4?�W���SӕǦ٤��kI�5��#�j|k�/΄Xö<�Ϲ�XU��?��
3/����ԁ3]��;=��
��'�m}�'e@�H�[4�z�xgm��[p+�>�y���:p
f�tՎҖOUnQ~f$9B�,���.��Н�[�
7[�^R���-����쓎;;j
�?�-��dK�~�A)Z`6�[
)s$K�E)�.^��y7��ׂ���b�X�m��ٽ�lpJ��ҭ��mɖ�m���mKIJ�s�՛�%֓I�Ji�%�&��-��ԚҲ#}��oQ!­O?��%�o<���[�mu��}�?��7O�ǟ��_��y/���@/��|�;J�3���p��ƻ�n�\�͎�p��k]-�߿~,������� ������g��rkn����K|����lV�'��%��[�h���z�8���,n��7����~.@��Q���|��b'm;�S`�ˌ�?���5�V��W#�z\����sDq�	�	��6�^a�u�u\9M.�s��-O������f��<3��c실	Ǣ�P�,����]���yE{O�WjAo�.������Դ�X+�ȭ̹D��V�
2%m~�g���}>	����5�
xq)%���P�SɷD�ep��N�
 �A��Aܸ�Z���liK�-�x�K��d�܊�8�S�e�dqL�í�uc��:�=�8=�|ij��l�����x����|kz���ϙ�*���jh���A1j��3��{|�iLЉJ�'�Ry����U���G�Vg>F";E\J}�֍p+oĶA�#�����[����]~s����
��D�d�#C"�å�p�,ikX㖙%�-����z(�UX���,�5+y��V豄�_�T"_�'rU���/<�Ȓ:Q���&R/>��DQq�d��(.�Vʶl�-:&��˰$?�9yC�G1�}�#v{J���I���2�v�E�(�Vz�3�n����y���<�f5���R�:{;�3�ɼ��?�����[� `������uO 55X�v�
d��wv�y|��Ş��>'��pK��IM޼�T�.	�h�/�s��Ql�#o�'&K��G�ˣ�b;��Ӡ%-�[�t�2�Ӯ/��8��<�[@2�I�ٓ�`P4���{3�k���USXv��YT������ hX$�uA���Fk�u徺N)�&q�/jld��依=F����=ǹ�b�9�ޏ1����U5��?��;�?9�@�hD��|��"0�z��u��f3��s�O�/�GŒWe���-"<u6.v.���ܝ0��̲�[�Y�����QBA/-�*(��k�-�y䥃S�o�=9K���焋A��\n�N/�WL-�-��{~u�r�b�v����4�\��D���d^�r���Tp���K�9 �Ӟ3]��7p�Iٞ(�{��8�`h�:;�s�:�;Z
Y�-߆�6�-C#�o$8�[U*r���&%K�<�-ڧ�q����r+؏sM��ʭh@��/��

#ޱI�Q&O}6N�M���7�%wpK΄���ͯ����Ppf;]t�@�,
��Ԅ6�vlK�Je1� ��؜�A7#�A�u��?�S2~�����4C� ��/�D���oI��_Ԋ����_���I���v���-AwFܳ���y�J5����s����k^�wo0ف_�<�\?�`��'�׷P�ww_���;6\+n�;��1��_O���|ɬ��"�B�5J�'˭);{{��_<�_�9��v���TH[\"^Rн��^��ǎZ�%O>\U���{�e�jv�69��	�0��[5���Jh����S���>dxx�0t�4�4U"�i �M�2g��k�҄�|�$�Ԯ
���
K�]��E��Pz����NU(���k�����M�t
۹~�9��k�_9��l��-���3��	qn���F���N�[�q��V���Q�o�Z�P�@T��wSq7��c��ff$�r���n�߃�ka�v1X�u����vu�Cnɏ-�F�_U�Vщ�����`N~~����b��9t�hijծp�̙Ξ�ֺ��ҏ$���@1��y����(;�|��K��+�XB,����ٲ��������s`��'��f�[�H8�[��.g��A*Ʀ���\n�H�!j��U�;�h��8�a�4++	թT_B.�2CH8��2�d�h)�̑R�Q�Q'$Xbrc�]�3D�"V'5��S���b�-
nedm�l��,����aÃ�?�L���ԫO=��[�"�	���n���=��F-�����-\�{�
���E�Zm#�3}uϡ��*�S�~����~�'����0ۊŖ�8�B�j�;o��_��-�����B&��y{��p��K�5��*�2������㓡�F��!Q�]̟��A͐'�+��q���@��6�q�H�LnI#��/Y�^2eR��e]���r+�W�sB��U�-�A�ַ��¶���Z3�ېƓ]�7���$�������PI�%x*q�-� �;߂[m�HE����#׮��ɲ�Қt��Z�2S�b���J�ᾶ�2ۦ��ʌ��D�c���J��/�[a��!V��KC�us�[�q���[p�Z}�I�V�U7o~�|Tz�B���^O��jw�-��s��'bޙvg������X3U087�<�
�H�<�A��L���P~oE�k����m��a�d��@y[��]w��N���
v�b/Og�K�N��˺��K�<i{�Ѡ�SUo�=�aL�'����)
� �+u"YJ�j��`�/N]���Z��X�EZ�p�Hx�d�tK�,��U�T-�'�v)��io\|�k�ɥu�* ֆ���d{���V��3���c>���\���׾�6�V�pSؔ�
��<�Lr���>������?�㭭r�.�/\��m{�ǟ�U'���_;�(�� ��#����9��+�7�H�i�ݓ��?�/�5����ubB����c�ܔ�'�7f/�y�'�>����֏�������˚j��_i��%�2��l½J�-��wcY�[]siv���'�$�:N&&ܺ�rV�fʰ�L^��8��7�u0�K%i�=Z���Ė]���p:I�Z��c0�U���薷��E�;ͻLxa��F�L;Uh�Ɔ0)��ϏhI�?y{S�O�X�͛Ud���c
��(�ZWia����G��$�EH��z��+D������]���(%���F�|my��_>��F��rG�P\
���̳0L\5��βʷ�[b+��~�-���A��昵N�Z�[����C#��HívJ�%Ni�_Z��Z3�ބ�r�+R<��ӕ˗�WF�SV��{"s��Z-���F��7O/p��Z��v�-,i�s�un��ܕeQ٩�l�H d-���Vz4�-5n>����	֘�-�k@�-�	blT���A��PX!��Enq��k����D=�FєW�r�e�����r�u�7�ř�R��ZDE����`�IV�L4�C	�E��TB�٣:��62���w?]a�
�!y�ȷD�h�.��d�8Q�[bd�a˃�n|4�ۆ���?$S�]�+q�$�qnI�Ŷ��S�qW�e� T2����T%a�T<I'���O<z�W�`���?��׏��F�#vD�c.�� �y�&��hMWG��kma��v��
����
�o�K�����y�s�,�0^
`C�4�(AҬ�,��hU����|�X���C�O�KX��w��+�u����O�t�����{�ʣ��|Vۮ2����V��<�Pr�.�5��x0Yml"%kjX����,��'Ԝ���/p�OV�]nv�6���FJe+ƩC�<L)J�t�2+29F�Mtӝ��0�2$k�����2��a�Ln1�.�81bE��(<A_^]j*׸��ʭ�Un��F�ȬnK�%����~-,F���l��ν˷u��6���Ӝ&ߚ]���<��V8]3pK<�dg��K˃�Hdq�]r���X(���0=0@��9�Wn�����ԙz�[�:�8�$�	�[e��H�s�~�׉bccI�h�4$ļ�!<����^<��l^�n��S��LX��L�5�*JN��0Z�ZA�)
�������$�R��xŹ�W4J�� %�ޑ�(����-V�CLm���V(&”Z�=��<���7��K}gԕ�GL\o�3�!�-���3��lA�E������d�[P�~�A�e�뭍II���<�BтwX�3��X�	�����>y~��֍��~&D������l���K/�tO�o���CRa��T:��'0�8�� �Ngf�@l
\�M6�
}X��|_����|K���$�(Oo]�[�2�P$��Yo�5��F�%�Y��k����w�p����?A�~+�Ę�(�14�9,$�B����1	���������Dۅ�Y���U�i��g��j
�d�����ެ�L����.B���+欐<P0��@EQ�B��N̊dcN��[��-��F��4s�k��Ҟ���Rjӕ=�d���O:D�
�aO�������t��|�Kؒ���AFO|pˈA�%yWl�:	qsy@����-���["���<wI��t���!��	.��J��4ܒ&�$b�}{y<'�,QF�ʒ��Pc��]1ӾT�|��}�0����wn��vNf�[ �CuFB^���B-V��z�lO��CI[$�i��JZ��'YI���`�)�⎘Q�
��c���<=A�#h���Q�-o���e�/%��c�����	?�&�"k�Ի �@laoJ!��/�>|�|	���'�kAZ����bC����X���h��-Ɔ;�Z:U�؜�ApK�y�ƃk�[���G�ܲ�vj�'f+��3d��F$<�·|�/��p��W���my��橏�ηLpћz+�h|�U��M2���1v���;y��X[q�=�e�-�pM
����-L-҉��g�y��YXX^כ'�Za��Zt�����u¸S�u��p�ş,Nt���aK�� �5D�t��Z6��?&�p��������VƸ�%�:>����F����"���哐}(����Բ�;|����Q���^k�Z���Sq�$`�2/е��~�o��N%���`���Ss|)w9C����06��yP8��|
�h`�ܔ0�wGC?Klsy���m����i�VCص�[����_�Մ�7_��Vn.��z��Z��+���ї7�,
�n���;eܺ4�����[��~�(M��+­�GG{8;�ȉ�2�ח�U�*�ٙ�Z����3N���WЋM��3'�o����ۓ���R�%�}��<�AwK��g\v���&f�w��\�I~$���R{"�Bo|H��k�Ld��}�<L�'�����Y�[��2fd��]�Yt�W`�X�S܁�Z��P���bK�d�j3�X/�u��IY�)tγ�CM���֍[��j
[�-7s�H��GSs*�R3��dT�a1��r����IO�n�hvm�@�6�AIP���!�����@����[r�i��?{�jp1�/���}�!?�-1���a�ug0�'�'�1�<�"�A���ru/Ȣ�%Z�>��武���Ɖs7�ӛ�DNm(��c����`Q�ƍ����`N����j�sՎ��y��&�0���Ѽ����o6�3�GG�^!DAiu�h^pV��u��u�x�2�36|8�ȑ�?��<�)�m��r�.z[;�X���F����D���H|��KK�x<4����ۭ�&�e\"� f�*X�klҢєo�5�	q��jJu�~MY#m#��hl#2e��P�ɺk����[����!��m�X�|�i;�X +��V|"�y�4��@�٭_M$k��Tn]8��F�4�[��Ҧ��u8�R���وǟ��-
{f�x;0ڳ�Ƭspp	T9#.�4�BkJ�+E#_Ү��4��gbަ��{��*	���1�3�[�F͘�*vͰ�u��ɣ/�ji>��[���wX��0h{�G����rk��^��:��<��p�'�J�ܢ?r��-B���Oޠ���[Z�m�7���a]���3a�+�Q��2
�W���
$�ή�
c��$^e�Q�-y���5J�B�,�i!%$FH�Ȱ�,�f�9k�$
εl�У:^�	����T��pk�&_��i|��漝Xi�H�`ֶ�䴔"%c�k���D��p�}�e�<��[��SB�%��v��:q�[��<�@��>�)CD�I�-�޾���#��-�c}���{�ҕ]�闠0���jDw(�s05r�ꍁ
::ʭ����ǖ^�]�%o^���۩�묅�Pljǭ�������҇'^<����f�r:���QJU�­[��z�֬����1��
S����$�mKO���[����ه,�x��-u�h,tPd$Q�[d]Z2���)aP��.ޝ�2��<n�.@�.\�^�|v)S�"-�J����K&�`�����3�Kq2aNq-L��*���ц�pˇ�V�ܚ�u�j�����v�e�F��.n
S;�-n�ߢ���mc�ɭ������t��#��c�w����Y�h���+p4��X5��pk	Q��ZO�#1�sjy7XsE��:B�OQ�����R'ܢ�U�V]��z����&�?b���aS��^xA�幝?�mDT���n�Q���^�E&�2�S�[i���i<�ã,�� "��a��Ǻ�P�C�uI��g-52�K1d��)�8KZ�$M-��S�g/m<L����T�MÐC���Ry"�Z���)����C(F��ܢ3oWn�,�\�ʶ� ��@��qˣ�$oԁH�nɤS2Nm�&)���[�S�Lj�h�6+��~�Ւ��J{����=�en�<��{���G��n�-�[�5s|��n�_�
҆���8�@-e������J,��ZC�X%ܺ��\�
9�hl�֩�"�޴Jn���E��C%��Kt������{�uB��y��r|��⤳�7���ʭ�V�u{Z�����R^nI�2�n�*�jp�� k߰%#�>UvI���/�w�e��B��{�)��d$
3�C��5l�)�����뜖�X��|�CZZJ�–�#�
�I�(S�1ٌÀ��|Kye��J.�x���_���a��� ���b�I��ڢ�Ii�KCs=�MnA,޵m�f^���5Sn͌6z9@)�g��}��w���0"B$?��:_���|�R����f~����".�ue���g�n��!���&7�q�.$�"�@.�I�`3WRVY�<�B]��L�(�nާs��z�����Q�T�B��F��ә_5rp��ҳ�m{���Dd�!�̆fb0�[B�\2iq��䱯��%��_T*B�c�J��A\�3�bߒ��Jz��e-e����w=�Q'Ʊ�a>y���2|(��6PUpKh%��n�^Vl�{
-.�WʎT��d���:l�B��2��-C�<�=X���a���(3ml>�]��C.c:����g2�o�Ə1*��]<?fT;@�|���_�λ@��&�Ԍ�V^�ż��4�W�!�UL�~s��{�1J�?�+���2&'1��W��l�Pfɻ�ܞ�(��h�	;^����Ebht�[�2s����������4���Z|�@��b.���>���ƒj!k���_
U�=n����D���î�R�����a�T�ڍ��L�^=�RlIDЇ�d���N�u�Bx�wR��3�MgK���tl�5���.�,j�#!�S~�KG=:[p��`bKc!���̍�d^k�
T��n��K9/ܢaoz����{ni�i��� �[�V"ں��G{~8$�ڻ$n[���9N����4 %��B��7�"�ڻ�t�­�����sd?4�rMv]���
h�9S�y��| 
��O�}��x<Ɋ��5{���:{1�y#��UˣF�K ��D�_��-d<�:��Gy��|a�����V3�z~��^�l�R~�����Z�o@A9�8@T?y�GM���
dI�L�W5��G�d<�ÿˈ�#ꁊ>�|K��6���qz��cB.=NnQB.�,P�[آ@XX�� Q�\;lv�3�`�"�Y�Û�W^�y�C����h*L��D�r�������g�~��T�[���=;,���kV艋��b}g;��;�b���{�����p^I�u��R�Ep�r�#-.�>'_�_y=�F1��*Łc2)����0Ӵ�[ΊP�fr�
�|�a q�m=�J��5��]i/���d(���(����LM�fVb���qҬ��u0k�{�%�X؅������,�Vi��e3V(���(W���V����Ĵ_�g��Z��l�v5���X{^�-�wdIߖ�1�&�P�E Ϛ�i3~����K�Z�Y_뿼��.TPj)�����v����5p]i��\�	��ˡ��,�U�rk��r�@Ei���Л��U�~���h�?�4�Ȥ��l1t���9����m�*�[KCC��g�6�����(܀�%'@���WߛKK�M����
�t�����:�~k��,I[p;ŦYOY����;6�3�.���(H'h£��^�?�#��[ܘ�Y�h�n��n=�Db"����)�-^g�엻(��Z�:�*sD���[��	�ӧ���E�<|I�Hw�����Tk9��<�k�P�n=�!&f����koK�e؝j��Q���M\�t���oe�H�oCvʗ��y>�Ha���=���4�3[\2MT����R��u"�䅗>�T,�2���U��z����Njc�ɋcy�=��BF��_���@��W�!�}Q�p+XZ.���*В�>+
8�[D��`��9���͟�[d0�<�1a�U��"�!Q�
Qp�#��M�+�N��V��(�����"d�r�`~1"�\Y�5�SV��$_��j[�ƴ'lQۑ2{�q��G!N6����nβ�2BE��wiڕZ�*q��9�rj�H��4�&>7�-��;������%�m-U6q�'A!!�jjjkw�y���R5��_0v�0*��n���_�����ʕgX)�����`Z�`��V�:��o��p���JT4vQ+��n�-~}��"#���+��8�Lj��V���W
������?��[`����I�-QE,�|�n1���x���%�VO/OU,xz�3����wȶP�˺j��txh�̡(*;)���_�[j��uJ��L��g��3�Q/�:���TJ��0By
� &�!2�CuH���|�[��`��<�vɷr�
dЇ'~�,�p��:q� 뒨���F�����Pbq�2��'��U��Ԕ^�@�B_%��-Qd��S���
n}O��n�2�O�l�Н��K����>L�[�+��Ĵ�:_��K/��h7$Z���tg"��zQGU�~֌�#
Fۮ].��/�����W?�������+jPpt-�51���v1���w^���[���}������+��;ф_y��*O��E�����hY��Õ�"�n��jcLZFsM(+(G]�v�w�MW�Pd�h�[��{����b�L��h��q���34�B�#�=V>��W�pksJԷ�/k��ª]��X[OI!܊"��1��� \L�@�ZІ�CV?s0�+��M�s�Ǯ`<�"r��5�r��k�4g�-Z&j}aE
��	3�SnI(�&[�ݍC]U��USVX�u����0��R���$���Un�oi[�[�r�[��ͼ^�2_�D�}iع�s��q쩩�K�y\�g	�[�,Dԕ<�L$.���{��KS`�7T�q-�|��v��8�<��|�,?�^~e���q�#�[�[��X���Tv#���QhZ�x"��ɑ'�ņ�{�Q!�`�����E:
� ���U�t�بH���I�HO=O�-݋aDZȓ�ĭ�,����\�}"wp&S6(b�U�����5�lQ���jsjC2����L	��5����_Ys��tG�	�UK�'�0��W��N��ܒ��myV^�w&B+Y�k��^Vn�M ��[�)­�t{2my1Z����[;���=�
��ԓP�-�n�G��z; �ӿ���4�Tar��Yf׸�[����h��_��=���|߱+΅����6nt4�� #��5�$���U�pi�Z�I�K�?v'-�JTӕk�4)W{S-��­&w�ni܊��Qi�JwI�r;�#'�[s�d���[�=�}�.B6�r��Z|��X��ƭ�U�}���¬y�eW��˻.77_�[^q�W�!E!��0\:[
�|�~���0!�
���;D��0T�+���/��m���̅ăOl��:��-ü��D�e�[xsY嬋县��������6���؊sk�C�X���ɭ�S�Q��j�^����	�d�J^�@S�	�e�ܚ��۾Dq�)c!�mn��nD������K��WwR_BL��֠7�r�)�b��U��t��^r.T��id}�&
��ޮ�eXіz�ض����d[OSO��TO�ӥN�9ݩ���g뫘6h�X���q��j1�P�fo�ٗG0��O�p�bld!�Mn�
����-wS�ka��m�eefGߘ�ot�3���nm�iԲ�"y�1$��-�H]W_C�#>�O���̱D�։Z)2�(V~"�Yv��v���W�m�+d|��AdI�B�lRl�-�8�H�9'o��=��=;�Yknni�z*����;��5�L���oI|��76��[Z(­>�K���׿��o���'��s�#;����=d�o5�F�o���T�i9wiHz��6tw����0k->\������n���C��Vbd\�w�|�*��l�{�[*�j_D#�P�	=+d҇�<b�̱�hy`���(��í܊��Y����QR��:�%.���\��մ��k���+�m��T���z��`�Ϟ5���Հ�­�+HF�^��*>X�;Q�����&���E;�h��c�����{���@��N�N^s4x�&I^7Y�P(���T�X���0��ƭ	[qnŭ��#a
�6�
�:���ᖉ.��+h�jA�Rl��qn-��C"�W��>&Nj!����k�Tj�K%#��P��U�`G�t���>W�5}�]ͨ�[��7H��|*���%^�����r
y��}�ȷz���SLj7�8����L��W�)�H�:�Q���8�S��q�:�cyò�-��>�ry<<��Uí
��OJ�ڂc>&����H�Y���}?���{��C�H��[<� *)��ኄ(�dC��r}�J�޺���D�>ԃ9�͛�K�p��"�?׎��T� �-ɰX�!�SI�(U9����P_���S���f=R�B��eAfo���9��ood�i!��WXZ�pu\��
�l�V�[����CKa���Q��'b	����}���ߚ\,���������T_7+�w_�[v¤��~�4~7����/A�����B6��T�ucqxE
�X�1�h��K&p*qG*j�j+�[Z
��3ȁ"��2�W��.�nR��ċ�y�ڠu�q����pˎ�-��#�U�*��e���f\��#`��MQ	��T��D#�y4B�J�r�GXkr��
}�Zo
`̼������D9�����#H5
����(-�[Ņ#m�#V��iVŊ'3s�J^5=��D�	[ʭ��LnU��UZ�"�\2?��4F��t>�л�	E�c��.���[f�H�4�ȗ�߸">6��
DZ�s��L�WT�-o������wv�&�Z�^��C/B�}nzpxp}�nY�Kk+'�)�^l�s���[�N��;�|���B�v�I΂��c��H�Z�}��O��ғ�,���t0f
p�N�V���[+�����T����P5���"Xꔅ촢;�L3A�;��e[$R���NYGo����PC�
��M�S�Ms-+6�\;[�9h�ú�����8�ڣ�ҭpK�~׬������ ��nɢV�N�
Va�ŗea&6k�"lYɩL�
�mr޳!�y��t��氙�K ��@R��'�J�ۆ$�����U%\�k�Z�p��(
�8~z}VW�|��'����/9O��m�0�0S��ae�P+E�($�>��H�~��;{�Wέ,�&ٺ;>�{��;?���۷��[yx�Ψ�fI��`&����Ƣs.��s�qw����q�u�̨'�T�S6���ǫ��_<�j	���v�������j���Ҭ����l�!Y`�����1�ehno���"���|zhL��k���G�R�͝�%\���\
B"Ӕ+ޤG��"ێ斪B��*W7vt�1�s������Cօ�P��5W�
�6�K�l]��ڔ���_��y"'$\k܂9�]כ�J�lv�-��չ�"B3�x��.�.i���J��9A��c:��b��;�PC�b�b�!�r.�n�����[wT�n���.59��+f��b|S)j�w����\����U�ɺ�'O���w��T2�-"!��c($�z�M�]�[:�����WnUԪ�V�n�!�F��3�Ԉ
�|�P���¦s���d,s��DA��`f�l�GȚ�W�����mbBF�H�@B�Ü���K8|��B���2O�l���\�l̀ $\qUD�[�j:[�oi?*I֒�-�T��H%�c>�l:���m�J׆�f���za.6I))���ę��c�tG�\>$Q�-U�u�0)�p7����n���3�o�QV�8��"!���[R�z���w��Q��Օ�&���I�A�-
ʼnn���֎{�}qK���o�0n_��Y3?d\��m�E�8Q˸��V	7�d������EnDt���r�r_�	��Ew#�kw�G�E
�=�C��J�u��dJ����M����Sh<nHJo����!מ
!�3�a��˧.آ�"Ti��Rn1N�]����t5�YP���k��H��7�����c;$��Hc�j�-
K����ӎ��j/�zsq�Z�F�+۾�o��2	�V�J).��(��䖠�|�c`K��	���[ԉ�'N�@��h�8s��z:��d�%؂t����%b7"	�vȷW�m�k�4I����5 �M�-����:++��[��y�@L	���ΧANgɷ�f*By��A��?�~�d_Wgg_�)��eoM�[�5`9X�&��A�ˇ��¢�Qyc�F>�7DI�<�:Y�(�����0����~��|���L&W2sڏ�6����O~1�}{z:&�q���.@;��*'�p+�H��ԌU��-Gw�1��?nټNB�Ͷ<\�{*�*�x+_ե٠�X�>�6ږ7.��3��ʹ�S��٧�{69c[J�+�|���e�	�#
�D�%�"�3��UpK�,.�Zĵ��_�����e4�'���_��h 5�w�b���c�����|�4��m�j�%�*��&R�G�2���|i���M��)��/�_�)�/P�����v5�A1��	X�/8ye�ez'�5��<���-8���9xi�bO�E��9Z̓'���26��nOB���Ĭ�u�����j`�n�t����܇a����Mv�t�[4��HN����ܠ�]��a�f�� _�W+Ƶj���:	"�W�eju���ʭ@y�gR�4���@c��̋��pkD�-UA��Y!~�[ݢ;-Z�k�[��-
�er��O��2d��L/j�-Ba6����1�Ӄ�3��o�nwOM��\��E&�X@]��I�}f� q�$d�Ss�����r%�?K�<�P��gۍE�{+ɰp�hoXȩ�s�U�­���.��i��>o�)��j/�}�,u!�o�):MV��֏��c��DYU�2�4����}��L��<	\�jj�"����ol�|J���7e�(q�q�v���ۆ:{�y
O4��C�g���o��EZ.}�}��3[a"���U�K9�>l��0\Z=GQp�-�gp�a͸�ǥ�Ru�ai#�8�p	���ӵ��1��}�k�|
��4��,��J0�Y�J�L�h^�	d;&Mn����͗��+o���7����~��P���X�d��=C�^�%���m�@:v�O�Ry�Ʒ�ȶ�NXݲu#�bb7�,�{xn$]�K6O�\7b$A�o)���
1�ˉQ&�T5�^�Ξ����P��"����x0���a�7u�:׍�����̯lūDcDq�q�M�"���fY�������p�<�Nt���y�
�zs�
�!:T8�X	}���l�sH�S/K��0�Q��яE��Tcm`QC�[���Gg\­Ɏ���n�z�bf��;	%�֦�&�t�M�eF�[`KG���j74���#�C�%��R�܊��'�z�Up�p���[{�G���۳3��E�5=�jr.��g��|�%' �l���H���.�	u�ح?��M�?VۄH�]Z���g,�N��**��\NW��p^_���!{M3������:���g̈́�S��X���4��;_�2��*��q��d^�B
­+�-���F2�=���RC9�ǝy��Sl'���^̡bl�FZC��*��p��D�-n��g��
naI��p��9�jK�q��D������|T�j*P�:�8��L��T��0������}�%��0e�,L�(�v<��+ϲ��W^�M5n�L+My�N�)��5�|��:qH'5�B޾�bf0O}�?��_~�;��}�_S7�uц�Lw�u��U(���p���{���G�Ʒ���zy%���WAM���dWnU;|
��"��
��x�i���6�>�p��\3.���B�tK�#1�D�	��H^Θ1���p�M�Ɗ%עMjg%�؋���	�	����=��5)�٤u)�R�o�F�n���������$Q�_yym���W�.���5M�X�=ږ�)�OC^�{rf&���&I�$a0�PR)�x��穎6̠�[}�#ŽR8��#�\�)�5�B�|K���`�N�s+j���ȑ��fʥ�Rj1
�o�ŭ��*�Wt�����!ߧv���C��3K�g��ў�� �B
�/n��=w�]�TWs��!7�Z\\r��b"y�#>�$jT$s���f�v>��3���o�_��;]wf�-Y�D_>���A�)�NɅ˺$����,���|�7�:T�S�&��[�7��[��䪸�mHrH��{|&�VSID���p��W����C��FC�G�Ϗ�[V�vF�E�+��ܪa��S�?���ԫ��09q�D��[�.��J-�%�-##h�5�̏s���{�O�.9f_ޮ���|k���O{�'�R�?��s�,�O��f�]��n_�p�j�i��ZD_qoW]k����|Lju�h��h��`&ƊX�/�ˏ��䕗^���o	�6�F�p‹�[�%���J5�\4�aN��0�%�Ҙp�t�v��n6�����r+33'߉��Q��7_��B�%ܒ1~ͷn��bO�XSF��j׭���KF��x�p"���	Ii_e�HM���`7yY�ya�U�V|��
C�,����H/�sɄz�/�8��:ʔ@c���"�V�+�3���;���ו����m}򳓼q�
�������9�-
�ޙ���$K���	ĭ�*ԉ׬��J�u�]��R�-S.�:��k��x��҈s�[t�o�ZҴ����q'>]�-�M�­��\ZZ�#�n{$��D�5=�.E*ͫ���s�֟�tu�ٔ3�
������xl�ɨ�l��5��í.���.������.�Luz!��y
8�˞a��wY�u��/8�7R"��2Q�ԃ"���-��P3.��~>m�j�-�:d+FnΠ�d���c1�55���8S���G�88�8,�R�b��8��-�6���2��HJ�NIJ��ī?|*c�=	Sx�a��f�Ѕ���%V��Q�S�k��W) �[�R�[����+%�nٖ�j��)i�>���"2iC��fK6T�*�$rqnQ'�^>��Gb�8��n����_�ܪ���*l+py=�2�E�"����˯�'NX�L7q��|C4�[j3�U
E��8�5�Z�y����2o�r����L��fV��f�(<n/8�[ c3�J�f��"�":
��։��+��N��̄[���P��[Ԍp�hY�)I��JW?����񠪵n5J���Z!�T�~+���o�74`Dqk�5YW�-"C_M���ضꩠ)��K2�"~?S�-5>��63a�4�yHL�%�U��c�#~���Үk��2z{�R�H���-�W-+��FF��[Q��+�bwS�e�;ܹ�[��EpK4����������j���ٟ`�X;N\[	���$�Dd�H5s�I�
e�,�ʖ4`a3�L2fqf[<լtu�le<(6���Y��M�t�ۉ��d[v�t����{��~�Y�u?:!	�q��K����o�Pv�A�_���ɴp��w/]Y$a��dAF�4�t��̷��a0pii��Zk�
s�g	�ݾ}�
�^Ŝ�%��2����+k�f�R'b^�몱��[�ުj���N|�������j�Յ�k*����x�>�=�V/�n:�LԦ�x:/���2��%[�X~ɠ)��P�l<M(�����������lD��Hd�nY��$߲��b/��wUXܲ�k�>��n���t:E�C�Ĕ�(��t�|}[z_r����!v1HӉR1����/��uЪb'$��o��8B(��7_断�t��@(+"����_f�.��5{�yv`O�yz��? �'>]��7��g�S�,Z(D���V^b5K�k}O<�T|��ь��qؒ7�_�p�ȯ8<�:�j^�
f݄Z0����쒙����pXH�� 'w�߮��a��0`5ZɊš�>kCl{h���~vO��Cmu�������x����tg#�h6�EI��ͱ�i;�.;��9���k~���Yӷ����E�>飠Lu�%Wcoi�)�PhA,�Z�1�%y�������M���CC6c����01�t��t�Nn1�S���NM�U'r��Ƶ|����,v��`�֌&�֘��Ζ���5��9qi�y0r��Vl1�����p+�Joc<?+�^F��a�yD8?Qj_�`W��6��4/���Ms��~�O������/����(�S��Nv���"��A��@8׭��o�U�t��P�a��4pV�F��llQ��nr��������|�H��%�"�X��"U-M,_Wn���*�ۑ:�$��M�e��f��d������������@Q!;��[ڧR%��ҝ������C�]qC��w���<K�)~����}���"���h]Q;T�BE��z�
��n�9ό���2s�O�Nk��[�--�X���E]���>��_a�]w�~��[pk=���޴~�X�"#�,�Ξ(fF�����.׭í���{�Ϯ���Vre��p��ɛFp� �S��;1����PdZ3�P�n-֎�P"r���&�8��\�)<��-Vc�S�o�o_��gw��Co��PM���r��KYN�؅��KZ������l�l�bd &�9i�kz��▒k��o��@�-�����ww����A*<937#<+��ʭ����|���Qp��e۶�q6U2��JQ�I�;�ŭ���d�|���;T�o��[�%d������6���F҅/��`|eޛ�wf���ɷ\�佾t����e�Z�m�g/u>�����-�[�2�z�����R+�ճ�uv�+U"s>��Ѯ��:ɥNp��l�٧Ԡ�=�����S�=ż�mO�	�^��h(�1+ܢ	ɉ	�V#3��t�:�7���:����ŭP�B��y-�
G4�4�����/�-�V?Q*�­��yKe�8�GH˲�[�P���j�a��6��y}g�i�#rr(؂0*\���`���`4�\��w�W���C��ٻ����}_y���ȷ������Y��V�L?�2�8���%4G}D��4�5:���at��@�p���&Z��R
g2��f���d��J��)۟8��R��ل�����.�)�n�Ȏ���Ï�����OJ��\��X��Ԙ
0u	��mQ�s|X����c��=J#Kl�P/T���v{�rx�s�͸��$Ln]��3�\l�ݽ�⾇�d;��L]��[8ِ�a���L�W��=����`�= ���$�RJ�M5V;��_�So��
��aVQ��N
�[z:�2B3�:T�;C_+.MQ����˻W�[�p(�H�M�2s"@�9�[u�J�V�"ɴ�D�aZ��[r�8n�XV��MB�Vɷ��Y'*�Ln�=C��GzԈ�I���R!vx2�}9�pk��eI�;Rn]�l.�n B�w�uE�#Н
�t�ƭ�K���q���ELbW&�ZW�r�VK1�[��^8���'�05�Z�)��\>��S��m5&���gh�J����>y�����b�.�4��R'�+��{��
D�N6;��%�@&ocF���;�帱�Z@w�����t��Œ�)��%O�u>aoQ�U��g��k����;a��zn�I�4����	�dK����-n�-ҭ�6���K/�S
��k�
]�]�E �0����F���nќ��rQ�
�P8�9�25���Π�UpQ���V��<�����x��W_z�/���[we���ϭ]-���=W�9P����;��'Ԋ���ð�Ә/7�n��Y�aV��]������"~K�H�x�	���}L	�p
0�מ���[_�^<53$�*OV�n�X�g�[m{+穀�غy�S(�oɎ=��mm5�t�L�V9����Ӗ��%Ԣ����А�#:K�����EGsg�^8��x`ϳj�����
ɹ�Bm|_��E��9���p1%49���DG
o���þpp���ܒ���,��A�,]�b�O��[�
n��tK��z���2t�f���c3���e�-_�1�%8�H%�E/$�8}��h&�(z�N�ܺA�ҕ��b.��Z��fU������JS��KAwn-�z<t�X�c�4O�6��Et�zy�d�N<k�f�O<��.���趮ϲ���e�
qɷ�ފId#�y	��Z�;IR{­T?2%~�p��C�{7g�D<=M�(n1�VzV�RZ�;�S�t�B�@�@D^F�1��k�S���@_�țI.
+�R9�IӉt�`Ke��rI����?h�U�+�ũ�1���}�y�!l�pC�x�&�zV�\|C��Q�����[�T��+�R�����h�E�r�����U֥��׃�$h��0�<���_�.�o}�|���*<�)�D��XL�h��[pKB�L�E�'��~~�pNH�bKXp��͊ڋ��&i9���h�_��ngOSR�E��ؒ+���{�!����J`�
��ݾ��v�~�N�)�[xڠ�)��‰��l.S#���=/m7���`;#������d���L{��C����g���DRY��G�.%�4�ˏ�"yH��8����jI�S�i�ڗh�O�Z��r��q8��D�a̎�4�2�5��Z�_er�"ʺӬr�gpç�l�oZ�χ|J:��O�[n�V�:�l��W���$�Rd[G�{�#G޿���_@�*k��xqMļ|�����>M�p�/_L�˚��آ�J����Xxˣ;�O��U����z��jB�b���J�i���~ˮ���1Yh�@JC�( ���~�/��-	�!�[�h��������,��Cʭl�pK�����R�z��3����Y#�y�; U�Ĵ�8p٘pݡ6�DSa���*��ܢ���I����`U�u�h4� 
E�t�U�~��f�V����1n��lǐ᪝6� �[Hu�|K��-F��ds{������3g^��%|a4\�7��kG;u;ŭ��"c*'}��١јo�)�����_�c�N������C��\��]ě��RlI웅D��'PK�o����3븶�����2p����02‹g>��ůM�"��!?C��a1 �6+��a���[.�^��.��U�`�gO�!<��~�V;'�p�Ǯ#`<�zTSYO�������[Qr,�E�ם�uH0��!�@2s-1Rw`]Yh���"Ǯ=�t��i[�f;�n���9:D	�I�0���܁P}nn��vڨu�8�B�(�h�S����,��bI��b�lY}y���~��|�h�[�HX܊H_���,�PiX=}n,ni��n
48�9H<~�Tl�i�E��~��7�^�b�|��d��x��R	BA9U��
��d��X�N$ݺfǛ�`�QKr�%����(ܺp�:h��c]���s��h�j�X����#�
�<��0���m��ߊ�̭�~�̔fip�#4���n5�F���J6�Kʟ��o���W��(�z\�lD�Li'�lG��{S$��!�I���Ng�
7�M���
U��k �L�t	���H�ǧ]�[B��z���ec��QZ��۽�n#�tQ&�.�*��#�g#ܒZ�%;A���'~��_bo����n��ҖWl��p�� X���~6����o�7z���`��r�o߽��O��_Nؕ[T�Ȅ�\|iub�P\n����-�:{��6��l����8]\�+
��X�75%�����h��f��I6���D��ʸ�����.�2����
���!+��Z�p��U�%*>z�u�>�U�D��d�=f�Xw-�'=H$�4�9�w(���N���s���k��?HTlc������4
�P�'�.�Zq�@ipIVwO�v�m��h�
3�hr�k��&$���FB��V��j�8n�)F�h�U�
n�D�9�iVni̘
Rʙ������D�q̳jء�:�k�N6GIC�ܖIj�=�tp��;�����$;}�5"k�j<�]C�ϻ��0]��d����gb%Vnq�E�8�5:�a��g�ܲ?�U���Ҟ�{w�:ϟ��:�V���n��"�2̷\a�b����ɭ-��':���{܈phTQ
���~��_>�@���Rں<���x�u&�����p��N���w�Uʹ�
�u3��g�(���2�}�x��-�|�Q��D��S�ju*5���,�Żpk/C=�}p�S[]�}�n��0�
��+�����Z�I�EB�E���_~��[�������ϝ?s�p�w�W~��g��-dN��C+��	�oh6�17ġX��He���	�֛��z�:��|jǗ�u��ۚI��e�;��\<T�4.�t)����nEm�#t�nM��gN6�i�V�\�tht:�嘎y��f=m��Z��r����!�:-�����Ǖ[�^��5l�⹩'��>�S3�봡,���\4�
HG��s�u�F��.��>F��l��HT����r�}�ج��'�����F*Q�V����dLz���OG0B4�-nY�e��J�F�4Q���ƼrK<�`ָ�Z9���[�-����p�)���q
Ÿ*sk—>��Z4��[�Dg �GdS�3I�`�B2�w{/��f$q�;�v���˷�ӷ?<\w'��PG,3�c�"��剅��+�ܨt��":���šaYC&�Bp�6����5;vpjr��Q�^�84�H!܋�P6E(��(��VnQ�Ӎy84�T>@����{׶d�\+���g�k�~M�RY�UrĖE����ߒ��b���9�Qn�.NG"6'Q�g/JRA�{��|Y���QlY�u�4�YF�m�x��h�q�bT3�'p����:&�Ȕ5�ܳ���|��H=è����T��2�m֞��|W_\N�DBt�|�W��_{����bRֵ��SL4��Z`ņ#���f�ߧ�kRkBΖ�[��q�]��v�L��}��Z�n�
3�ux��:	Œ!�*��!��'١H������ʹ`-��­S­7N�%F:ң��x��~i����6���n����=mm�������M�er��BQ�Fb�L�5fN6Or4?�N�iط�s�Ꭼn!�6���4�r>��A�.�&{�FP*�sun��+U���z�[츹��L�R'k���&t,{��z�{�B���1�ma���#ݖ|��A4�-���X�� �[�ߪ��__և��Ln�/��d_��RnMMx�z9)�mep�(B!�@�uk�ub�7�K4�K�K�P�]:|n�c��[Gf'bI��_pk�n�L3�/�J��`1�B�c�]�ԉC&G�۪��`u�.\|���� �i��d0�R{����I��|�[�<������<
!)�|?U-(�0�
jS�//ft�⬥��Ħ�@�N-#�q�N�)�ؤ�xx��麖����5�hg�Hgu�c�^�ϗg�7QK�T�Ӱ�a���Q)�+�.�
��vr,3�*�lҖ�Z�M6�V�Q
�X\Ye0J}l�dR�k���%�a��ǐ3��'��}��`������%��O\ry���:Ygn���l��_%
������,̧���ֺl�Y�z�ߒ���X�"�q�
����[�%߁"SЅ�ͭ[Ǘϝ\���9S�D0�A��|�$��G���A��yC�u������|G#�<��ؗ!��./�:t�5T��~���tqs���y=�n��>QA0=��y�蔹�I��Αlfrz���oim��ۡ�m�h�`��LǙ�A
kP+�?ؕ	g�d��褘�EzF
�lz�;1�g�5���+g�1�&�3ݻ7(�{9�-�1�hr��,
.�Y�*f}`�[���[ԉpKkJ�#F�eV�f�x���|�;�n�EW�n�'�cI��v�yܶ\�	���X{���#W��@�U*�.�:2�b���%�������4��=��+���>���.NUc�m6u;������e���_��#u��!�z����Tc<��
�5ߒ>�F�E��9&3?�pk�?��V�յ����cgƔ\h��*�Y�:ap+a�
d�[�z���ҘM��KS�	�*�<�7�
u�nYز�ūϽ��T�Lib�o�f~���r�șpY"Ӣ���S���my�e��ʺQ9�-
Ŗ����\��=�0;�p����o��7��*�����#��W�֗	_�d3��S��sU_�Fa�N}����>Ҙs�^JƤ}��B����uϹw~"�����.E�U
!����!�J�FX�9�|%!�z��^�e��2`�8�X��:�z��!�8�C�> ����e��pQ�l���鶴�
�=p�H�κ�p�|�)����m�PF���MNw49�/�nY	W��-K�Ň�4g�	��cO"B��~4�i�2pp4�k��;����d��dF�-�[���TnA8��3ٽ{��aU�VD����)�B}�jap*�z$�eni��>�e�3���nߘ��B_���j�~������J��`�"�},�� �Gt�j��u+Ԁ��
ŋK�[��/��_8¹!U��ܚ�(� &NŮ/;8T)c�O<M��G�p���;�Z'VF�E���<�}��pj)���*�@�lV�E�(��n������ĝ�mU��H#��� ؒ�����(�b���󢽅kX�t���k��ף��������t��AB:���P7��VU�}�e�LpW�XԚ��oQ0����݇w���
jɘ"��}@��7 �b�>��㎞��Î��U�����\����ҵ��� ؇�hà���W����Q�4�?��{��/�"}�_�KG/�HA4��\�=�Eɶ������om�����,�)#����l	ڠC%��k��T��;���[���z�:�!�tݾ4�������Q���qӢWa�1p�⬺>VX�h8)>�S������[͓��d�����t�tK�	�I]�7گ��D�O��و�@�G���g%r�}U��S �-&�F͐��5By�zc�s9NtL�[�<��� ��?%�1�s�N����d���1�ΐ/��ˁb&�,�A
�9O0�}?�U�}������ů�ܲ8ŭ\���A�!��y4&k.V ��ډX����om斌'Z����Rp��unj|a�li�93X_��*�Mo#�?�:`$�;�p�[�^N�'k��ᘷt���*s�E�T���#�Bp����[s�m-�&��e�hh��Ѿ]\U��4�5>�t'�5�uԴiN���B�[���.�iq(+?YyL^����U��Ǖ[�TS"
�ķ[�h|�lK���j���i!�h�t�gqkp���约Ͼr�|�S:T�<_�<X�X��bԬy	ś�q����M��ے�<��խ��G���h��	��-_E[^��%���/��`�t����W��
��NZ�R�/�n'Y�?�����u$�{_}x_M[�̨;掞|��XM�5��OU�[h��í�,p�຾�Z�raΐ��9��O�֛��ֺlƺ.�Z��H��$Y��4�Y���[�T4�so��c56C����H���1���h}=��}%�i8'�J��E��Ԩ��_r����["��]�cۧ^����2:QzE����WzeI�T�����q��B��z��Z�yXG-C�4@�%olL�c@��l��ř���'G>�ogZ�\�Vsyxf2��V�D9�t{�>`pk�	��5Qn9-n!qF�,>�ZD���<2s�
nq�fq�T��]0�-f9xm�[�o\��>0�NJ­+
4�
��ۭ�T��0�=��N�ׅ��*���x(�KDZ�g��6=̷B<O�[��Ձٕ��m�4":�8U�:�;{�ѮN����&���gU�I��R%�	��@.%lj���2�бKc^�-�����i���Zv�\8�fmlE�DB^��XHFT�P�"1_��a���l�-������O���c���:X�2��w�}��B�|��L���٣�#p�Aͼ��#��J�b(v��{D�U�~ji����-����z���qn�.��Y�7��f/�"�@�1������R�c�b�[e~}���o}�g����' 3�S�|7��~�^�R�����Z���p�F�<]��ӭ߃[�[���<���r��G��D��-������L��o39�E��s�s+բ8ew��Dx:�.@�5hS{yޔ[t-��Ιu]
���8�&�>��	���	�g�v�UƖ����6�K�%��r=����ѽ<bca��i��"v�
�Y��{�Q�ٹ�%
�LYx�cn������c�	u]c��>{n����5Z��!!3��C�e��*'�� X�taW
��i�&nq��X��g�ȷ�oYC��R�\�40�N���=�[l��lI$�
%أ�6����v0���ɶn,,$�a�|�qk0;v(�ȶ0J��]�e%����:�����w�`�w�iW{���o��6����z
�=�ˋ\���V ^a�G.�q��#A
�Y��SF��#?�F��,���.�+Bc*�l`'A��~�%N�4���� �^f4�&��;D����ס���er|����c/|��N]�߈G)҄\:�%��z�ǖvK�Pe+��V�@cB���J.�)7g�u�u�\è�'V�2�D��q����[�*�[rrc�)�����,��Z��ׇ �8v�s<݉,����?�ß���>�9~�Җ���[��ou�<u��6�e�;�s5��,^V$Z�����?����l�K{4�;Z���Ҭ���x 7y��.��IV�&���`�7�<uRl�dY���Y�����;'��~zMv�+N;�ag�m�$��=��X�D]"��BB�e&\p���tօ[��p�L����o�q5遹�@2G~���^�����P��J�������$���l��VٞLdC��i���H,=�g�R��ev�+e�(��*�rJp���7@.*#kC��v�jЯѹjg�N<r�T�`�K?%��}>���se��pc5���
����x��w�pL�\p�
7�zD�V���˕w{J�*vɛL������( ƗgKXbȚ��gR�O�c�B��/�ۥL|��xjq
�Z��w�;۞n��I�Q�D����,#?�a�T$f�oɹE6��Oj��tbg�H�&Y�t������X 4
���L��N�����].�p{�1����0����|����:��[wcø�K�w8o�Ec+��i�QA��u"��Q�{d��N�<�ؒ
�g��A���_�E-�U��]U����_���[� �� $�������"�0*�� @%ȷ��F��tѳWx�����>�����n�o�X�.i��$�[z
SkW�N�c�-_�2I�Z:������;�&��M�)փ�M%@צ�睕�#�@��>u2Ԕ��Ĥ��N��6�F'fi��`A�"�ϳŒ0�į
�'�HGH��А�s`�>��7DG�\�N��K�D]c�0Rj���n���2���[G"ל��n�G*��-�e�& <���4i�[{���X���NL�=}�=�߿��ƨw8�ep���M�3g?���
��6�Ķ��A&�ԩ@z��t�A��TMD�]`K�e�����lI}hKlR�� ��{��]�&�Z�,��Q�%�Ub��¢�ڗ|+�-�nR	�=g�g]���|]�'�y1'��-����D��On�y"�����-?<C�
�f� ��j΂��E�۷cke�ill�Vd�$��*��x6��	��<��L�´4�1i{E�[64�)�6F�P[���_>:ܕ�M�e<;�p�Y�7�yB�\��_2r���Ɩ���v��C�����z����d�^�O�D��$��j�r L�D�|��>`J��"Q�	��µ��ghNw�n���eq˶kg��[x0����t� ��b7�r2��>$rS@��e�K	[J5Bo�b틯~�#�.�w�~���gd�g9[��"�,-zB�E.�N�G��2r�'N("��}��_jl���{�|�.{�Ҧ��R��Jr�X}j(�Q�$Pr�>!�8ujn��q^fɘjƜ����ʭ��^pk�2�Q{͞N�l��n+�.	�G'�<y���.�n��B�AGt��'K�J�h����I%�sَx�ĵv�TF���\W#_(Oy-n����m�����/r�&]�յTتD釰lpt��p+Z�O&�ѡ�?]���Jc�69��}[��I.s�;Va�[��z�?݌�M�]H—͠Y�d�~��%	W�[V�U�W���ry��������9*U��٥�7W��|��x�"*朑�����b�.z���ln͢�kvY�����D.�SϰQ
�;���'��VT՜>k�'^՜�KL'7���[q1C�GZ4�Ò��-��6��tF��[�G�kj��a/�WP�{��//�n�����K�֪͘���[�P���.�F���߬�%uU�{5�_6)W�J��*.+�q*X� Ȳ4Un�&RzJE�[\Rp�	��+\�b!��[�n�ڷ
f)�$��-�,�I��o�_�~�=O���4&����/��*�Z9~���?��/�����}��ݕ�?�<q�*�Z:{vj
1�LV���Xí����-Ͱ@V9�Ի���.�
m,ʯ�fx��k�\j&�q��dq��S�ki�6��Ij�T��'�j�m�����j{3�cl����mm��*U�Y!s�v�Ȧ�#�5�Dl)��Nt�=�-O["��N�Ⱦ��p�|��b�g��<S��aK˽Ћ����	&��!��dr:�ro�
j�A�
��\K42x���љ��J�E�`�J��\UUl�SDgH�%ܢ�UX�n��,7�-5��(��+O�9��U�8S����
��
��qSv��:�Ƣ;�´^<�\��z��mN�^���IƖd+@�7�pd�w[�����n׀�կ����X�[�.�� ���E{:�<�ȏubn�T+/	W�(�ӗ�����q�gv4����G�Ȕ�e�N
n��G�f��I=�ݾ�����N"+;2�&�
k�*g{[ggw����쉗?��]�Va��,�2F|&��q��;��.�tY�\f��;0O�d�.~�;tE�6�+��<�Rp+M������H�
��=�|]��5߲ٸ��>�Mn�|��Dѥ~G��b�P�S����w�1���7��!�1�û��%��R�qOo�m���?��{?�l���u^����|`[jY���r�M��Zܢ��Ӊ?��
i�k>��lĶk��n�(�f-��pB.�­E�U{���v��2����dЁ�;�}��F��k�-������%��CTY��.�^��Lz�#����d�Lu.ܔux�[�*E_ [(6��wd3
�\�s6�.�3,2x��tK�P��T�g�Ϲ�h®!�cݕL��N{
c�7���t�1��.��ڳO�u�5
�s^y�}��9ЎY�mW�<"K�=�M�H�yr6��_�:Q�Sk�^�[�L�A�<q\����L>/ܪg��֑۷����­�[,$�'Ÿ�0�z[U����Q��#��y��|i���������^���Xf��رc�K�u"3���B�V�;O�-,�9I5kƔ[���1#��Bk��<s�(njy�]�p%����w6^N$����̌
�^���qDV*.���,bZ��������ջ��tK��D�du-$7�]?�8��TWTkX�/(����bލ����h�w@M�=������'�CYYmPK�&�px�[;�j�Z��j�vnd(R��쐠FԶ<������/773�9��׿�*A���/\J-[?��_��Ef�0�9�Y�c­������ϟ[�Iꄝ��<�2����-_�--ip�2��زnZ;z��KTQ�U�X�&p�8R�s4Y{JG�УZ�l��)�^��R�#'��
��F���|R\4d�<�p�eCϼ
K��X�c[�dUD�V�m�p�����EK��E�U�-2\��j�d�I�gNWm��5��;���E���/��)�~g�3��\�u���#�㛚��ߙ|�յ'���������a"�Vm)�|˓��b��n,P�qh�%^�Z2Zq���7ʭ����c���rK��E�I{W���e�a(��~�-��'�_�4O���������:Ӹ��:�x��|��ݲ��ԉ�p��X[M硾Pˏ�1s�\�m��6\%�O�,*�F������֬�.�-�V<���A�ikq&3�`K�S[|�"�cW$�����a��Ά�ԙ�H&�E�
>.������|��AT�Ņ+�%u"G�2�S�g7���0�-���1�\���U�J4��F+L�{H�D�.;�qgf^Q
E�N$t�dq�['�-�-mhFF����D�&���1���_�eGM�K�c�C3g���=��W1���/Q���"�ɖ�p���O?{����O��4�<�.���|�94�(Z��BQ�������e5��[��t�ʸ�w�1د9	A�H�TV�e6��M���64(�Nz�c�'�X��������ˈ �
�k�c�`��L�C�U'�W��n��;Օ�[|E�0�-�$Y��k#�"��tGGP��[��#��B��j�̸ݞf�;�h1��u���6*�ʎ �[I/ћ��[>���̅�P��l�����N�d���6�eZ[[PK����l��X�(R.�����B,].�y��E�F�8;�N4�-���t�2���v	������V#ަ✸����,x�c.�D�X3�����z�H��8[�,ɟY���>�l����:�vX��mb%8�D�UsoKO�i|GY��zn���Ocn�]q
O�u��i�r��� �2+�``K������PI��v��������R��0��O4
��}39�.N-_I?15UD�נ�;���[�=�f������N:,J;A��U�-M�LpU�-�Ռr�-sS�#D����w��;������4(�UL�Ȼ������
1
��[LM�f.:��-M�!�/9�kҗ������sO|��~�^23�r�E���G?����ʋ_��[<D��OG���sl6Fs�uVnwf����v��1�r�5���-um��T6��(lT,u�)E����dԫ�>��V�=�u�������P;w4�c��qu�;#��?�M�6���K݀P�)�5<'|�-���Ra��[QY!��pq�[W1�ƃ�\�n{@�Mˑ�Lddp��ZR�b	�N:zG��G9$��GY��#�l̆<Q9���j�[�A��6l�ڿo̒-a\Fh!�N��ܲ�
�k]����(�	L\�[�<U�ep��ɅMn�=�-G6�@����H��9�*--T/����=p���%׼��\hJ\%�za!H&�� �.G�����AG�1�K��>���I�A)�/����m�C�-jE�[u�y����T\��ܚl�|bSٲ��o�ؠ�,�G���]r";��,��"��L���H]D�՟��f��*�\+a�&�;��K
��9Bu1�,N�3Y��mI��AVlT�rhX����-s���U�kkli�(��-�@��_�)��>�[��ᖴ�y��-, �[�-�_�Éz(�4��{}�@5̜b�L�g��/�������{�	�ׇ�,¦r��Y��K�Ƨ>e�����٪�p�tg��Ic�P��<
.ᖎ��\���*rs�hx
��u��܆Y7�͌\p�H�o���B!�|�TC���������)��j4�nt�(��Uڬ�"�nl���.�l1_�o)��K���
GV6�'�.�J��X>[��*s�p`�dZ�4I�Σ�7"{��Gv�4݈m:��6G��ḓ��F�A�4��C�\f��}�A���|4#̽>�T��+�w��u`w�~9d�������՝�N�[�"��Px	�t��.;'kj#�i�[�TH�<�8a�Vޥ��՗�[iw/ܒ-�,%�/�i��=.�
\�k��ֵ��m
Ė�G�J�Q����BD2@��8c0s��g~*�I^K��ϾЮ�z����]cì��u>6���­GI1�~��+����$������iʯ�,��V�T�
�����	�Lwf]�������X��A���ߑ�:�w���IY�����~�(i�-�a�[r�Q��-gz4�U-�9ȍ�`z�zr����nU�ԆY����	`;��L�Tw����|Uꁀ�l"���ܿ��<���4�P�cd>9�<�cדC��==F�u�+_x���v��� ���ɭ����1��Omp�pN"۷|���M�u|\e\o�����H{`�?@T�\/[B��c�>�o��,n�u?�����H�ՠ�
�$G�[���=Y��A�Id󵽳��S�[t
����!�1���h�md"ݲ���t���^�:�U�륜q�5N�4ӫK<K^��Z�o%�����e���Cqw�Y���끧�5
��p&�zꛯ~�mU2�‹'~�)�Bk_���Y2����H��ߟl�!���ѕp����P|vT�*�ݿo7z����+��-E��|�-Ds����s>��^^���س���w���N�~K���Hӝ�|�w�.�c&u�g��R]��������;.���@�����__�M���?��|�#^�S�B �L661��>_�K��f��腳�G���F<cm����[�։!�C.�k_�[+�`��1w���t�%�,ͼ�[�A�֑��2�\� ���%QH�8]�}o$������R��;�D:�L�ecY�
7R$�V�-b��5�~�İR�H�BX�S�U��-Ц������pi�n�Ņi��#�Ҷ�d[�Wm#��fj�o�95��T����4�\�%�Wē��=Z�da�P����L�?q��ڰ/w�\FXZ��{�[��o����!4��Z$�2���om7��t�@�ŭ2�>\�WoM���z���/L'�{���r�F���Z{*Wh��<u�&#>O�ǁ"�'}b]E�6BFT{����)�R��$\J-#ک�l:##]�LS1���䖕p�N�w
��[�|�Ļ/�
�%��^��l��L�|�tߗ���*5���(B!%ㅸᆓ���|���ɹ��Ƒ� �"�`���hj�W���?ڱ�����]��UfUVHpn�h�e�OT�?|�0��ZgW��ou��[�ui�%z���5��z+)]�ȶ�[��Z�>��6�N,���V&����������'�Vn���[��Dlz`p+��LV�.�
�x���5��:s�@�����g�� '$�����D/���;�������ѝ9��š����t<�7��Z�,���y�V�����3�6D�fn^�1=���\lvYkj�Ͳ_�����SZ��+�j��`�XZ6�R+�̓�$��_�t4���.`$Ъ�M>��El*�X�3GB�mh��P�k�%�y$�@K��5�b2��#E�T�PnU�-ͷU����꼐)"�jq­I_(9#ܚ�%���;V�3�����<�Jt��f�����*!�VY,qw��~�^nu@-�#�"0,!��dD�^���B�͖�UU����	-��.�d����^8�Ƈ-"
py���z�[b�U}*���s�E�/���j��g"�������ij���4N	���oP�m��`�XD�%#�r�H�aد��Rޔ]�l�V�4O�����;i����a�oYL	�ґ�
P?�5�}�I_���l��5l��%�Y���*γ�GZ"���j
�e8���2fY˹��9��Y\�ء�$I&���֝~�d]=[���
H�7�Kˣyl�pY�Z]]Zl	����:���Ҥg�>܊G��ɧ��Ӳ�ƥ�7/.a:h��B��GDa�@�rx<�����T��m�'�>��a�Enuڦr����/�-���N��l�gt/���Ԛr�P���(�{�6ep���-���9�r�)�wD�p�#����:u���@���[�g�����r��x���MҐ�0%�PZX���z������R$$֐]pOO#I��:��\��%fcLw��,P��:�x(+�[rv�r�JI�̿��m��Ԛ� �ׯM��;�C'��I�|�����bw�e��3�D��s��9���ꯎ�&���Wg�L����'���í�Gi7��k��0��f���{���M�O�`��piV���Q����
ԡ���[N��*���[�h�C�U-B���o�n����b�ޘiJ��E���|�P�3�34ب�j��ݐ���F�7I�rK�E��|�3C�P,�[I���;�5/�r�w�G3�s�)ZѰ�@3a�
ɠ55'�t8���/p�|閞��"<
�3g��Ф��`�yx^.2Tef��1����bw*�66]��Ȼ��W]��<����FLv��rm��ظhr�C�#غqC�������5��ր�;r'��'�.'K[u�Š=�¸t�J�U���:5���� �:����.�ß8��f�U�	����ii��挺4�6Soq�H3̅�J���h����Yi~I�(�[C�e�R6qs�+"�3Qo
�y��G�8��l��=��#��/;v��ȇ�S�/Ƞ2-q�z����0;�fK݅5��-��[�KE[pK�E��d_bb�	!�ǔ[��t�R�1�"�R�#�f�h�*��H�uf�n�+<7�gp!Mzf�&'k��k0��i�gF�j�C����ed+ܱ�:HӞ0��?���������>D\f`!g��G���#�I1o�n�τmԒ��ם��p "F$
��W6n�U:�]];^r1�̴[}��B�<��^�W��zZ�l�����6υ;���-#.d�@���`��!��V�p��lMF�F��,B&�-nd�k���G�f�����tЧo4��{-�.eq3��
7��i�+ߘ��2����-�r6�!+r�N���
X�[��Y|����Kt��W
W��Ep�[&�L��r�]��^�0��u��o��2ٕ]_7S
-ٹ��_�!�-��
n9�uy�n�(�p+�]�rCN��V�{���Յ�4싎�;�v��KG.��3I����LJ��.,--,��Z���~�i�E�-$'�*�3#��:�#��f:�]��n3�N�sA)�B~�|"+�3�2��%�2�f7�%�PJ-�L�s�� �6�+�P�%�8�-��@��1b���[&��z�2�*ɷİ��ң��԰Y��\$Xm߲)D�e�fR-%�l�~P{\*���f})����9NX��;���mۑɓw�f���G݈�&_�εI֢s4��b��\087�Ob�@�KV�rӃ^z��ą��������`���ٳ��~S�T�w�~��[=;$���e�5Y	�5Z�跀�ɭ,L(}���|�6�"�Z
$F��d3����#ϲٸvVm�w\�[�L�VnV��[��h�
g{��•+�fW�1��\I�ܓ<��<��d?����!���2�\Fօ����C�Y������p+��Y�������Rc��tO!�\�r�X6D͡�/|�08C� 	��I�Ũ�`�h�e&��]Zj�L���?n�%�a��]��
'.6�����E>�v��z�V�։z�(6h���+��]�R	:�*�-�Z%���xI�N�I�*N�X�['V�9,D� �D6(x<b�zi"�c��c!��W�+���XD׋C����8ch��cOw���z������bhnk��D[�bKV�h[�+.V蜏s��$)(	�	�X(]i83��j9��+Eܒ0|��[o�F�)V��BL3���N'�ȏ�YZG�����ȫ0:�zR-ӧ��	mC��潪���c5G��k��H��L��<Ȱ�����.����2��my����6Ç�H����=u���=�o�;{�
4L'���䩙x6��U�'	��o���!�pr˭C���]���c�]�����.�oq�|�����Gv}�ed�[W��ƒ.v}+��J?�Z���[�UԢo�"C@�m�S_7)�叀[UpkmM�	��8J����.���=	��.������q�t8���=bv*!��;�
.,O�c�]�-mpuB�&n�[�p������@�)h� 4z�~������H�Ӽ9���V496ݖ�h�F���HGJ�-�/��Z�-��d27�y�;�鎵���FGְ/n�I�n�KO�(�IK����OTu�fvV͸����-��9NƄy1�8A9�u��Vi��>{�곉�k���6��+q|P��8��f\�[��r�
i���&r��۰�9/s>]g��ƞi��]t�^��a"q�c569u[cՓ+�ږ��+��	�E
!؅X��u��R�eq�w+���������)qC�\�I�ዮ�
����͡d�Z�[�	nJ�\3Pgt���I��r���zX��$=N�[b(����+ܪ����xj�W5�P�[yQ�[
^�$m�h�kձ�(���z�[s��]D	�C�Av�W3��)���MΜ�~j�Cws��z���W���=�����
vc��i�Z�[��,�Zb1�Ba�o�R=,VEB���VY.>����\�
Zx�
�E-�t,W�Z\`E��+�T�AN�
!_5�B�$��‹�����Mȅ�_��:�,�q�m"��K��фK�%W�����j�h����T�p�@ԝ_�Dyর��L�8x��W�7��
���nvb����r��L�y��J:c�YOv	�6�[��Ԑ���"v�%߲�'�����Q+*��z�Y=˧���,Q�����"�7ę+�Ѻvkal5�����~��bH:v�|+Q\b&nMM��\>��.��.�쓍9�1�u��`Q?z�/���sP��מi�Lz�p�_"dp�]L��jw��W�6�Lϲ�.�h�(�xe���C­{�|kD;�[^��N��5�
��
8��a��y��=>��G@�o���*65v��$>g_�f���Zܑ����x�0���n^.�%閰
8��dʧ��=ߖկ������[��6��zißƾNk?IÌ�n�ؤᢞV5�$���k'QE�_���s��8h�C�W~�~�.����L�FQz��G���ֈ()eG����;��ށ=_6�5�o�K�̻܊ĭw����
�P�o+����Flt���-�"5�H�F��1�G4Y�:n�A&"��|S�Q{������q��rRH""�X�yB$�
�d�Ϟ��`*R���䃈!���fD�pk0p�h�[��"q[�o��ux�1��MbЌi�'�k2���&�?�����eLn�>���x��^��M�
��˓�yz�[{��B��0��&���!���|K��U�[�>��q�wi�u���06�[���+Ŭ��2I
�if��ۋ4��
r,f���4�X�3���t��Ab��q<�[%�M��SW��*M	������[3�}OwVm��٭�-��5`+ҏ��ڝ~�:q��u�8�"��0x5e�/ޙo)��x��
In�S"
y�23˃2�e(�eY����h+����G~�!�����U ْ��є�j.��K`�E(�dK�d�whti��p�b�
vb���;��U���N�v�[�h�����B�e�Gc�c*��n�inH"�(zĢ�@��ˆfNF�|:'u"�2�׾��_�x��ra4;��Ln��(���uu�\���D�r�k��T�e�%��Ʃ�L?�c��+	u�u�Ї��~koWl��H!_�`�}m-��jhT[�m8����@W@�I�x��*����pk�窺.��A�J�d����o��]�h�L	��KW�'�z�U(R%JE"vB��ZQd�>T�ܠ_��'s�� ����뎑n9[�
��8?{�E�m�w��c�2l�s�q#%��ָ�-#4�R��܊ܑo)���`5i����H��⚈�
��B�%X�O�]'�r�y�����ք#�YdW�a�cb�h{���+.-��
��s��֤x�Z6������N��O�;�������
�r�]��`��V|E#��W��K��ԇp��^�.���-.敶4�+f�8QϬk!���WR�%fYne[%3PG�����-Y׽@D��iō(�K u�hn�+B���[f¥7\�R�Ou�ZD;�'ݒ7i������Y�zD�gOB����g��ן��k�y�uD_?xyr�e�$_��rg�'����PNa*���C���� ����/٩X�+��u0�X�pqU��ʐ��(n�ʦ̭M�[dZp��+����R��1���I	W�$T,�ec!/��b�A�
E�]�yn�.�F�	�����0�̅�
�l)����E�c�P�z�y	I������z��p������v�`��q������ׄ���Mˏ�y�:�`&^p�<�&K��pɼw4�n�6�5�4O���p�!�ᖵ�ʳ�O��\�$U�e��&��W�rk���bK�ŕ���&}���UKK�҂˝H\kpk��dY:o�6sָp�;*W/��4�T.��E���'�\X�V?�=hT[e_�Ԋ�~����:��v��
��'�d�&QUC;�v�����'��Y�W^]��eD\^�ئ���8CTl�
��'��I/�Zɷ�֥r^�'��{�����90��u*l&�@'�Bn,.���f�ǂ��9�Rr-9Tn)��mVż�I��F���o�p��ߒ�|����L�/�Tn�2Z��5�Vד��Ƈ��!��/~�:ҏ���QEqQ�Uf�z1tj���w\��]/�|38��ֹ���{�[��E����Q(�����>��{?cqkk�;�>�Z�e���[M.����m���S���L���H6i����;
��@i���ƪ���ɱF$��I��z,Os�lD�ܺ���2IB�m����D���< A��b��*��*����L�9
/)��1b�05��2Q6_w�����O\<o�e��D��n�O�]��Ζ�~��ө�wQ�5�f����-y�oF����2���<WrWo�ŭr�%�	�f�H��H���v����/џ���}���B�d6���%��_MM���6�DWѵк��$��j!d;~�^�����: �y��c�" ˈ^~��=�ΞC���w��"�v?���c�\�m�峴��)��_�Ȏ7��p�ů9�Fp%�`�!*�!�?�
�[V���R%j�8C���χM�e�q{��`g���$���]����ʧ�	�Ջ�����J�1�awy��-h��b^�Ͼ_#��JQ�"��D���z��]U�8�T��\����`��D�Ł]��o���Y�A��{����������GAR��txQ��9-_
&_Cە��IN639w���/�Sܒ�h���=(������bp��{ˍ�M�x���K���w��K�s,	����2�B@}�8OԴK�]M�|�\���Myɷj��K�'q�(
4�F�E^6�rML,��FF()�Q�_���i�˲鞑m� b_؄[ғ�6�ɭŖљ'��H�����hnї�RLdG�R{>1�Rn�� �����xS ���9@p���C�2G�)?��:�'��*"�Y�����؂b��u�BB�U��1�tgk3�E�$f	eW��K�����y�/���L�%W�3�l��!ߺ}KF��+��@l�SwpB��xe��׭����v��U<��=
�X�c�<��n�E/���/��������|�_�{k�[_��ϝ��[�l�S�f�V>��\���N�'���ބx���W�u�/+�ֶ>��b�J�Ͷ> �8��2��v�l�9F]�a�*P�[�Ҷ{�[r���.
>�xT�[T�p��i�lK�O~�Ͽ_�nk�2��|�!N_|}����m��k�e�r!�o�-Y���pk#L�@<��[o������韞�[V���?C��e�\�'M���o���ܽ��O��+��-B\�t�+�j.�l�xc^s-���>�t�/[ϑl�C��Rd��XbY�԰�p�È��G��#P�@�=� d���3P��bii2�zX��K�9�[�b�:Kƥ����9��C�J�h3����:
ʭ%M�6�[t�].`f�l�C@�[]�����d(�pE?�-�e�����3�p!�˸�M��-��;�H"I��^��rk$N�E�Lǜf-Ly��F/���*��8��T�,n�����J�[ed�\�AW���ָ���!�w򨅫WK�x8�q��sͫ��9"��s�U��	���pK_L����#�Z(]%�*zE&ϊB�6�kvٗC�pLl��PB�Xw�,p9��9�y��W;h�����n�n���wlwIr��]�)�F�n�x�r�����ܙ�"�z�Z�Q*.�w���t���1�����C��wk)��E���*e{�u�,��b\���R����x��2�(�M�U#��ro���N� =��N����W���_�i�(�25��tK
�Ec���~�	[�p����U����x�{�����CE�]����&�2�8���.��]����D�[��#���jZ򶞲?@@-r��1G�X�����[���gV>��i�Ti�xg8�z�:
�h������jP$;}r��J�����1[�@����Dou�/3Y]��y��Fă���Z�EP"^~��K��ɋNڢ��OJ.�����+͎��[���'�YV�pxz���A|A���;|�Ot󹩘<�|J��n�{,�C��iU8���+e���b���v���js���2;�&�pYBcԇ+\�R���f���rL������p��x ��h��Ekk��3��o^�!#����Ž��V���d��ǎ�sʸ��k��&�-�%X5��<x�[��#7�;1��/=!�����j//�/���~�;5�E'��2�J�tjq��㖮k�W|�,jq!6��p�D�\Y���{"!|O5|E�	�k��m��WX��(���r���e���'�q�*ND!
t3���!]�(�-S-�"��8B���n=�Ԉ_�[�钫{5�d=(V�i���m���������~�����#F���^��ןc�ѣ��R|M�E��������dSa��k����֞�1Vm^�j�W@,����B�[��彔���/-�I�=
����H����\���v�s­T�e�jO02�4�
4���'o�\
9�az��[���)G��������]�VԐ���
����a�G��H�3/p�a�pEE���+}dA~0�\	Q�!r���열P���+�{�OO���Ctn��]��`�I=����@|,7ـ�i�rk����c���x�*E3�[2Q�����	�ʊ���o��Y=|K+a������ҿ�
D�A\�_�$q��|����E�,ku+�@0;FO�8��,xM��(��������Lb��QS��_/�yR����p+���jNG����3�/�-��8�q"�y~��x���؝j�8���*_V�!,��er˜�1�5�wu�8sJ�M�����A�d�����!)@k,���ĭ�\�:9O�`,T� �ZVFlɶ���V�B׃ғ�����.�o��,�V݁jf��4
�-�S>���:���/p�H�����D1���Li��|	�v0���Z��t��~�:5-/L����W��_:zaH����vy⡡S�|��>�_^ml*��`�{a�*a�p�Y�P�J��on�k�h)��#=WrOU�!n�C��es���m�jZ_nR�,.����@s�r+��S���t��Q�F]2}ӻ�옘r4�$�2��;����DˏBT[��z�@����+�#c�A-3��J�-��s���z�g��X�üQ����Ā�ǰEv&�ʲ�/�I��\2���v�B�󷯐��v`th�Sn���(�O�tٱ\�e���\*���-�o�u�rK㎊R?	��[��L�-�ϵ��z��o|W�X���b1J��_u�rK�[��	�,
{<����zl��x�^�;0����u��\2a=�������v�ܢN�?�վ��B�G�+u
��Su����;ո0�0�1����H�+�x����Ę�1iBƝ��������:�����aLL�,V����-B��܀kl�Z[����P)�$�o�0S�2���eC�`��n1�e�nA�*�����*<dpk�n#��=�)�gW�ԙꝿx��K��cF�J��ч��M�/�L��lcJj��~����A�%���o��
��(��x�nޟ�q���s�JW��ei��SS�*2W6�f��>uSPJ�Y��E����^��X2�p�χ��[�c��U��СuU#����PKgS�^��6Б
5 �*-��o^R���G]K7�P�� �-B!���K4�d�\�foQj�W���'��8ƀm̪\z�
��8��k"&��ɭX/(�f�;��ҲrS��ac.������$���o,I…�#,Y�h�RHĐT�-B��g�R���b��
Y�E.�\TnE�U�Ae%Mf���-SwjV��6��`���0��N_ι�EՒou�;�f��%6i���^�νpka"��$��"�8|��+,�)���)W��-�\D�8v�9����Ӈ�b/�M�5|����%���pKDp���rk��բߺ0-+��"��AD:!����� �ӕ��l�[B��o&����8��PMU�֖��K%���kp	���Ec�̭����2S0�6P�4n�NVK���j���V�Mp+ӏ5{v܂U��)�N��%j!��\m����*�c�í2��e=���W�:�oL$ҧ�|�E�f�KCn���:����`nN����ꋧ�V��'�'­&��rfX���/���Dn��b[nYQ�r�=3�7=���ϩ*Z6a�!� *�����C��i�^aj��:	Au�;��vW\���'��Ŀqq�%��������E�Z[\1�.[��`�Z�,���!�Z�F�ꆙ2���'��b8�':�Ҙ���˺�lV�E�K��|�p�K�8�yS`���5��������B�r+�M�q{ZF�S�aE�jqk�)��V�3b����*G�V�I�Ī��QYaq��֛pk��#a���U�[ž�d�ލ�4��4�[��zd~�%ϋ�R�H����w�N|q�oJV�
g�K�'���ʳW����U�yj�o��ZIv?�Y껞Cj/���Dܪ"}�lp}�O�TZ�N��/�|M'��FB�%�wI���N:��Q_�
��9��ݰ���EWl�/���Ӓ��b��$�$\�oMO�k�� a�3R�r�Ż���[Mp�jj�Q%�zT�m�,ٱ�U��:�#�[␣Ï��U�EK�k��|p�2��`��*����k�YܢN,c���筯|��Ӝ4��n)��M��?�;���ܡ��4�'����^��OU���x��j}�G�t]ȥ�y�D#�Uy]mj���V(�޸��N�EAj�Ԙ���W*��g�[�:9����t�g�V���©\�0�R� O�w����Փ�\����L)��ҵ��N�|�Zqhx�_[���ُUl)���,��p"��ޡ<5`�P,��n!��Kđl���[�ȵ��il+Ƚ&�.7�ɇ"��2>1�cd#u"Z�d��V\�^��)"�0ˈ�s+���̸�ܒ�$��s0���e)����-���2�e=`q�h�q�E}�[Q��w����"�D*��l�m��o�#�"=+>��:QH�{���!�>�Z�,��a<����'�<~�Ud��J��Ňk~~by��t��o��{��}j�.��.<G�_:䤐�g.�nI�2<���%��$V�@H�F
D�F��`̮i�ɭ�ಌ���/���p
n��'�[�"�*:���Y��"U
)�k�X"�ʭ�D�|��k{[4ޑV�.km�#�2ħ,�g�-�%��"�2My1�ж<jy�|n1��Ժ	�Z
�Is��̦DD� ��Oiv=��`k���G�u�������h�.ޥj�7�?_?�����+�[���/s�3*߲�MuO}�[��.>Ɂb�;�hY��ʠ�j�q��Tv	�E�}ͼ�{�����EV��[2F/�j��t��N�6��Q̟!Du�/��}��Y�@5SW�T�H����Ɍ]��hu�~�����4%���e��y���j�[��n|r,��[A\���8�#*]|`e�K����u-��P��	�}O�l��2��ˇ+�X;%�=��E[s�-�`^�3V��*�r��Y%��H�2���V�p�ȷ�е�r)���[�F�uxa�~�ʢ���|��RT�@U��b`�m��N��A�M�Vi6X�t�[_+a�x�8��ڑå�X�~~��+��Y��h���O�յg�~�9[���mO=��p����t�p��O�v��	yr�������q���8�
��rׄ[f��94��Ȳ�gM�|0�W���?R�9��p Y�)���'W�ݿ�PS��v���2y3�0e�D��[�n�v�E+�^,��R���5��P�R��z��q"���=�w�r��������زiwK�iq��,n.�E��)ܒ�mʷL�ď��=�T���7�t�'v���J-+�\�����L�-�*�[­r��F3�vY���S��,�n�����h{����`���2E2�l�]̈́��Ө7N~o��jv� �{�l�a?�6��40�4n��;AQNY�-�����T���.Q�1/C=�\t9��-��Aqz2�T�+�?F�EHK/znej�밬K�17�g}W��!�[$��dfl��x6�L�`V����T�ej�Hj	�ύU��L�U�����enY�$��|���(�*�V�\Y���b%��H��l�z�]f��d�DnS~�K\mh�Md��׵J��Ր�S_�<\�;&��j���*�5�'.3�^�����ԅx�n!����h[�=���	����^@�8̒w��˵��A�`$ba�2y
�{�|�l�ԝ:Uaa������,G()���=��	�:�R�'�n����O|����*40Jh��n��F�Ȧ��JK�)��J�
��hQ����A��5&6�8N�tn٠�ޏ[��
��%���J�UE��>Y�#�#�2�e��Pf�M�=|��_��W�����~��廮�p�1�U6���A�yr�d5?>�w]����2�Z�͛Q��૦�5�,%a���;3��qPm���l�G���`�r$u�6��7n���E��h�\��-�NVO�!39��N�)�j%�I^�O'�;Ll��8GH��Q���p+%�*��,�:E����%>$\�F#�	F����Ta��m��z�~����>�Ӹۭ{�ꋾt�B��ɾ���1��7Ӯ���Q�f	�*3Kn��-��9����X0&:R�n��[^��YC�q�h^�9�͕�-#y&��bM�U:Jm�����+4�W�Vvڻ�`�ln-�Ƨf�W(�P����b�މ���ե�e�Q�$G�k��|�{��ģ^>z�
�j���p���������_��T��ˆ6�„�D��lB���k�A9� �j]D{�����D6I�F(�RM���Y^��+�H�
ٰOF!�p��
�����}�j�����t)���lF��eI�Mi)���P�$W�	�RFF��D�B<.����m�|�[���QnQ'*��͉F�-9f����!j~���_�\����
#�2��;�?�����w�|������n��*�k3�F*�h�h�����#�N9+p�d�V6�i����Zչk���na��k���ڦ�8��T9�4|�o`����&��ؾ
n���Ȇh(.��־Q�p�<}X�H)��3s_fnH�����A�3�[e妎�n��mv:����l�h-���(�"Ӓ*���2��l�I��pk��GF���pI����<�x�ԉ��$Y��|��C�H��s�!��s�jy��ԉuB-�6�n~�i�ڈ�j
y5�R[îF�j��[��G�fq�V޵�[�[W�<,x�R�a��,��n�2J�X�SUn���_�t��5��<٧p+���� ;}$\����y\5&������E�JO��­g�sFW���)�ԅO7��ȨF�V���q���M"���9.	��d^��@Ei�jrks{K�ŏ��B�V��$�d�L�f=#��rK����?��~�>�-�1�lK��9n�[��@��"D�.��.�X��-qj&S�)7v�VhY�_��pK��(��iW�qF|���6vq�7��Z����N��ඌ���ZR)%��٠֦����*��y�}{��x��O���D�V�ڪ����g�[Ί{�ŢZِg)�$��j'�Xì:?gP�ň*}��xa!ò�U��;S=x~���s�J�ǡ��jټ���ڝ=W_}saO���-�ǵ1�̌��7���|!�a�Wfq1'��%m! �+�d�=�Y��krf�F����ҫ��Maf\u�t�q�S���ԄK�4r���FēQyB��]�}��S#Y�%ߑ߶�u��G�QWo�A�E��,XY�4�B���Dpc8��ŢJ�F�����Q'r�n�+��-^� �*,7qc�U�X���w�a��ۚ������#[�/��_]���i|��s�@����,iX����y��%��S���s�*-�ȷ��Ο!�V��gϞ�od/�ӏ}�'�5��4�dž�N�S��S�J�w߽�MiP3:z	��eFGGsI����i�Yr���RnqAv��C�V�	^I#��R�&B`˓��[��x���GUo hPhY^�e=��kCTσ�Pl���#�A)T/�%�yy�|}��v[9�T||9֮�8G$G�&�t��[ە[�.�c���ޟ��e��t6Anj�?$�)W��6�%�嗟�,[�����_E���o��i�-�t�!5a��-2��pM�l���w[��z�&}-_zDk�X�<5�@�lI�H���S��HI��ҳw�Y�l�!:�
{~���L����7��j߀0�F1��K64{�Q�^+}�L�\�T�ܧ�8$�UY�y��Ac�>�2è�MK�o5�[+()�!����MfG�J-�΄K�D�o�YLW˝�#D���D00���n+~�O��}Q�[`­.Y�SF�f
��&W�,,�.�~��<a�K/�I���[nM	��
PY�R���{_�<=Q\]H^v6��/�F��t��+%�~Vp<-2�TZk���5�-ᖣ޳tEW�Q��4��f���rx����U�:��>sF��%���>�_=٫X�(5!�'�;9c�[|B�N_�������6��Iɸ��ڬF�d^+HL��3�Ch8��-�Dl"W���K��!l��'�a�~{"=6�3$\E܆.�yቧ�v���Ei}���+%a�y�H�u�w	��|��z�Q8j�S�/=��g��(�ȵ̌K�|�C��M��&��[�l�P%!������~�3��B����Ǿ�*e�[oiG^����,��������>�m_�{7��>����E��x�&<%��-IhKR��Ҙo]�_?;p�HP!���J����>�:?(��rͦ��Q���r-Qu��x��T��iF�E��`�<��üa�U��&�Hu�Pxr�ӔU�Cg8��CC%n�v����E�T!۝­�b��u�U*�ܭ�B.���0��
�S)���m��<Vd$�}<Ȣ���ӂ�伙���H>��b�}���9�AO/�������dz��,u�;F�(�Z����K=���׼K�%E�ɭ���eLak��;m$�6����Ox�E:��Wn�x{5��[HM%���
�^�%�y_�ZǗ\Xq1��E༰J6g@���6��{Q���,7���n��p+3|b����*�i�f{�pK��/�8����bw�Ɓ�U_y��-y�tk���K��d�W�j�P*ȱ3]Ǟ8xH̿u�Z�U��|k}_�;ݴ~kb=��}d��$!�
��8�Wm� �Bj��F�U�6�EK4���@� |�ig^a�6��L�ER8=tԝ>5�[�"��;:��q�@����ܪА�A\��2Y(����H�&t��C�Bvp��������_`/��*c�.V�ug��}���O��B��'V��hإ��d��(�dS�tI�A��O��)��m�@b϶b������ٴ�i��m�dOYw���g��I���m��l��u�Ef�~w.z�ċ{��}��O�|�ǟ��G?���[���_�'Y|�k���˪�.���w)���o�8_Pw!H
J}]LK��P�V�E-�%T^!����\_5�U�*�ZL�-�����R�t���=o�n�<��n+�w6N�(M�S>�e��%�.k���]�Z��͑�r�]wr��=��RnA�B��1.F"#sp�irk	nUL��R.�;2��2:\K�-e�Hnq4PM�$��J{�+�S��nE4A��Zݎ���JY�B��R�͠�꽷�K���]�-u)��u�ڱeU�)p�Wn�wx��|�
y�(����ߚi��n_t�G�X����;�h�c���K�Yq�V���[rcu��j��fe+,�6�$}vw
�136�s�1H��M��T��R�r+<y��ZDq��˚n!�?Yer����p�N��Ұ�53���KC��Ë�%����g���C�<w@KbmF�5�^���W���v	li�D1\����ݏ���	�Ji/	vA%޲�B..�*QUZۋ��R7?BW,��t�)��~\�y���}�ܱ��E.�-��ќk\ż(�r!��|k�.��+���
�p���Fv�Vpz:�����2�r�e�O>��cE�;�[�/$B�>g�-nيU1O���-\L(��g�������k�kC�hs��[Bm��Z�:$J4ے��y.����Vkʡ�r+p�4XmZ�z�'?�63�C�:����ǫ�����-�F[��u9��n�SMq{��5+�'��`E|�W	f�q��`��.ͷh���s`K�D����`"�q�	�Mռ\�E��I����)k�Xr%EQ$�Z2�.��+s�(7^�u�<v���e��ƨMRYa��S���j�@�4]�V�\$ �K�����p�}�A
s(�oD>�Q�iR�?[߸�Wyݼ��� ܊��[?�=�<�4I99,�c��og��J�]��d�@��9c���k�:�:	����oK��7~�A�-���[�����[
��Ԧ���=�m��ܢH��C�V6�[F�0��Ȳb��L��%yu|\�V�e��gގ�媗��v8f	�f�vW��%�\�v.�u�$\��F^�E�+ƌ�Jnt����X3.u�2�!�A�(���������.*z�����W��F��Jyy)�L4עk?^e���\<݅[���^�#W�io����+KS���
K^�<��o|��u}J+a�K��~��[#�oި�EI�4���/�F|5����
�/�M�
6���V�p����C^xGy�E-[��_�WX�Z���� 9e����V~f��mTˇTb�嬄[�:֊�*]����!�ߦݡ+'��~��'p]e	B���̈́ˣ�N�V
�-ŖZ4끢r+অ���=J��F2��
�(�@�p%�I��-��b�hG׆���p�,ƐWL�3�U�[V��n�U�a�+5u���%!�1Fknm։&�
ˮ�q�aS1㣳e_&��X���Ƨ�+��x�u6�DTiN����k*L9y��;=��S���L��3"-Y��Jw���7'�|��{��%s�Towۃ�����t��
zy�Othw�C����u��o��ؕ�N=�c:�뇷�q��B>K�O׽#"�`\���Vn
�NL5�6F�]`m�N������n���~Ⴈ@hP��Y'�塞'r�^��&b(:*\k�k�B��(�j$(��|�w��M��-p%+��{i˓s!k#�"��&�d���C!*w����6YJ7xD��Ɏ1|�G&^�s	�&��@rzz����oS1�v�^.�V�]���^��-n�-U�v�
���.:�L8�P�Q��kL'�Y�g�E���
�������y�֓q�7�����.ʉ�d�c�)�MQ'ʈ�sa��*���`��\�8�FO�4)�--��N�� ��t]����&\,9 ��)a�[Wز��蒾�w<�sF{vrLj1c|7�H��:�ւ���jb�F���.J���1/�]c�n#B>��L�V��/`M�J&ݻ��0=N΅�t�DݝUaAqJ �6\T9ᲸE@-�c$^K�k�H4p��]���]�pN?���!�]�o�o�3G48C�����3�p��&_ZX�u�.K��a�2�-��D~�I�ӍA3���f��Yt:g�C����'�-�M<!�O
d��_8��#%�p�`/�.���9�UN\B%A�+��<�==�����WNˮ\g�&Y�.�F-!g�M�>+Ɩ"4u�X����S�
\̢��	��;��[�lq�‘��ᙛK{�!��O균ܲ�eԈ[�_�%�	�P�)S�`�&�y���%J��,�;�PjI���x�8��^Q�.�n�C�
�����%v�?�֕>p�@̕>cm�f0��6�������߽B��B�ˀW.wq��)�h�:DGE�c>��&�B�?h���=��*�"�y!B�2��+XE~�L����t�}A�|k�Z�c�S�.��\
�@�O�z��[o�fbS�!�U4���
z��2����v(�ػ-�p��e��4��BpKNRsV���V
E�]�%ʣ0ܢ�-��x$F�ԭ֐"�?�M��
Wy���I�T�%c��z�&E߶��L􎴬��!]Y�\y@}�	�
�b!Lnݷis��l,����X��2��[�����-�̔��T��ɷ�[��e�ў�9ld�~c�@��]^_=�PW{�4�[[��^[_��U���4X�5V�����V�f�ي�a�mD�5��j�<�T��2П8N7�u>E���j��WQBt��U'.�[Z'�׷�*rof�5r�J_�|��m*�Z�jlq�
�@���V�#F��{efU#2�arm,�M��M��'1	T/1$0�WZ����&��[pi�e�O��]��%���}#�ڴnѱ7���r�/�3P��b����-r.+ߒ�
d&�@�HNu^h�fw��.
����+5��>u����b�����Q
m��Tf"���K&��^�Z�Jܝ�����+��V�-��ͭB;�5mbeS��P�.؂^�\�Ɏ��h��x�
5�������-�R!D�T�ɭ��8R�J��^韪�Ϳ���*E}�ipW=������t�SÇ��8k��+�6�k {��V��oi�e�J` �[�\��n�\�2��"�
����z=<Nege\�E���m�!��D�u!�K%R�ʭ��w��F��Q�a#����Gjjh���g
(�a��C�'����C�-d�
�v5�k�^�v�%�-ԩk���Pw
����d��\�F_��H��Yզ�4�g"�Z�g>��Q��)NY�gH�X�CV�/���t
���ߦ�e�
�̬�b��\��׏���p��X-���nP��J}{7�c�}�mB�+�[�.��o��[Z(^q�����=��?5=�O
�I�\|�ta�D	�?�Rn���2����R���!~��~C�]O���,li8�Y'%���Eǜ��c�,�U��.
]G�U�eaks����-�Q�@X��!�'�R	��ߔ�ҁ�$�@���4�2�
l�
�0�g2�#�_P�&��֮�{�s|}§H���>Y�O�e&_<�t�]q�3�V��mmO�<w�8k���M��_�������lrk��Vf��(�0�g���Qp�/��u	�s�\/)M���a�.��v|��[p��Y�_�����(�*����Z��=�%�8:�K��n�1'��B.ͷ:K�R�"D"����aF��	�t�O�(n��+�q�zTw�ob+oot�J�Z
,�n��{C"�'"�9��� ��֢�[��]���d�{<D�5M���Vg���_�������`��S[�A�[������/^J[���"��ed]��/�+r�xA�G�)��K�L���P���@q�h���j5��g=��Βo9�arNv�,�����ܺ��0�69S_�A�U���d�Dv���OruL/�|��|ߩ���7)�4�r/M.�~�o����D7���ɶ�~pz����Ln�Xܪ�2O�E��r1ݗ	�R>t���w�x�qF���
�-�%���Y�g!��L����@c`r˪��G2D�[�&��/���?fe�Q%�YQ�����lq[Ri� �[z�x?�z3�Rnm��:��>���
�lAE0H_9}�rΗ��8���	7_髰�1�e��N�G��q��j��+Go�hT�|���|���tݭ���ηjīF\��K��i����+�W���p�PnIH_X�P
��?//r������4�R��|q�[�b�.�V����G���[j\����!����ܞM!ā��r97|���A��`'n֊j7Osmbc�n(Zɖ�-�!-�`K���Sat'�����ȷ<"�JFۙ�3f_2��u��|4��R(ֶ�E�æ�.�ƲZ1
�4ߚ�-G�c��W< �=�8ŖT�D�ɭa�Pb�`3R/��R՛�-�ӿ`�Q�֋���D%:�&�j�_k�ᜍE�t��Vgl��w�U���x���j3�Sa{��-3?�*�������v������,�c�bn�:ȇ+�^�9�sh�[���5�-�xw�e��ʧNuV���������pG��$����/�:�
����•Z�J�D`U�)�n��=��)m�"C�CU��'���F���[�<�$��Xv3k=���Iy��b\��p�U�����N��*+n�7 T�OUP�3��Vp)�����4�!���Q�=�x�V�N\f�k�rK�M��Q�j�H<��Q�,��e]�+�|ƽ4���Td�|��^���龋��ȼ��>iz�^z"��o��?���~����[��h̫��5�Hrվɭm��'gUF��z!�tR�N�a�Zoa}J8�)i7��̂ZĚ��%��Y�p�A�(ց93Cj3�p˗��𽸝�|́ʚX�_����\-eu<��
%�]zj]GUX��{e
p���]V�p�XF�K��bNB��ub��Șۛ��Ш.�\z��43L
�P;�^>�y�I_"��	��Vw�Td<�S��R������TcH���V�}
�2�'��z.�e�[�^h�t���|b�7p
��
c\�Y��<�v�V0�v�-���º&�p͜�_�-d�� �R�<���P3�yYR=<���m
�Y�Ȁ�K�&��V��Ǟ5��mC��7K���'��'O�|+�@�ui�N���}­�οp�_�m������q�Y�b���ghR�L����c��9}�q���X0$����<��$\B-漲c�<-���c(tD�`t-�<?��ɩ���σ���D��b.n�a���E�k���Q�-�A&9!��Z��*�"n֤��U&F]����֔�e95�H��Je�~Zx�K��D�dëlK��c#�Lc7Ylmi�ob"=4��}�g���<�����-��E=�Ln1�clQ/�­����Y�E�9/��p�xj
~���j餏�-Gp�tOv�.و�ϖD�Vi3K�l��$�̧�#W�rW*�q�^�ex
>��
���mS�
*KN����M�At�Y
nVc^.���M�b�Y�[p+�T��>���om-%܀J����s�ў�c$9�V8G�<Z%�+m�.7(O%�nM��?j�F���gKX`�wG����S��K	�%�­ꐡ�r�V�]7,�a��T�@ͷ�I�[�W[�s�{�|�l�aw+5��(�����)�.�0
����{HY�ˤ0����g�X�|b�9s����A� $��\}���L��?��1S�%�VH�-C/1��uv�_>x����$�z�{��}(�
R��b}E�6�zL���݅fOl����ۯ��s�-��T/e�GZs-U�U�og
�Ġ�tɬ��)�	�!�Nn�-
���-�icL���Zk)�z�y��%����'���ݣ�S�-nmS}�Nh��VŤ1Νr�h���,�
���ŞD��/הt�.�qM���4���TĤ�\�H�C���[���+�n��4`ԟ��Z"d�sə#�
�n�=�
�R�U�b�3�]�Z���_�%!ܒ��@���<Ps�Cǁ_k�:�pka8_�^!�/.*�����~P���)g%�2.���̸�P;�\|'���/{�k_��ӯ얌
��bF��j���)��h�‹k@��?�ִK��[Š��p)�z,t)�<���Z�em�T0�Jī��cuqV��G�Jo�V���s����.p��Mt�M�%ק6]��wZ��7*�^��]K�K�(�:SwZ?
�F�m�ܚ�T8�{f������f/�M�G�IŖ�y�Z~,��s���Ұ��Ʌ�ٞk��w�d2U�َ�5��ƱE������\�rzx����)�hrk0z��-!�˽����s����%�zp��0��$�'�
\Y�"ḥ� �.L���]��g���xcC�����yEWM�HY��׬��BZ#��hW�v�ռ󨓍>�� 4�N�k�rU��CZ�h����l�-.Z�[����t���)���-�L�*�ŤH����D]���b��~aj�.���b4�uE���;����H�����T�o��G�^��T,��M���g�<���[#a�I�dm,eqK����ɸ��R�r�xӤ�|:��z%W�^�%}��3@&܊
�D�3l�|+{�Qb��r�#-+�����g�cF���11}X�E�d"m�&�S�,|��75UEYp��c�N~�����e�,��Pn-�4ߊC4ɷ*�P&�8pJ&B�*�z�M�f���C�#j�����A���
F�[�p���*�!l��yc1O�>Ԡ��.������@��C��Iox!�
nYZR����.p�֞͡�-Z�ʮBŘ�]�e*�2�5vd}g�n:�Ɯٞ�Rv�f�­�]G�A*6��7Ϫ��Xv��Y�&i�ע}A�"p��I°C����q[�bqm���[��K�%�K�Sz��P���:�h���W2�s�';�B'����2�O�5� �[����}��faF$��:�9�QSZ�K�x�~��ϱ{�*��xF���]����>��0��H���Ԧ�)�Bh�K��pIe���\�V^KH�j�[O�J�pK�؝��-\��[��U�[2Xm� 3�K�7}5`hrkjjH���ܝ!��*-ym�_��z��+��]�Q�(�șq��jE>���U+}S�%
*ݢ�ز�����CF�|^���{���#��7Ѿ#�0�.Z�1��5��7&�����f�U���
�}�@siMnj�T�̟-��y-;���!ֻ����7w�±f/B�5}��]D�NCh(x���J�R�y��٫M����;�|�.�:N�J�^��\j�[��}��E�1��1u��h���P�rQ?�+/ZIV��/D�|+7��-g�$�����-:c��-U��r����fYA}n�<�"���-n�L�䖃��� �ȏ̉ ���u�В���/���^w�r�<����fv��G�ֵͶ66n�}@O�{yyf��Q]TƸ�b]5%#�,ڝ(&C�s�kFd*�l�d�����-�'�Vq��[y!�b����T�G�=�UUf���@ɯ�(���>~n�ԉ�MW*�@��`�[p����-ƴp	\�\ 3&.}�{߻2�t4DSA�tО:u�Ǚϒ�e;܁`�J�KLڮy��	��̰d)�2P*B���I�[F�t�	�pY"	�|�p�s-�� L�Sn��_�l��[�t·0((`%�{M�s�V��U!R�R�R��X%�n��$Sʭ�w�i�/�ʍ��q%)�(~%�R�	���֧��[�e�Vo3���2�e�n.��%	��߼�Ţ�KQ7I��͵�>�O����MC"g�|K�Ā�����ROxmm���L6�p`���b<yg��5�2c�w��*}����.i���B����|���J�Q���ڐ�U�����8ԙ�B6�r�.<"�wf\��-�ʉ��1��ze"(���8D��\���dB��hg�e<5���-���uf�W3,3
k1؋�@H��u.c۾�Z�m�ԉʭz]��d�q�h�n��_����V����*�1<-��X<���z�,p"�=���o��X���r~ft��c��o�N.UTx�{H�`�"���b6��Z��e;я��-xæ�|�v���N�o�*r�m�_>��dUh�m[ɯ��H��uyS(���ho]�9�ƙ�[?�LKCf�U�!K~d�n�s!�J��g��&*"q�gZ"�wٖ��*8�咈�C$R}�Bn�8�)mWi�Ƈ�0��h)�J�%�Kp�ǻt���B.���*`�ȽD��V�0�"a��-����TZj�%`�N��h9��&Y��5ݗ�N�y/�&p�in��G�&�p��㈿b�obn
�jf��őش�K�\�|���o}f�e��iKJRe6�~]�[J#}�[��P|�	�|�
��[V�U-������>p�q��E���ZtX��cj�>_ʓ�(�M5V��n��:;W�Wp���3���NS�U��]�
n�j�fq��!ZU�����O_�j�	�or�<�a;wb0o�K6����Y�E�x�Ba@��m����=���|SA7�Bq�k��j*w�4�2e�­�O�p�V�?�6,dݹ�nU+�]�-�B�-�jܒo�ŧb3�u �J�4�R�=���l}Y�V�ͪY���+oA�
�>�,�L���y�%�zV������<�Z�O�ux�Ώ�������:�QûMg������"����q��*���ϊ����_�x�t�`[C�]#;��ܶ}Ϟ��G�w���G��5g��‘�� ����S�3��������H�ܗ���Bb
�K�C����E`��S��,	���o[ց"���TP}n�qp����DS/�e�D���Ŗͫ\���o��e��ېAX�Rn�]yk��f�S�QA�⽄:,�T��v��Q&��rٛ�L��
��l��G��A���	��J�.O��{���p����4M3��ܟ�)��/��z���I,!��f\���`Ѡ,�''R}D�{x���/��->_ԩ��2F�4�*�B�V��$�����
n��n��yrRHlt���O:c��4�gѝ�8��&�V�}�Z��ӿr�C�"al</f,�!B�.,%Ⱦr~���[�+���)�\)$\	v�D������?
.��,�f��8�����h���MS�v�`ԗ�E��1�V&�rk�Qaer��J���aq�U���p.�m�[��Dc�qX�6��.�G��RG�U�
���&�s�|k}fy��N�������,G�ík�:��a	�d�Q:E��*u��myM��i^�	˜��C��ܵ
�]�^�L"�{��t�jwC�٧���	�M�E����������/��l�~�����3�E��[���jS9?�ܢDD��L�/���{ṑ �K��_xE�R�Ao0�m}��pM�z����s���[Y5�����}W��a�>^�erkO=>b?�5�#R�6��с �����J�a.oC�il��&)����O	C��D�'U�O�ə�\J�q�F֌�ݜ��#�\��.-W&F��xٗ��Fܱտ~���~�N1<��4�-n$�$h7��bS�ń�9��Y�
<��r	��̹Tf�`�"�R��p.��j���|��[h T␌V��o���c���D�C��Αi,����%B�0�bn�=zD�-!��
��2���p�N����
��ef��1w�&����­B��\Wm�e�M��@u��1	�9��O¶�VR'�ӈ+���o�l�iVcppIHibM������-9O�tX$Z��Q�[�cc�oiJf|��1��������L޽�J/í
�'��U�[ȿ�z���5�T���Q�.x")��Qܵ�p�e@ #ˤ�bky�>;��`Y�Uw(�.�"�Jv���o����ǥ�%}��.lE;�^�8��}[]����+��l+��lu���/�͞�Wp�1r)�n�ݢ*]na���:�_��tK���o�U2�&���oDB�����7���)�z��K꼬lӟ��^:R���aȱtQi���!5�Q�f^�[{wߋ��j�/K1J�֞�*Ѧby��2�'�s���y	p������wF�)��-������W��ծ����d_W�Og&�V���W�kwi�9O�y����kSy*�ҋD���"#*���� �us�Z�5��!�f�0P�S� p7�*([��XX������"�x�q�
��^�(�=Ka'O���L�o�\��q0�+����X�#J� @���6�s�K���cQQ}2�J��vv��,�"���b�drK�E�w5��7Ҳ��c��䥠��ZD���.�*�W8�B�`ol�6^�+6�J���f�$VS#\$�#����R$�ڬw���1Vk�E���F�rK�t��6���-r5�)�s���L�،g("���A8}�
�}
��ǎ�l��s*�[���N�:�Wiȏ25��í���B&��A@�5���b1F�%�-�^��eb���Mfb��/����Z[�?��_{�pS��ƴֶ�������p<s|�;]SY�a�0�x����-���*�( h�"����[�[�/fho4��WK1L��o[;��S*�А��eaK���ۡ�-����*r-�|c�Z���,�.>��Ƚ��)߲��d�Z����UM���R����c���j�����'��wN�=���?!�z�E�N����
ŧ�饩5�m��軬�'�%�+�����?W���R�*�u�V��-JB�2�H���[w���n$�\r�8��(p���p���1��+3lp�&�c��s(��x����Cʃ<�T-���:p!�u���hW�ā��FHMn�J!�1j�u=�v�W'Dm"�[�kK���VAf-�T�;��2�7w!;g�S,�I��h#�h0Hz��!�ۮ�(�[�}V�k�]�����mGVS9RK��|˦�2'K4�?����p+.�Z��Pn)��0�j���-3\Vڕ-��.T�F�R��'���,�-�?� B�7Z[G�`ͺ��=�:�����x�ʭ�k�Z���@�p�uc�H^��ʺj�[�ٱ1g��j퉳���'�9��j9����[�W[�awY�2��WϞ��)1�M�]yn=ݒ�E��=��T�����w�n�wV�q"�C����>�:�z�b&���;D��6q�2�ՙ�o��)	[ź�KJ@Qei��M,��w����-�3%ԣ"9�/�̻�`���QYR
����ս�j9��+P� T�e�Z��Nd�՞_���}�:�׸���ǔ|骲�����d���O�j�P�?}��"�*Mi7�#�R��S�2�M���b)V���֧��[n�k��]u�[F�Vۭx��1W�V|�z�V�ɭ�,lq�JU�4����#�_}�C����1�_�����Y��V�[�(�,��n�h"T�n��`k_i)�j�[�f�U:�X�5���W��Fo�n a���,Ԓ�� ��-�s"�n�-n�
����yi�;M��V�e=��O%^N�*��Ɩ~0��B%�`��:Q�QI��⮲&��H��(4�[&��ԋ:1$ܢR���#�!/nQ�o3�[J�a^>��
V���JŅ[y_c4��l�ڵ��[��.ׂ���삛���w�qWT�=~����*-��e{�Κ
ü;���Էn9�\���b+��R8;��Nw7ي���li��7�i9[$UPqqѳV��r[U����;�e"�I��CU6�դ��G{�ɫ	V����㼬����p��j�*��r,{Q/6g�]��x�u��*ӧ��[�F���P$d��Z<�E,"Ս6�)}����o��j��p*�v�����̱,�b�O�����v3:�W9���KOŠyg�H�u������{�Zۤ��{��R�tЪ��_���/$>���?����_��?��?���L����59g]�I�UWM����J3�]2��	�.�o*��h8�Z�:�����h3Om�W3?2\B 2-\���E,�[�lK���-n$޻v��6�2��G�a��HU�+G����Lz�V��1^~�Z�Ԏ�|�t��3O��,	��l�����­�4�j�?��`n.�P,����8�E	��ުv�\�z)�̔K��XKp+�B$��,u
Ua��ӫΞM�njd4�����9&ܪ1�E��/��;�e�6�b�lOI��T?�b��g_tu"��[���
ӼKӮpd�ڳ^|YDY�O����Z��;���#4��=�\ ��W� ����9v��b����_r;�e�gٿȺ�a������;Ӳ��qnu�í�%�A$\j/OW�!Ŗ���wO�<��B�u�
Fɏ���e�A��V��/I*njgi��x˓�ǜ���q/���F<^]�X�{���4­��=O�)��}��@i�+��|�u�����Kt�_�%�#�I��Ó�<�<LT��-i���U�
T�
�%��V�<X^���r���[*��)�;dF�x�`�֍@k����!ǚ������[�A�E��S�b!��q�������0��ս�t_z*HM�i�T���'�w�~��3�e*���j���K�
n��<.!����ҹ�����E$FW��f�$��>źae@���7F%�"�V+m���R�9{��	oy�K38B;�+e��7�S]���xr��7K#�hq�8WnR��X�[��6-�tMU�6M4�e�zEE�^��m���|��DY�c3��l��Z��f���3�$�ՠp+FtVa&/SBA�1��T�����ɘG$�n��(�[�ظ��.�[��rK�̣L��[!�[��nYdU�����3�mr+T54��|
iÆrkܵ��}�"���y'�\ԉ��x���R2 CAF�>�
g�ss��C3�vΌ
/�ş�Uܲ�e�"�^_�aÈ��˺,��VKU��w��
��s�V�� F��8��uE��0ȪN��\.��1ɸl�0���ь�4E��g3@˶��^��Eo����A-����$�[�j�n�����?��wz�G?�&��-�m��3d�GKB�@��:-(���	�8X䑲�{���4PN�[*�bǾH�-�<��=�lY�F�U�
���Z?'���/��-�>����M6�}�?|�;IB��i�\r�Qᛞp��/'����kΕ\gT6��[��-k����������TH��ȃҘo�/B,��uS�5U�3E�uX]����4P��uM�^e��&\L��!�S�!�ʲy�
nU⍋�LVw�W>x�*�C��c����G#�����֠�Z�g���\�i*G���?'��[�+���ј�H�Rp�M�-���K�\�?OZ�@�!�2�ծu�픦|Pf�^���/��`�r��}ʭA^�_����e�/�ܲ�et���P!ĝ�V�Y'Ԅ[l�b�/�(��N�g�]ø��{�L��E@=���x�b�'d����l!�?�_Z�X�qz��Yy��q &�Fgf�\n���	�N'�1�9Qq\����-3�O�G�z���h�QY����I�]�w�z�kN�4��j�j1��/��D��4��F����p��L$�s�@��ڧ�K���W�[�ha���@�D��n�8�
T�M�>�D��w����pK��2qM0��D�B�O ��稊�]&��:��"�*7���K}��-YDVXU
�t�������aU@�爗���&������AW?���}��U��<���LL�V�H�-�m}WF|1��c���t�u��'~Z/_ȷV���V��T�cT	��^p�b~�tI�
t)���̷6\R֯MEsk���V<��cSn
��L���Fk
�Œ2����[FR��k=o�ϸ�-��2j�S.�����W�`�Zʭ2�[�-�.P��L��ѥ�� ��|K�����
��n�<�T�e��s�9�O�Z(���z��+W
���!Wp�&�I��#C����>�Ў�J'���q��VR\Q��-�{�-�Kȵ�]��~4B.�-#��j���o�ߢ�(�*��3��nr��ӝ�l��p+Iz[���p�%���BB���.��h�pv-���3b��Ux�a���F�u|1l(��'�������?���2f[��E[�����?��//;��@Ҝ?O�xj��l�k��J�)LJz�R�51��pנ���YP��V$aP���x�A�I�% ��J9�$��ׁ.�v��U��J���|]{�`�v�G?"�Bt�Ş9�`r���(1g���.�)�p��X^ͷSe�;�|�y�Ŧh�ʷԯY� ܯ��w�ؑH��kJ�d0�۪�==��_����y��&�
�y�O$^�ԝAb�؟�џ�ыϼ��3�q���!��7}������xM�[��r�RO��
^�p���M��C�
�T�-�Rfua�뫎��غ�h�9��
n�;��T7�X�u"�)9�Hbpp���,c=I�C�b�O%ŝԣ���#�RR����[�D�:�����\�.}�j#~3FᕮT�%��gm|�f��uK��N9�
F�{�S�`<H��ƻN4��v�9"��7!�j[D����Ape�M_�����U�%�l����K���E ;l� �u���C�E(׌qF��w"��B����P��CA������yXK�C��G�9o�;b�����Rs���`��-�0�����"�b��p}V���q2�ֵ�RL��/]=|���|���l11v��M�s����s
���������@��x������=����A�����V��q�T��_f�w(��U����z]��>�[���k��������
@������G�K$[��4i����{Ŗ�/�y�qO |�� �c ��,'Tq/E�ɭ��{�[T�jb�ULlt��p���j�S��J_�jr�ڦ�~���M�37e����˿��_�z}�w���+�|S����'�y�����徉�|7�o}f��B��<��7jh)O�^�Dž/�o#=���p��ipK�\����^���i�O޹-��J��wB?^5���B�ɞj��2<����&y��"<'�Pո7�\���+�Ԁo�0R}>Yae^�6��-lQW{4\!ӷL{�@��/hc�y�p�p4蒬L�Ehʥ䲰����Ei�t&�^tة��������#wOJທ�ؤ�nI84�җA�F�[�*ޮ�"��#��Yߨ�
Hc�򃰸�hrKo-wg�sY�-�V���[X��`�u�G�>�!f�k�������; B��N-G׏��,��H=��֒�-[�X����z�7�;xlf8���K�D/�A/�7�D�����Ik<�Pg�6��=gP��S��/#I=�:��8շ��O����+�y|�Dv�?����M�o��HG�p���"9}� �:����SZ�`�ܻ��n�y�=�A����z�*� �n��	I��h��
f[!���KP$�nG����k�^K���U�-�tI�a�Z%�\�-�r�xY����eb˪�����A*%�~"Z^�{��i��?�����K'��GO=~�7���?����n���D�e��cl��2�#�ʭ8���F|q�&�zs��z�&O".��5G}RnI���b�q��3o��Ci�ӕ�u�xg{����2�p�'L](`��u �����̬�zS�mf����*ѱ�R�
�HZ�[(^��ѡ�c����뭄�w��p�`K��w��T�~jG%����|b4����-+
�V��c�?ī����`��V�\�G�Ť�G�ғ��&�V�h�[��k��ޘ�W!��¶N���t�>�9#�RA��2�[!�}�[&�Z��1#�rkc���{���Z�bB�N��9t�b�1�C�o�.���9E,!�����L%:I���Ka����ә6���p+�������M��ER��~o�U�PeoY����=.=��	QuC/���\~	Ics0j��v�[Gx�D�B��,���?�;E?:|���W��@L����T;�8
a+��Sڮ7���6cf�j��A�&NJL�B/���g(W����M��*ᖀ���<�r�A-]���~����S�[���ry�[�I������nmݟ�߿��]���9�-�\����/?�˟��P��
�~{<𹼽���ω��u�حKvT	qA�U�Qу5�2�ڴ/YE���/��\\Ԇ���@�P'*���T��y�5e�:l:��ȷ{����8	���nq�H����ر���fFS�Xnj�Yz��t�W\���0��R/�7��m�r����k��nU���E�e��U�
wb�W7��P���	��t
E#.� �r��Z\
&�l�+'\C1o 1�գ�R	/�f�
��Vuд�\���c��$.XY���0�Ln�:K�,�Ln���O��H�[R'�:=���{��
�V���Bg�gX-&f\���a��pk����05iج$h�#��c�3�e��N�_��Z^6c�Zz�v�/��t��-�����6T]}�����?t����~>:�MO�vvQˌ�`�Qp��Q���
��;�~#��=�pej�]�Ѫ�G�@}]��XǗ����l**\�@|�.H��+�z��NPG�����Rn�d�+�R�%2գ��Se9^dL����r����Fv�S\�NQr/n.n٩iح�*�V�(t(�A7�i�hq�sȥ�D-�>���W�E�xSn��ٳzb�:������o=K����^.��ء��,~UvY܊W;�A2oF�XB��v/�ԧ�6�Mn�i{�l��-�CNٵ�uC-52Ym��E��1��Ύ�@G~^������g��,�U���N�	���]�D�|Kb�K�ê�w\�N�R�;�����(#�ҰWT�)���Ѷ<
�`u�+�
��w&\n��r��StB��5�
�X���L����Y�V��}CC�iw�oy_3JDn#�V!��v�i:���f�<ㆯ���A/-�[�!�,V�h숽Ca)Pu\��!�a�UG�O���Ÿ%�bM"��`�|kC|��e����|i��ʭY��Vvv����yANjc�Kx����nM�����W�Ms��i���b]�c
�MeW�>w���t_j;�wk�}�t�U�E�җ�|w���7W�Skaw���cAD�D�|*�һ�T�K*�H�0�,+��D��p��2i��K�3����H�����5'UQ���c��bz�5j@#�b��ln�d�P��C�ů�o	��R�|ˈ�ܺ�HT{����ip�>3��b�9~��_'��(ԉ��'���`= ݎ���bG"�Up�&�>�MV�Ed���ݿ�����֧��W��
�����Иt�����vnNV��ZI��<����(V6:Ym�pi_~�[\�[�n��,^X�Tùܤ6�]�է�w��{�A�s�26��nݒuQ̝Mf���6��R�L�PrD��R���rI�,���o��ȭ�-�v?�2�3��}�h4�I.�n��yt�h����%��R�/p�@�d��R�H_�}<]"[��jJ��W,�A)_�y�hpk��x[%N�
O�nя��3�n�$ucK喃��:G�rKBye4��7
���"2鳎&�ԉ?۸�z{}v-R1+3�hQ������!����։�MV������u媿��$��,�����Ζ4ܚ����#��X�j@\��|�lC9�u�x۳gO44=��t�1veu�kx��X��NjI�bk<��%�BO�0���hH��RJ7��G4xo�-��l��ҧ��5�7T��|�Yo�3�;*�'�ŠrRV��$S/�������.)i���@�Qf����>��oK30�2���\[� pߺ�ؐ��2ᖚo��2e��X�G�b5�	U~�l��*E:�}��Hgp��g������֌��7~#ُ�B��E_��n�o}Z/�8N�ҊRnU�Tzj��bQ�h�x;���nA��
�l.TKc~
n�d��;���-���Ƒ�����؍�t�V��03�՚�A�w�vG�\�9��B1?���x{IQCB��UR�GF�G�w�/*�X�&*��ԆO���$h�E�ܲ�/���1��6�����[I��6��aՊ�p������D|��%�"� a�)�+
�E�=��[���|�	.bЄ�ǞW+�MQ>{�Ґ�h
qc9�ɮ�&^rZ-ܒ:�̷��������Vy�[3ΞY�Y[�k��ۭ�o�b��	��yIJ7��;c�6�����Ʊ��wd�:7	������Of�8�"HqԒ�#���?.����@�й��b���[����U��"G�aF�����~*Л.=s蹣��]VvI�����(��=�6�Y��+m/	�4~H��N��E�����!AY���s/����OD�/ɖMB�����p�55ܢ��6�3��ᖩ��
;�2혋\K
C����q����o�[��v�{��wg��|���DxjpK�%I��<Q�|���$���C�O}�#�_��zQʼ�S�_y�"�Y�R�L˾�X��˧Vp�}����>�[��)�[�z�N�̷6Ǩw>�9�#��$u[��{Ҩj���@|��^Sfi�0�[�U}�޺x�:�ڨ_�y��7�x�r�<^\��O�Q��M���/�׭�+,�Ꙝ�G]�<�j٢��0�����Pn!�P'vC�\��сE� �j���pK�3�Hd�`C{c�$�|�_���	��v�Uu���Y(z��k)ǡs(e����h$������'��|c��g�;Dz���`���?���K��HV	�M!]DF���X_��
6)�YH�����ʭ-:�!�y�8+'��PWln;r{�V, �3]_�x��̯����
<mr�Q���۟��na4�\�8C,���Iaّ���=
���֥L&�95��v�|aeq{�)P�u��[{�lm:�A��#E��۾c׉��?u
�f���]�[��xa�yRb�e��BK1v�uU�+��^e�XQ�O���_� �W|�����EX�ܒ�jn�\ϳ�QA������-�ՙ7�h��K�4�$Q���ZI
�lPkk�U�e��U._�ͷ�[�K��|���p!/QnA4GZ�Ǟz��`��H�~aꇏ�����'����i��Z(Z���Z2o��_U�ß���mkS�B_�������{5���;��^<�o�G�G&}Ĕ�f]��7s-���
������ׇo�q�7��^�5ڮ["������pa^F�Y�.�
K�)@�R'��b���$��y��ܥ��7P��
+	����-�v)�%/vZy�50�i�!����Pt�v"@��E��[J.3����]��H���0�e�&Tq��j��x���(�Kzb�
�-n�'CVahRK�~��pB+�(���^/~9]2
#�ns#1hԉ�pk�r� Ѳ�e�!�[�[�>����ռ�^������˳Zߛ
�g��>r�65�T�>{�~�-^2LM���eg.����f	n]�QJ�a���TF���k�O��:� jԟp��8i͟:\^N��c�/���J��j��l@�L�jH�6�bzmGu:z�%5�vT�[����J�U�"�*jh����J�p���C����U�erKx��
�[����KR���M�E���p��]u�E��,�/�ܢh,� T�eܲ��5V�]�-������p�0�)ῤ�6�`?ٛ����{����������_�����ۯ��/O�}G���0�[��䙧2ɘˇ��w�~���z>Q��9곹�Z���5��Qp��Ւ���_�a��|6[�-�	�E-R���Վ�Z����םb˸�~��5Wn�hO�skc2�ϕȳ�na��oI*���ј�6׌�m"X#ɖ^�W�J���wjZ*H�X�:X0Y�.J�6�-�eԉ���E���f�#8Q�Ӿ�c��9cB.k�Zѕ�"����q�l_t��J��nu0T����^֏��Q'&L�p��/�f|믡���d�w�pkq�^`�v���H�7)�j_^�E�X Wa˵ư�[�O\�EQ�-�͉
��;�<�H_މ��ف����#m�����3Ί�{k��˱Hx�:�/�W�
;���w��[�Kg,���
����s��a��v�8;�4.w0z�0�U�g;>A]�8{��@���^VZ<���|*��]���? K#:�^���n���x<T^��x���Z��E
^\/�r���W��_V�C�E�K��|T�~��&S8rՆ�);.�m��ۥFY���N5T�UPAЌ�:ry6ch��',�@lI;�<o�\ꁢ>���z'�\�W�$������Ћ���bD=���j��Ҝ'\�"������'�������Ly�֪�-�;��Ԅ�pQT��
�eL��'�)	�՚�����Ln)��R�U;B�-��c�'K���s�tL�%���BZ﬛�2$�N�|�;��]�ɬP"�����E��lO5믿A�w�?����e��Y��g(aqkG\�[��
.��]���­���(���Gi��*��؝��n#��<�+�ȉ�У�y���x��ȷ\CZ����D�充�Ն�Q'���-n��Z`je2���[��-Y�S�/�%��rW�����-�e��{իP�����Y��*`�a��_���. �7�j��OE*ؐ��a��,�λ�����rP��<#��|��j��S�3�D�J��&;�[�Nvw^�ڭ�[�˟�[�sն��
wy����B$��G�j�,��Zi;5�iI����;�Z
؅V���C����<�����U��J�"�/Q**��׆���d��&�2����~�&_���?6���h����)QC�H��:C'� {��v�x�y�K[�"�Ҟ�`K�-^���{wy\*;}X�e��b�U"�p�;��j��ղz��v:<�۫|i��f���1�漙�PK[۹W�����K��/R'B+�h��B�T�������Gwe���íB�eyR(jX
.�[֒2���,�-KMO.��6C0��F���/���T(�V�!�0�^�s�&JÂk2a�Ÿ���.��f&'{ޔ�V^��E�V&3�9��}����=�)�b:sb�޽{JD�i>m�V��M�-�[��4�
ܲ$\<�p+�FH�E�Kۼ��ѡC��|�И�s>g�9g|���hJ���2��!��]N�Ӑn%}K�*+�U�&�L�֠VOH���M���[:�jM�V�y�
yI��-ͷ��?|��C���f(�&
n僶hxI)�+ޑ�L-�ljwϣ���W+�i��>�ɥIgM�{�	Wj1���-Z�Y���)MxV��͍�v	���3�N���J�4)��g[�,�">Ӥ���[Hڣ�'ɲ|+C��[�L��Q�z�NI�%�\/�u�n|���d�s��0�u�����d�N!E9� �-��Pnї���D�_�#`K�3�H=����M����K�p=�GՊY��Y�X<F�f�t�����Dy!�R��SF����-�[-.��PD�U�5���'�[M����3#�Y��LxSC#����'_�E#=�����'��	׿�ٍ�KB�`��wq�3��
.k��2�V[���l�{a����%��sA�%�܍5��ۆQ
W���Tnr����B%w��
�\fc>��Bx�Zb@q~��V�� n��.�,t�_��'h7}�@��2Ӵo'�<��
v"ѓg�5�a*s4A�-^(����%.�"C0_�(�y��2���|��A,�ŗ�'e�Xl(�\�.�?�-GY�VIW���o��ڭE-�.ʭĻT}�X��~i��n	��	��ijyv-)��[!��߂[�6c�1�E.[�5t��ɶ�s�P0��C�+�
�ܢ�~d	���霟��O-	��(����fT�y�|���󪀸�ɭ���dn��:t��b2��~���JJ=ـ�����(wX�4�9ĵ���^��W��Iڵr������m��ȵ$���
y��d��n�n���[�]j*+ٶ��J�WR^��KY�c�K��Z)�p���n�ަh���M��\o߹S�)ÐI�=��i���-�Ni�|��J���������o�����f�H{˘�VF�~
ф�='"H��%��pKV~�*�<��r9��erՁ��������S8�*A���}K�1�W���w�~�S牟�-�d^��2�Û��:��E��o\�P�N�]�+�]�����1R8��Lvݾ�����֑ko�;]�3p˴<]
�c�-`�����IB8;�:_�k�YǙb�J�x�J�7c�	�N�4Ɋ�{DS$���XG��PIR�BF����D3$�-�:�@,Cy���`���:��oY�Z0Z\CQ��d7��ܔ��K�k�[�QC:dR%��N�����-=V�!�������y�p�>]XmZ�4�L�g�v�UQ,�-j{�^Aפ��-.�|�[�	{~��j�\4`&���­pu�cA�ŧ�-?k]�n�Q=�o�U�lSenqn�-�{�%�Z�_�[$ʱ�L�r�l(�r����O���=$^�t���l�=��I��(I��GDK�l����H�s����'�=���t}����!��Q�Ip����|On=V�r 88�+k��*k�[t�V��Ͽ��_�Ug�oi5�$+��֏\���2!�2��nB*~vԉ�I�����E�"�2�,�[���.�;�(V�-�[��H���E�z�xIm�~���U6��Z�L��ĔWD�� Nf����W8l�]��O>�֓m�zJ+I���A~��[���;.��E�	����M��:^m����pkM�z4n��F��޶���Z<6��ᆞ�%��F�X��*��q�O�;r�:3�=3��� z���K����g5@-zEt�ɤ�.��-B�%ϫ��u�A������a����缴+�(Mp��n�#�Nn�*2�[�F��ȡ�oQ(n�q�X��Q|�'�->8�q���U�h�UU]C+�$�eM�[�+�vic޴�)��J�$%�𮬜���E��-Tp:�7�;2T�O��]�o��gf��Vx��-xf_�z�u&��1�$���ښ�V���A�E���zTo�Z?��(3��OV�\x	2��X�1��tfqr�bN�$Z�]{g}]�����pk"9�8�r[�c0K�S/?	�l!|�HoS�H�?����P�3Io/�I��mf�-��+ï��o�k_�җ�[�Ȼ,�M����+��-*�\�*����x�,��:����ׄ�!��Тќ7���LU�-�U�-��3<��Wn�4jK�Ul�� �ŭ_3�ᖺ��`��f3ٲ���qSѩ���W5�3护W��8VOs�ano�r�Ջ}Ip�j=[���t?SV�g���?�921�N�x|�2/S:qw�'~J/��n��X#��|K�E�*l-�ݯj,xt�|��5v(6B/�����[�[VK.J��NZ�-%rkp��[�Q�E[>⧽�AX�(�z"��9w܊ī��ID9=p$z=�V�`���ȉbK�Ul��p��F
̌p���j�b�+��E�������cp5VD0������p�ǔ�����]^,q��Ն"���ڬb*��/_,���I[�.���-}��n+�[��Gg�[��n��<�G�����E��-���D��AW!���,�ŭ�l��M�(+�~�~�Ld<
�zdLqu4_��[%��Yr5�-z]��n��u��Ӽ���N:�n��zd��n�|+���u�L��|K��\y�i/H��$J�4�2i�D�杖|k:���L��+ݟ�:�73��|��R<C���w^���
Y����.E��Y"!"�Co����w��7��v0��zHU��T|*����ڡ#��>�
ϝmb0�ݴ���<J���-^̓��L�bK�/k'>���Y'�`S\$�B,���E��2é�[U�s���c����f�M����J�^f3��3pK㊱�Br��3��F"�`�c��?��o��ov��N7�<#�Ϋ�Oʃ����[V��u��K������l\�V���}��$�����z/�Sn�	��F���ڢԉ���\�[���=�j�)s�E	�J�ݝc*ͺ�X-�f�;^�>��dר��
C�:�:3pˍ�K��GS0�]�U���(?h3x�I���V]���\V��-�\�ou����̄��V|J�5��$ݺ��e�q�ḋK*t�D��j7\�o�b����[���$�Z�k�,������?x��<�E�?v�~�ޒ}2���>Tw� B�X�!�o
*�ͺ��v��
�ʩ�}=�=�mݾ����C6s����2ܺ�SC5��a�u5/��_n
/(�0��*��#�bt��5�z���߼F�kn��\�7��Z�PL�]r��%'!��/�Pt0G�����$/�4���Dn-}_>�����P��_��/��~��/���$^�T�9t��Q&j�+_z��n��U`�g�^�r� ��E��g�?�+��T�:�CVW���f0[�#��-p"Qn�}�8H&d�b�|�T�':TͶ ��-�^����1d��>��Xe��.1���p��-�e�\	�.5�����|�̙��`�n�kfk�Mt�x]��t�1�	`��L�ڲ�Sڗ�jL�O~�������W+s���ܲ�e�n�)�(Q�����<���X�Q]
��f��Mn�3ՄK��ۦx����rǚ�<��ɭ�m��P*mg�c�X�Wڜl�8�~l��{)�&�!ݢZ��I_j��,�Vg��&LrmyM��mz#��V;��
婙pi+:X��5[�t�::��ܒB�ɥn����\�?�>�[�pK��k(R�Mz����Wo7�vpK�U���|�N�ծ
�}�fC{���^ɷ�R������pkU;�V�4,k��-�oQ�WK�5�]�]B.si�rK�����u�go�.�疯�7�;��f���(p�����e��z��(�z}��.��2�({_����9��M~l,�i;����]�D���65L/�������3���	&�r����	%��+Ð�tK/�Wr��r�����E�Ud�+;�߷o����w~�[R3
��?��AJE�E�u��E;�p��_%{���[/x<��}2=#������"�9�d���w�0��r!̿����/"!���e�G�Q}	�L���ʭ�ʗs�h�[�-p���bY������ D#y�#=��X�et��?�
n�j3g��%���Ħ#�3W�s}��-U�\�Mr���|K�Lp�7!��7T���n�
&%c��m 󯟫�V�rkM�Hk�K�9Y���F#ߺ�[%4�Y'�qduu������Uƒ}�[&���r�*w���p�[K�vGy|*��1�#�B0��Қ�T���ť�pp��V���"9d2]��)w����rt��`wƦ�9n.1�.��EG��UMhn��t3�r��T�%)�`k�X
.u�����RK�5?{�F�[�q#a��yk�;H����vvŧ�#�#r
�eSj	�\	�ȷ^n��[WO��7�"��a9<X��V�(YT�e�'��Y�zn(oXi��Uܺ!�<y�N(�ɷ������A��`+OA���~���
׈<���[V�I���tn���̘�r>X���3���u�xbq�/�`�g�����=�&&���G��d�^�x�f�HUH���Sm݂����b��H�~����jR�?J�ep��Ӈ^��8����|	S�j�]�%aXl�,�Enhu/�-8��GM�ŭ��jY*_�ß��gipɂ}��?�I�p�
ͷ؞H�J��qџ߫#>E���t�Ч�vո�l����G�Jk~�k���+�����)6�K_��d�����T'ח'�O]��N�M�z/����X:�~�5��i�U�����Ly�[)ͷ�nU��լ�X��dD���P1�����߱z��j����8xC�\�~��‰���[�S8�:��O6LA=܊;� |!2UWW��pkٿ$>�5�0)ܲ�2rpV^b+��]ɴ�z"���[-̏0�0�Me$Btc.�Z@��[�Tw�[jd��֒ԉ�0����$��A/�Rn}*�J��	��8ل�Դ�n
n���A��Pdt�A���ʑq�.ɷL!D�C(O�xK�5���:��bQ�N�x`_5a������3ߒB_�->�Gr�.��Q����ߨxB��+�i�ӌ�n�М��"����[�Gg+&'G���9c�q疲pk�u?�f�`kn��pt����hXt}b��x��C��8U��t�q�%�v{������eB\l㱺�oIg�#�#���Ą���;c�QE�T:0�uw>��o~�"���׾����̡�G1Um���ڞ��:�FH��	e��H���D�i�F�B^n��K�N2�u}��jL�E����i��7m �-�
~~���8�l"�"3�U�E�%����,��=%,ڧH�[�ZdrK�Ǫ�'��߻ףO��LOɅƺ�1>r�����r���g&\�+}�Ʃ�%�\�!�C+�w捾�k�U���i�2�b��͕}����o}f�����K�-��-�e�(�-k����ŝ���ƼnD4�f�[�e1�m��ZʈU���?��W߼mM(��z�:����l�{泹�I��;�����`e�+ſL�9��Jz��Z�D�nZ�x!�"TcP\BrN�k��`<�KK\[q�R�@2.BX��
;}+Ͷ\��\�to-	��->�C��O}�i�%�;�[��V-��S�Q3u��-�8�]\��z���֊�-�B�ր[�o��|�\C��-�'�/O���z��X/�z��N�,a��bJ��W�mHoky}]^�N籮i��#���غ�>����_������*��)�������f?�&�� 5�6/ܢ`\�yi.���"_]�[m�^f��Y�qL��?ĕY��B�2b�$��&����3���2R'�-�����
�;���>�E��w��Ww�;.=��S�΃-��\۹��,V�"����d��Ag��X��RWi���<P�wѢ���J�e�-�]ja���{9�޿O����we��KFM
�ʋ��[
-C�s�p)̷ܲ�K�Yn�[��6�!PT-,		z|��},���F&�Lx�rӼEW~��QE�������{���i_�V�`�z7��>��\��-C!��ƨ��-kDq��Ȧ-�_�#��f�*Ȓ��+j�h�L�Uqg��-��Vh�![;?��[bL?59�����k�&��3��M"��UD�"��!Z���lt��
�j*o��h��߄��e�V�u�X�u��^��~iQY$���N(�%�Q<f�MC��p+�BX�P7�%:�-܊�v�j�(@����\^_W*���t�}�U���M��+]��ӨY�A�J^�eL�H[�v�p�6� 
�;�5�iaj-$�|��Z�	��&&	ݪ��ՖF}��T�rlY�oĹfǭk=�<�xP���Q< ���[ɷX���[t���S��š~������N%^c��2��M�>�#�얤�O�x��nj����-��-��ۢ�j"%��fhzCg-�Z�Pk��JJɘ���!���w�իWϞ��p��zܶ��ك�?z�{�^8D���JYcA.<�,�Nj9���B@E��v3���N&�L�or*-�vK�%���L�������[V����-u;-�y�ø5k[ަ�[n���Z��&�8S�gEWҴH2�s��b��k�4!{���Pi"��F�j2�p��z�O�_����߽��_�,���-ܪ3�D���8�r�w�[{��#�pKO�P� u"5�B�*7����������u��~x
'A�[��-�����l�\n����BE�阎�\ ��nl�7�����k(�N�8E,a1)��5��̙	�u��_�'ʚj�0���;�ڏ�+�\a5�A0�h����jJb+�b�.G�h���Rn"񔔉­@WYѽ�{An} ��3ܚ��]3�"�]�EpG[��w��V:Q�����NnF�e�e�[x��ߒ5�p�&�IFD�V��[I���-��Z�x��>+�֬���;f[պf�Ǖ�Uԉ��y�/5�8dpzٝ�����wV,u���Ƶwn)���v��Vw�?�vC����{��(*�^�Rp��s�������}&�Ú��E�E�ep�@�xO�%�N��
�↼K<�{�x�lw���㕣Ͻ��yi�í���N��g��[��D'/�w!�Vv��,�D`\�]���K4��9!�
QԈY�"+�'b�!���Wb!�U*Z��P�ܢ<�%����˔�y�⪻��>�31���z���cC�c����kf3�+���T���Tr"���Cp��̫W*+io�c���-)'������5���(�ھ)��@��hr�Z�m�U�j�i\x]�53�&��i֬ӹ��C�E�EŸ�pMڳ=�Z߯"khM��nB�ѹ�p.T"�n�؀����<_i��q��"�-���P-���l%{�݋L�wl���t7��^hp��Gו5�AS�U�0
�~�e�M��/ftx��$م5��|n1������Y�]ۅ�3�{5jt�x��*���H��x��z+�X��F��^�#��[-���W
��)���[�V#�2���.��+���n�7�7�{�g��[���z����ŋK��Z����!��U�y��jcv��9ZtJΚ�uխ�%�]�>�gdqfv![�J(	\���[V�9D��[�(ۻ�V41��Ts�I�42=1�&h9���	�o��7ܒtɊ�~ͻ�\�Dgo�x^�/�nY�gK<�<PE�4�D�)"f9W|TA R�F/��+�^�e��-up�e?��	�ԉ�zke�.�rG(��7��,���B��WZ����t%�Ҷ�����E�J?��HH��cҌt�Z&�Xcah��L��z��G�]���`�e�i��Zg�K߸hP5�|�Ԑ���o����1���f���6󍔐V�U������M��������y��ҲQ�L��V~���c��RC	q˝h��v9ËT]��U�=a���[���Rr]ePvyJƥQ���6ɵrɾ��HC(%ܚ����n
���f`F��R%d�6��w�`��-�y'��D0�]�p+�s�N�`+*���`uC��.g�1��n������F�o�����?ܰ��� �2q8L�
$�A�h�奿U�a��(�]�.�W�r��(�t�xU�G6a,��Kv�[
Gy�s�n���4V3?K?�l_�_�;=�FE�5��p����;�C�E6�\>op니�J��%�[_�
U���:~8�*����ԫQ=
.v]6��y�_�/��K?���ꥁ�ϙ���m�,��Tm��l�MEĮ�z�SN������jr�p�x�Y��ԯF��C��4�s����
�[`Kml�[�q��[�-.{T�EoK��6���-�u���\L{�Dt���T�-B��0��d��+��c˟��"�"�GgN���R3�����3�}�#.�$;3�*kI��.�o}�_>#��o�y���,^�-,�1F�y��d���<��7��[򛱶�[��c��gr������U�[o��[�/FQXN�oݺ&��D`�݉��=���w̯>{q��4{\~�P��i
u�-x�$풫���8�Vى�.�
FI��*Tn)��[�D<��KK�E��jE,e;|�ƈ}�[&�Lr�ѐ����@n
5���n��*����:u��F�X*�ְ6��V��fՉq�p�I$ߺ16f� T����VMnQ'R�nr��0E�����̺ŧYw`8��C���h��\�jS�@=�ǯf�3瞝���sƀ�Ku��cs5��Y��s�X���wn��Dӕ�i1��H���M����K~����ƻ�:~�e��*�S��F�8��ܹx|�H��xY�6 ���格)ؒ<��s|�Ҁ�n�~�`���/�33rQ'�n�8h4{��K�A�$\���F�\O�q���*�^X0E�[�0tAĪ���~�eΛb��Rb9j-nY��|��5"Q\p
�]>�W���(�r��=�v\��)���KM�$�����P_�i�����3��	N�W�����Fb���'$㺛�[����[<��[kF��@��~�(p�z�N��M�F�n��t������[B�B����"����}��8���[![�`jݢ�\�K��O���v�ۻ��E*g�g(�i����Ep3�'������pˌ�EPH�h+o:qC:���<�*��BЗ�,,Qt�#ҏ'R)��ڑ�)�ŭ�pQS&`���t��;߯��쎷�Ac�P�hP'�(EC�u�qq0��0q��qЌ2S��IQ+B%a�fKi�a�-�x�ZӤM����n���4�m�=۳�����2Ҧ}�>0�����yq��fc�Hذ4j�m�R
0�S�뱸�n�`H�wK��q��T�yK��o��2'��q��|��oY{_���E|�.mvi��}>I��N��f�ї��1W����3�8sufd�5�?��z;��2����_���N�J�[�l*���?��2F�Ջ��Xo��/�:�u�C�I��
�Tvze�1��WtWԑ��{�$��EA18LZ�62�BM�L��y����qr�F���mC�ut���8����ڠ��%n��q�Ui��ri'H;hQ��^�~�d^߹u�6�6��L��yn��ZA-;��e}��x���.�Z�pK��|K%�\�\@�p�[B����V�s�Jnq'F�1�M��~��	�����x�nX�	tqat��AU��L��g����yr��U������bG-u���F�Y�j�%Wl�ң�<n"ktp�d�dJG�5������aܲ���}{�N�Pʀ���?��!��zȖ�Ӵ8�ked�*���^��\�l�(�:im��S���G�[��)ih�rh���?/���rm&�)�*K��[�@�[v�(�$	+$�;�V�$�e!�OsKyen,��B]�F8G�z��Jmn� B|ϡ m����xj�[���kG¶j��!�0��;����F1u"��t�
(Yo���/ޣ�1_����-�1�q�X|��C�$��{
&?�`anwn$�O�@�u3����;���S�%gs�F��[��3U�I�\�NSs��16�3�NG��w�2Q�Ƀ6o}j�25rϔ|�ҝn�[dM�k�jG�KdN�'
���i���
����#I���d����١�*���=n�X��X@p��]��I���T^<��E��hӋ�H���~!#�K�J����� ��ݖR��HShiC�K�V�ŭ|����MB���T����&ZV��V
�Oǚ$b�H�M��>��^y��{�
�2��SXV���y�#�ڻ;иъ��Җ�Q�^G7m�e�4�8O�j����pp�T^:�h����d�[ֈ�Q1����9��-n��W��-�"a�k��~���P��Cե
��mn�������(
�F���d�Ӯ������TA=�(�LQ��\_1f[��m�X�-.�e�/T+W�e�yL��;��B����[r��Rd�-B5��h"�ug��N��PɁ�Ge@Q�E.�������")W��ֆ�>��H��V�5��"���KF�K0?�Ϛ��t�6S�%�#Zr��[�V��-{q%X|�<��J��H�8�w��(�����#�ڈ
KF�S_#rS
�r�p�\[����^7B����}
�A�%.���3��|�E�5
�j�z��]�ڱ�@�}�ȩxE:~E����Tž=��fK��t��<�TW�@~@Z[`���4�E)Y��W�T �� X�/F[��5�lD�W��u�{��Sr��A��y $��nGFrx,+�>WIf�n���;�����|>�7��T0h�dk�/+b2ϗ"�2��K�?�t�g�j\� ��U.��D�T��[�-�e��8�`�e��-4�Oh���7>�?��{��{;����
Ԯ�[����FC>��Ū����n;5#V��[z�p�]����
��R�e-#�3.�JmWVz��7������)&}(4�cd��E�[�Xp}��M�������-�Be�ʼnP�hè[�I~\­P_��
"��;e#�m��v�љ����j�
pњϔ�t�YT����b����d+�\�`^��~��-R�X���&5K�-Z\�~29��`C?�bI�e}­TS?L�-��-mE�]	O�[�	�V��tY�GM�]�X�5���|��{2�80a��ў9J��*M���U\�/�Bh�(9�5瓄[^�51�qn%��Lӓ�Dsөx�n�����>�{��-& lzRGo���Y�k�Y�I_����~�oI�E�o�:�ҫ��Adޗ�h��b�=�K�8m�[5'*�<!��a��:�pA.�[[+�UE��j+_���ǫu��������!��-oQb�
a��R�)t}>i�5#|����J	�H��:B�
|F+F�
n���P�J�d�IjJ��gLlr�}v�\��S`�Tb�q
�Y�(-p�Yk�����J��t����j����r-�.��7���G��}�W�z�U��v5��_7���ȑ�G�����M�{�KR�d<�U�O��H�EP(���R �EQ�!�QB(�t�"7�yY�s�u�gq�V�^���N�1�~�����}Ф1?5r�h"\�b,Y����
��n�T�=��[H����W7ș�D\��������E�5�[��4�|!���pE��9a5�[�`�2Q�0�ˣq��W$Z�(�-�o��@Qߔ[�-�k�����@<\��K[�o��"�u�([��J�­�­��4Y��W�9p��2�r���ls,��斃d.�V�J+dLj�h0lq�fX:��js�-�-n�sf�Z��q䦆[��2ų�ƍ�s���IE�~f�F}C�o+פg�gr��V`ƹ��!�E��8�����|�?���N�>�������&�[���t���Dq,pbE��5����FJ��U3.٠�]�
�խ�:��\��l�3��:�Ɓ��ol��vqt3V�K���}^C��HcL����?D�Zʜ	ʍ8u��w��`�F�%̳,f�$*�,J023�=���/I}����V�c+W�2�í�[�L|H]�ɷ�1g+r,b�����y��հ�?}g��}ߓe�?��M��(�����õ�e.����MG�ţ��8���%qw귾�_��6�uhG:�]�p���d����Z'�y��P�r��_��௫�pp��4��Rny&e�+�2�[�u�Zeb'x�B��E;#I��=�BL�'�[S�8�R����I=
<R�oj��@S�`Iƥa�M3���-nu�V=�8u��|��5�Ã�Q3䒛('�2�C�.ͅ7�V[eP�9���qW����jHf��’*�DY�`�p�<�G�%�ᖪ����ٶZ�u�ǧ$�`4hp*���e�z�C/���vX�Κp����}�m���&]3ʭ6t�Y��{n�]����HbE�K^\��U[��$���i�"�"1���g�q<)Ӌ�p�XDZ^p�v��s�e/S-p�+����>Y�Jz{�[���8�;���|�0�Q�o%�j�$���Wh_�ʲh�k���[;����gϯ��x��{���L�[���'��ԪT�#y����P�ڳ�Q�%��"�Ba��S)��{H�G�f��uLL;_f�v�ox6{ժ��[/�Z�̢w��*'S{\�6�5H�`�!ܒ޼rKCd~R�7��K{lri�ٟ�4�o�-��;�[��G6�n9�i��N�G����'Zw��h;^g��­�����s_�oS@�fnQj,]��P��Dq�=�jo�)=3��Ģxkj�#/�[����?X`���in]���m�@��s���IW?�uGZ9'�	�@bj��`j�S�D��spy\�[l&��:�*�p���4K��[܂,pKn��
.�����B.=W�(���J�=�o-���)�hi��V�(��
C~��[���h�U������Oz����fz�#��P�X���L,I&���?�C�eMW됴N"�ub�[�R�vWC-���2ub}������q���[�w��0��֍I���l�5�HN_���k]-�P�0JL��[|�>6�3�b���S�hC;ػu_��!��֋��������!��.�`�h��ĵ'J_�z�$�m:V�Y�4�ia�5ږ�\[�oujk��n�=�[�N�bI�v���k(���_Eh�%��!��6n�[�"�[Ǎ�@H��-�b��K�c�e�-�l��6�--uO5M���[U���ް
W�U�sV=B���#,�1n�>I�u�����-�n�[�q�[�����V\P������-�?nu˞��G8[ܴ}�&l#\G�����������q�X깻�����/�/Rp�d�KG��|�R��*�1/jg~P;�<�1/��G}�]�%��l��waSyʟ�D %��!~`O�(�Z��H*T��¬yց�^����!Wj
Q;�PA9?͹��Z]��q��*\VH�E7~�`K�j-n9mn�C6����[~�e�e��MQ~iu�u?>K�e�\l����R92�m�[�[~�9�o�bc�	�F��k�q{A� Q�9���O[h�;К���(1!�4�K��SNХ�B�@�[���̷�˸�t¾��5�)����W�\�	���,O�0Q'.�W]ݒ�H���7�w�gzA�vu�k>\�2�Pǡ��C4�&a��ºJ�Ŝ��^$Yum��^�uj_�N\�6���O<��ɮX[}�h���gs�3hJ�m���H��q�Ƀ{����	��m���Z�	�`xAȲW�5���u�&��{g�9��e��^i����2NG�P�K�h ��]�Oȭ6�fdT�e��T�ki���R3.� ���pf���Ví�/?��(�_^�2����L��4��L�*���Z���:�si�_~a�����#�y+W>����rp�^ёHokӺMG��D�]�Z:�'�'�z���V���T�I�H�E���,Q���B.R+�T�%;dA�C��&��[Zj򆘫Z��2�������?Q=c���͡����-�f�S�W0�l�A��$tɁ�[U�ɶ�E>wkm�P���V���ɢ��L�J
���+�!�.��	��G�˸�HU��a>�gn%���C�ؖ��R%���hu���3���hܧ����U78�郭|T"���t��Vms�y�83?V�`�`�5 ���"�pV��)��L�5b�`*��[íz[v)I�@wJ.k���4���p����E��H(9N��Qbk�%jn��k����r�v"�*��IO~2��S��I�U7��]�yq27��?X�#�*%�;�!�UQ��`Û?&�҂�Ng^nz[XO}�6���r���p�]��Y��X����B�n�Y0l�V�.�o��]���'u�ͧNul'i?
�~���R%����c���@d��+��u\�({[��Nj&�F7|Jd�s�g/�7���d���鈽�C��_ܶ:{�ʌ���z]N6pk�rp�,%E"�n�3}�h�*#�]zσ����/4���PKn?a
��do�|�W�z��[�=�מ���o}���|���**�O����G����߹��[�U/���m��O!,na2�r��`(vɿ�l(��깏洵�p�G������k��?2+��燻��Enq2u���<Š�髼Z%�J��z�XOVq͔�h�{��;ך|n�V:L�� 6%�"�Rle���%�+���&`V(�'�I�>��!��9Pjx*�BE�i?buWL�%�[�H�"ɩ͜;2�[�d��V�DKN@
z��B�r�`��K�-�Ư�x(W��S�C�H�73��p�Z�P�7-
�G�����/Q���Րא�є�PK.��1{�g`U�`����o���,�ʅ[pk��Y�uh�΅�Й�	�I�=Nsw��5�
�3�8�J��'��[�Ƃ��T�W��?���t�x��S&���ޏ��s�gvU���6fܖ�X�	���|bke^^Վ=Q@5ȬöcdZԉ�\���]g�vj�X!j	�ر
hx���ԁa[
P*���(.nX�Q��^L~�-MC���'���]?fP!dq�;:x-���pK�e�D�݌t��.F�	u��˯y���}d��k�>�ު�����g��
V�S'j�V�斴��I�Ll��~Y��[��t��=�VI��M�<�U������sp�p���o"�0KY���W+�	�7���.�o�W��~�E���S�)h���̌:����h���O���)�ҫ�1ϟ$wKŅD齥��+�����(Oŭ~��S�lYGZ��CS�{ZPЈ�O�’`�dLxB
8(�r
U�p���Aov�Ԋ�|�/Ju(�SB�m��ɸz�hs��?�i��[EtZʈ����M$
����h�%�oL���m
���ʞ�h��C���L��[����"U�|G)��T��!����6;�[���x:�fX�R_�Gn�
GF��.2��(��y�.��A%�����RnY���@֬�-���u�JÞ�`L��>��:���-�wMm ⛠�u�6v�Q�[������ea�5
��/�8�k�ty2�ty\�ɩ�T�?ۤ�Ú�N*��T^���=C-dO��rf�v����"��qf���UO��J�=�oώ�e*�t�g�����u��`q5--��Vvɰ�fDOtV���ZO+��V;h �Rn=`��-i�Ohv}\/qٝ��psV�ԥ����6��R�?~X�ō���SH�\!��vK�'��!Cѵb-��rV­����j->�׮z�����R�f��d�bK�m��ߜ]*���~y��Z'l�@�|��T�W������{�����|����_���������^?(���[߭��/?O<):+C�m����X䖎V/����ӨF�[]�yD�+V^HQ���X��j����ʱ��ޖ�p���,H��)� \���\��bnW���	��0�bQF���b�(Z��-�U$[����%�WnU���vh
�-+��H�e���PHi�Ep�w��*���J7��l|̀+;_%&�l��!�
Oq��lѷje�d������l�8��?՗-���?���p��0$��v)�@�Ԕ���	���b��?�ܪ���^G�p�N��fqc�<����f�����q|��ݷɪnx���	��p������C��,�τ���*�"N�g\6m$g]D�S���Dd���(Oi��c���YV�6���ԛ9��6��%�zj�3��2������u�9;'�S��vU�D"���-�b�a^��mk�9�%�JTp�W&�2��O��͝���v��#���7����0�Ŗ�Kd�F>O����'���g#����k�r%�ѕZf�
���:X��pk��ˍ���f��5�K*�"�-'ܜ ��y�[+u�g�o2��)��Z�Nt)N9E�Z�r1Q��a��)Y��:v�Ōߠ/���ֿ��g��돕$b��1ُ��/�\l��׏�	���}�ٯ��mb,}�ޯ�~�Wq��Zb�%�<B,ͬ�֢b���]�\�t�h��Os�:q��-�Z����n���Z^\�?޳�)$]�p���P����d:�\��(T�#���Q�G��z�F�[��
�[�W�OХ��"UȗJ���;\��~��oE��[Fx
�T//�B_T=Z�OL�[\��%�B��Bmd�p+B�? �+D�}g\*��2�,��[�-�D���?�~��Ev�-�f�Z�'�GB)ɥ��ʭABMLM�ew�,���8�,� ��Ԫ�V����V�5>��tOIq����;o�'�?Q?9�U��l�3᭽�Q"�3�\�V?C��u�[g88����`��آ��g_���qL�Y+����9�1߷3�ѧSΫ�e�k_MW��gJb��z�˴%v�ܶʼ����Z�֮��Xe����7f����.���{���l�ֽt���%�>T��V��ٳ"W��u����O/o�[*r�Vv�@��;?���P��#4�&�R==�ˉ��E	�%�������=�#��'����fY���"�xd��r���+�[����-�[&�I��+_I�p�0�b���s~�_l������_�J>.R�bN��[
.�LB����m��^޿�ܟh�/�O��5ț�h��T�ܢ1oO�,���Q��h�����y���0܊;3��,i�.υ��l�㇢�*-��\�Ep�Q9�ry
Ph���@4n̝J��É����(��VZ[���^���q��.�$+,�S�;(���IK󔉤[p�<�!�ٴo���>QX�C�%�-e�b[I^Ff�­�����K�b0/V�%���X��5��D��(���
Z�T�(�\}�X����rRȉapU��|۵�N�$H�����(�#K!��Q�Z	��qi�:���3�W݌�Iw����iC]��$���a*i����֙���x�`�8C��O1�Ț��۩�$^��ϝ$���]�RgG��lQ�_g��A�#�>Ҹ��`����x����ꎝl:�yo%�ԟl=��c�է.���sk$w�f|����{�BN�Q#��zk��G�4��G��l��ız��T�PV�.�֠���Q�a=/�����O���O(	_3�׈�]�����U|�-�	�?o��p��@|�T-喂ED�kQ����)Y��	�H���--�'��d����c̕߄[p(�-��N�kt���r�#����\v(�>o�����ܱ�.�o}���b��ږjyj��0�����[�#֏j�S�3�tKep+�l(
��ҷgwN��Y����;�
�o��ᖱP-��i�˽]!���F�X5��IL�MR��ܓGsv >w4��앆Z
.O���d�E."�t�ln�(O��j��e�R��r�T2�5B����Yͭ�t���⑦����u��KF}��Q\p��mX��s�HX���8.<
���|����J�!��^���f������^��4ߢ�nB��-k�e�e����j�-;L���.ި�|�j�Fms�_�	��%�*�n%�E�U>SdYx�'�F�xC��g|�,�� c>��<*#?�m
fZQE�d�qb�]jH�%��0܊�x�t�у������k1��hGF�zP�6b�E��/��u���kj.9Y��}���L�vP�e�lQ���vno#��r���q"����nazlݽ^o�'�y
"(�kE.z5�%춨�~r'K�eΎ�KmxKJClreFQ�P����c�M-�p��9f�~�ÆP|�n�|�ҝ"�y�T�\Z�j�iY2X�B.�����
p�ϖrp����`KR��/���nY��~1��ǚc2�&Ch���[��^���J�NU�.S�2�%�ӑQd������W�-�[mlȳ�F�k�[��H��}�?Pn��\�oRc�n�1�XAG��f�ϻin��S�,�%��H;����c�&\��j�q��D!O���x�]�ʾ]��1�	W?�j��|(H���ZvaU-C0_���Zʭ�����D��
�-�l,n�T5ȫ�I�������|�p�钵�X���e��B�L��22����j��Z���v����v��V��ְ��e��S�ߚ���\�L7D�0=AA�\XB�-67қg3uyY�@~n$h�$duY�H�W�
��o����kL��.��*
�)�?�bM�����3�KFQ����\�V^ޚ��hsK�����T��\ƤzOw��`Iu�'�9jE��Cޛ4�2u�=Q���d��%���S��ʋWN��G[Vw����m*q�-z�-�\v�0���?����1�Oc�CE����w��V���8<z\�,���IG�V�(�R��oĤ��e�̭y@�'f���
��3�LԦ��wrK8��,��!�k*��3N-h���P>|��gNֵ5���g?��4�2ܲȥ�[��Э�
�ܽ��/�˟��JM�Ľe	!z�%[�G�%�
:P�Z���ȏLW�H�d�u3��S�K\�Q���_߾.R���Gn+��@U���y1ο=5�.���-�Ddž���FYS��Y�����XWCx1�U�Y��^*��5sIX�6����o��LnE{+Y��Ӑr.(�Eͺ��T�ᙷq	�Ⱦ&�'�Ri�P�L�2�f��"1��_8�J�K��'Z�-�3]nz\8�I�艢����*��^V1���4�+F��jҥ�f��F�xi����CC��ȭ��`�o��I��%ID'�b`��r��p��<kb�Cq/����V(�CH�w�w���%��U��P�l�>ٟ�), g�z�s��­|㐷�9�-bo	
d�F<O�h��$�^	�그�PU�'��؆�Y��5{_|g���Z�K����%���z��S�w~�6��[�k�V�lU=�r,�\<�-n���Q�M��D!�����
���e|�����R����ͭ�쩖��t� �p�����r2ҡ�"^���u_�*;���n=D��&�ini�)�|}���)����^~��T�`�[\��/>��֛����g���,���;vE��g�pQ�D4��wi���s�����)xw���!�(ܺ?=��5��^Sa���,Q4�0գ.ݍq����d�rkj��Gz�|[��M��M�S)��J�A:$��k�'����l�@���x3�s�.OO_��_�&w��E��Vde��d]�0��!�}�Fʭ���/�	q���
7��a�HqT�~�������D0�y�=ˤ�B)�%�1i�GE�+e����b �ͭ���F�C�xR'�9���,��؁�L�G�pK������U��+�Z�ԉ,�kG���Ez��Lח���-_0V6�^q��[|��)��'SϤz�U�r�ћΠ�H�g_�Uíi�cZ�f8K��y�����4w䨸�}|�,f~'_9��ʒ
��[?�1�UStR�W1��3����L�#�'s�.R^_��1:��y�ʢ���W_�WI^�v��h[J���O�y���}3n�u�H����n��V	�`q��.������D�?�Wɦn�&����-�YS���z^���:�B��ba����;/��~����2��ޭd�]��L��!��u����+o�-�U²�1�֥y�
9u>��+���y���Bu����׾��7��Oj�ki'����s�����z�������5��p��K���*!W�_�K�ҽ
oS	�1#'�A��w�)mn�I���`ͥ�[F<Op+
y����c�4�;\�Rl-K��Vb���/�`�Y��7��/�]@�U��
��R�9��k���!��V�>����r��_���(/,��3e|�PA�d�*�ivM�-��:���Z�1���d2;R
�d�>��]q�U��6��>�I�ruf;å[E�g���W��2�-����[�s�0i�ɥ��pLuRe_{�Rv�Ӡ9H���:4b�U��%pK�[����I���˧s'Z�)pa�F�9��=���(mp�x�u�����I�Wrz�!�#ܩ0��\Vj���ӧ�ݖ����?s��aC��#���w�wl؝�*�p��T�Wwc.?.�#��{����mܺT����@M��C�R)�x��Y�m3�gO��i�QC-���mE
pK����ś����~�و���+�d�G�%�R�fB�ƻr�Ȅ����a�,�v��C1i�o��K-u)����\�:5�����X5��i�=`���2GQ��g�����Ĺ�/��yХ�W�]�"����;ܱ�{2i�\|��}��E��Gݕ�w�嗞'�^m˯t�'��`�aq�"�Z�l]
4�58e��M�9��h5͈ۘ���D1�B*�}��./Wݖ���oM���\I�ě���ٰ�h5ܚp�$�S�y	�2"'��6���<���)n	Fr�a˼�DC:/*!��\�V��+!�PM%@���*�y�\K�U_�np��E�e����%�
]�õ�y6 �ҎR<l��B��
���x�o�[����V�/�4s7[�O�5?5W�ԝYpI=�s>�NJr�vIk/]��v�E�n�*d�7n��,{ݓ�na)?7Ӻ�U��.̸��0�-iy��u�i��p����@P-�L'a���w,5�\5n�[/ra����{�	��e��JnU�4uor���w7������_(�ޞ�a&{P��:|��&O�."�����޹r0X�<qx��γ��2���V{�`kV�۴��>MD�i�u���Z�*�׺(ۏC��P�+��Z�q�ŪC���8��&�z,	YFH�o�/��fVzq"�K1��Y�A�h�ekN��es�����Yd�: �2���q���3sa'��?��oI��ׯ����cpb��%���I'l߾�{�1O�{�.�o�W��A9^����[���<K�iݘ�<K}x�!������x)X�"�X��ڔ��
���W���-,�c�XJ0�ňO�k��y���}]
q�V*���L�ô��rANn�t=�,M$���A�C��T+�,���V�2��Ů�-E<�C!��#��e��
�xa��v�@\
�<:XM�2��8P�DŽ\�,���V~�/60V]H�h�*��-�V��χhMI��7­ݻ�̯�����CA��I� W���8ͷ�Ղ0EWܬ�R���Z:�j�V�[��օ��I�W�M�Aܸ*��2��B��8iXn�l"9� =yl���[��xn�xqfzjd�n�.���q���8��S[�T��U�U��G_��!V�	2�s���Gkq�Z�Vp԰�t'��^Y����%i��e�ge�y���a߶�F�M�t��Ҧe��
$W��&�����"�$~�	b5<ly;�/E#q���[\Ƚ��Xo�1Nө �Tј{�|�t+��
C�Ԉ�I�71�Ċ�p�+��M.��0���꼕e��O/˯��0��B�C[��޺s����K���z�Ç�'ӽ����F�}�yj߷�V���5����J+���Y�	���ܒ�U���j=P�7�*!/-,Y:Z
����:��؍-5����W}4�\���h�L(����?7���"�"�b�&f�K��n/�VC�-}�k�;��5��j�O��(j[^���"Wh%�>q�,�o�J�M^F�E����4��1M�@�T�C�S��)[ԠZ>���ٙb�?Z�Ӗ�R*cP~��e$F��
2_Yj�…�ʭ�HII���ҤK�p��D�|�a�RGG!W�
]�φ�3�e�c����(غ�����VP�8��Ii�]�L
�����rKL �C�;���L}"4qa��j�b�ށ�\��p*�u��]`��S��my9�x����+)!�j~�\$���N�
���j��p�{|X��zܒ�z{���Y/��K(���dz���y�+k��^�|��4��GMsK�[�d���R&byk��l�ڌ���b��JǍZ�l���B��c\4�Ͷ���uM/N6�n���㈬����&J�%ȸAy��a�
�a�Vr��"fU�2P�ܷLp��
a/O������3��xc�M'�5=�䷞�e�9*y��ƽ$\$[\[a�K���+���a[�p�\ӍyL����%�RnI���Ԓu}���c�v�e"�cF�c^o$ߪ��_���|�e�v��PM�%>��sM\t���
�^����
�\_��S��2���@Xf����Eh����^:�҇��~�[v­M��R*�P��32�C��\̶�YB.���{�9"
f~�GM���k�ɧ��d������"���	�"��JKET���dz}� ��J��j8h���߂[�.M��j�6�2Q���,�`k�5e�G�	���$�����%>63���Y�
������
����HGA��g<��D]\�͈�|����qr+w(w����qW������+�_�Jl���ujW�Z'�d<� >S�b�-�[{:�v�$��1�[�D��Ż�]b��w���zq͠-��~I$�骼*��=zpMU�_o>u��M�
��o[-hN���o)��Q�<Qat����4��`���h�Զ�Z�ȅ�c�I��z�ɕ�k���\/��<"�ABo���σY�$�WM��6�꽕N�@*c�n�k��ׯ7�����X��g�@����{&�T7/i;�R�����B/!�r�d\?�'�鄥���֗��+��[�wn��-K�
���Y�֣��[����	Es���2�#�z�pa�:R�:�?�1P��|�뇔[� ��o�EY��
�GE��)��
%P�͖��@�`h9Q�G�v�h���L�e/��Y�Z,�G��!H���>�11���24�yc1����H�W�4�"\�X�5�`�����on���T���X���3�n�pKc���A����Ez��rk��O�$�-�Fd�'���ҭx��6s;�Z\�ֽ����1d�RS®v���zQ�hR�-�v<��Z@��
�Cɝp�f�;��­��/.L�R2�8�it7zZ�H&�['=��#S(Pi��a�X��l`���;��oq��rO��c��TW�g߾N��	�`�x~�!�.&$�EXGJKQ��mǚ���y�ɚ��=Na������-O=8'��Jc�0�����P�S�b~ؙ�`��JwRs��K�Ta��J%	�d�4Ms�G�9�p��pQ�?�ln�[IC�z���X�X��V�-C-�{4�2�"ZVK�����­�a��bW�����Nw�����]Q�-�����?�9A�~�[��^!�Z�Nr������|��A���b�-�ԇ�5���޶t�Y�C®{d��C��]m*�x����j�t����Wy2��->.vV�k�^w(�<���4�T+��w?����/74?��������u�ƪ��j�D��蝉�;ﭲ�"��o)�T���eO�D8����dq����5�5�����*R,���Xn!�(�����]yOe
v�o��f����DKl͡���+!�jj�"���pKu�K�����[��N��P�Z�,�������ݗG���aa�-ɷhi��⁂����;)�Vy״+�t�!�ɭ��E��5�!=G�F�Β��C2��Ѕd�����:}����5
�X����\y�6�E1򝺇����:�v�nq˞�vR
	,:y][j�,�����s'O����ܮ�۪�%{��{G1�����p�n}R�,����a��a��q��)���0�:Qv~a�,C��)��dܫq��-�h;?�
ׯ�O��t�~�##'�"2Dm�����813s�p�^��)�[�2F��-V?�v^	�/��v���1��:�7��F������-�l47���_�R/�N��_��Qwn��Ͽ��‹��_����/�;��1�-M��c^ۻ�o-����r�Qt�TKF�I
�ed$\�-N����>�}M�-l�2�iA�\S��0m��$ے:q*�x{nM��g����7�%�4�X?D//�#|޾��ҥ�R�fG����Xzc"�	���|a�[�@(��p�ܪ.
��4��\.�qYc't�,М��ӏ�@s���p l�E�堇R��f�|qjVp����rn�f?�Z�x��K�Yo�t���-�=�c��ILj�OK���=�}G�8j���7��w¦����|l�O�'���->3>��&�ɷ�s������\��M�T�454��ݎ�+y�~�K�G'aa9�2/���;�Ć���ڼY&����KC}'e+��e��O+�RV��l]Is_�L�0J��:��*,�aWo'�@'7o�V�ܧ6�G�R� ݢ���#ٵ�D��
/��س��~�R���k���a�K��?}I,��u�����<��[dB*��)��Q:��-�UkyG�C�8�+2�A�q�I�L��0C�e��`	��XU�/�Rn���B
q��D������S��6E�=�c'�=�+�Qt�����ئ-��^�ɘ�T��֗���8ig�P�5�8��U�6��F\
.Dz���1O;�L�r��8�P|_�����Fim-|ts�uݦ��0d�&���cMVn�dz%4��
MM�;�����G�ʭ�*�9�-vLػ�L)��4��jn�;��D�H'\��4�R�[as���(�[�Z�K�󐫰���ƕ[t���� ���ˣ��3�_}6����
��(�t�o(nTu�͡ᖝo�f���lx�k�[b�U��'�߰��K�r%�i�ݨ�oߘ�U7'U��a�'�wO��y�;�wídn*��akS�I,kd�څ��8����[��Zs9"{Md_Y�|"�Vq���:�:��}ٙjF���RK��Y��VŞ�����-n�&���g;kd�S�P'�GLl�$���j�^$5�yit�m=��Dl�؜n!�2lj�h��L��q�ȩ�&E�k�Zٵ\�Z�����J!���˘u�(�Ɨ9lԐ�@�@���ɠ�/=-!w'�t�L�)��x5i�w�N�1lj���p���_������2@e���CH�C*j�_����B��~�c=/�.��`�h�z�q
��ђ��������{��5;:���U��f��F���|��>�[�[_~�8|c��\Ŗ�l\����Y���=
�r����}g�1O�K�tM��l*njow5,r+](��~����o��)�z_�Ť�N����!�%A�ǝ}����H(��@ ��p��?�̗�1�n��z�谈�ɔu�b�-ޤ+EF*����!S�p��`KG��K�E.�Vb�ZԀnA.nmpMh��mv�JC��V�XoP�E �-�5���vN@=�a�:�W��/�hlli��#�
4kKK�Yc5%5�NTp	�\�/*�M��l�,訆H�&��Y�#���P��Q�X���������\���?��V,�����$�م�3c�u��@��@Ϩϡ�P���� �J5zDN?8"��x:�'���u�Nuv�n�x�َ,i�g�n�-����E�/55}�һnKc�&ijQ���8��3�>�\��hW�	�֭{w;�llTx��Xw�tg]__���U��Y��{�[}E�Qo�o��V+��)���z�Fr)6�c�a��f8��x�*�y]���e��ܢ4Tnq���[����`:[+�t�{��02�,ͷ����L�����s��od��.�C���(r�=rt�F����ݡ���0)*���,�%�Q��#���5;�䓯oj�~��:��#�Ⱋ��c�>���R���kW�C�)+�2*
�j���b+��s�Op=jT+���1�ׁDYI&;�e��`8R
��4�����G�毛SD�e�K�~vbYn��&���_���ɬK$�����V�鐪 �"�yU�Z桥���-FMhp��)���t�/��u��[�[1,��@Ax4�Y^���pk�nQI;��ų��V�O�W���Pq%ed��;.��*{�u��t�Ñ�[v���^�ҏ�m�)����`r��!���4�4 ��v�@�;�b�!��dI�~F�E
�l�x�KJ�[]��kp+/c?�֡��Xְ
�W��=�H��19%�¦yl�$�X�IO4mE./�{����x��	|t�a��'�$���i���_���sp�Ľ�ٕMc<.P]�Ͽ��3�a���>���
��F���zC�[�n��о|:�Ҥ�6on���g��m�������U�iH���2=.:aFJ�ȧ��%��U�r:�)uk������p�fd'�Zp��D�������_�OaF,�J4�
�H_���S��z��@j�}������a��������
F�:;��梢��:;�u���
�u%j���򒺻R����,�[�Wp�Cí)í�e�A�[}��_��w�(.S�@7�6�.�*�ȷ>���9ա9�5�f��XX8�P�^��Oќ����/`q��[�ȋE�N~�e5jىU��{�	�O�>��X�tH�|%�RGR�g)�Bp��:��
�T�.�� ���⮈/wb���.����G����G��l1=]�YԴaJ[�΁�ޡHq�]k�[�x9A}i�%�-��E����U����(/*3��T�StْS}G�u}��i�w)�4A��/%38��[���Y��qܢ��y�L�&��N�C�t�}�^���2�y��|�k�3!�+޸Ȃ�I��pl�$��R-�g�Ų01���}bo�,D֛�,.ʭ���:+�L����Zd[4���k��}{�sh��% �����8H�q
s����@�EM�ɧ�`�F���J���ƣ_C��~��K�+Kf5,��Q��q:��K����ԓ`+�VP��˙����|k�c+�z|��*I�VҖ7���n�#e��@�7�tO��Ʒ~#W�����]��]_[;@�:�8�n*4|~��=O�%�z��K^mMǺ;���!�5���a<VW��
��}��^��=z����^~`w��Ѽ���ШU��|��Rżͨ_}����#��~�Uni��֛��Z���/�[��熠�D�U~�v|�[���_�yȼ����x�e�����3�8�t=]KģN�1jK���Mz�=o@
l-�+��C7�+p��үo�[����NR���[!�VL�#܊�ц(�\n���ˮu��/&}����,�$��Y&���x>I��>mib�P�g	�(Kf��
�&>�4\�oh��,��V/�-%�� x#,0Mn1Z�~k	��:���6�Pr�.t�T}8n͸�'��4��@����n�x��Z�Ud\p+������c1�f��I:M���F��z�1�G�h�Be��O8p��0�r�ѽU���n�X�ľ=uM�M�+^�䓞�w�&�$gV��[o�Eu��,���e�hi�x����';bs���0 VY�(�9+߲��&����ԅdVZJ>.���l�E������΃c��R2~����,�e�#��Ld��0K��r�ZS0>���N9N�
b�z,n1�̀K�EP��G+�`�p����8=�ƂϺu뎜��ay������=��^�[�.!�ԋ��������U�55{^�974�I19�;�MENw�e��W����6�>��,�6F�V�[t؅[�g^Xf&}��N(�Bu���l#����ܺ#�\Q�-�4�	u��.���
0�Z�ir)�.�W���#��I�z���j���ƨ�"��[Y0k�,��P�r�/	C3f'[Lݛw�Eq�Q�z���V��|�Y�#�
6�#��{�k!@��s��'U���d-+u��!��d<G�5+�SI���+�
�6�ܖQk��U���;��.�
�I�._ҍ�[�pK‚�JO�G���u">܂HS�inٷt���$]|���)4Wkݭ7�?�b�E`�D��g.�OP.�]�b��I6�&��ć��$l�<x��udJ�%��˒����N�xB�E�xeO��̇(�6�I�e⩗.����]7�S�Q���'�,���*�ij�c�/�x��@N��$��-�)��ٞp�v�DP��pp���2��El	�䜎 y�f1���`��8�Rh��$IŌEĭ�E��KX�����G*�xfJ�c��N$ݲpŭ��M� ��-S%f�bK�[%W0�R�S�%�6�X�O�A筏���Y�����pw{O��E���c���K�K��$�*j8�w�\vII/��Rn�����x����Ҝ:�$�-�|�ZZ�ԉvp������5�X<�#��i9
.$]ʭ;
E��Ȝ� J#�"�-	n�v�:��4ZƖ�&�q*E�}DL����Y!!%�a�y�[�W��*G�� N�!;ԊD�;%��-cwj�uV'
��`�W�S;@ 쫧ϵ�s�5�A�o��$�!�/�nEc,�`�2��
�-�Vq�]K�f��;�t�x�Z�]mަ����B��o�1���ҜKnMkȃzk>�K�[�oM���+�…z�2y��­4�L$�&g����p���Đn�:k.9#=y��p�|�-�j���N��L�45���B)�E
7�?��?81|���Ύ�]W�[������z}�^�1/��+{NT�(��j��KS^�I�g��LV�,���NO-�"���v֔�w,v��Yr5�}6���A��ej�HȖ�EwyY�[��0J�Qd
5����LU��g�Z������PQ���AW��t�r����Ӊk3�[�lb�Zk�'�2��?�+��l6
�,nmT�{8J���nxXE#Rv����Σ��4P�Sێ�{��t�܋c�5��OV
5�e��g\�7$3�����[��^�V-l��-5�\V�����ވ�K���[����SpK����*O�� oskg��ElY)��M��ѡ��<!&m
Nz�MċG9��k��!��M�U,b��SC�S���W����e�d�ʭ?Uj�=�2�z�h5��+�����(��:6У��M.��π��FK�	՗�0M���#y]b*H98)�m�|�ӏ;�j��t���\:����k�ZFhM�ɻ� ����-ѝB�.�4�,�ם�@��n��c
�#`@���,�6�ϕ'�]��f܍ӻ�BԄ�˸A��u�]0�+���gܡ�<ʙɞ.p��y�t�U�*��P;K�XdņW��l�8_Y���OwwP%�7�.�k�W����Rϖ�«�������1&cֆR�K�.��N桏t||�x��
o1�6�b��b��/4�E�m��G���^�G�f�r�(�b
n=,6�.����|:��%�&�v�RZɉ"�"�QxY[k��W=�%nY[�羓[v��)	�z�,u�o�/,(���P3���i/�y�����J�p\6��sc9S��������Ý%N���j:��מ7܂i���o}I�Uk-!��C�Eza'\](��-�ꯦ��j�V��tqxQG��z�)�-{����V\�ʭC�5ͳX@v�E
���"�,Q�,��$o�y�E���2�H�/�7
��M��4��7�w
��Q�e�	�m�1�aW�h�/�颗����/�.c8J�h#��Fw�pq=�	�C4����Aآ���!E��Pn5��B���yV����XE�ܺ�3R$�L���$z��!�V
�%T֙��e��h����u�í:DHƕݷ(�L��}��ܚ��H9������x��SWa�pK�52r�"������FQΔ��1=�*azf|����?�s����]/�"�[��2dm͊��wp�Qģ}b�ߟ=�����[����ΚR��J���|K~N�짟|��k`L�u^E��+f*&�{?��^�0ł<ilp-[&��4nB�.��Y4�3�#9�C��B.�%�>��mn��`���;9D�Ɩ�K6U�iv��L��
5ߢN���R��9r�,��$�[��l��<��X�X{���?�N�H�(IԑvM@
�zG���[��nξ<TTs���DM�o�[���������|-�И�<ˀ�Z�AV��dq���ȥˬW!�[f�Z�[�\�Fax��W�� ��)g�𻇄[8�&�_�/���Cɑ�o�{�ɍ�O�E�d�q}pVY�
��|��6H��j�c��̧`���zOg+�$[6�X�hu���-hU�+�`h-E��T~�z�(G4�v�E��^̸�>�8��s&����~_�f�VD�,�`s�-��(u�[�M�X����jt
I+Zq�]+�B��4�u����-
�[K�D{���c��
��gH���ډ,K�L	�5��4qJx���n�^�����J�N�-�U��&D�*s����[��`��][�:������-VQWb/on}��?����{���F압>h �j�������k����?��c����E��1��W����O���o���������RP5�ְ�!D��՘��dE�i�ѣW���Cf�d������[��nE��r�|K�[YK��,�-�[9�(��1K�[�kK�Es+'C��C�!�Ӝ�b��S��Z8���p�l�{���(���
�eE7m>o�����vd����{�{���m PS��f�{����D/_k�J7"�[in�U
.�me#�S���h��>��E����ō���಩E��(*�1�>q0Ј���	B<%n�/�_N�
&s�����t
6��[�.�#�ٰ!;/�'��~��.͖�+�ȭ�ȨF\:Rr��E��}z
@����#UJ�~Ϗ�
.C�\ҭ*�n��v��pq4��I��bA]8�����;�wn+�b�vW�~���t�@�fY\�ũY���`UN�E��訩	�oЬk�/���rk��
��`±4��&'�-��.��O���Ȃ[�hnM&��/��w�w_L�O%����wէ
ܓ�vR沵��s��}U���<�I֐��:p�bׁ����[��ʓY�~���v<��y;�׳�=�v����m��DS�t�8��-}[�r<���yUyE������HG��'�z�/९T?n3j�u�b��+�й�[&���l�梅"����Ef�`�"܂\��6;�t�Goa���@�p+�'F �#�&��g��S>t[W�5^��hʧ�����
�8�4\��j]4��3���:�S�G��Cۏ��a�Lj�E����<}x�����yY7Š���n��<�����֗�'�-�S�-.�������\;�V�u�9P<�ܲc�*O�^si+�i�A.í��5�ڹ���:R��'s�ܒ2
�=����@,�l�=��$��3vck	��ɩ�,�
�smذaeN��K�Ei�c�a�C�~$�|K�]a-=�p�t���}���ð4$g�j�'q!��[�'�H��Z�V�7n�H�͑��	��?�#�[�*��3A.�
}�n�V�q��x	n߇ikA�5kjx����fM�4�4Ⱥ�1�
q��DDu���U���a���}�-��y�J�v�]s��n�m1����\9�Rd�q_����S��-�\W�{f&�W�������U�b�;l*H՞=�u�VEŋʭ��[�5�u�q��O6�`�n�dz��-eOS�azR6q�Rѱ�C~$�3ފ��QG��&��%���}
t����;�J��|K����j;m��*�o��UZ�L�1w\O�%Cg5�����Ó�(��H��4݂[y��*6�䍶<�ӉV���oUm�>t�C�4A���rgN%Լm�qNs�u���.ܪ�r�gbS�X�+�h�hC����u�{���d��ɺs%�u��z{[�N�r��8¥96<��b�-�%}[g֬��Ƣ�� �����_mnq��\pkq�ZB@�����F͸ph~��Z�F�E�؈Y����MpxIB
�����h��/Kt

���!~{�?
��l�)vFÈl�\<e�%�Djݧ�"3Q��B	&�j��g�c�eL{Wm�@B���r���/\].���^�H�BQ�~���xfU񺊑����N����P�)Ni�Ѵ3ܪ�e�rB$Z�h�6�"ԇ��*�o�G������-�`E�i���)�f]�[�.K�E�h����zH)f�G�o�_�f@��/��p}�
ɶ&�����ԃ�7S�kЧR6&
\��&R�̒[MS�Sb��R�.�����­Ƒ��᳛�V���+?�:��r��kȷ4N1�H0]wt�v�k�@t�Ȍ�2�����f �v�ݺ�ω�[��v��)���v�
�hc�OC/����`�dr�_n����Vl�(��$�1��հ��Z�}QBHZǶ^�GVl��‰�����l�<n�̓���#�B��ȭ���"2�;�(�yc�e��W���闎uJ+xA��D��[Gƀ������-�uЪ���/����^�XO�1�2�}�n�o�e�K��^�jO.�=�m�m��-;�p�6��[����7��E�%�xc	a���Ep��b�z�L.�ro�њ��L�^\V�L��y��J_�x0^������C5.�9���$���쪪"IR�k͆�|�ԓ�*�XA1n��R�	��hsKr%g�\�Č�.�����Rn�cXGSM
�z��V.��+���U����}CԖ�HT�桒*Q1ʔpMUC1�_%�[�*�J (�V��`�~U��.	�!!�?k�~��K��v�ϚxԞ�q�ܲ�Y����/���o]��5~�SM�Lí�ۇv���1NS'NN�k�#�'�I�U����HY<\8��D�k��0݃��Od�����.2�Ƃ��Ž������Ec�k1HJ�����\�r�ʩS�v>�K�Kck,���?E�����G����Y�_���K�+�(ʋ� Y�+��c���VRDʒ�*�Ⱥ=�[
򋏲�PK�}H����x6%�:ͣ�錋Y��)B-s�(�1$���%�p	�2\}�B�e_ȳ��q�1iV�fUo�|�X	�]!c��J�e�E�K���R�#�?#>�]�6������
L�p7|l�3Mm�2��U�3F瞠:lo�K�׷��
B�nS����[_���.
�yݕ�h�+�\*�����Te/#s*�[.��t���U��]6�@�՘�ވ�����2�����v/\;�nl�m�d[�j�g�
S����4`��~$V�g�d4�ң��w�)�6������̺�t���9����J���&�@��+��+E�Wv��y���Y'��A�EG�WU���~D��%��3�p+XUn�������!�
�,n��-5�y�����jTe*���5;�d�䚢xDB�u ���2i�D��o1�b�eJD�*���f�՗�u�"'��F�ヘ��
,�|R��6���]S��o�Yř��h�p��d�]�Y�J�UNO�3�$)+O��_V68/�:�kxlxߣ?V����r��l}V���"�V/V+[����J��F��8%���ټ�7���;k80�*�s�
?IP�>�0�9%`5����EP$ni�1M`�(,���zjN�1�4�r�8-/�N�0�S�&\��}Le_"b;�D"C��!�>isf#�0蒵�b�l��2i�,�-=�����f9�q{1D��r���g8�?�!�z�={:�x��z�>�=p���s�'�|n;yr�7��`O"��>��W�~���y?�J���p+�o�Q=Q�5�["Ӳ��h��r��,jYB�6��2�#D��[����J	1db��G쿸���#Gq�2K��[S8�8��8�̉�����0��8,��U6�������Uy�d'�
�e�_꾤�z��VG�� 1�bP�f���
�̔�ԇ�*��w���f��\�a6�I�
�X����R&jpx(������b��HQ��|�1��kĉ�
UDC�ʷX�]����F�I�m�h4r6H�d�+�pkTzZ:!-�B�m �]	�v��跂�i�l�
y;d&ۮ9'$߂[��d��C`ka��y]p˅Y���qӶJ�noeVq|n$�ի1����2M]^>�<U���3OY���Ô��y!m��Pϋ�n}���X$���+��.�wh�^��-�D�H^d�-?�l�Ά�����pT�ʼn�?쬺�S�<O��_����Q"?'��]򢖊J�E�x����ˉ���R䴟(��2�X�͇�|�¯�q�"Q���[�-Y�!�[%4�P۩�ɷL�%�rrI�3[�����I3�G��,�b{KJ]5~��\��;I�I"�UUk�g������ڹg�[?��e=܄��<��[P@��Q��F���
�]Uu�c;.��/�įZ�d	pa!�!�k���"�֯r����̒�F�PL�#��<��P�Zz��y22d�^œ䆺����Vii���~�4㹮P|>.uB4�ml�Q�Z����]���<����t��F�`KF��^�T���)p�Ba��QC(1%�6/������'��,B.�g�d[`ˎ�0u�hb�t�>�E��[懪5���c�!^�R��[�N0�&���YeM���g�d�\+ń�aq��<���Ҵ�Y0��n�=ѬK�Հ[&�wM­X�oB�uq�¸;����~���b����<�#��u�)R���H%.��f�+&~f���ϣ�w�R���TO�f�D�u��í��=S[��6�[��������]�`fQ_s#?
gC�3����}[�*a�kx�®���ȄuX�Q5����-a�%
��7��B�D-p����pK���+�`�M��KO�[�c�p	����I���ZbvJ[^�ɛV�6��Tڍ7��Z�<�ث�b�Zѡ�
�I���oV�=���|���ʶ���O_�h�P���E��%U�m�����Ш��b��cck*�
���+�[�E/��K�����Q��vx3�.~1D	a��x���v�� ��Q�Z�<5�R6�O����p��ƶ�BQ�-�GC�9�V��G5���p��N�$\&�Z��4�J9d�TKх�X�F��r�%�S�n$�r��5n�
�8�sRa��F1��W���B�JY�;��p�WxG�m��*�$X�
�s������s��L�ȏp�dc5�"�mb0�\��]����y'�Y�f
�{����̜�)A��JtQ�tY�rnͩF"�aW�#����E�C����I�y.$���v�N���,e�zff2)���D��0��z$��33~�����rG������J^��luO�������4��گ�j�+[�;��Pn�"`��e;s� �ĺ�'"��7���yL��g��!o�3O>��o�!�\N�F'�W�
�e��+�Mf�=��� ����S.��;��]�#;E�I�(`���8g��6>
��;,� ߲��]Qq߅��[�&��v��1����ޝ�M���/�
��2"�ڡ7�ž�����-Z_|����
�­}��Z��QY�6V�Q�븜��D�����@șSTR;\Y㝨�\wq�K�N�Ѳ��w�}.����8F���|P�2�pc?���<&��������S#w�lH^0�\�C	�]F.^\�4��in���M�P�Ű���d�욾ڞ������kV�kz���[�a��5�k*�}f-��
k{���V��H5�ck3jNV���m�o�n��>�X��rS[gS�Ȱ1��?��q��{kű�%U5��:���-�}ӎ�k�ʯ�樹��	%���e|�<}W�)V���)E����c'xN��'��"2��Le�'���ןE���Ȫ��������^=��sL�J�bE`Z�MU�gyE�6�+s勓ӲJ:)7| ���62���m�z=��@�NN�|�ڱ�-�Z�s�Jvx=�3�����˽b��:S�ˌ
-,:�Wn�Mx�dYnwY�{�߽�������wx󣛷�S&>q��?~��[��_�fß�^���2�#�:�>\[_����>}v׾��;�a���'NT���w���;�����|^NƊo����符��+	�Q����[�>��-y���ǐ�њ�z�Ok����|�������׬�և�
W�l�kW��]���?��t�XtK?ŵĈ�O��QYÿ׆
�<�j���We�\�j�c/���߰���˿����c����k�_�Yi�^��vE�>�y\��������W��k�|�|Kv�r�"�ď>���g��9��c�<U�~��\ɓO�>x���ٗ�<�aM���Oׯ�����':z[z�O��+�[��^���?�����?�_�?���-���h,����������@���w�#�����_���uhܥ�������:����J�������:������>O��[_���u���[��:�:����?ص{�a
�+��W��&*�Q��P�=0�j�gK

\oE~��<��'����H.%'gQrQ�2�[p*y�o���LY�B�Ke�D?�o��-����~�e���Z$���0ȍ��{�,1s�M��3~�n�~�/��D��Eo���&�CJQѯ�a��¾<��h�Ɠ��>m�{���G�p�p�ȩ���j�e��~�#� 9�_��s+�,��o�y`j��[��`�-��2r��}y�٥�_��j
��n�>���}"������C�'�Q����H߭�l�eO�UM
�oa_�2��WKnY�W�ro�"����_v�X@��p�9�=d��R>����BbHA�
�og���r�f�זL�j��3b?�z�^d���[�4|��nCFD�����u){����惶Ij��{"�7?ʷ��Br�E_�3���[C_^W+�����M���Fpm�����AU�NU�����QI�K�xo�o��d�r��	@w� A8%4�R�Ѐ�9� l�;LA�88���V5Jrn�?Tk|8�	l՛r�Ѝ9�� ����_��I= ���@�ăc���Zi��>^��#�j?kV��HXs�<r+��Vշ@�H��=�V��\�C�J{�;|�B��0��aGyQ�!�P��o*
K�Tc[��o�•`�y�[��x��g{���A��3��B��:U����ˍ��!g�p<�Ĩ™�����[9ֈ��[f�دpq�yl��
���|sl��'ɐ�ڴ!{5��ؾ��:b-��jU�#q&j�P~ڶܾ�ukx�e���� \�����K�vn����)}�Ԥ9S?g.W������>5���pP��
�K�Y�g���Ѭabu��O0�o.-�:�Ῐ���4��h�L-��4�v�'�yl��[*P�Žr�T�8�\��=�:o�(�C�#��:zW�t���L:�   �6����.�n���-���n ה�*�ǽ;�Q)�t����	�n)e)E��s��b+��v
�ݒpʥ}�-� �O��PY&�����BIy��"O;E��8	�~��l�J�^�`E��9h�@�W[�C�D�D�/Y2�t� QN!�t��ML�٘� ��$`7�η�s�!c����T��}��n���U�e��&�\ #�1<b�&���"?��4�h�4��x��WSU8�[Ss�����Z�y
eɆ���W�5�M��0qY����~�
שN���1U܋'Ν_W7ĸ���!]Q)W|�'P��Z��R��?�ܵIF��b��ѡ"Y�/���l���MK���[�Z�-�̓ �51�Xg�M��G�����uM��>��(��X7�'�x��f�Ǭ�!���r/���$�����k.���RY�ݠ��x�V�PD�xP��/���#��x�i>!�|�!����q�Im��b��+ي�ͥ��Cp��5�|��>��0l�ǚ4�D���i���o-��z�M������|�C�Y:�V��qNQ*KHqJ*�qR���/�M��d�O���OhO�����7���(�ٍ��|��g�a3�%.�,Ru�-Rd�E��KA;��c��Je�x�rR�4�ܶ'�����rY�o��JY>)}�97-�Ejl���!f̒�c���.#j��n-��"h�8�"ExE�����T�O�w��!�n���\P_����?O\�s��&Ck�`[�~8sJVM���JO��L��+2�L_���No�4�H�-g��@�1�9���{#v9(��6I5(�_�4����K�PZ-1�Pm�7l�'���o��5��=&xf�!:p\ڲ�+
.P+#L$p�� �Kp�L����%��c�L�PwEwu��� yD�4;h��څ�KE\#1�X 0�7�ؒ�I�gQ��h�0�9P�y�ep�����Z�� �k�UT9�u�S��J�Ti��i�Q����AmMh�!b'�f"�/���[�T��5�AA�/�j�`ʙ���f�O�!:���m�lj�|�����Ď�4h��pVjh��.'LJ�I������C�τ��3�L2Ќ(�'��!cj[��v�2�4�W/����`Ї��!'U�'�
9�wBq�m�Jp��V���׉�ށ7��8o���3bϒ�4�+��e�s�%rzk�?��
.�&bcԃ,�0�}4S�Q�;2�v@�_�٨լê��&�5]�Ӱ<.N'�얁�M��A�%t��udEid�n�d��j-5���*~E��ja��XѼ9!m��	E.�î���P�@|]�R	�
�5X�R��>�Pi�?(vP�/��vj]o�����c���Ԍ2�-����.�3\{"�58�g���g���>=F(`��$W����w��>�v�*ʅ#L�FC�m��j!�Y1�P���Ŕ��RM����rI����4��?��3��1S�g�S8'�l�*t�(���p�G{-i8�c���?NW]b�b��~��W���>Ƀ5(a[�68vɲsdf9�-�[��D��7���+�x�|�"�~�m�=p�:W�k�����IWTҌ�va���z�jC��Q��v�T����%,Y����Q��g����Ŋ8a1���P\F���0#�O[��d���u���tG�!O!�\��f+�/�=�"�<}�-�G4�d��YY/׈oĤ�4�B�h�o�38;#�P���_�&1��]�3�&���� �^�nF킕“��=�'��S�x�Hcʠ-+�lT
�Q�*�uOE��';i	�y��3�P:��d@���{õ�B燾+��a_���4fGM�eQ��Os��(K�j��L�ǒ{*�i/�h�G�GT�{u�¸i��74��V�OT�Dse�g|	Xg�Nđ�	CS\�$�����\�ˡK���)��}j�@�n3�R-Բ��M�pibl���t���fM.�7�H>���?����Xp��a�3�XZ0��(ލ	K�~�H�{�L0,Y����:��?�;�āwx��>�(��/�.��<=��c����x�@���O�������^%�q��9�U�8��n$Ò��h�S�P��da"�L���0��q�.�~\?s2���"�t��tQ���?��KK�~�4��_�j���m9u��� f��(�)l�ܚO���Xf^�Ɓ���I
����m�s}p��� �^���3���^���^*1o>�e͕,‚56�X��=���-@���A����(�)ڤ���}]є&\��,�I�ǖi�1)�DNDE0���<��#�CĖτ���Z�T��+����VS�c$?���_F'Y~B��גj�?F� �o8̞�5G����	=u�3w:s��v�D�%���i}ҽy��u0������J�<�R\�1�SnM�a���R%�l_�ɹ��3��_���y��Ե�3���=��6���Ҥ�������1��7��W"����l��:���3,�3��NQ��T���O�9%�`��՝el"��u�ϯ9 T<���/�1�]Ϻ�.��|)�p��)��iI�=Jlź���/��ʧti�(�SDZG���pQhu*�02�V�^{MW�-�~$�y��E�7��^�ĎUM�90�[�1�
��ȵ�1�{B��O�τ��f)���W���u��W-)��D��	��|I9���|'!Zޚ����M"�l��T�$Cs�]����"�}�
�]t�zȄ�N����
屾ؒF�q����%*j�#D#w� �s�-��?��.�l�wI��
�������hy(�Z&�r�0��or��r����-�睾����ho��.�`[�(����:���R��ѐ�/*��� ^¬)̺�)���;��s�kw�?��c`M�Qt��0�L�UcnT�qIFF�(��F����m�}}q���^�o�Ջ�K�U�q^$~��qD��5�)W2�ō�e*�
�M01U&�p�m��7��_��0�wƲ�OY���UR�N()�a����������Z�↨_�,�cR�J9���X�,�oF1������r[���e�%"J��K#1�ꗃ9&C�,ո	R F�3��{#�o���^����d+/�P[2��?j�:k��&"�o%�I��y�R��:����[۠�]�k4^��Q�Fmz#gձ�b�J]oI������
�_�9���0B!s�և����@[�Ɵ �u��X��kK}
�4��;`�m"MU���#S;�1�ߞ��#{���6w�%Nd��[�G5������F���t��h4�؃ ��FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUڃA�_�#PZ;�g!´IEND�B`�admin/images/upgrade/post-feed.png000064400000677654151213254570013162 0ustar00�PNG


IHDR�|���PLTE!-	
!/ ."0Xgo .�]P;3#1���!.$2*!(2%,%-2N[-67c��*07P�]_��2;:)30(HQD<F?7B<BHEZ�����"+,k���d.S�`5?6FwT7=@z��CM=05>X~[r��SyW#*9������0:2���I}X<@HLyW���W_K&���Z�_OWL@qQHIL���UVX$*>lN���LNSGrQNtS���Y�d9gLeb_<F8mig~��_[WHkN5bIa�h;_HU��`gQ9UE���AeK������NXBY\bvqm������2\F��Ɛ�����ack������`�b(1A{v���stz2:I������jms.UBkqW���/&-�ÿu�������u���4LA?FS(B;���"87���BZH.7s����
�z
i������������wjWOK��ѐtHbLuJ��Âh)L>��������yk_ƚ���{|�ͽ�paUj�n���wz]N<´��eLPjTl{�vU>`M��<�ɷr\��e�~7hUH_��C<=RB=����UiH/�e�qZJR`925��u˔/L5/���sG���r��ȑLWr\aH=Z>*�b6=+*�ԫs&��lrQ(דb���6*hA��#�l2�zZ�w:��wg�cۤ2����PםK�W$�ǣ��g��N�qXէ�e$�c
�ӯ���u�v^t�b���cLs��Th}��t�}Z��k�p������T�rԹ�I[s�UB��W��ᅰФv���Jv��cJ���6�ы��8j�'Lh�Yh�tRNS+:IUam�|���T���3�|JIDATx�������`��@��TUUUUUUUUUUUUUUa�T�a0H����l�P�%M�t�@?6����������������(Xn���F+87߅Fn�#p���1�Cƺ�Fݟ�'���3�h9sswn|�0��iZ�1f��9g�����E�ݣ �	u�>��`ײ�SY���A
G�"%,^�v-�5���ѷx�P�'��2��
�3sw��?���\��=G��H�1$�����`�t���g��I�����7�a�c$s�Y_�`|�	�Z�Ƈ�dd����h}�-����\t�xށ�}��2�`�I��ï���˾S��e)�;g��0a�?4��8}��Fh��%v�deKo�����!�R籨	�P��@e 3�Jܠ*�KKT
L���Ȣ��@T����Q���;d1,�����,Jj+�0u�iSˉ*�E#}�%qË�D�p��{�MF�<�T����������,U����"�2�#1�D�
]�x��z'��Cx�q�:�Ԏ������T�1�Q(:u쌋��(�R�Yv���€��s��H�V��O4jB��4�"ډn�}�G�
���UH�|տE�p��J�C�33;��@߽1�yZ�9�C����u`^&UJZ@�44[���3����lɯ4����aݷ�k�GC�%S3/�=��X�>S�f0͇�=���n!d0/ `<8�o1��7s��;&��>4z�EWn�v����4�RO�'�L�h.�,y�`
?�u�J�<�3��⧁ɛ�>;̉ٛq`��_u��ȓ�>K݌�]�npB��H�>l�>�уw�=�*����[+Z��V�5�"h��<�ǻ43����j�n�Ǽ�Ks�e2����Mx5a�"
̆�'5��(Z�rp�ش��(<8uL:v�Xd�t���$���Ь�B).�&�{�@�r.�'{8}�v�oJ�'�h�����^��Ö�ts��8��K���8��䐤^�D�ty$�3D��適�F�x>��R������I~_�i׌q�r�s�P�}�s'�e����(�P�ؿcfGaH�qn�n"�'X҆�X�8�`�*m��a�@^n��<�P�E���{�J�C4;��r�4���	���7A��мX׽�Z�X�>#��bԞ29STV��k�<i�S�q �㨵��FO��i�i�F��f菔�bƲ�ȨL�F˰�������]uV�n$@'-���`��֍��Đt���0� ld^�n��>��:0&0�`�›�O��χ��Y|�m�͐����Q��OL�=�����c?���k�+�0��9y�g��-x`���K�ALi%Ж��GO��l���-?�G����Y���[��s�B-<���C��Xx
"0�[�3� E�3!�mh�G	��L&���)\f�m.�����z+��Z�p�Ԙ�������0w�<	1n�xR4��;p<<,#��;�0�jT��v���}�W�#���9pBu\B��=���m���~�e+��������Mq��+%�O_�8����Z���
�#JB�Yi���*S+��,,P�����f�jf`��52Lab��C��4
F����y�`b��x���r7{�%������_��XP�;�.C�dm���Xu�����3�����C��†\��[�ߢ����^${�P��w�^0HQ��%��|��o�k��|�$��'�`��@V�l��d��	�V �圦�A2
y.�c�9�T��D�F�1r�+���Ͻ
0:��~E��������(&Z���HJ��X�
m)������1_>�$J3�%"�H�D��C$�T�N��p�#)f�|ӡu�"���Z+:�zLj���V>#ށ�����ody&���ށ(O��*��>�Ml��HI��'c���u��a1fE��Te&��I��e8PAr�ȝ
t�#��j�n�ZHI��,n9�?��qR���4���0Yh-U��$%E����BIU����@�f�}��=�q:yH\Y;n9�O����zޫy���|X��Kܸ��ƅ����[����Y��~c�G��lS�U���1��J��[�Q���UBd,O6S-�K���GP8��#Μ؉�˟uޅ(5$��4��Ys��C�X�R�T�>a�?�,%���s
:-����)�J��=M�f/��A���-���y�j�9#+զ��~�Y�l<f��j����+�/��/��~Mfu��0E��T��@���۟��E����v��.���Z��l�v
���r��k�|��.QM����R��i;�������8.��8�~?Z3�8.s\J�M^9���+ڏ��6<o
�(�Ύ΍�
gS�u�xǾ���S$Z��0�F����4��3����Jt(7��c������~�.;�ю�l�X��e�{U�s��ʁ]�\0a�'CA��d��-Tt�_�#J�Ct�iwf��Ƞu	�S߂�a�#��o\��;���2��w�t�P��V���g�Ĉ!{q�%��ٔ㺭a)
v:�A��Q=���K]�y�&����IAQP��d��s�/�>M�4��~~��~�w��٥��s���{�����;[�+�k{������߾���s?�e��,K�e�Y���q�n2[.�����2�Gy���*�zfn���
f�?D�d��̲l�����<� �M'''�'O?~��tr�x0�&��l����,���p1������w�އ��|���*ϝ�oš��\O��0VU�u�4��j�QW��>2Ժ9��r8�z[�|d���W�Q��C�w�F���
]
��
�l[�V�+����
'�W�҄[y>4��4E_��n���F��=DdoU��ݶ��ш�C�w��N���4yR�����,�y��pd��,u'
Ͽ��������ݫ���V�����{����~G���!��8�e�
Co(5�������F���u�l4�n���i���F5�68W���m�S���ZZgWU��ᄶ��:��&I�r�gT�q����r˧��q!�?��Ͼ�Y��57�k��z�k�s�.���/����X��l�i��_O.xĕb�՟v.\�r�j�׸�~ßg���iD��$��0�'�I��I	,��c��4�r;��,Ӝo�78:�z��xr���؅UQ0����؏��t2Y�>yrzz��K''?�������iq��O�ON��@��<}2\�O��I�~����,�����zݬ׶{u�䫨 3,g��vLSE*��荸1ݷ}Wn\w0p���n���ǻ���n[i*��utsh���F�]]S[��:��a�
,���Z���*\�R��9P�l�2�lz��
+t�j��~��`�2W�m��
���a���5�x|�V�����������n��b>���z��npF�뢌���PBOW��Ng���6�n�Ngowoo���l*j���۬��:�{;5>�Z�mt������e�����=6����*���*"��=+�l�R~�5�Z�o�Ϥr�ʣ�<�o�����w��o*��寊.�/^'����\���z��~���$5�Y�q�D�$��d���y0�y� �}��d�/c�í�0��(v'I4�N� ��N�$˲h6�D�%q<�&���ǿ��ǧ��yMN� ��}��d~2�\�w<}��	�:9=\~�
�C��}�w�Զ�^n;&TP�f��^g�l�R�a�v��V�$
���2T�N}H��+l
4�/^�Rv��L�Ag�\�W��8:kس��2!�R���C�c�P�52>`��ZO������[�f[�f��� |��(�ƞ�@p
����~�wl�n�h"=G��+�^5t�*]kWi�v�O��߿_l}K��ԩ�,U�ڝ:�U���*D�ޮ08�촛�v{�өw�{��m�,��)�뢇orW�[�V�\�n��ju����
�t��ǃ�`!��w�`S�J�/;��t��]�e��D`�2�Jxqp+�n��\e'������v�u�B�tS����u�]%�n�/�o�W	.�Fp�T\��3N]\���z-� ��8�a�ҟ-���
���x:�e�YL�c:>�_�L']�z�ը��<�]=�D���/�hӅ�+M�� �N�|�1���P�dB��~tz���i#��y2�GǓ����Z,�ѷ�0��e�(m�r+�PA������8��6�S��l#�F�%=�J7GN�����	�,xuo��tq�L�ۭ�:���{Պ��J�2+jn"DF�z�G��dO]�j��j&���;�z;�;=�h�p���@k�i-�_mEu@��������ְh2yIC�=gk���1�6z���0���J䧪z�ஐk�`�~�M^`h,m��ږL�����	���z��ap����qS/����{��;�T��bޤ���w��5�Ȩ�b�{G�i0���32��@��x^>�h/y5~���z��Vr��hq�|nm��
�����ULq�_�¾��@��t��"�.��*���*^���U��Y\����z�yv�:Y�gqG�8^�UM�A}y>_�A�q�N�[^�:!J&O�ptg�#$L7J<7�
��L��u�'����$-���(UP����p<�5<=}��$̾x���b1}�I��4�bx8;���Dt~�ZS�ae����V� ����om�T��ƨg:N�u�J�L���������bl`X�1ŗ�w��*�j�Tu�4��-��n\0*C*��q�rh%��>p��܁��nU
}������ƅ��t2�G�e9!$��8��2+�v���yK��?�l�+���������]uHU�����܂n�n�u+��:�C;5PW������ׁ[�I�'nUo*��p����mީ�ې��nW5L�}:��'.��Zf��mU�3mfah�����Jw���*o)a����3�B��(��Qy�vb��r��Rn�+���?{���n^%�Jl���ߣ�n�?��*����K�����������,��eL�*?MfQ0G�C�Z.�$N#�K}?7W�x�\#��ܙL� ��,&�e2�L���tF�HK(&����<�2�S0���5^��<8��.�����b�N'3'u'�h1F�Eq��o��Qx�kj�OCIߧ���
��,u�N��%M�_M\�ܲx�j:����`��`�Ѭw:�U���W%B'׭T�ֆ\��Z�-ς7���B0�#C�v�몲�XQ�UC�`8�lj�Jm���;v��v��R7,$�����v������7C?�Vq�hH�04�–I�NT��$��;���K��=x~=�y��n�<��Akպ���R��bɋ�%�jcnq�}�w@abU{�UeGm�ۊ�;����u��ϩ��b�U���&���6�``�+
�`c��t��ů�VY��P[7���-��\ooٗ��ē<~�V�<�W��Z�	���u�\WM/��M���j}e�e�5^��{ �sW	����ey~x��xH�4�C/ZL����x�m�Al��Y��&�kd���)?έ,�	Æ�,L�3?Y,�X��V�����1����-6r�$�|��b�xr�`�x|�N�ϲ� 9��f���2�EI��cWfoeC��rô�E`a�+8]��ܡ�Cڨ�
�ܡ��c��7�b�n7�Eﴫ�Džߣ�[D,�UM�Iv*�����u��%����f�҆�5 c5$O��^�S�ʍ�'�l#+��v�˼V�ו�
��Ѡa�|8:[EZ4���������<���N�WaBue�8+�T<:�4�A��VhA������Us8��ĮBiы��4�jg��u���.(:hwڍ.��C8V�p;=]�m)Z�nKk J��M��x��B�u���� ��Ǒ�	ű�>��2�I9�.أU4�w�T��؄W�fW�5&��kY7����ZҪؕ�_��V�M�*�~��R��ח��v�]��*�udW��Vk���gd��{�o�����s�ĭw]k���vL��dr:��C+H��<��̏�q�I���ʼn�^�q(����F�~/��d:��γlr�x>~�x�콓�/=�>�/�mîh:>��$�e�2��,N�,��dq:qm���h��b3�;ɣ(��1s�D��ڰg�p��Š�T��L��Ѩ��X��X��
h�K�k�7�[��=aT��Z#�Z��eJ��f�PY�<�P��QZ�Uh���	^0��Tv���&�E�m(�1q�,��)nG�ޮm�܆���٠�nS$K��R
�	`����H�|�`�A�޻WY����1G_ҒI^��m��Bqqm�5
`�@V���#��z9����T�V{m!�^U>��AT�֞���Tz����tm�ȈG��7:�>d��2ڊ�g��x<�ӣ���%��=&SEp�B�o��
wk�-���[�_�W���8�����*[��*{I��yp�	�]e[��m�\�����=^�Ru����S�ݛ�	���׿�����n��.�E����ж�l����p1�CK'��n1��,xa��4ƹ����3�
W�e�.�����Ns0�yٜHŌX�"	��>8�.�O'����oO��pQR�^���;'O~�p�cL21]L9����v�d83
�\�1�ؒ��D
,W��,�ăA�n�h	ن���R�.l��!AppLc�cց���TE�hmm��j�Ò�-�v��?��
�6*��|��
P�pA�	�z�e�8�g�}`@Yf��r[ݪ���	"�lA.���n�g��儿�y�U���ࠈ���"����Ak��9�a8OAc���54$�A%���Y$���h�V[�C{�o�u4�GpL��>i
k`#(Q�m���U��L���ї�麶璌`�UL�R"'0����>h��׫��[כ��r���*�U��2����Û	/!������^~Mq��]EA�Rxq��u[��2��VV��[#
l��5���:�����m���|�C��w-0�$Y|n��N�Lq���)]�8�p-�+�g�=)�T��4��e6!�p�Yg�y��|e���E⑮H<�d�U��1�].>?��)m#|����B��]�cOg���GB��b����h���q��P`�u��**��F�y[�f���شT9����i{���QuW'LA�U\�����t�8&��&q�~y��_���
��j���5R��v����n��*~�n��}ܪnSo�Y�gz�ݷL�ʺ�[��׿�PwdPP�V�Xa��r�����a��v�c�W�X�0��?���0��6��X�
�+�j]�4V��i�)e���!�W�0�:��C���Y������d�ؚ�:겷�6�:�jI�L�/�G��<��T�ç�,Dr�dUB�����)u�l%��k,.<��[sSr�z��<_���+M���Aŵ-/��U���;-��w}~î�[�-�j��xq,�_�/y%�dq��[kn����?�&�zۻ֊�3o��9�{�-�h'�Л��|2Zi����^U0ϼ|�p�.�8 ߥY�IPaD ]��,�So�`2��0�0�2����c�s��l��!"��Љb�f������q��}v��3�hJS�"<����c�Ր7�!�9�
E
x�خ���}��`�kEf��*�~�t�Ņ>HF�
-"�m���B9���4pP��_~z��_�xM�ǻZ���,𥹖�UپPZ�q����X�m`�v08�ķ���#���`ZQ�*�M�Fo�aLJ����*��!�L�i��l �YDp���K/�}�ண���� �X�+]3�h��n��=i�W�,W���#��	�׻DMu�a4�dz�x�V7
����n]5��g���C���$��օ��u+r��n����x32l�{\���K�%��MI/�g8�0�k�-�\�r�8Y��7�n}��o\U��"�-�gzk���[_��;�	�J������]^lPkC.n9!�(�߆����QJ�%(�Z:�kn�(��{�p}���b'�/|7%O�����Q,�1����h�I��F1�/&��,&n�.�E�i����#H��&��le��k�O��y6Yʸ��bϨ[�N�P��y��N�u$1A��'�ͦ�/{������VTȋ�8jd�J8�����a0L�����
�e�2�W�LQ�yH�A+��@��mm�.��*�S�tHW�i�6���􋎎g���d���ON�o��/=�p��j�^�ҔZa�K
!X�*�kȸ\K6�C�����$8��Cu�6��*�쩪|�W� Ku���j��7cg�G\L���"��ص��޿��r�����&i�L���ܒةBc��4DV"��� 8nߥ��w����BZ��?�|��M#>S���!ꪟ��Ma&�1>�ޖ�Šj
,�F�b�`ۅ���f�r�9/�����%��d��u�_��\o���@D	�+8�9�x[������m���^��ŗ_��G�yQo�\�.����o��~�zU�]AWq(ĺf�=��/;\�^��߾�Ǯ����?�9O�ؐK�;��
1��%�f�-g�l�E�ahӠ-	oF��J�,�}�?�$�E��\9���M�l1K2F�H��0�\�dj����k3�Ff�9���lTLƝ2�P??J,���b���82]'�@i8�"��P�Yަ�G�g�vVPj�g�Q�.Hi1�mY�D�i�T��#�`���K��:�4��X�y�.����/��sq�C�2z�
��̫w*����#��!����پu�<�]/���#�����%��=i�QH�ӕ}��	�"�Qt�Fu���ch��:�T".	D��ԍjQm���r�0˷{�L[+^�>b��EnQ��0�;����:n����h�y��G��Ut 	�n
��IJta��L�`�iw��h-�ᆑ���}z�6p�U.R�u'7"lS���	%�6uŐ�|)����9\���>+'Jp��녊�>�z�����*�%�*�z�U��e�eG�@�PT	�����\��`��g�[s�տ}�k�kນ�Z���� ���t�YKǦ�aY�ݝJ��q�NE����,�`Kf(+�W#z7�5sɈ��H[%�1�8��ob(yoyM�6Ӳ��Z�6-�c	���CY�8Q�1���2�VÍQ��h���,�ɔ�Dh��|�؎�F�rt�ڰL4�9�eF�Z�tiۖ��ȭfuH4�Y0ī�>�2�:�UJN�O����f6���x:�>�g9��;ai��C^�>��U�b<���PS-��,��X��睹�69Pq�T+���&D�b52��Ù��L�5�ێG�ji
���&N?lf�P\)\���}����a�j��.F��N]���<���:�{p��jk�=�Y�!��qvk^�"�B��zOu�}��wm��<�~��l�Y-�ԙ�l
�Py�$�R��:�Ψ��{��D���W� n�9#��;/���kf�m��ӷJ�2mq99O�`��/�l�np��s�[��kmwA/�p�^�[u��<S�Bq=#;�x�%��F�mx���n����Jpm�W��\�'}��7F���D�l�-mo<YL�a%���<�cHs���q�x�J��	�a�t�ev8�b�\�q�HJ��eǎ�DQ'.�8�:�o�Y��b]�غ���Yb/�Ƽ�-NGC*_��2���=�C#[�!�+��G����p�J��
�z�ωQXpˤ
3k;u&�)�b�cC�$�d���j6��5'bl���V���GO$8}���0�F��|�L�Q�ͭzKl.)Xtq`8a�	f;x�al���~�]G��M�b�3���o��1����jn�lY��T���p�@�60M~CuTǚ�������j.|vxEB����k�ܞ��u���w�\�uBi%�\���g|t4>z:�cg�2ta�Hd�.Sq�ȋ���z�ǚ�i��MF�K�H4_'��l�..B�+	��u��D����!��Lč۵Z����ZJ�������+/��~��knQoy�TA�Rv����zWqYw�\������e|��Zɩ���Zi���o^���e�7-�Zi�bM����6�\���b���c{KG�1����[����'f1��<��OC����J�h2�|*8^��e��\���(^�
f��1�b���v����t��4�jijZ|��b �Fk���6�/�#>�5g�¹_�������}�;��d:4�QL�g�t1:�&V��1����#���1$�u��DfX���<F�V�):���o��g��ƾ7=���'�O~<�D6����c�	׶L%7$s**K^��j��t��p�@��k���
���m
�2)É����`��gVh�#�8�tU@�ۀ	�lg���b��o�#�?�Kw[m��D����a|8����u0�ꂮ�-�D�����Ma[i�ήe5M�&�/���cR&K�hZ�\#���`�4�¿y��q�^S�B$��g
j*pΨCX��F�òK,�KR��bɮ�>���dW���7�ܺ�*��O���J���,q���ַ��7����]�z'A���]��L~q�"��=�J^��+_�x���%�Z�.�m��$=Ĝ���*�Ņb��I� �|�Pa���pr��'�L#d�t,ɁF�l��J��$��P��H�p2l�Q������n�$H�K����S���{3?t)�r���вp�4��F���1*��
}/F�ѡ�B����f�,�;4�R�i/'�P1,TWC�ELd!�U�4�6Y.CR�}O��!w�1!�RŰC�"�����g����������/Hd0�z���A��/z�L0Z�u�]A�-!���,1�\i�x���?ZD<��{��s��!�`0y0��xG�G��"�L�t��\
�7��d��t�P����jOVA��l���5Q^t��w_B{1W���(qwZ=����'�w�L����hm_����Q^�,N���Eo�,>��p��d%���wox\@J�z����<[ވ�Rע\��s{��3K�uIe��*�ͫ-�8]��z�2��.�����M��r�/�βٕڀ����Q����P=�\qJ�UA��P��C�ue�Ȯ�[�,X����pݹ��WŶ�]����_����'��)=Ӕ�(}�I�܃=N�<O�].�hF�����Z9���?�fA�D�8�_!"��rK�C����+��s��&��4��{�}i��Q�	��r�.'��l��YGEDA|���1P,�HQG�;���b��!(D�X|�z0������H#`����3��B65���K����{��?���))Y$�k�a���!taݳ�E����
̢.�H'������Y�q�-��*�=�أ��&F���g[���	�	p��u�E��$�Z�I���B�M�
`����F�&��+8k{���'Æ`���mZF�(�8�
jK̰����i�Cۛ,����;SW����웃��x������7O�6�0'U�0p�����q�M���&��_ϙ�Xr��o
3����M�x#�O={�
p]&�!��,Jr��u�]Ro^W�.��kS��WF�~��`i]ϰ��U��TVr�TX����Jn�f�&�,���z��
�׊��~�f��~���.��_<"�؟�Q��t< �Wa��y�$Iq�X5[J�H�L���/�̨	Ê[�)L��:�$��m=��Ai	�L��ȶxY�]���؂n�:h1U�vL�k�������5�1�/���Q���ŗ^V�4}	\�MD�j���C�j�I�N�����꒠T�	-�md][t��_���_�;0�OY�A14����o1�X ��g`��f�H.�U$<F���m�O�WyOHTE"���쀅0"׎�8δ�h2�tbe�b�@�J�K��†�x���Zta�^�J��ĸ�b5D&
2����]\��"��y�k
�Cetҍ��Z��[+;����U2[�;;uF���~��u�*s8V�����Mԗ��Rz�$�q0�Y�r��s��va�qI���r�!ks\�n�������ͥ~��
�^������n��޾�
��=�z��sr�ȸ�+,�����厐�nS��6%�
.rݐ�g𲀋f�?�+��[⑉�r�����k��*���
���?|7'De�z0��b:4�_��Vf�`�e,װ�L��&�l��pI��⟋�U��n�?��b�/�\jz�e礼p�y2�
��,;����a`̴A�
}��i�с��&�%x��
�)��R^s�Ƽ�Ǜ�:C�t�B��!����j�}�ʃ(*Ƀ�<Ϸ0�I)���Z<!��?;��Sdd���W��L�4�<�}�(��ߙ>],�g��k��?.�"��Q��Z-	���r$������a$��B0�名����o
(o'SF-��l0���	�$S&�A ��Х�4��'�.�K��:$B[�:��j��r�ğCm����K8`�4��ةDn�:,я"V�Z>��g^4��}M�Qb`J�c�
%�}�N��Oc�X���w���l�Z��QE�]eUy�9Ⱥ�.n$�s�����.�E��r��+��<��W�b��^�8���^���u�j0�+�ٌ=�/nʶqͰ��\<�Sa�kŋ/.�yXׅ�A�	#{����D������Mp!��j�]��J�5�K�ɍ�-F�bdP,D	��{E�y��Xq�f�`(��� �r5p�����Q.�������؏��\8S�����#� ���6���,r|�c�%D��{!�8��#�Y"c�*1u��өmm�?n�ՙ&=�h��]��NԳuQ$��R\i+���We2MSr�]�-}�D}�����X���>��=��R�"��1�:��#��	8%������n4��4�)�J���>�b��oD����N�?~tEs?���lK�Ֆ�^����%�Pkc�i`�-\�[L�B/�՘%�[�t���U�)f}��?`	���*�y��ǣ�����4q��)A���ۼ�*�i�ٶ�:v��.�8H%	���n!�d�yM��u����*R%�ħD��W���B���*Se�&���3��*ө%�.��.9�Q\�kS�o��غbq�-�%�z��^Ŏ↺��޺���ʬ�Eq�Nܩ��bt�=�jA�����Jq�V.lr!'�Ѻ�\?��7 �ވM�j��u�E4��om��!���_�9��4�G,4���t�!�'t0n	bz�=L��<�g�4!�@�x:�lI��[Ί��S|?B�C�H$z݅:6wC�(G3+D�I�	C|	{��Qx�-�i�8tE���c�ȏ<��&��#�5�z�`�t()�Rsz�WN
҆.A��iy|�T]�)d����p�T�a\W��.�r�3��6��L�=��c��\9�v�3�EM����ȥ�Q7
�?+ܪ^�R��:�>�����>��8K<�o�ۢ��|�,�eٲ Y�`�f���aW�c���c8r4e�1���bc�G ;P1��V��?��Ҧ8CJ��ѷ=�n�t�̉�i�#::F����e�Qԣ��twDE�p�k,Q�ɾ�m�$�/�7dט���ݹGmLE����Q\%�n�7��-���9ڲq���dWɥ�f��Zq]kEq%�*K�LxɕZs�=���)x�fԑ��C�C,�T���<��h�
�E����7�:J���R��F�X���Ի>�n��<�f�M3:<�I�JaM�;$�Wn���0局�{1�B��[�RF�]A�l�e�6rL�K"b��>:)Z�xQ+]$����L����%�v�J�A�D��y�O��i0֘<�
Ĝ��z�3�0񪬢��\�e��X���9�#�r��w��Qx�aV��� e �S�XZP�aZ�2,W�Q+�#w�h�E;lR��28�}���y��\���O�]_���^���SG�o�v�>>���ܢ����0�݇�1df��U��P��7}r:4-N�p����Kw
1ǫ��T�!k*�zNd�
;AКr�&)�D�����$��"���*ͷ������`���>����H�!�t���K��=����*L�M�.��
pA.!��-q���u��\ �G�ٜ-��,�D-�O��zd��r��B}v�<�ŵF��?_ �$[��
���\�*�׺w����+�·q(�/`%U�(8�UBJ��ns�Ka��$�
� � ���Ps�����BrA�/|�ϙ��{AFO�=�<I��9z�	ŭ��IF��g�Dg'J�IHǗH<�O-srV1Kb"��d>��ǘ�`+;�������
�Va�8C�K�]���q�II�2�q1ɢ,%|��&B�~ԋ�a���G���,�lz�b<���1Dg�![�z9_.''wEˇ�S30湐�R���
�Q�Z�m�c��dy^<���M��0�(���\�7AS�TG4�#]�ҭ[��Pt��.��T�@-Iޟ��E�+��gKg��:���w*�걇��s�
�
S��`��& ߒ@KHK���ۅZc��k��@D�ٖ�����.b�w{��#�TP��tX��R�|��	��^�w�;ȵ�ݦ�d�
�y��A�B�5/4U8��쭞�"���I��M!���+��MpQkL�e?��3�7f~	�r%��?�Vݜ�\9vsܑ��b~�3�K�W�bC�d����%�����dW�0�%�&[�'��Tm6��R�������R��kmԋ���˳���`��I}�W��Xo�_����IKfY��W4c�d�%.
�)I�P��uh�/f�e1X�	� %]
�ߚʟ��V��g�r�g}�b�Ef��e�������s�L�v4\{/�1Mq�SH�ogt���"
��ビ�� 6���y^Au�*x�H�*f�,X��݀V�����P]���Tp)Uғz�>�i�ʹyOe�C�4_�z6���Lw�e�n��Q
^9]��
|��*�a���'CFnCĎ�T�e�*��٣�Ϳ&��TQi�&&��q�,f;���nf�.����n��}�~���2@W��^^��h�:-^��q�l
A�6UL�"��eP��e
�P�g�S��V�,8	��b2 I���Ʈ�����mӿ�[En����U�{����*�~�-������	�9�K
�^���r\\K/���
�kC�s�XW���^7`TR��X����j.�����"�B�\q����`Y��%�֜bWj.6��̶/��Α[
m����U�Y¦�W���.n6�+�%��0�4���9�‡��f���/|��7�{�?|�׎��`��L�GH�B���i3��g��絑�����l:���M+�a��v!#�C.�=8sP�$q���1j�`�փ���]���E�
�.,�go=��=y[п���I��4q�uY���$ͯ�߼|���<���:Y��g8M0+Noog3���8��k�5���$��I/#��>��`���ӎ����Z,'�l�fg�`2A��I&Ӌ�;4�σ:6�T����c��Z	���~Q6�ΕU��A��06$�@�ӷ<�
p�s��F����,c��(�X�L:��P��1�(�'����Shd���u��u�{q^n�λ{a�l<k�j3::bhѨ�s�e��e�X�
%l�#�٩�򁅨	��T.��Fų*:�^}�$�2��'�?�u�vT9|^�����6 A�9����!�@'@^K}uH]���R&r�d;	A����a&O>(����-�̝K����j\�.Ci��sd=z���òO�bc#:1"�vj����@���O�@�
V�����l�X̉lR\�GZEm�\fr�����򁫡��Y��/hh�w�%�t��#�5�V�%����\��']���ׂO�f��.E.uVGw��kau��p����04���]�����1Y9O��3����W`��׿����lT]���T��v'�c��(#�=¨`��h�ā‚��q���d'k”��>�8R0���r��|�tM�[Iq�
ʼn�ilc��t���W�'C�d݄�K�D��}(|f�4�ݙ)ŕ��h�Ih����BoA�F�I��r]f~3�\}�uy�X��!�F���H_�]U���`K&�P@��W_
��E�vJ����Z;p��u=S|�B)	?0q	�8(na��M�F�+[a�yT�y7�ދ��۬�md��6oJ��^��$yZw���Y�ɦc0¶��	dR�s.�%ݹ�[@q􈆂� �ǗY8~��TvtM�.g��^HI={����S);�u�}9��~yIk�H����xZ�̫i(pɓ���,d�p1
��-���|��,v�es��v�,^�V\��Ajݙ_\��u�V�xE}�YZ���7�ŊԺk|���n�3/�N,~�{�lX��6�KskQ9r����;sr-KF~�Rz�-�r����7��׉��`k>��_����V�%�-	lz����#Lu���Ľja�C*䒟��$~ΪC˻�A����A����k�9M�rvb�Pw
���)A�LW�pKU�<#��Tm49F�j�C�o��m�B�N��c�'�@q�ј6�~����q1$�yNJ��q��3��c�u�E�
T]�?dxBC꩒�dT�F
�� �p\p�����=�L8�\,�R�%F�[(�$�O�$A��]y�F��(L��Tnk�g�$���L<���yT[n�%�e�%QɎ~�󋐏+Ů�zH����xQ����[b\���w��"�v�_��M-M$C�+��P���Ng��õ=+���y6y����۲�G��W�+�%n�e�~�B��2$��#h2FYҩ4��p�H˵��.<.�v-<x��T�>����:q���`16˴��כ-�2}���y-��y���fs��Z�'6���4�4��Х�/���,q�)&亓�������
�V%��hr-��+�~�CP��r�N��Q�#��.���K|ru��L>���N�JޝG��ϗ��#��i���Ѩ{zz�I��Qs4�LG�� Bp5I"�6�i�	��;gi���2'8�?��X�x*�b�]��Px�:>��@ �s+5C��E
��pt�zv�j�^|�IcĎ���]��\N���*k�v��F�pQL�wPOmF��U���<h� b+��իW�^���ផ7#?�S��?s��� Yph�`�g���,��$D���Z�)q����`n[��������=��d�F��Zo�0��i���B��oک<�+{,8�6�[�L�^6��!uz��&�)z���)����	�!�g�t���u�1;��3������./��]���~�F�xbTҲܢ��ԇ��U�6�W�qu`9������	"K���u@�����W{��R�9��fͥ�֒a[���R?�}�ձ�Ҫ���&��6C�rk���L��ZUbrVRK�^z(&�9���Z3l�79�]v	���C�u��*�t�0����F��`e8��p!M�����#�2��a��BiJ�|m)��A1v��a4l�{ή�0�x|>��t��[���WWt����'�W���Ժź�e����-O
��x?T��T�bi��nGi�:9�>��3؍��������*9�>(\��;��a3��[D�\�Ҭ��R:��5FU���E��R�@���X����R��?���\:zѧ��ދl�s�����bvp�b��9l _�be;�r��Qm�W#�$S��eV`L�yv;�5�ֳ���$9�B���A�f�{_z�����H�,��m��Kr�`K�[|�h��5;L(R2Be�L@;|y8FG���ԇ;d�O�
�-��}���8&H!�’�2-��β��RvZ�4(���-C�Y�L��ȓ���K�kg}{��'��\x}�V�zY\Ώ�6�]�[\16�S5�p[�oMpq^x_�ee�VbzV���|�~����t-�ĕ���cK�9��X!��\�VХ5�J<l�r�Z_>���|@�up=tGC4	��uunٸ��7��C��WC��wSV١��;k
xR�8�X�ac��n�Ӧ��1`u�4��X�O�ŭ�
G�lHV"t���_�4@eY�4�)�8�i�O���wF]��*�60s�䲞{˭�(.yD��.�\@#��mG���U��b��[hۮe���@���t�mהm.�KW=�`{U���Bw0`r!��A����<Z߫��q��,C���o�ܱ-�I��Z�E�h�>�����dIS@=�r�I'�S�t
$���uێ����ڳA�y6ie�m˒f{O�k�]R���В�R�G��Q�pk���#$X�(8WU�/������,IĨ���Ib__^����K{��٬�_�X,���E�?���N=���G&�h@�T�������*���������-�zu)��G��*�VE�&�jU���m��]Z{-�/S?��V\l�Kw[��W�57�ht���5��Ǣp�.
����Z��&�ܸ'���'�
b1NNN
]�RqMq��.���0�†��)W>�c?�G�
��)ed�eH���9�Hʃ���?a��b5�ȥRk��@�%Y�����A��f�Pp�S�`��`p֍y[�[T��"�+�P��6k��ָ9����&���MXꢸ<x���G�r�T2�tRP�m�"CZ�#Ad�1hd;
Y,$F�l"��c�� NL�u�\���O�+��X��v��в��D�����}�n?�W,�$�)X]W�pƩ]����Ջ@�8*a�Nh�l_9�롉�mTo���(��"i�Wemi%]���:�\;u(W��e�h����!�:��QE�>\�����q`0A��ֈi2̒�a‚���΋��c$�:~t��Ă�&,���߆�s�Ü��w�f��a�,!����j;۴�֥��8�Ǝ�s~��_�u+���hu��պQN�`��{��Z�Q���%�bhl}���0��2�ȀPK�(rin�q�@Zbj����߳�%C�epp�d��rզ_�P�$���b�.ǜ\jVqu<t�]�(�@�i�5"���8�����M�ˣ\�K#�ha��2�ɒnQrA�/�%�%=Nӿ�3�79�M�Ά��t�x�v�c��Vs8�djN�	��9��$.wRJ0����̽���w�-��:y�̺�oK`<
�f|�����'գ�It��8�	�0�g~�Kc[�܄p�wɈ��M�@�dه�8�0��HF��[ƀ�/��^]�"�x�g[,�q���%�q�*&V��y%���X))Ì�pH6�u�o%�ᣱ��&I�%mg�6�7-�Ȱ9�6Py��!��vIߓ]�؀��Ȳ�2�L%�-6FxY%�a�K���b̓�e�b��c�#"IV�꩟wi�8I�#�B1����!��I���qP�1xI���s+� ���-�Du����k+Ft�\{-ڤ�G�y?�V&�M�$M�ձJ8~�Mz5���d�R�����D
�/�0�ҁ��g��c����r�/TԊkQ�A-���dX(+]�q�]�K�IcJQK�%��S-.r�K��D����T\b��2�#2�)RU�,�~�ܢ>���,V|�UK�{�Q~z��;��9��GY�)/C5�~ۈ�gyQw4���o��IO���ظg��H�G�H�d�<
J(i���f1���I�4����`D7y1�;a�l��,�.A�>z�
�o�&�@���ncb)\�ۊjő��4��W���	EU,R��ݒ�Bc5K~:���|�o���Fɪ�ei.J�+��5��,�F��5y?�!�a:A�1	��`v�
�5�ˣ�?��p�� 
�N$��"Ƚ��8��6��g���̯��2��T�t9S�����P�.���=�	K@>,[��x��� *�~7x`̫�d��U�Ɨ7�u��J@D=:f�3^N	��y'	Ь��l�9���qE�?Hdj��0��])a������%��m��y}��(��4�R?-��P��2�����lcY*~lEq}Ȓ�#��5�@�(.%|��R�K���%��KŴ4��Bl���cK߭q��T[�9���4�^%�������TD�0�'3���o�������@�ӏa���2��ez�me��7�to��'��(�}:�5�},�ºs�<���;^�?�Q)���9`�4ɋ�x(�G�1rd�dy���]G�cdUٵ8�VM����I���<��>Km	�����
4br�ϋCɂ
Gb#�~��u.�)�!E:o..���
��{V�>R�3��+���ŋ_\�E�M'e��܊2�=c��c�R���aK
5���B8}g~Cg�D���YȔ*��
_Ul���R��$o+�f�
+���|�U�E��}"	2o4���lSt(=L��(����C
A.��eҢ�C��VE�i����I��*�oVw�#��	.˅(�\��ϱx�<堨ze?<�D�-���}Ȏ��I֥�Ǡ��*Tلh�ǵ�>skC�=6�K�����zky���\h����VB_��]�[�K�\4���;��‹�CJ7Brq�B�iť�,��J�;/];j©���W��(.J���ĒM.��z�`un�^ѓ��C~�2�t>92awan�>f<f
�JS~ٱ� �B̟�L���H
7�E��nBH��,�-���� �oX`-�b�3Y�s��iM�Y�G�&�SS�!	V���D�\�5�NN�"��<g��0��~�v������,~��,D(0E�I(���G?R�-�(��Yv}�9Bf�o⋏a^�<�y�
���D��N�MF�e��ŋkq���{%�1�lS�w���=5U��gu��Ł�fUN���J�ytaO��gᵻ%ߪ�18�i��,M$Ju�Z^`݌��.�9��&e�,4��֞����.jK��BETUq�T�o
�2}H��v��ǰd���cʝ@�XX4�%��7zN��݂5N��GU�aͳ�bYm=˦!�]RS�VF]F��ow����������h�a�pk�V����*�8�Gs�<y=��I��Tc�!��`@ly78������<ć��Fo��M.�OBA���X.0���;
R|z�G��ߴn[7-�\���_���R.ח7).����B��<N6���`2a��C�ij8���"������a!�هy�RDI�
I�J��E�&�������v�Q���z���\��	��b|�˜I|���+m����|G"~31�?s����|�Ÿ6��;uӴ���
�0�ݴ�/ߐ��2�k�d���]�I�6�lyI��+㏓���M�����T��B�O��dr�%��P2�N���E��[�d��B=��M�+C�c��'���p��>�̼׍����wDJJUa�E��ui�e��qY2�z�.��U��6s��@M�Mb�C�JM����H�]�H�C�M)ś"�0����`pI��!ܠ�<�1\����ͫW�.F�g�z���Hl϶XY{���_���(E�@`t-�4��Q�痦C���`-ʷ�:��&u��)1K��\�J�<�XS�K�V�H��v�z�q��_����6�zH0b��w�Y�t}NQ��1�[Z�ѥ�W
Z
\�yг[P�K�Mw��\ݟk�\+6��R�,K��l�/�OW�tB��/�}	�v����Ӊ	�:��m�Y��,�EiٜS�@�3�v8���ΌR�8���6��7��k���t1��䡮HKY��>X>���~:=9a�||:J��c�����P��Mr�4˂	1�Q��,�V�Ј�$ƋЅ�*��M���^���%�*� �@�I��"�e٨9���R�,أ_|j���
��zA��̫������*�u;eG�ɝ9&���	}���`9�ҳ�Dc1�>$:Bq�v*ўG��{9���x�۔j475�ߓXT}��qA(%�������$��@��$��z�P!�O����.�z��7��w��yszu>	���`p>���m?z��vL3�����˖���e�Jn��o=�#�G����l���u0E���~��fp�L���h��D
�M=&4�6�/}k�ړWg}ZV���Z5�?��D�Tq)z�#��-κd�O(ʏ�F�� qoy��_�u\+@��t1��u*��6�kk���!j"b��C،eo���C��FI��_��-;��У�%�ly�.��>i���|)�D�R���d�<"l�3B���o��}�]����=<��R����5��#�t�<O=/��D�Z��N>=:;m�%��@���
h��V�5�Mۄ=׬����%�I�J�����0e^�@��LR��&��YvLO�������"h����e���&���>����t������ob� ��Ѩ��ҤG�ZGѰ�y44���O�Ȥ�NX)[q�$��v�P�n{�
2������p��]�v>>�w�ˤ8`��1�g�T���w$�U�{���Q�O��vl��*z}��e��}g\�	
������!�($���F��O���=�z�g�CKS,Kڂm8ja��Ϛ���$��z�J�<`������U��\�4����[#�:�t1�r�c�r���|�*.၂ׇ��z�6)�O	<0Ƹ`k�[�Ee'�Z"jy���{K�dhf-��R.jz�\?�̧��ɥ%�&p�:���|l��"x`�q�=L��g��W78OV�D�c1�Ʊ��q9~1@��q\�*n_�	�U�LLJ~���d@���&N�	Z*Ŝ�j"��<�yHluZ�x��Cm��4�<f�RK!_�bc�1l6�fOB;��6�3^�l�m��wM7nC��[�;�屭�q��@mɬ��d^[
��4��ǭ��U.���9~a��87��/�}S6�q�iF�ϜGJ��ܯ��l�\��q��K?E9�,���	b)��:޵���ʁ!Y:Vi�^W�ێ�,Gdʸd��"���P��i��d��Y� Ƿ�3��&(�-a0�0�ɀ[ܖM����%�J8��P-��iC-���XɳWo����?���ϟ?v�%��u=������#��Z�M���A��X�Dq|-��#٤���.�Y�������G��*���K�]��.�ր����6�j��Z7浱�a��S��ޓ�B!^�v7������r^Q\�Q�b,�r��h)���0�>�����bKݱ����dt�TN=g�[���}s�ٲد!�<�?�O�g^2g؊]̧��ܩ$�0�2d��x���d�h�\/g��|K��2q8�G�H+��H�t\��V���ɳn4��mEA��ˢ5ӂ�ҫ�b�G���?bt6�s��o��=ϥ����Lc�R�0�U��A�0�Ԍ��U����)�,�R���@�b�PF�)%U��A�S��A�2\=��yw�+���6O|��%گJ��n�d�2	��~-�Rb�[��I� ՚:
t����u(�@$��}�K�P��Ì��|4���=��/��x$�U��nj��ȯ�vdA"U"v�X2�X�LC��8z�(W�>>����JX���u4�An����Z/��W�__�=C+�c�KO�%en٪�6`����5?Ȉ��,)W���I6!=�e��楹 �RQ��`Z���/�4�6��\�g��B�j3ϴ�/V�|��g�?�JQ���Zp�?XhƢR��J�����\9�;�����
�ZIF �T�������U�u|LY��2��������X�̧s�� 4H~���Y�ZA�MU�NβTm�C���i��,ꍺ�,��ԑ���N��vHrB�N�l�E��� �5
�y챮Zm�豭31������tr�%�o��e���踝��y@�p���AP����p1�G蠀0Cp��4�.�6��1v@�Å;� =���mE��ض{��@`5�n���+$[��2%�P(Ѳ�wĐtl���;NR��r�����6ɳ�*�sY��Zq�HJ�סo{�C����ΘuF����;�$�eq����4�d���/�R�BiI-)�<�M���He��B �� ]�#+w
�G^�/�>�#��mo�ͳ���ōm큢'O��b�#��z�p��p��at\��:�z���1���(*��)7�㥜�&7�[H.���.
,�0}��O�~q� \���e�K�-�֊�Aĺ��>�T[j ���.��d����Ҕ�W+Z��8��\���
���up�5@��ɒG�ܣ
|}<�f3���ٯ�	�����%0/_^��h�ɜ�\Y�D&�E #oI�AX4Es�����-�G�d��ݳ�X�3�b�m�d^�Ӥf!��S��_�*��Yj-d@�%ɋ�V�NNFM���(�ʑ�0ݎ���]E����DO�� @�j7h`�.m�Ŭb_r����L�C|�����11��8�z��R)�P�vɊ��{���|0�����"��rn��s��⢱�vJ^	(2v�?�;t8�N%S9�Q����l'q`T���'���M��y��00mV�\�Š���B�zGݤ���g���$���E��ꌁ�]A�#���V��*#�U�dW�(�����w|���/~�꯯߼�ͫW��>$V���ӣ��[�q�V�}~zgg�����FĹXS����V�y�R�v�6w��1-�-�(݌-}�9P���ǿ��[�\�#u���Z���]2�>�nqip!�`�|q�Bp-���)Nbh-��ߍ�o@����[ڠ_RK�^d�!ǵ�&�w���]eh�q��)�a^��:M���zZ�a\/D�xQh%����`ʨy6��'��Y>�"�E�mn0�R�0"Z��N��0�����k��ʧb��`gC���睩�O���0_.�%����~�!����cX���,=l�(*W�t;~L��Y�,�Ԅ�*���)�m4�w%4�8Og�%:OL^�7���b�1�8��^���x�r������"�H��J��Ъ�Vg�$���g�!b�5�v=���G�����0�n�d�bY`��29��h����#dV7���C�m�![�dr?l�n�f�GP�`
��<zc޵�al�2�	~�0c��
����.��{��?�~����W��º~i�5D�>�T$�%�i�2���~�U�=|��nYk�rEc�/��(�CϽv�Z5J��,c\+Iy.:��Yq��
��K�Kg�7�ksj��K鰕���W\�"֓�K�����rk�Rp�b�g�{��՘V\+�/���<�\�b��2�!:����<�S��j�d}qԢA�(��
"&��_i؊�R�Q�
�C%�u���er<˛���X�8\܎Z�n%�Ѱ%/2�'��q�e�X:@�-v��ʊ�jn�̔�j%�(��M�D�Ea��pV��q��|���S#n��u"�*?8�X�:�qK�Ȃ4�P �&"�o�<&4�ƺG�����^�l�E�A5���w�׀-��Z�3�P+_l�Ď��
U,�]>
�=j(�w�VȢ�0�/�#�ݑ�H^Pm�D���8YfP#F��凵�,�)
��x��1�`ēr��zKM*A��:D�d�vA�h%���~��7��ۯ���{���o_�}��?�}ǟK�0��j}z��=y�CmhT�&U��L+�q��'LA��o�M#��ZD�+�2�p�mmVqYjPq{�#k�b?=.��PO�UMŵ\����c�Bl��K��u_p�J�c��*պf=�����ܒ�Eq�l-�8k�KSK�k%�3\j,��[����xM���������5�|�4�e{��\�#�j�ێ_��F�n�3ۣ��I3��i��R5�`�ُ�gr�������ú�\�h�x��;�.�9xZkIS/�H@_:�Ŕ���hB����'�3V�#�׬��v{WC��p��ժP�^x�1�)Ed�bN�
(��l��5�"_�V�Y�[| r��K�$�U<+�����W��d��_*J�Ÿ�6�#�O���4��5��r,�]�����(�@��PdK��(a�5��\1}y�S�ͪ��U��˺�BI�ײL)Q���ET��G%q�T���R$@/��"�X�~�~h<�t-������p�jفw}cۗ/�����w���c9*K��kG��.��eh��zP�Y���"�f0�j��c䔊l�L����ЏK/��ه�=��W�7��J����L~��\q}lUqq�a{\�]�T\�[�Jq)p-�ŕnq���j���5��X&PW٥���X}L��|�X퓤�:2/�͔L'�(��X��L�cgI`��fl�O���6ƖO�){������9�#��q4l4��N��4N0���^�ja���Ri����T�h���Q��rB_�Ao�&^	�њuֈ٪6��v�b�3m?h�l�z��QUiQCk,��"0jª�ArS��HqiY�/a���R=��R,��+L�e�Itq����"���>=>\����A=�-�+/H��,�.P����9��I�Cu*YWi��9�%����(I�D
��e~���]^7��;QڶiT�Lo���M��-4#}�B�L�n+Y��6���,���Ze�5�~�}�)��U[y�Ҩ���^�~�s��+TT���*%/�V�TܧE���dڠ��;g#��Ļv]��q���e�>���	��U��a�`S���Z1�6�	f�I_�3L!JSL�*6�J�ҠS|Rw�?n)`qVm#�b�����{�ާB���p�Ȼ�ͼ����oy]�-6\��:QrmV\|���ֻ�~��cY�H�7<����XP�s�)�|�bZ��6���h/�w��Vo@d�t4��'��Ci��/��O��nӾ�Z�N�����l��v�wI�cdK�F�d���:��j$T��>wb�~����������6�C4

ū���c�<�ն\Y��nKΔ��^0�����"Jq����]
-`��ū��U$
�d�'I�FD"ju���6�S�������h#�kt��͌�����u|��5���Eq�'�Y�O�Sw��Y�gш��4�3�G�!���d�1�إǏ)�:��=}�	4�Z()�0 ���7K�����I��,�9a��[�U��.W�߼~��E����Qs�x�5Z7�P���D�Q��檏N&�%�����p6B�ꃬ�E�$�<�$ �؆vcr~
.��|փ\s`�{�T���Liq'p��ƪ�R�Z��Zq���y�ǵ��Y��jOJ..�S������bBQ��
r�s�N8o�7�n3�Q�<��Q��	�I�7�0F-�4U#J�E�țz�-�z��u���vyD��NNz�|���t0ȡIQ^b0� Ϧ�,��z+vaT��J��o �l5Gn�Se
��$jN��g�!/Z�~��a�g�	���NL�HJ��B��A�
j4d�
�n	{�DT�[��Bb���)�l�|#fV3'I7���݄�˰j��Y��f��c�(J�M4�!�1��Rz�1���n!����u�1�xw9f�����7w�1ۢ��!��,��\+�ςρ���O�8�m:K#�Hƃ.mdn)�Eʁ�i��]�h�*
J��D�G��ؒ��2���:uu��E�%����aV���]�7R��ڔ��2�o�'�$�q�WO���Cl�}���[d k8ÎO-��F?ic�ǥ��^��Y�ެ��٧�3�+���!�����ms�ϱ&�.�)�٘��qin-��t�Koy��[��õ���Rq-���ײ�Ͳu�7�k��<i����Qځ��#��I��dS�Z���S�	���ciA��2	�Rĸ%���l8��󗧓�w���� \<Л�&��$#(�REcJ��tJ�e��p�ƗF��xUA���8�h��gNȡC�[d�������wA]����'n��w�n���b�-��"��Z^f��ځ�8�&±@�WU�"�L��(��n�n�v����*8��(>�w=l���-�i��-��E�-����C&M�
�y��@�z��o֑$���00�@�Ͱ���tAd�r����|�D?��*��ҶQ[��\.��|��NMV|?&��W�R���=簰���0�g���o޼}��uc*��"MRi��|��C4�`�k��y�'f�ic�Y0� ��4�z��
�3����*&.�
��w���כ��ֿ�J�Z�2[�Ŵæ�D��M�i�xR*.7m\W\*������9���҉yA�r�����З�3��Е��ͭ�ؒ�\®�st}��(�j��h�;�RL�3
�o���S�]��>t�V����3����$���IGTp�K�����IO�����E���f�h<��S�����KB�'����,7&����M�,@2��Q�)N��W�dI��P�<���fn��I��\��$��B�ɵö�H-�{3QD}��4~Pl��E���&څ�*�R��ԝ�k#o�Q���4���I+��A�)C+�ّÜJ�9m�NkC
L�zKӅ�x)"U��x�7�oz�����Iҧi�8�O��d�|�}��~��c��?k�Jv�f�ݶW"�e�8>M��Q�Zk6��rR
���N�4ɠ�h�,�C�9�T�Ir�ە���xi�@��%Q�bO�@Jp�ݝaH"�I�����](�)�Ĭ����deUi��b�[��̡�Ⱥ�Զ�E�ې$ܟ0Êwm*�eysZ����pZ����~)W�(�U���-0�'��Wa'�C+t�^7~=�ƾ4J�W6%�]h\(��C�,�qщeT�,�@Fc��RW����qQ�b�Rp�⩋~X����f�<W=��¸>Q}^��׬J�
v�>�
��+�=ji������Y�nq�n�\)�I��4t�����-��U� n��&��1`�R��dƃ6�u8Ws���#<�+�jn�����N?��ӵ�0g�hVغt�$�<g�qI2R�`�R��pW)1�HQ�UZ�6Ύ=N�<��9��eq��bp�'Ά�P��=OBd�N��C��J��1V��"֯&��PN�F�ѱ=V�H[1�"�h	q>ɶ���7��c��}�S��o!\�&�\)Y;6���$�A:��2�G���V��\1�&��{4|�/uLaHJ+S����غ~H�h�Qa\D\�T�$U/��̠A��h�&DFR��-�
V�%�����v:�@��S��c�9'�T=���2c\'C��:������ݢ��t.�d�i��vҖhr�2)ѳЭh��/����kP|�*u� �|��JZ�9�I���T�*��O)cY���P���}�[Ɯ���K��\Ճ�A?Ǹ>};cqя秕�L�c5�I��rͭX|Z'j�l���Pkʷ�E�1-��O�Q����ߊ�^=�Ɛ���0���I�D�JD�_Q��U9��2�X
^VV�ϯ�o�ɕ &�%���ܛ�Q3�:�RQ��krI?jB	�B�q:��}Ȕ��
�49���hoo!'
H��TD8}���J�]�n��%�P�S�Q���-<Lh�D�JZE��ɟ�X��Q����:��jJQ��U��"�.Z.�$�^�Q���T�+�9�*'V�C�]��Z���k0(�M~3�0>��>KCjx��{@P�)�f�’��d&r��/���J�+�X��R3�-I�a�`щW�CpK���K�_V��%(?�Zc�(�Z���	���\�$\�A�̋�߿��j�[p�Io#���j<��3ۂY�`V�O�It�F|ǙQ��@$=���/�ciӄjQ��y����a6�JA׿2Gh�ah��2���~H��g�,�ҌK�C|�K~	�5���1G�S@y1�n��?�[�u"c>Fc��`]\D�_θV�#h�}�	��#_n��L�
z��A�����	�$I�����]����g�gg�(��%�A_ݞ�7E�+�ZzUl�J%�G^���u+��o�����l��	ܻw�M�q*u�8��y{а܊F��F
+���w���r\�E`������t�F}70"ѡU�8��&e"O|�]�I�w�/y��j'^�LViVO�u�]&Qۉo7MH�֎��@`
��QP�J9�*��X�m�0��;F�ī�,�VV�����-�wTWOƟ�,i��5f�O�[��MIF�gC%����kkj���+Iŋ\.@&�/+�ZSڕhs|V��@j�b���Êb+�b|��R�Df6޻,�E���X�áu�s-u�!����,�_.s��Bܾ�v}l�<O�9<��)�]Fq(RF8�8_,��Q�dg9��v�q-�_s:�'��B�'GP���7»4p����K�y�V�X���ę���g��#�Ұ%c��5l	j}�b��jت�r�O1:��LOfVt��c�El�(�%.��������W��bS����Yyx<ɮ�+�J�n���'����q��;��^5|�wY“�#�d�L�].��kC����<�Q�F�
�L@�Jq�:F;�9��
�r���{���TE�^I��F�0m|��P�VERz[�iÝ�,���~	}̉��KN�d1�Y�2Ӎ�w�(�e:���BB���u�)L�?�C�GhW�~��6�~�":�0wB$l�Dć*c�jܚ�%Bv2�C)S
�6%A�x��U%m�Q����"F�����d>��ə�q���i�%as�&�aܾ�r��#.�_���&�+���yP��W�% �h z��N�Ɉ/+�&�'M�Wxd���w�~uN�׌�c�"�]}`����j�]df���#��Ƹ5U|��\�.��\���i�����+�j��e~�Z�o�!��UD.�[K�ZA2��C(71�w*9׉p�|�hWjZ_V<�p�Xx�YT�񛫫��r��hTݤ%c����V}�AȒlwD��$>S3�
Q����BTAE+���N�Ŵ�(r���l\ �/���H,��F���,���
f`*6([�/as6�msr�J��I[�ĪmɟX��X��&p�����x�D��)l�cu���M�ՍF'�"7>_	u����O�.��,��ȗf.����3�F��� g��Z`V:�rr�97N.�C.'c�
S®��:����ٽ*ו����A�_����&���mJ��1C.� �-^	��n��N�Dt�഼�I����w�o.�q�"��V��#є���6�8Ԣ"H�ca#"���,j�%��⑛�nIU*���%BD��{��s�ڲ��ˇN�Xn�`h�0|-�ըN�Q���B��g��`��zS�F�h����bQ��5s�?�?�28>�G�F.��m�S��Gl��E3��bh�Z�q=���KfcX
S���e�z�H�ߏ�� �t�E��Q�K�i��oί�C�t<�#������'0�Yz��S��!��ߠ[F$	�#����" �	�ϡ���_��{���J�=�:,KH�tp<�F�ݍ��5�B�<��!�D�HI	���9\�C_6�%��	��	���>}Z\�$�uq�Vͭyt����ɸR���E�y;iC��.�
��6I��ߴh�-�}$8�DA�Ph����߫�"[�k�&�{�թt�VI�S{��&�ޢ���	j�FC��)����J2�G`��а�=X��"�`NVCoڝ��V#��_8h�Gc(��[!b�����__8Ln���BOR����!99t�$K��L�Z_�^�f�~�]�"�p�n���q� �E��ᯭ�肽CM�h���Ggm)�������–���W���/���=6A+����RD�dWYk�k�q}��Y�i,��ٌw-6��>���D��??VA�Q�5�Q�"��H@ݜNm��q~�AW��]\�x����C��'=4*0�.���:+�j��
Ƶ�ŵ冃�\�ϟ�0?TKz*�[���i�^�|��3~9�_}Nƒ�6$�@DT�h�x-��Ov^ѽ�rR�[�5�A�-~.���~��C�"!��l���%�T4��XN%A�������� ��4��MI&H�⁒T�U�^g�a�•�*���^J���l�N��ɿ��uO���%S�R-%Q{H-�8�mIf��X�,>s�o��P�4��$�H�
3~|?����;X3�l�L"s�HdJ\d�`s
�)��u�$�]*@�g��
v%G:���x"��"�*:9�0,��vt/�[��Zqt�-w�8����~&�&��o?���N�XyY[mrl7���� �n0p�(�d1C^�B9�z`�<�]���ҬJc��u-}�pp���;�li��.0m��е�T�d�D
^�ח>{�5(=��:�:��|K��<����-�*�Ҹ�ܧ�r����U���8��͊Wb�l�y��{�~7�i�8�@�P���D�����\��Y����lH��R
D1�Ty�\�q�F^�FK�ߤEժ����nF�(�~�Jل~R-:�����횒F�Ëg�&:��@Q-�sՑ�^ l@1��}�)��a[�)���:'ڼh8*�+�DŽ��� 7�3*��$��R�+-�{��ۛ�uC���IԌ.Έ���N*)�!���C��ۙ��(ա� J�,y��Z^��a��
F�b �UĊ��B"!�c����UѤ@�6ے�5)a�9I�P�k���R��A���u	��5$p�>��^�2�:����`�޶�Џ���e�rSIɡ�dn���=�7�DD�3w��H��G�)�l��c�:��iވ�_��v���p�%��<�y����ޝl�1ȥ+C�T��	
lS�5��H���1.�KK\�tx�#e��f\|�=�c��k���0��!S���,�<�����־�����q	t�q��q��~#Ú��8����ѮY�0��;l�W|&�G$Ź&��y��Q�K������WW7��r��l
5�����O���ãz��en����ܕhTd7a�J,�:q��!p'�PM �-��q��6_nҎ��+
i�M� B$ƣ1tƲG#�E����W���o��daY'e�[���$v�lK�RHyn��1�۩&�x��t���w{�?�^0\JR�S��]nQX(VTN�!!{����v��%�Y�Gl?�'v]�S֥#Q}�U��/wJn
�P4z,��xX
���өĸJy&�.�P�a�1��s1��fld��.V��
(�;A+�����CU�����
oΉ,
�v�K4M!��!M`�Ќ4��\��
�)M���wޅ,*hq�%�j�fH�^�X���/q���/+��}�^t���}6���Q/ݱ����;�q��g?��K"���~:�t���ej�(6ù�
�yʶ��9¥���9��7����z�]R��fHd�o߷vw��4g҈���\E�AHx�'�4�8brƇ��:��:C�n
��{�2\V m���QD�����rp�5#N�n�i��=R�E�����ho}�����Bc;���LBw�݌H��51Q�������[�`\��R(*שZE2bg��M|B�[e%�q��Vəq:���T��+d�X��ȱZV�V�ܜ�>5��Y'#Fr�ppỄ�a�W3�^cN���X���k��+'���/�3��NiXA���[�L���\�=T#�q)Z]���!�:�̕T���_��lҦ�<H��#��Y9��;�1�@��s�kE�%Ztg�8�o�o�%��$C�w�8m�x�&5֥{5�'�w[yY��M�/�����0�3@)���idyz�Jl`��AR�v���.x��ģ�l�l�Uc�.�-����6tҎF.��?��{׼:�I�[󓊏aK�^٣%)�]�Q��J��J���j�b����%?�$�U
�[J�Ҭ��\�vy����v����a�/�8B��Zh2�H�M���Ӂ�
��U�}}�ju���$I�^P��A���j�����O
G���1�=42�+����%�j�>.�H�����&e� ��}Q0bq5$�}�0!d����\�W��aE
����f,8)C�����x^��Q�C���з��u�r�l$�02+|�\x>_Ԧ�c�>�-�)�)�CI�O��Bg���@���j�_vc�7�_�/�X�B��������Ο����\TD9[��hq[�{֮J/��ۑ�`Nh����N�l�t�JE���c�9]�gɧ db<"��>Bz�\vN�[U��\��
�	Z��_~?J�wuC@��Z.
y�)L�H��	Y�)����6N5�T�pKL)�.�a�M�|�F{y��.2����<�RW.����K��,}PgR����N-s�i�5�p}��K}\���:�r=$���P�2��%y�3�K]@�)ni��p�}`\O&�7�Al���F�Rx�۷��m|�L"E��g<$5=��R��*��v~u��?��c�o5|�W�<��qB�@���d��5ߏ�J' �>�)���2%��H�Kx�t���8Wf����X�|_+������=�ʥV�|ΆZ�}$��g�|y��]�w��⯝1����*�8B=Y�(�Z-!�fIOG�ˁ��"֎�5���İB�@P��T*hs힗��J��и�٥e�)�T��8�
%-_.�1Z����j�o_T���%ۋ�N&7a[�1�FZ�$Zp�leR·��+��'�$r�!�p��U3�����a�P�� p�ٳJ�z'�$�kw�5����C7�{Wh�IAt��K@��,���w	�Nq���0zӢ�'](�&��-Y��$97 vs#���.	�G��Y�}nt�Ȑ�L�ׁ�z�q9���?��Whל�K�H?#*H��ק߃���q}C���~cl��I�~��K{�m��sB�����|�L3�%��M�]����ӣӷ��GG�6>*�Q�$����R/�I����_�������}A�L�op�^�R���Ak��&-���~������d�"��NJ�6"R�}A��7C���!�,�v���Q\.�����,�l����98��~xy�:Lᝬ��V�aq5�UWM6Xh��UY��+ ��#9ϔ�P�P6�O���D#����ܠ�9��ʪ�E�o;�RSY���	fP.2%�D��ln�}�`���B���?�V���Z��*n�tWr-`Et��O��Kz�,�S9}�8H�'��@������T���gA.'%�[QȤ��Y�h��!v9�ݰf����npi�;uҬ��_�ZR-�fr�t��yy$�|֍�z��==��%�)�.P��U��WjI���t�4p�>��~@��,J��jh��>����9�l��LS�َڂSr��K��r`���t��ȸ���?m�j���O���XpX�>�o[S�grU��U��f�Kk\��@_��o����ӣ���/��KSD�����"X`T���k�j��o�����a��UJW2��xL�y��==b�=��ϖ�7�-@�y�^=��RNd9bV�X�lj���u����*�!��5G���/��-vX�j9�e��O���1r㺍te�;ȷ�%��o���Z����$ѱ�j.K�
�$�]�Jۻ����6.��[�ۛ�A�ْ���͐��6wO��,����rj
 ���=I�I�����`��H�+k:�Z)	%
L�0��W��R:��K���'��"�-�<Yâ.�+��A�>��:�!i���a���p�}P+��^��n�RV"Wg��\�n��o޿���8�.e���[�4@���J�F:�Y���"Q[���M���Q�%N;me"[[��	I�"���\;�݃�%>���Gk-���?�/��0�f����9��\�l�S�l���r�*��ܢz΄q-F	~�е,U��O{r}�\����&[���t���g�y�B(ؒ��4�b�q���I*���a�oO߾=:<֟�E�iZ�X����JT$%��n��z}C�C?�z�YR 0Q���VT�
~ttS��5�5{�%f�ѐ�Xp�1k=*ҀҒ"���
��p�����K� 0���Ǫ;c��b��q���[�-�%CRm�u��a��?��RP(���qb¼r�R��M��<ಥ��n/Y\�~b�:x��K�}}��"��^��>/��8��acS�#���f��J�w�,������"���VY%���K(a\˪ Y�NG8��
�#�L�Q�m��oTj�99=�n�P��&Ԕ�.�O��5�Kc�9>�,G��@���]X��������o�#]��]��m,������%m�Il�hXt;33Vp�w��y��"�"�`bT%���xI��|��QY8���g~�P���1��n�aץ�K�cK�y^7�4�^�����SA�\:b�t��I-g\/k���G�x�Go�,𫹦��N�q|^㚮P��b\���z$q�s�"�<����̆����Oߞ��ңI#Q�A*�IE8�t���5�LV)���
q,�W}��^��^������h���� �s�D@W`Z���%^Ø�t����H���Q�+_>ތ2=a�t�%5�E&��8Һ�N	��Q�"��F�S���Җ������\
�rIѾ[��i��jE$���5u�O���ٳ�����*�b�A�3hQ9f�P���	Y[
h-�b@������J6��Ǩ�\��y{1qٜ5��0��)�~�܊{�[-�#����s�L�:��k�ȴ0��B_Goڵ�[�6���7�����n�pp�*�CU)�"���D����Y	ˀ�Q�Hq�'msMb�%LX��J3�0�.�埲M�nu	�������s��I��&b�cs��sްye���O�Ly�U?r�6�vr���_`\
>Q�K��v�k�ZևG#�c�Zl��PUS�?���\g텘,Q�:k��v�π�X#׫e�b��_Uc�u���˷��vp��7p��,vQ@�s�/�
7����B4lT����^���%ЩИ{#���S�t%�w�X�{�R8�o�A=��g,�&�;u�៕�r�o���q�!!x�}?	�H�wo �(Q�ɟ���qN�[�/��je(�L�w^'�X9�-`kW���DlI�*Ts^t���ȯx�d�Ǘ`����q�|
��A��͔cH�^PD��!ȗ�&�he�d�3�|�K�v*��'����-ϲ�T�Hp+�WYr���4H�j�[�� ���$k=�5S5��s�	���_,�~.z�"�궪���;%���=�"߿��=Bh.߼�ݥg��>�Eĺ���Д��!fx%���?���A�|��%`�����dVM*"�[�?%˓����\
\��e4v�;�j13-
lKT}��o��
�Xh���{��)hM���>u�5�;�_̕�K5.��/��ٴ�mB�Te<�ւ����(���3�%��y�zU>���!V����ʒ����G]�hc��u��Ϲ:�^�Q�kE�R7Gg7��6ѐ�j#	'�e�Ȯ��Gn*�u��|�}�m�}��.S3$�9(���䪒��_��5Ò�q��>k�����9��~�d$5c���hx�Ct�,��)�V�%f�-��'���[�F�ٳϸEe�`����}>~x�4���W^�Rn��J�����ŀ51�����n&���l"J�&Q6̢�wT���N�>b^x�����._�w���W_�]u�a��>'�D�~Gt�Ej��j	&
�ٙ�S�� ��\Nvp��'�e_R���,�uq�2|�kZ�
FE%�MŽѧ�m�ߙ�6
��&�·-e��vB���JL�`^̨���z}1hĎaI�4KgK�$��>�YI+uXX��\��i�����ਞ^����ߓ���G��Sx�O���t�qMŸ}P��*��P�:��y@��%ͼ�s!4�-��d�o׌2&�kƸ,�ܨ]E��|��+j���N~�9�^OO�o���7�
������3�F(N���q~{u�hP@8x��U5�{gϞ�ɪ��[Ѕm�Ue�}�}V���7j�q�%E�Q�.k�J$��ԏQ�8�j�ؔ�7 ���W�j1��A�q���r<3{]*E.���:@Wg	\�O�?Y!|�2�����=��/]$}��*:*�	;�C�mtUjXr�?��̢yԀf.�e�����[�)�^��G���^���1���Ԩ�د�Jc®ps�/8��[n��]��)��-ZQ%V	��ߨ��)p����*1Ŭ�����9;��R�?dAk>[ÿ����h�gL�I��x�'�&O�\p2&2�n�U^�M~-	�J�9��4RIv�v��o�ﲁ�'�E�����Y�+k��@�(��)\�Ud
�"p��j�{��4�����h���~ǧn09�U4W��������7l&"ׂs���µ�q-F3k\�F��Nd�J����>���2&�K�OWy�qт#�Y��ݣ���#�� P-O�o:M�*HK?����C�ZQ�M��[d���lóIFs�W�%��t[u�6�
i�9{f�
�^2S>�8�w�q�N�'1Ʃ���,F�Z��!��a���1�>���JA�9��na��qؾ�E�����9u5�"B!CE��ٳ�K��`�o6�o��g��<I�Wβ�-�Z(*��~�ݮe�����[Mev0�m����}���f
N��Ij�K�rI��`���H���dޱ �X(o�+��ݘ\�Hh��(Awv66�,�[���J�߬��Og�%�/��aWՖ�-*��v��_�2l��Kd�閫2Aw�1�u3�\��\�T�	L�O�UU~[�]Q;�OR\7�����ߎyww�T���=̢ZRu�ߔ^$Y"u�T$�#�w3	�jp�A��K��th��	��G5����b�o�!��򰧮3�ӿX3�9q�SmP��m���ę~TJ�L�R�z�Ѓ4�ٖJ��J]���Ǩ�9��j	p�o�F~}k]V����2}p��߾��Ppww�>w6e��o�xg�!L�F�i~CM<��؟	c���Cj����"����n��Sk��xX[IGm@d*a-����_��>k�{�K�Ϛ�ڐ�j�}ګ��Q��nݭI�B���J)l�jS��@����+~LKX�����+i>��ʿ]ħ�&G���{�ȼ�O8��ں՜i}v�+�vlz�M~7I��Τx��۔�|gLՉӡh�:+�K|G
k{;�G��q��o����}D;[y6f�i��dը��՗/��}��8�V�"��Ƶ%3�^wۯ����F}�s,�=�/	D��{dF�u�[#�ݙ�D��RUcus�"P-a"(zmSl�[q���P�7��uC�\XB�+u���`�i1�%������[��-
\�;�����ċ�%�M�����p�O�K3���t�1�E��S���5Zן9!�L����fY6���q�[�qq}@�E�blg�H\���ݣ�C���O�q5
��kc;��g_1E���gg�Y�3(Uμ	ۛ)𒄲�O��j�Lf�>��W��u�@�C�S�_i�Vu�\_��ue6�b��/�P<��{A<}�ԅ���N��� , |DE�T�ϟ�1*��/!��w
��jCL<{���,5ݏ���wi(X�ӗ����,η7;t_e�7�ŅP1���v���Aسm3v�e��2�\�oH����{���7�r��/�1)���oB��� �]���6�Bu0pZС���%y�S!��b`#�L���ҤXfڒֲ���F�`��sʤ���d����V�F�oEnV2�}�2��K�[�2Ѹ�&Ǻptzj�..=O"~ph��Ti�V��E�,�5����%��=<��D5��q�q}�=~��Q��b�>�qi���C�,Z!הl�� �öf�S.���J2�O�:O���/��b@=�:������Z�/���7�	G4
}��U�g�����_Ъ"PT+�na�9�ؗ<gK��}�ٯ�!R
�N��/f]��>��ٟ=�{x�`�[��vl���9���5h��t�u�u3�~nZ���ӯP�����1;vcn��g���\.J�?;��u$�����5�x�s��5�����'dBv��S'�(,�x;��4pُ�袲���fY��J�7���� �Ѡ�K�O�y��uP�%ȇ�v:���h2�k��c�/�R�-V��J�j���T�)�#I����ݝ㒾O�s���
%��$U{G��J_��*����R��y(�/�>_�I�O#��q�%���1}�G\pl	�C�?��4?z�Xfc�/�Č�xX�8�e3#\�֔t���i�
c\��lV��ݔ��M_b��ϝi��8�K����{{��Z(�;MaK#��gE�J���?�a�$���M}����9=�G�^_}��u��#�k��b�2��ls|S����Kn)�Ao�Pd��Psw�x%Td���6h=�e�<"}�KI�T�%^ot<��+{EW�v����ꩲ�|�cy~4y�K�^��O��@����ܺf!�R����`�+bcG>��'P�Y[���r�Sg�F��!�؟��Y�5{�Х��f�9�L~�VY��;�sU�{n�l����y둵�*4�i,� �
�E����>�A\���Qt\�8�������� ���"T���]���r��R��֤�[~��p'e�R�om��������e��P"i)�L�zEϿ�lL���;�[($��_������ٳ��LC��A��]�Dž�_ ��<�{���9�u���(n}d��f\\�qk~������4hMpk���H줷�qg��!4_�!�m\Xv�m6�O��:�½(s����1uN�)���V*#�o��E����ߌ���h\�a���(5▰�^��*�x�#��"{/���P
�F�i
V�B�,���|�'J���H �u,��2��ş	-���E���Xt����=K�Ď�Â�}{���z�_f���2�(��ԅ-�@�d�^����r��}���H$�XpKRs.~��1&`̳6\�_?n�)r��|�!I2G�M&akB�X�LU.�)-~�>��+�b:���g��M�M���V���MT1juu&P*�>9�P>aSY�x
V����8
�Q*z�L�h7źK�2$:�a��T����)�i����vI�6bl�>�X$��Y{{Ӷ�ml2a\4��=($�*~
ZZ.B�\��3�[j��(��5��}�������Pw>���u�?A�&a�t&��1s�F��0�#;��8���$���ƖԵ	E���O��.�ŋ�P�t�\�x��E<y����$٧mb���>I����$�o������p^b\�n��Y�?j�U˥F�ti�R'u��5�⬥���:3G�$��vw<F���~�����m����Z�`A֎^��N__o��}c�:���q�r��N���
I��b��_��'��"�����6���!�}����_��b�|�,;a+�2�Eږ�Q��L
�QBf�E^R��YAȤ�bF��%7I�E�B	�'�5�=��\~m�=�x?��_l^$���'�-QZ}x����ba�_Ǭ¤��k�[H�[�����N�j{�;َ$�Ҝ�ޗ0=a����,���1�{P�<ୌ��5qQqo�E������jN��3��M�"_�d��g��M�v1�}K�*3WA�=�����M�M�����;7h]���*�t��Pw,�-	AeIE��.�ʛ����d	|�GS�<,�	���7�8A�g�9��F�r��e�R�$���8��.�Ѹ���z��j�<�鱒�-Ӽ��ȸ>��y9��Z�q=]���
yO"�{iƥU�9^ͯ4�Պ.q�b�Z�q�DϣÜP�3����5��h^��s 
���a�PC��7ط�t�7��:�=�1��W�b!�k���G�;#-2^�ğ~�����E߹��=4!CG�ƞ,�#]&vO���~s!d�@��]˸+H�q���l��-�	�ŧ������o[�#��K� /E�]�
n�Z'R�����d(@ҁ+��a��Y~r�J@��	pa��W4|+iV�ȇ��p���!����n�0w��b���m2{?fx�*�|�J�T�e�1��?i:��r3�:ހB����`]hKB&G{~�ʺ[��_��7>��!v1o"21e��o�Hk5n�@�w����`�b7`\u�d�gI:�����{��DCE��	��/F�?G�5*Z��LK��Pl�F8���G�E|�e���y͞Vc�n�J.}�6�I�S���!HjP��V͸�_Yn�^��Ǫ���|�!z-���\ ��liҥc�WPYnvu�m�뾃u[��VG�-�C����0y���?��=g�t�����ۃdyUΘ��JE@lZJ�R�>��m����@&(_�x-K�~uB�#��-9�6|i%��x���i+�C;{W$�U�R���">�+��%c^���ؼ�a�š���ˡ�si8��e�5)��9ʹ����t��^�6ݬ`��Z�M�2�r��5����#P|�n4}#�j���NYh@��%��T��ǯ�K�w�_�u�\C���i�<��Yk���q��i/��FsX8��I	J���~�_������J�~2�0G�!��A��<Ű����N��I�4j]��>�E����;~`�e��J��T�"����Ya2��	�5�F
�^��LZe���B�<ӊ���p-�I_i�Qpu�4��`���e��ܺP3�}��G��Þ z�y\��ȥ)�2�z=�3�����U�\��/Y��Ќ���>����x�b\��]�`�5���!�-~{@��B \=�կ�P����?�(M2!
��Vw�-	�k1�X'����;���3��F�x(��W~��~����t'��!�{'o�7�P��~6MP|���$)����?.�r%�uɯ�%L~�v����[��Q��)�������_{NT~��u����H<얟�=.[�]�C��[&w�y��p�%�%<��*�G��H2-n��P��f�C]w,�&SAhf0�:&Pyq��5�׽S3f*�4��-Llޝz��&K�$�5�O/~��_�?#{:�c9�����D�2�w�U;����(Vd�g��ژ_�]��ET�Rwi�SaM���4q�5j�i��Q� ͛��8Rɴ��	�,�\M�zN+��eW�>��r���(�Ј�I
���O�%���@3[�5���+}��eƥ����Y�U��i��顟���>ti?ģ���4�I�B�Z�ߨ7���N��\��5�s���:��"�K���w�t|qYt�5l���S��3��U�|#*������0���䢸��g��D�����Z�א����W�G�ޞЪ��;�r�rH�
�z_��Lp���<r�q5
��oێ��R�ն��4�P#?��_%=wx=��P��mz���nc�0����)Zq6�?>'o:nق-�e{W��e���
tyy���IXS����ȑO_����K}�O�!�"��Ͱ�+��ZA~햪C˼f*�,*qW\ʶ�I~^g��/�G�E���n���w��������x
�9=2
פ����f�+n�i&yܾ�;�b�]t[�ΓI�~��v�N`�aH����%��H�o�{S7�_��TϨ�|�5�%X��F6������y�@��cL�8�8��?��豺�{�z(��ט��{�K���%4�r�ĸ>�Y��4�<ݳ��N��S9߯�[�Z"siΥ���|���N� ������qMA�
K�������j�r5��{Q�Y�P�@�L��W��P�"i6i��ì��aa�\�(�Iˍ��C�	��\�K�pa��LK���U*Nw[�M-�$�Ȃ�����ݠ�=Nj�-�j�p=8�YݢB���ci50�y�� ����NT�lbV�kk0�r��h\�m�.X�B	�&�����\i�qpC�DET�|;4��9kb��-rxI2�O�V`t@�� �
��'���惵����"r5囵D�ڳT�Q�>泊
�8�
�^�v���6NC�e
擧��]g��fO�:�X��3T��͸��g�����&���ʬ��P+2���C�8�7%�Y�wh�|��Ě�$7�"j�Ů*�p�U�
�E�h7�Dt�jy�fCW����j��<�[��=�{vidZԠ�f'm��r��{�Ҍ���s��˫�.�=��5?�W�$T5���X����G��[�}\�f[��ww�7r��@�?q�z]V�U�Tl�B$�����V�Z��OMxQ'�(��4���*���������K��r�����J��`���!�s�<%�+�<����&���iL��b��ݵ���`G�9��V���ifs�JE����J~�[�ܺ'>��J⛩T�;���d�#o�=�O�/e�4e���7+/�=�\	p�L�5��–��"�+��AERn�$��p�ୄ�痗����W2g�Wd��+!u�����NM(���+��!��!�TFȞ�8T�畡� ��B�Xy9"�PZ�4�HSx�ް��_/Nߟ^�>�e��~��Wc�X��J؋�|o�E~�W���4�K)L��g	)㏱����I@�����׫�x����>-�`Xh`�CT�f�ш<�v=^��KS����~�Vzh��5���DL
�d���ن~-
��.�r����������q}��6O���͠��;��;��T.=4pi����+���9��ڦ��-O�Gn��u���U�n�^kfR6Z]�y='���-��p�@JAe@eV�E�`���~&��K�����,�E��顣	}	�h !���k��	
ٱ;q�(�0�eR�]�uܵ�<'��|�
(�}.e�X��w1������e,Z	Q�k\*�f�D4.\c�J����)�U��r),�tO>Y�޸¸���c�0تv��+0��>��G봪}L���)�x��ӑ/���֘�>�u��I-
�"��`W���֠���|��pU@n�jc\_�i���0$��G�j��Eqyqzv4�N3��["C���Ñ4_;���/�x��D�Yu��Q����\"�UU��5Y��F�o�t��l�>���� 2�r@�8o�F[F0X���ni����`�w����塡��K�I��~�*]�.nk
�W5���ˌ��\O�q)���[��t=�-�g\Kȥ���W�y��H8-[u
�Yhs�lt
5�x��<���B�TA8l������Bp`�];8�]��jΎ����������̷���[ݾ�Ă�B)Ii�'�a���"�cB�;-���N��,*�;�.x�x����ş!b�������W�P=�dq%��P=�qJ�:��"��b�pa��i���I[:�=�X����”��Sf��}KG>�yG(���W>y3���V�V!S�H�6Q5^�5���7��}�R�KL�7s��=���3�V��4��s^�Y�J�������_�>+�d�9�
��$��9}^�~2ai�ܘ�
�W��q|��m,f�ӟ��JL��f�@���C�N�&��d��B<�j�a`�Ъ?`�k7�v��i�E�9=�D.��3������Z�`\6�Jƥ�H׌�����c���r0�������|�~�����W��i��}\����g���Z����@}��v�O���F}\l� ��gr��`���૏�KcdX��j�1q\���Hȸ�ܯ=�C��K��k<�13v�x����\���9�^
���C�沒�>�'���H�w�6/�DE����t&�HW�v���st��R6Tz��\H�$��?��>͸�=��5l�^�TVC������c��}^h���_��t��b�c�Թ��Hm����5a ���/!E��L\!yM�*��U3S�7�>��;�xW	�w�n��b08������O�O�M�u�\�dhvC�:��߽�4��%����D�mE��f�lU� JkEn�7�**|��?�+7�b�[��'gD�Đ1�X�m�(V1���#���ꟿ���s^���[��
C�P1��Ak���o�3�![�W/Ε��!;Vf��*>#Bo?C��O9���Ǥ.@�q��Ǖ�m�Z���F�Ҡ����xԊ6�V�s�Q��e/>��k֬��^�`�r�k%'qT�\+������(�:G���ǘ�c�u�tO��0U��rc��%W"��6oj��D�ڵ��T��A�������*��p)��p-�Y��4�Pl�wX�N>� ���J'��||�`X��lL��x5=�?��|�^:�/��%�U/I�]Ɂ�܋8O��I�_B�����5��Z)
t:v�x5��&�Q)�]2�����)��ѯI)�ͯϊ�C��M�Ú���Fu�M�Ԉs�MO6@��j7Ͳ��@/�K(��U
Ẍ��J��Um�]^��������	�1��г&^.zhB�#���Vq�q-��_T����f�G�K
M�V���W��e��ҏ��q�ظ8�'����ڳ�܎�*�f��B��La������TT��r	��$H�%b��U�Sb;h\z#!K|�c9�{�'X���~�Re��S�2�4jp���T[MGk��Ǔ���d̷I/w	R}#/sME�z2�8�>�Y�+��a_JE��E����V(��U�b��<.U�Ew����̀�&���K����фKކ�
ѡw����dBx[�@R�}5tC�.>��q$ۓ˳�쭐�W���d���ѩO^�e҃�I�^����uvY�,����$��?��UF���K��$�,�/&��rN��NS�()篹ΐ����ST���/zcm�J�(Y!Ȝ�!ό����ѯ}�?�ϣH��LR
��BtL}3e�E�xwrnR�UV"�I}(^�h�">0}P5kvأ#u,���f���������x�#�7\���e��[꼚�iHz$X�m}�Ԑ'� [�[������OR�����U^o.����/�`l-����
���{���j�"�
[jT�z/XM�uu%ޮ�QU
�%�-B|��4"���bX�^�
��B�E&����&���d?�E�徦��1��$Cѿ�NO�T��e��tx�e"�GI���K�2�#�:^׎8A�O���WApgm�ɬ��w�3��ƹ�N�Z�
%(�MY�V?i���C| r�Jy�q���a��)���Ga���'u��Xp��L��$�>l��ܢ!�D���t�=&�U���8j��B��nj�I�YX�;��,d$>��**š�ވV.S��XV�%���.��p���Ҁ�c�ABd3A\��+��R�����*��x�BÝ�(m㒸��R���EidW�f�Ԏ��R7� Y���i7`���:����vQ@�Lt����4�	|��:�J�j��W�_���`��-�伸�o�����Ʋ��\�~q	�4�������N=���7����x�"ĥ}��5H�F@���ri��δQ}2�-�[+W����H��B�Z^�MGbp(�!�?�5"����2�u���cS^��Q�c��<�T�Bَ�]�Bx�Q�kl�&�ljP�2'��m瓓�nK�NO.&��
���5f��|��N�v�9������5�q=�)���%�3�؟%ͳ̆���(�ϝcuć#AB���K%�ǯ�K��o����5�d��ݤ��pg���X�?i��
O!b5W����2��sY�|X�0ul�+%;��D�S��=RA�_
�*�\Dn˱����������R:@Di�1�]�.�2&<�X��Ϟ��i�/>|��%=�7ŧVSP�6B�͛��@MC^�2�.[��A��(�$լK�ʛWַ}�%H� ��J}��=�钘�u��X�pM�g��G��&�8+�_���P-N�f��C��o>1���~�`����$q�{yV�SuB<�q=E�4�=[�z�^�#C���5z�?�VN�|��ña��c����;���ΥE���8
�TD4E���ͺ�xM�%z��E�(Uӳ�S���\`�Y5����l4�e�)Їav��^:�I���ŸE�"?��G�F���I�Y[�袾az�EmK�e@�V
��g9������6>'A#����0v�n��,A
0
~ҁ��c�Y�;1�v9
SC���1�[���Z���\~�eI��a6�S�ߨ[�Z����8�ɡ�fqQ��1�?�'��,�ʃ��҂�␝(�d"�\)�n�)���`�4�@�@���j�f�U����v�t�͒�O����"���j�G<N�k��R-Q��؈�D�s!�[_�H/N�G]\[bp<U��x�\!]�Sx�o&�O��9?�`H�C;I��+�,�0oT.f��Kc�@(�lR��j�j�ZB�G�9��C��k��7��b�\	f)�~e�'�.�)�^n�������^N:_P���K+�\��-1q��w_��!ޕ䞞�XP&�;~k��.[`ɫ2���P/��&��i�qI�s�r�Q�B��ꥪ��e��Em?jPQ�f�u�i�~����)�\ˊ�'R�Z¤�"��v��%*�lq�Ԛ6��E�m�-�M�=R�~S�f��iK2[�޿���F�g~V��0�.�%�_���I8�B�±FFͮ�T�������$m9�Z�E��u7����K"r���a���”�
��v_�DW��V-��M}+�Ub���`��1�+�U���l��~G�kM���	q��+���
$U띁� 0UX!\��~p8�o
'�"��#�+'\+N����OL��u�-�q�u`1��鯏&C���l���5�o�^V�B=Sk�A.O#���!���"{��9aP�[�.Q)n��@��:�0!a�	�K	��W��@oWW���k1�h����].a��~3�4��4Rq��lN��+�^lpfc�q}��6����H��v���%�/�_|���[�h�q�	�����o?�����n2�}��P��m��~��ԡ�iK�2Z��Q����
EJEҦ~��eE"�2�ˆþrE2|ݨp�Uj�S�n�4����?^m�����4	���%@�<��Al�	%�ϒ[/j����n!s����X�+��"��
�?(1=���U��3�WR%�@k��Ґ���P�W=�y@XR�s]u�z=��~/���k����笐�/�gg�ҭ^6���N69�Ѵ �L�6�������J��@H�ʕC�ƶ#95T�t��%��K�z¸�GAh����n��b���6M?,�3��g�Y<�(�^�+�����p/���&�!\RWn�P�u���%:�kUJ[��{�E��k`#�4��iu�N=A�701s���"�ېn�f������CF\m��	-��F`�<�H�I��`I�f����R�5�KPH����ٸǾ0��n	��c�4Vq�k���lL3��mN��q}�~��ǥ!�2��?�N�K����}=��
��%1\�q�p1�Dᒶ�Em�V���[��2DL��H2�wv0�Xߴ���qW��Dĵ����@ހ�&�M€�`n	<9�>vZ��. Y�<�B����$.}�}��^�l��pe���qELף\Q=VQ��W�4��_�A�����j�"�ib�~�u��ˍ
E�.�W)}�(�������C�!�V1��Z��E����h�~�p�S����ߌ#&�v
(��h�GE�J��&��
j1�!s�m��,V�d��2���� K�ʲ����7���-������"���CaQъ�|��]�r�0/
Y���b�oA��A����h��g��A@��y�&�+��G��k	l�Vv�e�B�ֱ�p�h�C���'	-�=ϭ��5��,��M��z�Ӱ
kZ, ��!\f\s���سةt��Cݩi�Ư��:��郞�
|-���₽+5.�\���tM�8�'��g���fc����Z/��­����-�k^'�y��
,���hud��<>b�,W�A�L�_yPՋ�M��S��w�:\ ��@E":/�钨���(5�	�M���֋x��>���RQ�P�X䀞�A���}Y���	ty�6 �/LHo�}�����k
M�
�Y�[a��3�M�0
�YD+?**CY�a�i�2�
�e\�A��K��ՙ���i�m3���G�8e!�59::>��ٓ����];W-�Äz����(r�V\p4)`�5St*�9�5�=D��RAXEͰ�	Y�6�	�j��d��6�I�N�X��{4�%"o�dP��!#�~�<�[&�C�[��8�w�煉?_�Ky5�@Ai�!�bE�F?2pA�d�L���8[�яc�Y=w?| �����%R]�j#4��7Lnٍe; ��i1]�w�u'g�Ќ
Lm�qgY��j�Z�X<ܭY�恚��(��R�ܠ�_�qi�zB�_����c����dh�z�Z�,
�o]0��:8X	\�	�A�ݪH.�SJŁFQ�l�oH���Do�q�d
.�T�ʖ��H,��\k���!�+�x݅�\���Ɵ_��"o#�{�y�Q
D��f1ǡ�<�w��W���EN���F�Q�J��+p�5L�K|��XMn�za�*.��Ȑ�ժN]��|�~>�[ ��R����j�W����U+�A�_�������7���O.NON~�+<Z�[n��ꖴ�����º&��њs�_!�٨��F|�^���P��R����5A�Һ���YA�К+Z\qk�93G�<@�`D6Vn��to���-l�Q����,��B��mlR���.ц���_΂r�c�e�	�8߀n�	�� y�Ԛ�<�M�c�9�T�fWM(#�y�ߢ��J<2��VԬW0�Dm�f+5.d��φ��3)5V3.����j��Ơ7��,�O+ks@��\����Wf��e�s�>��s���6.}���-M�8�U�z7�
�t*C;O5h[�B��~d\�%�5nb�Q��E<��ʷ�x��[����J"_�D�PkT��
TݲGE�ԙL4�`@W����9��ÃP���0��
�� v}v;P���v��<O,��6v�D�:��M�$�O���(��,�L�7��~�D	�����$���Qs��m��qqY��R�α�UmgkC~��tHːӣ~!GZ�����_'gP(z$�ѕ�|q�B���\G=J{�'={?pՌƓ�k�4�D^�*�l-S���F�g�Ē�B�BaPThddm𩲹��85��,�ah�A38+C%�C*\f
b��UV���ęB'�Q�!f��C��y�Z��6�a�qjS�e�ӣwWf'�@���H�0�^�Y����BW#H�ZV���lZЩ:�^�f�@�,�1[�Xŝ
IǮ1/W���p=dVl-���=y�`
=Z�r��C_�h�[ܷ��f��G��?˜���I�F��p�4>='�yѦli�����x���)\+���I�ew�fC���W\�jа
�Y�
9�lh��z�1�meS�[��K�gxUj�*RE�T��&�U��8�H�p$�������$s��f�]�65\���azbY�F@(�`3@RH��t`6�XK'�'��܌Iſ^��י����m�׳�ߪ`���='�4�^5��4�AV��J�q��s�׻1߁�韍��Ч��	�Fԃ��ԇ�P"�u�W�p8H�R�*8K; ���LΘ���8,��%Q�"tՁw,�`�x�İJ�by`�WK"�/��� D�/s� H�!�����9~��S���FarK6��?��(��I��>�bd����iQ� �tx�JiO��*a���j�$i�h�d%�r`Wߋ{�W͊��j�g�"���zW�g��� Զ0�e�b��P����Vl>�*I�U}s�-��~ �>�7���Q#��}�}c9s�S�����4�������q6�b�pQ���@�[��Cp�`�ڨ�l��c�X8[����iK�mR�,��d��ذ!B���9��&&b�g�u���	�*K�2[NT��ض�R;����H�k�h'����Z
dYn��A���2��Sby<()E8��՜Pԭ��`�6M�N�nM��;����J ���gͰ�B����@���M�p�~��ݙu���;���`p�e�쌸�w���~�st�{��8A�Bd#\����ư��9�Qlxz~L��
�cCJ\d;@@�*��$�b��d���*�[�j�������k�u`�$���ہ,%�FvJ3���J�#�i,9+���y�	(iV�>קgqy]t�S�q�պx��4��M�X��Y5���Vf�
m��|/.�‚�(`G�Y�ƪ�]ǭ���埙��RQ���R�Z���7s.��E�H+�x(Wix���*
T� q>4r�x�g?}겏�iƥo,�|#��,-�k��5�{�1�Љ��oi�]�������L$��*^���,���|��
V՚���uBQ��P�I����<�$�2�_o�_��z�W|�W�&����Y��:cǮ��C�l�,zsXW$�	�u:��X!p|Jj��4o�A�{�5n��C+�7��U8�ѷ
��aEp�s��Vm��Z�(xQ���(�Bs8�3l����r�sy�)�]N����:���[���
h�����N�
p��,(K���
�Jq7�@�Q���$��c�+!v�[��ʛs���P7��8#X��B��6	y
�-��>���`�d��=����yx�B��Jq����׿>**[���l��y�jB��C�)Y��U��Uc�)�F����.D��!N�u�oˌ�;ft`�5���0�V3.��Jc�,Co�Ԯ�Т��J�%'
kr�_@����k�
�R��Xd��ՙ�䒟'�V�V�ƿP��&Z�"Pu�:}��I�K�n-�w_��0.J�I����H6�@	@���7=��w9��rU��W�I%�S��i��D�py�S���/mB�*��x��Ov���}�b[:QI�^��{M�g5�/_�W�F�nH;��L_�L��r'9��(4�{�����G:2�-w��\]^^a��V�j�x���l��,�iF/A}�W
�$|G����	�:��t��>iSp<Y?$,"�~쌕�P�3���'�Q�W���痃��%�.@T�\Dv�K��Id;�1���M�@��,�O~�ۦL� �곡�$K���P�sVh�O��c��bN]]\�� (���c���J�@?cFη�5b��g���b�ү�^���W�j~ܑuה�AH�EC����À��j��Q���Շ�V�l��+D�z�
�6e����p=ª�R[�qq��k�+���^K�iqz�qZ�'6��b��g���ټ���Q�п��+
��4��Y��Dq�"�{����J�v��u/q�����2��tQ	�M��.�vѤP�m��B]vS�*����w^{�Fu?Viߑey,ɲ���y�{��<��ˠ�~�O�}\��pk�Ft����]|��->���19�H@��=]�|l�]�m��e�
H;��2�p�ù݂gb�v�J_RX�^ETm�b�3w��q[�:�I	�m����o�����zt�<�V������š�̝�W��j�^�<[�}@*�:|())�0/hXXCݦ..`01�|���U�V���3r�&'�r�ّ-�����y�M��i� �������݂�{�7z��Y�v<�ΰ��������x$�2�g�Yu�0rA3��oG���NF�7����*�g�!i���q��f��K��6����a�kH��=���wz�xI���!Rw�v?A0��xH���
dz����I��v/�TH�θ�!��kj�_<���G���A�t�&_�<�EV�+P4�C�>�QN}DpE��@���>�y
rtt2��|�0�eB��l��������Q����ݢ'�.[�&U{Z9ʍ=h��W�o�m�#�-NL2�w���иB��)s���;���-��H�>�l��f}X䒃�l�p]0��
K4)�4�C�
�Ԍ�Uw_��Ņ�ݹ]���
�f��,��hCG7�S	��I-���j^b3�;���J�Z�3���V�F�3�%�?�	���
۝��;w�(hP=��F� ѓ�8�܍ʐ�L���&$��n�v
՘}4:��n%��g�Oa*O�@�<���G��<��OA�2`38��#�m7[[�e<l(�|��ϟ���k�Ÿ*�0�'~���lè)
�G�n��MД^�z�.�X�֕�g;��]��L� �haѼ����Z �J��+-ֺb�����A�z�V��j�b�zo>�d��k��^F�$�W���-O�2��𳧣�/2x�_!��6�˚�����Ȕ�H���٢4|�m:�A���f�S"N���N����������6
\�/�JK����}�?N��l8s�6���0k��vT�¤p�3.W,������q�݈�>��T�)�C�)����Ƕܺ9���:�-�kp��Fe�+�Xx���]]@q�M1;�㠔�I+a{aA�beaA��ϳk�bn|G�$�� ��l�A�zsK�mnP�V�a�7�@�
#K�~(r�E���	H�n'|m@O��X�ټ�N����;6V�D%�#��֚�
$y�$
�7�͎�8W���kC��(q�B
Bź�S�\
%��[��,��%>\�Td?qtv���O��v?d�N*\\V�"?1��=�c�N/X�c�?d�}K
�I.�@q�Ȉni�6�(��E�(%��P�C&)R:�ǒC���+������6:�,�aA�s��A\��n��7� +™����ү�ݮy��9��N�k7p��(db�XȢ��k�6��A�Wtz���(`�����Nn!�/p��Ra�}@�����J)���S�Y��6��D�V9�2�\.�~1��.�\����q7���h]�.a\\���q�k���Q׮J�����x��[7u<���W�C��5��P4�%�����9�ˤ���P�q��s�=":��}�=d��UOaBL,��HֲW�b5DqEY/5vy�����\�{&����Tj\�Kd<W���n�-%Q�)���@��W�RAX�"��̊
U�um�>����8��3�I<2'(F��<M��HoB��$�H��4�P[��{6�!�����3�_��y����s��G���}Mmm���kaRU���J3��q-��Fۇ���р�v���p$k7��'��#���t.Į��1+�iE^fJ8��d1�$�=�W#\�ے�@�u<]5�N1I��\���}���(�O'!KVb����:~�������:T��v���92�G��Ka��Ǫb]�U���� �e��ho��N��������c��
���Ҹ�F\�)װ���t�����6/_�.�X�3�Vum_�*�s�Ԛ�q�Ӱ5��\�	K�n��:��`kB��.׋o�-%��y����p��ձ�G�&���ż�H��l�H}*d٠q�[�U\X�<�+�0�S)��ts�Z���~�RWb�7�2ޟ[��8�$�O�r$�̝d>�̠Qؚ[P>�]�9P�6$�f#S�m��
{ZzU*�A�]Jgfz
1D|��WL�!�b�ok{�4Q�r1��C���<�!��0���~`x�&#��e�Ī����x���ҿ݄S���F��O6�}L�^�5��N�%O�׸��Ti��Um"�ӓ�t͝��B Ӂ��4P�,찰zUC�'F&^a�JK%�K�kQ*� e���8������;��)�����O��n�i�^��^%&^����n�gϟ�z�U�m� (s/=�#�*��Eփ�W:�,����5�tpsz��������K�7��ى}
�=�ӝ�����핃���z帥���_���2��^�����-.�wq>.g�xǭ\�0�I�����Օ�c.����0�b[9x=�t���\Ϲ���]��:؝f\(���`Wo��(f�!������W)$�agw��8㤑\cjsa)N�Hc+kgn���}�b).E	m������l<f��`nA-�q���w"̦r���vRq��w=yX����-�y^�S�x�(\	�֔w��g-�~2�@��@��hMHau���
f{��ʊ�_�й�aK�t{RIc�,2�S�T�g8P_Jq>#O�ٮڴ��p��|6N��b�ʅ��52���U��h"�
FCv4ы�jě��>�ɠ.�E���s,�Z�t���o�"����aA�ֲ5HNf��7�V6_?����>,������-�Ӎ�צ�F_(B��L?�U`+a�b��g��/h
h�M��XZ���0{���CA�u��Rm]�l�ʲ�}͔]fm��o�!�+��Q�E�hӲ�D��^�����K�%��	��QB�r��?��mc���=��uɷf��8�[��o�NO����w�9�Ng7�nj��?j\t�-�X�رB��:��[��tX���A�M�Z�|�[O1.l�HN�ޏ��S�'ô�CO��D
p�!�y=�sw�(TFf?�S|��A��ԒM�bE�ߜ;�smn]%��ܵC�1­[)�����&�*Ě��4�c{X��Vy�e�WX�ZjU�{���fҢ��_������h���/R����e�ghZ���C��o+��h��@��jQ�����'�rȂ;�v���'Վť-d@��y����t�p�h�d��!��25��@e�y��`!{��l���b/���K�蠑���}M܇=���=���O>����i9,v?:�?r����Ǩ��M�b�N�L��w|��ŋ?�t�M��4>`�IQ�Ӡe���&��֦�g��S^a��^��\3�۽�#�)�m�J`x���&Q�
��>����W��G,��r@������1�Ŀdb����I8�έr?����ӓ��kW?=�������~S�w9Gpv��K4	S�Ng�ָ0�o)�+�->r�ײ�>r9��2�TDQ�{@��9��O��B��J�.|(�؏>�[�6��|���T�>�U�)	ChWjN�>���%a�����EXT���_�	�l�kk��h!0�杹��
}��M�1u�yʠ�f/H�G�B��BC�"Y���I�a#7F�dX�Z7�I5�b��d����@�ĜD`��
� Z-I	��kQ����|��pGgT�/G/_6�{�"�vy3��Z�݀al<���3�����A��ׁ�8a�*֨7o��B�-�`�R�X�b	�X�Rl'H�6���@�
�K�g� W�'@�`�?$�^v*�����<���S�-T�[,���1c����>:>�����#�a�@�����dž?��z=�r�M���7�Qx�;����6���+)�9��m��j��j3vpq�YX��e���-�i�o8�kwc��)��N���}�)�h�;y���`����]E�g��]���,JMC�l!��_\���c��X�O^):�j�a��Ո9b��-�f���p|��4|����^������.��Q���b��<���=\X�j�O�׹:w'
�����+`E�Hw h���y�6�?�;����I��
�u}�W�V%�Cآv������=W���Rd����*�Z,U�ev��+��
���UQW�<Լa�#��
sŶ���IRė�l`�R���(ɇ�?t>��E$�����ўf�z����e�����.x�k�a�a'�.V�
��G1�	�	�8��t����-ž?c�o.��5Ϫ`�
~��v�;�yP��"
�
~�rogo��?�D_S�8��`tx����
ƐzhU��x���� e�9h~��t���
(_��^���?q�~��<0��>
K� 
����a\[ԡ�M++۲���t9�в���l�����.�$r9��A��[����\��
�)xr{��Ռ�S�n�\��F�trz�����*�������sW�quiO���5>2Q�e��s�rE"dz;Ϟõ�˝'��X��p��VQ"�f%�b(T�p��&\�Ȑ\I��6O4�5d����}.J,��k@�s�S�Aݑ��Jgan�
��tj�8�C�s�n���0�`���u�ѕjd(�$D�b^*�E�O�#`K@��@2�ۘG�]��0e$s?(���M%IZ�,�b)���2�K�i=�5�8m�پ��I�q�Q֛+M(X���!3g�D�#0qP���zhH�1aT�T���Z�м����8:܆�I���?$ ue��+�Vd5	��^`����Y˗k���V�!c��_ �U#hАD����_��
ij���ʏF��o�:�jFI���Dt���69d��ѫ?��cT��+��8D�/R��|��un$���5v+������V��������de�\�@�DkD^�M1룘&~�s3���RM�)?��tM�{��9�'_�8�r@��g��_�ƅ.�M�:�z��/��[rݺ�{��3�w?���<.g�u9$�-x��;��薃-W'^�����p��lKa���<���b�J��Ö�Y��i�KZ8m4��Z������
C�f�Q���cl�r��T��O]�+>_Q	<��
�����4��b&�W��nL*�U�?��r�&�"O���:
�b�B���W�D}@R*Z�+ñ�
�W㻼�`\����z����V��^C.	t�)�a���]@��x��f�QY��q��oo���?d͘�#�����%���]���Vd0�gX��4�X��m�!�0ɡe�
�~4�2m�M���;�Gũ���`�-A�8e�@�\�J����L�7��B_o�gl��я�.�%�<$-�%��E��{H�
{MKa9l�W���LFV���=6��h���L��$/���u��fp�ͨN�ϡr�)�������1oDIs(e�V�ph'q�.�i�u!��⌦��dO�C��j\����j,n��cj�.9�s������WWWo}Tzt��-���	u"�����׿t�S{'!�Wff��*N'��b\g�0kv4�`�����Ct��B-���/{\�1��r[��k�]�!)%Ć��;��ƀ���a��E�(t���ù��B��U���i�x�e\i*�R*!�*�J���M����p0O	�}��_���O�M�|����R����[X��&16TU�}�{��k~��|��(�5��F�
+���gJ�#�\��~.O��d	��t�#M>:�O?m	
	�g��֮�%�`�����nhg!�)o�@Є��r��PS'4q�Yk{��=���m�i�jˉ��u��Y� _*$���l@樁[��<h��\Y���'�y�a����ƈ�y�Gû��">�?�����t�sA�owcH��vt��<���P�6y,��[kB�Š���V�A
웰/{�S��GO��Ծ����4
ı�j%z����,���o�5E��ᙽ�o����1?G(G���q.����哓�7���ӓOOn�Z�u����i�'_�~���a3׻���o�qq=�"xyT�3܏��[N��X/�󂕓��@�z�r��đ-!������|�zr<ټކRBJu�%,��wM]n|�E���LT�t���T�����4��"�\]��B��!�摁�x��m;�-iJf$*�����6�_�1��)�x
b�5����"He��	;e�Q�S�$�\�\ώ�i\M�pŸ!;�'�>?@�X@��s�@�MrUI��䱖��C=
Y��C��"�3:��0Jģa�=�m�����0��J%����^��9a"��`tVQ
%?��*ʳ�
ox�Sm�;�Z�:��
	'}�^�0��f�"10
�u	��6
5�,�X�0f��h
6��М(�~�~���VV�݆_��^�#shW�M�����:�`k��}���U�o�+5)�V�3�5��^�ɴ�·�F�:���wW���J��q����$����fL�~^�\���e���/_�����P��!������n|�/̈́�~f��ҵ��U&�p],K��GR�W����Ś`\SG~q'ܚp��*qV�x5O����Z�[��:�u���F�c[�J���D��G?e9�rT�!`�鯥N�p�.� e���lʡ�yF*���MioTX���JF���X��Y���>e�F��p��e��%�G��Q��P�$C+�+��~��2�x.�놺.�u~���`"�`	,bE���
�[�� I[	`YՓ���'��Ø����)L�go�)�Q��P�mk
�o�ZIe{k�_F�ד7W���@k�h*��P�F=8���@�ؠ�%��ZE�O��F�st|�AC[UXO�7+�N�K���\Q�B+��=���(Z�s/`����0���pee���ƀJ�Ae$��A$U�JV���-��I�`K��
*ؐ,�'�J�@�E"e��Gq^���r���rg��kg
��\kn�`=xӾ�S�����=+�ڥT��y��I�lԺ�8����ݚ�&s�ҕ+E�a/����f����
�[�8�r�ҷNo}�+S>�wxW�R�ӫ&�/w�:x�[�Ubη��.����:ĵ�.N�r+'[v������O#(%�MVm"��(z>��JX����h���e�f�d]�26c
��Vz�U{wYZ��Q���ȡ7',mj!*U���5��/��]�~Dj
�e��=j�>o7eQ�%O��u�, *�p��ִ�
��O@}�@e&��'��EP[�T�*��Y��h��N�������4l�Q��-p%}`�TB�MTn��Ÿ�/���xX��(�(v��
C��Cq*�V~|C���ʫWT]��ԨJdžos��`v��@Q(���Ql\�S3C-Xow��b�m�ʘX����.v�FO�
��{�,�ˈ�E4Hg�uS��)��R	�H�ČޚT#����o���{�����a��z�R0v�X�z���U���4�ll���h�Q�{�p]�O�L�����i�S�{wXr���\�����Z�)��^v��9Tqh	�.N�<Z}�9�������>�x�t���c���p\��-s�:'[/rܲ�����
iK塖#[9l}��\
+�Q_�<�Nt�4���v���3����
�ʉ�v�-��x\�g%�����7JH{�R�4��w�L�2r��] fNX���S8�zp�g*T���)1'1Q�'"<F
����( �F���CqD˲��X�	��y�ƶ���h��$��^2��/�,�j�js�_�g���=�a�ҕ+hW��v\$����^���"F����@kD�d���P���*�~�5��UL��z3k�Ԋ5�JL�ux�f��4!�F�B���B��&�	��������h��/Ĕ�A�k��]�F?:�]��2+܊S�v��ȸd�����^��b�a
��eO���Q���P�d�]��\��2d*)}Jڅ)���Lo��c{P�<oz=?l^{L��~��R��M��9h9V�`ʞ㸼tt ���ՑS��@��x�����G�z�q��H�u�+,�����q���@���u9�r�\M��8�rB�{�ë�q�B�����z���-�|>����1.�nh}da���7ߘ�ϧٟ�v�BR��X�w�B� ��Y�P���]��L���+�"j�(�xi1J���	�Ym"j"[zȰ0j�F��*��$/�-RWT�h4��$\'���m��۟�d�A `�BC�q��l_r)J{�c�2�cC��T���IÂr�a�kQb����&�2R����
�`���H#�U2��!�A�[1"
�O��Mr��E(�!�jN�4���ӣfY�J��
�W�rzvO
��d�C�0��v��p����@e�^�9���Hpe�S����x@�U�;�!=~Wc��6���>m��?ڠ
=6��=Hn�ƞ�Z�!�'
g�b�v�oįDY_��Ψ����+��<b����E_w�7d��1��S��D/�ó��t�{>���jLw�I�v&K�.K�ˀK��^I�ס+w��#e��/L��>�j���ǏĸX��@*�+G��t9�躺<�9��Gr���ᐮsؚ�wD�֔	"�i��V^#r�U���b��6Ӓ�l9�b���d�`yI��"e�(ʌ�*T1��D�Ю�.���
�S�)�O4źQ�|4.u���f�ga_(�K�}���-d ��X�jΣx��IY�G�e���O�ł�nU���
:|�c!���V�0U�Q8"֐�I��j
3��UJ�2���Cɬ<�	9��)Q�Bޅ��;��`�
,�~R��'db����pg���4,�E������֦���(�3ܛ��Bo�s�;�Fb�$H䘲< ���&h� ��i�����y/�>�p��t�`Cc��[,;�����nQ0>m��o��]�A���
SS�`��x�0TZ�����)��m�0��e�_٘�L�*EB�e2��ndb�jT�BM��i��'�
�=^A���Wۧ�VY���(ܭ(i~6�r@�>��U�ƱJg������5��(��jN�r�oъhAJ��]�p��|�f?d�2Q��/��k㻊��Ȝ�'����`kZ��8��L����H��z�j��[��c�<�>�裟��j}�{�	�ED���[#A]}<�ޏ�
HW�s�z�4�0�(�S{�����4Z!�x(�|�Ɯ�Aw�l�*uR�a��@�(>��),D��U<U`eBL�K�R>ī�HXU��ݓD}׀2qBu��X~��'8)��SS�>W�x�Z3=��η�cJG$|�5�HLr�*�ҁ
�IU��(�R�4�%$��婁=��"�+ߺ�Z	23��PV�	I�7��h� m�r8�j�[Z��M���)kT�~)b]U�Anɀn��;�Q���X8"x43]�TT����,�����&D��C�<p�����*�Z�k1aSC!�"[ʭ3���3��ݤ�RV�UH�¹`��
�B� |
E$.%v�Qڠ[������mUP,mk>{�j֎"5�p�ָo 9�:�̺��n;�ӕ{.^ �=�XgW��<�q�S�[,\L�;=��U��]®%]_|�y��0�'W�X\9ƕC�G̦Pk�n�%��5]"Ά-y��Z���aq�c
���S�{?�*դ�z+F��dD��B�mE�Fy�QD9Hd'�����D�b���2S��$H^����^
�(�K��	���d��K~�O3�\(/��\�P��@6��XP��uia�/�A��M��+�b��\\\O�kr��R~�S��|x����Q��S�h����#Ne�H|�u#�b5��J���-��C�G�\U�8�1P�$��tw��AD#�+)\'�Ó {ZS�%q�#�~_��iS9c��� \f�������y�^������Mx��h�}���	7��H�_#�f�����3�RkS�>JU��`���*`��pĒơMe
�5�]��&�*[[�^�ͫW�Ҽ�
�� ��i��S�o�@���ǡ�/�I���C�X!�?f�9o����G�e�����O�vz�1�Y9r��n�$��d����7( ѻ�Kbb]���q�������.`��-���Ԍ�p�0�׹L��5�l9̚�-�G=֖f9��9li	�f�<�8�b��<�%�DV��E�3��:CW����>��6yJ G����w

�HެĽ2�q
 |��yc��@O�Z��
s��;���x�E�_�[��75iBڻ�/0�]I���Q���ZԀ+����~J��kAx
}VӶ@"�V�8�A���VS�0�ZK*_�N!��b��&�4��;n���6��IM?�M5,x.^_K��a-���MB,�L���
�<�vzL3��$3�A�iP��=!�e�&P�2�@'o~�P�׍�=�X�D��ΠP���n,���;G;��_�2��C-Qǐ�+���J���X�B�s>�%��+���[�vJ��y�v7� �g,�o��h(R6����	��Р�Pz�����x��M��{��ԸV���q��<������ߚ�/NMԏ7>%���Wo=>9w9|z�ʑ
a��[y}#Q�G~���Y����kn��rp�O�z���)Z�9G�Ky�m9ז�rN?ܵ����o��.p��5�T�v���Ku0Ąa�%u1�Tx�`��C�<$��FE�2/���	�{S���I#��*\��l�i���a@:3j���|p�k��������1�z��S�h�P�8��r�s}�BAE�
wl��OEk��e��cѸ�\��x�XyYҔ���'jJU.�ggc'�j�Z+U�P˕�\,�h�i��%�Q&1�3��LkJ�Ʃ�%A>5WmI-I��=�4-�R����P����bT2:hv
y�F���l3�(;��=�A����<W͟`�ڸ���;{�"��-Q��яD�C85O���[��`��~*l�6Rq�P��"XkuO:���~1K�LPjGIR��?����h��
���@�]X��iKŞ�y��I�u�OS�#V��z������h�'��n�zt*��;<�,+Qaef���N��r=x��7B��$|Q<�j\�w]�x�rn�Y:��@��!WlКU#:��x}�>�룋���[Z��m`kv�H	�@�b0��NJ�|���ƽL%^J�gZ�3ف�W��f�p��i��x��'_Խ"ZY�#дp��e0
ؖJ˶u�d�����6B7�-9Л�F�g�
g���W�nA٠I�	а��#:�j��j���I�f}|J<Z&U�*�ަ��� �SV��Dlj��Ʋ���<F&/��4��N��K�X3>��Ȯ
0d
�N~*%,O��܂�q׵~&8-o�����:��j����D�B��2�
U2`T1��Yb�A`p�W�Օ�^���	�������?�æb��0_�&9�md�z�6i���VM=#��'�����V����`��o?��PѼrF�Rm��]�MM���0�h�/��DVZo�2�K�m����@Ĉ�щ���Ib��|9ǭ�߾��'u�H�[��
�v,�>:���~��}�ɋ�5�SG�2��G���hYU#_\˗�g�q���*��<��c"�4X�5iֺ�L�(�n�)[���������� c1��"��9n}��+�.`�����q;D�&������Çw?�F����C�b@�ͫ'���\�	R-:�Z�311��*����#;K�1�y��-!���'^<9]s���"MBy�đ��*c��pĀ�"�7CN��rV�DP0290b.�̀D)���N[�҃�]�*��M��%B��7�����걬e�D��Y�]�J*�r�@�8�Qs�������
 �qGSQ��p�,DыAW=�����wH�G^��N%�G�����7iU?�%�$W/2p^9�Ӓߨ’"9�c���m�xc�h������ᓝ�������K�]�}
�D���9���F(�Z�;%R���Tkb��k	U5<�;����׀u���r�7z�I����&�^��~�f��'��	�4����ks�'נR�gx}��▖8�P�u�֩C#ȖֲJ�.��.��^c���EW[�f�%{}��6�rh�~�I=>ǭ�<��`�%�ґ���\�rʕ�-@K�W�u%��0��>����7��j������5�����!6%eۊ�҈�ö��>{OrXJ�W:BF�&�M��[�~#����tqJ:�F؄(��_�ꩯ(-H��=�0�2��Ԥh��+�K0IJt�3���j�q�ee�@aV4���"�U�Df���Į��ffU�.;�3���Hվ-�G³FA�3��*��}��7ߏ��LFx�*Ծ�i�|��ѧmD�:������(��m�(jn��Q��T}7k1pF<=�y��|�r����?7�,P���@.��;W��po���V'4�8���q������{��Yc�h�6ZbXQ��%S��L���rR5=�b��"�ˑ<ut
��5�UYCDh%����Eh��!B��T�E�x��u�rTɱ�)0��f���]���x����!�e��]q�b�./s
��T��C�'V��x�9�4��L2.�TK�qG��/{b��n��j�-���&v���)>��j�c.�p�z�l�Z��@K��������m���G��-f5�6����{�#-��ߠ�tEAUwUi���bL�!��Gf 0=΍M�q��8�;˄�C����c.&�f%�^�D"����\.�F/t�"���JЋh��y�k��G�Jߪ��tW��g�s��g�֧i&��lR�f�4��I���
�,�e�]�b�C���_���F@�|���nK+�}٪�J3����E�)
M�z�\���u�a��bK@
����e��S�)�D��S��IL���C!.!��R����3��8�W�j�6�7��w�Q%�1i��a��"��5�l�&HR!d���T��P��t;PЕ��@f���gK��Tz����"�{�|�&�0�*��y?xf/��7͠���0���"��:?��^G�#.��+_�q��徒�"__�Y����D)�1��')�����)'�@ӊ��
X+��R�Q#��Z^o�J�
pe�'���o���b���
�5�Ƙ$B�۽/C%�q���G��'L��pO?�.PS@�)��1d-O�mN��޾���j�q�BЭ�#��䐄
���o���<�w;65�D���h9�Ci�eZ��R"�M�
��]��a
_ZSp�i�Z���~��K�5�s��ks���secc��"�S oh�0���Ǒ�^$󼂶��҂#��*�G�K[�UB�[�ժ�t���^��M8�d�(I=.:��4͞q�-�xF�����(Y���^(���5̋`�~���
����[4�[�۷�b���]�8�j'hAN?�#��(�����Cr;�E�
�W��!tMST��U4��}`hʤ��Jۑb��E_k{�֌Ό�$�D�6�B�ތ���J]HD/�&y�h�"x
.�Z����hR6roڀ��#FZ���v�KW_����KPP�F�&K[��i�G���-M�뤋�b�l딻�Z�%�˰�R����)��qD0��/�ӷ ���C�����Z3�_�"��+�T	x�X���NQ^7��8�2yi��c{2��ቧ0��aOе*���k/c�4�ڽ�OQ(�*=\v��-ӻ�&�x	[�1�gɸ�7�8�*qiLu�/GX]�X�F�f�����j9�r�ő���-'�;U^�U"ׯ��G��͝+;;;W�^��sҵ�}����Oo�|�U-�ɩ�g	FH�RB�Ib��?�� I�e$ˉ3¦-������7	����Rn.J����5��"�H�	���j^5/S~����
��^���LA�m+X�!��p`~p�+Sҳ6��īg�h��.��#jy�jU-$1#mp�(�G����2�g|�T|�z�U�JE�eX�|ǢP���6��.o\ǵߧK�p�2�x@����� u^�$ث�b=ތT]cQ%��
�O�˫�c�e��k
@�����`�����\���ˬ�L��e�W��<�ju�k�3����R��`c�W0�H�)��PT~��z�9��+�+���K�_}c�Axy����1{5�J,�e���-<h,�V�ꢛp�[�੩��bc�;h�~<Ĕ�-=&:ehT�*�O#�é������UbS��_Ʊ�'g�i.`_���<.��	�%ǏǶY�~�E���Y,ٖ]��Q�z��>5�Y��Q�l���s>K�K�2j�5r�/0n�߄}m^��Y@���'�МT(<��Q?2��cܒ.���@�0Z�b�G�TU� �X^
�B�*����,����-�%j~ �E��T�Z�C�N�HAo��4�W;��D��,��!��zd��iՏd�팚x@H�[�!�� ��k5e�,�Q?g򏏇�����������<	�!���[|��	X̌��[#�-:�3���E�>�*�J-#qM��K�q4K���,@�&�Q���T'5NԔ\�c�w*�C�F�|ܡ��������
��]1 ���j�V$�RIc� �xt��\":�d�ʂu�}���+���Zˈ�������o�V�]1N��l"كՉ���<�anMדIW#w���J���6V�{��3�m�e��8]��	�=M�����8�\b�8Q���q�L��[�8%�9��.��9_�x�9H�#Vc�x�elR�f�R��C�b[�8��b{�ܧ8r9�+KөI[T�w�\�Dh{��#���ڧ�m,���nP8R/�Tx���Hb�z�h2ʑä� nPqd[F�pU!`�`~fsD��qI��\��G���@��@D儮����b��<:'/|���PY�WP�҅r�R�!#�m��Ņ�l	_��R��f���㭂�h��l��tѬyX��Н$�12�Nd
�ҕk�h�T�bX'�W�gy)8WK�
��Q]7���<�͟
t���ђj�P<k�˄�C�14�Q7CΪG��р+zj]��J�,(���`���P����j��C��p�_�ҧ�����\�o������9
��a���7:瓢���ĥ���Z�t��!*v��)|�x�B�A%��m��\����_�_���~���F�=��|x�
�"C�4��ʸNip,G�L%�q=�`�9 ՠ"�oעc����sx��gzPHK|�v��	e�xX�,�'N�S��p��e���Dž��IÙ⏻�Y�xO��r������0����vcY\>���r�n�Q.�d��˜.
o>��{I�6��w�]�vy󽁯�U�66Uv�2B�˜��=T(J�%��H�Uu�	�_E���A�^/��,~1�Kx��a���9��"ː���˹/J�1�P]x�W����?��/�B+�aFS���5l��m��#��>p���#��X\MjU�]������{;8¸�":�#a�
*�׉~w<�<M�Ҙ��/'�C���#ߕ�s�k!��|6Ľ/�|��49�U!�0�|�a���C���S����6Up�U���^Z�h=�e����P"���[���)�@�E&�7Vo_^궮oo�ž���i`��d�{@[��%�K�|d-��mk��!KV!�D
A�ވ4C,�?T�Wއ���H[�$��xȿ�<������a~�[#6P�蒟��uX�,��=4�e\vѰ��Y�h rA�tr�:]։�r1�X\�dQrq)+F��\��h��Q-�"���v�������:9*Z���#Ö�p�^�I[*���hM6{�.R�l	���E}h�<�U"�/ǁ����RPLiM7>�3b3��c�7�;�)�~�v�*
��6b^,S��^8g��@�&�%W�9�}QJ��hX]��YE� �&�Y�[��d�܊�剄���7ƑQ��	Y˜�u,�_/�d�BPY�Y�!�%>O������BY�W�)P�lnJ�l��&��9�853��_�>	\ʐ�B"��Iji��W���R�P��y�"��������f>�m!W3J!�M_���lȰ�SA~7�Ƨ�X�[ߌX��#O���ž�*��L��
���s��浫׈��~��9!I}�P-J�x},���d�C1��GnZ�+U+#܈�TĆY׭���#;*N�~�*��Z4��~3���ڊB(��P�)pH".�Q �>�Tt�h����	��a�;mH�n�1��e��	.��[�4�p�n���-NPC��p�e�Žë���t�.Ί�=ok�3.��C�e����$����b�Fp뱘�0�2�r<K|`Z��Xh�1��Ν�m����)�+`�q�;_H���µ���lkN�藮,�mn�"1?CSw��q�^1�ꕡ�X�l�Q���'/���Q��[�1��d���IRW�rA�V@!�G���D]YH,�ڊ���ZK��}��&��`��
}�A-)�q��X�/^�'����BvN���2�2�F=$)-�x���_ݤ+��gR�0��i 7'��$�xp�pq���J�,�S/�{�&��Tt*O���J�|G�拏�,�^��U�vAHa@ψn�Á;-xh=ϰ���j�z��+�̨�oL�yD,f
���駛���X�W���ePM�d�J�Ϩ+�Y("���%��	sa@y����4��4EC�>�{qԵ/�6_������Aɺ W`k�B�aU�6�-3�Of\�#X������7wcu�k���H����\��E��j��Ύpu�>�p�Y0/��ޕ�%�t���U<Q�9��c�^lX����&��>�q o��FZR��5���b�ز�pȵ�l<���K�G4��-�|�O������S�[�~S�8`�/�%��
^d���n��IQ�غ�Lj��������ywC*����zK��2K!'񪂜�GP)U�|�H�YD�"]"k�eR� �v���ꛭNA����l�T�ȅB���1��^TA�2����TH ��;J��P��TT�yH;B_g��$��S6C�
S�T�CiZk�s�b6"t�;	�n�y}���x��tP�q:�<j���{�QK5_�u�Ъw
ǣxD}�C���m1�@���3?:��Fd�XU��ŹٯSS5j:����ͨ����ق��3�*?W�1J�����n:5�Χ9ĩ�9�����Fj�-���}xw�%�v�a�d��r6RG=cA���X�@�8��qM�U<)����(��r�f���B��DvìR�%ǒ
?dY�$-.er�`��Z��"x�]��6~�����ÿ�7˨x�A	�w�ſ+�׾x���챧86���#��FB鉰��N�n�M�Xp-�P���N��3j��Q�Sm�V�H;`���������	j@D5�}Y�Q��J�:ԢB5aK�G��$(�q\L$�^��e)�i��[ �yO��W����������yݠ9�b`�D��r3
�mM~���kKG1�P
V���ܼ���G�=kl�,�����k�Y
�tb�U�i6k���*���`�� &�Ŋ(�����S좹#6�hV�cd�3drX
�s��9��f�X;��P���T0�<2�g��-yM��m��I.5!г
�����b/��ׄ��n�xq�cߝH�1��`�/�s��?p�gp�kļ�~k\ԋ��9�|�U|��+�k|�Pk�&�v(��T���@K�
��
�Ɔ ��x�Z����p���Y�W}�Rd Xe�q�
������޸|3?��~���<5c;�w0s�������(S@M��h�K��i��Y=+D+�v��������"j�J[�e���P�gT8�<�r d��;j�8��u�eF#o�� !�{E�I��ZȈ!
|0��7M{5"!�P��e��6�н`m��r)S����Km��ܞZ~�)tM�*��p׿��@N)T8���<�����[Ӏ���@���7�h"�q��ĭ|�T�����2$8����T�[*Re!����T����j��7�4���C��"{��@�$�q�k��c����KP��a"<0e���.��a�ׄ�R�/Ø�K�b�ʶ*��\~�u���\z>	+'�X����m��c|\����@#Y��UJ�*R1&��+�q�S�W�m{��U�m�`�5Z�c�2�ud4s^t�K�!�o�x�̅��ʸ���_�NNls�dӐ�j�C�ߣ�)T����{83)r�7:�pU2`K���XM�0;נ�dhN
k�R@{&�X�	���+u�`y%�B�f��w�Tkx�o�\<]��Ii�W���ڞ�N��ތ��̘Q$�]&	y򵆦PE��o�B|���א)
����o�Ƃ=��XK�G�T�����5��W��ں|c-m<x����Ԉ����+��t�켪R��ƪ���,�[7$���`��J�0�$H�	�,���*T��s+׾�^[ ��!>+ݹ5x-t���slq��nw��k��{�S6vK�6����eĂ��`ւ&O�s��l.)��!�Rm�g��zY(�tp���9׸���@ug���G���U:!f9M�h�1��Μ5�T3Y �аU��Z�Q�m��x�߾Ԧ��ǫ3�7ϝ8���T5.j0)����
��ϣD�C�~�áL�3�J��b��I��S�uW��Xy5�H�~O�'�s*?�c�O�9enZ�7��	@!�{ss��d�F����nǺ̳&�	�z�|�$K�(r8<��z�!!#D���d��T1f��h���YS���$Q|0��о�X%,�1;�$�ǫ5�1���?�JR��3<lk��^�A�
3�'-�4��� �Z�D����1-a�d0�b������O�D
P8!T�k]]��O/!�9�`�P�-i���|�Bp��r��E�+.7�Fͤl��W��"t6���j�����N狿r�E?N�"B=�ف"\�b\ԍ��_�@�29��o��\��9���U�:���7��)e�!��8���6�,����8k�s�OC�i�N��`�sw�!c*r�T�.�h�)�cu^���tW����С:��=��R��W(Q��<�Id�������`Y���u�}��5����5f�Xh�E�G�v&���U)��L�	VG��~ꦷ7b��f������}��M�銘v%�2�س�DFe6�S�v�[�9��y�*��2옡��b�6�5Kk@�0�*$I@���|=�(Rrwg=��D��+s{	_1�ic'����
�=�x��Z�|F�#x�/Y���f��5�c>�`V�ξb1�n)�Y�.Fjc,vm���z/�d�=
3|\�Z��+G*S�kt��S�N�6F�r�ː/ $���Y��G��\�gi�ֈu�.�?ж(�\��J���ڟ�V3�������xb�O��t|8�*WI[<
{	ZN�WU8��)�w>�9p�
����`K�.72���)sB?x�܉Om�=U�"5fdo�����.I��yq*hHYKC�6��>�<t��V��m��XQ�2�G��HQhQ9
!��{օY}����@Nj@Wm^Q�L�,2�(V6˓��2��!�*�%d��<yD2M�58_MR���|!#���a�8A�����JdG�"2��Ԋ�И�¨3��k� �`�v��+������L��Vs|����+/ᕐ��А�Tm�(E1\��J�ȨY�J���7Mą
n�����|�M��
(e1�q{�my�hG��Q
>{P_d}vV����{��.v�Q�˴��h4�IG�l8���(��F{�ܨ"k���Z���=�}VB��g���3�q9�k(�	���������'������X��5�a�����ZC]j9�*��CĚF��e���8:в��>1����QU��z�g����.^�\[<�K
�Da��'M�0`&���z�BF��\�{�
�M^`_�iq�V�VH�y�]'`U�؀�\��4TH��-p+��^^!E0�b�	���U`K��-̪M������B(*F�����ק��a�0�HΏZ�>��)��̬~��8��+B����p�&��#����T�V	k��*C�3AO$�+zM�,1��S������)�U��SO�_�[XM��넇�4�?)��]F�ň���{��q�ViҭZ��s�$�s�L�ʒ.��@g��5ƠGJ��+c��g�r��� �d�<yȼT.��u���ȓ���#l��XԀ���`ԏ5��9�3^�0wˀl��r��l�.]#��?�я��.Q�"� �Յn���Yv�����-�Q�ly��
�,w��s��{�m`�6�E6;�����m�1?���p�"���n���s�G�=ű�HIw��Ӿ�})�%b��Bᥜ�n/K��zt��)�]̞�e�FA��o~�۝�u��NB&����Z�U�a��<�R[p'H�]�z�x��T�(�9�q3𗑉K��^ _ۓz�	��,�ܢf�䆳`0�I�r|���JWД�/��(�[����	i��;	.s�Z�����'Z8Sƣx�T�����+7+�az��^%
ږYɖ�)\*Z&��b�ٌ��a�Ҋm3�¸���H>gMS�yV=-8�
�����Ҕ�6{/5��Cq�\_Y��H�A�K��pW�m��JC���1�i�E�Ҽ��4&�
l�JF^�>�;��fZ=�`$K�L�&�������{n�4��Q�W^���~��	��ƙ�g��+�ΌX��1��n�[�ͅ���xeV��h9����38\�"���$�}���&���]|R�ؓ��R�Z�����n�巎�=�6�{o�W���_>�oͮ��wuu�G��ֱ�����::z�V�x@�--��Q��J��:c3�v�ABcQ�O�S�����5���9~e#��xC4��P))�IZ
@A�*J$w�UhJQ��4�z1�Ji�Y �
�^
)���[�>.\)A|��|,�*�'f'so�(�9I.x���Է>і&[��̚"L�L�L7D��GA*s1�@T��%��l����;A��	p�44K@T<HW���煱������ ��m�K�R^�~��=�s��>lRh���8��ۜYE��|�S�D]�>+�5�'m5��'b�F�C'l��p�HמQ�=�S	\.1~�-%�iW��j=�HQ����H3zA�vK���׳^c��������/�z��n��ML�@գd��Mcߎ�xp�+�Svm��9mn�Yv��.v�X��r��\L��)>��y����q�2ly�+��Щ����N���i��5������]:�{�yO�Og\M�G!;�� 4����Z���xx�F��!�p-�٢:Tf'��׻Eu���I�z�1o����_f�6�r���"]�=*�����z���y�-��T��ZYB!pAASCjA���,W|��l��A7�2"�Wݜ�U9"T+��V���D��,+�������Kџ
�^�T�6Ȍ�QԂ/���]�QK�ӂ[�����[�3(�зY�]����"��S q]8�4�jq�Tf^�[��S�S_�/��]����5׬fz��Է]�|���Q��)�5���ɹ����p��"��A�sa[���*F���!�o�/�`�z	�h�X�y�ٚWt׈���4������7��ː.F�[�ߵ��B����#\kߐ�q-�,Ǵ�'�2� q�j��PJb�����t����?Q����y�,��2��\�/N.�p=�˝p�%p�{���[�m��U�|�U+�1�>b�G��/-���X��Uu�("��Z[w�~k�i	]�!]�\$,�Je��`~�����3�ߏA=�D�������2L~���"˳�7;�R�,]�Y�l���ܧ��b�U�7��!�@�n��`&�%�B�W �A��f�K���	�9�E�˥G��3΅)�F:=�sEσ\Tz�uW��`DK�G��Eӆ��P'"%�{��yJLEL�/f���G��L��^U��O(WT�Z�7�r	�#���T���5.�855�����%E	6z	s��)��?�r�J�YO���,%�;v�a���1�%���q�1��
p�/ac(|��ʘ`\ρ��E��:��o�zp�{��r9�bw�5�e{(��L,e���9�-p���I�I�*+AA��V{��S�6	\G��]��㛛�/}���GΟ9qe��uw�^~��k/?r�[�0�{����rp���?���5�ð
_n��ZmP���dM��>٤�4A���	#��(�%�ri2�!0��f�ƒ��]1��'*�E�,����*�;C3����EA�b�V�S\�j�?Vŀ�ZG�X�MW�R5�����&AW>?%��r|� �dVg�q,-�—Q���D��J�hD=��>���P.57�J�\�l���C��ack
Έ�O^M�X�(\��m��/n��&-���Bt-��p��������S
+�y��Q�d����y��n�92��)�J�*�������4��1���:���`���%�/%����h�,F�,%�-�?���E�2��z�HW]�2.�^Ϥ��&3���o�qp[ķ�+�*.�~����sA��־ӵ�-�k�Xp,-v(����4�Yid���`�c}��݄��&6��>U<���1䚽r��U��]�py�%�kg���q�DP'w�U^��\`�ù�qɰN��.��H�`F]
F��V'4t���")
�ߊ�z�D�f��M+�s��%zC�=��ʖ�ɗ���P1�i��WZ9� q�o���"��(45��^i�_W��Qͨ�4��D�t�j�����K�b�W7�L�$��K��ʟU�h�uEE��Ck��9�>SA��VС����ǒ�X�$��
\��G��k���Ĝ�����Z2r�"0��c+}��
a�Ԃ,6Rq'�j���G�l�GV�ÌWl�7qq��
��J���`�֑a�Z��W�_� X'��q	��ܘ~�
]{�qi�\f��$\�{Lt��W�{����&'.���e�8��Y���kL����O���W���O^0̍3n���l�o��>���Y��.b
��{�G?z��N-p)�`�vM����e
p��:wCȵC�K7Ϝٹ�yep�5�kD]K,�<Aׇ�����\�*+�wp�3M�=�S���d8���
H0?�dE��7_��D:q��<ˁi�n\)ނ��0�������[�r�H��C:
��y�H(a["W-Zm�H�1)�P
V��ELz�
����^Y|Jς��:w��Z^Ώ9����j��<I�u�l/ �y��h�<R�(U�X�m嗨���2�*B�02��՞��A�NaK�I��j4�#�ǐ%��'<�g�57�?K�Ѭb`k��c�����
6��kSf�
A*��Yj�dE��LczF�^Р
J�p��c��D5f3�=�*��rsW�O�.��G��&v���F{T-#X�쨟�1������1�g{Z��6���8P����>i�
'؏1��e��j�6�Y�.a�
���Ξ��h�z�]p��8�n�D.���Z�|s�ӛ�k��K�g�\ �t�X�q9<��t�z�e*�c��걌���R.4�JR{TH����=�V�υ8P~�����L�s�4t�~�u�1Ax�[/���1Sàd,[�5�?εzD�J�by#��̶O����KP��R�m�|m(�������"3�n.��SP��iEu�@q�+�����D�L~��U(3�+p1E|+f*u)��H�1�A1�|F��p)E+g�q2�F���2q֚�S�cD����*Š���!�U�-ha�A�0�J��W�~`�`�������5c���D�6-_��Js1�z��@���� �g�I�z2��
W�F6
wRɳ�a�l�b�~�\�%�
��b?ҽ̒A)�.	�*����Og\�t@��כ�4��}���������-���Ƃ��u
Z�s�Kw�2m7|���>:�+����su�qB����uds��Kk"��i�J�F;����o���<snsycg�q1�xw��:ظ;�TJ�{ ��FKE�U<>�T��b�jXu�]�aEΖ#2Q@C�n�>�w�F1S�_�G�����o����8J�)^|��kt�' (�R�!8C��Q�j��9ڵ�bdI��[��f��	ұ��#FpgRQ��䤮��m���ucEbu{y��E���늡�V,~�yIa��_
���S���2WI�x�e�*�o�3��e�S�ڗ�N\YY}p�D�UZ��"�(y�*�@4�3C����H��X�>8�	q}f����RN�,�7�
<����q.7�B���n�Bz��J�0���|�ʓ�y[�AW	cv�� l�P�BAd�r�!W��<�\e���!���"��>\���^c=9��4�/|�[�!5���?�A��	ǻ�E�n[
~84?���6lH�xez��`I����6\���k(slq��	�:�[��|��K��ͫ����[#�4���S�K����ހ�8Ͻ/?���Rq#��
ۈ>��j��֪����q�����L�ES���m�rA�Y�4fĊs��̙�%Q��N6�=�Hdw�2��?�;��8�:�#��nw�apg����Ydue��,�!�ܫp��F�K�KsnH���H�hR���a-)F����ب��U
���6E*�U�o�Á�y�;�t7���������f�v�>���/)�Z�QX�Z�DPASW"j+t%,�rd/E=��uD���AV�+��B�r�M�3]�(�\/��i��I~�26��,`�Q�M��P+W]r%N���*��£.Tk���Y6��W$�A�� ��W
����I��T�&	���A�"���I����@#s��2���|1$����^�!�b+u����)�\-��\������R?V��c��'��]��`@�T.�P�J
�x���)�-C..�3wĻ9^��c�����Է`\׮]�r����֮ﮯ��տ�{��cdt�nj�.�a��rEA[I�r2,��:^=�$|D1!���l��@-n\��Pefaa�=��T���O_���~���������]\�3I,�C�1�C��G&}��,(����1�t�A���x0__+�O��Ό|���"Ҡ�SZ��2(��9?����
a���U��w���̯�\�q�t?�bB�I�p�l���T4�Ւ�‏WM�mʠ����@=/tg���;[�@`�'-UK�����*�f��?P��t(��8UUɕrժ��B��Uћ�0��f�gHW*(��ՙ崊E������)�*���W^���"!TCⲯ��Ծd��$8���Yu���:��S��|�h�-�`6����5��}������v�I[1t�]?��C����xҜ��\h�� W�o%bW\�k<��?��&��c�2��
���UL����C��io�i\���r�ڵ��+W�lnnm������ٺ�i��1�,�H���=\P�`�^�l�W�R���6\
�x�C�'�
=%'M��*�b��\�p�/*?Ӟ	+�n�i���\¥�YE�f.;�,�	p	�8h_*��*v��y��+ȣ�K��8Ik��G~@�f=}�5�:%�5a�VJ:����iљ�ʩă��]ģ�r��J�?̋�Q��ե�=���@�=�XŔ(!��QY"rU2��8sS�W^�z�Ɛ,����9�"a+����b���H����/ކ1�-B�j�w-�Tf+���"V�� Q�6���22�͇<*�pӟ�j�>�!U�g�6�������1�]T�4n�_��-�V��PZB��Ni�Zui>
e�B�R.�h+U����g���.
^/=\<6�<�{�UO��&�oۤ��1-�k��`�[h�7��b����zj�x�w�Ոt���M�rZ���^���@�D�`\���Zۼ��f���z}ckkgw����K�	�Č+^P�>o�R���.6��d��tyD�a��Vthq�}F�/�E#���Ũt:����t��.~������ͬb$�?L�����������dɏ���JD��G�W��ab��"�V�@����lU��}��Z�_hHh��]��jO9��WR0)�D�3�E�K�k����TϨ�A;O�n/P �^=��d�v& k���J��|7�<$)��zES6��q� (�%���Q�gu�rP2G���Jv9)>�E��j@��a�ddX>��T�UԊ��+f�D`��99�(%L3�t	w�ԭ-

$�PAu-�@�!�BM�՝���)0����R�Z�x��1�%_JCf/X��2h�jڐ��ϗ��� �x/��*�[{��!+�04�5��U|��2p���8��I�,��#���t�^nͪA`�
'g�%����>rj�q��P�k�ڛ������{��[��X�`4g�O?C�����bR���b+C��w@V̸�*$�g�##�I��rq3�R��?�bd�B��9�ڰ��n:D
��V2jΪ��Q&�H����,�B�ȼ&
��o�"��cw�م�*?/׸X���0+c�.�	Gx��L��Q��	���u��U�)5���s�Uw����,R�1��,.�D
�q�.J6>���c�CW�+��'T)�b�&0
7(J܅�R�)Lx�ɀ*�J٬���D��ǜ4.�i$,	�7l��ayN�Dk�=�E�e#�}����2{s[��b�ҎR�� U�/�.?́f�Ǒ�x��$<|a
����Ӽ�#��׼�Of�Cӣ���䊸'�?p%tj�l�<L��1�����ᚱ����.5w��i�\_�ʅa٧���b���Mj=β�g5��-q���E�/~�[�ۿ�������m�����͵���C�<m�"��dtFY	E��2�ꁕnƸP�t87�=�D#�҅'r��\"[V+�\�f�Jar�=�™w��w,����G�V�x�p,�8ʗ��↖�9TA|���3C%�:��i2�N�5.��.�B��əWb< WStɣ~*�5R�T֒� D��X,�|����&�X�ᰌc�R�elbݤ�ؑZh���hUPׁ~4�\-�%�Re�@�O�TSR�3��S�y5Z����Xn @m'I����PĬ)�>�"�;`���PWcg�UV|���Y\*%`����+�{UT�ZJ�VΫ�:�TCvg���;�E�T�B�,����ȷ<�1���opQź����>�#V{��K�n�%6	j��.<�猶��� S�0�=�8o
_���NgE�b��1Y� `�ز��{W[�t%�����"c}���2��������<�݇������+�~HWcQI��sr�yE�aw|P�r%�+�c��h\���4.Te'eQ��3O�ɝ��[���u�UjM�aA�Å{��Q�49=�	��E��p]d �����=5o
��x�N˜�H�T��X|GeSF-*h)A�Q��^���Q�Cסl;8�6����|/e!l��D�ʪ[�Z��\�*�j���
�ƀa��?�����Q:��y�"}O��9����L��A�R���2�����bNT�A��=�V�Pb�B�@��CVs3��EBԅLT��D���VM��W{��yF1j����z���.�Y�
tK91<G��P�;�ςr(��'�������rR�����)Ơ=������ub��Z�Ð+"������%�2�eò�k�Q��C.���	�i��G����͋7_����9)`� +vIp1��M�U1�,i+�e���'m/�x�w
�gi�T]6�?�%�q
.�u�aO�H5���gΌ�w�+&HA�B���P�,�rԖ�m�7Zp�+\�ʄ�O!,����u���@�6��*�8�)/�Y��TF�R�b��gEbQ)tyZ�juO�ɺ��A�
V�AQP�U	�n@D;�Z�DR�d3���������WBW��uIA�X��ڀ�c*�rh�j.SGÒof��U�
�ѐ�����ɠ��Fa���iW�Y�y��G2�r}���|w�e�<�Rq�9/p��U�Y�3�A��|����̘�*��:}dx�e�Cj��ҁ�
�<!�E	���|�������p*c��fTKr����J��*\��� �O�X�d�T�^:o�����5��>��ݽ��?��7��̓�;�/��G?���_��odH�X���?|N5�@�2��İ�P|oؔP/�����AB��>�g#�e1�	l�2������.����}εg���"՝��"���P��F"V�̵Z��Vd~�^��܌��!��r�0B��$H�GX廜Ӱ�({�����3!�%36%���B#���gA��,Udz �;0��Zn��nJ0���5�h�M&�%�T��&�A4�6zM4��U�4���GU�ʙ�ŝV���,p���G����2���j�4�]�}��w 7Y)��RCt .��(=
��X�}�ְ�"TxU����*L���p���[�A�F�d�`FQ�&~�Ă�`��[���6����i��<
]m�֯���sƵ��x��a��~1����p%�eŢxW\0.]�#\�3�{N�?�t3��Y�:�}��\c�B����޽{�΃�v�Ӄ�yi�&�'���(�]�"����FR1&�m�1ni�N.@K����e�k��b��~�U��)�0.�����u朷�˪�q�܂�`�ʒ���d/a-�����>^�hZ(ZG�+�S�Q�Pњ�S�D�����<��������?HTVX':�!ML��א�/T�"p�!`��"WВ;D%L2��K�\
�kjmm|�GS�|H�T����3�,�s߭���\\<l限�Ny7� ��$�l�S��5Ib��!����[���[K��\lE��`�C4hn�Eu+?��h�`E�M��K$�R�����D�$ty�����KMK��qc˝t�%��:Vsisr�=��/�*W��O�9d`g"�',����4���F
Ǭ�y��|L����/�\�r+8�����?�L����:�m~
��Ƶ�&+��۷w�D��K77vw�vv67�����y�������&����ħ�Q��!ۇ�F|?X1晏+��Xԇ=��}[l��������"������˗�u�3o�/[]RGC�
5i73EB��)�4(c}4��>z��aOe�c�v›�U'rNznǷ�m�^5q*�H�LH��Mjv�K�r��0�^�^XK�t��Z�B��*@�
��SAZ��*Ua����'��hΜ^�(�v���[��
r���U5� q�ܡ��rWϬ�0��VF�#�My`�W�V�17ɶ���Jeȥ(0YF=�U�+7���	kҊ�%��c�z!�y>0�a��z�4��"�K�U���Q�2�V�B{a\�n_:�0z-����8,M�aP�W�e���#���al��Q'�6~�yA`*r>$�����@h�>�b9��&V�Ns�>�J�X�3\�|��F-�J�G7����⏕�oY~}c�ν-�k���{w�6��۹��u�瞻��W?���<j�e�?Ѝ����G�4��ň�0������X���
]�p+J@}�~���(�����v��M�S�����ҹǞ�y�=�b�����n�> ��;����٣�̡|"Y!g3�Q6��|�r�-⓽�T|�EY
xC�
���vx�N� ���C\Lu9��,�Ṽ§T�A�,P���L�%�m�k��6.̒~	��93��<D�/x��\l�+A��(UBkQ����q�R�"�����y�5`�����&�t��ٹ<�>�
Hj�����)�?�l���a���(��в�t��#���JGR��&Y�Z1�pU�tlR�H[4Ԙ�c���D��%��V�5׀9⚌�2Z�^�4$̻Ge�����DҼ��n�*+���j�J_C6I^үz�ň��=|+}h*�\��oWV1,��#?>1v��W��c���*�ρr�>��.���aW���ݻ���8E���q,�/���|��Ik���w�c���@�6�f_�G7���t���7%���A����;�����w��͞_�r��>	h�.#Q���M�I{Γx�����b�� �E�h�-+-�qJ�50�{��f���'sGg���//\݅v{י��sK3/T���2��n-�ej�j�/�͓�=�V�hpj�:�����4�Қb7���>3�rBAj���OVd�vQ|��N����'��z��������y�j�l��U����B
��HCy\Z<]nN���p�^���u�>EMS�~��l�@��o[�j�Ө�FU��ɩ��+ë`5Wγ�R��ά��d��
!Ll5�]�r1��w����@��2|d�Z�p��ꫡ����u�~� ��j��_	�u�BP
p!r�V���г6p:��䔿CQ^�Z��²�[f���i��9#��p���Jic��v4��;Z���߄�_�j�a��Z���]S�l�:͓��e∊"{5�Z�V��+<8p����~�J���b�e.F>
��]Y��1�`]Qj��{峴Ί��	�S����#�&�N�[�����'�'�뀪\����Kh�#�q�Հ���8����T���]01��w��]��)��#F��0�61���
����f������JBm�4��OE��O������iF�{yn��ܞm����#3�1>&��]X~l�M`W�NכK����'��|j��7%��e2����v���SF�b)7#d��?�t�����)�&��B�V��#^�_��‹��8�7�,��4,�q��G���ZS`!E��;��
*W���:� E"W*BY��2-w���<,�4�(��e�T)�VC����� i�jh��Պ� �E�VC��GV�p�� �!���H��Q�A������'q��v�[8�����F�ϏC��]A�r@Vg�y#��:`�:��'�R�S;�\U"��Ki���S�W_����	:�4�8�!0%�TVeie|3t�@6.�E.�i6Վ������C9���S�� sO��X��l�������fT���*c@��/d%��r_����3=�p	�l����/>�lݸ0�216qV������M���\zy���3��[/�f�����1�B�����4�7w���"����5�~[�R����zt�[<�c
��^슭���kEd��X�\������<���4?w���xq�ݚ�d�1�[8s���##ax�궻����,�P��ժׅ[)��i8r�D�b����"a3�+[��C^�b���
#7P���F3�1�Q�i8Q0���i[�*�
�vb�خ��ĴN`%�f���g����]=���bY�|�KQ���LC��c�a_�W��&O٬R�]6Q[^Z�U0�w/�b�U�	Yx̹-[�wr����1"��� .����˞PAD6�+��ZA��S
S@�\3�9���0��
�Qj�—u���<B֢�Y��3���(�&��
GfZ�8y@��2�Y;)�{���?�p���%v������|�mV�6ʿ��s��Q+�Q�W��𳭮�����qP���?�jGķ�l����p݋���S.�Tan�ي�,D��+�'��.ܠ��%���N�kvm��ɱ�7��SL��^�u�.n
BյW-2 ^w���R���|�緈��v��޴��J�mo�����.\���.Q��-S\�.��Ѯ	�Z�5�Z9�t~qiຸt�zg��אּ��Oջ�G;����9[r�yp���AM�U���Y/%�cK+L<�)4�+����4
$����,�Q
dHl(b0���g�>
R�</8,I��E�!�ΣPՆ�>3O9����+�k(Wb� ���gFy�/X�d�2�ʮ�%��al���T.�Q��*|Zx`=5Ӣ�@nE�0S�N
����(�-T�VP��-Y�}�(��5��%j	�����џ�L�5�"��/�\�S
��|^�
5�VVE�b�ˎ�z�<[��@1�j��t#&y�;����T1�l�uY�
�@%���).$-J�P�[.m�r�f��p�\���TW�����W%;�JjjE}�C�M��xߔa��ۭA(C9�&.��1�8 rq��D��-g>N�IT�(������O!�S^E��4؞�@�ԥ�'>z��/����gV� ;"�ƥЪE�z��1n/��n��6c�Ĉ�
�6H���O�w:
X1��0O�\��]�X�S��ʢS�qa����/�Z	%-4�2����3]���L�p-�,-t
�:K���Z�`�x~id�$�7�:���r���CR�vQ�
�z�0��%%�E,WQ��g�átY�#(G�Q.*R�H�Vr�{)3����ֳ��D�<dJ�OO��Q@	":ba�i,�s�p@�5��s�-�O�-����䁨:u�9~�H.�Ruz���l:B"%�	<sqJ�J!q��>L��c��12�T�
Ū~h�A����v���AAɣ��G�/$�[n*��=X�E���U}�t���q/X|��[!�g���%�9��E�0�:ZŸ��)�PM���@a���0�<��i(�S�(�^��ˎ��P%�)��W�WA�C�g�Y麫/Ƭ�`�����pM*Cm^�v�Sv+¯�/H�2u����xB��v�}���V?����<08��d�k�ƒ��^N��yCT���@���pklC��_�~�{�/��øh����O���tC��Eu"�c�k�6b����zY��z��eh������Ӄ1[q����nB1����^�k�C��1��ٹ�#3���������s]�5p-...t^p�f��[_�v���PE�K��#�j��3�Z�ee���@��Û�o(`%W���.3YJ��W�c֣9�"�PSn�����7�T
��`�0<ċ�8����#Wɧ�
��'�U	��J�
BCJ����}%���0��ve+��I��(8A^������ �5�P8U��$&�o=��k��ف�Q�Y��;��N�"/��~��Z&sJ4��ݠ�X�r��X����"e]U|ޓ�(�Pڿ�@��9�n��|�.�/H�ɳDy>H��K4�Qk�P�I�վ�"Ę�;�*/�ݤ�;d�Q�'��5���~80����j�P�W@����уoJ�&�*�+}�#:(��d<l��q�k?��IN��3,�\-~Ƹ�,u�^��q�f47>�q�5"��
:J��������4��øl�M����دq�m����⺶&Ak{������
p�b�5ccgً�FKy��@?�vY��?`	��.�h�_#f$có���$����{fS��>Y������-,���E.$�s3h\'g�ݠ�j��N��-ό�0�������Fu��@�rj>������D7�(.5��.2-��aN�ޥ���5E" �yV���?JU�iW�1?�
�X'��|�\�l����J%PZҚ$�dԬ?\s�<u�N..�%	9LBn�rS���<VB�Z �S:p�0��S`��	��5^��d��9��4Ȫ�bT��	�r���p�a8�!�U�|�(��2,��j��-+��%��,_6��͕������!��v���ɭ�R���0R�5Mh��(�_��ml���k��5q�"1g�.��_�K�Z��]��dMH��T��}9�C$�b4@�Ј7�H��PUR/��e��6���u|��cB,nl"�>���é�������A���Tcg�gvg�q9�HD�b�4\�4
��
���x�Y��!�|�5cg'W�x�����ݝ�L@=Ȕ�U��V[�_Q��pl���ڗ$i���~q���[컷��ˡ�Q[ ���2�����T�/�aR��Ptǖa�A�{���Q0��g玦�\���(�Ӹ!f�-?���t�9'���!P��͖^�`\s���sT\�b!�?�tZ6.�0�1%���G
Ͱ^��m�����j����T
���O���[ �t��B��,ܢ�55��� ȓ~զ
F)��u��G�?���8� ͫ����<Ԋy8_'lM�_��A�c�	�xb,6ynI�}�
���R�)�p���J{Q�h�oam2YC���\�I2aD��
���`�!�h�+�$���b[5z�g�}���c��A$�:i`��D-دXğ��V*N(�<H
��m0Ԓ���=�7�� Y�=��S���b��"����\�K1���R5%����[�aU$�7ȃ��-)����X	pE�P�zm9��k�b�K�̄P��5Ye��@Ω�W�z��֛��1ql%�\��&�߿0��W"(��Ql쒈a�[戞C�sMw4����F-�(���?055�}v�:6p����U��O�DMW�:�:Y�i\{��_!Zmn>�u��{�p�oS�מǸuo�E�(oވ���[�$p���TJ�ƃ?��E=<z��^����C6�@e�fj��[o�0p^�����rsQ+�h��ˇ3{|\�O�@��.S,.t��piaan��	�\��Y�ZG���q--/t��v�u]'�2R��&./x�TQR@9��w������d�8�`��.êP����h�� d~�ɩ8��8���sRD����\�+k�ǀT���z�\��o��qY�kf�HU%.H��9u�iBa�.r/H�G�	[��Y�-�+�]�8l�ð����!h$���p*}�`��<,jL�NPGk����.K�,�%�0�ȋ��_�jڼ�����XD"+�`�Ye�zR��V���}��N�cM����5k(H��^�a���y�6�NM���j%Xo��Z��u~z�'¥IRЗ�ǃ��������"cW�2�f����Ǫ2��r����!�yP�E^r�P�$tl�,cj�g1���dz�.�u�f��Z�B}z�G�pV�e�x%��V{#+X��7���X�J�-�-��%���cV��^A���K��+]�W�x��O\����_���w�9x>��P�7u�֭_�ۥ<$�y[S���H��o�v�\�9�b]L4R0��֭��S��{�N/D���n1dq�kB�hZ�r�4�@�j�����vz⫀����[���h���S�s"W�"�Au0{y�=�p}j�����"���B�Y�b��9x,�&������]%!�ʀ��c�$���P�ް!r���D��j�yM~F�����%���&j��I˔9:j�t���᜼Q�&X���"o��d���l�"5ֶg�۟��8������
i�y�YH�"�9�!��Y����T�?F�~e�D�r��A[�H"��gn�*�h���6�A<	1��,�9�s�↪�Fa6�d��!�+ 껬^$9�ʊ���cQq5�M�^X�����'i<������ɧ`�P������@Q�X(ԔQ}������`!�� ���~S���'[t���4W~c�OᨏG(K���q���"S�I>����z�}�flbE��%���7�'�)�S�u�AK��c�Ǐ�M?{c��VO�Q+�̕(^��f��n�#gS�\��z�����T@�,=�le�#]5&'�.}q��Nwm�k�p����9�Ǹ5��߾u���
�/�=lo�8�.�BтY�P]�~[
��Qw��t�1�u��?|�C�|�W"�f���:=�V���o�Ǹ��Z㵿ۿ$��o0�>�B�����Z�Ŋ:�4p}�I�k��x�SWec\���f�[���5NGh:W�V���̖
��L�!ؠ�y���\1@��]�����	]@$�蔐�#���
�*d�,���`8��@��1z$�ϋټ<�D�;05�)��#��+��}�H��Q�k��>��$����.(�tyӭ�EXf�T��we�Գi0G��Z�PrGBBdX	"�h.EaK���,�=�ϨT*Aw}�Մ�Q|���A��(��;E�T��9�l.�f��E}��7-h�
�H�ʪ$>�rYȥef��i�ф�j��
�%d�y&�yײp\��sd7�irp���5�(H�B��J��`6P�ɧ�U�s�0G_�Ҁ9�'WΖ��zDmM��������`�����cT���
�G�]R�b]>6s���}c*��zu"Q�"�b�v��&�dķ��0F.�)��{@Ř�*�H�ғd�g/�|���z���A�u���Ƹ^�
u���6�N���"��.1���`|��A,�p��q��M��v�����߽�F�V	���[���A�&j{�9ٿ��_��>�>�2����:�d\�1������N�~t�Zh��g�V�pJ�b����K�T�3y?3���y��W�Ċ_�y�7S��b+w�T�"z8�i�^����<��vGg\
��zG��y���#e�"Y��Z�!Z��+�D)�;��,>�0yP�p"���	���:Z���d
xlI���qLWj���|$����:X�VFM�yEޔ��;��H#�)��Bc����x�⬘�
6<l�YQbIW<�H�W���pm�}J�flEt�	q�U<[^�A�BYq��|JYM޶!@��N�T���!�U�F�R����O*�Ф��F�� ��!�`"�#@)�� � �4Lü5xՓ��>��V�:�Zɒ-4��)oūڒ���A������xH����É)4��o�����rB.�xAwV3�ʈ^K�㭀�G�iI���V`\1rY�dS�T&��m�Q�
�ؔ�au#[
v���ɗ�|sf�<!	�y~?���Ը��g�"Pu�;�+X�36��m�ۻ��!ن��@�n.=g�a��o�͟�T�lD̚0F�-��'�/�1��ɮ�dN�րKۄq�|\4�RR��:ss����3����呙��3�3��f��U��T�X��T�5�t�<�=��dт8�|�d��f��1���S�E��8�x����/�g�8)�F�����,9Qvp��ejy9!��'D�K�f]g�O�'^��,7N�T89�������i�c%�'Z(��q
�EP��
��B�O�W��P�]�B%`�4�Q��4���K�V��Kyg�|S|YŗJ®e�:��J�@%�P�+ʎ�^CB&R+0z�p�� �-���R��A�L�e��O|-'*���l�.ߗ�U7pB�PYsK<�!�ɢ'j�h��B�Vl+�Kx~E��B�SB�|_LR���2
Gj�9�(;-LM��`�=�R�^QOn�/��t0~_W���"W\	\�1��ՐT+c��G27G�U���%Ύ�̬ql�ܫ�b������� ���B���q�:6+.����#�����/?����������۷�2��j����u[�t�'?��?���P�-˯����`��.mV����ݍ?��뻌�ӟZ9���Ƴ�`J+��f��@��+A��o�.f\��C̴1.�s���l3sr�A+~1������3�*�gG�M��K�\�b����>z��\e�3Q�j�\����*jl��{A�5�Ki"v|h:�
)T�hs���W�J�!"��|��C Z#�ƣ`�GǏ�η�\v��&�֑f����S*r1;=R�W4x�/y�RO0Ф3��<��
9]á
?�j�n�9�ѡ('[�/�*�5ī��<*�lه��e��0��L���L�0������Phú$�X|���!Z��1��E-����H��V�e����=K�V��
n+��(?�Ď��t��K)亨�W=k{M5	�2!�?Tu�p��ݹ�6��a\�{a�k�?���5i�3�i� M�B���3Xw�de0��9]�Y2ql���q.LȎ���a;G8�
���:$ÀbP0����:���%��z�����=��S��>�q}f�UCm�@TY[��~�X/h��_�[�y%�8�p�T��%kiI����:�������7g�x2�޹�D)�����⍖v��e�`�|IWz��vb�f��]z�DS$����S��ɜi�#��C>�_�Y�wt���34��2��8�ƵN�6!`A������%Q��%j�J =O�2(U��*]�V�����oK�����s��n=���P:�\n.P�t��'pŗ���,��}�x�S�ŭڽ�.W~�`ԙ�_ه�%��w�S)J�<�ͪ�d.�H$[�
f�_/�PS��ݙ��]�k���]v��*�<��G�6�� jOF�	��q�Բ�*���Ep�2���\Zz&�S�jd�d�>������X�.s��Dc.w<РkA����I����z -WK�#Xr ����`M>�?ҽ<���#��-ă̗p��;mԒ�}�/����o��R�u�;�B
�p��eX�T�j��%S�.%kA�IFK�9�DHR��y��R��c���壛��2a�~�����Ac�4.]Jۀ����?(#���ښ��*E�h�6x&�*ˎ�Z��r��A����|2�0�q�F|؀�W8 ��x�a\{-��C@�p7�l��?��dOЀv)q*-�- b'bWH!W��������n�e�i����&i��h�^�45
�8��Q�d�ȸ1dkG[+�ŷ~�~�H[�����_7�YY�c{g��+��.�~``����¸��h���{ׅUA��J�=��A"�%�jɐ,�T?����U L���e�Ew:>�ų����E�F*)��	�ŅV���z�pU�����޷��2ǐ#�up��@��%�������B�E��=y��=�];���ȤZ�}��@�������BM;�r�Y��/,3�J��GSvPg$}z
U�[�_rs�qnI/{zvIv��'*�c�8�N��Uk"@���j��KM�
�n
����J4u��8)e���b��zA�Q�|7�ה�2��@Enb�P80�ȈF.,(i�
5�AR0�YU�j�A	1���XO�lC����]�	؃�1��@l%��M��l~��	�Y
9EèF����Q�q�i��c{T�{k�-�̼�1}ZK%�$���	�4\~
C���i o��u!+}J'Tk0)o�qC$b��A��E���|�ʤK�-i�,���iKyGq�i�b�w?��6����]�5��8
�J��B��a#;Fm�������5:r���_l��e�]�/�J��Ԇ��%X�AuI��9�����qs���H]^BPy!:&z�9����������j\�/z=�9oJ�%A��y�
p��k��q���ǸU�`e��R'����>����@����g[��ۙ������0��Z����2��qoc���X\V�~�+�Ig�#G9b=¸z��s���������q%fz�~�@D3]�D,���7�˦�=���Z���
�t�Ͻ��I�zr;��)���V���a7�L�d�tC;th~a��b�h���rt0Ұ_���bET	�Ȳ�Yhh���k�㓄�y��Dwuׅx��H�p��m+�S���Sх`}qE�WJ#��\v�M�]���ŀ���tE��HR	�I�WQ�ǧi�p���!�����&lDŽ2a�^�T���w��1
Ɋ;D~\�� ����`Qȁa4Z�"�ah���g�}iBc����%��&��T�$�!��FK���M;g�R*.#|���=(�<�`+5T�az�*I�!8h'����,��[�bo�?�����?�fw?�qi0z	���ؗ�r�z�F�<�Ԟ $EE"��$`���m#mͭ�һ�*l6�0_*�Z���\�A�	��.�%A�KH���oMO�r�pk'?c������cm�୥��`\ϩo��2�U�_,�/��B��*ݿv�Ũ<n�H2X�Ef�˗q_�7�W/��e��*��t=X�z�֦��76�.�]���⌻6������{��ӝ�kk��X\�,����~�Ƈ;s��n�N\��}�����@On��3ӕ�o���*�|6����n�j�—V�6���9����
?��)j#2���T�X_��'C��~��DR�d����Ѕ�߄Dd�-)��.b����=�,ܨ	#��#�%���&��1Zy8c[Ϯ�BQ�f��y�&i�E��'��k���t�4\u����աD̑J&�ƶzy��H�ބ��Ԋ�9%WX�*o��V�#�P�xsI6��c��<�U�p
�ڡ�-�cM܅����t^��s+w�]	yJ�6�M���$�E�rOk"I�`�S/+C���Նwq��Z�0sF�pM'T��|z����M�4�f_�p�]���{!�Z�h�c����4H�o1�0>�]<A�̖��ŧ}\��qU���������t���6����|yۈ���=���^���6B����.E��6¸40�i�}>�|
<��.�~�s�,�YKऒ�[�2w��t]57uG�H k�`�Zn�0~tvii�_0����g:�+V�#xW	�tv��m�i�Ҋ��$�k����z	�X<��TU��M���QM�d�Pq��ug�op��ճg{z��Z+��ʚf�MtM�JWךPKL�,p~X������Z�JŃ��@W.����09��t�}�,M���7כI��$W����N�j�=t�PC:O���)��#U�%-�"5�:�]���T�vg�v���Uw1��\��L����K����
�:�|�@<�M"�O�!�#�$S��Tx+��H��@I��V�v5XA’w�s5�\�-�k��:��!��I+Րyx���!+��|��\،�'ͺΡ���+L�0�	����|�-�%�(Dw�V|F`�4CWT�� �y���S�ձ�\,����A쩖��U��qW���
e�oR��*��&�^�@<�-,��e�\Nc_�)vQ��u��BܨQRIq��h��l��z)�!X8�X�:$M�a��p2���I�wJ}Ùb���ZF�"x��xpm�6�Y ��K��HP\{3R�J�8���;�\��P�$γ�5¶X�'�Fvwt�@n�K���/ی�^��y�'+caK�E󴠫�V��:_�t���`��*�2=�R�Fs�N���DWg�Щ�wn-!U��`��q����
ʘ��k]�tcI����)��ʺ|M��p���Vty,^�<̬������|�?ށ|]���I�!ţ��E����4�m��n��i��^{k�`��8�w���20�A��R�z��{�S��s��Y�|J��|2U�4��ۇ��\����T����Æl�#M~�0S�{O�EQ��٩~�����xz��P0�k�^ٴ���C ���-?YL���dөh�K��x<�BPH�I��A�:������}si$�8�k�x4���AQ$Ee�W(�W�Ϲ�Ӑ�MI�F��@G�-t;�Ds��G��ez��8fZ�ˬ*��gC�(�L�ųC2 �ɕT#y���Q�1�S��%��K��P"ؓ[��ʕP:��5]~0�G��ٮ5bK=6&^����Dȸn�;|xV�LT.������}�51[�(T��U�*�UlN8$�m��"dt!K��нR����Q%���u�Q�:o.���K`%�:0�r�'����2��<��EkTU�8���`u׽�e� ��'v��n�[��F$#�C���~�d��D��~���܆�K޺�>I��yc#;Djsi\�F��]Ӱ��?[E�~�;��s��įg:�\�D\�VVV�}(��!L�jh�7nC1��Z]�n�nUI�e�W�7�]�(ղV���ΜX���3��Ν�D�j����^����~�C�߬��{����K.>pa�z�T�w%�>�"����J'�yWWO����_!�g0��e�Ǻ*��p��!]c��\,5���H��rWӃ���6��1�L�8.�@C�C.�\5�`�M'$b��RN�+bL�Hﶅ�YXNFTG\�ڮ�d��������_�8�Öi
�R��}\�>M9�%�ԍ����D�Fv�p�c�;@hh���m'wqg8�
E<�!`r���"�g,�
�4з�CVr����1�5J��ځ��C�͑�S>.g������X�w3�̩��:��栬��*�.r����L%��m͆t+F���#�',�Ԥ�-�HJ��u�UN���f釘�FBٳ�.��fܾϭL�RR�6#��2�eiq�dB���kHc���z��"���t�XfK�ml���m�0���ЭF6�^��jݡZ�l?b�?0��Rq�f��z�W� wl���̛�5��%B�֊b�K:L77��/�/#�*I���U*�ϷnS`s��ǧc�g3���鶶�6�4�������.��m���U|�G�����2pi}ɨ�p��,�V+�!��}�㫫�\3�7��PU�-�P�Ƴ��*aT��1��
��e��U�?���'M���⻹v�d�KZ������m}�qO�t�U�ʴ�i�8�K'��A*žW>��R���7O.Wb.ӗ�^�#�9��)g��G�C�ʴ�����@���z�GA�cERn�#�Pm5�w����e+����#ṹ�\}��px+���(�R�X�7T��ߚ&�
�:��&
k#��<�jv�.��
&r�����L���UE�w�t�k<v7�?ٮv�����?4��&���A�$�d�a;���7=��
Ag"�I5�&\�����<�lp�N��C��|�T�D��'X�A�ԯhB�f��U��c6�ȶ�*�Tp�Y��@�W�<Y͘��-��2xc��Jjj�?U�	D)�N>UXP�ic����
�ĵp{���3�,��W���Ʈ�D�!4�Cp�d0u�m�H�%�%���Ǩ4q
��4p1ꮱ����F�L8�ɶy"������,����r����p'�we�U�5����Ԍ���0\��J�k�kT�
W{3a��o��h���Q�Vfŀ�jJJ�w�������!�#&�|c�t;��e#k'����o��X]�z��l�g{V�7����Ê@�K�@�m�
:�R	��
������S��N4�̽�s��+��¸��U�bޢbL�}���ɱ�W^y���c�ř����{��"����vo�a��O���u�I\���5�xzsp�޾�O�{��2e1��70��w������|�%�p���ާk0�)@y��=UE�
�w�EuB��M�s��C���~�Ĺ8�ݖDw��ʑC\ێs�ɡ���t��
$}0Nnu���!d�iP�mw��3J%��/>��$�x����T/�Z��U E"�g���.?�܎0���Hlj"� �)�>e����џ��N����\����C�r.gM<�!;Z@�����\�W�L��� �{EՓ�V�Cp��*�0�-��Cf.�U`��ү�di�x-��Ss8<ʳ�!�$S�R�gjE4GK�
k�T������m�J�]`�H�x�e����1B��\a��<*�3F1�5�M=�n��l�De�ek�]\!�ã=���(�%�z��A���k�:����J�^Tw��߼�D�K<W5��RPFڀ(^K��H[#l��<$����[f…ty*�O;����n㱿�/���\%�+�\���{�ض8��<����5���6pkg���[��>��D�Վ;n��^����/�s�f�o���.����;ԙA,�F����g>�CrD�.<R�J`�s�~\�[���J���, �,s�Fi��\���?����ߜ^�Y�߼t�x�L�ԭ���w����6�K<�"!p��Q�����I���4;bD�a�O�%���D�����+��$=�ڗg�F�.��l��9����	I�nH�ٹT���h�Z�Z�f�X_,{����,z;h�	di��E�s���q�bvx�0<g�Pu8V���8N�R�FVP
BhZ���x���Z��|~j*�fUg��x"��Uòi�#��c�ρ��dm��Ay^�
�rvk9&c4#�)��]p��ߕȸ�b�BP�'
8��������\.
��rWHU[�&>YdR�n�^=N�eEL<%�J^$@����0.�����ɯԥ��v�U��sA�$P��%�Ʉd�%/��HEXS63I��y=�7rU�����f�Òq"(��R9Y%�KD#U�mB�/�i��ެy"�'��B�+Eӝ�����*����󌗔��X�i�q�������w�hCQ��x�Q��.m("wp���v�F"
�ʏ{��cg�Xd2��r����q�Z,�M_^<�R�U���������λ���Sw]|�J��y#;Ib�����=}?[G�q�z�s���W�Y��?zcei�D-��`qɎ?���3T�T��*/&l�P��[��7'�6�K%��<�'��ҳ���W�XZ\��ȑ�_8򪐏��/���$�|E���{�>M�m\�H��-���ӕΌ��Tx"2|��=���=��۷���|f��\��W�f�4Ƭ������M�4ԙ���˝��b�������dH �ɏ���M�p�̩@%�s����KC���,F�������/�8�C�ꝩs;�5S�	"�bq����x�H�(
�U���������E�����b#�O����4�۴#h�?�T��;�*�+�i�zi�u��l�t��I����tz
q�a�b?��1��^���rU�qNą4|��bn0�ܬ(�r��f$k�t��^Fq���4��G�
�\�������7���3
��
�������*x��)�n�+�,�2�	����$2*Q�20� �R��k�����L�v��k@�����X����X��&�Zb����&k>��
�;hx>R�trՅ
�P���oD-���0�U:e`+|����QpU�uiAdKQi\�;>���?Qx�1	r�9��[=G�N\k���or�u-s*w����­�+_����:}��;�xu�jWo�+_w����0��{���q��H0T��b,�g���+Uy���
!����
��B�tSOxU�y5W8؞B9����7�VVxC���yGSp^z�7��=0ؗ�ʲ��p,�58�î�@��5Ɩb.M�����u��
��J�^ٗ�z�h�t1k�~���xfrh�)�i�������#]�c_�s}v����P��t]:q����G@�z�u�����srL:576���q_�n:M��A�`[,�9*3�toowS�����tځ�]�ͪ�I��&���<�&n���	4��|Kۜ��`������R�X"�J%õ�E8��m���j*���	'��
�	"�9�c.M�”�lóH\�.��z�q�
R$lFς\�x�� �mhb��q^V������^~	�R����?`��N�����@5�Qn��4}��U�m�YLI��K�T!B
�ќ].!�`-N.��R ���D�Ta��y.a�t/�c�y���N*<���4
T�E�KO�1OT��?|���uR�)�O��"���	�TT�%9�[����-�Y�x�[�IV��Ŷm�<&Ild�^��]���NP��E(�նZU8רJ��鵎��Ŷ�w<U��8}�w[s�%ֵ��������+��G�_M��;�����k&���)�GI0�`Cpax
cx�S|��+e�)�*sS���TY����/�^E�t�n�f�#7�;�V���/~�3��[����Ij�+q8��Z�����T� �5�o_>����hWo/�l6������l�K��s\��
����-j�.�sVGã��X~l~|2;44>�7�H����3�g��v"�@�	��$��}W��ך[��Y�Î�+���̌B"���f����l}�����r�\����L����H Q�P
�/�<
�'�K���(�.�N�d��~؃6\9����ph��K!����h�
��S<�cj��P�vBL�]������GԤ}Ջt�)�_�)d�R��x��,�އ"~X$���5�Ê�P�[�$_�q��~��&�*!�%4I�$�7Up�a�w��?�'�߅�X}A]��N=O%��G�%7rpT����٤�?���#�k0j�I�W,�S�K-?�dDUw�S�0.�'cIE��}l���z���U
���E����#������D��geY�6��*%׀�6�p�?��^��ȉOn�p��V��5������+���-�^?���:�M�l¬շ{����ك�g��;{��+7n������]�����=����2�g�Ș��d�	��@�Xܻ�o=��W��i�|��%X,W)h+���_�b2���\G�^��?^��ᬲ����\Մ�&R�jo���b,,��AmҬ���
}Gs��1�,�ͦK����ȷ�a�v�]<��SՈAp#�,�\�p�e�bř��}��������8f���C�"��+K؉ę9����I�0d�ړ2�hA=g���	f�(ՐN���/�{=�kZ^����,�������v:e������R3��2��I �,�!"m�=IW"V���X�Jg8l�p&T�V�
�����T����8�&XԲ|)��w�s'�V����D�/ĉ2��G��Y%Q~�)�,[�5*ͼ�=$��@1��Rɩ�4<-�Q<&lђ=�jp[2̛t^�S9磡�sE��f\#Spmu ����_�J3;�'lMn�5���h�teN�9
7�O?�He���!��p���ace�@f5ĺ'��?����R%nc�\m���^��5TK)7W���(*N��B4���(V"�.��4S4�X�H�y�
n���
p��l'��X�]	[ԓe��q����x�g��ƞ�^��._fRu��uh�ʃ����[�����X�vN�y�����s��U|v�v�~��_�������0h}��/�hnU�[�����3��/���Ӣ��6/�v�`�[����.�z�tvO����S�T�;#q��mE|�>D8xS��ᖉ�d2��溆���,��,����/t
�\��W8c���<ך�?^'�R㔞A�emi��.4��R	O����;S}��Ӆ�|�����g��9	�R�Q�S�L�c{t�%�^�I"∤��ڴ!���:_��atu��?]��w1r��\~h���娝��m<5>�4�[�(�ApU-۟6b�L���\����`�H"�e�ޖ̡t�
�x ��)D	��[�K�Ő�as>��N�|�4�%@�Sھr&����5)
��櫉��x�"�Te��"	�1�ת�jj�:E�$��]^��R���n���\�|n)\����� �+���9��'L�<u�v�bU[d� V��j�~�&�_cB|���
�B���e
�Iq��"W�%�v�|,�

gS)���@s�ZG�63��OG7��G�Fp2P&�S�V���NeQ넲�^���3ʚ+�N�Y�q�..-l�x���{��p�˴a�yc�u:�9��fk��KO)�\��q;9�����-�����:��6�c�6j���{���Ww�4701����?��~��w�L�|n*�'����94����/��'=|��M�)ޢ�[��{�Vd=Q'����]��LWJ���Mt��V������"q�@�Y�X����/��	��q����{8�H���I�Z��s� T6A�Ⱦ"�Շok}����k`,�E� �
*�&�Հ�bm�U��9Q^&�][��v��Dl�2nڪ���� �������8�����A��p���x{q5v��6��&���\чwB$|Y�S��=vS����Llh�����JE�4B�
ѥ��!!5��GiJ< %�o�t”J��\aG,5WL8n�{b���&�Sq"��>͐�B�`����Mm%!_E2�;
?ʈ �ں�[.��3��h�u�Xޤ���M&f�~�*uZ-�ސ/�J@�u{4ؐl�hئ�Pa7!�r��9Lj<��)(�
�K�4ͭ֞�3�&�ТB�yp�y�͞!��L(I��T
¦��rC^!q�&��G�E��g	���5��h��i���O�ť���[�k˔:��Ќ�}��?���W�wq�|�(FW�ַTߙ���Ҝ�h��E���8r�}�T��J�&"w�\���$�@⪘��J�u���?�zmLz<|�g��>w��dg�k7D�V~t+�r����w�LL��t��+��
���s:���.s����(P��>�Z���I�~���;w�,@��U�'pK�쟹��K#���B�����U��/�z��W���Y.��D.c�(�o�\arG���Y-��OP.��Mto"�8��5a�b����@�b���=-{&:i~�e5� ����ܗ��e�~_@#5ԊRë�tXp)!V
�+�iv��O�2�ᡴ'�X;#��h��ђ���`�V8��/��ۇ6o�	#�7�dapSM���Dܷ�<}��Y�������l�hK���es�4[�Yf��5u���}��1l�YQ��s�	��7�Z��aH�C�
��P�wkp$��p6��3��Q���\AK�(�x0jid����j��N.����72V%�eT	��N�ߔRO+�j�|�������sD'�<�^IchaԊ�*���)�Hu&���v��:y,'	����`"Z�"$�r�[7V��H���p�j&�r�!�"�n��j�h�����9���
\��>JG�����Gw�lۦ�CN�20�|���QL�\�۬Mm��Ѿ��lm�ؾ�M�<%ڦ���[�ot޻�ra7� U��v����Z�Z�N�m��r���7/�۸:�'|]^�[��-��éĞ���S��W�Λ?X���ø.�׀[:e~���u�-S4�Nv�X���ɓ'>�����~T�߯-F��6�,�ߑ
׍���4��D�����Э7��q{�Wu��K�&�S�x�+�]Jh�����o	�TaB+
��$ᦹ�rX��V���bT�G3��<�U�|�70���2����}���W����)+_�p��S����\n8�	JI��ߒ=C�cS0�&`&��L�'��h*�B����!z�//�xc�0�yZ�|�P����Ç������M�2}}'�d�5Z|5�}���F�s����Po��c���M�H*�Z��Kd
��T]�?�S�}]]Cq<�94�t'���/'g!g:?��#U_ߵ�%�8�qJx%��(_�F`��XڢKy��k�������Ѵ�h�O�R6���
B|�fZ��&�Y�#/׹ׂe���ڶ����ǭ�l�.�J�RKO��J�kz|���XN÷bP���v(�E�fǀt|��60$[Z�Ƶ�s��$k�|��7r`����n9H[[�
��\T��R�����B���)ƥ[�`���f#��?��=w)+Aϼ���=޸����e�aF.%�-#׬"<W_��;�x�…K�N]��:�Z��������Ǚtb8�6Q8}eu�\�;_9w�̿f\�g�̜��!~"���G��0?��O�v��g�	�-�o����u�2���{����tVY2K0q��������7y����oGE��en�|����}��4G���4��s���qm+^�<)�u���G���	���b��I��j$2n���HEW���0�+��R?0|�h�>�3��Ee鞙���;G���d��)8��8��S��.M�w�ϗ�f�D�M�H��v�F�>p��Mׄ��h��,���f�17EEР8��tf
��2�=,�k���]���I#��4E�אH���m2�<��}bl0�lI�"����l���̆t�PmE=d���~Ĭ��b1ˬZ�\��zoJ�o`�� U#�#Uޱ��Yܓ�c�ʍ������]
=L�-�4�cS�5�9����i�W*������%��m6#ߝ4V�e��%rU[��1J5�5��$(�s��i�,UN�;m�� ���E*�Ů"�oz~�?��izT�Xe����6ʠf��
|4O����f\UU�����W͈0��Ի���A�i	�>(�i�F�Q�n���o��s�UJWہ6%��]N6m]���߻{�$��U4W9)Z9]���_[Q��;�._8u��ӓ���\+�O��ג�D-����+7Vn|�;߹t�;�{�ٌ��X|��w΃Qj�)�W���r�Zz�=�,̈�|s����G(�Z���oĶJK@��?�y���_��#F��		���Uq��v���ο~|6v�_�ʹ��Ux����J㇀�}�5����̭OS*>�ϊ�o�I�s-��pV�f����/q�^ʓ�)���KM(IxNW������BMS��W��w(�d��Ra�=g����
MW:�;��N�e��
��(�ˬZU�ff�;�|C F��
kI�k��Q[h�V��0V,�HS�c3L�$��NQ_A��g�3��eG���De
C9�2��O��3���������Is�HC	Ar�i�g��0����0۰f?�q�#(S�
.D��+�,���s�O�m.��ﲡ�F2'm���
�{0�����T}:@�?U�s��T��v�����-K���h	��ؗ`�օ�������<�j-$�I��iJ�$z��W��Z�˅����kò�Q+�KXɫ��0?�W�m#��i�n�ZU.��Ϳб��Z��������p�Ohkf���\�-��Q*np}@�y]1�WaL(d�t��hm#�F�ٱc��wB��zM@��OO?��9����e��\��gJ��:���K>s���7��]:u��Fj��k�{�C����9_|��+�\��V��\+����%�|iw���DwŠ@M%ۑ�,�ȑ�%�+y��P��m����d�FNJ�1�9�<U!�T/���.�9z�o1��8���
�Kn|cu�}�U�5N�_�t�\��O�C�qK;��‡�����.ý"�9J������e�O���5w({f&#ɚ#,5W_eKT�RrX�b�񡡩�tw1���ff�O�f$#��r��P���,~�� !Vh\v��夫�'�4������b�3��+���
b3��� I,��f�0Av:]QM�_^�bo@{�3�E+���a����O����w A1;�Е����8��Gm��h&�H�h4��� Os��[4�� �܉�]�$I��̓X�r8X���1]z@���
K��eڑtTcI E?��A��xL� �=��~+ �?K���U�Rz`�@�M�-�� ��?:�(ڲ��?)��R"6���2��R�c�~T*EQ]`J˫�jAd;U�Ҵ����KA�NE�Hd���3
7��gW���.rb:;��ѷ}������"
9����č>�8
p)�A���{E���<;:�v���J�H;�[���{����Tϻ�o�;|��L�V��h�ݭ�.!�K�.9k�.\�v�3sgέ�[�3b����Ƈ����+o����+?��V����Y>���������]��Ze;��	�r���/���p�����J�u�%PM�Ȅs��M�Y�w$����u
��z�,��%�
d�0ke�l:喖��b}����:uj��ss��[T.\��Xd��+�Ul�#H��/�/Wd�ѤKQ����Z�m�g/�mbb�C�d���������A�	;P�	{_p�Sج���]�^��������)挑"���n�������Z��@���Q]S4�� ��#{8ʒDoJ8F�+F����J����zN+b�
�"]^j�t-�Wr�z�JƧ&�і��u�_��?��/}�K_?9V螜f;uv<�!TW30pt�X�4s是�d��Md�㴅L[��T� YJ��5=��k?����M�&n)��8>#P��$
AI��\�ߏ@��Q�H����	�Z7��ʭ�mE�۩�B9=P���f(+=VK)��Lb�T�t-�S6�.$K)���Ip���
o�J��O�P��b~z�U�D�[弎}ZPT
��Vy\O��zu�l�U�}�Lt��h����cD=T河=�itjTB�ݍ�
Ɍ-b1�s�v�9��hx����zq��~j�[K�&��0���\��v�.v�~��\?����"��S��~��0�u�K�0�N��.Z4ٞ�rc	(;�	��ҳ5��1O��.s��__������O.�֣f�zQ3��n�pk�Ll���_`4s��۫�@�3<.��嫪ԛ������d�rl���ɇw@6!���g����UV��%ٞڑ�������d
w ���jI�����2��$�i9�0�M��=T&��.܊���q����,,�_��p���;���
����Tl+��Ÿb}��Z���u3��O��/\�}}y�/���h	;ч��6�2��RZ���W��pu��"F0��C%��ȃ#�����愔�A0Cm
,�!X��2V�	���_��ɓ׋�q��0849ur�L�����_G{dɓ���}}C�;������>�ʾW���G?ut�03��F
�g'��t���C5&5dBJ�
e��U�:�˥����+R!\�|��ф^���ĜT~R��N8���d/xv��	I��o@C�2�:Ŝ~��
�<�k��	�bc#;
E����cP��?TWj�B��O@�:�'�8��.�[jI��KK@��p=<Ϫ�����x���V���_m�Oª� �O罙΍����{P��m����c�� ׋��G��W آn�R�e��L�-�7��cp469A��4�O|�����������xM�m?����Y=D�e�lv�f_;u��\/��b��s��E>�M���3��`����R[��&���VWo��0���w���o ]��J��?ټ��)��x��R��dx�؍۷
=��9�*9��V�U��*y���^?b���оu����Ҡڬ;�?j���2���YŸ�U@�E.�5�{��+��L��T�T�ݓ�`Vr4Z{o��y��k�p�yEFj���"�d��2�ԅٙ��ׇƳg����Cd����`-”�N�+7UH�
� �,�yáHw,�T���LAG�&KT{Iy�=xP�ό�uʐd��LEѼ��9.#a���>��r��:B�B��J��]f�����H���>=�u��>pK�N�%`����G?]X��떗�>�?�ϓ0�[�qޛd�d��O2Y������!�Y�)>,�:���6�8k�I�*���A�tC0f��k`�y�K�xbOd�2
�<�VD.fA��q�5GDm�^#Z�v����ڙ]Q����q^rхI��򞄖i���r�q�O�(MT~3�Ҁ�,��p�F$5�GE_����&��hM)�5h�ܱ�v�Y��+x�t�b}�g���lg��γ�'L�� riQ�}�D�g���kI\�6E����|aP5�G�}�W��w�8���H�#�����tb��]v�{L`8�@�1Mj�.4�lm�+Wn���3���t�t��k뿼�B}��:���N�����V�]^_����@?���'�	e�.sAL�xq&��~(���܄��W�oty=��f�P�sK���T�u��z[K՞�����
�Q��"\C�Z_Bź|�5{����%,3�A�,���s�Z����{ϟ�\{M��J��#�XU��/��}8��CO�m*e�k�a7�݋�e��C�f����C�o�dTY�����$ƪlo�!�靘�qD$���y/���
ϥR����.�NmDtCb���P��U8�k#�H��U��jA��oq�"|dv�ԩR�xt�h]�������D�E�Ld�ƲVl\�J4��_?9�*]�����0�74Uφ�8�>�4�/���k�f��ق���p�[��fbO���=�~��\
(S�(�K�rW�H�a"�=�^(CZ�[<�	�!�U�s�3L���t����uK��P������1�b���V���_�cPQ��
;	"������L��j���-�OP����؁�y�u����)&�td���k#�#���t^k��$��{ү��.g?9���?�}�G>��^F.ֱ�@��nWj)[�De�\H\x�{��1��w}���|� a�[�ڤѷ�=��F:v�hmlV>��t��E�	nI�;wg���^���΍ 	hĄT�A1D4���Ĥ��O͢�3n��l)�[Do�S=����w8��jAZ�;p�X,↠(��5#^en&^��|��]������sNO���y��>o׉����}�hj���de��߯��f�$8{�Jjj<Y՞��!Ź�k׮ݸ��/-��h�T ��E�E�	dTi	��X3���|�@�+:�v���/�t�6��s�]vߜJ)\�oc�ɠc?<���}]xfX16�
&��*��Eb����C�]��X����!݌w��0z�',�1eM�f4�!c��g���1iD�u�&]����!�����9�=��Y!�����L<�m�i�QM��^{ ?��"���V:1�H����!e��c�[�22�ېC/b'���H����1��H�o�l�mj)c��u��ga�{�ws�(t�H����H��ם�"���7�b���}�I�⹖��|詑_,w~�����<��n�lb��L0�L4E��R�!�m��~��I�2��Z ����^e�3����
��d�t��Z*�-�x����I&Uƽ�e��PaNs��mU�ҋ���{������FV�y)4X�rPSN�
?V-�U�Te:h�#����rV�UNS��hh��C*<4��KS�$$�ɂuxT]����+��l�!��X��"	{U��p#����u�����2�d4�?>ynr��߁����
�����}��G���>�ѿ��@�H��ڟwC�"�ᑃ]�I��������]= ىcĸ��h���_8����>tGO^�zR��4��G>q�sV��ۅ��=�ԩ�+���sS7�~/�uU��~>ۘ��̓2?��׮߸�õ��W�,�OZ0�P��o+��B����X�D�L҄6����Lj�Ŗ��`̐1B������
�
쌐20�	��^�k����
���;4��������'�"���ChZ-4e�	*�q����O�ZiyBXi,���lomm�䒑��[�Pk�]=a���D��p$�OD�EC6��*nT��xDc��_�I�cNGj��m��i�j����Z�vTVf�7�ݶ��
gvO)�`����ZHK��n��{	��tGK٩�K�0���m;����
����uFB3�B�\<�ݢYG0H^�  �*PFCͱ�,-������C��8t�^�=Q�p%!�q)*���/�Vu;f�NYm5�J�?��?�n�[��}m�q�8�u�Ɗ��\%�Zt �N�
�����$��/#�U���=FƧ5k�#�z��YÈ���P�^Ҭ)��UIňξ�H��N��惥r���_��bK�á���{��>wz
d��1�Q1�[Ľ>�%f}\�K�A�)��܍�Wr�ɮ�OO*�Q�%����W�O���?8v��ÇW�v���\��~q�V�<pz5���0>?[��V�ԥ�������ş����}y�(���+ו+�H�K���a�_a\�3.PcYX{�m$�,*�V��P;��#
�iE����2Q���TX+�Y>�a&����"`p�a߇�MϾ�{�X�W��NA.�\�>��w���g*���D$���eG���U|0�8a�i�P�J�*�`�(����|"�z��R�"��t9�gr�X~ vݎ��w�D��D,I?�[	�&����6��T8SY��`���ux���.�ԩ�#[�b�l�`���S���*��h-ڪ��Ц�B�V�>F��-R�Yoxdt�եG�E6�(J��p�d����
��vJx���p>����4��(#��E�{���2*��xpT6պ��:�T9�Q]��E�.��3��#��ՆJ���!��0�bD��[�D(t��Р]�$�e�TKc|�0���+5��`�����Qj��>�*�*�N1��fˑ���
_k-�[Yg��:��Y�^	�e�Qh
�&������^����wy=�z��Cf,�;CW��O���R4�������`}�_>p�g��w�ݔV�]�	�Cd~���zف����FA�-��`��#��y��=O�{��û�?����=�/PN�0�)6֚�&�M��Frj��3%��$����+صзoO]{~a�_���Ov_��ќ�X�
�E@�Ĭ�`@���T�6�Ҕ/"�ϴ�-�����\���IL�k����+�e��u�dk��XȊVp/
���y�_%��
_O?9�`˯�W�>��{[��)���_�}E�)WܮA@��N�-�DV)���H"����5B���t��byK�f����hF���QZ��L.M4��PQ-���*RnO��;����Ju4�n�[-�i��-l��Q+5M�\D}���n`���P��j�^UW_���mte�`'G�ljŠ�FaW��yx�u)%�>8��H�T!>����{��[��1dG���փ������j���
�ϖ,�N�N�e�Q��p9\�m+���� ��C�:��)>s�ϻI�e����‚,4S�^���wE"q���5�+P����Lc��۹�0E��@5�����{E�I|h�
a+��ٷ��e���m�hoG�r�J1y����}�#Jе���PI�?����)%K�_�Y�j�+a�..l3�;L��N�rY�Xfl,��n髟"	��\�wk����CR ��W��������^��f_ݫU!����]�ȑx;�������{��o���c�8-�e�=����n�_�����6��/�pݖ캱���ԕ����O=��xvm��[�7�k2�Y����P��f����@-ŔU�zY�%�*+<y4	 ��G���H��q,�����%���l�m��*3��Y�]#�պ���P��r�.�'�*\��UMR���quO�z��x�\9`��Ž�O��Ts��i�Y:�
ゃE�d���=���_T"�30�x}0�RR؊$)!u��X:����a,;E�^Y{EʶO�++Y��N�O���#��]��F�!a,�!Q�FR*kFCy���*�=X��v�7�r����C���rXV(e#�[$Cܹ��$������Hqu�O�w�<�yr8b�h�u���C�������=j܈�EXK�&�V�%��ӽW���W�����2y&��M���v���3R�����&״�A8q
r��%�h.��T�G$��IU�o+��Un�)�������+;htz��x�U��P8�&e@ �����_�r�DM?�6T)�B�����*˜t�D���-����7��'�/ey�duf���� ����Ç?��w��3�Ѭ�Wa[t�{����sw�����t��b�'74y�ݏz�X�/��Ut����J��Kw{�OO�L�\]<��LB��/$Ii{��}KK�9,O%g���.Qy����D4�j$�z�����
�Y)	���U|��#w�e3p�����a��h��_��n�y�%�h�p�}&L�������1@L@�G�Z=n�h�Kƍ�|1-�j��|^��*��-.�ne��:vy*-�F��N�W���S�D�j� !�Tx�ЮD�@X:WrO<���l��N�Buk��L(��x����]j��!^:�t.���9��*������R^)���n�� ]YTA[E����I�9�B��j��Qq��t崖��eJne2Es++镙H4�\���oe2��}����$�yo�"<�H�����'7�K��P2�F��	�=5��5�U���x��Qi�	;8���q�Im�!��[UHՄ�4j�g�(^Y�V����ؓ&m֘"�5�2�D�"�{Z�U�oC����k�
L�vG2*0��q6;���|w��d,+�T:�R�r�� �X)j�^��PS�d6�b�x<�%Q�z'�UUC����:�:EZ�6�+��R�1�ۿ�(-a���.ˊE3��ف���4�x��G?u��c��X�\���d*�yr�d ��>Ln�'?y�¹Փ�tz6�맲G��d������t�E��pu�3�XO�kq-?~A�\j�A�2�&�]��M���ҍ���l]Sj|~̾v�2`/��o�_�<u������
����Jh����_P�l��^�R�����?l�h���#��K�"U�E���_��b?�t	b�5�,��\�5�&+����`�ggW6-5�}�9{|'���Tk�Aˠ��(�;�(oq�����î���R=`0�Û���-�?�\H�F������0�H6�q��	�9��V.���k�@$�KG��Y֩�JyR
�t�E��j��D\�Sg�i�np����;1��P�
>!��媨�m��Q�2J�b�G(x��Dh^���E��;f�̕�D(Њ�e
�l���4�E["����@�@/�z=�E=i	�����\v�Q�9��
�bK�Xu����l��S6��!ȓ0)�4c�b�|mH����Lc
{ګT+��W�B�Pb$����Qa��>f*��a���������9�\�P��
#�L����#5Ԟ��'&쬝�fSHRx-���*C�}E`E��[3�*���7��f;�0��5ΤgǢ����} Wv��A�w���>�Z�sWa^/]�Fǖ�]��'���,��Cg��_�����aSK	wi��Q��^㽇�N����?��eZ1�l5�Pĭ٥���&��&Ʀ&Rs�K�,�]�qa?\��v%{�kHqM��^4��o~�<�'2������K�[��J�x��.b@u�lg��ǀ	 *��@��Ͷ�zA�c1I�u_�Uj�Ϣ� nH+���ZT�r�+43�z�DͰ"��B-l�;
W�HG�\�X�	�rP�1e:���Jt������8�H"��,���bq J����b��v��h%0�~�SM_|ԻT��20Cg��F{PU=C\lk3�HZ�
�Jk�[��N���ffrQ"l��L��j|�����lB�$	r����<���"��`�)�-��N�H~��K���m&h�(?׈���B�|F%0(В�X������`������j��sv(���R��OHh��r�D�c�j=.^Cq�Ӥ_��p��T�Ok����+���UWs�$j�6��r�5��2E1��f{h�C�C];�@hۗ��]��--Δ�#�ԩ:v51�R,/�%����`kMH�A��
1<%�W4����O�G_1�_��ζS�^�H5בɪ�Tq?�Lo�}~�t3�R(�W��հ�H�Ϟ ��"c����Q��>�ԬO�{z�{�|�‰��ի�|�?Z�Y��7�|�_~x��b��s�}O/x�;QI�C4v������wUC���3���ޓ��h���sG�&����c̒�f�c/��[t;���a{SMr.���Z��m������74�H������8���5�~���dR��¸���;w�.�XW)obYEC��u&�iM&�UD.�V��#K�A��c	�,Y�/�b�ٺY��*�Y�]Ț���vex]ٵ{�jr��ϴ�\�G;!�]-�,+%�Bo����cϮwx��A�'
~�itBOSQN#•O�1���h lد�+�
�r凥�ht��y:��8s�"�Sܫpd"6�i;�[Y`Oo3�h �
X�C�D�|�@x 4d�T�ո����Y$vS}��-�+�(��Qa��ɤ����#��H8�����/	��I�Q����JL	]
�Y
������F#(��2I|���hW@B�:h��1+Ω����Ti�ꑤ�e��T�v`�@)H��q�ŋ�U�}�C����֊�bt!�9�̐_�Y���S�&�'�N��C���0�Qz����c�P?��`�%�*C�1�b��I��ϖ՝J!�e�`��h�|ʻ��"F�r²[[�8�{ iXNX �G�n�y�OU`f�?~
p��R�ll���s�}��h�y���$+O?�у�(�s�x`,�1�����ݸ�������sx�iZ�w����LM�W�xZ��8�/
>��lLf"�O��F5�<�c��Y�q�������SMMdC�a*�����M#u��"�7�1�p�;��^'��6({�i΃9���yľ~�kѯR�]	XLfHPA�D�*)��š��RH܂Rp��e�YO�V¬o�dBR��L��_�ؠR5�޲'#s�;������(�E�����/na��@w��΢Hyyά:*v�s�����qD�j��'��9�(v��
=p��� ���\"��(�jH5S��j�1.���P�$�Hh`2ǡ�8��j>L�O���O�Dg^_Y�"�@�	���qwO?�]����6q��*������4«9P+c����#BD?��2�#��t�έ;�鸡�[Ƃ
�m��D�:�V[����|Z����"�8�y|�k���!ɜ�>��x���yE-�����('\WA0V���d����fH���e�	ܰɂ�W#dn�A.>�%
�R+�x:�O:�	+`[W���]�L�1\��d^�1��P�%ם�k���{h"��K��ض��x4h�Zթ, �W4DC++|��p�OU���%V�y>��T�
���X�����]/1��l���{V'�B�����ôu��S談c"��#.L�c�ȣ������<y�j�����gH%���{�j5��ԅ�s$kP��݇��;���C�vg��򍞞s�ɾ2Y�Q��6wm�n��=�D���M &Q*�r=��uz�]�ʭ���׌*>�Q�7V@�nJ.�h�����(t���`�Y��h�|����7!U3%�>��Z����/�<QЪ$1��2U%Tu���/Ri
�}����y��H�o��;����N{E���b��5����Q98�
������}�0���5����#a*araM#�$=�i?6���
��c��t�XIp�q7�j�A"j�^bqhGQ�lVM��8XE"�0P��&��?��y��΍�8{$�\��>`�s'c��L&“X��~�4)n�4��fґ�4ɰ�X�"ڕ��gӸ�w�|~tD�#��|<����UsT��ڢ[��&�1��O�6"ۛ�m�����H����!�y��` T�˒�gY�KA(��ݰ.�?(�X�\�dur��,R_&���2e'rs+�8�ј08��<P��L8�Ȁ�˭�W�Y��zVcCGmFZ��\�@�db��Ƃ
��`[���b��h��r,�#F*��^�!o ��9���cE�#�PLtt
�l��!��`�~�fW�@�:�71KS��	�
M9҅��~찱c�09��y��54�x|Г���C]�W/\X����d��	��$	YD�a[���'����s�C3~���TXw޻�a�;pL�[]=r:
><W��Z[�Q�����)gs�.���"�2����W���:u�$�nݼ����O���h�V6g^ސ�&ie0��??r
P1�[�Ґ�����\%�u�v�v</��~�A�����W�o�LB�"X��/����|�P����Ic~՘Ͼ��CO
���V����H��y�zx�������>�_��^�%�dT-3r�z����9�2<9�G�<��@���y)��3���z�盛 �y���ā��tH�2sIn�$�`�{B4/����zF�o93+I�+m����1��6���

��o=x�t��Rd�.�n�V�G/ݺ�'c\����o@�����m,�}
�@ׄ�]��3
FnF��`s;oE�~;�ej����͏���8jD��\���ʋg��L����G�cDՍd>��]x�덳K�I4��c��q�Q��+V&Ǻ�Y�ۊ����h��ae�ψg��,�ȉ6qN~%�1��hliZ�$��$�,��h��4�ٱ��g��Ʉ�>��}`]��Sd�VK��bY�[{�?g:�Y�d�s=]O��@�����ի�����=��H�j�ĉ��������9<t�0E��X2�>��OjnUP�1]��#["�Gm��	Ϳ��t����?qu��D繓���F�=<^ĭ���e�!R�ٱ�*��x���p-]9u��5?��g���k3����ĸ�oy�͙pn}�	��/p�$���1���4�c	��b�+1aW�J�M?��l�1��_|��N�g�T��%?B03a�`\�n����ԙ�Ӱ+7@�Ƭš'�6-J���5��e���.a��>�[��K����/Bf����1� �-��QE����
;n]�s~E[��Q���_��C�G�����K9��߸��RJZ42|^/�����Hc���T?⇩��%�2fJu5�A��)ܸU8���n�.q~����1IZ�)°�pR��Ø��y����C�"��q���"y�Q��툘�L�)=o���i6������Q!O|\hr�4����.03���i��S�at�K�I�?�eh�����5�2�tB)���@$��%	�M�p����!�Y��1'V�M~T��}ǎ�V[��/>
r-.�twx�V���Yz6��GzV/8p�3j۳3}*���ɳ,�p׊�v=��c������벎w�2���&OD��iOgf��}������@������܄'����5N�/)s��y��ѱAUPy���ٵ�1���Z����@s>����[^y��P�~s��W��}7(d��g���K[e���\�Z�+���,ft�U�;��e��L��3K��ej�(����Q%�A��_
\�'�
ttz\����YZkZ�.Og��'\�ݕ�[�#+`ӭooB�������
�Rhn��f�i��VZ�rqZĬY�si��xQ�=�kb�:�8�N�y�9�	���e*�gF�&+�����`*0,a.&���\2E��A?�yʌ5m�5lή[�
l

��%3�`�I�!�@hV¹p���Eŕ�ъf��)g�B�G`��,R&f��[��7ٗ���tb��+���q|a��EEE\��	��^i�!�����f$��q�Q���z"aFq��#�ˠ-7#r�mk�k�ZQ�o�N�~u����4���N�8wrUA-��5�8)�h��b']z[\�Nx^��M������u�\Vn��O�=�N��?�a�قduZ���O-^eӰ����x7��[��L s��-����0?��1>>~��.��=�k]��S��Gxs��⡩�'V�<��ĸ���g�G� �3��o6�L#�=�������~�-�!�L���`�J5�&{��(�l�� W��F���d%IU^'���*K�la�P4k�ˏ�K��E�,c:���a\�ȸN�tt�Z\ �@]��y2�q9����ӝ����	��>Fd4��6s���MXa{3=���=
:�03+�ܑi!{pˬD������R��6ᒟ׳�k�c���G�J�*�'sh PńiĖ��V���0'c*]���%āÜ�\0\aX�Fq�]l�s
�3�����c1�c��\:�^��
L��fc"�{�����3���C�0]�L�Ӛ��q�nA>e��X�p5͛�aE�%
V0(6���>��G˥x���mGs�P��;B�3I�pF��ܑ�כ���r�VW�'�:z�Z�"#S�����������.-	s�abrO�99]�l �������ʕ̓;�G� �O_�L�_<���s�9�����R
̮�3����>���l)��?%�L͎�4e�W~��׍�$�
�t��-P᳴���[g��YU`��-�;��Mo�9?66~���?7��/��%?@�K?��|�ś�v���lE�UV��R��17c�,=
�ULܺ���^*�4�ӏ�������㚧E��h�]?�"��C����3r��_������q �e�4����W������5��_*��}`x
����;J<&��榘9OL��w��a~/�`*:s�j�)�+ƃy�j����_%+\�kκӴ�}����L��$�R�b�[!OK�3~�M�fF��m�@c�$,�&Xh,�8��*��Iе�y����eLZF�&xm(o��(A�z�RD�M�x�)9#�c�� v�=�->Z&�ef`5O�/l)�5L����("��ɢ	Ƅ��|g�SuN�)\���[�PDD-��q����@�x�;��s'ӱ1�롡E�ay�D�!�~	��ؙ.\���o$C��y�
��:q���eg
:A�C�Ѯ�����܇?N%cGr���{�ѵ���{��鎄r����Z���n_���Z�o_l.�ؾ{_j|lv��@ky���d��rݸ�M��S�`�:��On��
��ѫ��__Y���~��ol��N����Ŀ�P���^������(�s���x8�A �X`��by#��_^�~������+J���t�/��J�5LVijB~׵]��ϙ�.��V�!���V�q����O�q�$R\9�����J_1<sg3���f� �{�}n��qNX㜛�v���E!&$&�Nޛz�u2�x�}[&�q��� c�--��6�^a��a�iK�x��7�B�LD�4R�[��*)�v�T��C�ڌ���i�#�V�^��
�L�	b�0��{A��Y	}��43���!p��dJK�a[+�:�WXhP���L�ǰ��q�r�����DZ��7$W����R-�r���U��60���(�޿x�0}�N��ұ�.��A�!���s--��n>-��E8�qҨ�s�?�������颽O���������cW��d2����p:����]n���7ҍ�v���
n�ߞ��Hᚚ[^��M���dCL��X �E��16%Dp�,1�Hx�D�q�����PxBG���9?5��X��������^0F���%8`]L�V�쏯��˗Q�B�FH�-u�E��x��l�B��������T�HA-�
�S0���g#��y�)n;���\dCV������%�^�1&ȡ]�HX�9t��0�Gp�}Kw�J��\���~t�<�d���(s�~���6���0���~
�p��Y���'�dz5x�mnF��;�V�q��3�/F���>~9Eߕ�p��gcA1^�f�h���$�&��Tq&:�$�U�4-�2&���Z�?Mâjr@%�N�)�&�햘>]v�7���H���,"6	�A&��G�	��}J��\G�؄�0����\N�����y��	�^�j/�י(�zN�-"���&��,%dxaY���1p�"���@K�ջ���v@�u��0p��ݗ^:��c�G�[��vu�}㸒;<.+�3���Yn9Q�w�
�;��#>}wlv��c��:�ɻ';:���Ezw��c��v��:c��F��g��=Y���ĸ�5ljkas�T��Q���
9�SP-4�Q*x�_��
:���\���j�Z��,��Zŷ�/���䵋���(���D��Ҥ>����+���%{�u5����Ey6i�c���gȅ?xQ�-��2�}���x���'�[

�ھ	)��v����g�q٣CÄZC����`*ƀyp5�B�Ԅ��om�^^4��(�����ҭQ�
���!�Is�\>	�Џ�lH��TS�0'���JK*�;h��|nj��XAd��Q�C��	`I&�+�)|�V�m;\2.��ɺ��e�V
��!�O
�@����eJ~L� 7����f$�Iŵ���V�_��BK���x^SmS�j	�mrx���4WQ�l�tf5+��
F_���3F�Z�34*���ї���۹D$#k��ŝ]��%��C��p�&�k�<��#U�\u<-����2#��%A]��8�A0e&�q
�zBt�%�F�A:D�ͥ��<��)�5�|�!��{p��ey��=��E������S�����G.2PW/�t3&4Md>���6�̤�||�|�N;9~���_}�Q��z��dW���v��'�7�y3�'����dD��;�ۗ��]��.�Vo֞����r�J��I],�u=i�h�hŅ@E^�AF�k��oP�v��t��<.0�	g\��9���G^�L��~X	S���- �ߒ�%���br}	�̼���)Z���DK�"X�<B�/Tbc�~�wa	�*��z�����Җ�	�I�ؙd��
��|�SӋ~�������l�Z\{q;&'����Y��q����
�;��
۶�y��������%F�%#i�*�W�`�:�;�7�2�4Uq���m�ᜏ	��p"ƭ���%�S�|&BQޗʊp��
�G9:e�D�p��t�n��[�w2c�9%�^Y��C���IOmp�G��[�i�(�V��
i��G�,��5r��Ŵ�('�W7��m�U����J���g������=����QթO�U��jUw��t!����C�H���2JP
�m^�P�i�����묔�ʅ��l̃~�D���]��Q!t�Z�Ɗsn,B|~@rem5����gsk���2�c^�]U�k$I�=.����F6(W�Gz>��hVWJͦ5�ⅻ�'�.ڮ�dH1=y��W_O�:~�jⱔ;6���Sg&���7�V�g�_xa�������;�
�nc�|�A�`7�\�8Y��]E��v@�`\�sɅ�Xs�)1>�n��E4��b��x�Z��@��go,0��͝y\@“�,�A�������7��I$Vj��P%�u�2��,Xѳ��4L��?$6���+n��G;�I8fZa(���֥�,�U;�1�}�@�P
�y����@2T;
%�!т��ՉhL h�S����V�
��e&��s�5!��pb�ɘ��!V��������	9��������~DE�|d��
P�
��O���+XxH��屨ύ�Bl��"��HZT�%�菄��`KN�~W����D����}v�J~��)�
�|(NC�䟓7C������(���4�޺���I���$jtR �D ��h��+L*��,5���
��&:�ˤ����П��
���9ܭbz�J���+$楚��U�,�u�����Z�y���Q�?ZǕԕ�՛S��W�F��j�%IUjH��}�kU���CA�~h���Zm�!���iv�ƭթ2��)u	��*��4�H�k}����g���u�XW��� ��ؑ��iҟq�U�b�s�L�9o�=�
x�h�"����u�s|c��Ӂ\��*>�`c4�}������ݽ�vĝ�y��젹����Ơ����_��fQr�6e禖o�N���ȥ�0��ۈ���O�&Q�&;u��yB���F��c�(����)�X�(Rt�D�B���\�a�.r�^��o^�ѭ��ȳ�b
���}�<��/�v��j�)6f��yuf-Y��R��|��Я/�/T;�!�Ҋfp!]���p�H�N��G7���%�����T����߰b ��ۘD��r?6��G��}/.��NQ���ו	.�*@��YO�����a��7n'�V-�k|=�C~_��RY�H�;�3�#�rH�C@��=#dE�k�����L�<���z?��	d�ӊ�]3x���W1��ZB٠�5��k

H�MS؊��d0���l��l�~�:p���Y�Lo^�x�Kh�r/�|�dmZkDv�W�eL���ދ�8�
�:�˫�X��P��n�آ��
�hb�᡿
�	p5����3����*�� ��*�v/
̀W��ieBS�7GTG�_<����)�qRBr��_���\T|W�gH�ie[�?5��\Ni���B�"�����j]��Ó�Ǻ6/�x���Ǟ��у*vݽ{���ă�d����'�۰�t�Y�s�.�(t�y���{�>��TX�u
6�LO�.����Q�����KW��v�������Ɖ��k���]�49h��۩�H��Et~��
��}q�)�]g�-�$��H��q=�\oȸ��[�/ߦ/5Ѩ_)Q�p�1p�x<�#L�*(BȘ���.��	��ί�]��S�̂���]���j��Ӣ�]�S��^Yˠ�������q����Z�p��R�[�^��Z|���������2<	O�#BV"U�%����p�؇i!��H
X�C�b�ז)��2�~���?����p"����`c7/�'|�s6�i5�	0*����wsc7�Yn+�$DG�.����Z0����V�����j��\*�ZH�XZ���C�i9.����'_��-=�b��h�kNp��;iK�@O���~��$��0S���v���)7}$��z>�f�C�!��g�~�J1�Y�@���E#o�������{���ߍ&I��r�eԂ�u����+N�L��H��:ˡd��t��,rIzk�W]-������n�{w�����=���
��"�.t���p�\�!O� 4D8���a@���w��H�'h	�M�W�^���M�J�v}���yx��4��J <���0��G��|���Nbc�d``�D���������z���n�`��K�Ó٘�svw?��#��ƺ��n)�5+�i�7G[�kWR��2�]jf`]�2���q�kk�T*J���m�a8�0��˥�ũ�2�'�T�?kοUQ��o��K_4d�0�ׂ'"Q�C�)OxVT�1VB�����~u�_Z6z�
n�J�%�z�SEg�I��kss��|̔a�j�+ūsu֓��$"؀�0p���8
�h��3��y�I|VŸ��%�a�/H,`�A-C�dA�sq�d��Rھ@k��Q�'����S��gʟq:��0���/*V�X.�
Gk��V�=a_=M�g����m 2$E��b*��qE��<�j���l�0���sm
�>�"�_�q�4��Ll)�cP��p���[�*��L�����Ej�L�u��C��l&ZU	���8��~V�.]A�ʗ3{�	�j��	�T'�j�(5472����P��❋�T���U��B��*�*P�����nnv�O쬤��Ө�g� �[��Z+���p�Z�J>0o椻��Q~qms%M6x�Z��e@ ��g\4�D�6��\�I�'��F��+g~i��bѴy����`/E��:Q��/��s���
�>�7䶑��?f�dVܽݮ��Aw���퍭�uvwwz��hG`����p�Ɏ���B �<>����Dv���%;�p
ݪ�2�v���z�?HU��F�|1��lP�Wכ�8s�-/ڶ�������[�xC̨8x(�U�BL^�cOt'a�Q�����
�D��g�
n�v[�]�l���:�~�T'b��5cC��"���^���a��C�R�u�zDm��̲1rd�\�j1͉��3t�)�:8��p��1�������|�D��(D�p&�&2_��8���K�ᗐ��`kb���SO�5���-��Zr_=�L��ܪ$��CW�67.0��d!�����C�RTWUT"��l�3�e���g�(��5�q?]�a_D�ш�o���M��<�M�!ra�u�����=���xʕ���/٥$iH1R��A�
��l(�n�C Ӣ��Є��}��,��&�I�p 8/f�Ny��vA���Cm���/����M�rV57��D��Y�J�0�V'DMki�3��h�[�@���JNǦ:�����R1���2<@�Z�@��*��������$+�a�p>QE���t{�1�3�������~3BxAAZZ���]� �A���b[�W:p�p� ��c%}��ס�:���n�<�j[�t��uLww�D_^�z�����<���6=�?�l�css�k�K�)�Dsr�WS;�������A�4vH��j~���w��}v���	~-P�z�ĸ�@�5�Eݹ>��Wq|�t���Z.c_�t
S�NG��RY��S�Z�n�-EmBl!�"^��Ā-�ȥ6�@:]�c� ��u�S�Q_8�X��=IJ�V}[ɓ��{���χ�9��;�n3�x}]��SY��ƁF��$x����6V2�VV�L�[���\\� �3.h��D��.��84,
W7Tb�1��:��n�d�/8u���s/
���L1„��:����
;�����*����[�k���
�����l�%%J4*�[4�I�Vz�S⢅ڥ�H��w��N:��xV�A�&	v�N-���+���uT}�*��|s���ޮe��4��}rT����%�ϝ���1'i�G1|BP'K(ꙃ,����`n׳�ܶ�5΂.X3|�ddݡ�=�A�r_�!�J�b�#��9�W����� uB�]!���T�\�D{��壆r�(��:�ݵ�m�G��4_1ǓKT/O�J��ݝ�'@k���Ƨ��44LN��sȓ���!�2���T��K�<��.,�)���2��g�&<���\(����aD���u��G/(��.��9L@���o�7�f埙7�8��V<DZ��dY�*�+pi��=����?4|���U~��&Y��c�pi7b�֟���G�S����Y�J7n�̩j� �C�*��ܟ�v:g�nF�)S��Lź��CyӍV��o��.o�lm��W�)�*Hŷʳ[H����m,�\��%�H5���V"�"K�#�����)<��i&�q�
�?����<�Կ<���=�Dl��<�W�t�w6�Lä����µS/b�;���i�Ɏge�"�n�v��.�l.��x���b��_e70	*"g��n�`X=~^�r�oi��V���}6Ǧ�o���rV_:_Y�p�1L��	-�`B��q	`8/:�#r��
��.�"�G�J%j�j���]U�d\��q��:��̓0IJ�*���"�J(��J�H[�l/�jkw�=Y���hin�ݐ G������<�̰_��)�4;���@'�򸎸}>�w�;�eq�#y�*�s{ٓʚ�%/Xz�5��������[u�&���}��`��!�U�05e�����:\UI�#D�D�5��>�D-���vy� �X��4����B�+
�]�gpN��5�$�zD���u��9{�rqެ��}y�[�i�����I���4�qj�C̒�l�!�1�:_!��L�����ۇC,JE�T7�r��Ţ��P�`aa�ٽW]��>Q���&�_����,x��[J@��(6yӏ��\�xo=��5���}���>���}���om?���6�Q��r���:ﰒPÕCC�iƯ�i�dF+��5CGc�\æF������ڰp+klmr4��[4��W'1�E��	����S��N������_"��"�e� ����� N����Sq�[O�X��֜\�L=0��MͶ���f�V��氇#V26�����=�o�
�Cr��V�v��^��đZ���U*h%tA,��̩3gN]�sy~�W����SY�Z�_9����N��ee����-��>?�0V����W�]΋��†��:w��u��?�4\.5d/�-���xa/޻���:�����&��\��'<�r�B]��{�-�����-�}_{{~���no�l�Az�p<pL=�ys)s�K]m�q�BW�s��_g'����vܘ˭�Y�9L	T���Z%�e�+ZzI�a��9}�х�|B�\�z]q&B�X	�-��Vr�
*�	�EY�HΠ�6f��Z�"��y��Q�$�����m4p逅�!p߇���L����$8H��2�y<��úN�~�N��.���-�CC�cH.$�p��;���*'_a��}��&Z	
tҖ.�#�K)4�tB-�I���ETO�7�p{~��[|%��{g����eгH�+16�c��/~����臿������:Z����$��A�<�b������]�,Q��Y�kNV�k[�$��m�p�6�a_^�X̎B(��T�V'?����p-1b��������}�Z�h�_�'��k��Ո.�ߙ#:�0��EP�X��D7�+���>�:�w ��&aX7q���XS2B�b�Q,���Kq0#8�F��������Ԃ"��.�)±���#��a�2����5R�dcLc�����~r�L��Od�l��o������y��#ArW��s�?2���r4��N�(o
Ռ��)��2�P��y�[?��]ݓw�� �s�DaoOɱҺ㦸l�1����6�V)*R�{�$��k6��: ����3n��-m�z��t�*�mM4B^E�h�Y_2��P!��F��b��6+��v�T�k{��yh�|5>W����y�k�u�_��2R!����q+=F��=/67����<�9v���u(�^��%@�D(��ά����w��6}�
Bf(���<�����<�<��jY�M"�	gW'{��`w˚!�7�u�5�*�B�Mfl�;���*(��ܣ��Ŭ=���/]�r�z�$��U���q�R�B��X��G�i_�!"�۹y4����)H������ݣJ���+�^Nʑ���ق=eҦ8�m�q�y)mY��5��檺�������~𣭵����R�e��agh�[�{�Dy.cd��oSyyu�͙����y*G����Ͳ����֦���vF$N�0�)oT̫� ӟ��\��Y<;��O#�r)�x�����D���pp}<�)��#�19�,�AՄ����䲴��Ƹx<�1�5��i��䵁>�%�d$�C��IP6��k"�)�s��3�X��s���[��S
�<I��C�x����J�~���N���:�����h)���[_'|O����D�����ϏBT
�
�k�5r��Ӄ�2XE�J��<�F ��
�$�4�~��}�'���REP<��<s@�I�n&׋�W^���W��S�H�x|�	��9I���K�GnA�6a&p�0���
��/���t/C$���	��A̭S�\2D�<�Á�����׮~�j�;�C� ̮�pU�2nYy���(�� �K$}�Y%�������l�ڬk�mo?����Ƣ��|x�a�`�B��٥OV@�nA�&.H�)��ծ6���;	\|��ڨ<.�!�x�q��+D�u�I��\_^6������ҍy܇��8ʩd����)��[��r���sHa:`��Qg�"0�3r��tE�f���\��%}��7�	.f�����2`����X|����������o�:}��
��9��'*U���ڡ�|8�X��;%�;��EE	��3�z���'��1|����!?��Q~�����:�Ɵ�|�ɹG�V}����н�uų�Dd�y�F�Σ��T/Pຣ�-$W��Rf*$�\�GSe��<��5���M�5���?�d����#�jnke��b�Ŷ����T�П��
4���-h	�$���^��_��Y���v��o�Zz�uW">��,v8�[������*�ʙ���B�/�h��r��
�Y�����9>��G�<́Cy�F��w�z�K�/���\�Ɣ$��%��q�m��E!�d�/(�B$Pb����Lu�AĂ>�U��Ē�=�@��9H���r�H@�i+p�|>	���Euu6�]�����;�v���a��U�e>#0��{��O�/��!LV��|Gυ�^n����ڞ.�w碵��z� �I�ZƓv5�+�7��t�*S\���-�O��[m{
�:���T�Wi]�c(2ɜ��,$��sr�'_]�\W�Kp�q��>t��3\�\���B7��~��]��t2e����-�+t�pe��������gvf{e�����Ǒ��*k�n����������|����r�M塹1/�����̫j�����bFv�|�-�7jX5oʚp�.�z_�|hM�mlhp8�7�[���O=ų�;����pjlq><��m����,L���*�0�
*k�h5“�l
b�����5�	�1F}M�!Zk���5�m�I��Ɂ.��%z
ǔA���O�a��2I'�+�}��]<w��L�S�B3���5GE-e�i��������[c�^���R������_�����waW_���U�Y"��{~�d�Ŵ4�C:H�s
�!���Ż��&�����k�b'n�xŸ]���2��V����=��<n
��N_x�Hp6�JU��U-�l17�1��QL2�Ŗ���<��qz��(J��<0�����&�>.`o��	辍.����{_�S��=�������V���W/\'VG� p�z���iu6����+)�7R�1-D�4�:A�1�����%m�2���S�T^�d��模!�S�2�iӈ
Ӊ��m��QW���ޢ�0d���L��^�J�����siog*��<:�8O)�>h�|Z�u�A(�F�
�@T��ҽY��@����s��*�_87�B{��P� ��۪C3C���я�Z����?��o����\�l�ф����
��5?9t~�)?b�-y���Q�3�!���W�����-,�Z�75�{�蹡�B�N8q��c�}S��	n!�^���
�\ij&���9�@BW�l0�(p�W$�ʞ+��U�n�UĖ�4�?�q=Nq�*,�̼�̓?����>)���k�##�#��9c���c�Ti����`����̸�n�%zr����\��Ov[���?��V]D�����u�!캿�7����o��f��5ٽ��8��r3�<sw��ڵQ�-�5-~�U6�K��V�q��m�������Qr����e�P���pZ���Btj�\�"�G���RGi�s!N��v`�x�x]�묓1�s�&��w��g�
��]����tq�����/_��<��_N����"�s_vE+�/�K�����R���'�$1��{���7��謋��'��h��sx%}�b��p���乓��/q�ӗo45{\�x�\F�L�6�;��t,pXh]N���ͭ�9��J�,m��@;����g��f�<�<��F-3N���Du���D{��YzfĠ��
��5�T��4��O1�U�u�W����z�:8���aoh&4LFD�OQ��b\Jb����J���,q~"6��uR�˽��|C�H<���e%�.r��P)Y;TIe�&G�SU��	`U��z�k�������@O8�W�V�Jq�;�9��������gO�F\����*0[�S��wV�K#�S�.�9����He��}��O�v���q���G�z/}��Z�6t�����[�;]��@��MI��X1#����+�}�|$�2v�kc�Zq*�{Ĭ����o�����6���Y��mijYz��s"d�DK�k�������6V���=]���JK@��Sp��Asyr}Y��W���Ln�.���>�9#��(Y�0D�SZh�.���)��h���5�7YB�*��2q,�C�[<�23��{�.���|w\>4�e�+t��	��kk5�䳁d2��D+�W4y���I\�@@-��$�/�3o��/^�p���x�.����+��.��RV���4C4�u����4����p��m8˥M�
�)�$?1��k(p�����)y��+p�&{�m�>#d��2؀q��.#��q�~}�r)�h�22��B��m����B�u�Z�W�\J�)�:�ip�����\(83����OG�X"N���~�~�<C����
���ύ�H�j�����<�t���*�
����Q�Z�������I��}f��9�׭���F'�qv��V"��Gg����o�x���=-��n��h��yeCL�..�Y]
*��x5N1.vo�������+{�����9�,g�0=N/�@�olA����#(�G6�D>�źȇB���IU����|���:�_I$��B8�c�{�7/�^P]]_��ϐ~+I��"�%���)�U	�4u�>�ſ�~�,L�^�<]j��.�%W����|Y{�	��X9�ܒ>��{�v�c	�	])a���Y�j���J�QA8����-�#^Jp�Y)p�N�'���2�`�nC�|B�-�R.�>D�i�ˏ޻�i�U�(q��j�_wN&_>���9��dQEQE�zR�޳��\�&M&)�C�����S�h�O
���jC��W����5���ʹ*�'4xX��\ɵ��Qp�:`ܲ�ia�Bg(Ϣ��Ϥ���m�.3pr"ʯ
���U���6�<��z>�>&r��g���o�S^�$�LK�H���p��zz ���i� �����&=	'��S;���p�.2�,
1�5����\���~2Y�76z���1���jes9�ĸ���\e9C��4h������Φ�H#��	�6���ٺIRIh�Q��(���ɒ��ar��^\�W�v��
��3��Jjq~�26,-��,�k9�P����� ��9[���q�¥�8�B�K�!�:�Y7��/���F(�l�x�ك��T)�i~�;+__���'��:u�w�kC�a}}�*�e
JfQ,X�(��ߺ�.�g3`��6�6Ub���f�h��Ͽ���|�_��oH�hz��
�]Y�n���|�\�-�`�}{�d:.��pn��#~F�]��R�G��H�2�AP�"\V���'
�:_4�|���t��ʓA0a����M{q�dj�֛��(.�F�p����(*���=��{��/+���GI��(:|��WQTSSTQ�j��X�}��.*���*�����Zl�\��Q_�e�G�R.��]�)Hi>��ə�3��_�Úv���eqw���X1�*��*�>[7��,�f���[��AE_Z��H).S��S�J���d�S�p[q)tF�����x����r�\��3pq�^;�<�b;�E�WN�0Sf�e������ş��
�����>�;K��E�˫zK����a��تvR���X�p�&���'���;�kk��(1LP>�wx��9Y'�k"Y����2G�4ׄ��8�-�\�h�5��3;^X�ǖ�1��(�L����S$�p	]#�qM��2矼Q���rd�kT6�x�gm��y�̻W���2��ml����/u�b�c���T͔��fͅY���_�rם��K��-4Weՙ�q�W+���]_����k�]�����H�����H�&'�!�Ż�S/����x�{>���6�e߈�z\�G�V�.�S���M�[Zjq'�7n1����?yr�ϡRMt��<X�<I�
\9v���=�_	�1T�
��D�<RM)F>�.��t��8.���|�u����z����c�~����D�^NV$�O&�U�USS��:\T��r�u�j��9p�k�<�s�jk�+j\n�����k�@��[�{�Sm�O߉��2�z\B�v	$fB
L��>�e;�n��{�)��X{(��2)�ˤ�e�@�L���zGS擙|���C�q;��]��
S.8�O�,��5�q
\�?��K��մ
]��򳿊�Tp�r���ʍR�N��s�4���	�c�������V(������<+,\V5�ut��b".��	���N�_b�9;*w��Z?������:��[�م%���fw�z�eo����]�����E&~�=���z�-oP���2NW#e6'_ѫ�Ď���5�	�/1uҧ?��翶Յ����0i/����"��~��n�����\6��I�bR����$�D��<ǩ#�*��*
]ŗ"�q�����P\2i.���+�'��ԙʓ�=��͉������ɝ���=Y��6���Y��ezj����g�}�"�2��ˀ�N>�Rʦb*J�*T&��<Č.B[�!N�<Y�Lr[�<�G�g�l�2{-r�1@�KK))���SM�P�v�1[ G�w�!��5�����55�k��r�\gka�R�� Ċ�a(�ڳ��g/��� �a�դ��:�8�F�{b��c�L���0���-s	�mڤ��:CW�.n�I���e[v�hT�NN�6l\�qٹ\Y�����lA����&�y��Q���,QJ�["����e�z���)�V0�����;ʞ�	�c�����0�-� W����UR�!� �B��U�~�_�ԕ� ���tn�c"Dlk����v�[�����Pȹ��49痖��t��ٽ��c�����=�zg�5¬>$������;J:� �	�Ä�Iq=���+���URf��G0��#K�LA�;ۓ��Ġ�=�޷��ȿԝ�k�d�1,r�L�n2���u|���/�����_(�4UL�D�{����	��M-R����\�\�q��
6����1�Z�R^�I�	�.�RiFq���#��q񭃗>yuXqm#
	��\�[i津�%��KG�(�!��:[�'�N`��Lt:W�k�n��r�hRoT�v�F��ɀ�U�ᾬE�%_|�E����꽗�/�OV����VW����q��ъ�z���9)�Z�zv��"�<�>�DWm�Y_����$�|<�^n��gj���l�=}V�e���L�0`�j�q3p�!��-f��4��[��|�mpq8
�E2�K_�3tʀ+#e3�x�,���eb\.P
\��S��i;�g��"����q��u�e�[k^�7��2����qL�ީ)�
���šڝ��X�
B�e�q��H&׮������60w1��F������e��a2���q��uc����Є>�پ%$�a�Z�S���VZJJgXN���f����s%�
s-*�j�ee�?�9����^��jοzu�{�os9t��#h��/�A�#=�o�����"�<Ȑ��_a�`b���[c��0O����ٚZm�U�1oIĊ0�f~!yX+���K�b��?(//	Żz�#���Ϯ�0����o�F*�FÉ����6�ϣ���ގ^�e���(s�,�ӕ}����g���j`�Ѣ�uym�-��t��ҴDu��+PK��O��D��&
�NxL�g&���fRF9
�8`\IV�I����3׽��^�^��J�E��
8.\�
h���]<Z��>��s�[ω^�	O2y�����kqϺ]�'�={�2����*2�:Sd.3�	���T)0ɬ��6.-l�
.O�`���ǃ�|<�k���ʨ��7�/�]6pqb�r����YI�:�ka'����K!5�`��|xc���e!.���+Ւ�G'5�~=�[T7��1�ϔD���O�bK� �:c�	X4F�'���Bg��%Sr��ʪZCdr�g�;�S�X����Z;X��қr8��	�c�� �CUř
N{�xj�y�e7)�#/�K=Tu4�nh���bpccd~q�o[��\]�������K;�<���q�N�"Vì����<A�<i�ht���}��تfYb��ǐ�,fM$f���o1k�xI+1���C;i�i (xmW��t�]Ru$����x[�!���Yd(T�W`,$��������ա��d5��LL��^J���Γ�����S�)*p����g���C�8�h���w�:n�R[S�v%ss�[�f��IcC��Ŷ~\�e�ԅ�C�E=�re���ʨ�w8��{��1z+	R�xp$����W4+��X�b��Ov�\oO�����:Z/pA.��?\��u�v �0p=WFqe:��b���2{2�(�\�4�Ր9Mf�*��ׁL8��iG\)QO��	�����(b���5ү�3����H�����R<8(nu��q;����<�%��`p
�-1�ؼer�ԃ�Kh��;�եոb_�rgSe����p���`a��Kt�٩2�Y�pzC������&G�7��S�9D>��`k���,L)�>e�Z�
ϒ���R8��c1RO�֚����`̚1ٿ�r�����K6���f�yr�k�4%����#�5u'��� ��osS$Z�D��.�RD6W�6�7����m����/�A�����'��<s��4TF�)�Pg��������u���n镖v@�V|i��
xU]B
��b'�|��x��:t��~�L��0�4�
����K�����|xs-2k��
�L�'�}.���HS+#��V�n�2D��TЏ4O&�]�2g�L�O���R@L�BY����̡hR�̤�|E.�����\(�G�U!p�\gůz�T뒻X_�BQ���L'Hq!��,�}2A�%��\A.SHij��.cn;�����mp�R���,�o}��������LƌL��]I��Nf��gZ�e k�z>�7��z�ZK]8�¨��J�2c�Qp5�����}����B`+��.p�ڈoܹ5��8��(�&�4��.Db9Z�z����p5�.�e����sb����^��Bdl}�AڼY�7����y_�Ņ��l�����lhjy~�6^��OM��Fq��Q�|?5�b���[!u96�,����8?�dR�ap�Zl&�,��=Ij�$��G���I��u�-���[]��[^J`�[��ڏ�_�}�f�1�Ӆ�Ǐ#��	�wK��`*��_��%4*z?N2}���;X�l���.�L������r��)6��o���v�Sf���I�+/�u�{z>��7e��Y�<��\2C�WJش]�P����Һ{���"��%vy9��)�93hr�7S�B=�t\�����.��h@g%]��'�\x�i='��\����2m)�e�2��R�����r�t�jR�"\���\�����9]��,0�d��F=1P$y�/3�`��m�L�<k�\���Xݑ��0�28?
��m��f\�X�30�Yߨ�:������L���Z���W��1�8ڊi��V<��Z�s����%̀k<auI��d��p��Q<`k,R@z���,p8�M�i�ނ�[[��?�@�)#����#c��"\�6�g�l�E�wg�NL��0�@�[e&������ߘ`1ΰkf��D������ˏ���)����S��D���
�k�x�'֭~���Q�ۤC�}���-�è<���%�_'�q����0#��U! ���I��M3�8ݼs6�+ϭ�~�O���J�+��N�u���ޔ��gw\�'>"�-��Z��m@q��jv���ͺ�;e.�O
��v\x��o���>$h�"�M���X����wn�9�9142��{�+%��x��]��F�K\p�9~���Fݘip�l|�5�W�E罌�:���No"�	�"�d�aJK@��I�K�,
.QI����Kl��I��>/��s)<I�/CD]�{J�)��2<�j�0FkaK{���IŠ�ќQ�ESs7��}���
����S��2C����3��>��~$�ҭ.��f�SM�Q��eOk�#��f)P�Rr�m(ȥ�bS�U����������
���Ȅ��4�1�`dPq6�jrx+�#gf'���x$T�{ׁ0�����¯�V~�{&��$.���~r�)�L�bpqi�T�E�7�(J?�7r~6>�����J�#��Sp���yy���%7�N�x�䙡����4آ��*��>�P�zN�dFJ6�_�i|��b/��1�KkL}�����1��
0~�k\�&c��J�pA/�I��^�ȔX���6n���V+�2�CL�j-x˚^Q+i���KJ�S�"&(��*��z��	�y�[�4X�WZ��%����6@N=�nK�8��ߧ�6���$���`>�I,Z�^�LE�.K�j�;�ޑ�A�&J99��4�{��?WV��q�"��P%�$I��b�=B�Y���+�.����@��W�����㖁�c.�a��Kય9z�d�A�^l����<a�"���Zr0ӆ�A�i6sEAb�"��mσ�����jґ-�m���N�#�4li���K֖�N�'
.#���B-�����E��Y�SBW��Z�d���H�R��z��
͍�Zf���@d<X��D��[U���J�l&H��1�-.�� ���v��_�@����x{xH�b��R��a�=f9���L���A?K#D�g�Y�X��F�j����w�Y�$����I��Vs~�.j�Z�
���B�Pl��q��%���?�2�g��݁�;5D]�a�rcK�SS��Vdx��*���^z	�l�7p	]Lñ��݇��{8s^��
�O��6I`
"Rv��Z������u��2h4X�Z�j�Jī�;c\7�\�R�>�wod�E��s_����7�����?Lc
C�`5�"O�,m{,�Ky�I���˧���
�'�iΡ�L�(�;��0�ݮ�V�g�FO��
�_�v�5k�Lm���aZ�j���\��R��M��9�NH2qC�x��(O��.�Uv�Q������z�=ZS�����e�zNK!���#��i"��!K<4�'�kdP�X�`:ۤ���T�sZ3b�!��S�q�gl��m�ef���Ԧ�ԍ��+.�H˭�V۵�[��Y��܊��V�<�+����8
�pב?�"")6N�k<^���U�a+�llo,w^a�/���m�d�9!pMd7z�~hރ��03r0�HwVIg��e�%6�\�P�����ζ��%p!Ɩir�6,�L�|�� �;��^�X)2���W��U@]���xOlq�w��H�ޟ��@���"�[*��׮��J�k<���CC����jmm:�����4�|"A�~�P�ϒ)����yJ��'$o��q�fw��6���D�7��@���|���|�php�+�q��SJ�h��7�O�4g��_
�RK@fh13�P9����</�|	�7���:i�:�p��V��|���ڧ�3�_�>@�
�|��l�+f=t��
��ہ�Ê�.:�����@rK��E|^9�ʑ�X��k]�ce���uqt�&e8l�g����W��|`�W��Ts�YE�z�wa�K@|���>.m�]
rL����iүC1ƶk�%��ɖ>��e'<D>w�2^3��2	C] 6���xb��ve��L/�?rBT°�
��{�
.;!�2��p�Qk�nƛ[��R��We�\++�9�B��U�[c�n�gh����� ?���xd"/�1[
yÎF�d>չk��9���/x���^�$8a!
Ƕ"�H����O|�>��-�-n~�M49�]`���5��_Z\��?�y&XL '��n�]��sguce�/����S���������T��h�ɹ"(>	�YR_�ꮘ�v"o߾˴���Q�߭Q��fo(�$p/�eG^��s��k|\A��k�+��Y2?�y�T��蝍���w�:��F���!�᪼a���C�i�z+/|�o��w�7�p�gn�hz�����<���<�)C.E���{�u��3ozӛ��ˀQ���QL��	)�E+�C�,L�q(syv\�	��I�E8�g��N��s� N@Lc��N��z{E=����߮
rU(�e�p.��8��ɯõZ��*��z���
�%�V\�ನ�����W����$̀˨fܪ��C|W�{iZ��mp�c��ٻh$pi3
,�T[5ΰ��7f���(f=�\��@�0��R\�#�bv�G�es2]�%�bA���VZj;���(ભM���4��b��mF�ǃ���,�[ K1�%����=��)��V1,�tVz�&�8?\u646,�2\y��PU$p'��a�����	�:���J��8쇌�a�����0]� ��6��~�¤�L��eVI�A)�y).q�բ���rO�x{y��6�ob\�c�b�R��'_%�m��������J�"~�r_��q/P�-���I�@�1+�8"K�!�;ğ���:�$T�c�И�-���,-s��-Kj���$��~r�w7/'���s�;NU�V9������G~���|�;`���⮝���7.� ���+{>y�3_y��x�D2l.3qKU�5zY�s�
\4�յj����,"��pT�˰g���"`^�LӦ��o?L����^D�V�Q�ڹ�"����d��V��R�
�#4lٵyd"$b\��8t�6�;�E�ImP\���dB\���@���]��S�xk)�d����{�{k�rD�5pe̎Z��%�^8�
ڒ�g�9v�+=�<�Gm۹d%.�M_Ѯ��=��N�`ۥ�J(�vcYC�\U3fY܌�z��f����tg��B�ȉ����*F� �A|�IA�Dž���!x�&ށ]q��{����+�CltPg����
�3Ñ�0��4���j/�+�����p^�As!��+��l������3�_�������(jv2lj�6�2�x{��yҷ6	l�k	>Y�d�c3��z\���kB�2���p��LGGp�ZW���%bY$������A$[X�ɔ�h2�N��Rj<4�|2��k :65��ܤR�����j�vC���]�K\�r�<����y����z��5�����W�4�����݅�?�o���$r���vX�`��3C�I@M����=W{���98&��X�&�>�I&�J|��k%`�=��&�\��\�j~1� �@-f�LHoY�����N�%�i������S~����	���Ԋ"��)
\�`����^�9�O���­��b���ޘJ��}��}� G�R�t�\ĸu������e�I��U�����p�<>��c�}�)�D��4�xe�6�3p	�NZ���^1-2��6Xfޓ}���q�mv?�����>
.,�VC��2��6����	.�6f;�c�dɓ(����8�Bo	R����8݊pS�^�H{'p ��Pc�|l f��٭\�,..��ְ7��1ט�;��q��v7Y�F8�0;�����Z���qp�/F�C������5��d���Oj�ϝ��)�'�Z�-������%[�:~���#���x���(>c���kS���Ph(H":ie~�ɡ'��?2ڿ2Ǭ�X\)�,��ݜ�O	4"��	%�#�4�Q��&�x��kw���YSa�#f��~�y�{���ޞu���c?9�N|��N�')�������̇@qu��NUf��/.����������Z��/]mjԘ�0�+ig�u%&!1��4i�8Z�% @��5������-!HHxYA%��C�j���c�תN]M���sW�K�:�{�y��=��?�{?��;Iu�
\����evź�P��ʾh��e�ڄ�[S������)Y��M�d�wbnށr�O]�;`o��p�pA��-ŃLK����/���'����Z.�d�Ԝ���hdಌ/�KE�P=�{ �p�<p�pa��|?F����/�-�7C�?�ֽ��{9��{��p���_aT�{�\�fAd��X�XO��M3;�W\pi�8��ǽ�
�6?2\��g
N�ΟiЩ/�gM��n`���״T�,�D����@�mR��?���I���u�\�Y�K#�P��?���A�5?���2��t��-]_�p�ZZ�n�z��۔b�P�|�H�F����Ed���ᚇz�L�zR����@�����QԊ X��^��Q?���OOq!�Ƹ*��?��QW�26��Yqz�@�`���,K��j������䜎M[��#�P��O�zd���]��'nEqw����g{Z�7�'�,���{N��S���b���(���%!���E�i�n��4RM�|;j�_�]�2奼���+GV��W���<������Z+0��b�>�6����$�r��U�̳R�]V��qK=�-}�3���"�5�q)ga�e����2���x)X�.��	p��5I��Qt�?�XeQ0����f�1)H_�Ku�����Mʒ�)
��``..���U��^T���g�~z�����-�nD�4��O���g����@�U��ȽS�v`�C���?�)��rR���b�y�}{F�+gѽ݀�).Ƙa֙xt$����7}��
�\y4/�_�w�W��*�F���)<�ޚ4?Q��~����+2���ݷo��BW5��<<��*�ŨA��W��Mo��k���Bq{������Z�&r-�eu5�dži}�G����Z�~z{��-4O������ި��#��T�""Ou:�2m��K�}Y�+WFbZގЈ8����#��Y	��G�r�B��W�Dd�UfvW�XB����FF�(��������:�O�����{��==vhb��j����$fB�i��$2m��]W>+��/�h��ٕ�֣;���ji��0#�0!5}��lv�Ř�W�{G��3g���K~8��E����Ԗ�ؤ�U��t��I#�b"Z��%C����?,����������Lqy���D��r����<�(�6^�-
4�x�B�.���R��y��6�[Ct��[mά����0��߸�3v�e�O��C?^c6�g�ͫ��dR�֜��'�>�9��e�Xcbk3/���W<v��f����9���:e=HW0Ff��~61��D�\t��C
�A�Ņ �� �tl��i�6S[�.�=�uGK���Zd�+�b��(�AjCX���aM2*�?8��q;7������i�\K`ի�uM**��D|�Q��i���GX�CÓX��^
Gu�A#Y�Z����f��~�?��GU�ˆ䐚J.�Y���?yn��Ÿ�߆_Zs>o�@qz艼����҉����Һ����1q���J"��?��D�nJu�����؉�'N�EE��p�pe��=1zu���;�>��*�+:���3]�p'��%��dd\����X��EV��E��&gtf�<YS�<^�/�i�*Y�X�/.�?;Xr�`�5!p}���BHp�8AO���pk훹�z!��f\�#4��k�iQ�^��,��*,��\Y'<pA�����n��.se8?\0n=��+O�Œ�{�[�j�%���ľ#�nٷP��S\x���V��V���zFӖD�=p����.E�%!��.��
\v���N�3�Bt=
{�Pr����eW<v��2ue	3�,�聋Sm��s���lb|Nz���d�	~S'M��]pb\���0�5tC�r/u���y��P�����zI�EL�:|���DZ�dCP
b����-�ࢷ��2�v�
��Q��~�@����5��[�0�:z#�������՟?ڱ���G�y�`��乁��Ϊ�&��5B �Z��{�Y���^l�? P��TP���!�&��u����G�:<�?|��Q�/}u����Q���O\���'��ׯ�5���O�������F�J3�����#Wɍ�K�G��#�f^��X���s��#y�/�`�4�����Ot֠���C���2
��£k����\�K�%�'WS,c��`MƮ]9�jp}��J6����
^�|[_Z�}�eWpaszˍ���ʊ��؛�D�V\졚ȣ�Ό9�Vg��p�A1TO����20����
�S\��W � �K�Z
�[f�����x�|�r6���-�#p�r
����B'���0d@���,��\���?:�T�݋qsU���3�lذl��F�zr"
h�¥�g��/�>c�r���A3���c���i6��#\�.�j3�NЇ4vzjK���BZ\23L�����0�-TrXhS5.֚���O�V�E�K+��;MqRPG�}�1D�}Ko�l\������58����D��pr��w���h9�D�^�e������T��~�\�B��DEE�vP��_%OO�ȇ��
�Ki��
oע6����Dm��������5�}CIqّ��q�;#�Q�e�L;W?���_�l]q&���F&Ο:X�Def��_T��Q���Gb�b=1�$'��UAl��#����'�W����O��)MMM)��[�oj�r�n��-[ Y����mɝ���M؝-�5��[j��_!�J��2�c*���ǭ\��re��0k������X�N|Ű$�EN:4�$�K�pln�s94E�<p���%beŠ	6���n�6*��q�cҶ��[h.I6���
\��J�[��@��W[�W8���[�,��K���Q�M�x3�	��t'<Dr�^[���LX�o�3B�X������;�%���K1-�T�.��n��`@L����I�k:��/y�jN���\f�`x�[���ޒ\�edR _���
�S�>�E�qEЍud�֭i��mc�7=�������4�u�\��c�x�C���7:a�4��T�f�߭)��X+D���}���?@L���!60��yf��zX��?�H��.��.��6���;,��d�'�����꧴���������7��(��'s>-f�E	t��%kn�,��O��ߑF�:����om����c
�}���$��"}t���KOQK��ɽ���'	.��:0�&�U��z�?��0��N��x$�3'#�:'!::%}�������r��f��O�ytӦ�/m��(�*H�ŋɻ�S�4A�m���45�^*Q���*뛹�Õ,x�K��v����������͂�c�%fk��s�V5�q��y�zqY̲/��K	���
L�y�E���\f�MX��[s�d�'��[f�ey\��Kb	��v�5v�K'��3{s�\/\B)/��0|f�Xf�"�s͜�l<p��
�Vl��
���}�;˾�I�Ipq��Ni$���6�ob�PP�f 
T.���d⢞��_w��q��f^���F`����۹b�$�8��E��y-�/z��~���nM0�H�?��O�\��s�
QH��ۼN�~���@��GHr��D�az�6�ø��U�������k�G��h�� 5"�����n"��##�5���0!0?��]L���>�$$��ӕ��
���|dž�%�|��{��o����Ѩ�{��7�|^qݷ1�_�����L&˭�F���~_R�x9���~8�2�]��7v�TR|emY7s�]OL%�O�N
���@Y�F�h@\
�'���cd䁡�`j���.�ՍW����z(�<�*�3=##���֌����m۪k
�S����V�i��l���k7>�X�mSe��99S�_/���$�/k����^d}R��oeDQ_sC_s{�΄טDpy�y��)-������8���<�eaw��$;x�.%�|qa���s��N	^�a�[�7���-�5pE!��S�Lر����Ql]��9�)y��fr$p�嚴��r�Gv�C��+�x�\+\��ûa�إ�J7�/Vq]C;bg�j�{���@h�~<��������q��C-��%S�K0��[\��f0ٌ[���>�l��-�5��~�s��\��8�yZ0��Z��q�V۹�'��5n_�H�z�uϰ�DKo�d���k���Ї;�<�X׻�`Xݙ��PP�#*g��u�8ܳ��5���z���~�ł���ޥ.Y���|>a����m���+걨�Q��w�W�}�Ր�+	|-�q���������6���=�&f��pK��Q���@]�/��b}\f\c7�v�|�5
�2&)/����w��K`��BL���$�̃�a����n�ʿ���gdz
�SS��Sr2Ư�&TUU�UE�$Dwv���T��O��J����L{�de\|\Lky,$$"7|v#���t|⦵Y�}�,y���6U�{#�����ln>����^@�\DY�[����2�O%H
��KN��y�"c�
o�:f^�W�*%ɛ�zF�.�&�Ʊ�|�G�N
��[ܡ��]\,m���Z.a�~~��Q�C
�n�4�=r5����Ap�,�&�xIq1昭'�0�$�*q	�8b�F����]po�3rٱ1\v��:�U\���˛S���g��\wrIs���V��_�*���t��T��1k��7�"�uj�������o�
t0�|����@�b-�٢b��Mt$ךИD��~yoDd�\E�Ut�n	(ɔ����Oɂ$�b���wLQ�w��>�1A�AY��K�w���+RE���=�b3�h����QQɉ�a�ʬc���������kΫj�O�F{�3���Sy�i-#LR�
�Ϋ�,���}��ߞ詃O�åE�ۛ�J��_���L���~��T�
�6�hxT�"\���u�Z��%WZ���R3��;�SSrR���SRrrR�ë���Rkj�ǡZ�`zrjXB�xk�ʎ����>�rGb	�˵;6>�h��	ߴ6���V6T=��;r�j%���-(x�B��S�)o\�������=)/�]��q�;T�*�,�<p���
8#�$ơ�t 	��#&�������PĹ~@��FR\��w�2�Ԝ�~�;
`�Kg�[��㉾Z�����6��	����e�

���I.).C�h�B\q��e��t^#A� fC��g蘷�D(��t�Ƒ$�.���eO�c[�ba!���B�=��*$/�+�-Y\2�����#�ll"�)�6V��BqM��8w�����]#�>32���w��]tu�*|�G�h�o����|ˬE+��V4ڐ!v�[��
E���c<<��������.�V��ڻ(dђ%���i9}ȴ��֊'�(�勖��D�<��r���ܸqQ����*���?�ן���a�T��d[L�TfHӮCo�1��B����ޞ�1���
]mBBC)s�u��#�eW~���	fE�㻳��p���?��c!����v椲f����+�)M)�)9�U�3:S�â!ZtuM
�+:rmݶ�������}9�~�ʎ���j,Y�`�Ue;7mڔ�uHy�7�sh���}E��͵��aOx������*.v���Uܝ=Ȳ��I�.��<�n�=[L|���?tt�@�2q�,�e�����
�l~AX۰�&o�ض�;7��`�J���۾y07�~.;�ȗ��82t	�2�K�=p�[.�<����wO�e��a��G2�^޴5���)�9�F�Z�@��s5�=f^.��Mu��]q�WP<y�
������-
v�rqG����_��	�M+��6���v�ݟ����.��5�G�R��W������țo��_�RŁ�HL�R���IlEF._�������P�쾡�-C~V*6­1R��q��CQ�o�'�NN��:9�2�G�-��8$�Ed�G
��\�59}r�?JS���[�v�t�
��Pq������W֜��d����k?}_��m��^7�]\�9t`��X��$4LSJ���ӵ�Yپ�����c-����^��[��&��q��-�1�{�*��y�����xYsC��hVMF��2;rRSsRRSpAXNgB4l����dyb�Tƶm��%iemeS��'ȼ[�Ⱥ���6|�ue�j=g��믗��*��_����q��¼2��%l�u��7UH8Ϥ���t0�%;ʂϨ�h���P�4�����\O�n~��
c��O���S/�(I���%���p�0ӷq��
�xa�-�喓���;�Bl�@����y3�%Y�cJƓ=�.C�w�#�8f~�'�`�.���<_h�C�[��>f�:|�Ga^"��q�wh�˨)�^�2ڰu�����!1���&��/׃Q>�#�#�$<�]>���H`��{�kK�!�~�q�s�����!��0zH5N'�\ѿ*1����WF���X?���[�F1.R��
�
m��k�>���G|�N�4�\!�"��J���\$��?��?�+:2�
�?�poDo�#?�<�%e!�����~o��e�����ێ��!�$����<v��'$�6��w�
kJ�}1��+i46-1@�Ñ=�'*	x��'b}�_Kz�̢��?��>������d�|�������憂�����䚭[k�;sRpaVFFBa�8^�`rz�xFj4�����g�O̎���+�ۯ��fG~s�?ta�颯g�\�):����i^F���������f2P��ˉ�9w���ᖶl��[��3+�"�6�zᶉUF�<��H�\�#��n�<F'k�(���׆g7oq��$/�*��AEI��ħ�g1kP�Fn�s���9��ŴQ�A��[�J�{�����3{h!��-�%8	cs��D���Ñ9Z>&��c<��]'2x�+�D6�t;����5�xɴt�	�l�fM�,���2Ox��%�7v�Ÿc���J�OÚ��:���Ɂ˗��m$1�C#���|V4ZאK��I������ĥ��u}Y�E��W�#�C+�b�����LRv��ghX�<K�1������Mw��k�F����6m�G�N��������m�]C���7�l.�%!�[R\���W��U�O�C��W՜���l06h���t$������teaN�t5��h7>^W��K�������&%��Ѹde��ْ������ٙ�ѩ�	�aȪ�����?Y����b�xƮ��f�(�U
�
��
��)))�/�_)�eq=.�>��ߣ�bRe1�J�jMa��%�]�:=�<@���TJΫȻ�H��[�
��{i��q��^�d�51��\pD��p	`���"�����"GH1�#u�!�p���(���Jڹ�+�.��h�~�f��%H����/q`+.'��5���=��*Ĥ���Źd.Ë,�=!ssV�nc,i(y$3pqVC�;��2�F��>�؋�K�yn�3����
^��H���I]��cl���-P��1�����- �u���\WK:M��v�z�~2c��Հ����in����c`���'�'�V�+cҎn������Wխ\��K����|�o�����ȭ�&�z&��n߾��'�ߝ<L�Ƀ��n���(������ξ��s���Le_Kۅ����5Q�������V�ʺэT�����(��=���2�k�x��\SXޘ�r	_;��?;�<H%扽��gߑS�|�µ��EE�Ֆ���5�loh�^[�#���K�^,+L(̂?aa;ë��T��j�����1>{%�:��:%%�@Wtx�,<�a�N0Έh�m����q{d�=�Bc�?(�����V8�s��Q�|�����z�
oR��1�#iw�c�ġ�L|	V��g����O\Z�LR�;�(���q�����c�j����i��b�Lq�m��<Z����9���f�Ը�\�\���sY��	܉�S���H�tR�c�͵?4r��t��0�����cƱ �80�����@��!R�V��%�����K�L��4bcwy�~�4*�<��^��Y��c]�#��*��
��0S��g�o�i��uOO/?�7�ێ��6ࢰ2�\�/����/]��/��:�/ޗ�~}��il�/�h<3�W�s�?~)�O�W._�tpO�
�͜����х��k��>C�kgν����%�����W��Ⱦ��9{:�����qY�1?dM~�v�Z-,�#�n���P�O�+���-�5筏�������䖆���?�Ŀ�0�4�So��b�&7����7�j�
�?�φ�

�S���m9		���hJ�
^�t��m[���Oω�ִ"�Bk�\ь[��	e��o
���LPg��!!b\���c+����jAWV� ��{$"����X���Zk��5R4�Y��*�8�B����K�
*.�������R��L]��RJ���W_�l��E{�*����rU����۠Xٲ
��

\^�]_F8�x�QfF.Gg-�o3��9Z�uUڹ0�&pݓ��c�W�f�
�
4��AŽK�rk�K.�l�1{N�w��/��Mn<��^N�=j�I��)����|��r�R·�;\p=8\Qg�^}��?F �������P�!��BZ�S���_ˤ�|DecK�/���=qe�����4�Zzff�!�t|��knbe;��\�q���������۩О�T��vY��mmx��}��E,_��f@!��Q��P���B�gx|�U��|�����$h�{<	\����@qݷUm��
�oX�,m�
�c/�b�(��vN�D̽�C)����'de�칳�<�3{*#���5��%
G뢱�;���-5[�To�޲-%��<s���$��Ȍ`����������g�i��T�g�Su�r����8��ʤ⬵��*޳E�4z82������WQ�]s�J��^d�d[)�yk}�7����%���ÈQ��v�Q��E��-K����z�O=�����H{������uvي�V�xJ�7��R��;N�@̞��-�c*z�^
Z}��g(�l�઒���RStb��5�J
���J�X��M�U3�z0���U\v`XZa⊗+�D2�F.0��8-vy@�pf0c�'�ظ;i-׽�!��gr�+&�+n,��z�)�y��<3hl�f
�+[�f�NT��p��g	u����Uu4&-�j�X||db\��$E�t�P_�t_߱�c3�o~t�c�o߼y�ZQ�xb��z������چ������k7z��K���:BC)ŵ|�C䤆�<�(?����3;ZH!��5��Ykݦ��tb����W��b\�u��/�9�\S�RS[2o��ٍs7�:���	۝�oܸɪ@�5�FvD��5'����� �!���%�Uw6U5U��s��t�)�՜&"�D���l�RS[װj����K��Dc߱���_���.9��ak׆�~��e�+��������͝��������z��@<��4�h���>\pYD��e�*���\�)���T��\�Wt({E�\\,g¸������w��8��|H�*M8���Y,��zM�0�r2/��).��0��!��,Zd%��F�L�b�\���^f�='\�$Q�<p�#f\26�u[�	��}XP�ٍ�+�y�)I.�+�C���7�.�X��|3Fs���&��Kg?@%];v�k�n�D!��>9����ݑ1��3�C�l���P�>�$�<�����ڬ����a�4\o�y}�����ٙӥ�?�y��?���Άu1���ܰ��澞���H�%j����n]N��6ʴ��ߵ?*0�5�olll�n��g�n(~��+cȞub\���[��+�1�x��1ውcAf����L�S��>�u����̺�css+��r׆U�L����'���-Z6}gӦ;k}t;�U��T�YX]��".�$[F02Rs��gC������G�@[w���������b.�՘Y�s����
�X�~�")����J�en��K�(%���r�[�����ˌW�,\�$��-/j!y��q`���v��^�t"IQ�k~�!��٠�P^/r���˥��G|J	W�D�䘚�h�b��*��9ݬ�Sg�+Af��r��\pm��Y7
Nnv�?�b|�H᜕�a"R��Û�n.g�@%�1�6ig'�v�D��!P���3���C͕"eV:�1��j��l"r.��B�Ӗ�N6\���}Mݫ@�M�>����>���"6�¼�2�o��#�5q�ʎ��<�TR��N3Eb����ee�Y���J+*J˳8���PX�ZX^>5�}�$2�qe���w�����3��E�Sה���I�~���KoF�,�mM�g}^e%r�9�u߷����x���Iv��C�=[��w@aS��8D�S{n�m	yx4*1#���q���j���2Ƨ��4�Y\���M���w��l�!��3V���S^nY]5G#�j�����I��O��J����=2?s���R��'B�����ŝ�A.���o&�6�7���K=nيė�n�.�7%�p�U}�{S�LW9	��Ko�2�$�˚�-�⡓؄Y��S��\܀���-��&�jp=��y�RR��'�E�J ��Zc����Et
Gp}��N�26�7E$�70_ѫh�K�Y�q19��eK��%�@\�����@,1��E��v�^�ޅ�9�8NU��
\2Sx��)l�E3����46U��t[���\�ŵ�@0��x��8j�*��j�H�u�%v]�Z;8d"=���G{A{A�JXb���B��	�}�̎.��OM�&��0++5+� {M^Vm�w��g��i��MN�/�z1��;"�,">22>�G��x���7�̴�u��9��/S\��*���J���C�I!e��B�e�1W��C���!W�W�M+�M�~�ɦ��w�D�V#���vd�yt-����]{�`}gjJjSNjJSZd6�b"�s�kv<�����M�h^^nEVY��G.^4�<e�we��i{f]]\Reef9�%�n�_�VlI}E������"2o^#�2Ba�����x�\�ʝRt��x� �"H27�eK����.���0pr`��9LC������K��e��B:��(}BB
�H<��2f����'S��f�����QS�K�Uq��q��|IE���RwC����W��|0�d^��tx"Ue�E�
4pt�]�96�/����+=��&1r3�-5V��'�\��\Vy�ұ.p-��w�Y��;�nz�Z�kY�E+A��LCȵc�,7s��~%%��y��)���W���4��"�VҳAU�f��$��;�i�o�$O�T
��ȺF?#�ɲ`]Dce߅���x����"�J/\(�mh.+o��QCE-v��?�K�C�_�r�jΫ͡z������#m<��w�f$�\�Gv���u|��}�A�aSVئ;�Mw6!��Um,K�6�w�w�+�E)�ߐ���VgLuf���LaaNF^v\nn}g^}?K�F���WB��#�3/;r��ww�5��&���/2ŘU�s]a�wE��Z��XYWZQ�W�P,��Z��"\��BS��Q\/	\�����\�S�ʛ��l`}���e�P4���{�
N`�h��[�-3�Z|N���}̈�4ݨ��n��e���f'�f��AK�������e�`{A�� �jᑁ�M2��{�2m�V�9.]6���KTp�R0���âRl=ny�J2�7�&��9z�>��h���g�A/��t�����F�9q���q�E������I�����4���up�3�9pe�&��[�N�y���vҝ�k�NI-윚��C�T�3>�W�¡�ZÔg�saH�r��,�Wg����Vb|D��Ĵ�$Q+�hddZ}bb�B��A!U�8}�E��Ƙ�T�Ӣ���N��*��/8���Uܳ��w��e�Җ�Q̢b���t�`�?����^�q���9�\^%ߏ`�]���r���o�R]�\��HVE�u?�
Y�99��9�sR
K�^�:1��G�>AgਨEU|$���Eqq�����ʸؤ�DW�Y�\��X[ZK��"�˨�l�E5��R}Q�I�Z���\^!yN�N�\6�l%�?|���n�K7�Q�� �i'q�-���S�Fp��ֽ����.��Ͷ�Vʼ<	}C\B�ޢ�|�7��Ĥ�Mm
�f3U�7p�*�L�=�����#4ff*��!If��]p�
.p��c�E�m�K;�ƬS�����M:ս�-'1�wY�ۼ�w��-�+����wt,n�O�Ǽ̂�
P�5��Ґ,J�tN���Niq|�u¡�Z�M��a;�LX������ׅG�	�Y��\���"�9��CƑ�Ϳ�c�铳%�e兩�
���e�����D�Yv��gR|DG��(� ��k3-c'�Bu�X���z�̯��u����GMä��\t�P�P��{�^-ݡ�k�%�۴��b�ZBk-�ѝ1�����?|�N��$�ί5?���Ű*%;���C_c^�>�T1�������¼���GzW�����C?�`�O�Ά
�\E��1��I�*c㓊h�^������c��'S�|{���咋Ƚ��V��z��8i�R
D������1����؉�"�A��1�����>˞{�9�D" ��g�)���&��o|C�Z�
���%�h3DR����r�NUu8��b5���)!p�Xw	_JB�X��W��)EL@��L��)��.3Do��nu��mvM���#��_^\U��`�� `8eGvlh�˜g��
���`.MC��[)�H/;�����E	�a�T�*|�|��'QI��g�rOe��m<��S�2'0'� |���s��NC>�L딚�� �$�q��Y�х�eY<7c���v�)^�y�JK�ŏ�����q\]c]]߱�}t��t���S�p��n�Qa����ę�_��d�ՙ�ˁ⥱x1z�
Kd3<�g��v�s:���.4ܹ�sIS��o<z�z6��Gg�5mI�Hy�C�U�s'��J�tYxզ&R"�$���f�Dm��v|Rl�F2cc_�����̃^�7�����*.^YQWT�ߛ��%ő@S_WWW���ڰ��~$����Xm�Ά�$SQf���$U�Uԗ	.��.�v�`hh�y����ά"z�<�{�%DijP�0�I4�-���e�S\�����)�4��d~���S2m!��#]��H'��Y���9&m&?-��|6�r*��[8�eΤqpa�]�l�՜�弸��(@r�	����z�\�a�R2���sMF�1.�2���8��{�"
���
�L�r?lO~s��ô�^n��?�����7�ڙ�歁c
Lfe%��UdI�8.ho_W@�]"������֑v���M�}�`e�������(�5U�O��e��,�MH@��/�j\�����qmq�vM|��G�/t���Ĉj����۷��}q������Y�>4oܚ�€���/��#G�56`��m�@���%{�.W��^��Ⱦ3)w�\)'+gj�Pd����B���𪌣G��Z2{��xSR�i#���JcKB6� ��G��G���~�u���i������k���T���P�C�ōj:"I�ORZWE�����ѱf%�ā+7��@��]�ŗ�K&��C����-�Ηq��.�Dg����.r�l5��ů�{�0���e��0��{%�-�e�"S�<������-x���J��H�^�́��m�Hcke�nX��R�4X����(s&���DYϬ~J�S'�{��;���{��W�l�\d+j�'
�k���ٸ���9Ը�0 z��)��m d ��{˵z�~d1�[^�9�(�������+-�c��c}Ď�=R��S����W���}3}}D������˫����r�:e�u�wv&c��x�Xg9'�;-C���GG��RF��x2{;���-+,�yy兵2�˛����P�l7Əw�͛��������ݼ�k*�����W�q��>E�\*��#J��a��c7(�Ǩ��0ۢ�tj;|\���n�ztuYnEmEVj�Tg�xFƶ��;M�5)[:k�Rr
�>��S�����feuʝG�])�[��/�����T}�#����ʥ���n���0�8��ʌ�xdɢW�V�|����I���E��E@�J늎k X���<����n�˕\�ʧ�t����4��`�1�JJg!��T3�Nx\�[LRm��n
���^6��(''��`f�Z!p�ť�{{�����<\�[�2
\�e�V;>��2H),��>�[T�4_�r�)�An��F'��D-rT���
]s=v��:�A��';�xgv=H�޵�=m�����޹�=n�V�vFGz�5r�9��n��ԝ�]TJ~y����@Z,ߩP�B�\�R|�4oj�,OVV��M%����PY�K�J�>}����l���v�.�_���������2@��e��-�U���	�\֊����˭ϖ��U�F�e����Ź��fΜ93s�0�m��a������1�����f�{�ye^�f	ࡽ��9thϾ���#\q���̬ݜ���sdH�S�nW���8;�'M��);~ޮ�]��n�&T�8n�I޺�ɻ5��Z��sg�����|kIkӦ-�[�`M��ɯ��S��ؑػ�#t�lk2�𧎦%���f����|�$4*d)]};�j�+�"Ig]uI�G��;��*-�r3�\��ŷp_Bv��9b�AhQٺY�+��^PY���	'��D�%JY�fFF�{$�[T��%��]���k��Z.n�	c6bý���ew����q���V�/L�.�����7Vވ��B`��o�����b
�>�V�B�Z|p[*�C�򄐹!�7��R�,���g18YxL��&����vb覰,�̞�[�9f��"3Wn1p�9Ks�+�
v۰�G\p��虠���LsY�����\XH0�B{V��{[ymݚ�u+�Au��/�m�V�M*�(�<ޙO�H"+�,G������ҲRbS`X���¦ZF�ǎZ�+�kn�~�…��2�K+�f�.373.661���VRe7�DfnR���}����4�8�
PwU��d�|���_�"�u?:���Z�S���T�1��X�} ���D�F)E��tAչL��A�qm�g�3q�;O<�����7�c|׶�>�XCy�;U�[�I���*�L�&*��Ī�t{��[�_�m�����̎�dknno�$�Y^��E���;wL�gS#��dD��N-YCVj(��Y�苧��F��tk�Gߩ=][Y��2�r{Xc,[�<EK�2lq ���8�\Ah)/,Iry�e�����	�-��jS\n����(�\Ћ���0m�W�
�ތ��7V�'����1�B�_��y�g��P�:%�&�p�oj�ʏ�ɁP4��f����E����Ą�)A�����[npn�@���U�7La^�!�Z�@�?�@r���?����$���-�y	Y�鴧�42%�\.����kA/��qȕ�Ʊ]�x�3z	�̓|c���*^�u�a|���z���d>�f&H%�k�C��
`���~dݒ�8�P��O��BVV�U^��*�h�@h����{p���L8]��{��L:�1?Z��,z]wc|_efc���h��\�Ϝ={�~�oP"�fo���_C�_Ys���
��:�]8��d�Lf	]�h�ʇ�ع�	��ۨ�8��ȑ�Y(�-O&�D�]Wu�.	�jJ�N�����3������j��ƕ\�m�E2Q;kI�K��OOL~>Ko�,�Hn�A��2~)�#5*cc㒊*�eዣLD����M�}���\^swBWSn������m9:Fh������.�D($��b�%v�b�9lQ�qpdɂ�⺛����Ʋ�v�t��'��^�a+QɈ�d�YL��V�8��~KR�k܈1��I^��,+����^ɠ��d�Q�%O)9�-؄#�B%���%q��p��.c���o/㱘��8�W��s�d�I�6�rh�/.a�w��>���V�͢��>j..3/�u#f0C�cb`bR��'p���rQ�$?w����̵,u�U[�K�_���PQ�U{��nq���.6p���WD�Z_wwe]]e�]11�����g*��{f0
D`=g���N.��� �k�,P\������xKh�b�^vE�r��5$Ɔ�>���'G�Ν��:�U�2��3�7$Ŵ�n
e rh���k[J5�t�����Ue�g�פo�j���599��
TW�“/^^�5�����)�?WIp)������غ��$�rkO��ά(k�kIn�^��O\
+�V�{��㚤��ɨ����2q�y{zK�bL�Y�.9���U4d�ID	P����s.��'W[�f�s�%�Y^�����G�<��N����M@�]b�AN.%���0���H~U��C8>�1��G�x����<�x��U.������ �mQ�`b�� /@�L�+/O�K�Z:�y����át�s,�v��|T���-�K�����`H�����7���,3�e�M��59�7�:쁫ѥX=A/�T��XYiqmy=�>y�B��������(S�7�P�<-~CQ7%q�]nl��g�bL�J~�[z|C3ݕ����3=ml�e�&p�O��Ԝ����9/�$%	.`�$h���إ[<��h���q�K���u���0k��{�_{�9Z*�)�)��7�4U���UwhK��<jECm����-��^Ճ��	���ɻ�<��Kۚjv
r�jj�Ԥoe:�Җ'��_����5ߖ.Y��%��J�����p^�I�u�CUZ@�XB�{j^���B����l��ރ,��'�����S�	;M�q�L[\JW+�3�*���$����+�:Ex�f��\&w��

_��c{�
+���;�n�T^(-��P�:|>��*?�F��^���偋�`�B��`W�.�X`172l�.�B���%�Ƴ�6�Cɛ���o�3p���5�38�h�B��Sf�y�x�F(���+4m�|DAH�U��^��y�!�G2q�<�o�Q�1�i@
����eв7�K����m�s��ż��F�Y��$;MTpuWrӌ�U\*��^D����h�nt#�d�!�aZk��"p�u����.�Z�8�#�OV䗖7N�|Y����W(��j\�G!x&H�T�e�ؘ.���ƻ��:����ݻ�~�&�ؿ��é����Ta���$r���?����;�mm�D:q���-H��UL�EV��]
|&_"�1�B��O>��?��������q�kKBzhMTGF����BS��7��
�Y�>Z��!0�fc�2<9��������+�\^_W��Yc�.^��.�\��u�-\��-�K�غ3�n.�v�����qh7���\��3�,!p��E��b\OÈ�J���c�a#xik�E={o�x\z�טm�m1��Z�<�/�c��'[vA��l���`�V���ޘ�3��5歐�\=qͥ�����$�H5p�O�[FG�k�f�\�1�V��
�cUN�黐;3�����6B�P�{��d��Q���΢��L�U	�2���2�mM��_^^QO�F8|���1�&'���hi���7�2��~�E�^v--���=�-���(��ol᧱�X�HK���⵳4k�b�u�.W�Қ�nR��O�
<�c4�e�������"����
�E�`kϑ�G�a���C&�z+�o�&<4*5oi"َ��Κ]���W����<��Dx���K��>�drK���!�YX���GL&y*x�5x��x���'vf�'�]���bI��%��ĉ�VF*�T�)���Xgz�7������r�O���'���R�.�jOk0�����ʩ�ű,�&�s0g�7�i/ȴ��{�(n6T�@�+�,����0P����l^�=���OD�鉼�N��16p��_+N(�mh���0��
��G����Rl�����./t�5�g�"��'�u�/��R�H|�S�>��6�tS0�n&�8�Z���o�P2��M_���4Q��NM��{�r#�3P�%�.,$�x���;�DΞ�N���	��og.~{z�.U�+�n%�eF�`V�G�\=�x���c8xg{zΞ�����j�]N���^+0H��?��5�l���e�E�Ee�u�9lf`���-��x�"�2�)��˳w�m(�S:��%��ۻ�7��;��,zC�ݽ{����=�~���L��[����s�%֤�	o.��l�ʧ��3�^wT�r�4m�vqv��K�_쌆^�)ٍݥ���YY���n尰��fYe�	�i������
kś2/R�`_1��D��2CYQ�TWT[Z�vSA���W�ƪ��)
\���y�s=��l	�WGF�Bo�B0]���-��Ala�/��q�個/�x��bj�ˌ�l$��3�u�ܵA���p�ާ���;�+�'�8��ߚ��׾��qA~�]2��R%��B�yZ�,7;�a��-�*X�@�MT�e�[�K0�5���o�z>�!9�T{��2�q�i�Aj�H���KvFu�Y�Lr��p�g�ǩ_6�Gg 5@o��\��-Wq	�c\H���禯�>;�W�pPq́��9^���*[~�個r�II�-Y\\q��W�*7�p����*
s8�3�KQ��6�E�ĭ1)�!�z��h�?b��!W�0��6̱i��ű�]m���MB���"��(��"��v���`럏ٳw������}��w�ܑ#������;����t���7�u?dUY^_Aأ��i-a��x�:%������e��2���*�jӣU)ʤ�N��*�.)L�'�R�u�|�c�1"jcɶ�)Jw�LM��n?��?��:SS��6.rE�����Ս�����I�V�饯�x���jYjV�2
��>?��������H�r����xU����N���&o�t�g�+�An`�<naژ�ȊZ�&G���r}D\P)�H��{͸�g.p%��\uS�}��.\��V��:�%3����u��Z1��l�V3�ŗ0&Ry��x��C����R��t�`
��bh���\�>�Kro�<j����Ð���.�SXKo����n�)���['���r5��'�=k�gsý���l�Bq-���|0yf�%�"Ԅ.����\Rc*��4ϧ��n�a�b�;7.��zTU��u��(� �u�Ht�:h��D4�ˑ�1������M��׈_�p���h�]'�]=-m4�\��'���)�����WgΫ2��M
c�v�?u|/1��穯���޽��G��?��̬�{�9�w��^2��z�ɓ�G�?�#���]]Ji���,׺Mk�0%2��|���Y��[�&'�䄱����Zׄ��$�8���+��۪�өj3U\��=�����C��qE��Zs�v�����d<q��N�1;Y����l�[��97�t��Ƣ��g�4�3��-�}��(h1RK6wd��-�\^>#@a.��?/f�ձW9P�e��ȍ`	]����]�-W�1d \An�<��y�9��?�a�̵��C�����|z�]�`�燏�xdԒd�7���F\�'<O��2!,�*n�V�d�m�MAa%8��c�鲏��e,(��UVu�� �d�~��-~1��*f�z��8P�y���?�`�� �.�B��ă��
yy�
V�����U���~�����D��ZL�)M�M�&��g�G�2��s��9
\qlb�3cc������B��sW��E��.���NM� V��s���rj�j�������.�5@�}�l��Wq��~~�j����WZ�����ٽ�7�����l�����=t^I���{d�^xv~�v�e3X�o�C�,)Ŀ�
��X,J����h�=��_�ʟΩ�h�E���V���a	Ď���m��T�%1�����]�v��_L��	쟑�[Z��[Rr�"���1�k���b�
�)TYQ���e@�b�T�|'��Cy�^N���<l���\{p�A�.$�b'��0\l����&	c6C�'\
gq#�-A�
eqғ\A`难t�y
[Ƃ��5"��o�_�54La��������o��Y���Buז������(�TB/�eơ������%1����=��J0�e
Yژ���VE�Uر��!OpIrY}����?�z���Ղ�B\�U��Ul�K3��:u��{�r&)1���kz���4���K�R��m�!����87���q�u����o�g�|�,�1Ǎ��c3��b��:�����Zz�1��$��q5���xu���K��<y���k��Bt읞��1���� ��yůP\ i+}���=q���S��Ǐ�GX��p���O�J�M��/�N�FX�?�w��#{��?rdρ�'�LO#��{Kf[��WA4��׆�I_´�}�;kI8NN��ȲѪGɋ��}њWi�H�Ԅ�Š����_|=��<�$L\b��x}�јʴo��A\zM	�zp�@�rvJpy��=z5��FD�D�⥺�5��fX���K����KT�G�|��y��3\^4K��	y�eE������9�����ԃ�Zh;0���\E��<^M�+�*��#/3�,6�����l,���'��_�u�VoT����lY��5R����.����;@C�1�e�\`ry99al�~\��2�e��ܽ�K�'���ҡ�E�T�GܢT,�
Ap� n�g\
q	L�lQ���/lM��SB�y)P��?�Mq��2%Њ��䲯9p�-�7NL�z�����I�%ue�47D�n��P\Ӧ�����������
]*�ź��xE��*�ź�b6\����
\m�А�o�PT���Ap���ty�����c���K6rf�d\�u�N+~i���4�P��ϑ;��ud��#c�9��V\O�.��G�ڿ��qT.ا�W��5I�(�*a��wv�1����օ�@�0�{�P����ں��-M98���-޸d��TuMgB�*l�������$|_�+��W��D��zW��.~`�(������y�\b�ک�U�������"�+��y�0����b[����(Z�-�e�+(���BP��c3&��y��ɬR�fe9�n�L	�Ԣ����Ŝ�6l\䊨`6����8#��Kz��.9���K�ꍢ���k׳]�	���˯=Em�#س���p�I�X�7�hk����,GKq��l.]���$���T)�9�1��v��o4䱱��՘����K��#-�ey6+l���Q.x��Xt�
�0�d�J(q��i�V�$=0[�_tcr����"� �Ÿ.��Ɂ�>S\��ˌ��n�@��eمq;v��b#}��λ�KӅ�@ဋ,W��9B{;�j[m�\��CÀ���b���]����Ǝ�'B�s�52������O�_�=�z
vM� ���5B)j�3Gx��B���yl/797�!�]�zÉC{�w:4�rgjVN���=�fx*�;3��ZaY	�P�C������-j�^S3��O[;�J^�������<�d��������e��+S���_�V-)I���e(�"�^�f	���"n�������u��V�&u�g��{B�A�����7[f��Kز7�b#Z�ʸ�9��Ʈh��1_F�9r1��ŧ���P˶xV\�l���037s�e�.���/�8fS�A��栺@3n��o��w�}��=�24L��������ercqTâ ���-���W�}��E�,�%&�`� ���M6��ˋ�c`'X$^���Q�����׿��S6�	�p�D׬����ԝ�[h������9���Ap�d6����%[�4}庭,W)k��I����Ó]'�&p)���Ә��<E����7���*��)�8�k�&i�	������2�>="��"z�.��Z�א�Kز���
��
�����'��A.���M��?���}[�+j�8$D��觓'P��U�a�!�Y�t�=�+<�����C{��@w@�8�ʕ�G'��o���N��\�`'�Bb�ʫed$�TW�X[��pF�Z�شe���_��E@���g%G��ˠ�M�K��_���/]�M�rq�8���j��V�/�N�K׿��<���8��T�k�&�e�2'����(�%�ʧ(����@Ԧ/-xgS�[�����e�r���F�7@/��*�
sg���0�ZAif��h��K�.#!�r�X
wi��Tw�P���QĜC^^�������.�Z�\;ۣ0���������w ���,e�(*j�X�"�"E
A���L�.�ff�R
�-$�̊O8s���L��D,�hb��Ԫ+���+�,��n��[s����m��`u�%_Q��,�y�"׳.��a����佈4j����uvLSw��[<�?Z�x��RGG\�9���!��R����Ѧ���Ud��֊�w�R�r�8a���kp��)o#��t�5p�5l���1.#���tN��{��@��1�����W(.XG�?o��w�:���=����y"�h�����:p����O�<�xx���R�����ӟ_�(	a	�	9�}MU��	6z�处3j:fUdU$TݩQ���O޽{��K���^z~Wg��-)w)?ش�ɋ�vm�I�x�w���4%_��������y�����᪾�z��;��?�k(n�,�
	Y��ߖڊ8h��0�+�R���O�K��KX�㖴�r9�K�q�M�-�,/��.�2s�)/�q�R�\��Ȁ�+��g,o).[��
ݠ��8L���=�6
����C<3��[�v������ZKG^��ŋ

]�qq��8��峸��y\S�.�pyGx�����w�=s�6j�i��e\1;�ޤG�(�m*�=��_�,�9E�q|�8��f��eɐ.�#c,��!	�K��[͊Y��qa��-qr��`��_������).L�ױ��R�E9
q���Ŧ��\ �<E��`��,�Qf9>�8}dl]cw�.�#׀��?��6S�����kp�	\6u8.�p\G\�܁ [��~�XA�y|��NQ��={p�=���:'�Gt^��La���(
��Z!�m�lͪ�]��;��
�Y9*EC�������u��ѝ�	8���A)HHI n��>��O�2^s�nr�~ד54Wlb��:�S� ��O��|ήK��/������K�.�}������c��R+��d=�@�fV�eF�����U�ԉ(�Ȍ#
ꒋ�h]㱝o>�K ^���G�P����<>WPoa��j�88�x��f.Gpy������\2��Jh3p9t2p1���2�)�r�Z�����z+/�-M+~�@m&:+$*
��6{lo�ξ�oQΡ[��a˒#�.7�ea+Aɸ��WW��${�⻙��X��S)H���A��A^��zp�YN;��SMw�U�e^��&hdz�Z}.8&p�=#-?������J��k���3-ʗ�p���Ѭ�c}Obppa�y�.�b\F!8���M��%�l��l�z�[J�2p�v�]-���*�Z�YAp�{��2�e�[fc�-���\�_��u_J��Ȝ�
�����b48����o����Ⱥ��1��������ĐG�jI�G֯�o���oh����_L�+L�(�Ȝ*��/�ʢ�`X
����r��Y�&GB�⺰h�%�RS;��(9�m0��'�`w����w��[[��&�1/f�]����϶���z��g/]*a�g~p>�����=�Z�vе����8r��%k^�OJ�I�]�ꇞ�0!�xM/Ү���x���S�Kfe x9�q0�Av���ւ0e��U[���'�x���5�[�vd�W�bk�jv�����:)�
�ꤧ�r��ۈ*R�0�x��'`�ٖ6�ڻ7��fn[�x��-�5	��-$dqȢ%J������V�\�+��ee���ؼu�w�u���
�-�Avq��R�iͦ4.��
��E�J�2#w��� �*�G��*�{��+��>�4E��-<ğ*�}7��h����d|w:��p=�x���7pM�ez��Vh.
�t�h�!�2s=E�%r�$nGp�Ud%-!��cb#ӈ�Rc�5�]�J�\@+���}C]��������!��+�*�-Oq��\��U�S�����⊩��G����������A��T�6�WNKK����?��t���f��f6m��Wt�����j�ʙ::�@n:]L�m���W����"+p���a�1��8o�Į��-5�S���)~�Ϸ���|�Ү����x��z�٧����%��.^�������������Tc���N�u�IQKZ�$$�("Fq����\TWQ��.I��Eͤ�#��~T\Ap��y��ׇN��H'�f�`��s���4���.�e�����C�����UX�v�K�r���3C�%>[7n���먅IQ�����׮i��ٙ��>8;C@�4*d���w������.C���\�K�
���m�/3��6n��U�6���ˏr �g�y6��Mb*f��\z;��<JL�<\s�~0b�Al.�zˤ��h�I1eqY����
�^0�ee�]pa�S\gp���*�`E#
�����(F3�D��!�r<W��{<�U��꥔�ѯeRqQ��GZ)������\q��P����K������\�����\��:�W� �����S52?R��O���S��o�o�����٣��m9U�・.^i���%v�5���.H(�Jߚ>H5������T1�t)!!<�̈́Ό�p�QSs(Q�W^��D}�$n�t2T3:��Ɠ;O7�=�:��ן���mϷW�Ŭ�^�x��Ϯ\��OY�*/]�tv���`(�"�0��u�5�p��wv�������_����pk)Nd�Uu�Ml�N2#^{�_l��U��iI���x�H�Ƥ�AG�\�\�s–Lc�n�N�/��|E����y��T�;q�k�Ѝlۚ����n_��F���`���b�%�������.�:{��e�Zu���\����=I��A��h/��\0�U^��%l�Yc3�R���s�X�C����b\V�k�����ʋ��z�^y\݇���`ņ#/�U�nG[����^c��<�͒O�O����`x���5gN3_�X�n�٘�h%8??��L4qMP����EV�Ҿ���(��i�l��V�\#V���X|R}�zRgGr fQ�S�������J�F�\m����g4�e�
q���\�(��L"r�$�Rf�U4v�u�%��hb�'~��*~q���q���|�ۏ,��}��\��g�R���	߬�D+����*���Q�8���99)Y���	a4�ˉR4 �N�&�E��h��),K%�U����$¸�����V]���8Hmf�*�+;�(��o��Z��J:mM߶uץO����%�O7F���TV:�"�{��Mz(R�"/b��%16�/Q�0+f��*Q/:��V�Ѷ�H�{���"&�0\8���*r�`�6x��NC�t�C1�.�Czܨ�4Ņȱ�J�7Vy�r�E��+��Nc0�A�yK	[4u�䃞����ӥ�:�\��lw�RayzT������u�g�?����o���������gϾ&�j��Zq��zJ�.w-�@���/�!(/ޭ�����d�>2�//&��!
2UP��Ǘ)�Z�qC\Ap�S�PE��{��y�������n�Z�Y��-�q���w%�^����0[�'��.f�N������fJ��[������f\�`\Z����L*6*ƕ	�bC-J�o����.Jo	\���^c.���\ĸ8�Ĵ<Wq?��?�*2�f��+p}��?��Bq������G[�_�WA
���7��[���\I���j���oyY!�(�W�e�
a�
���)u�LL���dfe��~*�Ej|XVj
H�N��pt�*9s�T�;?��.Y78�-���3��>2~�Ƙ�,J�l�/�ы����ΓG���*���":�:�x�ӓ��{���aU~�\D^�Y��fC�܊�ʺ��w6e}���g�g�ȼ��+8o�+�E>2���+碌�[l����Ŗ/����YE\^n)gy�lg.�akF.�'��Nm��,O�5�N������퟽���5_������g�:�>���Ͽ�Q��t
�|�L-n�e�R_q��!��-��k@m������t/�����9�2�j��X�Gq1������o/3y��B��� �{�����f�c4�S3�k���a�*��&����KnG
'i�ׂ\�X.e�Bo�Ϻ�Yl^��o��3��8,n���Lq)$�����ܑH�%p5��&���S^�R�p-��%p�HS\mm���K��/[����v)At��e�j�.��[��E1��4◾��<��
���Iq4�M@�b䣏�sg9Q	$�f����
�ɢ�lB��&d&44���h� �����d�Ҩ��&��嵈��)f�������V��������z�j���6��'
ael��|'�	;bw��db��>X�PZg�`��w����ҧ ���#p��t��\�������
�7�9��撥*Sj=/��ln$��Wװ��u�O(�����<W/X�K���w�3�d�����#��θ嘷W��c�W3��A���wM.�ou�y_.�'�[.��;a�����_��������ݾ�s�͛�?��|#�^��\�.��\KB���F�3��t��X�F�8�R'G�eY��D�
��q[�@���7>�}>��f�l��Ћ����&�68�s���莃4q��>X�~�E?%�����&g��gp�i�k�
4V���*.׃--]
�����,\E�W�����A6�k��d���
� �,�:|��	�D��T6>�����2
(s��蓫؆9�����E�CW�LqE=��$�.��D�9p9��.p�Bv��\�iī�� �&n		�q��	��ó�?*�ʭm�mhН�<��@�9����°�q�
�3g�ZVP��Z���P����=kKMa$�I-O@�%�T�Ip>!�0'#��ȶN:�l�F����m����	
��2[2��?���g��C��Ϯ���^zS���[>{`ap����na���ELj��������<�W����;{s�����R"]�jf����\E�Q49BɓUX0b?\�����6�ho@$c�H./�s��K��)����.������=�/j}@v|ۭDWCu|���}�4��Djk�G�o��������0y����Z�1j��mg�~�C�[��f��#�'ڒ���U�mZ�A��N�q�=�a
	9!ch5�6P��S���%�u�rL��\E�����L7Jy9�&�y�%�4��gj��vi뉬�5g܀���Qw�?m�U�?��Y�uQs�t�u�G2�f�O����U��\
.���-,ӦY�M�(^;�Jƨ��x�q��*�(Xt�M�8��{}��~W�S�����o�܍�z���9�p	x-?\��?�R��=��řE�Ƣ"��!�J	���z��\ꧦN��BQs��"M��U͡D�M@��a�#q��/\�l���ȃr!xZ���$�.�J	�����q�L�ٙ�Y��(#mv��%�3Z[h�\�-w�!?�D`�Հ��o���|J\5hdo���#��I]չ�|��vټ���.��F�����"�х�v��|�L<��9+/.g5�1�?|f�B�xΑɭA.�E�s>�䇪����'��*$WQUU��ÇR�V��V
J��{L#_^H��T��M�^��@��X�97���g�6�84�$q�X\V���\��?P�tcޕ���7E�W��e�\�Lk	�D�u9��6�pa�U=�F�}drr}}bx�k�������oo��������v���uV�ns���D�X$AǞ�)�6�I��2'���3���2]SV1��E�Lq��2�e�r�X��O�%��0i�*�p$���U�'PK
p���%xI�S�p��4��Rrq�%��R��x\s\�;��1��}T����`L��Bp1�y�e�D�[��]3+��p��I��<QJ�⸠*�&�'
���N��BB_zB�u�|#%o�����7��5>V:�*�y��2�����bPKh=\���q���uY��*
��B�P��h��&���.�� ҆6�T+{�]]�@2���۽�x��pd��'�()aEQ#E�����
g���umr����[��<(�=u��v{�Õ��]�6Ɂ+N�]>��gI����*���r��.�⹗���Eg3�Bp����O�%z��z�QY\\�FY`<70jUɗ��с�H����Q�fZ��ES8�3�<�B�r�������j���+(��ܒ7���Ɓ����4��L���Y��ׅ�%��PՃ�Ň��M�''�ݝ�XZپ�����m�][��ot��⍥��p��5�u{i�%�֢�K�5"�:��$�j�-S����2M������czY3���{b�H�A-����g�Y�P�8)�
pEBj8\j�i<�n����e�ҌZ��($0T��q�q	�P�qb���?m�r��cs��*�F0���i��(����RȅJpb��%�"�?W�1��xڶ�>���NO�aI�x�����Ƽ'��L�Q���)B���| k?f�kz�h�Lq��^#V���u���Np�|�������_�#jm6h�+fj�G��jtU�k;w���?w�g�
��y��Cv_ �'����h1"Iw�\޶��rG�]~����%���Ċ�P�B��HͻW�B���v6����o���\�|n<��%~�&�~fum���fs��Z��'�9Q��Wј
)��N����� ��M<��ˠ�-o)�2��Y��{3�U'ժN��@&1����Yc�0��z�e/���KX���F�K�,��S��8Q���'�*���X�y������gn�x�����n��������Ii�o#��D�xneWl}{ayta�'?�~���ׁ׋7�oݧ���@եk�{���J�]�,�M���>�ܒ���P������Đ�ƁJ*�Z�Q�����	.��_�������q�*�[q�Qf�K�i(��P��%������!�0@$��7�&�:Xy8]c�n��d���jw��ȥ�\��O�'��O���_]�Qbݝ�P�'��T�l	�h������`P�2cy*��kS�52�����q��L"��6#�\B��Jd��XkY
�=�9<.EWJ�u5.�-�	��\��
�ea�qm#�?�󄊑>�7��y�m���zo��%���g?�~����S�7VG�h��x���4l��%>�{m�@h�sɤ��'��K�N�Vn�%�a_]�̃�<��(���ȭ���g�?��i������2��@��y��_O����'h\��w�X�>r8u����[S���m���d�p�2cF��B.
u#f����w�D)c5������!�#7�U�X���Ň��A���C�IeݕW�+��^e��*�\�"��}�������ӓKw^$w�z��YF�����K����fA���?�~}��"L��.���
l.�]j�_TVܺwW�g��G�#��*Gp�;������^a���� �xI�f�yj���2��*��?\|{������
p�Ix�r�^L^�XQ�e�b��$�㲪h��Q�W��+3펖�8����8[�����{\W�H�L&��.2�=�x\��k3����h���҂YU\���&E�����a{ͱ���N�#�L��eD�LVz�pk��ԘhP�X��*+�,raߗ�ʃ���G���c�G��<	.14��
�����G�5�6���md��$J�x�����s�w���e᱋���~��{J�h ��<�ꌿ˛�d�ٵxc����� V�υ�O�E�b����3P
W*���f�~��~��h��t������j�eJw��L�d^��_���Ȍ����WQi�ɢ֪��$#~��vv4 ���Y��t����4�%����ҷ���+=!�ȉ����n�����MX�%
.K�U��:�[S�̞��%�o�.���B)���;��/���s� HT��ۗ�p�O�cekbp|��|7��ō�w��淯c�Wȸ4T\����%��g���eEG���m���$rSu�9�ciʊ'��UB�*��F#Gr���2n$X4pû�ļ�
��p}Yޯ�wP�,�	+0�֡	OZ������.k4r�|tp��a3q"��:�2̚\��T�E�*��(�}(�'�.�����$q ��z\���z�
����P�Xb�657OMm�S����c���*2�j\�'��9W��E����Yy;3�V\��-\�Uj)�^z���ٿy\�����z�@��!rX�.*���&�eČC�s��w%�5��_���?}�;xY�~W 2��E3��6��b��Cm.�[{s,~��y�o�dҎ���\I����Չ��|��f�ΜΥ�ɞ������;����t���8|�J_����r�c�k_ی3W�\�#�"�>G&���f���bpz~bq�����2��os �bI"�rl�WkN�!'Ů}�-�D��<��M/��a�`�qp<L��҃|hh� �4�qf�긬uF}�.ά�f&�g@���ߞ�6w��L�čE<�h�a~r<�M}/o��O�oY�:�ޚ\Z��XJD���~g�PC\��;뷇񻶮���]�?uU�%>P��8�1���|P�	7���:����zI:]��1��=�ր7�����?�BEy����K�y�2.�	��X҂��8�8$ʘjs�nߧ���2T��)¨�2�eU	��@sG�5�28\j�t����Rp�i�;=��E�
�y��sVEU1l,16IJq�R��IORT��;:��\���	���J�N�izސ�^�Ph�]�o 6"k���x'�՝	.���z������~/�!;>���P�(b�c""R?"�H��s���Y��6�t�
�#�Of���e�^BH���l����ƛ���ٺ$5C9���wd\m�Ջ�`:�ow�*�>[��L��ߏ�5����!0�G��W������ '�{�~��嗧־����¥�]{v�UEu��t�dJ��v���Y)pkYR\o9gj"d��������SRD%6�΅�o)��M�.Cx�ڠ�?=+��z�����\�ߥx�_2��C�|/K�7�yr=�f��/̓�^X�6>���3�������*�#e�d+1|��w�v�t1)lK�ZhPr(R���H��ʉ��ZV�:7IO�/?���Cp�x\2 ��"�zB#k:��5bxUP��l�F B��l=\���{	?L:^_��ĩ��9Ք�|# h�ez�Q��S"V@�Z=3W7�&��� P;�sU��k�ttf7_I�c�ُk���
��8��\�?-��'L��yC��:�����_��f��Xh�ДR����e2��%);ɭ��X<����kM�͍D;*N���E�UZsb��Ƀ�ȕq͐���lŤy3g����*P�&����z�+�W�"�^C]�~�.�i=\v���P;��by�m]u�[��wٹ��-���~��1�R��_�]`���l�4�2���X�q3��gs�lO&x���3=g����\er��K;<�?��n�Lv���WR�tWW�W:*��~�$�<�=�v�����TI��移#C�PC-�_/�0,��ɨ23/?�]1���'jk;CĕګK��
rc�u��?w�"�Z~~��Y/(��[̢ܲ��&�����<�Є��yY�.+�o����s�M�R�%��Ill\�<��F~1�XQp�ײ0_[
�T������c8`�!����^㒡}KT�uᄁTbn���M�Lp}�<ԪE�G���a��KM�H�W��y�=SYl=��M$��E�
��+��$���N��%�d�W�~[.���1����Vu����2�\�H�eVu�rK+����6�l���[������ԉ�SZ}o���q����r�R$�ַ��Sr%'�5g�
�l:_[�?��mj\c�Bc}ͱ���Ά���&�G̉.�A�������1&`�`��2�J	!-p�DžY���2M�*�h��q�q�מ��z����|w�D���?5��Gϖ��JXX��(��!^;��e����q���v�u��,�>4�6�a?g]�H��H}�`����1�	׹a]���?w1t��O�>��Q���Nʂ��3�q��y�IO���)��9����w/�!�+��*m~o��\wgN��$I?��Y�����"=���D:{+(��JwT��?��5K�ި�~�Yc.���#��u��)5^�ٱ����*��;��r��3�-*
��>���Y�����"�5ޱ8Ϩ��HGpp�-k踺uk{�n��Z
|��<�ĕ��ڽ��ȱ���&�������lc|���c�I�����Q�a�P�Mт}�	n���4uOΜ*B�N��2x�F�r�@�0�Jܠ�s1�
p�l�ze��@�
����J/�t��3�\f�i��7��ov�ݷ��/no�?�>�!���W�B�9.��5�Q`A.\��3��I�Ƅ[�f�Ŋ��k�ǚk�"�>mn�c�^��r�4r�*=8�ڷ�+�'��M��.��|��R#Uo�16d�M{(��yN�q��*�q��d�����Bt�)c�m����bk<'��Y;�K����T[��Ů�CϬ�z�J>fk�
�G��_KPX��d���\6	���/�FG�_B\���6G<�;{��2�9G�Lz-�����N����
�0w���tㅅ�uO:4l��ga�k/��y��-ι(����<�!=&��Ͳ��ٷ̲��x��W���
T/���������PQ�匽ӣ�V;�&^$#/��IL�Y4ô�Z��5�/����A,v��Eu�nZ%�!��g�fom�tqc��6�1Gn-�LRڳ4;5���F:/_��cY�P);VF��6�.O\]<,�&֪�w�@lw1�v񞽭	RfWn"3ɥ�;���"f�K��iq�d���V&
KT
(����Yq��XԂip�2��t��Țp�a���o���1�'_�~��b�����xX��"�fK�q��vx�W~��[W�+�����[�x��&�-��D�_��
.�|B��*>Ny�0�AcC7��^��ųM�
��x��1�	��zE��9�i�@�j|@�9$^�ů�j=�$����0�EzK�L�Y�z:n�b�)ۂXQ��(��1�#���s��B\�`��s���(�������w�T��=��D$��%M����
j�����c��p%�����<{=n�s!��8��|�����8•�l��1j?5�M�d<����Jƒ��4v:�n7?Q��hoo'�<S9�gg����1���N�a�W���V��@l��,.N׬���u���E'NUQ���;
�V"1��
I�=#�QW���[��cf��p�d�yd�Fy�X4㨰>���i/+�(g���������l+����U||/.Z�p_�Gz:�h�f��*U\�Z�v�i�^��g4n�<�W(�R������������ھw2h�B\V�������$�)&5{�);��br;�b���y҅Y�c��9�	�O�UD}��ei���1$���K@�7K$��F�R..��]TPp	�T��ڀ"S������=�(����Wp�&pnIE��
h����O�"���^r\�����
�H�!��R�-�x:M��X18X[3�ƲT��E2[��l#�Q�
�8jcZs�|�`�u�iZ�H+��Ae�뚡�\:iߊW��tk���"��S׿y\��Oڥ�w�����y����xX2��P�>I�#E�i�e�
v�c�h��%�ޓK3��(ѣ�$������d|����c���������Q�z���be��oi���
�L�-nVƝNǥ�N���a�U:�T	����V��E�A~�d���+%Br���JG>#��.~`[Eu.+::i���nF������vv�F�9����L�q��Kyp��m���Q�kT^�ԍ��	�Lp�%��%����g�'Llݹ�u�ϋU�)���ҁKZ޿�����e3y�:��p�gϵ��[w�:R{�~P���#V��I�x�.���뽽�|���&kZfd��E.}�C�=�P	�
����Y.�X(�Z��!z��2t$�~Z{���5�e��r����Ʉ���P֡Aͣ;P.�)
��z(�2�""��=�ղr}�
̈́�_ߙ�����n3_���`�	.;���mB�@SEB�t�d���X����)."��Xn��5ǚ:���hp'�0b��N��L6�i��7�TK�I�V�<x��SSD�9�Q�$�1V-p��'N,0+�e�����[� �8΃-�qJ�~T��`�'�6��-��#.�w�E�
�H�J#t�X��j�"RE��U�2�)98~�C��\p���s%��ͬχ(�鳋N�,J0��Ռ�Mb�Ν�']n��~�|�ߛ�<��0���V�z���p���iw��{V��sCҊ�s��v)�#�@�E�EG#2�s��J�ׁ!��V7���ُu��$*�K�ۨIh<�f�jC��
��@�I.v�Z9.��V���"j\�X��;�H`-y��0g�,ф��}�Ӥv�2�o_�S�x_�Rܕ��a.)��8�C����kirX�uY
�wh�e@Kɥ;5㰘Gٞ�����;�3
.��>���tl� o�f�h\�{)R�\�؟R��x`���%�¢�ɜ�r\[Ln6�?�E.�K�`P���9D		U芙�U�U�o��J��˜�K�B�����V2ŭ�*���{�������d�Ze[+|���W2@?�`��S��5�uE"EYíhl�N�;��<�css.�[�ypcc,��L՜�"��5�H�r'By<.2�A�h��>X�	�e������Rr�s�̖��ر�V��{�{C`���8�^Y]$��e�Ry�y�;"�]^�esA.k�e���F����Kk9)A�Qǫ ]�?�����d��>�߱�dژ��U^��7�j��da��>�z�hP��;���8VF����:��~5w�g�"_�==���g^\�vd<:�81�2C���(�A��4�"�cˣ�T��e1\Ķ�LB���STjz�r׹=��u
=�趔T��?V��/Y�1�(ȔD;;?�_y�Lߋ��z��\xn�o���4RV6���k�E�8�xw[Aeq˂ׯ�\���u1��O�.I�8�%���gbY�!���ĩޥ�����K#2\$�L�KO�`��-n1���R؛̑%>S���>��L��2Z!���\<�a�M��hD���,m�Y:~n�
'<�O���Rq*��~c�ӑ�2[jZ�m
��	.��߼�Lh2\�R�A�kN
���X���il荒�B/11��E�:U����-*�j�J���bk�t��ל<}�ʩ�Xsc��m����G�s�P��#_=�\)ktPe5��^�f��yq�Sp)��f���*�_��e�,��y�k����_������ThH�-��ۑ��1�G�Yi�E����.}"0���~wee�g#�_离D9ޔLJ9�W��i 8t�xHS�+�;�����5i�s�k�빗�O�%�K|�"�\<}��@:}FB�B���78��܆����,B�+�%Iz<�Z�k�wھ�-���϶ζs�[rt̒�������ڋӵ�5s�Ye��o�|�.�g�,���2
�,lY)����|o\���A�F�w`�����˷��E�􆗷��,-D��ra?�ȇhx�Z87����-�‘Aa����ѷ���,1̂���32
i�U�Z�:�s�OXeaK}!�'���%q�4UpLr��1wGE��^$we�Y&Q�q �H&�0�"�2�e�gj0!���i�jj$x.�:�I.?��.����"
�+="y�hG��4K�Sw���$=~�ǚz��ҙ�,��	�Y�npqZ���A����P�b܃}�hCSSsECKS�Rը`���%j6��hS�	BEm%��%�A���\�+�-�O�0 O��1J�!��*2�Ճ�����dr�`wW���\������``�&i��O���4�A�?�U����z\^��J�];@8Q4�l�](ʙK����Lu2w��ziU������*+�>�uΰ�ܓn'�d2����M(�^ˁ;.Z�<@��H�l��*�Χ�Z>}ohf%�ֵ��>2�*���"4%M�H������%
*��<g�v7ȡPV0�bf�u�ͧEQ�&k�w�U��/W޵2��:n]*/Z�޳���la#�LL\.����5†�RY�9S��/-�?�0����]?�^[��l/wݻ���~`�o,%���S�[��}w�t����gc��M%=$�f�1�׃0Ō�,=��\O���	c��LQf@S��e|'\�^<%�J��)Spi�����=�Ec)Rb���
���@d���)�������W�Dž�t#���9=3t��<��-N��H$����4%�8���0�ƖLKS�`��)�q�eY1�iIf�p+���cH5Dz1�kJUE1�T
ݻh�)MSQ��]Ցd���zk��ʃ�yh)�t+�����8�G����'��e���W�bv�8��X&�$}_On3�(�3Dg���<7C��Y������b���h�5K��l��.�u�Vw���x�l>g.��O�mu︘����c���? ��<�Y͹ݢ֪v��l.w?�N�ÝN:�=�U������k��gډ�\�,�8�<؉y��НJ��U��i�W����ddP׋�4v�:E�
h����(�*��]�	�m�}^�b�+�BvY�Ҩ�b璈p��
�W+�].n����y��B�_�yY�����F��/����-n��F�8���9v�'n�T"ޑH�W��`�'׷�^Zܘ�Z���za�G<_x���/�������߮ߟ��.�f���9+[Ae�K9'	/��e8�
����%Tɋ~�w~/#�� ͘坏�_ަgV��B���a��!��}'����}B�t����'9Ob����[�0�%\�Q�Ya�"
I���2�`M����<.���$e@Bc�(rF�L�����Eh�2��
�"�B�Ũ�LZ.�q�{�ꛛO�U5B������M3ڥ#9?u��T3�yq�Ŋ?G�b�K{F<����<7��Wa��J����yz�O+��*US�d�_>��yO9:��$:���p�������H0�kii�G�L��?�����t�^>�Z�&}���,	���3.���.z3��<Ta'n�����E���$ �u��a�/�d�ڑ�_{�[MKV MԞ��3,W��X��Q�rs:�\C�gm����7�))�Z�)J1�"KoK�Ry�^
6K7m|�%{��F�ZKn��wg.<����
�
|������REL���*ԥʭy��7b��M�ۢ���H*Etx���X�����OL'&'[Q9�G1�hXY��E����a���(Ĥ����"G��$�❟��'7n��G��`i���s#8\wn̼�OQCXK�<�D��f2�������XS<���He2(�i�q<��W�����c�gg�~Pta�{Ԏ����(�i�g�F�)��ߎ��.�
3n.�M�I�BUe��/&I���Ɋi��R��DGSS'�Ѐ�r�Ęq�|J�A�5d��[���D��i%���l��+���8ZC�U�`V�Y}'Ǩ�"��*d�٦X}s.�;Ea�(}Mr��z��+�p��
u����ɮ�z��.�!$���v�,�g�[�e�-~D���>G��*�E2�"`/�v7n�����eb�/����w�f�%�
޹��#��U?x���7�=k�ɭ�������gu�9�
�}d��{�	{�,4�=���{�.��y���]K������X��;����36��)rRuL����1N{��B�PK���hm���V��3.���p����$Nײ2�9v�p�)bX�4�X����9�"o��D��+�q=�[a*̨�.�[/��#v����(៸[7�����`
�.��ݺ?8N��D�w!�ڟ\���a�Z���L���$����5�D�4�[T��\^�d��eB�_ߺ4r[�u���L1�\�eLU�?p��ijPzh��a�(�`���|;���aS�#���h2_��E�(8$$�0ӁX�T�;����{�~��+�2���z�Á��4��K
�@9��]��1��Dg��}^4\.��]��J��,sң��
U�����c�V�bQ�s�!6�XY�������j,+~[}��pKrb m�̯�Zc�Q&^�h�(rkQr=Tm)Zf\�^��ZU|���;�e�P���^^�d�+Z��f��:ri?aW�W�1�K�g�MS��{�S4��46EFm�Z�$Z�k�{똾��]p�ĉ���Ԍ՗s�D�ɰ+�u�w�hu�\�m���Q�{XTt8��q�q���p��u��NO��>w2�&��������'�|�̻�ȔY�)�|_�����Ӫ�!>���iY��$|�FxJA5�b��$έk��.��Gۀ&����.-�����lYkx�]�K<��������C�n��R���0�YD0�}m��R<�+K[�d��r��`'�&'�.����^ٞ�+k݅k�WK�z��z�e���̉NVSWV�Cm|ٮ�}�?��W�f�twL=:������K�pM|��>k��Cra��g+Tyb����?���r`Go3���/�tj@�Rp	�� ,�ÍhB�Vk@�x��%��i�Kz�k�yӌ:H���`��R7?ݖK\������4�}l��ER՘�32��D���)��e�Kܨ٪����I��ߞz�R}}�L�ijLi��$V$��	g�x}},�DF�I�v�\}}ʭ���i�-��j�x�5E�v�h�j�!@��J�dg��z���W����r;��K�=����xM}���+�ڒ�0k���]��&�f�e`H�YR�����p��}1I�伏�6R&T���˞p�yj5O� �t�:�U>c<$q�e��g��~J{$jt�l.[O��GNW.SY��y	(?�$���K�_8����nbD�UR�)�B~�#�l5POq��#o�\�Mu��϶�-�QW��pMGh����TMk�U:������p32Q�ֈZҳ�HR�=3�'��X������0���-�h��ǣc�M 7��4����z����b�l_�#�JS��<
����M�L�l����Ku�"0�Cp���k�b��ޘ��Y������R�,g����|��"�<�0��x�O�U�̺)�9e�!P�Pp.e�ԺE̒r�4ɢ=mT�
�>|���j��
1UE^g^��B��_��csūQ)���;CElWUtr�Fkb�M�����jI1�?r�S�����-�'K�h�x#y+>2+ȾgG�˕'-
�𾘬\/��W!=� J%��\����]k�͵��-c���A5���F���A,�q��x��K��x渌����3��b
�C�O04�+s��"�&3�4ƚb,����t��>���l��PD��
E@��h߮��ڙ:�0�&Yy8��/�dbϾ��$�ȷ?�����uEq��Ɵy�k�Q]I����KOI���\��	��_�m~�+��O��XYM�XF�Zh�JG�����W��Hai�@�܍�LI.8�fu3^�������Y�?+�p��+}0	۽��IJ�q5+�pQ4��^Y��]��h�%[j�0Q�9�u�Ni����0�������=,�F��fqm8���'�����u����O.��}{��R�K닭��(�������޵�=��j%1%�*޳;57��u�^�ڻ��ݥ�=.^�� �6Gj���K�'d���Ʊ2K���:f�K��q��.5�+�e�_��; ���oz\y����L����h>�MV/s���4�s�*��L~08��R�%���bB.���wV�W%HNĚZ2VӍ��`���/1�����բC'��,"R��1|��D���)�����J��4�h��6�n����c��I�x��1	�T��̲�
�^FTbE��2�\p�\���^�\�Y� �>jj
����H�q��b6Y6eXIW���[Kg��x]��l�k�O#;�x���N�xm����k5W�N�p��၏���r���8��xd`��R�����~ۻ�)z��ok��BAg�w�0C�=��k�&sz��յ�g��{r4��}��o|g���j�E��Ar���i�-�./]Q�;
Mx^����t���½���C)�����I�t`(���廠r)��5��2u���B���������ע���\��U�/m�[��mk��H��D�~Y#�ɥ��tt������xtr�o��b+;C!�ս2sec{~v������4Eu�j��/'�h�<9��p!ke�5H�,_n.�t�D�&��9>�~��Z��(�K)J.6�F53�Ɗ _2WHq�p�™��K�kdH~�h��.*#JԖ4�\�驖�X�{�\Хf����D��9,��_7`���W��B�aF����<ޖ<A��l<N�}�>���d����j��5MQ5�RXE/.���\�q�����#����c�J\�!�XC�ȿ�5�Kb��2�\)�$�?L��e�e���R�?�q��9V�������.ݒ\�[���Y��b�`��F�ugII�b^�Y�7�5$Ab��%i���)��nk;�/�$\%�A�<�Z:5�rCĒ����D��w$��tǫ+���w�q:�̷���/�H��KZ�O1E����/�֞�P�������W��S(kN�N?�̅g�~��MF��!����C�,�
�:BަN`���Ħ�cf�A����XX��D{SK�E;�6��6��_Y���Mhc�|�S�DM����Y��JT^#�cΤ>�?LP`��7|��g��]�[W�T�����y����E�#�L�Hw��wNL^{����ҕ<��W����X^ޞ�9��⟷�RǮ��Z[i̬Jy�ʷΡ|�XImk�X�4�M��]"N$P���'��$�<$}��'�$��Fc�i�l�Թ�q��.S��w ���t:nd�0���gypɁƅ�tH;>�]����%�/ ����?�:sF|�Bs}ra��SL��Om0A���
��9��#)�"΀[�����-n��8aȺ��!*4ŵ��-D���X"�[z��j��aV.Ƨ��z�HP���{��8�
Q����k���k���%��/���`�b�������	����?긲tY����{���2�)�:U�/�O���Ҕ�F��l����Fm 3�!d��xP�{�@�K��u��w�p����|����@��9����C�㗉����C ]��d�E[���U�|�������5��¾���wT�#�p<��ʯ����{�GN�r���$P�������H�@
U��N����W�4T��>�bbbQ�EE�Ѯх��ȩݭ�S��
5U�,P�������F0��̊j���������a�1�]�+ì`K'�p�'�6�"m�7>{�#�k-�qc��k_
��w�=�Kr�V���0F�DR]�����NVu��Q>����'��Рn�_��3�w�֮=|	��.�
/n/���(����wtl����2:.�iU4�Syf��߸����Q��-ȵ3Yo&�����s�5#��d�u+�4�j9��?�\f*��2tae��V��UBml3�GL�ù��Z5��r;������	°&�R�)��8[�t@$ɟא�"_?u=��}����-eUu5>W6��އś��*6oN�>tZV�DH��&�"\�X��O��PQ�ueD/���ˤ�+��z�r{<��O��+꼊�?�Zji�:[r�2u+kkk˅���2t�`w���
A2�&y�0hZeSF0��!!Pr��*vt��q�j
̌�]�$���~�_Fȭ_�2�}���/���+���y��~8��`����_f3Ml�O����&A �:��=�;E2�O;����Z[Ŏٸ>X�6��K��o$�[�9o
��G�fof]�$�� �@x�~��rctO�}晍���=�bErr���|�_[���KbmђŦd�k�'U�+%�փ�ܳ�&[xV)y)LSY�]PY�bwo�f�յEt�P'��ia4]N����>OAfcAқ�צ�Q{
�%c_��|�*
B#�_]��kZ��.�y���&���zW�!Ն����_�����.��&�::b,�.�Z��M�S�*{(w�ꢨ �^�8iMV^J]e����[����o��W��v�7+���p��L����絗,lG�}����xnr4������H�K��w�K���K�ܗ��y�ₗ1�$�r㒮B(��a�τ���ݽ���	�E�m:7���4\2��q�m�{y��k&h=���-0r�Ks�C,�i�N�@�rJ��\�X䒔���Չ߄�A9-�3.�h��*���."G��#�۠����uml��5.Y��Xq�j�I�B=,G��P���r��q�]U���4���U�?H�un�W�3mw�ޙ�$�����;��sQHOY'
zS�o�Ogd���R�>*���7�����S_�ϩ�ȶ'��̧rVZ��!0|t P��=��if!V�
/��Zt7]����m�s}�5��O=��
K3��
��=Ut�I^:��e׮�}�#�=�h�׼N��1�6���b���=�ҋ��Y�˺"mv*���k{%�(��jՋ��I�틓*���ϧ@�.�v���'���;����,0:rwB֌,����	Y�x�wB/];���b$>�dїO<}d+R�+푱+M���h�3=/�[N������&d�C���pOϢ%�e��i���u�^�Q�n�>u}��]R�1�
-.V*K��C]����ʲ����ܾMf�2���)6�f�&����zК1�T�I83Kx[Nhf:.SW�yՉ\�h�%�]�~d��ŨG�=`A.�F����gt`�"=ƍ�������KzX	0���`��'C�f�O<q���2|$�U ��I�0Gyj�c"�-�B������{��7tB5�,Nn߾
A��5��]<a�:��].֊s���w�4+9�u7�v�L$�.��nO��>��
��DžR��\�O3�������F��k
�}A�W(�&e�V3������F���Iu�t$Vd�ض�G��w�T���&�|Тf����M�J;oܘ�l/P6��hh5HΖ�S�J>������0~#X�`�o���v^��V��n6Ϭ�
���׮�yj�Ix[<��>a��T�	k���a��S�Xܜ�UЈ�$R��j,�����`e���n�_���ċ;�RS�+��V�U<�u^}��`p�wo�D`k�*��#˟K$��:E[3#��Vv%Q�mRz��h{�¯�b���$���-�"���IG�+�hH�n�#v�¥cc4�w�������*��j��+��x�ȟ#F��Sc]Э��*��nf4N�Ŵh�;��y5��O޾}��ɑ�Ⱦ󏚻E=�6�C�׻��$ݽ��;49�A\^�R\�=����ނ˥�?s�d\�
fru,|N��s�j���'�%[�Z�B3|.\�g���CugU�����knr~m8��D���pR��?ɅQP�5�A�?��̮*�E5�጑���%aWg'�F���L�N���H�D��Q���Z�n�Y���<!W"T��7�q��X��r\����Qhn�5W�s���(J��2��ԛ�d|���ۘT� �˔@~��~���X��6���:]���6�D�����_h�1�'����;v�/��HKU��KNk 9#���jrrUU)��tEi�o���g��7$���������Μ�vm�[g{\�-��Z0�8���&�_lNWAZJ�".���komA��^�TĞ���N����M�\�^��.=��K6�5,-Moh3x����8c^�ϬDO�ō.�I*m��zdk�c�ʯ8��y�-)�[K��z���i��Z/�KrG�y����lcz�"��n���r��cS���]���1�L)�X;M�M�x4L{
��=II�m�TS~�8��h$�����T�(}�(�<oAЖ�fkOu�g\�%qbo��%��U���cj*Sƛ��u��JH�w�=m���2:	Br�̴���KY.MH3��������/%�.��H�5�Z�
�o~�/�5*��o�h1	����Q��Q6�↪�q�-󎢱)��]��D��|x]�@���S����iѕ��Yw�\��/7�jA�ՂEX�cnB.����{/�^��qyغo��$���Ѡ��oi#??1��{����0S�@i%��>���sm�|&�_��ذ�j�O�gnxh�o�4y�z_[�?I��8�yK--�j��X��T��ϏL?q������09�>w<e]��;�|��ɨ*��x�WJ��b�mņ���[��L�еk���9�HM�3�Z��FE �J]�n��4��+@�ӥ}f&.�"�U��GG�ha��L�P��ز��C�zp�X�f��t��@׫�w���5.P��ٚx�G1��)�u���?��''���m��z��&�;#�5�ʤ���W�赮�-�v,$N�~kj��r���Xk���-B�&�?�k�hS�=�̍ޒyZ�ҹ����I��Px�2�{8���8��f��Q��r�Q��}����
\�
V>�v˂c.��O63OO{3�
��t\�˺P�K:OD����d�2Kxy{r']q��%V�����Iփ�P�
r������eJRl��$G�q ��.���W�W_�.�x��]�L�c$��2r\uY[p����|7c��6��wP!p�L�	py���xen��/��/9�m��莽�.l)+.�.>���M���0�)p���\dy�Wc#�,�+jho���\M����B��^6k���WLgT�g���o����Η_���O�|Wz�pQYf͞��Z�$�Ou�����* ���S���[֍�w�
���������Ʒ���|5�?~u�g���%�Go��<�>Ў�+,�����tC!�ٸYٕ�m;j�^0�I����Rsc��4B�z��͇�F�p����=ߘ�j
_u�P�����{��Y�^���;of�FezQ�[>���/2���E��"H|�����ӧ�"���Z�&G"�1�l�˙��������[<1�e&�(�uA�u��{�b]�H�
�ֆ٥�c���d�ޜ�,�;�_>�9F����b;���hNg��.6^�Rȓě�fޓ�n^�>ވDf�i+��M�W�b���]�$�x�s�$��&d	\���f��Ru��v�#�4N�z-t.i1�<�F�����.Ʋ�C$�w3��d�wL!��e��q#�)�������(�Aao���8��@�7�-?�r���+�=�����V��`+8�@c^A(z�KK�H��Ȋ�ј���$�<��)����\���r\�$�Ѡ�e�~u5�W�s��sDDW���p5�mi @#��n#\,+�[`.2�%�ҥ��W#�b���C;V�h$��15l�v��<���?�eϖ�-��>��+��Z�A�C�}m��f�O~�࿮v�겅K�JU�������J������eKV>�ȵ3C�П��V,�����[Jk���%u��ͼ+
*�A��X�9�C���ł!rUDZ��1�5eYz�,5*�RR�c���b|�U��Ҳ5+�)�����nbҬn��k7g���#G�u���]�XMl�"���B�ЁbtT�1�tV� q��̀�蔠�i���e�^%�<w���"X��u�e���·c�����y)v�<m��?�i*E�[	p�,:�c^�v�b�˵��t�gꧬ��<`�:W�]�N��:�=�j!r\r��W��8ѩ���Q�(�.wĬ;M�
��ν��e).<��t�89�b-j\�e_�fp�$��[���e��l��ܧ���	����}���]֩�F���&\��ɲ��}�����85m��֨�hSJ�[����ݡ��rN��67�u�+P���y�D;k*�r� U���fx�x������9����dј=�2�="�d�
Pzݖ��)9K>�ZN�>�#�Ȱ 2�:�E�%^U[rCMZQM}���-���9�x>�k�͘ްb�?㡆���x�LOT�=s�Cmw��=��u�`^�gѵ%_#9��	�
����s�O*-�6�p�$�����P�R�
T��CA�(B\#�>TQF�v�2(�	4na–�qqZ�VW�Õ�:�8M����fM�8�ɢ^`�yT��:j�8=�l=���G�y��i"��G����[L��=zs�%2	B�"�xW+v󦵫��Ys�x�J{��kSP��U�e\
��~�u���È#�p�D�\��˼,{�9.�0\�Op}(����
��]�?Z<Kh��Q�(�
.j�ł@�Z�$s=.S�:�R�ή�QcdžS�y�2���z`v�kq��(�B�hF�I�q�.�f��!��t(44��]� �L�0#Ƒ�Xd�MV�sLC�������2��Z�"F��F����q�0p�����q��u����{\�i'A�����b��&
���F��ą�,*nl,�.�F��U�Յ�۔���^�W2����M��5m
�惨���hEUCNpiiC �OHK���L�������f�@Z�����>H�A�}X��T�g�N?��`F��Z��{ޓ�����_�<s����>����ѡkd�YV|j��H�I�C�S�6����H��b��Ez�&�B xŃ`�5V��
� ��]�LEY��p��L��e,#ד��\����ej��g��$��f��GGᵉ<�+�'8�Gg�3zS3ο���g��/ӛ�$��ŭ.�W,k?�;c�˶�QSc�Q��X|�I�*����u�Ѻ�b:I\�n�<ƛ#�x>�l��N�"]7��}�&.@����i��{����

33��-�4�^�/��3+<���f��o{N����Ϛ�2��K��G͑ ��RO
�gi.��4�d2(��p\�r\�@��ҭD
.�����"E�E*�Y
��B��k�q�|w�|����%�u�(��w�o`B_ХV0X�PT�*	���{<����2�L�ó��>�4ETr�y\��Es�7��rJ�|�m;��N��{��I���п��iy���9�դ�YZ,T	���;e�D̸���G�'�$�_?�Y��l�!�'��q#�|~ț�ݿ�nۇV�5��j`I����W��!�Ѓ�_:}硥�W�2�����ۯ=6�����a��}��3g�w��b:��Ra�lWI����c]}}q]��sg&��Ov��M� �*��6�\#�R%�ʳ!bW%ݻ�{G&�_]r�[����ê']�˪3�^LY%+(��M]
�#� �痏��xQm�J��<�$�0]!8L�W<�}~�}u��\�M���E�b���֟N�E�������ݸTr��d�w�5�k�)�h����
E�4d��#΢8>��Y>	4�pC-����w��׮����/h("��.+�����{I���\ʰϊ'�R.�d��d���ד�V(oG/x�ӻ�x).	3��B.A�u���C.P�K��,pi���}��T�w�����3�([1����s;J(������PGOWT�����	��U3N���_W�P1��MOԇ~x����s&��fQ��D9�椚b�)�����Ѩ����,���G�t�<���g�ӗ.��ޢ��_��aL�k�r���}:Z��n���r:x�����3}�.�6��|Y#VV][[XȚo!nY�;-O�2\#��/ܶ1�����W�&E�z='W{���6_��5C:��s��]ڏu���W��ڣ������R߆���/�s������`��WR	o�Ȋ�:(ha�^/�ƺt0\��%'ON��f\��=���,))u1�CK7~G9�"���"J�X�+8�*�y�z�G.[Kz���� UfBc��
�b�U)eU
N�u)Ig����!��.
.F:�I�{C��Ȍ1F��}[ꑧ������+jqe(J�����Hw�ؘe�,���v����n5K����W��G�w���PR#6x��m�v/{Lv9
#�i������#�ZO����/@.9;PKO����Ej���<у��K����'���K=�Ǚ����IJ��f�=���?�ʔdo{�\��L��(��\p�rhK��>��[�i�z�+͘;,㭨��q��S�U�d>d��5 �G�f��I���8S����`�r��Krێb��ɣ[����	�yi��#�p�Xkf��ě��.^��O��'?ymtd��ً���˨5���u\�H�j1_
�y��V��.͇̍��X���N6���d���~bG��d����V���SRt��N�rs��T��%����������ƭ#�o�tVݳ��-xV̽�n+]�>Y��d�����΍Eg�:01���%f�a#;x����X�U�$���}]�O�ƭ/d��4��'p��[SKz�ӳ�l	\"�x��j=�DW����3.�%��|}j��k��D���k�▪�)s�[kU~MOB<5�ũ�=�a3�.�K�7C�h%�]zu��}�va�y����:ū�9T�>2�[���[B�mŏN�8vf��z�{��q���"�E�5�B��ݽ�o]��|�Xآ�>�zЋaL�[�'���u����.�:�V<6Ek��/z�^)�
�QJ�TIȹfv���I��?��9�՚��eN��In��:0V�d�-Wrr=�VNs�'��'��S�;tuj�\n9Yzk]���<�34<0+��f�ksE������%��Ɯ"��$���"�E�eQ���o1�%�b̢���y7[ӣ����Z���e G7�E�O�q1{��,�a�и�
�	\�����F/;{6���wd�v��u���[z�����`�놚�K!��q���a}v��M�,
��e��͙5�,1�g�m��r��K�
�z���u&��:sV7�(�s�NFK�3�v�+J�]-;��O��e_߳M��K��Yr��#��?������ΜY��~	�>x��n��d�v�h���rkp�\�n�6�X1���<���J|hYGT��L�.o•Z`D�*�V���2�^����<7��Ԕ��
��	�*�;����b�p��]�/�@�J�Ag��/<���j�֭[�����\�/}��|�=�|��+�$���<|�[���<��G�n_���<K�j��$J��z/3p�7=�w�+����Wl��MM�Ҙ��8\
ǒ��i�D���n�`��FQI��S��Gn2�رHtp�W��?��	�xG<p����ޖ��jւ�-,��9�˜�ӭ�,�_
u��
-�՘��}O���������CM�]���ˀe�e/s<6�*T4�yB{�%v�G��}��s�%��G&���6#5E+L+�\�M���b�r��fީ�0I*П\xoD�^���ޚw=ۡި��޳g��}}�*��H��ޢ�`���By�]#d�{���i���=�7�_5�(c��6<)��x$���Y *$������{����80��{kZ�3���-�����H]6��r�]���,��3P<\Z:�v�9OC�P}g_�9j.�A0tƮ�7�d���_��p���k��t/����.���Nߺ�%�/>5Ew�h��\�t[�%�tDNv��4@��aܯ�i��Rȇf]$hQ��, *f��R�;j���=�bt�O�h�g_Yk�\O��f��Js��Y)���M����H|��?�����J��I�%��d�֟�Z;•�`��2�ȕs���(єL�>o��g�<-�[yY3$�xZf�Є�X,��ƺcX�G'���p\�B�y�����v�sr�;v��/�to~�����V	���9z0��V�R�X�0v.��Hi���2j���s���b�+ؑ��uҠ
�c��?"�U#9\؟
�L�A.�O��X+	gI�E%mmf ji�\�+**�0ׄ�K��1S�K�:0�
2
�,R�%�C�d��&eK�a��&������!Oow8;o���p�K�u�������~���AM䚻�x&��0;��q�k
6 @ɣ2�VMMg�zU)��d�T6�Q>J�2?����Sݩ�G�Y����!��v�2%|>F�sf�<�(��R�K��^<��a���׮]/�Y��te�xl�5�hgD-�ux�a��>�{���@��ӳ�V�s���p��.Q��c�ZL�u�^h�l�͎&��bm���U�\��t�&I��/K*�.�"2�W�U��hqh+.�Z���괰�Q�79�nN�U��P�P��yq�W.��w��]wk���@p��{�$U�h,����r��s�ɱ���q�z{+�•D����]�\�Nx�b�
^i��f�n�v�hNj�OL$**��~�پ�>D��&���1|�iRˋ�G4VlY.0��p�e�"Ud�Kwq+�=���W�v
�c��\pA���"M��`e������y{n�\�b$/����e�Η.�xe���r���愊�L,�-Ir���1Х��\���T���6�"�q��A��QKfQ�D�T:
f��%�"�t�e��/�)bl��֦��L�E�&~�ǀ��K��v�]�_��0��,p��q����
�{�OY�o��Aua�K��7m;TvaO
�����j����,�Dwg�1�k�ya�p�ڟ3��Y�!JfH/.Z��9����q_�&RfW�!8�Ȗ�߯:x��nH��k׷w�?�%W��0�Զ��G�m<|Po�l�Y�p��x��;w�"T��p��Ju~z�~ZG�R]c����ǩ���<2S0K[��������鼠~��SMօ�E��u������Uip�f1޳B���r��W�SzM�^-�ؒy9o1����K��w|�K\Q׉u�j��I˗D�}��)��p�\a<��XGɂ���Hy]H;ܭ��l\���y}��9\��Z#�!9[,��Ǻ2���Q�z���!
���96v�N\�\�.��"I���ω z�/F1̥��u��\G��^%��]�2&��+#�L_R:D���5ә��"ED�^H)f�*�;t����pٸKm����2�f�9�zl.�晼႑��~��z�|0G��E$�=ìWZ�\�vK���[Tt�Jf�YGY�䲱c�~˅��PTփ��-L2��jjʮ.�$?c�ҥ�˓�]:���A�%p�\�����i#K0�?<���z�_��l�Z�q��OC�0|��euYT(�-f�6u�߈;FS�C����N��V�1!6@��€?�3�4��N~2#a3J��<]�����]���7��!#��;��m~/�v��#1���W��>�J�Hj�{�p��]"׮���yr����h�P��q�)I���=��n�>�[�ry
���,}�Z2U�T�
��ԃ~mvEcEvzv����Pz����ǑqZޠ2
=�b�^7w�]�Hr�ZrS>���*XV$@<qL%�חHq=z�K��t��'�F�(�Eky&&���"}ME���Z�Z!���P��G��ɤP/���jIJ�+#�׵NjB�5"���&E�D��j�<�[�8�2��i���Y[���!�j�3ץc��я=�`��ώ�t�����~������[��=�eϻ%]��
9=�x��̄Ck�'l)��rKo%�%��;��ȹ��>e��T��^�1���\J��)��sW1
k5�<�E-+&̠�cu�+��ʤO���͇���m4�t\h��s��[���;���eE*~���{&��6�5I�׍4�f1v��m��F���7����_�v��N�F´����W�s�p?j�~�h��D[[U��t�FM
���V��M�˺"?��E\�����2���Ps(
6��$U�kU�t��vh���M�w��5$50�{����w�
��  �"���ç g`I���o�.y��(��=�Q��Q�#��G5ݑC<`�ւ��wG��>$�Dc���zқ�e��� pTz^hd�Q�l��C��_w��P]]�^���*�[���V�
�25ԏ����I�"F;x­Q��G�������6M7զŁM�P�S�
]��+t�a���#LM,�����c��x[�>�8}RS#x^�ɥ�^�9���V��D%�����w���V�g:�������tꧯ���x5�fR�	��E.lK3�r��Œ�@
s{%slN�ag�	���<39���r�3�\�\��GU0�>F�O17�h�������,90p9��1�a�EpZ�\n�N�C���+���
Z$N-9��(󸲲�fm�4)y=DtR\|L��RT]�촒��a�u��Iz�T�v��M�A񋝻w�ђ.W����D���>���/CE�y\�����2Y`l�����2.LMd��	˨g$SOH�@!�~�_��%~�-m��D�%MqK0y
WC��\"�NUC՝;H���G��$�� ��N��k��~�1��E,�[L3�.0���[����sB�yK:���p���Ň�p��(�=��J����8_��t${�ȴWWí4MШ f��<�Xcsy�$a�="Wm�f]����1fl8p����4�V�d��L�	������J�0�����2w�
��������c���1Dk?�9�u��>�?�CI˖1�H��nz�_��[Sh�P�HXZ� cY1c �&K��MTj�75��5�[��M�^���R�,K�,?�t����?���n6ݑW��hf�˶�d����{�Kq���)$��\6�eb��{��%�Z"L&����ל��{ԝ��D?�j&{}�7~�C�f'��� o�Å):	v/͕�-S^9Wе3�0�`��^��@\�F�r\YW[��粮�}
c��oBF��*�آ�l�����Β�!��v1���Pl016cnT�~Mp��z�WsY=#��Um��s��47�m�X,��1��	j����ҡ��{�kkERS�[��Gs�9i�x��1|������	��2 ؆�i�5}��3��}�)��_�v�����n��\-Kԋb\��z=~{�A'���[]����v-[h����bo��%K&�����(�K�����hǷ�P��􄌨H�b���PE3�v̈�^#���\�a!�'�|�*Z$
d�?�~7�)^̮k_��b����˯�wG�w���<�P�3"��.��[�ş�k�荍�;�S�]�}����:��V��}��gYϲ���#���2֯�J:n��[b�j�'cM���-�$�WS4֭|4TV��.�t�@�Ԛ+/��޶�»���<�l����;��܆6�
������F �ץ2s�\z�1�ϻ�s���N��s�㲰�p�P�nn���
=6�!j�#�į"�ǟ���i$��\ra����D�~kc.��;9C��	�L�@c栂CKoɔ��Hq��KP�bN�˄��mz��9��B�\jn/nv�K�;T.�+eUz(�N&�BB\��/�����������ﵪ\lݯq�̨uO�����5�g�e�j�Ν��6k��*i���)1a
E>8VEՍ�����\_ ӟCn���etj	�~pz��SɸX,VU5l\�q�/���'��n�]���f��ȹ�A���Xdq��]?(����NַX�Y��4�TP��m1��+)i��Ԓ�UL�P�u��.����B�O�f��EE��Ei������fG�Zi��~�L޺N����|o#����|�\.E�ii�կ��8���4��\zʷ�]�[�HΟ�[7��i�U�^N�
�mSmYZ��5/a�kOϲE����ٴ#|�%�%���B��7�&�#GN���n�!�>�X(;W9�iI�iu��í+j.�e�V��G�Ay"Q�dN�䨤���(����e�+��٬�B��PQ�#�c.Cx��F��N� f��bE��!@�G ѐ���2|2�����CEq(���q\l�
	\�>w�a��ڹ9.��$
�n�>@�� a�#m}��I#&0yX�A]���H�;��K$*�$3]��W�T^$���-E��P��=)���P��^�oޛI����L�]���=\s=��yʏG�{y\��������M(8<q5�o̝�o6YJg��i+�9D')��b���,b<�m:l���h��`���W�0p���/�t��'J�!�b�D��Ĺ�cѮbZ/��x��*�y��<|j�"�.�0�ݼ��$��-=8`�"�3�ƅX��1D��;”+VH���H���ى�D��|U�%rQ�/N9}��S\�5�e�^�c��l�D���$����t��\�0fa
���sH�P��F�u�m'�5
���d�֕�>�"�_��D��`^R�jw�`�&"��G/C�EFi�;U��<B�ֱ�����>�[j�Ō@98Hf�����}����ɗ�TѦM�A����:Ȯ��
���43y|������D�*h��%����u����E��E{����Gc0Ʌ�qk֝��Bo���/��\��-�-��pYt��������91#f/�Wؐ��sBE���t�C��v�)�t.kkgd�12��a-�Y��"DT����g/i�y?�h����>;��ǭ�]�WcY'���GN��oD�n
8��Hz���4��M\E������݉�r�����/�1ݢ!?�m|��@u���:,���
Q��������|{�NNE.me���-3��v���;��q���k�G9K�l~'kӳ�V-I�YT�h�Z����-�,Eo�0u����U/YLo�%Q�pvu�w����ѡR�R�h�A�����H�e�:I�O|�-�
ѩ�p�N���D��zXˋ�r\�/n��u‚EX���:��=�9q�9�3Ek���h��$��l	1�@�-�_�I.^�^��$��4�`0�Lr7!����E�ht���i�`v�ل����[$Φ�
tj��S�d�Z]n��f�r�$`s"j5@�PF<�>Q�yE�q�d��+3f<J���9z��y�"�{�S�#���<-�K��u���ͧ��N�yן*R�\��$��2��meQf=�����y��!f��"W�+‚B�YNT�\_+�0�B���.���DB�@ƃ<�'�6�vD?��p�
[�uz%ޝ��C8R��\�TFlW��'/]�$fmV���Ev~�ŋ��ܟYP�J~x�{U�׆s:�t��8�x��L[酲�����tm������΍��
�'���o��p:���3=>�¥�h�P����v�vB+�K���8�%�o
�)����`��K��ݴ���+ʛG�8\�-"����g��%�߂\�mů�5)I��>�w���̧����F�CT�MDZʚ<��{k9��
A�^F��!2�L]GG���;�5��Y/P<�\�/��4Ml�K��1�j�GvX�ho`����}���8S�|"#�M}�Q�S�D�jy5�������7֕,�I��(�k"�KC1�F'~���l�Q�*&1֥����}���O��oZ��us��O�t�)[������/����w9�Z��H|�\�����̉1�IVg�\	l�ӽ=1`�����c��r��Ոb���x��*'����S�k�FP��>��g/O��̭v2\�ϳV\��Hb
$�B`k=���&���z0�|��]�"E�C�r��	q�s����!ň~?�MFdCv^�*&��KY�U\SS�e-�.D;;�T*�o����y��Ԉ���_1��M����>�_�W�� ��W�2�Db)��j�P.9��,�Yܠ��Y�_1��M{N���(@2����-L���O�n�!��;�6�qr�E�t��7�S������t�b��…�
.�4�KR�TE��V��,{����lO��`�.^p�]x]�1q�4�qM^JZyf#N���U�~�ϫ�����Wk���y�_�vܤ\$B��j�i4��mJo�⣎~��6@�K�]�B�V�'v�ѱ���9�R'S'7?A|�Q2?u(�6�6��[��h �lT����mN5���^�
M�a�CZH4281���?�-ܴ�D���1��j�f��Ң�I�x<��e}/@�g|�.�.lV�ی#)�1��͔=z��˛,���r�b�$����A<^V���&��WB��s"FC��ڽ�S�s���cE�c��\Klr��b���A'���-3P09VO4���EAg)�\'V�?Xf�g�PQ���h�Z[TA��_VSޠ�8�͛YV����E�9�}���*�ǭ�]j�+ǵ�?���_k"��	��WƑ��g�t���r����*�x�������$��~�`	��sW���
�D��wh	-ڪX\��Vi�m�����YZZjY�[[nf]�2�E,��)��`$���z?眞{o�ˏ��ϗ�r���k��y��G�p���'R�ݻe?��k�
a�S'��	�H�w��a0$�����4�VC9ZB������е���)ENj@)&��ǃ�C�e�˩Z���%6,��OW,m��Z=3�����e��T�i��낈U�r���jD�����Ϫ�CKӋW��T��Rk�nC����	���|����W�_7���_���=m[�5��<�W��}��\��{��$=PR2�VU=���6 p��-���(L���k�9�&�0aF:lx4��e"���\���}���S�;q:ͤ��f3Iz9]���ǖ��F>_����B?r�q�c{)��%r��=�s�!W�����<���rt�(ļ.��wQ"3.?i�Si�Q�Z����x	0'�&��1x9�J˹�r<�0#Z�K&��o�ۼ�d
MQ,=�@�˜)C��ٺj(�v�婶�	�8��u���eӠ�SÝ�yLR��/RCܖabD׭=�7\ j���_�}�^͖�u�w[�+^�M˝�V�����kO}�So���0M͆��C��o}�k��x��o�N�)�D��t���X��-�~�B�^PաK{�_�Lj�W]^ި�����39�34�F�Ƃ�p�����l=�(k�@���lٹ���\��o.+�\�K�!��Z����[

�#U�V��&�E�H-�Kx�V@������e��uY��a�_��l#�j`@`iY����l�������О��ߪ�
��ԪƮe��5T�n��IA�TV�����K�
�=R50�v�--\aƭ��a+*�d	�L��t�@�Ƅ�X�\�e����+�Cĉ�o�����!f	x��W붟��ߕ��Nz���ol�1\�Q5/l9�X�mP�tq|,<.ɸdm^�Ѐ-���)�Kσr>�O=䂙�!���A�,�B�YWT�׫����\E���BK�{p����<�ar��]�=�JKl���,�%'�p�����I�-�J�q!ߊ��'$꯯hlCPsz�bM=P<.M�"Q�:}�ج�cY�s��U4&ܞ��"�{\g����矾y��G�^?P��WT�����?���~�k�V6mfK��v�����������A���nߡ`�^GZ7U(�)y���wZ��u7[hZy�.����:Cl8E3o��_G0Z���a���nʬ�|��-yw�t�7)*���-�T�t�L�}M�F�auyy�h% mՀ��eoq�+7h��v�ÿb~1:]F��+�r�
��T��y��2Ѱ�����o~��!��V���.��XW���8��[教���T��~cJ����������(�tw����[+�/M;��P�e�AiO\(nA��cm�i�����0��Cݝ}[���#ŃLK�g�n�l�����!1fI��W�$!xN2"�;�֨�r�\~v�.�ҵ)Ʋծ F	�^~�g
����5�B5�e��/6��qz��+Ԝ��m|A�yK��A�8HJJ	FF��r��
:wOfÄ%�̟����@��
���q=�
l��_����b�H;P��	�2=ZhDc���څ���	O,�v�8���^~�r��u���9��3�󙨺����s6�GJi��.�~��N<E\�ꝿNn�V1��՛V��
+ubg��F=.�.�<�t�pм(�:��
��A�.v��{eP)�Fd�ug4�WJU��|ׂ?Ĉ""�%����m;����W����K޳rǦ;(���Uɚ1�ˠ�i���ĉ�_�z552ȅ6�ȑƲ�{�n���r������h����G������DY��ybϸ�y\l߰:[ezp�I�̣F�fi�P�R
��q�J��#�SS>����m�#+���[�W��Օ��b[.�5�6-�ŭ箜a�WH�����'��%I3��R�K5#~x�	��SrɑF��H�@�X|+k�ˈy��\a^�.�r�<f�d4N��=�
��AɃj��Cx=jJ}�
〲/��MY�^�?�W�<�Ϧ��#Y��{T\�O▅��L{ʌ{v��A,'���r�ZH�r�Rz^�[��pɤ��b�J �.�@��N�uhh`�"-�M
vxW�]��KؙӬ�\���$�?丆O^>�WO|\�t>Ы;�8ݭ���Z�[�A��ӯсg窮�5�­�0�g騰�e�8�q�-=ف�t�,+�@�)W#3tuii�Ytt�Tz蛠L�Ě���f8:
�t��2[��$����jqA"��@�
�Ļ�F�d��'�Z�V�^�m�ɇ��(�����I�K����嶎J�N��XMu�ao��_P�#���c�5���1eϩ��4����z���{f�Z�Oe1":����mTe�����%9�*�h�pe���.�Г�BgJ���Uӈ�xQ[Nu�n��la��v^�RY-�馩u�V��(#�A�dt��ue��7��	���-�h���u�'.V�װLqC\j�.��\0���n}�,z\b�h�c�Wy\�͙���9�l��l*S�r�B�?�Xa�44:q%V�G��za
?ʴv�'�bj����gM�Ffp����pQ���z@�BĊ�Qt)�Xy��9<�l8e@�3-n2&�q��3�S���"�nO�i�W@==��˗���>͖9G��`�3�_���_x�ﯕ?�*V󞧞��k��Da�����!�������e��aZ~�K�1�>Mu���,cU���4�z�Ly9��hG�Y=�ע���g�h=>�7.�DW��ѩOpq`\���-}(�I�s�+�,p������'A�n����?�&�<J��)���R��j��=j5�ُ5V��S�B�"������HU��c�W���Q�j(xU�1H�����^�ٺG�:�
�ܿ_��v�eVY2Pm�j�R��ȡ��?W�J�^�I^�^���6�yq�����
���$I�)�5�8R��e������:=1t�{��B�V���y���c���������sQ����23E�Ƞq#�J������q�r��9E�.=��B\�d؄"?g��.̒�eNV$W�qf��>��J1���`v�\�)W%^\N��,��P�g.���H#��CBI;.�*�ws>�d_Z�Fr����T�h0�q�<{X+�� R$`��J�AB��{ ��ٱ��^��/
��.�U���O�����VVm+��Z��cc'`��s{�_�<|��s����O��o�5���l�x��Q6�T���SS�=�'�:��vMX�R�lt�((<:�1i[:=�1�1I�f:-��>
jㅝ=3��M��Ǖ��qaQ��.5#71�N��W"����%�]���L���l�}eI�p.+����FX�S%�H�+ŕj9ʺ�m�D;�
��JS/y]G�*�]2��}G�}Hؓm��BMq���[q�>�\��nyra��D�ХuӘ9^"78�I�����
��@�><<?�|�_{Y��p��͞lbM��b����@y���"
\�U�1�3p���Zx�+#��w2�K�
"�Q�
+z��u��w,����b��7�ۡ�������2,�Bl��V�p��d�
=�>&�FZ����EZ�g�둏\
�dU��k!�!��2�[�3��6��������Q�f�:�t<q�]Ӌ'�>D�^kU�&�vI;OO �i=u~���9�۴�O��[W@E���^�Z'ѧ�Z��g"��
Ō_ܞcfb��k�����K���kR,��ܦ�3SC��`Zm�]ͤ�'����؛��\���z�e��l��[�#
'�u6�..3r�6�A�Ę�p`��V��^�G�;V��Ϙ��m��Hї�fh��ϑ�DuĨ"W��������M�)�E:�;�k/�T�Jt�����+`� zI�ǎ��ʑ���'?�I.rvi��A\�J������$R�hM�m�O��`�X���k�<��ff�~4l1���H�*�
K�M3��\��>k����\��ꃹP��:<�uR+��/lg�"3�Olf-����EL��h0�oy9��2��UG(z��ojqaVֆg�ˋ��CoD˥�"�<,���P��+[��;�JzO�j��pײ�����[r��
�:�i����K�#��S Iu��Ԗ6�U�k5��G�nK"�C�[e�L���b��ڹN1�XNۈz�t�޵���Nt�mԸ%���u����\�m]s>V���^|Q�j�m�sru 	��0�s0�����L&���hI�$`���sz�
��C����K�A��'yu��%�2W�g>��I�i`e�U*���F'�:yr�G�ukG^.��Q0@�a���:���V��Ү;Y��|���EJ�]3]kVU�Q	��	<	�S�ե���	վ�'u����D���T}v�������0h�\����%Y��z 5GCu߰u��O~��ع?���on����JI9���[2�-R��Ƭn\-��C��D��ɂ�v�7�e�7���ٓ[߾�G�]mWoLL܀y|�jw˛��В����(�.�� ��!���f\����Q7{5��]4٪c�eD�S(z��q��'܋���sr\����
�q2g,�+��#��jE�Nԓ�\�sF:���`1��>e9*�"8$�sI*�(����j�*hyoJ�{����g��;�o��=�2{�b:.g\�x��"-��%�?�BE�[2��x\�g��5;?fo�&?��$��D��X;WW+Yq#g!d9^�MR��ֺw �v�n�!c4����x�wxM�>�0�.E�Ŕ����c��)̿R�	P.�ρ���($�=��$�;Y����Z��J��d*�<�\�c�]
�
��f�W�mc�OUCui3��z�_)J�tќ,����b"�j<_T���5�D]�[��;��*AmUI���ӯ�u������W��.�`1�������N�i�(�
.{n�{�*Ӄ�~��>L^�r�x��_��_�:��G�v�,V�Æ?��`��0����ی�ey�.u�ĺ�>�MC�.}�E@��Ҷs,�F1��%%D��+���"��O@E�
�4��k,���������o�KbU����hEng�;]�A��Z��į2B&��"��SL�
�$����b�8��崌Q��n'K�c����r!0�:vr� ?�RQ�<����'/��>z\�umU�r�*��Eq�Ug1���*���7(xT�4���2�p�%�ŬN$���4���*)]񔝷��&
����S=����v�u�<�l�"8�.]�qi�N�4��m����ӊ��fl!u��Z7>ӕ_T�/�X�]���W�`�ʀ�XU*�j]?�I65T%������a?yi��QI/p��-�
��	$����7
��~��+�퉲�2帢˥4W�F���U�F4�fWW�'�^T�zv��N1�x�} 
�"���Y��{Iܺ�]�
�{�]#d�|��Z:� K�Q+9.Yjywvc�IV��S�,�(D����6L�
˳�"g�܊
k��`d�3lA[�&��w��2S�t�QU7����2��D���02�[�[���W�h�q�7��/x
�d�wi����E�h��b�\H��1�^�R� +�|�U�c\����<I�	��<��Y~����ku��w�,(<DO�f�!*��
e����<W$��}R�*y_D��v�ܜ[��1����RY��%��cE%��ZuշD���9��o�q���Y
�<!ڎq�
tc4��B\_@��be�J+Q����{�7�إ�<�_$'�d�ay��ΈH�E��﩮J��)�hR���U��i$�0��
�
��YQ�(_O��(I���4�پ����t�@��l!�e���VT�����ǘ
`��kv�/k�b�]Ee'k��?=Y�%-���!����y\�����X���]�{d�5q�N�4]�!
%R?�+�s+\6��'���)��h�"�B*
\x~�\�kcVV��n(h=��Y��-��z��+��;Kr���p�`�gL�ʳ�B�f�2wLfi}Lo0��8`F7���n9.!��ʛ���#u�bh}Mԑ���2��:l���u�bCݜ_��m�s�8��V9.|-b���ϵ*?/ش���Isu�=�s�!�V3s�wf0���?8t�P3�%:�ܤ��s���L|Ѡ8wV�.c �DF
m|�����Y�	n��h�����@Ņ�;��r>[�U�������l���}#%L'zo˩�xTp_9���V��kyS�z�pɵh�-��RF$KKK��
�����1"ņ��"$˓)�2T�tհ,�/��'�-��eeH��R��X�h�A�J�aj�޼�Yxge?�*Ӵ����˕c%�Et��9",e{X�y8��5U�z(��,c!$	��oʲ�,���~�Nʸ#��}f�ie��0Cz۪ѸG9W(!�����A��r�
b�P#�1#�\9��4��A���a�����5]1��	��q
m9���'��q	\_
!����Y:2Ilq��<�x�L���AN�/~ɭ��x��J�?`�"�2]f.p�ܵ(���Y��0w��5����B�?���-s=�۹��"�r=�Z\-����Y-V7W��K��-l�3�nA!O�K��05C$�6�F�^|ϙ�]�)C�fQ'��~J��O|7k��DD�%W�ۣ�&�wj�E��T�E��+0f�]6�ы��_���o��{�Y��s�ң�]SV^�b�Š�<Iƫ�����&S��*P�B.C��-���{r��[N˵Ϫ�%���J��U�c]�<�f�;/6�u�H�!��fE.$"ؤw��nN4q�|KeQ��]�É�Q�v^�Q�
_�l�H6������W��'�`��\�u�Ƿw_��	�B�
�Y�UqY��(�w�c�h���ȯ�\�LCĥy�X�е��3�pD_�[,n��i��|4h�-�U|�i�]TgN\�~�s��	�x����#_�).�
rEn	\��`�$����CJ� ��*oKQ��}�˚
Qn�����@-pp�?յ	�Z<��p�s�ۤd�qK7�<Wguh`�� N�|,aH�[��"P~��f��'.�,t��&&��.c{��8A%o�;w06&��;gp}+pU�vqa��I�%T����X���b��Ta���#�+��v���Zh�(n�ߕH�G���REC�d�5�H~y��Y��Ѕ(��1��r8EC�ML��b~l���c*MIE֑���&�>�!�"��@.�kd�������E����?bli���rh�fz"�,�a�s^]'=D�l�I�N�O��a�,�{_Ժ,�$kJ��}b	/3��]n�Ѹ� u�`��^�U$Q���`�N��r�|l�eF�ꍱ�9�2�Xp���i���Ð�2���I{�a�[������y�#�hapk��qɸ�G1�<��;pK�Ţ%誨��Q�M8>�m��sj��+���"8T0g
�Z<//n��=�<]�37X;gRG�s���n��#y0jpq�9#x�k�3`��4�ȣV��k�a+�05�I�`K��.�G2W�21N)���y[��Ԓ��"C��x�k��֊�o{�q5k�Zs�}��ŵc�G���[ۈ|_��O��m��mz�c��T%k��@��|�A��:vqX��n��Į���E��w�U۬)YZpw�fԙ��<�"�\՚�Ė[*�B@�':�ӭ�`��*�C�D��\o������c?sfs�2�l���*�4�Q�E��ۑӃ-��vev	����.;p��G�ח\]z\�Pc5*�{�|j6t�[�#%G������чG�B���E��&�SwH����%Vq�5a�sK��Y<�(Q0�|���%pq���m�X8��ā�j:S��W�b�nW�i�C���9`��E�su?��
0c����6c�S<{7k������3h�՜$�s�ԹG^����+L
ֹ�=���PfT�>��y��m����	�tN�zࠂF�V����
c�L(H#>5hq�$n	\��ό[lXU�zǖ�╸e+e�]�QuU�%S�*�L$��֔#�J&h̘��cr5TQB���Q_Vk��N�]c��w5�9�ؾcZ��+�8���tӲ��rZ�+7��&te%�F�wW�l�(.	�"�nI�JVj"�_���t���F�<o��4��3�7ӵ����q+p�I��+�+�;�ǾJ�nm�׌X]/Yz>��_�\����٘Y�>�+�=�:n�tA�].C��d�o�9tElyVq̲�{lq�s�t�d���`�s�\^��Q#�K�yg�1Kvq�\�."Ej�[�l/u}éa�`�����xR�D=.��j�p��@p"��<�e�4u��Sg>�J,�6�H���f�/�&�����<�(;���'�Dr�~iN����O� �8�����==g)����GC�Z��U��P�dޘHD�>9�6\F3/fu��L!b�m���"h�:��k�v�jJl�<���K�L#�\�ꢵF�5�f�Q�"`�=���N�~Am���+�!�Z1#���D٦�M����i�L�;���2�+�t(�UYҏ��UG���-�Z*0az��5m���fr^�H�2].Ly���Y�ih
f���'$�أ�J��	 �0��\1C���]V������n'�R�V�����!f��!��0���P~!�+{�1�As����Í��rW�?�Y,	b��c�'32��,�MDڈ�8]�z��@�W�͇0Q�qJ騄��d�Jr�%祆p�:,V��99|���@�i�kQ'�ۓY�ֿ��H^A���V����A0�S�,#dӋ���Gj��iœ�J�f����k��-Xk�b���vz�њ
rp���2���ϖ�B;qyl�}D
��Pd������U��~�"Ũ�2J˖ڎٿ}*9�q�3�KC�e��y]��j� sS����Dq9a"��Բ?e���K��F�ur�S�t���TZ����79`T�:ut߱�d����@�e���(�:�%�<.ϨÀk�bG�~c��>�vwE)O7Mt�Įlqo�5�ܺ���sf����@���9z���&G�[
�x�x���R�U3�r;�H�c���4��
�`ё��!�\!`��ܢ��EG:�j��m&�D�a�o9jj�E�z��ϹY�o�A�Bą0�,ף�>��م�{�W���
�J�Rj>:\�XrK&R�WjRF?�.;p�\0��)j���fR�עYE�۷vsnv>z\����:(���<� ��z�h�%�1)�#x��E~h�<�Z7�lz���w�H`���B��3A�פ�G!��9�;��;@��{1	�S��$e�
�U�|ߢ�����Ϩ����D?�@-�z�g�<�PK�\+w����Ԉp�bf�ċ�_U]��#U�����˚��+�hm���D�(YVXU%�*�x�tR,(d��o�p��3S����s��-��p"qw�>
�B.,�+j.c��Õ%w�YP�_L]#�6��h�[B��,����_�j<\�-L��h�"M��^�����x��gf`�����>�A�i?c�
�}�i3{`�	�
�b��Ug{;\��\�<�@B��`�$�Z��7Ư�����|�q�Z���Ð���?�$���3����
,Sq9n-�}��h�SJGc��{�a���%�Sa.L*���蛝)L4���?�B�̊ziUs=��X~�X=.˂AY����ssr�D.4�ȼ�$=�P�2����ką��8���Xe)1�H�g�	�Tk��l	#QH�"�:���->��A��S����x�Mf/Zr>�ts~�_�N4��"۴f�q�;bز�.'�P�����;��r�XfK�Q�9QZ\ߴ�r$Q\�m)N�&��T��]��a�Pizr[VvF���O�I�h._�ru��^�`���(�p�x�WI��S r����K�gą�R�]�����X��.���/�[X���}������Z��Lnm��f6���C��rEW����Z^��g-4�%��0)
������I��=`��e~�o���;����Ȇ�sr�X�3+�����]��}/s�qQ-Ĝ���^��%\\���'��G���K[FF?���>���a�y\���ƫ/l��X��A7���_��q`L42�x�	pC��{\`�6^c��C(�U#�� x�Ma��'� �e���DN�5G�K����l�/妒f$��� D\=��a�ѥ��ӛ�•�]=Ә���i�w� bQ����!�����՘��>�*W/[1�o�Hr���Zy�Q�BŘ��>r�5k��ɝ%[���s��*Z[��ʘmL�"���9y�\��e���4m�/\Q��!���z�OT4C8�ޔ(��bAeC�@��Qi�b��!I']�Lt[�����Z���t��%pK�,��nݷ��"�w=ܢ"�ƍ3��Fg��^@T`�՝��g��.I�O��;�a������O7��k���<��k�“�H1�+#	�����d1��53�\��<�,8�S����Y�x�)$�A/�K�
�׍b!���	a�	r�|}����Q��
t�a���Y���g�'X�X��<�S�����'uq��_ϝ��:�Oe�x9I�j}j����|^�^^�A���p�Td�rX����*a�EaL��>9p���qK-����UZ�<�2��iI���D~�T���^��[��	�~ص�ژ�I��|��h� P�q�*��*~���v�!��3�up
c�X���)4XԔБ%�T�h��6��Y+���X4Q��̕�>a�d��<0n�j�bբBE�kiec��K$�Ƣ"������U}ߕ�!�>�^)�/ݲ���S4֕�H�8�itM��U�+/�3���h�\h�vo\08�4���1{�#
�Z�}�2���O��[FV�*�d��Xf���"�}��BL��]��q���0�r�ق�,di�R�"^��7�f��e��}�s���<-��Gy���w��#�a����끲�^�V�d?go������
��]�1��Z�lS�(�f���L-��<��z*�ח4���Z�q��s�Y+~r��L�e���Z����Z�����)��ؓ�����뙺:���J)��3�0�kp��[{�'�s�u���K�5W�����+ǀ+�8�� 龀�%$�<��Ԛ#�o��$�{gy�	�VN'�*f�,r!��\j[�i�fgdJ�/���ew
Q2���
�S5��_Y��bi�EEe�;�6n)e
O{*��~�3��ˢ�/^i�%�u�}���lx��@�ڔ��bQb�n+�QG�vJO�3�QY��d��������߳l�+*�'\�m��s���}�t6n.�c/=��?Y��^آ���3:��a�U�M�lW����e�Ik�=N����4y��=��y������m����E����hȂBY�w9�d���r\x��g��!�n3�DZś�r�)i�?��/~rw���E(�zti�w&�	��zC�E�r�C0�#r����]�ÉKn8��k���g]�T� ����T���Fqb=�"T�!�m�V��k�!�9[��1}�P�PsxxK0��3��=S�
��9;8���A�
��B��Z��'�|RWs����?.]?��1�U�\�znlxhK��p�zF�dZb�
.�F[��bYI�4]��u�i!hԿ:�*���%�߶�S
c�\��֮B�UFOC*l�	�ʶ$���ڛ��nYIe��O�k��F�%�oQ9�\����%����\tv\l����D��tL�0m�5WцyK�*�<Q��=��|6���	�-��f�5�
���yv���f�Y��q7� 0����ˆ���_��-�o扱��կ���	U���$z����-�*���h\:���(*�A_rd��/9���L����EPِCԄ-
�"��	���`r��l�ތ�c�_��خcX���E�����q"��U�w��uv��R��2���TT�L�<~\��n��\��O�*�PVAK)��#��KH$��_�>r�Х��3�S$ͥ0PA��%�J�1����gS��gd{Q�xlڙ�� ڲ����$�m��dJ��拜��pyn���*�B��,�"���5�~�yDX׷
�}厷7��:��π��Z[�$��ˋ-�e��6r����\1j�.�p�_ԝkk\U��7x�[�"^c�z���
jC��o Z5�/Q��$1Z�X1�2Ѵ%1ӱ:�h&A�d:#�شb��Z�@��ϻ�޳g&���s�g�s����Z묽���]���;���`�j�B�KR봰%+�dK����B�ä؊Y���Zc��D�ݥ���q߭��Up�-B>5�aw��%�DJ��
�Md`T��
�~4x�����?�n��O?�}໏kj�z�>-"���)p1�+vڈ�-7"Xby�eV��|����C�,v}���i��R��
�Y��W%��Rx��q����hU1Q:���`r��VV�,k>`Kdr��\D0cך�MŽJ��byCW�^��2�]}sU�q+8s��,�do'��ܩ/~�m��hw�r\=�z_��Lb!���{��������	�+��
ڼ�����@��3��W�z,�$�p�Yfiq������j��R/���ٶ*�U5d�$����*�ڜ�%5+�3��,16;�4/��j������˯�dx��-���{�l뚋���\u�-7^{����x�3��?گ�c�i��)�Y�E����H'SV��JwN���GE����8;J�&Xz���D.��gl���,I�;��Ͻ��[��#���%`�;o�Ǔ�hx1��XS0�|#0#�o�qM�GǶ~d/A�ڏ;D��C�}��Yc�ZKU�P�
n�dtKw���}-�W��T������-5+��t#LpE)58�>~�= ��)�"Ʊ��U	'�Rr�Bq��Ҹ�����HP
Y���{K˭��{}�KS��Vi#k�AKXj:cm�Gn�:�k�g��WEJ#:sonJ��jo�7��w�R{�|`�y|�Jfp�9�A�k@f��| fy���`�����V�7�%��k�������pt*�5��j�D��M��O����?)*�Ӭ��������X���#�UcX�����g`��[�<�[���i�:z�ܵ��\���֝o�"JN�/k��(�t���̮�f�������`�ҁ����t�Yp������pqHp�<�_�EF�~G"�}`��������bX��[hJ�El:��{���8��%���\��-�k�h� zo��@�6mWP�fm���?�ߏ��v���	H���r��L҃v��VIbY0�~�vCX0���s�Ʌĺ@.����4�&�qU�K���l�(����n�cs��H/�������]�<�Z���{�L��?�-]���2Y�kU�QX�3×�:.ȅ>{���+���_�_󸦧�lnצ-t����z�GR0��
=`��A��Ug[.?`�m	�BX{q
�}�s��˗�1@J%����,.�d�;�ad!�ᑬ%,�`�D�@e1~<D�e�Z�h/-m��m����-%C�O�9�$.������Qp�B-߬>��V(i������t��j��7���֍w�9e�¤=3�LȾ��|p814��sXs"�G�?e�4#=���ŭS��VS	(�l����qܿ|ʴ(�u�U�@-6��ZL:l�_�rw㭍�Ls����sb`�F��Wb�J�:4���VA�Z��������F��FI9�F���]�(�/XUм���{B�g>���>.�GN�
䊾�~پ<�^��)���rz�TZ�z�b�u�eӃ��=c�m>��Z��S3��\
}E���>)�8zq���b\Ȓ��2�גN�+�"׿f�/,������0k�p�kš�ME�8��� ���V!�_�b��m.bsp�����h��-���7K�.YK���f��+��
�+���mu�N��Y�3�K*,�N�A@�i׸�]�-��0ٖ��7H��:E�:#x�/�r�Q���Z�b7��-��~���Q��۹�>d˚�Ta~������;@��-��?19��N\n]�Yډ�'�s��O�ʛn�iSB��h�s��[�n����CR/g�N\�W�Wf�BrɌh&��
_��3��-�����NJ��.z�����,v�OV�1�D���|]�����
	���5ۏ
�Pk�^Q�ħ��g��I�סc�A/�>
��Âʭ�R3Y�M@�E���D��_�t��>��Ř��Ͼ�����qy��Jl�@��̊fW��
w��"�5@6��e
�y�+]���z.�G,��:a{)�e�y[Z�
斳���̎��{�p��Y,v�1yF�X�\(&�@(t�WE�4G׍6��k`VYV�xata�iEЬN���W]z>*��=��d�@�3��Ur>Tb3�1ˣ0���j����+�O���wΒ�S�d�
��˂Й
��fe֚��U�+i'qbÄcWöu�nk={y6���gq�_�^�t�8[xS��̸a�E�-ρ+�&a~�b�D�\[CW���o(5L%y���L���}�����U#�[�8��YL�(QkP�/oqqN.�oN��p�K�"_o���Eg!��L
Z���\�-��9 ��N������{��6m���R�\~g��\Wv�?���1o|[b1�8\����i�?�D��]Ñ(���#mX.=���贌�u���ؑǒW$�=�領@��e�{�Jr7޵J�a�OI!K^�@.�g��:/�{�K����`���B�^
����|U����5=�5Rl�A��|.9=Y�NR���f@�F!��B>�K˪-�p��ԩ�"��W�v6�
��s���x� aO�~���纺0��N���y�]�D��2�ZZ��2����LQ��[�p�8$q�}N+��-mA��u�-Mj��?*z�q=?w9�Ø[s�ܢ�WJ]"�-}�,��M쒻�;��5���sC3lfr��y�*�֤���]��=��ā�k�^�"h��M\��"h��!.��h��
�2'�X����Z��nj�ᄏ���hl��؀-�-��D/�*��Z���y>o�����Km���n��c�=`a��I`w� �^���9�E���
Fy`Eů��� �`�$ك�n��\���n!���J�U���W}�-�Ɓ�`qE�-����b��.W��r�|���,�+x���M������|y�`�����0Ѫ�C��+�W��{����t�05X(C�oN$wN�\�s�ົ�2c�v-@dM��̃����-ƶ~>�ث�*W���)@;�!
P�G/��w����j�X�=s����W��3��]v+#���2h�lS+ ���Њ�Uf�$.���� ���:`$Z��K�����}u�n�J����f��=�K���@�ڂ)�~����ś[h��h�274��x_ϑ�p;p��0�3vևk����t�:��]��2"!���.6dag̛��iXi�����75=uwSKSS�;-���A�m��D��4��h�p�3}>���P�Ը�F��_&�;�⋁����+��F#(?�Q�>�j�3�UM/ge�D�eT�Lʎ��z�KPG�>�ž�*\E㕎&����_���U�H\Q>��=�B�f�"a-*���+����a��T�~�V���
_�#C�
҇G�K�����Uu~�$r-oq��ϊ�]K-�/����}�]���LN)LO���>6���|�lt�&��Z�U�x�?Q�U�@[%d{��g�J;%0��Ӝ�;d���]�<*��J]�VT��H�4u��C�y��/��]���˺����ݺ89�\�J��ݻ�Y��nm�Z]0�֭�3��m��wd�[�\��q���x��/��N	'㋙�х�~�]	4\?��z� �Ox||0��^�Y]�]�
\�=➃�-�IET�WW��[Q�k�2e��SI<E���G��P+�wM���J	!*��nZ����/4�v�ߋ���U�W��噅����(l���}$T�V]��}��S��u�$'�S�ȿ2����iМF��
Pr����1��=2Eق�Ŏ��htrr�bcN��y�%R�V��>�UW����[)-4y�P>8�����CZO����ő�\�\8v���a.�,11q��!ε�Ul�e�o�����
y�:s~���X�Wk� ӗmZ\8�}bdvǟSG���~�h���B�T��JJm��WH�����}�t����!�"��ܵ�]�8���e��砎CU� e�blu7k�ail2cR���V8f�tIp��N��X�#k-���x����lຠ��6���k�h��<�5kVw�b��T�s�mk�l�#��Iw|�4=*��L�s��O�w}?��2�[�	
D��@������� �a�ƈ��};?"/�s鰰E���/���*F�G�^X̊\�����Y�H�L_��[��y�	A-��n��_��Qp� ��c3�6N�9p��+��0A�DT�QS����ȝRf�N�@ޘ"h�1��Fv�)/|ƺ��'*�G9��P�+�J\e*�D-Wբk.��
�
�2�k	�~�
lX)�TF(Ö�{����a)���T���\e-�\n<��J�z���(��ڧD(�-��h���q��@���e�"���E��Z�����z����3�e��dn�'��M�M�+��,�e��Fv���_v��0�:�Qbp2�á���m��I��Ƹ�e;!��@,~V12�I?6��C�)'�(�����F?P����O����9�y��p����X���B@���vtܲ���;�P1�@h>fF(sjn��8rp|����J�Xdz%A���j���@
�(ښ��L°�?`(9	v�t�UW��ua�<������E9�?�8Լ\����O��;�,,�.V5u4��O[|�e�B,�@s�@ز�delN�)l'����h*E`�3P���Њ�Rl����r���0ʪjari��Rg�6W�qnYݜ�f����U	�b�pV���d�5-�*Jy�+�[W�����ѫ�ET6��Q��QĖ��˞�dy�5�'{"d�J�G����)�r�R�k%U,�����R=-�2j����P�ڙ������/rC��B�m/���]�Bn�{$�֓��ӿ�ܸ�}m�i`�@�����u�;#c��.€�����̓�E�.r��'��b�o~~T"�����y��|�"Xi<�U����U\��3��\�^k}�Y���0��:z�Utn�i��rj�֯���Z�G�w�j�k]0����S-�I��M,L1�&�EV���%���_�A����LA����������V�B]�_y�UW}�<��g������GO�O.
\-���[}kN����_�\���-:�h�a��̭.�e�
+�Pq!�1�|ǧ��p�9�,�fn�u�px	!�:d�^��79�Xde�
�T�*M�r��\����B���������D�V�C�<��M��el�T[ńT<�����R�K�a"�D,�
%��rY���L'�(p�]$nis��ߚ|�.
�D�+Rk%W�
X���Rf{/�v�z��[�T.EFQ�7�L����;�w�k�ZN�d*ߓKu�r96
d2�@udS�{����;���o��٢_�C<�G��`��&;m~~4;�|��8ڷ#.�\���Be!��s�Ff�2WH�w�+�e	.\���5gw\n��K��"ĺ��g71���&�H�g�jn)�]��YIe�g��	��ɤ����]�-쯯�:h�*��m|&��ǰdn1����=ζ
��v/hwx�x��yqqr�L,���}�[g���+'��z�E�2�uHV��+i�3!�Bj��x�-W�	j ��n�Z���q#���	q�vb���8�F4(p)�Y�F\�
?A!�+̇E�A%p�A*�K� hs��,6��*n\U��_�jDۢxi ��YL��u\���ȳ@.��؂mu�k���Em�(=�%�SZ���$�
u#�_}uY�#�ugY���.gt	cWsh��,��H�X!�>�����&�>���b��iK)H*�Ӕ����,�E�41���b�lFH�D[	+A����wft���9�:猻?����y߳X\/��NbK�xC��.T�g�gW^{5����S_���w�`Q�R�
Z��R:�$��/������DĬsjx��L4�W��ĿaX�;�ym�h�º6E�����"V}Gf=*�
Q��^���9�kB��-q0D��w�ڃ��-\���g>�3zn����ڗ��!!�7-��n�����2sk��#����d7Nw�$�}m
w�&vZU�cI���k������U��iN��S��epya�i�C���~�4C��'NL�-�R��;w�^�7j��e���a����"p�X�l2n!
��m�Ȉ�-|[�����%����Ž;ԍAVG~q�w`�I�{�_�7�9Q֮�ȥk�6�$��PMQ��~W��8C䩑�h�����U��[A�Ca�6�1��-=f&�y��P\����e�B���_�rD�@���%
� ������o]��-��qp@x�R�T�Z����Y򁎝�g�75�� �8<�f�J�ь���}�	V�ط�BE���\������6�e�(Z�2P͔&��*�Ù��������3}5����w�2���X�*Ha�!��\{�����+`x��Gt������������f�O��|�sK��K��:�|=�+.g�cUe�D�bj�r�f��+
�KS�Z%fk� S��]��\]�����ŀ���\�z���h� �M�5�aqDN/�0�Vk7v�� ������.�\��_/�%�.��J�8ca��v�����p�[��XP�\&
N�\��Ͱ<[�yp!�T !�z�G_���GX\�˩-[>��q��\NF.Ϯ�F���oq
6����
���N%adWݹ
Q�tÁo���1�b��ɹ����-rj0�+�l�31j��N!�O�{�dq��hp�K�ڌk�e&�L�ЫX�F�k/�|��k/}x���;
]��Z������TTZ�g�E�yQ��l~w,G�����k/��ǣb�BO���c����KE-����l�2J��f�[�o/u�Bn�\�Ɵ�~/sڏ�]W}��jKT�8���޹;�Ym�
9����}>�qQ�"�,���鯙"������b�E!��7	�88V˟H�t��|�RTH
c���Q}�4��O�l!�\��/pQZ�����ks�kz��Qz�)~}j��f���nm�u��k/ػ�sjasqt�Z]|���#����﹧�f��BqK�"��T���=�����E`�.����>Z1�
��l���U*8�����b�c���B�U����\H�!+�h�j��ׅ�^.sϿ��W���,�;��\ߕ�IZ�YU
C�Ɲ��،�-K^�<?��2"=-k�C�?�������]�|�5-��WL�
��%r��V@=��5��,bE�Ϣ61�Yc��t�5N�.��p�ɑ�G�����[X���p�B9*/�t?��l�ɟ"V���q�O衹�"3C\b�]�%jH��J�̔�e*Tg��e.�����c6��.���8O���#lV50K�n�+5�?Я�S�N9=e�ǚ
QCCC�X�����=i:��ҏ�����7J�nUQ���Փӣ7�@��¿e�2��fUUd-D�����2�<�����������l�����"�X�'r�
I߿(�'s����ۉ�ih��pڵ��.9��\HC�Qoo��_�Ax����k�x��S�k�1����e6���B���Q�P����	��W~�^�1��q
u�"�6�o��E��A��2�o�ɰ�����HցK+����ejP���]=�|?U��6?�b� �V�"֖��:A*�C"��q��P��N��P�6����?쫈���-�e+�Z�(�wt+P�)w�Y��!U��;�N�:55](�da����:��q��!2��	�����p����SR�`�������L차4��id�>�ʈv���l�U1�l���$9�Rr��C��cA{�3[A�;�jЃ�� ݋O~yq-�QZ�[�VI �bq��#n94�,��TY��[�n��!q��3z��k����G�����r-�����-[�Uȸ��ڵ���Ǯ�6
�����>|��z=��u�oj��������`T����ȳ;�/��@`���_XXY�R�7|&s��%�0G�CJ�Akg��)p/�I�	�b���iO.]�$�>�A�[\�jb��-�'4)�$�خ�59�5/�{��m�[A��E���K
��-k�bz!wu����7�;G��'��tT.�M,8!Oyl��˨��������E�s3�ܽ�Ҟ
��rT@�b!G�o]�2rbEQ�WN���z_�ţz���ٮ5�[�%Xm�׼�Ҷ]}G�w�AL� ���m�{aW�p[����4��!��� .�J��B��WJz��݃���{�� E��Qt�}k���9䗉�n,a�M�̍���39w0���CO^�����5� ��Bmr�ڈ�6;flƘ}�ȘW�NZVP�m���)��Wn��Ͼ<�͒�]�eg��nnn�pbRvww��J�<��յ�s7������eiL���/���d6,�I��36�!����=YS|���_��i���K�
�ݥC�C[/�(���k&�������w�s�-�z��r�Iw�/�8�#�h �`��~�'�S�7�a{�O<�ޒ�y��-=��u=�����>��?��K|�+j��+�<��u^��D�k��[�:R�8�J��kO*��-���hqh����<�ѽ+�ԓH�r��k��-�M;�Ӕl!I�y��+����n ���IԤ[���`���]t"�ܸ�h�-6y���^�$5�ԟl��T1X/ݧ#	�tPK ������
��F����?+������7~���]n� ��J���ه�z�ܻ�:F��C$�0�ٿ	Ίj�"��|� z��bYb�|��ZUo�y��Q��jBC�ם��>����7S�%Z�]�2��On��8���W�����u;.r�I���;�]E��~�~)�l9d�$b��JI r�D	�2	SU##�c�s|dȅ�	k+S�!6Ir�6„5 N)��fY�eU�	�BT�ƫCh�&vU�k���<�Jʼ��SB�a5CVY\7(6<�/�JJ�-u/l��]�Hg�[hP篧��U�X?�1��B�b��В�&�����xu�������ix������U�;�uyd3HT|`#��{
���̎��Kj��@���+��,�9�����-j�WXXXx\l�,���*
K�^
U���ծ9���}7�v\"�ȩc�Ap�2՚�_���U\µ0�e�ҭ�b�q�M�%׉c�f�7{g��&�8 �9�?���څzsͰ�-��0��4i��h��/r�]NJ�{���N�\^�?k\��\�<�qr�@�ПJR�Z�s�x�#�ɮC8�~�7x���Tg�p1<��G*r\o��B��*���T7W&���H�^�p����_�N��.�q-J\]~(�_ޫ���S?�8��~��8N?K��'��iɓc|-��P�[��dʓ�7}|g]O�w��κ��)��[���P�eM/���GܶCt���A��2I,��r)��v�dy@Ӈ8څ�����]�aI��H�����.�t��iX�
�:�w��[D�1�.N�X�=ړF�G+v����}?�[��1g�h�k�(כ>�ͳ$^P�ɹu�:�#bA���Jq�]�H^B;By9��O��.��!,��ζ��)�(3X+Ӈ_�P_q��k��8wt�$��	��c�ƙ�A���-��������s˲d���E=��Z�&K
@�`�J͑�@�d�2���i�dz*b��!��߻��ÚŶM�_��AW���*���������~�|����b!��n
�8�z�v�S�~�#yf+]�[�bBy{�cEd�dڼ�٦�f%O:�4p@vUf4M&��c�6�2
h�'��L[��"�l]z|�O�\tA���k�C�i�VU%�o��ŗ*�€W���̫�b,Y*0�_0�J�h[�9
h_���wV�:�l�/̟��^m?��ͥ�>��>I�2����ƅ��@7J@E�#�%�b�jB�)ç��&�I'��נgx��U䗊Ç�p���!]kZldYє�9�[�-�
W�z�|�K��I�UDG�>�2��b�(H5���V��HK.%��4�g�C�[�8��0����h�ű��B55ޙh����t�	�`���s9�	å%�.?b�N����|��¢� ���G���f�X\�����
��(���<�@��(BL����?MWn,+�H6�,�ka��V�x>���YN+Q	
*U �
0�M1b�9�����q��]�D�Eu\&^	�ɫ��|�<8sV*}��Ki�)�S�"2E,�D.�k^K��g"��2���ؖtƮ�i*.�Ak�^(��̳u)8�_S�v֊�ހ:SKɥ�� [7�i\�F���Z@�
�F�T�K.,ƊH�W��)��t>D[���c�֢�m���eW��
f�"ǥ~+Q��s�
]~�
F�],���E��t�^-%M�b���vBž	(y�O�H�,��=*$�9�1��-��~—Y �V�ڜ�<C�����D��ڄp��+E/q�~�|p/W�(s݊ި�TI��m��w?�+�a�ʎSA\�f��i̹��H�
���>ɤv�
S�R�Y��g���1j�b��f���d�${j���ܯ�2��L���⒢^T4�{/D�ȥ��T�icT��F��ϱ�6�x^�'��I������q�b<�_������V�����h)^eB2�h_c*�t�(����̯-�2%�s?Y���T�F�풞�(P$���d�N|FD���(�tڠ�͋���o2|��Xk��97�X��m��s��{b��.?7�+ŷ��)�u^-�_ˡ�h�Tz[9���`[i��S�J��✀{:�ϥ&�/�P�~1s��������:���e\��,���])r�|�7D\�r�(�C.��s���}�u�E*U�̥X˰�R��	�N��y�oG+�JM�g
����X����/f,���48��:��,\�:�� ��H��������<.�E.,����M��2_���I1�]�G�8F���274���|Bһ'Z��"�'I���hL��n�ɲ�FXVkd���+��S���~���8�u��읁��0E������^��L)��������\�P���5b�-�����`�s��d�<GǓ{׵uJ��P~� E�Sń#�dṋG��Jf ���a��X��d�Ȯ��B�L#�E���K�el}�c�B������x@J�QZ�t�)���k\c�T;l���L��/r����9h�c
��q��z��U煓b�H#��B�]�e��P��͝t3�����a�m�}�u0��M.F���b?��^K���a���z�����������ʧP#/�@����.�x�;�-�Ϙe2� ��h�\�2����74/i=�,B.�+﬩��=K'Dq��:)��45bjT��_�Ԣ�Q��P��*�d�C1m$�/�"ي�|���s��q�n
��\��~�|tʏ�	N���ـ�0��OL>�W�TP[�k�u�h����gCe�&�8�{p���QBW'��>������F�{|
*`�K��*j�.S��{�jc*�O�����>�}D� �h
�b��2��8�"�~�)�*�\Q���}n��ֳ~"�K����S�tఔ(��(��85+g参h�4p���9ٜ��X��;���֠\��r#��2����f�_%I�3������p����~��-`{T�e�P"�
��#��[����lh̙��+lUi*�Onj��<�W@=�kX^+��[�T[���4���2��6������|����Ov���e.3'�)UvU`I�"a�^�e����R����<�`��@�$K���T�0_�Z��NRNi��`������r����O<#Ӎ5v�������'f���9��߶�jMZ�	�ǀ)Î׬aF������h�(0`�H#�y�0#�{�Â��.����^�T�_�E�]�E
�X���F}�1����bԣ���+�����2+��C@{����4[C�F�F{�c��#��p=`,Ď]?!�}o��P��v���!9��Q��Q��Q��C�d��7a��0����zʶ��;
��m��B��)�]H3�V�؅z�ez�
)����d�x�������4oQ�YdAꭠ
�j��DY����Y�c��T#�)�%�j�>t�ԫ�!��(h����K�|qf��e�C��J���\qX�ޛ�����$�Q{#ʈ"�O!PV��l+�x�:�lo�j2ł�*
dƪ2��Qy	Ů��%��>�@����KTҜ@-�\w�%_�GB;��S2}�a�̘��6���.,\�~�7-Ȟ�8�:3�Reu�J��D�>c�%VqI�v�E�ȅ�
(�P[���*�JNH�-e���v��G\�1��6��3�*Q��#j�cb�$�6��4
���n���e����R35���b;tC�,��[7�Q+�[d���b01�6ܭDw�x��r��e{�I.���ޢ�/��Vx���x0��&�ѵ��� �F��8n^'Y���9J��Cӌ
�zM�l?R���|�%�Ӌ�6B�Av��	�X���,�if=3ĵ���fx��*��Q)���	�g����h�6�~
gnG?�Ė�ӌ�2�Z)��m��ؘ>u����y����{k��Y<�SRGB=^���
Z\A��{��E�㴻�x�S���+�>}�2ϝ&���1";X�@_�ib師��샅z��h{+��tK�P�܎��=+�}��C[m	���/R�^�.��{Y��^�֝_JVI#�]�"Bw�=cz]QIr���lQ���������lY�Ѯ\�"�՜��y�s��AsĽKl�l9/�:"��Ch{y>1�d��>غ�e�L�du�/�n2�ج�-Q��t0�o=.@n^�=�F�Y��J_����ô�6as�m�
�ڥ�V�ѩ�P'(e���?��F�>��T�����|ظSG�ȟ�J�1��9yϧ�\�Ad��C���<����{w�|�[�
뒱��?x��ެM�z�H^-a�p�y�aD�2Z]�E��M�������;�H1K5dA��v�\��Ǐ}���y�r�אA��N�l�����Ê�c�^o'Y Sص3۹-ۤ���m���0�N}f�,�d�8c���<U}aN ������d7׶�p����-B�X*�,���[�=w�;�t�&Y&Ҡeq1#'lQ����ŕOd�M?'ƌ�Y֨a��p`!U�1H�Ԙ�`LB�v�\��h�������⟤N��Ʈ��HS�4]���{6�Qct�����n��yD������_�;��a�����,����&v�~�8n,K��]KU��>��H@�83�N��#Hp�ޟܬ���s!��}�G�Q��3��9pdM$H����pnQ^~���~X�OENԇ��V�F���u(6셧xp�du\@�	��7����,�lð���LWݕ��Ol
�~��R��it��^&c���s"��Sc�+i��S�/�f;Sf�w]��Y�U0c�Â�F�v�p߮g����Oy!=��	n�z��|g�%/X*Û._#���^5a����EP�=W"@��kʛP��[#ˡ؛�^�3L��j؞����$xw:�du��;�;P@2��j}�,;@c���y�K=��<���_r(W�a%�C��o��D,�t�BLZ�hؔd5��.*p��-Fη>�E�VNrc�`�v��Yw�/(Qcp3�xy.L|
��Bɚ��;��j���=��aF�� �F���ɻ�IzP��Cp���\sn�*��� XX̑�7�G��{A�E�?�y����!A���2Z�~����>	������~0�`��A�WA�þ��0��v_"�d
�܁��J�)|��!��V`�A>�ݵ�f��_AUUUUUUUUUUUUUUUUUUUUUUUUUUUUUi	���D>��3<�IEND�B`�admin/images/upgrade/local-video.png000064400001063625151213254600013450 0ustar00�PNG


IHDRn���W��PLTE!   


GIN/--_eo
pz�(&'KIO=87FBE	
+"2*%0&PV`}��$G>9:20pz�y��RH@LC=C81GKThr~=?G-/5U[fZblRKI^gqLQ[&���\TLCFM'(/kw�5.*��׀�� 79@;0'35<UE5@5,A:7v�����cltX^f���WPLt��#$*fpxq}�\OEd]YL?5���������bk{������^XT���jbZ����������ۇ��cZP������i^Q���wsl���vnaVST��dVHKGFpmiqgZ�����#}yq:/]L9���ohbx��B>>�����󚪵hda~ufN=,H8'B3"\Y\���s��dS>������igj��{����xsaO��ƪ����nuuvm[F�����젵�����4HI������;PQ���b`c���z|~���nnq�����??!������*A@yiU���CWZ�q[k��FF.��ϝ�����US9���Odi/0liJ$$���NK% 87��nWms���w��lt4_u}c`B�{be}����xuI���}��������}�����9<m��O��YU,���bb2.+w�8��w��NELS_B`eK��an!e��CqwV������������W��ׅ�:�³�zb?tRNS	'<L\/m}|������48Ȓd�IDATx���11�o
,ppIt���2:���rcRS욋n�0E�Go�HG~�US��:8�M��VNCh��8�Q|x}�8j�"��Պ�M�<[�V�T8I�x���%�Q�j�r*Y��12�8���"��#�m�G#iY1����?$!2,!e��iecƛMr=�]��bZt�$)\WzSs��ZϐYz�&����E|���E���\�V�(����@��ۛխ�Ih�O���{�cAc�W\�8���7ΌO�Kz�Ӻ��E���'`�V4U�:mi� N���k��Cٹ�6���_��[奄�
,0V��*N7�!Q��L�ȁ���a��]�&E *1;�D��S�6�H�|u|���V	���B�T�j���A:"�	c��:�`3D3�.��M��B)����4�I��N7�h=^�%X�m�j��p�_��4c�j5�j�8␦��(+�&D�I���4�4���xA�F8f��OW��V}3�!l�JfK�A�U)�ʈ�5=B�&�B���
f�q,��E�����2L[U\����s���mu�������$_�hS��J�TL>��s���@
��M��G2{T�xec��B�)31�$���4P6����;D^�F��g�^QW
w���5�9�����]䧚��IY��4��9�a�����VY�_���(�u��e�L:[�����z4&�.o\�宷G���L)�Ab;*@�Pr��ϑ,�PS�@����,�5	��R@x�!5�J.2��4Etҡd�(�� '�0�BF��8��G�e�B�$RęKF�Ӏ�����C}�Ë��!��:�n�6�2�k�j$OB0�i�2qmRL�@a]�ƀt�!b�Aű�:HJf��ME�N=�yU;�rC~=��O~{St���~ۄ��v]e-�����!�HӨ�?������5�8�H�=|T�ZE��o�H�0Ul&3���|FkDy��	��t�>A��8�����W��b��K��ئ�P�Zs����D|l��&d[�_
H�_�Eî5�)Q�1���i���[\��1O�@`c�L�W䨘�*1J�6F"���db �E���A�n.�#H?ʷGAʉ����{�(!_JVl-�O��³���R��B4E�/��Ɔ�����tj�e�ϯwM�y��H7�_���o/�4�B#�RBu��(�x����Up�z¡�?r��x��u�(�jBeh�[&#+�$��d��ߐ�T�
���p��\_���ћ�9NΙ���F�aEq���G�y*ʲ�e\dOʗ�<9xٌd0�B���bg���]@�r�:<��=Y�\�E�������i�W�ZJλ���?uM�5êٖ��,��ۧ�&os��h�A���K�1[���YM'��!X:���f�1t�f,���e��*kg�m� Q��8��e#+��E�����q|m�,��af�FƩ;D����-��������@YXXN�,m�nɆ���y�g|��t���}~I�����l$`z7�zBl���1Qm�PM%��%���KT��*Xa%3ҐH��:l��vF�GZ��FlR��!�e�ͺ&�Mr[�s޸���9^B���{�̈sX3�%�T@�Diu%�P�(�.�,�O����k�QDl�R�	C����K>�&-
}��q�������|���-hQtƽ��x��Ru���߬ao��w8������S��n1����7{�ͨ8׫�w��R=giR�H��#r�����'J-�5D@��&$���<��O|�CN(��o����M�M���|�8��paA��
K�&p��$[��4�:�Ɗp�@�L��&�p(�C&ڕ��f����ҕ���:#�&�D�rkcTi|�t&��V�p�m�H+�OƆ&I8�ip,|��)��P%5Iđ�[���9�X~�����h\U�APW�AR&�_�~�bZ�S��8�했�0hZC�dnʍ�����Dz�zE�v8t<�y�:�����A�EJ`ƪ}Jm��	�f(]R�&Rʯ)���є�Mo~wp"s]�{**��j;�j����;���0z�{�1CY8l��H_����3qI��dl9�#���P{a|������ǔPC���8�&ڨEJbfĚ��h���e���P�~(V)YU�l���|J��?8�v�,���7x��Y��Sp3L:�ɠ7���׷�b��=�h��#p3�u�
.�U�1�������&���9��e��9$�,"ҵ�Nm{<E�ې��	tR^�s\ؗ�цt��m�n�C��z'�01�����t�LTJ��
�f�w8�uk�
̬�B0C���_n�g$��1�J���o6'�1,��(�3����]�5
�1�$��!g�+�Fށ.�hC�8���
ňSʇ�#�PO�_�3,-_cm��`S�Tڛ��
��)M�P�m9p��,�󭭭��/�Ũ�qBA���?}�?����W�n�{v��ƛ�t<~��V�=�����^�g8�Ψ��E�x9�?*+�-\�>���q5
K[q5嗒�k�JԐB�t����a�"SKv#,��6�
���)���ӡ6)L��(}�l�Q͓*}���F��a�>'����Z������.�ptP��]S�ʈC��a�HWl/W�Aћ�5t�@�hcX��
{nj��
ocM�x�/�c��3G�!�+�I���F��s��@��+}���]sΨ9�f���hT�e�C�dRqR���A��yx�bw�-��N���;�	�yA�P�S�ʛ�cߋtP�5��/��4xeiAz���U�ml�U��*]���T��!h��q{3�(�!ܸ�ɨ����&A��#�P˜@锡��džץ�� ��H~O1�N@\9!���:i��s*Pc�.�7(�7M�c�����ldph���㘡�n|&�XOK�����rC��ʧ<���#����>��� B�$s�	��pdnh-�k�/�nvm�5�/��ϟ�A���y��ar��`0��ۯ�xm��(\��S�r��f]Ө��{U�[sYv�7�O��w���GO$� Z`%?�%V������E?��҇�Z_Jm&ش��Hb�"/t-:���Pdx(�f�ƤnK
K���d�X���*��p�PkR籸��kI�J�6'|k�,N�[����n*}e���wt"Ì ���t�N��&{CJ
�DH�&��s�g����l�JZ�pc����	8z���%�ڐi������n�Sw.?�LQ��xDB�S�a�
�Q���*=�҃�bbe!�@������K�%	���@b�?r�uN����n,ǹ��{�+"���s��[�nD������v}�D�(�&��*L��y�H�\pw���ُ?��Jxs�84�H�*��Z�<��Ջ2�$M�?x��a��P��lٓ\��n�T5�i�,+��`c��Yb���~�s8J֩t!��Y]�����b��7;�58+g�L�``zO�@��y�b�i��
(�7�N}Ǻ�`
6�z�^De�n�!�QF��:�[�2��-O����[�q��
FU[ΐ6�v��
�'o��0�r�R�MÃ%mt�d��2%�Fh#��_'�o~I���U+����)ŅQ>�F�C�{�u�J�@�����'�kM�
U�&��1n���AP�����`�5�t�⃰ ld�g�����
�p�E�fx��M��,w3T87m�1�rq� �_V��-#Ά�qd2�2Y���,��dَ?���HА=X�B��/Ƃ��
��M��Q�g���:E�e���v�#
6�F��
���57T4�&���m0?tԍAG�97���5
'i�d�-�rJ�~��5oxV���������6b8A(w�㤑p����l�Eu{|,Ū�^.�D��{�$A�F�c����PG1����CO,+�/^=?j�rռuh"���򾶻�m�fK'_Ca�Mic�>��a�F�f(o6����Y��C�8���v�Lwԡ�O�L�-�#�ȁ?���L�t�N���B��272mC�0�¾�8e�������4Ѕk�m^�M�
�^�4�{�X������o��)8�8E� yc��`���),�5�H��QŒYә����}w��&�������w#Wj:y��DKQ�m�gǂ�uq�I[�l69��IXE��us|��>�ܻ��+N�楯?���(�E�$�y���jV_��,�
�A]��fl
(%�����ۯ{�3�����e���R�cR;�7�x�9$�������|!�M��&��� �rF�%t�1�U��^+6�}3R7�p4Wטc
�b7�����rzh~��܀2�5��
37�S�%n@1Y7���Sd�[��3�p>�V��6����b��������6��&��n�P����W,���f�8j�����Ț�u�&Q�P�I�ބm�HoUE�5QԈE��WWU����� h��?��m>:_=s�6��geȘ��	C'O{/����iA�"c�-'Oܧ^�	��h�������,W��x���s�uqu���>X=<��aH5�����L��n�QiC��
��x��ቴ���
st�Ϝ.�L)hds�6�X67���C��I�
�LFR���3P9�oF����>�0c��Gq�1��c'H�*�FT�E��!y�	�+��&�$��4���t2�M3H�::.�RhS�UF�� �ꃇ	��6L��i۬��(\�m�8�XM/..�K)c�qPgG�_]�q5�F���p�0e)it'<89a�p
I��6&m�ڎQ�����
Ś<��&�>l^/���Z8��zC��SV �eMOˑ��ƀ��횂�L�U����P���5�6�Y4e��r7zd4�D1�+3*x�#q�����
3q3�75��!k0�ԍ~ z2G�x��>kF��������4�"d�l�a���W8����:x0���i ��D���<��p)2E�c!ͺl۳�&}衇&u�q��z�tq�4�R�{��yײgY��pTdy�TI������S�5꾄��?5L�8�aR�E(��~؝����ݹ٨�'�n���㍩��6~Hebg�����*�Ή�M戳��l}a
�o�f�F�FS~�}S��FM��y�U��R�4��$����T��
�z@F�21m7U���s�
�Ӓ6�3��#o����Ǩ0�\'�[�L���
è��4;n����a0uUis�L��M��t̥�$�����UU��g�:8H��(�Y�I���W�n�k�Se
��!�VY׫��Q'�h���U���}�l�]��l��/��y~`R��(�6$��7�?8p�����5
�FT|ʂ;ۘ�q�	��9꺌
��V��p��Mb)���-?G���˴�p������QCe�S��7���)cds5
�Z4�:�%�	��3����EicꆌaD�Mz$l�T�0I����7��u)P�����)�>�7W�)��7��5���4O$d���3�Lq0�%��$=8H�E%�	+��
ք�| ���
�8�>z)O�(�ˏΗa�̞�g�Q�/0
1C��
A�/��X��7�d�0�Fa�M[�n�Wްd��!=vr�����~�}cRG6A�����ц��O��;}�Y�sX����b1lN�kWꆴ1��N?�2�`��p
�=�b�yވ
k�o��cI�F��r��,��N�(lF�S0x����;ӯLᤤѝ�N���+�����j��ɎH������i�"�DźN�
(Ho��Y�^7"m��u%P�誑�8M��YdQ�dm[� ��Y.���'7@5����������xb%����ʼnq��X��6^�<p�;�o�
���9�a�fWp�7����:7�:e��	�2���zS5~D�Κ»e�顃5���f�efP�2�P���>�Vg���Sf���w�D�1������q����(c��P
&ދ�vw2�	���_���q�&q��q�
�
<���+���X�ۈ(��"����ni�v�'aV-&bi
��DO,ֺ(�5����i+^�i�S�P[eKI�A]�a��:����OO�Q@�ƌ�8��=ˍKu
6�ƈC�h#;��a<D�7�"hd�Fu���m�Q��	�
���Ͷe�xsb�����50h[8v�j���R3�h�
˯�e�]{��
a���Km370�
?,^*����n��	�y��8�ݾ1�(jWE��cW�`�H��̿�dz��>Xq㨛J5���DK'Q"�f,R����n�,�Z�擨e���Q���F����U���i.ɞ|���<x���F��y`羞���1��k�:����m�d�k����n�l��)��Q�~�����2��W�`?�.�:%o�~�&q��
8����ޞ�jh~��Z��(�����dʐ�Q�}��������7[™/V��rX�ib,��y5l�s8�A�ԨT�pa�a�����ƾ�p%
T�7W���8�9�	�b-�)_�4�]�$Ҡ.%��0�8�|),*�J@����F�U����$������۟�(&�e�u��?��l��0�R������i7~P�P�b)h��18`�2�yY4����M����
��n��s�ܱ�Q��v��9s�����ԡFQ�9����ˀ�����(|]�0��x��v�~��q�
�|����.�#ź���(��c�S74�޼Q�D1Q�����:����ධ��5q7W��_��9�B�4
��cd�ϲ8��]�'�,�-�y��q;K��Q�g��삨5ֺ,�
���)��j�,^�jZ^,q^f1��
���q	fR��@�vH�)�56a�m8�5J6r��"p�D��ǖ�q��Eͤ
�7��
F߃Ǝ$�6
6l�2��ƪ԰��Y��L�0�8��'��@gO-\�����Іe)��O��DG�Q��ul֡�"�Qg�c����,1I3V8�������Gov�z��>j�c���/��ٕ�a_�Ѓ9ۉ�������
��I��D��'���(Σ�������l��a�Äq��Uqv$�o���R\Q��
Ԧ��Č��i����ѲJ�2~�������
ǻ���ݕ2�F�_��v�Q���>DaCڐ4�6��'��?���~�w�6��������5��7Ja5���.M±8�
s�.j��)l�
�e���]��g
�G����0l~'8����T<q�f�!pl'l���R|�x��78�����M�:�4��f�bL�����W+�R^O�LRIΠ2̣�l�X������Z S	K��c6�͢YgG/�|��p�XM��n��Ɏ>Zƫ�jVN��zR'a����e�3�J����S���[�0|�l(m(k�_�#6&�6^0e��fo���5*���<;�	Gı�a|ݯ�6b�5��C�0�¢jt�x
�)+M���6T7<(px�x��1�`�t���6��7{�[�f�Iu�n\gÔN�L����;����(g��Y��S�x����c��8�͕�7
��HS&o��B����l)���8?;[P�Sq”\f>�3�*�k�\|vVH%�,�-�ыUG+O�qQ=O�U1��ZY��)���Q3�9�ݬC��c�u!A��Q��|��yq�,�37�2��d���û>���'�l���b���g���(ƶeA�q�	FSJ}��f�ᆶ+�b���L��Q3��M?��
�m�:��XJ���h�G(��N}C�L6o���
�����'��#��a)\�g&n:7���}���
+T.p�O��=��p�~O��`
�IG�#k1[���ɘ�ͳ�x��w^)JIּ��`%�A�l��5��i���u��U��1~&��ݯ^ϗ3�8�A�ߢ*ߎ'�|܆�'7D��&iXx"l6��&\(e��E=I��2��/��[a÷B�0Em������^#�!	ė��r�����)7ԥ�LŖ����V�tM鄺A��N��
��n�-k��c���@1��E�ub�8j~�[7�U�0�Ë6��t�&��a�5�7�{�|Hq��N�xB���{�~x�9����7�/��TEusÕ����&�CL�SA	Q�B�M�~�wΏ�y��׊</��|套%�Z�`���\Z�T��UV��(���믿*�j	o�O
�${�(~	�/R�p��TѨ���s�	p�?����/�mK��ޏ�Fa3^$�8sBݩw}8��U���0+�#�"o�N
߽��c*��לؤi��ݼ����/���b߼@��_(�T&_���6���/3k�Ayc��b��G�8u)9!l23�9��o
7Y���,��8zup6��1�ң}itw��uWEޘԲڿ�IE��0��"��"L�2[��$��g/�T�fmYHz����%�w�׺j°�ڶ,�*I�6e�rxQT٫_~���+����o�o��|TEa0��o��Rlx:�275
*چ�
���ާ��P8R�`�5.z_b\�Q&�@��Ka?L�#p��M7�g4�Sٜ�Tϖ*3�S�.���a��p:L%�
卉�q+�•0r��m�-����375X:�� kp��S>�E��4���Q��6�b���([�.7|�C��r�x?{3��$d�i�k��LFS�j��d
�*��劕|J��C�G<]K�*LS;aV��0�Q�Z�u�e��7{�Y׍ٖ��0n�C1E�$m%�)��fY6���>�`%`�+<�Ƅ7Iy~4��4��{.�.���kd�4���?��f��
f��9鲗p8o�Pʜ
"�7C�:��8��(�(�����n�n8�3+Ofp8a�ac�F9�Mx¦S5�W�(q��9���a0����L�?��v&c*
��e��#��l���O8���GQ0����ƹwO�s��h���+��JG@���ܤ�<J��M��ɉI��[���"…��/U5�º^ԡ�QT��6�Dܴ�����Y�F*9�"�Ve�/�yK39�M��*�˓I}s	
c֟N��2`#���lԁ1�68�8L㻿ڲ�[�{Iӟ.�"u����K�3�?�S��K���4d��0)l�1S<�`�O�#��o���b�T8� m7�ޟ.il�=��n0iZ7���.��}i<�4L1�7�p
�>w�;��D��ݷ���|??�����)�L��q��C�7Uo�p�p#���T���P��o�#���bBܠ�2�p<�
q&i�"%S�U;f����Z�M��UVE�5`ͺ���p�wp�r��<�p)��Z*슛"����`�z��
�#��F��>n�fCI#A��]ې.eʑ�Y�y9��v���ۋ����y����Nq�ό�̻
���?���'�U���X�F�K1�rx��y;����)c
��y�<��:�U�8��{��_�ᛡX*m�c��6�����I����T���a�Iλ��a�����7��#��ۗq��C���qԞl��1qy��+��r���;?'��'��TU��Һ�c6�(�#����,ϫY��q�"jڸ�����i��U�i�H�Y��IR�A�ȫp�/�Y(I=�X%ayQM�j��c��,�����gele���'��`ENT�Ψ#g��H&<��.��c�u~����(���d�陽.ڷ3l���o�p��wo�� ��b�P�e)q�1{��F��&V{К�L�8��G�4���>7d��v�8}�4�[�W���RX|�G��f�m��)_)Ƣ�a�4>�%?���}y��4]W��抔�]qs�mw��k@��Gy>����$�E�������=[L�$����8o��ZR5B���ˢ���
�Ig�D�β|�p*N7�"�Mϣ�Z�����}��(�T
<`���fdT� X��C�T�h�rix��q���#EX�A�H�D����J�o쫅Sװ���Q�;}i���%�U�
6*lz�4�S�y�XY�14'y�*��"FμO���M��l8H=J�'����0��_�3ΐ87�-?�
�(��}�1�2���oa�9?k���X��z��?�X�����\�c�Fqs{�D-��&i=�l�"�+)�c�e[�·�l2��v�,�Q���ZW묭�*��8f�W���W.є�ɺ*VU�g�B�� ȟ<=�+�5��
LYz0�l,���;*i�aۖ��n�8k@A܀.r2����}�y�?��|�i?������I��S7�l5�bu���P�0|��w�X�4&o�D�{��H�`���)���m�|w'�0�c�x�>R7�ߐ8=l�N�~�����a�X!�5N��bzoP�7���7_�#q����H�ؙ�
��;ys5b��y禣��N�p��k��T�Ca�dY�&�t�^7�l�aYy���L���f���;�c
>:��+3�j�hiX.#��I^-�qTM��*��>���
��^�����N�3�2T�P�U��M�o�D�<�
�(�bϙ��_7�K9T�C)~|��yCT�0�}IuC}� #C��ݼ�jT�Y��:8���ԝ�ko�=��x�ݙ���3G��:��ͮ��Д]�E��][�&EE����ȅ E�4/����K���}�yf�s�pe��;��$��S��s��9եq��%�b8aS��<�_���*f�^�h�L���V
�`3��4o��Ю(�T͏��Ԕ,�8S�낄.��2?�mcf�R�F'�,�i<fcT���^��b�W�/��׾���iGcŸ���?�İVzC�I9~p��	�NǓ��+"7�X��b	� ����E��������&�8���y/�}o��y#�ll�y̓m5���m��yr�M�ŏd��d-xR�����؍2G�7M�.K0C����^���pQ�Zb�2���͌A�
.Ɖ��֛b�l
o
��t�LY�
AC�6�^����hC��X=*�Ț��ѽ��)��cC�T�#���ԥJ��X��>Q�sM�QִfP:�k��E~M7j9p��[��%�h+8q�}p����Ε��˃?�|bP���=g��wnD1~�e+��%�5"]���kAdH�#�.ö�n֟
�g��P�o��Ւ6 ��2%��$4�Zs����D����B-��5?J�\�Y�W��[��^��F�C�'�Ej���eC�6��pn(lѶbtk8S���)�m�TEΒ����=�ZR���)�)�^
�m�9p�-��hܘicb�a�ض�G_T��n�ؚ���b�@�2n�3��ļi�j�a)xX^�\���力ː�zi՗2܌z#��D�MG�ġ�C0�$��H'KW8L�I��w�T����#�ˑP�Ež��^�p�������yi�=iW� 	��0Ĵ6�Q��J���N����m�,�#H�{�&g��e��TAZ8�EC5�p�iܦ��)����r�aS��?���@�"�r"aJ%��F7�����^��'՘�Ű��
�p�C/"�o��[�
ˊk~a����ݘt�˄��f(x`ٍ��~'leBNk��mr��x�и�+��6�ۦK���n^vY�P���B7�z�k�)�7픨�C�A^��������<��>��2�"�3�
���f�tFC���D'롂G�h��Djv�5��q�7|R�%6�F�qsFb6 ��!F�9�J�~`�*,��E}Z�\�F�F�7�(l�p�*�aNղ��-KQA�����!�\�5�a��h���Я���J+,&sl��b/������6X"r"ll�n�lpm)n�s(��I7&��Qv��`q��F7=�a����=7t�7����0M���~��F8�	qS���aӈú����TNGϓFR��\�[w1�C�̈́B�
�i�(�B�n�
�	��?�3�� �u{��@L����n&����'r�|�A��R�Fb�"y�I�Q���#'[���Z�F1^lʰ���>�)g�Z6�q�p�씮�;X�JQXUl�
N�@!�ai1�Bۆ�Q{+�Iّ��	��M̗�jt��&.g�Z��6�����SY������؍,��Ic���&nj��!l�2$�>2`�Ü�*vN�6����]SD��F��y���TQ�V���F��ˑ	/iC�tFa�)n,x�)psI��`�O���O'uc��$B�
6�$��?M�I�S���G����ġG(�sCߙ�>�i��"��m��ԇU�K���i1���E0idI��Qn�k�p궴_+snWG��GS�›vG)u��gJ���'y�(d6�&l�2:]�oZ��Z��E�s��䆼aZ*�X������4Y�G�ЙJ�O��
9À�
h�0�Ӯ�c6\c�l�j��~�S���a6�<�,��}y�Jn��+�79j���b��`Սf��0�º=��2�8�G#�-N+���w�.��� ���eEؑ�6�3mD��$If�2�q.��N�t��¼�0y�q���onr�(m��܋2�ƒNP
]ma*	a�ip���ɺ,k�l�swn��gL��V��g���)� �S֢I��H��.��15Uv�7��8A��#(�Dڐ8�St�9M
�x	��e7��ɥʄI)3n�K%�wԘ��]υ��YSs�Zc(J�P�6�z�{�6�����ǥ��z����X7/mZ7�|�k�l��S|����+�@a�5�7�n�S<�Q���p}i�w�s������� �77����%AW�>o�"�S��A�8]n�����.��ƍ��
�':C�������v=1s��G�﬛���x���-z�8֏��`��m�J��C�N�g�؄���b�F���e
K�l��T8�N���ѹ���WδS��G��N��p-hސz�f�@E�f�+%;Ac�"o(j�i
*�<�lX��%n.�Л�_�h#���w?Iq#��:+N;-+yک#�;�l�\�F������/2��Tѝ���ń���ݍA�]�1:�`$9C�S7
a�dA����N��_�H��A"��B�R�ޓQ�qaQ"1��2�ZPLK5�*&�(�i���,_���>Н2G?5eC� �N�##'�SL�C�|)�F�J��*#�Bg��QڨVۦp���
�7��$j(�\�d�la�/U�l���)�F4I�a�c��i�5��[�)<���iDٱM��ԝ�bvz0$
���]��p��Q��p�'�,x�u������a��Ǟ������G�i���@�N|'�s�Q�N6X���
I��1X[�� �\qcw���]'
=߉�Ih��p�nex՜�f=���Ɛ�V
�N�%��
��,D���i�.�~p��U7|kJ��n��0t#�<�K��1G{�E���0�ptl�9��Or̴J�I�S��(uۆ��l(��ޔr��ↅ�HMq�M�H�7�XZ\3iX�W��֬�vMՉ�SE��S���Р�+:U˿{g[��KQV�4��nĺ�C��ǩ4i��,�y�Ǟh�(#��\ŀ����z�OV�t�L��R�OH���ęN�kkkw܏����1�?G�M���ȥ�i�o(lt��xQ,�a�"��\&87�MC�v���5����`W�n.��`�,-�k�m�$9�(�B��Ke�JsT:��LL���/P؛�4r@�vg8�C�p�VM��9D��ӵ���nԲf�z.|��k�!s�4���]P���a#�Z5�Q�V]���{�T��6ۛ��65�֝�
�0?u�����E�� �&2aKs�UA_S�zC�N�9A
�Hx��0���
��$�ԅt�\Ĉs�f�7�6��t��C/J�БU6�� �u�׿�*pcӰ����R�ASxP�l��̩P��c�G%jnՀc�!98J����n����ݕ?�-�����b(�4��7�X��'k���X�i��	����b�(:���IUXcwۺ�K
�M4Dl�m�pp��U7��&g��t�C��/���#�o�4e �)�G�q1W�P�X�a�0�MA�j�0c��+.M��"��8!r�a�M�7�^�=�&j�A#��j
����7&��ܶ�+H���)p3�:0mfk��>7p�^�QD;h�V��ᝎ�!��F�0�d�|V�GhzS��t�Do��.�o飰�cB�2 LҰ��@i@��E��}��+`�7��".��3.���E�
c7PK�)��.��N˕�0
Q™�3���$N�9��Mq+pl��l5��)��˙C���;��٠Y�
�m�y�i�A��`�DN��^9c�*ۖS�Ut����#�.�u#����O�~�9v P��ODS� ��(�`2�7����H�)���-'�2���{��M��{����{w���:�t�'��mp��L��8�ޮ�'R7UO{+mj|�C[h�ؙz��v��uӴ��^�nL�z�?k����'��
���M�pl�6[�ͩ�d��q��a�QEQ7q M�0^E1v���*p8�o� P���F#�V�g:��s���/e�nT.�
7N��j�h��eSo�M��<4=)��¯14aC�EMYKC8��c���Tq՜)�n^���r|�ᥐ&n:���}ݗ:b�LF{f��+��廙Q�6�,tz����񝞃�^4�b֦�n���/��:��D�$D<�ѱ�u����ӑ5�(��f����+X/xc?���o�+�n>�����փd����F��LN����fvN����#Ա��¡��p4j��(,5���ԴѻޢY�1��� ��?��7Z\����֧{�is&tͺ�}�Ӊ���F=���g&��R�Jj_}!r�K1z�W�M3z�dMkp�B��2U���e��Ξ p�.��LHZ9z/�2
�\:��e
g*C�^2)
�{f�:�t<�\Fx�6Ǎ3(�<��;�{��Q�,S�k���M�&H6־�����!���M�8D�+p�B广���F�^X}�ܖ�T�V�.��O�����Ͱ��o���"'�'Gs����q�S��ԧ�ZA�l��Y�>|Wlmo�f�)60�i�P?,��?%RWl񛢨XI�F�6 �n'�Ul�pH:s�B�VVlž
Na�M8|4�U�6�ڪ5�.M�G7����!s=S�х*��
3���5�pc�Fu
6��R�w6���{��3�����[7�G2臈�j6
%/��YG;�ܿ�$�����n0��C�M��If[�(����d�F�����㍾ו�8"82E=����q]̋��Q
1Z@	bn��^腅W��#e�%b��u׼�������_�Γ/��*��[�ښ��MƑ�@W�]S���҄����/��'l��.M��)�]��OdQ괡qCi�S����M�'��(1e�Y%~@�p�wh2tc��7�mL3pC�Wc�(�4��e~lbh���J��)�ڔJê?�d
��ӷ06�\*�R�M�ݼ��U����^�6C���8I��(|�M7��� Y��rb)��G��ݸ�u��{G7��>$��GW����z.��Y"8��Q,Qr���ȓ b@��xZן�3��c�y�7�������9;{~q��v5�޶ex�F�@1~S�ڃ\��Y���{�3P����J��b����������.{��aC�ԋ��KQ��)�̓�e�p��K�ПR�F�J�r,�5	ɣ{SQ�����lch�7�7��PM5��)y\��	��
�̙o.W�Mͺ�����.P�T$ٍ�>C�,��^�"9�EC�z~����=���/�A����ͽ���(C�x�o0V4M�[��S����Gi��7F��F3*�o�[�	�C�(o-�oD)s�Cj���p���??���wN��/..�����ȏiߨ3�
�R�w5\�4o��Ɔ�+rڬ��F+mp�q/�Wź�Z���n����Rؐ7��T;Z�n���V��[���\�!�TXn���YN�ީDZ_�k�8�<x!���]C�~k{����S!c�j��£��?| ���L��KZ�Aӂ]F���$���Օvn�%�S�I��8���{A��v!~8q�,��Nw?o�2�$��ܛ:��I��~����� I��������`�i�5�:<C����A���QGX#�1%��9�R�����;����������]�8g��%VQ-jܦ	a�g�1��}*��Ē��s�$��6��(m�ަ�0E��`��C�OqH:�~nJ6�G'qO*f����b�Z�L�6���x�@ؔ�Q�Фa��ܚF
O����Eo����B�>��Q�C�1Mˆ"z�o��`9�/���l��
�)4|G��pS9�m޾�y{V�+2��?��϶�4���N`�$Ѥ?��ݘ"K�6��梯<�=i����I:�Mo~�3k�UV��2��fK����Cn�(v j�.��G�Ma��^�v������{��''g�g������o��ʉcUń��e̦�S��He-�v�5�BQ#{8�IJ�j�i����g�D�ReO8g�ћZ�Qa�ME����)M~�j������4m�la�S��T
o�
�$�Fm�|Z�B��N����7�6r��)�V�x�d?V�Б}r����8���M;T|%���< R�N ���>ﮟ��HM���$�~W�,?u��Y�9�|Z��H*������:�vw
�H>>��Q#�5<�w��G��'˘�'2�@�/
�	i��A��¥��8��fvr�����ϏN�?}z|�����/o����4Yž�[�
��6h��`.8��v����C1�Wݮ&�3�q�(�#��I�������+�h1$>U��T�;�1ńMuF1a]�Dղ����Ëi�X}Ӭ+n{R,�k&�L2��&��б�Z���?���4��s����;�3�k�M^a�8��>����8C!�4��Y�y ���p'���h6�V�����k���Q��'�W���uV� ̼0��Vި�4e��ܥ�|&7�Nj��vy#�ҷY_T\}����p~��ONO�?G���1����[p�DľQZPt؟�����nf�6�C%��M8?�R�@Q>�΄���O@�?��]�$C˲!r�R�#�9��j�
{�F��yC�l�Q԰����L���ԶR��Qܠw�I)e�M��S2��a_�-S-󆘱G#
��T��S�S�_�&�O�8�?��JzS�9Ml����`�:�J�2�X��ެ��Y踎�A�lgk'L66�Oss
^����]�G8�P��q��81x�G׬ϩ6æu�(˘s��ͭ�3'�N���L�o�:�d>?9:=��<�\�s��[�>�n3�-6�Ӈq��G��V*�5X������F�5�5�C�i�ȩ��Ж�/E�Зjt1�;S�v�&,|C�0hc7�V�TѾ�*��v"��M��Rp��5Ւ�؏��LPٲ�Pc�����2ղhl�#U��I�Z�8+�[��nF>`᥾���p�Q��Z=}��$�<T�����7����FSOl�ISo��;;���4j���޽A2�\��Ӊ��4	g�AZ<ɋf*C�p&m�S�� ��l�
n!��v0��
%�R�73(B�~p��^wx0�\����<z������X�I7X[�
E�޼i]T��j�SМ��-
XjҰ܏�v0мi����'�Y�x���yMq+n�w����K9�����6b��?�-!�z?�7[%p��h�md%����;a�6Pl��f3Cә���2ۦm�`5����
w�qT-R�]�ui3S힩n*=���
�����A����U0�s�pe�я�Iܿ��G.�O$���a����{���lHOy�����T�E�8t�������a����C�X��y���R�@8�0�#gK�k<�#�n������5H��>?V��������o�I��´Y�M�m��:�l�Ge�!rpj��@�ۥ�D�5�9�.�-��S���ڔ��ɡ�2)E�50�A�6q�7�2�覇"v#���b:��	7�ph�^��QCڐ4y�}�<"�u���~��S�!oh����T5ܩ:�X�ǁ����A�A��W	�7���70j�/����M��O��^(_�	��{A�����d�����ᛳ�h�g����}`+���SpS�챬V�Ol�^T.�`��pJ�s��M�=g��n�<����q����|w_��GG��'G��:>>{��w�N���'�?C�3fC�P��ܶ����Ɓ�fƍ*y�M-�'e���x�'�#{�k�kX7
�Y6�#r�g���
aӌߘICE�aU1��7A�;�j�����
?
�����Dq�4�-��lkS8k�*��0��	�zLc�۞U�D!j���u7-릛a�Ѝ\�[RV�������Q�/}g5	\o8W�㄰vґ���H��z�/�q���A
57:�o�v�]o_q�O�����"7�� q����"�dh�࠷t�(��q�(h�N���,SeMS��C�̇�d���������sɊ?�x�U�
Wu���u�oh��U�Nr��,Vi���LQ���BA��Z���ҫ�V��]Q�Ey�:S���#(ل3E�ԃ|�"hڲ%�V�䢛���M����\�L-�{��?v�Ӽ1޴�P�DS^�ȗ����I���?LNg�f�����n���B�u5L�̷(����h��sue�p��x�,N&x�y=�A
��ɧ2Cw�3�3��g��#
��љ
f��"�n��c׈��|�EQa�	�CҘ�ɞK���ѽ��(n�>q8��!P3���8��ώ���E.�í���a��J�c�T��\�u�
��U:8�*�D�'^���;��F%Wͼ�V�)pl�81-R�':S,+�1�0'�84-¦�J���#'��K�(��N[�l��4v�����B�p��6�K��G(����We9nj���D�)u�P���S� ��ɺ�
�4uiQ��:q:x[�7=�C�7��4^G��l:���d*���8t�h;��D���O�<H��qA���`���Yro�Ɠ,xT'��v*54g �
˄�ߒ�w4��Q���zS�[ov��a���?8�¦�?:::89~����]�� ���W֯��c������ɹ�Ĕ��7�xh�Q�)�ʸ1�B�ƠS�mZ1{��qZ&6��D�O�Ra��n�+��̹agQ�=���aU��)������.Z�o���(�#x�D�����@y�����)hJ�K��b�농������A_3o�y��c������H{�h�-�����l����
�h5��b	n�^�L'��93��$F�w���0����Ɨ��Q?�4R�
�x�
	�4˱��k�#jN��5$�.�5�S�Ǟ�)n����M�|l����D��0��?:=����oz�TT'��?��CΧsG��t�&���H�2��8�}�.�Dm�:��C��I$��&��	{&\��Z�m�Dx;r���DN�2�9����)~ck7�oѼɽ)�7�j8�ٳI��Li�FnN-n}P;��!;�K����#*7_,KOA��s-���M&��2��X70P�b>�G/��3.��')����N��?���r|/K�,�Ł�"��Jv�9�k��oj���.�=�]�#B��cq��~��gn1ZlRmh�p)˅��(�X7��X��2^�u=)~�ü�e�^��@��9��?�==����Ӌ�o��ε��Y*�,����V�u�:��h�śR��&���3��E�,�S��>�ӞZ~��x�7��ѫ��@���7͂������b��
����X���0�Aˊ�Ҭ$&f�o��;;0��f+x�Ӫ*^2$��hN*4q�5���)���'�2C�B�nl��9P���H/�~�%�"D��B�"�2	��4N�����z'��B70�8�V8S�4��+�4���#�P����Ʉ]�j^ʙk�+R�lLc��#"f��G��|��;D�%�C�"5���ߞ���''�@�|��G?���ğ�.\+�Qac'w�p�N�0Q���Ac\ �ܢ�K�>K
6�7�O��do��*qî�_+k�*f��ˤ�G_�b�b���w�[�_�:š~Mg+φo�ԯ%�])�L�ˋ	ʎ�&�۴!e��Lպ�^E�m��� ��2��
͛</H���c��?H'K>���AOd�zW����t���$�ҋ��B��?	�w"�S�g����3M<��F>?!���]c�ƌ�7�M����Ď���w�Vw��A��	�d���y�sDmNPY<w�_�l<ʺ8��s|�AcT�|��GU&���EB\ɣAc���1���JAS�gs�4���ћo�zC�&_�n����(U^<}���'�Țv��#���{�;��q��ƍ†捡�
pL��ڪ��j���.e�e��J-�zS��o���Z6F���#Jp��j�4E�(R���3��01���\w1����+#�9m�Y��G�>�'E}�/��f�:C�$��(�lá�d���af��Y�^����j�_�E,��DW?��pӸ)"7��YB(q���H�`ɦ1�;�'/,�[o��v���	� lst�������|��𭀝��<��?������?*+��%�k6�[�X%d����
�]ti��2�p�D�xM������K��v���4ECph&•1�7��`AIU1r�Мy#W����1�N��lɂ�1�Ė�|��K�cyp�v�&��;������b�)��!�-�b����fQ�=(f�_�F㿣��x��N2	.K�Xb�N�`�Yֽ�I��9Q��Δ�z�Ѭ���6�+n�P�`%��u�Q0�&�
��[�^ߧ7�{��hl�����q�/�[�Cq�
Sߟ���O���;8ܟ{{G����������q�/�x��i�Mu��G�疚7�p����QĐ午�80r�.�<8�MC8�2��m��
�N��d6?1�=)��ݰ����F�S�SU�;��D��C1��.��d��Z��3E���O8Mۆ��
�*Gmտ���;��#�&
O�`�r�pH:��:/N�T��Ĕ�y�d��{����u9�/�,��E�k���"��D�)����u�ng�qO�s�d��'���Gn�i���-��]�h�Ü2�
�Pɏ�>��s�X�&�ڼq�2�9��f8��8��fmIu��s��Ύ�v��X�ı�9O�_"畲�4���7 �:V!��e�,��-{	zS`T�e�.�M1Nl�)j�t3�p�
C7�T8V�E�#VQ�+٫�~&0hxc��8���
����;e��z���%l�
ˊ
7U�2,�i�8�B����E���Mb��Z1n��?J���%/D���S�=-����a�C>�o:p��ͨ��w��J����Е�?/D�����|�3�4UO�����M����W(���NTۺ�ɤ8�.d�-���*���/'p3Gpi����m�=߇���~0v�OO�9=C����?�.���y�8~��kyN^�g��6�`���W`Jŧ2�T�V�c���48W�6f�0LL)�5�lg�iS�@����
G
gRF7�5gSt⍹Q8�[�JA�	��{%�Q�p6��MNir�4�N�`^\d�
�	���Z��).Q��74k��XZL;G�Ί�y!�nz�;C'M�y���o�`��$.l*=�=�v7�z*;!jr‚7�Zũ�&�&�fe�3���p����\�c��y��Xm^ jJƔg�d's�2�Pڟ�ь�[e6��p8_]��s�M�q�pe���?8<������?�Kq�[����b8���q�8J�B�u���N�6��RF�7�y�`1.��YzS7n>٘v�	h��L���rJ��$8��[e7�CA�Ώ-5m�3\��.W�yS͉�j�����Z��Ůp����G_�R����1���7��r	rL��e�!o%~F��~�|V����t�î���p&̤��s�ґ�4���!�����
�w�h+��DxQHO�.�8ȁ��p�Ε�^���$��G��ܝ�U9&�	(�D
{Ƣ6� P�Y��~�M�(r��)��o������`��ؘݸ�:�[��������'���<C>������%p
�(b�(�M):�M���)�J���<z�sK�׬�f�
�S������-e�(�Ƅ��º)k��#���J�X��P��0b�T�eĵc�-��Ӈ�l��ժ�Kp�m�x�M3P̽9k����uc�E7\z-n�l�G5��d�#Gե�ݼ�0=$�j��֍UCap�IǾ׿���'��D;��9N
���p�Q?

<��:�n$n%��GbR�'n��-�d8���C}i����Jz1�
�Yw�9����=t��;�݃�Ô��?��~���A
��ɞ�w
�j����gO�v,!��?��C�p�5rtS���sJ�#�pGXc��*p�E8,�����b�5�>�/�����EU�{�i�7�P5����颻.�l��_c������t9f�4��)rU�)Օ�����vzq-�T��Z7�8�SZ6�P�9�n���^^~�ƓA|A0ED��#e�E�q�8:*�;y'�v0�o&I$��KA��K�`e<���|hs0u������GAp�3�N1L��!ij1a�U:8�H�B�7��.b� �\��i�`�wp�{�GG��+�hsp����`�Na� ���l���va��T�8��g��7?���<�
�����J�9Sf�T��kab�Q����8?8&—���U�GU�<*���KaY�
���F�i��8�(��3�e�q,�@ɦ;p�1cR�
�Ӣ�aӢ�h,Jݼ���8��i�M�7�̀�p�(�+������{�n�j'tzJ�u�؃iE��<*�	�rq���G>J����m�S�d�1�501��a0�Q�n���]������6�?�d!i��"�+U7}@D����������_]]}�GA��ݣ���ijp��$��}\?����8O�8g��7KG.�9&ftS�(q@�pl�e~Pf�`��,)�1�Ɩ�v�$O.��f���3�`M��X,���Ph�g�~��
���5���U��l�X�yS64_�#tl�8�%��S4o�Q-�
�S�#'�~aS���Մ=*{c�bd��4&A�L2�G/�N�c�F{c~��j��mi��q�H�2)3����I�as:[R�hL �Eg0o�〟YPMڔ6�;�"_��'s�h��Mp��Q�8��7��݇u��S�?g�K��Ϊ�}�����Q�7�֠{�����}�1��y�r�5��d�K��B�f��a���;V�6+���a#C{�֛i�؁��3k�ucY��0�S�*C��o��pѸiL5�ОQ�M
2Gn�J��C�P8Ř�8[��Ï�� *�8����"�
��^C�)��f͂2c5pZ�դ�Sw�Db�1=E�JK<'�����x^N�(J���[dh*�Aa�TD�Us�waܴ���a��:��|ʟ�F�Y�5HL�a��C'�s�`�(�`�4olb�ܨ�d�i򥉜��A�tC�2��&ʥ��{�]�Y�z��ǯ��鏏�Z}�w?����x�x�;��;W�w�����9,��<d����Y�Q��}�HccD]��z�Xa#��E��'+}�r�$��0�'h��G�Ys&�<�\���ꆶ�)a��*����'f���G��M���6�/�؃a���;�o���7hs�h��)eǬ�h<���#��~&�
�)�\�U3^\,�����bY7�a*�	Ѹ�L�')X�L6����Ҽ�Ȁb���]Z6�d�8^��D*��\��f:@��tm-����f'R�����\�Wkm�ݔ�u���O�p��p�Y8��g���=�|��8R���|�W���_������w����ut���Ȉ"d���$�%���w�)#ƨ�.K����Á�P�Ή������*�pc�a� ,\5o��방^+�˄�bv��g��o4^�L	r�~���y� �_f�1�Ph҈6�؛�8[��p,Q��A|������Q�@�;ń8Ւo�P
��w�l��$'Ӷ��es�.}�e~���䳖����G~�߮���� ��'���\�_T���n��ছ��&řr�@>s=
����2��A��M?��F1���X�P��Kt=\
%C����֯o8���|wwo��_�]��A0�����M�0�?���
���G�8�k��ߞ�7HS��TO~����89�K��qTӋ�]��]vPi.�ȁ���U���Y;ӂI7��f�
�iX7���n��)�G��?,JN����
���⭆q��6�DŽ��B��y#7�T��,�n�/�
�T��^$�y�Y&M�3N�2j��.�u#�@jZ�$��#�AG�0G���7Rv�'u�j�tS��&�秾��ц���GWrބq>T�n�f���L���al�l���J�j�������< L��l�lҺY.��
K(��sL��7���w���
Cg��g�șf�����?��������|2�S��9��sDq�!�
��W�xxMyc���S�)Y��N�˭�MN�����7�t)f��@M��&�`-t�,��_
ڒR�	��.6��A��%j�qd�yU���L��ZV\w���섍ps�m��kw4����;�1�j��7�C�F�)�5��b������A|7��~�n�[�C�G"i�˿�;�u��[�+�|�7��n��
�#��Q:��H��.��֦�3ԧH�o'�{A��x����,�\��*gCT�2�:O���ɓj9�?dNݼn<�L����?Z��c8����Q-0��n
�/
?����t����Iqr��L�����ǿG��ؾ{��(rt1�cbX��
L�G�Q�*�,�S��eћ�+��0EiL����ߓ�=~c
;�܍�����xB]�A�čZ?�Co
w��~`SsS�sc�i��b�m��a�x��c`��c7W�S�qQ���)/�u��y3�S�F&N,e��I�$u7�FRF�P־#��~�K�^�[n�tF�X���C���~��F2��3
��&̂T>�����ן唚6��[���gf�|�H��j�\������"����$�����z�xs��n^࢞z���������?"�s~.����S��x���?|�LR�x��"7m�BrVi�*'
����mc������c�!p�J-
���4E�&ߌ6X
�yR�9�
�@�	[š[�*��G�Ӱoʠ1??E�ગޘ��'���r� K�.��߃��Cְ�꿑 v#Cjr�Ӂ�a�:�$t��-�ߕ��H6X:Z�ׅ����ߴyӑ¨hG�M(��ZQ*�XC�j���C��b�Xq��h�R�&���l�d�o���.�2��W!��V~����]�mv�N��(����	��A���(�Q��ع�LԾ�
�ɏ�N`ߠ�F0�4�K�����$�Y7X�h�Kv�Sս^�ר�c�_�I�e�
��T��F�uN5[��1��5_Kl��,Lw*�N�Q[̮�~*���M]z&f �s��Cy7wNܲ��
�j2�.	��YW+X�U�Y�dqbʠB�����1ͧ3v��"����$�!�y����Dp$T�X��X�x�9�#���zRt�ҏ<�t��>M�7�^H�����	
n�I��yCHc�V�X{�"N��
��e��w�h�����ͺ��`ua����A���u$�V���q|q��ȹ��z��2��ީy��e���?=9�б�@
x��c�Yq��l,��ZԘ�!r�q�줺���qC��7MO��P����c�Ɯ)J��Ϫo(��Z��9U4mXzC�HycѸQ<	NLˢ���.U{��7X��7e�i��2U��\�*�FN�Ρ�9�1�"<-�ކ΋���X-]��N��!d�;�	N�ZyN�#��̕gAN�c���b⦃~�'�@���$
�(���Wj Q�(־<s��G^���h������R�Y5G�^��mZ3�	'�C��y�������q�{�����g��}�_���x�HK���7��7�dn�ǟ�o=� 2U�� ��ϧ2��o�zh��Œ
3T��z�$�U	q���j�ސ5�J�p�ئB�@���7c7���ۥ��FY���b����'���-�\����9c����0)���p�N�M����w44��u7a�
��YҰI�����Yֲ�/�0�'���m��� �t>!�\u(�"�q3�8HU��^��5��{.8���mI���]�fg�#�	�7;��b'�|gk��`�A2[C�8L�`�`�;��J�9��H�:3�t��q��Pǹ���Arԭbծ��v5�nەR{�[���bsbm�JVI#�&MÒx����<�s�gf���o�y�g�v�؏������zֻ�~����m�ʍ�d��q�[��e%��Fߐ@Cc�CoWW����rA���DS��r����Aj��[��6�$�D}����v���a=��x�b`�>*�d���w楴}JU�܈AEaޟ�Ϋ�G`#b�S<���E{js��0���3C�s���cS�nxO��D��$
o0Tár�Q*#|�_|���#����S�¡rc�sFx��gL���W�mD���6��
񪔳o��5�B)j7�&���ê�-�M-��������"xc|-�ȶ��� v��݂C�oy��l;�5#�����<v�B���!q��t;io�L�z��N'�b��1����TEC�;����c2��h����!p�v�\YY^X����N���o�ՁY+J����Ӌޘ358����S���nZI2;��������j��qq��:��|�3������F74�FE4���p8�6���u�y:8��]��P�х
(*�EX�){��
	��2�4�~n���Trd��7Tk�-f�m)싖��*��Ӌ�ː8�fD<"�\CUv�]j�SUo
��f�'63�$�<�oh7���/#YĶ���4�C��&j{�(8ВF.b� M+�
[���q�,<�(Z-�Z�TI�7^��D^o��ҁbii)lw:q���M��/j�Fє��`y��9x�.y~>���&]ɘ>n�
��e{yyu��v��A�+k�e�X�O��֕�l܊�vҘs.\�ƜH�Z�~?JWRoN~������P� ^c�d�9y-U.Po���φ7N�9p���M��Daè��x�_C0�6�ԛ�&B�t�'iޤ�捔�����a�M�mS9gS	���a(�x����b�q��A.�1�7�\�hX:E�����R5� �� MU�og��;S����ݨr�<��%��0���p��x�i!l��|?����w2.|�r��M�
��qI��@���Y�K��wn:u:���b'�3
�w���ZXYt��k�66 ̻��`g�Xq)pB���>l��0��x{g��Cjmmő�����ܻq|�j���S�n}��Ԝ�eI/��YG6�ovf��
�i8��o����>��h8ԛ��e��׾�����Rʐ8R� AqYȚb�����P��0Ø�\�kO��z�.�Yg��AU�zs��x���u�dDw����1��$�
q(.�Y�r���N�6��B��b6��M��E�B����ŭ��p�c分���?�����hH"�!F�9�q9s�0�Q֊�ȓ��uX<����8�)V�02UN^e�d�M���b/�[�NЕC�=t���w
r�A,�n�>
�:@����N�Um��n��Q,#s�
̈́k�"Lu�����Dk�u��|j�j�L�E�z;Ӫ�r�D�Z�ڷ+���	�9�N�񯤶!�t~����
P}RyC/�����X�\X�!p�ҏ�N7B!u�\������w���2�
n�����|�Mzo*e�j!�m��Q�p����Jq֑c�w�*N)2�K�)��:��9�̛*t
Ar�ڪ�6f�Ycfs��h�ySX�����M�=���	WL"qn|/����'�C��
����s��q��y�80�q3�ԡK�!������,- W�Y\�Fs��nw���zH�z�mW�ue��&We!��V���"O������&����Z����1��faa<Y�ϜN=*�dj;�vF��{���h=ک�~s|��~s���#D%�)�˹
G��1�Qo(t�828Tq�3�t?����m5���/`GtL�E
�tr/�J�b\4��CT)�/
8⃪D��7MU��uu�t���7���4/.��)Uۊ!q��Ul84,����o��T���4TA���5�AE��	��]�ϝ�
�xN��W�شZ��Dqx�v��j��2�Hˬ\x���|p�xS�W�\7�[_���f��¢
�4�z��R���F#ݘ�6kn��C�¸��]�
��U�Q����'�n>҃:�PoJ}f���
x��/�8A/
�^n^����DR�	2k�5߅c+��"߮gn?���/HW���ȑ����PR��>�}S��G.E��1n�*7�]\8N��o�.+�-�q�oT�٢����3t�J��;�3V
q��Ŷ���ε!��X�Y�Qot)U��\Rn�g�}8�`8F6�`��W�+]�c]��E?S�o�n,@��&R� 	}��unnݼ̄��=9X�'�l���ೀ�&FB�G�
N�gh�mC�<�{�Rn�*K<@��N�Ab�h��Ϯ{I��mQā�{�U� j�IC�
Y��!3�������<x�Kv�z{ ~͵����e�/�ݿ|%��xiq2��v�ޥ������t�n�_�����w�*�V�J4��?>�^�����K���!p�5�ͨ�j��an�����M�`Se
eS���Q���]l����������1	pp��(S�D��R�?�s��4�0Q�/��7�|�3C�A#�SA�6�ot8xY$e
}��P�U�@v��!�����n����3��ԝ\��ˮ[M�9�D�u������t`'�s��	��'�F��35��!A+��,��Q�f���&�G�6^)p3�BD}�3�Y�~}v)r�^ġ/����}PpS�%���P��h�9��~H1���~ Ɖ#�1����Cos����
R�&�����	���:�J�;{�C`�5y�y@&T���^w.���y���7�UCM9:�ޗa���W��d��3��`�CD�?��p>�1�pn�V�(ht�=%�)��I�ʰ���EG�=��C{�hN�)�F�B|J@#ȑ��S���`n�EhB���,�˰!pxdS��}S�D{������Zm�����KSqt.��0�X&��>\�B`J������pR�{,�y7N]*$]D�]�J�'0����S�S�"��+��E�q�j�'j��GQ&�%ھ�u��3��5��� �%P;Z�г8p��{�ܹ�Y�G\�n�Y�m��OQ4�8�����6�pg�cYi�J��[f�\�V����o�ZXi8����Ǘ��{8>��`��՛��Q����V2���	�����H�B����1+��Өߔ
*(9����r���(�:BT���F�����;T2����
�J4���
� �Z��A`J7<f}0+jtј�U7	��� 1��?QUH���ˇ�
+7�Lłf?��X�
2U�7%� RU��p�^S�3L���,�d?��1��B�
��p[���ƒ���$�)5H�#ެ�����=H'�2[T�ą�wxܵ��8���%5�rq�la�?�B�K��%�
t'�&���i�ӹ���\o{q���w*k�%���2��A�I*7��=>ݖOVU>�1�@FnL�h7Po֚��D�������1�`�q[���i4�{w���Ff�ˁm��g����K����珿���??��	Ҏ�6�r�k��Ǒ��ͰlSV\�/�h�#T�8r[���7���T��$�0�x�N��-E
X����B��%=����2GwC:�J�5̾Q�TM*\<痚
f�&.�Lg�1��ԩ����Y�?�k���u��})?,h7%KW~E7�{�k��j��27�E�h��ěX�&d�9NVp@˕�9t�U~Á,���v�F�ͦ��8��bK����y��zqV��Gv�jK�p�:�c'�ly��Y�L�a��z~��� a��S�ᶌ�6��ir��2j&ƺ�>��py�Y���ͅ�k���m��[�0��ka�GG?�J�����X�m��
��������7r�CĦ`V���@��7›#(8E��F
�Ŭ�b+�bn1{��3��~S��
)�6[�ubFamp3:U굵��9\tS��Ȣ�w�Ҏ��U_3p��q�5\�J�I�Jcz�y��(g
���KqU����P=���l��.�qJo���g���šr���?h�n�1�'�_z��/�-(A�U��%ǷDAؖ/j���wQ���hMRq��ʁu�'<�<�U�-����Y����*�GY"�/Fo?�Q�� %�{��i �B�:k��/�El6�E�GVC�J�52��FD�
nV�(^C!��f�7��v���õ�ӧn��I�]��	c*�d(�pgΧo,�[u��8D�Cʨ��"ql~+d����7"@
`c�j{
�G�6"�ް_q�y�)�Yh\�M�>c�p��sج�����J�_Eͩ>��WdM��6eo�n�
����9괡G�0�TzU�����c��T��P�3���H�T=5�s���!dJ�y75W�0�X�Bu1��'���9����(s�[u9رZ0��8?����b(��L��d~�(��m%�uw|�I�BP*b�v�{�[P
P7�'��IpSk���Bﰈ���"7p����F�r
�y9�?r�1��n��p���@|Ax31V?8���_�\����޻v��[�h�`y��˝���v��#�Y��)8����F����cɥ�A�����U��SL¡0����D�64��VՆ�3ўbZ����R��^��@�,��R�
����S���T�#EUx�8#�<wJ�
}�
�e?1iS�2���dM��l��”�p�TK�GJɡ������6I^�ЀA��TKl	8���%�a.�ljA��Ũ����!�<I:sm��J=��H�J�3�8nҒzϲ�Za�U��zP���m�Q,g3t�Б"k��I�|�C4��QA�ty=�:�=Hcf��JXC�ʘVf�%��O�Id��W�jӼ�Y0 ��r�p����=�r�~�����hI�KA����8�΄a;B��^ˏ�ʠ�-u_���[1��ݻ/��a/է����A
���ۆ�T)��YZ�V��aY8�C������l#���=�k]��
)hOa�$�!I^��1)��QM�@%�L~$n�,֡��B��L*@�5e�EEat����`�M9��`�[�4� *��щC0�ј�:��G|7O�N"�0y�v��e�8|D�s�d���=O�9�b�}�0����\6�Ii�������q��L�u|G�8v,��դ;L)t\�:3�Pp}	;�n�����PJa勸d�
,#@~���`��UL����2X�D��>99X��ٵf�qV�c���>���l����;��Tc <��H�c�n�ۍ<��p>�����CA�A^��?^;��q�ʓ+8
ƍ0טJ�
��6@�R�-��І�$Ҥ?���pcV�
�Ħ���UVqx0�A��Coe���_���cDW
��AN�|�B�f9����b�Ph?њ�̉�DIyb���4�)U�sB�-�+l��>�cާ�鏻v���0y���Ӿh���B��F��ڮ�[���	A��#��~s��������fܵ� H��7�[�	�pv�cI{�װ|/�~�i��xS<wb�p
x�/�+�e�j�B��G�c�t�8"LT��,���g���;+''k߹G�����Š3�6��}+��|�<���"��h�';��y�/�����֮4D����W0�G�������<8�����߻���Y`a&��C1��|�A�
�x�&�F�XB�n�Pt�r�a1�(7����[/�Tzѕ��]�'�U��0">�N��ԡ�x
�ɇ^ݗhS�]LU��3@����I�B�
n��2�1C�F��j�J�鏽��mKK�ܠ�/f.V�7P�6"���K��_K<�&�� 0K��\��F������î{�8R��I�:@h=�j6p���\�ˉ�Z�z��p�Ն�ES��ၳӐ5�������[ƕ37���[o>��D����
��;w�q���c0�ܼ��ۇ�q��}�A�
SXO�m?�ۻ-�k�ɶ�N��l.8�ۃ�Y�S���)���X�=�%5j7��a
�U���F���&kd��bj6Ê�UcJ�S-7c���LbM)n�Uˑ��JLd�`��Pթz�Bg��և�SF
�HYu�mEذ��h$��)�d�*4y��b-P8�f��Lѩ*dNy����w�S�46�I$��N������X]9�*@7�1.ljw��Ij*嬘e�ݛ0����Nc��I�`U��O�a������C~(BH�,\?x�Mi��A�nGv[Baoo$l
gT��2����qWD�8ZV���X4��m�x�7�(	�w�/���ޅ��>^�n4�-\c������{���i�䆥�����\p鄽����xŏ�х����q��݆G��D%Y8��k
�8��P3$s���
�op�7p���`���8Ft�zqz����/O�{��&�����.T�C��g�n-�>*�:��i��V]�5�l���"2x�$��o���}��>U��ĐA����価vC���j@쭮'qR�y�}7�b�J2���L����!�=Wo\�q�*��=��H�0�zs�ڎx��v��~}UVg�i�����Ll'AP��ݛ],d0�y�rP���<���"�Y-�H����U�i�cch��Y�9��2pc6�y���7yz���٬��}8j"*uvmm�� ���q�rb�
d��N�
�#�	Ic���,)�yt󺍉��WTe.^�;;��읝m���B��&/���e��gf��hL]�]���]\PF5�fG���k��1S�rܰ������jd�~[f\4�X$�8Ek�ǍcK�,t�@������(�
NQ6N��a4�Fu2����jl�jJ�֫0�|6�~��Ly�}7���C��x�B,	�q�̷mdž�$ƕ�Ṵ�]2�1���N^�����3�C>F���޵㋙�2��Ү'D[n�i�`sxQ��w���c0�ҰnC���س��zCM��2֘���/\1d��u����=t;�~#�͇�I�Qư&�'�+��\>n%5˚@�i}gg�.X;G���~�!#X�6bd�l�����Ʊ�$
?��:g�������p~�C����o���h9�
F.X����
&#�
��6XyGu]d��`hMi�&cK
��[���v3h�5�
�u
W�֗�AQ��zg��a�ō��R
K��6f#7�)�4T�S�
����6+�)��1�,���37G�.���w��&5S���Ή�t=���s	���4rQ8^_Zŋ�1�%w�+�&��ә-�>���*�B�be�Xrm[u%��m��ı��r�K�
^��O�fg�I=W
����ߖ�I}UՆ�M�-#F�q0rҨ�#򩏯�Zn}톰���햋(>T>ׂ
a614�G�a��iз�N/N�Q&��j��)���h@��:Z�X�;g���|���߁e%�!x��eLޘ��q�7,�2���(h6f!ml�B��ڋB�� @L��gP�`��V�>����V?���a�?B�Z�`n
a���
����YAU�ˎ�)�*M)�h���1�~�d�N�d>�_�n�
g�"e�
F�
�_���p�����6�H�9���ZG�sߟCC.�7��1��Gn��3a(n`9���3�Ʈ�D��5��\ǪKdj�
�Z��'�O��30�(R�@��`D�����NgԪR��K��1���H�^��g/��0hY�ڵz��D�l5,-h7�S�)�ESȉG���C��v�f�`.��'Ƣ��^�9�Ϋ����g5`�q��ƃ����P�a8�'3@uF��8Z؀Y#�N���
�5�O���
.�X� bh�Vk��M&2�œ-�S	m7��Q�1O��A
��vz1�*&ᔒ��/�Q,/w��]E�0��+E�
kIhLqGn���o�*0��Օ��?�:p��m����A	��Ep��R��Dl,S� GAEY
�l�LSr"�����g�,ɉ����fV
��99u����q|+q�,�n/mm]�=ןI�%�(M�|S���cg�[�/�Ur��F��F
�h�'I	��9�oJ��s6�����MԴ�9[����#tN&�H��yp�?�l/�g�@,�v[2[���r�™�����"d"f���c��9���JZ�=�ާT�Q�@
�)f�0.�)*8�9p�]��Q�J{R\�U���!w��O�!�
��
t�񖪋��Ȁѣ?į��qrz���D�1���(��BM�������פ�C-���P�)7N�[���(7I��F��b��y0��/7›�*m�(�H5�X��	rƍo��
	�7&D%���aapG�������ͻ�v�~KPh<|�v&g5$�
.�:� ,ۙ�5������r���� o]p���0"�/����X�Q新��l�����\̞�qF��q�A�k7�}����y����Ƹ4�i@� >�2��̝����w� Ľ�۟M��v6��(s2;�C-�C)gze�T���~����}k�NN����G6����~v{��|C��8�E܈����Ȇ��0�=���X.����R�:��8ƚ_l�!^0骟�����ר95*�5fRҌ,�68f�7���P��)�����AU�
�72W[���(*:|�'��I�7L��f����ic*���F5:��,�(��k-%�ݰ�Ƙ|^���w�{
��K8��Au���˒\|s��4q��3��ʋ��rx�"�m���� #i�?H,��(��^p�#��h.^�2J+T�QQ�S/�)qF��,�R�6|7��^uj��w�sc

��aIC�K���aD�7����>����w������a&��eK�QF��2t�s�LJ��j��p��n����1�S�A��ܤ��[��
*%��7ZM5��3�/�،b�ĩ�P`H
�M��a"��5�[xڝPFU���T�-�Qi�&�$�&},[T��
n�	P���B�q9B��u�UpWq��\ա�alJ�+%a���� m��)>s[�q��w���I��7�XO"��\�x��7N�Ʀ���p]Xy[����I����
�)�"$����p8<9sx#�C^dKb2B蒋-G��l����K� ��Ȇx�d�n�W�l?��xP�-���F���(mČ��F�"��2��"p�(6�QqT$0���L��5�y�ƅ�jN�Z����X8Y�,/n��K(��>�s��C���i؋�,
����&��^���h.����z�3���;���ȱ�Z<wv Pr��a,
�g�I"�s;�@��(p6J�
�e�
ek71��a(8[C���
l�1*��������!5x&�i�b,*�¡I�p#�2l�G�I�ϺT���aC��Ŝd5��H�>�&�&
-4�&g��w��w�&<MaN	#-���!�`���
��$jډ�;�d�
�3���n�{n�����0��zy?�c��`2�@��F"�~4K\'�7�T�vڞ�`��IΓl�_,���:J��y��@�Q�� eH�J����T�� T�ͧ>>�Ul�y��J4)�VK�1rG�cOԼ~s�h�u����o��w�M����m2��3�6�L LJ�3?��}/M�O��nzp��p��B��#>u"���������J4�
�oؼ8����b�͆�F���!s
�Q�'�YX>��F�u��
��xꝺ�U��D�pa��iC�UQ�y�n
q�ĩ�2��u�r��M����2o�f��yæUg�̚c�/R�BȌZiX���I����IŬ�q���bR�%.�<[�@��G�D�T@�ܿ�3^\��O�D�w�f�)�p�߽z���������8�n��V�,�ع(3>�(��F��qGu�r�M݃ĩe�?b@P���kp	mp�D��{G�7_��?�e62��>��̠��g�V/�m.�
�@��Ԍ��lHk���;8�<<:�nv�x*��`��	b;pw�8	�7�UX�9�E��N��a���0�����i�<�*�K��B���7*��4:�Lr	pp������$t��y�/��2ꍙ�t���ܠ��������bP�8�Ѕ��?
���`�gcS1�cM,*��R���dU5ܑ9�#T�ܿ'�s�v�Ri�p�x�nĘ*G�����t��y8�11l�
���qXY58�-;o���6�Ρ���[߼�ɫ�%øNw�+��f�������M�#Q9F	�Tdc�#ϗ��q�u�������o0d/�ŝϲʭ��.��0L%�͇^��Ŗ��g'�MD7k	3�I[�kϨ�>��]�A?��=<��P��_����Tu��I�����K��m;|��]h��x�IÙS�f3�n�`
��1��#
*:'׾�)�pF�⣰�02Tl0<�:S�Q��rY��)D@���(XVZ5�%�8[�`�W#l)<=����Q�����S�5�TN���%
�-{pd�DĘE�Ѫ
qx�@L4f�nJ��1I�GU��
Pב��h(���n��R<0�nŒr���M7�ʑJoq�b%����vSi�7�]\���.x������L�ӳ�w�.�߽��'��D���u�x,;���R�yn:��I�<?�ys�_�%����ê�aA
.��m�,�5����[F��1�P��^��n=��=���\H�p�谹�"���1׃���|z����;��v����!h��K��9�x������7�x:���s/o��4���A�Uk�`�:8�4��Ht
���CT����e<BSF���i
m�UTZ�9@���E�la�`h9T{x<�H�IFULL"���&*����*7�),Ca��B�_A����	��`���ũ�m�_��H.�
�`�L�0	PW�����V��9߈�l�뾛'�6e܌�8�q0$&��q
o]2,~���E9���0NӜ7K��zwcS�7aн��qw��ۼ��$��oB*��I�c̰���I�=�b���A��n �� �<%��
5
�=�
��F,*��8���Mg*r�M�>{�K�}xrܴ\W
\�M�p���9<�MO�Wl;LJȾ�wg>��������`6��2��1�4�����=;A'�>9���9�҈��T2Ht
�A��On�6�m�U�G�Mo�KF>m�^ccU)vd'�a�y�M�u��%�����Ƣ��(Zo5L��7���<X�.�j"��S�}Si���*L���Ⱃq��p��H��ƫ���=ũ����*��s��͘E�#�O{��U�2�l^<H���*ē�f
���P	����
�!�^괽��El�s�����b���;��$���ɁT햏�/��(r��@3�-�^��:��:�Ü>c|+
&ڌІ�
$g�{Dt����E1��}n!���Bs��ڍh�o��Ir����A������֭S�za�hw7:�tq:�R�I���=�Ӌ��/�Q܀�A'�t�tizii&�o�&���	Z��s��1��砪�W@ΑTm����c�iN����Bg�
����o`���v�n��4��N�62'F0|�{�b�2��t>U�����p��]�N��7�c�o�A�{��!j(D�^�W��*��)�T_2	�(QO������{e%�r�<����v3���cV}Fb��K!�6|���¸KK΍�<�A��m�8'�����xs���鍻w��wS�>�ˈW�-;��!�&/D�?���hՅ���[��r����6F��	nTޝO�Q�"T��c:����B����S�][����_��$A]�@6Hf�MgN�w>}�ҩ�v��ЂF6��v����0�gv7l�>�amӋ�i:����M�Z�A�d�z�߾�ھ��G�J��׉�(*8q~�
���_���S�
e#�ԕ���QGnM�Q
�&�Tc���?���-+�[|*�2���x�
[����cլ?։+jt��B�;��9e�?�Va�[�S=������@��a�@n��`�v�>��M1�xLqC�t��$7x.2��VIވ8�+;�'��qFD�Hػ�a��6�/�p�n޽�	7r��6Ԗ��
� `aLN�X`Z!��]�E<I�yat��U<�<6,�Vܼbf�2d��Q�Р���-ڍSo4����k7�Z�Y�<Z���a�����
��t0s����tj�Tڂ��=ԙ���vm'�+����Vؚ9�(Ȣ0�'}��{�Su4/k�S3���ѯ�V���
G�8��H@NJ?��o�c�5)X���a
���+Y��_�ő[����`p'B̔ޒ�G�.
�c"R�?�\���ZTp ��T�COy�	�aX\o�(g���s
kU�5$M9gx)k5oNQ�)CA�w��J����ϑ<f���=nڍZS%�
ACΌ�Za�Nc�II��%I9~[j��rꄜ�#i��T!�I�Ι���͍ͭ�N0{��sq�8��©(�B�LN��r�q� &�]��ư9$0
��9[��	�Un�.%�91B�jO�Б��gQ��s���n״k�S_[iխ��X�
=+�s�+��3�[f™� �^��OԷ�7����O:�b���3ig&Ɓ��h�����8p3�3�㆗NG�����"CY�)�`J���C��w��$z�Y=���j*sؙ�J|9ü�8��kl�ʍn̓�9s!��9J��Z`�fA��:��
��T��b�-!��y&�������z&wTwtghSiUAH(E���ޘ2d���5&�$ �%=���m�Vd
���(o�N�F�����q$�Fr@-t���w-�{��x.��݌�R�۝���}���͞g����(�"�L��8��8�c~/N�ߌ�b��]�h5�æY��Q4����IJnR1gP�Y���^r��9{���_Z((uW��~����a��_z��.�H�9~z2��t�G��+v�(��lη�N�q�赻]1�f�q~)�;�g����ZC�{�8�~jf���w��v<xG2qЛ���W<ƪ����� �`eA��;����F}Ƅ�c�p�8�J�h������C�2]?J~c����S�F�otU(8�� ��`��8�)n�0�r��ro��?�‚��/�-�+T{d���,ÇK�K�!x1|#"%�V��y�e#V���N�|7ePo:��F<:�ݮ�<�ͫ��H먋��-z��'S�vVe���ӥ�4��,
�˪�`*5�Ҵ>��i�~�&��hΗs
"hS�m�@}���[^F�s�������i�g�٠M0{�MBGC���t�Y��u�J
P7�m�+g�/."`�/Ng�-v��tǛ��V�(t��|�o#�x�����
rp ����� ��A�*VkRs��R�r6$:�K�䨻X@��B5�vU�h�E�H%�\'pJ�<"��ZV<�jԤ"p0p����b	U�y<����M�u[�Sn�U.���s'�0���
�2��0����d�ܔ�L����n�R��bJ�ȑ.��㹆��
�]�9ߏ�|Lje#ƴ.qq|"݉��̪���h��ǚ������";����v�r�-�ڞH���B��䨨nÜa�E�6�?�hNѤqp ��#�ͽ��� �U۵��и�Ʋ%)I�m�@|*M�j��M���x��t|/�MlR���iMπ1=��;���)̩��^zz�+G���
m�:���hJ�g��Z݅Ae�*~'!q	Q��J�R��U��Ndz��gCT,����8���4bڎ
�$�y]-��_e���<��BU�b٦i5����F�ωQ�(mFM+��t�;��(zN�}3�O�ǨҦ������%S��Wp��|Qr>��M)�p!d��1M�`M�A�
D��ޖJh9M�O��L9%�:��ӑpޜ`i��+�[�&�ad��Zj��h
�TDRdE>����k��To��|�6�
�܂�m@p���Әo��|
�\�`��?x�4����F�ﬡl���B����,n�
�̧^�6ӝ���+�|�&�NcY��Ů�:�i*-��Z��DpW!
.��燩ߨ�
YÝ�{�����o�8�����]��<D��O������!���9f2V�-ʆ�Ơ_E��G�B㊌�	�~j��S�W�Q_�֙Be���C5�Сa�@���Q5�"4�J�QxSH2�
1DQ��(t$f�]�[Y��C��+#8!�xa芹ș3�F}7��n-�
o �jn��S�]F/��Pz�5p�[�[\G�;Nc9󷳾�ę����K'�p���Ru��9-)�L�v�	�������φz
a���ŀ�ڍ�FE��f����{���V�g���v��Km^ԧ�	���D��XYm�=�8y�pzq1��nw9@)h�7oo�a�ނ���La[E�L�4�높u{��-��x�����9�sp���wN~�[���T�_��~����^5�С�4^��Hұ:v[�ѐF�[��0?̚O�7y<9'|B�Be�����
��ԩސ4�g�(l��T��r�Z렬a�
w��:��Td�Ӿ�T_)\��rat����-�y��U�R˳n`WA�&��jD�J���W5?N;s�N�.u�;�vK�y���ġ	�)S��!2q��3�m�L���%�P�3A��/�T@�cZ�@�4r6�����$ߐ7���(r @~��\;{
΅��|'ȦZ��rL�?��=�g�������Fi+e=9�dl7��1�\\_�R/�xS�j؉�p!���������hrg{�9{mz����͓��t��M���XT���gx����C��A�#��;�5�PֈǧI�b4��_����)�֞+��:#WQ�ykA�)�ȹ�2�J*8�h�?�pHn)���F�F�B
yѭSN�pC�&��*
��]��N��v�:����}�
�S}d
�)�.��a�>�����Ĕ����+�0I�/�9'O�౏�����F�%)ŒS,E��{�:V�N4�����TD?ڈ�瓣K�o}K�#�/z��n�9u�T��q���oЂBڪZ��J�����w;��&~ȁ����b�s�~��_��XJ��A35��Rv�=7�N���v�
�v'�o������w$�����'��
u�'��n�A�78l����W��:���3����o�,��`2�%�"��AP�M�X

�CQHE伒>��>�7�ejV���hSQé�UR��8��X
'�4:�qa��>QRs��q�	�Fm12�ty�Y���s�'�6\��j772�PxY�Q����8&��r�Lh⣶Jx{yP���1+��)�ǭ(��Ǭ�r
�|nQ`�z���9�
Kd
��Q�b#��l��P�����1ӫ~~~�ƍȉ��;��v��B�A;P �K�u���V�M���;�F�E�N�G���9J"�%\`0
���y�f{ҮΪ �	�ä�X�nX}�Y?�O_�in����:�DN�NăΟ��o"(>H��a��9`�7��l��A�G)�hɉU=R��@KS�5k��[q��|F�3��
JΏqQ�)���q]��q�FתH5.��Ѣ�Q��E����v�Q�f%�,kD]ċ~H��#}�}7���NN�Dױ4��I-��tƩM�mia�$NG�'r���7ߍ�^'�y�*[BT���������ae����P��+a󅏾������s��+�U�]@\j�Y��~�„�8R����XĂ�j)=ut��__��O#MXl����'\�L?����̄�zCp�$a܂-����j���OÓ������X���ヅ<$�e|��[����s���;�F�U܉l���!G��?@a��3\!e��*�Y��G�"���	{����`��}�Cf:`�lR�q�"����7N�eT\��H�~SUoF�CLP�0`Kޔ>���(e.����Oj7��'R~�5NR�=�<H��[�` ��'v� >j�tDs*+D*���	�:���3��̩OI�?9g��PH5�rC�
������ƈ�SD���%��<��펗�պ㠉h�B�-��b��J����@���?��ޯ��o^;���L�Q��1>1�	��n?
�ə�q}�/���bO\<3�����q��j�Vx���m�r&�@�X(���!8�u�Ri&���a�A��:��F���%��'�S�e�r���7
�U��"�<8�yU{X��ʊ���zq���R�`aOl��rOj7���O��9y�K��8%E��D�~2��/�Y��o
�{L���wC�zt���&	N�ss�h���Â@�f=%�=��N����T���Fi������:u�&�1%^��u�������	q���"oJ�
#]���vscJ��ګ�k��i���9f�;|N'���{x�׿���{G�����Jzj:hI���{0�� ��=�來�0���a:��V��ٷ�h��\X;ީ��o?��M�N�o�"N�����q����"F%����)���$x!o�G�@�.��b�g�
�v���2��H~�v�)�2�
5ZZ�et�I�n]����7�*�g�Rhԭ��z+�R0>��5$�S��Xf�d�����u��w�M��!H��J��J�>�/��c��"S�o��a,q��H���S�����ުg6�ݱo��A}C��.z�y� �]4ɁB���$Y�[D-�6V��g�K���#�*�5*���'>!�3� �5
���R޼���qZV�H�X}��kR�Z�����?�w~rt�/?�槏�.��F�Bz���Ȼr���N���G�;�����A=�{��n��wv�`���,����@e{�i�)�s<���;����	���C�)���
�f���*;�H�
���Qn^�Hx."DM�4���b�A�A��QG��0D��u�O��=U�c@<��X�A�Oe15�|%pS5��^�V:�5l8J�`�UO�#kT��zÃpW�S�}uH��
��7j���ZT�cv[~ܴ���w�o�F<7�9���\�y�J��%�$�0�qJ=]�pw�3}�ۙ��R'.��'�)�p"�Зܫ��!dذO`10�FA3��/}B�֔:p�ި�dT��?[� ǃG�d�q'
S{LLD��p��$:f�N��������+���/��a�ڭOǭ�_�>e�k7L��|O�
�2��륈|���J��N���g���]ZY�&p�`���g<��@�Z��;���E[
�����[���r�|��U��O�*D�����E	�!��k2J
vQh9�
'�W��*���.95Bż]o���7������:=�&�w2�18:���B3pS�)
	��w�g�۱�X��}�gr��"G�KԊ�M�\��v3���[<!�=�S�]XV�p@�'V&�kD��8m��O�� ��h7h��	mз�����/��U(��QL�+O�6_���+�ޘ���U�����y�\i��Z6�t�v�������rr�q!����{?���+�2s~ff&��_�tzr�r@�d���݇B3��w����|�ND��GVb�\:j1觰�&Z���\X��fw|"JӃ�VA*0�l)�_|�G���ݟ8S�@�`R��*��+��m@��l�|�6Ӑ3�/À���&n(`	a��]��Ƈoؼ�Y�*�g
tR�nLo6Z�7&N�J&3
G�B*m����94� �.�Jy���ar�	���K�T��	>�p��ҁ[--#����bZ��bs�M\�ko��}�1��U��H�����ٛ7�YB�t7�2��D~o#�����{��J��2m��O�*6Ý���q%�Ø�/�6/,�ֳDD4vv=�ӵ�:ti�%}�kN���ã�\�u�ڧ/��
3a+:�;���A�Uw���T�x��_�ؖכ��?=eY�p��������œ�+h��`w܍v�<�;8>l;n���9��4��1�RHD��G�~�7E��[Qs���6�PcJ����<���M\2m�"��b+��[��l�4*Fy�׸Ǡ@�J"�n��@�9t"?�
cW9q�*ڍ
��	��mW�Ey������d�L،:x���]�3�ɣR`�wU>�:���SՋ�.�d�mVq92�� �����|�#�c� ��	61��Gp��S=�C�"΄�����>���(Z�m���v�,��W�@�Gͧ�jS��rG
�	à�c��@H��(��Jq�iD����{�d�5dr2���M<^7\�r���[{{���%�O�>}
1콽{������[]/�Z��?5ӏ:3�
��rs�thMx)������bKB�i���Ů���6�k��7Χ��g��?�;��j��|_�ł��{?C����=\�z����r#֔�܀0"9F��	(l�p�Pk2��8�������%���GȀ3���~(��l�e��h���0�(8��M���*�я�2Gy��x����2~GEO���bk��JS���}�"*H��a�ee��vSͻ�›D��IU�0So%R5�f>#/�+��X�n���:):��͝A�7�ť�1�G�I�2�9�����o{��?�ܫ�����7xlD@l8���f�.Va��S���R��ܙ��]�NM����ty5��) �u'܆�umi2��_�JOzz:���'��=�7�f��$�}`�%}(�t&��l�U߷�f�JO���ݶ��D��������m�g��!*νki�<���;�=N�~+�
��9����bT��0Ԟ¥��U	�C$�]����[W�5�`Xݐ�qC㜖��T]G��)Zt�Yo!M�eE·q�:��9q��U���)U8���J!���������ff*}���,�>8�Q�q��G�J�"+�1nJv��v�z��5�jp�Fl��[I�r;��q��rJ�4ĉ.��to)u��lH�,��A2nTj9�\��\>3�=�kMu֯~�=�>h�(k�OQ�	��Q���F	9��!s�i�?[[nB��;��Y[[��:9�לr-h_�"��[	(;��ww�ѯ�M�}j�|�w��3�7�v�@���#����<�)F�_��_���L8�7��I&�f���G?���߻�+����V���ί/��K:�G����Y����oJP�H�S�
C�)h7Z™MQ�QyvΚs��mmm]�1���d؂�{��6XY=�v
�C�TD�7tg���S.��K�1�a�.#,�����7GU�	W�Ŵ��6�ቜ)YW<��\Q9uF������Te U�~���_�;��Fν����!뙁�̌�w��1E�����0ƋC��IB7dۺP�E[�u�cu
�c�"�AVi� ��x�l����<���͖۫�7W��������f�!�_�F\9o��G��_�U6m�pt�!31�h@hB�q,-���~n���(�IpB��)3H�n/��᛿������F���0��?��So�j�}Y�4�>�pI�V��~l��=�{+H#�!�jDQ=-
~�m����1Յ��h<<\>X^�K��Tmڎ�q��cٖ���B�����Eئ�<5j�]CX�n�������D�r����g%�DRXo<�?×z4�\
J�U?~M8T£p�7ū��Y�wn�9��{Kdw��˜58l���e��W�L�{�pM�7�9����d�q��_�]2
�/���ɟ�I:��)�GR�F�.�:/I��\?��I����3��{�AIPF����C��d!�@��f��ӏ�ϖ9_�2����_d���3pf�p#�fJ@�@�Q����3�Z놦Ҩm>��U�Pَ�k��G����pݴ
]�Nھ��p�~���
���(���6��L�p
ƾL�̥�a��7Nze{�7�(ӌ
VPC��'�F�E߄0�[���2�z}x6�?͸�Z��}g7H#��V�񲆑��B�5�BΦP3U����ŵ����qd˱(i���V)��" 7
p:�t.�@9Rl0��u�B0����dryq9����;��"���pD\�����F���X�j��_�n�6����,�z-"7DQ�C�T:��{���S��zp��^I��E|�)j����q�tr�Q�һ��*v�eƁ�����GL��	�R��wg`��mr����@��ء�����u7�3�mp�DW7ך9�@�T$�S�qǦ��i#�LK��m�,��l!���56o�
����E9߾��>Hq#�PS9#P�G�o�d�����4����7��^2��Ш�{Qo0�K��[G�0�>��*���_��]4��Ie�;�n��+��Z>S{�^B�y�PQ�'�n�Tp�qP
IS=#����b�`�h5:����Z�Fm�v��v:j���c�L����ip������珡u��O^�H��n��gM
7a����jVp�}��d�g��	�p���/@�s}��3���M�~��Q"H��]����C¹�^%ǯ�X�8�5��V8/�u\p#���n�ܸ�A$�=W�e�a�����&?�_��=�G�ȯ���Δ�����HtP�r��H�nY���;8h�/�ãY6~-���Kw��W�;�Z]o*՝�N,2>��@���a�o.}��o�����3YÎ���]����>@Б�!��|�o��'��v�ꊱ�wY���d8�ܐ��uІ|)����1��~�`��nnZ��A������N6h��B���f�m7�um�RP�H�Aޤ=�
Zvڤj�RR�x2lo�JUW�;��[zYQ�2��aYU����"4׫�5�V�_n�0����}�ጸ�3%#7��F�m�"8�[z�ЈE:��6��^qǼ)!nNژ�!�Z���߆V���ҍ���҄����
��!�f8l`;0����\	�ꋯd��K�*��Oψ��$�خ��!ސ(�q+)#_�ƛu�qc�Ju#���Y��,f���E��ȑ]TR �7�y$J��U*�Er�����������.�F�K6 U�ts��j�`�MP>�EAxT.
��Vǽ���[O��ω4��47t��f�#�T�	���!���{^ycۈ���� �����C��%pZg���f�e�k�խ��y����-�V��ڱ�V:m%s��r�<��Q�gDQ,GQm��T��q�*c�k3n�
�+�v�n�v4����G��'OJ�jF�r [����n.���W���^o�E�D�������dR�Mf��N~���xM(�Ohc��"}��d�/$xgD�pE6Kn��WN�?J��#��q8nmpw����^��%�9tk؁M�E‡s�߰�.PC�3����8������l�|O�i���P�M�ġC��U7�3Ss3�F�q�?Ǎ��0M%�pϣ"9U�k����
�J�L�;w�XM|�Kڍ��N�Y4:f���f+��8������}�;���Ha��0��,��C��%b��x)�>��;��둭�qw�{oo8�t�q|���08�i��h�Ӽ�4��nqg��l���3�j���Z�k��$~�y\�e+n����#j��Ѣt�%nٚ���z�u8A�z��4Qw�N	t�j�fi���~-�y�ѩ�@r����>�iY��)*��n��y]�RBܐ1W*��60�ꆬD��C`���'�ЋW��fv�D�Yc��o_]LH�%m9ӏ�w�&B�FQ��R����\0�5������ ���M�K�Hؑ����!���ǒั��N�Sڞ�a͎pFe�,���=�+1Ⱥ�n`����c����6C�yQb�
�J�&HǃC����N2�ܾsw!C"g.�"��{��$94M�XL�A�پj:��x
<��Ļ��H"��4�Fص�D'iL.��'a�$�X�p�1��kW��
���i=>��<��j�j.�m��˥R�RjtwP`<<�VΞ~�l����:݄�*@��n�r�td��-բ�~Q

���V���7Xi�C���p��ÐҀu���>�ޣx���p��L po��
�nD�F:Sd��up����hS*�
�Ri�C�il���k3��i��~!�\�F��"
/�m_�p�������
�����S�j@��u80�*�.0��⚺Vܹ����K�d����U0Y�~;�H�!"�0v7(R�� �xGJ�\<�̙��o�8S��|��0�nD�W�j���a�k�vF��Ȑ� Dcn��NO�[��om6��`��3�C�@�Jُ��PQ�dNЦ�+'l$�P���-�}�ɧ��B��*i����ԡ�<�5�I��uGW���^�9�FΖQ�I�|g��v���Ӌ���G�{��\wP-,/��q�����N�u����*fm$s%�Z�R�AΊ�s�wT���<����p�uK�*pc[�R�
oT_�Fne474�H�q��z�w��`4=�Q�1كI�V��������
�(�m�R���8C'�z�r���0{�y
g���͠�H�0e#��o�
F��o~��j��N����`�6�;Q�2�5��6W����cژ���FFpp+�}tC�Hq��č$�� ��H�����F/�q'/t��e�ovi�ά7E���n�]w3�c­��E��
.T���-��G.�f��
�*��md��)z�X4u+�Ջ�^CG雁7��	��B'a�Oӷ�f]�]-T'��7�/��w�w%ph�����d6W�m �>]�M_�ƣ����P5O׬��i�,+[�՛��hs����Q�],�ONj�u7X�^\�<}Z�=8s�`b}}aa)WtK�v��A���Q��{l:���!��p����P98�V�Dzx�Q� N��N�y��;���)���A�`���HU�;L�Z�_\��u֞��D��(F�xS*kp温4K�_}MHiR�6�xצ�{uǸ�F\_����8vz�z!h#������F��Td��M��
7��Iv���
�#�B��:	�p���tp��%ב����Z�&��'�^މWW9u�+�*�K���(�����9^E�Zf���4�.Xd7��7SC����D�Ѐ�7&��ĕ��ُ)�%k[es��x���W��hV1~�Nc���`��X��:�A�@�Z�}Ϧ�\Ȥ�5�S��Q����M;l��]ĕ�#��5��q/�ǣ(���l�xF)��X�`e���r����rvx��9�S����^z~6(׎�ϟ,�/� (n�j	1p��
pa��a$jg]?4� �pxV�U�b�M'0�+T}�Zi�{\�7R�N���x�Y0�OK�`�1��&^���]e�x�F���HeȺ�7d�ʤ���U�i �P7rOڥ1ڐ�S��0�cG`&��3t�L#:��I�߀7,��yq	�8&��AGxTD���A��.�Bd�����ag	v�M���)f��?˚@�����Y�Е#G7�
��7�6rP��y7��Z�"�+�ų�oys��ѵ��V+�y�&ˀ��c��1�T�^��٧EN��ݎ�� @sZN[���n+����/����5��7��x�����4`�9��LM* ���:S���g�*(����{{HN��'���ٽ���.$�i'�rۣ�����zrR8z�
J�����V��'�����, iWV+���L-C�Dؐu(((*%K��h�N\�!�C��-�W���l�G^��?�G-M�z��i7��v�Y���=�}�C�Σ���~�7�H���
���/�0��v��pmO����
٫��*p#�q�c���i \�U���
7v�.!r�,xÌ#��nȮ��8�:̧�	W98��(2.n��9ؙ�Vdx�������*��"_i�/�F��
��:7?"�4ɚ��"h�1D�9���Hܰ�5jXg�p��t�n0��4c2A�����\���$s�A�S��6����!@�b}�{�y8r!Z�}��mj�����R*��S�MS�+��YXne!���_�ha��!p���6E�|�ðg��b���9{�X��Ť����"��I��N��-{�Z=���a���מ������|�4�pr~~h�g�d���j��U���i�� ���h�;Xj@�3t49ީ֫��~���b��ԡc�a�m
,���^U��W��A��h�Ӈ�8��,�~|���@��;����oa������j)�UM�b�'DZ9� ��|"`C�A��C��P�FJc
���9�"�A�� м���<�Yuy#���AƋ��8�����	�"~L;1G ��TS�f���݌�76� P2��2���`g��?�	t�ϒ7�$mַ��))m����q�?����
#
�4n�B-�k�@�R��vś@d���@�T�G�+-���/�M6-��j�t9 �t���l�O�'�|'`�	+�&5���Lθ�m�"D�c���-��3���� �/�(f�I�L��"��3�˛'	���n�P淹2�s|yyܬ����V��pw�N���uج��*��?=)�y#r�j._\\��X��½J�v�=�D}tb�"��R%��)2������E�s�v-�QU�z�N�b�^wx4tor�&�^q�(b:�pК�j^c���7�������l�
�,��=��L�h��7�|ȩT�s�7�Ǡh#xC���pN�I�H��5�I�W^yE�:�8ihcW�P�D-�D���Ҹ�A�h��q�3卬Ǒ#+��a���W7��58�@�v�c��KE���,�,����CN��48�z$hn�Ku#�~Ƃ���T�\�L��QM��TU1C0�Lj��&�'A6g�	��4�B����J�-��~-k�A
bȑӇ�Q��ٚ���@�M\�҆f#4W��	}� �ӡx1����z>�x;�{�Ï?��3!n�O�3��9+��n������^�]�� P���1B�x�bX9+�tʝưY�U�j@��ӓLj��y�z~���N껾����ݶ�t���d���<r�9�
{-'2�x.��u�LJ��I�
g�eC��=t0���9Go�ǭ��?n���%ƃ��`�6蛵ڈ�<x�y8H�?����Ly��
�f�]����֑��p#u3)��Aw8�`?x���f���F�Fs��z\k �`t���>x������6W
�wnJ��.�e��sp�X���ZE�U�Jh�t��a���1#���,�#��%��i)v���E���dz,�
�.��Lu�����s�]��������FB* A�ќpؘ�B(��W��"�IN�(Z}����b�3��ѳ0�FSwf�	���Ҫ	葎�yjB��H;Vr!a�5�K&��۰�_@�J'��=_ݲ]�Ԝ�j����9d��'��dΟ������3k�|y�,'�zb���V����T�n�c�go�r�c�Vxx��l�Rj)���J���<f�<=?yZ�����R�����Es4nZV�٬���2Ns�Au�R�`Dw��o� fN�a���I��~����i�\��:>+(��Z�^e�Q5����_�u:�yϊ
�'�w��w��aUŻ�D����7�I�`�0���_{↙�M��6�Y�LC= 
��"D�5�|����+�8�Pa'��<89S9̟����ę�S���
@&sH��@�@�F����W���F!	�sd����9Y�
�vYz��*l�$a#�SI�3C�/��4_�scj��YE�
���C�A0�YH5�HTbG
q�
[%���u��_af�F�:��>M��s�lZ�a!h"�/���M<7Z���	>��qq�c����bńK�*/�.�Pxl"*Va%Z��M�p�(w���O��w�T�c�t��/rR��%��G8��;E��Ä�9�{{i(���J8��i{�5��9��t]!�c�q��Vᠶs�A�OO��ae7�t/N*ǃ���[��J�`?+��Zgx�h4�X�cڼ:8��Ѱ;:{ZoÃk#$�{�h���L�	<>>�T�9��B�J
i�?�\�㇔��+j�ktNG(��:�8N���2
ހ6ˠ
�]�
!w�m�S����;���&�F@a���Ť�B<����+S�@���~��E�q�`���檺�'a�g��E�GoD53���c�qD���v�'�H�e�JG�V|������!�(���0c�L��&�$���+�Hu#��g�d�K53��C�ҮQ��99�W6�W�Ro%7>�F���-�E0Z��x#������ԝ;A�m���E�-�xA���ƖC��Á�����n����E"xcMI׎A�,�B֠D�D�����ɸ��l9iMWUp+��P�E���/���?�B�QEFu��F\����٭ب�����5��p�[9ޛ\Nb��9�{x|xx�c��p��9?����Im�r��Ԯ�������q����p�~�\���oNF���9J��]Om��R���w�O�m	m�W�dE��&4��6ÊI+#k�i:���&ax�
EU��v���f��F�E��C�Oq_j�:R6���*��R���{��!b���Ɍq�p�y#I֐�y�h��I{��9r x��dH�}@a<���T8D^\�O{5E�&?���>0�v��ەGE�F)�#��/	I�/�$�)<��-x �"��i��8ąN"�,��p��2B�Ȝ��63/e�v٣�M��Zk�,j�ͻ��N���R�����=i�I)�DS��/�K��S80\�JsZ�`���o�Y���~8l��&l�X/)
��7�kqS�u�%�����"E���8T{��uq�7�)i���2�g�����({i�W�QB�<'F����ir�R�h�$7�%�gP#_\�͓�Fl��GjjkN��MFڽ�1�>�F�����V�bw�t����Y;i���N�V�o�Ai<9y���OϏT|\m�����m����V��������`,�ss�|�|���fa�2rv���k�>����J���q�i(�@-1�>8��.�ֈ�z#�:�xsXp���!q�p�!�@%Rc&��A�L��f<>b�y0|0���Ӊ9\ސ!�H�pO�ÆWvˑ�T9ה�8ȝ3�
2V�
m?'[�d��F�4|B�mҝ†�ݒ�#�i�;e8buTq�I��TyC�H��r<�3G�vN�s�M�]xS�;R�H܈����u�R���/����b�ol�˕�Qw�‡^8n�K�԰
�\^
���aQ�G'V8��OB��j8�mC(��x�����vТ(�Mj�]_�b��R�Ӈ�7�1��b)�m���
�KABcNBf��ϱ��z�Bpǁ@
fv��q�Jˤ��k�V=���X2��e-+�\?y���8�27�ʿ�8�qś8my/Y܎y�$�H4�4�/m�A��O�m�E�v���z�0\���G��I�z��yu��ֽ<���u��ͤQZ�B5��h��^K,7p~���~~�ia腃p���h�� 1��π"喆��6�Y�����5�4V������}��#�p&gur��Lq�P�:�
v�UnO�9�����
y�>��7?%���d����
ц���]����ʬ]K�Oas���&Z9�
�hk�A��y�����*��n�K�h
p¶Y㸑/��,ю;�n��ly��͊����s؍y�؄#�]G^��N�g_S7�����h2�V�0��{���hH�*%�hYI2\�y�1�ZH�2Q s��*�z���	�	�h
���P7KKn
�p��2�>�a�A�6�m�����Oః��x}!ž�'q�f�z؂_��O��j��)4OX�㎓FI^}A�R�X̕v>����e&�kkQӕM_5��=���l��_�'-��T����Xlo<l��]TK���N>��&������g�=9�LΪ��;Ê�UW�*7����p�ڰa�Z���Z=�n#9�RFbJ1��I�N��G������FU�Rn͇�Y�u�_����fA�n�Kշb���s��s�v��2�6��7)�
�%s]ac����v�<�^帡���LA�+�B�mmH�G��C��E�U]9�Kɔ��8�ЏNr����*ϋә�R����!����Ly�B�H��2T�8t�=*�1��2H0I���"������;��X�s���g�ͱ7��Ia���[���nn�n4���,�R��)XÂ��hH^4�W�:^��6��
�'J�a�yʚ+"�C#КF���x��;��j7 G�!:�`�U�$�z���Ua%5�-�Y.@�h��8�
͂Z��a������v}-��b��O��W]3�2P(��������½���\���(E�"�}���nm��͆gߛ�m7������]^�u���^u
SyLJi��
�r�N��j5}�T����O�NF���1Z�и�d�i{��jf�f��5}x5;�V����1t2(�[��T5=�n��z��-H��Q.��Dܮ�|$�F�6::Ŋ��me��!�AK6`M*��[�yT(e��˄��E���.��
�#2!o1~�nH�|p�̞��B�p����3�G�E�_�ơ#sV0^��m�6?�7����Ҁ.u�!o�	�ӟ92�C9<3N��W)q(�u��P�bE�ױ�M��q#.tfO��!���4�7�A3�HɄ�ͥd9�M��7�*�3�)���EMJSE�p4@K}�,~���G�)x
�)@���*�O���	���������]L�s�b��2Y��ޠ0xu���#�Z7��{�kp��).��k�E�Ʋ�a�̀PdTh���1��֍��
y����^�����t�N;8�l����8Nv�)�K��iik�Mlk�L�W�.'�{���gp1V4�q�.Ri��쪾����f�Kp�b9Ȣv�I�U���k�O�V���������r��-���!ƣ�i.ˎ��2���j�mF�]l=|�P4��_�u�a�#~.�P�r�V�e���|^)��'�9� �P�An������fy	tn�xp�8���@��튜��
^g��p����}��o�譫\�͋o��)3	���>��.tp���!�0e#�
X��t�p�&s�)��Ƥm����$#��X�:c�cq8Kp�q��ǿ��%X�y��)���â�mW����ԑ�/�%H3���cn�@5�t*q�Ou�3s8�8!3��8N4��5�0
^�,9x��5�m���:^�t7��*m�D�$:��M�ڙ���ݽs��#n0W�Z�ܡw�dz�e޾���RuJ(���Z�7H�)����.l�)>Z��-��x���v�&0��~o�w����-���&/,�p�E7���w�Jʛg�<p�s�z{�b{��XA�
��͠e���~[A�~��Y�pv~�y~VK������ӳ��ɧ��~=9pDe��-���b>`)h��T�YNXe�oiy�Vo��0�A��HLӷ7��@(�Sv �T�w��=ՠ�<�<x_�[lU�ƨW�5S�����r��L���čK���R=X��шf�o�ӏ]{�S(����PV���>��O?�կ	}#`��(R��*����0&_��W�
��8_�����ߞV��5,R,����N:(`L)q8T�(c8"�CСbc�pYDxG���4k�$]��f%��C��*p,��oFl���Y�&neA�l�&NϿ���E`l�0dB�LTS4�<��^�])�O(�(�����8
����(���4䶽N#��۷��ۉ8++�dA�;��↛Xt�ĝ�]-҉�a�g@����SFj�FOXFXA�C�w]V���r))E��&�����)�;�ե���QCS�+�f#�Oռt�J����V��
}#�C'ix��;��=+��ռ���ro�=�6�M�.�'�=?��_ŷnO�~�֜6���8?+UN.j�;�[4��T�'���'O�+�'��T��|�]N���ˡe$l���F1_u@�xӹ�P7���&�:(+&Y��
]�M;�B�FK�U�S"z(��Թ��7�9
=�=����tƘOs�8�K�
��b(�ȖHݸ4��nn��
3���O�NJ�} ��E�!ڐ���ͯA���Q	H�F�����
0����-p��
�J���h脍��uS888l�D�Y����j��$v�v�Oq*�6t��ȑ�q'�Ư\+�o�5���. �ϳ�Y�?w3E.�[E���y���RVJ���~����Ѡd���ZB!n�5
��M�KMW
g=X�{^��M������ 'q�vظ�Dу��ܵ�[w(e��2k٦oB�z�����,��>`���
;���D2I�-�c��������X��`P��7}E��"�*��-B�$����%x#QC���}m�h��f�V }o{���K[����1�6���S�%4��_GQ�"�g+�O�/N�Z7��9B78vJg���J\Z�":_NJ�T�4���-���.�NvZ;kk
�utd�"
�	��t&�)v�Ԕ��&#�é���:j���
���:��U�ܧސ���l�T&�z[�X6C����Z�͠=���9��ʓ�k��x��a�C�8�6ܙ�	l�7ң�)�_���kQc��qx��'Iq0F���&�ŀ�؅��Ёɐ��0
ˈ1���\��O�p��zD�<�Dn�#Y(`C�LG�8�)�_m��34�(�D����W<���z��<3^ˇe� jh]%�%�(p����A�^#��k�AIӢ$o`�{�цuK_���x�_����Es!���N;тh0B:(1�3�f�Yt<��Ц�9����s!�Nps<
��I��C�fue�N���O�X��x�ߧ�)���B�i�)��W��,=�b���fG�����i�+�������N-�Z�Z�2�ن�//�6�?=�8w=*����h�:��]��Y>�a��c;(��v�\J5������P�Z<Z�v�W����;9F���bř7�u��P�e����V#0���
�Q�Ps=&q�b{�r�L��ԉ���E>�
/hJjٮK�w��mS��y��<`?�̶hY�Ra����J}�B�O�	A��_�N�2F�ndn��Pï5�!#��mh�yv�8����!�����e�;�z�of(��y#%i�l/�����8d�f���Ƃ7X#s7�ӳ����t�|��gͻ-�Q���\��BQ���
�(�W�:O�'-�3e�„=���� ף�mj�j�1[7S]t�^ZxmM�ᄋ�f-`:�'s�~k�w��n�zJ��p��\)u�	��e�����\�_�ÆP���iƪxX "���ҿ�u^��w}�
ک�匛����|�`�p���
��73
G����6֖g�xM1g�����6��2��fZ5;i8V���vl4^�F���g���Q����%p3O�Y+��j�F&g�q#��Z68h8&���|�ʮ֞�Z�����)��;@�7��)"�=�����s2�D!<���4)���F03�$���&�v�Ѩ�#�]�_T2	Nkqq���
p���Ơ��
@È�O�	!Uf���50�ާ�+�
}	B7L��780�+;]�йz
р��n�H%�#3T�7�a������I�p�m�t���@lt�M�x%��jʜ��8r�1�77����T��5�h�$�-	��^��]3�i	��G_�1���¢�ٌ�jk��6q�T͵�8�9���9QT�CJg�TQ�>�ԝ;�O�m�6j�V�P���;��6�:}gJ��G�7�IJ�ݝ�l�n�5��<�)ˡ�b�
�[�����X$���ʵ`��U������id�K�l0�Y�]^�f�I)Ϲ���ȑ��g֟�����{�i[��ܻW4B����Z�!��\հ�����V{r1� �<�,<=�b����&��������c�&ux\)t��e�B��*�pI��v�~��K�F���Y��C����#�i��t	7O7�
0����Ni��#1�Ӵps+��mč�@�!s�gCFO.^ZN��5j5��Y�I�I x-�G���A]O�!�ЉgR{��8�#�W��;�
Ǎ�<?_�͕���F��+�X�+�eϥ����ox�t�D���t��A�����{�šC"�d�F�@���78dű��E��޸ ˇP
����A0tJ����]a盞+us3v�0�\���~�TyWԗ�Tqڨ?�2yL\Q�bڶ}�N~��RBH��'���(k��H]������e�*T�a[���r���Xnz+��^�rT����L>��r� ��,�;�`�wte;�t2����,n�EAV?��V6�]��4V
�Y;YZ��R�l�P*&cNzù/��3�7x�iF�ܾ�P��5ĂZ�7B!?��[ņ�~�cO�ƗC��{q�(�G�zS��J���$wƏ��K�C���|�6r�.N���8�U�Ei�?��Sm5*;�j��9��V��H��4kgWc�����	�}�G�A�
G��-t�chzK1spTG�F�*�Q�!V��2P6����I�Q������ȤK�C6���uU-�M���nޟJ�p&�
�x��)!n`�/.��r8� Д7|���S0�g���NX���
�����)�����`��0�[qu#Jrd����b�qbSn�w��Kec'�3�/D���Q�L3S7@HD+�
|(�	K{+Qb�_�Hˆ~p@'�1;�[��\E�quyn<1��"�9���is�?���
�@U�I�Եl�`���7�������m�o�����٥1�m�y8
���TڎG4�n8id���)�ĩ5��
�q�-�ܢ�up���B~����4;�@��l�T�_�b��x�X�����r���(ns8�+FZ��lz��
�@2����'[���,,�rq��`N�E�+d�N�.�^������~qy�[8n��`���G�/�� 9� ��rχ�qK�R�Uߵ�v[�5����}�ڭ�*5��n��}3��>Mu���Oo•�#^4��X�Z���Vv*���>
)�ݝ,�6m�f��I�eJQr��GX�=n��ac����}B���!� t#+o���5~Ҥ�a��/���[b
>�{x��
�)-��k4�r?l ��������*���y��	�,Ү^�"��H����;�y	�����˰��j#�
��N�@�Йl���0����lt����n�Qw#z0��S�IA�)��;��
d��c_Q5���q �I�+_5m
�Q��� o����۩ۆ�<���O'VDU��Tö�9��&��%�Jn�1�{��^�8�RΦ��j�V����`���P8������P䧌���].+e۰)�C�2N�l@㰖L��3+�Z�|�/㗰�&��L@=�,>�%�D�)o����V�X�;����М�Y�!����H�i�
ij؞������Ǽ����Т}�����&��k��p�`A��?7�i1��=%V)�\����ƕ�X&=�;����ٜ���|�P[7†b-k���
x���Xf�ǐ�0뫪7��Up�����m�}�_��k%��6���� �Z¦�
�]-�u���Ǭ��J�L�]��'�:Iڐ	���)�%�EP�6����K�YF�=��	9�Ձ�o(N��!�p}#m�np���˟�Rps��+��H�[\�12\�֑͟<I%�#�7R��ķ8��_��&>,b�0��̚�j̞wu��SWJW5*�a�~l|��/�VX֛5l�9[<���f�e�x���E�
F�Ν�w�[D���05],���`�z��	��WSv(b-'��7G����{Ik��Ke���]�[V"��ҵ���	<,$2�&jPQ`�n4��^�n�H�>��)��o��W��o6�^m����1a�F�B���u ](�]�=1��p�|�ؖ���xn�"�'6f#�#!�.
bֵ�Pm�<@p��!�|\0Н�4Niz��ۆ{2jW���D��?���x��P���M�F�7�b�|�*�J��|�^E���4�����P�۷���la� �̆�����Z]�R��t���X�u�#EIk�j	�zmg{k�@c�aF�]c�f�Ƭ�Ÿm٬�4A?����G��3��L�y���fh���F*I�:�U�r�`"K� g��b*m@<e�����!c��72.ng�+^�CǬ	�H���h�s�!2�	й�]�է��2x�F�k�چ��$i��NT��6����&p`�|p��s�n��F�Ë�1:pذ���	(k��WP����yYX8��aM�S�Kfi�"�x{��a�4LӢ��4R�����F�R�0G�\�
;��M,�&��\ڵ�yw+�_�k��z;4!�5�%j󤮫�D���*+h�8xn+�}�qQ`�P�eQ�Qc��1^1��eRzj�/_$p�;�Md���������c�e���7!��Z�Z�d�#p�^�S�x<�<�!CT)%��˭��`t�ȵ�]$ޚ�qíUN��FN|~~q4���	�(Z:],,W��j�F���3���y�|Vs�N�d�Sٝ�
}cQ�-��Hۨ���.���.Nε�^/[�P���d�j����vy���4����X��`�!
IZG�}��ss�`G� >�PC'�lV�yG��.R��&�k�o��$�
��(+M�)r؅�cx#�"�nP��}m�o~��R*���/#;�rc�������!���rl׬�%LV�d�5��C���%�2�%o��?"��+]#؆C:o��s�nf3S��@� �
�~^��2�]~�+jH���X$��!�KmT4aB�2c=
���޸s{���j��+[.F��w���U�K�\2�xv2W��C� <,UǷ������),��Ʋ��9�[�Jfݠ#�bXw����x�r�FU�z:p��`E�]�'�B6�J"�p����ja�p,��i�↟��S+�^IkQs��+�6��d��֔[@1��t]����~�#(�;�����V��I�cZiȉ{U#C���LF�T��P�E�_\��B��4�VǶ2�z������}#W��t)c���Jq�:�5�z�ЩB�ʖ�����-ad��[Nōh�j�q!h���?�nn:�Jls4<p��GG���L0n�^��m�l�%�a��k��7�H�58,d�s�|�
�F�|�o�6�~�'�D@!���~�8�u����v���Uv��7,�#���"��&�#z�r}�q��"�߂0���_��?rx(g4����Í�ˎ�t8�Y��KS�ӱ[W!�i���Sr1,��|��g���eu�-�TEC�X���7s̛2ͯ|���_�jTU�o�Jxz<�")W�C�F+
j�}���o�^�Tp�@�p�/�e�J�-,�Gٍ����,��.!̒V-8.��|L�Y�'���5*|;e�٫�.�kz��MZ��0�O������[��A�/bn����`e.��:&�$c1��L�&��U/���Q'eP�D��A�![e��>w*wfkSC�|��S�j�8��F��ɰ�ƨ[�F��n���r��X��`�'��lNJ)]|�wh]��Y�z��f1ۊ3���;ݮ�Ԓ�L����j��j�R%�j�6�r��Ъ	�P�M��_��>?�j��h�a��I���oZ]���~yY�)���M߲��`�7�7t�pPd�p�0�����ƙצ~w�����g0~�?�:~�	�!��!C��צ�� �,�#Í4I�?�b���`����7ܑ��ḙ:T��X�ʻ�1ܙQ�S��kuӦĴ���Z6�>�!���џ��@��!~ܓ�y7Q
��	�=ϓj��ϵ��2�����@�fG�7��Vm�j��/&ȥR�5�
Ѱd�T'�,�i.�ʆ
?,��\͉˻���|=<G	,?��@Y�����1�fn�~@q�V]�zБj�t�FI.dM�1
j�&w���@�Ȭ{��Q)#�
Ďw��)Ʋ���R���lpc�lc�H��hJ$A����F�\�uuS��#������㒿5�y��r�3�_�a}�1b7�#d�ۭ2:���`�v�;��`�j@���t�b�^�2�H��\��+�{��"5�U�U �q�w2�������54��n���Z�6V���D�� �V��ܽ�~������ͽ���a��άYpEc��	k���Ys�qˆg�F@���d�
~��ɣb
g�6�l�7��F+��O]` a�ݼ"���
�j����I*��a�"�ês$t�I�G^�4��T���~�`Rш�W7�6<�ލ���(��c�y/��-2֑��>Q�f��$��K�<{�p�hC=	zTt~��R�&j�h5�xā�����摼a�3c�a&�P�j��ދ�2WlB��
WF� Q�x)^�^��Dvy�RX-���wv�ܠ�;4v�T"��Т�!�+db�٠[�D�[GvX���!���P�f��7��L��t0�0|���0��B{���ެ�����¤ʑ�)��X:
�;A�
�G/�
`fk+6F����- 	��Z����p[����X��1h�A�]n��xt4�nڞ��>Ff��Z��l¾G�1��iٹ�NAUJ��\��:�U;q5��D4��m�5�V5g��b�QG�F�� ��9.z��F�pT���S܋���:��D�jt4�(��6Z0!W~�A�/n�Ǔ��6�)Ӳ!x(~�͵1�BD��6�@KC��ίI�|1L�곁#X����+4�8l$j^��T���g�x�&�� ��4�40�:�'Ē)���Fx���w�1��hW&} n��u8a�� c�\��,��sDo��9S�#8fu��۹�
�	�����z.��LfJ�F�5Z�?ڨl,�� �k�,Q�6%�D����B&�)��RK�+n���&�)�ڲ�(�BGb	��|P�b��K;u�S�����{�z�Z0Q>�4�C�ח3KKkslX`�@j������U�j�P��*��
�cx>�wR�	YU����2�F[��	As�8�n�T��B�(�\`kK�V6�+ؔ�V9��S*(������x�>�s����&�Wb�?�N+�v���DˣN��#�<�P�)����Q���V����9�ڧeM�U����ౝ���B�嫙B���G�F��Y��?M����d�i�4�����J���F�p%v�;�U�F�������#I��m3y����U�Ha�*0α�?!o���83�3�&‡�F�����?�hxj���C6�8ؙ�#�i��gTL��F�+qs� I#n�d��0��G��w��,RF�7bͨ�.�.���.��rh�L�ml������
F_.is��>q�?w��L�<�326�&Lg�5U����Fc�ɹ�c���,�1"]W�(���B�QT�Nk��{��8QGe�v��~p�5�Ww3��#��)�J-'�M�">{�>J��3��F�2n�r�AKA�P�q0�Dd��P��56�ٳ=�Ǭ��լ�
�n��)i�ٟ-+ $`�h���Q�J��Pp\GH��E�Z�y����rc��-�c���R�������lu�H�lN1mo�W��U�dG'��4QP�8@�$�,���Z@�J9�lx��<���vꨊ��R��x������¶�X��̺��h���hH_�������a�������m����`LI]J!~�B|Q��F��b�� �#x�QC��؅��po��L�,cu��T��3c!Gt7q��A��	�$�>9l��a��[;8ܥ�I*Q�,�S¦΍������SC��z*v$tp�L8^6�>��/�2���_���=���Ұ	Y�"(�ᢑ1��dh0��9LC�u��@�㸠^x�9Ր:�5�<� ������䀊v��f��y�1�{!s?o�
!��u�H�g,=�)n������4#��ւ��{'Q:�i'��,�!R����b��x��
�*��C$�]BG��v�ʡ~ӳ�b�j!�l"$^�r<�J�Lj�R���kI��~�w�_�"�yQ	�<�m���'���6�
Z�n�hǒ��-�Hfw�C#�])"GW@�3�71��sI=[���?lx4%D-&[m�{<�5�Jη�E���
��GC���T���D|G��9��� zԏ��h�j��h�;"ė	#��'*At��XA��r n�$��Ũ-�
q��SHQ!���@���l�
0�Ha�3��3�Hc����WxW�`K�`Z�G��;������s�:̄4����0�a�i����vY��l�Y�p#W����#�yfT�4�n���`z�OT�bm���}���3�n��;4��@B*L�("�~�L/Pxz^
�ר�
�f^[UG��Ӓ!�֮�Y�`��S�rTX�8U�Y���ie\��.���dD�<
��$��j.��t����[q*�YZ�y��ZH�v�V�7T
�u(�C}��83��J���=�I8�g sݗ:`���ZҎ�+�����bl-9���rUK��XzK�W��a4*��gU䤚�v![º�����A1;��P�:���9�m������3��LS��$�ٖ�E4�t��Y�E����!-W(�F�
.a���tG��|��ݣ�^�:B���F5׃#7gF}�np>}H�����
�S����qP����i'�u79@�G�f�p� ~C��G�E���o�������5xN�0�a���s(gE'F��$����I�A�9�:B��B��&�3�t�7�_S7R�\��J�� LFo%}�#T�]�Zr.������m"��'�oGQkT;�#��=��Ff����B�2%n#�
��"�b,�f*��7��۷Q7g�)��F��Eq�)��7"��܀0"Mu��xb�Ldn*�$�p�{�|��'9�ȉ���Z���f���i���_�
'^\���`8Du>�6�Ì�4z4Ȫo�w�QY!]Za0���<ߧ:@�
����#�)^�}u��=��S?�,9ne�mC��ˤ�����G��b��M�i^^��X��lT�j�T*�rE,�]n���];�݈�G(�n{�=���G[�]=����Fn�Ô�\���d�R�m�c��G�^��5m�4K�b�X��m�X����)W�S��Hdɲ-ny������mnjz��#��P�|I���A�yxv֍m�����ˁ	�;&���e�7���f�r����~�X#��`��yVĘs�wx�8�i����&���/��]�����b�d"�γ&�C"��F�FJ�)u�G$�E�jv27�pdC�3M2�E��*�338o�,q��k~h�UY��o��u7߆���M8!�1aymT�W��!�G�;ս�Ԃ��C��P�����	��/���2�#Z��:��a-�����| βo�V�޽��tK�b��c!�~�-Cѩ)�[��4�Q9!�� o¾�P.ˤU�,ۄA��&�`���)/F^o��᡻��i$� ��b!���� A�Y�0Z��k��)=dƱm9�ʚ y���Vu6�(��g��2�F�fP�V�\��G#���6s��zn�]iB��L�V)d�r�vT)��
���Ad投�f�ʕ��J��eҞ�c�V2�rﰄO�S�^� ��Ҙ��!�}�X��zz���Y���uЅF��G�);E��<>^Y�0;FN|hƑ�7MʇǓ�����o0s�
R'�sx�ɛ�
�� C�����l�XH�D��W�78�hҨ`���p������9yYB�H���m��oG�e�ia����S�7��XN�W����R�d��E2;b]�6�Ym��#<+�y��a�S�����~���G��(�_���_�W7���:��
�U���s;���hC�IH#-�*RY3mt��q�����i��%�p�&�X�=aMg	����i�%�H���)������[)�ėvW]�]�)�D����yTC�Z���<VQ�$�"ժ�@M�cQ�� ��3��S�����K3�a�21��K���2��-/:�P��p:��[�M$�o�mu��u����X�E�5�V0��KX|��o���n����R���8�X;�jʎ+���Z�Rj��΁�M�*�ld���'+%?��
�j	C�
U����+d�%e.�ʣ0`��A��e4Q��Q�1ȵ��Ӣ��XTu��g5p�/.��7cc�r����G1j�$H�d��0ܡ��7Ě.���7��k�RW~��k�7�H}�'�,t��Æt�@Vs�5b�~�װ��9�	/;Go��jP�4��
LD�oؔ84y
&o�M��J��RI{IN!�:���A� P�>�v������i��D����Ͻ��G�YH�	�@��<��K�<#v)b�Qc�����,����Y_f����8l*Jok��@0A�7E~�7�H�P>�PD�W�(]x��}��������P�c9�F��V�ɿa���s�B���j¡�λ�n����F�F��a�)J��ZX�;E� >�&l��&B-�LW�L�,g7;�����-�eBC�
d�����E�;
�Ff�����f�!R;�7Gh袭:�Vzm�\��e7�Ef���V��T��ZF�L5+\[7sE�PJ�-��N�R���j����l�h�_:Y*%U�.�
�FH�h��
��V		tGל��i�ʘR���RI���xH!�FY��O!u��nk<�*��.��簋��&Wl�M�7C��:
_��.sD�8��L�Sv|��o��W�)ؔ;3��	�+Ӷą�
����I�k8�������?2�޼�w$�#�,��R�\'_
^��B30��E�WCIe����ib" �M��Ʋ2�t� ��l��%�0�P����E�S`�s�n�����2�Kc�Ԓm#���&Is���B�Ř)ä�ph$���^FZڞR��}����㬸�6�P�N��i����x���w���)up�`jq�*�a�����-�4\�	���wG�S�k�rT4ИF��W�S	�������P����� X����M΃�Q�W�[�e\iC`�Q~�g��cK8>��Ivz]K���&������@tX�n<vB�U-ᨉ�oɢ��
j�;V���-,�b��C������b���.��97����7ZD+սJUنc\�Y(�0�������N��n�В�ͩ��p<��X��	�<@	Fg�u7�6�!o`4ÉS�Y�*f���aLd�Y}1���\U���m����A߈�p���L�qܼ���U��Q#�}vz�4X�dg��%ˊ�����j��G�f
�����7d"~s����c��H����${8x�G_����n`\��e�;A�F�dl@C��I��W9n������g��P��e��.\�Ÿ� �c,���ɼ'S�X�q�0�h,X�g��9*L�Pb�<�G�!|p��S��B��c>�j`H�D��P��sT�q|ͱ�h�Z^OQ��I�QdL�v�(�)rM�+~{a���o�8GzJ	�It8�J�7�kE��А.74�č$��)S��$���ԡR;M�J{�cSo1T����b3}���F����v2�id,�(԰��f{�ԗ���c��Z��l=o D�w���5@o�S����m9��B+i��B.i5|t�'���V����H,˺��+�a��A0�/s��F�U<�c�@��;���8�p�!o����>���Ǐ���x[�p�0M��,�-;�'50���̆���[4[��6#ndvJ�
=a�p؀(Sؼ����99lp�h#L���+�p{��7t&�I���G�U��7��΢���M�����H ]�X��.f�#ۭ�]^��!QHޓ0�F��BQ�G�B��
�K� �5�{u��p4q���`��l~s��TEu��؂�*%�� ��i��|��A�"��ũ�.��|Q4�e�E'Ci���(���j��(ˎ���5�����
���S�Dfgg���}'_�lsw����0���E`A��
�۰i&�M¢�p�!%U�,B���+'7q#�n>[���q+�o�����ZUZ�T�1g��k�CG<��:ź���n�SFU_+�J��� {�m�X,��j���o�Z.2J�tug)�!�mf	l�+]��˥��
�y�xtZn�6y]�n�<xM7Iۣ�NH�=/b�4�m{^#��8�2@�Ug�
��AH+�����C⌠�PUX;�u'��ysec����)�t3�H"����1w��
;	�{&�_�	���le�CpE����+�NP�_�	��T�pg�a�Όc�w3%:�G���S�H��0�cM�76b����$��0�HS��k�5�����
�!A�P?�@Ϳ�}�5��C�?��7���
x����K�܈�|緑a��jH�H���ף@�@��"����6�`�7��p�DP���:��������mh�y/N�hYs��@�T��p⎑�X�J�+7��g97��+���Hln��)�I	!��r鐷��O(4��g=�8���o�7��-G]�3�%���Jd@ܹ���v��|_��徖^٤�$�ج�N�t�6g��L�5p-,�۲hq�ٌ�b���TNΫ{1��m[����8�7��}
���݃�b�[q}_a�n��}�F�JM%���_.�]�W�Y�wHst�����>�V �Z��ۈ�Z7>��Q�׉t�F1���FkwϺە��KI�C�`�M�m|���c���
���4����7tF=lrx�*f�7���kRݰ�4Z�AB���,D�Ԗ�,ډ6�pao	q����a2_Ō��"�LTM��")OJ��L�C�����������ix��@��|��rČ@��~nޡ@
�3B��\7t+qC���s�nm7�a���F5	+�hZ3�QC��TRl����"ͮ	��
o	�a��4g�P�Q�m�j���ѝ�B;|���AR:a
� �ǃ!��9Hb��j��~Z$s2)T�$\��dұl~)�
#r�ZO�Ǒ��H�`��P`q!�v�٪L�y���R�a<D��9}�����g�ʗ��'��W}��$n%���Y��Y��5GkϱT�V�k��j	C�[��^�m��-,���'�/�_F�*�\��X�ՠ�7�5)��J{P�۠�iZ�Bi�F�;�xF���[$
o�7@v
�+���h��������(�Lc`�ɉ5�c�p�gtt4��ǃj��E�J�xBc��S��C��鱡[�d�7]X3��Q�.v�C&��x3$�|�)HsS�H�`������\� LLF���ڰ3uC{�ߚ�d��76�7��~7�O�#Bó�m6t�Y�˟�YƎ�M5(#�?�Oo0v�H������ �_G���_����v����8zoX
�×��>W��F��w~����!�D�۶�$9T
-Es����ڝEM�o��ݾ\�,����
m�M� 0]�Ή�lX�9���99��TJ�-V�N(֋e3��okС��
d����\_V-�B{�RN��7R)���9���A{=~knm=��!�쌨mVLh��’�dFh:�����"z��Kx� ��X�B	UF>��v�GѲ���ߜWHS��e}*����ڴǶP6��m��*�K�z�pKI-��x^�ʿa��=�91��pߊu�yGU���N!
���P��jno��Q��)�u��D����w�e�&�(+-�W��6����*q0m
����
]�5w����A�X�9�|~I]
���%P1�͸�Z���߫�e����������۝'���p�����ЅJl�
E��*�+|��9U~K��T|�<��4)y�@�e�x�>
}�㋕;@����6m���sh��$ ��w�����A3�b�/������(񆇣�?{œ)��U��*��[�su�����PƷ����W�&�X�NqW֥� [eӒ.*��y�g��L����4���Wl�p�r9^8�JX����<҃�8qˀtY�!437�nf=��5�6)\d����`��x��x��,&���n��y����,<>�C��E��������.T�
��
b�>����?A���,���ۛ���TZ��bKC覸��A��=E�5��ZUnٞ��{���Jfy'�s�.��J�tB��(
�ʂ��ḧn�5�T�
X��0��3�#N�K4ӭ�CA�)-f�b� ����������*ȍ�*r��<���큆R �\��x�-�v�U�y����~c��
�X�Rp�S��*h�l_��Ljʐ�)m׵Hܸ]��1 ��H�q�v�rc�o�r�b�7I�������W�:0��� 63�x��X�.���!��|�7›��ސ���Z���F�	�`㰑��6�l�Ts-&�����(IՃ��4�{
ր"��"����t��$��aA^�9����+ϗ�������h�5smq�M��J��_}�e�cAc��g/������$,8I�sJ�i���U�� ��ur��4��Vͧy:�F�ި�Ia������:��QMZ�
�K+� ���_Oݾs'��"s*�޾��x�n��ks?
�X^*�2~;Q��@6Z�l����DB ]ȝRU�c)n�U��ӄf��F�
�*�jq	�V����""҃���Z�DtAY�x|9�{Q�c,amy�P:�o��_�n�Ji���
ʨ�Զil7k�.9��e��~��AZ���Wʅ�����D[���'�7Ͱ��Z
����9V��:򇭆���>
��1�	��@�W�"����pP��v��^i���j2�Q�59IHˤE��@�Psz���LX��8o&7�lq�����+u���0�L�4�K��H��
CL�q�b`���
�
�d"����O�H	؈&��`�,��UY�#�p�	ƅ�p�B8�[t+�#�Cd��+�1��X�t
�1n��z�iCܗ����x���J�_ěo>�����n��
��Jpф�j*T}��좬��B�T���fRJ;�4P!S�nI��v9��ĩ8$1(�����(���(�Z�质�y-��A��(��B�	),c@i���p;����HMq0�/���FG�b�n)�|�ri���שX�Vo�2�
7��o�ms�>M�a8N^DM���JQ��	�����.?<�ݢ@U�!��	05Ag�����_^Na�`��1h�@��Dy��_),c�ya}�Es��C�\��ӥvl��cD���V�|
��#<0,j"���x8�4-�&q�GfDCR��Ae�Y�ӡ�f��@ed��d����
Oǣ���ʃ��[_�xp2�=�K5F�1�f�&
��AM���w�K�RV��-�+|��u�Y�T̀,�_��w—������𜔌ܐ1����t/i�84�7�������lG�X��'�p��3�+�o�?�;��6ν�����j�,���U-f���E�����k[)Ǹ�n�b㴶åח&3F�b,�が�xB3Ɍ�Ӥ��E���+|~��ȏU^~Z���|�9�����X��Y�p�(��I�s+��t��O$<I��KR/���u��6,L� ?���<oS��C�'Kݜ����"Y�7�?s'U�w"��G���@	�����q	�5�Üð<e�n�,nz�nI�x�oH��N�NI �>�X����gm��{�R��_|0.'R��>��$�#ې�&y��=v�q�^�%���d����JS��D��C�E�:s�Y�����#���u�V��T8:Fbni����B����h�0��`o9�'�e3��ރ��r��V{tq��٩�RF�x�]s52�Ց�lX!@��YP�)���++�b��0_s��mJ����&D)��vNLy���2�-s�[U/[$�
�d��[�p��D哀V?��!�M��*?�r�^�N����mr�������p��;�|L������T��q��н@^�])�"2���	�'n��[7n�`�{y�����>�&N#w���N��+��)���W_���F��hV��]jqca���c�ƲF�˜��S橵�c)�8Nտp�6���ܬ��Hg�~�~^�j�*X��8MH����1~i�/���o��f�J�����V���']������]��Ӱğf	.�F�cN�S.�]jeT�2&C�&����)4��`�;��h�*ٲi�
(�Sb`�����H
���ѱ�<���Ki�є�Ps-"�(�>>P��of��R"u|f3�o&|!d�0O����a
�RZ��P�S��N�ޞ(;#�>����^�� �rho��N��r�x
��	K��B�y�27{=i��t��;ʋܽ��qrrk{ekc�5�K��!"��4Zw��Q]��0φ����#����h��W���I��,�C�cLC��o0,���Ka_q8ۙ
,��R�X�2��i�5'�a�g���.q�}r����j��f��Ƀ���R�59,In_���u��V��ƭ�%YU���,�l#y�F{'��2;���պ_Y����VJ%�����Sf����k���AcH�	s(yӉ��L1�+3��Bȴ:Xyc2�]�(�nqs���ipN:x�i�/�8�X1J��1��H�,�@�~	��6������
��+�_}�[�cT��E�f����*.�{�(
��;�(���S��������3�$'�L�[NL?76�061�|����
���!рwL'��A��������9��j>__�)l(�U2nf��	I�Є�xդ���ǟH�~�oC��-�*/.����I�-��J^�
�����B����1>518��"�	PF�
ʋ��4����*���+��.���#$��U7�;�ƣr6��C&��''��F�H�g��I���QH�����v�O�~;��}�ς��5���#3�|�ոT�7�
�4K�ZMR94�L���|kv�oجxs9�r�D��CO�;hz���PW�W5�r�N%��H���D�i�̗����r̖���=����}����Oo�{O�Ŭ�E愣����+�ّ�����A���c
p��|t��惇�y�T��9�a�EްFRT�Db0$�6�N<�W�R�%��2��bE�Q7�8�3����i#��mT�6�4r�um���l\U�
c�mʀG?3����:S6���O	D��I,l�sN�9*�����?��߾"?��J��_����EQZ�lD\�<!�~GP$?ʿ(�0śo���y"��ٺ��K>��7��f���ci��7�Ñ.(DIJR�ܐ�En��`�M(�u����/<aȕ4hQ�'�<>��yP�ň�4��j����
`�9�53N<�@QQ�CE�3r�Ȇ8%Ǜ#?KM�O�\H�X�w�xB�
1���D�M�O��_>T�]m�����J=�`n�,�_-e\@�.�2'�8�1�׀&�oK">���b��(9���)?N�/�,��5���f�Q.%s��~Fj���\����֬��qn@��F���d*[���<�h��)�W=�����z�e5��r����2�l�iV.׏�IJ#x5uiw�4|���֡����1n>��X����Ǐgg�fg�V�Ű?Y�p�x���-�.�͜����9�d](����lʢfz`i���yX�מ)�v��	�DY3io�;eahl8L�XW�U�0y%����O�bi�찦C�S:zs�sl��W�ә�v���7,��"�k�fbĘ`G^��|�>��H���W�|��^?����p��mȄ��q�TO�W�D�P����R7��n(����_���1��87I�\�������T�s?A�)]#���LFYU�H�ܗwK$AW��b*$�Q�T�(ۗ����?�s&�H��1GMw�e�
��<r䩞�|�A��@��i��p�YX`U�D<���_�F��T�����[b�𒀐��o������ZS����[��!�d\W��X����(��wf��ej�~I�
����l3����$m�	�Y4�G*5ֱ����~T�er�+���-
�!�k��&�����0	�7Wf�)�b;	|8�"�G`12+��e����{7$���\fV�\����p1_-5>c�Mc���4���{D��75���ƗҠID�����A:n��Zy|g�hA��
���'�33�ޅf��R����:94y����1gn�4~L{�`��CyQ&�m�
�i�� x�b����ppcĭ��q��9��*;������D�9���*S�4R�̨&#�T�I��A�
7o�-��K�q�����w����=�A�C�m�'s~�~�7�ُ��o��']���_y��6�~TQF�����Bg����KD�9H�N*��&$�DI_.�)�W�6'x+%ǝ`��z#�ue�
�V�D��E~J���7QiD�J��t*1<��C	�NL��	��6_(̇����"�%>Y�_���Y�ş$���6A���8ш����
��趎��T��\�^��r
�$(Տ/���Uʈ�A/�����#<��V;X��WιA�)�T��O*k�����`��e�,�J�7Z�L��1~�"A
��b��n��� v0�vR�*��^������s1��\ց�q�ݗ� �C��M@��ͽ��+S\�'���.y�t9�"���|X�=�
j���08T�|r��2˚,�**���Dm(�QM�f|#e�o���da�`���M)��p}S�}8�:OmL��Fm�4k��G���S]�Ŧ��NU'cv�SNJ�2�u�hčMOY�X��a]-�&��a����3���_S1S�n���77�6�R��l"�X�d�|�/C>YS5<��cDƁ��<�=Skkk��o���/��S�\�DŽ5���1A�}2r�!\ә(Q�~�HʹKo���]J&Ș�v� E͋n�R�hxN䱤N�g��3 ��2�X��k7ǖ��qV�� Ϭ���IDMDcҞE�!�:�ty�c�!���J���~2�D��u��"��E~��4�B!���5&�m<�~�9�lղ�\�%�����ҢD�N����S�* ��to���`��奩��CP�2t9�nz��]�$���;9i�d�X}7�e��ʍJ�!}^��Klc�)�0�L�Kv4��]�j�߉ɴ��jCsi*n)���’���nl�ޤp�?����n#��/�#;��mzz�z�ڄ�[�0�xʫ\a�1C�$��B�o��bgFmyLG�����Xx�:�:�p@�7Y��l/��
���7�'f�`9�6�-�a��N���G�͏3���想�)�n��3��pl�.ܶ�� �h/��E�������A�kl�6*�-\5�E����	XQiq�?Θ�#<�Xc��WJ	;E�Jw��I�:��za~s���k//���	pf�&��B���"[Ɔ�&��_��F�S��d���y�����4��8)hM�K?N��$�uP��'�7����`
Od���$|��=��L�NVg|��Q5k=A->Q�#T@f6�#?N>��H�qfx#(��41b���aޔ$���\
=��?|�s֍�7�ݷ*{���D/�gaN֗Re�?��O�R9�}N��Y,fUf3	G�� `,a�Ь�z%2U͕��(Kx�ڬ+.��{1���=��fGˣ��[�a:���C#��Uq�j�V�%Z}0Oy�j�R|#pH��kG����Dq�d�&K�b���n~v��^ n�2k��Ar���z��/E��.�9�L��f��Lݢ��[��1W����|n<?o�x��	�5��i`2w�6��_x��Oi�p>C<%N��HN�QjMs�j�;��9����씚*ڹ�ٿ|
Θ��a|�"��I��w	vL�V]�r>�����옋3"���}��}��P	l�5�HO�Gy�
�Oa��$����m�2�^k{�:���ݼ������鵗�677_�_SNUa�d~�֟}�HNR��h�iV��S1�93S`�(r��Lh�JID�O�5��%x&{Q��,s􉃥:��4'�66A�(���ތ?S��J�)J��sbB��$
��OD��?߸F�<C��1h�Bfp�M�
�FOo�%�T�d�DD�$���o���ù���8vb����\.d
+@}��t0�������Eu�A��)��6��p��ÍV.C:=������p��gk�ˇ+�^8���5>���81�P�RdAV@ׄ�
�;Ed���>	M8NP/�]u���r�q>��_
ʝ�����F����=\�����)=Ƒ�D>c
f��z��a��u�	n�]�͝[W��.���P��&�ؖQ7ȡ��F�)k�eMh8�����C�3slRܦ���`�#�	3��H�.ucRS���15�F�t��@Y"lԷ���o܆t���;����<��:
+�حh0���s�m��ړҼ�}M�>����<���4�!��Xc��5���'}��mjEr�>юg�Y[}�W^�4����+R��+��KdP֡��$�#9��\]`6�|(���NR��$Q��A��X^\g�0B;�ЊD�cd��=�SK�^�Hr
��phR12S!
M����x���vɔSX�c�}���c���£���1h�n�HFg�.��4s��_��;��L4þ���K�I�Ͳ�	�Q�waThM�)�7R�Kp���"�Gu��go�V��_��S�璣n�혬[�f��?ު�
'��X��s�LL���hi���FgR��N�nP�o���G�ō�Ɍ��=N���xz.?$���ҩPOC(��{�sfڴ|vh�b��h�pd�:	���t�ц�5���&ŀ�����A�35���d�Y�S2�M�Bd��8e�6
�me<�z�S?�ս`W�!r8䚮��>C�:a�����P������8�wp�,ol�FOŹ���|�X@�K��X#D���������R�/��VROx�>f����Ek���
�-�浿|M~P��'0չ��	
e���)_�1����y��'Lݜ��,,H��{�g�k�x*�Th��h,O}�f
3<(H0���&����	'��-���8�%ћ���'1NG�;}��(a�$�1G�f�x�����@
��Α!]��$Q�j� 
}"�Q�tE �'媿<�Of��
^DOL��gl>���t���|H��3��7�z����8���7Kvy�q��K���M�4��Xa|0��zL
)�C�{����<�����g�ڏW�f	$����٭��T���V����ŋ�+���hc�-3���S!&��oڣ�!k�H�dz�>�FU��Cu$�!F��xzs� E�h��w�у)�Q�M0�&����Q��OO���=���L�Cq�ߏ�'�@Tg��`�����&�$��n�hϲQ��i����X�����-�ޝ��)�71h�:�WnSJo�RV�vG�hn$L|&VgDռ�V'�&O�S�
�p�p�t������9����9R���Q��{�1��۩���0����r�ى5|L�L|�W�|�_�7o�Ҧ��j3:v��S�KE�(��&�<���Lfjm����d~ᙁiI�?3��
1�*p���#�̀�Y!� '��O��m�

���*)hX��Rȧ*�|�m��[b�i��b�U������G���*2>�:33���*N�PQ��v��B=���.|��&�#��
'.5�8" ��|R֐����zG��u��Ã:x��xE��Narqc*�^��&�*L)��i�Ɇ�j������M��uЬI06M�M�|�s�h� ���	��;���+L.1
�Z	e",�_.�Ѱn��c�>��i�w�
I�T0'��坳��W�i�}�V���
�/5?�Q��#*'���⃛�(�Kx{�Ԁ�"���n�լ���2իup�>\9���Ӳ�x��l,�����ʪn�b��#���T��/�Fvt6,'�*޴oݹ�x#f��1��A�DPk"�lJ��4
6�8A��ҩ�9M�[ycpqf�V6�	�k���6ڏ��F�S�O�k�u���F�i�����0�Û3�Q�ԫ�R3����A-j@�:i#�I��'y4z��g� �‹�.��67��$�^|*�P�c �G���AiO�~p�0�I3�¤cS��Y�
��a7�q�*'E�<�d;������IA�6ʩ��M�|&�	Ӥf&gƜ�t�,���d�Ei0�]�=*V�K�9�Q��a= ��с��'�������]D���9�h8��swȉ;y�K�n/�N����z�kyύ�:r��@%�,
�T�38J�uf�N�.�I�A� �73Y^��,�������h1J*ɣƯ2��4��7v��Ѳ��O㨹�|T��k�M����D���T<>W÷�;��l�����cp�i�	�"ةg�ǟߣs��@�-P�n"u�n�i�����K+��G8N''���ݷ�����v�=�W6ʒkT"���/	��[GM�
�!8Mp��n��2'38�}(���:��g�(eD���M0�č	��Agt����H�j�7�
�����C�{o��	��ƕv�8L	��Fܜ�����'_
����l���%m:�ӹ&-��زe�Bi֠k�Tp��,����E���\������̒�E�0�]"��Q���>P`���or�8�']�����p����%)��ŧ�;�"×b�ۇ_�rR|,;�x���e���C�V�jAe@Π�sD���FL�K%|b�}������$&c��^�8�i�$>��?|���5���� N�-���\]&t��$�\>��
1����3�c��6�G�h*�u[��rs{k�I��9j��<nU�B
��,J�^��G��r�*�|i��Y��Z���vd(���$"<*I�t�Ŝ��J��7�_����f� �x-ӗ	��'PD��Q�Ӽ~��|�
=�b�^Ǚ����O�Ϛ�����ns����~'�7���lP>:"^|tLM����2��nr��0������.A��H�fK�h���b��!7�)�v�2��W�rm��Ѩ1&G$��8r{��Hs
�
q���+��ba��W�6�X�i�X�X�� vl
����T����l�=�6��Fl�>0�߄��)��4�5LW����͋O/l.,<��9��ӛ�k�>�����}I$���!��f��SG�p3���3\ϟ�A ť@F6q���x$x%1�K��r�D������q$�#�Y�E��&��2�\�xɡi5�7%��t�4�㲜?���w]��l���D=�F��	�X+�����y�7���!DzGo<�z�R��
e�ɨ��i���դ!��^Z/ֺ��֘y#��ǵ��\���O����MS$���[��j�����+E�T�hs̳��2Z-eU�8qff�ǎ��TOg�{�Lv��Ʃ��x�4�6"Ā�o0?��(�9��'�����O�'tU�6�K
Ka��H���Q�4�w���o^�u��!Mu�s5����l8;���/�2=`E/��}f�q��LGo6�q�nBj�Zx�u��9�6��cĎ����k�w�-d�ڢ|�l�No��;��XT|M�ؒF���1��vD�6���i�֜
�X���S6`;͇��,nt��6K�3�u
w3���aH�o�؝2O��9��z�//�?�+Ϯ~c���	�����M�Bn��h�8@P2����!�2\�N�q��p4&N�ɉ��� �+U9ʠ�	(�,G�j@P�#�G�]��0��L1F��zpQ6��MEeLP�N��R</E:q�
Zf�p�?�,G��.�xz'���ir`��{o�C��e��:H,q뒓�2y��7�������$D�)��h��RH��Py�<�LJSA�U/o�	��,N
�%s|�N�?̻�x&�z� V,��޸L�����G�F����S�z脩]��Q�,���@�s'�$r��m�l#GhchDZ���7j�l��A�X�+(P7=^��{�>��*��[��LIwy�Һu���������2�
6t���8��Pe�|�r����S�Ӽyg���2���Wnl��7����0c�(�	�(�X���::fl�)�n:@0)����Δs��]�a:��e�c�e�n��q(�^؜�?�4k�**{W����GJ8c��gQc�(����ذ����Y�IS7��n~���ͧ�����^xqmaua�l8�����:)��-NO�E�4A(F�H1ƀ��L�M����P�+>��Y���S�pc��yU���IbY�S.b4��=q�������{��T	�I�56�6��;���#O�����"���8�Y%2�!�1#�
�	�xyX�X�ȍ�}覝��/1��r�QĠe�)׮�8�^�̗�/ߓ�2�Yv��²�]S���M�^�)�
�V��I���B�YX�x>֛)�jS�瑉����2�F1J虾oσs& ���KD�+�5��L�˗�`9����&�x��B���Ts`
v�&�\�*ܤ�o�ԩ7>9���f�֖���[�O�NN�� �_�n�\�q���#��	r��R���7��T�&�y$�H�������7��h�̗��Q�0Á�Gk�[2t �T��:C&n�zb=�cT��H1�Yu�qc���5_�Ji��씪#<��↓����ӯ��5Y��Z��h#Aa+k�7t>��滾'�܏>�Vb�~a���g�1?����$����/ġ�.E���Q2�v�"u�7�ˌM�|��?!�kzD��e�/o/�7Aq(P���I[�x@�o28M`�/�;IR�Ó"�-3(��z�d�$�
їzUO��LHѲ/}�N�
��MadHB>=����h/U7��Wޢl�<p�%)�G��`�b����#�&��Έ�!���0�$�.�F�����Ǹ��.5�Ǎ�1��'�:�=�X�}tk{dk�ϖ�*�[��b���^��o*�^n��\��>��/l"�8�O�);A(G�ULMAu!�ĸ�h.?���8Ͳn�H��{N��]�`�0���HVI\G���ݓ0���AH���o��:&D|Rk��r�'�P$]�d�p�9�Qq���e*�d��l�R]�7[e�B��v}#V�gk�أ��
��`#u��Us�,��5.�t2�����N�)�ζf�ĕm����p���X�r`nV�h�߁2=K�`8�Egu���ac���((ҜJ�Aq�b
���7�4u�5;�#t$_xq^��^�|�٧�~n��u6?3��D��+?G�Yv�7e����LR-�9����d�/l �)N�N�%�#	�I�]R�O����Y�K$��<�RA���d�;�C�3�jb�c3��}�iH��do�h��3���#��:(c)�L�����eF~&����H�Qm�����`"��$b�D���bJ􀸆9���AB�3$&K6��|"!U�5Z�W���:�O�n4â�덕i�+俽�ё�Ű�r��m����֍�V��`4p�Ҋ(�ˀ��iş���"��8�R��Z-�80���Z����z�}���b{T�*n0a9�	n2�����w՛�p�2�퓕��[�7[�x\����f�<T::�a_��KKjJ&��Mř�<�͖+�^��͛���m�>�!�ʭ����YQ�#���4`�X��Rgq�S_�tq:�*a��z���<e~�tD���
�p��
��~acX�ɘAOW:��
��!
/l8��m̤	�X�ؠ��O�d���1�F=yr���y7�r�Υ/�"��_xya��6�)�Q6!1�`�M`}"2Q����H ��$�ITQhC��G!�b8TqY��-��U���U,S�h�'��� �a�1�3	:���8m��b�AJ�'�1&�BºRu.h���\��a*�Nϯ��שV��6�.7˛���H,�%\��G
��s���L׀	��r�(�fbQ��~����#�O�)�m6[�:�
7=�h��������+�
�+���
i��b��sU!������hQ<*��4\	� Rg���j�y���q�j�\\0(t/}�$�"p�۳W�?n ��'�Np�`�F����=j�M�F�p
{���#�٭��
��G[ǂ�<�&�茏�,��
Lz��|�����›0l�f+���x>T
V[����n4d4k@
��n^S����tǾ��K��S���ƚ8$f�ny4&}Q���p.Fl���O?�3��2yI��6:.szh���;;����_�6�O�Z7k���ة��WK9��9���|�YTB�2�����x����ap"�K���%��Z�$�$�������B
Y� M����V{�%��p�r���sN�1@H�-��@�.�d^ֽ�	��������D:
�;!����j|�N��b�!���o'�GZD&��u�O�ŗ_{���t�e�1��W&�!����;�b-|!/O��Nh�SKK�%���sY��͆�HK�A����h��a���x41\��.
��{����jDX`ը���q�b��:i�Y�_E���|���QT6��iL2�Q�]���lgk��7�󫵉����!PN=�0��=^d${3s���z:ˤ�lm���5��u�f7���[[+0f����7H�{�h�z�}��Q�a�r�+�b2��Ô�fëT��|�yM��~LzJ����p�7�����%
nhcУc�\=�\������3�f��e�n�a#�n���3V�p�.����f�{�
�h��]Us�T/3.eÝgfo���h��Mw&��}�Pw3#ݘC3�tS;$f�+:B;v��KN�P�1V�QJAX|$Y�$�/A4,���Q�p.�q҄�#�)�����#��"`䝹�
��%{`�Jl�E�
�>35���:T�dj�5�mj*��0Зr")0!��T.24t��I�F�j���C��h�أ����<���y���a�g�'ˇ��]
#D�b|�.�&
Y0.GHM�WRS�\p���3�i^�8ᲛN�o��l�fr��k�4��<	��[!MR
���A�����#"�����Qb����N�4�����9{%_��8�f���J���)2�.�~�hjDx����0��v�R�\�?���'|@���F��خx��^#{ceeq�썬����=��C�H�(��,T�]���(1���bnʼn��K�Y��w���S7�]n�5��X{SȢ2TX�'&au�7��J�+��F�����f����3��Pƒ�jt�X�[�l����SA��imT�77�k4ol륾�t�l�
SjcNObU���GmL$'���f��̒!40��K1��0
���NI��%%J��$�E�J��-�z� �A�pd�d\b1t@����yS�R&^̟s@W��e<��aٻ����fF���	��72$C`"��ǀ:��D�!�|G���O�"�ګ�����9�_;C�/x����|�Z�Hg@`I
�<�&p�j��腺*5�+� ����7�ut"o��99���oUF�V<�$O�8�'�Z�����r�4s4����h���d�(��&M�q����1�p�?G=��lfg�рB�.R����S����=:K�
���ĸt@�����\�1�QbpP�����mR嵆�TGG����v�|����Ջ�����S�&��6�S{ü�|j����Ѷ�o����6i)��(;�J�vM�ްF@��)A��$Z��8'�[0��ǚ7g�
fQs>xc�MW&ʪ��yMc��
l �-� 5ڣ�,wQp:�t���r;��6�}��.�3��߈=�U�g71
�	�S3���=�|"�*$dbUJ�Yz��0��'@Irhr-��>K�p��Uy
F�')),�B����dɗ�v>`"�L$8P!��n�l�5�pi���S#���d�:939ymgqi}��͐�#��^aj��n��΍ү�U�Di�tR�hD� F�6�W�v��n�,o^],�72�$�@|��/�
�J~+�!=�ܘY7�Vj-pG��h4�
X�����4K�<h�p-V��\Ɵ��C�Q��-�3��,�!v3�9���z.��Hѕ�"zG�h-5#���Z���s����
���i4�GG�?8���p��F&G�L�bD:%HH�peܯ4��A���,zi�4ځC�ldq�F�����ko/V���6���FI�娚L����yez�G�F������7��W�H%��d�s�(�2&pã�03��I G:�
j�:ϻ"8_�Wu�T��T�B�v5&T�ݐ�[��N��Ɛ�`�rQ#��15�F��b��7��'��ϷF܀n��n�<���u7�}��V�6�-1�ܛ/<5Fq���L�7�G"�����!�
�d-��]B>D�$U����{�@
%&�9"ӆ�
�'��E�D�e���Uܔ�Jy���!�2�4R����f�FFfXȴ���:3U(�JqB�N�
��0	��aH�VW��~ETE:=�0a�����ר��g_s8�.R���
�L'�U��B��O&˖��4��0�=��#�԰�\j��2%�����+�7���ȵ>oy�3�+a�Y�v	��k���h���dBp��{zjp��|���u�3�i�FΊ	tq4�2zUR�}�c�&mT�7��
Ch<��n���
Kp#��H(|�	���J�o�
�n2�=[
=�Zۣ�7n����B�5LJ����p&�C�������+aȪ���oX4�m��I��W�෻C7r(�*�c���3'�����q�14M�F��S�؉��lu
w�����sQaPc9cIc��My�5ԋ.�����6r����I[ژC��V�ts�|�IW7�}������;�뛛�;�/��+�x��_yq^j2A�����yY�K&(��C���4/ ���8���Q��s��)J�5%�=�T���MM1�8�@���x2�T��������pj�Pj���X4>Q�;5U�"9�x�^!����/%AS��]���W�Ҍ��fN��Sy��nO��Rq����T�ĴG�-'�S4�^>�7Do$uĕN�]|����"��v;���D����|�n�Tӈ�n�^�����)���e��UV�5w(�f�F�Ķ�s�*�ޗ��_Y��1}���0�I���R��������%�<�>��f���+��܍���ª�{lΔ��/gc���������^���k�B���u���_n1��E�0�2��M�YWp��3�T�piG�\�-3nY��b����ý$�O�����z��U"G���.7��ƚh0#���b��3���6ݮ�������y�F���-䳠9�t�����
��G�bl0i�7_ӊ��/��U�*mh��Yp�]�%}{�͹��wO�
��VwvVWW�245��+/���˲,S�s�?.���n����<!$�Y��T�w�p
(�GU��4<U�x�e�B&��<b�%�,Y����p��g5U�1�P�c���ృXq3�€ݛ��������
�RLjm]�"`�WԦ�k����)��*�_�f9��� #s�:�3���z�r&�CƇ6�q�탽{��I�Β܃��,�9<��=��tXʗ�t:�g�/T-��V*e�E6�41Q/��t��җv! ���l������)�I�i�k���|���c*���?��x|��5�`���H���Q�J���S#��[?y��i	nr��le�pc����񳗚l����"�S��nB�{A@_����MÃ�7.U�R��sp»FNZ��Pa�G��
�p��(��mf�;*y�?�ƂƺQھڢ����Y�t���<o6���֕�-���~��BY���MW�s@��Q�~���S_ʖ���:X�/��l�O[����5����‹c�������bp�-q��.�Q,q
o��I)M�#��.-_'��NTr�@U4IYb+���%���gHy�y
��P~�It�T‡��$6̊���^�4�F���Tqч�)���^�VE`��i$q��{�#*f��њ����moPz�����l�D��e$��N�����xlj�����J
Y��d��Npb��wk��j�::o���EA��IPWt�
,G�+)߸5�jt�90����0��`qo�A�HXX%���޽]ޝ��W�u����w/7W����[��`'�$��+=Q9�[!�6��N�Щ����L��ug�p;����T�90#r5��[&�l�ȷ��5��Y�<,£�\V��Pq<�'|��ߓj�N�5�
�1�y�kܼu7b��ϸY�s���1͚ne��&����d.�ue�&n��1'L3	��,E�j2���6�5�~�<�� -��n:��K�=����d�Vפ�8���W�|�W�z�&Q`d�k&�Q&����ě����&�81U/tWI�8K$A�bO�����*R
Hr
mC�G��pȉ�E~���%�)�"�S�pFʙ43�ե���L��#Z!{�մ��)��p�eӧ������	�q�A�3��]���%`�t��>���o���t�L��۩��CJ��*�p�f��l�ۍ�a��2M���$��S^H=J6K:YD��"rTQ'���%yr��EyC�?r����-��7��3lMf%��QYr5IY-kGiճW�.q�}D+����B�>�^�`������m�e5��틵z����q��=:��k�e�X��39�.3H�hU
yF3C��f��>Q�~G�9��ܔH&jGP(�mS��M��G�;�1�f��tx�Z�h�S��zYc7Ru�C��a[/|&J�r�%�Ƞ���3��S��ro˚s���9oj^���)n3-�������5�o~�ƅ1�%7:1��a�~�
�~��g_���B�?�\����af��1pC�!%^�Z�0�FN�z�_�L��n�L�[&�K��N@2_�Ui'gg�PHJ�b[o-�T�&GF
�#�v���L
�����7���HF�pFy%���ЪM5�Z�ʆ�ύ��S�1�K���^��D�s�}UBR��(
��q �?*jL���1�i=�B�Q��ʾ���8��
�N�9����E����V9C�-�����|�ݐ�2d�2�p�VRCo4nlX�m��*�u��O�'�Ipä]�֊F��I��W/�i�Xw%u)C�-�Д�����"�t�j�ƭ������í
I�#��Eڹd+(βtN�Օ*���\y4�W�$Ċ7�+G�7���B��6�7�k�~��
3g��?�KY�c�:�&J|6��7���%�u�7_u��F�r��ka�y'Z��\��B
C�Fˀm�
��w!H���p�dn����YL����m�t���Q5#�&�ƞz���ɧ�^�Ư���=�bd
�l������L(#��W���JэIR�������f�1~89C�A7NI	1��&�T8X)��@����Huid2����PJ�p�s	;�~�	G*�%��-�8�}��g*�RqӒ�GnfA�S.M������L9Du���L��D�����=�W��C ���t���2|�6j!����x��Nƅ7)���Qp�Q��D5�۹�x<���]��X&�LK�H���N@8�bj�#�E箔�F9/IQ�q�
�H�_*�\m�Oj�?��@SlΡ�0�� �7�Z'���[�[�Z�y���F���ۣ+��җ�	nr�6u!"?&�F@N��
T
�B��e��[�r�MT�7@��.�[��߷#(N�u�xbxl���X:
�טR=�Θ�ov�ߖ5^P�Jy-miĺ`c���7;��L/����zf̴Sh����A9�RR��^���:W����{R��ٺ���h�g�We�][{�)�8%��Stl�ҏ�ȵ�7g����™5�Y��!C
�zh�p1^�L��$�3�Z�aB�R8�'�aU�%	6&>ݓ�чI�J��V��m(�YZ"C�"���N7P],�Wc��wH��q<d���Ω��^
q��Q�=�ʎ<*����b*����T9&��w��xv���]N�|�|�.������X��d?�#��*�����K�<����0�.�!���a��c���
4�Άn�����K
��2W6�Ԯ���rs��)zF�8|p�&�{M�˭�݃���Y��4.���V��PM)"i��ZPo���ui羱�jߺ՚]�2����iڧs�qdw;q�s0�"��嬴�����a�p7��2�6���u�c�#p�*G�}vJp�,���A�$nc<)=Z��)K��Qge�����16�1��
�_��ȘG�j��]~���⦫
кT�,^�W�Y�X�����'3vc��|�&��_b�ĵg癬%�[e�(NO����o<��o��s�V�V׈�L3�&��3�@R<R�;(�J�W	�S�9"侮��D��W٩�Pi��nE�*<y�O��,n�j
�,�k�xUKQ7��)�%LU���⁚m���W��xS�W�B�r��1�ƘQ9�棰����E=�h�$Ң�Hō_\@ ]M1��D`j�D�wk=t��e��L�3�&����M�2���rY2T._!_�a���z��v&����_��F/6~_v��o-�Y�[F0�\Ͱ_���b�^��\����4+�=��Ov�m({�+7��K��	y���tp�Wj��K�0Wg���Q��Vs{E&l]�
�F%�0aЧHL�ʕ����'���<{��ޠi���W��>qf�l|���yÉ;��:�������*6�p#l��h�Y�tGl��p�����
_��:��9kQ�t��R�V5��4���1���m�FAŘ<���͇�ڮٽ��C�"CQ9Offʪ��ub������dЛ����ח?\_ V�O<��Y_���_}]*������708�:3H8؋�3��6>�qQB>�;B��w��E��e�z\b�B���M�$6�Hj
Oj2,P��C��#3	��	#V5e�n���L�Ss��b���8@,}�ne�RƺRv�tǭ2O^����=>���D*\UU�s�G�d�;|��R�1����n$��X��75���`��`̗��	��O��ٕbb���:���A��0a
�3���n'#
s=�,D�ȼ���Һ͢FCUm/��Ѹ5�nX�ޭ�9Hx��v~e�H`�8 #F�9�z�B��6���+�ld�oQ�nP.d�
jO	���f���튟)z��'?>.�_$x#)q]����*�G�ߧ�zT"q�O_���q�Og`�i�Iq���Wz���<OY'n���o�=���fQ'>c�����8l�9�Sa̎���NMA�{�����6�+�t��͓�n�f�Mo��P=��H��06/U}k�n����²fh�i������g���u*tX-łJo�ڵ�!,	K��7HZI��'�V‘!����!L��5B93H���dc�\N�%|�J3�pH�͐REa�u�I��ԍڶЯ�Q����w՗7�qQ9�:��ǯ�N%���Y���7��/6YiW�H�x�`<[�ОJ'��
􅋏�䆌���؃Bټr�M�&O��Y��z�a"�q�Q�#�y�"vH[Q�҈R�'{�i�~�b�U�T�af{d��?��H4��G�o�4�Z�Qb4����^�z�7��6��{�Wn�Z�/g��x1����K�OpX�r�b[�r���W����[螃�f7R�C�8.�QV�z�+��|A�(�#K�Q8W[��EG�܄��22
���� �übM��w9#n4]4&fc��7�`�m��	m�e6�eɰ�4緈�B>�Duh:O��d#��[�AB�`���.��3v�
��BF?v6�[���~g+yPϬ�9�Kq{BՍ���MO���4A?��OM��oX�s
�l���sϮ?���p�(8�����V��`au}��4$���!
:o��NAZ+AJAz��:~�o���7RN�(#a0��|���"��+���3��?�ҫ��P����v�4�YTVr��9�T�6E~��m�e��e�^z�^��Y�V��Y������gdH����o���uS��M��Ŕ{5rR�����
&+��M)��O"C%���h��	L��ݕo�z�29YX��^~[RS�W�H9I)-_��>C�	�ęL�|g*-M�=¢ݹ��H�ӳ{T	ܐ�V��"�2�e�����XĿx��DK;=���G��4�`Mܨ��ٷ3�v�V�����l6����Y� �x?ʗ�޸1N<��q�˕+����r���c8k�))��[��9�lq��G�#fw��2c���&yӌ5�e��u��\�]�yޅ�g���\����u�EA��֧�9۾)�\g8c@&~��ch��v�C�'Q�t��hg*ү�Ԕ��s�	0�~m�;���O?�s?�~���A��@Vň��[!}ff��duq$I�e�h��<|��	�K%�S���9��R8��Vq���L��
��72-��e:���J!�'	͐�
s��)�JBJwK�O!��p�ɤ$|�LOv�8��
nG�X���N�K�v.�wkAv|�Ms�pij�%�";���Wr0�o�ƒ��tL��Kŝ����p�N����8o85J�����[9�����87sȦLF\���/^ܤŀ�FGW����`9�R'2�zJW�y_.���j�j�/����^�F�x�<�Te(t)�m]�x��c5R��Z��V�=n5��9�{�Y�W���_=i7�sso7�o�.�Gm��<��RP�eZ�����d/�Vd������n�8ߓ�7(��	�pW"G�n�'�I&o���E���U�&p�e3Q�(�p�U��u���i�(�XAW��f	��{��f�hǝ�+�Lr�Q;?���P}Ѳ欸����6������a��n~�eA�Z�-C�����	�/,lr��j�٧�^]_~w���\����xfM�,�8"OQ�G�zu�08��ƤD&��\�%I
���H�p�ffBq����oKJ�԰F�(���iϤqsi&�
gr�Ď�PB�׹ |���x,�L)WN�>
'�|��H-��7���dE�W	��O����|aj�?*��U�X1T�:�@D�"b�社n�14L�y89J�ܫ�M��@���z��V��M��\tOp#	#~�9�Ջ
�`����O��ݻ;2�# Oml��a)m㘙�̫0��>)K�+���Q���J��J9��e�Wete��g�l=ڟ�-�����76W�6���+���CʅG��٩�X0�璭�v,���Ԝ��
#E��T2�O���<h�����Kj�
��́6گ:
��Z?�E�8��h�chsJ���9�]Wsց��6#jti�b�=������r���;<�4�Yac�Mw�N��Ӣ�h��f�����1!;
��O���F�"*s����)�c�d�a@���?&4Y[��k�^z�j���˯�G�K2�)o��a�Lʧ���.M�H������,��1�����MR�p�Jc�����A��C��Z%��KK%*����6%b7|R�j��Z���R�R�	|)�����`�K��Uė�|S���S=ç#���1���y�2s}k
�I<&
'�'����b�>A�c!A̅9j�0
��#㊼�vz�>�/����Q�sy!��j��,B*
�vO���7���G���E%1�TjM5�F�L9�c�-D�G|ѱw��
�{睮W$�߱�(N�q�Q��ǹ���ÍR΁�9�i�g�W#\*���D���<�h
�����3��02܁7�ΌL7[`d�ߙ�N��Mt�"LϨ0��l�Ƃ���ס���zP��|�O�u3��uư�����Ҟ0]�lL���^���cԍ�P�f�t�ChcZ�`���p���a�7�P��	U7g�n�&��+�{Y`�ߏ��f��D�ߜ��Ýεk�����h��{9�3�M�tof
�����S�$�&����R
�Q���X�x"bCPx�0�g�V(�C�ҥ@6}�~E^%jT%ٮA��gFJ%Z
D�Jnh�VK�4qO_Boy�8�o,��W��ڛ�Ě93
G�ƶ����z�f�L�JC���r��/ƨn&�X�-�OP�c'y$�CZbH�����K�d����ɐ�s\C��*�~�2:��&��2v���8��g��m_��3s
	
�܎a7�۳��OT�47���2Sc�~�-!�#��Ym��|	�@��<wn&M��Sb�w���Fc�?}�qL���D�㼪1��jtp�m,nl���ʈ���›�����.p����ſ�5p�?�M�ѳ�-kl��M]οX�h���ww?<�=Sg�L��<d�.��g^��P�#�;�9�
3��^�ֱ���?��g��k�znbMxo(/7��#S�fF�P
%#N$�+-��j�#�4D�I�P<"F<$���@A���N�A��R1��4����859���p�,�#)5�7|�{BZ���e�J)1���<Z}cJ���;���
v�L�"T�Gi7���7*wí`�q����mvp�p~��'������Q{CQ1����}�LN�7��ĞG��65�We%�^Z���T��K=#�>�Q�Σ��{>Ğ,�q����?Q9Ά�|�eb�Ջ
�����kQ�'�a0�cNr�\�y�af�T�F�QYy��IhV�p6�6_�
����gB�?��nk�w�F8s*kL��1�F�c7�4�s����w֍6z�(��7_񦬸Q�j��&N��⚺����tu���铱�䡉���	�9���%!����SY��������\�\����c�
!cT�z:B���D�7�`_�A?E�"��0�)&D����!Y#�+�;L��NJ�%TL�f���%z����o?���T���)0�B�7
��W{e��h"��D�PQ�pt2��C+v�h��v}d�zE�V��ĉ��F�$�^��:�O����A
/��Ww�#mzIE�Bn*�e��'셉�p?{������]=z�W����&1X\,>Mu^	e�|0y�����������5��xYpSg���B��}����7^�8{n�Ĉ�gS	�6B��?���ynZ�hqm�'gۨ:U��̿�Ni�]>Q켬4p����f��c��r�N�:N�`����n��>�
�X�ɳ�mca��'�1�!��C9q�%~�G�ES��k�����L}���I� �N��(I����T��G6�FV�6�%��o����ҁ3(�U�%��c3�$��)�l��\Iz�\��XB�f#��fd��$ß� �������ט!JA�������Gn,-n�T�#pz�3���,,.
�}����$�_J�%e�]��i+�ȫ7o��fhMS*8��m�,0��$V��;�3�b�����r1����l���L�oX�%�u� `�ֽz��=k8ޗv���'��W'�n؊��]��e7zL�إ?��%ҋ�[톽A �ˤԟ}��F`��R��]L�C?�˦�Z�m�5��P�[����e=2���^Q���+ٝh__�|�u9KH]�j����xВ�1�)8G7*CC�^%Nlԡp4mζ3��3�.�t��0��Y���ׁ�?/�4u�[�F�TJ�+���� ����k�����
�����Q�B��ذ�F
Iׯ��1���m�
66*�=N���!3��ھ�IT7g3S>�;�"L��zSSɨ�d��	����33ɱ���(!W��G��o����Ē)�M��R缇�$�jd��^��88!�&H�\X`^�d��>�bA���Z��Tu��gVdž�ҵ������Dd--V'�_<�(1%wj�M�L�Q� �����,�
p��/�Gw����ҥl�I�S�^�_nf��E��B4.M����,	��
:' 0�7n����=��ή7w�;�ƽ�P0��ps�4�xs[pCh�����Ƃr����L���S�6@�rc����ΝGw6��d..s,o��
>�������<�������x(��_�����/���'w�$'ޤ>��/��_�v��b1��)$��2x�_�/�+W/f�CX��S�]��!<—��
&o�QF63�Ŝ�pQ5>��6��JcXG
dY����6��y~΀L�:��R�0�{��q:z�����\Wc9zH�LD�F��A���SI�'C#=-]��M��
x#�x�9�3��R7��ݰ,��yJo��RC`������@AZ�p��C/�c��6,/�o����J!�	�g�Z�4�!K�QX]*������dˋ�^B��1(�$e/̧R�S��)Ť�$)U����3S�?zt{���-c�XE��T~�^I��A&��ȑ�+�&�9��f���X��p�Uhd7�<
30��f�O���z�5%��p��HexT��.�)�A7�B�
k��%�'��'40�qJ_���zexr�
�������a�Z72��{i��WP$�3>W���(�T���p;h�N���-��!�:ϋMV���SՑ)r��Red�8Z����i�[��6Bͪc�:��LUy������?�x|�Ν���w6�>�l�Z�������!��YF�=��#q�(98�E�o\��t�M_
'5�}���˗IQɦ�bʍ{�x�H&c>W�i�|�����1��f���*ycac��ESp@6���l1�5��'y��+�1��;�T�:��@ٯdNMGm΢���an�q�{�i�A��Aǘ�M]]�/61�5Û��z����	�g�MÎ�B�����_]�,�T�U�����ז�g��o����W�hgR�����A��ZZ�*`C���K@����{���G��cލ�8p�;F�W|3�4254�434����Dl֯��p�K������9���O�j��O�b��u�n���7\�4�u��� {�<>�5;�m��7L'S�/��Z�Es�q�ܴd�!N� ��N1'�,��`�dx��7v�x��E�-���c�T��n8PF"B{{s4pNj���|1[��_�g�_t��i�����dJD.�,��r����8���;#\��o�P��~�,�z̥ə�IzdF`��+��|�gi�>Zf��#D�����Ɲ������
�:+_�uwHU�����%eN+&U��v������$zS���N>�[��4o>i�p:o�hĜƊ��i��1�rXSUȆp��XwNZ�2�1: $�����5�eB�Hph� sL����]�76�}:���W��9�v�Y֘��	7&l�,O�&W-l�gq��x����՝����<Oa�t-�2>�����?A��L���#K�����/�hy�ڻ���=K7��<*��
�##S3�(Un<A|)�w�/�q�"��Y�.��<!�_
S�m-����a�V�F͝��K�䥮�G]����>����d2�fh_��I�%W�K�;�`��a����)v,S�8g��
�ǯ���l�
%���+���� ���{���%�f9���l�7&͙������Q����j6�&���^�4�(l�:<j2�؍Ҽ�/fA\�V��4n���ģ�4^�l�b�o����3<�eq��Hm\6��S��
�W6Wx\=�G3������/q���7[GyP�=�������>�o���v��#��6<W�\.^���dL�۰G��׼y:7�T�}�~�3&�)�0�6Z�h���|�n.�-3JG1à�V#�!���xky�)��ں�Gi���-ՙ��{6D��p2�80�c8�?EMw8G��YI#�����3:t#�k����D����n�J�ї_~����'������+�$�ptݮL�dn�c=gV�v���?����y���'�\c�
�fF�.�d�������0Ǐ�,E0$��fHV�`jx��JʬZ���$��8�_��Ȣ'8���wI��Y\ZDb�TVrlZ�;Yr�4sS��]Cm:��w��#dԫl�"��|�������h�Rf�@P,���x�#�����v�s�~51�褒<��]l��^�z"2X���ᒡ��E,���~Twjn�6��y�x�|��x���龝�4^0s֤*����B�ښ\��"_\�����G"w��F�+�fu���3��s�$Zْ�͝�����_��%�����p��YհY�W��7��ui��cLs���2�|9�\���r�
�a��LE}?8Q�1TL�9ڸ~�[�)4d���-.�c��k�����+��U9۷�̮�[n��UKhW�]�v�N�|�|��
fh���S�g�b���X�'�d�l��ݤ�G�c�߸+Zi�t`c����nl�
Δ��_d��������t<��)l�;g�&7Q���8���w����~��?�����͉�$���*�Se�<Ac�Ih-0pxUb��VuЗVr�^8J&�I
ӫ@-~!9TAà���z39�k���Y��.���7'�,a�d�Xrz:I�2�hRR��^��-�85ܱ�1gn�6�n�7�ǯ��,�ݚ��R�_)��RW¶�0��Y7��7�H��# vd
M?�G���Ӗ	W41��tNb�ƹ"�����^�'�o�j���ً���b�4��s�
}�s�!p����͈3���LԎ���Ju��K�U-h�u�(����
�����ʝ�w��rk��2'���A�,-�"m-�,.vx�Δ�4��6B���>tpTj��|�j�M#C���8�@��e�"*V4|~x�
�G+]U���FD�2g�F�`I=�&���7�4v8g�>%J�ՠۅ�o��b�/SfmK�l��$��Nۧ]c�ij��.�š�+�%���|6�Q�g㨝���	���YO��Q�C�y�����O�73��ԏ��I7$c�z�� %�tA-0<��[�����Z�?����}zs	e2)�O���\�Ŀ����";e�-��D�L�U[�`�	��=Q-��DD�h'��U2+��Z�	�T�:W�7|�1�C��E����`��X���r67]l��M�󠯜7oܭ^l�xP?h/T�����lj�y��Q$�Ѵ,�vIPEd'1u5t�O�4!�\�
�Oj�v����F<̉8�,���2(�^Ը���E�����EYڼs:�N����*N���;RgQ��sHO����p��ߘ�Lb�UΚbUud�:��>���ŭǂp��7�Zuq�,I�ެ��/-��t赓M�e���у��<�0/2��Zؒ����P�7�������E4(�`��k�p�C��*Y��^��࢝�e��1u���m����(��O�/:�J���e)�`��N,����\v���&6�Ia��N�S�l�(�]p#���
�O2:ʠ�����O��9���D9����sO=5?�Qbh���a~�G_��vc;��1e��J�����u���ț?�x��w���kK;K(%:�����H��J����X�8��g#�p�K�ae0>T���� pFv��
Sw��&����3e($��e��+H��j~�iN��55CJ�[�p(Ӿ��9���6B7�=)��V.6۔铕7�8�A�-e�U��D�o�%^g���M��z.�GO�0�uE��
&���o"�0d��M�9u­�.^��,�$�/�K���N>Acy�`C*\�,T���HRխ�k*rC�!\���}���o�TV��ll���%��W�P/`�MIL���>�FdNuk�,.�`�[[Kw��zc)�'����9�pG��HI��X[�
�@�6� �I��j���駼�%S��>,�ጺ�C�2J�hΈɥ3��¦��
Ͷ!Δq��g�P�w鏛�+[m:���0�m�N��9(q���,��r�np�U͘�4゘Y��1
49Y�s�a~"���㌺a'���w���K&z_�LF���x����m�=N��)�_�!�0=#�Yݹ��:��?��ɟ/���68�\c,�5>��tM�aݔF��*gr�X�`l��0�%X�I�W�R�Z�Y3"Zhy����y���%�;8�Z���BȻ���x��:).S/d�z��k}����V�1O-p��q��6���o2{�f���l���at�> &��sA:29ni5��̧�^�(��7��{��u�j4L�dϤc�
2Ss5b䢈8��%~��9V�6}�;]��鋻�6�*Ћx�K[;�;*�]��pq�K⿴}?⽳d���A�,m<\›B�$�R��c��,Qb#�8hA�pf�7K��
�푊'�N͋��@��K�xHj�܈���֦�mh#cd��'��ob+�w}��,�k<7����vyO'V�1��F{l������/v��6�#WlY(��/��؅�v�CWxW�[�f8B�g'�h����&]A!Ͷ=;��L���`OVU�d�@���4�<�Gl1��k+8�	�1�:(#�R_"��n|sF������|����$����G�]���Ob}��҇.sA��nx�)��A
x�o(���:���2p�@4ZE���,�Ό�J��C�!�v�X>N�nP���ƙNOz��3���pc��KEu�p���R����=���.�X��{j�֕rXd��A����j���sd�M,���`l��m����I��T�a��FC0u��(�d�7?�ܫ�Y�p){I6���H#H�P���])��F��_�o��&�����*�
��])����/�x����"����.��
z��_52z���ὠe�'F�+�?w���B@��xe:|��DO�B��֘�S����kX�d��F��2��%k6O�����k�X��zwd/���{�����9�wex�H��6m����S�Qu��6�xP�\��r�;�u!���u�K���v����,q����}y��+�t]���@u��BaHfFj����O����y����xm����3@�7_�Ӳ��q9E'��F*)�5)���O�.��L�B�t)%'%n��|�g��o��Brbh�#���a�A�8}H����2�O./�$�/&
dg�c�C�M�x&\��!����2Ղ����
�O)g��+|��pJ����e>Su�ɹf�J��޺�7�K��U7��������
3#�ON.1N�⑕�+W�Y�+L�
d�ͥ��aޘ(9\����j!�-!ND�6�F�f�� ԓ��j�R~���0fq-�@и��E��>�d�R]�Q�Fݾ�#�c�?�;��&�:�'�h�F�X[-��9�Uk��N���ʱ���z9�̹���A����̕��2�n06�c��:��,`^��?�)�_�>�]�/���>�>�p<}=���$��w����T��R���L�a�_ְK�U�K,\W�H�)B���D����W�*�I�(��e�����5#݆�P�Ĩ7ߨ�O���r�D?��\8����"溉tL�`0<@D
�h0���8�����hq��O\�cl<�<�Tz��%=���̻����7�#2�${��<Dހ��	��Z-l��
kO���?�M��,hA���	.Re��&Lj��?d��
t�XO���)��
�2�3�y�"�����_>4Eb|6��h"xv�!�H�^��'�S�N�$|��-S8�𥣋���Pݼtil������5��p�pݗ���67����b�����)����ϪD����u���^跸8=S]������Z�T����
[A���t�r��aU$'�H:�npc.*[�m����/�-��9���b��!��^x������p_�����abG���"�fL���g��_�\8�u> �߸�ir�BM>���;��M�`+Q��]���	w��w�&qf���K��O��	J#�tK�f�-����m���[,�Y�F*M�R�Z�EbNg��6��V%s��X�����	6z�xy�W�w����(���r���㢦�T�bi�xo6ct%ָԜt. F�TYnB]@���q��3��;�x�QoR������T�^��ھ�Y8;���f�{qi�VV������~�����Y��G�}���"6nm�k͛}4?��.B�F�W_���<��m�e����툈c�fX�MSL�n��3�z�� 537ר��F}n��訢G����Uk���N!�k�@�!7Ͻ�B���BeF4�k<�<9?I0��VWX�x�J������Z�@�e�2�<-�L9
�MV)@ �!��sg��"�x���nR0^(��T�����S�gB���9usٌ���`�
�wy�&�X�f?_�>ac����YY�����.i��ߗ�/_Nu;8mh��
_�u��C5�	�r���)��@������
����(�Wn?\���1�l���L�'�M��g������f��R�*p(b	#D�Jrנ���2�7��;W�`����un
����:�+u���j���ط������r�����l�ِb�v�Ħ�}'&�5n��|q�d��1n�p��!=�7~��X��V7p��>�b�$��W����~�ȁ!V�A,lx�5���66�f��MA۳F҄���<K|��
��kPc�c��r�Nq`����Ԟ݀ח��'�k8��Wm��2�۰��ENh����Q��n���ֶ���^��)B��g��L���F�&_8-�M,�:�2$[3~3��J8\&��p�L�,߻res�T�CJ>^�[���幵�e�T�XF�RQ�*�t�$�����kM�d�0'�k9!�4ՠ<�����Nw�=r˽y"[NԨ4j���]�4�L"0��_�X��Qٰ���bu���*�Yz�p��MXF�c�
95~g|��x8
Q�
��.¦uxC��U�O���z⎛K,��P��Yz����&s#��{x�� q"S�z:���a�_�nV�����W��|�u�
�"��dbo?�+�J��nP^`��h13I�\�Ꝧ@
;��š_��W+X\TH�ªR��.!�D_"��:�ƚ���o*�A��-�I���̴��i*T|AnjMu�������?hCC��߭�쀜� ;�ھ�����ظ��TϺ���0[��	��Q�p�b���H9�}��?�x��aU��so��N�TR�_m�]^o.O<�47!lJ�a�c 8R�Í�h�jh�l�n�vn�M֦g�f��!2�3;!`���yw/�n�R'��	H
�P��P���Z~�5��?>K������{7焓�^B&BOc�Q�Y�\n,��o���l�Qq�����З:"��Θ�`⏆�O�m�xU�_!9:��	T�N�3*e��	Ʋ�ʙC��g�Kn��E�����~6���Z�<"_q=��0�m���XC��3W���wua3��Jڷt�宿�n�mQ��`Z�Ү���8xW����
D���T�Fˬ��ө8���tzd|�.�˥�t+
K���lb�?�6�a#��^8
ڸ�a-�^5uR��r���J
"Zx�X&.Eh��;�)㳡�j�l�u����/&&���
�_��
�f����DA�;3�7�Esc&����'���S����`<��S_��ݟ����r4m�ƞ�
�;��{ϯli�Ñ&=��7��F{U[>�5�x0��v��;��|L{u7��k�9¶#�����X���;Y��N)�3�zꜩVN�~"�S��� &������pF�����ߑŕ�tt(�I��t$��5��ˍi�8	+�g&�؜�[�Cu�T9��&PU��@1��&�Nu�I.t��7�"��4'4-$ZB�r)@���������N���7���C�xD}��5=��8Y�2g*�gC��+_h.�k捵�D�=�����>�h���p�J�6R��	�F���G�ǚKp�ԗ�֥�����]_�w70~������eM��0�!y�ѣKN����T�W.5�`%W_0Rװ��s�{��H[�W����XC�y4��Ui�( ܈W+�� ��2zOQ��r�JH�=��K^*��G�/���|�T���E�A�u����8��A*�7�yō�@�ukmS�����9蠉փ~���N(���A�ÿ������Z?o�7dP1��h9�������]p�
�Yx=<�(�FGv�k;=Mx�I���d���!����
�r)���c��[A���w�x֐jVp��U�tdB��h{�M5�|���n�Ι�K�'�C��|
7�,�<�S��S!�-'F}��
�������!3U�23�8Ә�/s`'�ԩ����|c��!���S�P���g����2 �<^�L�����7gۛ3C��V
D�h�xCSc_u;)ڻPr�����`(�narm�O��FQ
2Af
O>�&Y�fm��[?�y�=�,������U2�n�HRkU#��%�qk����	�Ӧ�Z hO.�Ϝ��PN��S8u�GF�]1�)/�ANK�᥍፥�E��L�Y���1FJS�1	�b8�XxI�����o�ܨ�̭ז��E�lI�^O�J#�5n^�R�
[/Y��d�q
_qQP�faAؑkX����*����椡
R*�}]�ɂ��h��T'iE���n��[��D�l����8t�7+��[�W�TW
���*��	YI2r~A2CyvZ��Xm�鲣��	4sƞ�-��5�,q�����&�Mb?���K,L��}�}�w>`s�=��h��'�H#7���g���ͻ��\~�������S3�Q�8&W�N�b%�Niy�6
�� �2��N�-�D�@�Q�in��PzVC������4T+ָT���Mk��2����*1�8�٘��a"ڙi�(&�t��H��HGu�Б�\�S�*c2�"}d��8r���2�s*O�U�v���G�s-���ܰz�Cs����6V��6��z�vO��i,�Vﻐ�'�R�o_���B�I��R����<1�7IіA�iA�����`�1	�0��:�AIV|�\������_�I��]�}}�ڪ��e��x�lxh�� 5��K�6d0RkT
_���u���lVM�%Q����…�P�e�@�rqc�Ѯ_͚R��<���*���ܨ��D�MlGp��"Jg,!`H�3&�ȣ�kN��Juww13����c��?�=����#hqPsLgnL_��7��5�l�%�&��M��Gלt��.p���BD�@���&��:���֮�bq�,qF�,2O�R����Z��}�3�/�4�l�*ޫ�B��/t2�h�D��P��b��S%jU5�\?�.�����f�q�S��A'�s
�eFR�9<�I�JMF立�C�Z*���"2##k���@$�0�Nne>K�9S:�1e��\0���G��1�/�Kx�J�T0D;5���7\�iPD��A�v�ԡ;�(��noEW�5�vC�V�a3ǀ��[*��B��_h����wyۙ�g.������E
�Ϥ��.�C��O݌3޻�y^b�B���%6��z�IܸJW.���Y�ܥv��\2|��V�<�|E���mo��J���
����oy�
�z�H��O����ⴠ�Z�$�R�\G���g�ץ߸Κ����҆�"ӻ�i�ȗ'!���f5�J1j�̝R�g��؉��?�V.v�j�.���`}���G�������$\�q�Ƶ�On<�6��t���k�Lg�&�F�yzF����ߍ`��lQž��c�
��"���f�yX��)#��v�c6���j<�X���1fA>�li7�}7o���F;b��õr&���gF����&�-�9�%EK�l�)	q
�KDp�d�3������������ʼn�߻��d&ÐHX\��5iz
�/Ӣ��S(ތԛ��/��*���Fs)��?@�<��sQ&��R)��Xv�j��I��zR���p}v*���ڜ����;V���u�|y��}+����j�T���r�#�i3��~q��>B���G���h7�g�m�]�%_�x��Y���̗;7-&�ڬ/y��F.\ܸ�Z�x�`�r.u�n��=����R�d��mz�$�w�D����}%��5���҆,�"�}!�89�Zr"?��7�]�Rs	Ũ*�W0n* ��s���o߃��x�(�w�sK��gK���
6N�7�ض��ѴM.ƍi�qw0�vm�2]99��qѥ��M��\n�#P�P�)����AL_.�����X�~�6oܷ�|4�Lj��nG�ZPy�����G;���L��دi���G.f<״wh�V�*�[�Фш3
�Lj7{�n��V?6~J��4��������h�Gx�@G�����_��8o
Y'�)P<�C�t�%�@S�8CBMmh~Z��BRO~f�Q�Rm����2l���c�5���1:�|���	[{�����--��s=�}E���Nd�h�4�ȫ4L��S�Ə��m�W�Ф�Z���Ȱ ��������HWn���\�j.Ik$����=^W��9��w�|����g��Tt��2Sl�ס;�RM'�2+�pS�K�I�W��z�o��?�w��{ک/�JKa�nӄ��7.s��%�h���/pAv"~ύ9W���܈ۦU��P!Eϻ,���F)w�Յ-a�0IX��
o'b%���6���5\1���h�h{��5ƀ��(�.A'7D�$��p�z��F
�&��c:����V!���QWp���q�����y�)���
�p3�%q��j��&i�im�|Ov�4KV=���֊N[�4�M�4�)��z����-X��&�hp[�im>���n���yۨ�G���uw�+:�M��f�Cb~��&
�'�A������&�䋋��A���!�ozk3���\��I����ޜ��֕�����҅K$�d'��0��U��
м�;�P�O�/Z��e�]_�w�s*��UEd�n�I��H���n�/~ĵ��0bM)C��j�본�(���S+����/���Ǎ[O�2����o�N�L��aY��s�$��6��+iԞ�K��RMe:�[U�z����]O48|�����7r�҃ի���D�����C����J��~G�iN*~lh#�\W�s�KJ�3���A�� �	��Y9��
�j,������u^��3����o(n��mD�q�V�kՊ�`㠶W����
�1Җ�5“�n\?�v7v�!2�[�`�������8�FAͥ(
�?|���r�CO,v ����/.}������w��d?dt�i��y���!���:j�E/���ƒE��yyz������X����%���k#�_h7o
��	EG�����P4�Q(U��b�>y�&@3�6b�:�}��V��ۉf��GX��NF�h8d�(�o����<�h<k�kE]�C�H7:������M��I�](t�⹾BX�0�]�tl���
%9���,T�a�O2��2��*���b':8�fl�5�t
����f����N����1r���*Go��'i^��_��.(�o�҈�W���qL�	�X��2��*�.2fη9l%Řx��$�=�=�66Ru:�S��S�=�pCʠߩ;+�!7��7n��

���`�(�|��-�rKQqsJڍ���D��UH��0*�у���7��Q�S������5�1k��&J���]vbtI�eF��	_&�Is[H�R��h�2�&�("x�s��ߓ�`��3�ʹ�����
�A�=6,Q6 ���B4X!��sW	bq�oY�ɕ��5��3n��tfAl�%�=0��R���j�[,o�{u\������7���A�<�W��Ff���Ϙv��wP;���O�ע�փ�J�ܗ�t�9bZG�3������&�6���67���_��R�Ltb�4c���e�\��3���f�X-��{�I3�N��֦��T8�C7Zج��v�-4��:N��`Po/��s%ʘU7!(�O���V.����M��1��dJ���6߁6�x7=z�ͅq(��8n���&t�
��J�j�V.\Nџ&|�r��5�G�9���(�c�_py8�jE��M;�ie�lQ��"����z}��ٓK뫏n��j�N�
�Mh7�����p�-�3F44���|��A����C3$��<89%ѫn��6��HCف�e��a
�k
��#
Ұ�?io�7�\&�����f��sz��H�N)7iJ7U�	���ˤ��H�]�~�W��I��!]�G>T��(<��$�E����jߪʭVU�u��v����z�G�|jJ�k��=��O��5vP�'��s�c��^�4�����i�e��C&���D�mPoM��#�<����h7��b�P�?�uߖK��{�\u�uN��F���
FpSD�!�g��Z3οh'�����ɗq�`LM��\c(�E�'��z�s]_��^�1x2�l7������|��a�� 1��DPw�xw�!�#ﭒ��u��?�	f1$�3���I6t�v
[j_���WlW<�V4��M��]����hB�qީd �q�ԋ%U39R?ψ������ôN�S�t��=
����x䐸��nԣ�����@�u�3��ݹ���>��z]�Հ�'GG��D����ͮ�4��7�$r����쬡
��-�Ԯ<^��Q�P���)�-݉��G��ї���"�z�/Z�H�Q��Sx��Z
��B�Y��NA.[p��q�����d,I�M�@�Iu��~�;:U��c�A�\bVEzC�̟L�:���p�p%ޝ�9���$+��lΞlx�޷v뤬ض����
���XYͥY��}v�>ʁ�hu�kdlk�$��;m���eČ��W
G[�Ѳ_�A��y#-����L�ZZU�DG��>H�»h��������	9Y�_��ͣ��A����YB��b���7����U
�V�*�����B�V&��Q�lJ��FՄ�)��X�����$5�r��0>w�Z�/�,�W(��t�E�-����~�;��
�ʹM���Q�o4$+<3g7�ɮ =���@ܩ�$�kk�
���i�#���c�_�}��v�1i�+apC��y��yJ��'�̣�-����7������<\z�_����?�N�kՄ��ɢ
n}���}|��MP�0݀���6��6P��n8��bnͮjSN�cI�i��(u�Q>��)���!J���U�ѵ�@x��h�i�M��P�欚[25������c���z⥄��&�+Y����e��qV/2����dR�Iҍ,��`V�>Z�*�F����bzN4IDLVp�q�qs�,��֒�Y�z�g�5���2�Ê(#��iA���T=��m�פ��Ho~��o��4��*78��k7o�!(#i�]Xi�G�{�����V�A!_+�<4�3go5LA�ӯ��G�E	ų��ۘ��r���F�@S7�Ҏ�/-�L�(��Ce��[k%���Ô��/�a\�W<UY&��F�n��nA	oB�
�`Ϲ�s=}�>��}꟬�vH-�eKu��3�n7�-�H��<m]���b��
�<��At��~4���с�
�L�$-��58��qn�a���z�I��S���S7n�
�_L�������s�O�����������+CJ�d4���ʥi����km�F�XR
O�&nΩ��="�Ƥ8Z�+��K�A��P�5
֊�i�\7�(0������o�У47ͯ��*�'0��2�=��[�0�m�zoqp�	;~)L��X��:N��a2�PN6aJ��ث�vב%��S���l��r+/^d={VV�╠d8�%��Y��j���{{��Z�F�'?����Sr,t~򅟰aN�}x��u�#��L^A�>�X�7��E�V�nbK����F�DZ���1��O>[��S�n�oub-O2���p�����$�����	�����Nn'��?z��q��&���(V�����y��tӢ*�Z(�H/nL/ON3(fr�-ҥ�g�C4����K�΢*��\��8%p4f��[�rAEX�P���\�n�=}��)�i'c�^:�交��irx��Ͷ�'�1�^��x���V=+� �[=q���`�E����'XV����(ie�����.PHm��q.���r����h��zgD1q
g�F=\��´z��}x��q�����,6�M�g���<���5h�3^���@��wD<
�FRx��%[�U��.o0����hj�ȁ)f���S�ΈI��՛�7�v3��@�*�@�
g�'��v��;�P�4Ȅ��g���i|<J�	�qeq�a�3��R"뎓��*�X%��la$��B�
��^7:���Zmf��
3��b�@c�� �uN��:Y=���7,��a�V���ڻ�O��:�>�G�ʇ���ȳ���L9~�0�qfL�~���碡��1�0P6��=Q�@׍/��N`v�bllqTiČA��Tvh6/�J��Y�(�K\ٵ�򫛌�|�ĉ�1:��Bgyf����tO��h�œ�-t��^��|/����8���n~����*x��p��4@ ��0H:�GU��n��,�+��|���ӌ��P���׷��Jc�GcB,*ajsuz��+���ރ-���i.Dh'�4��ӆ�wB�@;).m:��6�V��U[Z�������ۥ$�Ah�$E1�ҏ�Z�>,��d�T�A�ه�+�I17f`�u7��J�^I�Z��I�fKa/�5ŽR���S'4!�-z�����!q��	i��~��ah|��Ǘ�]�"=3�I0���0���Ĥ��9h�4:�pO���>z�3.k)>\����G��z�\�p���B7٦ݘ�q'�d��C%�\s������YO^ّ��GW�G>��OhaE>)1[~��'����i��_?��_�>�����P{q̲{�ݽO��ߣ�
[Ot�nV��k��gK�yJ�n��}N�6��m�c/��+����^�s�C�l�Z@i
^���iԛV)�n/�Cա�R��vS,㐙�)��i�7y���*W�_u�Q�%��6+����V� �F�I�e%����~=��f{�	+h���v�<H�7��5��j��G1�ԮPP
��)�F#���&�8?~(�!�� ��(j�L&&1�c�6�Ƕ��c|�{y� P��!֦�@	���1q�!���ԃ?|m�F�Tw��&5#���x op�Yix"�˚���<7���$x�A���)�f?p��X���Ţ	@��EvN���"8&Ïe7���g����	8���j��P�gf��$a/��2�B4o�]�!�ơ�����aO����c�#�+���*�9���DT�"aD�����H�5��BN�=1z���O��a���;�	H����"1����O���)��D�`#'†D+��YX%0VD���#쬼���x��q��x�	ej��am������ΎO�svc�	�ס�.J��� ��`H]D�7$B�y��Mt:�!7i���|���T���5�/A�_����{�c6�۹�6T]S�������t�onq�3�.^��#�=ilo!ZY(8=}�(U�;�f�>ݕf��?;���{�/��DTW���V֘U�r�ʫ�^�7�Dp�h��h"�ݓ*k87�$!�Pϐ��H�<�
_(p>���d	$����Iʔ0�q����dzd_��6����6#�����o-�?he��)'0
�ۥ��p�oq�b�bf^�1�O��n�
EC:�1{��7�'3��WHQ�Q���3h��)�bc:cT�Md�Q�E�-nT����3���_�k��Rˠ��'��%GݝS"�i?�Ѽ��C�?�]A"�]� .>P�=��s���@.5\����|��C�'�B��y��,�EP�E5���2t�}ߡC��8y��|�泻z�t�V��X��'.9�ݡ�X\�lpa�y��Ŋh`a���3pN[�{V���'� +�.�y��Gv�o{�3��<�w��q��������1n�܊���::TB_��N8��Q���'�%�&.S�N�K\�S5
0�?;G�_c��x�K{sy&[\�bt��T�5������N\D�|�\�F_qc&�zsឞH�P9���.��D�I*�/
!2����"��W۝�#Np�5��\|GC�1�xH�ݱ����w䴴P���hp7�M�z��ZcV���o��)RcTV��v�����k�L[`����=T2ta~��E���m|A�I;I&3�JVW��"�ƽk��J��fZ�1��F�y��5J�ps��s�Riϙ���͛>����4�U����8Ӹn����j���–�7�������ઑ����_��Gn��4v�޽SQ?��X8�Fr�%�0�('Bj����ӎʪ��	�����yN�1<n/]� ����}�����m�w�qW��(�{��G���88E2�PFc����I�bs�,'��h�h+ܸ�i��g�3�y�ѣ��4�]ИU[s�y�f�1x��"���pᩋh�c���gR���:-���	gq����#�k����ՠ�<�䲝xo��gg�:}d4$k
��gH��Q��7`��Q�~��Xk�S�ܜ�����̤�c�܀��r�z�DK��5�+5ȭ(��Yf�T���l��i�V�$�.��9ϕ�$#A�`�(U��,�Q���>/����>�r�H8��f1'o޼���͠�e2�h�O��L��/Wߑ�b�``~:	����5��F�1E�g�H��P:��ק�����/F�a�b巙�0r߄�?�0J�|��7���!q��]�q������k7�-M�]!Q�(5;a��$)ax�sUŸ.��y_M��*x�_b�F�/��70f�qZ���2�"o��B֕e�L΍}��;���&M��|��䩗��'!=�	˳�	R�I�m���L��'�S$�Κ�|�$'w
�vg-��>����|gE����</��U�:��x��QV���K	�$2an�8�C3'�d�ry�>t�y�p��_�G]R�1t8vl���~��&��=�P;	;���s��~��'�I�����i�Eΰ}��#G� h�v�s������n���Ý���%%z�5}�Ř�N:t-���@y%֘��4���쟚zn���bʨ�G�*S�Y*���︬�b�C?
n~�n��-_Z��C�Q�J��b�J�s_灣�X�P^3�ֳ���)tS;�W%�;�#P=�7����I*�1$,T���g�w��,P������tI�����ws�c�ؼ����q�R�A1F(C~�R�U3<�D���S ���G�{�AH��4E꠼�	�vxSk,�0?7t���$�旬�1M�V�������,���H]R�Q3᷃$����5�BL@Vk�y�]�;fo|��P�I���[�(G��U�4@����[�[<n�i7`��7�Y%�n�,c�LO��4y�Щ�'	<��ԡC�y�s/?�G���f�{��������/�L��K��d��o�����{��7o޻r�ʵ�~�K׾��WP��uo�=9��إ�ݻ�f��<ɧ��>{��E�-F3ш.��64�5�"?�Y���<?���<��O
;GOa{L��h�c�F^Vφ��3o���Ϣ��xW^���=�h'1;��;���UP�(ÁD\9�!ز+zAo�+o}ֵ�7�
W�s��s�43���'��S�L��7N�F�?*:��-f"��2s���Ţ�l�����|go���Ŝ<
���S���[�r����y3���x�I.L[��R��8�1��g�\v�g�oA�B�xW��=�L�?V���*����dC����nj"�||��9�Bs�쥳�|�\:y�c���v6��8�;B��nG��*GUя��^��N��%|�[�҆c��P����|����O�`�/�c�5�)�$7`2L�pq}]�uM�J��w��h��n;�h��� �oVn��x�0�t`y3��VL������+�J�h�q�W�_�=F����¬e&��YY�F�Y��l8���n/�y����$گ�Q`���#�_T����{��}}��>�>�5�k~j��fNL���y��I!Gw4α1��3R���m^:;y��I�G�I/���_q��%v/����?��]o)�C��B��ch3�e���lؾ�Y�{p��n��c�9�״A�ƾ��#3�W9��<���$�guOvYb���&���{Ғ.�C���i�ڝ�=#�Ly볥�<�W�\����G��:����ӱ�i���LԢ��9���Uf1(��(��ǎM��
�;�qT�|���
g|m�g��1_��I��e�8��f�_]V���YK��]�Wtk��>{NJM�3����Xp��٥t�|�ӯ�N�9Ƥ����[����d~��|��g>pӝ����W����w�8q��+}牓�:u�'O��
7���&|���pDn���!���<lg��陀C�~��v�r_�<�����/	@��K*�f_����y�(�5BU��Ah�P���N���.f��v�V��o�p4���q��
�#��<*��&4E�?��ռ��:�p���DPi`L-C���o#��`n5�k1�Y�7�i�2�cV�A���vz�]j�M� 3�:5s��x��KG��F�x��]xBs�?}j�f���{1�΂>�}��9���I�c�ݓ'N��0*�	���eC��H�zYv��8ª�^1ޘ�B����(�}T�����Q�P�<G񡗏���(�u���O|�ß<�W�u�>/�����{����1aɸk�=�ۅ����8F㱆Ԏ��!:`iF��`����n�Nb��lX�����P�#��BZ\	g�92Oh�'�����w<7�����d.K�,j�B�L������\�XP�On�cZ�R���"'�Pki���x��r�
�5M�\@e���M�rGE7~@�A
��f��M]��$���z�R)�c���?��+����^�#H���<��w��4�'�A�y_�%	���v(�����n�I�i-B�V]�k.m(�����Е'�ј�6!nC��R��V��{c>�vh�b\L��Q��y��X^g�C�=B���,S�p����\�`A��	@��:W�C%�n⪬)���	Vwn��
�~6x#�(*�����e���ْ%� l8�O]�L�!�n�v~�����_�a�*H���
)�9�'����~NM�Es�.��e�?�,�Y�r��v(�g�"s�gg�L
R|���0�|����7п�K/}��e�!^���a�EA�Z\�R��;��]��|�(Hu��p��/�F��QHO�
��YG	[�M�j7�}�M���Н�Ύ��^!O����?��>=�T(6|Jl"7W�ۋ/>����y7�!,����q�P�%ԏ��xtj��yߣ�6��ԭ3��������/H�J�(K��bo<:��Q�G]w9�g<M�1�$�4��a#$ޘ�F%RkJe��-�`V6�-��R�X茀�.}���fq`s$€Ƨ�5�Id�㟿9��_���ß8�����;ɥ����_���W�	g�\���xs�_�'sg��V����h2�v�h����,���N^,���
�N� F��$ ݊ ���t�.dfY�%^��	�x�+�\�����<X�|��g�9�y���~�{"|�CAe%��ĤB��D��/C^0	AreyĐ�h�@Dh�A�;����8ݒ X�1��UF4�h6�9�	�&��T+�ٍA�T�)=3"7�#��|7;wW7M�x4X�77\�O�P��Y�q��!���nޠƜV������Q��/5�F�q��+�*��1��d;��㝝��kf|Y47�z�eE������dPb�N��.�/y])�g�/����̀���	����$�XL���{��<�MLĀ��	1M"�YRǼ}e*�6�K"��@!^������9z.'���@�}܊'ua��%��`��
�s�g��@�W`�Sc����$�E�4���d����$��pF��j7AL�m��v���$�d�<z���ڼ8�g0���N�)3c=�z�0�&�J���z��z��=�%&W�b~K<BZue����W8��Cj�b"?[=�k`�U2'	�'
�9��C�?'�BG4PRg
���I���x���h��`.{:���O�].�5�t�&��g��ͱ��	E��!:taF��w��ΈS�| @�i�rʠJ���I��G�L��·u�bpC�O�b��"SU���-���1	��K�i���H���u'>?��V
�ɏ<nPg@�&{��@ζZD�Y�y�c텙A��Z(b��`��`4�Q�P�N8��kl�a�=���A�Nc�SiL�a���1�8�FDL֙G���C��)����F΄cZC`dO�	�Rt8�Hʎ��
�9��A�����:2�$�E�0i‘���Q�J��Y��x�KJ ��cYN}���d�B8:E� �H�{���D�D7��z���;�=}�	
���/��}�w�`+�G�U���a詩����#�{k��B�?����rv&޳Q!�T����� ���;��%PHZ
�XI�5QTu�IMC1�'�8&E��M�ޠ��MW)���9D���@�D�&xNK�D4N�z�����V�\
g�I�����b9�V�Z��-vuI�I���a�~��:2�]����oV�j��=}:o���w��AS��J3�>����(X��%^g�'�A�8��q+�����Q:��^z����(/�=x�֒��F�-9\R
���?���7������,�I	"�'i�:ndL]Y�Yu��5^8�L���DX��A	4nY)i���7�
~�N��Wd��W�ζē�vqs�O�1�F�q�ui�2��c{#ȍ�A/�$[i�|�7��m1��a�y&�pν���d�̝��?�
�v��D��S�r�o"�u2�&��e`+��(-���E�Ҷ[����Z���p��#�ɘ"iR� ��8M̨ҙ9�E"�{������w�x�	�?���� �K�fod�w�|�Ɯ��6t�
������s�^�h����tL_����,���r����Z=%x�	�t[�J�΂�OD���H��:G�Xy�:^�LV�ʸ����\�C#$�P�HC�o�?;24=�����&��b��n�w>���U
�@��D���k�H8���Ѯ����Vs�V;��.@�4�vu����V9��4G��T)͵����g�~��
/�����e�:͑�6�@k�@h�]��@T��t�4Ҷ�����rR)�'Xe`��Ʌy:�v�쳋�]���g?�{�|����[�/`ʝIND.,\8?�8Pp�ͪa��)8��Rm��ݘ%�
�O$��$����XC>�$B]�T#����oE�P��:�M�5��{c����h�9���M��@�����춂L� ��P�О��cgmm����*�{����D����U��t�^H��'�mI�Rr+���+4֯�ZH�
�����q	ƙ3PF�K&w&��<�Y=TaϑS���A3���֑�-����+l0#Ό:��ǡ�[m3�<"�aI�'5��g\7٥�>�n��������6~�D8�<��G{�NΌ-6&��ݚh���aYE��U�Ƅ��c��=�(<L�$�%��ڂv��ÊsC��ɹ�o��ٓU���\��LВ�K�4�BzZo�����R�[��Mt�$pv�I��w��+cF�`T#�GR���L�+�t���[Ů�l���f��g���	�t:{��gg~ ��L�2=��.���9i�y\5���N�t�/��������0	^&AU9�8ᢦt//.����&������p.�2ׁ?,j��>Ϫ1d�iuq;��UndC�1���s�K-ԫ
1�ʅ���w���l�'���N��6ٻ�\�E�0W�P�ژ�ɿ�*��$nj����x�7�"�t.k��趷��	8�g-h�btl����Wq��q��yE>sN�Ҥ�0L9��i��^����՚�%w�,�����T��Os�T�&�shBy�����D{8Dκl/�A8f�)L�z�U>0i:���	�����b1dz� �Y�%��,f��q�d��&]���,5�4�ˊ�=�
1�)�Qb����x}�w����T�')XH1MZ����;�
U,u$����o��i�ї��o���Gi�_�!l�s�@�Re}��@aga�f�����KR݄K���l"+�j�5A��O�€!��W#���;J����RS5HS|� ��2�К��B�|͑��G��9�V��^/�K�X,�����q��:$��a}�"(q>��}4����BL�Xfaa��@�…���ܻ�^�A1��+E�ީ��P�*4��ߥ?����u�)��	^�ջ�&��9'>���(+�ڰ0�N�CJ�[�ױʯ�o�@uު�`��\�@�԰c��5�
7��r�����ڐ`����$��	`K�^���	D�J��mV�H�y��帺i�$#�4�O�bY⌌k�x�jBr9�1�h�	;�A�qGw�A%�Fb!�A6�j?�x�N���8œ�/����#w��@p���,�.fr�o�'@��8t�S��m��v:g��{}x��x:0q��*�n���k�d��n��s؛WS�h8��@�R�"!:��06���>-�ESG%oT�U�[~�E����L����29�۸�L?�JD�J$O��T�T���~�.�K���j�o��b���t�L��`̴�߼IJڑ�-%a��p�!�<Y��ȉ��.���Ӡʌ:�!�t.�t,�EN�8�$�kcsm��s���ξ;>����K���Ŕil�[[�@���L�G�&����'(x(�KX��B(��_/��+�@��`P��u
�
�e�s+R�g3���=n��\�d���>����NT6$��*�'r�+�o.�5����O>��/F5g�~Ʉ�֚r�H�T�"`��@����4��NL�E����L��"�7�c�A�9u���NqC �j|o>���-.y�_�y
���g���v�yꬷ�B�f��=G�r���kU�y!!YC�v�G@�Lb
�x�4SQ`>6�18X\ʆ���a�L�>b�N��hq����������%^�a�H���'ߗ���Ȕ��'��O�>	*�J)
C+$!(����S��y���H������۴R4p�k��P��Q�����EP�9
f[�T�,�-NV*��͙_��|�!��C�ܜ��Z%,��%dL �1��2�О:�$��)hx���C�L�)���X�9�ҩ�9Ο>�r}&,<7��M ���5�F�5�	�7��;~�Ϗu�0~噵L�XkJE߭B��9�_r�RD���y-�%�v�|�A$Qp�ԅ"�V�G���{�2�1��r�5������Ocje�ƹPQYn�W�]��D�Z����Z;̭K�+
�~ܼww��|	�KL����dΚn��#3<F���D�+�yߍ�mPob��u7�u+���L��b�o���PR�p㴜""�H[Y�S��+rXJ�1��߻�!�5��m���[o��z�����ki�K�9v�
f	2XX��r͒\���S�p�,�H8�|���ND�$4����H�I�;B^�2�t��L>��;y�u��^�$����WT�����ɻ�ch��ZbS5��{����9�t���(~��T>w���TGckHE�)��;���B�ԟ�f�� �>�񞡕9�tX6Z]F;賾X]\\�ZN9;
U����B�ݼ��?=9�@�M�6J�&�B�����#�Z����ێ���;z��`����W�U8�l��ԖL�����th��(��,��l��Чn�j���?���E6{��h�8��qЋ��c�@cј�?K��.	>� ��A�I���d���-�gs�Ll�����^���]>��̃B&�7���Z��
سU��W���1�=�l��;q�T`�\�y�����>�\��&+���3FJͱ����7�dM���d2���u��|�o�A*e�6�~����U��M����7v��+�s@�����)�ع�v�Ұ�'2�*}�[�%3,a%���si�(7���/�s�R�@����$�P��X�ƙ��K��q���q����r�4�4�� �I���2y�y�}�q�.h��e}0ư����ڍ-k�Li��\4�N�z���xT��N����S8��1
%YF����8�r�Z՗q�-Ґ]�L��=<L�N���r�<q�%<8�s�lG���%�5SW(�%��B���B���~b�=�x�� �K����_
zԼ<��I�A��U�6����
A`I�RcP1�oΝ��/�WƬ��ÿ^W�A���[�|q��ϯ�\�/��s!�œ�R:KR)�}d�$$�:���H{�HMxs~,��y�0
�<n���`4`��=���l�ȕ�ҁH�Kw��W]B��4Y��%2uo�Y$ÍG����'N���ʴ5-5ؘ�E�\ ��gT���$��T�J�P#�p�95�y�,#PŠ��Qs�����Ϛ�t�1���5/��<7E��0��=E���-�Cڌ�,�s9�tO�:���֧D��g�T�Ս�%Ň��h��F�4���m���u������A��#��^I�5j3���l���C�~��pf#��v�A�E��a7��|7<$�Ek���+�i8��-,4���qtԧ)@�ր�煏�:sKA��i�
$::�7�"��Lu����<�����E�u���FQ�:���*�E}G
(<-�3��#e�PKC Y��j�(�^~��<q`"���S>3�&��S�l��0N�t�J�ҳ��)*|1Zl��m���ps����n]��[�_������;w~B������1<{�
�.z�0���O~�g^����ۏ�O�:�J4��`=�_��׉���ʹ,<8|x���jL�i7V�]]��)��ƘT����$�䦯�D8�yW��"�[*S�T��FթV-��n�l�̪�-d�8(�撥و8�쒝����E�Dx~�nV�.�6�K���ݰ�9�-��3���0j�S����J�bp��H٭R`�n��7��5�WTK��=<|�#o�d%ɩ�@�y)��w%8�)@�[bN���q���ӂوՙ=�qݭ2��S���a#�m�s��v�����p\��׾�U�'2��p�?��v噰��g��;��~!�3dۇp���N⾑�tƙI���uy�- �w�G�6�QY����ؒ�6&)�K�,-��d����+��I,3L;ԣ(����d�lK]���Ɔ��@��!E�!A=�|���?B��b_{����ȩ�mh2dH�
�L[�&7�umЕѩ9n�w5̦����z[�[�n�v��W�C�^�n
.x��/���{�I`�����O?ud�(a˘AED|M�?��3�
��l)��'��l����5��.����;x�Spؗ$��6:�{3ʋ����*���'��Emx���^���.05+�
7nf�E�u-�1�Pt�L!��˽��.�,&�5�4po�R8j���񃙷g#wW�rqj�Z[�Rƶ�rNY��������2���V�`m��d�P��w���|2"���&ܦ;?����6�>;>u���u�@D0��la�ml��%/�B�M7Ҍ����ܟw�R�=(��Jx�YNI�qG�'=�h
D`���L����Tcq�5�FXJ��)�8Y�J
�	J�s�×���t�Z,3ި������ɺ�~�JJ�Փ�oF�X/[H�vKb�L�}���QD�c���#����컈(��l��{���1�J�9\WQ�Te���rƧw��-��S:�2�x��os���&W���^�ɝ��ņ0��DO���k����;�>�@~���g�+獯Сԩ�0�tޫ��R�n0��RѠbo�̳Y�+:�\���f�U�4�O׆�~���W����S�|H,~m�!�2�s�-;i���V�2��VB`���"����F���"�8Ǧ.��av|�0)��4���;C[�ړ�Q��42�����-Ν�I���#s\�����P
�kڨ��ƲP���J�����P?+U��ˤMb�m�z��c�*��`����>����*�/�R����i�h�4�9B�aᄃ�1μ`���fu�{z&�
G�|)��J)�E0)��a9 :�ѓ�Z.ot6%�B�
�Sx�##-��\�&
�Ct�N���S(h�J̰�P<>Y������~C�ҁCRaΥ�簎�mO?]�v���ss��smh�ҟo�������'����W���FPp}s��
/#//�
����ڨ&<Kۮ0���&؜��;w�<n�fԶ���i7ps���iJ"�mM����wY����L��񢹒�NMj����Mnx�(���]�8��ֈ6�Y��dx��&���%�d�AL�f� �}�a�3�w�2d�.�J�	f�/g��l�\��.��2`��?�;��H�0��AT䘵�M�SCI�R�CJ��fi%�Kc��A5�7�V�x��YA$�E!^���_�|��}�8Y��8�y�{��.�����y��חO���{��:�d^���&�H�N�r�J1&G����T�V�j`�8�Kz_�D2�t�v]C�X:���*��b�A���8�3d<I� �2��[U�/�n�i��!U��0�IL,�4Pb�2xw��If��ҪU��6��\���Ѻ��o���v8+s�FEE;�u�e�(`g��ю�"��?In��8&�*d�W~����{*V��ɻ
��̨py}l�bw���]-t Rq8KB�9�>�/���ID�7}[S�p��0xr�≂R4�c�֝;���X�*~��Ӈ��̣S���Ձ_j���bdP��~>p�K��ėV��h#kQ}�U�a���-�)T�N���vTv&�%H�=�p�$����m�y����95Ӵ��9O&���]��c�*R*�g��N���6C�3��z_�3yW0-2?q���J�%�yr[�'�ZU��|ZI�Be`v�lPdt��U̡u�˭B�-�\�(B��)�e�!�(6�^�f�m�3�D��%
|�ץ�R\\G
�Lq'�W�E���1����i�ԩu7Cu����a��)U���4�ހ�A(-�9�
�+J��m�HJs���:P���꤀#��+	�
/�E�-��V�o�=�Qᨕ��=ҧ�8�Z$��W*��ta��6�?Y[�X�m��A��ʢG����=L��.�9�^s�w�t���n0'?Ca#��N�#��<�B���o!�����.�ṓ�<v���~�������MaS0�D*
�,�"��
M3'�9����1$�X�q�";@0�[<��#q���HŬ�G
n�'��6#��ȿ(4�D6��o�n�xh����	�����`��p��E�њ��L�0������¬p�P
'r��i��x�dL��:I���Np�b6hw�s�*K�R<k	�	�&Bԋ�*mJ�t���uf8�������U��f��������dܒ@sIb�Dſ\�8�I"&{�H��#��	M�L�9����z@<����[Ķ���}Za�J���v��2��i�`!�F&�`F�%��rc��"�d����Y�S�KH�~�-
H��+�^�]X!t�9�ّ�x��}���&5�ʵ�CmT�Qz�A*�R7�Il�"�O�!�ջ���~ޘ�T�����G)��l��6�3��*����ȍ���ŕ�o�,�t%�T����
�K��`����~`�vT���œ6�2m�A<
R1d�i@�=~�h�U�����T�3 ��;h,��:���f�Z0�0��#8�N�����᧟5���2��KP�C�����$D�CD;R��	I��`
�SH���"�F�I�~�����-WDŽ��� �[#v�Y���hdgK��aI�ء� �}�f:򄜩X�lO��A<����epۖAq]t��$����w��{��.ԏI�$����!��ܭ�H'KJ&T�.X�o���VQ��͕)�`��4��6q�1F�zfc"�`����׉?]hQ%��`t��@	��O:;x�)G�0���J5?��R6�Eh�)w���vs_�׹�2��Ƕ{Ի���=v�낛d��e.~�0���Y�_�5�y�K����0=R1�AW����z�����%��S��lɴ�:]��U(?h��/��M�ʻ4^�.����8����_4s�d�F�~�����9�!o�g�I�'e�U��;k7�dB�t������Q�9)o�H�Խ4|Ƞr-�d�,*	RvB�P!�y�8T$�fc%� �	8H��	�ʎ�`��*��oD�1]�v'C�=/���OL1�LA��O!�"��"��s������o9S��ݽPƄz�
�c}��dڪ�6K����ҡ*�9�G��f&)y��V}�q�'&�����G^}�W�s<�p�(.Cs�ʹ���L��d�-�f�]�Y�G
8��~7�|+e��k��l��h�Ɍ*�l
�\h<�3n��	'�U��K�9�#o]Rn0�������I�jϞb`�俹u��/"�D���dc*t�Ē�t}��ѣ��}W�r��A�(r�3.�h��=�E�2�\�	xy��������ɽ ˀ�Oʑ�ؖ"e+�f�3�̨5�"D>_ı�$�N2�u_S/�i8�����zD7R����pr�>)8q�����
�N��^�*$�3u|�>;ҕq�F-����/���Q>�^�k9������x�IH�[̄��Nk>����Z���w*25\'T��o�?�KwYD�R����%'t��[��L6�J��=b&�$nbnmMP�"ʺz�2�e���@	�rs�I�P늇�]9��s\c5���>�76j����럪���3!cs}�}�lx�S�d�収X{s�B{�W��ǯ���x�_f��II<5l�N��3(;ݵ����1
��#'�=p������7�	��=*VAcT�<9�E���?���(��4ͬ�t6
$׷��&ť�r�\}$[]q�Q�'=��S��'��F��E����ƮbCƶ���ac��\�;��#-'D:�c�V���⪟�
��'��^��kL��t�䰑hK�"�:��XUK
I-1��d�x��cGM6�,W�؅,e��Ȓ���T;+�U����~͈��r	�pp)�>F����U��<���9�n��DC�ٮ�Z,���Q�$�/�3N�Z�bC	�t��5�}�҇�Z�������5�&5/����g�L=
�i���5R^�ާ���M����U�(����&3���(�%mf�\Aj?}˷���u\�m��^)kOh����5Wj�c�"�7>�("F�ez#�'DR�@�o0#t��iz���Uyp,�O�G�8�����`��g�&�p�3�rGM�R�h�n8;���n
N!k�P���j��.z�-pc�
"c����F,�8j���]��C�1a�uD*�B�&��(nsJ���FV����J�I1�~�9�N�5KI���I�
b��b�D��Г����y�S�r�gD�)p�Ϡ�6�B���8Vy
�f2{�yԜ�]4�%ݘ�eɍ�-�����zuQme���a��+�D�QS�<;����3��07Lv��2Yx�*o��#��!��țo������:,N��	-e�WW�����w��`o]+象�i	eC]��ۣ�;{(��{+��ٙ�a���?���\ ?����S�ȁ1??��ϡ�p��c�LJ�S�Ec'8�U~��E���u{W�+;�oI~��8��`HIr4n��j��$U�c���`q~<p�'B���TL O@�Jp$_#��O��H���^8BL����77��`
��0�臎cᾀ��L˱��ޢ�0�Q���v=���z̜��R�J������1҈�c� /a"l����x�`�B��V�/r0\D'=�2c�h$�	I��x��bָ�L�5�GE�s�ݜ���{Ϝ�<���xa�P�L�.�]��KC���cJ��~S�����c����fkxH�jCK_|r#�ZX��gW�#*���l�.�v u�`~젍���w��:8s>ǒb룽�m��C��TZ�r���8#φLe��YV��k,;?�@w��
N���2MCo�;�6ףH��K�hXnVU�xnë�[r�ȍ��� �E�)/N࢏}��(?��d=�7���\,�����'�
"��6�<�'�KA�R�|I*M����q�u����'Dԉ?؇�K��	KG��#�HOf��)����[B�^��^�FV�
����2(�h��38)�Xҫ���A�����7m5��13�Tj�A5��=��>g4f��S��]5Y
I�	�K�sX���Y�T�cǘ���b'��HG�{d��{(?<1U���\R�5FE� ��EF3�yZJ����<4�^V0ښ�L�de���.���#D�.��]]�&�_��r��>�k�5v"8����h[a�cumGB���`�3�槛G��@
n��&��s�C3��tifhf���+�*��d��z�j�I�[^&i�[�'����	�ժQ�o$���R���$�4�ml&�Օ>��]<>��z�X�ڣ�|ˏsq�X��+�����@@<�x��(������r�OY�Am����>�ո��EVR��@���z�����l�E�x#�=��5�![�����v��/
�p2�"9 ��I[��©��B��x�N[	a:i�$"�ˀZ��H4�?L$�n�~��/u�!1̚�c�� �ٓ�H��p:o��Ϭ��w���Z�V���3u��R.u�.ϰh���B`[�n�
Wg[�&z��[%f*���VC��v�
�%����BIu�9S���k�-�OWZ;GGQ�`wmti�p�H�P�ם�w:K��fn�pt�����v����:���~�V����~��1m����T��������uoĥ�߾X��"���[\M'{���1	(!���2o��_��&B&����5���lҘ'�"�����?_r$\�Ⱦ�C�.�tRl�����2Ѩ	I�ҁ��u�h"�D�!�'��j����Y��"��0XFx��!�9���#�ƭ�-f׎:�A�x��Z��bTYU�Ř��~-1��L�tF�e&��dW�4E�$�S}���π!e���t�_W �B�Dي;�!	D�%�7y��_U|���U|0�:n��+���)����*5��bk?�K��^Z��f��'��	�zz,@��™���cW�O��Wo_�\�&)�4�Pw���bq��흽�{k�{��ڇ��w>���o�p9"VuX�x�B�����[�v��?Ж�w��Bc��d-��K�ڇ��^y������p1�����	s#�����Pf8�V�<�T!�*�G�n�<Zv,ؤ��!�.9�}��5��eE�
���q�bZ��DA'����DA�O��Y�Ǝ�]��
�(�
�8�n�=��!e|	1�7��H�n�pݼ�]$:�Y�h�RL�Ye.�l�[9�Y\�WH���,�q��y�M<����3.�ePTճ�� �ˉ!�b�ST�qtܜJ�mli7��J�8{4��Ƽ��:<�O����4�
ФK�أC�SF�"g��KՇ�>]��ﯫ��-��Y\��I@�)U[�V����½��q���%av�V�g��ǯLLUى~��G��gY��:�U����jZ��D�z�M���O�ʞ����Ho��6Ћ��f{�ր7{��?�Fy��k�
;Z�4j�Mi�Pҏ=��5�dF�����U	?ʛ�g9bUJ�%�.j*	6�T��4��;�Ϭ�jǴ�/�� /��76�bVyN5y���$���2{h�����	���@b�:Φ}�f��I�����إs֘�|���nj���&��I�����
��8�8�MR�h��ˡ��E�ɰ�ә+l+�Q�Ĥ��<FV)��l�D^%� ��/��K�lD��ޛ����r1��L�-(���|��dv,�9�ʜ�nC��j�SL�$F�W�#Yű�M�z�g��{���}���:��-687�Q?3����X><wy��l*���F�̲��2,k4����^b��8�7�P���M�hN��O�4i��E��J��Ʀ�Ք��t1*
D","*8>���z驷����w����ty�)[���m�}��{��(B�T��TOO�[#��<��L�`p���6�
�k�2e��T*XT���Y,�V�\�7e�5��h4����z�J���)E�%��Fn(ev��3k���"l+�~��r~e������ޢ��Kd����\"Zgo�1G֍h@�����DMWeR��-|�OpЎ�=�t�M�#;}|�p>�ߠ�8��1����t#ȚJvj7l�����+����wB�����	�&DKdG{v�N#�Bݘrc�6�_eA�6;��§���v�q
�Ӻ���ˢ��ۼ9�|�	��f7�ҩ9��T~��*�x�8�����O1�~1�Vg/G�1�*^�VV��b���I�\}	q�ɷ��X��\k�(;c�������j���
�Q���\3��[�e�ܝM�q�z��i���Ȧ˻�����ʲy�o��T�Dž�����J�O�D�1���!xx����p��:7qݹ��]�eL5�nE��OvA���{��5�����7���*���4��kT�*��W0�PP���*5p�0��ҋ�5ԵYW�t@�b&zM%����=2O���H��>��z>ӷC�rqsJC�ǀ�!�1z�#�CdM�/�؛ �c4��xa�$�iK9R�?&�� ��Pnl�d?M;��Ty��ي&!D�P�؉��8eGcۥ\��%���EA�;����-
O[�Ď�bE�V�i�(!Q�J=ã*�5��*�-2M�I�q����$��H��S�q,�'ڪM�/ڈS$�i�]�yr��*lv����W�<���*v�	��Vb���T������o�a;2X� g����;�3���s�����bo���`�k�R��A�M� ��x�lU�p��������L��А��e4�R��(a7uu��=רjs��������,a��W��2{�V`��:	�A)�M7��X>���Z1Ď�o���5�m�4��� a1������7mT	[\O�cj�x��d����[�b7�v�,Ɯ"M�QF��79j��bgN�(
S�Rh6�	mB4K$��
��g,��TM_B��u�5�p" �A_���{��'��?9���;�
�����;X�-�sg��qeҙ���cD+��eoF]1�s�Yܕ����&a�.ܴkb��X�U���	a�"�A|��7&�o,�i�4���;��g��_s����ג2�h#�j�n�YaE����V�����
���V�A-��&�Xc��@���A�ώ�=�)XS>jfʴF��rxwD����!�}���z�<"E
�8�+>��Y}�[����t*4������ߨ�ї{PX�uXl#���\��HEh�+���#l5�w��%/h�0y�o��NJ��$�	28|��M��Vʼn��	�&�IS�oC��4�����,�+)e<ǚ�|
I�~i�H�~�Obt�&��V2�.��B

8�6�4'�-hO{Z�F�خ�B{��u���XO�!�:�5��/7�,9�8tD����u4�3���-&��%����Z�$��D
tQoD4��;���u�5
i��ISG<���xlP��n���3u��
}�!��-�����NXG��T�Z�eDc]���V�qNI
�x�	(6	��	7����N}r�u�}W����]�Lez_���rw�U+4��eB|���AÆ�����+�P���zzVKsE�\������)zD��%Hc����Q~�ѐ�B1B�����]��)���E�Я�8B��<�A5;��(v�3tX�0��&[�N�m9�0c��_�,j�Go��r�1u��ᐯ#9�9�}D�8P1$���pt�p���4v��tG�G������N�*cGSG�r�]-:��"�2B��qJ9�6v,�h{I�MZ��y�`�{R�����h	,�W�Q[�aվ���.[s�^�Q��9�۹7�D5$^�#��\5���2�ȩ洝X��1qXs�:1�M�q5p��`�O�Ao$�p��ʹ������qaO��,���5}CV����No�-R��"�MA��bb ��ם����}�O���#��T\�T��i�^I?�V��:�e�]��݃�D/WѥjC�2�Mëy������ڻ��S�Y.�����z�����,��Z�06�msffcu��E�����,���lN*v��D�_H�"y9��aEq��NԩГl!#��
�[l��]o7R�s�������#N�1yf��"���g�|��WN��wJ�G:���	#G�bI%�X�PI����V���$b#D{���(b�Q3?��@M�$5�]2�Q����^������b�!}ƹc���>)��hN�y{*v͑evT�T\��s������t�rB���K�۽��V6��L�&�c��X���*>���7�rJ)�F8P�R�EA�S5��H�:.��4�����Y�r�23
�`b���"���xu��G������Dw�¢Mh���VC�j�OwO6�=�zմ��u��\Ø�wEqt'�[C��;6�_�S?`��љ7�8`5���m��Ie���7W��;��/���L59��yV�wE�r
�Zv&@s�2 
#�2A��e���–�����xԱ���E�L�E���g�����aˋ��Cя�T��P"��Sd�Fɖs5�VON'�n$�"��
�6��J�~&��7�﷑���6I�r��
S�A�����uK�t�f���NN�����խ����;�;3ö���΂hG+F&�.�+��.�������K;�AcS����M�KB����&���?qK�7$oIu�<S��M�
�0J���/7<�N�z׉�9��
m�L��E�i�p����5��+A*y��/����Ȉ2̚-�N�7���k�"(�QW���Q�x���DK׉�)g���k��6q1��~|���
�D�_(����ڂ�w��5�W�F㩙C5�� �X���(��D�悬��JJ�=S��̟��8[�c�F�L}-�fze��_;<�����Glo��w����k��%�O�,`s��G5O�ϒ`H�+��ȝ������k��\���)>��2�����X;����yf:|�>��h;ʁ�GZ6��=��Ȟ�Ll�$|[�"J��q��|^0Qo;����|�ajLN�0
��H�Y��@�����I�M{/Z	ut���%9�D�N�s����&;�a'�*��C9��ӳ�ݜ��@
�y�A5?��<�Y��>�~��F�b:SY�t�T��&��9��ǯ��
B��^�'�g�eʑ^@��j�)����U�U/h2^j�U�݀��ZO� ��j�R���f��*W�JM|WH6D��lP�7�E�OjU-���6Yz�!��>�I�:�5Z����PE�W��GU��y~�~�W�R%G'F�$���h(�5��b0	��B8”
K*�f:%#-�BQ|�&�6�g�r�p�ٗh���3���L���䧔˝v�{��o��m�C�Y	����>�h�6KƦ�TR�6�ؠ���Y�`׍�8<�fV4�N‘f�dڶG@��b�5J/�,
n�����[��e��]�[�T���N�0$�0~��6a�h�$ѽ!9P�V@Gl�$i-v���/�(�>O����NDߜY��t5?B_�(�_��F�O;{Yd`�\]FIa�
6�u �}Q�;�C�A��u���
���;�P%���t`�ke�e�$X�]"#���Q}�̋9��]���ek4>OL7�z��Zz|���;�+���=�����I���M�O�������ܸ@wMZ
}6s�瓜���y�����m�r����0l��|����4��E9���	b��K�ORC��p�2�"���	W:s�
��r�%e�!l���Wo������G���<۹x�Y��'�r��%��ᏽ�-���0z�Z2���r�c�L�-�;[Um�8�~��)E��Q�-T`Ʉ1j�9�Ru��_[�
d��uj�"�R:��Ec�}u�R7���r��}.$�Q*���MQ~����L[�K�V�ϖ�rfI��#Ln�r%�Y*�4u�H~(�9����X�O�0����o��[T�j���;���b�`{pO�Y���̡��-�\�LS�bz^�:���7:v�{������Vmb��;��x{ּ��o4�Tn^]�?�Fw5����V��?͆�v\�ksw����t�n�"��WV�f�Y�kXr^�{��l
]F4�g����.���
 ������+P��o�7dVW�m���c/"z<kqX�Ú��ٟ���va�{lYiW��"^u�x��?{B+���/�e{�|jJ�S���{F1�~x�޳"�0k�Q�k�@��/A��K$_����ޏ
4��ɘ����l}d1YD� ��������G�Pfɣ��C\\^�l���4���s��k_�~6y��GcD�Wo���Ղ�7;��+���r&�=�%sm�U�e2n�$��N���!�l�7�;i�k��f�\ph6)y*մ�@�ZR
�ЦB�BN'�ky��nT&T�G�����|��)�i&8*�WgBj�����_	���Y_7�
)w���L�G�E�V�L���T}�^��m����H}�\kU\���B���7����Є�A٩A��?�g&g�XW���''~����`mc��;���z]�6����^����,������ϼ��o���V���z8.����*8Ǒ᭵���Ie��u���\��]P��/=h�o{����wN��%��)J9V���1P;Q�'Z��v����{φ\^:i���_� �]�3Ki��
�zrL���2&���$*V0����>��d<�[nĴ2�6��8	Hį�a�˅eNqAq�
�7޹�J~���S�*��'e�|��}�t�>�]��r!��A�����!\�)x/\��R��d+�htXY����˟2q�%/����*_���0�e�j)C3e��؎&������g���Lw�����%�����.�@�c��zpM�n�Z7�x����=n��B�>'���<�B��4�K��fK����3��Q㬷��hL�9��^���I_y�~w�ii����`���T�Q���#~�W6f&'g�}��~p�i^o��;���#2�aE�puuF��\w��x~��I5���W_}�ß~���N��ѿ��g��~��A��Y����T�&�l��d�Rl1��^��Lݿwh�o�]Т��I��Qk �s\�����W?}w��ؘ+0�^�S�FgA�3��0��r�8�����T+��0 &�Q^�Ƶ��9_t5$x��!���׬��:00�}U�z��>��c�?5x���M]��o�箻����O>�������P>v��sM������_�/G(��L�-���G��64F��$IQ1�$��)C�V_jW��f�q�GN�"��m1�tXL,�"�R����Ay��8���'��rP�?Q6/��kj�P����r�T�<�E�|A�eO2U�hT�����q��Cj��R�9U.��2^]����ubH�z�fK	%�@�n�d�emMf sޘ0������*A�`�4�̆.k����籱^�|��wf������O>|r�����y�`
�+��%ƹ n��T~lwG�c.��Lq�&�������nEC8v����I�ů$�Ƶ��� l�5q>���Lbׅի�>��o�kN�8�Y���W?���;��O���i/�*�;�V��jʼn�?�;����0��{���SZ(���� ��26�
�
'*NdC
��i�C��E�"!_�Q��&$�W^����>�S�o��q==�w^�
��>��m��@���Xw�8�~��6�_`�;���"��,�i�P�]��Hb롧�q��
��[��LK$�ʝ��󋋱S��R5���;�7��S�<t�ӯ=�}Y�5j3Q���ag�3�2�-=�}�A��/�y�N\�Pz��������P�S�����Psة���+����g@��$�GC�Ud,�8Uÿ����a7�`�@:��o'� �a��p��be� �RJ҃s;]��#�4��mL�T�9/���]��r���Q��Q��g9����@˰��
�J�H>�UV���|��|;�O�^��̒hs���.	6S�gy��C��t�N�e��!?V6>+]g
''��(�LI&FAho��0�Z�ϯ�� �O,V-��ʨ���A�.2�t���?�2{�%�?�a���)%/�U?O��+�xe��DX��t�mɱ��#�f�o�M����m��=AR�v
�h(��lg�M�¸�1�J+v'/��JӬ��F����	#.j̞��㷽��',6 W�����"U�K.��P}NJw`EkXcC	|���˜���c�'�'c���G��y������x�X�T�pӔ	f+�����ŋ?�Xl��y�=��]<wJ����v&{�biF|<��SO�:u���<;�+s;���p�d�C�wFT�G��/��8�V�/���|)WVUj�h؟ai�1�P`}؍�U�+�8󰩨6�L�ց�W�%�i8kWO������pn�ۄo�0�:B�C�1�b;2�A�%O8����kz��K��q�D��lt{dȑ8�iW��Χ�e�K-��h,��_n���;(�Z��>�ၻ�IH..�	��F��C�u����G!�=u�c� �$ę5������Kg������x8!��u����(Ř�؝hEd��w{���?I	^��6�1�,�vKH��	,Db84�P���Ma�$�����_�Y^���J�n�?�}_̦�J	8�^�c�:�t������k���_����{7i;�ɾ���ֳ�%��f��m�����Ǿ��X�%�(�
�X���Q�.�`��ʽ�m���?1�qV����=��u�'�$z�� �/��r�oH�9V�	�^iZ񩑇j�������Zn3�[]]��B�P0���CY�s�����\�H���♋�:�V����\(
��������\�Z
�s�'Z[ϭ�#��XKSk��z��_����湕�/�p�/`_|��y�
�#��ӡ��VL]
���VO�YI�*�0��s�_���jJ��!�:�D�yx�(z�����Z�	���}��4�"s`Ӏ6J��=*�����;S�ƃ��~ɔe��7��#N�>^���y<#V�+=�>�8^�!ո��i��Ѱ*�p��zr�y,��ӗg��-�����4���MwBjXP�5�f��E=���#�<��#��'�x��`�A��烈1�vᚃ'nዾ�W���_>A�z�
=�pa�/�H��hM�g�����5Rq��� ;��*�y��U��ӌv4|y��l���s�Y��d���ʵ34(�غY�sf�����.�/�H��ۮh�hn)�����A��X��f4a�=���TOؠ'׾@���&�O��<�F��%�o�T�)!$2(ӓa;uK�!���P�E�I��p�'��Z�Z�-~z���Zeus��;���*�pj�x5W��J d�O\\̭^ܬp>�z�J埨P�ؑ�r�R(�~"��s��D��[2ٖ�xǣO?��Wv��z<<��\����Jw&oq���>�w����M�~�d&'^�4��Kj��	[�/`c�~
(�FLJo��w$�����/y7�	��Xv�����[�+���-f~p��T���B5�N�E��7�KNrx�[y>�l#R�P�_���x������ɺ�F\r�j%"^�%-{H3�x��>{��3��w�3��S���K���*��z�+�ojy}�E@�lW��J99:y@�
F5�$�Zq^�^Q����V�͂ƿ�K�s�0#HЀ�_�?�2�n#�˞�(?�wgG>������+V�n_�[��^g_�C �5ʐ��3p�_�vB椁=�
���`O������N&Ԃ#���2;���NC�.�X
�Bj�%�8�����	�U����Am���x�ȓ�#�rg�(Kvֵ�@�ѵ	��y�%H��e0X�]��)I��R.SY\\V�s��jn5��ؔ�a��W5��^��*��s����"WD8�	24$�X��Jx�ީXS.WyY/��y/?��ւ�|WGGGk���Oߓn��x�=8x
�E�^��
0+�8��.L��m��8L�����m��P�ٖ�w��7��Cev��*����`?0c���F�y�f���h#�8���c��Td�M�{���NNkv[�q$npr��-j=�I����ׄg6Ph	�����<��Q�[H,�*���ā�h���B��t?	�C"��.[w�y�eR�Dѓ�4��
�a�}I/��5����p���K���$o�:�6�7�g�z��n{{{p���_H�3�bh0���(/.v~ҍ��ȸ�o�(^��'#6��ox1ă��>ޱ�>�����G��%Y���2_���.Е�s%��#����F���4BpMq�?
T1���b��j�ξ���n���ne�u�t|ot�{�}�ճ���'�pD�֗'̙�3
�5�ͼW�42���$�����M�����,�5k��=،"�
4�w���G��\��+�Z�V�y����{U{C�
 T3�S�aes����P���#,��ȑᎋ9p��P&+zA�|^�V�T�R���T(��r�'N�'��o.;�#�m���0����2��
�2CD7���}��I6M�����v���w�%���Q��y:�C�����ߚ����4a���c�Ƃ���h(#ꔃ�o�P��3���j���:@0��z#�
i"V�h���a�UAR���(�&m]��S`����Z>�Q4J�
S.�4��Ί�"�+p5��2EX�i}��K��'&'�&��.M��Q��IUx}_��gc�#)�F�v
E��<����s����5j�0H��4��1i=CCz2]�S�M�q
�:�@�( �w1OJ�MҔ�W����(�eB��En��}B����g?v\�k�TG�PD!��۸��N�._ �s�~��^�q��M,��*˗���Hx���U�:�~���qӊ}S�akV)}蘆�ӱ��ۈe�R�6گ�4���o���W�=��1vf#���j>���H&����|$���	��*h��B�Z����$���zn3�EB���|�f��G��E!~6��.�F�Z�<�J��sO�24�Z$T+eK��3^���(z�;p�I'�u����vЇO�L�9��}a�ݰ���u�!��tU��C^��f~��tx�+��k�5��\w�vC�~2�L#M�Rj���\<u��Bg��g�.��e ��K��_��ۺu%9�iVB��8��e��jud����ǻ梌$����%
*L�H=&W7����y"i+�](�;�s�
S|�����rNctڃ���;3�{��|u�����H�b��hvV4H��Df�9;5���[����+�A;2@�����Ol�L��U;^���N�w��(�`J��~��9
��ˠ��GOltFn6f��K�@"��e�S��6�h�!'��c��&�D�dT���ƈ
���BS�;G\�K�^�q4wt�E*WX��W�Ȱ�����!�	?����ڮ�{/�����ObPU͙k��o�&6�D!ܧx���7��z�5ך�'nmOp��D@fH��;!w�8#�ǚlw��Z>TveǶ��b��.0օw	�0?�:S����eB5�� K0;:�Lmq5o8�dZ�8�8 �mH<EEh�(�<��%�͝zʃ놿�[�!�*� �
Ф��X1�">�Ln�ӑ�K	�Nj���7�c��l�Je�����-o�j+g�7�f�-�.�>y2s
�d��Ṗ#�l�vm�����4��wO�IC����j����Z���v��k�c�?k!������s+��P����&�G�1K�YY)�t?��;;�rsa~+�]x�HA-��7vd8��z��D4������@g�p�涶/D��255|T�0���N����
���g.͒��{�|�L�~�Ց��Y��:��g��u7�H8�hWF|��0��6��>�R)gq}"'���
��fL�Ua�wgV$�7�R
�C��D��6�ܴ_]ipc���C�qf�>
Zt5h�����LCC�Xz�{�iOm#��p�F�	D���`4q�:��,=���2��a
班M�'{
*�Kk��A��s��
��H�2L�� %yp�S��$��U�g�lO$�W�>5��2��VR@����ify�I�"#��L0���bL��s+��
�/2�L����A�d"�#,���@�ݑ��U4J���d�Ō	E��"Y�`�;A}��
5��T��0.˯.�j�@&���r�yo1�)��󲱇 4g�>�D���pՂA<�S��!�P�M��_��O��b9X<�O2�əE�:N�9��t��l�]#�� 66���wss�-��N�)���L-@nH�鿭9�Ҥ�&?��lY���.E�(`�K��iG��z�t�˃�$����<hSjH�&�����C�1�'
R5xO!�Ε�?�r9�W�����[��`7�3���M��b!�'r3Zi����x�sZ�w��5�>:fU������K3���%PeZ%�ZKHe8��饵��˻��G�A��I�! h6��AJ3/ӈ�m���nbj���>1�X:��Z��L4���q�0�=~`���c+|�ᐥ#��D��C}��Ǜ��H9�}�}�P�A��o��з!� ���r�\��%�t��|��a|�}��K�k=L��}RH������:~�c��-�(����Tb�#���,`-��Qi���u�eF����d��]&��߁[Π�����1�2���it�ck*+���A�]����rQ}��*h��8�0 m��v�G�E\��l@W=�pI2c���	y��P>D�Ȓ��j�R&É@�ȕ3�8ݩ"2���$�����\��-vT��J�+�JUAM�"�HbR.W|�+>��H���,4)2*����&��|T	��uZ�Ӏ��)��\�x�e��vß�~ͧ#��/�Hiog�D�)N�w1
������(���
���ܣ����T��ѽ���L��颥+�	��a��oQ� �rK :7�j
E����Dni��o�p�i�4�Ư�+J�<�~�\�x =Wl��:!���7��SF����8u��'���tiƆ/��&i�gr���B�
*����U�5A4\1�_Q�=i�$6��Ar��[~�F�1���F=�p܋j�]&�)4�;�!0�3T^��ZZR����
��t���HZƅQ#�!��øV
2�e�-����i��b{�#� ��'�Q^���NU�n�[��c�#��E�&_���N3���_�I&���D�1Pz�2K�A�T��@���U�S�J �챣/>���ҫK�?�����@	J�&n���^|�_y{�)�T�{gxm���J6?l�@.��%.l����c����8 9	U��#�j~�c��=6��B+��8�i�ԂG2��VX�ek`�L��(W�BY� �������y��`�ZM��(X��
tЮ+��x~{~#n��\+���4w�x���ԍ��4
(��A�V��e۹���Vχ�_�����2"ގ�`���1>�I�a����L���Ɔ����������I��L�!�dk=.��ƒ���J��<�H��XT�.8^��P�j�I�9R~��FL9U���
DE���E���:�魍��Ռ��w�!ƬQ��O,1o�K~pt���ԝ�l��cz���?��z�����N��Ǿ� U��kR��%%�ݞ�+��0����
l-�I�꺢��=��`�ae��v���I�g�P�H���I���iE�⺻�j��9Z�o�p�(�
gG�{z�m��'&/\ +f�;ͣ���~3A�j�f�~{��>�ά���]��[_Gi�i?h�ԧ�Ѷ�5-�ߞ�����_�����=���*a.����'J,���O?��c/��I챷{�%J&^z�Y
*��⥇��9�G<��ѷ��\:m9�P��Lۂ#3��,w~��Ϟ�ť}E�"��Z��A���qR#��,�Z!i�	"Z��X�2� �
��^��䋊VU+�\(���,3��Q�nń8�qkp��?��PH"ޘ <���c��y�@���^W7kw-������������l�l8�׿��иC�ʪ4��P�;��d�3���Z����9�IA~�ƴ�Ӄ^��~p���_�é���@����5��yn+����z<���>O�&�3rjwk��|��o=�Q҇g{{�Sދ�`#z�
�8ak;�FB�3-�+�<;��^jツ#�_OqS�9vy��SF�C�DI!����7�����7h
��O�����4�����+�C����
a����q��&z�0	;������I?@2kvXga�"�=���� ��㷞]�v�;fY�淽�;������VQ�z�9�u<��w�m+����BN�~��>|��G?��"��{��x�
����>��/���./=��+���������ZՏXy�^3V�}���Bq�8۾ti	WZф(�ր
M�4����T�e�!9R���*�� X��bn(ŝ�M1��j������*&�p�8�lZc�X��T+Rg�^�R�`!I8�'��\�
�JB%���X-�*���G����w6FL�l?)P$\S>9pvB�I+�2/̠����/@�u�w�&8M�	���̯���X��
)�p�� J@�2�2Q�E#�I�;���si@"���?�FP�[�VH�Aj٢������T���r�1D�r9��&�bL`H�6
Aj(�j���4�Ӝ���0%�+�;eTcjfwzg��1|Iœ�`5��}g\�p���<~���R�-A����8�j'J���r{7\�Y=�$�,O�=�����D��P��3�<laoS}�-���o��AL��:������A`fmB2Y�}��4iijo��mA$65�V�|�"b�t�}�BR{�U�͝)/�#�û��g~�����)����%�B��j`���g�7{�l�B[�n6��?�����7/�6>|s{k�寿z��_�:��#���Ͼ���3��>tI|�(8؜>}������؇_�e�M�7;_S K���W~�����+~�]{��<���pe���'��@��7�$��Ck*10*�ڋ7����i�Bdr���%�1���f,�:y\7�pK<DY�8�݊!
I"
H������f�������(�G�t�">SҴG�+u'��9dN�aS+U��	͈X��CxUL[4�Y?��u�w=p����}@'D~z����2s�w�l�A��ԝ�sS	�G����
��mnh����Z#��V(
ƪ�6e����v�,�nm�eq٪��ZE�egw�஝wF���9��{ν�+ڼ�$���s�s�s>Y��T��S��*��ߎ`��ZA
��]S�e������� \cff�M���J��DJK�Be��4U��
;&Do�r���h�d������	:��5qOL�q�4���)|�P�y���TJ�]��2h����(9�u�R��X�Vd>v��}]J�8���\�"M;x�|�X�h�:g4�z��2��q�7� ,~�$�6�q�� �
8L�:҄�Z�J|Ơ�iC.�H�_�
��Z���Џ���K��W�Jž�ݦt�o@�P�ܮ�h��zl4SC�)盺��m�o|{k+e�mܿ�ũ��8e�(��������'����Ƭv㦶�ߏ.颢&����N����2"����d���Q�a���o�P�Z\Z\a:�q�7�N_>z����P���aD�#/�H�@GJ�f�~ym�t��k�.aƱ433�����uJ�ɸ�E��bV�&��;@��x�d��Jk������E��=F��ܚ��Q?K#�VNu�D �{�L!O�-Jt5d��\��Ab+MeQ6�!���TE�(��H����K��|�Nk��A=F~����\ GD��@� h��{l0�jm$#��H�m��ʠǿ�8�5��Pu����{A�S�BPؑt�<����Tuf�L� ���L+*�/�K빇���\�t₊�bi�RR�N=��ǎ(L�iXrV8Y$�aɷ~{��⩅ðU3��`�}�t�_�,�$���i���NT��*�U%��hd��nf+���N�X�}2�n���g�MuN�Nʷ��S)g�3�9%�2m���A��L�>��(��>�vX@lfI�%�A����&��!њ7k���͐�p&�F��p�nQ�M�|	i6!	Lh{��hٽ[-��[��j*,�Z�a�)�*V�tp�h�G�<Q2����Oɛp7^���J��ؤ��;��Q�u������y�@f����Y쵲���`M��+T{��c��{
��w//O�R K1/L�dH�~D�~�N�b�㧧��X�_}���W���Ϟ�/��gf����}oav~�B;U��5$���^�S�r�E 5�b0x
�-D��^4#t)�:(*���D���{{��d�����{��ᦟ�$3�H+�2�=6vz��D<��{	�D��h6�@ydi�����>u��a…81�~���w��RP�H��@�,\�,��X2u=��ѯ��C���CN���=0�ge*��G�$ڭ��;m�3��#3�E8��bH��Ώ>Q��_�n>�q�d���*n�9l=g��2���i�՟~�ɧ����*�D����{ؚ������Q�B�
�<�k�����I���jK�sjeqƕ�a��h82邰�bcq�zG�uЈ�p�2X��L�L9u��9I�p��v\��3s/}�����4�Ɨ���VrD�^����� *ˡB����HΎI��85���3�B��y�6x���J�B�‰4]˜�q��chrp��F��͂�p���W��'*�3
c��[^5�So߂ur�
�RPz6��3X>�Ė�WI~�wp�N����L��>/}�#���x��_\�u�����{�_w3�{�׮��'�۸/�G����{�_�Ud�~�޻��Iq9�����S�"Ir���N��Me�t�\��4X̫��LF�x��:�c&'��^�6�e������w����������k�|�־z�N�{��#K
����,��2z���X�T��u�x.]�"�Y��X�#NGO����H�/��Ə}!�s)^�6'����Ytme�ÊQ�O+0Ar1��!bu���GE��(<:�s���5�Vْ�OR��}�rԬ`�49�w�3]ɜ#9 :��g,���V���[�rΦ,�����Y�	>�p#�O,���t��+G�T
������p܁��'��|�c�*�de��$�����9]��2_(�d��3��Ua@~iET�<o��ҁUiffWK��L�P�V�O��1�"+yG�c�*�3��Wv�g!ߠ�xl
��d�i�pX?��q��X��t+�݀|���X*_|�[�\ya�
�E.Ġ�Z�((W����B������K�I�W�mC�
|�A�f�5Q��1�QH�y[��k@����b\k����	E�0̋�Ui�0����c+�Ս'q������7�S/��Q��V��,u��V�Hi�t�q�M�I�nb\&A�I��0Ӧ.�Cb��Ќv��H䁣9|�t5���z|�Ԟ^�ea�A^��_�= e$I-ndw�zo��vY˃�V����e�tx%�
�Y!O�=6�O&�0�a�,���<#N�S�cK��[Y�<=;02�0y����<p���������H�1��ţ�t�%蝀�2/S�R�4��K��$N���
�q%1�Lo2�P���L̻��e��(�$�.L&���ǿ��éx"ӕ��j6�o@�a�rg��8m<dR*p�]��.G�%���\�a�d�o']��
��a 0�Y��N^s�C�ι./	�YI��Z��5��XD$��+
;?mb
�I��e���"ˈ��x�&���&�*�{�"UZ��C���KD�	�X��8Sݙ��y��J5$����UHҔ�z���KB�����S�*ҭm��\Jo�:Ӷ���	p���n�m��r��ɿJ������R�K���r�+Ǫ3c/��s�5ٯ�>N)���`�6�הg5Z�I����ȱ�!�S$�ZWM���lsR֐�(A�+
��v[�'"6�+!�p��oJt'�L�?�T&)�͏*8��|!�V����]YҌnf`�	*NS�YG)`���o
^A.�VZ���:v�|�}�M�ʌ�I�8���`�_���m���ȴ���/��8p��k���$C��Q󫨺$Nf��K/������AG��#X�/,�_�e��} Y�KclqʋKBq����as��jI��TB����²�i~���vO�x�����kDp*)�w_��C�m�W=��X>�S�N�Vp��Oܸy�o=3w��h��F����搶G��_�S��ȯ
�S����F�$�l:樔��^�<���E���N��ڏp�g~��"�d]�� p����E�_`"T)Bi�� ��Q��p�<uv@�a�<�3��/Ս�a�gP6?���:��W4� ��_�5(������n�/[r$j�ӌ�^[��ܳ�%�b�S%ȡ��)�1$;�B���'�d��ӈ.�YĬՔJJ^�*��T�d綿g��=�w�C��eC��_��A�Io��`o�K��S�M��CTDwm�]�:Z~ie��98S}�?�s��+K�H��_Ě/�6��E�ŪUC�V� i}�~e��h4�μ�y�Qj��Fx�p�;h@y�ܳ81%&�E����u��MTj|�䈾p�bBc
�|���l0Ӭ�@�v v�5A����jk�$Yjλ
�1xv�<���\�Z�58�<�LCA#�j5EwAq��jy���s�iyq�����Ç��/L�)�襙��womRa^�L���r�P{��(���T�/ݛ<�hϞ���i:��G�W,�g�#~ƤbV��

�*�^e�9E��4�?ǏP2�����/g�_xY;�:�b���|��u��4�A5ӏ��[�
��h��΍�r^.�GJN��ɳ�m��:�5��и�l���
2/��=򮸏M��O2�%�"�+�YO�5"��:���2`UH��&Q��4ܓ3�Z[a<�vPy��@2��g���ѹ�UK�jQ�e�<*��O��۲��T���T���k�b@Nl��h���;�?��'��<�wc�p���&�™=�J��d{���ѭRtR�`���)����˒�� Г*.S��UK2��3�����m=ՙ&�ҹ����rC4]�I�^��k��Vފ��Ac�aL�3��?Q*���;)��J���[7�Fg�����{�O��܊D
رq����<`��>y0C��^��uoҹ�b`Z� �
{T�~�^#(&2��WQ$Q�_P-��n]��vڅ�0��_�t��^��������h�.�Q�$��ħ�B	�ÔI�X �W��&9��O��|D���D8F+ȉ:�G�:!�.J�����o�]�G�Q�voV��`c�,���~�O�q^|��KY(�
�P�3D,�y��d{.�Ƽcv`iy�T�F���#��Qg���`p��� >�.v�y�#�[�������	�c]6����f0�A5v�^.�ƺ�f����2^y0�s='�%�'2�\6V!�ʂ:$�)��"$E�
Rr�%#��4ڍ���x0�Lh5H<�(� �;wY�q.��C���y��\����
*�s"�F �-��s�${}�"�6G�{Z���#Փ�1e^i�S�.�P¦����O~\�EDP��n\,#IDba�����n�V.�}�1��啒������L�F��zy���R>��ד�u7�4K�"�W��HG��r�D�I��#E��̻(�*��vR���@� �sܔƾu�ʍѮlG�?���~p���[b�5�$v�^�)��n�����q�k��[떘LS�g�Z�]0wжI�(�@m���O���;To��>�h�j^����%M��ͺ�(9�6���b��
�&�gSeP�ڴ�U��$���@�ԁj�0��3��Ms�*T�����o&���M�M��m��L߻v�h�*��yP�0�"x�O�7"8���7����+���k~��G�YڵL�.A�.��@�%��Kضjp`��_���S$v�GW���Q��
x�G�A}����ssd5�T�h���؉1�X
<y>��W��M��
�L�d�Id��h���x�<�PHv�9�bU�X�l.�+&�A�xH�l�"9JL N?�/@q\@"GA	F,܉���}�4Q�*��b��$#CZ��[�‰#QX(sgVR�/t�f1$T&��MhKV�Y@���!���%j�;IQ&t?�$r�Ƹ�0v�}7����4e|Š�
�p�CRiJ=�
�o]�;���A����B����V'�[�g�:56U��*����tr�0�N{��+>ԴeKV���[E��4�i^�ս�i~�n��o�7@�=�����^��C�n^�x2�e;b
�Q�>󀦚u����&R���X��q.0uk�[�mB���F��X���s{�X~���%T�[ho�e�us��"����a��R��պ��#���cw呠C��c��n�D�(�V�4�fY~Y����Z�ci������7f������+� �O@S�ႵҠ��#�,�VG9|��ҵz�W�ȁ.ͯ�o?�
�\�k �F���|O�U�a&G�\�����Q��0����,�?2=�0��*���X\)�%�!���L��tI�["�96�8	SI�>���8���]�Hq�Њ��N*Ab�/���s�F��`肙L_���ӽ��Wz��${S���}�$	��7����E�X��i	O5���%́���?���j��eK)�U�e�����[���+/�?J��"o��D�ڠ�B�"��e�,5v��6����!�۸�N"~N�7b]҅�~�d7��ԇ�FX&B.��Z(m�}8A���YT��R�^�3��"�ѓXȧ�N�o�-)�g⤽,�MRRph��\�s-~�p�xKjB����o���[x��D�z�7��ju�,Ԕ�
�6|�W�R<1w1���_ڼ�������#����B"�nxp��gv���>�v�2�1�껲�����sweh&�o	����G<��T:�xa|\�Ǝ��9��.i�^�ij�Y����i�F�.A��:=�l�IU��G�)��,����Y��D���]�Y�k��7O\Z[��s�,;p`$�ፐ��=������5�Ժf�N8����s�ـz���򼖌��<�V?Z�Q�Z���
��A��>
7J�,�*AAxcZG�ޑ�x_/K�ů��I�I�R_b\z�>g�{9��oA�)7(h��l���t !l��x�c�HM�w�7s�S��(I+N��>=*Q���>nK�j�/��<b_�(����r,�B�S�-����3�����\
�X���f�9�:9�#�NG��*9WÛ#i]M#����j7����O��
z���*��@��j7�ɥW�h�w�`3S�R�F>��'�Ϣmc�"�y2�D�;B
��mM�񺉪3�^�Ns')`�!}J5:��I�sŨ-0T�م<:��Pͣ�3dS����h�|k�,c���c�0@�g��h�û�W���~�ܪQ)�-p��T�`E��be[]?{�UUoj���M��S�0��CJ$�(��IA��.V����;�8�e�B��� ;ѯ�.�T~��
�u�fd9�Sq*l����<�T�&<�z,�
��2d�R��8�`[\�䮟��e#*50�X!��9� ��y�x-k�#�f$X!u[@�p9p�0��V
0�}�~b������t&�81��K��K+SSeG/-�Fp:�	O�o��#dL%��xh��G�3���z�޳g��D�#�P�/@:�9�u���+�G(�e�O�<Ͻ>-=W���?�pC5%�:���G�XT5�S�F��Z�,s�"����!Sr/�*P�3�� ��>����h~B�GQ (���G1Z�n�Fݓ��<�U\I��� =��z�lآ�8J����C����MU%ܖ,k�qB�0-��H͒�N!�M�K��=�-.���t�>9�r{��t�G�!��c7J��ͤ���"�`��P�B:��&2)`2'���4����Z"��j2�f�v"�Znm�����U;n;�b؆�Z���]5�0:��x5L	��Fe�?v������#��o1��/��:���$�I>5}�,H�F����6�%=�s�
����"Ex�-.��J���|*��^�(�9�%	,�	�|x�/0��������V�[�}�8
����B��8��̉�vc��C�d�k�.�:7�����=���omx8S��T"��\�9�%I�^�G7���OC�1dʪ��ۢ.y���=v��r�E�9��f\2)>G�����5�A!(��p)2=#)��a�����Mb�d�����(����h+�Y72L��Њ���
o)G�وno&��0��搒4AƲ›��w�ɏ[�	�I�KG��A�B�y&L��?�kñu�)UYZB
��yO2L"��ž=�%\ٴx�!;$�P����G��
=�N��8p�M�(�p[$�\������%�	�����P]L���d.M�c�.�8�\��� 0rI�6ԭ�P�^:("�%�l����	�I����F�����@�vkcӦW���Ԇ����)N�քkT�?�Gx��_�[�$�0h�
�2�>�艚��h.�FHCk��"ʏ<�%��ڔfZKL���GSCAeeis,�S�0�A�2;��1;ߎH�~�92�g�ÑZ�S
qtȎV(o�I�L|�����j!��i�5����1�Q>uduv�JCFC+1��Q��f��9
����P�0Dq�͇����N;�C�<�c�W�z�`
xf�g'��9&�Ǿ0|��dW63�0Uy輀܅aԧ�~���v�w�1)�Ћ�eN8�T�r>���W�V�J�|�o��t�[-$�kD+1�[��I։�K�ģL��
}O��xY�c���h�S�`)�6��w?�ob���U��bC/O��D�/�G���H���.���q-/�\E'��F`,|k��u����	-��O�
�+e�>�UJ�
=Z�o܄
e:�)��
�#.	7~��jpթ�v�'��e#i^9��o�����
a�n����(��<#L�*�`��f�Lh��ڤ�m��r��I��PTr~����,~��y|ؠ(!����+d�w�$K{�2����WVB�d*��+|%�l����߁.�CB�e�i�|i��3b�q��n���ח���6�33;t
ߙ��5�va�ޝ���-Ƌ����#|�=���9jN�8�n6j��a�xC� '�	�6�)��X�1�&pؒ�3I;���
`���_�
�(B�92�KjE�є��D���	�de����z6Jg�J�r�yȋbZ�6�O<�����
�m2b8�.�؞�z�-0	��B�w�ߺh��
{J?�O0���� �TT	-0��K����(3weS�nIVĊW���Kq��3Þ׿�+Q��S�s� 
�*:4����N|��ne7p�(��R^/�M�� �3r�!Dzzx��8��u݆ۨ�S�fu��iT0�!n��C�I��#�.����%��JwC�7�˷k|<���r9(�;:��H��&���B��s\)��M'K���ԭu�PnD��ȕh]�D��I�8Θ�n�J�rMǽ⋬�=иy�t#�����/��K�Tvo���/ZƉǹ��'
���uģ�z�A�>y�J���T�U����x�G\�KU��}�P$5�/����
D~�
M���!���/L��\`_���ڡ5t1	��g�;�~���#�B|
��ô�q(�z�*r�Ua��v��㠣��Ej9
�W�!B�y��#�F���T�q&�1󹊞W1&��$��W�4L�)��ZPOb�#��Qۖ�{7��:�=.2�Rp�H���z�׻�/�±Q&��&��MB�Ҫq�B�`I���a�T����7^����Eа�ٿC	�A;�ƒ��GD�U�oi�*EP_!���hD�>���4\�!~��<�nx��6d���B�1���&18�;R�K��E��U���%��ӒF�z�4w��술kUGx#KO��ٱ�_��
�$����F.��^�r?�
`?�ϭ��4V{Ԏ����ks%NVr��wܺ�>��81 �`&�&\B/�h�9�>�fʯR�b&J�/������~��V���=�Ϳp~�”$�*jXc �Ï�J������D�kb��ÚGY�>��A~�Z>.�))�˲$���2q�k�ZH��ǃ��AJ��A�	D�ީ�����JMVWۏ0y��"�-���s�Wg��)v3C�ܳ��,y4�(m���c��K����?�Ɓ�c:q-�",�z]8n�ةa�€F��|���~��Gf�Sd��%��J]gqv�;�^쓪�q�1�/��O�$
�'�
�p�V±��堙���OF4��P�ա�&َ
b���th�Ib`�{��{G�H5#$�Bp���g�5��j6�wx���MѤ�@̇u���4*�i�f(�3��c�+B0���M*��>�
�"J�@�9{���v���U��U�	s�����n4��=I:�9��=�m��b�&}iU���Y����0��5R�	N�`��G��
�lR=ѩ��k�y���4g��;��
8y��a5.򍯮4׼�m��&��]=�b�9v��n�>|��:!��n>i4��BC6o�Тn�YY�͏�MD%)�zȥ@3��
b�nL�_��\�1O��x�;�
����-����)By"��]r��ѐg����$N��=&��S�E�(z���ދr�0�'�/�eUӳ�]	��W)��/L�R���2&4��	���
8c(<9���k_>t�{a]�
7M5�Ba��	�5���ǪUvK8:�2���JB��_8�=�zh~
����b�@ӿ��c����Aj��̝�9�:t�Ӂ�֖\���4���͍^dZ��t�ޜoFmcK��`����v\��2;9 {�Df؋�׃���]�R�II-ҽ�H@bbp���
l���7�pO$J�q�'O��������O/FU@?�f��m�l�F��
Zԣ��ɪ� *E-Wy
SB
�[u�*��v��v�A���#=�wɰ��|TXӎ]z1�*�D���Y�q-or5�#��y

2�L���=�z�̒����c�-��e�Ɩf����;��z3!�D�rd�5.��7k���c���X�M͗OC�i�ӭ�d�m�x����ʺ��j��#��
.m�9�>��INi	��dw+����M��wm=�ww}��-�м�x��/��r�������6��ua<|t@md�\�c�Z����1�
�#�Ȇ��n�OUVH�|e�}tlV��<�D���c���SCZ�0=�z�Y����җI4���H���pCr�6�Pc9���>A�����_�'�~4g��u�x��K��/W����>�70ܘul�("��*'A��8o��~��ܕ7�0�^�"��B\�q���L���ܘ�x��v��Tg�5�=�[���*��&�d���BƵף�n#�&O�
~���N{���Ԋ�Aѭ�qGIq\�F�M�G(�3�}��@T���^?�߅�;��?ʦ߲?������~�e_h���4�'��k��'|�!Mc8:;ӖԔa�.�C�?�:�P��~��vjzR�(�
��.YU+j��j�q'���
���Ȅ(��D[3�͝O�5�i+C�#
�asD�J	�o7�a-�P�I�H�7�J���zW8���ZO��E���������	�^��O��ͤW�Nz��}\��
���� ��m}x�|W���݁�O��߲����H��n����M��K<����ԅa���X�`�4�K�N$ۯI�҄d�.�*6�&=Ǐ�^`S*�)�M��@�̵ؾB���s��wx���_�4�`}h���|�_�����~t��W���#�P�"`�����P����D�DV�0����k�0��
���q�~�Iq>��朖��:�}�g�;*�t�Er����nL��=s�؉g�z�o(nsc��܍�]WXL��A]�ܜ���`�U�߱��%�˒��e����
L�
z(�%�B�@��R�
k�&��܄�W��M$nx>T^�AD�?�)���	m"Жx4l����Ԉ�_L�>��?�61���r2�	^�jLo�B'�a7����a1�%��W@�Tq�s'$�۸$yxB`�X���ٳI伈��ڨ���Q���=�d3��v�.J�|���o����V�T�|.�ͳ���,d��f.�i�*�ǥ�6��Y
��e���|QȬ(���u�n�\��ΰ��,DUx��v�I�I�
���)��]�J̰TCö-�x_�m�[�.�=�(��m�~!��/�+��L<mⱞ�Z�^p1D��:�h#>㸊|\(,᠔�&H��#/CBt,�RW�Ն�	|�	��~����oݣ堬=�ςמ�=
��K���]-֊�߾��_��|��^�����P�6��xX�氍;d^&�8|[fG��9�P��D��ӯ�J'��Y�Zv��S�W�,��AQ`%��WȘ�*�s7�z�^�6v�:v���0nܸ)���hϕ.���yn�u}#r���?��u����u�dx���w"~���������K�v�T��|9r�_b�~x9������h:p��0š]�a
�ʞp�IE�$Y��!�HW�E�N��')K*V�NV̺-��	c7���|Ѝ!z���L�5aOi�-����
 25m�����Z\�e�g*�ȟIt�	
m[���F$�<:�S�7e*�_��5nv(55�R�'PaFQ�Gs�pU�����0����(DJ� OՁT��Vm�d6v�D߯���<u��>u��h��f*�f!�z^t��l���1�݄�k���w?��πw�&Y�m��m�8un�ن�Z���#��=��8���h��#]/��׊��n�8�R��J	�T'�ٱ����,ͶU��wX��[�D���\�J�/aΖm{F�����70 �͒�m[���hR���w̹���l��k�~��~��%Л���Lo�42�Q��#��p�����(�(4N�KF>-����Q��D�F�Y��e(���Yd#x�3�2�;wn�;����J5u���U�4��MٙAX2:��s]<��"Mg�X�h�E�=��";����d.Ai�˖=��l�D=9�����R/�S��#�ZH���ҡ
@��r��l/������	so�)0���X�N�>7��iO����Q'�B�_a��OhW�{�l�6!�G/C�M�3�|���o1֯f�~�ތ�O�T=�q��K$�� B�5VJ�����_U)#Q���C�@�����y��.���C�X>38����+��({��r0
Y	����HR��)z*c6�"����XK1ӭ�;�[!&
ڊ�o�q��a}8�a�;��AV��b
]i�j�2=o➷���[?��iS�ӿ�XƟ�,!��ɂ�F� ��Y
e6WJ��kp�p�2��&�T\!�H�L���h�W
�FsL
6����m=��*���-�i�4d��@�ɫ`��0����
�nj�	�i��Դ���g��O�}���u��oI����Cp~��~�<o��0��lj�x#P	Bx�#�O4F1q�+�cq4ؼ�%F8"�`7��tt論��*mń�ɱj���uv���]��x�M�ݹ�֝9�Aߐ�+hrPzH�΍�� �R
��E���	�)�o�J7��ы�v��@%����s�?��蒉�^/��'�D(����NK6_1Wo��v"����#��
fD�ĈO4"��5���Q\B2�A��L;|�R�1u���.HF�Q-�Gw�l%J�3��@�j�0�(b{����͞)c���%y�Ku����H�V�濌��JK<ӥ�%9D�U�vU)�S��؊�̢&8K�a�N?�!�o�h���7VA[v7�B\�j
n��f10��x� ����
؏M�)ɜ����S$��uz�4�x����Kf�+���W5�y��g؜��GR��eP�3���"p$���Umf`pJ��܃���m-��&Z�ɦɑ����ؽ�M��.9�7�ǚ�7��52���Qp#M���	t��1H0	m��`���+�;G�ȃaHL][�ʡ��GJ*N�)�ء���X���#�a%j�n�F�ذ��a��q�.���{?�`�(��v��a�o/�3^o��)X!��G��k���ᨫ
h��G��~�v	P�	;�w��%<f��O�{#K�o���4(��v�i^�Nܸrb0�6����37@����pE�sQ�<�,3�.q�n*�b
R�*�{q�C�Q��oP��!<��s2٫����8j�H���ᾤˋ3�	M��f){����s�ߧ�oS/��BAT6�Ծ�QjnЇ$
+%����B4*���Xm��:�鱍�^�Lk&=g"Ap�
�8i[xз%c���:ҳT���UlpÛ��KE��|��0x��x�:TAZ3F��U�v�:�!α)
<=%_o���Gy���)PDjrs�v)��ȟ���Y�Z�G�+����&��	�'��^����x�O�h�p����W�E�KC�zh�
��֕2���l���Nv0�;\þ��`��New�>[�TH�u@=�k�C#
dV���|�f�0��
b��H�&�9aӐ�S������蘷���B�Ʒ[��C�,��"@ P�q�fϳ�=��Y�>��
)S�����n�F�uR8�0B-V� i��$�&@����l����M�=Bj�@*�������mB�"�
���,�0Z��V6b0�d��S�-8H��=X��C�$�µ�W�s��r�
ݘ��U�:zU
�$X�S���|R�a���&qc.�5|�PC�ğ��6N��˝�IFE�tø΍�]�^��׿���ue*�fu�I����:I�\������TWȯ��_�б3z/���s����ʺ	/?֕ti���=Qm�B�h�
��W����ʶ+
�c5�B�M�_�A���Lr�� x8�'���I��8,?��a>+<*)�w�I�P
Y* �>u�[�o�?�n�A4�/pF�!���\_�*�^�4JV|�W��әTQF�3�g��I�)�F�r�`���`:L�{�o���+�Ou��G�2"���-����Λ�ũS3��~GQ����_�����\�~��<D�A����|݋����q��)$Z�}��b@G15�u�1�/ܽ����Be`C��E�������e���U��6t��lY��'�R��Om��v[ۦVXC�&���8-��
$3O����B
��c\	�=-%/7B3�2�d�-b,���q�n�:��j�Ds�(�^�ז�b�}k�
R`L��ڦ�Xa<���^C:e��L�YWY�׿�5ɐ�d�W�� �7WQ����#���S{F����i�r��01z����,�\G��v@
a�Л���]8���r?H�p�84�\����½���˅dT�ݬ#W�cf��CF{�&j�Q�FHC�]�ѹd,7w�U����$^����po����^��x���xg�1��u��ݨ#tq���(���tI��5�y����v�9u��>�Z<W�0�����:�2:#-A�Ć$#�|C��@w�6c����|M�i^�{��R*&)m�s������)w[ɇ���\�8$d�6���d7�{�ݘI���D�gٟP���)�0e�X��$Qz��3�]EQi�	b3C��a����؈�}�'Y�J�қl\ʨz[������&1˵w2xK�y9-rܵ_tj��IPxpp����$��s��y���:�ե��{��ɵ��fu�C�Kgc�,�27����P���	���8sF����89K�_�f?ko�1���g3��M�����iS�m�6m�7�&�T��To����v;O��^4j� |���l�X��-JL7-5��&�o�g�g+��-�� l6��6�HQ*e�E��Z�7�?o�xض�#��455�u���psj
�?�����nf��@ͷ������_��qk���8��$���.MO�b�9�gf��h��R�bV���ld�Nj�����S�?�@��B��ۗ����l�9�_�a�}��4?d��8�'!�֨�t�P��Êَ:Ӂa��s�#���Г�^:iz!�%q:�3�w�@Y�ηނ��o�p�x�|�_��Teʾ8H�ի�@�p]Tƥ�9S���@.�91:��c�Od��T��dR}��;vl0�wc~¦��?�j-M2/KPy��r���
�[Ye=�~�����iܣ�U� t~M��^�6|k��O�p��jG`kH�ɚ�P��F�L���k^��ڰ�����yٙ�__Y)��)lрC�9RH�r:Ȉ�f��j}�Ԙ�G@���*s����PD�iʁb^�ǖt'	�)��l$;���T)E�
�j�W�+�P�8���	��I�2���S:g=�
Q���5��_:s�{w�x/�f��_�i�O��������NU`��S�ʹ�K$T|�O��޾ʌ&
7-��۶�0?�]d����(��nƻDZ�bZx�5��;O�i�l�#�	7d&i���A��—�1Y�p��V�
l�4O�.6�`�6mP�].��"�
���GT�n�G�B}�M*%����{��]��N�f�gmarǥ��_2S�� ��>!S���5�h����U��=����po����V��]������bC��xnϞ�9��s�E
��ں��QG�緣Zb��d�4�3�Y.<�z�Cp�J�0����>�1�	2y���KШ}�٥R�Yڝ��
㹓��R{Ϟ�%�2�9��K�
h���[�z��2�|�1��8^�A��$��������bw�y��0i�3Ϝ>����`f�
�qé��[�x�����rA�Y����Q�@����ܚ���(�
t<`�@�i���XJ�@	M�QHb��Ph�PҦ�Z�Xl��≪�P��Z��\0��;0ʋ�����+u�����Aqt��?��m��zֳ��}jH��1"��{��C��4c�W��Ũ8��a��9EM�w(�nGcY���
��p�&�5�+S9�޳���>FmV��&k.�2c��������.'�v^�(8�ͮ�7i��)��Pp
�鏷�4��d|��q���:���q��bWP���e
�&�Y�>c���Ą}��ɉ�\�	I��:�%�/Wry�
a:�mu/��)���NI7vM#=�p��O}���1
���p����Nm������r�d֑�=�
ǟն2�9�}���Ӯ��������$�u��[x
��b��z��5��_�+��;>!�L{�h%���F<D�w������
�*����8K#��I4��9���SсXTMNGC��F��l��j�@��l������	={N��=�T�0������ͯȥ`\�/�x-�|ugj�ƍ�; �rI=�XK��0�.�ɺ�)V`�"4��~g��b���Ϳvm�%x[�	�����r�睳���~�ҙ�&��o�f�Tʬ�(A�W�#��1p�}}�.2�pU�Rjj�h�5#Wm*j�ˁ(�>1u�x�H�J󥥍���UΘ�t�pNTtY��9)�$�ҕY�I�ؽ��j�X��(��n�Pp��p%���r��X���VȄ�Z�3W2NL:K�;V�f
��*���jP[|5��&��A���D����v6����ʡ* �p
S#DA��&� z9z�k#������{����nަ�!ߌ%��V�����X1� Q�NH���*�tzbu2��rGPfH�]�iҟ�pW������@�0����W�
?���[��3��4���X�%�
���0
��Z�f�O�����D>L3<mu��r�/�:��c�ɷ����O��I�K��<{�*��y���@��u{?�[f=��8jWѸ���?~q�-OM�9�����uv����?�(�>�\G5�FI�����;��5Nk��i30���ὔT�S���VK������K�������HރR�&�����ؚA�:���5�B�Ձ���� v��jaP�7GO6��w��8(�0aZI�4��:w��}���$�,�R���Y����1�<�
�(��Oa=t��l��܈�����{��*l�=
r��1hMe(6�2w�n��\���a91�m�$��
s%�Z�Y�n���)(M̥uM���
8Q�j*޺�)q�6
��hi�t5��bA��a�ʕ��F�����+�.ޝL���K�I����hy�Qx��Z.�W*��fgg����{rov~v��_f����r�2Lu�)֫9��|�|k$�=
��M�:�I�)���0c	oGBP��9$aE��hU����6�PtE-j5�Z�G��֚�U�u�����Y�b}�����|�#&�R�)U�Vf5�I�;K	��J3)�OI�6�
m&u&��YMQ�/���b�0L�b§�Mh�W��L�A���������1���62/�
�'�̴�I����dx"K���e�-I
�'f��m�9��ZQ�@f��13�p��^��ӝ���.LO�&@k�p�ȫ���n�T�_����b��f\8�(Ix��g*��FM�����	��#�t�����~�g@؜���D�xr
���U��L@�@�ރ�r4|/W0_�Ȟ�&�����vQK���������5Гٳ�!N3�;:J
��"Qc�0�ڥu�5�Ç��)�Ә�<�����������On�
[��� 3�I1g�+���R�7`%��k��h>׈�ynN�fQ#�qb���Ĭ��X4)�!4��	�:�xf���&�Q'�:�68q'�l���E�S��d1���\
�徥��KO���o&��S�B�j�\�Z}K�x&_-ۥ�j1�h�r)'��8n(����ڔK�
$�*�tici
�Y��w���6ϫ�ٵ��b�o8h�<1���ڬó��\(�o�Q\cWy�9�[Q2��]mY!��b�����5�h�{��6��D��Am�цO�g�?�*�2,Vߦ�zc��
u��(���W�>��{��{�>��a�A���/!�0����q0Ps�0`��^��LJ��F�'
��]�Z���E���&�˝��v�c�o9J���&�`���%��A�S�`ȅp�)�!7؟^E�gs|�o�28&�;���Y�Fƿ��?R@B��O��tj�[[�4��Ⱥ%OJ�7:������f�CJ��Ӻy�d�N�)�O��p�Q%1�W�*�	R�ak�q��Y�8��g�~l:��h^I��P���9n�o��:�U\j*쑀ʀB5��If��3��=|`��**��5f�]?w��ڇh�o���$N�q����BP_t�ٍ݄w���;���.�h33�ӽ�Yd�M��>�Ca���ԣ����>·����2M�1��f�9���ȄnݘZ�j�@Y��y$@�,<h?��_ˢڮ��5�L]��9^)Ѫ�+\�/?O����W5����Nm?�LI��S��iA�z�<]�+,��5y�)	nl7*���~��V����%[�7Fo*�I��hS.;��<�}���>j�8���&?o݊ű��׋�j�
p%��
K�7���`������ID��	d���4;5
E�����8�+>�.�Y�	����s�Gg7�U22���y�}7���0�����Z�����тWz�{4���C%����KDs����L`�#P���M�
&p'�U?I}wƨ� �����>����ȧ������lPM%�A"ɼ%��$�w*5��
% �M��5�d�}k6`��>�:����v:�AM�G�9�Pc�f8���O��z�=}�qƻ_<k~�s�gXr^����pcg�g�ޘ�Ra�~�f�^����^�pg�>`F��G�� ���c*��W
���`��@^T,�4��0������i�.@��?����Դ[\�9���:�Lx��v�x��҇~���5!����>~_^.6N�$(}k�7Pbxaa�6 ���g��-B���|��6���j̹d��g�$��ɲ�D�4@��eyZ}�EYc�+�{�)�p���7�-��U��h캬-Q��a�t��\����*���
�跎�蔧lș|%%��G�����J���m�~АPv�VF�R�zLaO.8�eT%d損�C�V$yh>��]%ĘHzes���Ϸ�-ʦ`�P�M�ZI�+j(�ET��ʇۘ�lS7�NH�z� �/Y��Ȼ�/�2�˥�ь �h�����Wƻ�N�����C�́`@",L����.:|93i!C�3����L+���]�tA�S��Y�V��fZ��}��8D�j�~:�[��>��G8�H<4�'��N��x|)�X ���+�fk���(�>�p3A�Ɨ�8��Ԡ�m�|š�{�c�!Ƥ`jfԜ�!
t�#�@eN�tp�h�/���lӃB����<���P�<n����_�����l|��) 7TSǛ2�7	��=`�q�l�QG���L����
���S�d*(a����SG�!4	��F�A~>2��xo�h�3��9�i�bԛ��n"A��h�������ޮ�/������lm�S=*���B���s��o�$QXm���f^Ta��C�ͨ�F}'�_M���)�䠁O���+H�$d�:7��n�u1h	a�V�a57#�gE��U_���iE��9F\�O.�nؿ�!��U��0�+�Q…��Y�}%5<��&_BF�-
jH��م�T�4�}v%E�-+�t�t���B)�!�0�l�">��R��T��6_?W�ѠZ�ń=)���:�7��<Z�I�Ws�"�����n�&Җ?��,Z'?��A��&$��7�\�1�B	;��W*��¡T>�U���d�PB��v����c���tf�݉�1�]U�� V=9�\�3���s��qd��
�(K�[��;�o������(��&a���o�~G���K�����:r��zW
�'v)�ղ���-Ɋ��gH���2[�����#�4B�V0{�i�*2*��Y=���L]*#���ܠ#��^�|x8�L�؛�o~��p��O6|��.rnt�����6�n0�'>hh8q�'���!���י���%Vs�Ɍ0y�D
����,��#�/�_�<�L�6���Lc*��v5�6�~{V�ӚP8�Ŏ˹W5�
�P9p����7_��vOAL��/�{g�	g�kV8�={jT��_�/Ӎ�����k�!6d�L��p;Gkx9��H95�؋����U�M�%��w|�F�k�p�x�z�2��C;pcY<]Ԣ��i�f��Z���ڠ@��P��r�ꕸ]�9n����`Oך*�*���N񩪡��(5���
7�W�cEE�7Uȇ)�mE�\8�7��Vo<�[�-t��S�B+�I������:�N/�,�<[��N�$u�!Xt�R)'����	�5�KQ�b�rڶ�W��n*����S�`�_��6���
�:
H��n-����`3�m�/y7yPc��&��l_G��*�ݏ��Mp�#AY`�(��{��5��g�n������p6���&�^��K��E��?(���:y��Z?�Ru�i	F
�$Pyhh���d6����0:���C=H����������`���XX��x���zrڐM��$8o`3�e�wvwc���|Uq�ZC��s�[K8'�ӌb@|G�@��M�da��?��o���n��m���G5�0��>>���+��8�E¯��,�j0q����1v�!�m�f�=�v���csh�҄�<M�8�j�:�M>J�����ϯi�%`�9��]��������C�b�8�ޙ�B��<��o�����fP�jA�zm҅�	o8[0�l
�q��@�_o��iu���S]
�(���AE�}Ktd�f�|�؆V3/���#n(��R*a�+��S�b�T�-�J�h
M��^NE�<�A���e���]¹�v���o���R_>B�E�	���\�	��p��p����0]�T�P�T
�H���%�i���r�*�������z�X�8��VRz�c#[�1n�2���m�~��x�	�[~�@M�r�b����|.æ`Zpd� G�_��*�1��pj�2o�Ӭ�w�
W`��I�/{���]{B��i�6��
Zj~K;�o��1��}Z5���H�Q��M�*�@a��	�;����B�VC��[��f�l�Z��;�fBx�}��mp�E��c��>�����A�I?]pm�)P��ic�����Pd�CZ%���S��G;Ok���M�6���ay���s�Q��I��O�(~��2��;v4|0�pcC� �����G�2���'��s�w	�
�1BO��G�	�P�D���!#�Q�ġ���+� T-�S]�[������kx7��8�s>2@0�C�5��l�D��G�I�P��l�����M
�(�9Ҋ���CV�s4��WB�4 �
����1��6g�_^����]�����LhJ�>�aBa���D2��=���gׅy4h��f��ə$z�̰��b�c��&J0c3V�4��АB%W-�r�b�Z�8<���\^�����cW�,�%�[!�_��/���G3N��#��Q�� ��${��t�,XOX��J�:j�"*�Ok����-w��<Z�I��8�m;	=V�
�M�C��U���`�F����g�C�MrC
�ulNR( 0���p-��)YK�	6���'����=c7�e��t8����Yݎ7���e{S�у�n5o.�;I�Հ�hI��Vy�����Z�MJ2~`�c$I\_w_��	)�؄�"⠒y@EF�����O���\�X��IM�>�ʩTK��S�:~q��Զ��}�8b���2� rڰ�v��I��tb��K�
D��2B4@mqM8�gL3�h��0�M��`PCC�gL��B�e��g��6��cC�Q�y��m�
�"�@_#ګ�M��j�ˎ罀4��iR�US�d�k�9�ۀww��H�"k�~����D���xNy:�A�K��9Oܯ��}W�$�@�b7�-�*�v��t��׸N���:�m�Am	�d6b0[w��hr~s~�/ߺf�
+�7{���R�������ʝ;�����������'f#Gk�P�Ł�A�y~�F[
��J�w�W>}A��oC�6L5���tc��B��t�8T�(�
4��g�aCw�)L�i�s�u}��Q'��}s��
�~�/�r�*Nc�Q�X-''ql	���83�pa"V6l�W{�o^���6���<���25Ǻ"!���S�nEW�%���|8àx��dl&���<�|�Q䰷?�^f"
*ȁ����#��@�vvA{��%4���"�-����ݼә�,�@�}%�w�7�1��q�{X�PӰL�	�1�+�Q��b�{~.��b�l�]/	�ͭ$�Gq߲��JE֪GT8B3�W����ꖣ�k�>�X�7V6A1�3xn)���Ba����xR�/���
�.��,����٦:�<�9������	����
e�ώ�H���FZRۑF`���ƩS�4����ߛ#;�DDe����
dH֡�L���.K��H*2S�h�L�A������a���iZ���}ǻN<nih��Dӥ Pn��1
1`8}��)j!i$(�J<�i+)����3�?I�
�
C�爉n�0�_ =�Rǎ��W�ڈz�<�wDz�u��<�>8g�R/�@�����t���?�����擗��_^�\�ܼ;����ɓ{�i[u�MSz��ڽ���d����c3l����b"��=�N��M�s�6k�ϱ���45[-.Us�:���c�vc��ⲭ�vk�C���kO�AnJ���.ZZ���
���������l�jɢ�WbnT���۬���9;��bbxX�����4��1M������8���!�Z}i�g-USQ�8�SCC�rQ�N�`�d΢�Mf����	o��4�PQ�\X~����S�ɾ��0�JܪዎF�ĥ7�||�:S��gJU�8��� ����2��Ë�e�
xaM/E�e�S=�)+E�R�]�,�qư'S;�I�rb"<���ZJ�'c�y��*n{hɠ�1y�:A+C��j���
�t��H!ȍa2�y)s9cY�1dEP(('ˮ݇:q#��n���?[�\�h�<G�\�>�s��4UP�{蛯ɦ�oІ�)��1����J�m����Ҳ�v�y1��#h#�����n�-�
���mp����s�iM��J��8���?� r��fj|�&�c��Ddf��~4�����Htύ���q�ڇL�)t���SSG��k��h,@L�̵Kg����T���'�h��̩��1�qR=MMa�y�x5W�Y�����M=X�|p�N_>�7_,�^��#���J�ra�Cf)��.�{������SG�tS����Q��8S]w�>���҆��j#WX�*����_�tmc�q�.o��KX��@}W��8�mv�P�Y������+�>�)����.������s�ɗ�hGOm*�xK�%�
�aW�tp�Tj��aMh�J'����ɰ��Lh5A~�(��X�r*i3�a�s�By�\�qA����P���x�� s� f���3Q��)�Z���-71�FZ��%|�O��?왚��t�9��}�O6wP^�9�I)o���ڎ�����]�Uq��S���UZ^Xk2���C	���M=ӯۃ�<�1$�m�W�TH&���8���71^����'�#ם q�6cσ�cTL��ua!���Q�N����-'�х�DH �c�1����(������i~�{A�o�k�
�;���8T_DR4rM��y�E���(0r�D��m��g�0#ۍ8�mc9~A��Ԇ@�1����D:��xXC����;��L��FO��|�w�����zz���`H�@RB���,6�t��@N�4��ev�:�Pܠ؊�С>C1�c�Ε�Д:S�,"�2ùqֳs�im�|���˭��o>Y��N�3�X.��է��bY�T���S��k�\�'un�RQ��
���޼���7Iz�u���yH_l��n�	�F�T��hC�y�N7J�?1U�
?_��J
����\_�H�)JT���)�)]d�J�)�PY�]oC�T[�R
��)ѵ�6�]�c�2�h�ƕ>�������bF��NB���[�c�D4����f��!�a$b(�&�N�g���Tq��P�_��`'��Q�(FX���j��K��]%q��NR�i��9'��P��a!�)On�p8���u��S�Q[���^,�vb���`Ќ�f���m��=���7��q�c�Lk��K%��0>�O>_*�?��O �ko�R*"r��1�q7�x+��`D3�V���
q6����������	R<1�!1T��P�&�>���9��U5�޵�y��o��m�R�(4�ڱ�e����R)ʟ�`Z�h'"FCǞo�&�f�۪��!������IM�[�VK46u�lƢAw6ǟ�e���8'� ,�7����@o��pz��<{��D�g��)�1�M'���f��4�)��Ů��w��<�sf���� I�_�b�r�z��Җt�ɅB���H�,2�#��^��v	��-���gN�u�K�
�],��&q<���P^XO���b�Z.��Kk<�g�D�di���;�
�&��Pvq��,?�ݝ�l��g�S�X,<LW��G7��ʮ�UNl��AO!���ف|*�ꦁ"���:�T��q�(,��S��y�Y�X.��)M"q*�g��Uf^�
JC��ً��#��<��Ő�>����D(�x�;�;�
��$"���Jv"J�'����t�/���0s��85e��כl�*�8�=�[?W	��@f�PVze�#"��	���ɸV{�M���fz?��;����I�5�~hͤ���H��hv��M	E�
��䐸M�m͠���w�L��ʗ@߷��X�����ǣ
���EDn���̬���S�`�I�h��A�c���#�O6�X(�P�)�e�-WN�7;,��7�����;h~�v����N�����cB�z�%��|�7_���y�b,��V*�=t��F��@??���K��'G~�a~/�OXKu�֠�趪'y�a��m��p����ݏ�8����{n���q�Z�=g��/���O���9Ѕ5
G�G�pbCA��(����<��zg`�y��G7lAc�P��,�"nlݘ�3E�
XB�?��2��9ȋ׵�U�h���y�y����ݿ$ڢQ3�\�V�K�8;+ͳ\I熫L���_/]�s�L�:d��\��B.*�.-��Յ"������{򇵜��{~����H$����EJ���ÒȪK%�!���
�U'y�mhI�8��c���·��v(�f�K��S�̲݋0,���W,��C9q����/��������K?̡��R*w<������4�•��-^y�	
x��]<��l�)�E-�~Q������$S�ϡ�8�u�ֆ/L":��i��%.� ��1	��2!k��2C��-1�3�����h�\��U�y�w3���?)���i>N�D*�L|

Bu�@�!(qJ3P�V�,�'��v2pS�%I�	bb�q�~z��Af��ZN7uc|˵�N�s����f6�	{�&���hO$J�uJ�e[,�v�M����	�(��v�[�����pr�gw`�a<SSp��_��s*c0���z	J��b#����"8R{x����>�4�����Ǐ�I����oo@�׊-�	���bUV�y���NE�	�Dm8zd��(�&�O�
:1��{���5Xpl|�4��7�^��5���%~:8�$��%�����V���bZ�R�,�37����9sC
�|{S+3J
��6�Ji`5��%�^ɶW��1x��P�ߡ�)K��ʞ/�P�+
At8�B8�\3��e_,Fj��A�6@���j-Q�J��^�L�/[\��ff�$%wiJ�>f��pcc�
j
��,�o��;�YZ����n�b���_雨�rE@jii�R�`�/3!��D174�Kf���I=]@}^�X�����2��8Xe��OJ$�^�C�CzV����5�
�%`���"�|����v
4�@��꩓��+-�%��=��(䈟�-���)u�&�]�5š��^O�1��-Kd�+�"��� y��:y���=Sה�����P-
��1�̃1�7Dl)�/�?t7mq%0U'�R����)���c���R[�r����p��#$�p�?��`(�k0`�΂	-x�
�Q7���G
���1�G���}Xl���_h���`W^u���J���Z�qxZ�P�1�P��5n��c�CU��T�8{a���9Lr���I'u-�}���]xc�0�;�^�On����n8����]?z,���'ן9�ex;�-�׌f7<kB�a͖�<	����9�Ĺ�L(u�i����s
�ʼ��t�p꧁�ŕ��W@�I7�W���qx
���Sr�j���/����MM-����Wr��KybPw�n4�X<S
p��L�n��L���\8��n_$����*��ql+;���d6�z������FN!�)��
�
#�m�T�B�c�:��O)ˮ�����p���©����ߘ�s�bH��W�2���G\.��C�a.�aF�6���V"
�j��eF���t%o��Z�P�\a�Z�dm9��V�:XL� �P���Q���S㒷����V�8��E���J��6��v��V�3u
v���#��*������I�N�Ĭ?� 򿻼��ի�a8u�V^J�����p��˨�O*���?�*�������p��|����oE�f��_m	��,��X�(�V�Q�v�)��ڋD�ˋ	�cǣ_�,��n��>��dt}�ȍ��/�6q7B�O?&.Vl$ů[q�J�����!�p�Ъpq�É�L4��9��q�M�k��+;��%K��Bp.�1(Ÿq4��i<�������_`��t��tlg�uPĐz�#
*���m H������	��3�D��@ $��O�?�x�w�a2-�Em��=Ӏ�1�Q�����s;��xƌi4���<���5*T��0��F~�H$���ly`����"���/�z�ΔFl@��G�}97RQS�y�D&*�f3�;W�75rc���yy�eدp(�"��ơ,Tr��:�r��ӈ�lm�EJq.#���zR��|IB/�y�P��?1<y}K�<x
Q�q�����o�ɔ�\��T&���ފ�b�&ČRx�R��Q-�+9��u�@�*�T<^"kc#u�"��@�`�TK���ۈ,i�c
U�vH�luy��ȢT#"��Y��VKm5��������&�s܈V��08Dp0�(qJ�q���N��ը�ʜ1��x��װ/<�q�!S���''�Ϙ�H��FmA��ZN�����R�!7J���Rz����bE���
����ݼۙ��55;�q-YP�n�'K�M?TS��n&#3�Y�;R�{[��;��

W,7?�A�4w7���"����9�M��:}�vS�!�6�RZn[f�*�HX�3�I��L�����NC�c'�S��(g�q���B<mPDpR�YM��4��ѝ��jh����N
�C�s���;Nҧ�p��s'O6~��3t�=G>�ǽJ����}MMt�w��6�܀E?���_�����?jn��{�Q�޸І��ћZD0}
H���F��\�����Ӏ"��QJ'��3u�;{w�BԳ*��5@Ö�3mQty^_/�r�?��[�5<7f�5��D��
=����#B�T{=���}�%��3�FG��5�Z+:Ar�괶	d���+V�p<�$�7�V�4��\:��O��pڎ*��B"�T�*iR27T���T�F]��ɽ�ߔ�%�[!��oӢ��zs�;�`/Is�
���q}����H@��9�[|}�i��JED���>��)j���B"|���)a��(3��h	$��Ry4޼�B��rȁU]��{�4ғ�4pG�ǵ)/� ��g���o�Ή`�@CRe�� ��b�<��3��2�9L�0G�i�&��+YBR�����N������N�5��~��*�/���t��SNyM��!o/����;.+5͚������QP�se ��-�sa$�{�IT3�1�0f֍B�?C%���{�ntdς�B����	nl���x�^{�M�Z7SA�[�L&��싹���vRfhm��9̸F��H�9
y�� 
q�0 ^�Qną�w�0��RM���q�*����]�\L��A���}[1��@���-�C�߁}�sj=��H��^�	d݀"�5�1��h��]��o�`<�I��!ց~y������W�+�wXi 2��hRPaxA�B�@Hٰ}����(�|��ҕ#}�����x�Jl����v�_�z4�����2��E�
���ƜmrM�@�M�.�ƘO��\,��	�\h�/�S��T<ʥ�m�l�8�8ɈMɴ��g�
�#cv����_�,dr�[fb�o(�
�CB�MQ�]��<��m�6������i�"��TX��2bl����]R��cq�F��f��b`�M"D��ڒ��Y����*�^W�~��b�l
H�rf���f\���Zν�AM�Kfٔ1��<�΋z����`�Nbau�|-y�'�t��땟��X�y1�z�i.�YA��V�l~�_D)���x=���t"�v�q���D�BR��O�9��c{+�\W�O��������Yw�4�!�|��	j�����mpKUE���
��}���=v�1�;[���-�G# ߇K����ovD:��~N����XL?����5=Fnb5����۶�Tcm�8��t����C;F37)�@�q2�@�F:߽�/�Ұ�M����P���4�������TSL�#u�gfe՟0������K¡��Ȝ~��9��ugw�܃��÷�S�y�Z5�>Ap9�~Ӎ:�'q���c
�X8G/�W�GwON����Gw���o�ӘV���	�м�)��M��f�n��MM�ED(���<�Q-	��^����<z��}�͍�������k_�t
�Q.HP)ٗK��@qMd��<�Y^�eW=\Cc+��PIB�ڰ%Y�
*n�KH�+�/��p��'�T��!+��-t�
'O���Յ��%9�k�
�븃��o�L\�@�qȯ����D�(���:W�0#��~(D�5wFky��G����B������"��3\{Ղ�Y���A�\��U�Fܕ�*z��‚e�1`
o51�`�)��mmU%'���~6ӁA�$����a�aN4� =�I�R�����N�m�I��'�Lb��k�T��,��J���&�]�N����(OǏ�_��h7�k�IM:=�1�I<V�
�2nˀ
!�8|נ(�
�V���Xi�S�R^yG;���p�I�^65p�J<�0�b���VҸk�E�/Wŭ�N�+f� Q��y'�$b��?���V��Ӆ(�*W����/����,F�셱oyf��6��&Pȋ<9S]����~�ۇ� �\��m<�-0��D�2�M0:A��@Dg�~��m��H�?Q	����a!�ُ������n��H����cp�ן{�������F�IshJ�Ɋi3<��t��5P;z�ܐ�	(5j�9�����廋������y_�"rMhSZ����K0�XoH-�C�

��&�/�$GE��nL(���I_y	�0�������m�϶��6oCr:`�UX���)�"ť�쩜�{�"�tm��6+��������k"�P���3�٩��'8O#������̾Y���)��<.��o8���ս?��ϑ��uX�"ż�Y�"0�h�eӶ���("��Ȕ
����F�PZ8D�E]��piQ��W����_1���X���n@���Z�Q.!�o�,��u'�R9u�X���4���['���0i�'�F̢0(8�
d��Mb���;D!{���J�Lpu�w�M�_^e}BP�I`�	����o�L8\��E{���d7�v�P�B�=fa6�;B84~�P����W^�XjOmc
�׏���B s�?��|ǔ��(���YXt@����n�* ��`��.�J�
�������Fc�S���	�M�O�iZ<Gt���D �QR�0jO��?w��@c��6G���l�����S�.�>!y��! �_vg���C���iU�6�l����Ʉ]*��p���f�(�$�h���6=�y��9i���)��U?�>8}��Ou����|���{��J6���Q����O���P��0bO�9{�yv����Xm�ѣ3�/'�o��?�
͙z�W؋�R��?e��`H�B�Y�B4�A����^x%J�`���G��#�H�*�]�Nl�9�g��]…�˂	o�xT�c�l7���J�ބ�
E.�O����ܳx�����I��rŷ�6��|��PTje��Q��:��o-`$ub�4=@��%��n!%8�(S<~��a��O�K9j�A��V�?e��+n�*qRv���t��'�ʮtU]�N^�A�T�pܩ����˜2)�
�
�8
; I�(F�L���s�Q��͘�:�#�Ç昱ʝ� x�P�PI���dMx.Ύ-���Q�~�	Rg*3Sf��*bV7�x�jK��Ò��2^7�(U���Oߍ=�&7�x	4���%��C�C
eC2Ҹ6�Ё�T��6�3�UJWP�T���U+���?����>&'RhCf�l5g��G+����ٮ�Lš2�	C]���Н���C��]�!�#p��(����E1S[S��ɻ�ӹ�m#�Ģ��3��"C�C99׳�י��]�Wf��_�ޓ�;�G�rÞ�����mx��81"���횑�\G�<�,���(,i������t~Լx���;xj?[�X-C.���N�>(z]}�Ӟ8cj�q3�:U��}?�"]�>�
���^��.o&��Օ;�����C#�\��!��N�3,��'�A�=��
8�HzOG��|�\��+�[#%�������n,U,�\��@c+��FSժ��0��6�3��X�H̕�!q�}��O��Pw�P-�v�FI�̂���?��ۯJ�]�tU���D�<Rݸ~��ӿ>_H�����S�2�@�V&��Dq�1o��8�L�-0�
�R0��P_�D8�!1�NW��� n��ɮ��
4I������:d��-�a��m��Z$�Tl~nʚ�\	�	�
�Q��1p����?f1�'��N	�J�l�0SR�0��(�'�](���.�l��i%��t��Cߝ��|�)��qE�~��HJ@�p��M��݄�Q��6�	iU��,с)qd���f�qx�ƵI�5Hn��ڌ��q������l�5��.~�Dt�CK�t�b���
����/W�k�2�+���a7�~����'��T�ָ�iopٍ��Yqf]T�C�q��Ym"%I�ꦡ�_�J�ٔF�v��?��Ó�
�B�F_����w��j��Wb��\4(�%b��Vp~��w|z�̙�� ��~�My��γ�j���ҹ��{?D��&<Ͻ݇��k�b�y(u�|�9����+�,s㐞��������3��_��?u�,��SXxojv�\;s�
��P���k�ѡ��W��K���<r1�M?,S��r�ឹ<r�m�[p�t�K�8�!?��
�8�
!Qv̱%��KbQ?=�ᜓ.�
Sg̓d��No���ÎS�G��%	N������R&�R�����I�"���ѫ.�K~�J�w�7T���~��@�:�!uR���C}k�f�
U������K��`X��؉��bB�D�h���$[�M����N����S���=8��vLSe2
�<o�$t�v5u�2M*�8
�1�y}�A���
�Ԗ���+����bЕ����nJkDJ�Zp�G2����pU{Šo�{���?��O�;�F��27<����վ⠩�4|�[���q��3Z�� �(�x�����p3Hغl�C��D푩�/ 
��	�d�У �U���uN�
�ʷ�ߞ���H[���"Jb��+���J�,��LN�3��\��Vֻ.�
�T
��a�>����+�vDǢ)mh�i�,�\��*���R�m~����B��nn:�x�2Lϥ���?=��Z���_����y�˯_�v�o>�t~��o7LN4~����(�^�bO�r��~����u/c��^�����������9��k�?`ᡆ<�œ|�ߒu��|��=M@q���&���kz��r���w��:�M �q�����7gD��%`��j�;S2�V�JѸ��7斒KTN��_HE��@�i��mqS'A��3������"5���r7�R����j�����T�2.���e����P�^���������H��ט_�-��\�s�Z�2;�TZ������&&�S�bC��k}~�i���U�Y�18	�=jk�[�y����4�#��$�tYX��4
a���V��BN�PBF�arb@px ��p���h��!ω*̔y>�B�T}�~#z�)���n���@�D�z�71|6=ѡQ��7��6B�"ޒ-m��v���y&�v*����g�;�
�;#��ht�q�_A�d�4�Y�)|�zmD����s
'��]?>
�R�89�vty9<'&���2�W-2[ÎC9ޟI�f$�B;��_E
@T
��o�����17U����,1����-%�a;[��x��I�F,4�~}��ഡ��a�ͨ�;�H[�9u��>��_��9�����R^x�����͇��=�緔V�#�,��?���=��O;{��؇R�
h�!��S�Y��@ͷfuq�i��),3���| �����[^���s?���ѥ-l�`ѥ-�HxHć2�@oL%�Q�x��ؕmO��6}}�Kρ���H
x(��P��
�9Cg�b�t��ǟQr��St�J�|	�)(�j��n����1�L0�1�<�^U�sK E"���L

�`"���!�p.�4��δ����⣯u����ョQC��x�ID�Kq�KM5Ĕ�Qے��tі�ڲZ�-e�2���(n�@�q�q��_��ߠ�|�]Ҵ@��{���<Si�0>���7�~��P}���NMN�
a	��~�Zy�ϙ�R�ё�|i���e����j3��^�1��E.-SK��Q�����xȕ�WP�>\�����vǵ��W�:áE�6�n�$�e��T⨦8��"��U��_$n����He�X<���v��b٢���'�3J�խ+=G���������y����z�Tu�4N�)��G���+D%����&��΃�H�jSmǢ�%� (T�dbNƒ�n����$tC70�[�l�`=��4��c��Y�#�iP>f�r�\ڱ�
�9���`��*;=�7d�l���a�tj��a�
yk�����e��V�,N������˷~T+��RL��~rFɒ��5R�*��wju"�s�}
�PT�\	z��C	{�諯�w��ɮ>�z��y�{�?q�{Q�_��'�����Oh���1�5؇��^G���%�;r�`����qQP��Tc}'I�Q_Ρܝ#p�-^돷5��~�L5j/	>&������	�Y�8�����l?[L\}s
_��[L1v���3$��J��T1xPK��2�p�^�������T����>K����b'2+v�|Ci�����
j
JKC���J������"�X�ON�/h�y�!��TΕZ��4�U�=1"ϭ�*z�����FOshڽ�5��~�g�5"�$�����\��Pb���*^�_d�<�6ձu���
��������z��B���Ύw$�'9�K�q���R��;�ND�S)Qu�s�Iw�81�C�c�o��:��=�Q]%)�b6�Ÿ�,*� 4���-���ej�v�*G裣t:m�QD�zR}���m�3;;��_kIb/�v���W
����!gi�x��Ӟ.��ڛП���bՍ�O*W4���B#����E;����J2!H[ų�D�{n�\0��,�oQ�PZm�O�����-�e�Ԯ�r�C̢�,��$��1��l5�V�J�U-�n��W��2ڀo��UPQ[����(S�[V�Y-9�D"��o���kd�̈́�"_X�"�Z�
3�P���(!�ar���G�[4t�Eg_���/����������}��΀5�kY���`D�ع�������z=�'N 	��؜������P L������gn.͞"i��N�(v ,V/~�>�d�5Ogw�h��jZ���GCT�w���?}<�|M����щ)7�N3$6�xҷ?�[w����
 D�S�@d�ơ�L���n����RAOq<5�q�8c2Ʃ�(r�����F�7�-�J9?�U*K�d�Q�Q@�G�C��~�O�ˀ�K�H��z�.7�+C�Fs�[�P8���Y^�isík��.*�9����fHGgk��T��7�gcL&��)��&�	U}R"�d�1���C{�!A땆��Aij��Ԁ�,7nR]�Dm.ߊg�(�H�<
p���6�{���3�E4F��Pap�1
)S�
5�X������-�M@07e��/��;»C(i�2'��	nBvN�x���I���h9rd�!;����q�\��wG�#@�R�/,+7����[��vL�0��`h�Ү�~k�/�o�p����\�0\S��_u�|M��H�"K�^*� ���GR@"$��в@B`��'��fAs���kW���F�=��+���t��,�a~p��~����?x헿���C7���^r�W@ʪ�ǎ�<tA����{���A�9��>w��¾���]��P
�x
$����I��'�ޯe,�;ދ1棟�{����D.�<���+LR�X��?�2�̎����.��KDڰ�t��E!̘Mr׹�:vb�;���S0g�ل]���S_��B7OY�"�a��2ӗJ�~He�"��4�gXTPi���%����y�������_~��=���@�z]�ڔ\w��
L�Jm�&ē���b�7�|2��Ƽ����6l�|M}A�|�H�k�a�7��u8L޸c������p��J���r�p���S��J���U�r��[��J���k:|
�[!��рK�.�ͬ0]@M�@%P��l��q<nm�����iC��3��D6$=t�s��P~388�
���H�ӕ<N}D����>��h�˂߈ʝ
�n������؉�����zC�ő�'c��jUj�p�����n^�p��ԽYڍ����2
:����A/�ژ7
�p��� jÍ~�lw�ei�Lɠ���(����=����>��g@�6�X�;b�[�#���d�Ӱ��W9����5�	�j�p�Z�zu>�LӍ�dǥDi�f��7�8gr$����Kj=�i��,���q	�{�̄Wn!���o��+�b~�����O�1��I�����'�t����>�]�	�;�u��޿ǎ���p1F�0��siḩ�p�h���T�ġދx`��(y.���6�z�Zb��ܜ�
�e��)�Hy�l���K�1�?6�b2���<~���.m%����S�9��>�}����{�\�Z�$��L.�p�&����N�����p��I�7��p�>QD�-Ĥnj�.�;Ё~3�D���Q�#c�g���H&��F�Nr�V]��-R<I�@Q�]Rg�5��u�w Kx��7�=�>Tl�AZ$���Y�DN�Dc�b�Ƌ�j�D���o�M�l��~1A������R����t�}G�
�G�S�c�1�1q_W�5%��3���T�C���OC;
V,MR��M���4���{�eu�_ÅYÄ��҈%����(|~P{iq��E�-�x��D�Dp�t�������OG�Kc��q��,�9&e�t�}]�㲥�`@�䍽���K�c7��Cˈnj�Y��@�
��L���2|Kt;'�qQf�
���>ڂ�)S���R@ٙ��j��ј���psw���ܙL2���~�̧4!�Y9+J̄�P���� �����?}�v��8�K�
R�����E}]Z�Y����&�)��ã�2�����OT��\L��ΌΠ*�槿�J�S1���>�Z���`��5���{��
AlDԦ�J�6�w��r�\N�g�Ě}�
����������@hC'�"w=���s��3�+����:�F�ss#gYk��pn.G&BvnS�v�v��M&��`M����S��Oon?E"�άeG�b.��n/m0a���.�㳻�_�������q_�і�2�6A���=:R��m&)�t�+�˪5�V��Ө%G�;�Z�+j��g�e1G�2�i~8�����V���+8����٫�h�(Ƨ:��= �������:��
TC�wX���Yn�/����EؖL��l���+�ڵ��A�!�7���F]�Ϛ~�4��>��o%��@��z��A�:hI�Йv�C$˖�޳��⯷�6~@���s:i	!�.��<l�BM���r�|Z(6��:eC%MÉ�K�V�"�"�a#��	��M�t���M�$Juj��S�e"��ºpn�^L��y�
i1��&����W!,맶z�� a�,�F�$E�
��V�8h>���F�0�E��X'��9̼��B�A�Z	�QL%Y8E��_яk�et�=bcc!����mXu�;D
C����E��$H����,J��+$�IJ������՞�cCs��n��o?J���b��ٺ�@B�߹����T`q{����#r!�	'L�u�>�o���G`%��S��M�ԕ#�!3�b�pSy(�����Q�����n�NR���c+B�'����wA������ڿw`muvc�`x6�fɣgjmz�X����D�cH��—�gWb���hnu}�q"q���=�lz�;�Da��m�����ӏwO�2I���î���+�jM/��@����X&�Y��`y@}_�V%�.h���Ȅ��:��N4v�����c�����t�kW[y|S�qM-~ޕ;
6�6c^�A�V�jͫZ&U+pΰT,X��� I�y��W��su�ܼ��&ܩV��++C+��p��Y��e����?
��28�s�#}�Vn�+�h�DiNja�Z�Rɬ�S��&��I=!3N�/��x��5H�os����ΐm���������)��	���i��@�n
Nu��`YuԌ	
Uh2�RQ��6��=j��q�!5<ۖ�'��2}]S�p�?�f
v��zׇ���!MsH���V�:����ԄTg��H��%i��T��>pl&� ���m�W���"1�t#�Ng�٨���J�@�Pwɕ38����2��F�B��Φ�h��3���:11�˿j��.�$�T�S�+������V)_J$���:J�;J�8E�\k-oUZ?ZD��X<�@��:�0<�����v��-oE�ه�L_W����t�Pס��P�����.ܾ}��e7��ņ��|����=5�n��ʕ�}_5�̧�(��Ⱦ]�?��3�
G��>�ى7�޼�=[[ߞ�W�6�ǎoD��>��[['�����/\�^�y�����7���I��%p��V�I�����Ս��(<�s�]S��o��̢�-���'�
�;#�#��#}��hl̀7lf*��)��
%qD\�����5	��b�{��0���e,0.�������|Ң���5ˍrY4�RY� ���&'��B���yuy9/�\��2ȳLǪ�<<�����4��Vup�A�y�
�EF����̊8�왃m��zlЄq�ZU<Fr�'�Rv	䒳O�ѨZ%!�{��v�Ȅ���G��g��.���h<0Fݭ��vT�Y�H%5�b5����e၁$�2$�o&OcRH�qA��"�C3�:�tLIF5]$	$q��נ:2�����o~���&Ju����,��E�r�&�u��䤦��l���O�#�m�C�7Iݟ��q7��	K!�A�'�Ƹd��,#�Gjʲ)W��ƈ%��F;'b%r������0�G�Nf�X'OI_�$ʹ�6}�Z
�M��pe�aham��r���c�<�"m0Xy�5��J�u��~pu��bB�\3�}����Zڝ�vM��umھ��\d�6+�i�?��r�ֹ+��7���s��=j����O�<��rW�6�@����i�Ձ���b�=��n~F�['fO�<�FL���jn|}inzc}��������=+�ov��g����x�VyY����ٍ�&W�^�3��c�������9�`����'ZI�[�XqS��;pT�
��MZp�E�g�~�R����&'�5:;���<� iZLc[^��M(��'*�0!�΄�U��gx�X��`�s|Z�Ne��_���
zޜ|f
�Ԉ�6PQ�0˥|y�������p�~����O�GQ��ȾW�1��-�2�L���S���߁�������^!�F�?`�-e��T#
�k9��
�6:�|�lD��DP��`:�	����Fj���A�W�$o�jʢ�D�G2#SI^o�1���{OA���O�I#��(
�'��f%WgA>+�S%�8�,-*	XL�%��I�#Ad�^�4��λy����7&>��V�ݠ	�BI����C�[��N�/�fx������a��D.)�,N��Wcޕ��x$7f�&�1�c��n���
�A�(��8ُveq$���[��,���[t ��<~QL�p�3
�u,�L��&ty��ꂛ��nb0��g�Zsx�Yi@�ǣ��O��H���q�`lP�2�ߠ��?x�'O`��m͒�~��]]��>��C��gx�ϝ�r��-0��}aЏ�?������A���?��{���΁���E�ᑋ�/�p��>���\@:9���J��{Wlwsgcc���՝�����J��\ʱ���-F�um#͉������]4�h��'�d�Ɖ���=�k�=f������ۛcK=��ͥ�۱=!T�Q��x��'�	�݂��P��>�d�.�
s��
��
��7L4�����D���	d�Φ��4�b(������_w]^�0c�R���Z��NM���W�ͪ�f9Q�x��h��x�pco�0-��_-���2T�´��f�L�T��T�RPQ~�C�L����*�cg��̘(c�����CW��"jfV�)�� ¬��~\d" ��7�3A�)��i��+ț��8�\�B��c�7�v�F0Q	��P(�ф�)MB���`��Ǜ���E
�X)J�`�L�&S�6S���f��ݼ,G9�t߅x�D��G��(Q�ASgZ���#�6���є��`cETB��!-��'n�	��ⱷĢ>?�� ���L&�R��8��f�V�S-~t�$�<�B����A�1\�6��
�?!I3���Q%'��`�AH�(����U%ue`��r9��T.Q�C�p"]��*�Kڕt��*�q��W�[ٽt��ܢ��?x�gЄ�~�~��x�Э+�(���m�ݺ}��?��Ϡ<��n��x�ߧU���d�6TL�o�+�:~�ʽ��p���KG7�w����z6�é���KgN�ή�i�cL��;�y�F6��A>�K���.v!���١���*7L1���7=>�<I||��o��?:%��l�N�PPN���-��yLsi�t~�[[�n�Ր��*��u�+az}�f@����R��i����ё=zT�'F=QH rF�D���&E=k�.�O4��|��E�n|�U���c���ː�F�J4���"��v�� &ɠ	�Y��\}`g1Lr�^'�ֳƜb�V&���O0?72����OSm$<2����Ŋ�N#���ҵ�#�wdy$Q=[���� ��QB9�hƒ��u����&�1��q��&�m)�_�Y*ؒYJ���ˆӝ�iىAJ%���M���^�g��M�g�Rҙi�_�M��	��*U��T~Cf�}��At��4`η5���蕬��B�'��u���<B|�mFn�HiW&J�>u���'�Ϛդ���{��q��Aa�X6��L;
�w�'�i)���Q��V
���vv���L=@�gzm<�[D�8��1�g���*0!#Z�Є8%F���&�El'y����� u�f�䕮����P?�=�O�wm6�@����(�'���f7�~�Ġ͑O�*F��۷�]�/u���ς�*@�����ӡ��k����#S���9'1u�,֊��Q
�K<���>A�X���:w�2�X(��[V����rC����#.�f�����.��"����>���e�ajԜ��B��3I{��6�2��|�G-�$���IkI�{�3R�5��'{�b��mT��͌��$�~ױ�o�X�c6��$��⏰%4�����"em�iG�5D�$���|�:�`9���'s�g�5.�7Kex�\s��sWn"�W�j`C�O�{��ɧ�
x$�=�Y֘��'vMA����Hj�ڪ3�m��艂���$��^��p[�	Ϫ��o
_�?��6i�Q
��hR�4�\
#"M��w����AJ0�� nc�<���q��h	�R��=�L�����L2F'n�
ƪR/z��+^	��&>��n}�LA�v7'�ݓ�馏��Vo�ñ8���Q��k8�&J������o��Sk�=?�&���D��ee�
�ŏ9K�'�T�=4��p����Jy���l
_��i�bV�Y�]���ҙ��s�)���E�n��^�;2��M�6ZjR$D=����pߔ�9'�tS4�@O��?`��{��W�<�El������}�6�T�����6W@�۷a,?:^���������h�Hl*�{�n�����.r#�dd �[7�����$�{:�ָ6�-
���-�<�{g&a��5����K��p̋D2�G��k��VV�y�>���˚��Y�9�4��h$��N�$����05?	��F'�0�FW�	ܨ�5�yהU����[ol�3~~��(<T<h�Ӿ�+MM���?��l
���:DE4��\�q�,��@�D��㛶[.Dg��;�`Y�(��Zb�\����Q(����)����Y�;H+n�;Q���V|�߾C����V��d�g��Vx�yT��	��{N�!]W-9��RVŬ@�P�	y����xr�)+�-3o�`�;,�P NWD3Ȫ�(�d�ϚP&/D$�B�"�� 9�"Qt��f��0P⛬j��0���MVF�������)A��MI��w�h[4���F�`�;%B��T~0��m�vS�r��L�?z܅V��+�UY[Z�/�����"��7n�<�!)�Ld)�O�������G,3@�m�����A�7Z�r�0d�N)����z�0:cE�3yv��~���^������r�@�Fbhhh�|F�9+���Lc�ȍo,�x`���xγ�������	ft��3��?���x�?~�9�#�>����0]]���6���TR�Qt�n��C��_�滏@�~-���&�j�1 u�>�-��+���9����q6��©���镥'V��Nicq��@2�3+�c��r	Rf��J[+_�Y�b;CX��Nl�-���m~��駬�	"F�,�^����q�:T==29��2B�1�r;:�"G~���p�R���֩S��D�+�"�6�u���ק�K��^HK8B�@�yq�R~��+%3N>\�d��L�>&�rˍWK�����u��D�"�1�lV&�Ȁ$;����b�8� �_��
��4�l���*�_�/T�k1?��
�w�R�F�abz������b����<��0��D�5�T��C�S�2O$�wp���8�MF����΂�Td��= �肦���;��B�TS�IR��B����灠���nJ`2Q/hg�yWq�i�G�q�$`*� TX�
S�������6���>)�
�S��&O��t�L��߾�
l�I[FK	�ܣ�n팗|�F���&/~|A�Fzjd&�itX��bOr��\��"c=���^}�n�P�]Q�p�l�ڙ��
7J�����z�ȞłІ����8������}!���*9J	'r��z����$�Q�)|��'v�.@��~ؠ�Wnu�/��`�'܀6pj0}(�6��tVB�k@��������1,��)&M��=6�q����8E�Ҵ����&a��M�����;a��3���;����4�8��� �k�:��/]����Z@��@c�1*%���S�
�5��)��l�G��O�^,�
�k�h7(5�[8x�X��u���zJ��Dz��ք=�_ҙP��n�3y��>��m
N�i��%��N0(I5��h�?�#�D����
e�cGQ�Ɇ���r�~�2�R=���0�\ݩ� �t�y��Vr^ba���xC��\�	�+��8f�D���V	�xꌿ��f�a�@�u�i��m��9�J�V$+��)=��'�+�X��A^�H�V� �|Šp�.	f�{E��᪭�Q����潔�bIPs���dc��t�`���Lu�T2�F�kho�VU��RD7�8�|��1�F'�>}�`�҆�.H`��eF��o���?��cP`�Q���*7,�t�������>�0�6L�V����eپ�)��i�K�A...p��8\Q6��| �X&�B��xi|x����	!R��4�7rJ����9J���pF)_#�I7��rt�M��S�n�+�	ξ���
�\�|�J��s�/ܗ� |�gr��������{�����(���ϴ�&8�X�7��+�0)������ĉ��A3�u�3���{
l1Ɋ�
�&*%�����L;��
�hALߥ��؉�޻�B���UU�!�s�#�Ӑ�)�"�#�DCw�S��*<J<nH<y?��t5�qו�qV.n��t��W�pAi��8u�-v�-��hp�>)~E�B��&��e�dTO�)�.�p�-/�bIJ�f�[��%����X����	�/�4M6�
���@8	�+�H�`��)��R�q��CLE�0�ҤA�@�x��;W\���;j��U�ڥC��y���lr��uR���(��(~
�N�`�e� /$��?�Ns}�t�r��6���J�I`�s�5�,���Y�w�ob{���R.-H���sH�.�/���K�c7N
�6s	�Hk�n������AY��(.�l�qK>�<��%	������}�����g-PR��4�pF����CzS<��k����f�ZH�7A���-�F¥^X�G'��F�F�|��u�]�RM��)�Ȫ�9���V6��f��K׻�M{	��-�1��ܱ��S�S�O({>-aW%��/���
��m.@`8BF�I�����q�6��@�TX=C����IL��r��7f�Q���Q�f:L����e=0?%�p1C�67�sz6�.�kE�־0���:m�;��N^f���*+�j�Y�����`s2/A`�3[z=3	��03�cgT
qRm�\2E�!�j�5t�
BR��3gkE�x�{�ǛTL�֌;~�R��Hg�yMR:�����O��S�3�Q7X�ts%�
���q���M��𩺗��@*2&��a~�X�X��i@n��5\�0�[k\��b��N��1v�qHfc���6e���W�\9�i�
}�<|�q
[����E�r���X��A�x��&zJ}q����-R�-�3�<�M�%�����j�6�<�S�ڰŷ=m˦���������M����bJW|�Z�,�1��p�f�M1'��9h�2X�+�n�<�ݻQ����P��p���,!�~������`��n$#��������sO��zF�~�D��m��Cs�wNʯ#W77XX�Ì@{�P�`L��|MY��b��r����6��B�1W��+���͵�M�u�h��»��g��ؽ��Э[��<�p���6xӫ
�9u��6�3���mt�|������P��TNF�Q5S�0�����N����iu/�cnD�:98����ۛQ�
�+�.cf�P���i����ώ�j�|P���K�cBxX#�A�9�׿���!��R��K��"�ڂv3�Q�[�k�!�HޡG>�1GSM��p�5�ـ�g�~3�^��_�H_ѹJ�x\�˜��(��$����uu؝0����^��0��,X0#Z0z̵5�8Q���T
_
�-:oO����[\u<�@X�fuaaX4�:���
���RaxgA��F��TgG��0Sw��@O��˜���Ϧ�+$x(���h0�G�jc'�S�@����tS�>���SDp#k��K�eV��I�̤IP _�KRPI�V�=���>Ϡ�Nϵ�n@��/leӿF������sf�yv����陡��PKqڣ���;��w�Y���K�t3p��V����ȯ~}��R�Vm�da��(��f�k7HK�A�?5E2�~|��i��Z�į�)��t鯹��r�J{�Y�v`{m���`Hvb�k���a���وv&sl��ye.xt+z�;C+��Y\l�i�;��:T������}���4�I�9r��=�'�w]9��n�n`-�͟�g�8ON�����m*(���FGp��na:����s�{`͓p��7��<��82Zk[$^�N��뻻�K��O���a/�v�06~p�B��.��Z�{r���]]}�Hl�6bKѷЃ�ѕ��֤��S���*��J\����4�&�1�T�1%N�Uqqec����CV4�	���Z4��D8���=�qku�9�R��A\Q�݈�/;H�iK�k���c��(b�wN�=�ۡ��J��r#���fB��X���7D

)A�5�&(��z�w*��o4�Eb 0u�η�Ɇ�x��bE��G�|i0+�?�PXc7�U�45-R�ƛ9q�9���¯��kA��H�ET~�7\H'��yN�qѢ��ْ*�?��.�O)t��*e"`�qى�k��#=�DSy�s�o�`��h7TF� c,���FOOj�����5��M�ݔh�$!��
(iL�KyX5�ލ��_����s�o'ih:�H�����V%��`(�.:h4d� ��h�O!��ً��5�m��U:n(����1���y��1",3x�s(�`Un�F��c �J��1�&A��.�Z�;�+�.����FӁ���`w�I��Q:d�ٝ��{��ˤKi�u�~m���{�����!�H�����A�.}��ܡ�-)H��	���}�:��ȭ�{߾wspl0�����bst��>vjv.KV1*�ۡ�"�j�2���|�����5�s������a�q8�D6z��@���K7o�9�}�I�g��u�ʉPX��b�F�I���3z[�����)�F 7A�����ͭi�㶤��6U�rf���2B�J�USbE�m���%7d3$K��Wq�*��Feb�DJ�	'LVW���=�|m/0�R�p�����^�`r�-�3�:A���k[t��N���=��\��p�;��EN�k�,��+��,�4�k�j-,aQ��S���=�ڦ�� #7��Cqz���
��14��Kc�^"l$]J��
z�)=�։D�`.J��L�$��m���n��\�:��V/DgR|(3��Q�y?꫓�1!wa�*,@0QB_y�7^xߍ���L�h{�2��"�۽:!P�b,��^��؆N��R�vM±vzN����7�������2�E3�+�Z��1J*����~�E��1����L�,������@�d����#uhn�ĩ͵5&��޾wuuee~~cs����\�s|6.��w��f����W�)��R�|���SͲ��-[h�^��n�@�Ա�:�=���o"��"(��z����ǏW0����9�R��՘pt����?t������+�Fc��n�� 93�7_tusm����n�lΞƑw����1�A����v�$�z��(P�#9֠��g 7�[Y=�����^����0]���:8�WcˉR�F&�63�ʟ���	F����!L82*�f:#�
�^���k�J�Q��3nq�rC�vm��Ri�
��>2�%� �x̍8Xõ,�)�兦k�u1S@��U���V�@�HAG<7'U?��f\�-�lX�ˏ
�a��t�\�2�P�P������LfqEM���"�[��.��6��Ec�т9Nl6A����l_\��R-ONS;�4�E�Q/&\�0��4e#R�B���4\��*'H�����V�:X��h�*i(c{�z4�i�4��cvgr�P�lO�GHN��,���E�3�Y���"�@U�k5C��G���{�fE�J��9
�a8d�9>�Tl�]���w���n��bo�f-ׅ0A[���٨�
��|y�
{Dx·����V�EBcIx����Di���og���o�J����2Y�
+?���P#�-�u5^;�Dɱ�����6�q�����wБ���J�@�M�4IY8�QYP�VO��S|�澓J�;/�!�����_<~�����Z�o�(|���Oq���F}� G���QJE��y���g�U�w�K�!�\:}�蚉���( ״m-���v�(vp��+���F��ؾt����K�G��y	;�M�ET6XU(�)�'�2��I|6 ��^M1%�ƌjJ�I�F�M����
�u�����|�2��K-.�^,�+�J�
$�FT�#�/��@�j�K2T������|5f+-�5)���h���3�\�ʐ�=.Rđ>�1S씣�Q�C���� �\Kp;L��T�xw����yb�K.6@��E�N�0'�H9�ܘ���8���E��A�a¶X��%vI>�R=�
�fp���1��8�K]�Ae	A�ѷ=I�����)��-�� ���E��5�euKn�$ ��u����k#i\�j�$���L=��b�|�m�a�ɴ��L"0�� Q��ϼ��V�ͼ��F�
7F„��A��Q�.����H&��?�֣1>c$�"�C}(�L�}����%���S�R.�h����g�*�fÎ�(�,�fL�A�����9·߸��CC��h�;j�ȡ��R]ͬZ���L$<Q�]���-B����=ՠV����`f�+P3?��4D�O�ʙ��~�'/���62�5���I��'�y�*��l����33Q��ہ[��&hp\�sE��}�ԥ��_`8�]sg����ƽ{7cQ�T����e��S�*Z�Pαx�B�;K�=q�E�'�7��9�>��0�C�;�I�)~*�(���)�?\P;\�G�����9X�QV�8��j*i����,u�ia]��bB�	�T"������$p|��x�.��8��\>����6㻡�	�u^0�fz������E��fd/D7=����(�t������wK>�8пr4���e�W�,򨕷`8[8���<%��`�6p�<b1
Nz��|��>�l�c�O�C+�z<Z3!�:�g!V�s&L��eO��<�+L�������(�O����۰�vx���A|G�C�9[�:�{xC���T�.&;���Hh��L�\�P���y��):��~�|+L5վ�3�	���H{c�b�e����Fĺ��G�F�����
Y�ָ�;@�NC&�f��i��&�1�!
Cc]�[PE~2b�+
�
0M�SXY K}�ͭQP��o��ޓ[+�W�r��un�)NJ��z
��<�F� <;���҈�垘�(y~\�r�|�ݵ���#)�RSrL�e���K}�,m����u���Fr���4�.s3���7О?iE&��ڈ�0n���U��-��$�.���|�c;6���o��	�Fp�:Y��2e��䊫LV����z�6߷��7n�=���ps�z^�ox�����3�m�-|}����4u���
����$�0�	wg�o��AP��j�n�'��h�i��B�2�\��n&�:����Z�Nh���c������aj��¸A5Gi�'�+�U�^�I��p�Sࣶ�*&J�+��sy)���4��Q��0���j��q�,4�%P��H������[��
�r�0ob�i�Z؃3Q�a�6}G��5Q	�$-��qV�@F-��1��p�[�-K�|	��YR	��|b36��(�F`QFjyO7��H���3jNJ�E��=�63r��|��>e
�u���_�~#'0^G��u���i�M$Xo7�>L�aE'fyP��R�~�?��ה�i�{ֵ�>`�GPeEߜ�&d6��JYy{��~����i�,�ܶ=�s�C�]��;-�<�r<l�p���3��Wfh�X8��0*5,����b����Q�$v�0�"��!ީ�`V���q
��Ot�d��|�bjt�{�۫)�ѐ%c<"vs�|�8w��OO��ش���朚��C��q
���?tb�͓l:��߿����c�0�3Zj�3��$��8
��d��Ty�~5R��T�����fY
�p�^LK���/���ٙ=8�sW-Up�Τr�dQ��|��a�����٭�dxOH<G�q�+�&�F]qxNI�`��²��1n9��K��4���0(R�h��c�A%���7�R��8&��/��̖>Ix��K�y"$PK���`KN�f��D"S�;=k)���)�zO��Pz��g$s1�&��;;��m�f�oڭ�C{�1���A�xS`t�*�����F�:"�S�u��AZ:��A��r�#K~�h&Ph�&�,����?ɻQ���i���(/��6�v�&�(w[�/��V�|Gi�Q��-�߶'JI����/fV����P���\
�H�z�y��Gv��m'0�i\�R�!��yS!5�"�GV�w���;w�lO-15� 1��,F�ư[@ :�w[�i<����Z�9X����ڰ]�~�G�hV0�pmG������[6���{����f�}�f�9N񞞡�Z�yiR��٪�CnlʢL*��5�ᯰK8�s��N�����|́e�<)�\~���&(��eꡑ�[�<z��y�er6m8*��[sEd�r�n�!]�o�u���>(]������
'hV�g��+�/���V�C�O�d%��_;=�����s��))�K�6��@6�E]�u`������)�7��k�T?}�K�vV���"<��v��N����@�$���s,�sG�
�Em�V���P�84�M�Ȳ�i�TM�#�c�O���V�9�j��~&�(1�T�m6f��M�N�z�M��!�>�HD�'(&^dF9[ ��;���J�
6:����Ed�U���DxK0g���l���P���)��(��C�l�9O[|�=�N�Z��'�F���,-P!�0�a0��4�^Z�o���rO��tח~���pѠڧ�w]���Zl�&�R(J�O&D"�v>ZAV�$7�#f3������h��j�v	a:�
"�H�B[�{JA�3pG�
EqS	�Oab~�}7�Ít� Э�	d�M��>��U�C𝶐���w�f���=&��|e�9�������Znp���Vz���o0ԝ�<b�@�ڎ'�{);�`�ӎ�-;���)�K�Ec�9�ۤ^��޻��:^J�IW���H����|
3;,v��h�;w�L1�J�2�f��#���< 	{��6V�I�mU�X3Cy��c�n;Zt&qp�T�~��ila�z���蘗m��
G�b萫�RT:o�>T����k���t���`�̂}W�6��C�:h�u���������D�o7G��s�r��έ.a�9��t�	��r�m<u��1j��n�aI�QOz�(�f{����BӶ�0QMe�O�QlB$����r�Z�1`�8i8����w(��`Ϗ~s�7��d�zKI��M��3�dO�4�T�c��h��5f��"�[�CQ�t1]�bөh���>�uex�S�p��3T�<�0v5�jǨ%�1�)�j#h���C%y��cJG0^L{x�p
67�
JJ�"��CS���!���F�͈j,��@�i�qSPgyab�J����:�j��n�xÓh�E�C��
�T�[�Q�L��v�jud�Ye�p L(�rQ:h7�IL�*0�&�3�]�z�Tz��Y�(����?����
0U����B�4�ps4(^Kp�M�;�H8�2��@��#j6ӈ���<��_M0p'x��y�F}�Dv(�Y��I�Y�d�8�G�4iu�AW��M5n�+��ʴ� �g�Q�<�[�'�?x�'~��u�Z����<ͪ��(�<��E�.Y@p.T�H�Y����aO�j3�,��<��2��7���r,��؃1��I=|#��mAL�eγ�WxK$�}���n:��,,����{�Gh���gC2b��w�ܭ��a<]�uH�9w��޾C'Ϝ�y���3gN�V��;q��'n�>�K�J^���(,���c�N��y�$�a��vm�{�ԝsSwzŧ���N�M�+��Ƚ�@�&�B�5�%��
�T2�	ha����(N���u���	����8�:�IR64�M��6eۡ�v���t���s�W����/�l��t�y�s�����������y��X�=�s~���#���%�3��	zL)�Ksf�U���R)��7B�5L&�l��y��ؤ�ak&�4]c<\9%
�0�d�2�=*�Em _(�i\�9�;s����(XT^��y	r|���g�ɔۮ"�a��)��f��,Ӷ
Q�s):��������T��i9�7���Z��j����ݱB*F�|���a?��8P�ofC{�F�[�/Ӏs�����g�]%Z��n���HL�ǚV��t���!��J���JH�2CStY��;����c$�+��-/��|�h��O:]��Z��x�U����L}o��J1j��)��!z�m� �l��h�r$��\�h�/hR����D�q�e;T_m\��:N����k�ء� X�7��F���f����Z�AEE���G��!/e�&&�&8�._>�Wr�˾ҫ�SI�{�Qă�0��+�:����XlЩQ��x4af&������ij��x�����:����H�̞���x;`i�U�d}ip�W��|����p��9��ʂ�(����������5,ǿ�� *��	��ٝ�Ӏ�i��p�V��7q2��Ƴ�xc�}��{�{����y�'_\���A�V���s�ثo�ؾ��ŋ��7��yC�ۏ?�V�W^|�}���蓄6��,	������L�F�99�ڔ`K����6f�A�g4�ʊ����RSbJ��~�U�-Z��	����	F*"���+�������@e� ��)��I�<
8GwH\����e.�oxF�|��d�L
;l���c�'^�̤���.L�^���)ªRh<��0��t���'��(2ͨn�P0[��4˿=��>���Ѹ��g�������q$�{aL�P�����	�O�CgA+?�(
�q�A�IC���o}�,��w�w�c��m��ɩ��8��5����M;�0�����]��k��Z�Z�O�~v=�a	@QI3A7��I��!�]N;/�-Ff�6�p��6�^B`�72Ӌj?l�+
m��KS���B��6Aqq��L7���ǔ.�WN���ʟ���P����~�RR_j$��NY�t�	���Z� .,�=ujj���%�PM�\�ع�SyG�����C^��K����#b��h\|���O��
����9�ѷWV�s4�DrZE,�����H=6H�J}�S�q�sF����Ȑswx�۝�V񗾾v��C�A�پ���{z���Ghȟx�m���_y�;�=�7Q��ҴBwZw�"Col?���ы�]|�
��~ϫ'^=��ů�-�^97v6�E�!��rX�F)wRX�Ѕ�����=�s���K�;5".�(��U!/�&�
O*fʓ�
TT�*��&���.X�nܜ�O�mWe+C�Ơh4�p=E�8�����*��S��@��N�V�!�j�::�遫X�/�A�?/���7�M�N��ɹb��Ŀ.�O5}�z�r�Y�Xm��5\'/ש��e�H�aL�Ѧq<~D�f͟mcp'D��gQ�s�ڢ���: ����,
�_�Er:
ٽv�Q�V��2$�A�;�y�S<
?R��6����t�kgk�b����!Q�E��w�jK��ƄO�HCK@���6Re�d�a��i�'d�t�rPg 7Z����/a��RY�� ����q{;�'�G���1�&�c��B��ce�_����446�*��l06Iv�<�`��3g��B�X�6���MY��
Ii�k�%u���Z���\bb�>�Į��)��)����?���̈́
\u��ž#c�2�r��WYY{�5�E1{�Vm$��1��J*��]�ћ{e7��F�TTQ�?���_t�i�7G��c����}xݓ?�yr{�G��yt�T=r6�rE�y���o<��x��c�\g&���G��S<���G�?�;sjll�O�:�����D@�cv��&T�{��f%�D����Ć�up�h�!�N�LY6������dt��ģ��J{�e���3p[Ӏ?�I!��,<�TK��i9p���{i
*Q��KʶJ�>��U�K)V�
��~�\W�lXNd��.|Z�ΒMW�4��gc]�>�����Z6
;7;�]P\��y,�Z��V�"S��i�Efe�G�
K�yP3ZD��B"34��\}J�o�]”��� T3��4$��q��=|���6�Y�E�fcj%�JLp'd����wV}(�F+��n@��qX�	����w��V��.�>�o�B�0��Ã�L(�a�`"b �-�;	���Z�v�GZ��„,�p��M_�9K���([m|.d�pД�� 7���7p��|��*�Gi6�u��5�����C��!�u�~���Dn��k�oO��J�b��F�"_�M>��8�MMp6��&P��5�1�ƒ��`���n�e�}�A*���/��f*L��j)V�M��
��ܙc��p�7�	fZ
��q�#��7��k7Xq��	nL1`�1H��F�7td���k>d�ޏY������#�>{�ɇw?��qݞ���~
G�#kb�[�[6=�{Gl��w�X��O�6a�l��v�<������vn>zb���&g�̹�������LZ��/ԀB-���h�
齎�i�ŧ���U5��!>�	r*R��Mh��";���wj���i�2��i�^�0Y��RSx,���BJ{	��(/���w�;r��J]nܢ��!]���0�f����E�RY�fh�/c9��>ʶ�Ɠs�J�%"0���J2yt݂���.�W�c��k�
_�:@e��G��������5�l�R뼣����*�4���V*+��#m�/��gif�բI '��Ố�����?iAI0&�ʁ	��C�p��v�)���ehV���-Q�����w�M5��մ�j�8���D@J�][7b��:�HVM������3�����Q�+*��9�z����������k��%˫�L-%(�N��>$]�r�Q�ѳ=�|R"�]�ޮ|�y�r�I�my����4w����>U�<���ޥ|���q
�ݠc�?ɽ]����tl�v(��g�IܫhoI�/3�CB̦��X�Գ�#˛Z��Ƿo��0{pb��6G(���7�}��wN��
�b����R�F(�p��h[7�	6���&�]w�ɇ֭۽c�c�=���Gd�����û�zi�nzz�B��v�7�F�!,�����x��q��8Ş|��2��$O���$2p8LcEZ1#�e�I�bO:F/D��f+�!8A
��9�x��tpȭG�3:U6Q]���`9�D2�!���y�6�
ST�솞V+m��,�6f5����\@��+�P��J�"��<`3t�I�
�1Ԧ;/ ��#�Ɖ�s$Rt���;��N�=i敄L�I�p3�@\���viϷ�7uzm���A�E%5;.W��\�z��;�Jn+ޏm�.f?!�|�Uk�+���%;ڣC���Tq���o
[�њ�����=I��X2�pr�s�7����nVÍ@�F3���T^Ԯ>At3��	F�
���P��&
FCr2]c=y����-m���+�3�[٨P��%�b�F�4c9�K��|F&ql9xz�0�a�:���54�0�}%T��@�>���TW��I�l�����
���M��9�Q���=c
I�S5sӤ2�@�YC�41pt�9����^a=�U��}��wQo�de,wMo���J�̋`�)���_��ǻ�gh�����a�pF7B���˿�1���G��~���=�c��G[���4�<�c�
�5��#���ѳ~��u�='��0�1�ۅ�{����V�_=q��yr�2�p�k
����+�q��SG���.&Ӓ��F�
�H-.Ơ��c��ӋRC*ig��,t
ѕEb�ʪ���չ����J����N-�!|t�L���x�Β�C������!���[?ř8;���U�ԛ��?B�
���B�5��r1F��g�ҩ���ITr�#����F�^e|S������4��r@T�&�2�<�t������y��)9B/:�l���B�}l�풂�%���C�q��Ԙm�9nP��)���M0����-r��'nZ��W�(��P����w�M6�����F�T� Z�.��֭Ol4Q�&�\#�I�hc��#6\�+�J�m3�SGqSK��阸x� :|5�AqW��r���9?�g^;5�t��Bt+���P��.���O��0��+c�"��&v�����Y'=��]R.6���0�"�6S}}�0�_�z�6yejz�:�����z��nr��Z+@�I�bY5m�f�ᛩ���	Z�R�0�
(j�����n�w��_-y�I�J'A
`#��ՀM�7������
[��6lز~�c[�ظ~��kxˆM��Y��ydk�֬ٽn���[���9~�a@E,��@s(�~�������έ�!��
yi��M���A�%�"W&�L���s��r��Lh X����,�2�S�N����S�V�N�b�NJ��N7�Pz�)�*�ܢ4cƖP�p�hL�cp3� �`�tSSS�*��Tݷ�:,(����`�t-d?#���Ο�+L��Yfr�K�L��v����W�cl�)}�c9�n3���yƺe��A�V)�8�ѐ�]���wŤ�/%���x{��9��
:�k�Tc-�aK-�������<� ZF{�̴���QA�h'x�ѿH�Fd�
g(�:�]�&4�t}�.���ި��
�`-
n�i��҂��G�{��]SQp� ��ܝŤ�P��[7n��IxC�҂/H$�l�j�lVȲ@C��#?sΒ��u���Pj{���w�wm��_vG�T�\�2�!�Z�վ�j��	c�r��f���t�f4%K��oTX�P��va�,�F���a�O��}t	��b��y��dHFs����+��r�$lPT;�%_��1�@p�>s|�6�\�K|>:@���r�q3�p��ת�Z�1��1��&c
"8h~��/Ђo|�Ri@�m�
�`�y�l�77n۶퉿~�'6�:�u�c�nڲ
�ٲ�,'�ȦMOQc�{qݓk_ܳv�q�yXkuPp�1�
�q�&#e8����o^|��Y\L������}YH��f�H��m5v��T�%�
5��6�JjV�?���-��9�/hpjqe��|�đV@!�v61���ڥ��*M6s�02�SG�U�&�_�xۯ�ԛ��sч�q8V�$�84���z��MJ(��M>Y�A\���1�^*1&���+���j(tp9i���V����	�B�'<��>㊢q/��2�Z��l�Q� �RP.���AC色)�d��x���I�t(/�8���m�|��E�*:|$ˏF�-�+q�
�ԑ���'a��B|��	��J��1��v�;SA�M/f��	Ѻ#V�>����l�b�GX��zGD�/X��x��0�%zhjP��O7�������m�a���-���×�7�+�*l}>�s��l!g�\��%�
==t�&N�"�͎?�mɥ��B�!�F�Je}�^�Fr�<V�g9]�(��Ts�^?�7A�T��Z�j���Dmq�^�M�;7Uf$��l�A��b�+*�SeEm�Fί7�T��X5��m|����y��x���c�,�����CP�6��l�ct�F���
G�F�	m����޸u�֍�6<�iǖ�-�=���k�lzj�w�~��=O�'zϋO_np$�g�j�7��K�1�Fh��Oc'h�u|Ϻu���9��i���-�5�K�n�(c��?}��n�_��fX�W�)�]�U*E�V��B�K�@��j��M$��~���5,�c��k�8�_��$61����P}�m�4�����&i�.�%�5ѽe݁\�6�j�P��~�'֔oa�K����`�EB�	a8�+�A��sԦn#�h��{1P�m��x$�C�f�B�C�j
/�J�O�������ը���$��h��e�tF^�8͗�M�3k��.��
>�+
�M�_o{�%0#�]}�?�V;*;���>ČdgWd��K�"�.
?��:S����bm�(L�	Y��6ظ+J�Q�%�a����d�'�u�I��b$ ):ZS�jA��k����|���
F�[߽4U���Zo�����-Ŧ��𠇪`�t����g��,d��M#����C�%\���S���W�T���.)0���!(�ZW����8ּ:�Wad/?�]�`�=i�z)��f�Tc�f�Z�)�m
�|�X�;�0s2������n~�ۛ�7";o�~����N6���ݟ���柄4�	Ӓi.�Zs��2
(q�����lݸu#`��'�mزf�c*�C�y�Qx
�e�R/8p`ρ���ΐ�~a
��7F�~���/�v�����9"uޠ[~�Q��m��?:r���XL��aah@F�Ll��3�^����͑Ig6�HǪ�kR#Z#� �V3
�F���?ě��a��r��*�\���)C���+�'�z(�s�Ӽ�p�<��p���D��
�,�4h�q�=�(l:�d}i�%j���B�yrb�+��g�CH�Lc��t��!��;`=�m]M��t��fK8��<�{F�.�-��JK�Q�m�N��i��h�)�8U}���~%�.�#�ߖ�!�uC��o�~�������*աu[����8���&SJ��ݬv9���2��cBt�W(| m�"�J�� �'�)�
���e�*�|�A�����ٽj'Y�^��Sq-C��R`&���P�z��1_�}�i��F���湃��reA���ޤ�hGw�U.P��'f���1sس�s���}խ5��؁8E�*�5zr"_i�{���u�e�z��u�/n�^ٰ�xx@�%%�X�k�N��!`{�J�KU��zJmq"��Cg�z��7O�#X�Ta���&�_�F���k?��iL�$H�ha�a�>^�4n��_������]��/�����E���5=�i�#��yxρ�O�9��Q)�F+�!4z�<��l���{���t?}�W��8�义��g����g��3g��JnA��n����9���7�� s�,^��`|:��kR�zVP/	d$6�rx/ɴ����Gw��>Z������,����@�e�Sv#\�C\���8&�\s�	�7��Y�Imưl�8�Ϧ�`#��7	(�(	ȴ�S��j�e_�#=.�NZ�(p�}{����ӭ�K\��y�P��SUtE�I�P ]כ�9|��8\X�mij�N))�U�_R�.�D����
.5=u���-�-L���
���@nt(HY贤"(c���%ݓk�	Z*1A%�P�G9�3���=�(����f�TH��w�f�4.�F��oW��c���m[5a�ȝ���2���%
���͌>CS
A�7�?1��q��NmLD�	݉J�
d��ۑp/{�1�0��@�؄��Ȇhچr&�,��uzy#��-nN��5T�l��)�f�D�s�;

'	��e��0�1YN<�)����m�\�@J_�䕥,�F���$��IMGLա�#(�S偲L�
&m�)2���`�x���xySX�ºc5��z���iqx@_�)�����1�h@�M��8��"��i�_��~���-���Emz��ꩇ�x��}|q;{��|n?x�y��7_�	l����LưY����_y���#�:��<y�����k�(�[R��S{.�����!�
�����W���l�M !���J�1���Vw���F�RQ�9-?\�P�ʑm����{x� 0���a]�}%������l���"�=�5B�=ʬ�6�lA���)D2j&�v�0|B���% �1"�B����Kn��*��u�ʊ2��㈂�1AA�Uc<��1\�Z�
F;����۠ ���8U!2Y9C��)�p���|�d�G�V6�J2E��3�i���)J���H*��FP�<-�vX�K�1�~hB�������o$9ao�S���RY�����Ԁ��?�VD�Q�#���7�ge��O!�C�4���M���/;た�1k����U"̑ؔ�ZڅuGq��8���S;z){�t��'�3�bGcg�d,�
�yY�}�W 1�>�}�F�8_�,.b
��r}b��u<�?��?OK��53]㴾sV8��k:�<��O5�SS�nT���#���1T����9 �>t��ט�R����1��o�~z����2TF'���U�P��9,��i�A��6�
x��a��S2�<���#�Nl�!(��
��ܛ? 4�-M�?��5���/��{�8q��񯎝x���~��<S�(AFR��^�����G�X�+gV���M
�1��@FgT�B�+q3 �4a���!���Ѣ�)Y��>�K����9{������Tm��	���QV?Ol�E�T�Zx��B�LR6��������cR��%}��l��E��4TA�rs�Rn�˔I��7]�T���D*.�!
E91 �[���!�-�T	��y�eU��5'�}-]'�+�[��)Uw>�~h"���Z�V���"��R}�8�\2
Dd<Q&��%���W#[�+5��Y�y�u��������5.�bc
��[@��hU���u���{�5�05�ɛ�s����D��m��AБJ*9	ɳ���w^Iy���"�[�������S���K}�{?���`��і�������ȣNc��}m���N�DsT0&lj��6�d�}��ŴepT´�N*L4���W��B�\Ћfx*4dٷ9U�u�g4�\�׊W����o������̕���QI��9��ܘpQ��~�V����/�F'N�i�PwPF7-�Q	�;[��	�才�Š�_h�ؚG��z)l��zr���ױYX��"��
BC7�-^�U�ZVƮ�ֱ���.�{e���g�a��Zp��N�<��'.>���5�$��*Z���Kg��uc��ё�B}q��]Q`�*M^�3�RW�=b�C�^�u'���ON���r%�
E4���-M���z����S���u�7*�r�!�\%%˰����"XJZO)��AzH�UC6#��b
�a�FDY�{Zi|c�H�!8�G^�)��q�CW�VXX��>5O����H.��v����QWMlj�p����k'z�v�(�B�a��!a*.J3�y�'Q�7ʥ)v�j�_w��f7w'4@x�Ҭ���oح
���,YY� R"�abQ���B=�F�D1��w$�wX�˒�dI~mmEvZ���̈7~]��#WQe�b6�5˟�oީ�1�d�G���� 񁑴���A�W�61���UJ:j���	d��K���k&,��z^�]�Z@�*�A�t�(\��ζ43�XΕ���3B$˓3�
�/�|¼	i�5X>=�*6����W�.�4����,N�l\��yv���L�gq~f"&~�����'�����l4�0l۶Qw�ڋ�6lp������ȎG��3����O2���R�epB� ��TQ�X�} 3��^��ԧzc��cOxd<���'[q�+g֝{�$;����%�����/^\����pZ����dE�f#�G)�0k�o@T�Q_D�J��@
&�ǵ�ʳ��<q��ۨ7���<�I듊�$٢�(v(N��n��������\�n�G���w��ހ0Ֆf�'�[��Q-�(���e� F���TZ�C�������-Y*V��p�h`�z�t�a-��r�gb����q:zLU���hg&���<g8<U���k���hr�hڂ�Ti���\�?��R�<��+�F�-�h�	(�\=bx�>s�_�M0�[Q�A7�5�	./�A@�4R�k4�t8#Enh6�7ih<έ&��i�A����O\��F|��y���4��p�H5ö1��1��i|�C
���"�(ӹr̥D�X�9\j�4`��TE�(�ct�*>�-�Fg��z]��)J�,v�!N�ߔ�+t@��+
8�b��d������,_�����XG>��+Wp��Y����T�
\l�6�޾=+�m�_}u��҂\���9o�yp�CqX�OL5��{�ZT�uhN�;��LK:�m��W[ZxجY�X���Ȟ�HA��0r�P@��s����]Bt��e|j?��
v@ȍ1�0ӹ�
f:�q�r��r�Y�3�������x��7.��KC65�J��~�0<�BIS��2�)�g$��K���V�*��URU����BZe��0��ʚU�x*%(]*�$�YT箕6aƖ��)`��q�0��A��f�\H�X��̞�;��
���t�3UT�&�%�i�F���l�d�rE�*\��J�߬�ƪjf(Ҏ����w��Ε�E�,|1_�m�6^$_��b�ml��Od�D�4e�f�l�w&O
�7O��U ��r
�w�v%�f\B�eAz$w��_����Tk#���t��t���
@?ouPC��쭣)� ��I]�
�$sS��j��*�rc���sq
�{��{�`G:�+Cq$��q���7�({�]چ.���!�|�A�oBOrD;؏���?��x#(\?F�i�ŷF�xk8��b��'_vԔt�R@m�x�z�k�Y�X�bX�6e9��,v��*�&��"��,��Vfٟ����
�څ�<5_�LW���ڒP�J5Ŷ��h����-�8u�TQ"5w�%��y���W`�g��*�tx�����ݲ�/������1g�c�<��	�C�f��I����
����_{�f�e��C����оCO��1�	g����6��.9�z�3��oNb:A�"�xD,G�o�mē���7FAt!��j�ҤFx��2y�a.X����Z��2>�*Y�5�ǖM@�뻒,"
"%�\��Vȗ�n�
tI6�4E=����(D�o>�$��F�"xJ�dZ�D2=�W��^-��̓��j��?���M֍��)�h�=o�6P�*�+)\8�"��Z� m�S"M�1��UL���L,�t]5Ե��x�lIS11�(zg0�앴Ɠ�Q1���>�F<;ۃ�����O���Qf5�7v��݈v�\��Y(������b5�ܤ鐁�˒�n�Z��8x��eЄM��2X��������&�*\|��8��]�b���ba*�w�%��|m���[
�"�-��#�`/���Qݲ�\P���\O�F�a�*��x��F���L�F��e\&��|mq~�VH���̓����f�f�{����3ׯ�����$վ:Q���l���E��9��jQ�b�.lwzډ���C��0?��6޽�l��0!޺ѭ���s�c��e|��H7�d>ʼ;v�x��T0�ծV���Ԡ��::"6��#B�Ȭ:�~�8�!4:<���j,��v�͑�=r�������ë����Qʵu�(�ʨ���GO�!j��*0��d��0\G��	H����T[�2h�%���n)k�]r���U�E.?�fy�r��.l�(�#y��d�Q���q#�^®|�r���7�\�n��j�	
5�HM+�\n��*�qyt���c~0���ܺ��Uka���$�n�ՀF�����zX`tP
o˘������	�ǭ��ZN�
	�������c�M��B���m�x�8��>�b*�$
"XGg��b+�1Ze�v�.E�W�@L�c*_32�?=hC�-ѩ�K�@�]7�vt��դ�H6���ZHdH;��i%�ËǙg�װ(�k��'A�_���QI���^L1E��.*��^j�5�X8�p2����;dĻ���'+	`y�^�#��6��Z^�|�D,mg����e��ɲ["]�����|�>5w�#�����ox0R�s5w��5�r�,*s�x\�]՜)�b�M����X��ܼ7	���1�R?��f��I痿��/���/��{�����?3+.!��Eo�X�	��yd�S�m�G�`ds�w|��;����G�[ʴ��{_7����r���m�wh��㴰�4���o�����g����o�z⫯���	�" �y�ӂ���J����E%��A&�Z�� �^u瀩��:�ҍ�)�ߥ���zvTk������(I-�o,�k9�N��O�$q��x���D�_��yM�)c�K����'�,�oC�����SQ�r��	pr�7�j�FG��4��1��4K�	k2>ꏬmi�JP��“@&�:�32�T"���U�h�z����x还�K8�_$m�a�X	0'���P ��jy��69r��Dz�ҩ��g���n�4�d#�S��[�BQ~#p�6 wAU,9��0�LpG٪�h6
�T�d�����@��`�4��H���� ����G�ݐ�?ڼ����:7���ǚ��H����]H&ܳ
A��}�e�TN��Qc�����z��X�����	���L���h\�P4��|��B�9�03y�z٭̗b z3�6����o/Rj-N7�܈K�U_�<3S'��4�D��3�7I��8f���KE�Mw7�8_��N6��~���_�R��ѭ��/y��׿�%��K�`;�n�ѓ9fX<�G������DŇ7֮}�ٝ�NS:�)g�i�����	�#�T��/]�r��7�<���R����J�n�w����y$e�`��?�����={����^R�$��~���/`��D&��Er07P���I�8�a>eT
�h�tu$��s�a���=�dh���6>��مZȣ�P
,�ai�4�Ӷ-=r���))O�Ֆ<����ٵ�L�IO�T��,����a�a75 ���w������zW"��C���g�h��W�D`�x���"�M��b��%�_Rr�w�'��`ɴU�(������e�ELʥ��P�J��L�Y�R�8N�.�>">]���!��4���n���9@��b���MPC50�V�%�:VT�����$+\�2�e
r��	�(�U?ﰝJ�4Ɨ���d�2��ޡ3Mp���y��Ho�j�,�9㒨����,Æ
E�q*y_Ꙭ6]dzyQ6�
����b�
�9KX�͎��g��hRhd��څZ�ɾ3�rT��z9�s}��XXo%u+S�nS���d�4J�ݒ9]ip��V���E�Ht����
LMWꗿ2��*,���s�����лH��-QY�Fms�U����C�7�cE�=�2�ҵk���/��w��O`,W��J�^/�����|�ε=�Vp�
��o��C$��gvU��Ms8���Ň��y�r��\6D�75�Y��7�ś�6:�+��HPh�Qb;|�D���	�g6e�>�WM��s��p�M/IiB�����fA_�Ih,w�W��Fˋy�n'$G�c�hR�s�mmĕ�=���I@��1�|=r��b��9
�����D��I^̆�E��dX�C;�M ��]4�Ц�
<��S�q��5.�X���%KP{���1�F���KLea6��ﵫ ��#��s�w
{윢G�.u�_f>Vr���v����O/�ŘP�RfW8-�ƁG�ex
�.!Y�L��A��R)�-�U{'r1F���,\
ٌ	�ȨD^u��b��U)�#�7`�Й���=5��c���Q�&?�&��=�Ɗ�LLཡ��!���:��j�,h�LRF�ը�aor
n�� ɱ.{%g��4e���2�l."��DK�'o^�J��6�͹r���S�)61�L6���k�K3�����F�ht�W�{�Ԝ�6�L��'"��A�zF��
��1�zwޘ�J�ћ@���n�8ʼn���g�>T�ߍ?�P���z��ԅ&|ZK<͟���k��9�,�pX�w��~���ie�3�u4�C�7o>�;���`�j��_�:�c��yr�S}�Xr�#��F<Zu�
)��L�rҕ�e|<��M�|A�	D5��lTE�i�:���v�k3���9�ids�o�Z�њ�j��Ă�	m�.���U��" ����dڕ�p�B�`��u���-�̔�(�%P(M�]AQ)�`�����S����7��S=���	.�i��BY�_x��;���i���ӉC-��@�s�F�ru�A�MH[SaM̨��hK`��Eɀ���~_{�j7�uOo8�&�@!6
�*��'�--���[	3�N�O�6��D�C��(IK;���ߚ����`
#����\��N�?B�;��3Ƅ�Y�����y�W�Z���LPAn&Ο����8�M�*�"��mB�Oø�'�?֦|r��-��!5m4d��O��F�s�R�g�u8��i{*כWo�Vj�ǿΦ���
:��Ifq�9��ϕ�QE����7+K���䕹�b2��I:g���W�2ߡ��� �z���E�hM��܅�s>��p�״�w�g�`�����1E�m���R0��s��/7��l?����y�����u��=�T�$c�
p�!p�o���
�[��USL7�v�>�(���a������*�	XF٭;��FY�m���p!l�$
P��##T�h��h�S�V��Y�־��_�'���.c�k��\�l�Q�2�w0|1�
�y ����+hf&ة�9s�
n1k]B͜"���x�y���7������Q#��M��r}��\�gB;�_օ�v��I�-[]%Y蘬���G�w��^u��2>�S�
[c�_\J�ʓw$�2MO��v*�TIX�N�>T�����f�D+ۑ���ڍ������&H�	���SM��1bqD��s/�I��
��oB��pO�r����L��3�/;&{r��6�m�1�}�mƼ�^r��Smޛ�i3<26A���(
�p>cZ�"��7�d������#u�	Ŧ��N5�]הSn�X[�*"���S�`
�RXB�!�%��|�L��&u���e�4�׊�R*�b�+�TҸݒnm�2��4�ɛ7gff���������#M����l�p����κ�8�v�a#�
��_~���/�e���|}m�>���8v�9Bј�}��lu�I��=�ۧ��w��
8�!`海����wh���ڌj���9�>~��c���ydϓ��:�W��#��p���r�
s����NzX���_Z������g��䦢CX�5����7Z�1�z��KpL�6�F�
7iu�J���D���¼���&!{X���j)FW:�9���G+G�QH��L���/�|�kHxcb�]�Ҿ(j�S0őxm!7.�b��.�k^&�gI�Ƀ���RjsTէ��S��u�����+�HVh�Fj++��(��N#P��#b�*�9b)�W詺0���h�\��
pƴ~�U�]�B����t�&˼Q���E��Γ����0xp�&.3֤�D���Pu��Ê�'5��Pux�hi�����k6���²*g���3(���M|Y�"`A 'g"O��Ȏ�C�1��O�K�	������� �g}�7��כ��!��
�2#G���8q@�r{޷s��Z�I�i\����	�Q)�
�;���	㚻y�NT�ha�[�>�����$C�_38��)�����9�
���V�OyZPC��Q��p�����k7�~v���!��!6N�^�b2�TF)����O��0�!+Stߡ��Au������ѣ$��M��LE��?��~�.�
�H.�BZ���٧�Ɇ}.J��,3bQ�Xaz����H�@�#��^3�x����شuPCa-��ƤTpLW�������}�q�qNj��LA'�U	#2'Xp��494<����a��h�E����[F� �N���6�{=m��y��b��,Lg��O��΅ ��:��s)Bgk͚��l\x<���6�z���~N+�[=yK|=���3�-��/��D�W����p��諽�����^�1��C4NEh�&�@���wt�€�o����`���7m��2���L� �W@�>A��V�
4�K+V�`�õ4�� g1&�.��+]o
$r��c�B,�;���P`�E{@�]liAp�E��Jys}��y��t�ݴ8�v�>��.}r��]����bŅ��|~}a�:0�x��zy%�(�3sW���\e�v%�n��"����8��b@Ej�p��u9���/��7Wl_9M�3\%?���?��(�O��&� �iY�H�1g�;��kzWZ-N��O�	oX0����~����Ǜ�O�n�e4a}6pcX
/:&;��7v�d��������!������񣇌~�8�W�^>%q��ھ��O>�観����]��a�,�ʪPҰ����H���Ȉ�{$�*j|�c1�LD���a�j@��N,$�c
������
�"Px��i��S�pC<����_l�i�t�AsV�֪t/PV
����ŷ��U���"�h���7��x�%� ��	�HA&X�1�N^��h/2`o�}�$��d��\� ���cB�⅚K�Z}��x�!�&�ɢ�"��k�+�s��X�U���D��)>��A����b���2cM~�\z��F��)&�{v�]p�1�f���FMm3->�);��^Hqj���HtH9�[a�&h�.܄c�P{z��CSz�܏Z��,r�1#2����牑jt0
L�z��
�� Ll|!�&��<.��d��u�J�u��L��l��G]�oE�
"9C��6�;ȊYj�&
�EZⴴ�n�\��~������Uw�¥����3j3�\�.�V�tNEƩ�˟�ZI-��x�{~s����f}*V�����3=;�_�[i����������@枠̑)��h�&���i7�{��g����~�|#��y�+p���nL8)�����Z���;w��¾���L8��0G��f^�Wg��e�7Iꯣ�<~r�{ӦG�ʒ���+�6��H�����M
(��L��t? ��^T����v8��ݣԿ��r��B�]��M謹�H�8(5�D;�I�^�j$�LZwӐۇ�jI?��mtu"��Q؝^��LZLZ�*#��l
Q�K�Hdll�V)�f��h�R�Ʀ��#j'�ډ���)3��b�O��	���'�v*F��k1��qK��r��
�q�E��IR<�*	By"("�����am
�b~�fb�>*��a�So�I搔��B���w�n��U�3�n�` ��,��)�J*���mRo���a��䘭��Uڕ��	:]?�d蛈m��&�$����E��B��K(�bc=�I��x��@f�ޱ�AM��]CY�&��|2:>>�����A����W�$���2�>�D1��EiWVd�G%�9빕J���qE�N���J�|���e����3���y��R�&�U3�<L6�&	�%a�H��ZN����O��Q�}��+8���v%���4���p��T#f^�����{pÛU'�u�ZܲO��x˵��<�ps
�A^#�1!��1p~�j���~���xf�۟�\86A
4��:��4��p�>���u4q���<� �M��e4r����,���6z�\�ޖ��a:�8�jj@^�ԸtŌj�X���qJ�'�\_Ijʨ?�
P1��WÜe��D�iZ�ᩒ��]��*s�N�'_�&��,(x.�iw����b�[�+Wf|<��9EmwLdJ�y:��X�h=t�?��D؊o�&�H�A�]�m�|�)���݌Q.i�3[$�M�^4O�	�^�GIO@�0l$�3�X��z�@����ˆ8��O����Y����;�b�9�(c4��C�<��D�HE�|���p�rc0�vl�&�S���Q��~�)�ga<�0���e�IፎXt���f[uȴ≸rmJ��P�����L,�3��xtD��@$	_k�j'�N/܄��~�BBv	�=�e[� �'�Fn݂~���
Oz{-�_�ΐf)�g3�����>�A��pP�qu"���.�L�`gX\��2U��G����)�/��ܑ�1n�R)J�����d�"P2�&+Z�60��S^���m�������E]x+ިS���o�O��O3t�9�o~�	l���5����[��(�<����7~���	�f���I�q�P���PE�F�õ<�v-���_�
0����۷�{�(�p�8k�
����2K��Td6�0R@%�I&G��(�mFC�BX�vᑴ.�h�0�ж�Uj�R�3�Lj�fv1"v#��֐���{贍�U��Iy�ʮ�h
��
Z7��ވ�!�t8�p)��X������b�
1O�e%f9�RcY�#���Z���k�:��T�p"[/b��t%������BWJ���p�bh̞Ξ.F�|`Y������:�@�P|2LB���#w��.�f)I\�4lj�^��؊H�1�DFUd
��v�ar���\G�1������H�}�w�1Q:8M��?P��N�<޲+@-hεƥ]��V��q[�%3�Tg
m���H�
s)�����dmУۡ٧�z�����*$;�j4��JJGA��	�MO�A۪�x������|k�눇.#q�*�'�_ Dw*�U�B�SUa	�b�":�V���^KK�:5y'�8:��;�>��xș��:ǂ��Jmvrm�^˥��K��1Z��P�V��c��A���B.U[^�Ä@"&I�D1�ɑ�����?�8=����7��qL�
�Q[|5�4��F�c�@����?�9�Ys����w
�K���OUQ��	�x����]�d�r��g���Uk����7���g�9��N*)-�S+�eB�7
`V$��·vo�
����½`�"��R
����X!j(Ԫt�W҇�����ʰ�FA.@�l�uCC��,b1��J)�"mA

�K�U�.jW����l�C(2�'B�pL��G�9�b�,�U�Ph6�a5̘`�s��G�"���-�Ĥ���A��J:l��&�Zg����1��Da�L�6��a4N�=,�х�� i�ʯD�э�ȳ����R\��L��[ڨ)�1Oq/*`H0��[����j=[�~!93��Mj:U��z��w�'$�=��.�����H�-]���xG@���#�3��m5�a3��	�덚�??GB������K�{��f����&@Sľ,=TD����O>^z�ZE=����7O-�q8d�aA�������w�}�*��7�UXZ�A'�T�l�/;���^bNWw��5Ar��S�
��7P4"Ћ������@�76��+7	[/iM��<�}+)���奕���q*��#G��fu��sGg�4`�ޞ����[�jn�`��D8�9�~̫n��[~����$�n��{%��?���
���u�zO|�7����,yX�_��뇴�s38�*t�w�'枝�No�Ȧ6�����7���|�9��z��9�W;B�)���L!]��b7�N��s��乒;�9X�:�au�7a���=!�8?���\��i��XR~f (�^\uӄL�g�%�p��y��t�W�ɀ�
r�aY�Z7�Q��$�.�*���j�e|a#��WG�e�|�Q
)d0�}"�IN�*uȗQ��:O�f�9���C��tZ^�$��-��Q �Qd��'8���ј�)⟌�V����У��+[Q�������po/y�<���&�2��h�A��M6,�㼿k?	�����Es̔��S
�]���u��~}�3]�t��1U
.n���dy�g�|��`���
�۶
n3p��7��R{�5�!����kWb�G��a�nV�7Jc4�JJ��E%����TS�UȶGK,�˅[U�i�1sESSWn��&��i�j�03���k5ƿ�f��]�f��=�d[Z.��ɫ3D�h
S?@S�k�s�r��Pł3+Ŕ����y��9
�/��n0�ib�@��/#N-%�UF��F���np��ި��.�Mk�/��:��`opcxM��Z]�������7yi��O_�~��{_ۿw�̃��Ǐs��X��j}̾gb��~yJ�k�0D�qXX�Ӆ�e�-�+�c͞#G���8��=�Nw-5\��tC�?e)pUP��~��P���z;�H+ߎժ4�ą,`�Fٷ�Z����<�BF�t�K��x�S���l�Zu����-@Gnt�P��Cb��nH�wl!� 1�8�
�FTH�G�-��=�Z#�_�e���Dߜ�Z'�jԱ�C��&��)L���U։�`
M41�8������xd��U(�t��LU%��Ӝ�WȄ�RU;��w�O��7)�6��cgOMD��D���8���,��P��&h��6�2qMS��(=���l�Ub�t�R'�"3��V[�}G>K�,�b�}C=�фi8.Bˠ�^�^:n������<��=j�G�w�,���~?�ѝ�Axl����?1SI�D�芻HN��"B�+�Z�x�eN�4�f�a�>)[��Bj�I`C5�=��3�
�jy�fs������r�ߙ�,�2��`!\lRoM�w���R;ok�_�c��׀-��,'�w9��c3�2J���Cϊ�xr��K_��g@l�2�tՇ?e0
m��t�p�#�����|�KzQl�<(�y����}�N�޻����+똜uc:޹�ƦM��'i@͖�&�c�Q'h�ԩ�.��2;��ӯQR�&<��;�a%d,��UA1z*+1��ȵZ+�QY��fgP�<PM��v�!�XW=Q3�x{ҡ���	C9,$T;�`�w`<�\d%���!$N�
u�^Y�М�sN:�TG�5����<A��bq�0��(;׎E��]���f�s�&ݰ
�ߨ�rd*m��_��<��@u�RJaEv��\1Fy�
hq"�%�`�a۵d����YEr����jS���h�9��+�������n~�H@�gvg�c�w �H������j�j��˭L�])-O�u� �j��e����F
��K$�ȡ�G�L�^_.�J'
@q�
���蹂wà�@I@�$@���],Ac;�D����R�+�0�W[�/F�������bv��	�1�e��&���R�5Fs<`�FE�����3ݚ'�b��$���+�3�t��[a�����'��3M�Zsfy��䟯����]�L��85zYsW�W�ř���|���/|�Z�7o)+��ûGs���]%nj����3S����?q��m8@
�Z"
�(@��v����ʌOq7$���Aƥ��v`�;�]��3;u�A0�j<ƧH�x���`>/\{�ݏ�LX�L1ԡI.�����;wf��g���>M��C �Q��|�O�v�,ޟ��|<>"�i3lF��1�v�(G`�E�_�N/`ݝ�Vc�r�J3���iBH�	�׈�kh����GҺG��X>�q����|HR�	���穛�bk�����0��	iK�Neҩ��&θń2��E�F�~U�ǰ��Wa쀒�G�=��2ۈ�]%;���!���v$G�<��a�v�gk��puf�m�X̼��-� �m�u����9��dv��-UBZ�|Yl��M�؍�Q��j�a�W�i�Ӑ�]۴�1CR�O�	�
��W�@+.jJQ�x�7�A�\'�AM��X(EOנe���V�F�ie���%U,�F��ndݮh<b�\�$��
M���l:i��&�ͳ���,&�i����b�TM�dDj\F�ԓ�BIvx�g�߸�h-Z�%���|�m2�pSJM�
�>s�+s�?���*I�����/j~v��|�./�X����������ϡ��V5wS�)v��5�噆�%���̫`�O��cS�팈����	9w�ݳ�g��H�l��a7�CmL	E�P��jZ��M�\��1L������t홝Ͼ�C�?�́g���N(Ρ�Aq��=��iH��C��]K���A.��la$�@x��&6v���W��r�e�KJ_��\<��ıC��f���o�7gJ&�x�������˘�"�
��l!�P+�d���+��+/�S��	lFH��Uw�#��*xIAm
X��u�ܪ�Ε܎��<5���B�LT(�ؿ0�kcB����S���@-!�b1i�p����҄OrA5[�d�!+�$P���R'�W��a@]dx[���]8P��~,��R09&��R2LQ�3Cd�,4�{)�Mu@A�>�,-&�^��$�����n�-(gxB�Bրx��?�K&���Ņ�A�L3D4+�D�5W����|�q<͆vK��h��b9d��Εb��<N�f�eJP��3�)N�Z�U=9~w���Wl��,���zsI2�e�db�ϐ�{P!�8��ϝ�Mn���A|�Sey�9,WZ�-��@�Nm��l|l6Cu�����,�f1�|�����[����4���|CE��M&��>����חS��__��3	�YD�^���)�'�B����e����ih�N��)��w�)� 7���������M�n6f�*�Y]M}�N�+
�l9B��!��kQ��=k
��|�t�י�Uxs��?\�iM�-��'
a��/�U/�r���9��W'����@~UɤL���޼�갂��@p�M��7k�8E��Ixa�zѲ0l��9]+�ո��BQ�s4�\����t4%qB�$c�U,[�B(�|�|��K9�	bcˎ��}�#`S���(!�!:Hꔚȣ�>�$�z5Pz#�s;�&a2�a�a�B/j�G�Yw�]�=}YNz��k����v�fA��P�)��7���GY	MîUN�Eë�4$��Tv$��b�U�{g�w~׍�k����T�Xk�[�S#����E�A��ZD8dS+�17�y+u磏	�c�ՔR��7k����(�H4V^X�y�@P���<����u�U��k��C_��֞���@|a9h.�f! 7���m�冏���R�HaDh�H8�ph��ʻ*6��n:PSsd�V�+u�}�k-��/_�*��ex�֭[ˋ�|�tW�7��/u�Ө�,-N/]J�^�M���a��%�r��C�
�-)���h�g/��N��O>�ٻ�|�uU��y
z
���ܑoZXڬ����	���U�dV�
�w�G?�'�Jꆙ��MN�����xOc�k�����?��5
��y��C��;���٩5����Z��<��n�9��uG�5o�嘽zh�����:y���<ɐ���L�.0���&#�o4����9���,�+Y�0��2Q`O]�*˥��A���*8��N�cr��C�Q4�ㄭ���S2�&E��e���`�|J_��K��%���V/��I�;�qu�e�fXX�A	a��^�e��b�&F�P2](<Z(1S�`B\T eV�hw��&�}�gq�R���fU�Ҭr�ZV}
�sD�������A�XA��ә�o�Ilܰ!*��@4�t�v�TC.e
@��7�Z��Z܀2�9�M1��?~�d�:m��[��Մ�7�ē+�8����.D(���D�'j�������VAj�F�0x3���m\�<^��JcnZ #
z#����R�6� +{6�~M�
�c�#n�{��$,y3�yV�ݾ�ͷ��7I�a'��OR�\���?�,�P"�M�����&��s5����^]D�)O��+s3s�FZ��bʴWH��)��b��;��0坟��ӗRB�[��I�4�[�MlV#ν��n�:G��r�{Td)��N0G�,� Y�V�Ҭ�C@γ;_��Ǟ<S;���쾃��I��_���`v,O3���s���&��Y�uO�ٜh���DXp��o���]�*W˳�����B��RM��9<�� ��4���P߬���(8�5��	�sV���ϡ�M�|`/_嚺[�
�PQux�z����xf�����`�OSi8�����i○m��H�c��
����fHP�
cT��)B���|7��F��9m���1Y�b�լx�`�i�S
*LI�	��>E[D"2��|��@�6�����)"��Q���C������w=�1��!�j(FT'H<��i�������lB�g��w��;u�B�Z����G�3�W�N�h\�NX	��0�,��~,��2��-���}jQ���4!��ti�d3g]V7��}�2�F*����7&����4�w��8��F�8�z�n4Ҋ�|~���Z蒯���l2�]�.^n���������I�!�e�'�,---Cn��0�}�u���9��
�!p�<�0;S�͗dg/��ů޾B�
N�gC����S#]��}�$�gS�ɀ�Y�H2��FG!|���]�&���F�.�Y7��b@Ǽh��N��3� �1},�a�w��;���*i��p��	�9�W����?��u�z�1E�Mh�ףg�2�3���=G.^lM�6ʰPp�	'���WP�"�̂$�&�l2A�$T$D����Bjvz�]X`ֵ�*�"��`ؙ-��)
9�C�)�ID>�ZM��]�BT��yƜt$]r��}E��33_��By��9����bJ��
�
$����ц���+w/�&Ѿ�h4��旪��}�b����9�{i�c<�i�xR�{&:ƫ�!�ڂ���i��v)/pcfy4�I��.�1�CoVR%xg�Hœ�>�L}G���Px0��7��(B�F��C������-��$W�x����
X$�(�Dj�n�����Ĉy��]Lo<]kD�i5L��Q�fix�)f2!R-
�Q��q��(Pϓ���pq<$�����R�$�s�08E�p���q�b����S�cg9�g|�S�J9��b}�y��9r�?��oo��v�a&�����,W�e�����IǙ�7������^�Z���V5��J/
�m2��
LZ	9��]�����+_/e���Ѽ�F���w@)8�����R�%�oV͝7i7��^�{@�ֹ���f�T%j፦:I$ݹ�&��w�}a�{׶�Ր����<���=�c��}����Ff�16��9����W��u���އ�qz�f�WjK�R`��h��L~�Z�qH�Ȃ<������ @|jU�f�H91���s=n"G�S`c��OR��0+���.!m;��K�bs9�j����E�jP�94/������QbhΥC��8��@f<�%�	Y?���+�`+��P\d�
�,Ul��%�~,�Ú|@>p�L��)�fi��L��E���Lc���}Y��;��4Uq��`Z�R���C�{���:S��v{���pe1��;�Fل�C�ڵq�Vm�B-'��QQyX!�A@��4Ֆ����>���Z����ɫ��@m>B��
k7U�Nϥ'`�S7!(���G��B��0&�\�����ԥR$4��怄N����MS�8sd�8�ְԿ������&�ā���!�Օ��jN�i
8��������Tev,}�������2���7JE�]>c��"WP�G����8WjM���h��;�V̓@�htw�
M�s��bz]Go�7@M�6
�d�Nq�ܡ6�x5�Y
:px���
�p&�ZX��iM7�G���7�P_}� ���<�u�Fk�^ع�}T�����S��i)����$��~��u�q��^�
�
��K�a��W,˛b��Ř�?�s��8�~�Vx\VI.]��"��u��^Qh��^�J_`໚��#�*���N+��d�����'�L��)H1�M��a
vl\�|j����������%��.�T�H���B�NN��0��`�ͽ8Ps}�z{<LR�ɔJC>X��|ww#k�)$Dp�뼕�ґq`�T^&�GF�H��P1
����SI�l� ޲��l@u�ì����L���|�i�ZFZ���m,k�֭[w�#�t*0T�~��%nc�<P���MO,D��A�鋑��@5J�C�@�4:;���\8�s:4��hx
���%�d�/�Jm[`�q�y���L�/2�Ϡ�hn�ҥK�vb]�iBx�4��N
��69>��|��/��baW��W؝��� �-��Ɏ������R���R��gW0ZS�5�~5W��	���%[�7��]�����>�0>]YYY^Y)�KC�
f&���T��X�����o���ɬؽk�A��C~�������7wG�6��n�8�p�[\�T��?�gx�PDx��6���(�^:��3�Zg`�(�/�>p�y:�_!���8`�S��G��W���qs����ۀ6��1��>f?F����q���j��P�r,y�3�r���ai���W��<�etâCNu|x��_�)u��2��
\Ԡy&g���c�e���S�0��Z��g�[0G�5�(�K#F�xk�.�Z?U�Xh�I�]�nȞg��zZ�vv�'a��S,5��.��E�a��XM����Ϭ�lT�|�|%��i�<��n2"UI�z��x��g<-�c No;#��Ð��~�����r(]f�~#�j�R-�fd����[7n�ڨ1��3đ�o�(bқ��g��
�r{C�p+��Fw#]���%b��e��JF�g��B\˞����#��x<���K�_�A�EC�6�u�!�*�6���}�#x-.�K�2�ҭ�Ks�
�f�~�AK
���|4\�!��0�J�A⦙��.���W��nr�>ES��@$��I]�$���u��l�T�ꓕ_}��
�sf�L6T�y��/�*�D&ۛ��䰻��?/�"�Xoh�y�j����&��h&��阩�%�;���p#���1����S}+�ǟ9�҈�z��7�uk���i�?�dաO7EJ��3J�9�x��p�{z����ڱ���<���G1*��u����i�6sN �x8��(�1>��m��5&J$�����թ�uwܯ`���K�q$� ӌpB�Vj�t�@�UQ�xc��p��؄��pR����Pv.�@uj>�-	
����R�YMR�Kz�����Ecsa\��~��	q$=1�R��7x��8ތ�8��M
y8�������oN{����!R\�(İc
�bP�!���4��i����? Q�*ٔb���"q�I�����w�nȜ��!�nx���4G�"#]1��u�Ol=|�V��2b�T�N��7�gjLJp��x�n�xt��Ȉv�I~��۱Yh��B�Wl�g���!5�5����MV�CO��`�>��ze<��|�X�6s̵��/-�ܺ�	�FCQQ4F1Ǻ�b�еtI�g'7��?/O�l����-/ss�g�u�GV�@�P����/|~�����~u�d��)d��Te�W��fr�9'�fF��6q��W�E��[ߥj���{���\�Vؓ�����)�Z��_Cw�X���0�yw`�i	8����W�M�@��:7�e ����X�G�UK�1��^�:���*�%���z�~hߧ4�ɂ�H���ΪW�xqݺ�w?Ei��ڇ�8~��H��yݼ�n@�~t�A�E����V\/�	
/྆G�,o*�OIr�7�ݯ۔�N:'�V���V�k�P@��r���b˺4�l<O[qӮ����#c\�$SkA�ִ��=&9[rp*���Sq#�„.����pk\�!�G�a܂�SYq�=����i��9�4�Ҝ���%j8�`G��l�+R.E�<_�h����ܧ�ɫhQ?�et�.d�Ajz{�!��Z/��T�z���Ov��3�X�jN.�a��]����չ�ٸKS��m�l��I3�	�m��͑n�i���������"�T�H���-֪�ӳ��׫!��xL!�Y��~u��b�q���V� �h
��
mt������}S(C���++��@�XOo���>�M�i���n-i���@zi��0�d����,~ޜ�,2����W�%��l��u�/\B�ǔ6�L�I�dr��+�p�fsH8d�P~~���Ji���˾d�DP���䇔�ra�"X|�v��viDm��Q�LB:r|Լ��x�󿃌�10�ʬ�#���gBj)~��j��j����"�����4���;��>��ax���}�rX�@���C��?���Ut����՘��>�þ���'/���ʖ�p
_��Lmv���0+���_>%�ƪ�|�1��A -`�$H
nd�Y�>+C1I����Q2i]�U0��,��K�3���V�9\�AV��J��[,�i)#�|����G�c�_�!�]�,�a�k�`�P#Ys��<0�Ρy�㠉��J�M�����h-���1
BWW_���`���p���^�7aB.�\����06��q��� � �k����N#�W;I��z��>��R����6F�YP�m�.�	mZ��P�u~���$wvUj̭U*�b�����hbC���t	�����j��X 21*������.!��k6��_K�4�e�0��o�v�1CQz��]��ʎ���럐�җV���ё�Z�^)�'[X��Qi��P.:��2���
����|�O.7K��}*7��&�Sz�
�h��棹��?I�Y�
�Ҹt�¥%�����O����z_WO��"�����Tbs�S��=،fgu�1����
lZ7�����?�����im��V�"���������75|��F8Y���>�F#U‘c���u\
�v�N�
�}U�!�g�WN�$��TW�&tL&?!�xrv��DuT0`��ی�Z6�a;^m�,�����g���E�_
rRE�[*h��Wk��NS�D�E�Ԏ1Rt�������.�6�I߼��	�.����!E�m��9ؔ�I��W�sY�f�+,�ϐ��jT�v�8nh[t��׉@K:^�%Y-�7���7-��R��@�VO��*�� �#&$�[������L~��5�,T�$~��L��3�����q��qm�70�
�)xζm������n�X��P��>�D�3?�,0A��.,/��|1�x���~�8Y��
���z���
<�*v��$bYa�F6M~����{t�v�הY�8p!ӊ�x�5y}	�VV����gW|r�L�j����&`�?�Zc��>�|:E^�
gf�����J���'"6��
*�ey�W��b~��|s���T*����Y�^��Cecޥ]Z�i�%3�mP�PD�|���9�`�39kxi��y����͟4��R�:�zYu�I;_� �HJn�-��F�-8�՚2Q�J'�R��h1ɧO�p��F#�����_:��S.Az�>n��^~�������ju���W@�3u6ȥ�)����Y��?��X�ȑ���*-�4�,���-�3�TGF`;�������+X\aH���D?����̔��f�㡩rY˕��'�Jk����rE����&n崾ܯL1��|K�6|�R�/����8N�q+9E����Q�dG�P�hY�]�K�(�`��u�ׁy��S �	slfhj�/O)'8~!�I{'�4�4e�F7����!vSc���qL`�w�k7�
R�'��m:p��V�9��
"ζ'@1 �QyTK��M�����
l�Z*S�v&M0?l�:Ҝ�Z@�\�?m��h�r�٘I�^�c�M�j�ڴJ���j��Ț�0���34��'r���[fP��l�CX~4�o�l4&��|z+�@�{�L}�m,K)�fa@����%��"D�y�ū3��?YYYҤ	7��Kˋ�,��:3iF4��›s��p���K���\�H�Tl��KB���D�EǢ�_,�
T�����"��%YK`"dK7Aq`�<8�u,��[z��ޕr�*�X��&�v��.����Z�fU�
�Y�7TR�Ӳ�_L";h�|y��f����i8(c�NBA�^�z@3� v�(1�|�ŋ�#���K.�)�*ER�V�݋r/N�J�+��+n��D�����D�p׌�G!��6�B��z<�"��&i[j�+�K-�Iv���ʩ@%���5	���,��k����d�XS�9��4�0����)<�wmq�ҥ���k���(�
��������Ԓ[�C=�a0���_�}.�5?Fj�҆�Y��j0�{0��IC��#}�$�ާ��o�r�x��6�k8���߁4@
g�#\A޺�'6lضm��rй�n:�m�8n���G�S�������-�y,�jL.��@�ȦI��q������d�
lx����.Gp��w=0ҳ���?;�Ȏ-�K��k��
u����;���ڣg4����˗��N
-��j�H�Lm�bj��:�W���g�_���RWoO;éd�b��=mK���.�J�P�f�&)��b�y��c/��n���H�|������\��^Z�hU����bq_��.���N�\Z�����ژBʄ뭂*~bP�5Y{�^(�#�ћ� 
/�ǀ��:�=�4-�#��K�s�4�N%�/��*��0/������g�=K��t��#�k E�Ge�A��{|L�:h#��7mԚ�¿��0� 
�@�Y�O������fk��T�Rp�~�<��3"r��hX�-�f�״Sʡߤn���p�0�b`����R7��y�
�*�SjF"�dmxh�dwD��`�Z��z%�Q�
r��\��}`.��Ri��R����w2Л6a�Y�6)��'��ˏa�:X$좟�q��sԄB�ɩ��v*
���rI	�P�3yz���
p�ѝ*��`E�?��U{���(�"zB���*j�6��a���B�L1We�ƀ��A�n�g���#��L�'z��S6*�o���[�Nb�,��&95��W�DK\H{�:���ƪ��Ј[��!N�f�؅�?�Ȧ���۩�F��RO6�:��c �,����
1ō��[YF�I��E��l~H�,_Bb�k��z�?���k�K���xj�8<n
��_2f�S��瀜��չ�ɛW�������@Z�%O�,ߩ�X�e,�3Xs�M���1��(ۇ��@tZ�#��1:qk��1�(�O�8|�O`6ެ�q�4���i���<ި�
�)�MK�k�N�6��h�SGc�����6tn?͠�Kk��N�޼���{r���PT�6�	mZ�87�=q��|�"�'��.W��S�C+�a��j�O��<+F?3�Z+��ܴ+�Fg���a��BGS^������b1�������VK���Фͩ����R��18��`��2�rH$>�3�a����9�%;˚���6��KI���"�c�5��u٥\3�W�u�B�Ba!�.�m�y@Ƕ�	�z��&���.Z9���A�V��(�r����<˨�,&'�ޗ�T�M@n�1��4�x5�	c"҆2��.��p�<�����dس��Vt�-D�n���;����Е�%t���M^��������3�4�x��Ѥ{�,6��|O4�
S�q^�҉
�Q��~�#;v�pn��cCű�W�P�#8�B���t2m�#�X�����n��
���E�}����U򹓱
����(v��!/]ZZXp��eu\�|yڀ
zrQ��sSW��ɹ�nz�9��:α��C}�H���_�89_K��j�eB�|J�v�8���pDk��V�)���dm�����/�����`��VcNK�1.��|xg��x5�	b+4<�A��ѹ�)%?��������;��f7�^~.���xl��zc��R<�.��b��ů޿|
y��l5����x||!ea��YÒ�T�;R��Ɂ5�~U�rj.h#g��L�
cS/Ut��:�.��|q��v�…�+��S�6E�ASH�Auv�������v3^��1��=5����W�n��z�О�;�$-"�L�d׉"@�:��0�2߰�A�4I�C���d��Ȅ�1���49F�h&���6������f�X%���p&�~np�
�l�����7��������)�N^D�0
�.���.��ito|b+�����nd@��8I�t�y�(x���d����ʹ�l�I�sX���f_C�BV�����h|6k�%��A�C���sԍ�]/���X�Ҋ_��j��J�z�K��ޱ�c�G�c��x��P�J��>7)7�M����Dt���Y�\��RK�j,�Z^.�|̂��E�RdwW�J�}���3'iy�KRg����ʨ�ZA�P�7�ʾ�@g����ʤo�Z\��93Y��9$Ѽ�Ȼ��pLJ�qK-6X�#�i�S�M���]ʩ�ͪ8~xs�S�
o��Go�pX-��=���k�ܐ��
��ܐ�E|'�ͳ;�}�~ct��
���@qNK1�.ߍ�b��A*��bj���8hZ!��)�*fS�nELgU'g|<Wb��@0��L��+���a��P�4�c`����m�Lrv�V�c�@ͫĝ.�
�M(�g�q����RNrҮL���٨P�7yX����,���y�m�������P�gC-�:�Ċi�����&d{�d�����,UR�t��ud�A�j����m�-V�n��'��Ac���"�c�ĠZxsm�[W���
���B��VB`�O�6���:J�f��U���Rn�|�.pj����H��X��$"P�$~�l)�Occ�r��ă)9�F��t��֎K6V��6��-R*��*��[(_��vɍ��4/����D������t��d7���Cg.�9W���@�s:�2�t�,P��ib�A�^�LM]�ZWm8UY\��8�p�ҁ�S+�/��4��/�u�:�=y�9�\')�ec�]���1c�)�گA�s�{*�R+�r�_�����������$�O5OkJP#X1����?NkUo���V5|�ެ>��լƜU�ƈū؍A���9��$U*�
l7�nTN}��o��&�����k�������p���C�19@����αc�R�p�p.�g]y\��ئ�����8�Sw��G���:�~�P2P��d�c��B��&���@��Z�<�1�&��M�OIn)pŢ,,x��9~j`�<�BD�i\	K^�Y���>��J���Y.�Q2/��C5<;�wPR��I*fE���Q��Ĝ����W�k/�g�d��	�N���`�n��+%H�lc�I���%g����5�:&�4I>K"����Ǝ���m�Sv�]�
h�D��`"���ry�.��t��H�0��F�͆'��$����Fy�`���l~�L�
�s�V{H�|�]g2�y��5���ԝ�w��_�՟<>��4wF��}��l�{[F�5���8ܲ�_�u!�K%�*I���Օ**s�R��췳E
X7m����S�=�����_�u}�P����gm��ia4��~_��}]��I�q�'CA#��d���~������&ڛ�n�'�t�I7J���.�_{���^x�9���)Dsmf��0����b�
f�
:(O���%����V��=�cx�2�Z�[�:�+������R�A�TTL��Un�������Ii,0n�s�BA,�$~�N��jCY�B8�X\��|q���W�6�t�w68+\;Sfj��q�]�Ϥ����;��^��+˹��1ԍ�� FHCa�;Dp>�g��+�xb��u�F�����m�<�>~�i8�e�&�O�	�J�׎I��z�(r|����Wv�V\��P���<>³�j���}��f\TtRb�&)p8̨�̕�>&�W��&���$��j<[�=;��
4����l�4���T�GN&�>@�����)ט?H=G�Sr�hZ�~�e�U$��̶|��f��1��…z�N�YdZ*I_?�*@��`嚓R��=(��xh�R�viH���Q\e�)��8K
�
\%��δsYD<ڒr��K�h�'��˱AF��>[�=�{��ߝ�{u7ZC�Gdϗ�=])�PG�Qas�)8.(n����󕧞��M?G�'.�x�QM��lޅ����qyCid�|�v���fVt|<F�#�^J�Y$lF��@t�����g�&�v��f��_�v��e�g*��L����sg^zT�+SSg�3��H�#�r��C�{����ZD͵�;;���@@\a>���%Y�76���,7<U����7���Zġ������ɼ8;uJ�sv��rr�-Q�g
�蔥(�R�3!'烵
c�p��U�����"ӹw
�����E�cͽ��
\�>���gQ_?�]�{.�ឪ濗7;����C�֘��U�����Y�+ܐ���g\��7�����=t9
*��h(���੃ǎ��4Tݣ����[�nnΕp�;�S��R��Wk(��J)���Gl��eL+�5J���H0U��3[
�����QD���X�8l��][i�'�z��8����Y��<ް��h�2lT��KU��r�$�r4SbT*lf��򢥃'S��Bm��h�xqK��AW+�z!%�&c���~2E�u�����ew�)�#���ۈ�5��ULg�b/��HBYU
���i�>JNZ�ҁ�0
B�������}W��M/�''�����X�����4Ja��S�9������n'eDl��c1�
����=��e5�qe3`���
�V����y�c����%���	���b@Sr���TmC���683�n������X��g�/�{�(�9��,)�|q�T�חyjK���vUp�o8f5V1!�'���333�J�57W����{�|G�e^Y�u�(X�34f^���mz���ۅb��o/#���V��l�P�#`�&������WonuV6�hN����7���Z��=�J0�j���o>4�?�!xhv�F��2_G}�ɜ{�7�{y#���֞=ǐ���5���aT��w>9L,Wu���6˛����;x�Ɨ��P��_=|_t<� w�s~����|�ܹ�b��l����d	N��*�6�+����F
C����G��_5�B�'	�٘�Ƃ��⵭�7�C����vD�)�d1�p�
�b��D�!S�I�	o�}�6� ��.	�%p@gK�б;ɛ�)�\�N�B��
v=�����"�����8-(v]W���&+����TP�u�
���!U�V���9E�nJ-�9�@!dS�.
������3r]���u�(�K��TX����㾟L�؏�+�W0���7��F*�L���ұšn�/����#��u�����`�^6�ʻXƆ�������P�d+�t�Qd�i�-�%���-��Sm\�*��u��a
��w�c1��^T��y��Ϸ/���,T�q��w�c�X�K\���WjF�\_��C�CL���%�@[PHlD���XW�sm���[���m��|����Y�*2���-k�I���h������F�h�X��y}czm��@��9s� ͇��M�9ʟd�b����5������J�_
*v����|����n@����JF�Q���'���Kܬ�F��B�0o��}�!�d6���f`R~��;k��ĉ����ܼ���3��T��h����Z�8[ t2���\��P���8\&�q2�P
ǵ�(�R9�⊎�5\=��$P5���,0�ߧg+Y\��յ@��8�(f��5<�xl�F�1���4���V��rt�[ͺb��e�8Y�ޕ�����!�M�pz�;�:���
�GZ�S���[����R6='������pR>;���h�����P8�b5�0�a|��D�[��>����w��T�_������x4���-�l��j$���aMS�q�n�h�N�����MOi��kW�z��b�wFv��
�㖜��+c���,#ٓ%)���$���Fa-3�	���aZ\w5�����)N
Y8sfb⡽g�O�a�o�ݭ��	�$7�Aᗂ���H���ت̕R����4���&C��4*>�f�*���~cgnk���Vc��fei&�"�U,��j�J�+Lԋ�n��l���.N.[�*U�1��~��N�ͯcK���,y��]�3���X�W��]��c���7�g'l�/j���7B���hJ���7̽�����.��z��g?�j��',����� �
�L�su� <��CH���{aϡC�����2+�T?G�OMD`�,}Qv�熳�����G�d�P&k�>�3q�J$��Eh�T)�7(U0�L������5FM&X�7g�ʇ���R��P���o�����`(��6_�e�A�ڦR�4�a��'�p��C�aƓzK�����]K�l��I �Q���9�3�q	�xF�r�b�7^�R��V4m7s9E��GDL��M/�V�i�;��\�P�0�:�]�.�����ٍ���0�h�8���^U���]ɂS0���F�Šݔ�m�X���b�K�9��~�������H�#�%������BFt�(G�����^��=)���"�6���92��E�h�],.���鹨�u2#ҁ�Y���}9e�N���X�#D+�����}q�4�UmlS�LK�W�vs{+Y��AA�d����ڡ���n�"\��T��zG��7j/�6k��_ݾQr[��@A:�	�9�f��Z]jwY(�:�s�:�a��.U�d����t�y��F*�lv�F�R��F�R�����^�
c��������v��-��ܵ���(��?�̷֧�y?y�
�|�"��
���GgR�h�J��|FW��g�����館m��y�ء={�}��!���ko�ʌ5�:��3Ϝ���
\=4�J�Agk�y�ښ�C
��A#����:N^�"A8hC���0�nj��rI,��午4���U�y6OC�Դ�����+H���~�.
��5!-^�Y�Z5뢍`�X�]��f*^�ūN�f1�Oi����XBn4AT�)�⹜�Y�T�L�Ub
��1� ��&��F����.�K快7��R�{�VJq2��j54f�����'�L()��Н�>�91�q�[u�u��f��f��81N�E��1`��n<Ne��
i���I�Vx���ќ�3H Ӳ����>
a����{{���ے��6q?�N֭���z�R�5��7(ʧU
#�}�|�I����W�_�,�˙TU��];?M<KsQKM�۲��)m5��j��"���:�\9�3��z$\i.�����
���8�7�Bk��|�*�bu�4������!��9L��$�zQ��M��'��#� 4"�����:�}�qv���츠���h�B�ro�NC%��0���ׇ�\���~��
o�����=��'8i�,r���g���g?��g�^��;�\����*x�¿�f�t<������ه)�5��>��|�/-8�GX m1�7��Q�M��h`L�1X�m��(��PRbb�5Z'U�x2�f���3�nFggK%��d^>�n6L�
1U��L�]o/.(P�*d<s�5�8c�M�d�ꐿ��ey��vX�d�a��{D:�qC٪�bRT�`��{VH*0C�T/Fm͡p�L�@&��ˀ<�jE�6���`G^YiW����&S�ŕE.��\��2�蹇�����s���F�B�O��{u7DH�c�����5�m�E�AH�"ĊN��D���/�#Z>KR:��x)L:�p����
M���[sxb�w(����x�
���g�M��΂�
5��\Q-6��J3F�u"�}�鈻��@p�
9k}�t!����\]<7��Ԧ>lx�k_a�0��^\�˭z��*�f'S4h�A�4���zI#���v-������&8�ٜ>3ӊ���5���n�����y�|��J��4�P�0�eez��- ��Yq��>�3���h�胎�N���D�5w��>����]����
W���3;��P� �������0�o.]�t���_��|�����'��:p���}����ϲ"��o�~�=o��c��
Ցc��s��G�q�!��,�c/=���T�a� ;�Oʒ�V�K�V���?�ΞeN�g�vi<�L5��Ґ��{�Ub��d_���n��8,�OTp$\��nh���leO�f�o�̗<��xV(
!��X� ��A���
�C�Y�e!Sm��,?�c�|�
*5ܬ�a�r�g2�a$oOWۭz��l�0��ct����?�aE�=���F��{Ǒ�F��ᖴW�Ð�Q��^�ixP�'�?����1�e8 ��qn����k�����>������˂�X@Ƈ��n4��V5�7��J-}ʌϟ�>ɏ�]	�.���I��mup�<��6�h��:�]��8l0�
�&�6-�E-$�ވs�$;��U�l�����E�r��667փv9��5�M��ܜwxѻ.9��_���ҺWh.��ۭ)I�wE��X�Z�i���lc{�+1�%l�5.oW�#ت�%��_�n*��Q6��I>�Gn�WQ��t]i�-���h�[���+���Ը��F�^��1��-h>�=���.}�س�����N� ���(iSH������v��Ip�9��>|b�P���G�̿�1�ωK]�X�cFU_o�����=��s/=��ޗ�9������A�0��O,��`"�eG���j��/�]P#�7���.�̓&�"N5A�3
�����>�T_H�Q��s���3���\�m���NAѓl��*��]��*��I����Ŧ�ЋX>sb���.'$/G^G�X��'�@=�9���r7��%���
�)�Jr'�KW�$3KΆt3F�8�.�nJK�a
Z����c�ŋ�f��8SuMp2�&�@�p��O|5�9��z����V�2��O'S>�t�FXIܨ�A�w��Q��}���V��}��D�~G�K8	�GH���=�KO�>�nf�E�U�z��������P�<�?*D����]��¦���Pois���M&T���5Gn�˥���k�\�
o*��[���6���x`���אָ^��\�ˉ�j����T{±T��#9c×������� $\����C�CAu)�
V��;�U@�1���1Y�<���,�=�r^$����mL���m�s6��[��+]�ч.���Nq��7K�ߤ�ҔJ�I
�6v��
o�&8�����=�b�YU���6��r�U�f>9�ph��7��ۿ���q��`N�&l����{�_~�
���d�`��7O��o��A�у���s�ҩ���Dj�Z2�4���M105텃4�y�,��M�X^���B2z*�ͅ��C4V�_g�J��D䊯Ap����T^�� �l:F�WjUE��Z*$ܪxh�<��f���W�M ʜ�E��A�p����7!It��`ڵ(]4͒�K2�$�g@�-5����a:���u�L���ˑ9��t}����w�b��Q\,f_9�#��/� ��?�'�^�W{7!�I
!��~�}V��Mhávk�7����l!�?�*G��x �y�'�C�k2��Gŋ��|C��k�67i�ȧz�Gz�)KX�!�)2��`�nj���c`I:2�7�J��i�*�s<e3�T>���(�[v<^2��0�F�Ʉ��W�X���b�޳��6��7/^�c�@��
�c!fe���˅(������1d2p�S&�V��S�������
3pE(�eA1�!]�v�H42�Ɍ��]����f`��t�j=.��i�#ן������+]�ZɵK�����1��������o@�߀3F��1{�ʞ���]��6W]���㍏5:j����1�8�����^"jF@�G4���w��糳���#y����ǟ=��5���o�o�!���aN����k{^��������M���Sl��u���㧎 ��/d�& 7b�iV�>����p��3��R�8p�㣶5db���_^���|��
���D����Z"���"YEt*��N
gbXb���p�1V l�7�`�Uݑ�#̫Ա���J�EB"��;�G������
E�H��<X�:��b�Swa�a��,E��sk3��^-
һ�7.lR
e���>ߴ
p����d<�ĪM�����-�TR���,�Lg�ء�9�������{����b�.1����<���f?�Q
�c��?^��i�U��?q��Hs8䓠�53�[���`_e�xb�� �+�Rz0�0�>e�
,�J��{i2v�J��n�™���,H�ˮ�9&I|�4@Pl��&~��Ja�9.vq&��,3��?�V�}q�rವ����ֲ��;���Ɖ Ų�#�l:�b�^�O</u��RQ�z��t������.Ns�ū��Ӊ��S*�<���W��k;I���)G)CEZ���2i2��h�Q��`��0�5��Uߠ�o��T������8�Mw����{Q�^�1��A\��%��6H�g>��t�6f�}��|_:x�9~�x�Ju�>��o`?A�����;�����{_~�}��G����9���0��F�95��<��L��ɱq��2�F�lo�J��b�!���e_P��!���&���r�R)d*LT�p7~N2��v��W�Z�,Gk�0l�:��	y�-�8Bq���V���:�|�$٫Q�R&�p�)�pi�A8��n����>E�(��ܬ&���L�M��hc�]20��'g#:VZl¥��zBk[	���,2�3�L��}4Aq�P�`[O@��q�o��Da�{�4{Ta����ߪ����nb�ڑ`���՜�»���R�N�1�ؗ~���1�,r�Ⰷi8��7�A�tCӑ=�=�/�#�R�ޑL�'&8��@�V���ꢢ���R(��oZ�LK�s�,�TZ3̢Y���4�FKR�p�~8�)�K�[�Z��Z<���jV��Z��/c��'P�X��K�u�!•Xq�]5D��&TS-�w8����5�n/5�Q��;���#�<n</U.�O�Iʠ�N�@T�mF�-�Ɉ��sgR޸�����N�D� c��τ2�4Tnt�x#
�������nC%�{�O��R�ؑ����j��{ڨ.���Mo���f4x�vSF٧��_��MeF�/�XcqY�n��_F�|��g/I�*�T8��>ΞC{^x�}@�t=L�~
������&0a����|BF[Hm��,߄�3C	A�r0�k�C��e�)ܨfd].@uU��@���BB;<aѩX6�'ݙ���1���{E�,��7^�zYxVF0n��%)aNf��R�:���ymY��@��Y�(s�R�^/���B�T�b(�b��g�<t�}W�4g�^�)�F�H�d_�]�ͪUBE��:c�,�
�;aF�H��v 4f��&9�EE�H[H����K�6�P��������[r����`�8=�U��pd{��I��
f�Z�����XR��n���)���ӊ<���XEK��Wʈ�pf�A$M��nV�8���M�/g�^��k.�Xb"=e�4z
��&6�[*9G6$I�^x=n.n�y��v��5�P>7��#W�n_8�ӋG@�u&4g��
S��mm
�N3�v	�)f�b�g�*S�ȓ��^(�y��1�o�3��y�	�Ҽt+f
��oY���mj%?�Nzq�E�ʛ;h�{��{��.��q��1ƈ��4��w���ӨԈq�˝�����l7*m��(�}�7�q����]��'�u�ݚ��bnX�;���(�7��#�������W�`���dqN�%g��[�h��j�7�?��9��o��_��6�rD�� =��0�ApbY�}�Pp��)��rX��j$e��fX[�P�Ň���g\��r����8��[N^�R��vV�/�,
�06�R���ۗ��q��Ȩ���f������Y��>:��Ӌ�h�r#F����%N&�zq�T?�3Z��4�o�pgQ��8jXJ����F�?�O)�W��v�ɍ���,
$��fA�i2�rayR�V�S�WPIp�U7���nz�/��8���	H?�ά��U����0Z,~�i:�s]H��(�8'��`�7��JERv&r2Ƞ��9�.)
,,H-<u�B{f&��2���QZ���itW� �������o2q��W����ڌ�$�q�y2r�J��S{|u=�;�ઽ�:(t��>]�v��6�n�#�ӟ'��:L���0���~|��D�*���NS�@~J���j�wy䰚L�bK/��3��)��t�a䮀��L*��6rm;X���8��ׯK�C37��̷�z�;w���*�$��]���xo�p���|�t��1

�߁7���'wI�����vov��?���gQe$��1H#��$K��Ojo��6T8�}�u����M��}�!��1�
s05~��+{�H�w��#򥐥�o��_�{f��G�5@l&��J��I��klE�H��$4��,w<��ƕm���X��k*��m���Վp�>P'�<'��(���dg%:$�1j#��c7�6jA%� ����ɏ�{b
	���c2����DO��(�n�$��e)�!0���p�U��	��[��r�6Ŭ�HN����k���
���L���R�ZM��IIp��	J�N��-c#J���r"Sl�F�0�:}NTs��=����{; h��y�����-,��bJOdj4��;�6������}':��O<�	�%*�+2c}y@�Y�؀F��i\����4���G[���Xv��E��/�&o��`T�N���MD)F��Eu�^.�npn��9�<w��\\��H�BF0�ѷ��t�5��)Ņ]I�y�f�V�bA8�@�yԃ>�0�����\�-���ythj�6�Z�!��Bf���3��4%��c�WC�p��o�ӆr���s��b��o�4����뛤��d�l���V��g;3p���U���QH�oMэ����C/u�c�$�F�"}L_�]���o��o��s���j�S4�hm�
��x����F����~��j7pCCE�%xC�c��e��m���o���g�!�F&�����1�7o9y����wN}�k�>�W�r�6RDI��l����=_�G�3:<[%Z
��Ư`t��ѡ�8��u��2Jg�x	�q�w�n�:2D�}X��}/��c.�[a����K|r�Po��+�݁�T�D��&f�q�{y+��	�!��x�գ���H��,2�Ɯ�8億^ź�z�f���-Ђ	��Ol�V
�a�e&YXi��D���h�L�0qPi�^��Fݦ#Gꬺ&/u
��1Yg��Uq�����(q����ﻯ����n~��y��]�<~���W��Ba]-��V�h=����n��.�߯Fj�r�C�ɡ�}����Td0/�f�7�ۃ�聸�Y���\��q�!���̯�Y�#�J�Y��b��<?��W�pn
���R�e�t��~�b��ՠ̺pF�s���/^$����=�Ё���ܮF4� 
��4R�7mj��Q�_�j/LP��>:�d����L}
g�`u��`�����
���ش����W��j�U4M�K�%��6U��9=������\�#�%>tjbn�C�K��I��ι"�J%��|�-F�L�CW��7�W�Z�:g����O��I�ץ�y�AF���l>����~�}�
M���g��ވ��J0�q������б�J���!/���c>���!.��EE}s�W��s�sG�P�)�߳��&u���^�^^��,-Uf��aLD���pe�1�V�d�Pʔ��&0��N��L_��9r�f�J%ј��a����9��,�x.OԀ��������6>Y}�F��N*��Ĕ0	��<?$߰e�� ��4�K�w
6����R�T��J>o�B���:��5�D�D�J(��n����X�(�3��\b��0K8�������2��A�8�#Y$Qa���V�������x��+��F�g��c�kk��(�{�����i1q���=�T�#�X�(�~����k}�i�:��Z�5xrd"�<�ЎpVVR� �
;��f+�09����h�5#��(�)�7ϓ%H�&D|�UU;�:��֪���jd��hJQ�x���(�f�&SpK����u�m���	;t4��_���9��X�B���u��ɥ���Es���Jg�qf��0�1
�R�����+J,y7�;N�<��N(�E6p��9Iu�Y��&7�C:�M����q��뇿
�t��v�p�+��U5��1�~�8r�0����|Q�χܠ����g�9C�ԧ4\K�G��/�����5��W��o��]��Dۘ�w����O�5��ԇ�7��Ξ������O1�z��S�׎>q�T/0����g^z�9�P�������;'��O�m��=
�$Q����;��l&��Y�^&�7;����5�s�^�1�C�G��x�Pǔ5��W��ht�#�V�+C��1.ue��)��"�_�v,L�m��H�M'\Ā�P�ZB�e��4
���Xu
��q��[�(F��v�k�Gَ���5�t`B0�膋-F
Ƶ�a����#�Q���!Jt� !���asǦ���!c����IJ��^��i�رS֏�_���nX�$�ߺ���e<'`�O� �N�f��(v�L�{'a�Ƀ��7bp��8_�#} �dC��>�#��L3��62����6'37Wϸ���*9��дR�B%�˜���Dl��.N���s��H�N��Z�5R+-N��MI�9�2��E����._���8�����X�~Ρ.mO
�a�aoXH��xa�^$�a&�[�%$F~J|j�^ᑓ)0}���y3�/���p��0�hV��
�����&*cY���,؛E��*��1�O���a"����	���xх7�a�k�cå��}�7r���#|�N��ϴ���}����ϨX��S8�Klgi�:@�=��?;.җ?�9�������Ư��R]�Ѫ:�b��>ވ-f9\.�i��*�����c��y�y���W��	R4^�֩S�0GO���x���7��Ӯ>��9��xx�z�Y�E�ZIqI8J�"����8�����@P
��?�`G��Qc2@��{@E���/�
�x.6_�ǨL��L��q��%W�^J�,@p��E�@�)��i�6;�<h%��(D}���>�G�8*h�����Z\y��7��:�
�̳�|~��EWFH��������:�|`{x��K��l�#)#C���ã��}Y�ܛ��4v��Ho�-�����)F�}��\
Gh$l꺦�gA�\	i�{vW��d�@,�=�:�w!rp�Q�5���q>�9��x���
�)�Y���丛\����&�U �[�Fc�����.�/�����x�.1d�\�ɵ����9�y�勅��_ݞ��pc'�;��]B�u������A?�i�|"+�neG>=�:��xsA���A֛��Ŝ�Y�(��*O�Q���2�OQ��+s=�`^]���66u��r�W���ΎK����]b����ٟ����������ٟ��_�
`�{#7����T*%�8�Sň<�<�g���L2?t3��8���`=B���f��Ȉ�D	ht��]e���5:��r����Xò&�S�S�s��E:��=�=@؅�:<pa���ah�~�ԛSZ��>�S����>�y�;��INކ���M�f�*E��5��$co�&�m �sBA3ŀ
��=�:-����қ@K=�8. ��Z�8�l��H	��r���e��!��!h���&ػN��	�
�
�̪3�"�����i�2�y�IJU9��>�*�l�`��B�X�A~9O�@�om��6a/���vS��ybn���f'quT�ZXf�t�=@T�ҚE\��6a�Yu�>������<�"��9�Tۘ�G�I�ѹ��tц�E�	�	�+%�@����R.X����������=q�0;�������'��X���gf�������B��f��`D���U�ɤTÆ����*	�j�s.�\�Hꓱ�Xk�KpAugt�V'�0�r������@�B�L��W���F
�f��i/L���QعJ_���Csߙ.��a��cu�DZ̖o(+#7��l�(�&$�A��Rg��z�Pe��x;���PJ���|����9��J�G]���㠪��1�0��y	[�@'�]>�cxS�|��.�:!��c���Ҙ[�~��B��~��us�.�s��;x��<���us� $�x�Ï<3e4M����ޗ�����7����w�:w����I����p9W�l��o���\�M�\f�l9�0�hg)��"%���$ST:��E?8�8h3���ƍ:Y�\*m4�#O9P�Y̏QԀB�D��0M?ԊjY�4�aTy�\/ ,���m��DS��pð=�m�ml�$�����;�JS�T�ae	oJ.�dI
��u"�
C?M�$�3�c�!���i.���1d�8��D��Y���PWTD����4��#w���������rX{�߁uT/�	���7�Wv�FGp��S�G�y	1��ފ���LT}�:��Gͨ&WVx�Q,�\�ɺ|��
N���0��	y��]�^�W�P�*��'�W#���䬒d�U�8�÷V���W=8��7E�|n��	��[0�@��=��A��5�Z��ؐ�+��K-2[�#�).-NMԧ��/d<X��b�%7���F��e5�-���L��LX$�"2W~tʆ�B"�WW!,�+�����!B`Ձ�˵[L��L�թ��#>i���H�Me��,���~-dIa EH#j�w��X��W�<�o��Mͱ����ɳ�O�iA�U�<]:�,@�W�x^6�Fbq���gw]�aw4&���;x�7ީlz⡗�h.3
1ƇO8��}�%ڪ}��N���w�>8��+�*�3$�EZY�����R�Jv�	�2�C|��|
��S�0)U�$�
��|
�M�G{E5K�C}��\��}��� �J�Q�Œ�
��E�B�������,�$��(�2sJ�-r�b�Sm̵X �1���E�lʮ�ʓ%�x���g�Jao�$N2Iğ]Ax�dR�������aut �����_h�퉩����v����(��$�8$��S%%4���ߪ����;�bO(������b�1��~��8��R*D�T_0M�����/���99&$��2H6��F�T,��ss���ة���d'����v,���`�e��:���|g�tU�oh5�m-�U�p�o�]c]�`1cP�9��0��sr�؂5��_��5o�^mP�ˊW���:�(�`
:?�^e��>A}S�(���J�"
�_>%�XEH�J�N6�.D��B=f��
r�uR�1�� $d
J�RN��4�4�L���V�xa70V�5w��%�p�h�
��X�=p8���K��j���N�_������o��O���%}|�Cudo�7�=���9�2nTa���g�Y����cͥ��a�7�SO�V�AJ|��co���C�#������C{X�c|��)��_Y;ͧg�aD�byo?%�89��۷���\�W����
��{{ま����*j�A�����$��/�����ޓ�	�ɤbv�D^�B{�,)��Kad��۪��a60�>�Sd����'�+���+:����E/�'�K�DB3#Hޙ�f#�C���8.�Ƥ)��a��Ltږ�g�p��q�s�\&G?u�\�bPN�ʜq`�y!��q�����n;u�,�b�BB�~�6]H�����w�8���N,eN	��e�O���U<bazřl3��q&V�2ώ5J�������藶*`q�P��h;�k���ԣ%c�Ƹϝ��ep�SC+���F��r�Fu{sØKxFs�1�F^�ד��h��􈷱,�JF��4=�͔��1f�:��Ck�s�'�X��˭�l��%�0�'�m��x��"�[ܞ[��+o�Xǥfh��I)�^
O2���U
���q�ra[�Nu��PPjtZp�QS��F�
p��|՟�+������/F�G�ѭj�6?��GS�P��f�}S�,�Ɠ�	-�
fL?���n�n\�Fr�T<�x#���	�R��#��ק>C�ڧ{^x��w�c�j2���[B�={/��f��ą���<r�W~���*�wϟ;G���7pI�,�*�G����2��I��������QD���ԅ((��R��c��,5��,B'H��IȲ<F�3���|�Rnu�s�<�IN�˶w
�!���HDXppP���o�O�<���Z=`��q��0�(U$XQ8E����lApr2���E�&�1�쌦M�ζ�HNh�h)'f�;S(@&��kYxo�xD�ӎ�Lh!���:H'�Sݨ�����/�M�>�`�B��>S�p�υ�|��*o��efnY�|��C���I��d�Gt0|l�k��=9n1z��n��s"v�
�ZA9L�҃�3i'��~,�ٞ�佘���(�Q$5n]��D�;��ژ���ַ�*q>zd3��@�-�b�fH�se��*u�~���ݻ�J��I��~.�__;G�v�}f�-^�lq7i,3cX����rC��Z�S�\��:�2�XN�.M�K/����07�]S"��h��l�J���'[u��q/7O�N�$2�D��so1-]�bq/ wܨ��6�?]�m���
�?�~	&7���Kpe�3 ���1X#���YWiɄ5���Sl���h����ٹYב�›���'z�Up�n^�2/?���7�<�\�G/<����7�|s�3ϼy��;x�ޯ?��=�}���٣̻����@��n�.5%+.���i��i

(q����Ƒ#��p̡��a�pd��;�)�Y��Ԋ��$(wl���t;�2�S�����")K�z<�XY�4���iA�1"�S��
~��z�n�r!����"E��*@�hʄ�/�n(O)�L��MWtv��4���,��F�R�^�&Fe$OfN-�e���f�A�E,{�u�]��?�5S�݀�0q�acy.8GW�om.��T=�:wC���:���c����v�PJE�ڟ`�q&Q����<�bKお8����	��,6��4��9�
�m/��ћ��`[�X��X�:��d�dc���e^�:�U_���٠���4���3��43��n�
����$�`5+�����P��E�[��U�.5�"t�C(f�S���t��Y�N0͸J|]99�<�=�YtRD�E	Τ�
�;�b��d�@�� V�X+�9�V%Gs7Ө�;=��=|4=c��8�ޝB��@�)�+|4|��Fx��G��4�����G����J�3���M�Ǣu�������lZ)�������|Lid<�$�j�7�^xb/�
Α}/���C/�ڼr��co�ʯ���#G~���_A��̞�>x��^��~�WO�{����6љ�Y��yReM�c|Bak&A��?�bLN=��j@.�W��$���Q`0��{�H��R�06]Cs�L*�NA�!'���˟�X��%�8�+�f��C�֓�(8�H0^*ׂ�6��VӀ2C�2�M���=��rn���:9l��#ɠ,�D��?ƭ"�q��%���a�bC�T�����*|�mjm�I��G:#���U('���W�����n��ߛ������=�G8>ژ}v������J�����"���j
N�K+�e��vE�F"##��#p7\�W��eE��~�=�w㈣�����eVb��]��A�����<Of�-/�
�V�77�xP�9�xd^\���,M]��V5Wغv�&��VMiC#���!O�ە��5�?�F���R!S�(���g
9	&2M��C��oRP�[s��Y��`�CDL�9�R�V�Lj�]��@k���Aj��A�
4��e6�Uʐ?h�"^,��+�ћ4��=�!�;+��tWm��ιC��Å�G�>	\v�J���/`�޺�p���72�-tYr,�Pz]����.ᡁ�
4�������~}�ԛ	��R��G}衇���g�d0!1�z��>8������կ1?r~�]r��k�"�6Oϓw��U�ƹ���
���ƈG!w�>)�1�2G�%��}Z]�]nW�V<����G��h54���r���SP�
�.�16ԵN�'����ݮ��h��iQ��lRϱ쥒�@:C�"i����p<-/�\Fah���V���.�.@Vv��&KI���	�X�x�S�y��Gh��j���c7���KfC!h@�#�Wusp����`�������d��
��:፜l䉎 �G}T��/��i�d��@��8s:�� �Q?�O<��I-:�4�������z?���`�>�/�5�H*ڙ\e��񔳾��Ӯ@�5�N.\hC�y5g��š�+�O^��^�����񋦡¿���Ks�	ocsy5��&�[,����K.HcN�j禯.�3u�é���–H8��L�������-ER�wf�:��ɱ$J��N��X�]�S��*-4Y9	�i�fJ�yd�qGFQʋ��c*��z���AS�h��M�,��N�w��.���3s]���m�Fu�G�F�d�|A�n�.6�m��\=�QWdx�/����"�?����)�����l��l�=A�ko�@EC?u���g�K?��K{������"�s�S�;}��[����G�"��;p�ؤ��V��<9��Gt��%^�k�n��}���qJ��(�(�WR��ڥ�l�R�(p�"���0�O�	y��x]h\�`�r��O!r5sr�1~�U��!W��ӡ�s�T�4�`��(K����o�͖����6`�؍�tJ7�@/@'��:��p����4�pzhH�2��5�M�Պ�h�Y�G2��`f��|��[y-t@`�r�Q�N*���~�n�L݅�T��.�t�z(
�w`�;�n�􁧇sR_܀�]{DK�Mx:�X����������~���y���Í@�i.����s�N
�زU�ղ3�#fB{������ɱp�(�T�թ�9�^�7�bb{��3��,\]/m4:(~g�o�ۍf�Z��y}����Q~�9Q�R�"F]�ˊ��av0}�ZO֚�=�*�2�\�4�J6�K�Tc�����rcce�\f}�Xv<����u	'�įV�+���x�Z�OΦ��H�����_���=_��Ƚ������Z���|��(F�'V��Í�?=WK拔9&T��v�;2�/����Cܘ���Ϡ�s��K
�KFh�Fx�A��-)��O�/���=��K��=���ď���k��<sa���h��];�cI���z�VB��}1`��@�����c*���bA�$0�-*�#Θ�&/���T�/j�����d�Z%:F����c��,��P�s�����d8\����.�מMa '
N��mW뾘h�%"b�Rk�P��8�Rx<��&[q�8�յ35`Y��ʺ�@Ajb����"-_�d!H Y���ɀ�\�T��k����'�Z086�bz�W7�K�}�`r�L�M+u��k�d�j�͛n���!��T�#����f��#��ڏ5�ϣ�k���<�+y>�R���c<�@5Ǽո����4����A�Z��Z�\���D�>�ϕ\�Ҭ�I�e���jI	��,������.aԹHF�\��n�����s���&&r9Iy
�hKw��R+�ԗ�6[�oϴZ,7!P/u�͵�y�Z�5��٩T�A���MYIlV'1�j6v�c�T�]<h
:E���[k�S��m��׷Wrt�s?+����۩[t�{�E��j��
����[�p�J�_!�C������s����fu�k~89xC�$���zbc|��|ioKc+�a������6��N|M�}/���o�y襇��p�
�gO�:(�߯��f�Ab��Μ�z���\宍5]2�H\#(�%d4�
e��b�7 ������fQ�&��Ƌ��/�n����	�C&w\V�܇�H�M"8��0�A���M�D*򨣫b��x�Rj�$Ӥ���c���d�O�G��I�b�8a�hg�EYG���l�y
��zp�h��ʾ-Ӕ�;xIȝ��&A�nH�<��qQ6���b="�����A)��]����]�b*��ۛ`�Y���׫��ã��ת9c݅7~�����F����H�L��5���8�D僮�'�R�@���I=����@��Ո+��؃�!�w��@�[�y19)ږb�tj�T��/�4��21t���L���ܘ]p��94�8��Sd���"�9
��7P�no�Ɨ7:��zt��38ps�P�X�%K%7Sd+�Yysm_�j��z�Ԫ�47�
�Uczs��[+��%�]0�v����F^�3M�B��l
�����b;gg���w�EfvQ����f��z����*��x<�J����隸r��s��Ơ��BG c��|���1
�����-����w��n�����u� �t��|n��]�1�?��
	n��>ceJ��_��
j���'� �C4\��z�>S?�`�¹w�=t��<�Dj���|r��\��	�b���o8��0k2�pwv���	�3�6���Θ
˄�_KIe��q<H�p4��Au��t���cܵ�ZeYE���i�v�D�*���6�0���a[�[�&Nؚ#�ĸ8#P`ţ�-�{ P!nU
$2�J�R:5^O鄖^����k�'j	���F�j�u)v\��v��r#��.�3wB��t6_�9a����l3Pp��P����I�nu��ɖ��cإ��/Lč7*L����8i��p:h@mp�2�A5�52�3�C�I;Q+zJ��7<c��V��Eec�M�GQߠD��I�A�.U��ۤ����1�Rc�n��tx��/�쑰�N�y���n�����FWBӋ���	~��ԙA�o�	���`��屇�(0���#উDž^z��'��k�!�B���2��7�onts�۷n�+�5��/[�Ήى�N.zy(K� \�|1!Ȁ�(p
gm�+r�'.�oJ�ö[:k��s���߀�x�!5���5-�'��5%�a�o&L:>"�Hb _���o�,�V�*r������U����Z}(6F��h>����.�����/��I}���wVÅ7�jg�QS›cGP�P߼�w螗~��}�y��W�rz����.LUp�̅(|F��F���l�E�0�G7�EZ�TrV��g��zV���uS���M1�M
{h�@#��������D]?��d[�M�n����
��lר/s��Itj��{�7Dc)�Lj�V����&���U��*<�18��K�8FPq��b�e�5���
gw̕�7�M���!����=��M{R�֙���|<&M���$q�������[u�5��d���7za��D��S$�����,�U!�o�2P��x���.ᡨ�3)d��ń8S�@��c̤�8wn ������*��"�p�? �H�.��_>����	Ѝz�����jen���,�%ڐJ*�e��L;A��\��sqT�O�Oؼ�zփd��Mα�X��H�.;�i/(ea
�+ZA"��+ҀG�Tt"�ū`��"�����v�j�m��+W*���^.]e %�xnn��L͔q�P|xux������=��%�S!�@.�j�VP�D��Z�l_n�3��a���O��/������7��ͻ�bd~�������$/-nC�#��p|���kP��=b�����ov	e�:?'81Za�7�6_n(��ӎY��L�C`WO���}��N렠���?S,�kp �9�C/<��K/;qtϣ?��stV{��9���. ƙ@ҝNG�0F��t<��Y�����d)/,���:z,�Hϸ�&����� …�^d.��� d��Ī�F����@�#Y�Xf�6�2$��f)O��I�_���1@�3�b|.�Z�]�T��x�1;qv1��<l���J�e��\�U	{�r,,��AH�8�̥21�&f,�����G��GdR�@�g�X6�&
�e���p4n�N?����<j�(.\�l�	�0J��������q��GPj"�u]�"��I7s'�ԂE����g��*���̅��L,��cD���%'�J���~���cE�N�U�P�o�{pHq12<��(z��\��(�t)�a��_M=��H���vO��
^G��<9�h���IR�(���p�
`K�������@��[&�H������	gyPB�-\��lL�����V�k��[�ꭒu�56�<J�_���&���iT<-(���U���k��$xg�^O�d��^Ym����˺�Ez�̙�u�>/��]��o��/|�}6��*>̘��;���.��C\ v��/�9|4A
&���{?�?I�������
���}�X	M>F�nt�_���2����Ο�G�?�{�I��yַڒ�(V4No8�l:*���w���}��o�	n.<*S�h�����8&���f+�K$�����<����T�X�ќ8X[��1�ZN�=�{H�"��Yn#X\�,�)����av�S��ڂ!*����[ ��je�9��F~�K%6"��辉������cw��/p�� |�V\"���hQ�e��`���Z�4�.�<��!d��)Ԩ�Uˋ��ʂUQ�1�%�s!�9�X� �|�h3܌b$�B"��$�;iU��:�r���Qv~T���0d��ꭡ�]�f�5��t������.
�?�;�t��[L<S|�0_S��/
��?/��-tJ�ɒ>Aԏ=Z�B7[J�*����:,�A���׆'�֡K4@���z��*ͮ6���򛷆GIx�8�����ଚX����fu5���OE��=�Jg9���d2�A$���|�~u�\-������_n�Vn�l�e�W��$<ah��^��Pݺuks{6h�����И���/+!�
�:�6�f1�ɻ�	��x�J�Ҥ��\�����b��׿I/ő�x]��T_�M��i͋�xQ7�}�t7�e�E���A
��8��5k���|����gh�e�_4�=¬�D�Y�N8c,��YW�.���~<+�>�pk�����~�����Lo�u���},��a�A�?4�h���(�ܨ����g���H�ذ�Î;Z[· Z螲F�hK�e�蛙Ǭ̓�+P�@���MX��<c+�^�����y�;|��רb���4����H"16��fi|]�&��Ӟٰ�̽�����5Y��}���+-ʙљQPz2�B#�	k�<I�U��e���\3���-Ȋ[N��m6��#�Erf��2����Ec-d��f�5�BCv��	�Hs�<�x�|Z<�pf���߹�gؤc��f�8��{̵�4�b?~��\���\�?0.A]a;R��"2*��w~ ��z��ǰ;ۃ�Oݚ��C����G��Ԩ/J��@y�JA^�Lrf)#M��z�[��u�6K�_VG?gJ6�}y�.��'o~q
k{yVB�q&��QT6p�0�2��oò�X��qa�iD���N9���lk��ӭ/����J덹�W޼՘�0�DnL��W��"+ޮ�F��XZL3��uu����Jsse^��<�y_[E6�e�[N6���b�~�¹s�O���F�/���_O8ς.������*�
J6���S@C�H�烑L�8�(o�ܨ�1d��
��9��s?gک_�
4��=��{z@�
�|����x7���r.�Ew�*�XO�_K
����}����v��8���'^P �!�_9�
�����}�y.n�,3a�lQ�JJ�fc�6��-�'�X^���L�'
��Pp~'��m���/ө�{�9V��he���k���~ߛ�w�(܅@�X�5�InD8���U9j#GrGP4%*��zr���ʆ�"��#�eȸGڡ�Wy�d�Z7q�XQ��v�I�B���j;��#Kl�>��F�ǏQtmt��%�\�B�f���=��o:f�?z�s7�z�����q��3M/Z`
�����z�h�a�Iګ��0S�ni�m�.�qF��S98A&�򴑖�E�2@]|p�(��+�`�� %BҪ��9I|7;�T�o(�Y����D"�5�*ͩޕ����CN�w������������{u��U�Z�2�(�]0&F?ïޖ��0J0LFJ�F���$2P���[ۘlR۬,.�s�Y��"�ԭ��ܒ�������s�@r��5e��
�U��r6QgY�C�᮳��$@�K�8��Pe]�.��+�<��T�ݿ��y�s\@A.�������x��k�8�z�O��/E
[P
���G�H[+�:F+Q�w��|�s����`bd�^�5lL	�%�d͍N�]���lo�/����~�GO=��/����U3�:uH�)�q�Q��9��鷎���s�>�������*�g���nj�	�=����û۵���f���8y�y�4P�Ę�̮����YQ^�(�0ǷU���G���X�x�*��w�Ce�q��U�� \}��9Fȉ��A�·bl�|_�Y%(4q����2}���8^�ވ��@�8���܉I�o�d}�ū�J"}��]�A'����Aya�`���
{��6��*�X�(�v�>ۙ��Є>R��!��:Fe�����'�E�4Nx1���]��(;����rnp�>��5�1+S���_e�����o�\�$T%c�;:?�~(�e� މ.��� i���;��'�N�7��*$X��L$4��3���(+��^�LSu���QU\V��hr}��84�V�^��.��t��d�Q&3/��<��[^Fu��(y�۷VV(m�%��Ƞ�_�����7��H��W7�����_}5����yk�M1�Z�l��#�y<]0F�h/+�M ��T��:�Ft
����g��3�
��L��D�⇰�*����kr�����)E�h%GO�e���5���$6:��Зu�{�D�o�w�/�����X��Q	#g@�����B\�>�ݰa�o�,�����-�b�3쑢�`�19��=������~��#*F.�ƶ0��7��c��]�}I�ƮY��켃�0n���+�P��2/g-�l\���1kc�=�)�
��̶���K�	˷8%�1��0�P��x��b2o����,l^yG�+G�QqL��$�>�P�	�,��PBf�%��Ke���L�
M�}bu�H�0-��6�=N8"/BI�BY�B��gqE��q2r�	lƪ�֌ʎhQ���f�hG��u�!�X��d�?r�W74�re�Cn��H9|�ꡨn��8=��7�V{z"����&����^�P��i�����=�^���� �n��<5j���Y���-�r���$+{��1�沕i�RӤ�Ts.x�o^�ƒC�	�c��L�e����\_Eu1?��:v���׷���f'S�O�2�6���p�-�#:s��[+���U:���<�	Zk�Š�e����,O5q&����B����\Q��e���e����ٴP�b۶z�*v9$�hmO�`G�$ܵ/4��>��O?{��K��нij�7g�?��T.&�����0�ZTD�Ox�3�@�(��ج/h���7�)u�yO=�`F��-�E��QjPchh)�
s�۲k;���qf��Mv~�A:�����o	cX���9,����9��^����8'��:}�WN����+��+��H�hJ �7�cl��z���K��K"o�����`n�(��5��a��㣳d9�5��o�7��˿xt;
.�q�9樦��Z�O�(h c+Q�Ӑ�~��%7e.�X�J�MPh��;��RX��6�.dK���0�uA��8J
5�^.K�U�0�"����"�J��*'����+a��'i����Vr�8�D�����B�K���D���n�����!B��6q}0��;+SfO��~_�W,�3�ߓ�z��u+���U�)�����F,��ϴI�c�we|,ļ;����E���ʂ��{,{"��c����E.��l曍���8���b��)֪��^C��c�w�_�>9v�ZR�#��k�Ʈ]�|��?\�H��w��:��/����$�W!=�6�0�6q�&m��+��P-3��e�T�^S�&��0~N���,}�f��`�E��ߌ65��mʞ�l9[��6)�S�o�4n��"�a׼�I�e�ζ�:�u��
K�S���=���K:*qL~�Ƣc��;	ↄQ��fB��
��nX�Ph�2�\�~��|%8�T��橛�Cڨ����)o����$�䂬��_��!G_���ی�)p|�yM(C%����4��6�1->���Ⱦ}����9��
7�Z�'�L�L����h����Vjx,��O�hR���1�p�;�=�H ɲ�
8m?I�9+o$Ǿ��R���kH�C.4FԆ�C��^?+
I�9�M�\t�h��M�qH�Y4U�,��ᄃY
�R�y�q�]u�%7-[cEdZ��!Ω-(��Z��e2���X*�$X�2Z/���*���U�&��S����m���5��=��+��0�����IG��4:�<�w0�6\mt�3��y
�����Q܋��Jg�@߾4i��ց��h�Ԥ���e\'zx���& !1Z��Ơ��yzD+�A��4�������Jߐ�Hժ��Js8�.�]����~]1,�@�W��}1�o�Е�@�0,����B7�X/%�f��.bjˬcH5t@�q��ˠӬԽ��y,��6�
m��bT��G�=N8Z�2���@�Φ�b=�ƭ�Xn���y��|��Jnn~9���]7�ɕN9+��b���`�T!�s
U4�9č��6gϞ8q铣�kM��y̓�?"oU|p�*_�h��b �X���x�1�Ln�j��8 ��;h�C5�U��xsio���d �l�k�]�_]���_?Nz8����%M|��t�����2�rw���"���Ω�0�y�@�;$����0��V�[��<���� WO��KM�̡Ё��kQ�8z�]��Ji#�1�\+l{v~T�r�I�<?
��O���̄D@<�a��rU@53�p��A��G|8�H(�G��{{��l�v�^���\�؂#�S�0:���x���+�B�)�n	=� ɱ�aA�FW�u���~rE���D8���KVk�:�]���������2��A����%h$j�7�ML9g����S^<��d:�/0�{�ca0��I�M;�fK���g�����Ƿk��z��
`��g�R��("�p\Lu���m%��aO%C����Ҟ��_7�:����_\�ܧ��p#���.�Ta�3>���eP1���EJ�P�tP/!1�G�6i�¼��Y���x����jT����N���oe���%��y��=�t�����3�E|l�ޮnv�1;�,�Z6*���a�.�F6�C�r��hkf�ps_�5T���'�<{��ѣ��1��B-�Np��8���:q)�<\�M7\%
�qw��`��e��.�˫RG3o#K&�����g?
�s�˘,�
�t/�P�p�t��J�={��4{��%��� �yR�8$��9��� .{
�z�s��B$&B%�M�lL�v��uG�`#��M�a�Gt8ۭ�p��k5��@#�뎍��᝞j�Q�Yc�C������*t�k���\+� �����J�8
�3�0�MSr��r(4�1:�3�6g(f�ΣٔU*����"A� ��ќ��M(��Ms'��lde
�Y.�(���J�jX�8���B@\.�7ъ̴\^��5� �u#h�JqZ���^�?�y��ՍB��R����c��GZå�O�%
��U��	�=��S=�x-d�e�f��Y������Ѵ�Aɳ��:b+�U)����>�a��+����/>�r+Ddl��i׭ݼp�s��x���/��0�v����+���CT;��,��Ʃ�)��_Nb|uu($�qmk���F(�XF�99[�;�z��t�ʊ�\��ogk~��Z�.z��W������7ou��;7�b���$�|e�ꕜ�d���pe���[�t�Q����f�����&�r���^�Es������� ����i)n���
��S�/	J��8R�P�|�VWc� �0Aha��#Fg,��;�PO���H�,�g.ͨKx#��w޹�74T�Zo����gY
����z�[��9{`�9{8W&h��Y��N��:q�
�S{��b�C�2�L%z	��F���>��^T�IQ:z�Ē��I�QڏN�(��̓$����^v�Tmvt\_MiM|L�P-��r��E���G�!	$2�͘r�V�{���&�&�J�c}�;,*(�
����$El��F�r5�*�5��)@c(���*�eQ�)4Kl�0TB��pƆ��Z��@�
ܳ t��ER�e�^tA4;J[�v*C8D<�N�(;��I����~g
�K������Y #_��p�L�sR(l�DB�u��(G��G�8���~1@�4;��D�R��%��7$�G��R��G��~����n���r��{�)PDa��VKzlDV
�3�CC	�Uc��h��x�dJޘ��W�a��h�\�9�M�%�w�t��-G�0뼧Rc6���]ޞc M��y������,�_S����b�!6~9^q�j��Y�h�l2)���^D��)�3s���&��a&����
��
R�רT���t�h|B���+��K7\	9�j#Z����L|^�'m���7v-=
ܨ��dz�7�\vּ��^:t��;��#��Gܚ��k�����/��=��)����$lȜnYu��kuc	�8O�78L��~���NwgS&Ɯ��΂3������;�J�xb���|_��ۅ��F�`�|]��/$q�
�J��o���0��0�|2Li�¯�
j�1�;��ۇ&��%>F$
,
8Ţ������12��P��]�~����(d���Y-RC�Q���o.�hg,�r$Tl�EԈ�"�SiO�̠1��G`d�r\�����$�A�K��EZ8��?d��0E����4?���@�`ہ�T��u�W7�ta��s�;�˜U6/�o'�-��m�a����#1V�Q���sv2e�u@)�O=������5b�D�DC��#����=@�	���v�W#�9���b�q~}�T�2[A^l����n��TL�*�P�}�/P:}̶���l9�9��Z��Ws��U� kp� 3fce�2	�K>a���C�l��	{���R��pަ�*�K�[N	z���C��Kf��U;�����'���\��/�h5��7��[پ�Xl�'�\�
+p˹&�Uؿz��T�	YY�����EQ��2s���A]S�7��n�\��ӎJ�F�4Q;��h|
���j���4;����}w3=��i�8F�nVY�s���
*Oo���ͳG?!i�S�}���7��,)0�1�b}
�4j��V��y�?�׏�sd�3�t��zӸ��`@�������"5�_̢��_~l�֢�YV�;Y�� �A����(�8ܔM�}��C�@��������:�T2���쮸�䃄,���A�7�Tw�j.Zl��Uh��-V�0�
̵G9ഩf`v���k+�>m�.I|Q�ì�t$ӧ1����f��������D�ŋ-��4*���lx��3*�(g'�{��;!��ܘ��ϐRСlE����Ӱ��>��
O�z�J�#��X�{��<�9�������Ĵ�:��H�52��АL��a�Y��t�b��@�g�e+J�d�t=�P(���[���2s��z�v�x���S��=�����mx4�6E\D�0��c1���_ι�&���sV�=.W�����%��Z��͕6�
�M�B���d�ō�[���6���Ͻq��9�~_<p��L�I�2]�[���P����2���f��Dž-�eIn*s�K�+k�~��	A
x»A�tn|_On�W�z��&B�#�1Of	joT�t�t�ٺ����ϺԘ7��o�%�/8��D}&��M����������Ǜ��7o��j���{�'����g|(h�8�Tf�C���O~����:t~P/������-s���_r((�p�E���h*�Z�"�d��F�[��#�`R�=i�h��P�h���* D��T.\P�d(%�J���0�����#�I�,#�II�lm)[L	P$�M<G�d�|f�,X�����ꔜ��f�]r�t:����s��8�_,�D@��B��"�T/�a� ���Q���s�j��n�{u��v��r�7ڔ�fP�hN��X�g�貂p��RP���#$Z,X�Z`O��z�$Γ�{"aK�W�j��{wt1h	%CZ�Y��xn8Ͱ�G*�e����T���{�&2�Ei�V[��ǘ����F���,�$�8��P�7�_��24�2�H]��7�e����Ɨ�K)/�[��4�{�R�bY����k��5�+��b�"ǑB�<�(I��bg��loh6KK�=��o7�Z��i�F�Y�o,-Q���j��nss%�(����rBY���[���?��ݥ���51)Һ���M��f�%0��}Z�[(��8�tST(p2]R��7�]��ٙ∣�I찙��k|�2后��7:���^�5���7�K�9+���{�o�� �F�
�zA`�S?�Ӗ���,��y�,�ͳ2HY
���p���<����Gl<X�x���FVWJ�<�cQ�7R[��yX��mІ2gs�ؘ�l�	&��i�L�/�1S
�#ki��-%���XAH}�!Y#9�P(��&Ity���d��'�%H<�p ��S�f(JgCR��g���`�/��X��(�X�F�U(��)��`O���FH��J�`�;����.�`T�3P�)�T>�}��L����ݤƵŰ�JqE�Y�g4�~�݋���X��pNB�2�GxR2a:${䀒}py��<��q��.0U��)ߐKV�t�$��H�J�2�w��=1�<�^#�@ў��-�lⷪ�ř�^�Dn��kC��6�2L�K1=� �9��U��a1zJ񥧪-o$Wunnl���7G'�h\��0��hLU�FQ\-Qy��t�=%��qê�A�o�j�jU��r���_e�ƹ
��F�Y�}��)�;Ò�f�ݼ�f=X%E��zn�~:kW��\eq��������K��0������-�0��K���ύ���ęte�\E$
��"�F�w��W���BR�ιg�\xu������N���Ԋ��)?�oT#	�~�:qPt����=���O=�(��*o8|	���e^�Ow_�L��y��w���O�Y�p�сXL]9��"��o8z�@v6d�F��YFg��&�>gy�=����($��*�#���c��i��c(@M��Ĵ�ȵ4���~H�Aw|�ugY�M��0-�[N F#Dy�"���I��l�e�ƳCz��D��ʀƲ��8�\��p[�����
�e�#���%�Pp4v
h�51��\J�f�,d�Q�! (��$�q�<%��,�z�{���Ca���^#�yq�d_m��'�i�(_'#�QY?���.s��{�匿����'�%�������i��F��O�v�85���,��b��-{�Wh��bg���V��M)U��YL��$���[0;�k�Cm��n%�.�H5v��X�b�f���u�֭�k�r��6$��Y�m�0/)�6����3��di	�p��
(�l��as��T���pq�\�[\�Z*o�"U����j�����R�:Ǭ���0��Q+-��p��tF������l��ܑ�]R�dv��U��ֆ�ف��0Ȣ�߈����M*��C�`*�^��%�MW��c����T��k��xFǣ��?a�����
���$���͟V�xs���Cr�0��p�e5� �?�:��N��%���mU�|�{냿����9�v���/
�+�ŐW�ib��7k�޸7_�Cb�5�ㆺ���V��s��KRU��p2#_��
��M�+c��nG-��4��-4d9C�J�h"�Ȳ�����::[v��t'��x"�Ba���d��[���:5��,dɹ&���ahF��J.���-����\���*Wm�'v/�\:�\١�*D�v�Ug,�G�fsc U���wj�������.~xo|_tڡ�E��<u�7����Q��ژ��~Q;�EQ/�&��=�G^�ޞI���A��oS��9Q�/���@����İÈ�brݢ��M�� A�Kh7�+L���=�9�`<�HHmEZgI�%Ҩ
�6G�H6���**�U:�U��d4:�r���/�][_߸��~��[[�4��j�AJ�j����4+���8g*9�6m�\��e��[�ɖWoܚ�N7g�"?�577o41Q^�z��e�$���痪�֭U�(��0��2S4z��L�!�gi��=s���P�2�o�O�8��B�n�7���C��
��gH�o�po������.ޘ�1�
��ݻjeuR;��EB����<I`���;�*l���Ӿ&�C����?��Ou)������U����7'�8u�N�>u��?��3��{�
s�&p��2pv�7vE������
%
��`̑z�i,C���Q�>�"m(�Sc	���6�b��V�	�хz)����#P�p'�^Q��'�������nO:/SKղ���%K�=�)@2��".�ÃB���QI0:��t�>�F�����@>;-�x�^&="��|�"�5�D$HNp�Y��+b7��Bg���9;h�M��=�ި����#9u@†�u`�SO�848�4�J�50q��pA��<�؃�e�A����X��Bt�,/�f�&�MM$�c�^X�
q,��ڥ8�,ׅ�	��Xǧ�a8������ʞ7�?{bk4�� O�0�Gc>��8��,�+��f�X]U�]���[�7o~�u�������Z�l�-ic���-�9���&��3,:y9r�2C���cw;Y�;��K
%g�6�k��s���UQ,�Y�\�Z�j�<���ەTv{��A�TZh�
3U�C�Gm�ެ���٣g��4��\���|�s��]�7 ��N	ov���g�N��!q�̌�u]�?��U�~L��Q�s�UG+W݆N8�;Y��=x�v���
��P��O?	^<��o�巏1�>�>&�~*o��7,6p�4�|����o8"��ï���&.�[���X���+�,�K�a��A�Uq�� ���
Ђ�x�F�Ck%����↥��a1�58���I�,��0]V����C���*�A��J�pޢ��Q~x<o2���3gmrW$m7�n���"eg�r�2��2�)H ��J{f����86	RĿA�L4C!�ݟ��"8v8aieц�x��*G\�
3%�EĈƎ���N��Ү�z��
�3��u7����6��1�J���I���>>��X�?��\5‘���`.�EN��'�RO�<��@e�pmz����ydw0a�!�P�6��q~8��3F��@*�iѸ��smwkq��X���B���8ve2K���8����Pz�Qę����6,oC�̒�À��wՁ���� �t.^���[�o�6x^_��ܼ��Y\�4���\ck��x5��}H���r����ҍ���;`Qmy}~���2ܞ_j�6o�P�[M�V�ҵ�]#�>�o�o4	~I�3�*�#�u`fZy->,���nL�ܓ��3]P�u�msv3;p�ۺ�:�������w�T@R�QK�s��$뎂�~�^:Ƈ���7]��.M�#���U����[i��Cp(p�M�,~���W��@� ����]΢���M@����8
�C�#��S{wz�C�>w��dq�x�z�1k��B)K�`��0�^d�Ԋ�1;�̊H�mƉ��Z��o��jp.�}�����;^�r$���:��h0�G����h��J��2D�:69�Ac�`���6�T˯Z#I�.41�b6�cF��E1ٻMJ-;��4R�J�sĞ߸�`4��.6�T<��!�c�%�̶U�i3BG[����ڞO8�[mb�.7�@쇿�~�n(evNww[e鮿P��P����D�O��8m�=ă�"���#�I���?���Oq�駞��Z7�@����@n�/�p� T
H�&�[�C�pG��H_,��<��(���V�Y�Yz�k.���i+������L'`�WƂ��;�~6��"�;I˥Eڰ�^�v��Y�5�9��-^�q����°f��hD=6(+9Dx)�لj�#����W�vp���pT�^�ݺ��M����\�xc�ƍ�z{i�V�u�F�Қ��M�Q&�lz�L�M���ֳv�R/yP�̱`�g�q������~���$��O�Z��,Xu_�p�6~1sn���_�t�����n����Q�/w	��U�h�n}�⣒/���v� ��7R#R��xc��p�I�O�,�o0���mV��7�A�}�mk�J�8�R�o���u�
��G�	 ��p��|�i���H��pŢ�1��{�G���հ��,1�)�_Rz��@��o.&S��hk��Lv�������h�]����	�ׂ=����o'�%'�I27i�ٙr���̗�bC{�V�����%:��h)��z6�@��(�b�AC��?8�:��3bwv�c(Ŷ���aN�F���@X�Ĉd�v
�HO<又���|��x�5�j応���~v����w�D�FNh�ٽ����t�_T��G@��4Z���[r�XY�F�o����	cK��?��	l�	F��.��������H��s�P��(q���J8]�)�-�V��\���C~<�2?$+-<��*^gb,N4�\O�3Ā9%�B_Z�0�޼qu�˯�����q%
��Y�7��R97ܔlrl��1�Ƙ�U,1S*���âx�ƭ���f�iG�Ɨ�$
��)01��}��j�i|��fg�+l�sv�C+��(JE�5���Q�g�:W���x���$�t�ޅ;��F!�,.�-@��
�p��{����ϻ}Os����<�!�/va���d0�K�P���۩o7�=���>�0��;^Wq������/��M66{����>Ɍ9��à�	����
 ��ƩwXm@�|�(���?���O�;��ڙLd0Ǡ��:�2�A�E�&X̮PތcE"��66k07��9��
g^H$=��~�%
Ԇ���$kQM�TL-�Y�%Nl�0��b�,������s�D6E�de�q\%��iDkU7˨41�v���7��+;~�
±�i��d���3�mc����x��(U�/�
3.I�[�[���Zl�`6����P'��2I
���Qp�"#Sh!��@Y�"@
�R�_��yf���/������?��d�r�"��5�D��mL#��L3��`3oC\Ys� ST�ej��f�D��&��������+��Z�r
4�9JX�\�1K�i.��0^�xK�EF��xd�{e]���O>s�XH��T�5�9ykwډQfάB�
zF�z�����~Xʬ�?1��������Ujo�����KH�.�q�\NϦ��c��a!,��/
�Z��m��*�\7�}7Y.!��о!�	z�{���Q�n�dƥ��[A[	:�Y8V�nv�Ad�&�m���N�}�c�a����������<��k�(����Q��mkR�ڣ��tC5���^�m���)\��;~��r��{���p�^�@FX�	)L,�mq]��'|J{y���Ti�?�����Q�Y!IS�,�Q™�&�f�G�	n���v�S�'6�.�R��1�
��;A��:�.�|��_~�+���W}�.x0"�~����SB�Yf�d8VUYs�e}���:Fe�c_|�����ů~��g�(��DH��r��묣��/��jvU
E���2��2��$�,6�y�@j���5�颏Ci9G�X/Z]U�I�K%���`cĜx}19��D���0��F:�VXԊ���;Y����mrp�rdf���2�	q�����T�*]�����r�C0t�Nk�`<�����,��V���P�o%�-`&�X� ��;P66J��xC���R���S�w�
��Fd5�W|��xbv)1����_�K���OJ\_��0�BM.�e�n�Q0��{�:Nxs<f��Hz8Nc
0&�	�ia�6�pX97i���K	Jׅi�D�1y�N�����P��-�p����U�濣�����?*���[3;�z>2X_��o|��NX�@���n?L���x�hgH*��{����a�0��4\Y?7o���jl5�MI
����xX������m��T�fm��e�Y��t��;[���IP&�����cD�����l;Mk��������ZX�X*\�^O!�G��t�;3��C���dJzBLV���&t��.��
Ӳ�06R�8�5F9�� s2��!�@?T����
��*����$f��'t�_/����G(�(��i^	]��}��|1	4A�ѝ�Z؎_�x�/����3)g�ƍR2��!4���2��PpYߊ��[VaP��2[FsKʐE�~
�7=7��<��Q>X_)*�	�dh<�OMc.
K
e���٬�v��9-�iZ�2*`p/������.��u�S'��I���"V0RLgw�V�4��,
����df�VmFvT	���ӻf�<
T�S�B��*�S;
�8�9�Z�Y��s�݊��S�*�Ơ���iA	�)��ఙBr���8>KI�N�q�Hې(F.x�2%��Ĺ�/6#X�9'��A�������:��Ո��(S���ke�GA��({y^%E���U��xqPM:y���l^�������~��͟~����DӺ�td6([e�*U%7M�>ݬ���2�0���������'i��uh�q��^σ�S-�^������j�_�����0w����`���,�6�흙{7�4�H}m~�����,�����$l3�B9#����{���Ap���ކ��C�J�$O�����=֣��;`��x�	��l��:��P��iTtZ��B:�^A^Łf3�ۈ��C��!����b_�����ꝆA�W���ַ��W�}��w�72�#i"�y�(7/W��
�O�M4p���*1w4�i�8Ϝ9s��W���̥ٱ��/}	"�#�B��e�Q=��@ҏG4���~8A��*۪�:u�)%Y���r^��N�?��"7�VF>G"9(�K�&&�O��Q2�7�"�k"јA69y|F>`E�zE�c�,l7�L���9!K؂W��4|Y�%�a�mh��pK�xvTIR���1��;��R�s�N_�8���@Q�qf�t2SpR"��{����_�9���}�M��7�:{�r
�q+a��?>z��R�:��b���@
+à�x"2�8%��׊���tܰ�y�]P�L�
�'4ʐ�F��	0N槑(�0��k*�?�Ґ�"����[Nd��n>	x�*veo�>6ϫ�o�!�!�b���>�rϭx�5����d����i���Sa���KD?�@�W.�q�����g�Gh�Gt��n���C@��n��F��>[6�����SF�o��}�m����6��yR/��_�Èg�ߣ�lO߸}�o;�����P4����j�'��u�x��߹P&D�6������g�C�Cxb+��"OL�'x��
�PF�L�B�	!MPt��c
ѡ��J8fP\x#��wÎ�a�^l�S�Uo������|��?r�P�%hV������l�7�5��Fip� �"ST~��b���sF��7j_��D�qr�r�E�w�&&��B[}�Z�ɷ&Y~Fg�y��Or��^=W�k���J2]��H���tS��?���
a4�0#Бmpsb�}������9
-��Mn��r='��ղ���V��bC�P�L�V��G��ڨ�+a*5�$�#��&��,����
T*�ʪ�-������T��%*�M朙��9g�֮��݄���}�P<1��ճ��|j<CS*�:���̉���)��u���)�}�J ���w&�+e4md�����ҽR�6a�"�(^ΔE\"��8X��椵C�
�T1�'���n�mS[�+mt��1f��d1p32�|��HP+5?ڭV�C�m���F
���W���H�[̗�|�}�&��^���p�_Gz�[�1�����T��O�}�yoܻ�����˝��L�����i�;�׭�b�;�&���6z�}��P�vz8q�������7#�*�h��#�v\�Ѯ5���Ř�}���x;��dЌ��$��B�`�� ����~�'@��hvq�o�Jr�����C%�
�<�K9$��d��6�?����(���p��!�p(s+���~��Ar�u���'$*
�а�����(�z՛݊k���A�S�.]�=9{}�F$ɰ|��5��JdP�fPq�����B�(_{���YRB�MiR���4,'�b�8jO<ܳ\z�꘯&�xY����A
�w1���:�Vr�a7s�yBV]%�58���B���^��p
���	|�{:
��R/�M�&�f��$2�3N��M<[��|Ѧ%�)����|+�P'977]���Pj7�T���M7"��Zũjj<�¤�Y��=;66v�ڵ����.�^q�
�d��K\ �ZJ�8
��j��<������]#H?#,��(�)�l�8Ať=1������
�\2S�¬4�30[k�Z��`u�?�D	����j%�p7���QW˫��z�z�c�S�"/O���*���j������cG��
/�:2,t R©�*��Z�3!�}�.��Jljw���H�>���M�|76ZT��6���o^e���u|b��C��~Y>�uZ��zڭa\-0���_��-.w��y�ӟz'�� !�n��^�(�o� 8r��S:�
��O���,��B�	�R�i�\O����>�u���%��RB�r-�
���n���"����|�PMgNSAΫH��k�F��M�QюRV��w)�B-�r�KT镫/%�:��ɹ9�7F�ҽf����"s��R�&�ّ��zR�c+�$H�'G���$�<sx��Kfx�/��-R�:[�2�@nt�G�����U����Ju+M5�h��`7,��Dq�v�Z�ʦc�g�J��`�kP�K�U&��lK�Ǝ&ܙ�$��3_!�j�x^��ٙ`|ZJ&��iR��](;?�
$�{�7*����uc>�Km��O=��ptA8�%���P~[�$��s�셱���,�K�g"��3�Fq4h@��ΐ��<9vN�@mX�6iSe"S�$���@i��4�E����x0�"ӄ6�	��!O���4-F���]��6��l:hn�������
ʡ?v���O�2�Rm?X���
R)�BɅ�#�,E2�*����p����]G:���<%��5��R���Z`���6���~t���á�9I��a��S��x������DB-D��^�G3��SZ�4"D�>�w�e�7�^a�z���X��tLȳ�W-�p`�N�B{�k��o�Nv�2J�ZF�8��%D��G��ZxJ��lhi�VBJ��}��P�c��AZ%B���\p���8Ƒ\�<����l8����΃�Z�4���Q��U�W ]L}�m�f�%U���o���32��`��\�x�֙K��~?қ_��z�<7Nci	�D���"1��nVg�NEtg���؝aC����[!�8����HC
)���[�-2
AШz���1���*0!Jұ�aAuւ��Gո��x;NJ@
��''���0�1��F���`�qľI�Z�p
����\��B
W�W�w��w�(�Y�E�B5�OMk�
E�Z�K5��eO<���"d�q	����Y�S�N�??nݾ=vJ�Yg��h"q
��TI���+�����K�.�:k���;��x75��爀���BL���j�����̎`��{�;FU:-ҏD1���[ɱ_���Ol-����\=͢!W��A��+�;;����m��ͪz�:A1��MǙK�V�ܴ;�@�n�B�٠O�`�i+����vɇ�#�A��L~�v.=�&�v��t����`���nz5�j?]����6�T�{͞W��G�d����dm���8���t
l�ng��W�����Z��b�Um��V��V���
��_�JcCO��n���A�s�0aL��z��O�o�+�:�#�`�p����ƈV��qI���@`�+,�ӗ�}�K��x8�(�(��θ�}���c}�}2�T�����Z�3��)L7���!���^�#�q����]�&&�����`�φ���M��p�[eU��)�LF�:\^�&���ؐ�)�ԋ��?`~|�7u��\�QMaM�!¥�$x�f(3!�*ː~궬<eN�8���F�	*;q�>Q��x�V�H��h�T��8&U��|(�8��s>ߪ"�ݘ�P	�K�d�9c〗�jh�4�V�O{t����G��b[�&-�.P�a>�쥓�cvfd�JD�H"��-M���N�n�ٳ���	l^6��fT�0=�1���Nl�u��	I�������8S&#��$-@�m�E�"�hu6�x�4��HٱbN����o,b�xש�ukd��Ç��?��̹�]�|�Po1^l0ZP)B�6�;UY|���^w��^����^�>r�̆�x�6�%���=�ŏ�7D�~}�(�~k��h�v��w۾߻�Q�iy��G����g��o6�K;�f�]�q�� o��������4"yP�ȸ���z�U�H���DI�զ��d�h׾A��� ę�;m�^uO<c�&Dn!a�$��)�a��:��A���wH4�$����;ፖ�����G^�7�|%�_�0ፖ�ּ�%���)�$r��3��w��7؈_�x�"��KL���^B����+�^�(��.>��쬼��7u�9;v2u>3q"��P��[(�%�&U�E�Hr�c�rs���-��É �C-$Ӂ�\�n.n�}�VQ;�F��\+���hD�yQ����\���HNRB&Z5<@Pǀ�jraM�+J�V��@&˜a1ݨ�^8��bcgw�p'�߰���2��9�B Sd�ϙ�g
���G%Sj
P�3�c�3�]�E�F�ϡ�R�?�݌N�0,S��Dd6�h��q�C�~'��_��o=a���R�2��)���')�:7n��@�G&c
s2a�R,����̝E)f�;ɣ'Lo�ϋ&�ǥBZ�8��-L�4�RߒL���9��3���LƆ���,��J�cS|%��+t����ǽa��7~����*(�z:����A>�:��`ߪu��j\���^��n�ڃ�3ް��Ԡ��hG�efq�bá��h���S�W�ΰY�77��ƣG'%rEi~��t���N�^ww����c�0�Y�=ė���7����N����P�=ߖ�<}��M�7O�
+�4h�-s����W�Y�k�0Z�nBeb�+��!*T��šW�jlUm�L|��Fiݔ�ߧ��-Ҟz+���"oR��/"�j��VɆ\J��$O�2-��+�q�q@Չ_�b�}pM\�b��^O���\WVu
���ٳg	�����cY\�������VyT1��I�c�Ac��kY�2I���ĺ[�C��S<n�#YL�r�G&��(��:����v�k��,�[�XkxA�ܾ�Z�������0r�����4��Mo�X�TØ:N�fd�OiM���H'�Ù}�W<���|wf����Cʙ���N�9
�8O��͑#���(ʼe�(B�l�Ύ�(_�|~l)ˆ�ѭ1�S�n���.�RKc�R�1/��`Fe��rÄL@:wm����l���xO����R�ˣ�E�*s����?�o��>1=�tt�n�x!��0`�<w=���F���n��W����+~�JB����,�)�9�ݞ�z�x���5��Ɇ�ܥVgHU�oz~_A���}�+4v|�c��|�o�|�˯��&��|͸�=��x���~�� �Wko�v���P.��^Y�v����O�'��3�����O�����ԣG{�{~�����کtY�
-�����p#La�nT7�Vh��܄��J«���z뷿�>�W�i��d
5�:���0�g�*����'hP���9�<��
�oc��`����~���Q�*����)E����V���͝���GB�C��۳ׯ�Uݾ���N�㜤x�@�$����KN�PX�:(U�HV���D>2:%�����|��-Y禿��$�߇�50�}O=�zn�������W�(���Z�xv��[��Eiz�r�©~��z\,"�g?����	�U.�E�(��ۡ<�^S��G<���E�b���1NK�N�sl�):���<H�-&NOe�`ԡ��r�2ӾǞ���n��Q��0��B�F.Ӆ��ɩ��c�~N�4�e[Sʯ��D�$K�ǘ`8yA����bw�O�F����$^O�w�"UE�Os��m�]��b-$�a�-���ry|�'��(~w����lf���btA:�Q���j���vo痿ܩ�׽����v���cD�F�)3�ru��m{����'��+$?�W�Z$c�9����k��ZE>�%��N��j���o�<��/�˿�u��x�;̰U{�$��6�XÄ/;;����O�*
w�bH��]���~��ڱPf����7�z��edR&R��t˒xJ��&@�W
o��<�[ϱ_pr��ƸR����R'�@�ţ0�
�:�D19$�FKo��c_-�&H�f�S����R� �>��~l���eR\����Ppi?��~Ԭ��h�W^��׽�YN��rx?fq��oݞM��n�ȳ(砌"	x�I�Ob�0���E1פ����ُ+a�i����܇(u��3���M�rLp����(Ƀ�z��EJ5ep$6���J���dD��*4(��(��(�sʯ�g�ҡ:l�N����L���%N5:��*��Ɵl[���s���Y���K,�Y��yc�a����\)1����ؙ&�B*�R}���)t��#8l������t|*A<����4���v�Ø�ˊY��3����#ƅ�:h!�A�Z����=�#%3M(Yk n�Ⱥd����>n��_S�.f��\l�:3�;��B*e�A�}�W��}��HD�O�Ӗ5���¯�ӟ��t���qɨ0�p��W2�Ĥ%�V�8�`�M����Xu
�|.kUig�ǯ��"G" �PUy6UQ���C�i��w`����j�����dƸ��i��i�`9�&�3�0��f�J���0��h��������>ޣR���c#[�:�<bi'U�����W����|IK���s����j�!�o��y�k�\4�m�����
���×\e�h��������P}�	�b&&�S�&�y�{_�q��R����ף�.U?s���Q;���s��ͫ%�3�N��U��M_���3'O�&��w�e�E�h2�p���ɼ�
L�������7q�������b�Hl|B�:��fCӛ�_[`O9m)W��&p��5����c��K�븐��8��w�\�b��%Cr�u)ޔ�2�|�)����0Q���v[���UNE�Xr�L�j���8�� ���*80�]G�.U�T&���H4=S��hh��$R�[��9o����
BV�pÄA,s7{bjl.!s_�+K����$��q-	��8׮�'��|~����/O��Y�ҩ�t�ߕ�TD^�P��qkrJ��Tn���==��Zp1ׯ`dܰ���'�MP-��-�Xd�mJb�IT};Si.��G����F;��4��H�@�J�j�4pV�k���rjƃ�[ol���n�Z[,�
��4�w��N�楓��3o�\���㕶��i� �� js��W����{-(�n�:�4R6_N-�8��J&q��b����3�0��NF�5nl�<�pꓫEP7��H��QZ8��{(]�s7�`���ƀK�K�x8j��[�� �	-w	3���'7_����9��C�	+��[���0UfX�@~�!�Fˬ[�o����*�7h�u1_x�?bJ1�0륯o�D1/2sT�A�(�HWÿ�9A
W��&��_�zծK��.��[�#��,�f'��m�-1U�}%�@f�S^R�'�)����F�o6:>pC`#��I�ve,�)+�F��H׬a��e!B���"�URM1	�����;���$�𱢫�,��$�%4؛)���K��Q�&�]���%6�&�tRQ����JÎ]��F� �A<����xKe�JOC��C8'9Uz�'��Q;�S�����z��aH�Rs��$aaѺ�
�R���/�._�{����"%�L������e�&����L��0��S4a�Ο4����O�`�p9p|ȳP�1^#�����bD!�v+>�ӶdB��x�xњp�ijY��N�`UY"�-$��y�������7~�p�?�n�I��)^��_������؄[�J����F��k�i(Z���^�6��W춶�"�\ck�O���d���	| �5�]�(ج�$u w"��N�A�ԭ����7I��XLVѩO��a6%H	0G�
ބ�T�.���
]Ú��t��ݡ�,9v���#c-���B!�0�	�9yO�P�Pl�����V��,�	
&��Ǜ�o›@_B׷�\|����b�	t��]=|H�V1�S�5����Ł�C�Q��h/��CǒWjã*
��IN0	�NMd��@x@
#�m��PĺZ�U�I�겣�fE��3����9���+&׎�P����^z'�`N�n�l��	��S�.��$W�NQ�Z�d������1�)�!�'̩��tm��F%��[mF�E_d�ǞGe�Y��D6c%�	
��F�s5��a%�F�A�O}��T�5S	���a:c�D&i-T����)�l���5E�@����`���'O���H��eb����oP%5o|(M���<p��D)�XZ�\,�lV��\�W)@�r�l�IM�?��:˹��:B��A�9)܈|o�M�ni�� ��m
<������ݺWt���p����p�O��G����z��)��O⑻�e��#ϦCo1��J�?�W�*�V|�v|Fv��x��z[f��|���w��Sߊ�b���\H}F^n�����-h������Nh��i	P!�^��3�C��j�Ňݨ0�	�L,T`�d�M��*,y���`�������
���ڄK.���0b�:l��tU��k���=72m�oh���+#�?&O2��2�%`l]z�u��+��Xg�^��LK�qB:U�b��%�~��C.�I`ؐ�1(N�8q�ĄFX��1񢼸*#��8�F�^���ϭз�s:�,����E��K���^��0n��j]�8�r��&���;JΜۀJ�w-d�Ɯ�W�
WeY�%�2\c;�6m����t__FX�z�)t�R�e�N3y�.hJ9�M`��*��;{-�P�>�Z�`'��T���HN����M�N�/���w�1��9��+�u9e%f/Ӳbs	���t\���>��&�&,9�A͋n?|p�9X'�En���uXP2�LKQ���6�䬎��i�2x�Pz2&�q	uQu�B"������f�6�Z*n�Qjb������[vLBV��V�H��9�l�5�ݧ����ՕuNN�~�k�=B��W�~�R-meFbiO=�j��U�ة�̠��w�~��Ӯ�峍^����{���0Z�H�k���Z7]�ǃ�-�F�C�PAX��B<�H/�md��YU|C��ܼGWՋ�U��&O��c�,�|��}R,�%�gf|�`��{������K��%�U����1��5�hԬb�q�ӑJ�}�|Ub�Rr�Ӓ̖(Ƨ`�8�_
��$uRכ�+�fn_R�J	՝;i���xɑ�F�q���hv�3I-�a*�Q�0
0P�U�i��8N���*%ݭ~�������Er70�I�|��
=�/ǘ��
�k��^�H22i-�]���=�3�~�R?��F�8�8>O��YÌ����HM�\���W�8�ǷX��1C��J��Q��o�0����e���4�騈6{��\�V]]b���|*1��Nu�x�1�L򛟾�f�F�w�#�|�څsb�s,yj�STc�}K$T�(QΘDp 	[�FTb!������f��̍y�х�*6��E,J�+c�1i|�O��d)��O�߆��J��1g�(��Ӡ��:9��+�Y(i�����#T�l7�L/��.k��F�T�U��h�<X�}V�tN��pw;��D�t<�ط�y�x��Ѥ�ԤiJ/�wflD���
�'���ӝB���^'ͩ�VJ�6`WKG�!��=�6��q]�? �**uZY$��6e0�oY6�>ZT�v�*��# ;zqM�'���MX�	[a��
m�Khcjşc[�Ն	-�����Q��˱�3Kp�QK�ra�!ް��^Vx�dŒ��b?�im	oB��Du�k���_�<h�û�������&	pN=�ذT�	���������\:s��E=�
4@��_�Ɨ|�Ex	a�K�"_�x�eK8/R��b���sq�T�.��,����f�ΰ��9lhFqS_��S�i�
�1�x�	�Nߥ��nAfW�x��U0&�AhZ�(P4�_��R?�4�]
]�2�\R0���na
ǫ��+��V�Ыr�N��\��&$s*^*9]2Ng�A�&_O_�8v��IK��μ�q�����e�2������*53��Z��M"C�F��� �HQt
ȱ�_��ȀA���mXw��((�bS���5��J4	/�A��~�i�fZeH�*X0y��C��`�\&�k((�I� 
d5/;;�;�
�(�V�uo���	�E�|�4��n(Z)��&05��L*���f��mžtn����;�m���Vj��`�m�O'�J���	�494�@�|s��D����v�-:��G���E������:uG,���?�SNjE6?H�k��1pI�DJ��z�^rT�.T��SQ¶N;e������ap�
+�W�6��Х\�%�)�}`FT�`��W�ך�H��B��?>�7�cP,��4�'�1y�c^��Z�e��e�� �h�).=�_���@��V����
.�0��zV�C1�e'O�$��>��ԩ33��/=�'�!¹�P:���/f��M�̩„9y�X�|r�`ۄ��
��2�L��ib��G� �5A��IJ�U_�gk�!��9��+�
��u�d�
�F������
�}`�@||VβhD�&�^3.�(��Z�"��HT���2�4��!�o��G͝���/Y��f��3�ı��W+f��x9b�E"�|i�ܢ]����?�>SA}Vk�!%�@�5pe�<�KvD�����gO^�|#!����f���$?��$�c�~twM#��Kǘ�
����Y@ݩhlJ���ϷA��2	D�cI�tJ��/5�U���R���RO_Z�R�.��~�!���RPa̒Y_�;��[�G
%�x��."@\j���@2n}�a�^O�!��E6��ߨn��;�� �u����ҵ�o5��L1�J�1.U톋�
yU�3��BM��L��vs>��u�µ�Z�l`;�6��vGp�X����HtÎN��c�S��������66n�3��?;�D�n:�A�XM	���b68��Woy�a�%��W����6{��=y��d�y���I�#��	o�F@ܾ���W�	��A[����c��$B$R�p�������ɗ���E�<7{�MZ�
m�{�`��r�΋�|� j?�b���%#�NDT4���7%�jÉ@���d�U�.�*}
o�uB�:`C��0�1��h���P�����+(��b?�U�I������#{K��D[.SA�Y��p(FWŤS����Nέ&'��8���x4��$(�Ԗ3��Ϸ=������)�kW�0�u�d�y&�i`5��r�a�:�(�U�~�́��h�>���1�V̊Q�
||�.X�d�gd�a�D��5��j�m$�N@�x�F���M�x��%��L2�]P�B^���%NAM8,��qIq����ߠ02r�u���[X��W�;�:S%g��΃��^���>�M<N��X,����m�c`�'e�b<IYم���_[M�In�(
����~�^
ⶴ�n��ڭ[3�L��y�*�&6A4K��W����>B঳�&��`��;��p��{�x)A$)�{{�C������^�w#���Q���P;;1�=4��r��T�
����탙q���j�;Y��ټ
�ۨ�C����#��H��>`��Ú�.Aps8�z|`=ܨTB�Mb#�G�W| �ߨL��2�Q� �6���[�'��
��
����\RVE	���1
�K��#�p�y�(������2�~,v]%)�z2��=�e����ƴ+��*c���7��{R;p!N OS�E�����y�p���.d�ή'���]䜩J��l �-,F݂X3�y?֨�Ӳi{U�,U\FVP�e��/s���-�#��V9W��Z�f�*D�I�UJZ��ؙd8�-[h!�DJ2S���d�f'7�ךn����Iά�x�O;�&�
�K�D�(���O~���'RdA(��=fw"��JGrQ�
9��<�aMǠ�$�&�Q*5%� �I��D+�#	<K'�$\`��W��00�'xk�7��K�/���%�X�	��EЭE�����W���2��w��4�LY�k�VO�n:��t��}��Nv�D4�<dv�l��5����FF^���QFj�U
	�uxm,�^ߙǮz��x��q��|��u|�C��;4��x��0#:����=����L�=��~��=(��<��C���Z씏G+&궲�[�Mp�A���	�	�	+9��;1_	%������L7o�5�	�_��'/�x����?	G��	X�!��l�CCM�TBs�!�����)�{+"jOQ�e��HXK
�1?�U�Y/{���=?�@0K�T��,��~�΋_��|�K_3�?�������g�'"��|�Ft�8Q1�wMM2�gȑ�]=�7��`�K{`�L7n�v�^:����?��6�|)h]�v1KU^��F����B�x>�

�)��$���� D��pYȩ��x����Ȃ�g�ɋ�
Kڎ5짪~3�L�ZL�cq3�j�|9>��[�.J8���bʲ��Y;EL޺�M�߫�3O}g�t�6g�ѩ*��/=�!K��I�RS�a��5� Y�hA��9w�G�����E��,���C����3��6���~~�|jn	9u��*K�� -ir֊�j&h"N�G��I����@8K�4�K�l�.�u:��>ڸ����-ט��ރ��u'9C�6W���aI?��]�f���Nw�SS3�V]s�����V2_F֎S �xģ*�A�Ʀ���r�k��|�kh��z>üސ��nI��΂����|�@hs�o�P�L��]B0�C�}��	[���m�r�(�tqv?�h^�)`'c����J4�\���7O7š'1�h�۰.�p�!�	�y�4p��?`͛�����x 7���7�'��^���aB��#���-ej4>%��o����Xo��;!��^.��~Hn�7(g���
:�nh��NE�"�@Vr�����+�k�ʡ�E�\�t-N]��CϮ��.���X���G#Y��A9�:��ڑ��$H��qtŌ��
�Knk �-2������u���%*Z����`���AC���t
2SR�Y5{�g!��$"��m��ƖX�b�iy���ŷ���
�&�Tt���D
����T-N>���$���)U%�8s��y姞w#L�h�)(
��@4�Z�0��6n��&܉�{�0�삨~�#mę��Y��8K�>T}F���
ht�<?*�4-F�����G�Vh�'�,��d�pi�M���z@��Jdy9W"ͨ]��RWs7�� ���?z����F
�\g���t�k��K��i|�6���h"BS_����z4girFd�[�QIX�n���̛�F����-�|�D��W����c��V����}���.��I
X9��0'�Md3ڝ�&�����qMw�]���|��x��ЏG��]I�F�뿦��M6�H�͓�M7!�h���B�n�@C�o�C����龄.��7�j�
�;�̿�?ؤڣ�K�UJ&�
�,��U%5
dQ�G��-�L8��
Ƹ���0�P#�0�[4�
8K�b��	γ��2SZ�g^�@\��҃_L�՟hb-+�RZ�@��Bn��B�Q@��(�p"��7�El��Qk���lm�V����@��p��m��͆[��ഊ��Dk9��8�*�P^��>AфҦ�ĺ�e���;2/F+���r��	��V�<���*$�I�L�T��E+��K�d��,Z�P�$����5/3����������,S�{7���T�}q�2^�(��Q$V\*^1�Qf�A�R�@�K���*Pb��N���,�����~���ɳcΟ��Q�:7vr����J1z~Y����&DA	�Py܃CxS�����=�>��N�x�^�*$�Qփ��*��/7 _z/���
�r�1��]��p���FV��-J��Fɤ�Drsؿ{W�����)�t!���[L{[�����1�뭯ݼ�՛G��Ysd(���o���f���$�~�ss����u�P���u��l�W�M8>]*؆.e���7ݞ���D-���8^���G���D7+��'�a�C����?�Q��;�
~�ۨؼ��i%��W!8#�+��B�1h���꯿9��Ttw����9m6fQ���xܰ�GW����bL��Opŧ�>�淽�_��B��_F�c
fB�{1F���3��1`F"��,l��l��K���.��G�8���w��	n�F�:<����'uH�Z2|A���n<}�|KC�9���0��,r��YK2�-=c�+�Z\�I�I�Y{����<ޚd��	r~g
�FǂzAh�"�*D78Ȩ�b��8V�X�Lk�*���<W�9�ɻX�)��a,�������LSrp�����wcr�k�ȕ�R�d����t�bY)���3�!�XCf]V:=�B]������={��FK�G�/�s�K��	��K/��<�&'T�1n��m{	o**��D��\���Q�LaO�JȌ5Xtm Y���^{����=�Q6i�}��������lx�iT̷��B8�����z���\]�{_��ݴ����$�����dSy5׻�G�w��j8�(n����fG�1H�޾EuK)�(�;��)�t�;�w}���j�i�S��w�T��v�Gl�3�Rfu�����7�
:T�L����cϰ��
��i�{�ڏ���tn�O�&@����2O�
+ 7�
[�����ݫ��M���r.�U�7aF�D*dK����
׀�'o)�:�HC�3Z��7�?%�M8���:�����G%���;ԑ�T@
��{�� NP�!���L���w���go��L�X�c]n8c#���"g���#���bT�o��m�U�C��)H4��Յru��M�Y_���+*e���d��*�>�aQ�j�M��LT��*B�\�T++��+�z5
1�t��8�RD�$�k9
��,��.R������I���).M[4�<&�H��8���Q�V
����;gdK�H?�Z��
�F�豣��F�U�#�*��8B��ȹs׎��ȵk玞��p�=z��ѣ�c�t��L��ǎ�j��,�G��6Z<q���}�`��N���B�F���fi��Q`��ȑ쑘u�H��q�GF��N���H>�S�G"G�&���1X��-'����&��`��c����C�RN��^:y7����M�Y�>��L���`e���ž,A�r�1t��w��f�B��w6�����m�^8=��>q��:"�FicW�9R�R�ׄ8��k�:�]�.�P
ΰ�q3ds�pf�Stf�*�.�KǎI�E�m�AQ����i�;��w|����?���^c����}������������m���~�mdR2�{�ʬ���Fa����L)�AN�f��<]��@�W���Ϙ���@��^I$�V �%[^�'X��	ݛ%�E-	�b��O�J��j�T�S/Ԃ�cr���u"횛��S�ΰx���DE4�_x,q�Z�o:�:���#BX���R�$g4�U���x�ee�Y�B
4`���^#�E�M��$��2�0�'��:�y�E��*ixq%�YX�@ @';r$��'�쎻#������'%Q��ix�2�
�b�^���|����3��Ih�e�Js��*��,�v�f'�%�cǬ�����|�رcG��^Xy!����9OAp�O��F;Q
�]%	Q���t�m��@l��N~�[A�����қ+��0gE�=�r����uJ��ˬMd�,���q���S���|h���C�2�(�Fo���C�>{A)�0UϝJ_L�	�s�53�o��"x;�aG�a&����Pq������@E8h���O!8�<�n�Zp_�!
{�m$���T�gs��4�3y�6]$7IvS�;���֕I��X�"Pi�dX��#é�Ckn1wm�>�uBңN�ޒ����v9L�`����:3�&b@�,�g�j*��Nm'XZcvC�A����X�����n�o��m7)9zoBMe�5�^ ����K,ϩ�2��'���	e%g:����FS_�^��l�nf7��/�d7��) ����5j,i��&��gf��%�r6�L9f�ͫ�|�y9^�p&�/-�ۆ_�QbZ#�l���2 ��:�<BN�XM��e�f7 �AU�b�P�de�bE���ڂ+-p��m����w%�D�gdDQj�]=Hr1ew�pz��\�ћ/��c\��3Q/�.���f�o0T�C��cω쩩�D|"��[geL����&�da��xaٍ�_:�15�
��6z5��d4}�++���:*��ª�X�'M�c�
�(�f��I'��Q(�6���hu~�S�:�l�S�gn>��nR��:�)����s�z�`����ƌ_�p���.
���|�o��U�X���+���g7]<vC��;��06�E��}�b��5��Blp I�'�&� ��i�N��7��P%��� ���F���>8�裏���)�;��k6�@�����x��(�J����.���"L1Bl�]8�S7R��yu����%!}0��7Ğމge��f��w��؃7�7�Ud�R���b{mg�"*���+ڛ�����m��b'_7E#?Հ�B�gF�q<򌝉P�#c������I����c7�~�n�՛k�xc�J�ĵ	�I[ ���u�Z�e���w�I*�%�e\�
��>*++J7f��`�=��JhG�Y�gcŚ��˃B�5Y�~t:Zc%�w;����J���WS�\Z���g���;3��ZN%[���A�pJ�z��
��9�Fa�����궲��d�LX�`_�a�Un����X'�qZB ѫaP�B�@(�:���7�R|��x�WSr�d$�-߉e,^:��$�P-��dˆ�X7]{/3��q^��j�B'H
�(ˡ8����U}�V��T��mTt�U>�lE�W-��Q�޴�j�.[�.���!�Q��E]W�[�U��E�u7���]Fmj0��attKgd�@��η޴��	�7u�Kt#��7�7H>��'E����I��d	0�4���}_D�8;n��Y�������p�৽B����u����*c����Q��o8i���%����\rSU���zm��f�N�Lba1���{w7'�<KT�hYP^ΥN���'�\X�7	�P5�����k���*xؒ���M]��\ۏ˾N#4��f���LG���oj�M�L�E�!T4X����1ڟ�Xe��	�����a��hSo���)�X�}m��+.k��Z7�+�F!2ʕB�?#�mM�V�"Ëq��lX�G��K&���ؒ
o;ق�'G`$C���vq1:��a*��T�	o�W� �o�#���揣%�p1^J�U�Ӝ�]��?�BP��8�Ek��O���gJ4��Q��vš�"���2��Q����nx�ͦxC=ٮ*�4'r�*5��Ek�f8N�>G%�#0�7�؇���d�1Bʹ�w�iq�8�2eF�	��Ӎ}T;�O�q=�9��O�_�����������(�8��$E�*n�-��U��G�1R�Ӡkp#
r��(!
Z�y׫���WmN@ȇ�z�i��	������܄
���u����S�՛:����������-5A�,�S����HC����v[��h]_�DS�f�R��#%)�ty���I�F~���+o�썈�r9���b�D�c�4�GFͪ�a�up�4U0I<
�2l�Ѭ<�yS-���.�fd�����pW;�Kՠ��*�ZS�
.���'6�#�oN��XBB�Q��3mU��$^~z��75*��^���B�S�]�-t�J��M���fc���,(g�\cf
i�M��׃��ea\��]tx9n>�f�~�?�7 N��]o�r�Z�f��Ch�}�U�ꢣ<c�n�bL�{�E��p�!�e�}���.�#��L���4S;,�`M^��F�l���#����(7
�@4�?��ft�=?9��jR-��8$��ki%�g#����S&\V%D{e����B��8�= Eo�ԯ�VJ.��y}厹#��jq�%�u��W1���yԗ^�kZ�4�J#HGc������8�qg�k�n9b-���2#>��a�B�,��Y��?�_f���N���`][�i�Z/��vQ`��T��˶`���D�Er�&��^F�Pyꓐ����e���YkQ!^��]a^weL��\�
^���Koi��f�&h��R�{5�X6�A�>����&�hѓQ��
=����E�p�QB�ܴK�P��B�ۺ�B!�:hV:G)d c���x�� �x�����ɀ}��a3kY`�*�A��V§Zb���1}��\:nV���N&�h�BCN�5_�ʼn��ti�0��#Ht�K�Y 9�j��Y����.���Eue�gZ�g^��$0���	hД�@Nʟ�U[?~*�h��f�D�j#�S�J�q�fA�U�"��n�q0�˱���p�6�4@q�~�J���Y�f��������bC�hU�FB�X4�(ɍ�UO	�3�^O�0����X�4�V7C%�_	��ʴ
h��yM���2�~����rZ�<{T��M���	���U���eG�[Eu#�X�k��%F��*j]h��[QP0$�*�Lk+"�(��9EG���`�xǛ�)8��8^�x',�4������aO'�������5�Mw���="�9�0D��m��q?F�{��!8r�<�'
Bu���2"t��IW�M��ܹ�L�M-����B�Om�S��b��Eg�S�8�/,�𨇰�Ѿ�
] ��u��Q��6xUqqb�F\J��	
�<r�A�e���8P��~O-�})�|�$4$�2
�[|���c�L���U֪��,?a��`�ƦK��K����C?e�8z�C�&`
g<�ih���t��r^O�PiFiL��d���(	a����o|-�P=�<ob.�	��5�iC�1"o���g�2���)���!�D0�A�K/E�	�,+��8����zL��ᙱ���c�#B})8iɣ��@s�eN��
�"ƀ7o8ׄ�c"�A�y�	2s�d��֔���XP�f��EN�8���U��7�`�-4℈ �|=��/o
:�\�̻n4fy��tE�Cq���*��	|����D�)�@}N���P�31Z7�	�]O�ۼ����h8Hi�:���IwRK����ё���:!�����4sk�I�����h�0s�|����&��Oi�+�6[#�"�!/[�]~����F�Ce)�@9�F�Fh�i4�F��h4�F��h4��/��@��TUUUUUUUUUUUUUUUUUUUUUUUUUUUU���@��ΰ�/|ߍ��,�IEND�B`�admin/images/upgrade/external-video.png000064400001042713151213254600014173 0ustar00�PNG


IHDRn���W�PLTEoty%4,@GE-6*���fkr:A5DPO���kvr���Ze`NWV.7*������mqsCWJ


��������߿�ź��-;>(9:���1?D$465CG���������01/#8GK��غ�����(!$7*1FC������-A>#�����Ư�����*,,>-������9NK���4KG������<IO���������������2D3������:RAt�|��Ԙ��}}���͇��m�w6J;������������?PP���½�Zlh@VF5<>yytuz������#$���.56agk$%#���+_yrnpvʷ�{��FRTZtm=DG���_onUhe���̽���������*,,f|r������AXR���;TNV`fE\LQd_���MW^5)\cgGZXz���ühkp������M^]��{etr��� /AMV=4���!@=(5 ���������HS[���Spk�dz���CKM�λNkgpw�Q[et~���dyt���zz���jr}IeckywYbn`hsu|����) emx���1k���{JaU KCW]_!F6VJuqg}vnC`_����Ծ�y�����?O4|�ugsgbi^ư�+M<���OVUbU8?%$84-QN3oi`XcVB@;r}nC@+,?NLDx=~��,aQh`U��m=XYN%B\>�F�~ng0[UONgM�`%�x[��u�RqY<gK�n.YqSU\D9N��v��Xӯ�^@'�Y/��a�:�qGlyX�ŕەMTi3b�_�tRNS$E(c�����lҹ���������
���BcIDATx�������`v�@�A�B�����^�w����u��q�4L�q���`0�a�kXQ�W8*,��ۡ*����b�FC�������v���"7�E�W4X�9oƺֽX:�M��9+:�^�<��:��?���>�nms�ߡ��b�b;��9<��t"%��HO L
��0�j=:R��Pz:�o���M�CI?��|8�Ψ����,��Ik�D_E�ܚ��oUy�k������N)x����#������閤�}��3��Df��2k���N�[Q���g����NTW<�Eբ�`Hi�3,�J����T����ZR�b�
�U��<��������T�o
!~8+�t��0�̦Iְ����۠|)�M0�(�E��{I
�G�8SLǔMG-�|
#���?��-G�.2�kfed�U>�k�8��7�n:��),���a�����"��(�Vq�=57)�+��121�q�.,��ʑ�Nv"gCޤR�������u
Bj��Y�]e+9ﲄ�&] �8���t��KM���'��"g��
1��rQ�	�t����;����;���CB�>���D��#�!_�ﱯn+�y
�S�z�H�|�#p:e���}���zyC6�:U��
*�l\b�A]�2ތʾE?$��m��V��0������q;�Q�t5�t��E�G��A`��H�v9^�k-��J��A"ET؝�>@s�p�Ґ��2V�k�u4�aZV�����j�BF(c����lx?�#��jӠC؃�U�Ӭθ��~��܏ă*�PAػ�`!���f��Ejv�F����mdD�+�$�B��?`��X%�d>lG���‚G�1����������@��)h~�
9�9�ē�	��=t���9+5�I/%`6}�]�y+�5�8���j]�;��7��a�$��3�¾�cv��B(����~R�h�	�|ܹw?����2�"z��{Y����f������-���
b����X���LE#�̺Y�j��iC#��fb�N�x`�u��W3K��"[����,v)_l��HO�k0C0$�>�a#P�&��
s#��!�˥�^��L�H���5�ONK��f�`gfʧ%n(��_"��
�dڅF���Fl�ň)�HA�86m;��4�H�	XBq��0�R2���FW��Bޢ���z�y�4J�E�w���%h�N��>�m�5�I�=;��LX�n\H�P`)�|�A�Y�Xw��HDQ4|'�m��(J��Ug��.����,	:Z ���YA��
Cn� �q����"P��ﲌ��c3�P�ES��4
<��(>C��Ҝ���
�����A��[Y�`��|��A�����^��0c	u=ݥ�*�]���s�s����������z��^q+�'�J�����dm{ye���n�'I����X�q��N�f�u����.��^Fa�x�I���w~�t���VUɶ�#C7�ʺ*��QY/O�m]�
�0 U_U�}���Ĵ>Q6�cU��IR
����X7������� �� hLc��=���b���	��bE�M!J~�����K�z�q�ɸ�J�o��aT��������w	u�BpV�roe�l�`�I�ނN��Geǧ�:��D]A�6�A�@<�e
u���ZՀx��	S����;��uc��o��b��y�kt����&se5:�`eƾ/��,��_ԙK��P�?�K�Ts�i��Fhv�oD]hU��x�DQbwC����hR�Ѕ�A(���J��IN�i�o\�&3��^�{���9WM�cH�ڴ���Ԧ��9+a����H�&��սW5W_l�{P��9����i�������ٹ���#��o8�ҥ���t#0[�=����;XN:NIEGs��\�:V�d���(t�0�7=��֍#����U���d��+VȲ�JK:J]A�$dI��fs����V(�e���@�$�R���M�1���1i8�@�+��y�̨���idp\,B`�K�qh�s������nc s�zT7��j߯�9!7W�����ʵ���ϝ���acgGv�	�\����\�;<�Cx8-�.-k18���	j�f��&y@gh3���BLHTӎh��N9	�.P96e&� :�6sVHgt�3Fv I�s��B��Q֌�J��Y�ac n��7d
 tJ���7X)k����AAc�����/o<�v���f��K�R�΄��>�rfwZ�a���;w�m�B�-���9��z�'�7;�&�&�F]?�V*/˔�[��ڵZ΃=�EY�L����)�H��&f��u�jEY]�ˈ�6�?E �u��Q�����_�����8Њ����
���u����B�6?,����<�}��3��W����.O�U02X�'zMm����a����N�#�6��<��)��YV�x��Ρ�(EM�>��'���L�f6��4�A��S�m0A�@�"C-��$'n0�l��A���Ri!��Yڀ2�!֟����P�Ęd
i�6���$,	h0��!}K����BuY���w����L,Q@p60�*u����F��řb�m���bQw�������ܰadž5�n�V-�<�L�Y�kvMآ�0
M�3���������R�zyvWg��_�:�=JV�p$EF�)n�7@(�z�͛N]��:�:�!x�?�n7cʐ���jڶ��b<|�j��RP̯�i����TO�-Q��:���\dp�G| ,=܈Vɳ<7�PK�����+�b_h��7�'�γ��_
�@�jW8r�a�S�i'Cpȍ#LDe&�B�A7)R�kU�8�<yL*?���v�3����f��E�np��}��h�ѝv��l��o��+ΐy�= 2���)r�ن��$k&�M2�]�
iC����T��`"fV�M
+�Hl��!��iH�
�&��?U�
}f�x�l�ڳ�-]���#�U�ݱ��5v�m{7�r]/p���E����p�]�|���U����%����Kx�_$ɲBP����%������p�Yo�Qΰ3|3�7u)%���3s�I;���CH�j�[�jU�Z‚���n��%�*	�a}��i/͉n%>8Z�:3j�5ws��ؓry�$T|�瞱�~�.��%��dc�^�'���6��}
�1٣2�d@�@
Oݡ2�!��[2׳�T�BG
,i|������ej�S���2_�SA�ɾ5l��b��6c2���{��i���8�>�M�d�$l�������HCW)LbmH���L)�5���9���PiTfĒ������jh���
}AU.��1�a����v^u\׵'�p�G�kFQ`zAu{���]��*���WG�Pr�e0IRN��bAʃka[��πF��)#l�
��ށ�A%0����)��	��`����Έ���#���m�4��,�9ΎGr`p^lĒjX�sE�3�^׉G���W��/�� !�s��Ǽa�j�l�O��'Ƅ.��.7?��&F��647$� �'�8 (Dlb�a��7�P{�Q5�Yc����*�O����A �6sjL��ɗH�9���X�
�~��F�p���++��9��$
!M�m�iD��dy�����U��uχ�܌7���nP
&.T@��+�f�"��]Ӭ؛�֬��ReOo�5]״z�S��-��]'<��`nL<�9��n�{��+X��|"��!s�]����˂"5p�J0lT���q���֦�����K�����,Y�)�Z������Q��-�b<Y��[�b�p8��b)��3W�����A��o��y�Ë��Jx\r�J�e����i����;��
��-17��Z"�0c��Hƚ�-?�A|��X1I��
��]��8P�6��C��B�&ɞ��q8J�?ݮd�� �7��l2جǁ$�6xP�z�,4mhc�Y��P_�
X�T*�G��4�&��潊^9R9���tF+���Z�j/-k�*p���
*�[�}W�Bݙź3GqܒHOW[��.����7#�g�b�}�H[��Z��hlAc�t�d�6i"���5$� cyBƒW��[g�U�8�7��o��
������;sQ�rQ���C��p�n�:y�d2]t�W�r
�J
�ps:�/�m�r6�
�{#�ܦ�U�]�|��z���2�@���0�s�����$�s'v�
�7~�6����sǟ��Q�H��5�R�:xw�3�����޹�K�n�ۧ��L��W룠��Q���vHPdc�XUf*C��[ȣ[~+⨰���o0ؾ|'�ȑ���ߙ.VőC�.�
F�������#R�6���r�JSxI'ȓ�K��fƶf�>ڗ�FR%����ݡ�<����H	�����S7Iy��6�T4�`eC�,193�����[[�N�Шg�J��Á��p�����B�^G>�*�4����\+o1܌��;�O]�g����	�����������}��0R!L*��������Q�(�'*�"(V)�A�|��V8(������7{�Z�p�+5TN�v�����
��;��a&��� [<]���}��Q7�lШ�s��|�w;JX���~��4��0f���ej����ԏ�����F���FU��%y�O
�1b0�L
,RW�1�F�ɼ1	M�J�N�aW���8Iy#7Q�,.(F�4$����Ѣ����%��k�(w$o�|�~i���m"��]��$�(���D���H�4����7,�"ؼxt�s�M[%S�|�r���8�༫�R�nV��d�G�{�x�S}���;�.P��� ln�#Ln9��Gn����甘�����S}�s�1�ImV�,HC��s$tzm �<�z�^��Iasz%׆�!�R�J�k��
~e"B\&'�9{�|!���&鍡E�I��/v�h���A?�g�k�J�I��>����Fz�ͯl0�^e����y���'Zuז�#��N�}�tM"��I'�ɣ��T��$��![��1��Y���@���*.�n��b8�
y8�/�m��>^�\eC������E�#�a׃��h¨I,"���V,dXx��F��Ѡ�	"'^�bĉԥd��B)]���F��O�U�tJi�ԍ�¹a��-��w|���؟���B�X���H����M���t�MN��>K}�pS���
S��~�����K׀ �P����^�m�xچ��f��_��5��!˕7�`��UXˎf����;wcu4i��lִ���p����]�sz�7m
�}���J�Ei���O�mǒ�GI�T]	�7�P�F<62Ҩ��4pDV��xQ�Ѳ&J��k�	S�8k��
8�kTU8�ob�I`&y��X��?��o�!j"�cMM�%�&.r�Q1֡1t�`O��28�4k��CV�hV6�8�B)�&���y��o[��6Е�8kk��fH�0qs��L�����=��#��A5
�cw<�b7���Mp��o�~U�ۣ?��s$|Q���9��/�9��~�W.���� ��M
���j8���{0Qa����@L�6	����EGӏ��¨�gu$#8`jwu��Vkr�~#0�t�ZIY6N��A�h�[G���'��^��V�w��3��Y�g%bF7|t/H�!V�i�b���h>N�S�k��ᓡ���|"�2p�E�j.�勫2e\��Wz���9L"'�V�ZQ�=�
�pi��U����Ga�7I�$���av(��ktG��1B��I�qL�R�a���,��6�a��m�M��8�/�"O��h����~�Q��[PqB�i�
���So�(M}������[&�w��wO����>����0�ln�^���z�\���SMiܠm��7���3�J64��?p���\����R��syo���o���8�7
�af�?Z]����
��F�43�zG�3s<�_��it'�d>kީ˵c�]�o6���0C�&�i�HZڐ��|]R␸���� 
�4i�G�32��
.r���l�
��'A�
��!�n�$qh��nM=�I5�t�Uڰ��Ŋ)�t似:�%NtD×�P�{��P�y¡�b��,�C�D�
�6�O��3G6|�/h`�y�ű��?���ot:١���T�����,�T�N���7�.���'W�ѝ0���O��q��	pCyJ�����䖗�=�쩧y�uŽ�7ed���,��ˈ����?����a�ل}
Դ)���R�!f!oR�����<�JR�M�^�h0��F�t�K'�F;�'&�K=�G*J1��o��Z+4:���6���ܶmן_Ӽ�0Affx��o����{=U[�k��H�A��St��W��p q�A&o�oh�%n�â�1`�S"#)����)�KU�)n9�<F�&��3�K����F&���5p"��3}�\��8k�
����-k8�9�6&������}������ssh�E��R�hm#O݄��_}��[�68�gu��l�ޮ�r���?�Z�R^f:���[.�����t>uРL&c�p�����7O.�"�z���쁇�f���}g�~z��.) c-�V����6%O�k_���u�F��"y�G]�����6n����s<�d*'co��o��M۴Gu�n`����M7[�FB�rCܙ���ܾO�;�G��}7m���v�:�\��d��o�|蝆�P7�S]p>�[.n�"��\CDM����)&�Xot�y���%s����r�
�b�$��!dž�q[�b�M8���IW.c-a��;4Ѣ5N�5ʗ����00��y.'z�/����{�5t�F3�
�x,����`
�!��'~��5o�;[V��.-�A@�V�����-����K�
������w\tE�t�����~��Q/��/��^:�ܾ��5����
t[>���ES[_/��ؤ��276��N]�'��f�&^E�n�F�Z�� �����ခ+��W�
F��9�Pl4��β�7�f���
SS.2dž���XC��a�b߾��}�&��L{^���}�}N:j���Iu#��E�(m���3�"�p}�t=�J~
M�n�D��'�!Q��G;nh�ġX�_Z�H����:�yM���w˭*&� ��f�qTDi���]����!Y�L5��ov��!�p�M�
�
]D�K%p�4xt)p�\
�`���4M�m(�����*xgk��5N	��lku#_�7,<�'����&T|���	�����;��f�|o+wp;U�ğL7��y`�kz���g^r>�kj��ޘI�/�;�G`mi���s�&4�o��}U{��xb�Fy��#w���=�ѵp�$��R��Q/�V�Y�tnW�i�t�������}�;�I�Guoni�梙a��w�~bO&}�a'�o��Y��+�ʋ�H�FE
 �5	9�j�C��\ g���U�S��ѩ
��'ng^h��Q�ep�⦀CB<%����5	8ˑc`h�D2�4eq0I愫�UH�9b�.��<��;�2��D;ܱab���b)%nd u¥0.m���	�a�I��X�����P↟(�f���i����Z]]E�&%.��4p�=^��!b�Ɠ�w�ܟ_=�~)�G������Fqe�Wl��һ�WA����]�ʣ��Y+�nʩ�ȿs�����L��577��j5�a�βǤ~���r=:4�����8U,�=�u1}2�h�q}�uK=�z'-D�����r�3���=/Lm��{�E�s0̜��[��S8��Hq����G��M�:��x�;�z�҇���H�n��H��j��1Õa/�\��2����I��
R8L�Ȑ��HC#x{KT�$z0��7�5x$��q����Re�}Ü�ˍ�I�Dꆹ~���'_�wi�	5��m�k�f�b�F�nxo&`��y�s��M[���j��N��z�glֆ�B6�߰��W���Q0��~P<�f�7���h�4ڹ���z<��n��_�� �Q�>�#���� ���:B."NQ$�+��
�L�J�G�ŝ��o?ޙԍ�����X���� ߘ3P�D(�x?EX~w�x�z�>��;m�oҡ��L�|~mm�f?�f7XÛ�j�{���a?��k�G��D���E�� ZB�.i.U��~�3�T�2l�F��,����*
M}S�Y��o�%H�^R�a�{-p�N&��F�͘�k�(�$-I'��?�8ɚ6�82���H
DM8q�<�n��������j¹�n���i6Z��^}㦷��F������B5(9Vzgգ���4G��إ~>u/L�}��k�i�G�v
�X�8���
�^�P�f�88��q+��?>�,���H �O�FUri@Q�M��k��z1E��?��b�n�����f~>�t�*i��13/U
Х��M3B��:���[��������[w�O1\�nc���[���}�x�D�}|p�n��j�Ѭȣ���(S�歚�5�x��f#Z�2��Q%)�#V`�C�0������D�(�d�\��I�$
�h֨�
I������L���W\p9�+�%��`*{#h#��]�����
&��.�3p�f�l0°IDR�X
�7�?u�N��^������Z���h�)��.rƮ_B������]�恇k
ڸF��V��*�6r{��@�>�P�����$*v3��xCx��?���y�"
k/�Na%�7��S|�7���k:�S��`�3�p�I$ޞ>�ȴ���3��eӰ-w�\��8�2~db��M��Ni�u%}��ظ?(���s�u�ve�s8%��wz���Ht�N���Q�RpN���F�'.���®��7Z�������"��b�t@U:��94�I��ZU�Wy�Q�����s"u�<�G�����o��H�Hq��
'&\��m.�Q�C.�R�&)n�aw�Ÿ6�?����m���޺�z}�T>Ҝ�ѻ0��Q�l6�Cǵ���Д	]�k�7�t���^��w�&z����VR�6Һ)bLy���Ѵ�Վy��:���5�9	�'X���7I��}��nj���z{��nv����nLJ�e{�cœIӶU�9�7�9��#�T:o]�z�>�w���4�6�_�b���Q��n�e�3�;���O�E��jƤrP<H�ԑ�6���+�p`۴N�c~��M��*D�`����6�\a㬁Ǭ*�*�R�8��&�G,�\j.��pDU%�����V�c�̱)��fQ�x_��no�U�FwO�B8`�Twh<촍��a��x
����r��p�����3i��͑[��oλ���J}z��]��^�,��+�^��Ys��o���
���z��>{l��נ��_�H�Og����m�s�7� U\hl���*?�7�J�9T�D�)a8
�M���5��6�++PJ���4�P��?�M��.�
�]���f��oϽ cL�,����ڣ�?D�r���(�Ϭ�+]�~{�Zg�$&…����R1�GDBi�0�,��E���J��)���L����[f��!�M�8�	𰔱�7J�	�8rZe��щcJq�О}�d��$����m“g!x�#�X����”xQ��1]p%o��av��-5��b����H��=�t�������z���惼�C�^������f���wK�M0
7>��h��4ԛzA�EGi�"�w�������΄��ܬ�N�վ���77�`΁M�"��50�X�G�i�Z)�z������sG���>~�H8�ф�Yt�U�FSe>���t�5Cf�q뾹�g
��>�K��Y�0��ʻ3#�'�C�G��ty1�Q2��bI�aC��&C�����F�lL�5�$�6�[�Z
%q�JC[��q8�7p����6���F<o,kUZ�(�d��R:[L��W�L�*u#�ƶ�F�R�5'��5�H&؈~)����A��)l@�G�&��Q���~z���5W�s�#�s�9#DZ\5��xh\�����
�dz�_(�+#5������h:�)_S�)5���c�a^Z�/E�^��N�q�����`��m�3X*xe�v�OR;�p�}�x�CE��fھm.�$xMV3��<�l�'�5t�/䕼I'���U�Fn�;x���YS�&��8pY��Q�fr԰�������Ȕ������t�S�7D�J�-%��YZ脉#~��"�#d�����|B�F'��={�h`�%iIŚ�E�;K8p��yCF{lc���QJ���t�y�k���Et��~Yjbp|I��|�[�R�Pr�W_4(���h���h3D
g�}|��@���Q�h�9�	"�����ӗ���fy��`D��A�TR�u���~�2{#�M���ė1&\�6�3{1�LϚ#S���D$��،DA7JaD���Y��`�
؅��������p�	8��N�Т��9<�2t%|y$EL�+�v���#NU���%�C{[�8�v���q\�b��S�Xa�T���BN*_������L"u�M2��&��c"�w"v�F���/�74�"iC�F�&�R?����G��望�Y�d�ՂE/>��Á�#-<v,t��޸TXm���hJ��ߣ	�x>�C�
�\@O�Ā1xJr6e��!OÈ�wgq���5&`����nV�žWzT�O����;��;�U�r}���<���wj1���!ds\�8��bͻ:$#��EO�K�2Q�ҩa��F0F�1D�c���%iX���-�q�}X�$��C���PH�I�zK������Č$xB�6���vte<qG�I��/Sɬ1\l�	�p��Op���pen�ຆI��I��GQL��	\����.6*��p؋w�����N����L���ЧԌ�w�lywh�/�����7�|	b`h�{#���X�Hk%�˭k�f����JD��K��JE��B�6��٥pCW6L#��J�NeH��^���f���
eq��&��%�p�l#y���G�v��?	l�o���:�V�Ra�$��%�P��F��6�b�T�'o�^��o���d�
�ɶN0a䨉�F)�!p�Ā�-#� �Ƴ�x-���8
���0��q�6�lrHT�`0�D��P9��.%r�U����P8��R��&���/R7wm�F�@���p�>�p���s/|�V�sM�0kX۔3���7�>����XL���t�x�^�1b���q�o��UN�
�����b��Q�)��6aW��,��67�95�3���[�qf.���7w���R����y�<�l>�ԍ�}G�z���c�Yi�T܂�P�y��Ŭ��1%���|�2�M�;ԍ>q�/Iɤq��	�&!n��FT�>:����л�܈8Q#g9k��ߑSe7��@���r^�29|`NF�<}��
Ӎ�p�q�7P7��4���"G��
8������!
;��ߡߧ��4�?����
W>@o�[CEȱ��z���ޠ��Y+X}��6�A���2)s����ytM/���|�^h��[<�Z���"��\���7O�r"��,�6ay�N����Z�L1���s��=��F�skwA�8�ن0	
�#�e��'fB��Y
x+I���}+op��%
S�nW���†�R*O�
��Dh�P�h�H�đ�e
�&����v��)_L��@NZz��~��cCL:{̜c�Ћ=6D�p�
����x��T�*��?�]��`�FES2�ҍ�RߨM����f����EC1�Rus��ku��͋g���O�Կ���jg@
���@c��p������pPP�r,B
�Z^w	4�7�`��g_}�kj�t>�]C�Eg%E�&��>���
	^6Q_x.�"1��LJ�͹6��ZE���4;�Xj�w_{�׊���YT�-�ѷr����$q���ߒ�h6,[��3*�⛥�9�+84b!
�F��&#�dG��c0D�v�9c�4METѬ1��=b���J�D,�ys\����؉G�����O����U
��3��y�I��s�X����]��`�m�(rn�P����p�$�b(�m�����3x�+�a5C���c�(��Yw��q��sK�7�3��T�|z����[��W���b�l�s� >BT���"���R����8��E���2�"\)�M�
J�����HN�Tе_Z-�N����,�=V.�X5UT2G=_d��{��*�G����8ᔰ�7�ki�ˀ5l2a֨Ʋ%@���hy�X�h�B7Qm��4�H
EzND�h�C���lB�^^��BGW��J[�q�-����V����O�l����Z���
��a���)IS����'�F�;�4i{�y���y�����
nɺf�6V�A$��7�j��f�E����]�g�p㍦�kz�-Wo����e�xPA��
p�;��3��>�Xk;�G��lI��h��ݫw��&nP�ּ٣;�ߨ�5/:9]5����h�%��_� �!o��#�j��j�|�����)����N;�h�В0

A�Lr���'�oh�{k���&o����Q�i��xs&�D�����𹚀N����']%_�P���T�<�ıb���.;�2���Uȹ�E�ё����k�80!n�K=����Vg�ykh��~��KkN~5?�|qx�ޒ��M����x�}o��Q�B���@��WO66�����,0���$�L�p�!|r�e~Ħ(�MJ�wB֤hU�t|q��B8����%oHn��N��1�7~�~`f���h�EdN�8��@Ѥ��j�ܮ���?D�A�.�.w�e
9��x��L��f�y�n*�"��6�rD�D'	,Z��hҼQ�I"'}��'S:gy\~���p伱~Mp>eT�8ް�I#vb���L�`#U��(��ٌq�#���<Ě;��a�$�T7R���6܅�7���_̝�oO��!^�*)��qlh��%�\��[�(W �@l#�)�`�j[V�T�_�F�rY]R$�.� �!P�BH !����v�! ���̮�5���3������Vr&j�WF�tw�
�IDp�ƴ�d.=kF�z�Lr78��a�foė�$���7�	o
e��Y�:V�����x��@If��iu�u����!DN���Ն[�1y�����>�Q�� Z<�%�1)�d���Jv�ߓ[:ON�$a�~���	�<6�华c��Iq��sj��t��Q�<񤁀Ƌ�$Z<8V	W沉���L �'A�zq\��WJ��g��
�_	/�I晴Ӎɉ/dK��j�MQa�*�J�L_8��4�ى�7�B�]�ÉC��a=*q���aNJX���;Xq��?��Sհ۬Q��Wp61�a�CǏ� P�A.��td�}xN� D��x�49�0�Z��w�����������)F�mK+��S�'sn�Q�"�Q᠓5�a(��_�Y�����Z���b������M�S}�3�b�G6e��L��	��c�
'���]ɕ�̃���
.s�.�A�چ�0s�
'��I]c�0(���%��Yܤ�3��
�d0��M��q�挼a�3<ӼA��1�O�<��x.���I	��rh�gʓ�>�Sҝ"}t;ig�R�I�B��`�?��1�yi����
��؋
���yO"#���|��{���s�{�o�ݭ����������ujiu���P�P�S�ECl��{����03��v�U���VZ!�7��[��ggW��'��]Ǒ|K<І��-N�n��1.�ƍ��྇G�0Ó��ő��ڢ�p�#�ob����(�����o��7��%�ɨ�,��}#��d�	w2۽D�����&uY��Ď&�p�/|Y`s���ٌw��n�K�X��i��E�����ڜR7�?RX��`��&.Uz�8�oS>ԜLc�É�$���1&�p�v��=���6��k��6�Y#h4iėz�R6>�1�7|��ox��'~�w��I�W��*gm����y�甂�w~�R�P�������磖/�~��>��.����Gq��mU�hԻ�����u�Fke��ξ�\���tqb�N%��xz��`9�c=�!u�`�
.8d��pt��3!��C�Fe�C�B���~�S��
�k�D�n�*�a�B�����	��EuYф7ƌ[�����LI��4ad���J��
�3yC����AΡ[�8�e�"����dDԍ0ǼX\)���j���MC��IL��:.�8��)��n&W�&��pa
m�a��^T��5�:ݗ�y	lT
'�nޤ�5�F���>{����(���c���_��?���7"H����Ժ�W�w�[8}
���|�}j��x�"��h�Nj���o_����pCo�`v��3���6�7o�ܜw_���yJ�s/��ֹ��xW�t�Y&L��mpc�Ť
H�;p�q�S�8�/��nț#*�W���c��Y`���6w�9��؅'�ĭ1l��I���8ii�H�[M�� ldy�󌍗�t8�F�&����e���LA�e�;L/W2��秝)�8�C�y�/���E�,�W��uiЁ�y�y#��4�9��Q�T-Zj4�2GÑ�id�����#x�f_�#duc����64�
y�h�P}�I��
.K�?~����;/y���jI�f2����+�V!G�DAy�����B��F�
1��U�����c�6�8���aT��e��/�;e����f���6_�W.\�����yZ��B��3/.bE���c2Ryʜ��*E5S,W�V��G*n�0�Qigj�佩�'�k������H�q��™8�?�1�N8���ל���6�$R���Rm̞���d�S�T�ظRڏ��qA�4i�E��
�q6'�����1���1Fl]�e8g+��o�;|gfs�ĐE��4�}[����ӹp8Vԁ���
�H݅=���m�0ȡe#�im?J�o��O�{髿��7?��mWK��7�\w�U뻝�2����=l��z��\߸u������I�#�Q��Y*�V1P5�~?�>vin,����٫��1���s�KK/���wCܨ2M
�Y�xV�1c���&�:)��H���F���CڠD��!q`GD�<,�A��^a����#,�ܨI�9w�w�{?6J�6�1z����)���48������ۇ�n"q��*�`)?J�ฤ�8Y��Yu}	p���j,R$z,�-]Zl�
�n�ČT�7vm��6��������v��1�i\)c')�3���g� ���k�
�A#lL
%����M�s���佼(l��QFl\�n����_�����iT����Z-�*�
S�J�t劏�oe�u��q��׭W���n�c�_%�~Q�0l3��XĐ;�p6���#(��ݦ�����ʇΝ=;���/�\�}�e��#V�p���!�R�1a?䂼ѻ6Yi�v��*7�'��B;Je�u�њ�ַ������.�V��!iM"�c�
��=2b澖��ܜ�Q�
��SJ��n�b�=Q��%��7:	m#���a�@y7�.g
F8	`d�����b�
/ƈ�g��r���n��%����J�kdeop2�F�#�p,\]1:&݉"�{��
��P*�0�ݤq�D
�,j�w�x�4����|��y�[��{>��_��.�\�Z*Qݜ>]�xWF� �ț���ccs�ʧ��N�°2uu~*)��!p�p��j�^�Ri���|��ͥ��>k�<�(��S���1c�T�pFlj����6��Ś;e��Y J��x���:R�7_J��=F�����\.���o**7��$0R�.S椃�n-�|E������4��3��7Z�`���i}ĘGsB��[8LG�Zb4�nH�l�-��S˲'��$��E�`@�LY�HacJ=Z��t�~���'�Ws�Xqj��h|�@s���d"8�̓��i])�e8ވ�я0��1���
�(%l���w|�?��?}����^|z�Z�;�j8K��m�3�~č���~)��y���y%Z͵?��+?}�l��CZ��A�Y�<
��z3hv��o�,���Y�,�t�3MO�h��@)	S�gh�f�(hh��)����\��e~��ʛ��m�j�4n��S�p���T��l-H��=�]��ǖ���89��̂�4�tL��0F�sM�&��C��"��/4����IoJ��Zﻤ�1Y4cRTn�0<<Lۈ	mD�X� ^̖�L��:&t���|,t�a�ꤌ"o����nj�ɢsf)�)�DwBG�
���8�7r��
�_	3�h��O�������7
9�g���1n�K���?��ۿ��K?�֟���`�6����F���s
q�	<lXzq)xݧ^�����]@�!�tz�Dۊ"��A0꣡<Wk��W��a3�����ٳ��qB(��K�X`�Թg�o�mWXucJ�hX��M�ڮ���R*����mDqd�h�•�1U~�x��>�<�"�x;6�P�wH6I=J��
=������8P�.L�xƦ��-qt`c�� G���!exqoJ�c�L%Kn��:Ys�7EKp�MF��6�x"��[���s8�.5%�h�h}c����/�YL��#�\�1c�F�hʠ��`�#.�V1��OԍxR
+��r|33�{�
��f.��՚7
9)i����s'�o��;���k�y���]�24�h&�F���t�J���U�/z��6FݩӵRF�Dz>�Aȃ(�/�}飏�u���0�%/
î�m6�[��w__n&��#���&�ʘ��uIś���9��	�\Q�n��5$���k�6V���b�;�:S��o����U�:X��q�Q0��I!�<L�D��B�4l�4���~�p%��m:1�8�s�4udO�Do��S
6�H�|
GE��lj���ql���z�~ R'yp1�E��1�WZ�6��Xw�j�qc{���^�I-#�Q��C��
��݁����qN'�x�ɪL
8s��:�O���@��O��xq�ړ��1ء�1�AS��~÷����'�_\|zk���̡rS�a�M��� ����p�m>�|�c�K��17H!�c�y�VOE���
���߄+U��z�k6�����/�1ӟ��Fq�*�H)�"VlX¨;�
�}�9�[w��u�y�U������͑IL�8N�<��=ɿ�x5��7���\֡;Q/�%�Ó�ɔ��'#�h�����p&�1�:C���n�O�f*�F_O�?�J?�j0H�����/eГ'����q+�n)�F�EBgn|��8G+pR2Sb������Oe.�F7Ӎ��sť�H=�YC�H�ح[Ym�Ċi�|����ڜ'����k�op��1
�jm�}��/�E���o����W����b��7
6t�<�x����
^��oox��+5�(��G#����R挰O�Ц6�L����
��ջ7V�r�Ox��}��N�7����b�|4jԪ\kܺ�/��8E�Z.ҏ�̑2�#s��Cx1��qӾ̗�`��A�ED˛�6��hQbWr=�D�����T@�%zJ�37:C%��8�*!p�]*n�D�X�&p�	�%��Q�I�S�a#K�6�F(f��׊�mc j�Ua1�M:pÁ��g��85���81��Lg1�Syc�(6&��9cY�Qg�i�8O�[fh�8�%g��K��q���]�l}T6l��}�/����z�n���F��^*(�Ԧ
�r�^��&Ja�(ʕ�cPj�1��_�J�p� 
���kn:�(�t�f�lz��A�������}��'�vo�QJ���>�LY�
�<�]�jo&��J�|�\[�#�o�U�8�/#rlqs�b7�
�
qS+����'�/�\�����ӽ]�V�,@���m��E�ؤ�[Q6���OUk���n�)���b����m��br�Vz�7R���p�c�B��̑X�L�.�a3&�������W�������•*����ї�F�ƪ�e� �F@C�c��s�p�0Zh6�f�rl��9�*��WÌ�y��N$%�ʾ��۟��o��zmJm�&s�H�*��njD^|�;�'����ȇ��B��Gx�}Ⴢ:��#���M��AN�)ߺ�t�62S�M^A�C���fJC�m`�C쿤/����E�yS���1�Q;SG���aFeYg�1�ַzW��uba��r���k�7��3�K��?���O�PE`#�Z�Q���4�l3���N��#q�Y#޸#�E���|=�:�|�É�K&��*qt6�m$j!�AW͘��Nޠ���q���!l2�5�B�i8�޼n\�!��1�Q3~�&RlM�9i�P�
GZ*[N�87�G*�i�6��~���ժ�5�
�57ʗB�_�ĉ��;P2�55P3���9��+Tp��p܃�+U����y���bp��i���n��ޙ��/n�����R!�\��<Ԅ.0&`v[{c����t�qS�:
��9�����k��^��X�g��}$����D,U�#P9$$�`�d��r㾀y�!	A;/Q8Ʉ�.���I��'&����.�"�!b0laD�'��6.G.�ci֙�<8�9�
G�7�N�l�8Y�P�J���fZtu9R�$�1C9ڑ����b�n2Y��f��o�Bw��'%o$�%Q�����8��3!�o��y�����\{Ƿ���Vk�B	��T�ÝJ��qS@xx���GNo��f�
�aH�h�c`�\қ�1�2&;͐OѠk<��5o5��WW.���
�\��
4��y)���������|#o�*�X��A=2>��9J/cx/��c֞7U�Wk�{����ɭa�U�L����,[R58���91<�MOg�H�`��D�Ñ� ������y������ڗ�8u×��,sϞ���<�=}ލ�
6`
-���IyS"oD��%M#F�8��n�yNH�Y��$F�K~j�����ͩ_��F�3��)�F��M��X60(m��?~���W�3���j*RS���Q��)ܠ~��f������޲ $zp�����O���:q'�>�Q��@� E�T:M��j6[ϫ�nݸ����'��Rz��@3��y�ٷ�s|\�,ʟ-�\��/#��h�Y9̏���7G6��F����4��ǽ�V�sǷv���q�p�2�'7sH�F�_!M:P��tyΨ���K���->�̯��Fڟb'oԿ����Nְ�Dx�����hQw�R�Q���as��@�M�90fbؓfcŮ�/c�2�tOU���)rW�cm1�N���;��Y�ʛ'*�� �Bftk"n!�I�ӵ=7䍓7����o����o��W?c7W�AܴZ����W*��砦8��f�
�m�
�^T�wLU�
o!��K=��ţ`pom9E^�S��U@�'���n�6۞�(��>��y��(i�5�c���>�������T��~P�z�F2�l3>�珜�y��7��;~���R����/�_����a����Ȟ|8D�[�;��%H�x����F�~���]5����I��6[�_�ޗ�I��$m`�4 ��]7�L�"+I��2�S݌�
m�\�m�l	ؘ€t_H#��1�����8�p���n\,'�L9q����A�
ĎQ.-n��fNg�R���f����7�8����[���j��C&���1�t�dV�)o*��t��Sj�WF�n1��~�[)���7�3����^�E���U�U������͕�g����|.0̞xiT���c�V���x�xTyE��QT�*B��u4Dz�w0��P��aGiK8�)D�<������s���x���1�sB�f���92�2a�籔9Ë���x"
�aWt�=V\pĠRT�t�����`�l��8[p{��3%�A��L�V7��+]p,�i#�ިcol��;%M�7��Se5
���D����%@��N����7��t�YB�)K{M)OL�L�/�#���O)��q�����o�߂�����
�R u��U%�e�����v�r�A�!	ޭV���	�)�{J�|���@�RS|�`8ڭ��oww�ܹs8P�Ȍ��]/�sխ� �Z����/IE���n��o�=f|(�9ʐDw����Q�F��#��v/���s��vqz�C;[k��'{�["n�&�a�����`H6�3m�`x#b�J�3�^�T0���?	];UZ�7Rt�fNBw�FdN[j%zf!M;	_Ҭ1�L��̉7��*T�#c���팫��q�A�34�Z�H���;��֙K��8�9��������!!���~�(�I�XOV�nۂa��S�G��a#lp�����T��tM��*��lJ�IUo��T���R���������"��q��
}�*qkU��N�Ţ�al��o�p�`�J�ۅ75ψ/q#�i�q�o�Z�ƥ֍�
&O0�M��h6O�ϖ/�]ԇ37hjkw7GF�HQ1q�ؓ[��T�7G'?Z������V���Pm�Y��߅�"�]˘.�!i�*��|�&	m��F�X�h�����
k��I-�bi�Q/�ږf�i;��\�c0�~����.7��0��hwJi���I�l�X�8vX4�dĘ��jčB�ar
�9TB�BgJ!GCG��Ǖ�,t�Miڜ���q���9Nݼ�ʘM	1\��7�Jn��i*�Z)خ�`wX�o�׷���b(
g�cr��:7�(VipH�*'d>���y����Ϝ/�/0�M` ��c�ܨ�����V��'mhyw0z���
�S7��T��d�M�[���Q�.G;Ss(�m�Wv������‰�Qmtp�I��(��2���4m�@�p�U�'���ݥ��'�29�6Q���6�A)�p؂�������e��䍈���ɺV�7i�J�T�,2=�	C2K5���+�$%�͊s�z?v�GTMb�B?\�
���'՘*�!lh��Ҁ�� G�!�
gN�'�B�m��d�#o�8*�c#7��U�ؠ{]l��0r��MZޜ��<
G���Q`
�G>`�G~�3��#��0�aC�����#a78�.U`�J�n���,�*��"�K��@aIp�yW�6ۗp�!eXXL�*j����<���2���w[������6vs4��y���*>�	�iks�^��7�'��;��p-!o�+�I������9\՘	�1�3�I��Ka��))�nה
�I鯂���S2[��sּ1�L�����)�M5O�#��ċ9�mÎ�?�pF��Q@�O�;%M�cC:ل��Tғ��k�+n*8���	�ؑZ
�
���lz�9Y�36�Co�~�Q�8��Ю�M�U�U@:Sj�j�u}�"3�PY_�|Ք�����
 M'b���b0��/�N���]j—��]��o�'xD���|����2���W/_���w���8ʯ�O��H����
�I�$b�B��5<�q��Q��V7�$n`|A7���r�������Iݜ�l��4�`Fw�k5q�`f�Ka̘��5F�י8SOd{G7���"GyOP8F�l�r
G�D�h3����g)1F�ưF�p�t�u~IuC�huCS1q�]�ِ�ԡ@f�Z��1'���,��,N�)��Y��&�Ӱ6�pt[Q#��eԍ�8Z�d���y�74�:i��o�4U&��p��9��*�
þ�	%N��ԇC�^�w����/C� F�X�;"ȈÅ��&M�T~�i��a"i2�*Ԫe�f���X>&�1��2?t��ǯ~���[F�pgU��.Ëjn��P�����+1"KUk�u^
��G����uܨ�uw���A0�\��fg�?����)�ȕ��<��;�y�d���.v<�H���M���xS6zch#چF��N��`Ùƕ����}�-��#�[V�H�FJo��F�F���3�����$P#
G�C��KB�2I�_vW��
�������s��ӡb��?JL��i�]��0�3[<���$��iA�tz� A��#�Sm��Ab� �(M�W)�r^��%C��G�S����xP����j��8Nm�\�����N�@�0fSn�&�8i��23��MrE}�f�Xc0���dEN9o�-����*��hy�F�n����df�[Ȅ'%^;����׶��
2�ZX���@D`s���z�JrO�9(�6�ܱ+�tx	w��|
S��&ypkl�4:^�'J�9�=�<ycp#�R*nP#�F���0��`��ԍ
ݠܚx���b�-�	WJOz^�h�#�qAc�����83[H5�5��hs�5�����p+Q4,0h K��&+
�4p>����y3�pA��؍Jj#>	��D���f��6���3G!�-�2!h�À�8��^��p���m��A��w��v�Ka�U�TDB�7|�Թ_�r��sn|����v��h�T7n4�6�U�ʺM�!+�[�l�M��λ9R��x麛�{;�����^��r"�G;�c�R9����]�R�.�#/�q<y����4a6Y�8*1]e�T��P̤��+�Ĕ�lțd��b����ܣ�/[�ت��‘���i��3�"7Č�(#�q����.�R��vc5��1n�U8�S��H�g���hj�`3�;��Yi��W�D��
?l�3���uĥ"m�-o����*������8�������� �b��;�����
�PU��eH�(���p�Q�����;��F؛����Q����&fϞ�Eٞ�Eq�6d�/��LM�f�[��
���Q.�Z���v�=A5�ֆ	rnz������V�����o�
7����+��J��0��d]�Lu�̉�녦�-t��2��<0���TgK'�{4o$��ic+���Oԍ�ō1��Ͽ�
�Mz�7O��J�5��l�f�)K�����ZV�pL��]'�qR��,p�54�	ȃ,�n��ݬ;Ŗ7�&1c�.QpAd1����
�k�EU'����:7%�f����1 �j☬��^o8�בh
|�wҕe*蕎v�(�yȄ������~�J�l.u�f�
4�R��λr&���ZYnڹ�\�Zm`�w��bb#o���[�ڍ6��/'6�3`���BzNT?�H�h�H솛�v��p����i���|$s6��E���&�
���< l�M����r��1�Y��-c3l�}�]BŒ��|�S6�A�"4tg�QWƭ��ԛl�F�s��LΜ�R�7i7��fI��h^�����}�����Gp4q�1����6�fJGX���p?q����&7��C~R�ٱy폿�2l�A�M��&���O�:͛8�f�1�
�z�,�P<�TU�C��~1+m"�q��e�#\����� �f�yn�X�}n~�[q!* C�������뗪��_n6�8�����E7�=[{��w_���Waat�&�""��ۀ��7`��α�v�MF���$�,ED�w��:L��4R�cy&�9Å^)G	&>�����.t�f����q�F�����I����9��l�\0�(��$Q#��`�Ǻ?fl\*SwCK��Aԍ�p���\��g�A����v��6�zT�1s�� 7�)����Q�s�e/�x�Z�.&3ŕ�ՒM��
�#,�	oēR�
b8��.4o0\���(��B���0x�MLIaʱ�ԁ�����X~PՂ��1TL�,y!�0zQߕH{�#?�-��s�׃�>��w껷n��7n�	�i`�B���xw�\^Yj�۵F�q�_�Bјjb]���}�]��1�6�G���~�X�V57��AwJpsD�n��J��͝��E�72τ-i�X�d��2�Ԑ�!,<�kf)��:�ȴd�X�\4�I��;��^�M�!gg�5!��l46��S%�G��?��r^�E5%�7��h�����5oD�Шf�YLm��.1v]�*�*ɉϜ	�3�^���^��Sig�t�}ٍ�����Ċ��4�Hg��`x"�cʛT�~��#�S(�y�n����c,x�ښɉ�&iCWj��V��T6������	@ǫ��|	�qH�D�K�X���S�����v0�
��&���b�}�2vz��j��,��濵Ը��F��p�}w�'L�혚-�p�;-n(f���P1̒��Ѯ2x�h�b�og���#�y�8uc��ɭC���GPdf7�E�G��s��36V��H#b8b���:�&ii�\<�~1S��ʉ�$��UK0XP���pi��s\
W2��.��Λ�-%V��U��h�(e��6��4�pīr�[J5���X2A���Sg�뗁0g^
�X{��9g����(��k�`5/���e�褊�����X�y��<��I�ӳw=�T`3�(��sp�J`
})�����A���:�Z��=	�Ɣ<�]�����ρo�}bo(l0ă:r�7�A7����`̇.�'���=�B=P����t�ƹ�_�O��͏�w���"q���S1Pc+F��G�t��x&n\�2�\���m1��i~G�p�LU�R�]��r$�$�e8���I{O�Ɓl�%���8+��_?eR8�d?�4��5�ٌ��3�_P��Ȋf��m�/���]��k�$s�	���H)1&��GT:`l���p���#Ȅ8����Át� ����8��D��:��r��FK~�jy�ד4f��1HE�%�T����sо�]���՗�2�����wo�6[%#l�IZS`�&�H\,(v���p��Q�WǾ)�S�Nn��}�/�gƠ��ǟ�!SS�D�=�
��6L��ۣf�۬��/���D��mpx(bC慥2^�\8C9���w���?��n�%��a@��`M~��^j��7.����[U|���t�%y:,Y%���=0"�5>�6�!N�4h�r�4���72\��h�5^t�SƢo��H�DՍd��	b�M1>��dž:�7Ϸ����ބn�M�7.|Óѹ�%�Q57Z�oDܘ.�*c5�2�q.��:��E5wl��t�����y!o�H!G�:lN8���AG��0:.��Q��l�
u=�E��]����J4�F��RPw�W�h�T
�l��%�W!�1�R���N�~��%��D�`� �НB�f������Nu��g����y��,�������O��fT����1jsx^g�@�L)ܸ��?Vl�?�Q�c��	&�U��:
�pUv󐔺yp��R�f������uq�AN��,T2$�7);�$A���J���hnu���Hڰ��:T��F�����4cm=�g����eF)�1
���a5~֋�;E��ֈ+ef1	r�:�(�n0j�H��б�f��E�ō0��?/�"y�=�7	yc�R��J�� ����s�����+�8�Y���J���K�5� Vc)�D��
)����+%��׏n�X��)Dܤٌ0���*�h����c��q��ا��q�b/�����/�F>���v{���?�6�Zs��v�Л��X���б�sS�G�S�Ӵj�d�ϒ6�Mz��Q�W7b�|�v1�e�M�e��{����:�"HI���C����CӂH�+2EOj�ЧJ�+4����j,]�`��M��"ݵm����6F����x����7›�p��gda�bfk�+��ҋ�O\a]�6�����+ep#&���p�O��KC̾M���bfYk����2M�i�QM3��Q�U��J���TrQ�J��ޚy�9�^=�{~��?�m*��&`�?��n�$V��mR��f����#���v���ӳ��S7�}~+��/�ri�Vl7��M�6`�|����B����
�8=�r�U��	��v��ˤ���1�9"E7��A2S�y��A�h���P�8�I��>��'E����q�����d̈A��z@��+�8�f,p$zciXА0�;{�·?���9��2rgS�zU��s$fl��+��}i�2��8��1�~����ᤚ�#x�0��3pH��/��0�Jp�!:
��*KE�<I1C��L��Qf[���m4�-�x`KUU�T*D�pi�SQe~��ȜR�Aj������#����QF~e�Ձ�R'�=�M)@��5d�|���[��^8w)W��4w����<�=a2q��9u2��5u��ݪQ:�~��;3��5�E�\��S+3�C3LJ��Y�R7��Mr٢<Y%�K0��m��b`*֣38c�xIp,��+e0s��Eэ
�6
G���)�a�Τ0c��󯻧�;9;)���-�R��$h��%�k6��ĭBK���E1�1f,�ʨt�b��4:%ȣuH�SL>�cʲFxCy�<*e��?�����Z�]K-}�B��s�8��)n���s{1�^�1��y	�Ž�)�$�
�眮pB��K��zC8JqJ^G�m�禨���N
���R�Sᣵ~8`�g���*�`��\���џ�����1(�hn}(oN�+���t��t�<'^�w�+���w���pG'�Rm[�Opƥ�]����YŇ:S��0ۡ�nY��h����!!��܌u��yS��glg��1����dUo{����z"kd>�s���{k�ה-//c�����8h ��L�8��J�,k���b�
6c�
[*|sB���SRŽ���"�!�$�q{����S����o�tK�6��mؾ�N��^
�,�m�8Y�#7`������:�Ŋ�'̽hk�����A�����&�f��S
��a}�a�MM�=���#8Q�,�{`�1�'C~�b]製����O��M��G.��ݥ��拌���4�a��V��/#��X��k9}�[��6ʬI��|�VT��p���ѫ�1���Ս0FZ2›Q.����V�&RC�H]
n��/+o�)p��f�
�u��L�K2�@�83rd� h���g4d�i�6���
t�t�_�%/c7:V,;:��W<�1�8)�d
���E�$ҝ��g�/Ȱ�T"T���i�
��%�";�
�	������Rl�s���1�����s��A,��kxy�&'��t�l`��s������+�}�q�m!�{{1qC��sTK!�P�pK�!n����8�G�V����f���޹���rJez�S�A�Й����9��d6/7�s�?����&3�4A��
i��=SG�b��dq#��B�l\X5�K'�e6�]Q�,p,k�%��$��b�=m	Y���\)�p:�.*��^�i�y�M	�"8C�P��%�:lu��v>�
;�J�C��4p6��9���7��B*�Ӵ��Q#�~šWo��74��'�9��2,��e����3N�X�p��&�F��Ռr�6��
"�N�k	�]��ʰ?�u�&��Pд��D>`�Au��1ϔ�1}��i�g�熋�6S�h�(n*�?�"Aw�
@�S���ǡ�t:�4�X��#�/���.6i�{~�����Y4ՐZ��kL6o��p�e&4nLtX�|��?W�,nW���L��p�	?:job�C563���t��2�ۤ'�Ojӥ�%&[�'&RŠ���FLx���`����a3��U7��a��� d�4�FqfMc�t��zؘ�
6�9�����i!����p�F<�L�F�e�6�8i[޼�	;�H\\�Dm`����4�GR`����c����L��8�o�N�7�

�]�8)������X)Eps�&س]A]L�i�;�y��.���u�9����0Vr�@�ǥ)Um��A/�S��:�Ԟ�FmeP��ʛ����uu7M�T-y��{7�wo޽����ς��7$Qb�q���%ʍ�tyzz��8�0jhC3'�^~?��pɻCso�5Z|.U�G�=Scb7�j�q�5��R$f�L>t+��L�֘	=e湉���1s8ؐ.N��5�
��%�������
6�?8��XӶ� M^~��㠵��[2g������%s(vhF�o\.���]�v�gPW4h�%z��Mf'�3�8�.q�N��E��?<�/� ��G��F��2�
�s�t����:��mn��� .<_��>���+.��+�KA���L�_�ˬ�
~�[y�Te�3��Rg�9���8,D�K�`b�����<׉��>7IE!
q
!�Y�Q[<�8��⧃�S7�{û�+�o��2��E{pM�[���6�೷��8�B1�d
�K����˟ki������+5�.S�����$vs����@�Dz�P��s)_J⹸�5��M2.M�p���]T�5�S�WhdC8�
��-ʘ�UMi�
�Ø*�EaL����9ʨs�c��#|��0���t��m�6�����-�.N�am�%9���5���A2��6�ؑ@�PFf�Jy#���ц��U)�V^�'��m�9�z��x*j�!~��&����
�F1L\�U$��pTVg��Bh�V���`��;�*^�#o0��&�ţ(�
�RE������6
P�Wox` 2Ukû+���[?�b���g�Ee\��.N'��]ch�v����m��bb>�ě��D��8R�7��
;,��ΒCֲrw2`��L���x�A�#pI1G��
2h�3�p�8��Dې7�
���떭��<�[>�#j�Y�qQDa�ț!�3�9D��ci#�qe:�7["oD��	��k�Ķvu
f4E���$J�ɭh�`��;��k
�L��4��K�E��2��8i� .������a.zʉ7[��G/��).h8�2\S��ȋ��i���a���N���(�;�"D� ^��\��Y�5np���A���� V�(���{�;�wլ�6�R3����~�ܹ_MI㺤ű���^������Ϛ?9?I��\BM`����
�-�haɗ�rV��M~|�ϻ�&��k�'��L>��S�3Y�d�C�[����;e�1'T��N�ÀCeQ�Čq��>�3��@𠫿N�_�J@������m�`eâJ:
c|G�R<qFƩB÷@6�y�G�FL���
�
̥�$LLI�Z
6���?�FH�o���(�ԁ\iN�	ڟ"q����/�f֏��L��?c�6h�M8:2,m�]���f���mf���j]�gRR��2OyRXL!6�$8�0�m/w��C���o�t!?�m�_�8���+�E�ģ �[��G+t"��a���6�hxP��(���6�N�{��Q@C.�c`��v�����/��_��NO�X
A��΢F����F�Y�h
�t��&��ݤλy����]H����̣{�x��d�]�TfHc���cL�2^��o�(�5$	�{�5���ז��Q���B׀!��G��4�WO�P��|>�FF��L���!XR������s���'$L�Q�6�(ɸ��ҩ)+mf��9�b��7rˬi)�dp����s�@�)+oȚ���P'�NA!))��
����
:M�5[e��ϖ�p<��橧�/�/��B7.,�����*�+���F��n�
�u��F��>��R���6�a�U��.n���ޠ��V#T�g�*���ި����M�:7�C|��r}��ݫ+�^~�is�;�x�_�\�{g�Ew~�~\�Ν��>��i+l��q.���~�[����e�}ы�o�MG�n���I�nv2]�'M���w�e�2��,�����̀D?����M�},1�Q��f��w��}��
�f�w�	@I�G��A���q�1"B�tP�,�#q��`F�hޜwr�|Q��E:���)tp�Rp��pFx™�XCHMqLnx+��ܱt�Ƶ����M9S�t�8UV,RGx�E�<ڼ,�P]�J��H�ܙ�\�w����
�
�� ���n�R���Gܐ'���O��+��W�<�V����h�A<��m
�(��Y�Q�HO*������$~2�����������sG��7��z��N}��y�Rdi\o���?�^E@��?���l���4�Rh/������Z�L���
b��'|Uf�'�b7X��L-:{;'�?uxь�'-R2�b1�n�7\�dp�7n_��l�~g"5r�A���E6

+�pM��{���_*e�71˩�5�-P/�=M	�#`e�71Y�W��U`F��C�p�7XhܰV�<}���qH���3j�H#iāFҠ+��$�l�d�^h	�*
.��A�`hÐ��Ke��L�d�MT.4#o���7�1����A�����{ˁ��C��T
�������S}n SEw��?��7���`���׬�#�i'�dB@��#��!ʼ��5C8�
�#|B��#����X��nlԻ�ݻ��ߺ�򳷋E��M���U�/w/4�w�lW����Y]]<���b����~��o��5���wX�{�O��<��K�{�������p�PF�L�f��IyQN��g)�$�b��8RY����G�6�|�f�5z�C������p��0���̉:��nj���X��_���տbʭ"�b��}�^I�C�pdr݆�5o6
o4�ڭ�6#�a1X�"�$	��ן�	a2��%/Zi��`c��&v.�����>����
�s�uC��O�Y�U�~�#C:�R�HO*��Q>U��Pc�g4*b��7��#��ޫ>u~5�`�1�I���YG�$G��"b�"���#�׃CRu�C����^�[��_���^I����O�|;�&��ݏ0��*��\X�����+K�	�<���wW/_��3&l��t]DSKk<T���g�710T��p����V����<^�����G�8�'�
j��n��x��DҤ+u%2�l�9�?�+�Y��C�o�?���Q�N�T]�xD#m���+��r��:������Eu'�<G]C2��Q�Q�`��j+�C�q��1㔾I�F7,�����쌆���uc�|K�q5'��++��\N.����&Y�$N��?�/rP"���6�]�sF�p���Bd��;��
n:�I[�Gi�M�ut11��LNB��n��_m���/��S�ru��H]�NL���>B��GC�[��r/<��z�!�moymOE��1����	�����_�/�L�y�<Q�m�8�oWk7���G���W�[+������Z��w�ܽz��j�q��Ɯal�̎6���||�n2���m��-�R����L���F,sJ�#��Ŏ&4bO;S)�r8p.�ͥ[�:ؕ���pL;��zJ�$x� ���|-4?��*���W7_��B�Q}o���N�W��0��7|�r^�
�5�f�&�E�l�Shl�f1c=%0��nxO�h
$�!!���q�TCC�S�� �
�
c��G�R�b6v�Iք8��b�~qf�E�$ST�֎���s�m���x<��F�rztU���9A��	1�P�@�̦��ڕ%M��M&Q������#3:�0.����,y�K5z��x�f1�o�|�?�_��O����_ہ>�^�s����?8�P�k�f�du�U���iu�C��Fm�e��L:r.W��r���j��3�h�
�L?�p���B�(�����r���]P��\�ݭ�s���l�vS�Q[_��r���4}������G�}�W��g�Y����++�����3�GX�.]|��U���Wf����XZ��V���
W�����S{,v#�sM�6���ީ.�_X���]���+ޙv�}�8�%|ąn�y��m_e�|���E����_=l����f��������.q(#�h����j&�ytK~��H n<)��L#M���Dnj��[B��R�	�*ƛI�"޴��s�H�)�\y�i�4`7��g|j� ��'�b���q�H�����N�*(P7:����-V�6��1k�?���x���I����>fT��e�����VV�Pcr�T�7��0�?f��/\�9�ڢ�[
��MNē
rM��\<ݬPyCR�aZ�fM=��A�h	��ȓ�B��!��QĈ q�pPƩ����d64�/�_f����z?;�ރ��_a����Z�z�����~pq����kw��Ŗ���}�ᵻ��Е~�I��p�`�
���P�
%���κ�=2���n^����ﯲĔ~��VB?�=�
wo;��7�J~{�ӥn���!coAG�v�Dxgb�ǽ�I��L�7=��:��ﭧ�l2�J�X��.)n�hhSօ�!C�7*T',��V�&����R�Ԇ�Ө7�ʀ*���9�𯁃�*o �r�F��h�\���R�>d���i�F�&�E��/}rʝ܄��q��v6]�K��,%��������	�Bkk��ŋ���*wg��n�tF�q�9]�*����,�����ڹ����oW�Z��5z�;S���+ f�2������Ab�WRjS�?;��s���VS)�b�Q��`�ս�pL��?E+z��-��&�ku�yDx8��M�V Г_)��n�NC�#��N3Mt���Ӭsc����/?�6�����p��ksSw=����y�0�h�i�
,cV��n+�rvi�=4��L퉲�g3S�|���+�p�v�dj����j��.BW�t���sO^�薽�]�	���M;{뀍��s��i�W8؂ua���4��J��n:�x��P-��9�MM�V�J"�Id�����6�x=^��J[i��
�w�7�t:M����JF�f�1�H2�!�s�p0�c֒8S,�Q���ڛ�h�.�
��?�?�>o�+���q]�mo�ûT�>*�q��9tr�ӿMo�?� W�a��$��{�GooDʻ�;[@�J�B2��Ar� �xc�FY+��5�<�s\�r��[��s�*���|.�l44�$#5�eFi,n,��:ⲫ"���օ6���gS�S���m�q�H3.Gh�e����9:22�K�g�_�t���ѷ��ԥ�#�+�Sצ�����7�8���Q+^����v��0�i�మ)��붽Rxk%����KW�����{��C-l�C�����}꘏�t� ��n���	0�ۥt������/P���,p:Ս'�.��6lZ6�#���i}�
x��+���L�L�J�Bkf*��ғ͗��$�
O ���k�b!����Oj��k�L<O����6Q��Y2nIb���.���q�i����H�ݷm�� �����4��w8�]�e8���x�:
wʹTD_����a-��N~vf_z7��bZ�>�у�~x;߬2!B`	A�H���N-e��A��L�w��c�D�`^O�MͯF��5_�IˠG�2����Wq�йN�Pyz�Q+�B=��8��+���|>(�����������s�8>Ȍ\eE�[�}��yfqjn.�CPfpej����5�M�Z�pe�Up�8�����mz��-��U݃�n:2S�Dv0Ai�_h�15?�~�Evɗ�'��{V�xG��Ν���@���F�ߟ��0��/���|3�-�Z�r�up��S�G91�栗�dp�
!�5Id�l>�^ڌg≸�SJ���ҵ�|�R��)�j��jI>���x8<>��HF	�5�W�7�f�q�7�8�F�vxy�T��k_v�΃���w�gkb2��A�?w8T�\R��½�_t�IG���8�i��n<o������Ta�a��d`1�R�s0�������
-o=f��X⻶:\���L5vS��V�c*e&�t04��6f��CbR�*���V:NdHҀ��*�������V�N��_YY���^Z����ܐ�����,�۷o����"OG5��Vo�J�������p�
Z:�j0����6A��hz�p����<��rS�x9��3<<�0��-�g��7O���F�Ȏ(�1�����P=w��Wu��N{.p:��v|W ���k�DE��M<*T
NU��z#-���-
+�M=C;�S���f�T�0�q�qg\)�S�qKTg#�Cx�AތN�8�2\)�8q��"�(��N�xsy��
'��e~�����2�+�.���$N�;��
��:�~Э~�9���Q��yuC���_����N����,�=[#ml�p0O���-z�c�b�y�٘[<��oM�R��ztu~rt�@��(0ᇐ�26�� �T�	~��Qj�"G�$��e<P�G9�̨��:�B�OZ[)d�kS���y��{t��X��������Ź��[����H�[z���{7���2h�����~q��o��E��������v�����sn��:S���׼����5��;��0O���������'�]SWu�O�n8�g�=��/;a�?�N�[� M���K%��7���A5iJ���L:O�E����đJ��`��::��)�q�y'�h4J����w#���\�ornT��A�X����|��ޘ����t�����
�.�cڧK�`2�w����ǦfK���p| �;�#$�h�Y�����/c9�d��B����an��t)��i�1�sbG�Hhب7
�z�RO-�F��o�D�|��6j�r��FE~M�
�a�!���	T��JE+��ٱ�2���4},67���]ZZ[��{-{���Įmjpdpin�ڵ���Y�2t���{'{��q��{Ĕ �7t��J����`��I��/hk�b_�H;v�'יz��fc;־�COscx�����pW�ӿn>l�C'���R_�+r 0�ح���m��9���Ku�m;��M�E���^��5���M3G�_-��/E�)Q-(��.%6�����$b��# E�eF҅�8/r��L�r�|�Gț��g�2.�D��o��j�n�L�1e��`�J�_�]���p��ְŅ����5Nu����i}�o��`��a��c�ӅyS�S?$�~��/��X����@!
�����e�'���I@�V�0"��&K	��j�O��K��o���7�0Qw��U<$Va�"��Z���Ǯq�B�!�\P��i�
���)E΀j�cYn�ĀM6��B��5�P|��@�Y¥�I���Wc�n����ɩ�Wm:��޳oh���V������dHRN�*3�۱����Գ=So��?���C>�]�������X�됴��ӟ2�7��{N�������o��h�]���dTFB�s�s���JZ�b�8�H�z��뗩$2�q"Z�D���Ÿ�<i$d���7����o�O	 ��*QA M�oFqD�8��k�|�}�沈�}v�#Ż�=��`ӎ"b|�k��Z� 7��%����Ō�5�z�7lt��S��`�ɡ���;/��._x�j��r#7�
a?�� +u
������4f
�$�fU,�
7�0��nЈY/0{��b�g*���r.Ĉ���sXx�1��d��n,��w��d��b� ;�ƌ��la;������D`z�I<�?��3�sKg��V�8����;�֞�=d|Â5L�[��z;O�2
��}�k�p��\�Sg�����+W�˞4-;4,
�7v^�o��7��}nW?�w��I���_��v�:�����;'�;T��,Fkվ�&
��M2�俅d��
�d< ̈́Qf.>��6�D2h"�)�7!^�tf�q��f�h�8��	�G���4*���!
wjt���h�7"�كB�`�֏�u��G'��Y��4�ھ�S'VP�3�ҟA��W7~!`�u�!(������i��u
�O�Í�=�f���4z�ݧ�o'&�-W[��*�/ʇ7e�@��bR1̢�qtN�@�o��D�R��>�dtl���0��5Z�:Wj5�W�S�����P���\�+[���+��4XJo��<ـ�&SK:/gc�,�?��(
�<?r&�x�ZZĥ��u��#=xG�i:��G�^ƨ�<��;�OQ�M-F*iG���U4;���~��Ni#�Y��{���;l7��� K'd<j|�X��
n�Kx0��7E���s_RHpC
�:/�Agw*���J���h�
)�MX��63��Q�#1�-0�����#q�l߀���HoTz���5L#���9�X�F����,��7�N~D��"�
i8�5m���:�6��#p8���޴c�ֽpA��E"K�?yO�褻�YG���g�M[9}���O����3��m�qd���4�J���1��V�'�;p�B1�C!v�P}���IB6մm�퍲�2�cy�~\�q՚NL}{�ΚU7Ե �lB[[b�֩@"9Jh��r,�<U6�}tL�i������99�����~zqnneh_��·�z���T0�(���z��D��791�X+g��?���u���‚�x��
;t-�!6O�0I���u�3���䯻��_<h�U���$�
���4��J8����*1Nq���ImL]58�p.N5��R��(�ԣ�����N�3�"7�^�L��

�*S�cŝč�ṭ2� ��M޲"($�w�Ixc���y߹yDY��=m��Exd~�<��j��v
tp�o��66̣�T2/jt����1��e:����E�!l��1éӬ[�;Tz����8U���2]�9�XL&TF�7⊍�c�z?~���4oa!A�D̂
 ���V�u=�e��|	�'�\�P�
����Q֒�I}�
Bf�6HT
��w+1���Z,��q@�����ʣ��[����>V��D-������B7��J�<� �[�W���^%ϡ
�1����ﷶLi���о���M�4��ٗ����dywj?�(�u�)�u��w� �I�X���{w�,o�)��d��h��"�Ór�h��rm�T��S�_�0�
�O�e7�xi�*�,�g�T�g0�bf&0�̌nx�U���x�Q�"M��O�4kr�������&r�?|s�`�t�
����
���2y�
7�M�5�.���ڂ���7^��q��-��1і%z�Tvf�s�i'�T�y�ņ�v0��璘gU�˿�"�XG���XH�X-��蘐��4��7ɣ��{ޡ���IMV�44��%�w٪�(�
��rv~\���Q�B�Hp�QF��������2
	gx`��d��
��o�8�
۬��[�(>"�`�T�K+k��|hi���t�d6"��'enz{O�dﱇJ[����W�Bx�`Х�}{>v�ÕHt��$����(l��C�阡�����9=���������w��s�9�;xç����
��1���$��0JQ�I#m�5��T�u55T�҉Ǜ�b�TkD�(�P\Y)��3��	h�XiZ��������'xFg^��y5fm�JG�,e���?�8C}�.�JVJ�y�H�y�o^��fʆI�o��R-��k-�x�p�16���Ѧ����>Xc�h�.S��s�xS�� ���Ucv@�L_�-�����ׯl��>3�P�U�B6e"Ņ|Y=�yć1�Y�6|X���y?���OV�
���ዒ �|�-����1�*`�Qn�>P+�{����Z��?��^���U�|�Hs�F6c��M̸�O%��J�\���..R�s3�t����2�ׯlʥ�7`��x��H�$�
��2�G��苭�c�]�4g��n��L�qm��p�](|�������c��{Y�{y����{�|�Vz�*56Fs�I�(�9�˜\j~���j�ӡ�.�t�8��S�&���CZ��x�6ל\��=߲)uhO"C�1�!�b�c�$H�S�ơMB�D���pvH�@�q>ɷPC�x�K8O��VpF�R�X�:�P#�`��]�!��
+�ƍ,oڹ,xs�,�� o�7��W�i�����_l���>`�*	�(�-ڰq6�8u��i'�,@�>�S�V�T�Q;w�}�]��7O?ٞ-����͗�b��Q��hc��n��TR�T�X��=c
?��m"ʇ�yR�k���ꓷ���p�������5�����<1��_[��C�O��]˖5GP����x���Y[[Y\�+"g9�V�(�;s���E�����(�$�:'{y������6��@��@��(?��
�����>����ށ�gbĞ$l��!�.���dQ���K� CG�U�Ey��4�T�價�n�psw��sєD�%�p�4㳩��-�Ҥ;J�F	N�'s$�k�?Ҏ�!�d�$a� W$]p��/��:���$n�X�ԌH��'�]~�&}�,%��J�SY�8i��GAf���Q�|��>��x�"���h��6�w=��.G��>X���u7|KWč���*_�Ň	����<q�8�7�9�hdz���������=��Y�쳑�`D	n�:
�H�h'q��m�����-�:R�����L%�9i��i�d���F��*}&�}񝠐�����X�A�e��Ѥ%j�-������c5����b�1�N��zYjn�����#v�C��vHp�է� u&BQz��;yҽ�b�=}�����W&}�Ϟ����ZX�Zk�Q�Yx^�0�|3�t�
�9��I%��,(�\�F�Y~l�/��*'��Ė<���������ª4S���*�
jh��5��5jRO���HR-����rw�����R$l8p�����:uj�)4�Gt�P���8�fX#EP&9��S�;�z*�f6���&�b䤅��?��2o��D��i�����7�AF��
74l��c3�x��ɟr���O��6�|�_*Jܻ��;_����7m�
�{���'N\��W~�k��7 E2�'e׸���r��X�{�X*��I5ژ��p�52V�8|����晦%]3v�,U��bYͱ��b�Q�َ��*�
X�Y�c�/k����\7qPa�1���YRa��K##�G8�@����I"4���Q�e�1�F}��ˢ0f��8���IJр��p���{���G���_��r�#K?��S�;���6m޿�J���@��צ,%
R\ƈ�zN�@H``�^���h�3O�[�t��/̣
3�~�Ԣ�)�3����&�i�
�Cq~�3�J�(HW;Y2�̘��C�������q+l<�H�9N�BS"��9\�
\�$Ȋ��AYt�'�Y� <�ŋ�O�Ǖ�}����#��2�ȥS
��2��
��nĹ�I��=��Ek�!��5˲�:9ޝ�0S��_�K���Ə�(�䗅��_����Xy��;/=���K��������S4h+��$r�`c�4t�M����Q�t�p����f%�.�����|b�I�^��������	�Fc#4��E蘈1�Ʒo?,�_.�����X�'�ŵ��u�X����g���P{�k��R�<>`�
}}�H/�t��cĮ��n�)�᱌3��
���N0@�}�q�V�����X�,g���.pN��|��Uys`g��az��neT�t/	&�#d�l�?A��$]�jo�<���.��S9�RAN/L�+�f��QoT�W�-�+Y�X�^%���D�R�(��
�4�of(�,2H����SO]L�(Nn���p&̉��1^�ŁF���&���_��U�J��F-!��Aɠ&�H�H�pUZ��
��>|�x���Ѝ�F&>�ף`k��9�y�][�i��F�6�<nęw�`�>��`s��l�o��队�7?�8�:m�s�W/���K���^����ʘ�380{-���M��7��.�6��1I�#�Ag��Z�2�h.W�Ӯ�@B,�2�`4H�2y6�ȡX�P�C�
��'�r�b��dֵB�~����*�Y
�A�\*<��m-����Bj������Po�9I'��Q0Ã"H�a�x�Eo�:�0/g�/����!��
_�7g�-u�����ߘ-0t"���lh��]�x�ɝ�8���Q�g�50���Ѧ�5�8�D��HɅ
7с8=H�\����_�̅.�`�x��9��os�,͹A��VN��MX~ʭ�Y?������_�
�I
Eou��:l�?u�'<��#�j�K�

�L��pp""	T,3qEt,�^�.f �z"�h�F��YD)�Y��p6��`o����k2W5'kw�u�y��ɼ������EpD����NV{��;w>sL�؆}�'�z�ퟝ^_�z3�p��qGO��X�\'Eq	т"��!c�����ٱ-�QOFJ5
��S�P�Ĝ����6n4S���2V���+U/�Y#�d��I�9�E��b1�s&f�S�3Yv���"'����&b��`�[������1yӁ����!�#�H��B!{��_�A� �_h���2��i~�}�����0����ol������N�]�{���Ҧ@��Ś���Zw�L��_��!�N$��Q�ڴy��N�Ž:~�=`Ԅͳ�S�m}w؍��tkvp���*�MC',$D�
w�z=N�(^7� �P)���0��D`"6�?q��E�oF���0�b2�8Y#��J

A����L"],���
b��ۥ4�A���cW8�0g
�L�^�\���V��y��Ǎ/|1��	�8�C�i=j��m읆��F��5q0��ixsic����Km��R���ґ�K~���~1-���mL]�kع��R��<ِ��V�Қ�
�X|�� 齑�K��UY�A�՛����G��{*�dҌm�m@�@����)�/��{�6b�
�o��P���H�@�����6�6��[x���7�󖡾�����p���"��U�x�۠ֆ��8Ц�>48�<�}�#
��i~;�޶3����4�����/�xr�_�
�N��k:x�9%Xiƣ¨��\
;�j�0������X�W	7�&�o�=���q?��ΝW�<vc�jdŽfMT�M�ȅK�e���Ś��A)�q(�����m"a�.�L��q0s
���xXY��Z2-��[�'��5��QB�l~k3��
]Z�]R�XJ<��|�
���PWg�'��]�&Ǜ���O�o�7�yq����ԑ���qcb�ۜ��I�3x��ͼ)1̈3/p�2�c��`���N���'��<��r��!��e���t/ڸ9Ũ�rL�$��
#�4�ƚ���|�w7�@'T%Z�!�с���a��iĪ�QԦ�L��	$+P�sA ��<|����ū�ᬠ����TH�0�#��ʒ�������}�_ћ{��f��L!�3�Y+bc���F?We���������)�y�g����k+[;�Ƙ�;Wz~��Ӂ�����P��d��6Q�@�L��ܩ�3�M%��䋲P�i�M�C�F�c�J2��[�]����G�o�������B�b�'����69s�xC�I
A��"%ج�&a%�-���L曘QHe|�(Xl��L|��E83o�N�y4���s�$�T�-/R%�NG�������'��|���-7��&څ�M�cM��7	��w��@=c�"2��v�|7a�O���S�F���F�����״w�3��K`�
3�pb�o�2f�-�|Ԡr����a���?s�kׯ��9���:a�b蕀8��g��,F�1GKM�
�gBG�8�Ρ���7�]u�T�W$\Ȕ���N�%�	��M�P�Y�O�`�h�IE�G��ؚf��q�ԵJ�8˨�+�l�����q(V�!����MNRA+7GzG��:��!&i1���6�r��X����RV�]O8oJٸF�OSL�[[�AYqG���L�jO�W<�3��ơ���7~�pp��f�����Ó�[�t_�Q��'
	��Ԯ��c"�
x�� <'"29��E�QM�ƻ;D^����P?
��]�\�{�t/U��yuz�����ϕ
�6c�J/9i%���R�_�^�<
n$n�68�\��6���8`|&2t/�˩R�3��/��0w�f���6!�5�$0S��T�WS�����[�B�A\�|��?g2����cOq1":޸�^�Pi��'�W�_��)y�Ý8]
��RX�ƍ��,�t��A����J�<8��m��A����/\G�d��岅I�`���"��/喑4��X��{�0�8�}M�1�0<��v���4�F�;�[,�J�mCk����쬍mUȊ3�"�Nϲ�����0��j����V�C[*f,&��$r������ͭ(~��H��.��1�Y���"�A8ڸ�d�+^+���w��Ynh���;�c5<d�Z"�����7�-D,����1�yg���A
���-a����߁33JM!0T��4y��ǪKzkFy�����C�d���T���
���n�g\���J
-恉(�×K�'�&>�֮�j	���H�xNB���7�8p�EX�(Ԅɚ'N�_T�ĩo�>qJR�5kR�NZ73�"k9l���	��?�ƒ�v��.�㛛��5yx�i�e,�N�p�)
�➃��8T���M��
7�7�p��#~N�O�S����s���6�nd�>����m��C�a�8^�<�:;���?��OR�KxF���6�@z��Y�p�������)b̘Qm�v��d����
�f���K��H���f��9���ڑwdӕ��tQ�T7�w�YUʝ��)8�����7I}�9JI�,..�G���_Z�{<���9�B��ᝩ}��,�m�a�
�Rz솥��b��יr��+��k
��GM�u��o�̡*���ɌNi�_�g�X��_m�5��0�h�zxTd�l�m�j���n��KV�)��MrM�;����'ylP�%2�7�c˂MJfq����LhѮ�����J��ɡ�cE�V����7�������uL�OLN�hȂ?q�⃋���	�T'��RN))�'7�T&*cZI��t�R���w��T@�P=�r����6��F�!/����)yn�%�6yB�ɤ���F��6o�w��d��7vaxs,�+����`�9]�i��6ą���t�q��6r��'��}yr{4\z�0���N�@ݔA��ᇙ�%
�B��#P��e�˚���n��7I�]|����9mX���F�Fi�K���cYF�?'n
�f��M�0��Y��,Lthc[��$����n.�� qnh������yC&�(r�c�	^8���w��T��ᩛ���t��cn��"�3%�8ܼ�����_�r{!�C;��˙n�h���Ppt�rM�DYJ�VO�BsF�O	
��zR�RҐcu�<L�L�H݀��}�Z�`�k���.�
U;���D45_jmg[�As���Z�.��x!� IT�R���2��~|5�.)C�ښ$ç�L���_<q�8��[2\�6�aP�B�QK[���������/l>��F����7U����m$N)Xf2��G�t�9Q��G�1�Ag��/��r��;ޙ�Xb��y�܌?]�_{�cF߻=pthsf���6����6��q<�?B����d�;a��E��E�-
��[;KiRӬ8�$��tX�ܺ[ك-�x�TX�{�%N��H 1����1F��z��;��>tߞ�szz�����?�-����Xc���)���]��?�巷���fgl��L	vK�$�>�,v�b3��Gْ5f�\-��YR��naal�l&v�4$μ{}#�#yRT���!�M���ʋ�s6�N�i�9l�L~t}}��!����Zp��9�r��ƓL?8p������~��aOV͞�ؐ�/��)�B���Cb
���,o��^k�M����<���}�;�o�����7~k�.�t�W	��"�������-��F�Ф�gԌ�ϘIB��!Zl�S�Y0�X�h�����b�,��5��9����m�(�sY�2�TP��)�RS�`�.�&Pm��[��JJ�尨2���π��F��ց@7��N�8%�@�8����5rЦ\f ����RKV����O�Ks���vi2W��B�����*��o0���	��K"f!q6^�`���Q���d�9���N�Nw�W��p���{vj��l<��j/`#�?��=����#��T��緋h	T������Z�וLcXAyg\-�ṟUp�†e��L��$	��B����y2�>]�Q<+@s�Z��K}����uɜ͊P��Z�^�����a�KaE��C!h�x[��H�׾��{�{=�ɉhÒ�F�6��8�G�-l�E��;�i���n�G\J�3�����������n��#�5N�����S��hМ��}�0b�!�-4q�
)^�o^��88��I��qp�4�ss��
�u�F>�2fiĒ �0(���<�)�������%�A����>DUN��.�^ P�(��2"��8�6
qe@�/~i�WN9K+�
�t��7r|����f#�+@��M=~����x�'�1$M�"�Hޔ�~�n�+�,�$���zJ|)H�;����K��ɛ���p㹋=�셦8악�����K��
�l��Ǘeã��)n��F!mtd�ڦmF�|�s�������dl��"�2��zu�IL��R@k�ڥ�k|�bI�J@B���f{Yʠ��*�g[����zV�Ub��ݻ�Tf����H��|�2�6����h�ys�r�{�+{,df](x+���Üw���G��^�x"n�f�
.=ܴ3DɂN�E�B���w�6�L��'_�U0tdk�^�z�f��+���1�L�nLus�g��[�Q5����)���jf/5Q+�Ä-��d@'8�BM^��h�ؼ��UKȅ;��n뻒6�^��[��~p��e�m�n��j�Z<�M+ b�&olb,��d~#�qJ����iD~cm�%o� �K���Da�A�%���5\s��=n�r1e����=�<�(����s�j4��m�b��m�,�)�)�on���-�b����H�Rr�}d����e�eo~�08ޠ[:�o���Q9�`��qrd�u�p��"N'oX���g��B��i�v���NŁMp�*��A��fY���p2dA9�"�c�iy
CE��)��X�'�����4�"�n�^����
�d�a�ݻ��=XX�p'�QTK�ْbV�4%�vr��j���E	x��R�R�</���P�[�_'�����K/��8��s�mTYq&���2��tG7o�.W1��z�"��0{��g8��'�b�C�аu��Y
$�Al+5�T�8����Ĉ�9�H��)���pa�#Φ9��k9��1��p�ԙ9�����R+as�,��h��Qx칔�+��X�u)��0.���Z2�����*�3FR1I83�X≵�?��"�=8�v+˚��Q%BB�rDױ�0�6K�띳�l��O��.Wv�1�S%��r�Rj2T�tgB
�ʑ���\��
D��
*
�OD�]��&��zS-.��	ཱྀ7W�8x�����KE�����G_�pd�E?W�0Ⓠs��g@��F�n�����v.��]�TJ@'+h��f�񄶠��`eQ���1�ԗ\��%�)Wy��<����h���<�X�y+}�p���Ǔ�	|�XL~g�>�'0�>��hc�ȏ�ίέo��t:���<҆I/DUJ!�B�\:qL#�0�z��]3��\7l:YF�\�	-�M(�8�+\�:m4�����vv��w�?`�~?2Ձ�����7�7���:x���G�+��]�[��W����5/�BA�I��Fg��5N
ؔ�I<)nK�r��F@�@�ȖJ�y}Q,�
I���O�I]AYg�<��B瞯���l^�B��\�r��I{R�)�u����q�e0��K����XcÑ�X���8�T��)���Y�l��J��ڔH�����{O�>�wo�q�UQ�_9��Te$�,�*��ؙ�Y�̀ë:��K�UdeIğ�rc�A�5�S|j��|[�b;���79S�Edʜ7>p��N�W:��5>o�fo�yG��ԟs�Ϙ�4�]�JYb����	c=ɗ)�����O�+zm�����6�P� {e�B�ά�J�b#S�0-ҀZ�}��@��(��b>?7��7|
����]���YAJT�����u��Ϟ�?nh���X�Gp@n�+h���ٛ����:�6��q�>���l||���5��T7�N��f����I�����Z�|���~�Ŵ��g����Sg�qiS��i�2�ܩ�B:6[�|�M`M�8���m������7h�B�>feVd�N�ӂ8J$�`)����r�hC���A�MYnf�i��8R���'7qe*�
G"cFBǝ�F+KzN.�Ȩ��D<SÜZR[�j���sXC^����{��Y�"�fd��:i;�(D*m���L�(�&�]��lv��X����X9��?:%4�j7�3��q�*=Z�~$(KϏL���tt�,WKŦמ�ƍ'g�u�'�{���Ɣ�^䍿Iڴ���.�]��K<��~�ip���3�@�$�I���p���kp�5N<�-��t���v�����.CP~�r�V՜f�ix�ǢZ"��?�|�V��(��-%t��5�ȠR~�_�&hnd��yS��x���d��1��1�������h��R4��ũ�>�(���5�aS������}0���A�։�-��Z�Co�u:��9�7w��%�@2���}�ὖ�oQլ��&96X@�%+c3c	uSc�m�<>���9_�P3r�8薂��!g^����9�F�\xa!�$T��.?�_K*&�:ROQ��f�j�RM?5�HZ����qt	0b)�nz��6��.r6<�}EP(��Ps��4p�l�������ǪSk���Z�K���J�R�T+��6�z�d���P=|��9lE��Y�6si}��>�R�F�'��ɬL,�f��a����y��p�8�;N�So�#x�~��.����`c;�|��'�K����ZW��׋���]^��,<cR�`v�e@Y��%�8�,�V�`>��c����a��Y�ADRi�3�,��#���(yo�0]E�kSD|̎&��7k|f�@�|!~�pf�	*ʤU�Ӈ'�����#QF<�c��U\�-/�����5o΋�k�z�w�Lhw���o����LW풽�r��?�R��K�4�VZ�4/9����R��J�J���В�f��7>���{f��Rmv�.�@Ԇ��,)@��Y��R�⓲p�P",%���d�u���%"y�r$��!�"ޜ{D��U=/���J��%��I�Ȣ�%�d<���/�-&�(��s'H�6WT1���
����7���9��d����с��d
��4�Q��6f��̵{O��j��N�S�J���T�h��r}�^2�׫t��O��"�|®�5����ʔc�-~����JD�O�ذ��a�����-�t�f�;��S7~�ێn뢍�6��8/�8�s�<���R�ʙ�^�M~u	�7�ݸk��PeI�7���k�0��Z��a���>$T��Ă�E�K�ꪂ�E5)>x��չƃEa���"�{~e�(��¹>VۜC��_
���V��q"_@szq&ߚ�p�~�ܜ�UC�c�a���G�כ���4��o�τ=������5�LGX��$�i!�^λ�'֔��2n�?��)W|q�eG��F��F�w�&�H+a�h
��:L�b��
L���iZ���� ��'˩�[�(e��7u	LVw ���%�ȇF����y�AN��8T�_��=�W�i���F��J��p�'q�8!jĊ��V�G��DS2-ƚ_i�^
#
<#��*��%P���Ѭ�k��z|���5�w��v9��5��g�Ѻ������ Qs-�0+�ˠ�����Y��])Qݬ{�J=G�x+��^��tT��8ac�4�8qq��7G;Սw���'�N}�@m<���m�{p�3[xv�g}��\��֠m�t�PAqk^;���#�j���1%��Z\��1�x��0��XbC^�(���jF�ajT�4�X��B�]X0�r`q��]l8��i,l�6���C!u)֩UQ�@�nb#kn1�tb�'���:�|i�mk�Y@Z���r?�T!ez��w�����C
��Wt�S�|ܰ퇎7��y�1����Pt�N)�I�Nyc�i�(����TDS^�i���bB�EQ%��ެ9���)�@r�jNn\F�>`�5�9�痕���k�V��
�g�ȰҔ�MA=gs�M�p'��$��쥲ndj�LҘ���crI� �)��1!S� �
<�5��L���
'�`��}i��a���]E��I�o�"�Z�̽��T�;�{�7O��*�^l)�o��,y9uEɓ
c�WQ�ۓe��C��t#�hE�a�2N���5���/Z��/�0��6!�Չk��1��]?6�S�wް:���Msl�t�}��o�ԓ�=�����(�ohj��BZ���%���-%�sK��>���1c�9�7HS�A2�� i#B�TiѦ-�]P�7�7	H�ɲ�GG9*$��)�6+��*�ۏ0�.�Ǝ�)��3��M-z�d�˱�>}�4�//����#N��[��S�b�p�8mqsĪ̓�Nz7�U�5�}�q:�euCo�׍6`�حu�бG\"���G鴔@m��|�m�`�pfKUߐ�iOy�e8�I��8Z�Y"$�b��"M�
S9y�m\Y%���.�&6��K�]IE��hP'MdDŽ�_�7��dZ�&��M23���0��F�$�R�R�����1k��(�b��PA6�qCVXMѶ&Nc�RWeM�T#-6�#��v���̩˭�N���:��"u':��z�^��T[�h�����
�d��B^�+Wd�^RN�R*�L62��B*�S��ՍQ���%���N�e;	/2嶶�F��1�Օ�B��X�Q�$�oI��s��Z�o�,8��ߧ��Kťq������	�q.���bT�&���ӣ��P��V��6�Zll0m�a��u`
Os�Mj_"�&ZJ��G��ς�)�33�9OC���8)�U4c�"�r2����?ʼn�'����K�.���`��8��8��)��:ݏ�$y� Ëv,
����(��c�W�`/�@����E��Ս�^Ye;?��G���$h�L������<qZku��s�5��4��z�BO#��vUi�!oW�(�%@��X7{�7�(�s,�?	7^�Ӯ</�kA'NY�UӾSy~�6�b|ђQ��-l7`Q�+���#���i8�RU�H<����Ͷ6��ryU�9yZ�ɤ�7L��sW�@��¸ʠCx�o<����c�S��}�
���Tt��`�^�ುH;�U9�C��h̆!�x��Z�?Oi�1����.���
\,,�����A��v�ll܂5>l�	h��l*��qG��T�*ǯ�Ѫ�v{}��
��pY�<yu/< �<4�����j.�c\�['���!$��bP�?G�0u��_�y����*CV�3i�����.%�|Z2��.���
��٣��Dq��7���;[�kP!-�B�"�e�ϟ���?�}�_��z��_�k삳�z]QPr������9`?�
pz�_�{凡ڦ�F[/�F��μ�N�t5Xj�۠b3E�����J���9��s�n�@����ѥi��2ʜ9.���ƹ��ĸ:0�h˩F©���
ϴ��@fX�[S�TU�Q�uY¤	�X�k)�,��0��#j�`�n�.��Y	�xڼ�zWV�H�4i4���e��T8��V��/�+��E�87bG��q��6�V�+A��&�iE�DMn�X�����Xs�	���J�	8���0�KAƹIÍ
}�&�[��y�Y
խ��y�s1sqQ����4���N�q��g�܃��=�{��w��~t-�;�t��x�5������?n<��)���I��ptĦ0��4KNf/iYn�!����[���F�8����'�X��%
��"�)_���f�<K|B�-��@�ɛ��:-n�s�*h�yz&��Q�
�\��2u��K���_x�o�C,3�\�K�i�-�udcs�)E�P���LS���}>n����Q���꦳=�Ϟ.y��[wT$i��X��e��v}�X0F	���p7�DS5�����d�WT:�㔃�f�F�
�n4�f`ό)�&&�pS������+.դ*B�d�I�x_�~�0?�\9�p���6
�F�O˒��Cc��^qǑ���{���r�"�3�<��sb�U�Ҹ�#�O��I��Ӽ��G9&GR����T����
�s�^�H��#�D/_��AE�*�[݆� m�<˩T�Q*�b�-Zz~ԡ����c�G� 0��&�-��_~x��R�\~�Pc{���}�ṁ<�ӵ��W������>08�8nW�
clZ��F=B���u!�IN��B��0I*D"��5�����:���`��A��T�᫁����I�Ѫ՘j��MLm:
�CRDP���R4�,7{�,4F�1W!�U���ٓB
�"���Cy�;':<��A)�����P�ח��h`c�p�66�ם2܀"O�H�}�n����N@�7�A��}7�%2q��n����{�t�Py�	�S�H}�4�Sk�@$[,�%�\�Q��
��XO��817o<�uU�D4(.$g�*!�)0��I�K�`V�q��9���L�X�B:;R�qt
JKYf	�yg�*�:�Bؔ�)��p��h:�U��b�Ͱ/�i4���&�Zt�U���IV��b��5�%l�RU&��6�ak��,%���F�����T�8���9kO�yo��j�U�iU�W��j�<��wB
�J"�QT��Ĵ�RQ��C0J�V�#ݏ�&F�j��_v�}/{o>��Gm���x��S�����M���2��K��]���;����ar_�҂,І�'S7f���k��h9*�Cy�F�T����>8�i����Ξ�t?�0�����;��s6�[��3�k����4S̒Q3
{d	?�����,��X�[�����Nr��1���Y��~�GC�w9���f/���ϖ���@��~�BT��zO���]q	:r�t�pܧz�W�
�y7E��;��˦Y0Q��1��\�2����Iux�j�6$�����L-��V��r9:�`礪�U�c�XHč��v����R!�TC��`
{��n<�;r��U.�`�'�ȥ���goq](�/C������;uV|ۚc�e�Y�PL\��
	��-�����#t����Z�����3I�A<�����^#1R�D����O�=y��Cb1���V����(��rr
�PN��Y�
)�%�Rq��*>920��$�oq\�?y�:n���e_�@R6zg8�is�i�8Z��
#���v>q����6r�W[���ԁk����j$s���f�(�Ɯ$<C��-����$�hW�`Q+m��$|RءR?����nY��
��IV�w�{�47?���&��p�CA�~��1�\����ٓ=���Z��r��[������ԅ_Q�pzH�ϖ�6������5�V������k��ܝ�~N���*n�@ߞ�f8��םwㆮ��*NW��XC�Ϛb=(:`5����C\��@��B*��4����6��^�in��t쳚p�-h�����dJK�h��a�1,�g�¦�(�
�1`.]��Ȗ�z
���d�ӊ� ��8��姼b�Ra!s.�l��ym���u�҉���OHC!����� rs&2	���b���9�vw�I��$�R�^�S:^'���9%u�a
�$�U�7G
g����uc�&�.�����`-Y�z6ؼ5a��5H���^�9\ɒv3���$>��^�޴��������%G���E=��6_�x���ds�s�{_X�FZs����(C�a+
���c�yN�m�'"P{���<6������	��r�.I�R��׿%���x O0<Ӡ���6���R�݂XFwm�q��a�N�7���U>��[����=�Q2��i�����6Y7Gd@	6U��j��ߦ#���O�{7��@���<�:}��vK�"Q�J4�I��̻y�;B��!���yyF��vTi��K�gN81єivH��V��a�8j�H�d>Yې��GG���
"��&��71`2��A�8y�"ܼ-�\�)N��3�R�uƔ�:d�����"Za�7�W�9�"�M�	����{��q7A
4$��G�Z,!y3�;~��N��*T�'��x�tSp6j�R�#�d��s6�R�pR���F�T���a�����{����S��q���l�
��?�Y5��uD�);"�J���T�0�J�����CdQ]�p���0ʚ�-Ʃs����.��뀍�n�`�)�6y:��H�/NG��y��;W.^,a�X�,5A[��$���1�րIN�(�N[P��dK�����z�rmN	M��3W�+���}-�y��)������m�"�؈MW`ŏ��� =*\�,}�ITG��g�]|�i!phMo0�Nw	
��22��vb�/��F�۾]3���^�W�xU��C콦o�q�S�z����Y����缛�tyu���k)��|N�pd�\o��F�R�]��Tΰܮ.��
rq��?�=���l��짦%��a�O(!7H��̹�X��)�R733������	 lq0Z���h�71T���R7��b�1,!� G|��0�F7u+7sJ��c�טT>�K
^�#q�����ȑG�)I��N��+	SM�
���~b�(���P7-�
%Ღ���������h5Dž$!k'i�]b��J�P���N0�*.������͓�٬��f��6�ܙ�G�x4�;�e�K��/��E;ߚ�9�Y��7�^&�7ӳ��yj5�Dy|9QP���S8P�\��}XPg�O�B�S\^,J���g�J	Q;g�)|'y}��2���T*�6��h��ۈVAu����&�3��(��'u��
M��my~�7�����V�>�O��|H��j�����]����o�n�ٜ6�iҋ������O���Wc4�G�Mw�P6�}��!�Cr��K���9�L'���5�0!n5��UM2���.
Q�,��jl4� z'�,(iq��ц����.�
Rģ
�ps�XÅ�+u�6�;�B��&V�<�<e��hA!��b�Cvȉ$����Oj� }�kش���`|/ѝ�%<�t9�?ʄ��H¦t[ę�7�[.X�pM*��YN���jR��`�T�S��J��1�!����0DdN��aTэ"[�V����|;�
�&�zC����+��,!j`�&tR$˙�yҝ'"Pz%]܈я���1��u-w]d�@F�_@���{�K�|���M�~���i����D��•%O����e,A��E�����ƪQ-[Y�ڠ�$ylL�<P���O�+𮌿�ޞ��׷��#�:c#�MK�
�0/Y�
p�P����{���ȭ|�l����}T����Ѕ�#�D����PppzHN�#4 6����c�i�G��<�w���]�����5D��޾�}�X���3��;鍊5��4`
�W�lSޓ�c��c���H�0�T
�yu8���u��1�4���#�X�!a,!8mu��M�7hXQ04&܌YZ1���1���DX�����38l������٤q1��*���Ah�{�)����a�.ZM%97If��&�� ��R	��5�M�,��r:��̉L���++.�~*b�%SF�Q#�ۘ�2Ū�ȸ7*_#?
fV]�M6Z����3�XP�b�$T�J�[_�Z����B�@C�P.�(�JIm���a^�i��32�>u.�"���q�<�2l���8�ӽ<u�޷�~��S?����X�n�����-z`��rPI�`�����!�n7����U��χ�g�	xt��E�ô5�N��,�qyW������	��&ԐZif�x�x������,�F��XeW��q�ce��qN�d�I�ߘ�zN��CJy��d��������O!u�G�p/K�@�!,* cX���g���r~b�k����^�z�O����.����y���}7��h���|��]E�[%P
h����|��م0����0Ɗ�7%p
jtp0��e�S��4�f�q
|˄�x0m� a�xA�f����s��EQpS6����@��++�����SWMǝ5Ռ	-�>�'f|qbatih#�`ĥ���L31��
h�yb���wY��
4S)86wD���9��d�6��~��Y0��8C�
�3�_�L�x�҂'�
O����:_1O��(��!M
�I�\�j`��5|^�:|�B{b h!�(@�� ���8�Yj�58�qlPܭ�Sn��*�Z���JR~��_>�+���W7��2�w���D����[SN�|o��V��E��{��
'���g��{�W�wf5�7‹�P-��oDeSwf�W�?�2�)��uR���c�u2 *��g/�}�+��s��3<���\�~r������
'QuC���?���z`�*Ɩ�J�O	彘�YnJ
poB�K��_Z��Х��?�w�y���@�n|�x,R��k׮���k}�>�w	8u��X��c*��̻���Ə�u�Ə?�nbl(Psgf�ȷ����,�,��(��?0�"O0؀4�Ψ�Iso������c����0h�)��7,pN*1K�VQ��Hl�9)��F2�����}#�},��b�,����g��͹�tt����(?j=j����������I䈁<�>���K�d�
+D\M�3��;�c��dJu�jx�Rc
������c���i�8\�?󏩗z��߄7oW�"d�mS�݄���)���$���*���0���ai2��a
��`���ĵC	���_�/b^�ӭ�z��w�tz�=u����
��+|0�y;����Ě|&[�-Vu�ᇺ�����@'3����Yc�%_/H�S�PЂ%��9��播��-����
��<X|�p��L���X�D��ɢ�dN��r�;���R)h��1y�mڌ��2�h���TG��IR7�3H�'��-�q�p�jp�׍�syWU���7Co���K����C������$=i����R]8��O�̯Oܺy���7o��l�@��C�8��ݜ����۳��)��|��3cw��0F�9�X��s3�!봘"��6�|jR��Px:!�!�l�L(gn��j�y���RfJ��o�S��PJ!��,��p��8�@��0������#2Z$�d��7l9�/���A.�X��K����0�*-WC�	C��dS	kL�S���I"A�B$ǰ�F6�̹O�����|D��:�ol�d-�y�xm�˟��N]��ꭵJ�g�(����������y��X��M��d��|�5I�tq(�T+x�����n��c
����#��G��?�,�E���}@�#�gV�z��Z\�7��K��:yc˄��A`	kx���S�ʍ��'���:��pfբQB@q����e�E��T|������!`������=2fwF1�7x׭�$hYxƷn_�}n�.��f��)�-4A�� �ny�O�F�V����+�R�Bށh����gF�	>��t�91�zXE��HMs�M����a8��3A�}�?�_�+�2��k3l��{�0�#�9�S����ӯ�{���j��Ŷ�N�&�u���u��q�yC���£;�2����*�^H+܍n[`�m��9�xs�x��9s��Lj�.Ҫ-�j�B֍�v0�����<1��s��\��A�����c68N��$���4x���"醽i�xD��#��d�`!Q�h��^T+]�0��3��]��X(ˤ��Jc��g�k����7��,�F��Mٚf�-U/�*�X:�
G��i��
j�G+׵/3W���aFk��xz�U�^yL �j��BS�t�y\Q��0�qhC4��̥�f#���T��D�����,Vcv��k<�n8���)���M�f�=�2����sŇ��"�͛�t�ƶv2�vv��@.�+_�B[�*�&[�բ��Ο�F�d��ә��bf�eٸ0��ptI|��������Q򽄀Œ���X�|��O)#G�%nû��;_���۷�O(@��L(i,�U�1{Jgzb4��뮐jzbZ*jZ��(�Е	]m����1�иpC3���#t��D�1zb�a��6�{�̽<�ɋ���K!��wh��
�{��;�k�R�͇0�^�+Jv�h��3́]��w��~��tf�Ν�=~cJ����Y��o�<�(L��Q%�A��䥥��P����V����h�:b�^�7��#]E���#3��
G�D'	�6#2a����)F���	�"��7��
!*���DŽ�0a�����	,h�PIaKQ�@�n��=jχ�JYhYELT�3�@|��r�2�@���xW��@b��	�[�3�G��hU��Դ(���M%�|ܬɚ�E�.��$������Z嘌���2�����f�eP
T*��eC1����]Y�"�0��̧�d�ΠR��s�����y#�W7��v�s�w�3�nX+m�=5��*����ƗO姙�T]�](Y(h2���'���K����6�r�S笮$�+��V�/W]��U��G݅�5��}����\b�LXi�(�A�����RL���2�O�Q��L_1����Cj��T`b��~�*'����h)���qH-)����?�A@3�B�P$Eʟ�F�C��E$��D�q+l���^���[��u������
%�^��.ڷt~����r��[oI�('O	*i16��&|�M�|$Ө����ƭ3g���͹�p�$Mm��*�
4��`��L�vtl,T�� ��j7��t!9E��*kNqW�P��1n+�B�q�s9�`v5k�yv�aa�1��է(��Gm�oz�̲�.E	��c��n&����dɝ+�H�@#�@�Mdc��Մ���ӌDx�L͒�%��V&���ܹ���q8j�1�xIL���m�Ff��4� )��M@�������:�6"�HS4!���E��h��Kc7jb������y�3�^W���9gΜ��<��w�4`+?$�~��S��-���
vNO'�0��Q^���xF��5Ro��gƪ~�]��a��
�y��4�o��P��$����l[Π��a"�!hFG��I�T�643�9��o�2���#o��Au�ى��W2�>Ѽ,h\|am@�O0�"��M����h}D�b譹6�cA���o;K�8� �h�Vv���0�-��M<}��n{]k�F�H)~����疦��?�M�/^��b��MV�w˦}��|��zwT��I:j��������$�χy��I���|Qe�f���P:�
�/�6�(m�SG��m���g8Sy0�c�����ꆉ�\t��b���a��9s�y�4N��9���<��
Vq#�7UY� �d?��`bFX��~J�Y_��F�M���י�7J�lA*��2���=\���H�K
�z(]$���#��r$UzőR�]`��1�/I��v��R�ݯ�����j���f.7��QXSỡ�1X܀�C}@�'YMv�]�R�����2��e����B-'.f߃�-\k�E��q�0�Ū�%BnH�Q�8Z���T_�w=�l�Y�<#�x8{S��6z0=��5^XަU1L�<���jɡ
���>�Q��ؒ=��@h���q�|���J�p#[T1�&�7�'���,��&̶�+�7��{���S�pˢ��]W��
�"]���L��Ue��v�i��M�Z�ձ9Kiv��/�RȜ�*>�8P\��y��`�5J6
��Rwb�[Ow�Ws�~L�KB��k�W�_On������c�̑��:?���j@xx|�QET9��4qC�47�x���9�Y���%�Gw6V�0Wn�R8��z�K�A��b���|mޔGXC�~�W����w��{cM�N2�!��GJ�a��� ��u�:ܫ����|7n2��<�3<Ts��Ւ2fd�E��va7�1�hqs o.�Q�'b�W]W��U��R��wxD
��'bh&�Y��3U����`|8�Č�^�j�{�A�*3Z<1"��?�N�_!.č�:��5
�~���x�6�һ�+8�!��J�W�a�ަ�"���O�ݯG0�h�aW��Y��idN���NLĔO0m�%��>�&��LY
�;3�ٔF�57��U-x��=�9��e�1�A጗ˤ�<���2��{z�m[���.KfJ�i�Ic;��g�ax�:�)�z��tzT�CX+�5���1n���k�e�M$	��w�A~K��p�t��?L����߇��=VZOg�3�`	�J�_�\�r�J������u�c�F��-.cZ�d=����5��[������x#���8�\VU<ƫ�r"
}�
]�NU�Ĉ�E<���Y�����
��h�|��
�ɦl�[�p��a��f7�Y���Q8��������1�
��(^��CM�?}�;�hR�,W��w:��f\����{����Y��H"���p���/�
:yF\��'�<Z�n�!�敯y���Ή^��!�a�t�%t��مE>��0*�ύ֔�IΛ����>�__y�TDa:�L��ӈ�{N�� �z��˜^� p�ҹ�E��V���2�^c=��q��4$Ҏ2��;��#-�/M���h{)o�!	o
&�E�L�}���NJ�h<
`g�EN��g%�
t��0��vFL(��z�>ro��1F_�6ޝѨ�>�1/��sH��^�DI�4_�*�-�̰#ԍp��Ҍ�����h�^_�qA�jA�huSi��i�+ap����)�l�ƅ�/X_	�1�؆<�}uv�0,Y`�>���� �@||���2���zY�$��u���m���[Y‘-4���;�j(go'�j^��{睫��3����ՠ�J�^���^\:�ǥ����
J��<�Y�<��8���5�ّ&hS�$����͙�S3�������:���@��r�R)�.i�;���6~�
}7N.�-#q�����(ur��j*��a��XD��������%|��Q6܃-�pč�4�������#ᔐ;����j��?vI_��{�f����G�W���tܼ�u�kv����xjU�h@ǣ?����AX\��w1�G����q�����
%|Ϟ�Q���6�7��/=����eMz�mwe�%`	!!����(B�7c����-����o4�N��*���t����yga_4m��]��k7k��iC7�$[ί�����	g1 �e}2Ќ�#ɡ:q�p'�zy�(Z��vmn�������L���\D���u�A��)#n�6��hz<�f|u{���b`b֞3�FV���7R���Ɍ��1�R�&^1��,�Gx�\ZB�%Զqp	�N/oGYz�+��;�<�R'�z��߰z��.�2�T5~��8�MW��
†�ܲ�LЖR��ҷ��ֻ/�n��ʞ�����c·���ʼK�[�m:�~�ݟ>�3�0_%��5��"#�0�).��Y����&t
l��x�����
��ũ�.=Ũ#9�DdV}șIF�s�Zf�aQ"Τ�b�N{����Λ�x�2n^���xJ���J���~�f`��z�2��w�H�{uD?��'��p����i_v'���ps�"S5�������7Sh�`�#���~Tɮ�@����_$6�7���hi��u+��SΙ1�阥��\1C�&U{�Lف|�������4�
�~�&��qhd+^UM����o�B*���猤Q٠�^��|�Ȝhe�\��a_	���1z�'�c�����u0�WM��i��B��2F���
��U+��)����F�y�[|��TK�[
)�T�F*�1/�I=3�=��x���7ʫTM���	���x����K�kK��U��-c� ���iG��m#�Z���:���A�5�g�*�#l�0��j.4��-!�!��}�f�ʦSS��B֨�B�U�g��=����W(����Hhaߪ�Ќf+@���@��Hʡm1���ֻ�J٥���ӟ^�"����V5K\h�ۂn��A��vǦ>���I����N-���vǪo�+�	�0&Ի�P*.A\2\��ل5ܹP����q�ɪ�׃ѳ�x��7�:���|/����#aJ�g�����4r'�g�ƣs���o��3iF��I�7G:�Fc
��O�U��߫���/������]����L/��t͇�7�zFU�؀pz��7�&ϳU�lӱ'D���R�7v��ngf�_<�et�,��I� y�Nҷk�	��i*H��2����du��/�2��&�hR���c���I7�Kcy!J���9j�`�#( .�&�7v
�ܹw�1��E�<�ʝ6��HL��o�`Z(55�o�����3�8�B} �U@���rW��􏦷�W��6�f�,7��Z��4:z���cK���Q$6!��LJװ8�1�F
h�=�/�ҴV��oqC{�❌.r&?|5$1=dMf��1��A�l�-���8f9'#��J�+x8���F�uV�MDJh�*��T$�7�6�F�;�梌�y���S-i	�a��^'�xl��
�O#�ju�i���?W]�:@�?H��0���0�l�.*�6RO�>���C��V��u��$N6�z����P�ƶ�>�[��9��W^�u��(V�1�2�r���ƕ�;s��׾����;�:��b��}7G���Ἓ���8���F�v$ޘ��� ;G�'l�G�j�3�uݱ6�{o�2��]��6��/�����h8�0��nu���� ���7Kf����HƖ��'�Q�7��K��>�'m6���0���:�����^ĩV�9��DYE�����Ϛp��,�0�MF��h��)�p�
.�B��)��ߏl 	��Y�����;#OHPM�<d������۟#|m����M�P**!��_?�5���9,�3����C���͆[f���a��66
=wLctv��)Z��K�����#��D�
P ��b,���W�X�e�ڤ����"��I
�#5䭨)أ��z"5Y̸,���\^,�B����6%�f��+�y�u�g��n�
�r�:`꤆�B�0�N���G��)�/�rp�,>����\;�2@�$�<wv8���_L}�����|LT��A����jm0n�y�N]e��0g
vԬ`�����m�Û��}��R���!�����~:0�et��RO�c͹/#M�k�5��zb�G��|�S_{r:?�_e����ws8�&|7��!嗅�#R��8E����)�3n���lx�I��&��Rↅ���z�1E�Hmhu�4i��].3#�g:��^g�9���^K3
�h
�JM��L�^��ݢ��\7�=2�Z]��($N_����}�Z�d� o�7��X,@%6C�(gR�P2ƎX�:Fo�h>��S��K͂�&������#0���Az!�Q.is������"G�X4ŏ]<Ŭ�m��xob���f���Om~��Ad�$���mBVH��	1*��Qn��Y���hb&���2��D?��P6Ŧ�R��q{��Cc��l��x4K6�`h|K�P(�/\�x� $W���[�#\�8���#h�Iq��)]�,�m�tδ��@u�T�Y�w$	�K4Q46�9�Y�K^,�K����6d�iD��1r&�<��P����p��EkJ^�v�Ra����ݳ1Y���Ș0�j�+�k��H&�
G8�p��~��I�6��:ZS�To�q��=������
���c�R
��	$!c�)o<�YD��@��Y��s�dܡ��O�em1��Y���P�������n�
���a�G�i1cP[���r���F.`�-��Sc�hx����/���^���P�8E��_�G�ڛ�ojk���i
��s�r�Љ�T��c��2P�h��� >T��7�B�{�G�ȥ'/�C銸Q���e=$N�a����y�)�E�	6����M��"I�2�{j9�@rtʹNz��o������텢��-��Ɛz؃�똏�k�/��觅�d/��m����~��E��gȄ���M8ʹ����G�9�;���"Q3���l.L�Jx3�t<�k4��˕2AYV�N�a�	��M��� ��BQq��l�
�w�=�A�m���ޮ�v�r%�ټDn��j��Y޴Y`	�	ܠnꅀ�hե��P�H�i_��b͑�����`�p�ۆ�{Cuf;F�O���'_���n�ɃA1gR�p"`�]�d�~Ø��/���N�i �V��:@
#U국�R��sٜm��f�=�%�F"^��L��2��ȷ~/S���3����3'�]:Ck�#5��pލ�y�(�����|��zy�u�h�'?O����>�8�$��op��8m	�G��B���}��ܵ�ݽl��/�4䍪���m��L]
�VTw_�R�\k��Y�<�N�h�S�i��Dv��!����q5!@��υf�F.N?�"�LZNی�H��$mjI�!w�xً��� �i�>~���mԎJ�����L\����F|�3�P3�A(�x���W�-�zf��
�h4�z�;�9U�B��ո?������.\�-;5X�)
q�ZPPK��R�H��VT�����5N��ȧ�tXa�|�w��(jV��كRE�$��d�=nS^�5J��T�aL5�p��lڟ�<���-����g\�!����ZX�$9x�zOܴJ���kϚ�bE�i`f�K���A+���cdf4�iZL��w���H�Bǰ3�Ė#���2Y�<;����'ލ�!Bʼn�GY�.g�8ᮩ��; �j�9��0��Õ�al�2��Ooxi��l{s�w���O�\'O��ڙ�s��B�Cy7�Ɔ<�6���x�Z�Gޔ��?Ʀ5i|\���o��n2*r�P�d($)x���4;Y޸�F��Z��*"Ř�An��qS�v��]W�z��M�/��[�I��
�h%�Sh[��b>.s��|��$����)���yZ7�l K�
�������z��vH�kc�ݥ�;�S��7�Y�O�}���l�.g%Lw`N���3;�6S�TZ�Ζ_�@{�dL���[���w�O1���R���eTV1��W��K�_%��y�(�n,�
U�l[�7v>7���cL�8'�w�0;0|��谼�aD�Q~����R�dV��<��m��C�h'���ϳ$2<Ņ�����)�m�y�j����}P����Σ�
Q�hX��f\Q^Pok�ֶV��"��Q�bG4�^�Z?P(Q,�(8B��۷[��C��H�"�U�m�*�(rm���b�@U2�h��u^ɧ˗�M��f}D��=Lq{�p�O=�����>p��;i��s&y�üńLJ/K[��O\�]}f�䛎V���w�w�F�������HMϩ��!�Ꚅ�����/��f�dž�>Fm�8�m�a�)ďR`,pc;���v�	J�n<8�O��o�x�߸�ї�"~jdq�;"�
1ݷ�?���5.�n:1,�{P6ES,��Iʖv��qc]�
s�ΰ0�;�$dl�#����P�ޘ��l���V~�҆/6���1��=Ҽ�v�O ����
�R�!5'p�`��V��e�>�M/:���7��Ɵ��g�We"VϺ#�fy����6?{�P�,c���_�7��F	�1���8u:��b5�,z�+I����ig�yj@�`���/�Qɠ��%6�
v�r�� K���<L(f~J+_W	��+3�M�-wZ�ԉ�4����[Ś���
�F�'<9r��ݦ7�nM�P�ThH	���TJ?ݝz0V�#:��۱�9�^zd}��ʜ������*��MV�:&�Ј)č�N<<r��:�bj��&L��M0CmC�,E
�/¯|��������̩��}�/�&?��K��@�W��b��9R��Cy7�f�vz�hA�0�.ZqBwib���(_��Ğ�Q8e�#�y�F&8��I����[/bi�'%|�tVr@��#>_[�*O���14���
��ٿ�Y(�LM��Ms���ߧ�Y?DW�*3޶�Z�m։�b�IݨgJ<�(��M���~$,�{��NQ0��/��L���\�`��v�Z(1�𖱥��XIY�b�a.}((֩I��†j����#�-:`t�H����a����sG
9������t�uY�N�/����گ��>~���u�.��8^B��p{�X��r��Kt[i����W!�P,��ЏCyc�J�h_w�'z�����5>
�#OR�ؑ������o��Ţ��C�x+ʚ0�8�1"�C�*��1UH��[�W`ftj�o��v}{L6�g�V�*��'�m�[���\#���X!�w�!v�s�t�
�\����LR��DA��P�z4��<e/�M�"8U�7R�����{OkD��2'N��ֶ":%RL�ђ��jnV�_���8��X�@+3ߔ�b�遟8�F�ir���p��	�~��&O�}:G�ws���կ��(6��S�ي��|��OL�E�i��a����p�Ȝ��^[<p�68UT��G���6W�'��(=��r�{p��|�i̩Q~7f�@�N���>����A�\��Dh��>?!7��?���DLB�XX7-	/���ͫH�}i��PY�i�^t@�Z�`�8yF
�
�@R�T{�kB��a�a�E#��	aP������s��ɍ3�,�'��.������Bw7}�6��#t�úZ�u\�u��k?{�7��6�c�B��u�0��Ѥ�%����N��:sjc�V*�#@m��d8���kU��l\p�"z]�)P����U��(���.K�5�,I�p���Hv%���a��R��U�����Hk���E/vϪ�3`Ge��&�i�B�0z����6��#-p�hӈ��E+��?ک������u�������y�6��B��"�$��G�xJ��a�3a���r�IlAx=��(��lE��~�:���NF.�l�E����Qpy���D4٬^b�P�iÝ]�CST3���nb�֡����oo�@��($�Om�k�?���y�2�+n,k��{�"
�:X�2�bo}�ƪ��晑93M��A�`���~�㮵�ZW��dM[�(rf����?�]�w`M�9�o����}����H��~����2����In�����c��K�p��/*m|\l&�|�2M)&��2�f�-�i����i��!�y~�)S/!oz��ǎ~W�+:�"�!.�go!�oɞ��$�M,LE��ܭ�0�����bW�Lۍ�i����2������Ņ,�"�n�qOw�j�Q�	޴(n�w�D�[��xf����!�@�|�H��8�\��H���D��K#R%�6�����Dz!�f�l���H�!՗WK���/�E��0"D������v�4U�8��Z�'�BY>��MV���U���/�:LjM4(���Sg�j�H�zr(d�+�����}�������yvBԥ����(j�*I]�NԴM�0������zbR����6��~�2���p���]�I�����+f/�~�����S{bH��P�\ɹ���㗽6	1yZߙɷ�9cS.p���<��h�0��w��X1��Z6@7Bp��3HN>1�>SV���w��A�h���A.�qú@Y�ѩ��e+��6�	
����b�w���I��ܰ�y����_6���O���;W�J%�
(�͏��m����{D��5n��Թ���,! ��;���i
(l4�FF�J���9�i$N_��{0e�t"Z�Aӧ�$kb�a���='Xc#���Pcfjo��E��E���X���Ӆ���7��O�=�72�Ȯ��`��s�
YXS�i��*���N�V���e��d�)o��� ��I@�)��������ڥ�������c|��j˫l���5�ſ�! []՜�*y3-�"jƒF�5���?���Y'o�����V8H~a'y�/���$��#XFrˠ�6�R�8�N��x�"��X��Y�"O8�g�|���EA��ZF��y��,驸�.��c=8Q*rm����I��k�0!0N~4�Y��Wg�3�J��|Ƚٜ�|�)���q�C��Q�8�	{g��î�a+w9jb��=��/�Ûk�V�9"c�1���C,)IbD��|�OQ7��JU	���6�����p�����D�΋Wa
�8�uT�LMB���~fެoqҾw��n�o�C_���;h~��o��r��,?O�M��<��(h8ݴl�}9RG������\)�h��:rF
>)e|6�X_�s,cI9�
�h���F�aC�+ٳ�X����KX'İFz��/�om-�>]>�s�}ƻo�{�o�7*��^x��^�DbT4F�5�6�� ��(�'���eXm�
*>0��Te.2�Љ��h�.sص"Z��������4L�B5�@Ed�8��
.�i�@�*Z�d�m�KǓ����������}�;�+�Q	��yav�ժ~�঺eF���4���v�kʈ7�����J�n{{�����Gy87��
-�"j�ZJ�3����P<2$BJ�L�L��������IS3CݐN�PB܀��Bea]G�0������jR���V���]�N��X]���Z.�<y�S���I��!M2�$xp?�lr�82��l�ܗ7�/���s4}7�*�!��}F��B�Ykw�@�6�mv}y���h��'}��G���IܔZ��4F޼��0�o�&Z�k�3�ed
~�2?�b��_^Ͼ~T��*�ٿ�4"x��D\8.G�\���H�ެz��qP�%̂8lM$���AܨdRO� Nz���>�Ml\؊�t*%qxq���U��P5�e􁳡p�$؉��@th������!��t��F���1�Wwm��ƍ��w�
nV���n��)oD�b�[�S<��ϮQˀ�5nx�D:n����>�^�EX�I
��!�'2�R�(Z0�F{�{��FL�'&�A�H�����[e�A���&�$M]����]x�MP+�%��y��O�W))�f���Or�~uv��$n`K��x8�ڣ��J�@�XJI㓐;\_�K���P=ޛ��FEɡ��ghN�;H�2;�N�b霶�ʿ�F��8^a�4��,7�!)�vX�D6
��>�9T]�$�x�U�ƒ��h$ʫ$��7��oS�Z�{�P�_z��i��I6�&�->��y���}y�V�_6���;v�b$̗'7�K�93��W����?�����%���>�@���`�z�J��42�����!�/�Q��3���U��4�t�<&6�܃���AD�9EA��h�����A���kS��;�1m>*oXn\w�P�h#�R	T��6wa����ds�5��̖46&a��7�%��4��;(�di!E�w�ݛ�.��7�������jA�N:�c���o�������6�l�iAA�����;��E�yS9�u���עK�5L�5��e��ǻ�ț��q~�j�a(��%�v�"�.�!",J&&�i92p-s���/p,
��B&���I�ľm��xQؙ�Ɣx1篦a�Хu�ÑQ�qJPQ�4��r��`�(�1��:;�EDj�mg��$�D8�Q��H�
�`|-��!{�484�ӱj]���Wj�g��+�B�D=TM"�\i����-%?���e,��u�
�ees���N|��I�
\���L����fS�P׫�S���~
᪾}��ӗΝ;w2Í}��O�&��K��^b���L�=w�4�s`f�v�Q��ʻ�1'J�P����1<8�yp"de�_�iR���Y�`��:MJE�QoDž����w�q�Nsiy|�]x���Fo�>_k�����m,^h֥Ⱥ�UŹ�8>�ƹ�\ґY*��!���;�u5-���72��rqS�M��`���-��(RGb^.v��=���D��쏵�e�qL)�
�����VE�E��
��}��35�Ρ0�8N���
����{�	I��ڠo��Ƴ���߽�����L��glvdYE�\ԁm� ���V~�~���UY�2Dl`O���(�\b�y���B�#�:a�p:��$�X���eŒ)�r:gX���I�^�5�λ�X���t����c��ؒ��*\��nQ�^]��]��-em�uA7��l�V@�uR(����<���\�1ZM�!�
�P�d��R�*�]���O�5�4�S�{��iU�R��Z�	:՗�mh�N�,����U܎����������xVY�Z�,�ƫ�����O>���_�t�R��
:���%�7̉�.V������3�'+��Gj��܌��n���c���.��c`ʷ������_�C6���{�����D�f�ٶVK�Dv�e�Ey�R�-Y8J��pI�"�b�:�3O�`���Rs�
�o\5�Ei�ܤ@4�(p/t���ה���w|��T�$���W�r�9�Cq�b�,+R�����ԝJh��Cjlp���>T����f���Ōh>�e�3�8�G�Z����hm�Й9&7S3�u�� \-`{Q�`m�	u$$�hn��=��];����4F�(�ca�'KiZg�����n��Ǔ�5�0�r�MN#�nU���Ѵ�Z͈x���!�b�bo��⦠���5мc��P�RJM�FB,�5�*�5z�n^)r<Z�)o�A�J�M�ў�%��2����y�h��=�0�\Ėj�1�ᐻ�*O�!�5�	��7�u^���ΧJa'lT.�F�r� ���qcH�e?dWu~e�}��Lۈ�Q��ġ�9����l��Uh3�����}��"�?<��x�����k�o��ĖS��:e ;{�����m��3��6��f�3������nn��D#4�;ai��L��~�;��\�8;�r{`1�?p��gt�t��1��ڔ"�L�s�lWɶa�%�"���y8E��3�}*@!6�M�is��
L)�ք��+4_�r���w�*��pSqӑR�a�7M���!E�u����	�(}���ڝB��:'cnA����Cn�Ʃ��N����`����h33��4m��g�	�&=�M��A���/M-ͤ�T~�4%���5|6�n~�|p0"�=ˈM�.�1�q�76��
��[������+J�N�hY�a�ofH��bM�U�������&���jO�wۛ�7pc��78�9��z��ٖIC��d���ݮ.�s�w�~'Պ
�p�=Z�:Zx�Y<�sb�>~��N j�\�Qh�����5��x�
���$�p` �c�SPǿΑ'T7b����g���0F����qM7�>U�]Lb�5,������nA�f�Z��'&|�&&m��&B߾����Z�����d97�~~�]B��8śh�r|�	H��:�S�޲�]~q�m����7�7Y��-)��(0�lal�H�#�!O�O'L�+Sk�8�j��o9���>�^�7IԀ�{�X���� y
�=���)0�?�.]0ʔ��O>��|4)��6�P7��f�_��ߐ����wp_��d���ך��d��}��s(��`JqÃ}(7�c�3}8_��ŎS-D~�o���2:31!A��	g��p�̼��D�G�zOuL�����^��bzO���Q��@*�0�ܞö��!ㆥ7�p��r֛��W�@�t^Ú�y�
GV�N���b��5�
����Ɩ�7��Hfñ�Ɯ�Й�����
�����w9F�FjN���~�v�pXt>5��N��C�&��O�SL)���:�ws�$ń-�>�����N�q��i��@�&jD�Ѧ"�d��Qפ�M�{(2��I^b�ćv�zE2�3�[eSy}9��s<�ڸR
���ˏ��z�`緌:(��
��م/}ilk}SG1����f;�k�
��gдVo
-2Mo���Ví�]�w
?q�sr�� #�L�y�7��
LE
8H���|��9SG5/���zb�J?b�J�el*A�$�l��`�	WG,Xs�_���\?�!��}�$	ڛB�D,<��ދ���2���n�L��HV+�C�O+n�q���N��K��D1S�t�xO�Ɨ߅��Yt�82>*�8*1`ӑ(�)Ӡ
'EM�@�4`���
��,y×�9�t��,L�59[ϼ�hj�;
tH(�0�P-SSN:��K������	"��\��92B��z���=�cn�)n��~M�`7	D�M�[�F�k�x�X�S��D�,����J��*��B�65�1���z�
�B丁9�PヸE��4-/�;��O6ِ�aS &˯���L����2�KvT�+������)�.��q����J�z�ִ�f�\\!��.wčyź��4�|�����Q��3aA�h=����4:(��,�z�BKVeK���b�Ţ6�ӄ��^���!�2`h	C
:s�����/o�.�`���g��*�16`���o��=i%�v�c�:
�Y�{��" ��H���6����璆�9m|p?T3ud�7��nH��2$�D�4I#uo�˓�GN��� 7x�1=�
�9��U
�;���e	U�BPh+�pܐ��`�b��v1���l�$nD
���lj��?��w��cvM�na��}���L|.�
U�L@�(R�h�7.�V7�F+��	ǿ���o�F��:���ZX����(��f��٠eZ
���!����1m��R�0e'���Q��86#�p����(^�du�anT7@�kV��Ɵ�yn��4���**m����.�H��S�n�ǯ/j����?VR41A���<Ё��	,�A���,L�\�3���"�?Zw0�l�S��|YT"�-�o(���b�+�5<�����~�$�/��{���ګr����}��O.���G���&�Ԭ�_8rէ�?X�t�I|
�(�l�ʕ�9��.4NcC��(nt"�v6��|���M�G��a��W��m=�[�Y�A|��~�j"�խ���2�bMP$NC���@Z���k�䓹'�����9�)��;.�e9��)6��!9n�g^r���a�H�*vS+b��ý?|���x�`h~��q��[�x:3��	k���.r1�'��'␆�Ri/x����t��$"�\�_��]]�]4�#AC�R7U��V�Dް�b2�O'q��npۤ�^��O�W�'�6LC0QH#
�h�4�l��5�dQ#��蟼�bu��7G�Yx���9��0?U�;��0%<�F:Ʀ��G;;�]&����͌�`8VY��i2�sl�����&/a�ia�f}&��7Ƌ΃�\�� ��P�P|kЅ�#�G��WfР.\v��c*ζjr�D���$
�S��Q�@����d7y崙�"���-&�_��jK�z�<�%��:����A+K�lƅs�s����jE��y�u������Ƣ�?����1ܪ&�
%�T�W� [�V��M+YGF�8���5Oj���&|�d7AԈ
��D��3J؈9dF Jl9���i��L�����5[[ՇUw��X��Hq�ج���=�o�^���x{���i&������G�w���H/�C�Ŷ�9�PO
wgj�9
��g�n�"���Էj#y/�q����)o�kop�v����DL���h1�%9bE�ո�ފ���'6N�?��3no`��+ڤ��za)m7?6�p��fl:�єR�d��CR��#��P*#Oy�Jk�9=�� l�� "e>?��8m��M���z���pkV4����j,�~mNЃп�@ J����9̙ Z�&���98�����[:�"�f������]],o�-^���nZ��*_Ȳ�b�f9p�����	�B5��5�QM���L�;
���l��8�B��,�
rF��
ץ�1�]�y��*u���dE
 ���c�w��y�9�MXS���f�&1���$@���$�x��VL\�Q��+�g#pX��[��J+�q]ǜ�%���AzI�=/h�5��Th�(�J���67,��y|"��� KT;�P,U�&Vݰ����5�H�i�{�[�n�����1%0�Mm�!�9tvs�k�<�����z2�}���
��s�yut�:��F��C�˺���ا�E`�i�������?��y�L8��^7D��Q)���[�����"n/u`V��}HP*�p,ش�d�hbê���|��KIR�@��-Sl�b(�"���L���oX/��r��+�2���o�s���D_儎[���Ȗ(�b�.2j\�åcDbC�� Q�Q�������,p�_c&�8@`Ěrz��?g�<Y�v[��P#�_�¦*���Ԗ¢�MЦ`�
��;�4���S"�Ar�M�{~����}�H���dM\^]]�$TpV]�?4��2Nr���6��!nb�K֛F+��l-erpW�<�|!t�-oli�����)�B����Dnb6`�e�Z�K����A4��;WG���x�Hp�Z!Ï�UL)<9�)���,��p�5	:�Ŋ�&F�Q�載S�����LjrΒ:i����%��VKE�H��AМ3�ᆳ:Q/l���yWv���du���Wv�T����8+�^��bEc gl���=��i�ȁ9�z��C��%#�N��(�d{��!����C��	�"�j�5GqF��IY�o�=�n2m�E�	���n7�,v	!aCm�W�\�d�5_L��FҸDU��L����o̖_��+1�ܼU��̢ry���x���х��LFD�Y�4����ő%t�&�vG�� #����w��“� ��
2R�t�1D,���U\���QK�P7���ǽN�cD�C<e����bV��j�Nb� U�0�EAW2[��u��s�ao[�Y���{?3��\Xl*�
��XW�-lGۛU�g"Gp��5��7M��u��IH#UM��(����F�	=�M���
�^J�4��G��*�
��]T1���,^�ΖZ�[�hI���9B%�&N��u����-t#N��#�h)fh����N[)�†#��)l5,�ܳ�2kT5�h�F5D(��R&��ٳ�8�6�mc	��,< �#G��)x\blsk~�4�fs��$����Zݬ�W�eTB��y���	�A�̩.5�..ޝ[\��������}�;���Ʊ^J:�Ҕ:m��C������S���qn���y���k^cč���
@$`ڰ�������j��,�r ��0��&�tѳ�F�
��6��E�
�ˣ[�����Ʊ�n^)�`�=�t����#��n�)W5�`�/e��E���'8��k�5�O�
ߍ炋��q��'���[�t�p%�81G���}�_�~�LgI~tv���:�5�l1��|��j�oi�����gw;�/��r��p1�ݝ	7�ơ5N���z)�.߸�k�P��Q���H���ֺ�Os%���I��6�HS*a���U��S��� K�zzu덹_*bK��qw)L�o��8hا�ϺXa�v�(�>�@i˞0�§fr8O�f�T���"�̄�u8S]��c��8�]h�a�Q�Gĉ
�-r8R��T*�$L��
�g���1���h*\<+W ���5���{�HU��k�v!�i5��O��*��򦲩~�y5L���S��+�QD��9�:��+�9�Zܰ^�o5�n=���f;��˗�s�O�N�З�S��)�H$s(=<���}:�尉ũ�鼛׼����-c��<��u+n��>P!kx.�,r%D�6�����%A��"����S���~�
��q��U�L�s)�r3ɕa�i7�q�R�(�
q<�쥍q}B��/
�F����r��r�78�Xo�Mk�6��F���i6��B����S'zg�M��^m)�ωy')���A�~,궏'��w�iQ6o�n7��xlr��5sx�.��f��7�
n�P}lu�6c{Y}t�plo��K����T��I1N&�֔�hd4�_�\>{���(�a�8vA�iJ�2�#��U�*w_�2Q��T>r��y��Q]�eo�ߟ^���2)$
��,�D�T�V*�/`S�j6�N�?6s�3�"zd8��KTA�¤<����'��AA3.X�nL����ӠL�}Y�PdMJ�K]��r�3��M=�R��f����B���֟�QL����>s�X��A6I/���
Cw���>�M�����_>w����M����g�L!�5���7�tբ���H�Ձ��@���&~�XJ<4�ry#1|`U�A|-3��5��a�hJ�l�q��&�H��ƙ�%e�%�����XH.Įʁ���jHy��b%VN�r(��������"�1ҁq�0�E��j��mI1:bS��1N�s�*��K�M��pL#]��f�3@�l"�E;
��+~��1X_��N�z�e�H�0�Cţ��U��5���̸��ƀ�c6H!��%�*��5^���$?B�4E��*Ʈ����&�����\B�ȟ�N��1N	��2Y:aJ#���.��38��yo.��7���z�*�Ff�[��L�XT�isud�<��:���e�5O�ۦ���hB���AR<(AH=$⢊`E���n0���P���7B'r�o�J�H��B5O�?d�Z
f%��O�U��cU{�w�./�i49kjs���0���|��E�9DT�#pEՅ�6fG<��=�O��h�|�ܽT-�G��#}��|����_����0(�&��h��<�&��LL ��T0I��B�}����K��&�M�a=�)UP�p��	O�1�f]7�c����Lps��\n�pR��GN<��K�K���{ҥ��b�~�
��(\��՟���`��	ҷ�k����;�;�;�v>w�p~�E6bicc+�cv7��	v<8��3}}�"�xF�
�>p��W	AGcr'^.���,]�쓂�k��P4��!UQ�p��c�מw����MT��fP��b�焣np�n�NM�QL\wI�p�p��دj����1���H�,�HdF;���曃ZS��`��1�m����S���UV�te���7���5�N\�)�+��Q�0��1���f1{/���M�i�`�bzMjC�o_�X"U�ٺX(sɩ!�Hy�x�ɊT Ś��U����a_P/I��!�7�E<HN��:[�1��<�
M��%�fus��"��l�>ީ8*���Vk*�x���Z�8m5�w/�7�!�_���.����`��a��*+.�����?�
�b������@�)s���qR���!��a�o5��{T�2�6X�LJ��릵���~)�xQ�4Y��C���	��Ș�a�
�pU.njn��BǮ�8�Y�+�Q�}���}2�8U�
�~�P�67P$�`���b=x��ݐ{3�"�EG����1�GW
�>��!kR�>�!���z�B�(�vҁ:�ehg�w���^��0ExY;,��������I�7��FA\���
~b!��dgQ+�2�
�!6��r�ϛ��Q
��C���yy�>�1���s��
X��$�n�)��bx���{�*�Qō��J�E�q=���&f�<z����hŦD��
�Ag1|Y��n��F[ʹ	,x>���bI	<
�����C��RH�41J��x�ā4�j��Y�s"������B1�J�p�HV1���S;���h5A��X�2�|L�Ѭ�����_ |^�;��©E����o���i[ñ�9o�ޮo��t���3I����t��=6�7������g��OC�~�˸9R��}7h�����|��.$ܰ�7�P�H"p8�|6†[��
.åb���$!��n���/�O�NFy��^��h8��b�/.��p��h���ylJ�pg�	4��2�u�D":�����$���GrE��b��G��X��_�ɷͧ�f���#�89��������+XA�U�3�>�)���*,���_)�2tP��wz��?�p��QVE	%*p���sr�L��_��f܌]wF�i�QԮa�"t۬�|Z[|����SAd,�y@^t���J��b��z�s�!Ⱥc��.[s3���E�<R��)������\)Ro��Ý��q�T����cX�pY�KY�WX���b�t����P1Q\#�����)K�B���'niз`j�
�W�u�fqC�b�KV�)�B
�uQ�:����):x�7�@�%��Y��M�t����M�|�u��<Y�Ug���Z�gqrS����Ks���e�mq�'�Y�6Y�p�29}�Zp�jgӈM]9g���͙�Q�|�\Κ��^������xs8�F�$=�(PruC�
�7Ii�����7a��&	��6)�UXI�@J�V�=��(',��w��I������5���hTc)n�M�s�[-l��ɺ�F`�Fܸ.D)��b����\�i�E�?@Cy���Z���a�%h��0����\L Y��sz�^�L�yGs��U_¾M����{�ǧ��X�X%
�fz�E���҆��  ��J~������V5|�g��V^v��i��ӣ3T��{��!o���*�C}(R�~*�"ůI�p�Huw�ʅ�X9'`��Ic�Q���"�j/L*��T�Å&��ݹ�lu8̼Qڟ4jd��5Q̗���=hWl��)y�F5��#������y�L?�ѦP��|��pu+��ֶ��*�(���
����ˆ�1C	ӒeXt�p��0��L�x�$sbݳf�M��LNR���j�
�gu
oV_T>�6	}A��š���<2ᦵN���;u��Û˗ο�T8�#��ޥdJ���A�Ϝ<yǛ�'�w*{rC�2n�Lє�qn�P�D�Im���l$E����M)�R�M�G�&E�Ìb�r�����,�)7���}����x�\��l+W7�F3��W�����K.��]hjY��F�丬i���M�&��@pL#"�柌�34R�O�lk`J��c��w\�o�@LN�[��]�
����W���Y��W��%BՄ��QO�dy��u�6V;k�J@B+�H��5H�<��og9�h�%�&5��{S�O7,��<�"�}-�W��Y
=�iܯ�&��	��Mh8h�l����i8��A��2u�+�1i��#R�wm
|A�1���r�Q��r���GD�͑��ý�=(8b&C��Z���h�,HEܼE�\8��6�
y�Z��F�b���^����M�PC
r��D����e��ԱA����}7>$vH"��lA�����SC�y�4������)�td���S�O�A�خ8�"��g;PV�9�P�5O~ٺ�-�G��95�/��d�Q�\H��)�7�y�钤Ur�p{�K�	�N������܁>;�U��n��^����97��%Q$�3l��x��~��î��!,n�PQ�^c'_�ewB�R��n/��}�w9$��7B�J����.�@�D)�Q	��O�zk
E֕��b
�n,oc�X ��0͑�ӌA�����}��n�n�K��
���w�-���:�q�e���r�M�"���&��D�ot��� ���U
@��W��cl�
V�S�t�#m�n(��n�܊�(�f��:N���33���`�t5Q��uݼӽY7+0��`���u��T��7B(%�Y|�<��@
�حsQG��G0
 "
�l��U�Pf��	t(�c�I�
��
��R�N[+r�c�L��;YcO���p��bw4�n��S�5�F�h2��T�EU�/�S���qE
���F�χ�Y��[�ο��AoY�f3�
I��5��Y�f3W�b�A��`QΘ�sx&U��?��P5�4���)ͦftț�F[�{M��_k
6o����%Rj�I�yiy6A��A	x��YR���k>�nR ��a��D7�,���fE�,�aI�-����pț$�0`�?s�S�@Dj��J{Ř��.��U�/�h^�N�$yM7�e�&�D?��NN���s]���jp�����(��@Q��3
��]�ђ~�Ƀ$�Yxm׮=���(
/o���� oI�zz����d}��9S(5���F2�Q���s��X�f��̆��EͪȭQ�ti[f�&b�-�߷��g-\0�n~~����y�Cfӊ(��Q���=T��V�827�r��
���E�����
����n�94�[cJ��\c}[=17�jmm8~<^V��5�K���qs
�$k>�!w����'�')��|�Q&�6j5��a�r/F�_�Ƌ�O�pj��-����9<Kst���߻��4>�A/ԁˍ�P֤y0�]�Pʚ7�>Y��I[t|�5�s�S9���H,�\G=�&77���a���v���H��7�D��ߛ��r�A�D�9@'�'\���/Y\�p㝕{l�q>� �
���7�&+�pCt.�����sOq�)�j����Ā�	'16^�ŕ�"UC�ׅAX.q3H��"&UBۮ��#&�P����\�.��O����C++����X��Z�y�V)9�Ra���@ӧ�!�wð;v]E*(g ��%��A�hi��\7�iz��\�B�X�!"Q��<�PI�|̸�R���4!nj����.;ݽX::jn^�9L�ES71��Fiݹ�#���*�F/���ju�}~�8O�}�M{{xlض��	8����[�
o����9��ZϊAu�7���%E��`)	��F��
`������{[[C,%����,��������
��y�na])�����WNb|�	�V��X��淿=���;�r�r��[��}�ɓ'�n>�f�)'-8��6�%O�%��m��y2F�DU^u�$���C�����//ь1G&�8ϻy�E�r�"�&T����ۚ��h���w$�{m%��N�J$�r2�)xs1<��l)�����d�ѸJ	{��E	�4K�����w�Y��[nPٖ+u�$�Ռg�Æ����3��6K�5�����.r�{oK�=����m6��<�YCB�����"�YV�0sG��`	M�7��׺6��5zh�_5`d�nzpP-	.�KH�8�s���d�����K�B
j������e"��@�?1�5j,P�l�6T��*����Y����D@���^qÐ�آ5UuC�ԃ�=;ެG��V��S�D
�T֜���u�:��ll����2�zcNg��E�Qluc��^6�)�֚jl$��i�fh�8��!���Q?Y�
�q��q˜��(�\�����=�!��RS�I��
V�������
m���é%nh��7hµ��A�<�ԧ.�n�uJ*�r���a�b�]:�X_����hx�̗�MJ�;��*����~�w����8�_λ.�����hxXʼ�� �>�//�������}x�q�0��jO���A��\ܰq�&�'�ޮ�tfC�ܥ<�U�]�6��D��|�3S7���c�.R�霡 C%JL�������܁9��s1�L�Q��\QF��W�6�{T�d��2N:�0�%�/S��B4���¨Z�^�{s
܀%?��Lp�#�z�X�A�KXK�0�jP^k
"��=���$�t/œӈbɯ�N.�/��p]?�l?�����7qk�ٴ��ž`w����ʕv�6�h'�D���M�̲�3 �^_�
��2]���:dad
ՍJ��B��xwñ�,���
�-���>������jkk�'�5���q��H��m�:��j�ѧ��M3�,`��2�Y�϶�_���O���"�I�	K���
msj��}�_���Sy�BNJ�����ܜ&�/�I����>��o�O�G��?J����ps`s8�&�
�&n�A*Vv.��JEJf��J%��:�����&]��ߗ΂o�Fog�#�㫭�psp{W��������
2�6�N��5%)c�~���W��}
�#������y-�7oܼ���Qn�p����;ba�L��&b��
N�T=}�����5�f�������s�ڍ
��*|�!�6���*�����›q�PB�iUyԋ1Փu�Қ‹�a�2��sU�FRߐ�G1z̠2��l8(FK��-J+<T�Q���EO�u�.;�����e!�pW9����W��g/�7�-�\o�d8F�h�=��&%kx�F[�U1�;)�)bS�u�7s�C����jh�bb�Sjj��ᨵQ<h� h[�{�z���dE	�C䎱�l�o�H����=I�x�:L�P�j�n}����U�)5L�%��N�{t��¼��[�45��O��~
�|�2��}�� \5�@蜪��	ܼ�m��7����ߝ����S-�>�]�h�ʍ�#�n�I�
��8��I
n$N�2�2Iܰi	��5nrs*,�C�7�/�|#j+79n\�h㙀���K�7�4�
�
�&u�ȿx�^|ׁ�A��g��r�hb~�c${�7n�W��5���O~��}�{����C�
�\�D��0x�ҡ�D�z,75#X�sjiծ���7��P��g����:o�;aS�d��e\8̵[n�Ƴ%F��"�E)���9o��5�u��)�Z�oir���"{N���6-���'ւ�����J�ߺ����7o���|S�*'�Eճ�b.Ui<(T7�7��jg}}*��ouִY$U���ap�"-�M�X!�.q��)�5@o�#薆��$�
�����o��s>���Xc�p&!��<v'j���G�X'��B�a���-L(ԍ�2>^_�[�Ʒ_|���I�6Y<H�V�ZZ��~�˟���0�.�S��J�ir�0[�ͧ?����}�9��kDI��+����������Lλ1�8w{�v�ǂ͌9���h#HrP��l����Q�KoOm#��<�?҆��h�!l<%q�cE����T+�:�*�F��rظ�a�p��,�tkEm������mT7��+	8�\�'*-���k��)
d��b���i�Q8���Z��.ҷ��8��q��֒�kC+
��E֍���ҠA���W�G�2*�rM��q�c����Z3�8yX����T��kjYCɂQWy��h�nD8���)���o�2B��j���21%Y���><-6ѲA��6%��X�J\|�aSZ�nG��gUዣ�n�3�?tY���k^���_<�jhS�pu�9��&g�����1���2� �҅w�3y�V�^̶���[;�|����c�?7�F�0bQ���ҫpu8mh���6ww5w��si�T��w�
�b���K��l
_TE��j�qz�!�p���n���Mߍ��_�F�(�C
'��JWb���uMv��ҫ�;�s�������e/��S/��_�}=C��5��e���pHNEq�E�p	C>��)��
&�pc+p��H�ܹ���1��A{����j���ۈ�&x`﫞n�mu��Z�X��DgG��ZA�֔�bF�5���zC�L��
��������3(��񥹠6�s�slL9��Y:�6���3�����es����M�L�F/)���s�k��W�c�#�H���a�P)m,�c�p��34S�M�qtM"dn�ף�1:&�4ǽ�V�3Vx��I�œ8lx��=X�B܌I�r���*�0��9Y�߇�j�;7N� ��p>��W�jb�^�+�%V]7�ۜ���Y5��?D�z�<jHi��ݞk�;�6G�\���ɜ9}.��Km�cv��#O{2���'�$w
�(�66D�p��@�0��Q�wnR�[�H�̫��2������@Ime	x4�+�u7>�_�x�Ĥj�6ޔ8I۸��Gr4��VM���x#��b��	Y$zي�
�0�Ϲ�,����4_�
�N��7߃4?����޸a�� H~�ez�C�w���)
v�(���d�:��Րց�2zS�x��ϝ��׃k�f�|e���_̎��.�ND�L�\CE%S
�@�P.����	�㍝���1�x4YZ�RS��
�%F۪���!�(y3
 ��o�B�@hSڱ�XM�WAQo)d�ߣ��G1�Vx�0�S����z�7CKo�1#:d�GVQ�+�x9�pp��_�6�˄e
:�1�]ə��k5c,��i,=ʆ�lE��kv���;��a�BC��ݧ�Wf�JE
���&L�EC�c�囥玼ih���,���8���z�?wz���9��S�%�{��ξ��<�'���G~�ס�b��D�盏l����ݤ��5�d��}�5�d	�r	�=�=��:�N8�3c]T��ɀ�{�*T��j
7������r�M�U�U��p�GtEf�%�����o�G�D��
��w�����26N�F(8@;�����J�FV�F�1��)��_	 0��ÂHӣ�33?��9��1��f�tc8	|Ͷ�h��6T���o��7&��kKQ����&Ƶ�UL�#�j	�S��-(�E���&���b����<�ϵ�9�(0���D�Σ�v�B뺙��=��������
�mb�k¢�_�_4����F��˥q}
$5B҇�|�/G����!^�
f�;�m��Q�9�G�	��{�װ封�Ї>�iH�m��(�rp�2`o���;�P[jx����g��lS&|N����c|<�
C����S��M~���|��DP'��e��<^�bRI�$gNz�cϜ�2�m�u&q�:�3…��@����&k\	9�-�(y
��Ρ��FHxwsp*m��|�a��0�.mrC*���P)��4��~(�'G�!y/���W����|Y��K�ވ���TJx0V��n��0�s{z�T�)�#8�
m�ht+��.�i5=���J��??+��j�7��2����M��7�R,�ub�� |�K��%���(��c=�p���Y�d'܀/sn6��D�Q�U�O� jR/�J]%:�1n���:��Yx�ϊ���c�;6����"
�Z϶�U���lC�"��p��\��f��9B�6j�k�,��@���m�2u����}
ZQZT<�p���&��!�PC��L�7�/o k����7��}�A;��h�ɺ!3��TQ�I��ޮ�KZܴ���2��ɧ��5Y�v����8c�`I��ZV
��F��d�����k���T�����ݺ�����x�&c����ES�<�M��AǕ1'�+�3�k�H��[5pi0y?�2��-<7|1\ꕴ���;��+�R��&V:�6[������s�i�JO���O��`�w�����(�
��2�����vO�2ޝAzK p�,j�>b�mgl<j�*��
����םt���{
^!1�+kCQ�)jJ�!�/|��g���Ǫ�P%a0�EK���
(
���QY�&�
�v���/2G@�Ȉ�RO��@��v����ǔ��*$�Aﭝ�v��Eo��.",=�q�Z�`)R���$�,������łat�"|6Z]f�A��` "��$�T.$����q�Ԁ��:��cm�����PEٜp>�q��ѣ��^�[��]�Q�`�.ʆ��i7�6k��B	m^�|�^�����l�#.���J<�6o�YFV���L�j��n^qD|7���oK��M�r�}�����!�d^��HO�x��/5P���C�S� ܴ�/���m��R͌r�DL���@˘��H��Q���[�ݗ���9kru��.���,BF#�l�&:H<�<į��0��D?�CQ�73K#-�ǔ�7kH.goP�^�4� �"�i5u�;�Y�k�'�/5n�+W�
uȸ ���Ȑ�++���EQæs�����k|U�	���'`�8$�KC
@^]:KHQp�����|��6�G6�<���c�T��U#n�ɛ���e��1�-�[���f�0��r��O�n�Z��_.Aa��mڨkCJ��Ɗ)�\d�� �h�+*��LM+�D������Y�׳�?a�T>@-�c;w�����?���5���/c�M�ZJe8揼�(��젃M��%H�&N�u��$m���/d���,��Q{�9�#9#<W7���M��OX��b��?Ц�q��e�a���UY_���<���_IQ{p�[�Ú
���8�q�>#N��a���č��8�nč7�9m2�`H��'aW]�ׂr0��p2�R+4?�!�=w#X\��E����ό�D�f���"gP쀛q2���o]�0��)6����)%���5�nb%�r�?��:ZzyZz��=T@�����M8��dVlS��f�h�T��F;*�
[�7�]�4��G+Tz/�-���[�m#u�<��g�
��#�:1��g���e����b:�p��+�6��E.�=+0�̲Qe4jZ�\i���1��%�pg}�C!r@	�S�]J)���5?;i���^,LU���ֶ���bOe>k��P4���}���d뼟��X�7�nϠK��+O|��Y�=�BɄ��a�'
Ly�e����9w�7G&0u8�&&��Bi5!o�Mm�]-�&�
�B7xw���G��a�4�7�0�re�+�/�
�ie�ţ��/eV�!ڼ̛D����D�ð�D
7촪B�#/�p2��g��x��l�aP�qj]�%�8u��4K���	�1��9c�ٷ�?�ЙWL��q���æ��[�)(0��ojnn�_�I�Q�`R֨��K`�WE��W����Y$���"�*�|L��/�Zx
,\768�
��n"]�a\�HUCjq�uh�̝E؈�
�M���)ZŶZ\ān-�ْ
��c	o��5ǭ���	0�4�x��R�~J�

�������(BR<%��1��GS-�$�r|vgw~��I�cPX��]\�Zdi긳�5CO�y�
�/����O��z��\�L��+X�.��#�ƑBI�ϥM$sCؤ�)ޖ��y�Q��7��.&�����#�hb���P��B���҆n+���Fj��(J�fBUPbV	l��ыvhR0�c��DLH�jE#���JL5��h4��|��{���xe}��9gΜ��*O~��T��T!ϐ7�`��&�S�4n��A?�+	���nZ%�uf���̙��!q�Q�#������9U�ܠ�B[�SKҜ4v1M��6���8��9%n4�.���y�+D�8Z��-�����{��Y�
�7S�A�g)�v긥6��)��GF:W�د���B�^�z�+�\:��6�B�
� <���� �&�FcJ��Q���.�F�6�D��:Sy�����k$7�h/@J�6M��M�.K�BE�q����)�~�@��1��}\�F5 �;ƥß���=�R+V�q�p�c�fW9#5dM�RA���v�B(�hP��7�f���<�)y�����І|��z�a��C¾����0��]g�h����@���Lq#��V-�V�L�����!��r�N�m�/���0����GqFx�&Ǎ�&`��$���L�d������.�F�NG�
�&�g��&W7�F�t�P����vUr
U`�k�jOL��sN�W��{e�:ib�!�7idM���rcI���T��{��N�"�qs��
oH&�͔L�Y�0�͓���Bΰ�Y�Ύ�[]�4�>��n�;����0�:4��U��������t�3H-ĎKF����̓�ͼ�8�Eor�P�6����)V�ss�H�F��m�I�Q؀d�a�VMw�wxT�G2.�q��u�3����.�
��hoCzfqSc�,pCNK�*�N�6��<�m����j����H>��ژ�ǣ.�n5�I�2H%n�I���O}�@�%���c�;hO���TO���l:<C��aV܆���k�g3�i�C4?�κ��
���\۳��ADK@�g��+��%��7Ҋ{=�R�p
:�N�xr�/����*'�Q���&��<~��y7��xn�W�f��0�AԸ�����O�����
3�[���%Ual�M��C��P����M���o�<W5��L^�(�P�|�q�'Ns���ދ$c�/�##s�<�\
ܬ�%<����!���il�������f�y7`�?2�0��0.b��G�
�|��j��Sa;�3�T����7���"��K���@�mϛ�' ��!�l�K��d��"Fac)�8i�5�"˷��Qz�-���-z�>��c"44�w��1A[
op��f\:�ƞY�ֻp�@Ra�Y�Dzif��L���\6�E-:hK�%hx�Ԇ:���<Y�b��x@R�jͰ�a��pݎ���_��D�Ă� �����h9�������B��57�8\Sk�HLg
8hHql},�W����5��1����7�%pi��Ԋ�bp�i��<{�^�l��!m?��K�Q٤�bgU��k@���t��[�-/��:���?lS8<�Pv���89J�999_^��F�ת��r�����"#��@��\I��~�C�G�<7�t=s�ؓ�3bE�
%	�k̏��D0�:j�O�lse�:�v�)�h�f~�ذ�W��{'
��NWq�2��%�%R	Vȧ�gI�)
~(Ŗ�
H�E�XU�b԰����	�t��xt�o���V���c�+��A�+�bV��W�u��>R�8��3]-*�;ƐZL���Q���7�fBaS#]�<*xN��g���X��*�4�;�lr�9_�Z��@�e�7�(����1��s��;IԳ���uf��K8l(G�?���xF��ԗ��
L�p��~ZP�;"��ԊU�~xD�.d[j�
=/�0��I>(n~�e�`!p�9\���H��������e�4� g"D剱pw�N�4nB){M�N̼��b����
�柱�1u��vJr���2���׬H܆�ܜ�4���V�����+�j�]as�V��ʁ�ɴ�}�ܬҰ��q�h]3"w��us����K��bDz(>�%�|@�쥯^���ۇ��Ε~������U@FC��b�F��A��Ƈ��6ʱ�7R� c���LN��?ւ�fK��OC�����:��7�v�q�͡�tqxʔ����o�wኘ`��(d��V�SO}��G
�
8w'�u
���f��M&�]�y",�GaI�r��	n����{p�H��.y�<F,�#Kv�N�^�>���:���p�@��F��Ì������wh�n3l4��`89;|G���9��������������dH���_��SwbI�U���<���%ic$��8:�2ܠ��gז��7��w�Rpsfi��_��ѥ˹UM$f;���q�g.N�^$���������-Zu��aK>�#3D�B���rœy��'qxg�3�
��r��79\*lq�vp�����Zz>oh8�N��ӕ����SmV��=E
�a��M^�n�4�.Y7��A�Up� ���UU�7G�;o�&~��ߎIE��P�6��T�F�"_lh�Fx�*S��G�H0i�:Kp0(_}Db�Qi�`�S:��1�b��F'v|spG�v&����R�Iw��*ω�ߨ'���ȔP�uP�����?quf��噉qD
+œl��I8<��GA&;'���F��9�F��k@	5�"<ȴ	�=��󁄥F�B�
��{gD��)}瓰�0ܗT=-P��ӣ|M=t�}�]��X�H���B}�/��x=b�����_��w1��ߴ��>&��b:��m�o��5�G�T$OZ����-!�?�k~nk���=�Q��$�,�ƻ�^�0Esvji�c�:>{9Q*���81r�D���/�.M����,�w�!�B�܏�#G�x�N��J���g�,\�ŧ�e��W�E��꽄-�T(������q�qd���-��:��	n`�pc��RsV#�`+�r�ѧ:�!�]�y����t������.��؀t�Ro��NM��l\*�-�xo�j�jX�0���#�#	�{��1��%L�!�#�#�i	����1TE�h2�)k��]�F�o��r��7?�
�-ZNZAH�`21���h� �	z�
D#	�|�_C��5��QB�(o$tEɀ_�`Z}����=&�@�J�?�1�N,�*����p�?v�W����6prV/ڍ,�d}A->θL~�#Zuj���,l�\Fu=���!3�j��0���<���v��
�7�
=����,z�CN1^*]�sn�G�܈7"�kq_EפO�����G���:��/��A��|�}���:�`A��s�;p�3y��;i�@�[ӳC}�����R�����ly~~�-x�f���8N�$��I[n3��H�s|T�Jмf�|ږcS�������/V.rRRr*88�_�2{�C��i 	���&g��܏#f�
��'gdnnc����7�NA���G�P�pv�҈^�9�7�V�;����|����*�c����1!{�5�#d#��8�$�
q9x����A9#�.��P�e���%�k��0��鞅B�
nx�A���������K̕1.1h���o<33�+pc<I� T�ƛ��4��"Jx�"��R�r.#��M�1�fJ��8qr,:�'@���ޕ;q�r�VL�����bq�ϩa,"Q4@��(%��I���3�	��M�@�R��$�j�����cKK��-0ѡ���S�K=׮�}���z�����GUC��ǡ�
/��S�|��vE�*u��V�RX�̩λQ[�/Wuލ�y����K�?�Ƀ�Y�L�/�6���;�1��ӓKCC��P�D!aivjrrpqmm����qB��!�������̇��&߫�����N�He�m�JP�k1Y�Y������8���H�n^�	q`���q%�<9��!p7pguud�Fţ,���l�.2�t���x�:͝�97/��ɽ��9O�	<��qك8�9M�H�c%�i8�F��#�66[S�tK��h��=�\tDZٹ���!XN�,��M+ΉB]��/L�3׭��5����uc5���l��?~5R���S�X`d�����f���+u8�D^�at@�	����	���^;t�dv���6��
N��8y�
>x����Kj锗�uU3=Y>V(�v�"�c�10�$���#4-�pXY�H=vş�Sez
�SK��:_��&9<��55�y�Y��&^��X��]m���BEҠ��P`�m>*�����}Ŧ-?�s���s�m<wa`����qy�<���}Z^&��3'C�.����Ry��Q��b��;55���}q�
�d��+	9>�7�|�y�*=̻����M�x��|mU`�sq�/��4ь=�&·GFӲ���7
�7��߮�7I�$�gNH�T�=�a��d�|�
�HG�\j_7�Ɔ]����1^��O"¦��DS� m0{ڛ_<��Qލi�yJ�b��^S��e�x)���ɛ �	?��jC|�|ſ�@�R�@�3�Ci���~����Ȅ�k
�(�Ę�BQ�0�㘔�f�+�a׈�5��u�Y5�GVB��Ϡn�W��"f��ޝf�n���A��D���0Yx�*܉����W�
vD�90H��vUT>�(��Y��:��Y*:GM#t��쓃�R���,&6��ᵈ*��#[2FY��k�c�0s�KX\KȜ�LUx�巽�-�f��˶������s�����ʂ,���M�VV�j>��<���K�K��,p�Qꛚ��sCmS���9W�to`g�Rϰ��$n9Dr�����l;l�ʼ2�p� :��v�i9.sp�
ΜM���&>s���x��x{1U�7Sx���`�_���(�f�
��:T<�D�U�@�\�_�Ls�:IC�p�&9��əC�Z?ZD����~�	T�"�DHK�B�d{�o��?O���?D!;܃Ci����Ġ�u�)XIx��oH�c���F���Mo��ט*�`�`J�nOs}1@�x�����K�+��n�dң"�7��"�����+��ˆ�v��Ҹ��yŞ.�A��q\;�oBž�t���i�UX�ZϠ�.��A܀����j�0��-��4S�u�p�g�̤r�f�n\˰���(nȑ'N�[������P��i��#/��U9n�n~l����s�>7l��f�x��'?}�
��o8p�H�:��_kn}{���霧��|Jv�������w�)���F��C��^��ɷ��3�VQ7�n��y��.U\�n��M��\��-�T/ہ[��r���aU$NE�T���֖V5o���w�o�_԰��Qܴ����1m\i:d8�}��eU����
��7Z4n�	i�)�����ۺ9#2.o�HuXI�QY{ta�?~3˗i��\u�&��^<<!'SnP�2'��W�GF�͆!0�vDi�������Q��3��h�'��`6-�L2RȢqp2n
N-�bG��
a(Q(�(��%�i�D�m�5�*�/X��'�p���̸!v���Pp�czq�N�l��Uf���8U"�����S:�CNE��ű�t� ����*l��'Ŏ��H^��@coٻ��1������C�d�1�H�+\�K%-�Ϫu�U2��\�br=�5S�p����f�9v?��P��'�����ͯ+r�� ͙��}���㿸u�η�ܹ�����B�i�A���C����ŕ�b����9�[ƺ�Sp�]^G����e�R卩^^�<4
�y����&5K�y/�F�t����p3�Լ�����7�9��avTu|*S��j��
�u�RQ��;�[�J��-ѥ�S����fԠ�h�Ε��0���6�;�W�j�7M�k�[�4���|��XЙJ��'ܰ�e�i���(
��s���hCE�pN�؛|3���2�\5���J�yP׌�o���B��̠o8m��2�ȡ��fe���:�v��엃Sp���2�(J�Z!V�;�\�^�Mc�i�� S_�5
%����Qd�6�s�S�j7���U/LM-�5�م0�z��4����-.,��p�}��~�	T�1��=+�����0��M���������,�a�ޛrk��ѧ�mo;�`"��6��3G��ܧ�<����GfC�wn���7{�����O:L�'?�|񧟬Z߿u�?���;O?���Xߦc����ly�8oKH���P�T>�w3�[�N�BYȚ|ms��gu��_¦:J��L�zbe.�f!m����R�䍸	]c�Asɽ�7�Q%U��F9o���t�6�8QK�d)�:z�o�0ܥ��oh�	�C�E��H�K�m:��	;s�m�9G��#`��/|�&�7��ӛu��-�M�d�*�4�:|��G�Vƣt�S����),��2��'Wč�h��3��b4�	H��Z�+����D�3t��M��%�����#��$I|����8���
;�N|�����פ�V�#�E'0���Kr|����|>߂@ù,���'1O�}|%f�C|�X��Ju<��Ɩ��J�A��[�8�	��=��-h?pk?�V4F�
,LMOM������������O\�C�=G���H�{õk!\��\��1R��U��R��h#g��+�,���T���T�nl\���ɓ�f77_|���8�`ˆ:~���o�yz�LN~�[OM���"�}�0�p�/97+�7.�ò����z2����P���/~��oĸ<�Yl�LɎB��I���!�kk���K�l�����ӆ}E��xH4<A'�
O҉���7'J8�\�o?ۆ�h��c���	��I��kĥx���Vm�:�'�B�褉���|U��WYe��$�L�~�Y#?��
�MqВ\�2��y�I�`Ι�gO��w��c�J�]�c3�<�q���E%Nۉ�gf�76�a����*.7�vmcLn�h���qj�����Nj
�@t�q�h���]��%-.�ſ.n�+m�<�ŋa��3���{^�ī�Ыk�nxI�qAP)��u�ف�`��.�S㠴�����T6<jC�2�
�S�{߹�������{��߳�H㉏� �x׮7P0�O�
=l-QA����j���jք�q�z${˚-�l��ƒ��{���]{/\ЪZ��|����֍�~�_�ŝ�0��;�o�gr�r'1*+�Eʚ1�:JK��e�
բ�w���&�?r�T�A�ZVo��*��Π�F���n�6�x�q�#��qqF�˃�&-�����iF	%����t+�qI�<$^M�ʹ(�+P7P�)9a
L��)����_��_(֏��
�4�~im~�Fj��Y�i�15�=���F� B@����I���I[��_s���$x�eUɪ�n}8r�R��-�
?Y���	qS�.��ܮ���-�+�3up�\�S�A�{�Ʋ���wӉ/��H�b�&���U5#�Z�Oɜ�ƈ1����.y�WY�Y�X�!�h�L4��ڡ��D����6�m{�7�j�	�3�_�Y8u$�T���>m������)��=���ľ�I�޸n�����P�K��\~z�܇�z���%��G�����fƇ;Ǝ$FlW�<�ܪ�W��e��Axc��9lq��\�Ì�GB�l˻y=�y����������.����~��y������/?}��{�_$��p}�P�.��X& �Ȯ�8������E��++����yo7T�܅�y�e�i>�!��Gu���V�-U|�t�Ow�nκ
K����!�$Hr7�&�#l4e�7��a�n�˛t����~.�s�J�)���>��r������u�l����,�ϭaS�(z�mX�hAm&a�4��y��ܴ�H��f�9��)���!]\XX`A+OLM��!�8u�����[�-LL�q����	'/F�Ѩ.#���t�
?@L�N�BnU�J�am$�
�B�s��'ƣ�hW*f����k�����=*i2]��k1�
�]�N��$�c��Db���x_���&
=���L#Zz����0?��b��yc�	��X�1=�E�bX"�D�K�f�t��S�����6_��h���&�2��v�Q�)��!��x���W<�~"أs'9����6[5S�TEx�w���6^|�����1�o@�6����}�׏~���N�95t�ֹo�֝IXN^”
g2��Q3��"���������r�1��i=��MSr�b�h�teة��H�<��Z�l7��.��
�LհQ�ș3�f�9�#?����3}�b�y��49o��
��*�Cu9C�����y�N58x����7�)���1uܰ��
��-�2�HkBެ�u>�
��
�Di��FZf���S�����7ǥ����5�`�1̽�#'VU����gc�-��Y�=�S3�u,�Roa�$L(M*{h����;M5�xh'Á.M's�&>�Y%X��m�gp;)��>�;&�葆H�i�]�d�pL�S��0���-i�K2�����8*�l"��F��Gm��W�/�TSpH͂�1�:<U7,���c�B��`4~��_����Ha�җ�VX*LNN���C}��� �Zt�79�]�	�p^6/,��ᶞ��3�˽=��Đ�P<"�7��w��f��sH��c={��?a����Ͻ���/���"%��O��89y��e���$�.�K%0S^f��߹���n:�;f���jx��đ7�Ir\0G_�
q�U�wn9}�=ŕ��ض�n>�9ÔP�&-#m��㓺~���dV��i����Fb���[\���J�Z�����@�j��7�4�T��L)���
��+�����r�u�>���r�߻o.A<�D�;XXS��]p+�ޖ�2C��>����7��e�0�<p�5��ƳT�)��ZG��Ȩq�6������c"�ނ&CO�x~뉁���]ZX 	c(���戙Ep���ˁ5���	�։��q�e/��Q �D��("�$X6i�?�K��@��Np�H��f5�W+j�������G*Y\��E
����H���oXOÊ�y�ü�Z/;����j�,^@��Y'�
�4Kӳ�.\�
.g�J�3c��ko�����@��e�I�y��(R2��-���,�q�+y�f�Q0��e�M����=�������f[�g?{��g_��`�ɋ'����nOBVa�L�G�cy��B��rGq;j~��E����av�j����c6����
{UN�9��}�����,�|i�iR�;{k�+�V�Й���q�69��ü������;�J��È�&��&L)�ṱ�Ľ�P�(�3�X��ꮢ��;�F�Q�g���,./���ְ�x��L�����%JV-�h �W95SdT��H�(��9�� �F���q����MP�T�ǯq���ђj7�z�/���)l(�+�<q�ƚ�Ǡ��Ƒ���2���&�O�t�Z�K�E����njl7]�H?Uih#7���yj��s�'N4�`ui#y`�������t�7��g�6�tL�)�꧸�h`�n/XOE�;��6ib8�m��#j�6�>f�;S��dC��un�Wv�h_��2\{����~no�����iu�[�D���(��@RfH��?Ȼ��ݴ1p��@q���.\�0��Ϟ��?{�����6q��d��&a
���^XY�+B��`��̾q�W���W�M�?�����2�]�w�My�_噘c��G6T&L��ӵ-�8g�ڥ��kA�&(���d:���8�ϝ;w���(�@�iZ�B.��aneo��@���hv\��p�Fܰ23�*���M�*�M�L9��Q�++�vG'�M�d�َr���>%c���A��9���j��,��T(�k?�'�2�&s�����Zΐƃۙ����!g������]���šB�Ї���ãM�u�#1��h��\$���+g��A���Ykq����F/������0}x4L�D;�D�!��pS�}?b�:`�,ŝ���|�QΌ7�!���Y����B&�QB޼7qŸ�)����QN1բZ�������@Q���[�qT޾��O97�-�<A;�z,_8�G"������f�f�� _���
���9�Ԯ��칶��k{�,}�+�C�TO�e���C+�(�S��36���P�w��dW|7�x�flLq�1�!(��?��)<
zX�S��|e�b��s��z��)-�}��<߹Rd���Uf=!��\��(��I�W���?+l���8u�|T�"r����I>"_y�;V���O^��`�y�kX'��3�.��l=��#*�*'h�e���8m����7)��"W��-���ع*�U���"N���RJ�{��90���%nX���G��(����[�T���j�+�Bʴ@K�.T�m��}�����E9H����ᱡ_���"K ���n\9d�~��~���*<IA�:@-��jZfl��;V-"(0B�kmqg(Ji�� ,?@�`K���ڝ\�*�i	/N��+�
v�5���>�a��=#K�LH��c*!x�W5`D�±�3�L5��ӆ�H�i9�
��j��'�bE���,�1*�Y��R���§�GXXg���V ���T�����m�1���kS���C(z,dTbQ����B�=_�V!p��KE��C3��|�`
/�AAw>���-�f��J��W�Q�q�������Psj�y�����]�0v��8��rv� n
�ˋ��BP�����Ri��
���� n.�NO�K�7���^a�'[�'#N�6�s_�:
��&���r�2���&W6��cg>y���3�>w��b��!��y��'1��04�1�E��Y,�0��v�6c����7�
�縩�7�����y/
h���[c��b��vF�pޠQZ{e�ɓH�2�?Y�Q���՛k�7���俴c��tw��T�#pc��~;���^����g?�\��6�RvqꬕRq<������AO��v��j����bI}���p՘���b` J�E<*�P��֏SsiȊ�P�"FO/��:�aF�~���;��$Ax$n�F�@�
�����L�6�8yk��y[���@�
Mo�H�ܟJ�������*��rNk�QM/q���^���P_O���0}g�Pȗ�ɩU�D�B�<"���ywjp��>9;89���`0�R�:�RTv:f�=��v�6ƕ�v�ǯj�f�<��R�q��.=$�<���|���67���4��@E�7?s=��H���^͋I����1K�ͽU������\�6�_~S����g�i��\^���u�
*\8�4�8��e��y�oy�|��bU�����%+ɞJ���;s�d�.�z]��9��'�휞2��a�T"����y>�����@a)4�<��q�y.o�n�W	�2�	vqtD�
�+����7��t���0����ry~����s_����DHv�%��'�
�`�#��]݇��˛�����6�Ǭ�p���F�
�x���(�N�Q���	P��`/�Z��8�#�
"��ȋ��'��q4�^���~¸�B@'3��C�U�� EMC8�I�������;�����1�z�w@C"F��א���İ�D�w�$ͦ����.�2�#��e�ԙ�%�s�v�����7
�I�䂼&�].X�Ɗ���Ț�������za_�ߺ�*�:R��RC���b˦����PI�QǨ^�BL
�x/v���@~�J���U�?��s�ͫ^��/��?�r�cc��R�f�`P����/�[O�J��2īs�F��/^�\K
ܬt�r��9uw�����Pz�`Pצ�8q4���M5����&DŽ��
���"�"m�!發�M1��>	k�)�u��-��wR:9E�	��	��i-;�yYY鴝U'�EJ�&q� :̺qo��f�5�{lܱ�'_��u/E��?�1��������`,�k�IU*�Ơ�\�ys�s�{7W�ɦD���g���E�����٭G�|�ß���v3��'Gpm��
O.D_���.:�v;��k���qe-6�t:+u&���<3��S�P�w��]l�܃	GK
�j�u҅�'�x�kZ��yt%�6��O|��z*C�ޔ2�|�3؅iejM�{��
�L� �3x�wL|T�q�/PJ�-��'uЦn��S����g0�-L,�$�6C��:�a)�+L(��l����Bap�P��
[XX�F�{j5���j���qC[h·��3�Dh(i��$A��2P�%��.,+oLr�n��G���K_�ƒ�)x��36�@ۛ�hIAd���Ok�C}�S�f�<�A�WW�;�wg/^ąvye��6.��P��}���f��殝�O�	8,���A�l���Nd�OO�}$+��-��)_�6����^�Q
F}�ܝ��}w��HĂpa��aY�2���1H�L'�
�f?�	o��2n@��ђbg����cժ�5��7d	7�l�n��ǽ�F7}9y�J�m;�JeLYJ�u���I�e�&���h�+������L)�N�?쮍��R2�	�
�"���m�I����t�K�Z:�Z��BY%�@/�\0�jU7
όGBM�GY�9�Va�pC}%J�(�.dN��.�6���BT5����f��w��nX ?P��-�@�P�k�Céр���;M�A䍽�`�mŢ��8jF*qDYv��)�oG8�:��4s���BW���@	��h$i�EK
�5h0
�BƯ@���%L�cd��D���p_��N=��R͊@I)�2��=d�TVMŸL�U��kё8H���Q	������U��w���������de?��xᅍ��{����ǿ��ie�ka�Py��"*fm�X�?Ip��'NR�ޛ�o�^xazi�̫����!�D��H��77N
�o�U�<$��K�d9:n�R�pt�2�<󐖯�_��+�Ifm�B�8NO��I�W�t�0�3m:��Ѹ9�NԴ����f%T�
������ɩR)�ͧ��L���[�o�Eč���Pĥr?U*��)q�|un~k�{7ׂ����Vu9"��	�����+<��w	/��Zoi*��m^q��
+�
��8�mq��z��tXD#b&�N�qD�N�Z4��a���Na���7���y"�lD,z��9�Q�m����5�Ɯb��ee��3`��w�KRM�N1�m�����>�ИFԱ�>�rB}�� �
�˂p����(�A�(���
N��,�%�Ż]���7��:L�(�
#n�%SE��o���!\�^P�_	���]'���O j�[H�;���oyc�;^H��)�ޖ���sN2�+ԑ�䊶���=Z���3wn�Q�e��xᕚ�€��PM��X�P-mE(�=���:�DM�����F��j,i�JbLkH@�i
��AbD��@hT`k���Վ��V��Yk͚C��{��\�ws���k�7W�S�����`
����{�����;n��������d�
x�i?Q&�7�D$���XR3�(�8!��,mNJ��+S�a#m27N%D�Yw���K�TDN\t�D�ͩ�m;<��9pf�{hbb��87�0f���i��b�[�<Bݘ{7��AͰ`�C��:��M�l���8�\�Ț��n�S�&1��Wg�6�eڝ��I���L��!�3���E3-���Xa��s ��5�E�T�0���1b�P4��Ͼ�ӟ�6v�x��S��%i�Ts��ulixfh��Pd��}�ѩ�������7�vo�
��!<%@�V��mL�7T�{d>�j�G%�ڠ"�rY�K�J�h����g�qP11�A������cs��oP��,�~���m�YE֘OOM�#�ep[7�7��,�H�Ɩ�̘wtS�tV<�'��
�B�t���-��czil��7X|���7K��A�����w�]S�h��'�<m�S�u��n��E�kpπ��r/�E�,�X�$�M�>�)h����Oz�͍kw��]\���-R
t/޹so���o��B�<|��c�O�Ʒbx�0C�f��&.`s\�g�0V���0�ĩ��f�O��	�(��+YT��n�x����9.{z��h�ӆ��1��m��L��_��D/�	���8i�l���o8��.�k@�����#vD
o
Y�vd}(�������D�c��*o��k�6P�.\� nfڛ��Ԯΰ��YB�;�f�Q~�E��a�u�=t���|<�bD�l����;����&��r&_s��fM��J��DQW3QEqS�5N�\�{��St�3�/F�8s�1�q�AՑ9{M�6�$����Ԅ�!,�9J���9M|%I�S� �h�	��*ڒ�4�f�ؖش��:+I�Kę�/�5E+.ӆ
x�+f�!��9�sE�'��d��(�B�p�Ztc_��]�7��1>
��
[/#V�5��x�s�
�M�>�
cg��_�jj��NP���Y�/�1�aG��d�"�Q$�}Hd˄���˺�|����6�
�,�/N˲��I��Xލ��Ν�k�<���[�7ׯݾ{��"�>�T蛇��Q:ۘ�W���*+].H����/���/\g���(x����=A$�y�}�5�⩜ʋ����Zv(W0��[Z�{B�$J�8�������!������}�f���5Y�ⅵ-��h=4�R��)�擖��Ӓ'�M�nL���������*w3c*�������|&bc���(�
p�W/es�)@��a[��x~�<<n�x���jd��,�Fʸ�%�Zn�Ujb��Y.�Ó�eqyr3�����L�8"�Uc#�����6&��
�_r4���\j-�S8"�T$�ū�!�MTT�������ߤ1dgc�Ԍ����\֫�X����X+�R�X�5$!4+�W���nvދ��]�����;�14҈���Q�m����ATY�
���4���Z�<%6�����_Q����cf_�cNW���n��jͯ�q��'B������A����'7m��=�P(�J��V���h%�-<�*H��������͗�|��\�������/~��_߻���O蚇�<R� p�?����?��|yxzv�…�Jq
�<�ih3Hph�n��o�h3A�}���U�Y�5ٙm��&Z&��e����`��l��+kBx�@����O�
�m�|�V��i��l:�Eٶ��i�A�蠙֚2l�9\H;{؅%%o�G!n�
�m�#�w��U9��n�2��;�2w�&M�0��'u�L����fϵL�}y���
�z�-ګ��)?y;�h�s� ԧw��
�a���+!��f��D�h9Apc�<6�<�:�؉��
BS���9ߵ�?��$:���K�ImL��p#i��{ n�
� +�?��,c�ja%;	b[Y�+��	֕��hTA$�%>�e�×Ȥ�yv��c�7����y0�O7)m�&�s���;�Nr��rJ���ٓ;�s��	|?VCߌ|��8N[-��f!�mĪ0p���G�>>>x�*)���KW1�0����ؚ]���cő�-�i���T]��N+H�Tn*�&M_�6�xuiJ�zq�|�r4���5��ϻy22��w��E7o�{p���_���n/�yx�o{���=z�=Ž��_^�������P����g�,R��1D����~✸�i�-־^R���
!p,h9.�Qs�8*9p�6n\����������pUYI�xs�$޶����O}1L&�ŝ}�[(��
���e<7|bSS�Fހ�1」�HЋ�T��;'+eX^l*���%�,���Y����!p��4��l���Q�6��O�A)�F�`d�<C���W�Hܐ6��$J�x�J�m�ʅ�d8i69�aRM���6v
z����L�(�-`����k���E�5��ʲ�M*���6Z>6�DI�:���u���v6���U�w���6�naK��np�nUzg?�&�x+q����ݻ�=a�u��.�Ji��ݣ+k�{��!����`@��o)gn׮��s_�z��ӵ�*�6l߿�6!u�5(�ӧ�f��գg.}�������6Ծ~E�S�&��v�i�V�9]*�
Q\�
��P��j�	�g*����������I���әbn���v���f�S$�Y$u��"��C��w�����G�����^\���yL�˔1�P�r�y�|a��������8q)D�䅈�2�N1A�vx�j0(��
���8vK҆��9��.��ɉ7��FQ�b�	���=�`#���-}C���,��
-�=e��D�`t��f��R�p��&�F�JM
.{݄�I��x#r<X&��
l*��qڈ�+�-�v�j��lhPޔ;��z�
�t,���Ӄġ�1���ɿ|>���7���^�c]�,��:�z���^�1�����oLڙ�C��N�W���;S2�8)�*�\ �Ϥ�!L8\1�#`��Ƹ�Z��eTܬ�^}����TEz��
~�����R�XE�kFk�V m�$C|3^֐4���L�8���#���LEnKf�]��Z!v�,� i��8X�������J$ӣk��3ŷut�X:6���O��4�V�)����^���$��]�0r�����m��؞���t��f#�l7�l�ֱ�e�'!JJ��fmu
`�	Kj(i�@��� ����֊�ϟ7�M�6��A/��X��0��?�L�n��ۋ��Z�~6�$�����B���.OIj4/OuN/�q�M��y��?
��@�C���@�7e�bO�M\X�~�\�t��'�X���(S;�|�[vbY%4���v���{��w�EL>]f��7�P�}�Dz̾�F~'@��!n^�K;*UkJ�%�
���x��ϫ��۪�n�*gy���3R�p3��_�7��g��,[�F��2~z����թ�
7|"a���ӟ�4M,���XSGI)��Ų��Ȗ�O{�����"�7������N��m�=��4��*;7Eˏ��SOЬ&SW���1�m&p���Ԫ�ߴE�Po�UQW�SwA���VW��lц�gy�p�أ�%MĄܥzi��ލ�F���K��ۺyw��b/U��z�4�)+�m�F�Fq׬��	71��rG�����&
o8q�P,���=�sx��Nuo�>4�u�N��Kx�s����?�nټu���'�K�	� �
+�"m�O����U��0���:{�&h[��brq�-�Z�'������T�L���'Qݼ��x����3��o��8�7���
�ع�r�p�/��/߾���o���3�]P������m�N����J"_�p6o�5A�V���&�x��L�,�Hqsqo����[p��;Cm�����jŎ�LY6i'��7�;p��*��R7$ވ�����<�yP��k��+�DY���}�����M��l(l������'�s�s���%���_7S����
����4�fgg�6w�����M��=��)��3�~�̑1D�C�P+ϑ}+hΫw8pcl
Ө
��U�\�\*���Tr�p�
�/5g('=O�s���t���d�E����8���t��:��M����� �0�8fo�w+������"��,_�i�y��znqZ�1?��?ķbiV称52V�
�EeB�QY�9
5s�9VutVRԗ��Q[��Y�Mi�r��|����Ə���b�8�ۺ�G
�:bQ'iهU���Yp#�*x��
o�A6�W�R��~��_���u�բ��$L����y�"�ws�O����뷞��g*�݉d6@�
�b�3ܰ�)C�?	mtb�9��f~x7�8����I��}x�zuAt�kM���})�O�S�F�,]�
��K�,�����S��Ա�2���3F�L�߷�6�
xE�7OR��H/�),��Ø�!�+uG�>��Y��K0��k^����e�T�O���Nf,��T~����b@g�*�ΗM0.���Ip[K�;̓X�){�	�P7����=1��c.%�Ҵ^r�t`�O)�Xu����
k�m�gi�r^�Q���$�l<j�E��j��(�&DXan8�I#���o��V8|Gٮ��/�U�m
��S��|`��E߇�;������M]9bB��
�l�UPa'9|�����bAp���3��yl��M�����,��2�kl�B���0GQz=�AO�pI����X~�8W8q�۟�����w���{Μc^�������I����M�=�z��+(�I*'���/�mh�,�½�,Ԥ\y�_�i���jآWٺ[c��������������방�d�aF�Ű��C��Gl"8�8���,�6-��(:��ؚ�rq~��օ3�/�� m��D.>�ndN{Ws��,�[lN��w�j2�d��wD�@aU���q���Y�7�����3C.��G~P��k�$o��K�0����h�Y�æ���GJM�ޛN�{���g�S,-,Ȃ4l�{�@���H$�I���KYv��w3�Ϛ�-��`]XS�/�Ƃ�7"5py��9|�Ǽr��qO���_�f���x���g��
�h�lR׸夬1<G
��mo��������Sl�0�E�@��	MU���%�w]̄�1��Z��)�[R��t��W�t�LF��a�ZCG��w1��:Q6�Y��w���<�wJ8,|
w/7�/s�w�7�ihI�b��6�"=�JQ+��:m�����e�-Hqs��Ŝ��D�?�J�n��H�P*�
<�Zy��U�y�K^�{lp��L�oj1��M���y�\�ބK�yC5��~�F�d���j��%�����k��$����[�ԓ�o˻��,� 
�o n�g�.�1�7��↭g����S��l.���3XR6�*s�M�7Z��	3`�]�������4����u�\�	ol`���A�� �� i�ٶm�١��}��f�Q��.n�a
�p�4iw_dNϺI>�@��4��c�$\ԓpC����K�����݅�N�kƎ5�c�ل{|��F_аhG�!𛵠��vZR�vd�e�zGC`(Ѽ�b�8���%��
An�(��1�L'Ҫ���l�@��if	#�@՜B5o��6"���:w��+��Z���o�d�Ƣ��6�]�c��J&��|�Ӻv�� n���t^A`�p�")}3|��h��M5�פ�Ã�"�Ew�Xp"�RA(���2՚úM`�uL)��q� �_�O����f�;I����}L�E���œ����w��C��>d>c-.�҉]��R�t�ęwl������Ɯ�J��܆����#�smp�J��*:rB�`��H��dT�3e༺��3^a��b�NŒ�a��/OF
���ސ�}����^4��oS�5�97��@Ts��
b�6�=���ԔI*�6/��adk^�e�+N�Łӎ�g�;8Aχ���#�e���
jD6qf2-%�K�Q�x�U�8m�M��3���Ctu��]߽Ŷ�}�)
GQ��؅��|�9ꛙ
��@�5���ӡ����M]��8�B�L
/qƽ7wi�{�$n�f�X��@�B�
d�TjX��=�XfQ!��� �t��
��Ȥys�QW��X�F��
ޛ(������X��
_����au�=�]`C�f9ٰ�m�o�X{���CDq;Vۄ�r�#34VP�v,7�.��;�*�Ɖ>1%S[��0��ߠPbFvT�-�{yL�Ns�k�Z���;GM�{L�I�H6�g�is�JO{ұ/G\Vq�;$7���H�)�&f�����b	�L^ڬ��U���"����i�Ȯ���H���[7�d��_��F�������t��T��*l"��µ'3�8ӆ�I�����|f�ce!�*	9kZ^�f�'R�{mݿ�L��Uj���1��wCW��>��y/p���w��i8n>��k Gw���<��D�fT��Q��2%����v�)n��I���<�.g?n��^��b�)r�릖�h��d1ɜ�ʜ9���������g1��M�M�o���L{wp���ó���J<�CWGW;�]��i����5ٯéN�%�!i�2��Y�7��K�q�-��sa�q�(}�b�.��l�@x�F��C:���A�M�0�2��[��2)6���~�{麱��Q�&lXn"�Fe�FٹY�N��tK�8a*�Eݜj�ݶ~��1¿��c��'�?3�Œȓ@��%�M�%d�_������>`@ n���"���ӊ�hJ
�D�?���
V+JEܬ�9NmD�mT��+ !C����4��M�}�V-��#s�g�޼T#�911�	&ڮ��5���ָ��ZS�r�FNή�~��8��3'>Z(�?��W��O��^8:r��\��	1�{a4ibv�<N��鄔L�$_����wK����d����u'�_�d�n����˜��x�~����"*e牿�gyt��ClP7�p[&��7��j�pC
Xa4�B3�F�W��ky��r�}
��bGM2+`�l?/�n��g���"�
�$�x�8wvZ��^;���3�Z�oI������&SxDf0�f0�h��@�I{߀�Rqh@�H*��
n��+uP�0�Dc��6*DQv�%�S�
k[�i�ě�.���Ո2|#�b<S�;^�j!�<_�jj���Q��v�/�����q	Ta�睟.9�Vӕf1{�W���F�I�H�8��mÒچ��e��H����r�7�����4̥)��YZE0D����ud�JL"_���/vD��<W���)H2�HSm�1g��Yk~��)�w��aT)N��N+�|-	��Z�����̻Z� als
}�HO��\*�⠕�̚�W���ִ�֪4w����k�h;RK�s���)�J#�:1R?�/�
ւ�N�X�U*0k����ͻ7�a-!p���&�j<#p�J�n`g-�
����D�Ƕ�����t�vVK5��(�|�W�3���Կ���%��Kf�~��7��=y�l�68��4�n>}O��
*�S��L���o�B��H�'�<6i)qX]D���o�1�2a#=�
�"mq�h��*�c��{���C�̲m�q���� !��KgΜ7g���VEY��L	��a�Xz����!cS/%�Ԟ�r���6m�i���:�؃�/=���SdkY�H�D�)I���!����d/���#����x|c'�}�Q_���y���v�"�p��_�q��a�]��w���	g���9������':�6�l��i��T}�)by�'�f����`C�HOqf]DsL�����h顉�)f�8�ή�OZ.<G����(�zsny'�%wd:�7ʭ�[��.�R78VlE�I8���Y��4�?�}TK	���A̴Ry^�A'9���3���I��P7�2,�%m��9n�B�[�JT�g��9��\2e���‰R�H�0��}��R�T�+��e�1Tőb�ټ�a| <�]���R�-[k�B
�;�xi��GѬ�)���[����Խ�zuݚ�vx�K�?�y7Ͽ���UǤ���ݸ~���k��)�������7p c_=P�,��ZR7\�s�p,x�	��p8$�wX�&zq�`���&/'�$���ɹVh��OrGm�R��a`�x�hO��
�	}���g\���{��'���C�Gb
�(l'���-;�bBuu�p:q���н���i�	g�Փi���x�:H���y�_	2�4ЂϒE����l�7��x6�����1c�}��==���:�*����O`�e���8��f�ӟ6�����U7NT_�;�X��׀s�?*��[��=q�X�3�s��Fob�K�a����d�p�ډq�<G+��&�M-��cs��g��^�\��J��ᐆ����ߴ�x�K��E�	��VI�)��%s���/�²�z[�4k��wR�С�'	G_��ZK1V��e�T ��\��$7��+c�g���C�@gGK�
��y�s��B܌�지��
su��Z�*�%5$vEH�Z�����,	S�	š�({X�d۵--����j&�^�e��T=�3…M2�>���M|�'�@��?G��`�)ed����wnܼ�x������(o�6X�7z��k"��:o�Z6��dW�L���#��
��=�U7�sÂ2�&��F�(cn�v�] ��	A!�;���ge
��>�,0����{Q���A[�XUF��"���f�ff�iqDV�Yr���O
�Po����z<�;0��̇�Y2�4`��B��c���q8�FV~���LB�E��:M&4�O[��)�
q�)����q�]XX�_��z��׆{��p�cP�|}�!E����C�[*aH6+�lR��KI���ok��m�ӹ�l>�}�VY��Sv�pH)4_2���j2��k5.�&j��D�)�_��
q�<��5xh2-� B���d3N3�1�$��\޵�-�M!6�Oƥ�\�NN�t�'��M,3~œ��rU�ɱ��p@p��x>7�h�Ι�5T��J�<7R�8G���`v0��0!��Y�<)�r%WN��4/�8�&W()�|d�nJΆY���ck_H,�����H��ŌE�h�8l��~��ҽW���gKy�>�ȃ�-W6!�2>����Z��M-��y2g����*�#P�{��-:k�Uύ�Q<}�v80��jP���]�3�n�K��J ��|4��ʗ�S���r��l��.�S�cHKY#kL�K�ኼ	���2��Y��36�fc��KS�[��{��O��m�#p˓���CX
�5hvPӬ���v���=�-���²��x��hc��j>|���'�M�9 �`7_%v��}L����P�A�������&;TJ���=f4�:LBgŤ|�����/�����\�Xo�3,Z�Q;%b@��q6�r������?Mv!4�tG�S4�.��؟�S'�ߤ�8'S�2�m;
���9�!Vs��D�h�N�eѭ&��΀��(D��'g�8�6룜c� flN���RF�����3ͱ!��HX�&Z�9�P��ȵ�$�9Q|U�"��0^/%�� d������)=]R� ��=�Egg�kޟS�� Pa������0:��n���L�:��$Z.�̑9K���^_�Ŕ�Ie�T<P�S}`�+7��Em�z5�r<= '��yR:�k����`M����F��~�P��%(e/���n,ܵx��;�7��+��:v:�����-*2CŦT��
5N2ɑ1��o����m��O=����J֨lp�|4r����N��	%dx������fׯ4������x];�bΖ}ƣ&Ih�3�SF����8�1j�qw4�v�ߏ�Sta�s��4��
e��˅_Ǿ[J����ұ�ڈ���F����Im��T�f�$f/��i6�@��/�8X? �.���d�WG��1�,,p�X�ԹO�p�&�����*G�ft�Qc�Q���E�1l���F|�q�	�_��"dz�Ԕ�����M]�\�ct�}�3y��WĚFFi
hW ��%.�M���V�Ҷ"&�����e
PO�
1��2����q��X��O�ą\�!��
]�'���L�xB��6�
�h�CX
�T(�2s�O�S�7��f�_�*_*A��aS,:33�X�)��sEV���9z��vtl�ֹ?]Y��+k_d1B��r�Κ�OVEI��,Q]]M�%�C��ZJ8�.
��[�в:�I��g��U�(��p�L���q���&���͟_{�.??����4:���o�ia�Q=��#+��X�̻��&a|8faZy�re�o�h��oz"=�%�G<��*U��I�,�
L_3�K�x�ōK��_:�ݿg�z'̫g�6�.�3�Q��'v���$KU"aJ�E�	94����*��2�.
1�{�7�٤'G/1��xz�_����|�f
'�4�2Nv�.�hw
�`��>ѭH�阒+Q1nttq���P����	Xsp������.o�^N��ό���!y��7i��|>�66e�4-;j�SXQ�(��+�>1�V�be��+!$HC��z&R��� ụ���#�����4�#f�s�-��lq��L͆L�ҖO%�N��Q�!Ol��'��~M�`��#}�^�c^���0�X�,�^D��w�{,��pIec�L�� �u�1�+A1Oc
�‡&0Uh-�7{�Q,��r���>�9E_AS���Hb_�?	Tě�����u��
y�d�<�t���Tn�V��gW�K�2�������G�SR���ҧ�X'��V|B;���Ox
J��N6��%�O���_�n�{c��������k�����X?u��mxsuc��Ew�S�%p�pp����f�t�T�Ӣ'�*bȬi�dM���I��!�$�cL�ΐ�	6Y
�+T��� �!'cNg�#s�?|Iuw�z{�M�%��}�R��]h�'�f��D߬�	멬M���]6�e� B#6_��{�F7`)C{�))�m��EG�Y*�a�a:�������+��	 }��Y�-��GR/dw	<��fu�<}�]"pp-a�6ÈN`d7v��O�.�Q)z�]I�,�&Z���s;9ȺQTz���Q�������P�C��e	�a�ט�`�0$����&�o�Hi��qN�q$�BDh� 2����E�yŘ��M0o,��X����Bc��B�<�~�����(k�8���܌?��MqF�G�Yq���H'gvV��O4ʮ�W���X��!"pV�ߜY�U�q���&ڪ����^P<�L�����7O��f]�r�$�Sիn^��/^�1C�f ���f�ԉ�u/e�O�E�Ҹ^��ֽ�(�mՅ��C�<��O��gT���i�rz!29�?|_>ݹ��o�~{��o�Q��Ḏş!���zg�?=p3?��a����	"s�G��zc�a�.짝έV�t��$��0qY�tMD��CUL,<3P�?V���ͶSK��K�g_wv�� �>"ܘp��$B�L����R�k���k��av`X���#ST5rhJ��+����Y��/?l�*	gÐ~��>���٣��Ks�h��$Mr�s7��;���_
*᥾�
]��h�Z�56Щ0��2���沄A�D(��X�>�!g܁�u@C��K=y��TD��l�xձ�XQ�%�_�@�5g��\J��R�!.0@y�$Xt�c���SR��mx@T�S�D=x��I�4��2},HxnV���+J|�96�Yi��( zT'D���T7&
�M��Sz�pӰ�Ӝ'��Ĵ�]Ѡ\9�n�_�t�0׊�E�5m�"�1�T���Ĭ�ĥj�x�� 
ZȼQ�,)�R�ٽ�Ś�sc���������Ą7|�S��_�Ғe�Pְ�`x���W�m�+}�4����%���MW�ڴ��՛�|���z`�_�n^�;�>A����p���^�ۿ�����澝�%U�w��< 2�Hsj�
ܽ���)�4%�S�j0��ہ!�9�/9��.x��fZbN���4�=4'-�&�^>�%�
Ke��	�dnp�M��/�oKY��^Z��,d��Ж>j��''��
2�#�I{{�w�v.�s��tL�&Tk_%Z�d�>��m�b�P!�D	
��*e���������^M�dvM�Z,T˨���wY��)���a�y�	u��+��!�?�S=|�%�d�6��L*DNv��k�M�������Ǐ�}�~�n��%c��T���%�p)�Xq�_L��15DFS�RT<1�C�SYr�G��i�H����m-���Ͽ�/gV��]�dE���<`��2Pޤ.�D4P?�O�i4�N�����p�~���2!�J{�6f��P(nF�����D���
.kZ��k�?�C:
�m)S*��#XX#�F6���&�Gsctt����
-�W�P��������]��%�,�����1��Ɣ.�N<�6�-'��՛�_�z5/e������o�-�����-
�V<u����oO?�o�0��d����VlK�h���o�_ê����o��YL̷���^kJ]�.`�i{��4t�'���y�C�#\���,�GiRbͥK�
7j�}��ɋs�rGq���c�򷽿��!<6��g�Ё��G9`)oʑZ��ŷ��};v���#��&�nA�H����YJ7ӘV����Y�S85aR�8�	x�Ŝ8Ia)%�t.��ž�`2�tԖmv>��!_,�-�p�L[�%��
4�+wuv�
Ԟ��t���)<�OܦIl�Vi�.kRP*M�Z��y����~.߷g��4�ŮV����ģzO4��Ǿm�G�-e���\��v�i4qV#t�6P��
��U?�shD,lH�I%��*�
!��B��r����dr�Ŵo��KGib84A3A�hTLA��� "6��işlK�T���#� ���ZG
�F%�����4��_����)�k17T�WK_�±<cJF�š·��T:7���g��ɖ+�Ed�^����L�8��Fύ��P4��cc��rA�'�2M�4��nM�^]<K����\\��X�p�׋d�DU&�7�?bzG�\�y����&
�����M-�M���;�a�t˺:�N7t9�J�u�
�{��?�)(�$�7m�7�6�6���Q�g�q�<��}а�k�7t�ō����n�����T������)�M#-�o̢U�@�f��66w=�d#�n(�ws���U�3�����uCE9<�k�d��1#�r���0z���Ѧ�9�����f	�MyU��;��Q��W�q�֜�(�`q}C�8���>�;:�ה8��
���F԰�zfS��u�y���CK��>
W}7oy�ηl�:�
.���ShL���G)�d���-p�c�xh8����[�D�
�Θy�
=˖9�h%%?�Z&�0���cL�$!䌺ĒV�J!k �I9��
"�҄0�Ls�n
A/�;�,M� �6�l�B5���!O�͍�����7�&ߚ�oȟ�;�K��G������0~��$�0������R���Bq�P�u�6[��
�S��ږϯ�Dk
��K��&m�rǜc^@~�
�	vD�9�[�z�'0�*/s%�*Ÿi�y7�y�/�	q�ԽG�>�>0'�������6�x�;T
�G�,�����+o Nr
M�T�9���;v�g�?�l��y������@�pue-972�O!mׁ��u�|�|�{�f�mXT
Wo7Q�۷m��
����fl~�n�&���\a�l'�9�ZhG1"���:lK#{p�,И0J��R�qzf�G<��a�CA�]�cG2�؃'��!6!�2�K�9��p�D�5dv��[M;��ƒ~�v|�jV3!j:d��t5Z�>I揞e����}y]��ědO���'���Ɵ�,fU�ws�4��xy������O2Ѻ&��(�QЃi�?���F���nX҄C����&%���j��ͼ���vi�_���1̌1ġ�I���H�Ͻ<�T�+(��<��f%f��&�+:���>�k��\�A��*
�z
j1�ĩ�{J�
���';�����|ڭ�{�i�j�mD�=z�4���"!�\ޔ�}�{�_.�|�҉�ǿ��H~���U2[�ͦߍ]����$ߴ����L�5z�!O��X")���A/-҆��J��;d�dxy5��λy��~q���'mȶ2
��`Uݻq�)w?z��7�>�w�ڢ�~ʛ�zm4�&i�pg/O�\��s[��dF�x_C��:kRKND����T�cI�G��~�>��2���&�p㼫�8x�����p�P����1L9&��C�̰���̎�(�V,T�B'�v46�3�r�Ҟ:�I�&9�Q��#tz&/�2{⫶�K�7e+	L�J4��j�}p:�0�͍4�2�1�h�D��oЇd��-Я�@;bs��uD�Si����m���7���)�-+\%�BO1_�x`ԅ2d�2�ڰ=V�MS�>�:s)�T�Ԑ�ۖp�+���/�&O��@����w�5��S��~�sk�M��Q
9�����OZ�攂��R�8�;(E�u�L#yj	��S~�"d�+���s�����x�%�g�lK����z٪�:�@OD��u��S��j�����F}��:-T�zڧҥQ�"5�?��M !��o��yЮ��!MM�>�d���;����9���wH���ޟ��֭C&���?�~�f�E0�l:�-Ͻ��v��O�������=C��u�p����e5�T��լQ�m��ݻ߽HJ
��5h4��ňJ��d�+�kL[��T��i�ƙ��t��i���'sG8�n~ir��[�-$v�n�ݙ�����)�qy�7?��{Z9
 �۵yc;��b����5�H
�q�:Q�h��ڌ�	�ɤc��S�R�8���qPqx��<�L=z�/ҁ3��rPFu��5���y-�6a�O�����d�@O�zIL���|a���=��u�@^8�)��#����?$��С1�~���1p36�A�DiR�P3c�[`"s�m'��s:c�=�Õ>n�j�Myף�H��{�t�����&���	��n�M|�KO����E���eD0����&��8���z���&3�+��/�|�kn�:H�#n�����Q���'418rV��D=�-���ŏ��7V��s��*�Ek�o���e�X�(�8\؁��l`�3�W�T>-��+*��9e}.�MqC�&q��:�x��]�v��"��u����];>��㛇_kmi7�wHO�0x�r�v�_���o��HDDk�N��?n��)�ʣ�{ʭ�)�P&^�=��U�d����݌S�7a�����!c��_G����?�ӿ���|�M<;Oԕ
�X��!%5➆^f��9\@�4�b�D�'$��TUo�� l�QU��T&�7�M;�>��gK�b��=�\1�:��ā@����I�B��cȖJ��?�����ؔ�g�9vK�בR}}+k��� �Bˢ�_�s�P���e��#�b�?A��)�0o�T��PT�{b�y�q]�F�����.��ҙ�1�qx:f�\E�BԠ�����K�ts��K���<c��O��U>1�	�P����DUƒ�b�G�p�8Ņ��(�V�6!,��Fi9�C;:�:��K::V���^7�e�3FIÊ���5|�7(��hD'�æ���"5O0E2�c>�m��z=�/�՝+|sǪ�g1����Q~
��d����+�-��Cx�[(��^s����w�駻Β��~�^>�����\��iл7wV�x⣯��q�֋ϖB��;W4nB����� {f`Uƴb�1���S*�3ǚ�'O��G�n&�gnO<�I��A߰���A�E}�7�`����Z�
G�(r��7��� �
Pj��1r�5v���U,��&%h�z<����n�O���~g��h:�z+��Ү�$��dx�	2;[ڲmXʩ\���چ���T�7�KI{8̊�X��Rs���^k�#�I����F�����hM����ޏ���(&�v��Y�E���u�z�5��^!sdh��/��tU0�1x��%�JEӃC6j��%6��㗞��[?�f�f`z���KJ%ݕ�A!���
��P���<+8�%�)�ԋ�+.(�1����=:7�?i�)�F�װ�۝*�Vt<��a�_7�]��BE@x�MΊ#���7�u���?X�ϙ���g�Cџ�W����F�\@f��s�����B�<G�U�0�jwio(t޼�r]O�ܦ��I�A���auK˕�+��ن;9�3����r��b��,1|�!�]��Ӽ�Ĺ��EE:=.n��Du�?2�fff���E�|����J�������-f����?|���Vk���#q�Mݧ���`�0a�/���5#�፸��SdU�p�H�LE1R7y��
d"��$�j;��]�}v1x���B.m<�'��O�-�
���&��a�c%1�S��@U�-uc�u��T/ް�@���"�a��"
����)VUJ�_t�9��eJ�>�(�cǩ�,���7�7�Ud�
�'�Q��d�@�+\��W L���f� �\9�sz�VV"�P8�*xj������vS[c��P��L�ShR�b>P�ez�Q$�h�J����^+)A��Y4���4v��:�b@����r3
�ۄWH�F!�r���N�X\�����=��<W	��ˑ{���z2�_������l���13��?k�9�浖F�W���Z;�Rd���}�|����]Co�^KkcKCkC��B2���b@aK�Sa���$�B>|�����Ã�ELyË<g�`�s��)y�L����)`�����9�Cb��?�����6���Tې���)s�A�7���F��5�z}W� ���0�إ2��6CC҆�ҕ$x�M}8�acڭ�h�Lq�G� u�
�od
�FW�/^?^J����r&�69$P:�O�d��6O���n9ݏ��RR�[)�Z�>���;JQ�E��S�O_�O(u��v��X,�
ءh���BF!]B�6�Pq����YLpxfM�;b�DV}佚]Eٲ;�H��<�B�P�K����&@CP=ߐm��zH����W�f׮�ݺ�v����Hk/9��ؒc��z� ��W_}���W.ݺn݂W��[�uɒ�|-]�t�7�<n_���~���*/������/����{�c��/�������|����z��PvD�E0n�
O��3C���P3�옘�y&����.�8Ԛd�$sU.�dD`�*��np��)>Q,���2k���&vQ0PZp&x��LQ���a��%IX�������Zg�)(b�.�X��V��ʍ�Au��s�?��g���T�n�Q"(�.���:��Q��ws�5-
'���+DT�2D��	���NF��B'<����_/=��O�(�!ff��n��������ML��L���7s
�`~�����-����yp��t�����{����\۫��q������|��?����s�G'[㨹"o�C�	N5NN���_�3|��R�ox��9ц��I2Ֆ�0��t���$s����*w�3�Ʊ�g��l�\��9t+� n�y ��Μ"�fC;x����%6��Ӣ<�+�ý��L))pꁛ97W=h�0�4�M�ښJ���޾�f��O\�L�:��Ę����D'_����]{�,���Z[���V@s���ث����c�X��@i�����%K����@�^�H����}h#q^}��W�Ϋ���!�|�6pg���8>ZZ�}^g�w	�Y������pdC��z]�r$��`q�g̥�`i�����8x�q7v;��0�&�iE�J�cb	&v̙��BV~��b�Aw+%��Gը���(0<��~{�Y89V�3A��ϴ����J}��5�D%�Z�n�o[Y�G4��;��ꆖwQґ3g���׏������W����9$��E!s\
���he�
_<�!�eѯ�h��ΕE��tCˢE��l�|�4Rin�Üw�D�p�����)g�F%~��7_��j�Y>�����ǟ��P�n|��95:�o�X܄�U@���S��	�/��5�!�P�?�E��~�y����8�g�����3��f���Yn!S�ӕ�mJ�Q�diUH'X���T_�dv�?�exx��:H"0�ڙ�c�o����]nNog��e`�z�n)+�b�0�$��O�D$���@�(����x9�D_��*�

�jOSHJ��M����D����!���o���"t�A�S;��l>�
Gi��A'v,Yzp��u�|�fkJ'��ã�7"Gy�	�8�.�@��|�	#r8\�9��8���� ��p��6|�u
L���;�"$�4xč1+����Nu�%���z�"=~6?�
rZ׶��%�E����jB(�4-"k��iN!�*P@uac#HsL�ލ��Z�1����7� F����2C;�&x7ʆL|li�Qik�]Ν;w�)Lڶ�d�6in��W��
pV����V�R-������䰽��wHP$�
��)s���ѧY�kO5�J_���RQ��X=��}E�y��'@��{�nOL�&jRϸV
���ѽ!�2���{<�Wx]���ΘH�޽P�����]�ƧT�4�����0��65L$3S8=$��U���A�(o��7��E"&���@lcd��'�2��`1g��W�pktՇjQf���`�ބ3�b���F�L�	��h@9M;x�q�ȀL�
��c�ťa�~s�@��:�"V1�	�f����	C'F=k���]O�<+o��Rh�*��
��R���þ$��
�iK&�kb)�	�sG�S���&|�bN�w�;:�J�y�֭C��C�u$�X�n^B��r�|]t8rf�<�$Mt��Y�$��O����Mti�z#o��������D�l�(���TRX
���._��뚷J�.\x��Wy�7ð�t�=�RঅdS�Z%�3�a�Q�Z!xD��0���E�k���ט��y�m(��c��fv֕X�v�1"���4H��$�M�݈,.aD�k�޹�����vt.,��
���dm'��e<P��k�[�	ǰ��Q����	���s?����Rx6s��-���M���a�Zma(_�P>�#����	��!359s{f���0��>HQ�Xts�{��F�`C�E[D�h�>����~H���.e'5�.�ˇ�zd���-g7ț�<��6=�7�b}�l����].w�Rd��.�ǤTF���x��T��,�_lOpu���!��_�P����>z�2K��fs;����M�@�D��@���L05ڻqϩ�gN��K�j)�Hѕ�O��zSݘ[p\o̭�.�4)��j���J�K�{���VR+�,�X*���8�M3�"�ʚT�N|*ߨK����ID�&,J�F�l]j<5�v�A�4��~�7�Hs�mHS��Cq㗐�2p���n$����Aڀ�p|M����[j�j�3m�ԖQ�xk���J��GLzII"����C�ѐFҲu��Z�V��s]�s\a@(��n`V����E�%:������ơ�L�����^aÀˁ�7)�_�Y�=���O��h�z$ʢmz2�``�]����
�M���g>Y�muE���V�nu�խAȴv�k���b"�4�o0+�Sis�ۿk���׊Q� L溦�TQ��T��jaWc6?ͮ��_��7�[K��>~~�3��OLU��y����LN߻7y�(j���8Z��G�cO���Lj�ĸa`���{r��Q�L��\8��8�1b�|ى�vU�ӳ��(}4P�1����y3�dA��s|��(�M�5�>��B(���d:��A��(����%K���?���9��Iy�[U�2!j"�M��B*N���>����
쩴xz��|6��7�%�,C6�N�C�k�~�L'�{�*W:.�4���DZ�	 oJ����,��$!-�\�$������������/yj?P�q����� ͺ%�j5o<���Q�fy�[2G���,��
�d�����Ͽ�dy��Ԯ���Ս�������YƑ��q]�ѹ��	ᒉ#�6$�X���a��%��Y0/f�]�
�v)�G�n G�w�0���1�M%eb�֋=�d��2�n�o0�#)#n�������	��e݋�s^��@�
d}>~���`''�.�z&m,�nqw���}��7��:���,]M�[޴�(�n}{����[�M���w|�5�)]}��7�a�{4�(���	�)��i'
e?fquK�_{zۛ���E� �/Y#��U�����~u�D��ԃ{3���!r���q_��-1���������#׵�����y�Q׽~�S����,��L(u
�Y?:��A�T���ѐ�n�
x��h��3GSp�܅��4
���s@��ܰ[!���u����ɟm��մ4BѼd/�e��Ϝ>�H;C�7(h��k�2�N4�Q֛+��	�1�Np�8!�*���X��,�����X>��{�,���sn�n����;��FU���X%�o�Z	m��<K�5'��$��mm)^��z�\.}4�O�CC��s/y~�N�>�8��,Y Q�\���2��
�9�p_T8ܽ=ǜ�X˗/X�\��f��,X����~��0)�&�n7�zU��Ґ)+���%j���F���Bp�Æ4���s�ܣ���|+T��/����[M���5��<�`T-X�~	�ya.�#^�!�WŐ62���f�$���Lճ���YG(�q���ʱ�D��/<�0��ǐ��:�0�!���n�{+k,�6�4޹5H���Ҋ�FR�ʛՍ�^����n s�V��R�߂�`sACs�3o>�m��5�)�MԤ	vf�.�ŝR
���
����-�\�3tM��yԻy`�_�݌Û�����r��'!��}����_߾gH���7a%���n�y�^[�HnƦ���(���BOt�M�4��~p¨ٺ߂EpU����tްW�)J=��s�����^�&��|�C�]�΃��Ms���!�5R�2����\�d]CaO?�4$��]�u����+	l��(;�F�IF��0F���}U��Rh�(�o�N��,m������鏬ڲ�6���i�x2�NT3E������c�d.Kf븒řڔl�%c�D#�(p�X��|#
�>ح�9Y4o��)�[���Jqܼ�e˂��^yu���j<r8󸮑�d^m��%Z6K�y1o��u_~�{��(��6��J@����d��G�I�G�p�A�,F@����˜�V�8k1�a���,P�T�c���H��f[���ÏdT���#('ux)��%�\�PqӋ���`�ʖ�]*h�x�9B]�[��s��t~\�mL����~�m#�xD(����V�
1n��|���m��KK�|	2���ۻ||��z�V7�
�'�@la�$�6��+Ƹ8z��8w�/f��x�uSSee.a�U�8u"�@?č�炩'B�����3�영7��۷������ݧ��ȸi
}3���
&1�T�8\��Re*gt
� l�V޴k�x`}�����4�_�3�f��OvLُX�M���@����	�����x��ӕ�i\�5�K��yg3K^x���^����(k�4i��ݸ���&�o�l}6��;w�'({��ƙӖִ���b���,�Q�IRV�� 
�c�C!W�b�
+*I~O.����Li�T�>	�Ʒ�c&��V��T���K!&��[��
*"��V@�c&��|�~<h^���1+m��� �Eir�8~��y�#i����R�S���}y�c匘1
k�D�H�}�g�7��7B4�
)�KTD,t�2���~�U.�6�Z���i2��T�Pƫ���˛t�Q�e��ք)�d�tr��	m�4�:��A,��H�~���vb ��+����]��5�W��XS�&��wWV#h�54���Ŝ䲫���Q�t�4�.�!%F�Ml�Ӳ�g�ik.-m�(_��ڲ���
�x�E\Ὅ-'��v��_?��a=C���6t%|�L�EBOQ���ڙ0r�KeOύE�$�a�'���<1
S����W��:�933�ܻA-�"��M���b���0}��o�0�
	tz4�M�q��C����'C��Ȩ��J�7�7�dB,)n�O:8�7$~z�k� ��7���Mѵ�|�.��%��'��{2X�<I+�͕�21rS����������+3K���rg֖k�"nx=ߧh;h�/��-�l(4�3׆	5�c�����v�J��X��ò���i.�&��T|d<%1�q�s�{ ��W�WbP6yؕ��N���:p�>��i��TƓϿ�����TtXzyc�{7�p0D�{	���Y@�v��"m��c��Wm��o������.�ɗ_�n��Ь��F��� t�r�p��]o��-)q���o��)[~���?YmOx	`p�/��4�8V�H��kJ��*�5g�N86j�`��F�8��K�"[b�	��xa��`#�
�eB��-S�>�s;���.$��/�����A#�FW�pCו)0ب�!�P�`e
چTU��pÝ;`k��?T޴p���o��
��������Di�w�}�mN����›�����xD	>͉+/���c�w2�Y~ܸ�7��+�>��T�ƛ"n�1k���������$�@�'Ee��&d��M!_��M�l��O�Ng��Wd�_����fl�eلT��/S)�CR��.4�縠M�W�q~6gZ��
'���t��'b-S�6�Ư����B�+����m����|�-��E��QM��&B*�VO���=n9`����[�Ѡ7�s·0Xt~
:�� �L
l�,�ze�Uo�E��k�9���E$ƫ�Z �fُi�6n��Oۣ�?�L�L�*XE͛:����Ac4D��\����V��B
���O=/z��Ľ��]�dQ��A�X(��-�wKi�v��l�p�r�-�
m�����G2Fܜ7��w��㇂�"q����b%��.���֌��W��	ă��[䔻|�,�д����ZՉ�q{̑�J�ǼFJ�c�I%D<d/� n�٭�L��w�G�fО���4�ud-�h$��A�i,���]��-y���5M$�J2�oq���dk3�
0&���}�N���͕;�
:aM��ڬ6�2��ys���ƻ`�����D�j�����~�	��|$m`GV�ټs�*/�KS���?�m0sp	z7��L�"s�w��@�LN�Y��U�7�y���Q�6L��oh�r����čՀ�����n�u��	���3�׮�@�T�z�p���=�ڬwSm~Q��'Λ��-��l���y��(ʔ�\K�LB�6�DN��\�M����¶��ѱ��0��A|v:���<�O�h�&��h�lv
V��rj*�b#1���=��zn�!E�8.e�G&)k���~2M��s�"h���I�ל�b_ǁ���哄A�8W�M2��cC����x��>�M<�Kצ��v9��:�ݥ����rEW�k�;($�Ȣ9�ƛ9�p���o����n�!-bA⧜15hs����׉�3F� �N��F)HJ|;����=O���6�r��hY/n�9Ő~�57�#-�?.��qi�G4���T8ʘ�v!���7��Z�v�e����V7�n��|��a;/����Cn���{p�|3�g��_���LN[��%����%dpo�,n��}�p��~� �xe��<�8-����S�-'���T�w6�c����e�X5�\�*g���|�@|���}�n�̞)>gq���ѩ�ᙉ{7��N1��@"n"�|?55�`+y��{���W�y󯗵l�ɾ�@��cm�T���F�4�HM�O�Ź7�a�7��
l����(B�|\Ը��P��Ѭ�/ ��1Y��h,i��[����(��:�4��W>8����Iql�E�#����Q�W?�d'Ui�^
g�y�}↎o��v٥X�54p^hSCL-r�ʸ��Q|�U8<��Z��L,�57���ͦ7R:ݩ�m��ٶ�Ă���X����%�
��`�,_���|uk���D�,_���GQmk�A&X7�%�F�x�qm�͗�v�}(��Ș���|�}hicU8��^��bh<0�	(�N[e�C�S��`��3ϕD{��Vi��@����/��5�=־t��&	�`"�臃�jƚ3��Ù?h�ok��
�xz�d7��jx7$�>��'��-���u�����Z�:�FM5�]���
��/�_2ȿԊ��i
Ѐ��B2���R�Ex|�N��*pr��E�TZ~-$k8�Dap���T���~�T���1���(Oy=�	�w�>&���-�[���<��p���#����On��1966>>3IF�`j
���?)Q^s��8�'6�LNNqghu�
�7!�:�yt:42n�X�f�:R8�A3{� a*���*�?��㟾���+�k������=�gis�'���B"���3oQ`>�3�ρ�<
'�c1&P���z{1��7����\q�������n�'z�ȋ�R��F���a��'�*�(��]��axE3R*�7B���g+�`��Gs�I��D��[��Ԇ�o�ci���D/U���NTFRu���K�������[@�B?��7!���~��@�|�C�NF٬�Y�`��7�ծ#,Z�%�&
��Hc���Q���D1�\"G�%�)�W(؞m���%��{�B������]X�����W�P�f*�ָ\����b1�0�;��	M�p����B+��Ě(�rT1o������VN`���h��M#pB�a�g�5�n�[������e���,$����Y�@�E��5[�1r�c4n4lx�"�hE���b	q��r���:7�WV������� n��B�-�|�4���k�㈾(+5K����"`x��{�I��	�"6E��'~zn�.NHc�?�w3��db������`�ZYCh5�b0���)��y0�x�1|�����2�F�FGY�T��P�kv|{�
��&z�
�%�훀c,qS��)���Je=�g���Eɩϻ�V���g�3=LC���x<GW�M��#�dz�1N���j�z��PjHCŐYaL05��d�P&���T�`�T1#���*o��TrF��*P%m��HaE��pZ2�A�e�63�d���3[p-P<6��ǹ%�KץP3�v]�Ey�~sj�S瑩-�o۰!�L^��H�J�LL,	
�C���y�,�)�d<Uk�Ԃ%��©ݳ�͖�h�y����/C(�Ť�g_�%����N1]��nT �4����D��.��?�1ؙ�[s��kj-N��1�jnW�<ö��B������fL�QS뷭���旉�J���5��h�n�B����<�ſ�}�V+?��"Լw��h�
`��X�Ir���X���u4���T*ږ*�Q�'fq��NHT�@�`�h'۽��1�*Tìy�5�R�?
61q���R�[� N�>�+Y#s�6�g�D�6���_xԻ��'Ļ�����ɑi2�OT4=}��N7Q7!�M�8��cS3��ǂ����}�q�BM�KZ�F�~u�V���<�={��^
�*UP�`��!q���n�ֹ�3A�����X�B.�s���l(�KR���0O`Nz�ƑD/UL褵��l��.dk��ö�K���P:��m�h����}�e��S[�^kwWfX���YqI�����⭁LLW�s� �5���>L\�`"c�갶-��Hq\�R�.{��,�{4_��>���za���W�M����X�+�ȼ�ކ�[��ۭ��˙G�I�`�G���ǐc��()…�澥�҆�6ŗE�
��9��8Kڈ�B���5>Yb�p������X�����O^{�-���C�G#�1wf/��G#�6���a���Z��ͷ��2����7/|P7�ݸ�����A.��į�V1�Rݍ��'-�Z��\�C��5� b*�!y0g*���i�C`����
~#��\�}]ySp��G���
H�9&��Yބ��_3a�OeOQ�x�����/<�;����tvNL�����/��d|z�6�*�gq��ߟ��ƃ{70pƦ&o߾w��~���*'Uq��cnQ��>=2�������#U�ڿh)o
؈�\_o��F���j	�0o����$TN���K�I���
���@9B!]��������H-W����vH��W�z1������bj�w*n�9�UV���S��}��?Z�o�bJ���͝���@	�0�B��E©�7��O!M������B�ĩ"�%NB��q^M�%����`V]Irx�<y����^�K��%"ΐ�*��m7K���M@��0�h� }��"f��N�홷�;�%�����RQkmx�c�M�b��I��;��gE����FX�aU�K�T=�q��+�=v�/����v,�n|o�EQ����U�ĉu�c���^�!��D�X᫭V���䁮���h�zk��=3:FV��J<���&afA�l�nh7�Q0(�d�T�ntl8<Z-Ul�l��7��K�_(o�;+4����E�����M�s�����)#�F�zP"�d�Ŭv��p!R"��#���f�W���ILE�Ԝ���xlj��>����d��}�
�����:V�cc������<�?M�>s�~A�9�*o�G�[�ȁ/ܻ�۳eo3��[��9��6�2��J!>�
��w|�%	���Ԧ���
�rm�Q���5�t"n����2�f�
�%��U���.9@͌�
�j��KD{�C=	`IJ�l���+$�k���MQճ���{
~�>h�O�%�$����Ӭ7�A�$l8��N�uh���S�s�-���+�h�3�D"�Sl�<TJ'�Q��!�[LCJ�3�n��۰�˳a1�1�R𨖠
�P�L��7�y����V�9YB�`��'���ѓ�Q9#��)���pJ��	�!T#t�-�sRzH_+l���17�X�fF���+�zn�|2E�,��k�k4d�8��2��t�b�R5~�p�RT7T�7�R��.h�o�}��1YiY���xP/�nݺK�/M������U�NUk;���iF(�褢F�ɗ��_J�R�b�4��1_��|�4�����R~*��C��w/�����`�*��Yb<�45�\w�oxȥ@sV�ܦ��
�yw�?���93��{cj��%jhF�f�}2���Ҧn4s0T,͔3��ֱ�Lay.����0|�����%��ի������r�ve��7
�����>b)7�SqCj�Qy��L�O��P&�����Tn��d)c�������ib����z;�"K�u~���Jq$1��h꫌��q���vpZ��7�nb��=���ێ�ϹC�{=�*�PR�,j��	�R������zMĢ��FU����Q���7-R���%�o�ےmo���kkSq�{L�J���*gjE�k�?�7jhb�[����� ��,y��V����]����K�Z�QL2
�<�����j}��l����-G�xt7�&��;;P)
��8-w�����7��>�"�%�v�#$�[)���ٟ�R��2 98�R�����"2�4��A��`ᐡ2x�ʯ�1�7��F��;�HQ
�,:�d�����=O1w� m��g����/h�_�B���٠d�O��"-/�sG�d؄#�����`	���
6IY?1�X�%@��f�#$�,;��/jԐ���9��B�W}��e�n�w��<�;�����/n�OOz�bp3~�6
�&����ͩ�_��1E���͍�o�zp�8�o��格��@�L\���L`Ň���Ƕ��[J�<�$���6��P��>Ne6���7;7XK��	�N���okːMϤ�=L�/�5�m;S)SSy.����M�ؐ��)�I��1���0��}��S�f�(�)Ph@�j�w�O�-���ײ�R�	�%1iB��ל�2��9.,[���2=���	Y��m! �bi
�j�f����d]�S�k6$�4�um�X]��.��I'���<&�P1�u�c���b$[��lmE����cCފa[T�s�s�6��Rp��wc�F*�;U����9��B����4��}��h���]�V;�f0T�i��xKo���Vc�b��G�T��"�iU^�@���D͟�o�Q���I�w��t��
2�J���/�(���m���E�~�:ԑ��/kx���J?��`Kw#����h�|DOgig���,VΠq�5�$��Sڨs�<����+��M������c$�k�.���!��cM�z8I4�2<
}�X����G"Ho'�5��V*���ԓ����ffک��������p���۴�������7M$��o�F�sy�7n<�2'�g<8�T�٥`�\���]����߈��!Q2���#�~I�(���L40=)f�S@�K�]�d�vH�z3{�(���Mɝԯ0Џ��t�w{Sο�DS���m<i߈��	��O5+7�\!ON�*����P���!�5�^1�r֟+�h�r�B�:Y��庆8�\{{�=��R��Ш����F:e5��oz�9������k�落kxey���A�N�YT��2��`�^11�c�iݼ�l���&Mpc���J�̚��f8�N"X�|ބ�h�6Gy�)�d�{D�*�4�.q��#u�y��#4�
��e��U��-�f���ܤ+n,<��N�Dڴ�^�f��@rG�@��xF�c�R���g~uE��B7,Bӈ�%�1�䫴+����-��J�$L7�%��57!/��+R�N�6D�Ҏ
����m��F����rtMtP@M٢2'�"g4s����
�r��������2"�M���'f����`+��ج�l�ç�ȝ�G�G�_~�I�U�H�����d
���#]���'oO���쫛��~6fz�����jjz�_������1��/��¿�j��ȟ�\��
޳���:�/�m2�r��>程�X�X�Q�,��!eDe��\u�c�� e>�2I��==���f�B*�R��h���i��r�Q�ǂ����)*����{)����,5u����eyPi˨�\�i����=Y5:4{褪i>���t��.�*��ZsB��t~����Nd��G�8`"ߐ@�Q�Ǖ�T٤u1��ʓu͹ʓ�06��禗<p�ԓ��V�&Gkm����-���r��p�Uu�/)n�z�6����
M�rE�p"����6��o�S4nL\q�����Q�0��U����3��5*>lQ@%!��>�$���Z!ˠD���*t\��zqz�HN��A�}��j+�#P������C�(_5o�Qز�cG�|9"�&��2��"�Q-pC���1�Z�
�Ӯ����F�3���b�7�ِ�ϲEDYf��¿i ���ZZ�40��y�ȃ��	��{ K484�"F��E[��tF�2'l"�y>;��o��i�/<�;�����7�O�7�F��2�����OO�N�ܛ;���Q6���X
�OM����̙W�D���>�yt��/MO��ڼ�)�iN�\��G��Bݸ�M���4��R5�'�+�qZ��^8��x������Cg�
�2WfAЦt�P������83=MU���J���D��S�L���E.�骦�=#ta5�ۏ�C
���%Qd��D�
6H
��X��|�⧇J�-�6ƚQf���F�O��
����1\ǦάV2�i����6��[Y�!�F�4�<k��n��A�(x��Y����
yp�yhNunx�W��p�7ܢ#󃣇�}��	����.|�Pec�TR�XÑLE1�*�&L;/7�8:��L��
㐦�QC�;��Z�T�m^7Z�r�"(�\�n��H�
F����7~*H�6ܵh�r�Z�޺�?�@�^�Ò߆!~۶���*�#��z`z�+t����y	�T�24L��UƉ>w�b 3��P�ǭ�UY9�)+�:�U!7�5Yx�	�P�+��'>z���'��`*x2��˛g���Q#qN\)����2�
���)%J��c�ӄ`~p�Y=>����7��݌�"S�6�3�O�Տ����
� 39���r���'l�)/���$]
蠀�
���g|ii3>ru��h`
�8�ԏ�]Eސ9�����j��	���rp"`}#d�E�I�&;�%����7�H��}
m�������!��J4E[��aD���=mDH{뛚��=��GY��L�$`iv��p���z��Z���tMe>Q��z�|+Y�҉����55�1fE8�8�T��\'�PU6'�g����S�����3�K'3��� ��b:އ|JJ6l'
��ms')�9{6�ڔL��9ɵ���r�����89�a���&��ͼZ������G�-A�,_�A�8�xP�wh����[Aj(l�H`�'ʆG���p��b����F.�Sƕ�|ΧԆ�e�!Jy9CS���KP>�	{�}��[�Aݬh��
���(&2����)C8������r4R�e1�4ړ���i0@
fp�CR�j:3��i�V `�^�M� ��f���o)���*�3e�:uP��y�^o�����-��1	^���
'LNE!�p7�B�����1{��}��W,��_�‹��T#N���^<Q΍ )&�D�VN�2�DM4�Χ��j��D�y"g���L��{f�C+�сI�mZݘ��z0�,��ɉ���{�T$�gp��G��Qd<��C!��ԫ�?N�Ǿ��f����Sc70��nd���$덟�ۙ�G�7�#�BY�#�Db�P�F�#���Ԗµq0!��l��fL��Kru���Efg���d�Γ��b
�Y+����aq�^k�U�(hƮ�AH#��	ϗ�W�^�I�7Oec��c�w%
$��E��SL'��S������r��+O�̑�J��{��2�me��z�d��Нa�;�}�U�G�솓갢V�o�쭌pCN��	��(E�ߖ�V�M9��:�0�a�<��/̼�}i��>��R\�jnEG0k�/"��tez�\��E��7qB��C	�G6k�kJ;���)�9Z
=b
��9pm_���o�3��7ņ-7b2X�n��bH��.��.�0�-[�g���B�
�G���n�;���T�J&�#�[�bۊ\I�
n8��5xB���6|t��j����E|,�߹��W['J�=�b�I`N�̂��ĉr"*��^���R�}w���N|��ڈO�0���_�ؔ~�+KVK�"s���g>y�y�� �
O��7OT�����_v���	�Q0FDŽH���lv�G��4�������'Ƨ��Sx��o��?==>33��9-mP8�6��l'4���cp��÷������622���7Si7�g��)�Y���goM��,
�4���:]S�8G�"�����By�&�FH��F6%{>�4׆��.��x.+0T�2�!N��.�$#�<}N��e���L^�L 
�'P<�H@�Su'�q21	qB&��B>��mg:cd�����H���r���	���ȑ���<yvh4c+W�JA�\.T�P@tt���5Uu�
�%1oⶅ�q��4�.��.���6v
=S�-9��؅I
 f�m����Q2B&r�%	��*v{۲0���s�(�� ��%�/�EA�t�oYAߣ���uÿX�8L���߻uׂ@��(!@R�x�	o�3��s�b���^��B*Տ��O���-k׶��-ܶc�Ƙ=��5ŭ��@^`T�P�\���ѹmǢE�:�T�����@�Hy����xXV�3c)~��%��	�ĥ+�N1�
I)]bV��27�^����x�]T�b�&�G7j��|�sO�o{�Tܧ�����y��F�0k��Z#��������|�؜&���a<�����7ߜ���ɉ�Qn�fF�F�H���3yt��/�N��OY@���a�����$��ᑯF��6�K����5m�6�t�0kO}�
u��Ftd�9P�10m�—.Z�e�9�h%�����=���.�������D�ds>�dv'om	�� �X�k�L0KmQO��SegwC�8))e�4A���:mc�,#��J��t�
I�dS����x��5$i3�o�4�(@$�a�
7q~:�R41�R�6�<����-g�'��u�8���g�î�Vڑ��6"�U�jA��a���yK5EQJC*����h �d������q�§�5�����/��7�ůh0��4hz�����[�k�h
�K�&��j�۽Q!�|��5Ro�n�7���a�v���O��bo���)���ưiuu��@-$��/i��il��خDMϊ�s���Ԋ����0ۍ��]��w*T�B
6Sjwt��([�����0�y�Q��$��5��2�cU�PV�Y�A�M�o�����в��/�Y��̳DL�C�b��\b�B?sR���>:�����Ľ-��ϼ0�}u`Oc����	�3���K���l¼7>L�
�g����{�h�����'fxe|jj� j�x� p�`qՍ�3��{�I6�9s:�7��,��������0t>�*���!㗌��
�ѻa ��{��${�RU����G�6�8n���"g�;���s�ƨ��w%}#}�������&�������e�i�H��Oي���']�
K��.+ROiz$�H�#Ӯ��m75h�$�B�x%�&��f�Ѥ���Ba�
�d]ù�o�:���b�'�����p�F��3��7�ZPSh��5+7$��<��\�T����CSر}[d��r�:�1�í��7�;l�4=�8m�Q�\�8D���%}���",�)n|3���Z�$��o$WDÀ`!�di��><+\��Ƃ"t��{��aZ�k�WƨdDG�1�s��	�L6K����
'��C�U�#!����>^y i۶�:;�
���htD������r�,�*�n�3L&Eڔvv����i��ѫy���s[GYy)������@*ʆc���+x�_��j���"�htI���~m�q��$~�>�����G�3����y"{��2S�}�3�����K���ɩ1�]�eYI<�+h�&P������Fq��������jc�x&}fd��9&o��پy����3�7���&1~�j�H�z�Ĵ_��z�0W��i�*�X�PH7�4E�=���V�]4��复�
��a�3��6c_L%�b�Ob	W5�R}�����A��3�!��Ќl��x�t��,g,eq{
�`ް�!!^r��z�T�e��'�wt֍�m&�`�+�+�Ʊ�&K�sfg��U�\����T����Yߚ�z��S�ּ�-Q���%r�.�
�[��E,E�����{����($��1�>�K1��؁��A�pi�M��)n�6Bʫ\)�L1�O46")�mmq+�|s3��T;d8lfX#!�S��(� ��ym�r�'my�]���<��V�GhIJA��dXd�H~���Yx~&�,�4��Q|E�&5U8�s�	J�Z�d�wpV�T,��/��t��
�G<J>y��s�N�nB���/6-E2|�ׁ�G�����0-΢ٽ���M���/�<UvS��|��j0��{���!9�fn��5���=S;�Mԓ=�������ǰ�5����Q������Q)̜�1RN�F#G/�-S�jh�O��G�`��=���16c��l~?�G{ m��a�~�\�d��!��
X`<F�&-!e�r����m�޹3�"���D�6��E��GA��M>MM3�nS��{7�b�We��m�)w�l�����5��&'���u|��-���8<
��Y�eƫ˜���W��@��i�����5ܦj��I�|5g�5��̄7Y���q�nSn�N��N��8���
u�6�Qo�S_�����*?�re#_0�IL�;2�ݤ��X��x	d�q<��*��!(�/�n��<���R����Q̈́O��u��(���/l_�F���K�)�#�D,�� \S�o�T��	*Ql��P7��P{C�$��j;�O�p>?�-�&��o4>�8�$�k���[���=Y���R��a�l�ҎEMD��B����;��ṪJ�XJ�R������Y���\�6/�w`P7N��$�L�"�D�M��Fgy�(��Y!�>���O���"'�Nė�+q·Ν�;ŸĞ�G�n:��?�79209~i����r�Hw�}�=�ƣ�xG��tr�Ԩco�O
ӆ����LM��7�n~�	3sNI�9�@��v^2&8kܸ{����ȯ�e�(�m'pcNSa|�q�vrn8t)�9lna�g�r��T�Rz��E�ΌW3�7�����a��T>K��&�� ����~���^��B�'F��j�^�v9ـ����d�\6I�_n�[�<;mU1���4oN�ZU��X���I(1��T0�kNb!��2M�"`N�y_{�T�A�Ĭ��R'��Mm��޸z��@�hz��U�@�H�,�;ʕ/,�]`͟��Z�)�>�a�;���z:?�nf=�>V�X����#AS�k��g�$�e�o2;�3G�������&Z�Đ}���qFC�IX��s��!m�:p��Ȣ�‡��
�x�e�v��?�̔AO�BF�Aہ�F@�f<5�Z�rº��
��J�m%%���Ѩ��r��CceG	)'���8,G��2f(�6e"F)�n)����+����C/U�h��(7��D9'���P�	,bB����"*D�0�Ȱ+zE���<�3��~���Ȭ�'f�cu7�W��v{�����������Ɂ�����n�����8<�S�����Qi(����x��7o����N��W�6$�\6�=�g},�櫑?�}5��>|u`������텑�}���6�o�H[���M��-q9�)Q9Ex&yT}:�s�ឋ�?����%�����0}�W�6����MT��@�h�.�tic�`��w����*���N��U0���KSی��0k�NȂ$r���lS��X�r�d�X*�����&>�wKo�ئ������7vo�N�Qw6�a�x_�JNMq0�tѻ��6�L���P�N��+�,����y���cSV�I��ߜ�����	&�>���O�M,[�1p�Nly�a"|��qئ�Ѷ�T)�'�G�?�v.�^v���IH�)>� ��(���q��kĈExx��Ъ�.��R"8@��
��b�w"L@��pw�G�($�y?�΋Y�K�%�p�-4_Fez��QL���T�QF��'��f�?��Ͳ75�;�J�ݙX7e���7��8dDU�U�¢�*�����1�]�"�.��[i����~�KEA�O�ƍ�[>ۧ�U�*rn��"�<!��Xw�+�l~���и��ff��&�{G�JA��&Ǵj�2�3����&1���!��1�	�#�0�Y�x������=5iG�zk�'}
g��W?@��&�����]2=�C����-�7U,u�|=��a�b���D�ز�3=��#.f/�	Rj��f���&B<�JmhN:��
ٓM�A}d
_=N �P<�)�r͖�D�άe�Y��>����ߦy�&I�/�ԋ�P��~՚
Ȩ��)ljm��a�%D�z����j`���6fP0o�}�A��a��5��<������
i)�ژ��2�Uos��>[m|��4�@(���o����`H�!345�G�*eLZ'��1���)�C���Є����>�V�<0�4k�R��]�B�w���aRh��s)��NC(���
��#'ϴ�f�-f!��u����$�,
6&�"��ܴ6�����8>�͵8�/��Qj�T�‰�a�9� 4�JW���(�Xd�[�u���P2pIi�C�Sl
�z�D�F�=���)��:-��&*
�VVsun��	�۾�l���DZ��ɜU<7�f[g'��14�Ph3���7��o��������E�#��Sx��L�ΌON��9r���(c���2��E�s,��{l�����];�'A|��Ց�KW�G�	x֏����7�>�<����Su��ؐ�h�|���u^�8pe�q�.|v�pb��)�弳'��j2�b�nMKͰ�.�,.N*���3�J³!��Lɺ��C<�4m��L�+$��vc>�K}
�$��@�8L���+�ݛ��u;��u��O�*W�R.�()Z"��g��.�aw�mӆ7�m����߻�*Q��^�s�y��p����`i����;��1�8�;:&�m���
��	7j��(P�˹���2i�d:��!�
R��f�8^�!/D�MqW���4v0ϙ�7hn;��#��B6���w�/`ZC3x��6�ڙ���8�ʦn;�$�mK�CJ�{�ą������n�_�()�3Յ?�oS�5�SC�3jr���pc��jpS*t�#OfT ��ZUZ�cL~j?���=�T�B��I�M�P	(�ga�UŮ��Z��n���N�D�!R4���u���Qx�X�_����~=��<���n�rw|r3�������L�u��=�?�vM�S����>56E�j�xz����&8�3;v��G�	���'d���lJ�B�ʾ���D
�k�S�Tu}���w>)�'>�};�����Z�B���Jc��=]��H�Y���F���rW�'w�Þ�����O=m�e�p���	l[�P���4D%�K�D ��L����2'߃į����M99��e.B������f:��f*7�F����9l8�沉}�[f� #���30��+�2��� ��'7ē'�:�t�jo��XMbe�ӝw�M���Q2I����i��yo���5<5����7�F�,=�k-�_p#Ƣ`ʂ>qcJ�D���B�pldc�J�c�5��F7C���AM��Nը�#X/��5a��f1ƭ|�<ϵ�G���e�oG�	Ҧڧ&��͠y+/q�D��FÒ_��@0�$l 	XҞiE-�D�7T�v7-��X͏sT�=��f˪e�`F��	�褾O�S��U�/��(�l�.�G9>�Ћ�e��*Ee�������_a荇��E�RPC(�jpWL��-�@i�'3��B��>܄�D�s�.sHy���s#��͜w�Du����t�#p���'��jg���m�oO����с�Q���e�g�����#�3�gF&�&�xF��O,�RMxq"tX�B��#���/�ڈ����/]��!V�}t,�M��Vj���riJ�!!%v�P7Є�?�?�/t�F�PhMf+C���\��z^,m��F���K0�)�S��B�^��̟�u�p���UL�I4�y$�ÄuE��X�&&�q��r>3��G�=Ky�&'��od.憐c�J�� D�2���'^I�p]�m�BɠnR5�����M>c�F�/�b�d��b��:C�d�7�0���I���a�0�f�+�5*���r�Q���|~��K��Md͘��*�d�U�F1t��Y���nJ`��`�U��5MՃ߾�
K
p@�-�%%``��y�:�#G�ލ�Ә�6�q	7'��`&9(2q�6QQ�;��os��9�p^����@�-���A�B�F�~��"n	�:��!�*r��FO�:y\&mP?e<���̔oV��U;�M�o��,*SoJ	�6�O��$^�t��"Ě��,5&�6Ts9
�$��"���$pD��y��k��#����ɪ�61<!�7��݈���~����D�;;W�w�o�S�21<I�͘��	ƌ���8�m?g2$��G����@�ܿ��t8&�ƣ{��QܐoI���͒�#W�x���?�^��x�о��1���.��b[��'
.
S�Pv*�ig�=�@�_$y��1�/��0vu�	qȲ��~�\J����@���ds��ذ3󧙌���8����f-psx��S�d,_���،t�1��=�}�,�j���֏���{�I��xvMT�gI;�>r]����
��'��V�<�r]]]�>�1��?�[����w��ú��rn֝dn��6�����lwq�������
�n^žye���o>8���/u�,��q��#.F��EG��FV�⧈����hs~X�j�j��Ar���ZX���F��l���qwe�3KL��c�ﷻ��u4k�h�6*B�4ȟ���6%��#n@������c$����%�
��y���TϯU�
�~���w�݈��e��
.�S!"��Z?�T�t<M_�ob�p�o�W\i��y�ꦜ�z(,aՍr�cDeEc�J��}mF<c�k�&�d����Ǥ��|�M���Woh��p�$R�e�M'��*��m�y��Yb>_n�r{�Q���ã7��/�O�ܱ��3�O���4~�rt���
���bO�f����qL(�/��@q�e���ȇ�Ź:|-�0��"NysZ��}��g��F�cS���&�'S��p:�_��'Qx���_�͠S��(\S�K�@UU�&�U�$��U�A(�7)��؊�]���L�*�m:lr<?D9��}U	��!���V�^w%���{f`�R:��X!V��2��jۗ>��ktotRU��|�f�/�ȋL_�e��}����+>���vM�13x5K�9�v��
�;�r�A4�VRX�Z �g���b~[�@���A�����%�Lq+n8EܴT��0��t�;�r�nq<(��9�
���h��F^M�c��V�����r�cKe���)�4�/�Ь��z1���Y�Dx���&�e<.�QWxBj�v<���U��H���+A���hUW��TP��"3����蘈6OC��:ho�V���^x�Ll���)#5����o���ƃz�|Eo'�%�?�D)�9�����Y��������Y�su7��H���_��YV"�D��,�ƈqF�l��z�o���
��)k�)�g\�(#�h�A %mDM0q��@7䌣MS��q����W׮_��CDOfddz�˗ie8�A�l�W)nػ�(m.�J�@��;��$��_�}��I��Km0�z7odyK}�P��b�x�p�	q|횡����ITR�M��a�{r9���@�@�D/���~��-��x�͠��Egi0D��1nj�p���?/l�2�F�0�0x2�0�qi�I��;�f.\Ļ/�m�R�5����u�q?���#,�0#VT3�X`[�nq��p.`��d-�7+1M�d����*��8ipۣn�W�-/B���%2�%�i�(E^T7N����۠�@FO�����N)-�	��H��[P>�Ƅʾj��Bl���~r^�����:��VuKA�l<V�p�:�V!Zď�O]�b>1slWh4҂&�@7Һ� ux/�"�[1�',����E/�O�Խ(�
�S\���1Sª2����}��|�Ա%
��B+UK���$�7�"΢���L�ƝP�sef��W��̾3�pʞz��Y�OPU�C�F�,#�����YL3~��ٿ�x��Lz��F���E��۶�'����J�f6��0ș;�֐�6��ț�z.�W9��$2��9�,װl>5Wߡ�
�z�������>#o�2�<o�]8`��rm���K��8{4��N��>��P9܃Ak�*[��	2�|r����Y_��
�y-z��"u�WI���
^�N�4�o�
>��W
���-g�o�Bv���y����V�H�bi���5�I�
�s��]���"�4�Q�K�M%*�k��7���w�����.�%&�u��s��5��E4LY�PĊ��v��ߙ��c��ö��<vp��݇6�����a���w`@	�o������x�׏��P��
h�]oI脫�U�
U��ƌ7��)��Ju���P9�F��+kM��K��G���mO����P`G�3�b��^�=�zQ����P�У��R�Z�c��ԴT�(��$�x�����.�Ǔ�iJy��c,nV���@��Uഔ.zmC�9��P9ʽ�� 	E4/K�	1H2SPGK�����9%�g.���1�x��\'�SO?����ݠf��"�Ƙ
��Y�uC �wÑ7�L��.����׋9�a�
u8�#�yOm���	{�\���������nL������w���J��H�ߥv���A���|���*&��SJO���㕹�� �
=J.���!��2V�Wh�*��H�j��0V����A|5�MC�vq�}c���;���M��p�g���c�}5[8{W•x2�rB�MZ[���w�G�u��ߕ�R{]�f��7g���n���Q�х��Yg|�u'sw]�T��x:?�7C��mݝG���\B��h8-����V"�F��*��M�4�l7DX@E�
�+
ݛ n����1�
_���YKe
�'��"�Z�`���
���4x���5|b��s4��^s���u~OY5���WZ�Y�mq�s�BbJ7F�4�`�Ϥ�U��#~@�R��<����W����&%�q��1�2Uڡ]�����Pi��q��Tً �J�
#)��g�N2�D7/������_�P�T�z��	�-R�NL{��#.��<}����^�ԓ��<Rw�JcX܄ӉΡ�[xCt�Ń�<a��ӄz��3T���кI�|f�>��S�7����
]C�>(�g&�Ux.����|�!
���Gq���KT߼Oh6J���3A�;�������xU3F
yiw�b�l�����M�/\tBΧضVҥ�J�5�{��Ylގۨix[��D���u3��#�gu�n]*���$��K6�!�{ڷ0s�D��9y6Ob>s.��t��#�U�Z~��q`�+�c���:
�ƍ%:T��R��ng[[�EsU�w�ì�$�.��
X:N.�%���v1��j�
[�,�]�齛a^7���!��y7�u��\hO����b�p#w´�"n�C�H��
�����X_���3�L	WM��"|��nU���WpY�eŚ��Xs�z��[�ZȄ$��Q�4�F<$�����$$02`*~�n1l	�����+Z%�l�(W(��?5{~k4�O	D=1�uD`�'�ǘ5eoB���/l�F�`:q�XsC\E�B�8\N�E�lً�>�}��w�?�����K�SRC�1�~��=Q�J=�y�����+ŃE]�ج�s��{�č�&�BqS�m���+x7�xs{��a�k:wl{�x����^&��GzG&&y8>y�?"
��9��h�Q��U`F�@�Jq���������ν�!?��ƿ�ˍ�`����3���x}?�-��1��$sj�\��I$/~vA��iW,z`4c��1T
����M�nC�FMБ��\�'�����[&�Id�ėpΖ�R.G���S��j�^B����+7$/�G��Οs�N*G������]�%�p׮�n���fW3]T�e�͖�u�͛�/?����gLb�v����\?t7l~a4q-��<KG+�����
^7��ʓh�%RG�w�oq#8�Ԧ7�ǣQ��	��F�x�3�5^�����&Lu8�󇝗�z+�'B+Fl-������y]��)� ��R��;��/�޽�A��/�ݢR���&JjL�wn��<M-�	�6�<�E欎��V�bQ7^¾)e�	P[�>	�1�"�I�u���gm�‘-��耟��=%�$�E~����0E�_9X⋃����>n`�����!&�;5&q�L��9��(���.͝�"�G��y�����O���_,�NH����B�ES��qJm�ӊ��s�����ށ���ȃS�7���Q�gF�O/}��ԥ��s�Y��49-�;���������,i�k&�:����9Z�a�
�R��yKn�L|_��CԢ�q��I�A�M�Г	AtlVŜ+�Hj��	��iȔ-5�Ҕ)3���7��a�8��2�����{c�Ԁ������}6���0V��>
9�0�5�����"ɠ�����6[qo��/�[���"�2z<��	��?.���%�b�ՃK�.a�n��jإ���Ho��vOF����P�F�|I�I�Y�qԱ��i����"n�ƚ���H��������o�M���
���ұ�B`{�8&�9�-�T�R;�v�˿|{宛Y�t	�ph��o&x��).v��Ž�N15����
�@
Ѣ�in�l�(G�C��-�B*��!Uq��7"��>� oiVU�H�p�p�X���_>����
\q�6�e�q);�U/�$�AZҦ\w��8
�����V�=�%�D
׽��9�W�e|m�wL1]���Yŏ�q���n"��Wl�J�W����M���LOޜ��{����(��f:r�x��\}Le���y�?Q�ƍ�"
��%و�1�W׾�v\/'����_]�3�MoM��t}������l_�� ����J$�7�fJd>GE|6t����/O�/�.X-���_f'����$�"vs��ZjvBVW�Jʤ�4()qC�N&��x�V�
e�gz�� �wa�[}�����cH�1�7^9��z��c�f�If��G�����Yޞ!Wu���ܹ��#[�)�)O�+�,]��o9o��
��>>�3;-��0 �6������>�Ơol�T�Ȟ�{��\Qd�����K���XEu�a�B#T#�0�=g����Z׸��Fg�-�V+�p�O��!��0�&�
څX�;n�b�?U�n5�
5~�!������x���:�",_{P3P�|7� **��5�e���/P�[�{�x�
h7���4De~h���H���A�t�-.k��������u��H�����Ӻ��e�7eO-*'�
�1d�$ܑ�*�3��p��O����™�M�D��ز�7zќU��e�8��F�x�l:�������C�tv��F#�xȘ�7�����rfb��5��3���`�d�ë���o�m����^%�9R4!KC=m�Z�.µ�r��S�5��b@'�p����uF�SJ�;�Y���bǁ� �Rg?����@6Pا�u�7�(�&UW@
U�B��*OJ�ٝH��ƅ	iP��q�]6�ylC'��vR`�^hc(EcS��-+��>��HR@wU�<i%oH��aN�t�xIeT<盛6ۺ�v�nV��Lgtyd���7�O}����y~�������a�hQ�|��7Γ�-����̣
c:*}��04Dq���"uc�䅰2�{ye��d�`fs�ڻ4d�5�ꀣ(��^sd������az�#�]c�s����V��7��mC�B&d��4��Aݸ&J��1��*}4�Yn�_M|FMLE5�`�#j��>X=�H8�+>�$*EqS�5?ov������ �0o���z�C}���f�6��T���c$�����O�-��Qa������OH�h$wEC���<@d�:�G����3�.��INʔ��#���n�-��N�(�G�ϯ_�y{��m�&��'Iz�����h/Ory������xa�
�5�r�\��`K/ٝB2u5��q��q�R=��7�ׇ֙����WRT�~����}� ���îS7N��8���ͫ_|!}�G���&��Y�n�Ȝ.r�J��t_!�@9����2��u}�L�j�/{Hŧi���o�+�c��u��h��ӡ�9h餛��3Mt��nlT��R��SqӅ/ѥ}��-[w�d�:^��%bz���[��^=��ۼ�l]o^��h��H��g�~�p{!��x$I�<��o(���W�>o��G!V���k�'���JGq
��p�{���ܹ/���[㭨Y*�w"i8���H��5���@â)�P��� nȑ���@�62*���7�h���Okm[p�y��YmwfĀ-wn�i�@�ۚ�`��JyC�/�P�X(�Sce4]�c}�	9'��s-�#�8!��6*����L>y���5��m�2��q�II��O=U��AM��f
�4�x�V6�fq�9���;����)����0<��cK�2��#:�Mg���E��'e�_�73S���&<Z��N������MC)�m�8�b擡��]���9v����C�������N_�6�?�g}}M!gr�j2��9C)�(�t^?~�Z��w�I�����`E�|8�(��D�>><z�=����E��{��u���Ƈǎ�%�-�s�_�ٮ��f̤�JQ��:�_S��vdS_���t9Q��z�_%��(�!�����a�qW���ᡚ���X���Lj�O�T�C��n���㤆BA
�b�mF�D2(��;�gﱽ{��\�e�>dd�2g�ɚ��?�Ѯ]��~|7��t�<x��|��&��ʛ��;�<�"�Gq�[xn�7є2���A�x1F��b��	��Zd˚0NTq�KEu��n�M#�Ĉ�����~�c?8g
�� �
�Կ�� RgZ1�M��UP�����f
čS�X��,R�?���w_�z(�ۓ�������]�R������2�gFFM�°�ï�2ZČ,�eRK$��[�r�	�hK$P&��C~����
n�ڦ��C��d�����ʼn
q�x�F�I��&	Cb�(7�آ쯨nfW�i�DO1u����S7f�C�1�y���l�4���f������f@�
���pl�ڱmh���k��q`򖣋��Gj|��?�}���_6[ߛ˳�Γ;��>Z���硍K
2��D]��>��N"qm�׀�L����g._>s�r��3��G�o�f���D�����
�u3ό��Ϡ
{�
	F�N�S�}�Ú<��b�,���X�2#N�R��:�r�Dު�,�ʌ�ܐʦ{�.'��Hۄ{�wvE�1��7�i�ܻ�yZQ���G�w���.I�;c�&�B#���^��Z��d]FS�?���g�=�����M�}~�ܮ�hG8�ͫ�v;c�h���g_~y���m	�D�i��t�ϝ�Ml�6�m2
�K�����h�/�	g_��aq�D��
w|E�Y�Q��D����+����8��Gy��
��S�����29bAN˷w��0c�a��::lx�pG�6.�9�R��'T@��L-\]�!1���x�Fnc&m�mAX�>y`����y�p�M^����)�4�M���`WD+�0�o�3X�<��~��d�
���FYc<�T�AtB�C�f߁��Ű�̏{o����}/p��Ji‰(�C�	�)���n���)|�͓Q����L�?t��-�Y��p�Ɏ7o"m��4V�]��m�w`tĝ���	.�Û�jofn͌Û��{�4U�0�=�DR���-�5�8z��?���eM��k=����`mx��(�c�/�Be;�3�˜��Μ�8��q�)}{~�ĩ)��x3�NQ?7�Vn��&>.ShI��+Գ�mєD6�f3p�+�v���<%7vY��V����J&��l����f�ު�2��Mqk�V3#�*r�c�ԏQ(��a��$��OQ-�>�돭�apߖ�[֭;������t輨A�3v���������ʒ݇�5�̝[l�[�c4�x煉&P)���@!�X��P9LK�N+��ck+�����Bq(lZ#��M����d�k;�1��EkȤ�&��&>�ZSP㽬���?0�g���y��6,3�x�O�
�p���P7_���9�ŕ��_��oxi֫�R���I���5XT����oX�
L
��|���~���M���Q���jS���D����<f��^~�a�;�+Xƍ�শ���K��
Jh>��h��t����M�ᝩ	Y%�b{��Z��v�HbW7A�l#�
���/c�{j�Io%�eb��8�n��cx7�B�����T��T7=��Ua�8)���8�"���U}�*j��~G�d %H�qP��	�@�^
��
�1�Ļ�+feO$z�O�J��/�v��ﺛ����)�ް!*}�ɗ�a��1g@
?<.��2�x8DMstfJ��$��y0�g���+�$S���A����T���'�,���m�}��u���2�t�H�!]�H�0���f�?s��S ��9v�+�O��8�W�7�ٰ�,U�Mh���<��_��&�{�>���8IOt]�>�'s�:��۟N����hq8E:<Ӽ�=C���
���Ӄ���nH	��׽��ţ~O�d�M_�#�[�͏Q6vu��{ˆ�R���?�W��_%:2�7�O�����8,�̼�o�7L�y��Q�RB̽��vE�<Y�t��1~.�&�q��%��B���q�a�V�M��),ܰ��n��nQl°�m�k�y�>�F��V#N1<2���6������í�§���A5�M�Q�F�XCӸ��v���݈��h�:���Z2��P	����KČ~��zGU�2A:��6`�G#a����L��^�J ��*�8==@��-i��͙~XN����U�+N�s�_O�C�!Ѩ���\<�.q��!�Gtx!���kDž�g�
z��8zۿͻy
���Ϻq3�\�T�&��Bܐ�8����c��TQ^�N�#�����+��Ss�Y*�N��0���_XZ��̰�j�{�|xw��k�V��߆4���C���\���
�0�7T��Jk�X&�Z��![8�lB��{u>pH�.���ñ��s͸�fj�Rp���)�\i��@�ιͥ�9�O�:{��>��~Dž���L�ƍ�ԩOδ�����
PC�v��5�F�����Q�4������Fpj�����G��.o�����s���S��7�Ht�Q�A漂�(�_qS���y������!Գd�T7,�4_b��'7��yY�L�.�v��(��'���q�.�����c�m~������Ttk�`�á
�IÂƎ�?QSs�fN'c5���kj�Я��HL\�F{RyG�%���,0�:�1A�1����j6Bs�V�ٲ���&�%q�X������scկڦb.�;�&DڶV�5
��a2FC�%q�����62߼y�������Ci '�n\`�?_�T�5~rHk���4�h��#�&p����7��]�U�<
���	�N�sV��]4_y�.�����h�`^�"l�u�J�tg�� ��f�@�tzzn�>�O}�N��T�������/�LH�E6�4�{o��6���q�ݸ�q��A���Oӽ jP5<�.��>s���c�]o�w��ݓ3��##S�##��]�.�UUEX}9���/��ݪ5Mk9s���:̓}?�u�Fk.�u�������u�T3R�Yִ�����}��
ȁ,�2;H��;0���EM�[�����x�RI(��C���+]�k��Q��vp�r��Ku&���:n��|�'���w|�y�`�r +�c�C-bYc�#��[?���c"2�1��D՟�7�u��#m|��]!��C%3E��m4��Q5�����p�F�L܋�
�A�a����yݛ�!�x�+Q�Cq��ܼ;�����:;�`�*n��$�6�ٰ㦆X��ɰG���2f�%r��[c���b��5�bN�/;��C�c�Tj���yS��a[�Tm-�Z��jD�om�M��L�7�.^�x��[*���UW��^�.�����(L��9"f��S�L�
ʳp1Gq�1G?�hςڅ�y�2�Qw#n(F�w�?��<�D��F�X��;Q�'<�U��*��+y�W����;��؝����y&�A�����x���]�3��/�o1��6���Q�q�N��g��;�OO-s���x�:X982=21yz�j���svq�w��b�-��:�q�'.�g���~Y��vT��qV�8����=ld����i'��G�T(t���3�b3ס�ɮ��Fqw>y���&DR�k�؜�@s?��&�"Ӥ��&::!oB)n-2'��KР����S��?��G�D��e(zǸ���&�b�)|�g%8p�����aq��ɤ7?�=܂�u!P#�*T
j|�KL{���y�R�+�T5\�NJU�����@�:�C��-�pl�/S܀`��٩�)�i<�ް�����ë����v��!���Bn�4�o�Ir�ݵ����X�_r�D(����a�uh�^²�&z7�A
�m!��b��ɥ�&]�q0^ELOrk���J▐
W���,�iYX�3�>�Fe��6r�yQ�f���r�o>��9qc���ir��"'�J��5>D���pp�>���^!�n��۱���	8�>UO�w�'��Z�K<c�C����K���0W&-�Ws��lo����T���G���ӅB;��Na~�18�n簶V^��Ŝ�k����O�v�j:����xI�C��{gOdv�d
��Ԇ��1�A�L`��LCw�,�GG��9�ۜZ�<5m��1v�:=q�{O�|����c>���
���tΎO�C7�J��6�t3����g��n�\si,SG��E���Dx��u�.t�0�z����O�q��%�E�tdo%��-�֑ �B�pUܨl �ʿS�{�bo���3�OF��a�Y�����
n\_�����S����(l�*1����	��#��"mbnI�Tb/��(�ʸ�4���M4H�i5G�з������������p��o�ڀ�����0�2ؖp�',J�)7�$���Z��"���W:FT	b�|h��T�b�FPcW�F/m���Vol2&\�	\'�*�K:�8BG�=`����H�j��u���_	�B��s��Q��C�%�o��`ʉ��.O�f�
������M��E��
'"#�&�+���j�g�5.��3��z̈́N��#�&�3z�i.�r���<-�&򦒙b�R+�No޲)�7Fo���Gu��զ�,�a�ta�
O=��i�Q����+y�F�ij�W�<���ѵ��,��s���D�s~׆tj$
�J7�a��,�g�Ǭ!�m�)���<�͡ab���K3##��'.-�r��Ϸ�Ά,�t�$�V�k������g��;��M,�Y��!��1��=����Ĺ�v
q�~�N
$�J�{��ٹ{�΃�S�l��}�R�������M�:�	J&��ׁ��#�&���0פu3tN't��:
nX'��/r�3o�uo|F�U�N�u�H�7~�6eҌy��&���Yi�(ꐰ~r[~�8(>>�
�(�Ü���ޮ���*�o]��4���O���4�=}�|�3��y���	�S��iK���o��Ƈ�<�?6,č�m��E�H�a�e6��-��cq�zg#��{k6��&�R&�m��̍�b�L���$�6Wܡ%��s$���9�\�ӃRiiK�U���%�p��BU_��40y+�O��My��>p�-Uo�<�j�
T��X�<�#�}���0�/�2��S�=�����B\���*�X��
O�s!������›�����nT7�Ϥ�c�|1wR��3���X)�T*����8�6L�f�7��O+�-�GWʎ�ʗ�u��%��U��hm�,nq����e:AMˊ9�xV�5�t}Y&~<F���@�s��֣1�F�gD�D��K���L�	f�\�:���|1?2�{y��4A�ϧ��Y˸υ���G���
��n����j�g_*5�aPSWw��'O��� Y���=����ʰ�X�ڝ=�G�m�2�2�7)Б7�˳�P?���T�p�k=Ș-��=���Ix�_��͏:(�{��Xq�v�)SQ�~�CE
q�dUl������@#:c�?rO�x�<<~B%�W*f���|���q��C<�ȬF���ߠ�&�I���-X64bz
�P(,k+>��ï�j�]��#��ǃ�m�V͛y��
�,��E�l�cj/��g�p�*���,J��PH{��R�M�n�T��|ʴ%���� �6��޻�*��yJ̒h�iA�&h���|��8�-��2��%FǨa�D6n}��'�"y4�C�ž��N�a}l��R�6��7�c����r�~^E��ի�$�aS�B��\�7Op�l���u7S���R�T���ȗ�8c��ۆ�J��KK��%��$*��G�s�e�~�'n�9����&'_Lgr��<�f&�7���"2f��l11;\,^�)�
#f���	N\������ș�a
�oS����zV�Ĺ���3��&G7����E>��K�a��řa�U(����0���N�?�@���F)��K�<P!%w<E��R�>��<o��a��C;�wdr��������h��*^nɫ�ؿ�p	�f�Ư��Mtv�Wu�h�R���4p�	������9g��
mȏw&��͏;���U�U븉��7��,�z���Y*����8�i}��M��ʼn��}��oS��O�W�X����&�1o�M�LG�_�@�0���{M!m7P�ԍC���[��ԍ��<1�:�?�L�E u�1'�i�l��23�
F�V�	��X�9�'�Muu��c��=X��� ǤT�����&Y݂ji6t�i�h�TI�OʡmR�����&
n7�}6�Wɣm�)�L�T2�n^�+6O����������'�=(4�W��X/ڮ�ۚA] on+�J���]����)�n��#|un^�r��˫cM���1�ތ��Z8M������R~kxt��(ڦ��f��rA�<(_�;s�5�D��e�q����&��ŜH��;���e��v,���K�vi�ԗG#o*�AلR�$
�!	��~��L~�R��pYL8h������l�̢���4`�aՎ���.�0$�d�DT_�tt����A�"m��R)�[\��!~tGݵ��=;��w����'?|��������JSQQ���Ύ�D�),psu3pQs+�<�/��lݞ�l����PC0�̑7H���9>L�f�ͳQ߼���Uɰ�6��i?�\��Wb�Ԉ/*w�U*�-�;erR��{��~am��rg����+�:��FO�^l�o~c;C����-[�k
���6�}?.1i)�L�
O�Y�փ5���C���΍ފr�eM���J���jeB�<�Da�y7�HGl�� �����_u­�1IJ�A5�䶭�MV�4���
��?�\�ij��I����.6�j���ᛓ�}%��j�8����aט��\�T�x�篫������2�&�NFQZ�`�L��A�≘y[	+��Y�DK���xW}�*����6Ӣ�rS��G������ͻ�
a���1S���W�rD(�Ɛ�a7�G��aT��?`^�4͘,&�>��<U�^XȥƘX����x�[�>Z{Tf6h�8;	q��g�Bτ�>���i����l	�g�zF�!7Oba�t7@�ɑ��������N�f�(�Q����=��i�}�y����9	���>f�:�ꞿ�#�E����$9��d�Z��8I����k��g�즆8Wb��;�vdn|$��������i��?Y(�EN?������Y�¨np�̉�����MN��J`����-|��d�����n��7�OY�Y#j*��	�(e�$�hG�	��s�W�����{x������Xi��{bK�HĬ�	q��़YaC^6�t����^*�@��0��aV:��+���p�D�0���D�[̉�9����n(�	C�5�����|�I=��A��#�	H�
�W.j81�kjL&/C�6�˰��R]vڀN�Dmգ1���X���yK���v���7�	a%qd�{��G�'�f|HK��
\��3�dʛE���%�.%+dLXO:��T]%l��0zB+���PUZG'�_�5�_��L�S]w󒗼b�8�J�9@�0G��4#��c��6⦉�+���DQ�n�;9o�W�&O����ɠR��~yí���eZ0��5N���JyQ������]]��;q�
�MXn���a�hZ='0�/M�������t$r��t�(��{φ�{��¥��3�):I����!�~q����n��OL�B��	'�}r�ͥZ?��q#����ṷ�|�;7o�E1_���#�
]�[���Ș�ݠpx�c�ڸ2"��3�t��?��t���R�Ȋ���tb�'~�︱چ_{uJ�Gy��D�Q�QĈ�(_"w.(nx��-ڿ�����$ �<�tl��3�q�ް/��v�G����BD�ao-P	=S�ՍG(p�8�ĉ�1`@�j��Yl���谀J�a�d�:�&��_)↳���@�M��	#��0���j�-�	���g�ɕ�QSu��K)�)I��0�+M�6p���y�=I���"���B
�A�HG	��$��Zc�%}~DŽ-m^,^� +dOl`X:�C�F��B�0OKܼ%(%�]�(?
����K��=Ÿ̻i[ʷ��cK��w�����O���C>��
T�=�^^f�?2��)���%�߰�8��X�@h��Qy����ʣ?��0399�|
7��E$�D�H��K1s��g�����z`�p����6���_���Lt��v�2	h�-ӯ{3�};AV9���Y�;�=ȧ��1�M�
ɵggs$`]�DG6U7>�B���s������t<�2�Rf_]+L�wnh�6C�?Cég6mv�Nda�.��/c)�T7�5t�'��(-��A���aX��׊ks8VZ4]vGi��Dw7↫rC�ȋ�ra�.L`���QN!f����_��R��(?�M3g]\���Q����2�d0�Pt|����0��5[�z��Y7R�8�ɐҶ�OU��P��#��(w�T$ā�,�l@Vy�w��b��VaD�X*󦪖���m�7�(���Q��j�M�X,�s�*�}��iI�F��aV��7H���XSKS����=�AZ�Wa#g��/Ľ�������(��7�m�J%nv�8���+hQ��i%�B���/Və�{H�I��#��r��s���g�-ͶQ�yl�R��ӣ����4�:`ke��j��^]�#oV��
����p�H{/0�x��tS)��s������?��<Z.���lw�o�U3��J�<1��ћwE�?���=��g�N�׏���P�wR�	\����,esYvQ(Q5ӟ-y)$��O$�����] ǯ7�
�uz��Ll:�QѠ:�����SC�VN(�k�v*u����;�wʝݟ̪�𗅐a�:��Ԑ0���C���*'���wr�����ߑQ�F窮
҇�Z���G
�N"�s#�q��Kܬ�b}ǨX�W�đ6�7�76d[�[��\�}^�M�T��Xxl���́����g^�a;]	�5th��С�L�f_�7��zw#))�R51�ښ�^��^w"1���Ɗ�#��C8�|bb���46ޱ��f���)(E����Y4�ֆ0J�lh���%
���,��c�d��C0e�0Gv�j�#�G��c9H��&�
�i�b�/�}RnI8I�ȉk��
����C)^��)]ސȎD4J�K��U�e8��\�"�b���i`�,���Ե��������i�x��nj�����:,kujt��;��9q+i�eM���\x�1����Tqi>o����	/�ҩ7$�Д�[]B�<x�Wh��6mZ�4գG+]��˫B�L�VM4j\ď���M��R�.��cǺ�Q ����<H����T�T��"i�f��*��%��ݜ�e�
�I$��3�
3�w��t�E����S�A'���~:�Y�y�w��ϲn�З2�J?ڜ�w�[�����wn��,�i3��K��/��1�l'�aI�>�#�c�a��چ�L�[�Fa����}�\�����ѧ�9r��C||�����XD���z~I����{���#nB尧
��x�`�S9����Wa�ySi�o�8}<��}���H�����-^�i��o�2G����%��4:E����bM1N�ى�	���ʍ9pC&����i�-3K��}V�pW�Ԁlϫ�*��8I#n�n˂����籠�\�'��6�����TV�B�\�KS,lbŽ�I&=��G��C6�4Ve��[�r���O̐s� ��Q�=�E�PJS1��?�ʏ֍(���XQ�xQ�TQ��4��"n���Ǽ6Bm"�.�@y�I�&mP�ț$����̭�=`�D�@�����[.��i�P�{����ӹ7�Hn����7?��Fg~�w�s{�u�PXy�<�� �aP��8b�<w/����s]��n<Yn����;q:��D�����=�Yr:%�R.�T�Ϡ*p��_J�~Wg�GW��eKr���鞝����+����>w�n�x�*���O���Щ=O|~�"c�
2���)�w2d��:�����^ �8�o�(K���u��2�%s��̛��k�
˓���?����3V+�o���o0lH��&c��+V�sR���$���
�q���X1��V�@���KT:~8�b<���(n1�G�'p�[Rl��T>�k�_���?5��7ch�!�����������F�&����G�I��S$���	Ճ1��*�ǵ��r���#n�L~u6�Ĕ��ᐬ:T��bķ�gB�d2G"�4��U����&��z2i���L��U��&��pmO�wI�wA��+d����_���x�Wx��{�q����<A�T0�[�V�_�U�7��?�����1!ރI��/��Ǟ+$���������Ƽ��}���-t �-b�sӧ���7$�2ͥ��L���Z[�?�o3�L-Z�9��<�o�en�0F�\��
�\�8e��{��>Z�3��W�n����,�	�sy�
�{���b�e�B=L�)ڤ���(�D�'
��'N,vf3�Ti��8��)����1�X)56X,�wf�P�N MTV��^��7��f1�
���u��߾Mj��.͕6q�g�y6�NQ��]����;��``N��?s�g��P>�ǁ6�:Ims��Dm3�I��a�⧣��W����^�_>|�(їf���Dp�9P��h� nX!܉-
���GD�+v/�H�n�(i<� 8wU�J|�.G�؞��
��Je$œM4��3�|;X��ڸ��7�7�m�1D�|�CG~:�Ϳ߿iӡ�ѻ�	l+�+^S�p�N�7V˄�./����	��qS:Ki�4a��w�:�P�.Ć)w�-��*��a�X��1��`ѵ���1n�V��n�p�ځ�m|%VЛ��&�Ko|��F.�q�^RI�Q
b�*D6<ބ�g��ě��U��W#^*�LU|+�0���Ҙ�=�ќp�T�*�P�
�>�M������O޹�K��7��Ji,��Ǖ�V���7�K��	�)T
��c�H�\�@��²)�G�ݼw��������YO��KЄy�ڃQ+x�{]�3�3��V�������]��4�\��{��:�h̃��\y�X.��f;1k0}��N��R��b618m:�s�����8C% ���9�����ݽ�0�P�=��^���O��vg���ݻwԝb2��Cr�8��qh���`��G/��)��G7~b����[��N�[��`�R��̘3�/���í�G�}�3���Lb�*q3>��7�_�~=LF���B$�<����ׁ��6��2��º�!G�"c�C�"{x�A:
'�=�(�9}���3ɓiY��]�oD��	�`X��
V1u~T���`���b�ȁa�	�~��ȃk�$���L���>�3!�}��cL����.�FP�
T���c�&�`P�H5�!ݥ6��vx̬7w]���p��*�L~�M
&ùDQq�3��v��i���7���*n��n���k�?��eT%�BG��c�M���d�-���B�d��L\�<�9�]JM�x�L�K���p��g?
��u7��y�fKK҅r�R�z�
\��{��Q-M��ܿ?���/�/��t����L��dn�z���9�cc���sˣ�+��<�����7�L����7k�B��,����ц���@�D��ȥ���D����^*/ώ�,�g�@1PVLe��g��AB��R.�(���wš���L�<����.�z,�9VO���"tN�.R�|�C$�X1�s'�Ї��R�φ�ĭ���/7�&:P7�"-�,~>�ɛ�3l����̈�a�)�����:2&���8R��@"���{_Ⱦ�+1.\Q��8Vt��l��M�LU�N���C�5A�
��qE$)nB��|�f,O#�8�;�V��7����nPŶ
�޿wo-�ٸ܈�C<a"�F��C&ĉl��f�p�i)�*@�|����J�Y�$����H �C�p�{����T�4�[�v��.�`�EH�#Ī�M�]{ۛ��M�t�r��׹�lB1|J�_�_W��6���I�j�h-@㧔7~%b�[pox�b�v	(A�%���H�l�l=��(� 
����:�xUnq��5M����n����JL�lڒ�!<�昅U���ׯ���P�]j�)��޼�5,��U�q�o�s+�*����2e;�
�
c9Z��E��Xzin�X9_xpT=��:\����X�������"�"����9�ppt���a�����Ha._^!��DHQ585�TdP���Gp�O�J/�ΖJ��s����|�<�B��s��3�<�&;8�,Hr}g=-��9؀�a�t�dw��q�0���>�z�96P����~N;�69��c��85���]�, ^��-��!����-��
{k҇9���vؾ:>��)SV,{Z��=J�l5��s���țu!o�Kb# �Q~ �ď�q$;$���>�d�ĺ+�M�R~�sI�[?��l@Ӱs����P���t��ނ-�uf�hE�����|�61���̈� �	��=ʭ�u�+�
o��>�4r&�\�u{@��{�$P��PS���$~w�WMJ=-I��1�@�d�p[*�oZ��icZ�G�i2T��'56��c���@oe��B���pnL埋���A��P\ō�������ͥH(UT��GXT����Q����s⼟��YX0.~T�<�{�˚
n�N�;���7�J�"�8W��J�tCauai�{�F'O7L��645���T��L]��S��o�pe�����b*]�Ks~~��i,p��8���8| V���2�����~p��o]c>�y��x�4���Z�O������3���ɉə|a�~�������YY$���I��8*-Η'���vd�fvv�'�80f��_m�M�#'&�/�K�Nb��&��������}��T*���m
�4�4x�<2��s�ᐓ�"p|�(ʪK�::;�~�pi�I�\.�=��1���t�ob.�=y�|�M�{���PI|�mn|*{<�g*�Ƌ^�I��P�R�.��,�}׆w���ϭ��9�6�u<���'���…�!̉ؾ��nGҸy��o�B������hX)�ڪot
+l��o��r�m�f���Y�ش8�/X8g�
a��`����X�^��Ƒ8�C���D'T��u n.Y<,W��5��ִ
 GdٝYm1F2��*����%�/�l8$��+W���W9�������f��"�Tᅰ����޹F"Sh�ԉP�5�����?q�H��Qw�Ci�!7#�=6-��MS�R�����T��n��..��ȇ�y\�%&Qh��㌭+sl�7v����g�j�T�	�P��\ �}tmt��)�!E~����m~p�{������p@�Fנȃ��9V����?=���*�A����CS=IR%1�Y�U�����;O	3�!+>Og���ljPG�Rx���
lh���'.���^�g��ޙ����:�R˨��b��hevI�~�L���L8<��7����n�C1�I�/;���L�g�:�G��6_eg8*�޻m��5�7�J���x�>���������i�M�I�>y&8D�@	����^1�TrR�o��>�(��>i�f�0
f����;
��k���n�.�uh/�iT"Tߋ�[�qt\�H�n1G.#5���Stlĺi{/��Aq�]Q#vL���46:Q�@<uFO<��ՅX5���A��fԍ�	r�d%_K�X`L$���IZ�������O5A�����
��'>�r�%[B�چS���l���������3�h�M�f�RPe`fb
��OGic����ݸ�����#o�DK�W(��|s��ii�������M�#d�W�&=e:��4��
���5��N�>�;S����u�W�B�����2�`Ө�p�{V ��a����'h�����?��_������p��_�o4���(`��'��B�`�������h�yR�X��<�ȗ�ۦ�l�s��΢�V�FgP���<M�'���K����\�����,�`��w�k��x��J�DX�ndY	$7��-�]���a�3ۗA�����`ڜ��E�8 Y�s�F�~9�>�[?"
X!�w�6uk��˕�Y��Ɖ)��
Syb4��N9�)�F)#��Q?ȉyM�ؕ�?M=�׳�[�h�=��r1��AŇ���9d�N�ְ�A�;�G�`�p�#�!���\�Eӗ(��A��q�^���Jl���n�"6B-NH�#�D��Y��!x�%C"�Ԙ!Px?��Vskɹ[�&���L=b��Xs����y�[�ƾ)���a'�p��饄��8P��L�]�\/`�5�z+!4t}�'�z�i�W�B1��V�"p�G"��G��p�n��=���P\����I2i�~�6������SL���ǒ�bqj��r���
e�K�3Uv?��ƍ{�^���dn3��сģ���s�8�¨C*�(&�����_���޼��כ�G������'��C���ȭO�T��Y��.�p�Ks�����y6o,�n��-A�|����/p�J�Epo ��;9���tkw3Tgd����8�ϓq�L�u#������H��A�:)���C�%:��L�eo���jD�XYԍ���r'�k8�ë5�eF��Չ��7��)n6v<ޙ�/4�_�n��z��
FEB���ӂ�#zxUb$�#�8�I1���
^g��ة�;�<�qx�������>͛�KmmMm#���!�7�$
�N�^B�ؚ���5.{�-��y��w�J%�3�!<����q_�[*V�Z�<QqG��
7�4.��΀�!3��MX���D�l7��V�)�34��(IC�R[%-������쿶{�����&�3���6�y�2��=�L���6q&��z��yu�7��u�W�����߮�;�hK�.�zR���O�o�1�dA��$���y:�����;.��)���x���y�:��sȅܘ}S�9F���f�s�ӛ�8������"�"�">u��<s�'�W�<�0%������V����-��gl`�v�~�
�*�~3j��I.}��{k+�<��J)��"{APXX�K�'_&���</�!*m�K�c�-��g���󒈟���@*�&n�����;/>�u����D���'f�i���xgbqd�L�׆;P7�&���Ie$��F0gR��;��0aTV҄�ᓉp<�pu�C��bٜf���[3X6�9�.���C��_������of�0�uYL��i����֋�>�h��#�n��d�_m������4e�[3�Q��o��0��<'���
/
i%��$7UN��%����]�ĉe�:ˁSɞ\R*T�� ��b�'פ��U�$�6�b�
���M�tR*��o��l�/90�'nq�wC�A{݅�~X6�!J�
�@F�:۾
3x������^�EG\f^��oF�Ep�1�b?} �� ��y7I1�F�b����^ơ׹Ck����A��X�A�M�����PX��J�4==EMN�ث��|������;�8K��-�4�|�
6�}���
�*�*9��A��nX��zO��[#g~���ő||̡O�E�"��*�C�h��~%_.0�P*!i��J�0�rn��ラ7��C��/����P�Z�:̕s

f{��O����E:�h3'������q
���LY��v:;2��,ك}����{��*oDeL=A�Dk�%~q6�:�O<�|��aK�8�6;��#ӭ��d
��O�zMJ�7?u1��۲��P�;���Z�	e΍Ԭm٨N���e�����3��$8exR��W���5��#�&a��?��W��[���DHa�����n�&�	B���7��������n+�ԫ�S���)��Y��V�1�i�l�ǦDЫ�ƚ��%�e��-�M���QEe��ↆ);��,enoy�P�
2�%lܼU�
jT��|�/���5�~�V�^�
��/t|�`�74�@��i~7,���㵞���'u7/S��;7E�O6}t�x�ī�CiV��K��-ɍ��f���j���1f[�+DTd�榦��ø&O�K�c��z���#�Bov7�m�!��3������S�6齷�v��/�/?7:=U��1SJ�y̍�J�T�LԜR�b�N̕����/58��Ǐ�̦63e�m��C��7���l��8�<�)�i�Ÿa�;z[��}�+ܡ�����1p��+(�w�9���}��81L0��&�6�S
B��q��f���АCj:d���Am��R6� �A>�i}W�pw��
[8Ki
�6�eK-;]��7Sm��E�'���a����#���N��R�p�G5���G�	TB��V�>��a�p�����QE۠ZZ��D�h%o	B�ɡ�B�/�*>᪮ʈՍs��Q7i�8avM�r9���ܨ����l�sM��u���L?���~F�Xb��U�nhU�$0�ا"O8A
  ���W�*�M�_�O�F��%A#� Ϻw�O�J|�!��Lf,Γ`�)�x��u7M�����m�9;<*��ъo\��س�x��������p� 
qx-��ק��5�AW����H_���x�V�U~˙p��/P��,Q9�z�w��./-�"7[e�J�ح����9*�g��|�3{|,bh�LQ�||��b����Ɏm�<��ӷ��C�?��/���Cox�`��l��7�?��7l?�7/daР��sgUZ��x�&�y�\l�˴Q�q�Fl�hW�����BE�E�G@�ź������X�M�j�⺊�MM5�u�\`$��ސ�������3�y�9ð�y��?�$�m��&��ll��ӫ��ZveO�D8	{F!��ྉ����j���I��.�׬ᰜ��I&{�Eյ�}��4������Nt��i�i*��U?�{��ů�]f����@B�nx(Qe���`���Uv�r�8�6k�4���������&��D�0Q�8�@�hL��P
-B+uT<X��XO�`h���&V10BF0tڋ�O����=��W���iB�ɼ��њNp��1^Y��O���^���+W��t������>LFO0���8���_��`�)T/0!vp��BJ���a�L�c՘Xc�-ڧ۵��V��4z��p�����3�t��.uп�L=6ES��w��,7��ڵ
;N��2zu��v���<ynU�w���^��L�3x�Z�1�!c�׿�֟]���Ν�+���-:���8B �4�`�{��_~a0\o���;���>�k�	c i���M��%���	�I�3ٖ�L��z���la��B��ą�B�������-\�07rd��Cg8�I��g/����3�#�<U|�.��ʞ�@���pӁu��f/;0��'��|l�q%NX��\7�έmk���q��BySvT�۷������/ٺ?8�\�[ƸI)rU9�B�1M�^��F�[7V�*fM(�"�W�p�Ŗ1H�h�H��{�hq]��f��F������#g�u:�HJ�%`�'�Č�r.�R&a����\�U����C-km��5���a ��/��2���t7Ov=�Ԛ5�	?1��r�\3ή}� 80j�
�m�3|�9����+é���H��S#z��*G����R��R��b���sӓ	�󆾣~�V�y�w�XԄ�gލ��0܇�pP]MSt�Lg�MgV�ՏS�>sn�l�S�J�����HnMm�du)Z��Ƨ^�姿�m����n�Q��E;a����&�!���#r>��C�=�;e
���0����/�s��m�'�w�*%z����%�b��G�"��@dR�ɦR�t&-v��MݗK��%V�(�\ҍ�)pވ�R&��]#��躉�
���S'��v��V�bF�(e8txCɗ.��Ky�~&U�w��ft�]��4��»?�������chnԖ2��B�����B�!����
��Ҁ�
ѰV����n���[���J$W�lW�����\s{�A��ncC<���F�zm��,6E��gn�9�S���͔��?�o��5�肞��?�X+lH
]m�D�B|9~
���ƒ�:S^�
�.z����T�GE ԁA�74[a)j$��X��t`�Bq�I6�qc79zGn	�u�Z�Г��MP��H��fI�"^����7~�أ1.��ײ����c4�Q>���Q)ʤ�3���P�����rK5)jZS�Rh�5��ʟ{���+���^�ꨇ���\?��	88���Q�8�|���@����"n�3�Gs*x+�ߞ�z�iәMTH�~k��`�8E�
'C@�ggy|��(�';&&^���_��[7n�#}rۮ�2�軯t�l��g^�F0��書e�M���7�|��ݫ��a�o6G��03�_���@Y�d
�&��2�bd0�/A���t�`F��KIX�w�)���>Y��A�,�<@�1Й}q}��>|��E:S@��8�&J @�:�y��1��5�u�޼�G�����d���a��h�~`�
��f+w��a�T��F��	Y�gNM�D�l����YI@��B>\pl�B,Th�"�]�|�%��n�h��DΕ� �G��jХ��nɨd̔��B�9H	�����U��6�j޸���^����c.�����P�$�c@	�X=e�qČd�);�\�5S���'PD‡�]���Iop�-^P���.�P�#��ɛG��
��O0��˓�����4�5��י}�gؐ���o��tU��֧���t�:9~Bv�Zí�Nn�8%f7�u�`�(�-nu�$C�2xk8M�vL	2!���Q���z1>u>s_��p.�y��wnL�b]��H��,$A��:�kә�;�bW�>���ͬT��0'��l�\��]��ŧ�Hכ��KN�Gw�;Vx��E���
�K6�754��XU�_���o��#���?�|�ϗ�.�n\?70���$	�I�B:�n7-��ӸiNK"n���O8��Pj����>�[�d{!��T�h8��q3h��q���9]Km+V��F�(eb׿�˂CT9��kSaq�E��~��y���H7�lf����.�s����W|r��uO_()4��y���rè(.��"�/���+��50�&���ӫ���X@�����K��R܊TI�k�cVP6.���l�JN�!��hK&�v�.�M��������JY���T������/�/�qz��-a���p2�Tq3g�I�#�#0���J�BB�j+i��Җ�7���+�E�W�FmPVu�n��u#n�jS�Yd�Lj�`����GX���md�?��ɧ��u��ƙ`)O�J'�a��Rx:s"l�3X���`��U���X���f�E���2L��h$:��O��S�7*h�
ws�r1��ȁB�����#��Ul����/u㯑��Uh���W&ׯ�4~�l'���{Vw��+�i�PC���qq����/}i��Iۿm�F�;v�%'������
��K/���_k�%�XH�?��������N��j�R����Ծ2.�L�*)�d3�c�ķ���IJ�`Ju�v.?+n�7�PR@�R⦐7`����$N���EM�P�ͩ�kmM�Q~>�}d�Z��h�Ʌ�L�pJ�08������Q�pb����f�q46��Pu�8�f��ya�؅���>�T�[�|C�J� j�M\�u���kr���	��i._�P���	X��@Am$p�
Hb^D�x����i����I2��L!���CP��)��&v@F�	�����zpcw>+��s��߲Z�b�>T�淴n�H���阓�6�����A
��i{�YN�!�>���������1�X�D�����"�M(����9B?p���*.��5�5]?xk��~��=��4q}�n�@��ŵ�j)ü�"�¤@�+X��)�)#LQ�hh��&�w��Q(�8<Ns�X�׎X�V�k�aEU򓣶a��7�]����c�(������q㑖/{G5I��/�:��qž.Դk}+�udR��>Ø���!>N����"���[t�����b�,�y�,O$ũ9
���m�Xd�XT���4
'm�7:��2}nh�59s4�#wVҡ�qSW2PE���LFܔ�)��I)�A��w�eţ������y�p.[B礹
K+�W��4��+��KF�g��h�:4t�kB�
�3�u��C�S$�\��g�P2��Ñ��*��4�.lƀB0�?�9XQ�U<�L0P��T�}|.��jG���[i����wƐx(HR�HH�;!&�ʤ\>�Op�5�E��8ǵ����cP��o�GL��99��������1��Ls>|7��p�{��n��\�"a�[��8�f���XFuKHvG/<b[���rhZEd��	Q*Q-�λ�QX�~1�X�CJ����hg�b�U��7����ڸ�d����}�
lX��k
��N\�*h?�0���(����M�T���e�jnT��тC��L *5�xf���k
Ŧ�$Y��*�������Y��������aTz�GɄ�����6�#�#����nOL:��A6����	�FO�lW�&T�pxG�{0�R[6����1���S���z&)n9V>V�E	+ڕi:NyÆmW��
�p����
���o?�a׷v]==sjÉ��WgN�͹
]1 ��}�y�k�%C�;�1Y\8-&��,F� o��|7'J�l6_ N�/��Y�L2�Z�u�\VဢRw�<PD���9Dđfˇ�5%^�S��u!~n�́A̪���Y4�@J�L�=�ʄ�`\���[�P����gd@�PN�Mы�t�j�xXt¥|��!T����#���{��T#:}��Fm�cGJA
�F�;T>]��2��C��,��w`��w�7Vs{��
W�������7�Ҥ�zՕ�ZV�{����pn��X���ZC|I�˧�1�$6�X�쥔\W�~���^�׃����E�T�^�7�.��9F*P�-m;ɦ}suu[�O�vM�#E��{p3j�>�*=.����O|a�7�'�f`:� GT`�ľ���3��=~ hb�J
�*�V�o:Y�'�w�Zb�w��@�����T��w���k9��9�(������
���4ì���c�n�#��@��m7W��q&�44׿2uT�R�G<s��{�����e�$耛F�
��˜���˗&G;�(��C����T-u�<3~urץ��ũ�Cļ<�!z�5�l^>;_�5�aËS׏���z
/6ں���'��l�ն�q��1i�m1��d[���b�—�K*��o�/�h~���g�Lw&[">�G�0X���B�tGya��]����{e
D����͑;��1��P�M�Y�����3��.�f5��A�~`Ä)��)���:|�@j	�1�Ro�OP9,�>�%�Mgm4u�LA���L��W�v|�1�6��ޑ��|I���]�s*&F*�)Wc0gc\�$�`R�?�]N�m��n�I��P��0xT�wõ�7�o�0L����ʕ�4HYF[HF!����G�ؘx#�6���CM�l�Qnj%��i7a%H�6��w�͓�Q�ךo޿s�N+�)�1��O�2��(���'�A��<��~�ڏ|��v��+��Խ	�
�yo[p��5�pP&�6�e���8=9*"���:J��8��l>���Hc����R��/-��M�@�1�xl
��#��5¦na=0q����UZ�t?|�|��}p>�o��������<֬ʠ~P<�7��������c��c���,+�Po0u��7�_���[��Ɖ٦��{�֜��V'`���s�(�|��6�a��O3�M���&�)p2���w�}��3نB7sk�K
���t��\Pzv-�>!T���}�/ؒqc�R���	S��@���Ԃ+�@8�'�F�,,)c
1`�G�B�	̧^���8���⡩�2�D�I�m�0R�A�pZ�Zd��ƗBśt����`q��p"ܠ�q:�/���Y��S8o��Mgg:�RU�L����-�@*'�\_kpA֕z��w󓺨�낃��Ё$<�iÜXp�����`�ǃn`V���Y�ap�;�"�q9/�����Y\7�A��B-�,�0P7�l�goA�m0�/���c&�- �@C�����<������{�C�����K�\q��7���Տ�,y�Lh��3#�\S3�18�" '|"Ut����V9->����	�ӆ�b�;$&G��z�����_֙"?jiMEϸq,�_mR�F:��:�1so]��b'G	$�q���W��!D��`I�[קH$>S.B�b1L�$XD �Z����}��9�ϛ���ֆ�o�e��a΋+'������e"R�-s�v�jlo[����i%�/�d1��;-@�S�*�W�d�g�y����lZ����d5�'#'��B�1G�R)�����c��]�0�3_���`TŇ�b��gx�ݼ>p�Ϟ��.t��^���M?_�ư��0L%��1�&�F���Q��	øxL;�>N�x+��̤ď�<�V�+��U��t7�A��k���[$�"��B�@���,aV�M�0�
���r\]_oh��:Fl
I��-�ݗm��`c�k��y#�ظ�mDF�
�4(K��9\5\��-����
;��qa���hs|�ph/��m����h��!n�6�8����A�߻��*�����t�z��?��ɮ������o�҉��Ѯ��ϴֵ�.�6��`X�0u�l(�,V}br�3���#R��D�b.���0���]H�;��(zL�#�&�A�(����b�.>ë�~7�wK�z'�y����;H��!�߁7-a9_�S���jշ~�*�ۿ2~5)Ε;�	�1ŵ�)&�B:�1�~����—�V;��9��VF��Bи��i?DgO:��)�:jlp`P�0�bEc[[�u�}�7A�d�'�:�E��Э�8`����J������B50��sA��I���a\���_B&F�p)
���˛�����-=0�4�Mq�|V�c^`���:�Q7�z|�3�����a�6QL�(�G�ƣʼ�!� S�P�{e� �<�
n�Ԁ�O��WE�R-A|��8P�0����a����꣺��)n��2��J�ZM��b�,[]�I�֎��K��KQzq��V�C����=,�Vw7
�Z��U��f)�`�JY�m�OapO�hPi�h�Q����O��)��XHndk7���y�nc�54�!>��m�0mg��G:�]���㮮}��bط��K_Z��}��hߏ?T�;=<<]�fA��,	��j~,^���i��_l(U�k�	kFy�a\�!�Lg\���a<��q�>��ƍ{�X�����z�����uc#Q*�3k��Ȃ:�m���}��*&'1p&�e�m��\q��������l?�k�hg�M:����$i��8�r
;�g'�Nѿ�U����>q�Ć�q4��v������k/άl<uz�")���l;�ִ��#�ͼ�@���W�*�V��)�x`���8�ɣeJ:�M���	��[�i<�n+�J�S`��A��P� 4P&(��cɧS�a�{�Ν�>C;.9�@���J�,J�	S�g/�LF.��re���(-E�G?�p�+5�6�S�����你~<鄷/������z�B'�6\BS�R�mB�v���.�U7pš��P��Ln�f��[j�LTW�A�sY����>�zuU=���p���%��t�TZ���͘��­�ZS~��!5Nx�ZM��P����*fD@��SS�eDЫ*nX)�Wd��o��"�~Okvw�N�&#�]G})T^��4��š9}eX���Aɨm*i62'n��g
���Sμ�U���@�
�-�{q\�&�D��Q�U�DuJi��t>4
�a˄���q�=�k���P݀��ō
F�8�G_��7�o��ю��,J��Ĩ&�Uބ6TЎ��49;A�X:�Άl�_�4X6O��h1)cK��ßw�kfnl�җ��X���T���:����g��s��X'��鹋��2�m�a;R�bII��`t߄"�4/M���O!~Z����-�{�ܑ�m���3L�1���(n�q%z\�*��E�̮	I���y�`�3���%f��ԉ�.<�H��
u3�1%�|n�M
�]	n$�g��mM�[8�Xt�*�84�l.D�x�o�
4v5�8�F��OV�MTA"�qQ���ٔ�w�uV�S�M�4pT%���� �U}��9W��H}���e��Yp&)��������I���K{ȕQ�D��(r�aD$#��`�0�b�ͧ����/]��X�,�-��v��WWǥx�C�k1p��Z�|˖�}�h��o��͟��\���;��#�\�q��0�^�N��M�o^r�i��<��q ��[�O%��
*��:z�����Qy�T�n1�ƁeO�f؆��n��D<6����c,\��.e��R���p6NKN����wӡ�\
q���nV���R�
�LtR�t�V��]��3���AM�&]8��3J�'��ώRU�n�`�+2��-�<V��eɘɳ�64���ġ3'.�x��mXWm��lA�٦��vm8t�jͣ*������O�xAg����T��/���*|g��c$L.���/&���sZg-�W��A���#���78sz��^��_�H"P�؉mF9�9�&�ۨ���ґS�C��KPT�9�6��#��S����
}7GQ���B!�I���ax��S
)�w� ��'��]��41�-"8)�t�~�"n<=��4�;4cA�l��T6|�����!���h�Ϧן��8��O����'
b͔�h���C�U��Ӆs��m��(^\l��]�/�1�B��p��]��]6O飼��RS�M���Ѡ��~j�|c}��v�;�P�_��z��;�w���}��U�����W��~pr��lUlxL~@�`[Vipp�Y���&)a��a�QhH=7�bw��Xg�p�l��n����&�؛+�� _;�I_���w�ͫ�Ϳ��T��ﳿ��1�\�������G:/���I�Q�2!�j�	��v3��(E.\�=���*�	�iȦ腬����+�37u�ius�qnl�����[���Iy�]��\j�xt�sm����>|=XT[�?}|����^�%)d��&�5@e�[pz�}Ӑͨc�4<p��M�!�򂨥Eܔ̼�0��IH�1'�O����\bb.R�p�4�`*p�yy}0�d�ca��`��\���b<[ȅ/?_b#Tگ����$B��Zy��^�.�%XO�Ҩ�"�&o�����ʉ�!.��_#nbt����7�B�!)H��jW,�7��ڼ������J�P��u��~6nkΨ`��Cɓ�}�F����a,(�\Zz�{�g\x|��U�9�M=�oj�����;�k�o�k����?��f?e�bj����a<���;X��r���5��q,YLx{���C#}G?v�86�(4L+���+{B�q:�3�L�x�M�E�P
=�b�OY2�m���	e
˩g�"�������f�]!p����!n�5�y�n"^z"y��Ʌ(H����gk�v�Z�?N�q�_&�#E(���N���7��)�����o1�_u�)R�|��B���'��&�w}���-�C'���;�W��5�c����������?���1E����y`�`/��LIW��|��B��|��3�C������0�c�]�ac��E� )%�	��"$I�����)|Ł6��s�TrF2sITa��U��*�V�T��"�Į  ���:D�⣢n��;�3V<3w��b����@���<���A�q�&���>"M5Vkq��s�RDo��<��&�a�����%��]3��z^�I+��cm�M�gL
���n�-d8`�m{��SCB���yΫS"q O,w�"N��zΠ�6n��+M���[�p�΃;w�?�}���;��bL��78}���B��m����g����z�;�񅧶v]9rr��O,~s;�%K�zb���fþ�Ѿ�w�x�� y�8�6�wn��pX�H��O"�O�0cΛp��f��Fτ�|�:�� r�M�o߿n��<�F*�x#j|���""G���ylS��w�e�ۊZ��`D���}#nX���qי���x��v���<�"�UL�g�Q��!�s�٩�S�3�b~��ф���ʫN�O�O�h�p��en�2-��jF3�Ry���9��d�����J	Mg���l\Q�0�d��nRB�@,�F��KJ+<F��B�����Q���7tp���n=�8��J�	�'&I�T� �p����B2'�}#N�f
ܩ��84��7��q�]\��WU��_<�M��'y�,���4��/�7����d��(0@��qΪmf�W�m$�&\+mX蒡6�UL�uJUK��N�� nt�3>�����)`��5�r[�����7�T�ϿL3�9�e��E/��'u�yh������G�Ģ�(o��cqe��C�M�H�xV&�
��-�����z�������;71xȡӘ��
h�ҷ-z�R�T��/<��8�~�_ג%k޹���qɒ�K��3��#}'Ͽ�Z[f�
XU��	.�K�
g+�a
pvb�&Tt2��$������җ����í�o�����|��?x`^P�8�X���.g��5���MX�%�%�$�#n�]���'B�8wkv|rj����宓�<^��bF&�_�j�0�RL!t�y0�/G�,z(�.a�/L��;M��lӪ^�C�@�2��	?�x&z{�)��vv�ԧ��ߎЙ:w���ɋ+f�V�[Ѿ�k�/�
Q���,S�I܈�l��zS�ō�)���!_b�L��[�އkܴ��,3!�'Q��b qZ�C��q�`�+u��2�Dz��Y���FWrTF�"���0*1EK�n�A�P/����;`VR,�FŪu��P�L��ƥ�1�Г�Fr�u�R�țw��H�%���(��
��)qWTۂ��f�Ą>p΄��b,�3�UՆ��3����[L#�-���	3S���^�u�[��`bK,P�x88�k&��Q�����Hΰ�=n<Q/Ub!�{�e��,��U�ܼ�ƹs�Nm!�!�#N/�D�R��:���k�D���+���M�o{�%W���v��ޢC���W��g��.����F��c>1���mlGၰ!<u��E�aQ$���+:�@�u��L?�!o�A�ݿ}J2�A��:�Ƣe�Q�� ��r�p���U�G-����F�8~�1ˣ��PNg�d�Q�Y�?=â��O�x�����>�n@���eR�E��ח��e'O���X&E ]�;���頧9�b],T=b����Ss��]���wn��̹��9j��G��6�����{Z�A���;�`�L���	�Ѥ*�:��-�JaL
CWk�[R����6����%מ�e�����24RȖ�؀���1_'iiIF�Tˈ�`$�ȩ����6^��%A���pT�5�>
�<7H%��'^�1=x���.�hZ��[0�4NG�b6�nv��jp^�Bnd\����֔>�f�MN�S���6W���˧bɄ�i΁M�'~�c�>p��7�nb�
CXx�O�����VҎ[�&W\��4'̫�ɖ&�+.0��
��B�'E�zt����h�@��z�D����}�Kk���>�"6�݃O�7?T�Ȓ�ﺵ�]KNLMA�'�4�$��71��+�'ȍ�X�h���:�d��a��9|q��� �0���^���~;#�!����k�&l��}��7.�"k�Ήa�aV�0�F�<~�̻y}�1��<�����w%���hME�kY�^[	��k��ʓ�Z���(d�+Ơ����Sn�Eu��<mk�Z�	���k$:)�:�1��i��fO�47�iժU�).�FO������QFI�ZSc��?��}cc$R(��Ř�֌9
�5�$�&���}t�9D^�M9�N���#p2-��8Æ׶YO���������$�V�˒^��Y�.a%N�qFD�i�;��Hl*(��&���"�Ͱ����|�1#M�c�`����g�r`9��N1��ع/�����R�3��5�c}��ʡ#�����:U1Ît2E�T-//&L䰯̼�
�dP�.�/�<�[p��߷R�
Q�D�b�/��^�=xa��Y�
{��qIL�àr$!U���qU;��:n��{��4������P�Qf�,)�1�ڍ?�U��Z��S�5���~�zӒ%ۮ��^n����5*�q�ƍ�GL҃M1�C@����:↋ȳ�15�ca����*L&��ax�C-H�������suB߉��RM&�p�
�y{��k�WF5�J��-�������fC8�V[��e*�75�}��#������hЅ�ْe�4��Ɣ��c�R��N|�eN�*�+l�%vE7���7���?s��ř����m;��w��A�$OFqKR.�5�h����~����
�Z��(u2�~���bJ�Io2�ɨ���*a�ե>�aS��
�i(��e�K6�d§�	���H����=SB��]��HC#�u��v}}j����@�P�'����높X2aF�]\iq�j��d�Q���00U�f�-R�k��3��!��I�)��q�*@�;�.�i�E�]�k��ʹ����{>��E�۹[�N����kk9�u�&}9�U۞�R*6��!����O��~
�Y|7=���
1��U�A'ԄPq�=��i盽��g�6{�vK��Bu|U����6ä�ܻ7�::���r�&z��~�"o�����x�VĨ��O�����śh���6>�)��}�	*s�ܺ��RLL�#�{����ʗ�񂻸��^�#{�p5RK�GRDT�E`y��-)ޗ8���d�M������&j�����a�Տ��n��Y����w��yu���=�Ͳ�}���Q����P���&����Ԁ.*	�b'��[�<�vr�@K>���5	��o�%<��<7s�Ե����'��W|m�����@(����
��9��O��4
���U-7=
�!9����g@M�`~
�<GѤK}XV�
��,._* pˆ�7���,#3�2ҧa�K�M(�Lq��BB�4�E`�JZ���M��7��w3C�d�9�d���dW��QA@�p�hO{�W<4sM�ZB�&���G�Dh��3�GƲ�|��<����#&20֒ģ�8��k�w��Hn�ȓn~R6�.h���V7OW��Eu�߷ֶ��	���@���k�R�h@iNyY(�/pߎ�	��#YVI�	�V`����#=� �9�3�
�u��	͸m�
Z�r
�y���+�mK&�n�ɝg������Ư�~���w������|������o�/����k�rd��\�Ǥ�_��3�h�cjN�qiLE��q�q��oc
�a�v�*��81,��G�nq�oy7ա9R����7��cp��(���ޢ�Ӌ);P\]�ir|��ۛ�
�7(p�1~ʼn~Ӹ2�_s	A`�~@X'j��I�P’J�*K(���ݎ�M�4������ͳDv��d�^Z�1����u�OA(n,��v'z�ݙ���&���Ѵ2�ש4���7�R�.:B�L?���)�Fe��O�1�'�#�Bu�W�bJaj
!hF���w<24��\E�ӗ�E9�쀸>	�fCfT���Xpы�8�Tt�;(n@�@3|+ͮ�z�*��@�lҷ9�8�8yL&F	'>,�&����A�,W�GU'-pH�I�;I|H�T+���̇r�4��ԣ�<ȕ[����Z!mx�o_Z�\�"y[e��>��*3l&�4L�[9��aZ���F�p��TJ�=�j|
��k��(�޷����g�����雷�^�~�u��C_�h)U�0;���uΰN�߱�Ⱥ�m��}�\�f�'�holZ��̥�#!�#�g�^X���a�
�N�Gjj�\9B��=x,�$Y��bC0�}��[X�y�p��n��y1���Y"�CXQ͸���8x�3�|>���y<j�'0�b���0>\��F��|20�����D�\�u�J�m�̲���,��w���#���)x��Ncʞ	��C#%AG��a��p*5��;�i�;99���B>��!잕̞ml\�����CPP�,��l��,�i��GC�Կ,s2.��RڠoP)��������HF�q'cS������$�f�'����P_�|�a�np�lGC8F2�|��������3�hr��.�+�3�B[T�*�eAI
	V[�]qHŋ�����=ޚ��9g{�臱̒7�J
#��
�XI��akF��/���m�CO,�Q�0�w�U���b��e3��u����긇�{]-��\��Ң?��
�R��"0ƌ?�hh<K��x��uz-���
KL�٫$���1c�uPJ3-f�#���13<�w����W����5��8���-}�ޥ��GY�u�����4�n�p� mȾY���ִrōߪ`�\�������2�ox6�7����u�aA+j"u<��i
��f�)�)�x�4���|�4���Bg���f�
��%�"�a���@>l�n�*��̻9Ri�%H"n*�X�ݓ���R��Tx���P���qg��m��Z�893>G����U�/�H�1&7#�b�MC:�.�
�����Buc�_�h���^��RJX�n�Cc�B�������.(e$S���u��<��9��C@����ٱ�J�Iq��4i6ܔ�^)�ăP�ѡ4�\�h���T�2YG�0 ��&ĮP7��85�kCI�<?���������x�H�@�M������=iY�SN���#(��X���'��I�L�Z�-�x��#�,VTy.����ov!��ާ�z���Ώ��y�����]U��'P&�Rͫ1�����nXlH%o�u0쳖�m���^Վ�?+Ɖ�c�բJb;�+���K���}a@[ih�N�0��c8�	�\��Զ��>py�2�ʔ���
��zf���k�.>��};gfvΌ�#_[����t����o�;��������Z��}����}ۖ�7�򗩕�������r]��5;��|b��um$����Eu��2�f�_i�a� �5�t�-��㍴��S4<�IeÚ�aHa�!yژU4��"
��a�:mQ'������N�&[o3�����A�͛�-�Fm���w����V*�~!�+�)�1%1Ҫ�]��&7J*,�l&��S�6|l��
�m۶����t>��С�	�08m��u���*k�q31@-��#ȈX�D|���������ľ	��IBO�>���:��e�f���SA�D�dm֢�&n�:Υd#��z�[J���9q�4H2YK��
׌C���* cM�%~�8�n0�����0F��GF��˃/<?42h���fd����A��$��b��&Y{4�v�!���6<7��&U�.����CO��BōTJ��U\U�"G����Vq���Iy�;�UY�����3q��,p�Tv�?V7J�fu��1׺�����"dؘ�N�Z����BxY�Ō�P�CUpc�߸��I�����K8k�NJe����|����gw�s�SO�Gq�g��A���jl\�j���+V��:���̙�+W6m�t�i�ţs��f����޸q��]�)+�^�䢥��8��lzj͟�����K㚓�>�n4��c�&#nN_ǀ����o�o=Ƶ%��PcOMq���8������
*K�@/��h-1)qC�����K˧o>G��Y��E��UYx�Ꮪ���q_gJ�c��/lcι�ڂ���#>l��:���O���'�*
�o>�F}0Z+^P�DeN�ȄK�����^�EI*����*DF�r"F�����˨�c�@ZPb�3�F|����g/@ל�>�9@����k��ݔ�H��d���`4:���t�7�\}��헠�ê
�4����耛�4��$��W,�\; �B�07�D��#�{G�I%���j�~�Y�[fqw��?y���n(P��r�M��\b��8�0������F��}R�-�����+�=I�p��8�Î�@H�ګ�� G�^Pr��EH��zg��e��l.(�����m�b�������������� M�U06L3I��M#F�~�HA�H�"͔�T�etd��M��ݪGѾ�#Κ�#��iav�#�Sh{ŋF�o���75�ނn�O3�U6��;^$	�M�v�
�K�[g'�g'�D��a�N��JU�F_��y�N�#N
W���QT4�$I<7�}��'?�6������*��i��u��Y*��#*k�ಆ�/k��܀afE/�O�v9�{P����#��`0����AKjm-�l2��'c�H<��A'b^�������
l��dbB6uj�`��
���\&��|��oMnh|w�Ӷ{�X�w-C?G�ߵ��%M���,��i�\��53e������SN״R{��B#���u2�O��Ff
��M�7��"�-��@�q�
�Z3M�o�F�fy��9=�Lm�3�����"8��ΰ��f��\w�%F��W����Pj�����_�o�:K���|�ˬ�R_Q-�`�����P/8bB3T�W�U�б��U��+�\�B4���$��K)�C]��]��}�|��b�v�¨��:ɥ�{�<Hy���US-�C�G&�QB�bF�Z6�&������o)5t�:���R>���弮�Gr�#����E$��|�e�/B~��ށ����:��Ҩ�i�l�e
�Rɞ�뫫�#�UCq�s���^<m�^�*�wJG����`�5�[���0R��>�3�*h�)����=���-\J�;�E�x�)����SC-�Z&[[fa�5�U�~%���ɝ�ؼ�;L��Gl����l��$���>��"��R�����A��ee�89~�6�q����Q7hn~
Aa7�6�7�ym���5�D�6/+��^ ���,��1
B��-�t ��$�񒱸rt���@)E���P��(�BDh�Rm��7�2�7�ă{��}�C�n0M��[r8��C�2�,�^v��w��5%]l��ɍA�����O}\�4��T������^��3���@���B�[LOn(�EȆ�M��qJ(XB��KH�;��S�ڰ�q�2&�mջ9���m�g��x�8�%�w�hkL��[�@8*䷘їt�믦�}b�t�"���Q�y.���`zQeE�b�S
��F*��2�Ci�'�l�zG4�e69I�t���W�A����i�����Y��D��Q0���`�mh(\vCÉD��F���AE�1�q��{�uƒ�/a����,j�z�96ʃ����Q6V�`R**{�{����z{�i�7FF�=��c*���	����\96B�w�׌����4�'��W�����r̄����h�K���\ie�u���[�rm@�m1E�pCFp�te�Ǩ�q�
fG4x������)��p��ī.==p�T{e���CC�{�_��mF�7�A��NI��E��aN�[F��|��*n(� ���m�Kgґx:���8��t�$�����j}����D�-�p�^0Oƽx<�Ŝd<�Pq1�
�~�0��4:Ɖ��H K��P�!��`����m�w@s�+�&�/��ț+ZXyn�0P:�3�Y����^YH����-�Mt��y|�̷���]4X�j
R��ŜV)�:]������7�3��OJ�C�6���F�,qd�qLS�ĚW*�>�o��ψ�b�����x1���r�H���w��c���3�P��n�O�0��I�4���/�]�1�?��,�{&�\��59�2>D���wk�@�u���D�o�u2���8��L����~~o[��7N��5k�B��::nb�g]��[}�u94
�O�w?��u"�a8���y�LM9�>��:�/"�Bޝ���Ҡ�ɓڰ=�S
�;x�/Bl���C/m���ֱc�#���@�c���Sl9	o��9�"�,!�ݶ���0��P"�\����w��2ŏ�q�������x���ZV�r�d?^h�Q��r�����-����w�����v��Q@��x�Q��}vQ��遫����Q�jE�[�%���Z*���K*�K:ùq"hᄒ�L��x&ބ�Hg�R^0��b�I��	-��0ZB���Ɖ��y�^L��*�Vi�$���2<-Nj��H��X�	aA�w�Dpb���H�Da��Dq�(w�7���O7�	�̨�����￧�s���8����.e�x,���,)����K�6q��zr����Q7�2�1��AJQ��Q�op����S��pS@���
X*�w"�|�{�x
�IS�/�)k�r�m���f2�׻�ŕ����/��_����hjG�h�CG�ֺ4G�U�oqW] ��^�[mj
V7��[��=yN5��e�������?�aN�K�L���N-��F��OM
��6�&���8�8�s�L�m��q�]�7��Z�7F�$��(t)g���H";�H�G�3Zu��N�U-�� .�>`�
0d��󍖄�ހ@�ѱ]�o3��@k�a�{�q�6��f���`�\�O~
��E3�����#�â��́�t��S0E}ڥE��r�$�Ȗ9�X�|��קۇ�zx��Gy�jV���[�>Z�T�z2���9��UY>��9�Y`�YͮA�L�5��[	���iX��Cp�g�����\!�.oJ�e	����#�q>�J%��{��Hd�N\���+�^��,��&a���9�j���,؀+_�V�4xW�7�y���[�;��r���8W����oN9#��L�_�˫������}��|)��^�����V3%�}���CO-1�����:�����@�MM�
�,~	au�K�57K�P!ܔ��{5�_"���\v�Ɏ�ěR�a��?�L�&����)�[�R�h�|��Tj�%��`��<�ۢ���#c�������.�9c-��<��]2�Jաo~����"'�T���0�b�U�tvVTUU��UVօBuu!w��	�J�Uʐ-U��+��+r�O�R�s��el7
���Mm3s��6���STbC�7����0!�3�3�i#�徇M�P���B�ؤ_��ٜ���}ME��&��2�j���",ٙ^`�԰�_%�u�,���ͅ��-�Co���wN5A�@$��n�_�M�9;GZF:�'��n.�dh����0��2B'OR��b�Y��,8Hy����fS�L*��O���Vi����d��b�+!��d�p�@LO�G
�<4K��F=C҅��N,� RZ�c4oċC��.�0�@���+�,r�K?~�����:�0�K��m7��ke%�U}~��gZ�SW#iJ�n��1l:=�����s����O��%����j�ʋ�g%ɁJ
��ȑ0+DII��oS�q�w�BPk�ب��Y�xK�lJmN�Z�bM7��L�ZF�b�l��u�4%5�������}�����xG��S�/e�ɵ�s)h��2���o��\wmmEE՞1c��Y]]_߸o��Y�c���q�Eϖ�,����Z��cŏ��۷Ol�ǫ�s/��_�1��6��Xm���M�G ��0�icgr�X06bY��e� w��)��nnC��Rk���Dld�1TŽ�j�ŕ�~�_�y=;u���[�J�\��i�Y"I��CO-��w�>�V6��[v�Kjr��$M=�5���f�Y�!N&�E"h�s�:�]>���m���M�X$��#fڜX*��	��p%�b�C��ܶd��H[l��u-��B�'Y��%��"���)Ϙ*�|E��b����q�#V�
�vG����������31>p��_�����\��o��PB��ma-�y�JX�>�����X�[6����)Ԩ�-��7e;�[[�`s��"/7�]�U���҃p�v�Y�_��R�{cR4����ʖ���ȶջ9-��発ј��G^�\	�h����a��)O�c��l�~#�4����W���^Z[�k=�D���R�]Ky��?���ks�b�v�в�Y�\���f�y���2r���E�Z�X����#�����
.X2���^�G[,ҏ��.YBV�PS��C�
 ��[Ć��jX�X����s�}<]'�2����8Y�vn42��d���b\�H�t�3P�V����qG��6�Ϙc��V�T=5����Nf�|����mǥ��F�H	3�W���9��k��<���䥳d���9h�䩭�h�3���&PC�u-��8��t���m�ϸ��>��o@C��a��w8I0:�=ڄ�QJ�	�*�xkk1,��*�:�q�Ե��t�xg��YS�upT��Ɖ�̩���v�:�(��A�#V�U��$��t
��8�~�X__Z�Xe���ҭ{�s]]�Ǐol(�¬�/���=�t�ti�C��=��l'�®�Lw�ut�h#��ZMv�;Tn%����Ů�K�4��Fk�)K^�Z�pz�qsZ��V�F��zE�6:�7T�Dܫ�r-��6"_h�=�F�T�}��剼sG�46��:�l�0��k_��C�3�5+�E��Z��ܳ�r�&q�ȁ9�J�dvs�Xس�w�2�_BRq��0�=������D"��v�ec�^�v���Na�J'���[r�']N�gV��L����)VNTU�
���;���_S��}��?��w
��2��u$����S\g���ׅfC��{ؾ����
�_TKm+�`�}\�#ӯ��>::�N I]����/'�~�E�F�'��Q��4fG'��w�������ӦS�`9��9���Dt�ѫ���s")��7tB��@��*3�#:"p(H���8,�(��IӻUv�Ŋ�:\�a��$1/FnM��(�%�!D��c��(nU:B�ȗ�<D�B�M���E7�C�•�\�bN<gl��J$-o_ߠkC�Y�]f��������f
U��P.5 �D�2h���4������>�b)W�\䚮���*+F�CT��l]E�G4]��z��5������l��9S�I�Ϳ�n�Rt�"|w
`��-1�������U��ԧ��hKe]�6������ʊo]�9���Ѫ/���#�j>,����oơ	T�
�Q���q�Iް�8}zJ�|�#��YD���^q�k�6,�L>k
�NVU/�[���<�	*'*9�Wee���?�,|N���]�����4B!V�[x�2������,CoM}� ����O����k8!"�3��n�
Qa��
�]B�5������?ڢ����{�
��r�e�Tx�	�B� ���1�8=2p��*{�2�L�\�ß?VCW��L��qj��xq>�ǪΠn~�������	����H�	�kqΤ�N�~u�6�` �/eb>��H�<��a���Ӹf�T�~)�h�2���“K��_$�/
K+�#gK��UHG%���Q�L*�����B�������F�pS�����K8Kk���x/����<�ْ�7~�w�
�:,��	���I���|ӭT c��M^
@�)�n���{M�|'��Vfo���tp��/�挳���7���ꔉ,�`���Mlr�#��������,��LuV%���!�x_b�����6_��`�U7"��#���}�H�����[1Ǘ5c�-BC�a�:bc�.$�16'���6�Q������+����C=v���ΰ��fB��6����^�`|�@�L��X
��-kA�J�����/�0Ʒ���
�.���]E�:���������0�@t0���Ŗ�(E=
AGZh�`�ۢo0�r��F�l���I��zJ)׮H��օ��C�:�|�
��p�
@���Tiiϡ��
�@��.&ej�_E//�Y]�
)K�-�������ko�3�����"Lx7&��)�+�H�\Q�G(�.�1b5)PA#�Ĕ��n�:��l��'�W��,�l�5U+MI�h2�9�W�rb�����d�>��35G1�#�ț…*��*C���e,�O�.�����X4�_�쉼⫏×u��n�
�NՀbj*V@��
J�W�U5[Pْ8����8�iZ�X��sޣ;�f�M<w�%�H�Ua�}Z1��{IϮ��r��S����
��“��ޮE��Zބ$nX�m�����5rd�B��Δ�ެ�kX��YX��w�^���A��‰"���i�W6Q���D<	�Lh
�K�jkk�$�e�����D�ubfxbf"�������B��P]�/$\�a7wپvMx'<ر�O���$�#3��ls؈:l�~��|+^���:4ʹM[L�n��'G�ܟ�6qc�{{��Hi�ק����7����6hXtU��yTN��dsW�I9�Z[O,��&�!�Y���*����?�B�(e���g�9ee!1	�F]LI/�6��q<�H#�"�(&$T�@E�b�^��c�R�M��G7J�2�c:£�O��%#�Љ4)7��'W~ـ���R|�����n(��tjaI]V��t�v����5;0�Ś��Ŷ	`t��b]S
6f�{�J��p=����Õ��0�5�`k��QQ>w잫�x(���7���U�";��s�����ܧ��
��N��:�mZ����F����Ƴ��v�,���2bf�S��n\e�@�p��9�n���8&\l����|���w�|�`�V�
�Z�v4	�K�^[S!i�eM-/^R/�7��@aZ�����W�
L`�a{���xN8�%�q��G�6U�K�z��3˔Whv�<��A�>�N������d��S�󻴈:
��vZ��x�����E>r�+,=y�����)߆���#�,n�5pSqt�1����|���`�I��L�8'�ڔ2C���]��O������,%E膰p
�Mp7�wDf
��>�Q�xD�q�V��343�i�T�N0FE�h,��J��L�g:J�X��Ѡ$�\y��ۯđC�ѤA�����*0�%������~0�R2
������
oV�
���RX����8S�	{-��Dz��PeG>;
�\_,�C�qd6���X>.��7�p�(k7�O�(d#7:a�t��*Ω�3���P���[�R4��_�p\ĩ�v�V�;)���d�/�K4���}"�N�/�%G�h�4DuP��c9����5�a������A�7���
'��},�����*v%�	&�	��DMm��Zb�ݵ�ϵ�ţ�E��"�^"�"�mw���F`���~n��Nv�Y��*���"7��7ƕ�iv���
���c������z��rZ|�Y�8\v��R7�b����T��z`Z�G�ڎ�<@��j���~o��*��'�2��o���7�1���w�ʅDQK�H,-��P��:���Fj[�h�i�k��e�"�H�Ơ9��'͑1M�n]�|~�;]��7���.3�3���=s�Zȉ����t/�����[����Yc�=�
z+]:Cj������r̙"Ƃ���Y���(�I�pr�<I�\�L�|�nN�(Z�(G91�}@�K@s)x�P����_��,��Ϝj�A?GȦ.U(ji�"vp{z�����~�,��ڪ�:-8p���n�<.o�A��z�/��y;�Ox�d"�Y��;G�(��5]͗����
Jf�Q�{��e,�P
��e�F�h����~>���0�Q.4�4xq����N�1��-��n⦚�ǹ���g��M&m��^��y�_�$���㵥��g�=�6��^P#gͽc��w��ͮ)rf�ͽ���f�e`�6�F��A$ˠ痛���D���Q�x=��Ia#j|��7��S'�ˇ��x*ljTV4NoІܻ����yb�)�>��K=cBӸ[@�tQۨq�<��
��a�q���tiW&u<�8p�0�:�_-~���•Ӂ�&_LYe�4ɢRm��$��V�|1��4�\h��oϹ�z�4�Zc��`�
1���k�R�i��ۆ�o���nRy�2A���)�ܬ��
��׃1�,�/M���V�\xL<5v��ccD�
؜R���lh,"�WXg�S�.9�K�:|�b���*���z���6(�I	Mꄞхe=&�Nr����;��-N�����Z�`�;�=�؁X�@��d����͆��	���ҫ�����g�Aԍb ܩ �)�6X/�)�3�Qg\#%�R)/4�<���.��
��!�J
G𬋛#D�,a�h���
�DVa��߆��]/�*�%�f�8Ѽ3C=/b��1G��&;�q�ҧ}u����9�qM��R��&y#np�0��)�:�d��$ 7�I�lw���wC��ҧݚ�1��-��KQc,975���|���.	���ߋ�y�_
���pR7}�Q�`	7T�׽���[�eqM�SlEg:��9k���;3��0�OP�i�>�Bn��<d�)@�	x:`���� F��*Y(L�7��D�kz�P�&*�W�=��2���d��G�
+�O�9iC���H�
)v��Q.�ġc�~&��!k:�@�8̪����o�f�	�X�Ǣ�U�Un�HďY�Ά�(�%{7Vۤ�v�E-�&	�V9cd��-��۶���D��b�{�#zs
�ߵ��m�MG���{/{�g�f��oiy����
-�N6�Tr(��<��C�Ƽr�/���MڙEf�p��YeR�O�qR��8)m2v���w��eȭ�
�c�g��oc��O}��&�N2N��#@·�$�w]�k4�(Jŏ�ޙ��u�@�;�x��8�w?~R8Fz,�{1���V�l�>���n|I1�>��7%l|1
�|��A�,�:��O����&�*e��Ē3�W7����A�,*"8Q�'�������d'��{��4��e/�b}�V��6�� �DE���Z��Y&�M�����f7%|g8���b�M���Ð��Ps��OR}lV�V�du}
�ܔ����J)'��s������@�����G=��ꤜY/�d":�@9����$��2q��E��w�T)у�n.��[=c�d��R�Ֆ=R�nI�u�.�w�g7^y>e}̞P)��D���X{�E��zK��qm+n���٫x�uu��}�*�
��q�{{˽�8�����`'�sb�N/���N��Ό�v�ئ���2�L��|qH�*i��.�&��S5���K�,Zq5�A?��N�<�JN�ǾW�d��m����{Ë[^IG�[��Tؿ�M5��i�L�����!���R)�^�<�q׽�M)��*&�A�
�9��/�����,:/,�`E�Fac�c:L������h�3�yڷ��>#�T��G�=�N��)���@[Ę9Y��?:�J��o�	�_,�oG��9�GmV����r&D��@�����C���l�D�k$ʑ8�Z�߸���
>�9�W�U�FM��ކ��5u�A�mQOQzC�OjQr�
]]���0�F$�*)&S���𝎢�/�(���
�Nb=<t�^x������T�i���^%^̫�rI�aI���S�]D�n̬�̂5B�Gw�w�i�?z�E/�R��A�Y�G�O�p&nj.4೅;�g=v��2S�&%�������$�9X61Z��~rrtp�̋A�&*\B��*���+��_:������P6`$��G�+N�3ha����
X#g�M�&�I�WK�s0}�
�e֜��ٸ���[6ec��bk^q��*{�LfYa���eӴ���5��x(α@N�+]KY��3%o�e�sC��9=�ĭ�;4��Ik;�@̰�
Sq�j�����2�&1��MF6RR~�T��tX�>�g��7~�����Af�S�|�H�)Xf������(9�݀c5"�PN��67_J%yӰBD,̗�����?ώ�I���(j�����T֘�g��=C”�g&�IȆ��4|	�&�-���f�K]14_�'��?�W�"l�L���%���c��7^S �PB=�yZgt�>ڢޝ�_k��l�Ӱ�KiپL߸�q���ɫ�x,��Jb\�WҚ����isГ�o�8n1�����f�b�YPg�����ş³��y�?,b�������fàN��4c�����|စ�?���O����[U	v6�xW,�C�L�*��?�6��u�\+o4�{����K�DTdFs��d���ݰ��r�up��l;��^�~���|�crA�4Q�.��ʔ���8L�p��f�tp�Y�N��N
'I�+��ݑ�Ў~m��,=e���<p�L�obgj*�#t6˛���_,n�-W���l�����g/r�SS4�B����V~j���曲?�Ċ�b��x���~G�x���@��FGaxn�[�U�q���)���`\�`��U1�s�!����K7�� ����S���+kk>I`��|�I�r7��EJ��/l�o謭a+Ю��s:�˞y��4Oq���PA%��V*[�32vTH$���&DY�����d)���qF�~��Bo�l�&���}7�m��y駿`
s��g�Mq"&g�MsR�����v���u7ۥ�ߦ�q󈍥�{r�1����M�����H��a����l�ǖ���z�&��239_էJe*`"@a3���ÆL�(��n��Im�p���N#D�u~�A`3�h�5a�ٽ�v~�t�j��%�(Gy�
	��/[ಉ7:D�	W�
WdprK�R|5��$N$��́z���5�ո飱%�P�{����z���|9Z�J3c9�|����SGK����/���F��Cp���x�p�1���J�J���/����M��n!�!�>;C�6�($岵�J�1�njC��IKir��[����O�eYx��s7����Mk�aM
tYqR&�1Bk�č�7=��@kk4�Vjk�jC��\�XT�$��ʒ>��s��f��y��(�H���e�f��G��y��_�Q��p�H��^��S��ؘq�2pq�� �G�I8��H�
���f��J�?���7t��INȁ6/AV������z^Us2�o�8x��x�R%_Ȧkn�g�[�y���\Y����p7�==j:��z�C%O��Kk�����^+�g?���q�U�p<�`M3�S�&�A"!:g��AM�&䌴�x�ѸM�.�)�
r
a�w���`�_�,	�1��e�;�u�5=oȘtIjȗ����w����IvA>����q���͏�{Ʃo,󴒞�l2MX&\~x߯}!2�^p��^����>q(c.Ne�b$l�P8D�L���]ˌ���؍4��r��~�v��]'~�<���̋�[��w؉���HH?�ϋ�������a�N�P����L��$&�@�����T�m�Z���f�~��)��W5���b��HZAl �͖�PK-�	x6�h:�0]!�C����4��iD8�B}Q�0��OA&C�,5T��2�Y����n�n�/ye�W���|?�\Xn��u���p8��eq	?J�8�\��	�`����A�<b���6����v�	���::0�"H��u�g�����f{T�m�wsk�ى\��85l���љ��'8�ˡ��hi����⫳�����li�d˜-7;�8G��x��'���=�㯾���a�FGꮻ�z�7ƅ$o3� �W���ӓ�����%Q�H����SP'��9�H0�y���Eӫ���6q�]�p�%���q��&���j�:C��p�υ�+m(��b�sCv���ŧz��_iW��E�3A�b�ap�8f�s�T��L��=����㦊Y(��^��u:���yx׮�]�}�8�l_ڶi%�� �}Z��y�w�2�g�Ab��r�η��KlХ��\��U�?}4K}��ed�"��}�m2��]y��y����Uo��-�=�s4��Qׇ�;���F}�n�����p'.\F�1Ad���7��*�F���!���_Ng�|�zV�彟\�����_WV��ݦ�N������1����/™b��\'�
G�M�;>h.T�U�a׻�DQR�|)�l�8`�o�U��݈�f�D��S��yM� j~�Cf‡�h7޿�;al1��D�CI%��P��Me�����8�yE��r�|���2����ǯ"mfG�T��Ev?��hrf?g�?���M
�L�Ѵ	p#x܂��ב�u�}>������d�~�n��R&Z����ʎ솆��� �kC���g=g�1�۱�<|�NPct���'nd�Q��V� nP7�N�.o��l��^�/�O���t�y}����N�J�̣o�]!o�|��ć�Z'���U����+�G��c�����0��
�"nNUQ�rLV�8�}��xpO=rl��Q��V7�}._�]2f܅��
�2���YylC��-F���}4�)M��VCU����%�_\a8QxQ��M'K�l�����������l�d<�h~�B����÷K}�� �w�=$P�?Ė.9�2�m�=�d���&p�`O�av�5��>�Q�V���.n,�'�
d�kl�X3-Ϋ}|n�����_�"r���`Y����a���7sj�yMq�Xc�>��־oG�}��jF#yOG"N�Mb��Kt]亻y�!"�J�W�4��H`$�끛�����6�K���sϱj"�)n��|@��@�E�=(c0N����&����1��DR����\|�_ȸ��L�ɧ�vd��g�m��ŵ����#�m��,�Tܼ{ǎ�����ww+mD��|奄Ce�	u[dΔ��O8�H�<�7�&�t��f��8�� !Ʉ��K�I�@�p=cN���2��9飆��$�S�j3Z���ձ��
�A� o�k��7�\_C��?R�8`��z54Ns���M�z���*�m�jٷ�Pm�G��c���$8�;U�R tL��?��t���F*�J
�\��`|�)�Z>�%�'�L���f\�Iq��ĉ�D*��~FR�{���C�U���ͣ����U��=�g��z]��/#��_��凥�s�VK��K,3�ۍ���ѽ77�*m��\��o�vK���p��z�ء�=�>�9������4�1���l�9�:Va3�'b7�1���e�������{��'W��	|��v���E�9��U �{�ʹ�N�I�̎2K�
�6��
q��a���T7��di�q��9����Mh�t
�����	��h��ܱ=�
1��#>�����7�
�1�n&G?�x�❊��M�dg���T�F�����7|D�i��w�y���w�|��w>��{1�
	(���f0�
.s�LqI(���5I�h�KA�&o�G�M_�f�D�ȉ��̖�ɓ��fy��S��[�iyjSL��0cֻ��Zg���[�V�й)�
V��q
~I9,���)�U��7:Rz�/G�1Q�\jbn'�S�Zg���qkq�x�L��E�8�<:1�Ӿ���t�0d�(�[��F�yʫ��+�Hy&1�� 4̘��`*�VUL��%���g"�fD��.��1�]��%�NF�|<�'�����t�����G�m�d�����vW�m;�����NF�'H����e~�Q��B����g�m�	�Rw#nX@7V�~
_jB��vK%�� N-����v<��z�Ǵ���ݻk�@�ܞ���;�幥���C��yӏ.�|�
�ƈ��"6tm7�a̙��y�ԍ�snM�0��T�c�&.�<@�"vP�i�lM�!��g�=���ɂ�J
)293��=sw�&#Q�
Gɓ�p�2u�<����[L���7�&En��3��DŽ�1T̂p/<�>�"0����t`
/���	�<�.i��	#M�8�j��ϝ�F��pj���w�䍸�O�,���c��0���7D*�󎎪)Tn�8�[=ǚqb�i�(N����i��Y�z1&T왃L�����s���2
_��qb�Ct�š>��3��ϭ"0� ����<T�"P�ٝA��Z�v}Dw-��SBc���*S%��i'j#�;��w�r�_e1 F-`?Qf�Z`5<-ܰ�T�1�܌:2����Ę����*���q�p��
4�'�-�7��@FZB,t"�oȠ���I�ȣM�a���L��Ip��2v�s�u^��=�YO�}�tta
�lx�N����r��4�s876Jyw�@9�c
��m!��Y��P KX7������x�?�;���M�z�����{����s���{�~㙩9kڮ9Ŋ葀��deqV�02V��y��-z6��L[�j0�
��M���e)�0<l"�1��?C�tt��1�/�EǍ�\f5���ML�	�d�M]8oZ-nP&H���O��YS0�k�sB��L���7�8o�E�lظ|MޫW���*���S�nXX|i�e���--gδ��3�r�Fpc)f�y�v�ܻ|��'ە?zt�Q�9(ur���2�F��w����^��ć����"u#{�960�=<2�qXc�3�˼�oƟZK2���E�MD�(�ij��3:�vE\+�EfV;1��'m~;�A��Ş��p��H�SUq\w-��ퟭ�[n×>�?��Ϡ",�P�e����]�p��MUw��[�Fl��q
y�)*/
lj1^LN��i�QY#�d�0e�w��A�J*��@�(Q�P1���3�����$�~ � 5� �w���7籮������AB8�D��,pl,nj�(V�x&i��$-� �HI��j�X�4�/�R���z0�)a<=7W+�'�n���I\g�ϲ�����<�
��ؙ�n�����YLA.�S�WZ��@uF*�����f���:��㾾�@���PaRmw�Ww4(�����d�ixq�6?��xa+�����Xm̄~؇��l'�N>Oe0X4AaG�|z�p�	7PF�X���S�`S�i0<��q�c��PNNΖ��R7�[��㎔��x n����A��b�H���S�&ϩ��8�Ҵ����w�5��ǖ��Kݐ7�i�U���Zu#_�D��zY��d��K�Y;������!��['�2���1�q�Fn�S�O?9�)�����,G3ݥ�`�.P&����N6�6���n��V��FF�
9��$[��j�~\)ۋ��O��S(*
��s46Pl�
V�T��fQ������5_�GInɉb�';�8
z�vh1q�8��%fA��~�:��1����
Ʋ����b�C���+�/�+�C���O~F��O~o�?C�}�…�������ysa~l�Z����w������\p�#�H� FD45%y�RE~o�WN�啀�4P9�q][�����6�Fˋ�7��Z=��ݰZ�-"�ޜ������k�����"F�0���ɹE5y)�T�2�}�y�&����B��'poj�—�~��;:�wlUI
�Ƅ�_H7�0�7��}��n/���FH�+Q�$$�
dײ��ȅ7��H�d	8�&�n���1�SV�Xw����<'�E���^ָ�-g�6�c��"�8��ċ2�r��������ͦij:O��li��+�p��:�u0H���+Y�=!o�m�S钻b��n\�8������"oJΒō�(���[u�#uԸ8R��?����}��+?J���k0b��P�1O"8k�lƀN�K;�ESGˈ$�?l��-.�N���Iɣ�k��f��M�.+��up�շ��؂Q�1��gi*
�0%�?PC��g�ʝq�f*R���?�k�%L�Q�78"��UeƉXàn�O����o|�C<�3������w/��,�##aO�G��{�=�{��_�Nm�3��3A)t�z,oG���;U
SZ�������o~!�͕�W&�� e�2sjj���p�D�ax��f�0U���s��G�g�pII�,��ͤ\�%�I�T��o,�y3��ʛ��^!'�?0���[Tԋ߳��AB�ʰw�� X�l���%�(`󦡍�
�xS��6�7�����	ٚ���Jb�k�y�^����T`�W\�`�F�7��șkHo�oy�m�J��^�Qcl$�ƘH��F�9%OI&qC�0B��8�^V�Zx�����Z2�2�`��i�7oLA��(�a���|��0D&�X�`\�3�Q#�(��iܻr�-Y��|)W��`���5��Ʀ�0�3-竨�&�aI#Q��M,X[�0:��=D�����∸Q�Xԡ�q��3l:��9�r��ZlsU����V��f×�1�D1�Ed��`4�Zf��Z��9�>P�PH孒D?Za��Q�n���$w�<�zd��s�è�O᠈�����^�����\�u)3ad~��-�P�I,b�'�ݛ�������~����������9����TQ��fɩ�#F��a�gM~`�~F�
�w��1
�Ɇ1���.���̩�,G�K��^���xݍ���Kv�����k���`��Ӓ�	�Tx=�7�u<�6򶪋E6�U��f�~_U 0�
V�
n�:w X@�V�eU
\nqoxbo��Mcwh(�g
VUT�.ʓ�)
F`�ѸLy�y���'YS4.���Z�q�h�/E�3F��=~�夢�ێQUH�3�=Kз	7
���T�L��@a�G�����yZ��S�F�FW:��j�hW&�X�9Vj��v��RUT��%�6^�8�9o�m�jaW7�_ZKu�)N��`D�B�MY�8ҁmA�X�`�@�7:�IR5l
��#j�`�x�8�šҹQ5�E���{��l��l�SE5�	F�aSDH"DŽ����I�b�P�c۝�g��M�¾�z�X`�hN7|�&ucʸG�W1d
s4�	C��f��|�{7�Z�DW�JzL�͏vV�7�V�X�C��ӭ��-T̘q��1���4F��,�l�!v���w�ݻ��ݹ��]��w03�\v�';�*�	�`J�
���$Ԋ�a�����9I ���j����5{SY�!m��M��sp���߽�'֙Jč�{�K�M�^j?��-_���YQ�y��Rk��?���<P4�7�U������gB�p�?ďڐ�
���B�U�m�^�H�`ob���
�9�ܸ�R�ps XI�
���W��UA¯#�Tr8h����Jָp�~��}�S�W�e�����wtളߴmS��)1��
nZ�Ki���SF�T[�T��{�J7-�8X3'n���Z�6��p�ܘJ�oD	�F�q�:0���Ih�r��i=�7k%K�&�.�p���)I�pn��?`�M"ܭ�q<+N0�Ř#K�ـ�1J��(��{‘J������v}�+�� Q�F��ȳ��xc�#=^OO��*�5�2��:�9;I���n���4�M�ѭR���\(���A- �l11eٗ6�^qhX��ч��n�0�<&%���	����:��6m�~�ɤ�f�7��c���+a(@3q���܃��޿�:̙�7w�!�yxo~~�…�LQ���>�G�揙�)ZS �TXA`C����/"��"��4�1�ޑ��<S��Fu~+��O(�g�����\�u7n�����i##vS:�z([����̂`�'���T�B`Ӏ��~)ξ��z-���<��(�Skqc2����7��E��
��Ͽ�ş
n�7�Ͽx�|cg_-�b��@�HeM��l�K#�x�@�!j
eV
xK�hj��,���PHJ�����4�j:Voza�^���YF�����'9UW�)G���&����k��4�6L�G��O]5fp���F�qp#L	9���i]���������d.`Xt���}gϕ�`�H���I�)nH83�Y�R�tG�1g�$G7Lg27�����-�dDOh���)d��^\d��k��~�w��e�n�g�����$O�"��F�6�$���D��dkZ�7
�a|�X�W>�ϐ���'���oEn��FG���AuL|���kDx�G� �g�K$��.^$֋g46o@�i�����E��e^�vo��{4ssq�@��� Ck.����D�9DžɄ���p28u�;��nʺvZ~�	9Z�<�dj���l������0�׸���?u{*{|I���Iu#s��5]Y�.0�Z�KU58.,�V����|yf�<��K��&�3�^��m���?��n���p�H���'��`���_���W�B�'΅6�p��g�7w���qQe/��TD8�e_8r�q��TV!
[�Tp��aC�T5�`�ō)�)���6�`�6���75*J�iu���I$�nj@M�
�"�TW�#7X��{
]�]%?e�+bǎj:��(P��pg��d7����X�IJF�^�-�DG@a�d�3�l��|�C.D3%A�9��ٹ�Sə�Ƭ��QV���*,��2�I��.:ƞ�@F��єdΘwCN�L-�u~&P�zR�O���y��ɧ'Y�J
W�^�U��[P?�GU�b����g5�"bfwk"�
QMB�V�0N�)���
tTЙ`��ܺx��-¬o���k=��(3;ID����{��uN6b�i-EIn���d"�笡nc�ڨ�Ù2��S0�N��/sJo`��)�
�pXc�A�ǟ��ev���?�|���_�k�k�n�B�5��2�,+�6�����l��ro�ߓ:U���D..i��#Co���K���x8bZ�B�`@�LEg�����n�0�q�焐
.�/~���9�<7�0�y商�ΡN%�,l��0�a�{�9���J������F΀�M2ڦ2�k��H�J���C���Xmc��'`
�,��mC1n6������N)kʄ���Z-�#���-!.g���bo�Wkٳ���!7��4�U�K����?��7Hޘ��q�+�:����˒/�J譴�0Q#��0q(#��'v�����<�3L�&�=1a�+����M�z��T��8#��s�5�6#�<�y�_����zF���
J��E���H��ڥ�̍+�a�6*q��A�DG��:4��ß��ܩ
޶�V�R"w�S�\,Q\�XYD<�{�2N!����YP"w�f�L��ݛ�h(s)ÇC(�O�_T�1�&[�95��Tʈ�J�8�pÓF�A�6�t�q�6�o�ޟ�(E"&5=�S�G��1�3�����	���2�&���C�%7��a�h�G��b��ר�Ų>���9/��C,.��=�S,��J���������%p�$��R���`"7���g΂�^���/�3������1Sx��Q&�5����+D�F�G�˒9�

Go(nh�
�I��>�ơ�[;ث�)퍵9�PS�r���P*Sj:;
Q�Ա8)=]gלK����n��
Ա9r�L�����n�ѓjonx���yW߀L<y7
[u�vd���s��+i��ELq��̹r������Sã�H`Ԙ��Fyp����06VX�N��ʋ3��đ�b3�b;Qd�J���~�#��֒=�`c���q�6�8ifEQ�N;��d^�a)�U����
�%J�w1v�\7�byQ�.^�(�$h���#�Np��^�R&&�Q,����9��98sc��ጸ���^�S-I�B��u9�G:�qߦ��AB�@�M��
}�9ZfJ��z���)� ��9�NEf�ǖ�P��T}���$7�DV��F�p�1�T�U����3�?�E���wUUV���b}+�7g�p\�S	c���>2u���f�IL	7a0��� `�f��744�}��
g�6�?bTc��͟����Y��[�FO��t�3�X��̀��G�
�d�&w�Bn�!�]�#UIF�^lnli;ֈu|~Sg�۶��+�FR�mKy~~9�	s�5^+��F��Iٸ:����;H9��� �:�QB�܃4�p�nJO�km?ʰⓠf�ɓM�
vu�Z�cՍ0#�(me�M�9G�VVH��J��H�s�i�4��&%��==3<k���Wu���e���Bv* f
�����}v������YIy����x™r
��Ťؓ��8jw6��QZ�ax��v�F6Ӑya�Wb�<�I�^�a���1����s�&ظgE�s��u��iTʹt�<'���`DX�����Ơ�d�gu#WHp�06NL�nUX'�M-�S�̓�F�
[0�5S�F�y���\O�{��O��(?܍��O�x�%�y��&13e���j��>�L��ު�^{9��[�k&����͙��A����}� Ad�O����F��d��ɀ7�3��A�y�<A�fp��s���
n~	kP77

��_y�Y��g�
+8I��P:!���G�Z��"��G��7�7�]���V��
U��ئa�YJ0a�-���<����h{;[zȮ!g��u��,�P>t�M�&�����������FF�T�֒8]b�M2� �d\$�I���	p����ǐĸ��q�C�ˮ�q�7��})��SgLVI���_]XS��v�F`k�AE�pёC�����q���7~��CG�������Yl(�^��T�,�pdR��c/��X�=l/B7�nD+�hd��K�L&��|����I�T�M�����nL߀/�4��d��F���c^Lƭ��z<�V�$�fw�Ɖr��
Oe��T�pz�6WXgjJ���2
�3���}|N�dv�g<5��4g�����c�p����2kO�z�����r������+�
6���飕���	
�G#�HMe����;�0"tn8Q!N�@���0������M8#�@�h#C�m�ϟmhn�w\SsB�t����Mp#uy��f�q��9U�J��n�ԈC���J M�h�d����M����?G#�
ݔ�p�l�nd����2����XԸ Z�Yu�����n�����u�7���5�B�@�3ҺRxH7270���ӥ��Y�ȃr�J��#1fc6k0�5���“�3�X�(���
}��ϴ'�6�o:}�ȁyΜ8�����o���_����,�
���L!n�H��Y���3�+� ǣ�P��T��F�HJ�+�����˿%��u-���	��eb��L�X���J����������Dw�v�??=cS��V�XmW�'�qxN��N����p�l&�l��=z]��6��)������IuR��g�_\�A�n�l�Rw�Sl㤾��ټʒ��OS�RS�_�&
3�����d.���G�G"�ٷ�g�=��H.%I��/ގܾ�⦯���q���u��n�*7
��ahh�657v o$kj��Љ��\�\r�M�&�Z�
���L0[~y�
�Qm[N~Ih�^�z� �M��侱���*�f7�af	3��T��*i���,eyյ|��\ܰ�2����a����uu#�l���կkݸ�(+%�贺�5q,p�k���0(^3�$a�3.y�{�2��NؿǍ�ݔY��Lg���#dÑ�Fq�����4<��e4�?~��9 �uq�y*n��"���q�Ď����U�Lފ�BC�d6�)合��t<�)���#+l���<�i��f�g���h\PcV�%�d9�!l�m�@����%8�l�
����d���w���-��;S~� Ҫ0��Қf�M���4NM�&�n�@�fqݍp7P���>����ju_35]��e��y�8�i��^_r�?z[)nB���X(��8��]���7��nb��fѦ{�<��fyO�7�F�7����q��:�t�6�Vh�
�����LE�b�D*a�
��DB�a�����"bs��6T‹�0Zz���X�8��ǐ�N�&uk�4f�Z
vU��l�i�UR�g�
�+���n,����bC�r��;'����|�_��8Y)�A��D�g��1���{�{Qfs^�'�,|�M��YԈ62�,6��r��3<�.�H}(�{aM�,=&d��l��R�E�(@�Ɖ��ןx��8�8np�K���NY���72��K�Ωစ��DK{Ɛ#d�&
`����	Lp������&��0�1��1��6�ֺ\7�|�ӓ6�5ٓ$�l6���y��p�ȣ�
ި!�-���9Y{�@'s&X�W͛^��Xv^��Yp/�p��%�F8�Du���i�|��Y?\E�u
�jv�74y�d��/���������l�ú��h5��@�p{�@�ud���"���7�
\�&�L��̕f\$���Kظ��	F!�(�U�1����x�P)څ��Έ�R��Z6m�eeH��Ɏ�9ff�7jݪ��X�C�����б��y*FZ�,f~1��fd�)�M��N��<֪K���3n���Y��86�8e�wp��~ۆ�~�;���q��F��1�F����/�7ei�rZD$��wዽ��q�<M��$��z��c*6e���l�J2��[�-`)LQ��"�
����U�?7����|Q*��a\�*a�C&�d�M#�Jb˴��MO��Ϊui����V�q	cP�oh�,}����nS��
�)��ʉ�����U3r��O��Jw
�[5u�\F�`w��n^���P<��}��*��q�FZ�����4�7�,�hmp�D�͓u7.n>f��Yy�.+���UW�K{er4�_C���5$��0��ui�G��1ng�L�����c5�XqѮ���o.�tR޹������pCA
��W�mX7����v�ghz�{��TaY�!�)|��Hx�T+�]�6�.�(״�N����C�ؖX��ꎎUǴ�C,FB<g��.�Kz���k`��9t(�tW~{+M5�0�,nJ��.��Q2ܷ�1�&7l7:�����r���@ci�d�oԮ�%������v.9�u����!bn�(IHtk�4��L��U�gaQł�Q2���4,FG��}��D�|�c��/c���e�E\�+�X��-K)#�E��.��)G�$�x����I�
�!�4rH))*3-�� c���j���8y�č=(�w$9��k�@
��\�u!�ܘ �.K��)󄴙b#@�p
n�nf��Qɍ⨡�t����1���0�n*�<)Z$�$qG�&J���4�K��f�"ܰNl^��OW��^~��Cy���C�a��������>�7XMݟ�1�y\e�̕�h M�O�,��[�|���7�t�̸��
3�f:;����8É5��{��l<~@c��::�ҽd׸�Ln�or�fnHoy`F0�i�ƃʷ>T+>th�<>�J
���<���C�������[sJ0I#�϶��×�]��QE(�D��G����z�d��x��ō�g	7�0't�i�Ҥ3��j��M�7��[�1�qaé�u� ?s�4g\|����&�B�@K,��F7B
���a�6ؿ�
G9S�/&�D�$�)Ss����������²��.�4����
��/3#٥gJm�xh�E�
��)T�O!���I��?Aa��O=�U�u�⸉�ed*��k�zՋfp��M��rZ@mrv�ƍYυjΘ��k`Qr�1�y8�7:�j��hd��LѢ����1�"�TS��F�I����
M�s:��L�,�5��)g�
��c�D5>TM���K/����D#4�{=�g�9�e�x��2#j�
�	7r�/���<����o?z��Οh�����-lH����^��Ml���9b�/�̱�-ʓnN�I��Q�RNX��g���jN��Fe:�!>`4�q��ˁ!���%��ܬR�9Ÿ`W��j�wՙ5�Z�9�Tq��å����c�g͙D��hq#�()f�̥�6�M��mߠ�K��F�n�B+�.#��7�s�m�\���5��b�,��9��	qO\�/��L!i!�e��V�Ғ��oZ��F�ѓT��@q٧��0Vt�DQ�?8ST�j�D��q3kK�+�V]����
6'�����y!��^ަ�r���u�ms ���$�q�]�7�c����{��uń@����t��4��A��Ű���֭5�EG�o�e�t���N���+~�1�̴�~�ߘ��L��^�n�	��(�M�U�4�͢��0m�_�V���*w����u�2��+"�����MܼyXS��<�NFG�9����}�ـ��~	�\9�pu�nhQ�����V5 r���m\�@W��������^P��^�⦱�P1Q�ꊓ��iM!w����U��]�S��z�m�P��K���`�kdRX�e�l�k�����{�u͚c�{�*�8ĩn'�TB�e1n�J���q��0p��h����~ʜIZy⸑5��s����Q��A��I���"����I��=�Ń��@)��=�����?\���[v�,���ӸP�2>�
�&W7ܑyʊe_�Ne�#�o�My��Ǎ(E|h����l� ��8�I�o��b��;����EPJ<���Pc�m���6ꦇܾ��9U"cn>��	&nLc�p3�4�.�u#	7�ݸ���	-�H��Dn�(e<(ӥ�*�e
��Oc��\K?ޕ��i�I�
{,|��o�������w�mhYn��Bý���:�9ORA$7%eЛhFGU��-���B
ȁ6��G��[���},Ћ���	��)�;C���Xߐ���S�7se�y�4�Ffi����FG�ܠN�vU�ܬk鬁�/�kᲕk<gL+R�n^��vH&mZ���m�����M-
��z�T��D�n�O�c�����y}k���-R7ו4Y�ޕ|����F��t�S���L�d-�
7���B����pyC�H�yB��Lċۆ��΅���M8�/gJ;�d��>����Q��4z�^=Z�/����M&Ce�-���y�!��qt��I��2��'›R2�X\y:n��P���d�rp&�i�]���eT�S�+�X�Y��o�2��О/q>����I�>��d���5�H��@��u��(7�n�pm�M��H����ynj����Ă��]`M�m��1�
��Q��x p5;a�Js�] E{3
=�x�<&p�{'ד�����
�x�?/���ĺ3�����MQ����¾��hp9�m0Ó6ȟţIb�p� #�[�')c��}�)a,n�|�S�#�cѴBH��J�L-��1W��c$�9�=
�F7���ffl�0��o4m���d{��_����4o<�5v�Ey0\6���1���%+40�Q���6���]4�Z���8S#?
�(T���\�e�֭�߷�~�>"@�V�^նjM9]R�3U�qc��N�bsb6�"�J%�[ͷ�կ��^Y\���7u[��%���3�"�;A�pc0�#�p��8nX�k�a�S�ٱ�?�ųg�Z��򽁳Tz7�R^Q���\Ĭ���p�ѡ������u���T����b��;S6;�P�o2��b��o��s��_��m����b2�����?�ĸq��9^��/]>D\�$b%~��&�b�a�*��Nf'f�
��(�kW�7f�'���1��@�$)8�
��Ι�J�|�{����>��u13S��⼹lRUj��+~�ǘB�oi���̟p�NI��FXU���5)B��?f��u�:SKd��u7V�0w���g��^K?��O�-�hT�O����x|�۴#eG5�>�ke�P4���,�����-e�m����2���f�b}Bv��\�q_�9
/��bs�*�a/����,�V�8n��Dp��k<�!�z���6�˩���{����xn�ܰ�vS#L��q��ms"�ñ�(t�9樛�/�Y�ϲ�9�h����ۍ֔����E$q*l��,�
��)-���1�q�IL-�F��n\�c�iٽ�ɀ#�H%�|��%�J���N��;�!���W��wl�J�����ه�;��}�*���1;e|sEvJvPS����θ�G�za�;0��b�T7��s��@@��G�6�~s��đ�EE�#=�7�ƙB�x]�xQ:P������5�^�V��t�z�9�7L~�4IL*3:�O��ܖ�隸q�83�%L��?���T�X�`�ԣ����7&0N&���EB�^9S&[nn�C唖��ө�u2��;2����q���E�
aDn�*/	{��?��$���x�A
��`F�$�n�L�Ԣy7�cІ9�tH���\���7��>%��͢�g�	����Q֭�6N<8=;m���H4-#��颪CE;3XBg�l���pl�Q��I����iTǧ9�Z��NGgS�J���o%���uI#<*qB���!W���� �N-C&��;��K�|�Z�@%���Pdc�kx�{L�G�c&�1�i�
ϭ�Bf+鿮�	g�Z)]OD;�_87�K"n�2nU��u���H���?|Պv�,�D�ѕ YN��ӗsQ�4qK�HH���r�n_��Po���c�7Z�*+`�B@�s�K���O
�T�fm��LAY�l,r���2L�p����
`F<�n����7w�8���<����:����/�
�}H�B�2��81�$5xC\�Bn`O�@y{,��9�0��S����J�,s	n�=��{sDh�7K����������*pd6	_Jbg��5A*RT7�����ی5͇'�nW���Ҿ}�����m�aJ[�e^�Y8L���eD����T�mnő0��*��}^�X��?�+��,���'�݈6"�FC/�!344T�[���Ȩ�d1��ӷ�}c�Fi��D�|�
:�Q�w����꼢�β���L0���?7'fTM�9�W����j�@Gǘ��qp�
�XuC�WɩJ�����rB6�r4��8��a����8���]&�\^Px��Q3,������F}%X]�D���QV)�8m����lk�4���躍��R��4�}"��7�V,nx%7��j�����Ῥ�m�q�͖�j0�4�>����_�r��Na�"�j����2�j�oo>R�vU[�Х�J&:;�~����o�
n�bt�Es��[��kA����>�����C���nF��;2�r�3Bb�Ԏ�ɯ�	D�@�
�'$g
�)�x�89���1M�sN��ӭD�/�Rש�PF�X��Q�n���ɉ���h���Blbb������
�'攙2��QӸ�	I��/��-?���@�DWׅ�\kyYԺ�#�_��}��c�����JJ�|�=3aB
���L�ڀQ���2�8{�Yܘ{�<es�a�.�8n���y�:S�E���5ț�y�[��2��{|o�it�;�����O���T���iI�d��i���@vq�n0AF�љ�Ne�(�ۉٱ�q��
�_%�(��_|O��M�^U��/vm1���;c9[bX-|��rP����'���hk����PA��sIOTn/ϯ19)�5PK�f�BQ��
�7�D��W���˛�֍�M����ōE�̈́�_p�ػ�i��ß߶a�O�AG�2'u��60��;Y�N�)*W6OU7�S�tz�.����VZy��h�׿�q�'a������0�7;k�*Ƈ�Neq���*�9�ۈ T�E�6Ž���p�$X������y���SՍ�p�5�!9M�y�-��,sKo��$��X�f��,ZL)��&��1��I�@ͯg�֭[���vn�OO�`�D�D�̬	��W����9ٍɤɛ�������yU]I�4cw"�$z�7���eo�[�ZK�x��YA�3~���A
��e�Q;xR‰���G�1^��F�172���m�����`�r����7��
������W�r�?M�5��M�BYs%j#xZ���±Q�X�+�~fn����/^�r��lT���6j9�as^��b���ь�I�7Huoh�7[yn�x���je(�4�f��9r�j[_j1=kE�&�(*Cw{N��}���V(��FK�(����_���)��_�E���sGsJps&��эd�0^��s�v��=[w�<���tLY9c�ߧu��vh�#�0
g�_^wRb�g�{mܼ�byS-�6d��,I�|92#��tkk��=mi:�[?5ި77ۻ#t��7�7|	�Z���;�ˆ�J�o�M��"2���o���@���/p��l�����7^������l��k.ʼ=�7Y|��'��,�e~���Z nb707o���wrrb��F�n�g�_p�+x��a�'���.nf��t�ٞ�w��cH�	sH�ۘ14;�l\���'s��}���Moz�+�+݉�q���@<�4�dd��q'���M�+I�e��0�� ��M����H)�e*�3�rh�eAlI�(���$F���{���m�^֗���oD�|޳pCE��h��L�	?8N�Ma�o&�D�l��p��1�a&'����tm�|J�����N'p�G���*k<���b�]�J[�-^�l
�h������5��0�vxƗA��gY�1bHUM��OfV�̏0"ݟ�9�I-��w��8!Lk�IY{ё+�e�<!��y877�9T����ل)��׆�iTaM�ڨ
Q ���nBũ6��=z�X���^���T=�z�X�n�OY�[���i�y�S7P�6^�(�o�:B���8⬩G�xv�v���ű0	�E3�x70w�����/��[�虽����Vew���&n����UX��9r�q�	4ٺ?Í�)���%n�Ws�ƥcO=��[�j6��\T�y�%oh�:��o�M�Z>�ڟ�V;��(J��aIBgBR�cc7Y�D�	W�$p��~�uu�Q���5����O�*M,?��_�Rאַ|7g���2�‡^�P�z���"Q�X�;�_&�B����N#�޺��"�P�w�x/�E�n��������kW����$�K.�)db8 ���A�yW ��!k�U�'.M��B���GF�
���\H&"k8�i��n9��-��7!0dg�����mO���c7�A����n>���M!�|��C���,�[����@=V�9��q�,g���Oj������L���Q��W�n�"���7�w�آ]�w�?�4�o��72{�L�x�c�̉���^4�-�q�:�Y��"?H�6�h�:!�6�!	���K(橖�����Ju���	���_Q%�j7�4	7un��$
�Qn�חt��5CϺS��Y��gb{��5���,��ϋ�gps���-{�̏���G�:eqM�M\�Q��8�y]��=]��ezqL>7��s�Lb�$��H��Í�OQ]A:qx��T<Tn����1͛��t�K	�����]���OWF&�	y5�
��KP���
��0s�Qd�msou�bwZ�:�7~g>9
V�o�S�+�#��%���r�7w��]DZn��?!;���Go����i���ܴ:�n�w`�G��V��%��e�Y��~p��~�/4G�=׌Թ�m�3@��k��'�خ���q�𦭯Z�ǻ�(!��k���-mw�
���KN=���,�$7�+��W\T�3���ZZ
�I��>u��"n��{��'?ݪ�������T͠б��Ӊ@��_k��n2�s$��g������d��S����c�G�ǚ���6��/���3�J��q��M1�;n��$q�}�Ge^��h��Ҹ�8ƝM}-��Ƣ�H�5�tV76��Rr�8(
U�[TW��5k6(T��i^'�k
�m`	�A�X�B��d�B7��obލz�@�$o0��Z�K��F\a9z�Ebˢ3eG7Mk!-��o�9�gNw��[��]��w9Y#���8V5P\|�7�T
��;0��kA�:7�t"�+���991wr���C���Ξ@��D7Q�D����N~�)b�^���L�Pk]�@Wq�W��!3'�m'�F�D�Da�����ҍd����řv1�����;��a^�nr�}�t��.��Q����ׯ��߸Aǒ>���ǪZ4!R�^n$�8RFs��%�p�7�� 5���E�pQP7�o�鿬�$�p!lx�tQ���cp��.��H��q���T��s�rWn`�^ˡx(Q�_��L��Ч������K�	8p�-S�^�	$q�K�yF�e��/�'�n��g�=S������F���q"tc�A�T�ɫ�Mӗ��$����Ofp��'F�}9�9�Ǔ�����8�I������Iٖ	-�09���O�K�Qj�|/zS�ڝ�UG���8�ʎ�ܕz �psX�k�Z�Jg��'%�*�vW���[%hj��V��P,�0Tb]w���5�D��p��hRJF�Z͍^J&%nR:��S���n ��
�o^�,�}���uK�,N��j�3�A��>F�� `\W0�7��gU�hS�q�t�{�<�z�Ā5Í٢��q\\���s�䙭�To�9��o�=���C���0*5�G�Ҙ�F��{S%?���PU�t�Ӊ�2�n��xMtf辜I|,n�L�˙�����4��
݊D!����&��qsC��][G#�Pb��Z��၅Rbr���W	� d��������
�����;08|���+�,v�k19N0���E^���˛4.�l�d
��J\c�g�b��F�db��9�#q���٣@�w�Zɑ�WfG���ټed$I��Y|�{��R��q%��+Mj���<) �4O�2WT���Q�
����l���i����ܔ�
7/��>���!R��ЪCk����NN�MΏ$�*]Ր�����y�jFG3��S����<^ך�u���+�E����6Y�Y���Hc뷶Q:�Q��q����m�h��K�25`�S�8Z��Hj;��/�)�-h4)U;T��f�~*�m%]Nܦ�ܤl,(mI�F�a�6��\[�p�Vs�j˃?��(N���q�q��>��m\(�E�ƈ
7��>��o=C%FII���H7�"nL��:�RI��N(�SC������qƎ�j�~П�?�,d>1�8yr6�᪵��6f7K���e�ڸ�r�����{I�=������pca�AY����؂3�sI��!Mj��?XS�a��Nr���Em����������ׯ�VO>jΙ�/��Yč$
�A�p����f�땒3�O���M?�Ajf�A�6�_���Q)�b�(�!N)Se�c7��f���zF�G.Qzv~vrr~��Q�����JjL�nT��,�+�o��s��
�	c ��8�WJ˸ȹE�c[�&��؍Yܐ�b���)�awy��@���K��V+s&'���y�&������ӧFiN�I��On���,oK:=�Z�m+��<��M!b���ZË���t_{
�PG�b�'��8�±�����R78S����`�uPx<Ov���m��Z1��R�1"�TY��m���GS�����&��ѣ��:�U�F繖�2^���[�Z���$,�X������t�ij;j0�gy��;Lf]a��X�X�YL�w3�p���bZ��K��A��N��:Ȅ:)�bU�ż	��c�%+M��/��P>���rb�BU`yp����E}�3���U��B$�t���j�#ODl�!�f�PEd�ؒ�Bm�D*HPi�1�_��	d"�2\y1�B�'���
�h�n�]���{�h �!�}�P�1���bξ�:�p9LD��S*	�L��(6q�ԍ���-�MyTF�����ib�52��U�yn޸���b,��Qn_�OO��푃H~��\�?wP'�i�~o�U2F��B4<�[��^V�$]�����@"xϻq�ac?-��<��3�?��G���n���J��\+WLNn�+UsTzE��)p�6����3SS�
:���$Q7�M��qN�w�C�q3}`��\�E�$uc�E{g���p��q<��ۂ7�M�9L2��T#@�_��Yڤuw�ڹˠL-��PI)H�fц'�w7{-޻M��?c���q�(������o�l]n�<����t��c�)y��e�D��;:�Ÿ��Eo����%6g����{�����*���LU�q���M������X��]2I��4?�*���qK�ߕ���tfmp� ?�K�Q�y���Z~b�P�˞F`&��M�X[sj.�33G4y�Fj��P�Y��?��w/���_za��}D��|ڧoLO��EG�A���慗"��D2�7� #��I�TT�Y'������Q_��>�u�vy�A�ΤQ�/C%�
�$5���Ҽ�s�h��W�oE�A7
U9lVJ)��ZA�B76F���a���m�
�,�F��`�hsY[����6����Z\3.�}���/����J�7���+���'��s��ű�PIY`w����D 7�\��݂c�G�
(]�?{��Mm�p���.Y���H��]�[�vU>�B��rpEd���I'g4#�&:���3a2:3|��\I׵O&7���'K�F|���L��Ym"�[�@$=yc~���U�3�Χ�'N�7[m��s,5�7�Ys��ͪ�Re����m�e޿�c���赽�]�Ia���46�������~�RQ�M�;�Sq�j�h8�y�p�Q���e]_�}k�ku����g#��p�#���/8�r�E��;�6h����@���]�O��ua܂պ���7����#qQ�3�7�<>1M��G(��H,Cr�֦�u��a
ܼ���us�F�q�'vmd;]&��@��}/�T�����/_|�?��>�$��xu]��}5�:#A�����t���t�󕈒qa:�)�Hd
K"��F��k�M��Ƅx���k���J�/˟z��p1�_[^�� �'���•7U8§B�D�����1d�x��1Ę��\��Ġ���D��ݼVzW?�Zl#�!5<����v!��?��(z��<&��P1��YHmM\#��<�<B<I����.�-���!�A�y����pX��n��a���7����U��>��<�1U���H�q<=�9e�:��AZr�V�o�t�FQ߆-��#��;�
�ڱA�i�xc�Qv܅m��ؔL�i;A!k�6�їC�mh���[o)��\�v�M�3�nȵ��-)��zpӫ<���z@A/M��y���L�C��E��֢٬{��O0^�ǚƾ���}��%�mA�M�l��]Rr�8v��7��9i�yS���Ԍ�"�p!��ԑ�I�m�tA���@��xs�B�r��as/o��%����?��_����>�i����T����,M�=��ɀg#�O�����F �<�K� �OS�k3�6/;�	�9�*�mMb��_qs#8(�b0�S9���ܟ���g�C�<�7���m�!��!�c�O�u'�_CĐ�R���Ee��"�-�P���#��,�m�6����(�DhGh�ph�RX��w�p
��><*WNk�9�[f�h
7��Y�I)�m�J��SoCxF3�A���JΖ�㏙<,�H����[���h.��-����O~���f�D������]�2����;>?9?��jnl�Zi:Ƈ�Ln��.ݺ�}l��%�Ұgs�oŅ�F�C��|�
f�?1����z-�k$�mm
N��R����엞|R�CJ�v߁��զ�w7��GymP��Fb��P7N� �?�1g���e)���^p�W%��B�7�7(��}��
��H	7@�2�Pq}1Aݮ0���P�'a���@��|)�3F��%*��+X�L�h#�h���@q��	7�1Sf��G�u,
~�P��gfû�k��f����ʟ��]���|}Ń��4�:N$��"���:gvx��7p3��o��$*}����	VW#Dmݰ-�4A�:�J񅺩"

�R���ʹ�n���*cz���PT�;�B������+\�uM�P��mI�Twc���:��\)t������s�	��ϐ''�#�H��� `Q��
��,8C��ňU4�yq������,b�|�7�p�&7o<�fۮm���,\%B7����`�����ZL��=�P��B�h��r	>k�X���"���.]�����'���]u7C�t/�/��k1Bt����DmD΂�����,n�~����1�
�`36��wܐ��@�e��
���0�I��`�S7=p\�1G��A���f��d��nL�X�f��~�|#(PY�[�۪��u�Դ�d�z�"
�R�i�"tl=�T����TQS+�(dk���/�W�+L�>eJO���9�:�Ls��c��a��xA(��y
�ۺ�P�gf�!��AX q�t�I�ת��N�Ѧ�����nx��T��T<۴iL�T:������%7�/���Dp�w��Hgz�PFnO+���;|��S����i3�D4�x�|�f"�܈D\�|��_�}O�פkD)Ԋ�Q7Ꙫ�Ћ��b�
7�Xf
��}��*�E6
�tތ�S䫨��M�� ��׮���{q���z��.d�l��q
���Ċn	��N���WB�V�D�ȣ��l{�����w�R�1S7E����={��̥I'Qe�D՟�PĨi��*t��mK=P��[	���d��?Xn��9�g�	��MЧk�W���u7�<�j�%�0m-a�ZA�3�8o���B���y��>��
��l�4gu=YY�3V�b��1|��@N�=��u��fL�����H����O�jd_Ÿں�g�}�I�6��Dj[[{P4���^A�h>��H��(���s�K�i\��-]�JkY8dLit$����q�8�qw�`�:ᦞ��^(QF*�w���M��<P��
������X&yC��o�	�(��u�75 1�z��8`GE���)f��,x���T����:���ltb���^k����n�>�����٫P�8Sӹ�
�5+����>��\4
nvE���&�#m��N`��>RD�l2Z��/1��L�OU(���W�Kf�O�3gI�2PA���w*��䠪��n��'}��8��Hz��(�2h���)���/�
pE�r�P@�uybpE��B4��(`#�ʞj���y��b�Pys���h��3�͛�w.���Ώl�l(��`�� ���
h
����:b��y����	���֭���an�|�`��'s7�MbꞺ�O=��g�.]�t�[�P�ʝ��u�J78L|�;��=陴�C̽���._S��phl��q�wSX(��VV�ně�V��PǕ�P���fcp\�E6;{�ɟ>��'��=���X�Lmes}�ps��,8����i5^:�I����?T+Ф�8�p��$�)fI�v�j�h5� (�]���%���r�H��7K])�Cd񆰀��'��;�,4K9�%�@)6��%�H�t�}�D/�)G����b��7�0�7��"94?@�c����䬲�D
7�MO��Q���MG����'���kW��ü6q�܄YdB��}��o�d�@��g��]�`�{�7���/�E�3vx��h����t"n"�H'�Īyoo��?w��K�,�)�Ca�L'�td�~�@�i7�>*��
vb��e)kn��2�$6Ҙ*Ɏ�y,�wdH1q�Yh��qġ�x�2��xT�,��mQ�M�n��O��*C���G6/ejl��a*ɨ,�L�H0(�S���_39q�.��Ҽ�����$��~�p�%3Z��y9��dԭ^��N��G�"�~��p<�|�p���z��w����S=��}�_
W�,���0��܈A�C��֦
��B�|҇*�1A���T8%A�]��M\�F���>�
�'��ƪ������K$��C��,�RiI'E�R�e=���=$�����޵��M�^m�.XM�Ƣ1�B��.��ui"�C�PX/�c�h��}]����S*zn�S�74\	7q�*�(p�f�!+69"�87
�7<*�4����){�w5�<�7F��s�⤪�� Ln��)��U�TC:]�^qMT�|��7�2��K�m=s��٫��g��glC:11w�j\�4��d���F5ԙ�ג@���Jg.�����Xǫ9zτ7�f��B@�Fr*`
��4�6��<�^��b�x����|n��n�ԔU1sdz�W$?^�h�ԍ�ڭn�z����42�1�;̈(8�Laa�AÂ䈱F~뼃.�����_�TxX�Ş���<l�5��ZI�:<�w���u^��?wr�&Z�����\(1�6���O
��_��m���K��d�.(
����4�Mur�
��
)_1,� �W4A~�tsеT�%o�I=�նT����wͻY��9��nXJ�P��\�ΝN.��Ȝ���SSL'�i���@k�I����n��?�&w�Y#��z\q�8J
A�iC_�A�h�Tv��^w�z�W���kV?�b�
K���;�*l�~S�˻�sT��C�����k=㍣��e�
7��譗�	+Vng'7�ox��B�횎0B4�x�"=!��T�M�d:PxK���A(���
aλ�s�d��v��X1�(��Y�#	u��.*z��,0\,���[�F��Jq�P .���X�����s��͒Dn�:=���^Ҭz��odhB8{��Ξ���[wP��拯uF���89<��X�@dID.R��/T�T�UsP9o&2͈7$Z��̤1�L��7�gܸ��YEč���e�(�3�rΔ�ǰ\So8,mU����3u���g4�Uo�I`���Ͽq��K�q0`xq9?L��gK�)H"�H�e��OЈ5B��ǣ\8��c��ڹI�Y��;���v���g@�*�ϟ?���d�����cӹ#9���3��cjf�_7��'�ϯ!?H��fhm��c�M0)�$�"-`��db�B��/D	���U��8���ۼ��������8�˗/�õ�ީҢ�&�T�82���əLiQ0o�;Ӥ���
� `���N�1F��љ�}ɌT(�U7��n��M�i�[��娵0h�f�*��l�!���L�	�*=/���Y�4=u���X�X�FDq��p÷p�p0�1������
����j^x�&i���\��*�V���m��+��v<����
n�P.�H�lᆒ��_8��J�	b(q�9��ޒX�"n ���t9���1�#�� �P��z�c]�c�#A>���+K�9�t5���'����sg�0C���tt�Y���YU�$F�V�<��6�y��S7D���9�k8u�9A5h����H�ʉpj&B(�]S�&�����6�h�oHBl'PA�m5�	���/���q;4ݠ�ř�\��i����At�[�mt�!�mN��o.���3]6���rޖt�G�	lX|�%�.�JÌ�fǔ���3<�^riP~Oo�O�I/�s�}���<��Ql��`B�/�ͱ6�ڶ��%�J���d�����	[���"eyE[�I�ny;Oѱ�9q�]0�+t
x�
IheJK�x36��U�8�&�|ԡ��X�r�C��:hrwr�/�Tt�fl�Dіl�Y�����4b���ᆒ��}��5�m�Å����S7����W��;܌��fb�t&8�|�Էnú
_2�@*�<�%�t �E|ě:��
7��i�e�H!�/Vx��/J�.�N��k5��	[R ���5�����M��|@a���p#u�]\"yS����u](�PՀ�SR�i�P�i�I1�N�e�(Vs��C���7+�*��oSmT��)�=V G�/��C�
�7`��/����ҋyပ��!|�?�����+�3�f���_f,;��ʼy5כY�)�����)����ylx.�Zs6˹s���SЭ������*���<�̠��D,N�<������F��k�xh_��c� �q1�P�M�pB/��ee9��
X��b���7�Bi �ҐX��9Wl|qA�uS�% {�ט�a�k�┅�-^l�H�����\�C��l�
���x��ٳ�E� E����p��r��M/h�Z�3~������ۼ���yE+�4E#����i��-��M$����Ey���?|ys�W�<���S�(�I�u�_�w����rR�����A��ع�WP(q���ɿ2�8���K��K�(�3��h3�ƙb��W
.Y�ȶ2����J�Y����wm����ï���~�=��
�67B�#z9qLbƵ	TI�4錠n,�$4ݘbb��	�´���.޳L�o��Ř�7:U�8L������%gR�©bxSR�
�0np��=Ma�ML���R�ԑXWX( _�tsr�ʮ���Df���u2S$�-T���LΙ"9�wG�%����eǎ�Őq�J��b4n��dɐEG�K�a��v$j*+�=����6�iM4z
�P7���d�6(������&z�c���'Dv(h��n2@
K��g<��X��LFM�.��-n:}�W
[�A.�e��r��2���se0��5�����Y:�Mܪ�7o�B,��lH��ڼ��1��*��-�8_�����|�ÿ�w�/
���ނW�w
��J�rA�(k]^��H7)v�#�P�s�.$g��
�E��|�u��O�8O��X=���(7���OTNt�`�Nğ���I�����d����~�y�`��g�7��‡2ܬ#b�ÇV�v�������ɴ�f��8^2?���y+�l6�sn|XsDO
#l��0��G��-F�5[�K��Š��Inl7�ᬅ⪽#ts�6���a�G��aC����ai:����L|��Ig1(�-�( �QxS�(�m<�pS����FT(U��R٪��拺��s���c!�=�z���8�>�'^��KL�P���D�o�F�Lŕm2�t�B��#%LJ���R�S��`U7�X��.*�A&!ad�7q��7��1ԍ�u�5�'VjhaK(m�&����R�f�?��r5�&�oh?KX��Dz��s�mU9�Q��a�f]g ��1�$�c�����L��VDP��
2aG%9��D��h�3��l"Xc̱T6Γk�r�^#���U��9L$O�����t�)�V�_��qs��5�mpv��
��Xd
��℉�<�3\^�M9Xʝ����{�^��M�!���?�i"G�7A�p�_�y^�{����xOO_�c����'1K�
֘�m|�RP�򶼢=E���,Y��@^�t[CC��x�~yn~qa~��kO�}�#\u7���72�Ͳ�+}9��]�u�i.s2�����P=R~^�Vi�6�ɀ�)e���_z�y#�k�M����`�J�ኋ�y{�����Tj�<��U9S��������7�4�k�bT�j�\�:���>�	7\ՃJ���a����x�fpk��	�&Rc�y	C
��
!���JC�M�	����b�ͱ��'��jP��Bf
�R7� �d
p�	���ns&.�P Lϕ��@���+�un�~��Y�Z"�F��'��I�"��d�'��g�jq�P\X��_�}++ӑ��r`%G��?}�01�aP�M�u���7)l,�H��<�;�T5	b��I鬃��H.�\amЊ�+�����1dùk����RSh�ά �k����C֩�Z���18���Op$qF�y����ѽ~�U�G�`�������	�bs%�m�3��8��OxVh!s��M�dzƥ�5��-��c�>ȸ��q���8�F���o����%ê�߿zt� ���������s�*��U]��l�H�@��D�ǷK0id�,�9�}��[�yL+۶9?��-}
�1pmG�}��poݍ��!i.?ĥZ�37�;e��T7�ܾ7�99�,b�si�f��M�g�7�M�k�N�ps���^.�����4�p#F�4PFab���s~xT!
�p���
6}��BK|�/��d�e��^Q�Cqܰ&��
g
QB�P�������
��]��?ʑS��X*�x�B+��5��P�6~��8�����7ǘr<ځ�q�w4�(>�!�!�4���1ys
a�@C,D��R�72s��Œ.��D�<�Q~8���x��tC7��R³���r�8l�����
?����ܿz�F�����&��Ռ.�&yD�{�9K��*f���%��!iE:��%6�—CZ;b7ِ�����%�n�u�׵ԍ�'w*��q}��
�?:��z�G��9OP�s�^ѵ���H<pses��u�cN�����V���8$$p�u+d3�.fcBń�|)�3�F.]�M��'�,�F����i�׆�<������`?��~����|���3�_�:ݯ��sP�ԹW���>>�����T��!���u�
�|�	��m~򉡙���RYEF����/���W�H��؍i����[w�p�L���Q#�����pc�&�M[P|�pdr��ͥEEE�[�7m�k�I�4�y%�2���7Rf�N�
��Po�6F�(��1W��a5��1w�mm�I=�׹(
��:�F:�L�F��z���o��L����}e�ϴl:F�_�Jc�n
��GU�7�B����5PZ��t��z>���$��z�
Qi�`�Q�H}�J7�}y5ex��(g�nx��b\�p�ûp��7V��z4���$p�����>-�pQ��<�P�Ch��@�8�b�D���L�E��������Uﯬ$Cm0�~r��u���c0[c���b���*�d^��d"X��<��H�x'��e8�eQ�&%��S���~@5���A��oS�l�ά��,��֨�&���H�Ŷ_�4���åB�\�%���4�I�I��/�Dx���b��Ĕ��A�j��V8 q`
�G�<Ø`c���1��w�4oЮ5���o�=�f�+�+�a��Ih��
�M.���N��^�;���_��_=s��}��}�W��ɷ߆;y��K��58���3�5�M�,#Lj0im�B���D)�����r�ɝ‘Z���o�!�o��n�شݎH��9|�
t%5�c�8�2G�aWa<4�����g��p�
���ae���d�M�7�cZ����5}�Gi�]#i�z�Rϵ�
��q�+��7j殓�) 3�*�:�uR��ٌ2g���,S�� ��Yw�_�*��np�p�l4y������E�Xo��T��:�As��
��!�Ą��dF�dФK�N�Fr�p�'%s��˄��b�O�-�O�K�(�ȃ��e�ze��X��[�E���e�=��g�'&T�j9Ӆ���.�Ea��B3��5{�s���?��G1\,�=~��>��%���e2bej��Jf{6�8�F�Pv��Nƞi*G`��R��bi>���sB�<�ؖ^!���pj�-nm�z�`�؍��7n޾�r�¸�(!�(�	�;�
,⤞������l:>m���I!`����$
�[�w�����~��+6���
w��4��fR�msA�����Zb?���Գ�ʿ�@�O���G�l��g���r�҄�g'��ƫ~j��I��D�z����~<����
�!~H�9�vY��Ck}��ޚ��C��E���o&}+��Ox��8��nFO���Om���t��N�ϓn��pw�TMs(��3Es�f����v��>�kXw��6E��h���YVOW����^��R��8S=�JGz�v/�&��T�zGY�b�\@���2B8��T���$��41F�*I�o0�7YA=��F<�1�'�7�b�QC�4�Cm|�%n8'�Y�@P�x�n��8�WJ&��,o�ղN��IJG
ׂ8<r�x�\/,T�g�(Z��|�XCh��5|����6��qt��.A�
��p�
�&�O�]��ٺ���<���}��<����*�&�#���s4L�DxT�]��7�D�#2T�U�Ldd���>�
�ؘ�h?��r��	:ե��($�����=,`&ܨ��G*�A�X)/��/�b����
���RHpF� ���GԍXc��v+�_���)�JV�coμP���ի׮����|�ڻW��sp�솊���8���k�D�0�Y�I�����ǎj��J3���99����$^�_@D:L�$5���������W�Ě,nTx�d�HyU?<�j���1��3�1�>1:��hj2�`��#Z�E&�&�"nF��Mk%U~��9� ��i#��pc�L3'�c�2c��
���x��F�mwƴM��0+�s�~��:by$�*�d3��R�+:����Q�*77�Mu��)R��	�����LD�����eUu$��NYY�@muC�>Kɚ0b�Z4�ܧ�!ݍ��s16MK@��M�j��1�(��(=���(��?Yu�ݒ��	!]ʁ�l�����4��G�

�i�Fo�GV��<�Xh������n�ۭ?��շ8O���@v��!��TC��lDV�n�g7}v���^z�_�n(x�\��}�x�g�m�9���x34Gj
���(f�a"��t�� KΕ��\���~C�<���C�7E �bɒ%	�8�ڎA�U<���Ml���?�(V,��pC�A��`��x��c�8c�F~��K�PV���A�\�����^�-��[l~�H�
��u�ʻG�}�ʵ+l�:G�:��5afz�jnm�z��\�חI��qu�;�T���ck���o﨩�=����ρk�����0�Μ'��I��{F[�N�%�˞���n��v�ƍK��eg���+�����)T��?О;���Sc+J�Ld&��ޞǗmp�Ώ�5�����a�
pY4%6��:���8IjU��Ɖ��Z�'\�(�GE�>-���V>��H��R J�
�h7�
'����6Q�_��;
��C�{
On��!R�rb{��ҼOfF�Օ����4T��nzՐ�K�j�w����a�7mm��nyS�Q��K5�b�$ŝ������aCF��Z��aAxTC�4�pc�'�G7<�71#��|J�"DmW.�&���F�	��R�E�D�^���h��Wƕj[�J�:�}d��>�%����S/��?q74	F�~��ݿ��/�C��(�&�'���A�`�gh{MfF��G�n4G��
w�����C�d��e��'�d���6�ltT�cE��?x��>s��~xK�i<�A*��b�0�x�1�x�S)�5�%i{�گ`MS�'}��߽z[>s��]�L��5��zD��hs�lNι�@�C��Q�hN-�^��ɲ15��?_@x6���րy�������_ش�S�gg�u��
~���*��utf&���o�18�dq�ܰ�[����>_AQ�H�z4m�X��ۂA2�S��������K�O��P?�S'�)�IW�n^�2UϜ�n�
n�T�[��2�H��5����
(nb
u�d@D�1%�Z�ԅ-��h�rhf���Zd
��:jBmݡ�M��A&5C&׽ �dꦥ1��5X�è�pSjN�8�e�;�f�|�*l)���
��M��"!���U�4=U`L�m�F��Vd!�>a\A)ws�H�n�����
&G+�8"/�]���%n�#~�����\�mn�>u7��'�%��*�3]%k���k�n����hH��$
�8��*2��՟��_���_^��.����ҝCܒ���DŸ��CQ+�1�
�/���"�P����!�đN4�N���t>�P�P=
B�̝{L���?���jkp�2f4Ƅ���
Z��V4Y[X뢬ň��̼����b�Zƴ�@%
[
Q/��Ȃ IE�.���������<�9�9�����~�J^Q��'jVz�VV?�"��b7!��(��[ �+j���4��a�綌/�	����G&ʽ���ȃ5�朄
\[^�=�X�,�#��6�d�Ggg��ͱ![�����g~T�����GmU��y�t��j�Ga(k�����+'.|�̠Ř���5�ܡ�N�8�X�(}|q�L*~��f���[޷k�v}f�[vo�L!���B��%.^̮Yc���܋'gf.^1C׸��|����H�gF��=�_�� MKn�7;��l4�ɨN�)����3����K��-v�g�'F��S��#n���,b;,��*�2��6��ر�`��V����N/4�Ƈf�T�3jBp&��B^
l�s�Q�=��D�Wm��xRa��6�����].n`@�W|�Fl�8��N��2Y��,��qS�QZ��M7�.o�R>.t<����w�To�����
�1<�^?�������ɉ��ff��'�O�-���������J�nK��O�qQ���o|��U�$C
��X����n�|xϹ���V��h���ҫS�%Ђu��P�,N���!���ia��8S�M�u��Xs֯7��$�,���ј��'hT0��@��="z���7���u�m�8/_`����$J� L������[.-]��;�Tנn�7��f���N���JO�Y�Ml�[�X�
�C��JU�W�����kF�`9
�4��ۯ���>935:1x#3{�Fʥo�B'빜U�ZwC�����dtne�l)3��6���l�7���_[�0=�dl��@���f�w�:E[F._�鲀2�M�U4���'NuVlm�K��_�E�7Ө��!v#ox4NE`9��0g	���e{ڱ�S���������Q>��[���V
�p�m���S'7o^Q��fvJ_�18ߢ��@���P�wN~60�)��\ٰ���88Q�T�tv���zb滁����a�V�47��F D��
�ݵqZ�P:Z�mn6�����TS�dƑD�i�&���ڞ�ή�e�ҿ�G���v��_nZ�m$i�<1����S����ʯ������lj����i���p5$���.��m�u�)�z<j�Jy��0�)�x�����P�|n�]�������$���q�&��W���Œ
��N	1��^�J����l:�<��(��S��`�����g-i�3Z�:o"���(�]�Y����g�~ٳ�����e|�Q$��f�,]]��7��
W�.-��"mظ]c1p�?��v�͜d���܁��6�eM��=wg�u}q`"��r%v�\�5u7�#��z��/|��Ξ=[��m�;���4���̈_��gչ�Ų��.�n.`<�nn��֑KxCÎ�Y�����EW�O?�Smop�)����9�G�댸�¯���m�`��5�A�4!���9�@f�M7�	^�=��ԩ
�}�}��f3�⏟��x�,���:��ǎ�����2縞SmmsmE�5�iq�B7��[Ml�Y]&��)�6&�qE�
��nb�M�I3S�D�ԁ9X����D�5@��wEPP9��I&n�h�y|���_����(~۟1��2�&'�/������u<��xk��_x��…����q�xcDŽ�$IxL~�\����*q�K��e��)�d��F�M
Q�@��&6]�=79�™�ƞoTV�F7>T�c� �[��W�bCfH����Y�:S��Ǧ—!�]��J�9���,.��H��8��2���KФ�؄M2^��=x n���<%RC(7���9����B_�,S�F'�A���!�C�3�2)�͝�ro1G�o,~�}-��b-x��cyD�qc`�Tׅ���|�C]��Ҹy�:Ÿ�w��dI��#g�h�ղ��K{3�
�0�r�l۶�˗�\k�8��9syr�1�b�(��L��V��E].���b9�V��e�{��s��ª/7[}�T*�<p�iq�f�q&��Jy�����[O��:~��k��8]Oys����g��Q����N��
�!�f��v��|Yp��pc^� LOsS;͞��QڸO�X�Ӥ���}!M&n*6Vl,o�ߑ�f��qȍV�(���+�pY��
*��F�kߓ�7Q�,7�}��2��u-�X��k�ww-]}��q�����^�����;�$ZX�֡L���6vm��KB�9�
���Cܐ:"eʼR�l�j����4��7�J�E����	��N�n���Lafę��:�*�1І��+R��m3���W�__
�9%L������2��S�OwYJU׽4��&�ʋ�T�y5���$��M�PHā�@���܃�&y�ǭh�u�|za�j_#�*KW(��9f����g��
a�˙�~y�7�V�Iz-3�Qܬ���i�#7� ��戥�����dڙzN*o��w�/|a���#%�n�R�Q�m[Qf�����o^Ү�e�p���eǡ�����M�~��Tk[�)�p�v�K�w��t�7�U��:�K�k��̔�'m��=�������b\ܸ��i�)�똎��7?�
i�q�5���h�<uP��1�`��;���f"���<Y��S�T~�|��Z努E�
��c�Q��)�%�|6��Z��&/��N7���7�(ιAq�V����F�)6wS���_�xp�"g�O�6vF����O-KM�>��,r�orWQ�Pe�5���R(�0a2MP%�K�?�������oL�&��|��ezq#Q\W֬ZV���P��n��{C�f��2X�R���J����Mϲ�!X����GOol,��ܸBE��	m�5Մ��o*�W��*l�+_a{߫�o���A��	�Ǻ>��-Q�%�}�s#N�d	��Ģ��1��,	n�O�8Rmuh�n��摰�7�YXOe���2L5~�of\E接7W��&~�(��Xq��J��>:N��B�̿a�?�T&ġ�#��,��@?舛�z��Fܼ�-�)��thYn��"J�,k��Y�Qŋ�)���86�8<'Fj� o�
5~wMG���;f�ވ������b��L�0z�Ty��q��6�g��q�+ol�b��aC�0�.�Vyr��yӰ;�l��UW���1�QO8�J܀�F	3�47
�YO�P�a�Zk���|Q��F��pp��sqC�M�6xeP�0a�
��&q�N�m�k�J����8��Vp��[\�%0�+e��a_�`���tLY܀!s�}���>f�n�",�v�Q�\?�Ɍ����n7��c�/��?�����Q�O��cb5�]�"�k˒,k���U��Ju-���@�Si}q%:�H�w��o�q�1�H��լzV�{����ផA���-;��B�X�E����jǂ7�g��&���Dˏ87�"�Ra��y(�"Jx-fœV���F��K��ġ�F��
��P<�x;Fmx�5�W�ތ����M��k������Zes2~�����9�5���� ��V�>\��n��5��EN*�.�Ⱦ��I��x��n^������0�8�\h뽉�=6u1�R��kZZ@����nf����tA��sW>�O0���↪��X4�0Ѱ�B�)�V����	ܴ&�!7E�Fg*Q7ߤ�2�0�ߊݳ���A/������B>�zױ��W[$�%y�M!n�zN���N6��8/��܃��Dx�i����
u�ԉu|���C���-�Mm�)�m
X7:v⦭��"f����Q�8Lj���Wq��"��[X��=ST��hO4����7V�h�Z��Ⱥ�>��=��o�/�6�����?WYe��Ĩ��c٨ʬ�UD��5k&g:(�m*�&;���]��(c����W�n�r8�Ɓ}��,��2�1DG����Ȟ9Z��%���ot��%�|U�A�m�����ԉ1�Eܖ�x$x)�5��I�i��#!�r�UE���a�p�b��~��Lo�e�-b�;�1Þ��ug�/�z�5�21F�,��\�Kd#�&�i���t��OU`-�"Ui�cA��n1�q8�������⸠��
+���R�s���y���W֙:�wK���׮�\D�\xҞ�55<]p17񡶘�1s������ˌ��4d��\�63=��O�s��7̩xV�Ɩ�
��OqF����ou��mڠL���	�bq�>ހ?�
cAk�!�cK���j_AniRy��;V��n_�$��?e�CCsg��\�T���Z�>f�{�a
S��iE��ԍ�8��H�b���9���F�=��Y�<�Ql�n�GEu�:�V7;����?�Mt�.�y\��q���Ky��q�P�r������{
Ey�����zt��P~���ݿ�ŀ����b�o\™^��mY���C*fP���OU��k��V����������~ݦ�W��7�͉��&+�{c�3��{��%,yÉ\J�D��USv�{�@vv�ć��z���3�a��1[��MkL3�9T��Ky-#��X��Qh�0m�0��	1�edq����$�᫣�fG'����FS)J�����҈BEV��Y)O��>�e�;p��϶l.KpC]�����G>��F~�,�n6��8�]_^��W�x�y�U��|�*^��y�����;-�Mܻ�x�`�IAF�����W����M,��i�S0�35`���c�K�Ċ`C����0� N&�~�S��Ʊ4ধә[iuө�1b�qAq�<�˯>V���@�ܖ�-yd�v!o
�6+-=K{&j"n�m�f��w�*��*���0D�e�
Ws�45YF�4�s�q��Q���@��[��Q;�
��.Ā"�*�&pG�=�)��$Q�M7љ�yB7��*�8�7O����u�R_(��9S�����2%�p3�����W�+�{�(CG��,&�3|*_$��ʍG����,���!d2�ݴy���f"򳫍:$i)���oh��B�{7+�J��u�����Pg���;�y�e��PibuV}u������9| E`L�}K��QH`l�7a�hDR<l������U��7��?�$�� mfcs�ޔ+�b�׉��m-9����[".�3���t���#��tz���'8�`�MZ�d�|�ß�o��v�|=�2_��#E�w���s��+�nn,B���[�(&w�=#uh|�z�(2���OM�<sa
o63�3�a�5`��6���vo��B�C��K�E�Mdo�x��i(qcR\��Α���Ѽ�9w�c��
��2�l)�رy۱Wfon�+:K�d��dC),|��f�2��+�:N����X(��
�h4qk������mE�'�n�4KEi��
��ΐ�:���up�
>��I�u������x
�b�
����%�*Ս�>��o��a�n����z}�fEl.�~�K�n_]",�r��kuS�x��72e+��0�:?E�d�R+1b\�D�d�Vͻ�I��SY9��N��TUU!����0*������'q>RC��L:�ԍu?�e�w�tto� B�rh�ze}=C�N�>�1%n�m̌(����F��I���G����MW��911��
y�I�v*����b�6��uҙ��9�L8���
:�GF�GaP4S�Q(��[��Sd5���4삀��j���JY������$+����U�u��ߝ�Ϫ&�L$G�k�.��?Y[;����y�����c�R��Sמ<9�DɁ���dEt{Ÿ�L�Ԧ�zQcVjz�?L��|ڐ�"Dl�B��fq�
�gqcw%q�i�B6)����Έ��'V-��5�f{����(�e���[��J���Չ�/l�v��b�𱆊V��њ�ϲ@T�/92��4SP)��	�1+u�Ȓ���ݲB&UF��F� ��O�.qczH��P9�&0&劉p_/�F�D�(c"n8�]-
�q7	n�(xȁ�n�/M-��Jı.mi	�¸��e��$�5~��>�Ll�F=�A�#nJ��t�$IP7q�a�^5�s�4S�����S���K�F¾J�7��O&�j�>|�4Q6��
2&ճ c�7ZZ::>���o���Ҳ�fիօt�T��d�Wg.�D��˰�'��-Ax��	K]�Fa�肉�cK����w&iq����#ȠiFMy�f�-�H�L���D���=J�f	j���1��_�i#SZ\�����\�/�fz�������
�X&�7��*Me�݈
��;�O7��Sbbi&�s>�fl��yrhj�q@��m���t�ǧ�ō�Yt�.LOw�˙�
%�3à��'��.�2�Y�Py��Q��z��V�S�ј:��l��cy��!?�Sql-n�Ӣ����^��Y�����l�k�m?��^^U���m������-o޽{�	�rpP-L�Q_Q0]�3�Y�����

�[��
e)P�My��+x�<4�'��N��rpcj*]���W4'�Q��p��$5�q��EڤˋX������R�O�J�;��ŵ�'�Hl�S`s�v����թ)/�����_Ѱ���Da��J�O*'��8�\$WD�����`\������3��*t�@8q��O�8gԌQ�n��`wo26�p��rzf��9�w�t�в�cS�:�Τ�p��ðu3o�
]cS�
=�ѩ�k�=)#a�d�]�"�4��TV0a�tm�"{�	��0�!Մ�Z��B��
���+�m"��q�Z0�3����g��F7
^Qܓ���Z��@N
\$���7�j�դ��Jia?�WR$�|�*^Q7/:tq|tn�����08�lc^�#9R��v�,����х9p3�fp�\�~x��ÇW�ML�C
��6h��0���t
��6A��ǔ-p�p��kq��q�1�ӧY�śˊ�sˊ��̝xr�7��x��F#w�ޞ[J�b(v�[����(&&�pC��c�I��qo�
�S3�@��D�P��d�pB'�:KeG_;���<Ɗq�č���\�7�%��8��妅%3�в�O�7�%tyR��ح�q����+�-/��\q�CZZX���/s�YT�T�e��A�h9E��5+��6�M�0I[�吤�s����5��[�C�'q�-�Ȓ�ƪ$��XZynddj�K��1���w�K:�[�=���r6�wÜ�;7��0���PQu�z�)�\��i�]�=t28�/&�ҁ�ؖ)C4�က��ą�Bޕ�(tH-�eM��.%�NQ'�޿���0G�?��?0����=��銜���K�̑�I�*~��W������h�sf0��o#p�H����\]�3���,3�Rw�~��.���4�:�|�^i�+��Ќ��{h�I�������4�B������0����3C�;�����C��&�z����ǛV�
���x7�6n�M���z�Ş��?��[�ȗe�n������/�O,-c��n�v����h�0=PtJ!�:�;�7|
7V���t�Mc�Lh3��&d!E8����fʊᄸ	�_l7ț>����[���F?�=��Vb7�n�ōR��q����ѡ�n*�zN}e�P9Щ��]�{9���������1q
wJ�,J{-Y���m���9����}}��^QD/e�֝�e(�O�'��H̹=�Z>̦���o��|S��F�������n��ΰĒ>g������}}�7�@Ьw)N&b�t�*S��̸z��n��d/���pM��&�4f���+ݎ��
A�`3`
����YZ�uB���̚�;KWS�n�5k���G��$��Y��!7cS�y?����{����|:胬�-5w]�����9��yٵ����a�5==�5}�.�¢�L�6�g�rsY�ڴ����:8==3�5u���=�ӟ����+�0RR�ڈ��lC8����0�,	�b���T�Ͷ�jP
�U���S.n����Ԗ�?�����}>t�P���Օ{����P��_�c��j+��S�Uͭ*'ra
�6���ԍŌn��j.:Ym����y��9؄7Քv�������Pq�p��q~�j��&�E}����U7�Ƴ�M�M���n�蝆5����o���\:P'�"�ư̧�d��ō'XM���<1�,��LВ�X�Yx���j�s<�~��G��{]}�����礿|ޙ(�:72���*IW!��1�u	fM���A�͘.
��w��8��ze�<+�ݬ������=��J�͂
L��4�� v��{��+��O@1=��艥�Xt��c�b������{�ъ���_�*�G
���"YW���u�����7�G��4�X(������9,,e*��Wb7��,���n^rapxv|�h���t�0�2{���˚��[$�E�x����S�f��;��7��a}4�_�]�.�}��3��\`�&�Z��(n�:N7�iU4H�ПIl$�M_n�`�2SZ\�_F�d�֝���B�x߼9����b��ޱ�y��*-���&���&Tz��� A�P��ZA߀��S�7f�l��lyr��ed�C���%ج��d9�+�)zY�F$E�$��n�E�Xh�4n��d^�3��f}!�j]с�Q�.hRT�bɲ��&'Xf�ɑ��5.Qf4r�+�)ԡ�K���#�H%�a�����^X���s�g<?���WcY�:c�'U��
M񇸺��."����~X��q\:+�+|*�3VCCfIM�7��p�ȝu��:vV�����u��:����I��R?m��&$N�y����R�F0�Q$�޷��i���a�qҒ�8l��O_���n�|H��wq�Ҭo�J�`��2����M&�ܸ8Q��q#%��#��x��ݼ��4WNϰ&ݕ��UQ$s��UEh��	~�O��2?Ki3C����>w_ڠbY��_��S��u���}�y�\>sާ�
E7H�/4ϐNT��t&�ѧ7��i�&n2X)C�E�8��u�3��S|�����h�g��.�=q�g�C�[����M��qS�����MZ�3@�j!�u�XP*"�f�W���փ��i�RD��H�>��B��$n��.@Eǎ���ƺAgs��5f�6�#Ơ����I�/y�8fL�r5N��8@�`q�1j��k]j���&�����W�hƁ��!ݟ�5���gfq|�b�����’����ِ|n
�$�9�PR�7�yNc#�'��pM�I1�+R ��}��GT����p�����F,V�2f����W��tT5E7����:���qF%�I�^9J�~1���fJ	G+��MW�2柬�	k��/q 8_K�W�p�R�?��r�4N����6�,n���1�Tz��`s�}G���m�y99��~J�NL������23�q� �-_O��<�~�+�����p�������|�RY��]��\��-��w��*e����6���v������^.Ί����
f�w��,�R!r��Y�D�Xqæ˴� ip��+l�� p Nf��?�^��<V.?�'��ʸ�~v����[������ɐ��nz�M[�{�t�����,؈Ս��C��	n�,7]�����<n�c�i9�~	h�ֹM��moC��GLu�	
��*�V!Zʏ��Z�wDN+�aH�ژ���$ [�MS�H
J��%r5]a��rF΍�%�=�����/�$𖧜�`��K�c	n@LUJ��9B�F}sD��7X6k�Z�ט�z��i��z����7�W��4\4���z<(�W�/������M�����y��.3�QM��o��>��&c��JE�t�j>
��dU�8�/�+�Ǯ�X{�>�dp����y�ѣ̤�1��]}7����&S�X�"��
z�;��7t6_Z��+z�������ه��:I���;��{��ժv��ݼ����p�3�箰�u��@��m�F�F�������ĨxA��8s"����Qܐ	�3�	����G��c*Q�#n0�,vy��q#m<qd�y��i�V�l����gP��]?�۞��B��ſl�M��
xstoq��{gO�E1t����7�A��4w}l�w���k��Ly����,�	����&���i��Hu1:w��!�8xVN�7!�eVs�����V���Qn
#�l7������:I���~�d���-�ۅ��9ʅ�N�I[���`US��&	c�7V�MB�O·w�s�Z�5n4Ҧ�x���ō�ƍVud��
�K� n��R�#.�(]��qP���^t�0x\%U��)��&'��
���M�7v�ɇ<�Ua6��it�D���Ӫٱ�26j�L	#K��U5�Q���M[-���I�����3P�&��
�A�|���GKw�J��ƒU ��b�G����ͳ�����gϝX��=T�$퀬K�t�.��m:�����_��f�s{����s��ݳ�n�7]zI�fx����k{���.�����~:=>lf�͌����^ō����9Hxb����pSKQJ7V;�f7�\�7M

�3
��/�'LJ"UXV���~��h�v�)���keˉ�]G���ų|W^.+�ý'�D�4%��|~�඘���p�qč3��>n�D��n�%-����� �q�inK]�w�6�Ĕ�p�>U����s`h�J��[T��K]q
����9�IO��6<����5�4�a�V�p'̑��4��]Gr�N�l�n
�B�ˀ��}NaI�f��B>=Y�{P7G8/�f{!�C�y��nQ�l�gU`��[��t�P����
����Ra���c5�Vz�."C���?ofx�^Ҹ����H)m�qn?�`_��ƒ�ę1g��Y��ee�����Wx��2S��&+=cV7�ǂ���,n�(�)c�^�s�1:.:f��?^�O
��7�~{��ݬVo�6�58��s���I60��o�;5ڮ׉�YX�1��HMQL"7s����Cq�5�;�˵,n��w�P��esTk���%��7ܑ7�1O��7XT7�Nx�tI��Źr3�=������mޞW@t8��i'�r��l�߈��E���ý��&Q�*�l����+ç���7Ǿ)�I��]�&�#ps�h�!�i���|Ϡ���G�1þ��h�U��0C�G7�=����T6����I":���aQ+Ս���⦧V܈�ӧ�o{ۈy�hW�����*m����gGY��ʰ*w��7��:LO�&�*���0��7/��O!S�SUR�@~>��[Q��€��kF�@��x������M��>�B]��,z���m�/Ӂ}�fj��޵t'��*�&?E�O�´x�K+��+i�N��m�u��z�׿�'��kz#P���m!�N�Q��y7�E���k,�1�Pi��?[��eg�=܌f�Pz�T}C���ğ����xa,��9�s�	������d�b7�U&����m�(��$3�W����ܕ�s�7ڧ��]�6���MP7ї��7�f������mZ{-��f�V��^��u��~a�o��
_d����lǖ��5�xbWKxR�C��	?>���p3�(�?_�a�~�#=Z��n��@��G�.�ă�1�ċApÿu�<.B�h>�!>������	gu��
�?�0
��X-o��i5T�)�F�������QJߟd�B]1w
O���	n�ZI�6�;J�"��W`��_m�.ME�$�YN��GJ��1�v��Mo��� +�6��m��.;:S��l�7��l�&X��'��4n��4"~�&��W^8�T�3I��z�p�5Z�w���^���K��s�D�j�S��<�]���0�'�	p�7�ȨS�`���5sS5�Ӗ�&&n�5��ܪ)�~�'I�&������ܵ��$�SO��]h�����M_�M����eeE)I:�;ufF�#�3�S�=�L9�\�n^��n��}m��#�.u�ty�px�Z��S�G'�r�U7�S$c����$8���;s�W;s��c�
����}7�7�/s�Iԍ��kr���#n፸!�A
fo^ݾ��ڦ�8��x��ٽ�ǻ]�a׉����n�%q�M���v�����G�+���ȊfG,qC�0\��g
���9���ͩ8syxp�=�J"'�im6u����T��� o�T��.��6�F��Xd��y7��r����#7=�2qs<�,іp��c����Siظ��4��.?�&�f%T�x�d�\{}Oπ�Bu�XN����m#%�"n�JaN	���#���s������[��c�O�Հ�"�4U9��Q�;?���ٽ���T���AS��J��4����b���8��G,L��J�:Dg�b֩~�M9]6?��cf�kx-n`.-��{ƃ���5��d�rs����ղBk����ɔ|�Xv��b��_��*�k�)��c7�ήm�w�����G=�y^�M�M7�`�03��MwM�����f�A�>�2��LݝJ�ĠF���V�{�Dڜ��8�zD
���
�{�ku#j��4��F�7��#n�������.zݖB��
��vԽe����uoI�B�|��:�;~�E�M!O]�C�
K�wu�Cq3�M������*f��0�!ܽ��
�}D�Zg^�nB��3b�������w7<��C���
rˮ#t6&�&=�������	�n�Վ{=�N:��K�&�%t���ٞ�J?M�i(���W�dYU.�!a�ʘ|�Xϻ>��Si���ʚEo�5��+���Aq�aC�ᛔ�7�)�D�O�-}U��GU���U���	���R�߲�ß��ϙ�R�l�\W��z=�a�aV��7�.��������Fΰ��G@�*�nz5��&�����-��
��
7@�ߋ'�����d�F��1U��y����-������e�ˊr���v���ğ�᰿a�wZ�3�|�0<Sw��\�p��#S��~0?�x�T�L���� �,�r �4�Ip󧇏���`�n�y8������T����G�C�u\��i|�ڔ6�Dyc}K$Eiَ}�-Ee�,_W�[x��zw���Eg�"n�ptE;�	<�0q��C�6�����e���Ȍ�^�nN�[�"n"	�zɭaC�g�Pu�]���~g������J��c�9�Mh|��OZ3�h.ZT7�Ǧ-����*n�J7L�Pt6D�]�J�@�9"�xV�����ͯ`�yBf�8���q��K
�6T���MZݸ��K�L��S.�՘p:��n���@���q�r$�&�%"�d��x	���
�:��̂_DI ��S��ٯ���U��I�TK�����騭WX�c:�魈���-�R�G@P�<>?�бDܸ#Ine
���lUb�Z� �

���48�c�E�<-zb�3�����UKE�Հx��)*D�	��V#\qZ}��vl<�{7��2[w��W�n��;g�C����A����u�E��;�52����jV���i�̎:��%ꉧ&ê�7��}~��y˫?s0�:V��
0>��
w�e�WYF�ֲ�̲���&Ey��4��I����7�sB�<�=[(�z�M+��Q>51o(������i3J�37s_%]�ڌF;x3h5Ĉ�#��
_��!��7,�-��
'G� f��1�n\J
��k�1d��qI=�<)�����M
�h�7Juܘ�U�6C�ӛ�y�%�Z��r׸�C�q��G���~䛟�7�#�o)�pI7��c�q���b?�•7ѳJ_4aj����
���@���M&�8��=#;;|��&V�l�v
t�X~*U�����<��`\q�`p��`ba�$;��^�>U��)���*Þ�6�n�˳.��H,�O���Y
�IJS���c��f;�{/����T��?��X||.c7n����#7/\��f6�"�|#}��FǵѰ�,����Fܸ#n�{��7��r5]�F�bKѾKͧ�BS˵Gw�n>q�-����
;���!e�m�����PxoK��-�_na	��P�Յ�E{�"c⽎�����7BH�l���f�͛C��;���p�9+Gm��T�M�
1�����K�t�U7A��y#C���ӹ���4��������M�Ƥ�
R�olª �#VZ#n�	�p�S���PE���I�#�s�UU�m{�?�&���]��I�LI�_�;ߘ��:�'��F���+ׄ����E)�]�Q���h,.WӄL�t�hd����-cA�Iݼq��W���̮ά�Ɛ���f�`F�ƈ��y�i�l�-���眞����[-n��ϙ���a�s7=���IV*�k�?���$�����Wf���6͙$a*+Z�Z������R�7V�k�0�w�����vQY�{�)��~������g!�ׯ_��7����ƅary�q�'�K��
ӫ��j:f��޼ɂ�_N����*�o
o^��ǍޫM�B��	n�[8������¡���̙��@פs�LR�JU���,��۶��������ּp�hJ;�%�R��Y@��97Dg-�J��HU�y,�<xb@���Zڰ	7�R7ع����
����?,�o
�D2��ڝ_��^3⢱���i��(0����ٖ@:�ި��"��D�*��Q���4�z]w��S�AlA��X;��N�L�z@�_��BW��M����[� ��n���Aj�8�	�S�1�>"�p���)��o�B��)���,����Q����au�:�gU,��)���\�^w�챣{<��*^�]��…�s�)�|��*�'��!�V��I}�
���y�2>��+�W��k8_y�\���
��#���➋��;ߩd�0��҇+�ұ~c�c�ډ�G�i��١�H�kS����w/cjG���g�~�4���XJ���6fZѠl�E��dA��&��)�v��J�k��M([[.�C��&<�:�$�W�ݐ
�9L/���ĉj�Y�rpK�7�g��q��,�5x��@�)-e�؃ݞw�Z�[%
��%����P_qjblU��Q7�?x����P�1J��j�[$�z��?�ߕN��z&���I�C��ÞL���_Mv���Zicu�֛R:��\*Md�ɓ�m;?�48)0�D�i��Z��b��K�i��hj��9j+�x�;�G��>��Y���L>Ug�n.�L��7�FV��\��a#�- �"�mh���z�`�|I4̊*C7:�GYvC���A����1}ޣ�D��"����L�d���S��ȹ}{����{Cڂ�C�#�Xwg�a��=�yx�ǪȬ���+Z�3���Zys�"����3穈D�0���x5��'�Մ7��H��㇙�p�U0h�G����]�@z�GD��_��Y�x���v�j��!����rL(H48�e��g��ll�ưF�7�|B�I`F�8s�׊�7��'�䅚���z�É�V8؍���=�P@S3y��C���"����桶�]�F�X�/�r`Z�?TŊǔ'<d��K��˔X�+1ύ���q·~p#��U�C�������L��S�$]*木�Ŵ(M�y��a��)=)��q��=Da�c�~�� ��(�A{����V�6��ؤ@�Í�C�`�Y3�Q�E��	�L�����#+oH�Q��W���$���{����^�|e�H�#?�,n� �`�8����$e���è�g��5X_�7�}�h�q��M���^lU��9k��N�l��>��x������`��üA�p��O^��W>���\x��s��:S{��w~u������S7I��~��V�#�kxcq�%m�Y��d<m���˪��Β��Tb�ťs0<���qy��^?}�_��gۙO�!l�5)����,<f��2��⎺)�����ME,�xq��%��đ�O��E	'>G�Dβ���o�Ͷ��a]����M(i�LUܕk��U��
�01�.6rgׂ�D �05�6�
�(�Vy�7��}ܐ�G��[�W����t4�B�]���t =��1N\��n0���hyy`Z�Ʀ��շW$t���x���-FTZ�p�L{����;5w~��W6l7�/�	_"'����
2��@��)�E�F���'\t��X�R)8P򲤁
�Q[
���11{�ndxfJ�j|�(8.���&+�Ǽ7��)��W3�>}@wÛϺ�J���><<]
���dc��z���ٻ7������D�c<��3���=N�{��;\w�S����O�}u�ɳ}{�
:��<�s+O�n.z�
����$c+��+����p�U܄���;|9~��-�������ّǃF����I:TU]�{����]F�p��o^o��f՘�q�n�PF�A�������>t����4�/W�߈5��^�1�w������,�lK���pS>�Ϲm��_:�v�4U��i����-o��7+(���_�f��l�X_s��5�L���n���@tK�'�U|o�{rnri�j�Qg���H�S��t����o`�<ʟ�U�(��3�o1y�q�ͯ�I��O�756���������C[^;�L0�?웖c1��+n=�jb
Xl[aps��zu�
������
�fR*�P7��
��:jSő����a0펁�q똽h#�
��LJ4��$J��i]��A���e;�7�p��5��0�qAE���yV]&�&؀6fR
�����	�+Μ�W�"���/vV�%ptyq#���0BC�*::~_��9� ��W�$�#7&8.ބU^�Ԗ�	����ڕ�|Ą�u��C<,}�~2R]��C��v���a�;�#��
��XZObǸ�k�,<�m	�G<�$lP�n�<�>��$0p�B2V�
/L�`�L:ɘ�I�u�����]���Z#��o��hWG2\i�07�d��my7�x�M�<2��K�[��������ʚ�@��
;�Qc'X�`����L�n,uw��r7��6��o���o�Tf��҆�3?MS֍�Y�j�+n��MХQ���+o��t�t�p�]�K��@,�"J����%j��S��䍇�.�½���f��ɂ`#�#��$D0qGw>�
�����6������M��*�u���GZ�
z#��7�K\tP:�>^|ވ<%�2��N�pC�7��.�2��	1&�H#k��d�{5�9S��x��0�{�������'����9rV����W{�څ���Fȩ<�bA�p�4�F�����S(��|��wQ�5:��H޿z�	���I-f�������_�O��K����q2C<aycc�!סXDV�
�(�
g=�D��G�ʊ��={�����t7��DU��*�eO�z�H"�	j�o�=r8�nv��fk�́{+k� �
�u3c>�0O!k�-�����I@�X�po��
�fH�)w��}gO��a����(����$率��l3���Դ�t����f�~�N>E�g��爞B�5
hb�f �ŹT�?=E��-;{�6X7�~���3oN�´�z��pCX�Q�ѝM*�Í��FJٛC��
��S�76J�ɔ�Dn�5ꍊi����CG��!�xg{鐞n�U�
�#�JFp�1�>+i�7d��I�i�7�/;�S�s?T4��`�B�a_�/Z��ߘR��Ouw
7����qpk�����}��]�nN4�]9_SYicQ5�!b[R7I�o"��g+������Y�
F���r��%ms�a!G��P7��{���^)�cOu�ba��X�سd�
7��2n�8�ٮn������n�y�e���_�٧��)��TXD&$ھhĨ�g���ve��-�)ԍ�KB��=�yn�kEҊ7�d
�`�<���a�%i���s��-R�t(��p�+��.I���\�O�|��C�'�͍ٞ��oE��b��T:�N&�<��l��RU�x�:5���8�!�&���%~`��������2��K>ځi�M���*.��&���n8gY3�F[�K>p7�'��wS�
�.y��
�e@Ee:�����/E,I���#��G�H8YUT_�͠a�|:�2\Bv���"P�L���B!6DOV���O���/����Vj���Ď������B�5SW������Z����pfp�*�C�T0hq���F����m�
��H���VՈo�-�Eu���62�A���/��9nBy���m��?�.`��1��#�#�qsQTm*�I�
b�لj�dQc>nbJ�ӌ��x�>v&&����?̬��x��g�f7��iy7�j�W�u�
��aY�.��k�KE7?+�`r���]����������%w�
��d�܏'�ԦQC��.f
xA�{���g����/G����h�!�*��jt�?���H��MNCB?�XC0@aI4Ah�u^ƅO��mn�a6.�8�Ns�=7���S�1��bdZܨR\q(��\�V��9��0ᘏ�
�qP����a"�����D	���E/�=�\\�M���7"��
_����d%�ۗ$�x%�O����G�Mh|oL,���hYg]%ʼn����H5Ӄ�$��}B�o�<�F�����X�pЖb�`��w�|M��~�*˗�
Kӆ��rX��~��خ�T:�^7ap=���b�B�FV�L�s�(�:� U���&fq�<�MDJVƍ�cz�X:��-n����wO����E�ށ�9��]�ٚw���@�<Ѩ2l�oX�^~���4��ܜ��47�7����]Z,1�
�gnH����*��0�N��S��&
�|�䦘_-.�d��\LEP2���θ������C����rb�OS�_��[�]�P�!XNf���6��6�r���b�%�p	�F�'^?���w��l�TƟL�A���8n�M�݅�)̴t��F6iD�ɺ�qcM+�ftf���A8C2�}���y漿	S�ң�卉_g�Fũ�0Z���뻔�c�m1��3�=d�?#�Ԇ��?E����Mvc����k:�+Y&�Q��vOe�u�ʔ_ƣ�W:^��h���b�;���"/���)O,�wh.|~U�8A|���Ś�
Y���&Ze�B�a���I�7I,f�M[��
�0�iuK�8�Nc0�.���ݸ��&��������4���5��7-�-��Lt�^��'|�P��������yh�߳�q�hC��Z�A1?���R4��事sgz�m���}8�o�1��gċ�t���Ln���+f[2�ɭN;7F'7'�u�%�J
�B�$� ��@�ĸ��V�D/�ȝ���^�/���)ך]fR�7���Q8"�k6���n8aN���
/':�7v��n%��$uc6�Q�
�:`�A
H`�8R�Wz�0�#3��^\n����a�w_�4;�<�@�z�@�s�Lr-��.�J�V���4�(���7���R����σ�U�ʚ)pB���n��V�g|�`6��5�����+����TWC��H	7U;F��Pm���	���~�X9W?�������v�����"�%TT�nHw�9�-�,㦲������
Dh+�Ui"��W���x�ܰ��M̹!��C��
'^����s{��f�H��y7���%��}uc�AE�$�
�b�e�Qf�
��:�'���
�qf�HS40�`i>L,.:����L᭼i��e��`������2�X(fb��s�nz�	,,��2�}]$�x�1�d"��3~�.���׎��^7�8v�&#fx�/�2�(�`�F��rp^�e
r�*cY�}F�%X�F�~�D�f�t�3��X)6�_�
�Q�
~Ƞ���
3�0t�.�$+�<�]1�x�+l�N]]6n�j3Gg.Yu#�d�(��^�U�ͭ�7=u#̱�����<��
:�8���{��UE�)�Xƞ[H�x�=}�7;;��ҳuScgS{/�7��U�^�7D��p���
�;��N[���_�B�F�&�C�5ƣEd��JNd����$���d*y7!pc;��f��'������\�YWD&�	n����Ȼyۻ�k����ײ�������?��Qj�h:��u���"p\gv��~�(�U]�OM8Qw��ɑ�
��Mb�^Q5��[�u'��#����j��c٩��?�*L%B�Ty�zu�t9
4M�lb�l�x�y��x�3��5�[D�8��)nX�t?FSHnB��_Ӏ�`����i)0B�
�ԣ"��np������Ǡ���Tg�҆n��o�=-6�^���+�o���m���cX�iՐ�Nu�Lcm���vz���T1��ԣ�QpCKT3k���G��n��j�ݜ��s���嚊��E��d[��ݶt�>V?8�����=j+M8;��&�S`|�{��[y�˘VrX<9��&�8��ph�t����喟����H"ֺ?��J�(��'��M��M����'pC	�G����G�TF�V hCVe?q#�i�ٝk��w���b
���[�E��?��	���7���Sƭ����0!Gy�a��T�Ƥ���>�&вt϶#F�w�*4b%�\$�\�꯳�$d����?T�D�G9j �q&�ZZ�@"���s��'�ג�.Ø�4J�6�ɣ�s�i�����j��&Œ�,o�@�
�
�|t���-��T`�����ʠ�]�A����Uhs�����c\4b�����۷={�˲۰�̀�����
��ME�*|ׅ��3z	�H%��p�	gJ
���n>0�������O��foM�x����7�Rl�,m8�0�o����W�\����ښ��{M���v����ӗ��_�6���Cs'�|#m�O>��l��*����)��١n�J��9b�c�9�p����
,�iQ7̐������{���t3�	��s�q�S�X��qc�W����A�a��4���yH��_�n�5隵vK�~`*�����e1m�p]�H�p�����?(�Xѡ7�
�<�s7�G�]��2����T%d����t!��K����0�M�4��ON�6�W
�N�&L���6�QN�����ةT��}��)�v��M�PC}h����-�����M�*�����.�[��R#>nd�f@É4ܑ6�F$a�g�h�=��2S2��
+�Kو7J8�����2f��Wmx�A����=:#ܠl���y6�}jD]?zkm�(��
�8�6�?�1^���*�Z+�8PI�j�Re;����gO�_7r4�n�#���;8�����q�%�^�L�@Bf���L���,n�<��֤�qc�DƘz�ǰ���$Ў*���v'sx����Bϖx����;ޭ�C�"�����ㇿc2����&7l{�N^���9�&i��P E�o4!�[+W�[���nd�ؽCS��g1�H'���4-NC�>5�c�Т�`��p�E��%'��oNǵ���-�ģz;X�@G�5Ŗ�'�)g���M��Ҍ
O��L�qÀ��$gm�
��)C[�n���n�+y����YC�qvҀ�nD��k�/���~�3%�ȁ���T��n��pc�35���
Ӵ��(d1M��-2i����8�� o4�'��2v�3�����{U�k{������4�Z��C�v�<;�����~Y���O�1��p��7�"_ܼXd*(+}5Lġû�P�2nho:�ZS�6�Y\��{#%��Bp�ȖTN�*!�WQWa�D1�����Zy�5����7TV7̦l��_��z�f������r`Nqv��0�=��7;A�|�	��bMe�i�.)�^��_mp�!v���7#�<���cג
�f���XS|^�t��%��pN%r�t}c�yp�i5W�ji'�]l겫Gi��̣�_Ù��8���C+�{	8&��4��)%*�mq��h�
��؊�I�K7F�L�D	���y-2����S$��i��0�H�'nx��<���sWf��La3��e%�ԡT+UH�,T��𮿕K�
��i��.�4d��J��`nj��I̛fYg����	���U�=n��N�˺�i��vr��E��gC~���{��Tp�Y�
y6��K&�|��S
Tx�hsg�p�@Oް�;��o�N��[�Μ���9�`óG"�}˸ovIǛ�y7�]�X|b�I�1����/X>Oh��u=vggi�8�`����E��@p�&Z�f�A�s����'���s���H.���-6|4��n�ƪb0�͙����2/G�0��xK"�42���1X��~*�n��Y�m�ѣLmf���cܸ�{{%y�ƟP�jqJ:�Xr�f4��0�;��=u�f�7G������'���n4yz��E@�క<��@�{#o�'f��Q#�E86�c)Rv��W�K��|ݗ�3�\�ns�������>}
�ۀ+h�#ܔ;r�!����/���b�t�l�й��C��/�*V�`����~�6�7(����nJ�Ϸ:G��m�O�������l�`*"�,n�p�r�sK��#OO"!��I��y䉢��Pԃ���wM�Կ���VT�[�KkL�T5A�㵉��r̕������p��6~�r�������N�I�}n	7V�(#9��Л��3RH���nu��v-�kĄ������1���6�ɍDn:��@��ku
�TS�,���� ϣ�UfS�Lo���ѳ�-Le���$�~�8>��<Ƙ.}�(���X�1'���g�F�])�đE�
GYi#�&eはn0�p3G_�6�nZ/�L�mæoC��z?b��J�}�ֶ����B�o���E��e��^��L#�G�:o�Cn[�Tv��T��J*ʟiO��9|�r���^�w��2��^�'�R�X����p�sS����#�J��$���	7���sa7D���1�	�մ�aqym<vY��Z���f�eu#�슚�o˻����l�U?b3[� 25��vSU�y��t*�:6�z��,n��5�W��5���MV�K�k
����Y8�N2�ݢus��g�q
�7
u@�9�vY�a�Ȗ��[���L�*���=,WNp������<A�����LjuyÉl֏g�2�]S�=	����S�'�J/D%ܔ��$r��<�E��]�dm�1F]����̢�O��H�X�7�7e���'`M��B�%�$N<�4Kd�5�����|k|E��n�S,���@������ Y~7�H�IT�x��ډq��%��	���'�o,n�y�n��������v��yY�W���wJ�������b�#=���1��0�Z�����67�cB�{*+
�L���M����j]��1�s���-b��oUS��U��.P5�CS���{�LD���N��H*L����k+��ܒJ��h�ġòRK�?����hns ���/���kZ�T#rS�?�s
i;ss��T ���X���W]����q��r��+���rI󓋤����g���IҀtuc��Y���9u���S����kʍ'SSG�V�im����7v�;����
;C��,2M����M+d'��iv�6�[p#�#�b���(>X�`��}�x���r�2?�k>jB�nj���)Nk��O��)���KP�lF?�}�X܌~�;⊁˷��n!
A6=)p|�
��������9�������q������&��U�Bπ�wf�:��|q�Ȅ�#�b�9�bO�qNOF��k&�p��
�0ϵ���7���e�Ѽ��n<�M�w3�C���zZ2�wn,4Ꭹ&*����惢�nnQ)s�k!�e�;�x��� k4��b�5�uUBu�M�����u���w���@�K)�Բ\s�fa̮
y���WΧ
~��JA����X	`N~ycZ�.
�����i���hzcy����B���tz5�IC�lz��~���%5��쮳����U6��#�HޠnK�᜖�i��$
O��qc�
�����dz�!F$�5le�@����|uc��捶�F�K�1'<��bzG9B�䐼��QV,\S<0D���?o>X����o�&"��-�
�D���T{�.V�0�{ܰ)G��TBS���C���w/�O<
5e�DBϖ4�g:�l��rs�R�V�� d�
D���lJ&���,A$郧-��Ln�������L�t�\9[=K!����A�%Y�b���͝��4�6���N��c��͍�N;K�=�t��K3����L��.����-�5�h ��u�8zp3��N�=2_1c�&�3==r?P�X��b�D�TSO:Ә�h4����{�����D�
Cd9�v<LҊ��0�̩���M���Tn��-,/�63�����8�e��z뱛�ÙУM���
p���:�1bȇcՍ1����bb��pc��dJ�1���*�e�(Ԥ����fx�fs�u��l���M'+r7>��V�	7h��p#_1�7��3�����/|�<�8e�l��7n���e�����k4���U��Ў���؋��-S��3�P"�6V�og
�a�v��B
mƾ%�@e��VT���	�ߊ�/�ױ����xk\~b��/�a6��Xr��v�)�.K��ݒ�g4֖�T�;w�{Z��	pدn�(�aM^�	��\�W��<9���R���+s�XX����K�(�nP7�}�.'[
�ԃ|(75�$2�4�lL�dz����j�&�-D�3ˡy<R9���o4'���Sr''�]��==��I��DL�2�
��c�Y�r�W/Y�3%��ÛNp#�07։#��m|;j��f!�ԍp���l�x&ƨ3���%nj����ʠ�G_� o�nx+����|tk�qM4O`���ձ�P����-�ͭ�`���T��F�L���l�P
(|��&{v���β��,�m��gY ������˗Yq���~8�s~L�n���\��k�m���45[J�ё�F�KR�	��c���"�$ܤ�&N�VW�+M�*s��<��kh���řPH�����A�)ΝlK�߱�
�-���n]��=�ܩ�oI�2i��MЍ���-F�f]��3BcNxb֬R��~-|<�t`e�98��|0;����̫�Y�[�@w:�g��ƙ�΅]�S���M�
ec�7=�x(6�E�d'�	s�L:��`���������f&}b ���s���p�I�JDZ��k���1
2#o��z��(y��হ�n�q�T2��Tw7�L��1�13(n2M��j���72{�O�X��u�q�K=vL��/0��ƣc�#�n��F����K7��C��g?�ٔ�R�����+�g`'d3rd[�C�Uh+pt��*�W�Y��U8���I3�s8X�[��}�'�z˚f+j���/ڙ���y����cV䤏��j��77�E6:n�q�w����ʬ��E���[�[(x�%q��,��w�t&�O�v���͓�V[�nj{�K�YvRAಠ����J8��U9�ѱ���>�r	u3��)�r�ޗW�3��g^���@,K��NPn
�ֆ�G
P�r�\aĠ&{!����J�DB�QA�K�.Aj_,��x*t�G
���oF������9��S\>�\�oii��Y��;ѓ�6\�=18Xφ1��7r��b�
|�&��)���y��a�d
�?�l�T�{#����/�|¾�)��2����&���fr�&-5����Ʋ�X�z��v2%��؆_L�0gp�'n*��[�8�1���ͱ�'�e9|��	T�7b�T�Xh��]�'_$��x܄�|�Q'x�M��}�6�%Ƅ�c,���rk�e�U7ģ�LU�V�p�,�ԤiA��yϞ=����n<��x��={��Z�	�bɪ'q���[ܼ}p�lOv��i��U\��&VWs	��'D�6C��Aꬻ�R��A�h�J�K��?�j>��+���W�[Lݠ�S�T���'|TWC�T�z�s�Q'��9��y: L)?_*���IN⨿� ��DK,@�N�0��9&a��tr���Xh�Q�,�X�gaa�nu�{���9�N��؏�or���v�P<��c�걮)7�L\Yu>n�-6GL��-��p}���پ���q|�?��+�0MA�Tz�vf�»�$��h�)�b����2G������	�j�}�Rk��#�i�nfi�bJEI�����;�99MW;��s���t�m��{���5�v�@)ōK9k�`w�Íox[��wT�
s��-�g�/T_��Q@�
T7�7H�����*��h�	:˫����<��3���f�l7��M�����
��@NH
��a�|�h��M�����2�*��=L��1�C�!p	��*A
��b�wRHs��SGp34
�&��T�K�Ǯ�ML܈a�΋ϓ�����3��	)�E$9�9�
��EX����hB܀6�7̘�j;�7o�����9��P~{m����o>_Y�;/n|�ş>���O��m����f}�^���:N����¦eE*��i9�&�#2��lg-B�=6����,�#Ílg;_̅��f
Z��K'j�Z��� �ow-��-�)X(7�^=��/
4�o�Uq$��!r�@�W�Jݨ�pčZZN�fM���[��TkB�W����?J����z�7�n�a�2���F�
:����Y�·&��cp��#�Mr%�{idi���ą�ǧ�X�=�:��-��Ѹ9C�l�cw)`	��l�C(�=_C݃�����9��T��'�	.r 6�t/@��t#!����`��؈��r���w�1���"�k<$��.V��9��́+��_�8 n�zqP�F�b�������b�n�9��&�<�G�9��4�9��TD��v�������)7O��W�w������?�_hޚ\(lbu�>r!v���F����vy^4Պe�M����%l�B�}(���r��٘��3�	`[a{8d�
�9�d.3��j?o:fV�n&�ȫb���ġ�a�
'P�̪�uX���eݙ�7�{�o��
��
n�<�<�����n<�H�i�i���
�`L�S�a��
F���6� ��^�x���Z��^]P3����`P���hj�v"�ystqɝS��f�,���,�T�xgn�y8�R�n�����!�}��L��(97'�g��{�^�S1#G}�p
�8mP�>,��d��;�
(�x�5X�I�mr���ň�J~����W�YJ�2:�,eԆҀ���D���,� P7��?������ҽ��E
{�T��
\o�+��_콸�|�ك���7�f��_4�d6�=���!��e��%��h�WQ.h���:�m�$H������A4&i��bG�X�V�=��g��F�9���J���̣V(Z9rBs޶�\3��l<l�gW�Z�7	
�y��	n�c֮��m7��3�V|ܔ���3���5��5@�]ߋ㫛�^��]z��d
�[�@v��^�3�`�&;(s	�M�Ͷ��L����4����%8]�?�:�[c���[����8��85Z���ʇ�����/���	�G;���<:��7D�����ϥ�6�c��zᧀ\18��� ���-OrCsq�����]1�i��f�AR������?�7Wo#:>2�v�A3�)�"'Shbѣn�yJ�8�
�n� p��,��Qt3��di���o�����ޓ����ot����0a����}�E����N3�����3�eT�
��X,}7�q�d����Bn�7����fN‘��&���1�w��f���5f�-��0��jXiF�k��4����y<?�����a��L�d*�M��Aq��47��uC��\��JTW�6�p���#��S�H!8}7kW�ҎU�j>�F$<(p�nVX|϶�bd��{)C��sB����ˏ��r����?8��u��*��|�H$��7����/r���|	��s��jC��=x��߽n�.n�U�6�l�oI�#����NG��1.u4C�B����cP��3w�`nxwRa���l|̹�>��~�O��p�>�*��i�:������M��ܤr�����+izIcSV����/�����/�C���o>���(�M�+{Gh�WA&Vrv�ә[V��d�e�^�"]�^MG�gܵcVd?Y��S�z�ڝ�B)���EE�άt���b��{`ϔ{uN�p$�y�/���D.�('����ն��NeFæ8��I�?����T�\\9MY璘�Sꦬ�
��\Ge�gD�6O��q7�Zݨj)�hv.g׬�Ԩ��
7i.=zK�:�=�V똳�Zr�D���3���Z�U5嗖G������a���1����p9��(�ܽ,0�q0�������=�`�)w�'���	��:X���(3��j�r`�&��/5a�:���O�k��{C6iFaർ@�\V��/ݼ}��ϳ����Q�>;��W\R�]�eu�7��ԅ��;ND��a�T��ێ�܈4��vW0�������7��{Z���sI�
�_2��R:�αsX�Y
�hb�/'ވ�f6���َT�]B%��Ɂ������mD�qcضi6K�����Ҏ��W�4�Y�>�7�p5�ss�\2]�Պ�[�k��Dz��xS,1�Φ�a
q#�b�������8f��nt)�5������_���[ i��*-l<%�<7\Y��)3���!��h��G��W<�U��X�LW�s6��*lf�����aDs�4}�SY��(\�m���?|(�q�N��G��l0
��2�
���z��ȯh!}��3䛞��U��K��4^L�/�$$�����ƈ!�P���h��+1��|W0��\q�!��P�f$��ۻI�f(z��psYR��ij�9U�nw2u1ԍT��P7�v;iō'R��>���@f���F��}���}��1��M�7@s���jiL���0��1X��2�vl6e7���c������k�d�%���q�T��4>h�;�{p�V��_O*�ZƢ�	9��t���v5�mRV���,lxh�x��X�%��He�z:�gP��2G��hܬx��.n։��ùv�x�a���ƍ�GU�
�kvTHLpCˋ�Q� n�GQp�K�W��u�\80� ~�g�3��!u�K3�������v.��r�[ә�ˋw�,80�'��g%
m��"7���v�c��v�D���t��k2�na��\���#�g�,�y�����B.y�\�Ȯ�~�\	�
[�c�'�ϒ
�Iccћ��s�2`cY
8#�
q����Z�!�nr�m4mpl�i�j���Rj��^�@�x�|1��b�1�4�:�9�6�������e��}{�OxI�X#4�ϧ��zrbf5Vo��'f�?I�J�̽�Чj�,#t"LĀ��J����n�T�U�E�썆���M#�6���Zl��S1�������)���]�T����.�phL	dl\|7�m2�Ѹ��as�
�>ύ�_�hب7�{��u94J,	΃|Pbb����M�f�g�7?���O1�W�"�#������'듳��0��������#�q��
Z�l
�����:����L�t҂G�m:/��58 �垰�g.����-�1M�k���_�|	��\�M�a��4Dz�
�Wgٔ���F��՘�<�c2es5���c�K�����Y<�i���h�Va��V���Qt��
�	B�1��ex�W���
��i�#�6H�m�m�i�d�bΣ����MN#���V:QO�f��b-�AL�9S,����pŌ�˨_#��M$�U̨*�S�/7�*�h�z.
筈�j�f2~ШW�x�(H	a�]�qUm����}i��Z�Q%ꒁ,2B�.MBu�e�ɇ5�J)�n~��R���|uþ��
���v�0g�L��GuY�
›�G*WYwC��
��~��<�PS�����ILd�ۨ��Z^\�i�����e�2�O䄽4Y#��4��4t��	�B����%�	){��o$97�>�Ш�Q��n|H�=3#���w{���g�I����������o!׆��pیY��,�������Fi�ws��M@�d���d�1�S�I�����^�+��Cń#�C���f�pct�1��nw�6)u��.pÿMG����j=�.�?�"�fm"�2̃���4[�FƑc����˯͕j�f}��D�d�ؘ�5��jB�%W�(A���6��0G�m���pC�‚�b�T���{�b#o!7�v}0�'؜�n��SR��q��1>�ɋ�w��Wр�LA�6�V��yxW�澴#TA��J�I�++/�븱qult:
��Ƕ1���3��/�[zp{��q��~E��OS8���mY%j�O����Q;2�}�9�̏�oXe*hB�~ό!�F "��&�k��V.<����?�]ߝnS�y���ӿ�^U��v@�a�6�'�����l<�Mps!Z���U\h��坘� ��n_�%������G{�%.�&@���u$ഺ�v�e����q�h�Ȇ?���`�1�vl/d�fI�r��U��a)�r�íX0���q�A8����d3���ڶ7�V2kZ�.�ff�m����#w��6��	.�������)�c>�e(n<}CC�w��עn�z�R�hy#�!�h.nd�6�.�12%�a|
|�G�0a��r)��70����Ƿ9��HCV�|�ء��65z{����u�����م;c��B.��ͤ��p\��ҕ`�J�W�
�F�FN�}xH��y��d�ߊ�;��_f�c�����j��iP�K�N�	�\���ᣗΗ|��kD�
u���������!l���#wRq�뻹@1��!����'��"X�D�E��0�A�Y�D�Xui�y�n3��H���D�C�h�جce��e�dǀ�dz�Yÿ�F���(������>�{fİ��ȗ����E���X2ft�Ksss�x2�7�‚5SJ9vr�sQ�a��]�i�{hC�H�8���+AS7i�t�K�1������nx��2���
,@�
��	o�#SD��E�V��z�B��q�)��zU�h�}4r�5����k�M�Q�a����T!���|yq��塩�䭯AΌ��xaa6�Y�:3�Ƿ��t�lhG�+B'����ƈ�	p|���.x�&��Y��܆)�W������'�ɮ�2B^��e��%}�W2���
�B#�t-r�o�
դK�h�����/�绹өw��L�v���f��A+]LV2mt��ȩ�Н�4\�51�����d$bϯ̷�w��7�#.� 1-2��g��i''���S]��\�X������a9d���F�X��V�=8`8����;�6��5�n�>I+�;S�}z�fU�a�3_|��d�Ns��d��!hp4R8N�ȝ�'�H�6��PI�4�_�tG��i��:����Gq��y������13�č*W�dM.���%����T�
m汥g�DR�&2C�RS).�5{{ljjc���;�F��ۓj�H$Ѫ�b�I�K�EM�8�N:/��ͷ��>o���w��[�a�m�'ò	��H#����Fm2�և�<F�D���l�R�岗3<��!�#��W�Q7���q-J�����aT7���HZ�:��p*A�C4d*mbc��
r��cU�������?F�e�r�����d�����+n�"��͋�s�تۖ��Y���v˩0LJA�Æ~R�K��
_9>$�@-x�4��+�[,�� �Mg���\c!��Vg�`Mc�?q��/���	U���r��`�p#G��$?��]���64�l�������ͤe�rS��D���{�}����õ5Uȵ��B}�ο2[
7<�4�I�,^΍����|m��Д������/�	aYTB��f�`ӊ������%3���$����xx���ѩ�|�̰c�'!�sF�`�ߓ�O�J���jk��?���sC�\���cډ�S����7e��.n.�"S0����N�
ΌD���7{nG�����?Z"�F��l���^�zg�Mi���w7���@�0�!�i�d*fgg��lqը����y3�-T���uM���������4�6��`����;;_Ldm�h�QN�C��O��L�s�Zr2��uʉ�j�X
�勜a�3����F�y&�Qb'�o���ƋJ�z�nhA��&�O�}�y��L��jD܀6C)O�ʆ�i��8l׮��0�^C7r�%�nf7�Ʀ���ؾ=>v��o~��Ue�Vua�MՀ�Ň�����5N�4�4f��q!w��-��7�p�ZF�`	w�����M �-���"�Ő�4_�p���0 _6����7iQ̴�3(#v��&(q�R��F�#v�]�w�.�fs�p���8�"&h�bE���?�@b����}L�"X�)pJ��w�;�M�+@U��V݆y2;ݽz�)N`*����I'�a2�
Nߝ�=�H�g5���nl�4�z��׋i���J�b��_��(�js�չ��U��B�T�Р�X�)n���ш����]�y#�g���lJš��]CC�b���„7�M��FcFP�M7%dn�\��pZ�L=/��>�ĬŢZ"K���kMc|j�nj��:�z�����X#,3�7�LŭTn{���J��7������HC��n�X��q%@'�9}��6�w�n��ܼ����c�z�	�0��e܁��8���T�D��t��x��t�)��5G.��B�����ŵ(߇���ޔ�ޥ`F��b�ݼ�Ni�4w��v.e��@�%�a W�7�b�f��v��AGq�1U�Աs�t�tmI�|����
�Ga"��z�[����M�4;l�E���\Eû�b蓩��_�0��\���ﴎ���HȆ��؞(�'J���n^8�[@�p��^O��kU�ɕ�Gx�n�*a(F���)�h?�6��er��5\�[�
�
��R�&��Py��T�OE��4p[�ċ]�VVv�4kMg�.1�.���`�!���GF.�؟��eH��._����0��N�`� n𠚸������[*�-�xt�9��Y$npq��|)��=��6?O2��&�1��v�=w�A6��=�2��,�#J����Ƅ_��8u�,`6��K��Qu�V���I�j���QT1�ws��F��M�4��
��N\�R���3>��6pc��ITw����	�]����t�G���Q�әo9m8��b� �eRᛸ3)��d��odcx�ɋ�^�n�������#��t�E��Y!]k�����J�|��	C�Mϕǚ �t��PӇ��x�R]�Uy�y�
�Fͤ�����Sn��CHCM���K���s��a)0��
��FI���ħpH���gP°uÆ(�d���L�Y~��]bur|��Ij�������֛w��nL-�y8M�	d���EQ<���U@s��j"px���L�+���/Gpu�����b�~�����F<ЏhrVq�4`���o"qn#l��<�B�o�Rj%��g�,�h<)�.�V遠8w��5�J��|�t�W���)��m���_d*�Lte�r��IR�@�J�xp]öղ�T
��P)� ����~�r���v�� �|�p"�H*)����
�>�����c���Ÿn&�~46�n֍f��Ni~�N�Hg~7�E����v.]#0&Jgťx¹�_��tx����Y/r���EBg�8J�h�M0߆��y�tEW']��y�g�[��lGϦ��Ԗb��ghJp��ze>���^.+��Bf=�*�Z�p������e(����qCm�
M�i���G_���J漱u#�N��3[�o"B�T�q�!2��Đ��<�'��&`	�5��/y��Hя��ٿ7��g	���w�����i�ca�d��(-�W'� g�ɢ�$���D�q�\����ٗ�}d�6�,6~�	�N �����ͯW�X�
ۖAgK��_��2���R��A<ܰZ����׬Ȭ��
��Y��6b���p����(pP�٢��WX5	U�&;F h��x�~��J�C8���^_+�mȡp�n$��[�!SP��T�.�~��B�Gj�M��:�� ��A%q����X���k��YO~��HG��ad�5�!��
lk+
�@�`PQ*>e�ּ�BB��f��-�,�E¨P������H4{m�*&O�
8��(p#�������
cw��Y�	Xiɳ����
-m8�����$ۈ�S��0���M�7�-^/�X�!���ǽQkWϼ<�$4zIZ[�ő�ڊ�ɬl;,�JaZ���F!�<<�5d�����s�Gw�O�?�6&�{�;�؛�n.J�����YH��LN��db4yP]�Xe�
�a�5���*Qh��nE�/�Yk;Γ^l[�
�H"�nR2�iL��2rY���E6�~6��a�9~��ހƩ���{I���tBo7��NFC�s��Y�)q熳�k'��K�>����:y�jl8�6��
Q���o�*?�]�809s)��i7�)ޤ1[����
�̌�F��Uv%�d
cvw�[����w���}}uUݔI�4e�E_�3:t�������d8�ж�Z,�}���F:`����
q�`8��Y<�})��E���)�N��#G3�\d���"��E��J�Վ2��n�N�0m��:9ȚN�1�8�#�l�dM.W(������9����� �UP��%N��8l�>>#��k�7�k��`��|7���z�Ƨ�
�)(Seـ
��=�V���UI��[�J�"t������⇖�`���:G�I]��8�
���&���π��@#j�QX���2Va0��B�G?����j�0wʵb��}��	:rNzo\�r����8��8��/p2��~�?�.��a�e]��.�f���%rԲR@
��8MYBM���N�sÝ�̯�U�@�&=��y��͸`̌ƫ����Q����3��?�=>�<�pzvihz�F�p����sn�:!�Q����(ڸ���	���\܄)A�Vդ�,j�xכsV�����Ɇ��~:Z�7��
�رd��ι7-�y�a*����moR9������B��\O2E�s	�XR���~P
c�FM����
F�.�0'8�����u�;Y3�����Z�XSt+ߊ�-��v�Ćic���V������G)�@��.BỎ4�Je
Y�;L׳�I�B�̥T!/9D��1��?c?�Ll�	�i���S��4��vJ_��B!��f���v-Z��#�����~!+ Js=�)a#��ݯt@ F�^^���Ǿ�@��m<�x,��fP�~�""f��2`�`�d����	o�
�
?)c��i�T�5��4s�e�;���MIA8����C!��,�U��Y�`�ܟ}sa��n1b����܈-J�	7Aߎ����0/�߸a�%�fJ��т�8+Rt5�=:�)Ph���B^haԏ��S�#�8�dM��Q̱m0���
Z�4��1���p�
��#2'���Κ�+N�C�����z����E���+1�E�-y�l�~1����&���j�ҹjʊ�����o%L�؜�͐J�AkF�e[���;��!�p�_�`���	f���P�XM��"����������$�s�}h717r�ԯld��n���X�L�'R�&l֋�K׋�_�}�����!o~�(�za��l3��F�]�o�W��Fp�ujIX���M��›(�$w2���L��U*#��\����;6�����7���	�fU��JS�BLi���f�q��Fj�5l8�|�,�ٽ=7pF���Cn7<z��H��i�PI>�;�n0x�j�JQd0�)A���󤁃!Л��w��h����n�<��p7o��Ii�1���X�F�Q|��g|��CT8"v�c���"X=��OpZ�ػ.R7�w��*��9�n�Y�mr
�4��W���1��*ĕ��v7�>L`��fz��t��N�i�Nk�7(��ٱ�'F�bVE��U1
v�_0Be�ݲ�^/�eC_��s�?��];5��N�ٸר��M�Q-j�����7�7�G�^����i��ҷ?p�H�5�/|���7(o0�(����G�:����K��4��%h�B�0))dz*�F�4n�40�
���U/
�F*��%�LW�Jq�Q7̸8����wA�P����ӳ?������7g3�	~@��*y�卥
Pe��C�t�T����\��dP��fQ]�N�չ����`��Xz�����`���EaP'�BD�Љ"�`����q��Rۈ�E6�W0�
�fK-�%�tZZ�4�7hF�C�@ۤ�>�Z|��Bf\t�=˺�d�r��
�Lbnb�F�'w�r��Z7�����{
9�3e�qE��e�jnn�r���pņz>��q�ݭ�v��.9�}�c>�m�f�0��<���Q�=o(��B(dA�D����tB����wˡP��
�v��C�TX�����O��l�:!qȓ~��a{
�#��O��Ө���䍘�?l<��Z fvb:����L��b\�f��F��e'[Y�X�hΣa(Lu��@�j=�7���7#�ύ�a�9<T14�%0�zxg|���72ځ�y��K�Ǖ�a>!��x��l8rzq�n��uh�����f�y��[���^֐��A��+r-f�<�֗V����'�g�[��Ex��(�`h4v;O��0E$����P.��8X'
,���{����M<��zC׍��آ�:� �y06z�΅�ݜȻ�>��[�l�R�C5*��H�a��bM7��&��Q2Y͘H1�"L�3`�a��=�O��v���Ä�v��̝Mh\Q�~�+�dY0(�$��@ˀ��ڑd!�"�.%X[D4� *)��q\$�i)����/\�IJc:IA�Ae�7�?瞹}����w�}��y%?�=�{O�����j�7���I���A�w6Ïk|�5I�f�s������(���UQeڄ'ZQq^R�3�ؼ@Pr�p��h����Pv݈5@�SJO��?e1,S����E*�
"ܦǍyn���w��d�{8t�d�sl"j�2:uf��P�,\�.n���qn-�KO	7?{r���~��W.^Y�S�ˬ�q�.�$C�z���M��xʁB�7�o�7��xi�X	�O(^UK �4�'^){���
g�ֶ�ZuQ�(����Mh#����`��ŏEP����k�M�]d,5gbtŽH�I�Š
4�dv ���.�9�ݷ��
i��s3��U�f����0�;5���2�91���m��1�Z�ג�hN덕��Ysl~���5!	8���873�i2)�����N�x��s
G���l֗ڭ�������ޠQ��X념����&Lظ+|��q����D,v�ͫ�ԑ���1j�t)��G���ȰA�t\�w�2�����:��.	����P��O��&�w>jx�Ge����Ǣ+}���!T��K�᫣ۚ;��)ޙ�6T�6$R8�H���;p�R7>qG��MjRA�
�6޲m�֮\W�4e=���n}�w�X�����{�{�w��Ջ��$x�:n[E�����rU�c���p���n�:���[��)EW�"�֪�J�+E-��R��}~'��_����[�3ώ����9�9� N�8�	!��^��ŕ��~oQ��0z�ӆRoo���c�,*hS���� �$�x�r�P92u�~��9�!�������7k,�n	�5��>~�R\��D�݇�C��_4g�]�l���(�m.�*����?}��R�В7�#V�@��>,u�ɉ�j~!VP�q����n���q��s�ϱ�^^EO��ok�E�6�����c)
;P��B��ڸh^g��u������s|��`�83Z�B�$��4Z�ض��������T��j0n�
&4œ@J���<Ϊ�t�o��%�ɘ	� ݹ�Uލߘד��a�,,���x�c��ۿ��ae�2n~�!p~�>V�F?q��D��`�1��^7|�x`�_g��K�%�绘q�a?�7��'�3�ɛ��:*t؀��hptB�9B��ӓA���@���q��.�<wУ/2}D�q��u��ux��(���9�"Z�zi��sb�x&E�n�����N.v'5���wm�xu �UFfn,6�'z��7���͍���^�{x{�u^V����:�l"�Mjq-M͡o�%܌�7N�:�285V�3M�#�e+�M!˦6�<?�P4[��|o�w�>�}��ű!����Tn�Oy�o�8_��S��C��g^�k�A)��̾���4�7�
�I��-΂3^�/)�!;��w��7鹂�T�H�)x��9�7���Z@�_�ib�	�xp<A&1q`c\ux�Ὕ�:n|yC�xC��!�([7�j��P���'(w�Q�M`>8���=�Djpp8u�;:���� N��5<��'/�[Mm8�X�t˜�`��pC�\-6F��hs"�p��z�?쐏�oԭnn�ͳ���B�J�kMM�;>@k��8F�!n�NN��2w���_�L�X����^�_��C����>է�voq����)~�*�G�[/Z��)"W�/@�;���q
��e���b�T�:@�g3�Ӻ�3�p
�A��G�氍��꣭k�7w�]�l-o\�Z�3Ό�f�|���������?v�"?!'p��f�n�r�h�I7����^���a�ا?%�0��F�8S
L�d�0T�Ph_��N]
%@=b�uy��u��l2nV��*��_n$w;n�M/m���w�7�ݩ �޺�,OC�j���3�
��2����&h�_��P��t��͜�|�{l@J�I͌FR"���3ytqkt��n?�A�96�=&#X�
��
yjj�E'��AS���:h1
���#��S����_��?�����~�0l���%ㆋR
N�f�"[���F^���s��a'���ҡƚ��f�� ��05Sm��!�������u�[�}�2e�0���i�"O�],�d�A2c0i4}�n�̈́�#��l%@Ǎd�iv!K��%v����FͳN���z��X�ܽ�z������Ѡ
�s���>�M����83)�����A�
���)�6��-?�{���S�6m_�1|J��z�&�l(%̐3nn��v��jľ���@�#G�%��)[�3.@_e�;�׺��Mv�/���>�V>��x�"s��-3ϥ.{�B��z.���֭��\|��/~�g;�!c
�o�d-��d�Jz�8N��������u��L��@Z�FЉ���7)$#�P�Rz_A٣�-C��U���̡15C�̌
O.�����
0����N�m����qω�2n>DҔj��d�z�W�K�������>�1�U�<7� ��f_�g�<���P�n�,-{>�Z�(3���7lu���W�ot~��[+�u�����̈́���nZ���cT��s`��
��q�
X>tv�:թoLT[M��N��wa����k��7�^;h\�8�wwPl~���q�R�����6>�eph�|tk�`��hfq�Z�'�������T�mB4��ac��`�P�'�A�NZ���NgM(HCR��b�'_��K���}CͲl
Í�s�΍��hht|����F~^�s�-(Y\J�N��N
D��L����$��lQ#�nh ��B��b�_�-�Hi���T�k�@�1���y�":��1%�8�of�<V�#~$�؉ܸ����W����sD�NSy��V��S��\=.��$�ABO�3�oEe�Z���WS�Thh:�qå��u�͚Af
�|��u�:���w�um�zs�����Λ�6�m��9����Mm�]��`ge�7�<1:8��`u�s\l��U�$�J� ᒪ*�XȨ�c�>�F��j���H��r�˥�A{}|z�s��t���,oʗ��^��>����-�R�?]�8��A��&����%m�y�*P,ԙ���ͣ�F����~�	��6\�Ma^�'�<���k����}�1 ����gHd���&Y7j8h>v��X#�#"�6F7JVhS���O^'�f%Yv&%��*)��Ķ錖5�{c���#w'��R�&%����������B�?���1��m�n��]`�+N�ycfN���%5�ԑ��/9�
r��M3]hQlB��,�����ёe��o�������
��V��*��s�
X#�&p#E����#�����k�d�0k��µf�R����6PK�Y�� 
���T[�\�p���Ҽ����^���X~�ޫL_�9&�C�osӪ
ʢ�OM��`�$Q�@�*r�.����O@>����x�U�P:q\��w�>��l?>=W��fc�)�X¸�R4�Y;��k�#:8j�����ャ�*胓]�;�����9��x�ǀ��/6_t4�$�h9A�`��X�/�V�H����mE���q��ͦ��=-�ʅ��I�,�]�3tɶ�|ps�猪�o��AcY౅9��m#�6&����mh;n(�l�<�{��0֭{�u�c�}��º�
�UW��,c�l�$��"�a��M��S�M��7��{�
�)�E#OtS䁓_�;l��H�{X֫ar���Qv��ӧ�s�<�
<�
����8�#�q������Ĕ�r���tb�f݇Q�nT����	o4�r��@б�Z�A���D/��9�7o8'��k���q��S�0z�/�Ja��
w�>��t�>��u���PTA
�0���kl��#
F�*�)�
}>~�\��w�c��?�b��
��m�|*h��j�D[�vmc��<�n5�6<er�ѐ�;�/u�l���8�������{+�ٺ]��x���~�?7�
�Hrܔ��ӕ�
L����.�(��C�ֆe3����(�A���ۆ3l�t`&�c[:}�c6��S�7��vE�`�(�����pV�mŚ��^���T�	�F��T�F�.3�[9oP�&�M�g��9FO�n�gs'p�,&_��0����a�p%hBz����#�'���7Y�A���"S����y�v�\��l�]7����U�m�\����9��
#(Ǎ��/NpC%QG�D�{8���"��v�l����J�
6�c�[p�����5y�#�u%Ɠ�U�٭.R;#��|�^͙z��jcL�I�
�Bq)��6s;���o����5���1��3tZQ�sH҄J
��F@H���Y�?��q�{�cO�+�	^?�@"ˬJ�ǚ��ȇݽ���i��
-Q���lp�iW���i�5�t����Ɔ�"�,�����@�w�n+��d)�o#�D��*ae<��)8~�Ȕ�����(U�
f��ه3�O2g�dc�kb�lj
����mÈܺ�lI��[��vÄ�XoP[���oCp���S��|�d������.�1r'� ��#%�F
5�jb����dg�{f�\�Z�������7Uxw4�(�Ae9Y��C�@8,�i�Mtq�x����fƔ`�;Hy�����p�6���=E�O\>B*<�[
ᦤ�
�h(U�8q�� p���l���iA�?�0�n�Аhy����P"��?u���7��0r�v�ֻ!_�LU+3�ʅ�q�*��5c�ES�5�X]��[��T!x=S��E��Z]k�){�' �˴c�y�w�f.��Ŷ��M�~�ZY��—+K"�`��s����w�Ҙ��(Q|���
f�g��q����դ8���~g���w�7|u�^c0�{Oc��Bw��K��E�A�FeG�A�/vl�K��7�j\�F���2D�6.v��y�/O��8��2Zۍ�
7��ypC��&_��K{*|,ĥ�����)~&mn��¡c��h2�2���J�Q�-�F=�����;�w�����bE�d��
��2ڄ�Q�(�s�9D��� qܘfc8�(
ݤ[joQ�U�{�[Y�jy�S�YpSǴi�E��I
?���P�7i�dt��?uz#��QT�঻nDqY�L	%�B*�9H�+.��P ��;=�ӗ���q�����y�˙zeVq���b�-,�߹�6�y3����b�ݏ��-F[B�pn\���4�o4tj*�J�3�j�PY�K�ҫ��yv0�A���Y�,M˖o�lҰ�?�?4Pʕl�1���ٰ��C���è5�hׇݏ�*ܱ�q�A�PV��jV�y����77_2+E*�&��u�K2�����^ejZx����&{7#d�������g����m:�M���m|@^��F���S
�n<nz�	䴱8�^!��G�����_��=��h��gFn�0g8E"y�@��vHO��S�)��i"}��3σ<����(Qò����ʜ 3+��c����x̀N\(7�;?�6�h�K��jn��q
$�fݘ-#��9o���.x#n�sbA�L�T���ؖ-S
WG�0�YN�g�s��v=2�}�t�Í�㖍�c��X~��L�k�	�qW��p�ltU�$N��tN�N�TL�+��Y�dX���Y�ۂ#f	+�	p�%GOO�|����t��{��y�'�v1��R����8E��_���E�jb��?��s�����UQdk���1lpj�&�M�K)ӆ3���k؅(d	��6v���Ï'����m��}�A�p�0�j/0�"\�nx�e�����8�J�ԋ��7R�h�g�H�f�PH�<*%�h�#�r��<�P�+�KE}a��g��} 3��vLj�x.�#T�!���ywH��G�
�ͯiԱ�0{TH�P8oh��5�"��
�␨2�J̱عh�j&����H��N"܄
��A&	�6F��N2oD#�6t���P�`bq�nC܎P���n���}���$�p�>d�9_�o�U�w3��,�M!?�`cƊ�K]��fo�T�I�)d>bS��l���o�/ C�ܵ��d����QXez)h3Y�}����R�L��6l3P[}�mD��jqV� b�s�f[
��a��峂�/l�ր��9n@�{o��E4<�R�Q:��O�ŒK�c�0���R�*j��k�r�l/:-��Y��۹ᦍ��Ԋp���O�����(TJ��!2���妅���m�9�P�̈:a�$$%� �\�M�6��c��^&5G�~l�P�����e��Y����#�,N?��q�P�m-j���S=� �<�z
Ybw�pK��Taj��`(�y�p�#�pY
�7��h�O�M���茡��t��5��#�+�rJ�?8�w�J�W6uhpRd�ܬw�J����Y:����R�X�ڥ%���Ya��e<��ab� ���l�
�o5E�Jw�b+��O��SИP�PS�[MO��,�ӂ��*������~�x��k�?>k�k�0+`��Ӣ�<�
I�+�66)W�d�7	�b��OCL�q����r�pY�2���DÕ6%a�|�=¸r4��e��<p"N���\7��D��O��<���{��6#<2� �(��F#�a%<�R��	9n��Ђ(�5��O\F�X�xY��J�y���r��Ȫ��k�IW��5�>䠡ߨ�t�\7
���o�Hѭ���A�̠��v2lq'�p8n8��+��lh���q�&��&=�W��c0�]�
���m¬	� �'�������6*n�J��M�6HE��&w����j~��U��?���
��F"�=)�`�7�ڟ_�5�
ɚ��(�Ҽ3UaB&�ꛚ�S�Fe|��Nsyނ���,�� �㊸���*�t�R�x���q�+ѢU�?��3�]'���,̀���>/謁0Ɖ0o��F���9�ɼ�9SŒ9Ky�=�ig��l��k���<�Jw��sת���f��
�L[7m�C:�[�ϴڼ��T�=�볍Qċ�g�R�}5?B�U��zI�Ȝ	��0X8�Q�FN�%y�*D�p�n��7A&�aR������f�b�R����n\�q�O����L{����-
�Ec�rU8hj��5��7G�v�DT���r�Џ�Xs�
�h���g0%h$yNf��KѨL��ŠQ�:G�ȃS8rPz�ƛ��z7o([7o{�lŬ�	ǂ�R!J%�E�)L
�R�jZ��b��Ͷ1��`�lΥ>n>�+�.0x3��R0��6�z�-��ȔK.�U�
�/V7�g���(7\�6y�j�����-�/[���KS6�m��0�;��b�$��-��^�3��� X x������2[��=#���
����U�i�.f� 7u�
R4%G�Pd���
]�|=n�l�j}�2�V��cYc��Yq�,p���4��t�3#��0n|H��7��t�/|ŃJ����Q���A6^~垙���
�	��nr8�[F���x��QCc� �WF�l�Њc�&�x)��D�r�8k,%��DK�
ʾ��Ę���+A�}�L��ֱn���� D3W��EJ�b
�a�p�
�#�k��WW�{�;'��k���TE�h"E�Y�S�E�7�BT����)�/Z�D��J|
��$J�.����7ʫ�����i,�p�*��.!
����W1�Gۅ咏�i�x����մ'w��?y�$f���K�]}�h�l�]���q�aҍ0s_��i�m�6��eD����dbtp�����(�8��	�q;�;݂��U?�d����q(�t��t�"��ǎ������xCcFK��Pf��b7�0%Q��q�o�4	8�{��(���A�� ��F9^�|�$�x9�F�8���Y�-4�j]��p8���v�}:��6��q�]�ƒ��x�QW[FM!�M��i��i��V43kT	6	7�0����OR&�U1�����I+��k=��������:�����+��%E��j����7
?�v�1��r��Xe�^%pTm�c{{c���E.E��1n���[��O+��	���%.<���Ev�4��a=tK�R�n����mC�Lj�Н~gx������j�FDs�۸c��U�M�i2�dL�5�Y~��g��@�kw���u{��Mװ@r,̗��ؔ=K�6�4v���QE�A�ޣ����.�&���sl߰ڶ�X�(Wf�����%�&=��Q�R�&%���7YJ*Ϻ�D�������E՟����S�q��fS"�;s�YrT�
��
��KL�_� Txk|���X9�8�n0M89䅉ђl��4�MQ��p�=5�t�]⸈f�$��%+G�I���C�aW��^��pᜯ�n^[͏5����)�#�,�=S0T��Q�^��#nE 
��^�wuTȇ���heu�''��,$Æ�dU-A��1��,S����e�洊�pH�J�������o-l�w�6�.k0e�XO���(��B�f��ʼn6a��L,��$K�E�#>��������<BŬ�m�)�%�h��W4�r�(ca��㝖Z9S�n�}�B�`!�	� ���E��}f�<�.�nD�L92%�$�$�F�wk��$�tQ����gF��D�N����/�F���!�q� Հ��!.u�B����>���lܨE!�8p�2�p��(�v$��3�����(�F$	���?�3:�<Eʚ�qޔ�
D+��'�4��,�cGJ�r��*裄/]{���c{�^�_8k����ߐq"������Vw�s)Mh#L߿�"��v�}��"�
��%�E�v�Γ<ƘB�g���&�F$�^|��m*��8`�j\���:D��li���Vxt46:�-m���E\N���Y6��,��z�5,�h��m�!�C?4-$��f����[�,m��hi�O_�dg��!��vt:�ԺAZ��x�P��^^l,4̂1�<��(��,��MgP�@���ɜ)G�d�9�%NѨ�K�0|x��X�Sͮ�&��$��gɏ�嬑²��R
U�j�Cf(�Y[[�[=�`V?w޸O'�h2tTd�����.��A��O����`HFBG�~ŭJ�Jz]��,��n7�?,ui�;�]�
�i4U�����%���\*n��S��s�ލ�e���۰��1)���D�65^i�e���
]��W*���#�?vF-�.6���5�;F�x2=SYܧ]����|֭��Qv'�o�R:�f��e�c�P��Z�Y�G+^.]�Z�n|Aa�DR�)bG
�{d��p���)M^Cj 
C��-;���c� �u(�K[���2ڹ�.B]� �C&D/%��U���,̮.u�Ȁګ�8�4lRh*`�m�m��q�o�#k�s��2�F�a]#���Vc��G�����L�,�>	eÆv4��E�lz�D�
�9w�_!�U����
�X�.Y4s�+2ܤ��h�U�8�W���E�B�%�
2e魤x�V&]�s.'GjQ�[&�&�4��v���7y���
W1���ko;���,i��N8.\��5��&��
��ժ��MF��w�;;9=}S�A%iij:p���ꗧ���6�3�1#3�#�n�&V8�@�oMZV":-J�ͦ^�泚�Ά���ltʉK��,`���k�bI���M��܀�h����QPf�9�s���H=��7�'q��ҿ$؄�y���o�E{����.d�T��(qj�=��cT騠�s���leu���Q�Ťh�<?ťr'l�̯f�FݞH.�.�僩NɎ	�x��p/���3������Ο�b�^x��!.���r�N�5�F��øA<l<�(�Pc���sE���Fτ��04�6y�N�X�1�Fʸ�C!'��	]��d�g�@ޝCR����� �W������
*[7��M�a^�[ �^Xv�����B�2�4���t'�[�hb��~��A�Rsiy*;sD$�M2�@��qUy�flB�vڄ4���	:"�ԊV�G�@�;E�[x���:y���ݵ(���S֘)��p�4!'H�1+ύ
�w���*9
5��oý�r�lBQbG���A����VWvl!b3z�#�9;lHՆ$�IBM js6�h�Д�՝�e܄7��u�E���U��TsŮSy����F�og�|�TF<*#$Ӧ��s/B�o�D�x�_�9j‰���4��u,��(�ǟd�ƒ�`J�Vx�w"N��F��I���zϡ�+�n�.��5�8Xr��u�D�����tn#[6y�e�w9
�y�Z��uɺ��-i�oz0�����u�¢S0�R
(ͱ{srЙ;�)��ZL{���iE�X`W�Z���L�g��SC��bNMآ���M��(Qa������l+���#)�qlZ$�V�p��+):��R�	��|���{I����^|9i֌�ICa����C�G����Cd��f�O!߂���ގ��d�ά?�K9U�E*,���)O]�iY���sG���*�yD�I<��ͽ�|�

gY�͸�ӊ#�DW�+�U9J��E|3�k`����ڡj���%����C�h+WZ�	6a��:�A�������C�P����e�
o�r��yC1 0%��d�'l'I(�8��)���x��9����AsT�¹Z��򼛷OM�Ľ���lj-P ��c���j�5��m_�O���8���d��}.}�fMԡ%�G���1�ʄ"`�[��=4M1&��*��=��VVg��G�y�>�'�j��px�y�4_tYƍ�Snތf���	<�`#��(<�i�n���U���qlSi8
GD����$��)U��6 ����4l��	kD���y�E2�y����- 1+�ƒ�°A��Y��7.XY�Fr�)�,�[��_�%�'��}4J��,�P�~��\�̽�*�7�u�h�r(��Z"ͯhє9c��Ւ�X�l_	�$��c*%I�G�I��$�#GOɗ��rY�s#��v�.�o���<I���暴��)���Y�Y-�<ޜ��TrZ��q�7��Mo��Z�;�~�[���s�T~�v�F�mˆ"Y�,�N�����h�rPhhF����GZ���IoV�U��B���`��jm�r�����Zk׎��ڣ�
�/�N���<M`m�/�t�����+����h6����[l�����f��AN��+
h�҂�t����;32�<��n�v������a�zf�f�΀c�ģs���X�/�c�F���^�����P��L9�^s�?�ӿ�C�ߤ�Sι����<�r�$
Nx55v���]&i�3�4�a��ڴ�y�V6G��^&Dd��b�PG
K��K!����Ҋd�0�v�ߩ)��Q��Vo����Pa+�=�tA�9��9��

�Y�2(�/vT�V0Ñ*w4ȭv��*��&���Nщ꺀l�1��/�FQ����Lw�^*m��h06��m��v@�����(��~���&Gsd�����Y�9��B[�0G��T�@Gv�F��Ivs����7���HН�
��Q��0��������dg+~"���s���b>֯��i�tg�6����?�I�r+��^��t��7� ���Wf�2!��Tq?|���
���`N8�4���n���� /?��:?Nʤxp�Bz��$K���I�T�$.�SM��m�Z������]<�Ħ�����ϡA��x�<6�&P��D���w�l�7Gy�p�1�n3z(�h����仛$�_��^�g0$����I�,7��+�~��U��k?�s(�}���@d��u,��,$�鯽����qws>�ϊ��w�
�0N�<:�t2BBI$&�|��r5lZ%~~z�S�`_"o��+ʓ���6\7*��f-�<uz|OV�.��1�rW�]y�xA�yN5���
�6��]����ut��
�u��ޫ�
�����(�e��{)4��
�i��g�Ɋ�ӭ	��'$|d
�\x-��$�`��q|�Z��Z���y[>4W,V��e���
�uV4�K�UOt��B�؜��d:��?G?�o��r�'`��]�3��T�,ʁHYB�U�����i��9�N�Fq����ۢ��K�t�;�Д���5+d�5»�Gg=��{&^i�*1؅���+�y%7�._��M9�aPҗ�ç���-����
��l$$ͺ�F��RnF<�m��k�)�D8�M����7��/υ���w�9`�����7��V�����⃆�|
�7��&u���ZB�1ځ��%�*�4k��'��&ƒq^WG�Y���h{��&DxjT��w�e�YS�k.8	
����%�iY���iM�P���SV�e,-��huٱ<1�H;���W� �$X��u'��Y���M�^I�>i%��[��kͯ�l�5ߌ�ԏZ�_P��y��O󴌖T���V���)&0��JQ����G{�F�a���a �����Q�o��p�uZ/2��	��NP�YFD���SwnO�(y2&�~��
4��i���ny�74�O��9��uxTtJ�S�)��\v�E[F)�So�roX(��ڏ8�qU�RL�1,HI�B'���o���/�d�p�+n��[rDD!�jhcEv�h���a�����M�j8q�X�u�Qz�'�����WKY{+>O.x��†�Gނ�<�0��v���'<mz��1s�T�sDa���{�>�&�(�lp�M(�G*!'dQ!��_�;ڐǻ����IM�N#�rF.&
��ܾ�R��O��K�!X��ٕ�p+JѺSS��0��4��JJDQF�ì�m���=q'u{?�o������E�`���N���n��+A<3����rԖ�U��8�p�F�WD���HLp�.t���	�e7�<�JqF���˝TԯV�W�?>2<Q��j��-���|O3���i��(��;ޡ�|*]�ܼ��@
>0��T�rවܘ�^b7�DI/��tl��]�v��:�R�*��hQ���Q�\�H���6�r[������0N�\r0;�Ezxu�=�)P��y��$�֤�m����p�@3���a��?�\��H�Q��(F��Tb��5:�@�=zm�
�����.1Ղg~_J�岻su�t/���"�3&�/n�
w���%c�Q��j�Ǻʟ�]���!oZ�)��7���x�Jrn3U~�\����뙝����h-3A	cF�X3��IŸ�yؐîA7ע*y�m
�.ޓV��a?.�!���<����N
5rC>.e<\��U��G&p���8��k����ܖ̓�P�_��B�*����K'�ŏ��x1�2S����R:�U"]X�iA�}���n�v�f��9E���֫GӪT&'Z��i�쪶��}��^�
�U���o�Ѐ�!���A{C�I@���1�]�a�7˜H��
���l����K�)��}Yw�>���a�c�**7q��4���R�;�A�-����dQ+�M�9[:rb��z�xt��;��Pewn^�vS��}2J��y$��T�9��m�[����2��buF������K�	�q�P�Qy	�
;�Q�i
�dK��pǐ|qz���S���R75�1t���>|W���ir��7f�~�[���Î	�K��ù<E-<F��5oo���<ۂ>���eIx'�{'�V-�
�#qǠ�$��E�k��݊kp�4�%?qY4�u��4���_N~��O�Rd�̏@!�>mks��x�� ��8n�|ϗ3�FTX�
���Oan��*K����$����+�g��u\.��JI�"	v��y ��lN���{�V@)0��M@�d�EN#���4�㕮_�nG��/�n7�����t���_�.���s�W���;��?}�F;�o�2��tV7�y'f��Uen���]/�
)+Ee�AI�6�ܽ�Ld!����D&��PA6�w,�T\����>9����uM*�C�儣��}tz�"9@��R�������n�0�'���!| ��]�憤��kY������@!�Jn_Ԥؕ)�/�\Ām2<��y�H	h����jҝI�i�N��|��T.e�����tOd���;�+��"�����1=�����A�r�a�xc���}��޺�^�����1Y�*�����mťg;	G'�������p��G:�A��u��|ݖ��r�&�BG'`o;�VF)�u��������i�o�ڹX�G辆�:�W�@.�~|3�E�o������QԳQ��̺�N#��i�_/��[u�2^W���>�v���rd�S��@Qy��H���
@��dK@p�m����S�Tܖ���
?ݭ��MC�hc��e���l[YӀ��:	"�6�I3\	��#�Y����'\�_��?Pw(]��DA^r1���5�V<In�9}�1h��2����B��m�,��@�[�db�
<�FS��L�(]�1ڴz��`��4?�پ�߅�$ w��bY��BO$[���Y��ܟ��M����e�m�|�3b��h��s|�IƤ�L@�lw�eP-+ML�cq��r�?1l��J�U��J�����Z�`���ōw���q�C��6N0r3C^����U�e�5�s�����U�R��Ĕ
��b��i��N�]�=o��Ժ�+ԭ���8fT\���"2��/w$�����a׵,�ݵC7�3��҄���;�Y+�싸m1q�(�.3���r����/U�xX�|�VW��C���ж�3�\�5h�ӖZ��nɪ�K�UX�����Ŝ����hv��U��ؿ��!h��465�W�r����/�,C�9�����z3vVh�ۀ��#Y���g��LE�ial(j��U1'ot�Xdi`b`�$+���f7��Wykja`N�4��qp`D��]��>�lw��3�]����iڻD"�ہ[}<����� � ��ו�Ӳ�̜
�["�?:�0�}��Z/��lvOn�؇�=�;�Y�'�b��;����uױ:|�m�+☐ތ��`.�x؃ ��FPUUUUUUUUUUUUUUUUUUUUUUUUUUUUUڃA��+P[��%0�a%�IEND�B`�admin/images/upgrade/external-url.png000064400000536457151213254610013704 0ustar00�PNG


IHDR��q
�PLTE'������*% ���"&���QPNR,�uE>LQ���JA9���mty���������6.&���2*#C7+-'!J</'F:/;1(@3)#)#TB1N?11& ���7)"-"H9*ZD0>,%O<)�����������W@+eJ1NA6���=5/S<._H4������������lN3G>7`F-���F0(WF8���fM8���82-uU7M4+@:6�~K���QE<�xF�f=���MID�����ݞsB���HC>pR8��Y�l>��߮�M��VEaj���������Jfp��ȅ`;|Z8���Ơa���SOJ���.*'���}]@@[e���rJ�kF���Plv]K=������ո~��Ί��ʨk���аu���kQ>���VKB^=0���ڽ����\w����tXC��aVq{�cD=?A�yP557��X��Ώ��������pz����k��s��ZUQd}�jB0������x��`QFiu{������X6&�đ��N�ʝ~�����<V^vI5ۤhhc_waO�yE��ds��|y_\Y��lvsq|���e9dou3HO�����\jYN^inCIL�J,7OWҖL�����ח]뾀pkg�P;ɫ|���XbgψPe8!�rU�[3v@&���ݥU�˵�hM�w�eãuLRU�ԨE)��ܶlBQZ_LjCϳ�ú�Q.�W4ɵ��u:�`B���Ҿ�€S����{^�XB�jJ7!��n���͎^�uR��z����ĵj[۽��ݵ�Β�N,����ug��q��sbtRNS"/cq9UF�NE�Μ���7����Χ��*����IDATx�������`��@��TUUUUUUUUUUUUUUa�t�A((����ɑN9DeM�Z��;];�h6�F��h�_��h�v�*�#:�<JD��<��p4�5E�d��x��E@�3��n4:'�Q��Q�+���{��Y�e`-b�����A}�`Q���f�%�e��^��-��LۮQ�hi7��a��
��#�Y��tZQ��/#����Z΋��7��#�E��i���7�豊[H8c��М�*�
LZ��m
];�}��XCv?��u�@Ԑ�R�b�y�6�+��u]��F�z��rJ�ۗ<w�B�μm����7�־H�gJ�?t}*ĸ6��F�2C2hl�A�1�Ȋ��±��E�Q�N
?��]Lӓ��EN4��)�2�vH�H��*q���DTX&`5:����~$K&Ϋ�� ��B�r��)[���˕��˫��+�gt��a�S5��.�~
	K�e�*�-���W(^��C6i�Y��_7ϑ�ۘ�X�z����0�e"��W�g�����{w��0�Qxf$K�I�ާ��O�Z���X%���g�&i��1$D�$!��dK��3� ɗ��6���l�h��VL�d�LN�a�D��x���C�H�e�J'�:U���6�ӡ7�W(�d�7���_�`��$�^-��_�*Gr�/�g�SnR�:�x�`�[{Z�$�m_����?��˟ӽ����.oii[�짗<��p)L���\mԫ���%�n��d!-D@@D@(D@(D@(D@(D@(D@(D@(D@(D@(D@(��D@�b���e��fN��i���.M�V�n�̴����b�@��?d��Y�p�&N�����:��:���'Gk�`I��뺭۶~ױm���8;�<y��/{ז�6#�V%�۩��)��x�aҨ!��zm����!�d�?[�U,���e�ĩ<Lh-�c�S�ITQ���׬�+��|�c��r�Z/y�K^��hm��UnP���RPЂ��k�Y�`�M��R�����*�5(s�~��|֊�I�Hrz8�/�0���kP�֢\���Za���I���7�R8!W@89�R���}+�e)�Ut)D+@+��8T'��K>�
���@�����Y"1��3�2��6�f��4�,G���E�c�u!кP��������;�e�w
�-8�=Dv;,��W3���ƒ�4��Va�/���u�VL^e�;��t7G��D�RV�Y^�:=�Ƞ&z2�z�:��,� =����1-��W�`Z��Zѭ�6@k<~����Daq������g��x"�r��1���`���R�C���0�r����|����ձ�p[�"��m���b��7������;��4������Ư������������bZ��-5�X��G�-��VEx¡1�FX�
x�;m��P5���(���ͭn�!1A�I�>��8@ؖ}��Zd�ցh�G�Bc��l(������?��upD(�p�C�NԶ��B������-���PC)�#}2�g4nLk5���\E�4ё�1���
G`�S����ӱ��H/z|�qz���*Z��$���j�J@��i?s18�f���'�R�ف���#���&x�B���Z�jT+�ֶ�o�����ev��
�Ti>c�,ê��}.	Ok[������"ZZ��I�Q���u̼
i�=�!�M쐅	5|�'��t��FA�(��0����V��K��=�ռ��r�Z�aH���W�;�5*hL��y����򡽞I�"$K�br

�Ž�Z��1�X���^〈�6Pi
�Kx��-�;D��`ʘˇ��Ƙu��7�����.���R%�=��A��Z�'Z��w(Dk���v=�����&>
B;Q'�P�b	��9{H�10��_!x�H�����HY��m����i�7�Z��ょ���k}��<���Y՜g�:J�Z�9��5t�=�9%G!X����?�i]P�
Y�xM<V�'��!N�p�̴�{=G��\/['El�F]v[JC�	!}��%7�h���AZӚ>�oFC����D!Z%�|�.��#���.?�	������L+���f��	��5C03JL�p,��)�-��o��?��/rC��Ő��[�h�fsL�0�u�+�Z��k�ټv��U#��s�?j�Ț(3냴s�h����e��hU��)��^�Q���S���Ȃ�&�Ш�g�4��}v������=�cZ��9y�U�������u��<0�7a��I��aP\b��f���Dpe���%�(�B�$p����n�
�iZ��:���eL+V�(,N����z-��׮64��� �︄u<���cEa��UY�'���MA� 8h=���{�c���q�.�O5�U0k�7��Zt�A�U'�_L4����6��؆�=K��^/���0�����jލ�P��/>ʀX<��g�����.���W��h��HB�X���`��K�3�����:�!�Z]�/^bC�6c},;���e�.�$�
(���'m4��L�&a��
�Q:1���
���C�X���YJ���Bh]�JFo-��
/�	o7��n����m��r��h�Pή���Z�uZ��<���z1��?J��Eù�t.��y�E�1_aX{�$����` �/��	Z�8.]!-H�����ޮ�pQ��u���2�5cQ8]~]9{O>�i'z�O��5˽4tZi{(�Jʾ�B����)lq�#�2
�*� ^���EhM�i�J+�Vlk.a"T)>!��y�Z]�\ކz�Iqy�29��c>b�k��$�o��:��4៱��Tb�G~&�ʇxt�!��T��3~皒?��5�<N�a��f��=&*f��
�	�@d�j+���'W2�م����L���������k^��Q�iÝ�z��s+Kd6��D|�,L�|r���<��Ք:�1���J�C�X��܄s��h�Q��8�"90�̵�A,p���ÂC�k>��Ï��2m��P�\T!��d�Sf�/�w(�i�3!�w�5!��;��ö�“�s��`�?��o���
F~��[~�E����)]G
�h:�R�ހ@Z���;�sb�Sg�u��~�X:	�?��a�"msg�b��D]V�_��+�V5W`v�����(n��l�kX���#�:	?����<�<�q�
�R$�����[���ܙ��-Q#���e�I3��������FÂ}�n1���!�����Y2ҚA�@�>�l��=�q��ʡ2!A�P��#y�^�>ڸtiM	�V#-�s�թ���m�vBl����0`wӷ\��6QF�G,"�7��h�q�U�|Z��k}S��v(D׫��<��9��x�?���@��Rp��9�P�DC��B(� ������A�Ȩ�\n�h�:�k}�1��<��y~�����aRVʼn�e-#��+c�S�8:ܖO��)�X�	�1����Ch
Y%҂����/DŽ<����S61��0}�ټI��,|�Feؽ��F�k3�ӎ�D��i1�$�
�G~����0�`p�̀�]�V<ĺ�c77��<Į쎴&E���	i]bˇa��\j�4�-��Z�\a'����V�p���o�<���	�3z]Wp���j&�S!�^-~�ʮ��s���%��E��b7�`"1�̚���p����U0�uܜ�o�c|?�`.�c"
�pN�?)��T%���0��
���/�Į��d����wD��b��q֦�.(�Ȭ�"��e@�F��'��2���O_����1"V>��M�wf��qK֮Ӫ��(��:-�[��N��~ZkH�G�y����A��u�3]�-?��WgҲ��ۮȥD����D�!���Z�l%�&����z��a ��p�
v��HLE����RխKԿ�Է+#�+!u�P���)��v�.�����bx�$������M��(�u!�ā�?SAVrqc8�k2���DǍ�\�A��$ㄿ.���N�LzC��h]�+�t�'��4���Q:��͓���]���[J��B䴒\b.T�tK�&�E��6洓�'e;�ԪA�X8h���1(��M7`�z�#"0�B�%��}��e��rʊ^v4�W�Ws.\c�@0P��14?�n��DŽ�׮aXg��h,4�c�ƃֆ
P�y}�~~(Mϸ1���W
Ϙ'y���w'��Z�G�
��!͒W�U3Rw$�,�0q�wh����x�)�c�Z�� ��|�SN�v1��@�V]0
��D����Lq���[��*h9��c��.m���z��?�"�79���3R� |��sj}0�����T���~+�\^;�����	<\�v�y��?�uZ[/�K�`��,F.�`��:αo(��٭�������sS�a�����1o��r[�~m�Fߝ��������9�<��(��6�$�׶����/���ԵQ��������u}_q�s"��g ����zX��˖H*~�b��(�1x�<=��$�И ��6�24'ʇW�T�B%I���t��ё�
��]H#0�I�9��Dr:V@��T��=j���N �/�J�^q�2��.)c��O�:�U�����#���g�L��=#����_��iZwU8GJ*���^
cI�S>,{�S�wA��--��ƭ�f���ҫ������c�>��M�l�-Os��9��O�w�m�=짌�b��?�um�FTգ*��̎}��[�5С8�&!/9�k���q�-À��[6�#��+ʼ�>�)se4�e��f!з=����H��j���b�+6�x��Z"�t�8�
�'eV.Œ��������B�q�&������嶫�P��
?ɧ@E���ǣXZy
�)�3�jա:���=Q�|�X�W+
�g�9���)MD\w�#�h�o��5j9�J;\�>�`��
M�>Ij�ld�ᖂ�1(������&��B��Μխ����W��9��략h�1�Z뻗��������O:�T�&��x҃rE���>ːU����>�lS�ͮ��=���4�V<��ֻ���4Ƭ��B��q0�;5���XSݩߕ�ֻ���#b�\�!0LLrX�"�a�i�
d�Lq|bS��b�żn2�jZ4=[�c��+����SD�����j�c����,� �#�R����M@�g�qS
(R�u����7J��$�j�_��5��~M�z��,�������C��uض�҈�V	�

��뿢���v&�$d:0� �I���^�����c,L?�O$��.b��~�2��$����_B�-��h��Z�	V$�]tl��?�V8�+ήȥ88oU=�LP��g�r4���i�%Tg1&!]�uA��7Ǣ�i��bA��㔳��`k�)�Xd�����@c���@K�r�ZZv�Ch�(kS7�O�Zx�=b� �ņVM��Ŷ�y�{�hA�5�V�ZwmȰ�"�!Pu�,�{����k��9P9�э(�.ڼ	�/S���i]����3Ps{;iv���!n���X!��v�F#����d�䈓{������zC{��5XM�w�����2����X�2���>ߒ��4n�����CAq�����z(��{h������Ǐ��hv�Ñy�����n������-E�����0s���n&lf3&-”Z���BФi��$&�+�$Q������
�@=����=�<��S��̫�`ɮ�k=h���-���e�£��؎��.�i������c���n���/_?Z}`�Ք�������HZ��	�XqeF�V_I<�`=i��+�U���K�D���s�x!��y)oZ��3<���@6G`���H[�V�6C{�Ζ�=gi�v��l��fUۭw���O�b�˯v��d�{�!�����-�5�L�Yoj}�9'f���
���/�W~��i?���&���
G�$BE����F��s����G�׊U���iE|�%Tu�%q֋�lg�}��z8,~q�H*,�-��׋ͻwu�S�#��I�\a�[
P���rB�E�{��g���=|0@����]Me����h�>=;��˦��eؽ��`dN������7�V������<yB������i��d6�ݐ�ռx1Yƪ 7	���HXLY�8��r�{�#�⤽�wG���ح�g(���ǀA6OS\Y�IG��ꭈ2I0��4�*�
=�
�>�؁�Y�Ǐ�<}�����_p��wk��,+�3rQ�x���$��8��+�X�5�+�����[�%��E���>��_�u�_�ϰ�Q�"L�翗�c�&��
�����A�_ҋ�I� k6��+�Z�c9�]?ZI���e�^�.��;��.c\J^����JMp�IR&;�'N��	䶫����,A8K
��������
EQ�~�>�F����*cm.��T(ݺ#�
���u�%�2x(t��B��s���U%ˎ��==�q���/�]�wU�*����I�Wq�n�����.N����0��(���GEi�
�rb�ʬ8�#!>pb���>�S�U,����V3��3/�9>�O��sg����U��B^DYo
���m���I���U�3�
�ou�MV__v%��κ�&1�"9Y@��4|����Zd���B��ʥl�-�;�hYafZ�"�t:�N��턽P���dX�M�c�I�)׌]8Mf������u�D�i������G�V�%�Y�G�k=��͞>�l;��'�eSt�ws)�\��)�֣
N�i�oКO۝v�-��r8�Y����=2�	�j:N�&H|�Tv�ƃ��Y�rhi���-�. 6U�l������EL�8�m�S���ͧ�if���<���6=�3Ok��V�M
�@k�f��ph
!�{�u��N�v�뵕Z��m�ntzMܑ���T��x����������!���-RVK����}o��̡<��D;/,����	h�=`RGP<��C�l9��AmzD9dA�e��̪y��Z/-��*��-���б��Z!$V+��i
*�MIV�`@�EH���Y3�/��*!a�W���^+�(ò9���m���iTofו?�����EF?DW�|���UY���w�)sZ�G<����f�FC4
[���Jp�	��"T����taE��#���L� ��-ք֏25Z�;���Z�	mɭz�Ã��k�x��z�N.�B����roas�Cw�\�ޱo��{���|���z8���Y��{*���&!B[�0TXM#n������I
����Z�Z�<M�63T1�%�ݥJ��U�N ���ϔx�}��<p�� Y����}0��UA6_Z�X�.V�2�K�V��\[�u��.6�_���ut8!�����!�VHf�ma�V+��<x�,,*���z*��8X,V+I���hi���J�h�/�>?|��''c��tj�G2�(�`��T�iݑb�\-��V.���aF<�w���A+T)<��
�C�uX%����f=�&��t��ѡX�.��$��Nn�4���x@KC�k�}���d�^-�a���-v�Z�{p�9���~6�5r����n��nYD�rs�N˶)	���Z�[�|��YV�H?�Vb��%5�pP�X�
�j9�EB���e	������G�[�yZv�.����4LV�`��Yp\�VԢ�R��En�Y�--��@zb+�8L|���Ђ�����^o�fZ��E�����l8���z��bZ�(�U�V�b���;��i���E���#ۛ��*Ȝ�a�|����:UI`�"��Y*1ZR�!��,R�� ���pZX�,�
�gkl(�n�N.-|��f��_{��6G��Drf��w���rl���xAVIL��1:|����!ԟptxy9��P|Bl��b�DžX��VD1�tL��h-��K�=��Z���ʠEj��l���\y����S�c,ֽ˔�<PAq����
%-ȹ,��O�sZ�dė��,��/�a���3bK��y�Q�Th���mA27
�"�X�b�Gd
o�$�]R(�%#�k��Y� >ޫ�o�����,�y�'|?��[1��J4t��]{?ho[����ؓ��<�����H�6�f�W�29��L�^�xџP������䠣���m֘)ZQ^Z�8��T�B,��<����[(�f�/�/���a�����I��/�Ŋ10�˨|�Rܜ��O3���i�
�x�q$}l�G�Ч%�y)N�T=N������Ak��C�x"�(�Z(��"-�dz6C$��f��
�d�{1�{�_�9t�����YZ��rY0Y-,�9�G�������U/���O���·	=�gڪ%�5d}�D��H'�t�4W��B�g�iv�+�Nu֎&q����֜A���i�r�P�T�ǡ�N�{�l�oo4�g�qZ���9��Z-�iy���=4��n>lݾ�N{���3�5��(uZ�VX�!�,)���̒����ܣ8�DC��PM��J��c�Z<���*�o..6�Z:�����Ǵ�=|4�T�	��*���w��0���/�D�N<̈/uZF[�	��z�N��)\���ƴF���	�%���Zd����h�P1�����P�)�����O���ooo-PkNh�Z�z�+��L�T�b˿̱����{�%�K����F�)�U���
����^f���|)ѿ�x�޿�i��j�P��c��N�M^�1����	(V/�Vs� �����ВJ�`�^
�(���)F�%ӥg׸[�By[,�\��m�	�t�h�k�ٍ�ބ�3��H��.L�a�xE֎�~�{�$��^����XFI�iId�YZ���Bס��V�Njj�Ҙ]�%(��4N�έ�*=v�C���5��^A�i�yO�GTA�e��jǃ���)��p��b�W��[�Iſ�a紬o�K���mcZTP���X:�=�86d�u�De>˕�Qfam'�,�U/Wh�
��s�-ĵ�i�YX�뗀�Zb�fМ7o�lJ�_���	��9e�*g�h(rGEa�J���O�V��?�Y-�f>H;L�M��K0�ٳgB�	9�+�:��r��BU��"���>���˒�8��x��4�h]��P�/���4:����l�,�ZN+��i݉��z"�rZ�ĢI'�)���Z.�V�߸����P\���<�v�,�,x�	SK�AD�ً3��+�-H:����
�\��X�i�=n�J�͘�c���$���z9#�n�gf<�c�O����<�H��s�����hokF����lyd�1�����|ʁŅ�6Y�XOOО��	��� ��~�i�_=�/�[ث�Cf�R*��?'�41~�Aw-�Lb�g���й-*Th�_f��j��J�Lex��ܸ����
3���ۛ��?�{�oh���zӪ�e�󜀸���c���q��ã*E��_��L��搅�X�l���N�S��ʈ��J�֢k�>΢N̒(�L���1�Z�Շ8_ZB�Z#^Z��n�i(�.EcA$���Z���j�Ѻ����"�t������c|X�	=8���w��UQƍ{WnLxq3�8��t��-Sj!Pt6�D�][W�
A$]�ѽ0TԅR\\�1 ta�ZJ�
��v�@R�h���ߗS[��/�޻ラΘ�����w�f�߱7��+H\X=j�z�ݙ%��$f�eI��^	T&�\BYƃ7鴠?=Lu�J�d������Wf���Ajg'FVNA��'�o���%�K�2T�n���KЂ�0����j.O\�qxB��U1�`�����T���휂K��|�؉w��=�do$l�0pe�&7T��3�x��Z�����׈�V�V;�L��ͻ�V��Z�����\VК�57o�
F™�]��½��Y�1n���'�x�#C��B��/��G�|�H}`]�����K�~�{��ٷx������l|E��ύ�>�Yy\4��2u���7ZB�%[+Wl�L��-�}�ߊ�*�`V���e�Q�9��m|�v�,J^F|��ߋi��PV��`�WX��;�A!��Vٜ��C�:O-9-��8}G����"����a�Z�b��Z
¿��="hQ_}���>�5�/�d�/��p(�z_!D�u]�shS�9�]֗ђ2��iu!��sD�b\�Y<�(a��^��!BY�ƨT^-��ʱ1h�,P�	�b�x[�ը5k
'��bO��@W'%R*����<f�@��,��G��π�en}�i����O1F��g��+�8�r�/@jp��vIW-S��t��Zf<���ʈ�.紺?q>2�7�Y����c��f� 6�q�e�]�
���e_��giYyD�=�T�B4��l�V���)�X��2:��!��L���J%)���k��S=߯'�^YJ}���v8����ZW���
M�K��7ǹq�pNX����K��92����E�7pn!�F�W�ɬ	)7n
F�B���p�^〒К��mX�pq�5�1��K�ļA˲�C4�O�#��d�N��|��^��;)ȸ���">	��[go�'2S��K6.Z,�ʕ�&��v]@�v.�.fI��e��<-��6ggyf�r,d8�@�-�͓YR�>+@kޔ��Ǔ��hQI��"�|!1܈w��_y5o%jb!�CC�H�"�Ё�����T�dz��!��%�s�|�������Œ+J��*_�ӹI��u"�+�xP��개��Z�_�Xw(��x����g���r���i�o� *���T�����9�v��,�V�@n<��E�E	Z�D0@k�+fs�?�����قײ���~����UL����դ��o��-�M���$|V=�5�x᯸&ն�Z&L�z;�i�&@+�=qyZ�V��#f(�Y�[��fq�0�DB�
�*4��K�<X��x�����Pi�D�%h� ђ�.�9<���0L�A��{|���x%f}�]2�*��V�Tz�Hji"""WP+�g�}"���R��+�ց~��q�K�zQwƄ�H0o������e����*ƅ3wQ/�X%�a�
Xog�̢��Y6��b�Т����(��5�
\�
��WX��q��r_�E%g���_]�v��,Q�	���0�g��t9���u�#Dn��p|��KgGu�I�
���|�ćC�(d�
x���3j�=��|�t��<�ϩ�8�`i���Ո���wٍ-��&k[ ��U�J8��E<*lC+���,��&ƨ	��Ђ��2�J� ��-�y�J���p�I��+Z�e�1<d��'�A�ME|c��e`
�-PKV�9��ʞij
>�]��\t�I��:����
]��\Ϗ'��=Tj�����r�٬��D�2��iq �ۆDV�a���`�8,̕�wv�a�0B̭����2�-iT�
��U��3e�i�ZV���<��"���U-Ů|���d!y��www���V�Y����ǃ�!��VZ��ʩ�O+J]������~�]�<�W@j��e�pZ���]�ˇ��{��@�bi��"5==��ܶ�P�g�%\Nd?6h�EH���R��24}jͧ�V�W䘠�º4�tib;ϼu�_?���k���8<�a�Qym�R���V*`���=����F���{�]`�J\F��;�*���%p9�5Vf<덻6G�*�f�aM��jM`�L�	WN0�lx�#�,���A�k�V�Dh1��<Х�y����p��bn�\L�J�J�7h�Z��Z����!_.���,�����ax@�xE���<�?à�����d�u��Of��s�rhA�Ů-Lv9��j����|��"��9B$�~*AF)p��>v`&h)S�P)>�)fQy0+O��"���L�	-"K5��0@�,o���,1�;bKcKjY�-��O���O�R�ǟ�"V������$p����Ld�9GI�\��i�Xek0$̬��>@k���,�
A&���%�WwF����rp�YΕ���k,i[XYL�C���eo�`�[�05F!M^nKD�RD^덶�<����0�<I���	x����/
�JT�E��?�V#���NȢբH���}����im}AhM�Y�9@�T�Xc���i@��������*ptx�z��=0��װJ"�4�P��/�/\ᆝ=������ZN�8�%j�ВN��%mAI�3��]-�*Y�/���R�����U��26'e@	��/�`��X���ƞ+�z�Ԛ�5���,�5�v"$<had�hm�Y6H$��ҡRKْZ�x)w˨�����5F-)FV� �=��[5e�>��hR��mT��E��H��k�t}#;ɬ*{튞�<�z�El��-h� C�8vsl�4M�m�bx�X
cC���.�����,1��O�2f�{�]uYk�dN��r<24�%�%�EV����QKB`ޭ��E_�Z�Qd��>��B�C|Lxw�L�O��N��� Ko�3�z8�3Y�~oZ��J�lH2��S�-���ZyaR��́D`}�͛w����e]���(cYJ�WR��K�u-4����C��%fI���l��6��Y<��Rh�2j�т��� K6���?UR]Ϳ�-%X�sZ�h�vZ!�%j� 6�P�Չ���Xǝ��nX��,i��$��;���KY�mh�ZĐ<�֧����D~���>��"�phv�;f�<
�Ԋ#[�B�ЂY��������:���x�Z�yZb�������
��NO�a�nZ8���1\�s�;�\��<T��E!�dm|�T-�əE)�՞A
�Wj-
��Gv�p9���Em�YpY����bT+���.%rX{����3��e��Ӫ�gQ!�V[[3zQ�?:��Z<1E`�1&fi�x��+�}N�5/�%�]���O77g6�&8���B~��+�-^J��Ǩ�[���up�����H|'��X�4	O��}p������o'J؇��.�t�2�{�=����!��!U&�N?:�GɆ��u�Ǎx|h����� �5jGVA-<=T����rLC��Z�f�V�V�*�t�M�.rQ�>��⡲�)�.ɄJ����{�����Ǯ!�d�2�C�>�Nka�Zdl��k��*�Fǂ��	^����,��[Y&�.49M�Q����
d-�Z�-S��L8��
�R$^	[�8��v����U��,���Ӻ�/R�O1�S���+�:^�F�?4yZՊ�%�_~wm
�]��Z��ٯ�RQq,��x��
h�����g�
t�l�H����^"��Y�tc.��L�/nŏ
E-eȿ"V���Rl��0���tZ泖�8��xa?j�]���X\k��÷=���!w��E�-w��01����;H',#�o��k
�
b��]���ӥi�%Bkj��	-(<Nl]V�f~���z�ji}|E�}�R%B�*��h�Zʋ���^�r�̖SK9��y��5�����3=�G�Hl��{�t��1��q��%�Z�]Z���{��
��A}��a$�iu"�Z
h-��0��ă�;���.��
����.���xRK�RhF���Vu戬9���bi���%�Y<���1t�¦DT-��<U˸�t��%�V����u�3��[N,�WR�+��
��K��J��7"(���ռ�^�z���_�@�[?�t��z;�
y%���0�a�Lf����H$E�;���L�:����4�e��c�e��UcV(�pm2
fa�f�f�Q)��c���^�ZӮ�;�<O�W`�'k�d��-ʩu]L�?��w���a�Q����M��e��JN�x���)#�R~����?]���3�֘ŰX�**�%h��F���<3KK�e�U�e�,'���Y-�	R�x�g�J��]\�be�rbQ��raS�j�������ťj�D�0bNw^wo��I�?��h�t�.�Yb?c0�z8Έ{��N��q�������/��8-L�jkpZ��t�\X��kK������y; W�YS-<Q�FǨ"W�����9"4f-RLx���J�<�QX_̲�gI�6>tj��%j�]�V�Y��'�*��wW���eu�pr�{�o0}a>u���_u7.���Z+k.X��k��p
��'.�nn8b���3�x���R~�R��P"3�{9-�ʂ�Z0f��,��[%��n=�,��<MN���`���з��h����6�_[��j5K�b�@2��+3�PL+�0u�dB#h�W�f_���b��f�Z�px<��e����ͼ�(�W�'����c�_Ig�ޭ��j�ϩjk�ũ��W1�ȭ�m���FVԁM� 2J� ��}g�iŎmR�=�	{}e�2����q[��Y�R+�~m��sТ�RN���E��
���>�v��w0.܆�Z-hI�׬��RK1���bIe�I%iXKK�b�S[��0����y�X�WZ��,nu�RKy
dy�t?ߑ���߸�����UO���q^�|تWN*�f�^)׌[]�IJG>ծ�(�*'��
�8���a7�]�mڥ?w�CS#���b�?~�b��҂���� i%v�,f	Zֲ8��Q��da�|���<d�x&:؈���~Q�*<6dnV�������顠��kx����@������>P��H��b�a
�;I�:J�`L�]�����{G�1��\���z��yԪ�k�F�Z���lU*��
�䀺0���Z~��6H����H�?��us\q��(ޠnf��7,��j@eaE��M�����s�R�NSS�SK%A�ˤ��X����)��)�����*<�2�����'�������ܰ}����U��A������J�Z+�W�������2�_���ܖd�x�,�TB~w/�M
����/D�t�E���ȯ�Ƶ���j�����:�����j�٪V[��yw��m����ǎ�s�.�g���(�b�s���h�g�cK�b|2%.O��
�,� fQ��՝㊦Jo�zI�V>+���
-��>�6Z<�;�z�z�XSlt�*��f)}&��#C���)�)�-�[v-'���;��-.��EVZ+B�7?�P�������R`K?���V�#��r��ܝ����l���#'�3tE]�;���I]���Qrmq�����_��~;k�T�j�f��h4Z�V�^�ġ���U�I��]e�jb&��O�7>��2��dž��[&j+q��l����ߣ����F3���zf�������N0~�ZF�gq@�Z�gq	��� ���w�*"w�:p��:���ʋpZX�0^�'@��hF2q�u,��E��C^�u����݃e,�#kEn�F��Π�
NV˱�]k�Z�b`�#
/�_��ޒ��H� <�����= �����W�ڪ��30�u|~�������@������%�؉�H�@SWL����@5!+7�R�pe��i�-y��@�q�%�i9�:�����:=��s����s�Q��C=KX�qj=k'��e7p�^/�S�u�j>7a��y��A�E'���z`����ei
3��䃴�E���,ʖ��R}e��h����ż���$MFL^�ur�J��4���8��E�d�ݓ����Z�y|v�lUj�z�	�u"��b/$V��s����v��*&�hŖ>k��
��׎k�h�)m2q�K�?wZ�R\K�Sΐ�y�N���E,W.��֎�C�X�Z��Bf)�[�l��z��ٙW�֊�!Ӕ�˼��,5��E��-�,���³ż��N0Z+++��:�'fZ�������˔gk활\��19y��3ﻀE����៷���'�����q�	�ྎ��F�^?1l��pi8��,
��i����x\�^��I*#l�l�����g�R�e�w��Z���!�a�
�$�j�T∏�2h=��-�J0��<��#W��U�f����b��U�Ro�Dif��* ��E��G���3���'��СC<K3x(�T>��h�FcCa�6A���v�_�&n��n �f�����,��o2�����VH��$���f�٨6�j��H<�լ6�%�me���O����ft�WyG-�X��/�\�&���fe��-��MbS�@�V�Zr��g�-��f����g���n���F��!"z`��q#D>?��X�.���[���ua�/ͱ���������-�ׂ�a��,٭������-@k����A�-ޒ��j3��YiiO^D	̀�SC�=<t1�t��,R�=`��¯g-x�j��:<d,�	z�!"�8�k��R0��Kj�[��.�%;��T�x�q��L���E�JqK�s`I��#��������A0+k�9qglj��3���2�I������q�6�!��r;��"�8?�.��wẶ�b�{�t�פ�gXkqQ^*0JIrY
��e�w��K�b�č�vI��2�:��x�-Q��~vfU�Z&.��1a�L��n.Qe���k��Uf��2
�Վ�a��*��:
N�A�F�yX�g���V���l���
Q
'݈�5�K�G�+qpצ���:�l�C��h٨c���<�&;g&����iєrlxp41��~��҃������K�<����+A��䓷�?��"V�X�V`�ذ��b��:���L���~mg��x�=@!�YB+�_�b�%��y�(��3�tZ�+�ȫg���p�����uz�t�.�|=9��ç�?����<�:�J{O��Z�Ж�W�f�d��+$k�99�68J��`������^��Sv�*�xS_�NK�ʨ�6G���~��86#�NF-e;�����^1�C+y�|�0:
{�`���:7 X,�̺=�t	�y2��FF��q���~�i}}g�{�Y�����2�U��R�NK���۫s��h�Z�J��<_K#G�N������̰jml쾱��[�m�$0]6X~Y��[r{�ۚ�gT����B�_�,ȳ�T��;4�������H}o5�U�VO�xlX���S��3|�'��J�2�<���g�3�&@u@�`��V��� 2k�N��������:
5�##����>7���N�S`<�4瓎@�y��A��YS~��'�ɒIs��*Q5?W��R�wt����P��_ǩ=��=�\�U�ԋ�pn��)�u��򄗪>��C�V�YE�W��v0��� ���I�B�{��er����TJw���^��O"��S[�;�Te]���{8��f�YJPG k��h�5��z�Z�TU4\����=�j�Yx���u<�����tC�j'�� ��]�]�t�R�uA�El=l�j�GP:�yZNK�z��o?,�wGG�������)��л����\���DS����,h���a�!�.�rBY��@_V���xi�]w9��j<���<h-jՉǙ�8"�������I��-�Q*>�,�,YL�#מW`�F�2����p�<��bF���t�*��d>=��A}e�;8�/-%t23�V>i�,�H������-�\`^�j���$xz��L�2KSn<��m��t�1 w�;����KBո_�[���e3bx$,#���Z�1���^,�#4�@����0V�G���x5��Ճ���kj}�&�*�/�b���V䁿Z]E����0��D��b$���T�V��x��S�-.vch1?�:8�������)��O��8�ZI�Ƨ�
��A^�Z��(��)�YeF��m��qa��8V�zR�y��j+̛.7������%S�!,�q��I�bruI�+��#�����^��y�%Q3��괖�CZ\�ɺ�1!B�o�J�~����Q���O>����(
> 8����g��KӹBnb�e���S���n��Q�\��V��%�s*Y4>�k�O�dU(���Ь����F��ֽ��++H�����7��Ԋ���hŽ|JYy��<�K�Mp��C����q)R[AO4�g�S���<j_g�2G�\|���a�R?n��߶��w�[e�ӌ]���VZ[��2\��b۸��߸Q	P������W؀5�%��d�i=��i��X����p@4[�5���z�u���Ԣ\ؑ1R\/b5V*�X3:�[E��[P	�z�rӪ�Cԋ�:�6���e���]AkFK�3](%>�և1��8�ѯ<�E�d�#DS'���Hتp?��P�
S^]���&5���+p1 ��&�p�bU=�,,XkkpP�j�q|t����q��|O
�6ZH/�Z���6���	����eYDKrj�ne�B��L�Z�V�8��xŃ��c�IJֿ"��=�����}�(@�A�փ�F��.9\���8|�h�F,~���UMsrhXB�̺��Z\�U�-���Y��I-sZsx��кK�ef�-�:�n)$��DS@���{H|0Vmm��B��Ԑ]�΃5�-曒Z����,P�.�$ϑ����U$/�@-�)|�	0����VYC��^��R�*NH�?��p�\A��Y�z�CGd; �`mo7[�s��]��t�
�.�i`�ɺn�U��;�Y�G^��i�e�_Q��V�I�U��CZ���o1Á��}��H�ۀV��������p��"�&
������Z����9��s���9�s(�vA�������E�f1���
x�ap�e��%h}�;uggZ�a<<�31q,�+4*��k][��E�bj������
H\�F��B[d1�.,D�k)�Rj��4G,=適�%
$L�d�]I�u?����F7�jz��~�L�ij.���y㑢�e�I�LCY:&t)@tףǎ���D���,xӍ�7����[�`�<6�n���)YU����i����e5�",l1C�5�}��j�5�0g��hb�����'�(���U0����Znq���R�V�X��5X}��R�,�)LGo���S�ZV�Vb\o�ɨ��U3*s��
Y;��۶r>~�)���.�vnw��38�R�E�
�Ť�0@���d���3��S^�z��GЊ�<�Z(KZ����aa�-�e����+���3��~6]E��Z,�K���(?;d��(�q��;�hs������ʡ>��)��U.ϵ)�h��5ۮ���p�Xq��q~�I�Cs�������	�Z���I.~z����К�~OY���b&�?�(�&�d�bGA-��%ck����	�^���B�Z�3�Z��"^�|�ӊRwQ��^C��[�ځ`��;qI����D"!	�>u�
�U@K��!�OK�0�CDW�N���'
4���]�%{%���,p%d�\�AR"�ھZ��Z��TQ'�
�n�(;�GSכ���p�Q��p�U��']�x�L5a�b�%\q`�!�sʤ���!���j���,u[
��@�آ��Lj�Ņ�[�ֽyE��ZYOs�J�J�gZ�<�ku�h�v�5/#��{�/�J.l�v�h��c��">[�UN0m�!$D@���-X��X�^GI}�.>2Z,$�6H��.E]���+y�O\�:�_�Ӳ�O�(���ą��xdžȦK>K~K��,����;�a�$fel�̬,�_��xke���Q�ʽ'3��
�����:mO}��fVd�#6Pv�Xa��^y�|�k�����V��n�0L:��\Q�l����_�o�3U^�֚��h.���A�z�9��b�[�F�v�d�42�o�K�e���P�	8�}1��ڀK��0������K�P��7]E�:N;E��̬-ڲmK(�f9�5��?��On?�Y;��
*,��[�B��i��S��� ���켐����-�E���-71�r�C�F����xIr[U���ݤ&y-;��ku[��m����]l����L�M��N+.7���7]a�qVisD��Y\ZZ��~e%�����"�U9
�4k�6�3B�]u"B%������$;�A�5E�-�/֧�׳�o�TA?S��X�Y�R,��h
�VW6����-R:�Ql~��T�?���֤�3�0V$�0Y�1+A�\�x$�1'Zy�g��<��
����/R��z-7}L�P���c�q�wr'A����EE
h}?�Y�MVV�U��!4\�t<|��4��/_6�P�*�K?>`=t��L�\&_(e�;�~�`�l�7���ac�m�l���zt�uK�zg�x�\�Ӧ���(r��	brR��j���0�Yo����Z�9;��ƌ�L�[�Mj����-e�4���"គ[���W�U�
����^rf���J�� ����&���T�I���E�;��Rҭ�ֶm��
���s�/���{?���Q�f�zp�2�z{�BGw��g��;���P�����-��bW�G
_���gZ�����,6aL5[0밥d<]LaTp���,K�b�QJ���W�c��̬�����R��X��qLn�^�]�1�}D�嗼�D��^@0�&Ԛ`�*&��3ۢ��9;�%=�NJ�f��� �ų��&,�j0Oz1膚KM>�\Z�#�lr��5̤n�IԋM��dB��7�u��i�;4�S�^��:�J��»e��χ5��`r����=T��G��Z==�,��:����{h��v:<�>ا�UB�X��r��*�uL!%�w��s�,͘��V�i1a��0y-r��ĖO2[�*��\�Y��N�"�@����e��ṱL���փ0[�Xy����,M2��Wn籞A��Y/��r.7�y@{�����8�o
q,�٭��fv��k3�;䕶�|�k��ce�s�S,���Zs��>3��Q�8WS�)q!��MjK�����V]c�ǩޢN��l}~���J�͑�o-´)�pw�(�a˱a��ZV�ĬZ��U���l��^f��ll�iŞ�/rY��u.}뻕��k��'
�g���Z��!O����Ǐ�!RZ�F�])u���iI�
rA,/z�󘠵S��
rfV��<����K��#>,Jҩ��{����������OK�=h�NB>�,��BJj��l1�:+S��l��,NJkc7��bŰ+�z��M�+4��09��S��F>�s��D�q�E�b�8Q[:V�k���DŽ�&p�������C���ZS�,.�[�"M!j��
SM<�w��[d�	,�K���������f�B�!�$��U_�-_���pZ��߻���tL���I�V�|���MV�nN*�M�ڱ��ޏ}�Cz�C�n{��A���T�u��Q5c����@������
����p�v+lVb�}�WQ^J;�%�V�i`|%�UZE&Kw���.�`�m��B�,T�nehY�Z�47M/+Q��B�D�W�s3��K�'}S�u�?�����=����!5G��DuU
k�^o��.���i��
���\��ʤ�ȺB)r�_�:�0³�6��T\��l���Z��)�[��)񗖗�a�fsrqq�xr(O��W<�c�8[
V�qY�.-ߦ���|c�ҭ�쐝�Օ�Y�y}$P�Q�!�����[��w=!NK�,�����և�ly���W��x�y�[��%S���ְ�G�?F�wl'���n����Y�0�M�-�c@K��9=`��c?�n��w|(d�!+G���sYzd�:�fa��`]Y_\1��u*�2�<�K�0K��U��jev<DIjy�W��H5ϊ?j�Ǘt)�c�㼡�;��F�����m="���׾(���Z3�t�і/�ءh��BR�7(E5{���T��i�p���
����ت�g��SerV�KM���M�������H�͍7��jury�ZZ"3+��{���[G��)[��|����ۭۧZD��~�sP��~�#֐�P�OF�'�`/^�l܎k���T�G�1Pm<7�ݸx�ܹ7.�z�j-U����>`����?�1�=W�����A�O]B*�p�
O���]�O	]�Y6X�q)cUh�y"6$��fK,6��V��2�2�
d9�ej�el!c+Lj��_U��{�ؔ
M k6:���#����S��F��]�6�#r9��;�V��?�Bӵ�kSf��7�_���
��a8�	V��Jy]x�<����Lj�Gr�6D�[-��Ƌ �Uo�dGD��m����Չ��1i���b�ib�[�M��Y�����j�
�#�UB���}�%h1��q�����_���֩��#�Ґ�v���#����^�zߵ�*���i	Z��Y�q�̍��^x�E�7nLL,-M�H+�ԨK��~���]BV�L�~����H��R���S��Ӟ��%��H�rV����z��`;���l�TXWY>$b�Ѻ�W.k��i�����1��s��u��ݐhv�*����߼�[�=�r�fIk�ܽs�g?�z��]L��P�n���~sѮ�f���4�4�ו�;X����WSAC�=WW�w�h�=5�X-A�I�:���Ī��l���i���Fc^��@k�爷nS��S�xU�V��z�����7XYb�������*��bs��w��ݿ�\^�tj��	gf�丌-^Y����L��I�w�W����c����W�P�EF����jA��R��X��	UKb��d�
�q��LDЕ0�e��ߩ6�a䩤o�h�L��$M�a��^iY�\��j^���/k�|�����g��"��k�KMg���Ud��Ԓl��V2�M�Ao��UwZ�o8-��x=|�����������E��ƃ;�O_�|��ˇ_�[�y@�1&����K�t=ZG�|��<���s��L��զ���~�
O^j4t��5[J��.Ku�D���������V��7�s��/4����2�j�+�:'v�ջR1uPѡ����2����Bk�����}�u��R�E��ťje�~�"�K����O:r6�С���D-.������T��ӊ�3*�G[䢎�s����0��Twj�l#�d�0q*rZ=B2���J�����F]!&*jƏH%�%�Z�9�K�)yg�Ĭ(҂Q�*�SD]6�d��,m@K��NK�����9�ZS��%o�%��~��Z��ڂ��e1��A�x�Y�D�����ݑ��tL��ӳ���
��߽
��j�&?��7��a�"p{Ԍ|�ۇ1�!���.mt~��VQ��b��2>��P��l�1W"�N+*�Zu�jQ?��1՞�eUk���=j��f�Ի�~��ML�&���T,�긞!:��4�a,�,v'����ϻ屙E4J)�=o�AZZ�<�o&�A-�ŔȂx�l��.������O�:4�Z����A�	���L���c�sز��^rXt��pߋ����u�%�= ���,�K�!�+��i;B?�%������L-+L�d�{ׯ_9�@V8-L�Wٯ�Z	V�pjN#P&JflA���XZ!��+7dN��z�_絯�'���'��7�Px63+Y�s�=�P���x����o�ǝF�Mr����˗�_h=��o�(���tڸ+q3'�S���7�>�2��-�����
h��H��YPKVfQ
5T�U��@��4U�HW1‹6��kc�4�j��Z3�5��ruy�ڞ�.��xc�Q%@��Yη�q?���Y�f���K�*W��Stp���chǂ��g�H΀-���Q(\��
X�~��,��J�iqx�R�4i��Ӓz-i�� ���	�>�J��m[��q��[љY�"~,K�\�j-Z�����\2���-mn����芵��R�Cy��'<��Y�%R�œ��,{,vPu�.&�S,ẂZ:r��m%�\���V�!��0;���ϙ�jOw�Nf��=g�����le�
����;�V_��,����ݻs5%ռ\�@9��q�<�vezo
������h�L���2A���i�h���44FP�?�I���ZhB�:Ђk,#&��hq�$Wm�D|���|�\�Yc�	���_U�q
\b5�kd��-�Q��P�T��j5��{��e�?q
h���L:v�2�
�%R}J���>.C�A1^��b�,�}��<!N�q#�)�[=D��jh�]i
�0^�i�b�Z=�?��إ۷�?��Ɗvd��ZL(�W�z�@*/oQ�_�,�1}����A-��o�.N��x|H$����p��b&����Y�5�Z<6ř�z:�*�Ձ�������<Y�+�1fE+K��fe����W�e��G�<ȳW�W�V��;(�z��.� ?��z쪠uyj�ڵXw��)�\m�fQή��u�e���(m�۽���#",Wj
ţ�
A�XC:^N��$SEj�թL����g2�T���Ӣ@����Nr�Q���q�W!`��.�vG�����e���g.��b{�ډ{����c�0Z�-��uo�]���|�a�!�(���4��iy�w��a�46<y坛�Nk�~ZшdI[�Uz�H��͒�N�-L���`Qz=Kܾ���rQ�p,J,Fx)��Ħ�Zj^�#���O���WH�Lr֣C���a�޺�l���-C��\��2��Z�ВX��TRN��V������9����{ì󖙥W[�YZ�QV�/՛���X�^[�p�{'�Ť�q�Vh]���p�.Q��Pw������:`Ս�w�r���K*��#W������{�<M�
f�增�)���na���jE|�ÂWs
���Dͦ��
H6˹N:K�"���6�Mb̮�~CE�h��#$�w�DS*^������b_׼���M!�A
��M͂,���Z0렲�#������+�Y
E�	��ZHo�>��k��\���"���G�n����Y#�e���t\����rV˥ZGyO���G���'K��oQT�.��A"���B�����.~�"�a�-u�]ˉ�YPK�g�+^l�ъ5	�X���r�(fe`qbC�tf�ҊP�5�䥌��\�y>+pe��AvZ��u֚.�Ơ5�Ub�v������B.b�қ��d>�O����b����c��Z�a��ߩ��)qf��N�|����׹ѝ�Ż��~�"����!�ӿ�Ӳ^�Y�W�E>��Y|@�R�8�7�D|P�z��Xh����-Y1�%V�}�=>:^V^uV�0�	K����}����.\:&���xo(́��50��d��#CFI��)�ؠ�.ס��v�
N��i��Ok�cCĄCRY��Q-�k�L(l����"<Z[?�OŨc��r�S�-�ͺ/{j?���_]�D3�/Y�4�5�D�0	��?�30�ٱY��
c���\���V~�����U#�ZJ�ʹ��2�췒��i- �*�t�&�
�L�?1�S理+�e�tP4zN,����g%W����I��Ն�J��_��k?���`��H�"��j�{]�k�r<W�J(�z|�Z���q)�lOK��y�S6X�,O?� `ӿ���6?m��ÿ7�a޴r[^�G�z(��:�V
�V�'��O|���^Q�2�Ր��	r1o�VRǾR�����g�ju"�vc�)��M����ӥ�\�ע0!�\7�TNPT�2.�&l�8�!(6k�.���42��)y�檈_���xx���ؖ-�R��N
�\Q)�dh��bC$K�Sozl9$L?�83�5�F�>2^�,�Ƨ(�%h�����оp��+������rdH�e9u�Ɩ�VN�ߌ�%d�V�3u�h�1"��+$X�A���&ǎ��Xr.����C�J���l��p�v*7��Y���n|'�2+G�쵟g�e������`�G($�f�3�<	Za�d4N+��=%��Ͱb�UZ[h�0p��R���Z�<�G�xrִ��͔���-���n�)��g��x
䩝�)�
�\�_�`�0���}���G�Y�׆>�y�jόO��?��Ux�Z-�UB��546Vi,j-
��`M��h����P�r�-nMp\�zZ�K�4�?*y�\����3]C��7V]�H��;���x�UP�51��­����,��V���3��
�K@�,&5��&�*�J--�yF�,��c���b�����<���*��O-f��jŤ0��yy�pZ�yreh��ւV�y�ZH�rb`Z.4�J��p)��)%�)u��ȅ_�wdD��%H��<�̝דs���_#b�2h�I�K���W|����?��\�?�kp�iKA-�=w����?9.����e<Y`�Q':V��+ӽ�V�݈�7�{����ڥ�-H!JIӽ��ƌ��*Zm`U���X�C�:��)��N���hzOY �� ��@�%h�ټ�u%�F�c�d�
l	8O���6����<,-�,9��xΗ���6{*�b2v������FN�*��s���/`�3h�}3�׮\��y�|B*��AFkێs�~��H�\	N==��"\TIhJ��ZZ}��T4���1�R���=kd�T"�'�TkyI�>��|p+L���L2��Y(*俢̲��ݷc�����Ŗ*�G�x�%�,Ck��,� {--��B�(0fuB�U_��7��
�LX6�)��W�F
�b���>��P]�x"x�$f���OG�-|�iv��)
��4�]ZqZ��T��VnUZW-��8���Ą�/S�N�b�!I%�5V�YM�A䴔�¸b��-��X"c�2-M�N�P�P�%�[�KӁf��fE�,�%�/��
d/����F��R-3yX���nq��$Nx����F��y��I*�b��Xـ��
Cq�����7_�(hx禪�_�i�Y�C�HQm��,Ń{�[F��Ǖ�rf~/�z�Ȋd ��u�5���󄲅�`��g�Hǟ�f��T��(Q�r
�#.4�XV4�i!�I��'�x�4�z>HrZ��b7�D��8y>���!t�i��{-c+Q�|���F��^Y��ɉ|v)�*t��#
nЂ��ЛB�nƷ�&7�$��/���kS%r]�L�棁0鰹�n���V�'����Vh�u+��ɳuVա�"�̲Y��4���ccC���ԃ7f��8[�����j4���!����i�ɪ�\�1�
�ʵ�Bɦ�j��Zb�x��ר3w��.��pΊ&�hd��g�K�<6\R2�ubQkqI�
��̗"DԂq�ڗ���a��P���}�tC�oRO:@E���_׬=~�/x���Z7��4��LJ��DC�CĴ�̞��Rsyؒ�R�J=�v��G���\B�;�P�>
�����`V`�	-���xA����V��
�uP�BC�Nw�2�x�b�|�<�%p�	�L-���"#o�E*>M�)�
��Vi+V�k,�)��!jp�]�w����`֌��;��r���'N܉�bl�+Fܾ#�J<,T�b+jK�;39:�3��q��2�Օ���K+/:C�@����aƾ�'��u�H,t�V�h��V�}P2K��m�xF�0�%�i��Ml��Q�LR��OG���n��/*�H���c
b?����A���hof��`��逺DW�&�3,"F������jQQ�X�%4��-�FYL�ZfY?�����C-j�/.�{ۓQ�v�;| ��	j�D݃B�("�F�x�K
�ȳO��K)�Ͳ�9΂��ϊ�̎�y;�M�U
qY!20������r�
�a����ޱL��~�X�-�
)��Q2[��Lj��̂N�j��VG�]։�*.<^�,3�-t���k0^�;� �1<w��F+0�Y��J���ȅP���S'.�@Ē8����EZj�2Y�eu?����n�a���}򃏴�V�-�Ԏ�0�5=M��)ޚU�xz9@�fCO�`������C@�"�%��ڨ�h����=�
�;V(e24���4(&�,�-:v���?��X��5g��lj��K^�0r_r[7n,��O�`��g�!]c�d��~��~p`�z�@+�읻q�m��i���z��V�O�ڡ�*3Ke��B+��ňu\��V?5Ў�!I���ӣ��*	Q��S��2��1�nI�T���lq�h2��oPi�:y=�\��A&#�%hYE���||^y�1��Qb�ć�y���ִ��J�*Sk�����U�U�IT�]I���Ĭ@'�����;^��ؔ����(h�����Zz�AG��!=��֘�'<���3�:uZ��
ŇM2
�\=Y-�ZSL����]QahE{C�uy(�g�-�=�ߧ���ը홮-�mZ�ե<s|����M4���Ser畑�q�Y��
�4hU��1I,�4�f 
����I��V���E|�#���ҵ+�3c� >9��$��0����W�n�ë���p\-]xm�:�u�V���~�Om=����t+e�[��A��y��:�JG����ňw2�x���:��vU=�*��8���ZQB4	��b9D�7+��71�Nl>�����.#dZ9R��PZJ͒�V!�@a��x	X7�W6[–���f��z���eu.�`�dLq!'*\�k�
��z!�N�গxD��P��j�Q�V��p���}(2�-Z�����!7p*�~���J�ίnዘ`(��xLgehI�IK�.�a��h��tV@���>�:��<rS��ԃ�a�Zf)x�V�U�Z���ġvƉZ$��aCӇ޲�E{�j�1=�hp
�FFff�K?�Ņ�)�r�?u.�����ի�'Id���+�/\�v�J����\�y��FF�P\��^��_��������zΫ�lŠ��:���r|�8Ȣ���`��3�g���6$�5qߩ/�jH@�N|I\�ltI�":44��}�YE
��,�-�rXl��b������
[�ǣ8I	�k]�*l��ć�����e�ӥ��_$����6dd!����2�VK���n[A,vFY�����y����w�->����W<�`���D_琜�<{��as<��R���QkK�_B�Gshc�"��J�5
��}h�zx	h�*�X��lh!Ҟ��d9-2쮒�L(6�8^�F��x0�^侜���稠(���iB�8SG�h|��Ő#h�/��z,�Z��yOadw�.,�N^�pj]�29�"�,��!+r��N#G���O�O^���zehm2���u�9��s-i�6�A�њ�8�����@�)XT���Q[�fA��\��#Yu�)�u4��-�Ad�Z+J�!�#D�+M�y�����4��oH�f�,���8义����Y�+tڊ�p�U���nl�dd.lj���ݖ@c��P�ZE�f�?�ч4��	�<�I��6K,2�\�!���#F���a����p�N�&����s{� �f>�Vzb�EBk�ߣ�p���Q<\7��*m�iY���	ja����*O?��x��ܯ�&4�+�U�5S� �r[S,m(n�iQB�՞���T��q��ϫ)WK|��*6�䷛3CCc�Q͢n̰&?��ڕ�ꑙ��E�i�3��@P�,�Ym�`�P�ʅ3�*�� MW:E�-��] �̵k�
�<��+�\�x�����.�,�u� q�Uį�-�)|�x0Za��
Y��
�(P9��lBx-��A��,��*Hƕ���r���2b��)���Wϋ\�J�%͗6��)>�x�&�(��5���g��K���h~����[�#D�A�
l��2�D��ZY�O���Ѩb��/)��g3˻�e5�]aJ�eᭌ6�%-.ȩ�eSZ�$	qY��d�╉�:�ՙ>�Dž\6���4��1�R���%C�����{9�+IG�-���2�K��)�fͶ�@�S�OZ��Z9���:�Zlu>��!�27��6+��ob�b��ZL���U}gP�9>ֻg�"�5����Z�-*c��mТtayqr��8Z%�U�pZ�V�\�q��F}֡��OSv���P�
��ʙ��a�n���^�r�̕�/��	��ZI���nA��S�bY|�z �
�����E脊�<��Řw�v�Yx,϶�t'dh��E�xu]~^��!��{�:
j�0��r'fv�`��:rV��Ҳ.'jI�Z(�*_��,�)j��:��^��ҍ?����לŒ8k,fA��+Y��Բ��PK�H�Ű^�X�k��B�QV��TI��Z�zVĆ�O�:�/h=m��Ц~x�H�	��b�1Ea-Њ�i�(3`hUڤ�Z���e�	`8�V���#�D.D:�dւ֯�f��W�c��Pʾ܆j��z<�ָ����`-5���5"����bN-�F��R�?ra�:>99�898�X���B���3�?�T�qe����hux 5U��9;\<y���W����3U�&'�p�b{B*���aֳ��,��F�Z�U
Jݑ��8PB�%�PL=T�彾妦���$��a�L-��d�\�e�VK�U��G����2��X���
ja��1��|pFK�vũ�4R��%]�`�NJn�r��5sG	Y�(�:���-
�
ZyZcܹ��93K̒g�����Hb�,՚��R�h���h�n.y.�٪�eYS�*;-
H����#c���]�uj�SW���=B��eb����0��R�
A3�ծ�(#V�4����z��UVJRj�Hu��ñ)h�=5
�jͣJ�[���	�+N�;���,[V'l�O�U��n�Φ�AXĪ�����LN􏌜�<9�IaA7��+0�uf��
�)<jD��|]<{��:rhp�™��_�Ík�
@k�Uį�Ph���9wZ��A-�[��Y+�$bmE=G�uY�
KT�P~?����1o�!K=��l��r���‡�6��e)��B�Z
��pň�S\RǨ�r�#K;�M	��-��+#:X��Y[��G>�|��?��d���l��"�N=��ŦKA��B�����Or�_Ni�_�poA�Z�^�zYF��B�Y��0߬G�
�H-7=�b�Cܵ�R���J9D�c
�f*#�ّV@��y�.���zv����'��x�8�[�,�����i��JQ��5]
�5�m=�Ùq$b��uu��0Zsj5:���J�2��tb�!�od|�J�8@�B��Ƀ��K#/�����NN��@�o��μR�>9Ŏ��y$jQ���yQOzdttt�����3W�Z ĻP=Y�pὛ�N+3k�� �B[�����x��zt���ဲ��ҋY��U`��`���Jyg��R�S *a+R[�\\�����
b��ky����JВ����e9-��Fu����Z�rO�MQ+�JƐ'���}M7��D>{�W,�d���/��B0�t@K��)9A��b��@FVK�j�-4�@��Q�u��bfY�-4�ޒ%�0Zj�B�̓۸<�,���*���A�@0,�-�TC�B����M:
YJ�G��8ƂH�a;V�'	�VK%5>VW�6J�j	Z��D��܆7�Ex<FŚ�Ś�P˥�ı������ �vL��U�设��_�<9<zd|f��e,v}�S�;9�;y�b�#�g^9����D���[�$,��u��5Ak��2��zį㴞�����g(gE>�X,?����^k�qI<�l��^9�T��f&����XEH�Ha� ��S�= 
ZoC���!���̘%j��\ !��
feb�8���-�עV��RƖej�Y��	��d<E̸���~�P֪��7�Ӆ��9�i�?E���H��2�-���P�2>�jka
���R�j��e��[���'G����Bj�$h�/��c����W>o�_�4֯��a��ԭ4�C�k^K�b�eA	
ԕq�@����C�R�?
��wa�0Ω�Tv��<-�xz����A	,i������6�^�����4��8+H,�V�ʏ���'�v3}������A|3w�O}o�������ٗF_:2<���TofI�tk�$��^&��0��ɗ�G��6�j<oY/��ŧ��ŧ�-f]�i�(�b��T��.�b�Å\ȟcvZ�����"xC+V䯐+8�K���4l R�g�UЂY�K+�F���i�Yс��r��J�C>ef%h)�2�D����� "���	�p���Y���&`eTb#ˁ�Q��x+�ߩss^^(?L�W�OB�;�;��Q�*������eQ�{k��JÃ}���o�]\��ճDy�G��7h�Jk5Zڸ�ɣ�_|�ZQ�����@Z D���-|TO�,�!�	��w�:��2NQ�~���/W�ԑ�m[6��o
��<U�U��Wr*����y[U��X�rQ��/���СhD�a���!A�%�u�ȑ�G�)+�������UH~K#�E����G�oѝ�Jy�p�]��Nk���zhhj={�����/�ڂE��J��� �9��b	Z)�"e��X ���$}Jg�^��!��6�_��EՑ��l���BvZ Kr�Cd�m�x]%Mm]�`�
W��E+y�l��[���W
�ߢ”��Ud߳��6+�'+��C"SKS�-)5�Z�V2V�����JS���F��~JI���KA!�Y
�GI�DKu��
����7������d���J�Ե����aUK�[>fś��cDq;��lj@��;EtH�!M�Ox-����[0K�
L0+�P#����m��
�s����':�Q�j��'r�!@��5!�dĢdhuq�G��}�%�%jqu����+/�ŕ
V��җΞ9�;yQ�e5
�<�'�"^�Zlh�C#�h���[��T϶@���;1���pM˷Rŵ#��a�i=�]����4z���4c1L��R��+����e���ϛ[����V�6�y��b3���cDQ��*BA�,q��ZI-��,�s�5xP���:���l�d⹌UԲ���*�%lŐ�sZN��[��_t�p�*�E|A��B� ����WB�Z��?2��4HVVԲz���2�Xͥ�%y<I�0m�}e �	�^�'�2�r�VF�a���}�;˥��v��,i�Ъ!1�3�h5�T��"|P��!��p�'g�no#nS�5�qEЊD�U4y�h%*l�Sb����/�%Ly�2�t�S'����U�]�!u�q�_�rat�T����	�!�5��\$���8�8��~��O�y٬��'�ap�(}�jJ�g�p0ٶ�>�R��q�:���c���>�-�i�?#��Ӳ�j7�,J�,�+.�����%j�SE�X�b��Jq[��LQ�D��̭���<���A�����Wꋚ�Ŧ�7�L���Z�\�����BhHG���ˆV�ZH��z��>��<���`�-#�g���X_���BC!K�-�	�6T;~�I)������q��*���1�����i�6�Hs��h"�M�\yy�J����%��H`A�(ǧ#?e�a�?�g:��+�Hy>�"��m�)T��Ip�`p�2��3�l�v��?;|�%���:���~�g��?^�v��&�G'�������������\���>(�Z�]x,0dL)��@T(��D�)h
#e]����S�ɥ᱌,���<|Zy>����Z++3��Y����̴��0���~z�\���\�U�Q�^�a��X�Pl�M�����aa*���һ�P5�YD�.+�Z�:�����X�g��w�������$�y;*�jI�x�q��Q>/�u��j2S�2�1�elY0}�o�7��2s�w�I�?I�W�L����y9ێt'��|߶d�\y*�"�#�e���N�����#>I98�7�$Q�
��0K�0�-dh펅]�\RU
cɋ�[Z)n��g>�S�EB�����W���+^ze���Ãrt�⩎-^��xB*�E���N+�S2S�zH�댸�G�Q����ⶭ�q&�u�'A�
dY$�#B�8	Y;�q]H��S����"SF�,<CF�~;����,�eh:���$C�;"UD[��ZvZw��&h����b��ejXz!uu�*׫����<Ѝ`�p�ɢ<��Q��H	y�Dl����V�)���O���I�S�����
hE݃k�{��[@���9��.�("�L���*��ub3��Z�U�ܱͲl-���A�YŁ�M�\��#'��C-�AL�8��Nw�8�Ye�u��^�u7g>��QeuD�/��EE�2W�u��g��G	���9���6�!��b���S�KW�zr*�z��h�@Z���Q���:y1Z�h�2mV!H%]���H�[���'��������٠��]ZR���C)��կ^T�9W��+�Hd7���_��ka�@�6T��xq�V��L-v=<���M� �������V+��JzG�in2C�p��(5%�6��W�G����Q���n�˂��e�l�`�-?�%���R:���Z�9�R�sP���G����͒S�k�G���T��We�e؝�j�3ߒ3j��NwBBK�R��|D�,���Jl2�b�v�wOxXel�̎�ϣ&}��e(��P�a��E�ܽv��K~S���b��GΎ���Y���<�h����U���2��6`$h�Ā����f�h���}D��
+�`�֞�h�H>1+��@�3� �䴜�Y�a�����Y$�_T�Y��b�Y��s�)!+h�K�
�el5��s�Y9Jd������q▤;�>/�	ZR�Z:�*T� *��ReSz���Y"p4�s�҈[�T@k�`�u�a�0[���:�F?�ߨj�!+{I���C՚���b�L|&��:v��-6���^�7Ky���|���*)��[B�ƺ��C��4Ì��m��Z�Q�*Є�B�n5:8�DAp��.�0K(C�3q�������H̠�9J�A�z��&4�en	J3�xY��B����U��>����PT��.ud�%�>���&��Z�iy��j>�䧜a��鳼	�DE�!俶�^���Ae&KE�^W?�Y��E1�g�/�/IFj!�/�}I	�_��A�7��H�;DD��(�m���hI��,�.n�[1�"D�[`kd�K���y����(ӭ��!��/pd�	���X�ߔ��j):��2>s�ׅò�.FK������㨼P$<J���ֻ����Ti�1]�
h��%�F9800��Z�������C)���^����=YR1�v����\6�)?P�u�!_������>��^m��x0Peh���l�n Q��W��G�h���5�;:�\
�`M��.�>ezep�#�������u��E�ҵ1��Jf��\�o��N�YQ�@Q���Y�aӌD���2;7q�"���52a���!d!�\�-���8�Z��OԒb��|�L�_�I���;῞���Џ؀�[he��v�!�D��(By_�
���0�bj%�N'�~�D<d��&r
���R�i��-*�WcwV=��#,yƎ�e���Z	��|��!�^JK܋Z��S�8/h5���婜
�ԕ�ѓ��R,Ӊ���Cc��R���� �ʣ\j��g�VMp�5{Du�봙�ī�V�,a�$���V��߼kN��`+��D,d�T�"2��yhq��L�N1��e`>Hƕ���P�fyU��3�xw�aP���ت�c-�eDe�u!�ZUf��/��O��2�4C6�c������m��o��r���0�H�ׄR`b]@+�N;�
��:�O>�(�b��̊>5p	f���z@+��L�
d��>^�RRj%�%T�u1ȊԖ|�ѕ^���l����!����m��e޴��5��2���pS�{4�j�
)�V@Kq,J�B����#�Ⱥjjrn,J��!���TSk���C�������*�q"�0[>�R�+2�+~�W���na�i��4����+��[���J_�)�����#��&?o�FF���Xv\��‹Ym�$��7V�w��)���+�
h߰�G-d2�83���eyTD�q'������E�p�Ϧ�%�ГR��_~N��D��eCu���+4e�Hл'
�ҵvhE��i<b���а��,M�UJi�>���[�Z��Ş�T�"̒���!R*��nZH����b	yqI'sK������N�ӰM�'�`e��UE�}%�D�����'`�"����鐨h�lh�	�,mP�=5uH�,Nt��h��H�Zl�Zl�P�!��"b�̈V�,��:՘�v�a�Y��0[k��̟\9�)�6�WG��[�\�UBA�J��H�XvSG_��++O�1��ě�o��լ�V�V���g������t��cH*�h�{RI��L-��T�s�Y�b�5�P�<����D�L�8��J
�JX,�W�U�3��g
�zדQ�nx�ߟ݂�<�����r`��kL_Z�1�X�h[:q��r}.�	ZQa��l<9$���J�X��Q�h�Zm�
h�h��/���׀�rfK;�K�a'*�D6�
ɣ$�P���in�;Sj}l���xe��8�z��D��XX�bގ�@��Ző,P+�f�.��J;��,+=Y��d<51W����51�Ө��D�!���&�Eo���U�9r�R���A%c�֤��蟻p队�e~=�rǥ�f�!�I���%�m�IY���Q���f�E=irZ��7��� �>p�콚}�G��
M�DST�Z.b��[��n}ą�^��OuȔ�������*��]|��+��C��O����g6��Z��ֻ�X�������h�H�E�=w4Ň*�u�
Z�[���{Kũ�O�D-���4����*�eA-1ː�"NbY܌<�����J��jcZ�Gf�2���2�2�Җ�er�a�|X�`��Pf^{c��-�K�����)��L-�{�k(}iKkU�QC^�X����`�hu� .@���W'���'�]�к%1��K�Y��	�U@eh	`}'���V�V�����|��Fɯ�ŠO��lB��5)A��t�������Zd!�
*��N�z(G꜍�P��"��)��R��tp����_K�cK��Y��)���9�۠�*����Ů�
���>8�F�!�Fm����T�l-�S�#!ݠm���(A�A4��"bi�A}0�7QAQP�b��o��>�z+E���3�sj��[묽6�=��s�	.9�N-�Vd�]�%��tV�Xh�"��֚��VQ�k����m}42����a�贜��U.�O�D�Y��^f��X��X����Z�;��4a!��N��R#-b��Fe�R��˺R�Ckj=�����jd	-+Z�C
�q�Vl��3CE�)9-��ВhJe��)��NX�qP!K�,��3]�Z�"����+`,�XyLHJ+x��CU�'���0к����Bߣci��'��2Y;�!ym��>&_
�l���`��v�b�X�EX�+$�/�ILòpF�,��u-@\__����F,�Ԫ;G�D>���I�rX��Бj��H�g���1؊}�����qυ2��rMd��B۵#�������t�p�8N��0��Z�r�6�U��gz�~����i}L
j�d�X�Z~%|��(�b�N��o`�p_Y�"!��y-�����4W��#�`��zAX�d�*���U��h��4�V�Z�1�RRKf
l��$��	/�
��W�ͣ��_~򳿄Z"�H�D�G[�!�ܙ�
q��V��e�ޱ0�-����S��53^�'1�S�P+�b��e��j��z�(��j��b��z���S�e2����B����)�6>[�o~#�^B��$2�v+�o��{��2��o^��P��=닠
���<�p��xP��<�HA��UsŃ)E�34��<�3�#>5Lz>�JTX�K�^މ��V4[����HI�yj`�!�E��pZm�֢F)�A
hm>s3FBkU��5�Ph��y���4���o�_�(O
_�b�d�}R�:SX�,W���|1KᲞf)|��
j	*���W
�ph�'�4
�Y��.e�B����j�
U��32�At�QB�$�a��r(�r��4�lL��V5�E
���ןQ���rԾ�N!V^i�,�B��iB�A-�ک:�%Wi��\3��o[�*
i�� Т
e��~�uŹ�Y�V�w|��0K� ���<��ȬR?e���2[����Y�fk���̬wA����{��rj˔A�V+�ª��-`�^��U�ZU�Mϟ�#h�FA��b���
��
P��'�Yx�C�N̗�Ö���1u���^xȧ�P����3��$��r�L�q����p��&� 좦h��{�[ �q�@�dL���c�(3z|?�xz���ʾ���0�h�-��Z�,�C�C�e(���ةW�{3�la#�0+ȒZ&��ڇ��C+�-��T
����Z���A�������W�ׯVt�V�ki��S�ċR�/�l�~���n�o]~k���@+2ㅜC
�URX1Z��OR'h%�l�Z��<xX��{�
S�l��6���!�E��i�–,����_�#��b�T�sm�
��ƽ�t�ڽAOĘ���	l�d� f+>��CvHhY�X!��+hmlN��>b?IV�"2�졢Ô�-un
��Y��s	UFAU6$�:�U`�jզ��f+���
R����<�GYOQV��t]N�Qc�R�^E�*���Y#"�5W� ����<�Uf),��0��SCkɺ�c�:<ZE���J%����a9�b��ΓZ(ǯ�i�r��5��W�VZ��/�M�j!*LETCkY�g֒B��l�ٹf�kYRv���$��=YV�S^*^��U���fA�@�r*.��r�Th���N�h��g��ܒ��Z�Xm:eϚz)��%��[S�u���KkI9��kC�C��O���f�^�Zv\�S(���e�UA�j���/M�7=SXT���U���m���qpN�Η-[[��x���ZJ-�YS"����V�U�B�gdC��U���zM���M;Ӱ���L���^P+�J�X֫�[���b��4<�BO�Y����2NL!<{M�ih�h�D٬[N��V�2Z	�6�||���A�'e��U9�0�v�J-A&Ѹ��6�YՈZ9sQТ�F�c_��i9=���{<p�f���QX������aUffS�P��-�Z���-��j�!�W��@W�/�����!>|n��&�T�FWq��e�D㴕�E~q��y�[3�r�B��Xr��#��VH�._�Y\VR�S#PUH�`@+��a�z�-��'"P���t������ktx�˰:n�<���Z�.Kh�D��z�>sZ{��T��(2E\!b—xl��ك�z8EN��'d�R�d�e�4�B�k:,��f��Yhq��к�����ɉ���2�V�����ql�Rhb/MX堼���
N||�Q2��B������Z�	
���qi���02��t��I����Z�
֤�Q��Z�K{�2���ß�C(�V�$ޟ�ҿ���'N��,<��Ӟ�̦	����V�ǍZ��8��)Bk�������7��=�m>	M��+���c6�>�v�12�@�A\6��6����N�Q)�*C���*m)�U�n2v�����A�Q��4uQ�-E]K黃�W{.�ʬ�i=cQ�ō�~��ڳ"�U�bb�ӳ��C��y�PKTY_����<�����bQ���zv9�i��S1[�������9;2k�l�*r<U�b+ᵲ�~�J\��g�fɭ��UtC��Lo�Z K��Rp�97�)y��W����A�~|�7Lc1D�8��Ҝ�h�Ĉ��Q�&���]X�[ʬ��j��{��[�*.+�=�T�ԕ�Ѣ���;���+���2gpk�ʗ��ۮ	�6X�Ќ'.ӿ�vZܼg|[��±�Z�n�Q;-�q�,)�j�ͰVR)J�e�+��D���A,M���2�����*f�g�+�I�zDÞ��"��dY������Wu��|D�5��ENZ�y�چ��Z�rT�_��"~@�5���z	�t̪����U��+
�^�g�/��q�j� n\��*��@���r)Ο��=]� ��7���3�-5�@h��ȕ�5YA���ٲ2^)�T��׶浤j	-�sn�㸮�Q���jU��Ⱥ���BC�5K��*�G+J�����*�]��|�9���r��§���e���������k�!e�Zw�<Ci"
������(d��-��q���[k5{������-��Fe
ͺ�Vx-NP���%���"8����y`�lͧ�K��/U*+�v�<���A�D��L4�;,&e=�٩�Gu��a��CF�l��4V?�-.Z�� ʰY5����μ�qZ�@5�0V�U$�S�e+-�L�s���w�nN*3{�^��~����x�t)�3�"CD����
��`}<����,N�U�A��o���je�7�-��-e@ű�5BT`�Z�Cu1`�jj}he%�����B�>RВjU8�h�(�x�Σa5
-��
��J�,�`��6@.f����Y$���hؘ���A-�+KZ,�NJ+ϙ6�ZJqɦ��to��,��k�;^y�a�n
f�G�h��=>O��8�I�����:�
��%�l�5��ț>v��=Ъ�\��>�w�^Q"����UyN�:��C���Ɋ�On?��s��t�#E��9�*�1:�Ʊ�MS����3I�.�G�Z�ԡ��P�u���<s��C�_E��W�	� ��!�u�E�<|����ZR+���)e�(���ߪ|��iA��/�BB�5�Ğ8]+]�r'�2��Ѫ�ZC���b�n�V�%��k�pqR�%F�2�;�+��B�B2�Z(��/�j
h��%���r}�oȠ�j1q_�� ����#����pćBKI��E`E	��{A�<ÿ':�hY��i�:ߡTqk�qS}GU�����33w^J�j[�
����'����fi/�9�=���*�G����PY,���3��B�B�4U�	k
��za�9�GB8���I�I1@�Ė:�⵪$~fm&�<�������ߪu[�-��SE4�fq�3^�g;h�y�/��!��"^`�´�xt���;�چY):�X7���c��2�%��'������˟@2>��O�bM�i	���_�L+RY���Bw����Z�ݲ3sy.�DƁ��YD?�S'Vx��,�|�EP-�[��mu��XrH����@k��+���[�8�en!��!z�����\�:R�5�å�����o�=�-�J��;���(��
Zw�=Т�a��ƒސP�	�ZQ?l�Sk	�<Ł-o
Ʌ�آ�͞1^����@�����O/�6�YMo��V"�n#�8��Z�hX�Y��� �D�d�W���*`��ĒKX)��1Z�����pZBk�+�l*f���?��#N�.����)���4GT�1^�W���μrgg�Eh���3�|�����i��
��ȳ�t~�uq���������h��g�vЂZ�fh݄�b�UOO���i��r1����!�粺%�ZJhY_�j
�Άրg�l#�B�Y�P�z�W���).�0ʷ@K[-q�q՝~(V��S���%��SFNe:t���X}n�C�%��i��ja����>�
��Ί��4Sv�t�o���uZw'B�4.
�6sQ����Yh\'P\�VK��+��t��TX�E��l�y��p��q�̼oh�v#ko�FZ/%�P>�`B�8������h��![�*T�"9����zŠ�C�.Q�gH�#�P���E�Fv+��=��y�\mTn�qq)θz���0��Bh���3g�2�Iг���o�*�U�<A|QQn畀�y�� �|�k�V�V�PaVT�L����量AxqI^�z��kf,���(>�B��҂^%���db���]u�1�����b�&�r�v>K�J�0I-^o~m�Lb^�-�ZaX�U�����ڮJ�+��xр�cS�Z\��֣��uU��������?��,E�,�
��o�-�S-��.K�΁��[iU��9>��@������aD&��ɭ�W�e��ռ��JT��nMÕ=ݙŗ�, /j�\�vm�9Qh�-�Q�d�8g'�	��	A�QU=��%���|X��|�w����Y�IU~Mh=���T'k"F�?�bj��,b�����d�x7�"ϧ�N&�>B̸�[[ح�I�������"��S����Y�֞�ɾ��q��Y�;�J��[�˪���o�)�NO,�ݜx�R"o2���^��I��!~��Z8�Q��ĺ�2GbC�u�JA��x'�Ъ��E��*bI� �W�^؀�1�%D���NޚS%�Y�K҈�l�}��5�XU0���;�t¬�X���[!V�	�!�?��|Ă�0���ŴC���4L`�p^�,��>�_���'�!��2d��K��ջPQ�&�6r�4��.=l�֌�i�bli�uCD	�q__�i��7�U&�Uj�4U(`�x�ʏى�%Na�#C�n�zѰ�{Kr�S1k����H�����|���,qu<�� ��On�[��:B���ń�P��Z%Rkp����X�����*���<d���b�n��ޏ�"��B���>��������=J�S�6���x|�F�e�:H�g�b>"[�k�|G+�J�Kj�Y;��)X���Q�Z�m���V�,�6T�����5���!�٦2�GfE��R�[��J�Q؈yߟba]��B�,���Yl�7[u���|��j�
M�Ź�C� �=kX	���w�>�u�t�*է�9]�i�g��~F]����r�-^��$�g���'��DX��K-4Q.N�
�q=j�����W�m�f�壆�kcmi$b�<s r�V$�b�x4(�B���@��\�B_��j��Q�U�^�+�����$WjB��{ɵg��֑�r_�ghCo6[��.⸎�K�\3�7<�0KB���"��6�VsZ�Z1P/�����7� �#0X��y���J�ý�
���8je/���ќ�S��U��9t�e��l������#fK�"���n:���BT�R�@�L��p��j){p}r���&��1�C�P�=U%(Ȋ*ޣU�]E��W>��zG�:���k�@��{^��"E����bOo?��'T���=T�����ja�YS�[0[z2+�-M�O��3���3}�������B-af�~�^\�d'��2rn�̔���r��1^{qN*��j\I2 j��Aչ��1�W$��X�R���c��J�|���b5���Y��N�T�2ުjH�Md�/N
E�*:�>|��iK!�i����`�wvb�����}��K;�HǕ���:�����GDx�^��������7��y6��cD���@�T��+�r���#�Y=<A1.f�#%��V*�y ;-���ByM2���9&��V���Uw�`�x��8S3X��(%��0�z�G>�ÂSp"�*�h!�c����ÅYb�\��"�5�u )�"��]�C}?ȂR��ԊZ���f����Y���s�w�<�÷٨�	��G��n^��j^5���;3�Q7�Y�̪��*�%G�t�&��1Z�_����L�h���7�&���rb��M��8!��j�%K�VY��p"A�e��`����[�u�Y�
{5ʿ�֟��g�B,�Nq[�cZ�j�*݌�צ���R��:v��<ɸDa�cr�1V�z�LxE��1��#6��$k��z��9��ʴ(���1D�O<0����KP�p�7�j�4Gt�H0�,�P+'N?-�JF���Pyp���V����U�C#fNfMj�q+�
�FR�\�r�a$#�X.b�؃��Z�����:�"��
�ҝ�#�t�V���,��L�q��\
��P�4%��ޛ������r]CtW60�4Y�Yd��Xz��A h��X�u��r���ϞX�3�oM���x��B��,4��.P��K�)'�)����5�
�zPO�NªkG���]���ʒ_@(�����Z��W��`�ba�r����*v�7�FZ=	��b�sWV�Y?�9�*n�Xe�B���*ʸ��̳Ǖ����,�u�����ԝ��p'���n]���f��І��'-u�kn��x�
	S���f.���N3]WT�ʚbQ`t��X��Ԓ�#�Et����K�+U����Q�/��PB��w��
�����m�"�xk�E��@�Vu]��jh!Y�?�9�sSl�7��n�%,�V�]f��Ъ�ҟ,���>�g��1к���v[-���eC�
��P2в�Z(+��Y��X�"�N�-h������2kM����Hl���B��r	��_jf�*_b�e2�&ˮc����-���kdy�.�-dhh�����V�,u䑹%X�}�7�Q��m�j�X��s����B�4�*�eky|�9���E6���ji�8`�6���X/~� �;��v��a�@�Ls��iߠ��L�ED��~�M���'Z�@+F�z�[>z�M�Hآ
Y6d�T-/M�i����©a�P
3�b�o-�҇;���RC���^k����8��O-���
������ ���ie��f ��`�_<a����(����J��;Ԃ[�FSh��q�LLhٍ�����uZ&�(5:L,H��(DZ+�b�%�ز˷)r�Z�^>+S���w��r[�*��Jn���X���hh�,�֚�Z]�&��d~�jXj2q�+�%�z�{m�BfY%mV�+���s��+���	%:�ݨ�:�~�
��̏M��;_�1sypZhNŸ��R�4��h��Z��%b*��`d!p%7yvhL{fE�N�Xg��zfUjY��G������D
[�܇=�pZ���z���{V���)���
�հZ��= ��Qz��z�V�&��ޟ��I�g]i%��WU��W���-�%�T�1]�����xoB�A��߶�,ѯ��f�8��s�Bn���B9��Y^�@�-�@KLZP+�I�:�I���V�;EBtԒYoV�=�+�Qh��1Z�&��Y��
o�Z|L�9oZf��#I-r�E-^NjY	���U�YA��r0ѵ����qwc�W��m�<ʬ��4��g��+�6�ܕ����¼���uhʼn���'ZAؘhh�=~����=���9��ZjԜ#�%�_�����fu}c��2�(��|�(��)A�-�Y%���>	��xǵ�,^0����6z�<j��m�[�Fo�񄇏 ���� �a����Z�q:Un�rf�z�
�*H\cmi�V��ohA��l�s3��C͗<�\��ʴ�@)<;���-�q�`lf�=�7ff���m�ؖ�P��d��rZj~2����PB������o,�x�Ft8��*���Ȑ����n���Y�y [szΦz�L=�&�l���GjK�š�=@�3>�[�KXu��	`-�j5j�=�M.o�G}J$u����ױ��f���zYK
Z.�j�hAK�|غQ��J���ԣ���U��{�ti�b�0Ua��
�j)j�{�o�J:(�8��V�*���2��`�k�i�oi�b�yLx��IJR�2�S�٬|�2��7
W�a���">����t�i�ՠ������Y�<0D9!���b�ioJ+̊�SG�.�g͝H\�R k6��c�i��7m�pJ�5f��W'S����,^]��3#��-ZFh��O�u�Z��B+�T���[g�㼄�L
�L_M�R2ƍ0Klɬ��"��=l
�n�
ؠ�x�
!a���y�z%+��}+k���=j�*��Y����^����[>K/l�Z�+V���(�j��-6�!j
5yz����݄x�Tw�	�De��v
oU����EŻeV�I�W�F�,��9'��i[6�'��`SQ+�qx�1�u>�:����o��`�K���E�jZ�]\���<6��P^�^p�­�����r��>�Ӻ�ӂY�)�YD�2
��OW�\���N|�U.��ģCZ� ��aPE>�Ѭ~���V�Z���E-���r�4#�O-�W�u���]��]�ז��2V�`�2P��tl�.��a%��.��d�X�I;*�B<]�Z�dn6�rt-�d�$�c�u[���V+�b�f��6�Z||�jQ����Аu@�l���N^�rP+ �9�j�ӪK�yqZ&YP3�׵�U jdI����zd���F�U4!��)e<}TR��k�3�cP"�8�sM��L	L�j�������
M}凼��Lh��9x�T�O2��|VOܢ0�HFi{=�M�j���pn"k���M�2d��>��4T9�<����ُ+JO�}V���J��-�{���V�Khq���#&8�|l��к�崉 B�^���>-d��0ZA��9�jE2�5E>g�U/U�94����%.��Z�4%�ө�Z0��W�
��gb�\��E�Z�a�����d	�QQ/ۀ.��+��9��5�MQ{��m-�UH���3l`��@�4|h��_�Z锸L-�t�N�4{�p����j��g�m�"/R����/k��Z;��+�Z�@�sk�-�u�i<�Fb��Q�1��U��AM�G�Z�ΤVU6���)Zu{��Y�V5�XmQxZ�R�_c��Y[[��Wy�����g�u>�k�ѧt��8� ,�YN"�\�4�SA�r�墕RW2+��ɶ��'����7����a
H�V)�B��'�dov�k�i���ê�2m��Z�iU����Z�05�8�eu|U�K�5'O�pЉq�UCު�q2b'��ÇZ04���*߰�M�)�Gx3��W��-E3���`,�Kі	,cD��b5��f��`���d�4[�+���"�(�2>4�u��u��ɬ,"��%�o}�֓'/|���EBk�}�KT�iq�(�,���V�UvZ4�A�ԍ!V6���禴��,?������]��x��Y:��e��d�ͤsC������N. fSR�v�5!a/��D٫Pk������=?��>N�R
@��}�|N�U�7d.=Sx�.�&��҆�[�J��1�!+�VQ�ŷ+�_�����>�ُ��5Tƫ0����{=
�u@�$�`�z�"D�D|9-�uS�U�
�LkU������N[�Pȸ�KB�|h$��
��Z��UN0t�32m���(Ę��Ө�:9j-�M`-�u�8����n
jUOz���K��,��A���W��ٙT�QU�J-���sB+����֩s ��B.fH]�����…[o��E.N&��V�����Z-SZ�4��c�r)�TO�R���V�%Ld�X�>��_jqi ��9�jZx��.mc�=�ņ[!v��5�����͒]�037�srbG'��젌r���B�UL�	��n�82o�\"��t*
P�3@�Krhd�����4�{!Z��Ѹ��R�g�!'��E`DgJb+_��*��+L�7���4�K
-�C.&��N+�JVKU%���jq|>S�s�5Z�Jfuf ����Q��h�T�[�VN����ì�Z	��%�Z�m���N��L5�2��g*��S��<�r���XQ&"r�U����2w�5{eUh~�0�۹j��+Z�5��3���:nj��Z3���Z��w~���w+����L�Z'&�tZ
UJ	
�g�91X��YIj-��,���eĕ�ZGZ�hv@]��J���pT�;G�c1��-�БJ�ݶ9�}@v��AND���͘�!��P˅���I�@o�r��ha��b��FJXj:�k����>4l��g��3�^�
Z\F./�p����HrMo��D�f@X�c������[gR��������ҝtqY����'I-��O�*|��jJ�mw%|�"f�t�4}��i����^��V��������
�CTѡ!���B�+��M
^Eje�O8��TR
��n��f�ɻ��X���V�ܔ-�+��G>!��J4Ԫ�TqԈ&~��G��Z��>A�II-��j��s�Wj��F+I� ���D�i���}뭷���>p�j�g�h�Q���'�*4I��BB��l�Kk���Z�cG�_S�PB�*����A���~*��Ζ76:��8��G�SZ�q�&
4R(��2['N�/,�����L���t~����ػ�K���G]�����N�.A.�8�@봍e^X�X5�@ml|�C��xzr(>�\��Em3��?'���0��к��y�v��7HE��_���G?����R� ���j�Š$�j��*>?�b��,�@T���h����2t�Hn�2��
������%�4[�à�5�=�dI���#�0��37����^Q͌�]�jU?@es�U��?2�\ģEK8�f��;�,�E�x10����JfU-P�=FS��9���j"��sY%�^�,�x7�:y��E��hZ�q��3B�&�V��ܝ�R6�|��2�5_��6C�E����:�d��
�>�\��e@��
��o�!v�:�
��q��Z��
.��
k�����ml���MU���*��4�8�Uߩ`di-�T-�|��SE��>��G��Q�6���ɪ��G��/�B3*$,|#����
l�p��=�i����qK��}��5�[ZD�"���ʸ���	-X�l��YR�y��J�+b$��ղ��^HZÜ�ӏW��iQS��k����nx��H�r�h�E-�O���|k�\B�`�<:Y�B���^qI��<'�.�Z��lhX��oc+hq�i�պ�(R��m��;��i��.X����U�
�rz�TqKd�]��n��:dt�AS��]	�X�:�Ʃ׹^m���Y]�4n�R�o!q=���Z�ܢ"�H��F��x�3רC^ݰq�y���N��Ɗ�����P."AU@V$��}��Ɋ�]�A��<�9�K�����O���F��#[�L<�p�r�8�e�q���;�r�漐Xq���f?�ة�\1aa&�#�2o�VWdz%<����Z�4��d+Y�t\��Ҭ�K4Z�uMh����Br���>�N-���I3����C�F�7=3Z~T�u��D�C2�N]&ۍ�Y鮏Z���L3�?[ra�tZگb缄�f
q����'�r�A5�9h!��˲A:w���h��eם��/��$e�֢�yb�^��V,�[�m���Pk�o5��Mz,囻��١�Nl9���B�ئ�ݑ��(�n㺎�i�TZS�ɢ㱼�ȍ�K"
1 M��Bج1#`���Y?5��*��Z̕��^��RƯVen�%&��emZ�6�Ԇ�V��z��뚍�P�_���ި��L����*�vZ����]rJhI��vn���jH�C��Z�.�Ve��V���Z
�M�U�Hb�`yK�5VS��X��F.^-�ҖW=yDZH��Z}[�fhZ2���m25?��#�������>��wĥ����/W<��F�
Nq��V������pX-YuE�^�ɍ�⳪F����YW��>���YlZ�����Rknz-���
.o���[k͛ZM��׊;2��+f8X
=��N�������?�x��.=�T^˻�,ܵ9���	E�X��4���HJG��[)s���m�S���i�ULYp$�x���U�=��2��,7�"��=�����
��aD/��sF��z�^N\xy�C/
�h���_uZ{�=�V���'=��Zi9�C�d���{�"[J�pQ�.Yrk2*̪ܖ�Z�k%����T-k��j��uZ�h�5�g
~]AX:e�pLpv__��|U��r����y}�#{k�;+�rY�����c�V+#[84�������I��C�r�2���9��f�N��,;}5��'ϜXr#H��8����̞Ս���\�Pm��(CUm��Qc��S3�]�5��#�Zg"�'j�z�U嘉��_z��EXe�+�n�dJ����*�my���qV���*Gq��\�D���}�n�E���0���r��@�|_؛
1�7M�IA�X�dUj|�	����_��V�噍�9=��J
f��n��x�dJ�FKf��Zd��M3�=H-UfKϥ��b��^K�����w��U5�^����|ݪ�\��h�$��� ��Pk.��嫙5�U��P�ɪen5��U�?J�z�?Q������JJcU��E喪
qVuv�S���zCAkh1�gBk"�h�=>̺���V�j�4�f���?�;�hpqD}�LW{�n��Ƌ+g7��T[�1�pZ�r՚��Z��H{=F~5�m��M�6�jS�q�۪u�s��6�*w�i�Dg�W��i`h��\�,078;�^�D�hwE���|:�Ϝ��P�!�������@�Q۶�-%��G�]�V�Ij��R浀�2��5��b��Ū��*h����	W��a[�Y��WH�����|V�C�uο�� ��Z�Z��q�-4{�m��Y��Z��!٬���Z�P��]y�D�dB2Kb1Z>Q�W%M�e�zqR���ˢV�e�V�UW|x*0?g���k]��e�Li�qh)�ZJd!���9m���t�0m�k]
���]O�����*������Q��k���t.,�/�[LIުӦ��K��JäG:��E(�aw�Sގ�:{��9X�Ŏ��v�_��D����\z];M�o�ҵ4�p�o��]�@��k��8[����Z�*���_����i���RŬV+�Z�E�K�i�e�HR��� ��J��&�<;�,hu2^����C���{���K-�C�J���5렢7��:�,K-�.alUƲi����Fכ_�qmB������k�5�fe���
��� k2+�^&�R9q��ep������yxc�j�Np��:�P�Z�ޅ�g�Zs&��ⳬZ�v�N�h���k7�[�9.�E=�W1��[Z,���fB�-gy�A�֚s_&�5��Āl"}���&�f¬����Q��ƥJޫ9F§<����#�-��
��)�鱒벯`Q��@>������ȟF���̚����m��I�X������5
��YE��9-�4K�Ԩ�'�<U����*�%���*�v��0K�b�+�I�OZ����̠f�V[=����*h��h�aBK�Wk�M&��^���R1WU�>W�X_�'�,�j�Cv�������V��ة��ltb�[��R3���5X�1������V�@��4��k��ݤ��#�EF>bϥ����O��E��LJ�p^վ�=��+곡�.�`R�}�y�R�����{��f��!oM5���(��2�%�*lV��*]�^a!�L��R�=
Yr�Q�M��`^Tİ�`!���N�����M��ͧE�mɲ�Їf�אv~�v��?��ٗ�2T��/W�+�����#���E�>\�go�%���)��u���R�NX-�jV4�ub��,�7:�a��Y��Kb)}�Ė�\AV�e�-���m-�C�U��f[=�P�,6�h�zjF�Lz{�:!�T�4k VJ�כc����~��VC0��U�+�
���Xi�-E�i$�"��(�)�����G�Ş�.��o�k�0�BZV�Ep(�6mi*�6�h��~�S�g�Ͳ]����]��u�F����+1&�[S#�r�>{�͏�*��\�s3u�U�]Y/=S�G�-���90+j�,�l��L:�܌���"�hm�˖�+
�$��b<0(��-�U�_G�e��1
������.D#�A*�Z]��heY��Kb-Q�V�ɏ}���g�I�l��-z��<5�VC��t�[���}��
�j�pY����e�V�Z-Ʊ/�
-S�Rkj$�&�Nu��)x�ÒW���]t�隭�~��o��"jMbE�|��L���:�V�Z��P�&B�������Vbd��*j�b֝�з��-����\�Њ�`I�)m�R���
�X��YR鮼jf]WZ��Z���;y����=@�,e�VI��K��	.����Gi�gĦ5�PҨ�Va�@�\��Ƕ�E����-�cEh?�HH�ҕ_���чSd!>�1v�=ەϜ��`�n���P#+��d����L�v���#�5�5�%��U��,V�8Q	�2Z��K�)����岔FkR���9ƨ��l������	�p�"���V��߅Zf�W0!��ц��%�V�kyVk6$�c�Ѳ��
�Ӣ�h
f	-kP��6�"��&�֠l�w����c���FKh��Q:�GL����Ex�b��ܪ$<Ǫ�2(���+��;��jÕmAX��5!��:����V����~=���?]w����8&�C�d`*�՚��$�Xy/Qe;�e���+b�ĝB���	��gfLi���|(R�6���D	Y�1o�����?G�,j���I�!&�����/�MkӒ�,�r�����z����I���B�d�ɭ,���в3)-�\����
�r����yZϑ`+��i��%��U��:�.�*�Sʁ�FDI,_��:�9%��<�ŝ��	>�V��V�o��7���� V�E�̲p���_��q�%��&�ln�����N�Pu
�}��F�P��0j��䵾����n��Յ��z-˳|I�piO�-�O�/�[�Lk�M㥼P^G
����T:��T
�G�F�֖�P����e[��CӇ�U�8�e�5W�(���؈d�9������[%��m+MT�����'�:$&Q�g��9t�B�L*R��alr����s��NMsd��6�_=�p}���bw\FKf����\ؒYu�1�Z��-VOE|z�%���?a����X-6|��Q����͘C-:��.�*y.l9f�T���d��o��S3��1
G{�}ԋ����
�_��{���%O%��̜�X�>��WY�ޭU�U���\��STi!�$#}T�~g�Z�K����
���[o�pђ���Z5{�8.���Yd*���ȫ��1�r1���Ė�ckwE}/�����_�f�ϷfuSVpN"/�Yh�WU�Ip��IWSi�<Q�ӫВYf�v.Y���8�wOfC�%X�.�ҬV�`
�m@o[
���4����.���y�4���5��{I�1�9Sq�V���F��I8���8B�1���pэl����J
\y�j%0Tͬ4`N&��6Z�1���l��kb�;-����Wb럗�	+%��CCy��=�Tק�:S��!Z�ȋ-�J���u�k﹭+D;�5OC]�<��_�����CF�eXhY�
ZAV�;9���W/]���{��o-�iFU�Ԁ{䄞��l��4��C�yU[¬V�n7�r����XJ��k�IB�d��q�B�=!�����?W�q��?�|���\_�����]��t�в2�����Ų	�#ݨ��
�ջ��p��v}4�0Kh�S^���O��ُ�5;�7JE��j���ޓZH8����Q(-��r��Ɯ.�:6�C6���P��Z-�ZB��!�Q-�XJ6>�RV��f��j+Φc�T����&2�\٤�<0����|��h��Ėr �T|/�A����Ah-h��j����DV#+�!!�y���u鷿�
��p﷿��;>p�ݔ�Vw�yf�<��9^���a
rllyP�nN�-լZh�EY"�a�Z���S�-	(���2a��-�ݶt�P�>���,�k��s�_E[6�4@ ���Z�xS쵡j?�
KD���g�[���ZV"��X�ڐv���E�EWu{�u��p��j�2��rZ�kb-zY??�˚Ꞁ�,��RPJl���6�ZY1�ʮr�غ�!wL�7�4[��"�Yt^:H�5Q1�A�	t5��Z�}N-�%�n[@�xz-s�x-�PGOzB���Y1�9�u��f
�^MP��ֻ��jjMQ 
N�,�
��������|q���3"��^����_�3Mh-e!׋fO^.�<kL�4b�*�����S���7FJ�%�|5��4��Z��Q��[�3�{����ɸ���ڦl��7�w�X����4c�i7ƶ���0>���B���J�4�X;;�ibk3���I(:��J@h'T�‡?�h:�f�Y#VM�dʒ�f�L�<[x5>5�g>s�M�d����Nk�~Z �-�R�Ѿ4y-*K�WeWM��u�x6�[Z�,{lA���M#<d�]�:�h�ɬ��Z�3]ݱf.��b4�r�Z��*HBV��G�B�� r���Ql�@fM����`E-
�Y�q��?��j_��[�h��#W���ƪmV#KI-�
Z%��᥏G���9Y�
l��37н��t0eyg�.�yZ�;^[6��r��dž��bcWU?_luź�R�Jy�9���K
yS��%%�`�����\���%~C�93�k"��2j�YL�^��F����O�]�V7p��Be��n�Ӈ>�ne��c�|�'�h�墭e�Z5����Sϝ,4�ʷj���*��%�Z�.�(��S�;}k<Bl�e��k��F̖�b���Z9�0"�ʂ��i垴�M	����z�/�,JM���[MZ��2(0�bC��/YV��gS����E�;� ��Lw)g������X��c��:�>~��$ÛMNƫ����6Kt}|D�IY�^]:5��+�.�D�����ЂZ),-���oP��o}�k<"Z��C�_T"���-�T�@�=����%LT���j�^߶���"4N�9�Z9���WJM�m�f��M��T��5��<ZTl2�lU��Z[�vƆ�3\T�]�V>�X�q�o]K�Z%ױ61u�Fư���e.��=oVv�J��E����ڳ��$�⢡e��R��2(�1jf!���Z%����L�=7�@k,�j��
��Z�,CDv�C�B�r�gff���
<tZV0D�D��PN�1?�+�`qY�~�qMG�����\�b�q�w�/�uy���h���/:�~��%�Tj���VR�Y ��2�u��ⴞ�DzB+�������o��?ixHJ�2\/\�Z�,���U�ٴt�!&��pi�TS�/ŕ���u|�{k�V�Xm��P5)^�B���E�3q�8�����n:5T?���B,$=���Cx-�5I�\t(�f�f8Y�\��=\�*�e�h�ZI�Z6w������eb���;GJ���8��`Q�>͗쳊�]i�����h�gk�撈J�05�R¬�m��+�U]�FE|�䵊G����\5\��
��a����-�e]�=P�n��)KM"Nx8�TF-�h�U�:i/�����,T�E��"]�)�]i���+��h[�,�u�>5��z�?�;����2��?�]P7���h��J:�dE;Ҋ"�N��lJ+:@��<T�(Bi��hCAtSPWݴ��1�ʺ�g�5�cε֧{?�����W��)�e�d&ێH�C���`��a�*��V<y����G�x���*�g�}x��Gk�]�_�l5AV+�ʎ�{v
6�1�aY�G@u)j�X��,|h��j`-�/��Hh�R"ʯ|[e�|�,#Ut�_��{)�"�ԛ-[��on�J���z���AY?�l/~��رx�a�1�U�%���QH+[����4S�:��*e�"/�[���C�'�l���I���Zv�ѡ�+�ЂM֓ʭFZ���&9��{��"K�Z?��&-C�E)�p�X�`+̚	.gcNUx�,��k�8�X�Z�Z]�%�&�쳧5��
�~��9�V��ZBMd����jd!h�V;99�TdT�-�B%��ۏ~��,���Z��3[-*v\Wj��e����),��D���Zb���\٧5SZ-$ˢ�J��3-�!���Cܮby�Ty~��<~;-	�j��{k�	_:+����ب<�i���Gf�Щ�
����"�2�D"��o�(K�� �\z&�H��%���,�e��b�Hod��?��*w�Ə֚�o|)?荏�O*�k�Vs[��%�ش@T�֨�jh�Y�Z<'��|�E���WP+�Z�
�g�i)U�R2KF!E�"�B���.��u�յ
([���d�..tZ��<(��i9֢��x���Ȋ�f�fO��U�U�2oNh�4�G��x��T���6��Ha�n�Wy2]xSk��ij���f~n�[�'�����1��が$�:�5�K�'Z�$%I4:�i<U�0z?O�H�h�/�i��R�0�rd��x$9n�����'�
-���is�y�P�3=|��`��hՊc��,Z��CV	����=�3���DO|��߈���X#�>UM�}OU���i	�O���.X�l:�լ��	�V^Ԛ��j�W򊭮�WSX�.�Y<$������[�F��J�ǩ��-��>k�ǾH��+�.����e��Se�~�Y�C�_����"_��b�<�2�D{5��i��J��`
f�$T
�-�l��1��Y���"��#h]�st%��Q�l��e���kD�&+2 �P����� J-�M�<M����z���Ew���.󣂮4J~��Y�V�E��5r	�x-�r��R�w���S�}�o5:QhY{�-c8X�b�b��K�+��:�l��U��/��7��d�$���:3��W�y����w}�;�a�Ӻ����jL=�8q��j��^h�������Y�2�=��՘[�du�>K��F��.d+��O��x��rl0\�(�b%P����@��lj�e�'��.4�������r�N`�R����h-�ӴB�>�%�V��N[�{R�#,fQ���C�"n�k]az���e��d��FA��!*
��^)�I�������P��<
e�H4�خUWr��kG���Om�M����gu(�Zؓc�g	�[8,V�`�y�"k��v�oթ�@PrO�^�n��r>�q�5WM¢�੠U�Y�U�鼾�[��A��
3}�5l�OV+����Z,(������Ԗ)��dY>%�5��t��ZJ�{Q1�Պ�jnq��e-�j�x5��&6��B���t��EM��5�tT�ҴZ�Y9�+�,�r��5�ʾ������ԝL���V�/��seœ`��#
��M��z}=�V��4��-�����b��
�pZ9?P��J��2}���e°��w�dme;i��\#�5�"��|΍��Ki�*K��O(bI�%Hlً���5�ru��$��*�U�yO`�[j��?�a�\f��}�'��hB-�Uc
��*,Yi�y�0*P��thɪ;κ:��XВY@*
�`W:��w�u�����4�f�ٍ��Th0�7���/��(�

�$V�@V)����jI��-���x���u[��rŋ�4V�%ɄVu���V����ydVSKhT9�p�ZR��?���i�(�r$�r�C�ٴ�jjy��?�+�e��5���/Z���!��Z6�{[�	]�Ze���miB+�w��Y�**���P��dQ��<��Å�/���i��b�ߊ��F�s�B�����T�8$�����VsT�!�U���FԈ�M���]��[
��c*��9����]̩��*?f��m����2���֪`�����"�E$��Be�L���.�6��ǘ���^[�
�"��>r!����9Sik�Y�sI��v֝��2�\C����Z�Z�{��=���,�T*�X$�Z29=EM��TɔVf�ZVc�n/�^U*<�o�ܰΘ�*��::�h�*�ӒQ����ʃ�ִa�Kf��k���&���g%��ۆVY��,ʃ���a��sWlT]�{)��j-
��7�/�&�R�q<����oSY��
w3qǡ}����T�0ZZ���UE弢��Ȕ׸��%Ϋf���y�屖�M�Ѫ�fV��i��,�V1�0�|w�ϒ<��S5�{Y���vD[g-"Z�3�j��Dy��]%��Ѯ�2�R�I�k&̖��f��TX	t���􇿫Hg%������Z��Y��\��1���w��+c	4a��{�"��9-��T�0�=rK�-̪N��5�d�I�0	d��e���jf�jZ
�ZA�s��(�y�B�7���A
t�(��*T��}
-�U�jd)[z,>����35�
?Ig��t_���g��:���Z*�G4׈�Uh��J<O��͛�D��8y]�������B�����8�S�E_�f�\�17%�EϽ���.$�u�`�2�&}��b癉���KM��Rj9^Ϋh�dָ�8-Ty�����V�3��b��5�8�˨R�4�hF�4�,;}���*�-��G$�-�Q�N�<p��f�F��̼�B���Be��K'
�X�W��Z����.��yiP��4f�+�y�������֣�wN�?�Y�Vc�?�5����z����V��*!O`h*�W�JD����� �z&Z![!Mh�9(Z��9͖�J?{�=��E3B\̋�H4�GT�Ά�fK�Ւ\>لS���/|�������?�X���J͹����,mX[D]h1W�p۱0ԂJ�+Z +�z9��//��t������n^�MY���A�u�����;j� ��rjn}���~�ވ��UB
�����FрN�M�	_�ޱfy�PK�&V��F��Ul
ǔOghy6�Ψ%7C�槈���1o۶mF(
qD�E�����׾7�T�{*h�=�V���渎�6�c
@g��‰���25O4�'�u�0��@+2��Z��-���i�k�@�u�Q&2}p��<�ު�����|ORS�ak�,�Ɖ6�Z��Ѭ����
��Ҩ�Y/{AՊ�
��U4}VY?�GQ	h�SX��j�&p�s鶬|�d1��|�Ap��2�U�'�V#���k}��-%��*�ħ�#*~���Ɋ�
�bj�euU�Pճ%��[��–�qP(&42oѢh�]��w��ఠ�D��}p�[70Z;(�d�ذ�V{���P��-��I���O�i+��Z��tJ��:,���k��^yK��^�����[�*�en�~Zc,k�����i���_�Y�)Z���W��x?�S�����Pl֢�õ�a�L�Ӷ|�<N pQN���Kv
j%���VLӃ�y��􉙢F�Y��X�l��I
`�:j=�~��'�d�%���i�M���V�����5�*H���ve����9��S��~Ɖ�t��8M���\�@��*w���8�6��f�����r���gE��?-�y��1%�Lq�m�"K�j�ê��G��=�%���8�h�r�-ݕ�X���RFĶ@S���:�O����5-P���s�N]��{0���}����ּG��l��7��6���D�9j�����C�����ioF��!-W��W�e��o� �4N���{>O;v���(�1��Ŧ�;�f$�?�d=
���P
ؕ^R�Qg�(b�ǝz��4՘��'�0[��
z�����z��T͊b�,|V�x�P�ݯK�(���Wć�x�O�8�R/�8�-��"C�gMm*��_hE{�Tį�w�f9|ؤ��l鳄�KN�[�T����Xe���źb����'q���Z�M3��=4��_�Y2nĕ�ܲ`˒t#8���sj��m*���r~d1�Z�c�Ϻ*�����9�hP��X櫧\��(��XԞZ�n����}2��̢��e� N�y��V�V�u�����3�:���?~�`�|�CCTr��ҁpQ>f���k��8�VS��]�[�Z����b��J۞���3_�l�6���#��2n[��6�%�ʉ��[m.��:aHd�+�������~�Rož���A�2�:v���<UN�� �Y�:�V����W�Q�Ѣ�-p+�v��b񧌅���B-8�,y�������1^UN�cǑ#Gv<�ު���|Z
���of�f�GK�H�6���0Q���,.*f=���u�Ft��F������
Z�	����IV4@&W���UZ<ЀV�z+6VL�\HpDq"k�V�ku�V�(����KA-�^�k�*$��h�����j�h��m�8���p�rUZ/�Z~AX9���4ZW���p�T��o�>����4[�'%���9�G��&1F�&�yy�!��+B���#�U�Z��-4*c�d,��i@�^J@�קg핕�����V����*R���d���F!זMoyM���2КN�e��f�2�����|\|0=%ݓE�(}꾴T\��Z�P�9sx�E,L	,�J����o~�Ȑ�+�o2�)h�=X�,�`��5a.�����R�ċq�e��c�:��>�V1K�՚�hM����P��t�l����YB��A-�E&��;���RaVCK�U�y�
�����^Ydl�Hg�핬n��WhF�;�~_���p�����ʏ�Z�x(��.o�������f��JP

�hS�e{@��͚g,V��s_����Otؔ�8�{��;�3
�Ѓ2KD�������]�z���������`3�_�ʃ�v$#a����^����{�Xv��pZo1�F/�yɶ�����-HG֗�GŘ����},y!�&����_~4����6�*������3�C(#Y��F���1;Q%I'6ah��:�k%�[t¥�)9���pX��� ����3	���P��#~����a��JI]1���>����k�wqZ�@&��:�V�?��\�j�H���?0�E��"kX-�%��ZkZo�o�S*���S�BS��k-
�th�Z<�\��նPZ#<d�Z��^k���W�����r�.�® ku�H��2d��fzvh�<�i����
R�Uգ<G_��LXt������������	ib3x���9b��"��Ĵl��5����c�/]=����۬��I���G��*�%�QF�*M��i��l��^S�5�MMнX����J,^��j�'���c���z&���l�@���+�
#"F��g��+^\�X��nK˄���X�.%�Ekh1���51�{��=��fM��,W�$��r`V���f��v��Ъ�Qr�{*̗ZT�������tZ|Џ���z����H�-���z��i��C��13�`�[� ��Z.khmx���^��c��!>e�X�U��s�L����zfO��̢��o"�Kl�F���-cŖ�R�W�4��������fU�)��`B+�N�w��i�	�i�~��@Kɬ2Z������B�d^����W8<�z%$�/c�i
�)ھ4]$�FO�KA�����)��BƸ(FcG�O�i�����L\�J�d�u�;�~�֥KW���������w�Nd�^�c.�F�,F��.6��I-M��~~�ޒt�& ��A��BV��t;�$[6���X��4ϊ�0\�YI�WL˛�|�%��O��V��>)���������i�W��4*-c�x*�m�ҫpRxΡ��qc��)�RAׇS_Tq�0�dVOd�Bn��M-~�迼�,Vi�`V���}ǵ�;���a�������V.;zo�i��Y&��ǣ�ō������Ȣ�T5ZqZ�|�;�_:�T+L��iTs�t`��W��Ȋ֯0�� ɩ��>��Oh�鴪m�Ճ�����2��ת�R�+�)'���N��*0�&��#Dv&���S�fU�Ț�j�Xc���ݵtą����C��h=r��?���W�߽P�&vx0�Xt�оC�G=�>�d�Á����;v����n1ED�֥K�n݀Z[@
������+�/ݺ~0o�
F���@k�S��បOa��TP=��S��v��+�YBۂ�V�r��7�WgT�Tb�H�l7m!7͟\s�b�T,�6�������poH5�0r[z�d�]�g��w��zO2U����~�O"�T�r����{"�#��?����i˟��P�E�?�J*�M��o����wJ���,�[p���0�s�[P��_��_*�Zm��,Ʉ
Z7�ID�j)zaV�֩�O�iqNh��*�%V~�Z�]�Y/�Z����3��j��i����U�֚�W�e�z��dR�d��mT,1=�W��v-F+�V3KZ)��Z3kUa!4��3����Ŧ�%K{��Z@���,�&��&0�j):󪒬��Sh9�2��u���ŋW2�Ԃ+�I��G�N�V%�v���
���T��c���n<t�ufl�ܕkW/��~з}�G����e}��TY��F�FB�^���Ћ-E�[6U�Bؖ|̈́�tm�[�XAG���>7	����O��چ�V�0]$�a�v��-[�'=�q!%����Q����e��R�)���ŒǹiG�WCq;�Q�TU��z0N�DH���4�	��1/��{I3�ٓ��HN�~�:��wXj%��FQi����u�8���4�-m�"0|� ͘���4[�V崶o66L�ꚇl�Y+k�=K�Wm}ʳ6�J6>�y��~��j��n�^6'8]�V6�CH,��Q�r�Y(�����xZ��Ú[�G( �h����V&�xz�F1
���Ա����T���Vޮp��P�b�c�o�� �ּfI�k�.]�t�prg�i;����}LŒ�^���ʕ����T�����2�����/��.^;u�c����u��3ɮ��F2��ijo����ث"��VS�C�@�d�P�)b8�ҩ�bp7�+��u.�&���b�[PqK����Z>�Ʀ���G�3�G�&�>���X�tr����b`���T�����]����Wz�as+��t^��(�@Z�Pѽh�<{��Ν;�1�+[��E�u�Z?�g�����pZ���v�Á�^YZPA�j��b��,�ֆ�.
�d�:j��9��0X�-�5�]�6�5��J�e[&�*���,��hQHe3椡�q�u���`�>Hr���)ɣr��Rs�X]���UJ�*��L�e
I�Ӣ�U;��ujŦ�8,��4�*���W�:wnW��Ik�`��.ݾ��Z[�=��=���%4�8�9�Sā�o�==t�x�AOR���{�įݾ��w����3�C�S<ѥ�W�&V��&ϊ��H@�c<r����$U��I��^U9s�Pp?}!���s��� �t����l���+.n2�LW��T>4?t:����Z从<����F,�-Fb�|�/�aó�����r���wb�~O>�G߮zO��u^
B$�O���<�l��O.�Gxj�jmV�w���;�^?	�$
��ܽ;�a�W�ᄅ���XKh�
T��J���B��=��UNKn��V�V1��[��ZP+�L�5�؊oIb���j���E��q⫄�B���W ����Q���ɾ��͌��f�:X����?���R!���E�R����M�.�E��TC1�~���>�����]�����h1K
,�V.�]�9V��.�y�'.���Gw�D�:w6$^�P]߁�ڹ�ƍ�;��q>�]�ڼn�N�:|�FZ�������Q%�m*d��0(!���,�Vӵ����\<*fU��<]�V�6�bMh=̫�lq�_��¨8��C�@Tbyau�{�z^�'PS�R.i�D�^J�5Ю\�ؙ���r�͗-	���s�(A]�Y��H��R����`"�J>�m7�c�k�g�VQ��>�u]���Ҩ�.M1W'Q��  �o*�Z0�ϓYZ,U�2�>}v���]��zh=���y�'�ĉ�T@�Y��~a5y��=+�Z�J9y��ś�bPug}�e_M��#�
`�T���A-f�JF�R'�)�#]!��z�ߊ�Z���pn����Afk��_��%�s�����t���+u��^<���͕{T��ߌA�ǐ�U�[�,�+v�$d�Ν"�۽��[�s�<"F��~t��*�N�z|����Ȳ'��N�б�w��C����Ab��p�]�Z�/�y-h�Ѻ�;3�sRN�Jn6g�ivMz��*l�vD=jS�b	U����	ih���ɬ��
�<�[�q��s�ʜ�\U�&z}�e�^�EV�k��.�*h	��pT�WV̬["9iŋqh�*����s�&0:"���ɏ�yx�.��.pq�>�W�pǾ�'���4W�v�k룁P�8��<t�����N����J�֚����3��O�i�6l��u����@���\�CA�
mC���d*�Zoآ�����F�Ê��\��;�!<�nMZ�V����"�Ɩg�����!<�3�����_��k�N/p$Ἐ��f	-�N�(�4\���ƷMe�e�Ͽ�i��<P5��鬬z��#?�m1��e���Y�o��KW~���H����J�&B�q��C�����qpXZ�Ϗ�����G?�����Oū7O�+n]c)X�ň)�
��n�[ص����ji����3fa���U0S-�S�R�Z�0�����~��:wP���H���U$�\��5���"�
�}��V�k��LLU�Ƒc���1�`|iQ�nN��)^B���Tg	L��N�={�����rZg�)GR�R�w��v�����k��r�c[t��ZG�:���2rڦ&�q�B��Pk���=���l���YOzʳ��$v��j�0Yh�f�U�!ǘ-���4�Z��M��)�N(uك󛾌��{d�jB~,�?�[����O��y��R+<�U�w.Õa�+��WILD��?��_��K�C���\\�4�j�1z~��p-��F›�66��BWbDD/5�Nw�^���������fZ��\���+�o�;�蹸������x���A&�Din������ǎ�۱���w_��ED���߾z��9�e|` x�OK��5�<�(��%
S
>�|����-$g���|jJ�Nk�VhtUT�7CipX�~b��Hn��B+i���!p��g��Z|P�-J�p`UGf!k���Z�����,�rn*0t�С;�ܹs���#�8t��Rt����'.<|��	�	(G�����vҨ���Q�[y=�~�c˖�l��5�VC�2Sj	-%�PL�Sc���o>�6�{�zyd�Xl�)���5>kM�@Kf%����bp}�t<��m>^٬���ڂ�Z�!F�C%�'�P����+mp��Pr��$��p����I!��Z�jY�@��� �b��(���֋ހP�����,��]VZ��!����uj�]@Kd��c����y��֮]5j���+T'�����ve{����sf�q��o�!�E���B�[D�df�6��
����q��_C�s�����a�d�Z#7	�ΰ���L~ͤ���Ȭ��
�5z�I�Nb���%b|8�c����xp�kR� '�U�2��$��:�4���[$��O�l=|&�S�̟�c�?�0�Gug�H�j�v�q��Ɲ��a��/}�s��ꗾ��/}髧�\�k�I�uh�y��;ܝ=�N�х" �ZG��ț��Ӫ��hj��YՊղ��I�?\��@�{�B��#�� ��� �F!±�ɿ�1����j�Sͬ�#d��X_4:TI�g�_5K'`T�j�
��A��Q�)����e��L�7���Ob�6��"���_���_yߘq&��B*�p9��Sy{�8f�h�q�C"��4�U����U�T$�@��2N<��*o�F璮"׵Km��@�֋�:�9Lx�pT����i�x�0�:�y����,�郫]H�V"X� L�
�R��&�t[��%�F��ȱ�C-A�d���V*�РX�	~�d�5������!jKi�Q��Z{Q��c����I�r-��St���4l[`t����'��'.C����d�;y���'NZ}�M����W�t��	Е'c��:}�$G�>�n|��7Ο�K�l��A��@�#�N��-��r�N+��0��ЂZ� 
>�+K.��,.ڌ��Ҕ����k��T|��)�����*n[E-��aI-B��V����y���C��1�K
�Z��Vz-5����Ǚ��
�毳�į��Z�z�&*
��Y|�?G� �^��dV:��,�}�XQE�B�G�O�b��
^����ŬsP�x� ������ymT���k�����K��W��l��ڬ�??|�{��l��ƛuO2�~�Rk{b�PK�(1���}����ph.uE;OX�Y��g���G9�T*f����Z��?�Aw����dhƯ&��#�>heXL���"۾��Y�TJT�2���5�MzvGl�rR'�^�|�2�B�8v�ƍP��ٕ��ЇB+X��e�@�DΔB)�nU_�������&/_��;�ޥ��"^�Ǻao�n�5�ze*6�k%>��Gmx*�\*܊��y��@�U�!�J
�J�8��ep�c�k��Ws	\e�TzZw1Z�f$��^��?W<��4\4�_=ۂz,I�魿�.�k�%}j�|V����h��G�?��#�U~>��U��1*�!�Y��
�,�^�|J���/T9/��نa�FJj�S�Bnkc�5�i$�)ͭ��.1����d� ]5/@؏B.�7��h��ZRkw8y�Eo��Mh�r�ǚZ��^�g�"�
ZDXw�U��o���N+��l��.�˱.k:-(�TY��&�,7�{���T
�L� ��r��m�����"�9�N+��Ȩ'�^��(������Fц^��ĝ�_��t.�I��nj
��Zy���#�%;��-�������-�u���s�	�-�bc���5�'y��^h!��J��R,�Ul��S­PM=�#�5���@�,����q�g�eUC�o�,|X9�/�}���[��CB+Yx���h�g`S�ȱ0�a�34��j�E��R���U
�)���G�
��N̈́w
%�rmY�C�Y̊ՂZ|�$k�!���Q��Q/R<�xI�g�|�?ظL�Zg�f#�5x�~��� ֳ�Y����í��Ib;F��:Q�R`�޵����۸9�,T�HU�Z�P���2*��U�#���O�"�0�x���*���Y;�҂8����,h����!؉����Z�E�,�KB~%<4Co}��yr���L���)�ʝ?X���F.�s��T΅X2��u`A+��p>M�JaW�ҤW�|�C_
�r����pfhA�i�`j��B+f�N�V��쏻�*��:��
�Y���Z�fG�V�I�(�a��4��a���f��\=V�Ё<O�p�
6Kh�iE�,aų��H�E����v��pu��-��i�ȯ+8����YB��
����r+Ǫ�+�[��^��w��Tq��IWǝ�JXȾ:B���k	-V�u�V����^S�j�@��e�Y��V3+���JQ
Z�b����g$�E��ω�yo�
��pZ�y*���"�Y�+��pV�K4�e�:���9f;a�*zѡ��*3�+�×O�}A����g��la�o��N�b|~<�
�V���]FNg�T&�J/����6!2���G�<yz�f���)u�	x2&��
�>��F� ���:,D�|͢V"JD�+t����ֽV�5��Ţi�>���ᬆ�T*�TH�cCE���ˆ|�B�d��j%LB���Sd/�N'�%���i����x��E-V�:\�\nx��}%e�f�Ӑi�b
�V���M�/�R����`�l�jϕ��&��]�fRk沾�ί�na�K�۸d��Z�@�'�'Y:�Uz8��`��vM:YlJ��8jh�80I#����*�����{��t�+$�S�\��i��R�k��*�'^�^���2#%mJ���ٚ�}ĖCyЬh�Z�-�;u�Ή�d���n5�`��Z�n��k��8D��@�М��G�S��O���Y�,L���[r��l�*�:O�[]#����%�8��t� �	�U�n~�
�R�򏻷*��2�Ph�P-�Y���5`t��--��X/ϓ�#z�|R�"*_���#��L�w󼅵������HZ�gM���#���r�U�K=��1�E5N�dQ���w#<�%���*6UC�&.I�Y��^մLʭ��C���ۦ�Z�����MG�am��{�Z���x���	�$�U�ꁂ�ZԈC��� ��VM���E����"�FKf�V^q�b+���W�3b'A�"�c�.�b��I���Ē^�LT೐�B�T�i5�:����E*��F�ÅO!̒�wWw�E�W%��r'{��r�,0-Z-ѡ�]+��S/N	�4�J��,��K��BY
�S+Z|6�N�,��aއ{�m*H�hS�5}Ї^����Џ��|aA{�}R��S
�N��Ć`L��.�Pl�h+ϣ�5Ūlᵂ+�Y���jh�qD&��a:-�BDĆ��\<���8�Wc��.:�h� o���.�閚ZnD�����ZUUGjY�ބF+�59�_2f�y�E�-oz��#�����_��Z�k�g
ۆ�,([!%���2�˞]�|V�3:�Y^���r��Ϗ_�cyS�@y)^�4VC˾�l�VlR�q>����t�l�
yi��k�,y �eg#�X�c���
�.Dz�U�e#�/���Y�g�p4�Y-�a�K���h���Z)BuYň�m�`DŽ{�B��gS���Wl�Y*!B:�S3��>P�/E�n!"�Pȅ
�)�$�Ė!e�k�Mf��c����|�}R����<@J�E�#��˫dz�p]]C��Dd��u���2�q`B���zʒ�"�)��j�܎r�H埠����8�dꨞrbU���3�]�q"�
]"�M0�6Fi�2-��hl��=N�2�uZ��q:��2�/7U!�}E�@K���""CD��T�m�œF��e<��A4_Ń��BVk�����Բo݆�.����
���A�s�6��ԃA+��^bF��u{瑾W(�*�ʞ(��5|R:-z&�ƅ�6#<�E��\��_Ž-yH��_f�deM�d"W��\��L�(Z�P5�2@1�+d��5.�5�cQ+�����G�a�& ��$Wh���XQ�4IW�/vQ��
�>��|-����e�����;-CB(%��mj�\�㧆˲��A�o��jZ93�V�z�n�����@���@������2����)��^H��-��W�����Qn�	QF²\W7Q����=ܘìLF��}�L��/NP��s�-�$ʀ��IjY��U����SR9�{�`��V,E���`�@
v}!W���1�A������Vӊ��5[�.�TZ��c��Thy�0��?�Њ*j�S6<p��?�\=f-�bT��s�nq�4�F���)y/��2se����s����x5�$��˞��K�e�h_�Yntd��\�J��F�]��z	6s�qÐ�6\6�~���3�AT‰����e�Ÿ+?���a.�#43�y	ȴC��)�
u�dz���x0�e��l��Ϋae�ü���}0�4�
�@׽����e�Y��^��XY��t��:'��7d��Ť�N����>�ч�AH���3�Z.wh�(~�'_EZt���(��P�U[��‡H5e=W�a����f��Z�'�*LI-Z�Br(�S]д`�Ʃ슲{��Z�P(�Jys��U&4wٳ�����o~�!�k���W=�f�2@�^(�
<�﷡��cq����Fc9]]�Т#кv�VY�Y�h��G� F: ��Z��zG��_�y�܎FK	�F�YoebKh5AԴV�P�u!��HyJV���00��b��/�Q� ����y�-x-W�g�9l{�|:���Ԅl��q�IrVԬA��Aݸ��6甘R�ɦnj���hf�%4lEŠ+9n(���҅;�M�_.�cuZwwZ�*�j)�:S��Y��^6P �,����E�U���Z ��R~%RZ
��Ou�'}�*r�x�l�f�}B����R�@p�J�����$��xe��<d	
dŹ�b+������4�,�ؕy�b ���vB��Q�r�J%��T�Jp��VMn}�Y�KVg���C�5�5���e%3/��o�����BWc��h��L��H���Wn�e駺�t2+��;�<�ӢȋؑN�Mȫ�(R�`���"�A!3�)/�^6���:�zj��B_����\�Q�X8˂�4B*+U��Ȋ�5-=|B��>c�H�f�5�٦ɥe�t����,UP�FbJ�L���7�rȫ	�FY���hF#�ei��u�KF����Ή�~���3�����"~�*Cxx���WIj�P�E���i�����i�[Ŭ +5]��a
z�j�7�$"@D��tّ��z�VS[:��єRK���h�d����tt7�r��V��R�/�1���Ђ�U%[�ڸ�Ku{fn�JCKC�Z_�s@0E�t	��,P��[�J^���VF����|5�����}���O����4�u�?.^ڬ�Y�g�0Jq ��U�0�r���#���yp�$(�M�s�<�b�Mf�|b�Fg�Qz�fm1oQA�8�8���&�K�:,\m8�E��ԇ�y�]��~���]��}���%WT@ԡ�f�3KeӇ6�˶4�۰N�^Y5�QhY^���¬	���;_�З�전
hq2���'N������?�U=�߬V�LUy-�5�����	`��J�)�R4Rܓ�ʌ^j��\�G�����|4�H!/Ye���M�S����Y�Q�����yp->�(HEr�GyL�h������-#��@�M�����I-
j����r��Z�rYxё�ZKyҐo�
�F�H?�GF���2�Ř�����L�ЂZ�Cȱ3<�)�6��e�C@��f�:�аA<�΢�0^�L��\�8��xFh
>I�	'Շ=�U��:�� t0m�I'Ff~�����n���E��JW6��0�S��Dr�z+�JS��-�ɣ&Vʫ|O��M�vZ\�!<�G�U4,se�c�Jñ/)��q�x��;�ɒk���*���C�K7�8�a��g�Xܚ��@�.�sG@9��� �R_:�5��VJ�X��ޜKe�:�oI-žg�a
Ӧ�i��+�4����V��
E�Oɧɭ���!bXRYj)�X�_!��ٗ�&�P�0��Up*\��d¬X95[���JhI-��+�1�
�Ta�J�S�鴨.[��]�y`]�V0�x_jZ���ZQ��Z�o��W����Z쏬R4�)�5'.���m�v6�S|��M$ͦs�|hTs��a���Vt8�G2L������Y8aL���<Fì�3���nl�D"*��Ck,���erLE�q�R�a+a��҉z�W�Xu+2��8q,���1#����s��R����1�TE���Ǻ�h
�j��V�,p���]P��Ŭ@�
'<��T=��B���������{3�V�ZN�j%]e��7��Wղ���B5r0�	(�b��3(U�&j�^��;oe'��v��z��| ɩ��!H�=J��t7�j��S
����%�Z
d��-bE��Mj��ZnLbի�V����!�/LI��9�A�!\�>+�K��C��i\���$�6<��;�=�%kY�j��5:���.Jy��S�]��vǡ8����f\M���C�R��ypS"�d�HU��S^q��$b"�ЬF(:�1��$!�f��Xs��*7�ΪIQr�s3��uc�W��.?�����j�`�ZF��#cLj4�`
�9P�#�U�����*���ZKN+M7���RJ���bQ|��$���W�z��K�<_l��mc�C�&�b�=��M�.��m4��:�+���+E���(mQ���i����(K������rA���9��3Y&�
P��C��9����B�y"��]�*��[2�4��ݴSQ5�����+�'+Fo^���uO�Z�{+F�g��u�Ya�"�W�+��π+Z��s�T|Ց~�D���k��8k��==�z��CJ��o�1�7#��FݪF�`W>w���X)���	�85L;[�U����|T�?`�VԊ�pE���R��˭�	T�_�����'��p��92�3��GA
�¬/�8�O���L�p�wg��r���逰ժ!<!m}�c��Z�r�ք����4w��;6�#�j�=��\??������m%<4���H�R�i����j0(�M����q�*e��J�<�K����Lw�j�m��KGmЪ��v]
�_��d?Cyާ����4��B��ݗ�C2��5B,�%���2��_��A"g���� �Wv��=�j���g��P�;i�,�q���jݹ�\;�A��~:S%&�]�C��%P�u����qZU���6ɜ�N��S�%�2�OA&�ZۚZ�,`02�+�to�ӣ"u�[��cGp0��B�+�'��w�r�r,37��f�?T�b��<E�2��We�|{�oF����c
�EKH]��4�"���#3?�0�î?EL�
k�m�Y�XKU�c�:����ts+�iv�-��*ϥ<�lxŮ�E
%��V������-R/���LA�>��SB�4q�g� ꥾I?�s��+�����e�)�$�
�ʕ)k?��Z�`A+c�5�CM�j�D��8hjXͬg�߆�N����P+��BPe�gn
t�$���N1�9�Įw	�K�onb(�b��K�ʻ���v=�FƯBKW
���Ǽz����)�P��	!���R�,邵Z}{�#C��Js�a�#�x���5�S��6'����;�fEFhVP�E�Ey�(�@�i��"�`��	-���R�*��K�����������Pׅ�h�Vt�(�Y�l�Z�" *���N��,�̽U�ͻ��õ�R�kh-�PK�ђX������	��֜C+��#�*A%%G��
��j��$�U>Kh��R
!C�%N�4*�P*�+�3�U��I��h�f���~My{q��0S��I��\�@q���7�\�&%�"��ps�O`�����5M�IY~U��Q9��Yyk��̭A�����[�pZ6L;sZ��j��X;�B�x+���2k-���R��L�O�b�7&�����Ւ[�A<W��Y�v�٫Ɗ3=zqW���
Kk.�C�}�X|�H�CFX-�Y
s��C@+�6j$�mX���5MgU��/��P�8�E�������rV�n
��R9�|����[ɫu"�X��|�=��Χuwhա�o�Y��&�d����w{��"�;ReJ����v[�KZ.�Ō)%�%��h�W�6�dY���dV�.d@�fgL���g�W6법Tp�p��VIli�82�{��Z��c7�'1�вj~!MV�b$������@Og$�B��-6x%vU
�Zt��欐�����2�兜�h�7Z��n��e���;���Y=�ޒ�j��`�����2V��$��h��;���YΆ�LX֪F�R�D��R"�/���ܲ#��&O�+/n�XBp�����(���h�f�9��ӡe@�R���2rk~�Ӓ��>��(n���\��&�Iz��N���e?p��i��i�(y��B���O
:�Q�n��D[eX���a�PH�&��կW�6�g��Pig&Α�B����+��.k@+ow��f'
?j�!5���9�!E�k�Ԓ�򍬚yܜd��2����0��<�P�J�� g��N����"�>
���E��W�"�0C&���s�3��N�#z����'b�^x�U�e�ʌy�"��������O~�nݸq��0��-�,Q����Mu��m(GsN�ǤV���I4��s��0j��0�����b��0�j�g38(p�L^{�Sv�PyR�vQ�i0�ęS^!��79�9ЊLo�T������k�w_��ch+�Y�T�ɲ'd�Xi�[4�U�XE�]��d�³IuǪ���X�bsS�	'�Z5�DZ=\�9n>���7%�U��	-͖��t8�øw�&��jR�qjlb5�"c�!3�<e�ʉ�V6�Y�xpv2��I-� ;-��j�;�X/�LhA�x���-�5�<�r@���D�O;��FKxX�zfmr׏!<�
�\e��s#UբM� �E*�*W���[��|��w���j����
C-j����U�du��Rx$#Ʀ�R�@6����u��KR��F�U�3a�ZJH~�P��P��͋ez��#�V�$/�n�}�����Z��.+��2be���4�����5�_�9�*Ae�����[��X+D�����iAU��ҟ�c�sZw�O��x>l�g�(f��'úv���F���kQ#Ф�b����MO��7Նꇆ�\��y�:X��D�К
�V��y�c
-[K���+�f'��d�G��&��E��XE�]ϕ⯲O�P�5q�O�m�g�r煤VY��SЊ�j��d�?&�"��I���%��h-G�,:�KSl�Zc8Uˊ�������5��hQt�����+��o=���y�C���V5b��(jjI#�<�0��jl-ܛF��_��w�XH����VX�3SƋ\�S|8,���s>�����C�"����%�pɺ�r���]��,���<���M���������&���2&�u��9�Gh�������Ro@8�>+�"�E�ge�&�x��z��r%���ab驖�[�|6��M���3F��V*����֯�Z�|���I�=?�����t:�PqP���>�)�d�Z�7�ײ)��j���E�&/$�������7	[k���
�`֜$#�
�����!�Z�R�Z�;Q�bW֤�[����Y�f��j'��{,��O& ��CǮ���n݂X�Hh�:h�֜Q-9�����s���Y�&}���⍝��քV��f�Ʀ�!����Ԋ'��E/�����mL�y�S��nig��,��ʔ{�Z
�y�Z��]qY����F���'V�L�����yF�VE���;��{�(��)"$���}D~ID11���\��H���R.e EII
)Ff&2042q�|�g����6���s�g?�������k��/�����*��J�5�L�?�֕LݴFW�~��7R�yD���B^堥U�9.|�dt�@��G�WI,���b�
�f及�վ!Z���S�:l��/�7ޱ�cju�Vй�
"+6[� 9ġ�^`�OU�W��Q�v`>-�P
���iE5���T��&M6퀻�(�x�e8����$�Y{'�۟���7���x�L����o����
?yb1i����wrkeDcY	���D�L���yZ9�ŨM�Y�,��	u�j�e�jd�e�]h�-ЪZ�	�v���Yr=f��H㯡��:��xf��۫�M<Ed��]Q�t��PGa�Z�"��V;�
r;A�ك:��|�e�cL�+�6�l�U!V��� <Ŷ���6S�^s;��cK�J��ڶGf�vi�ĚB��x*e��jck(Ʊ+L%�EKʄLB�к(q��w(&=�O��2^��S��a{�����˷o�5AiZ����	XHf
�&c��n�b�Y[�������C-b���T�Q�\[,��m'���m�g	��^�������'߽pӋ7�����|_���G��,h�+�-RS"Eȴ ���y"3����͙%�.��b�:y�eEsK�)����-�Y�w�7U�3�O��>+��A��`vc�d��{=���c;XL�����%�hȜ�T�g \�fFﲠ�)����b�u���xcR���Ђc�X��J{x5e�m�3�n���
�.��,�)N]�V�3=�WbH ͦ����&`�Y��N��gr/���/r�TBK�'}iS	-�1"��5Ԫe@���E�m�C<�0E����R�q��s,mhA��$���a�n�AoOUrC���a��}bl6�=�k
c1�٤�`�+�ά�z���o0�~���^|��~������C�,�⩉,��1C�*��	'�W<7Ml�z��Z-}���]���&��Y�$��ן�Z�^�-<X(Y5h*=@r5Mmw`Ȍp�(l��r?C�J;f^&O��������8�J�mC��h#S���������mL+o����|�ʼ?����<�O:F��Y��4�R���F��.�"�u�m�-U�
�.�8W�S�����hj�����(�2G+cf�5;�V,��V�!%��d�^�����\IE���4�sg@dr�*��Ͽ��Ać�,vd��tw�]q��:��9$�"	�rR���S�#�YZ@Jj��r�����Z
�Zh�A5Ԋ8z��+S���!�=a���{�����w�yӉ�Oެ�B�%%�IȐX�,_2����3�Y���\D��}Kh�\�)�T�9��K�C�&�)WH�b�ar�1s�.(���w2CoXQ�x�g���k�%-���l&�!�4��ہe8�5I;�q��l.ua���c�-fI�Ű�,#���i�(�JZ��j;��8;��J�q���\��n# �VG�JkK���[���Ս\�Ρg�%�8��X{�����^�o�˨f��E�2��	X��V24�M�:Q3�9���k';	�=�Z)��ˏ?���]�'L`��4��ژ2���#�&��K3���s�W�P�
��{���0�0�g�v�mn��1�t ц�gX�+/�u��׾���V���T)����5c���5^zC�7��_�q�&�~�iY�5:JC�b�t�(�����q��#v|?���\�Y�*d�t!؊��:�:^���!���c��)V#�*O�}y�&
�K�޹�D���v	�wD|�}�Ӊ�Kj��onj~��Ŕ��R�Kkb�2kCK�0@JcC	f	���֤���r�M��r��3{ȱ#Zoj�Y��u�6��[�gؒXB�XV���%�$ZC���ZRk���RZFc˜|N�1���
P5���]��?�^�	���jr�����g����@\�O�ez�%�nj��.,�g�+:��l�Q����t��XJh"��Y�4�����`�F�E�J�(a�̹���#~�x5C]N3ȚB4Қ�Rn��ҒL(̩�ZĊvP�% ��Ф��`6�F��1�ʕ)f@���U�[�V�&*�`�L�� ѥ�V�z�M�_@���+��*-7��3��*G--��tZ�~f�����{�b+ҏ��ɖ��o��f[[�Pv�$S�^9�z���i5�ЕD�nbhID1y���,����:qN"��-��զVi'7x׼yo�eA(�*�� �PW���(ui��,/e8���Rkq�x��"����-`6�2������?!��@�)�B՜�)#<��(�7lN�>ü'�Z��J���B\���0+v�G��z5���)�|ƀ�sNU?+}q�V��۠��S����@_ȥ���%��ڰ��<�EP�4�^�'Ɩ���\I��Y"k$��VNj嘣`d/)��j�lo-����#J��{-����Š<.��YL�Z"�.n�e@�xG��h��2�'[F��XZ�/��(b��0�����
��x����<��OL��R��sZ~[V8���BhA�a��2/����ױ�V�]+����*:os�Ԫ=q����q�9&��|f&����D��?�F֞)\~m��4��t2�+ۮ	���˵C
�������1����j�JfiZx���@���~ɱtB�Khq�Op�2�l8h�ӡ�3�J�D�"��vCKmyD�B,��#GG��=~��PR��u�ܝh�Z=(&�W/|F�n;M���h���^�c�!���-?{��u�Ĵ�LcF����z�=��}ohj�q�mh�Zʋ�8��<�v�%�F5�.?��,��(�j�`�+�Sm)���unmhM~*�
(���f�,Z�aC�<g�ܮ�Ut"�U�*�B�H=Jje�l
��g~���h�_�ϔV�\ƦH�J���Yl�\��PUci	(�YȾ��ɉ��w���M�2/���y
f}�l�e�'��U�W��Q�+ePr8{y_g?:*�g]@ͬ٥�F�b~j��(�|>�eV��f�#��DŽ[��Y�~�Fb�z��?r+}UO�t�A�����Z�"��7<�P�l.�Z�(Т�ێ�q�xF��_�SteV��/�7O��w��ӕ$�5L����^,㰵�%�Z����Hmj��%��j�E���7��Z��%\�[MoB�``��Z!�&�*������Ĭ��4�*
/�db=Q&���	`�wR�u載'Sd���\���J��=�Z~Lgr5�\}�f��7L���!۝LI\����2?����IL��%7�p��8�������-���7�JG�R�
Z�5��^�)`䂼��܊v��ZIe2"���`�Wt�<ԓ��
�т�@�k�
�F	���zw��Q+Mى
��<�(�h=�2����9���0�G�6�V�^8����P��)��ܬG[�j�ە�Ё���R\��S8����U�a2����Z��2WS��,-j�X�#�}��I�(
�
ZP�0���s�I�F�f��@��~}��•�j��߰-��Tc%A?��y�s��a�������S�ܖZ���<�o*��@y��g}�U�/�~$̊��K�i.囜��]�O�.��l�:`ғM� ��C���Y�
W�DbH$�먙%}���ٗ�*�2n�¼���D�`�~DZȢ'�\1(��ة��"-��g�(�3z`�+O�!ې�R
yǃ�Z��K��I�����D
�W\y�.@&��o�fx���
%FM�e�p��Z�"�&��o9=]���6f�1�NC\�P4,I��Է��D�5v��i�bkr���1��`T��d���h���K�����:����ʓ�I��P��_S��7L��X@�;���'�5dC�S�!�f��fsmҎ�!B[8)A5�7��_~��(fZ����A���G�z�A�_j5�4��-��8Ȼ��&��j��ϑ�p�JY�(7<z��2�oI��G�����j��Y���5y�
�H�ƒ�1D9�ޤ'G[��11�&�|�K9z�;�ZU��ZF����[']F�?XZ�$��ش
h���B'`յ��>���r�V|t�
˪�(��@�L
Zv�^�j
��voT��7�ra���(Q}�;s)_�@� Zp��}ʬ<cJ�mKre�>/���:��5�o�Y@�s� ��A���:��j��U�VbZ'Z�5�鈆�ϸ�%��5"�aYZJ��U��
���q旞ޤ�d��Y.��F�}��/��ʪ1@��L�ػ���kfI�c�%�C�u벴ҝǢ�Hh�l��:f�:ȡZ2aL��"���[1����0�p!�)p5�&�I�2<o9b�T��t_��6���xD����O[�k&@��Uв&�A�-W��'[��?�=4W!Z���V���ձ�chE‰��[]�|h%�A�'<D�<`x-�Bl5�����]?��5$ZE���(����2�����M�R�h]��sBKk�{� ��f�zhC�2���_���L���eAV��<�׬��]�>|�@���
ef鴆�Kk��R*����C��:�aC�YCk4�wn�b�s�wP�"��Hm,�M!�gq�D��WZv��T�Q�kɬ���� +P*f�X��������l�<+�̼[H�,��6	��h6��\)`P�h��~�m�d���J�L�=ʡ��샯WF|ke�qp�2դm�A]xU��%#>Q�eh���W6���aT��_���z�a�i�� ���4$��	��9�ri^=U~z����3�k��^ͤqw���@�Z]�P�R�e4Y O�f�Y&i��R�0��l��dFCh��p)��&a�Pa��V�9T�V�Ly��b�j\���7`!��,ܹ�SY�Hf���l)>5��39��5#R�{�թ5z��'D�0�F��o�;n��܎c�{hI�*�|�k���}1��W�=:+�-� ���
SG���Ԛ�2y��
-5�Z2+�ڥXl�df�fu�|��X�7d&�6���B��X9+ǹ6��O�4�0kŘ���d@�C3�4>���N[�^��W�EPc�7+�I��nB�-�ԕ��|��[�S0f�Ihi���!2�I����k�XT��p�R:֕ĒZ�ZHb�|^�J8��L2KHQ�ⳮ���2���#M��ʣ�V��o��V���0ŷ2�x�d:������nu�'�C�Ui[��d����tqNKv�pKh�V��f:�ih5�BZZ�T���x�PK���v0;8��̂�5#8Jp�\�E#����2���U�T�󍬼���S�#DF�'�����F�""
��QZZ<��W[�&�����ԟhլ�f�[�ۖ[B�{��o�d-i�
g
��yem�唕�tRLԆ��A���٢�$��V�MXؑ!Aߖ�|�%VST���I%�'�ߓ����ճ��Oٳd��%�?yZk�5J�U�&��%cW+G+��y�\�W�[T�0	�]�T���\�\b�j\�tc���5s��ӄ&��'�,Q6�*h�R2˚�I{����Aάt�fa�������z��R\�z���]����⹶�(b�Q@��e����X�J�ɦ= gd��g�q���$��Jѕ�`j�wqXaxa�kBYOA���f}�[�̊�$�䕜SKjY��ִ֎�<��!����=r��^��\���
�f����kX�
z�V9Hfq�������3�~�ůQۼʩ@"
4+���Y_�����J�֟7��K���9l��0|W5�{���b�<�2�F�Y>�"D��Ke�醊[�J�E��pBE-��f��K�cb�y��S�b�-��Gr+V�u<7�����i��+M ,-hyfpkH�}#�t��.�IY�W��6;Q�*fфY����^��z�!�U���J����A����
T͈uc��Z�;L�Ysu�.�R�]^�8-S��tUs�\5���ڽGU���vy��>��Qҳ�?~�e�i�S\�;B���5�:�������Ң���q�f�����29��fA:����q&��1CXd�׺E%;xʠ�Ӱ��
�C�e��)�m���6Ǘ���-�[(0��Gaٺ����'���]�^A���K={�QpU%�r����7��9kȹ-��u�ZɣRQ������S���H�+��GԺ�7�I��ʰ?���m�p2K��}2��4���LpҶ�Z�&�"���1[�$yYF�D��G��6�`V%�>�+�ٯ���/����[�%��0S�Nm�Z9Ph���F�!V�2l��R+ru�kZ����X⋳jh]�g�$�ae���S�V�}h�,3�g�����.1�͚Z�E�vה|��7��O(W�,�0��R�A�bi�i@K�?�ed�+g�M�/9�ߙnZj�iP��kGA��k��@)B?Z@�о�Vȴ�B���i���}"#���
3�GjΏ�p|#�,��͟l��%#h�S�� ��| �ҰBI4-�"Ul2�#��L�@�2&o��Se+�a�SZ��!�.`�;5�it�F��5!�Ջ9on�*g�w@����<_`k}M����{���*�U�*Z����K�����q��:�����'�Ժܿ�5�v��Кe�
������0�ǖ̺\F�"�^�YB+��GT�"��/�ԭ*�u��5�Sp���s-�4�տ�[;�t�iMAс��lBf�d�"�1/Z]��	Kd�Bk�yV�[f�ү�|Mn�X��N(�Ȩ�F%����թ�Y`;�#4�J~J�H7p0�l��~=,�4t$�^��~��s���O�����,\ĮN��:�9�p�iC��
�`x��*	��1����C���'�VS��B�puU��:bꫠ	Ǐ�т��iyqj�Vy
�.
�d��w�$X�Xy��&\Ҕ
RzL��8��oL�T�_E��qZ�6i��a�ih�1mm%��? ��0�:
M��B��k��@��/LfZR��e�-�ޓ(<s�@����e��j��U�mu�jg�O�&�t��c1�F��YT{b,j�k���^�x#��
&����L#�m���kiŦ2��|(��c��#v]�E���6d�t
�$\(]�B�"4�,dr������#9JZ�N]`K:��S+H<�!�YAc2��ԭх<	3�ʃ�*l��51�Z��k)�]�t�U*f��
�J烫qu�^�����O¬�:��N�<�W5��yܪi}f�/ɬ���*����Um��OSDzZu'�:7K���fcEӂ�g�=tQ����D@������G_��"N��d�v�SO�#�!-dKz��O���Z.\��fe`+����Y
�����[���5D���{���e�R�V�d_t5�N�M�U-��>r����� ��뢈vָ�j"B
�l������p� J{�]al�
���PjYXӢ�c=�����3μ�&�Q3�u?g6�>�@I#?�P��FJ���셉Y����:V�҅a�+�:�2��Vpu6�Z�-Z[i�7�(��A4�V��3����>�u
���W�p-����V�m��$���*Y�#:��5�j�<5�Z�u
-�dFZ$�qt��SAKj�Os��v�`���^H��_0�H��uN�\��V�&'���Nܒ�Qq%�U%7��FQ�Jq��dp�Z�a�r5�6"��I��U�l�-0KK��C�ubϫ_kh�ܫm3�nt��V�	�4�F����ABnsJM	���3��6O?��3���fG{^wc����в�ۯ�)��U�y��Q��2{-MHP�|g�D���LF�s�d�8���Q����̂�-�]^5��˧Q7
6�T�C�v�҄҇��t��<UT!���n{̊�w=�o���ӒH��
��yZ���5�D��0+!�����bc�P+Y��V������kܛY�e
����^u�a$��!�g���ՂV3+��q#Wk�Z���A�#2z6����E�A�'Nj'
ZXdx��%
�@�z���0��*�,���R������� �=��>Q��Ȁtu,��3[�����A�ͬوK��:�(ׁ�+Mu�"� ����K�{�/㨲�tX���H�9��dN:�dLؖ�Dt�C���qɡ�Y���,L.�j��!|D?A��
G�c��ؒ�?�~U�|�)��f��
���T.��r3k#��������������F|A�T7���c4���t��5��1J��-�B�|I���׈+�s��6�<�8{̜�DBmr�������49p/�h�[;�tA06��w��vp��[��6����Z[y�\�D�j*>T�����M�
�5��7�V2�:�*�]hf$��3��Y2��T�p�ΒX�(UT���V�Z\�+D�Vt{��߿LE�[�YGЂ-o<���#�K��A�V>$eԣ�)�Hr�
c��W_�
}6%%�B[I29C��
�4k�Rp+�2ڭ���W��ğ����,��wY_)������f
�k�	X���C�ҧ��/��H. Ւ]�C�V��-ߗ�*��,��pmo}������� �+�hgy�.hϰO�UC���)�u~)�в����I��9�I�F�%j8ype��
�"]�����.��%yk����A���7��M�F��9�����Q�I�=߀���3��k�x�$�.��ľ����4�-���:�5b_j�*���F1�Ti�%� ��c�X"����}��{��R�o�{�=�=�9�δ�O��s��}��ۆ]�nh�*�`Y�W�o%�.��lX��2FNj�\���"Y/)a��^��8�{�ۻB0k���!84��DrX�f��j)�U��RY�e�{*iԵ�y_�ŸB����UغR�ʻy%�X�=H_�&�C&N����,U�H����6�pH�5�v����;<�Xj�{]��aHv�C���\|�QJ�I:��o�i�R��e1
{��'օ��+�U�u��`�_hM�9�W=�V��V`+S�U꠻z�\<�-�v���rS��s˅ZSbR��F�(�Mo�Ia�Z1���Z�Z�J%GOl2�Z��ze�	�6T��;,�}�����֐1sڨŦ���'U�D}�Fk�X�S̊3z_J�B@Kᡗ�1��MEC��UQ��4�j�~ah�����BژYz�?H~/�O��
huDz`s1ZudTmR��\z˥lx0s�'lp��g�TU"]��j�;���LF�(,?�$3�	(M5�^�O�y�����-(�J���A�(��E�
���pͷ�Qq͹+��^���+���&���Q��E�q����{��l��%�A&>2V���~�X��!,���M��x���tZ�P���jUr����C>y-�Y�'��?9�2>˰�Y�����B��X����oi{�����,�v&�e��x��08�> �nՙؽ�N+SS���{̬0J`�tA���d̖�-�\[��jp�Ԓ ��?�=���XH�t]�f�?}C-Cƌ+�[-+����U>_ijA�F����S_b坁��d�:�F)�.N�Y�j�_u͕%w��&�P�&�ث}
�\�0V@�ו�Uy1r��5#�SBL+��(��r��2�';%N�R�с�+�d��
8�|���G��0A��B�n�V��5��r&�2����<��p�{�(��Ӎ���]ᯚ��c�1�f���Ν�U��"�ǥ�����i�r>-|V�����J4�X�bt�8̲�D�(�uy�f�,y��P��[B�f�@��u�u\�0U_��V���B�@B��T�t���vEKRK���w�����c+�U�n��R�5>lsj�-�@�İXS���?�\Q��Z((��ۆ*;
�$����B
��x[�R�I�"Vx`KԪ�bS�2�V�?�K���P��J*-��Q]Z����UZǻ�݆+�+�]Fq	yRdŇٍ�z���u�����#a��A(�W
]�� �"�j�W�V	�,|(5�t� ��r
�:]�#�XyCا�BՒ�2�D���5E��΄h'�)CE����Sc�@
ά=ɨ�V'��dV~�(�����s�_������(Y�0���d�{��N�(��L
����>�E��Ҵ��%����kC���9+��$u�L}/�NJJX�I-�vC�?�E]]&�E
TuZRuZ���qU�pI��(�Qjʤi�0+�	y�
ZFݘ��J��lɑ'�<�����XWiv��@�Y,�A���|��^�F���es�܀��ۡ�g7o�5��*�!_v��zh3,�R��I ���"ee��V�{�A�\yԢ�ʧ��W.i�̥� snk����($�Pa���R���P��dF]OZ%�^CEV�'�9��N7-W:�P�Q���X�(��ͮ�B9w�2�Ł@���ng�ȩ%�����F_n�W��?e�""<6b�`�m�5��K��L�0�[���o�V�k�27�n$b�t�4{)=Ced�r�U�5I�sEx�x������s��cQ'r)���Ƿ'�e�j�����Y��uJ@�Mr��z���!-R��E���}��<Ujy�
?Gr}{�q���A���c~�"��
���>+h�?pI��
UJ�UHkh�`�A�-G��W��W�>�Z �V+�����`jY�ef�ֻ�T�
KS�M��HZu�d�eq�6�%/%yA
e��^����֠������P��[�X`�$V��Qla�v����n��OR�tHӱH�Z�A�R�$�r���x^{��S�鵎4B��&��*+Y��+y�(����W��'�'�'>�Ċ�KE��Z�^��a��W$���|��\�X�x=XO�)D/e�M�_��>M�ņ��v�͂K�7l�JE]�f]������u�f�}[.�F�ZA7팱���L-m�& ��.c��a�:�'B�k�i`�G���)4����z�#�0�D<�(�][[�n��mƇb��������k��ˋ-3둁�/C����iMDd�ef��Z�+��+���H���=r��ϝ;w^��@4����Z+��&X�El
-G�C�
��FR���P��v	Ye|c
�`V��=����Ou��9��Wn.�39*O\2U�OļI�u,�ƣӞ%�R���"~�<�:|�	�l�z�	�쎓�"~�Nk��=a�{S��FY�'Z���SeI�-�`�됾^��@�*�_yߐ�%�D5�儌�Ē��Tiw%�r�wo�2B:�<���̥���2�Ԍ3=ަK"�J����`��{�,��7��"5��9[D�~�����Bnէ#�a*#����8�g�(�Z�`����Pj7Zt�,^(註�i��'�El(hE�V{�:
��g�b��Z'J���w!�B��:	'����+�L&w'U�5w���w�IX���5�4>� փ�C\��c;�\Q$1�l��q.ҦL�9��4f�0Q�\ZQe\:�D��u��\7L`�r߾�N�$�=L�I�˅Y�Z�4�s�O�М�4�
?W�y��BmS`���mL�����Zm�Nk��Q2�]�d�W�Ō;G���j�	Y�����QlJe
SK��*�2�j�E��H�2�
�ʗy���^���?̈́V�m5�(ʼn�TK855�����T+
V�m�~��;6��B�&�f��hs�V)��pʿ���7�"[���V+��X�.šN����}�t��ie���/���aQ����u1̂AFW �.XзGK��م�~����{7�%Z=�����Gh�y�D'��ɬv���Ѱ�&R��WG�ˮ�ī�CD�ZPv@9�Hs�%��!b3V���,n
����j�[���SW�a��E���V�#O�;K@E��f�����Q=���0��tw��
ܓ5�F/]<:6v�m`�)�6���ۖ�-��W��T����1 ���E���,kN����k_$�⾡EX8eJ�����Ê��#���зvhq*"D�CT9
2��Z]7��ȩdS ��Y��V�JY���
.����,�H�MB�
�@�_Uf��Ć���䋗J.|
'���ݵ,�����mٚ_-�@Z� Mh�Ϫ3�T�?�2�$BC�Z�X�;�U#N�e�3�,���}�5���F	�#���\GւP]��BK��{?����D)p��NZ��#�Ԉ���A5Z�*����[4�⍪�i� ~k��(�	�9��{����n��i�\��h�Zi@cۜ���y��E��OU�������W�Ii�����0�?#�կ{>o���b�F�|��o�|��W_�2���
h�@0m1,_���rZ��i��!�JSJ>�Za�����[�[�jb�u6e
���Z��w��]����[;��Z�`���.G@�
:tIh!�V�N����3%F�-��)�9�Q>�V���%=���P����O��}?�d��J�!2S�/�7Z��
�����aV�>��Y��s7$e>dg�S�Z�ʪ����r�u������m��kS|��A��#ؓ��,e��G��\�5����QDj
h�㪳�
Yz���e	X��*�D,0�[�A"��%d4�D%A
R	vCŗY�����}��n�kzɗ)�
A�AN�<�)�P�k�ҳ9�^��UC��#C��n)*4�,;����g��1�j�2q��w�Q)�����5D4��Y�/~�_�κ���<��7˿b���~`��W��-Y2��	�U���\��d��Z��C�������M6Z�e(�U�1q��l�0�P��5]��Sbn��ӮՊ���ø��)ik���kJK�V�����j��g.��P�<Q��X(�
j��*��㘨� :���B�� 
Ԋ�uC�\NJ�r�?��ҋ��Ӳ�k�����T�yS�[Ҫ���%룆�q��y�<]R���ZN�'�j���Y�(B#�ԃ3Ry��[<ٲK���QE�"��L��օ��ob�zP-S��b���)��h�/�iȦ]�zŖ�vH�~E#Q��XǢB��t�>��Tޏy���6t(~P��!e;4��"�F�s�
���ku��A�ኮ�.��R�R���%:4�|�n_�~�PW_}�1Κ5똫��������9]�h��,?����K0[���ij9kM�����i�;�h�F	)��²dV��T䢰Asm͘1E��f+���֎�Pj��Rxp�S���JWo5_î�V>�Ϻ�^�"�S��m�NI��L-c��SO�ҨDq-d�T���uW��ŧ@��V\�hi��ȵ��y,�o���u� ��Y�� �5�blÅ���T"+�ʁ�fS����R���:�^fH1�<�fh��Ͻ��k%�l���K������|qΑŕ�
/C�{RN!���4[�SF��d)!��D��Q[`{HEQ�.����pY�4��߭��E8f�4��`����-Kg�U��R��*�nYhfϪ`u]6
5��)��e�(�E
�rўfB3K�4AML,�I�zx��ƅ�8g�}�]�n�s�}�����w�}s�̾�+��_G�u-&�<�������^}��rZ��O+�e1"Asl�Y)@UU��R]�$໺g<e
�C����]X�Xӗn.�,XeѪ�/��������}��\“�R,�V�ǃg.l�8�Vz�� ��Rf+
4��݈D��[VX-�Z^�45�VS���
m�x!�X��N��|�����@�7��R�H�T�^c�8�w���׀�>�*x�؉�,���}�ּ�mL�����4�q$�Y^c�B7�d��`ߡ���B–��@KC�@V�C��e���r�\��ACK��Ɩ��
KE�x�8�-BF��HՕ_���*D/F������V��O��2��+�o`$��AyEGO�a�i�U��l��.�U��eÛ�`hٲ������� ��O?��<��}���
�S��8k���˿���ą���fc�^xx�!kM���U:-�<�%�N���*���ܲ�]�]����A��A�'��C�۾00+�E��:�d�MZ^���ʥ���I�B�N�]ZȂUUq�U[m���i�z\l�j�%5��8�$�5��hT�_0��z]A |j���zzVCjY*䳤�U"$�[�W����B�-9dLUfu9��s�p�%�Dz�g�t1+�К>�I�I�8@�Y�)8�X�G
�3�Wh�,W5�~����Z�k��ҽ�`V`�B�@�����%(zA��⻸���z�{�S�
ݍ��S�(B���-�{.|
�Q�q�}�����1`8��TM]����Jf�bVݤ��R�,��ȑ��
�52>vZ��g���[�V0����BQ��7�xv�L�wވ֬C;l�1<�����&�u�a�g�V�k�̙k�O*���i�BHbV�Z����U�YlL�
f�8�`f2�N+^�����m���2��85��Dq�+�&2Ϝ���<Į-h��rȇ<U�-V��chY\�N��V��2�t��j}+	0��u�����?��.k=m�A��rq����r0%�p��S�2��6���"�v�����VK~�����w&��0(U혫�3��Ro5@XVA/�q�\����D��)���R�x��G��^�p�Xa�IJ³R.�(>E��,��«c_:fd�;�q �[�[�_^a��H�����jeB)�Y�@M+���8�cQ|F���*c��̎�ŏ�\62?�HK�_�Т_~������^x��! tZ�r�p�ƅ+�Ϝ9}��>X9�O���j͞}��;d�…�L�~��f_?�ɓ��T�+����R+ک��[�,^9�P�ҝ�3�4ˍ�f��<<τ���Y�VN����	-d�Ez��J-o*�x&���t[	-pT�q
��'hѣ�i��b��-p46&hŐmc騙uh,��k@��D%��2�B�1
<�m�S�ɒt�6*��Q5S�M�EE��*��\�嚯.S���
����x<��hA��G�(Q���F�b����j���Op�]	Xz)H����Z�S��Ĝ��ר���
"!�+�#�l���K���UoO��=�����b��q�m�g��~��=1j�H��I�˟��pP9���.�ʙ�R��*^��͐9�}-����m��P�R�?�6�\����~{��!!�B��.���A2Z�V�Cf�H}�䓟�|���<��k�=)n��C�Ϝ>k�0�QXv�'Orњ��"~��i9���4e���gǕ�*[�,��.���ֺ�ﰹQ~�^�6 �Ӥ�����8e5K%�rb��-���cK��Y�
�)���SY�g�)��#�y���#OT|�$�'�S�T���e�!�! X*���0A�@1-N)��y�i����_����t����s�'��9Q��G��տdtb���Q_\��e�N�V�@Y1�9؆ӂn�k0�<�
�r}��*��8-�=�_
f)�0��I9�E�
).2w
Z���N<vb��c�G�2H�'�(�1���R�����7«~���O�pj#�Zq��+W�>�8&h�Ҫѥ��@(6���S��*�nNH�q���K_�F�`ď�Ϻdb�,!�"Bh�@��Ѝ�@p洓N~�ɓ?�9}�̓_�����=��N�6}��i��<d�
�'��6�*��ju:�0��2�)S���ڟg;��r
��bܡ�%����DĘ�(X,5U�R�P�W29�K�,�$���J4�C�^�aٚ�%�1_�����Q��]VR�ؒ����E�i"����e��3�nR2�3�T�i����RpZ�uX���M�9"�}3��Up-+߳j�`��;�K��X E���������)hJ�Pq�-j���x�y8��w`>�t�#��o«%X��Ί�R���+�����u��u��!��{Z⡌�h3���#�"�X�{Μ��W����e�(#��cj�fBD��X�(�Ģ?��Y7j]{��Q�Л�ctѐ���,C�S���W�|���/��+Xo�O�K޽z9�Zg�t�^{�u��'M�9���_~y�^�vO:M��:�}��铮"~UN��h5��0�jf�A�Z��jFPZ�0[)�,�����g-
e�&���2�Rq��Ǩ�iex�#cBFVʴ�(l�V���rO5K�œ�4RT7c����So�l猙�+g��<�F�Z��>J����*t��g��O����2����ο�2�����fciu�Z��n"�%ukA�����,��U.��+&F��*�Y�r�>�����R�j�*��X!��z9��t���O�9X��kb�5	ތ�f��*H��0�RC��sO�%�x�<�4O,����8~�܍��5=�N��#�++'z�a�˥�B���=�ăuy�ާ��yQ��c���ep��W��2�3ꆁp��	u��҆�T}E-�W-j�.�X�\�6����\{�UW]�z�;�u ��ko����]w���X�{��_)V���g�v�$sZ�{X�Cm�+k��6�2R�b�!��g�i�8P*�o�b�:ڨB���R��zx'�]�ա�S��{���/Zz�*}�����Բ
y�SHH�m)��y�C�U*�Y|�)8�_������m���
\��oF7ne��=Ԋ�/1�ҕ�?]��r)-�ɐ�\
�j�1
�Nm�ц��Y�]�����&�L�+7����uw��s���դ�Y�P�/�u
�VM�+W9��Ye4�G��͸�`�X1�P�������xpI`k0�eh�a8>��q*+\X�����u�
��n`)s�vf�PD:bVbDy,�"����lf�D~랉:L��pU�:Y!ڐ0SW*�C�����E�Y�0��N+��6M����/�Ƕ�׵��d���82�P���>�s�ͷ��3���p�z���x���A�f�u�Ve�����u�^;�ZT{��wݵ��/�~�k�pI�}7kr�i����%�+^nu��@be���Y^�Z� ��x,SK�R��rɥ4:B�Vi�Y�#�cfW�ie��j��T����|��=�
��1��.	rՑ�|�.��P�2�,y�ѥ=�̢E����J�e8�m$�Y��N��J-e��B��Xg�-D?]]�1�%B
e16�s�X�cB��͟L�"#���$��Tʄb���ӕ�2��1�Į�-"I���i�Cϫ�e�6�4����J� �QaO[2+̔�A�(&T5�;�A�԰���c.Tm��
ZNW).:˨e�UQ,Q*����+��X�>d �KT�e9J�<��
u_ט/܊G�+6>�R(�+�������XGm��δ��!���*�u��?�×?������7*��B�a��}�v���	�XF���ʿ�Z�ꮏ��}>�\{��qڴ�f~}�w���x�:@/��V�^	-�חt�jf
�iO��T�
�WX<:�^� �@�����Մ���q�}���[��LC[��sp�����֩�.C+����\_SRU�A��QS+�"���.Y���՞�j�Fnk_�|ōi_�=K�]2L��-3�aa�9����T���c�6,�ҧb�ta@K�p��ϛ�}_4.
x�w�$�eb�OQ������p��PԂY%�\@Lh�+p��t�%�F�GD.K#��,pc����N�{ٞ�IѤ��A��6?��H-�x^y%�5�(e��9�6Ԓ7j�2�
;���1G�C�A�^�L��IgͬfUi��bf^��'�RR�o���
fu��o�c�q��0X?|��N�S���xZ�X@j]rэHu�7^}���ߺlcMX�u��r �?–Z�s���F��#ߵ����:i�g�}��rZ7$��@�W�\4��t�+�ʓ��U���eR�3�C�<T&�,�,��s�
x�iZ����T����>�˻c�T��>��	��Nn��\yh��F���(���K��V0��ک˧A��ݤ��_t����Ђs��ݰ��Y�a�|��72��h7�jxX��\Jf��,���yY!Cy"2^��,����>�L��@��"��R��9���Jc�݂Z�&��ܲ@��eQ���xWΤ;�-t��`Yjy,������<�*�.��Ԋzx�x"�e�R���u^ok��}޶�&<�BD������z�O+�!;�:����5�ȠN�:T7>I�d�H��oi���,���<���B tu�}�������g��`�
H���d�l*f6}:Eg������Ё�#���=�}E�PkCn<)Z�k�<���VN���U洄(�R������'�%t}���޻-x�gfI�
y�}l�YY Ks*�������td���Srb��ؗ��Y/0k �w��!%Ǖ�9 �-�V1_c�?T�t�("��B3fL�Ɋ%�	:����8n�谠�vוf,9���{~x�[���q'gNN���\::+�,�ag��>�>K� ���Q��XQ�wK4��`�-A�]ᵢ�Tӎ�r�H:��-�e.q���9u>8H�SDvCY�~7���4�pN$�{*HS|�fD���Q&G���ơ�d�y�g�⌓\��+2"~|�����1A��n�)��������rݺp����|쫬s�ZڮT�gh%�w������̲Ӻ)$j�:�;�|���F"��4�PU��>�r����.�h65�ןuҁJ��q���!>k��_	k�lSq[Ĉd�>y����/�6XvXR�MV��Q�+
"Zf�F��al�6^�jG�P�7e��t,�e�}3VZ�z���9�Xk��5��M:k˔��:�@�zf���eF�Ejv��.�-Z$h�q���SU�����?�����6����6u�� �56�~�iX��!ZFu�ds'�J`�?>�\`'�����D���TM~�%r�����'_2Ӹ������qG2X/Z^�N�J�!a�-����qE��E9�!K�F��*���S�#�<�\�4`@
h�J�(����x
�x<z"�(z�5z	B����F[m�e���Z��.kQ�D�D�^"$<���9��]�w�����b~�����G�"�N��=,��נFU��THK�=�c����$ĨSe��<���\3�?���;Me�u���2���j�����iȔ��|N\
k��.믿"�����ѭ��߾��b\����>{�B���Ƚìv8� �"$Ͼ��+��i��G�Ug&U6�V[pk�R|�����dV�8&�}��T�%^��o�����Z�L��+
�pW�ļ�@k@x)��#����}�,����֥f�b�I}t�C�L�
��0@Q������NV=ύA}�a��@/NA*i;��Xbæ'�&zqJ%��F:�.����j.��2��8m��B��Yf��X!�F��9������w	���p�a�����Go4��I���r�����r�+�cF%r#T;�-)oVz
V����C�3����%��S���0E�h�ie3&f�Y�6u[��Y���}��j�1i.���F��U;�>Z7��S�Q?����.[#*���?R��0�
R��j�Y%�d��T�EFW&���0t��5R�x���Z��w!�E�]�_�zN���g��@��a]r���~饭�}���V3���bm��m[o���*�z}�rK�s1���Ybi��0�[N�Z����wZI�4�R�=��~
���@+���c���b?oZ�V�ׁ��S"�r+Გ�RZ*� �\7�֑D)T:٥ھ��0�w;�d�\٪�"9�����U��2:�&��e�E��w�guv"����i<ɋ�\#�E!�2\2[�U�5<��6��<#��D�,
h��֓���jA��T��3��Ffw�z6����Z�������h)(�r~�0{E����R�)��u�b@��J1�"B��C�Յt
U����8�*��E�)�(�BBV����F%��J�/%��G�2	l�º���d�pu�]��q��d�5�1��8r΃t���cE_z.����c^�n�y&��G*����p�jub�6�X��i{P
�QZ}���ԋ��Q�r�qY�T���-���o��~�ّ��FÜ	7Z��n;��n�{�2���f��7���nZ�$,R�%Vf��㰹@Pk�8��K��b�{㴚����c�X�Y`���J��I�AˋVxZXE��ߍ�:Bpj��U��K	S�R�jc��p��j��|S���١^��s5�Ah!u�>L��f��,(��T;�R^�.�u
6��ڹ�h{��yEK+.m���
y98D^����YNMUh�����~�|c5���F/����!/eZS�@���	1\��K���hDb��@�N7Yf��]���LJx���ҥ�Vd9��D�=����DΏf����OK.���^Y%�v���H�C�E�&j�@b�ҶX<���%k�){�ԣx1��m=���#�R�P��n�.enk�d�g��Q�����pZ�x��;��C@��~���$&Dԍ��'�{�5�Xw�M���Sk���p������d�5��P7�Jk�0�vx��Z���8��J��7��TE����ʽB�������G�6>^���Ӫ
�����"+���0f�-�g�(cY�u�T
��u�@�讌�JK�|%����8J(
��}긼��t�Ń�u�We�X�kȵ��bC��,�d%���A�R���'�(�(/c�@+aa��sZ(w҇:#�K��3�%N`� 
6�֖<^�֐ζ@��"���NrZ�.��W� P��Kp��	yj�يq-�褡��TdΤ(Ag�X��Pu����,�НA�@�.�:�XlsO�}Kq~�(�e��2b���u�nYZ�tU���&�x*�3�,hAE�-��j���j砸:�.p(11�_�ک�t�f��xj�`�����	��Yν��su�7`���x+���۩s'���I_p�Z�\��z+&��ZlAW�Kk����}
�8��Z����Tj�2��D�/�μ����U-+�'�b+ҩ����H�a�j���BP�3��`�UF��'ظ�_|�-s�o�"�sBEE`	Y(טg5Fl��Z��]���R�5s�3��)�%q��f��vRbW�
��d�<k�§Dl^H~�ۍ�N3e*��L	�����l��~$��<W��BKD�q˧��L&�Z�޶�x�|b�jQ�7ޟz�!U=�� ��ѭ�
/��
x������k3Y/��4���2�yɦY���� �E|d����,%��=�6h�3F����A �Qg��R�ͭ����u������{�g1l� �u*�Z����$�nf�6~��U�.P�@�'�WPL�
�c>�ek#����%n�kwG���z��T�e�N�V��}��,�����\�}��{�=��{�c�}��2J/d�R+��z�n��r�(�^G��Y5���-^
ZP+Zd��V�t�3��2��y�'uZ�Z���*�ET�g5�p���*9��d��he�wU\/�5TE�3��qv6�`;�||�1.���%-?]�U{��S�9ڨ��q�=�<�k�OU�URXM�b�[�w��"7o�=q�t�� �B�LOؘ��rez�Rp��UQ��q[����-�7�k�>��б�3��#�?Cl���>�:L6�)|�C��bN��p!<�uP�4���K
��܀.z�4]D�R����ah,�1��D��� K)�И[}�j�9�C�(��_u�����ˀI%�F]�umtNWՅ��ޓ
-F��CG^�� ���U�� �S��<օ�5%�T}�8��zG����e`��et�f>�԰)�\�X�O��Uث�w^��]e������γO9d�Kv��ރwؕq����� KQ��<XTc���Y��ja�*�0Z�ShY娌ֺj�@k��IE|cV�R��W=�P�iZ�f�i�c����a���4�ͶK#Sj��ՙ}��&K�jq�P%R��X�׼�.���k�D���!�N�")j�V�K�НA�QI��T7�����]��8166A)�dvSPI1X�� ����P��?��ƝeSP֜V �WD.��W�o��fe/����N����8, �[c#��P8t�Q��V�,k�u���n&�Q u�Kf�)���t�Գ�O��r���҄!��f�����Ds�#W�ϔ,��ʻ�+���9���揷�܀D�-�C�ROf��Ye�kB9���t2�f�"�)��#o���{���m�H$�F`�6�/��zP�$@���!b��:��
�(q�Y�}�V��v��2��zK-��fx�j���j�glZ|��!%@5hEœ-'h�y�p�?���V�d��:=xG�A�O-m7�:���S.�l]���K/5kxq46l�ڿ|I�F�*=�*���X�
@K�(K�QrVj���	[��<��J��'D�l</��r������wO�
�J��}=�8���w�z���v{�w��0\u��j�v�R��J�ɹxA�d�m3}�7�YU*j�����V����VP���oh�!���9���W	G�צ��!"yp�t�q�a�R������*̹��jPA��p���V$�9��O/!d\��S8FV^A!̒�K�j��=�Ʉ���tQ���Mܠ�:n��D��Eb2G������Wx
��i4�"]�d��T�<�C�d�V_M�J�i�b��X�㖫�Q\�F�*�>�ı���ƺ�9���O;~���Qz�TJC>�L��,SH����X�+#���a�����s��*�Qc֠��ch�EP�iՐ�X���X˱�C�0��Vӥ��K��v���+�/'�����M9��X��G*!J�W5Z~ؗT
WU�d���BG�D@
4Q:*uU���ƺ�t��c���>��q�}�k�|2�S'�����E����4��ϯ6Kp��p����\"'���-�M�<���!���rF�sq$�ӣ�U��oa�\-?�SNESG(4K�jT�XU�G.LH�'�X�`��pR�%��g�,j�a��9������u�P���J����w����HVK�t�q�4����~|��#�Tv��$W��J��&a��E�n;�yBZ7�X���vV��̶�\�ka���W1���e��z��`�
?��+��NAV�+6D��4~d��r*g�注�b,��[�{�֟�9�k���*ԂU�o�{�Va��K�(�{�ӥ�^�z�+�{�Ȏle�e.PM�#‹;��׸<����7��g����Zؚ*!�y�Y?����t��_C�嚩���QM�w��~}�71�<�Cƺ�I��Ǻ�x�y��zu��5��R�����ZY.��whEuSm�18�bs[�=#���p6��R�EY�ޓ!<3w�!;`�W5h��w*��lJ��Ռ��<�a��V�Ě�֚�1+y�q}*�$��9�;�g��j,~x�I�I�����2J;:�.6ꮠ:v�AJ��F�QVKC�2�����w�!\���@�
����I]E��*�"�uurc;
Z���Fs_�IL��e甅~+�|�h�F�Z!Yf�O��Vp�맴�:�|FwѢa��6�s�1�J�o��jъ�J��2�¨��Y�]���M�:]��ߪ��������$G��f�=�9��?ԹX!��_��L2��K��V���
�Uc>�i�RY�V��W�d�i�Yz�(Y��@$kx�r��_ҠO�l�]hX�K�Q^Yt�FW���M�l�nNwq\@k�}���y�s��<|xlbfڣ6Mf�Aeu���E�Jf5q�m�R5����T��4�"8T�h���^��q�?3ˤ�ׄQe򨞁<�EO��^�<~/D����G8<���)R�@�*)-��M&�E�ф��q;`0��j 7:��{0�D��0�SZv� ��-#��y�`{*��Vm��|f�/�÷��������a��'�搦�̴A��[o�;��z:�'>�4���"������qY��¬�)��g���x��]dQ����	(�i���`B�e$uZi�ʓK�·�Ϊ̢V�9���
u��
�T�址�)�i���6�@VZD�Y�yG�U9ߡ�a[�XHF���
�`
U�*�䬕�F���?}�NOW�j�ZtT�S�Ґ���j�t8$�^�ۤ�9N��}׼811��0�c����(xjzfF��VG}���|Qo8�59<y��/��.���4�PNk�0)R}i-Wğ�1<��Z���Vb�a#_�1�Q�h
9P惃,Wb�/jq��E��il��D�8,7`'�.�X)s� �I�zǐ��6���G�������L���1#�AW��}�b�	�4���L�̸����Ӷ~|�4I�����f<P>u��;\M�u��>90��2-�(B�U�{��M�O�lq���A�}g�#0�Ό+4��[d�Fh�S#��+>N��� î�4�*�J�x�P)4<f�맚�����;J���Z��9A���'VD���n�U\؀�����p|���s�?���8���7M�����x�++����*�M2KiS๘H�rz�jh�foeQ��ϬG9��Y���f�P3M�퇐1W<�#��K|���׼�v��
�S��x^�r��^���k>F>6}w�t��>9y8[P��>}�eחقZ�����w܍�b�Z�>)Ϋ�J:������LO��ϭ���'�e� ��ŋb�h�ؑ3��6�&F#��Q�8E��W���:� |˄�Ԃ�5~��B�^o�qsԠ��J�᳴k�0U�w���1Ő�:U?U�j�Q��fa�$��(v�]AM{H�V��5�u#���`��JI�������'r	D&jS��Jj�1�H�|��P�6_ŽA�թ�<x�>�_�s`�}yP�Nt��KTh������K�{��ӎ?�ԩt4Pd�R��F�$4�{�HV+�
�r>45h�XHк�?�#�_���o�\!kP�h�gʭ���4�#��[�ȼ�IKS]Yvx�~5��'j��!�Ľj�8�Æ:��YŖ�FkѬ~�f���1Z�[�+�B�b���H�4�s�MOMZ(�w?�!��^8�����@2\���k��=o�h�Z�Vkc��'�C!Si���ar�<�:l2��Eā)܀A��R��"R}>� W��?��ލw�q�f*�	��"�{wy�����4��OeH
�ક�m�D{=k����`�%�JF�Eʷ���)�'�E='*�\��N0���]n1Nf���9qU�HJ�]Z2��9]�J�
�Y=��>��R�+P�D+��S�(�3��a#��rfa��=�*}@,��A�e���+#,���nj�."�7L�xyÁ�s��O��K0Z���-e��OT�ڨ��e��������"��V�媇{�7=�,���*���':�#��:�lJ���eSn�=�c�O-�7�ZR^5V�*k������
���U�O���d�QTUz9��ڧd�0��ܨ�� �p�c�,|�n�u�F�u�t�C�L��-$"$�\�yd����|��ډ����LQ��y�:��Қ
k�cY�ӅVMl�Y�(�_*�⿀֢��}p�cE���cɀC�\�b����m�v����`�/3�8��qԣ*�d�(%�n0Ⱦ��1��%N�F�9�*Qdf��k�̲C(3 }�>}ǝK�+9)W9���µ�X���ʼn�:S�
u��@�-WAJ�w�"�ɘ
�%ћ��L���x�eJ�JF��� �SJ�3Ї��╫�(���O}�У����L��t.��)�zy�m���"���H�ߎpQ���>W��QW!q�����N+�bCE�:�uZfh��(�*k�Ik�BЄB0�*�J,ҳ#_e������U��x-!�A+��h�V���ql-�k��S��
�j�Rvo<�ZED��l�w�橨}�7CA-�6�t~�8�(s>���9��m�guB�F�:-�u�`���:B�ׂV̞S��*�J����!�Euפ
�J*?;�i�*,� 
����}I����R�O��،i�BK,R�#o%Jq���Vmݠɚoe���)��B�n�,������˴�*�wW��z��ɵe��!c汿�.���4��q(��g��y�&4[t�j�v�#.J�ds��ƅ�P�v(���B��bah��,S�g,��O�Z�-FKSc�b��=���7��v�tE'�S'?���(*}����>f��i���aV�����Y� �����fł��h�X<��KE�܅Q���ˢ2Dj�j�YQ��
*D���h��Y	�Q,Z�PeeUs_>��r�o�m��Z�tEI�%EV@՜��U�ū��S�-�H���'�zJ���Y��V����IL�Z�ց�ݱ��w�D��������$����B)N[�[m��R;�|Vp-ri�T��)�:l�lL�4�U������-�����(���ܕ�q��{+(���=rVr��1�T k,��W�h/�L>.ua��3J�I���8�&�tN�&_� O$�XB��6�~�����`Z
���DDJ�Y�8�d��n�Z	#1�뼵1�.D�2%b�����EgÐ����o�Z*vx����P��6��l~U����"���V���Vj�?9-�xWv5�U�겜��
��#�?���`i�����nN�j���vC��&<�˜��r=�(ly�0��x5$׮�Ug��'��*n���n�˦��b����ԕ`�;s���k���_��(��E��?���w;hQ��Qև1��M��� �R�0�W+-G;�^�!̻�dzshViY|k�`!5�仈X�-آ\��:q832�#b9M��$��G�|̢�-�o$�ߺZ�J2KT&���0Yɾ7f�[���!���<�{�e���!( e��=I5fy�r��R…,������j�Cw5tv���sH3����2g������P�CS+����7�P2e����
y�˿��6y�g*vxo���f��ǯ�t?6��̪��*��8*�^�Y9�.�˨�Җ��q<�*��iOawy��i��궤#\��0���r�c�NEV���
�Z��.�H�}���s�SF���:H���OS��4U��,�n�<�`UWl���-�V~yQ���<��e־|��֕�>�W[���(�"�� �˷�[7t��4��R���94�<�Ȓ�
���c���6���aV��uB�٥$�L*�ʙ��S�M)�B�v��`r)	t�DT��,�9;3�r�'PrMKy,)e�q���Ć�=ޭ�z��42���~�Ҁ4K_u���t�xX�H�I$�J��,��xCV����ω*Wk1L�!�B
cxH�f_�!>T�Ӕ�6���Q������HЊ�p�9S*�"�EZ�_��7�|��{O�Cy�c�=m��o4>�1�в0�C�J>��U�u=|��⋇Z�*��w�����vVQ��L1j�ǩŪ�lٔVGlIjʉ+��Љ�=��(����Gv"ٝ���$g";�x-�	���E�%�BH�`�m���9�Y��(��QeTͧ�P��{����S�̿�|Ib���^|��q�;s�P�-�DFS?��SG���S�x�̊B��wX����d`	[��bbEl����B:#��r�{WLQ��F��\y��2��l�P�L�܉r��yLj�Y��Ek���������i<�,�r�0�����
F=��R/e݊E��Q�aŏɑ��&Wn&�n�&���rqG�rg�q�P�$��}Ҙ��v��3|%
fX��⵪�.aK�a��LV�U.iк^��K��񻃯�h��.:r3��D�qhEHAa�����Ӫ��N�
�r}����֦�km}����uZsZ�c1'��⪬6�0%�M��ʈ������y��p+R���#
t�2�X#lq�nœ!���Ӕ�^@_��ԫ��TL�W�j��l�j���ᯡ"8���0sq�CԛާyM1[H�D�����tқ��"�u��]����N��J{,�V1[^e��ۤ�CZ�N^��ҋ�髝�oTG�0ۈMEZ"�3��`�`��ݿ=�b?e'�[�.�p�|+B8)b�(�d(aꪴ�h0Y�r�����xi'R���ICI��"��
��%�:KM&��q�
$�Nܯ�K�Z���	��;�%�v�m�}�P׵N����|�����B*��lVny�0��C�Jl�ꯘ0��A�Re�_}&�����!}���%�|)Q��@k�[�j5��Z��Nr��~�����#�է����x����#WZ=-$>��cm;Qs\�i���JR<ջa���Ab��U}U�����t%
�#�a�Ԕ{�4_ZSKA�`ڞ���N��KR���RUl
2����-�a�����@K?��i,��,�_���j�������|���)��4m�W{<j���QD
Z�9�(i#F �a���p0wP/�3dibU_����aM�'w�4�U~�t/��̩]2��tiױR�5
x��_R��;x��+�i� �ωTQD���,��p��ܝ?�Ƨ^���{�L������S�h��WhR��,Ue/�c9�ޡ�wm�����T��������9r];ҽ�ӹAi�5D!�K�Ғ�0K*^�����OE�R�:�3�E�N8e�m����Vb��Ł�}@lV�6z��Q��Ē�]_6L��i	�ڙ�m-V֦͢���x�Zu�f��bvʪL\!2J_�%|qj=�u�*�T搆P,�̴��@��N�RQe��c�#�1^-w��:��EL���P�X)}�
x�Y�a
$�Z���,���:�>WB 5M[S�,#���Y����j]#zPy�:<�r�&���`
Z�R���ru�����RP"��2W�#<
�Z�(~#�gF�0��Z��kK$U7�%t�a�c/{3oSC;dO��̾č)�BI�WiW���q�A7�O�<]#4)�Z�3Q�N��@#�N�C�j��*�xԽB������H�Cߢ��3���փ�m�kp,���
�xZ�5"N��<�Ub�["p�H�h��O�w�I��{��{n�������@�WU�ꗻ7�kZ�C;%d�7�y�g���Lj�����oU�k?�Z���*%V��1�Cz1'J=��ꔨ͸I���ϭl�`Z	e�ⴢ���J+��/e��Ѕ�z�b�Đ5M����$[�}�8�6N�&7U-��j��t�UJ3���o�5�3̝'�g�8
�>\��
�yhʥ��*]��v��av����]h�Z)���e���*�ޝ$|�݆zrX��:�M��`���fݜb�W_��ɑ+?f�e�"\�LP,
[��ߦG�,�=��B%�Rv+�/ۥ�K��kH�p5H[�����f��b&�b*���~���q�Z���i5f-d�UMm�E��M��:�v<-�89y13+l�V�i۳.�l�R�n�T��B,��Y���.�C�^��E+.÷�
��Rp5�\-��Z;~F��Xg_�>�b���_?��/�{1��Ugn�:�징1qO��F^�ŭ:kh�R�2_��}��P��Z��J���X�Aed�཭9�����P��}�%1!�
�c��v��2v�7BC�_|�7�*�g�%Qv�lUbi��ș��3�!���&
������}�M<�#wƮ?OS��끷��λ�ׁ���4�:���e
9k{gjU˥WK'v�Y����M@Q�.�C�"������֞���Ԍ�rv�� �,EF
0e���z�O>��WGa��J�s�{���������[��W-�*�R�5ޓ�R�v����F������3�^�	C�Dz\�6���	n�Y�jxP0�H�U�q�%bN�TU�5�ADYV�%?eh%�UBC4y8	�o_�㫯>y������L��Ċ=V�*��[��8*�x��Yo���G葯_zmk���Ho�Z�֟ԝkl�Y���h����o�(��]�������B1�T�P-b��u��VZ��-�iZ���%�b����)*3vJ�H
C�I@}�~��=��f����̠��w����8�Դ�+�	��
}�lr�]�1���kq�\�b����JfV�WZY��;����A!S+C:F�g���ɒ�bMQNHI9/+���9�k!���UK�XV
��sW�ج/�U�!��0���8��R1iÒ%e
��ªU���*6U��+k�j�X��xL�n"��۷{�Vˡ�
�P��4*�9v�45���8v\�{���#��ؐ�����)+���wze!�FK�ZLT&� Lז=G������^���{f�m�p��XQY��q4l�ܰ=
:�;t{W�L@,rYE[�fZ�i��<�:cE�h�oX�b��:,X��h��ѡ�ۂYܸ�J�%9q�W�3D3�R�4{!A+�ƷR�T34�|�"�ժ��MC���e�w,J��ގIzֳ��󸒕aU��/m��^q���D���Ǟ���af��V@�_p�HPL˱��3��1�YͶL�H�cƂa%��Z�����t��<jy��2�PZ�;��2/4H�
g�gm��VS��:�'Bqi�]&�m�/�����)�V�>���+K�`_D\J���d�fh��t?ފ�m
�V�UT�~Uن���[qY�m�j���aULl����� ��u�';�{��T^,u��_�gdhh俧ճ&��E��4��*C���XQ�	��0�?�>��cVt��O-܁��\�Z�N��C�&dz(�K��9�k��V���1AK�|�*:�Yn;�*�6Z|����Q�_��8��:aj���=k١��@UcF�������:�L,3hngc��Q��e|%��xP#��6�P��t9o�ͤ �ak����Å�"��4:>1S~��f���Ð�5Z��e49_��Z�8�v���� �:w\���ԅ݆V��O}�]�=�Q6R���AP�{Ìj��N�e���E{j/���u���־�8���4�%�I	����ܬ�{�`�RDp	��n�n��B:�6��^gѥ��2F�qȔ�֙6E�Է���ZA�S�}���!Z-�T�VWv5N�I5��Beą�V+�ꡑ�֭
��v`�����9}����P�$��l$!�OPr����#7�6m�԰�u����������q��2��`{b���4R�뾓g��:�����TuNL���r�	�[X�V�<�mK�|��
��>������BF��y�8nˆ�$6�C[5��s�jxT��8Pn+�N�GŁX��;�pӁ!�(��}V(!+��ґN�2���W񜭟��2�Pr~6Yw��'^�/?�R��jJ�y����u���5砄��"-��ςa�W�~�y��t�j��3�Y�f�=73#��ĭnY�7���Y�]�#~��x`� �(��8����ŴRL�|&f�+�ָ�8��)��8�(&-N�����0�O�pTڸ/����S��,��Da�ۮ�zM��r�y�g�Y$�Ry��_�@ޫDD"�c�S:2B8X�����z��U9T��7%h�'�$;�Z�;���M�EhXV�M���5]5qZWǾ�QE��Өt��`��d�;>򑏼cIE���+���ϒ/�"�TS�������*�:{d�	X���M���^�0M��`Z5Z��զH��T�	� �P�ũ8��VH��q*K��<��/we[D�G�(������dP0�d�*��V��y��Π/��snJ�ۤf0\"3�����^;�gh�W2l��T�nYw�n�ފ����h�x/$��K��$ߏ8���,ͪ6���M¬�U��V@kp�j��R\�Y*�%DOR]��rw)_��p~e�[tmѢ��%2�s�586vkxj�2Y-���z�/йT��K��a<��g�e�w�+}R9<,H%ǥ]�V�+��g��J饅����*���n��
1XN�����"�̱vmU�aΒ(���[>H׊�5Z�Z�4�穖�S*<[	�pW�5�U#
��n {5�UE���7@-еAVJ\�*S<�۬�<

��*�[��'7nlh�B���U��zk`^��V�P�&GN+�V@���b���U������I�gVa(��'crd?�R�7�G���t��!y�`퀰�U�s��*ȹ�.V�pU��ٍ��L�
a�4w2����R�;Q+�ǂ&�iy��ށ�}3�X�}A�k�VT�6��P(�5�!V.�J��̚3��*9a�1B�r~��]	4�U_�m%�Y0+i.�2�Y���|fu.��������o���eyA�k��b՜K�dve<#A�<E]n(Œ*Ȓ.#e��Fai��[�n
�9Ӳ���Y�K��.=�	��Qs�pج*Vq�D��_�"ٜ���(�C�F%h�X:��K�2�|�]W�b��>ń�,��ռ=f�V�O��4�Ł�f��K|��JK5'fe�X�ÛR���<d���}�v���VX�,�)mTk��,V��qC1�ú�^V��i�T�V�����5�2aKrѼT�:�ډ#CbV[��+�,kk�:tC�N]A�V���eum�TPKq��b�擱v3��ipDÀQCJF��G�:|��T��}̮mi��Ew�eBw�g+z}���	�&W��Qgh�
�c5�Y^�K��n*6)�_<�k��7��cl��o}��z&�(��,��	�k�L��uX�l��i&j���ܺ�D$�K�#Zd��Q����k���������k�*�٘Db	5	Z�fu��
���ԙ�ܑ�_�� UmTL`��G;T����}��'�El8*f

ZSW�t�~�'��"�s�>�Y��V��$�)!o��:��O��<�[��4�*�T��ػ��W�J��,�Y�(He`�bz7�'�n/�����B��5��"�~*����4N����Fj�{m�l�r�u�}�l�4�Ua��Hq�i��y[EŦw�cɒ%�@K*`R���[��†a���Ym
m|��L�*�nk�mr_�GSU�D)�Y�+�d�X�@9�;�D�uE��Y�"tLPQ��f#�dt�k4X�*)���y�*����-Wj$��['k���\t��bi

#�g��ړ$o�_K�# E%)t�xV�!��!�O�eM�&D�%����J�̬�|�I�|UFR�̦��'9s�oJ��+#-c+�IT�ͥV�-���:::\y��x��ԅ��)y�}�h���_��kPDb����]�z�'.�*�4���33O^�����Y�$�@�,f�RCK	��X��1�)�Y��%h����Z��?H^l�.�\�`N+-d�&���@��X��Voc)���1���H˛G���S�-$t�.�)�ô�bAce��j=)/�Q̸v�u�q1�Ң��t��"�U�2��_�$>rX���D��Z��a�F�P��
[�����
��1�*�H��\IK����U��D-e���/hh�Oȅ	~��l
�Z �S=D�k	Y6�Jt(�2�
✤н�]�=+��r9��|�	ֹ���
y&
ȑg;ˣ�a��:��O+�!	�g�%��
��l�@L���q��<S4���W��X��'�[0�;F��1mO-MܶA�!*���E�<c�2�2��$+K�q�����O�B	X���ֹ9����pY�H����\;-���h�ŋUk�t�U����w��Ύw�s�WW|��z���.�<I�!�"�%�q�W��%�{
���>���B��`$�GŬA������k�a���[<]z�/U��ā�V1`�dl-�,7uM�2�L+,Ul^�=ZT�,���,��I��-^�_�uH�Oͯ��5�u Bx�TT�J*�$�;;d�rX^��S/��_��?,�#r��*��w���Β���X��VK�[Ը⽲�Y�͕�B11 G����x�q��@�ZJ�2O��ڜ��[]/!�E�̕�g	���Q�O��Es�Ѐ�G
 �+��>��5!9�Fe� �*P7-�YMBX���;u~H��o�
��c�h9���)���U@�-?����LY�4�}���c�C?���~���[������迵g0Kh��.����rj=���#�t�`��`<����|���?A+��繮��O��&�z�}ꩧ������Z��\_s]�����_q���+֖�[��|�d֭�΍�H�o@�a�s��%e�[�u�E��J�EU$Iw5�P!)�E.M
_8O�K�t����=���cO��CAKk�%��]”w�F-`3/�<nXP*+��r���J�*��〢e>�b�K�����KQ�\^,h�D;�z���Q/2�~���##��zUOSj[T��v��bq{��V�Gk�h��6�nv��j%�����p�7<!D�������2��2SK��N�&�a�,��{��'����L:��T��ڕ�
��g���A��Gx�h-#f���{z��5r8�n1���,���!irf�-���������x`�bU1�G�*�b���"%��Q/�!W��Utr�i����>����i�C�E@+�F`>��26W�^t)�
�
t������e%��n���T���d&�	K��`V�+4�Ԁ�������ԗ_���j�~x|�F���e�|my���'���;>�3�zHKQώ��2M��p��B��Pa�$d�]Ib�x�]���B�,�`��x��wU���U�K���ʼ�� ���,�J/n��4�%`�u<;f��Ju'f�g�A-�8wX�\4gQ��>�/QQ#�Q�`���?!��Ջ��O�(��K����
[b\T��a;�X9�
�#�]�4K�Z̎�a5j0�u�V�d�2��Ha���b��+���Vk����ж�R�Mm�y/n)կLY{k?�{����3�Q^�V���W�?<qHB�Jf�6ڔ�Y�h:,F�Q�P߄B|�x��X��@+%��b΀kۢXϫاF�`+R�@+!K>KX��~�����''~����_�s,�Cu�O~����Nj�?��p�ʳ�}���HҧTP1l�4	Z>d��-��K���
���J�.@�R�]��^�b�+���
�4ډ�Z��O��?�p�Z���˧;�њNt�ܩߏ���*�;>��sP���Du�n�xr��Z<V8��d!1Ko��$:i]�Z����x��wWE���r1H�\�@�G��nB.�Pk�D�l/���ъ��4~x�'���$[,_J�E�Hy��M�X�8̸�)����
{�OqOH�o�&gj7_�m��T�|q���G�5�?M�Bkk
�
6�R;��T��t��!��^V���P�6he�e.�R+��7�unm�{�p��R��
 O̪p�+�J>�_�Z�ۂ�,���w)\d�o�Q� � ����'V��]0clpO�Z9(\ۦ����>3'T2�i;�`#��:�٦.Z[�X�-ԏ �D�jE��R�:����h�ݰT�@'+�i+���ӌ/%�E��N�!������\�p�Q+!���Н*M#����iIt�/,�δԫ�Y>a-�0ߓ��o*���#�F==��}���:�Ek'��x�ԙZ����z��Vu����S��x�b�u���𢼓>¾s37��f��"sE�w+U�Q�P@�"4�X�a�5^�]�:�YO��~w9��7z(V�=41]Jv'��eRQ��\y�,۬���$;�u�%�P:��%�e�y�O�R�Ybu�4�`���jX��/�Y���L��|��r��>ɽ�jY7Z$�C��8��
(�u(���(�Z�i		sE�
̵��U�\��̑�[7�GD�y�?��2jTx�"ߤE��o�A@g��3`ln@�+��b쎁?n�=�M̈�n����c��LVq�E+��*��<�cEJ��mSI=�y4����Hfq�ɢy�a�Ÿ]��).}��l�W�NS�z����'‰6�b�CВ�Ca�",��پ!�,3�4͕8�����1��8�J�D��JT��[T���� Y����|�p�3�T>�n����vcX��uc�3@�zl��K�}-1hZy��룣�jl��9�x��Q)u���VhF6d��pZj��R
��_�ܧIE��m�rF+�r��U&������,��5O�%hYa�xe9d,�Z���*	u������?�ϫr�Se����r�ɢ�j�b��u�oslWI�=�5�Z���lW���vV]ݯ+5d��J~�FXX�BШZS�)Kp9��9�"��N��}�9��RJ��wElhl5�O�,K񥵄	��lTSj������S����
��W�)��M��p���kVd��HK
�qME^�֏�^`͖��R�����X��Yb�RS?�%���J�biw��+y��z��`�	��**�z�i��˛R��t"�auC�7Q��Ȣ��"����.���0�"�^6@�'�Ċ��S�)&J%bi��"�UZ�
��D��W����,���[S��|ˇ�����ˁV4�<^_��~z�B�u�b>K!$:����o�vhc�_)
�.'�a�b�q3����L��B@+��fh
���wWE���T����2�,��ܵ&g�r�-�&��k��e��J���t#Ck�~��&�I���,�HQ૸���XN��Nri�b����G���.
���,�19�!��t�)R�ѱ�� S�WL1�s���HUV�@a�P
1#�t��j#�c���Y\9���!��HL���D��Du�6&>ǘ�~���6�A-�@$�X�@��urQ$�.���>��{A5m���M�A#a���-L�Z�B�Z��%:��|@k�R��t��I�p�E#��})�`���ZT�'Q�d{ ��7R��
�Ge���	�8��^.ۚ#�)+O�v���Z١��i�hN�'��������ʃ>xt���|��0�@���e�U���|��0�{jlzB��깇˒`��}�
Z�
f�4�?@���
�ehᵸ$�s���quf�H�Ӵ4z�%h�Zc��9wWE������?@�Ư���Ӭ|���;Rˠ�	-(���G�¯�p��`@�_��j��FK�[Q,�eRb�i�~Ķ
�>&c�~��Ձ�?��aT��^�d��V	�qՉ\�O2PC|9����+e[���$j�O�u970f���}��o���!Јu�.]�z�b�o:�
rҤs6|���'-��`�E9�JCYj9�+�:"�V���(J�u8�IY�p��}��Q��P�R��Y�g*�q\��YQ�}��ݬ����*�O�_>)�1�d���ڿ���ߺ��X��C+�K7y��B|�(�Aģ��R�����5���=O	b�uG͖~�:�O����ѽ;�K��Nд�|I��W[(o^���U=;�1a�N�UU_�������S�̬Z F�l	}��v��������I$�P��U���v؅�a�ʩ��">9�ҹ�_t��?�̆�;˹��.Vڔȥ��a�@qhǥ�����Cbﻰ�W���%�Xe�w���w�9�/�Y4����[f63������OJ�wQOگ�f�B�x��9f�Eg?lY������A�Zl"d,��<{vj=*R=��B��0PU�W�,j�`*�U�.MplP�^�{|�h�:pk���f���[c���d1��e�d�;���Rf�$�yړ�Րf��8I��]�ف/�K��Y�VR܃T�S�^B�������,D0�f�j1�C��d=%[����6��3"�_���g|�b��G��=ʓ7�!{�}�P�Ã�
�$eSV*.eh�U���xc#w�{���U������_����oYt�,Z
�x_���]a�������"�N���Y"H�4�YIw��z�����Q��R��
�3�uu-Q�(��fwY��Bs��zq���Hf�w�	�ehef(�m���Y	1i3l������ÒB.�G7҇��K6.qY�L�ؚ����⾽EX���%Pd�_�t,ڣ�g}2U��ۛ{{����Y��j��RR++�V�Ht�є,��Q�d���9*��V�.yG�d���T�>�RKx�ʴQd�/e���h0QSמ�X�V�Zߪ��U��#h�Y�O
HKQ�%'��2��g�LyL��_��=�"y��b� �P��H��0m�=�U��ˉØ�on�Zv�t�I�X�C8�1+$z�E((&o�g|ޥb�-㉿�G�������C⦡������H����7��7�����Qy�:��G����*��ާ�ܼ�.��V)��#��i��Tz36�Xe��-���&KY/�~b��ĹѪ�5k�;.��d�I0]�Z�Y�z�D=\��ѣ_���wX֨��B)�Y �Yw��t�_l����!��%"Tڙ3Lrc��^�7�e=��h"�����,������u���%2m̰��)�;d�m��s)�efi�>���(���b�11)��:9���OSi�d�'ve]�r����	���Uج"��v�Q�$��\q��}���B�,
���(��2��4vi��H+�n�h�I�wݷ
b�i��*c�"Z�v�`���~*6%Gjۚ U4���z���:�~�4���+ca�";O�I��[�أ$��v�k<�e���D��L��[|!}F�Cy�֨׿G�6��t}'����k<���W��C	:Y?���X�fM=q��a�u��uOU���Sx�G��+Wn�n\��\9GP�DQݰ�2�2�f�<�z~�=o���&��d1Ah�B�j�W�iٽ�}�T0���z}���F�ٹ�~͚v�\�A׹.şd�"��ZB�:-!J�6[2]ٍ�+K�ފ^˃T�j���-��y��]�����ƣ\�V�P�?���Kӊ�V�![
!����ZX���w0ˆK�8�.K6Zx��9Qfi��`�f�d�ehejE]����$��Ā�@�����NK��ަ^ּW�V8,����j/�C��j(h��:ܑ�Y�\�獢ռ�{V/F�x��	���j썞5��s�{��\���Ew�ex)�����S)����ʑb(��#M�S�rH�\4��r�`��-tcw2��M�G{�*&�s%=6N>�mO+�+Ra����๯*y���X��i��s�(b>6�e�j;�Q?JP|�vUa�0)�)4�C���(_���X0.���<�%:L��\�q|�q�b���o�"�/	`\_��λ�>��&af��g�o^�SO�~b�(|���~��|KK�;06L:��$���P��{
�?�Y��k�|�ƍ3\�a��� �@�!����6c�Yz�%��(����O=�؅�.�K���Xf~��D�H��%\�����ܼT�!��ŭ�����L�\�#%�1�ҬHA9�c��/+?�Jejq��J��-�ߢ�=�M]�}tpV���8Yy�
�p]j��\��ٿ��^!��h�p�N3�R�[=
�pS��R�HZ�h%l������}D��U��$<����>�������Cխ��
6���*��
���S��[��k��	a+"3�8��D�_1hSH�ҤLJfC�
���S��S[%����1�G3U� h�!��! URME�d�0&5�8�[g4�p��4�-��PUn�jĢ!�2����ß<
�z(�Tx(���}����{wQ�p⮪�$�0$hMZ�/�\��4��$�'5`"lm�����W�P]21��ie�9�K��H�K��oh����QE&��:��|��0�T���oQN}XZ�����\q?S�x���f"0u�=���&
+E%B�#i�w���E\��zb�BǥKop�Mn؄�.=��
�O�Q��khmq���̪�{�z\�K;����j�Y��J�+_��?�?�R��O�MV"���U0o���զbRR,;�F��y��|�Y��"���pQP{�1�VuG�c$�I����*-%�D�,�x��/����*���?p卸�ڐ��z��%f��m"\}$��q�j$ګq{5$�Y����[uI�a��Z���25P���1[nN�I3����W%�֏�K��#o�-֮/��t}W��љ�Z-��s Xkޫ��I>`*�O�o?d�T�Vj�-:����*��q�o1�`_��.2��4�D�ˇ��O�ұ��-
��;5J�xp���:��u�k��#`�Q��v����ef��S��(��"u�]���R�p�u�'E��:Մ�a����*�Ybm�
v��8|��]����|��o���Kڳ3��0:�V�rO��H.+�����q��-Ë��O�E{���F�u��'�dne�H>(3
�
�rv*W< _I�aJNV��Z�+��^���'J�KQK���W��R��ha/��]Y�Q��WR�J��w�ϋ��ҽQ�
���z�6�v	��ޑ�%~$���o�ѣ����W������'Iɓ��`UC������j��2�,JNu-{Y��v�mȥ��j��("�eIoc��ă�R4���B�Vćd�m�X�TnK}�k��VW�k�b���D�T�͑�"1���L-�Z�P��j�F�q{uu����Bx�h'�+��m<YBZ�[�?��OX��#�h�Pv�@��pZ��0h�r~�oy�{w�'?i
�k�-��Tg�)	�ej��Z��+�����_���jGK�Ub�|��J�B~��V>e���}2Z_��ÿ��51=���PC�k�;e��*%��|d�/X��e_����}�%/ܢ��E�˲�t���?g���Μ�@��B���������[Z%*8�v��Zl�&=��/v�U��ԛԓ&��j�"��S���6sj�5��Zl��p������bJV�8�3cͱ�<��gc�C���J��%Z��/0���j�܎�y�s�8'8<&�W�l�J�pX̤��Pp6)���%hy�0��
W��0R�`�Վ`[�V�#"6p�L5�����R�_P���5�2����������Oq�d�j��Hɗ��r�gDf���G��Qt�L����ӌ
����R�߱G�x�b̴�jj�
�(]���B4yHP%XQo�H�#�n,������@�B*'����cbV��*�CՕ���Y#9$D� �Nj�v��}/#�����>x�=���e˴��P�ccӑ�X�V��z>�8����~�Ϡ�D�)��;7��d�X~b��j�J�e��#+�@����H̊�������?��,��p���5˖��qc���׾��rcP�x�����$h^�zU�I���ȵ���������5��I�B˫�dj��K�x�̾�5��ee���EѨ�0XZLz19�դ�O������S�hXi��A�2�E�!U!�'n�X$^>0��?K㌴`���1�Y���ܵ�`x-�>��=\��2��]b�"�E|(APƊa4E&��0�bѵ/��{�8�����cE�kSC�#r�])w7�K�d�YJ�Z������O?�1����o���&'�H�߷a���~�ࢧ^�[��A��ů��[�s(֊��_HWhDƲK� �����{O�7�i��Ѥ�H���v�)χ��YD�#B�ggV��l�t푟ju�z;�u3$d9E�ÚV7n!w�L�Z�3��._��/���|�K_�����~��
"���h�93�|�s]�
ZQ�����|�����R�Z	�k�O��cꔔ�FG@q����KJ�-��a�b7==�|��X��U������BeQ��~�թ'��j�o|�����Zi2��8f)&�zUEWh7R?�O�rٻ
H�VL�Ƶ�S���D��`�]�#~���竧A�o�Z����<\I��`��{��Z��^��;��w���͜·�l�b���榛{�W�UJ!��/WhiI��wt��"��R�f�DJ+Vc>�z&ԇ�$���)��
��,"� ����;��*�*ǘ��h4&�q����m�meg,"$�
����#� .�U\j�)�%%ZlG7wA��:|�s��.�7�������O�9����,�������X_�[�q/��J��v�x�Wɩ�U�F��x���#GvD؛JdyfXN����W^�Q�pAƳ�v�M?~„Yۯ\���l��xaB��H���mP��l�Xn;,�c�t��2md�l<o���5��X��� �~|�n�wl�/�e��r�Z/�kg������:qj�S]֟ԕ4��{Չr���9�]{��ݽ{���k�ݴiղ�kny���|гBF1�l^B�x(:Z�n����E$`���^�hѢ[>^�$[�ZR+��
�&}�%�a	����r��b��˿�3�e�����VZ�7~�jb�vq�_^�����GPk��9�i9��½��|)�	���
�e�+/���L���(��c�/5�^�<�R���O��ڣ�ҵ;ªxe��\����*���V4y�,^���$�]��9��Y��n�x����)ek+�U�*��+�]}XA�U�j��TAkl	��R0*-�J�Gg;���t�t��T����fqkԈ^���!�fP��
��� ��z�({_ھ�)�Z�pKg��Z�����2��p�f�W��o�G9��B��TN\��m�I6N�<8�x�X���v�o��[����?2tm�+}�`�FA��
�ޣ��h8sOs�dOa�;Y#\�������\�xq�Zt���?��`�M
c�tW������k��eD�w���_/��'�^�O\&�JYJ@��˿������˝��o�³�~b����_���X��w�ZG�5�Wo�Y��A���B���w 8#ݘ�|ѥa�p�^�<̧|���	h]��%�E��` �`2��|��:��
Z��@j��K�?����.�'�6�<�S�@�C�8V�;���"~g���V������)���'�V3��zQ��
p�J-[3-�S��z4�?tZ~��bk5n����B"ӯr��+�����5�����E�5�r0ǀr��K�b���R�lr���=ܨ�3$\�����@?��`-�F�X�A�ޙ=��0Yʩ�cݣQ
K`�\Zܻ!��.�XWrf(�Bw�a�j���6�|.�#rS����J�;b>�''�r�XQ�,`C���(�� ��#��w�xT�ş�J�"Ԃ{��O|�˾H�>���\$�^�r��]������cxltm�1����::��O|�������(
s��0��%�8�M��9c��]�x��>�>:Bg�����w5�X�
�K�+*+{�~�_��E0��q��b����0����?w�ӑ������5�6n��|��Wޞ�6o^s��Q�u�ܾ}�`ְ-/���oN�j��^e��-�Nv�j�(}�™�����i���� �R-��4�ut"�")$8
�'��V��^y1z�kG�����ɳ�i�H�-�ޱ�|�ҋ��W��3�3��Z�o�h�f�9l�T=�"˲aU��t���/w]x��kي�YA9�%����o}�L����G>��G�������e�⣞0j7�>�}W��n��[1�y��R:������|y�g�K�0�7z$�x��a���^|�hcqcq�wo��{fkܪ
�!Bd�r�G#x�+"l���-b+�f�.��X�U��;�He��#�`�E!�1DO_�P7!�a�9�Z�oN�TU;tJ�c�X�d��T��Z�dx�#
@��/FgBE�>Fv9w�}��eQdq{'��s�Kr�bLT����8�	Ъ��s��aܢ>�ٓ'�:J7B򈏿9��5�㼇J����?��Q$_>C��6P�]�j0.���<~�wa9Gx6�w�e��.��Y�P��}GWm\O�ڴf����j55����w�"�d��m!,U����R�|�-[���c��]��Μ�h�>u���	����W�@%m\G-4oo�>q�s�{u�����lUȪ�ƕ@WBkǎ?3o����m
�H����gX��� <�çNY�
--j�M�5y�ЂZ�JG�;�]�yOdQ�A7_ͦ�N(�3���?&��w�{���Yo<��s��G��N��0��>b>�i6T��M�Nɣ����֧4��p��c�W&9}�n/:�>B(.�TԖ�}�`)���r��F���+��z�}��8w�M��(��<8E\��(5CpR��汷����A*���F�\�=4q��&e��Y���H3�(�i�rhI<��_�-�/�,EU�N�(��|k���Hl� ��2c+�m.�M�V�rf��Ȳ(��G�O���z�OG4[�� e�lPm<��ް�9�Ɇ��iP�n��1u/��
$!�f��g�##���y��LKV��������7G����^>	<�+�G��[�����_�_�D�ܮ�۷�]�v�F��zͦ�S�I�M�I+I�6G��Ia:|ש�S�|"w��AQ__?���hI��!��p#>
Tv�F+�����L��vit�XN�?���� �Pl�����W��X�m���g����_Z�)�Т��]��Z7�;o����;?NN˫3Էa�N��0�}x�bR'*�̳A���2xO`�<�\b�DK��-�凩�w��V��ZϷ�nśL�uC?�(Y��H�U��>�^*5�1��U7�O�f�o���O���R���\[��@Փ��0���q4�}����k��߭��zPH��0��kE�!;��,ќz��Uς�<�2:���Lo��>�YU�����^0L��k�OX����M/��r�4u ���uh�8/���F߹ŮV�8=l�߅dԚ0���J%����{��YE��=��2�Y$q��85ܾ~�#G���?����vuD���w��͌
q�7��m?���-&bc3�9�E���Q��ˀ%���d��3���}�a8v�o�����ǎ1!���|YK���{���Пc���n__�e1Jx|7��,�7< ��B�vv����Gwm_˯�Yk�+�c-�o�2g�ĉS�OZ�~��]T�k6���>��A��ŷ|���9�c��FDN�&��y���n�ӕ�K���
l[>��ի��'���V����d�f�����
ԧB��y!zUp�ش�[�}�(�R��x��S|w!֢�%��)
��*��-�� f��_e;֥�Ʌ:����.Z:�.3-@VZc�`R����5aB�D�"�%�UQ�p)�;��>�&S���OKB}L��X7^R�Z_ah^�d�)�^ߓ9{R���+,�(͕���C.�K�=��pM����-!���� vh�cXӕ������V]��cI?�����9(�@�
�%��I`5h��v��^�����|"�}��Z�����|�\7���t��_���
�X���[Wt���厉�%~#����Hk�w�U+�EaUt�r��–���
ZF	����2�
�ꉑ�$"�ׯ�x����­�W[Y,�HG�t-��ȷ���O|��������m���D+�J��b���9~���`�^��0
`�}(�8�`/�;�dТQE��u�.����@hӁ�/ZY ��}C�DK��)+y1��Nf5O�>o��'
S�LC��0}���w����O��ֲ!��n]�H��u�{8�)ȸg�����2k���k�:���6��������&�Sh��cWC�,-�u��^zt2@,h1&���OE��D��|�g"�O��:�h�a(#���Ώ�P)�2lQl��'��;|��P��Vs*h���r�t���L�DK7�6���Yes*�B��*�����a����<���7ȴhAQ^�D���}ŬM7���� <1H48�Jo$<}Ҧo��x�u�A��e:Eb���{%�MR�,�ld�움)	��q6�K��db�כ��}~���
B�%{]ͭT�fo��qVM�����y+Z)N=	�a�j��g���j.{�.�8|q�D����]=�&�^��.A���HdE�Y'�{]��q`�v�Ԫ�E�IT�-/|q1���W�_�vu�]�z�{_�S�H��y��
��[Ѓ�t��4������3@!�]�����JP���������we����K���/i�o����_9$��_"��S��`Z���λ�4�"��@&���{����w�F"�	h�8"<�J�u�s�P�57�ֵ���v�D6����L�>k����ƍ�vmܸ�(���G6���ν�@k�뛚����5@��\�����蘦�Ω�P[;�
$��{��5��1^k0@�?�q�`���`���
9q�?�w3O��q�.��#�Z�\�e���9�}Т��0��E������w�F���v>�A����Ä����>UB��q;��6'�UE�ZQz=��L��uZ��?��@�p�)�o������Q��p~l��(�e�%��Q8�A41�r͠S.�0�����4�v#�a���76���ے(�a�I��#�J4�~]Q�&
Q��m�&�'��jC�Ӳ'����H��Z��J�Z��Z��I��R��
tfce.F�5h��*���sHgI�rsio�N�b@���r�Phu�\l;�5�,�?O���QI���Z~���ҙ��d�s�Z���z�ʵ��oP����e?5�A�z;�r��a�o4�z�[~��~��@�����̿�o����ı`��e���^�2��m77&)��3պ֫�O�(�����I9}��\Oh�j}��2{��E;C�oA'kv�);���#�d5(Mi�Y��N'&L �������E�+�ҲoZ[W��ёÈ��/~����&�԰#.偓����/��T[Ig�!���̩m�Z�1�j�8C�X_��a�
}���El��q?��f~��%�����!=-�wS��ZB�F<$#�|�+XUgi-c�8<�� d�˹A��S�,�n%��4
z\�ȵ�[A-�e$��=�f�L�o�.���(�{�������V贍���s����rRz����i���<����cs�>�N�Xˈ�BlY�����X���[:V�׵�d�}o3��S�p@G)r����H����F��‹�H���&nHb)�Wb���W�`�v��$��+=0z��,��6n�M����D���u���m#>���2�U@�7�^��"ʾ�K����չ㋗�"�)8K\������ʌ3�/R�v�s1<�~�������6kCM��n�$ܧ�`��x}�k���2��_1�:~�_皇9�v�B,k�Z4��2�x�wD�G��|�X@�r�P�s`����]�{�+��[�x����q��ݗ?��ν�W��}{����X;kެ�Y�lp��LrA�LT��&Mb�z��E�Wkf7�?.։�#�+��I���C�gN���<>qj#K�o�}��Q�U�\��7Jֳ��ٳ'N$�tc����H�g�_ye��?Ӗpݝ��w;���$�c��K��GL��p�������T(�h�(�`@+�H��C��i�IZv�DI��ŕQjߋ^��G)V@��K2�D����`�k��eH_S�P�*U;�7,�G�Pk%��T)��1<�[1k����T-ʜNc�ޙ�bߥ�o���UM�CBf%��ݧ0�I�*�ll@+�<�Zu�y>��A���)v��ڣ2�p��2ߢ5E�]h	)a����΄�G��
{�� N(��e�7�a@}oj�@�G[Z��w�z��b'He�U1+3-ߩ�]��h��M�/�pR���$]!.\��v�Aī]�x�*k�2�7�B_�q�1��J�B.ŏ��
QV�^e[�u>E����&S�c���0��
.�if���I�<$-2�������>��a�3hI��~��ˈ�!�:��h����0��Ō��6߹��+׎���y���L�Ȫ��A-ص�}?��-�DV;uj�2'`nYS?k�8w]� B�j�ϲ�5&��y1%�W�ٺ�IDS�����XA��3Q%�5�e\ΰ����h�����c6'�d�r�`��Z f�ge�e�y�e0�|2��X�cv�s���sZi��Ugȡ1�D��V�*{WlW~>"ro���ѫ�Y7�"�ƙ-��>F`��6TI�mK�}޹�$�]�!v�ȫ�x��}�S�'�-��/"?����HCq`�����"���&���1|Z�/V���*U��b~0�[6�l��9���P�RVS�P����/|�ϱS�dCO���]��j*\�J����˭`[B�z�����~w�T�*\e*��x�
y�J�*Fq��|/�S�+ώ�@u��2�k#� �ޚ�O���A�f醕�+јrz�܎��ŋ����.�Բ�<ݩ����Doe4��C�x��H�Q)x��ڔ�0B�������o�γ�DٗybT:��]�Q̟�����pm����ٴq}U�i��:BppW\�VF�ߑX��0a�����O��m~�Ԛ1�Yn�'���zg�ÍS�k�n��.�������A�&�J��\�t?�Rο�g����<��XV���Z~��bP￟���DŽ�A�'���FR���I,�q��YZ�9���<]0��7�B�Ɗ�d�S��ӈ�92"�����T}���`�/u�P�s�rz�[7�N�=�ok!	��o�j�l������|�MUpc+�X��Tl��G�$�Ҹ%�my{�6�P$��"�_�s��T\�[eO�k}x����m�k~X����D�}�)GUR�=h����T.�ؿ�/�S#/�al��Q��ru�`?��Ao��):bI/�5=��dFf�6#��t�&n׶4_aVT�%���
Uy�Ȇ}ܩ���_
�.C������[�H�_#�J��/p%D����}nɧ���(^��C{V;rߑ��@k�N�
æ)R����c{����umm��n�;	�-e
�5%>�6�q��IR-�e�c��>��9�kh��)��ú�T�r���kP�.��OhqR2�i�4���ݵqD�Y�[��u�
����KЩ�Z�����9f��B�ld�5n��X�z��낟9j�\�W���ͥa��"˸�8λ���g=a�9�*�"��I	��w�Sg4h�Lj8�1ֻ�Q2έO����D���P_
Z{Li���=�QɃ�n�מ?M���ZwS��0y7R'��p9F+��ՒN�1a0������#�E����:��A0�~���c2
J
iw�	V�H���'_�F9�R~�Z18�۸�|�V��B��Bk���xL����ֈҌ+�ه^����;g��g�$w�&$[֏y��=�VøT����B���pUi���#�ELߌ`kO����f8YP{�%B��Gւ�&��D�4re;�Pq��¸,6D��Q�7h���+1��Z6�2�)��H��Q��]& WH��+<���cv#/�U�s�	����J\��u�}G�׵.cic�ś�r��d�k��j����1�e׋�%32Kq�x�Z��F׎3>88(D1�H���c�Z?���;��^�֯��AaC��Y7݂뮽���4�22�J3���U]c�L�����	a��i�ǃ-�f6Lp�^���8�c��w��m��QJe����З� �H�twT�����L(�Md�u���p����4�]�Y%���V�I�mB&*��sǿ��������Aq�AKKhi�'�A���=M�ԒN�b��Y
�+��&�|�z�&˴n8{�C��� k+�\�H&66���0$X���{�(�lտ���Z�,�h�ss��/q�9��FTu�b���E=ȅ����#�J�^�2�܇y��
]��U��+}�r�>}���LTˡ**fq��j����HeQϪ��~��@�$\[�gwV���oE�[̳d։~���Oߏ*C�V��	���!V�xT�!>5o��IV!��\����Z���l�I�s�w��޹b���5�Gd�Ϡ�	@�%��۶!��Ν�]?
2M��QZ�АԺ��7�,���P��0�
S5���]-�Ad�~��E�Ey�3b�4��}���k�aVc��8mZGcG�gb�h��ÿ�՜��2�3k"-��������u{��;�k���V�`V�9cZ�j�47����"�VR�h�Z�vp4�A�)��ε��ł	T	�02c�nk`�W��L� �p���%j_��ۀ�6<�Zz��,���&;��R+u����M@�w'5	�-���u�Ej�2�1OYP+~+pq�4��T�%���(�[e-�:d4�R]q8�jn>��
2-<�h���h~�N�e�ҋs�����=�FQz��{�[��ݡ��
�fT�%OjH��&s�r`�b�6��������cE�\xF����h�#x��d���
�����kH�d�c���T�R?c��=x�4���:b�Ty��ϣ3i����m#'��V۰����aCgP�2q�K�z$��)�������kUR����bq��Z����_Oex%�*ͬ���a�[�k'H���q6�^���L~��l%rx�t��{��I�5P�mZSw�yb�b�{�p��fz
7���x~;�#��FdZ�5�)�P�

-�hY�|9`�VW7�	qB�Lhu�YdZ{��9��&���3e�Զ����9I��w�*d�e��ZT����Xe�� �.�"@V&a�����8oͤ��sښu	-���^B��Kxݘΐ������r���
qzz�]&Z��u?���?�[	-�Ls�}�DEV��Z2�wL�����6�g@�4i����7��Յ9�Hx���YU�eT��x�b��y�%'��
�nBE�ʹ���T&[�Y�"+��o#m�Be��w�@S��{7�g9�X��Od%��=Gy��.��Phi��V���#Chh�z���������IC!}��R+DR,��ެ��iF�C�G�X(*NE;+8u=�f�|h��k�*�y����3�����.�#��RKaO��kg
�P9��h�C�7}�ۉr���=4Z �
����\���/�{��v)U���zYd^
�z�el?�2V����j61�zS�B?Y���6S!N?j�a\�~���'�>
�v��㤍�+*�ɓS��\�e���u3|���F�1�h�V�7�ƽm�zI���w�o��B�dH��	�2�����	��m>re?���A-�Z	-�#�ʐZ��DV�Z$��d��Œ�갶n!5qH9��L�@r��7j�N�^���ܯ�b��O�(aZI����u�Կ��A�`���g)P��)���:�a*�w!��Ci^x�7���G���~�7B��_d�Z��Z�,
 d���ɦZ�=�*���ʈ�DLlܱ���D�Yƛ+�z�
3-B�aN�����.��$�Q!�/��m�8�MXm@���qg.}�bg���!9�Sp6��ѷ_�.�s%��Z�i~�����*�914QkqGPp}st�]��#_��imhhmM��F��"ʟ��E�
��a� K���V��8K�(l��z��qCoˉ-�޺���+#����t'� ��h��t�QhyUE��ʨ��O}�׸�>��2�@/o),�V]�v���
�B�����TmE+3���_���;�;��RĽ�+��,��U�E�E��\k�Q �16�ړ���=����x��Jf��-�rQ��9�KL�2�?��&�5�YB�(�5�p���{���;�Ȫ�	D��)m�'��lD9����B7����1�iPb)��N��F˼��j���22��f��Q��!�ԺYgBu~���~ВZ��sE�P:/x~Gh�A��c�b�����N���[�)-M)���V$W��sZ:E[^�b<�Դ#��$m�4�~Uԇ��C� u�J��[h�P!�L��_�I�I&��l�d��dZ�zLP�R�谴īa�Ŝ�����
�{λ�����XH�#��B�_Hy���:���N���Ʋ�E��bLd�
aأ"l�!�Lk�[Wz�>p��#ّwB�A�y�1cz��Z&WU������9��|*u��.��sGt^�Ԉ`�4�=}#I�Z!xpE�@�0}��^�򉁫=W��D�s���ea�g$��kO�O��f�2��5�gGv���H�><
-[��[�eN���j|��Ot���~���:�^�s�<V3��:�Z�R�o�oR��M�.�f��a���^,M�IFg��n���W~��T;�af�b���.��,��Z�;��"��C픉�̈́�܁E�?�H=�\Z�ia�I{�8fe/���p�.~�Ȭ
ZN����:x2���@(���Bk�Ժ��0D���`�]XV�Ȕ��&����ɳ0M�b��%�*���)MF�q��N�:��8cq��Xc�b���Z�"�AU�?dTmٽ�M0��ج#������'��2�*��W�"���Y��8J�_����Զ
,���H�_�,����mq���f��3�
dѸ"�ʅ&h�#TAB�|&ZEx�3�/:�-��!���i�̨����+2�N*T[���1���KP<�BR,�i�8Y��t!1�!�U&���Y���xU��uW����=�*]��x㔤�L(I	@L���>rBw��-�;;�>*rZZч7r�Nƿ�*�����7�\��|\���]����
���rEZ�E=�_�RC��^CB�!��}kg�K+8Z�Ғ�fFPc
�5̐QA?[b�!�X�eը�*�F?+���mF2�����~:��s�<@�:tA��eO�C���5�Q���`L���G1��S_�N�@�8�1u�GJ/�JOn�p�C��L�3�Z|���5�FPk\T�Aaƭ���:�-�a�Li���3�%�bhP�AQwK-���?��TS?�b�ƛ����y�+�Y*�@�r9]DN*qe�3��B�n�I�
�3���$�<bF��V��w���N�P2�2�Kd�C��R=L1�~��n�����'�Z�9J8�!{b~ۆ
�bdz&>A���=QIZ7
���G��s�pKf^̜>�y�TuA	����Bx,H8U��CfV6��K.5�a>�pb`PK��"�`K� �RH�=<�M�b��,{+p�a@'ٻ�"xӿ��)����;ZV,4��̰3�N���ى�<pZg�����LW��=;R+�SGj$��/�=JV�S����-\��ȹ#G�4։�@m,E儈�YhI-o�]�>�n� B�7�հj#l�^�v�F	����E��jª�V��� �6Ő��l�_�^tz>�<�坰"H1Ϙ0��U]��8��릹Tgv�]z���sB͔�?>�O_�z�v�I`��&��	�b�h	�*���;��.���J���H�,i<M��ram�$������t3�z���/La?A�xǎZ�$���.�0+f�C����A����a�t�
��	P	-�S@��V�$f�Z� вj,�e:�;%����JX�L��&��#��	�6];m̙7�"�/�_{Z]]駠� t@b�J�-{� +�v�l�oMh��K��k�<��9��(<޽2f�-r�(n�Fv��w�O�:Q?�C�yqW��s�%ah_�
?{�-@�97��=�v��;}�F5U��0y8��>�9OS�SML�e�Ie{�T�Y�Bp8��b��0���-О&�V�[A�Vm�O�q�a�X[:GFL�D��m���DV��ֿ�8z�H\'����έZ����u+u��"�R��
��d|�Dkڪ}�׭P����f2�s÷߲y7�1��~��Ѳ���<�M�Z���򒨨%�� �[�ȳBܫ6�_F0	�@-�F�~
���a�d~H����MO�8i���E�!�a6X��Bt:m҄q�
9a<��Ma�L�N����͢)��"�E$��������Ě�Y�[(��B-	,��\�����簁�ҏA����
�kh�Պo2 �=�z
I��@f�h)��2����c��}ia�e�u�hT@���c��A8���;I)0�n�vw�c�!"{(%Y$]�_K��?t�����R�{�ȴoB���i	-7�iҐ�u����2,I1�Y��`�(�\��T�>�Lq�^Cq/�Ǭ1[$�{�N{O+��w�i_#���DreJxnE���Cؙ�eX�'����̴J��f�\vo<%�FU8�f�u,�̜'��#���Kh)�2V��A��G�7tZ����~��;OՂ�cVJH�4��f�i]�h��!<�x{��_����F$|,=^o�X�&�|��v��o��be�������XD���UaW
�@�}!.��8%�Ã���Vm��� L)�G^�5|����u%��4�$A}h+�U��ş*�P����z��XŒ�n��{v�a��P�
��V3!Um��j��"5�$�C�5k|
}��V<�鄟D�:kzC@�Bnhͅ}����wd�.�̵�4}Lj]�J����/b����֔�֤��]��l[Q��Z�G;
$��Z|K���NK�f����է�BP���Yb���Ѐ��ͳԆ⧜�>��Pf����Y��s���c:�q���01�4��GL�V�~@���Ѷ��Z�gV�b�寥gd�3�+�o�,��o:E�
2-+ ��~��I��l�N�:M���;��Aַ��/-w�Ā5�
��s�6�M��Μ�!���Jm���Ы�݄�騇���Զ��"��Ÿ�w�}ō�ѽB���=M�5�?b�ݞ�W }�,�z����CGЄ����4�����C3�=��
oM_�fT��	���jiw���7���
�)/2˸~���V�SeZ/+
���\z�����lb�\�x��u�����1�kf��')�@�I$AY����w���e�4U���i���]F6������I-��9��/KD�*=R��42'����R}�9`8���ز��y�sKc��@I;�2��)�P]
(��0~��5�-���u��e |US -S�T<�,B^�.�6�6�����������jy�Grg�u��(�=gf��u�H�~���V@K��+Pyj@r��Z��c�ֽ�wEVY�%�Bˠ[t�g�\����A/7�T�bV��v��q���#��C�Y�{�?3�]@�/rm��|����2��ZB-�-�@U]E=ƫjI˅mq���C��K��1>�
�ڏ=�jBU�b�_��J�������&�p��UV�\ԝ[���2>��B)OTr���C--	*Fʼ�ő��Ua5��EB�=!���5�a$(��o�s�ț�P_��R�
y@��Zeq���ԭ,ֳ�ɢ�Y�Z�(��ZQ�(gv��1/�_:�l�e�OF�pt�…�QSm��ֹ�$�QiY�B܄fܘ���V1�|/�z	-.��	~��"JZ�e�X��"1��
h`��t�iI.|?]�*j�d����>Ǭ~N����%� �Z�-��Ї�	Zzp���n�J��Swvw�i&uϧ��|����ºh��M�ƕ#�iC��!�H;�;��b-�c��@�v���-!��r�n/�w�D	Q�F+�E-��杲�X
�DV�,\��dO�
�Zvͪ�A��Q��J;6a�U�� 2e�㇀��b1s��7g��w(�?�A���Ժ��Os�d	�ВS����Z{��K��?�]���cUB�7���V	�m��rOW{²���s�Ds���4ş �32,n�+��pqH����,����8��ph����5#j	j��
$[�E9[�\:�L�����x�-����V4՜%S'G�k ��SuY]�}?2�>�g+-w�ZRZ޺�5W�#�μ&\�#`�CG����C�Yif^�ա�+�f;�	���3D����ZoO��դVB��ڎ��/�W ��Vp��D��{�\z�"m�u�F�n1�h�4a��Z�ѡ�VDP���[�̌	���j��2q���s�B�.bPl5�����ɟ1hK��۝�W���I�<�p�8�5~��۰��@�/-^��[nY�4�!��K(�ZFB+je�EԭU� 7M��X}}@+��c�c�%��R�̺�qkn+�$#���O�"7��^��ܳs��_J���@���3<FDz%�&���,���}c�&3�@��87���!�f�P�4:m��!���V��ʅ9xe�>3׸ܪ�=�k���ĕu:�d�F�,Y�EtF�%"��L�|��5�+��xDQ�^�����59�c���%���#���A/"�*_қ-0�N�Ņ�?��
Ss�p\[T�O+a���,��V�\:��i�	J�'�;���[�7��EK(�܁�Tk�2-�)�s�_�ָҟ�2bsxi�e��R{zZ�Y�c��*S�*��Шn���H�B:8uma� ����,}vw�ǘ�4�Kօ�
-���M����c�t|	�q�7�А≨��Nv����Z��%�S���DxW��g'��j	���:-@!����!�rڤ+CBկ7&��C;��
���I5�j�{d�B���.f^��~渴��6�U��F��i�D E�1n5�wa��:�NkKKـn2i�@�7��a=,_�F�"����̴ro�1̬�wZ��YP���\�'�:���oL���8�v��:�N�Q�gR�P��)��Uγ߂yA"�A;�0*�F����%�,2������*�W�7�6��<�Ӝ���wH���ħ�Bt����ż'��G�����?�оO�l��D��>�!����\!$Xԅ��u�W ��P�I�\Q�A��/�]����	�D�Rz;	��zсڛ�-�]�D�)'Ҽ,��l;3��/�F����Xr���[���[�H�bC���~�f���H\ʧ׈'z[�O�g��:���v��B�^�Z��Qox���ʳ�H�~v�q=�xMu��..(r(��^�#��[����>���练Y�ꔦ1�׌�
E�GKh�����-J�Y�S���R��%�d��*w�Vỿ�Im�3��$J���g��,<`X4�'G�|\�/c�H?�D�O�������l}�J�/����B�O�W��u�*���n��j̛�?[-1��	Y�!�Bqa}H'=�Q�Ȭ\��&�g<#[>&^�/
Ϳ�7�G��@q���ZN:��@զ4\d`��R��ue�{)c��$;d=h�=�
�_�r�1L�+M���V���Y�r7�
R+���Z�&�fŎ�R�/�#�u�)�o��z�)���{�����4#I>�c�D����d�g���c�b�y����\��6.
i<�K�-�CJ�D��`4�#p�HU�J��aK�G��Ґk%au��ׁ�A����[��w��#��Π��s����B{��TҞ>�b���S�:ׁ�R�F�XD �fA.�Eaf](�L��C�ܶZ���c��zYPKf%��*��8}�76� ���"j� ��6�o�"
��ݴq��K��v�
g���\8�H��'b�֜��m�:VHTТH�\�0+�Q�pm��rэ�F)�f�?�O/��e�[bk,������5-��|vG��iA���ZZeC��V^H�>>�m�a���Ә����-ͺ���<�9�����nĴg?s! ��4��d�M���EF �3��;l��A�4�D���/�u�qA�I,����A����	-o�#D�����֗��"2F�O-"e�fZ�l��U��B��7�|�̲x<��ș��EfUQ��C�t��g�:� �u߃^$a�C,�^��"�~�]���y�mO�c�xI.)�p?m1d� � �2�7#q2��H�	dF'���_�hɶ�[��d
��_�D���=
t��!�E�DfUĒb�T�V�8�����h�5+�\rG�
�f+�}K���GC��U�Њ:��2�@��1cǨo.>4b�}+�K�+��U�VI��P�;��罴�ſ���}����Ƽv9�J��Y)�<ӬcBR1Mn���_`4x������-�V�eQ��ㅖ��z�hmȋ!���
��ۥ/�k��v\�4��d�����z�(�B�`T�3����z�65Q/Z1'��fף�:y���;�b�^���vB��0�W�P!��qL��լ�c3b�G�度���V���������HhA��$���˗ᴓ�wΏn�����a��Ǵj�l�wp�]�hdeB��{h�ì�Z�b��U=���k��uO�h�z��h��ljŒ�j���*z[���rN��R��s���+��O<�Z���g>󙯲����F5�[���]v���B[�aLԠQ��i��	��Ƹ��FH6��=h'>�-frJh/g�ª?�%y��`�.I5j��'J����GD�}��Kт�Wxfذ�h��f�9���*ĤH�h�G�k��~E�(-2��p�'�ܡw28��ـw�՝���a|��K_ClW�*�U��������Y�ޑ�#�u_�e=@��.�]�`���L�;pG#���;L�rW�EEh��	���2b�a��h<���,�5GfU��O\�"D��BЏ��B��[�5�3`9��Њ܊?<lr��(h��2.����M�
o>(�1A~x'O�w���,�{��S'M��'��V�ـ�Xia��yڝ�_;�)n��s-*-��D��������uR+f���S
<�&QA���N�u�o����V�>%���=B����BD�0O*+�H����Br�I!o�mn@h���Z��6]w�7�&y^�RE���K"+e������?������?��o~�=_}�'`�����W{�ӷu;�˒Kl�긓��׏��d,G�3k���$�
��
��?������I�:��'Y3��=XqhF%�� T�;�#>
�Ap90H�F��4��p5P�� h�T9C�KsW8�XZ��qg�^�uн��WW�����:6�-�h<=�7����8ɧ`�I��-�[0FD��9���+�>�J����R���(5t�v��Uz8$�4A'5Ѣ�\�a��H�v�޻N'(�g�!U�!��G�p��"�u���c�"jR_iI�	fU���Mx��$��Ҡ��۔p��=�xN�hYV�"�Jj9�G8��\�3f���?��в�=d�ti���EX�Ȟ�dNj��4
l���cfZ\c"���^�+����c#��բ�K��L�0��R�]u�n�y	�߹-Cl&�t� �FXBKj)��M���O�SK�V�י�N�#��$�(�]�BX��yh�
lI�
\�$�N�%��v���9�)_�^n>��eZ���7�����4�y���"�v��R� `T|L��L�����U�)j�A-^�Mg!0�D�����B���*�b�(TM
�#q%�|l	5�+�E�E��� �c��V�ً=#{��a����3�N�<
x��K�V����=+zLU�g�]���L� ���F��y+x̫,%-i�s��ȭd���7U��bV�Lh��vE�2��ed��ի�KhY�R����{�v�ZGE�.o�XYF�!��cV@1Q�	����fY�R,Cf%���=�Y����!�,>�s�9A��9~�,	Ђk���^W�F-0��Z���@O-K	e��<|�r�  8k�Rb�l���7��E��[a������<Ŭ��sD�Qf�,��tA�\�@�;B�DH�N�i����o�4����C��22��Z�R+���9�|�;�r5�d��V@K\
 �@{y;^��-�R�G4��~+�X/]:}��m�_�s,qXy��R���O�	*.����k���w�+T�妹��<�����>���Z˾�1h?ȸgm���R[hGݣ�-_�B䀱�V3�2eg���ㄐ?,�Q��|A�����v'e�x��y3>#�b�f.s���_��7ӥN���c��~�m:0���
{U~9ט�)���?eC�I�r)�sT�h��Y���X��5�C E�4�+����UѧZ��0;^�z���{1v7�sHxEj�,X��R�9Њ�+��;�K��$�r�S�{Vij�h��f�!êK��,#�;�"�/�<+�E�$��1ż�u-���f~ʔZ�^D���WB�Z��+�U9_+��Zq�D�g
*M'Е����Z�oy����'�^�iU�…t���g{;؂[Ɗ09�?K�k(�r��R�E_k��Sw�iɬ�}'��Xa����]���l$&����2�
��aG>^�5�qZ`��oJ���˫��44�KK�!� �YTʚ)�Z���2HkZ�G�%�QN\)8�Y��
�>����jC���"�_2���%�"�
p�,� �j�[59<��V�
K4����յs؋�G����i[K�P��E�&P&J1����"�J={�яz�#��aQa�ao�K�e��L��4�5�yFZ*�Sz����	ւ��4���d&�"�ˏ
�A�t������2-K�w���
����jx^5�ڑ[<��up(QS�a�`����0��w�Nz+w��[U?�A����	|����!N�m�j'���8kq�1Q4��`�������kh�l�}u�D��V�<�"Љ�S�ZU'^� ��YbvJ�B��i�~�t;�t<U��aF�&�Z�JdCl����J�Fo��Qp�-Z���T��S�t�7m�X����
�$���+�,����X(�(~�$�+
�Ee�eqh��A�@���L"GZuج�욪��Pl�\�s�e
�M��Pɭ�JRKC6B��"���
p���
��8j}���4:�Qَ~�ɬ���)��9U�g�e6�*2��Y^��E���3m�O~�?Zo�6$Q�>��c�����M�˼Ak���\>;��B��ɓi���Zh�1�~vB�ދ삁$0�o�S,2��1�aW�\8��#�M`qb�@�!@��
�@�%�X�����
��cc����n1��:�����Q�-����\�������'��z9@Er��05��ȇHV�e&�Z��n���q+�қ��BK`�Q:�EX�Y��B�j�t��,���WlǕ�(�X�W5c�)ês{�U^�8-�K���FJD��[ ���)����4��+�-��������u�eK� �4�q�FfN#�hK�Bj&#�KG�kH���+heD�#MN#9�'��ɓ��}��[O}�!
��%��4�z�r�X�l�Z|]��R������7X�*0=����I-B�e��y唞K�-G��d1g8�ު����Bǿ��L���yk���x)�K���?�IBSQ��*��93eX;ҪZ\ZT���Kf��LϘ
^�SY�i�DV�'���}�=�o��-�Kx�-Ƒ�2av)�y���P͑�yF쏿M�0k�</���ho�ݙ��ᰮ�)N)�\A(��Hۣ�Ef��L�#��O�cD�)�b�a=Eջ)�ŧ!v�5��!&l}񷪒��c�".2)��US	/�SAh)��c��������a�G�\a�W��Dw�}��{�9�*�.���5v��̷�x��"�ހ/g�׭��2���������ި�~����Eu���[<|�\P+Y�;CN/Wlg�	
�K��0�U�$��|��W%�&h����v�0��^�i�КRB���g�� VaZ�ׄ��W��z4�Z0�a���kc(����wtώ�������|ţ�L�d���>���[�ps�u(SK8�#�
a�>�U��̩��Kk"f�j✝S�����$���֡�C�kF�I%�q8�@j��=T�����	1/^�K�K�c/υ���0�cs����Vr:�P�;��ip����ÒY>8���w�j���93��i=�qn��9TU��j%��1M�IE���<��{�Q?�^v�pԲ7K�o�%�G,ɖ�x�+Wvz"��V�X"��@���) -��{H�H�Ѐj^��%�;�Q���[ǎ%��5ۺ��ˬ^ֆ+��J����eo*����Է�&X��8�5&�b�Z�l���m<
���	
�M��R$���O*E�f�m�HJCnZ�P
)j����dpOf=���5#��ֿ�N;VkD�:�����5��Ǝ^w��wyexv�^y;ң��(�ɔR�5\�6z�&�+�a�Eب'�LD�*���	�*����*<(�@��q�2��kjC>��f��)x�LjD�-�5��s DG���Ǐ}I=�{�w��M� ����}Ԣ���G}�!��Z&ZYxB�rG>�]T�mv�M?�e��ZUyh�
���?�8����;��B"����C��m��Q��7�ZEy��x4���3�9���+/�?��YJ�����M��ɞIdG��ׁ���-6����8�rrlM��YU�d���i-�R��+���Nν����W��ø�w��}�j�Uv;�L~��"� ����I5s�4�Ӽ�w
� ��\�[#�"��#[ZF�Jjŷ�y���A��W����&�Z��o�������{�Q�ϥ�����^u6����;P&��JR�x�eC݈���A��jhH��j4����K?ܯ:�\��gt�|ݡ�rL�#[\�[;ħ��J��?dv�n���[H֖z�Y����zK����U�� �ѡ�*ځ,�^ү=����n�E�������Z7�#K%?"�2x[\Mh��"#�H>H����1�0�Y�|�i�̴���y�	U�+P�cHr�Ҵ�V�c�����g���l��g�E��b��w
�[:�BF;Ri�t��j��#�v�#�����Z�� �p��r�����:�Zj����~{�nN�j���n�E]v�S����V��U!V��0�;�#ӧ��Т�_Q�!$���������TԆj2�����N}9��#F�v:F���s��M����~Z��pbźbc{��0�6�Ѱ1�V�ş�3}�������C@����l�*�:a����k�F�]�xV�rj2��GL�(Ŵ��O��`�{t`�����r��c',*��6�<el�z�ޖS9E�5�`�(�������(T�+	!@�$��3ÒY^u�qZeQ����
����D�5A�ڙ�q��}�)�<�������'���Tp�}3��x�o�"\�ǡ�������8o�r��+�ù����D�lh�]6uF�������-�t�"2����~$]li���)GlJ�@G�ǂ6�k��vrq�-\��M�[-�w�j�,#�!5j������ѯ�Yc�-�{ބV�˜Qh���W��0�sXjD-+�̷�"��V����Ԫ���J$O��𴥪(�2��zzB"�Ma1��hI-�O��ń?�~{J2~s�G�`d��8�J�*؄��M�i׽��m"21R����!{��,/�
��Q%��Y���0N��8R��G+�n��R�ȵ��n2E�
gm,�5��n��l�3���닫6%R�6�95��8ʬg�R�H
�ԚI:68b����?�0>p�f��g����k��_`W��]ۙRi��}�q�8`3��N̈́u"b�<e���W�>;,�C�^Qy(�c!��ZCk�"T�TuU�`:D��`��	��ɡ<�[���&�M�k4వ�F�d:F�CEXr�����3�rK�ӄO}�>#� 0�	bB+�lxg�\�U�hk���ښ�Ph�8I�xMl��?�@����ͅ�i������o_^A+�e+]w��f��'z^�)`df���/� �2��R9�h�L��Ѩ�ijы�#�V���*o_Džh@�WE
���Zɬ�VV�&`�Dad2�E��X��x-|y�a�2/�f�ʳ���ֹ�Z��8��o�/�r�����1{�u��)v��M<3��&�Z��W�UP�W�#���y�o�,[�qx%�:�C-BM���1���QXy1e�����́Jys�r[�甃��K��s���8`�,��2V�'�1�X@+=�w�Wj=�D/'�]��B�W�bb��Ja˜���G�4	2�����T��$q�%WǏ�?2¢+jMr�#�����n�]�y�p�8�u�e]davah��e�.�G�J;�i�\a��ع�ZO{lkw�'%n���VK�tJS�@��?����V΂#зDN�Ü�֋>u�Q*�"A�3W���B�o0g ��k5v�{nD���U�!d|�	"�J;�t�����[7IJ��p\ɷ)������̲04lY �_�lt�ٙ���$�Ɂ-���C+�K¹`g��嫖7Ή^�Ԃ�N����H�)!�P3Ag�ua��p2�M�$*Z�6r�g��V����D��͡�F�'*�2m����Qh�����k.\2e n�m>1��_�tsV��g�?N�-�8z�(���F6\#̨��7�֨��*�J��z�55k�gX�-���K3·'�{�8��'�	fbZ�ՙ���J�@
A�!w"J׭�yWY��v<��j�uQ��+�Uyd	����ts�K2<�4��h�ڟ�Fґ�2F���<��ȕ�m2���ϭh3s�y��Ԯ]K���(��R@��?eR+���L�Q�"Q�u����2���޻wߑ����m��ð�~����%Dx��8���]�C_���|Fs��ƾ��rr+�Y9��Na�vY|��*�1��DP���Y|��d]�BtU���
��hZ|QF�?j&�x4�Պa#��U��J���n}�K����p)}�m�t�/�Jj�g��H���Y ˅���i��{1�+�e�_�w�b��,+�Yl��+$^R+
�Kh��G�v�`����7o��IS�fb-�U�ɻ8&t��
fQj8
$�̷����'�"�0>�E�AA`Io�`��]&:�
)�P�����ժ~��`l�^-��/[~�� �o*�&3Ɋ�'ɭW�V��=�0b!�3���kJ?���Ъ��0�fZ�S- �jX�"o�+�+w�Z�<�)�)�N[K�:ԕ��Aw
 �f �!`C���b%�����\p	���˳��1�J���L+��T�۩��c"R��cBz&I���QW>=�e�\��gZ[GHw���<.�����秼��u	�G���o�T?ۜ��D��0F�$�\@��0Ty�V�;~|7[	66�S�0w 8�]�ayx�?"�NUK-��	!l��h��4X�л�sو����4�;\�<����N�'%��m��Lq�������m+Y�!���0f8�L�5;�M���B;�U�9�����}�s�Zmɪ2�5��Y%��4���
��;?������܊���l��܏�5d��C�e�`~�pJ�5��96�Z�0ћ�v
%KJ�����W�۷���Hh�j�Y1˞h
E�F�"$�嶩6�eY�*��I/`P[�ī������4�NK	5�����Kh%)�d+�ZGu������*@񟧣���x�TGfELe�u��r�X��5��ЁR.%��F��0X.Jhٍ��x)�hEL�΀h!zh�d�4Kd���B+���'�(����0!U�!J��1!�X���%aB�i�e۟fy��+5��
�VB�u�I`���2�ϺY3���z��jJf����N�L�c�-L'2�Vy}�[ZP�Xl�|~������ǯ-�rRF�u��ݷo��#Gͭ����h�����T+ ��}���ne��:���zl���2�
{�,��C��v�j*�mv�B2��|Wp�k�ián��>I`|O�U��۲i�ȡT�����ו��av��eS&s�g�_�C+iE-A�.?�Ÿ���,d�/|TZͅWE�~Ci�b�#>�SB���0�Y@�T�	�@AU$F�E�������VYe�Q�pc�O�,���]~��!�m�%@S�*�JOAMB�ߴ��>�j��!�ᙨ7�2�)���KhE�I�5����&�	���K�+	>�a�ZP�k=�"�b��F^R�=��n�Mf���	��$�̗4?���.˨v�.�m�Bġ-Wh����T�$#�U�k���r�E�-͕#f��ұ�UNT��Q ?1e�U��u��Jf�&��HA�����ў�ͥӺA���DzC���B+����H�LG�t��5k�ё[���5nN$\�|^��ZM��O �"��6Li�Gѳf
�Qx�Z梵k�v�5�#T��=<(QT�~�X�,���z݃V3B<�����a3��n�Q�"+����s\*2RJj%7��Ш�lߩ��V�Eu��߭B��	l�&A*�f@Cل��PCt��A�7~X�N6�]�'�.�]�aC,=r��%��TR�$X�;��-}ɾ0���r�Ћ��%�����S&ɥ���BD��Wﻴ�J��̉��.?Њ�<�R�J]��3��H$� "��ح��Hr�p�f)�Z��R"�G�-"�X��%��UI$��&�oL�S�ޣ���U*�C��[o;z4:ZRˆ*��Q��d���"f�O�s'�D7PZ>��p�;U���M)�Y�uR-Q2�yF_^�G�-2RT�+��L��\��ʍӣ�Y@˹�\�5�CD��i����+r��%�9V|��V�#]�{���"�!�Ū)�Y��Z�=;�U�&K�Q���ͳ����Z\yf|��*'�����C�s��@C��~6?4�-<���a�К<g���AtZ�L���m
c��<���܊�C��;�Ԃ�Mi�3��D��.��.s�V\���8;43V�_"L�>�9agDG+�bw�� ��޳E��V����J�m�|%�NХ��	�N�e�x�kpt-�
.�%͢.�s�B>+��V��Y�Y�����m��Y�T��2hi]�*I3O�d��*�ȴ�q���>�u׾��Z�b��c&�NR��EB�D+#����U�t�Xm��]�S�6�-�����y�^)�L�5�ja۔��Aʬx$��F6Jd�rL^�v�)���'�F��h3  ].�hA�	�I@+���V�,��%��j`�(�k�ϼ��l���Yȸ�X���@W�:�~m�K��Mq���h�%��̪���!�X��g�'�`&l2��*CV�}`�,�ʚ�U���T���s�rs*�o�i�R����B�>W���./&e��a[+�HTn�L9�)��*#�k��c�Hf&]��������Vv'�C��s�5�+�6AV�S�>�Ih��LH?��O�����#y�:����o��S�DgU���D3%��|#O�궠چ
�&�qY����}�줕C|R����DV�e6�!c�<F:��#dH{�y�S_r�@
�zP��o~�jֱ}���_h��b���|�+Bpq��=8��=��Z�f�^����Z7Y�x�7�t}
fU����Nt�V�۽w��5�,���R��PH9�����n��\Q�EN��:����3�=�[[ݕ1�t+���:�ZQ̊߀��֌b3����v��$���_��ij���0z�$��@-Ot
�;�[[���*�����Tk�-������-W�7�5vjPQh),�s��u�o�զӍ�YV�5dT���b#猕�g�jE���0��q�@'���B<X�Uq[F�bBK�ԓx,R��+�Gv�K��ЪBn�Wl‡	רj72	����ܴ����i=|�E�r2�fZ�Iv���6'1&㐸<4��R;?�b2�]��5ȳ����VS[�ϐ
V8h�o�ڿ��-F��Y!9|볟�j���A�1�F��r�=����'|jI�>2�4����
��������sĆ
�[���̼	e"��{ƋԀ*^XYX<�D���=��N��"�;�܊�9����m^�t�6��+�o�X�C ��o��+�
��v�Y�m@�����7�;�k�̊DK_��a�a��a��rp��U�+��ί^��x�f�c�p�2�ߔ���k
���R�hx=��y�r�@Y��|�F2k��U"��*�:Rn���׫�O@V��&Οk'J
�M�Wټ:��+��kn��ۍ=$�}�Qۄ؁�K��WA-%Z�z�2H֥BfiN!��Y��WL&ۚ\PKf\��+�	-C�<�{^�H�ׄ_̯�}��b����%�5v�!��M`�"����2J��ö�ܩQ����6 ���Xb�dV	�n�y��+��7�"�~Z@+�'h�@{��2�rq���I���.��y�H���d+�����)��P�a�x��%���y
M}S��P�Fc�p��~����O���,�كSV��x ���V���b�t��?�T��E����7�<[�d��av�d=�8pZ(΀YR��w��N�h�� >���n�}X�+}c<��_+<|�����5KEV���v<��Z�~W
��z�̬[:0�( �λ�x�����?��%�U�#��屴�j�(��߱��*���K�����q��M��5�%�2�RJ�a�I3�)o�I��/��6T�����Z��8��ڜۘ��n�0�r�,�� �@:��M
���jbT �&�Z���};�L�n�+MR?���r�[h5��_��~><e�D�|4Y��Y����|F�Q���5�`G�[�#^*��h0i*�Ͳ¥�/@��V�`��=2+2�C�>�*�9C�ea��[��|
���_�J�,�[9+?��
��k�Kh�J�3��=}h�dj#��R��0�B=�LR$IS�{8Fb9�`_�)Y6���ɪ���GT���J�7��5�ˬ�&���V�8�(�[�O��]�F'�u�jo�w�8��8>�ן��3pm�Y:a���b�>1gjl���5h��в��#����Ż-wϾ�N�������k�FڃLd�B�Hf�z�Nf[IB��7$��ڥD��W޸���!���س�X�h�,�dQ��*��-��\J0���������/��:6��:�k��
�cx��Jg��V�h=�Vv�����L��/q�b�Ibɬ�VF�����X�4�9�)\����2�&��[O�h�G_lՐM1����54
��2>��I0d���;C�dZ���fA�lQZ��‭��]0i���$�T�m\N��pZԋӌ��њ�A!�Y�����m��Jj�WRG��sT�G� E� �
��`�Zf$�.ڡ�N#1:��_�>_%��]*�T�-�$�^���Z�����xD#��W��p����\^4��e�ԝ���e����f�G�P�
;S4f
�d0K�
ǰ(���ƄH˨���"��Tj�hPt>�t����F�·�Z��|�F�~�{��~��l�w��s?k-�Ë�Cc�x|�G��:��g���YKtY��Mh���B�Њ�h��w�ܴV�bSuf�ȝӑ�<i �s�Z�T���[�&��W?�f2��_������>���� �Z�>���x�i9�=�"i-_��[�����h�<DI1un�G8x�zx��/�[�;|�+Z��l�J�p>DH��/pi��"�s�I��x���	�H����y�dR�һ�V)4�{��/�w��|��?����d�԰4[��aY\e�j���.����M�d�%�sF]�����	�E)�INAW+u�>'誫�`�A*G�H���m>*��*��̢R�cj�J���\�sd��_��W�uc�Y�����+6�D~��W97�i��
�`��
3�g��X�Ә�����B�e�����E� �-�b��K�3M6�[�ӵ0��N�.��댱v'�r�U9��
c��៧ѵ!�l?���>��0��C�����2�UhPB��hy����
��"�[5[h��5��S˧u�Hk���n�Y��Z	�6nEV6�fm�s�&S9=��{�iZ���<���:Ν��{��S��$�'��J��<�C��t��6��F��;�GZ]�#��};�uO�����ڿ�����0hݚ���Pj0H
e'��t��e[�"�c��ׅZ�}���O�1��#+�"��`��]��(�^��`%k9!�o+;\�e�f�j�Ћ�Z�LQ����4+��u�������}�_r3B-6�˟e���nH||v(�ȕ&�����'���YZBK	~5iaK�����g�
,�`qȏOs	�6�2��k�-�ɗ]se�Tl�ch�Hj��^��u��#���<�S�Ƭ:�Pv]g����ٳ;7�ZZ%Pe����:�"Im� �������@��k��;��n�d���3V�
�(�[i�^aT�Ê���a���z�Q��5�"�ZYk��`e�]w)�TԪ�`M`e"F���cf�9�uϭ���ͻJ�	��uj9�
�NiM<����L3�6�|E�E�
��q|��
:Ϧ�#5���Q�\�|st��,>�/�s-&�dV��&�p^��j8�RlM
������(�1�Nzmɨ�Ҿj�\�ӞAҰɘ�	�6�v=�(��h�V��K��2tn��G8����q�@=����Z_�`F�"]�#������܅#��W�n+��w�̴]���u�6�\�\$��H(o����a�g�Zw��O��Š�=Xv���/j1��̫8���҈�аO0��¬�[2/ҵ�k��i:����P��Z
��.��ۏm�;DL7̜&�U|Y�C��҃�@�}�o�o��s��U&��̓Bk��M��X:�5x;m��{��X{��3��Ƌ�}����\�̲�G� ����D���!�l-=U��DV�Q����@K��CTS���T)^AC*F�_��Q$uF����̶0jX��z�Fk���wZT�~b��,�U����z|�E	T8���8��!��<�?-�p�ՙ5.�z�S�~v�EjW���.�d�����s�`1�uA�VZ%MF�5k�r��RV����׸|��Z���=Fp�[��I�E�]��`50Mb� CA���ڹ��Ⱦ�ؿe����V��]^�x��zXC���ɵCpv��;�*Ժ`�]�Q�DއJ׳'ڎW;��|�6Zcg�����$�c��;VK�\�0�29��,���Y�r��$���玿��+>i���oK��e��(��H�VE\9c܄T,�����%�@�	�d�ڪ��_뎧^|?�`+����K�ҥǸ�?���Vlf��!1�«�b&�,�5��<�v��B����_q<���VjW��-�G��I&ʬ`Kf�^���]¬��N���x�0ō1M��tW��
����m�$4���r���5��ڂ�x����ڙ-���BK��;*�=�߳�TP^W����d�Z��bV
�g��%;�h~���J݌تb���P4��5�g��h�mk5�8}Z'�����ga6D�,�=����r�T
�f�s*Ȧ&
��[����|d:{����DZ�V�'3hZ���75[`?e�/���K,U�-���F�^U�ܽ����w������7��5�X:�d���+ZJ��+����P�(��,��/$�Cr�
�y���ֺ���b�!�JU{���F��l��ob��uw�
5��غ��UO@�oZ�uh���tm�
�C7n�Dh�ۗ��e�3�!�;Cc��F:�X�g{�К�EE���bf�e�s���,�\��dWv�$?,(<�ݷ�8�Zh�vFY�k����U�u,��b��f�*,L�:VV��k8�����\�Q��P��Vq@wg�.�X��J+�rw�{��m��2E����x�4rz��X3S.Y�g�\����{#F�q}о�ȟVU��V؜�I$�O���՜�2
j��.�r������W��q)]�"|���و������z�[��ɬj��_9,O��)���jZ����z㦹�6�����:x�"P�Tjy��Խ�ˋ�
�x����*[�
��Eq��s�Ϡ
����:|�*b�I�W}�L�B5�#d���� l�x���R��+.Su���IO��4iA*�T�.�J��
�X�w�2&i��6#/��/k>ڳzer7cC��*hغz��Ð(�>�u�-_B���hZ�&Ͻ隷����bV����Lxtf�W.�Wc;T��Jj^#ZΜ�ڱ"��V:MY�/�����⃈��/E�{L�2�ڕ~|&R��!��Җ�����V�����Ɍd��2J�7+��'j����RnI��VQ+F���%��
E�*�T�	�SD;�l5b�����23b���3��(���Q���h�S�d�Icy��?�訠�?�3�P�D{llռ���TB(�aރ]�jm�=�Xm�i�������ŕ�֞:�Ն���v_��N�z�.�*����|�n��w��+���AL��?�?�ڕ�<��u�N����D�Vr��u����U�V�IK�)��#�V���y	���M{����"�MW��/��֖e�1�Y��?����\�J�w�)����V���|2k��[n�v&��=n��Z �0�:�v�em�0K�C��(sݴ~��F-�����%��$e��j�fs�#S/�6���z���aЊR�aq��&��4DCw?���V�
��;&��*�
��dJ��}��Ϳ��ݨ���^u��@��3��j�Kb;��V�U��Chm�6l�@������/��Aj;kam��y�{�y�QKf���ƥ���ЫQNF���1��NF[3k���:��=;Ξ�&O�>̺p
_(�[���q��
��G
���G�Dp	�1P���=���kN���1�!t��"w��$��+��=w�o�Kfy��Y������d�ʜ�R�Pj8^m9F6:q�n�?��∯൵3
pkkN�7� N�x�4�+���T=�����pV5�LZ�a�
�R�R��p�+�N��AV.�C����>G�"!j�p��\��ek�e�`���6}i�S�-�E�dhyĞ�~��@Fpg'<\␞ޭMh9ۂk���l�sC@���t/�]�\��
��
aV[*����kn:�㡔52�f��%/{-��Y�;�g,��:s��cB�fYۧ�c��ǼA%0勳���z'���Gr���4!�{�N�Z��v_ùk�<h��jf���<�=߄Y�E���2Kh��Ě�_�IV'WJ-pul�tA�հ�ۻ���{��,R�횼$���*'��-���&���x�[�s`V=/�Y��h�p�!������Z�i��p�?����ëR��o��q=V�Sh��e���H�+�\P+y"�gE]�E
��VtW���
�$c1+�	>Q�I*?�ƞ<-�>�9j9�Oi��v*ݡ	�ܮZ��Z ��'j��y��3X�a����'���d	
w��Jq$
���� 5�R
]��VH�ł�2��w��m޿�¶P������e-}|��c�Bޮ}�\:xs���k�g��b6T�X�s#��9���Ȗ�6�������}�=η㆝�HC�;7��m@E����;_}�-/�s����8�C8E�U!�i}�;��@k�m�U)w�]�J�ס%Dz^��,��\*W��k���잋=��5Gj�Ni��}&����C�0��YK3���B�2<��B*���s��J�
�:�lH�S�)�Y��<��0kr�=Z��$�qB�U-?���+b�&�	���@��f�`��+�2�"+�Wh�4�Xi���6�Zh��0��:#��KfO����h?X��I	��'Vv(P¬�\N�� N�[>ko`��Hp�ZeA(�XmB_
\eqҍ�I�o!���S��=�ApX�o���?��r�?YZx���UQ�l1��~Z�	�l�:ZY �ZT&��:�Uk���ԒR�Бٿ�*|4�*^y��<�E�s|�}ep���'	,m޷�l5�"�Hƺ��*e�v~7�&����ZY�ʄ��+�n���NR��D���WCB�ȾA��Ok\u�!]o�W*]�s2�4�	��fE�[��&���@�oO`}����~x��,>�j��;n�i��/���׽���0�R3j�n1�Z�/���B�gt�M�:���h䟒�ҙ%����k�8]��4����Î����J`����b
X~^���5�����<@���k��m���||�GTG�\~����	%~.��d�ВZ`Ed1W{�u�V�,I�'
-�������x�
b]��T��Z�
$�P�C3�B�U{/� Ա�f��->��(�,%(�B��3�aM^�}-9D��|��>r���������R�ү@-�⼺^����v}#��t�ZV��J4������~	+ZE,�mڝJ.��
�A=.	ϰhS�&��ȇ�#>kN�Z#~�P�Y,�ۙ	!�%7� V+����١U�Ҹ�8�)��t���UQ��1�]-��w� C��e֞�F0;���uG%q	�jlډ�a�j
�U�V�
;�M�9�l�e
5}�~���I6ig�*��f�l��v��xQ�=��j���0�V�a-c0�oQ`
e�ä�U�ky?��k7o=|��YBФO9Lj!��-ށ֋.�H�V���o������XS������=�3r���׺L<܈���*5;0�rZ5�"���S6J.9W����ʙ�6L��	���{UY�ΣiK0���-�3َU�ʰGp!�@�R~���%����K�O��K.FaV~����q�d�0�$d��=��Yz�g�h+-M٘8��&$�����g�+_me~V3k��Q��[-7(s
G����"j�/�!�ӎ���S~c�e���a��nB�˓*=lɢ�vr���-�����>D�J<⫴�4�8��#O=��	#�Nj�j•�L
ˠ��y����kl\��1ؖ�vFI&�x�U�~��Tع�l��Jf�|�䅆n��Z}�^�v.{`��gBh�6F��o\g��PE,�B,ـx͞�n���
�1?D�M�%{R�*��M먠C
�n"=���[�o\���9����Ԩ���VG������!�J^b5j��+��Z-][o^��N�ErF�"G᙭�Y><k��]J{�O�-i_9TVࣰ	lud�|"�e�>�,����%�Q��:
:R
EQ��a�L�2ʸ}+4�jj�#�ZFZ�¶�:�Y���B̙�|-ЂXv�s����YNLS.����������9o���ob�x��{�WV4Z#q�hՐű�	�`� "�ެ�R3f:m��ŗ��XL��S˅i�YzlU��z��M��D� a���Z��g>�hx�7���@�gM�m���۔�Y<c<ZG[�V����~H��֯�b�	�+2�2��*�&��o{��?i�UsM�j�o�<�o1���4�0�ZR˱受Xm��ڰs�z�
�G-������V3GԢ�`6-hQ\��Ŵ胒*��L`��M����p(ˊ�Z�=����.m�BpLW�������2�v��J`m�
��G-V	�kXPL�h�
���J���ZclC
mFS��2�~X3�;j1Բ�L����[7��2�@�р�a�w-~�f����51�tk��@����d�j���*jM�ɞ���Z��,�/F�� �����K�[@�cj����顛���L��o
�n�էܜ;eƵ�@��B�j̇�E�a:-7�#�!*�5D�,���w��)E2��d��E�[����17Y2���?u-��~I��s�p!غ�^[vI���|���r���6��v>���&�Z-�Q�)�J��$�c\Fb*OҠ���&�a��0�eG�Kkj{�������/�3[,M��j`���/�x���Ng��VE0+��"��5��"ũX�9����l42��R�
o�
�y(��R+�b�wC"�P�8��h1V�2Ƭ{�9*��n1>-�
*[?�g蟧�-D��i���B�[FRrEd�f���6o��`�f�0N$��r��tP�Π ��
�I/�h������LuhE�MkK4�:l	ĸ�Z
4fM�:���_��>�6��@��
uRuY@j�VM@m���0����vB}��+=��>+�
�ڀ��ӽ��&�R-��i
���R��]B��h��ʬojQ��D
�r����@-*V8>�b�e*���A�V����yZ�@�[	��+�}��z��c���Z����?К�H�@�i\���6�z�$�ɵ��o�\o�Z�EBKƃ,~�Z�eU���*�jG\7$���vV�(Z�z��]m^�" J�e�Kl�z���{�i����z�-Ou���Ԟ����,U���jq��r���N)���i�~3���(�hXK2��MZL-l!�'T�)�3bc���͇(�u@��[;����~[��,���tS.fi�jh��U�]�>a�+ck�b
~.K�ßJ���<��٨Ab�#tkE[0��	B�e"�,�Ħ-����Ȫ�!�ƫ7-\�����)�[�'Њ�ΰ���H�/��Q��
[d@##�gO�:{����M����ÉZ��޹ס�&�2�*��”�L
�nsgN5 (�c��#CQ�K�j����UneO�ը�n��b��ޡSCZ�T��v7�_�yyZv��*�]�Z�YxljX+�N�$��i������� 5�+h��\��S��G1�W�����|�	�|�5h!�5�Z��ˇ�P��"�`�����f/�L"�bLdr�P�\Pi1��R�d/�/�=*�OT���`�[E�u��<������t�pz�gq{jAkl�N{��	a�
�jq��W^�G�Z���FZB��	��o1=�ZTu{`�ږ �}�q��		�T,�
iO�0�}�z�;^C���u�5���Zݙm(7����[G�%Uh�g֠��J�پأ��k����D�
=Ib5q8�"T�l�u�A9�|�K�5�ʲ8_~>�7��╏YFTu������B�I
H�����H��Jl���#U��jM�]�+�+O�41�x�(F�3y�7�?nE�H�@��	���Y�pzwj
��̪>Y�,�����WPs�o��2�x�(�-R5h��`ߑ�<�h�V͟y���>����ߒ�w�DK�X#RZ;y*{!�b��TOŖu+�K�U�G�Ea��"���]�jՋ^tS۴���@�Y�Y�&p��4g&fZ�M�����x�����V�ud���ϝf+�D�6d��^�8P�VZ!B�*��YFZ��k5Vn	�ѮC՚�Ve>q����k
�?��Lt�;�җ�����p�<��*h�-t��'���� V�,ԨU��&�:�"-t�H��Ӄ�p��⍴҉��%��g�5�7h)�T�	{^�ҝx��w��4w^��|��{j��FZ�qg
�d*hq<�j���.���+�mY��`��a��)+f-����,bY%���-�`W7H%��7-�=�ӣ
���V�zݫ��W�#�Z��t�[�p�����M�y��heع�]C�l�N������SW�,�^�a
Y(�Y.w�}�X�^z�ad������.���W\�+�h����+�$B��˥м�ʣ��^��"�eq&��rѫ���Z�eh~-?������8Z�M��}�u����j�A�Z	-�qs"��'&��v�Z��X[�aj�ɯ]����o�x-⩷/Y�j�%K/����HWs`�@�Y��Z��]U��5���&;qZ��Zns4tS�5h-,h]>w}l��:�j��ce�H1�h1+�aQ��0��}@U�?YҰ}"�\��=�Z�Y�qr�N�����JH��]ppƹRˇ�-�?Wg�ɟxl)�v�
��+��svNh�IIT�>�*f���#O��Mì(��݆�xfH��cz�3�Rx%�����7^���<�J^�clً7��eg'	�&��,=1��I�C�P�J���^-U&j�
��K�K\�{��mi�U.���`�|�tR_��&Z7���ﭕu���C���>7La��M
_�^1� 8
�Xk_��)=���Viz3�x�g���ߺ���4�!�L+GLY^I��`n�}�n���
W]u��^�F^$�o��2��A+}����O]]-Mݺ�U��!]}�G�6�$��z���!��yO�E�Y�V���E�c�i�����Y@��b�?U4/bd�����`lO���BZU��1��5����w�9+�_b�:+��p�ۯx�%��}�L�(���-!�_ʲ|[s�,���/��~h���A�v�-L�P+�bb���cM�9m6��gZx�}���o@�#�����V��!9l���#'�y3��m3�I��k�u�ϊ9��s4Mka4��Z۝N�|w�\2K����#����?ۛ���:��v�3?���Zf�c}�h�H�gL`�:��'�E��ԙU��q�g�ݏ�]��P�(K����3v>g����sڢ+�=��{.���k��ϯS�?��@K�|v�G��T<�IKK�ƶ�.<��nL4�%�&��lSݓ�+�z=Q
3�Sm��_���<\��au ʪ��U�%;ԮU��-��/Ġ�}zY��F+U��.s�OD$�<#���a�q4
��|k���w�w|�ӟ�⍟��K�.��6�r/3;G�Y�Y�Y9��q�H�f��'��7;��|kF�@ٌ�^ml�5�0��rnujٱŧ�B�2�@K�j��ω�4��j\�P�Vvf�j��`�.��
������ڔ�Pp�U�.\z���+�x��˷�6�,&�j��&�:�����‹
��_~�1v��9�+��n���Z�f�]^���Ξ=h	��͗��--��s�eՊ��m@�J�pzN����@�-�Q�,	��Y�3��F��u��Y.�ԘrC�Uew��[B-"-4�>ʁu-3ı̢�kKi�A<��rğ��V��d���:;&]���,ox�����=�[�j��[k�3<���t,d�8���ea��U0�>�[���?{>�=�x��ux���\��RJ�n�Ū]���Ux��V��+�?Y*�-���_f�Y:ܿ��5DY�e�
%����k�d/k���)L�;<.��po�]�1�a]Ѳ�.
�bK��E����O�c�xMҰ��P��=�;��QՋ���h
��a2��
�֦Ђو��^�I����"��˕d�v *�V�[�he:��
Qz����lח���?~�b�/���Y��E�u��BK�Z0cɍ��I�g���.��7���o~�/�j��ٓ���yd���S�_~���/���.��e�?`d�F���s�/��
����%�H9)�;�1�ߘ:Uh��*"Т���o̲�{�y�D�~>�[�fP¬Ԟ(rA�������"/[IQ:�A�g���g��J�6�2;Tֵ����Zr�,��4�Z�Q��#�$���h�2�)�0��@$���E�8GKT�Ǯ|���:7������ɻ}B�%�z��i�Aa��ap��{>�4=�fW������
r�C���BZ��ߠ�����yV�,g��@-�x�ƍ��J׿�U���DD��H��Qp �*f��緔���3�R�P�-қwhH]Ѯ;� �R��X�v媷�*f�q����+���~�@+}hyb��p���ܶZacc���P9�jT>fѰ�,.aV��%��L�>��#uqn%��
�%�{C�V��YSSh2�	��V��߱Xn�������;:?��pޜn\ELҀp�%��h��o~�%.�;{��	�rL��L:u��/�@h}]z���B:_o�b��֪
ߟ�f]���������ԩ�t6�2�͜1��̢1���u��E(]��6�S��y�k(Բ�p(�B��4?���v8�.�WXHfi�Y�k�S
�e5��XZa����以�j��h���S��~Z�Y*�h��GxZ懡��iMQv�p��ɣ��6~ᢝO*~-�ڊ�B�l�VlnA�'��͜�/�"f�;70&)�c%Jh�8*Hy!�dW�h"��Q��
Z�Zձ(�K>Ha���pd
Xۛ5ߛ���)�-9uB���F�wO�AT�Sk�����J��3i��b���'�M����%���
�Z�`�%V��t��K�a�l��U00�X=��V��vA�Ȍ]�Z���6B��i�݀��5�Q�g��Z|VZ5�0�_A)�j̒�ل�{:���֣)P-�Uƪ�W���}���7��o��i�4	�*�,fhM�~h�}�.��Ǐ���G?~�‹m(��@ˑ@K._�n\2��� ;�Whʯ�nϋhY�Z��2�I��¤
������N�p1�#�
@	�6��r{L��-�î����w#f���[Un�VmALz�0;̿��U�
�(�(�>G��w�Vb��5�ZZ�=�%��41-������5l����^��%"��/b��vR��U���(�[�K
j�޽x���w}�O1�;C'K�RɊT-B�[��*/�x�V�,YQn_��o���W���^�o���}ٿ�٥�'��H�Lw�e�%���bm'��C'�fE
fE�Qw�PK���ko\u�%o��U�1�,B.��v�@�tNNK�󦁰·f[n��PzF(���Vּ\0���A��Y�^?<
�������k^Vؚ[��tǚ�����
-��l�N�:��ڼ&$n��_BK^��Z[�$�,c%-C�@��%���+H�?yŻ��.�j�ː��/���?e�����/�ZFZ��Z��qCЦa�cZ�����l����}Sv�����rlI���Um�U?���2��R�4�Q9��
	�j��N�N[�
�5���w�E�,�%��=]+��Z�ƛu�s��V�K�q�w���m�X�u���'�N"I	#�?��O�|�˥�0
�jW���vNLo�{�f����/ޖ�">�V��]|��
C-˳.��d����J�edeVW�*S(��n�J�B#n� ��I0A��~�R,ô�p�����V�
o�q����ȃy��S�����Z_��o�
�z��+[C��[��𼰭���/Y��o���_/���w�e�Ŵã�Q(1�B�u֨9���"�N&fW3D�gs��6���6�ױ�6��2�ŷd�Z-���C�]��ufZ��靟G̪��*;%G�
��٣�Й@d9
�64h�������@�d�p\�M2S��ϗ��֥����݇ot��@k�L�5�5B��Ez�L��`��{�Z�m.�ٕϖY�Y�p��EII�?/��`�
O��
q�w�B�'Pj�$���˱��I�o��0k:Ȋ#��\��$c�:4h	)c������j���T~�Cħ��Ԣ��$�%ʢ�%���R���ᱯaQo>�O��̿��]��YB+JyU,5��v�lmM-46-�ˬ�^�ʞ��k�7:oq�КWv�aiU��B���;�^{gakӖ}lƥ���b�"[_[S�$ߴ�>5n�^/��Ч}��P��Q�i�5�C]��R�V�n�X��u�̢�.�"�C��qO���>����V��g��i.�9�mW�I�u[$��
]2��֩��r(�x�ޫ@k�s���,Yh@��ô�w��f5he�@`ee�N�-����ӍAf�E��Դ��R�Q�^�tU}E~F�D�&9ɶXK(�K�.~u ��h!�Uz|͘<CLM�b�}�bKh)���v@`�
�3����f!�C�-��~Z�M��,�."J����E�ƈ{Y�-ua���Za�2�֌ٳݣ��v���Hc���J��Ӛx	�С��w⾋N;��F/�?�@Kj	�S�Қ(9C9���b��%��]?!����H=b��=�"�ì��W,c}n�?�V����2Z7�%n
Тɍ����ػ�9��zzMz�N@�{��
���j���(��:�΁+/.P��3[6�������8ݼ���Ojx�7��g\��M�u�az��4�nd�N.��FY}Lt1k���;�-+j�S%��� �B��$Ҫ��r��,�AK���aB�a�8��^�bO]bT���K�0�[%��SgV��Hn��4�L���:����N��{��Y��a�1�BŬ��Z�V�3��ȅrR+��`T7��Zir�[�u���/������b�l��@h�hf.{c�e��K��Q�"�"Lw,�&�0�ҫ���*��>]���i9o��`��e=��E�����O�v�4�t)1U�f�xz�>�1+�J�qzT-�]s���Ӟs�u#d�`+�0�@�Ck���w��w�љ�Gk`��C,�3���J5Ay�A+��J�n� ��<Ud
ВZO8�IO��e�h?���9����NB���6�Z��Q���-�9L)>a���P��2䊄b��v��fӛ6���Tա�kF����V��[[�	_���-�-�޷u�W���3��M����0�v ��5~���ΥlLL�5\���Ãvpw�Cg���U�|f�����OZ�ŠͣGl�T[A7�d3@��Y(`����L�V'v�mCao���oi�q,
���Pt�!h�0|�`J�a��/��X�Y������^��%��Z
jqh�bV���$���@�-��w��U5D#��qY]�u^|$+�b{�G@3�
��bb�Ͻ��f�.A�DV@+7�b���
W ����4�Q��lג6.�f��ԪN�b+4����"Z�%�Z�8����Y��.�z�5|���WL�2
�zv���v=���'��詵��:9Cajv�|�8���WB����
Z�8ځ�GrE^pj;,�Z��v�fvfR{��dFW���3�̊�S
��m۶h�n;���GSGDgP�7�_q�괲*_akv�T`;β���D�ʸ�%���0ýֳ���ud{@jA*Nx�K�6�x�k���']4M��Ņ��������M�ڲ9e�����|n��״C
���޶G�i�?#�:&Lf�-����D�+jF��Z<�z�/i-Ij�
�(��2C'�t����:f�Ad��E��ۧ�eXd�z�̊$j�h�W|
%�L��?C�V��1�S�*Mk����9xx��Hk�ȬENI�Et��#�^���%G��L<�#�F��[�q>k9
�C�ٳ�1��~lP�W�C�'���઄����7�J'
MV�[�2��l��?�i=��J�6�8��z�q��Ƭ�@+k��%�����Xk�Q��|��V�V�����Ǟ���0+��G�V�[a�:��'����z��G�k��oAV��Crg���$U%��Z\E	d��8j�b��~�W��Q�{g-Zl#A\�jJ+�2�"��Z6y2B�Z�c
�p�nt��?jZtǒZe�z���޷\��7\��(ЂZ�_�g	�^�����e�}���)j��ޝ[׬7Kd��0Lu�N�\W
�:p��t�a}b>C@��������o��WT>ҏ�Y�Z�h���~K'|��Z-�lsG@��U�h9Z��.ƆY�Ӏ@���*C�Y�����܊�I�@+lJ�����8=�:��t�ָ@*&�޸0�[C��>�w"�u'h}
j$��^odt+	0���.ɨ��dɸ��2[lt]�&xX�O3\�ʘ�ѕ����5���b�$�����v�D-q@k(Ln�����DJj����5:+{�gA�'k=�疭��j����^s�~��������ݿN��'���@+�hR3'�&�V�/�s�'��JM�kš�)�e�"+١g�Pn��1%pG��|hۇ/&Ժ��25*��b��fsy�\ܹ��-h�B&�'.�V������֫_���i�[.��7lZ34(�Y[����oy�⬗d�y�#��Zܪ���N��\Mi�Шugu�B�۰�4J�w�ѯ~���}������Zv�thq�@�[�K��/} <^���6g�}6̲��fetF�yCj)����(�*��� +nx��WܕY3H�W�« +r�*ōJ#�%�U���a'���Ck͵s��ט�#TՏ]p��*�-z�U��2��Da�
s�j�l�L4��r.�j��7�6q�d�gU=���0��ּ^>�j�Wغ�1k<���V�ә%؞dۆ.j���W�Z�$Ԩ*��s�c%��Kp��b�fXj��L���zܶ뉳���R��h5��\������~ZB�9+�v�X���Gß�06RL]��j
m���4:#zb��\i�ʊQ�"=�:��S�?x��+�+��,cN�`�J�X1�N��w���ف��h�ҿ�Ý�׫�n��@>����#ޱu=n�g�@�|�K��4����[RSO�I^A2��u}�?v��\5"�mrtj��X��`D|q�71h#�VQK�C��R<��m8��)�W�Y�l����C�5熕�ā֨;��J��Zn��G���C�x���g`V:��ڊc���G���łV
�}�
�����B@�p�x���i��X�Ď�^ze�K���hhu���釙^K
ZhM-��@���.pV���+�K�+*�ω+��|����!آ��	$.�?>�Z��J4֙��ְ<�R��O=2��#��+�3/�O��@�/���ªmW���b-�������^�)�@���.����*�
�:���*��Z3@hM,h鉈?�IuF�Z��ll�u�Z�]�m�Ū_}�$�,Zר/與X��ط�݈�J�������+�%{t��U����=�hx�>x�jB�1p�|��܂��Y_����o^L�b7�{i5��P���)b��V�A��A�|��,���~�K���|�c����a�bJ�]���nZ��C�
�k�^M�V�i�j���lEKhi�δ�-��3�j��zX���+p�e@��0��U�'eY>��R1+ВZqi�Y���Tj���t�S�g�bJ�|
�te�
n��o�v��<�?���n,b��4����)��2�������>(����u�t+�g�KQ:�v`�T~�Oj�H��yi~�:��00�W�q��5v�X�z��~��^��Y{s��¢�Z��<�GW�RϪ;9�C˥C��*��G�ױ�muh�~�[�|ރE��
����JY��*�f}��=d�]�Yrr����1�`�6��5'_j%Ҫ�Z�߷ϙbi�����f��z�~+�����O9�M�顖*j��e�����e0��/j�Q��{_��W<�
<�3b��|Q@A(��`+$K�?��m�>��;�p���?}����'�,�Y%�ҁ���䋖�2�9�z'@-�5}�ђ8�AKl5h��-��NE�*�j��֠G-�
��95��j踃?�q�)��#T%%G@-���rH[ub�V�
��uU�K.=��7Nc�D��e���6�����N�Ɛ������[�{Od���'l%b*|�m;,��&�nԩ�å������c�n�!��y^�^-Q:�|�Qך5>�Բ��Y�㙥��?��@��P���Vs^q%��w�[-�@1���e��hn�j�J�C�T*�dd}cB�ĺ�C�D���v�����[w�}ײUܲ(�B-��l�V�����V�$������E�j:��ޒU⨯m=l~��[��<P��_��1_�L���5��z��Ͱ�Ǩ�-i�,�����Q>es�ûw������Yٸ#�,mu���.>�h��Pw�Ŝs���h�R5F�<�u^jZP+ux�C{�����J�X�

Q�ڪ+���J���Y�|
�Y��1M#�%o��V��9-�j`rC�e��ZE�Vl}��C�P�mƣ�� �l]����1鬡73S�ό%��i����M0�i@���L>8���U���\����j6$	ba^#i���	��<�O#����d6#}\F�V�&{�\j�\*�%�B�hԚ��ÖwU3��Ю<ݶ+}�k���-�
�j>-��IkZI�:�<С�����{O;����;���5!�ܻ�​�+��p�>mŋK��C�b#�6l��@���g��.�p�r�N5B��l�[&�9�AI�MP��B���k�����)�j��(�b���dt
���L�ZDG�R,�VԨ�h9-�P+��J�W|��K�h��T\4�ۍ��ֻ�@���+1դ�5
�$֤!A�e�谫��Ӽ���Y#d%��W��Ԁ��'��ޘ%���E�Hŏ���YD��r�8+�2gZ�.
���E�Q�6�8�)$������۵v���G���!,�)מ�IV�h�Ԡ58��lЂj|9�$�#ЂYf�R>����$�ZQB�DZ��;M�U��׵�MTqP���ˏ��x�Xp�Ug���:��#�q��:��'��VD��5�Zu�=Z��u��N��jԪ1�*^�j��Z<~�_�A���S�>ˡQ-^��m�}h�u����L�isWYX�	a�� v�{KkZ/.8 ��`�7����t��gk�̈{EZ����U�?��g�S��V�d]�(^x�?�ZL��s�Ѣ�-�u���W����,BޤՀ0�,o���w�R�p�����4���}�~���`T��n�u�*��f:DY�F,h�
��鉠F�j^z�%�䚱V���i@�-;?g:J��|����ά��S�P�ze�o�
����PjMe��BK�-��h�W*�3|��.�ҽg���'�V�W�Y'���� �U��V� v���h�	_�*�8m�s��<��7h�)���s�bLk�ި%3]C|���x0�]N�17��:Az���X�u�~Z(��=F��.���э(����?��H+���g;����lj��z�)B
�O?d�f9ZR�'��5DFv��U���/s�6�a��5�4�������&��07��5N}m#ؒGCW��3$C��"����}�����-��3�?v�9`��k�ƀ����=�t")c�@뻿���2��V�C���j-k6aA�����H�p�����^��2��Yf��!�z6P&�Mg�I,����:kĬ�Ō��#�`��CP+��dU�[�W��Ѱ�'���;�g;5f�ߊ�ᘝ�HM?]h�Y|����Ul
N�I�_
����P��U��5juf
��a��*�g�A��2��.ç�g�A�5>�K�0;����VA�h���������
ֺ_s�'x����:��;��a��Z�Q���u�2����:�:OQ"���l��e���]IZ
r~�sz�#�c���_l�Mf�Q��f�m�c���Ww���	��D�a^h�X�m�W:�kO�w%k�j�ֺ�����n��5��;�C����C������|mYdA��ZuClqjşE��~b��Z�pLf)7�/8�"->��$�0�j�����7c���Z�PK�-�;o"�Y�*��=х�n*ʪ����,�XY9�#�;����j��Y�\X�h��O!�uء��|���?Kh�U�����~/vi��G��Ю�d�B+*�_3���JEk��-�Qk��+�4�xh��%��f�@�W�r��K�¬�d�V�һ�=p
R:��y�#k�I�MX4��cIՍ����ñ��2�J-�ۇ�#^h�Y���Ϻ�Js��P��k�&�͘�Ҟ9�2KH��C�;��Bc�KS��}f�הa�I͟�@�����
��Ɲ�������u_YN�L�&�0x�)���Nɡ��ɢ
k�0�¬��M
��׾�e�Z�V��	h��3_[����4([�V��^"
DbKh���)��-��{u��e�Ox�b�E)�-v�h�L���6b
�B�F-*�"+Ъ~�C?��J�
fZ<���Ե
Z��j����&
� 
c��V6vOW�A�1��t���D����q�S?���JD���O�ڡ��bV�-��1�fS~�+���:)�xW�r�7Z��GΠ�t�\
��j���Z5%Cl����+��c�VS��R-M�����C���S�G�I#-����C�z/����or���)'x�h�M1.2V�A�ʮq��r��uT���T�fY�7,�)�l�޽����M<�W,vO���{W,ny%{@vp�.KY��p|�&�����q��r�8�0���mM�V�,otj�����J㗓0���j�ɴ�C�s�	��c�I^���-��Z�=��˴f
Uy�\rA��Dk�N�Ҟ�jO�h�����G�����$U�쫑�
J�Y�Z�Ձ՘5�|Ԩ�nnF��8���K7���t$,hm�6c�] �:�|@��(�Y� ���Gj+��y��Y����(�-?��F�A��gM�Ľ���X����O��'l�Zhuf
�}�Ux�ZJh��Z\�^R�<�h��h�v�UO� h�r=�Oi��7�i��z]q]��[.{��C�>�'�f�sZ֗_N[�F�U��3X���~f�84ˈ��j��m�.�mۻ�2wX�c���+m;���;����۷���	�r�._C%՞j��k��=d���F��֛���z�fq��jE~�w�	"t
�&]��FG��v��Y������aG���O����i�T��{�!8�z�����nh�|�i��+�����&F�&%�J~&�Ơ%�:��N�*-G�R�WZ����Z�Ÿ�q�H+
KY`��T��kg@��-?4��C��ZQmA�q+u~e�l���#���G�k^�6�jk�V�]�U���N�@4Jhz�R�"'�Z}v��*^'�R���rt����G�Z>��״�L�1�Y(��-�(�-�_�dz)iy���f� �U&y��Bk��puh�q���hM�c��)���j�Ta˔���۶�XȜ>���,`@��EܙO�$�n2J�G�Vx梽{����/}�K_�R�^�q�A��Z�/;EgGz?ؠ�aKqݼ����s	-�K��8�i1���gU�8�;g?~��miG�{�6�$�>Y̊��G� `�̪�y?eV�'5n~�.��#[6L�K�'��v�`�7f�?�4��B���,��E�u�P��;dd��ZK�0�
ʓ�в���l�V��ŁR��u�l��.
��Ds�M?�R���
��Rl]]�V��Ć���	�����s�V-���"��̊y�3�!�8�?�,��yti�V7v��;�Z��`fEE�\v�3�ZZM�x�C���*���!�����g�$�9����䈁�=��QZ��$��2��{3�7ꍝ5v�D=��+�'[��� �2rPz
�Q˼�{읐�r�#�q�Jjx�mϖM`녊Y�[��K:�һ�6қ��EĦ�#fX®-�Y���r�42�d��ֹ3V2٭̵P�[�@�Pwhq�H�{�8>�,A�FAX�M7�d,�`=�������+�X�q��	�XQkE���ƕ������thuj�`C-�U��)����8i�U���"Q���S�ôI8f5�b�Y�e�+��J���̝3�iOJ��5>VCaQ_-l͕��#V��D:<�/	�v��Z���whu��Ɋ�ɫ���V/(���O�A�J%+�۹��9
Z���:�"��U���:�Ja��v��
�+t�75��\�	�Ut1����]�M�z��#���P�G�!^�ؒ�!� �
�-h����t#ԂN��Ūm���8f ���%�.�腗]�隍�v8�Tn,F��g��P��UP�5�
�*��b�B�f5����*�f�x����n�D��Z�
<�`j=��!]��
e��Ȟ�bM͌�8kȯ�a�ɀKK9�X��P���4(�GY=�ɞBN�&6����W��|o��35���8j��V\k�|Õc왉�v��ɡ��|�9+��jM�q�*ˠ�\�~�D�֨b�N�
�-�pa��.G��@�ҙՠ��ت#��.�7{�Jl�"q�]�[��Հ�GEu�ZZzv��G�j>��DZ�Y�V�gy
��`�JK��ZĚzA�T�j��M�yh�}��@)�G�VT+�4��Zc.��Z�G�
fQ�C4m��!n!.�7�&��Oz^��{���[���𥯡�<�.RIJ���;��V/Pun!�	�d*�H�5��z��5�n=~ޒ�.y�F��ӣ��S��/n[�|�.����ÁĢ$�asK�,T��-��0�X�5X����ވ@աVcN��>�A�,��{�^���UÞUa����W��a���
C-5X�d�$l�DT�ÒnDZ�&�I�L���lz2���:��<e�+


Zm�g�⬮�ޗ�J��YN�[��;�z�,>�ze���D�n�_��+��A�֠�{�7�o���N
-
�֩�?a�ա�t\y����m~�aVӨ�[�\)&�%�&t�z6r~ʞ�rnB-$����k9]�l5hy
Ǹ����������PK���ܭ1�5��P�"ܪ��ݎ�߽-���bk�9�xj�m܅>Ѷ����0$l��R�
���!��5��]!,5?�ն���4u�Q,�Gl���8�*�y���&�]35-F�,�e
����
�k �Jޏ���-�g����[}	���
�~�����6{���C�u�9���)���D-�R:}խ�wn5��r5����~�:-J&� j�����e�OU�[����r���[
��T.�ޘ9E|ԡ=Z�1Q��㜒�Z'dV�5���S,�:y?������e�����X�DJW*9"�9T�
�l�1�@�*h�ajS��s����u��·&��sD��t�f������
h���3�fq�KeDf��Y�V��ɳ�yդ�5�5i�Z���ɯ���#L	�(�⡈�Mh���04F?ib�o,_J�`���-1Tu�Be,�!��HD؂SPfU���[�$���ƈ	�*7��0ڎ:��GU�G�YYj�rlup��+x�3KZ�\�1H�FK
=��?�5=�@k�
�71�����&!�f%�hX�R���s�3��6�N��Q��}a�����hW���M�]�Z��o�w�������T��Χ�u��[8~=��X�S���"�T�;�;�zw����p&f�R3�Z�[�W�ߚ�[���풶�{��h��6)b|@��
���������RۄV5���U�E�XcԛJ�.�Ş�׼�-l��-�/[���m�i��4)��A�N-W:{o-�Y�X
�c.'�d0Tw��;+��F�*��ہ�P(}�0^li��zQ�A*�wб$[��̂�9�-<�F�qOswQ�#��x����rC��`-*��+���^ZQ}W��UM�?�m�DR����&�K*�
�z�GJ��j5��sgP��7r�#Q��X���[�*�*[�u����V����@�O���R-���R��S�L�Ռ��V��I��۴�nZG<�BH�T�﷍O�R��1�{J\]�#Sin�LcV+aI@����Q�Muk5\	�W��R2-%�tC"<�g���oƉw�ۋ�s7�S����e���
�;\m1�y�r?�[!Ճ��BA��C-�o�M�O��Rά<�b�.Z�i��ظ�_�J�u�ώ8t�߮�|c����C6+����4�J-�E�(j?���M�� iw�A�t��@k`L�s*L��Vw�J�8���xl��{�3+�V��20��N6�В[il����H��gI�i�뉲�{LN�J2����&ZA���=�N'��8^�T�g�س��bL�S�0��iY��.}���}�e�Ƿ�,/B�t�ʩ-��'��`��a�2_�6]~�8����G�~X�o�/Yr5�	=P�Ue�5�(�	�ɓe�Oׇ�Z�&M-�_H��+BT5�J
^��J+��� ��y�uh-@�ΚE��m�� �dSc�h�����1��-ob�OZc}��[m��c-�@]��Z+��q�7�p��3g�V�P�o�?�^%;�������J�QsxP=G�I��_�:���ĺGyn9����W�i���n����7h�{`�� L-�3�0��n����vC.�zdY
�����V�ke�<1ʲ��^��hJ����p�Z}�H���0��X�kT���z5�6ʧz��h�2a�i�n��CD-�Ž��N�m"�Z�t�HK��G\���pZ㖓���Y�w(�C��AP�b�������ꁋ�^�=;�@[��Ԡ�{@���̯(�g��Ł<�Of�t��ӷdk{��30���kCC��S�JW�ś�™*.�W��GZ�T=V�F��C�t�:MfYoJ��M�7�^l��N�-�
͡���o����7\���G�/d������}G�F���g���Ŗ[]�Z�U����!V�Q�8�b�T�f�L�K���Q�O}���Kh]U�'�
B�*�DI��Q���Ā"Ո-)-ՑDс�$��D��B[F�((��bK��Z�������D'�����u�9�Ԃ�]�q�������מ�����^�Nx�ZN“-�.����ZcEZ��r�6��z5SZ�-�"���O�Y�XԟJ�����c2�,x
�ԗY��!B�T��ȊB�9S^��s�Ef�fL���1/�zB�Z���:���H-�lj��+�RW�DWMh���@�*B�xK˱NkI?�槢@46r�df���H%U�P%�"��-��T�d��Ք0�c֠iG�@(F�%X
<��&{����&�1tzPAP�3�[S3R2�}�
������c��A9*Os��~z�����g�t��V�Yj�͝~��o�|��+w��mܼs��[�%�,!7UhQ`Vz�`�؉݅����{[E�W�!hbB$[DSr���a��������S|Z����tt0h��F�� �„j�哴tQ_g��*��Z+N)�7
���7Ri���Q1��!���`}W�}a��k�}��p� �rr�r����p����,�ϲ��Q��Y��+�L��}if��防�y{K��>��O�)��S#�B�ĥV�u@�Gs�7��s�YSǥ�W�!Ҫ�^�� 3�<X���R��R�	U�ѳ���]�����ק�>�Q�m&�k�Z�$�haö��MS"��T�f����@�Pk��Ĭc/����g�_������iyb�	y,��	jqK��o>}噉�T�~hbt~����V��؁9,fa ��5�z�΃<|x(EZI�l-�fX�RY�/B3��Y���𡒧JZ����Т"6*�,+�%	VZ�3K-��-Aj��aAKvZ��4��������RZdf��X�՟q`
����ҝ���r�Id�Z��Mb�r��G'ڄ�\���@�pe����J���75�?JY��Z"�#C�/����fd7���L��Q�Z�lR��wA�Ɇ�`�G���g��3���e��y졡UeW�RMiZB����Ҡ�v8X�T�Jlս�)�A�τ��H!e�-"���2�V �-V|�О�09�XmB�
!$�@���!��c;���w�����*��`d4&�G�eTո5�~�U���o��2���z�5D�ܪ�Y�q�H<r��������(��&R�LvͱQ\M2I�B��g��`�� #?Us�l��DS����uO9�U<�B�Ҥ��V�Q��A&�8�eK%��<����TĪM�ɴ�Z�%�Y��t��`�g��h�����hᒔaɩ~ěe
ć^X�	�ZHĪ�����d7�B��"q�Pq���(\�A-�ٗ��%eIį[�o�r~X5Y�ֲs.�4�PN'�?7���R9=��#ľ����Z��c6�i�"�-j��.�:b��E_I>��M���!�Thϔ>ݜ#��Z�H��]y��N��IU;|��Mr�Ė���c��t;c���q��%G��O�*D�dV��P�7#M�>�]�l�M(�%`��kn5�DTR���E����qPo�"���Yj������H�7�ʬ���Y���M�d���AT�ݱ2��11���]�
ĭ��p�"�0���*f\D�g	��_�j\�[��a���vf�h��
Yh8p���.R�d	�Z>�~%ׇ�P��n2˾����RF��XMf5��sr��u���=�
�旡G|=�2��O5zdˣZ!��w(����ۆV[_9���ꠖ��x\��X�P,F2y�1V��o�g)��f�*���p��BZkJja<��}��ޮ#D�5c-��Z��Z|>�#Н8t�ˏn!����"4��:x"��S��fx!�3КG�t$��|�oM��0V����J�����8�x4���}k�^�*)-neO�����-&�=j�0�S@�j��C����Vbk�Wŧ���0O��9 ��}���1#�D��ʪ���tY�V\|�9N+~�bV8ۻb�ä	�,��W����-�2�r
���(���.n��Z���ejZ�֣a\�0���ΕH�'�ՠ�e9�ur��L��nA���o���ժU��<�"Ř��Lh�:�,����Fd��m�������%�x�Z�VA��7�;��Ǩy�ư	fa#jC�A)���WhJ1�Z[e&K�@M�w�che?anHأ@K�:Hhi�r�Q�$"���W�,DY�ٽ�L�	`*4��{4���G��v����Y��ĉ߷ζ�U&"�@o8�^��*��R.��e>*h�4<b���δ��R�Bh�c�5�Jh�>Ȩ��W����!{5�*'����"-פ'��[9�Z�R�
"�"W�����h�ʻ���XA+\�~j5�U�!�t�K��;*��	��`���u'��J�)��WZ�ع��qh��BO
�5?_3K2�(3Kj�P5R��t]@�� �ʾB��-ተr��E�	�,��ɬI-��������=p�`6�y.��q�"̔�{�mb�3�3���T��ļ�rF�
n����붰�ʸ�*��j6E�)B������R]��]�J�Z<�1<�/?,���I1g!�&�-�w�0��u�U�]��,;�HFS�U��U{l�C`
�[.R`i��8skB�F��	Z�]�WI-�vK
�L���E����3�d7i��tS7h�2 ���ѹ:�� ����9u�P"�e����9�r�!�����a�������,|Ib�[aֹ����i�a����C1���%��o`K��ڨF9k�^�&���������(��V��l�T�Oň�B~ex`�A$�8���yމ�(�А�E|j���g�lq��=%+��[|B�u��o�<
���g7��?H��xB+�郈�hQ�_q�4���6��	�٣�S/#�nj��8�Z<��U9{�Ρ�aW+UU@T��)��j��`�.eS�Z��|
��|�Z�Q��*�kO����~����2�J�jv���y$A+S��W�x[خ�V=O��ڳ�>N����~ž�?{�AA,�����`j�G��ʕ/eRjfU]��`VΨ��)���r�0
�g)Т�<�:G*�	���a��n2k��Y|��bh�ڌ�M7��{��BX5/��Fd��J�U�"+V���2R#���1�Z�V��5X���U�Bp���I����cB>��3f�fha:�����jH-/(�Z �55��!��ܔgiHؒ- �fa�!�U|f����r��9x��QuJ�mp���VZ��
�C�<�>���F��h;!}��-i��`.Q+�%EA��kK���}�Y�c����t;�e��š2�j;Z1��l,zL4���v�KO(����5�������4p�;��L��\��;e_:�`�-!�W��L���j㤓Z��'���J�����U�9��R�C'9Nm1��ꮞ�.��-q���z�H#�w�=���j
'8��	���(��>�;?��]€����a�%~lY}(���P+�*Cj�@��-�mŀE��x�-Q뱯��Y�Z"T{��~���=�q��)�ʠ��Ej�LV��f9@�'�dg�J�b7 �ˆT�4J��m+�85+�fZ~��BD��ܷF�e{d!�7ܹ��m[�����i�f�캪@몄����D-d�����Q9of�Z����ړYnF/�J�}�y����y�yXr\Ԩ�� �L<i�R �c�'��Q��D�����]>"jI���<Y�#-��_�UߥPk^�w).;FZ˫N�c�u	�Ut#Յ{]�۶�ga���^�=�c�`�b�y��cbo)Z ����&]b���Sy��]���P��9Κ
�fQ띑!�
�HƑvj�ֱ��K�������k^F��e�J��#+���܊�]|��[e���aa{��$�0���lf�Ѱb��v7�FK�B0��:ʩxf1XE�7�`�s�_�JwŒ�8���Y7.�?��ԛ�2������Q���,���ŭ�Q�TlB�-�0�H���8��.�n�ݾƚl�C
�iH��5}�m�i���Z,����1%���
�q�9Wlö@dS���Y]�g�:���d�j����}�����3Յ��yV��]'i��)�!ӊ��UE|G?��WX/;��:�Z���ȧ��.���.��,�Z�r套K�ֵ�j�ݶ����P=���i����L�x���e��+��/8'"�.�.������ov�E9q���4�?�������I�]��')��s���m���Y���ͷ�h�D�ɘ��/��sK~z
����i�?��f��x��=aZ��2Rt��!o���D
@y3Χ<�`ײi��_V�e�'v�CkK�u��v��ܳ�D@���a9��QA#
*{ci+rl�d;k-+r��
�(U���'ծd����q��拴�������s-��T�O$��C�ѳ'�~F���(�z镸��z�_�:E�y
2Z�3�5ML�l�稆��|<��i�$�r��ӎ�*d@j�G��¾��%�����1�DÒ��%^1���ۚ��–�k����m�0�-��5َx���DZ&�d)G��!�(��kRѠ�ڑL8��[��ښ������z䕹�]�Af%�2Q������2�DZ0�7��v_�R$*;4#E��K��ը�zC��I�8F-A�8���H2'S�d>��+��fX�rl5"��>@�G�.�\��ӄ�,��+���~���^�_*.�^9�y瘘L�/i0���_��b
����ڔ�CG�����kx�L}�L\{FBH����E4�����
'���%:�1o���G���6���>ǃ��7T���Xhݎ���DZ���]���
TQ�
d�
@����tu��H����q8��/T@�M��Q�C�Ψ�Y��R6ńQ�=Z:=<����4ȂY�Q��<�'��WGd���'gwɴ@W�z٤R] H��p�Zm!o����/�vb����1��c�� ���HWŖ��J-�e6іx�������F��(;� �P�aH]�0n'�L�W�}j>�Ž��y�)�B������n��\K��u��%�:�u�g���VlӚkM���p��B<�m
w##q��µ� *��m8}C`�8u~�r.�ź�V�o¬�e��|ѿG+���Z���.�ig������a Z\`�����^��DBkő���K/���;6sZX��YV�Q:ԃRUF�t�(+�m!���A���is�R�����eqF�t�Z3�d��Z:����@���qA�m��jm1;-c�zOu�	F|����Z�)9�}�)q� `3���E��H��"jR��vپ��Nr��;��
��i�NK��x�L�j���<ri
Pu��粋�\�E�iT���<�\�%^Ϲ:�n�{�3��H�f���M�Q���¬�i���i�Y���'0J�T�O_�i�6ma[�3��H��kzޕW��~籥�m%;�/2���j[$�����fUF0�"�ie<��kF�CY��A��
���u6���	��	A��5H*(��S�T�ޥ����ˎ��O�=�c/E�O�>�ME��S�{6lY֓Q���<���˄Yj�ڷ���/�ۛ��X-.F�I�3��lɶ��W�
�R r�xs���ɞ��_JqJI�����vf9F2�x�[/��U^7���Z���\�g��t���6��d�M����	2	�<K�1}��`��.�{�"�I�#����{1�&6l��~�)aqZ7[�ob�^�_�xMg����r��d�*��&�K"��L��o���U��`�Sx,� I����o@wd��#΄/�Ҟ��ű����af�-�Cc֭�`��<���ա����=2�9UQPMthhr��&�C-b6P��*�@��ۢ�G�Ϭ/�'�S�랴���T�YJ��ެ8Gv�c��'��:��g��je.�w�V���I �*c<�\ɜS�9��w�1E�.41@�a��{�Gmy��E-�0�qDlj�Q�X���T��Yhn%-E�;<�X�e�S�j����kH��Q�_uщ�/�N�P�̟ť�@r���#���b������!�\v��?=n�P����~,3�dg�A3f�pWb�X�ul�Qҳ��D(�/�R�A�+��)�L4F�d�7��?�6��K��V��!���& �.��;���pR>��Y�x��\�er�ޓ�W�D��(��\(�4q)½�5��Ǿf{$
;푓�������8F��Cӣz���%��f�O��F�e0Z�Y��V�Z��m��d�lW�O�L5?�2�,C�Op���h�R � �g$x�+��E�ۧ��E��<�gH��?Lӡe;َ���=�0Z[�G�0���-�!J1EG�Rb�Hy�+
�$#��C$�\Y��*�i�5��=_L^��D*"/j�^�}��[�K�HJҦ�Q�Xf��i=7�3	���۴
F�Fk��4ݩ�҂D�(QQ�	$YJ�2:��!G$�ɛ��r4J�=��lc[�v��5�Rkѧ���ۋc�i#���?��X��#��CX|o?'f�e��g��ŕ�����(5B�R���2�h�K	�I���$�C�7���G�{�#|����4��'��^R��,�O��>\O�L0m��5G��	%3� �`�ٙ���>��S���\�j��%���:O�m͔+�ܢ͸�c��,�tBK�}r�>����K L���_kKKk�N��ژ`������Y;�aܴ;f��h�d�]����V)�H�/�49���TF鸃�7��,�9�Hh�6l}<#Xn��p�:؛����%1t��K�����m�N�͎����������ľ� ������-��y���[euQ�I�d���LT<_D%�����3��O����Le�^f	g��&�6��<$pu�U���+@J!��7e���x21d��CV�c���Qb�~-w�lq�2��>�q���O�h(�rV�2�H���s�����R�'�†M��L��3N�4x<}T4�n2�� �p��'�q�D���~Ό�#
 vxrv����>7����#D��wS�Q]��(�P�W�F��B7����8�!�G��!��#��ŝzH�җ��-�{�V�
� �
\&����s�7�Ʌ�č� �U���u+���
�R�7g�|o����rJXTGyڡh�&X�n>�v�B�NZ�c�h�SA�)j{��R$��Yz�z

�RZ:����O3��m�'+�����X�Hk2�:���H�;�=�h���j�q�z�[6�&�s��w�.�&�9_��H�W�@|\�,��j��҇s��P�^��r}������:����"���YQ��\���kr�($S�5>	F
!<�H7m��ٹ��H����H�I��D����N���K.�X���_�e��ka�zu���h�`�[O��F٤���˟+����6C1�����=!�����Ӎ��N�U���B��
z�S����iP��;�M��Zմ��3�4/��y(F��7\Gj�)$ճ��T�ő�ܬ���#�S:U	F[���%�ݫ?䇳��SA
sU�ک����?|�k&?DaBT�y��H���z��$e17�=��P:OY0���&���8�[�2\|{�BH��;��8�ODm�9;�C�zF~t�/;�F�j['X���rC�:�6D�?Q�;���/�������r]�-�j��}��pD�IQ�u��x��2�Z�����u��W��l��1���4�I=_uƨXmVj�
���0T�ƴ�5�^��r.Cv���^�3�����n��uK��/�>�ܬVN.-x�|t���J��s��r9�=b�¬���R&}�2�`ˇ������~e{���Ύ�1�"�Z2�E\���/O��A�{ᢚA	��x�PO�9�_����\�߭}�R�G�/4�m[pW��{q��8U�1>���t����v�:��P��Ra�9p�(dN%�X��l+�Z�u���$��=��	�2���/@�"V�QLw�0�h�٢A������1�	����u�vbvE���*B�Ly?�^M�Q%,F��LZ�돱l�Δ�׺[7V�!ɯL���W�2&��*��,t�j��4Ԣ�ؽ0�pH�x���"ԥ7T����=��:��:>�&��۞"�>�!�~� ���x��T�B��8�!\��%�e.��,�(-�ύ=��f�C��΋�Kf;u<��BX�B��Φ[�sP!<xb*�g��
�BHK!�B!�B!�B!�B�=8�mUUUUUUUUUUUUUUUUUUUUUUUUUUUUU�=8$�/L�/��bǷǞIEND�B`�admin/images/upgrade/layers.png000064400000773267151213254610012563 0ustar00�PNG


IHDRn���W�PLTE��س��aia"�ɪ��9KH��|'*����E��f��������������������ߛ����������&�������������$5���/,=����������{�ۍ�޹�������p�۾��DP����ݮ��5F��֎�͞������Ua_����>ML%45�������FUQ�����\��Zhh5=���/?=}�����JZ[=H�����++,3p��@P;GALY9W\-PV��coo���%Ta#)lvr=bgO��!#���f�ވ��-\g������x��.GJIZ��_��h�ٷ�ړ��&�����JehQ��{��o��C��Q^QKnr����7��!=DX��n{|���������f��~�Ɂ��h�����r�t���w�6��5�ܭ��%�ִ��Ty~Sd���[k[[k�ð���=lva��duf|xm[���ɹW��q��cwx2er!cuE��Wqt*kx�{���Dv�tocPNCֽ����c�㢝���̘�����{��2s�`ZN��w���R��������������jdXfjc�Ձ�Q��=|����ϵ�b��z���Ϝ��n�����5:2���˽�n}i���I������ˠ��r�����µ����B�����S����u�����¼�����G��m��������q�Ŵ���|i��{���ʫ����������}�pM?/�pZ�����x6+ ybJ��ifN8"�tW�$��tRNS-<ZeLow��˷���Ŵ���\B��QIDATx�������`v�(�A � ���K>$�Հ�K�_�em`���\Ծ�V-�sU��9k�d�˛�22k�9�Ǹ�ǏaOy8/"3\����߫��GG�'�+�K����E�m\�\;�VW_���S���>T���㺑q�c��r�a�7�
q��BD#c��(N��yP&T/�h�:�����Rb	Ӕ��(�������C��j�AIiI�tK�ײ&��A@�TRI����iȍ�4~�H{��6yE�9�ez�<EJ�͡~)�|���+�7|>��J�Ĺ��6�%��q�7[�^GX��^,�ȷtTr[�7�4>����ep-�8hI�z`�Qxe�‰9j$σ�=�OK)�܅(f4gE�Ty�~k�~ɢ���Ej��L��MEJ�Bf8�ɗ֦����HB�8E��tKWs�RX���3���rF��_�h4���e7��7��NSo��mܨ1�(�([���� �Vq3h0A�]Y)l��n���*� !�$X������|߽�����"���{3;�)��\�{�)w���}�>+��oj����5܍��W�+���r�֍������&����n��x����&�﷗�y�s'�ϓ�lN6[�n�6��|4i���;�����C�!+q~x��X�~��cE�ͼ��*��T��i5]�)�|mq)�IrJG��b���T����.��ES8rF�O�_�|���1|�X<�5��f<O<��rc��X�YYPPE�+-������R�O�u��ﭮ���u����A�/�}��po�d�<<}�!��u�!tC5�C\1
�fB�ؤ��U(b��5�	�6�f$5E��q����]�6
�^j�1���Q
��F}�[�&Nȉ2���U'Z-fd����.�L��K8�g|��tNoPY*V)��#�RgJ�?��A�F���J[I7�7�k�yjo�I��4da:�$���(WJ�QY�E�#���d�3�5ٔ-����ռ��rn�)^�Dyu�t�	ې.ߨ�mZ�yo�Y�f�B�oꥴ�C۰r��|�(i���p�L�G�k�M��\���X3�o(�ԛƙ׍#ÀG���j��@�A4Z�-��lؓk�3�qF�8jg�w	A)�
N��-�
v��֛��i��7���(��n�n����r+O7��I���S��Öq��C6_ҏnI���,��W�;P���ΰQ�`
ݬ���B8V{��h��B6������^.�!V��j�dװ�iZ�
q�5�%�,�FMZ���op
%��l�q���+3vr�{�c�5�a����B8R
�k�i��$�
l��Fv�b��#)˸jr�
��)S�:G�TC�Pf
��N��8�-ŨC����r�ts
1ԌT�]��T��R4tp��"�U`h�N�B�ĩ�&��Q���t�N|�� ~�<Tc�I�8�J(�i��p�K�����uO7�Lӓi؃'��r��i��l��6�]1N����r�r�P
I�Q�f���F��ݪd�+�
i��Vc�Wg~��A8'5!�(j��B8�dC*�3�`�3�cE����r�=6��w��?��'ǧ��ds�Z� �m�����O��M7nۄn\6~��E�Aq=xزU���H�R��m�!~g^�v��N��q�᠁a���J�غ���z���ܞ��&�
�x	 Ҝm��qWMę�I�N{��e���ƈ^
�إ*�7���$�㗩|����D\�Y���NJ�ی�2��f'��_��i�M��C��"	�%P�)Ǭ��,K��x��E�+j��8/�N�q�a�Y�1Y
�J�O�F�A8�7��.Mm�[n�/����B�|q�k�Ѩ/L,|�x5(�.���ԝ͊+E�w�+?�0W������H�Er�����,�rq� ��rsQ\�������C����:]U��r�NUWWwgƏ�q�TU����Z!�2Bƪi��Y�)�7>�:���ժ�z�:S����7tZ��n�����E`��(m��9�G`�MQ�
ް�������Hˢ�Я⑿�Q$�)p�(	bM��:���`N��Ǻ^`H��s�NL�XN��Z���빴Cx8񧊀�?�[�Ԩ�y�WJ+����9`��єF�eQ
�*�l�(����a>u�>�o�"u�'ni�����g)�!v.,��S��3%n��`M��IC�*2�n�P
�OM�aq�;mg�cDU3�X#�!�6"�u$��8$�xJ�~��[�&�Q�$�J+��e�A����V�#��s7��z.�Mt�s��CN���׭)YX�	�B��F�%��/e���1���^LQ�Pb:`c��H�M�Z1	�8O2iʆH���qp�Pu�Et�M����l��O�(k�_4�6���=J���#U���nޏTqF��	ޔԩ�����ĉQU>~0���~��q$�Q�P�ϲ8��`��Z������8a�
*Z�-�C�����k1���Κ��0�.G�"�k[�^��b��$���i#���i-�����R�z��q�`�)��'�1� �\!e*���h���$�<����:�ql"W��U�?JG)��/�Pp�F�h3��lj���8k\�'�Xc�ɇR0Ve�^��8���S��*���xCs��*v�x�� �"�k�F��T��G7dN�-�����B䰠�
����C�fM��0&tKڰ��q�y/�9k��t��_�v7W	Q�`J��+ڹ�C�$�F�/,tF7jDž�!�y�:�u��
7S[��c�Q�b�S1(��c �� ����Ƃ)�5ѧUo�gR}Ƅ�����?%a�Xq��n@OqPU�M�T�
-TQ��aME��K�75p�-�"U���ì#q|
�5�9I%!�P�U���Q�P��R�
6�06)v�3^	X�n(Y��ꀪ^�'��Kx�nW�)آm�d<V����j�j*b��2f�G�*�5L���Hp'X1��ǹs�7)Q3�e���K�R������wZ���?�<���e���*�Ei��d��5��6x��o�X�S90 -��!�m�P-�Տ7u�&c
�:����b
a֨�2�Ԝ��S骿k�b<��� G�90�:D��a:��B��c?
�0��ɵ|����0��xKQcME|��э�a���ݿpk�1��7��!�b�0�F��Mz�P�q#�$N��j���B)���a�Ŝ���7�(Ӎ�#�I9�*NC�Y
n�I�z,���G�!=&�F��&:W��	0ү��d7
�S;�MÒcГ@C%N��èI�x�]���[�<�)8��;n�gQ��o2q����qU͜:{�^�:�nB߄6�D�rŌڐ9D���1�ҏrdE�R�5�f�)��FU����]Ũ
̠�*�*Y>8�-s	kbȔB�-�쯀67��_��f���cW��N)N:�CP�Akm'��]�*�	YB0�f�5�9¡Tl}�ԍ�'��t?T�L��dϪ�F�z��i?	�L�(v��
��ŝ�#)��/�MSk���=��/��x�\.�j1�>ܜ�����5kzwK�ih��X�	�I�R��`M�x��:��nb�f�d�	�P���\��g��Q=��\�3�Q�
rbj�ZA��p�cWɚ5ihp�|�f����aC����@��ɯ���R�Z�Y�4t��~����v��Y�@���N(���R'47q������i��#���s��&�=�o�߱���h�]P�;���Dt�+bqX�s�aĠ1L�^�o.ISO^�K
�5�AG�i�?�@�+��!���t:4�963E��`N�&�M'hS�`�3�8Κ�N���Ie��v1p(U��a%�h��fC��a��цN����;!�r��C�pT/��7�B��X9Ϭ�[4�Y��F����l�c!�,)����H/%��D<ST��%wX�jŶ�8"��r��_w��ccc�1%��Tp��嫴M ���h�7NaF�'z����B֠S�p-Q�gA��i`�0��GO;]B<�T����	s������<��3�a�8�
@���R7p�<q��C�7�"�n�vU]����ʣ��@��m�5��8�9&m��?�$��e��9�M0g�C,�+o�:��e�3�9���F*G
됢�%ibh� �3e��Q20�
�e4�3i��%Y@R�200�eтD�"v�<hi�T)ҙR��Z'���,�٥���;���4�y�ƣ�ql�RU��iJ�9+`�B늽����HT҃�U3��Z�:�馉�"�����ol��ø%p��cD�k���|���y����n�8꺇���	�ء�nP�*�3,V�ȁb��f�X�8��O�n8.��@��&�����70>H�6-
dB���h9p��	�X��6��Y�s��^,���F�-D/pIR1z�CK�/��G��
�2^�uFU���"%Lb�H���<[X<?��� �7vH*h�ώ�jg��̮QE�Z>3Gx�Y�3����b)�@=�3�y��6��X���ď+X(0#�l9A��
n�NT��6,��k`5��ጬ��7��v͉?��ǿ��7��O�jϔ�*X��Q�Œ�+2�8h�S�ͨ��k*� ��zE�xe��uu/Б%7��Q����2b�.���:!��mk����S�'�ZQf�$�V����z�3M3[Ȁf�a��E�x�Һ������:r4�^@FO�Q�F?$��|	�q @h�����m��e�5w�Џi.r�7�`�-������[g��U1o�֣�z���>A3J�,�����P�1�Yq�	l�_]������qI�|5��.��2�j:��
�?�y_���@�"OL��!N!'�(��6���o�4z�n<s�a�,���9��@C��9C����)
wXQ3�(/_���r{�\P��d��졈 �V�mv[�J@����g�
���~��v4�4EK
u��%\D�^�
(��/k��橗؞�.mjk�S�'��V�A>�r��֩�t�h|1x�O;1
l�!&p�d�%��FMIs
kX�<)S��#��IJר�FGN`��A1K<s#��l�j+����؆ˈ'|���|����˔ֿb��j�Z����n�X���w'�(���6��T���0G�u�b��&��J'��u���HtC/Y�nj6񂛘�s ��;"Lb=�#����5��"����E��h�J����J�[=t����D6��A�PP�O�xܐ6F��5�4i�0\`V�#���tO5o~� } �+����*��>_ �>j�d6b�1ugwIKo�^N�/��9#��h��b1�Q��k�C��|}^�<w��}�D�q�R\H��M�W���#��i�3��9��;Y,y�� ̄Z���<l��w�����\��b5���K���8]e���i4�Y�X�'��`��^o҄�%o�Vr�Tr���ǎ�t(�O ($C18d4b��f��1C�w�@���+���G�̠�C�e�h�ʉ���?��Aᨉ� MPB�f#G\#��l�
4�č���)̱�%��6�_ЁO1"qLfq�T7!,8޾��D
k�rاk�ek���??Ð�?6�UY!��7��T!��
+}"hc�}VT�|ٍgn�B�=$KD8����6�~�fptk�D�Q3��������tZ��Ŋww�bo�������B����n����F7�e�#�2I��%`���R��3��M�6�-��X�M��
�I�:U|�AS�C�p|ŵ9T6_�b��!Z�%�	�d@w��DΞ�ZFA�^�dt䑑\�9�b�B�)"���r�l�"���
v�k��f�N��?�5�p
|�C���o�-�qP��j���aM#m7/��3ç�\�	*�vIhm`�E���ɕv'�X
����d�X��?�
�!lr��]�����b�[��gX���<D�&E7
�ٶӫo��v2���X�-o�F���?ps��D��nഐ�"��w1k�WkV�2�K��S\+6qF���cԐѦ���
ڰ�SSr�[��`�H1��Z�$R�p`��)1�e�	٣`�VG���	*�
?kE����m��JO�7Μ�V��pC�=lG���z%:n��j 9�T�L!��X`�C(3c��n�l/8�i�lA1q#��K�El��o��.�h,6������@�v'�:��Y�j܁�)���W:��l�����f4_��v���o���~���vrRG7�Ĵ
*��+�R�npR����i>l4��N$nh�mX2���H���A�+��ħ6��A��szJ�𠇂5zݐ���&�nm�A�P�12l�`j՘���&�m�ߓ5�fԀ(�nР2�5!�HB�y��RϾ`~#�q-ʛR2���)��h�<1H
S�\I�����a�ٙup��5#����o7҆G,�!�p�i���ș��7�/(�Δ�\��3���M&��Q͟p������ɃN�$���M��])d�T<氩���%�n��	o>e�k(U�u(h+`S�n�ˁC���:
TJ�w#�m��d��)�<��%x�'A�s	��k8$�i��G�M#����EW��ik0���;�-%�9[,�!uL��Eq��$L��b���؃ջ�x�m�$�8�8��>j9W��^��U�|��ާ�,�	S�����fc2-6O�t�T���)*��5zp� ���E
�=���;�D�V�����2�v,�щ)7u��6�g��T֓f���g2���f m6���M&�l*�xt�Nn��~�F
�>Ėͧl��#�T�9o9J���gh�g��3��#j�o6�S�pA{4	"�H�
��YȲB�eA��(�����ԁ%��'Y�d���T#�5�Pl��It��e���Y�MǾS"&���Ų[�+r6wh�q�H"ޞ�]��7� ���
��9�Z$u[�*�t�x˰���&�݃��^eћ�sІ[�����tM����~]���?�!�9	�n"�a���)��ipW��	��h�8:f<9���D��q�t��/z�y����X��X�5��
0���)}C��=�rdq\�'V����{���|������i�(F*�Lh��3��a�9s9!��u��Z2��$#R���U���F˗�e�|\#�.OF��L?p��^���Ƴ�~��_��%�Kpߏ�F5vd�^�[!d���;m&�^�U�$�ú�����c�7�o\��N��a�_`V~1��C���'�&pc�y��SDM���,)~7E7DN���W�T�Kl�ٕO3�q:����b���qS҄6\n����k�3��{RA���<�pWdp8�����(�!t�9�&�=CoӮ���9���%��
��ҹk�����I���v,aLEc�w�c(
���!E.L>^D�<��2
��lw�};+��A�*�ҙ���G	��>[�w�7�
ХX�ci�.m���T�||Ӏ6\�=Glc"f77�!�ܠ7�
��=��-S�ʉ)��n��f�M�q��M>M^�n�yZ�6�b	⩆M�F�6/%G+鈅9Ҋ�C�s\+)�|D�
�XS���>���؏T��
�O�յf�%�i�9C�I��M�	�ޅ�6^�\�3V��L:h�STXLHP���S�Ʈ_v�v�g��]��"t\����K�F�45������dX9L��M�}j4���c�J�Ϋ:��?W����t���y��1.v�ŰF�2 ������uI�����(pLYt[�lf�
^�-��f�BY6�!T���6<l�ZVɛR���7?�эs�zr����F�X�!r"�����f�2�|��6yƐ,�x.�D������f��!5l4��PJW�W"��0GaC��z��Z*kD�̰-�n����L�[{�Vth�6Xn���Rn��2̶�B�^�����`��d�b�F��i��W�V���^ ���>�rf�����W�
���mb'mrI���t�h���`6���5�/`��¦���pN�R��nb'C옢S��n��O�r�aN�p�X~S��w����Q�l����Ե����<�C�yJ� O�-�����:a�����t
�Lb!`�t�<Tt.2�E�(N��5Ԣ+���
R����#6Y�A��$��C���
L#�bv���F�Ҳ�����A�l�eXp�/�>��8囖�Ka������xY��6�\�M���fܲ�EB�K��.��l����wlJܼz�ypٛ4N�z�Z��T7��wY٢�	c�����J��^�&��覚g��+up�c95%����_/ī����_Ԙ=���|��3Q�X&�Mw�&3����\�5_��{��\&�d�E
�A����Ř��GR?�h·K�#�%��Q�̕3!�������5w77x�=I$�>�[�7B�ww�rו���n��KJ���t�U�o�k��k��O� EDH�8Wl�V��ǧV�e�咅7��)�����j��JZ|4� ��U�(jj�<��&f�\�u�R��A���z��n�"'���>��h*���7Q�M������X\��}�
�u�f�
Є��Z%��og�M��!Nd����Cʰr�fvq	�)�-ε�XM�d	-h��lG>�]=�O�V��Ö%N(+2*k𝂊t��s��\�aԋЊ��7�B�!��D$�N��Bɤ�� 8(F��BAĉNDq�ę8t�\�y^����e�]k����n~Q������f�ܜ�2M�Q��,��%)�pζ8���d"�Tw�ޔ��K���D��oc'��)��1���N�!��M
C"بlw���$�Zݴ��f<}��ݖ�y�~�aj�P7N���2ήz6
(|�+u٘��|�w�]�q�U���P6@���w�7ݑ)�Bj˟�,�$p�̩�6��z��M��ZΗ&��%Qš'm��M?tx2!M��h�-U?N�(Ǣ7��8:��x��Z�%�D�:� �ou�&|ɂM����	�٫���d;�1
9h�-eVҟ,B�c���A17�
�dp�(��|�72�<F�B���p*!o��Z\%��HŗX�-tT�Rs"�P�ǩ�T�Hn��Ӻx
ŧ�jhBBLW��j�&q P(�۵jm�M1�Z��̤sb6��L���Í�f�:Rwn��0���M��{�?�!�S�������I�Pz�&F��6E�ͱ�.qT����D�#���J�6Ql�ı�h�Ƃk����8��TI��j>;3�=:�7u�Ku<��HD�''�������Z,��D���(��l��U���E�B�8�[
�s`����/�0&���i�6�$��������LOt�������LN�R{Vp�E��i=_�4	�x�7�y=Z�w�,�p���t5�d��p���/�m������	���j\��|nX��7ś�Zj(�=���nЦ�6�kڋ�J�11�y\�*��\榉��"�o�EA��
9���4����ta�U�1֨�3#V����>��ܰi��do|8:Sxئ#5�/F�7C�d#L��p3�i�ݩ�PM�4��t��#q�7*K�(�9}�jl�Q&�b����j���Y�}2l��G'3�pq{�-��7l�`��<�WF3�v����:��q�-q䙌3TF�Ԇ
(r�;�1��V��7�ψ�	����!kt��O� 2Ϣ�n8eiB���R�ll3 �S��:��p�<ؿ�;�f3n�
�"����I�mj5x�*Q4ySI�
o�(Ր��M9�'S{�*x�8Q���_4E�x�ˇ��9"NB���Z"h}W�sI�>�|#Q�FXЛ�����1�x��R�V�34��B;�N�}^�M��o��"\�����=�O��B2���@f��<(CI�ß����.XıH�锿s���sc���6�N��~T�^�N�mn}_-���`a)�
{{T�K5��s���(j#eB��U+�9�s�{�n����M��2��S�̀�U��8g�D7�&�u$l�����>翵uc=B���d�x���<�)iS��F��O���o�8�Y�$��l�Fq��n��h���hS*���n(J�m����T�qh5��F1`U�YÜ�M�QDZ0��7.w>y��&T�rC�1���c��.����W���~I���f�qB_��ȣ�.�Œ̍n���)�k�����B��D��Ϣ#Gl�h¼b=��(��
��È6+��]8,���<�⳿��	�ď��Y����]�#�˟@���qD
�=IA��EȠT(�e*�����h�XP�M/wS�Mc�<e�恎�/�w����Rܦ���������n�+��p��L�F��n�,��9�'w�T�/�ڸ!k�̴��Tw�l
��+}�s��Q��Q���n�&M�F��=$ի���'��G��y��h@j�`�u��V!�#�̘w�h�F���'2���{iilD�u'�v�|n��6秳���_W���j$)&�Mn�F�+�:�1s��h��l�����*�G�Ga���	Q�\��~�����R 1��K4���(��oLo�)A��/|(����2:4}���-'��[	�T�&�N6q����bd�zT���?�����B�n�6d+��27��C�k3Y��F��j�lZ��M��M#|��nJMؔ�8�ΰ�;X����th\���6��y,{zy�ɾ���k_��
7���|���$����������A���N��*ڨ7E��_��;szJ$������7a�t�m�ۍ:I���8�/.s����|Ξ�����A�
��t�憓=�~����K(NIJ<�A?`ొѦ��M���⌽���5ʷu����Qq�!BM�8�2r�*O���3lc�3Wt�g�����f��J
�^��3������m�V�08n�޴�Ml�W�Y{�j��k����)�	�5�f�ܐS��:�F�7�`1ʕ�&Ӈ6����ɝ�N-���i�\���zKF��@c�ˆR���h#��Iw���z�
�yj���C�tFq1�bj��w�q�3�"ڮ8g\���$l�t�c���C�9f�M5�~��(�`�ڡ�n�\��Eu�$��E09��S��%7��+�'�>�I�bu��R�ĉ�B�Q���)�ŭ\M�a�j�f/h�q�+A���$C�V��
B�P�0�
(�F��8썟���7�'�f.ڰ*��5hCm�G�7�܃���پ��g����!ub7�S��D��I{��nʼPd���qA�en��ܠ��){�ֹ��Kq�G�q��߂��ސ=Q �b�/ƾ}!�7�\�A�Г�1A�'��n�>L7J��:8�^[n�]�o�>S�D��p〉qj�����z|����Y`��-O��s�!̉zX�LS}W�9
����ޜ_�$�a�
\\����
�À�6%N�������4+�g��N2wnK꬚��M��$�Q��*��HT��G����bzYR��N�g���;nr:�9zn�Ƥ�NJ
7��
�a�6<��ٲ�T;X\�A�	�6�7���AS����Q�Sj-o��J����o��T�a�
�q��Hs.�W0���=G<���(
ƃv6���Ž�n��ş��6ΞX1Eg�Iv��f7~*�פE"+c��ߐ$7nl^�}G^G���0������wشe܌_�h���N��rb[d��1w4�f�?Z dž������p�C�k78�L��[�e���Ų+SWl��
l�6��}�&�b7��j�27T2��v�ܢHl:^'�\�!��ܸG�#N�艣t��w5���m�lw�x6�n�{�,����w7^*�r7/�ě��o���"MчL�<j��Z���Ykn�58U���8�4�9_"mu��a�e�c�c_)��G0��8�ŧ�e��tXB�
�t���Z=�{|�'�3b�|�8��E�' `i[~K���<}��Um&����	T /T(�r��P�cdjF��"p3����%΅�|B�o���4�FV�G��b�{�!X0Idr.@��m�G	
l�H�ջj��I�0&U|�](���6&�%����/p��~[W#��BE-�;en�_��t��oɉɲ<7s�"������/_���;h�[����f{�M���(��M�b ����i���m��P�'�l���67R�IS���B�aYw�zW8�V���Cv�˽�8��[pI������/հwI��:d\7#��p6#�����SyY��:)����+M��N|�a"��n�9�rϞ�q:��^2�n��Q�I�s[�t³=�M�l�5�EI���D�܈\����B�MN�sR�Uੁd7�փ�KQF��oʄ�(8�qLt�M��<�W34ș��hS6')�-i[��'M��T%ᆘ�z��淚<���?(�1q)�R��Bi��ٮ#`�}Օ
����H/��7ի
��>{#����M��༿��޵���+�s6'h!�@!�^޸�L��ڧ�Z�K����M6�̚�hqoS�Ƣ7�i�ޘ|��Xy�l�嚪�!����{�Ç/œ�#��Tdj�j�xIJ��P�s�m�m���1���r���U�Kg�&$n�^��Y��y�j>
ڀ<R�Q-M�R.�HQj��Y�j��,e9/���Y�l-U��/�4{;�p�|������X6�&��i����?����G
P�ը������?�J=�f#���u7�dʓ���4�M�5D�{>=�8���r�*Nؐ{oZ�h���S&Ǩt����5�|H��~T���	�c:��T�q!'1T]�ՙ���qRݟ�lAg�n����7��D�Ac�cx�:�b���ʘ��b��<���hC�E�����e�֗ڃD���Y�?��S�M���.��ܔ��c���iy��"4�5�
i�ծv�(��m�PP��K�<�z?^�(�څ5�7�`H��gޫ��Q�V�х4�)���&�eCT��5H�!�-?�﹘���?~�kC��n�p�ⶻy��i~��	ӝSܿB�X�57�����TѦ�R�c�Փ"�g���p�g��Ez7Y+��R�m���R̎����?�	*i�M�䲑�����Ԑ?�-��6��Q�G�c6ئ�p��9�r2���[aC?�Omw=���������c�
y�8y#Ks:�/�=�z��?��J[�䀌��šR
D��i�JM�[UХgr0��՘�?1��$2K��rI�8a�jL[!6
M�dn�-Ӹ2[�r��F�)���n�t/w���3�tc7�Pq���
���̍���q۬�4U;Jޤ���j�o6ۛ.l��!���x|>���2�1����0!�09��;�
_CN�m��x��/y�
��Q�OS�	c���(���.�d�x��n 2w�l#�C�qL�7�hD\[��fQvF7�=?مS��%+6}�̝�CZ3tdC���`Z]gi\�Qh�L*�PFfH�����9cJ͜+��ʂ6�2?j	�^����H]��S��O�1�����4��U��?�א�4�p������4E��Uw�u[�<���njŔ֘��s4�Q6���U��6��p�������M^58���ϕB�i�	~DtlA灍;=9::z饗��I��=h�a�ع\��A�"�0;RH���NoJI�j��oԲ2p&���9�aH��Y�t-���g��1Qh�+�0~9���6�h�l��#�����Ύ��XÐ#��*BG	�6�
Z�9Y9�~e�E5�BMCCS;^TJ�E46�Ԁw��R4Ҕ\��uT~�4�t�m���j����l��CfӅ�x.ܸ�5�����?���
m����R�3��;�=�_#S*VE�IwC~�� YS�fp�wXSK�-R\��nH�
���mY܍���f7�
C�����p#��9m�$��J�WF#��HN����� n����Ƨ�zC1�Pe,�h�8h�O�4PP�7�E;�<v������ܙn�z{R�NO6�%sޛhax����iù
O��cj��̍M)�@��A%/L��K�D�
5��Ѓ:�[�>v՟�I�Hˣ,����]l�1�ߋ�h���ђ��y�%�6��V�$��4�X
��屛^wS�n2v�����g'?է����%r_�y��n�8Ś��Mq��7�jZPC
����������^&�%T��4v7�Ԉxi�Y�!�m��8��5��О,�/���Sx�S�aް{/�&�1R��J�"=[Ԍ��p?Κ7%ݮU	0z5w�%�C�Xe�GO/2tÞ��qm����j�dC���6�NیC��0;�2o�bϨS&���w���{�DHޓ^�Z֫�8G���hc�r�X�R���_��0Dʼn.�ib�8k��W�E'qb�V:0�h�:ʿ�8�p��kŸ�?�"��Y���+v�>�j����K�(�8mwm"R\J�t���L��p���R�@���S��?�5ja�����dj
�q{��)@��5�r&A.�i���@�s�1��@T���P,ߴ旾�⩦����fȢ���e��
Q��pH�
�wD"��e��w\sr�޾��"̋�&@�so��
�!�.��K��p"J�)�xY\At���LKRَ��8�Q�2>����J�D+�Qߊ���!5�/9CJQk��gN�Q�k����n���ś;�-+ 	"��X��f#���O?���<QL�~*�Y�pG�	�l�aS�܍'�V�^ބ�8��M�y�ߏ��,�L��
�Ɗ�
E��n��l*��u7��^��kS��T�`�em�:^N{��yb�&8�)�9O�"��!WG
Q!y�K�P��_7OF���l,F��]m���IT\�8�(G���~\"�7���h3����x�y/�w��5O�k��+6!�۶�Wmݣ֠�F+O6�H�=R�9n�]�P�<h�i㙄�$u�"Cc�ک)��/��{�T���L"��mhʶM|4�0d79e]��0�]��ڧǸ`��p� �:0�y����W����L��	ָ��?��W��ӣNȸӕ��
��Fo�����X��ҩ��T�p���`�B]��'�Ǝ��M��}J�ɻY�S��iC��|@��Ƈ�`�a��0p#����8�sF�h)��.����P�Dj��\>��d�.���M���ht
U�Tt1G�?חjxӥ�?�p�6iF�}�F�;�nj�Ɵ&��V���c�.��DI}Fǭd��e`��x��zDj���V���v��;o'�/ݬ���vs5A-���a�7����!1�W�#'�
�;����n��m>nж��g���P�M5β)X�>F�o�A��_k��e�+Հ�QM(�4�����x�xS*�P��K7���a�
\�`�9z:�?�i6�!pJ%�<�ƣ4ɱ�}_��7��υ��ݼ�dx���f�/elR�����@�����*:G��p3�zn��S
�`h|ǝj���N��G&���6k�M�I%kT�Ɗt	'Г��y,�UQֽ+����e�᡹X�ޓ����v�[�ߨ�g6�,
7���(b^@�,�6����c�� �аfoI����$��v7K�n8�Pq�F�ym��Ϗj�jӬr���⍧�M!g͔���7��(
6yY�¹���w_�6HCR�O2���D��%�1d��|˼�q/Xoܤ��p����R>E�Ѝx#5��3�ų��7@��-H%q;�>ڻ@źF�f���$jQ�w��~sg�;R'�6����oX���H%lnr��i��)L6w3�@M��>'͌D=C���ȩ�EA�����K|�l����KcpS3I�l�6���I����Y񮊰#�2fr�L��������݁o�7�6�e�A���k@<�͖��v�晞���V�;lrq��fڔ>��ϥ�9�)kh�f?b7\��P�PS�)��#������c��D��CO���&`�cQg	n$�6#
�cC�ڽ/\��
��w�9�q�32�d����o��������~b�rQp���5����k�L��6�<�0c��*=a�bh�& G���nj(���ޭR���d�8*������߂4I��Փ91'��^Ҟ	�8�j�.=�OҠd���6��)��0��Oe�0,�ȼ(N�&n�X��=J6>��9��0���M�|HJ�F����s
w�%�=���Tg��׸�W������~����:uO
�������{��E�R�(3>�f�������A��ک�h�p7�p6��o.U'S���<�؍�D����5�f�I�"VlL�����>�f���^�(%Qxϯ�6<��1K��nn�\��:��>G��O�wn�D�r��:�|�������B7�gt�W�Y�Uu���i�����5K�7Wҭh����d�F���%-���������,#km����ءc�I�؟���X�aE���mw7M��S��w�qwS��7�ӿ�:]�:��zQu�B��o�7���7ɛR6�2���,b0�h�a(�0�Z͚ks�J�3�d�b`S����Xiwh�$	�&�
�F����or���"��I� 0A龇�֔�[dA�r0<���#_'�T��w�/֎q��hl�m0�ᜱ�1�ƾ�AvO�A���)!�$�/�%%�,!^Y����([���r~�>�q,��뺯�������<��wm���͞��#6�b��{�4������'zTu�%���I�2#�8S�$5��T�d,�>al�Ƣ�S���k_0�(Sf,J�2ҠK.��&����쥟+��w޿��N��,�x��'�u���}R�ߊѸ�;F�Gotڨ#m��z��q��͊G�>� �x���=�Ke����L��Kyj�R�8��x�_{|
ȸ�h,��d��nJx��M�y3��ߠ6N����*�Y�)$wx��j�~QN7֢)���QJ��M	��)ѐ�:4o�S�-���<RL�؛S��������a�В�#�H1*���j�O�T�R���\Q7��JM.{�u��^���a#�&�G�V���iC��������x�'���K$I�1e�5�=�
���a�?�	}F��Na5e)]N�h��vܬ������
�Ĵb�ijj����J���;r��P�&�
�ٝ*�X9����3�F;Lh=�iђ/�b,�9��,*9:T䔛�6BMe�%�]���)�L.�4�0ve��
�yo�K�N��b΂�
�Dԗ��0ࡁ���T��R��8 Ms�)��h�ml���b۳i��d��-��Z�˦�"�G���U�)؄ӨH����
9+�Fj�f�+�n6���r�t�_��q^����y�6�����l�fs�Y
)����l��.�L�N�]F�x�gm[4�=7!�F�� q�����m��n��)�M%�����NT[�*af�7���)sc�h�hCњb<z�b`�!��QI��h#;��1����aOS'���I����F��� ~j���beQ���g��-�n�����=$Ѧ1nP�1&�tW�~Y��f�ާ��F��,��W�/�w��Q�?�hS1s�Y�#`x�E��N�=�����A�x��8G�5����L�MF�+і����]���GRI}�kḩ<}�lm��y�E��eP��6��)}�	EX�i�1'$�H�D��c�8�garp7in4&�*w��LQ伛07ѓ��d�f�^��r��XCY��U\���gjۛ���*�n�'x�p�
��TE'jj�f���%���6��&�CO�`c�ܰz�F#��n\
�t7.���0lD 1�F�J����T?
�&��������*u6lȅ&�	�`n|ŏH
�s-�{Cj�r@}���2����|c��A�X-��tx�/h�09=N�BL�)+�@L�([�w�Ϩ��ߑ�%��.�����i���7i�	�8gl�2���L�`�y�Ņ�W���f��T�n(�3E��6��q⏏}�${^;sn6l��r,��
�=4��"�;8��ȭS�Fm��9�
�hڍ)ƣ�����)g#�r9h�3�N�.�F�(��&e_~����Mt��Iz�	z�e��B'�S�a�a����CE����DN:QF̍��dz�;pl~_z1��c�E;��V��;�R��%^�K��.#����ԗ�N�9��+�Ӕ��/T���(j���A5����(��0�F�K{��g�E����h$�M/�Ө���ʨS
P<��j%I��
�e
�x�8P�|d�_�3尿]q��`i��^�7{4WJ=�qn�1��񥥓����em��[/�}�h!�
6�hӴ7�6o�;մ7��<y�I0�r�Y�����H����5�M4@�Yc
ܱ:�A΢��W��an����D�Ia�;���1
qp8�T����ڨ$�b� &Ʀ���_��3~sw��!��0�B
xS����P$r�ݫ�I�E9t��P?��S�w`�"ʨ\NKen�.I�b�u<�oy��.U��Ÿ�C<*b#�;#�D�H�dT�g�8i(&t9k�Ѱ��fJG���lSl����dx�;n����z��4�Awí̍�ǀ�������u����y��s�褑���-�y~՗J�,\��Q
���l��Sĩ����|�F��=�g�-Ŋ�)�
�$���D��r�հ.|(6�8��V��GSt��7�PP���k�f�f��CimbU�A��R�����L�ſˆ�I4A"[Ve�[������$��f���;h�h�a�:
+;~/��"Nujj���@�[/��SZM!n�"ˆ�΀�[y�66g�[F�G�">30��'C�%})6<T���Smi&�	w��]_��c7%�t_/#S�Pq&���m��n����#�?��Y:v錧���j/�"�b���+L\�Y$�=P<��l(J��
�5-�4y����p11n�1���Y%��2��䒆��&:b�L�o�6Ҕ�io�� �{�cs��hw��hq�W4�ћ�r��W���B&���
>���C�`R�3O�(1���o�5Jw��6���;�]1I�{�!O_qy���0rs�tST����T�u�T�+�@x�4Q@V�R��|+�x�0
�=^dc����7�B�ٝ�`#o����xc���[��064i$`c��ww��M����x���G��z����X�t:s�3Gg���N}9nJ��
�Y9�&nT��Ŕ�ѩ1'{R�`^g�H/c�O;�Cr[3N�G�ȑ�
� �b�g,fS��s�eV?�n�$��q��ȊY�:��p6W��`&�B���|cj�<Π.2CCC���MBC��Zu42�<
n�߸̶����R>�����2���q>U���Mg��SܕxRn�S8
@	����
�x�^"xl�t6B�%L��
w2Rü>pcM���C�d��% "�
�/ܡ�x�8@�Bž���@�F���6�kt��^F�Z��L��
*�`p�`��Y�\�H�_�|���nmZJ�lp8�&
�H��U��P��O����?��u�ױRz(�֭
&�iS�8>ۢ��j����>�,�q/�����s��6��M�h��⍼�Ӧ2�1Fd}��&�:ao��sN��('
�_�;~[��*�8w&i���ő��=�	�l�<ЗB����|��L�T�N�v7��ӂ;¤�jP���p�:
�J��:	�ICa*긯�2�F�����
�����R~���-�15Ro���E���ᒄP�2��l���nHdw8���7��'�k���_u�-�*�9t�T{6��Ȕg��bgM���-����r�F��6�Mn8cJ7��'�2��1��Cx��"
z�
D�/<�0�@�}6�U
� 'H�P9��d GH�&�3���ݓ7�b�%N�J*�!�Å����xX�@Da%���l�
�A�F	���W���T?�S�F�CC�&}��q����TnH�4�
J�S��WC�c4�	NфLz�:���4N	�8_d���Ι�Ŧ5���b.��*Jl}'�$j+��B������۬���k��6AB�dpc�����w���~�=��'m��mr6�ތq7an�]�&i��v7��'5��A�6H�I�;in� 
�*R=!��"cx ���������T];υI_O{�9vޤԽһIڝ8ԑ���)p5eh�6�~2����;�6l���g6D��e�V{��zQPFU(q��j�z���4}Mň��MA#2׭~7	7ʦp8�+t�jz0��|n�U*�4(`��A����� S�V�l��Vd�(��?Q?jCNVj�B�?���!���jPc�~�:p7cc7�Dn��	r�!t3^g�u��/���~�^���x�n�7*BI����Fu�F�&�ӌ�x��8{_�d07����t7ao��{�jdF���p8�io�i�p@k��ӳSS�I��xD�8��c��D�(�	�LRL�U�N���
J���L;��!�0�����[��zf� ����+� �!S�C�&�~�N�E�����45�ت|�!��X�:Z?D��:^��o�R�N��q�Z���!�-A�<�ò9�'h��X�7bk��x�K	��y;�k�{�h^��z:)��Sn.������)��5S�&nMҐI~<;_r����r�;7�.����;��@n��\�!E���W��Ki8��~(kT��K��_��aÅ�kU��h����M��<���~}|���LR�	��7|��S���w��썑��ι�tA��q�#~2_�j2f��D]�\�?�vN9��h
�u��6`��iSz%�C�������!(W�W�r!�kR�K9�G@���4��W�l�GJU�)@S�L�Z�g��8��]�����jh�f�
8B�YT�W���9kv�����
X�g,s����"#��0������`n,�����VӚ$⼚��>~>�1�M���E���]��J5��Ym�x8ȣG���,�t�9ƎP���%����z���]�� �I
���l�7�\CY��.����՘�T��8iHP�x3���`B5�i��
fl�Ľ�8F�:Q��m.�	g#�`n�4v<�[�F��^��$jp3�k�&�V����QҔ��L*��9o�e�a% $����8�/H�r�Hė�L��)ˬ�V�MK�rU)_���Q� ��Wڿg�t&�7���|����+�p6��Y���q��i"�r7{2��3O�����OpS��C��]%����mۯ��X��vf��?��Y�������Ͼ�����&5rq�ح�s'�r��g�e6��썒�tw�̪6�IG$�T���1(��6��E�����B̍L%o�:����̠�S��K=5��U��'l�&L
��?J�%�U��g���	ڬBFp��xX��P��"¯��G�&c(���e|M9˺L�j���&D=�9k�@ �G�v?`����'w�l�{�/[Z���g�W��b&<R3���6�,�Y����������f��n����S4��ʵ~4f��/��/k���7z�_�g����&K�N��I'��M��U������v:�N-,��[�Ӆ�#�=���O��ᶅ_;�����E�(�ǧ��p��rՈx�8�Y0q]t�rwnkS�2��j�܍>oTI,�4}FO�p�>�[�b�QaE�+�&�D�fz@�b..zV\!�A�u$�Cch14kǰ��!��d��ͣzR��6�r7�Q� �D�C�
6�´,�T�UU ��M�\������rn�I�!��JarTHT�&�.'n�\�VW�6q�p����(&՘�?ظ��b��ؚ���4Ơ�V��Slc	�������LU�j���W��ҦQTĸ
�=Z y��35"��s�����ps�1�����y?t:;�S���~�v�!?����ϝ��r�!o|~�1�t�.8�J��B������R�f��t����C��
IJ�)	��~6��+ۤ'n��K�6R�Cw
	>>��6��7�q;��or�*]�7���g
k�!�/�J^�6�~g��<��iA&�`�ݔ�Lk�;l.D}��rL���Fd(������;��H�T҆4�V��A�7g�#��k�QD��P6f�7�9(x@ĵ�P��}��<����`L�3BW��l�a,�Ƭ��͈y7������r�#��w�~�P|��c���%n�N�b�m����~�<?��K?��������_'�\��呢ʶ/tv8�A�,�ᰩ#�WU��ŽlN�oZަ�I��1�,�uJH���j\{�]�<ᚍcۤ���L�g3六)ݍJ�Yo�_̲��f-v��=�'Z&8�њ 7M��&�_�@C��M��
=)c
�	6��6��F��R�w�g9�#CQ��[J,T����qXgLΡ�M"��Uu���R}�MAt�ȑ)+�w����5��"jemO:UM)���M0st�>>���ݫ�S�-�@(�	�^Ⱥ��
����F�F�<�Q�f�Ꮯ֑N{����kE��'_�����}�p����}7��ͯ�����z�n���=I�]nN{��s� �|+�1%=�6��.��I{3����M�8p%D�ة�-ؙ���mr��3���az
dQ�b�7X"�������6p��w��6en�����$���j�2g/��O���P�3@"N���2���N9����M�F�A7���k
�r���t�����o�����
���r�E��<ُ���0ز�F��2^@�Gٲp�b6�@����f5�V��a�i��eN`����;��Q�!~-+3L��3ś������

�oO��onI��4��v�!����v�B��؍�����0�O"M���.k��]G|���>#��.�uv8p'�ҶV��6S@�@��[��U�n��I�qڔs\�Ґ3��ـ��6t�X�]rDu��F���o�pc;�ȨXʉ��o���qH�H1��7���08>>%�T$�b��sA�g�1�� q��.y�d���2�#�%�)�1��W�.��
��aM�F���R*���Ak/�Q6�7�ru�L˾��P�V���hJzB�<��cX��=�E��0�d�`�oC�1&N��h�.��tk��3�0�Kw��l��n~�͚�U��쒖�������k����͙�o�Y����Y�r̳;):�й?u�=���:��d���x~�<<�k��^&(p�qmK^�i:��*5ZL�0hS�)S'ݵu��'�����䀸rȉS��Α"L��MTP>A(�	Q3\	{Ǡyga��7��;ǖ��������)��
8މ�˄�� *�F�p�
����p]�%��W���O\�g5���`\�gJ5�!���Tt�D2]�B�"�V���zOR���w�Y�$BZ�/�,�=8HCݜ�,�v]db�g'�U
=�x%t�����n���T;�� y���vY���kK��i��4r�����b7Gq4������n���\��m����c���_;�nÙV��ps�n�o�MʀSC⢍X��n�i��*w�BN���)m>ឦ@B�����L�(�ݲ9�B"H�cc�b.A �k�� �(��Mʫ1�'�M�c��;n�8��b>��_h�BY����S��T�=��!��Bf:Not��VL�h�_Y���P�V4��h�,��p���'冭��cS|�ù�kEdAr2³�3cP�*���i`�j��i�\�uQ�G�?)��?19�w��jF��7ݶ��{�~n��tn:s�c�ݯ2�m��P�ex�;�}��$���[g��:��p���n�ΐ�9'q�
w��!�d.mx,޴v�ˑpr+V,z�ǃ(I�7x�k3�#t�@���.@�[M����&խ��fn`�S&�A�p���&g'�
6Nɗ���F���VT�O�7�Ma�A�U��A��!Zy�%�3a���iL���Qo�L$T#R
SQiD?_�Ea��}/0$�C%G�V��֔�����_�A�7��I��Nb����~�C�
�@��ND��k�=:Ug���
k�Ozm�k?�I�	_:S
��v�m����o]���=)<����
[/���E]t��b�M/�v�}�/��t����ŷ;w���䤶�նؑ�D�T��g���Ա@�p�<)s�<�Q	��P~���q �j���xcǽ��P�MI�7�R 9B7I�^↑$&�q�93[�����W���Om�F%i�:ф�kv�%��N��A�⎚�iq��cr�	y�D��ȯ��[�f/�[�ۀ/k@���z�W��L)]�2lI{0�t4�̌ſ�I���G�m�#ڜ����rl����j��`loOP#����7��H���Ժ��	C�"�Q�hΤ1�P�t����Fp�D̸�[�� !qs\��f3St��P�m�
t��O%~|4o�6R���݈7t�*`�v/�fF�"Y$�$��K%od;�VA&NȌЍ�(��Y�
�]�I|�6�-�mX|񰍯�*��%���94�x��YIA GK!��_���hc�V��л}+s5�r��i̱#!���t�&�%1g���"��h��k�.�Mr�#ُ�A2��6���e��&WV��t���/��%1�hÍ2��M�	�0]�D�گ~��;�{�f���BW+\�i���]��1���i*�?�c�6>���Lu�o�	.�h	��B�N<|(���!y�R�75��io���\Ͽsw.�u}eǩ3Q�Ԛ���B�&M������-Z��F
��$���H���D:q��Dp N�8pЉ3G~?���}��rr���}��k���ɩV���u;�R�!�h1�H1u�6�6�&������M��ǖ�Փ�d���:���Ay����S�BM{�^�َ���=�fO&ǀ�6�J�5�ƴ�Δ�3��h�;��.�Mz�)t ͅ�k�A�D�/9��c�k�q�p�ռy�jڤx/X0df�	����Ո-�	)P��ǐI�(�M����`�n��ۨ�¶pD�Y(���� �c5���!����?���=2��M�m�7�դ���S:�����t\*a�y��~7S���ah�h�M
��L�綾�x��)p�'�a�u��'�����J�ƺ��ec֩u;�;N\�hs-^0m/��<K�q���
�ɀvL��P���䏢v1�d�u���!Z�<bt�'���/��S!F�����yyZ̐�%9
�<�?7�Dܼ�
5���6ނ��xrD�uͯ	��D�b�o�U^��+ϱ7�u/A�բ�� M�k@I2F�S�e"L���Ć6�W���#Sۃņ͝t8'q��ӥ�ׯ�%Y�ɻ�;�Kq�67\#�N���x	y��ށ�y�m�5v��]>I�'��&�hl��27`F�}�
P)�bH���&d��-��f��Lcv!N� 3��*y��[�7m��Kx���:�.�y��y+ӱ��0�L�45�X�\0�LL���R.�?w���6��=)�*+�&�yV	�4s�5ޯ��+Q��ZA���qUY"�}I�����1��(a�mgM������/fw*Pӈ�G��c5���_)#S��l�6sw�3��0#�|�Y~Ss.�g/t"�Mk͚���m��W�Qcܔ��9j��$uD�F�|�����"��7�����'�ֆ��)�7��`M�a��<M8�h,hK�k�u��2s�m�
W����C���p+ڜ��
���ro]�{���fCΑ���<@� �e�ut��E��B��xK̭U��F�6d
ք��DQ����D��]�J`&��6��M�=�픯Y�%���.�|6�ێ��΄���4y�e�j59���C7��ѵ8s���G�:TL�<>��s�lx��dr��j4�D�7!��6I
����	�u����1\��&.�#��I�Ƴ�=:?��F�`#�t��q��L,�mYX�7�M.����S��9�ƖE�qO*w-E�l��	C|�G�L�)yC<V�����M<9w�:WIc_�r�b�'2�L��OgB�Gg!����2m�5�o�]N�M�c���4�z7�Œ�҄�
3�hj���#��&���2�J3e����7���*�k�#���)�jwc�L��b��&�|�؛
����Bh�L���	��хT�Œ��G�Pݮ۲828sw3�h�&b�Do6Swcܠ���[s\�����K�0�]'~�`ܠ���à��qѕ6ÞI���A�j����ΙF�k�$}�>ƅ/��uH��.�v��+ք}�7��Q�q���[�F2m`
I2s�(�����6�?��
!简	�_��<��(���9O1Eo�@
J��r�<�:gZ5�7�ƴy.� '���k�ƨ��q7����7����,�������4m8#U�A�*��UY՜������b�)o�y�(�p��28�u�3Ĵ��4�c#$�L�R�Q�UkDWIsE��6BOμy=h)��(�qc�6�<��rLxp�tX�L�ڔ�y��C�6�ͽ٠+�`"�h��ϳ��1k�
�I��\j��7��M�n��c�xC��dd��ȷ�zښ�bm���@�6W�����K*���u�<�Ƽ��p%T�ƣQ@�L�m`n����������U�;S��7�u�z����Ϙzx'q3�M��y�=a3������CAUʖ���m�\��i�8��z���=0���1j�7��6�܎��Px6
9����\b
R��|)�n�i�`X�ێ._,Ou���M�f���Vbi
��G�)�{�G�h�Vl�'|�:o�h9k�Q�C�Ĝl���`ά#���/-�
�q��BMц��t�N��9�L��jD��;[�8k�j1r������l��B�BY��H���şR���
�kJL��������ߍYC�La9\|4���_��|�K��]`��*�u:6��1l(�VR�†f���qS����1rB	�<`�e����j���Ma�*<��%�&�ͽ8E��܌#~���VW7lj���(psn �:S�E�6l�Q'�4�hb����{�FI�s[��Q#���~�C6��*zCƋ
�פΑv�ԼI�z�n�h��6��si�ZS}y�pj��j›8��m���2k��fM���K�.��|G��R�B­_o�M��&�2�
?����ok�8K���m
����w�nںo،Q3��Y�~D����&�݌:�����pLx���d�P�ně�oln�Mv�NӦݍC;���x�?�&}K�|#�(XfNᆮT��~�&hcCC��R'J
$,Ÿ�?��ak�\琋�K�RXT�qz�H����N���T慎�*�ID���K���ñ��f�q�m�7Y��#�C�1pT\pS�T��B<�ϳ��aa{��%���b;�0y}��n'{R�������	r���CP
���"v38��eQq��q�_fڸ����q�Tv8�	v7��o��B9j���2mb%UGz����z�7%��b��i���C�shk�LǒQ�����,v��|Q�[g��$޵��|?6U�,�6U�7'���s�ŪB�tm�!h�s��;9��L�������%�f_�S�ͩĀw���>&[I�aD����q5W�+7���G5<S�j]�}_`�z�R9!I�7�p�Yk��L.V�U�
��(2�����H��F
�3�JU!]��(�X��׾"F�^uMwćs���Ͽ��_������\qx���dor�H���Q�2y�Y���[�27�$w_
��q`#��0y��ѕ��s�G����u���@��Kf����Y%�"�c&kb�b(�A_!�a����
��X4��
���5ē䣩2hS��S0�#K7w���yw�&NW�6�';Pr7;��%��p6���
�W{��i1�K�ݼ��5ڢ|���Ԝ�9dI%e*�1c<,�^�t�R|�lvlt&�����[:<#r�8�
+@26|c5gM'��cH�R�0(�R�u��f6�oS��6�S�fJ�OL�f��͜��f��8.M�@
@r���h�C�{R�Ƹa���
�8h��_nr�L�K��0��`h|��,�+O��3�櫜�M��8�	ab�6'�h>n�\^���jIr�,X+�g֓#B�u����"����-���n��MN	B2Jǒ�u�G��6P�0I���X���Jq�<�����T�9��L����SdAY%w#�Q���Q��9v���b��}��̷�1g�z��e�ٰ��y�eq����Nݕ,A�
�;=�g��׾��LYI�.�z��6�T��2��Cś��iO��A�XY���2�`�X�Y5�IeP!�8��ܚ�ۊ��lέM}��o�^!��aMZ��"co�Q��}*:E�	�7	pK��	m<;��@�0'��~�]�蒥�P����O��}"�R
��Q$Y�F�(	2�jWK$2��p��.��u�槺��}D%E����-1Ǡ���q���3�o�T�{��-���6��
�`Y,6L����Yrw�%����ˋ\>_�
;���N�J�\�*SAO���@�C�74v�?���L�\�1~�WjD�׹-�{�7����
�n���
���
����0���6�c��N&Tՠ���Q�j����:�o
:���=}�p2iduH��=����9����}LoІ6L	�DG�"C�v��Q���˗L{)nNM�1���z���
P:`)�
�Iܨ��xW�*>?>��9�<�A�Z9A'egC6�q)��A�f��h1�"�X�I�r�A���&���V`��&��qw��#Xc	:j��P8h�j�"
�B
W���s�%�(ٵ��_Z^�C��Y}��9��M���	���f�Qb. �l8���ÿ���?�q�ŀ��;m���rk��)���7ݓ"��;uGI���z9���y��/�Hs����ry����{�'�ך`b�d͂4
��\��P�hspQJs�1�
�_ъ�?���8������oh�h��a�i'�3�����YО��EQ��(��հ&
W�=\J-R�_���Sn�{Qś����@ݩ�<!`�N�&
E��J#}�ފe�|!�Ǟ�LO���BP�%n*��ƒ�==k&p��4J�\O/kC-8�+f��j8�da�E��z󏶫��S�yt��DO�ƺ3�k�Ƥ�}���
?����j�ϼ�뻷����y3�|�)<
�P`m��6�{�X�4����)+���νHٱʐ����1a�q�F
R���'�hp+"���H����Y)e��:ƍ���^"�07r7g�x��
�R���8o)�ʘ
)�8���vp6��Awp"@M�H�M%�ͦ�=U"�L�nc�7:E��`9�22l���a��^F��eE8�"��8h��"r��`ɳ��cȨ@��'�D��ɘ-[r)�,�q�"b�hm�g/sK�����)�1������
�I�/)����z�+bd�C{+S4i���o����?~�����>��k?��R�h��f�C8�{��U\+ghM�4hL!8�Em	�X�DBY7	�p$�桲��
T��#	*���:�`q`c��Q/��qx�I��뉺I����2c5�h�=��X/1�e��żBŦM�q󈅞�2��+��n�x���6wku��	�A�G�M@C2i�'��0(CƔTL��a3=|�`���Z�]2a�5�m�N���X
6�C�K�������Q༖�?�6��79ۍ5���̚���-ag��&�J�~P(a-�l���dws��=4�e,����|�?��w��&�J����
i:>[��wEet�d�DOK/،d�7>�G���������(�r���D�.��<�	7�x0���
��0�1P�8$�������_]�p^G�Ƽ98$�N��}�]��е675𴻇G�F������Et�X
��/#��2�ɸEC֐]i4��+�"lS�Yc��) �OB91�}��
��l���̚o���.�PDzs�
i2),Mn�ŵ�M��?V�,("\�c�Ϛ����!����ӕT�0��Z�:����'��5����m�n��l�p�[�2�(��q1�ݍ�T��]�A�lh�����R��8�؄TɾTP��M�<��f��y�[8����F-�
�B�͍XS1�OC�P<��FuY1�d
b��$;�B��;�wym#\���E��������&�Rݥ�Ů�JO)pÍm�ٓ��/���4~��٨]F��z��T����7v7ނB��"����T��
��M�Y�k�2^��;�������~��d�?��̧7u��Q�&�㺩��"�&�,ڀ�K�h���;efT�m��<�;`q�f4-<�;�x�	
z�7��/#S#wC	;*��ۄD�g�bM��lQ�l��is DiA�hr3ߙz��i��}d�{L-�)EN"�ȑ��xIs�C=7o��ք6v7f��_U�@��RL���kxX2 �z)�br��*/�� �d,�����@1���6��99�gt�nbt�&�����;/�����j�́c%h>�rM�)O�-S�5Ax��6��u�&p�s�Z^� Ds��.G�@�Iı�5}��	WUs��?o`{��hS�\���Ҧl
X����
A2p����#��JvsZ�k^#S�*��8�1g\���?6�J��(o�h��U
�q_�T�eܐ����h�T7�t����4��h����(�S4��A��:@T��nP�nsCO��^�����Q"���n":�����[p�T��o�C���!��7jt�Xћ@��2WN2b���"(:R����Y�k��4����VP�~�}��8����d`\�}1���Ś�5�~�Y��(������Բ�|���>^�[9�n����P
�oؼ�<�&pS�m��d���U�A�S[����M��C�O��
�_��\'̶�a�$�ح]�KupCݍ�swc�t7K��"�����k��fޗ�7���.>�:�MB�H���w�M����қ<�ڀR�!�GoxP�V�C�|���u�8Y�*�K�to*D���c��oslZ I���y�Z�����i��xp�������t�X���9/qT�X�L��7c�R�c3�[���}���q�j'X�(�v�X�\��ƫ3-S�#��	N/�J�4�	0���Ͱp6!�v�Ƙ,����(ZM��a�.�x�g�7M��DQ��qm?�
��;��)~&C�����ԥl��Y�l��
y��\���eUof��U����Йm���sq���!ibnƼٶo�N���ä���m*`CO�])�T8^���N��{*��Ioc�^�b�I��av�%p��m�5E�����D场hc�0�m�ȻX���Ǵ���N_���~��k�=��8$�`0��Y,��	������>�v|�x�%T��7��6�MB�K
�1�|K��%���p�ا���bۚO&+��
ej?��8��x4�?��bT�͍�_԰荵r�A�c� ��q��e�WV%����گ�O"�H��z<Y3u3v�1r��f�f��`�:6<"O�T����8Wn%j�e�Ó�#c3�6}ʔ;Sv9@&;T�6 %yS���&�
�9�N��6�q3�p��7�=�d?��%��6&E��"���J�Y��?S��8x��Y�É��ysL�7	���͜xPA�E���e�\5���@�7ɺ�{����qDG�a��ӇB�	��Jv5������
�~���4LN�������Seu���)78��.c'�U���F�JԢ����`Ӵb��b3{�)zL׊�A�,��G���H	�����vw�1R<�P5H����}ڦ[�m,���K��9,�DɍJ�U�xn�;��i�ދ�FȆR	e��0&�aD�:S�d5c�>z�Z/��`1+-����Y�t��0���
n�d�Uw������T��SԸ����l���l�Q����8�wϑe�}(��o���0��ch.kv(�u0g��љю5�ǫ%(S
�B1�L��#"GK��i�b.m�?�s<*�G��ņ
��yܧ�.C��Vh��F\���Q9��v����Ň�t���߹Z�c77�;���9S�&
��6�f�h����/�$o��^Ut�d�vE
n�<�ݺ�x��T���f"��s�گ�����m�7)w����`UfO�	����Մ��DQ�fƚ���&�"V�p��i���y�#V2�6�Fk�>FZrq�`�K[�!�D)��t6������5R�h��$�$@
2����r�S,��J*�v4��4�eE	Vf�>��z���K�7N�N��eB �߬��%p����
)7�B�!�=³�����.M\�ܮ�����}F�D���Yv�R�{G�����U�I��ͯ�M�ƼQjθ��mo�A^2�H��Cj5�Ay;�Vӆt�6���mUu�&p�3��&�3So��v	�,2����#Xʡ�5��a�o�o�/%gc��dּ$mfMU�4�j�+N(���_�e���S���s�9��%f�Tn��*{�k�N���ȭ��Ɲ(���:u�ָ��/���	����؇�G3})#���R[䭒GϷ
�詀TȡhL!����u*�AI���69�!Ͽ9��@�W�V���<zH�6�be�;an�P�i��Of&&��1Gg�nnL�x���ޡ�:挣7��u3�
M8ݙ"
Oʬ:��yc�t��>
�h᷇���''�PZ�Y��yd[`�H{
��g�6^���j22��"V3c�oDm���!f�<J�"�NE 
G}����G��.�FY	��95aS����Zv��H|t:�Ɔ��Ua�=i6�z�.�&�ֆ
�i�
��005/�=%%W�(`.{�>]���s,M=3|<Q��9(����v�k�k�
r��f�=�.E�C;K-R�$?v��E�J�
'��!�@�]�W���#S76�*�\��4kF���!u�&;R�FS�;R�5�zÅln&R�H��Q��Z���5�Iۛ*��t���B7�&�_�̳�,P����\�j
yH�#?�l܉��A���I3ӟ��^.׫�p.�?��֡������s�
&g��s�3y��	�"�/�GV8��6��ֻ�
8'M��M�vS��7iΔ/�6޺�{���>ݒ4����0��s�ۿ4���o�<����w��F�a�|���f�~1�&�í�(�/$�4VR�iR�Iu��P�I���L�T�w�Z�r���Jܴ��I�ҵb7�6@fHJS'������L�gsM�#x���o�9��ۀ����'o�n��(Y�
��
}��vS#�^�ҫ�y�h5l:DʎT�&���!�9��6�2g�~Glй��$���B��'aVp>RX�Ƴ!���R�x$�挳f�)k���ͮ�	5�ߨ�>���
�&�~%���2"�*�μ3����/�SO�y';��3��s�,o���P���ޕ���haa��tQ�����$ƅY�l0hF������(>�+��@T�.	�,p=�K��Z*�<t77)v��͵G�F�1j�%�qe1w7~Dw�o��4;F��<I
�����erz�>�7v7��p���d	p<��?)�x��d�G�k,|dm�6� ���a3�>9])�͋��j�0��.І9zz��1�sFZ=K��`�H�9���jz���'�q/ʉb�h2X�X꠰f�ar��ڳ���6�ڑ�c�)E7J��*o5�1�]$��.ІϋO��;fS�Q�/�lfN��
�bl��0/y�Tb^e
l���]M�x@y+�b�~�bx
�-�ߘ�72t�i��q��<�qC�9Q��ݍQ3���i�X�D��
ʑ��
] ��xE����i�t�Tw���p>T"�Ӱ1S��J��τ�æ�Ø�OÚ)m��d
o���&s��PR�7�3��x*�ad�����(���_�2��������6@�-4)�i������O��S�3ˇ���vƠ�v[�M2���fVe���Ow�E�lo����{XSaƿ�1�D�(vU��	[��$��mwCr]��q4 /�V� {�rW��a7#�܌s�^���5
Rkdo�D�G���䵼?z�f��y8�oā89.~�x������n,>��/t*R���	��g�7v7��RUSm�T�`��hT��QӰi]�o��<̭oT0��dH�G�y�>��/�w{��|K��{������ˌ���M��q.�%	��TA���ʀ��A����0ǝ���2p!w+��ߐD/.�}��B�`��j�,�0�AF�y�	�@�e6�o�̋Lk�Ȯ�$�<F�='���:�L�-7�av�k_��f��L���;tC�n��WMe��T��^�9�8�ô9,X#J��f8��݄nG*�:6;��3���<�ͷ��b��lg����[��ڜo��AӰ�jgs��(_+�ĵ�
b���V��P���&��L�+���R��j�a��H���3�$�A�Ť�/�]��GCTB&O�DΎY�j��h�W�%��T��O颱�S@���]R*���R槮�w^^�[-�R��y1�2<N�����Fإ����!i�f
�ΨD|w��C�Hp�;�n�77d�-�5�Lm�M����'��QLƧ�nf+Z͜>���"�6��x2���Z�&�����[-���;���
��CfH��D=B�N1��`�b�
��t�2m�7���j#�H��cr�H��.pC+}"�[u����H�+l���	w�R�C��XDis_���p�	yR�ea��з�}$�)���|2�#���k�+�iu( J��0rS��qr�&!bΜ;>4����E��+�dI
z���/R��
D�!*^� cXJ�?΂q��8���[�n��	�m��'\�˼t���T�bȇv7�T�ѝ�\����7�K��č��K���{
�-�F�V�d@"�A�n3���cµ�_��6��x4�yCњ{":>�!p2�r�b��6q�q�CAkF���&������&gw�%m��I�zܖ˸��5��l��b<X!a`s)fg�p8dښM�*t�����R���?�6(�K����*Ϻ^��t=Us�
��]d5o�ar���2�e�~��|�"��{�06�nX`l��"��'�ęˀF�ܤv7���濯7e��P�
)���"�v8
����L6;����
�nG����8�Q�}�3V9�"�荛����3
��m@Fl��I�&��XKU`3�S1���h�$��*ц_AP���_��Tb�&�G'�6��pKA�w�ew�P�ԣ����8$��F�hgC�6����U#���
Qc�fz^8|aY�x�rw���J|,�y"��ژ��#D�d����+)����S���������p�ǜ�o��>��}�Γ2�J�T�3�O܌y7���~7^��1R����8�訔07�
���1o�,Z��=&���me�n��)G*sCN*��5,�Ag�9�g�o�I�F�������"7dæB�m�\<�f��9�Q<�
N�&ة�Ap�o�&Y��61�ۚN̶ĺ�^�`��:����D����+2�_�`C"mP���gz�iИ5.�l��6In�5�	6�ʻA3<R�F��;�㢼nJmz5�SĮ��O��&X�g�9ir�a=��+2ʰJЦ��|7���d�M4�u�#ކ��jfa�>e7��H�
�К2��&�*~�vw3��8���Zt���&��$iR���d�pME��Ȓk��7�+5�m���6�����\�@��N��6^=�ޮ�R�{S�(a�zoća��2֧E!��rhc4$����@J �3�/i�ބHL���đ�y��`ӎq��o>��|�$7�`B���gh�<�`r�=�y��Y��ICYq܍�3My�>���01�1��عp0�/��g�͍SeL��8��\һs�sipx��dF&�<Nُ�۶`v�ć6�u�`��E��!n�4�$���jlerw�*�\;g��mw�͍�_o��Ʒ��M ġbrTH'�E��HW�m\$WMF��8^�ɻ�
�[�"nqO�4aE�sh,�:*Tk�7��t7>�.�����A
gq�A�_%
3p⸺��x��
:�3���r+�q����w�����ѯRo�`���p�Q��2����6�W��,M�q�C�
6�K+��w?�I�~i���а:\(�ͥ�P�a�fb����/�	b9/%���U�Y��<|�/� ���c��>�T�i��A
��ـ���X�'<�2����� �z�R,��ے9�)�b����smV��psg_k�����v-ǁ*ٲY��K�$QЛH�'�[�
!�誝�h�|ԄQA�s��:�����	ބ
7�����6fMÆ���G�T���C��MC��#�ZA�MFj�Ie�)4f͘R�&$֤j1S�9{�h`�����O+'�6�v\���d�Ȱ1iZf͕�&��NT�����;�x�7�:���7���Dw.��o�.$��L�r}tL�t�ߞS���6ܒ�I=����&gt�=�߫deM�+��j��J�4l�[�k��P������P������o+�
�N[e�bu[�%�E��B�!�F p�DRl�$�x18n����g&"^�Ta��&o��1m�
��Ey�s`���65 Ej�K8v��]-ub{�ApB�a�����7Dn}��/��-k˂�J�F��M�j#9$���	�y@,Ae�ƞF�qa6f��>ǖF5Ny#�g��8�Dy8���@�����|���P!� }b�rm���J�
���L��D�zpD)����.)]M6-u�7.�@o1r��oƏ�����-*� 	2v1S9��P��c�\Q�Pws�n�>$|��v
���V�2a�.���+���A���C��]��N��)�����<�ѡ�>���u���:�����6]�\��f�m07�&N�6�6g�e���Ƨan��՜w�q�k�}X����'^���:�-�80k���f��8H��(�n������4r\���N�Dqe,��~�3 �2�S?W�1���)|��Q�H
�j��9R�kz����=�>Z�Y�A��r���n����H��^�N��€:���*���Y
c��d���n����5��,Z���8|���	��7�mNSƚ�C�+<�h�[I�h�lE�
�Vh�g�(��
�ѩ��m2D�Q݇J�T'�r�n�*��7%5fH�#4�|�����O���B
7()��Y�e�B8x��2�R���pkG��e�F��l���p�d쉌�68ք9-��`&���^Dɱ-��C?X��Ս;/�C�2cM_��T�I�q.AIŵ�� R��&�9�5�
�T���+��l�R)���2b�6
�[\�5��a����wc�̃7]i�w
�Tı�5ʝ7s�ؘy�kw��C�z9�p���P;Q����hC(�����A��h3��$mL�O �1���<��{>MU��e�F� �;�L��5kh���v�>��=�k���7��o����h1H��ڍ7�C�
�m9��i2�ݪ_�K�]���˫�&�b5i�|�������2B�WHT�������MI|q�YD��lQF�0U��޷i�֒��<2U��m��I�!D�q�����Sp��!���I��<2E��n�K4�_����'3mљ���.����D֊ޤ�Y���	�p�)��č��NE�ؼ�͇I����#5L���>��DGʴAt��݉�@q��6@&T�qbC�M���Y�Β���T�ɢjg��x���?�b�5��I
z�����čx�(썤��~DM̚>/����I�5�����L�Q�7�&<M��\t��A�8ч��Oy��crɽ4�Ȋ�*�����-����Bi���i/�T�M\I�RuE9祷�9.�D*;%��I��HT��Hum���ٴ"|{_ʢڷv4��ls�*Q�Ф)�2rľQ���e����[�}������^��|��Z)U!
�RdD�4/67�&�fB'>�5nb��F̽`�tD]ܔ͜���ボ�ӽ���r.�,
0k�5����mojYU��Ռ{?֯E���G�A28;�;^>ϭ�/�6\�͓Vq�O_��'�h��jB�@��X�\6�H/�&n��d��gҳ��&��C���q���w69c�d\��})�ȸ)��Ez��n�gI���'IZŒ�S�i��l�9qs#���"��
�v��mof2zliȡo� ^��	�$s�J����ĸyo��;��a��Q�6�f�O���ݫ8���2��6�("7ŽId���n��Gn(&�s"�(���)?�F����-�1�O�8ة�ol)2	6�l���#�J'bɯJ�
`C&Ž8r٬�={9`��m�v�b�'��!@����A�M.'����v)���,_�$��1���pLu�CJIv6Ձ�C.i!���6!��Tz���džM�E��a������1h�^�:����ݐ}3m\����
5'���'�匂6����Tjc-$��4�q-���@�l釡�"��{�����F��[�Q�@��8���HO�9���>�f�F
�(I7,K��*pô?�R+%����SEy$��>T�awqh����yc&��k�/A
�h��^��TƦ^K~�ȶz.q�d*W$h�8�g�V��(�B<U�ȴ!Ib_�n��4�:�٩wު�v��o�+�ӄ��O����0�-*���S�ͯ��<R ƴ����K%���8g���Unl��Z��}��ϼ�w��Ʀ����`f�պ�,AzR݁�"
������4b���CB�E�K�uy�,���ӣ��8vc�`o�ِ�F���b�ɓ����QE�s����oT���E	�R��jπbR1����X�R���7��٫���A�*7/��n���б
M|4m��48d
Δ`
ġ�y���ʰ&K�f�>d*٥�[B�'�����{����Q���|���ϥl�V+԰�)D��A��`i:2�u�	��@��_�ҝMe���n���M�m&�b�]�!v�fN��)�w�H�'R�F��	��2M�L���J��VZ��a��(:L�6�a��`��O�����A�O�SA�h�J��N�a�be��`z�
<	ڬ�:�˦���\J}5��J�"qx��c��X�'O-4h��/��s]��F63'j���UUf����D�jH	���O��IOS�I��#d�BJ�q�}'b�7Ϣ���gHT���7�67�$n�\���K�&[�n��T�3����h��QC�=�)�(�	
;�����(����5��)��7���Ӹ֡��Ђ5U� ��r����%hCY�� �(C?�UQ��͕jk��'n:lQи7U�E��P1���b4�*����U#�6��ͪvAw��is�l�k��hU�*pӡ|�y��������Y��hu����0�#�K�#� /_�j�GP �~Kyӄ�5X���>���9�b��Q���$ �$�u���Q��m�i(���!�>J��3E�fg���u�z�̱�9�ikH=E�W0g+k�/���r��Q�n�ī8�C�!�Hws��n�ao���pRۚq�f6��p���6'5�jp�b�O�� C�Фr�>d�pQNe֐��ؘ7�t*��g���,��])8so��p�L��k�7Q�F���ܤO)sӴY������ig^��[$XcՐ-i���=�&�y���t�E�>e�E\Q�#/��=���>��[�|�cd4
��ơ�J�����E�&=薰�S�[�F>'h#�Y\�*��qT���k5��W�+WQ
4J::�jD*rAC��23�ٔ�Q���o�;I��74v����5�"�xV<)�
~��!��Փ��UJ@VG$�I��x��BB�ma�����=�\L`n�>���Dz�U�-���U�=����ϧ�ꪾ�~7f������RY�8J��'5�G����"M��T%jB��[%����dMlSSiC�l��p�@�k�?��)�3./*��P����~��Ο�6�+'�["�C��	R�6��#*x�¸6e�2�Z<�g$1��klg��3��9,
dz�q�����ّU5u�9ސ����,�W�6�o��m�<y
!�o;j4�A�)��&a��5���>i��)o�.�o��"����P��5��$�/}���Je��hyډ{��]R�ԏ?t�*��~7�ܩ���G�]���M_9QOP�g�ԮHCKH9=�6}Q�JG�Yr7Aij~��T[C��S$q�����
��'�o�~A���/�
O�u�	p�=7Ģ� L<���"]���\��UQfR�{t��8?���7�@��У��D���07�[�F��%^�V^�/������Q���*��
��-���|�������Dθ�:ޯ^�$�.�Y�f}ݞ�d��?��OB�� ]����QK���̴ɱ��F����Z�L�s6n
�O�������P�Gt�P�	�ʖ�ԫke���������n��Y�7�������yA��ɝ�(��>�͒����6�*��4�RI����U���ll6ܨF����Q�=�k��z�#@�6�4M	*A�W�����ɑ��b�AN�ڔ��Bu`��R�c61ٛ�FA���Ҽ	n�uB9��ڥ���f+l{�.�2d��J�X}�H�S�7�f=q#anP�f5���T�	�)]�ߵ��pT`
�ߊ��
/D�Ԋ��	��a`���[�� $uW�=w��D�58��4�Dɪ�D����v?��~��X,�V�/�\�=�sx~�����/��<��j�n.�ߍ��?MS!#�&�}հ��ԍ�'�b��VU�64��l	,M�h�AM����QP[���`^P��Y�8�V�ɫ������51<�
����ݠ\�7���2���
4�F�#h����9|��%�������1E'S�
]�eFR�&�U�ۚ88�,KP�2_�ְ	�����˶�	'o�%�sV��f��G(iT������9‰C�
�K�$���PS��y��B��I�5���ݢ����^(Z��,k>��]=�����ﱸy��y���������������|>��Og����q�4�`05��|�4�y�j�n.�"�����ՅS��Gwy��0Xl�nT�M�9�[��p2]C��y��p-|�P�_��݊7�nT$]�=��Ty�曘W�7ꤿ�>bJq:�V�Lp�$e�ϩ`�"�,�c�D[>��ej
y�)��[ȑ4�R�Yq�O��sd���Ľ��K��T�B�QV���`�B~Q��]V�)�cx�1�)A		G�M�f�)
�f]�H���]
��͍����
�@�H7(�U�K�kf��LS�^�fэU��_W{{�{������|6���6�ټw��V3�L&�d4[��xܠ�b<nۖ����J�F��<��q�{�����Ɗ���
��y�#��)p�/D�L�z
�#�Syc�'��#�d�2ą����{�M]F��K�$k@N�9H�����~y{/���m�J<����ɛ�׼���<TQ�6am�W�����7ld�?̙(��{\�c��B���G�y�#�3�EE?`�贒iO��[�[[SY3w��b��'�u{,�P*���7@F�CM�<ы�J�4AF}�x��Z#1OB���R`SP\�At�����
2nt��z��j����Vn���+�f�4�[
D4�H�t��"ʬi�]�v�F����n�t�=hu�Iw���s7�r7&N�{���(�&+OM:O~����q���B�`Y��,L��Vؤ�1e8L���,;˛��N��
oՐ��D���*�K�
�E�ܔxSh����
}n_p���6M��
�)�O�[���
�*��w'M�4�wy���j�'����d64ѫ�8���}�Q6�sΤ_<Z�)+ĺ͐/��Jq�O*b�)�����á�C$�&�^��P��\)}kCW6~������=��a�d�����S4T�w'�.�M�5��C���Aw 5iov�]{�U|����&�%�
E4��ݐ����5w���Lz��~R����N5-wY	
��WiJ�l������(���:?ow�Yp���jZ:v70G=ۛrxc��BH�����G�@��,H�� C�8aL@�P$m��8����lY~nߠ�4U�-JHY+�[^�[ �aai������1	$Ye�a/��y�d�xTgdS�j9���ۛ$��P���5�V��fJ��'�
����ux)#<�E�Y���[��_侮�R��_�o���D�D�!��@��C����ۭ�1�4m��9i��><�����o5����~A�T3����:����w��_ɰ̚���5�qچ�A�C~,̴�q�b"*�qQ^�)�HH�$l*�����;��b �1b$:
�Rͭ��m2}e(�6~�/����KAB%��E���$dR�S<n\@Ca0g"����+mh�u	ߙ���Mj�6�󝱩�æ|�$m"c_<�:ZI>	8�}t�
;����>�>
Z�O�q�‘Rk����L���W�c��O��ӱ�i���1{y��y=s�|>ɽ�~C$9�W������;���"�a����r���O?]l�����'�r+''�����ݟw~:�5Y G����獪�1c��l:�LX2{�f8��`�`Q;J�-9�Ma�A�tU�jw��nL�H��*i�5T��7�i���c�85��P���:y,�z.����y�X�PH\����/�*�7\QŕP��h��ݴ��x�Yb�.^?E�Q�`MH�7��<��j39��>����!N2�Dp,ǔ
s����9e���Yݡ�JlD}J` �QS ���8��	� �[����L3s��5<���I^Æ�}c6q�'�����K����7yqxxsq�\x�z��̏�����/��^��;��8�����?N���x0n/d[�/..NN�����X�1nEc uv��T�`K�91.R�KW���pggg8��'q�I�t6�)�3��FC�2I�����+6
~��Ks�P�{Ct�6l�:/U2(�)*������0�S5*�s�/ѓ�q'�Q�ݨ֕0<���cb�DZ��S�k~�q�X�0prjJ�1g�
�c�P�4R�h��ϋ��)A/XS��D�Т+�5�3_�(59�
+
{r���6o�uc*�p>�,R�&���G�n���\��
���({c�CcU�-+X����������[�Vn2t�fՔw���maz6�L��
�]T�8�3�sONZ�N���V���-L?�Ɋ`_�t1T�n��0܀]��=]�2�N���lʏ���˄?�h&�? '����M�͕O�wiw��f�ܤ ��cUC�b����*�9�D�9��p�荑�륐�p��w6��).�
�7:^�����^]�;��(�����P�6]sn���~m�w�X7|���LT�G��WBYނ�ʟ�`��G�(i5��5L!v
���5}K���w����E/�
ܐ/6^
I��a��#����?��,=N���NV+&�>�Ѝ����A�Y�?1�t����\�AlN��^�L:�0ؔ�h�<N�H�&�i��3q!��tn+��-pTi�)iqvt����a�*q�cNJwM���|��q9؜������M����ti�3���ͦ�38�TT�
�H��
�q���qP=�ߪحٓ����P�&g���̸��xʬ�v<
a���t�)�j�H��9l��F��~h�`g��f�qA�q$glk�x6*'�mk�H�,�����Kh=x�;��K�7�͇�x��,+[�{~��a;:�&�Rs�T�M�y"�@��͗���!(`�d�$��ʼn���b3���n7_�R���m-ޓBw�d�0�TL�g��9�C�K���ۨ�]Qf:�"?,�G�d:Q3��97����M��"�)�g�h��M5��Z��&���8�閳vkk�B�baH֜]����s5Sκ�3�B����h2==;����v<?϶��`6
Gc��5M�z3S��*�(�2��5.�~�Ƥ�Q�!�����p��@��5�6�c�ʍY�
���7Ա.�C�N ��Ĕ�썁�<?�8�5�i�(CE�RY��U�M�+���R�̌'x��H
�� æ�溔j\LƇ�*]���1k�s�uN<�#�X|��	[��$p�NݺƶC��H� �S@
T�4N�T7���>:��(�">J�Y�5Wß����V��)���®|pFZ���sw����0Ƃ�����Q|����� �€�l"
�(�.4� +��ЉQ�ڰ��D.����;UǢ��������ǯΩ��~��a�:�E�0Nps!A>�С�'J��(���Ԩzg�܈��99�.*�x�;`�a�������>�k:�l��]]]����+�����|�8�rX�e7���qߍ<z��WW3��L�<���w��_c�3�Ѷ���!����F�4�z�&s��i�m�2�Z��i��i���|�A��1H�9n�B�`�Sx���)ފ�E6�{�o�H��t,�C���M8X�5��K>%I��,u:��A+�d.�&Z�
�С�����R��/�I�H�8(��762$�C���p�x�1!b�60F��	��7čh���`[��0-Cω�<Y�f�Z����q�Cǰ��	Y�|,�"c@��.<�̚�>n�g[�7�x?�b$��QyZ
#\�ϻÞ�����<�\Y���������f�E�	�2��WW�YxYF3��q?�a\�ڵdl�|��㵕��i��$k���9I�YCki���)7�����l�y��µX9���-��ͫ+�|
b(A!ҼѦ��@'�5��*k��82�z�
�F핻��O�n����3Z�&���Z/b�)��i��rOe�����4�le��bNE�X��&K�5���Qi�8��g��YQ'g��*�?��k��Ε{?M�hBn`��;�┤
n6�b	�� ������p�4�7��9�2�;-1L���Q��k
������J�so�/�8�k\�1X��
�8`�v��QR$��q�pLS���^�X�$Z�%�a4�l=�(�Y�ݴ�n��������4R,kN�s��K���(���j�p�9'�OkY��X��6�]i�b�ʛHz7uӐ�ni���������pC�3z�1:��7v�k-v,��^�&�DEO��	~$����	O�`Q��7c�A�'p���n����ی�p��i26c�1����i�.��g���)5t$p��i�/ ��:&^<���E�d��k��M���KC��
�!�&H2| BI��nB�D,�Ѝ&�x��uS��8�Q!.
!k��`���"\4�EK�����?���B^�#1�vȫȎ�m��kD�*3u��z�W7a�������N�Li6�6�ʚ�n�1�h��E���J���58��C(a��5�
G���{�Y�{����(*Iá��sj_QR�蹊�"t�=�ѧ���V{"v�2n�S��(>��Q��	�-Nii�R�L���}�N�4�n��`��I{gw�4���Ӏd��(J�5�rD���Z�ƣ���V�q���NtJ��8��1y$l�%U��]]z.��7><�.����sѺE,h&Lll�M�ߠ@v���u��G��a�xTzQ��Q/+�78�ډ�8g�GP��Ϸ��"�|��(�	��Bc�%x��a�m�YYS�Dp�o��l��_�ws����5SQ8�9Q�S}C�Ok��a����J�C���:�&�
�F�������F���𰦀�*���H1�62�����d�u��*r���:�"�����Vp-�I�CEI��Aՠoď�I�d�aI�4�|m,
��4SBa�T�Ą`<3�e�zM�m�x\�����D]۠
x9q�E�N7Mݜ�뾿��bu��/>�\�[��H�?w��j�B�J�$l�� ���^�8��\�n�C2B,-�x�G������˞'m�6�y�����υ8��/O�O<6���_�@�I��껯������+p�V77r��~7B;�Ul/�t�b�R7V-d�Qb���U�)�t�w�(���N��~ֻg�7
=��R�m��(�=��)ݱg"��Ɖ=aS����֜u���n�k��
��J��,�ei��
�*n�^��
���I{k��Ɲ�K7�є^6�&�7�R�
©�T7mnK~Y*���5҆.Gֵ�S��ZxS7�:5�P���¾���Ͽ���/��	�Ei
��U1:"¦��5�����(��e1��B�1�H��;3�<)��?"l��V��]9i戭76��$ ��p�i�@\�胝�2�.�1L�a�zf�&����/@�mo��ͿX�2���L]�X�Fo��Y��ֶ|��M��$
%��=z�Vmaf�8'2�MZK�<�ޝ��\.E��6¦����T�V�h--�5E#j�W�`P�
Ky��7�Rm��Zڐ�#��c_8��9�j[�6�%n��y5Z�.�I���Ѧ�)wU�DN�X�l�=�2�R�R�PQ{J�^O���Ũq��[�A�lo�w�|�� fc�/�%zRT�n����&O
��ž�g��4�}r�#�M�@��~�VA2�(*ؕbI�x�Z?H���!�z_�[M�q��eؘ�}��-#���n�+�a10<���_���;4��m7cfj���?T7zS7����O��Qe���]m)CpFG���UR)cBɀ�4O<�}o~�
�{������olE�:�7��v���PR�f%Wl�Ơ�F���1T�č�I�ЩG��4ք�8�o�Z�V�
v�6�tK��I��`e�-��4Iجxc���˫A���L{7Ь:��Ꭶ���+e8������ז�&O��@�;#$��6Uu�iD��y�O� oFni�p���; ��),f���i�Ӱ/�F��
iR4%t��7Z�/��9qS�-p��|6@��2�s�<�)h�Q?-D��q;~YQ�ى��-*�W.���r�M77	p��~7��Z��ѫ��׬i'���fϺl�l֙�����h
�A�����roP�����Z.�xH ���*)��1�L)k8n�j̈́G��Ĺ_4�Ua`&7&71��dJ�*'Q��(M�d��P��ןE�xp��D3��b���Ӹ�����j
9���4�F'Y�6i1�X�<�Coe^�9J�xn�X�B�:�rʮ�Z���`a�����~7����i0]g��A�e���p崡�>�P?���#:�zu����q�`l`j�fT��<u����_����+!fp�Ǔ�8�d�%Z��Gp�~�P��r�8���0��chS�c�~���.����Y��5�JBYs~o��ɵR77Ì��ߍ�imBfU'i�����A�6ǯ�SoB��x�#3�L�{w�P���8��5���"dN���ۂ�S�q-u�e�j(Xr��E�P�(�=�`��YL-ց�+5Y`\�
2��PC���GlOظ �`ns��ښ8�cV���I�d/�2�������Y��-��7>�q#���)�!28����	��t(�K�H����|�d8F/@Ĺ����ʖ�.�U5�ٲC?�_<�4���Z�p�S�r�!qo�u E�y�+Ϟ1b|TrĪ&~���/��&��T܂8i�T<��\�L٨��(%����N�L^}uu���5�lEVm���̬)o�z,��"���:��97٦���-Mݬ�M�M�Ē�F���h	�YMۤ�	uS�BU!#mNM�x�v~��e���DN���	��J�mJO�$lt`#g��&s�;4�4�c�24��j@
�ѨSph�y�.�|�ٶ�
�60�o�EV|M�1z�܉�x-Q5_���
�|Ak/��n|q�o>����qB5�i���#�k�/������|�������#�����6JG��)���w~���؈,4v��]�4;�Ҷ�����T%��tq΋g}$�{��	�'V7eXX���`���g�d��29�q9��d�z�)��{p9~y=�!R^��i��w���N�������rQ#:�#�=\|9������_~�9�=�{����5���S�{��ۻ����*��b�j��Ɯ?��f�9�8�65��=U��zc��DKMKiɛ�[(�9�N��2�����A^�2
68�!b\k�1zӢ85Q$��������J2��B�S�?�f�"�-�,Ț�jLq%�uP�i6|��ު�1��tM�Е,�YzvkT�^S7���s�ͻ��U��g�ܞ{9t�V8��,!�X��\~�VS�ULP�0u���-E��"h��8#ׄ9Ywsa�c����
�$��M
����7a��J:ܰ�L2tKg^��~�!^!�BCP�'���lW[��ǹ��`����K8qe�ԢFz
��,�!����H�-{�_��ٱS�i����'_uuE���-���m�_�g��!�;^�0�;��_.jN3S��`S�?g�&QS7�6z�pC7S�x[�P�C��q E)��ڴ��Ck�IX;�X�X��F�&�K��p������&���(���ɨ��Iq���J7���Ν���f���ް���I}c�w]��5~om�����8�&^7���x7�<����A��P��VF��	q��r�A�@�y�3����kE~��a��_���@njߞ�e�G����-#��o!Y���BîG]���P�	#�s���퓆���	����-?5�L�|�2��oARA����Xf�DB�l�uQuj'SͰO�(�K�$��柮�G�LR�]��يo���_�;�g�(߁�j����^5��^�]X,l�b+h�h�
�$��@j���H�"��;���L���z����&���}��sff���⭏1G����+��~7Q氹~��p�]��63d
�I�t�T;9�����h�j��v�~Sݸ���4��ACYc-Q�d-��#Yc�Z㠦�Rup��ZPD�5�&��0�3���fn_"r�K��B3w�ĩ�#�gy��W��B����9�~���O?�����O>���W>}��O>ۜ\�~�2�m�����Z�m#\�u>��62(���zm�U�p��5��t�[b�&�]�^�>�">lKhT�/2hk�1�'�$Ɉ9��v�DZ��B��l�иqQi�\��H�f��HG!j��\E�(8m6��/�� ot:N��.���M�����\ �ƫ��A�4 9��9}�N\0�S��}�x���ꦮd������7���e���.���
�2�ZrrMN�˪E��6�K9�M���9*p�3��f�TD�g�4)�Pl��hp�J2*�66V��±P�3T
�1\����b���M<���7Aڴ�1'�*�y5������|��x��c7��E���m6_Y~-���@�O��h~�;zT`��D.\cۚ���p�:*�^�ȕH'����a4�,H����F�#VX��ĒG��xY
~7��;�2&�E
�MDqU:���G�v+�DΦYB�p��I��Mh�EF��;_�LP6�%ѕ�;��t:Y_,�-�q���8����#q�2��'���0�v#�e*_`�[��Φ=�`��n@�9��{�"����菸���V�}��߅����5q�M��Eًyc���þƉ3G�hu'��<�"g貕3�p��u�J�\"�j�� w�Kuc+_<���I}c)�K$�eN�L)T-ϒ8E�$l�I���Ρ�63wJ_)���ч	�W.�1�
�h����-S&l�|&r�8'f~��m�6�S1�� 3A���K��A
^:+Z	�?���!ܪ�(��]�W�	뛒��b�.t1DAJrZ_Ńo	�k#^����n����;�q56|Or(2����,_��<_z 4~ ��+��c�̽�C���䄶
��L��f^�D'�C���e.9'!�R��0��:�J�ټM�gQ���tZ4(ux}Wp."Cu��_,���)��i���L]�񳩠�H��T�L�ȜR��1�œH��y����ʛ,�jI�hˑ��g�a�My�P��n�8E�\	9S�Aʛ�mS���dM�����$l^��5�X��>�[+��ф
�p0W��Z�$�����~��	��=��3-��H_"���q:�ď4�$��|�3��Ac;�e�^���䧇�PT8����r���9��6:5� ]��( `�2.9C"?��Fq;6��h�&��"Gw��d5�xy�jOL��i{|�7�!t;@̺G�
����]���0ta;5��D]O4�Q��M�p;�<)(���?2�|!��PǯXK��ۓf�!�����)d3M�K�+����t�T7���iExvQ��*l<�s�8�65'UՍ��ƚ����c;{�7��
Y
iެ��O_j�llĊ��5ZN�@�����}M�_��4�W�V�Ty�^��yV�M���6�-F�s��9���|F�]}pB�{=�5��%(r7�/L4�d)�8)}
Q‚0�;�D� tBFX��
߈y#K"$��1oPcw;_s
�zB�aȵ�E����e	��]�%�W��oB��u�ytv=:�/���eyY���S��],�䩷J�ޛ�W9ԅ�0�7;t�8�v�h�����a7�ӂ�V{�z8oM/-�X�#��T=	/y�Lt����~��
���j�X0���S��1����I��ǒ�'�$%��];�����7�=U7�n���g�h�Ŗ���QÙ򘯘�3��}G�x��}T3PVaSkA
��6Q��R�ԓ(��:�m�̉"ph/�yyNmj؊��&�k{*K�����U�YS�Q�`�2�������j M�٣Z*nD
�=�ާ?���ӁZ�^��zB��B[�W7[�x�~��hd
�a�y	C��[>˄��cJu:�b�p������,P���t�7���?�x	��P~D�)y�0D�a��%0� ��A���A�ĝ��q�����ƹ
Et�����j�u���pC�;��M+6��H�$O��ڌ�R��@R�|ue)#qSq�x{�;��9�0�{�1GA̜9L 2�D��9��%�>����#�P
4jm�6�wk��ZB'i����?�n��D���M��Gy#h�3��Z�YASe
�2��3�B�d�ےk�5�mj)1���؍v��Ju�a�h/yX�ل�I_*�
�%���'�nj�L�d��™b¥�bxR�ɚp��>j}]�<�97O���}��*����E��:�CI�șb�S�$R�҆#�).,�X��G8����C�"����F�:��g�;t͢�H�v,�燬D`�z���7b"dKF�����#rQFY�	,b�U��|cK3�4`k0��:y�|�.B��_��"�t\:Xc̻�նi��������6�u;9tBqr�V�nw���ݙ��o�owCA�6�=���u�~�v���z����!d��\X�w-�\o��DœS�=U7�~��k�� Q���Uk�z.Z�8b&����
pQcuW-�>�ढ�R�(k�N-VIc�X��}\��̡�hs�D�:�����ѮRRv0&��3S�p��[��Giˬ=j��G�>�^7��O����)��Cs$fȚU�P-iy"p8l��C�
�'G<�W��s�z�ny�!��`)�Z,
(9#�.h"p#H����6b�����]�*��
##ὸo��e΅�ޔ�~�8«���"�֯ۃ�Pf=4܎έ;�,vX��]d� �L�����]�A0���LժCkD^
�f�@c7�0�H�����>���Orʹ|�Lm�|�����j�ml�)������J>
���f2I~�\88���g��_�w���>9s"��΃585��))kh�c��v���ɜ���VJ���7a��u5PLͦ`g�+�*9S`������ў�){e��7�������15�V�Te����
����9xL?����r?�+�T;5cƹ���#�a��j��	�A�y��!5�ž��q^@��
��Ht���qV+�C7��(�+rv:�`?
�\^ya'~w�	?�M��G~�罽�?5�BeSO�����$�f4탟�̀2�"�Kb�Fr�EF��������	$w�a&��2r��l��G��\T�q�榹a��z)h���؈v�
Fd���=��&&!3m��Ӻm�PLz�'�Uf�7F��L3uso2�vE��ɒ�o�/T�g�\��i��O,p7����6��ܶ�>@j�K՜�M*�����M)'Kv���k�(llg������N�h��F�6����BM�Z$�5������Hz�t�<���y��&`SYc)6���Q�DM4ՙ�Z���
�x�r�,=��x���c��@�exc��L:6����͉�=u�D�R�5�Ef��Z<�{�6&��”����Y��0xۣ�,|̯�E�1v茡$�Ρl��)��օ�<�@�j.��^�̴t��#�O��[���!y���؉s����!�����.L����!��޸�����5�4��T�P�h_	����#�F�
5I�������*�w���~7	�j65!E3W7���V�:��	��)��Y1�!�&jT5�1L�Hk�)��˺m�ҟJ�tx���g
5�.-�fh�h_�Uڊ�
sP:P��� �y���r�ɚ�z;���f.p���M��*j�X���v�dܦ����%n|*�+�Ă��Q�x_�9�"g;�[�<����@�
_�ĈRh�8>h!oıݑN�;~�^�3�-��Br..]��3r���,��b5�1�k��z�k�Ã�򗎢0��Y�����M\�홪W�#"qο�xDL��}���-�j�y��([�G';>}�k�H��{l7�ɍ�͚|�۽ y��Lz�	�w�Ӌn�tKb�`Fo?�a\I�f�n����n�L-��<l�e���E��"l�=ɝbɚ�#T�dQ�X5��E�a�]PC?W7��|%�DN�K��w�R-���35bc�u6�[g�Y��I�#s�
�6Km*x"6��	�̜)��}M�`l:��'�fƛ*o
j��7:3uC�O�1���j�2f	�%+�,h�����'�T��='w�\��w�"/���zIdm��p&�: 䇸�Oj��+�"��#Wu�l�+���kn�̾�*�IѲ�/���n*aa�����?���v�����2�L<���e<���]��ᗭ>�;�^�Ӝ�p����kg�=ӈ�3=9��͏��l�1���lb�	�i�ۯ�L�/�S�iܣeγ�'R��M��m����1�\�5kM�5�'�2۰�����
K�J���7��U�����U�"\��=gl��26��e#r��4��nΚ��@�3c���%l�mG��Š�ϩ�[��%m����|s��a8������U�$mLEsuiOt;�Srx�`%�"ك�P]�gn�g�VN�J��y�Ag�-:|؂ō4�ë��k������N�.�1w�1�-��;�|�ȇC��ȝT�X�LG����N��e�*B�i���%y!y��j�{1T�lco����}��w��
�һ�ĕ�Ĉ���K�:�^o�N�}q�77�›���z��!��S8\}��a��"f�ס���O&0��f�n��Z�b�	Su�?>����+�l����5�m"�
5f璅@
�]����/q��)�����Q�K,��a3�6�h�qw�.�Ta�ZA�j�F�$^:���id���L��a
��֎ $ �#+��"���)� 肝�>�{rb��t��63�dw?���=��c=u�T�l�BYs�nr���4�7����:n�rR��Sݦ�!M6q�^{��ƬQ�d�4�=g��r0�+��(,���$~`��ؓ�X2�5���|Ai��0�$QD
��N�Yp�!��:�i�OW21h~l�+Ͷ
F0�h��A\�؅��ӌo�nit���f	j�`�9�J��eH�ġ0r�Ŗ�!�Ы<]�K���!��MܶlUˎX�!��)����g�1��t�����:�?H��D�3w�ʢgt�r�¦QX�1lE�g~�}��������w�������5��ɞ��g�0$�w���إ�ԑ���a��Xݼb�U
��qp�Ζ(E#ys��|��C�8=pl�3oi�-�������I�#jr���k��7?���o.H�*`�x�[�5�X�p���Q0�����MS{���ݴ$0�锰�2�/�\ T����2���U��,{�NhY�w��?���i;M/�w&<�S��cj..X���G#5
!d?GM�+�z����!��𨺭�9�R_.����g��¸q�Ei!`��n�6-���)�s<���bU�e+��f5����EVWWS�:���$����#�D�qE���$p�*s��9��d��Y�38n����f�w�/V���n�������\�]'$M^��h�l)fCc���}*\/�&h,��q8
��\�rMFz:[�>C��1��Ã�7֌
{C���l=frU�P�%�����ɼ�ȗC8������y���7���j(��g/J;f
�7��6^2Y�&օ��A��������reA��"+�R�����E$�ދ[�nӁ N�Gtz/���E�X�)"B�#U3�%n��؇��\d�5�,����3��X�5��2m۴F�c���_q�R&�c��1��7u�6���m5,�5m�>��Ȏ+�bSv��@�Jˑ�2u�e״N!��ڽ��C�d׊?��=�9�"{�B��K~;/6pWeus�m����9�N|��JN�Q*<�d�F�zR
�T����=�Xl�L7Y�<`MN�A2<��*t8t7��p��1qG��;F�����0t�4�7V7�����d�$�ܝ�ÅMh����?����6��W���FM�ѱ���C[s�hs�3���,��� h��d�RR�� ��lQoD�;b�W�
�B3�d�
�2��6e���S0#x��Qr�h�Οk֜����7��\�wVoݹ��!ծڦ��P��1�onȸ�jniW��r����|R�4�)�h�9��(���vSuI�͗��J1��a��\*՝M��!o��p�|���{�QgZ�iaXtܙ��77��j6����׿^]]���[��������h}�8Y��N���R�n�H����l�����0�����(1]���Tx>P��Oe_�,p��g�!w@�=��F�u��h>��"nR���؂3�x�b�,�$�b���lc���'��~��2_���@���q؆ڛ��b��_��Fy����&�X�.���ޭ�[�I��j��||�Y%.��Į�NR&m�������XD(�#�Ԥa�F���m	nT�+oW�(ÔS>�E�Ïb��.W-ۋ/�	t0�=�A�TU;/`F74��2�o��^����+���:o�`K��i�M9�yͪ�T�h���z^�'058��BF���&�u+<��0t�@��lRB���*`��Kÿ�[x���g���6�t=*��������~�񪘠��j~S����n��ct7��_k*%�&4M�>�s��&o�G1L|�G���3��o8C��&h�+�i��cTCG1�C_��l����m��04F�3'b�Dz��$���|<��7�|c׼��|<m���Z���8��`ӛ
�6G�.Ü{�8R����Y��Qs�(Y��\��R�X�A����� aFX�1��$,�:3蒷�A��r���=r{�m|�˂�A~����J���ۍ������u<���.R�jm5�L�j�J��4ͤb�L[1q8�y��7���m�8O��S�U��W�M^6��e�jH?-�ĚY�IF�So~�L
�.Ӵ�C�xJӜ!��n_wd���s��#瞮˛nWB)?�+�'������û�Ͱ��$���z��,����~7���{�e���lZ�tCA�$e�#7�ώ͡_��A�Q����:q�3����^��N��\��#�J��1���"lt�l�G}�<�T�P���B��)oi�h���Ti���ܶw?x��u���;�%بn4�7�fw�m,�Wh��*��X㢦�7"\�IȚ�r�npu
q|��o���Ab���r1�0���$�St<4�:��
��İ/��|��C�U+P����R��,�G�
F��!s��
�H��j�+�,
�b�@��2Uyu�ʋ�g5͂%���m[��j20�2�Ve�+6B�d0"�T]m��K!�j���
�HX�.t��FQ�9�c$Mp
��9\�^N)�>��������T���p��v�e�<g�}���
�����3��a�F���]���c�� 
n
�XÑ�D����r���̛L���ͽ6N��������?�+-I��q6ap���K���
�8x��y���
���{!g�5�A�7��[����v7�6��H��f��s�r^�Ww~���#���Y#n|��K��<P�$��e�u��;�)7b�q�b�"\'P�iN��o��!Q��o6j������.�L����^n���?����� @,?������Ŷ3d�P<<P���K
�eS����pX�]����iW�qV��(�Vˢn�~>F�F����!�}"n�a]���}C��?+Gglk�xSP$^���H�I6�{ܴ�Q��6����R�;wa�D�j��#��d0������+u�7���ܩ���5ip�M�r���ݦ/���M�w�y��YR�*�^�Ț$o�
-{T�2���h=s$��˼	mcg�����Pa=t(G3�^x�!�[G��5
<�����"m��7ь�P5@�#"~57T6yIx�B	�D�҄?i��,����
��*�N��H�
�x�{���	�eD�����X���g��t�N0E�$Ðt�X��x�@�h���p8e�]K�h�Y,��������/��/�ɠ���iEj2n�~t���W�v��o�k�M�O�C/$�Qr���^֥ң�'��f0B�K�PɈ�r�v���2��
�7p����b%�>xɤ5`]�,G��D�)�<@k�̫&�t�$����XQL�ù�V�ֺ0}:��p6:ᶓGO�%�MIZ��T7��u�w��H�CuC�j�I�a�4��-���9Xc��첲ɰ�I����5�&GohA�}d�JsȚ���X3�59|C܀�'2iru���^}�eL��7?�GU�n>���Ë�M��h�6X�fw�9�����
��<�L���ݣX_��ͻ�28�Q@kG�>��]i�S ��jdf��L�D|������͉���#E�ST0��ǘ&��	g��a�Z@���2�j��tNcL���bQ��ۖ�yEx�j���嗋Ű,�?�@�`�v������,f�]3'��Z
ΐ�4SׅA�L!��tB�a*N[��sIƧ]�<�������Q_,0��A0��-Y�������WKոY�75��@S�8/����G��b����n��Ϳ��F����õRy8X
n9X�i�&9R�a�8d̓���0�}f
�QCק�9���M�PO��
'����U���R�i��K�\2i�Q���7	96a���s��M�6�bgaȢF�0Z���������ٛ�	�!k6,�$c���};p���D�'v�qb'��Q��W;�����YK��t�>����I��	���H
F�M7��t�80ZK/��c��N�(���>\��s(>��m����������ez�y�a1ӗ��f\��Ť���AYW�M�â���`h��_oL4�����k5���`�0�j�7ܪ�v��73�-��x�:���FA�2��<�.�g��\�Tm��Y�ΏRȈ�����d�vK~��߮����rr:8�v�2:Q�x��� �ʩƷތ��_�w���
�w����۫8��Gf��姻�]�{Gʢ�����;:�,�Ŗ��4���$�dyc1Pl�֗ę��Q��OyD��g��Ϩ�36ɾ�e2Z��n`�&lh5���-2�#e
���������|٨o�
n���Xn���LD�k��eL����2����_939Ô?N��w�K�L�y!���}�d�w����ct�O��'�6	ڱ�څ�����$��Ő�-
��Wq&��mc)Ӽ�/�OK35��ռ8c

��2��h4Y-�I�׵���w�t�����j�@+#��όY�ӯ넢3+@q��X�}��ds�)z�lž\g�tT�;5І����
)x�O�ԑTJ�h��c��B��~f���0��']4X3w����UE��iq2�O�&��^G�7��s�-��ɿ�������ɏ`�����c��(�n�7�&��i�`L��s�L��1��N��`/cz��СR�X6��^��M��.�Ɗ�A�����<8�t�����>�Nf�e�s~�쇶_�Qk�zS�dq�Q��Pk�ͻ�FȀ��'e���6��\ԃ�%���ն�;��d��$�'�sOuc�o���8�w��D�YB�Ӊ#����,��	(�i޶6?s�#Όr���.�4f�N�,C2�L�3��RX.�nI5�f9���oW�Ҡ.�LQ���J'''�<EU�X����)��U�����dU�B�;��|0(��ak��!���m9/����%�ь
Ŭ�!�@DY~��ѐ߹�O;r[����	p�J���$���iջ+�
���>��B$?�����X�u���+��`�W�[��m]3�g��IwB��[����������L��<\n
iC3N�AY��EY#p�Y���d�X�`vY��qb�|��eqilԌ�,t�ɞ6we�		)���vG|��1��85�M�I�C��	u
�Ս�X�h=j>���St�| lc2n�'%zOJ�:���=�̝/�!kz�Prl��sZ�n�������:L�U�V�̗�h�3�k����8�.N�O_�x>��I5�-�]��=�m��p��]��i�����qy��r�ޜ>E3^,��*NF�Z1<=9��}q�(E9D�����DH9*�3�6�_j�H� ~���~#9�2.���"�a��
�K rL�L$׎pI����4�S
J���Rˈ��28��
5��*�2�Q'􅥐���!����eGCG
���{��/�g2W����۳[O��yO��(2	� Z�>LN��ED:d��s%��y|
��Cz�@Br�YE.5_?>��30)N�0P��
�))�T\���?�����.�c�LوD��2L�l�Ri^D��b��y*�Z��i�;,U/��+��J�;KXs��<8�;�/���#�����N�<ѾϬ��hGJ�i/J�Z�Y�ǖ�)��R�����-F6������9��:� �ZM��-�}�q�7�=�͗e����{/6l�#~#��q�Y��r��Q��
�F��ʰ�3"9s�J��J�~l*���D��g%���q$��P#3B/p��y�_��4r���<L~����wG<¿�蛀��|�6y!<���Q>�t#��&�g%�Q+
K��w�h���7�T��x�8d�b��i���K�0k9�t�_DId�����6H�7�%f�S���Pc��,%�in���%���'$hAB�*�	V�KG�e|���~�����c�MġڠIԝ
tV����l��O�����0r�2ٯ������|r�0gA0��e$���ƯPcT�9��y7*�����x6+ 5JE�Q��6��\�gW�6�g����g2�x��̓�����gj��%7�N\K7�r��G�n�e����&��`Ne��n�I�'��v�*��5���o1˩6�[1ܥ���MKf FG!�6����re%��hцM�5�椂sW��lፈ��$�s�h�q���:�d���p����p�B�0!NU׀�,�����:��(��Qg4�g���eBu��$ ��v���]�����V�p��0S�Ӑ��*��Q�1FI���N؋�@�bR�b:i
-'�$�.L�ص�'"#��NQ-|J��� ��-��d�8�U�('/�U�QB]f�q�5�Q�`$�q+�u��$P.q��\�R%�Q�����Qp�m�ٜ\� ���WN�:^Lh���$�W�|�S�lCh�|}�m^U��W�����]�P�>T>�.p�$#��9p1F�Y�a�sc��y��$byN��D��nzn\���n�~Hv�~:��~�F�E�l*rS�Rœڏ���v�L��Y˶���L�ϔ��:��o0�I�<	A{
6��V����oj�
�����6`��Yzc��)��R�cS�͍�g,��h��/
ɱ&�\ș:�s�A���5a��)^/�1�$�Rs9R���1�dڹ�10�d����1�� c��M�/`�`.e�X	:�I.Lc�A������j�k�ɘ�R\��@��4w�V��� �J�EM��AQ!�w8�{� MǒJb��p��\*��k�
A��瑔x�,7�	:��O@"�W�¥f&A������x��`k��i�/�+��D����h$��0F�
uXU�Oe
F#C�4����BS([�Qj20o��f�'{��6���}�S<S�r��i�`J2ğ�E�l�8>�Nq�𥴃:��:�+kʳ) ���#:����#�^��1�j���X�C�������e[n�eц���d�Tb�[3c�.��T�O#���.,��)lQB��ڪbJ�GP���Dl����,԰��
x��-a
;G�7ByRo�ߴ��vV�Kq��v�!�
��P�`���V�Ɔ�A(�_F(�:q�LaeJ�F@ҨĆ�r���ho>�4�Sj|i�!�aB#��
�Bs��l���=�Ue��H�Ca(P����R�d:
`�HI…P��<L�K�NR.eIڢ�3^���N���㹡�s��8N#�ӈ;�#�v�4��>��GUQ��F�7���O�k�8RvD�U(��8n½�U�+ɷ(;YL0�9�^���2֠�ܽ1L	¼��9<l�y�c�x� g�r��Xk�����2�q�������0�{�5��-���ۃՁO�a��q��1y�E��Q�?ɓ����8��cM��+�iK+�"O�3>�o���43d��3��<�"\0Sk7�{[b�eqp�bp��ějbf��gcR2[���6'�PW��h�Fe���m�3[mKc���4H�2�8���ڴ��0�M`æ���[ӛ�-����F�
�a�,�X���`cM�F�įBf��!p��9��Ff�j�Q\��$V�Zx3g�p(���<�� �h�̠O�w�,�ৄ-��hК�t���c��|p��٢-��d�2�L��EMN�0L
|&u�$�$�IG�S��I�N�Ur3	���c�n�n+(\���p���V��Ξ�Ɓڌ�QǕ�.�E��Ӎ�&
����3
���=YD��T~H/���фă2b�Aʷ���,	�\G�Ԑ�Znf^3sL>�������$ĕ�m���K����C|�WUq�;��xD~S&Ó�i*�O/
P��0����H���˥���o��0�q���,%m0��q�<�m��*>��ԏ����i��~��V�1V�.,UG��P�4,N�̲գwk��m�����	t�.Y�a�-�׮��e ��s�ހ8�Ԕh#�y�]vo���F�k,Cp�4f!��R�?�@��(c�b6�ޘS�m@��Ɔ�x�D��y��u��q�^�$�#2X����Ù���(�����vA��v���Q<Q��4
�y�_�A:
HJ��Aw8��v;n/4Z�D���׉���
�&���Pn+��.��CB�Q�	`/�#r�Z-�B>��yʩ�d��ha�;����nwrg�ˇP�Y��庫��Fy9n��!�&!~�4�N�7B��P]u�u�[
��D�9j���p|Q8�:
?���֕�?�N�3�q�(P��}��
�ĶS_P�ɬ�D�~2�wC�&�i���:��P�Hj�Y�43�Ve�3�C���?Sr�8P�A-���9�j�ΎT�����A�'�j�M(S�|[�����N�Ѕ�Պ�������FܱS0���ͺ��h[����evc��qΰ�;���
&�цQ�mͺR%����<�z���ː����x�9�Hx#y���`�Ƶ�� �h7{1����,*�s.s�Z�ρ�ٔVB�Ĵ�K���I�p�	QmF`���X�G��������:;�AG�vC��)zI"&�lDɰ��1��0	\��x�B��cTP�+���aV�*�
hRM���܊� �G�3�|;N�0+�0Mq���,�r���
x��3�/�zi��A�	A�VP)΃����c<�1l�)��'D�y3](z��6#�N�T2���6X�ҸJ�����(T�N�CSx�*����ͤ��7,[��d�-|Pe*q+��J��"��G
�y�
Tфq��4U���2$
9�I)/�
�ι��Q�Eҁ6ŋ�ozKy7ge����X����P�$/������f������:
g������f�B%k�8�a�3���잞�[#
'�5�Q�ll_�k�p��hI�a�3�{���_��d��u[�PA�"�7N�����@ͫ�9�_����6���Se�,�z:e�_'-�)O�ۘ�[(așC �ǸQ�8s6�W��#�W��Hmz9�>�Ϣ�H���_z�a�m��< sf���m�続M8N�\?M܎�.?
�QG�j'�a�y*'J*^JXA��-=��9.��4"�&��'Aw�L�-��Q4 �N���_���+���g�6�����0��+��k'�.��o�kԞ(-cD���V~C�R�4��d8*�B�iBA!
��(vh�G����"#u��#�X�u�qyM���
�2���MPW
��h�pAJP9=�q�7�����*����@��|6��t%~c���M��_���l�Yex�DJ�SN[Xv��X��I�fdv�K�5b6�E5��"��9T�cE`��Y�7�^#��z_�xcC��I�%���M
6dV��hsj�վLnt��k6;�\��ҍ����Ɖ��IAo9Uł ��Lc���T;D����<ˉ�@P��&Ô���<-t�
)$��Q
K��L8�ea|��Mq�v�8Ȭ�F��ύ�4D�
'afٺ�M�K�6�����no�	���a�9xM��F�r>��ˆ�m�_I���pv|>^�`�%a�I�	񯆎JZM_��L�>-�߁��p����~���wyĭ\���>U��E��R��_�O�m��4���A�#�D�'{���������	�b�f���&S2�
eEa��n�c���
g�C��)�?�zAC�E�M�	�L�N7Q�z"d�p(����p$����Cה:�gC����FsY�9C��*�����^Ks2-ũm�.ʊ6��W��DkL�S����QQ:T�M
8f-��ٯ�`��24��ܰac:�*V�ha��ђ����l�7zl��e�K��_�S�������)�ͼ���a�+�lz��&ä�;�ta�>�E��An��r7�|��˙W�Fx0�-��CN��\�Gq�(GF�J�)���8`J�
,��,�%�q�E_��a2S�J;�^�S��j��M��Ngu7n'YЍ\W�%��'����%�[[=�,G�31Q�nAF�,��~#C�	���1Y���p
	t���*��?�J��6�Ө�w�rX`F��n5��"�34ƙ\�2����K�(�	��Ci+�D��4No��h�n�e��
��<
�2�D�(#T��
�m��uc�P�����A���t��I��S(�W�}
�ӧ+tO3
�����s�?�_�t6=�
�$D�J�ވ��5ȡ���d7�ws�A��K���6֖ܩ%�Xo���Q5�ԃXU=��|�݆����C����B����ڽ�(vћJ��ng9�(n�'�g�o�
��S�7@M�75�Yҋ16������v펐�ᄋ��b�n 4�Z&�����������t�����N&d�S��0�H�Y@ '��>�nѕ�J	"A@��P���6<Gob�u� OQ�(9�S��sn#�/�L����#��&�vA��p�/��:yׅi�A��L���M�N`<0	3|�	="�q��{�B�nR�kÈ���r[�^��`_R������C;
��:�M�p��S��(8�_�u����E���s��5F,�D�򔣈� |�Pz��Z/�z�gPj�-��jK�������p�S���� ;m0�e@<����ӡG�-7B���8���b���q.i*-P�$>,+���믛>[P0n��#6Q���aN� ��Za�����n�������
�˫�k�9�G̲R�-w�t.��!ur�1�U'����D��]��+����v�(��h�{.�+]Zg���/\��֝?-�Ƙ:)�Ц2.h0�:9�m�NX#A��5��XZcO�b�'���Um7Eپ���m���s��T���,v�����#��t��'CE��ĐQ2��i	�xa*f����DEE1L��H�:a�Ī,p|��m0G�������	�A��L��&��Y����N��ALLEY��V+� �(jup��S]`&5L_�H�np�zQ6�Z�U�q���֛�I��F.��(�D��ĵ
��O�N���/��eҕ:B��Y7W���HY�o���g�%/6�����x?�M�N�0IǪ0���$`WU�
��m"[a����1.\�k��_G��~2���+h�ӊ�VB���'�f���Yi<�΁���9�KE�7%�^Ā<�gk�U���9��>)m���$��Co��z�U��t�>����4�q�`�+��j��d_=ÅV�5?��Z���Ɇ�K�쐚S�Ԓ�m)��S���є\�L].?T��;%�P9$�4S8U���m�����W��;��`*�cO�M��z�5G>�}X`�t��ۻ��;�ۻo����j{O8�������˳�l�Of�m&,L�U�#�A��OHC����y-5@���A��z�b6�#'}C�i�ӝ�����^ooq1ā�.tp�:�vzA.8"��:h
'�\%�a��j�A�M�4�ZA�Q���vDz]�)n�%1oq�z:l���s5��v%=g�4ќ�{j�E�)��Ƌ��EOq��F�6=OsE-dD~hM�CBOq�G�,�6�cg�T���y�:
D��ݦc�(����x�}�[0S�0F��{(?w��\%	�IwV4jgc~��6��P��j�n�Iᴈ������4ƛk^ő�j����hA�|4]�L�������=�X�tb���6AS���o}Z���5�nd�d�ظw�K=i�*�SòL��u���&��UV��(
��AVµ$\]X�ճ:aA)��Ȳv:LΪ.OY��^~�ڵ�.���=����o�,�H���Dž$߄��{��/`��y�h��� ����
����9;�\�?��Eo���蓣���A'$ĜD�c�� $�������ilX�,nxa�X'��:v��w^��&>�]8BRn�;aO��^
�q\�^���Ѽ��$����[8SEѸ�w6�;R:-nV�c���$�Y��S����
īKy�z�4�#<d�f5VE�|[�>���+"@���)\\d!H��Bg�.1o#ͬ�<d�|�P]U3ċam�mF����x�x<�%�>q�v2��_�'JC�-���hQ��,���V''�^Fб�xe���M��פ�c��%�+��a�Sf�;b��(�6.��i��[�T����p��g5��+�-԰�V+6K�
�:��'W^z街>��Ff;��W�/�d�w߇ǰ-�:��\���r�Dc03�_Ƒ�w�u���/�ǥ�Nڅ�+��Nlr��ش?-Ůت'�q����_~ ����<�W�zc$�T�'�	�$(��[GG�?2�Z@���h��,I�^����?��Uͦ}U�B��d�E��XN�`�DZ0�B�G��S[O����z=JQ�P��������΄�� ؘ��)q9:���mH~0�?^��Dd;.�8��&U\ic2!+���O|#��|����F�$�{J,ѝ�^�����'��d��#�"ub�
i�|���-�FD�	rAD�gc
�.�K"_y5�
˽�2�ԡ�������;B���N�
�n�I߮#z���|�t�)+/�L�S|Qp2��8A��N��t:'���3W��L����*q(w
m�$�\�8G��ƥ}�3�7�������Y���~76ߦ�S��	Z~�����x�5�m
�%�)�iTc#O����sk�V�̭)
L������ږ�e�	�acg�1i�������H�В�/[�����\+�ʲ�����O=���K�)
�K�����^��
���o��}���N����-��c?xo���|O��Wr B�S�̰�|ӝD�"�U/��0��ډ/�' ����?lk2-��2����y}@�n��t�n��ՇO���d}o��~��ɛ
�$�N�;�m5�j�7[[
�߰s�!���Z=��G#�BhI� h�_xN���ےPC��i�h�:>�ltHᏸ�s�� �n˔{k���0q	�;I���� ��;�9R��8a(�*�t�.�N�-귌HB�w
y�N��H2�&�m��a���s���L�+���$
���܋�)�Y鋃bo6V�B^�
�
mgy�(䬒UL��(���A�=Ԫx��7�Ұ�c*Հ7��gK����T
(� ��*vs�@|o��U�*/�����v���RO߭����QSj4�����^��N��-���:5�f�&v!��8X�(��f�0��L=^��Ŷd_0�O,���_���C�a2"-���}����l���3mZW����ǟ��:��i>�7�a3�S�Z1�ņ36��yb�	at��yo����zv�'��֐n	$�� ���;;<ʧ3�����d*��c���z=�M��Z��y?�1K#���:@�S��E��1�b��P���$�9�N�O�
`˹����*�����|�N7�vV<���0Z�p��V_"	Q:����9�E�m�	R,��同�y����7@z[��V�O��� �1��^J��4�8�S��q!8r�>|a*_�
���>��X��r�UD�zD�T�7����)2 $��M�u��Pz���/��f�]��ǫ�"i�j�a&7�;�_�x��&�3ل�(�9sp���9=��X�:e7N��9��U�nN�e�.��i���A�/���/�S��-u��l�eC.�]=����5b5B+�6��X%��XB����ֲ`��ˢ�Q����t�	+���o:�nN�lz���fu�#�V�����9�M�2V��2!u��aI��3��!�_�
�Mn��@�������Bp~������⃽+/��N?O��5A�Q���nr�t+�J�w����$̄e	�&�6=6��?��&d�"f~�Jw��7��N��tg`ە��l��,�z�ɐw$r�:�[�C�f�MN�0����44�t��N2'l6D
1a�wg�K��X�B*;	�-����-�mHGj�?����C���ȇ$�3<�ZTbv���$W�Έ�
�=d��t�����$�b�
;�rCH��c����C!v�)8P\ɍ�)�,�(d�4�	ۤ͌[o�!���gh.�1�1g��*���Ph�8���U/�y��+h5��y]�3�pQ�J�f�qFc���~�k7Z?�a_�M���O?�K�
+���)���
��f65�h|���_��t�,,���+}(�6��kl��Q,5��pm�~�M�#Œ�n�875�����.�ͥ���ssa�Bq�����W�_��K�xu��dP�&����V Jb%��m�
������vv�8�͋{;e�J�(������t��<Ci�8[�	o��%p4@��c�F[%늃��a�X���9�f�`�}�I�#^$F�����;�?@x�WTl�E��v��%I&	�B	��
\�}M�
�!�DJ�����B���~ԟ09h�z��A�ssѤ��Q��E�B��~��|��2���5=�s�<lm�<t���ce:��X>��^g�`�J9)��pQ3�"�O#] ���C�A m
:���v�VC��gL�9���~�Vyڦ�܍X���Uo�tl5�⟖˫���ѫ�
0�[�O�8���梹C`�j(�<�����9�os:e�7�F}����;?e�F�2��Z�2���\���{2�r�YO�%�������:=l�Ny�7���o0���8V��V�u$=+E�����gG8<'� I�9�d������s_���8cl�p���n&�;�m#8��]�6mJ)G@D�	����{�5}UeN#hd������U��7��UA,obH�0fU�گ�P��e�00���ˋ9o��I��������p;�^��ٙ\9�O,�&�1
|+9�ନ��;l�MEa���a܂-'��z]l��~�Mn��8���T?��;�v�p�|J1:��S"�N@@�.��r��4�����x�9/��8���4'��5��H��9�	T~G�Vw��ak5I��G���9Nt>���7 �x��h�W95��3UvS`ξ�|cUx�)�Ƕ9B�&�Xp��C�
�kȚ႙03�d�GQ@�N*Q���gp��"�TP�t�M��`��_��tG�XS6ղ�f��������p�ցӵ�sEp*�
�0�F�z"7�W��
�r���vmZ��k�۩��4��)Lp��fx��<_U9�s��4 ���4z,:��������p���Bj�feX
j^�K��̶��8�l����<���/b��Ĝ��_�(p6�ɓR�G����3�4U�9��0��v�v	 7c�G�1�I�Hl
��9��Z+�&����p����ר8��­KD���SRl�)R͖�� %M�	��FsE�vJon���	��n1
�&��œ➓{ԈEDА��f����r~��u���4���0%a>����XbK�-m�`�j�wE�H+&��k?T���x�x���(Y�_���g��L�i8R�0��k����kؚU�RhPh��
 ���n�1rV0�Q��_7x}L��g^��nx�P�/����Ǥv�%�2����S3u2�-�o؍Պ-�d�t�Ԩ?5�m��n8�4�^�j��|����n�\9��i�
jl��kK
�-�T��I�s�:�Sf����UP�^}h	n:h��Ɍ�˒�[�)�dP�G�l<���S�S3�$BINj96��g��\�By�6C���an��ZL�[�#x�6��s�������8TB
0��@�a�����
{�(DFr�4ljsdn8a�9@6EZa�I)U����.��P��tZ��f1[�{y�?�!����,�#Æ��ΝS����A�Kp�"�vQ� �C�x4Bs��,^x����Ju�3c�]^ed�K��rn�PЅ>QT1F�FBr{ J��
S��K��Niڥ㪤<W�=�j�t�k��(��S	MA$��A�X-��ql�2H�Sy#�}h�+�OQ�Ε�Px�X:!�Ђ ��AuxY+�5KQ���:������) ��&欶�y��T[�(F�(���L��!��=�Բ�4��xn^D�a��[���e��bRx|R�]����D���L�o�Fe�bӪ
����$ܜP�1�U�%�����ƨ,�z�9���"l�8:/�-��+5H��p���B�U*���ҕyp��G}�9e5� ˷��yٌ656����V���i����B��<g��ޠ뼵�G���[��������y�������>$n���2�BpE�߮Ѧ����8��D1n-��w��ɐ���)���_�N:�|��֤�]�L���W*"XL�%��n��A���M�Īˋ��G ���I��F0WՏ��n2��ƀg��
IVq	��錽��D�״�x��MAqO���k#ӌ3�W^��=ǔ/�Cܫ����`����y�
6)��ףӉ=�j�"�d�^x9��5�]���yW��71�T�Ν;�x�"��<�,	j@z�2�����^;�I�r�7�@G/�F4�aJ�|ŸXܜ9��A�n�;��J\c
�)67"馶�����Z�/k��/�݋6��G.O�4b5�96�Cm6�`+���L�pְk��i,ް��~��&��lr���Y
*Ⱦ��I��t� ,�2.�ً��o�Jı�.��)�r6�(;p]{���|�mݽ��琖�GeDb�$-��ux�88ZMIp�5�꼇?%@�$�������|o��I4�J�1%W�L1UQ�+*��4����+ϱNK�g��9?�$�d�{�OvޥK]��E�p�`�^���7�'���7��=2��7i�@XB�4C��"�R��5�9Bj�A��ƶy��
��
������6�x(�jq�)�8pZ�G��B��>XO��%O�zF������BA��s�S5�S���hy��Z.~f"��}v��=%47�M��o7=2hT���
⋑�Z�C0�P��c0�Q�5�(,&#��E��&����u���*~Շ1S]�^��,s�
�%���f[n��A�V��U��'vC(܂�O?��w�c7h7V�Yb7�hv Ǣ���2���d�
� GPS,�2���r=�56iXD�Y�a
&��f})�0p������Xl�Mp��\m�,ŏ
��S�R�	��b�W��;�cL�����w?��	P3%�n��Gp�N�7@�Ș�b�K�F1�yPFq*	�oq<���1��������W��L�U��G| ���{:�ٰ�%�w�a�J�`c';�%	�J'Ֆf�����ڠ�L��f�?$px�9�N���C�N��(GH+D���9��$��J۝-��*�F�7e��ļ��"�V�)E�$
��x-ΖK�����y��t�ܚ]t�K�=�		��I�_�:�u�xR��"���7d��p�a��:
��Г�W�n���p�#~�wF1��ȓfD�zq�t�Xo,AF�Ry�2'2{�t�����ס翋� <�o4�4%'LpC����5�Jݚ�jg�"�v���M�mjv#�^v��/�mN���
[=��B���pa��F����,ћ/�JG�@��ڄ7Z�ĆS�7ڟ�t�:Tr�l�P�.zcDi���Ua��{�PO��D�X6�g8m��Gw� Ո�P�n.��L8ֽ_�7\�Я�R�S�f�{ް_�G�J1�¥�R�b�9�!I�%�
���J�[�U�k�o��r�-3N
�h�H�N�CG'��ct�で	�����t'3��N�d�!d�J�-��*�?����;'���K�
{Ts�:|h�E���0��B��xD�N���4�W�*(�x�)-)�q�]�_�%���F"Gg�R��B�n�w�W�m�cO�!>Tj�u��z����h#�o:�;	%Z#Ru�������i۱�	s>78M�A�AV�������qŒ�Aל��Fag���g��_c҇����WI5V�5�J/�Qi�3��&k��8���wc��|�l�5��S%�v����[vؘ�I����}�2��w�F̦e�c��/�nDn*~#�����G8T��oUÙ���9CoX
*�����7����ux�ZE�x����9��� 5\��LqcnP�G�hs�G�O�XaN��?���Љ��%�4r���$F��%X���M��#P#�r��E��#�9�W� "�5��Cq�h/z7i1@��xM��8�:m8����q��*U��H�U�<��TH��v����|
�L��xn�\:��h������__�S㰶�ғII~鲩
�:]�b�W)Dċ���IW���~��#�!�Zm�c��L�*���I�<km�F�J	ԅ<�ib�H�V�utt�<���È�Un�G07��e�yr U��30#�� ˔�1
�O|K��{������wQ�M��D(�jX@�eS�@�X���C��M&��F(����&��f�=~�Y�Y�W�4���v�n�T�����ʍ����J�aY��k�f�ݰ�HYg�u���)�C`F(�AXcײ/����m���KmJ�l�h�ҍ6�8,��U�Ͳ�OP��._;��((�p�񨿓J|�W:�L���������'8NHß��4U��9�G�JZ�;�`@��~A	�e���G�S�.a]R]pG22aM�����do�?ï�%��/�[���v�t#�!x٤k�P��х�6G�F�C��gF�.Il5�1z��{8��&�Ԃ��l���L2�0���^� wmm��YSW��^���P`4���D� i�(yv��Zo�T��3x-[Mg�P4�~��ㆄ�|R�<��Ԍ��|��(��K�Q����d\�E�*�R�����e���v�'��B)��e� #^"XN�	q��?�ɟ�`6ر�l=�@�Ti�ݪ�$�R�A�T�-�1�E��>0B�M7I�I�.�
h�"��L1�!��#���|�t��2��z�I��[Y�N�������~?��4��F�5زv�ݭě_7��5��6X�7�_��ʾ-j*�aS\ʚ��-��R&f�\��<Rr�%���G�BLŒ���j�)���ꅗ�x(��}#R�w�Z~�ƛ%v#�R?	ejն0�R�ͼ(�FA���䄭�nm�*k��T~@��hw�E�f�JS�iH%�"�A\�"��Q"�쐍�@,dA�A_�0[L�D�z�8�b���TiƘ���=�^:�tKB�yW��Rz�S�M_�7_6:�&��ak�!�"��d���|���i'X���aIB�t�.E�4	t�*�Yp�L?;bBc�"�0X;C�<H��u�ɣ���%'��3&��B��x��K���n`�\�T*~�N���V��jdةW(����43@6��+?Ƶ�?���8�*�i/���(7X���n{�6�;6�]��2y��s�UVi
5�(Y%��u�w��d�GT��|�)�̘$vfg�?����\���9�����I������kwJ�F���|��|�I�B6��h��[�52M%�h��f������ؖ
�����K�	���C/|�?]F�8
4X�5A͉�U�Dh4�{ߤ
c������q��fa�C���x�tv0N�K��
́�/��v�¨�F���~ٷ��d�+�&~�����v�������.g2)��&bB�g̎�	~Ǻ�����Ʃn���K�\��7���cT^I��F��������p.^�����^�c5���{-�$DZ">N��i
�(���D�y%� ���]G�o8J3{����
����I���8�u�!{�Z�����a�I�
��yG��� ��b7��A�*��CT�
��Z�&`�,���0«���	7�_*�X���i�L��/��Ck�gH�*8��22�����y��Q\�w���^��˷�S�9��
�K�KNv�Դy�cg��ܿ"���y7V,~�s�7��I���Vn 8V��m.}�g1��qj�����6r��q����
��=���,�X�X�us� �����e���j��E���L��rn�F�R���o�~�󏰷_��h�ә��[���x$p@�:c\)ſA�ʦ���F&���Ε	���0_(��<0�|�)sr�4Ӳ���3���クC����BV۲�=��Þf� n���Զ�1{u����<x��7���x�P�9Z�j��f�����^���L�rI��?Í��p�����F���t�ku!UЛ餓w._�`!�^���PɽJ@�VX��Hy�|r{������^��`7�ZS%a-���YJ#�����1ɷыoO�G�,�n�	x�ay�J�n��0�N	}(��Mo��WW�/�ńn5M��U֭�߼
(I�jLO�@��?ìG�f*�O/�o|�,Y�US��΄%�L�YYQ 3������:�1�Ѫ��{����J�Y{��MU5��+���{}��ܫݜ�D���a��h��e����ZnѰ��8x�Pؘ�
��f��o�ac/�*��3U��[O�^�X�M��džxCB�U��N˹~oNՃW{m�	r��C�5pr��cb�<�+��l����ND���۲�wu��W�L�
�@+㡽��X�h�R�
6��u�")7"8��Z����K�Zo��4%�#�:�$�љ�$nl�'�}j7p�(p TE̜l�+�}<���04���~�L�s�X����z2�scnQ��H�2��Ą�����ьA���uo�������Dʥ���|��F�gfIDN��R��.B�fhE	�,ܧ[�H��P���0#�	h�j��q�wDݔ7��43�
nU���A�3��G0j�P�k{Q�n��Ac�h �%l�π
��Y�D3Afa��7j��5�ׅqp���4�~������n�>B��odMkp���d�B���m���7��k�;���^0�p}����گ�>
mZQ�=��M`�1�؜���r��;�7�e�%k����Wf�8�ooط�=)�a���l�S�P[�95�h��Ԁòjq�xk�O!N���<
�<{��\x�T�*C��Zps�⁊µs(_)I�s��0~�#��^��w_�R�qz�4�s��ѵkςKN�dz��ѝ�цC�!��V
���b�{/����������&C�V q�6WS��~��Ke�&R��_k8T�B_N�Yx�,��ld�a<���s�a%�paJ�۰��_9�
ᧈL�xl�"��^��]����tc���N�6�X_��O�����	p�.��=�c�yoKE�c��]�1|I�i�7��DT�t
Hh���]�Z"GT`���H�N��"�1�!���^9eN����M�t�6j!ڔ��G�?oPСWJ�����m���WȶC�i_�i���i��Vr�]et2W�P�#���V��WLN�A�.\�-Z|0���߄�`���6�UD��`��8ۼ������u��I6�=��j2����i�1�W͟8��̓��,�7���Yuß,W1|��nX��@�u�~�}���Aa�(�08��6u�߽�F�T�7�<lw��'zc#U\V�]���.�*�)ʼn���^�XLQP� G6�Z�($�1�+���gK���=�%�0��z���v��n��\xÎ�S�ݪ�`��eڇN�����$�f
�P�NM�3͈Ma�TE�+�}��wvns����t��6FW�݉�4blW����pJ�`�q���谹jh7�t/lt�Z�u��:�V���wQ������`y���3���7a�����ͤ~Mv�
ܛD�*�Mפ��0�1��s�$�]�i
���� BZ#Ws�b9}�"�^|���*A���d�Qx!1\qoD\���40x��E�gs[c�	n|���S��F��ӟ�orz��7=N��$F�(��gF�q����⪭�T�&~�*���W����n��U@fԕ\����͐M��W=��������z+æ��͙��?��
ۗk7?]����\ZN+��Gk��dC��gBS�V����ߘ<?k�)�B�KV=a��J�[��Ԏ�uO;
���Y'��\:�r�l8J�0�� ;Q�Y&�.
 1�`0���l�V��)ٵ�Ӂ�
'���BZ��L,d�3;�'A��]�����}c�f�h��(2"T����?����ٌ0��Ε+;oIrƱ���"g(��q��M�ݴ˦7>&�1��{����q�'�vԟ�;�Ԁo����@���z
�T7�]:b\������}�z!����f�a'�l����F?��☉�R:4�
��w�&o:ӼG���S��Ht�v�ʘ
�E !U��pVϹ(��!5 �g��4�j�m��
h$�pV&/����&ݯ��+PpȈi�@��E4.:-���/�$��:�~D `��7GQ3��<�L�B���'�i�w�"	
�7��ñ�on޼~�/�Pه��qiB,��9sU�wS�N�������<�S�7��ˏ.uת�b�/n?Q�����&���U�n8��o����p��8)�ҕ@�J;Xy�K������hc+�X�y-G���C�k�l�JU^�a����S�(�AV��ర:�n$�G�G<|gڰ6,,W	%H3Sӽ	l���ɡۛ$D�\&u9�Ee�J>�VN�+������^�o���N���vv��ڟm��5�O��[��A����m��c\*.Y�T�"��4Y�o���/B�r}q���[� 
(_����do�s��;�Ѝ^B�h29�=nt�I�n���<��.O�W�>S����b0��4t��Q�I�M'�K(��Ƽ�`Y���-hN��?2FAqa9�&0���<=�h��<#�D���C�&9��
�vP��]���T32���FR�,��_�u��>#v�CY}� ��t�
@X�u"WT����`�0���C��Co��	���v�WR�`�Ivsf
�*���)�z��yq����.i7u,�6���N�mK56Zub��!���d�fyY!��b�#�XBc=*�p�J�Yb8b48B'��
���vR�ybnӆm�	�	����D�l�	\��U�2AO�ܒ�t=n�Osg�+b��h7j�w@���:��
�(�iK���-��i�(8ā������}�5��t'��ίÎ�k�Qqzk�r�V��ম��X�F6p�ݔ2ɠ�/���!�|b�O3���c��hX�;[L6^���G��F��灢�8T���dJ%��vH�cDzN�Co�!E��|�;���Ir�n��0R���8���jFiJ'p�1<O�$�׈R�_�m�X޴Z\dW^tL��C>�D�-BR�`�I� (UŕV�2m��5��`����l�RR�F�Q�ۤh�:��K��7���N��Kc��n�r��08���a�ͨ�8�9Rj��aܠ&|�!���~�0;<���t?���XS�u2�������|�vcG�fw�hJpS�1��o���:��a�5��I�т�ؔb�d�夛:��6�ERMm�قpkϙÒ�"v�ԍ<o� 7
`3@�9�I˶�`�'�5��������>y�F�Cj�8�*ub��}bt�}������G������Of���#9I��#�xFR�B�3�8���Vy�����<�i�?��7��s��6|����kX$�Ll���Wbq�a��3��;��;t�^�gz�P� H�S�����9��{q��M�׺���K��&��uu%���p�4�3�)����H�;k����G<�,s=�W�tL(x�=�R���ډ�́2��[���j�寳v�&��f��%�G�pE�ݞ)��[ @@%6"ʊ)U����s��*�1)H��w��hD�`�O�P
��Zg��i��U��
z�%���y�� �Չ��s�E�ԏ��+P$~(�;\%���Z=|7x�i��>���L���Z?�a�Xé6	����r��O-����.b@���g�[O
��Y�1(����I�e�ߓ�֓_{�$����V(���M���%��ͼy�\%�X��~��Irs��ͺ|���ޏn�o�)�=e6�^q�Rs�5�u�F�Ac���@�LOa�87+sĸ�7��V�fL:^o{?�yR�jH��i/ĵ_D�U��JL�C��J$\��>�n�Z�[wo���;D��g�O�a�a�$zSG�8�
���^�ͽ)����-fW�'.������%��=��F����eQU��kwi�
�����@M�s�:�*���[!#��R����sL��^4�-'	=n��C�]žC���)��+�W^��@9Rq��#N�w����s����ⴜ��H�23�!b^��dĮ�VRT*8POa�P�b
�"RE�+e�\%3�Jf0e��~�|=�FQ�>�`ҍ8Ϥ��E�Ac�n�ի
[xq�$�qQ�bFM�t���z�;T��=����l���)<��<����j�W���?�!N)s��r��KR�����5��Re�ܮ��9a�Q�e�a6p�f���؀6�%�j��W#�E��?��C]fA�pSq���/_~a�&�%Dm�7X��nDX^���z�Y��bѦ�FK��&Q�ڝ�s��f�ʓR^�R��t
�,vPa����}P�:�D��
7]_>������HK!
\�����s����;N*^�W�p�MiUf1VzS��^~1��၆�Q/�:"�5]�N�$��.0w.�H��6� R�0l��9W��r4��>
�U�Tu��u�C��u�/�-�nL��q
�$@�
U1�(�z1
�0/n�h^�K&"8{`*=p�
1=��L��:�D�02��P1�s
(\XR�Lj��SMڦ�Q:�B��~4������|�����Nfp˽��r!UG}4�E�أ�>�5iM���~F���DG
D�m�'2�����
6�OY8g�f�/�U��pN)�5��%+znj���ck4���І�Ti߰�0�r�8-�T���k��`ˀS��
Ĺ�,�$��v�%��Gy�r�7�c���pG�#���ƪ�~��ycY��}�ݏ�ݧ[n\aM��2�%��%��Pvf}T�	��������;G�1B�n��
�`��xj��V�Q3�n�/B-&�'���e�{9�yN���w=E�4oۓo���rTo�W�@�ɰ������V����w���oOa�RË�3J-�Ͳѻ��ܨ C	ąK]��q�T*섄�s�**�EV��qƽR���a�a����k�����g���x��w�������,I>�Е	<~�-�d(���™ ���L���[N>��#�4dr��Mj5sM嚪��?`�[,��.b�{y8��
��������c+�9���*�ƻ�(�GY��!��� ⫖ݜ����_N�;�ͯ.����/����J�+v�Q0U��O�|�o8p4�M]�iu�r�MHc������
�:�Ơ�V���6|(KnN�i
r��Q��;���K���q�,s9��/��A�O�M��k�aO~���<��k4�Q5�҉ꂎBL�B�}6.�/�V(857�U3���dBw��b"�&����A�1��g6>K�sIӣ�}��0�1�&Q���Ͻ���Qr���*7,�C]6o��K��c�瘢����J�]fǪw��<���9=��t�`���
�n����V�gC���t)�&��J��)2��u&;|G���q��HE!ǔ+$L�	�a��ݟ�#Gg�Tjq�:P�Iv��=zq}6��u��@�b
�GU4�N��W��u��f�K'6�aF�!eS�F���IA�_CGUnMR��W�8����5G��i�:#�&=lLnO���
V��m�x�l
��_uB?�����_o��]����=�B����_P�>P�}u~�l����a��ƂͩD?���g^X���=�ySK7ƞ�d�+�X���c������r�ߒ+�:�W�S#�s�sذ��p����Z(�z'79w�
���s��S�M���IVs�P��@竼��'��������z��?���
�9V��
�^ذ�҈�T�p��r��(�J�	9����oݺ�έw���ާy��/g��d�v(�-��	�C\�����e=*92�u��ȍ�t�	� 4<�]�Jg�ZV�!H�V`�	��K<*$�Ӡ����#�&uDw����P�����%�Am9eV
��G�	|���"Iy���D''O9���]�S����n�S��'[$2�-;���If�%��'�#D�!����֨���!^���uJyu,?����
�^����]�ML�CL�������ZA����!&�n�	C���O)��m��5�L�;�	hP�c��s
p����W�q�N������ߢ�窣�3�H���ٔ��g�"���w�,�ܟ�<*o�;Kp�I
65����׈�ٰ�\J��n�,7�7�V\��Z��LQG������) �s����SF�R�$v`�N*7�0L׵�|��~�����3�8-�Wy���U����P����S��6��1�e�+�l{u^��Y&���Ɣw��M
�̦i��0A3�[��zg�ֿ�H���j(`R22���ތ���(��!Fz���udʯ�)L�
�렝��>5�7!���H
B�Ke��*���
(_Y�=/B�iB
\-�f�A; 4���mI�m���y�si�A�P��~6�%�٥0��e@~�4]�9���۷v���
�OA��\�(�����C�p,��9�X+��r�.vp�f�j8aڌr��&�nw�4@�`����Xw8��۽�Q�ʓ0r��(T���(
��ȌVc�p����X��'�R��$ű�b��)<�G9l)�|ʥ�b����)>*��4d�_|��:	K�{g������wc	��Ek�G�=��K���(�f	r�7�v�;�;?k[l-9T 
[iK�͓6܈�X����x��m`7:.�S�4���K/�D��/��<cy�&�P��s+6g9H^�7�R0!���\��i*8E�n����a��7_�v��+ N1�J��Ҳ,a7s{ڞ EL�n�*�vw��̣[���4�l�a@e�~i;J��\�>�8� 5�)GY�RX,�CSBm����A����lD4�me�_�@�"��nO�5�ʩK#W���t\�d��'*�p<
c���\H��i7�����^
�Q�O:rg���q���iOL-!���v�/�x�%�0e�ݕ��
���[oEN�V0Kn��E�PͥN�\�q�(@�o3J�/�3s�a4��;]���긦��gŘ����t�I(�q;TN=����́�0A"f���߆�xY����t=̋4!�B���Ҩ�vH�dS���nA��)��W��i�]�a.�-b���
�ᏞEv�C�����-��O���p�oKps��G�_����L��ݗJ��������"�5��� ��F���Zf7˱���/?��|�y�y�u��=kw�F'��f�+�f�~��6�<�)9�]�d��h�#|�}�d�_���߁6�΍W_}U���T���0�Wɋb�ôk�J��9z�`�A�%7S�^�ⱪ�L�2�r�A/*��NB�/:�e��'N�[p���5�'�-�>���؉���tǃ7h�wKbN�h`7B�4�A����R�s�gHg+Ef	����u�������xBw���T8q��Q��,���5��t�o�*U_�Tpm��5�A�@�O�w�)�e�?Ù�/H����H����w\��D'4�v��g�U�P �����Z;99��
�6=ʹp[\��Xo�����vmQ=i��x��ə���8���&MA]�
�b1]Z�N��̎��Z�����NJ��j7_Y���¾������`	nn7'G�5ZX�f�v�m�Np�0��qo�l8O�UG�X�]�S��:2e�
�~{͸�a1\�tq�p�#���(Cw���׾����Q-�<+<����?��ݷ�VP�e\*Eȯ={�U\8iu�	r�J�ٟ�Z$�J�%��]	7rH�*_Y��;���&’$���@�$)�w�h/ȏ�V-�ԭط#�8yƛ�J�3v{��J1�Z��,��O�pJL�8�Q���׋�
��pSb�E7����F�BC�<���<����Q��4�ۈ���)k'�5��?X���J�S�8�$4?&99p�Vč���#�k�%�C���D�u�@�D���Í�/���ɕ��M�p���(�0Nv���#�[jh寂8�r����I:���/�<���c�V0�7M�.$>Ӆ��$(�GD�Ʃ�	�7��慳�:n�E���t D��E;�#�.�6�
&��^���:�ORף���h3���tdJ�c�ɗz���hI(��Qn.VA�_�a��M�I��Z�k*��������b6�%_�}��V�)(�t��"�Bs��K/`NDق'^��>�jR�
��Sge�s�}!��y�&.�?�	�����-��L������7���g~���y���?��6}CNy�jT�ȹ�qiqÀ%e�
��Wv�F�<�.6�Lt�x$����&��@Wί���]�3uG����d��CCoJ�9d�glm����i�^2���P$���g��.�@.�rb9�&��$�$e��"X�P�i��%���L��x�s9��܉:��Pm�{�ׯ�	u�&l�h�*-a���[l�x�L��Ԅ�S㛴��cM��i'��Y&��#􏴬��f�,R���a���E�N����оz�T S��hHǭ�f�-b����h�x�(����Da8����|�y�E�-���s�0`|H��)Rs4_�	��%��B�q8�uA�yH���|_̃-4'��]#ϴvs?v�vš_2Y��txg��ݶY�2��e7����e7�7�M��V��՘c͂
�k%��,��hSg�i}tg1W���ΥK����7�=��|��y��N�Ť���r���TԵWA���D��W%���(�S?��o���<C����3̲S��ɐӾ�m:+�g	p0��
��6z}wW�2�֋��A V���2����M�'!�w����;�����ģ��t�C{i�͛����)`�)�n����%=�pAԦ���B�HeO�I��(NҰ'O�k��!r��
�Db����v��2}?{�*����۬�xx��7����]/¯��� ,hu�5~ �,M�@��O�P�$�S�@-�HTV�_��LBGE��Z�<�Q��_�3A4���t��T}�+S��F2��㔍��pRj�o�G��J��2����3Vy�*�N�d��y4nF�؏��Fq^�G*D�Bq��wj�bzi��\m6:g��<�ߍ�����nج�o~�%�����g�V�	��3l�����N�М�n̲���R�tٔ�s̅i#��\�T��)�*�8��(�ƂMyx�q�S��qnJ�e�9��1U��R\�mz!�a�Q��Ve�'�
�y�i���3�<��?c�o�������T�:̦�L6Lg��GG����S����4ɒ��;�Hp���)������U����;����w�a\�f�V�
�SI�dt�Ɂi�Kϋ���z�I?$,�Ӕv�!᪐��Sܷ�s8ZD��m������4��QH|��V2�f+0j�u� R+�zE8T�7�7�yj�0�t�0@�.����� �w�MR�Rp�b��X|�@g�E���L}G
�B�L9()�g>���?����B��03�
,l�ⳚmN|�g��L�'U�D�k�Кi7[�'�V()DZ�j�s�� ���iJ���xD��W:�̯��'ï��(��!C#@�úHT*�_6�ݳ�Ul����/�n~ڰ[�P��?^���A���������(����~��
���Xǥ������b�9[rUFS.�M�y���	x7�K�_;Q���M�}]��<U�0�*��[� VmoK�=)�_@W"�FGM�X�����GO�69ůaD�M�q��|���t�۟|~Đph��61�}�.t9!�����π�FX}����_����?��;���_��9w��a��CVps�+���d�N�_�7Wa�s�����Z�Vp�ȷ���V�N8~��0���nQmt�)�CHc�^�1ۚ�(�3���f�қ✢֓��� X[۠s�2i<���^l��C��|p��0����rpe����]d��6H�GT<luwrƔkh�߸���SĎj?��:�F�?o2#���f;Mfi�,z�{V
m�l�_%;<$�f4��ɋ�ͦ�H���E�"�:���
2�lx��
s��-'�/��my#���B���gQ��Ղ�E`y�&�aB�H89���ԙ���9=��t͔�M(�ӥ��u�߯[������q�ε{�U���_��߰kmNg�U(�Iz����c��$;_�Sf�Y����7/�(μ�^��SW=ܬ����@���)�&�nvNƸn�"��X��o����&�]&	YA+~���:�׾��G�/b9}�h���?f�>���ǟ|���A�#���1�~��O~��OaMd2���	i��H��Uf�Z�	�}m���*��}\+ϱp�U8��	=$�~��F�K%!��N���
Dyrr�`�`� aX��_]b���U��xWeu$���َO���i���Ž�yP�Qd��>�I��VX�D�F1�WM�����ǁ��#�z���E�Q;��y�>2����=���z}ӝ���4�d#���^Y�y��;�8w��B#xP&�WN���7د�F��z�����Q�BX��lC�i���p0�z��s�������==��㘘V0^����:QW���0R
,)H�Y�^�,a�+�-����ޥ�p֩1�/�R1{5�ꉳ�nl���ڰ�1z=C��c�m���$?
�YB���>�[���P�Z��#c:���*���Lǎd�pۭ%�u���/ї����nX�Y��a�qa�N~.��fQ�u���v�<�#a+.���*�%��9*{
R��逬P#�b7=��e��>��xA�}ŕY�ѕ5�5o7���ϵ�~5�%B���ߡ�bw�*td�^gc�W�߁C�^x@��>w�x�HGy�#��V0��9M����"
��0Nz���n��u%_�K�Cq��D#��x,��ۦO�DN"r9ܧ�@��*���lot6�8G�u��CԿXS_Zf)|l}�$���7Slq�b���A�8�px��N��9HH�,'~�Tݸ��h4�$(z�e��vk� �&N�)�H��n;��g�)p�����M�n:i�f���d����ۂ�3�w�`v��U|�ݰ�0|���Q���f�(.u�d
�A�/&����~~,T6U�E��
m����7w���oO��)�k��K��s6�O;��D��+v���k�����%�D]�ܥ���9Y�1�Ʈ]:A��+$�����n��1��u��Խ�q��I��ckz׆��j���$`���H%k��X�ce1S�b�@�R�B���%RUӵ�G/1�w���2�th�iDMa-@ͯ��V��u�<�s�96���?��>>��M������;:�ھf)4.��Ϣm|���k�֯�\/�q���: F1�>����Z947�z�K��_>͡C�h�[,$v���@O ���f�mڤF�p�򮣟�"�j���Fv�6�c�^T1v�p�0���/��]�7̬i4(�K��Ú�u~'0r(`nR� r6�i'��t�q&&[��r��sJ�t@�T�0�Dkѱ))d��tsp�o$f��M:��H�4��k�
�_�0S����p�h&�t/�g��F
�yD#*��I����d&��4��Pr��r�aUjz-O��ؿS�E����t��eEy}5�t���F�U��� y���ۧ��`���h:]N2�wdnҤ�/Z�o䢵|�rAR���#�"0��r7��{ 3�Š��ݴ�[���x#�b��H�آ�5V�曩���"*D���:E�G@�RT��k�
~8ņـ�ЪI=���E@�{�ŕ���9߬������}m4m��㜗�p��l���̊��h�J�B*��O{��	.�:���W���[i0y��Hp;e�����g[:�f�Dyl�<B+�����<���6/�	�~�&AQ_��z��}"��H�H�CV7�x9�,ᮁޒ�͇�7�H��[bs,>�y�_��?����i��V�3�b��1�ɑ>7٣�Q;�
���d7���������zG�8��uoqr��4)r����'��\���-��A
�RI_CLW�f�`6�pY��&�+B}L2��z�7O�D_�VT,�$N.i��b��fF�h>U�[:z$�
h)N�0Й��`��Ʊ���=�z8ՖΒ):0�#�;=M��af�[)�z�'��ᕓ,WA���p&�a�ƌ�h�cg���=������yp��^�L�����+��NA�ty�`��nI���:�,w�whJ=�7/\k�*.��|��q�X]r���m9(���� �kvnj��4y��*.օ��Y���k�ȦbѦb�;�,�#��<�����9�����~�L�E��kؔk����Ȕ�{�E�<�I��u��X�����y֬���ݟ�����G���#�*��~�6�0\���c:�)cV�0ڢ5/�J�����8�m
n�J'��`I�_X$�Ss\�ɕ6���$y�twŝ�QM����_�f	md&1����/�(��uup4���B�>�*7�.Kn����K9w�LlK.�c��L0�7��{�N��CK��3|t�K���WB�\>R KƍO�+7] \�)5f��t=��_A%��oc��6��FH�j}R�m���8Cr\�L�I�� �Rq ���|).�.e��~�f�1t�GLE��/S�ɗ��vr�"��Gw�J���q���#��<D���[��Γ��Užu}� �MY����P�%�m�����������7Z��g�5��!G�"s�b����˥SOc-��gv���ްqd� �6��*g���l�^h�x;+\_'O�����e�E���;���u�s{=O��=.g�J��ad���@�f��Q�Jp�:���$���XX��=����|~۾����\9��kdz�\����Rf�C�Z�Y;vʔ��d�ƫ�G����R�������t�N��;��^ ��S�"e�:Op3w���`Xϔ��hCՊ'rG�8ʥG����v�Rd���\��īZ�v���tߪT9"8�S��8�.��5	o��|+�x=N���<J��.|
D�*scć)��9���/&�I0V,+�y�1(�)�s���5�m��"�˴%Rm�p��[F����oIp���m��M0���7]�$�+?�`��!��!zM����lx2P�	���<�6�]�Q�{ߦT�Z�@5�)��<���O�o̓[��T�3e�z[��^j��0o�f�)ІŚ�9�k�j�ټ�pV�841ز�ƒV�ٜ���r�0����འ}���ݘ]�G��%y�}ܝ��f��ή�|�N{��2K>��yt�������{
��,�O$O�XT�Z7��=s����8�S�/P��]�����S���	����
�ppp�5�����ay�/��qn���+W^�
��+W~8v(�����!�ڸ9e���H�g�0[�=e$�6�W�����8N}`>^t�5��L� u�&%t��{ �)C��̓/jPy�t5Bq�yT���a ��vhS�=��F����H|��	*�HI�=QXVUQ�c]HӻY�UQ�R*-
%u��vU--0G�{������Uw�Ts�?*�U
A��UmPL�W���1�3Z)�#ڜJ��-�F�*�����V��"���Um�(//j�W$i&j��Q{�g����$u�����ok�t1�,�r�7	i�-լ1؝�X�R�B{1[�h~~FX�+�]�;�"�\pH�g�!'�V�rK��#H�V�������=m�M�u�p���n.�݁0��Y�imѴ��Ɗk�����6݋���&C^��U֔*o�y06�qa��	&BM���uښQ���z<?n�g��83�ba��:e�Da�ATg}�n�>�}osYeOcݘܛ�I��V��5�� n��C4���mݾ]٨�n�p���I���W~���ݻ'&��~p;����+W��a�Q���k��H��|Ghc��oE��rI�
��9ٔi�l��t�tgի�YZ�	����7�E�tO2��؆�h�%<1�N�s�^/G8:��#�d�R�4$�
�(�7P�@P�`�{1F�@��.A`Q43��<�
E���"�X�B��#
^W�v��]���5 �Z�p�*ci�J!wQ
����P�N�I�J���g���0&����J���1&�'	���Ё(Uq8�J�C�Mb_��_�*��@��6M��+�tL�q�q3Wƹa�{=���KU�a�J��V�uI.�BYD�t����Qkg#��r7ͩ�ֶ��v����Z�)p��q�1���ͯ��*^S���o
�41I��GR=������︩p�[�1��;��;�K��6R��z���'g�V{H�c�g;��S�My.�hw�ʭ1���&��ڜ��V��6�E�C��{G��EGKWn��
4)u�t�8Br�f�֏O��9:�!�(y��ް�������~����v��}��X6xK��'����A
��O�f�h��;cH�ki��d��$E"Y�UP�d��-�U�J٢j�Hhe�.�kn�#��OCy3�؛V�6��C�=�GbY��(��N(�`�ɥ�\q���R���3EJ-��Il�Q-%
N���:!	���H�i��{�K��{���A��� �>��DD"M�:��B�^:�L����I'W!�#ċ����L<L�N"�j�����^�5\S�1���f�`�Z���yi7H�����:�:Rۙ��9$����?�*�t�3A�� ��j(����=YL%�x� �-�,#�y��o�n,�<آi�VS�p�L=��+�{jq����
�fõ����&MSx��ߴ�
����`�=�LLG�&��#ކ���$z����bw6��jOT��n���?/5.�f<l�}�ER�՞��B��E�*{�ݷ��_9~ضϖ�p��4���莁Y
��2\�*��b�'��1d�G�T�$3�/Qܷr�ph�(�ϭ�Ϲ���{���Wpv�4��L��ݸ�M����>3ˎ<��
W�4�A��B_��, ͗BV�ـ�'Y�RB��C9ߟ������Ȯ�y�O�n=��
G.�IO������k㢅<NSxY[Fǵ�;�\�lp&��]��i��(�xN�R"
���_�U/:!ৱP6~M�������*Q��ʓ��2~���(�4��I8V`~�tH|�6�x8ߘ�,q�c��������3Y���373t���g�<��q�CRcӌ�4��6��@���}m�"'�4P"��x8"��lY3��ҁr�%���[��G&�z���C��l(e�n6��6���n,s�Y���r�|C�x��'涌5���O�bM���?ډ,pù)��-�����j���\>4�f�}J�B��( ��9�~���`�.�9�;���_��o��u�R��M������Y�u���Nڜ	��ո���[��T�󲉯��}�=�%�Z,y�F��o��T?�Z«�KW���'l��������wcۡtǠ�����6n�K����e�S2��)
���H��t�;*�I'�}�@æ�6�
���DTt),��X�Ѫ[�'�A�b��,Sϵ���=M�V�]�k�����d�]�T�4������B�A\��#��p�E�
�΁�jW��� ��7�77�1��ͧ6f��(0k��A����@c(�\�<�"����Z.�cnT4;Q.h�}��:�WH2���v^��J.��2p��vG{ReԪ��#��cc�

�BTL�9}�@guX?1��nK��'��_���W���{�ge��'t��M�6�b�pS�]���E߻��ڐ{e�IH�b�~��t��V�P7���c~�"�̿肍v��H�ߙ�U۷
�İ��[�Yx!��	�ؒ��x{6p�ˌ�zjS�U=:0��ǻ=�ZlB,n=O|��X�<�S�O�o�����?jt���S���m�AƐnR���qc�s���w�&�T#������ �P�	��H�ݻ��u��
ذ��r7�� �����a�8��dV�IzS�*�K��/-�-n�(؄'ԞrˉyUo}���Š
m���I���7$�(��<ڍ�dPޑ<�5�>�u2�u5+D"hQH�H�%?�=
m�U�G/�-�������fXẓ"�s�J�F!% 4�0�}�-�[���(E��w$y�+JS,2�������z�A�f�7[�†��k�P"�6��6�U����:�ćT&y���U�P��<;�M���x8�WN�!^@w����~fJG���w�H�}�ލ�|�w�\��O[Q?��n�kg�b�7����h|��WO����S~[��SZ����!nf,o��ڋ��M���	+���okgUҟ,�z�[������
x�>��x��P�{��B��^�8O��؟آwC�9�bae�YϷ�[�b�M��k>��1N���]�_ۭ#���q�{0VZ��	�~m�����G?����?<�#�~zp7�޽WD{��W���og���n�����E�}h��),n�m�i4dӏ�x&���/�"�]b�c���ڈ�P���	.ڴ�_t��8���hg7�B�b�f	�%�;M0C}q���c�jt�3p�JS��ڡ�9�V��˽�ƫ����%��i��yp!�fRY�@�%Yd�L�I���Gs�<WȠ&��T�`پr�3�8��ij�����B>*��.��Mx��6]yod�	�V����e����@����k�h3�<X�O.0K
��j5�,V��l
dZ��_F�3���wfZ3S��{���o�Foe��V��Í�b�9k]�z>�75u6�*o�`x�ڴ ��bx.�E�d�ݻ�.�����w��Oj�x�j�'�,�Y�Y_������&hb'��%��n|��Վ��g�<x�q	�'��������V�y
Gx`�x��w�X�w�?�>{�X� �$��;ʧ���,�d���8n�8�6��ÃG�iab������a������l��
F̄<B�r<�(�`�VSg�rxM΍��F�K�=���n�{��Lw�v��/%A�y�=3�8��
IG0Ñ�3MA�2�8��\1_`��,&���ۓ�bP�S���m@��9%�U����zR���TQ��X2�l7�Qm��j��֯&���J�PQ)�e�4k�LT4N�V̠!�x����7&*3G�n��g�.�u�K���Elfg*䴥���<{>-U �AH��$��3m��L�O�UY"~_����J�Ӓ�zt�n�w��6Xk��}s_\5�--ލ��{�o���L`�@�h��4[�T��������h�n&}DM>�M��9��Ym��P�ۿ�9��d7���v+���X�vv�Y���c���]�q:-L���O�W‹ *i.����ʺ.9�	�ZD���bY�m��/��pJ�A��x.�����\��$�<�a��+;>9;95	�3:��qxb]�ϐ)�`}#���y/�nD	��H�3�3<`n�&�q$d�]�8�
N��?<|}Ӧj/Y��IFqJ����<s�}�P���S{k��{����!`�
'@
T���}�P�P���M������t���GK�YLW%��Ny�v�M��D"���p$�	0��1�s��Xd�ܩ����A�'F�yRaȊ��01魴v����r���5������(���d��Q��CߤD(��+��V��$��	ئܲe�$��9ܫգ�q�K竕Z	F�I#��ߟ�0RԿ�2�Z%8��?T�Ba�d������U�gy��1M�)-ލ6�r�K��V��*筅'�½!��\�
��]'G{ߞ�@qh��,�O恛�Ub-��~����d��\|���¬7,x �EW(�$��
+�)�co͕]o��CV�������-��@�Q�Iy��oE�~M�����V�u�$�u{���q�v:�A�̼���wȍ��əW1��Dm7�$�@:���ssW&!�d��%�j�R�
���ne���1�d�TW��������?�z�ܥ�.��A�+�±d8�b[b�]����iڡ��3\]�BWv+���3��w�h�I���4�jErG�B�qjy)�䉲j9ؕ}F�\tI!ϔ�P,2�̤Ҡ_.�!`Ä=ɝ2�Ќ��j�<�3X�̙/R:�8&��J��<��t�(��8�,U�l#3�T�i!�q�
		���r�����"x�4(�}�|&93"������˵\l!t�)9I80�)Aށ-��2��
�u�{�Y~�2^��"�W�|w󨨇>L�Fhs?U�{�
����p�B�uo�^?%���\k��������]�+x��"Ŧ�ϫ��e������ۄ���Tk�#�:k��NEw�	����L�J�?��W���vt&;�-�Etnt+&ºO/Դ7�r���<k}�r�Va1��3I�����F��8Φ�V�t�H�����w�=�‡�İ:ޏܡQe���h
��
[Ɍ��)oh�
�
#cp8~��n�rpd�Μ2����R��������ͅ6�9s�+��'���n^�y�ҹs�;���4o�_�����������WN_<���:���(6W��"���l�'CN��GUq7Yp��V�Љ{��� �A�K�I�`o���0��yc.㡍
���Ro�:K��(iMf(��'�(�{SI1H���4,SV�J5�H��W��_�f���RΗg�Y�s���gj������U��>_�ҍ�#�sj���_I�֙:�Aԅ�h�uw���r�)7�*��
��u.�����<T�A��c�<i�G׹q�aT1x�cM+yc�:}�	�w�+>-��_n"�CT�'�s���~�^���n�`V��qA�S^
��}S~) ��W�$=B��+�ּ֦��`����/�a��r��n�F�ʟЋ��.���+�ؾ-�L�"7֏
�[�pY����Z��ٻp��E��șe�r�ˠ����7[V��k�Zc����gv�X�J �q�؆��̹�01=6��W>��ا��c��a@c[�إ������R�09��37o;s��7�x���Wo>y���N�~�ā����7?�=��o��_�~o "?Ť�@�m�[��^�%��7VFL*��M΃ozx8$��ۢI��S�D��\=�p���V��5K;qT�B�bT��G�y��p��r�p�e�yv$@XTH(+N�5	)jc�٨T��O�+H3��P�� ���+��4)�<MN�dY�	
�kP��0��
|S��x`�
l*���F�H=9O;�ŚJ���]�P�t��&ڮ��z�n5S��3ǁ����р���wcc��D�7��.7��<���7�YS7>p�}\��S��o��A}�Z�R���ϼX��bk�����ǖV�f3�W�;�p�>�y2����%5�6`
8#��)W�m@~�b��:=���,\����'�~T�^���x؀\�U{M��j�����
���I7��x�<���Vv�H��݌:�9��%'��\�(Ŵ� �Y9d@Zg��(�<�	Հ��i&�;讠�o�/홆4a�5�w����37n޼p��O�<q��'dw�~�����;%�?��?���6�K�Z��7F�CE��=n��0�$'i�d'�(W%��4��9���)�$u�&�<p⢦3���HY�b��(n~�+�0�Y�FN�`Q���0����Oۨ�ӹ�~X{v�*A\��v�8`:�0�%�7`���	C��0�С@m9�(d�KB�v�����*WQ"
�с�!^�PHT�""��"�т�h�*r����c2L�H[;�cP��*��Z`B�b��n�ݴ�R�Y��f�C%�IKϔț��P�)��L�6EEU���zL7���x�q_Cx�-�&z�C~b��i�AfL���P��j-�w��7��
z����+FF�a-��b^��s�(*�G�,��Oym�}Z��AakO���Mp5�PJH���N��hW�`��&�a�̓�sv��o/�#���F�F0E(e�rTu����a8N"ξyr�3�1�'�׍t��5dK{#�S�S�.4CF6�F���,ȹ��?���O�~�ԁ���<��[�?���7o����w�^����Nl�����7�z�?�6�n�H�:��c#��]�<�1�i�~����MD�QvH%�5e�ے�?�E���G�uI�&�e�Di�4%����}Ɉ�*ة�:�
V�/��dB]�̍K �U�m�JMɢ�1ց:�(�KIv���)��m�[�D#�ޖ\i�.t$��Q���ZE�<k��.�T">*^*�s�FZ"G�z25�zs��=�\�!I.�r���~��F�D�q	��Ĵ��*���e�2ކ�|�N���F_���s�bf�az7��ii�����c{Lmj��=uz�>`��E��p��չ�v����}�mN�#�ӄD�06/�M�5f�To�i�a��g�3�|��oh�N$���� �ol�B�hX�S�녂q�&�E�r֢��*�S�>O����ֽ݋�.�q6�����R�
ଧw̱k��2?Q��mc�x�ʠ���у2�65��q�+.:+gj������,\�<�r�4�ȓ��,�g��\�u���7n\�ν��;��K�o]=s���[w�8y�؅n\�}�K�n\���o�\�s��M^8�?��̿{���^� !@P��k`Psŵ�q��Щ�$����HB���"�L�ts�	�� 8�]����2����\�E���R�)/i]:��]��&�.$������0�u5*�C�3T1B� ȉ�mj�.f��3�T�<�I�L��A���g�ΠMR�R��}�~L-	�M��(�89b聒��1B��!��F�%���Y3%4}��#���gr��=�9ȿ��84��6s���#8ӻa�f��A�9ݹ�{�⡮�֖�&����ƒM��㞙s��p�_t�\�ɳ�4�5�N�{�㉭��
�3�/����ДU��(���������?�[\o��i��e�cZy?�q��':
7\�;��PKl�n<�h�̵Ytd� X��dZ��I	{[�8>4�G���LuƬJ�_�)�Ԭ��s�4V;P��ڭ�leB��lC��կ�����/���i��/���˯��{W�׷�47@��n`�
��]��߾{���nބ�y����_$ih�x��<�g��l�62f��6:��U�͠n�J]u1@��=D+�k��3��
�9^�����hT}�(�l{��x�3�(�Tp&;�*�L�AL��2ӽ���8j�%\Ȧ��P�!ѩl��l[�'b���h�@d�_N�'
YtRw��59,�8H�#�r5M���-�D�J0����:����H�B�.��9	���`�7/U�}6������d���V��/@�H���ԣPQl����
s�[��[�e���pSnUn|	Qp>k�>�	P��?�5���[�h̨<�\x�M4��6d�)�rZ|[�����|	�ΞY����+Z %�WgKM�պ
}J�Ŝ��}8�M]���h�	�ʋ`�۽f׭�9.ӁL9*�
T�N�-:�%��z
�X|���^�R�� ��L'��'2�]{l��㯩�Xxc�uxv\mY��V��,��k7��Jֆ�k7\�`P;h����-�F��=ٗ_~y�A���\~�|��5};�9`�ҹ�
s�{��;�^=wԑ�s�Lj�m��O�o�x
�X�U�͹!Z�2�V�%irz)S���ЍT��\�Z[�T��=���ʌ33_	g2�M:�ȓy.�6���i��H/�]_.7����d�!%�a���Ner̪l�$���6�N�/K��5�F4n���K�X��r��Y�F�2��d���*)JKl=O�7$N��5tUK�!�a�Qw����dN��xҚ	���k�V��)tl�Π4@�9�s�	�I�s�6�^"���}������ݰa~0e�J���'�4E�%�Y*����Z^
��RZ�����3ق6�����_pۢ�Hc�$�Pؿ�+�ֳ�7s|��b~[�ő�8��Ŭ��f��3��9�j��7��Rh���̕�Z������ܕ���>W�%�j1�n������ʑ�
�vlx|��p3̍A�B
��bfW��5�n`�BlE����7L
M-\���Ύ���"���~p��ݯ��{���;w��sld��}����`g�޽;��6!k�6lZw�ܾp�ꅏO��ig���un�7r�2q��m�d��P\n�Z䖩�aҿ>�^q,��#�`)I�&D3��lU��(,D�8��i�w�@�\Ҷg�P3�WҖ �]HrB��<�Z�YT2�jP�N6�$ar��
2j�<M���L{T1��/�#�7���F��P�Hi��lF�(M	F��cᚚ�k�8��(����⹚��bG�Fڥ�����%��C�#�^vZp��q�?���n~����J��J�w��t�'�p����$�m���[�Sg��$|}n~lj�^�GSV�:�~�q͟��X�	Qf�(����;�J?ߦ;��ؒ9�iaU\�
�}M��;�:6��i?�3��:C���Q�\j�<by72Ӄ7L�����cG��53���k^=�(�?34�RYn^�:��V+��o�8x�W"[�*�es�D��5;E����!q5l��^p�~v��l��+���&���ŗXD(u��;�@!����_�R��7o�
A,O`Y�A1��pع�,b�U�G�		!���v��}�M��O�f�
��LIJ���z���F<�*�\�F����g��RBhu)E5I�T*�RڞI.#ՖL�!��`��ܥj
f�
av2�5����(c�m��r���!�*�P��l[��	�Yi�'0,3�b�F|��1���FJ	�&O�G�u]q_�����d��4}Ԉ�4�ژHA7���G�"�rc>�]�&笿�ӏrG�Oһ��4�����в�p�}�y�%sw>����O5U�Dӵ�ۊCϹ�{]klY�m�Q%/�<"\�5�c��%��l��]Цn�~,��G7�5!�[�Wn��Fu����Ps1qy;�	�<����5�;1>�H��"�͹4�Ӡy��ԊQ��>�(�q�5�
&~bH-�k_X��H�k��?~i���S2B�}�	Z�����ۯй�#���[C(u|���o��-0o��&G�u���îgs��62�0l�H�2���!����]�?2=~��w� �s��9�h�(��x4��C8#�F&���/�A��E-��63UPAm&P����t�PE�4N���ȷ4u�I���Od�j�J%P���h�A�!���9X���	sM�G/q\�H�;u��(���T&D�^"�3d����]&H#U*}m�*�E�H���{���Z�r�n�)H�����OIZ��1;����h�Lfydu�*�!�J���f�iwp��ee�ko�Q��}��{;�7z7�j�Z�s��׻�Z��-ky�O6|�ٷpN7U�]T
}�wKKZ���ڡ;bM@4��V�a}йY`��)M����)�#_^R~VX�l����j�@
���Ԛ�4��$N��ɼ�����
k����̰)��(��3�ܦ�$<k�[����hXǧQ�Xs�?�8^P�oQ�����JΛ?A�>��dzu�k(j}��?��Ӄ?������Ĝ�y��w7��g�n��W/����+�b=����@~�H2�ӎ3\�����	PŐ7�"�a�6;���MR)^�m͘�,dj:;�*j�
"	mJC$~N&f�2�d�&4p�IO��jzd@/&�$��m��Ҍ-/;�~ߪ|0�_n��
�a7�p��@�I*o�!��qi��჉!�&�O�Q�M�h�$nf�rPR}���y�g��@"S��K�Z�����נ>��;ğ�RaІ���(�l�L�<��m��
�\[`uDiO��d�y-�R�������׎�E��X��D8h��i_=�x�Ƅ0;���"Ol\v��Z��ܐ3o����-S�9��Rt���X�	=,4e�k�F"��r�I�\hc�'|���\����LO�$��M	p�Zyb�����0�”��/ǦQ�ܲx�
/�y�=�U
��!�X��b�i�{�Yf0o4֗8	���͛Z	�lX+�am8mK���'%�Z����E��@���hwp;�U���M�q����?`F

o��9�{��S\6C)�8:�A�L��Ñ�ߘ�މM��Fn0
��
���#����v=�=�%GH8'�d�g�J�b��2�7FS	(�#�Dq�p�P$���>��ڷvlU4
�Rk�H��<�h#����T�R��k�/p�=��o7���P�PX�IF�GA"�]�M���U#�U##F���@&5�(�Cd�9��XDv2e�<�v������`�FZL���l4���Av���?�T���:�$�Uϡ��h���*�+Ց�Z9��mnϻy����wc���S���A܍��S��y�W~��u��
l�x�Z��~,����M�P��ax�9j��3ֻ��ep$-j-�Xj��=�s�j3OX�	��2�2�Γ��:��,��&�:�9�`O�y5�c�ײ%W�=>�{E��G�D�Y�n�b[8ʹ��L{C7�9���qj�6.w#�d�&��N��"�2��od�vǐB-.�����{�5�1��Pq�fj걥+�ar�687B�+s��SOo 1�v��k��={{�.ܺw�������7l�)�l2�*z�F��D���]os{n�h�@v�C0�h¬���:�"֒bz4����Y�_�/LT���Nr<� ���ז��P�Km���%�8��`VSB��>�"�lZ�
J5���vU�@2�3�Ev|�Jam�`�.oj����U���Cz����^�r����gf)����DC=����EQ�HpMd�S�Ag�L����4��bO:�v��"�Og��Pj��Zz��TGb�l���L��>3D���yT�h>\��~��o"��LA�.����_��-cP8%�7Z�(�ְ���1%it6���Q�X�Z�E�<�.?�)��zю��.�X���q��������)��QX�+n���ʷ
N��?
�K~�uw+��$����(��LhC���9g*��6�q�)�|	����q��t��x�TEٸ=F�x��*�)3d|v�����ȿ!�"�"��;�p����m����3y77)���&�-��s�MJYsa�G(��
笝�p�X�$�Wa�D	g��\Y(O��0��tu�V���?�C��z��'E(�����W4��h�h&�Ff�.tcʆ�MD�k
���&HJR<3G��R�ҝL���P�&t�NL�=�AOЋK��e	8#���~����
���(#�%��N�=�ʇ"���H�`$�`*M�Q�΋�����}Dz}}��JI�-<�$��Hć�xqF�#	�-sh��LF��m��܂[��t�%�4#x��<�3��wc���d1��/]�d�"$�}�U[#݉��w�1����ዋ#{w��X|������L�T�g�oF��!6��Z�ܚ�Z�ų==�hdV֏�tK
̌�
;<ߺg�F��&�y��	�X7���[���_S�$7�#�&W&�gc~ո�΀XcrS2����Pk��旞��ӵ�<45������b+�~$�Qz\�X��QkO�f���1�T��@�p���ō����<��;�Q�Cv���b@��ٶ�U��7�E��]\D�=	%t�	5R��;�qr�2��P㇜M&W�&���'(��jfh�F�J�ͨ5�рە�7��B^C2�`c{��jc�7�@$S�,)B�D-�t��_Ƌ�0�^���.b��2~�F�f��H�/��4�O�H�k�.��z{�㑺�6�J2U�7�UZ�dP��ԈJ�����4o��N�H�K�%��zݝ'J΋\=X%eU~�6|�e�s=.�>�xdg����õ�6d�ǩ/����f��'�w�)��z7nN���qYC���As�)��9	�2�f����w�v/p�EƦ�Җ��n�-2ݧ3��-	M��f1G����;�kbf|��`n*ivo-��لE����'��=�q���r�-����`ڹM�i�֘�>�\]����	ʬ�a��%ƗnX+��m�f2�!�#A���5}�*)���~���gH�6ڨ1Ɔpl.^T]����ۼ���۷����>��s�e�-aB"�>�GS<�y��ͧj(��� �����*�q�Ԃe��\�09)ʀO���oD8�lK2
nG#_�v�Ɉ�qs�0.�C}�ZY�.��B�0C�IVsCے��� ����)#%M�"i�Z��k�P�g��e#�E���>h�l?��FycB	��T2(sf��Cq�t�u���y��υj��;���oD�)�Q �JWQ�d�*���(Og�pRԜ��$���ڔ~B�� Ф֢��d�m�F�G�����#Q�����g��\�?�Ś�{nz��R[6�i�L�Y�MY�n��]�}{�vV>�,z�Eu�ůhXd;T��[u�ƭ)����/���8ؔ�f�Pg�'n,��(�9�yIp�7'�m[�;�()/�6�nų�>�XpX^�>	���b<�)�q�����m�V51��|�.��F��f��ϯcVb7;�$�˫�l���ڎ��Q8x�>���
<ny������.��"�i�g�Qs��]���\=b>2ދ@�Gg�(��p�5�_�iR]�8�N��6�tT��?a�
�Y$x�8�;n��I(2�r��t0��\-93��������֓���g�J�d6�":���먻3r��H�w��i~U"۟i�d2��(n�"<�~B{��(����vV�j�'U���"'j|�:Z�J��z�+T-z�5'���6}4E�ƿZ�tX^l9�}Ӱ8�#�}E�a�+�)ZQW��h��p���V,��S(<'�g=�ލ�9|�);��A�y��wѯx�J>�}��^`n�MD�Z;�׍�>�4g�=�Ƶ��bcژ��m��M3����٘Ĕ�n�X�9�*��6�?�MHҽ帇6�XX���[#V,�Ry`�9�Ĩ+R��;�#���f�*��+o�.��h�q��g;`��(���9��8Z199k��qSLa�i���*\-����T���7N�۩��$v�Fs��]���8ܐ��{���co;�T8�P�e,Yり����ˏ�Ja6�r��.]8s��`<N�������o�t��on%�'2B�m�~����v,a�t�@سZDd�'�mꉇu�%iL�{���H�|�s��S�Ϧ�\���y@- 27 ��h���?S�8J��[S�V��(�2�}�H$�m��02��N�W��f�(�	��a��@�Z��8+���R}`08P
�BiH A-�A<��m⠕�k�py���8Ą�~3�,2���S^�"��TıFu.C`�QR���G���?y7~�G�MגMA��E��EmX�n��z�hb���\�e����׹a�
5�R!��ŃV-�j+�3�X����4�w�R���ۓ+/	-b���3ɷ�^3�
7xO�s��Q�`4H��}Nr��	�o��k��*�XfV�����=�^rB�͢��)��r��L�W��J8��.����,�S���F�b
gH�ȳ��P%+.��|x277?}��ti�ر�o^2f�&�܂c>�|�%�9������N10u=����
^X6����M��L8E�bhT��eInq4(��.e�<�K^1K#F�
L�33�!C2�Lv�Q�*�4T|��F�F�h���R�7��bg2�l'�LmMJY1�pm���m
ђ��)Ch������B(5jjmT�������z58	ӣ��B9Xr�4W�q��^SJaR��`�M��zP�r��M�)d���F����J�'4�}lz��RU��d�Oލ��z�M�-�Y۹$�;��{�b?�P��pn.7�R��%��v���P$�Ƭ���Z*�/X�F+XC0��L�`���džX0����|��{�u=��
~,�dN�B��Nص�Vܭ����5nc0��_��Ӣ�ɖ~y��qO亏/*�Z9�+[1@������(����o��f(��u�V�ʑ�z=�k���_~vź�[k��%����m���C���Tl��3���E�
�3�;o)5u�����}�F?�9��2�n�<��"�� �^�Z��6��:01D��%v
�x.ۦ��qsC�&It4	�D%�/Y�4>��D��I��ԳY�N�@4͇���c�H���x�J!�'�`�[��C�J�y>O�n)�D��"�*���C�T_�CU:�� �Â�R��D�411��h�t���'3S��uW�~ptp�	W3�|(l�\"�^����x0ys�ދ�F��m9@����=pd˽`�}�7~��
|\�*�Lj�~y��wc�F�7ߠU�n��Ĕ�\ro�./��܍�&�T=���z��D`�_��M���
�]{榵�F�s_e�&x�Tqͥp��;Mэ)*f��{��`~�f�/�u+�ۚ���VT-l��I�-��(�Ǔs]�-1�Jh���v�6z�_R�*����D��y�8
�J}�1-W��C7�n��s��׶�O</���3�`
�#s���yuiL�q>�ޛo���u��՛~ �����@g]���b�� ���H=�2͠�t�-쳲���2���W�XB�.�)��
�	D���L;Q�]!�aJ���)�PE�OB��H���L�ǫ�D��U7�9�lT�[��1��f��
fb����R5�����O���1SJ�H�0"�����aF�6��cŏ��y�h��Fce���{���0���O3���`$/�jLNg('@�bky\e9(�RA@Cz]t(�����C��K<�G
k��rܘ�u��È񃛹�G������s7Z[é�F�-ZX�9�s#���n��IW�B)7W���M���<���le���4x+��W&�5�Tf����_�7wg
n�pM���r�K���G΃�\�Ͷ~k���
�f�rv��U��
���]�fI��
�~e�si�Ws�li1f�H=.��T�;Ƈ�ո7{����8:���f�Mm]G�z��Sj��"[G!��(�#����7��cc�ϣ�w	��6�͝ۋI)���
]�z0(�	����(]�d4M����"�`�2��U�����8[[�R�$P�{��%�8I��|�9z��x>"��d@�dG@\l4�%+T?:S�VJ�F�XL�&"ą��Q�<�U=[H���<qj��坑�Bg��Pޜژ�d�>�$M} ����w�|T%�Gw֫����m ���R�4S*���@���H)i�M��iH~뛍o�(p�F��O��Ě��2��L粨�D�iڕ��2��`
�t>��rs�ͣ$��Ўp�'�mһF:��mV�M������ME7��k�.7���X�]��b3�!�r�M���+�^=�U���D�b�+�t�����l'�v3�L+���_]�G����xX����ֹ��Ox��87�i�M�}�p�2g�s�1B����Q\���62P�7��V�n�x����T���d�쳿AT��Y'�""�feS�pnln�u|��vlXy�	
���{gΜǨ�y�^o��r�.T:��W��ǃ�x�Q��8�<���j���3c�Y
�����@�s��QL���!�ہa�l��lǪ��ĉ�]��p5�%gJ�H ]��#�;40�J�Q\=Rw(˅�A&ѭ,�+�&���`,�ꁫg��w��n����ט�I�V���Q`U-��#å�����5b�R�1O�G�O�oj<��d�*�v��)�R��4��_mz
nl�$��pQ�n �2�:dD�N.K%�"�6@��Uʌ��=wl_�������z�ލv��k���֫��-i�O.�č�Fy�_?ڔ{"/%�f�����t�ҳi��������4���r[��2~&��d��~��	
7�������Ξu~�L�Mk�)�Z�*�:-��z�|+�=V�����&bي�u����:�a4��:W�J��?����o��c��G�v����z�r�ta��S���ь*�S���(��j��O��#�&�|�Xj8��
i�KkINQ}��A�1�jT~��4�~�{6��ݼz�DW�+��>�|J��7Vsc�����8P��\��3�"�^55:�yM�������*E3�7�/�,�p��s�����l*0RN����P���͊�
W�<�R�"G�ބ��D�M.��fG���?|�3�N�������;=S�� �z$ꕷV��Y0��!s�9�春7��z�Q'��.�/ԑ�D#^��{!�(��1�ڨ��%S��T�3���)B&�C��I
���ަ�*�*g��I��wy.���v}���2S�����n��k�-uc[4���nv��
�І�O�o�4�g��1�8zX\{�87ZVҗ�<�j^��3��F��[���C������>Cԯ�\��q7��lQ��Ֆ8M�;�����Q�Y7E>U��T9���p?*����O���Y�Z��Ov�v���5�c�7c��3�����OM� +�
?�a�\��R�hc�T����[$���N�#�A�#x��]ӄ��T^�&�)�9v�ے�pIL`Z���3�"o�9p*�
}��w^%E��S.��0���T
�C�������Q�Ã
ƖJNȆ3ǀBc���K�����`0Vw�hG;7*H�ܱ439�0J���p ��������I�>��z���~��W^9������6�n�$��U�G��^3�U=f�n.5��/�M;��d��$]Ż�h�)&�T�`:�i�h(�\C��O߶?Aǁ�����1e�ry�	��#�2ᯨ4Q�h�>�ؾ���S�B�P��xcٺ����P`�714�7�x3�Zc|ϔq�"R�ٯ+�����M�qn�<��?�ų���Z/z7!�
S�ɀ!Y�:�P��^f��XK0��9��ܰg���O�V�A����|��\WSk�^�P�&��C{,��c�b+��)��'ӂ���<h�iMȳ�g7P���`��P�<@�����d`e;����#�,�1�)�dp�ӳׯo���ų�O!�N����������7�����C�IM���î#G�n�n�>���4�P�
�È%75�-�*�m~卛����d9��F�Q�i
x�H�|)΄kH�s�f�L:hk!LB��6�yw[��%�Ļ6W�^$����z��ִc���><��{��ޱ��:��������ao�:�m��T���r�`��^[�Y���u�rµP�>�TU���_Ȑ�4�;�?vhUB.(D�f�P��{�i�}k(�VR�2��x<����D�]5��T���1��ա�U c�����n1�П�wc�XZ�n|k�LE��������>ڰiE6��X+�ٰ�}���c�R�Y��%���B�o�t�����iҗP$�e�z�m�L��6�j-,ta�j�O,†T���m�AO�)6j	¬#���*�*�&�g�eԟ��2=�Ŷڮߦ���>بO������ �a.�A6D1�
�����n��Q
y�-�Yg�Q�@{��Д�����o�O�4��.�6�/�}�ر�oI����}��0���F�����r�;�d��4u��JID!U�F��tVc�Mxp�n�V�<?N���$���.�'��ڥk��aQ&W��ݱ>|L<Ʋ͐(�dh�zc�`�&��M��G$N�J����+o܄�"��|�����]ǎ���{��#$�{т(b��PO���ʾ�g�pip��z�D8s��
��rN���"t.Уr�����`��G�,!F�M���
ݲ"�e&�M��6���wݖ�1D�۶��J�s�H�z9
DC_���i&�3�ӏ�w�`Gxk4���O/*P|+dŵ�����f���Y��@���%��*)ޔ 
B������`�e�X�f(�^qr�)]�)��Э���4��n\����%aS��9.���,�3�'q���X$!�ՋeV�x�cQ�N�1X�G�Xu��^F���n���F���o��ܰe�9Z#"g|\**w��L������Gb*��T<�P�E�Cr�Y<y����l��\�L�&�*
x�~���X�	7.ܹ����s���#'�,*��ꍏ�8t!'_.W��e'5BZn������6t�7})Dz�[��"
�N�\T,�M�G�F5��h��
E�d���Q|��bx�T|``��R)؉4yz�� ��Ο9s��[>���?�-u�F6w
8p��v��i!�����p�f�	�"3�h�Z$T
6�RE�e)ad�U#�i��l6
{��O���M�7:�=�E���m"H�0GT�N�2R�WG�8n���Q$΀=荡��(s���zB0���J���yө��XU��+���)V�)�&��S�&���p����O��/���n�U���J��
l���T��4R�dӞ��N���I{	�O��ᐰ�Y���nXV��Y.�$?���6�R@�|
ϡ�,�Ub���:�O,�c�
�4q0���Q�9��;
Y�+<�����3�7�x����S�F&�t75'Q-��a���+3����oe#�B�^W�HDT��/���p�P��,�ٳ�yq�(\�1
�7d��!m�?�'/�L�GW#��2�G��&m�'�-�F�th���\)�Ѫ��N�>%�W'Ǩ&��L�O�K��LQtL!/�I��&m�����hG&����)�B����Żr��0y����Gw
o:r���o�?y����8�?���ͽ�I>
o��n�Ww24�ȩ�!���9RE���3��H�1xt���*�QR)-:#���K(�6����:���*2���!�����I�H�ͥ\���L�i3�Ý|&���y	�avm�F�8��o�7�|���G���'z7?�
�&���Ƀ�v���h��S,x8�ws1�?O=���������M�؂)���i���t�m��fݫ|�n��f3�v�f��'�Dx���u/��h����V���
����"Z�2.N־�Y���l��	{5�Z3�~�F3�oMsfl���oHjO�1����e��~��^�M���gb��=���p�~�j?ھݱ�{�K��OE8[�E��FA�,�:��u�͵k 
+����n�8�|����܇w4�ES��>|�꥛���%�b��sS���]�S�ӕ��L5����nƨ�J��dћ*rDS#�LX鈒r��`,�>�Id$s�2�ئ"x��@M8�;#���PO�`oww8�w�{N}�w�x��?���D�8udӇ��������@�*�ͻ��.�o|t8쪢O1X��&q��\�z>]?��h)�F��x����r�V����h;SIj�4�FL��F�o�|ZI�6�G�r�zTI���-�8�Z���1
�tRz8:��@���\��C) )����#�3��7{7�}Ol��y�����΍�F�:a�)�]z�Ϻ�:�ŵ��S��Tg,���6�6-�Z�D^\�73�mq/F�
�6%���ka��Tf�e�i	��Eq\͛'*�k��і,o��}�����,>�lGXc���"�Z�5Džy�cYlL��g��Ȭ���Y�a�Z+wx���>G�I]�[w�ǰ�T9��ٽ�[US�m�	jh]X���L���n.^Ǯi�8DzWae�X�"��㷨z�b�W�r1g�x	�J7�>u��_�:u�w3aKoD��}�t����r�[�Q�M�zO��*��P��˓�h�9U�W�93���O���#[�l~��??y�@0	���omz+�2�����wϼ$H�vd�੓�N!P�5���!&�������I�QJ��G�D-�r�R��ra�8���L.\�/;L�հ�%$�>RK:��T?�#fǭ��C�F�c��6Іl�u����#�
�p�7�5�A���4��db��,��w��Ի���o,*��֖S�Ip��O���ğ��a�f��x���)VÔיY��<�a@fѽ�@%4)u-?������iy[�	��ջ�+p2V�".�a�/���;0��"��"�)5>,�T�/=�r��c}n|�ط,53�RK��X�nxe�z�%V�y#�n�����;%�qexb��R�`J����;�%7���5���D�7<��y��9}�7i��wnܰ�);]�Uײv��<L�b`FG�}ģoz�
jz����ÇO2���?�CEw�X�ƺ҄E�h]����p�׃��vc�BA.�&��:��gN|r���x�™['��?�x����8
���޷���7�x��)�����kxꗇ��q\�j=)�	
 4�M:�D��fQ49�Z�t�nt(��sI��B_\����b�D�1=GO92ʦ&����a�1�תg�s܉s7(b���D��o�m�&��#��<D��A����	o~~'���M~�lZ�3���L5���7�c���&�R/�g��79>�V��C��R��l�Ҫɷi��Y��[��~4�1b�'���),��3N(��s:�fNIPX��v�?Y�պ\���P�F\��U_�c�=Ãi�v�ѤeA��jhL.}�
.��E]�B�R3SŸ�`�_�<f������Ǵi�ؠ�М�"Ƶ��:+e~��'�|�g�q�Yq�Q����q��qm��NXn܄ʁ^fZ���ݺM��uBa��Nsv}��|��� �r����ĉ-�pϖ�Lwh��+?u��M��hԌd(��p�ȩ�w�޾{�뻷N9���޾}���>w�����'���d���<r�đC�p,H�A(˕�X5�׋ l����Aj���'��̧��H��]�%k���è:�؁s�(�K�sr����Q���R���'J^�����JR�Q%�7�:o4<�✑L��F��!ꝉ����#���P�T\��n��#����v-�#��jkѱ��&�V��T1KK"�-+�]r��.5��M�#n:����f�Bs��}���g��<�����[��9Cݬ���BnI�p���<�'l�>��S�=y2de-�8�I
=F�?��a���YrI�l��Ѧy�6H��U���Z�8O�%��?7�\@�L�OǿyyϚ�P<��5���n��j��{y��)s���6��4�=D����pBRwLN�3l�}��)O����o���ܹz����7�i��{6{<��Ȏ��s�?���'N޽u�֙�/��y�'C]��=�O����;7n|���O6�B]�z�+>���w�]�����}y�����-��;_}ŗ���-§����S���`,nhE�@#T��ha�atn������n�э��q�+_/0$�h)�i@tvF�<Ǵ�e'�	W�RZl��K��"jc�Fj�GQ�A��Ff�(V����W�4P5+�6�r�~ū��=��i�0����6�nZb���Z�n�lz�DA_z ��(��
j�O��f��}N�͵-�,��f�
��{�����<@�Rq#k)*�LpS������Y�G,<���ms�n���j+f�R�3:;;W�u����r]Ͽ�^��F��H��{~{�`wd����!�3;�w�?Os����Uާ@��÷pFM��Y�z�a>~��=l��}�7��y�����<SS+�6h�(�Zk��,�Q�3єd�QLp�:b�\��T.e�ȷ��D�m�h2+\'.�hƸ�#�A�UD6��=�I~��?�{�Ν�/��y��O68���7n�~��&�_���O6�6�z�΋
��ˏ����_޹p������3���;����ѭ{89W��<v����kS�wSH��.��p2r��8��9�.�褲頄:����DHXb_����;Z+r([�h�
���H��I�J�f���7�;q;�U�̋��]�����G�u�ubry����Q�L���&�.eMg!�Y��'x7~4%���,�:nz���'X��n�k�\��h��/cF��z��K�]/4�
į�m\���z�
��Fͅ�.?��72S���)���^�S|�y�d[��h�Z�ʘ;,��'E�`>e��s�M �z�Ŗ-�*��?�	�<� ja'�Ɵ�M{�;p:��N�eᆵ)��E}l�E/�_�c%��8�x��;V���9$�7��������w�!�E+�}�M����u��u���Y��˴��Z�$:Ă��h�ʫ߹p�K!�ם�06M}7�p4��K�7`�9	���Ûd\�xJ�ҍ/����ޗ��:7��;�G2d�/���@�'N6]��{�a��{_�6�n_����f`����o|u�]1�[�\.T��P�ʅ�x_
�ʅ��X����2�]q�R�C�jy��VT/7?z\ NN6��SL4s/�@�N�:8aF�llK�����pxh(���3V^(.��:\Yn]a�|��5 j�+^<�I��n)�y�ލ�����0:{�7�7ka��8&|�W�f����W�%�"ڸ:;�[���a��_Xi+�-��\��;"6YeDŽmjE��Y��l���n��j���Lj�1+�j����� �R�ӱ?���wF������o�]W�����6�ҷv����E��e�݋��b�S�Зɕ�`Q#��t���WH�����S��uȥ>�헷�޷{��R$�����㘊n�&qq�O
��I���o����x=t4L��[�*�o��T-�7^.��>X@N�w�p5��8�ŗHqɕ!2I�;ƾ���CB�/A�/;�cq�x�v�|s�#���ܾ��n|��/o��-�{L��gP�|���_}�c�$��d�P�9$�����P&�rW8ד�����K��i��)�@hqj%�3�A7h�?ݟH��`:��ˢ�:��H�� ՞"3�lSP#,
�A�փܼ���{n�"@��ӝ�	�-���G��m�a�벅�7��<\��&�[��V-?_��3(����
kk��2�Aq�/yc��3�
�6lX��uQ/4g��/o��,�\�7Meh� �����\UU<^��|�'�\c_�!{x�0�Y�����<��â\+S3[��F ����E��i^m���L����_���6QK����7�3~բI�a�$@�`
��I�f�c��ݧ?�GL�L˂+�5�,8p�(�za�K�(��L������5ʋe�����‘�S���x��!�Ĺ�j�w>�}���uݸ��=����\���%z� ���(b*�4�<�d��%�ކ)��ݯ~�����ʄS'N}x�T1.�$)�K�ԝI�i����x:�C�bl �7�2�!��e�85�4
Y(;���L��7��!�B�$�
����<q~�LxI.���0��T���M�Jv�`#lQ���4�s��76����Uۖ��L��0�frW�P��\�1��Gt��O�S�Y���k���/0v�����/7̀�I�ʛ��v������k[��/�6���=��T;Cs�q���-�¨�T�Y��wH���[j�N�{���s�ߪN�B�'�q.a3yL���6��:��s�(϶m�x\�24P��p�_c2E,�놞G菱���1�6-ގ���D60f�/�N��ۼLĤ�~ۡl���<��5�蕖^���67=��8���kQ\�.̙<K��8�g�q�6^�q7���w-���87/ܺ}��K7x���+*����E@���CI�b�	���8��w-�i��Ё���|y�֏��%����G<��w*��Td��rQ͖q|�A���HdE��K���p$4�`xp VD�T�� ���W�S����';PEwڣ�z=Ŕcm4�/gDv$����.�����a��;��0���ƫ�|���	y*��֌N�����f�2&���l����)�?Q���gj�)O��L���YpH�jjbhMNѺ��q�Cy���H6=窇nj:�r%��;���10�M�fZd�
ֈ��<AG���N��q���=g�{ݳ"�MZ����]�&�mO���:���<)����P@� �Ɍ�O`
���^����/}��_ѻ�[���g/�Xͧ��
(�ٔ�(~���&w�`�'��ϮĨ!ƭ��_#�]�0��ߴb���������Kɔ'@�~�f%�ӣ�pN�
(���?��A՛�7a�f	c�������&�Sd�x�K_E�����H���—_�]���.�X���y|��n�NX0n�ۗ� '���=D^7n_
��rT�*XA�⚓�,�`�xW�ш8�j�5��x8��r�ç���5�%��Ջ�pqf��<*���S��W4=8�e�řr{�h�-B��Z�����#�2-��5�<�\Fb
+��&9n4Q�ԉqRՖڶ1�snY@/r)^�ڀ"���y$;��wc�f��i���T����F�Va<~61~1�u0:���ab
X[�&�;	L��g�`ld*�8�81�����i#�b�,*�fŤl��%�$��g�²��u1��9�Υ"����{�{�Ο���������?���1s��+���g��14�f㉽88+V��*i�C��e)�x�7v����MؖL�vS��k��;�]�JZmJ��(M�o…9���!�3Sa8�3�7o��o���f�T2}�Ù=f���iq�3k��~_OB88�p��e�ތ�9AiP�P�?]�yd��VL������ك���7�@ǚ����pc�l�.�i]
cf�p��w�)
���ƙ���+6�R�g�ocp���Ⱦ�J���H�A����_ާ~�o���GV���?Ct��%
���t.@B���xt���n߿�o�~�7�C��M�Rz�ͧ������…7��|�����y%��ԭ��/k]�v���SF�]�QPܵoߺm}�^�7J.;�#mS���3pot���2�����0ǪJ%�Z�f�(��E &{s�X�^O��lW���6�:�#�_�dRx9
�R���
��E���,oD�N�5kv�A���N�;SO��$���"�ꝋ��y��MҽQ<�{Dv{���\g����<���Y�=�[��%����D��3�	�/�!�erl��Z:����؂�K�f����
?޺wwB0�e�X�س�Y��N��	/6�-�n�w���XB�SfZA�V��!%�D�(Ϊ�E�����C�)�!��>1�9��@-����27$��t�Fc7�Mѐ	�P��p<e�v���c�ST����~D1�'\\��t,2�c�h��\�]��u58���^�w:���
?��|n��\ܽ���k�k�|��`\�~����@�d�r�7&g$A8�a����Z7�ES��z{�����3�[��ѻ�6޷�aw���z��Do��]��"$*y�.d�[�F�IʪZ�ݻq_w���"����Ѳ���˅"�_���0�!5�V�p�q/�h�@,�TFʽ�D��9`�r�NM��`�:¬w^��,- R���fFS�һa{�ԗ���KH��GX6g�eJ&n��RQ�Mب��Yx	��&)�ޞ7�]YtҦj��|̭O6XJ�O3�n���W�u�^H�U�V��g)�yr�_���vш4�H>�]�Fb��&��g����J�N�(�H6yI	��J	|��m�B�͞�e6�	�����C;w�e(H�`���*Q���1Jo���R����P����\�,�Á:����ÉsT�����H���^zJhc���N ����T�M\,��1ʐ���ݷ@�?^{���6�ΝW��Ba�T����X���m_����V�l�(�H��h�jN�*��f+ʁw�v�u�v����7��o|���k�6�Qj�ih��V�p�Uj�fk|c�x��R�<~�r_��w�NG�{�|pAc7�B��102@,~8��|���EB��=U��W/��S.��'@��W(!�"��ߖRjIo�^��
	�f1Qŏ����V�MF;x�}��M���8cX��-h`��ٝ���8���K\���LaV���,���Q�OB��F�p��dN-62�l2w�㌩	���d��+hw-O�����C�]��ط�o}�f����͂3`�C�I�Ȅ:!���C�p�����߆�/,n"�R}�#�e�d����!��kC\�6��F�p|k��P�p�dʍ?u��	*wR��9d�e�����Q�
HC����G�O�V�x2 �6�5o޿p���_���?M��d�1�Q>�$��?����;�$R�l�#�G�|�X�E�4�}4-tU�M����#]��c5Y�Yլ�\��� �Z�kQ%8�K����b���Hk6f�#
�,��4&c�<:rm�#Q�L���Ҥ�r��e�n��H>c�W�PXb�@���>�0�)岃
��tg�ڰ�����Y,c�;���6I���Y$��	P��Jy�F��4=�a����}�e?E���[`]�|�φCF7t@��(�s���?^c&��	��~ިw�V�dZ*X��yS�]�4I�V��2T;�ɏl�:E&���]C`��_v�̅�S�1Wb���j�zUO��}��]`��
��b�9��w>.�FS^\
\��&.�&k6���Aq��F4�e�-%�#�qt����I�UF���,tl��sd.��0���`c17��S�;�4�(���Q@#�獷,�z��o�y�^~���ߜ�q���,�o�����4�c\��A��If�Z�X�W�„�0
S���l.������a��]�N��3
�f��B%����6��X)F20Sof��L|V�Z5��iM��Ftn
����_FC�dvd �d����M��tإ�6.Qθ�\�� �es�#v��K�'�6X	��x7�n������͂�po_L ����h��&�6Z��;DV����C����
�0�nf��y5?Q65R�9�X�㪊eq�J������S���F98����M{�M8q���
��%A$kAw�� =VN{bhӤZ�(ם�ܰ!V�g|�هcf$�1��l��)so�І���DĪ�c�V���ᡳ���y����K�F���h��#3是�pD��m8+G5�7NY�婂�q�
`ÉE���"�x�CG��i(-�������PW�ʩ��Z]�������	֟ӛ%�i:�k[](�0f��,�UB���?J�fE|,Cz7n,N��m^Ǽ���[�������X�	�IcU�bf(���[hz���ș�����l5]���!R��0�qQ�
�(�ȗ�Qı�H���z�-<��k;Z�/��#svhm��Qe�2O������s�M<�h�,QX�l	עn�$@�����
�M�݀2~ei���y��U[�g�ԗ`��P�8���-2C���7ε�xjt�>~�����Z����`Ƿ&.c]`YP�X<�doS�k>#�X`�b7��k��
t��3�Vc�vRC�^es�D��d G̍p�sşBT��mLgC#<��0�J�MIcy���<�w�SP�.1�?nd��fr�93�$(�d�c9s�A�ﶆ|�����7�}H
p<��s���ݻ���u<�(���Q�^P��pn�\ ����<��_����3����3*B�4��J�޸���|��&:H���U���NM��=ণ�������}�ǎ�;�M�I]ƽ�z��>�0՝fG�1Z$�N�U��U�hGǸ�8�bJDkz/�#�7��E��s`C��*�Eڤ��lUTp��
�.6[��nR�!3�e$˷K����:P'��_�{���h���Ƃ�=�������23ŒoI87�~ +�Z�`�#x61���Y}��嫻ԣi�T o�����Y ��m�OJ��P&�
��T8�Z��M�ܛ�L�6@����q3ʃ�����6�n�NhSH��i;`��ɧt$�UăЧ�
]Mr�d|��T����qO��՛qƞ�ᒳ<�!���dc��5&fl'�}+�7��4����?���9�C1����XD�jwΨ���#o�����/��M��XJ)�Q��gb��0j8��P;����3��B�p�3����� �o��uȠo���x���({��<�_m��ƨ��8��N�^'2J����.@AGER��[�;>��c��˽�z�n&Y�"����dp��
���<�U��囵��ƽ�f
�f���z���O��)�q>NG'i�R�(��Eܜ�dx���`�ew]Q�5(��@є;;iTP�`��T)W>	ʵ.����&	�pSoX̅����E1���z7,ޒ�M�C�ݳ	�'86,�sc�Mt���k,9�͛�Ɓ�&���j�<��^�%�	���$�®���<���5�c*F��W���h�
Hl��GY����-��K⠤������O�B�ZA�M����$��3�YJ��7�M�a���=�_ƨ�9�
]c\����X{�Mw!6��k��s�AV�o��"�]5��Qq%��
pD΋T�&�r��D���P���:���98	���	r�pb�*v�6C˹y�*�^�ۯ��Ͼ~��?o�FR�	�4�uly��h�%^��5z�O����@��s���9�g�>��8�׻��63���m���7��b�\p��<�l��8]��M�Q}��S���������{å4�p.7���i�O�N+�^�ր�,��NidΥ?�(��(.�V:A��)�����@sT��?����gG%�/_�W�t�E59�a�7�лa�3S�מ̄����v��"i��Oy�/�>�޻mTW�4�f;Xc�so��-ۻ�.�,`�vi�w�K$�|(cA��S�ؒP\L*�j�P|�ʕS��]��²߼��pm�6��\h��xv�kd�˭8M��c���L�;u�����g��t`�H�'N�P�l��W��5�a�y7��:t�������2���+�nܸq��/������
�%5MC:����p�`I�V/��ٓ��	m80�'[uK���	��@�`nD���6J}�	g���Y{Z�,+���_���@�
�ؼ�&��[��K/�!�z���/ߥ	�Fs��74�_xmkj9>�&���7L��X�r�I"K*��V�HB���ž{W�M�7���ڸq3��y�p���<��L��(QM����F���V���5�G�K��$��Ͳ�[!�t��Ţ��l��(,O2����9�Dgn���{٠)��?�(k�S��(g�\);�l? �F�~N!S�T��[�-��	�fє�<Z�-a	��e~�Ol�Er[םM�ā+��;�@��7=�5��h3����M+6	iԬ�ۧ8�&wqlV���Y�%ۇ0��ِ�p��
�Y#̙��f�	���>�G�}�TP|�ɨ�w�'���f�PH�Ysi(�z؍�	���XnY�T��P,8�pzj��8pҡ�>���)&��=�O��:�܍K7�Y�����dB�³��`a�6�L�=
��d*~�x`kT�	�Q{8&�9��P���[��o\�����h�/-�Df��OI8��%���a���V.�$jW1�P��Q^{�ۯ�|���w+�
�R`\/�^}r�X1F.�s�ŚH��B�<\L
�Q��Zd��vjE���u�ְ�U����!��Ҵ@��5��Q:PA9���(p�KQB�\;u	P"Q,#�-��ej
�3׫Rm���ϺiS�R���≳َ�eK�Sd�@P�����ʑYw
m�ͣ���$?�6g�}��/��K랸�e�F�н1�1�b�M�	x�%��lr'��8��OK�8a>����q���!lI�m�MC��X�v�<s�
^��X�j�%�0O#����ك�D�����	�S����J|�7�K�����]�(Y�	|OZ��<�����3/��y��K��X��s����w���s�1��0g
�����k�!��sp8q�#����X�.�۸.�/��x&��Ԕ�5fՕЅ��BB������6��Q��[�{�,o��/����<u�(~A�GJwNlW`À�N��D�R��*��X��r��d�k(�Hi�e�CSf���x-�o��(�r�fj�E�FN[��^����D��cz���`/�1��ِ��B3<��E��ᔵrw����Mc9rS��{�Ҭ<�e��Ɉ�9�(e�:�A�r��4��w�X�C�wc`�d���M�t�{ !�ƭA=n���48fݙ���;��m5�i6͙½a����p���Cl����.m��Y018F��%��"s�-q�4��|��`Y�^	��#��opG��M�rpV~;�0a��ڰd�RHdZ�N�蕒�{Џ�C��b��:c8d�Kz�[N��ʥK�n\:O3)p2��Ɣ�Һ�9�d��=L��,�pm��Y-�g��7�=v�F���ًǎ=�ԏ����'pX��7湚�ր7�paf٬���X
�y�V�n^��t���ʋ�����@5�:�ٯ7�IoP�qO3��NR�;rD�M| ST����,ש>>SK�w��}b�
���5�u���>q�̇V+O�I��X��_����
/b��0Ө,⩬:
��R��Bcf�f���D���΃�_1_���7���뉦P..yF�ya-67oSR�t��h���V���n�s�P��PV�$���8Kj�.�k�$��G����SSj��#φù7`���K�̒U7,4m�#���:���M��,h\�gf%/lt|۔-�@lz����V�7���{�jy-�ء���>v�g��ω��o���u��a�T/�&Gf=���!�;|�ҥ��۱t�g�*���\Z�i���d.\�媌Bv�M��޸�M-\��x��O~�o���~�nҿ����x�q~���a�.�}�4'�q@�[3!�1xb�IW����LpP��7�Nݾ޽|�7��)uFjv��9
T�2�+�DQ�/���f�[��(_��ܺ�<��ݴm���[������$�Gg��LT�W+���͒���F��m����g���&�咹X
���*&a�=�"�H)�˔q_
��<̓t_�d���nT
(�d��	�T�9!�HЧ��9!OJ��t�/�ytG�B������'�)96�z|&�-��k���v6�f����7q�:��=��uc��P����DE��6p�P�����9b`<�c�u�9�|6v��?�E0.��PѰ�$_:|��L��8�x2XP#�~��܄�Ċ��d"�o��Z�繷
�	��bgr{N��c=�zL���3�fc��3k=Pٟ����ӧ���ce�T����8����1!:�	)���w۽<86��y�8
��4&�#X,ي�^���S�pk��y�ir��~��/m��w����xN�ù��P4�-����4��T�!Z%�7�w|��~��m�Ol,�
�\�r�8O{T��w]o�Y��5-���
���F�)����U�@�����7*U	�V�-�Q�u(&*D0;)�Ii`&�� �,t\u�c�6�_l:2�R#��w��L�;'w��Gg�>�]��ϙjb�I���8*�Ġ]`#e-[`��-Nb�Q��#�ڸ�pʃ�����1�-�
Ё�aY���䦦��/�9�Y�M���n��ss;��n��8�5c��Y��oZk��Z6ayV�e�0�F^�~##l��s
Mڛ��`X���nv^kb��9�m���ϟ�� ���_z��j^л���r����?xnӦo�<v��|��3���i��[�Xdg��OM�z�F�Iuk�)��锔�P*�Q�!��QƁ1��U'^̚�ߠq����۴XQ3|��_~�l�gO�:�㧞�;���4�W�)z�U��)����$�%�A��Ϟ!���Z��t����uo�F��{�"-
5�k�T9�Rλk��Z���<�s3?~o��6�[$_*-G���Q�˳���Յ@0)�ͧ�9��W��<�2=�'���� �}Y+$朶����+!� ���U��v�&1,����w����'N �C"�ؽ�`po|��Eу��ZIy�*60�{6d�t�#ve7�G�JYz7�5mj��V,�-��^�k��"\�s��Di�������i\%�qїwp�׸�=`���V]�P:e��b�������R��;.�e™y|�!�|�vo���C�X��V~9-��1����Uᰘ�8xB�r}p1��L�v�+����c7�"*ͿQl�Cg��x��w�~��?]�y2P8�gÄ�asr0Nq��k��^�pl@��
� �9߶,���x�S�g���S��n(�Ωl��턋�@�x���4���2	�,�M�eR�b��h�o��͌�<��m]�J�����y�4�
��_�9Ȉ��;^�4�"t�j���]����N�����8z�0�<��MʌFQ��
oƀ��)FI��#�#�ғ���p����H�t��Lm2"\9���y�;:d�n���"��B劣�q��Iĉ��m�'N�dצ=��C(�SF?�b���8,l��	s��p*��[.��k&uryp�6'5�$���P��޷�+�>`Kx.�ְ���e!�� l�G�/X��k���M�[ Q�<�_��36�_MD�	R��(���a3G�qŇ���2���_md7����+�m�5&B�3�+�B����g��9��9c��to코�
�3O?��8��?��h3s�X�F�~�8����@ڨ���Or[_����:�ԯ�x��������o/�J��,qy��ASGl�T^�����N����ݛ��۪WZ{�um��׷m]�*mpyFK�61���
ْM5i���{u_w�k�8�)����R�����0�y���Q��I�H��^5�YM���Q.�?����vR�ٔ�'fz��̫!�;�e�4P� �q�4oOp��&���PQ����$RS�M’ލb�`{����6�w#[(C������j6��F(��:F�~M	O����P%�swϭ\hJy�,�.p��&6Cs���NV9Ŝo�C�8�䔯�����J�O6A75��3�q!�/����
�x�NcW|�<�3��qb8ƾ𾹱����x�����܀2>�v�@s�
N�q�|�&�D�����cX�V��6��Y�@�o(�����?~�iم���x�q�;��=��|0�/P��Q.�v�:
z�Kq��s/��~N�����=ʪH�9�R�S���$I�(�ךi������򠻿���>��R�D��V6U�ޫ.��-�+�\a���6?�}��y�P����n�����8�x�p�`�/X��OW�靅In�nd���gL.Siܡ|0�?S��1��'�(�D�t��i�2��$X��OZJ)s^��C�t��Z4uN��ck�O܄2�y���M�c������x�`�G4q`��nsC<��c���lyVD�2��(7%��X���b�f3��L<�Rf��g�$F��+,@�N1�ut�H�ݨb�88n���a�B�Vn�ZS��ripq��[+}���!�
�d>Q��xLPwIp�ɼ��Xp�m��sn����I!����% ��@����ϸI�X`o|�_h��P���\l7g7�n�=<�6�y���6��1!�ôJ��e@��mWTټ`�td�^9���v����?����؉� �ղ�.��1%
����
��X��jmOeK��L���4�K��*�ud�brT�\��+�����-�a|����S���-3p�#�ɍt`����������Zifx8J��fp}A5Q�R��S�pT��c
ˆ��0|׫P%]e
��R$�U�#�Yt\��w��Fm��y(wc
���Y��z�O�ێōS�1[��l>-��t�rh�k�X�B"�]S��qB�ӄ--��lo8���U0�l�!Lg�ɠ+N��g��v�cK�හ�=��+�q4�=?����K@MNx\I0pk�5tn��6�GT��A�mF�Q"j?��c87G����YJ(451��bH�	�^��6��ճ�
UJk���=fe?+�a�Isv�����x�Úcǎ��\0�-�['*X�Mȋ'�b)O,5t=�`�sp���^r^F0�:>	�^&�����7���#=(�)(��P�G���
u�ծ�/͌�l(LI�.@@��E�Bw�Zo��b�!
�(��qC͑J8��m�L>KԘ�Á��|>B\�5Q@�
*[.Ȼ1����;*�RIC"ǵ��{E j���9AQD#�r��}lU��Ηq�����W$�)�E�|��;qG����\�d0Վ5S�1O��K�`��F�M��Ya�,٩,�6Eq۲mI�)�rs���l�tqsw������4*���xY?n�JJ�xZ?g�
v�ͅ!�M��_������j�V��^6��9(��1�+h��Y�j?���t^�{bx9���Uj�9�O�O쎺��9��]=ٴk����
P�r�n`�AM��--_FM$��)�Ҭ��QW���8�=�4&��a�#�����j7Y<ap<k0��H��+�U%���n��z唊nx=��G�Ӛ���i�g�GM�*ʕ�td��|�
7 ^�L�R,��MN�oT�f4�W�����G���Z�
ȓ��Ogs���@��4�5幪�
Q��~���������J&Ua�Tʇz@A
�NM����)0J��E�h�J0�9r2GG:���B#e���߹;�K���+n/�{��&	8f1�x�8���`�E����J�M�3�Q$E�K��@A%ݟ|�ewx#φE�Ⱜd~ʚ��!R/���m}��Fv ��qY��a�5>	ލ�;�S����^⤱�
�����(��h�R�Vd#G �dk(�kz��!�1��R�B�olώ�{�4��]d���n���''�DFShS��dV۬�hVH]&�bP,|� �n��:d����Lb�+����yZp#��?�{�q	���Kހ�/�J8�_#�:fDݿ-�>7��O�	�9��@�'N����7���t0M�Bg?���~�M4���H�<�>}d�t�IS��2E��N4�RRjM*FM��!aD��Qڼ��Q!Y�9���*����Q5S!WUY�,
@,7Z�T���+hw$�a�
`A3[!b�d��ӣMW���F��M��!v�9�Ρ!q��%�ӊƎvvS
��id:2-W$�kG���nX�E%3��Y����&�	��ol�S\���S1ިUʁN���-����+6Q3x4�d.>$S|�AG�1�#��[�A;ͫ9Sڴ����L��b7,�8dxsB����=���Ć�2��肐�<����z�q��#F�H��'$§�1:�1�C����I��p�5����x�0G��s���xuIg?�^�,���A�ɪ�&'�/gL&}ͳ�ٹ�ycq��3�^����g�p7���湧��o��ܹ?��⋜^<w�Ν_|�}��������O������S��]�)U��ĩ��y��s���i���
�Ȑ����G�d;�T5ǯ�H�ف
gG6W��hЬ�6��:���OP��fq���P�����W!���R�d�JQ�Q4���DR�o���ȥG�tqt�>Ӫ+QN��R�P�>��`�@�E�)�+�c��A�O�*:v)�R,���
#'����,*��G�݄�����0$�\��FمN�dH��tq�$G�x�	v3ENZ͖y_&$�0@��c�52I�̛S.n�k�gc��`������yO���o��ro���
�K#�x�3���Х�O�5���ǝp�+��~�w��
W������=Fb�w1�o�_�B<�v��ap�p��&a�3?�"\��+���[g9l�dp�?{�����?�{�?�=�ŋ�_~Y�s�瀍p��}gơ=�x��R��4O���9�__���p�K5SW$�#�x�yq��+G�ya��:�#�\��iK�c�j��GR$�������O�����+2��uf��;S'#�BT��*��#R�1��z(���%Q�J�G���9��o�4�N>
�6�L
�JO���'���i)�a�N?����*;��"0�Tk@{�sqN�|dG��(̿IN��I���̀:��h��j��k/�q�]��ER��N�@8��0���5`�`P\X�TL�lH��l
��e��ʁ�z63�-`��`Gf�9&�'de�ܶ�n��hT�J��8˜�Ln�wrq���&��觵+	ڎ�%ި��C�.�x���)Ie2�X,�vm~��s�k������\#�3ԣz>:.g{H+)�M��>�#�9\m�5��`7h♞�[�]��͋W���u�kF�Q7 ���q���O����|�`��7���?Y�1v�쎙G����gZ�76*�Q;0�:'����S��w^ۢ�������AX`2p�y*�ٓ#G����1�	9����y�ܙB�%������ҁ����Qm[�(�'4߶w�Ž���x�!Tu�"jsF���x�\&�I�$�O�y*?Ձ�'s�bU���Ç��˅n��J˫��=!���<�{���CK�M˅�ѓG��d�7�N��w.���M��������ر�*����a��c�h	�LP����̰{g��,�vYC�̱��p��Y�),�7�)g��X��7N:���*�'X�8[eÙ�n]�<�A�熁�c9.�m�Z|�_5���ˁ`=Sb�لMj��+Jx��4Vy�ک����|��L�f'�u�0��Sgw��큔aXH34���E0�L�	�ܖ���U�)�x��Ep昖���i��b0�Z?�좭��g�m��8c)����-����i3�X�T,ilC�	����x����Q�8w�[�KQ>�$r3�OS��~�r=`It7�\��H�S�E���E.G�Z��wUI�u���u�_�kMW��%����p5����s��:P��W�OEӤ�|6:��`���#[Z�3�F:7�.�&�r�z�z�(Emr9WN/�|X�D�ǃlf9�_������̕��}����n�(g��E�`a��˜*P�~�&��d�Bh#'�li�nNH�O����)Iݸ=6i�[�w���D�"�ev6PcY#���� ��'�2�"s���0�=xP.Ge{0�E`#	'J|�	���&�}�K �)l�Q�cp��� �4����pXph���������p)o�Jon]�(�x�֭��Ԟ	�8r����skH���%�RB�� �k�6F�.*�:۽)�sr�p@؛[Ӹ5���R,����&�����8:P��	-<U�(`!����|���]�ER4[?M��+mE�Ưlܲm���KyU�tY�Wh�,77)�QI`ʔuXpH��|�{�39)�䈼N�+�&.��;�����hS@�wG:˷M�5�	ت�����}}�ʑA	H͕�~e]�A�fQ�=Z�F{��l�"��Šc�����h�(*�� �&.�1ކ��8��	��!�j�`�����7��Ia��BZ�C� jip�v�'悅�-T�	�0\�	c��q��\�1�	����$�Ow��X�Lc;V���S��U�s2���#�B��"-�B_&�s^��^k�T�k�'��:�dP�GUc||j�|*�()��&��J�LO���.��t%
\�c�7p��.�%�
Ιo7_��Zt���O^n�6�pF��.>��f�^f����횼�q��+�y��ow^�i�?�	��_a&=HX%����[�q��C!R�d� �s�:@�?�R��u�X!]]���y��7Lj��;ޭ�8��ծ�.&Ne��0�A�����K�/_mT��$�JTY������+�'3Nd��܆R����d:;@�<_<���H��"ў��;��]�\:?�n���ۚy��;;���85f�������<\�&ƛ$u���t$�!|��&��Y��L:t�*�q��!�Zm 3ol�0qJ�k�n�@�u���P'��Ȃ��\����q�3�[�~������p�C.��;���kAN���/��k �]�/Q*J���|�0l�YD�n+Ʉ��1X�!'�y�*'Q��^�ZGB*6>�s�
�mV��S<�|���—!���q�
� S��D,�\�H@�gå���'~Y��5�:���9T��Ӱ��e��\�nYyM�9�"+����ˮ��[���忽��_�%��H���'I�[�k�MO�
I#�ͳ�^�s�S��U�}Jr��}�V�"ɥܶ�f|[����b�T�#���f�?�E��فj�^�U�<�#9�hG���5��	Fh߰؈�W[��	��Rh�$���N>�Tx)/V��`Φ�AZ��73�����e�
�B9KQ����/R��?v�ǑT��س74�І}aC�'�Q�6ڜ~(���y�6��1o'6�ϳ��)�
��nt1�@@&1RA��0�s��	�Z��k�i]4Y�<��(v��-=ws��<�ć��%�^Fd�*!~�}�1�2�{j�)/��5�5��x0�*=ŲSvR�7�� ��sj5&��(Z�̊=U�����K�[Le��gA�P��U�'@�v��cp&����	�\��ě)�Z8��{<ɩk�.)Z6�����!/[ҝ��_�ERX�g�9���ѭ��"�n��B�%Y�+1e>�Xܸ��,�JC�T����"��E�:6�Q%/:������*SD�+RK�����t�5~�./)Mo��FG�|8&��#%r��F��jh�23S��3�^��}U���`o߾}U���c��@vRj���	��E�	��z7�zpF��ؒi)��7qLeP�R�E�b��O�e	Zd>+��u�0=�0�f�
N	�s�n��
�7�w�̟[��c���`
�&��K�m��k�{�z�1S��
e>	tM,Y�x�nJ^'���	r�2��Wm8o3����~]褌7(���0R8�5���R)�K�6�P��t��ᴜE�&�����aa�<���	��_�x�a�\�Jb��-)��7_�ɟ�\0��H̋��-U4��B;�X �1S��iT�a��;��
Qhu$1�!v��G��︃�-œ<�M���v��oo�i*���v���ݝ��ȑb���m5���3�Q>���b����DZB=�w�����kt��l�R2�^Qut���̽V�2>�P;�:xM&[o(����|�l��Io]k��NԽGM�t������f�u1���n\�Ml�J�jI�P�;<Qx�%�m
}��b0�NAݠf�	k�L��C�Tܞ�ԭ
l�Z����D��F�9+���(�Qr��2�:'��f%0a�Wzl��5�y�ʯ�;�3�����tp�>�311w�U#���~�`e��'�9
t��x��>y��ѓ��ƈ2~���M���L�:/(�qt�l���L,�
�Ƽ��/~��$����k�dB��t��=~P�Ml8�oc!0�}�;�O��'��#��n�x��-WB���/��
�M��/��owH�_`�q���g�"��)
�ͷa��cX��[PSC��ȅ���QN<7�J0Ie��t���q~�Զ�yq�r.�YI�'�v�&���.�]�
�{����Ҟ��!��h��P�	b��h�/Dwzf�h#j��Z33�<2R���Q���g�$��,i?=��V&�K`��9�EV�(t34mV����"i`x��ͻ��Ǔ�':�ٽwc��!�
{��	��4�c��bpKL�r`�c�)S�N �[<o�J�|�M4q"
>L8��9$��$;k�نA ��]srb���
K0�6�1
�yቱ���M�&��tS�C`�]f['�f�Hd��t�s�H$�P���o80��V��<�*��N�dSo��*�bU�M���mӽ�`a5�Ƴ���p��y�[���ܹseb�n<ބ��nB��2&&��� �g��^�殒�w�KuWD1ƽ�lU1_'N9)98O|4�Đ��0��OQA8���3�.��0�OI���ʁ�4�p/�t:�V^LQ^�ꈻ9�r#���/�_�%
:y��Q�<w��P�lC�*�l����ƹ4S�3��֪FLZ`�����5?�K>��DwJ�7�!��rdxY
	dF���k�����"���z7t0���uo�8����q��q7�"[k���Ysf\v�1�KKHJi��G�l�ȿѲ��cxáU52_��k3�\�d��ፙ�"ߗ�ׅnv���U�nerؔ���9~`nj�'W�푽�o��Ƒ6���H�Q��mwOʉ�G���W��y��n>;���q�fh�&䈷�26=��԰)�Rٟ5S��
��M�:C�\`Gq�Y�3�y橧��9w�\�6���-q���)����0d��܏	xT3�循M���^#�N@�d�[`GA���uXᔲ����N�df�Ȗ#�URX�y(.��K����R�Iy����|V��ĮJG#��;U�;ӔG�D����8N9W I��	zM��J�U2��>!"�BG�3���� srR˝`<�惏��)+��ԻYD�Z��_��J��<Z94��$��݄��xPx�4���`֟�L���n�;���/iKcCC�2��kk��Xה�E&T(t|�N�7��	z[r�1���:.�[�ˀ8�j��sV�77E؇�͎1�p"�CW6Jȃ����(�?ʍ��|�C��x��á�ƌ7	�,0S���95�΍EMM�;195�����VMU��|�w�Å3�=���Sg�
e!�:�:�R=s��?�#�&��;�*������	\^2�	�|��l�o��]iR9�5,FP��.�y7Ė�NӠ9�x'Q��<��2&EA���J.=��4𾂵*ə��+x���v�=8X���-�}��y/�4�׉�#��e�:�G˒��Qê��%}dY�x]�ȍ��,�,�A��Z�#?I
���h;�T��+=�7ܰ�b��xn�:�w����w��� ��RI����ݰcN=�r⮩ �-9�74�0�A��ۧ}i�|856�5S�6���M�q6�����Z�)��g�V�#����ΦD��F�z���	��<����:��|J�f�AQ��F�X�7ի�؄=O�i�����()��C��l؍*l����.5u��)�Fq@�?�858�T�7���-��>�0�����pAV��wsn���
�y����~�>�sro�`I���9��>��ɧ�E�����e�4S�VC����_�tcS��s8�0h��������8L�3���f&���[)a��Zm��^x�^.��&ӝi�a��Me�"x��*
���m�w�
�T+���,�%��p���ɾ��xA��&N'�M�Ր��1��u����Bf�>��z��zb���<Z�M�&��JFR��[�f�9�8)�rލY��)����`*����	čy7N}^Ï!�0e��T�ܰp�4��8�8���.�\G�,�e?��|g���8[��+s����1>������i�~؅�4�<���8KN�����;��;�ܫ��Ի,vb���{a��$S���@�F$͙!�R�7)�9#�1�	!
uƘI�8>��@�tp�,'EO��6�
�À��<-�&6:��h�G���\�wC��X��GT��+n�G��kX\��kZ��ԍF���lh��p�3�����g	Y�?�6�,g�{65��7\ݲ��Q�ո-Cg/�I)����F��O��&%��*
�@͊DM��6+�r��J=H+Q8s�天np��|�e�p$��(7@q�
�Qᐯ*&f����&r�U�Qœ�|��w�y�d S�l�$Ql��ؒ�=�
��Xw"i1��_t�d0�LG\�7�-iK�v�
��3��U~^�O�1��&�*N�K\}���/ɡK*i2����%3�1�a�YS(��Ay�+�0�F��>OY��$X��'���Rh����J�9x^ÿ!jm�%l
���e.��9��c����񉥓�A�3����wƎ�M�<��ߊM����;�6�'�{�qX݅�3�0�.�����ƙ��7q�_��qWJVɡqu�+���@��
�\�/n.�"z���O��������u���t��=��~���w�QLh���u�8�nL�
�ɥc��UQ����*z2������k£E��+̕i�l�H;�tth���-�%�h�iipp�� ���h�8=�˄�x?��pD�"��rPz[
�h�)�
y��TPq�B�'*u���rt�+�ڻytU�Sl2�LM%C�O�*X�5l�X�m���լ�� �Q5rl؂o�+���P�7R᜜M��&Ny�\���S�C=q<\WmC|M58�6�]�;����C%�"�rb|&RAJ�|�5)�vX<����,���2.�D�+��&x�+�9�s�A��L�\T��1 Ȧ��j@0��Z�~�����z
�y���3tlz��a;��WN?'ǐ��X�|�U�,���c��Tq�M��d|8��뾴E+}�w^z�Z�J�'�u�¯����[����JEV_�?�@EԆ�Х���q2Dn8��K�Ü^�f�~�zB�,[g%:�ɼBqc��{���ʙ�P)�^N����YT�E��B��{�hQ3y����E���b��֪5�k*
��Џ ]e��l_�����\?��#���h�����8�l�;cU�#�nB�Mh�Jv0$ɛ����4�<S�����b�&��"�q�R^�&���]ˀ+�2��-~����%DR��&��{s���3��G�|4T׬'�F��v�5Ь�Aε9p�-;cl����Y�~��*�0��8��!��]0��Uw�g1��8�o@#3��s��2/7�3�&<�ػX=�`��L�"�h�	�e�'QI�w�#==ꌚ�;\t�z�M�o\�,���*�R]�Do�K�+ց=�<s�b*�i^�hÍwj,)�8�F$��ͼ~��屿	Y�f��Z���W�-RZG�&5	n�@7��U�/���)��s.&/�ꌅGV��AR\rV�+�R�{9Oa̡�b%��,��R-d|�=�WY�VP
D���dy<CԣYl��z�Z�P�r$s�D._JE�� wdD�3�)����%���TE�s%�]�Q[����̃s�IUq�#�au7q���3������y��$�FKl��D,��hjH#��)�m��Fhc���S�(f�4�5��I���]�7RS�m;���.XgV]��a%��,%�X�F���9�v�V�q����V:����a�=�'>A�ϜM�����oŒ��|��up�~NTB��8��� ��u+Ht�(��A�,DV>��{�IMl�����7�pkx,�x�+I��}�[�
�.Mvjrbdx4\m�3+�|����p�iQ�z?*p����΢h*��a�j憈s!
uR�9��qO]xU�o�x���޾Z�^�*ѡ]>:�����=�t�.�)c�3�%܊
��0��1"�1B	��y>�y�-[̏�͘���{\���gL��A|̑��*.�S��,s�˴`,D����h�x9@�)�@+���K2���Kq�
)a�b6yZ"ʋ�g�?�݄
?��2���$�x�aM�ް�cM>�63H�6�ưF�jmެ�a��) 'P7.��N0�kipo0C�ɄMx�����X=t�q5��h�v�-6z�+l� J+�Ї��S;u�!�,��,FR�$�Ȗ��y޿R%; 3^h�ڀsc"�Ќ�3��)��s#���O��>̯<r9qNַi@��&0��{X��j��_35A�3	� �u�*�
��.��@hYC�8��sU���]�<�4i����1�.~���5�'��JnX*\�ntz�:S��=~��L_��u���Z�ii�P�2����)i��Z�7�4MtמDVu��k��~��]�+]�ʱ�T��+�X����"|P��}��rL�C:��lĜ�F5C��Ф��!F%�)�<\�FE%��'�y�<X$����p1B�������(p��
73|,5��Z$��JGz�r7��nb�]_�&�n�=�A�-�{��h��D��
v/���
��|Rv$�b7�ׁ�Y�)^�S�p��il��O8�.���{�1�5A�O��nu�!#E�;.�K�����"r����‹�c��x�
���
k!��!_m<?�;n�
�*_2�(��_�7�92t�b��n/`��}�@�q`��Z�m�r��=J�$��A�.�5�R���2�N�O�zf=s㱆����S?J�71�ÅN��I����}�7�Y��5�638�T��$�4�l跹0�A�l�)�`�2�l-�0��aM���,.c�'����L��2�B:vm�o�3����W�G6,@�Gњm﫤���gU�g��e��N�;��b���F�B�9@}oM78��35���Hy` �;+	�l'ix9R)���]�i����T��̎�S�һy��̓S_>�̓C�.u�h�d[��F~���
�o
����$I�Dn
�(��y����I;Y,�7�|�b��m�gJ�\J��6����"`agq�wcg��p��W
o\
�5m�=�$1U��q��NL�?�r���䅈1��2hyN��W��t`C(e]�Q�ׄn�.����)�"@[��/�f,�fD!�A��DŽ;R� Q�̠�1s��<�CG����r�\�x��1�&�P�M���0�ÏY��ڿ_���oԬ�÷����D��i������m��x'��wJN@�.�"*g(>Bρ F8�d����sT8R�9<�U��|>~�<�l�щ
�R�}b#2�X����WB����t�שއOɦR�w##�l(��F���Ԕ�[�O�\���������z0�t��D��*�<�8�A@�����o�n>�ǃN2��dK��؂������F���M��p���e��B)�ڇ|wf�ɤ9�F�
�D���6�d�|ΛM��;3��7!<��x����.�'Z��r�j��-�q��6xln��eQs&>���-Y�,{n�(�Wm<�L�
Q�]�x�f��7.��Q��K�S@�16ʗ��OqXc���r��Sk�L�Y
K|����o}�gV�	�cزZ�긇3�?��S_�w��[`�E��td?~�GDTlo��)oA*4���uw���O�{����}��6������uuG7žz��[o5Z���&([d��4�W�G+ïҵ+�B�tvy��)𻶠�ɔ#��(˒�Gr��憇���ӻ��h�������:*E[��h<���m����N�Tho��,A������6e��䧚�Ts���wG�ϳY����wڷ�Z�B��3�M�|�@�R���	����֋y�?z���MTy�b�n�w#���Zʼn�I�ư��a� LL�8J�����c>���Hb�W'
���8{it��e�B�_ۃM����X��`����y�3f �&��c!�2(�`w�.��X����Ξ1�ᇯ$��0n���V�r���es�-��;|`��<�8S�q��9���M()�
�`������otǺ$�C������ѩ'����U��2ƈb��_cHc����}5<��#S�
���[���~���o܄vL�NP����u���^<���m�w�nc7�
���7����3�ȩL�A���0���B��/]��H92���#q/Y8\Y:e�l����¡�U�6k�}g�R-�n���8���Z�ػw���x_�Jܣ8��3<q&��@rb�L�Ue��*s��|T�/�U��f}��S���Jǫ�,� &(�D�/C��ʰ���j�7�I��|�&�4��w,N�&Pŏ�*��- N��%�Y��$["�g�o��6��8$�8�q�-!�0��
���.�(��${�@��;�mYp��X4bJS_d����+Gո1F�M��ds�����%�Z��L����i�:�~b�pq5��.�1gYp�t��<�Gc���aVԕ���=�Qx#����!����0uÛʌyc�����}��rk@��奌>i썯�Q�����T��	���1c������P��
�8~����ǯ\�����49�|���s�������m#�npm�Zwֆ�.����F����DX0��d<S?3nk�m}�"���'s����2�q;��NlRG���٘}۶����q�"���W����GmaI�l�,�'AZ�N
f�ס��"$M���HS�T�M��Z#7Rn�#��%4��w����J�т	y,�Y0S�I��o!<ӕ#��R��w�+�S�3��$�nUU��&���Pu-��楜z�C7��R��T���F���O�%Ѣi�R\�GR�p��h�s6�:��D�&[,u�ve}RNUo�ٴ����4s�8��B8{�m%�dDEY͡�g}���0�Y��%C���z�qM�䕯�<f�sTn���IR2GRW�-����k¸���!A]�X�l�*6�3>i���[��uT|s���|�<+�	��Ic�g��k�3~|��S��QY<��.�b�F�pSe��{��7�������+b�>v.��[E��RO$��s��єp��\cxt�m]Uȗt��͖�I���\�w��Qf G'S���u�6ʋ�﫤�*�-��9H3so�ƾ��Z���	y�#��9�M_���K<��U(��5ua�C�V�ֲ��x/���U'�Trߜv)ݗ˕��L��o2�nX�-��n�e�^���bšG���I��Mq�%��l܊��T<\�Y�,ބp*`�l�ް���Lg�C	�M���2�tnX��XhМ
-S��X�U)K?��e|RJ/E��Q8�����8�����™�11�;d�I�x~L�Fhn�R�R�L��5L[�ȵ���bn����`�Uۜǥ�U�F��L@��d�a�t�*�
5�5���+���>�P�gpcX#��L�a�
;�����PJ�5X�>%�X��S?��YM��(PC�ԟ~~��^�C�8�
�1���z��Z�|��y�~r��uz����b��W�wW���L�F[��3��Z�%)I\JY*�����%�lin����*|x�T��8]C�x����$�n�
�Ҩ���:��
+�QIr�Tw�-n6��j�,8�5�
��hZбY>��
�K��P��_�qR�T
�"@�>E�T�s�z�'-�9SӻI��kO�6l�1��=����j_���{|8��(V3��A�f6�ԄԔ�0rA�71�L��n���ŕ~��-|m[W���U#�~>p3rhʕ���k�����<F�r�kDY��YI���0�㰺�e8�7,[6�&l�`��5ʳ6\0i����A��ڰX�$�WB&\¡X�i����*�
c�}���!�c$����oY?�dM�A b��
,0��rB6�V��Z7g�1��[��2SV_��㢩v��m;y#����_?��mlLYJ
�&��pz�mZ��F�%�)��eDݘheɟBA]
G���"O�&�=�	�V)��K*"=h����z�_5J�]�u�^��b��V���*�1�@�x�Y�UJYf/ �#M?��i~�N8��_"�Q_w&��e�:�|�ћ�T�j g��b!D����#z0��@\����
;�^a���_�O4Hs	�\A�❢���p��<�*�<Z<K$�c�1�v�ц�{��M�����-��l��v��M�
���d�;G�5m�pgɧ?�B���OmT~�o��l�2���9��4��A�Sh�|`厯 
��X��y0��kh��*p&6Xl�^WK���\��͛����h����RWN����`
h�sp�vМ���{&J���~B�&��6%�7O��9��y5������pn�~��Q�鬫�[2Nv%�Ѫ
��pnn��/����ۿ>��67L�h
�m��.�7N�AOo?�Ė�¡	�OM^+M��ۻ�w����ukV4����;+�ET4�p+��ݽw�ƭ�]�Z%_���)���-��5�k�ڤ
g[��(�^*��Qt3PNW��B��M���$�p���p9h�G��P>U:���`�}�|�:U��ΐ���{~XuD�
�a��o��+��UR_0�\��ֻ��PI�-�Ly���<���zt�'���
�g1��&���T�	�}(ibm<�,
�M���)/x�"[�������� uͫw٨���)��*߷���w�G�X�%��١*���=�,	�,]��)B��<�q,.hL*[���$�
�O#ŵ��^5�Q'M�pʚ�o8c^肋��8As���XN��8�mlc��Y�����2T����t��ڥ��E��&��Elor���u`�w���zԚ�C�n�A0|q<�A�y9����wӮYl
Y7��:u�Y�Fca�B(�F��E��.�0���3��h����5��7,jO�~	g����A�}O�t��l%�J��ey�r� 7�y+�8�[��ֽjU߶R&�b���t��x��L������kR�Q�T�?�xz�eq�R�}
�|�2,R)_��d�
#�A8F�l>��2p���?�-V�Fi��k��Z>�()yOiD��b�Q�����TN��P/j���ލu1ؖ��x�g�`no���GS �q�:B��&�F����=��n�
��6��$�`f�΁'��l�X���a|Ҧ��j}P��lRxߴ��%�7���p�l��6)����e�43�VP!�CK�mX$%��K6�d>6��(�(b^����)�/Xa�su~��]pudDf���8�1�"~$�A����g��;]���;X�m��|;�ń;כ���&X�3By!�����߬��>7�/s{F�16��O�έ�~��,΍,)D�>L�kNQ�쳆/X/;h��u��Lmj�j�kE����.Ȍ��ș3ŠT��<~N_�&ua�A
��M�pC�f
n<��x]�Xڻo��L��	��?���QSu�
K�T4<�u�;�߶�*����WKY�BRhK�6��@[ �.I�x�lɱ�؄8�Ѣ�]�	�SCeX��JU�u�� q�ٺ�"��&XT����e�keZ�
>Ϲ��ul�+�~�}�~8�9�<'ӝI��M�x�7�����	�S�d�{�븟>��U���%P<N��HmL�rh�.S�o/d)�"���R>1�2�b���8�ե��Չ�f.��7�z�U�
��wԻ�=����l<V��>|��a�>�Zo��
'f��c�`j�:F0��8pwn���/~nʬ�k�&qt3�͖Z77%�b��x��զ��;|�-�6Oן9�FV|�o�����`k�|p3+'<khjX�EXee~`��Cy9�8S���.e�BKa�P���_C���/d>�΋�16��v�)�MV4ÙG��NCto@_��~櫟�i7䱗e.���I��yځ؈kSZ���nZP����@�4`b�m�oX㛊�5�a�&+��8�y<�����hb�o���6/�A�%����5���7���7yh0��XR><��0?4O.<P��_�%s'4o�B9 ��.cV�wiC�9E�
�ӸJ���|�RG�-e�9���n�H������M�<&���I'�7�w3Z!]�/�e��dD��3�I�T�w,�N�̤�]چ�r%3X`h^�~�BM,�f�/U�Ɉ��&���u�9�HD���%�4v
Ҏe�{O��nn��]�ݔ�)s*��έZˇ�����ldw���+�(�GgR���N~tѵ���c-R�����ڲk��"���z��"�f+�>�Wfͱ��%���r:�9�WV�#�E|qe��lzŭ����Q�l	�jjh��EH�T�}�C�r���@dI��+W�pD�XZ^>�t�3L����lY�+ed��i��G6�;aԹ�s�Sf�
DȎ�VR]�F9���s�=��_��P?��ӓB�Q��jJ[_R�[L<�.`;�O��e�0PG��m85
����T�U)�4���ɖG�9Sf��6AK����f��f(����gnL��AZ^�Cub��0���?|��W�lP�7rp\ut�ͯ��ԩ�`�?	`\��\�C��
��5�)�(u��*�[X�]b�YSz\�)Q7�2W�_ͧ���N�8v!��ϻf����E�H�y�����p����I
R�+U�"��BE�Ce��������R�D�c�qȖ
��� �`�96|�9[3���rJ��BO��h8��OF@3�LD���Ԥb�QA{�$'��D��KC����`}:�sO�h���Ga�T�ws���{��ʉ��/����V��߸�ڥ��=	�'��`��pS�oگ:7�驻�r��.p���-�����Qō�o;�s�5��T��pn�r|{�v��0DSW�
�.?k�͝�6�7mZ#��u���<p̲�)ҽ[��E��\s|{mm��_=����lc�aǷ��KW�;�+����=��U�mR%��ug�%����~���qԩ9����|W��d��rixsc���^w�ܭ5Xc4� GE2e�P��� �E�({.�N��Α͢,m�d;�ET�ps%��x�?�ETlJ�SW8���B/�EP�T�ж_��%�R`�	�A�X�$�;��
����:w8#�������G}�'�5�1�Ƭh�N������	祡y��䀌�=�|�Jz=���ݺ/���p�>�pqe!�'�Y�*׌^_�t!�Oҙ$p����s)�B���(i���\���B��)�e^,"�9� ���HP��⴪���
�Ε���h�$�"鮎���d�D�$�"`Hě�Y�w���������Bq�H�s�;�����C�!Zс��n��;t�cޔ)�2x��7�	n����9�����,��n��8�"0���]���K�M�+k6���
�
@��u>��v�����}E6��?����]�n�cX�7U?���{S��.U�:~ʩ;hԍ�&�'��}jf4����䏼�'�`�U�����۶/8|�,�ڎ�y>Upӿ���9��%b����OuvW6+h�cOn�5pC�{0��\N\z`
��mr݅��Ԡ^�݃3�P)��O�f ��!_����iq�L�2a>���}�~褐�4�gv�mvo�K�~8��N�'B��iq��h63��<Z�L��`���4�ian�OI)��ʩpv&E!
�8�
n�`��U!�8Q#o\������!��.���&��C����n��l��Q.�����P5�b���B/E�ttǒ�D$�H�Jù�x��t,��'VH'��
��<�x�x�rY��Qi�T0����BI'h̳���H+,��(
,*1�*)���1T*�f�EHB_�.r�F��Hs�T����y
�$s�JeǏ��^���J
�>��)��M<���ŻQ(U�VY�S�9�w��	*���K���Zkͼ�d������B�uL��6	nF�ژ���KP���
W{HI,�ڜ�yr����_@Tލ�n��lÏ	����9�l���mgç n~x����n���f��t��N�i]u�E�H���������&>���գ׿Ӻ���H^k�8��!T����;��
յk�mz��rjԟP�4�߉O�����8p�4�,��n9�85��:��#����{���q��S�s3��N�����ȠP�3}R񔁑���њ<�'94��K�p�l��w���nɄ��p���3
ʊ�8*=n�8g��-s/ʧaq=�Ӝ��9r���
Ϲanm̷�z����O57�M�R
���c�j��7=�!��\�z��G$ɧb]���8
wL��><�q����HwΏ�(���_�L�7K�Ѯ�}C��ڸ{�&9I����"��)��ҥ	؟\.9�j�ƈ��#�Tj�� �"$�Mlo�n<3Qbn]���j~Jc��I'N&$�/�`%v�L�|��x�J� �/��ChK��4�5(PH��w�T��7��P�L�%�$S���G���oc��S��p�a��3�f�n�wʾ���n6�}�y�N���a�kV8�R��+��yRpS���	�{��j�t�Ilo0���k,��m�Eo�,E�ۂ���8(��c��תּJ�����&�b�ޭ_{��Y�Mm{���N�'ہ��H�����~�qN~��*j��n�/��M�Qn�M�r'������cN�賅u<?�ħ�
�t��H��kv�-�8��5���?"2q�f�9l�ܤ�b̄�V&��Ԥb)L�¸�X�]�|?=e�x�0�{j'�mD�6���6qpD��ܐ
טMH����cS9� g�p�<��X�������w�Sn$%��o���>(�J���3���3
'
(q�`�-�/N��� �%�QG�d��}�N{�c�|hWW[�類���Q��J�%�&CӖ��]�ᡅ}T�
�g!��=��w�"
�qj�s�T>�O�R�q7sN�E����(����9(����d�|Z!mz��̱E��X&��C}qk��4�~;#��T$֛ƻ���&����k"'{���V�X�94�8y��x�D���3S����w�w�R٠�U�����|I�#�������Xs�;�/������2��;���p=pp����S{=�i��ܛ׉��p6���
W��ke
�n�9A�ϼ�
O���ͯ�،kc�'����_��[�
���j��끏�X�����|b]�5珛�n^��#x<»9+ny�7�;�n
�7{G�7���m��'�<Q����
��nh�E����*2��ߙ�ǷQ�[�m���&w�ـ�'g�n��Ì�(V��6��f<1E�h��`'{�a��.ı�.���\�<�=.ˋ���!*�;?3 �YE�ab������\�#�+�;o��99�?�A��77y7/����/30�w4�,�MfG0�Yf�)���c���<d1�`��+��X9M�y;46�IE�ա���ӡ��C��T&.�_���-�����DggW�w.F�=�Pρ�R�(F;H����B2��:3$&��;�� ��)�H�C��3A6.�RgL�����ʅEz�i��|!^¶v���D�Q�0�
���V�kT���w����H�"�I�y�::p��nn������ �U��U8�ps���ߝDi�o\s&?t�5EV8�t��������7'ɑbc>�(3�W�ͽ��r�O�ojl��\l7��+�%�n�a��w󩁟M7�b��|�	�\s��}»���X]���7oL��������ω*>��+��C#�O��.�����	ٔ�͉����Y^Vӟ�
JnF)��xz��]��g�݌l{�=�<pO�*]HgN��e>	ٳuR��	����ꚡ��-`�6�k\�FD� ���ǔ8�B+�HVU�r�);����b��K�3�=���ѴP^,:]UN�&�n���������C
�L��ƔC�?x��Ċ��2ذ�ލ50����TSN���:�_PlL1{�e�]��*F���X�����nb�Ze(��3b0s�L���/j��(�%�y���9��+�O���d��w!p��R�E�}�0
��̧E��0�H�(^�y"�Ed��W
:�t����ާ�#u�4��za>�
���x�%�6K�F�����
�6��
G���`��9c�BzW�M\e���Z�����)�yw�L	fn.��L���j���5'�������YӪ›�^w^�%��w(g����L���z`�����d��U��̻V3S���p�3ל�Q�*��d��k�L�7]87��
��n��7�mY���K
�[HzHkl��������W�(h����tҬ����{t�:3P;v��	�?��r"���;��m�>��	�;5e75>p��`�ш�RY'��p3�f��,�Fќ��^e��y#$�\��J+�S@NEQ�3ڽ�<�����C(-aX<�؃6^z�N-A�H��0{zV`3`^�两,�q���}���(~�?�ˇ��~��w��e�b
�~�u������2�'���1gB44���o0�o�j�w���57
�����fn>\LDV&2�y��%�E�WB�\::��ۊ�X�6J�w�z��D�K}?��.�S�x�w�=p���evɈF��4�%���T]�]�v6���Y�E�	��d<��p���qn"�5Ң��bhNp��X�A\3e@o�p���&y�0
�ґ۴���nʕ~�m�-SC�>�
7�n�a�^��07��n���K*�����w"U�Tw_w��.�kՕ�����k
���|��)V�F���Xf���D������ZE�=���CE�g���^ON�J>X���n2�����z�:X�7y��禥?q!V�����3~f�kr�y7�gwA�(3�+Q�'\
u�ƌ����Z
n0�nΞr�&�I�:(�L/ ܜ�r��	n��-sՉ�4=Ja� ���T�-��=�eu�������_��e�9�#����8Xzb�4��4��Ḵ�;�xiqEc*Y�u�H]IU]
�쯞~���^)��6��߻�Ûo��:b���#S&o���t��"�iS�
;�SboxÅ�`	1���mʁԊu��G2�d�:s�˹D�n~둺l �ˇ��͝�W���r0FPD��$��!�I&�E��Bab>	�&z3ݢQ��g��@CM!�A�4vZIB�ᩣ8h���g~x����B*���	.''�F�z�s��9V��(�f
I�����Z˦��,�OW\�G+�n��w�wS�b�OS�*�ϲS�P��q��Ϗ�;����z`q�!Au��ł�ɋ.hp�fsƹl=��$Ɇ!P`S#�#�"IU��k�O7���̘
ܴ�C]z]�� ]E���_ab_�Y�s�p�y�.���,=�C4�A�bOH�b��U5ug���R��77;F��
˜m��a$��7x=�(�T�L/Q�<�3�~�E�F0�/ܙ)X��3�8&?E#�otc��/|���.W�`��3j����׵x��H�s��XP���̽�߾i�&�5�H�X��8�����N�Z]���O�}���?�%��LZ7G��*#�_�'��u�sy��#�ѦX��tPv#�6uK��!�m�"rJ��HΓ�"�͆Y�8"u҈q�j�'�ث�D�B8��8�uG�l�H��ɥq;Hi��T��tn'�\?2:	�i�icHR��}�4�G`\�g�/M
�}�}�O�5�l�PgW<�D�����$Y��	U'L��ƇK���s�X*9����DM0ś�*�)�I�|��{=��ݜsމ��}��Uꦒ*���F�(&R�>��g��@�,����J�Z���1�*���R�z�O�5li�"���&�L��\��M]s6����i�9�fƈ�*w�K�[�#ce�P�n����53���g0�ʴ�۶IUk���pB�o�)Ǚ�}�X9;���>���Ҏo9N�3��UHĬoi5#^�I�6A?�{���S����"D�_�.���$���8#x"/5�:�����	�cuz \��F�W��q3C�H7���X��{3S<)��C{Oʙ)��M�
�h��0�t7��94�g�8g!p�H1��N��ܼJ�
��������m���1h��W�n��7�)�����6CC\��/�1�:�
$n�#	؄��#��-{92Kߨ����u�n�"�����H�6�{�����|G8�gb/�P�
>^�3�7c���%���凘��
�3�~��Iu����͒�`ͱ#�Z���:~
7�z����o�CѮl(T7IM≘+�SH��fX��3l®y�Dj<�b�ԉ�#���4_��LmMs����T2�ws{@NY��'1T���Tq��5��,�םp�A�J���v�O9�-�hZ"|s�7�Nps�
�!^����|��y�5�J�/mi�S���2S�薲��6�[#9�M9l��Lߔ�~�p���+��-*�VU��y���(ڪX]�kӠ|��4�!p�/.w�}t��(��|A��(�Tǩ�v-�|_m�K�͈
b0�f��s��~T�}#��G�~�n�lUw�2&��W��sS&f\�R�^՞�~�q�=�/�@P����؁]�ʫg�k�f�$�n���am�f.���8@֪IU7s���Ӝ�9s���_��Z3+��o�W�����_����Ì��S-*�0
�F�%5e�؁w��̏��<�g'!
f�
r��ЮIJG}
�7�Ɨ rI��!�n.D�x9�J�	��ek�RfRԽ�Lr��pٝ���m`���`���xo,x��2ב�8�\��Ѕa�F���ᶣ����w���esC��h���.	���֘Nn�%�L��� ����I:��K����H�)Ȣ��'w�_;������')��L�)���ϋɩ���&�ڱ�����s�Kj��<}����M��+Wf]�檓�u�ȅO��D��rye��N��� �)٬�݌��% ���6�&��w�"�o�n� 
�
8�퇠O��Lyw^���ɍ�;w4�lح`��…s���w�-��|A�
C4qn�ۗ �Su�޽�]�
,���Z�){z<�vǸ��{'���o�om؍!6�xc���2�%���~�c�����`��r��X�%�3\�P�ӷi��3�|A����e\�N�d��p�*�W�D?�k��m�Y4�<���_ŵ���0���E�����\�&$G^YX��#87���5�*Q�@��sh��$��͉=
UL�L��`���̑۞�@�
^vRD��4F`⨛%bj�z/�-�Z��'R�T���y��m]�����l������o�u[WW��x���ӳ�NT!�0���`У�IGi�9B��!����Rr����`ro(�{�혙z7z7_�jn*���ۻ
7w�`������v���2?�jB(����X5T�o�����x�>ގ3C�X���M$�!ֻ��b�g�{�Q��N�V�)�1�=;i�7����}�!�d�j� ޫ�j\�(��Ͻ���&ߞQc �t7��(b[�Qj�#%ORK� e$��\R��2SHٌR2C�F܍��o�j�r#'Cp܃���%}��)�q8��8(��j�6P�'iX�ܓG
��2�m>���$�+8��ҽ@�����s�W�./��hlO@N�Źx���އ5�����@�'ՉSJm5l�V�0
�a�߄������,I@�Ov���eZ�瑝Rf��;�3���'B[�x�z�F�
� ��ּ��P�q.�R���9���dP�3dbJ~�TP��jZ`�PX7R�4օJ�v�:
����N7����zl�c�ߏ�6,�"�d�.�Z}-�f:#�I`Q�!�F�X��x �97�O�
p�fnֻ�M�ݫ�8�6<�ʺa
v�ﮅ]���]�7w�ʆ���\�	��:�9n�[W��Ϸ���mou�?��c���z��,	�5��M|u�?��Ki�����n�z?�R6��Z�����-|`;������Ӭ9��~yDx�O����������9�FnN6��ځ�����ݾ���������dW�;V�e�I�x��ɣg��Ξ�]3v*<al�T��7��^���>OC�`仰�	KP-wş|�T�����_>�hʏpd`�?�n�Pa����^8em�ڌ����N7�W{��Ϯ�^�AW�.�lYp3
AG�Ԩ�/�#��
��-����,�5P�S6�7,��<~��W��3�����L��\}����g��<�!��s�cE7!�pkxNH*��1��ɆL7(M�
��M�3
�.f[
��
_���b��RʵH��|�b9{��N=�I�\��;�z�u�Q侽��h�WݙT�z��+�]�i�	�;���9м?t�C�v�������ħ�O:���p R�pn"�Eֿ@�<���
�hu=��nL��r��D�
*��ۡ��]��Д�h�P#��0 �_�H�
��{/�iv���v�U��)�tn�a�	lq�[Su��w�5�.��i� �4����bv�I��/�6
M�8���U����Ș\^Y�m������1L/�/�7���ʕO�ha
|;�)��gW�,O��0:�'RK���Z�J�Dkvpu	C�fv�
���S� Ul��H0Ļ��2�}x��Gl֞����%�h_�ϡ��"*D���6L<1�0�ܖ�w~Wz:�O����Q���i8�mXePUS�1SL����w_UL��6M�B;��"�ʘ7�&�@gN�|��z��o�nn(+����6�O�—�(�(.Վ�իQˆ�8�<��C��@�&{r��:i�u@@�'���І+<…�|I�X�iuu*��`PA;��U�˳D�����FI[ȁ^��l1���`xg�c��T$��>�,hX��<����m�!-��!���\,��ښ�f�m���b��d"��s!j�wJVyk���`L��鎙ѓ�	��ߛθps[I�V���w�ܜ�`�o���k��S��i��=d��r�87k4��$(�A��g���UH���o37[�k��4l�^�A��ڱ�*�F���m׮��K�����4[U�:
����n HY�m�������~]0qsL�0Gu~�Sa�YֈiC8��I�xa��o����jn�b������G;X�����+m�&L�t_{��s�5��z��^�\^>weQ"Zf76���B/���(����E���
x6���ks�>�
�����ݘYbj�%��?;�7O=[΄ب
S���
uԛY����C�1��%A:@��Bl�1S��V���ew�.[���g�*�K��dt�m�.
V��Q�6��]�I��/�$�\p���қ��@�s"�T2��("H��l��g����o=��a��]�8H�rV�S��!:}h߳!8��g�CB5f�`>���)h9��lA���t�V�i8���ێ+�лy'�<��?뢃4,�b��7�x�	pY,[��~����l|�qכۍi��A��Kǯ���jV=
�\�b�{��5�Pø^3w~�fiz�§k����"�*�lhE�����ۦ]�PL�?0�1��I�V����<
�07|\�f�r.x9!%+����T�6�m�K+�5�P��5��S7��)��9)M���F�)�`�R���,*�ͮ�L�z�9��\n4{���Zv���/��r��n�}�����+*6�94?$�����#
W��941��x"��c���;w֨�ϭ�cqk��T��낚M�3Խ(Nnć(�b���w1
sh
G%K�7J�&g�T��t�B�*��I�z٩lyA�q��D�3��=p��8��]=mq��p�4�g��,1<�f�͡CCCm=��l���ͼ�HD!¨��(���d��H�AU ������aGxe����<j�6e��r4�:S����g�b?��.� ��3�M�����deǦ��6j��FK�=@6l
���1��h)���L�o���e�3U��i���MM�il�R4�Ms�F���0�@���kM+P�;8
fsw̫ё�3X#�x���n(��c�.��k��m�UH�W��(b�&[��Z�8:R���<��&�F�ۨT���g-
s+++�rp\�X=1�_8�⩻����o����i)_\���ױ'h	�GO���=�}	ِ��
e�f���Z��B#3�����*�3i׹�Yvh*QX��-!\:K�
�oKK��~�Uu�K$	���pf�p�i�tGn�;��'
�
E�Ј9�Q$��9��"ߏ�}�0nH�XJgs�Q:�r�R�бPLr��hϾC=�Bm���P.��`s>���SI��z�J�c��%�U'8
�L��۱#�һ����2�TFRe�у�<;s�M��s�,����f)p��7ϵ)��)̐ƍ���ܚ�JY�#+`��:���H�Xs+us6x�Z��d�!p��n�c�
Y(6$ͷq"�5ۀ��l��i��3޻�,,Φ�S��E�_�S(#�q��DP��W��Şg�Ó27��S�W�x�,�^5��ca~x�&+W���I^��6�֑��S�B�uvL@#�����?c��p�(�fNO�Z75-׿)#�����o�L����O��7�bT�n�ب�"���7kk����wzXHc0 �)a�[�g��D.�Lhb� +��KbBKR����ErQ1�y48+�R�6��oIYp�������DHX�B���t�P��
�xWh�]�
�%�5�&��]`V(�B�x�+z`�0��g�s!�Ѯ��J�'I��F��\����ܧ;n�������۵#�����I��:��M%��d�ځ�L]�M�{`��ѕO������
�?����Ȼ�أ5�k�4V�G�c�S�$��O�;��|yV��+P#�����7i�T��~ 
׶/�H�3Ic&�tS�6�d 
���O�|�W�b�SfnA��<�fNΪIzOhi���\�3o8j)w3H���E�܍N�|���G#��Ǜ�3�|neQ"Z�~ۄ^��1����$��b6��ux(�b�C��민�K��7�{ãrΔ�0h��/���}߽����'=�͇@�Ĵ@5˧Ƀ4�x@B"	ސ��d��F��q0;qm�bm��BU���8�
DO�pW�7�烨X��U�8B�6E0�\wl�V�N���<��&,DL��ĹLw�&y��9�0���:�@6jk.$�Ԕ&
�phߕ��R����"yUl#ŝ�7�{��'�4w�S��35�9�$�Ryf��ӝ^�5��P}��R3��`��T�;��X��O���&��;|5��Vƀ�n����)�p�gi�µ��p�.�p���Ñ�����V�c6V�(&�3�Ia:�S6�f��4e�1��	���!��JfJ��̀���͈7^3=�mͦ�g��ܬ�cv0C���Ğ�!���c�Y\�fl���t�`�m0���Suy"1�#$�w���|VvX���#�7j�,=bM��z���N^�N�5�wѨ��
(#�
!�=�n�;|���Wntox������2��o�)������7��ɡ�G���,-����æ�����Z��L+-��M=�`bb7-U�� ��뜱ᩤc6��c�a�'��`�B��P|���l���b��:aZZ/	��9�����o.����,�ӕ��F
�D8I+�k�'�I�Frj�I���҈�wh8zh��'�����FS�'G��bq>�����"�����$�>}�N�oz7�on&����V�������4�rr
3�w�j�Z�fXc���g�=�вS�s�Yx�~�P��c�/Lۃ���F�23n4�\��ec����,�୑�qlvjflYqaF����_�F�C��,��vx����Nى6�ۥ���=�J��scP�f)�™Օ��+U&s��
��y�Ø:�7.3S�
���y��Qzeydy�$��}`e"Ĵ50S��F8u�x��Ec�u:g~
X��ws���b�f���[����aZ[p�����#��6���.�����7!
P"t�]�X�0�X�3�b>��t�W㋗cH`�p|Tɫ�4��|��R��B����;��}��JL��uʃ��D��b4¾�AF���-���]�0��l"
��šP�dJo�8�qZ�i	kk>��7���`K�A
��Pg��b4���a�Z��T&��)���w�n�_|��o��*�R��7eȱ�}�M�#���)��Ԕ'����0�`;�4����̨4����745���:w��k�ղ����VZ��XZK��c��m��3;�S�����=��̮#«4��?�������&��%�KaVwÆ7��.M�Qn��_�m�H���h>�0G�2#�B���7^@-��q&>r��
��ś��΍���&��F��k�N�=�6l�,؍딌U�F�DC��,v"�b�?�FZ2AM�M�-�<��&�N8Y��i�����M���ū
Se���;&\�b�?���߽��+���϶UD]
ctpl,Y�Aj<�7Ir+�0�&0�	`���}��(ߔވf5�T,�dފ��=�)sYu3�x�C/�~���~8D.)�D�Ɠ�".�
����*1_J�3�6�s=�����m��|�0|�Z�T]�����6Q�]�%p�r�}C9dE����pǡb�����kG;w(� �KLӚ�o�GP�Hԃ��twA��X�x�PܦލO�wSL�9@M��^C�}�������6ZTw�i,<���Ԕ���!�jQ�<#���#�ją�m��1�w�ln_�߇{[���n7�&�ZDXn��&l�Gu�ꌷqQ#��ɬ��c�6�T�QEOl,Tیʻ��؟�����)s<1�D.�cr1�F27f�]1�;+7/����k��J/�UKg�+Ae��Z}�Q�=|��^1�7b�Ε�n�ʀ�@C�<džE�
��ss��\4�Y��!��8�=lZ~>i��
�p����x��Q�3���}��+s���Us���IE|q��ʽzk�6��1��|����	�����X�d
	�!W
��PH��� 4??�@�}~��������ߕ�06�u5t�&�q�x�P�T���t��3;�ֆB�7��;r]th=%������#\HB�;�Q2Xў0]
��!<���@8����J懏�i�&";w�Gd�(�d>�_{3ws[��w���'lc�b?�����+��[�n�X=�Ɯ��e��t��U&�d�h�!��5���e�:�^������ھT#0�tW���Z���j�j!w��o�q���##1Ui�mYe3j�R�Yrd\�.�b�ņ1�� ��)�0��ő=h�ڍ1�)l���5e0S΄p|Zʝf�*�y������\?U��aV���6*Vԟ�4��h
�6\��7�	QS�@�7��x΍�+7EK�y7oT*����e�Y%p\�ug��V��w��OL_(:+h�T$5WL ���`L��%0��h�D#d���
�38uF)���tLtV�h�)�ݬ��gE�����/�u>��'�������|=�{��ǝ�sйgr�
��k�4k����H�$:���D
�@["����}�d��ޡ��T�D������8�f���&~Uj�t�oo%����o������j_(¼����S���{��ح@�V��0;�H�ʙdG�$�P��KAR ���9�MUj�����j��Tv,���V�D
K���e���+D�kr�V���[p�kr��q�ӻ�G���ٽ{�nbE�l=���)�5U��C׍7N[$%�F��L�3^:Ks.H#��ybw�F��_|5O8��Ξs��.�8CH�����0���J��
���KM�3/����f:�D��$L���,{|-�?��0�w+E5�Y��N�X�x������b�6�9	>��4��Q��B�RD�Lo��B+�T���Dp奄?=#$ԺDzW�+��gւ�g4�
��F�,�Z�ͷ�6�H��x�|��p8�z��o|V�<���ƀ�Vb�T���|�Ł��y���P5m
'��49�j3\N��4�6`�M���Aa���@��￐+j���������h(�S�l�&V�~��gth�Q'����D���Rsw%���IQ
5@�H��e�0#�C�8��+��V>�i2+��|>$��
�BU�{�����謏}03S����Y
$��'\�n\���xM�FP��nPt�6OC�����<�5����g�L����v�1܍�<ڰ��*��[�v=<q�,8p��oa`S���T�d��q�辧�qvҧ�A!���_K�އ��}6�a���c6b'��p�c��;6vVFPf{�Sc����P�:�у�%C޿q΍2���ȕp�b/�*��̰a:����Ñ	<�:���K:s��g�~Ѵ]�Y**N��<7�Wx�c)G<��G�:❟#�(h�X�@�Ļwp��ƶcb���:<O	1���X!�����51���97�4q��b��L�4Z��987?�z;�ͳ�p΍�&;h����:%_L��91\_@ �|�Y���'\Q�DܣN'�]~� �L�n��,�~KI���a;B5��b/��	�٥L���q�93?��ܤܹ���r�������R�u(�h�?H備V��-A8�V��eqː1v��`{,�T�~�)��TT��S�� �j�l9Ek8}��R"[���_�nVM&��;����
oc8��ƣ���f8`}l��q�U�
�c��[V�FM#�8[_ƽt{��<�(�d����P�����d��A��k
��%��̫q�.mps�k�۝<�dw%ޏsl0�Dgޢ�L˄��o�@�wodZ�3~��Ŏ��ټ]	tv��[/���.���3s��J��]P#�c���mN�`W'R~g����6~�Z1�,f5�F�7[yc<�;hK�vQ45����1���=���P:8�a}�k\8���?�:�k=�zO
�C����F�h���D3Y0r�b��m\7�b��c�ʟDC�u
R�x4xp�TJ�d&OM#r�23~Ś	K���0��'�D��`3���j��N��"����z&Uo��D=�B1#��9�M�]
�<|,�2CF #���/�{���%���z��U��r-�ϯܩw}Xj����V��A"8�p��nV]�������o��`c�ٰ�#F����l�B����Ɔ6�0�}}��i���Nm���
,1':���u.��Qs(2pC$5ai)�{��@��͙���DP�D�m�4��c��@�\����k��s��ET�3A3�b�m �#���Xb?@S�>����\��6̜����c*^!���s�LS�����B%����럐�5a��ʩ��Tra���e�(m�2`�����pIp�g39ɢ��e��1-
�DG&tm�M�x���.oQ6��`���+�:��ރ�+5��{��3�0ER���G�w���G@cs4��͑���\ߴ�+�]2
��:������K%ڣ Dr>�y�
\���\uvt�S�d����|kF(�̄5��(�	Ls/��s����~>�1�|j&��i�X-��!�#�=⨇A�~g�(�k�lf�t�'�r2%�sr�c�i���(���xitt��ml�oc��f�40�G5?o1i�ֱ�ǚ^�����Z��6Vw#�F̍����&#��p���
��������9re�19;"�������C �N�n/_���c��+Sf��QL�cQN�V�6WR��u����(����Y���L,j`��+�����z��G�2#��̫�PQl��va���d[6DM��֭W����m���)��tx`w��-wـq�3�ߪؐ}���>~9*�������@NJ�x���\��ڨ,�b��h#�Q&�E	*��!��ډw���gz����[1ކ�`F��!
�����YEU_��1���hn�98�w�G:�p����f�)�C�H-FW{�jɊZ������(����pXe���F9��"4K���S�l!9���TO!�^��OQ4-&��r�O�ݵ�ջ�!D��U7a"S���g�3U��A2ɷ3��j���nf��<<���T"`Vy!��Ur��:&��j\�<d�gZ���*_�ݬ"y�׻Y���~�\��f���9���^R�5Q��DYQ񐫺��FT�i}�*86�L�ˢ$]稕�v!���Q��ɇS��@�;6WA�W��Q,l�;a�5,���>���z,��&�GGpg�)��z8M�m��ɘ�@Q%�3�x�\AG��/FU6b]�x�F��G�A]�6��A!���ϾҗD`�kyoD�DA�l� H&�=b�n`YE#��y;���%������Ö�r�S̛v�MET#5�7���`ε�37lA�.�L>�=�=��Hl�=�n�������rl��A�u7��G�h9���5�pC,��,"5u�}hf�S3�s	��1\5Fq��R'�D�$�]"Kޮ�p�,,�$�NP�n���uN�@k��d��/��j�աD2@5T����:w�;V��S�k:8����R���!�L�'%��&e��ʀk.�l*H��z�L�"}�ջ��̔�����p6Z<��=��G�Ɛƃ��Hd�9`�{ �tc��݉o��A�lN���,�瘍�Uq�z�ն`�S�Mܷ���b6̵g�@3����\��v�M�ůwvM>�����w/��^��i���y�PG��]�ω
��L�z�m'ˣ���
��ɔMF�]��6svݽgt�����*Y�GI^B�B=�I�����.�W�mB5~jŤ������%����8�x�&Pƃ
����8�l����o��g9*�4S�܌�yi
�N�Ú*
�;1�Rt
���'���@�-�
$�E�+��P�%(c
�<Y��D�լ �G��r��F�g�̣"���`&74*h�!5H$�/%Z�&�l��4_on���`S�bjrL���X%@E�7k�	*�l�F�!?Eq�?�[
a������T�,E�!�5R`��F��LW%s�ݬ.1���wc�s���N׻��Sq�É�Q([�Yō���KZ~|m<��
�)GwK�G��ħ���� �M��Ƹ��Q]v��U�-_�Y1!p�L3rp2�i�ѿ��1x�A�XCAypL��g�1!�嘝y�iY>����*BνE�7�_��>�g��1�ǎ]���nE6p�@���phZ@�'��*l$Y���lb��X~G�?��2@P�������޼3`8���]���y2�]6��e.,,ZW�[��±��1��c�C�.��� ��3�hs��[n�<�T��kf�`#̙��D�A�����X���ɥa���x
�0��
	Ԉ	i<f~�(�Bᑩ\>ۨ��}��
���f��B�L�SP�qaT54���	������a��
��L�~׫�ܕ���6�۞Mv��/54W�5ki������Z���P��U;�L5gy�A�y�E	=W�BT$�����֠
c�V����kV���ؗ8W�b���3�l0sm����5g�]��q�]'�׉�\s
(cp�������M�sPQاFӳ1���T�0WN��
^�bz��)�1iJfX�g��_rc�`�j��&"'^����]�.δ-�6�`����L�ĵ39p���ӣ�������Kq�Z���f�.�H�}(�W�~O�<(^l�����G���79��\�B(�k�M��X��@RN�x��W�jYQ�a(�_�.#\�)^���I[�?��m�^�wIa=��n��&*�����?X�v���O�,TFx�ԙNg�S��1�q�%�0�cC�@J�%u0�E�!�Y��3%�f�J�Y횢ups�fqW��$�ՠ��i�X,�<_%���
�#���og�	 -�ء���n�ƜQ,p=a.[Ll�ޚ<T/wδ��"Q�ܟ���!�P�Q@	B�hb�$k`YvS9�`=�j�Bam�|Bﲊ�n��*��'�,�?��=�c�,�9�G<�Jcm�c��5z;�&;�p�j��+jڸ�J��fD�۵�
H0������M�
/��X�0��uٱyp�mt��q@����&Vg�ԍ��
�L��a�/w�q5^]�`�U�yuNZ�X�
w�8�����ztA;��RR��&V`�����	* �@�	}�W����o{B�i�C�UM[j����y��T�'�9����iNV�4��2��^��rfYh&�-O,cG��x�}�ټ2���޹�[��(;ep���ǽ{��q��7�'�b̈́�@
'ǰ�-Ӝ���@A'�SH��Ƥ)p�	��
�����w.3��<jm�0�`���%1,���r6�N�f����DV:JZa5�+�ҟ$�{�FF�R�jPH
�v9[
�4�#G<��L:����$������p��p�>K�?g&H5D��G��ō�d}���'c��v�[B�0$lC�����'��������g��d�ȵ�%�A�%5���xn*m���o����j�KjC�g��a%��6p��QԳy:�룑���Cf��x�!�Nb�r泬�q�,������n��������\<9�+�e���.�D�TB���1����'	c��p�b��\ᙠ�QI���)�mS:ha`�VAX6�]z�e��6x�wܱ���jm}CI��w��pd?=	����Pٞ����$!5���E9zT�6���`*�C5��5�ɋb��]-C�[�����2&���,�5\u~�o�rӁoVv.�	l�\��������ly���~��#o�Evϳ���h�ui�ñ�j�k��
	��"D��i�F�{7�7�̍�hrԀ_�S`N�5�P�����eP-$3�N� ���*쬈�J��|С]�����)*���d�3�n瓩p���K��m�(�L2Yn*3jg(Jէ�Z&[���8�tɡMY��
���u���� ���~���Z�e��
�AXL�́x3w[�U��wj'�f�4z��9ֽ�SB���)�] �V9���NZm
�913�%b��������9502#名L
��"~0�V>]�Əe��
�} ������ذ�]%��j�M�c�Q�8妮I��b����)�Qy���C�K�D�񝮸x0��-���Xs��U���3�=f�NG$���l����O��vx�������>����wS�|�Ż�S�cNx�k'/�[�	D�UQX��(�
��p
�u�!:��n�F��3DQ��1/3�����O�splnG��)���n"�961en�V�����__��v���n����p�e%�7Q>��T�SИ(N��e���D3�kL���V!l�fg;S�.���
�N�dgB�%�ρ!��Bi�|�	��X&�Ny��Z��<�D����\9���-A�y��4�f�L�›*�r9����t�!m1��<L45}���x m �/�D��`���E�g��
�?����5�	k�/3�ۥ�̯�5������nQ�]c��n��x���L8-�X����4̣M�k"k�[
hz�.59�����ţ�MK��V��D�
q�4v��Gbs.����M7��g�
�c�}<tt��]{�cPc&G��@�sq|
���8�D&|��8�fv���Aku��C)3��s�I'Q9���͹u��
�峨�۽�_�9�rͩ���@�ˀB*�ظ.�%n)�Ȱ-�'�	�@w�5L�!u~��f��p��ig��Y ڠy�ޏ1���Ċ���$�����`�|����~����!;E@�y�=/�ਥA6fh��z��N��O�
�Aoz����(�]�ٴ���Z���,�M
��u^����Q�����Zm��-b�\PP�מjR}e;iK
�T�p��o�T
�Zr�4�,IۦJEq�� '����s�2c@C�3v���`2�r��fyD�4�
,�����|����Ģ�'EF��je���*��ѻj�'��ER�6"���Y,�r%7�U�(����0^��e��s��f��QQ@A�O��N��b_]I�
5����fV�H�*!�i%1(h�C3A��rY�7`�8���l(���
~η��?z�����2�>��s����n�А��,
Kz6)��-7H�xx�8�M.w&p⚍{ɷ�����$1F�z-��&��
o|�
7��6`
%�2e��7g�}�X��cñ�H���dv�%���xJd�A�pdHL~�7*�$���pk���ɳ�+���-��z'�[8�x�؟�7v�޻�#�FA�A��.TM�8*�N���0D�
{��M��A�+H~�r�WʤI���v n�Þ�
�\!QW���,C����ylj~
[]]]`��ov���I�	m�|�l����M��T��*�NE�!EU��k�|��N#�1�85��9�d@PTý ����$�m�����Mյ$��@~ζk�s�Ȏ�ɭ3�uоz��e�wQ(Q>Y��S"8-`l�m����z��c7����@2��+,f�}ln7��Jؽ:�Lz�AwF�%��>}}���$�F�+0�c�	� ��)1��d�����ಘM@�ș��O;�Q���N���g��Em��K3e��S�@BZK�����1�ɭ,�&+#�����*�&�l՟�PJ���O����fS�rs8+�D~�@�6{6���$�~��ڐ�)c~]UIL=w��n���]L���7�C����{T%�'��,W|RA͆+����:Xm��TԱ��k/���Y��wՖ����o�C�R�
L���		�Nv�hy�6a�^�Q�m��`ѷ��G?�0�c`�c?��^Y?C�I�b/��oKs�pnxr�Z�E�dX��i�
q:�����n���lP�9uj�7�߀;blVu�+�+�(�#:��Pb�j�Φ�F������S�f�����l�h+5� 5F���W����D`{\���<:����i*�m��ãr0�d�
�n�YM��^a6;�.����DI>K�� y��੾��8�Y�:�Q\
3]�(E�fG@o!�+p1d�s1KӰ�3��YF�f����y��}vSsuuw��p�IڨX4�*����Aq���E�:g
 �1�ӭU�C&!vHț4Cӹ�G�����l�o(�l����J;gu�SR~�R�Z��X>�l��I�3Xz�*�%^
�K�tY"zRx#.�:N�P�;��q6g�&]>�.�����(8��9Lʎ����+�@iK��P�an~o/��`-���Vݜ�Tjc\7>�V�W�q�n>��q���}�QW��{��LI�er\T��x����z���т�q* BIBy*�oS�map��R�#ex1��H?C>�
k3��ʰ@/r0��B����ߵx�H�W��	�a^�,o����mΰCH�5@����W�(����97ʄ;�ݱ���٩����*��؞����{�f���7�/�^�ܨ�'R�2�����:�A�z�G��K��Cպip�J��h5�t~k� G�hk[p�����AI��g�;_kuY��F��ƔE�t�X��&��eCF���Fc�݌tOEo�>Pc���9T�=NϷ���v��]�@1��`�MƁ�q��N���?k��B35W6Mz��n�y�S��n6SʹI1���~~��r�);��J�߸#��ly/։W.4�\���
�_�U4)�HS`��C��$�Y����n�)�g	�nnViO`kq���tFn�gK�m|{��i����9�`ff���=?��$��$x#��	�X�MI��2�2sd1���DZ)�9�2��e'��/�8P����^B��>��k��9Jo�����_��BV)�ZY1zX4����ܯ2�X�Z4���E[%�/XSTL�6J�2�����IUod$��d���h`�ag�`W�X�5�H�H�~B�`��d����N˒�	�@
�Y^�Qx����M�5j;���zbbvB��X����#
^T�*�
��g?�<�(�ӫ�(�2���D�S�m����=�Ƃ5�L �qqz�I������+U�d
2�jh��t�q	��'�u�$��
��e5���5�|�z�U^h:�E��Ie��BoD~�8x�g0���h(��۸��gtMz���mBѽ\�reyX�`��\0ALui�X�&{S߷C�q�glMG^ϰ�d��+�o�Ԃ.FTG�KgGo���m����K)��Gr�E�������g���xp�J��l�&���P�f��ʑ����y�X*k��#g�bY%T�I�-6�/�6ٛ%H�ϞDRj�HEF�4*zb粴ӖksQ,��"�]`)�x���vF��|�+분l�z���̭��.H���1G����/�/�����.��*Z���j��pU���Yx�j�UE��9�ʣi��;��$%'v�$���͆v�kjH�s�L���ؿmK��dH�U]u��W�|��7-s�!�L�/E���3���a�EUܐ+����Had���\ld���AԘ��ď��JS��iP�x�Q@*�ffqqrf�I���+��;��E�m���Q�5)�	��w,,c���(پ�YR	�w�`CJxbvu%���>��}Fx�ӧ���������z<~f}}e5:�ՙ�Z|!kl;o��j��	���ޣ�g;k�.��ؒ�ҿ\.r�Ҹ�LRBTq�9T�=��u���Jw2xkt�
l��p���ꫛ�vc÷�]Hg+(a�%/nC��4�.���=Z�խ7�6V��&(f4��g�V����E'�����z��f�#2N.����f�UU�%�K�'�ݶ'͒�7�	�<qs7̼fE�A�����=NO����7�Y%�;�l�ʟ�Δ\%p�8/UL\��!1�2I���H�(ƒ~M2P�C1Y'���ȃ'3XR�s�u���N��:��GJkn͸,�I^�m[쪌��P�T�&vl�
�K�^�v�ϽW�"������\&� 2����UwfFƸ�zҿ9Q����{H8����jf�/��n����I�5��$H�����܂�$���P�Q�2_#��7�a�����;�HLa
�0(]=��AE�#E�GMw�p�2U��*�qb��Qn
N�Q[�{�l�Mf7Kd��?	L�{Qy5ØҚ��lfx���C��jx)�*3���MH�'5�E�����y�����u���3��Ht>�2_]_Y_XY�/��/�͏E����h��С!�с>�N
�jx8Nɒ���:����a�b�o�ndJ���
��„� M�� V��To���m�#�Fۓ�f�&<C�D�~��җ�4v=ԯ�a��(�ı�
��+�����Ic��zH��M�t�������d7¼8�$�ꏷ���5�.d����096�w"��ה�0QY��JJ�-���ܳIKq7�+��G����i�B���J�
��>�~Y���>m��Wr.Sp���&KV��(�B��,�F¨,yH«I�
����.��`J�4=#K]�sper���":c�6��rRˮ����W�Ǚ��j7HA�4m��/ɆM�&:�A�M3!0uزW�0D��H�&1i�
2���|��❷\�ɿ<��"3PL<&�Z0�Z<��ն��G�{�� �d0�>r�ݗ\t	��W��wߵ7�ܾ��֋�2q,h�g���b�b[�j#C%D���j
��ռ��U�fpzrz�1,�b�*��C�,*-~uǜ������(Gs�8[8K]p��c0Lę�3�G�N����m�p?���id�ִ���֕��Rہe)	�
]�$�lrkR�J����mO�ۼ�0O贂K_h�i�_���%�Z��wƢ�х��|kgW�����!t��Q�C�wR��8�N'Cc�po��jDJ�
w��1e-@B��l�8)�m��u.��&Cuo�����B��B�5.��O�I����9�	
-|��t[]Z�ޅkR��/x@�`3�"�j�W�7GK}��ڇ �a�q���?t��
��69q������!�{�I�f*�PJ�G�z��I̋ EoN��	k��w�KU���F,�oʆ��6.���NW���ε4�Y�Mq�fZ`�F���;:5�`�,ޡ��C���3r�h%��F���Г������QΟh��3�:�H�}?m^����ؐV�vMu�:��.�M�ؐ�V&p��y�}5t1���7[��v�(�3�0�?��\�U�B�(������s���o��{���.p���dk��N��$��ʄg�.���l#�
���õ&@$���7��R�[~��)?�!�by����	�+��Y���p3�rU����h_���g�b$G�M`�/���9��E,h�-y�B�BcQE,a
� ���+��u�s�EEaώ:OOŎ�a��j���tuu�
W8�B�|i�4H�[J�Aj���g���QX~wG��
s$��4���Ҫ��k��n�Ʒ�$�&Q^#P��jOj+Y��H12�DZ�n)b�H�8
����l>���G���3���+�k�l����,.�K�Z�����(���A���Yc��2��/�~�L��4H�V�8���N�n+�-�q%Q���P'ku���P}�xC}��JRF���ͮ��>��b�&�Yz��"0J��f2	��ѧ�ϡ�8��W���`7�߈����y*�v�t ��|������ÿ�R�P���&�1�����h�xr�˪r$���M���*H�U����Gm�Ӫ�ѻk�`�I�MmVF?7���-[n����6��h���$kg�Q{I͡����;�]�[k}��WSs��5�ַr���5m֎�������?[��"�E��Zw�kZ����Җ���D��m����:��w�<�[c��������Of��h\��/
/�n��闩��t�U��_��D�tp�K⡾�5{98n�]������I��?�L%M�k�ߚ��*���v$f��Z�4�s�u2X��Zrr��r��f2s����!K���#?P�w�������]C�7d�7Z�M�h��T�gC�(�^��-B��'�n��58l��3�J���")4�^�����N����ė��	
�����v�g|�d8c���X��\x0䨨@k��a�TB$e�Kx7���	�ѕ�;I�7�o�K�-,�miy�y����v&j�`��7*Y.�^)dQ�3�,�lvdϻ��:�g�;c�hdl>z����z��gW�&f�̎���ắ�Gڸ�y�����t���	���й4G���cYJ4��M�����tF׃
�6A$[���F���l�5C7�644�u^�a��fG����|����i8 .��"b.Β8#~���mCb���Ug��MC���p����`��_���;���׻d���KZ�5��Ź�3��i�����9Hř�އ��=S��PU�i�T*3�j��3���R�4/��N0�vgV6#cvm/Ά銌�GY7�X4��z5Kc�f�?���67-}�9��X/KK+��HK5��,_s���#�M����9L�sݝyٮ�������O祝�������GyIŭo��2'��V�b|<�N�EoZ;@^	���{~T��g���?Jb�U[��Uۧ<��%��2�q�ɫ23O����-9���LX��a�n�^.�,}gT;0~p����1�͹#k�m���?���XӘ��<Ѩ���Ղ/�j툽U���֑�[T)�C"#Q�A��V����4Q���b����`��L�1��揓z���,��OI�#s��P81#7+T��mxp:<=8�i�t��x�;þ_(���̋]��6-M����ǧ��m�<꟤A������i:�$�1�:��e"oݛ-U--gR-���� �\Ve0�I?g㒅13�W-L̾;�.��t��S{f'ΐ�-���leΦZa|9���=��SǺZ;c�Z¿:5F8��ݒw��}��\��� �>��I����ĵ01v�Q��\|���5�n$���������@��Q��28t���9�W�%<�i��L���B�Dݍ�	�TDM�G	�*��TU�27>��ٛ�	�����
�

�!�#	�(g7��~��/?\rb����M��l�=c�6<c:�����z7ئ�֪�f����p㺘�x ����U|�0�;#��(p�}�,�RT������A����H�s�Y�+��+3���9�g�?��Ws�@��,��s���?�yO�I�L�
�<�'�_\If���ܢ�U�f�U2��ؗ����F���?%p#�/7O]33�i�JG�j�{�@�ӕ�{�����k}=���Lҋ�~�L��|����Jˁk:Uy�Nq��_�3��/f��>_����v�`�sqJ.�!�vO�����̪�dzWm Y��݃E�T	���\��\>F�y�#�R勳��qUC��p�E5ЃM*�ύ&��T:8��+�o�i����s�;J�����9o�v���	;
�P�@�@OWc�@�����k`��{�������o��dĀ'\�xOx�<��4��t`�"�¥�ɺ�-�B�n�5DP�C�ֈ�'gXR���Ļ��XN�Ō�:���<�B�|D�<��Z�I��,t10v����eJ�x�X���^�x�N�����jR���O.�{t����4d�4�/�T�iļF7�$��HIQ�����|���n��}ս}߶W�D���{��r�ń��ޠwح�Ȥ9��t��ȸ]�������LT�o#:]���s�
.8 R��f�O����h&e�̉�o
�u�n5k���0w�������Wb+��i>iF�t��YctkU!}�����pY6��y�L���w��n�1I[��*�mһn��S����V�,�'��3T^i���J�L�}�;�t��u���ǟϒ�Tic��{1��؏�K6��5����C��j3Dle�E�_�^���^;��E2S�[7˜;��:�Z���n�}+܍hj%�����_��m0�嶟�rul��<P���έ���nn>�Ʋ��
�d�Rq�z�]��X���V>/��&��ڮ�_#�xZ�`o�j�EEp,��&]:H�^����p�}|��PK��/k��⦌�
�����v����P8��\!����a����Q��d�?�P]W7���B����lm���:�n��������n�z�j����DWΩm�f�P�7ݍm����}�&���:]�n��s���t.TWX�a���9J��*����ݸDU�-87U��-#��rjX��jTCBm0�l1>M�S�	�&|����DM��p~�Ä��Ţ�!ƨ�#g.`#�S�N��~��MB,���mCR�O��y��
�s�a��0�<~?N�Nɓۍ�iH���=qb2��+�����~�o�}�z���F�[}

�F�P�A'_6�-�g\�S��Ł٫k�NB�~��kL
L�*m�u�z�̢��.((!����R�I
6j>�U��x7�f�C�����CQH4��%fM�8hz�WM�@P�8��&��0�J51�{G8X�ʃ?����7W�%�|�	nr�{��س[Խ��.�P�K��<�'VR���y�S���?�$��Z9'"/��P���k�y���.Cf>���i�L����sH����d`x80�OH��n)�ygp�;d
�-}�lk��L2S��@�V����H�a	��̓t"ݘ���d�K5�TS��C��m�r��G�_f�d}�ӭ�Ma�:����9�\�fJKw�ƭ�ݡ��r3V+��鶯�u���ګj�f�:�~՞�����JY~�@RK��h]m������v¡b�C
R�6��إ�碴*�^�Hb��=P����zZG[[��Z���<�6:��k�XWgg�dz������vr��7�F�}C�\ggכ�Ǧ�F�n����������w�yH�W�_�ܰ�����x�P��ѺU-���l��i�=}z�I�4�%�6��$�
�����ϯ/�45{f=�]%�|Д9��4�VY/,'�Ue�2U((p� �XmC������Y��+޳S�ڬ�R���T���|�&��l�3��>4��͈	;��2(� ]���iV=Y/�q�O�b�A���y��nOs�+����667��M��
z=~I��;�^o<�M}S�����n"����@�,�[�T�P��T�<\"��Rf���ۃ�!T�M�64Ba�u��n-i~��Wn����ān��������U���_�����?��
��{���j�"A��(�"��=�U�s��4�w�<��z}6��,Q��Mz:��Z1�[&!���������ķ��ٵ�h^:�l��i�
�pֲ�b)e�:�0pn�nځI~_�w�s�1�e�
J�j��O��w����;3r�,�<��8#S?/�?���NF�iɳ��|H5hd-?ӿ�h�4v��*����c�[sW/��0w竄w;V�!���ږ������}PFC�ph�2�?RY[���|�IFTtw�CC?}������3:�ͱc`αQ�2+z�ss�Uu=--��k�����oz��=�?�|S��-�oԝl�_�c��D�g�t7����nιE����~n�~�pG
4��~�����kH��Л���`��O�9�0����J���������լ����J;z�x}ڮV���.|��>�n<�z�^��+�YI���l8���
/S�Nx}�D4;�l�YLp6�q��N�8M�\!IL���f��V���lǞN�)�=Ӆb#5]\)�
�D��҅D��H�RKY\�;�~�?��-�~����5�d$>9��j��f��a��	h�|ڣ�f��Û�	X���w���,-��7�7ȞXl\t`�$f�b鋃�������L��[��:�Y�zpc�`��`��.����Pӊ��J0kl��<pc���Z%Yi�j�3��N�Ť�ͶIh+�`��#��Y��<���C�iT��&���6���11't�F-��]��*�n��!������T�Xz�7����+�n.��vbH>gk�c6�L�0�bӨ�\ܷh"4��R�&d���]V!RE�1��Yk�?��o�y�(���#4����_E7_���}7��7:U<q酗��N���7��4@�p�ǿ��k����v^�����+���w��^~i��<؃฼�܇��%�y�sϿ�;x�9�O�#�������"��_���Lj|p��7�٬$S:w#��
��ϋ�+����L�&��i����`��~��}hz��5��‹��|�L���)]l�����ҳ�˿�74���߆�9�3��L�[o��n����{��:�h>��zj�ߜj�r�'�+E�;'>�!�Y�<��Zu����D��:23*�����\�3�D6��&B�j%��Q_���CQw�C��(6ʍZ9X)�J��]nWÍf�\nv����H8�(��T��!���Vb��i�J%:<Y"{*f��p9�-�`�X`)5��$���t��Y
;K�V��Mtz�+�b�8]h�4�Tz=�>]Lu���/7`��Gi�C��pE��_�]Z�h�K��z�Y���/�$�"�������'02뛛�m�m���]�BEЂ��)[��9����nt2f9�O[ͱx�fPS��$L"�����FxA��,��T��(D�`�9q6�w)n��c�v����B��b2�Q���R��J%�@�U��8z�L C�l#Xѧ0�i�3pF���d��Nv+T���C�;�<��b7��
$9��5�z�d������,->9��0����8-3�Dc���69����(�Y�:W�^Cu���ڷ|�7?sS�7�A��[ogo�S�n��kW~�X25�=�o�,Z�?vJ�E�l��[0~���{FG͞v���o7�s��rL�{�J��V�56��_n8��]�V����B���r�ZW��i�N�9��onQ :�6۶}���ΒS�R��"���ϨH7��@�5q�~�I���P��``��O��+)H�:���$��yK��/H%�x��آ��?9ua��Ô��n�gfj�o��[�{s7�8�������Vk����S[���Fv�3�la�fo9�{��-��Y����fs�\��6J�*h�y��ݲ��t`i�ZɧUKM�e�s{��/I+�/Hj�BȯˍR��dE��pse�n���\��(̤��D�P+����b"|d��D")�ť��t�Nt�ȑxgzk��(�
��a��D���p+�]Z"�)N�OX<����A����;�7o~����[[?z���d���%a��@³�(�闒6=|�d�)��%k�������T��XbI�㻻�ޮxO8�
���͸���n�-�Y��F�7Xƪb����z*ղ!Xj�r*�/f��<�F���Q8bӱ�ڊ���=]��Ob���kGi�P��-Թ��X���fh�(�k��Y�8Q
-Ĩ�M�f��a�S@*���L%��T�jj���A"�Ԓ�d;6�x'*�n,Fk�`N2nR~*Jk���(ೣG7ʈ�qK���-�^�տ�w��S_�בH�o������e�($�o���ƣS͑�������/
e�x��D)PZ=��C��F�7s�s^���
��3-��C��N�43�X����F�N?p~���7��v��;�첛le�_�E=���M'o�lj�{��>����)�Gl�HH����W�||�b���r&ԅ��?�I~}��$T��K�qfR��3���@�ћo�<X^<�y$�g�#��;���u�Q������9�}?"���b6:�II�ps����T�0�Z1�)9���5w��&�Rԝ-A����{*�q�ʡP)��"�+�Jew9t�5G �+{|]_9���\�����\5�h�T_�1���R<X*��r5���ʍN6�\ZjN/'�nf�D�Ʈ��i�k:����/���&�Ty���6��!�J���
�V�D$��uR�����M�nj9�K�:�����'_��ܾ�����Γ�+;[�;">��O!gW�� {�Hxrwis?���	!�=�!Э6��	�7�'~9��Y�u�M��
=��%�Y^.8�œB5ۜ.�<�����-���R\_�F6XP�6,0��=M����5o��V��2ݾI;��%�Ѓ�<�Н����U,Z���&-$8.!
ɐ�´t�X��;ŧQ��xO�ZIR�`,��*X�T��#f5y�^���WU�۩mr�

�x��&���K�TmX �U|H?�+F���	#+���o{6�������9"������7�b_���饗�j����`�.��9zg��x��T��~Y?(Y�s��<��Ca&4�DV����s�?�(��s��“�.�LѸ�/�#��ԅS/�k�8%|g�
�IY`K6���%�:�������sȧ��v^q�l���{1�P<N��ߕa{L#�H't��� ��!iw��Ý0�����>5b|�\$��E}�|4�XrGJ��gҤ�/��
�
��y�
��;���L�;P.!��03e�\�e�~*�nF��}s$=�{��2-S
��4���5$s�N*1�MMO�6��U㹍��N3�l��tg)�N��;�Dge42-��4�8Y�*!o1�1�k�k��D��5X��Ӊ(]u)�q��^_o��[ww��?y���`z���{��Gк�g�,R�+�'�Jei᠉fj�T���ٓ]���,�b���T������D�m݅�^X��vZ��'����N�����'����3�(B��j�Тc��t�G�yo�$��m�U5��e�[�`��ƌ'��I̵(�uu���=��=~��y0Y�iuwF��V�0<��ER����V�x���8�!� ���V�މz�J��^��U�ٛt����D@*���Ə8�mW��|�f�7�2ё�l8%#y�c0�M���,A�o�O��31����/�
��C�P`᫶b�(�9t�;�(?��E_���Z������=����8��Hs{�%���v��i}��������NtsR�^�o�.x#������h	��"r ��:^з+k���`�+@sJ���
"l��%8%x#{Ԣ���y�W���e�0��\�^�gݙ��D�Y�[���R$��|3A#\.独M�F"��"�*�#�Lq4�[�v�
�
�-�DԘ!��㣍���;B��H�K�r�*I`�e<>���h��)`2��!�C#��C�
4�&~g��fb�)4p6U\IM�yK��ռ����d�++띕F����R����R�f� OO�Z0�,�k�D'5ݜ��jM ����R��6�%��+�C����-b�Tj]���OL�V��`�,��ׇ�m{�Ĵ����#JT#e���)��Z!�Z���ׯ_�|]�����i�2g����,�GKس�n��b�\lT��H�]�LN:iZ-{�ۆ�ml/�l�m�6�u� ��Z�H��/�c��ŋ��ϖ�,-6���H0�h�L,S5�h�Wұ��fܫ���^�jWcɪ��	j]����$?��&٭�ݛz�b��T�k��1o�Z�ƽ�r�v�Za��3�=�JZ�P4SE�b��N|�z�yE����g'��Z�����
����#���u484g�\����%�3�9�W�3�z1'?��4�U�����s�yu��Ϳ����IIx�W�?"
���%�N�GܺI����7Z�K���U�f�x��4\��g@4o���o�ҳ��ߗ�ȜäT2,7���ht1�Ja�]��h�11%�	�Y%_'��AS%�TR�D��(0�K�W��)T ���_�b%��P ����,QO	��Z
'���gr�(��#��V�lB��:4f5ʻ�����F�٤����6ח�wW�G.Et�J$6V����8t�L�FQs��7A~U�D?�U��T�e���D�nc����W��(�Nv[�n�h�(2�Pf_yv������e
4Ըקŗ�X���O"��^���7���:&��auY�0'y��t�Zqeq�����`{�"���ƗOx����D����M��6��吡e���6�{���ܮl�b��V˦�Z-�V�fM�UH�\�32d���-�-���+�Rt��_̨NQNA�/m��Z�Q�2ڒc��f��D+��! G�ɟ�
�Vf+�|�T��������$†�9^���,J��̀φ�����2
!�k�Xt�̴�o~7\�4�X�_
(��9�C��K�G`���7r��Y���G?�?����f7��G��b�o�'������wZ-���S���ɴ�T�LR����T��7A#Y����oe���y�œ��/���y�
6��t~~1�4��ld*-�£�nw4�!��v#�YR~-u1P@+y� �{ʝ�y�&<�4J�yhq�(1��O��O`|��5� Z��R�)X+�܋բ����db\˂E�V#��P��;ٕ,�R
D�f�,v�e:��ӵR�H�n�"�`��4��x��/�ЀV�C��l�J�t"���h�j<l�LZ�V�o��lI]�WB^�Ûz��^��+,4;�<{�^?��m�z�[ X���p��cȢ��]���u�������U�};��֍ep��o���S�%i,��e���-Zqj+��R���O�6�B
�@5�mWh,��V�usvZv���i�ʴ��F�=�$Sr�)7ē ��V�R{T�ȥ�1z��U��fOj���50T�hޱ8���4�g1J��A��򪪔���ӌ�Ϫ��9��Ke�fB��dF:OMC��_�����*��o}V�n�F~|ʔ�t����F�~X��j���{�!D8:�����<�+�����T����,j?��"K’SM}Ϗ����yDN���?恻�S��b�7F�E�k�n�K�/���⮨�% b*��;xC~���9	��a�|u����p>��E�#"U�D�
��}�|>]˸��T�w:%��%�>�nx�;����(�AHB�}�Z���q��J ��B08(,qgj�������ru8!�.�=� ��S����ìHdj�v	l��.$d��S�:S)�W�J�f��X!�il�+��A� ,f��pL�����c�;�-����ꇆ��V���lS�u��T�0
��kh&��{)n�i�$6)p�Z �m��[�x��ےLK�8��D�]><pC޴����`�q����klc�5'�u`�n��Kw^��5�I�.��zBU�ݹ�Db�@$����&i���m�7���������4�7��xBX,ꤙ^=,�E3>Y�Zt2�Tb�j���-V��i4�4o���|J1��ب6{�j7g~G2���@�d�=���f�x�k1�:
X豘��mj�3t���6F�W��%�[(�3Sf�*��+�J��<a;�<+���
?�4���w�_�я���7/����FY�Oq9Zo!
�#X�ЯL�Y_�u�̀�NJ���%4�?A�(�ʏ�/�n�+��B��@ǀ�s��I F��(o>�Z}�$[�C\���}�Af�ȏpH*�\�#]�O��h$��;MhC
��P%t��l�q�kQ_�ئшv���&���[ ��%�E�F�|=!M���M���.*�����3����h��	[�(���Z4��p8���r���L��211!e"=餩��-,G�-�0���4��K�u,�ai4�%�7)Z��N?:JY͆�1����:�ŴqG�ؚFJ��7-�c��,��ִ�vk:A��dz���2�O��^G��m�~��D�5� ��/|A��v%��1�ָ�2v�#��kXz3!@O6�[��`�U��fQ�'L4d����j�@����X-ܮ�Ύ�E�B���e«�1⁣ˠ�z;��	j�\�%C]O-R$�`��B,����1�ez�d��J
2.�ֽ�{�����>�v2<����c�P�x����!=!$æ�W����Op�ur����d�,�����g0�������)��w��6,�d��2��Pq�1���:*�Kts��qd�"�ޖ}#t���?�6�3,�B�g�%��Mw!��p#���1����y8aA�sl�����4�T�#H~F,��a��qy/b�s<��QX|&}��n�a���S4��Y���)>b��\�L���y�$�q�P�(�=��%h��Ą<6!61@��4m��eJ�!
�pk�0*�'Dq��k���<��R*lb(�˕+eaaz��Z��u��…%N"� �/W�X�j�uz�!�K�$U^�1e��S�j��'
j�9�4]l�7��y�g��M���#(����R3р��.;�Tj�
�T�S���[;`>5��b!���,����ޜ��������ZWG��^�+����u�(���o"vx�U�]��z\a	=��t?]����'F�l����y:����i/L��ժĒ&'�8m.���� gR	i6�-�V.YR���m���(�*5"h/�=n����7��Nh���"�r+v�Rv���$�wo�n�b�A]�=L��҃B�EV4�Ax�\��>^��:�Q1�`�c&�����gr����8$�D�N�<6�����ag������l�CѱȆ�i8,���!L0�˯fɀ �@�
AK.sJ�O7�����2Rp��/2�E�I�jN1n��I�8"���s� ��%)(�cR(��o�~4�t
ĝ3<����K������EO@��$�hE�_-AdMN�Qk#kn"��G4��o+�o�*��P�L@���*�F���I�ǧ�Yܜط�@�M�C�A�堌�bW��K ���@�M��-V|��P&%X�W�Z���͌�W<��a����� ����.�Me�G��+Y�o�����JdL��S�@%7�R�H���
0j�h��^@�,G�b
65���z�#T�����w��Y�ܬ��~8Nb�%�^a�7��@o�ݍ��R"�_�p1�*�R�cL���� Zr]�
��w���
�,6�����ja�I��^���8ѧQ��Њ�(1�x�w���؀J�S�y,�Tn�atRR"!
�
*
J�{p�i���^7�䒌WpR���J��FH�Ɔ)��"[J�A3���4-�޵���Cc6����v���!4��>�N��^�2�P�hϟ8�YU�y���g���翩L�����/��k�݀5�tĴp=���a�X�͡5:o���1K�r�!n�d�H��[�6Hx"Vx���
Fد�Tz�
V��[�DF��+Kl�e�>	�X�q2 ��GpCl��5�0s��)>K�o��h�DjUH�_PAw:�2p#x�?��-�ż��ϯ�ڗ� ��-A���[���L�4�NH���<ڤI!�9t	A��D�2�Q'��1Mu���*(�WK%�.P+��E�&�E�w�|��C����l"YQ�U�ͮ��l�z%�(o�j�X���]��kp>4�'z_�( �#p�(%�J���ۍN-EK��B0إBŃt07����Ҕ��d%���օv�dN�|+�>��#�)�L��w� �x��ᓻO�9��/����عv��
��r�'K��֓/>�C!1J-�5����|)p#����فS��/���Z!m�IH��SsT�Q���5��K_�׮�1��Ii&������L(5t��E&��AAP�	FZ�N`$1��l��W�Ad�-�I�Ri?vM"�ഈ#��v��&�H:/4<�Q�!ƿ�xŴv�N�;���c�6v�zw��r�d��	~���������3�@ͱ��;�p=Z�/^��ˇhr�7A�N__<{����msH��rF�!�����K�r!���)��k�%@"2�?qi��y<�}>ܵ���|�20�wt�������\ �a��k��`v�@�s�2>��u3�@)��	����ʍ�SRO����� �	1��\ʔC�ry���v�ԑ`lH��)�	wd���äE�,p�'ԎBu���"M`
Op�A���0�O�d����Z�FbW^��4�q�oQ�%�nm�k�XB�GM��Ģ�]-C����L�™��g�$���ధ��i��Q9]K$�ps{s)E�����
6†�
��뉥�z9Eu��8|h�M[�'����$k�v�07�t>g��4�2��2��(�cW���<�}��|šo�FG��"�ȯ��Ζwz{cYw���	 ����nֿ��pc�h���t-�6���
��o�R�P�kgl
Uf�i���'����RS�-�ί���+ph>��C�Ɠ�t�,c-�ɪ�
�f9��h�Z�l�LB��ț~;y0�`N]6p�`T0�r��0�3�UU��9����I�łq�ٯ���dPg�����[�h-�@6v�ʭ1פ;����yF�U��6:����ֱ���'T�h�R,9"� �₞�W$	��3�Q��d�
�'�Q���O��t�w
� �<J��D�eܬ\0ݥҝ��`�</���H�>̎>^t�T����̄У"��mt�±u�+q��黑<O����ʺ�X�%�\��y�H��N�H^42E�7ɶ��*�?+�:E���ʚ�J=��49 ���@q���"��0�<��DʋdxK���{H����b$t`�XN���J�i@���@��q�A_)�SɢEMV*Z�T�Iq�����5�L��H�¸h�����Z�X^*�t)���H(����sm-����põb�qόĐҺ�����d{�*^�1D��X��j9�H?�ִI�����j���mQ]Zހ��5 ��bTsk���D��jA{��1}�q�Z��Ov��t$�c����wW��f�^�N��½�Dn�6p™�ƂL�N���ת�1���؉��fI���|��U�Z�Wk��Z2�@R���ڲW�k������n-�x*���x�x,�
(�6ӝ1��%)��>i�cd�Ԩ��Q���
’�O,
��6��6f=p��f0f.�(~Y�+�8
~��yr�d�x�c~7�BG��ws�%R�T��u,�Bo�쨔�:V�>�b��?2~��#v��Fu4*�0�\�`_, �d���?�2���2�M���$D���F0GJ߬YI�$�n����F���L2�m}c��,r)=����dM�o��BL�x���7�뽆����L�ݾ{lL�[��94��o//#��˥D:;�v+�E���H��$_��L:�s����G�t`y����T�J����P(���0q�@�L*%o� �#�������b�]��t�0�w"W*4k��ob!Yp���
*R�U�`�*���V�MT�x�]��RS��Dc�z��7͚\�Ԑ
(���
�c��7m�R;V�-�!,2�Q��b9䏚�I��[2����
�b�$���O�	ykC.a�
�4���VH0G'&�ֺUi��V�q�o�Ȩ�kkk��:��9�p��N/C�4���:�़�Zc������ؤ�do�!*���$L*�Wb|椹e'�U�mD?xX�Q��\�hq�-"?��`w�S��=B�=h��I�^�ގY&��_I�`���1bSBl�M6j�dXw�8}MUϧ�������0y�S1��3N'�u�ɉ:�<
��W���]w��t9�oA�lއ�g�:��n�����z�)�ۅ�nZݼ�G*��a�[��c�y*��<C	��pG?�T��f�\@'��{A��oH?0� ���a	!� �p��`����y���/]���
)X���'Ө��4[�t�U�7��`B'WP�O���~ts�N �7f�Qw���wh
ɂ���z@)y��w:�!�荓A��B3�D �&���>i�$��O�th�_�,Bʢ��p���eht���Id�+Y�x���+@�V��B)��Uw���ST��O�
T�hB�$6@Q���ڣ8�����A��d�N{��B�6MmI\��P��F���x[^|{�1�,=�V��Y��\#��e6A�|�gP��|b3�I���
fo0f���|��)R�J�XZ�7v[K��kv��0�>����|ywadt-DA���H�(��PBy�
+�� ��s��bbj��^h��pp���l�f�i��h�x뛛�)�+'E�:�Q�Ϊ��3R�G�$}���vi-pb��#�a�S���&�wk-w{2`�#!��$�\���T���\�G�i*�)Ţ�}I��K-2h�81��čFƮ^|e�,�_`� ��~�T��wQ��}���`3~�-�kL�o�L=s\��ws��'W����8Q��J�~���^����M���8덤�{o�屳�xn?�YH�o�y��|{/o���b�-a;���2�z���מ>���k���N��y�~x酗���r���9��h^�fҌT��:v���f�ï�d�����|k�j4����E{����z04�2<~��%�49��gϿ��fo����O^O��D���(M"�"\�\v.;Ν<ᓿ������k��C�8_�ۘ�����"_����R8�ӷ9n#��O<�Օ�n|��C
x':�Cz�H�6

��
-�q҃�/C_p&�y2�LlZ�D�9�d v��%�|�k�-���"�����+���{���FA������'KI�:8�廚]���о*ȣ�1���W��W��D���v�-
Ut2΃4��j�(�mĜ�M��|�[E�;��?���r���5�Bfp��$M�q��´I'���wp"���B��5+Ds�y�h�ާnY��u��%��
�PH��a�]]����"��-e����7�Ӷ�8���e�"���ʹ��&��/mΨ'��-C����у�3��
C\���c�H8mN�|��E���A�b��qd6�� S`u�<��|.�D�m��{��axa��A#��]����_��W�TZN��1�p㇨��܏6
��Jlÿ-�� <��o]$x��W�8�c3L%~�*�-�jQ̮�ݛħm��2I���p���sG�ԑ&��cm.�:ǘ|�7b]c��]�p��ӠM;��t���<�c�������mA����f�`c���������T���/�3���;%ŧ7�ڱ���ONO�N�;&��e�����lc^��}����༢�m��`o
N���ۿ���~���H�;�9>��Y�-��K@Ȯ�Tk��)r���Z��'�y����
��T�u�'�o����o\���i�}��z��/Px��=�Xm�a`qdg������[�奾5��g�@BZ{�N�—�=����(ISq��"S��l���=�
ɂ#��e�9t3DJ��{� �p@F�K4�8�x�r)�j&��?
�q(1L�3dl$x���Ȟ�}5͍�j�]�O�K��J��<�a�G���Q��G)��$�D��ijL/�|��J��#�m%P\��"Rύ�B#Y��Z�n(�9�%gR�t�Ȝ&�<�9i��p�Ĕa�om d��L�z�������ma"�X'��g+��Hɜ6{)��.щ���R,�y�q�Iޘ�'���Moz��_8�����s��Λ,��Wk��ԡL!�浹�<m��%dU�^sǭLv��쥶y�������V7���*��U����ƀ;�u��`�A�47zդdA�b��<�ӢpK�e1*��S�;�k�&�To�J��`�Ď�F�G.F��4�XpR��H��h����eč��jFנ:f�
���1Փ�&�pf.hn��L*����D�8}�h�?.<�������o<~	�y���o�'���tb���&�1�wvAϯp���t������p����-_��Cg�:�����7^�u>�$�����q�������
TM��X�݉�ߒB�����ݽ���;������l������̹�oPR��I2�2l��ޙO�]6l?s���o�{��_~��<��}Ș��k2�|�3r����/<�?�<4t���ȗ�wy��xd����!n��#���[���-��w�����\�7v
�G��Tm{K+˻��>jdvl��j�P��[�ȅ��LP�u�Ht�Jnѽ��v�&�����+�0��'ԍE�~|�>*#l����G�i��IB�Ր\��n�YU��B�ȁ+�b��h�B��;lJ��c�K���;��7+��]eS�Z誊����`&�͘&5��6R���W�8o��2�mNL/e���Q�uk���D� �T��#VRŘ\��4B�N��eH���bm�'��t/5�A1	%uo>G"�$1�k�7۱6���\rd���&5q�z=��5�Ȝ�B8ITz��/�ViW1��$�	����,ƐnAƒ�h*�!.��0�|Qu���tY\*�'%XS��Lݛ�W
A����dY�Q:�y#�3XZ� �*#"tc-����d��$f�J����y8�$��\.���E��(���x)��t��(�_�8L�c0;�{�E76��?���9J�e`�l�[�P����|�E��2^cПy�	����;��]<U��~�oN�p���uR����羰��w<��X����<Pu�<Ƀ��?���k�)e.������7�=w�����]V�����7bI��z#�����;�N������8ua?�{��g�_�v��7�K[�h�߾w�i1'�_^�|bJ��Չ��Ѓ�?��v���׆�v-r���ͧ���wF��6�c���?��,�Y�.�L�|���sy��a㋽���N��/�e�����݇OB�s=#��;w(*����@ʤ����(����^^��bC�yJ�����h�+1�Z�dHzXڎ)8��
�K-<U8,
�,�m��'����L�!�����V�5G��CdL/	l��
���AX�L�(	C8D�1o�f j�ŧR	���(�OS8^^�q���N�:~lN���[��%�Q�4�	)̄�+�x��p�U!N�f�kuR������l�Ve��E)Yc�J+��7��"o�	��4,�� �b�.�r�Dx�Z;H>��q�D{P��n���28��T���i-�4`���Y_I�hA�A���|,û��N'�X��
�z�dwJ(�1�k��R�8Ը�3î�1��U!��Yߕ��:_Q�A��{��f�z��7�g����d�284�v���k���"�iG."xc ��W�A�el�j����b6�rh1B�>#��Ы(�qp�tǠȺš��2�LY��~7���b].��2B�b5��[#T�s{���޿}��)/;��_���^����������M��z���W�|v���'~�ѕQ����ǽl��+A�����{��:��7�W��`���]�/����R�{}n��臙����~���o?w���$|�Or~t4��I�k�Z���	�A�NN���.�W�x�[�}:4�����y%2q�xn��g#���p���ާ�H�����Q�����Y���J;����_<��d�ր�<�k�k�
�4�����������d@fY��� ���.�Z���aCB��譡�.1
�� �=��U=3���h��"���6l5���U)\ID��U���V����C\wCC�4��j�kTc[�&s��)�V91�Y`���Yktr� Ӯz침��l�� ������Ta�&!�T�I�����ٮQ��ؓm,D9�G:^�5;�$��3�nLþp�	QM#���# ���AR6�'��ye�ln�_�[��v��Ⳉ#��=~LcFc0h`
�2.�2`��}&[���sZ��L*%f��F=L��@RqL2��C6�0��U򮪉LK�Խ|��촼[���&��'��(ȒyO��^��hV���L�>�C f�vt"^�����DA��ћY\)��ǜr�Z����i-�9�GQ;X\B��%��*��gx���w���R�b�n�r��_�Zp�ʲ��_�$�Kt�����	���7�O}�/��P�n�|�����{~�o_~�$p�o'_�5�C��G����w_gp�kp��{�����!��7OG��WO][�m�=�3X]���ѡ����/ ���=1��������h��{�2�-�e� I�-#C7z�1��xꣽqz�k�ѹ��щH~jqi�@ퟹ��5�N��ƞ)��Y؏�;��X��Jt�p�g��K�P��srzཀ�X{�	��B��D�ο��I)N!� ^Q��*)��_�4 jL�D�hR�Fk%qM���D�Ϭ����j�Md}�z$fI���L�M�2]X�H��=¤��`�c�p N�GN�"�p���p���F\�j�$�Ȇ��N���5K-
�o���������'Z��7&	��a
�sp���vP�d-�����6	�����3�R+0q�>:i36Wg�7��f$���x�^(�B�'-k�bA�@��k���L�.f����1R�v.�ɀ��32�c��b��!�"4�#�:��ȼ�²�"p�;���>�Zń]
|W0fk���$��@��#�2�\<mv�mY�@�M�(fZ�x���*i��8yf�d�
��_T�|$TN���b��Q39�&ܿ�8�-����9��)��xmJ�އ��Ohz�&<�y����羃����3H���e�{�ZR��-$Sp9�>��٤�}r��'���DK<B_ �9}�%��쩍3�w1�Z�o�J2��̛;� J�!,�>99gĖ���;)���<��ٝw���06L�\����C�s0E$s�[qva�/�G#���*YᩝߘOM-�>�������ݱQ�g��.FzW&0oe-�������{��3�\Ꝺ��^gw�����֧��~�D��ᦳ�ѓ)M$R\C������o���e������q��jB<�!��͈��X,u�����S,,��~PE,Cs`��
Ҁ�*Ȥ�j&S�I-�ފ���r%�V�EBA�VӤ�����*�	�j�J�ƒeo�V��.��08bm+bD��\�E���F?�x@1��m�Ɖ?8�c��rl>���'>�Y��R�b�F5���I�ű�CP�4��� ]r��JA�4���$=�֬�w:i���0s�_y�"��g��d��v,n���^u67c�4c�+u/a����i,&�#Qk9��^
��D�D���E��!���8���)z�cS��3���E $��p��Yl�›*q̇M`.��[�tLfc�d"���̓�M{-f&R�@`.�F���x��GK&&3`IJ���mO��f�iv�^�����
�C�C�o{��>��Ob8j�a{7Ǻ��&��2/x��e���w~��7��s�{�΍��ٗ|3[��щ��^x���y�����-	h�~'���|���B�t��_���t�W�v��<7��O���$�zw������]�]y�9��>l��D�y�'��ԅ7��m����w~��K3�M굿�����_� �r���M�nܙs0��KF��>�<r��e5�޳�O�W��wFG�n6g'"�?���=��s�+�_��@y�6�)�L.���}��M�Y�XE7��D7!�rk��Uwi��=�)��W4�Eh�ܦ�Εh-#Ao ��8�/¿`���*��U��C�T��M;,�O�X"L�k��>���
�-J�*x�Q��U#2�Q�?�"]�I8��5�8�{���u4�y�ťN���9��D�o�=^�7���Y-d�S��S��r*Er�3,�K�
rra���(MH=Uh)�C�͒Ԃms0���I
�Z�e)u�ɴ`l��b�W
f��ԠTd"�0���E]$���fAH�N���[m��D<p���f���kQi�m#���9���@���mc}t����ҁr߻�c̻��P^�ܺn9A!Ό͇ňlͮ"͠�O�3�R�S�#��t�=
��@2�$2�L:��v���ا-*Ҕd�LJ{!x�#�K\zw�Bh���J$��I�+U��=y���3x��se�h��n��6�an/��Y�\.������P��=}�h
M���9
��C��q�m,T0&���~{�����F<��?��/N�>n��{_:����_/�L-��_:��S�X��s�C�_��]������/�_?������gm�� d?}���o���ع��n\��뽿x����T���,�Q��(�M~d�ឡ`��L�N�צ��+����	ׄD@[�$��s�;S�L��/��Ű흹��H�V,���wi����.?�feX�Ӂ��=sZ�D}�^�t~���֫����W
x�%����U���1A��rG9X&h��$͝[w�WM��*����!��k�`�[���&������T�I��ՂZZ)�ā��b��c3�v�T��5�Kb�'V5���if�4�v��$_�D��N��dF@�}T�1l-HU��$��c�n���	L,��J�AA'��j�,߿�JaE\{
m$q DKB������s�چ$��J��A�c�#�	��G���Ƃ�6R�"�"L�����vb�,L|ܹmA��-��5a
�p���p(&_q��l$�_e7P<��,���ÍJP�#a�)I“J�N�a�26)��O(��D~u�"<��h��d�jh��\L��LDf[���j�ajX3`|�Gnbr���*4u*Sb��a�}�08D)��WW��at��Oi�7 ρ"�9�\��B��I�ܗ��if�̞fg*�7���nx��@��T�'_s_���r�y�hY�ké�����t������__��sdw�N�.9&?y}�d�D�z,fWC�q��_���Sxi�Y<�����7�i�G�_���<T����r��
_>����scZ	=h>��/F)ſ�䙚�K�FȸVWK�n�A�3AL�RJY(g�:���_�dX�i�B�?L-q��_Ng��ӌ��E�Xސ�J�Z=,���#C#�l�'t�!��n���65h�i��&��lr҄ā\��Y+�|5�Vp�A�]Oֈ:����H:ޘ*�X5Qaj��G�[��єS��Y�����l�F0�U,O㲷�ü\�;K[[d����h��\�2h�2
٤�.n�'����nj2��6" �O!�+���q;��Y7��q��k�T��k�����*��w<�'IU�1�"�fm��
@2;1LE��ݣ�N*_
5z����6�Bk��N����|�e|�U>���?/U#y�+*[��9X��"2�}�G	�p>Ŋ�s7a�T�KɼT��D��O�]M�#�9�&�sEw��p��)��Z�hG�1�eà*��װ�E�d)f�q�+,6a���_~��0~f����yN�G�p�l�q�ǫ�r�+�<&/�.4s�]7�Q�{�7��G�3<�^z�bI���?��k�}JAJ�l��??/z�b��/���ߋ���bh�ٹ��HY��D�t���Y��<������)5�&�mF����m��>?:52
�D�dVC�y`����G��ώP����#]���=w�T�8��\'��2�ԍw���|{��q��D�a�g�1�%F4E��p]DL�K�j��0�H��p�3���b\�	s��K(�)��MqT�!�W��Gj��pNQ�O�B��r�L��<��.��B(�>�RN�Kk��:����M�K;�׭?�[����J�,1�a	��J����~if�056�I�u@.�5�iQ@�����[�@;I�lԅE�^��oSUO�(4���Ē̮%���7�����hG�R����L~�:���c�RJ�5����B4d�Q��fp�[�^i`6���Rmd,K��Ӊ�m�u|�xb	�$cVkȥ�6�z��p��7;����3�Ť;�Ym-�d��O�Pp	a3zkx�l1Z�a���.��]���֒b6/w�I��g�d��~3��0Ѝd1��df������$0bc�Pc.JW
���B�ϧ&Mdb�*S�L%�k�n�X�`5��I��#r�h�������#�an��•�9"���5�K����4l�)F������U��FG)�~bq
a��2�Nrҡ��#CC�/�#��3�a��������1(/�����2L�%�'���k��c����C#S�'���c`����Jb�g�3u�,�X��
S����R.�)�5\��a��et��G|B/��-zP#�T��!�	)D܄`�?�k iH��%�0���QbB|�t�I0�ݕ�P�`H��F|�MQ�J0U\+��C�i�6���>7�ߟ(3�.[�n6�,f|�~O��<Y��Y�
+sw�\��dz%��)�Jk�)�����5Cc�q���ZOj�[�%��#�*~�IMȬ-�-F<��l|���m�D+�	��]� �	�0�����7� �h�5R�$���D"���8�Q����*`C��حov���k�0��8%��6��z�de��Bq�e��ᢕ�W�\�1<���A�jɢ�˼&~+��X �zI�b��59l��<�Jt�H���0l3P��*&���wy��Ib-գM�h�Dnܮ1����‚�@&�B1�NU�_�K�fZ�:���[��x�J��3�b�z����zL��M}�#A���#����|�Y�>��I �e��!V���y�G���[�FXH�衋\�����d`�����p򚠍|��4_�<2r��B%�_�0/����j���pY]�,�:Ej5�"��gbqu~~�>��,F'&2#R�r��	�<
�w�p8(d?_\�F�!�o��Y�v�y����E�-�7T����	n 3>=�ҨV�~����&�BQ�#Q�آ����P�b�LW7x���	�����:�A�1�(j�%�-�����j���5-*h��@���F?�?k�2�	��r�D�H;o��-��մ�o�3��ǧ�%���(�kDa|:�u��l�B��m#���V����bb(b	�CJ?҅N�/�f�٭(�P���j1$;W�D�I5�Z��j4lg.���^څ(�Y���-��`3�	�J����E��/Chq��'��t�6u��xe3��\�n/a�К�.Ծai^��|9	�t\�<МCDs��
�[R-�)�
�;G��c�ԃ�*��EV#�ΔN1��t�H'6^��ޅ�������x��"�h�et�_h�tKc���.�L�CjW�{!)a�%�BM�E���<������+ƾ�����q�����r�m.����r`�#;���p	n� L1�lІ�N�@qj�c��7	{�/�Y��#���}C��QUR��9��vRҴ˫�@
φ�_ �i&V���ԉ�p!m��Ь
�ȃ�
;:،ȚYn��pgV'K��3�L@��{��I(��5�x�|�h��ݻ�>�!W
3�\���������|Iw�	
�ǰL&�,�LJ71K�(��)+�D\���"�8��"���W�ҨG�qS���X��E���M�N#c���g��y��� |q���`1�x��s(2�r͐H5j�D�9�S�F�.�B��R뻸�5�ṅ�6ka��
C�ġ���9�LF��Di2�����&d��B:ĸ&Y���c�:�YdL6D��kKpl�&h\e�A�w+T�BK��̊
͗�4`��b}up�60�;�����=
��(�Gz�Q��hO���9C0-ͻH�+�`����)��*�����s׸��E�5fxu�$�9Æ1he��"HI„��"Z��[u�D�[��1c�W�d$���t�x0�:C�f���Z�p(��.���,�a��Dk���6�I�Nj�"6�XI�@�C�r�"�M�D����8w��k��~7�:6��e�?�?�Q���C:��}r���;\��Y�؜nH��%�����UL��i��OBw�:}\���Jg���zzgh�!�Ȅ�������/���^H$����TJ�E�F��S\Ftކ5�z�����E������pTԖ$S��;���61X�!1͍�wAq���7��ln#��U�,�;ΕJ��e*P��E3�8L�bt"���9jR*r)�%�o�0&�Y!��LlC�&�O@�opu����C&/rY��i^���R&;�5�9�����^%Z�nDF�r�B-���(,�oͭ4Wt�Y`�`�]�m2��A��e�T�;�_g��FS��P�Ю�Ze*X��[S=
�)�"�
%,�6,��Z®��q|���{��ߘB-�l=~	���"R�z�_^u�3`q�������y��JûƓ�`�o�&G�/�y�vo�������.c��oz�7k8Ǽ}2C����V��c.C�j|�h�hB�ku;�
l������i�ȠL�,T)��@�췐��VX���2A�2���Q�U1�?�����t�X@3�E�C�*cT�?x�t�\���∦%��QU�^��dپc��g�_�룛��[P�{y��~�d8�8�gM�:PS�ks�p�8H���Y�ƑG���Mɥ�f^���$\,��0�9�(�,2ۙB�b�Ye��@ƒ�8S�33$H���ݿ��ް��:%,qz��D�nj�>�"��ġ<��q"��eb��F��^��,5�+�h�Q��(����F����X�a��je-�P�)d&����Q5�^1��q���R�8|Hg>]��a�%�*nIJߚ#US����ɦJ�=�h
P�G$�Q�b��D���g1D��"R����\Ob�L�N�	yS�xxc�VG�j�mV�a���c�&#>2*�	3y���C� �!-�ҴD��T�i��q#nfu�d.���
W.�)�P���M�E����ބ��Ғ"M(9O2�	H��I�S�;,c��]*I�?Y���ƨ˫p"��}D�Q�a.�����V�[���M�v[�a�l,��`�o��@Nh"����Ĵd<b&*�v�	�\�QEvٍ�7�o�!��'
1�m�,�:�+I��9�a<�:�F�5N'��(�A�����2X�k��5{�L�k:|ɘ�z#9@Xn\�C7�g����w�W�ͱ��Q�+�as���SP����/ B�e7Ĺ|�lm΁668��'�=E8�=�!�0�� �'R��Y�܊gV	s�\f���>[e#�>k�CT��AO�gpTX`�"+�y�H�#41йw�V��//-�|���(2��[^!����?	�<|8w���q�L��A�a��O�(|����ᚍ��l�i	ƙ&���~G��;�>�ѩi�����n4��9���;,��~$� ��Po�&�U��b�V���Dw�l�`�+K�*��x!D���/���|7C�����r�-``��U���ܲ>�2UؒY��.��04��yHCW���=�Jh��Qڌe��vK�?b�<̦I��	s"�|]_=.^T��J};�X�B�g���_�[�^�����ō�0l�f�%���ƯZ�c(_砊䓄}��F҂ R����7c��ڮ���t��Ҩ��E�;N��
ܶ�	1t��
�7z����:XR�
�<Z�#\�+H�d�Z�"|o:�DM;���"�p�l�<Ѡy�b!F��!s ���W~C�;�u\�qq�2AE�\N��_�L����Ӡ��>�B�M��&����k�gU3�5~7Dz)��9�J}E|�����1�e���kD��B�����@_�5�K�:dn؞�g��W�M�{	<�%�\,9�;y�3�C3`Ѭ�tt��x�<���,w��ΰ�����W�C@��88���e7��(#?�d�^�5 ���'3^�Ꮦ��H#&<��~��j�#��9¦(5��F�]_��PSZ1Ks���R%�)O��$,��רM#�����#�FwU��/��غ�e��(��~_1�
�P�1�ĿX�]=��
�,�3��=�,��y�%���_N2X���x�`��؞k�H�����ڪ�t'�����R���hsbm��<G8��h��VPd=�]ơ/�`���LbAcs�~7� u�B�@�>�b-�Nq���8��&
ut���'��j>�ĭL:����=�b�c�&��7����+zZ�4��7����9�񫃒�X,��l5¯[�@��F����$`5���D�=g�<`X�c��}���R���Ȥ�ZOS�o�m]���׮�*�T������L���1��fDŎ�p�Ns.&�춀f�bo�)5El'�/4�V�TU^U�F���L&(_z��椼6,c�	m�Ǎ���#����;/��j0�OK8�d>a�\�}��<s��_�ws\�y4�ᐿa��(Y:���{�o�%����ߟ�"`#hsۜ?�6p4�7����K�_���A��f �Y�T���������)�!��LJ��̢dR�dV�}�Fxt_��b�����o1O�_�M��XXȮ�C�V�g�э9f��`6�7�2V��c�P�.C���ᦦ�Ue��pAѩh��f�Yb�jT��n��.�` �2���W1(q���*���o�c]�{9`�;2e�ֶ̪[�0_*�F�����FBS)	}SK�KjK����v�֪U��g�kk%T��h؝�)o-cv#�s&��K*d$[�J��O�@m䑴���\���K�0�
W÷Q�,�;��鴭%�s�j�ȣ�D7WL��6��e����U���Ya�v\�
=C�a��� l ���M��������H�R2��6��n�����۬�����jd]�����X{;��Qf,#�c
+`�X3k-��3�
�%!�f�M<��1V�R/8$Q����>�Xq�Į5VkAk��U3�:�0��r;�8y��q$�D�e*vRď[]�hF��4m|x-��}����g4����n�>
o5��Q_�4��(�9���x#$
�4��^d+x�Vn��6��dO_���
)���W��b׮_�<I}{�`	��HlC�zg���9��ձD.�e�4dP�W��'X���7,)�K�N~-�D3�;Qw4ۍN���iD�Cg0��#�l��Z.��<n��
:�r�p&�s�=ш̺sG;���F+�W��/�d���i�_�Ǡ��3Ș)=���P��h�+Dk�iC�P�
�B��nc{
;�`�Ɠ}e=��HO��|�5\�5>Q2Z��6��/��QwJ4(��fg<�|�ZJ�#S+��p���L2O����&�W/QS���V?`�d!�aIm�8�1�,�Ƌ�u��*�j�D=�ۊ��)��Ρ�֓(x�.�e0FG��̰q�)rmۙA�{aq���OS���,.sR3Ћ,~�|�I�X`�QBD�.�C,kWc�v�:p6���7������t=a<T��¾:�I��¯cc"���LՊJt,c��A��I0�T�;5���D�1�Vb�	Q�V����{�fB�"�0��ūWL�Y�U�uR�*z�2�9x�m���}��b�%�2��>�A]GJ��Lv�o~7G�.��F���D;�G4������:�$Hsl�(�|GKzi0�3�&���,�yv���K��pJQ�+�H��NS�޻W���_]�4�h4���:�G���P	�F��L�+I��-����#�}�f ��Ҭ�FxB�^~*��=h���s�|���|���a�c0�	��3|�=#���Z�Ǩ�z&!�Z[�����A��N��?���|8Z\j��N�MU ��@��eW̊!<%4��R��n�U�l
�1�����E�`n��8��7�A�.F��JH��2� �A�>��t��ֺ��Z9\�����Z�F�,[,NM�⪧ڵ'sk�ݵ\ܻ���,3���w4W	��j�L��W�p9)�x)�{<�5-�Up�1 U����v��gD�|��_��_YFQ��u"p�
U�eb`��[z��'��F$��.Nn�ج��dz)��<��>��W
q�f�w)����1Q�-s�V�㘾��TS��bI��1圔�h/V�}P�c���
jv���7�@ؽ�T!��)r�0S�����cc�O[D>]2F����� �;m}�+���q�q	�l8׋H�N*�q㠁Z�H�q�d#c�<g�Y�*��nt�9J����������c��?=����w%��]���u�l���]�o�?�l1K'o�����]��Cn��������\�7$_����j�D6�@��u,:�Y�83B+p�R�j�96��]
��7�HK^^*S��˼������D:�|>�d��h��fJ����D��"�)e����h�]�E&xN)���U�<��mC�vv�Y�,i��P��,�E٠�T驓tS�g�����D'�)/FJ5w���4����
�P
��ʻ��@�V��s�r�Tg�ibQ����mh��*ፗ��*�N‡Y�ԃ�
��B��D,�⭠�ۋ����2�d$=�ܴ�s�E����{Ԝ9p���+��q�x8S�I	nd�
�~��
�/XEII���++|J��'R$������+W`]�GKz�wP_<&*4��qq�cs)�@��Ȱ��0�9��L�q
��D׽حĈ�*� K��Y߮��mDbi��m��-�n2�߰؈X@!�~#mX�'}w��U��2V���Q
�����m��&qLl�`�K�lN�E)\	Va�T~#3l��]�U�.hTa��q�X!�	Ɍ������*E7׀Y�x��,F7���
xs�K3E�K�C���½�OLia����z�����9�A��H#��u�sI�w�p����gX��
�Fs��=/��u�g��_�mi�|��
�H
\P��}�a�=}�NрC������U8i�"��P��x��j*�LQ�&�n�A%���'�Œ��<��/`M��KO��w��0�1p$<	�٬�E����F7����%_f�驻3!r����KvE�͆���Ea�Bss4+'�&�Y_�Ш\����W��O5B�d\^_5��N���͗��j9Y��4�/JTUSJ	��TvZ������L��U����D��d��W�ˆ�u��F��L��Q�*~��o#���	:8Y����l!�SH/�
�c�,�6�v3��B�������]�.��%�hNb�I�6p� T��r��-@c�V�$z��搴9dr�ˊ���2k�!WU2�j��zc���qo;F��I��F��dH�&Ȭ͸�i�mD�g,��7��|�{i.�@ N�R=�92[]		�g����Zc^��j�'
6�36��U�q��X���ʊ&C��z6��I˰M,��qD@e`cS��\�ǥY��n�^.��q7��V��X�bx�����̥��w���33z=꥗/���\��ާ��1��yjG��ΞcP����;�S7f>��Ԋ�W�gV?{�uf���g>c�7��w߸p	��i�O`v��f�_�W�,������g�Dfg����cl3�n?���aW
T���QX�̽�Y&F�@�P#����F�N��!�Ɏ�`�^�����N#���n~���."_/ka�%�)�C�'����Jٽ8�;�]���CsȚH��;���YY�m05��i֠ZB�P-��qrJ��@t��7����蔋�s++��r������S�d��l0yI3�Y�֡U�M����9Wu�v�G������Eг6�+�]�t6k����lG"�\9.W�h���n4�3(�Q	f�꾪�\�rq�n0�Weju-��^m�ᭋ�,��n��Ô���X����`T�U��Vڞ@JV�KJ"%(3dž-�;-3��MD|d��(�Knq|zó�A�Q8^٤����(�
,e�3V���ȉ'�u�L��Xq��J8�"�n7�۹vl��>�@zfw��-�;�86	?+�(�O0Yw�<0���4ߘ�S��Q�i�W�͢�b���Ov�
͐)�/�|'.B�(���ȱ���c��C/��@ūw���T�� ��D~�,F7_�ws8o�8G��t�9����;�t�#���n�	��׌��u\a����㚑~���p���܅��{�}z	�����J�3�3)��=��Sc�i��y�Yt��(�̮��?��Ssbόg����㳣���i��K�?����1r���;=��g3����{��:�nL���M��9y��&O"�M�y/Y���Y��A;ƭ��=�v[_�w�t	o��ql�=�g��ɠ��ל��@I^l�32:򥍷�L����.l��jv�o��s��e�dBNp�>�P��[��l�����-�*���O��R��9���7�J�v+�I����4`�	��Z�Q�.W1>G��[	G;�r6X�W�_��I�Z*��w�A*��3i��܇�:u4p4&&��F�[�v��]�u��T��w*�����h��͕�̾K�˕h�/d7ӂ�hS傷n�e��D6b�w�A�}��4���GO(^6,n�s)l%� �c�]�F@��
ۭ���ɬč�و�RH��pC�C�a�Ý
����o%�5j����2�_��LN���$i�ˉpj3^��q�e�-��vڙ�lo�D-H�(P�S�m/�
�83��nz����&M*N�i6i�L��@�xA��Wy��1��!��p孷� 6}�C[k�t���@�+W��Z�(�2�;W&��*~��̡&n���?�	�G��~�|,��,s7_�w�u����@��\��B��r~d�yu'7n}6?�n�ѳ�'�>�>-�pc�t���H��ٙh�s/�M�gf�������ܟY��3��w���&l�WϞ�:�轳�F�f�˜��N�}:peu�<y��o�;��,�]y|?�}2�����?�m��[l���N���n-�_#]*�d������:��8����c?uZ��}���=��X�GWv�͇w�<��77w��'7�><ܛ�,b��O��v[+}s��,��Nm�=��ޟLL=9a�S�n
X�ѥZ&���=d�K��Ld�wt�}��״�<�g���7�(*K�r9�D�t$k�r��i$@��]�aMzj���>�h%������=���&� �
a���j%���rX�JW���2��5i�_Jy!>c>&SU�AIV��%���\	S����^�G
RI���t*�rM��\
����իF'��~���ܫ�x�����!FPt�TPZ����lb���jѳ��m��&q@@a��^qԉc�l����-#x#1����v��HK1��-���pd��4|^Z�"_d�:�L�CB��h)l���2�5�V\�KE�Y�yYmZ�챠�%N��Q�6E�S
��K3�;��5�"��!���/�n��L�t�^�ǀ%
�r%/��1����o�L��I��7N>WT���eS�+6��J6�5Ȭ)�0��,��T��{Ts�P��je������b
��(s�.��`�y�{���z�G�^�8?���??};>����[y`�o�?5�Wj�/b��W�Nm]='N��o�]�c�Nm���Ԋ����%9��A��bW�����:?����7\�����=�g$U�oE����ё�ߏ��*j�'�g���,��S���u�ԟv��(h��a��1�MfQ��pxk�S_ܢ��>����Ǜ���p!�3p��Z�u�'�3�F4�;po���*N��fF�g
4Dd�D�F6��b�Ȯ�<�p���~���K����{Q�cry��|�ZM�����V��/i>�!�jiY1��H�PhoW�Z5)��f'�픢�d4_�,Z�s�׸�����|A\V,�k�^��.qd�t�kL���A�нJtTLlb���C2L2�T�P�xk>;�F�ViԌ

x��6\A�񷰉!�؟΀vR�5؁�z!��Jg{R�δ�H*���?!���=��9�^3��i;��R���=����,�5	�;�?�`���$�@�t�J���U�&V�F���R���!YU��;����c�0���_꛱4��u1g'���4�X��~���̜�韘�A�3������%�|9�>�6ek��hq���3]q��
��9F�D<"�8"�q�m���{�S�T�`���i�o\�_2�SP���0;��,s7_�w���Hư_�b{D������e����ff&z�r���}�����߳��|V��7NR�Bf���o^�}.L��_���?�ec���?5~M�>�)L��7���z�A<1<���O�ߝ��͏̮��I2uso�����Pm���D����0���'�?uރ�u7��V�l�7O��k�H��~����j�͸�擽�<5.|��13ȍa����at�&o<x2���ݻ��\�/3�>p���އ�-�9�΀���4D7Y` Ɇ֝�Nc��U����`i��Xّ�x�l!�R�d|?�X�3w�#�)����D/���"r`<��M)ǧXĜ��ȡ�@���s]"���/�9X���Cf]�D#Y��<9d��;���Tg>�w�"a6�	�����P�j��KJ�A���i�:b�yY.Q��c�傐��"�%��E�F�փE0�fl���%aC��R�����V�R=}�w�䄻�d�dթ%U�F�s�K(��iOj��O�ʤ�&=x3��x@�W��h�QdZ�Ơ�X����q�i�o�V�k�$���h2��+����P�m�R�}һt��zz;�Y
z��M8`](����{����k�I��|Q
|�	G�[ȃ������I*�>t�|*�"40�%�A�
�'٥�f�;�z�%��'��7�t�AB�;wĠqR�0�,�^!eGQE^uX�z���lr)����)�����f�
@��el;�7'z"<n�n;nFZ��<س���ɉ�<k�ׯ���X�����5�1������=_�k�<ֵ������G֟>��5|���C3�o�_fݵ�i�÷V�o�CK��ş\^�|
����O윰��hvݨ�M��س�y��[)Z*��=���x���p��r�(}�Qw��Nde��M$�c����������f�B���z+0��|��>m���	x"�)8e
L2�����_�l�x��	��Nw$
6��=��he��29��H�i棐%�be��ʺ>�ȮJZPc�Z�I��Z�@Y���$C�R���A�p�j�<hLE	�|
�#d4���2I~FY�O��j"%M�L]��J�],WJ9�C:Y�Û���k�d]�/��i��ܰ|�Y��x����ʎf�
f,�+7�	WHy��j7���7�����>QOPĹŨ�YJ �D@Y��������Xo����t!��6nq�qv/�	�Ԕ�B�0z�=� �I��
b��b�J�dM<�y�6��=�+��y�ƩJ K�^q�إ�\8J���I���_�#�4L�`�
}̊Y�}E�᷋�=���$:�t�Yl)��X�P9S��4�f��2,4��RHc�G�|��(pT�l��e�)FU�����Yš�W�6��ϑ�A~XNŧ1�8�L7�;7��bp����ͅ#�ُn�u���+�0/;�z�����w�Kg��r��<P�����e
�fV���̋�Z�8-�Z�7�㚙�&�]����
���|�����@>�\�$�@t�H��D7#O���`����Ye]�D�����6}ř�jf��%��d�ލO�sH�o옧dl�n�T
s_�x/��2����q�N��֨w��|>A1<����¾�u�#�(�����{��RHڲN���������R)��f��]�NP,�rz�Q��FɗcL�J���*�q&X��G���b_<�1�
�U�
��j&��V�^G�8<��4AH��Hh�X9VCU�S9-L&ܦG��L���b�+�d�I�J�A*���h�`=X����U�~�E��!������+�w޹�#�^��0b*��ˮ�2�@|?�2��L��pHo-,N�!2��{1�G�������DB�+�O��itUp6`Ԉ��1H��EU-y��k�o��n-�}��b3�}|����Dz���4�@
���:��a�:���
jU��v[�s�<P�wƮX	s�}�E�?)]�&�'4t�D���P.�(��VF�������~|�TTe2)�+[/9����8#e�%X�V��i�Z�z���l-�/��2/���z<���|Mt#HsP�G�n����G��A�
777�~\�q��psr緑e��^dΞ|{��K߻��t_�}�7/,����.�<�����?4�����Ҧ�����8�ޯ�~���s$c8O73�SP��h�,w~��5�H�-\$oF����������n��ҍ%��-�Ԑp�t�<��}��y?��w��=��Y�"E25��f�o.@ ��a�2��hdg�]�}����"=�fa���HW�RiI�&����odwN�s'�\��[VG��{�	�ӻ������R���^�E(^v`o\ͬ媚�.��/��i2�u�o�C<b>j�h�A\�W�O�?���P�]���(wSԩ�儖�b�Z9��APT�
q�vZų�Cᐢ����@�͇�iҖS*��$��y�x�	;ήv�RK"�ڦ5X�_��I�O��z�̿տ�|;�5:�H��8j���ԙ���[�Sr�3��B�Ą��9�/|.�����5���Ӄ���ZV����F�8���x}ET$��&�e��=)���m	����E�5�P7�n>��^o�����<�f��Rn���b����X���#���v7ӛ�-ۙ�J���l�kb�U���Π�+S�B�OP��sIFk!�4#Me�t�'P=��h�9L����R�i[6B*�DB�d�z�ᩨ�&-V9۠��R��'����!�3;����z�c8�jX���2�4��A2%���_�?.����^��|7����٩����>u=�����y��H�7 L
��~�T��ZL�|:�'�^��H�%�ߝ�z��5��'��O]� ��I�ί�ϏU�a�S)���T�3���r���ݲ���{<�&�����ʝf�C&�Q<ر�#�-��	�$���s�+\-u��^�{j/�e�c
�y�g)7���O���|dmg<��M�b�WL��m����wJ�-�=��=3^煽�K{�D1�����t��{�h��Y_)ۻ�+-�]5-��#�B�i4Cr_�J�2n\�nw�N���1*ѡ�0���}Rą�	Vst5W(W����D.Yr;s���`s��MLRK��
:���%M�Nyˍl�Y+'��r��.
b�����N��!�I��΂�Q3^�F/��]Y*����x2Lnו�Q��zAt*��S<h>f���gh�;��tx�k	*/v�FZ��!�
�P0�V�L�JnN�����t۞��l0b���mjYf�R!m7������a�|�q��q���jSi2����1$9B)>[�z<������FB��n��z�S�H�N���(PŠ{�S�-_��6X�]IƽP
W�L��]0�L��	#%\�a���Tp�R$�$�!/�<�(n����sA� ,3�5��֯sb�;!Y��@a�Ef�$e��j��2�[�EE���ws�L�ސK	u��?�N\k�[WΝ�G��쵝z��h9ȝ�70A_����J|V��4t
d�ّL˧[c�F�q��̚���k�4��~��+�6��x���[߃-��dž��w/����/]�G3�O��q���Ց��xohd%�g0�=��l�G�Swɩ�j�Y�ʼn�%�lȓ�QQeN-v�b���۝��2�4�1G�>��c_�A6/o�m}{y��ѵ���|>2��Z����̰�[�sK=Rv�֖��@�=ݒ>$K�����l��#��_΀�����K-�Uô�_�q�6_Z��f2�4z�݁d.٭�>��1��C��V�TrU����dMN�t�I��5���˵�7�J)���y��{���0���R�QKD����9�((+��;�N��l0���h�M5����n5nl��k6M�� u�^�:):K��d����%_3����ڧ�F�m��oWҘ��D��Aa�xKE��u�Xɬ�����v{��Qe��w(�\�[�U��#�mX�l1���\�
��,���2J�L�-��C�R�Õ8``�il2<��m�R�{u���*�T=�w����艱�^h�J��2��`<�Q{�>D'�d�"�ӄm�x�3�\�xg�(���b�d �b� ��_D�̐\��T����8���DE���@�l�	�ըĨ�?�����R�`͑c��6ǰf�/�J�9)�QOr�A0�Xa�f�]I�W H�xbo�v^�9�%�\�T8����׮]�	�r���M�_��X�?+�.*RbZN�������$��iߟ���5B�����2f���6���u�:�^���n.�=��b][Cy٭��
�x�
u�F"����G��.B��gX��j':ڡ�]]���F�&��p�����a��((	`m/b6�Pw���$��{��wW3��n(���p���HA'i�lh���|2��>A�Y��ZL���q��k=�	+:3nWn
,��^J%�R�p
�U
KS�].c<��~*�*�*g��3�+ּ��U!�jّH��t��4�r�ͥ�J�d3�t%��e��E����Qu�)��(%�;���x���ʐn%�#��b�ކ֍'-�u"� X֖���L��2F�L�a���]DD‚8�\�g""�$rY���9�۫�4[�&d��C5��c)r~�1�ұ�������d��P6Hk��T�F>��;L�E8��b&M<��cpN�`ޠE�UE�Y�UZH���.����ib𷅑�Xgـw��T�c�E�O`�b�Y
�+b���i"ԕI}�t�B��*n��PA8�	�<����w�@��p=Xdž0���p�u�W��L����C�w8x�#Od���ء���!�A��명#3�[A<���g�`Ò�����N�����#��|�F,�����jU�O�QD2�H��F&xB�>}�U(wv/��5�
"N��ٸN�r_	]w>J\�)��0��"*�M5nA0(�Ge8�
��'�dy��(���L	gr���)c�{��g���k�	p��\ףyh�
�pUOz�B�Jsq�2.�U�`��m���7�2?�A��;pA�歅}���\��yTL�F��D��Ju��F jj*�m�X�s�ӉD��(k���Hň�b��e��Jb¦e�on�vGS�f��#n0Mjn��Τ0�b#!�z�FT��Ia7C����S&�t�2���c��y���m�*�v�l��|��8�Mp�XcT�&Y�7�o�v+���FZO~`����0`3n�xLgμ6<nAz@{����\�k]d&����+;1dT��C"�v;ו��X�؃	� ���/E=ΨW�Z�Od����#���L�M�F8O�+��夶5H�9.�WD�JR�PG�>���b�Ԥ��b����ݨ���t�<hi�ރ�᱾�g�*>��7GmŠ���>�������W�����������4rA���>�5��r��N �1N�S`�N��rs�S?va`��*5ʞ�<o�@���)Q$�[��GL҅K�zl#���ٸ�4�!ќ�Fy]X�O�Sbl3:��,Fi�����@��ӣ��#&ֺ�p#�r�!|�J�ݔ�-w��F4ی�ةF��qg���Fu��dC��E�b*Qp�h�Ҡ`���?�ئ�?3i�?��
W��]�K���R�Z�TkZ�,/�U���Z��)3���j&���0�t�VL]�6k)�I4����T!�x*cm��2b�D�Q,�C�%�r�\���
n�r��n5K��弽t��\\�'҃ᠢ��=i�P�%	Q�8=q*�r%�b�鰋�)��dR[�j�**3!���v�g��Dc�x7��*IJ��F[���v�F�oR�Sejw� q)��ӛ^Z9Xtj��{&����qZ����t����ͼh��[" ����vn,�����Tz��j���ț�L�/F�
�|2�-� (����r�\�F~� ,��^M���U����e*b��`P �v"�tvR�2[�i���efT���m8K�m�����[�.��0�6�gt��}Nޱ��Yk�?��'nt���:^�:��i.��C��:AA��~_yݜ�W��-�B4s�e���D`�lg=��_��p������9p?�b}C�[����m���̳$�ታ.�y��a+7��Hv�O(p#��n��ܙ���`"��G�gF�a�uOH�#2�Gd�nd��"��bI�K��<��w��Z�]�6�&P"z!�i��M��`�Q.5:�N��R(��Q��7T������'$�
�8I��K;���al�����$M�.6��p�xuW5�R�0/�����$S���Q>J�(H���K��l*��$V:@i5F�:���k9���=��b��t4Q�4܍�fX�R���u�׆����K�֑q5���J*�d�"Q�-F��J�^�?���R�29�"�n�b�|���Vb�Q�](� �w73Ǔ^��mG��T�ve����e�#�^�����6+]@��G��̹�9Z�B�ްfɴ%��ۍ8#o�;�1Q�`��k���YE��9p�pb2]!<~i|̢�c�i��D�E �n��S޶�=.���0'}I�Wc��Ǔd��f��0���ŏ�%
T�.x=�*%2��c�T{ډ��~�5],�,�{�$c�D�H4���v_�w#���FǚC���cn7��
����g0����:B�(�9X�ׅC/��u�6���d�Sw����e���ÛNAO�(*�jP/zeie�g�<pWle��d�s���J�-(�wbZ���H�;�(��:yZ�R������~�tz����6���?~w]��~�[O�K@�4��G���M�)�l��ж`���Pv�����)��}����R�q)q$u��R�e^��0K3��EOP�0��	Q�P��ɲ_��?�hE�#�f��R7'��
ܹ��;�3*��
c(��OT�&�P�kd1-��6�
K:E��35�
�%��V2̓�"{y���
ur�L0'�(���h-:�@E�)yj�s��<YX�c�4�M�_(�j�M��Ո�$�\8e�e�	19�L[�n5�S�ĒxD˰^�UB՚n�Il�l���t&��a�J��h��VGU��4�ݱ�j�f����:|��y|E	M\��a�P��f>��*��Ǚ<�w�>Z�m�kz�xI'��>'��kn~Y?N}EW'����4�r��`�1X��p�;��z��`	E֩Wr�B�� 6��\���{J��<��5ތ�n�h��`*�>y�G��i91m��[�:��2��U�ĩ�hXCč�Sl/��&G7��&�uw3^�-��+�7R�8ەG���s�/c�5�f��F�[j @_د��L��*���u2�CID����kAӭ���K�{�����͓n��F5R�5�̍"n��2 �'�7���m�uWĻ%Ԩw��+��
����
����V��M0珌j�CX&�� ���;�;��[�Hë�I�$W)~�����
G9�E��
\X�71N$��jTƝ
?��XB'1yd&�0��)�wh�jUA�����+p7�!�b��"`����`�T�1n�(�/�*	���|��?2J�Ƚ鷨�N�$q*x�9:0 K*�� �&��h��S�:�T]:�J�Ǩw�2�S1R ��W��D.">���jT7��|VkԀ�9�I=Y 8�[g��6��#)`�T+م� ��5��|
������R�nզ�w���}�Fӆ����|�5�g3޸�8<sB��x��1<�\�!��̅p�N9X�)�&H��@@s1@d*s��ڌ瘱aG��\2ss#!9�5NS��h���|���S����|+&M��&?#vd!	��E{`~�U��gu��sܩ��8�a���R���B09,3|Sj*���-����B&8fU�4�m�|P�@�5}Zmd�sƪR�J�~H�=ť�1���bǵϽ����aL��hH���o-�SiC)�gƂ���v�`Ԫ��a��������(��<���,k)+�xL󢈕���St�]�y�1*R��Zr
:�wt�8�Q�(lR�/�\����/?l�9{{ "�nqq���L��� j`S,��k8R�p�:y���sU�D��k���.[�p4�<��]�d�9'�|2g;�=���\�E0��L�v�X����c���?�o=|�m�n���^6c�v,B9�T,xT�Fc%Z)~�b�ߏmn�`y�R�4�`�aq&@UxE8�M���
��w	�(w�IqT��:�r���tol{%��?h��dы�\�U\A3	^������m7IMә�C&�B2ڸ�L*�R����
J!8�$��F'�D���O��鱤�l*�ڃnVq��𻕣4>A˳���v��,.m"թ����f��;�9�8��*<��R<�t'
���9\��l!�2��^����'�lo�MIaL@{õ�rB�`�#�0"�vB	�}ҹ��������ƛP2)pؕ���c~>���t0u�3���_�
�93i��ʚ
�3��!�[p���Q�R��,�q�OF;�Q�CrM$Un���Kw'P���;������"6IP5*4�)���Z��|k���?�L=�����f��'�͒�d��B�/B/�h��K��)�^f�
z��W�Z5Z��*���+U/� ��9(ĥ
sPL�B����Cw1E�
���s�)��yT87l.�M.%��tj9T2K��#bޮ���0�R�N_�Z��F��?�6e!y���2��+�D6X9� �IZ��.Dqh���.���-p����x�v�aL�m�$;C�`�E�Ju��,.�G'�@>�A1�v�aT-�B�H�w)Oy�8`F�K����ǐ�w?O}���R�"��N�(��_��V��N����T���C���(P�����f�J��S�a�i�:2F����Y�
�εp����g@SK�f�ڬ5J#���e���{h��T�Z���V�N�Qi�:�~H�+C�#C��S�.7�VuXb͕�����Zk�]��'�|�=��-�34����V:��'�j�OUDv*���{v����nދ�Fx��{k0�]bjTr05��Y
�O'�m%�fԗF|r��>���Q���^ �8��;�>?��i��K�rIB��ܲ�q����r��-�f�L��P�^�:&�S�Gf�(L	�Kf�j��>�t ��V�6B��S`ȚF�&�2)*�ڝ��y9�2S��4�V��|U�H�>���;4Ɉ�﫛�������2�A�e�@���p��ŏ�Fx��Yb�:�����<��=^�$qkTD颊��&�"�%�!�R�w�&���L���jG7\����
Kޮ2��mWuN�\_�9/�x#/�m�袾�-�Q�B�tr�	zЉ
������]J�hT�x���x�S��M����+_��N{;��S�t�0�͔�6�z�	y@�Y�0A��-*ܒ
�_Gr���<}U��1�$3,љ�ˎ�?'kĐ	�����U�`�[dϕ��6�����hDv8�5�vA�P��$���T���f@�$�5=	g�栿F�b�H����syk�ĨX�Y�jI+͔��Z?=ψe
�7�
/�v.˜Lbl�w��N��/�H�*<]ŷ�7߉3����Zci�=���C�BQ�
��ƪh�N)H�me���X�F�{�#�9yu�?G���î=V��x�=�XS�5n�xڤ�?�i���n��H7v�5ޟ��X:,D��V����
��O�7��$E�w n[jD���g�^�3�m>��Z���Dy���߸̵�*��1P7h���ጰ0`Ie�m}_X��\I�)�(s-�ψK����m�,���ͯk�e8���[�<=k7������ �z��y��|�Rx9\]6R��h#�W8O�o8tT�ԗeo��0���NX�_���h�c�!W�3���{\��6���R��Q��u+��d�-(z��G`F���^ŻHmË��,�xI��	R��y�y���&��T�_3>�:�(���b1��0ō,�qs�O7e+�j2x�S�d�Z����`�t��]
ᆱ������!F�&5�H�ƨ�6���4�����	�'e�_&T�W�KA�N��A�Ao9h�S�>���R���d>*7.f��;j�א/�-�b���q�]Hv�eui	�
�u�`��B�[\՝�Z��d�����J���%��MWmL���6�PM��c�e�&���&�p�vw�B�j�Z3��w�`��5�+
���?�P��I�;"�$�&|ӓ0ʫ�e)�*�X��_t����L���gY�3�����dн��ia?L����X�Q�+���͛s����V���v�Q�r�y`���:p*Lqn�H���Q�ӛ��2���c��ƣ��\;R�@��U�	
�	j�#��M��@��x%�v���3��Ns*��eb4���X'&ј)����� �w�?\U��[n&��'��xSkO����Q
��XJ���)�r,(��se'�/�(�+�����KOB���+�d�6�8K �T�
 A���R|G�x8�?���_��%h��K�+E
c)5�[��
��l��x�s�k���
���U�(m�"�
�ܡtR�,����0?ϐ��)(2�}N_��ܞ�ߍf#�(�2�2�
x���%��e���#6*+�|��	9a�;p�動���J�́d=�l*��h�(�W;��V�""�`������J�_�/�s��Z ��|��1�A���T�B��C�@�/��F8'&f]^��"C�����u�{��a�S�C�R�9j��K0I7k	p.i���lzjE�v>L���d�j2��q�5��t�� }�/{�De���̨�8T��q$�٠u6�k��O��\�88�{�V}7lM9��Ž��V��ԑ���+�Ԛ�i���N���5VYZ���踓�/����6��i��n�'mt�11<���ʶ��Q�k����U@�G����^�HI�@
�wL�s��8@�r4���L��g���k�+��*+�yo��~��`m�X�H�`���Q��
�,a�Eao�)O=��x�4Z�	���HB:y��3蒁��l%�Sb~�!@ƿ�n����w�ě�|��,����)�������"\�7��.�1"pɱ{rB�S��R�6������,{
`��@	+fX�/ܸu�%/�Q��pE���r� ���3�û%(�ݏ+.��1�9�K�g�hǫBY�˂7�fr����ـ�O�g
Q�P�D��珡�͓sZ(����Q\�d��eo�XQ�m�<�+й���M2R
H����2�"�Ҁ7h����)�/�����e=I	8
P��W�����eQ�J�����RM��D��oCl����#��_�:�\e6Pv�Wp���������JG�`&�R�
�A:��װ�5
5��o�<#ʬ*6J�t��6���T�%�Q�����$���0ݞ�)�q�t�T���)�k�N����mìGk��][���<N��~Y�\*"ӈ��~�p�ݮ���F�N^�7��8��ˣ��8�<
Z���4
dJ]�E�f���f��z����4]���5�X�I՜t�N��~H��Q��Ps/��G�偞P\5��:J��LԲG̩v���*xT��!�5�­�����u�r����6:�1��[�	��4�e�)K⋗Hq��8]�Q��S-����d��(;�XZʟâC�05mpQC�%�<��ͿL��uYݨ�eb�zYz����/\����R1�qV��ϗeo��>���P�h
�p+P�\|�%_Y����l��#��Ν�;wT��E�r����>/�n�@��sכ�`��Ҙ+�.
c�/�yY�8���$V��I�(���9��ޡ+���6���d�s/bFS�N��c���Gc�Ne���	A/>	��:�Td �h�
�,&+��$�W�EBSs;��-�M�\9�4���A�d�G6J[:bR����Q�O3�� �L��e!��tP�N�h����*�[@O0Ȅ<P�����W��6�d�є?cӫk�QR�&=�6G"��]��b���v
�	r_xNg�Z�R
�C4d'�hu{
�xD���9T�d���,��lz�(Ր�������՚���I{�f�N�	TI��4�}Cŭ��
��<��@�eY�z╺�������>�;���ʲ�s���y>��p.u�]Yb�ӝZU��tӴ&���^ٱ���_�B��uT[.���:�	N�}&��ɰ�mw�X���I���,�m@������>Տ}t��f���I�:�,߁f�p`��̩�?�n#Nk�>��KkI��!��o�K-#��)M粅�=r��q\óB|*൏���y: �?��(��wr�3V��c̑��}�u����y��l�}���E�7��}�3����;//�ؼ�y��du��/���+٤9���U
��k����M�:�4QM��Knno�to�
�^>���T�vI�9��>�^‡\��%��B(N�������\.���F�&��Q<A�F�,�Q��s�`Ivv{u&��A�
y�x�wy@q#��(�r	�+G�a�PH��El���L�X$�ɟ��9�U |���xL��ƒ3u@f>N־�R#m�8x���+���f�Nz=��AsQ؇2��v��
Х#9jkr�t|*�1�����1e0��ā.(�I$k4���ڤLyk�x��7M�T�,�n�'�Y�ɢ�Ys��l�xfx��RLZ�R�Hj�ɪɞ"(�6�X.a�@E�^��FFs<���ʯ�f� GÀ���`�J@�T�wƉ��E]�q*�D��"o���Ъ3�~���_3�*k��T+ŏ8J�2�B�D/$��
Չ5��ϯc�a�VӌO�&V��(bw/��Ar��n��V���.��85f�ϔk���� ��V�aMB�Q�WЇ��nw2���w:�X��#0���t��%����;?,��	
�\}ͳX�@3��S	�%O�pz ��>Y9B�B�)L���v;�dC��?1�c/4qS��)�\�
�K��	�a!F*1>'�9O+w��j����֍��,͋9�35^����M�曧 ?���lLY��W.eS���-~=����>����{ٻ��;�ɫ^}��뇾��f�~��K�%n�}����|�T7�A�F>x�ޜ�J�-՟߈�9a*�pyF���gC����c$������1Әq��g�O��Wp�I�/c�7�ݸ���M�e����'����)�\�),�7�yX�X�����S��9�oz3�l�v��0���!�����񻪋7>�U�0�Q��>��M#6'f�;~�&��=�4xjc�c���"��$���������P�r��	1�N��f�+D�ѹ����5[�~"�b�$�mbIa��I4
�8ŝ��Hv��]n�u��d�+�.���^,�� 2�G^$S�Z2�(�I�K%64p�ntea��n�Z�P#٥j)ƍ锫6L1ɢ�X��wB�tP,ҙ��޲��jO�^N�I������vrWO��I��4L��>�;�������ͺ��T,�8�`H�@����&��5��c
�����W�	�xP�PY�#3��\u�qr2o��Q�Ҙ���da�&��Vr�i�gTΡ
d�
�<�t>|�N���zɫ��{�[�F�i��4,]��z�N"g��/i��s��(�N	���
�f��	.	�$b<�<�����R-��r��rkb^D���gEXe�����|
I��V��=�����w�T0(
���F���.���c5��|9	~y��8�|��6�fF�Kv���p�͗~�Gk�f�~��w�|�N�����ݓ���/}�}�?ޥo���V��w����p���p�d������m��	&�?��5�����p��.p�Ş���
G�iϏ���)r�o�i�l�l��Å�6Q���Pd|���U�7��;~�������u���"�%��΃Hl�O������n�ԍ�|�@���ǀ�s��A�]�<��X&$�x��٭���c���X�؞m8��#'�����\��h�R�|���+.ڠt� �M/>�	$T�^��r;�5o�6�ޱ��~=@d�l��(=��S;
=j�jNӕ”�<#TF�[�un&�!�]1�A�~�to 8�ԗi/(� �����̕d�g	�9P95��4�A���r"�:ʆV+ ���f���8�Z-�(%���T#cJ���5b9:�Ꜣo��ԜY�F�aQ�@1��V����G���iV��%�eس����k1MM�!t$? ç�j�`V�}��]Z�=b����@;bZ�fq�+L������.T0�����d`��W��(ɦ�dRș�a���<��
���&m���6��gL$��k�9�#.��Wc�N�^Mz�k�������de��
em��
��t�{�����t:_Eg�&���,��%<8[@�}-�� �
�8W�?���[����1*8p@���3��n����~7�n���K�e?�62�Z>|l��h�5��Շ��-����o�,�)|�7���<���_���(�Ο?������0�:��%�֍�Ҡ�J(�0�^�7���}��O�_^����h�]Q,�3���#F�ik����f�1�:]ܖ�l�ͻ�UI#U�Nc�K�n�)U~|[���A̠�\�/���|��\��<M�l��2mY|=�0���.'7v��p���h�C��z�Q����w��7�g�<�w���k�;�7��(�mM�И|'�x������w?Lv���v:y�0�.�5
CȔ^��nD����pY*�e�Yx��?�Z�Ȱ�E8�(h�N�C���i���&�āJ�
A��5���μ�K�/���7Xi�Z-$��s�~�
�\�$��zP5�x-�-M�EB���#�MD�?�	�lL+a<Cr�viԜU�S���.�E>�8��������G<�Mϸ�o�i��;���}U�d�`�2�ciD�h`�F�_���­ ��ְ,�`6�fYz(֌�˜UWc��d/�0�ũ�:=��λ]���M��[v�
�MX3Q��0NX@B0Ώ$�^��4w�J����X��x9���ݑ�&�q�
�0������`��L��"g��$ʬո+�u'�0�.q<V7X��Ї�bMx#���2�E�ˢ���Lف�*���0�\u����ӰQ�?��<�o��
G��K�YJ5�e��7^}�U��/.�#�����
7�ڃ����~�-�>�n�����ݻ�Ы'_R$�{/|�o|
��CE��+s����L�?d(uo��C�|	^�pC�Kp�!�.Y�9|�ƻ�GAu�{o�3��O}UC>yׯ̏�J0�^�El�Q�f��a���s��G��L���>̌�����
7�P&6�be�d��|��	iR�q�X����a��q.���Qw�Y-q�i�������/0���������~,H=uDB������#��e�_?����[!�Q��u�S9W6O]�4y[5�&���w��O�j򮜑��tep�mᛙyP��ܛD�@�9���w�`-0�딒��%S�����+d{�k5Y.=TI��Et͎4��uͨ1&7�v�d����e$m�6א��F&�E�x�Qc%gl�r��~y�#'bY茦��>����#3^���c�>�Vt7b#��^��qQ*�4Z�~Ev�Q��녎���8��e��[�n;m����)c���Bz>��۫V��f�%���A7�3�Yw8����ɣ��
�/�Dh�X�JH��ۻC�mg����h�:��tj���(
�N�ev��s)!Y�o�	N��o���0Mп����tIμ���=Z�r>��q
�����N�Mא};L��֝�I�t���#�S��&������<��O~7�c�,��*��z$�5�5˅?�3�����gWS�+y&pw��:�7�܈�FS�O����ZI��ŋ^����h�Z*�Mw�~7��H�8����c�0�����C?�i����/�~��g�s�&r`x���g���Wo|0��Onr�o^5�}����!��ǀ��ɟ}QA7��(pCy�R16����>�usv;�|�yTU�B�����d�'a���pc���,�ppdϾc����7��t��e?v���A%?~g?s�o�T̝o=��</2��-�p4_���=)�|.6�e�Vh�MJk��0�B��eE��̱@�1WK�����4O|A��`-��<�I�9��De�Mf�I�����th�Iڎ^�P�6���7/ӴX�1S���G�H� �D�����`�	'��`m�N�cI:?H�H�J�k��"�4

-�&�C�Ȟ!r�:H$��1mˆ�?����}�H��v��4i��e�3�D�����PHb���8��(udG2���_&��+�
�qU�L�QɁ��ԼL&����d����N��`�����S��WI�43��G{W��`Z�K�f��ޔ��H�z�;�5�)r�ijF�k�y�RYgk(sYNȦ`\�i'�w�>$e�JE|�ZʋJ���h�Q��[Z-�䲃����P�ݍa}�t��O��q�'��u±H���2*�:�y���wsM�,GS���I\��eu��/������p�C�R���K�������In���@������{��`��;�`x7t�F7��=0�����S��:�4S�����Z|�Σ7~������{)�E��g����#������%�}�O�2�(h(d��ޟ|�dnG�~xN3c�̙�α�nD�ps��l�p��S�|�[}��&�N{��\m�KR݄	���ʎ=^�vg~]|	LV�6~֏��I�S��:F�h�zз	��/Í����(+����>�s�K�N�T8IP�*���GO"�v��+(� UE0���)'����iV�wL3�ï^����|A$��jH� ��Ś�9�~�N��o�=ۆV�O����=��)f�v��?T�w�SkaM1�3�.P��$">����[i([�BI�N��\3���,3�pZ�c����l��j�h�FX�w���
Ŝ�vGf)��Ω~Eor�f�$�D+iz4��4(7�ӡ���L���9�3OO��9�
�Ou�Gju`v�3+
�;�	C����9�\3����[­��}3 �e�p���K�j��
�nۡ{��4aO[�GZŻz}��@�1��+4��9t�$���Cڴ*�1L���!�W\�_�5� �Al9bPy��ԅ�B}�E�gc���<הA�j�|�ϡ��{?��ưj�����o˛�\J�� n��7�c��nx�7����xۈY1�q3��r��7Sb7�#߷��ظ�vb��+���P|��/���fY�H3�u6��0�B����
?�+~�;����=ֳ������Mx�'�Ur�06��k��@�N�?���0s�KF�~?�4f�te��S��O���h����v#�ߍ?��z�!��y1߆�A������͌?�vod������6/��Gep����[o�r��k�׼�C���!���y�i�t"c��o7��]2?¾���z�m��d��~��6
]�g�
0c�<�3�bx���" �+�!/�tБ1a���f
�x��p��ﲸbe$
iT�(jҸ9j�����XLl#�<a�$Q���/V(d��h�b�X:�Q���YjGNb�R$�HԷ��"���y�V�"߶��w�did^�]4G�4��MvN�@Z���)dn:��rX��eF�nO��E�����1Ϛ�˹��RJ5Aȕ�Ƃ ��4�
@�o�e���^��1��i���lў����ꪺ������Y���|
�X�:�jr1�uI�i��Q�mdu�Z+U�g�a�,���d=��;�:�
�^�j��U3�ohځ�!S��M�0iӍ��c��*��d�����3X��X� 9g*ů��]8������u���U��U(.N�qh���S��n�`#5
�O�R"uG�����ۗ��y��gu74��+��Z�͓�敒�p��g��bB5�!C���'!p�қ�/mE����G����d��_n j�����O�2���h2y�m%��g[[_��Gms�A�H���O�d
��/���|���{J;?�?���x� N7��b��H�K1[��g��H �����/���6=0B_��>�}f3�-��.7|�Qm�y�6�^,Z�7�$؛}=��]�1^��G�ƾu��j�����#�Ik�a�_I/Tu��f�1�l*5_cS�Ory����>�ԑ�Ñ�,��r��<�E�`�
r���2yW��Rzc�G��֯��dcbJ6}PD��3���MFa�ž���������m���W���ح�S��(ع<�eŢ]��K-<`���G��Y�>K���7����MC�� >~{����.�s�I�7���%L���H�|M��Fm�Q'��z�"J�x�Ș��G�=���f3[Min� �3��B��&Oz˴#Is0��`�9H��CUk`z=��&�0s>����U����j޻`����D�iN�Ӫ]]�g�I��N�zD];���@suִڊ���i�� k�1b��[R�
��Ÿ>�l�A�xyǧ�y:@��[o�|�o�����[L�Q�U%@��J���,�\x�|y|���Y�����:^�P�X��5�s��?*—��\p��g�g�$�嗯3��_���]�Z��
~���󼜚���x�3�9q5�{��I~�������>pg��/�;<7]߾�d����w���Tps���r�K"�38��X���]}�G����0���<����Y��&S��E��G^�w���ڏ���c��?��A��ki&�s�+Cג��=匉M�V��y>����X&B
p3��n�d���GÇ#�`%EZ�\q�[�3��O�|Ѷ�#zf�߱�=&$�������#}�D��GU�7{�ɪ8s�'�tU�(筵Tp����#��0��J?J+{����K,�L��)@&/��~���o��8)q��ɐ��ZKս���T7,��A)F�lA��raDӏY
�ؔ�`��")�Fx(!X��]õ{D#U���i6mH]:�ZҶ���D~F8�v#��)M�w�b������$������n��qE�ܐ7�Ө��Ut
oN�8ۆl�WT)�p�WJl�aQ���.��h�6uӉҩ�b��fFC�DyCk�W:pMCUq��n�N�
��C6eϼ;�[M�K�^W�פם4Б_��æ�)r���	3;��,�K����45��;j��*�!>��R��ҔCM+��V[*mM!un�.�D����q֡0O'�|�뉈���9�̸U�(�2R�W$���8����7%�K;�����e�
��Z�r��<UV�����^1/{�1���L�%�\�0�d�'�/���Y�y��3{�d�"Z�.J	u(���9�K^�Ę37_�lA����,zbs.���06rU�����2R�6�t��#��3�� }�C��]z(�_a%*"M����&�>6?�QF�����yf0�3�����
ư=�ˋ7�i�'x�|�P��.K�-��`����'���+�9�g)���C�R�����t�I���x�n"W��b�V�_��mf?���>IQ1狧���,{�e��'�A��B�|E�Y�G��Y�R7��"=L��aФ�@�>
��!�'�B���w�Du�`���HuÃ(�
�R�_Lֲ%�I��Зg�A�'���nT!+t��Iw:��N�^���e:���v�&d����`��p�ZX��7�r�UӴ�_�����$l��-d
-���4��ˎo8���$��}|�J
�6
�S���8�[��3VRVV��6��m�Q쟞��,�&�!M�x��*M�S�[C����Yo�nj�F&��y��p,Ǯ��W��Vr��K�o��C��
V��ٍꕩ�a�,�@΋���׭'!���rܫi�M�Go�Ar��0q9��
�)��	N�Pl�1�g�'����59'U"�ݨ�dt͸��U=�Ԧh�������3p^�ww�(\m�7w�P�F�ga�������Fb�Ρ�ɭ{XL(OP�=.��,�E�uA�å�L�}���� w��`Da�����W�D�laM�3�O
�`��㉁��ZJ4Pшr�p�؅A�G"��;r����G�,T�.�XD?񧕇�;��bCv�UAT�N9C0p�c@jG�X1�ppRY:��B�|�7���s�GǤ6��tJ��sA�f$�w>�v4����z��O����^�DD@��`GR4�<��	�	�c�Z9Zg*�T��>�t��w#��d-�X���Gڍ�,vmbv�F�T����jۅj�fǎjl�xS1��Z�&ir�Q�&�9U֩�d`��.P�@���О�n��h�}(�TXOu��[;C!QUp�A4>�L9
;ϑt�QT`�����|�>c��S+�Y�lm�C��L�nxS����Yz�^�y>��I,��t�Y<�s��O���zz6���ݦ5�w/��f&uu����k���k������2�׵#ݱ٭V�݆0Σ�}�5��76\j2eͪ�a�W�A	:ȸ)����S;9�'��(���0����'vn����#�"����ʗe�GF�]:��s�O�����Xc^e�s`t%~9z�OoF�ș���,\��P�k��Ɲ��2_@^�DgɅ�΍�?#���۫�9�9�ph�@�n�fp��M�A!�L�F�E��Fn�
w���{ܢ�۷%��-i���_q3��{�Q�ĉ��vA���z�b���#��d���q1�Ph�"�Hn�Q)�B�G�O+�"0RD@�P���\mf&�L�/�C���Ƿs�3�(�0�`�(�p
ڋ/u2�R� ,�;�r.���_������:f����=�0���%K�Dj?�l�(�`�hݠ�H�W�)^��uU��Q1H��V�_����d���B��&��MZ�KI�b�]���^�z����go���O�X:������7B'G����ٵ�c�@�0j��E���i�:�C̓wĊ��NT��TN϶iL�4>M�)y� ��bHH�n�At���z��.T���{�)�a4m_.^t%'t@�þ���;,\q3=f�-�U^�@���d�ҢJ�u��j�~�����$�m@L�2����Vm��m�J��E�х�ag:9�NF#{8i��L�V4\�4�p�0M'���v����8߀��Bd��a� gt������EP�K�, b`g�	�5D�ʁ)���Й{v\xom��bp�	����P�A�Z��'�Z�E��%�(��7\��n^�$hꉹ��G�F0g�W #���\r
pᣗ�B/�6|��R�OR���\7�}R�0ץ��^wv�J�uA����Mқ�f��C�M`��x��J=C�q>�2�doK��9_�v=f��F� Ml�o� W�� nSm�xe�������a�G�M�Nʏ�Rğ(?�
'� (#[w"�,�E�I ��?�s��*�|b��7NP2�2­0�nM#��~�mG�.%O��
�NB��as(q 6 �I|�F�K�w
b�:��V����;�z8�M��
�)EvK'�F5��Ѫ2����z�l܎�U�D� ����n�&�ϖ�u�";��+oJ��<;RH�\�`���̒����p���#T�P���켥�k�
dMGi�r��E�'ZVU��Nl��Q�!�5�e*,Q+�8^�$6f:'<�ݎ���@�X�@	O--�dº�eR�(����p� q����n���n�mE�ӫyÞ���ˏ�v�'\΅=�4#�û]�EX,v�bY��}��&��EW���}��C�5�+L�ơ�q���n
i,�z>G�'j�ؒԱ������|<�C�B�蚈QH��,"�#au|n�u����v�S�m���i���Y���fJ��P]����
��u#~7�.��p�`	���{���s(%�ۖ�p��|4S���2�[���ر���em�U�Y�sT�%wR���ioi�~��̡6��ï�ù���<�B��p^Z0)W j��BY���}�l�G����i�D���SR�T��M(���Iw��~T2h�)o"~�����p�p����Xy�G/�tUA(�_	���y�qvs��#\�*�R�1�G�|
h����dט~���V#��7Ţ��쏳������i4V�G��V8(�t7������<���UȒj63e���V�5���h����l�A�*���K��<QŘ�\�I�-�jiUX�h��n�
�/$�\E��w#]�5qaN��1��2즷E���s��\uz�D�n�az�
�0��O��:48d�MW�帑��J����V�H8V�FV���&���B��Q_��kHR�DC�֔�x�<m$���b�׫�R12�UϺ��U�0}�QMk�t�n��+1�J�����?2�@_L�$%ڧ��}E���x�IYX�v���q;)5W�
תh+5>�%��!Bn[g���;u��P ��i�¦̮�G㏥��Ѣ�<��8��n88o	yG2�����n���H4���o�
m�@��?>�X���eq��HW����!���G�F^T��gU
���}�j���
Gx_.@
)��mKQ78Z
�e�$�2\V�8����z��0=\���f�������7|�W�h�剞��1=�']��9�
}*�]A9ʚf
����'+�lQar��_Re�*��DF��t��(�u@
�5�
�	���_�<X�
	I^��G|Б�_H��Vغ�bZQ4%��Y�*Y)��G�-��+a��-U�HtF�����Ք��M>j88Cupp�J4H&����U��Al�l��p�L�:i+5�m1���+�[8�JG�R�(0�B�i�ZiUb�|��(�tܛeJ�7���q�VKf�4\ٞl��$҅ij�P�w�#����>jI�C�U��ʲ�T���V@zOQ��t�F�*^���ZX'L�^v-�+߯��s:����M�Ӏ��m}�[�B�90�o\t'�G
���\4{"ݜ��W6�Z��L���dt��G�q����ҝ>o�9�&Aw�G�D�G�|��?��B|�G��(d3��(��>x�o���ay0b�FҦR�0��q�#�!D*�~�9���2SԥmUd/�B��s��A��b�@M�n9���<��Z��l7����p�����S�����R���i���iO�`�f��,�bv�@���:`��-^��
(�8��TY����Qf���>�6R�{1Ko�K�E k�߇�JH7��e+=�@$��W��}"��%�]��z��W@FVL��n�!(-TfFfL������&~�T���
���ˮ�A�#�$1&W�q,x�m��֘��1�X>���8�hp%�߬�f�Q2��B�~�[bt�hC��"9YHIyY"&�!/ŃJ��Jp��*ѽ\z�TE)� �3����*�H�NFl��,z�I�!�_Ȩi�k�����X��f|3�a�
WLeEE(̺�ɥ4��X��6�$�I�v����U��Y��>f��q���$2x��]T�hOm:��K��⻵qk��5�۱���(A�蟢-�+��T�Rq2�~��+(�i�i�!�Iw��\��&Pc�H���)��I�����I��Y�]�lT�dތgU�
���t�=�Ѵq1`ǹ���N��*u7����G�!�V�,IEVjn`��׈���~k�+T�^��|k4�@؆h�%귳zpp�T+��	yP��|G��W�X�3:��P�*�E��WAy$����*�]����<U[7���QH�^d�F}�����6�y���5�pÛ�>R��G�cY��71W�Sq�j��z
L����&?���Y�8�
,a�$	��c�ڀ��)��Q��:}FI1�"bv�9��ͯ|�w7w����E����qGe
�p�
���&n�v#�
�MD�ܘ��:J�y9��T
R�0A�gJ<˘w��P�7^��`&���+\9�a����h�6Y9=��sE���O�S1^@�$2�`���2����`'��%N�4����7�<ʥ���N
���'+�Ց8D��X7*"��Su�X2���_����ٽ\!�/+:&8ں���d��g��P��d�K���#X"���t$��r��	jNYEJbiEa�S0j s_wz��V��3
�
��t
�w��Gd����(�Q}}g��h��u�s.��2��I����E�č�ܚ�
�|5
Eֽ��pZu;
��th�Z��
��d66'�
J"�$�4��0NG@�5�]����'A��ݢ�ҝu����D�Ez7gvA�M���D�
+���p>���xt$���
����kE̠V>xk��#ܷ,�T���Eqm�.�?e]��'�}���S�R�D���2rg���\�HA�ʾt�q�&�8-��_�+	]��P>,��i)p������a����*���_0�^��z@
�x��)�	��@�J	�E�("
:��A�[�"�¹0v��l{Ω>�W'��W��:3Ψ{v?�}��}���gs7���y�7�Pc9h�vl�f)��A1�J�x ��V{�A�=ưሇ���3Q�2�29�g� "���
8!CQ=�*��#�
$o�N���B�?��?"�9g�K�<��p3��3$j�aB_.�х3n�T0�5�8��
����7E�
��(��<O��Xh�A.zt�)��B�T��"b�+6�WP$�
���11�O>�*͐@�)\Y2�%s�����|5ydw[k(V��$ۭ�G�
�[}V5fM�F�Էb,�뵈U��Da�׆T�]I�p�S*?B%�j?�1�[���o-3߭���v6QD�
�
�Ih�'�(3)R��h|�c9@EH�O�Ck��3����7���i�sQ��#�Quq��'2��h����K��`��l*�q)�.ʷ[�$X��:�����_�����
�O�q�|ə�r�`�e�iA��|n�TP|93@�nԥ��|Dl�0��B�G>>n�mj��ŵ�FSٜ���*^w�^{� ����gg����k�w[~}t�����c��y�4�]w��E���z�̿ȧLF��39S"�K���F�d���=��t��C|G��P82��J>�j�Tě��t���T�(�|ҟ����hk�γ�`�H�b-.�.j��5#����,`B5ph�A���e�7�H�y�竲�($`	m �xS���tꈃ��O�M7l�����$�����$�_*�X�`
*+b�V�H��>�[��IO���T	w=&��E"���
pU=�aͺc�����\�);�����a5k��1L"@�Y��f����HT��	����e09����f��8�J3.)B`3�8R��EGV�k�B���N�
pV�O�e��cV%�(��r+�j�Ic՝lk!��a�W��딐t�bM����'�����mS$n��h�ʐݷku� c�R��f\�L�	g�[/��E�Zt�ZQ����0�8���z�}�"c�:���c˖����}�^o4�e܃�]>|��C�ٓ,��.�œ�6���c����H��!D�^�o��(M=�,���n�����M8��0�lQN0o�Ex�.��o���,C`�j���巿GʓN2OX}\,{s?�3�&[�S��!5l����,�i�5U���7-g�2m*�F$�pl�CW4�p�xPנ�g�nX�ք�=�|w�%�as,S�"�9�tp<�Gq����Q1��ϻT��=B6f�ɢ�B؂z����-*T�5�=X��A�5�7���U�K��mW6���t�)M��Q1�����6D��2�)�(~��Oc�F��2@�����W4����T����4�T+��GU<m��žf�
��ь�M��:��bE�`B�0�F�*)�� a[�j`K����x�ݕC�m�9��_���R�?��FK8ۦ�OYVs7�����-M��ߔȻ�2�	��E3�5$��y��`?�=����V6��d�,GW�MP�!F�CKeh�l��eq���(�>�	��Ֆ����ڏ���N��q����g�G��Mլ�kR�V>1�S�D��Y�;d<���qd�^H���J��ƻ��m�ǵviץ鏪������߯���v�xp���j#��㕕��R�)�;Y̌Q�ta�7��F�9�.(T�>d���o_ߠ�]�5�f��f�p��'�E]|щ�.w��Y�7���m��d`����k:s6=b������j�9�����D��<�h%��֝���>��Ԛҽ��Йa0�����,�� ��.�Ƶ�A-��rM9����)G7������ퟯCt���裥z��k�I��1̔�����L?
���&Z{�1��h0�Xuh��p�]�8⪐HG�H�7�R��T�D���޽��]+���+lީ�+���J��KE��,��a%�6��Q�5p���
�f��En��3�(�R��Y�rF�	�}q83�ZB��1�Us6e'�bO��zm3��FӤl�� ��m�ڝ�r�0	}P ����u t��K/�xW�
b>�v5���k�iB�Q��4��@h�lh���V̕����uW+T�X����P����9���tÕ���b3l��t:�bYYw����'·�1�^\�h��;�z�x@Rr?X��R�˩J��I�c�斮�X�e>�OC*q��G��Q$P�����l�8	<R˒�ޮ�{xwu=^���Y���#�{���l�
Pd1J�⇣pf�~�rȉE��-��	㓷�����M�2�	���b��y1���ڤ6��k��0ǽ�=}��	\�3�.$@�����~s2�G�����V2m�fuQ���ye��N5�����u��45A��&/�"�ew���u��H�'3�T�>��qΔA�OD~�L}��_$e� B�(���ytӒ�Ul�Q�t�|�k#d�3x�(
s����p�����B-s��/������초xxA��¯�؉z�9�A1̟iy������\oP�(�2�G�>�р
����7��#��W�#�O�C�����(���wT�^�F�0M|�M��Džԃ..�03'��Z|d�̹��f��>��f>�[
s&h�;םNy�����w�E��Z22�,	 AΑI�;)��Yt�Z.F8�δ��0�\��C(γ���.<�di̘�[�ݴ~�͢]�9�ܳ}z
��1T��`��j5��̃ɍ���k�-5↠�p�x�OJ����J+���<�x��"��0����^�gg�?gT�V%sv+��h3�-��(T�s�>^�밶���>n�L"A��M��	���].I�6=�$����8T���z�t.3Q>���z�䬮(���C]kQۂ7�����'��b�֜�*�8�����[�ƴ&v�W�O�mw4��"��֝M�ɛ�E�����	*,>��%�\�ѫ��Y,j�W4������K\6�1�P�Αg5ɢd��+6ٓ|�ѷ���=�a��q��������/|���軉��ٳb��R�s<�K��h��D���Q�Kp#�1,��n�B�è��]t(�NR�@CK� `8�:J�����ʖ�3��̝�.Il%r����=Al��h'��&�Qs�i	�j
\P�]�k�f	S�?����zT.�p�.8=�S�?R�
����*�h*2�����3 �H)�+oodjb^�`�m���)I�D�zf�u��E�	+ac�[�k��p;�S�I@��MXQJO��IT��L��g��U1��/A�(e�A/��T��)�V����5�۶O�֤�4�TX��u���@-�#�rC��>LL*���	�8x@�*�f��Qt�R|�[v�j���+�(g�h֌�ʝe�-Z�j��Ѕ[�X�X�[���nV��V�-�.V}�/��P
���^	M�Ӄ���2������<w�s-x~��m��p'�#��H�ņ��|��[��+^N@�	���\�EwR��;y�|�}���}��=�[[�J����_�ܗ��Mp��o#����ˤ�c�3��/_���W�4C3�u�݋P�w��VM��R��.��J%+��Z��Y�Sivy1ɻO�x�L}���gs7��Xl>o�;��V�0����{s��GPC@��:&��,!�٣�d����W��9{H��~'��@!�&\)��1X�^Y.��z�0g�9l�3]Q.u��#P�j��'�C�x�2�M�������!��7Y�b�F�@�4PU�T�fj�!A�$J3~�S�l�J�6�*�{^���ϕrj� LMi������������9¶U$B�r�quQ�,;|`�*��fPwȫ�b6D"��$��%� ,�Z[�ʑq��q��i$a�n���E�s;
��p͌���Pc����|��%���:��L�Q��-d�qi	+�{��9��nrCe'&�3�$�CV2�#`kebs��V�J0%��k۵��Rx��-�xM���nn5D��=7͖e
�R�I>;l��z}֗��j�s$O|X��4�a��՘����ۥ�t�^c	/�L�U��;}�4|�^6�	Hjs��JѦr>��pP^fk;�9��n��z����~�t�i3�RK�z���MB��X��*ߔ��y ��XB�ω���'߆��s��i䁻�*�ClEi+�ܹ`�����5~\8fDh�ј|�э��h�����3��HE���#g��u�v�s���������Pk�'SB��a�.�GX0��9��ׄ7ڲ7��4��D^�Ye�O!PA堷�S�\��\��7agk��<��:񌡈A�}R�(I�I��D6L��D7J��L��Ԥ��)xTEeH�3e�M��ZzȪ�U8�"�Yn��DLQ�W0�Vt���țP�
!�5��vE�{���~��`E)$'ԵK
3����N�2nZn�ر�[����.C��u�(蕖�kE�0]"��0y�v�����d��SDٸk9|^�-jM��i
�� ����H��u����	�����h/��#�%)����V�$NNSi��q�x�h�զ��<?G���g��٨jU�Z�$CL#�iPg�8b񟤁0�<��'ޞ�y�I��{c����e��h3٬jT�=2�I������{�㗨_�4x{>X��s0��zzm�쇧3k��m�)�0�x���稱Bb����e;���	c0'O��MD��&Sn%�I���`;;=��_���7g�
,�P���-�ܘ)5}}�N\���X���±��I����\�Rdǟ�T��R�kw$o�9��a"��eu�좂���H��@է"���}wT�������U�'E�Mt��0����6�s�J�dP�1Ц"�Z�!�#��BB��D�mj�u�;�X�r����6�tj�R|ɲ�c4����j)m���^�{���b�Tvq]���N�]�x��c��K���>��}V$A���ܜb�*Ċ�[z��X\qk�j�
f�����׭ �.��J�z�-�Zd���vE9�8�	nkq��Y�3r)��-bxͬ}\t�Xk�J��9M
v*��Y)F�a��C�(4�..��X3s�jC�:Xu_����J7�:s�`����TSMZ��ib9�"g�$�=Ce�I�Eb��۰�*
�81�$��|�`�,����55#���*�֥��?{i�]�%�Ń�M(��t��u[�nMp6�/�c�^��뫱��핺�I�&����R�S�B��3'0��n��V��O������ٵ�����o�<��j{���z�7��c��}�r�Z�gKPCF�5��g�gi+��W_�i��KTW�,_ɎL�����[n���H��.���Z���]ML�H�g�7�/~�э0�3����!"q����/ݞ�5^�ǜ>�΁4�Da
ٚVbn�#�s�:��(�LJ
�?h�$�q�\RI<�ox?CڔMd��I���^ k>s^�9`��f���W�ռ�'����S
�#��F�|��2��U�B_�p���J�F՛sp�z�������x	yfΆF��~1��ޔ��}<�R�K��_\� ����X�yߝV@l��ykzۘ��廄56�񚻤d��^�d�FV���tq��h�k��Gze`�����!��Lk�H�q�˝�jb�G
\�S��d7�mh(����Y�u�^��>��9�d��g��fg��a]�[�d�5���%c��PM���˓�E�o�@��z�͗��H�,�!�F[�s\�;��<�E:s�%M�7�f4�V����(�\�ex���?w��MQ]����y��*Q-w�Q�A�5t&���1��=��N-��ud��fmm!~ۄ>=�W]3ﯱ�Q������v�7\���=��ax�����#���|x��t���\�=�AV�&�N6�D�Y�z4I��*���}�ퟝ��)"r^��d�rY]�D���1j�f�xsS~���xY_�:ٌ;\v�U�쓩O��a��s�I���3��H��:q���5K��Qe8���c˰�֡­'�_E���[A����.6!΁Q�ސ;P�Qtñ�S�b����AqP��"�#��
�L�?�a��,�S��Pf�i%��)3�
]Q�[�n���Ɯf�B#S��A�AN�$ت
��(4�1��֣txp+��@s��L�El�ab�Ր�[�̖;᭿�:����<��O:�*�3�j�����c���V�{�G
�vQ6�k��1�hi�\s>��+S�ZM���3�*M�m�K�]Me�1r#�ذ7��c�H�W�\�!^Nvc�O�lܑv�	�XdH�t�3r��2�V� ae�#�%7~#��c8�
{*9�412�n�V:E۠�tǬo���쿘ҭLl���YrQ4l,x�QM���y�Ԏ[(�{$*8]�Y'Z�r��X��5`2����pEԨ�w�0�S�	ai<�T�y���P�����0iB���aw�4_�8��r0�����w��x������L��$�"�$�-��X����e~��ϟXi��^Ҡ�
*��o��e+��f���2�Zpi���㼉�e�Ic==1��ʧ�5�����c�#u�%s�9�<k���X�:�����=6�e�Ŕ���Ι��U���F&��*���$�ހ�<[�eb�:��u
+Pћ���������)��'(��+D*3,j$��&�ף��7�ᄯ�?<����=�
L�EJ

DQj)[�So��DZ�(V�g6���n�£�n��h6���|�F(�}���b�&�zm߿=�mC��<�9���uA��������@��9l3�{G2ЄÜ���M#��^�X�1X�<8����b�t�Gvf_�,�=�@���p?$�iP�:�,��w�l�V�rw��Xj=��1�1���
.t(x]l��xe�P����:�Y�rs�O�{��/2�D�ԊQ�%�b7S���b.Y����f6@[QL"ȑ�E}0��S�LeȺt�H�f�l�Z��A$��%n��mk��d������6�_��C�$�'�ʻ�{���
,�B��0d���7�O��t����\!�z��w�>�O^f^d��Cu�§1�4U�D,���A$%^z���U�*1�_ �T9��r~�.֝�ٖK�������n��§Z��2���a=k�<Α>V����s��"��2���&S���!�2�{A�+=�-��D)�Ns�u�ٓ����|(j�SYJ�U�v�
��S� �䱾Q�aP���ʇp�5���؇����0���u�����~Z�i(ȥ|п9_�0�����c#��"�Be&�g�7"v�hD�
*��I��9��0�U��GC��L/��`�5���_��_�!�v�30�|��oo�'�wH1BǙl6�=�� t��;v���t����Fy��5������p�r@�[	���[vZ�֬`14��5�̊��A�R� ��v	�U������f&wCc�>)L+A��|;gfK>p��2(i��;�r�n�E<K�L�?"��Z'��X)ܠ�b���eO+./S2�?1"AC�7�����(�F�Ct�OîCؘ:jx8��DG��NDC�5X�+@��G���Q0�X�2!��O�
��
��I�0�a������~sݞ��zw\{�_\߿K]��_�>�+ֹ�ӂO:J2
L���'߬pݡ�&�IG����իH��*f�Z�Y��� cr���x�$~=M)UvY��٣�~��������™�M�7�ѱ�/:��2Y:uL���V�2GM��
K7Q�#(8�T5b�:�
"s^i�G`�/v	8����J��Y��#�f_T��MuM/B��P��ak[����S��>FBuۯ7PåF�C,���f…��	8�H��'J2*)5e�e��8�@�T)�s1#�
Rq��[�@��~
���K_L�0��ʸQ�]Y�!!���oa��&�!f]��o8���qm���GЋ���F�V�G�C.�����\"�U�#��U*��SŰ�LkA2���k�P��QcL�<@8�D:;���".��'bCײ�$|g���#-��֔�7U�/���l1fo�J߲ΊI���<oԜC�@&��|�%�NcIp㛑!� _S�&0�!t�ޜ�s�n��hFq�/���>x)���X ^w�(=��o����;P^=����T5́�S�iԓ�W>؂�1k�����u��_C���$W�v_|9�^l��T���t�4���Bk����i,N����ͫ8bTa�W�"X��d�b�ʩ�4.w���J��@��D+Sϼ�#��H�p{V����h8�H����Ɯ��F��v�̡�Hǰ������
���&��C(��}�	0�ps�A�`I�K��k��8i<�`(A�g	�8+͕@�W��A� 3
�Qƶ�V��xh�j�8������v쉼��������>S,E�)z�<L��ѳ�5dX��	(�%T�
��q�Ht	���R��;��.��O=���V�����
l��� \MP�8T���\b!�yg�7I��S�
/���7�3�r(����t��by�:E:�
aF�`h�)F���;�z'�p5��s��5vʁ�'�d鬝xٹ8צ&
����guܹ��8}l�ɘ�IT�Na�U��t�9�qm�F�>rQ�X>M��k��p���li�$��>���Z�d+Ҧ6�Y�%4��֊�\�Ϟ;�!�a'tY����5"b�")@�>��m̜��.��F~\L���3��N�ƛڻ9�M�����ݽ����_>|����ߜ|9��A��
�8�ZB���+�<���iک����NR�DJ�\Δ�>&�I�^`���x�n6C�fm�:�rt��]��a�-�z�2��<C�l�+��a:GK^�<�������x��^*š!wafHy�+�2I�t��Ls��(=��q��b�������oo\]~n�T��O�-
���5-���g��̈́pƃH&5�W�S_�Q��y�HDS0,q��-/�۸�oi�����`F/�nnɪ�����b���k(�d�d� p=;hvJ��d���p��υ6�k�V�
$1�Nʆt̍��I�4eҽ��;B�r:�Z��V��|.KP�&�"�:KXE���X B8��$�9��0s��eF�4�+�W��� �\�f�?��PdD�.��=��Ƚ���Pw��9��T��ہ_.A@�N�B��c
O���{&����E�M��\�l��<��	]j��m ����8���Qjs/��>��Dҵ*�<� ���Ac��h1�[,�ڊ^W���~�4m�n(ygݞ��WpTs�
��a����]x�����o'�m�H�����_���_?���I1����yҦKDY�_�v���Ҹ��T��'m0�!��@�U��]K��i�
~��TFDױ���tx��O�2�?C3ul����_G�Ա�#�9&V:a@D:ME4GW�=��e�ڛ$����hE5'��Q��.��讨$��!�a�,vz��x�!�V���9��l�*�!���^Fn�V\U��9p
M8q�3���#�܌*�9�/
�uB�7@���FqS�A�D���o�l�Tk����՜�7^yX���W�g�׷��
xC'��j2�D?D�����"#5[t�M�-��`�&�"��RF����j%
|��سG7�p��?��+f��9�Z\�Q����Tr��8f�Z����r�i�|"�.�qr$nV	>�8!�g�Ao�k��p��` ���T�)���X��$���g��h�B�ҷ��.��^�N)�����_L�lb�i��ؔRiSB��3�	
�*o�}��L���M�%G�*6�jÿ����d��E5�fN1:����gʀ�q͔���j����Ǭ�6nwUM�q�r0Q�ߢ�]��7p~�e3fhà�x���ABql���W����m�����E��h�0���`_������-���Kx����Q�s�YEH5K��i�kJ����ӭL�>k�Է�����hFM8l#\9J4��s|����ۨ��c1Ũ�lA�ǼJ�У��p�i�:j�R���Sĺ������$D��:"��C�W8�Z����ЇY�gZ�s7
��
i05QJ6Ŕ�Y��I�/�&$*Լqb����h5�M���ߛs"y�����v�9oH=Z��#I��HkY���Q?
�~�S�bި>�q�Q�T#�ݟ&eLn����	�����`���ն��_���2�k��J��M�w@]����dӌN��Rw��
�:�huRqU�c�`R����ޤ�{܎{@ز����b���ݖ酵I��l�h�K�cwXtM4<g`K2�If�.���t�V���l@��9;s��i9��0%my��X�"�)�$�Km�3�6ʣ�9T�Cޚd�9�������= �:��R�-����(�	g�^+��ތ��
�D\X03�a,�i����dpG�jp/�i�q��	�|r��13�������wW���_Qn>���K�$4w�ҥ�Zʶq�	�e�O�Q���'/���XXD��F�y��UtNf�f'��������V�>��n��\�=��[q�<��b�9�D��Ê��t3�T�K9��S�qd}�>��L�숭�F``v�A�4�i����w����S�%�ҕ���k==�^��O��	Z�/Y36M6_���
ɶ�J���Csݫ�j�߯�e�ej˕X��or����9������l�Ύ�o
r�օ<���O�ńݒ�=�5C�@��E�����l�ݠIz���nmC�d-B4�S����L��ņ�u�7���ʹ)��GX�r���i"��ح`֕&�:s�Řfł�5UQ�dc,��N��pW�PH����0��F�PN�G�*�MDc�
���PR�ăK���S�p��/��[0F#_�5}f�D�S�DRv6Nee�v�G�ƾݴ�|��+�#�b����m2�nCJ
녦��ܰ�|Nh��F�9�tA�6X�%�!���N����s�:B�8
,�Z�%^
Ƽ	�R�
7;x��1w��e�G��p�ڼ}�6�����[p��p
�X=RMYgb-�Ԧ�f�_BaeO2��������8C}_�#S�ӘJ�t	�n��"�a�q�4�
�ϧ�U��gz�+}s�)�y���|o"�92щgZM7ǩl
���{�����T�6f4qJ��G�Tꔙ��4K�N��7�b^��i���m(O���N�e1C���M���2{
Z�A��H
�
!}�DJ�|.R���vV�ʬ�:IJw��>�m�-�L�9�}�o�H|��~կ�pƤ)��JU
�>#�B�)�[��������3��M!ǣ*�xC�5y>H�q-
�ԋeI
�TI�����F���:m<+2E^�*��L�m�v�3��rE��Ӿ�drJ"D��h^����J>�J�����`�߿�/�xH�Z�	-՝�]�b�muf���2 a����i�D<3�I
h��]L�c9���!�
�@�Jgi�ˌ�>�Vȗ���r'�ܰPyP�
u�un�E�t[n���j�[�M�;~M>�$�j�����`@?��܍	`D��W͘�)_@0j�hH�1����B�=��OxZ)�k4��G�πN�w���{&罯��>l�����z��Շ��Q�3]2I�C�yy���bI��dRN�V�>Ur�eFj�w�rM�8�9�aH�x���DX�_�LE�#�<_� ��1�گ�vZlu�5K�!�9���8���Ƒ�2�H�C��Tx���R���AЁ�&�:�NgM�T;c���c�M.�����o}#�5꘬��R"x�v�#����QpsS�0�L�U?g�C������:��1����T�ҿ�)�]e`T����{�p8�Wף�L|ԬT��L����DB6�iE/@��3a�w��3���b��	Xv�[.�f[�t��5�*�d:Q�.+H3An��p��b�R�Z3��jِi�$�ΕР��[�X5�dq+�v���ik�tԒ�7�j2e����Y��2X�o��n��-s.���"��Y+�?��&���+(E�i������?�y:�`�l�gh4���.mr�\1�C<���e���	��Z��wF�Aa�P���_t&P���
��X�y�혌�F57�����P���4���8d�=*RcB�^��B��
_����J*� s�x��
�}j)�j`��mK��13�0_�h��v������~5�B�yv��U��4v�^�Ը�8y��-+�U���@��a#�.r��$�c�<��D�ͥEt��>�IV�>�?+S��g�zě����|��jt��6��CE�}�#t�+։(s��ց<�e�i�3\��b_��)\��p�'�8�V���|���\�#tx�F/E���0�	�٠��S��iB�F�/���G�_�]�.1'"+���0�"�����0��M<"O2s��{v�Oq��$vxc�[1R�R��a�%��+)�l�I9���U{6�G�M�"���oˮg���e�λ	�p��Ҿ��N�Mʕ[]b4���po0���b�fl+�$S���i���l��Ŵ�z�����
�����<��-wW4�eF���l��f)��,�|'QxK3����1B�L2#��;1�mj�n�8'��?�n=:�HAx���~d���̀L��[�5��`wU�&|��VLZhcT"�Y�	ؤ?�zy�x|[{m�!ʘ<zo�4����R�K��7�w�Ҥl`xqw��
R��
	��|�M��ھf��+��U;s����tI��|B����>l/=��ز�a�Ln�/g�ͯ~�1p��ٻe5�o=�0�\��z�i'��S���Grx���:��?����9���p6ύ�t,H!�dw����9�<����F1�>�d1F�E6�?m�B]nhc�A
���ԺY<��^�S�\�)U���6B(��(Vr�X2"	�������9�xH���s��Q�j�6�5D�w<��|�/h �)HS,���b{�μ
,��m�wkg��o
�'���@%�ro���ts7�����X,$��(!u�-HPCj��c�����߾e�l,�s%6:�-�N-��G;O��n6�p=d�\��C�m-gC2�4Z�B2[��-����?:�̔03��F�xK����+�fx�L��ն�4��Z��^�:���l��'����S&-�2��ۑa�٦䤉�־��z�H*����;������=u�z���N�D�\��q�Ah�h�		t؀���p��
&ʦR�˵BN���
���#u���m N��Q��W��U�d@ 	8Ѝ��oۅ��(����{n�mf4�#�ܻ��s~�o ϸ]��n�v��blE��*����m�����hx��xL=<E�R�
�y���XZ���aS�EQ�'Z�RJ�_��[�`�\�1�љ�FE������։-�<]�r����F'M����l9��	�LI�%�P����y�9q?4#��e���%vbb�`8D�DZ�HN�#��x���4@'�)�ٗ���#p��R��w���Y���R(A�("u5�8�O�U�d
a�3
�
`cW=λ���%�>���7��Y5��I?^��Y��Ež��Y�E�B�R叞��U[2��Ü�i�n?���n�۷ok�'V9��y9ZO-��H^�u0����@4�I��ԐD`E*��*����:E��q�P�e-�9.V�dSIk��qp��^���"�}X��4��z����ըb��&��ԶUo�����F���-fQw��ɧPit&S����"�[�]���00�c0^
zY�g�q.�q@��Z�p�p�IC,��_�q�.�����W�7�<�R$$�̥�V�ܦJ��
k��Rh��%^Vkt'�7���2�KJ��v����a�tN�(�n[�= q�~�'�=������8�o?��xW�^>̇Px��I91��/��g�V��oOZ$�mua�|i%�(C+ e���S�_}rDz,�����m>��&:���(���QQDs,QvX������w��q�Y�g�� a��h���C���`��|����!މ�Y$=&�*KZQ
�XM{ܹ��pR�����4����8`��G�2o����
���(v�ǗX�Խ�Lӫɯ�5�餫�Y�a���̶Z�X���Tdr�˩�]�<0�N�U���:�Q��L�4�T�+�7N���2����)�62��߯��`X��L�i��&���6%�E���S�(�~�V.�Wt�&��\��>���4�W@�դ�5epy�H3�F�!w��);g2Ny0Sn�`K�GQk��ΐ�bB����b�y�NHN�֙$I��}�L��fF��E+�h&w)�^N�w2=X⪝��l�';a����Ԉ�}����f�HG.��6S���]a4��	t|~�<l)��\�i�@�7A�&=�� �1,Ċg�Č�j~��ބ:B��[�ay���9���j��U�f̞"����ju��ns�y�@��$1����=~�7�q"���H-R�B�i�?y��~�go(�'~�J���ۊ�I��:���ʹΗxw��L%��k�>I�F����Tu�C?fUQ3_�R�Ә���\�i��!��eoǀ̾V�s�h�D&7!�	[�“!����Ԧ�!�ant$�a�p�\ի���>�3V�e4T{d#+��GZ0�5KC���F�k!&7��?��7J�r��Q+{޹����*�ݘ��0�Z.yU;�٘�ȃ|��*I`S-�A͉�*�B�kf�����bpμ>�\۷d����E�z����c�ni��׵N'��5��E�cw��
qL^c��jZ�8��G��#0[^HY��z*9h���q�dU����.ı�O��y9�MDU�@�e�"
��M��m�ȇ�g9�R���a���|�PY3�Ld��',��e)����lk�}����a\3'S-���e/�L��t��i�k�%V�>m�&B�Ә*�" � $͚Op�Z1YCYRH�ԅm�	�
h�r3a/gc��6�K6�	�
�����Vj:��	��['�zG�#�96�*�^��>��������a<~�y�\a�Rf�,�,��Z+NR��U�4����o�aL9�Gќ<5���&Jsx�lr�OT3���n����Z�6ъ�&��d�/U������b���ɕH��I�_�j�x�:��`�d
Ze�|�LpI���[��zd�<Ѽ}�l���K�=���V��b�}���h3���5u���|Mh�Q��lL�m�ܫ��g��777�-�g8�g6p�JZ�V�����э]�ם	q�(�lw-AC�C;���3�܌n��d�u)^.NLʤ�.|����b;��1ϩZ�$2�@#>Nw���aH���� Ƭ��Q��9���D2
�䲪z'.�Īc\�e�a�u�\)� �,S��.&�&��e�̫��6L6�Й���C�Zz�7RI�T�o�l`ɴ����Yߟ�K����S�c�2���SP-~Y�����V
��E{��a
2�-��e�&OR�M�`�yń0�����;X0�&�nT���{��.d�.�]Pj��g���lQ��H�.�+��x�P���Ufz��dB+Ҝ�
��y�x��cZ��y����'�sg��^�|�ށ]�(�"P��?�;��V�(����+E�.\$�,"�
��HG�A	i!0�.�!��&aZf�B0f��,RpQI�B���of����y�d~e�x:���{ϹO<��qL���޼�o�����?��i�<�s�������_�`�'�k�@�VN�^"�L��5�Y�-�L�$um�8H^�H��f�w|��CĊ�S��A�c*Yf+iF���o;���e�nRL5
ylf�h���ݸ�5e�
�cFTmL�8R��F��UO!��V��.1�b\���}aHC'�I���p�.��Z�l�%t�,�ެ�0+�S�N�tW�,��մ<�.�}+��!�1�[2�e�U:0�meSx�q[�*v'3b�~��&ޓ��x1;*Qk"��o��t��h�?f;�F�ߛ���z�8��P&S�O�.fa�ҭ�n��Ers�}'��+�;��N�\���u�F �VY�	`j`'����!��E�B<u�CJV{,�O��[8�on�z�z6��vH�?[�����pU���d<��9��b�K��y$Ԫ�akI1k�fI�;L|�iB�C�Ȍ�}:���	h��$Z
��>�S�ѧ���~wf����U�q�)⨖��`p�뺻����y�z@Iw2�lѷ�K_)�S�<�q�Y+S�%������޳��D�@?���^~�-כ�����*6 �p�h��ֳ�8a�6��cr�}�fl�H5�|"QW���wT
2Iؐ����_�0/�G�IS�>��щ�1�RB�AO|?lC9�
]̧�
�P��J\��g
i��b���Z���+���M!`Ȱ./1�bF�h:rƣ���1GN�ј��5Y��yь�Y��T��$Uc���A��Fc��
�1�JѢ�Ō�S��7B�W��[V�Q�;]~;��iH"e,�C�������W��>sX�q�m.�p7�Ӛ�o%XS��\�!�f��sm�&�;L�����n�J��d3(�d�G�-;d5X��>��:l�fn?DNMꠦ����
���(����q�t���F?�ds)z��`�7Dq�K�j�]��%O$�xn�ŝ��S���Y�M��W
v~;�HhNZ*Q��!G�/	dY��T6?`�G����e0t�0MPL�~-��:��x���3J��}x�ŒK0a�CMph�[��*pax<@���l<��C$�&>���.`�Yu��no9����PC�2�gQ42�Bx[GN�]��Q�C S�
�_���`�n�x��tv�yg��w^�������U�H���S4�֡�K���l�������)�b
�Đ�4��O��>?JU�n��^h�̶�]����e�Q��s�4���$A��oNS
��6KH�)LiSZ��$��&S�b���I�ߨ��1Σ�ɑz:�3�Y���Gr+ȱ������5b��ƫ7�LC�
��=5��}nzc���9��$┵:�V�a��8d-ڂ��S���	�8y9��X���@P5�O��dor�&�kRϛ��x�Z��N�b���gFٻc�"��۴�s*{T��F;�׌~B7`�nj{�f'N�T�e���S��m"������dz�ʼ�I��?(�T�m�!$Qa���G��Oj	4F}��`��J�Vr�df��c����k��F�Ly�ܮ��zIƆ���w��Z.B�7_�}��T\�}_�<߻�ő�;�-m֑�,�>�Dڵ$'Z)
l0�q�\}D�!Nr<^tAO�H�e���u���
^��(�~w�;�Q:o3�������{P8�<����7����}�W�K�6蓔� > �����7�DF��x7sg�L�e����xi�bx�Fe�AV��#��U� ��&��:~���v��)VR�.��
6A�_���Ft�������)f�$Uʇ��lJڂ�x������s� �Ι�&���!XQh�Ew4ɖn�:1��6�6������+Q��KN8F�`<s5����1����1�{�h�Iը���>��>��1O;U)�����j�s����LƋk3����<˳��C��F�ot�.\pmt
HQ?m�;X/���i��"��-��z�&LYh��!��ub�r�.���ΝC��|	R�`�J�4T�H���ڜ�4T���irs9LQ���"����g:�s��F��4�Fk�-j����#����X_�E@PhAi�'�a�
&Z��^�+}|�f�(<�<������9��y��ɀ
��B��Z�T��,p�ú;,�Rdv�a��y�jM�v�dK�1$
��X��3G����(}�mX�f����[�қ��\&�P��>uo$s˦o��T��&�)��d��q5��.�ͤu�<��7-/�ɬ"$��;�H�>�8!�1~��ҽ,'��ky�X��Q�K#��{8��q�ͫx[���ܗ��G���-)����-�-�_�Ԥݷ��C��EWp 6"\ճ�x�����~e��aF��nx/�%iSͣE�'f|�u�h੧55B]��F:n�(��4�O4%`Y�B��P<l�)Lo�2�X���M����5�ۘ��&d�R���H(��t�r옒S���Y�����u/�sxh�$o��F7_M�B*��h-/+C�3?��7߻���f�⋛�� �kh�6��u9���X���*���>xv���p�P���5C�Y��h��"��)�S֌��L��g\���@}�n�};	��h�A����Q� ���s�f~
~/*��dʰ���	a,,�c����6,��N�B�q[��t�T�>a������p�+XCr�p�ɕh��r�.!���4�׾�|�w��>iJ�%6e�v�4xhOi�̜K����pGQșA����|J�%��d'��8��8���ͣ���idd�\��{�Hv\�TV��DҪ���@�:�%����=es������7�d�e,qT��@�|n��L�k�Ͷ�o�m*C��$RZ�e�K�-����%:��-L���tù��I<�C�,��xL�"^q�J��b�F?̬o����Ԣ��=1��D2��l��ς=�R=�Q=��2��rWT���&@Ū�E���e�77M~~�G����#��'�f�������8p5W[�̸�?�Ï?A͐-�Wm��+7I�`r*z�g22�Z]�zjo�6�/C��f����ŭ����?��?��a���~��ş���M�@hS,��D�v��q��6Xr��	�	���0x2Sf������&j��Qa�s{1�^��a(`(L�s�<rxC�h�JV������R$u+IfHC�yZ�Vc���%Ш�a[�f"R�ȋ�r�r�<Wa�pqУ�F�C��ÐL��U]�N�m�1,U���L:����[�``�c͌���$LL���Jڊ��5�t:��!UW�܀h����[<�yjc����*�3�ƭ�P�	��c���F}�:Hc�B >o����P#:*S�ȇ��Q�Kn��BG3�5��=�c꺾��������F�ģ�X��r<�[zy�d��ġ�w^E��u�=�I������ڡ��7�����?�H�M���X�!S0|XטK�=t	��Ќ'Ę���I$���G�xe�7d� �(���]�	0��H���7�b.dB?�$���N��	�!��s��䞺o82���2�����C��9����h��L�:=�U4�x���_�"Ϭ���6/+5��~iWk��j���ڒC�Z�԰�[���"e�Z�l�:�����_#��;&�~s�����n|l��S�z��J�V5U�RB�c�^�_�"n�<3G�䂶24RD5���>a���tz���o(�3V��y��I�>�MH<@[~@)|�Ul�3��(��ut'UH�� �Y&h�%v�)�i͔d���/B4����p�����5��%y�쳀���l����	�G�R�6�RډJ�ЕϠ����;v#
aP�Sv]�wr�"���~���{����f+
���f�*]��G��4()출IsIp��J�Ψ��VR+����T���<p���x)(H��>r�����mC���F�lY$�8t����?����m<�\��0�qZ�hq�>�<p�PV�I��/��-O��L����x�1q�0GcT�B�$��ghj��;N���s�=����FpÛp'VY��_qO��L\c&0�K�8:�qಲ�x�����^�1P��n��qRi�Mr��XC��P����\nndT�4+�
���@[f�c7̤���p��_-S�Z1�$�Z�H�{�_>�4F�f �)���T��B-\+��m!�:UT3��%�i^kz���q1��e�>#j�_�w~���ʻ�~�f���~��<[��x��v�
h��ˬY�rh2w`U(�Ί�c
�6cN,t��r�'����j��K͍P2'a�N����z]蘣lC(2��s�^�hz�w�
��-=/S�E�'�d4m׫G��3 繷_}�I#b�k�8�s�2"�K�q �-�@ˢ�n"e֧��{�D|u�W%�?e�L� ?jpx�T��I�,�qუL!
����*鈞��L�B�>��Q,�3��8�bRh|�Dw���ϧ���jڰ�ȱ�A&L5ńb:��Q)�o�Fm}��^	`�-
���s) 1BK�*��:/������g��g"���K�f�d)�@��a�(2F����w��fj�D�
����$�2pßL��'X��V���~����@Ӏ&�!���p���+i2�Jb�@@JLⰰ%��Z6|\fd��v�H[h�q�Z����+���:��:�}�lN�90�
5�
������z�i�x�c���E�Hs�\p�Q	�
��
�)(􋚜@y�B����(�n�Y�)Oɟl؝��
��R�84�C��q��AP.\MAjճ�t
g�(���s���>�A��������?������g���p��i
����~�X����g��N�pŽ�|G{�����N�B�C���'�z�Ms���n�5�(=x�VԦ��_�h�w�L8`J��
i�߽�κ�ё3/��hXH3��n��z�y7
E�
O�.��H������!rEɃ(I��`��m’Aԧ�ɷ�gv�CL9V�V��/�'�G��B�O����|�G4�Ƌo�d^�|��`��DSs�CJ샾���t�������/˾,�}��"l|
Z�
�$GRr-��`sч��ZS��V![|��"�7;)��9�t
X���RϽ��hr�@s�n~<�����o$p�>|�C���o�����T���Lm!����>sC�hŞ�ㅝD��U|%G�6��Ԇ+�q��X���3����}ϔ�u뉤����S�&Ր�͖4�/Bϵ�	h#r��D�7���A�����S���S.(B�(���bczgnM��ZMV�֊����\e����&,)W+
��>�Aj����sS����&�u���E�tL�ʯ����;�[�����<:���ᄎ���f[��l�1zp�\�{k̸��1�wZ7_�|1P'�
D
g�*U*�?��\S�8e�*�>�LZ�`}E;��ʝ�3�}[[Ld#�ɩ�Jx�U�N%h��m���ɸ�i}��N��m�F�h�nb~�:�2�g���j��׫�·�|qZ��˥����)t�`A�J�yb"����dy�\ίݹ�(,�]bidtx�l�;����R��L��0�_^�V�~���=p�n"B6��.hD_q���ٷ�02�������.�rF_�4�˅�ft��z��3y(�0_���a�y���lU�"��\�eA���Q�3���<����0F�Z	n�H�jQd1P�	��<��i{�?�����T�|G��逘��q�1V���v&����U0k�zأ��*�'���߆���&�N�x�p6[	f�]�Q&�Y�������Ɯ�O�2�u���'��i�N��=PH�#�ӦFm�d���Q�5�u�bl��
ۊ��%1#62���5
��V�dy ����.�q���P�A-oj������2�XH�]o��_P��(�QYZ��e�!_Qɣ��3�wE��*4�`A���7�h���=���_��rS\"��HQb��C���ķ��>�Ꜷy*Tw���;>�3�؏-R��q�P��s��?���fac(���8���%�9�PN�
�Ρ�_�'ޠ\]h���&��1M�AP�+͢I���}fHEyE��r�%���[�s��@�v�V��}�3��*���g��Tx�P-OO�B�[����XI!i3إ��
T�9ۦ&%C���FRe7���9�Y���;�3ǁ4)�ȩg�ŅQ&��M�{{����Yiv���ǘ4�
<�?�ȸk\-d3�F��0���B�g�D��>_��塩�����B��mB��,��D�r	=�0�sC��?��d�/N����I4OZI�&=P���3�ǡ�k��|�qTR�i�WO�'����,�:��V3�_�_���x�����{ޘ�X���f(��"��,z�G0$�1��/��6fy%�p���J�y�>GMÍ�p7�0�~#$RFd %<��ۄ,Mo���j-=��`����:a��"*]����ܾ|����J庢��/�9Q+����9.�'÷�@@�Œ����p+�_�B�lB�
8��#bROg���G).{��$7�U���g(L�3M,�m�qq�X�'��e��W7Wݛ/�j��?�?o�]��`49��� Irj`N�R��~��ع��q@"�f�uT�>ũB3~xLsy��|1]7�O�{�z0!4�f
��D���1U��6�
��\f�
D�9��E�5<����K��͟��ǘ���_���v�!k����E2ل��a�_`�'w>� ����
]E��PV�E�Ԩ=�w����˰�8Z���SuL��"C<!ͳ��rJmqH��5��tpbX�A�K���ם:����C4o�kf6_�h��a;Lc���l����X��R1�?��".�X���֒�e �����s�x7��'���SV�y��:�Ur9�Xs��m@;�rZ�"������n��l��G�*��śx
а�'���(���ekO��M��\)��T��FbE!����6bt���L�}ɻ�2*^=8��)�Ӂ�>`��	jX�>@�������X���ɀ+ϫ�-:G�o�?"�53f�|�7i4�#yڪ
�*��t���S�V�2�6"n�TN���W����1wZ���AT�Z�5��`q�&�[c4r��wSN��`=����?aU���/{�j��CJ]�>�`1�[{7����:x�:X�t�������,�
"���Ίp��y�-6�r�ܞ��+� ����?u��w,ya
[�!�S�B�d>-:���TY�A@�>�Hp{�W�H7���?W�`
<�=�]
��`������Fpi
ҏ�K�ە_o`�]�(&��~�~�[��c<wi[U��B�ULúm�0G�%�+�۸���D=
�sv�S� Or�/H䎍�j���|b��[�kS��9��FJ��]�Wл�Y
�>�OwP�e��rW��9j8B|U�*�q�*F!)�P-�u]�����0Ò�s��C�J�O�K;jL�!�Ě)l�NAm������?|�G��y�e�Ǽu#'a�HIn�����7����,��nt|;�7���|�$QH�ҡ��mU��N�k	��?PfbG>�ŷ�J)�0���̴]�]3�9���b�Oʫ6�[���N,H�V㞻��`�8Y9<�s�*��G�p�B9J(�R����n����ie���B�e���L�b��� �[8⌎}%*~YB)���H	m'?��W|֕Y��M���ATw�'�j�8�"�K����U�R��c�Z��0�
J/m?J?�`�{Hs�R�S)9�%�! �#=(�fDAeVf�P��!��a���V�dͦ��?�4�=�l3��&��?��>�!���Fδ��.7�e�
z%1�u����`�:ga������jT���=��v����O-[L'�k�����$�{�D���r�s���%[r�C�8� �<SԽ���-���<�D�b�0�k�i�� ���r�k�H˼�3z�<����ʚ�ù$�2x_��g���-Ɏ�w�FK�b�v`X����<�)� v
#0�l'��;'���A/����+#{r�y&�f�Ϗ^}
pSݐ�q61bcl!Z�n{��U	o�2�����+>�RkA%���'�MN�u�D�,����u������a��:��Exv������$�g���<�e�͜��֬�֛U��.L�Q��k=;}L����-覭�������Pu��]��چ�o�yf�_����y;�W񥈳�
�8���K�L�d�C��.�˪4�J�f*����X1@�~�/����Q0�ͱt���j���eǥ�|l|�qa��#���>�**3��am��}ᔑ���tb�Fxa ��o�I]�c��a���v��s}���R�_�mܷ�V>B��
�}��+�dB��VԀQ)(�W��l��Jv��bdtH�W"���qyP�s-�̛���A�GϹ%9�&I�KH��11�����]еs�Ba���Z��w�4}��v!�	j5(>�P�F'��[ˉN���J��zAz�c��WdFKe(��c!��on�X�e�o��8�b��v��GP����28+��'��@�,�a!��o�ar�aP!DA=r�u[A쌵��0
f[��)%��oh���,�TYf��%\أ+��uU�@�	�‰��7�V���>ʽ�׏O"FhF���@奒��;��o�	��hr��\��~x���&G�7.H�y����7����9�N'H%�j�bX;z�L���@���v^��+��{z�k���zy��.�4��d�H����2��(R�0��f?�8;S�Y�+�.}�eTxJ߼�CgT�P�/pR�xF;<J��or
L;;�[,��28Q���\�әJӦ�n�".x"o���(�t���}C
��B,�~\�
6�n��B;%�gG�UJ����l��
�"ӛ�3v�2Ð�eu%��o?I��0�)�5���L�����g�����>�G��]Is�����TN`cR�$�b��
�;����O*����G�r����džES.�ͪ���,c��[X,F7^@k<�ՆL@!*g/s������"�yZm�c�j�q�M�W
zA�A߀J�vY��)�g�a=?ls� opZH�%��
%�fz���f>�>��"��9p���ۆ_s��Q.">���g�r����S�u�g!Y�#L��FS*�UjP�I��5
�E�Z��{�đ#6�(��g�x���#�f˼��q�C}�CaxH�Xf��A�9�s�|N�1�[���X>|/���w6k
΋�!ζў*��e��9⅖���1sI�L�? ��B�%#������M 	m8^�י"X#c��Rx��ʋ�|�8������XE=�[����6���������~C�dIW�����Gߙ�Wu�b��;�h��y��M����m�ɽ�F��;��;���1)��Bw8f��XB�Õ:y����jQ�u|��N鑧R���!0��s0A}1ǩ&�������q��j�m��[m���rF��R1D]�&�!]�0�F���`�hl�"{!g����?�|A�]�1���A��{E�\����l_�\t�Ŋ�E�6���f�@!S�D��/�g�V�߱1�͂�j�b���&›�u��p��i�	��G
4�cëJ$t�`��WW%��.��q���
��fe1�^���s�~h����ظ0&/����x_V�������/�vM�=��w\�y���c���25���w�w�ea��ed�oh�q<�0.>�r!�N�q�w �&p�S�2�	�S��VB�� �����lDmg:Q%U��1p���	�9�4޶�F�͔�%�-N Ȍ�/��w�G��)9dA�-��[����$�i���RW5x�6O��똟]�56�'�3���x����.]�3�<n����3[�EYg:��_K�M��"
lZ�2����UL8�<����g�$��쾍�E�k�'R�n�<F���A�w�D˵�����S(~�v�>��Q�K{���^����»��j?�PD�Q�R(ځPJ��<�e���]��඲��㴣$0��B8�;�>n�|��z�����Z8�cVI��3	�бJ#�ESA~#�Uh��j1��`K�2"�(%�T�����m:ח�P�*���K`0yh{Lb��'c�J�|�����
(�Y�q���8
x�0=["`2-U�3U6p��y.'hO���U{�I=���%���	F�h���Lo���'z� ��m�4J�i��qs�,p(��緫U�g�3�*=�����b-N[[�R�8`�u�w	b;#H�iD��v8��&	˶���I2��P�P>yA�@<�z�i0�>�q�;�VTEQ�$�qx'���~�)WƦp?Y��1�O�-
1F��j����.fՅK؍�3�\��U�x3�Ð�tĂ"��2wמ���=�έ���?s�+��ȑrIҙy/�9����c�d�����2/��w=15dΰ-�`��$t"d�Esc��EZ��s��RO!���[e]�[4�3B� 2�@a�z�g��~����#d7]��"�q��h#r���L߸c��J��G�w�A��3g��5����͋x��U�~J8}p���;��.���8��1w��'��× ��?��8]��x�&N~�6�����<�	��J�a@�Di�XR���P70�9�j���C��N2:?P���]��UG���C��	�.�#9
�Fx" � ����
O|wZf;��c!cT;@�q�¯p�\�s�˕]�)o&a)�tˀ��#�o�K�h��θ'~8�o�ދ��G�ں]N��@�������4"�b��O|�iJ�A�K���F*�ǃ�ύۋA�&Z�GOۧ�?W���5`��skA5�R(%3��Ă�t@_��!pN#3W&1M���C���H<�͏s����X>��Y)�5�Sa	�Z�',�I+p�Z&���Ǎn€i �}2K� Z���G�����]���厕����?	�v�GF�1��rn�q�j�jnv.��p�iu�Z�9ֱ4�V8p[#WTwDVQ5�fCq�;�JN|XY*�,�l�#˦S��,$�GĄCy	��>s�@Ҳ��w�O���o�J�sr⺄_]S�IB���/�U��D��D��+H4�5e"�"�?H�/���N3n��d�a3� ��q3S���_o��l���ju�~|||ZE�y���b�f�>�8g�>��y�k�U7b�;O�m�<�c�a�0;�5�c��S|UyC#���L���lT��܂P�r�t�hF�O��	m��72������.�`����:��DM&��M�i�c���:�TU��zo�+��9���P�v��"jQi+|��C�����2
s�$��ĩ�xuqnY2��u7������T9$�2� !T��N[�a�U��k�B1�cd�i*�ɏ�ӛ�b�;�‘�
�������~5�n	�(��|#�����z�:n�����f:_�*����ϧ��hN��r|��<�o|GK`�[h�^��c�+�ys4H������%'��cʩ��`n���DyK:G��;��e.#�9ˑd/��"���j�.�x��c��mı�L�c���q�8;���5N��Dג�׎kB݌������G��:6�5�5�S��[� d��:Dx�ք܎+���j���=� �.ϲ9�����Ak�%�S�Y۾��e��Do㢽˺��.���+y��I��T7�]`]�9�S^5Ť]�|�B��Ť�[�{�P�M�	z�n�Nk�=g�v�2�$@�p‚����R͋a��d�t�tp�����R��mm(tV��-z�	: M�8�����a�L�3Շt��h��~�g6̳[��_o)�ٳDz�rP{��eK�g7��oxS��m�Y�0 ���T'��/uX���A������0=��Ć�M�_̝�k�P���g�h(t�) ��ы���`0a���B'9F$ c��C�j�`�"АR��H��K�CJ�N}���$,����;�܋�v�PŚ$��kNf6�)H��6��b�@�v0RX�C+��i��cc d��s�J�h�O;)�a���Z�S��ҡx�;˵=�,��� �(��|zC�fY�=2�4q@�7�=�����|��X� ���&+�׺�g�6��.3 ��R	.�:���͐�Ѱ��[�o��t��ӏˎQTyUֹ\�+��Bdq4��fj� ��!�e80�	X�a�&Df�MJs����?f�ɯ��+����!Ȃ�EY�EF��Z���!Z�0��޿�ۚ�1�8<�!�`0!�����'Ic'!I��+�%�%���i�>��Cm�ƱTV�p/�J��%1�$��r=2�}̴hn���Z��v|�c:�2�ҁ�@�VS�m18�S<0���@� A�����l(�
�$��xIr�y�0,ZZ�i�R�X�_8&�M��wX,��M�>GI�m�/h��$ٳ	w�q㳵��A�#ɇ0���?�:8�DQ��?���4@��	������㺛'g�8>����CM���w���O{2d����<��K��/��掃@Qiç�v�O˛��VT4�Bp��㊂Ǘ�22�m�+秃f=J��)����e�k�h_Ja2��J�<�i8]ZK��t�8�,��30�)��T�i_)��p��T�0\`�2�������ȧI�6}��17O�1(;�����&�.�>5�P\�6��	5Ȭw8p��~�-aLr֨9��n�&�,���xq?��Š�S��!�:1�� �!n:�\M�&�L��	������7`lc�������
� �/v�?�4���0��K�
���h�F|���Ls$p�@�t~�e��c�
�N?��g|�Z���]���
8HU�g���I�-2
��\�/�a٥�\b�;�{�]���?���a�����C������Ķ�%���T}�CDf8��M�n~�e�ө�1B�È摡�{P�5�B�A�Va�m��5ƞ+�Oy�
�nZ��������ڢ����ue�EB���y�b�R�9�Y�y0'Fx2'z���&nސnN �(B���5�C7b�y*��$���j�
�ɣl�puG"'�K3�z�[6�STν��F�mB��x�.�|�;e�a���ǚeY/���������m|��S��nș���cxq�c�fdAS�u��2!���!����fZi�E�@���,�����;�6�n�!�����MG��|t�,�]�U��,F���Ȑ�}�^}�9�6X��t���g�4��V����g)7�zbq���93S��֎pC�������^�v����^����P`��2L�
QD�j%^p�-�����RP�q�x�B��|%	$���.l)6�4|��R���
�Xq7|`�fvi�t.'������
���-�K��������3��ک�"R=X�,)aF���7�nΌ݌S	ذ3����@p_Fp�5'g�K��h�,W�1	�1�Ë}����,�L���"[�Zv�ߢ�h��g��%���Ͼ:Ǭbc�|�> ���!���V7W�zS �fS�R�R���b�	����-����=̋P�i8`��w0Iq_E�J)� 
q�b�7K�4��"o�d �aK.~6EԼi�_�Y�%��.��nx�H��H*��WAu��0�`��9Xݴ�LMp�bY��#�[.:�r�![��/��ݱv<�>�Ώϫ�b�Ț�{���"YU*��/"Xq�)ZY@:/��#ք'E��9p^�+Q7�M�`[;g(
�e��'(eKզ���NI�n�D��j���Z����S��m�1�Ҿ�.-�u'�`���Fۊ6''�@�7��^��%j��!\��%���N��S/Pƺ���e$RA�>�+9��/�������6��@�Ġ�s᠂��K�1�ڦe��3u��M���/%��*W|�����b��Q+P$�U!��"W�}G{����
�.A%����ᕱz -E*!�67�P�!ʆ�@��"y���٢�Ƌ>����K2�*P(ﶫ��,�Ֆ�����Kt��A�'�c��$�j+��yy����TJ�d�Z|��h���C�Sn��5`��B���?�\���%6QI����!��!8K-ǖ�Y?�{A𱉡�2�O"���V��]ԁ��^=k� ���UQ�ߊ��{�(6�	p�$�R���p�G'h�����ݗ�]Ȋ��[�6����o�5nat)����Sl6�-��œ=��=�@I�����a���7�$��oX���`Aj9i[��I��
E�4`w篣�`c������v�.h!a����@�1�|0������r�Y�TG���M˹�@�L�Ŭ��YWMe��1ٸ-4T���d��*űC)��X���y� �4��{.�ǁ�n���)�n�zQ�?u[��/T4��*t��F���G�s$��d���g�L��>�hu=乴�@C��7OK��u��7�k�F�l�
�<��.P�0!ȟ�(ӏ��}�Ղ�8�w��>_~����ϖQ��C��TE&�×busr6,o�lɆ\4�[�/aD���f����'�
��H==ˁ[�*J6��iӳ���\_��߉&��-ܲ����i�l(���=�祺8��2|��%3
�џ��rEl#Yp����J���a1��9E�&ݥ�z�x�}A�I�λ���H��ħ��%� �S�=R�,H�?��C-`|�$a�2\���K�Z4�atL.�����n�f�W˨KU7�Y�!��Z�W�f��Bc$�OA�%%_k;�	?��p��C�Gވ$		2��-�.�fC���݀g�$V y��)x���M̠(I�ȱ��9ϯG�]r�������m0��#\�L�R��
Gwn�#N?- <>�5W������X�*cM�v����v�׻E~,��N�^ҏ5� P�Aa�.�x�F�9qP_��,�Nc�g[��;d:}�y�g���͹�R�eK��>h��~|U���u�F�dY'�PI�����T�#��%-
��J*����p�,�
v�]�rXT�4L'd���>�yYZ���)��4m��%�J�y�I�"���߿b��ʒ0�
�3Ʊ�U���b��
v�����B>��7%!3U&��{~3)�v
!����sv6��Qh`s��P��
!'	��p�W����ezt�IfOF
�*g����%�-	�װ1�Bks�h��f�^���Q�� �]��bD�cM���ڦ�4	��d�x��T�08A�
�L:��Y���Lw��l�
�6��g`,,`�h)pP��F@a��������������Mg��'�7�McA%J�am�9S�h���4:h��9+��}s�m��`����WA��+��D7�%�Ads�|�gv��Ǫ48g.�l��8k5����a��\d�a�9z��֍��!�6�kLkL�)�|�b�ˤ8d+{+�4V��$���d�v��8�m�Rߨ5r�}x��A��5dF��d�Ô����s.H���swyn�֙3j����
3j`4v)��R��=Ř��C�vm'Ff���DD�����S�n�8�K���ףij��	�:���p���)�����	QB*�4T3��	���<"�"Qs�<<�{�,n ����d$��z��r(�̐��}9�G��C=���&e���G��]ۉyM���b�bS�ј!~��,�c��Ohs�c;b���1�a,˻y�[����� �Z���W�%8,�Q��7�A�}^���\th��#䣞p��<u��n�H�(;�Q�}
|
.
ބ]��d��y�^�j��/�\ ���v�;0cUOK���+?:�tB�S;���0�6��	�.K�9*vr��� �3���XKOC�I�v0�:n��<J�@pt?�K	�B�XCN�!�'.����BƳn�w�K�BGT�� ������eX�$dATM�����\l������`��*���4ľ�IuKS����@�0�
��j�\�r�	�[4�1^���3wdz\��e��r˜��Mn��bgx7Es�}a�v$�3�����Fګ�ni��!�Jha6���x|�?��:]�O��텻�bߎQ� ���tJ�SlB��L!֞�"E�Uv�w��+����E؁w�F���o�-�1�I���g�<��O�p���y�Nm��4ͥY���@��TUUUUUUUUUUUUUUUUUUUUUUUUUUUU���@�׾0�!�]}�/g�IEND�B`�admin/images/wp_optimize_logo.png000064400000017660151213254620013210 0ustar00�PNG


IHDR��ZρbKGD�������	pHYs
�
�B(�xtIME�
X��F=IDATx��y|�U��?�>iWP��I�$Ŋ����:?qGK���S����8
MB�m\Яˈ3~�pe�#�Xm��I�Ս��s��V�(-6��$9�׋׋�}�=9�{�Ͻ�� � � � � � � � � � � � � � � � � � � � B>Bb{Yq�֯o��n"x@T����'}�`w�z����m��7�+f�
��X�R&�H�%R�K�Z,.���J�(��Hf�O��m����3���u�G�^��O�d�|3"���yBy�f�D��c��Nji>x>C�]��A5�k��eu���=�>U1��)gY4�2�:/y���|�"8G�`�6n>����guo)�^`��{�J�/1�ή������8�pqt;�1�ԏ
�mh/�e�X��o��.�X�<o�e���y��yi�\��*+7X��.ɓ٬�KNF��P3e�E��iV��op%ٮ�(�[[�+}(�R,"���&�Wj�n�+�Q������O�n��C�!M���6o0m';��s��OK����i
߉=Dp�A]��w/N����E��`�v�O̔W
"��Y-T~&�1�!�c=5����Ђ~?��N=X��@���/�m�V�'����]���{�:�$���Hb�.�i�*��#2�9a��̍TpMe�n�.'c5�hbL����c���מp�_"�!1���e���
�oG�D7x±Dp�>�MZ��|���_;��ܳWQU�_��Y�5���D��B[�!;X�v鳼���js�|`2轔��e�]i�����"�,�j
���aȉ�leh���'KJS7���W��Y\$>��`��&f�����/8U�4�f����]"8����A=ӛ{����9�O$~��f�W
(n1z����9>Ӂ��#�߉�l�ي_An�j�
�2��?lT`o2�;�uw�'�,��#���Rd���XƄ�D���X),
W��u+��ryՀ�V�w�4a��4��á0���#A��p�^��$C�(��g��|�+
��nM/�t����s
^���@zH��d�M	f���H�	�b�&�P�UҖR�=�^&/��ǒ��p��z���<ٶ�f�#Kg$^�etf��#Y��r�<7xV�W�9�?�5_¹��Ķ봡F�M�_,��M�aDx'b�������ɲ	}ZY��rC��-\-�:u0�Z�5���S���L�`C�g��L�w��_f����m s���^?���u�.�ֽ±m�&&�MCO�NkX����R�|�����/���9^pM!�Tb\�ȉ��t�@_���I���0�>���{��D��
yR-�Ơ�D���j`,f„�H�=��U��)�=@��;�
�2=�\�4���c8��a���}i���ְyJs�?B���a�{M�N��{NӖYpV�ψ�PO$~C>�
J���.}3�8)�2�����J����&ƣZB��ٻ�D)@�5ɐ�T0?	`O���F����Dp�`ل�>i�����l8�$iu �@���A|�CF�y�H�'�'wܒ���S!6�J"u��m�x��)l�2p�) :.�:򬭣f�d��8�~��\��S�j���������{4��>m|��p�`a�P:��-h1q��m'g�Hl
a�rn�B�)K����XWF��K��e��i�b���k@|`�<�T�|��'$&����67�Í�`d�ñu"�n��‰��t!�n�ۅ�P���*��u��s����V�%ӔFcς1���%��T�w�����@"\mc�L6���"����	��ޕ%��� �]pi�k.���_1���h�*�FFc����7��A��y/�X��/@���xS)�_��D�g����a�,Gt�f9[W��+`S2�XRS�`
����4����Ԅʦ�wd�
��2�.�4Ѧ@�O$1Ud`-e�M�j�E�i�R���*m\Q��ÆG// u��������ݦ`���C�Npmki��h�<fPM�Zq}��I��C[^�$;�nK�
�O`b��'b�tG�UNwH�iB����!ڟ��1���=k��Ҡ�b�rǘh���{�5|��>6}���],~�&���%��_��o�=2�ev[ATt�Spل�>-�>]��J���ލ��C@��(�?���Ҋ�A�G�2c�'_���sI$ޔx"�_���2�y1�%C����K`u�R�o<�ӎ�ɂ�_*`�3�������tJ�.��*��w�Z��:O$�_~.�
��%�w�c#�2ҷ#��,<���G҆y�����'��o�~)}����<�4�_[�@2�k�"�T�;2�׷�l�oG�y�+��A�I�:���?��)���r~�K*� �d�s	/x�qۏ�$C��I�Lc"G�'�2M4�4{��,�*/3
���a�Rw�����M�d���|�Eΰ�Ϗg5�i�֏�"��i��R2蛽��A=�lːچF����������KJ���/�YP�J|��{�u�%����&��-YE��`�(
}V�
�i��3,��D��`��,�:� �>�^���)凳��<��	׭`�}֊�������$+�G���p�-��FU�Q���o�=�Q��h�������SNX�ȡ��zsSp�O�t���-��Q0���>���>vS���BG���/��
�`a6gC�'����N��_��럷�i�����R�}O/f���#����$��^�FH>.��\����Mb<;�v�F��%���짏2̗�W�w�������m�ވ~a��TKG�#���L��,�ق�,>A�QOD�F�x4́�b�|V��߫10�2�b8�Rp_���t�$1��HC?��)H�Y.H���`m|
X�
 ��\J�c��r�㗬>=�J���Zi�5�QM2T�ߎg{��)����f����θ���7���g-2u͞iS]���uq[��u�]v'�j�i����8+��3�m��l}!����ŵK�I}����	(e� �;��u�Қf�͈-�h���\���4�8�<���v5��ܱ�)�H�ںqMA��9u-9-��̎��� &
�����s<l�����ۗ
y�2ӧpp%�n�W=ḭY�x�d_���|�Yi]Y2�᳼ܶfDݳ�ht2��P҅_Ĥ'����}�I�# �A�@Z��0��v4�|�*�Y 붾1��&��m?Х%�Q&�o�N���y�躲p|��y�ұ�{�[�@{���P�s.�]}�˽��	`��n��L��Fcw��:Aݨ��^}ң�x��;�W<V��5;���)�D��o_�	'�rJs�c�+\��Wg�QO$>F�U!|���5`�׉�j51]�ƞ܉͒��S�W�
��_��I�Z^5��E�rWur��j��D�'��vv�X1L�� ���~�J�K_�ְ�SbkK��E^l�lse�w�É[�ھd��M��e���@g^5z"�r\��SA8vG�$1]�����,z1����D+)}�Ixv&��X6L�QI�}l���������hb���6X��E��0�u�Q
��p���6RA�L�!��d㚂C�xw�K�Œ�.��GaK3�ؾ���A����߫)���{�M�"f��3k�S@��t�Ei�>�9V\��X�V'�u&�N-���S��]<���.}����J��z���r�
�sC�l��B�!�i
�=���ĸ�����(e��8��
&�@q��`/��9�I�Eb
�qG�Q[^�o�����!�mkp�/n���Ҫ��4D�ng�*_��W����R�(m�PD,�M�x"��2��8���ק����|do��o��m�Z��:I���a���Y���b��4��z‰�b"��v��Yu_�]�DޗA�����
�~���4+��J"�N���]�K��H��MZ����ݸ}��p2�ZL%����4FH�5~:�ax"�)�lw%��c2軛���Dp��]���&�'��x��o)����'����OߘZ�{���r"8��Í
��Le�N�в;c�v?�զ
�ߓ)"�NQ���ub��D�s��D��	��O
7�W2�;G'�O$�' ���&|��*�į�U�~��=��
�[^5�X'tH�^=B�/s"k=�X|�S8�ؼ�&.�b�^`g-:\��'�KkS�;
»;���	ǟ!�G���}��T�W��G��/ä�ޑ`Տ��۞ǤM�5�h�&M�wZÖl1ZS�w�����*
Ǟ��g����3]�8��W2���~f_=/-��$��$�jt��x>��L�_-�6:v+~�Ճz�7/B���\�v�]�*���wc�Y�cLt�'{�	�/�Up����M�3��~�;��;��1�;Q����ԔF�wnU��Qt"�j�{=kb�Ms�{WQb�m/A�3��
�QԕV˓Ao��J�chK+@�'�)��ٟ-��b�~�����g���T__"�_Y���:���1�n�U�Ę�ӭ��>�\�YnB�Oi�)�!��uO8�-�e{J��1��	X��D�h�ޱw����]�_~$+՝I�#ඒ5����h
��㚜�ݘ�.��>��p#�=��:����g���~�m�,\{�o2O|`�K"�&;
X7���x�֏�����
sܑ����PbL&��.���`��@o�2��s�o�Xr�+�-��st��bOM�%;��
��g�7��w�X���_i���_-�~0_��;����|��h�V��z�{�K"���3���8S�ٙ���Fw�iȜ���Dc��pI��e�'��W~`%�5`�f��Q�6"��;��܊�����x12%8"�ɐ/w8v�]K���`R1�`ߜ�0��E�~�n��ם����j��Ɩ�-����z'��+R!ĮTm��J�Q6�ޒ-���RUC�p���\<xV�W9%����8���n|s��]Z2��3]�@�O�F�l+�Х/&�V^�>3��Yxx�,��oN���婥��� �E�M�Ċ�.�^�ئ����bP�
�߱�I�5�gJ�Et�c���;�����(�I�k�Û��^i�f������p��ALs�̣�$�D|>:��$X��N�LA��m��z���NYmӷ9)8O�>`�e��7n�|��N�'�[N�$~�y�pxw�$�
�@�p�ϰT����Zz��g,~ޕ�����e�i�>�_��4f����p�O�R���ff�~ن��u4��l4[�\��$�w�cS*���.N�����H�E����O�Y�Ly���sz�+7.e�C�ǔ�R�}�; FbO4I���þ
���Ö-4�	bksB����[O�8Sp�C�3�?Q�N)�ְ�N��J��#�(�%���]��Į�x8��	�h
��i�i�j#�-��i�88���Rl��J&���o��HL*d�i��fbCD3u�u��;r;lب��⾭�`�q8^qG�g�� ���V/��R��zq���&x��S8IG�܉��?�����X%���]�ۚ�/�����گ����-w$~b6$�I�q��^�}Y�a���?}	T��-�XΌe �����>�eå�%U�e��clj����W�
]bW�8��o%����o��F���$�`����6x�m�p�ڮ~ۖ���幌�MA��
�Sl��-@A�ξ�&�V�|;��B�g�5���4O(��}6-���V�������lz�������[K�e�]�V�Z��GP�Ov���.°�p/c�A�"��TTď����u�4|�ׂ2=�`��T��&r�<����]�ᘠ��`۫�]|w�)[�I�ך�Id����b��8���$R�O\[,�����V�;)����42 ���,�}�����{8�>\�R`g�l���	l�n"�J�g,�Q�u�b7G	nPM�ZO��e��ך�y��T�Gl`~@���`��$�8�js��0���0*(����U�d~�؂�s 60Ӕ��"�mp|��43;�(����_~�H��B����@Kz�u�9�>���]:#�:�����Ro&��sDB���(ɀ�̨q�_1��.��4;9��D�8O?*(����1�xr�މ{��&Y�Á�=4Z���|�x���Ɖ�RNkP�Cɕ̸�!�1����J�K��"�m��a[8HlkM6�t��[^)���t5i5�/uGsEfmK�澾�5p���[;4��I�Y�e�U��~`o'��[]�fﴆ��Ul
���d��cq�x"��l;GL}�10ׁ�A�y"�'){kt��U����p�B����LwZޖ�$���ʡ�{�AK#�Or>V��I��v��H+��u�h��t;:^p�I�E��z�ᎌe�4+`��ً32�*N���|����Ħd�=��&�Ҁo`��@�n"i?c�SR�P��"ɾ��
�;�v��)���-K��)����o90v؆��+��S�x/�b�e*��2�sЉKǭ-M�u�8�w��-��]N��lj2�i���چFG�l5T�#�y����G�:�
����ÍK�ɇ�Jp���E�MٶJ#��J���pc����UYX�W��,�v-ii��l�$�z�1@����dq��"�
&��6�[�i
�3-��}ZT�C8�iv�R۵�W�z�����.�c�{���
��A-f�u�T���S��ڮĀu��޽�-CL��j�"�����o��[�.�Ğ��P�6��%�+�G��a-3�x-�\��	ܛA��\��*O8�@Vw!����{mڰ��h[&	����yז��ڒ��_	!N��0���D9���r������7�3�(�Ƨ�J�T.tb@�����i�ќ��A�sIl93�0VC5��=����Y�7�����[��1��o+�U��@|7�H)�G��h�,;G���5���D��E�o���*8��R���3�k��=ץй��0}㚂csYl9=������)`�B�ڑ���{���A2�mECz��;�O`�מ�x}�tX�KG=���d�0��?�
��.}X>�-�f���j��*�$0OP$�o9M���ҚĻy���O�Ǘ𥉉��: 
��[�醶���۠���Y�/sMm�j��X6�>�w�I�X:�r�tQz2�ȍ{cNa9����O�)Dp[�*+w�q7�m~���
(|�2\�^�!������4r���la��{K"��s��D�x�!��f�[u�wL�I(���'EDpV,5ۊWL�"���"?��b~��@����&"�Ѿ�2����4@o0�Ps�}^8�z^Z<C�Q�R��Vc�p��a�!�٬��=��x���B����r&i��D�!��j.�y"cNI�~~>���e�w^=�g����d�H&��l�Ͽ�r�ů�k���ಆ��C��a�Čc�42�&�OH��_@�A5�k����PeP�p0'͕�h?f�[T#{�i1�C�E={.�?��
�͈��'UY�k��2�*a�`�4�����C�=��n�Q��[�lj������֢-;�j0/gB
�)n5S�_7}As`��AAAAAAAAAAAAAAAAAAAA�z�i���I�+IEND�B`�admin/images/seasonal/new_year.png000064400000022653151213254620013236 0ustar00�PNG


IHDR��,�?�{PLTE�������@�@�@�A�?�F�@�@�O�@�@�B�B�@�@�A�C�@�@�@�@�B�?�?�@�@�@�@�@�?�@�@�@�@�@�@�@�A%\)tRNS
���qO���f,>��[� ��{�aUH�5l�B%0�9���$�IDATx��\	{G�d�"%)MS�Z��/,�����l�q0�׉3���Ύ���i��LA���Q#%�����qJ��y�l�&�2&r�Ø��5�X�>�=�u {R#J�����|n���_�"e�<h��M(��s��B$bCS�
�5m�n���Q̨Z{������\
�s�n	�/P4�Բ�捥a��H�L��݀�T��b�Z=��q3�'���
(��������A�:�N'ρ<g���Yjaّ�~2�f��	����/]�먎G��|�n�)�`��9���v�#-�y=	<�H�;&�;�5c6ql�$� Jӳ���!�;0F�a�z�

�a�
�TSC7
L�f�A���0 �	9���]M�a�rj�d�Bը�,=G	53"5���ɶz� 8@l�ZyQ(��Hv"�B��3�pk/�$J����(�	FU��3���lv�;R�UP^aU��XQ��(:�E�HG��
�d@����SQu&-�\��x�{�̓��Vz8ۀ����O�K5�P�U��ʌ����Vx��rT|��L
Q4�����]��*�8֝o� �zσHB�T.L��������~΄6�UM�|Ό;a��Gٱ��2&׳����+�6��1y���TE�d"!�g:�g��jVw�Cݴ��������6�;k�My����Cw�-�.���4cl���ys���$�����f��E/�J����qtԐ.D�v��	C ��̉�D1���b�8S���Z�ԥC|��]�a��|�۟ݐ���9kd02�F���D�
���b"I�����<l�vIYI�]z�k��6-�Z�(~�8��@0����]H4��%z��:�mɬvE‚�Łé��pZx�`?����;T���ec��j����N3�n�6Ļ��ڷm��/a�WK:��bD[���36d�,t�0�:���Ho�
��Gĥ�W��6��o��jb�^t��:�I����9�z`�F�S�RR����� ����1��M����t��v�������MM'����A��n��5�j�ea��1E��p��!d�|�$��ַ�mb�{5;�̉�C��w��mP���u�|�T�y�2oA���|EĠz��v%9O����V���R5AO�5n�<!T�q���7)ʇڂCd��22��A��6���Uݢ"�9�O�fSt2�-��K��-{U��4�������ZM���F4Ɓ
"�[k���<���]��1����g^�>E@1�(Q��G[`���@�V�[�Xz�[�+t�O�v��:˫_6C�	���x3�Dy�J�#��KxU�pu���BjD�|�}�1�� )�+4|/u��6�è�S92�I�y ��g!n<�8o�Uu����M�b���#�ER)@a���c�q@�E�
~�[��-�Ē����6P�$����� �N�.����=K�X!��g`��SAx��r6)��Ƞ��UƦG������L��]�C�Ik�����g��DJ��!�W<@J�196A������`���\�f��ښU�4�h1��暒�;����T�Z.�o@pd%4����fuZکTpQK��|T�exop�4^-
i�{٦���p�d���dW̢#
*^^�TчX�Fȸ�+&at��I�"B�Sf�+f):�vj��˷%�i�\�%�ּ�d<[)!��_uFz�z&�����C�x�g��Dg�4*�|�	��r���(Є����)|ܬlb�h%N	�p��aOB�jdX�e[B��^{�5���+�?��?����ɇ�L���l�M(*�e�"�����PE[���No��e��J��I��`\h��澟�;��WH��0��&o����H�I�T4Fp�J��&ۉCn?[�'�Bf/�n�IE�0[�y�Pk����	;b����D��紸g-�Ta�K��'��҈D[��?s��9�9��L*��c�4v �q��XW&��g�RQYA��������6B���8W��!���W?ݖEN�1�ʊWh��"#�xE��']d9�w��V�,6.9Op@���|�#f]���� �q�zꙄ&2!�u����D��}j��5��
x(�}3��[ u���ʝ�cq���f�i`L\m�4�U%����V|�2p�a��DA2��i��W$�|C{��_��h�l1+A��t���y�M�7��#��e謠�{}����5�dž>�bN�HS�����OI�vi��&�O�%�<�焆�/R�Z<�_-�~��Q)fPH(��מ`M8!������;[Sm`>�u��Y'��ߝ��$�FM&�B��kh��޽Y�*�T$�6�*��qs����W�a�!O�|�o�߉�����C�]��T��
y�-k����auu�!�����9�T]\1QC�	����c��h���G�.x�C��{��f\�H��ݸ�6�1C��E6���R�(��Fk?�5�hϐ��g��]�o���-i|p������<{���'�Ёw8T7��t��� H@3��l�B��3[�2��鸑��^s8���x�@�tQ4�W��'�ښViX��L�nO�e_��fG0�i�[�`d�\!�K�6�u�ڪ�I"���S���4��ǁ({v���qbA�Ke������2�'�?YL���FD}!�\��xF��l!�^*Y����E9l=<s���K�o�J����L4�H�:�6#�Ë,/�V�:R���/i�9
���=�V�:l�O��.F�q”�E�NPt���q���2Q�/�1k0׋��ʗ�d㒥��$����.��p�3�4����+�)�̴�9�R�V�ϛ!?R�ڬ�(/���!��Pfri�Ţ;_9�CɆ�kh�9TO��F��ȋ�y$'������l�W�/��
ϾNQA"��l�̖�zS�
GH	��	���Q���N�R�z�b��ˑLt�K��0*�@62�"hiA��ai<(lWx�k��J����=�Ђ�
L+�V�rš�Q/�ȴ��F�=S�
�W�Ֆ����F���|���*pY�v��$更�nPQ��Mz�Y�õ.��.��B��7j츲D�v������|D#��&F"A^��
�}��Dq�7�N�IQ���
�~��~���Κ%"+4>|�-:���{h�Y%�T��3��|�Ø5�b�7$[|��|�!A�����#�x��87R�į޴�?Ģ��L�W��,I��Nj�g�^3��7ׅ����^���޼}�p�<Cq5���~���������]�g�v����7zD�{W��P%������u�p����6�A��R^���pȇ0�rl��KM��و�<-?A��kc�Yb	��.7�46��z�(�J������0���-�Pf�9L�0��3��PV#��y"��a��?�9�j�9�}�$0^�*�E�s0aR|�H'�?PUH>��I�7�� w��R��<f��bi�E�3�-���_�&u���c@��:sc��O�t�V���Ú"1ů��|��<七p�"������@�p�X3E��,��s���f8��W^���"0l�Ф*�d��1Z��.�2�t��eB�P�W��F��Y���L�[��L�}�,�xi9|A䝌A���xTh]{�Z���i�ݫUԒ��d����Š��Ln)�����$��Z��߅���
F�ݖ8��FX�bnj�����p�尪=���s�S3���
���'����E*�Z�9ͯSt��x΀�LX5$ﲥߓta7#v��Y$r�D��ف-K�&=t�{89��@���?I7/���Kz�W_ʖ�.�C���g�ў�x�� r��	V{�鈚�9c���L�E~x��
L���%�x�
tX�ꄫi72��Db�
6×�#TkՍ�2�������j�Q"������}l�ey͚�R�e9љ�mQ���9_���u�R�L�3r�i��1�n��!��3��b1}��2"�
j�S\6`,��E{Z#򯰌�tE��� ��qʈ5��X�c9���_���*�e�RQ?
V��ٲ�QÆI=DZ� KE����%�
�Bh��W��dX4�
�|��Q�웿(�4>���W�Q��d��Cq�X._|�k?��aN�a�����z��P�ZZ�%�r�b��s�~�	>'+�S2�n� �C� Ӥ���,X��ΰtȣ�
a�����\9�m��HQ)|�B�A�;/7�����OVD���ޞr�A|�ĝ�5��
�V���[F
'h9>��un�[d*��R��P�˦�S#��&Ni��@�Hj�9�I� {�.�<E2|�Â�K�*1;�<�I�Ŵ��g�i*�����%��[���~����##�b�Y�� YRKMR'=a~Ç>]��;Xi5�SB�r�G	M��1W7H(�Y�d+pI�ͼ�k��l�؍/r�pqd Le��i=�����eS�W��_��)��W9Н����gP1#VP����rfsW�.@�o"��bKX%
� 2�,Jt�CV0F�xAS�+�[p�PVCB��[�yr�1�R�l4=��6T�I
klň��;��vb�+'�^qT��Q~���%���%�����������L|]VOܡ��]9�б���WI��a�1_K)�}>�t�5�}64�b
L(jz�A�Df�<�����
!�I���|U��WiG7am����8�AW���鉯/Z��cSF?��DfW8�.�(:'X��*D����G�2�uN�2
y���+9�e�λ|�h���bQ�97�����(�C�)F��JY��6��‰�;��C�Q��tЊ�p#22�wi�����6�p�<5�� 1��dn|:�&^㺋��R6�3�W�afӆ���6q��U	}͚�Ow�ž�C���4�)��\J�]���o"�#b�u��{�.q�7Ndɒ��`d�K�#��H�V�4Ӕ48%��ա�s,V�+�����$\�]�R˾��X���-�Y�?�(	��������/�3J~M�>ʨ%���������:7�ïe�M3����x�B	,n��aK�X^J�!��Z���5��_���e5O֮��(,Dz���%ψ�ː�F9!
�x���BC�*�u�Q�$�e��ȈP29	+�_V썕&��:m��$*D�[f��
(Sj����y��(��Ey�KV�����2�Q��20�q�zT�nܭ�冏���׹��k�UY����Y�A�����K�T"-�S<��J��xe����<�:fiV�?D�Lr
�U�v����?�"�8i</�Sd1�*�9y���\��`��	��=FJK*������g�@��gu)Ե,�g����
.�T���V��Z{)��˾�t@�/U��z}�����<�-}I؃Ȃ��~[�t?f.S��
���.@����ŭN�}���
ܨ�+!a���'tC���`�d]Y�f��`<�XR��<����D�Q�8r��A^��5���[��%���J�K�Bbed�*gA�m���EHX��H�g�=�w�)Rb�񂡭�����b)�E�0e�cʸ�G%5�F5��dw<x��:a��i�n��(�P����0&�+��^����"1����L��*��1���?���c���Bʳ�9�*9��O_
�T��v�6��A"w�z*����L\�S3���)z���ĵz�D��b�J�e��Ҷ��Lΐ*٠
�WC>GE4��kl~7��hC�=��Ʒ
B���et'����Qq'��;)���=2*'.��G.X���eM���$a,b��D�9~��$>2H�rt�C�]!��sR%�R&-�Q�a�Bsѣ"�BI_���9q�K�E@m@���_\� ;~D��!����H)�$W�
3����y�nlb�F[�֗G����d�P�=9�S(k�El��z-�,�CN��vO	�*և��kvw8��-[D�vU>�!W�ԓ{	��d�ɀ��WO�?�f���<�R�9Y@; �g�.��q#H_��ba�#v����vO0N�ZW�J��������[��V#>:�AͯKX4�o�`��섬<h�&YMe�l�[M�.�&���+�<WG���:����6��o�0v��fWx���77��?�6J[~й��'���Cb��/}��4o� P���^�;Ы�`�X��qT�d�c�p~���h��'�ݕ�j�����^�9T2s
C����.���뒒x�h��Sh*?�iSG��}H2��Ȋ�a�-`50	�s����0�\��(;�6s���f
5���s›���'�b�����8�w��w�I�E�P�r�D3�{��mb�:߻���fSX�U��x�ή�ѕ��5|�d5�?=�}���~�~���;`p#h�D\E?z�(�Ӝ���DI�.8��JД!�9$���#�)�(j��E���sJ�Η=B�#����w��ߘ�|��m��
|J�HdO����w�_�%��sg��l�+̌Ny'7F'���g�wzGjA��+�Jd}��Q##��^��T��Q"S�[�m5��߾����ˉ�⬚�o�-�W�({?�Փ��'�Ac�X���@a�5�4����D}Nک���q�m�6k!g��MCi2q2b��T�չj.*���bd���@�R0�Bz���σ8:�c�֏��)%�c�{z�
L��Z�_
�u)?��K;o=�p��ŗ�&�UI3����A���;�#pS�|�U
��Γ��'�e�a�&�'�o�qT�]F�������,��\�{����.+n��$�c39˅��;nnz� JCg�†/�̤n09��S����Q�]��f.ƫmI�]�f�n����=NC��V�I��9{���3�H�/�VzhHh��i?�,��Lp��y�A�+�t=�nrw���+�ye��{;quo.7=�㞃+;VB��#���"�5z�6;o�R�^���.��9��8s#�ܗz�N�^ %ݺn׸��6[��4\
!��V�W�\�-�O'��嗙3���	��f�3oIJj���GO���e��+��0�
ut�2q����J��Ή'��:��F"���]�G
+
]���*�"s9=�fQ�r'1����)P��J]p���r��.�Q/A:�:!�	��4���ǧ(��?���)ں�M��.��a�7}۴��Ҽ��Q�ZҬ��:�����`:��r�M
*�G%��D�eڏv;U��Ư>��AQ�2m)l��Ci!�`�j�)��������j�yX}{���psͤDϤӮ�-�$�\�����۱hK�]GR~&���y3�qQ�,�o�9_�lp�d_r~�B٢�$����M���̄��GO��r"���^O�X1��v9���E�'a5�	g[���%��R`������i3��|<ͮ�U
|~�`��ۊ��H[�SpϢ�|z���L�O��� �aQLy���P�,1�^��y����>�����m�fw�ם�&��&o�-ん�}{ޒ�I�,O�I��ʫ��P��C����T������������f};�<��_TT�i����-����6��ӗsk��uD�pþ�Z�^��g���p6�~�\���
>�5�6�nʍq���ֱΝ�"˱;��=�O�m���З��L�q�<,�b���(��]���ŶT�3-��K�l�ݞ�z�`z�n�<?��^_F�U�>�����#ն�0�Ջ���(�����k)�}��-[$������GB'n�!��ǬD��_zn��m����"G�����+P]���Y6J�D��T)9�?��v�DI=�+ �^h��ϔX��E�~|�
dl\�Y�᥽�
�R
�����b̲i&�aߢy�!���|9j�7�
T:{�܅�mVM�v
�0H�%�����?�Y�-}T�>�^�j!����|�nBN�$iK|°ʁ�N'iH%�f`�b�yj���Q�/- �v�pΒg����Y�A�ߺ�����s���z>�m�7;��P՗.)X�<g��͝X�^�JM��W�og"�Ή��*�P�,�r�\~\x��~|���2Pʵ�8OsQ�!�-�D�2$UVo�
m�Η�l8cu+N��k�YVqO��)\R~_?�=\�M Й~#�-�1v'��!�oPӲ8 о�%{q�L'�\_d%	�]
�{Vm���k�棢��\[�4��*Y���lR�7���d��6���x���l}S���v��aV�o/l|y~��΂&@OF�Ae	r�� vU�?�?^T���F=4�Z�������NJ=�Y7���p� ��Uʾ��H���Yh��y��ޢk
K��P,�12��铲�h�aԮ���8÷rրH��tV�5���(����:��I�0�o��(N	xt��8>!�W�;�X0��t2F��;�1-y��|-�]r�E��)��b~.}�?.����
:�2��u%�#4�%���^6q�]�D�h(J�\(P�
)��X�	�
tɆL~6�-ee�aGN��G�xK���υN�"~j=�?k)��Z�Q����(P'e�V=T�=�����+�E�!;,���9�Ave������ J���2v�D��X�6�)�����!�uζ��~8zw(�N��)�C� 
fQ�(�	��K�$��OU;%}<yq��M��!��������A�7�G
t?���âyݐ��(/�>?k���-��rqX�!R
�'�C�U�I: Ϋ��	�Vos�,Ul��7@�2�%���#����rJҡzp��R�Y�v�=�n��X��>���H0-l�V��&2Oq��9:j=$�@��T<�|Hc	��C=�1��
����S��S'^�^���I;]�^3�GH@�r���7�-�AS�����9xq���C
g����q�R�������=�m�� *�H���\)V�x�S��j�T��S)H�v5]�=�OH�w��2�e�ʴ\PO�
�����ј���ә'u;���:9��-�M�<"{5J~Ӟ��yn�cpX��{rѦ=�P0K�O�^1��d'��^]� H%�"w��L�+��X�艄c*|ɖ�r�b����g�IEND�B`�admin/images/seasonal/christmas.png000064400000024622151213254620013420 0ustar00�PNG


IHDR?$_	pHYs��mh��sRGB���gAMA���a)'IDATx��M����'�u����v�&�vV3�Jcb�F�hHbk�R&D��2��^.1�IN1�Mr"\`N�9@�Z�0+�H��0�(�f3�v��(n�lN\v���]5ϯ��xL�S��OUW��H��]���}���[Jp�J(��ꎉ�4WI�&RjT{N#��F���O���L�5H֤(��S��H���T�#+�{�����tYh�>v2{;ZOW^�P��X�!'kBkd_��H���~o��;����,<?U;u$������c�H�J#5,st_��"82����NO&0T��z���/������8���G�k��&p0b���� �Z��qt65�`�	�@��	�M
0�� ��Ki"+B�On�Բ�o͖��Wo;�}��Ÿ&�
}f�g��tǖ�iOucڶ~$}f˺�m��'�{�J����鍳��;���g��e�l��C�4̋��i,��ݷ�mc�?�c�}���Gץ�c�A����s�X�ҭ����ҝ7�
�J����7�p9�����»��`)���C�k'M0 J-��l��`V��e�9BA=5^�B�#��U�N�\�<���C�{oߜ���od�(�����쉩��練�aGF�ŇB�@)��rsۘ=�-����ɡ�D1��[�V���g~w���
D���[�j(��՝Y��L�+d2{;Zօb� 6�����~D���۲����D���?t��̾�V�@),���_�hJ#��j�?�ָ֨��q�ۏ���_���;v�0�.�7�jX�V2���&���Ɔ��_�{�9��x�\�g5�f�@���5k��3�E�Y��Qh�u�㶱뷌5W�������J��+4�ւ���O�y��kŔ����}N%5~r�v�}&�&m���R��!�}�ӛ����ؼ>�T3���^��Rs�R��]c2{;8U;�|R��K����g�ӏ�yh��bM�w~�a�s�����M`Mi��~y���s�!`�{��
�r����I���wn�ǁ=O��-�=�kI!�6�.��~X3淓���1Qh�����Hs5,sy�e�h2,ʌWo{0�F˿�4�ßۖ��kbԿ�'ު���yO9�uy�O�'kB��a��D' �@�/�+0��ȶVw�����kuԿ�NM�O�	ր�c7>���Z�s�lߘ�����y�-iPĢ�;��WLA|f�t���nVGS���ؖs�g��L������_ٙ�t�T~�X��S�҇3s�>���&��L��m����&{���/��?�����@�k��'F�6�~ufz �ǫ�b�E�#:1��uczt�Mil�<��\�����|�gT&6�m��23�z�j�[��6�9�߳�Yh��B�~8�͇�ͺ�e!����@�s����Չ�[7�k�o��mTu�����4��OS��(��2߿T1'��G'���hW}J����0Q����o'B���t��X���Ć��/g!`2A	��c�?��W>��A���	���|mll<]��z9�Q7�?����t�غTv1ſ]�Z��.��x��Y��v�ǜ$��,�ã��#��W�M��0��������?�oq�cuCo�#�����mC]����\zI`(eE�Djs�L�1���;�Z��~�~\;�͉��P��ؿ���F�Jz��S���[65��.L/�\O�G.�Nuul2,����4��i��ײno�K=</���~�Y��|�h�?��+9���WG��+��sQ�%0t�F�ka޿[Q<����#�
�\�ߋZ�V6+�/�w�yC���:?���B�X�l�=�M�NnO�#Ce~��s�=��[��ts�\*0�_�R�s�]���?�ֹ��okE�˜+~�~�W��f����9�^Z��n�fe���=V���������h�UwL����Y�*�}�W���G�ܓ�ѣ�������/N���:�v�����Z�r	�V�I�-�X��V�b�A7���`bCy.�MH�кi�9�h���>}*�/�w!��w�V���yg�/E�	����T�B��!��1�F�Řh1��H&F��f������e,����p!�];�%ͥM�Jmɋ˲��9��v��9?���oO_m~�˝�ϾDz�}9{"+�oϦƱ�Dz�,dV��c�4G�f����#�6X�T@�gh˺E{�tq�%,���h��7�-Z��d�.(�tO��┻=�74��}�չ�.B@���9�ʾ�՝����z$ui~����~_�؁X�'~{n9#�Z��s��O���#��Oο?���\�y0�?��#����"�F`���	\�R24ƫ�b��'��qh�/���T�e��E ���C�'�������:_;�h� �^���v�G�[{��2��w~�az�]LV�f��t����"pu1��Q�B@�+�06Wo�V�s�_�u,%
�׳���̊��c�=1������}�1_���KL�t*L�������k�ۊ��^�7��K�w[�[�?Vϟ��v����x�o��A1[
�~3ilYk6���0�3z��ō��`�<V��7gҞ��I��F��
1:�=�*O�����q�r��c꥗�/����Ә\(�Eo�k�ʢ����kaMH���9��
��pg6P�8c���\+�Qкط_��?W�>�����������5�S�cs�j�v�j�|��ppq�8t�b�����@O�J�/�*�<��.�������kQ���;w��D=m���� o��h��R��|?��?��w93�N`(d-�EGA�6��5F�ym�(4��h�qVpv�[���Yw��Fs�xc2-A��ŔCL��on�Rh'���Z��h�S뿗�Q��9�����?�����2�
�6��RL�[�>+4�yhr����?�ŊY��@�=�׊i��zx�zv�@tI~���e!�c�GbI�\N�W�3v.Ė�|��z��B���'�T����4�m�hZ�^@X��bb�?̛;]��vE�19];y(u�B�cYX8�ѭ�@�h7E9	�rm@s�~�΀�Ty*o�­x�#�N�?�����]�uN}�n��aP+������&J��7����)G�ES�������>�J�����+�RN�?���B7{������\�=�6G��nHEx'gg�X�q=!@J9m���/&V�O7�u�?��:�'ߪ����{=k���e��c�/���i�~�`Z�wP,�(j
*�{]s�"@j?�PI�m� S�Ӈcj �Y��F+�/�n����l*��4��ժ�(��V�����0Ek�A��{
:�ڕE����O	����l4�ww�DW"��Eh�;��ԢkP��?�@z�o�����S(��a���v����aw'�u�ѓ�Xk�ӓ��7��{^/C@��T@/�Zn��s�3ſ�<%��.��e��Pt�y���S���`��ZQ��9��&��]�S���w��e�f*����~��|����+��=��g��"�mA������Ph7z�������K#RE��Cm��:4�����Ϸ_�Ћ�?���;7����Ϗ�{��;~zv�P��!QYt.t%7�]+�`�Jj|%�X�(���ͭs!��oΤ���׵y��%q��o�-jodS#�Ve����G���W��ƤS�%���H���<F�����\�χW���8���܀z�ĺ��2N
��aA�T��?���5&gSc� l{k]��~�_T0����W�<Z9����B6
o���;�ȹ0��*?H}'�͇�����H�H��>=���w���o�v���o��M�CCa]kڏ����ޜ� �?]��:�6
j/��-zQ������gs�i-���U�K���+�"�"�Q�H�w��=$0j��hO.�XQW��4@ނ�~uB��00�>bQ`����ݯ�"�M���yY9�������j��Um��^�Ty~�?���;��co|^��+s{-f����o-
,�ހXX��C�6�:aյ��y���E_����m˦�'�1��Qə�W`��܉�'ӵ����"��7��Y����SQb���Ϻ��H����q��s:ܤ�dy�8�����1�6MmVȿ���T��.@�nH#�E�H}2�����8Q����rG@'�Z��폫o.���&�=����n]�(�9]������Z��n�XM]ԡ@��gs�{�iS��ĉ��T����QH�֯�؝�l�"��h��/�;���"!��5�T�>*�8��v��X�4@�y�s򳩀��/b�|�z�'�:׳���;��=�� �r�{���/�!E����Ε��T����PY�6Nm��Q�l�w:'?
�xuǃ�O֥���� ��w~�QZܵ�T�x%r�u*���/�R�Q�?|3� �ơ}"0Tb {�>��cQ��YY�T�}��;:<k�p�B@�so�= �A�\����|�G�[��=֩�ǖ�8�H�^���ѿ��OC�޾��s�H������a9�w���	^�hq����~8��X�9^�R�r�s���-�EfS<O[�G?	��"m碏ɍB�c�[F�대�]�����f��}�s���<���Ŋ�^���EV7QNC��t�G�-Ϗ�9�پ1�9Yq{�[�R�.�jv�^����\Ɋ��~!�(z���K���V��P��rS�Qpk[\�S�5�_����������aA�҆�??p]���U�����:Y/���Ǣ�^�?
qp�B�\�V�"��x�-rG@��_��c�ܷ>����0�r�y��{���-�N�!�{1��.B���"0�Z�ȵ��ߏ_�&�p��S��E�N:l��۾��Q��Ѿ~t�M=���.B�Bܑ���t�U 0��ޘW�9�����n�& �O	��E7�S�ߧ���t���ޗ"����٨�D7��8�����y�s�|��y�(]M�G���6U;u$o[\���/�5���O7獻��dA੢��|`QE��'F�/���>��㎝��Z�T��GNJ��_�t��_�Y�x���Yx���(��Cn�ؖ�+�r`�������\J�y�
��:��}�Ùn��w4U������淯�L�x�>3S��8�e_J����<�h���(�$���1��b�"ȣ�3ӿN=���SY��P��m��sۆ޽��t���L�3"��?�*zWf�'7�m�^I�/{���~�9�ӭR/�(��nm^I���� p��ؖ��ؖ�V��;��<�5����۶����w�;b��؍�al�p�y\,�,f�d��']um�-�!���t��h���lj|�ȯ	,G%�P�NT������hٿ���{9���q��z�}�B�ci���w�x��8>�7����o�~{�Dz����H��[�b��}�ˊ~��������>w�X�UNj��Ž??w�?���A�����l$�z��p�ãE#������(�qv|\s�]v��J�v65p_�ɘ�|n���l4�)���]���y�����.,.W^�������i��菍m}0��f�����7�<c�~�=���'��樿W��+����^n����ӵ�?N0tXS�To�IVt����8�o{t�˵�������ba����4�r7�Z�܎�X�{n�T������>l��}6�w/e�[��������~�f���E�?���c�#D��'s�e�ϱ�w%k���ײ�׽������b�`Z�Z��yb�z�:�n� .�Y�^O���o/:���E��K��e߯}��}T|ߖ�//Z�~[�V�y��Z�����r�7�5�[�� Xs�G�q�{�B��↼�����]��$�hˊf6呎fm�ں4s�j�!k��Ez1�|�ⷼ���x��{�>�jw�j�Ǐ폣i�:�F�6�"����Ȟ�w�#��VᏑ��s&����\�W�K�g��I1w<\[q�k���A �i�g�7����Q�1�;ژl�vO���#1�E?�^�[7m�����*`��Y��;���cyωb��'�����^X�b�e�9�7�yG*�_��T��L�������6�� �<��zj<�:�����iQ`X�N��b}�3'�5=�ֻ�uw��n��'�`���پ�9us����^w[�Z'���A&��WwN���m�{M�b���A��@�Sd�<o��Q��}s�F��wlZբ� >�8�G�g-�x��Ѵ�`=]�B�΀��V3D�>�#�-Fկ���\YE��+i�^��E� N,R�{nk.V�'k����x��:�ۢ�3,ּ�5�Z�؟���:������7����1���U������
�q��RC���k����#�DK��-�Ӟ��f��ǝ�??:~�����)J#��B���o؂� B���
��ɃoO�6�/�ίmU��(��~��U�V��u�ٲ�y*b5��gnX׼|g��B;��s�_9��J�Pyh����CB�T�
�Zz%"Yx߾0�|?�Ai���]�.9�ꩲ�B�e����]�J��i��Hs��~��vϋ�����)2�jm5+Z�g�W�}u��{	���C�~������n��<�j�~�`���"q��L[�ѭ�i]y,�p_���Y�O~�Skv��-a�&����sin(��K3��(-��E��M�i���ؗ��D���T��\�������-lVqgC�yjc�H��O�6t4^����.v�L��m�߿s�n��'�:��6PB�&ʩ�O'�4��ƫ��^�r����b��ß����A���e4���C���%�	���*O��3-0����(��N��c����*�5H���F�f�����s�E�E�?���5�ep-R�W����w�њb �Z��>��Z��2���[79`sP��c���<���3�ݿ"�������3S/'����7R:�X���B�8Ӟ��'Ĉ���M�/VV4���|41����TYvko�r4��.�>k�+F���|zὋ���W���K�y��逵A(�ւ���>�2�.mے6oݑ6ܰ�T/�ΝN�"�-#DW���o�N�`��H�h��Tz����f?�[oڝ6oۑ�&B����43�Q�p��>���k��&��Pr��]Q�'�y��N[oޝFF�=�}��d�byj�A Dx�sۚ��;K`y��ޅ歈�-�!����9~�i����!�K����]N^@�u;�#��v�i��i����fo��[ؽe �4�|p�9�_n{�Z#�M�7�>�.&~�?z���n6�l*��PJj���Z��o}V�?u�]^(ۈ˩3'��>���4A\<tϭc��,��
~�/b!�������W�_M��Zsz���T�팀�$�Ԗ�m�e�`�sb�t�ğ+�]Xh�.wj�z�C�[�Ҟ7�=Ս�����|A�s�s��f�;f���f��T�>�h����-�R�����H�ǧk�&��PR���3��VFa��;�@�m�H�~C�!X��՞>X(��\���+�Q{��|ag�j��zy O��͟J��;��`���?�F=�{UMw[0|�j]�Sy.�9�[����|��uN���g:���X��lY�|wl�A� 
w�|A_(��"B�ۛ��h�8hϞ�����S��Ѹ���{0Z����-��2(^D/f�
z!
q̕�Mt�ƶܬ��C1���gw�uo�0d�j���Z?���E4ޢ�/���?J3Yg��Y8�"����U�׻Cx�Jb�(�ju�:����{Ύ�~�k�,��x�͊벹���ؕbN��bA��y%�9v��J�j��[I�燣����ϵ����]�xv�}��T-����
�V��&Y�������񅙔&CC(�J��N�z�]=���צlN{����4wu��PP���f:1%�qS5UF�7�������C��u�CE(��j�hgԋ�@i����߅�� vD���ѭ��T���.����7�e�����>�zV���y�6Z���S���v���f�5cXtzmȾ���"�Z8�9^�;�ɩک�i�Ww�,3������"@		PB��%$@		PB��%$@		PB��%$@		PB��%$@		PB��%$@		PB��%$@		PB��%$@		PB��@G�����"�N�����ԙti����ų�����4Re21T�%Je45�ͥJ��#��	z�w�%֎J��L����NOfY�h(Lcr�v�hb���x:$k�{MB@	M�N�&�_�4&ץ�?I��FR���]-,_m65��2��#�T����H�	`�j�2�\W�0J�B�c�Yz�&X�Fj�M���5$1����N�T�ԁ�Tߝ��~��Z��\��
�׈����)#���$��xuǁĐ�Ԧj���U0^�y_J�jb����#.�)���Ww5�fr�vrwZYx){�ٗ*����1���.(!JH���(!Jh]��ܰmG���sW���4�6m�9UF��ۥ�3�Q����>
s��诫�3���-�?�6ް=�_�/�*]H���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!JH���(!�D��W����=xuv&�k.�7��fj�'� ����S	\Ο���d�4���rޣ�g��8�V���t:�D�gU^O�����{����}M�#����Y��Ditm4�?�:L�(���?6���J�������S��E0oLN�N?�(�u	�T�MֶTw=^I�yϋ�F���i�
�4���alK�7�x���e!��w��L��p&]�X[�G6%J��`	�Չ�\����0�Fu'w�U0^�R��/1�Bp�|��]�R1��D )<��5�1y%��O����M�Ni��h�\cr65��_N�2];yH�a������EH��KYi��Fj<>�.ݥ�����L�NM����ۇ`�e��h#�O�N�e�&�b�l1U;u �烀�l���|���NM��@�j�v����}Y�����P`��*���dZ%�4�z6E����S�X%5^_�f����oN
��PUIEND�B`�admin/images/seasonal/black_friday.png000064400000016635151213254620014042 0ustar00�PNG


IHDR?$_	pHYs��mh��sRGB���gAMA���a2IDATx��M����_?�I�Q%�e�ƒ/�#*�ʎ��R�VnI|0��-{B���pYrC�!U�\R��T�%e�rX֌T�=B#3���{fT�b���g��_>��A*U�i���|;�!`.�S��Ǖ�g�2N��<v���2�5��K$�=��c�tٓ��Na����`�M��E$�X�����/d����.Nрc�Sg�=_��L�Q|M�f��f�~�u^���͛�?\����r`���@��+r&V���X�w�����Q����~�5�$\Z���]����� �xЏb�i�5���<fo,*?rz��b.����ya�O`Ў�y6b��e<��a���s�|����΂���&@��\ןŃϷ�i?�f�qa'f/�������7�`rc��t����?��?�n�_�Y�>���㗪|R>,~���m
�����={�#S�UmVx�%���?��l�g��v[	�r�}㟽\x�}AG�ڨ��x�����h��om���Ʊi����g%�R�X��*w�G��S����0�.�"<4ݾu�]�}kks}㡓����^�s�r���ZE���s��x��S1,{����[7޽�EE@�_
���4�?��~���@�<4~��y�/D=�ſ�b1�^6�]�b����Y���.��Mf��k�Q�FIJPh;f��k-~<>5��g�k+�R|]�뺯���#��z�n<�ւ7���D��݉�p��~���g�ש�!���A�����;�9��gT��	�B9h�b�V�T~:�|�c�U���G_�qf�^�+��KQ�t��?^�;��1���,�@��?����~�8�b�WW��W�B���a,�h^9�1*�W<��E��Ϧ�KyP�N۟��쵟�ʷ�t����`ʿX�hE�����,�;l�@�
�\�"#`1:��ÿ:̴�/-������G��1?�В��M�oe�Zz�={czU{ 4L���ۿܑ^<�>ws�Q-������<�鼃n�����=�ǧ�����I�%ƞh�(���'��7���j9�7���E
�Ž^(� �'��oL?Ί�����O��V�����1)�M~T<��_��l의�G����7��Hd��9��'��g7����l�+�m�5��A?�^�/޸�S��Z�;�<y׵	���s�7��:��	t�!v�Og���_:�n�r�/��Rգ���d<��w��Q��윭�L��˗^�L����jg	�N��y^u���'˧��K��۞�\�3[�7O�t�9�lI��F��J��5(���%��Kٙry'�ڙ�3��ֳ��}V9��O+���#�<�^>����,jC^�{�N�&��$����sQ�y�(�b)`Q%L��3@�dU7�Sܣڻ��A��+oH�x���+q�r���)�~�����~����.��x�6�p0-<�J���/�3�_�Sw�0�Y��㵽��z�&��e�&�`X����\W���DB�6�}�;�~pO���'�i�wé��Z���/�f'�חS�M���i�ҲDy���{+g>f�����d{E>�9��*����L�Э��[��6�Uyj<{���«}���\�g䛫���U�����#�Τo��&�G�ݾ��5)�i}㡓EH�^�g�O0Tfh��X9զ�_mjʸ�sy��w�K1{ҪY��j������{�!��V;>~��H�fY�
8ؗ�a�O9c��s��Ə��E�|�+�ɺ����;��;�g���?�_ew}~.r��?�^��^y����z���<��������	���闖O�M�R6�a��@��2w��G˥����^�h@�`����%�Je�}�M������9}f&n��|,�j��)Sg�_c����X��_�I��٧�b:��
��o�9���6��{�U�}�_�`����@[%@�
O���>�?�����^v�N��9?�T�hdf�B�����ȓ��*��©�:^�;��]�O�z?�W�$jff�@�u�����b��I��x����2�2@�=��w0Ԯ�(��BʵM�L��N��t�M�Y���hpf"]�e�Y����+�����h��B�"ot�=K��i�k�)i�ݨR�9���(�?&�׊eX��)�<�L���Av�hb��Dk����{�+�~y~�I�U��?�=�P���� {;nU��ލ��c�~��&��g��9g84�V9x�Nm|K�"��I������*_��z�Z�=m��h��h��ؙ�^��i[�b�a�z�,f���f�,VOFC���9�����$�Ch���9��n�*o�;��Bh���Z���U��!=ԭ7vB�J�U�Ȓ@�h�c��mF�M[PM|7E�HZ�i:�@	��(9�n|	 -�K��~�����g!R�'��/�#e����g&摼ФQ�Zy_�G�K����i�rKph�s�f�n"����=p�$�	0@�$�	0@�$�	0@�$�	0@Y0X��,|>�8����I�Iڵ��hTv&�����6����d����<�״�����=�;�WnM�nt�0P�Ǐ�����J�Ӗ��}�7�s�M?~)���OMvc�a5ȟ�1����n��nd�P���```���x7��P�Y�<us����Q��c`pnY�e����'�	0@��p�]�G��#Bs�lݎ+7o']���8���3�{��
��ݹ��x�d��;4��K�i�T�ǿ=U�Եh�C��}a	H�`� H�`� H�`� H�`� H�`� H�`� H�`� H�`� H�`� H�`� H�`� h5zf�=�+7w�ҵ���wf{�V�xlj�Q��G{?>zl-N?b|d��`��ʁ�ҵ/�{so�/��}Ue x���c=~���|@(������V��/=�U��z�_�}����{�V���|�x@�@'�|��hʝ@}b^H�`� h��[�����1>5	h1h�����!�������#�f�KU���s��cv�]�k�+?=���kw�KW�Y�+7k�y(C��Vǧ�ٚ^��2�4�����^��"�-~?������z|�[�ce��Z�D��=�a�?|���>�0.��9>>����7ZD�bQ�9����:���WV���'��}�Y J�@�4�懟- ����l&�6��8��on�8��_�:�Ke�o�Q���y���̿G��	x��goN�p1�lWn��w�/�_����o������o���o���c{?��xko�H[@�^�t-���ӘG��7������G�j�g�^��K&�)���y��?���ɿL[ӏ^X����fT�G���/,�4�,��/����|���O���7���͕8�T�ӷ��b�c�Sg�HQ>�W=o��Ǐ�=���k�t�9�1�������l��2	@����U[������肭����K,�Ԫ<�_uݿ��ߕ����Pms���Ij�گ�W���;rױ���rs`1�_��9YdfX
�M������_�k���ȟ�v: ;c�e��T���o������a�����,� �(���l��S��e���fh�Ԣj��_<q2�d5��?$�&��iP�_��f��/Ot~�ʎ�<��,�^�$W��O�b}�u�}��D�Y����
��{���y�oO�wT�(�!�8�!�P��>�"�����U�Y��EA6�X��~�>�����Y�����	h�,T��`v���E�À��\ߞ%O�����r�~�^�H��4�����ڗ���ĐTY؍#f��,L���Ù��#} ��ـ�	��|0�N���ڈ!Y�����fO�L�ҧiK�+�����:C@v:�f����Yҵ�=y$�){7�����$�F�W�ҪKO�\�!ʒg"�"�@�`!.M�O<1��Y�0��~W$�t��/�)=vl5�h-v+�xf����\!<��6�1�^݌�B�,�~�"��������t]�X~X⋁�I@�`!R7�X���|3�Qdꀩ�,D���`���R_
,P+�AY��Z@��	� H�`� H�`� H�`� H�`� H�`�V�A׷��￈.;6>u&�X�u�c����_�"kz�B�[Y0(���n�>L����}#~򝇂���'_ěވ�>Y�z���w6wbv����f�;f��^�t���4�����SB@���on��[�׃�����Ӏ�egƅ�W��۳�tm;�	�c�t�+t�׾hJ+��W�r�3��3tԕ�;M�"&A��Q�w�М,�I�+t�=4)Ko0�#AG]�ɓ�;�8��8�u���f��ܺ�uş6{zF�������ȃ�x�ķ�Η�O���ՔK'A�X��J��_]���l%�9pc|j�T��;+����@���k�G��[�GG����YYY�p��6������m������V�'tPj	�hd�/��U�3��_��=���*�D��N�!@]N�X1�������b����RK�֎X��R�*�:�ҧi5���b==(N����R_�v��o�J�0	�1UJ�F��x3Tʀ�I���R�������R4LtL� � �2�a�c.Mmd��
��:��Tʀ�I���`��t��P4<t��ݤ��S�2���c�l���*�
��ZT�l7(:�ki'JJ��B���!U:�Q�2���C���@ʀ�G��r3��	�R4<tH����R4<t�����y���O���C�Q�ԣ���$�<:D	uR4,tDyP	uR4,t���%%@�Cа�UJ��+��}UʀF1z,�4:�R���)�P�h�ǃN�#��mdNʀ�E��PDݔ
���&(:"�h-�,7�ʀ�C���tm;�ъ�W��1����T�aT(����>�p�&@�J�܉�I�Yt@���u��):�J�`%@F�2�ՓAg	��%@NpX�ʀ�2: u�V�2���at���<�:5�,�2�a��l��H��
��h���Iʀ�A��K�K�Xe@� @�]�J?8�V�2�[�!t�-���U)Z��ɠ�h����5�J�Xe@� @˥���Ϣ(Z�r�� D�0�rJ�X�
��:J����iZ
� ��Q@�;J��K}� IP�	�bJ�Xe@�'@�)bY���-��eQ��إi�@%@,�2����Rg���hʀ�O��`��t� MP�	�b׷w��[K?�ɔ��-ve+���?5P�o�� �IP�	�R\K;P�	�:(�7Z�J� ���h�*5�k6�xʀ�M���r3��@���h��O��EP�	�R�o:�r)�7Z*��	���h)%@�A�Q@3�#@�GSK�֎�oԂ�Rˀ�I�)�����Q��ZP�2�����������@Uʀ�K��T��{�S�2�U��"@���;@ݪ��2	:C�J-��Oݔ��-���P�_�� �DP?	�B��m']g	�&(�'Z���UG��2�~�e>�pP	MP�O�� �FP?	�2W*��@���-���Q�OsW��ϓiX��=����UꛘY�����oo�}�NJ�hJ�2�I�	�����f�"��e�M�N��F+fh�2�����Ѥ�M�y�=!@G)�I�L�Ngc��z��YpXUf�6Ƨ&A�	3�n �t^�
R�?��D�\6��r��U��V�
�M�W7�pV�.'hZ��Ie@]��@�!����c�Sg�Ȟ�";,]�b�uj�i�2��nkz�B�Å`����x7��@j),R����[���x�8��%h��ؙ�^k	�e�Pt:h=Z"���uS�Ye@�"@K�%?5�FkMS�/�D�n��Դ�n�S�/�D�$��5�J�X�*e@+��X�#�-j��,Uʀ"�ml9Z"O\p�eQ�/�D��)3,�2�~����k��L�����-P�h�K��?h�*%@�X&e@�!@(�+���-���P��� �BP�J��e@�!@(�+���-�zd�k�Y6e@��q��,ڍ�kg��������܇��{�2�V`���ԩ�ϯ_��.P�n�`�2;��)e@�&��U)����%��U)��Q�^,Yj	t�2���M+@K	�d����4ݚ^���K�G�G�=�G��V��?rz�������(���M?~*h-3�7�]\��l���F@�M��_��g�V3-3.܎
�tN+ӵ��9-���U ���IEND�B`�admin/images/seasonal/summer.png000064400000005310151213254630012725 0ustar00�PNG


IHDR��,�?��PLTE�������������������������������������������������������������������������������������������������������͔3tRNS���O���ɣ4{#����J'�ӿ��uS��;��\�W.����eoC�m	�IDATx���kw�0��?rWdS�zi�T�s��۶�U�	�&��y��6$!T'������� �F��٣&Z�݊���Р�	qR�����C�c�MM3ć!5L��ӣf���`&�(�!N��$s'�95�Sj6BA�Qstp�C��™5�g��6���>5D�M��k@S��-���1��XR����h’b/�G#���$����r!�Z�AjF��u<�]R}������1�n�S��R��b��أ{�x��1���oL��]Lw�8�7]�J87]�K�ݧ��a�f7��)\R��x���8ZD�GW���7�
K��\OŜ;2�w��3r��פ�ĩ����TۢԖQEL����&8�6]�f�R1U���dI�����TEo��Uў�&�'��E?
�����Db[T��3z���T�@�t����j���&�:��7��3���ѝ:��x��j���F[��yCf�&5�r<���C.b�Hb��I�u_����3�(7�H)k�r�#e\�����3q�����#�q�V��J��1\��B�-�d(T�$��)ڹ�.zZ���2Fz�)�1Q�Gbm���9�x�cm��%�
�Ս��,�g�4G�<�ϻ$b���]Rl��'FY��qN�+��f�Z;�����G|�J|d���	Q���iJ���mq�� ϗԙ?I=��yt��9��ی�x�:� 
�x���X�q��ڠ"KX7%G�ƨ�31q#sҡ"&�s�b���ME-wpZT�&8=�c
���w�ó�'�����z��蔿6q7s�^��i��6�N�J�dU���H��FP$
�
G�A��l��8>w�u|@�q0*N�	�̹d��Nk�|����xF�ؿ�5i5��PЦ��[7"�X ftj>�r�9��R�E����/�=�����s�jrh���[},�&�Ï���	|z�54Z�C�&42Cz�Z��@-(��Nth�t�A�	���kڙkzև_��
����R��ׁ
�&�|��h3(��W�P��,�
Ϩ^��Y$T��3j�ܥ:�9j�礑Ϩh�Z�H�Hړ|W<��N����d/��)���uX�Z���˘�բ{��Y_��P�L���V�nځ��Ĩs��'����
�M�O�X�T�$.F�⓸N-�`p�DێH�r�,/�9�����8�šv�8�a��c���g�v�1�B�K�Q��|�p1n��
q��Mb�d�U��.)�I�ä'|A�1�jq)j���Lgh�)�
��D햂8)��AD���=	��F+F�e��qjI������j��:�O]�8�s��{�~�w�͉�P>P�[���"�Z��֕����mgg�����>�;�r9y^��&�+n���t�k9@����(z�0שWA�����'�y��7�U����ו�W�5~��y҉�s���K��8Y�<�����~���(�ɲX��/n'��$����bG�8I6���
�{�gc�}wQ�$[{��޽܏{�I��W
)���Il�c #N���!L@���@��p�������3ҁ�x��a���?/��\���
-�u�ؓ)^���=�aw�l^�Q����IT�%Q܊5�'Pb!��F'�:�y��3�{x��������-!Eli���k��[�`�#t���<��*��~	��ŽL�/(�C
����ha �����P%hC@��Y�����9c�d/4C��W�[�c>C�3�H-���@�`��Ɗ�05֊A��Yj�jI��ut�]$FG���\�q��F䱄.lI��p�Q↔Ap)D��-.��;8�^	�wR��i���H�vu�	�m
s#a�\M��8��::'�����!\c&���OL��[	ԋ׼�2�,�O|'%��H�&4]�O���W�J�r'̈���B���0�|\~�W��0�HP=F�}B��� ��g>���6
��S8e�pt�+6th+4th�p\�+<�kz;��m����?%\�X"~='}n7b�h9Z�-�"E1�4ѣH��E��~";�P����m�ȆM��װ`��%=�a;{p�ײ����<����[�A��������皀�t��{�k��1�A���܉ɹ�R�+��~���~�p?����q�}���3��5��s6����9F}���A|\����Мϓ����G?}��o�9�#S�glS�l�<�ٙ�}�)%jΘ&Q�x�	,cP�߲\k�7�Bi��cJ'�)�T���V\+,�KP�7U��u�O師����4��:
��\!Q`%G;y�@-B��
A1U�j�JN��6�-P�7�^?�ʭ�*h���D��U�;;��d6���
���U�)�>��IEND�B`�admin/images/seasonal/spring.png000064400000013314151213254630012722 0ustar00�PNG


IHDR��,�?��PLTE������L����M���܎�����L����]�ڂ�ۃ��P��S����Y��P���a��d��w���ڂ�����L��T��{�ۂ����J��o���|��P��q���X��Q��g����}��a��Y��k�ݎ��N��[��c��i��U��h��V��g�ԉ�ޏ��~��P��l��v��j��M��Q��[��|��x��K��Y����U�܍����ٝ���S��g��h��m��i��`����I��u����q��d���V��W��\֧�۲�歗���PϘ��[���`޷��O��gҞ��gج���V���b��a���a���۲�]���ܛ����٭��͖򾊸���ͧ��K��I�����N���͔�S��J��K����I��J���������J��K��I��S���O��O���‹�͓�R��t��Rʑ��R��O��ѷ�����������̑�����g����D̓�P��Q��K����������������������n��V��R��M��H��������ӗ�����P��g�����⼅ζ~��ː詊��x��X�����������ʾ̤�Ɓ�o�dќ���Ͳ�k��W�����޽�������΅�_���������ϳ㣚��m٬�������ɞ�v�Z����ݶݙ��d���֡ؖ�Χ���±��’�Nj���}ٵ{�����א�%D~tRNS���
�}9��,&����a#��k\��H0�=��+ �KF����ɯ�qWNBʧ����ՈQ��L�c?3���wW@���qb0�Ⱥ�uL���߶�-���̌�˼���gWݔm�V;�鸙��(�IDATx����k�`�'i�6i�$�d}ٺ�e�[�ee�Z[F�N|Q��Aы� x	���;�<(xVAd�	^�����x�f�-O��ͤM�N���
�O����8�9�qz'�S
�E$T?��b���J*�H�Ry���t]$�`b\*p��*akV/ݝ�q^fb��ъ�q�{g�Pb{��r�7��2�8*qNx��/Ԧڏ(�r{JN�qNd�gU.-B�/��>�!�!���X�h�7s�:�9&=ޞ<>�w�*�C���f�
d��;����Ի�վ��19�}�"R���K<�B}T�ija���
)���N���@>���Dl���#2eDk��0-��̙ �'lI2
t�lB��cA�(�B6eZ�]-��/]�W'�›�?���$�b�/_��>��t���!�缇��aN�A��:�/x�@o�Y�gS���.b7�d*������L��t��P��� 8�عI�vT�BWSg/n)yPK��v �~���0�6������Z�E��A�h]�*��".`m�ZI�C4Cx)U'�#�V���й�ac�p�l��j�베�$�����F�h�-H!�JRP��VΚ1��؈������g�Ѧ���sb�"J�c���ģ�c�Κ�e�XE�~�D�)�/��#�R�6�̴�5
��(D:;03J[ȝ����@��C�>QY�f���]Pa��`<j��S��G�9�	�
��H�g�FH��"��KpH����{|$��p`I���ttф�s"ݱ�Zx|���7]�]:i��ؚ��c�/䮍O�f|��X��s�Ѷ�o�6<yY����>��<���0��h��N�=^oOg<���:��n�0A��,�Zi�f/����9k�@s	�l��js�R��y�����!Y7ɘq��mؙ�S��2u��{a��!�]
}���X����xEw5�>�Alʨ
�e
漣(�W�ԧtWG#�%1c7\��Ɔd�[O�~�}Я�r1�Fะ�i	�6[����������xt�B�R¹Q�#�T�ψ��Q��di�C�L�D㊉��R�JW'�g�ׯ�&��^v��^׫�"~(s�[\]�s�J�y��/��ͷ���oW�_�m�hM��z�s:���G����&�l�L���X�%:����Ϥ�]{�}}C.$½'��+�� $v��)�$��4���J9z�����W/�l�˒����m���גn�ƻ�<yt�������!0���tutH5�(�[��w�;ƨ�FqGw��=c� JB����
�b�PA\�8P4�gL��o�so����y�_��8���w�s拾�*e�u�����Do$4?�=E#�N'���s�X�Fk0����M��w�SײU(m�{��_�kpE�LȈ�ə�I�;���e{�e�B�$���鄉�˷R�K�I�C0�w�5��|�9j�OQ�7��=MܘB�>�3Q�<C����ܼ�_��)��2��������SViTׁ��f��	Xd���YqqYY����/���	[flR�����
�O��2���|p?�%�V�I��i$;�����S�u��
�ڵoa\Mm�����?�[���2�������q���ee���	��lZ�ﹶ��5m���ȭ��Z�+J�
%A3z��v�Ց�H�N�ˇF�\N��lՊ�M�7��7M�e���'����m?�LЈ������NHK��l�&*�h�g֩b�ˌ�5�Ѯh�Zm��=�N&�r`3��i�x\�����q� ��Q:͠z̺P���G���h��s��l&V%�2�����iӵ�2��5��AU�ueƑi���S��m����W�`c��i�������s_�z�f� �ҟ�`\�F�P����>�c<��r[ �Е����ԩ�%;�/_�lٶ�;��o�	�.\�	s�l�Yԏ�Hʚw��7"�ɫ��R�s�X6�!bѺ���Lv[�l[�ׇ�iO��O�u��:����^}f��@�|ƲY�ŕ�	�-�v��Ʒ�(~%��
�3�P���2O��q�o�l��+m�l~�e;	O�H��)~��oh���,E��,`y�O�l����M�F�I#�O�=�����)�UQ�����R���}]hAlI�W�~��&��c��3�W���=��7;�OaE:.�Ź�lD�͜J�������ٲ����w���r�Biȿ\B6��;h��+z��ur��LL���|
���J�8(q����C[���e�B�N�
M*�|h��U�w(��
�;p�&P&B�_�a	��^�
Vݼ����6j8��
+P��ތ�l�X�`� ���/=LUJP��	��|c���F���
5JSy�&�	2�`�ٿl�(㬯ske;.`#_d����J�JE���Ag�(A��i_6S��G�J��v��qn7q�h6����;Di*a}C��n\��c\1�MM.��T�����r�����Ŕ�;0;."�V3��q�c���61��<�Tzx�s:&�X6P2�	�\��Co�"֑��<�ݟJ�`�8�:��D���z��e]�mg~��q���0sT�T������$[����wI�J�q����֓��#*EW�����u���+O�F�ܓ�<$�,�(��P'��lDt� �7U��^����q�q�Z�qx6":t�;!Fn-z��91�2#��T"�S��r�`f���,7rUM\<�]�0N�M/`���.l*n��=��`��?z�(QΆ:��eA���16������2��,��9I�x`��s16�<\�:6׶�l�����Nb��m�}��@���:(6�o��g0e�FN�`�uی`�VapD�(eQ�Q�.}��z�s�U(��U��g��C�}��R;�c5l\)"�j��3Qx��j��Slx�J�O�J6�.�F�0��'1�'!��>1HK[��-�H�(2�2,��	�
w☌"�U����zc%ٚt�|j~©��Qi���I-Q/h���p�'I�O,��j�>_?,�SU��5�R����B��˜Z�����7El�X
&�	b����Z/e�N�8}�
�@]���-E���S��rp??I����B6P&�ˎRp�g�e	p�P"��D��
��["	'z��@(U�];)���lIl�t9W�M3OlX��8u�uBF�Bb���`�\�ށM�1g���·��ؕ���&����4�?PAmb,&��8`���Zc�DML7�D��d�z-�Er�)�T)���hRB���(�N��	.����+�.�cy/~'/7}r�{���hV���8AL=-'
f�?�?'�8ג�w��h�-��
���X#������4.��O%L��ྭ��62�Yi��Û�a.��Mi׃R�~�	��0�
p��q�s
�9�+���n�-�V�l�<Ύy�Ko7�'eY���A;V3&pш���Ǹf]ٜ
p�0cx�p����]��h�	ܟ!��70j҆�)���pYD-���f��Gd�!ܕS'(p�P+�#�9�qx���V�Փ�l�{�}S�s6Qi���&�J9��MMc|����k+��'(�sbl'd�D&�jˠ���Mw5=�/�E�7��t��K<�%��.����e�����ŭ��v�N�d�&.=��>��]\��UE�h�`|�%�m�`��e<o�����V����'$
)�N�n��F�c=�gI�K7��2��X��P�3|)�+���x�+��H�ND�P�Q)�]Z�gm��
V�F���S_L_8��y�LR"�ON�`9�3[��1�p���Lu
�u�;��*�t^Mc�3Z[�Ġ��Q���u��`z��S����Ӟ��D���ޱ�������kKlV�H~��Y[���-���AU7y��9蠇g+�
~q�y��887�Z�,�Z��(�
�[<c��sj�+�ʯ�L�u�s���3��i)�+r,�G�8Vu�
t
>���?��צڠʶ�A�kw����p�����*N'ۙ��a�
�ӎK�,�ӎ�Ө��8A;n_+�ю��㶍)��Ag�D���٫���>4q���=�\U+ݸj;�k�;m��,u�p��?�R����U��S\���v��V�
�;J�j����;�����M
8��@K�)[�"�R��PQ7�2I��x�/F�
��+�g���!.K\��־���q��s���7��s��t|ë�`�/r��|dUv�\^/R�g�Ӡ�i��?{i��3.;��H%��X�7<�.���y�;��`�_]U%�I�^Z�Σ�ܽ��"�y���1�ltC�	6_�)�	��Ro������t2��|�\~�7\���9�.J��Y�tQ�&i˟<�]@�(�~�k�슬�a�9�,�u(�j�f�NteL�`�N�d�5v�P���Y���i�a.�6Z7cpG���@�&s�9�G2��q�٪ý�a�+{�530�v�G贯�"�4 TB��
Kׄ�	����^Ł�pv�I����H�+�M��g�i�
�?-7�9v
����~���\OC�$�z����ɨ�@2�uk�i��y���tX�i1�t�0Cbif���������@�����C�/];���(�^o�#(���|�@����eD��<�
����{��*��A+�D�!S4l�N�
�U݆�"s��=R�KU_�H����i������٩�Sڸ-|��^˖�'�#�c��]�&J�cִ�euW��y��Ūݴ��W���*��������A�2��׀���LIEND�B`�admin/images/updraft_logo.png000064400000006101151213254630012274 0ustar00�PNG


IHDR��,�?��PLTE�O�O�O�O�T�Q�O�O�O�O�P�P�O�O�P�O�P�O�O�P�O�O�Q�O�O�O�O�O�O�P�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�n0tRNS����"�}ҝ	ʹ�/�B��Ș�ꒈ�r)m5�;f�_OH�UZ�xo�730IDATx���k��@��eQP.����xC�}��N��)j��;|�����م�`0��`0��`0^�a/��t>=̧�E�����m���5	S��"��$�s0�m^�}8�OIFi�X&?���QX&�����Xx�"+��B�}��S�>�G������*��}u<��7����x�&��\�G/p
#���D�Fb<	r���k�2[��Dӊ���eT�rf� �;�d����vF���r�p>#�cO$�[x:��ؗ��7�����|��)O[�ΎP�\F���K(���~	Z�'�����^ɋs&��h,��4�RˍCb���C�������u�����#�AE���MqH��Z|��qreS
�Ըؤg^���Lyql%���n��S2yq4�C�񛃷���ѥ�qX�-e����3��G_o�RS���m��y�:�����E���kNrPj�6)�+��{�eg�v���F��bM�o�\i[��/��g
�[�cF�t�6�(�a�����9���k�q�a�
|��5<��uq�ie���I4�����f���U����a������8CU[� ?a��m��<c�q���C5�5�]@6c2�����?s�0=�M� �bm2*�#
m?���8�jH�bB�qDne��"f|�ӽܺ���qZ�*����J� �]�������n����oK��2S'���|�T_b6�í	����5o*;$1��WG�n�W1�+�H������8�i]�O@���d�q��C���j�#.
IOL�ˑY�����)�ZΩ�,D�q���/t�x�)����6�����mL�Ǵ��w�Iq����g�.X�����c1��H@o�I��84#��4ڵݫ��!��������㐿�zIE�_Q������ڸ[�������q�@=�pu�~�kq�ƅ�e~�X�����ËL�u9�p	},D]�C�����Τ�rWv��X1i����7T����!�t����9�U�-N+�y9=�J��r�k�������!�tU���r�ޠ��Iz/�����|9��
5_��jt��/�J����B������c�u_����͢4I���<A'SQ��K�d���!t2rH��І.�WXN�9t��^`91��D��-ndt��^c�nqAk\{�i�yR�HQ��q�r�ڻ�%Ea ����PA���n���=��V���!������i�m���n-c�~,���
�����C�����%zh���#�I�c��='|.8�l� �GI�7�>��~8S�F�B/͓�	�+�vy���Q�,������S;��|��z���W�\pE�a���:�^&��'9?(����Q�y���z���@O��a��Ad��^�О�E����7��m��y�{P�c6��LB/do�sUyv�<�DF�Jv�^�a^}���By)��M�Ї{��-�ӓ�"6_`���G��V�H�Zn�M>�д�l���`��Lpf�m�� Xy}����gG��.��i�[bA-x�9"��V���	��-���H�L�p��J���G{_�"��]7��s	��r�.װ�\�vK��VJ��.�{6)5���\p�ƅm?H/l�.4�{c�8R���E~F�OVN���E�D#c�G�$:g�?Ĥ��Ρ �&e-)�B����x@iCb��F�*i�`j�F���=���ᆢY^����D����)�.�G�3��ڎ1�%�ئ��Ӛ�V��N��q~m�p7�)���Bu	�_��tV��8sN����?�W^bQ �+)r����v�T'X��QL�[�ۍ7{jY�7�;_n�\t�,���J¯$p��;�w�h{Y�N���\.G����Z}�G�,Z˨���x2G%�*+D�;�c['��t����sjJ=�A&��j�И��B�K_<���`Qi��M���)n��<�#���t.RD`�S]�� ����]4J���)��sl5��NLyjO"T���T�s�6��N�ãDot��"R���7�&�֑�ƸasM1�>��ap�h�
�Il�;��N�Y����N唠�}%4?��&d��{��4��M	���41�����H�F�B�ݔ��ʏDj\V�z�(�S��P2Z<��Z`zQ�	��Dh�`yu.z���& 0�������nH4�L��eB-f�x�E� B
�Mh�U;�������iN1u;�);,%:Qθ���&;�<Ξ�!��;�;v�3�2��e��*�aC���N��y�+ܬ�3WB��H<�_!B'$ɜ.��П�WQ�ȍ�Xߪ�$�D�Y$���#��~�rK�0&_~�_�v�؆x6ex��4������}��=W�2���}�
Nh�K���J��_���4��������ɞ^	6c�R��}̓�_"�b�zOG�l'�����:���R������)c7��&�ٿ<>}q��֮ �������������e�ڑi��I�BM.�mY00��H��E�)HhB)�u�¥���f�o��\��E�~�#c��6%�o��"�
���d{M�)a��x
�͡|�v�o&��H,���&ɝ����w�z9�M@��C,`�^�{�G�/�r���;�F8�}(��O��8c?�����^�@�_B���*�b�>o?��&�o��XoN�bH?A3��l�����}^�w3�z�-m�*��*�^f��>uP�"ϣ/��y�7�`0��`0��`0�O���k��]IEND�B`�admin/images/ms-white.png000064400000034527151213254630011361 0ustar00�PNG


IHDR1j�{tEXtSoftwareAdobe ImageReadyq�e<&iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 6.0-c006 79.dabacbb, 2021/04/14-00:39:44        "> <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 22.4 (Macintosh)" xmpMM:InstanceID="xmp.iid:8D9A2D79E9CA11EC81FAB2B64C61AA53" xmpMM:DocumentID="xmp.did:8D9A2D7AE9CA11EC81FAB2B64C61AA53"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:8D9A2D77E9CA11EC81FAB2B64C61AA53" stRef:documentID="xmp.did:8D9A2D78E9CA11EC81FAB2B64C61AA53"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��x5�IDATx��}g�չ��WjE�3 &g20 l�`��y`��#��Ykޏ�=kf��7~�q ��9��E#�,�$�,!��V��s��>tu�[}��{�Vݻ�Zߒ@-uu�:��o����˄�A��g#z�Q�vI����zX��g�h�6g���u8kO����Fgm��;��o�����&�`݂�B����l��i�u��q���Ɛl�%&��`� VK�W#Y�L�V���e3I�gk��r���Jg�hK�g���;���(�<�B�%`Ib,�e7g�q�'m���$����A)k���9m#1u���HH�;{��bg8��d��_���+��
"��DB���R&9���@g�����ORK��RRJ�z> ���-t�:	i=�6~�6��HG8���2��^�uvmr",*5�=	�Q	�m��-gK���׉�D:B�d3���n�`rvC�)�Zu����ZzB�IBo8�����	m��t��aӄ�DOf/z9CM��$��f(�Y��Ug�����43����s����3�қf��b���]���l�h5�G�4t�d�VP3��1Ύuv(C���xD4�ERB�����=c>K4 ��E:
E4(��s�����H�f$�\D��!=���g�=��E��F�i&��p�� ���x�O�j&�dr��c�= ���M�H� D�^����m^�A껤۔[��p�������6���trI8(��üN��8g��������~~�-�G��'��^���/:;��a�{�����|�ς����dM2����|���T��x�I>��/B�h�x�t2 �� 彷�/;����ZInl��ig�u���͋��M�"�d��A����L�."���&�]w;{��N�#ҩ�ѳAu&�f��F Ѡ�~g3��$��T�ݠh�0��_��{j� (&� ��r=h��S�#ҩ�p��|��9�R3L�oa��c�:����$ꀉt�$�JA������g�F(��D�+��s��j�ڹ͔���in��8����f������R����ː�C�#�A[jk>��\���T�����W3�
Y.�Nz8C>����;�w�"�=/;����{��v�N3�N�B����n��(+%���t=J�ASiS
��F:���>���I��y2D�WI<7���*�j�	bp蕺���ty7B��l����IB	b��p�� 3u�����H���ˀ���]˭	Z)�t c���o�߮ �F�@2�2܂�������F%���–���O����-�h�@fk���m"�b٩;��pJ(PP�a񗛯hn��V�-p�)̹��|�&�	E�H�,'��y+=��"�F�tBW�>��b�7�M[1�b:χ�5�+�rmm�i�	�
Z~a~��hSߔPl�`bL*ƣ^f~tFC��):��bl`�W��=�B�,l�@Z����x�~�УA���ob����|���;�Pa����g����P��
T1c.��ͷO�+*��t@8�0>��s�Gh@LF���H<��l�tBJ�FS��Xh6��,�����V���E"�4g?0���d�P	�	ZL"��|J}��g�(�ofWg��ok���N�7���ٟ�-�T�׸���7��p�SLvv���:ۣ �9���Ce14��^	��
dq�Ǘ�nE��L:-�j�Gҙn�p�/��ڔ����w�32xIϖ �ݝ�����l��4��G��w�}g��pA��@�1���%��\O)�7{��a�W"A��x~�(ar/����a[hm@Z\�� T��Qφ���D:}öN�{��I�����g�卆�\�	�rr�pS>g��s�[��€���uљy:S��T�8���w�P�e~�y}�%[��y �������#��BM���W���ف���z��:fC���A���g�M繯��S/�<�7�;�C�]h���lJی�N�5�/���A�8kh�vZ7a�T��y	�p�.A�2�8�|�D��RJu�~aLũ�L� d
d���/�e��dE:-�=L��ξi��J�쁗����w6.k������/�o��U�� ��I:�eq�2�>���4G�P#w���֬�eV��EaH��djq�����3��iZ#���_2_#�zA�P�s����YOL�i῏�*t���Wrf�0�Q>�2(a�M:��9�T�#y��g�o[�f�"��j��V	B����ӝ}ͼ��xb�NWg�>OA(��	�CcFA1���=q�h���2Av�H���E\e�t@2��M��Q
H!_5_�2����3�'ѫP�����0͡�b|�Z�1&���J
�d�2���C-I'���)[%E�����׌xjE:� �:��l?}^�Px�Lc�B5]�W+�DFD�_3r�1����;�j����F�F/g/�x,����4�>P�E ����_��#
x8'�|�dBD-H)r��{����2XHͨ��*� :�"��4[t�c����@I��i�>AhhL�Yߧ^��o
����6M,6;�䬫�ױ�Y�>���VFA��6ށx:X_�
�S�y8�9����:^�'�np�7g�X
�IξLo�j�6�>��w��w�P>�8{��v����-�>�/�vg��`pT�c5���L��w����c��0Z�ݠDZ����m�^wv��眽����9ۚ�u��y��M��m�>��x;���ZW�pT�dC�9ʔ"/
��pZ��h^v������=�N�[@���l����}`�י��8g�ΆU�ՐNP����OnqvC�$	<��,�5�L��z���E[�p�6gk�q�p��T5O�T��i�^@�y��}E/��V���'�c%I�.KW���w6�ᖄ�#�Zb�{�Z\%�F�x�.�ׅ�Ù�]��
�]3����~��Ia�9���_�-�#���k�#�h;h��t�n��=g��y����	��D8�����r�ZKa����7��}]G��K���A7¡�: ��R�_4?�Ti�|D�+aS�fz:8��6��.ͯI<����y�+�Q��x�wYQkD���CMF�ֽ�5���L[]�A�g���]�7�l^S��2S������:�0p�]�՚t�!5��Uĕ_@8FFj�y���B�I]��n�Z�@��z-*���P�s5C��Xs�0e�8�`sD�����j��s��*��T"a�
gϚ�`*��8�ƪ�f�:�U�^��:�l���������
A_�_,��d�Lo�����O�U�w;�w�!n��:�w6���u��>�����{p�NL_�ɏ�%��� �Y_�ٮ��5}d��1Ș!�8â�Tw1L��|�}�>�܆X��#�Z�N9̄>�Y6�vv!@2w��qjYY�Ja�2�xV��Ky
(,'cV.�,7�ο�4
#�!���ɂ���`�N����yDHu_N/�������*s��4
��Ph�ն�
ׁ�f�=g�6�
�܀u5��3��/����<Q�5w�,�w1�∭8��u�Ѽ�ǁ�~	zR,���y��VuDBm�$t�q�y;����0�Y�ѳ@L����ƿ����^H�b�����T��?��A/��NX���g�x3C��)���H��i���!�z��7j�gD��M����1�]��dӁ$��jH��^�u��n�`8�pZ^�������9��YV#)���Pn�IX�&2�U���nW�������<o���Ȅ���|��|�o�9@��.�P����.ރW���y�G���O��~�P�v�`jN8�4����iqI���4<�g�.� �,����ĿБ>��b��\ao�X�*%��k5N�07�,�(�k������sh�R�
:�D/c��g�h���G��=��.ɇTJ:�qK��a-��+#t<,���iP|��g���C#&��z��F=&�@+�c|��3�n�:��-g��kqkT�<`���^'�r��$����!��Ƞ=k*�S�5��uJ}���M3�9���ƅxS�A���ϝ�h=��B�y�a�G���
A�y�׶�$,��bj}l�-�Ϗ%�h�C����7�@�鰷�9�Ɛ�,��{�p��1oX���qO�q=h��`�i�M���X#�%��t�G���]���!M{䃄��7��g=g&u�h��)�zy<С#�י׽��a����e̻)��+�\y���ۘ��x� Y0���H��8�Kx�Zm̹F��zё����C�yi�t��eLj��Q@}7�A/�t���R/��aEAB�Р�9@W�UW�%�G:ȱ�m��1рp�u��6�	�弍�r��y�8YW't��W�Ë{��xˋ�H�
�Q\<fg������L��
�R�:��i�.��y-gD�:�b��_�@��&ziW�V���dC'�C�R���i�E=��W��
��b�%b_я{'��Y��|Ce�W��U6hJU�r��=�|RJ<��$m|�x3��yYd��4p�Լ~�|�+@❼����b�VS�ɇ ���[GT��=�3�j���B�Q}N�S�0+�p�
s�H¨���g�9����p<���@�y��zń�0��2�/�AWh��U��b9d[^�x�w�������qP3��s��-ĵL0�'}�*\I[�ǃ��i�bSF+K���-��$IgYI�VwH֕�<�؏j�sx蓞Ff@�~���A<��?3�;��j��Y��+�o2�*��\��L�t��_�(����Wж�c.�O��$=���Z�����K�kڟhL�g���H�B|�_P�1%���NK��x��F�/VDŽ�񘍜��+�R��n���L8Џ'���B���d�xPs�^�'E<����t��
��Uih��x��[��Ş9zt�p�}Q{�ů|F�R�'������Ob��ɮ}!.Fҡ�&�u�4�F=���,n6%���3�jM��V�����Z�s��a�W�㡼��I��¸U�,6�Њ�|?M�B�VC��Ej(VC�l̊c��>����!c�1�_�6��K7��b:���AC����s������a0_:��=�Q�-�Y�Uk��=�~W�j%���$�9��H&����+�e���~�K��$��2���6��
��c��g�[K�W��[V���;3VA8���{g:Υ�\G�iA/��������rrVЋ&}'&�ЌM�W��SK��UÞ�3g����))}d3��X�{u�iR�>����
C�u��̏�H�xM!a~��N;��g��k��*���K��8�8�X��f�uoP�y���B8F���[=�Z�f�wf�y���o%cy���GC��2n����X~ļ��L�l���38|�%�e�j��b� -v�Pz�ێ3L0L5AOY�=#�e]H�%	�tAӂ��,�0����z|G��Z�9������X������ߤb��>�L�Ik
>�C�$����%{��,"c[0�u@8F�� ���Z0�pU��̾#u�!���5=����5���^
M:�����4�B��oZ\���~$�#�g��z�Z�%}�$q��ԓ�V�E����=��O[O��7���@ߙ��o�kM:���`��N�� �g,�����Z�L��#2���O���,Qh(M_�*�٫�?Ca���J"�fm��s���o6�OO���`!�W��r>�1;�C*Z�w�W�NH���[�I����u�{bw��Gvr?��<T
�E����߇��ޱ����I<�0ԃW�Q��{F�0d�N4x{���S@?� ���ثw�����\��<��Z�Y6�ϑ��-�gkx/n)�~�Ӹ�!��ԛ�ې�����X�k�h�`m0���vOg��ѳ��~������k0����/T;C���$���8N����_*��.^?�ﱞ�2R�>v���ˆ�@��Q��CI<�?��t�@���z"�88�{��z�o�&�� v�,\B��������u���:��*��<�W�$���1��J�gh��T8X���tZ^
��7�
�P�s��8Z6�oY6#GA_gx�����`�*�������K�O��� ����[�\�Z�Qp>,���T��:��|V� �{� �"S;cvf�n>=���\E��^��~q��Cq>J�;�S�9$}��M4��8�l�t��FZT��$���G>�����v�_�0:H[dg(��R�z
����_O/r]����_��=
��u�^�}Uh��i�J�*GX����cnr�6�:N���[y8c���*�1P���u����xH�P�e��7�O��C�{�i�:3\C'u��JҮǿb�g���"ҩa����>e�`=3���
��,~1�4���˩�t���g�#5��
1�ΰ����^2/�g�]lوd�6�VSa`��#���C`8X�I��7d�:#_�9����X�;y௠Ǒ$Wd�~� �<�P�RǠb��
"fo#���o�����6�7���t�G�:��+�C<�"z;i���'�g��0rY��f�;�����3��|��1�R�����<����>z9�[�»c�or��z1�h�jj9�-���]�ǡ�_Y��A���?w2��";Fa�i�s�b��$���IG^Ny�w/K�19�'��:�UٔU�
�'X�븶��/͛��#�Z�0�g��s�ƞ���x��󢈧�g�EN��$�g-������a�wR�
��)2f��;Ö��Zx�:��m�s鿵gO�����ᑟ�V��LXh�H���9+�Q�����P���멃��:��2xȑ
����?�^Ʃ��t�C�E{�3;��ן�	�IKu��%��&��p�Q�0v�1ZRN���-up�ʔG,��J�(�@��*����!��O��嵩�,��3�pp�u��H�?<����҅�"�,Y��oz�'DSt���p��gxw�U�d���"�]��whZ��X�Q��a����n}�^W쭭Eƶ$�l1���¿˜=��ʰ#
o��O&� ��t���O��z�v�tQ>4ۢ�T���Wm��ݡF�BgzKG����H�]��++C�������	��k�S�Ì��n٬��H�@h��-�R���ftd���=B&饄�v�ᾞn�g,�:��A�_�#�+1o	��<� <4���Pk�(���ŷr:C��2Ș�1	g4I�j�oN��E�_)���\�eɥy�"bh=j��D��w0�S��󩧳Yqh�dP���
���ju�ɩ?�C���-��c\jmz�D8�KO�0�?��A�Oxd��%����!�L'T%,w��Q�v�i��P���������+90u@|�1vt]��.x�����V��y��g,~�B�X��zv��`���`��!4G�x���}�«�������x7?��
�9����ad������8e�:N_�\jF�=
���_Iݻq$��-�x���,?�Ez�J:���/��@!�ȇ3gp��ĉ���T��K�8{��1���h�؅��T�
��$ ,����BD�Q²'�MIO���o�j��P�}�Ϧw1%��o�!A���,n`��������@�^�����baOzG:BZ��)�u�<7�&n"��Zk��;��j�+��������ێ�f o�L|F�+l~I2��_j;6��8�yر�fU��@x�i�r��3��#M��l�m��d�f�;��%wl�$��&�#�Q8n#��`q+��pv�ֲk2��
���,~��z�[�L�M0�K//�(���_��,O���$�nB�	Y�����3�q.fx1(u�yq���U5�N삹���,�ё����C�I&v5���Г��}�ױ�I��އ��~��	ëe��`������oQ{�o�wU�@�Iu���b!EZ���4�����i��CӁ�꿚	 �Nu$=�eMF:gn��{�pz?��5�#�J�f�_=�h儚X_���c,~Gz����TD�a���%|хJ�f"��i�YiͳV#�����
u8�c;�6]�����
��e�'��Ǟ3ͱ<�Z�Y�kI�(�Lv��K���3�+̀g{���Mt�z�NH�k���4������a�x��o���
;�bN"܃�w��k��j*&<���+�YB�},��ɐ�c�H����[��y��d;-�N���_��S�&�ٙ��P
O�>�UQ&�f�*qϰ�g�8����{��_����G�ک/Y|a�����F�*K�+%\ϵ
���P�>�/C,�h�Q�cRķ��kGT�:�Ǽ��g�s�*�O�L��E�qz��&�ݰ��"�=h�+�Z�A��&�wV�F:��cvT�{���q�p&�����N�&CC�F�_x�c�֏�I�1C��;kx��$�d�N ΰlF����N#�$�lK�ܽ��1{���͆F΅Ù����m�@�ao�6撾���P�8i=)����x
�(�iq�k�֠/�^۱p�lz<�,����ר�N��E�>��1�w�t�sas��PS�E*�g|[��o3�>�02��:���s�է�Z@K9�|y�T�[)2It�L=� �I>17[�:"t�׬�e�� K�)M:a�Y�5~~ȃ>��V��K��x��,�J���*�
E��)=�(��Ŕ1u��C�����H>���?��f�B�}�=��d�l�nNk:]�t�R�h����� ���3yP&�ަ���o��q;�d�}~�շ�x��s:�s��أ0����?�V�LY�Rh��)���kYғL��:�:�����OVZ��/�O���"�N�9wgV�,Q��#����z�;�3�:�>f��cMn��* ��kz�·|A�m�#t;,�DM\)�HYL���}޼p��������U�1���o����Y}[jd�NL�؀�|
_V�Jax��`�:!�A��e��,.�Ԑ��ù�t��
@���s|*=�/Yϑ����'Ů|+l.2_�3��x�ϳ��U1����J���Nwl�@��.w�VG����_;��}���R�
����=��*tl��zVw�m�k�"e�]U�8^�-��0���#j(�{��u���,�Kn�.`l���g�&E�Z�t�{#���~�H�o7SC	�b����L��l�%|X������2��rw��$�!3����Q�y����+�i#W� �EHrɧ��8�o[J�*�B���u�V����A^m�w���ZL��+u֒�n��*��s��8�At�����0���n��^`w�<f�s,���#=��X�g�	+^Gz'��Ҵ�P��*RI6> ��j����͆�3�z�QA2�9�W�1��tf0�;��T���͢W�b9t���y�z�V��E�jo�j�Б>ۊב��r�����rpT&i���s�#�A�>OM=p��쪄Sǁ��]�x�X�`;
0�Y�L�k�Ӆ�S��hq[LB����_l��Ionk�����g�wX�J<ܨ�E���&��7�i78�$¯�˙`ͅP8���+�p(���l�Q�i/��{��Z�{��!X���Ho�y���
Nt�.�����Q���0r���7�T4E6�pܟ���(�(�nf
;ҡѡ�ty��MN����o�XE�kN��P����C���oZ����u���m�?����Õ�9~3u��k|���v�5�p\�g2�仟��H��/��S�F�b^���(�u�@�<�w�rh�^��[#
4h-�������+����#�%usk�n��!�aݻχ��{�LD���kl�LJ&0�
�c,~�����u��җ����R?�[�u�C}D™k�W�B�	�>��� 2���}
*�q�OV�@X��Ck+����^��� �C��Ag�[���rޣ��N�H�V]�O��a���5&�Qt���Jwl�G����u�Q�2��[1��ݭ{�a�Z�|�]i=�hèӟ����[y�(,�m;Y*�W�>B��x�����{�^�j~бb��sY�}R�g5��.��1���T���:N_��j/Y�$�N���BL+����-����!�p��V/ȁZ������y�����0��}ƷJL�a
�f���0~�|La�H�G[�V��
Cy��ω��f	m���w|.��y���3���2?	d���Q-]]]}<�y�����0��fQ�9��zo!�f�F�*�M*�)y�l�-�:"G^0�O�/�Qix�/^IW5/svqS�P}�j�tތ��g3Ԛ3����i�ԏ��\�!���c���+�3ҁ��z�7u/A�a�?��tUC:�*k�y�� �j枳2�Y�G:ð���SAv�"c����H���R��A�p*����fC������
����1)�-�?�	ê_��#����"U���@�F�#D�6�cA@�
��Z�Ő�V1"�����t�AH�Ʃ��kV���8��~4r��>�`�#^��
�-���t��yʊ��O��rfH�[�S
���=
A�S�[� ���™R���+%0�j�� 45:��T�ծ�t֓�>�|�I!`ƦV<������Z�~,AhN��C<��S���?`���X�A�p���my5�ҁ���yzdz �x6H(�Xx�#,jI:�ۙ#oG��˙k���*]�Z��a�œ��sAh�q���k˚t��ש5B��X=��]��jI't���q�fU���r0��o6���@K���g�
��s����
�tšUh;�Lܠ�E�m���y�u#�@<!�[d�,9![���_�Zl����B���#�tjR�W�	�@o7�'K=Y��8X���`HW�c�^qv�i�� 4
���H�f��"��B���I����	
�����R
�-��\k�pP��)r�ǯ�˩�lR��BtB�4Dem��b+�1��Qgk��ךt��˹�*XI!Bn�3��^�;A*)E�hx;(���L�� 
��y'=���C�E�vv��
�M���v�997���D*�H��}���������=g6?l=�4�tf�cl�B�� �m<�s��٪�H'&B�A;�}���K�&�uHE/�-E��A<��]�e��3
)�goXRH)�*��u���3�\It<d>��1Ȃt�C��}Yw��Y����ln0_ޒI$R��-�͋�Z�'�",˻�|1�F$���W8{ӔF�z!���m)J`�I'��a �6��9� �:F�
�\2�;�&�jv0��5iP�"��\k5̕g�1�U�f�3-��,_��8�h~�K]$�R�~x
�#~k^�!>�`yŸ��;��˾T�ܼ�8����B��3������:��˼��D�#Q�jp��Iv���rpC fAԺ�j<�U��������[�R�RnJ�@�ǽ�I� �����87�0�B:�^g�&�	�00���w�6��(��a�V^���N=3�P:��?V�LU�I��ă��i~y��G*�5Nf��E%�@<����8���xP*!�R�n~\�z�aF��ӛ�N��-o��G��Ph��?,EXg9-A�+�Q��y0?�L�� �}^0T�r�}�+-�5o����0�썑��!;b�ȍy'���+�E�-�&:�����lߜ�� d�b^�h���/�"�N �$�uv��Ghr@nx����^�/� �������O��=�	�B�����bu��S-�f�A�z9�:;J�#4�ɝ��2�V[�����Pk��Ӝ����Ά�Y��pP��:���H8E%�@<��}��/��r6LϤ��@�������i�_#�N ���s�Kg_7��B�
���^�6+��"�N �A�>��_��c>�ޢ�Th�pb����ƷX����t��3�����l+�H.�p
U�(��m~NCT�7� �5�|-�y�$0ED�/��vH�h
��(��$�q�勝��l��a�@@
�Ja���=Ӹa�h!>�5���A}(g�O�Bށ-
�*cL��h
����<����y/g���'y��P���*�V���ԎxB�u�����d��얐 ���?�7XǴܺ�6E:&�e��ӝ�.�Gȁ��)�����7"�1�d��{�w6DϾP@,~�|:���@�p�N��D��]b>�5Zg@�лA��3�n0�?�̚l8]3�N�|�᠎����z�T�%d@8��Ag�M淝l�&\�݌��$�������l�i8�P{�A���f;{ܼ��5��"�&�z�6�5�Z�A�Jf�6@�=z7�%���ީ�$�Ύ䃎�ç�Oq6�4 L��b>6��f���&:l"��J��+ξj��g�B.��Pj����k�2�k��p�N|�����Aa�
��2��IB�ߝ�W�vЖH�>���u��`@�{v5e���@�i���g���P�)��TK>(*D��$g��vM4��iv�TV�d�3��J�tjE<F��Lҁ�s,=�fn.����3?��1z:�s(�N�����I> !bj$md�3lBs���Z��H'��T
���#�g��4�g��	�1_ܷ�x�H'�(�d�H��	�|�1�Y(.��`ܓ$L�C�_����=�Bq!4T4�j>ݾ�����drA��$��f�H'��®1��|Nb��ߏ7�>y�PԷ��P��o��N�϶��t�@@!�s���g�HN"��=R�hĄ�
b�B�cC7Y�|�NaIU�����O%��0;��@b�W��W��G#�i8��A;���!뵿���0P�"����) ���Rm��N��2�t��C2e�
��0t>���O�Fm
"��
�`�$��H: !L6D���<��$�N�͖/Лy���Z뮭�C/�4�!�8�2_ǐ�P��`��yGnl�u�kA�{!���fV0tR{�HG(��¯ h=h2E���fڅD�ڀDrA��g6�cY� �7B�dH�i
�7J�#dMF��P�'IhozA�IDcHD��9�hyMч���Y��$�-�-"ɬ&�t�\D:B�DH^�T�Ϯ�=Hh=��$��	�Z+�F�e3m�e5	fIf)����_���HG����N����#)�������F���
��"Ɩ�xJ])oeK�P�mHx/kD���������	�G��HG( ��V�����F$�&����_[S��&h.�:�Ӟ �M��S�Z�#4��~����o'�夋�����&�`1q�'�F��IEND�B`�admin/images/keyy_logo.png000064400000007234151213254630011620 0ustar00�PNG


IHDRyy��IcIDATx��{tU՝ǿ�}��}�&p����h��
BZQ�>�Z��:��
�E��*kf����]mq:�,`�T;Z���,
>@+HA�@�Q��.��s�o�\@U���s΍s>���~�o�>��{..........................�!�PI[�B$�"��h�De�`0���ĐRpR0%�)�n0"�:a�OzO[����E%����H�fȈd��/0�@�,%c��e�60�L�tkժ}1eI;@�3����X�=w1�u�k�8�1��,{|�V���kq<�����}��f�p1�`�C��G������wow(���i�?���q?C|���rh3���7�lt:����&X
�i�X���ٜ�����Ҧ������9���Gf�0nq:�L ���Ê5-����Jr���K��-e�;N�b�^�0ģ���&�7D�r0�8�������[[�Np��œ�D��=�d#��Ҧݿr:�Ln���	�
@�9��0�cAI:�};b��y�[ �@�����νq��'��n���`O����\c���T���݁m5�}���z��-�o@򮲕���
kZ�|v��I4]|i����i���ܜs���}�ȦwO�LX��>Z���|)ux��X<ٖז�&X
M>
`��q�'|G:����,59.x��V���0����ku����
��D��U��#NB��V��-i�GV�a��Y��XO��4 ���<� ��-K�{�
`��.�O(Z����$H�)�>�
%�?������|N�’��<^�2��F��X�0�wׇj�
�?���i@&��|䯈��_���DA����}�{�C[l}�NN_��vEv���֭z��q��y2�Kz�+fĔ��oAUȏ����T��	��C�<T����N��:��#�ӟ���DY����z���z��q�x@�a^O�6�<`��:��_B���ԼfX�S�X�-3_��_I�+D���'�c{6���Sz�ۤy*mn�,@SJ��yK���wr[�BJ�9��u���is�(z�ߗ�۳�"�o?3�1fo�����D�&	^����#�S�P�J/8��
��ߘ5�"DdL�ڋC�s9XvB*ҼV���0.�RP��T�X�B+S8�E�x*���_�0�"Dd�k�gн?�/N%�t�� ���JL�K�]�Uhe����!�=���Q*\��'k�'��?����e���tׂ�W��)$:ó�5Ya��!|����j
����mH3��J̴�m��20�T$�	��#Pr��g�:V��ҝ�~�y��[�c��^U�`�M��g�N)��/�}��p�=/�@�۶�,92�D��S&3���*�i�B�=��	��y�/9仡����=�4�R�ok��#�70c��D2���+'������E�3��)�ذ�s�h���8s�2�4cڔG�Z�Ȧf�}���I��
	c�̋�`V��;���M �0�Pd�x����K�!x��{9k��,��a�d�	d��Rv".y���%��f5�6���Ll��7d��>k�E
#�\`6�l�zđ��6��Qm���gm2	.����K��T���g&�]HH6�3_'�L��f�-3)�[��4��ߟ�;�&?8���<�䕣�dߒ	7�	l��!��\�S�����=��O��Hv�%Kb�����ӝ�ء�	vu���F&��%O���T����K���kB�{_��? ��:����[��^��C�ߒ%6�|��d"G�O)/��_޺3~h����z��z������Y4�t�9���1B�{�/�{fjU�Dy���.1z{F;ъ@��om�S�P^������B+��x|Tl��E�v��VB��m#�Eif:82�x������"���ADJ��9���/�O=�]h^G���f���db�sN���>��O�?'�y��/n��m߸��G`=r�|�"��ƈ�M����+.
��ܰ�!��q���e������gw?��м9`0 S'd�	�d�6իC 6:�����-�ytK�_��MLk�/f[����^�҅��l"��3GJ[A'L=��D|�L`�H":Q������`&�J���
+?�i+���8jF ��,�=0�>[�i����<��\l�b��No�����D��q�%�<�ګ�
���T}B
�����z���hŊvS]J�&�݀S XV��ҀVxݡ`Ք�UIz��n���t�M�f5�6�n�V�6��
XO!8f����7ʞ-�0�u��l&�jV��&o3���c�љ/�p]	��u�D �es��Ġ�.�"�*(m�
�>)=
m�Ўи/5��.n�WD�V5��/]��aVĔɥk�;���lf�t�7�*�~�?ƕ��P͌M�u��[��/��� �d^o6	s9��ܾ]eW})��)�k�q��fAB�okz��
�y8�e����hDk��v�U1<��[c&�ag�*��|tH��1��䊵͇Aآ"�L�t����`�g�#�o !l������-ݪ�t5�$?�D'X���N�����7"2
�D7y]�zڪ0W��C*A��	���;1†����}%c,_(�AÎo����#�+�6+[Pbrժ}1~�B�Z�t���^��,�\��q8LZ�|T���=^��{{nJa	��7����T�q-�k�z�F���e�Q��p�L�X����mi͜N�;���O�'8��=w�,@�T�*ݭ��tTj~"R��jKG՗AD��is֓1�V����s5�&W����%*5�� _�_CS��[;������捨<n�X��1~d���}�e��y��שֽ�����콾��\�P p4ts�%�l=l��o�l���o�9�GJ�`���c#u�E �j�l~�ؐ�5
/�?^4��&6;r�Ltl�V��Ee3�_4b����
5+A�@�,s�\��>��I��c���3���-�(�,�����5�j�"��;VM�|uZ��2�
,.x���O�~Ǭ��?��^��_m�dG�B��!Ÿ5ֿ򹹐�ִ�"���Te�����{�2��>�tU�fυ�{���%�vޝ�\�^޴�Dr6�n;��;�f̰�t���JW�n��,���A^N	��Y5�u59N�lM�.i�����0�cC�u�ʝ�-�\��U��'R���z��<,"F�ťM��t"9qT@{Cd.	,���s9a���^������?�[�ф1��'���$�
�6Wr�%_J���,"<���Tl�ya���m�~�D����wu2��g�t>��	��M-/8�˧��&_��h0��3�6}��Zh3���7�lt:����&_���ܧ�wJ�o��pn�=�70��ջm���,���Kik�.��U����`�C������+��>�3Gh\+���Kik�i��H�j	�p%������.{�M���GɽU���Z��~m�5N*DR/"M���LT F{�)@)'S��b >�äQ�!�#�I��ak��?����������������������������C�JC-�Rf�IEND�B`�admin/images/metaslider_logo3.png000064400000012320151213254640013044 0ustar00�PNG


IHDR2�q���PLTE�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#�i#p&�@0tRNS���V�O/΃���ظ���_|�n5)$�Duc�ӥI>��i[:����IDATx�����0�q�,[��,�"�x]V���H�`���gpDN���w�����q�FQ��<�N��|����G�G���ij�3c���r�@Q1nކB-7�W����"�^���̛-�Bm�&�O�y �6�G��R�=zy�@U4e~j�Q�R8ӭP����Ic??D��I_�bݕ��ż=Yl�
3_�J�3*���,��:�N�2�5*��Ye;F�֬r���zs~��Z�#!+tg��S��1�s2�6@�B���W�2Y��n3�)M�y�_�smS4�*d(�ŧ0f�}����4��9�0Q�&��m��Fi�s4�,~��̈́2�yG!s������A_Xm2�҅�Bf�B��	4IKLM����&XA#���o�@'��_��	���|�-�n��Ho�8(�f��q�%Pr�cf5�Nj�,�w)��.2�����B�pr9�H$a�V��bn�n%<('B��B�Y�����7
<���r�ɽ��'� �t��"?m�2�s�}�?5��u>��h/�ܡ`!�#�+�K����3�R�0�o�	� ��p�W7�n5�*��}�g�Կ�?E%O*�z��	�(���o�V��ȅ�.��k �k&<��fR�sW	�CZ��2��,��$���`n���b"�K�W������S�g��s6�Cy[�������ܔ�oz�t�R>�ť�����R�\�:2w�,Vb3�m�)y�?���8e��׺Z֥:c�w�N�~�>h��S��1��6e@j���R�U{�Z_������9����{�Q&p�3����8�����i��[���M�d���ҟ~;��TZ�_��������B���/����L�G���vPs�z���_7�'_$�����Ȝ�>v�d���tI�Xf콬6�K��C&���ƌ����ST��BV�L�M���N���gBn7�烙]�9�+�w�6��@�}��]-����^F���̡�|-R1���?�&�q��T>%��a%�#��ɮ�\�� �|$�ݨ��V9�&�z��ڠ���������.�����;Ȝ�����M��"qa���]Z�C���&2����_���k�HO��Ҟ�8��.�������i'A�:��^�9ȹ�,3�N��F��֢����7�1���oC��#_S�J����$8���*�˶z���;ȐT��_��q�釆�k�(�=�+�(�h�m[�<�_`�&2z��u����h&�H�~m�6$G<@�v�OnK���t���Qx���|2"���9�!d��k����lW7�W��Ϣ6z"�GV���m�4��R���j�z/�,�SϾg�x�؃�~�o����G]?�,����w`<��`Ӥ�޹ױ�;�Tܑ4��l��,+�ߋ����R�����-ۮ�`���� ��n��ښ�n�����[�R�tW��,xlꜗ�ʱ�OΜ��}]�
"_H�C��|<T�V��@�ru:Y�D�M�Q���Jp�ld��D�}�y?db���6){qO!Ƞtɕ�Κc�P�է�+��WA�qgC���K��!&?����/��>�=?�
w���OWrM$�,Ѳ2c��&|w]���x
j�a�� #W�#�3G>�K�QD��< >X�"=��霰�%N�o�&W�j���Ӗ��vd��z'mTg�ڭ"^{`Ȍ��ɾ��2S�t���a
2����/�12n��0p���NO`\����K�8��"�n�oҧsyt�e�C,��:w^[LՎ̸{�gL�����r�~��(0po�A��,K����y-Yj��;��!�!�JԄ����%�*�<Ú���ǖ��3��8���ۘ9�7�ې���`r̹2FJQ���!2�ϐ��?�����.;}^Bf	}�Y�"����<O�lԶ�B��Y�ݺJj�dj��\���c�<�~;2�9���z���&V��y��2�KMr��5@fS�ޡq��@H(�m�U*h�0������W�;�w�2�ٸ�Tʠ���djij�1�o'f�E���;b����ޘ쀌ER����RȈX���1f1�"���PIk8h������1;-�˔�p��;�Mh�
��ʏ�K:��7�YZ��X�U�˚:�r�4�f���f|=2f+2��M��I�DD��̥��
z��(�����u��2��[�o|��0��Fx����R�W�
J{�_6�7����WGN��8�ڧ��Kd� ��V5>�j�D����X�A��Q���XfU�ډAeZ������=ͫV�]?JM�lD�a5�u��ғ��í��
2c�Z�NP� �R��f1��aO䉃)�U_Q��.����\íRE�`�ĭΣ
2��hA�d�!� zA����
�iB#44��Z�U>��	S�'b� ^^��}:/s&
v���4˟sh�!��6����ȴ�(��o�q���Ǝ��h谹R��M�èz�-8��~��~���%$��*j��U�Y�c��q�K�V��!��^��1ؐ��WC}�奤,y���[�|���}Qw�h/��I��bᄒ ]Z��OR>�&�GE�|�.��\��N�yE��m�2����Zı��2�����ƈ́,����[O��a�rV�6�P@�pD(:��ˢ	1�X���:��{! �Eӧ�����b@f�9��;q�P)�f���kR6d�Ɛ��#Y�X�j�P��*2~�4�=�'f�{cC��?��H�%Ъ���S�7e���+2;݇JD�!��ׂ�C�>b�
2z�F�:2{U�
��I7,���(QQ��	�v��w�)|�i	<��.R�8l�g�
~Q0�N���숌f6
�i�CתM^|�A�]���"��b�[J�BŎ�[��;�ӈ,,�KGlM��N�\�y�2�S�;2�Q�+�$�bb�@!�c�$��tk��|�D�}��Jc�����$�ˀ�dF&�����rc�w�hd��U�%�+ma���mD�n�Pl�6Cq|8�N�r��zgC&�L��#�\�Q�[��;uon�&.�ٔ��[������NJ�)@��@dFu>l �v�Y�����r�N�����kF�]�32�׈�F��̘�)cO����g�������0t�=ͯ9鮑v*�̘!w؀�X�9�T�x:7.�岴32£1}u���K���,����hըM���lG��}TI��-�L	搸;?�U��
UI�閷��M��qǔT����\32'���=�
n��W����3��ň�XK����=qGd��/t�ǫ�!Š��Ȥ�R\Ry�n2�N�/�0Sd��rQ;a�3��W2�F{�+P�:���ř^�����Fd`̸�̦��L	�);2;�{����	s5��sHM�*<��c�-���j�/x�"�$2��1Hi6~��P����N��k�s�������$�Q1�]�cx�8~��/��4��Sj��i;(20i�6T�"�`dD��*_��z�&�k�=]Em��m�OQ�.X׹��M�[*x�pCm�Hz�-��,lsG��.�ɭi�=��!�t}o*|w�2�ID�eGwewe4�Ȟ��\X�(H�
s/Byҟm�!�A�������,dfd�߆Y'׸��dJX��N�A@3{6���C|�x� ~��������d�Θ���6��4I�0Ծ���5��9Ǒᣆc��!P��A��kO���3�^9�%��-�iӞ�U�<i͐��4�nn��4��98�j��_���4�O:��k0!�y��
�Y
�1jG&A���R6�*���8�lҸjɽhܩ|��\���I�`�qb�-
��F��	#��~�Ϡ�D�05�k
9S���5��-����F2p�LxT"����c��O:ZS��E ��)�b�{��dI��4mA]�F��~!���<��u��ַif�,�RbU�=;BŠS�4���]���{�N<���NAE����O�#�^�[
m��DxF�vǴzk��Y�Xb�}u�wxL>͆��<˔3�I�(7vp-�u@&[uِa�w+�۳Q��DN��C�k��|��ᣐ�	
�q���=����C�rU��
Ȑc��2����������p
���ؐ���r�U\�//�^����%�y��r�\��!�
PT�?u�4*��U��ȑ�e�0ِ�7�p��n��[r��x���-��NĆ���3�y�&��u����XE:����6ƹ{�q2,E��׍+m�1�܅�D�|H��}&d�S�/L�z�µ�F��v�����+�{�r<���FB:g���d����l@�_��/���L�c�m��6^��;�ƞ�):���q���}����a)��6�����j��-`���g�J?|�����+�:�ԇ��-MSLՓm�i}����(Hݽ�㎂��,][�|r۫fc-�׍lG��ɂ{��6Ȳ`[�9�N�����Ӵ��l2��y�%�
/�e$Y,)�oJq��x��1PL	�S�.���U�������9�j�b�u ²PD} ŠP@N��D̳7@��p� "�P4 B�@�8@'Z��LF���o�"����8�@j@Ea(!�:�Q[ ��eD�&�5�m�FĘ8S��������w���J�o�̀�K�o5H�ԍ��є�V������j���z����
��S��;��������O�^g���v�'K���Z^
V/���=>@��5����Mr��᫤@�!Ɨ�i�fs6>�NP�$���r*�4K����%H�lM|W�<���i&u����%��:#�۞�'6�4�w�cJ������cZG�
���b`P�5v����6�
�*�����h&U��6�#NYRKE�V&{ݑZl����_60�`����x��c�'�܄����N�/�$T�#�.�$�-WwLŷ}e��r#��-��3
�$V��IEND�B`�admin/images/features/wpo_logo.png000064400000011044151213254640013255 0ustar00�PNG


IHDR��4F��	pHYs�&�?�IDATx���Kn$9�Ж#R��[-(���ډj$t@HE���}���u��I��7<>����c���{������C����n�Z���ka�A@���m�Z���k�Z���jm�Z���k�Z���j![��k�!�q���l�Z���k�!��jl��Z���k��k�l�4�Z����k�7�5a�\Z�y�
d�ɵ`�2	��Z��;O���<��Q�p-@�>����-\p�o"Z��Z�F�µ���X��#� \E�kµ0��*��m�B�k����]?��Z8����
���k���S��g��N/�S�.s��5P*\wsY�\����Zp�� \�l�Ú98�/4��:���{�Eh���J0���\�a�q�0��3��:{���/�Y�<����<�Nֹ��:{�V}��|���̵��=C��_!�uư"T�7���b���8��^��u�(X�6*\g
'B�q�>�������p�%�������u��gj�;�^K�u�0"X��k�	��}|~����õ���ۗ�Hx�!������{V̋/��n���W8���c�"����O����,��׌~��oXD�y���!L������yDO�c��_��g�!��=����+����Qel�o��x���E��TW�C���˶�\�����:�p{��z`�I^$��\�ٛ��ן��#�!d�>\֌�Lj/�J������q<�������6!����9�A�ځD@"��?��ꚏm/d�*\G
c����������� J�F�Y_���ZZ�눇ά����6N�^/�+���=���Ϟ��m�y�E���]�נMg�ϐd���qN��\"X�U_^$��o�r��t8�4���V��w���7�}���R������͡�P�q��$[S��y�z|�w�T��b���l��1�oza+�W�6�5��j�k�vpt�� J����l*zD�̢&�o�>׆C�>?r�G��n����|�J<�nz0����A
���|�_�=�zO��iȪ��;�r֋�[���Y����F/�P.\}C���z��F�h�l���W��?�.\W��68�ق��
�µø{5.���@�.��vU���!kh���tt�x�θP8\۰l���ğ'k��{�~�~�	‡klޑ�߁��=E�3�6SA�Emf�>b�!�i���Q/���=����#J�7��h�U�����#0t�9�Z�^����z�Ou�yn
F�w�+��7j�Y4z�\�fuN����tp��L�~u�:��Ј����{����s>?+�Ν53�^F\��Y?U� +�O���8��.���;�7g@�C?�ǵ��w�8����N/ �8O�ϑ��A�꩷����G��`�9��X7�՘��~ŵey[<���γ��Z���U�j�����s��^`�C��L�C�{V���!G�=�~��]/�޺麩����̚��f�v���F��أ���a���5��?���>��F|��G��pd.�����J��f�>SG{땚��m�wm!!��=����w_>z��g�ѵ���im�zAx���}���Ȯ~q�Ձ����2�X3^0�ه�QklϾvW���K=f~8=�	�Q�="�?X���#�n�pػ�A���J#��*�}�N��Ky{ˊ`}伤O��ۣ�(���oŞ]���D}�;c�֣�n�2�w�lK��F�:S?j̾�_��G�����];��{�OG�H_ݢM�<�����4��d
���"�s��g��<��#�Ͻ���:�W���2p8Am�w���^}V�9(f`Y�B��o��p���ko�>�W�b[6k$D�l���2�#נ��D;�e�����e��Q�ˇ*dy�ud�b|ϯPm�2�(�Yo��ٕ��2™�mjp�-���s!Ш�Ϟ�������}a�S먹��}l�⎀m��l�(�=���F\O�8j���S�m]���v��O����C��_=�*���}��yz�e.o�y��5���:@���g�/
`��)
l��^�j}t�ޱ8��*}�1j��7�oUn��9l	�@�@=�9�a��~���fϱR����G����b,b��Uk���#^`}���ƀ3�1�{�=ju�p�`l�Q��Q�3�@�3�=���*����
�S�8b�Ys]�-�G�y�\XE��
[�Y7j�+�N��<�[��VD1�UP@_�\�`]���&��
QzD�ϐc�;����H�kE6`�D
�����8�^pVRkG<:���3�~[��t��>�|���?��^�qEm�t=z���c�8�p�p��6��N��]�Vdc�����ևg}nN�����Z��_�+5�~�'�}M�Vt�) 	Ijf֤o��[2rf��qvblf0{��g���QcdXwon6�A̗JY��a�ŷ��Ԭ����-"!M~N��^��5��u���C��2�l^R/�	� X�O#�FLz�îB�7NW?��3���=Q�>�{���^X:\gB
2�x�t�3�Qh�!a�ݿyW�V_D����
�W���7ף��]�c���m�
d�_��un�v��ښ�gN��c#���5q>mn�`���:�ɷh��,x����a[�4�,��9�Y�=V��Q��z�Ȧ���r�G>���^x���(�:��{�=?�-j� |t��cg� X#\'
؊⯱h�Cߠ�^h<k��D�^=Q�{w���F�a��Pc
w�9[���3d��-��8d�u�µ�r@[�0��t�}����{�f�+����{�¢�W��+X��_�޽E�y��Z�~Ap��'��;��]���y�����/ݞ@zj���}�zx�p�AW*[���.8���@�ր��Ҩ��Uok�=a�鉞X�e���i�۲���v`A�qO�8��/�]�F@�F�nvXϴ�_�/�:�'��ӻ�����H�ꐞal@�α�U�[�I�0��Cv�l�BX=v�`�}�W��=���\c�'�Y�t��-��z;�۩3�w�a�X��������m�Cm�P�p���86�����X�+�!�!ݷ݃`�!<_ӻ�۲Lp�&�rg��̿����n_��7�}Z}�"��l���s����3f��}�"���3����1��k#�՞VG	�پ�S�F���������ǫ���n��\�j�Y�������ૹ=�_�xW����s����g�G�@��Λ�ط��Bf�ɑ�H���$��`ϸ�_t�Ӛ���o#��}쑵Pe�f#��03���>^�����p�)�=��gݬ�l�fW���_~ܵ�C�`M����V���?�o�L��q�w�9�������μT�^���co�8���Y��k�zԁ�jȞݏ��գ/��9������mT�9�k{���
R���<���4�gۈu	譣{�#��ع�J`��V���}t�A0�
�@�rG�����w�ћ�p$X��y=�Z��_�U?76�d`�vg�)�5c�Z������/�z7�#�q{ڌ�;\�T�j�Y���6a�`b��Dls6\wT{O��e�:S ���`
��6?�������T�/�Za�u���ɪ`
.\g� �����¾�Z��1\g
,�&~~܌���:s���S����a�����&3�
�v�g�+o����JA�{�"��p])`w����Sk`���:����/�@�p�ׯ�C��=eo����@�p]9`g���.X��u��=h�R2��S��)����ô��@�p�1`�
�g �т5�4\w؂�`
Զ�cBj
����s��SOl��J�T(B
µp�`
�>\I�@��P+1µЄ�[�m�?�-��@F[���P@F��\?�[�6
@[��k�,�>���	�P
��.� ��O��y�-X�6B5 \��eµ�-T��P
 \���µ�-T�B�P
 \�B5�p-d#T�B�@
 \�B5�p-d�µ��~Pj�Z���ka[���mA@�&s���k\pH�?�`ʝׂ�IEND�B`�admin/images/features/remove-unwanted-img.png000064400000000736151213254640015330 0ustar00�PNG


IHDR@@����]PLTE�h&�h&�h&�i&�g%�h&�h&�h&�h%�i&�h&�h&�g$�f'�b+�d!�h%�h$�j5�h&�h&�h&�h&�g&�h&�h&�i&�g$�j+�h&��mitRNS��f%��ؐ��9-
����v�qXPM-y�&IDATX����j�0`E��#�帮{�?fU�X��&���?�J���L9���Y;�Zg��8I�36
�Fb�������}H�ڊخe��J�T
	rʖ�rɎFV�R���B�O
8l.��S������w�N`�{s���,��[�6�Ǥ�V�8@O}S�����_���uK��W�Q�	П_D�.���t��`_��#��E��@������e��"t|
����) ."n�4�k���@ ������i�.����Λ?m�ߑ�(��IEND�B`�admin/images/features/optimize-individual.png000064400000002046151213254640015420 0ustar00�PNG


IHDR@@�����PLTE�h&�q+�h&�e&�h&�h%�h%�h&�j)�h%�h%�g'�g'�h&�n �h&�h&�h&�h&�h&�h �h&�h&�h&�h&�h&�h%�h$�h&�h%�h&�g&�g&�h&�h&�h&�h&�i&�h&�h&�h%�h&�h&�h&�h&�h&�h%�i$�h&�g%�h&�h&�Mz44tRNS����=&}8cH3Ǧ��,���Ç��ZS!붍oB�g_�N׼���w$�
tIDATXõW뚢0��E�����(:ޝپ���i�[���o�9,Ԅ�4IPap펇��q2��<m�-t�)Í���4�Z��O���WD�V��r���G��<}?�z���߶c�I<��/�R���9��Z�[����q��?*���_����	�RO#���	4`� �E�7�tk�;�^F=,k�R�=��9���U���	���wW6��B�>���P�?���t#|�c$x�3����
x����~�M��1�:�!Ex6���?�c���#L豥�8!.�g#�:�V#����:)��ظ�6�@D� ����!	�8E����;°4�:bQ�	f����7$�.�T��Q=���<F�\��h;u�ΐ�W�C!=��I��J�X����SGv��Ja'2[��7�i�t��ue#��:��̵��gby��(�BQ/\#
1#��E� ;�?������uN�����΂��J�AFB��[U%�;*'U|��Px���Ö5�ؖBYN&�dpbw��
Į�L����kX7�u��W���~@@*(�%�Z�ξ:�/��sa�Δ�*�p�n�X�4T��?�_o;�>א%
�x�	�+�Ti���6�G�9
��^!;�>�c[w���13��ʵq2��f��Z�3n�\Zb~��ɍ�g"�E�)���y��Z]���t#�Ú�_h���2��G���U˼��1aX���k���\�a{ߥ�/�`P��\�e+t��}zX��7���[���Y�Q߼�s��YIEND�B`�admin/images/features/automatic-clean-ups.png000064400000000401151213254640015276 0ustar00�PNG


IHDR@@����3PLTE�_�_�_�_�_�_�_�_�]�^
�_�^�_�_�`�_��рtRNS������%����(�
mIDATX���K
� E�Wc������;SP��aA�/�,�(Q
łKM�H6 A�X@U��Հ��8��lU���֙�������]
����//X����IEND�B`�admin/images/features/keyy_logo.png000064400000003045151213254640013433 0ustar00�PNG


IHDR6�����PLTE�i&E���tRNS@��f�IDATh���Q�� �X��r����h�z�~��T�g���g��H��&�fp���7����M�?͉�9�-��xdSƶ	�K:�/
L:,j��zŒenA��ܢ,<���Ⱦu�0{�4�(�<��8Y����D�%���r�l����K>a�vVɴ�'>�-�]>�s�DA��H�	�G�@�uVA��(�-�G�@�_�,'N��!7YrsG��F��,O�|��˜���^�pY�#���n�,��3P^�w�F�k}�ۍ������򊇠��1ۈC���c%e9X�cà����d?X��0J�����s����{:fexԉXm=g�n�ܷ�Gv�����9u�t�8�v��9
g�L��1��c�Ag�7�
�˘������r�V^ܯu��`�ʝ��������tZ��{���bS�d������U&��NE��F�ݫ(^s�����a��sl�h:�=�)Mv��2�9��('f���K��ɞ�ۄ%���*�9o������h��G��LG�޺�8tj����J����	f�_��M�Mt�j�|Ol�r�Ο:*Q�a��ܮ:��	��z�����At<9�u�u�e����P^�:�]'T��4�N�9(�8�1촯�Z����tGG�Ke���Av�ufw\�����ԯ{��6���-
��l睝�U;t_�q"8e5.�ފc9|��N�������sG�ǐc���V<�%C�:Ng�Q99�%~?Ofq�/N^��9tMCp��S�\�I�X�]�j�4��ag}ϱ�v�;]�uh����Ĺ'��:�9����
N�傣��tt�VV#��l���;���v��։�lW�����BP_pfp�S_/|}�up��љ p29	�s���q9����);
h���rϱ�p�"�:���qQ��q��^�������j�rb�]qR�\�O�� ����9�cG�|���x��֛��0�N��K�N��{.��	<���-�8?��N�|�����>�8~G���`l<j�I���al4^�p���W,TK`�N{��:T�9���g�8[�`��
�s�`_rt���K���ם8��r8�|��Sb�#�%ӳ�Ա�o��X<�۾��:T�3E�u̹���Z�P�xљ�ǣcq�}����]'�}Ӛ�S|�N�[�=יș3wl[��ï�>���E�$r�����4G���$�
�4����	��|&���r��	�x�>���m˪d��D�΃��f�a������[���Z���ʛ,�?���}L��gc'���;v���tG'�bw��T��U�?s��PD�Es�S��������~Z���W�[n'>�p?�|x��W�o',�����/������-3g4g�<@^��*<����ﭪ
z�ĥ���ْ6>i�0:rH�����
�	fIEND�B`�admin/images/features/updraftcentral_logo.png000064400000005151151213254640015470 0ustar00�PNG


IHDR\���PLTE�i&E���tRNS@��f
IDATx���Δ0���#������h5<���5��2fjH�-��$��K��mK�e�0D���h�&BG�&°���B���@t�4C�LP=���~���'ÌV��pP;���{��i"����g�f2�"j'�(j�Fj�Fj�Fj�Fj(#54��NH

'���c�Y� 54���H
�����1�i�jq�T��f�y�Ì5͛���f�bf0�
�0�z�F�S+�1�z��8��^��L��e�~������Îzs��K��P1�3sc��	|՚p��<���G����Q��z��Xg>8b,o��t;�GX�8`b"��#�cn��Z�h�Ý��l1aڬ}�G)��@cV�����cei�ۢ�j��ֶ�
1]�ђ*�1�P��az�tw`h�� Wv��!�4j
��4k�bP�f�D���	ƗaT�Q�N�����[z�\]� �~a;F�`B��0Ô��p���>��5ߎ�����:f.Ø�Q��M�����8qwN��]�Pf �3�DE����ލ���"ƌ�Ì�1��P[�1b�1�a�1�"}C�?0&ĕ�C~�q��q�@.b��S�)&�:��1����31����hfLG�[�
F�	�I��O�˙l!�����r\���w��t湞��}X��+����F�[z{�1yG��-c��h��|�P�y'�'I�ς��D1�b��"��^�P�^���>>u��W�,�#�g��`�A���(@G�,��x�z���|)O>y
�@�( 1�i撿`�1IvISưG��0���$3EL���%���f �I�S����PFS��%E�O$7�a(vS�`2Β��󥵋΄��%%�H�>a��c2��Eo�
��b0J��0���[���'|�k�0_��a���+&����-if_�y��+̓��a�B�Ê{�|[0t�Y�1N.-��W1^��e�N�Q~+J?��ݯ���6k�-�L���T���3��b���-0�?b,�k8��H6��U�(~rd��uF�9�D���Y.�d�i@b8ń-���3���2�ƧG�S�� ���a�\0�3�
��?`�-�3?ӓW4'�-�5��/f�&Yj0�*Y�
��'�k�2x�b<�x,b���`w�Ƙ��Y��{5/|34����#���;�N��c�Bu��V�*&q��
�z	�ӧ�0`^,ĸ3L�S� L��[��b!K�#��wr��`����z��l�1���oc"�l���c�L���`¸k�y��9�_��
�1�0����9�0x��1�1��uf1����qy��1����0>�`�)&���M��a�?��P�M��11*āI#��k���1a
a���x���ט�0L�\��b0�$1�&�t#GzF����|�.1�aʌA����[L��I&S��FwLi7`�����a�E�0�?�l���T%!�J���3L�	F�a�wB&q�U/a��a�J�v�
��/��ڄq�����Ӄ��)�#�f�����a�L%_�XlΨB6sE������@/0�a���	cf1�.3�$͋E�	�0L�{!^͘�+_dGL}s�'��hc�0���3�F}
ضs�T�)�ሏ�5��5(h��S��˘�e���I���<�@K��Qz���s�����#�cc�)�c@���sLR�0����zH�!1h ���F����H?�hp�G�V{���3���v���]b�K�1�i�:��N<�1���!�ʺq�����=֞��0[�+�0ۏ
Ĵ�#o�FoOGϙ����}������O��1�<^�	CA�1ԡ���0_i�"01.������a�1pA�T�>���Ԫ�ļ0G����[��MU�wLl%��#���g��(g��c����d�1�9�ǎ9�ɾ��1X�lۭ�~��b�]	�7S�۶]Q
"Ǹ�0>)���B=�`�~W}��wb���6�[8,c!!�U���l�cG�F�iot��^�	c�@[�5�01��y��1�GR|�lڙ<u�uCL�FF��c�a����ַH�C������#3��D�v�(0jo�x�o!�D��Z�r|����kqVe�y��H3N�Nd:&��g���a�O�O�7�8>�[�5��
�?��=	S�k^]�1c�f����Z�	��eʇ��L^��C�Nk0Xx&�R�N1B1Wb`/�0^6'��d��h[���4P1�f!�����*�FL�!S�`h�(~Y�Q���Vc"_
^�!fVc|dv��2����a�Q�0f��u=a�2����ߚ9c#�A�K�2#0
�ytU�]��•���S�m�n粍Y4��1ó�3� q�<@fK͑IZ��h8�82IG�
�g
�ɯ49����_i`�74���DF*Nd6��	��2�@�$a\
��[�&��\/��O�ZQ3��}�IEND�B`�admin/images/features/premium-support.png000064400000001271151213254640014621 0ustar00�PNG


IHDR@@�����PLTE�h&�h&�i&�g%�h&�h'�h&�h&�h&�h%�f'�h&�h&�g#�g&�g&�h&�h&�h&�h%�i&�i%�j'�e&�h%�g&�h&�g%�g&�i&�h&�h&�h%�h%�i&�g&�g&�i&�h'�h%�h&�g&�f$�h&��Z�,tRNS��_R�U�I�$�<�ƶ�wf
ܙ�YW*�ϣ�E.�����r2�1��IDATX��ْ�0Dþ	
*���l���!AZ��~����Mҗ�L�4iR��7�@���}" >�q����ab�	�_w�?)�ړ�o���"�&t��h����W�������|7F"h�jV�\q��AH��Ŏ��l�|�4�啬R�z� i��y�����v�z�{4ӻ�k�}l��=M�_��6i^`7�c��˼}�����5���=��3+;-Z����wU�D5�a,�>��xP��R"�Tʤ�!��)������� �L%[\��=�.F=��`��t~QT܊B#�[6;�|爮ma��q��.-�>�-���t��[!���=<V��rR`�6�{@��o���P�/E ���_�PTܟ��l�C""���	$����I:�c��>�����.�=�!ܖ�IEND�B`�admin/images/features/multisite-support.png000064400000000424151213254640015161 0ustar00�PNG


IHDR@@XGl�!PLTE�h&�h&�e"�h%�i&�h$�h&�h&�f&�h&
���
tRNS����$�(�=��IDATH�픱	�0D���8�U�����s8��+�՟R��3G:��x��哮%��-ɰ��ғ��p��Y�H0���^�(]�da�K2Ū�p�	q�^�yՃy%\4ؗk܌���xE�=ZWl�qr\����*U|�GR��HYny�Q]Z��y2IEND�B`�admin/images/features/logging-n-reporting.png000064400000000410151213254640015313 0ustar00�PNG


IHDR@@XGl�*PLTE�h&�h&�h&�h%�g&�h&�h&�h&�h%�e"�h&�h%�h&P�t
tRNS���LJ��%��3�>��IDATH�c``�j��TL`��wq�*��^�
���Vp
���]L��
�aAd�C�.L�%
d	)p�)��0�
��#.��;�e�*@��h\����Q0�A��u/n7�
��VP	V�ՆK>�<�4	��N�IEND�B`�admin/images/features/auto-optimize.png000064400000001746151213254640014246 0ustar00�PNG


IHDR@@�����PLTE�h&�f&�h%�h&�v$�h&�h(�h&�h%�h&�g&�h%�h%�i&�g�h&�h&�g&�h&�g%�g&�h)�h&�h%�h&�h&�h&�h%�h&�h&�h&�h&�j'�h&�h&�h&�h%�h&�i'�h&�h%�h&�h&�h&�i&�h&�h&��z/tRNS�(`���~��H.��"�oW�4ή���uj\،�eO:��?��B�1���IDATXÝ��b� ����1��fUw����8�5	�iY�3�1���t�����]��AJx�-�Jϐ��$��n�V�Uã�*��${�~�9�fb�B��Ŵ���2'�õh�����7&�Ԇ���ʘ�-O���{RƖy�~�M�2�b8��J:[#Q��T`�~;:��_�}��vR�T�:�p�Hχ����;̡�|Ү�A���Gϑ�)�_�&L��E����4����y?'��i%��2���q`�	���HTwX$����-�gPDBۃ�"�yd��x7��(PH��|��A�=	��ջQP�Ca���8 -�A1���6��H�x6	2�T`���c�����|He�<Ú�|Y"�-x�P��p�8�_������ک-�$B��g�h"�7Wg7�
��C�A!?"��UŇ{�&[	�ΰ�3���H
�̠���
�����(�o��R� c_�	�9��(ٯ �
���^E ���Y�6UB�w�.&���
��=���1�"�h��a�XmN��%ÕL��@W|������]��I8�Ā��ŀ��\���"��1yG��p��\Б0��5��"����9~�}�a<��L����2�p���
=�Ӟ�9�a�Ex���M��!<�9%
�,�?y�U<m���{K7�+���F~t>�,^~chn!%�s��B�KV�K����6vW(IEND�B`�admin/images/features/enables-disables-trackbacks.png000064400000002136151213254650016736 0ustar00�PNG


IHDR@@�����PLTE�h&�h&�h%�e'�h&�g(�h&�[*�h&�h&�h&�h&�h&�h'�h$�h&�h&�h%�j%�h%�h&�h&�h%�i&�h&�g&�h$�i)�k#�h&�h&�h&�h&�h&�h&�h&�i&�g&�i$�h&�h&�h&�h%�h%�h&�h&�g&�g&�h&����1tRNS������ӨR �wh{ijZ4�W)��ʽ�c9.%�KB��o=�rW�h�FIDATXõW�v�0M@@�E��[�Zk��rߙ{�����K�L���LD�V^
� (�Q쭞�CX����]t��G˲�Q�A��3([|>��?��˩;�8f��?��T�������d����d���L[u�8��6}�:}��
�&�	n��~��3q錅^�
�;>��G/�%v�|�� ~ġ�;4ڿLE��?�Y�c�g�C�ş�}]v�����b�Ĝ*��+�uն5|ʰ�x�▰�烌��׼:A�#� &T�U���n���I�5ђb��z������_>�{���o+B�p�d*u�ڡN�w�>c��)#R-���-H��f�̽�,��(�3��
���X��b+-�"!��rrz�T@�L�w��Ҕ7Q���LDl��wS�ƣ��x�{�m���R��+[�a[�Lq����fR"�+$�
���Z�6��N�)vO�r�2g�Eb�P��6P�NNم�A?%��O46�	^l��"�0N4@���)���_m�=�c��r��W��4U>蛉�Tְ��[H*��b��wv�0��*�o�,uRKЁV� �J|�J�9���谍&���
(
�
�����	��@�Wf��v�sIOشn7�SX32�G�Ⱥ��H�C
��	�3����wXG�jC�m٭飄�z{_�NbN�Q��on�H��V����u�#���κ��! �L��i�yh�c��5h���}���氍h�Eb�͸�B�w�k���s�ܹa=��w�ѕ�ꞹM�=�����kϾ
X��N�l���ۢ����Ƿ���el�>��v�ʏGG��IEND�B`�admin/images/features/choice-n-flexibility.png000064400000000436151213254650015443 0ustar00�PNG


IHDR@@XGl�-PLTE�h&�h&�h&�h&�h%�e"�h&�h%�g&�h&�h&�h&�h%�h&hÏ�tRNS���%�LJ�尫f���IDATH�c���wBx$�1<
�@
��Q`R�E��*``S�p~�<'��	\A7v�8��H��H�#<
A
D���wF��7`�vx!fz�T����s4�Tю�q1�v��*�L�
<GˆQ��P�pQlIEND�B`�admin/images/features/updraftplus_logo.png000064400000004201151213254650015017 0ustar00�PNG


IHDR��D�PLTE�i&E���tRNS@��f)IDATx���KҔ0ल�2G�G��*Å%x�"��A,/˅X"�M������.K�@�$AF`H�wtp��

!�XT��*H1��%��@�Cl`
����Q�d���bf�?�j��!Peo���:��|ݑ�Y�Pe�N�2f'TY+1���	U�J�*w%F���*g�A���ʘ�Q�o:T���t�����P�Sӡj��t���Y����Z�Pu�!MH��,,C�PT�
C�Е�ާ��D5�:
�l�B2$'G�2��J
K��Վ�K�"�ON�S��؏�7W%Uc247O�������)�Vǰ�檮�!,�)�?QM���^�6,Q3�1�KΒ��3v(
Su�_U��/�۟W��UY���ȩ�v-�\V
Q烪�'g��:�BH͚��vT�U�����J��t@�k�UUe5cni���tM�TU��vX��o��~US�n8���T[�v���MU�@]���R��'Tɥ
�U�j~��5�Q�ꩺ�#U�5U{���[jI�Zu<j����G�p?���U7��FU��j�,�t�*}�R�;�Q-�K�����E���{�?QǶ��r�(��q=�A�g���y5l_Z��*��D-G��O��R�>�!�|�j�v��ץ�����Xܸ�ת��BV}S��߯I���q��U���9�m���%�8�o����n��D�m5o�7jޤ]�>���.�J�F�r���j�;��Z,aQ�xJ�P�
;U��_�6��˪C��O�g�������w��Fjp���6���:
�T�:qI�›��FU@�&_��
��u:���QM�,q�~��P��h�/� �!DKUӽ���QM}��t��V���ԏqA�v�P��u�=���6�Ӫ;Վ���a稊U����+U
U]C���T����ǪQ��uJ���Nj�c�-�jƫ�	ꌪh��Өꯨ~�*T�4T_�z���:���:�X��U�TQ�
V�?�ޑaQ%4ձV%M՟Tq���J��*~S�GU7_Pǭ*Q펪�{S%U5��+�xN���*a���Ϊ���%�CKϨ�ZNl�UW�ḪVՆ�;�*O����SL��g���j�8����:�w�z��ê^0E{u�*��%��.-�O�ᰊ�‡T��4��n>��}_�����P��U��VU�PUE��j+5��*�F1Fu���{T!n�9�>�L�
��Pm�DV}K�5�^�yUfU�>���*K���8UKT���/T�Y`J~�vQ�zt�Vǟ�
��"bE����8�DUmT�R���Q�IB5x�ޏ�Q�ިS�>j��—D�kuV�R&��@�lԹR]�XT������Y�ƪ�q6DɈvU]�{�T�\Q�E]PuwD��|r{�����*�
�%U{����YQ���U��U�mպ�j�W��8�טGī�������N}���Zs�NVVgT�n�t��ޚi���ԇu���wTի��=��r�.͆����CQ'T�z5��+C�T�wE�Da�!�.��r����<��2	ӪNY�����j��a��RR�AE�*Y~U}>�_����n2��n��^�Mg�y{?�#�ۢ
�vib�
wj��ev�ēB�Nn����ޓq΂jGՐE�����Zr�Y��Sy����.�+2��QuDu�~��8���K�'��U���n���I-�UCT�nV�AUaæjw����\̝.���QUD5��?�{��T����5}RM��O��K��۪*e�A8L
�6�{�{Rey+�ӌ�d�g�K�
m}E�W�"�*�_W��F�Ӱ�`.nh�v"���~��iBr��N*�u� �CU�5��,j_5��ƪ���T��e�&yԎ�Y��֪�Lu1xԁ.��V-=���R�dR�MU��%��eRUR����7W�
�W�n�
��1��Վ���o�:,��/>pj���ja�١���Ul��"w����ZC�Z�C�Z�w
�#g��l8�5��xN���ת�?��Q��2au�=�^���4���L�i�g1Vq�V��Bk�W�X�`�?XC��������K��[�V�I�@IEND�B`�admin/images/features/scheduling.png000064400000000664151213254660013565 0ustar00�PNG


IHDR@@����`PLTE�g&�h&�f2�b�h&�g%�h&�i%�i)�h&�h&�h&�h&�g%�c(�h&�h%�g%�h&�h&�h&�h&�h&�h%�h'�h"�i'�g&�i%�h(�h&}�tRNS���k�|�简L�V&�����;�uGl���IDATX����n�0��c��&7 P(���[։9"L�bͿ��}�d�/�⦁TIf�����������ބF�5Bc����_�k�p����E��9�4��>�{��6<���[�kG�;����%��\'@`]���Qh�o급@��O
���gx����s
�k���P*nN��p�sSr���l�%)���
(��
�'�CŤ*�*Z�R9.�U-��P�]���IEND�B`�admin/images/features/displays-database-table-sta.png000064400000001312151213254660016673 0ustar00�PNG


IHDR@@�����PLTE�_�_�_�_�_�`
�^�_�_�_�U�_�_�_�_�]�a�_�_�_�_�a�_�_�_�_�^�`�a�_�_�_�_�^�a�_�_�`�_�`�_�_�`�^�_�_�$��.tRNS����ڨ�žY@ͷ�J��Ư6'�maE#wP9,��f2�o���IDATX��is�0�!�ʭ�x�mm��?�d�r�ؙM2�t��0B��l6����½>���H�:`�Hk
K`+���<���i�q����K��X��|M�+>x�J�����:���;���v��y�����q3�vKr�'�}G\��A3���uz$���v
�o�C����0j�So_v ��!ğE�L����>_m�1�s��Yi�3�i��e���
z>p}��N�	%�6��4:�V!����*91�T����/�Olq�>x�o`��0mL�����9�H�o����A)��9�Ӯ��e�� ;�����@�����p��]�������k,��z��<`�8`P.�t΍1�bK-�v&V�����"E3�g�P�V�=�V�X^�4Ͳ�0h�*��k�;��۽>�ƌU�!EIEND�B`�admin/images/features/automatically cleans.png000064400000002022151213254660015524 0ustar00�PNG


IHDR@@�����PLTE�h(�h&�f(�h%�[)�h&�h&�h&�h&�g&�f)�h&�h%�h&�h%�h&�h&�h&�h%�h&�h&�h&�h&�g&�h&�h&�h&�h&�h&�g%�h%�g%�g&�g'�i#�h&�h'�h%�h&�h%�h%�h%�g�h&�h%�h&�h&�h'�h&�h&3���2tRNS��¶�a��x�U@+�����͝O��i[2r%�;6�|DȎI�iG��ͯ�IDATXý�隚0�Y��uf��q�_\mB'm�>O�_�$gK��>��G�����-�����8�8��2;Y�][��csZQs�-c�s�U�:��rRwƧ�M����
l��Q���45�߂�z��ӏ��ۯ��vy��AZ�=�$ML<�� a�z�C���/��p@�*���;�D6��|3i���@�	U��,�R ���"
�5J�|��^`�q�9ײ����v�IM��>��7�y�;��3�����́�E�hx��LȔ���z$j$�du2�%��c
U>�e�T��#������m��P!׊��RC�!��)5�J�'���=�7z�8���S�����(S�x�>c^k�j^���i���s�-@R�
�G�W��k����ûIo��$��HTB�6'yl��1��s�Lx���6�����Ӳ�I��1�x��h`;�3e.}��}�m����*@��,\@����1C,v�
I�I
{��� ���� ����l�4y�>���`��h�M��x�#S:xX�o��;qO�L
#�aig�T0�O�۪B���R��l��+:���"m���$��ژ�ΣV�$�Ō�N��Z��k��K���]5��H�
��?G0�]�D�#'j�Qw�w�?V��>v5�lC�2ݯ�
E�o��\��wO[�]S��N��ק�����	#�(4���emE����
J�IEND�B`�admin/images/features/enhanced-robustness.png000064400000001753151213254660015412 0ustar00�PNG


IHDR@@�����PLTE�h&�k(�`$�h&�f,�h&�h&�h&�h&�g#�g%�h%�i'�h#�h&�h&�i&�h&�i#�h&�h&�h&�h&�h&�h%�h&�h%�g&�h&�h&�h%�h&�h%�g&�h&�h&�h%�h&�h%�g%�i&�h&�h&�h%�h%�h&�g%�h&�h&L��<1tRNS����ޒQ)
��9.ꨘ5 ڇvqd]J�U�Ƹ��j�쾲�A=�"@U.�IDATXÝWق�0���r�x�����M�Ԗ¼Q:���i�:`�#�޲?R�^{���*��uX���f쩽��N��:
��>;�:p����Q`���r!����n�F���nr*�+[�?��ns�zğ�V�p7�l��a��<Q�H�y��_vN�b��q��(W�g��ڷG~^YCZ7��ȿ�`�q�$ ���w�׏H�~nG�*|���Y�N��r�W����-^�K�rd������j��wZIw�Ob�k�|䘦�n���R�6�s��߲�;ߟٴ�_�_��X.�u�aYY`3������c���س,�q�O�;qvQZ]@G��9�;	�<�B$�X`���'��:~�_
"�{�(����+�Hw��G�f��o��g�g[ +1���H��ؚ��GP�4�������iR�����o����H���0ʭ�-\��G'5�,�,#�=Un�p�-5�Қ�=-q1>�4_�2ZA�B*51�b�'}���m��HӘk.�-�(�?�x��
dz��?�7�����J��h�f(-<L9�	�'�f�qO���󽰡 �h�3��mD}M���~��O�HUP�T9�Y��a5�d�7�^��E��ȃ�p9��R�	��Q{�8g�Fo��<��ܪ�6.��f>���5�|]�Ƌ���P08���FJ���Y�LV�1�Rs;��j��X�<�1��IEND�B`�admin/images/features/metaslider_logo.png000064400000004615151213254660014611 0ustar00�PNG


IHDR\�W��	PLTE�p2�i&�0�tRNS@��f	2IDATx���1qDAD��@��!8p����:���`J3���������-@�g�b��l����q��8���s�
��&.@�D�[��H G�|�@P���(q (ǒ,"��E\�E<�8$�$�xH�d��/Ɂ�#9�!9�%9��޹���$C�%9�Cr`�\$��p����C�\7�8$��Z� �O��@�	�/wv�7�؋d��ݗ�{����>�<�9eW���mƒ��Ů?
�K�7s���?�9J��wXz��\���?�ԏr�/���
�c\�7�]���R��K��;g��].��7�p-86��;�Jw%��4�.K$gյzs:�E�Cw��.G}{��1�8�Ϻ�eȎd��~���z9҅��Z���
(�]�����g>~�ˢ���hv�>���V\���I�s�eQv��]��zt��\q��\w�[�ER��t���*�c��/sZ�X���`��撔��.?̅�~��Bl��4���
\756x̿ƅ�P���.�F����V�5��+.�j���c�pQ]!}����e)T.�A��qS&�É��P�]�|����¥X�6��̭���e�g�`fT��#���Uu\�DQqe]�듈�8�A<b�2$�Ņ
\XpY��8,��]�l]�d�&��[ŅK.�.56n�k���x��ˠ��V�K��t�RWzj��]R�����Q�M��%�<���(&]��(�)��;�� 6�p�:��"�����Z\yQv�ȋ�QH=6��㊲��2���.������F�i�pf��|nt��哋+����Ȁ�����.\�(fW~�r������U6%~�ǮI�"䇸x�r���NWY$�����uW��.4ؒg���]zlLs����tq���U"\����rQu�Nd�˳�]���L�W��戗����4�\Jlȧ/]��{.�k�'�U�%}V����c�u�\�+p�‚�_;>˲9U��W�/>	�].%6���2+��&i�5�����*�
��K-6X7��\.�2K�Mg\��\�B��V\�!8]��.>k�	.�����������J��\f�,�|�ť�"����e86\���k��2k&9���F�&��݁�]hؾ�o].����p9��k.�B�.���(���.�v��]ׄ���V56؅���?Yt�eQ�.[�V��]����q����;]�x�J����*8t��6Ԯrx�ʛ�¦�+W�`v���sɍ�@@	Uٰ��ל&������SNU"��jZ4�-�xF+[)���,���w1Å6��ץcC��\�������]�
���uF�<p�t��8\��&]fl��p�Ҍ+��U��ˊ
�~W�u��L?t\Fl���8}?LWҮ
|�eƆ�+O��t�Ӯ~l�n����銶+q��I��B���~W�΅���ta�ӕmW�z�N	;8��64m��\��ݎ
p���EG.�2�w�y�>�z���UД\i��+�wiC7"�*W���t��A����^W"���:p�Ѝq��x��tp|Z.�2~W5]|�b��1�Vϻ��.-����\Kl�q�˅���е0��U���+�ЕG.�v�G�U�\&\A�vaG.�.9����.�u�����
;8�]�2.�q��K�_x.���[MGD���{.r�NT�}kl�D�\A�ֲ-�j{���+{\q�rn6���&(ZWv�H��3]�(�'Ʈ��9���YW��MVi+<3^��n؟�v��
���	WigU�C�u)�D6�ZN����ٽh��#�x���I��K9��j�€�Ã�/�WX]���\��uz�#ҵ��؄�F���+�p��J4��s�Iׇ�*�+%�5�]�Q(Op���U.]�w��J�+G�<�[f<��_��e���O��H+�eq%|.��q��@�����G�(CH+ġ��x7
$���~^@�(��,H�&��F%
8(\yy7*���=4�֏�0`�eb6�<����y7��z��>����S����'�׉u�\.��dQ�\<���J�6a-�v�W�ڵ���
[�O�u��%���Y�IV{���_��]7�U׹}�u�_���~���n
@ ��%��[]��"����1���?��_}Ճ�z+Tψ�a=>�\�'K���:��zU/��QU����X�J�p���z��<�����5�%kX#R�b�W-Y���%��d
kDj\��5"5.�jAj�G��e�u�����<�[x����X�����������屷��IEND�B`�admin/images/features/number_of_weeks.png000064400000000614151213254660014605 0ustar00�PNG


IHDR@@����WPLTE�h&�h&�h&�h&�h%�g%�h&�h&�h&�h&�g&�h&�h&�h&�h&�h&�i&�h%�i%�f"�g#�h'�i&�h%�g&�j+�U+�h&�]tRNS����L$��wJ�*�ʿ�e:����3��IDATX����� ���V�V{;��c�@��5���CQ}k�M�y�_��^$q*�\���UBL&��Ș���Qp��t� ����+%g�O�;p����C��n�H��6c�TJ�*��*�I�5�JXH�(XIv����Pâ0z���@�U��.�����	z*���@I6��D���4g���B^IEND�B`�admin/images/notices/wp_optimize_logo.png000064400000017660151213254660014660 0ustar00�PNG


IHDR��ZρbKGD�������	pHYs
�
�B(�xtIME�
X��F=IDATx��y|�U��?�>iWP��I�$Ŋ����:?qGK���S����8
MB�m\Яˈ3~�pe�#�Xm��I�Ս��s��V�(-6��$9�׋׋�}�=9�{�Ͻ�� � � � � � � � � � � � � � � � � � � � B>Bb{Yq�֯o��n"x@T����'}�`w�z����m��7�+f�
��X�R&�H�%R�K�Z,.���J�(��Hf�O��m����3���u�G�^��O�d�|3"���yBy�f�D��c��Nji>x>C�]��A5�k��eu���=�>U1��)gY4�2�:/y���|�"8G�`�6n>����guo)�^`��{�J�/1�ή������8�pqt;�1�ԏ
�mh/�e�X��o��.�X�<o�e���y��yi�\��*+7X��.ɓ٬�KNF��P3e�E��iV��op%ٮ�(�[[�+}(�R,"���&�Wj�n�+�Q������O�n��C�!M���6o0m';��s��OK����i
߉=Dp�A]��w/N����E��`�v�O̔W
"��Y-T~&�1�!�c=5����Ђ~?��N=X��@���/�m�V�'����]���{�:�$���Hb�.�i�*��#2�9a��̍TpMe�n�.'c5�hbL����c���מp�_"�!1���e���
�oG�D7x±Dp�>�MZ��|���_;��ܳWQU�_��Y�5���D��B[�!;X�v鳼���js�|`2轔��e�]i�����"�,�j
���aȉ�leh���'KJS7���W��Y\$>��`��&f�����/8U�4�f����]"8����A=ӛ{����9�O$~��f�W
(n1z����9>Ӂ��#�߉�l�ي_An�j�
�2��?lT`o2�;�uw�'�,��#���Rd���XƄ�D���X),
W��u+��ryՀ�V�w�4a��4��á0���#A��p�^��$C�(��g��|�+
��nM/�t����s
^���@zH��d�M	f���H�	�b�&�P�UҖR�=�^&/��ǒ��p��z���<ٶ�f�#Kg$^�etf��#Y��r�<7xV�W�9�?�5_¹��Ķ봡F�M�_,��M�aDx'b�������ɲ	}ZY��rC��-\-�:u0�Z�5���S���L�`C�g��L�w��_f����m s���^?���u�.�ֽ±m�&&�MCO�NkX����R�|�����/���9^pM!�Tb\�ȉ��t�@_���I���0�>���{��D��
yR-�Ơ�D���j`,f„�H�=��U��)�=@��;�
�2=�\�4���c8��a���}i���ְyJs�?B���a�{M�N��{NӖYpV�ψ�PO$~C>�
J���.}3�8)�2�����J����&ƣZB��ٻ�D)@�5ɐ�T0?	`O���F����Dp�`ل�>i�����l8�$iu �@���A|�CF�y�H�'�'wܒ���S!6�J"u��m�x��)l�2p�) :.�:򬭣f�d��8�~��\��S�j���������{4��>m|��p�`a�P:��-h1q��m'g�Hl
a�rn�B�)K����XWF��K��e��i�b���k@|`�<�T�|��'$&����67�Í�`d�ñu"�n��‰��t!�n�ۅ�P���*��u��s����V�%ӔFcς1���%��T�w�����@"\mc�L6���"����	��ޕ%��� �]pi�k.���_1���h�*�FFc����7��A��y/�X��/@���xS)�_��D�g����a�,Gt�f9[W��+`S2�XRS�`
����4����Ԅʦ�wd�
��2�.�4Ѧ@�O$1Ud`-e�M�j�E�i�R���*m\Q��ÆG// u��������ݦ`���C�Npmki��h�<fPM�Zq}��I��C[^�$;�nK�
�O`b��'b�tG�UNwH�iB����!ڟ��1���=k��Ҡ�b�rǘh���{�5|��>6}���],~�&���%��_��o�=2�ev[ATt�Spل�>-�>]��J���ލ��C@��(�?���Ҋ�A�G�2c�'_���sI$ޔx"�_���2�y1�%C����K`u�R�o<�ӎ�ɂ�_*`�3�������tJ�.��*��w�Z��:O$�_~.�
��%�w�c#�2ҷ#��,<���G҆y�����'��o�~)}����<�4�_[�@2�k�"�T�;2�׷�l�oG�y�+��A�I�:���?��)���r~�K*� �d�s	/x�qۏ�$C��I�Lc"G�'�2M4�4{��,�*/3
���a�Rw�����M�d���|�Eΰ�Ϗg5�i�֏�"��i��R2蛽��A=�lːچF����������KJ���/�YP�J|��{�u�%����&��-YE��`�(
}V�
�i��3,��D��`��,�:� �>�^���)凳��<��	׭`�}֊�������$+�G���p�-��FU�Q���o�=�Q��h�������SNX�ȡ��zsSp�O�t���-��Q0���>���>vS���BG���/��
�`a6gC�'����N��_��럷�i�����R�}O/f���#����$��^�FH>.��\����Mb<;�v�F��%���짏2̗�W�w�������m�ވ~a��TKG�#���L��,�ق�,>A�QOD�F�x4́�b�|V��߫10�2�b8�Rp_���t�$1��HC?��)H�Y.H���`m|
X�
 ��\J�c��r�㗬>=�J���Zi�5�QM2T�ߎg{��)����f����θ���7���g-2u͞iS]���uq[��u�]v'�j�i����8+��3�m��l}!����ŵK�I}����	(e� �;��u�Қf�͈-�h���\���4�8�<���v5��ܱ�)�H�ںqMA��9u-9-��̎��� &
�����s<l�����ۗ
y�2ӧpp%�n�W=ḭY�x�d_���|�Yi]Y2�᳼ܶfDݳ�ht2��P҅_Ĥ'����}�I�# �A�@Z��0��v4�|�*�Y 붾1��&��m?Х%�Q&�o�N���y�躲p|��y�ұ�{�[�@{���P�s.�]}�˽��	`��n��L��Fcw��:Aݨ��^}ң�x��;�W<V��5;���)�D��o_�	'�rJs�c�+\��Wg�QO$>F�U!|���5`�׉�j51]�ƞ܉͒��S�W�
��_��I�Z^5��E�rWur��j��D�'��vv�X1L�� ���~�J�K_�ְ�SbkK��E^l�lse�w�É[�ھd��M��e���@g^5z"�r\��SA8vG�$1]�����,z1����D+)}�Ixv&��X6L�QI�}l���������hb���6X��E��0�u�Q
��p���6RA�L�!��d㚂C�xw�K�Œ�.��GaK3�ؾ���A����߫)���{�M�"f��3k�S@��t�Ei�>�9V\��X�V'�u&�N-���S��]<���.}����J��z���r�
�sC�l��B�!�i
�=���ĸ�����(e��8��
&�@q��`/��9�I�Eb
�qG�Q[^�o�����!�mkp�/n���Ҫ��4D�ng�*_��W����R�(m�PD,�M�x"��2��8���ק����|do��o��m�Z��:I���a���Y���b��4��z‰�b"��v��Yu_�]�DޗA�����
�~���4+��J"�N���]�K��H��MZ����ݸ}��p2�ZL%����4FH�5~:�ax"�)�lw%��c2軛���Dp��]���&�'��x��o)����'����OߘZ�{���r"8��Í
��Le�N�в;c�v?�զ
�ߓ)"�NQ���ub��D�s��D��	��O
7�W2�;G'�O$�' ���&|��*�į�U�~��=��
�[^5�X'tH�^=B�/s"k=�X|�S8�ؼ�&.�b�^`g-:\��'�KkS�;
»;���	ǟ!�G���}��T�W��G��/ä�ޑ`Տ��۞ǤM�5�h�&M�wZÖl1ZS�w�����*
Ǟ��g����3]�8��W2���~f_=/-��$��$�jt��x>��L�_-�6:v+~�Ճz�7/B���\�v�]�*���wc�Y�cLt�'{�	�/�Up����M�3��~�;��;��1�;Q����ԔF�wnU��Qt"�j�{=kb�Ms�{WQb�m/A�3��
�QԕV˓Ao��J�chK+@�'�)��ٟ-��b�~�����g���T__"�_Y���:���1�n�U�Ę�ӭ��>�\�YnB�Oi�)�!��uO8�-�e{J��1��	X��D�h�ޱw����]�_~$+՝I�#ඒ5����h
��㚜�ݘ�.��>��p#�=��:����g���~�m�,\{�o2O|`�K"�&;
X7���x�֏�����
sܑ����PbL&��.���`��@o�2��s�o�Xr�+�-��st��bOM�%;��
��g�7��w�X���_i���_-�~0_��;����|��h�V��z�{�K"���3���8S�ٙ���Fw�iȜ���Dc��pI��e�'��W~`%�5`�f��Q�6"��;��܊�����x12%8"�ɐ/w8v�]K���`R1�`ߜ�0��E�~�n��ם����j��Ɩ�-����z'��+R!ĮTm��J�Q6�ޒ-���RUC�p���\<xV�W9%����8���n|s��]Z2��3]�@�O�F�l+�Х/&�V^�>3��Yxx�,��oN���婥��� �E�M�Ċ�.�^�ئ����bP�
�߱�I�5�gJ�Et�c���;�����(�I�k�Û��^i�f������p��ALs�̣�$�D|>:��$X��N�LA��m��z���NYmӷ9)8O�>`�e��7n�|��N�'�[N�$~�y�pxw�$�
�@�p�ϰT����Zz��g,~ޕ�����e�i�>�_��4f����p�O�R���ff�~ن��u4��l4[�\��$�w�cS*���.N�����H�E����O�Y�Ly���sz�+7.e�C�ǔ�R�}�; FbO4I���þ
���Ö-4�	bksB����[O�8Sp�C�3�?Q�N)�ְ�N��J��#�(�%���]��Į�x8��	�h
��i�i�j#�-��i�88���Rl��J&���o��HL*d�i��fbCD3u�u��;r;lب��⾭�`�q8^qG�g�� ���V/��R��zq���&x��S8IG�܉��?�����X%���]�ۚ�/�����گ����-w$~b6$�I�q��^�}Y�a���?}	T��-�XΌe �����>�eå�%U�e��clj����W�
]bW�8��o%����o��F���$�`����6x�m�p�ڮ~ۖ���幌�MA��
�Sl��-@A�ξ�&�V�|;��B�g�5���4O(��}6-���V�������lz�������[K�e�]�V�Z��GP�Ov���.°�p/c�A�"��TTď����u�4|�ׂ2=�`��T��&r�<����]�ᘠ��`۫�]|w�)[�I�ך�Id����b��8���$R�O\[,�����V�;)����42 ���,�}�����{8�>\�R`g�l���	l�n"�J�g,�Q�u�b7G	nPM�ZO��e��ך�y��T�Gl`~@���`��$�8�js��0���0*(����U�d~�؂�s 60Ӕ��"�mp|��43;�(����_~�H��B����@Kz�u�9�>���]:#�:�����Ro&��sDB���(ɀ�̨q�_1��.��4;9��D�8O?*(����1�xr�މ{��&Y�Á�=4Z���|�x���Ɖ�RNkP�Cɕ̸�!�1����J�K��"�m��a[8HlkM6�t��[^)���t5i5�/uGsEfmK�澾�5p���[;4��I�Y�e�U��~`o'��[]�fﴆ��Ul
���d��cq�x"��l;GL}�10ׁ�A�y"�'){kt��U����p�B����LwZޖ�$���ʡ�{�AK#�Or>V��I��v��H+��u�h��t;:^p�I�E��z�ᎌe�4+`��ً32�*N���|����Ħd�=��&�Ҁo`��@�n"i?c�SR�P��"ɾ��
�;�v��)���-K��)����o90v؆��+��S�x/�b�e*��2�sЉKǭ-M�u�8�w��-��]N��lj2�i���چFG�l5T�#�y����G�:�
����ÍK�ɇ�Jp���E�MٶJ#��J���pc����UYX�W��,�v-ii��l�$�z�1@����dq��"�
&��6�[�i
�3-��}ZT�C8�iv�R۵�W�z�����.�c�{���
��A-f�u�T���S��ڮĀu��޽�-CL��j�"�����o��[�.�Ğ��P�6��%�+�G��a-3�x-�\��	ܛA��\��*O8�@Vw!����{mڰ��h[&	����yז��ڒ��_	!N��0���D9���r������7�3�(�Ƨ�J�T.tb@�����i�ќ��A�sIl93�0VC5��=����Y�7�����[��1��o+�U��@|7�H)�G��h�,;G���5���D��E�o���*8��R���3�k��=ץй��0}㚂csYl9=������)`�B�ڑ���{���A2�mECz��;�O`�מ�x}�tX�KG=���d�0��?�
��.}X>�-�f���j��*�$0OP$�o9M���ҚĻy���O�Ǘ𥉉��: 
��[�醶���۠���Y�/sMm�j��X6�>�w�I�X:�r�tQz2�ȍ{cNa9����O�)Dp[�*+w�q7�m~���
(|�2\�^�!������4r���la��{K"��s��D�x�!��f�[u�wL�I(���'EDpV,5ۊWL�"���"?��b~��@����&"�Ѿ�2����4@o0�Ps�}^8�z^Z<C�Q�R��Vc�p��a�!�٬��=��x���B����r&i��D�!��j.�y"cNI�~~>���e�w^=�g����d�H&��l�Ͽ�r�ů�k���ಆ��C��a�Čc�42�&�OH��_@�A5�k����PeP�p0'͕�h?f�[T#{�i1�C�E={.�?��
�͈��'UY�k��2�*a�`�4�����C�=��n�Q��[�lj������֢-;�j0/gB
�)n5S�_7}As`��AAAAAAAAAAAAAAAAAAAA�z�i���I�+IEND�B`�admin/images/notices/updraft_logo.png000064400000006101151213254670013744 0ustar00�PNG


IHDR��,�?��PLTE�O�O�O�O�T�Q�O�O�O�O�P�P�O�O�P�O�P�O�O�P�O�O�Q�O�O�O�O�O�O�P�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�n0tRNS����"�}ҝ	ʹ�/�B��Ș�ꒈ�r)m5�;f�_OH�UZ�xo�730IDATx���k��@��eQP.����xC�}��N��)j��;|�����م�`0��`0��`0^�a/��t>=̧�E�����m���5	S��"��$�s0�m^�}8�OIFi�X&?���QX&�����Xx�"+��B�}��S�>�G������*��}u<��7����x�&��\�G/p
#���D�Fb<	r���k�2[��Dӊ���eT�rf� �;�d����vF���r�p>#�cO$�[x:��ؗ��7�����|��)O[�ΎP�\F���K(���~	Z�'�����^ɋs&��h,��4�RˍCb���C�������u�����#�AE���MqH��Z|��qreS
�Ըؤg^���Lyql%���n��S2yq4�C�񛃷���ѥ�qX�-e����3��G_o�RS���m��y�:�����E���kNrPj�6)�+��{�eg�v���F��bM�o�\i[��/��g
�[�cF�t�6�(�a�����9���k�q�a�
|��5<��uq�ie���I4�����f���U����a������8CU[� ?a��m��<c�q���C5�5�]@6c2�����?s�0=�M� �bm2*�#
m?���8�jH�bB�qDne��"f|�ӽܺ���qZ�*����J� �]�������n����oK��2S'���|�T_b6�í	����5o*;$1��WG�n�W1�+�H������8�i]�O@���d�q��C���j�#.
IOL�ˑY�����)�ZΩ�,D�q���/t�x�)����6�����mL�Ǵ��w�Iq����g�.X�����c1��H@o�I��84#��4ڵݫ��!��������㐿�zIE�_Q������ڸ[�������q�@=�pu�~�kq�ƅ�e~�X�����ËL�u9�p	},D]�C�����Τ�rWv��X1i����7T����!�t����9�U�-N+�y9=�J��r�k�������!�tU���r�ޠ��Iz/�����|9��
5_��jt��/�J����B������c�u_����͢4I���<A'SQ��K�d���!t2rH��І.�WXN�9t��^`91��D��-ndt��^c�nqAk\{�i�yR�HQ��q�r�ڻ�%Ea ����PA���n���=��V���!������i�m���n-c�~,���
�����C�����%zh���#�I�c��='|.8�l� �GI�7�>��~8S�F�B/͓�	�+�vy���Q�,������S;��|��z���W�\pE�a���:�^&��'9?(����Q�y���z���@O��a��Ad��^�О�E����7��m��y�{P�c6��LB/do�sUyv�<�DF�Jv�^�a^}���By)��M�Ї{��-�ӓ�"6_`���G��V�H�Zn�M>�д�l���`��Lpf�m�� Xy}����gG��.��i�[bA-x�9"��V���	��-���H�L�p��J���G{_�"��]7��s	��r�.װ�\�vK��VJ��.�{6)5���\p�ƅm?H/l�.4�{c�8R���E~F�OVN���E�D#c�G�$:g�?Ĥ��Ρ �&e-)�B����x@iCb��F�*i�`j�F���=���ᆢY^����D����)�.�G�3��ڎ1�%�ئ��Ӛ�V��N��q~m�p7�)���Bu	�_��tV��8sN����?�W^bQ �+)r����v�T'X��QL�[�ۍ7{jY�7�;_n�\t�,���J¯$p��;�w�h{Y�N���\.G����Z}�G�,Z˨���x2G%�*+D�;�c['��t����sjJ=�A&��j�И��B�K_<���`Qi��M���)n��<�#���t.RD`�S]�� ����]4J���)��sl5��NLyjO"T���T�s�6��N�ãDot��"R���7�&�֑�ƸasM1�>��ap�h�
�Il�;��N�Y����N唠�}%4?��&d��{��4��M	���41�����H�F�B�ݔ��ʏDj\V�z�(�S��P2Z<��Z`zQ�	��Dh�`yu.z���& 0�������nH4�L��eB-f�x�E� B
�Mh�U;�������iN1u;�);,%:Qθ���&;�<Ξ�!��;�;v�3�2��e��*�aC���N��y�+ܬ�3WB��H<�_!B'$ɜ.��П�WQ�ȍ�Xߪ�$�D�Y$���#��~�rK�0&_~�_�v�؆x6ex��4������}��=W�2���}�
Nh�K���J��_���4��������ɞ^	6c�R��}̓�_"�b�zOG�l'�����:���R������)c7��&�ٿ<>}q��֮ �������������e�ڑi��I�BM.�mY00��H��E�)HhB)�u�¥���f�o��\��E�~�#c��6%�o��"�
���d{M�)a��x
�͡|�v�o&��H,���&ɝ����w�z9�M@��C,`�^�{�G�/�r���;�F8�}(��O��8c?�����^�@�_B���*�b�>o?��&�o��XoN�bH?A3��l�����}^�w3�z�-m�*��*�^f��>uP�"ϣ/��y�7�`0��`0��`0�O���k��]IEND�B`�admin/images/notices/keyy_logo.png000064400000004373151213254670013271 0ustar00�PNG


IHDR��P��w	pHYs��~��IDATx���m9�_��\�l�U`��(x]A�
�t W�ur'U���*�����%g[Krg��B�?���Cr��AQ�T�(�IQ�"�E0)�IQ��&E0)�`R����v���T�W���Ͽ�
����mY7[���q����ճ�E��[�
���n�|
��|( >}.zn�Z ]X�jv`JX��Rys��湅�,�g�(p�.n:H��6�c���{��nV�V305�o	�uY75��
�D>g��
;SO��sS�O3�-����9�,��}J���u� ����5|1I�X���PN�M(_��Mu^�1�y%.yI�N�c+�Y�r�;��kq�1�;��[r�auW�̈́`���̸�i
`�5�J��О�!��t)���`�>�.�����Ƭ]U(�T�5�%*�n5���}�T�3:&3o��/�Ю�1�R�n$z��t�u��kX�-�sNɄH�c�h$�6�^��S��o|�ft@�C�r��2|�6	�0�e�ʁd�=��~v)�sp�Ѳ.Sf�I���o�U�קT�9��17��_|��o�qL�W�|���џi�P>�Tzԇ�!=Z(��CzŬ(�=���]����H��]�UCH��-Zf�1��<�G��+�b���W�V�Ǩ�LIx��fy����6�
���".˺Ys
�NP���+��9�Dzn�j�t斟˺���!;)��ծ��a�_z��C)��?cC	Rt������sL'n��/YZ[ﻠ��1'��d�\!ҲKb�kӲ�}ۗ���>��S�����2�}0܏סJ��FJZ�u3UԞJ�Y�fg0e�\�ޑ]s����)�$½;��I�Rc}	�;�}z�v�`v�Lq�jˮ�+��<`5�م�F#���C�p^�=2z�f(!���\]�+�#��`�)��$���}9�e�������]�(��iy~���H�W�2�.`��A�
��*)�r�J#ˮy��.#��K���t�:��y�`ȻO0���g��N���$`���>\�Ô�:	�������L`�L/�OE0�:�)`zI.5OK�G�I9�	�~�a⨟G)��y��5%�*����+��
�LP���n9��b��y�C�x�4P���d����X�	�,���t�c]��|'o�#�z��܂���W��J���.�0��� t��hO(�o�"ŗ���sK0�h�mL:��A�:�o���:�2'�$��@��K�iw0��D�s�����!=����W)���=
�l_��J\0��ǹsy
�'͟O].ZL����`zt�]���c��aǒyؚ`L���.��z�R����م�#@��rO�K
e�e�8ػ��`2�k�Sؙ�-N�t�[qP�i��1�L�
�n]��S����P�����;��)�:�.2ݩO��e�[V�Be��FЙ~)�������v�kr��݇ج���E�<(�Z�:ϬC��"`c�%A���H�5؋@����*��Q_��1-��9�T��nju`ʲ˽�N��1�j����:��-��).tG'�n7�"R#30ס��=>>o�\	����콳��B��1փ��)pn����P�M�;�b�Ǭ��\뀈�]FS��ϭ�1��bW��q����,�&�JT0en���.�G��E��.!���Ӎ&)v͢e���W�n�/�&IR��֊1盦���������kw^���N�{~�%��|��4N]"�T���M;����^nF�	���z��8��LQ��ܽd���70e"="�j��5Q�S�I(U�I8	�Z0��dBD($ܒ|�6�y
�$�m_ٷj�<r�
\�O���ڠT�Ϝs��E�3�Ek�ی*�*����6\1)��#�֪u�#���D����i���ـ�,���.C�Y0�ڂ
tϷ�kY7SK
6�{��/i).���p�`>t"��g�о�c���`>��-I��&G0�:�������[�	�;�$�� k/@��б�-IZ�;ν�8�`Az���|e�Ewh�qk�Y6�|ұ8���wh��V�	f8'	����V;^����m�^F������g�3���ҧ��j���WO���EL*��`R��&EL�`R��(�IL�"����x�������	�IEND�B`�admin/images/notices/metaslider_logo.png000064400000022744151213254670014443 0ustar00�PNG


IHDR��ZρbKGD�������	pHYs��tIME�	
e�2 IDATx��y�\e��?��TU�	����݉����g�:�
8���%����t@ �DB!�"	!Հ���b�xg�a����ru0@H�$�����IW�9��G�N���:�NU��?���l���w��.��::�A���z�~�*Mb?A�f���d�
�h��Y�,d>\-�g���7����z�Qf�*/�@�͂g��:��U�z��a��Y�g��^�z;��ʂg�E�h�>k9ԔZ�z3��Y�l�hU硦�
l4��,p6+]�g#�^�C'�
١��U}y�j�xR��Y�,x��XآUˆd<�Y�ַ3M�� �t�4���L�(L&��5��t����	l�"�f`�����ے2����)G��w��S�h�W��Y�j-WkZD��2
a0
e��\��
��:�
���؂�a�*���n���9p�
��U�#�l���ǚ��b�n`{�7"� ��zU6X�����j����3�
S�� �{�@��~�
�~c�5��R5Awhq�WxqՔ�D���|��@���Mx@�I�ɭ���vgTC^g=\���
N�ȸ��s��pu$��#w�|�)9(m�Y���6#��q"����N��%�O���|e������+l�0·O�28�\��j@[��"<l�QO�i��9p�E���j�`k���l|}���4W����
i�~�>��[_���:��t��g�x�И�O��r��RQ�,�x�`ʑ^��b\�`r���k�?QM9�뿁e"<�+�-t..��J�#���e�S�vJ�q��SxZ`��<c�����3l��",F9Em����BxZ�[�g�:�l/��m0M{{����8Djp��[�4����+]����z�wz}3�ٙ����/��WTϥ������_/�N��^O�7&�T�[ޏ�T��d��Gު�`N��Z���"W�u�C����K�	֮c�7��[+]2Q@V	�f�&`��-��Є��Vm���US�-�9~l�8�`WQB���YcS旎��k�C�Ry��<_�hn��Uu�w����E��¶YSK���(?�[��zMG���\K�I-�f���
(�Ԗ�kJ�p�������aU.��aK�����l�V��ܛt��oU3t�ܰE���|�C-l��ӡ𹌧w�����@B	)#�lGd}}@���$���=�t伌���.�!er�#|�_>hͰ.��Uґӫ:SM�482�W���u���>O�o�0�,���r<HT�����Oo�a���'z=��㣀�\6n���-���z����ܬ��p�ĖD�Z�3�>@Tz�'{#��[�:���[=���]�Е%��@�inP�����U�UC'��8�P���t�fk^Vè��+�D�劉���'G8�W֨�iU�1�f�3=em�ERF�n(i��SY�"���)w%���������[�V8˚�U��P���Cʨ������_heU�
-�5��F���:I�%�d�J
/�%F8)v�=����8_Y�v���	���wM�76e�b���*�N�±);/(��b�-a�X�����Ve6pu����Ű�\!�)����]�U��x�~7�PA�iT9\��J���m*t'��_	�aC*
�N��YӰ
1��-�'|
館�Cʰ��&�$UYla��@���xBK�1̛�Č�z������3ڬ��n#��+�U�˙Jy����UY 6�����UY�4��
ǎT0��'�{��U��y
������*2 ؒ4
��6���ܵ�
F����=}�9��l�[UH�l0!e����j�)!oG�vW#��=XVR.��	�&�[T�K��guBSB�Q��f�1h�jN��ba;T�D�F{���2^���N�3"|�f?�:�#�ry�y\�9\��8�3��6�
��umi��d<�H��2\�Ɍ�׾�����g��|�<�O�l�L�E��N7��1wo�+��/Iq�!�s�ƽ�����U~{�Y�MV�0r�1)s��|
h��}Pϵ��K��-�v��Ta��6��K��n� a��s��T���kp�?.7C&�bIw�?8�=W�/��!!��7)G�(8������CϤhH�����;h�'d<=.�ʔ��X�����Sl8	
o�p�ԕ]C.x�ʮ>��'F�"\?�N�o������`��۶���>�%�1�C�2Q���6v��ڢ��іv��glO�{�gu>���K�p���iw�Hؖv�T�.(���z��=�"�4Q�����v��ƽ�-�./���8�=̟�N9rƱwo,����N�6��m�pb�Ϝ(�Jv8	��z����F.-�qYA�����	d�0�]�F�L	#�
��m����u�|��(�4[﹛�"|qƪ�����8��E�#�+�xy?����>��g���k�_Tx��r�mKҔ}�A�&!�
�O���tᲶ���Bf�������-<�r�������Imi��F�L�����^�a�	;�.��-��Ͷ��p!��P����1`�@"�v��|y�](�������Գ�Sea�ae�E#�I�¦
�NlN�R
l�4U~��t^�ΘzGW�zʉ͉[��<hl6��IH:Hi�6ຄ�/�|g}�H
2lY_��ց��>�ٶ����-�Yߗ0�%`]=v�������}L�����ߙ%;F��X��H�
�7&������nj��䟄��v�i���fC��LX��f�t�[��!�p��U]��������*ɛ0 �DB�V9�WZJ��ڮE��QL)�1W7��@W�<.�*���
S�14�FG~Z4l�I��{O.�\�D^5�U�G�#AV���58?�U��Da���a�q��{�y�+GK����n�ʮL1���v��W��@ޖa�̴�����W��{n{%,Z}�ޠ��
�����By�P��yX�a�Bc�����mi��Ȝ��>?�+ws�y6D��-�_Κ&��V(�
�������5"̝yX��j�����!�5��1�N��Rr�1Isprt
�lK�7���-l�x؃�m�����\FU:�>��F��N�ܲ����X��$�C�$�|J�'O'�,+G�0ZOۯ������,��⫖���^�Q~גQe0�^��D��%�F4�a`��*��A�o�N_յ��::]����0r�P[H�ے4��pG���U�֒��Ghen�&LRS'E�g��OX��+6os��A�I������;�ߌ���'?ozr�G|�q�׫F����ׄ����ExF��1����c��n�L��ÇK��nA���0�_�F��;X�t{�^)����
?�y��J�禯�z���Q'm;-��x�}w�	�[�`�ӟ;��}���š���;��T9#�Y��O�,%_K:2H�U��#|��f��d�����f57��{8$[ˡ�䶷�����b`����̻�˭)sֱwo�+��N�}_=:���:�!��O�FfS����U]��r:x�c[�7p���fh
7��=3ϛ�.6#|���_G8o�
���v�_�7;�����K��ҥ@C�ׇ�2a�bK�C�Z%.Xt8����
�f]ת������>�#/���f�r+���e�i��bas/�����z�����!|Ca�z ���js�9�`轢	���n�T`����uF
��#K��ѵ���㚜��ܠ�������)6`���V��ϩ�m�s����{�Ӕ���=�H���k�cd	��V=]�\v���bhn��e3Vu=[J(�s�wpV�Ϲ��.�o��%���⒛���W��tٸ~����.���U�0��K)��X�l0��V�����km�ow���;K�M�7�~z#e��S�ڨ
��\�n��$���ov����N��g3�aP���n��%T�i����5��J�=���Z��Dx��ӽ���$��Y�a�n#|~�]�J���H��ٯ������@���'��R�C�N��a�z9��N�R��k-�	ÖØ�\ks(�YXC�*S=_W���KF�}��>�+_'W$Q`�1�df�}%���Ֆv�X"E�S}_ov�]��.a�2��5�S��ɵ�����"\1}U�#y���9)M"|K�D�V����~����ӥ��TJ 
L���♫�����{��.�K�禯�z�W�k��	��I�v敏o�+���lK>�ƭyZ �B��	���+7�=Z����Ձ��.
�)d,mۥ����OS�2	#'e}}~������q�������?e=�1�.U#�����ܔWD����ha;�^F��l��gT�����'���c���v�|�as�L*���lu�D8eO��T����3�����ha3�1��(�4�>ۖv�Y���po����w�E���Kg��C��S>j�O�������>&��rG�U���NɄ�9T��>?l�uT
��J:6�*6#�\�I��"|W�陆R[�]�p��������#�'�v��e
�r�����6#,��t����q���
b o��Q��ۋy���$���\E�=�7)��02��܃����R���\0ڎ���b����L\i��n�9����$"|���;��}I�
�^_�
��>���e0���=_/k�af4;s��#{}���5���	��i�ϊp��ka�C�G��nY��W,l	#�W�.��[F8�=���<�|��� k�4W���߿3?�#�V�i�F8��+˛2y(/7ҽd�^s��-�r�Wu3�4Wx�ʤ�7�-�A;t���֠T�aa[�}�ļ�`�09E.�SV��V��=,��3�N:��[��4\h9ܽ�o���Wc�$�	tWSo&�>���n/���+a��[�;�V��1a~R
l��~_Y�x#YF��,w����c�k��M�_���N(�=;��F���;U�t�8��V���H[���$=_�)���ִ&͊I�o��#L����'�
����͐(��N7ۚ4+DX��q.�WL���=_3F>"TG;�l2�N`G�x8̘����p��y�*z��"����&��P����n���T����p�����1aņ=��_in8�O7cB�oEXPEnG��UIw���'׮ӑ<�0E�?W�漳����y�~�{��y�,.�;'y.����2TЖv_�o��,w��n�O*׮SO���J��m���*���kfu�{J(�L�zO`���ʶ���b�PsE�Rv�j
��B�����"\)!֩���xl�>)�Y����5��N��8
�W(�a��U]K�ۀ�>p�=���ݻJ�-id��l[��x idz��݅�d�F��ߴ�h��܌U]a~x��{8#����i��Ov-pZ^���1)�����t�Қh���e|��}����Dc)o�I����oWU��pf)E��
Ύsg�W��h�N����t*6#��������_���������̶��U�)�v��N�֝��w��b�
�/��k��6Y�zϏB����>$p]\s8�u��1�jAC�'�	����Un���=�3�(���kL��S�;�Faј��W�\�W=�Ǡ,kM���P�՘��~Ǩ([.����d����hoJ��:FΙ���bs���-f��}O)|$�TU���to*���{<M�{�lK�H���K	/݋:�r�	S�^��z�z�>��g1�-���Z�<�������<��6l#u<7���A���b`�/`�I��&���&g}�阔I�RD	�NY�Q�(�z���^	�Ƌ�L� "z����|�f�5.N�v[�}��P�
�L�;�{s��"I�}�3���Q|��s�3�C��\��$�uYrE��;�J)�����D�v:��[��r���txj?!$���Ӟv�i�I�X�D8�J�O�E�|��v��]��}*#5$�ӄ���Ez�]"\l�?��S~Dޘ��M2���4N���?�3��s���{���R?3�b���S�	#�0G�eG�p��b`�[p:p9�Ye.7��%�,���
�bhniL��!�]��Oa���bܖ���
܎_�	���V�K	�KY43�8�q(��2��|����6@g{ڽ�Ģ�lUn�
�+0F��#�K�N{ڽ!|N���ic�N���̴�'id�T0J
lw{`��n_��[��$f��"\9}U��B��`l�Hw�_|*�c����J�adG���[�
a�*��ύ�|]�}��BWp�W~���²-{�>4���^�Wu������a˾>-�z�RJ�C�b�VfNeae[�ב��p����?�܀l��Д�O[��z���
���;��Ͽ���C�9i>	�W��G�_8�0>/d�W��T���F�r_���
'�H�Ep5���?���*�����}�W�
"��1��)+��[ 	��^��oi����{0M�}�>��9t�
�kD�4RG4����i��CEp���O�)��������6�	�M���=�@2�_���zDX:�ɿ+�G�Q�k��T��h)C3N��;�2PD���yD��PL[my��ڨ��(�6����&�8j��
�Q���:pnG��v!!�`
}x����2����poʑ���baK9J�6��{���b����RS�<(½�6F�c�x�����b�(A����z�)�a��GC.�<Na��@[{�w����}f����_ p�ܷ��L�,=jeר�t�vu-��ib�t�t���#-�n�w�ʮ	���|��M���Zʃ�w�r�[r'Ǿ��>��
����y�=(���DX���.䅇z�M�{Nn��H�׌p��U]�K��0���Jt��^SJ'<}U�n#��|�q
�F��TT��+"��._�ƥ݋:©R���/B�C�IsM�9[��U��BC��g�L������$���VӞ�����s�̷��=�7��f�oVHxٚk�B�~`������n���X+����R�.���^_E٧�#��������$En.e��q��`�*]h�n�}-:�W��g��FxP5�wg�z��T����ɝ�p��w�.{H)��E�ErKP������Ҫ<-�Jx�ܤ��a�v�hVhymka+s�ZE�!9������5	���?�ʪ���6'M˾>��+���
�?ʨ��ǵ���w�wfX��ۆjVq}#w�N��0�����gm�Z�T�6��)�o���?�ܶ�ULCʟO���0A���ʍ��y�v��js9���n[��
5��#��+[S��f��b"x>�Hh�Y4	���&�VV����z�;lІ.,9"�]6���I8��dd��>_w?��m�(�ɨA>�+��g5є�7	������v��ꄦ���gʈU�0s�~5%$+�ж�U�CʅQ�6���ӵ$Mþ>�?��٦���^hI�����{��-��_��^l je�g�kÂm$��[�ӽ��)[���6��Dx&�Pr����ˡ>_w�p��nk
VQH!gs��R����5'�xʚ�U�M�לx�R�-���0�	�p�����n�VVa�[�O�ު�B��)�0�\��cM�*T��
[!�ɔ��������n���	[�]��-Q=��/H�X�A���B��aާ�H�JpءesB^F�µ�*qW7'$��ܣa������*wb��V��S�ܹ'����n3l�$U�(L��bU�v8™��_(k�|��"�h�Ū$O"|+
�B�pQz:��
gYӱ*�vR8;N��hv�_	#��X�R��:l�8�������x?��M�vdU�1�fry�ڸy��r�(BJOY+�"΍��B	
�eIDATJ=",
�R0�Uh�+�K��0�M����DJk�����p�];g5XN$­��(`+U�Tң�����[�:���oN,��v�FvR��hP|���A%_���j#\�+o�=�,pQC���Č����	kouJ>�r�^OwTle.�(�r�>O�E�����_%9=��(�W�:���
�������.�-��h<^����~�1t�+���XRX�t�a+g�f�pQV-�v��D�^��j޳ݛr�L9�`��r�K(%|FH)܀�HCx'��¦��`��LT�
kr���+D���eUnPh��Z���p�����aΤ
�T
:�r+v�s��5iӵ��-T�*	�c�x�׻N�v[���yc�<_��l������=�/��lBWU�<�'�e԰E���+j/��E��)qכ������yT�Y&*آz�At+p&v7�8멠�*[T!RW�|�_���oL�?�rv� .R�>�ջy���E�"5�JC�N�o�7;s2�������깔#���|X����ȁ���NW+��1��4��
,V8��~�E��-c��{z���z�6��t5�^��ty:Q��(�(aq��v!<��-T��Jx��'�|��NV���)
�ţ��)<-��S�1�z�������a��U9���cQY�뿁e"<�k取�4l.n�d<mhLȧ}e96�,V���OL9���l��&y�k,,%�H����}j�x�*��c��N*�_�����3�bac������#��ᓪ�#77s���]�
</�#���qz��x��g��r��D8Y��)�X�ٳ"<��3"�>9Z�a�pq��\\�$���:G�
��h�;F����S���s��X7�q֔�D���|��@��v�<��$p����}[���q�j��ߔ(����{�ʙ����@#�P���A��
�~c�5��R5|�|[�+xU��	��V���f��h�\�e�����K����W֫����w\CȪ����S+�"�T�i��i(s�
LWH����U�E�u���[Ty�Xu�ت�|�!�N	#��TfMl0[��4�j�@�1Ҡ�3|��2�x��� ,m�o����n��[Ĺ-�X[^3�ND^�|�mI�L��̔#S��v�)G4�kՎ/��C5�VU��tV�	[�7����'h�[UWc��U��j5	�
3m�h���YY�j�|�,x�ڡ���z;+����C���Ul�Z�gCM:Z�,xVu
Z�gs<��Yଷ�^��T�{�[�g=�΂gA���/���ᲀY�B�-d*\�^���-x8���WO�U3�C����g��U��?Sk?E�%&IEND�B`�admin/images/metaslider_logo_large.png000064400000021440151213254700014133 0ustar00�PNG


IHDR\r�f IDATx��y�]E��y�HHQB��aX6s���ҥ,�5��p�����I��0D��1 ��	~��Dt�L���CD�@�!@��GU���;�;�}���Vփ[���g��S�����>��%K�Q���oS`4�q�;������S������o�����
���e`1��X���RJc�:��'K���m�q�v���6����,%8�Y`!�8��xj)��������x`g��o$�_�v�px���0�X�vT��~��L�&[�_
�@�{��O�랋�Rw��d�4Y���>��f�~���X�^d}�
u%���X�x��X;�F-ˇ�<�C�����t<����dp��}\mږG�[��u�#�ґ�(�,M6��.���4�
ƺ�b+�)�h�,M��L�ֈ�Qdz����X�"�>m�:�	��G��GV�[y��J�&4�:�:��d7`:0Y���\`�{ �2�:��Ҥ��7���Q�f>0�c�덭L��`�4Y8�>`"���G��6�}[�VE@Y�����;�Ldu��x8��X�<�2��:�
��8Y�X���SG�u�,M&?����"�"�$cݜ؊�]��4���#�*J��L3�-��HL��di�I|H8���}�M/~Aѩƺ�b+��sa��T��'�PZ���i��ݶ���@�&〫��b뢴$G���HYt���d]��D`���(��r��Gƺe���t���dw�
`�غ(m�S�w�u�b+"I�:�,M��N@��+�����X�Qle$�H����/�b�t��2�-��H�t��,M�C�_)���³�QtL�i_�ߦ�(R�&uJz�pY�l��1[��E�
�&람�H��� K���S�W�b+`Ax�ښ���ν��$��Y��v�aؖ K���ۀ�������ތ�H�����d+|VXݶ������uO�V��j $�|5~���x0<�mC�8����.|�{EiEFw�g�-h���|U��b�(ðpKxf[��wY��\J�(���,MN���p��$`�&�3b�(M0�Xwbl%�%@�&#���w�Jgp�}c]�[�9�`��G��EQ
�R��Vs�8�>5~��8
_���h)��+��q�oZ���~��S:���v�%��;�Kc�(%r����JDwa��-�P4�(%���DYT�M߅��S��������@4v�=���W��%���vF	��~�;P�W�Q��&J�t2�܆n�U��l
�l�TbD3�L>�R�?�m�TJ�Io*M�����n.KXi ��^|���Ҟ��RV��R@(��0��[Qj�i`�2���5p
j��R+[�mFq�i�.E��	e�"�*���	Q���=�%��EY���/ѭƯ(��>�`K"H�DKt+J�쀷%D�Y����(�sE�>��/���q� K�u���)�cE�n��h�[Vd�C�SP�W���o[�Rh���8�Q��M
��,�7�=^T��EY��\���H�&pU��B(r0ة��E�Nx[+�B�Y�|�~ydӝ)�2K���u�5�QQ�Y��+JY���\�4di�~��f�U����/^�L'E�E��(J���m��N&��ߣY%Ei�=�
6L�C����I4����d���ny#_n&�6j������
E��/��F+�R��k$
h4�����
c�6Y7u;�,M�NnD�"�U�[�d+���6뢑�p�3
|O)��S���{�ˢ?�tP���m�E]sY����z)���X� K�Ӂ�$�?�u����G�1%�V'�/��FQ�o�W���%�5�+�'�01�����E�����y�"�c�c��0~FX�g���u��Ơ�A�J��e�5;�,Mv�׭�R4��k0ֽ��xO@�{�� #O����r��l�&��k@�X��a<|���+�a�\C&��x����4	�����h�ߘ�����Z���B`ZA�/4�[��O�w�nR�l�~��-�u�
w`�����d9�o��8�c��|�փ����uV�0o��8\�-6oZ-�Q��~Z4���n�径OB�J�����Jü�1֭�Z"��P��u�?���e`����O#�d�����*��9�����J(",���kƺil.���f��?%�N9��d3�y��4�Jͼ	�h�ˊ�,K���I5~����a`�"�S�b�Yc�K�0\p j�1�*�)�h�p<�-�pQ�^ųކe8�_q�(u�CcݝEvj�M�q�����e��\�ڧ��gH�di�%�K��(��+
J�\Mx/<i��^`�Z�7�Y�sS�e�,M��8T��(��4pH�Z���g��O1�^Jh8�C�稔��5�4�/�w�;�Ē{di284�i.0SJ�J¹Mğ�R��r�[�,M�NR#e�n��<K��}�ZUMv6�]Jv�.�7�%O 1�
�):X�
ae���6�M��h��࣎Ҍ ��2e*�6=��KP�?�3�:��d-�f�S9͇�,%{f��])�\���4Y�]\�z�-�P#�?g����p�㯁"ϗ�m�#/��;��R7�w��*% K���cr�~�"%�V¹�,��m�y�k�(�w�u�:U���iz?�8�.���໱���v���<��uy�YY�l���^U��I�7�d7B��c����~ d�ٲ4u������:�ۯ'?{sj�{DJv�L�_E�-����:�9������� (�����Xw��ܦ���_#E�~6^��T�"��ʵ��K	���_��r�P\~@1µ9��ٸF�q���n�γ4I���4���:�b��X����zt0�@�&�P�:�����"di�1�v`dU�
|��W)�B��_������#��4^.\�?�	��
�6���u�	�!\�I�k�K~*
~��u�x�|�X����,M���u�Fc݅Rr��
���l�*Ų��+�v�t1�-��<K�=�ss�G�:P��	��0��X�>��R,�l]�?2��.�y�&�710g�[��>b{�4��3���URr�5<[RF��di��DS���9�4Y?I�qUS�z�X.�,M���C�h�0��4�5U�!	6�*��,����k��9�3�uwH	��dp5�s�pD�p-��v=�I�F?.�.�2|�=T�ݦ���p�Ȝ�_gH�
�@~N�5��°D�pM'௱�<�`���1L1�=&�y�&;��4=���V�ei�/=��-OD�(�����`��
@�s���Z�γ4�~A�:UM�ᣎ7eo��pn��3�P�Z1��XRF��%���c����7 6*4�|6�y��N��^�&���誦^�r�2%S$��������|fɵ�g�����Xw��\�C�s>?�X�=�K�_��I�w
!\�}��^i�1=Y��>>�� ,��ߤdi�/~�?�K�
��yEB���.�������n�J����dT�7�qƺ��:����_�U���D�4�����ETT/�H�Y]�����a�"��np�T�]�u�s��Nl�+�ؚT������eAٛ�_G�]`������.��*��Aӄ{p���fL�il-ڐ����Â����4O3�=(({M���s�'�7�{A���#'di2X=¢8O��ش�����м��|OP�I�7s>��Xg��\����7��:��n��4]�3"�{1�B���=\O�Np��.����W�3s�R)�A���9MwS{���k%s�>�=��)���F��CcݝR��:�70p���b�e�Y�����#t��׹�m�k��F�poN����v~�%�y؝5U�ԋ7@��0Y�l�O)V]:����k��t�K�M���W������x�%��1��S�uwI	
��?��4O5�=�H�A��cg�a�������Q=��Q��.>��`��d*phN�\`���i��9�_a�k6��L�9T���;"�{5�݃��#�uOHu���x�'9M����:�4ً��%��l�A�C��R�(�J���e���R�w==����haf�n��<K�M�_p�>�K����X���I�W�˛�^�a"��*�?�#ܻY�2ڜ���?8�3�:��d-�f�S9͇��Rb�:�s�W�'_(R^8��!ΡY���I��Ke #z�uckт��7ɍ&���|>�X7GP.���yY�f���)o>��0!���T�Ϻ=L0��|��Ŷ�firpLN��ɟ9/R�4���<�w֝�?�J�n
�!½�o�լ�C��|�X�@��,M��W�<u,�iP�?1t����1"�s;��l��ER�P��f���?��u�Ku���F��w���I�7eo��sXs�����fRz�s��?�JvΓ�d_̖��n�X��T�γ4�Ϻ����X����u6���M�O������$S�Z�;�B^��9�㗼J���!��/5��%�(����q���M(�pΗ�4]�IRr��s�.%����ͳ�r�}���0�4�W���j����Hٓ�F^��+�4�5�d}`n.��u�^�nc��Dc��:��$�����|�!63��I��ml�C�!�{�0l����7&�:}=tw��zV�)B�ܹ�Ȫ���~�=����u���m�`�5�d�e�Er>��V��нaП�)�$w�]���[��ƺ����D�7[����;��=�#?��iY��mT*Jn0	�,t#�=L��
��֫z}zadir,�����uJ�
�	|����B~�����Ɯ���0JJ�;���b�.Z�7z�w�-�!ƺ��:�r��i?L��dO��,��BߒL�_�JF�'?&%4<�H���,�Fp���v�γ4�4>�nu�~����,M>��&,�ςµ��y��ҕ)�v�S�� ]����q���a`��>|�^�,5!��@,�f�[:��f`r�ðJ����H��F~�w7�p��Z{|eܝs>?�Xw��А��j��R2*�<p�pr�;�3r���+)�+���J7�j�D��~b��"n^��_��0�	���e���
�����d
�0�!<#�ro�b%�Z���u�Iu*�^���>�{՚��x��A8;�!\���װ����ɽ
�GI��B��,���0��&�B���W�=��ߛ����O8�X�ك�5.b�A.��M�_�Jv�����Œ2Z�ŝ��ӥ:�cn�W­f��N�^]�&��7��h|2��R��:��]�L�?C���0�y{�C���;/��Xw��\�C��e��`ß��򢜦K��KJ�`{:��ƺ%+C�g��R<ˁ��u�*��M����e�Eʞ&)�N:Ir<��V�>w�'���gh?�ӥ��bX=v\M
�3�͓�<T��&��%�&��%K�]����	~t!\��׸��7
�U�'�$�j�I���:�	��7T5}�r��U��d���k��k�:���֕��		���2J�YX��&�Jf!p�T�a�˵�J��L3�=(({M����;��4��x���M�q^�°L�#�,[Y��7`�#o��T�2*��n���X'Z�8����"����Z_��tM�I�}�H�rh<����w^�>�[ƺLJ@�h�W�Q�\)�@z|���I�V�"I�׾�
�߫���*H摐�o���ާ��)�n��S��P�.�Y�p2�,M�w�	1;�.B����b�Z�
w�K�_.�|��]�6�B0YE�`{˨�L&�XP����D�����b�g�uϑ�����;��#�l����'���,��m5���~�~���Q	�s�_��/�vV�I���'i��9��)�"��.~�OlB&T�ͫj;8GJn�4@,^��
�@X�L�=����p�����M�?���*[�t�i���#�uOHu*����{
_�[,��Ҥ���erz8'½8�KU�(�ڄ�RlE�~8B�z��߰�����`f�n��<T����n�Gb	$�4�_p"6G`p}�&ye�
!ܓ��{TI��j�}0KRF�<l8��@��4½���C�ڛ�k��d�K!����PVl�,"��s!ܛI9M���$3��f���ƫ��%*�/�g�%7f���T[�Lc�t�+�q�2b2����̜�ðNJ�r���dD?o��C`_c����P�6o��ȟi.R�4��N�p�����g����]�����l�V[�~6>����\V�&�e��ȔP�]�P�v>߹?l��K�'�+����X�)�cs4~�`u��y���7){
���c󬱮�<L^*�ߔ�L=�6���c�j���O�7��9t��?�[¹���>�{X���m)R�e�lI
2����oKP��Ju*�^��H[Mj�{XP��U�b[h[�M�!�drχ�ߧ1-�$��v[�����u�0�#����=��eƺ����UXF+3
��𲜦�ðOJ�2�|��R2���m�c�[��fu�r���RB�ټJA�c��ٓ�WS��Y�䭶,�c��{6�:�^�ܟ�U~�$ @�&Ӂ��jnE6-���d�����*(����"b�tیe�u��	�4>�@�\˝�/�K��[�8�X7`��``,��AQ�|c]u������d���'��?]Q�!eE)�Amy( ��FQ�R�q��A���YΜ*��^,*k�pE%u�(�͐6<��XQ�.����
�C0�0ֽ�Q�F������Ǭ����)�(J�k��8�;i�$����E��ɰ�X����(J�\lwHj��W�i�RH��M�Qc5��@��t{3)�Rs��K����(JmԜ��f`�{������$��D=�O�E�V��z� ��;���C��њ���zΨ�(JÜl�f���;~���)�"�4���n`��8���)�"��6뢑���C����34�g�!
!���wE)��-��h>���&��(J�,��bC4���9���+�R'5������,M��h�EQ�cݞ�t��`%�h��G��M����N�vƺ�h� E)�+��5E���҂�Reh�?(��B���5��*�R<��k��"�|*�?EQ�V�n�-@%Y����.��(J�,�7�=^T�EF��)�OEQVqN��;������U�n�)�mJ��X���EXQ���N��B��0��Ε�[Q���M���xD�E���w�y���,M���(�˻�Y�]��A�c%e(J3]�A8XI�&s�	��s�k��(-D4�`�tI���yo3���uo�#�wː�(m̻��`3�`�{8�,y�Ҧl�Jsƺ���b�2����F� 0�'�\Eie��F�����,M6�.]�����]�uo�-8F@8ѽ�%1�+J��;��C$`�{�7�X:(Jd��-�B�9c���Ѭ�J��|;�@4�:c����z(J����Dwƺˀ�c�(%qrx���X�c`fl=E���Yo	���,M������p����JT�2@�.����̥�g��h9`���O
^[E)��~�nӂC�J�49��#�@f�N���`�\PI�p�v@iWNne��V����Z�a)J��ī��h���D�:`�غ(���_�}�O-����d7��b�(9,��폺����di�p��Xi-�w��U�˶S��+�TDi���o+�6t�*��W��bJ|f_����Y�nPM�&��>[��x����~E� K�m���V�uQ����K��+E[�	7bG�PI�;v��C�D�dir$�� �R,���.��H�t�yj�IDAT��UU��[�#x��t��t���p����t��Sʢ���D��*��dw�
`�غ(m�S�w�u�b+"IGF���E�,`ydu��g9�Y�b�?tAPI�&〫��b뢴$G���HYt|PI���i����(��R�31����,�$K�O�C��t�#TV�\	�j�{-�21�Z��,M�.����R.�ӌuc+��w+		G~�n3�t'�K�i�T��ɚ�Z��c#���3�!�u�:}P�Cp��	I?Y�9^��T��:�!��dm�p|AY�>2�<`�����ʴ*�j K�`"0�Qi]��t�1�i�aPP'!1�t`0"�:���MwV;%�l�4H�&[G��GV�[y���X�\le�uM������{k�ը�Y��
}%p��nEd}�u���f���~�.���4�7�^��L��@�,M���q�i[���ƺőu�H��@�&c�o{�k�ըe��������t<�J&K���=���–q5�γx��-p����t�"�&�|)����;�xx�x@g���������F;ۅ	��z,���7ֽU+��ڀ,M����–���od4�<K���߳xcx�X�~<��ZP��di2���`S`4�q�;_J}4>��0|m]`���>���~�����߫����7�-)�������%�D���IEND�B`�admin/images/metaslider_logo.png000064400000007350151213254700012765 0ustar00�PNG


IHDR��,�?��PLTEGpL�l$�g#�i#�{�h"�h"�^�g#�h#�j#�e�e!�i#�i#�i#�f!�i#�i$�h#�i#�h#�g"�h#�e!�h#�h#�i#�i#�h"�h#�h#�h#�h#�h"�e"�h#�e�i#�h#�i#�i#�f#�h#�g"�i#�l$�l$�i#�j#�j$�k$�m%�h#�p%�h#n��.tRNS�*������
&�����kG/ ����W�_@{qQ˃��5�:��~||
�IDATx^�ʁ ��E��"j���,|4C��38���{�T���},��=WmAg~qٻ��y$�	n���W�p�.;z�7�u�3Z$fY�ߢ������nu�>�����k<z�l� 猩?��BB{;y��b������a9��w*�_D�w�.���`��Y��eVk�4�
3W����i*���S�_Xȃ��ہL�d90��d�$M�`;��a����w[�+
�k�� ������U�W�FJB�N�!*�6��G��v�>�R	����i밾�����u���>�S�޿���	#���@y���֡�dh�iOrTg�7m�/ ���Qi�4o|����r}3H��q���+ �EL��D���Y����%l~[��ģ�����F1	�r�6Q�	���S��x%`{�%�G���s�=�4�0 ݗF�.,I��q%$䶓�:��K]��[B�t�EM� �-~�5��.��oפ�Q�3���E2�c���v��@��9�~T������9K�`�yit��$����	.l�U�JT��mw!����AL��.d�[Y��.'g�BU��Jg�����U��Q:�H�I��U����B�ET�<����b �+���N$87��UZ�%��e�BVp��YCfH�K��*!���9�]H�.i'��'�s�%uU�'�v!�'	f���L�3�. #�PUH��	����Y��-@j��uJ;����!Y蒲B����Bҝ%�*'�κ��B���X��{�����9-	��xR�O:L����<���.�'S����=��.$�^�o
��F�"��B'�������;6��SY[}�2��+	|G���yZ+�j	8��,���M��o�}		y`�[�	^|������.7$ �<�ӊ�yL�YR����\����'��4�3�~x,�. �����~�q�w��oe���:�	���L�o��F$��z��Q���J�
s�/d���7��Ft�#�M1I�J��/ZIv4Bc�9�)�EL�?��p�t���Ǐ?~�V�n'���t;�L?x�e8����H�-EH�7G���C�]7�>�}pL�dţ\�����
�$(2Q�3�z8r���{��E�<����,�!�n)�LH�D}����|c��y���T�:�ȵ�x<3�t
�[�8=R���P{�����Cd�8D�ͅ�0�)�W<���o�Y
Y�`�2���A�AXi�*������I�8���VtrqF'���uM�&���:$��L�\ɥ5�t��$����d������Lf
.��JbxmR��9�.��m�ۚ�F�!!1�
�.�cGpwÂ�5	�XOYke���|��ZɎ�e��d
��#�q����$�J%߂�r�<��ŽcN��d�>�.�fe*�mO�}�����G�)��,�ޘ0Ro
es���3t7YxwL���
�Hcl~�d�'�J�<�(n�œBU3�?���&y�1ܛT�����l�n�"�m[`��dj�	��y��ҞT��,Hx��HPAѾuw
�L��d�b:��&dm<��J��"Tp�n!z�
�ܝ�m3�<(,�m[R]�x���±�r���i[�+C�e��i5�rr��!Y�OP9`S
Ω�3a0nE�}��dDŽ@�YTb�n��D�N�
3{/L��N�L�'�lN���e�O��uX��#l9���k�Д�q�3��l�H��8�2��Վ��f*�3]C篩Iٱ��sYˆN�ڎ��oLB�W`-�l��o�+5k$�Fn�M����Ҙ�a�D�J�#d�t�NےEk#�;sSY�	�	[�.��=`r�1+���c:}��}ox��u't'pNnQO��y;�D|e(ﶒ��2u���8G��� ,�2���t�!��Z�ϕ��ۥ�!�#���$��s�""�/�=`/ĨTFn�rKT���i`�$�k����<e���O�
\(��uOL:����?�Hk.�ء�wg�2��0�y�0�!k6���dش��H;��0�I� O&��d�r��c���yLBC)�#�{�_�,^!^Re�
:-+T��qn*���(�ҹ�+E�6� ���a�;�|�0�՟��(�'���
wve�إ��B�mUԝD�_�u�o�:��d5��1_�lv4<�K}��h*N�m	ߙ�M=hG^�v9@ӟm�]
���$�Xw��� B&w6��N�
�:e�?v��֖R2t%���=��%F����57��P�Y��Б��'e!9<Z>�r�����tx����A{�:���t�^8�G��+lf)��V�M#�ք.�4�)��N�_�T�#�`a��o�
QZ�b��Ԥ2G��a!�}	�p&��id|ې�_�����`/����<�剩�4\*�¥@��c&�YCw� �q��Z��������baRk��<�:$�9,�,��l�[����ݡeM����.��˞]c�߷U����k9&`]���-*���j�7�`D�11
y��
�7z�O�o	��xO#tm�qo�B�W?��i^�+9�:H�۬�c{�{c�_7&���x���4� �Y��/
ލmvK��+�-y,��h)����^�͋���H�'O�.-��ͤ�`d3T��Đ���C ;�nά�4�ͤ�m�(�͛���S�c*W-% +���y)��3��.m��
��/CZY{h(��5Q6�������;_7�
̔%"M-I�2T(?uZ�ֈ��|��rS)�%��~�&�n�V:��S�i���R]�^�nT*_�7*��j����s���'��ݷub���m��r��
��[��l��_Iћ�=�/����<����'|����#C�{����^���)[���K6wr=��P��qt�?H��G@*�# ��w�ܱ���y��)��zԱ*��*R}=^�z0�>ҿl��#���1\�Ѩ�(�_]��puM��e�U�������E_>W�a5�h�^�W�k�Z�녖���T9\Ez�D����G��E}������v�$,��r�zY���{'��Yrx,a�R̦�J���d@�g�XG����]ר��N�$����M�<Ҝ�$�s9'rٛ6�m��{�$e�����s�дo���������
��H;���f}h���#
d�:�oB�IU��ղ�R���3D@E��r�H4�
�	��� $Wߏ/�K��}��'�!�;�n2��~�4���t�%v��w���ˬ�i*U��`�\J��h�f/O]�����>�����r����T0uZ}���a܌?��ڣsa��6AP��k!i�����܊x!���i��^��m���R���$zBLBZ��e�˦����pՇ��0�n9���Ӡvs���2���$��+�IEND�B`�admin/assets/js/admin.js000064400000130107151213254700011202 0ustar00window.jQuery(function ($) {

    const APP = window.metaslider.app ? window.metaslider.app.MetaSlider : null

    /**
     * Event listening to media library edits
     */
    var media_library_events = {
        loaded: false,
        /**
         * Attaches listenTo event to the library collection
         *
         * @param modal object wp.media modal
         */
        attach_event: function (modal) {
            var library = modal.state().get('library')
            modal.listenTo(library, 'change', function (model) {
                media_library_events.update_slide_metadata({
                    id: model.get('id'),
                    caption: model.get('caption'),
                    description: model.get('description'),
                    title: model.get('title'),
                    alt: model.get('alt')
                })
            })
        },

        /**
         * Updates slide caption and other metadata when a media is edited in a modal
         *
         * @param object metadata
         */
        update_slide_metadata: function (metadata) {
            var $slides = $('.slide').filter(function (i) {
                return $(this).data('attachment-id') === metadata.id
            })

            var slideIds = $slides.map(function () {
                return this.id.replace('slide-', '')
            })

            // To be picked up by vue components
            $(document).trigger('metaslider/image-meta-updated', [slideIds.toArray(), metadata])

            metadata.title ? $('.title .default', $slides).html(metadata.title) : $('.title .default', $slides).html('&nbsp;')
            metadata.alt ? $('.alt .default', $slides).html(metadata.alt) : $('.alt .default', $slides).html('&nbsp;')
        }
    }

    /**
     * UI for adding a slide. Managed through the WP media upload UI
     * Event managed here.
     */
    var create_slides = window.create_slides = wp.media.frames.file_frame = wp.media({
        multiple: 'add',
        frame: 'post',
        library: {type: 'image'},
    });

    // Remove unwanted image views
    var whiteList = ['insert', 'iframe'];
    var unwanted_media_menu_items = create_slides.states.models.filter(function (view) {
        var title = view.id;

        // Filter through the list and determine which elements to remove
        return !whiteList.filter(function (term) {
            return title.includes(term)
        }).length;
    })
    create_slides.states.remove(unwanted_media_menu_items);

    create_slides.on('insert', function () {

        var slide_ids = [];
        create_slides.state().get('selection').map(function (media) {
            slide_ids.push(media.toJSON().id);
        });

        if (APP) {
            const message = slide_ids.length == 1 ? APP.__('Preparing 1 slide...', 'ml-slider') : APP.__('Preparing %s slides...')
            APP.notifyInfo(
                'metaslider/creating-slides',
                APP.sprintf(message, slide_ids.length),
                true
            )
        }

        // Remove the events for image APIs
        remove_image_apis();

        if(window.location.href.indexOf('metaslider-start') > -1) {
            var slideshow_id = "";
        } else {
            var slideshow_id = window.parent.metaslider_slider_id;
        }

        var data = {
            action: 'create_image_slide',
            slider_id: slideshow_id,
            selection: slide_ids,
            _wpnonce: metaslider.create_slide_nonce
        };

        // TODO: Create micro feedback to the user.
        // TODO: Adding lots of slides locks up the page due to 'resizeSlides' event
        $.ajax({
            url: metaslider.ajaxurl,
            data: data,
            type: 'POST',
            error: function (xhr, status, error) {
                var err = JSON.parse(xhr.responseText);
                APP && APP.notifyError('metaslider/slide-create-failed', err.data.messages[1]['errors']['create_failed'][0], true)
            },
            success: function (response) {
                if(window.location.href.indexOf('metaslider-start') > -1) {
                    window.location.href = 'admin.php?page=metaslider&id=' + response.data;
                } else {
                    // Mount and render each new slide
                    response.data.forEach(function (slide) {
                        // TODO: Eventually move the creation to the slideshow or slide vue component
                        // TODO: Be careful about the handling of filters (ex. scheduling)
                        var res = window.metaslider.app.Vue.compile(slide['html'])


                        // Mount the slide to the beginning or end of the list
                        const cont_ = (new window.metaslider.app.Vue({
                            render: res.render,
                            staticRenderFns: res.staticRenderFns
                        }).$mount()).$el;

                        if (metaslider.newSlideOrder === 'last') {
                            $('#metaslider-slides-list > tbody').append(cont_);
                        } else {
                            $('#metaslider-slides-list > tbody').prepend(cont_);
                        }
                    })

                    /* Get the last added slide to avoid multiple scrollTo calls 
                     * when adding more than one slide in bulk */
                    var last_item = response.data[response.data.length - 1].slide_id;

                    $([document.documentElement, document.body]).animate({
                        scrollTop: metaslider.newSlideOrder === 'last' ? $("#slide-"+last_item).offset().top : 0
                    }, 2000);

                    // Add timeouts to give some breating room to the notice animations
                    setTimeout(function () {
                        if (APP) {
                            const message = slide_ids.length == 1 ? APP.__('1 slide added successfully', 'ml-slider') : APP.__('%s slides added successfully')
                            APP.notifySuccess(
                                'metaslider/slides-created',
                                APP.sprintf(message, slide_ids.length),
                                true
                            )
                        }
                        setTimeout(function () {
                            APP && APP.triggerEvent('metaslider/save')
                        }, 1000);
                    }, 1000);
                }
            }
        })
    })

    /**
     * Starts to watch the media library for changes
     */
    create_slides.on('attach', function () {
        if (!media_library_events.loaded) {
            media_library_events.attach_event(create_slides)
        }
    })

    create_slides.on('content:activate', function () {
        // Remove filters to don't allow to insert other media type different to images
        $('#media-attachment-filters').remove();
    })

    /**
     * Fire events when the modal is opened
     * Available events: create_slides.on('all', function (e) { console.log(e) })
     */
    // This is also a little "hack-ish" but necessary since we are accessing the UI indirectly
    create_slides.on('open activate uploader:ready', function () {
        // TODO: when converted to vue component make this work for other languages
        $('.media-menu a:contains("Media Library")').remove()
        add_image_apis()

        // Remove unwanted side menu items
        unwanted_media_menu_items.forEach(function (item) {
            $('#menu-item-' + item.id).remove();
        })

        // Remove filters to don't allow to insert other media type different to images
        $('#media-attachment-filters').remove();
    })
    APP && create_slides.on('open', function () {
        APP.notifyInfo('metaslider/add-slide-opening-ui', APP.__('Opening add slide UI...', 'ml-slider'))
    })
    APP && create_slides.on('deactivate close', function () {
        APP.notifyInfo('metaslider/add-slide-closing-ui', APP.__('Closing add slide UI...', 'ml-slider'))
        remove_image_apis()
    })

    /**
     * Handles changing alt and title on SEO tab
     * TODO: refactor to remove this
     */
    $('.metaslider').on('change', '.js-inherit-from-image', function (e) {
        var $this = $(this)
        var $parent = $this.parents('.can-inherit')
        var input = $parent.children('textarea,input[type=text]')
        var default_item = $parent.children('.default')
        if ($this.is(':checked')) {
            $parent.addClass('inherit-from-image')
        } else {
            $parent.removeClass('inherit-from-image')
            input.focus()
            if ('' === input.val()) {
                if (0 === default_item.find('.no-content').length) {
                    input.val(default_item.html())
                }
            }
        }
    })

    /**
     * For changing slide image. Managed through the WP media upload UI
     * Initialized dynamically due to multiple slides.
     */
    var update_slide_frame;

    /**
     * Handles changing an image when edited by the user.
     */
    $('.metaslider').on('click', '.update-image', function (event) {
        event.preventDefault();
        var $this = $(this);
        var current_id = $this.data('attachment-id');

        /**
         * Opens up a media window showing images
         */
        update_slide_frame = window.update_slide_frame = wp.media.frames.file_frame = wp.media({
            title: MetaSlider_Helpers.capitalize(metaslider.update_image),
            library: {type: 'image'},
            button: {
                text: MetaSlider_Helpers.capitalize($this.attr('data-button-text'))
            }
        });

        /**
         * Selects current image
         */
        update_slide_frame.on('open', function () {
            if (current_id) {
                var selection = update_slide_frame.state().get('selection');
                selection.reset([wp.media.attachment(current_id)]);

                // Add various image APIs
                add_image_apis($this.data('slideType'), $this.data('slideId'))
            }
        });

        /**
         * Starts to watch the media library for changes
         */
        update_slide_frame.on('attach', function () {
            if (!media_library_events.loaded) {
                media_library_events.attach_event(update_slide_frame);
            }
        });

        /**
         * Open media modal
         */
        update_slide_frame.open();

        /**
         * Handles changing an image in DB and UI
         */
        update_slide_frame.on('select', function () {
            var selection = update_slide_frame.state().get('selection');
            selection.map(function (attachment) {
                attachment = attachment.toJSON();
                new_image_id = attachment.id;
                selected_item = attachment;
            });

            APP && APP.notifyInfo('metaslider/updating-slide', APP.__('Updating slide...', 'ml-slider'), true)

            // Remove the events for image APIs
            remove_image_apis()

            /**
             * Updates the meta information on the slide
             */
            var data = {
                action: 'update_slide_image',
                _wpnonce: metaslider.update_slide_image_nonce,
                slide_id: $this.data('slideId'),
                slider_id: window.parent.metaslider_slider_id,
                image_id: new_image_id
            };

            $.ajax({
                url: metaslider.ajaxurl,
                data: data,
                type: 'POST',
                error: function (error) {
                    var err = JSON.parse(error.responseText);
                    APP && APP.notifyError('metaslider/slide-update-failed', err.data.message, true)
                },
                success: function (response) {
                    /**
                     * Updates the image on success
                     */
                    var new_image = $('#slide-' + $this.data('slideId') + ' .thumb').find('img');
                    new_image.attr( 
                        'srcset',
                        `${response.data.thumbnail_url_large} 1024w, ${response.data.thumbnail_url_medium} 768w, ${response.data.thumbnail_url_small} 240w`
                    );
                    new_image.attr('src', response.data.thumbnail_url_small);
                    
                    // set new attachment ID
                    var $edited_slide_elms = $('#slide-' + $this.data('slideId') + ', #slide-' + $this.data('slideId') + ' .update-image');
                    $edited_slide_elms.data('attachment-id', selected_item.id);

                    if (response.data.thumbnail_url_small) {
                        $('#slide-' + $this.data('slideId')).trigger('metaslider/attachment/updated', response.data);
                    }

                    // Update metadata to new image
                    media_library_events.update_slide_metadata({
                        id: selected_item.id,
                        caption: selected_item.caption,
                        description: selected_item.description,
                        title: selected_item.title,
                        alt: selected_item.alt
                    })

                    APP && APP.notifySuccess('metaslider/slide-updated', APP.__('Slide updated successfully', 'ml-slider'), true)

                    // TODO: run a function in SlideViewer.vue to replace this
                    $(".metaslider table#metaslider-slides-list").trigger('resizeSlides');
                }
            });
        });

        update_slide_frame.on('close', function () {
            remove_image_apis()
        })
        create_slides.on('close', function () {
            remove_image_apis()
        })

        /**
         * Add back "Update Slide Image" button text and button-primary class
         * after saving image changes or going back from image-edit
         * https://github.com/MetaSlider/metaslider/issues/448
         */
        update_slide_frame.on('all', function () { 
            // Only in library screen
            if(update_slide_frame.state().id === 'library') {
                // Hide left menu (Actions)
                update_slide_frame.$el.addClass('hide-menu');
                // Add back text and class to the button
                update_slide_frame.$el.find('.media-button-select')
                    .text(update_slide_frame.options.button.text)
                    .addClass('button-primary');
            }
        });
    });

    /**
     * Handles duplicating slides
     */
    $('.metaslider').on('click', '.duplicate-slide-image', function (event) {
        event.preventDefault();
        var $this = $(this);
        var data = {
            action: 'duplicate_slide',
            _wpnonce: metaslider.duplicate_slide_nonce,
            slide_id: $this.data('slide-id'),
            slider_id: window.parent.metaslider_slider_id
        };

        $.ajax({
            url: metaslider.ajaxurl,
            data: data,
            type: 'POST',
            error: function (error) {
                APP && APP.notifyError('metaslider/slide-duplicate-failed', error, true)
            },
            success: function (response) {

                var res = window.metaslider.app.Vue.compile(response.data.html)

                // Mount the slide to the beginning or end of the list
                const cont_ = (new window.metaslider.app.Vue({
                    render: res.render,
                    staticRenderFns: res.staticRenderFns
                }).$mount()).$el;

                if (metaslider.newSlideOrder === 'last') {
                    $('#metaslider-slides-list > tbody').append(cont_);
                } else {
                    $('#metaslider-slides-list > tbody').prepend(cont_);
                }

                //Icon for mobile settings
                show_mobile_icon('slide-' + response.data.slide_id);

                //scroll to new slide
                $([document.documentElement, document.body]).animate({
                    scrollTop: metaslider.newSlideOrder === 'last' ? $("#slide-"+response.data.slide_id).offset().top : 0
                }, 2000);

                // Add timeouts to give some breating room to the notice animations
                setTimeout(function () {
                    setTimeout(function () {
                        APP && APP.triggerEvent('metaslider/save')
                    }, 1000);
                }, 1000);
            }
        });
        
    });

    /**
     * When Carousel mode or Loop continuously changes
     * 
     * @since 3.90
     */
    $('.metaslider').on('change', '.ms-settings-table input[name="settings[autoPlay]"], .ms-settings-table input[name="settings[carouselMode]"], .ms-settings-table input[name="settings[infiniteLoop]"]', function () {
        showHideAutoPlay();
    });

    /**
     * Show/hide Auto play and Play / pause if Carousel mode and Loop continuously are both enabled
     * 
     * @since 3.90
     */
    var showHideAutoPlay = function () {
        var carouselMode = $('.ms-settings-table input[name="settings[carouselMode]"]');
        var infiniteLoop = $('.ms-settings-table input[name="settings[infiniteLoop]"]');
        var autoPlay = $('.ms-settings-table input[name="settings[autoPlay]"]');
        var pausePlay = $('.ms-settings-table input[name="settings[pausePlay]"]');

        if (carouselMode.is(':checked') && infiniteLoop.is(':checked')) {
            // Hide "Auto play" and "Play / pause" if "Carousel mode" AND "Loop carousel continuously" are enabled
            autoPlay.parents('tr').hide();
            pausePlay.parents('tr').hide();
        } else {
            // Show "Auto play" if "Carousel mode" OR "Loop carousel continuously" are disabled
            autoPlay.parents('tr').show();

            if (autoPlay.is(':checked')) {
                // Show "Play / pause" if "Auto play" is enabled
                pausePlay.parents('tr').show();
            } else {
                pausePlay.parents('tr').hide();
            }
        }
    }
    showHideAutoPlay();

    /**
     * When Auto play or Loop changes
     * 
     * @since 3.90
     */
    $('.metaslider').on('change', '.ms-settings-table input[name="settings[autoPlay]"], .ms-settings-table select[name="settings[loop]"]', function () {
        adjustLoop();
    });

    /**
     * Add/remove 'Stop on first slide' option for Loop setting
     * 
     * @since 3.90
     */
    var adjustLoop = function () {
        var autoPlay = $('.ms-settings-table input[name="settings[autoPlay]"]');
        var loop = $('.ms-settings-table select[name="settings[loop]"]');

        if (autoPlay.is(':checked')) {
            // Add 'Stop on first slide' option if doesn't exists
            if (loop.find('option[value="stopOnFirst"]').length === 0) {
                loop.append(`<option value="stopOnFirst">${APP.__('Stop on first slide', 'ml-slider')}</option>`);
            }
        } else {
            // Remove 'Stop on first slide' option
            loop.find('option[value="stopOnFirst"]').remove();
        }
    }
    adjustLoop();

    /**
     * Add all the image APIs. Add events everytime the modal is open
     * TODO: refactor out hard-coded unsplash (can wait until we add a second service)
     * TODO: right now this replaces the content pane. It might take some time but look for more native integration
     * TODO: It gets a little bit buggy when someone triggers a download and clicks around. Maybe not important.
     */
    var unsplash_api_events = function (event) {
        event.preventDefault()

        // Some things shouldn't happen when we're about to reload
        if (window.metaslider.about_to_reload) {
            return
        }

        // Set this tab as active
        $(this).addClass('active').siblings().removeClass('active')

        // If the image api container exists we don't want to create it again
        if ($('#image-api-container').length) {
            return
        }

        // Move the content and trigger vue to fetch the data
        // Add a container to house the content
        $(this).parents('.media-frame-router').siblings('.media-frame-content').append('<div id="image-api-container"></div>')

        // Add content to the container
        $('#image-api-container').append('<metaslider-external source="unsplash" :slideshow-id="' + window.parent.metaslider_slider_id + '" :slide-id="' + window.metaslider.slide_id + '" slide-type="' + (window.metaslider.slide_type || 'image') + '"></metaslider-external>')

        // Tell our app to render a new component
        $(window).trigger('metaslider/initialize_external_api', {
            'selector': '#image-api-container'
        })

        // Discard these
        delete window.metaslider.slide_id
        delete window.metaslider.slide_type
    }

    var add_image_apis = window.metaslider.add_image_apis = function (slide_type, slide_id) {

        // This is the pro layer screen (not currently used)
        if ($('.media-menu-item.active:contains("Layer")').length) {
            // If this is the layer slide screen and pro isnt installed, exit
            if (!window.metaslider.pro_supports_imports) {
                return
            }
        }
        window.metaslider.slide_type = 'layer'

        // If slide type is set then override the above because we're just updating an image
        if (slide_type) {
            window.metaslider.slide_type = slide_type
        }

        window.metaslider.slide_id = slide_id

        // Unsplash - First remove potentially leftover tabs in case the WP close event doesn't fire
        $('.unsplash-tab').remove()
        $('.media-frame-router .media-router').append('<a href="#" id="unsplash-tab" class="text-black hover:text-blue-dark unsplash-tab media-menu-item">Unsplash Library</a>')
        $('.toplevel_page_metaslider').on('click', '.unsplash-tab', unsplash_api_events)

        // Each API will fake the container, so if we click on a native WP container, we should delete the API container
        $('.media-frame-router .media-router .media-menu-item').on('click', function () {

            // Destroy the component (does clean up)
            $(window).trigger('metaslider/destroy_external_api')

            // Additionally set the active tab
            $(this).addClass('active').siblings().removeClass('active')
        })
    }

    /**
     * Remove tab and events for api type images. Add this when a modal closes to avoid duplicate events
     */
    var remove_image_apis = window.metaslider.remove_image_apis = function () {

        // Some things shouldn't happen when we're about to reload
        if (window.metaslider.about_to_reload) {
            return
        }

        // Tell tell components they are about to be removed
        $(window).trigger('metaslider/destroy_external_api')

        $('.toplevel_page_metaslider').off('click', '.unsplash-tab', unsplash_api_events)
        $('.unsplash-tab').remove()

        // Since we will destroy the container each time we should add the active class to whatever is first
        $('.media-frame-router .media-router > a').first().trigger('click')
    }

    /**
     * delete a slide using ajax (avoid losing changes)
     */
    $(".metaslider").on('click', '.delete-slide', function (event) {
        event.preventDefault();
        var $this = $(this);
        var data = {
            action: 'delete_slide',
            _wpnonce: metaslider.delete_slide_nonce,
            slide_id: $this.data('slideId'),
            slider_id: window.parent.metaslider_slider_id
        };

        // Set the slider state to deleting
        $this.parents('#slide-' + $this.data('slideId'))
            .removeClass('ms-restored')
            .addClass('ms-deleting')
            .append('<div class="ms-delete-overlay"><i style="height:24px;width:24px"><svg class="ms-spin" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-loader"><line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/></svg></i></div>');
        $this.parents('#slide-' + $this.data('slideId'))
            .find('.ms-delete-status')
            .remove();

        $.ajax({
            url: metaslider.ajaxurl,
            data: data,
            type: 'POST',
            error: function (response) {

                // Delete failed. Remove delete state UI
                alert(response.responseJSON.data.message);
                $slide = $this.parents('#slide-' + $this.data('slideId'));
                $slide.removeClass('ms-deleting');
                $slide.find('.ms-delete-overlay').remove();
            },
            success: function (response) {
                var count = 10;

                // Remove deleting state and add a deleted state with restore option
                setTimeout(function () {
                    $slide = $this.parents('#slide-' + $this.data('slideId'));
                    $slide.addClass('ms-deleted')
                        .removeClass('ms-deleting')
                        .find('.metaslider-ui-controls').append(
                        '<button class="undo-delete-slide" title="' + metaslider.restore_language + '" data-slide-id="' + $this.data('slideId') + '">' + metaslider.restore_language + '</button>'
                    );

                    // Grab the image from the slide
                    var img = $slide.find('.thumb').css('background-image')
                        .replace(/^url\(["']?/, '')
                        .replace(/["']?\)$/, '');

                    // If the image is the same as the URL then it's empty (external slide type)
                    img = (window.location.href === img) ? '' : img;

                    // @codingStandardsIgnoreStart
                    // Will be refactored in the the next branch
                    // Send a notice to the user
                    // var notice = new MS_Notification(metaslider.deleted_language, metaslider.click_to_undo_language, img);

                    // Fire the notice and set callback to undo
                    // notice.fire(10000, function() {
                    //     jQuery('#slide-' + $this.data('slideId'))
                    //         .addClass('hide-status')
                    //         .find('.undo-delete-slide').trigger('click');
                    // });
                    // @codingStandardsIgnoreEnd

                    // If the trash link isn't there, add it in (without counter)
                    if ('none' == $('.trashed-slides-cont').css('display')) {
                        $('.trashed-slides-cont').css('display', '');
                    }
                }, 1000);
            }
        });
    });

    /**
     * undelete a slide using ajax (avoid losing changes)
     */
    $(".metaslider").on('click', '.undo-delete-slide, .trash-view-restore', function (event) {
        event.preventDefault();
        var $this = $(this);
        var data = {
            action: 'undelete_slide',
            _wpnonce: metaslider.undelete_slide_nonce,
            slide_id: $this.data('slideId'),
            slider_id: window.parent.metaslider_slider_id
        };

        // Remove undo button
        $('#slide-' + $this.data('slideId')).find('.undo-delete-slide').html('');

        // Set the slider state to deleting
        $this.parents('#slide-' + $this.data('slideId'))
            .removeClass('ms-deleted')
            .addClass('ms-deleting')
            .css('padding-top', '31px')
            .append('<div class="ms-delete-overlay"><i style="height:24px;width:24px"><svg class="ms-spin" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-loader"><line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/></svg></i></div>');
        $this.parents('#slide-' + $this.data('slideId'))
            .find('.ms-delete-status')
            .remove();
        $this.parents('#slide-' + $this.data('slideId'))
            .find('.delete-slide')
            .focus();

        $.ajax({
            url: metaslider.ajaxurl,
            data: data,
            type: 'POST',
            error: function (response) {

                // Undelete failed. Remove delete state UI
                $slide = $this.parents('#slide-' + $this.data('slideId'));
                $slide.removeClass('ms-restoring').addClass('ms-deleted');
                $slide.find('.ms-delete-overlay').remove();

                // If there was a WP error, this should be populated:
                if (response.responseJSON) {
                    alert(response.responseJSON.data.message);
                } else {
                    alert('There was an error with the server and the action could not be completed.');
                }
            },
            success: function (response) {

                // Restore to original state
                $slide = $this.parents('#slide-' + $this.data('slideId'));
                $slide.addClass('ms-restored')
                $slide.removeClass('ms-deleting')
                    .find('.undo-delete-slide, .trash-view-restore').remove();
                $slide.find('.ms-delete-overlay').remove();
                $('#slide-' + $this.data('slideId') + ' h4').after('<span class="ms-delete-status is-success">' + metaslider.restored_language + '</span>');

                // We can try to remove the buton actions too (trashed view)
                $('#slide-' + $this.data('slideId')).find('.row-actions.trash-btns').html('');

                // Grab the image from the slide
                var img = $slide.find('.thumb').css('background-image')
                    .replace(/^url\(["']?/, '')
                    .replace(/["']?\)$/, '');

                // If the image is the same as the URL then it's empty (external slide type)
                img = (window.location.href === img) ? '' : img;

                // @codingStandardsIgnoreStart
                // Will be refactored in the the next branch
                // Send a success notification
                // TODO: fire notification
                // var notice = new MS_Notification(metaslider.restored_language, '', img, 'is-success');

                // Fire the notice
                // notice.fire(5000);
                // @codingStandardsIgnoreEnd
            }
        });
    });

    /**
     * delete a slide permanently using ajax (avoid losing changes)
     */
    $(".metaslider").on('click', '.trash-view-permanent', function (event) {
        event.preventDefault();
        var $this = $(this);
        var data = {
            action: 'permanent_delete_slide',
            _wpnonce: metaslider.permanent_delete_slide_nonce,
            slide_id: $this.data('slideId')
        };

        // Set the slider state to deleting
        $this.parents('#slide-' + $this.data('slideId'))
            .removeClass('ms-restored')
            .addClass('ms-deleting')
            .append('<div class="ms-delete-overlay"><i style="height:24px;width:24px"><svg class="ms-spin" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-loader"><line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/></svg></i></div>');
        $this.parents('#slide-' + $this.data('slideId'))
            .find('.ms-delete-status')
            .remove();

        $.ajax({
            url: metaslider.ajaxurl,
            data: data,
            type: 'POST',
            error: function (response) {
                // Delete failed. Remove delete state UI
                alert(response.responseJSON.data.message);
                $slide = $this.parents('#slide-' + $this.data('slideId'));
                $slide.removeClass('ms-deleting');
                $slide.find('.ms-delete-overlay').remove();
            },
            success: function (response) {
                var count = 10;

                // Remove deleting state and add a deleted state with restore option
                setTimeout(function () {
                    $slide = $this.parents('#slide-' + $this.data('slideId'));
                    $slide.addClass('ms-deleted')
                        .removeClass('ms-deleting')
                        .find('.metaslider-ui-controls').append(
                        '<button class="undo-delete-slide" title="' + metaslider.restore_language + '" data-slide-id="' + $this.data('slideId') + '">' + metaslider.restore_language + '</button>'
                    );

                    // Grab the image from the slide
                    var img = $slide.find('.thumb').css('background-image')
                        .replace(/^url\(["']?/, '')
                        .replace(/["']?\)$/, '');

                    // If the image is the same as the URL then it's empty (external slide type)
                    img = (window.location.href === img) ? '' : img;

                    // If the trash link isn't there, add it in (without counter)
                    if ('none' == $('.restore-slide-link').css('display')) {
                        $('.restore-slide-link').css('display', 'inline');
                    }
                }, 1000);
            }
        });
    });


    // bind an event to the slides table to update the menu order of each slide
    // TODO: Remove this soon
    $(".metaslider").on('resizeSlides', 'table#metaslider-slides-list', function (event) {
        var slideshow_width = $("input.width").val();
        var slideshow_height = $("input.height").val();

        $("tr.slide input[name='resize_slide_id']", this).each(function () {
            $this = $(this);

            var thumb_width = $this.attr("data-width");
            var thumb_height = $this.attr("data-height");
            var slide_row = $(this).closest('tr');
            var crop_changed = slide_row.data('crop_changed');

            if (thumb_width != slideshow_width || thumb_height != slideshow_height || crop_changed) {
                $this.attr("data-width", slideshow_width);
                $this.attr("data-height", slideshow_height);

                var data = {
                    action: "resize_image_slide",
                    slider_id: window.parent.metaslider_slider_id,
                    slide_id: $this.attr("data-slide_id"),
                    _wpnonce: metaslider.resize_nonce
                };

                $.ajax({
                    type: "POST",
                    data: data,
                    async: false,
                    cache: false,
                    url: metaslider.ajaxurl,
                    success: function (response) {
                        if (crop_changed) {
                            slide_row.data('crop_changed', false);
                        }
                        if (response.data.thumbnail_url_small) {
                            $this.closest('tr.slide').trigger('metaslider/attachment/updated', response.data);
                        }
                    }
                });
            }
        });
    });

    /**
     * Hide 'Click the "Add Slide" button to create your slideshow' notice
     * 
     * @since 3.80
     */
    var hideNoSlidesNotice = function () {
        $('#add-first-slide-notice').hide();
    }

    // helptext tooltips
    var addTooltips = function () {
        $('.tipsy-tooltip').tipsy({className: 'msTipsy', live: false, delayIn: 500, html: true, gravity: 'e'});
        $('.tipsy-tooltip-top').tipsy({live: false, delayIn: 500, html: true, gravity: 's'});
        $('.tipsy-tooltip-bottom').tipsy({live: false, delayIn: 500, html: true, gravity: 'n'});
        $('.tipsy-tooltip-bottom-toolbar').tipsy({live: false, delayIn: 500, html: true, gravity: 'n', offset: 2});
    }
    addTooltips();

    // Add tooltips when a new slide (<tr>) is added (to <table>)
    const slidesTable = $('#metaslider-slides-list');
    if (slidesTable.length) {
        const observer = new MutationObserver(
            function (mutationsList, observer) {
                for (const mutation of mutationsList) {
                    if (mutation.type === 'childList' && mutation.addedNodes.length > 0) {
                        addTooltips();
                        hideNoSlidesNotice();
                    }
                }
            }
        );
    
        const observerConfig = { childList: true, subtree: true };
        observer.observe(slidesTable[0], observerConfig);
    }

    // welcome screen dropdown
    $('#sampleslider-btn').on('click', function () {
        window.location.href = $('#sampleslider-options').val();
    });

    if (window.location.href.indexOf("withcaption") > -1) {
        $("input[value='override']").attr('checked', true).trigger('click');
    }

    $("#quickstart-browse-button").click(function(){
        window.create_slides.open();
    });

    //dashboard search query on pagination
    if($("#slideshows-list").length) {
        if($("#search_slideshow-search-input").length) {
            var search_string = $("#search_slideshow-search-input").val();
            if(search_string != "") {
                $("#slideshows-list .pagination-links a").each(function() {
                    this.href = this.href + "&s=" + search_string;
                });
            }
        }
    }

    /**
     * Hide smooth height setting when image crop is disabled
     *
    **/
    if ($('select[name="settings[smartCrop]"]').val() == 'disabled') {
        $('input[name="settings[smoothHeight]"]').closest('tr').show();
    } else {
        $('input[name="settings[smoothHeight]"]').closest('tr').hide();
    }
    $('select[name="settings[smartCrop]"]').change(function(){
        if ($(this).val() == 'disabled') {
            $('input[name="settings[smoothHeight]"]').closest('tr').show();
        } else {
            $('input[name="settings[smoothHeight]"]').closest('tr').hide();
            $('input[name="settings[smoothHeight]"]').prop( "checked", false );
        }
    });

    /* Dismiss legacy setting notices */
    $(document).on( 'click', '.ml-legacy-notice .notice-dismiss', function() {
        var data = {
            action: 'legacy_notification',
            notif_status: 'hide',
            _wpnonce: metaslider.legacy_notification_nonce
        };
        $.ajax({
            url: metaslider.ajaxurl,
            data: data,
            type: 'POST',
            error: function (error) {
                console.log('Something went wrong:' +  error);
            },
            success: function (response) {
                console.log(response);
            }
        });
    
    });

    /* Copy to clipboard on Dashboard Page*/
    $('.copy-shortcode').click(function() {
        var textToCopy = $(this).text();
        if (window.isSecureContext) {
            navigator.clipboard.writeText(textToCopy);
        } else {
            var $tempElement = $("<input>");
            $("body").append($tempElement);
            $tempElement.val(textToCopy).select();
            document.execCommand("Copy");
            $tempElement.remove();
        }
        $(this).next('.copy-message').fadeIn().delay(1000).fadeOut();
    });

    /**
     * Fallback after adding a new slide
     * 
     * @since 3.60
     * 
     * @param {object} data The added slide data 
     * 
     * @return void
     */
    var after_adding_slide_success = window.metaslider.after_adding_slide_success = function ( data ) {
        // Mount the slide to the beginning or end of the list
        var table = $(".metaslider table#metaslider-slides-list");

        if (window.metaslider.newSlideOrder === 'last') {
            table.append(data.html);
        } else {
            table.prepend(data.html);
        }

        $('html, body').animate({
            scrollTop: window.metaslider.newSlideOrder === 'last' 
                ? $($('#slide-'+data.slide_id)).offset().top
                : 0
        }, 2000);
        
        var APP = window.metaslider.app.MetaSlider;
        $(".media-modal-close").click();

        // Add timeouts to give some breating room to the notice animations
        setTimeout(function () {
            if (APP) {
                APP.notifySuccess(
                    'metaslider/slides-created',
                    APP.__('1 slide added successfully', 'ml-slider'),
                    true
                )
            }
            setTimeout(function () {
                APP && APP.triggerEvent('metaslider/save')
            }, 1000);
        }, 1000);
    }

    /* Add mobile icon for slides with existing mobile setting */
    var show_mobile_icon = function (slide_id) {
        var mobile_checkboxes = $('#metaslider-slides-list #'+ slide_id +' .mobile-checkbox:checked');
        var icon = '<span class="mobile_setting_enabled float-left tipsy-tooltip-top" title="Mobile options enabled for this slide"><span class="inline-block mr-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-smartphone"><rect x="5" y="2" width="14" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line></svg></span></span>';
        var mobile_enabled = $('#metaslider-slides-list #'+ slide_id +' .slide-details .mobile_setting_enabled');
        if (mobile_checkboxes.length > 0) {
            if(mobile_enabled.length == 0) {
                $('#metaslider-slides-list #'+ slide_id +' .slide-details').append(icon);
            }
        } else {
            mobile_enabled.remove();
        }
    };

    $('#metaslider-slides-list > tbody  > tr').each(function() {
        var tr_id = $(this).attr('id');
        show_mobile_icon(tr_id);
    });

    $('.mobile-checkbox').click(function(){
        var slider_id = $(this).attr('name').replace(/[^0-9]/g,'');
        show_mobile_icon('slide-'+slider_id);
    });

    /* Hide the Mobile Options section when all options are hidden */
    function mobileSectionChecker(){
        if (!$('[name="settings[links]"]').is(':checked') && $('[name="settings[navigation]"]').val() == 'false') {
            $('.highlight.mobileOptions, .empty-row-spacing.mobileOptions').hide();
        } else {
            $('.highlight.mobileOptions, .empty-row-spacing.mobileOptions').show();
        }
    }
    $('[name="settings[navigation]"], [name="settings[links]"]').on('change', function(){
        mobileSectionChecker();
    });
    mobileSectionChecker();

    //thumbnail animation on dashboard page
    $(".slidethumb").each(function() {
        var count = 1; 
        var container = $(this); 
        setInterval(function() {
            count = container.find(":nth-child(" + count + ")").fadeOut().next().length ? count + 1 : 1;
            container.find(":nth-child(" + count + ")").fadeIn();
            console.log(container.find(":nth-child(" + count + ")"));
        }, 2000);
    });

    /**
     * Trigger slideshow save after a quickstart has been created
     * 
     * @since 3.90
     */
    var sampleSlidesWereAdded = function () {
        if (window.location.href.indexOf('metaslider_add_sample_slides_after') !== -1) {
            setTimeout(function () {
                APP && APP.triggerEvent('metaslider/save')
            }, 1000);
        }
    }
    sampleSlidesWereAdded();
});

/**
 * Various helper functions to use throughout
 */
var MetaSlider_Helpers = {

    /**
     * Various helper functions to use throughout
     *
     * @param  string string A string to capitalise
     * @return string Returns capitalised string
     */
    capitalize: function (string) {
        return string.replace(/\b\w/g, function (l) {
            return l.toUpperCase();
        });
    }
};
admin/assets/js/app/tour/main.js000064400000007115151213254700012611 0ustar00import { __, EventManager } from '../utils'
import { Axios as api } from '../api'
import Shepherd from 'tether-shepherd/dist/js/shepherd.js'

const MainTour = new Shepherd.Tour()
MainTour.options.defaults = {
	classes: 'shepherd-theme-arrows metaslider-tour',
	showCancelLink: true
}

MainTour.addStep('add-slide', {
	title: __('Add a slide', 'ml-slider'),
	text: __('Thanks for using MetaSlider. To get started, click the "Add Slide" button to create your first slide.', 'ml-slider'),
	attachTo: { element: '#add-new-slide', on: 'bottom' },
	buttons: []
})

MainTour.addStep('add-image', {
	title: __('Select images', 'ml-slider'),
	text: __('You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.', 'ml-slider'),
	attachTo: { element: '.media-frame-router', on: 'bottom left' },
	tetherOptions: {
		targetAttachment: 'bottom left',
		attachment: 'top center',
		offset: '0 -140px'
	},
	buttons: [
		{
			text: __('Next step', 'ml-slider'),
			action: function () {
				MainTour.show('create-slide')
			}
		}
	]
})

MainTour.addStep('search-unsplash', {
	title: __('Search unsplash', 'ml-slider'),
	text: __('Choose an image from the left, or search for any topic here to bring up more images.', 'ml-slider'),
	attachTo: { element: '#search-unsplash', on: 'bottom' },
	tetherOptions: { attachment: 'top center' },
	buttons: [
		{
			text: __('Hide step', 'ml-slider'),
			action: function () {
				MainTour.show('create-slide')
			}
		}
	]
})

MainTour.addStep('create-slide', {
	title: __('Create your slide', 'ml-slider'),
	text: __('After you have selected an image, press here to create your slide.', 'ml-slider'),
	attachTo: { element: '.media-modal.wp-core-ui', on: 'bottom' },
	tetherOptions: {
		targetAttachment: 'bottom right',
		attachment: 'bottom right',
		offset: '70px 90px'
	},
	buttons: []
})

// TODO: Add step for setting a theme

MainTour.addStep('preview', {
	title: __('Preview Slideshow', 'ml-slider'),
	text: __('Now that you have some slides set, you can preview your slideshow by pressing here.', 'ml-slider'),
	attachTo: { element: '#preview-slideshow', on: 'bottom' },
	tetherOptions: { attachment: 'top right', offset: '0 -90px' },
	buttons: []
})

// This sets the position of the tour to the database (currently used when they end/cancel the tour)
MainTour.setPosition = () => {
	return api.post('tour/status', {
		action: 'set_tour_status',
		current_step: MainTour.getCurrentStep().id
	})
}

// Events
// Add slide button was clicked
EventManager.$on('metaslider/add-slide-opening-ui', function () {
	this.$nextTick(() => {
		this.tourEnabled && MainTour.show('add-image')
	})
})

// Unsplash tab was opened
EventManager.$on('metaslider/unsplash-tab-opened', function () {
	this.$nextTick(() => {
		if (this.tourEnabled && 'add-image' === MainTour.getCurrentStep().id) {
			MainTour.show('search-unsplash')
		}
	})
})

// Unsplash tab was opened
EventManager.$on('metaslider/unsplash-tab-closed', function () {
	this.$nextTick(() => {
		this.tourEnabled && MainTour.show('create-slide')
	})
})

// Unsplash search was focused
EventManager.$on('metaslider/unsplash-search-focused', function () {
	this.$nextTick(() => {
		this.tourEnabled && MainTour.show('create-slide')
	})
})

// The create slide UI was closed
EventManager.$on('metaslider/add-slide-closing-ui', function () {
	this.$nextTick(() => {
		this.tourEnabled && MainTour.show('preview')
	})
})

// The create slide UI was closed
EventManager.$on('metaslider/preview-loaded', function () {
	this.tourEnabled && MainTour.setPosition()
	this.tourEnabled && MainTour.hide()
})

export default MainTour
admin/assets/js/app/tour/index.js000064400000000547151213254710012777 0ustar00import MainTour from './main'

// @codingStandardsIgnoreStart
// Also create a generic tour if needed (useful if we need a more detailled hint)
// const Tour = new window.Shepherd.Tour()
// Tour.options.defaults = {
// 	classes: 'shepherd-theme-arrows shepherd-metaslider-tour',
// 	showCancelLink: true
// }
// @codingStandardsIgnoreEnd

export { MainTour }
admin/assets/js/app/store/index.js000064400000001232151213254710013132 0ustar00
import Vue from 'vue'
import Vuex from 'vuex'
import VuexPersistence from 'vuex-persist'
import createLogger from 'vuex/dist/logger'
import slideshows from './modules/slideshows'

// Keep in local storage
const vuexLocal = new VuexPersistence({
    key: 'metaslider-vuex-' + window.metaslider_api.site_id,
    reducer: state => ({
        slideshows: {
            all: state.slideshows.all
		}
	})
})

// Keeping this very simple for now
Vue.use(Vuex)

const debug = process.env.NODE_ENV !== 'production'
// const debug = false
export default new Vuex.Store({
	modules: {
		slideshows
	},
	strict: debug,
	plugins: debug ? [createLogger()] : [vuexLocal.plugin]
})
admin/assets/js/app/store/modules/settings.js000064400000001130151213254710015330 0ustar00import slide from '../../api/Settings'

// initial state
const state = {
}

// getters
const getters = {}

// actions
const actions = {
	// getAllSlideshows({ commit }) {
	// 	slideshow.getSlideshows(slideshows => {
	// 		commit('allSlideshows', slideshows)
	// 	})
	// }
}

// mutations
const mutations = {
	// setProducts(state, products) {
	// 	state.all = products
	// },

	// decrementProductInventory(state, { id }) {
	// 	const product = state.all.find(product => product.id === id)
	// 	product.inventory--
	// }
}

export default {
	namespaced: true,
	state,
	getters,
	actions,
	mutations
}admin/assets/js/app/store/modules/slides.js000064400000001136151213254710014761 0ustar00import slide from '../../api/Slide'

// initial state
const state = {
	all: []
}

// getters
const getters = {}

// actions
const actions = {
	// getAllSlideshows({ commit }) {
	// 	slideshow.getSlideshows(slideshows => {
	// 		commit('allSlideshows', slideshows)
	// 	})
	// }
}

// mutations
const mutations = {
	// setProducts(state, products) {
	// 	state.all = products
	// },

	// decrementProductInventory(state, { id }) {
	// 	const product = state.all.find(product => product.id === id)
	// 	product.inventory--
	// }
}

export default {
	namespaced: true,
	state,
	getters,
	actions,
	mutations
}admin/assets/js/app/store/modules/slideshows.js000064400000016460151213254710015670 0ustar00import slideshow from '../../api/Slideshow'
import { Axios } from '../../api'
import QS from 'qs'

// initial state
const state = {
    all: [],
    slides: {},
    locked: false,
    remainingPages: 1,
    totalSlideshows: 0,
    fetchingAll: false,
    currentId: null
}

const slideshowStub = () => {
    return {
        title: '',
        theme: '',
        id: '',
        settings: {},
        slides: {}
    }
}

// getters
const getters = {
    getCurrent: (state, getters) => {
        if (!state.all.length) return slideshowStub()
        const current = state.all.find(slideshow => (slideshow.id === state.currentId))
        if (!current) return slideshowStub()
        return current
    },
}

// actions
const actions = {
    getSingleSlideshow({commit}, id) {
        slideshow.single(id).then(({data}) => {
            commit('addSlideshows', data.data)
        }).catch(error => {
            window.metaslider.app.MetaSlider.notifyError('metaslider/fetching-single-slideshows-error', error, true)
        })
    },
    getRecentSlideshows({commit}) {
        const page = 1
        slideshow.all(page).then(({data}) => {

            if (data.data.hasOwnProperty('remaining_pages')) {
                commit('updateRemainingPagesCount', data.data.remaining_pages)
                delete data.data.remaining_pages
                delete data.data.page
            }
            if (data.data.hasOwnProperty('totalSlideshows')) {
                commit('setTotalSlideshows', data.data.totalSlideshows)
                delete data.data.totalSlideshows
            }

            commit('addSlideshows', data.data)

        }).catch(error => {
            window.metaslider.app.MetaSlider.notifyError('metaslider/fetching-recent-slideshows-error', error, true)
        })
    },
    getAllSlideshows({commit}) {
        const page = 1
        return fetchAllSlideshows(page, commit).catch(error => {
            window.metaslider.app.MetaSlider.notifyError('metaslider/fetching-all-slideshows-error', error, true)
        })
    }
}

const fetchAllSlideshows = (page, commit) => {
    commit('setFetchingAll', true)
    return new Promise((resolve) => {
        slideshow.all(page, 200).then(({data}) => {
            let nextPage = false

            // If there are remaining pages we need to send another request with the next page
            if (data.data.hasOwnProperty('remaining_pages')) {
                nextPage = data.data.page + 1
                commit('updateRemainingPagesCount', data.data.remaining_pages)
                delete data.data.remaining_pages
                delete data.data.page
            } else {
                commit('updateRemainingPagesCount', 0)
            }

            if (data.data.hasOwnProperty('totalSlideshows')) {
                commit('setTotalSlideshows', data.data.totalSlideshows)
                delete data.data.totalSlideshows
            }

            commit('addSlideshows', data.data)


            let slides = {}
            let slide, slideshow

            Object.keys(data.data).forEach(slideshowKey => {
                slideshow = data.data[slideshowKey]

                for (let i = 0; i < slideshow.slides.length; i++) {
                    slide = slideshow.slides[i]

                    slides[slide.id] = {
                        'id': slide.id,
                        'thumbnail': slide.thumbnail,
                        'meta': slide.meta,
                    }
                }
            })

            commit('addSlides', slides)

            // Only make a request every 2 seconds to cut down on processing load
            setTimeout(() => {
                !nextPage && commit('setFetchingAll', false)
                resolve(nextPage ? fetchAllSlideshows(nextPage, commit) : data)
            }, 2000);
        })
    })
}

// mutations
const mutations = {
    setCurrent(state, id) {
        state.currentId = id
    },
    setTotalSlideshows(state, count) {
        state.totalSlideshows = count
    },
    updateRemainingPagesCount(state, count) {
        state.remainingPages = count
    },
    addSlideshows(state, slideshows) {
        slideshows && Object.keys(slideshows).forEach(key => {

            // Check if the slideshow already exists in the store
            const index = state.all.findIndex(slideshow => (slideshow.id === slideshows[key].id))
            if (index > -1) {
                // If the two objects are not identical, replace with the new one
                if (JSON.stringify(state.all[index]) !== JSON.stringify(slideshows[key])) {
                    Object.assign(state.all[index], slideshows[key])
                    console.log('MetaSlider:', 'Updated slideshow id #' + slideshows[key].id + ' in local storage.')
                }
            } else {

				// It's new, so push to the store
				state.all.push(slideshows[key])

				// Add sample images to the new slideshow
				if(window.location.href.indexOf('metaslider_add_sample_slides') > -1) {

                    // Get value from param in URL for metaslider_add_sample_slides
                    var slug = new URLSearchParams(window.location.search).get('metaslider_add_sample_slides');

                    // Show the notice while the slides creation runs on the background
                    document.getElementById('loading-add-sample-slides-notice').style.display = 'flex';

                    // If the slug is included in metaslider.quickstart_slugs (is a Pro demo import)
                    if (metaslider.quickstart_slugs.includes(slug)) {
                        // Import sample data from Pro
                        Axios.post('import/others', QS.stringify({
                            action: 'ms_import_others',
                            slideshow_id: slideshows[key].id,
                            slug: slug
                        })).then(response => {
                            // This will trigger sampleSlidesWereAdded()
                            window.location.href = window.location.href.replace('metaslider_add_sample_slides', 'metaslider_add_sample_slides_after');
                        }).catch(error => {
                            console.log(error)
                        })

                    } else {
                        // Import sample data from Free (just image slides)
                        Axios.post('import/images', QS.stringify({
                            action: 'ms_import_images',
                            slideshow_id: slideshows[key].id,
                        })).then(response => {
                            // This will trigger sampleSlidesWereAdded()
                            window.location.href = window.location.href.replace('metaslider_add_sample_slides', 'metaslider_add_sample_slides_after');
                        }).catch(error => {
                            console.log(error)
                        })
                    }

				}
			}
		})
	},
	updateTheme(state, theme) {
		const index = state.all.findIndex(slideshow => (slideshow.id === state.currentId))
		state.all[index]['theme'] = theme
	},
	updateTitle(state, title) {
		const index = state.all.findIndex(slideshow => (slideshow.id === state.currentId))
		state.all[index]['title'] = title
	},
	setLocked(state, locked) {
		state.locked = locked
	},
	setFetchingAll(state, status) {
		state.fetchingAll = status
	}
}

export default {
    namespaced: true,
    state,
    getters,
    actions,
    mutations
}
admin/assets/js/app/components.js000064400000003642151213254710013063 0ustar00/**
 * Load all the components. needed for the app
 */

import Vue from 'vue'
import './globals'
import { ThemeViewer } from './themes'
import { Preview } from './previews'
import { SlideViewer, Slide, Caption, PreviewImport, DragDropImport, External } from './slides'
import { SettingsViewer, Title } from './slideshows/settings'
import { Shortcode, UtilityModal } from './extra'
import Switcher from './slideshows/nav/Switcher.vue'
import Drawer from './slideshows/nav/Drawer.vue'

import { SettingsPage } from './settings'

Vue.component('metaslider-settings-viewer', SettingsViewer)
Vue.component('metaslider-slide-viewer', SlideViewer)
Vue.component('metaslider-slide', Slide)
Vue.component('metaslider-caption', Caption)
Vue.component('metaslider-theme-viewer', ThemeViewer)
Vue.component('metaslider-preview', Preview)
Vue.component('metaslider-external', External)
Vue.component('metaslider-shortcode', Shortcode)
Vue.component('metaslider-utility-modal', UtilityModal)
Vue.component('metaslider-dragdrop-import', DragDropImport)
Vue.component('metaslider-switcher', Switcher)
Vue.component('metaslider-drawer', Drawer)
Vue.component('metaslider-title', Title)

Vue.component('metaslider-settings-page', SettingsPage)

// Loaded it this way because I couldn't get translations working
Vue.component('metaslider-import-module', PreviewImport)

// Let others load in custom components
if (window.metaslider.components) {
	Object.keys(window.metaslider.components).forEach(name => {
		Vue.component(name, window.metaslider.components[name])
	})
}

// Allow jQuery to control the creation and destruction of the external API component
window.jQuery(window).on('metaslider/initialize_external_api', (event, data) => {
	window.metaslider.externalVM = new Vue().$mount(data.selector)
})
window.jQuery(window).on('metaslider/destroy_external_api', event => {
	window.metaslider.externalVM && window.metaslider.externalVM.$destroy()
})

export default {}
admin/assets/js/app/api/Slideshow.js000064400000004326151213254710013410 0ustar00import { Axios as api } from '../api'
import store from '../store'

const Slideshow = {
	all(page = 1, count = 25) {
		return api.get('slideshow/all', {
			params: {
				action: 'ms_get_slideshows',
				page: page,
				count: count
			}
		})
	},
	single(id) {
		return api.get('slideshow/single', {
			params: {
				action: 'ms_get_single_slideshow',
				id: id
			}
		})
	},
	search(term, count = 50) {
		return api.get('slideshow/search', {
			params: {
				action: 'ms_search_slideshows',
				term: term,
				count: count
			}
		})
	},
	legacy() {
		return api.get('slideshow/legacy', {
			params: {
				action: 'ms_get_legacy_slideshows'
			}
		})
	},
	save(data, chunks = 10) {
		const formData = new FormData()
		let count = 0
		formData.append('slideshow_id', store.getters['slideshows/getCurrent'].id)
		formData.append('action', 'ms_save_slideshow')

		// Prune chunks from data
		for (let index = 0; index < chunks; index++) {
			if (!data[index]) continue
			data[index].forEach(data => {
				formData.append(data.name, data.value)
			})
			count++
			delete data[index]
		}
		data = data.filter(val => val) // re-index

		// Add key to verify data wasn't truncated
		formData.append('count', count)

		return api.post('slideshow/save', formData, {
			headers: { 'Content-Type': 'multipart/form-data' }
		}).then(response => {

			// If there is more data to process, return that
			return (data.length) ? data : response.data
		})
	},
	duplicate() {
		let formData = new FormData()
		formData.append('slideshow_id', store.getters['slideshows/getCurrent'].id)
		formData.append('action', 'ms_duplicate_slideshow')
		return api.post('slideshow/duplicate', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},
	export(slideshowIds) {
		return api.get('slideshow/export', {
			responseType: 'blob',
			params: {
				action: 'ms_export_slideshows',
				slideshow_ids: JSON.stringify(slideshowIds)
			}
		})
	},
	import(slideshows) {
		let formData = new FormData()
		formData.append('slideshows', slideshows)
		formData.append('action', 'ms_import_slideshows')
		return api.post('slideshow/import', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},
	// delete() {},
}

export default Slideshow
admin/assets/js/app/api/Slide.js000064400000001005151213254710012476 0ustar00// import { Axios as api } from '../api'

const Slide = {
	// create() {
	// 	return api.get('images/all', {
	// 		params: { page: page, nocache: nocache }
	// 	})
	// },
	// save() {
	// 	return api.post('images/search', {
	// 		page: page,
	// 		search: search
	// 	})
	// }

	// delete() {
	// 	return api.post('images/search', {
	// 		page: page,
	// 		search: search
	// 	})
	// },
	// crop() {
	// 	return api.post('images/search', {
	// 		page: page,
	// 		search: search
	// 	})
	// }
}

export default Slide
admin/assets/js/app/api/_setup.js000064400000003067151213254710012747 0ustar00import axios from 'axios'

const Axios = axios.create({
	baseURL: window.metaslider_api.supports_rest ? window.metaslider_api.root : false,
	headers: {
		'X-WP-Nonce': window.metaslider_api ? window.metaslider_api.nonce : false,
		'X-Requested-With': 'XMLHttpRequest'
	}
})

Axios.interceptors.request.use((config) => {

	// If the baseURL above is false, it means that REST is not supported
	// So we can override the route to use admin-ajax.php
	if (!config.baseURL) {
		config.url = window.metaslider_api.ajaxurl
	}

	return config
})

Axios.interceptors.response.use(undefined, error => {
	return new Promise((resolve, reject) => {

		// If we are already using admin-ajax, continue
		if (error.config.url === window.metaslider_api.ajaxurl) {
			reject(error)
		}
		
		if (error.config && 'GET' === error.config.method.toUpperCase()) {
			const APP = window.metaslider.app ? window.metaslider.app.MetaSlider : null
			APP && APP.notifyError('metaslider/rest-route-get-error', error.response)

			// If the failed route was a GET request then update the config and remake the call
			error.config.url = window.metaslider_api.ajaxurl
			resolve(axios.request(error.config))
		}

		if (error.config && 'POST' === error.config.method.toUpperCase()) {

			// Try again on "safe" routes
			if (error.response && 404 === error.response.status) {
				error.config.url = window.metaslider_api.ajaxurl
				resolve(axios.request(error.config))
			}
			// TODO: Possibly show a custom error message with action callback (point to URL with more info)
		}
		reject(error)
	})
})

export default Axios
admin/assets/js/app/api/Image.js000064400000000655151213254710012472 0ustar00import { Axios as api } from '../api'

// Note, this is a slow refactor so might appear incomplete
const Image = {
	findIdFromFilename(filenames) {
		let formData = new FormData()
		formData.append('filenames', filenames)
		formData.append('action', 'ms_get_image_ids_from_filenames')
		return api.post('images/ids-from-filenames', formData, {
			headers: { 'Content-Type': 'multipart/form-data' }
		})
	}
}

export default Imageadmin/assets/js/app/api/index.js000064400000000405151213254710012550 0ustar00import Axios from './_setup'
import Unsplash from './external/Unsplash'
import Slideshow from './Slideshow'
import Slide from './Slide'
import Settings from './Settings'
import Image from './Image'

export { Axios, Unsplash, Slideshow, Slide, Settings, Image }
admin/assets/js/app/api/Settings.js000064400000006625151213254710013253 0ustar00import { Axios as api } from '../api'
import store from '../store'

// Note, this is a slow refactor so might appear incomplete
const Settings = {

	save(data) {
		let formData = new FormData()
		formData.append('slideshow_id', store.getters['slideshows/getCurrent'].id)
		formData.append('action', 'ms_update_all_slideshow_settings')
		data.forEach(data => {
			formData.append(data.name, data.value)
		})
		return api.post('settings/slideshow/save', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},

	// Use this when the setting is not related to the slideshow itself (which would be in the store)
	saveSingleSlideshowSetting(key, value) {
		let formData = new FormData()
		formData.append('slideshow_id', store.getters['slideshows/getCurrent'].id)
		formData.append('setting_key', key)
		formData.append('setting_value', value)
		formData.append('action', 'ms_update_single_slideshow_setting')

		return api.post('settings/slideshow/save-single', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},
	// Save a global option for the user
	saveUserSetting(key, value) {
		let formData = new FormData()
		formData.append('setting_key', key)
		formData.append('setting_value', value)
		formData.append('action', 'ms_update_user_setting')

		return api.post('settings/user/save', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},
	getUserSetting(setting) {
		return api.get('settings/user/', {
			params: {
				action: 'ms_get_user_details',
				setting: setting,
			}
		})
	},
	get(setting) {
		return api.get('settings/single', {
			params: {
				action: 'ms_get_single_setting',
				setting: setting,
			}
		})
	},
	getSlideshowDefaults() {
		return api.get('settings/slideshow/defaults', {
			params: {
				action: 'ms_get_default_slideshow_settings'
			}
		})
	},
	saveSlideshowDefaults(settings) {
		let formData = new FormData()
		formData.append('action', 'ms_update_slideshow_default_settings')
		formData.append('settings', settings)
		return api.post('settings/slideshow/defaults/save', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
    },
    getGlobalSettings() {
		return api.get('settings/global', {
			params: {
				action: 'ms_get_default_slideshow_settings'
			}
		})
    },
	
	// @TODO - Maybe move this to metaslider-pro/v1 ?
	getProSettings() {
		return api.get('settings/pro', {
			params: {
				action: 'ms_get_pro_settings'
			}
		})
	},

	saveGlobalSettings(settings) {
		let formData = new FormData()
		formData.append('action', 'ms_update_global_settings')
		formData.append('settings', settings)
		return api.post('settings/global/save', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},

	saveGlobalSettingsSingle(key, value) {
		let formData = new FormData()
		formData.append('action', 'ms_update_global_settings_single')
		formData.append('setting_key', key)
		formData.append('setting_value', value)
		return api.post('settings/global/single/save', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},

	// @TODO - Maybe move this to metaslider-pro/v1 ?
	saveProSettings(settings) {
		let formData = new FormData()
		formData.append('action', 'ms_update_pro_settings')
		formData.append('settings', settings)
		return api.post('settings/pro/save', formData, {
			headers: {
				'Content-Type': 'multipart/form-data'
			}
		})
	},
}

export default Settings
admin/assets/js/app/api/external/Unsplash.js000064400000002463151213254720015067 0ustar00import Axios from 'axios'
import { EventManager } from '../../utils'

// Since this uses an external api we need a new instance
const api = Axios.create({
	baseURL: 'https://www.metaslider.com/wp-json/unsplash/v1/'
})

const Unsplash = {
	photos(page = 1, search = '', nocache = 0) {

		if (search) {
			return this.searchPhotos(page, search)
		}

		return api.get('images/all', {
			params: { page: page, nocache: nocache }
		})
	},
	searchPhotos(page = 1, search = '') {
		return api.post('images/search', {
			page: page,
			search: search
		})
	},
	// A download from Unsplash requires downloading the image
	// AND hitting an endpoint to "count" the download
	async download(url, id) {
		// 1) Download image
		const blob = await Axios.get(url, {
			responseType: 'blob',
			onDownloadProgress: progressEvent => {

				// Leave the last 20% for the final confirmation from the server
				let percentage = parseInt(Math.round((progressEvent.loaded * 100) / progressEvent.total)) - 20
				EventManager.$emit('metaslider/external-api-percentage', {
					percentage: percentage > 1 ? percentage : 1
				})
			}
		})

		// 2) Trigger the endpoint to increase the count (specific to Unsplash)
		api.post(`images/${id}/download`)

		// Return the blob to be processed on the user's server
		return blob
	}
}

export default Unsplash
admin/assets/js/app/app.js000064400000001112151213254720011445 0ustar00/**
 * Import global things:
 */

import Vue from 'vue'
import { Slideshow, Toolbar } from './slideshows'
import { EventManager } from './utils'
import { Axios } from './api'
import store from './store'
import './components'

Vue.component('metaslider', Slideshow)
Vue.component('metaslider-toolbar', Toolbar)
const MetaSlider = new Vue({ store }).$mount('#metaslider-ui')


// these exports are available globaly through window.metaslider.app.{name}
if (!window.metaslider) {
	window.metaslider = {}
}
window.metaslider.app = { Vue, MetaSlider, Slideshow, EventManager, Axios, store }
admin/assets/js/app/settings/inputs/_actionButton.vue000064400000003366151213254720017057 0ustar00<template>
<form @keydown.enter.prevent="" autocomplete="off" class="bg-white shadow relative" :class="[containerMargin]" action="#" method="POST">
	<div class="px-4 py-5 sm:p-6">
		<h3 class="text-lg m-0 leading-6 font-medium text-gray-darkest">
		<slot name="header"/>
		</h3>
		<div class="mt-2 sm:flex sm:items-start sm:justify-between">
		<div class="max-w-xl text-sm leading-5 text-gray-500">
			<div class="m-0 p-0">
				<slot name="description"/>
			</div>
		</div>
		<div class="mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center">
			<span class="inline-flex rounded-md shadow-sm">
				<button
					type="button"
					class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5"
					:class="{
						'bg-gray-darker text-gray-light': disabled,
						'bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white': !disabled
					}"
					tabindex="0"
					:disabled="disabled"
					@click="$emit('click')"
					@keydown.enter.prevent="$emit('click')"
					@keydown.space.prevent="$emit('click')">
					<slot name="button"/>
				</button>
			</span>
		</div>
		</div>
	</div>
	<transition name="settings-fade" mode="in-out">
		<loading-element v-if="$parent.$attrs.loading"/>
	</transition>
</form>
</template>

<script>
import { default as LoadingElement } from './shimmers/_actionButtonShimmer'
export default {
	props: {
		value: {
			type: Boolean,
			default: true
		},
		disabled: {
			type: Boolean,
			default: false
		},
		containerMargin: {
			type: String,
			default: 'mb-4'
		}
	},
	components: {
		'loading-element' : LoadingElement
	},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {}
}
</script>
admin/assets/js/app/settings/inputs/_textMultiple.vue000064400000003073151213254720017101 0ustar00<template>
    <form @keydown.enter.prevent="" autocomplete="off" action="#" method="POST" class="mobile-settings-form">  
        <div class="mt-5 md:flex md:items-center">
        <div class="max-w-xs w-full">
            <input
                :id="name"
                class="form-input block w-full md:text-sm md:leading-5 relative rounded-md shadow-sm"
                v-on:input="$emit('input', $event.target.value)"
                :value="value"
                :placeholder="value" />
        </div>
        <span class="mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto mobile-settings">
            <button @click="save" type="button" class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5">
            {{ __('Save', 'ml-slider') }}
            </button>
        </span>
        </div>
    <transition name="settings-fade" mode="in-out">
        <loading-element v-if="$parent.$attrs.loading"/>
    </transition>
    </form>
</template> 
<script>
    import { default as LoadingElement } from './shimmers/_textSingleShimmer'
    export default {
        props: ['value', 'name'],
        components: {
            'loading-element' : LoadingElement
        },
        data() {
            return {}
        },
        created() {},
        mounted() {},
        methods: {
            save() {
                this.$emit("click")
            }
        }
    }
</script>
admin/assets/js/app/settings/inputs/alerts/_warningSmall.vue000064400000002222151213254720020324 0ustar00<template>
	<div class="max-w-4xl mb-6">
		<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4">
			<div class="flex">
				<div class="flex-shrink-0">
					<svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20">
					<path fill-rule="evenodd" d="M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z" clip-rule="evenodd"></path>
					</svg>
				</div>
				<div class="ml-3">
					<p class="text-sm p-0 m-0 leading-5 text-yellow-700">
						<slot name="description"/>
						<a v-if="link" :href="link" :target="newTab ? '_blank' : '_self'" class="font-medium underline text-yellow-700 hover:text-yellow-600 transition ease-in-out duration-150">
							<slot name="link-text"/>
						</a>
					</p>
				</div>
			</div>
		</div>
	</div>
</template>

<script>
export default {
	props: {
		link: {
			type: String,
			default: ''
		},
		newTab: {
			type: Boolean,
			default: false
		},
	},
	components: {},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {}
}
</script>
admin/assets/js/app/settings/inputs/_multiFields.vue000064400000001550151213254720016660 0ustar00<template>
<form @keydown.enter.prevent="" autocomplete="off" class="bg-white shadow md:rounded-lg mb-4" action="#" method="POST">
	<div class="shadow overflow-hidden md:rounded-md">
		<div class="px-4 py-5 bg-white md:p-6">
			<div class="grid grid-cols-6 gap-6">
				<slot name="inputfields"/>
			</div>
		</div>
		<div class="px-4 py-3 bg-gray-lighter border-t border-gray-light text-right md:px-6">
			<button class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5">
				{{ __('Save', 'ml-slider') }}
			</button>
		</div>
	</div>
</form>
</template>

<script>
export default {
	props: {},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {}
}
</script>
admin/assets/js/app/settings/inputs/_switchSingle.vue000064400000003704151213254720017045 0ustar00<template>
<form @keydown.enter.prevent="" autocomplete="off" class="bg-white shadow relative" :class="[containerMargin]" action="#" method="POST">
<div class="px-4 py-5 sm:p-6">
	<h3 class="text-lg m-0 leading-6 font-medium text-gray-darkest" id="renew-headline">
		<slot name="header"/>
	</h3>
	<p v-if="this.$slots.subheader" class="m-0 mb-2 text-gray-darker text-xs whitespace-normal">
		<slot name="subheader"/>
	</p>
	<div class="mt-2 sm:flex sm:items-start sm:justify-between">
		<div class="max-w-xl text-sm leading-5 text-gray-dark overflow-hidden">
			<div id="renew-description" class="m-0 p-0">
				<slot name="description"/>
			</div>
		</div>
		<div class="mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center">
			<span
				:class="{ 'bg-gray-light': !value, 'bg-orange': value }"
				:aria-checked="value ? value.toString() : false"
				class="relative inline-block flex-no-shrink h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-50 focus:outline-none focus:shadow-outline"
				role="checkbox"
				tabindex="0"
				@click="toggle"
				@keydown.space.prevent="toggle">
				<span
					aria-hidden="true"
					:class="{ 'translate-x-5': value, 'translate-x-0': !value }"
					class="inline-block h-5 w-5 rounded-full bg-white shadow transform transition ease-in-out duration-150"/>
			</span>
		</div>
	</div>
	<slot name="legacy-notices"/>
</div>
<transition name="settings-fade" mode="in-out">
	<loading-element v-if="$parent.$attrs.loading"/>
</transition>
</form>
</template>

<script>
import { default as LoadingElement } from './shimmers/_switchShimmer'
export default {
	props: {
		value: {},
		containerMargin: {
			type: String,
			default: 'mb-4'
		}
	},
	components: {
		'loading-element' : LoadingElement
	},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {
		toggle() {
			const value = !this.value
			this.$emit("input", value)
			this.$emit("change", value)
		}
	}
}
</script>
admin/assets/js/app/settings/inputs/_textSingle.vue000064400000003337151213254720016532 0ustar00<template>
<form @keydown.enter.prevent="" autocomplete="off" class="bg-white shadow mb-4 relative" action="#" method="POST">
<div class="px-4 py-5 md:p-6">
	<h3 class="text-lg leading-6 m-0 font-medium text-gray-darkest">
		<slot name="header"/>
	</h3>
	<div class="mt-2 max-w-xl text-sm leading-5 text-gray-dark">
		<div class="m-0 pt-0">
			<slot name="description"/>
		</div>
	</div>
	<div class="mt-5 md:flex md:items-center">
	<div :class="[wrapperClass, 'max-w-xs']">
		<label :for="name" class="sr-only">
			<slot name="input-label"/>
		</label>
		<div class="relative rounded-md shadow-sm">
			<input
				:id="name"
				class="form-input block w-full md:text-sm md:leading-5"
				v-on:input="$emit('input', $event.target.value)"
				:value="value"
				:placeholder="value" />
		</div>
	</div>
	<span class="mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto">
		<button @click="save" type="button" class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5">
		{{ __('Save', 'ml-slider') }}
		</button>
	</span>
	</div>
</div>
<transition name="settings-fade" mode="in-out">
	<loading-element v-if="$parent.$attrs.loading"/>
</transition>
</form>
</template>

<script>
import { default as LoadingElement } from './shimmers/_textSingleShimmer'
export default {
	props: {
		value: String,
		name: String,
		wrapperClass: {
			type: String,
			default: 'w-full'
		}
	},
	components: {
		'loading-element' : LoadingElement
	},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {
		save() {
			this.$emit("click")
		}
	}
}
</script>
admin/assets/js/app/settings/inputs/_textBoxWithLink.vue000064400000002166151213254720017512 0ustar00<template>
<div class="bg-white shadow">
	<div class="px-4 py-5 sm:p-6 flex justify-between items-start">
		<div>
            <h3 class="text-lg m-0 leading-6 font-medium text-gray-900">
                <slot name="header"/>
            </h3>
            <div v-if="this.$slots.description" class="mt-2 max-w-xl text-sm leading-5 text-gray-500">
                <p>
                    <slot name="description"/>
                </p>
            </div>
        </div>
		<div v-if="link" class="mt-0 text-sm leading-5">
			<a :href="link" :target="newTab ? '_blank' : '_self'" class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5 bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white">
				<slot name="link-text"/>
			</a>
		</div>
	</div>
</div>
</template>

<script>
export default {
	props: {
		link: {
			type: String,
			default: ''
		},
		newTab: {
			type: Boolean,
			default: false
		},
	},
	components: {},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {}
}
</script>
admin/assets/js/app/settings/inputs/shimmers/_actionButtonShimmer.vue000064400000002217151213254720022225 0ustar00<template>
	<div class="absolute bg-white inset-0 sm:p-6 px-4 py-5">
		<div class="gradient max-w-full rounded-lg h-7" :style="variableWidth()"></div>
		<div class="mt-2 sm:flex sm:items-start sm:justify-between h-7">
			<div class="rounded-lg gradient max-w-xl h-7" :style="variableWidth()"></div>
			<div class="rounded-lg gradient mt-5 w-12 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex h-7 sm:items-center"></div>
		</div>
	</div>
</template>

<script>
export default {
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {
		variableWidth() {
			return 'width:' + (Math.floor(Math.random() * 75) + 30) + '%'
		}
	}
}
</script>
<style scoped>
.gradient {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f1f1f1;
    background: linear-gradient(to right, #f1f1f1 8%, #f8fafc 38%, #f1f1f1 54%);
    background-size: 1000px 640px;
    position: relative;
}
@keyframes placeHolderShimmer {
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}
</style>admin/assets/js/app/settings/inputs/shimmers/_textSingleShimmer.vue000064400000002050151213254720021675 0ustar00<template>
	<div class="absolute bg-white inset-0 sm:p-6 px-4 py-5">
		<div class="gradient max-w-full rounded-lg h-7" :style="variableWidth()"></div>
		<div class="gradient max-w-full rounded-lg h-7 mt-2" :style="variableWidth()"></div>
		<div class="gradient max-w-full rounded-lg h-7 mt-5" style="width:50%"></div>
	</div>
</template>

<script>
export default {
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {
		variableWidth() {
			return 'width:' + (Math.floor(Math.random() * 75) + 30) + '%'
		}
	}
}
</script>
<style scoped>
.gradient {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f1f1f1;
    background: linear-gradient(to right, #f1f1f1 8%, #f8fafc 38%, #f1f1f1 54%);
    background-size: 1000px 640px;
    position: relative;
}
@keyframes placeHolderShimmer {
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}
</style>
admin/assets/js/app/settings/inputs/shimmers/_bigBoxShimmer.vue000064400000002050151213254720020761 0ustar00<template>
	<div class="absolute bg-white inset-0 sm:p-6 px-4 py-5">
		<div class="gradient max-w-full rounded-lg h-7" :style="variableWidth()"></div>
		<div class="gradient max-w-full rounded-lg h-7 mt-2" :style="variableWidth()"></div>
		<div class="gradient max-w-full rounded-lg h-7 mt-5" style="width:50%"></div>
	</div>
</template>

<script>
export default {
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {
		variableWidth() {
			return 'width:' + (Math.floor(Math.random() * 75) + 30) + '%'
		}
	}
}
</script>
<style scoped>
.gradient {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f1f1f1;
    background: linear-gradient(to right, #f1f1f1 8%, #f8fafc 38%, #f1f1f1 54%);
    background-size: 1000px 640px;
    position: relative;
}
@keyframes placeHolderShimmer {
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}
</style>
admin/assets/js/app/settings/inputs/shimmers/_switchShimmer.vue000064400000002255151213254720021057 0ustar00<template>
	<div class="absolute flex flex-col bg-white inset-0 sm:p-6 px-4 py-5">
		<div class="gradient max-w-full rounded-lg h-7" :style="variableWidth()"></div>
		<div class="mt-2 sm:flex md:flex-grow sm:items-start sm:justify-between h-7">
			<div class="rounded-lg gradient max-w-xl h-full" :style="variableWidth()"></div>
			<div class="rounded-lg gradient mt-5 w-12 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex h-7 sm:items-center"></div>
		</div>
	</div>
</template>

<script>
export default {
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {
		variableWidth() {
			return 'width:' + (Math.floor(Math.random() * 75) + 30) + '%'
		}
	}
}
</script>
<style scoped>
.gradient {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f1f1f1;
    background: linear-gradient(to right, #f1f1f1 8%, #f8fafc 38%, #f1f1f1 54%);
    background-size: 1000px 640px;
    position: relative;
}
@keyframes placeHolderShimmer {
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}
</style>admin/assets/js/app/settings/inputs/_fileButton.vue000064400000004133151213254730016513 0ustar00<template>
<form @keydown.enter.prevent="" autocomplete="off" class="bg-white shadow relative" :class="[containerMargin]" action="#" method="POST">
	<div class="px-4 py-5 sm:p-6">
		<h3 class="text-lg m-0 leading-6 font-medium text-gray-darkest">
		<slot name="header"/>
		</h3>
		<div class="mt-2 sm:flex sm:items-start sm:justify-between">
			<div class="max-w-xl text-sm leading-5 text-gray-500">
				<div class="m-0 p-0">
					<slot name="description"/>
				</div>
			</div>
			<div class="mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center">
				<span class="inline-flex rounded-md shadow-sm">
					<label
						:for="name"
						class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5"
						:class="{
							'bg-gray-darker text-gray-light': disabled,
							'bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white': !disabled
						}"
						tabindex="0"
						:disabled="disabled">
						<slot name="button"/>
					</label>
					<input :id="name" :accept="accept" :disabled="disabled" type="file" class="hidden" @change="loadFile"/>
				</span>
			</div>
		</div>
	</div>
	<transition name="settings-fade" mode="in-out">
		<loading-element v-if="$parent.$attrs.loading"/>
	</transition>
</form>
</template>

<script>
import { default as LoadingElement } from './shimmers/_actionButtonShimmer'
export default {
	props: {
		name: {
			type: String,
			default: ''
		},
		value: {
			type: Boolean,
			default: true
		},
		disabled: {
			type: Boolean,
			default: false
		},
		accept: {
			type: String,
			default: ''
		},
		containerMargin: {
			type: String,
			default: 'mb-4'
		}
	},
	components: {
		'loading-element' : LoadingElement
	},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {
		loadFile(event) {
			if (this.disabled) return
			if (!event.target.files[0]) return
			const file = new FileReader()
			file.onload = e => this.$emit('loaded', e.target.result)
			file.readAsText(event.target.files[0])
			event.target.value = ''
		}
	}
}
</script>
admin/assets/js/app/settings/inputs/_selectField.vue000064400000004023151213254730016621 0ustar00<template>
<form @keydown.enter.prevent="" autocomplete="off" class="bg-white shadow mb-4 relative" action="#" method="POST">
<div class="px-4 py-5 md:p-6">
	<h3 class="text-lg leading-6 m-0 font-medium text-gray-darkest">
		<slot name="header"/>
	</h3>
	<div class="mt-2 max-w-xl text-sm leading-5 text-gray-dark">
		<div class="m-0 pt-0">
			<slot name="description"/>
		</div>
	</div>
	<div class="mt-5 md:flex md:items-center">
	<div class="max-w-xs w-full">
		<label :for="name" class="sr-only">
			<slot name="input-label"/>
		</label>
		<div class="relative rounded-md shadow-sm">
			<select
              :id="name"
              class="form-select form-select--forced block w-full md:text-sm md:leading-5"
			  v-model="selectedValue" 
			  @input="$emit('input', $event.target.value)">
			  	<option v-for="option in options" :key="option.value" :value="option.value" :selected="option.value === selectedValue">
					{{ option.label }}
				</option>
            </select>
		</div>
	</div>
	<span class="mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto">
		<button @click="save" type="button" class="w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5">
		{{ __('Save', 'ml-slider') }}
		</button>
	</span>
	</div>
</div>
<transition name="settings-fade" mode="in-out">
	<loading-element v-if="$parent.$attrs.loading"/>
</transition>
</form>
</template>

<script>
import { default as LoadingElement } from './shimmers/_textSingleShimmer'
export default {
	props: ['value', 'options'],
	components: {
		'loading-element' : LoadingElement
	},
	data() {
		return {
			selectedValue: this.value
		};
	},
	watch: {
		value(newValue) {
			this.selectedValue = newValue;
		},
		selectedValue(newSelectedValue) {
			this.$emit('input', newSelectedValue);
		}
	},
	created() {},
	mounted() {},
	methods: {
		save() {
			this.$emit("click")
		}
	}
}
</script>
admin/assets/js/app/settings/components/data.vue000064400000003076151213254730016022 0ustar00<template>
<div class="bg-white shadow mb-4 relative">
	<div class="px-4 py-5 sm:p-6">
		<div class="flex items-start justify-between">
            <h3 class="text-lg m-0 leading-6 font-medium text-gray-900">
                <slot name="header"/>
            </h3>
            <button v-if="canCopy" :aria-label="__('Copy all', 'ml-slider')" :title="__('Copy all', 'ml-slider')" class="w-5 text-blue">
                <svg class="w-5 inline mr-2" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3" />
                </svg>
            </button>
        </div>
		<div v-if="this.$slots.description" class="mt-2 text-sm leading-5 text-gray-500">
			<p>
				<slot name="description"/>
			</p>
            <!-- Data will go here -->
            <slot name="data-extra"/>
		</div>
	</div>
    <transition name="settings-fade" mode="in-out">
        <loading-element v-if="$parent.$attrs.loading"/>
    </transition>
</div>
</template>

<script>
import { default as LoadingElement } from '../inputs/shimmers/_bigBoxShimmer'
export default {
    props: {
        data: {
			type: Object,
			default: {}
		},
        canCopy: {
			type: Boolean,
			default: true
		},
    },
    components: {
		'loading-element' : LoadingElement
	},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {}
}
</script>
admin/assets/js/app/settings/index.js000064400000000107151213254730013640 0ustar00import SettingsPage from './SettingsPage.vue'

export { SettingsPage }
admin/assets/js/app/settings/stubs/multi-input.html000064400000004321151213254730016512 0ustar00<!-- This is currently not used and here for when a multi input form is needed to match other layouts -->
<div class="col-span-6 md:col-span-3">
	<label for="first_name" class="block text-sm font-medium leading-5 text-gray-dark">First name</label>
	<input id="first_name" class="form-input block w-full md:text-sm md:leading-5" />
</div>

<div class="col-span-6 md:col-span-3">
	<label for="last_name" class="block text-sm font-medium leading-5 text-gray-dark">Last name</label>
	<input id="last_name" class="form-input block w-full md:text-sm md:leading-5" />
</div>

<div class="col-span-6 md:col-span-4">
	<label for="email_address" class="block text-sm font-medium leading-5 text-gray-dark">Email address</label>
	<input id="email_address" class="form-input block w-full md:text-sm md:leading-5" />
</div>

<div class="col-span-6 md:col-span-3">
	<label for="options" class="block text-sm font-medium leading-5 text-gray-dark">Country / Region</label>
	<select id="options"
		class="mt-1 block form-select w-full px-3 py-0 border border-gray-light bg-white rounded-md focus:text-gray-darker focus:shadow-outline focus:border-blue-light transition duration-150 ease-in-out md:text-sm md:leading-5">
		<option>Option 1</option>
		<option>Option 2</option>
		<option>Option 3</option>
	</select>
</div>

<div class="col-span-6">
	<label for="street_address" class="block text-sm font-medium leading-5 text-gray-dark">Street address</label>
	<input id="street_address" class="form-input block w-full md:text-sm md:leading-5" />
</div>

<div class="col-span-6 md:col-span-6 lg:col-span-2">
	<label for="city" class="block text-sm font-medium leading-5 text-gray-dark">City</label>
	<input id="city" class="form-input block w-full md:text-sm md:leading-5" />
</div>

<div class="col-span-6 md:col-span-3 lg:col-span-2">
	<label for="state" class="block text-sm font-medium leading-5 text-gray-dark">State / Province</label>
	<input id="state" class="form-input block w-full md:text-sm md:leading-5" />
</div>

<div class="col-span-6 md:col-span-3 lg:col-span-2">
	<label for="postal_code" class="block text-sm font-medium leading-5 text-gray-dark">ZIP / Postal</label>
	<input id="postal_code" class="form-input block w-full md:text-sm md:leading-5" />
</div>admin/assets/js/app/settings/pages/index.js000064400000000305151213254730014737 0ustar00import HelpCenter from './HelpCenter.vue'
import Settings from './Settings.vue'
import Import from './Import.vue'
import Export from './Export.vue'

export { HelpCenter, Settings, Import, Export }
admin/assets/js/app/settings/pages/Settings.vue000064400000034035151213254730015622 0ustar00<template>
<div>
	<split-layout :loading="loading">
		<template slot="header">{{ __('Slideshow Defaults', 'ml-slider') }}</template>
		<template slot="description">{{ __('Update the default settings used when creating new slideshows.', 'ml-slider') }}</template>
		<template slot="fields">
			<text-single-input v-model="slideshowDefaults.title" name="default-slideshow-title" @click="saveSlideshowDefaultSettings()">
				<template slot="header">{{ __('Default Slideshow Title', 'ml-slider') }}</template>
				<template slot="description"><span v-html="defaultTitleDescription"/></template>
				<template slot="input-label">
					{{ __('Change the default title', 'ml-slider') }}
				</template>
			</text-single-input>
			<text-single-input 
				v-model="slideshowDefaults.width" 
				name="default-slideshow-width" 
				wrapper-class="w-24" 
				@click="saveSlideshowDefaultSettings()">
				<template slot="header">{{ __('Base Image Width', 'ml-slider') }}</template>
				<template slot="description">{{ __('Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.', 'ml-slider') }}</template>
				<template slot="input-label">
					{{ __('Change the default width', 'ml-slider') }}
				</template>
			</text-single-input>
			<text-single-input 
				v-model="slideshowDefaults.height" 
				name="default-slideshow-height" 
				wrapper-class="w-24" 
				@click="saveSlideshowDefaultSettings()">
				<template slot="header">{{ __('Base Image Height', 'ml-slider') }}</template>
				<template slot="description">{{ __('Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.', 'ml-slider') }}</template>
				<template slot="input-label">
					{{ __('Change the default width', 'ml-slider') }}
				</template>
			</text-single-input>
			<switch-single-input v-model="slideshowDefaults.fullWidth" @change="saveSlideshowDefaultSettings()">
				<template slot="header">{{ __('100% Width', 'ml-slider') }}</template>
				<template slot="description">{{ __('While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.', 'ml-slider') }}</template>
			</switch-single-input>
		</template>
	</split-layout>
    <split-layout :loading="loading" class="lg:mt-6">
		<template slot="header">{{ __('Global Settings', 'ml-slider') }}</template>
		<template slot="description">{{ __('Update the settings used for all the slideshows on your site.', 'ml-slider') }}</template>
		<template slot="fields">
			<text-single-input v-model="globalSettings.license" name="ms-license" class="hidden" @click="saveGlobalSettings()">
				<template slot="header">{{ __('License Key', 'ml-slider') }}</template>
				<template slot="description"><span v-html="licenseDescription"/></template>
				<template slot="input-label">
					{{ __('Update license key', 'ml-slider') }}
				</template>
			</text-single-input>
			<switch-single-input v-model="globalSettings.optIn" @change="saveGlobalSettings()">
				<template slot="header">{{ __('Help Improve MetaSlider', 'ml-slider') }}</template>
				<template slot="description">
                    <span v-html="optInDescription"/>
                    <small v-if="Object.prototype.hasOwnProperty.call(optinInfo, 'id')" class="italic">Activated by user id #{{ optinInfo.id }} ({{ optinInfo.email }}) on {{ new Date(optinInfo.time * 1000).toLocaleDateString() }}</small>
                </template>
			</switch-single-input>
			<switch-single-input v-model="globalSettings.mobileSettings" @change="saveGlobalSettings()">
				<template slot="header">{{ __('Enable Mobile Settings', 'ml-slider') }}</template>
				<template slot="description">{{ __('Add option to hide slides and captions per screen size.', 'ml-slider') }}</template>
			</switch-single-input>
			<template v-if="globalSettings.mobileSettings">
				<div id="mobile-settings" class="bg-white shadow mb-4 relative px-4 py-5 md:p-6">
					<h3 class="text-lg leading-6 m-0 font-medium text-gray-darkest">
						{{ __('Mobile Settings', 'ml-slider') }}
					</h3>
					<div class="mt-2 max-w-xl text-sm leading-5 text-gray-dark">
						<div class="m-0 pt-0">
							{{ __('Set breakpoints for different screen sizes', 'ml-slider') }}
						</div>
					</div>
					<div class="row">
						<div class="col">
							<span class="dashicons dashicons-smartphone"></span>
							<text-multiple-input v-model="slideshowDefaults.smartphone" name="default-slideshow-smartphone" @click="saveSlideshowDefaultSettings()">
							</text-multiple-input>
						</div>
						<div class="col">
							<span class="dashicons dashicons-tablet"></span>
							<text-multiple-input v-model="slideshowDefaults.tablet" name="default-slideshow-tablet" @click="saveSlideshowDefaultSettings()">
							</text-multiple-input>
						</div>
						<div class="col">
							<span class="dashicons dashicons-laptop"></span>
							<text-multiple-input v-model="slideshowDefaults.laptop" name="default-slideshow-laptop" @click="saveSlideshowDefaultSettings()">
							</text-multiple-input>
						</div>
						<div class="col">
							<span class="dashicons dashicons-desktop"></span>
							<text-multiple-input v-model="slideshowDefaults.desktop" name="default-slideshow-desktop" @click="saveSlideshowDefaultSettings()">
							</text-multiple-input>
						</div>
					</div>
				</div>
			</template>
			<switch-single-input v-model="globalSettings.legacy" @change="saveGlobalSettings()" v-bind:class="{ 'disableSwitch': legacySlideshows !== 0}">
				<template slot="header">{{ __('Disable Legacy Libraries', 'ml-slider') }}</template>
				<template slot="description">{{ __('This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive Slides', 'ml-slider') }}</template>
				<template slot="legacy-notices" v-if="legacySlideshows === 0">
					<div class="notice notice-success ml-legacy-notice">
                    	<p>{{ __('You can safely enable this setting. None of your slideshows use the legacy libraries.', 'ml-slider') }}</p>
					</div>
                </template>
				<template slot="legacy-notices" v-if="legacySlideshows !== 0">
					<div class="notice notice-warning  ml-legacy-notice">
                    	<p>{{ legacySlideshows > 1 
                    		? sprintf(__('You currently have %s slideshows that use legacy libraries.', 'ml-slider'), legacySlideshows)
                    		: sprintf(__('You currently have %s slideshow that uses legacy libraries.', 'ml-slider'), legacySlideshows) }}</p>
					</div>
                </template>
			</switch-single-input>
			<switch-single-input v-model="globalSettings.adminBar" @change="saveGlobalSettings()">
				<template slot="header">{{ __('Enable MetaSlider on Admin Bar', 'ml-slider') }}</template>
				<template slot="description">{{ __('Add and edit slideshows easier by showing MetaSlider on your admin bar.', 'ml-slider') }}</template>
			</switch-single-input>
			<switch-single-input v-model="globalSettings.editLink" @change="saveGlobalSettings()">
				<template slot="header">{{ __('Enable Frontend Edit Links', 'ml-slider') }}</template>
				<template slot="description">{{ __('Edit slideshows easily by showing MetaSlider link under each slideshow.', 'ml-slider') }}</template>
			</switch-single-input>
			<select-field-input 
				v-model="globalSettings.newSlideOrder" 
				:options="[
					{ value: 'last', label: __('Last', 'ml-slider') },
					{ value: 'first', label: __('First', 'ml-slider') }
				]" 
				@click="saveGlobalSettings()">
				<template slot="header">{{ __('New slides order', 'ml-slider') }}</template>
				<template slot="description">{{ __('Select the position for new added slides.', 'ml-slider') }}</template>
			</select-field-input>
			<switch-single-input v-model="globalSettings.legacyWidget" @change="saveGlobalSettings()">
				<template slot="header">{{ __('Disable Legacy Widget', 'ml-slider') }}</template>
				<template slot="description">{{ __('This setting allows you to disable the legacy MetaSlider widget.', 'ml-slider') }}</template>
			</switch-single-input>
		</template>
	</split-layout>
	<!-- Pro settings -->
	<split-layout :loading="loading" class="lg:mt-6" v-if="isPro()">
		<template slot="header">{{ __('Pro Settings', 'ml-slider') }}</template>
		<template slot="description">{{ __('Update the MetaSlider Pro settings.', 'ml-slider') }}</template>
		<template slot="fields">
			<text-single-input 
				v-model="proSettings.postFeedFields" 
				name="default-slideshow-width" 
				wrapper-class="w-24" 
				@click="saveProSettings()">
				<template slot="header">{{ __('Maximum Number of Custom Field in Post Feed Sliders', 'ml-slider') }}</template>
				<template slot="description">{{ __('Select how many custom fields will display in the dropdown menu when you are inserting tags.', 'ml-slider') }}</template>
				<template slot="input-label">
					{{ __('Change the maximum custom fields for Post Feed', 'ml-slider') }}
				</template>
			</text-single-input>
		</template>
	</split-layout>
</div>
</template>

<script>
import { default as SplitLayout } from '../layouts/_split'
import { default as TextSingle } from '../inputs/_textSingle'
import { default as TextMultiple } from '../inputs/_textMultiple'
import { default as SwitchSingle } from '../inputs/_switchSingle'
import { default as SelectField } from '../inputs/_selectField'
import { default as WarningAlert } from '../inputs/alerts/_warningSmall'
import { Settings } from '../../api'
import { Slideshow } from '../../api'
export default {
	components: {
		'split-layout' : SplitLayout,
		'text-single-input' : TextSingle,
		'text-multiple-input' : TextMultiple,
		'switch-single-input' : SwitchSingle,
		'select-field-input' : SelectField,
		'alert-warning-small': WarningAlert
	},
	props: {},
	data() {
		return {
            loading: true,
            optinInfo: {},
			slideshowDefaults: {
				title: '',
				fullWidth: false,
				width: 0,
				height: 0,
				smartphone: 480,
				tablet: 768,
				laptop: 1024,
				desktop: 1440,
            },
            globalSettings: {
				license: '',
				optIn: false,
				adminBar: true,
				editLink: false,
				legacy: true,
				newSlideOrder: 'last',
				mobileSettings: true,
				legacyWidget: true
			},
			proSettings: {
				postFeedFields: 30,
			},
			legacySlideshows: {}

		}
	},
	computed: {
		defaultTitleDescription() {
			return this.sprintf(this.__('Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.', 'ml-slider'), '<code class="bg-transparent p-0 font-bold">{id}</code>')
        },
        licenseDescription() {
			return this.sprintf(
                this.__('If you are a pro member, enter your license key here to receive updates. %s', 'ml-slider'),
                `<a target="_blank" href="${this.hoplink}">${this.__('Upgrade here', 'ml-slider')}</a>`
            )
		},
		optInDescription() {
			return this.sprintf(
                this.__('Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s', 'ml-slider'),
                `<a target="_blank" href="${this.privacyLink}">${this.__('View our detailed privacy policy', 'ml-slider')}</a>`
            )
		},
		isDisabled() {
			if(legacySlideshows == 0){

			}
			return this.form.validated;
		}
	},
	created() {
		Settings.getSlideshowDefaults().then(({data}) => {
			Object.keys(data.data).forEach(key => {
				if (this.slideshowDefaults.hasOwnProperty(key)) {
					this.slideshowDefaults[key] = data.data[key]
				}
			})
			this.loading = false
		}).catch(error => {
			this.notifyError('metaslider/settings-load-error', error.response, true)
		})
		Settings.getGlobalSettings().then(({data}) => {
			Object.keys(data.data).forEach(key => {
				if (this.globalSettings.hasOwnProperty(key)) {
					this.globalSettings[key] = data.data[key]
				}
			})
			this.loading = false
		}).catch(error => {
			this.notifyError('metaslider/settings-load-error', error.response, true)
        })
		Settings.getProSettings().then(({data}) => {
			Object.keys(data.data).forEach(key => {
				if (this.proSettings.hasOwnProperty(key)) {
					this.proSettings[key] = data.data[key]
				}
			})
			this.loading = false
		}).catch(error => {
			this.notifyError('metaslider/settings-load-error', error.response, true)
		})
		Settings.get('optin_user_extras').then(({data}) => {
			this.optinInfo = data.data
		})
		Slideshow.legacy().then(({data}) => {
			this.legacySlideshows = data.data
		})
	},
	mounted() {},
	methods: {
		saveSlideshowDefaultSettings() {
			const settings = JSON.stringify(this.slideshowDefaults)
			Settings.saveSlideshowDefaults(settings).then(({data}) => {
				this.notifyInfo(
					'metaslider/settings-page-slideshow-settings-saved',
					this.__('Slideshow settings saved', 'ml-slider'),
					true
				)
			}).catch(error => {
				this.notifyError('metaslider/settings-save-error', error.response, true)
			})
		},
		async saveGlobalSettings() {
            this.optinInfo = {}
            if (this.globalSettings.optIn) {
                await Settings.saveGlobalSettingsSingle('optin_via', 'manual')
            }
			const settings = JSON.stringify(this.globalSettings)
			Settings.saveGlobalSettings(settings).then(({data}) => {
				this.notifyInfo(
					'metaslider/settings-page-global-settings-saved',
					this.__('Global settings saved', 'ml-slider'),
					true
				)
			}).catch(error => {
				this.notifyError('metaslider/settings-save-error', error.response, true)
			})
		},
		// @TODO - Maybe move this to metaslider-pro/v1 ?
		saveProSettings() {
			const settings = JSON.stringify(this.proSettings)
			Settings.saveProSettings(settings).then(({data}) => {
				this.notifyInfo(
					'metaslider/settings-page-slideshow-settings-saved',
					this.__('Pro settings saved', 'ml-slider'),
					true
				)
			}).catch(error => {
				this.notifyError('metaslider/settings-save-error', error.response, true)
			})
		},
		isPro() {
			return metaslider_api.proUser !== 'undefined' && Number(metaslider_api.proUser) === 1;
		},
	}
}
</script>
admin/assets/js/app/settings/pages/Import.vue000064400000034756151213254730015306 0ustar00<template>
<div>
	<split-layout>
		<template slot="header">{{ __('Import', 'ml-slider') }}</template>
		<template slot="description">
			{{ __('Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.', 'ml-slider') }}
		</template>
		<template slot="fields">
			<file-button name="import" accept=".json" @loaded="loadSlideshowsFromFile" :disabled="processing">
				<template slot="header">{{ __('Load slideshows', 'ml-slider') }}</template>
				<template slot="description">{{ sprintf(__('If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.', 'ml-slider'), slideshowsToImport) }}</template>
				<template v-if="importing" slot="button">{{ __('Importing...', 'ml-slider') }}</template>
				<template v-else-if="processing" slot="button">{{ __('Processing...', 'ml-slider') }}</template>
				<template v-else slot="button">
					<svg class="w-5 -ml-1 pr-1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12" />
                    </svg>
                    {{ __('Upload file', 'ml-slider') }}
				</template>
			</file-button>
		</template>
	</split-layout>
	<split-layout
		v-if="Object.keys(slideshowsList).length"
		:loading="importing || processing">
		<template slot="header">{{ __('Slideshows', 'ml-slider') }}</template>
		<template slot="description">
			<pre>
{{ sprintf(__('Date: %s', 'ml-slider'), fileDate()) }}
{{ sprintf(__('Version: v%s', 'ml-slider'), metadata.version) }}
			</pre>
				<div v-if="!procesingImages && !missingImages.length">
					{{ __('All images required to import are accounted for.', 'ml-slider') }}
				</div>
			<transition name="settings-fade" mode="in-out">
				<div v-if="!procesingImages && missingImages.length">
					<h4>{{ __('The following images were not found:', 'ml-slider') }}</h4>
					<div>
						<div v-for="slideshow in missingImages" :key="slideshow">
							<p class="font-bold underline mb-1">
								{{ slideshowsList[slideshow].title }}
							</p>
							<ul class="mb-4">
								<li
									v-for="slide in slidesMissingImages(slideshow)"
									:key="slide.original_id"
									class="mb-0">
									{{ slide.image ? slide.image : __('No image name provided' , 'ml-slider') }}
								</li>
							</ul>
						</div>
					</div>
				</div>
			</transition>
		</template>
		<template slot="description3">
			<transition name="settings-fade" mode="in-out">
				<div v-if="!procesingImages && missingImages.length">
					{{ __('Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.', 'ml-slider') }}
				</div>
			</transition>
		</template>
		<template slot="fields">
			<div class="mb-10">
				<action-button
					@click="importSlideshows"
					:disabled="!slideshowsToImport.length">
					<template slot="header">{{ sprintf(__('Import %s slideshows', 'ml-slider'), slideshowsToImport.length) }}</template>
					<template slot="description">{{ __('Select the slideshows you wish to import below, then press here to import them.', 'ml-slider') }}</template>
					<template slot="button">{{ __('Import', 'ml-slider') }}</template>
				</action-button>
				<switch-single-input
					v-if="Object.keys(slideshowsList).length > 10"
					:value="slideshowsToImport.length > 0"
					@change="toggleSlideshowsToImport($event)">
					<template slot="header">{{ __('Toggle all slideshows') }}</template>
					<template slot="description">{{ __('Select or deselect all slideshows') }}</template>
				</switch-single-input>
			</div>
			<template v-for="(slideshow, index) in slideshowsList">
				<switch-single-input
					:key="index"
					v-model="slideshowsListSelection[index]"
					class="transition-all duration-150 ease-linear"
					:style="{ filter: slideshowsListSelection[index] ? 'none' : 'grayscale(1)' }">
					<template slot="header">
						<input
							:value="slideshow.title || 'Title not found'"
							class="-ml-2 hover:bg-gray-lighter hover:border border-gray-light px-2 py-1 text-lg"
							@change="slideshowsList[index].title = $event.target.value">
					</template>
					<template slot="description">
						<div v-if="slideshow.slides" class="pl-3 inline-flex flex-row-reverse justify-end relative z-0 overflow-hidden">
							<div
								v-for="slide in slideshow.slides"
								:key="slide.original_id"
								class="relative -ml-3 z-30 inline-block h-12 w-12 text-white border border-gray-light shadow-solid rounded-full">
								<div
									v-if="'post_feed' === slide.meta['ml-slider_type']"
									class="bg-blue border border-blue flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top"
									:original-title="__('Post Feed slide', 'ml-slider')"
									:title="__('Post Feed slide', 'ml-slider')">
									P
								</div>
								<div
									v-else-if="'external' === slide.meta['ml-slider_type']"
									class="bg-blue-light border border-blue-light flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top"
									:original-title="__('External slide', 'ml-slider')"
									:title="__('External slide', 'ml-slider')">
									E
								</div>
								<div
									v-else-if="!slide.id && !procesingImages"
									:style="{ 'animation-delay': [(500 * index * Math.random()) + 'ms'] }"
									class="gradient border border-white rounded-full h-full flex justify-center items-center text-red tipsy-tooltip-top"
									:original-title="sprintf(__('Image not found<br>%s', 'ml-slider'), slide.image)"
									:title="sprintf(__('Image not found<br>%s', 'ml-slider'), slide.image)">
									x
								</div>
								<div
									v-else-if="!slide.id"
									:style="{ 'animation-delay': [(500 * index * Math.random()) + 'ms'] }"
									class="gradient border border-white text-white rounded-full h-full"/>
								<img
									v-else :src="imageThumbnails[slide.id]"
									class="gradient border border-white rounded-full h-full inline-block"
									alt="">

							</div>
							<div class="relative -ml-3 z-50 inline-block bg-gray-lighter flex items-center justify-center text-lg text-gray-dark h-12 w-12 rounded-full shadow-solid border border-gray-light">
								{{ slideshow.slides.length }}
							</div>
						</div>
						<div v-else>
							{{ __('No slides found', 'ml-slider') }}
						</div>
					</template>
				</switch-single-input>
			</template>
		</template>
	</split-layout>
</div>
</template>

<script>
import { Image, Slideshow } from '../../api'
import Swal from 'sweetalert2'
import { default as SplitLayout } from '../layouts/_split'
import { default as SwitchSingle } from '../inputs/_switchSingle'
import { default as ActionButton } from '../inputs/_actionButton'
import { default as FileButton } from '../inputs/_fileButton'
import { default as fileDownload } from 'js-file-download'
import { DateTime  } from "luxon"
export default {
	components: {
		'split-layout' : SplitLayout,
		'switch-single-input' : SwitchSingle,
		'file-button' : FileButton,
		'action-button' : ActionButton,
	},
	computed: {
		slideshowsToImport() {
			if (!Object.keys(this.slideshowsListSelection).length) return []
			let ids = []
			Object.keys(this.slideshowsListSelection).forEach(slideshowId => {
				this.slideshowsListSelection[slideshowId] && ids.push(slideshowId)
			})
			return ids
		},
		missingImages() {
			// Only check slideshows they want to import
			return this.slideshowsToImport.filter(index => {
				if (!this.slideshowsList[index] || !this.slideshowsList[index].slides) return false
				let slides = this.slideshowsList[index].slides.filter(slide => {
					if (['external', 'post_feed'].indexOf(slide.meta['ml-slider_type']) > -1) return false
					return !slide.id
				})
				return slides.length
			})
		}
	},
	watch: {
		slideshowsList: {
			immediate: false,
			handler: function(slideshowsFromFile) {
				// TODO: check if any images are even missing IDs (only needed if they upload a new file)
				let images = []
				Object.keys(slideshowsFromFile).forEach(index => {
					if (this.slideshowsList[index].slides) {
						let imagesNames = this.slideshowsList[index].slides.map(slide => [slide.image, slide.image_alt])
						images.push(...imagesNames)
					}
				})
				if (images.length) {
					images = images.flat().filter(image => image.length)
					images = [...new Set(images)]
					images && this.findImages(images)
				}
			}
		},
	},
	props: {},
	data() {
		return {
			metadata: '',
			slideshowsList: {},
			slideshowsListSelection: {},
			imageThumbnails: {},
			processing: false,
			procesingImages: false,
			importing: false,
			userSawProcessingImagesMessage: false
		}
	},
	created() {},
	mounted() {},
	methods: {
		loadSlideshowsFromFile(data) {
			this.slideshowsList = {}
			this.slideshowsListSelection = {}

			// TODO: test with uploading different export file

			if (!data) {
				this.notifyWarning(
					'metaslider-importing-slideshows-bad-data',
					this.__('The data in this file does not appear to be valid.', 'ml-slider'), true)
			}
			this.processing = true

			try {
				data = JSON.parse(data)
				this.metadata = data.metadata
				delete data.metadata
				this.slideshowsList = data

				const slideshowsListSelection = {}
				for (const [key, slideshow] of Object.entries(this.slideshowsList)) {
					slideshowsListSelection[key] = true
				}
				this.slideshowsListSelection = slideshowsListSelection

				this.notifySuccess(
					'metaslider/all-slideshows-from-file-loaded',
					this.sprintf(
						this.__('Found %s slideshows', 'ml-slider'),
						Object.keys(this.slideshowsList).length
					), true)
			} catch (error) {
				this.slideshowsList = {}
				this.notifyError('metaslider/all-slideshows-from-file-error', error.message, true)
			}
			this.processing = false
		},
		findImages(filenames) {
			this.procesingImages = true
			Image.findIdFromFilename(JSON.stringify(filenames)).then(response => {
				const images = response.data.data

				// Create lookup table for thumbnails
				Object.keys(images).forEach(filename => {
					images[filename] && this.$set(this.imageThumbnails, images[filename].id, images[filename].thumbnail)
				})

				// Set the ID on the slides so they will be properly imported
				Object.keys(this.slideshowsList).forEach(slideshow => {
					if (this.slideshowsList[slideshow].slides) {
						Object.keys(this.slideshowsList[slideshow].slides).forEach(slide => {
							let filename = this.slideshowsList[slideshow].slides[slide].image
							let filenameAlt = this.slideshowsList[slideshow].slides[slide].image_alt
							if (images[filename]) {
								this.$set(this.slideshowsList[slideshow].slides[slide], 'id', images[filename].id)
							} else if (images[filenameAlt]) {
								this.$set(this.slideshowsList[slideshow].slides[slide], 'id', images[filenameAlt].id)
							}
						})
					}
				})
				this.procesingImages = false

				// Only show this if the user attempted to import while still processing
				if (this.userSawProcessingImagesMessage) {
					this.notifyInfo(
						'metaslider-finding-images-success',
						this.__('Image search complete', 'ml-slider'), true)
				}
			}).catch(error => {
				this.notifyError('metaslider/import-from-file-error', error, true)
			})
		},
		async importSlideshows() {
			if (this.procesingImages) {
				this.userSawProcessingImagesMessage = true
				this.notifyWarning(
					'metaslider-importing-slideshows-still-processing-images',
					this.__('We are still searching for your images. Please wait.', 'ml-slider'), true)
				return
			}

			if (!this.slideshowsToImport.length) {
				this.notifyWarning(
					'metaslider-importing-slideshows-no-slideshows',
					this.__('You have no slideshows to import', 'ml-slider'), true)
			}

			this.importing = true
			this.processing = true

			const slideshowData = []
			this.slideshowsToImport.forEach(key => {
				slideshowData.push(this.slideshowsList[key])
			})

			// If images are missing, give the user information and the choice to proceed
			const readyToImport = this.missingImages.length ? await Swal.fire({
				title: this.__('Some images are missing', 'ml-slider'),
				html: '<p class="text-base">' + this.__('When images are missing you will have to manually update or delete the slide after the import completes.', 'ml-slider') + '</p>',
				confirmButtonText: this.__('Continue', 'ml-slider'),
				showCancelButton: true,
				icon: 'warning',
				iconHtml: '<div class="dashicons dashicons-warning" style="transform: scale(3.5);"></div>',
				customClass: 'shadow-lg',
			}) : { value: true }

			// If the user clicked cancel
			if (!readyToImport.value) {
				this.importing = false
				this.processing = false
				return
			}

			this.notifyInfo(
				'metaslider-importing-slideshows',
				this.sprintf(
					this.__('Importing %s slideshows...', 'ml-slider'),
					this.slideshowsToImport.length
				), true)

			Slideshow.import(JSON.stringify([...slideshowData])).then(response => {
				this.notifySuccess(
					'metaslider-importing-slideshows-success',
					this.__('Import successful', 'ml-slider'), true)
			}).catch(error => {
				this.notifyError('metaslider/import-error', error, true)
			}).finally(() => {
				this.importing = false
				this.processing = false
			})
		},
		fileDate() {
			return DateTime.fromISO(new Date((this.metadata.date)).toISOString()).toFormat('yyyy/MM/dd')
		},
		randomBgColor() {
			const bgColors = ['bg-gray-dark', 'bg-gray-light', 'bg-gray-lighter', 'bg-gray-lightest']
			return bgColors[Math.floor(Math.random() * bgColors.length)]
		},
		slidesMissingImages(slideshow) {
			return this.slideshowsList[slideshow].slides.filter(slide => {
				if (['post_feed', 'external'].indexOf(slide.meta['ml-slider_type']) > -1) return false
				return !slide.id
			})
		},
		toggleSlideshowsToImport(state) {
			Object.keys(this.slideshowsListSelection).forEach(slideshow => this.slideshowsListSelection[slideshow] = state)
		},
	}
}
</script>
<style scoped>
.gradient {
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f1f1f1;
    background: linear-gradient(to right, #f1f1f1 8%, #f8fafc 38%, #f1f1f1 54%);
    background-size: 1000px 640px;
    position: relative;
}
@keyframes placeHolderShimmer {
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}
</style>
admin/assets/js/app/settings/pages/Export.vue000064400000024015151213254730015300 0ustar00<template>
  <div>
    <div v-if="needsSlideshows">
      <alert-warning-small :link="metasliderPage">
        <template slot="description">{{ __('No slideshows found.', 'ml-slider') }}</template>
        <template slot="link-text">{{ __('Create a new slideshow now', 'ml-slider') }}</template>
      </alert-warning-small>
    </div>
    <split-layout :loading="loading">
      <template slot="header">{{ __('Export', 'ml-slider') }}</template>
      <template slot="description">
        <ul class="export-instruction">
          <li>{{ __('If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the "Load" button.', 'ml-slider') }}</li>
          <li>{{ __('Choose the slideshows you wish to export.', 'ml-slider') }}</li>
          <li>{{ __('Click the "Export" button.', 'ml-slider') }}</li>
          <li>{{ __('A .json file will automatically be downloaded with all your slideshow data.', 'ml-slider') }}</li>
        </ul>
        <b>{{ __('A few notes on exporting slideshow images:', 'ml-slider') }}</b>
        <ul class="export-instruction">
          <li>{{ __('Your images need to be exported manually. Please upload them to the new website before importing these slideshows.', 'ml-slider') }}</li>
          <li>{{ __('Images will need to keep the same file names on the new site.', 'ml-slider') }} <a href="https://www.metaslider.com/how-to-export-and-import-slideshows-from-one-website-to-another"
           target="_blank">{{ this.__('Read our guide on exporting images.', 'ml-slider') }} <span class="dashicons dashicons-external"></span></a> </li>
        </ul>
      </template>
      <template slot="fields">
        <div v-if="needsSlideshows">
          <textbox-with-link link="" :new-tab="false">
            <template slot="header">{{ __('No slideshows found', 'ml-slider') }}</template>
          </textbox-with-link>
        </div>
        <action-button v-else @click="fetchAllSlideshows" :disabled="processing">
          <template slot="header">{{ __('Load slideshows', 'ml-slider') }}</template>
          <template slot="description">{{
              sprintf(__('You have %s slideshows that can be exported. Information about each slideshow will be presented below.', 'ml-slider'), totalSlideshows)
            }}
          </template>
          <template v-if="exporting" slot="button">{{ __('Processing...', 'ml-slider') }}</template>
          <template v-else-if="Object.keys(slideshowsList).length" slot="button">{{
              __('Refresh', 'ml-slider')
            }}
          </template>
          <template v-else-if="processing" slot="button">{{ __('Loading...', 'ml-slider') }}</template>
          <template v-else slot="button">{{ __('Load', 'ml-slider') }}</template>
        </action-button>
        <template v-if="Object.keys(slideshowsList).length || processing"
        :loading="processing">
          <action-button
              @click="exportSlideshows"
              :disabled="!slideshowsToExport.length">
            <template slot="header">{{
                sprintf(__('Export %s slideshows', 'ml-slider'), slideshowsToExport.length)
              }}
            </template>
            <template slot="description">
              {{ __('Select the slideshows you wish to export below, then press here to export them.', 'ml-slider') }}
            </template>
            <template slot="button">{{ __('Export', 'ml-slider') }}</template>
          </action-button>
          <switch-single-input
              v-if="Object.keys(slideshows).length > 10"
              :value="slideshowsToExport.length > 0"
              @change="toggleSlideshowsToExport($event)">
            <template slot="header">{{ __('Toggle all slideshows') }}</template>
            <template slot="description">{{ __('Select or deselect all slideshows') }}</template>
          </switch-single-input>
          <div v-for="slideshow in slideshows" :key="slideshow.id">
            <switch-single-input
                v-model.lazy="slideshowsList[slideshow.id]">
              <template slot="header">{{ slideshow.title }}</template>
              <template slot="subheader">
                <span :title="slideshow.modified_at_gmt">{{
                    sprintf(__('last updated: %s', 'ml-slider'), modifiedAt(slideshow))
                  }}</span>
              </template>
              <template slot="description">
                <div class="pl-3 inline-flex flex-row-reverse justify-end relative z-0 overflow-hidden">
                  <div
                      v-for="slide in slideshow.slides"
                      :key="slide.id"
                      class="relative -ml-3 z-30 inline-block h-12 w-12 text-white border border-gray-light shadow-solid rounded-full">
                    <div
                        v-if="'post_feed' === slide.meta['ml-slider_type']"
                        class="bg-blue border border-blue flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top"
                        :original-title="__('Post Feed slide', 'ml-slider')"
                        :title="__('Post Feed slide', 'ml-slider')">
                      P
                    </div>
                    <div
                        v-else-if="'external' === slide.meta['ml-slider_type']"
                        class="bg-blue-light border border-blue-light flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top"
                        :original-title="__('External slide', 'ml-slider')"
                        :title="__('External slide', 'ml-slider')">
                      E
                    </div>
                    <img
                        v-else :src="slide.thumbnail"
                        class="gradient border border-white rounded-full h-full inline-block"
                        alt="">
                  </div>
                  <div
                      class="relative -ml-3 z-50 inline-block bg-gray-lighter flex items-center justify-center text-lg text-gray-dark h-12 w-12 rounded-full shadow-solid border border-gray-light">
                    {{ slideshow.slides.length }}
                  </div>
                </div>
              </template>
            </switch-single-input>
          </div>
        </template>
      </template>
    </split-layout>
  </div>
</template>

<script>
import {Slideshow} from '../../api'
import {default as SplitLayout} from '../layouts/_split'
import {default as SwitchSingle} from '../inputs/_switchSingle'
import {default as ActionButton} from '../inputs/_actionButton'
import {default as TextBoxWithLink} from '../inputs/_textBoxWithLink'
import {default as WarningAlert} from '../inputs/alerts/_warningSmall'
import {default as fileDownload} from 'js-file-download'
import {mapState} from 'vuex'
import {DateTime} from "luxon"

export default {
  components: {
    'split-layout': SplitLayout,
    'switch-single-input': SwitchSingle,
    'action-button': ActionButton,
    'textbox-with-link': TextBoxWithLink,
    'alert-warning-small': WarningAlert
  },
  computed: {
    ...mapState({
      slideshows: state => state.slideshows.all,
      totalSlideshows: state => state.slideshows.totalSlideshows
    }),
    loading() {
      return this.totalSlideshows < 1
    },
    slideshowsToExport() {
      if (!Object.keys(this.slideshowsList).length) return []
      let ids = []
      Object.keys(this.slideshowsList).forEach(slideshowId => {
        this.slideshowsList[slideshowId] && ids.push(slideshowId)
      })
      return ids
    }
  },
  watch: {
    totalSlideshows: {
      immediate: true,
      handler: function (total) {
        // Auto load slideshows if there are less than 25.
        this.$nextTick(() => {
          total && total < 25 && this.fetchAllSlideshows()
        })
      }
    },
  },
  props: {
    needsSlideshows: {
      type: Boolean,
      default: false,
    },
  },
  data() {
    return {
      slideshowsList: {},
      processing: false,
      exporting: false,
    }
  },
  created() {
  },
  mounted() {
  },
  methods: {
    fetchAllSlideshows() {
      this.processing = true
      this.notifyInfo(
          'metaslider-loading-all-slideshows',
          this.sprintf(this.__('Loading %s slideshows...', 'ml-slider'), this.totalSlideshows, true)
      )

      this.$store.dispatch('slideshows/getAllSlideshows').then(() => {
        this.slideshowsList = {}
        const slideshowsList = {}
        this.slideshows.forEach(slideshow => {
          slideshowsList[slideshow.id] = true
        })
        this.slideshowsList = slideshowsList
        this.processing = false
        this.notifySuccess('metaslider/all-slideshows-loaded', this.__('All Slideshows loaded', 'ml-slider'), true)
      })
    },
    exportSlideshows() {
      if (!this.slideshowsToExport.length) {
        this.notifyWarning(
            'metaslider-exporting-slideshows-no-slideshows',
            this.__('You have no slideshows to export', 'ml-slider'), true)
      }
      this.exporting = true
      this.processing = true
      this.notifyInfo(
          'metaslider-exporting-slideshows',
          this.sprintf(this.__('Exporting %s slideshows...', 'ml-slider'), this.slideshowsToExport.length), true)

      Slideshow.export(this.slideshowsToExport).then(response => {
        const site = window.location.hostname.replace('.', '-')
        const time = new Date().toJSON()
        fileDownload(
            response.data,
            `metaslider-export-${site}-${time}.json`
        )
        this.notifySuccess(
            'metaslider-exporting-slideshows-success',
            this.__('Export successful', 'ml-slider'), true)
      }).catch(error => {
        this.notifyError('metaslider/export-error', error, true)
      }).finally(() => {
        this.exporting = false
        this.processing = false
      })
    },
    modifiedAt(slideshow) {
      return DateTime
          .fromSQL(slideshow.modified_at_gmt, {zone: 'utc'})
          .setLocale(metaslider.locale)
          .toRelative()
    },
    toggleSlideshowsToExport(state) {
      Object.keys(this.slideshowsList).forEach(slideshow => this.slideshowsList[slideshow] = state)
    },
  }
}
</script>
admin/assets/js/app/settings/pages/HelpCenter.vue000064400000010026151213254730016045 0ustar00<template>
<div>
	<split-layout :loading="loading">
		<template slot="header">{{ __('Help Center', 'ml-slider') }}</template>
		<template slot="description">{{ __('Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.', 'ml-slider') }}</template>
		<template slot="fields">
            <textbox-with-link link="https://www.metaslider.com/documentation/" class="mb-4" :new-tab="true">
                <template slot="header">{{ __('Documentation 📚', 'ml-slider') }}</template>
                <template slot="description">{{ __('Check out our documentation page for examples, and more information about what you can do with MetaSlider.', 'ml-slider') }}</template>
                <template slot="link-text">{{ __('Visit documentation', 'ml-slider') }}</template>
            </textbox-with-link>
            <textbox-with-link link="https://wordpress.org/plugins/ml-slider" class="mb-4" :new-tab="true">
                <template slot="header">{{ __('Free Basic Support 🚀', 'ml-slider') }}</template>
                <template slot="description">{{ __('For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.', 'ml-slider') }}</template>
                <template slot="link-text">{{ __('Visit wordpress.org', 'ml-slider') }}</template>
            </textbox-with-link>
            <textbox-with-link link="https://www.metaslider.com/support" class="mb-4" :new-tab="true">
                <template slot="header">{{ __('Paid Premium Support 🌟', 'ml-slider') }}</template>
                <template slot="description">{{ __('Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.', 'ml-slider') }}</template>
                <template slot="link-text">{{ __('Visit metaslider.com', 'ml-slider') }}</template>
            </textbox-with-link>
			<data-box :data="{foo: 'bar'}" :can-copy="true" class="lg:mt-10 hidden">
				<template slot="header">{{ __('Site Information', 'ml-slider') }}</template>
				<template slot="description">
                    {{ __('For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.', 'ml-slider') }}
                </template>
				<template slot="data-extra">
					<div class="border-2 border-gray border-dashed h-64"></div>
				</template>
			</data-box>
		</template>
	</split-layout>
</div>
</template>

<script>
import { default as SplitLayout } from '../layouts/_split'
import { default as TextSingle } from '../inputs/_textSingle'
import { default as SwitchSingle } from '../inputs/_switchSingle'
import { default as TextBoxWithLink } from '../inputs/_textBoxWithLink'
import { default as Data } from '../components/data'
import { Settings } from '../../api'
export default {
	components: {
		'data-box' : Data,
		'split-layout' : SplitLayout,
        'text-single-input' : TextSingle,
        'textbox-with-link' : TextBoxWithLink,
		'switch-single-input' : SwitchSingle,
	},
	props: {},
	data() {
		return {
			loading: true,
			settings: {
				license: '',
				optIn: false,
			}
		}
	},
	computed: {
	},
	created() {
		// Settings.getDefaults().then(({data}) => {
		// 	Object.keys(data.data).forEach(key => {
		// 		if (this.settings.hasOwnProperty(key)) {
		// 			this.settings[key] = data.data[key]
		// 		}
		// 	})
		// 	this.loading = false
		// }).catch(error => {
		// 	this.notifyError('metaslider/settings-load-error', error.response, true)
		// })
	},
	mounted() {},
	methods: {
		saveSettings() {
			const settings = JSON.stringify(this.settings)
			Settings.saveDefaults(settings).then(({data}) => {
				this.notifyInfo(
					'metaslider/settings-page-setting-saved',
					this.__('All settings saved', 'ml-slider'),
					true
				)
			}).catch(error => {
				this.notifyError('metaslider/settings-save-error', error.response, true)
			})
		}
	}
}
</script>
admin/assets/js/app/settings/SettingsPage.vue000064400000004054151213254740015317 0ustar00<script>
import { HelpCenter, Settings, Import, Export } from './pages'
import { EventManager } from '../utils'
export default {
	components: {
		'helpcenter': HelpCenter,
		'settings': Settings,
		'import': Import,
		'export': Export,
	},
	props: {
	},
	data() {
		return {
            component: 'settings',
            hasNotice: false,
		}
	},
	mounted() {
        this.hasNotice = document.querySelector('.updraft-ad-container') ? true : false
		// Set up the page height minus the toolbar
		const calculateHeaderPadding = () => {
			window.requestAnimationFrame(() => {
					const adminToolbar = document.getElementById('wpadminbar')
					const msToolbar = document.getElementById('ms-toolbar')
					const toolbarsHeight = 'absolute' !== window.getComputedStyle(adminToolbar).position ?
						msToolbar.clientHeight :
						adminToolbar.clientHeight + msToolbar.clientHeight
					this.hasNotice || document.getElementById('metaslider-settings-page')
						.setAttribute('style', `padding-top:${toolbarsHeight}px!important`)
					document.getElementById('metaslider-ui')
						.setAttribute('style', `height:calc(100vh - ${adminToolbar.clientHeight}px)!important`)
			})
		}
		calculateHeaderPadding()
		window.addEventListener('resize', calculateHeaderPadding)

		EventManager.$on('metaslider/open-settings-page', data => {
			if (false === 'render' in data) {
				this.notifyError('metaslider/open-settings-page', this.__('Failed to open the settings page...', 'ml-slider'))
				return false
			}

			const filename = 'filename' in data ? data.filename : 'Name not found'
			this.notifyInfo(
				'metaslider/open-settings-page',
				this.__('Opening settings page...', 'ml-slider') + ' (' + filename + ')'
			)
			this.component = data
		})
	},
	methods: {
		loadPage(page) {
			if (Object.keys(this.$options.components).includes(page)) {
				this.component = page
				return
			}
			this.notifyError(
				'metaslider/open-settings-page',
				this.sprintf(this.__('Page not found: %s', 'ml-slider'), page)
			)
		}
	},
	render() {
		return this.$scopedSlots.default({})
	}
}
</script>
admin/assets/js/app/settings/layouts/_split.vue000064400000001550151213254740015712 0ustar00<template>
<div class="mt-6 md:mt-0">
	<div class="md:grid md:grid-cols-3 md:gap-6">
		<div class="md:col-span-1">
			<div class="px-0">
				<h3 class="text-lg font-medium m-0 leading-6 text-gray-darkest">
					<slot name='header'/>
				</h3>
				<p class="m-0 mt-1 text-sm leading-5 text-gray-darker">
					<slot name='description'/>
				</p>
				<p v-if="this.$slots.description2" class="m-0 font-bold mt-2 text-sm leading-5 text-gray-darker">
					<slot name='description2'/>
				</p>
				<p v-if="this.$slots.description3" class="m-0 italic mt-2 text-sm leading-5 text-gray-darker">
					<slot name='description3'/>
				</p>
			</div>
		</div>
		<div class="mt-5 md:mt-0 md:col-span-2">
			<slot name="fields"/>
		</div>
	</div>
</div>
</template>

<script>
export default {
	props: {},
	data() {
		return {}
	},
	created() {},
	mounted() {},
	methods: {}
}
</script>
admin/assets/js/app/slides/Slide.vue000064400000000475151213254740013410 0ustar00<script>
// import { Caption } from '.'
import { EventManager } from '../utils'
export default {
	// Using inline-template for now
	// components: {
	// 	'metaslider-caption': Caption
	// },
	props: {
		id: {
			type: [Number, String],
			default: null
		}
	},
	data() {
		return {}
	},
	mounted() {
	
	}
}
</script>
admin/assets/js/app/slides/SlideViewer.vue000064400000007623151213254740014574 0ustar00<script>
import { EventManager } from '../utils'
export default {
	props: {
	},
	data() {
		return {}
	},
	mounted() {
		let $ = window.jQuery
		// This code was ported from admin.js and will be refactored in a later branch
		// Drag and drop slides, update the slide order on drop (ported from admin.js)
		// TODO: remove table layout for more flexability (grid drag & drop)
		var metaslider_sortable_helper = function(e, ui) {
            ui.children().each(function() {
                $(this).width($(this).width());
            });
            return ui;
        };

        // Slide can't be edited in trashed slides screen
        $('.metaslider .ms-edit-slideshow--trashed-slides table#metaslider-slides-list td.col-2').on('click', function () {
            EventManager.$emit('metaslider/cant-edit-trashed-slide');
        });

        // Disable drag and drop slides reorder in trashed slides screen
        if(!$('#post-body').hasClass('ms-edit-slideshow--trashed-slides')) {

            // Reorder slides with drag and drop
            $(".metaslider table#metaslider-slides-list > tbody").sortable({
                helper: metaslider_sortable_helper,
                handle: "td.col-1",
                start: (e, ui) => {
                    $('#metaslider-slides-list').find('textarea.wysiwyg').each(function() {
                        tinymce.get($(this).attr('id')).destroy();
                        $(this).attr('disabled', true);
                    });
                },
                stop: (e, ui) => {
                    $('#metaslider-slides-list').find('textarea.wysiwyg').each(function() {
                        const slide_type = $(this).data('type');
                        const slide_id = $(this).attr('id');

                        if (slide_type.length && slide_id.length) {
                            const tinymce_data = metaslider.tinymce.find(obj => obj.type === slide_type);

                            if (typeof tinymce_data === 'undefined') {
                                console.error(`${slide_type} was not found in metaslider.tinymce object!`);
                            } else {
                                $(this).attr('disabled', false);
                                tinymce.init({ 
                                    ...{ selector: `#${slide_id}` },
                                    ...tinymce_data.configuration
                                });
                            }
                        }
                    });

                    EventManager.$emit('metaslider/save')
                }
            });

            // Switch tabs within a slide on space press
            $('.metaslider-ui').on('keypress', 'ul.tabs > li > a', function(event) {
                if (32 === event.which) {
                    event.preventDefault();
                    $(':focus').trigger('click');
                }
            });

            // Event to switch tabs within a slide
            $(".metaslider-ui").on('click', 'ul.tabs > li > a', function(event) {
                event.preventDefault();
                var tab = $(this);

                // Hide all the tabs
                tab.parents('.metaslider-ui-inner')
                .children('.tabs-content')
                .find('div.tab').hide();
                
                // Show the selected tab
                tab.parents('.metaslider-ui-inner')
                .children('.tabs-content')
                .find('div.' + tab.data('tab_id')).show();

                // Add the class
                tab.parent().addClass("selected")
                .siblings().removeClass("selected");
            });
        }
		
		$(".metaslider-ui").on('change', "input.width, input.height", function(e) {
            $(".metaslider table#metaslider-slides-list").trigger('metaslider/size-has-changed', {
                width: $("input.width").val(),
                height: $("input.height").val()
            });
        });
	}
}
</script>
admin/assets/js/app/slides/parts/Caption.vue000064400000015255151213254740015100 0ustar00<template>
	<div class="row caption mb-0">
		<div class="flex justify-between">
			<label class="mr-4 caption-label">
				{{ __("Caption", "ml-slider") }}
				<span class="dashicons dashicons-info tipsy-tooltip-top" :title="__('Enter text that will appear with your image slide.', 'ml-slider')" style="line-height: 1.2em;"></span>
			</label>
			<div
				:aria-labelledby="'caption_source_' + $parent.id"
				role="radiogroup"
				class="mb-1 mr-1">
				<div
					v-for="(caption, source) in sources"
					:key="source"
					class="whitespace-no-wrap inline-block mb-1 px-1">
					<input
						:id="source + '-' + $parent.id"
						:value="source"
						:name="'attachment[' + $parent.id + '][caption_source]'"
						v-model="selectedSource"
						class="m-0"
						type="radio"
						@click="maybeFocusTextarea">
					<label
						:for="source + '-' + $parent.id"
						:title="language[source]"
						class="m-0 truncate">
						{{ language[source] }}
					</label>
				</div>
			</div>
		</div>
		<textarea
			v-if="selectedSource !== 'override'"
			:value="!sources[selectedSource].length ? __('No default was found', 'ml-slider') : sources[selectedSource]"
			:title="__('Automatically updates directly from the WP Media Library', 'ml-slider')"
			class="tipsy-tooltip-top"
			readonly/>
		<textarea
			v-if="selectedSource === 'override'"
			v-model="textareaContent"
			:title="__('You may use HTML here', 'ml-slider')"
			:id="'caption_override_' + $parent.id"
			:name="'attachment[' + $parent.id + '][post_excerpt]'"
			class="tipsy-tooltip-top wysiwyg"
			data-type="image"/>
	</div>
</template>

<script>
import { EventManager } from '../../utils'
export default {
	props: {
		imageCaption: {
			type: [String],
			default: ''
		},
		imageDescription: {
			type: [String],
			default: ''
		},
		override: {
			type: [String],
			default: ''
		},
		captionSource: {
			type: [String],
			default: 'image-caption'
		}
	},
	data() {
		return {
			sources: {
				'image-caption': this.cleanupQuotes(this.imageCaption),
				'image-description': this.cleanupQuotes(this.imageDescription),
				'override': this.override
			},
			language: {},
			selectedSource: '',
			editorInstance: false,
			editorContent: null,
			textareaContent: ''
		}
	},
	created() {
		this.selectedSource = this.captionSource ? this.captionSource : 'image-caption'
	},
	mounted() {
		// When an image is updated, check that the data is fresh (via Vue or jQuery)
		EventManager.$on('metaslider/image-meta-updated', (slides, metadata) => this.updateMetadata(slides, metadata))
		window.jQuery(window).on('metaslider/image-meta-updated', (event, slides, metadata) => this.updateMetadata(slides, metadata))

		// Set specific wording for the options
		this.language = {
			'image-caption': this.__('Media caption', 'ml-slider'),
			'image-description': this.__('Media description', 'ml-slider'),
			'override': this.__('Manual entry', 'ml-slider')
		}

		this.textareaContent = this.convertStyleAttributes(this.sources['override']);
	},
	methods: {
		maybeFocusTextarea(event) {
			// Happens on click only
			'override' === event.target.defaultValue &&
				setTimeout(() => document.getElementById('caption_override_' + this.$parent.id).focus(), 300)
		},
		updateMetadata(slides, metadata) {
			console.log(slides)
			if (slides.includes(this.$parent.id)) {
				this.sources['image-caption'] = metadata.caption
				this.sources['image-description'] = metadata.description
			}
		},
		initializeTinyMCE() {
			this.$nextTick( function () {
				if (!this.editorInstance) {

					if (typeof tinymce === 'undefined') {
						console.error('TinyMCE is not defined!');
						return;
					}

					const id = `caption_override_${this.$parent.id}`;
					
					// Add Image data to metaslider.tinymce
					if (typeof metaslider.tinymce.find(obj => obj.type === 'image') === 'undefined') {
						metaslider.tinymce.push({
							type: 'image',
							configuration: {
								toolbar: [
									'undo redo bold italic forecolor link unlink alignleft aligncenter alignright styles code'
								],
								menubar: false,
								plugins: 'code link',
								branding: false,
								promotion: false,
								height: 240,
								preview_styles: false,
								forced_root_block: 'div',
								convert_urls: false,
								setup: function (editor) {
									editor.on('input', function () {
										updateContent(editor);
									});

									editor.on('ExecCommand', function () {
										updateContent(editor);
									});

									const updateContent = function (editor) {
										const el = document.getElementById(editor.id);
										if (el) {
											el.value = editor.getContent();
										}
									}
								}
							}
						});

					}

					tinymce.init({
						...{ 
							selector: `#${id}`,
							init_instance_callback: (editor) => {
								if (this.editorContent) {
									const updateContent = function (editor) {
										const el = document.getElementById(editor.id);
										if (el) {
											el.value = editor.getContent();
										}
									}

									// Update editor content
									editor.setContent(this.editorContent);
									// Update textarea
									updateContent(editor);
								}
							}
						},
						...metaslider.tinymce.find(obj => obj.type === 'image').configuration
					});
					
					this.editorInstance = true;
				}
			});
		},
		destroyTinyMCE() {
			if (this.editorInstance) {
				const id = `caption_override_${this.$parent.id}`;

				// Save current content to use later if switch back to caption override
				this.editorContent = tinymce.get(id).getContent();

				tinymce.get(id).destroy();
				this.editorInstance = false;
			}
		},
		// Avoid Vue stripping style attribute
		// e.g. style=\"color: rgb(0, 0, 0);\" => style="color: rgb(0, 0, 0);" 
		convertStyleAttributes(html) {
			const regex = /style=\\(".*?"|'.*?')/g;
			return html.replace(regex, match => match.replace(/\\(?="|')/g, ''));
		},
		/**
		 * Avoid Vue converting single quotes into &#039; 
		 * and adding inverted slash for sinle and double quotes
		 * 
		 * @since 3.80
		 * 
		 * Replace: \&#039; with single quote, \' with single quote, and \" with double quote
		 */
		cleanupQuotes(html) {
			const regex = /\\&#039;|\\'|\\\"/g;
			return html.replace(regex, match => {
				// 
				if (match === '\\&#039;' || match === "\\'") {
					return "'";
				} else if (match === '\\"') {
					return '"';
				}
			});
		},
	},
	watch: {
		selectedSource(newSource, oldSource) {

			if (typeof tinymce === 'undefined') {
				console.error('TinyMCE is not defined!');
				return;
			}

			if (newSource === 'override' && oldSource !== 'override') {
				this.initializeTinyMCE();
			} else if (newSource !== 'override' && oldSource === 'override') {
				this.destroyTinyMCE();
			}
		}
	}
}
</script>
admin/assets/js/app/slides/index.js000064400000000546151213254740013273 0ustar00import SlideViewer from './SlideViewer.vue'
import Slide from './Slide.vue'
import Caption from './parts/Caption.vue'
import External from './external/External.vue'
import PreviewImport from './import/PreviewImport.vue'
import DragDropImport from './import/DragDropImport.vue'

export { SlideViewer, Slide, Caption, PreviewImport, DragDropImport, External }
admin/assets/js/app/slides/import/PreviewImport.vue000064400000002643151213254740016475 0ustar00<script>
import { EventManager } from '../../utils'
import { Axios } from '../../api'
import Swal from 'sweetalert2'
import QS from 'qs'
import { mapGetters } from 'vuex'

export default {
	mounted() {
		EventManager.$on('import-notice', themeId => {
			this.showNotice(themeId)
		})
	},
	computed: mapGetters({
		current: 'slideshows/getCurrent'
	}),
	methods: {
		showNotice(themeId) {
			Swal.fire({
				title: this.__('Import Slides', 'ml-slider'),
				confirmButtonText: this.__('Import slides', 'ml-slider'),
				showCancelButton: true,
				icon: 'info',
				iconHtml: '<div class="dashicons dashicons-megaphone" style="transform: scale(3.5);"></div>',
				customClass: 'shadow-lg',
				html: '<p class="text-base">' + this.__('You currently do not have any slides to preview. If you want, we can import some image slides for you.', 'ml-slider') + '</p>',
				showLoaderOnConfirm: true,
				allowOutsideClick: () => !Swal.isLoading(),
				preConfirm: () => {

					// Make the request to import images
					return Axios.post('import/images', QS.stringify({
						action: 'ms_import_images',
						slideshow_id: this.current.id,
						theme_id: themeId
					})).catch(error => {
						Swal.showValidationMessage(error)
					})
				}
			}).then(result => {

				// User didnt cancel (esc btn, click cancel, etc)
				if (!result.dismiss) {
					window.location.reload(true)
				}
			})
		}
	},
	render: () => {
		return true
	}
}
</script>
admin/assets/js/app/slides/import/DragDropImport.vue000064400000010777151213254740016565 0ustar00<template>
	<div id="ms-image-drag-drop">
		<span v-if="!dragAndDropCapable">{{ __('Drag and drop interface not available.', 'ml-slider') }}</span>
		<form v-show="dragAndDropCapable">
			<div
				ref="fileform"
				:class="{'ms-drag-hovering': isDragHovering || uploadPercentage > 0, 'has-error': error}"
				class="ms-drag-drop"
				@dragenter="isDragHovering = true"
				@dragleave="isDragHovering = false">
				<div
					v-if="uploadPercentage > 0"
					class="ms-upload-progress">
					<div class="ms-progress">
						<div
							:style="{width: uploadPercentage + '%'}"
							class="ms-progress-bar"/>
						<span>{{ __('Crunching...', 'ml-slider') }}</span>
					</div>
				</div>
			</div>
			<span v-if="uploadPercentage === 0 && !error">{{ __('Drop images here', 'ml-slider') }}</span>
			<span
				v-if="error"
				v-text="error"/>
		</form>
	</div>
</template>

<script>
import { Axios } from '../../api'

export default {

	// TODO: perhaps use this to allow a file or package to be dropped (for future export/import)
	// props: [],
	data() {
		return {
			dragAndDropCapable: false,
			files: [],
			uploadPercentage: 0,
			isDragHovering: false,
			error: false
		}
	},

	mounted() {
		const dragDropEvents = [
			'drag', 'dragstart', 'dragend', 'dragover', 'dragenter', 'dragleave', 'drop'
		]
		this.dragAndDropCapable = this.determineDragAndDropCapable()

		if (this.dragAndDropCapable) {

			// Add a listener for each event to stop browser default
			dragDropEvents.forEach(event => {
				this.$refs.fileform.addEventListener(event, e => {
					e.preventDefault()
					e.stopPropagation()
				})
			})

			// Add an event listener to upload when dropping on the form
			this.$refs.fileform.addEventListener('drop', this.attachDropEvent)
		}
	},
	methods: {

		attachDropEvent(event) {
			this.isDragHovering = true

			// Add only images to the local files array
			for (let i = 0; i < event.dataTransfer.files.length; i++) {
				/\.(jpe?g|png|gif)$/i.test(event.dataTransfer.files[i].name) && this.files.push(event.dataTransfer.files[i])
			}

			// If no files found reset the UI and show an error
			if (!this.files.length) {
				this.isDragHovering = false
				this.error = this.__('No valid files found', 'ml-slider')
			}

			// Upload right away
			this.files.length && this.submitFiles()
		},

		// Determines if the drag and drop functionality is in the window
		determineDragAndDropCapable() {
			let div = document.createElement('div')
			return (('draggable' in div) ||
					('ondragstart' in div && 'ondrop' in div)) &&
					'FormData' in window &&
					'FileReader' in window
		},

		// Handles uploading
		submitFiles() {
			let formData = new FormData()
			for (let key in this.files) {
				formData.append('files[' + key + ']', this.files[key])
			}

			// Start the uploader animation
			this.uploadPercentage = 1

			// Add param for old WP
			formData.append('action', 'ms_import_images')

			this.files.length && Axios.post('import/images', formData, {
				headers: {
					'Content-Type': 'multipart/form-data'
				},
				onUploadProgress: progressEvent => {
					// Leave the last 20% for the final confirmation from the server
					let percentage = parseInt(Math.round((progressEvent.loaded * 100) / progressEvent.total)) - 20
					this.uploadPercentage = percentage > 1 ? percentage : 1
				}
			}).then(response => {
				console.info('MetaSlider: ', response)
				this.uploadPercentage = 100

				// Refresh to show added slides
				window.location.reload(true)
			}).catch(error => {
				this.uploadPercentage = 0
				this.isDragHovering = false
				this.$refs.fileform.removeEventListener('drop', this.attachDropEvent)
				this.error = this.getErrorMessage(error.response)
				this.notifyError('metaslider/drag-and-drop-error', error, true)
			})
		}
	}
}
</script>

<style lang="scss" scoped>
	@import '../../assets/styles/globals.scss';
	@import '../../assets/styles/mixins.scss';
	#ms-image-drag-drop > form {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		height: 100px;
		margin: auto;
		margin-top: 1rem;
		> div {
			display: flex;
			justify-content: center;
			align-items: center;
			position: absolute;
			top: 0;
			left:0;
			color: #a0a5aa;
			background: transparent;
			transition: all 0.2s ease-in-out;
			font-size: 1.3em;
			width: 100%;
			height: 100%;
			border: 4px dashed #b4b9be;
			&.ms-drag-hovering {
				background: #eee;
				height: 200%;
				border-color: $blue-light;
			}
			&.has-error {
				border-color: $red !important;
				~ span {
					color: $red;
				}
			}
		}
	}
</style>
admin/assets/js/app/slides/external/MediaContainer.vue000064400000012032151213254740017044 0ustar00<template>
	<div style="height:100%">
		<div class="media-toolbar">
			<div class="media-toolbar-secondary">
				<label
					for="media-attachment-filters"
					class="screen-reader-text">{{ __('Filter by type', 'ml-slider') }}</label>
				<select
					v-if="$parent.filters.length"
					class="attachment-filters"
					style="min-width:150px">
					<option value="all">{{ __('All media items', 'ml-slider') }}</option>
					<option
						v-for="(filter, value) in $parent.filters"
						:key="value"
						:value="value"
					>{{ filter }}</option>
				</select>
				<span class="spinner"/>
			</div>
			<div class="media-toolbar-primary search-form">
				<!-- TODO: make search optional -->
				<label
					for="media-search-input"
					class="screen-reader-text">{{ __('Search Unsplash API', 'ml-slider') }}</label>
				<input
					id="search-unsplash"
					v-model="$parent.searchTerm"
					:placeholder="__('Search unsplash.com...', 'ml-slider')"
					type="search"
					class="search"
					@focus="notifyInfo('metaslider/unsplash-search-focused', 'Unsplash search was focused')"
					@keyup="searchByTerm"
					@search="searchByTerm">
			</div>
		</div>

		<div
			v-if="loading && !$parent.errorMessage"
			class="attachments ui-sortable ui-sortable-disabled">
			<span class="ms-full-loading">
                <svg class="w-6 ms-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" />
                </svg>
			</span>
		</div>
		<div
			v-if="$parent.errorMessage"
			class="external-api-error">{{ $parent.errorMessage }}
		</div>
		<ul
			v-if="!loading && !$parent.errorMessage"
			tabindex="-1"
			class="attachments ui-sortable ui-sortable-disabled">
			<slot name="media-list"/>
			<li
				v-if="$parent.canLoadMore"
				class="attachment ms-load-more-api">
				<div class="attachment-preview">
					<span
						v-if="$parent.loadingMore"
						class="ms-loading-more-images">
                        <svg class="w-6 ms-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" />
                        </svg>
					</span>
					<button
						v-else
						class="ms-load-more-button"
						@click="$parent.loadMore">
						<svg class="w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
                        </svg>
						<span>{{ __('Load more', 'ml-slider') }}</span>
					</button>
				</div>
			</li>
		</ul>

		<div class="media-sidebar">
			<div class="ms-api-sidebar">
				<div class="ms-api-photo-details">
					<slot name="sidebar"/>
				</div>
				<div class="ms-api-copyright">
					<slot name="copyright"/>
				</div>
			</div>
		</div>
	</div>
</template>

<script>
import { Helpers as _ } from '../../utils'

export default {
	// name: 'MediaContainer',
	props: {},
	data() {
		return {}
	},
	computed: {
		loading() {
			return this.$parent.loadingFresh
		}
	},
	mounted() {

		// Calculte the column width in case WP skips over it
		let columns = document.querySelector('.media-frame-content').dataset.columns
		if (!columns) {
			let width = document.querySelector('.attachments-browser .attachments').offsetWidth / 150
			document.querySelector('.media-frame-content').dataset.columns = Math.round(width)
		}

		// add an eve
	},
	methods: {
		searchByTerm: _.debounce(function() {
			this.$parent.searchByTerm()
		}, 500)
	}
}
</script>

<style lang="scss">
@import '../../assets/styles/globals.scss';
@import '../../assets/styles/mixins.scss';
.ms-load-more-api {
	.ms-load-more-button {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		left: 0;
		flex-direction: column;
		width: 100%;
		height: 100%;
		border: 0;
		padding: 0;
		font-size: 1.1em;
		cursor: pointer;
		&:hover {
			background: transparent;
		}
	}
}
.ms-loading-more-images {
	position: absolute;
	top: 0;
	left: 0;
	background: white;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
.external-api-error {
	padding: 1rem;
    color: $red;
    font-size: 1.2em;
}
.ms-api-sidebar {
	height: 100%;
	display: flex;
    flex-direction: column;
	justify-content: space-between;
	.details {
		a {
			box-shadow: none;
		}
	}
	.ms-api-copyright p {
		margin-bottom: 0;
		color: #aaa;
		a {
			color: #aaa;
			&:hover, &:active, &:focus {
				color: $wp-links;
			}
		}
	}
}
.ms-full-loading {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
</style>
admin/assets/js/app/slides/external/Unsplash.vue000064400000017522151213254750015771 0ustar00<template>
	<media-container>
		<!-- TODO: add loading -->

		<template slot="media-list">
			<li
				v-for="photo in photos"
				:aria-label="sprintf(__('Photo by %s', 'ml-slider'), photo.user.name)"
				:key="photo.id"
				:class="{
					selected: selected === photo,
					details: selected === photo
				}"
				class="attachment save-ready"
				tabindex="0"
				role="checkbox"
				aria-checked="false"
				@click="selected = selected === photo ? {} : photo">
				<div
					:class="photo.orientation"
					class="attachment-preview js--select-attachment type-image subtype-jpeg">
					<div class="thumbnail">
						<div class="centered">
							<img
								:alt="sprintf(__('Photo by %s', 'ml-slider'), photo.user.name)"
								:src="photo.urls.thumb"
								draggable="false">
						</div>
					</div>
				</div>
				<button
					type="button"
					class="check"
					tabindex="-1">
					<span class="media-modal-icon"/>
					<span class="screen-reader-text">{{ __('Deselect', 'ml-slider') }}</span>
				</button>
			</li>
		</template>

		<template slot="sidebar">
			<div v-if="selected.id">
				<div
					tabindex="0"
					class="attachment-details">
					<h2>{{ __('Attachment Details', 'ml-slider') }}</h2>
					<div class="attachment-info">
						<div class="thumbnail thumbnail-image">
							<img
								:src="selected.urls.small"
								:alt="fileName"
								draggable="false">
						</div>
						<div class="details">
							<div class="filename">{{ fileName }}</div>
							<div class="dimensions">
								{{ sprintf(
									_x('%s by %s pixels', '1000 by 1000 pixels', 'ml-slider'),
									selected.width,
									selected.height
								) }}
							</div>
							<a
								:href="selected.links.html"
								target="_blank">{{ __('view original', 'ml-slider') }}</a>
						</div>
					</div>
					<div class="ms-api-user">
						<img
							class="rtl:mr-0 rtl:ml-4"
							:src="selected.user.profile_image.medium">
						<div class="ms-profile-data">
							<div class="ms-profile-details">
								<h3>{{ selected.user.name }}</h3>
								<p
									class="ms-user-location"
									v-html="selected.user.location"/>
								<div
									v-if="selected.user.bio"
									class="ms-user-bio"
									v-html="selected.user.bio"/>
							</div>
							<ul class="ms-profile-meta">
								<li v-if="selected.user.username">
									<a
										:href="selected.user.links.html"
										:title="selected.user.links.html"
										target="_blank"
										class="ms-profile-username">{{ __('Profile', 'ml-slider') }}
									</a>
								</li>

								<li
									v-if="selected.user.portfolio_url"
									class="ms-user-portfolio-url">
									<a
										:href="selected.user.portfolio_url"
										:title="selected.user.portfolio_url"
										target="_blank">{{ __('Portfolio', 'ml-slider') }}
									</a>
								</li>
							</ul>
						</div>
					</div>
					<label class="setting">
						<span class="name">{{ __('Title', 'ml-slider') }}</span>
						<input
							v-model="upload.title"
							type="text">
					</label>
					<label class="setting">
						<span class="name">{{ __('Caption', 'ml-slider') }}</span>
						<textarea v-model="upload.caption"/>
					</label>
					<label class="setting">
						<span class="name">{{ __('Alt Text', 'ml-slider') }}</span>
						<input
							v-model="upload.alt"
							type="text">
					</label>
					<label class="setting">
						<span class="name">{{ __('Description', 'ml-slider') }}</span>
						<textarea v-model="upload.description"/>
					</label>
					<label class="quality setting">
						<span class="name">{{ __('Quality', 'ml-slider') }}</span>
						<select
							v-model="upload.quality"
							class="alignment">
							<option
								v-for="quality in qualityOptions"
								:key="quality"
								:value="quality">
								{{ quality.charAt(0).toUpperCase() + quality.slice(1) }}
							</option>
						</select>
					</label>
				</div>
			</div>
		</template>

		<template slot="copyright">
			<p>
				{{ __('All photos published on Unsplash can be used for free.', 'ml-slider') }} <a
					target="_blank"
					href="https://unsplash.com/license">{{ __('view license', 'ml-slider') }}</a>
			</p>
		</template>
	</media-container>
</template>

<script>
import { Unsplash } from '../../api'
import MediaContainer from './MediaContainer.vue'

export default {
	components: {
		MediaContainer
	},
	props: {},
	data() {
		return {
			errorMessage: '',
			canLoadMore: false,
			loadingFresh: true,
			loadingMore: true,
			searchTerm: '',
			page: 1,
			photos: [],
			selected: { id: null },
			filters: {},
			mediaButton: {},
			qualityOptions: ['raw', 'full', 'regular'],
			upload: {
				title: '',
				caption: '',
				alt: '',
				description: '',
				quality: 'full' // TODO: maybe we persist this in file data?
			}
		}
	},
	computed: {
		fileName() {
			// Not sure if we can get the real file name without a second call on the photo id. likely not important
			return this.selected.id
				? this.selected.user.name.replace(' ', '-').toLowerCase() + '-' + this.selected.id + '-unsplash.jpg'
				: ''
		}
	},
	watch: {
		selected(photo) {
			this.upload.caption = photo.user ? this.sprintf(
				this.__('Photo by %s on Unsplash', 'ml-slider'),
				photo.user.name
			) : this.__('Photo on Unsplash', 'ml-slider')
		}
	},
	mounted() {
		this.notifyInfo('metaslider/unsplash-tab-opened', this.__('Opening Unsplash tab...', 'ml-slider'))
		this.loadFreshImages()
	},
	destroyed() {
		this.notifyInfo('metaslider/unsplash-tab-closed', this.__('Unsplash tab closed', 'ml-slider'))
	},
	methods: {
		async getImages() {
			this.errorMessage = ''
			const { data } = await Unsplash.photos(this.page, this.searchTerm)

			// If no photos were found, let them know
			if (!data.data.length) throw this.__('No photots found.', 'ml-slider')

			// Use this to avoid errors when duplicate images are being sent back
			data.data.forEach(photo => {
				this.photos.some(existingPhoto => {
					return existingPhoto.id === photo.id
				}) || this.photos.push(photo)
			})
			// this.photos.push(...data.data)
		},
		loadFreshImages() {
			this.readyToLoad(false)
			this.page = 1
			this.photos = []
			this.selected = { id: null }
			this.getImages()
				.then(() => this.readyToLoad())
				.catch(error => {
					this.errorMessage = error
					this.loadingFresh = false
					this.throwError(error)
				})
		},
		async loadMore() {
			this.page++
			this.loadingMore = true

			// The UX feels clunky if the load is immediate
			await new Promise(resolve => setTimeout(resolve, 1000))
			this.getImages()
				.then(() => this.readyToLoad())
				.catch(() => {
					// Most likely there are no more images
					this.canLoadMore = false
				})
		},
		download() {
			return Unsplash.download(this.selected.urls[this.upload.quality], this.selected.id)
		},
		fetchFilters() {
			// TODO: Call to get available filters (pro override with more?)
			// Not sure how to do this. Maybe we can offer 10 common words?
			// or grab the user's categories?
			this.filters = {}
		},
		searchByTerm() {
			this.loadFreshImages()
		},
		readyToLoad(status = true) {
			this.canLoadMore = status
			this.loadingMore = !status
			this.loadingFresh = !status
		}
	}
}
</script>

<style lang="scss">
.ms-api-user {
	clear: both;
	border-bottom: 1px solid #ddd;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	img {
		border-radius: 50%;
		width: 64px;
		height: 64px;
		min-width: 64px;
		margin-right: 1rem;
	}
	h3 {
		margin: 0;
		line-height: 1.1;
	}
	.ms-user-location {
		color: #aaa;
		font-size: 0.9em;
		margin: 0;
		line-height: 1.3;
	}
	.ms-user-bio {
		margin-top: 0.3em;
		line-height: 1.1;
		font-size: 1em;
		margin-bottom: 0.4rem;
	}
	.ms-profile-data {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.ms-profile-meta {
		display: flex;
		margin: 0;
		li {
			margin-right: 0.5em;
			margin-bottom: 0;
		}
	}
}
</style>
admin/assets/js/app/slides/external/External.vue000064400000016310151213254750015750 0ustar00<template>
	<div class="attachments-browser external-media-importer">
		<div
			v-if="downloading"
			class="ms-hero-status">
			<div
				v-if="uploadPercentage > 0"
				class="ms-upload-progress">
				<div class="ms-upload-image">
					<span
						:aria-label="$refs['external-api'].fileName"
						tabindex="0"
						role="checkbox"
						aria-checked="false"
						style="width:150px;height:150px"
						class="attachment save-ready">
						<div class="attachment-preview js--select-attachment type-image subtype-jpeg portrait">
							<div class="thumbnail">
								<div class="centered">
									<img
										:src="$refs['external-api'].selected.urls.regular"
										:alt="$refs['external-api'].fileName"
										draggable="false">
								</div>
							</div>
						</div>
					</span>
				</div>
				<div class="ms-progress">
					<div
						:style="{width: uploadPercentage + '%'}"
						class="ms-progress-bar"/>
					<span class="text-lg">{{ downloadingMessage ? downloadingMessage : __('Crunching...', 'ml-slider') }}</span>
				</div>
			</div>
		</div>
		<component
			v-show="!downloading"
			ref="external-api"
			:is="component">
			<template slot="search-tools">
				<slot name="search-tools"/>
			</template>
		</component>
	</div>
</template>

<script>
import { EventManager } from '../../utils'
import { Axios } from '../../api'
import unsplash from './Unsplash.vue'

export default {
	components: {
		unsplash
	},
	props: {
		source: {
			type: [String],
			default: 'unsplash'
		},
		slideshowId: {
			type: [String, Number],
			default: null
		},
		slideId: {
			type: [String, Number],
			default: null
		},
		slideType: {
			type: [String],
			default: 'image'
		}
	},
	data() {
		return {
			page: 1,
			component: null,
			mediaButton: {},
			ourMediaButton: {},
			downloading: false,
			uploadPercentage: 1,
			downloadingMessage: ''
		}
	},
	watch: {
		downloading() {
			this.ourMediaButton.disabled = this.downloading
			if (this.downloading) window.metaslider.about_to_reload = true
		}
	},
	created() {
		// This can support other APIs, hard coded now for unsplash
		this.component = this.source
	},
	mounted() {
		// Set up the download progress bar %
		EventManager.$on('metaslider/external-api-percentage', ({ percentage }) => {
			this.uploadPercentage = percentage
		})

		// If the user has some images selected from the original media selector, remove them
		const importerContainer = document.querySelector('.external-media-importer')

		let clearButton = importerContainer.closest('.media-modal-content')
		clearButton = clearButton.querySelector('button.clear-selection')
		clearButton && clearButton.click()

		// Manually deselect any possible remaining images
		const selectedImages = document.querySelectorAll('.attachment.save-ready.selected')
		selectedImages && selectedImages.forEach(image => {
			image.click()
		})

		// Hack into the media upload button when the component is active
		let modalContainer = importerContainer.closest('.media-modal-content')
		this.mediaButton = modalContainer.querySelector('.media-frame-toolbar .media-toolbar-primary button.media-button')

		// Clone the button and use our version instead (original restored on destroy)
		this.ourMediaButton = this.mediaButton.cloneNode()
		this.ourMediaButton.classList.add('float-right', 'rtl\:float-left')
		this.ourMediaButton.innerHTML = this.mediaButton.innerHTML
		this.mediaButton.parentNode.insertBefore(this.ourMediaButton, this.mediaButton)

		this.ourMediaButton.disabled = false
		this.mediaButton.style.visibility = 'hidden'

		// The component isn't destroyed on tab switching, so this could be added multiple times. That's ok.
		this.ourMediaButton.addEventListener('click', this.interceptAddButton)

	},
	destroyed() {
		// Delete our button and show the original button
		this.ourMediaButton.removeEventListener('click', this.interceptAddButton)
		this.ourMediaButton.parentNode.removeChild(this.ourMediaButton)
		this.mediaButton.style.visibility = 'visible'

		const container = document.getElementById('image-api-container')
		container && container.parentNode.removeChild(container)

		if (window.metaslider.about_to_reload) {

			delete window.metaslider.about_to_reload

			// Close any WP media modals (currently we only have two)
			window.create_slides && window.create_slides.close()
			window.update_slide_frame && window.update_slide_frame.close()

		}
	},
	methods: {
		async interceptAddButton(event) {

			// Child components must impliment some of these referenced methods
			if (this.$refs['external-api'].selected.id) {
				this.downloading = true
				this.downloadingMessage = this.__('Saving...', 'ml-slider')

				const { data } = await this.$refs['external-api'].download()
				const uploadData = this.$refs['external-api'].upload
				const formData = new FormData()
				const name = this.$refs['external-api'].fileName

				// Add the file
				formData.append('files[' + name + ']', data, name)

				// Add the data (captions, etc)
				Object.keys(this.$refs['external-api'].upload).forEach(key => {
					let value = uploadData[key]
					formData.append('image_data[' + name + '][' + key + ']', value)
				})

				// Add additional info as needed
				formData.append('slideshow_id', this.slideshowId)
				this.slideType && formData.append('slide_type', this.slideType)
				this.slideId && formData.append('slide_id', this.slideId)
				formData.append('action', 'ms_import_images')

				const thumbnail = await Axios.post('import/images', formData).catch(error => {
					this.notifyError('metaslider/image-import-error', error, true)
					this.slideId = true // Prevent page reload
					this.$destroy() // Close the module
				})

				// incread slider to 100 and wait a second
				this.uploadPercentage = 100
				this.downloadingMessage = this.__('Complete!', 'ml-slider')
				await new Promise(resolve => setTimeout(resolve, 1500))

				// Reload to show the new slide
				!this.slideId && window.location.reload(true)

				// Set the new image if we are on a slide
				if (this.slideId) {
					document.querySelector('[data-slide-id="' + this.slideId + '"] .thumb').style.backgroundImage = 'url(' + thumbnail.data.data + ')'
					
					// Set the new image preview if we are editing a Local video's cover
					if(this.proUser && this.slideType === 'local_video') {
						const image_preview = document.querySelector('#slide-' + this.slideId + ' .update-cover-image');
						image_preview.style.backgroundImage = 'url(' + thumbnail.data.data + ')';
						image_preview.innerHTML = '';
					}

					// Update any image data fields as necessary (field does not need to exist)
					EventManager.$emit('metaslider/image-meta-updated', ['' + this.slideId], this.$refs['external-api'].upload)
				}

				// We're done!
				this.$destroy()
			}
			// Don't need error handling / validation here
		}
	}
}
</script>

<style lang="scss">
.external-media-importer {
	ul.attachments li {
		max-width: 175px;
	}
}
.ms-hero-status {
	display: flex;
    align-items: center;
	// justify-content: center;
	flex-direction: column;
    width: 100%;
	height: 100%;
	.ms-upload-progress {
		height: 100%;
	}
	.ms-progress {
		width: 50%;
		span {
			line-height: 24px;
		}
	}
}
.ms-upload-image {
	margin: 1rem 0;
	border: 2px solid rgba(204, 204, 204, 0.7);
	img {
		width: 100%;
		display: block;
	}
}
</style>
admin/assets/js/app/globals.js000064400000015207151213254750012325 0ustar00import Vue from 'vue'
import { __, _x, _n, _nx, sprintf, setLocaleData, EventManager } from './utils'
import SweetModal from 'sweet-modal-vue/src/plugin.js'
import Swal from 'sweetalert2'
import "@sweetalert2/theme-wordpress-admin/wordpress-admin.scss";
import { mapGetters } from 'vuex'

// Set up the locale data for the translations to be used globally.
Vue.mixin({
	computed: {
		...mapGetters({
			current: 'slideshows/getCurrent'
		})
	},
	created() {
		this.__ = __
		this._x = _x
		this._n = _n
		this._nx = _nx
		this.sprintf = sprintf
		setLocaleData(window.metaslider_api.locale, 'ml-slider')

		// Consider using WP defaults too. Caveat: large filesize
		// setLocaleData(window.metaslider_api.default_locale, 'default')
		this.siteId = window.metaslider_api.site_id
		this.proUser = window.metaslider_api.proUser
		this.hoplink = window.metaslider_api.hoplink
		this.privacyLink = window.metaslider_api.privacy_link
		this.themeEditorLink = window.metaslider_api.theme_editor_link
		this.metasliderPage = window.metaslider_api.metaslider_page
		this.production = process.env.NODE_ENV === 'production'

		this.isIE11 = !!window.MSInputMethodContext && !!document.documentMode

		this.notify = Swal.mixin({
			toast: true,
			position: 'bottom-start',
			showConfirmButton: false,
			timer: 6000,
			onOpen: (toast) => {
				toast.addEventListener('mouseenter', Swal.stopTimer)
				toast.addEventListener('mouseleave', Swal.resumeTimer)
			},
			onClose: (toast) => {
				toast.removeEventListener('mouseenter', Swal.stopTimer)
				toast.removeEventListener('mouseleave', Swal.resumeTimer)
			},
			onBeforeOpen: (toast) => {

				// Offset the toast message based on the admin menu size
				let dir = 'rtl' === document.dir ? 'right' : 'left'
				toast.parentElement.style[dir] = document.getElementById('adminmenu').offsetWidth + 'px'
			}
		})

		// Intercept to flash error message to user
		window.onerror = (message, source, lineNumber, columnNumber, error) => {
			console.log('message', message);
			let filename = ''
			try {

				// This might help users identify errors that are coming from other plugins
				filename = source.split('/').pop().split('#')[0].split('?')[0]
			} catch (error) {}
			this.notifyError(
				'window/global-js-error',
					(message.length > 100 ? message.substring(0, 100) + '...' : message) +
					(filename.length ? ` (${filename})` : ''),
				false)
		}
		Vue.config.errorHandler = function (error, vm, info) {
			vm.notifyError(`vue/${info}-error`, error, false)
		}
	},
	methods: {

		asset(file = '') {
			return window.metaslider_api.metaslider_admin_assets + file.replace(/^\/+/, '')
		},

		// These are mainly meant for logging and not ideal for hooking into events
		notifyInfo(id, message, toast = false) {
			console.log('MetaSlider:', message)
			EventManager.$emit(id, message)
			toast && this.notify.fire({
				icon: 'info',
				iconHtml: '<div class="dashicons dashicons-megaphone" style="transform: scale(2.5);"></div>',
				title: 'string' === typeof message ? message : this.__('Doing something...', 'ml-slider')
			})
		},
		notifyWarning(id, message, toast = false) {
			console.warn('MetaSlider:', message)
			EventManager.$emit(id, message)
			toast && this.notify.fire({
				icon: 'warning',
				title: 'string' === typeof message ? message : this.__('No error message provided.', 'ml-slider'),
				iconHtml: '<div class="dashicons dashicons-warning" style="transform: scale(2);"></div>',
			})
		},
		notifySuccess(id, message, toast = false) {
			console.log('MetaSlider:', message)
			EventManager.$emit(id, message)
			toast && this.notify.fire({
				icon: 'success',
				title: 'string' === typeof message ? message : this.__('Success', 'ml-slider'),
				iconHtml: '<div class="dashicons dashicons-yes" style="transform: scale(3);"></div>',
			})
		},
		notifyError(id, error, toast = false) {
			console.error(`MetaSlider (${id.replace('metaslider/', '')}):`, error)

			if (!error) {
				error = this.__('Undefined error occurred', 'ml-slider')
			}
			// If it comes from the page itself
			if (!error.hasOwnProperty('response') && error.hasOwnProperty('message')) {
				error = error.message
			}

			if ('string' === typeof error && toast) {
				this.notify.fire({
					showConfirmButton: true,
					timer: null,
					icon: 'error',
					iconHtml: '<div class="dashicons dashicons-no" style="transform: scale(3);"></div>',
					title: error
				})
			}

			// It could come from jQuery
			if (error.hasOwnProperty('responseJSON')) {
				error.response = error.responseJSON
			}

			// Sometimes the response is returned
			if (error.hasOwnProperty('status')) {
				error.response = error
			}

			// If the error is abnormal
			if (!error.hasOwnProperty('response')) return

			// Make others aware an error happened
			EventManager.$emit(id, error.response)

			// Display the error in the console and optionally a toast message
			// TODO: Count the error message length and show a modal if needed
			console.error('MetaSlider:', this.getErrorMessage(error.response))
			toast && this.notify.fire({
				showConfirmButton: true,
				timer: null,
				icon: 'error',
				iconHtml: '<div class="dashicons dashicons-no" style="transform: scale(3);"></div>',
				title: this.getErrorMessage(error.response)
			})
		},
		getErrorMessage(error) {
			try {
				if ('string' === typeof error) return error
				if (error.hasOwnProperty('message')) return error.message
				if (!error.hasOwnProperty('data')) return error.statusText + ' (' + error.status + ')'
				if (error.data.hasOwnProperty('message')) return error.data.message
				if (!error.data.hasOwnProperty('data')) return error.statusText + ' (' + error.status + ')'
				if (error.data.data.hasOwnProperty('message')) return error.data.data.message
				if (error.statusText) return error.statusText + ' (' + error.status + ')'
			} catch(exception) {
				console.error('Error handling failed:', error, exception)
			}
			return this.__('No error message reported.', 'ml-slider')
		},
		triggerEvent(id, payload) {
			EventManager.$emit(id, payload)
		},
		currentSlideshowId() {
			return this.current.id
		}
	}
})

// Override the SweetModal style computed property to allow it to resize to slider dimensions
Vue.use(SweetModal)
let computedOverride = {
	computed: {
		modal_style() {
			// TODO: Perhaps change this to modal.width in parent components
			let width = this.$parent.slideshow ? this.$parent.slideshow.width : '90%'
			let height = this.$parent.slideshow ? this.$parent.slideshow.height : '90%'
			return {
				'max-width': width,
				'max-height': height
			}
		}
	}
}
let defaultOptions = Vue.options.components['SweetModal'].options
Vue.options.components['SweetModal'].options = Vue.util.mergeOptions(defaultOptions, computedOverride)
admin/assets/js/app/utils/helpers.js000064400000000322151213254750013474 0ustar00export default {
	debounce(fn, time) {
		let timeout

		return function() {
			const functionCall = () => fn.apply(this, arguments)
			clearTimeout(timeout)
			timeout = setTimeout(functionCall, time)
		}
	}
}
admin/assets/js/app/utils/index.js000064400000000635151213254750013150 0ustar00import EventManager from './events'
import Helpers from './helpers'
import { __, _x, _n, _nx, sprintf, setLocaleData } from '@wordpress/i18n'

// Let others hook into events
if (window.metaslider.eventHooks) {
	Object.keys(window.metaslider.eventHooks).forEach(hook => {
		EventManager.$on(hook, window.metaslider.eventHooks[hook])
	})
}

export { EventManager, Helpers, __, _x, setLocaleData, _n, _nx, sprintf }
admin/assets/js/app/utils/events.js000064400000000060151213254750013335 0ustar00import Vue from 'vue'

export default new Vue()
admin/assets/js/app/previews/components.js000064400000000271151213254750014726 0ustar00/**
 * Load all the components. needed for the app
 */

import Vue from 'vue'
import SweetModal from 'sweet-modal-vue/src/plugin.js'

Vue.use(SweetModal)

export default { SweetModal }
admin/assets/js/app/previews/index.js000064400000000070151213254750013645 0ustar00import Preview from './Preview.vue'

export { Preview }
admin/assets/js/app/previews/Preview.vue000064400000022665151213254750014360 0ustar00<template>
	<div
		id="preview-component"
		:class="{ 'ms-has-error': errorMessage.length }"
		class="h-full z-max relative">
		<sweet-modal
			:ref="'preview'"
			:class="{'control-light': lightsOn}"
			:overlay-theme="overlayTheme"
			:modal-theme="overlayTheme"
			:blocking="true"
			:pulse-on-block="false"
			hide-close-button>
			<div
				slot="box-action"
				class="flex w-full bg-gray-light fixed top-0 left-0 right-0 h-8 items-center justify-between">
				<div class="flex h-full">
                    <h2
                        :class="{
                            'bg-white text-black': overlayTheme !== 'dark',
                            'bg-black text-white': overlayTheme === 'dark'
                        }"
                        class="font-bold flex items-center h-full m-0 pl-6 pr-8 relative overflow-hidden uppercase leading-normal">
                        {{ __('Preview', 'ml-slider') }}
                    </h2>
                    <button
                        :title="__('Toggle overlay type', 'ml-slider') + ' (L)'"
                        class="lightbulb w-10 px-2 hover:bg-black hover:text-white hover:p-px transition duration-200"
                        :class="{
                            'bg-black text-white p-px': overlayTheme !== 'dark',
                            'bg-transparent text-black': overlayTheme === 'dark'
                        }"
                        @click="toggleLights">
                        <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" />
                        </svg>
                    </button>
                    <button
                        :title="__('Toggle full width', 'ml-slider') + ' (F)'"
                        :class="{
                            'bg-black text-white p-px': showFullwidth,
                            'bg-transparent text-black': !showFullwidth
                        }"
                        class="w-10 px-2 hover:bg-black hover:text-white hover:p-px transition duration-200"
                        @click="toggleFullwidth">
						<span v-if="showFullwidth" class="dashicons dashicons-editor-contract w-full"></span>
						<span v-else class="dashicons dashicons-editor-expand"></span>
                    </button>
				</div>
				<button
					:title="__('Exit preview', 'ml-slider') + ' (ESC)'"
					class="mr-2 rtl:ml-2 rtl:mr-0 w-6 text-black"
					@click="closePreview">
                    <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
                    </svg>
				</button>
			</div>
            <iframe
				v-if="'' !== html"
				:class="{'invisible':!iframeLoaded}"
				:id="'iframe-' + _uid"
				:srcdoc="html"
				frameborder="0"
				@load="setupIframe"
			/>
            <div v-else>
                <span v-if="!iframeLoaded && !errorMessage.length">
                    {{ __('Loading...', 'ml-slider') }}
                </span>
                <p
                    v-if="errorMessage.length"
                    class="ms-error"
                    v-text="errorMessage"/>
                <p
                    v-if="notFullySupported"
                    class="ms-feature-not-supported">
                    {{ __('This feature is not fully supported in this browser.', 'ml-slider') }}
                </p>
            </div>
		</sweet-modal>
	</div>
</template>

<script>
// TODO Maybe we dont need to save first if on a theme view
// green checkmark

import { EventManager } from '../utils'
import { Axios } from '../api'
import './components'
import srcDoc from 'srcdoc-polyfill'
import hotkeys from 'hotkeys-js';
import { mapGetters } from 'vuex'

export default {
	props: {},
	data() {
		return {
			html: '',
			slideshowId: '',
			theme_id: '',
			iframeLoaded: false,
			errorMessage: '',
			previewIframe: {},
			overlayTheme: 'dark',
			showFullwidth: false,
			notFullySupported: !('srcdoc' in document.createElement('iframe')),
			resizeEvent: {}
		}
	},
	computed: {
		lightsOn() {
			// TODO: save the state in the settings behind the scenes
			return 'dark' !== this.overlayTheme
		},
		maxWidth() {
			// TODO: refactor when settings object is implimented in vue store
			let width = parseInt(document.getElementsByName('settings[width]')[0].value, 10)

			// This accounts the 40px padding on each side.
			return (!this.showFullwidth && width) ? width + 'px' : '100%'
		},
		...mapGetters({
			current: 'slideshows/getCurrent'
		})
	},
	mounted() {
		// Note, the slideshow should be saved BEFORE this event is fired
		EventManager.$on('metaslider/open-preview', ({ slideshowId, themeId }) => {
			this.openPreview(slideshowId, themeId)
		})

		hotkeys('alt+p', () => this.handleOpeningPreviewByKeyboard())
	},
	methods: {
		hasSlides() {
			return document.querySelector('tr.slide:not(.ms-deleted)')
		},
		openPreview(slideshowId = null, themeId = null) {
			// If no images are found, offer to import some.
			if (!this.hasSlides()) {
				EventManager.$emit('import-notice', themeId || this.current.theme.folder)
				return false
			}

			// Add events for keyboard controls
			document.addEventListener('keyup', this.handleKeyups)

			// Reset to not show fullwidth whenever loaded.
			this.showFullwidth = false

			// Open the specific preview
			this.$refs['preview'].open()

			// Fetch the iframe
			this.fetchIframe(slideshowId, themeId)

		},
		closePreview() {
			this.$refs['preview'].close()
			this.html = ''
			this.iframeLoaded = false
			this.errorMessage = ''
			document.removeEventListener('keyup', this.handleKeyups)
		},
		fetchIframe(slideshowId = null, themeId = null) {
			this.errorMessage = ''
			Axios.get('slideshow/preview', {
				params: {
					action: 'ms_get_preview',
					theme_slug: themeId || this.current.theme.folder, // Used for pro themes
					slideshow_id: slideshowId || this.current.id,
					theme_id: themeId || this.current.theme.folder
				}
			}).then(response => {
				this.html = response.data.data

				// polyfill for ie11
				this.$nextTick(() => {
					srcDoc.set(document.getElementById('iframe-' + this._uid))

					// ! Somehow this is an IE11 fix. I'm guessing it forces Vuejs to compare
					// ! the dom to the virtual dom and force the update. Oh well, it works
					if (this.notFullySupported) console.log(document.getElementById('iframe-' + this._uid))
				})
				this.notifySuccess('metaslider/preview-loaded', 'Preview loaded')
			}).catch(error => {
				this.iframeLoaded = true
				this.errorMessage = this.getErrorMessage(error.response)
				this.notifyError('metaslider/preview-error', error)
			})
		},
		setupIframe(event) {
			this.previewIframe = {
				window: event.target.contentWindow,
				document: event.target.contentDocument,
				container: event.target.contentDocument.getElementById('preview-container'),
				slideshow: event.target.contentDocument.querySelector('.metaslider')
			}

			// Add events for keyboard controls for when focus is inside the iframe
			this.previewIframe.document.addEventListener('keyup', this.handleKeyups)

			// Set the slideshow to 100% width
			this.previewIframe.slideshow.style.width = '100%'

			// Add a way to fake a resize event inside the iframe, and trigger it
			if ('function' !== typeof window.Event) { // IE 11 polyfill
				this.resizeEvent = this.previewIframe.window.document.createEvent('UIEvents')
				this.resizeEvent.initUIEvent('resize', true, false, window, 0)
			} else {
				this.resizeEvent = new Event('resize')
			}

			// If the slideshow is a carousel make full width
			if (document.getElementsByName('settings[carouselMode]')[0].checked) {
				this.toggleFullwidth()
			}

			this.previewIframe.window.dispatchEvent(this.resizeEvent)
			this.iframeLoaded = true
		},
		toggleFullwidth() {
			this.showFullwidth = !this.showFullwidth

			// Set the container and slideshow to full width
			this.previewIframe.container.style.maxWidth = this.maxWidth
			this.previewIframe.slideshow.style.maxWidth = this.maxWidth

			// trigger a resize in the iframe to let the slider recalculate itself
			this.previewIframe.window.dispatchEvent(this.resizeEvent)
		},
		toggleLights() {
			this.overlayTheme = 'dark' === this.overlayTheme ? 'light' : 'dark'
		},
		handleKeyups(event) {
			70 === event.keyCode && this.toggleFullwidth() // F
			76 === event.keyCode && this.toggleLights() // L
			27 === event.keyCode && this.closePreview() // ESC
		},
		handleOpeningPreviewByKeyboard() {

			if (this.$parent.saving) return false

			if (document.getElementById('preview-component').length) {
				return false
			}

			// This will also offer to import slides if none exist
			EventManager.$emit('metaslider/preview')
		}
	}
}
</script>

<style lang="scss">
	@import '../assets/styles/globals.scss';
	div#preview-component {
		float: left;
		> .sweet-modal-overlay {
			background: #FFF;
			&.theme-dark {
				background: $wp-black;
			}
			.sweet-modal {
				background: transparent;
				box-shadow: none;
				min-width: 100%;
				padding: 0;
				.sweet-content,
				.sweet-content-content,
				iframe {
                    display: flex;
                    align-items: center;
                    justify-content: center;
					width: 100%;
					height:100%;
				}
			}
		}
	}
</style>
admin/assets/js/app/notices/CSSManagerNotice.vue000064400000005105151213254750015612 0ustar00<template>
	<div class="css-manager-ad-container flex flex-col-reverse lg:flex-row">
		<div class="lg:w-1/2">
			<img
				:alt="__('CSS manager module', 'ml-silder')"
				:src="asset('images/css-manager.gif')"
				class="block">
		</div>
		<div class="p-8 lg:w-1/2">
			<h1>{{ __('CSS Manager', 'ml-slider') }}</h1>
			<p>{{ __('Easily add custom CSS to your slideshows to create the perfect design for your sites.', 'ml-slider') }}</p>
			<ul>
				<li class="mb-1">
                    <svg class="inline text-orange w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
                        <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
                    </svg>
                    {{ __('Built-in text editor full of features.', 'ml-slider') }}
                </li>
				<li class="mb-1">
                    <svg class="inline text-orange w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
                        <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
                    </svg>
                    {{ __('Loads only on the front-end where needed.', 'ml-slider') }}
                </li>
				<li class="mb-1">
                    <svg class="inline text-orange w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
                        <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
                    </svg>
                    {{ __('Includes recipes to solve common scenarios.', 'ml-slider') }}
                </li>
			</ul>
			<a
				:href="hoplink"
				class="probutton button button-primary button-hero"
				target="_blank">{{ __('Find out more about MetaSlider Pro', 'ml-slider') }} <span class="dashicons dashicons-external"></span></a>
		</div>
	</div>
</template>

<script>
export default {
	filename: 'CSSManagerNotice',
	created() {
		this.$parent.classes = 'w-full max-w-6xl'
	},
	mounted() {
		// this.$parent.classes = '' - can add classes to the container as needed
		this.notifyInfo('metaslider/add-slide-css-manager-notice-opened', this.__('CSS Manager notice opened', 'ml-slider'))
	},
	beforeDestroy() {
		this.notifyInfo('metaslider/add-slide-css-manager-notice-closed', this.__('CSS Manager notice closed', 'ml-slider'))
	}
}
</script>
admin/assets/js/app/notices/index.js000064400000000230151213254750013443 0ustar00import CSSManagerNotice from './CSSManagerNotice.vue'
import AnalyticsNotice from './AnalyticsNotice.vue'

export { CSSManagerNotice, AnalyticsNotice }
admin/assets/js/app/notices/AnalyticsNotice.vue000064400000007703151213254750015624 0ustar00<template>
    <div class="rounded-md">
        <div class="text-center">
            <h3 class="m-0 p-3 text-lg leading-6 font-medium text-white bg-orange rounded-top">
                {{ __('Thanks for using MetaSlider', 'ml-slider') }}
            </h3>
            <div class="p-5">
                <p class="text-lg leading-5 text-gray-darker mb-0"> {{ __('We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?', 'ml-slider') }} </p>
            </div>
            <div class="relative rounded-md shadow-sm px-5">
                <input type="email" class="form-input block w-full md:text-sm md:leading-5" v-model="optinEmail" />
            </div>
            <p class="p-3 mt-0 max-w-xl text-sm leading-5 text-gray-dark" v-html="modalPrivacyPolicy()" />
        </div>
        <div class="mt-6 sm:grid sm:gap-3 sm:grid-flow-row-dense px-4 pb-5">
            <span class="flex w-full rounded-md shadow-sm sm:col-start-2">
                <button @click="opt('yes')" type="button" class="inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-base leading-6 font-medium text-white shadow-sm bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 sm:text-sm sm:leading-5">
                    {{ __('Agree and continue', 'ml-slider') }}
                </button>
            </span>
            <span class="mt-3 flex w-full rounded-md sm:mt-0 sm:col-start-1">
                <button @click="opt('no')" type="button" class="inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-base leading-6 font-medium text-black shadow-sm bg-gray hover:text-white hover:bg-gray-darker active:bg-gray-darkest transition ease-in-out duration-150 sm:text-sm sm:leading-5">
                    {{ __('No thanks', 'ml-slider') }}
                </button>
            </span>
        </div>
    </div>
</template>

<script>
import { Settings } from '../api'
import { EventManager } from '../utils'
export default {
    data() {
		return {
            optinEmail: ''
		}
	},
    filename: 'AnalyticsNotice',
    created() {
        this.$parent.classes = 'w-full max-w-lg rounded-lg'
        this.$parent.forceOpen = () => {
            this.opt('no')
            this.$parent.forceOpen = false  
        }
        Settings.getUserSetting().then(({data}) => {
			this.optinEmail = data.data
		})
        Settings.saveUserSetting('analytics_onboarding_status', 'no')
    },
    mounted() {
        this.notifyInfo('metaslider/add-slide-css-manager-notice-opened', this.__('Analytics notice opened', 'ml-slider'))
    },
    beforeDestroy() {
        this.notifyInfo('metaslider/add-slide-css-manager-notice-closed', this.__('Analytics notice closed', 'ml-slider'))
    },
    methods: {
        modalPrivacyPolicy() {
            return this.sprintf(this.__('We\'d also like to send you infrequent emails with important security and feature updates. See our %s for more details.', 'ml-slider'), '<a target="_blank" class="underline" href="https://www.metaslider.com/privacy-policy">' + this.__('privacy policy', 'ml-slider') + '</a>', 'ml-slider')
        },
        async opt(type) {
            this.$parent.forceOpen = false
            this.$parent.close()
            await Settings.saveUserSetting('analytics_onboarding_status', type)
            if (type === 'yes') {
                await Settings.saveGlobalSettingsSingle('optin_via', 'modal')
                await Settings.saveGlobalSettingsSingle('optin_email', this.optinEmail)
                // A bit contrived but keeps the api from needing a patch endpoint
                Settings.getGlobalSettings().then(({data}) => {
                    const settings = data.data
                    settings.optIn = true
                    Settings.saveGlobalSettings(JSON.stringify({...settings}))
                })
            }
            EventManager.$emit('metaslider/start-tour')
        },
    }
}
</script>
admin/assets/js/app/slideshows/SlideshowMeta.vue000064400000007523151213254760016024 0ustar00<template>
<a
    :ref="'sl-meta' + slideshow.id"
	:href="this.metasliderPage + '&amp;id=' + slideshow.id"
	@click.prevent="loadSlideshow()"
	class="shadow-none outline-none flex items-start p-4 px-2 group hover:bg-blue-highlight">
	<div class="mx-2 w-16 h-16 bg-gray-light">
		<div
			v-if="visibleSlides.length && includeImages"
			class="relative w-16 h-16">
			<img
				:src="slide.thumbnail"
				:key="slide.id"
				v-for="(slide, key) in visibleSlides"
				:class="{ 'opacity-0': key !== currentSlideImage }"
				class="absolute block inset-0 transition-all duration-1000 ease-linear">
		</div>
		<div
			v-else-if="includeImages"
			class="border border-gray-dark flex w-16 h-16 items-center justify-center p-2 text-center text-red text-xs">
			{{ __('No slides', 'ml-slider') }}
		</div>
	</div>
	<div class="px-2 flex-grow truncate">
		<div class="flex pb-2 border-b border-gray-light group-hover:border-gray w-full truncate align-end">
			<span
				v-if="slideshow.id === current.id"
				class="uppercase rounded bg-gray-darkest text-white text-xs px-1 mr-2 rtl:mr-0 rtl:ml-2">{{ __('Current', 'ml-slider') }}</span>
			<h4 class="truncate text-base font-thin m-0 p-0 text-gray-darker group-hover:text-black">
				{{ slideshow.title }}
			</h4>
		</div>
		<p class="text-gray group-hover:text-gray-darker text-xs m-0 mt-1 whitespace-normal">
			id: #{{ slideshow.id }} <span class="text-black">&middot;</span>
			{{ setting('width') }}x{{ setting('height') }} <span class="text-blackest">&middot;</span>
			{{ sprintf(_x('%s slides', 'number of slides, ex "7 slides"', 'ml-slider'), slideshow.slides.length) }} <span class="text-blackest">&middot;</span>
			<span :title="slideshow.modified_at_gmt">{{ sprintf(__('last updated: %s', 'ml-slider'), modifiedAt()) }}</span>
		</p>
	</div>
</a>
</template>

<script>
import { DateTime } from "luxon"
import { mapGetters } from 'vuex'
export default {
	props: {
		slideshow: {
			type: Object,
			default: () => {}
		},
		includeImages: {
			type: Boolean,
			default: true
		}
	},
	data() {
		return {
			currentSlideImage: 0,
            slideshowPaused: true,
            slideshowTimer: 0
		}
	},
	computed: {
		visibleSlides() {
            if (!this.slideshow?.slides?.length) {
                return []
            }
			return this.slideshow.slides.filter(slide => slide?.thumbnail)
		},
		...mapGetters({
			current: 'slideshows/getCurrent'
		})
	},
	created() {
        this.currentSlideImage = Math.floor(Math.random() * (this.visibleSlides.length))
    },
	mounted() {
        this.$refs['sl-meta' + this.slideshow.id].addEventListener('mouseenter', () => {
            clearTimeout(this.slideshowTimer)
            this.slideshowPaused && this.startSlideshow()
            this.slideshowPaused = false
        })
        this.$refs['sl-meta' + this.slideshow.id].addEventListener('mouseleave', () => {
            clearTimeout(this.slideshowTimer)
            this.slideshowPaused = true
        })
	},
	methods: {
		startSlideshow() {
			const slide = () => {
                if (this.slideshowPaused) return
				this.currentSlideImage = (this.currentSlideImage === (this.visibleSlides.length - 1)) ?
					0 : this.currentSlideImage + 1
				this.slideshowTimer = setTimeout(() => { requestAnimationFrame(slide) }, 1100)
			}
			requestAnimationFrame(slide)
		},
		setting(item) {
			return this.slideshow.settings && this.slideshow.settings.hasOwnProperty(item)
				? this.slideshow.settings[item] : '';
		},
		modifiedAt() {
			return DateTime
				.fromSQL(this.slideshow.modified_at_gmt, {zone: 'utc'})
				.setLocale(metaslider.locale)
				.toRelative()
		},
		loadSlideshow() {
			window.location.replace(this.metasliderPage + '&id=' + this.slideshow.id)
		},
	}
}
</script>

<style lang="scss">
	.highlighted-slideshow-nav {
		.text-gray {
			color: #606f7b !important;
		}
		.border-gray-light {
			border-color: #b8c2cc !important
		}
	}
</style>
admin/assets/js/app/slideshows/settings/SettingsViewer.vue000064400000015537151213254760020102 0ustar00<script>
import { EventManager } from '../../utils'
export default {
	props: {
	},
	data() {
		return {}
	},
	mounted() {
		let $ = window.jQuery

		// This code was ported from admin.js and will be refactored in a later branch
        $(".useWithCaution").on("change", function(){
            if(!this.checked) {
                return alert(metaslider.useWithCaution);
            }
		});
		
    	$(".metaslider-ui").on('click', '.ms-toggle .hndle, .ms-toggle .handlediv', function() {
            $(this).parent().toggleClass('closed');
		});
		
		// Switch slider types when on the label and pressing enter
        $('.metaslider-ui').on('keypress', '.slider-lib-row label', function (event) {
            if (32 === event.which) {
                event.preventDefault();
                $('.slider-lib-row #' + $(this).attr('for')).trigger('click');
            }
		});
		
        /**
         * Show/hide a setting based on the value of another setting
         * 
         * @since 3.60
         * 
         * @param {object} el           The element to monitor changes
         * @param {string|array} show   The element to show or hide
         * @param {string} target       The setting to show/hide its <tr> wrapper or direct ID
         * 
         * @return void
         **/ 
        var toggleSomeRow = function (el, show, when) {
            var type = el.is('input[type="checkbox"]') ? 'checkbox' : 'select';

            /* If is a checkbox input and match with the when value 
             *
             * Possible cases: 
             * a) when is true and is checked, returns true
             * b) when is false and is NOT checked, returns true
             * c) when is true and is NOT checked, returns false 
             * d) when is false and is checked, returns false */
            var checbox_rule = type === 'checkbox' && el.is(':checked') === when ? true : false;

            /* Check if is a select field and the selected value match when 
             * (as string or as one of the array values) */
            var select_rule = type === 'select' 
                                && (el.val() === when 
                                || (Array.isArray(when) && when.indexOf(el.val()) !== -1))
                            ? true : false;

            // Show or hide slideshow settings or slide settings, whatever match the find()
            if (checbox_rule || select_rule) {
                if (show.charAt(0) === '#' || show.charAt(0) === '.') { // ID or class
                    // ID match
                    $('#metaslider-slides-list').find(show).show(); 
                } else {
                    // Form element's <tr> match
                    $('.ms-settings-table').find(`[name="settings[${show}]"]`).closest('tr').show();
                }
            } else {
                if (show.charAt(0) === '#' || show.charAt(0) === '.') { // ID or class
                    // ID match
                    $('#metaslider-slides-list').find(show).hide();
                } else {
                    // Form element's <tr> match
                    $('.ms-settings-table').find(`[name="settings[${show}]"]`).closest('tr').hide();
                }
            }
        }

        /* Show/hide settings based on the value of other settings 
             * by checking data-dependencies attribute */
        /**
         * Initialize toggleSomeRow()
         * 
         * @since 3.70
         * 
         * @param {string} selector CSS selector must ends with '[data-dependencies]'
         * 
         * @return void
         */
        var initToggle = function (selector) {
            $(selector).each(function() {
                var el = $(this);
                var data = JSON.parse($(this).attr('data-dependencies'));

                // Loop through the array of objects
                data.forEach(function(item) {
                    toggleSomeRow(el, item.show, item.when);

                    $(document).on('change', '.metaslider-ui', el, function() {
                        toggleSomeRow(el, item.show, item.when);
                    });
                });
            });
        }

		// Enable the correct options for this slider type
        var switchType = function(slider) {
            $('.metaslider .option:not(.' + slider + ')').attr('disabled', 'disabled').parents('tr').hide();
            $('.metaslider .option.' + slider).removeAttr('disabled').parents('tr').show();
            $('.metaslider input.radio:not(.' + slider + ')').attr('disabled', 'disabled');
            $('.metaslider input.radio.' + slider).removeAttr('disabled');
    
            $('.metaslider .showNextWhenChecked:visible').closest("tr").next('tr').hide();
            $('.metaslider .showNextWhenChecked:visible:checked').closest("tr").next('tr').show();
    
            // make sure that the selected option is available for this slider type
            if ($('.effect option:selected').attr('disabled') === 'disabled') {
                $('.effect option:enabled:first').attr('selected', 'selected');
            }
    
            // make sure that the selected option is available for this slider type
            if ($('.theme option:selected').attr('disabled') === 'disabled') {
                $('.theme option:enabled:first').attr('selected', 'selected');
            }

            // Add dynamic display of settings based on checkbox and select values
            initToggle('.ms-settings-table [data-dependencies], #metaslider-slides-list [data-dependencies]');

            if (slider == 'flex') {
                $('.flex-setting').show();
            } else {
                $('.flex-setting').hide();
            }
        };
    
        EventManager.$on(['metaslider/app-loaded', 'metaslider/slides-created', 'metaslider/slide-duplicated'], () => { 
            initToggle('#metaslider-slides-list [data-dependencies]');
        })

        // enable the correct options on page load
        switchType($(".metaslider .select-slider:checked").attr("rel"));
    
        var toggleNextRow = function(checkbox) {
            if(checkbox.is(':checked')){
                checkbox.closest("tr").next("tr").show();
            } else {
                checkbox.closest("tr").next("tr").hide();
            }
		}
		
		toggleNextRow($(".showNextWhenChecked"))
		EventManager.$on('metaslider/app-loaded', () => { 
            toggleNextRow($(".showNextWhenChecked"));
        })
    
        $(".metaslider-ui").on("change", ".showNextWhenChecked", function() {
            toggleNextRow($(this));
        });
    
        // mark the slide for resizing when the crop position has changed
        $(".metaslider-ui").on('change', '.left tr.slide .crop_position', function() {
            $(this).closest('tr').data('crop_changed', true);
        });
    
        // handle slide libary switching
        $(".metaslider-ui").on("click", ".select-slider", function() {
            switchType($(this).attr("rel"));
        });
	}
}
</script>
admin/assets/js/app/slideshows/settings/Title.vue000064400000005631151213254760016173 0ustar00<template>
<div class="mb-12">
	<div class="relative">
		<input
			@change="$store.commit('slideshows/updateTitle', $event.target.value)"
			@keydown.escape.prevent="bail($event)"
			@keyup="$store.commit('slideshows/updateTitle', $event.target.value)"
			@keydown.enter="$event.target.blur()"
			@blur="save()"
			:value="current.title"
			id="metaslider-current-title"
			data-lpignore="true"
			type="text"
			style="width:100%!important;transition:background .3s ease,border-left .3s ease!important"
			class="h-16 text-2xl font-light rounded-none shadow-none bg-transparent border-0 border-l-4 border-transparent hover:border-gray-light hover:bg-white focus:bg-white focus:shadow-sm focus:border-gray-light rtl:border-l-0 rtl:border-r-0 rtl:ml-0 rtl:-mr-4 rtl:pl-12 rtl:pr-4"
			required />
        <svg
			class="pointer-events-none opacity-0 transition-all duration-300 ease-in absolute m-2 w-6 top-0 right-0 text-gray rtl:left-0 rtl:right-auto"
            xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.572L16.732 3.732z" />
        </svg>
	</div>
	<transition name="pop-in-quick-top">
		<div
			v-if="currentSavedTitle.trim() !== current.title.trim()"
			class="absolute text-gray-dark -ml-4 mt-2 mb-0 text-xs"
            v-html="sprintf(__('Press %s to save or %s to cancel.', 'ml-slider'),
                sprintf('<code>%s</code>', _x('Enter', 'The ENTER key on a keyboard', 'ml-slider')),
                sprintf('<code>%s</code>', _x('Escape', 'The ESCAPE key on a keyboard', 'ml-slider'))
            )"/>
	</transition>
</div>
</template>

<script>
import { mapGetters } from 'vuex'
import { Axios, Slideshow, Settings } from '../../api'
export default {
	props: {},
	data() {
		return {
			currentSavedTitle: '',
		}
	},
	watch: {
		current: {
			immediate: true,
			handler: function(current) {
				this.currentSavedTitle = current.title
			}
		},
	},
	computed: {
		...mapGetters({
			current: 'slideshows/getCurrent'
		})
	},
	created() {},
	mounted() {},
	methods: {
		save() {
			if(this.current.title != '') {
				if (this.currentSavedTitle.trim() === this.current.title.trim()) return
				Settings.saveSingleSlideshowSetting('title', this.current.title.trim()).then(() => {
					this.notifySuccess('metaslider/title-saved', this.__('Slideshow title updated'), true)
					this.currentSavedTitle = this.current.title
				})
			} else {
				this.notifyError('metaslider/title-saved', this.__('Please add a slideshow title'), true)
			}
		},
		bail(event) {
			this.$store.commit('slideshows/updateTitle', this.currentSavedTitle);
			this.$nextTick(() => {
				event.target.blur()
			})
		}
	}
}
</script>

<style lang="css">
#metaslider-current-title:hover ~ svg,
#metaslider-current-title:focus ~ svg {
	opacity: 1 !important;
}
</style>
admin/assets/js/app/slideshows/settings/index.js000064400000000164151213254760016032 0ustar00import SettingsViewer from './SettingsViewer.vue'
import Title from './Title.vue'

export { SettingsViewer, Title }
admin/assets/js/app/slideshows/Slideshow.vue000064400000025057151213254760015217 0ustar00<script>
import { Axios, Slideshow, Settings } from '../api'
import { AnalyticsNotice } from '../notices'
import { EventManager } from '../utils'
import QS from 'qs'
import Swal from 'sweetalert2'
import { mapGetters, mapState } from 'vuex'
import { MainTour } from '../tour'

export default {
	props: {
		id: {
			type: [Number],
			default: null
		},
		settings: {
			type: [Object, Boolean],
			default: false
		},
		tourStatus: {
			type: [String, Boolean],
			default: false
		},
		showOptIn: {
			type: [String, Boolean],
			default: false
		},
	},
	data() {
		return {
			allowedElements: ['metaslider-ui', 'updraft-ad-container', 'metaslider-admin-notice'],
			titleChanged: ''
		}
	},
	computed: {
		...mapGetters({
			current: 'slideshows/getCurrent'
		}),
		...mapState({
			locked: state => state.slideshows.locked
		}),
	},
	created() {
		window.metaslider_slider_id = this.id // used in admin.js
		this.$store.commit('slideshows/setCurrent', this.id)
		this.$store.dispatch('slideshows/getSingleSlideshow', this.id)
		this.$store.dispatch('slideshows/getRecentSlideshows')

	},
	mounted() {
		// Show only the allowed elements on our page (keeps rogue notices from showing)
		document.querySelectorAll('#wpbody-content > *').forEach(element => {
			let identifiers = element.className.split(' ').concat(element.id)
			if (identifiers && this.allowedElements.filter(elm => identifiers.indexOf(elm) > -1).length) {
				element.style.display = 'block'
			}
		})

		EventManager.$on('metaslider/save', () => {
			this.save()
		})

		EventManager.$on('metaslider/preview', data => {

			let slideshowId = data && data.hasOwnProperty('slideshowId') ? data.slideshowId : this.current.id
			let themeId = data && data.hasOwnProperty('themeId') ? data.themeId : this.current.theme.folder

			this.save().then(() => {
				this.preview(slideshowId, themeId)
			})
		})

		EventManager.$on(['metaslider/creating-slides', 'metaslider/updating-slide'], () => {
			this.$store.commit('slideshows/setLocked', true)
		})
		EventManager.$on([
			'metaslider/slides-created', 'metaslider/slide-create-failed',
			'metaslider/slide-updated', 'metaslider/slide-update-failed', 
			'metaslider/slide-duplicated', 'metaslider/slide-duplicate-failed'
		], () => {
			this.$store.commit('slideshows/setLocked', false)
		})

		EventManager.$on('metaslider/duplicate', () => {
			this.save().then(() => {
				this.notifyInfo('metaslider/duplicate-pre', this.__('Duplicating...', 'ml-slider'), true)
				this.duplicate()
			})
		})

		// Listen for a successful save and enable buttons
		EventManager.$on(['metaslider/save-success', 'metaslider/save-error'], () => {
			this.$store.commit('slideshows/setLocked', false)
		})

		// Listen to start the tour (only if there's an id and it hasnt been seen)
		EventManager.$on('metaslider/start-tour', () => {
			!this.tourStatus && this.id && this.startTour()
		})

		// Listen when trying to edit a slide in trashed slides screen
		EventManager.$on('metaslider/cant-edit-trashed-slide', () => {
			this.notifyError('metaslider/slide-edit-failed', this.__('To edit this slide, click "Restore" and then "Return to Published Slides"', 'ml-slider'), true)
		})

		if (!this.showOptIn) {
			EventManager.$emit('metaslider/start-tour')
		}

		if (this.showOptIn) {
			EventManager.$emit('metaslider/open-utility-modal', AnalyticsNotice)
		}

		window.addEventListener('load', () => {
			setTimeout(() => {
				this.notifyInfo('metaslider/app-loaded', this.__('MetaSlider dashboard loaded', 'ml-slider'))
			}, 1500)
		})

		this.titleChanged = this.current.title
	},
	methods: {
		async save() {
			if(this.current.title == '') {
				this.notifyError('metaslider/title-saved', this.__('Please add a slideshow title'), true)
			} else {
				if (this.locked) return
				this.$store.commit('slideshows/setLocked', true)
				this.notifyInfo('metaslider/saving', this.__('Saving...', 'ml-slider'))

				// TODO: this is temporary until there is a slide component
				this.orderSlides()

				let data = window.jQuery('#ms-form-settings').serializeArray()
				await this.saveSettings(data).then(() => {

					// Todo: refactor out slides logic
					let slides = this.prepareSlideData(data)
					slides.length > 20 && this.notifyInfo(
						'metaslider/saving-more-notice',
						this.sprintf(this.__('Saving %s slides. This may take a few moments.', 'ml-slider'), slides.length),
						true
					)
					this.showSlideSaveNotification = false
					setTimeout(() => { this.showSlideSaveNotification = true }, 4000)
					return this.saveSlides(slides).then(() => {

						// TODO: refactor out with psuedocode below
						this.cropSlidesTheOldWay()
						this.notifySuccess('metaslider/save-success', this.__('Slideshow saved', 'ml-slider'), true)
					}).catch(error => {

						// If the input vars are too low, reload the page with the error message
						if (error.response.data.data && error.response.data.data.current_input_vars || error.response.data.includes('max_input_vars')) {
							window.location.replace(this.metasliderPage + '&id=' + this.current.id + '&input_vars_error=true')
						}

						throw error
					})
				}).catch(error => {
					this.notifyError('metaslider/save-error', error.response, true)
				})
			}

			// TODO: refactor like this in a future branch
			// let touchedSlides = getTouchedSlides()

			// Only update slides that need it
			// touchedSlides.forEach(element => {
			// Save
			// Crop
			// })

			// Look into only cropping if not already cropping, or better yet, to kill the initial cropping process
		},
		preview(slideshowId, themeId) {
			EventManager.$emit('metaslider/open-preview', {
				slideshowId: slideshowId,
				themeId: themeId
			})
		},
		async duplicate(slideshowId, themeId) {
			Slideshow.duplicate().then(response => {
				this.notifySuccess('metaslider/duplicate-success', this.__('Duplicated successfully. Reloading...', 'ml-slider'), true)
				setTimeout(() => {
					localStorage.removeItem('metaslider-vuex-' + this.siteId)
					window.location.replace(this.metasliderPage + '&id=' + response.data.data)
				}, 1500)
			}).catch(error => {
				this.notifyError('metaslider/duplicate-error', error, true)
			})
		},
		startTour() {
			EventManager.tourEnabled = true

			// Slight timeout to avoid any funky layouts like poopy.life
			setTimeout(() => {
				MainTour.start()
			}, 750)

			// Set an event to handle cancelling the tour
			MainTour.on('cancel', () => { this.cancelTour() })
		},
		saveSettings(data) {
			let settings = data.filter(input => 'title' === input.name || input.name.startsWith('settings'))
			return Settings.save(settings).then(() => {
				this.notifySuccess('metaslider/save-setting-success', this.__('Settings saved', 'ml-slider'))
			})
		},
		prepareSlideData(data) {
			let slides = new Set(
				data.filter(input => input.name.startsWith('attachment'))
					.map(slide => slide.name.match(/attachment\[([\s\S]*?)\]/)[1])
			)

			let allSlides = [...slides].map(slide => {
				return data.filter(input => input.name.startsWith('attachment[' + slide + ']'))
			})
			return allSlides
		},
		saveSlides(slides) {
			return new Promise((resolve, reject) => {

				// Pro users have a sigificant amoutn of extra input variables because of scheduling
				let chunks = this.proUser ? 20 : 50
				Slideshow.save(slides, chunks).then(response => {
					if (Array.isArray(response) && response.length) {

						// Only notify the user every 4 seconds
						if (this.showSlideSaveNotification && response.length >= 10) {
							this.notifyInfo(
								'metaslider/saving-more',
								this.sprintf(
									this.__('Still working... %s slides remaining...', 'ml-slider'),
									Math.floor(response.length / 10) * 10
								),
								true
							)
							this.showSlideSaveNotification = false
							setTimeout(() => { this.showSlideSaveNotification = true }, 4000)
						}

						// if there are slides that need to be processed call the function again with the remaining data
						resolve(this.saveSlides(response))
					} else { resolve(response) }
				}).catch(error => { reject(error) })
			})
		},
		orderSlides() {
			document.querySelectorAll('#metaslider-slides-list .slide input.menu_order').forEach((element, index) => {
				element.value = index
			})
		},
		cropSlidesTheOldWay() {
			window.jQuery.when(window.jQuery('.metaslider table#metaslider-slides-list').trigger('resizeSlides')).done(function() {
				let $ = window.jQuery
				$('button[data-thumb]').each(function() {
					let $this = $(this)
					$('button[data-editor_id=' + $this.attr('data-editor_id') + ']')
						.attr('data-thumb', $this.attr('data-thumb'))
						.attr('data-width', $this.attr('data-width'))
						.attr('data-height', $this.attr('data-height'))
				})
			})
		},
		cancelTour() {
			EventManager.tourEnabled = false
			MainTour.setPosition()
				.then(() => {
					this.notifySuccess('metaslider/tour-cancelled', this.__('Tour cancelled successfully', 'ml-slider'), false)
				})
				.catch(() => {
					this.notifySuccess('metaslider/tour-cancelled-failed', this.__('Tour cancelled unsuccessfully', 'ml-slider'), false)
				})
		},
		// NOTE: this doesn't permanently delete, just move to trash
		deleteSlideshow() {
			Swal.queue([{
				icon: 'warning',
				iconHtml: '<div class="dashicons dashicons-warning" style="transform: scale(3.5);"></div>',
				title: this.__('Are you sure?', 'ml-slider'),
				text: this.__('This slideshow will be moved to the "Trash" area.', 'ml-slider'),
				confirmButtonText: this.__('Confirm', 'ml-slider'),
				showCancelButton: true,
				confirmButtonColor: '#e82323',
				focusCancel: true,
				showLoaderOnConfirm: true,
				allowOutsideClick: () => !Swal.isLoading(),
				preConfirm: () => {
					// TODO: Refactor to use api object
					return Axios.post('slideshow/delete', QS.stringify({
						action: 'ms_delete_slideshow',
						slideshow_id: this.current.id
					})).then(response => {
						console.log('MetaSlider:', response.data.data)
					}).catch(error => {
						let errorMessage = this.getErrorMessage(error.response)
						this.notifyError('metaslider/delete-error', error)
						Swal.insertQueueStep({
							icon: 'error',
							title: this.__('Something went wrong', 'ml-slider'),
							confirmButtonText: this.__('OK', 'ml-slider'),
							text: errorMessage
						})
					})
				}
			}]).then(result => {
				localStorage.removeItem('metaslider-vuex-' + this.siteId)
				if (!result.dismiss) {
					// use replace because the resource is deleted
					window.location.replace(
						this.current.id 
							? this.metasliderPage + '&action=delete&slideshows=' + this.current.id
							: this.metasliderPage
					);
				}

			})
		},
	}
}
</script>

<style lang="scss">
	@import '../assets/styles/main.scss';
</style>
admin/assets/js/app/slideshows/index.js000064400000000153151213254770014171 0ustar00import Slideshow from './Slideshow.vue'
import Toolbar from './Toolbar.vue'

export { Slideshow, Toolbar }
admin/assets/js/app/slideshows/Toolbar.vue000064400000003074151213254770014654 0ustar00<script>
import { EventManager } from '../utils'
import { CSSManagerNotice } from '../notices'
import { mapState } from 'vuex'
export default {
	data() {
		return {
			duplicating: false,
			scrolling: 0
		}
	},
	computed: mapState({
		locked: state => state.slideshows.locked
	}),
	mounted() {
		// Get height of admin bar to make the header sticky with offset (useful in case something else alters the admin bar height)
		const calculateToolbarPosition = function() {
			window.requestAnimationFrame(() => {
				document.getElementById('ms-toolbar').style.top = document.getElementById('wpadminbar').clientHeight + 'px'
			})
		}
		calculateToolbarPosition()
		window.addEventListener('resize', calculateToolbarPosition)

		// Know when the user isn't scrolled to the top
		window.addEventListener('scroll', () => { 
			this.scrolling = window.scrollY > 0
		}, { passive: true })

	},
	methods: {
		save() {
			EventManager.$emit('metaslider/save')
		},
		preview() {
			if (this.locked) return
			EventManager.$emit('metaslider/preview')
		},
		duplicate() {
			if (this.locked) return
			this.duplicating = true
			this.notifyInfo('metaslider/duplicate-preparing', this.__('Preparing slideshow for duplication...', 'ml-slider'), true)
			setTimeout(() => {
				EventManager.$emit('metaslider/duplicate')
			}, 1500)
		},
		showCSSManagerNotice() {
			EventManager.$emit('metaslider/open-utility-modal', CSSManagerNotice)
		},
		addSlide() {
			// The easy way
			// TODO: refactor out the jQuery way in admin.js (i.e. create Slide component)
			window.create_slides.open()
		}
	}
}
</script>
admin/assets/js/app/slideshows/nav/Drawer.vue000064400000035072151213254770015265 0ustar00<template>
<div class="relative w-full">
	<div
		ref="drawer-container"
		:style="{ 'max-height': drawerHeight }"
		class="w-full bg-gray-light transition-all duration-300 ease-in overflow-hidden border-b border-gray-lightest">
		<div
			v-if="isIE11 && expanded && totalSlideshows > 25"
			class="text-center p-2">
			{{ __('This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.', 'ml-slider') }}
			</div>
		<div
			v-if="expanded"
			class="relative bg-gray border-b border-gray py-2 text-base text-black text-white w-full">
			<div class="container px-6">
				<div class="lg:flex items-center justify-between -mx-2">
					<div class="flex lg:w-1/2 px-2 mb-2 lg:mb-0">
						<div class="mr-2 rtl:mr-0 rtl:ml-2">
							<select
								v-model="sortType"
								class="text-black bg-gray-lightest block focus:bg-white h-full leading-normal m-0 rounded shadow-none"
								@change="sort()">
								<option value="sortByTitle">{{ __('Sort by title', 'ml-slider') }}</option>
								<option value="">{{ __('Sort by modified date', 'ml-slider') }}</option>
							</select>
						</div>
						<div class="flex-grow relative">
							<input
								:placeholder="__('Filter slideshows\u200E', 'ml-slider')"
								v-model="searchTerm"
								data-lpignore="true"
								type="text"
								class="appearance-none text-black bg-gray-lightest block focus:bg-white h-full leading-normal m-0 placeholder-gray-darker rounded shadow-none transition-all duration-300 ease-in w-full"/>
							<div
								@click="searchTerm = ''"
								:class="{ invisible: !searchTerm.length }"
								class="absolute inset-y-0 right-0 rtl:right-auto rtl:left-0 pr-2 rtl:pl-2 rtl:pr-0 flex items-center text-gray-dark">
                                <svg class="w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
                                </svg>
							</div>
						</div>
					</div>
					<div class="lg:w-1/2 px-2">
						<div class="flex items-center justify-between -mx-2">
							<p
								v-if="sorting"
								class="m-0 text-center">
                                <svg class="inline w-5 ms-spin text-gray-darker" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" />
                                </svg>
                                {{ __('Searching...', 'ml-slider') }}
							</p>
							<p
								v-else
								class="m-0 p-2 text-center">{{ summaryText }}</p>
							<div class="p-2 flex">
								<!-- If they have local storage then the data is already there -->
								<div
									v-if="fetchingAllSlideshows"
									class="flex items-center">
									<svg
                                        class="w-4 ms-spin mr-1 rtl:mr-0 rtl:ml-1"
                                        xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15" />
                                    </svg>
									<p
										v-if="slideshows.length < totalSlideshows"
										class="m-0">{{ loadingSlideshowsText() }}</p>
									<p
										v-else
										class="m-0">{{ __('Updating...', 'ml-slider') }}</p>
								</div>
								<div v-else>
									<button
										v-if="slideshows.length < totalSlideshows"
										@click.prevent="fetchAllSlideshows()"
										:class="{ 'underline': !fetchingAllSlideshows }"
										class="bg-gray-lighter leading-none m-0 outline-none px-2 py-1 rounded shadow no-underline text-xs">
										{{ __('Load all', 'ml-slider') }}
									</button>
									<button
										v-else
										@click.prevent="clearCache(event)"
										class="bg-gray-lighter leading-none m-0 outline-none px-2 py-1 rounded-lg shadow no-underline text-xs">
										{{ __('Clear cache', 'ml-slider') }}
									</button>
								</div>
								<div
									v-if="!fetchingAllSlideshows"
									class="tipsy-tooltip-bottom inline-flex ml-1 rtl:ml-0 rtl:mr-1"
									:title="slideshows.length < totalSlideshows ?
										sprintf(__('Load remaining %s slideshows', 'ml-slider'), totalSlideshows - slideshows.length) :
										__('Press to clear the slideshow cache from your web browser', 'ml-slider')"
									:original-title="slideshows.length < totalSlideshows ?
										sprintf(__('Load remaining %s slideshows', 'ml-slider'), totalSlideshows - slideshows.length) :
										__('Press to clear the slideshow cache from your web browser', 'ml-slider')">
									<svg class="w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
                                    </svg>
								</div>
							</div>
						</div>
					</div>
				</div>
			</div>
		</div>
		<template v-if="slideshowsFiltered.length || currentSlideshow">
            <div class="relative">
                <button
                    @click.prevent="toggleDrawer();searchTerm = ''"
                    :class="{ invisible: !expanded }"
                    class="absolute flex items-center mr-4 mt-5 right-0 rtl:left-0 rtl:ml-4 rtl:mr-0 rtl:right-auto top-0 text-gray-dark hover:text-black">
                    <svg class="w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
                    </svg>
                </button>
                <ul
                    class="flex -mx-2 overflow-auto"
                    :class="{
                        'flex-nowrap p-4': !expanded,
                        'flex-wrap justify-lcenter p-10': expanded
                    }"
                    style="-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;"
                    role="navigation"
                    aria-label="Recent slideshows">
                    <li
                        :class="{
                            'md:w-1/2 lg:w-1/3 xl:w-1/4 3xl:w-1/5': expanded
                        }"
                        class="w-full px-4 my-2 max-w-md"
                        style="min-width:400px">
                        <span
                            :class="{ 'whitespace-normal': expanded }"
                            class="block -mx-2 rounded bg-white shadow">
                            <slideshow-meta :slideshow="currentSlideshow" :include-images="true"/>
                        </span>
                    </li>
                    <li
                        :key="slideshow.id"
                        :class="{
                            'md:w-1/2 lg:w-1/3 xl:w-1/4 3xl:w-1/5': expanded
                        }"
                        class="w-full px-4 my-2 max-w-md"
                        style="min-width:400px"
                        v-for="(slideshow) in slideshowsFiltered">
                        <span
                            :class="{ 'whitespace-normal': expanded }"
                            class="block -mx-2 rounded bg-white shadow">
                            <slideshow-meta :slideshow="slideshow" :include-images="slideshow.slides.length > 0 ? true : false"/>
                        </span>
                    </li>
                    <li v-if="!expanded" style="min-width:4rem;"></li>
                </ul>
            </div>
		</template>
		<template v-else>
			<span class="flex items-center font-normal container text-xl my-4 h-24">
				{{ searchTerm.length ? __('No slideshows found', 'ml-slider') : __('Loading slideshows...', 'ml-slider') }}
			</span>
		</template>
	</div>
	<div class="container mx-auto flex px-6">
		<button
			@click.prevent="toggleDrawer();searchTerm = ''"
			:class="{
				'bg-gray-light border-gray-light': opened,
				'bg-gray-lighter pt-1 border-transparent': !opened
			}"
			class="block relative transition-all duration-300 ease-in text-xs text-gray-dark px-4 -mt-px border border-t-0 hover:bg-gray-light focus:bg-gray-light rounded-b shadow-none outline-none"
			>
			<template v-if="!opened">
					{{ __('Browse slideshows', 'ml-slider') }}
			</template>
            <svg v-else class="w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
            </svg>
		</button>
		<button
			@click.prevent="expanded = !expanded;searchTerm = ''"
			v-if="opened && slideshowsFiltered.length > 4"
			:title=" expanded ? __('Collapse', 'ml-slider') : __('Press to expand', 'ml-slider')"
			class="block relative transition-all duration-300 ease-in text-xs text-gray-dark px-4 -mt-px border border-t-0 bg-gray-lighter hover:bg-gray-light rounded-b shadow-none outline-none border-gray-light tipsy-tooltip-bottom-toolbar"
			>
			<svg class="w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 9l4-4 4 4m0 6l-4 4-4-4" />
            </svg>
		</button>
	</div>
</div>
</template>

<script>
import hotkeys from 'hotkeys-js';
import { EventManager, Helpers as _ } from '../../utils'
import FuzzySearch from 'fuzzy-search/dist/FuzzySearch';
import Settings from '../../api/Settings'
import SlideshowMeta from '../SlideshowMeta'
import { mapState, mapGetters } from 'vuex'
import slideshows from '../../store/modules/slideshows';
export default {
	components: {
		'slideshow-meta': SlideshowMeta
	},
	props: {
		open: {
			type: Boolean,
			default: false
		}
	},
	data() {
		return {
			opened: this.open,
			expanded: false,
			slideshowsFiltered: [],
			sortType: '',
			searchTerm: '',
			slideshowCountdown: 0,
			sorting: false
		}
	},
	watch: {
		slideshows: {
			immediate: true,
			handler: function(slideshows) {
				this.searcher = slideshows.length ? new FuzzySearch(slideshows, ['title'], { sort: false }) : null
				this.sort()
			}
		},
		searchTerm() {
			this.sorting = true
			_.debounce(() => { this.sort() }, 1500)()
		},
		opened() {
			// If we are closing the drawer, remove the expanded state
			if (!this.opened) {
				this.$refs['drawer-container'].style.maxHeight = '12rem'
				this.expanded = false
			}
			this.saveNavPosition()
		},
		expanded() {
			this.$refs['drawer-container'].style.maxHeight = 'none'
		},
		slideshowsFiltered() {
			this.slideshowCountdown = this.totalSlideshows - this.slideshowsFiltered.length
		}
	},
	computed: {
		drawerHeight() {
			return this.opened ? '12rem' : '0'
		},
		summaryText() {
			if (!this.slideshowsFiltered.length || !this.slideshows.length) return ''
			let count = this.slideshowsFiltered.length + 1 // Plus the current slideshow
			if (this.slideshows.length == this.totalSlideshows) {
				const message = count == 1 ?
					this.__('1 slideshow', 'ml-slider') :
					this.__('Viewing %s out of %s slideshows', 'ml-slider')
				return this.sprintf(message, count, this.totalSlideshows)
			}
			const message = count == 1 ?
				this.__('1 slideshow','ml-slider') :
				this.__('Viewing %s out of %s slideshows (%s loaded)', 'ml-slider')
			return this.sprintf(message, count, this.totalSlideshows, this.slideshows.length)
		},
		...mapState({
			slideshows: state => state.slideshows.all,
			fetchingAllSlideshows: state => state.slideshows.fetchingAll,
			totalSlideshows: state => state.slideshows.totalSlideshows
		}),
		...mapGetters({
			currentSlideshow: 'slideshows/getCurrent'
		})
	},
	created() {
		// Accept a prop to remeber the state
		this.opened = this.open

		// Let the draw be opened closed elsewhere if needed
		EventManager.$on('metaslider/open-drawer', () => {
			this.opened = true
		})
		EventManager.$on('metaslider/close-drawer', () => {
			this.opened = false
		})

		// Run the filter again if the title changes
		EventManager.$on('metaslider/title-saved', () => {
			this.sort()
		})
	},
	mounted() {
	},
	methods: {
		toggleDrawer() {
			this.opened = !this.opened
		},
		saveNavPosition: _.debounce(function() {
			// Let users save the state of the nav position
			Settings.saveUserSetting('metaslider_nav_drawer_opened', this.opened)

		}, 3000),
		sort() {

			// If there is a search term then use that first before sorting
			let s = this.searchTerm.trim().length ? this.searcher.search(this.searchTerm.replace(/\s/g,'')) : [...this.slideshows]

			// Remove current slideshow which is handled elsewhere
			if (this.currentSlideshow) {
				s = s.filter(slideshow => slideshow.id != this.currentSlideshow.id)
			}

			this.slideshowsFiltered = s.sort(this[this.sortType])
			this.sorting = false
		},
		sortByTitle(a, b) {
			let one = a.title.toUpperCase()
			let two = b.title.toUpperCase()
			if (one < two) return -1
			if (one > two) return 1
			return 0
		},
		clearCache() {
			window.localStorage.removeItem('metaslider-vuex-' + this.siteId)
			window.location.reload(true)
		},
		fetchAllSlideshows() {

			// Keep a counter for a slightly better UX experience
			this.slideshowCountdown = this.totalSlideshows - this.slideshowsFiltered.length
			const countdown = () => {
				this.slideshowCountdown = this.slideshowCountdown - 1

				// lag randomly
  				while(Math.random() > 0.0000001) {}
				if (this.slideshowCountdown > 0) requestAnimationFrame(countdown)
			}
			requestAnimationFrame(countdown)

			this.notifyInfo(
				'metaslider-loading-all-slideshows',
				this.sprintf(this.__('Indexing %s slideshows into local storage...', 'ml-slider'), this.totalSlideshows))

			this.$store.dispatch('slideshows/getAllSlideshows').then(() => {
				this.notifySuccess('metaslider/all-slideshows-loaded', this.__('All Slideshows loaded', 'ml-slider'), true)
			})
		},
		loadingSlideshowsText() {
			if (this.totalSlideshows < 200) return this.__('Fetching slideshows...', 'ml-slider')
			if (this.slideshowCountdown <= 0) return this.__('Finished', 'ml-slider')
			return sprintf(this.__('Indexing slideshows... %s remaining', 'ml-slider'), this.slideshowCountdown)
		},
	}
}
</script>
admin/assets/js/app/slideshows/nav/Switcher.vue000064400000017473151213254770015636 0ustar00<template>
<div class="relative w-full h-full py-4">
	<span>
		<input
			:placeholder="__('Search slideshows (Press ctrl + / to focus)\u200E', 'ml-slider')"
			@focus="focused = true;$event.target.select()"
			@blur="focused = false"
			v-model="searchTerm"
			data-lpignore="true"
			type="text"
			ref="switcher"
			id="ms-slideshow-switcher"
			class="h-full w-full border border-gray-light focus:bg-white focus:shadow bg-gray-lightest transition duration-300 ease-in shadow-none focus:outline-none border-transparent placeholder-gray-darker rounded m-0 px-8 block appearance-none leading-normal ds-input"
			/>
			<span
				@mouseover="maybeAboutToClick = true"
				@mouseout="maybeAboutToClick = false"
				:class="{ hidden: !maybeAboutToClick && !focused }"
				class="top-arrow absolute z-50 w-full mt-3 shadow-md"
				role="listbox">
				<div class="relative border border-gray-light bg-white rounded pb-2">
					<template v-if="!searching">
						<div class="flex justify-between items-center pb-2 m-4 mb-2 border-b border-gray-lighter">
							<h3 class="text-sm text-gray-dark font-hairline m-0">
								{{ summaryText }}
							</h3>
						</div>
						<ul
							v-if="slideshows.length"
							class="overflow-scroll overflow-x-hidden"
							ref="switcher-view-area"
							style="max-height:30vh"
							:style="'min-height:' + minHeight + 'px'"
							role="navigation"
							aria-label="Slideshow search">
							<li
								@mouseover="selectedSlideshow = key"
								:key="slideshow.id"
								:ref="'switch-item-' + slideshow.id"
								:class="{ 'bg-blue-highlight highlighted-slideshow-nav': highlighted === slideshow.id }"
								class="m-0"
								v-for="(slideshow, key) in slideshows">
								<slideshow-meta :slideshow="slideshow"/>
							</li>
						</ul>
						<div v-else
							class="py-2 px-4">{{ __('No slideshows found', 'ml-slider') }}</div>
					</template>
					<template v-else>
						<span class="block text-sm font-hairline m-4 mb-2">
							{{ __('Searching slideshows...', 'ml-slider') }}
						</span>
					</template>
				</div>
			</span>
	</span>
	<div
		@click="focusInput()"
		:class="{ 'pointer-events-none': focused }"
		class="absolute inset-y-0 left-0 pl-3 rtl:left-auto rtl:right-0 rtl:pr-3 rtl:pl-0 flex items-center text-gray-dark">
        <svg v-if="!searching" class="mt-px w-4 cursor-pointer" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
        </svg>
        <svg v-else class="mt-px w-4 ms-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" />
        </svg>
	</div>
	<div
		@click="resetInput()"
		:class="{ invisible: !searchTerm.length }"
		class="absolute inset-y-0 right-0 rtl:right-auto rtl:left-0 pr-3 rtl:pl-3 rtl:pr-0 flex items-center text-gray-dark">
        <svg class="w-4 mt-px" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
        </svg>
	</div>
</div>
</template>

<script>
import hotkeys from 'hotkeys-js';
import SlideshowMeta from '../SlideshowMeta'
import Slideshow from '../../api/Slideshow'
import { mapState } from 'vuex'
import { EventManager, Helpers as _ } from '../../utils'
export default {
	components: {
		'slideshow-meta': SlideshowMeta
	},
	props: {
		max: {
			type: Number|String,
			default: 25
		}
	},
	data() {
		return {
			focused: false,
			selectedSlideshow: -1,
			maybeAboutToClick: false,
			searchTerm: '',
			searching: true,
			slideshows: {},
		}
	},
	watch: {
		focused() {
			// Reset when the user leaves
			if (!this.focused && this.slideshows.length && !this.maybeAboutToClick) {
				this.resetSelectedPosition()
			}
		},
		searchTerm() {
			this.searching = true
			this.slideshows = {}
			this.resetSelectedPosition()
			this.search()
		}
	},
	computed: {
		summaryText() {
			if (!this.slideshows.length) return ''
			const message = this.slideshows.length == 1 ?
					this.__('Viewing 1 slideshow', 'ml-slider') :
					this.__('Viewing %s out of %s slideshows', 'ml-slider')
			return this.sprintf(message, this.slideshows.length, this.totalSlideshows)
		},
		highlighted() {
			if (!this.slideshows.length) return null
			return this.selectedSlideshow > -1 ? this.slideshows[this.selectedSlideshow].id : null
		},
		minHeight() {
			// Because height is vh, the min-height should be 300px unless they only have a few slideshows
			return this.slideshows.length > 4 ? 300 : this.slideshows.length * 50
		},
		...mapState({
			totalSlideshows: state => state.slideshows.totalSlideshows
		})
	},
	created() {
		// Run the filter again if the title changes
		EventManager.$on('metaslider/title-saved', () => {
			this.search()
		})
	},
	mounted() {
		hotkeys('ctrl+/', () => this.focusInput())
		hotkeys('escape', () => this.blurInput())
		hotkeys('enter', () => this.loadSlideshow())
		hotkeys('up,down', (e, h) => this.navigateSlideshows(e, h))
		hotkeys.filter = event => {
			return true // Allow keybinding on inputs
		}

		this.search()
	},
	methods: {
		// TODO: possibly delay the mouseover/out events by 200ms or add a slight transition
		focusInput() {
			this.$refs.switcher.focus()
		},
		blurInput() {
			this.maybeAboutToClick = false
			this.focused && this.$refs.switcher.blur()
		},
		resetInput() {
			this.focusInput()
			this.searchTerm = ''
		},
		loadSlideshow() {
			if (!this.focused) return
			if (this.selectedSlideshow < 0) return
			if (!this.slideshows.length) return

			event.preventDefault()

			window.location.replace(this.metasliderPage + '&id=' + this.slideshows[this.selectedSlideshow].id)
		},
		navigateSlideshows(event, handler) {
			if (!this.focused) return

			// Prevent the native behavior (page scroll down)
			event.preventDefault()

			switch(handler.key) {
				case 'down':
					// If the selected slideshow is in the final position, leave it there
					if ((this.selectedSlideshow + 1) < this.slideshows.length) {
						this.selectedSlideshow++
						this.bringSelectedItemIntoFocus()
					}
					break
				case 'up':
					// If the selected slideshow is not in the 0 position, move it up
					if (this.selectedSlideshow > 0) {
						this.selectedSlideshow--
						this.bringSelectedItemIntoFocus()
					}
					break
			}
		},
		bringSelectedItemIntoFocus() {
			if (this.$refs['switcher-view-area']) {
				this.$refs['switcher-view-area'].children[this.selectedSlideshow].scrollIntoView({
					block: "nearest"
				})
			}
		},
		resetSelectedPosition() {
			// Select the first in the list then scroll to it
			this.selectedSlideshow = 0
			this.bringSelectedItemIntoFocus()

			// Remove the selected
			this.selectedSlideshow = -1
		},
		search:_.debounce(function() {
			this.searching = true
			Slideshow.search(this.searchTerm, this.max).then(response => {
				this.slideshows = response.data.data
			}).catch(error => {
				this.notifyError('metaslider/search-error', error, true)
			}).finally(() => {
				this.searching = false
			})
		}, 500)
	}
}
</script>

<style>
.top-arrow::before {
	left: 15px !important;
	display: block !important;
    position: absolute !important;
    content: "" !important;
    width: 14px !important;
    height: 14px !important;
    background: #fff !important;
    z-index: 1000 !important;
    top: -7px !important;
    border-top: 1px solid #dae1e7 !important;
    border-right: 1px solid #dae1e7 !important;
    transform: rotate(-45deg) !important;
	border-radius: 2px !important;
}
[dir='rtl'] .top-arrow::before {
	left: auto !important;
	right: 15px !important;
}
</style>
admin/assets/js/app/assets/styles/globals.scss000064400000000331151213254770015503 0ustar00$red: #e82323;
$green: #46b450;
$blue-darkest: #1673A7;
$blue-dark: #0074a7;
$blue-light: #83b4d8;
$wp-gray-light: #f1f1f1;
$wp-gray: #9ea3a8;
$wp-black: #23292d;
$wp-links: #0073aa;
$orange: #dd6923;
$brand: $orange;admin/assets/js/app/assets/styles/_components.scss000064400000000772151213254770016415 0ustar00.metaslider .callout-box {
	background: $brand;
	display: block !important;
	p {
		color: white;
		margin: 0px;
		text-align: center;
	}
	strong {
		text-transform: uppercase;
		font-size: 1.3em;
		display: block;
		margin-bottom: 0.5rem;
	}
	.ms-ghost-button {
		display: inline-block;
		color: white;
		border: 1px solid;
		margin-top: 0.5rem;
		padding: 0.4rem 1rem;
		text-decoration: none;
		transition: all 0.3s ease-in-out;
		&:hover, &:active, &:focus {
			background: darken($brand, 10%);
		}
	}
}admin/assets/js/app/assets/styles/_modal.scss000064400000003024151213254770015315 0ustar00#metaslider-ui .close-x {
	cursor: pointer;
}
#metaslider-ui .sweet-modal-overlay {
	display: flex;
    justify-content: center;
	align-items: center;
	z-index: 999999;
	.sweet-modal {
		width: 100%;
		height: 100%;
		position: static;
	}
}
#metaslider-ui .sweet-modal-overlay.theme-dark {
	background: rgba(0, 0, 0, 0.7);
}
#metaslider-ui .sweet-modal {
	box-shadow: 0 5px 15px rgba(0,0,0,0.7);
	transform: none;
	* {
		box-sizing: border-box;
	}
	.sweet-title {
		flex: 0 0 auto;
		background-color: #fcfcfc;
		border-bottom-color: #dddddd;
		height: 40px;
		line-height: 40px;
		padding-left: 40px;
	}
	ul li.sweet-modal-tab {
		margin: 0;
		a {
			padding: 5px 10px 0;
			box-shadow: none;
			text-transform: uppercase;
			font-weight: 500;
			border-bottom: 1px solid transparent;
			font-size: 0.9em;
			color: #999;
		}
		&.active a, a:hover, a:active, a:focus {
			border-bottom: 1px solid $brand;
			color: $brand;
		}
	}
	.sweet-buttons {
		flex: 0 0 auto;
		z-index: 9;
		background-color: #fcfcfc;
		border-top-color: #dddddd;
	}
	.sweet-content {
		display: flex;
		flex: 1 1 auto;
		position: relative;
		overflow-y: auto;
		height: 100%;
		padding: 0;
		.sweet-content-content {
			border-radius: 5px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			flex-direction: column;
		}
	}
	.sweet-box-actions {
		z-index: 9;
		.sweet-action-close {
			color: white;
			height: 24px;
			width: 24px;
			line-height: 24px;
			border-radius: 0;
			&:hover {
				color: $brand;
				background: transparent;
			}
		}
	}
}
admin/assets/js/app/assets/styles/_utility.scss000064400000001166151213254770015731 0ustar00
// Progress bar
.ms-upload-progress {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	.ms-progress {
		background: $blue-light;
		position: relative;
		border-radius: 0;
		box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
		padding: 4px;
		width: 75%;
		span {
			position: absolute;
			top: 0;
			width: 100%;
			text-align: center;
			color: black;
		}
	}

	.ms-progress-bar {
		width: 0;
		border-radius: 0px;
		background: rgba(white, 0.7);
		height: 18px;
		transition: 0.4s linear;
		transition-property: width, background-color;
	}
}
admin/assets/js/app/assets/styles/mixins.scss000064400000000272151213254770015373 0ustar00@mixin from($breakboint) {
	@media screen and (min-width: $breakboint) {
		@content;
	}
}
@mixin until($breakboint) {
	@media screen and (max-width: $breakboint - 1px) {
		@content;
	}
}admin/assets/js/app/assets/styles/main.scss000064400000000164151213254770015010 0ustar00@import "./globals.scss";
@import "./mixins.scss";
@import "./utility";

@import "./components";
@import "./modal";
admin/assets/js/app/themes/components.js000064400000000271151213254770014351 0ustar00/**
 * Load all the components. needed for the app
 */

import Vue from 'vue'
import SweetModal from 'sweet-modal-vue/src/plugin.js'

Vue.use(SweetModal)

export default { SweetModal }
admin/assets/js/app/themes/ThemeViewer.vue000064400000057174151213254770014611 0ustar00<template>

	<!-- This component will work similar to the featured image component -->
	<section
		v-if="current.id"
		:class="{'unsupported': unsupportedSliderType}"
		class="theme-select-module">
		<p v-if="hasThemeSet">
			{{ __('Slideshow Theme', 'ml-slider') }}<span>: {{ current.theme.title }}</span>
		</p>
		<div
			:class="{'ms-modal-open': is_open}"
			class="inside wp-clearfix metaslider-theme-viewer">

			<!-- If the theme is not supported we should show an error -->
			<p
				v-if="(hasThemeSet && unsupportedSliderType)"
				class="slider-not-supported-warning">
                <svg class="inline w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
                </svg>
				{{ __('This theme is not officially supported by the slider you chose. Your results might vary.', 'ml-slider') }}
			</p>

			<!-- If there's a theme already set -->
			<div
				v-if="hasThemeSet"
				class="ms-current-theme">
				<button
					style="width:100%;text-decoration:none"
					type="button"
					class="button-link change-theme-img-button"
					@click="openModal">
					<div
						v-if="'custom' == current.theme.type"
						class="custom-theme-single">
						<span class="custom-subtitle">
							{{ __('Custom theme', 'ml-slider') }}
						</span>
						{{ current.theme.title }}
					</div>
					<div v-else>
						<img
							v-if="current.theme.screenshot_dir"
							:src="current.theme.screenshot_dir + '/screenshot.png'"
							:alt="current.theme.title">
						<img
							v-else
							:src="themeDirectoryUrl + current.theme.folder + '/screenshot.png'"
							:alt="current.theme.title">
					</div>
				</button>
				<button
					type="button"
					class="button-link remove-theme"
					@click="removeTheme">{{ __('Remove', 'ml-slider') }}
				</button>
				<button
					type="button"
					class="button-link change-theme"
					@click="openModal">{{ __('Change', 'ml-slider') }}
				</button>
			</div>

			<!-- If no theme then we render the theme select button -->
			<div v-else>
				<p>
					{{ __('Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!', 'ml-slider') }}
				</p>
				<button
					v-if="Object.keys(themes).length || Object.keys(customThemes).length"
					type="button"
					class="button"
					@click="openModal">{{ __('Select a custom theme', 'ml-slider') }}
				</button>
			</div>

			<!-- This will be a modal for showing the themes -->
			<sweet-modal
				ref="themesModal"
				:hide-close-button="true"
				:blocking="true"
				:pulse-on-block="false"
				overlay-theme="dark"
				@close="is_open = false">
				<button
					slot="box-action"
					@click.prevent="$refs.themesModal.close()">
                    <svg class="w-6 -mt-1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
                    </svg>
				</button>
				<sweet-modal-tab
					id="all"
					:title="__('All themes', 'ml-slider')">
					<div v-if="loading || loadingCustom">
						{{ __('Loading...', 'ml-slider') }}
					</div>
					<template v-if="(themes && Object.keys(themes).length) || (Object.keys(customThemes).length && proUser)">
						<div class="columns">
							<div class="theme-list-column">
								<ul class="ms-image-selector regular-themes">
									<li
										v-if="themes && Object.keys(themes).length"
										v-for="theme in themes"
										:key="theme.folder"
										:class="{ 
											'a-theme': true, selected: (selectedTheme.folder === theme.folder), 
											'unlock-pro-theme-ad': nonSelectablePremiumTheme(theme.type)
										}"
										role="checkbox"
										@mouseover="hoveredTheme = theme; showPremiumThemeAd(theme.type, theme.folder)"
										@mouseout="hoveredTheme = selectedTheme"
										@mouseleave="hidePremiumThemeAd(theme.type)"
										@click="nonSelectablePremiumTheme(theme.type) ? null : selectTheme(theme)">
										<span>
											<div 
												v-if="revealThemeAd === theme.folder"
												class="custom-theme-single upgrade-pro-theme-ad">
												<h3 class="text-white mb-3">{{ __('Get MetaSlider Pro!', 'ml-slider') }}</h3>
												<p class="text-white font-normal text-sm mb-3">
													{{ __('Upgrade now to unlock this theme!', 'ml-slider') }}
												</p>
												<a class="w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base" :href="hoplink" target="_blank">{{ __('Upgrade now', 'ml-slider') }} <span class="dashicons dashicons-external border-0"></span></a>
											</div>
											<img
												v-if="theme.screenshot_dir"
												:src="theme.screenshot_dir + '/screenshot.png'"
												:alt="theme.title">
											<img
												v-else
												:src="themeDirectoryUrl + theme.folder + '/screenshot.png'"
												:alt="theme.title">
										</span>
									</li>

									<template v-if="Object.keys(customThemes).length && proUser">
										<li
											v-for="theme in customThemes"
											:key="theme.folder"
											:class="{ 'a-theme': true, selected: (selectedTheme.folder == theme.folder) }"
											role="checkbox"
											@mouseover="hoveredTheme = theme"
											@mouseout="hoveredTheme = selectedTheme"
											@click="selectTheme(theme)">
											<span>
												<div class="custom-theme-single">
													{{ theme.title }}
												</div>
											</span>
										</li>
									</template>
									<template v-else-if="!Object.keys(customThemes).length && proUser && !loadingCustom">
										<li class="a-theme">
											<span>
												<div class="custom-theme-single upgrade-pro-theme-ad">
													<h3 class="text-white mb-3">{{ __('MetaSlider Pro is installed!', 'ml-slider') }}</h3>
													<p class="text-white font-normal text-sm mb-3">
														{{ __('You can create your own themes with our theme editor', 'ml-slider') }}
													</p>
													<a class="w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base" :href="themeEditorLink">{{ __('Get started', 'ml-slider') }}</a>
												</div>
											</span>
										</li>
									</template>
									<template v-else>
										<li class="a-theme unlock-pro-custom-themes-ad">
											<span>
												<div class="custom-theme-single upgrade-pro-theme-ad">
													<h3 class="text-white mb-3">{{ __('Get MetaSlider Pro!', 'ml-slider') }}</h3>
													<p class="text-white font-normal text-sm mb-3">
														{{ __('Upgrade now to build your own custom themes!', 'ml-slider') }}
													</p>
													<a class="w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base" :href="hoplink" target="_blank">{{ __('Upgrade now', 'ml-slider') }} <span class="dashicons dashicons-external border-0"></span></a>
												</div>
											</span>
										</li>
									</template>
								</ul>
							</div>
							<div class="theme-details-column">
								<template v-if="showThemeDetails && hoveredTheme.type !== 'custom'">
									<div>
										<h1
											slot="button"
											class="metaslider-theme-title"
											v-text="hoveredTheme.title"/>
										<template v-if="hoveredTheme.description">
											<div class="ms-theme-description">
												<h2>{{ __('Theme Details', 'ml-slider') }}</h2>
												<p v-html="hoveredTheme.description"/>
											</div>
										</template>
										<template v-if="hoveredTheme.instructions">
											<div class="ms-theme-instructions">
												<h2>{{ __('Theme Instructions', 'ml-slider') }}</h2>
												<p v-html="hoveredTheme.instructions"/>
											</div>
										</template>
									</div>
									<div v-if="hoveredTheme && hoveredTheme.tags && hoveredTheme.tags.length">
										<h3>{{ __('Tags', 'ml-slider') }}</h3>
										<ul class="ms-theme-tags">
											<li
												v-for="(tag, i) in hoveredTheme.tags"
												:key="i"
												v-text="tag"/>
										</ul>
									</div>
								</template>
								<template v-else-if="hoveredTheme.type === 'custom'">
									<div>
										<h1 class="metaslider-theme-title">{{ hoveredTheme.title }}</h1>
										<div class="ms-theme-description">
											<h2>{{ __('Theme Details', 'ml-slider') }}</h2>
											<p>{{ __('This theme was created through the theme editor.', 'ml-slider') }}</p>
											<p>{{ __('If no theme is selected we will use the default theme provided by the slider plugin', 'ml-slider') }}</p>
										</div>
									</div>
								</template>
								<template v-else>
									<div>
										<h1 class="metaslider-theme-title">{{ __('How To Use', 'ml-slider') }}</h1>
										<p>{{ __('Select a theme on the left to use on this slideshow. Click the theme for more details.', 'ml-slider') }}</p>
										<p>{{ __('If no theme is selected we will use the default theme provided by the slider plugin', 'ml-slider') }}</p>
									</div>
								</template>
							</div>
						</div>
					</template>
					<template v-else>
						<div class="free-themes-not-found">
							<h1>{{ __('Error: No themes were found.', 'ml-slider') }}</h1>
						</div>
					</template>
				</sweet-modal-tab>
				<template
					slot="button">
					<div>
						<span
							v-if="sliderTypeNotSupported"
							class="slider-not-supported-warning">
                            <svg class="inline w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
                            </svg>
							{{ __('This theme is not officially supported by the slider you chose. Your results might vary.', 'ml-slider') }}</span>
					</div>
					<div class="flex items-center">
						<button
							:title="__('Preview slideshow', 'ml-slider')"
							class="flex items-center m-0 mr-1 text-gray-darker"
							@click.prevent="openPreview">
                            <svg class="w-6 inline mr-1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z" />
                            </svg>
                            {{ __('Preview', 'ml-slider') }}
						</button>
						<button
							:disabled="!selectedTheme.folder"
							class="button button-primary"
							@click.stop.prevent="setTheme">{{ __('Select', 'ml-slider') }}
						</button>
					</div>
				</template>
			</sweet-modal>
		</div>
	</section>
</template>

<script>
import { EventManager } from '../utils'
import { Axios } from '../api'
import './components'
import { mapGetters } from 'vuex'
import QS from 'qs'

export default {
	props: {
		themeDirectoryUrl: {
			type: [String],
			default: ''
		}
	},
	data() {
		return {
			loading: true,
			loadingCustom: true,
			unsupportedSliderType: false,
			themes: {},
			customThemes: {},
			selectedTheme: {},
			hoveredTheme: {},
			is_open: false,
			revealThemeAd: null
		}
	},
	watch: {
		currentThemeSupports() {
			// TODO: Settings - once reactive, refactor this
			this.updateSupportedStatus()
		},
		current: {
			immediate: true,
			handler: function(current) {
				// hoveredTheme controls what shows in the sidebar
				if (!this.current || !this.current.theme || 'none' === this.current.theme) {
					this.selectedTheme = this.hoveredTheme = this.themeStub()
					return
				}
				this.selectedTheme = this.current.theme
				this.hoveredTheme = this.current.theme
			}
		}
	},
	computed: {
		showThemeDetails() {
			return this.hoveredTheme.description || (this.selectedTheme.description && !this.isCustomTheme)
		},
		isCustomTheme() {
			if (!this.selectedTheme) return false
			return this.selectedTheme && this.selectedTheme.folder ? this.selectedTheme.folder.startsWith('_theme') : false
		},
		sliderTypeNotSupported() {
			if (!this.hovererdTheme || !this.hoveredTheme.tags) {
				return false
			}

			// TODO: Settings - once reactive, refactor this
			let currentType = document.querySelector('input[name="settings[type]"]:checked')
			if (!currentType) return false
			return parseInt(this.hoveredTheme.supports.indexOf(currentType.value), 10) === -1
		},
		supportLink() {
			return this.proUser ? 'https://www.metaslider.com/support/' : 'https://wordpress.org/support/plugin/ml-slider'
		},
		currentThemeSupports() {
			if (!this.current.id) return undefined
			return this.current.theme ? this.current.theme.supports : undefined
		},
		hasThemeSet() {
			if (!this.current.id || !this.current.hasOwnProperty('theme')) return false
			return this.current.theme.hasOwnProperty('folder') && this.current.theme.folder.length
		},
		...mapGetters({
			current: 'slideshows/getCurrent'
		})
	},
	created() {},
	mounted() {
		this.fetchThemes()

		// TODO: when converting settings to vue, this could be removed
		document.querySelectorAll('input[name="settings[type]"]').forEach(sliderType => {
			sliderType.addEventListener('click', event => {

				// TODO: Settings - once reactive, refactor this
				this.updateSupportedStatus()

				// hack to work with non-vue (refreshes computed properties)
				this.hoveredTheme = {}
				this.hoveredTheme = this.selectedTheme || this.current.theme
			})
		})

		this.updateSupportedStatus()
	},
	methods: {
		fetchThemes() {

			// Pre-built themes
			Axios.get('themes/all', {
				params: {
					action: 'ms_get_all_free_themes'
				}
			}).then(response => {
				this.themes = response.data.data
				this.loading = false
			}).catch(error => {
				this.loading = false
				this.notifyError('metaslider/theme-error', error, true)
			})

            // Custom themes
            this.loadingCustom = this.proUser
			this.proUser && Axios.get('themes/custom', {
				params: {
					action: 'ms_get_custom_themes'
				}
			}).then(response => {
				this.customThemes = (typeof response.data.data === 'object') ? response.data.data : {}
				this.loadingCustom = false
			}).catch(error => {
				this.loadingCustom = false
				this.notifyError('metaslider/theme-error', error, true)
			})
		},
		selectTheme(theme) {
			this.selectedTheme = (this.selectedTheme === theme) ? {} : theme
		},
		removeTheme() {
			this.selectedTheme = {}
			this.setTheme()
		},
		setTheme() {
			this.notifyInfo('metaslider/theme-updating', this.__('Saving theme...', 'ml-slider'))
			this.$refs.themesModal.close()

			// If the selected theme is set and already the current theme, do nothing
			if (Object.keys(this.selectedTheme).length && Object.is(this.selectedTheme.folder, this.current.theme.folder)) {
				this.notifySuccess('metaslider/theme-updated', this.__('Theme saved', 'ml-slider'), true)
			} else {
				this.$store.commit('slideshows/updateTheme', this.selectedTheme)

				Axios.post('themes/set', QS.stringify({
					action: 'ms_set_theme',
					slideshow_id: this.current.id,
					theme: this.selectedTheme
				})).then(response => {
					this.notifySuccess('metaslider/theme-updated', this.__('Theme saved', 'ml-slider'), true)
				}).catch(error => {
					this.notifyError('metaslider/theme-error', error, true)
				})
			}
		},
		openModal() {
			// TODO: when converting settings to vue, this could be removed.
			// It's used to force re-render of the UI
			this.hoveredTheme = this.selectedTheme || this.current.theme

			// If a current theme is selected, show that tab
			let tab = 'all'
			this.is_open = true
			this.$refs.themesModal.open(tab)
		},
		openPreview() {
			EventManager.$emit('metaslider/preview', {
				slideshowId: this.current.id,
				themeId: this.selectedTheme ? this.selectedTheme.folder : ''
			})
		},
		updateSupportedStatus() {
			if (!this.current.id || 'undefined' === typeof this.currentThemeSupports) return true
			let currentType = document.querySelector('input[name="settings[type]"]:checked')
			this.unsupportedSliderType = this.currentThemeSupports ? this.currentThemeSupports.indexOf(currentType.value) === -1 : false
		},
		themeStub() {
			return {
				description: null,
				folder: null,
				images: [],
				supports: [],
				tags: [],
				title: null,
				type: null
			}
		},
		showPremiumThemeAd(type, id) {
			if (this.nonSelectablePremiumTheme(type)) {
				this.revealThemeAd = id;
			}
		},
		hidePremiumThemeAd(type) {
			if (this.nonSelectablePremiumTheme(type)) {
				this.revealThemeAd = null;
			}
		},
		nonSelectablePremiumTheme(type) {
			return !this.proUser && type === 'premium';
		}
	}
}
</script>

<style lang="scss">
	@import '../assets/styles/globals.scss';
	@import '../assets/styles/mixins.scss';

	#metaslider-ui .metaslider-theme-viewer {
		p {
			margin-top: 0;
			color: #444;
		}
	}
	#metaslider-ui .metaslider-theme-viewer > .sweet-modal-overlay > .sweet-modal {
		position: absolute;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100%;
		max-width: 90%;
		max-height: 90%;
		left: 5%;
		top: 5%;
		right: 0;
		bottom: 0;
		overflow: visible;
		> .sweet-buttons {
			display: flex;
			align-items: center;
			justify-content: space-between;
			button {
				margin-left: 0.5rem;
			}
			.metaslider-theme-title {
				font-size: 1.3em;
				margin-top: 0.3em;
			}
		}
	}
	#metaslider-ui .sweet-modal .columns {
		display: flex;
		flex-direction: row;
		.theme-list-column {
			width: 75%;
			position: absolute;
			left: 0;
			top: 0;
			bottom: 0;
			right: 0;
			overflow: auto;
		}
		.theme-details-column {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			width: 25%;
			background: #f3f3f3;
			border-left: 1px solid #dddddd;
			position: absolute;
			bottom: 0;
			top: 0;
			right: 0;
			height: 100%;
			text-align: left;
			padding: 0 1rem 1rem;
			color: #666;
			[dir='rtl'] & {
				right: auto;
    			left: 0;
			}
			.metaslider-theme-title {
				background-color: #e8e8e8;
				color: #4a4a4a;
				font-size: 1.5em;
				font-weight: 500;
				margin: -1.5rem -1rem 1.5rem;
				padding: 0.5rem 1rem 0.4rem;
			}
			h2, h3 {
				margin: 0;
				margin-top: 1.5rem;
				margin-bottom: .6em;
				color: #666;
				padding: 0;
				font-weight: 600;
				text-transform: uppercase;
				font-size: 1em;
			}
			h2:first-of-type {
				margin-top: 0;
			}
			h3 {
				font-size: 0.9em;
				text-transform: none;
			}
			p {
				line-height: 1.4;
				font-size: 0.9em;
			}
			.ms-theme-description {
				margin-bottom: 2rem;
			}
			ul.ms-theme-tags {
				margin: 0;
				li {
					border-radius: 0.2em;
					display: inline-block;
					margin-right: 0.4em;
					line-height: 1;
					white-space: nowrap;
					font-size: 13px;
					line-height: 1;
					margin-right: 0.4em;
					white-space: nowrap;
					background: lightgray;
					padding: 5px;
					color: #555;
					// border-bottom: 1px solid #b4b6b7;
					// &:hover {
					// 	border-bottom: 1px solid #747b7d;
					// }
				}
			}
		}
	}
	#metaslider-ui .free-themes-not-found {
		max-width: 455px;
		h1 {
			color: $brand;
		}
	}
	#metaslider-ui .ms-image-selector {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
		padding: 0.5rem;
		li {
			background: #fafafa;
			cursor: pointer;
			margin: 0;
			padding: 2px;
			width: 33.3%;
			@include from(1850px) {
				width: 25%;
			}
			@include until(1100px) {
				width: 50%;
			}
			@include until(900px) {
				width: 100%;
			}
			img {
				max-width: 100%;
				display: block;
				width: 100%;
			}
			span {
				border: 4px solid #fafafa;
				height: 100%;
				display: block;
				padding: 2px;
			}
			&:hover span {
				border-color: #ccc;
			}
			&.selected span {
				border-color: $blue-dark;
			}
		}
	}
	#metaslider-ui .ms-image-selector li.ms-theme-more {
		cursor: default;
		span {
			font-size: 1.5em;
			text-transform: uppercase;
			line-height: 1.3;
			background: #efefef;
			border-color: #FFFFFF !important;
			height: 100%;
			> div {
				padding: 2rem;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: space-around;
				height: 100%;
				border: 4px solid #eaeaea;
			}
			small {
				font-size: 15px;
				text-transform: initial;
			}
		}
	}

	// Styles for the smaller box
	#metaslider-ui .theme-select-module {
		min-height: 70px;
		.button-info {
			margin-top: 0;
		}
	}
	#metaslider-ui .metaslider-theme-viewer {
		z-index: 3;
		position: relative;
		&.ms-modal-open {
			z-index: 999999;
		}
	}
	#metaslider-ui .theme-select-module .hndle {
		padding-bottom: 0;
	}
	#metaslider-ui .theme-select-module .hndle span {
		color: $brand;
	}
	#metaslider-ui .theme-select-module .slider-not-supported-warning {
		margin-bottom: 1em;
		svg {
			color: $red !important;
		}
	}
	#metaslider-ui .theme-select-module .sweet-buttons .slider-not-supported-warning {
		margin-bottom: 0;
	}
	#metaslider-ui .theme-select-module .change-theme-img-button {
		img {
			display: block;
			max-width: 100%;
			width: 100%;
		}
	}
	#metaslider-ui .ms-current-theme .custom-theme-single {
		min-height: 0;
		height: 177px;
	}
	#metaslider-ui .ms-current-theme .custom-theme-single .custom-subtitle {
		font-size: 12px;
		font-weight: 300;
		text-transform: uppercase;
		color: darken(white, 15%);
		margin-bottom: 0.1em;
	}
	#metaslider-ui .custom-theme-single {
		width: 100%;
		min-height: 216px;
		height: 100%;
		line-height: normal;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 24px;
		font-weight: 600;
		background-color: #2271b1;
		color: white;
		padding: 1rem;
		box-sizing: border-box;
	}
	.regular-themes {
		.a-theme {
			//min-height: 216px;
		}
		.unlock-pro-theme-ad {
			span {
				position: relative
			}
			.custom-theme-single {
				position: absolute;
				z-index: 2;
			}
			img {
				//position: absolute;
				z-index: 1;
				width: calc( 100% - 4px ) !important;
				height: auto !important;
			}
			.upgrade-pro-theme-ad {
				width: calc( 100% - 4px ) !important;
				height: calc( 100% - 4px ) !important;

				@media (max-width: 1199px) and (min-width: 1100px) {
					h3 {
						display: none;
					}
				}
			}
		}
		.unlock-pro-custom-themes-ad {
			.upgrade-pro-theme-ad {
				@media (max-width: 1199px) and (min-width: 1100px) {
					h3 {
						display: none;
					}
				}
			}
		}
	}
	#metaslider-ui .sweet-modal-tabs li.sweet-modal-tab {
		display: none !important;
	}
	@include until(700px) {
		#metaslider-ui .sweet-modal {
			.sweet-content {
				display: block;
			}
			.columns {
				flex-direction: column;
				& > div {
					position: static!important;
					width: 100% !important;
				}
			}
		}
	}
	// Fade the custom theme backgrounds for variety
	// $step:1;
	// $color: $brand;
	// @while $step <=5  {
	// 	#metaslider-ui .custom-themes li:nth-child(10n+#{$step}) > div {
	// 		background: linear-gradient($color, darken($color, (5%)));
	// 	}
	// 	$color: darken($color, (5%));
	// 	$step: $step + 1;
	// }
	// $step:6;
	// @while $step <=10  {
	// 	#metaslider-ui .custom-themes li:nth-child(10n+#{$step}) > div {
	// 		background: linear-gradient($color, lighten($color, (5%)));
	// 	}
	// 	$color: lighten($color, (5%));
	// 	$step: $step + 1;
	// }
</style>
admin/assets/js/app/themes/index.js000064400000000104151213254770013266 0ustar00import ThemeViewer from './ThemeViewer.vue'

export { ThemeViewer }
admin/assets/js/app/extra/Shortcode.vue000064400000003103151213254770014134 0ustar00<script>
import { EventManager } from '../utils'
import { mapGetters } from 'vuex'
export default {
	data() {
		return {
			useTitle: false
		}
	},
	computed: {
		...mapGetters({
			current: 'slideshows/getCurrent'
		})
	},
	mounted() {
		// Add a filter to optimize the copy output
		this.$refs.shortcode.addEventListener('copy', event => {
			let text = window.getSelection()
				.toString().split("'")
				.map(function(string, index) {
					return string.trim()
				}).join("'")
			event.clipboardData.setData('text/plain', text)
			event.preventDefault()
		})
	},
	methods: {
		copyShortcode(event) {
			this.selectText(event.target).copySelected()
		},
		copyAll() {
			this.selectText(this.$refs.shortcode).copySelected()
		},
		selectText(node) {
			let range
			let selection

			// Most browsers will be able to select the text
			if (window.getSelection) {
				selection = window.getSelection()
				range = document.createRange()
				range.selectNodeContents(node)
				selection.removeAllRanges()
				selection.addRange(range)
			} else if (document.body.createTextRange) {
				range = document.body.createTextRange()
				range.moveToElementText(node)
				range.select()
			}

			return this
		},
		copySelected() {

			// Some browsers will be able to copy the text too!
			try {
				if (document.execCommand('copy')) {
					this.notifySuccess('metaslider/copy-success', this.__('Shortcode copied', 'ml-slider'), true)
				}
			} catch (err) {
				this.notifySuccess('metaslider/copy-error', this.__('Shortcode unable to be copied automatically', 'ml-slider'), true)
			}
		}
	}
}
</script>
admin/assets/js/app/extra/index.js000064400000000172151213255000013114 0ustar00import Shortcode from './Shortcode.vue'
import UtilityModal from './UtilityModal.vue'

export { Shortcode, UtilityModal }
admin/assets/js/app/extra/UtilityModal.vue000064400000004342151213255000014613 0ustar00<template>
	<div
		v-if="component"
		style="z-index:99999"
        role="dialog"
        aria-modal="true"
		class="fixed w-full h-full inset-0 bg-white-70 flex items-center justify-center p-8 md:p-16">
		<div
			:class="classes"
			class="relative bg-white shadow-xl mt-16 md:mt-0">
			<component :is="component"/>
			<button
                v-if="showX"
                aria-label="Close Modal"
				class="close-pin-btn absolute top-0 right-0 rtl:right-auto rtl:left-0 text-gray-dark -mr-3 rtl:mr-0 rtl:-ml-3 -mt-3 p-1.5 bg-white rounded-full w-8 h-8 flex items-center justify-center shadow cursor-pointer border border-gray-lighter"
				@click="close">
                <svg class="w-full" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
                    <path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" />
                </svg>
			</button>
		</div>
	</div>
</template>

<script>
import { EventManager } from '../utils'
export default {
	data() {
		return {
			component: null,
			filename: '',
			classes: 'w-full max-h-screen',
            forceOpen: false,
            showX: true,
		}
	},
	computed: {},
	mounted() {
		EventManager.$on('metaslider/open-utility-modal', data => {
			if (false === 'render' in data) {
				this.notifyError('metaslider/utility-modal-opening-ui', this.__('Failed to open utility modal...', 'ml-slider'))
				return false
			}

			this.filename = 'filename' in data ? data.filename : 'Name not found'
			this.notifyInfo('metaslider/utility-modal-opening-ui', this.__('Opening utility modal...', 'ml-slider') + ' (' + this.filename + ')')
			this.component = data
			document.body.style.overflow = 'hidden'
		})
	},
	methods: {
		close() {
			if (this.forceOpen) {
				this.forceOpen()
				this.$nextTick(() => {
					this.forceOpen = false
				})
				return
			}
			this.notifyInfo('metaslider/utility-modal-closing-ui', this.__('Closing utility modal...', 'ml-slider') + ' (' + this.filename + ')')
			this.filename = ''
			this.component = null
			document.body.style.overflow = 'initial'
		}
	}
}
</script>
admin/assets/js/gutenberg/editor-block.js000064400000007142151213255000014446 0ustar00import icon from './components/metaslider-icon'
// Edit function
import edit from './components/block-edit'
// Save function
import save from './components/block-save'

// Import Gutenberg variables and functions
const wp = window.wp
const {__} = wp.i18n
const {
	registerBlockType
} = wp.blocks
const {registerStore, dispatch, withSelect} = wp.data
const {apiRequest} = wp

// Default state for the store
const DEFAULT_STATE = {
	items: [],
	isLoading: true
}
/**
 * Register a store, to fetch and store our slideshows
 * https://github.com/WordPress/gutenberg/tree/master/data
 */
registerStore('metaslider', {
    reducer(state = DEFAULT_STATE, action) {
        switch (action.type) {
            case 'SET_SLIDESHOWS':
                return {
                    items: action.items,
                    isLoading: false
                }
        }
        return state
    },
    actions: {
        setSlideshows(items) {
            return {
                type: 'SET_SLIDESHOWS',
                items
            }
        }
    },
    selectors: {
        getSlideshows(state) {
            return state
        }
    },
    resolvers: {
        getSlideshows(state, result) {
            // const items = await
            try {
                apiRequest({path: '/metaslider/v1/slideshow/list'}).then(result => {
                    if (true === result.success) {
                        dispatch('metaslider').setSlideshows(result.data)
                    } else {
                        console.warn('MetaSlider: API Request error:', result.data.message)
                        dispatch('metaslider').setSlideshows([])
                    }
                })
            } catch (error) {
                console.warn('MetaSlider: API Request error:', error)
                dispatch('metaslider').setSlideshows([])
            }
        }
    }
})

/**
 * Register Gutenberg Block
 *
 * @param  {string}   name     Block name.
 * @param  {Object}   settings Block settings.
 * @return {?WPBlock}          The block, if it has been successfully
 *                             registered; otherwise `undefined`.
 */
registerBlockType('metaslider/slider', {
    title: 'MetaSlider',
    description: __('Use MetaSlider to insert slideshows and sliders in your page', 'ml-slider'),
    icon: icon,
    category: 'common',
    keywords: [__('slider', 'ml-slider'), __('slideshow', 'ml-slider'), __('gallery', 'ml-slider')],
    attributes: {
        slideshowId: {
            type: 'number',
            default: 0
        },
        stretch: {
            type: 'string',
            default: 'normal'
        },
        containerClass: {
            type: 'string',
            default: ''
        }
    },
    supports: {
        customClassName: false
    },

    /**
     * Edit function
     * withSelect is the gets content from the gutenberg store. The MS store is setup above.
     */
    edit: withSelect((select, ownProps) => {
        const {getSlideshows} = select('metaslider')
        return {
            slideshows: getSlideshows()
        }
    })(
        edit
    ),

    /**
     *  The "save" property must be specified and must be a valid function.
     *
     * @param  {obj}  props
     * @return {bool} false because content is dynamic (see php file)
     */
    save: props => save(props),

    /**
     * getEditWrapperProps: adds attributes to root block
     *
     * @param {object} attributes
     * @return {object|void}
     */
    getEditWrapperProps(attributes) {
        const {stretch} = attributes
        if (['wide', 'full', 'normal'].indexOf(stretch) !== -1) {
            return {'data-align': stretch}
        }
    }
})
admin/assets/js/gutenberg/components/metaslider-icon.js000064400000001075151213255000017333 0ustar00/**
 * MetaSlider svg icon - circle icon only.
 */

const MetasliderIcon = <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 255.8 255.8" xmlSpace="preserve"><g><path d="M127.9,0C57.3,0,0,57.3,0,127.9c0,70.6,57.3,127.9,127.9,127.9c70.6,0,127.9-57.3,127.9-127.9C255.8,57.3,198.5,0,127.9,0z M16.4,177.1l92.5-117.5L124.2,79l-77.3,98.1H16.4z M170.5,177.1l-38.9-49.4l15.5-19.6l54.4,69H170.5z M208.5,177.1L146.9,99 l-61.6,78.2h-31l92.5-117.5l92.5,117.5H208.5z"/></g></svg>

export default MetasliderIcon
admin/assets/js/gutenberg/components/block-save.js000064400000001017151213255000016276 0ustar00// @codingStandardsIgnoreFile
const {Fragment} = window.wp.element
/**
 * Save function - the output will be displayed on the frontend
 *
 * @param {object} props
 * @return {domObject}
 */
const save = (props) => {
    let {slideshowId, stretch, containerClass} = props.attributes
    let stretchClassName = stretch ? 'align' + stretch : ''

    return (!!slideshowId && <Fragment>
        <div class={stretchClassName}>
            [metaslider id="{slideshowId}"]
        </div>
    </Fragment>) || ''
}

export default save
admin/assets/js/gutenberg/components/block-edit.js000064400000013543151213255000016274 0ustar00// @codingStandardsIgnoreFile
import icon from './metaslider-icon'
import MetaSliderPreview from './preview'
import BlockStretchToolbar from './stretch-toolbar'
import SlideshowSelector from './slideshow-selector'
import RefreshButton from './refresh-button'
import {BlockControls, InspectorAdvancedControls, InspectorControls} from '@wordpress/block-editor'

const wp = window.wp
const {__} = wp.i18n

const {Fragment} = wp.element
const {withSelect} = wp.data
const {
    TextControl,
    // SelectControl,
    Placeholder,
    Spinner,
    PanelBody,
    BaseControl
} = wp.components

const blockConfig = window.metaslider_block_config || {}

/**
 * Edit function - renders the block
 *
 * @param {object} props
 * @return {object}
 */
const edit = (props) => {
    let {slideshows, className, isSelected, wideControlsEnabled = false} = props
    let slideshowId = props.attributes.slideshowId
    let stretch = props.attributes.stretch
    let containerClass = props.attributes.containerClass
    let isLoading = slideshows.isLoading
    let hasSlideshows = slideshows.items.length || false
    let refreshPreview = props.attributes.refreshPreview
    /**
     * inspectorControls contains the different block controls
     * - InspectorControls: controls in the sidebar
     * - BlockControls: action controls on the block
     */
    const inspectorControls = isSelected && (
        <Fragment key='inspectorControls'>
            <InspectorControls key='inspector'>
                <PanelBody title={__('Slideshow settings', 'ml-slider')}>
                    {hasSlideshows && <SlideshowSelector
                        props={props}
                    />}
                    {slideshowId !== 0 && <a
                        href={blockConfig.plugin_page + '&id=' + slideshowId}
                        target="_blank"
                        className={'ms-edit-current-slideshow'}
                    >{__('Edit slideshow', 'ml-slider')}</a>}
                    {wideControlsEnabled && <BaseControl
                        label={__('Slideshow width', 'ml-slider')}>
                        <BlockStretchToolbar
                            value={stretch}
                            onChange={(nextStretch) => {
                                setTimeout(() => {
                                    window.dispatchEvent(new Event('resize'))
                                }, 50)
                                props.setAttributes({stretch: nextStretch})
                            }}
                        />
                    </BaseControl>}
                </PanelBody>
            </InspectorControls>
            <InspectorAdvancedControls>
                <BaseControl
                    label={__('Additional CSS Class', 'ml-slider')}>
                    <TextControl
                        value={containerClass}
                        onChange={(nextcontainerClass) => {
                            props.setAttributes({containerClass: nextcontainerClass})
                        }}/>
                </BaseControl>
            </InspectorAdvancedControls>
            <BlockControls key='controls'>
                {wideControlsEnabled && <BlockStretchToolbar
                    label={__('Slideshow width', 'ml-slider')}
                    value={stretch}
                    onChange={(nextStretch) => {
                        setTimeout(() => {
                            window.dispatchEvent(new Event('resize'))
                        }, 50)
                        props.setAttributes({stretch: nextStretch})
                    }}
                />}
                {slideshowId !== 0 && <RefreshButton
                    key='refresh'
                    label={__('Refresh preview', 'ml-slider')}
                    onClick={() => {
                        props.setAttributes({refreshPreview: !refreshPreview})
                    }}
                />}
            </BlockControls>
        </Fragment>
    )

    // The slideshows list is loading
    if (!hasSlideshows && !slideshowId && isLoading) {
        return <Placeholder
            className={className}
            label={[icon, ' MetaSlider']}>
            <Spinner key="spinner"/> {__('Loading slideshows list...', 'ml-slider')}
        </Placeholder>
        // No slideshows were found
    } else if (!hasSlideshows && !slideshowId && !isLoading) {
        return <Placeholder
            className={className}
            label={[icon, ' MetaSlider']}>
            {__('No slideshows found.', 'ml-slider')}&nbsp;<a target='_blank'
                                                              href={blockConfig.plugin_page}>{__('Create one now!', 'ml-slider')}</a>
        </Placeholder>
    }

    /**
     * - inspectorControls
     * - MetaSliderPreview: the iframe component
     * - Placeholder: a placeholder with the select if no slideshow is selected
     *
     * @return {array}
     */
    return [
        inspectorControls,
        !!slideshowId && <MetaSliderPreview
            key="preview"
            className={className}
            src={blockConfig.preview_url + '&slideshow_id=' + slideshowId}
            slideshowId={slideshowId}
            isSelected={isSelected}
            refresh={refreshPreview}
        />,
        !slideshowId && <Placeholder
            key="instructions"
            className={props.className}
            label={[icon, ' MetaSlider']}
        >
            <SlideshowSelector
                key="slidehow-selector"
                props={props}
            />
        </Placeholder>
    ]
}

/**
 * withSelect - Gutenberg store / data management
 *
 * Fetches the 'alignWide' setting (defined by add_theme_support())
 */
export default withSelect(
    (select) => ({
        wideControlsEnabled: select('core/editor') 
                                && select('core/editor').getCurrentPostType() === 'post' 
                                && select('core/editor').getEditorSettings().alignWide
    })
)(edit)
admin/assets/js/gutenberg/components/stretch-toolbar.js000064400000002775151213255000017400 0ustar00// @codingStandardsIgnoreFile
/**
 * Stretch toolbar
 *
 * Adds a stretch toolbar to the block, if the theme supports wide / fullwidth blocks
 */
// WordPress dependencies
const wp = window.wp
const {__} = wp.i18n
const {Toolbar} = wp.components

const BLOCK_ALIGNMENTS_CONTROLS = {
    normal: {
        icon: 'align-center',
        title: __('Normal width', 'ml-slider')
    },
    wide: {
        icon: 'align-wide',
        title: __('Wide width', 'ml-slider')
    },
    full: {
        icon: 'align-full-width',
        title: __('Full width', 'ml-slider')
    }
}

const DEFAULT_CONTROLS = ['normal', 'wide', 'full']

/**
 * BlockStretchToolbar
 * Toolbar Component for allowing streching of the slider
 *
 * @param  {object} $object
 * @return {function}
 */
export default function BlockStretchToolbar({value, onChange, controls = DEFAULT_CONTROLS}) {
    /**
     * applyOrUnset - Applies the value or unsets it when cligking
     *
     * @param  {string} $align
     * @return {function}
     */
    function applyOrUnset(align) {
        return () => onChange(value === align ? undefined : align)
    }

    const enabledControls = controls
    return (
        <Toolbar
            controls={
                enabledControls.map((control) => {
                    return {
                        ...BLOCK_ALIGNMENTS_CONTROLS[control],
                        isActive: value === control,
                        onClick: applyOrUnset(control)
                    }
                })
            }
        />
    )
}
admin/assets/js/gutenberg/components/preview.js000064400000013617151213255000015742 0ustar00// @codingStandardsIgnoreFile
/**
 * Preview
 *
 * Handles the slideshow preview.
 * It renders an iframe, a transparent overlay to trigger the block selection and a loading state.
 */
import icon from './metaslider-icon'

const wp = window.wp
const React = window.React
const {Placeholder, Spinner} = wp.components
const {__} = wp.i18n
const {apiRequest} = wp

/**
 * Custom iframe component to leverage events
 */
class MetaSliderPreview extends React.Component {
    /**
     * Custom_Iframe component
     *
     * @param  object props Properties
     * @return void
     */
    constructor(props) {
        super(props)
        this.state = {
            height: 200,
            previewIsLoading: true,
            slideshowId: null,
            html: '',
            previewErrorMessage: ''
        }
        this.handleOnLoad = this.handleOnLoad.bind(this)
        this.setHeight = this.setHeight.bind(this)
        this.getPreview = this.getPreview.bind(this)
        this.handleResize = this.handleResize.bind(this)
        this.iframe = React.createRef()
    } // end constructor()

    /**
     * componentDidMount: Fires when the dom element is inserted
     */
    componentDidMount() {
        this.getPreview()
        window.addEventListener('resize', this.handleResize)
        if (this.props.componentDidMount) {
            this.props.componentDidMount(this)
        }
    } // end componentDidMount()

    /**
     * componentWillUnmount - Fires just before the dom element is removed
     */
    componentWillUnmount() {
        window.removeEventListener('resize', this.handleResize)
        if (this.props.componentWillUnmount) {
            this.props.componentWillUnmount()
        }
    } // end componentWillUnmount()

    /**
     * ComponentDidUpdate
     * When some props have been updated, before the component re-renders
     */
    componentDidUpdate(prevProps) {
        // if the source changes, change loaded status
        if (this.props.slideshowId !== prevProps.slideshowId || this.props.refresh !== prevProps.refresh) {
            this.setHeight(200)
            this.getPreview()
            this.iframe.current.contentDocument.location.reload(true)
        }
    }

    /**
     * handleOnLoad - The iframe onLoad event handler
     *
     * @param {Event} e - Event
     */
    handleOnLoad(e) {
        if (this.state.html) {
            this.iframe.current.contentDocument.editor_block = this
            setTimeout(() => {
                clearInterval(this.loadInterval)
                this.setHeight(this.iframe.current.contentDocument.body.clientHeight)
            }, 50)
            this.setState({previewIsLoading: false})
        }
    } // end handleOnLoad()

    /**
     * Handle window resize event
     *
     * @param {Event} e
     */
    handleResize(e) {
        // console.log('ss', this.iframe.current.contentDocument.body.clientHeight, this.iframe.current.contentDocument.body, this.iframe.current.contentDocument, this.iframe)
        this.setHeight(this.iframe.current.contentDocument.body.clientHeight)
    }

    /**
     * Sets iframe Height with a minimum of 200 if below 100
     * Sometimes it shrinks on resize, so 200 looks best.
     *
     * @param {int} height
     */
    setHeight(height) {
        this.setState({height: height > 200 ? height : 200})
    }

    /**
     * Get Preview - fetches the iframe's content
     */
    getPreview() {
        try {
            this.setState({
                html: '',
                previewIsLoading: true,
                previewErrorMessage: ''
            })
            apiRequest(
                {
                    path: '/metaslider/v1/slideshow/preview',
                    data: {
                        action: 'ms_get_preview',
                        slideshow_id: this.props.slideshowId,
                        override_preview_style: true
                    }
                }
            ).then(response => {
                // Update the html inside the preview and set the height
                this.setState({html: response.data})
                this.setHeight(this.iframe.current.contentDocument.body.clientHeight)
            }).fail(error => {
                // Update the iframe but show an error that this slideshow no longer exists
                if (410 === error.status) {
                    this.setState({
                        previewIsLoading: false,
                        previewErrorMessage: error.responseJSON.data.message
                    })
                    console.error('MetaSlider (Gutenberg): Slideshow not found:', error)
                } else {
                    console.error('MetaSlider (Gutenberg): Could not load the preview:', error)
                }
            })
        } catch (error) {
            console.error('MetaSlider (Gutenberg): A general error occured:', error)
        }
    }

    /**
     * Render - React render function
     *
     * @return dom object
     */
    render() {
        return <div className={this.props.className + (this.state.previewIsLoading ? '' : ' loading') + ' ms-preview'}>
            <iframe
                key="preview-iframe"
                height={this.state.height}
                srcDoc={this.state.html || ''}
                onLoad={this.handleOnLoad}
                ref={this.iframe}
            />
            <div key="trigger" className="ms-preview__trigger"></div>
            {this.state.previewIsLoading && <Placeholder
                key="ms-loader"
                className="ms-loader"
                label={[icon, ' MetaSlider']}>
                <Spinner/> {__('Loading slideshow', 'ml-slider')}
            </Placeholder>}
            {(this.state.previewErrorMessage) && <Placeholder
                key="ms-preview-empty"
                className="ms-loader"
                label={[icon, ' MetaSlider']}>
                {this.state.previewErrorMessage}
            </Placeholder>}
        </div>
    } // end render()
}

export default MetaSliderPreview
admin/assets/js/gutenberg/components/refresh-button.js000064400000001714151213255000017223 0ustar00// @codingStandardsIgnoreFile
/**
 * Refresh Button
 *
 * Adds a refresh button to the block toolbar.
 * Used for example when a user makes an edit to a slideshow and want to see the result in the editor.
 */

/**
 * WordPress dependencies
 */
const wp = window.wp
const {__} = wp.i18n
const {Toolbar} = wp.components

/**
 * BlockStretchToolbar
 * Toolbar Component for allowing streching of the slider
 *
 * @param  {object} $object
 * @return {function}
 */
export default function RefreshButton({value, onChange, onClick}) {
    /**
     * applyOrUnset - Applies the value or unsets it when cligking
     *
     * @param  {string} $align
     * @return {function}
     */
    return (
        <Toolbar
            controls={[
                {
                    icon: 'update',
                    title: __('Update preview', 'ml-slider'),
                    isActive: false,
                    onClick: onClick
                }
            ]}
        />
    )
}
admin/assets/js/gutenberg/components/slideshow-selector.js000064400000002055151213255000020072 0ustar00// @codingStandardsIgnoreFile
/**
 * Slideshow Selector
 *
 * Renders the SELECT with the slideshows list.
 */

/**
 * WordPress dependencies
 */
const wp = window.wp
const {__} = wp.i18n
const {SelectControl} = wp.components

/**
 * SlideshowSelector
 *
 * @param {object} props
 * @return {object}
 */
export default function SlideshowSelector({props}) {
    let slideshowId = props.attributes.slideshowId
    let {slideshows} = props

    return <SelectControl
        label={__('Select a slideshow', 'ml-slider')}
        value={slideshowId}
        options={[{
            label: '-- ' + __('Select a slideshow', 'ml-slider') + ' --',
            value: 0
        }].concat(slideshows.items.map(function (slider) {
            return {
                key: slider.id,
                label: wp.htmlEntities.decodeEntities(slider.title) + ' (#' + slider.id + ')',
                value: slider.id
            }
        }))}
        onChange={(newId) => {
            newId = parseInt(newId)
            props.setAttributes({slideshowId: newId})
        }}
    />
}
admin/assets/tether/LICENSE000064400000002047151213255000011433 0ustar00Copyright (c) 2014-2017 HubSpot, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

admin/assets/tether/component.json000064400000001113151213255000013314 0ustar00{
  "name": "tether",
  "repo": "HubSpot/tether",
  "version": "1.3.10",
  "description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
  "authors": [
    "Zack Bloom <zackbloom@gmail.com>",
    "Adam Schwartz <adam.flynn.schwartz@gmail.com>"
  ],
  "maintainers": [
    "Nicholas Hwang <nick.joosung.hwang@gmail.com>"
  ],
  "license": "MIT",
  "demo": "http://github.hubspot.com/tether/docs/welcome/",
  "main": "dist/js/tether.js",
  "styles": [
    "dist/css/tether.css"
  ],
  "scripts": [
    "dist/js/tether.js"
  ]
}
admin/assets/tether/src/js/markAttachment.js000064400000002060151213255000015125 0ustar00/* globals Tether */

Tether.modules.push({
  initialize() {
    this.markers = {};

    ['target', 'element'].forEach(type => {
      const el = document.createElement('div');
      el.className = this.getClass(`${ type }-marker`);

      const dot = document.createElement('div');
      dot.className = this.getClass('marker-dot');
      el.appendChild(dot);

      this[type].appendChild(el);

      this.markers[type] = {dot, el};
    });
  },

  position({manualOffset, manualTargetOffset}) {
    const offsets = {
      element: manualOffset,
      target: manualTargetOffset
    };

    for (let type in offsets) {
      const offset = offsets[type];
      for (let side in offset) {
        let val = offset[side];
        const notString = typeof val !== 'string';
        if (notString ||
            val.indexOf('%') === -1 &&
            val.indexOf('px') === -1) {
          val += 'px';
        }

        if (this.markers[type].dot.style[side] !== val) {
          this.markers[type].dot.style[side] = val;
        }
      }
    }

    return true;
  }
});
admin/assets/tether/src/js/constraint.js000064400000024117151213255000014355 0ustar00/* globals TetherBase */

const {
  getBounds,
  extend,
  updateClasses,
  defer
} = TetherBase.Utils;

const BOUNDS_FORMAT = ['left', 'top', 'right', 'bottom'];

function getBoundingRect(tether, to) {
  if (to === 'scrollParent') {
    to = tether.scrollParents[0];
  } else if (to === 'window') {
    to = [pageXOffset, pageYOffset, innerWidth + pageXOffset, innerHeight + pageYOffset];
  }

  if (to === document) {
    to = to.documentElement;
  }

  if (typeof to.nodeType !== 'undefined') {
    const node = to;
    const size = getBounds(to);
    const pos = size;
    const style = getComputedStyle(to);

    to = [pos.left, pos.top, size.width + pos.left, size.height + pos.top];
  
    // Account any parent Frames scroll offset
    if (node.ownerDocument !== document) {
      let win = node.ownerDocument.defaultView;
      to[0] += win.pageXOffset;
      to[1] += win.pageYOffset;
      to[2] += win.pageXOffset;
      to[3] += win.pageYOffset;
    }
  
    BOUNDS_FORMAT.forEach((side, i) => {
      side = side[0].toUpperCase() + side.substr(1);
      if (side === 'Top' || side === 'Left') {
        to[i] += parseFloat(style[`border${ side }Width`]);
      } else {
        to[i] -= parseFloat(style[`border${ side }Width`]);
      }
    });
  }

  return to;
}

TetherBase.modules.push({
  position({top, left, targetAttachment}) {
    if (!this.options.constraints) {
      return true;
    }

    let {height, width} = this.cache('element-bounds', () => {
      return getBounds(this.element);
    });

    if (width === 0 && height === 0 && typeof this.lastSize !== 'undefined') {
      // Handle the item getting hidden as a result of our positioning without glitching
      // the classes in and out
      ({width, height} = this.lastSize);
    }

    const targetSize = this.cache('target-bounds', () => {
      return this.getTargetBounds();
    });

    const {height: targetHeight, width: targetWidth} = targetSize;

    const allClasses = [this.getClass('pinned'), this.getClass('out-of-bounds')];

    this.options.constraints.forEach(constraint => {
      const {outOfBoundsClass, pinnedClass} = constraint;
      if (outOfBoundsClass) {
        allClasses.push(outOfBoundsClass);
      }
      if (pinnedClass) {
        allClasses.push(pinnedClass);
      }
    });

    allClasses.forEach(cls => {
      ['left', 'top', 'right', 'bottom'].forEach(side => {
        allClasses.push(`${ cls }-${ side }`);
      });
    });

    const addClasses = [];

    const tAttachment = extend({}, targetAttachment);
    const eAttachment = extend({}, this.attachment);

    this.options.constraints.forEach(constraint => {
      let {to, attachment, pin} = constraint;

      if (typeof attachment === 'undefined') {
        attachment = '';
      }

      let changeAttachX, changeAttachY;
      if (attachment.indexOf(' ') >= 0) {
        [changeAttachY, changeAttachX] = attachment.split(' ');
      } else {
        changeAttachX = changeAttachY = attachment;
      }

      const bounds = getBoundingRect(this, to);

      if (changeAttachY === 'target' || changeAttachY === 'both') {
        if (top < bounds[1] && tAttachment.top === 'top') {
          top += targetHeight;
          tAttachment.top = 'bottom';
        }

        if (top + height > bounds[3] && tAttachment.top === 'bottom') {
          top -= targetHeight;
          tAttachment.top = 'top';
        }
      }

      if (changeAttachY === 'together') {
        if (tAttachment.top === 'top') {
          if (eAttachment.top === 'bottom' && top < bounds[1]) {
            top += targetHeight;
            tAttachment.top = 'bottom';

            top += height;
            eAttachment.top = 'top';

          } else if (eAttachment.top === 'top' && top + height > bounds[3] && top - (height - targetHeight) >= bounds[1]) {
            top -= height - targetHeight;
            tAttachment.top = 'bottom';

            eAttachment.top = 'bottom';
          }
        }

        if (tAttachment.top === 'bottom') {
          if (eAttachment.top === 'top' && top + height > bounds[3]) {
            top -= targetHeight;
            tAttachment.top = 'top';

            top -= height;
            eAttachment.top = 'bottom';

          } else if (eAttachment.top === 'bottom'&& top < bounds[1] && top + (height*2 - targetHeight) <= bounds[3]) {
            top += height - targetHeight;
            tAttachment.top = 'top';

            eAttachment.top = 'top';

          }
        }

        if (tAttachment.top === 'middle') {
          if (top + height > bounds[3] && eAttachment.top === 'top') {
            top -= height;
            eAttachment.top = 'bottom';

          } else if (top < bounds[1] && eAttachment.top === 'bottom') {
            top += height;
            eAttachment.top = 'top';
          }
        }
      }

      if (changeAttachX === 'target' || changeAttachX === 'both') {
        if (left < bounds[0] && tAttachment.left === 'left') {
          left += targetWidth;
          tAttachment.left = 'right';
        }

        if (left + width > bounds[2] && tAttachment.left === 'right') {
          left -= targetWidth;
          tAttachment.left = 'left';
        }
      }

      if (changeAttachX === 'together') {
        if (left < bounds[0] && tAttachment.left === 'left') {
          if (eAttachment.left === 'right') {
            left += targetWidth;
            tAttachment.left = 'right';

            left += width;
            eAttachment.left = 'left';

          } else if (eAttachment.left === 'left') {
            left += targetWidth;
            tAttachment.left = 'right';

            left -= width;
            eAttachment.left = 'right';
          }

        } else if (left + width > bounds[2] && tAttachment.left === 'right') {
          if (eAttachment.left === 'left') {
            left -= targetWidth;
            tAttachment.left = 'left';

            left -= width;
            eAttachment.left = 'right';

          } else if (eAttachment.left === 'right') {
            left -= targetWidth;
            tAttachment.left = 'left';

            left += width;
            eAttachment.left = 'left';
          }

        } else if (tAttachment.left === 'center') {
          if (left + width > bounds[2] && eAttachment.left === 'left') {
            left -= width;
            eAttachment.left = 'right';

          } else if (left < bounds[0] && eAttachment.left === 'right') {
            left += width;
            eAttachment.left = 'left';
          }
        }
      }

      if (changeAttachY === 'element' || changeAttachY === 'both') {
        if (top < bounds[1] && eAttachment.top === 'bottom') {
          top += height;
          eAttachment.top = 'top';
        }

        if (top + height > bounds[3] && eAttachment.top === 'top') {
          top -= height;
          eAttachment.top = 'bottom';
        }
      }

      if (changeAttachX === 'element' || changeAttachX === 'both') {
        if (left < bounds[0]) {
          if (eAttachment.left === 'right') {
            left += width;
            eAttachment.left = 'left';
          } else if (eAttachment.left === 'center') {
            left += (width / 2);
            eAttachment.left = 'left';
          }
        }

        if (left + width > bounds[2]) {
          if (eAttachment.left === 'left') {
            left -= width;
            eAttachment.left = 'right';
          } else if (eAttachment.left === 'center') {
            left -= (width / 2);
            eAttachment.left = 'right';
          }
        }
      }

      if (typeof pin === 'string') {
        pin = pin.split(',').map(p => p.trim());
      } else if (pin === true) {
        pin = ['top', 'left', 'right', 'bottom'];
      }

      pin = pin || [];

      const pinned = [];
      const oob = [];

      if (top < bounds[1]) {
        if (pin.indexOf('top') >= 0) {
          top = bounds[1];
          pinned.push('top');
        } else {
          oob.push('top');
        }
      }

      if (top + height > bounds[3]) {
        if (pin.indexOf('bottom') >= 0) {
          top = bounds[3] - height;
          pinned.push('bottom');
        } else {
          oob.push('bottom');
        }
      }

      if (left < bounds[0]) {
        if (pin.indexOf('left') >= 0) {
          left = bounds[0];
          pinned.push('left');
        } else {
          oob.push('left');
        }
      }

      if (left + width > bounds[2]) {
        if (pin.indexOf('right') >= 0) {
          left = bounds[2] - width;
          pinned.push('right');
        } else {
          oob.push('right');
        }
      }

      if (pinned.length) {
        let pinnedClass;
        if (typeof this.options.pinnedClass !== 'undefined') {
          pinnedClass = this.options.pinnedClass;
        } else {
          pinnedClass = this.getClass('pinned');
        }

        addClasses.push(pinnedClass);
        pinned.forEach(side => {
          addClasses.push(`${ pinnedClass }-${ side }`);
        });
      }

      if (oob.length) {
        let oobClass;
        if (typeof this.options.outOfBoundsClass !== 'undefined') {
          oobClass = this.options.outOfBoundsClass;
        } else {
          oobClass = this.getClass('out-of-bounds');
        }

        addClasses.push(oobClass);
        oob.forEach(side => {
          addClasses.push(`${ oobClass }-${ side }`);
        });
      }

      if (pinned.indexOf('left') >= 0 || pinned.indexOf('right') >= 0) {
        eAttachment.left = tAttachment.left = false;
      }
      if (pinned.indexOf('top') >= 0 || pinned.indexOf('bottom') >= 0) {
        eAttachment.top = tAttachment.top = false;
      }

      if (tAttachment.top !== targetAttachment.top ||
          tAttachment.left !== targetAttachment.left ||
          eAttachment.top !== this.attachment.top ||
          eAttachment.left !== this.attachment.left) {
        this.updateAttachClasses(eAttachment, tAttachment);
        this.trigger('update', {
          attachment: eAttachment,
          targetAttachment: tAttachment,
        });
      }
    });

    defer(() => {
      if (!(this.options.addTargetClasses === false)) {
        updateClasses(this.target, addClasses, allClasses);
      }
      updateClasses(this.element, addClasses, allClasses);
    });

    return {top, left};
  }
});
admin/assets/tether/src/js/abutment.js000064400000003117151213255010014006 0ustar00/* globals TetherBase */

const {getBounds, updateClasses, defer} = TetherBase.Utils;

TetherBase.modules.push({
  position({top, left}) {
    const {height, width} = this.cache('element-bounds', () => {
      return getBounds(this.element);
    });

    const targetPos = this.getTargetBounds();

    const bottom = top + height;
    const right = left + width;

    const abutted = [];
    if (top <= targetPos.bottom && bottom >= targetPos.top) {
      ['left', 'right'].forEach(side => {
        const targetPosSide = targetPos[side];
        if (targetPosSide === left || targetPosSide === right) {
          abutted.push(side);
        }
      });
    }

    if (left <= targetPos.right && right >= targetPos.left) {
      ['top', 'bottom'].forEach(side => {
        const targetPosSide = targetPos[side];
        if (targetPosSide === top || targetPosSide === bottom) {
          abutted.push(side);
        }
      });
    }

    const allClasses = [];
    const addClasses = [];

    const sides = ['left', 'top', 'right', 'bottom'];
    allClasses.push(this.getClass('abutted'));
    sides.forEach(side => {
      allClasses.push(`${ this.getClass('abutted') }-${ side }`);
    });

    if (abutted.length) {
      addClasses.push(this.getClass('abutted'));
    }

    abutted.forEach(side => {
      addClasses.push(`${ this.getClass('abutted') }-${ side }`);
    });

    defer(() => {
      if (!(this.options.addTargetClasses === false)) {
        updateClasses(this.target, addClasses, allClasses);
      }
      updateClasses(this.element, addClasses, allClasses);
    });

    return true;
  }
});
admin/assets/tether/src/js/utils.js000064400000021363151213255010013332 0ustar00let TetherBase;
if (typeof TetherBase === 'undefined') {
  TetherBase = {modules: []};
}

let zeroElement = null;

// Same as native getBoundingClientRect, except it takes into account parent <frame> offsets
// if the element lies within a nested document (<frame> or <iframe>-like).
function getActualBoundingClientRect(node) {
  let boundingRect = node.getBoundingClientRect();

  // The original object returned by getBoundingClientRect is immutable, so we clone it
  // We can't use extend because the properties are not considered part of the object by hasOwnProperty in IE9
  let rect = {};
  for (var k in boundingRect) {
    rect[k] = boundingRect[k];
  }

  try {
    if (node.ownerDocument !== document) {
      let frameElement = node.ownerDocument.defaultView.frameElement;
      if (frameElement) {
        let frameRect = getActualBoundingClientRect(frameElement);
        rect.top += frameRect.top;
        rect.bottom += frameRect.top;
        rect.left += frameRect.left;
        rect.right += frameRect.left;
      }
    }
  } catch (err) {
    // Ignore "Access is denied" in IE11/Edge
  }

  return rect;
}

function getScrollParents(el) {
  // In firefox if the el is inside an iframe with display: none; window.getComputedStyle() will return null;
  // https://bugzilla.mozilla.org/show_bug.cgi?id=548397
  const computedStyle = getComputedStyle(el) || {};
  const position = computedStyle.position;
  let parents = [];

  if (position === 'fixed') {
    return [el];
  }

  let parent = el;
  while ((parent = parent.parentNode) && parent && parent.nodeType === 1) {
    let style;
    try {
      style = getComputedStyle(parent);
    } catch (err) {}

    if (typeof style === 'undefined' || style === null) {
      parents.push(parent);
      return parents;
    }

    const {overflow, overflowX, overflowY} = style;
    if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {
      if (position !== 'absolute' || ['relative', 'absolute', 'fixed'].indexOf(style.position) >= 0) {
        parents.push(parent)
      }
    }
  }

  parents.push(el.ownerDocument.body);

  // If the node is within a frame, account for the parent window scroll
  if (el.ownerDocument !== document) {
    parents.push(el.ownerDocument.defaultView);
  }

  return parents;
}

const uniqueId = (() => {
  let id = 0;
  return () => ++id;
})();

const zeroPosCache = {};
const getOrigin = () => {
  // getBoundingClientRect is unfortunately too accurate.  It introduces a pixel or two of
  // jitter as the user scrolls that messes with our ability to detect if two positions
  // are equivilant or not.  We place an element at the top left of the page that will
  // get the same jitter, so we can cancel the two out.
  let node = zeroElement;
  if (!node || !document.body.contains(node)) {
    node = document.createElement('div');
    node.setAttribute('data-tether-id', uniqueId());
    extend(node.style, {
      top: 0,
      left: 0,
      position: 'absolute'
    });

    document.body.appendChild(node);

    zeroElement = node;
  }

  const id = node.getAttribute('data-tether-id');
  if (typeof zeroPosCache[id] === 'undefined') {
    zeroPosCache[id] = getActualBoundingClientRect(node);

    // Clear the cache when this position call is done
    defer(() => {
      delete zeroPosCache[id];
    });
  }

  return zeroPosCache[id];
};

function removeUtilElements() {
  if (zeroElement) {
    document.body.removeChild(zeroElement);
  }
  zeroElement = null;
};

function getBounds(el) {
  let doc;
  if (el === document) {
    doc = document;
    el = document.documentElement;
  } else {
    doc = el.ownerDocument;
  }

  const docEl = doc.documentElement;

  const box = getActualBoundingClientRect(el);

  const origin = getOrigin();

  box.top -= origin.top;
  box.left -= origin.left;

  if (typeof box.width === 'undefined') {
    box.width = document.body.scrollWidth - box.left - box.right;
  }
  if (typeof box.height === 'undefined') {
    box.height = document.body.scrollHeight - box.top - box.bottom;
  }

  box.top = box.top - docEl.clientTop;
  box.left = box.left - docEl.clientLeft;
  box.right = doc.body.clientWidth - box.width - box.left;
  box.bottom = doc.body.clientHeight - box.height - box.top;

  return box;
}

function getOffsetParent(el) {
  return el.offsetParent || document.documentElement;
}

let _scrollBarSize = null;
function getScrollBarSize() {
  if (_scrollBarSize) {
    return _scrollBarSize;
  }
  const inner = document.createElement('div');
  inner.style.width = '100%';
  inner.style.height = '200px';

  const outer = document.createElement('div');
  extend(outer.style, {
    position: 'absolute',
    top: 0,
    left: 0,
    pointerEvents: 'none',
    visibility: 'hidden',
    width: '200px',
    height: '150px',
    overflow: 'hidden'
  });

  outer.appendChild(inner);

  document.body.appendChild(outer);

  const widthContained = inner.offsetWidth;
  outer.style.overflow = 'scroll';
  let widthScroll = inner.offsetWidth;

  if (widthContained === widthScroll) {
    widthScroll = outer.clientWidth;
  }

  document.body.removeChild(outer);

  const width = widthContained - widthScroll;

  _scrollBarSize = {width, height: width};
  return _scrollBarSize;
}

function extend(out={}) {
  const args = [];

  Array.prototype.push.apply(args, arguments);

  args.slice(1).forEach(obj => {
    if (obj) {
      for (let key in obj) {
        if ({}.hasOwnProperty.call(obj, key)) {
          out[key] = obj[key];
        }
      }
    }
  });

  return out;
}

function removeClass(el, name) {
  if (typeof el.classList !== 'undefined') {
    name.split(' ').forEach(cls => {
      if (cls.trim()) {
        el.classList.remove(cls);
      }
    });
  } else {
    const regex = new RegExp(`(^| )${ name.split(' ').join('|') }( |$)`, 'gi');
    const className = getClassName(el).replace(regex, ' ');
    setClassName(el, className);
  }
}

function addClass(el, name) {
  if (typeof el.classList !== 'undefined') {
    name.split(' ').forEach(cls => {
      if (cls.trim()) {
        el.classList.add(cls);
      }
    });
  } else {
    removeClass(el, name);
    const cls = getClassName(el) + ` ${name}`;
    setClassName(el, cls);
  }
}

function hasClass(el, name) {
  if (typeof el.classList !== 'undefined') {
    return el.classList.contains(name);
  }
  const className = getClassName(el);
  return new RegExp(`(^| )${ name }( |$)`, 'gi').test(className);
}

function getClassName(el) {
  // Can't use just SVGAnimatedString here since nodes within a Frame in IE have
  // completely separately SVGAnimatedString base classes
  if (el.className instanceof el.ownerDocument.defaultView.SVGAnimatedString) {
    return el.className.baseVal;
  }
  return el.className;
}

function setClassName(el, className) {
  el.setAttribute('class', className);
}


function updateClasses(el, add, all) {
  // Of the set of 'all' classes, we need the 'add' classes, and only the
  // 'add' classes to be set.
  all.forEach(cls => {
    if (add.indexOf(cls) === -1 && hasClass(el, cls)) {
      removeClass(el, cls);
    }
  });

  add.forEach(cls => {
    if (!hasClass(el, cls)) {
      addClass(el, cls);
    }
  });
}

const deferred = [];

const defer = (fn) => {
  deferred.push(fn);
};

const flush = () => {
  let fn;
  while(fn = deferred.pop()) {
    fn();
  }
};

class Evented {
  on(event, handler, ctx, once=false) {
    if (typeof this.bindings === 'undefined') {
      this.bindings = {};
    }
    if (typeof this.bindings[event] === 'undefined') {
      this.bindings[event] = [];
    }
    this.bindings[event].push({handler, ctx, once});
  }

  once(event, handler, ctx) {
    this.on(event, handler, ctx, true);
  }

  off(event, handler) {
    if (typeof this.bindings === 'undefined' ||
        typeof this.bindings[event] === 'undefined') {
      return;
    }

    if (typeof handler === 'undefined') {
      delete this.bindings[event];
    } else {
      let i = 0;
      while (i < this.bindings[event].length) {
        if (this.bindings[event][i].handler === handler) {
          this.bindings[event].splice(i, 1);
        } else {
          ++i;
        }
      }
    }
  }

  trigger(event, ...args) {
    if (typeof this.bindings !== 'undefined' && this.bindings[event]) {
      let i = 0;
      while (i < this.bindings[event].length) {
        const {handler, ctx, once} = this.bindings[event][i];

        let context = ctx;
        if (typeof context === 'undefined') {
          context = this;
        }

        handler.apply(context, args);

        if (once) {
          this.bindings[event].splice(i, 1);
        } else {
          ++i;
        }
      }
    }
  }
}

TetherBase.Utils = {
  getActualBoundingClientRect,
  getScrollParents,
  getBounds,
  getOffsetParent,
  extend,
  addClass,
  removeClass,
  hasClass,
  updateClasses,
  defer,
  flush,
  uniqueId,
  Evented,
  getScrollBarSize,
  removeUtilElements
};
admin/assets/tether/src/js/shift.js000064400000001277151213255010013311 0ustar00/* globals TetherBase */

TetherBase.modules.push({
  position({top, left}) {
    if (!this.options.shift) {
      return;
    }

    let shift = this.options.shift;
    if (typeof this.options.shift === 'function') {
      shift = this.options.shift.call(this, {top, left});
    }

    let shiftTop, shiftLeft;
    if (typeof shift === 'string') {
      shift = shift.split(' ');
      shift[1] = shift[1] || shift[0];

      ([shiftTop, shiftLeft] = shift);

      shiftTop = parseFloat(shiftTop, 10);
      shiftLeft = parseFloat(shiftLeft, 10);
    } else {
      ([shiftTop, shiftLeft] = [shift.top, shift.left]);
    }

    top += shiftTop;
    left += shiftLeft;

    return {top, left};
  }
});
admin/assets/tether/src/js/tether.js000064400000055715151213255010013475 0ustar00/* globals TetherBase, performance */

if (typeof TetherBase === 'undefined') {
  throw new Error('You must include the utils.js file before tether.js');
}

const {
  getScrollParents,
  getBounds,
  getOffsetParent,
  extend,
  addClass,
  removeClass,
  updateClasses,
  defer,
  flush,
  getScrollBarSize,
  removeUtilElements
} = TetherBase.Utils;

function within(a, b, diff=1) {
  return (a + diff >= b && b >= a - diff);
}

const transformKey = (() => {
  if(typeof document === 'undefined') {
    return '';
  }
  const el = document.createElement('div');

  const transforms = ['transform', 'WebkitTransform', 'OTransform', 'MozTransform', 'msTransform'];
  for (let i = 0; i < transforms.length; ++i) {
    const key = transforms[i];
    if (el.style[key] !== undefined) {
      return key;
    }
  }
})();

const tethers = [];

const position = () => {
  tethers.forEach(tether => {
    tether.position(false);
  });
  flush();
};

function now() {
  if (typeof performance === 'object' && typeof performance.now === 'function') {
    return performance.now();
  }
  return +new Date;
}

(() => {
  let lastCall = null;
  let lastDuration = null;
  let pendingTimeout = null;

  const tick = () => {
    if (typeof lastDuration !== 'undefined' && lastDuration > 16) {
      // We voluntarily throttle ourselves if we can't manage 60fps
      lastDuration = Math.min(lastDuration - 16, 250);

      // Just in case this is the last event, remember to position just once more
      pendingTimeout = setTimeout(tick, 250);
      return;
    }

    if (typeof lastCall !== 'undefined' && (now() - lastCall) < 10) {
      // Some browsers call events a little too frequently, refuse to run more than is reasonable
      return;
    }

    if (pendingTimeout != null) {
      clearTimeout(pendingTimeout);
      pendingTimeout = null;
    }

    lastCall = now();
    position();
    lastDuration = now() - lastCall;
  };

  if(typeof window !== 'undefined' && typeof window.addEventListener !== 'undefined') {
    ['resize', 'scroll', 'touchmove'].forEach(event => {
      window.addEventListener(event, tick);
    });
  }
})();

const MIRROR_LR = {
  center: 'center',
  left: 'right',
  right: 'left'
};

const MIRROR_TB = {
  middle: 'middle',
  top: 'bottom',
  bottom: 'top'
};

const OFFSET_MAP = {
  top: 0,
  left: 0,
  middle: '50%',
  center: '50%',
  bottom: '100%',
  right: '100%'
};

const autoToFixedAttachment = (attachment, relativeToAttachment) => {
  let {left, top} = attachment;

  if (left === 'auto') {
    left = MIRROR_LR[relativeToAttachment.left];
  }

  if (top === 'auto') {
    top = MIRROR_TB[relativeToAttachment.top];
  }

  return {left, top};
};

const attachmentToOffset = (attachment) => {
  let left = attachment.left;
  let top = attachment.top;

  if (typeof OFFSET_MAP[attachment.left] !== 'undefined') {
    left = OFFSET_MAP[attachment.left];
  }

  if (typeof OFFSET_MAP[attachment.top] !== 'undefined') {
    top = OFFSET_MAP[attachment.top];
  }

  return {left, top};
};

function addOffset(...offsets) {
  const out = {top: 0, left: 0};

  offsets.forEach(({top, left}) => {
    if (typeof top === 'string') {
      top = parseFloat(top, 10);
    }
    if (typeof left === 'string') {
      left = parseFloat(left, 10);
    }

    out.top += top;
    out.left += left;
  });

  return out;
}

function offsetToPx(offset, size) {
  if (typeof offset.left === 'string' && offset.left.indexOf('%') !== -1) {
    offset.left = parseFloat(offset.left, 10) / 100 * size.width;
  }
  if (typeof offset.top === 'string' && offset.top.indexOf('%') !== -1) {
    offset.top = parseFloat(offset.top, 10) / 100 * size.height;
  }

  return offset;
}

const parseOffset = (value) => {
  const [top, left] = value.split(' ');
  return {top, left};
};
const parseAttachment = parseOffset;

class TetherClass extends Evented {

  constructor(options) {
    super();
    this.position = this.position.bind(this);

    tethers.push(this);

    this.history = [];

    this.setOptions(options, false);

    TetherBase.modules.forEach(module => {
      if (typeof module.initialize !== 'undefined') {
        module.initialize.call(this);
      }
    });

    this.position();
  }

  getClass(key='') {
    const {classes} = this.options;
    if (typeof classes !== 'undefined' && classes[key]) {
      return this.options.classes[key];
    } else if (this.options.classPrefix) {
      return `${ this.options.classPrefix }-${ key }`;
    } else {
      return key;
    }
  }

  setOptions(options, pos=true) {
    const defaults = {
      offset: '0 0',
      targetOffset: '0 0',
      targetAttachment: 'auto auto',
      classPrefix: 'tether'
    };

    this.options = extend(defaults, options);

    let {element, target, targetModifier} = this.options;
    this.element = element;
    this.target = target;
    this.targetModifier = targetModifier;

    if (this.target === 'viewport') {
      this.target = document.body;
      this.targetModifier = 'visible';
    } else if (this.target === 'scroll-handle') {
      this.target = document.body;
      this.targetModifier = 'scroll-handle';
    }

    ['element', 'target'].forEach(key => {
      if (typeof this[key] === 'undefined') {
        throw new Error('Tether Error: Both element and target must be defined');
      }

      if (typeof this[key].jquery !== 'undefined') {
        this[key] = this[key][0];
      } else if (typeof this[key] === 'string') {
        this[key] = document.querySelector(this[key]);
      }
    });

    addClass(this.element, this.getClass('element'));
    if (!(this.options.addTargetClasses === false)) {
      addClass(this.target, this.getClass('target'));
    }

    if (!this.options.attachment) {
      throw new Error('Tether Error: You must provide an attachment');
    }

    this.targetAttachment = parseAttachment(this.options.targetAttachment);
    this.attachment = parseAttachment(this.options.attachment);
    this.offset = parseOffset(this.options.offset);
    this.targetOffset = parseOffset(this.options.targetOffset);

    if (typeof this.scrollParents !== 'undefined') {
      this.disable();
    }

    if (this.targetModifier === 'scroll-handle') {
      this.scrollParents = [this.target];
    } else {
      this.scrollParents = getScrollParents(this.target);
    }

    if(!(this.options.enabled === false)) {
      this.enable(pos);
    }
  }

  getTargetBounds() {
    if (typeof this.targetModifier !== 'undefined') {
      if (this.targetModifier === 'visible') {
        if (this.target === document.body) {
          return {top: pageYOffset, left: pageXOffset, height: innerHeight, width: innerWidth};
        } else {
          const bounds = getBounds(this.target);

          const out = {
            height: bounds.height,
            width: bounds.width,
            top: bounds.top,
            left: bounds.left
          };

          out.height = Math.min(out.height, bounds.height - (pageYOffset - bounds.top));
          out.height = Math.min(out.height, bounds.height - ((bounds.top + bounds.height) - (pageYOffset + innerHeight)));
          out.height = Math.min(innerHeight, out.height);
          out.height -= 2;

          out.width = Math.min(out.width, bounds.width - (pageXOffset - bounds.left));
          out.width = Math.min(out.width, bounds.width - ((bounds.left + bounds.width) - (pageXOffset + innerWidth)));
          out.width = Math.min(innerWidth, out.width);
          out.width -= 2;

          if (out.top < pageYOffset) {
            out.top = pageYOffset;
          }
          if (out.left < pageXOffset) {
            out.left = pageXOffset;
          }

          return out;
        }
      } else if (this.targetModifier === 'scroll-handle') {
        let bounds;
        let target = this.target;
        if (target === document.body) {
          target = document.documentElement;

          bounds = {
            left: pageXOffset,
            top: pageYOffset,
            height: innerHeight,
            width: innerWidth
          };
        } else {
          bounds = getBounds(target);
        }

        const style = getComputedStyle(target);

        const hasBottomScroll = (
          target.scrollWidth > target.clientWidth ||
          [style.overflow, style.overflowX].indexOf('scroll') >= 0 ||
          this.target !== document.body
        );

        let scrollBottom = 0;
        if (hasBottomScroll) {
          scrollBottom = 15;
        }

        const height = bounds.height - parseFloat(style.borderTopWidth) - parseFloat(style.borderBottomWidth) - scrollBottom;

        const out = {
          width: 15,
          height: height * 0.975 * (height / target.scrollHeight),
          left: bounds.left + bounds.width - parseFloat(style.borderLeftWidth) - 15
        };

        let fitAdj = 0;
        if (height < 408 && this.target === document.body) {
          fitAdj = -0.00011 * Math.pow(height, 2) - 0.00727 * height + 22.58;
        }

        if (this.target !== document.body) {
          out.height = Math.max(out.height, 24);
        }

        const scrollPercentage = this.target.scrollTop / (target.scrollHeight - height);
        out.top = scrollPercentage * (height - out.height - fitAdj) + bounds.top + parseFloat(style.borderTopWidth);

        if (this.target === document.body) {
          out.height = Math.max(out.height, 24);
        }

        return out;
      }
    } else {
      return getBounds(this.target);
    }
  }

  clearCache() {
    this._cache = {};
  }

  cache(k, getter) {
    // More than one module will often need the same DOM info, so
    // we keep a cache which is cleared on each position call
    if (typeof this._cache === 'undefined') {
      this._cache = {};
    }

    if (typeof this._cache[k] === 'undefined') {
      this._cache[k] = getter.call(this);
    }

    return this._cache[k];
  }

  enable(pos=true) {
    if (!(this.options.addTargetClasses === false)) {
      addClass(this.target, this.getClass('enabled'));
    }
    addClass(this.element, this.getClass('enabled'));
    this.enabled = true;

    this.scrollParents.forEach((parent) => {
      if (parent !== this.target.ownerDocument) {
        parent.addEventListener('scroll', this.position);
      }
    })

    if (pos) {
      this.position();
    }
  }

  disable() {
    removeClass(this.target, this.getClass('enabled'));
    removeClass(this.element, this.getClass('enabled'));
    this.enabled = false;

    if (typeof this.scrollParents !== 'undefined') {
      this.scrollParents.forEach((parent) => {
        parent.removeEventListener('scroll', this.position);
      })
    }
  }

  destroy() {
    this.disable();

    tethers.forEach((tether, i) => {
      if (tether === this) {
        tethers.splice(i, 1);
      }
    });

    // Remove any elements we were using for convenience from the DOM
    if (tethers.length === 0) {
      removeUtilElements();
    }
  }

  updateAttachClasses(elementAttach, targetAttach) {
    elementAttach = elementAttach || this.attachment;
    targetAttach = targetAttach || this.targetAttachment;
    const sides = ['left', 'top', 'bottom', 'right', 'middle', 'center'];

    if (typeof this._addAttachClasses !== 'undefined' && this._addAttachClasses.length) {
      // updateAttachClasses can be called more than once in a position call, so
      // we need to clean up after ourselves such that when the last defer gets
      // ran it doesn't add any extra classes from previous calls.
      this._addAttachClasses.splice(0, this._addAttachClasses.length);
    }

    if (typeof this._addAttachClasses === 'undefined') {
      this._addAttachClasses = [];
    }
    const add = this._addAttachClasses;

    if (elementAttach.top) {
      add.push(`${ this.getClass('element-attached') }-${ elementAttach.top }`);
    }
    if (elementAttach.left) {
      add.push(`${ this.getClass('element-attached') }-${ elementAttach.left }`);
    }
    if (targetAttach.top) {
      add.push(`${ this.getClass('target-attached') }-${ targetAttach.top }`);
    }
    if (targetAttach.left) {
      add.push(`${ this.getClass('target-attached') }-${ targetAttach.left }`);
    }

    const all = [];
    sides.forEach(side => {
      all.push(`${ this.getClass('element-attached') }-${ side }`);
      all.push(`${ this.getClass('target-attached') }-${ side }`);
    });

    defer(() => {
      if (!(typeof this._addAttachClasses !== 'undefined')) {
        return;
      }

      updateClasses(this.element, this._addAttachClasses, all);
      if (!(this.options.addTargetClasses === false)) {
        updateClasses(this.target, this._addAttachClasses, all);
      }

      delete this._addAttachClasses;
    });
  }

  position(flushChanges=true) {
    // flushChanges commits the changes immediately, leave true unless you are positioning multiple
    // tethers (in which case call Tether.Utils.flush yourself when you're done)

    if (!this.enabled) {
      return;
    }

    this.clearCache();

    // Turn 'auto' attachments into the appropriate corner or edge
    const targetAttachment = autoToFixedAttachment(this.targetAttachment, this.attachment);

    this.updateAttachClasses(this.attachment, targetAttachment);

    const elementPos = this.cache('element-bounds', () => {
      return getBounds(this.element);
    });

    let {width, height} = elementPos;

    if (width === 0 && height === 0 && typeof this.lastSize !== 'undefined') {
      // We cache the height and width to make it possible to position elements that are
      // getting hidden.
      ({width, height} = this.lastSize);
    } else {
      this.lastSize = {width, height};
    }

    const targetPos = this.cache('target-bounds', () => {
      return this.getTargetBounds();
    });
    const targetSize = targetPos;

    // Get an actual px offset from the attachment
    let offset = offsetToPx(attachmentToOffset(this.attachment), {width, height});
    let targetOffset = offsetToPx(attachmentToOffset(targetAttachment), targetSize);

    const manualOffset = offsetToPx(this.offset, {width, height});
    const manualTargetOffset = offsetToPx(this.targetOffset, targetSize);

    // Add the manually provided offset
    offset = addOffset(offset, manualOffset);
    targetOffset = addOffset(targetOffset, manualTargetOffset);

    // It's now our goal to make (element position + offset) == (target position + target offset)
    let left = targetPos.left + targetOffset.left - offset.left;
    let top = targetPos.top + targetOffset.top - offset.top;

    for (let i = 0; i < TetherBase.modules.length; ++i) {
      const module = TetherBase.modules[i];
      const ret = module.position.call(this, {
        left,
        top,
        targetAttachment,
        targetPos,
        elementPos,
        offset,
        targetOffset,
        manualOffset,
        manualTargetOffset,
        scrollbarSize,
        attachment: this.attachment
      });

      if (ret === false) {
        return false;
      } else if (typeof ret === 'undefined' || typeof ret !== 'object') {
        continue;
      } else {
        ({top, left} = ret);
      }
    }

    // We describe the position three different ways to give the optimizer
    // a chance to decide the best possible way to position the element
    // with the fewest repaints.
    const next = {
      // It's position relative to the page (absolute positioning when
      // the element is a child of the body)
      page: {
        top: top,
        left: left
      },

      // It's position relative to the viewport (fixed positioning)
      viewport: {
        top: top - pageYOffset,
        bottom: pageYOffset - top - height + innerHeight,
        left: left - pageXOffset,
        right: pageXOffset - left - width + innerWidth
      }
    };

    var doc = this.target.ownerDocument;
    var win = doc.defaultView;

    let scrollbarSize;
    if (win.innerHeight > doc.documentElement.clientHeight) {
      scrollbarSize = this.cache('scrollbar-size', getScrollBarSize);
      next.viewport.bottom -= scrollbarSize.height;
    }

    if (win.innerWidth > doc.documentElement.clientWidth) {
      scrollbarSize = this.cache('scrollbar-size', getScrollBarSize);
      next.viewport.right -= scrollbarSize.width;
    }

    if (['', 'static'].indexOf(doc.body.style.position) === -1 ||
        ['', 'static'].indexOf(doc.body.parentElement.style.position) === -1) {
      // Absolute positioning in the body will be relative to the page, not the 'initial containing block'
      next.page.bottom = doc.body.scrollHeight - top - height;
      next.page.right = doc.body.scrollWidth - left - width;
    }

    if (typeof this.options.optimizations !== 'undefined' &&
        this.options.optimizations.moveElement !== false &&
        !(typeof this.targetModifier !== 'undefined')) {
      const offsetParent = this.cache('target-offsetparent', () => getOffsetParent(this.target));
      const offsetPosition = this.cache('target-offsetparent-bounds', () => getBounds(offsetParent));
      const offsetParentStyle = getComputedStyle(offsetParent);
      const offsetParentSize = offsetPosition;

      const offsetBorder = {};
      ['Top', 'Left', 'Bottom', 'Right'].forEach(side => {
        offsetBorder[side.toLowerCase()] = parseFloat(offsetParentStyle[`border${ side }Width`]);
      });

      offsetPosition.right = doc.body.scrollWidth - offsetPosition.left - offsetParentSize.width + offsetBorder.right;
      offsetPosition.bottom = doc.body.scrollHeight - offsetPosition.top - offsetParentSize.height + offsetBorder.bottom;

      if (next.page.top >= (offsetPosition.top + offsetBorder.top) && next.page.bottom >= offsetPosition.bottom) {
        if (next.page.left >= (offsetPosition.left + offsetBorder.left) && next.page.right >= offsetPosition.right) {
          // We're within the visible part of the target's scroll parent
          const scrollTop = offsetParent.scrollTop;
          const scrollLeft = offsetParent.scrollLeft;

          // It's position relative to the target's offset parent (absolute positioning when
          // the element is moved to be a child of the target's offset parent).
          next.offset = {
            top: next.page.top - offsetPosition.top + scrollTop - offsetBorder.top,
            left: next.page.left - offsetPosition.left + scrollLeft - offsetBorder.left
          };
        }
      }
    }


    // We could also travel up the DOM and try each containing context, rather than only
    // looking at the body, but we're gonna get diminishing returns.

    this.move(next);

    this.history.unshift(next);

    if (this.history.length > 3) {
      this.history.pop();
    }

    if (flushChanges) {
      flush();
    }

    return true;
  }

  // THE ISSUE
  move(pos) {
    if (!(typeof this.element.parentNode !== 'undefined')) {
      return;
    }

    const same = {};

    for (let type in pos) {
      same[type] = {};

      for (let key in pos[type]) {
        let found = false;

        for (let i = 0; i < this.history.length; ++i) {
          const point = this.history[i];
          if (typeof point[type] !== 'undefined' &&
              !within(point[type][key], pos[type][key])) {
            found = true;
            break;
          }

        }

        if (!found) {
          same[type][key] = true;
        }
      }
    }

    let css = {top: '', left: '', right: '', bottom: ''};

    const transcribe = (_same, _pos) => {
      const hasOptimizations = typeof this.options.optimizations !== 'undefined';
      const gpu = hasOptimizations ? this.options.optimizations.gpu : null;
      if (gpu !== false) {
        let yPos, xPos;
        if (_same.top) {
          css.top = 0;
          yPos = _pos.top;
        } else {
          css.bottom = 0;
          yPos = -_pos.bottom;
        }

        if (_same.left) {
          css.left = 0;
          xPos = _pos.left;
        } else {
          css.right = 0;
          xPos = -_pos.right;
        }

        if (typeof window.devicePixelRatio === 'number' && devicePixelRatio % 1 === 0) {
          xPos = Math.round(xPos * devicePixelRatio) / devicePixelRatio;
          yPos = Math.round(yPos * devicePixelRatio) / devicePixelRatio;
        }

        css[transformKey] = `translateX(${ xPos }px) translateY(${ yPos }px)`;

        if (transformKey !== 'msTransform') {
          // The Z transform will keep this in the GPU (faster, and prevents artifacts),
          // but IE9 doesn't support 3d transforms and will choke.
          css[transformKey] += " translateZ(0)";
        }

      } else {
        if (_same.top) {
          css.top = `${ _pos.top }px`;
        } else {
          css.bottom = `${ _pos.bottom }px`;
        }

        if (_same.left) {
          css.left = `${ _pos.left }px`;
        } else {
          css.right = `${ _pos.right }px`;
        }
      }
    };

    let moved = false;
    if ((same.page.top || same.page.bottom) && (same.page.left || same.page.right)) {
      css.position = 'absolute';
      transcribe(same.page, pos.page);

    } else if ((same.viewport.top || same.viewport.bottom) && (same.viewport.left || same.viewport.right)) {
      css.position = 'fixed';
      transcribe(same.viewport, pos.viewport);

    } else if (typeof same.offset !== 'undefined' && same.offset.top && same.offset.left) {
      css.position = 'absolute';
      const offsetParent = this.cache('target-offsetparent', () => getOffsetParent(this.target));

      if (getOffsetParent(this.element) !== offsetParent) {
        defer(() => {
          this.element.parentNode.removeChild(this.element);
          offsetParent.appendChild(this.element);
        });
      }

      transcribe(same.offset, pos.offset);
      moved = true;

    } else {
      css.position = 'absolute';
      transcribe({top: true, left: true}, pos.page);
    }

    if (!moved) {
      if (this.options.bodyElement) {
        if (this.element.parentNode !== this.options.bodyElement) {
          this.options.bodyElement.appendChild(this.element);
        }
      } else {
        let offsetParentIsBody = true;
        function isFullscreenElement(e) {
          let d = e.ownerDocument;
          let fe = d.fullscreenElement || d.webkitFullscreenElement || d.mozFullScreenElement || d.msFullscreenElement;
          return fe === e;
        }
        let currentNode = this.element.parentNode;
        while (currentNode && currentNode.nodeType === 1 && currentNode.tagName !== 'BODY' && !isFullscreenElement(currentNode)) {
          if (getComputedStyle(currentNode).position !== 'static') {
            offsetParentIsBody = false;
            break;
          }

          currentNode = currentNode.parentNode;
        }

        if (!offsetParentIsBody) {
          this.element.parentNode.removeChild(this.element);
          this.element.ownerDocument.body.appendChild(this.element);
        }
      }
    }

    // Any css change will trigger a repaint, so let's avoid one if nothing changed
    const writeCSS = {};
    let write = false;
    for (let key in css) {
      let val = css[key];
      let elVal = this.element.style[key];

      if (elVal !== val) {
        write = true;
        writeCSS[key] = val;
      }
    }

    if (write) {
      defer(() => {
        extend(this.element.style, writeCSS);
        this.trigger('repositioned');
      });
    }
  }
}

TetherClass.modules = [];

TetherBase.position = position;

let Tether = extend(TetherClass, TetherBase);
admin/assets/tether/src/css/tether.sass000064400000000123151213255010014165 0ustar00@import helpers/tether

$themePrefix: "tether"

+tether($themePrefix: $themePrefix)admin/assets/tether/src/css/helpers/_tether-theme-arrows.sass000064400000016164151213255010020415 0ustar00=tether-theme-arrows($themePrefix: "tether", $themeName: "arrows", $arrowSize: 16px, $arrowPointerEvents: null, $backgroundColor: #fff, $color: inherit, $useDropShadow: false)
    .#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
        max-width: 100%
        max-height: 100%

        .#{ $themePrefix }-content
            border-radius: 5px
            position: relative
            font-family: inherit
            background: $backgroundColor
            color: $color
            padding: 1em
            font-size: 1.1em
            line-height: 1.5em

            @if $useDropShadow
                transform: translateZ(0)
                filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .2))

            &:before
                content: ""
                display: block
                position: absolute
                width: 0
                height: 0
                border-color: transparent
                border-width: $arrowSize
                border-style: solid
                pointer-events: $arrowPointerEvents

        // Centers and middles

        &.#{ $themePrefix }-element-attached-bottom.#{ $themePrefix }-element-attached-center .#{ $themePrefix }-content
            margin-bottom: $arrowSize

            &:before
                top: 100%
                left: 50%
                margin-left: - $arrowSize
                border-top-color: $backgroundColor
                border-bottom: 0

        &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-center .#{ $themePrefix }-content
            margin-top: $arrowSize

            &:before
                bottom: 100%
                left: 50%
                margin-left: - $arrowSize
                border-bottom-color: $backgroundColor
                border-top: 0

        &.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-element-attached-middle .#{ $themePrefix }-content
            margin-right: $arrowSize

            &:before
                left: 100%
                top: 50%
                margin-top: - $arrowSize
                border-left-color: $backgroundColor
                border-right: 0

        &.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-element-attached-middle .#{ $themePrefix }-content
            margin-left: $arrowSize

            &:before
                right: 100%
                top: 50%
                margin-top: - $arrowSize
                border-right-color: $backgroundColor
                border-left: 0

        // Target middle/center, element corner

        &.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-center .#{ $themePrefix }-content
            left: - $arrowSize * 2

        &.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-center .#{ $themePrefix }-content
            left: $arrowSize * 2

        &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-middle .#{ $themePrefix }-content
            margin-top: $arrowSize

            &:before
                bottom: 100%
                left: $arrowSize
                border-bottom-color: $backgroundColor
                border-top: 0

        &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-middle .#{ $themePrefix }-content
            margin-top: $arrowSize

            &:before
                bottom: 100%
                right: $arrowSize
                border-bottom-color: $backgroundColor
                border-top: 0

        &.#{ $themePrefix }-element-attached-bottom.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-middle .#{ $themePrefix }-content
            margin-bottom: $arrowSize

            &:before
                top: 100%
                left: $arrowSize
                border-top-color: $backgroundColor
                border-bottom: 0

        &.#{ $themePrefix }-element-attached-bottom.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-middle .#{ $themePrefix }-content
            margin-bottom: $arrowSize

            &:before
                top: 100%
                right: $arrowSize
                border-top-color: $backgroundColor
                border-bottom: 0


        // Top and bottom corners

        &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-bottom .#{ $themePrefix }-content
            margin-top: $arrowSize

            &:before
                bottom: 100%
                left: $arrowSize
                border-bottom-color: $backgroundColor
                border-top: 0

        &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-bottom .#{ $themePrefix }-content
            margin-top: $arrowSize

            &:before
                bottom: 100%
                right: $arrowSize
                border-bottom-color: $backgroundColor
                border-top: 0

        &.#{ $themePrefix }-element-attached-bottom.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-top .#{ $themePrefix }-content
            margin-bottom: $arrowSize

            &:before
                top: 100%
                left: $arrowSize
                border-top-color: $backgroundColor
                border-bottom: 0

        &.#{ $themePrefix }-element-attached-bottom.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-top .#{ $themePrefix }-content
            margin-bottom: $arrowSize

            &:before
                top: 100%
                right: $arrowSize
                border-top-color: $backgroundColor
                border-bottom: 0

        // Side corners

        &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-left .#{ $themePrefix }-content
            margin-right: $arrowSize

            &:before
                top: $arrowSize
                left: 100%
                border-left-color: $backgroundColor
                border-right: 0

        &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-right .#{ $themePrefix }-content
            margin-left: $arrowSize

            &:before
                top: $arrowSize
                right: 100%
                border-right-color: $backgroundColor
                border-left: 0

        &.#{ $themePrefix }-element-attached-bottom.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-left .#{ $themePrefix }-content
            margin-right: $arrowSize

            &:before
                bottom: $arrowSize
                left: 100%
                border-left-color: $backgroundColor
                border-right: 0

        &.#{ $themePrefix }-element-attached-bottom.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-right .#{ $themePrefix }-content
            margin-left: $arrowSize

            &:before
                bottom: $arrowSize
                right: 100%
                border-right-color: $backgroundColor
                border-left: 0
admin/assets/tether/src/css/helpers/_tether.sass000064400000000454151213255010015775 0ustar00=tether($themePrefix: "tether")
    .#{ $themePrefix }-element, .#{ $themePrefix }-element *

        &, &:after, &:before
            box-sizing: border-box

    .#{ $themePrefix }-element
        position: absolute
        display: none

        &.#{ $themePrefix }-open
            display: block
admin/assets/tether/src/css/helpers/_tether-theme-basic.sass000064400000001022151213255010020144 0ustar00=tether-theme-basic($themePrefix: "tether", $themeName: "basic", $backgroundColor: #fff, $color: inherit)
    .#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
        max-width: 100%
        max-height: 100%

        .#{ $themePrefix }-content
            border-radius: 5px
            box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
            font-family: inherit
            background: $backgroundColor
            color: $color
            padding: 1em
            font-size: 1.1em
            line-height: 1.5em
admin/assets/tether/src/css/mixins/_pie-clearfix.sass000064400000000135151213255010016713 0ustar00@mixin pie-clearfix
  *zoom: 1

  &:after
    content: ""
    display: table
    clear: both
admin/assets/tether/src/css/mixins/_inline-block.sass000064400000000173151213255010016713 0ustar00@mixin inline-block
  display: inline-block
  vertical-align: middle
  *vertical-align: auto
  *zoom: 1
  *display: inline
admin/assets/tether/src/css/tether-theme-arrows-dark.sass000064400000000622151213255010017523 0ustar00@import helpers/tether
@import helpers/tether-theme-arrows

$themePrefix: "tether"
$themeName: "arrows-dark"
$arrowSize: 16px
$backgroundColor: #000
$color: #fff
$useDropShadow: false

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $themeName: $themeName, $arrowSize: $arrowSize, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)
admin/assets/tether/src/css/tether-theme-basic.sass000064400000000455151213255010016354 0ustar00@import helpers/tether
@import helpers/tether-theme-basic

$themePrefix: "tether"
$themeName: "basic"
$backgroundColor: #fff
$color: inherit

+tether($themePrefix: $themePrefix)
+tether-theme-basic($themePrefix: $themePrefix, $themeName: $themeName, $backgroundColor: $backgroundColor, $color: $color)admin/assets/tether/src/css/tether-theme-arrows.sass000064400000000617151213255010016610 0ustar00@import helpers/tether
@import helpers/tether-theme-arrows

$themePrefix: "tether"
$themeName: "arrows"
$arrowSize: 16px
$backgroundColor: #fff
$color: inherit
$useDropShadow: true

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $themeName: $themeName, $arrowSize: $arrowSize, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)
admin/assets/tether/dist/js/tether.min.js000064400000061061151213255010014422 0ustar00!function(t,e){"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?module.exports=e():t.Tether=e()}(this,function(){"use strict";function t(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function e(t){var o=t.getBoundingClientRect(),i={};for(var n in o)i[n]=o[n];try{if(t.ownerDocument!==document){var r=t.ownerDocument.defaultView.frameElement;if(r){var s=e(r);i.top+=s.top,i.bottom+=s.top,i.left+=s.left,i.right+=s.left}}}catch(a){}return i}function o(t){var e=getComputedStyle(t)||{},o=e.position,i=[];if("fixed"===o)return[t];for(var n=t;(n=n.parentNode)&&n&&1===n.nodeType;){var r=void 0;try{r=getComputedStyle(n)}catch(s){}if("undefined"==typeof r||null===r)return i.push(n),i;var a=r,f=a.overflow,l=a.overflowX,h=a.overflowY;/(auto|scroll|overlay)/.test(f+h+l)&&("absolute"!==o||["relative","absolute","fixed"].indexOf(r.position)>=0)&&i.push(n)}return i.push(t.ownerDocument.body),t.ownerDocument!==document&&i.push(t.ownerDocument.defaultView),i}function i(){O&&document.body.removeChild(O),O=null}function n(t){var o=void 0;t===document?(o=document,t=document.documentElement):o=t.ownerDocument;var i=o.documentElement,n=e(t),r=A();return n.top-=r.top,n.left-=r.left,"undefined"==typeof n.width&&(n.width=document.body.scrollWidth-n.left-n.right),"undefined"==typeof n.height&&(n.height=document.body.scrollHeight-n.top-n.bottom),n.top=n.top-i.clientTop,n.left=n.left-i.clientLeft,n.right=o.body.clientWidth-n.width-n.left,n.bottom=o.body.clientHeight-n.height-n.top,n}function r(t){return t.offsetParent||document.documentElement}function s(){if(T)return T;var t=document.createElement("div");t.style.width="100%",t.style.height="200px";var e=document.createElement("div");a(e.style,{position:"absolute",top:0,left:0,pointerEvents:"none",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),e.appendChild(t),document.body.appendChild(e);var o=t.offsetWidth;e.style.overflow="scroll";var i=t.offsetWidth;o===i&&(i=e.clientWidth),document.body.removeChild(e);var n=o-i;return T={width:n,height:n}}function a(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],e=[];return Array.prototype.push.apply(e,arguments),e.slice(1).forEach(function(e){if(e)for(var o in e)({}).hasOwnProperty.call(e,o)&&(t[o]=e[o])}),t}function f(t,e){if("undefined"!=typeof t.classList)e.split(" ").forEach(function(e){e.trim()&&t.classList.remove(e)});else{var o=new RegExp("(^| )"+e.split(" ").join("|")+"( |$)","gi"),i=d(t).replace(o," ");u(t,i)}}function l(t,e){if("undefined"!=typeof t.classList)e.split(" ").forEach(function(e){e.trim()&&t.classList.add(e)});else{f(t,e);var o=d(t)+(" "+e);u(t,o)}}function h(t,e){if("undefined"!=typeof t.classList)return t.classList.contains(e);var o=d(t);return new RegExp("(^| )"+e+"( |$)","gi").test(o)}function d(t){return t.className instanceof t.ownerDocument.defaultView.SVGAnimatedString?t.className.baseVal:t.className}function u(t,e){t.setAttribute("class",e)}function p(t,e,o){o.forEach(function(o){e.indexOf(o)===-1&&h(t,o)&&f(t,o)}),e.forEach(function(e){h(t,e)||l(t,e)})}function t(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function c(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function g(t,e){var o=arguments.length<=2||void 0===arguments[2]?1:arguments[2];return t+o>=e&&e>=t-o}function m(){return"object"==typeof performance&&"function"==typeof performance.now?performance.now():+new Date}function v(){for(var t={top:0,left:0},e=arguments.length,o=Array(e),i=0;i<e;i++)o[i]=arguments[i];return o.forEach(function(e){var o=e.top,i=e.left;"string"==typeof o&&(o=parseFloat(o,10)),"string"==typeof i&&(i=parseFloat(i,10)),t.top+=o,t.left+=i}),t}function y(t,e){return"string"==typeof t.left&&t.left.indexOf("%")!==-1&&(t.left=parseFloat(t.left,10)/100*e.width),"string"==typeof t.top&&t.top.indexOf("%")!==-1&&(t.top=parseFloat(t.top,10)/100*e.height),t}function b(t,e){return"scrollParent"===e?e=t.scrollParents[0]:"window"===e&&(e=[pageXOffset,pageYOffset,innerWidth+pageXOffset,innerHeight+pageYOffset]),e===document&&(e=e.documentElement),"undefined"!=typeof e.nodeType&&!function(){var t=e,o=n(e),i=o,r=getComputedStyle(e);if(e=[i.left,i.top,o.width+i.left,o.height+i.top],t.ownerDocument!==document){var s=t.ownerDocument.defaultView;e[0]+=s.pageXOffset,e[1]+=s.pageYOffset,e[2]+=s.pageXOffset,e[3]+=s.pageYOffset}I.forEach(function(t,o){t=t[0].toUpperCase()+t.substr(1),"Top"===t||"Left"===t?e[o]+=parseFloat(r["border"+t+"Width"]):e[o]-=parseFloat(r["border"+t+"Width"])})}(),e}var w=function(){function t(t,e){for(var o=0;o<e.length;o++){var i=e[o];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,o,i){return o&&t(e.prototype,o),i&&t(e,i),e}}(),C=void 0;"undefined"==typeof C&&(C={modules:[]});var O=null,E=function(){var t=0;return function(){return++t}}(),x={},A=function(){var t=O;t&&document.body.contains(t)||(t=document.createElement("div"),t.setAttribute("data-tether-id",E()),a(t.style,{top:0,left:0,position:"absolute"}),document.body.appendChild(t),O=t);var o=t.getAttribute("data-tether-id");return"undefined"==typeof x[o]&&(x[o]=e(t),S(function(){delete x[o]})),x[o]},T=null,P=[],S=function(t){P.push(t)},W=function(){for(var t=void 0;t=P.pop();)t()},M=function(){function e(){t(this,e)}return w(e,[{key:"on",value:function(t,e,o){var i=!(arguments.length<=3||void 0===arguments[3])&&arguments[3];"undefined"==typeof this.bindings&&(this.bindings={}),"undefined"==typeof this.bindings[t]&&(this.bindings[t]=[]),this.bindings[t].push({handler:e,ctx:o,once:i})}},{key:"once",value:function(t,e,o){this.on(t,e,o,!0)}},{key:"off",value:function(t,e){if("undefined"!=typeof this.bindings&&"undefined"!=typeof this.bindings[t])if("undefined"==typeof e)delete this.bindings[t];else for(var o=0;o<this.bindings[t].length;)this.bindings[t][o].handler===e?this.bindings[t].splice(o,1):++o}},{key:"trigger",value:function(t){if("undefined"!=typeof this.bindings&&this.bindings[t]){for(var e=0,o=arguments.length,i=Array(o>1?o-1:0),n=1;n<o;n++)i[n-1]=arguments[n];for(;e<this.bindings[t].length;){var r=this.bindings[t][e],s=r.handler,a=r.ctx,f=r.once,l=a;"undefined"==typeof l&&(l=this),s.apply(l,i),f?this.bindings[t].splice(e,1):++e}}}}]),e}();C.Utils={getActualBoundingClientRect:e,getScrollParents:o,getBounds:n,getOffsetParent:r,extend:a,addClass:l,removeClass:f,hasClass:h,updateClasses:p,defer:S,flush:W,uniqueId:E,Evented:M,getScrollBarSize:s,removeUtilElements:i};var k=function(){function t(t,e){var o=[],i=!0,n=!1,r=void 0;try{for(var s,a=t[Symbol.iterator]();!(i=(s=a.next()).done)&&(o.push(s.value),!e||o.length!==e);i=!0);}catch(f){n=!0,r=f}finally{try{!i&&a["return"]&&a["return"]()}finally{if(n)throw r}}return o}return function(e,o){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,o);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),w=function(){function t(t,e){for(var o=0;o<e.length;o++){var i=e[o];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,o,i){return o&&t(e.prototype,o),i&&t(e,i),e}}(),_=function(t,e,o){for(var i=!0;i;){var n=t,r=e,s=o;i=!1,null===n&&(n=Function.prototype);var a=Object.getOwnPropertyDescriptor(n,r);if(void 0!==a){if("value"in a)return a.value;var f=a.get;if(void 0===f)return;return f.call(s)}var l=Object.getPrototypeOf(n);if(null===l)return;t=l,e=r,o=s,i=!0,a=l=void 0}};if("undefined"==typeof C)throw new Error("You must include the utils.js file before tether.js");var z=C.Utils,o=z.getScrollParents,n=z.getBounds,r=z.getOffsetParent,a=z.extend,l=z.addClass,f=z.removeClass,p=z.updateClasses,S=z.defer,W=z.flush,s=z.getScrollBarSize,i=z.removeUtilElements,B=function(){if("undefined"==typeof document)return"";for(var t=document.createElement("div"),e=["transform","WebkitTransform","OTransform","MozTransform","msTransform"],o=0;o<e.length;++o){var i=e[o];if(void 0!==t.style[i])return i}}(),j=[],F=function(){j.forEach(function(t){t.position(!1)}),W()};!function(){var t=null,e=null,o=null,i=function n(){return"undefined"!=typeof e&&e>16?(e=Math.min(e-16,250),void(o=setTimeout(n,250))):void("undefined"!=typeof t&&m()-t<10||(null!=o&&(clearTimeout(o),o=null),t=m(),F(),e=m()-t))};"undefined"!=typeof window&&"undefined"!=typeof window.addEventListener&&["resize","scroll","touchmove"].forEach(function(t){window.addEventListener(t,i)})}();var Y={center:"center",left:"right",right:"left"},D={middle:"middle",top:"bottom",bottom:"top"},L={top:0,left:0,middle:"50%",center:"50%",bottom:"100%",right:"100%"},X=function(t,e){var o=t.left,i=t.top;return"auto"===o&&(o=Y[e.left]),"auto"===i&&(i=D[e.top]),{left:o,top:i}},H=function(t){var e=t.left,o=t.top;return"undefined"!=typeof L[t.left]&&(e=L[t.left]),"undefined"!=typeof L[t.top]&&(o=L[t.top]),{left:e,top:o}},N=function(t){var e=t.split(" "),o=k(e,2),i=o[0],n=o[1];return{top:i,left:n}},R=N,U=function(e){function h(e){var o=this;t(this,h),_(Object.getPrototypeOf(h.prototype),"constructor",this).call(this),this.position=this.position.bind(this),j.push(this),this.history=[],this.setOptions(e,!1),C.modules.forEach(function(t){"undefined"!=typeof t.initialize&&t.initialize.call(o)}),this.position()}return c(h,e),w(h,[{key:"getClass",value:function(){var t=arguments.length<=0||void 0===arguments[0]?"":arguments[0],e=this.options.classes;return"undefined"!=typeof e&&e[t]?this.options.classes[t]:this.options.classPrefix?this.options.classPrefix+"-"+t:t}},{key:"setOptions",value:function(t){var e=this,i=arguments.length<=1||void 0===arguments[1]||arguments[1],n={offset:"0 0",targetOffset:"0 0",targetAttachment:"auto auto",classPrefix:"tether"};this.options=a(n,t);var r=this.options,s=r.element,f=r.target,h=r.targetModifier;if(this.element=s,this.target=f,this.targetModifier=h,"viewport"===this.target?(this.target=document.body,this.targetModifier="visible"):"scroll-handle"===this.target&&(this.target=document.body,this.targetModifier="scroll-handle"),["element","target"].forEach(function(t){if("undefined"==typeof e[t])throw new Error("Tether Error: Both element and target must be defined");"undefined"!=typeof e[t].jquery?e[t]=e[t][0]:"string"==typeof e[t]&&(e[t]=document.querySelector(e[t]))}),l(this.element,this.getClass("element")),this.options.addTargetClasses!==!1&&l(this.target,this.getClass("target")),!this.options.attachment)throw new Error("Tether Error: You must provide an attachment");this.targetAttachment=R(this.options.targetAttachment),this.attachment=R(this.options.attachment),this.offset=N(this.options.offset),this.targetOffset=N(this.options.targetOffset),"undefined"!=typeof this.scrollParents&&this.disable(),"scroll-handle"===this.targetModifier?this.scrollParents=[this.target]:this.scrollParents=o(this.target),this.options.enabled!==!1&&this.enable(i)}},{key:"getTargetBounds",value:function(){if("undefined"==typeof this.targetModifier)return n(this.target);if("visible"===this.targetModifier){if(this.target===document.body)return{top:pageYOffset,left:pageXOffset,height:innerHeight,width:innerWidth};var t=n(this.target),e={height:t.height,width:t.width,top:t.top,left:t.left};return e.height=Math.min(e.height,t.height-(pageYOffset-t.top)),e.height=Math.min(e.height,t.height-(t.top+t.height-(pageYOffset+innerHeight))),e.height=Math.min(innerHeight,e.height),e.height-=2,e.width=Math.min(e.width,t.width-(pageXOffset-t.left)),e.width=Math.min(e.width,t.width-(t.left+t.width-(pageXOffset+innerWidth))),e.width=Math.min(innerWidth,e.width),e.width-=2,e.top<pageYOffset&&(e.top=pageYOffset),e.left<pageXOffset&&(e.left=pageXOffset),e}if("scroll-handle"===this.targetModifier){var t=void 0,o=this.target;o===document.body?(o=document.documentElement,t={left:pageXOffset,top:pageYOffset,height:innerHeight,width:innerWidth}):t=n(o);var i=getComputedStyle(o),r=o.scrollWidth>o.clientWidth||[i.overflow,i.overflowX].indexOf("scroll")>=0||this.target!==document.body,s=0;r&&(s=15);var a=t.height-parseFloat(i.borderTopWidth)-parseFloat(i.borderBottomWidth)-s,e={width:15,height:.975*a*(a/o.scrollHeight),left:t.left+t.width-parseFloat(i.borderLeftWidth)-15},f=0;a<408&&this.target===document.body&&(f=-11e-5*Math.pow(a,2)-.00727*a+22.58),this.target!==document.body&&(e.height=Math.max(e.height,24));var l=this.target.scrollTop/(o.scrollHeight-a);return e.top=l*(a-e.height-f)+t.top+parseFloat(i.borderTopWidth),this.target===document.body&&(e.height=Math.max(e.height,24)),e}}},{key:"clearCache",value:function(){this._cache={}}},{key:"cache",value:function(t,e){return"undefined"==typeof this._cache&&(this._cache={}),"undefined"==typeof this._cache[t]&&(this._cache[t]=e.call(this)),this._cache[t]}},{key:"enable",value:function(){var t=this,e=arguments.length<=0||void 0===arguments[0]||arguments[0];this.options.addTargetClasses!==!1&&l(this.target,this.getClass("enabled")),l(this.element,this.getClass("enabled")),this.enabled=!0,this.scrollParents.forEach(function(e){e!==t.target.ownerDocument&&e.addEventListener("scroll",t.position)}),e&&this.position()}},{key:"disable",value:function(){var t=this;f(this.target,this.getClass("enabled")),f(this.element,this.getClass("enabled")),this.enabled=!1,"undefined"!=typeof this.scrollParents&&this.scrollParents.forEach(function(e){e.removeEventListener("scroll",t.position)})}},{key:"destroy",value:function(){var t=this;this.disable(),j.forEach(function(e,o){e===t&&j.splice(o,1)}),0===j.length&&i()}},{key:"updateAttachClasses",value:function(t,e){var o=this;t=t||this.attachment,e=e||this.targetAttachment;var i=["left","top","bottom","right","middle","center"];"undefined"!=typeof this._addAttachClasses&&this._addAttachClasses.length&&this._addAttachClasses.splice(0,this._addAttachClasses.length),"undefined"==typeof this._addAttachClasses&&(this._addAttachClasses=[]);var n=this._addAttachClasses;t.top&&n.push(this.getClass("element-attached")+"-"+t.top),t.left&&n.push(this.getClass("element-attached")+"-"+t.left),e.top&&n.push(this.getClass("target-attached")+"-"+e.top),e.left&&n.push(this.getClass("target-attached")+"-"+e.left);var r=[];i.forEach(function(t){r.push(o.getClass("element-attached")+"-"+t),r.push(o.getClass("target-attached")+"-"+t)}),S(function(){"undefined"!=typeof o._addAttachClasses&&(p(o.element,o._addAttachClasses,r),o.options.addTargetClasses!==!1&&p(o.target,o._addAttachClasses,r),delete o._addAttachClasses)})}},{key:"position",value:function(){var t=this,e=arguments.length<=0||void 0===arguments[0]||arguments[0];if(this.enabled){this.clearCache();var o=X(this.targetAttachment,this.attachment);this.updateAttachClasses(this.attachment,o);var i=this.cache("element-bounds",function(){return n(t.element)}),a=i.width,f=i.height;if(0===a&&0===f&&"undefined"!=typeof this.lastSize){var l=this.lastSize;a=l.width,f=l.height}else this.lastSize={width:a,height:f};var h=this.cache("target-bounds",function(){return t.getTargetBounds()}),d=h,u=y(H(this.attachment),{width:a,height:f}),p=y(H(o),d),c=y(this.offset,{width:a,height:f}),g=y(this.targetOffset,d);u=v(u,c),p=v(p,g);for(var m=h.left+p.left-u.left,b=h.top+p.top-u.top,w=0;w<C.modules.length;++w){var O=C.modules[w],E=O.position.call(this,{left:m,top:b,targetAttachment:o,targetPos:h,elementPos:i,offset:u,targetOffset:p,manualOffset:c,manualTargetOffset:g,scrollbarSize:P,attachment:this.attachment});if(E===!1)return!1;"undefined"!=typeof E&&"object"==typeof E&&(b=E.top,m=E.left)}var x={page:{top:b,left:m},viewport:{top:b-pageYOffset,bottom:pageYOffset-b-f+innerHeight,left:m-pageXOffset,right:pageXOffset-m-a+innerWidth}},A=this.target.ownerDocument,T=A.defaultView,P=void 0;return T.innerHeight>A.documentElement.clientHeight&&(P=this.cache("scrollbar-size",s),x.viewport.bottom-=P.height),T.innerWidth>A.documentElement.clientWidth&&(P=this.cache("scrollbar-size",s),x.viewport.right-=P.width),["","static"].indexOf(A.body.style.position)!==-1&&["","static"].indexOf(A.body.parentElement.style.position)!==-1||(x.page.bottom=A.body.scrollHeight-b-f,x.page.right=A.body.scrollWidth-m-a),"undefined"!=typeof this.options.optimizations&&this.options.optimizations.moveElement!==!1&&"undefined"==typeof this.targetModifier&&!function(){var e=t.cache("target-offsetparent",function(){return r(t.target)}),o=t.cache("target-offsetparent-bounds",function(){return n(e)}),i=getComputedStyle(e),s=o,a={};if(["Top","Left","Bottom","Right"].forEach(function(t){a[t.toLowerCase()]=parseFloat(i["border"+t+"Width"])}),o.right=A.body.scrollWidth-o.left-s.width+a.right,o.bottom=A.body.scrollHeight-o.top-s.height+a.bottom,x.page.top>=o.top+a.top&&x.page.bottom>=o.bottom&&x.page.left>=o.left+a.left&&x.page.right>=o.right){var f=e.scrollTop,l=e.scrollLeft;x.offset={top:x.page.top-o.top+f-a.top,left:x.page.left-o.left+l-a.left}}}(),this.move(x),this.history.unshift(x),this.history.length>3&&this.history.pop(),e&&W(),!0}}},{key:"move",value:function(t){var e=this;if("undefined"!=typeof this.element.parentNode){var o={};for(var i in t){o[i]={};for(var n in t[i]){for(var s=!1,f=0;f<this.history.length;++f){var l=this.history[f];if("undefined"!=typeof l[i]&&!g(l[i][n],t[i][n])){s=!0;break}}s||(o[i][n]=!0)}}var h={top:"",left:"",right:"",bottom:""},d=function(t,o){var i="undefined"!=typeof e.options.optimizations,n=i?e.options.optimizations.gpu:null;if(n!==!1){var r=void 0,s=void 0;t.top?(h.top=0,r=o.top):(h.bottom=0,r=-o.bottom),t.left?(h.left=0,s=o.left):(h.right=0,s=-o.right),"number"==typeof window.devicePixelRatio&&devicePixelRatio%1===0&&(s=Math.round(s*devicePixelRatio)/devicePixelRatio,r=Math.round(r*devicePixelRatio)/devicePixelRatio),h[B]="translateX("+s+"px) translateY("+r+"px)","msTransform"!==B&&(h[B]+=" translateZ(0)")}else t.top?h.top=o.top+"px":h.bottom=o.bottom+"px",t.left?h.left=o.left+"px":h.right=o.right+"px"},u=!1;if((o.page.top||o.page.bottom)&&(o.page.left||o.page.right)?(h.position="absolute",d(o.page,t.page)):(o.viewport.top||o.viewport.bottom)&&(o.viewport.left||o.viewport.right)?(h.position="fixed",d(o.viewport,t.viewport)):"undefined"!=typeof o.offset&&o.offset.top&&o.offset.left?!function(){h.position="absolute";var i=e.cache("target-offsetparent",function(){return r(e.target)});r(e.element)!==i&&S(function(){e.element.parentNode.removeChild(e.element),i.appendChild(e.element)}),d(o.offset,t.offset),u=!0}():(h.position="absolute",d({top:!0,left:!0},t.page)),!u)if(this.options.bodyElement)this.element.parentNode!==this.options.bodyElement&&this.options.bodyElement.appendChild(this.element);else{for(var p=function(t){var e=t.ownerDocument,o=e.fullscreenElement||e.webkitFullscreenElement||e.mozFullScreenElement||e.msFullscreenElement;return o===t},c=!0,m=this.element.parentNode;m&&1===m.nodeType&&"BODY"!==m.tagName&&!p(m);){if("static"!==getComputedStyle(m).position){c=!1;break}m=m.parentNode}c||(this.element.parentNode.removeChild(this.element),this.element.ownerDocument.body.appendChild(this.element))}var v={},y=!1;for(var n in h){var b=h[n],w=this.element.style[n];w!==b&&(y=!0,v[n]=b)}y&&S(function(){a(e.element.style,v),e.trigger("repositioned")})}}}]),h}(M);U.modules=[],C.position=F;var V=a(U,C),k=function(){function t(t,e){var o=[],i=!0,n=!1,r=void 0;try{for(var s,a=t[Symbol.iterator]();!(i=(s=a.next()).done)&&(o.push(s.value),!e||o.length!==e);i=!0);}catch(f){n=!0,r=f}finally{try{!i&&a["return"]&&a["return"]()}finally{if(n)throw r}}return o}return function(e,o){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,o);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),z=C.Utils,n=z.getBounds,a=z.extend,p=z.updateClasses,S=z.defer,I=["left","top","right","bottom"];C.modules.push({position:function(t){var e=this,o=t.top,i=t.left,r=t.targetAttachment;if(!this.options.constraints)return!0;var s=this.cache("element-bounds",function(){return n(e.element)}),f=s.height,l=s.width;if(0===l&&0===f&&"undefined"!=typeof this.lastSize){var h=this.lastSize;l=h.width,f=h.height}var d=this.cache("target-bounds",function(){return e.getTargetBounds()}),u=d.height,c=d.width,g=[this.getClass("pinned"),this.getClass("out-of-bounds")];this.options.constraints.forEach(function(t){var e=t.outOfBoundsClass,o=t.pinnedClass;e&&g.push(e),o&&g.push(o)}),g.forEach(function(t){["left","top","right","bottom"].forEach(function(e){g.push(t+"-"+e)})});var m=[],v=a({},r),y=a({},this.attachment);return this.options.constraints.forEach(function(t){var n=t.to,s=t.attachment,a=t.pin;"undefined"==typeof s&&(s="");var h=void 0,d=void 0;if(s.indexOf(" ")>=0){var p=s.split(" "),g=k(p,2);d=g[0],h=g[1]}else h=d=s;var w=b(e,n);"target"!==d&&"both"!==d||(o<w[1]&&"top"===v.top&&(o+=u,v.top="bottom"),o+f>w[3]&&"bottom"===v.top&&(o-=u,v.top="top")),"together"===d&&("top"===v.top&&("bottom"===y.top&&o<w[1]?(o+=u,v.top="bottom",o+=f,y.top="top"):"top"===y.top&&o+f>w[3]&&o-(f-u)>=w[1]&&(o-=f-u,v.top="bottom",y.top="bottom")),"bottom"===v.top&&("top"===y.top&&o+f>w[3]?(o-=u,v.top="top",o-=f,y.top="bottom"):"bottom"===y.top&&o<w[1]&&o+(2*f-u)<=w[3]&&(o+=f-u,v.top="top",y.top="top")),"middle"===v.top&&(o+f>w[3]&&"top"===y.top?(o-=f,y.top="bottom"):o<w[1]&&"bottom"===y.top&&(o+=f,y.top="top"))),"target"!==h&&"both"!==h||(i<w[0]&&"left"===v.left&&(i+=c,v.left="right"),i+l>w[2]&&"right"===v.left&&(i-=c,v.left="left")),"together"===h&&(i<w[0]&&"left"===v.left?"right"===y.left?(i+=c,v.left="right",i+=l,y.left="left"):"left"===y.left&&(i+=c,v.left="right",i-=l,y.left="right"):i+l>w[2]&&"right"===v.left?"left"===y.left?(i-=c,v.left="left",i-=l,y.left="right"):"right"===y.left&&(i-=c,v.left="left",i+=l,y.left="left"):"center"===v.left&&(i+l>w[2]&&"left"===y.left?(i-=l,y.left="right"):i<w[0]&&"right"===y.left&&(i+=l,y.left="left"))),"element"!==d&&"both"!==d||(o<w[1]&&"bottom"===y.top&&(o+=f,y.top="top"),o+f>w[3]&&"top"===y.top&&(o-=f,y.top="bottom")),"element"!==h&&"both"!==h||(i<w[0]&&("right"===y.left?(i+=l,y.left="left"):"center"===y.left&&(i+=l/2,y.left="left")),i+l>w[2]&&("left"===y.left?(i-=l,y.left="right"):"center"===y.left&&(i-=l/2,y.left="right"))),"string"==typeof a?a=a.split(",").map(function(t){return t.trim()}):a===!0&&(a=["top","left","right","bottom"]),a=a||[];var C=[],O=[];o<w[1]&&(a.indexOf("top")>=0?(o=w[1],C.push("top")):O.push("top")),o+f>w[3]&&(a.indexOf("bottom")>=0?(o=w[3]-f,C.push("bottom")):O.push("bottom")),i<w[0]&&(a.indexOf("left")>=0?(i=w[0],C.push("left")):O.push("left")),i+l>w[2]&&(a.indexOf("right")>=0?(i=w[2]-l,C.push("right")):O.push("right")),C.length&&!function(){var t=void 0;t="undefined"!=typeof e.options.pinnedClass?e.options.pinnedClass:e.getClass("pinned"),m.push(t),C.forEach(function(e){m.push(t+"-"+e)})}(),O.length&&!function(){var t=void 0;t="undefined"!=typeof e.options.outOfBoundsClass?e.options.outOfBoundsClass:e.getClass("out-of-bounds"),m.push(t),O.forEach(function(e){m.push(t+"-"+e)})}(),(C.indexOf("left")>=0||C.indexOf("right")>=0)&&(y.left=v.left=!1),(C.indexOf("top")>=0||C.indexOf("bottom")>=0)&&(y.top=v.top=!1),v.top===r.top&&v.left===r.left&&y.top===e.attachment.top&&y.left===e.attachment.left||(e.updateAttachClasses(y,v),e.trigger("update",{attachment:y,targetAttachment:v}))}),S(function(){e.options.addTargetClasses!==!1&&p(e.target,m,g),p(e.element,m,g)}),{top:o,left:i}}});var z=C.Utils,n=z.getBounds,p=z.updateClasses,S=z.defer;C.modules.push({position:function(t){var e=this,o=t.top,i=t.left,r=this.cache("element-bounds",function(){return n(e.element)}),s=r.height,a=r.width,f=this.getTargetBounds(),l=o+s,h=i+a,d=[];o<=f.bottom&&l>=f.top&&["left","right"].forEach(function(t){var e=f[t];e!==i&&e!==h||d.push(t)}),i<=f.right&&h>=f.left&&["top","bottom"].forEach(function(t){var e=f[t];e!==o&&e!==l||d.push(t)});var u=[],c=[],g=["left","top","right","bottom"];return u.push(this.getClass("abutted")),g.forEach(function(t){u.push(e.getClass("abutted")+"-"+t)}),d.length&&c.push(this.getClass("abutted")),d.forEach(function(t){c.push(e.getClass("abutted")+"-"+t)}),S(function(){e.options.addTargetClasses!==!1&&p(e.target,c,u),p(e.element,c,u)}),!0}});var k=function(){function t(t,e){var o=[],i=!0,n=!1,r=void 0;try{for(var s,a=t[Symbol.iterator]();!(i=(s=a.next()).done)&&(o.push(s.value),!e||o.length!==e);i=!0);}catch(f){n=!0,r=f}finally{try{!i&&a["return"]&&a["return"]()}finally{if(n)throw r}}return o}return function(e,o){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,o);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();return C.modules.push({position:function(t){var e=t.top,o=t.left;if(this.options.shift){var i=this.options.shift;"function"==typeof this.options.shift&&(i=this.options.shift.call(this,{top:e,left:o}));var n=void 0,r=void 0;if("string"==typeof i){i=i.split(" "),i[1]=i[1]||i[0];var s=i,a=k(s,2);n=a[0],r=a[1],n=parseFloat(n,10),r=parseFloat(r,10)}else n=i.top,r=i.left;return e+=n,o+=r,{top:e,left:o}}}}),V});admin/assets/tether/dist/js/tether.js000064400000156554151213255010013654 0ustar00/*! tether 1.4.7 */

(function(root, factory) {
  if (typeof define === 'function' && define.amd) {
    define([], factory);
  } else if (typeof exports === 'object') {
    module.exports = factory();
  } else {
    root.Tether = factory();
  }
}(this, function() {

'use strict';

var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }

var TetherBase = undefined;
if (typeof TetherBase === 'undefined') {
  TetherBase = { modules: [] };
}

var zeroElement = null;

// Same as native getBoundingClientRect, except it takes into account parent <frame> offsets
// if the element lies within a nested document (<frame> or <iframe>-like).
function getActualBoundingClientRect(node) {
  var boundingRect = node.getBoundingClientRect();

  // The original object returned by getBoundingClientRect is immutable, so we clone it
  // We can't use extend because the properties are not considered part of the object by hasOwnProperty in IE9
  var rect = {};
  for (var k in boundingRect) {
    rect[k] = boundingRect[k];
  }

  try {
    if (node.ownerDocument !== document) {
      var _frameElement = node.ownerDocument.defaultView.frameElement;
      if (_frameElement) {
        var frameRect = getActualBoundingClientRect(_frameElement);
        rect.top += frameRect.top;
        rect.bottom += frameRect.top;
        rect.left += frameRect.left;
        rect.right += frameRect.left;
      }
    }
  } catch (err) {
    // Ignore "Access is denied" in IE11/Edge
  }

  return rect;
}

function getScrollParents(el) {
  // In firefox if the el is inside an iframe with display: none; window.getComputedStyle() will return null;
  // https://bugzilla.mozilla.org/show_bug.cgi?id=548397
  var computedStyle = getComputedStyle(el) || {};
  var position = computedStyle.position;
  var parents = [];

  if (position === 'fixed') {
    return [el];
  }

  var parent = el;
  while ((parent = parent.parentNode) && parent && parent.nodeType === 1) {
    var style = undefined;
    try {
      style = getComputedStyle(parent);
    } catch (err) {}

    if (typeof style === 'undefined' || style === null) {
      parents.push(parent);
      return parents;
    }

    var _style = style;
    var overflow = _style.overflow;
    var overflowX = _style.overflowX;
    var overflowY = _style.overflowY;

    if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {
      if (position !== 'absolute' || ['relative', 'absolute', 'fixed'].indexOf(style.position) >= 0) {
        parents.push(parent);
      }
    }
  }

  parents.push(el.ownerDocument.body);

  // If the node is within a frame, account for the parent window scroll
  if (el.ownerDocument !== document) {
    parents.push(el.ownerDocument.defaultView);
  }

  return parents;
}

var uniqueId = (function () {
  var id = 0;
  return function () {
    return ++id;
  };
})();

var zeroPosCache = {};
var getOrigin = function getOrigin() {
  // getBoundingClientRect is unfortunately too accurate.  It introduces a pixel or two of
  // jitter as the user scrolls that messes with our ability to detect if two positions
  // are equivilant or not.  We place an element at the top left of the page that will
  // get the same jitter, so we can cancel the two out.
  var node = zeroElement;
  if (!node || !document.body.contains(node)) {
    node = document.createElement('div');
    node.setAttribute('data-tether-id', uniqueId());
    extend(node.style, {
      top: 0,
      left: 0,
      position: 'absolute'
    });

    document.body.appendChild(node);

    zeroElement = node;
  }

  var id = node.getAttribute('data-tether-id');
  if (typeof zeroPosCache[id] === 'undefined') {
    zeroPosCache[id] = getActualBoundingClientRect(node);

    // Clear the cache when this position call is done
    defer(function () {
      delete zeroPosCache[id];
    });
  }

  return zeroPosCache[id];
};

function removeUtilElements() {
  if (zeroElement) {
    document.body.removeChild(zeroElement);
  }
  zeroElement = null;
};

function getBounds(el) {
  var doc = undefined;
  if (el === document) {
    doc = document;
    el = document.documentElement;
  } else {
    doc = el.ownerDocument;
  }

  var docEl = doc.documentElement;

  var box = getActualBoundingClientRect(el);

  var origin = getOrigin();

  box.top -= origin.top;
  box.left -= origin.left;

  if (typeof box.width === 'undefined') {
    box.width = document.body.scrollWidth - box.left - box.right;
  }
  if (typeof box.height === 'undefined') {
    box.height = document.body.scrollHeight - box.top - box.bottom;
  }

  box.top = box.top - docEl.clientTop;
  box.left = box.left - docEl.clientLeft;
  box.right = doc.body.clientWidth - box.width - box.left;
  box.bottom = doc.body.clientHeight - box.height - box.top;

  return box;
}

function getOffsetParent(el) {
  return el.offsetParent || document.documentElement;
}

var _scrollBarSize = null;
function getScrollBarSize() {
  if (_scrollBarSize) {
    return _scrollBarSize;
  }
  var inner = document.createElement('div');
  inner.style.width = '100%';
  inner.style.height = '200px';

  var outer = document.createElement('div');
  extend(outer.style, {
    position: 'absolute',
    top: 0,
    left: 0,
    pointerEvents: 'none',
    visibility: 'hidden',
    width: '200px',
    height: '150px',
    overflow: 'hidden'
  });

  outer.appendChild(inner);

  document.body.appendChild(outer);

  var widthContained = inner.offsetWidth;
  outer.style.overflow = 'scroll';
  var widthScroll = inner.offsetWidth;

  if (widthContained === widthScroll) {
    widthScroll = outer.clientWidth;
  }

  document.body.removeChild(outer);

  var width = widthContained - widthScroll;

  _scrollBarSize = { width: width, height: width };
  return _scrollBarSize;
}

function extend() {
  var out = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

  var args = [];

  Array.prototype.push.apply(args, arguments);

  args.slice(1).forEach(function (obj) {
    if (obj) {
      for (var key in obj) {
        if (({}).hasOwnProperty.call(obj, key)) {
          out[key] = obj[key];
        }
      }
    }
  });

  return out;
}

function removeClass(el, name) {
  if (typeof el.classList !== 'undefined') {
    name.split(' ').forEach(function (cls) {
      if (cls.trim()) {
        el.classList.remove(cls);
      }
    });
  } else {
    var regex = new RegExp('(^| )' + name.split(' ').join('|') + '( |$)', 'gi');
    var className = getClassName(el).replace(regex, ' ');
    setClassName(el, className);
  }
}

function addClass(el, name) {
  if (typeof el.classList !== 'undefined') {
    name.split(' ').forEach(function (cls) {
      if (cls.trim()) {
        el.classList.add(cls);
      }
    });
  } else {
    removeClass(el, name);
    var cls = getClassName(el) + (' ' + name);
    setClassName(el, cls);
  }
}

function hasClass(el, name) {
  if (typeof el.classList !== 'undefined') {
    return el.classList.contains(name);
  }
  var className = getClassName(el);
  return new RegExp('(^| )' + name + '( |$)', 'gi').test(className);
}

function getClassName(el) {
  // Can't use just SVGAnimatedString here since nodes within a Frame in IE have
  // completely separately SVGAnimatedString base classes
  if (el.className instanceof el.ownerDocument.defaultView.SVGAnimatedString) {
    return el.className.baseVal;
  }
  return el.className;
}

function setClassName(el, className) {
  el.setAttribute('class', className);
}

function updateClasses(el, add, all) {
  // Of the set of 'all' classes, we need the 'add' classes, and only the
  // 'add' classes to be set.
  all.forEach(function (cls) {
    if (add.indexOf(cls) === -1 && hasClass(el, cls)) {
      removeClass(el, cls);
    }
  });

  add.forEach(function (cls) {
    if (!hasClass(el, cls)) {
      addClass(el, cls);
    }
  });
}

var deferred = [];

var defer = function defer(fn) {
  deferred.push(fn);
};

var flush = function flush() {
  var fn = undefined;
  while (fn = deferred.pop()) {
    fn();
  }
};

var Evented = (function () {
  function Evented() {
    _classCallCheck(this, Evented);
  }

  _createClass(Evented, [{
    key: 'on',
    value: function on(event, handler, ctx) {
      var once = arguments.length <= 3 || arguments[3] === undefined ? false : arguments[3];

      if (typeof this.bindings === 'undefined') {
        this.bindings = {};
      }
      if (typeof this.bindings[event] === 'undefined') {
        this.bindings[event] = [];
      }
      this.bindings[event].push({ handler: handler, ctx: ctx, once: once });
    }
  }, {
    key: 'once',
    value: function once(event, handler, ctx) {
      this.on(event, handler, ctx, true);
    }
  }, {
    key: 'off',
    value: function off(event, handler) {
      if (typeof this.bindings === 'undefined' || typeof this.bindings[event] === 'undefined') {
        return;
      }

      if (typeof handler === 'undefined') {
        delete this.bindings[event];
      } else {
        var i = 0;
        while (i < this.bindings[event].length) {
          if (this.bindings[event][i].handler === handler) {
            this.bindings[event].splice(i, 1);
          } else {
            ++i;
          }
        }
      }
    }
  }, {
    key: 'trigger',
    value: function trigger(event) {
      if (typeof this.bindings !== 'undefined' && this.bindings[event]) {
        var i = 0;

        for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
          args[_key - 1] = arguments[_key];
        }

        while (i < this.bindings[event].length) {
          var _bindings$event$i = this.bindings[event][i];
          var handler = _bindings$event$i.handler;
          var ctx = _bindings$event$i.ctx;
          var once = _bindings$event$i.once;

          var context = ctx;
          if (typeof context === 'undefined') {
            context = this;
          }

          handler.apply(context, args);

          if (once) {
            this.bindings[event].splice(i, 1);
          } else {
            ++i;
          }
        }
      }
    }
  }]);

  return Evented;
})();

TetherBase.Utils = {
  getActualBoundingClientRect: getActualBoundingClientRect,
  getScrollParents: getScrollParents,
  getBounds: getBounds,
  getOffsetParent: getOffsetParent,
  extend: extend,
  addClass: addClass,
  removeClass: removeClass,
  hasClass: hasClass,
  updateClasses: updateClasses,
  defer: defer,
  flush: flush,
  uniqueId: uniqueId,
  Evented: Evented,
  getScrollBarSize: getScrollBarSize,
  removeUtilElements: removeUtilElements
};
/* globals TetherBase, performance */

'use strict';

var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; })();

var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();

var _get = function get(_x6, _x7, _x8) { var _again = true; _function: while (_again) { var object = _x6, property = _x7, receiver = _x8; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x6 = parent; _x7 = property; _x8 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }

function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }

if (typeof TetherBase === 'undefined') {
  throw new Error('You must include the utils.js file before tether.js');
}

var _TetherBase$Utils = TetherBase.Utils;
var getScrollParents = _TetherBase$Utils.getScrollParents;
var getBounds = _TetherBase$Utils.getBounds;
var getOffsetParent = _TetherBase$Utils.getOffsetParent;
var extend = _TetherBase$Utils.extend;
var addClass = _TetherBase$Utils.addClass;
var removeClass = _TetherBase$Utils.removeClass;
var updateClasses = _TetherBase$Utils.updateClasses;
var defer = _TetherBase$Utils.defer;
var flush = _TetherBase$Utils.flush;
var getScrollBarSize = _TetherBase$Utils.getScrollBarSize;
var removeUtilElements = _TetherBase$Utils.removeUtilElements;

function within(a, b) {
  var diff = arguments.length <= 2 || arguments[2] === undefined ? 1 : arguments[2];

  return a + diff >= b && b >= a - diff;
}

var transformKey = (function () {
  if (typeof document === 'undefined') {
    return '';
  }
  var el = document.createElement('div');

  var transforms = ['transform', 'WebkitTransform', 'OTransform', 'MozTransform', 'msTransform'];
  for (var i = 0; i < transforms.length; ++i) {
    var key = transforms[i];
    if (el.style[key] !== undefined) {
      return key;
    }
  }
})();

var tethers = [];

var position = function position() {
  tethers.forEach(function (tether) {
    tether.position(false);
  });
  flush();
};

function now() {
  if (typeof performance === 'object' && typeof performance.now === 'function') {
    return performance.now();
  }
  return +new Date();
}

(function () {
  var lastCall = null;
  var lastDuration = null;
  var pendingTimeout = null;

  var tick = function tick() {
    if (typeof lastDuration !== 'undefined' && lastDuration > 16) {
      // We voluntarily throttle ourselves if we can't manage 60fps
      lastDuration = Math.min(lastDuration - 16, 250);

      // Just in case this is the last event, remember to position just once more
      pendingTimeout = setTimeout(tick, 250);
      return;
    }

    if (typeof lastCall !== 'undefined' && now() - lastCall < 10) {
      // Some browsers call events a little too frequently, refuse to run more than is reasonable
      return;
    }

    if (pendingTimeout != null) {
      clearTimeout(pendingTimeout);
      pendingTimeout = null;
    }

    lastCall = now();
    position();
    lastDuration = now() - lastCall;
  };

  if (typeof window !== 'undefined' && typeof window.addEventListener !== 'undefined') {
    ['resize', 'scroll', 'touchmove'].forEach(function (event) {
      window.addEventListener(event, tick);
    });
  }
})();

var MIRROR_LR = {
  center: 'center',
  left: 'right',
  right: 'left'
};

var MIRROR_TB = {
  middle: 'middle',
  top: 'bottom',
  bottom: 'top'
};

var OFFSET_MAP = {
  top: 0,
  left: 0,
  middle: '50%',
  center: '50%',
  bottom: '100%',
  right: '100%'
};

var autoToFixedAttachment = function autoToFixedAttachment(attachment, relativeToAttachment) {
  var left = attachment.left;
  var top = attachment.top;

  if (left === 'auto') {
    left = MIRROR_LR[relativeToAttachment.left];
  }

  if (top === 'auto') {
    top = MIRROR_TB[relativeToAttachment.top];
  }

  return { left: left, top: top };
};

var attachmentToOffset = function attachmentToOffset(attachment) {
  var left = attachment.left;
  var top = attachment.top;

  if (typeof OFFSET_MAP[attachment.left] !== 'undefined') {
    left = OFFSET_MAP[attachment.left];
  }

  if (typeof OFFSET_MAP[attachment.top] !== 'undefined') {
    top = OFFSET_MAP[attachment.top];
  }

  return { left: left, top: top };
};

function addOffset() {
  var out = { top: 0, left: 0 };

  for (var _len = arguments.length, offsets = Array(_len), _key = 0; _key < _len; _key++) {
    offsets[_key] = arguments[_key];
  }

  offsets.forEach(function (_ref) {
    var top = _ref.top;
    var left = _ref.left;

    if (typeof top === 'string') {
      top = parseFloat(top, 10);
    }
    if (typeof left === 'string') {
      left = parseFloat(left, 10);
    }

    out.top += top;
    out.left += left;
  });

  return out;
}

function offsetToPx(offset, size) {
  if (typeof offset.left === 'string' && offset.left.indexOf('%') !== -1) {
    offset.left = parseFloat(offset.left, 10) / 100 * size.width;
  }
  if (typeof offset.top === 'string' && offset.top.indexOf('%') !== -1) {
    offset.top = parseFloat(offset.top, 10) / 100 * size.height;
  }

  return offset;
}

var parseOffset = function parseOffset(value) {
  var _value$split = value.split(' ');

  var _value$split2 = _slicedToArray(_value$split, 2);

  var top = _value$split2[0];
  var left = _value$split2[1];

  return { top: top, left: left };
};
var parseAttachment = parseOffset;

var TetherClass = (function (_Evented) {
  _inherits(TetherClass, _Evented);

  function TetherClass(options) {
    var _this = this;

    _classCallCheck(this, TetherClass);

    _get(Object.getPrototypeOf(TetherClass.prototype), 'constructor', this).call(this);
    this.position = this.position.bind(this);

    tethers.push(this);

    this.history = [];

    this.setOptions(options, false);

    TetherBase.modules.forEach(function (module) {
      if (typeof module.initialize !== 'undefined') {
        module.initialize.call(_this);
      }
    });

    this.position();
  }

  _createClass(TetherClass, [{
    key: 'getClass',
    value: function getClass() {
      var key = arguments.length <= 0 || arguments[0] === undefined ? '' : arguments[0];
      var classes = this.options.classes;

      if (typeof classes !== 'undefined' && classes[key]) {
        return this.options.classes[key];
      } else if (this.options.classPrefix) {
        return this.options.classPrefix + '-' + key;
      } else {
        return key;
      }
    }
  }, {
    key: 'setOptions',
    value: function setOptions(options) {
      var _this2 = this;

      var pos = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1];

      var defaults = {
        offset: '0 0',
        targetOffset: '0 0',
        targetAttachment: 'auto auto',
        classPrefix: 'tether'
      };

      this.options = extend(defaults, options);

      var _options = this.options;
      var element = _options.element;
      var target = _options.target;
      var targetModifier = _options.targetModifier;

      this.element = element;
      this.target = target;
      this.targetModifier = targetModifier;

      if (this.target === 'viewport') {
        this.target = document.body;
        this.targetModifier = 'visible';
      } else if (this.target === 'scroll-handle') {
        this.target = document.body;
        this.targetModifier = 'scroll-handle';
      }

      ['element', 'target'].forEach(function (key) {
        if (typeof _this2[key] === 'undefined') {
          throw new Error('Tether Error: Both element and target must be defined');
        }

        if (typeof _this2[key].jquery !== 'undefined') {
          _this2[key] = _this2[key][0];
        } else if (typeof _this2[key] === 'string') {
          _this2[key] = document.querySelector(_this2[key]);
        }
      });

      addClass(this.element, this.getClass('element'));
      if (!(this.options.addTargetClasses === false)) {
        addClass(this.target, this.getClass('target'));
      }

      if (!this.options.attachment) {
        throw new Error('Tether Error: You must provide an attachment');
      }

      this.targetAttachment = parseAttachment(this.options.targetAttachment);
      this.attachment = parseAttachment(this.options.attachment);
      this.offset = parseOffset(this.options.offset);
      this.targetOffset = parseOffset(this.options.targetOffset);

      if (typeof this.scrollParents !== 'undefined') {
        this.disable();
      }

      if (this.targetModifier === 'scroll-handle') {
        this.scrollParents = [this.target];
      } else {
        this.scrollParents = getScrollParents(this.target);
      }

      if (!(this.options.enabled === false)) {
        this.enable(pos);
      }
    }
  }, {
    key: 'getTargetBounds',
    value: function getTargetBounds() {
      if (typeof this.targetModifier !== 'undefined') {
        if (this.targetModifier === 'visible') {
          if (this.target === document.body) {
            return { top: pageYOffset, left: pageXOffset, height: innerHeight, width: innerWidth };
          } else {
            var bounds = getBounds(this.target);

            var out = {
              height: bounds.height,
              width: bounds.width,
              top: bounds.top,
              left: bounds.left
            };

            out.height = Math.min(out.height, bounds.height - (pageYOffset - bounds.top));
            out.height = Math.min(out.height, bounds.height - (bounds.top + bounds.height - (pageYOffset + innerHeight)));
            out.height = Math.min(innerHeight, out.height);
            out.height -= 2;

            out.width = Math.min(out.width, bounds.width - (pageXOffset - bounds.left));
            out.width = Math.min(out.width, bounds.width - (bounds.left + bounds.width - (pageXOffset + innerWidth)));
            out.width = Math.min(innerWidth, out.width);
            out.width -= 2;

            if (out.top < pageYOffset) {
              out.top = pageYOffset;
            }
            if (out.left < pageXOffset) {
              out.left = pageXOffset;
            }

            return out;
          }
        } else if (this.targetModifier === 'scroll-handle') {
          var bounds = undefined;
          var target = this.target;
          if (target === document.body) {
            target = document.documentElement;

            bounds = {
              left: pageXOffset,
              top: pageYOffset,
              height: innerHeight,
              width: innerWidth
            };
          } else {
            bounds = getBounds(target);
          }

          var style = getComputedStyle(target);

          var hasBottomScroll = target.scrollWidth > target.clientWidth || [style.overflow, style.overflowX].indexOf('scroll') >= 0 || this.target !== document.body;

          var scrollBottom = 0;
          if (hasBottomScroll) {
            scrollBottom = 15;
          }

          var height = bounds.height - parseFloat(style.borderTopWidth) - parseFloat(style.borderBottomWidth) - scrollBottom;

          var out = {
            width: 15,
            height: height * 0.975 * (height / target.scrollHeight),
            left: bounds.left + bounds.width - parseFloat(style.borderLeftWidth) - 15
          };

          var fitAdj = 0;
          if (height < 408 && this.target === document.body) {
            fitAdj = -0.00011 * Math.pow(height, 2) - 0.00727 * height + 22.58;
          }

          if (this.target !== document.body) {
            out.height = Math.max(out.height, 24);
          }

          var scrollPercentage = this.target.scrollTop / (target.scrollHeight - height);
          out.top = scrollPercentage * (height - out.height - fitAdj) + bounds.top + parseFloat(style.borderTopWidth);

          if (this.target === document.body) {
            out.height = Math.max(out.height, 24);
          }

          return out;
        }
      } else {
        return getBounds(this.target);
      }
    }
  }, {
    key: 'clearCache',
    value: function clearCache() {
      this._cache = {};
    }
  }, {
    key: 'cache',
    value: function cache(k, getter) {
      // More than one module will often need the same DOM info, so
      // we keep a cache which is cleared on each position call
      if (typeof this._cache === 'undefined') {
        this._cache = {};
      }

      if (typeof this._cache[k] === 'undefined') {
        this._cache[k] = getter.call(this);
      }

      return this._cache[k];
    }
  }, {
    key: 'enable',
    value: function enable() {
      var _this3 = this;

      var pos = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];

      if (!(this.options.addTargetClasses === false)) {
        addClass(this.target, this.getClass('enabled'));
      }
      addClass(this.element, this.getClass('enabled'));
      this.enabled = true;

      this.scrollParents.forEach(function (parent) {
        if (parent !== _this3.target.ownerDocument) {
          parent.addEventListener('scroll', _this3.position);
        }
      });

      if (pos) {
        this.position();
      }
    }
  }, {
    key: 'disable',
    value: function disable() {
      var _this4 = this;

      removeClass(this.target, this.getClass('enabled'));
      removeClass(this.element, this.getClass('enabled'));
      this.enabled = false;

      if (typeof this.scrollParents !== 'undefined') {
        this.scrollParents.forEach(function (parent) {
          parent.removeEventListener('scroll', _this4.position);
        });
      }
    }
  }, {
    key: 'destroy',
    value: function destroy() {
      var _this5 = this;

      this.disable();

      tethers.forEach(function (tether, i) {
        if (tether === _this5) {
          tethers.splice(i, 1);
        }
      });

      // Remove any elements we were using for convenience from the DOM
      if (tethers.length === 0) {
        removeUtilElements();
      }
    }
  }, {
    key: 'updateAttachClasses',
    value: function updateAttachClasses(elementAttach, targetAttach) {
      var _this6 = this;

      elementAttach = elementAttach || this.attachment;
      targetAttach = targetAttach || this.targetAttachment;
      var sides = ['left', 'top', 'bottom', 'right', 'middle', 'center'];

      if (typeof this._addAttachClasses !== 'undefined' && this._addAttachClasses.length) {
        // updateAttachClasses can be called more than once in a position call, so
        // we need to clean up after ourselves such that when the last defer gets
        // ran it doesn't add any extra classes from previous calls.
        this._addAttachClasses.splice(0, this._addAttachClasses.length);
      }

      if (typeof this._addAttachClasses === 'undefined') {
        this._addAttachClasses = [];
      }
      var add = this._addAttachClasses;

      if (elementAttach.top) {
        add.push(this.getClass('element-attached') + '-' + elementAttach.top);
      }
      if (elementAttach.left) {
        add.push(this.getClass('element-attached') + '-' + elementAttach.left);
      }
      if (targetAttach.top) {
        add.push(this.getClass('target-attached') + '-' + targetAttach.top);
      }
      if (targetAttach.left) {
        add.push(this.getClass('target-attached') + '-' + targetAttach.left);
      }

      var all = [];
      sides.forEach(function (side) {
        all.push(_this6.getClass('element-attached') + '-' + side);
        all.push(_this6.getClass('target-attached') + '-' + side);
      });

      defer(function () {
        if (!(typeof _this6._addAttachClasses !== 'undefined')) {
          return;
        }

        updateClasses(_this6.element, _this6._addAttachClasses, all);
        if (!(_this6.options.addTargetClasses === false)) {
          updateClasses(_this6.target, _this6._addAttachClasses, all);
        }

        delete _this6._addAttachClasses;
      });
    }
  }, {
    key: 'position',
    value: function position() {
      var _this7 = this;

      var flushChanges = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];

      // flushChanges commits the changes immediately, leave true unless you are positioning multiple
      // tethers (in which case call Tether.Utils.flush yourself when you're done)

      if (!this.enabled) {
        return;
      }

      this.clearCache();

      // Turn 'auto' attachments into the appropriate corner or edge
      var targetAttachment = autoToFixedAttachment(this.targetAttachment, this.attachment);

      this.updateAttachClasses(this.attachment, targetAttachment);

      var elementPos = this.cache('element-bounds', function () {
        return getBounds(_this7.element);
      });

      var width = elementPos.width;
      var height = elementPos.height;

      if (width === 0 && height === 0 && typeof this.lastSize !== 'undefined') {
        var _lastSize = this.lastSize;

        // We cache the height and width to make it possible to position elements that are
        // getting hidden.
        width = _lastSize.width;
        height = _lastSize.height;
      } else {
        this.lastSize = { width: width, height: height };
      }

      var targetPos = this.cache('target-bounds', function () {
        return _this7.getTargetBounds();
      });
      var targetSize = targetPos;

      // Get an actual px offset from the attachment
      var offset = offsetToPx(attachmentToOffset(this.attachment), { width: width, height: height });
      var targetOffset = offsetToPx(attachmentToOffset(targetAttachment), targetSize);

      var manualOffset = offsetToPx(this.offset, { width: width, height: height });
      var manualTargetOffset = offsetToPx(this.targetOffset, targetSize);

      // Add the manually provided offset
      offset = addOffset(offset, manualOffset);
      targetOffset = addOffset(targetOffset, manualTargetOffset);

      // It's now our goal to make (element position + offset) == (target position + target offset)
      var left = targetPos.left + targetOffset.left - offset.left;
      var top = targetPos.top + targetOffset.top - offset.top;

      for (var i = 0; i < TetherBase.modules.length; ++i) {
        var _module2 = TetherBase.modules[i];
        var ret = _module2.position.call(this, {
          left: left,
          top: top,
          targetAttachment: targetAttachment,
          targetPos: targetPos,
          elementPos: elementPos,
          offset: offset,
          targetOffset: targetOffset,
          manualOffset: manualOffset,
          manualTargetOffset: manualTargetOffset,
          scrollbarSize: scrollbarSize,
          attachment: this.attachment
        });

        if (ret === false) {
          return false;
        } else if (typeof ret === 'undefined' || typeof ret !== 'object') {
          continue;
        } else {
          top = ret.top;
          left = ret.left;
        }
      }

      // We describe the position three different ways to give the optimizer
      // a chance to decide the best possible way to position the element
      // with the fewest repaints.
      var next = {
        // It's position relative to the page (absolute positioning when
        // the element is a child of the body)
        page: {
          top: top,
          left: left
        },

        // It's position relative to the viewport (fixed positioning)
        viewport: {
          top: top - pageYOffset,
          bottom: pageYOffset - top - height + innerHeight,
          left: left - pageXOffset,
          right: pageXOffset - left - width + innerWidth
        }
      };

      var doc = this.target.ownerDocument;
      var win = doc.defaultView;

      var scrollbarSize = undefined;
      if (win.innerHeight > doc.documentElement.clientHeight) {
        scrollbarSize = this.cache('scrollbar-size', getScrollBarSize);
        next.viewport.bottom -= scrollbarSize.height;
      }

      if (win.innerWidth > doc.documentElement.clientWidth) {
        scrollbarSize = this.cache('scrollbar-size', getScrollBarSize);
        next.viewport.right -= scrollbarSize.width;
      }

      if (['', 'static'].indexOf(doc.body.style.position) === -1 || ['', 'static'].indexOf(doc.body.parentElement.style.position) === -1) {
        // Absolute positioning in the body will be relative to the page, not the 'initial containing block'
        next.page.bottom = doc.body.scrollHeight - top - height;
        next.page.right = doc.body.scrollWidth - left - width;
      }

      if (typeof this.options.optimizations !== 'undefined' && this.options.optimizations.moveElement !== false && !(typeof this.targetModifier !== 'undefined')) {
        (function () {
          var offsetParent = _this7.cache('target-offsetparent', function () {
            return getOffsetParent(_this7.target);
          });
          var offsetPosition = _this7.cache('target-offsetparent-bounds', function () {
            return getBounds(offsetParent);
          });
          var offsetParentStyle = getComputedStyle(offsetParent);
          var offsetParentSize = offsetPosition;

          var offsetBorder = {};
          ['Top', 'Left', 'Bottom', 'Right'].forEach(function (side) {
            offsetBorder[side.toLowerCase()] = parseFloat(offsetParentStyle['border' + side + 'Width']);
          });

          offsetPosition.right = doc.body.scrollWidth - offsetPosition.left - offsetParentSize.width + offsetBorder.right;
          offsetPosition.bottom = doc.body.scrollHeight - offsetPosition.top - offsetParentSize.height + offsetBorder.bottom;

          if (next.page.top >= offsetPosition.top + offsetBorder.top && next.page.bottom >= offsetPosition.bottom) {
            if (next.page.left >= offsetPosition.left + offsetBorder.left && next.page.right >= offsetPosition.right) {
              // We're within the visible part of the target's scroll parent
              var scrollTop = offsetParent.scrollTop;
              var scrollLeft = offsetParent.scrollLeft;

              // It's position relative to the target's offset parent (absolute positioning when
              // the element is moved to be a child of the target's offset parent).
              next.offset = {
                top: next.page.top - offsetPosition.top + scrollTop - offsetBorder.top,
                left: next.page.left - offsetPosition.left + scrollLeft - offsetBorder.left
              };
            }
          }
        })();
      }

      // We could also travel up the DOM and try each containing context, rather than only
      // looking at the body, but we're gonna get diminishing returns.

      this.move(next);

      this.history.unshift(next);

      if (this.history.length > 3) {
        this.history.pop();
      }

      if (flushChanges) {
        flush();
      }

      return true;
    }

    // THE ISSUE
  }, {
    key: 'move',
    value: function move(pos) {
      var _this8 = this;

      if (!(typeof this.element.parentNode !== 'undefined')) {
        return;
      }

      var same = {};

      for (var type in pos) {
        same[type] = {};

        for (var key in pos[type]) {
          var found = false;

          for (var i = 0; i < this.history.length; ++i) {
            var point = this.history[i];
            if (typeof point[type] !== 'undefined' && !within(point[type][key], pos[type][key])) {
              found = true;
              break;
            }
          }

          if (!found) {
            same[type][key] = true;
          }
        }
      }

      var css = { top: '', left: '', right: '', bottom: '' };

      var transcribe = function transcribe(_same, _pos) {
        var hasOptimizations = typeof _this8.options.optimizations !== 'undefined';
        var gpu = hasOptimizations ? _this8.options.optimizations.gpu : null;
        if (gpu !== false) {
          var yPos = undefined,
              xPos = undefined;
          if (_same.top) {
            css.top = 0;
            yPos = _pos.top;
          } else {
            css.bottom = 0;
            yPos = -_pos.bottom;
          }

          if (_same.left) {
            css.left = 0;
            xPos = _pos.left;
          } else {
            css.right = 0;
            xPos = -_pos.right;
          }

          if (typeof window.devicePixelRatio === 'number' && devicePixelRatio % 1 === 0) {
            xPos = Math.round(xPos * devicePixelRatio) / devicePixelRatio;
            yPos = Math.round(yPos * devicePixelRatio) / devicePixelRatio;
          }

          css[transformKey] = 'translateX(' + xPos + 'px) translateY(' + yPos + 'px)';

          if (transformKey !== 'msTransform') {
            // The Z transform will keep this in the GPU (faster, and prevents artifacts),
            // but IE9 doesn't support 3d transforms and will choke.
            css[transformKey] += " translateZ(0)";
          }
        } else {
          if (_same.top) {
            css.top = _pos.top + 'px';
          } else {
            css.bottom = _pos.bottom + 'px';
          }

          if (_same.left) {
            css.left = _pos.left + 'px';
          } else {
            css.right = _pos.right + 'px';
          }
        }
      };

      var moved = false;
      if ((same.page.top || same.page.bottom) && (same.page.left || same.page.right)) {
        css.position = 'absolute';
        transcribe(same.page, pos.page);
      } else if ((same.viewport.top || same.viewport.bottom) && (same.viewport.left || same.viewport.right)) {
        css.position = 'fixed';
        transcribe(same.viewport, pos.viewport);
      } else if (typeof same.offset !== 'undefined' && same.offset.top && same.offset.left) {
        (function () {
          css.position = 'absolute';
          var offsetParent = _this8.cache('target-offsetparent', function () {
            return getOffsetParent(_this8.target);
          });

          if (getOffsetParent(_this8.element) !== offsetParent) {
            defer(function () {
              _this8.element.parentNode.removeChild(_this8.element);
              offsetParent.appendChild(_this8.element);
            });
          }

          transcribe(same.offset, pos.offset);
          moved = true;
        })();
      } else {
        css.position = 'absolute';
        transcribe({ top: true, left: true }, pos.page);
      }

      if (!moved) {
        if (this.options.bodyElement) {
          if (this.element.parentNode !== this.options.bodyElement) {
            this.options.bodyElement.appendChild(this.element);
          }
        } else {
          var isFullscreenElement = function isFullscreenElement(e) {
            var d = e.ownerDocument;
            var fe = d.fullscreenElement || d.webkitFullscreenElement || d.mozFullScreenElement || d.msFullscreenElement;
            return fe === e;
          };

          var offsetParentIsBody = true;

          var currentNode = this.element.parentNode;
          while (currentNode && currentNode.nodeType === 1 && currentNode.tagName !== 'BODY' && !isFullscreenElement(currentNode)) {
            if (getComputedStyle(currentNode).position !== 'static') {
              offsetParentIsBody = false;
              break;
            }

            currentNode = currentNode.parentNode;
          }

          if (!offsetParentIsBody) {
            this.element.parentNode.removeChild(this.element);
            this.element.ownerDocument.body.appendChild(this.element);
          }
        }
      }

      // Any css change will trigger a repaint, so let's avoid one if nothing changed
      var writeCSS = {};
      var write = false;
      for (var key in css) {
        var val = css[key];
        var elVal = this.element.style[key];

        if (elVal !== val) {
          write = true;
          writeCSS[key] = val;
        }
      }

      if (write) {
        defer(function () {
          extend(_this8.element.style, writeCSS);
          _this8.trigger('repositioned');
        });
      }
    }
  }]);

  return TetherClass;
})(Evented);

TetherClass.modules = [];

TetherBase.position = position;

var Tether = extend(TetherClass, TetherBase);
/* globals TetherBase */

'use strict';

var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; })();

var _TetherBase$Utils = TetherBase.Utils;
var getBounds = _TetherBase$Utils.getBounds;
var extend = _TetherBase$Utils.extend;
var updateClasses = _TetherBase$Utils.updateClasses;
var defer = _TetherBase$Utils.defer;

var BOUNDS_FORMAT = ['left', 'top', 'right', 'bottom'];

function getBoundingRect(tether, to) {
  if (to === 'scrollParent') {
    to = tether.scrollParents[0];
  } else if (to === 'window') {
    to = [pageXOffset, pageYOffset, innerWidth + pageXOffset, innerHeight + pageYOffset];
  }

  if (to === document) {
    to = to.documentElement;
  }

  if (typeof to.nodeType !== 'undefined') {
    (function () {
      var node = to;
      var size = getBounds(to);
      var pos = size;
      var style = getComputedStyle(to);

      to = [pos.left, pos.top, size.width + pos.left, size.height + pos.top];

      // Account any parent Frames scroll offset
      if (node.ownerDocument !== document) {
        var win = node.ownerDocument.defaultView;
        to[0] += win.pageXOffset;
        to[1] += win.pageYOffset;
        to[2] += win.pageXOffset;
        to[3] += win.pageYOffset;
      }

      BOUNDS_FORMAT.forEach(function (side, i) {
        side = side[0].toUpperCase() + side.substr(1);
        if (side === 'Top' || side === 'Left') {
          to[i] += parseFloat(style['border' + side + 'Width']);
        } else {
          to[i] -= parseFloat(style['border' + side + 'Width']);
        }
      });
    })();
  }

  return to;
}

TetherBase.modules.push({
  position: function position(_ref) {
    var _this = this;

    var top = _ref.top;
    var left = _ref.left;
    var targetAttachment = _ref.targetAttachment;

    if (!this.options.constraints) {
      return true;
    }

    var _cache = this.cache('element-bounds', function () {
      return getBounds(_this.element);
    });

    var height = _cache.height;
    var width = _cache.width;

    if (width === 0 && height === 0 && typeof this.lastSize !== 'undefined') {
      var _lastSize = this.lastSize;

      // Handle the item getting hidden as a result of our positioning without glitching
      // the classes in and out
      width = _lastSize.width;
      height = _lastSize.height;
    }

    var targetSize = this.cache('target-bounds', function () {
      return _this.getTargetBounds();
    });

    var targetHeight = targetSize.height;
    var targetWidth = targetSize.width;

    var allClasses = [this.getClass('pinned'), this.getClass('out-of-bounds')];

    this.options.constraints.forEach(function (constraint) {
      var outOfBoundsClass = constraint.outOfBoundsClass;
      var pinnedClass = constraint.pinnedClass;

      if (outOfBoundsClass) {
        allClasses.push(outOfBoundsClass);
      }
      if (pinnedClass) {
        allClasses.push(pinnedClass);
      }
    });

    allClasses.forEach(function (cls) {
      ['left', 'top', 'right', 'bottom'].forEach(function (side) {
        allClasses.push(cls + '-' + side);
      });
    });

    var addClasses = [];

    var tAttachment = extend({}, targetAttachment);
    var eAttachment = extend({}, this.attachment);

    this.options.constraints.forEach(function (constraint) {
      var to = constraint.to;
      var attachment = constraint.attachment;
      var pin = constraint.pin;

      if (typeof attachment === 'undefined') {
        attachment = '';
      }

      var changeAttachX = undefined,
          changeAttachY = undefined;
      if (attachment.indexOf(' ') >= 0) {
        var _attachment$split = attachment.split(' ');

        var _attachment$split2 = _slicedToArray(_attachment$split, 2);

        changeAttachY = _attachment$split2[0];
        changeAttachX = _attachment$split2[1];
      } else {
        changeAttachX = changeAttachY = attachment;
      }

      var bounds = getBoundingRect(_this, to);

      if (changeAttachY === 'target' || changeAttachY === 'both') {
        if (top < bounds[1] && tAttachment.top === 'top') {
          top += targetHeight;
          tAttachment.top = 'bottom';
        }

        if (top + height > bounds[3] && tAttachment.top === 'bottom') {
          top -= targetHeight;
          tAttachment.top = 'top';
        }
      }

      if (changeAttachY === 'together') {
        if (tAttachment.top === 'top') {
          if (eAttachment.top === 'bottom' && top < bounds[1]) {
            top += targetHeight;
            tAttachment.top = 'bottom';

            top += height;
            eAttachment.top = 'top';
          } else if (eAttachment.top === 'top' && top + height > bounds[3] && top - (height - targetHeight) >= bounds[1]) {
            top -= height - targetHeight;
            tAttachment.top = 'bottom';

            eAttachment.top = 'bottom';
          }
        }

        if (tAttachment.top === 'bottom') {
          if (eAttachment.top === 'top' && top + height > bounds[3]) {
            top -= targetHeight;
            tAttachment.top = 'top';

            top -= height;
            eAttachment.top = 'bottom';
          } else if (eAttachment.top === 'bottom' && top < bounds[1] && top + (height * 2 - targetHeight) <= bounds[3]) {
            top += height - targetHeight;
            tAttachment.top = 'top';

            eAttachment.top = 'top';
          }
        }

        if (tAttachment.top === 'middle') {
          if (top + height > bounds[3] && eAttachment.top === 'top') {
            top -= height;
            eAttachment.top = 'bottom';
          } else if (top < bounds[1] && eAttachment.top === 'bottom') {
            top += height;
            eAttachment.top = 'top';
          }
        }
      }

      if (changeAttachX === 'target' || changeAttachX === 'both') {
        if (left < bounds[0] && tAttachment.left === 'left') {
          left += targetWidth;
          tAttachment.left = 'right';
        }

        if (left + width > bounds[2] && tAttachment.left === 'right') {
          left -= targetWidth;
          tAttachment.left = 'left';
        }
      }

      if (changeAttachX === 'together') {
        if (left < bounds[0] && tAttachment.left === 'left') {
          if (eAttachment.left === 'right') {
            left += targetWidth;
            tAttachment.left = 'right';

            left += width;
            eAttachment.left = 'left';
          } else if (eAttachment.left === 'left') {
            left += targetWidth;
            tAttachment.left = 'right';

            left -= width;
            eAttachment.left = 'right';
          }
        } else if (left + width > bounds[2] && tAttachment.left === 'right') {
          if (eAttachment.left === 'left') {
            left -= targetWidth;
            tAttachment.left = 'left';

            left -= width;
            eAttachment.left = 'right';
          } else if (eAttachment.left === 'right') {
            left -= targetWidth;
            tAttachment.left = 'left';

            left += width;
            eAttachment.left = 'left';
          }
        } else if (tAttachment.left === 'center') {
          if (left + width > bounds[2] && eAttachment.left === 'left') {
            left -= width;
            eAttachment.left = 'right';
          } else if (left < bounds[0] && eAttachment.left === 'right') {
            left += width;
            eAttachment.left = 'left';
          }
        }
      }

      if (changeAttachY === 'element' || changeAttachY === 'both') {
        if (top < bounds[1] && eAttachment.top === 'bottom') {
          top += height;
          eAttachment.top = 'top';
        }

        if (top + height > bounds[3] && eAttachment.top === 'top') {
          top -= height;
          eAttachment.top = 'bottom';
        }
      }

      if (changeAttachX === 'element' || changeAttachX === 'both') {
        if (left < bounds[0]) {
          if (eAttachment.left === 'right') {
            left += width;
            eAttachment.left = 'left';
          } else if (eAttachment.left === 'center') {
            left += width / 2;
            eAttachment.left = 'left';
          }
        }

        if (left + width > bounds[2]) {
          if (eAttachment.left === 'left') {
            left -= width;
            eAttachment.left = 'right';
          } else if (eAttachment.left === 'center') {
            left -= width / 2;
            eAttachment.left = 'right';
          }
        }
      }

      if (typeof pin === 'string') {
        pin = pin.split(',').map(function (p) {
          return p.trim();
        });
      } else if (pin === true) {
        pin = ['top', 'left', 'right', 'bottom'];
      }

      pin = pin || [];

      var pinned = [];
      var oob = [];

      if (top < bounds[1]) {
        if (pin.indexOf('top') >= 0) {
          top = bounds[1];
          pinned.push('top');
        } else {
          oob.push('top');
        }
      }

      if (top + height > bounds[3]) {
        if (pin.indexOf('bottom') >= 0) {
          top = bounds[3] - height;
          pinned.push('bottom');
        } else {
          oob.push('bottom');
        }
      }

      if (left < bounds[0]) {
        if (pin.indexOf('left') >= 0) {
          left = bounds[0];
          pinned.push('left');
        } else {
          oob.push('left');
        }
      }

      if (left + width > bounds[2]) {
        if (pin.indexOf('right') >= 0) {
          left = bounds[2] - width;
          pinned.push('right');
        } else {
          oob.push('right');
        }
      }

      if (pinned.length) {
        (function () {
          var pinnedClass = undefined;
          if (typeof _this.options.pinnedClass !== 'undefined') {
            pinnedClass = _this.options.pinnedClass;
          } else {
            pinnedClass = _this.getClass('pinned');
          }

          addClasses.push(pinnedClass);
          pinned.forEach(function (side) {
            addClasses.push(pinnedClass + '-' + side);
          });
        })();
      }

      if (oob.length) {
        (function () {
          var oobClass = undefined;
          if (typeof _this.options.outOfBoundsClass !== 'undefined') {
            oobClass = _this.options.outOfBoundsClass;
          } else {
            oobClass = _this.getClass('out-of-bounds');
          }

          addClasses.push(oobClass);
          oob.forEach(function (side) {
            addClasses.push(oobClass + '-' + side);
          });
        })();
      }

      if (pinned.indexOf('left') >= 0 || pinned.indexOf('right') >= 0) {
        eAttachment.left = tAttachment.left = false;
      }
      if (pinned.indexOf('top') >= 0 || pinned.indexOf('bottom') >= 0) {
        eAttachment.top = tAttachment.top = false;
      }

      if (tAttachment.top !== targetAttachment.top || tAttachment.left !== targetAttachment.left || eAttachment.top !== _this.attachment.top || eAttachment.left !== _this.attachment.left) {
        _this.updateAttachClasses(eAttachment, tAttachment);
        _this.trigger('update', {
          attachment: eAttachment,
          targetAttachment: tAttachment
        });
      }
    });

    defer(function () {
      if (!(_this.options.addTargetClasses === false)) {
        updateClasses(_this.target, addClasses, allClasses);
      }
      updateClasses(_this.element, addClasses, allClasses);
    });

    return { top: top, left: left };
  }
});
/* globals TetherBase */

'use strict';

var _TetherBase$Utils = TetherBase.Utils;
var getBounds = _TetherBase$Utils.getBounds;
var updateClasses = _TetherBase$Utils.updateClasses;
var defer = _TetherBase$Utils.defer;

TetherBase.modules.push({
  position: function position(_ref) {
    var _this = this;

    var top = _ref.top;
    var left = _ref.left;

    var _cache = this.cache('element-bounds', function () {
      return getBounds(_this.element);
    });

    var height = _cache.height;
    var width = _cache.width;

    var targetPos = this.getTargetBounds();

    var bottom = top + height;
    var right = left + width;

    var abutted = [];
    if (top <= targetPos.bottom && bottom >= targetPos.top) {
      ['left', 'right'].forEach(function (side) {
        var targetPosSide = targetPos[side];
        if (targetPosSide === left || targetPosSide === right) {
          abutted.push(side);
        }
      });
    }

    if (left <= targetPos.right && right >= targetPos.left) {
      ['top', 'bottom'].forEach(function (side) {
        var targetPosSide = targetPos[side];
        if (targetPosSide === top || targetPosSide === bottom) {
          abutted.push(side);
        }
      });
    }

    var allClasses = [];
    var addClasses = [];

    var sides = ['left', 'top', 'right', 'bottom'];
    allClasses.push(this.getClass('abutted'));
    sides.forEach(function (side) {
      allClasses.push(_this.getClass('abutted') + '-' + side);
    });

    if (abutted.length) {
      addClasses.push(this.getClass('abutted'));
    }

    abutted.forEach(function (side) {
      addClasses.push(_this.getClass('abutted') + '-' + side);
    });

    defer(function () {
      if (!(_this.options.addTargetClasses === false)) {
        updateClasses(_this.target, addClasses, allClasses);
      }
      updateClasses(_this.element, addClasses, allClasses);
    });

    return true;
  }
});
/* globals TetherBase */

'use strict';

var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; })();

TetherBase.modules.push({
  position: function position(_ref) {
    var top = _ref.top;
    var left = _ref.left;

    if (!this.options.shift) {
      return;
    }

    var shift = this.options.shift;
    if (typeof this.options.shift === 'function') {
      shift = this.options.shift.call(this, { top: top, left: left });
    }

    var shiftTop = undefined,
        shiftLeft = undefined;
    if (typeof shift === 'string') {
      shift = shift.split(' ');
      shift[1] = shift[1] || shift[0];

      var _shift = shift;

      var _shift2 = _slicedToArray(_shift, 2);

      shiftTop = _shift2[0];
      shiftLeft = _shift2[1];

      shiftTop = parseFloat(shiftTop, 10);
      shiftLeft = parseFloat(shiftLeft, 10);
    } else {
      shiftTop = shift.top;
      shiftLeft = shift.left;
    }

    top += shiftTop;
    left += shiftLeft;

    return { top: top, left: left };
  }
});
return Tether;

}));
admin/assets/tether/dist/css/tether.css000064400000000425151213255020014166 0ustar00.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box; }

.tether-element {
  position: absolute;
  display: none; }
  .tether-element.tether-open {
    display: block; }
admin/assets/tether/dist/css/tether-theme-basic.css000064400000001147151213255020016347 0ustar00.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box; }

.tether-element {
  position: absolute;
  display: none; }
  .tether-element.tether-open {
    display: block; }

.tether-element.tether-theme-basic {
  max-width: 100%;
  max-height: 100%; }
  .tether-element.tether-theme-basic .tether-content {
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: inherit;
    background: #fff;
    color: inherit;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em; }
admin/assets/tether/dist/css/tether-theme-arrows-dark.min.css000064400000014637151213255020020314 0ustar00.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-center .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content{margin-bottom:16px}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-element-attached-middle .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content{margin-right:16px}.tether-element,.tether-element *,.tether-element :after,.tether-element :before,.tether-element:after,.tether-element:before{box-sizing:border-box}.tether-element{position:absolute;display:none}.tether-element.tether-open{display:block}.tether-element.tether-theme-arrows-dark{max-width:100%;max-height:100%}.tether-element.tether-theme-arrows-dark .tether-content{border-radius:5px;position:relative;font-family:inherit;background:#000;color:#fff;padding:1em;font-size:1.1em;line-height:1.5em}.tether-element.tether-theme-arrows-dark .tether-content:before{content:"";display:block;position:absolute;width:0;height:0;border-color:transparent;border-width:16px;border-style:solid}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-center .tether-content:before{top:100%;left:50%;margin-left:-16px;border-top-color:#000;border-bottom:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-center .tether-content{margin-top:16px}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-center .tether-content:before{bottom:100%;left:50%;margin-left:-16px;border-bottom-color:#000;border-top:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-element-attached-middle .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content{margin-left:16px}.tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-element-attached-middle .tether-content:before{left:100%;top:50%;margin-top:-16px;border-left-color:#000;border-right:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-element-attached-middle .tether-content:before{right:100%;top:50%;margin-top:-16px;border-right-color:#000;border-left:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content,.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content{margin-top:16px}.tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-target-attached-center .tether-content{left:-32px}.tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-target-attached-center .tether-content{left:32px}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content:before{bottom:100%;left:16px;border-bottom-color:#000;border-top:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content:before{bottom:100%;right:16px;border-bottom-color:#000;border-top:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content:before{top:100%;left:16px;border-top-color:#000;border-bottom:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content:before{top:100%;right:16px;border-top-color:#000;border-bottom:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content:before{bottom:100%;left:16px;border-bottom-color:#000;border-top:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content:before{bottom:100%;right:16px;border-bottom-color:#000;border-top:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content:before{top:100%;left:16px;border-top-color:#000;border-bottom:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content:before{top:100%;right:16px;border-top-color:#000;border-bottom:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content:before{top:16px;left:100%;border-left-color:#000;border-right:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content:before{top:16px;right:100%;border-right-color:#000;border-left:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content:before{bottom:16px;left:100%;border-left-color:#000;border-right:0}.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content:before{bottom:16px;right:100%;border-right-color:#000;border-left:0}admin/assets/tether/dist/css/tether-theme-arrows.css000064400000017240151213255020016604 0ustar00.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box; }

.tether-element {
  position: absolute;
  display: none; }
  .tether-element.tether-open {
    display: block; }

.tether-element.tether-theme-arrows {
  max-width: 100%;
  max-height: 100%; }
  .tether-element.tether-theme-arrows .tether-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #fff;
    color: inherit;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2)); }
    .tether-element.tether-theme-arrows .tether-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid; }
  .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-center .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-center .tether-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #fff;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-center .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-center .tether-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #fff;
      border-top: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-right.tether-element-attached-middle .tether-content {
    margin-right: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-right.tether-element-attached-middle .tether-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #fff;
      border-right: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-left.tether-element-attached-middle .tether-content {
    margin-left: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-left.tether-element-attached-middle .tether-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #fff;
      border-left: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-left.tether-target-attached-center .tether-content {
    left: -32px; }
  .tether-element.tether-theme-arrows.tether-element-attached-right.tether-target-attached-center .tether-content {
    left: 32px; }
  .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #fff;
      border-top: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #fff;
      border-top: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #fff;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #fff;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #fff;
      border-top: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #fff;
      border-top: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #fff;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #fff;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content {
    margin-right: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #fff;
      border-right: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content {
    margin-left: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #fff;
      border-left: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content {
    margin-right: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #fff;
      border-right: 0; }
  .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content {
    margin-left: 16px; }
    .tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #fff;
      border-left: 0; }
admin/assets/tether/dist/css/tether-theme-arrows.min.css000064400000014611151213255020017365 0ustar00.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-center .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content{margin-bottom:16px}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-right.tether-element-attached-middle .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content{margin-right:16px}.tether-element,.tether-element *,.tether-element :after,.tether-element :before,.tether-element:after,.tether-element:before{box-sizing:border-box}.tether-element{position:absolute;display:none}.tether-element.tether-open{display:block}.tether-element.tether-theme-arrows{max-width:100%;max-height:100%}.tether-element.tether-theme-arrows .tether-content{border-radius:5px;position:relative;font-family:inherit;background:#fff;color:inherit;padding:1em;font-size:1.1em;line-height:1.5em;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-filter:drop-shadow(0 1px 4px rgba(0, 0, 0, .2));filter:drop-shadow(0 1px 4px rgba(0, 0, 0, .2))}.tether-element.tether-theme-arrows .tether-content:before{content:"";display:block;position:absolute;width:0;height:0;border-color:transparent;border-width:16px;border-style:solid}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-center .tether-content:before{top:100%;left:50%;margin-left:-16px;border-top-color:#fff;border-bottom:0}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-center .tether-content{margin-top:16px}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-center .tether-content:before{bottom:100%;left:50%;margin-left:-16px;border-bottom-color:#fff;border-top:0}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-left.tether-element-attached-middle .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content{margin-left:16px}.tether-element.tether-theme-arrows.tether-element-attached-right.tether-element-attached-middle .tether-content:before{left:100%;top:50%;margin-top:-16px;border-left-color:#fff;border-right:0}.tether-element.tether-theme-arrows.tether-element-attached-left.tether-element-attached-middle .tether-content:before{right:100%;top:50%;margin-top:-16px;border-right-color:#fff;border-left:0}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content,.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content{margin-top:16px}.tether-element.tether-theme-arrows.tether-element-attached-left.tether-target-attached-center .tether-content{left:-32px}.tether-element.tether-theme-arrows.tether-element-attached-right.tether-target-attached-center .tether-content{left:32px}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content:before{bottom:100%;left:16px;border-bottom-color:#fff;border-top:0}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content:before{bottom:100%;right:16px;border-bottom-color:#fff;border-top:0}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content:before{top:100%;left:16px;border-top-color:#fff;border-bottom:0}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content:before{top:100%;right:16px;border-top-color:#fff;border-bottom:0}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content:before{bottom:100%;left:16px;border-bottom-color:#fff;border-top:0}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content:before{bottom:100%;right:16px;border-bottom-color:#fff;border-top:0}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content:before{top:100%;left:16px;border-top-color:#fff;border-bottom:0}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content:before{top:100%;right:16px;border-top-color:#fff;border-bottom:0}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content:before{top:16px;left:100%;border-left-color:#fff;border-right:0}.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content:before{top:16px;right:100%;border-right-color:#fff;border-left:0}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content:before{bottom:16px;left:100%;border-left-color:#fff;border-right:0}.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content:before{bottom:16px;right:100%;border-right-color:#fff;border-left:0}admin/assets/tether/dist/css/tether-theme-arrows-dark.css000064400000017214151213255020017524 0ustar00.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box; }

.tether-element {
  position: absolute;
  display: none; }
  .tether-element.tether-open {
    display: block; }

.tether-element.tether-theme-arrows-dark {
  max-width: 100%;
  max-height: 100%; }
  .tether-element.tether-theme-arrows-dark .tether-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #000;
    color: #fff;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em; }
    .tether-element.tether-theme-arrows-dark .tether-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-center .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-center .tether-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #000;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-center .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-center .tether-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #000;
      border-top: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-element-attached-middle .tether-content {
    margin-right: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-element-attached-middle .tether-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #000;
      border-right: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-element-attached-middle .tether-content {
    margin-left: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-element-attached-middle .tether-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #000;
      border-left: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-target-attached-center .tether-content {
    left: -32px; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-target-attached-center .tether-content {
    left: 32px; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #000;
      border-top: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #000;
      border-top: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #000;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #000;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #000;
      border-top: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content {
    margin-top: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #000;
      border-top: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #000;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content {
    margin-bottom: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #000;
      border-bottom: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content {
    margin-right: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #000;
      border-right: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content {
    margin-left: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #000;
      border-left: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content {
    margin-right: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #000;
      border-right: 0; }
  .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content {
    margin-left: 16px; }
    .tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #000;
      border-left: 0; }
admin/assets/tether/dist/css/tether.min.css000064400000000355151213255020014752 0ustar00.tether-element,.tether-element *,.tether-element :after,.tether-element :before,.tether-element:after,.tether-element:before{box-sizing:border-box}.tether-element{position:absolute;display:none}.tether-element.tether-open{display:block}admin/assets/tether/dist/css/tether-theme-basic.min.css000064400000000770151213255020017132 0ustar00.tether-element,.tether-element *,.tether-element :after,.tether-element :before,.tether-element:after,.tether-element:before{box-sizing:border-box}.tether-element{position:absolute;display:none}.tether-element.tether-open{display:block}.tether-element.tether-theme-basic{max-width:100%;max-height:100%}.tether-element.tether-theme-basic .tether-content{border-radius:5px;box-shadow:0 2px 8px rgba(0,0,0,.2);font-family:inherit;background:#fff;color:inherit;padding:1em;font-size:1.1em;line-height:1.5em}admin/assets/tether-shepherd/.npmignore000064400000000066151213255020014226 0ustar00.sass-cache
node_modules/
bower_components/
.DS_Store
admin/assets/tether-shepherd/install.json000064400000010437151213255020014573 0ustar00{
  "resources": {
    "head": [
      {
        "type": "style",
        "src": "./dist/css/shepherd-theme-{{ options.theme }}.css"
      },
      {
        "type": "script",
        "src": "./dist/js/tether.js"
      },
      {
        "type": "script",
        "src": "./dist/js/shepherd.js"
      },
      {
        "type": "script",
        "src": "./dist/eager/installHelper.js"
      }
    ]
  },
  "preview": {
    "handlers": [
      {
        "options": ["*"],
        "execute": "ShepherdInstallHelper.setOptions(INSTALL_OPTIONS)"
      },
      {
        "options": ["theme"],
        "reload": true
      }
    ]
  },
  "options": {
    "properties": {
      "theme": {
        "order": 1,
        "title": "Theme",
        "description": "Sets the overall styling of the tour",
        "type": "string",
        "enum": [
          "default",
          "dark",
          "square",
          "square-dark"
        ],
        "enumNames": {
          "default": "Default",
          "dark": "Dark",
          "square": "Square",
          "square-dark": "Square & Dark"
        },
        "default": "default"
      },
      "trigger": {
        "order": 2,
        "title": "Trigger",
        "type": "string",
        "format": "radios",
        "enum": [
          "first-page-visit",
          "button-click"
        ],
        "enumNames": {
          "first-page-visit": "Start the tour when a visitor arrives for the first time.",
          "button-click": "Start the tour when a visitor clicks a button."
        },
        "default": "first-page-visit"
      },
      "buttonLocation": {
        "order": 3,
        "showIf": {
          "trigger": "button-click"
        },
        "title": "Button location",
        "type": "object",
        "format": "element"
      },
      "buttonText": {
        "order": 4,
        "showIf": {
          "trigger": "button-click"
        },
        "title": "Button text",
        "type": "string",
        "default": "Start guided tour..."
      },
      "scrollTo": {
        "order": 5,
        "title": "Scroll To",
        "description": "Should the page be scrolled to show steps when they open?",
        "type": "boolean"
      },
      "steps": {
        "order": 6,
        "title": "Steps",
        "description": "Create a guided tour by creating steps anchored to the parts of your site you want to call attention. Each tour step points to a specific part of your page.",
        "type": "array",
        "maxItems": 10,
        "items": {
          "type": "object",
          "title": "Step",
          "properties": {
            "attachToSelector": {
              "order": 1,
              "title": "Anchor",
              "description": "Part of the page to attach the tour step",
              "type": "string",
              "format": "selector"
            },
            "attachToDirection": {
              "order": 2,
              "title": "Direction",
              "description": "Side of the anchor to attach the tour step",
              "type": "string",
              "enum": [
                "top",
                "right",
                "bottom",
                "left"
              ],
              "enumNames": {
                "top": "Top",
                "right": "Right",
                "bottom": "Bottom",
                "left": "Left"
              },
              "default": "bottom"
            },
            "title": {
              "order": 3,
              "title": "Header",
              "type": "string",
              "maxLength": 50,
              "validationMessage": "The step title cannot be longer than 50 characters."
            },
            "text": {
              "order": 4,
              "title": "Body",
              "type": "string",
              "format": "textarea",
              "maxLength": 200,
              "validationMessage": "The step text cannot be longer than 200 characters."
            },
            "showCancelLink": {
              "order": 5,
              "title": "Show cancel button",
              "type": "boolean",
              "default": true
            }
          }
        },
        "default": [
          {
            "attachToSelector": "h1",
            "attachToDirection": "bottom",
            "title": "Welcome",
            "text": "This is an example step."
          }
        ]
      }
    }
  }
}
admin/assets/tether-shepherd/LICENSE000064400000002042151213255020013230 0ustar00Copyright (c) 2015 HubSpot, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

admin/assets/tether-shepherd/gulpfile.js000064400000004723151213255020014400 0ustar00var del         = require('del');
var gulp        = require('gulp');
var babel       = require('gulp-babel');
var bump        = require('gulp-bump');
var coffee      = require('gulp-coffee');
var header      = require('gulp-header');
var prefixer    = require('gulp-autoprefixer');
var rename      = require('gulp-rename');
var uglify      = require('gulp-uglify');
var sass        = require('gulp-sass');
var umd         = require('gulp-wrap-umd');

// Variables
var distDir = './dist';
var pkg = require('./package.json');
var banner = ['/*!', pkg.name, pkg.version, '*/\n'].join(' ');
var umdOptions = {
  exports: 'Shepherd',
  namespace: 'Shepherd',
  deps: [{
    name: 'Tether',
    globalName: 'Tether',
    paramName: 'Tether',
    amdName: 'tether',
    cjsName: 'tether'
  }]
};


// Clean
gulp.task('clean', function() {
  del.sync([distDir]);
});


// Javascript
gulp.task('js', function() {
  gulp.src('./src/js/**/*.js')
    .pipe(babel())
    .pipe(umd(umdOptions))
    .pipe(header(banner))

    // Original
    .pipe(gulp.dest(distDir + '/js'))

    // Minified
    .pipe(uglify())
    .pipe(rename({suffix: '.min'}))
    .pipe(gulp.dest(distDir + '/js'));
});

// CSS
gulp.task('css', function() {
  gulp.src('./src/css/**/*.sass')
    .pipe(sass({
      includePaths: ['./bower_components']
    }))
    .pipe(prefixer())
    .pipe(gulp.dest(distDir + '/css'));
});

gulp.task('css:docs', function() {
  gulp.src('./docs/welcome/sass/*.sass')
    .pipe(sass())
    .pipe(prefixer())
    .pipe(gulp.dest('./docs/welcome/css'));
});

// Make a copy of tether available to those not using bundling
gulp.task('copy-tether', function() {
  gulp.src('./bower_components/tether/tether.js')
    .pipe(gulp.dest(distDir + '/js'));
});

// Eager
gulp.task('eager', function() {
  gulp.src('./src/eager/**/*.coffee')
    .pipe(coffee())
    .pipe(gulp.dest(distDir + '/eager'));
});


// Version bump
var VERSIONS = ['patch', 'minor', 'major'];
for (var i = 0; i < VERSIONS.length; ++i){
  (function(version) {
    gulp.task('version:' + version, function() {
      gulp.src(['package.json', 'bower.json'])
        .pipe(bump({type: version}))
        .pipe(gulp.dest('.'));
    });
  })(VERSIONS[i]);
}


// Watch
gulp.task('watch', ['js', 'css', 'eager'], function() {
  gulp.watch('./src/js/**/*', ['js']);
  gulp.watch('./src/css/**/*', ['css']);
  gulp.watch('./src/eager/**/*', ['eager']);
});


// Defaults
gulp.task('build', ['js', 'css', 'eager', 'copy-tether']);
gulp.task('default', ['build']);

admin/assets/tether-shepherd/bower.json000064400000001225151213255020014236 0ustar00{
  "name": "tether-shepherd",
  "homepage": "https://github.com/HubSpot/shepherd",
  "authors": [
    "Zack Bloom <zackbloom@gmail.com>",
    "Adam Schwartz <adam.flynn.schwartz@gmail.com>"
  ],
  "maintainers": [
    "Nicholas Hwang <nick.joosung.hwang@gmail.com>",
    "Geoff Daigle <geoffreydaigle@gmail.com>"
  ],
  "description": "Guide your users through a tour of your app.",
  "keywords": [
    "guider",
    "tour",
    "javascript",
    "css"
  ],
  "license": "MIT",
  "main": "dist/js/shepherd.js",
  "ignore": [
    "**/.*",
    "node_modules",
    "bower_components",
    "test",
    "tests"
  ],
  "dependencies": {
    "tether": "^1.0.1"
  }
}
admin/assets/tether-shepherd/.hsdoc000064400000000305151213255030013325 0ustar00title: "shepherd"
description: "Guide your users through a tour of your app."
examples: "docs/**/*.md"
assets: "{dist/js/*.js,dist/css/*.css,docs/css/*.css,docs/js/*,js,docs/welcome/*,examples/*}"
admin/assets/tether-shepherd/CHANGELOG.md000064400000002407151213255030014042 0ustar00## v1.7.0
- Fixes bug where `buttons: false` resulted in the default Next button instead of showing the desired result of no buttons.

## v1.6.0 & v1.6.2
- Patches issue where Tether anchor reference was being cached instead of reset when step is shown.

## v1.5.2
- Adds functionality to pass an object `{element: el, on: tetherPositionString}` to tour step `attachTo` parameter.

## v1.5.1
- Exposes `scrollTo` option in Eager

## v1.5.0
- Positioning string parse improvements with regex
- Installation support for dynamically rendered pages in Eager
- Live updates for eager / creation of `tour.removeStep`

## v1.2.2
- Moves `Tether.js` out of `bower_components` and into `dist` for supoort in Eager

## v1.2.1
- Exposes tour object on eager install

## v1.2.0
- Adds `showOn` for conditonally showing tour steps

## v1.1.4
- Eager - Install helper now checks for the presence of first attach node before starting

## v1.1.2 & v1.1.3
- Fix stacking event listeners

## v1.1.1
- Pointer event none for arrows

## v1.1.0
- Update `Tether` to version 1
- Bump all dependencies

## v1.0.0
- Add proper UMD to `Shepherd`
- Convert from `Coffeescript` to `ES6 (Babel)`
- Fix `*.json` files to include `main`
- Remove bundled versions
- Restructure directory layout
- Update `gulp` builds
admin/assets/tether-shepherd/src/js/shepherd.js000064400000035277151213255030015607 0ustar00/* global Tether */

const {
  Evented,
  addClass,
  extend,
  hasClass,
  removeClass,
  uniqueId
} = Tether.Utils;

let Shepherd = new Evented;

function isUndefined(obj) {
  return typeof obj === 'undefined'
};

function isArray(obj) {
  return obj && obj.constructor === Array;
};

function isObject(obj) {
  return obj && obj.constructor === Object;
};

function isObjectLoose(obj) {
  return typeof obj === 'object';
};

const ATTACHMENT = {
  'top right': 'bottom left',
  'top left': 'bottom right',
  'top center': 'bottom center',
  'middle right': 'middle left',
  'middle left': 'middle right',
  'middle center': 'middle center',
  'bottom left': 'top right',
  'bottom right': 'top left',
  'bottom center': 'top center',
  'top': 'bottom center',
  'left': 'middle right',
  'right': 'middle left',
  'bottom': 'top center',
  'center': 'middle center',
  'middle': 'middle center'
};

function createFromHTML (html) {
  let el = document.createElement('div');
  el.innerHTML = html;
  return el.children[0];
}

function matchesSelector (el, sel) {
  let matches;
  if (!isUndefined(el.matches)) {
    matches = el.matches;
  } else if (!isUndefined(el.matchesSelector)) {
    matches = el.matchesSelector;
  } else if (!isUndefined(el.msMatchesSelector)) {
    matches = el.msMatchesSelector;
  } else if (!isUndefined(el.webkitMatchesSelector)) {
    matches = el.webkitMatchesSelector;
  } else if (!isUndefined(el.mozMatchesSelector)) {
    matches = el.mozMatchesSelector;
  } else if (!isUndefined(el.oMatchesSelector)) {
    matches = el.oMatchesSelector;
  }
  return matches.call(el, sel);
}

const positionRe = /^(.+) (top|left|right|bottom|center|\[[a-z ]+\])$/

function parsePosition (str) {
  if (isObjectLoose(str)) {
    if (str.hasOwnProperty("element") && str.hasOwnProperty("on")) {
      return str;
    }
    return null;
  }

  let matches = positionRe.exec(str);
  if (!matches) {
    return null;
  }

  let on = matches[2];
  if (on[0] === '['){
    on = on.substring(1, on.length - 1);
  }

  return {
    'element': matches[1],
    'on': on
  };
}

function parseShorthand (obj, props) {
  if (obj === null || isUndefined(obj)) {
    return obj;
  } else if (isObjectLoose(obj)) {
    return obj;
  }

  let vals = obj.split(' ');
  let out = {};
  let j = props.length - 1;
  for (let i = vals.length - 1; i >= 0; i--){
    if (j === 0){
      out[props[j]] = vals.slice(0, i + 1).join(' ');
      break;
    } else {
      out[props[j]] = vals[i];
    }

    j--;
  }

  return out;
}

class Step extends Evented {

  constructor(tour, options) {
    super(tour, options);
    this.tour = tour;
    this.bindMethods();
    this.setOptions(options);
    return this;
  }

  bindMethods() {
    const methods = [
      '_show',
      'show',
      'hide',
      'isOpen',
      'cancel',
      'complete',
      'scrollTo',
      'destroy',
      'render'
    ];
    methods.map((method) => {
      this[method] = this[method].bind(this);
    });
  }

  setOptions(options={}) {
    this.options = options;
    this.destroy();

    this.id = this.options.id || this.id || `step-${ uniqueId() }`;

    const when = this.options.when;
    if (when) {
      for (let event in when) {
        if ({}.hasOwnProperty.call(when, event)) {
          let handler = when[event];
          this.on(event, handler, this);
        }
      }
    }

    // Button configuration

    const buttonsJson = JSON.stringify(this.options.buttons);
    const buttonsAreDefault = isUndefined(buttonsJson) ||
                              buttonsJson === "true";

    const buttonsAreEmpty = buttonsJson === "{}" ||
                            buttonsJson === "[]" ||
                            buttonsJson === "null" ||
                            buttonsJson === "false";

    const buttonsAreArray = !buttonsAreDefault && isArray(this.options.buttons)

    const buttonsAreObject = !buttonsAreDefault && isObject(this.options.buttons)

    // Show default button if undefined or 'true'
    if (buttonsAreDefault) {
      this.options.buttons = [{
        text: 'Next',
        action: this.tour.next,
        classes: 'btn'
      }];

    // Can pass in an object which will assume asingle button
    } else if (!buttonsAreEmpty && buttonsAreObject) {
      this.options.buttons = [this.options.buttons];

    // Falsey/empty values or non-object values prevent buttons from rendering
    } else if (buttonsAreEmpty || !buttonsAreArray) {
      this.options.buttons = false;
    }
  }

  getTour() {
    return this.tour;
  }

  bindAdvance() {
    // An empty selector matches the step element
    const {event, selector} = parseShorthand(this.options.advanceOn, ['selector', 'event']);

    const handler = (e) => {
      if (!this.isOpen()) {
        return;
      }

      if (!isUndefined(selector)) {
        if (matchesSelector(e.target, selector)) {
          this.tour.next();
        }
      } else {
        if (this.el && e.target === this.el) {
          this.tour.next();
        }
      }
    };

    // TODO: this should also bind/unbind on show/hide
    document.body.addEventListener(event, handler);
    this.on('destroy', () => {
      return document.body.removeEventListener(event, handler);
    });
  }

  getAttachTo() {
    let opts = parsePosition(this.options.attachTo) || {};
    let returnOpts = extend({}, opts);

    if (typeof opts.element === 'string') {
      // Can't override the element in user opts reference because we can't
      // guarantee that the element will exist in the future.
      returnOpts.element = document.querySelector(opts.element);
      if (!returnOpts.element) {
        console.error(`The element for this Shepherd step was not found ${opts.element}`);
      }
    }

    return returnOpts;
  }

  setupTether() {
    if (isUndefined(Tether)) {
      throw new Error("Using the attachment feature of Shepherd requires the Tether library");
    }

    let opts = this.getAttachTo();
    let attachment = ATTACHMENT[opts.on] || ATTACHMENT.right;
    if (isUndefined(opts.element)) {
      opts.element = 'viewport';
      attachment = 'middle center';
    }

    const tetherOpts = {
      classPrefix: 'shepherd',
      element: this.el,
      constraints: [{
        to: 'window',
        pin: true,
        attachment: 'together'
      }],
      target: opts.element,
      offset: opts.offset || '0 0',
      attachment: attachment
    };

    if (this.tether) {
      this.tether.destroy();
    }

    this.tether = new Tether(extend(tetherOpts, this.options.tetherOptions));
  }

  show() {
    if (!isUndefined(this.options.beforeShowPromise)) {
      const beforeShowPromise = this.options.beforeShowPromise();
      if (!isUndefined(beforeShowPromise)) {
        return beforeShowPromise.then(() => this._show());
      }
    }
    this._show();
  }

  _show() {
    this.trigger('before-show');

    if (!this.el) {
      this.render();
    }

    addClass(this.el, 'shepherd-open');

    document.body.setAttribute('data-shepherd-step', this.id);

    this.setupTether();

    if (this.options.scrollTo) {
      setTimeout(() => {
        this.scrollTo();
      });
    }

    this.trigger('show');
  }

  hide() {
    this.trigger('before-hide');

    removeClass(this.el, 'shepherd-open');

    document.body.removeAttribute('data-shepherd-step');

    if (this.tether) {
      this.tether.destroy();
    }
    this.tether = null;

    this.trigger('hide');
  }

  isOpen() {
    return this.el && hasClass(this.el, 'shepherd-open');
  }

  cancel() {
    this.tour.cancel();
    this.trigger('cancel');
  }

  complete() {
    this.tour.complete();
    this.trigger('complete');
  }

  scrollTo() {
    const {element} = this.getAttachTo();

    if (!isUndefined(this.options.scrollToHandler)) {
      this.options.scrollToHandler(element);
    } else if (!isUndefined(element)) {
      element.scrollIntoView();
    }
  }

  destroy() {
    if (!isUndefined(this.el) && this.el.parentNode) {
      this.el.parentNode.removeChild(this.el);
      delete this.el;
    }

    if (this.tether) {
      this.tether.destroy();
    }
    this.tether = null;

    this.trigger('destroy');
  }

  render() {
    if (!isUndefined(this.el)) {
      this.destroy();
    }

    this.el = createFromHTML(`<div class='shepherd-step ${ this.options.classes || '' }' data-id='${ this.id }' ${ this.options.idAttribute ? 'id="' + this.options.idAttribute + '"' : '' }></div>`);

    let content = document.createElement('div');
    content.className = 'shepherd-content';
    this.el.appendChild(content);

    let header = document.createElement('header');
    content.appendChild(header);

    if (this.options.title) {
      header.innerHTML += `<h3 class='shepherd-title'>${ this.options.title }</h3>`;
      this.el.className += ' shepherd-has-title';
    }

    if (this.options.showCancelLink) {
      const link = createFromHTML("<a href class='shepherd-cancel-link'>✕</a>");
      header.appendChild(link);

      this.el.className += ' shepherd-has-cancel-link';

      this.bindCancelLink(link);
    }

    if (!isUndefined(this.options.text)) {
      const text = createFromHTML("<div class='shepherd-text'></div>");
      let paragraphs = this.options.text;

      if (typeof paragraphs === 'function') {
        paragraphs = paragraphs.call(this, text);
      }

      if (paragraphs instanceof HTMLElement) {
        text.appendChild(paragraphs);
      } else {
        if (typeof paragraphs === 'string') {
          paragraphs = [paragraphs];
        }

        paragraphs.map(paragraph => {
          text.innerHTML += `<p>${ paragraph }</p>`;
        });
      }

      content.appendChild(text);
    }

    if (this.options.buttons) {
      const footer = document.createElement('footer');
      let buttons = createFromHTML("<ul class='shepherd-buttons'></ul>");

      this.options.buttons.map(cfg => {
        const button = createFromHTML(`<li><a class='shepherd-button ${ cfg.classes || '' }'>${ cfg.text }</a>`);
        buttons.appendChild(button);
        this.bindButtonEvents(cfg, button.querySelector('a'));
      });

      footer.appendChild(buttons);
      content.appendChild(footer);
    }


    document.body.appendChild(this.el);

    this.setupTether();

    if (this.options.advanceOn) {
      this.bindAdvance();
    }
  }

  bindCancelLink(link) {
    link.addEventListener('click', (e) => {
      e.preventDefault();
      this.cancel();
    });
  }

  bindButtonEvents(cfg, el) {
    cfg.events = cfg.events || {};
    if (!isUndefined(cfg.action)) {
      // Including both a click event and an action is not supported
      cfg.events.click = cfg.action;
    }

    for (let event in cfg.events) {
      if ({}.hasOwnProperty.call(cfg.events, event)) {
        let handler = cfg.events[event];
        if (typeof handler === 'string') {
          const page = handler;
          handler = () => this.tour.show(page);
        }
        el.addEventListener(event, handler);
      }
    }

    this.on('destroy', () => {
      for (let event in cfg.events) {
        if ({}.hasOwnProperty.call(cfg.events, event)) {
          const handler = cfg.events[event];
          el.removeEventListener(event, handler);
        }
      }
    });
  }

}


class Tour extends Evented {

  constructor(options={}) {
    super(options);
    this.bindMethods();
    this.options = options;
    this.steps = this.options.steps || [];

    // Pass these events onto the global Shepherd object
    const events = ['complete', 'cancel', 'hide', 'start', 'show', 'active', 'inactive'];
    events.map(event => {
      ((e) => {
        this.on(e, (opts) => {
          opts = opts || {};
          opts.tour = this;
          Shepherd.trigger(e, opts);
        });
      })(event);
    });

    return this;
  }

  bindMethods() {
    const methods = [
      'next',
      'back',
      'cancel',
      'complete',
      'hide'
    ];
    methods.map((method) => {
      this[method] = this[method].bind(this);
    });
  }

  addStep(name, step) {
    if (isUndefined(step)) {
      step = name;
    }

    if (!(step instanceof Step)) {
      if (typeof name === 'string' || typeof name === 'number') {
        step.id = name.toString();
      }
      step = extend({}, this.options.defaults, step);
      step = new Step(this, step);
    } else {
      step.tour = this;
    }

    this.steps.push(step);
    return this;
  }

  removeStep(name) {
    const current = this.getCurrentStep();

    for (let i = 0; i < this.steps.length; ++i) {
      const step = this.steps[i];
      if (step.id === name) {
        if (step.isOpen()) {
          step.hide();
        }
        step.destroy();
        this.steps.splice(i, 1);
        break;
      }
    }

    if (current && current.id === name){
      this.currentStep = undefined;

      if (this.steps.length)
        this.show(0);
      else
        this.hide();
    }
  }

  getById(id) {
    for (let i = 0; i < this.steps.length; ++i) {
      const step = this.steps[i];
      if (step.id === id) {
        return step;
      }
    }
  }

  getCurrentStep() {
    return this.currentStep;
  }

  next() {
    const index = this.steps.indexOf(this.currentStep);

    if (index === this.steps.length - 1) {
      this.hide(index);
      this.trigger('complete');
      this.done();
    } else {
      this.show(index + 1, true);
    }
  }

  back() {
    const index = this.steps.indexOf(this.currentStep);
    this.show(index - 1, false);
  }

  cancel() {
    if (this.currentStep) {
      this.currentStep.hide();
    }
    this.trigger('cancel');
    this.done();
  }

  complete() {
    if (this.currentStep) {
      this.currentStep.hide();
    }
    this.trigger('complete');
    this.done();
  }

  hide() {
    if (this.currentStep) {
      this.currentStep.hide();
    }
    this.trigger('hide');
    this.done();
  }

  done() {
    Shepherd.activeTour = null;
    removeClass(document.body, 'shepherd-active');
    this.trigger('inactive', {tour: this});
  }

  show(key=0, forward=true) {
    if (this.currentStep) {
      this.currentStep.hide();
    } else {
      addClass(document.body, 'shepherd-active');
      this.trigger('active', {tour: this});
    }

    Shepherd.activeTour = this;

    let next;

    if (typeof key === 'string') {
      next = this.getById(key);
    } else {
      next = this.steps[key];
    }

    if (next) {
      if (!isUndefined(next.options.showOn) && !next.options.showOn()) {
        const index = this.steps.indexOf(next);
        const nextIndex = forward ? index + 1 : index - 1;
        this.show(nextIndex, forward);
      } else {
        this.trigger('show', {
          step: next,
          previous: this.currentStep
        });

        if (this.currentStep) {
          this.currentStep.hide();
        }

        this.currentStep = next;
        next.show();
      }
    }
  }

  start() {
    this.trigger('start');

    this.currentStep = null;
    this.next();
  }

}

extend(Shepherd, {Tour, Step, Evented});
admin/assets/tether-shepherd/src/css/shepherd-theme-arrows-fix.sass000064400000001366151213255030021507 0ustar00// Because Tether doesnt support some arrow positions correctly

$themePrefix: "shepherd"

.#{$themePrefix}-element-attached-bottom.#{$themePrefix}-element-attached-right.#{$themePrefix}-target-attached-top.#{$themePrefix}-target-attached-left,
.#{$themePrefix}-element-attached-bottom.#{$themePrefix}-element-attached-left.#{$themePrefix}-target-attached-top.#{$themePrefix}-target-attached-right,
.#{$themePrefix}-element-attached-top.#{$themePrefix}-element-attached-right.#{$themePrefix}-target-attached-bottom.#{$themePrefix}-target-attached-left,
.#{$themePrefix}-element-attached-top.#{$themePrefix}-element-attached-left.#{$themePrefix}-target-attached-bottom.#{$themePrefix}-target-attached-right
  .#{$themePrefix}-content:before
    display: none
admin/assets/tether-shepherd/src/css/shepherd-theme-square.sass000064400000010343151213255030020701 0ustar00@import ../bower_components/tether/src/css/mixins/pie-clearfix
@import ../bower_components/tether/src/css/mixins/inline-block
@import ../bower_components/tether/src/css/helpers/tether
@import ../bower_components/tether/src/css/helpers/tether-theme-arrows
@import ./shepherd-theme-arrows-fix

$themePrefix: "shepherd"
$themeName: "square"
$arrowSize: 16px
$arrowPointerEvents: none
$backgroundColor: #f6f6f6
$color: #444
$useDropShadow: false

$headerBackgroundColor: #e6e6e6
$zIndex: 9999
$maxWidth: 24em

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $themeName: $themeName, $arrowSize: $arrowSize, $arrowPointerEvents: $arrowPointerEvents, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)

// Shepherd specific styles

.#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
    border-radius: 0
    z-index: $zIndex
    max-width: $maxWidth
    font-size: 1em

    // Make the arrow 5color the same as the header color when the arrow is on the top

    &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-center, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-bottom, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-bottom

        &.#{ $themePrefix }-has-title .#{ $themePrefix }-content:before
            border-bottom-color: $headerBackgroundColor

    &.#{ $themePrefix }-has-title .#{ $themePrefix }-content header
        background: $headerBackgroundColor
        padding: 1em

        a.shepherd-cancel-link
            padding: 0
            margin-bottom: 0

    &.#{ $themePrefix }-has-cancel-link .#{ $themePrefix }-content header h3
        float: left

    .#{ $themePrefix }-content
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .17)
        border-radius: 0
        padding: 0

        *
            font-size: inherit

        header
            +pie-clearfix
            border-radius: 0

            h3
                margin: 0
                line-height: 1
                font-weight: normal

            a.shepherd-cancel-link
                float: right
                text-decoration: none
                font-size: 1.25em
                line-height: .8em
                font-weight: normal
                color: rgba(0, 0, 0, .5)
                opacity: 0.25
                position: relative
                top: .1em
                padding: .8em
                margin-bottom: -.8em

                &:hover
                    opacity: 1

        .#{ $themePrefix }-text
            padding: 1em

            p
                margin: 0 0 .5em 0
                line-height: 1.3em

                &:last-child
                    margin-bottom: 0

        footer
            padding: 0 1em 1em

            .#{ $themePrefix }-buttons
                text-align: right
                list-style: none
                padding: 0
                margin: 0

                li
                    display: inline
                    padding: 0
                    margin: 0

                    .shepherd-button
                        +inline-block
                        border-radius: 0
                        cursor: pointer
                        border: 0
                        margin: 0 .5em 0 0
                        font-family: inherit
                        text-transform: uppercase
                        letter-spacing: .1em
                        font-size: .8em
                        line-height: 1em
                        padding: .75em 2em
                        background: #3288e6
                        color: #fff

                        &.shepherd-button-secondary
                            background: #eee
                            color: #888

                    &:last-child .shepherd-button
                        margin-right: 0

.#{ $themePrefix }-start-tour-button.#{ $themePrefix }-theme-#{ $themeName }
    +inline-block
    border-radius: 0
    cursor: pointer
    border: 0
    margin: 0 .5em 0 0
    font-family: inherit
    text-transform: uppercase
    letter-spacing: .1em
    font-size: .8em
    line-height: 1em
    padding: .75em 2em
    background: #3288e6
    color: #fff
admin/assets/tether-shepherd/src/css/shepherd-theme-arrows.sass000064400000007216151213255030020723 0ustar00@import ../bower_components/tether/src/css/mixins/pie-clearfix
@import ../bower_components/tether/src/css/mixins/inline-block
@import ../bower_components/tether/src/css/helpers/tether
@import ../bower_components/tether/src/css/helpers/tether-theme-arrows
@import ./shepherd-theme-arrows-fix

$themePrefix: "shepherd"
$arrowSize: 16px
$arrowPointerEvents: none
$backgroundColor: #fff
$color: #444
$useDropShadow: true

$headerBackgroundColor: #eee

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $arrowSize: $arrowSize, $arrowPointerEvents: $arrowPointerEvents, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)

// Shepherd specific styles

.#{ $themePrefix }-element.#{ $themePrefix }-theme-arrows

    // Make the arrow 5color the same as the header color when the arrow is on the top

    &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-center, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-bottom, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-bottom

        &.#{ $themePrefix }-has-title .#{ $themePrefix }-content:before
            border-bottom-color: $headerBackgroundColor

    &.#{ $themePrefix }-has-title .#{ $themePrefix }-content header
        background: $headerBackgroundColor
        padding: 1em

        a.shepherd-cancel-link
            padding: 0
            margin-bottom: 0

    &.#{ $themePrefix }-has-cancel-link .#{ $themePrefix }-content header h3
        float: left

    .#{ $themePrefix }-content
        padding: 0

        *
            font-size: inherit

        header
            +pie-clearfix
            border-radius: 5px 5px 0 0

            h3
                margin: 0
                line-height: 1
                font-weight: normal

            a.shepherd-cancel-link
                float: right
                text-decoration: none
                font-size: 1.25em
                line-height: .8em
                font-weight: normal
                color: rgba(0, 0, 0, .5)
                opacity: 0.25
                position: relative
                top: .1em
                padding: .8em
                margin-bottom: -.8em

                &:hover
                    opacity: 1

        .#{ $themePrefix }-text
            padding: 1em

            p
                margin: 0 0 .5em 0
                line-height: 1.3em

                &:last-child
                    margin-bottom: 0

        footer
            padding: 0 1em 1em

            .#{ $themePrefix }-buttons
                text-align: right
                list-style: none
                padding: 0
                margin: 0

                li
                    display: inline
                    padding: 0
                    margin: 0

                    .shepherd-button
                        +inline-block
                        border-radius: 3px
                        cursor: pointer
                        border: 0
                        margin: 0 .5em 0 0
                        font-family: inherit
                        text-transform: uppercase
                        letter-spacing: .1em
                        font-size: .8em
                        line-height: 1em
                        padding: .75em 2em
                        background: #3288e6
                        color: #fff

                        &.shepherd-button-secondary
                            background: #eee
                            color: #888

                    &:last-child .shepherd-button
                        margin-right: 0
admin/assets/tether-shepherd/src/css/shepherd-theme-square-dark.sass000064400000010350151213255030021616 0ustar00@import ../bower_components/tether/src/css/mixins/pie-clearfix
@import ../bower_components/tether/src/css/mixins/inline-block
@import ../bower_components/tether/src/css/helpers/tether
@import ../bower_components/tether/src/css/helpers/tether-theme-arrows
@import ./shepherd-theme-arrows-fix

$themePrefix: "shepherd"
$themeName: "square-dark"
$arrowSize: 16px
$arrowPointerEvents: none
$backgroundColor: #232323
$color: #eee
$useDropShadow: false

$headerBackgroundColor: #303030
$zIndex: 9999
$maxWidth: 24em

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $themeName: $themeName, $arrowSize: $arrowSize, $arrowPointerEvents: $arrowPointerEvents, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)

// Shepherd specific styles

.#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
    border-radius: 0
    z-index: $zIndex
    max-width: $maxWidth
    font-size: 1em

    // Make the arrow 5color the same as the header color when the arrow is on the top

    &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-center, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-bottom, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-bottom

        &.#{ $themePrefix }-has-title .#{ $themePrefix }-content:before
            border-bottom-color: $headerBackgroundColor

    &.#{ $themePrefix }-has-title .#{ $themePrefix }-content header
        background: $headerBackgroundColor
        padding: 1em

        a.shepherd-cancel-link
            padding: 0
            margin-bottom: 0

    &.#{ $themePrefix }-has-cancel-link .#{ $themePrefix }-content header h3
        float: left

    .#{ $themePrefix }-content
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .17)
        border-radius: 0
        padding: 0

        *
            font-size: inherit

        header
            +pie-clearfix
            border-radius: 0

            h3
                margin: 0
                line-height: 1
                font-weight: normal

            a.shepherd-cancel-link
                float: right
                text-decoration: none
                font-size: 1.25em
                line-height: .8em
                font-weight: normal
                color: rgba(0, 0, 0, .5)
                opacity: 0.25
                position: relative
                top: .1em
                padding: .8em
                margin-bottom: -.8em

                &:hover
                    opacity: 1

        .#{ $themePrefix }-text
            padding: 1em

            p
                margin: 0 0 .5em 0
                line-height: 1.3em

                &:last-child
                    margin-bottom: 0

        footer
            padding: 0 1em 1em

            .#{ $themePrefix }-buttons
                text-align: right
                list-style: none
                padding: 0
                margin: 0

                li
                    display: inline
                    padding: 0
                    margin: 0

                    .shepherd-button
                        +inline-block
                        border-radius: 0
                        cursor: pointer
                        border: 0
                        margin: 0 .5em 0 0
                        font-family: inherit
                        text-transform: uppercase
                        letter-spacing: .1em
                        font-size: .8em
                        line-height: 1em
                        padding: .75em 2em
                        background: #3288e6
                        color: #fff

                        &.shepherd-button-secondary
                            background: #eee
                            color: #888

                    &:last-child .shepherd-button
                        margin-right: 0

.#{ $themePrefix }-start-tour-button.#{ $themePrefix }-theme-#{ $themeName }
    +inline-block
    border-radius: 0
    cursor: pointer
    border: 0
    margin: 0 .5em 0 0
    font-family: inherit
    text-transform: uppercase
    letter-spacing: .1em
    font-size: .8em
    line-height: 1em
    padding: .75em 2em
    background: #3288e6
    color: #fff
admin/assets/tether-shepherd/src/css/shepherd-theme-arrows-plain-buttons.sass000064400000006247151213255030023523 0ustar00@import ../bower_components/tether/src/css/mixins/pie-clearfix
@import ../bower_components/tether/src/css/mixins/inline-block
@import ../bower_components/tether/src/css/helpers/tether
@import ../bower_components/tether/src/css/helpers/tether-theme-arrows
@import ./shepherd-theme-arrows-fix

$themePrefix: "shepherd"
$themeName: "arrows-plain-buttons"
$arrowSize: 16px
$arrowPointerEvents: none
$backgroundColor: #fff
$color: #444
$useDropShadow: true

$headerBackgroundColor: #eee

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $themeName: $themeName, $arrowSize: $arrowSize, $arrowPointerEvents: $arrowPointerEvents, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)

// Shepherd specific styles

.#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }

    // Make the arrow 5color the same as the header color when the arrow is on the top

    &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-center, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-bottom, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-bottom

        &.#{ $themePrefix }-has-title .#{ $themePrefix }-content:before
            border-bottom-color: $headerBackgroundColor

    &.#{ $themePrefix }-has-title .#{ $themePrefix }-content header
        background: $headerBackgroundColor
        padding: 1em

        a.shepherd-cancel-link
            padding: 0
            margin-bottom: 0

    &.#{ $themePrefix }-has-cancel-link .#{ $themePrefix }-content header h3
        float: left

    .#{ $themePrefix }-content
        padding: 0

        header
            +pie-clearfix
            border-radius: 5px 5px 0 0

            h3
                margin: 0
                line-height: 1
                font-weight: normal

            a.shepherd-cancel-link
                float: right
                text-decoration: none
                font-size: 1.25em
                line-height: .8em
                font-weight: normal
                color: rgba(0, 0, 0, .5)
                opacity: 0.25
                position: relative
                top: .1em
                padding: .8em
                margin-bottom: -.8em

                &:hover
                    opacity: 1

        .#{ $themePrefix }-text
            padding: 1em

            p
                margin: 0 0 .5em 0
                line-height: 1.3em

                &:last-child
                    margin-bottom: 0

        footer
            padding: 0 1em 1em

            .#{ $themePrefix }-buttons
                text-align: right
                list-style: none
                padding: 0
                margin: 0

                li
                    display: inline
                    padding: 0
                    margin: 0

                    .shepherd-button
                        +inline-block
                        cursor: pointer
                        margin: 0 .5em 0 0
                        text-decoration: none

                    &:last-child .shepherd-button
                        margin-right: 0
admin/assets/tether-shepherd/src/css/shepherd-theme-dark.sass000064400000010276151213255030020327 0ustar00@import ../bower_components/tether/src/css/mixins/pie-clearfix
@import ../bower_components/tether/src/css/mixins/inline-block
@import ../bower_components/tether/src/css/helpers/tether
@import ../bower_components/tether/src/css/helpers/tether-theme-arrows
@import ./shepherd-theme-arrows-fix

$themePrefix: "shepherd"
$themeName: "dark"
$arrowSize: 16px
$arrowPointerEvents: none
$backgroundColor: #232323
$color: #eee
$useDropShadow: false

$headerBackgroundColor: #303030
$zIndex: 9999
$maxWidth: 24em

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $themeName: $themeName, $arrowSize: $arrowSize, $arrowPointerEvents: $arrowPointerEvents, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)

// Shepherd specific styles

.#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
    z-index: $zIndex
    max-width: $maxWidth
    font-size: 1em

    // Make the arrow 5color the same as the header color when the arrow is on the top

    &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-center, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-bottom, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-bottom

        &.#{ $themePrefix }-has-title .#{ $themePrefix }-content:before
            border-bottom-color: $headerBackgroundColor

    &.#{ $themePrefix }-has-title .#{ $themePrefix }-content header
        background: $headerBackgroundColor
        padding: 1em

        a.shepherd-cancel-link
            padding: 0
            margin-bottom: 0

    &.#{ $themePrefix }-has-cancel-link .#{ $themePrefix }-content header h3
        float: left

    .#{ $themePrefix }-content
        box-shadow: 0 0 1em rgba(0, 0, 0, .2)
        padding: 0

        *
            font-size: inherit

        header
            +pie-clearfix
            border-radius: 5px 5px 0 0

            h3
                margin: 0
                line-height: 1
                font-weight: normal

            a.shepherd-cancel-link
                float: right
                text-decoration: none
                font-size: 1.25em
                line-height: .8em
                font-weight: normal
                color: rgba(0, 0, 0, .5)
                opacity: 0.25
                position: relative
                top: .1em
                padding: .8em
                margin-bottom: -.8em

                &:hover
                    opacity: 1

        .#{ $themePrefix }-text
            padding: 1em

            p
                margin: 0 0 .5em 0
                line-height: 1.3em

                &:last-child
                    margin-bottom: 0

        footer
            padding: 0 1em 1em

            .#{ $themePrefix }-buttons
                text-align: right
                list-style: none
                padding: 0
                margin: 0

                li
                    display: inline
                    padding: 0
                    margin: 0

                    .shepherd-button
                        +inline-block
                        border-radius: 3px
                        cursor: pointer
                        border: 0
                        margin: 0 .5em 0 0
                        font-family: inherit
                        text-transform: uppercase
                        letter-spacing: .1em
                        font-size: .8em
                        line-height: 1em
                        padding: .75em 2em
                        background: #3288e6
                        color: #fff

                        &.shepherd-button-secondary
                            background: #eee
                            color: #888

                    &:last-child .shepherd-button
                        margin-right: 0

.#{ $themePrefix }-start-tour-button.#{ $themePrefix }-theme-#{ $themeName }
    +inline-block
    border-radius: 3px
    cursor: pointer
    border: 0
    margin: 0 .5em 0 0
    font-family: inherit
    text-transform: uppercase
    letter-spacing: .1em
    font-size: .8em
    line-height: 1em
    padding: .75em 2em
    background: #3288e6
    color: #fff
admin/assets/tether-shepherd/src/css/shepherd-theme-default.sass000064400000010304151213255030021022 0ustar00@import ../bower_components/tether/src/css/mixins/pie-clearfix
@import ../bower_components/tether/src/css/mixins/inline-block
@import ../bower_components/tether/src/css/helpers/tether
@import ../bower_components/tether/src/css/helpers/tether-theme-arrows
@import ./shepherd-theme-arrows-fix

$themePrefix: "shepherd"
$themeName: "default"
$arrowSize: 16px
$arrowPointerEvents: none
$backgroundColor: #f6f6f6
$color: #444
$useDropShadow: false

$headerBackgroundColor: #e6e6e6
$zIndex: 9999
$maxWidth: 24em

+tether($themePrefix: $themePrefix)
+tether-theme-arrows($themePrefix: $themePrefix, $themeName: $themeName, $arrowSize: $arrowSize, $arrowPointerEvents: $arrowPointerEvents, $backgroundColor: $backgroundColor, $color: $color, $useDropShadow: $useDropShadow)

// Shepherd specific styles

.#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
    z-index: $zIndex
    max-width: $maxWidth
    font-size: 1em

    // Make the arrow 5color the same as the header color when the arrow is on the top

    &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-center, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-right.#{ $themePrefix }-target-attached-bottom, &.#{ $themePrefix }-element-attached-top.#{ $themePrefix }-element-attached-left.#{ $themePrefix }-target-attached-bottom

        &.#{ $themePrefix }-has-title .#{ $themePrefix }-content:before
            border-bottom-color: $headerBackgroundColor

    &.#{ $themePrefix }-has-title .#{ $themePrefix }-content header
        background: $headerBackgroundColor
        padding: 1em

        a.shepherd-cancel-link
            padding: 0
            margin-bottom: 0

    &.#{ $themePrefix }-has-cancel-link .#{ $themePrefix }-content header h3
        float: left

    .#{ $themePrefix }-content
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .17)
        padding: 0

        *
            font-size: inherit

        header
            +pie-clearfix
            border-radius: 5px 5px 0 0

            h3
                margin: 0
                line-height: 1
                font-weight: normal

            a.shepherd-cancel-link
                float: right
                text-decoration: none
                font-size: 1.25em
                line-height: .8em
                font-weight: normal
                color: rgba(0, 0, 0, .5)
                opacity: 0.25
                position: relative
                top: .1em
                padding: .8em
                margin-bottom: -.8em

                &:hover
                    opacity: 1

        .#{ $themePrefix }-text
            padding: 1em

            p
                margin: 0 0 .5em 0
                line-height: 1.3em

                &:last-child
                    margin-bottom: 0

        footer
            padding: 0 1em 1em

            .#{ $themePrefix }-buttons
                text-align: right
                list-style: none
                padding: 0
                margin: 0

                li
                    display: inline
                    padding: 0
                    margin: 0

                    .shepherd-button
                        +inline-block
                        border-radius: 3px
                        cursor: pointer
                        border: 0
                        margin: 0 .5em 0 0
                        font-family: inherit
                        text-transform: uppercase
                        letter-spacing: .1em
                        font-size: .8em
                        line-height: 1em
                        padding: .75em 2em
                        background: #3288e6
                        color: #fff

                        &.shepherd-button-secondary
                            background: #eee
                            color: #888

                    &:last-child .shepherd-button
                        margin-right: 0

.#{ $themePrefix }-start-tour-button.#{ $themePrefix }-theme-#{ $themeName }
    +inline-block
    border-radius: 3px
    cursor: pointer
    border: 0
    margin: 0 .5em 0 0
    font-family: inherit
    text-transform: uppercase
    letter-spacing: .1em
    font-size: .8em
    line-height: 1em
    padding: .75em 2em
    background: #3288e6
    color: #fff
admin/assets/tether-shepherd/src/eager/installHelper.coffee000064400000006440151213255040020064 0ustar00addEventListener = (el, eventName, handler) ->
  if el.addEventListener
    el.addEventListener eventName, handler
  else
    el.attachEvent "on#{ eventName }", -> handler.call el

ready = (fn) ->
  if document.readyState isnt 'loading'
    fn()
  else if document.addEventListener
    document.addEventListener 'DOMContentLoaded', fn
  else
    document.attachEvent 'onreadystatechange', ->
      fn() if document.readyState isnt 'loading'

firstStepSelector = undefined

options = INSTALL_OPTIONS
tour = null
buttonLocation = null

render = ->
  tour or= new Shepherd.Tour

  steps = []
  for step in options.steps
    if step.text and step.attachToSelector and step.attachToDirection
      if typeof step.text is 'string'
        textLines = step.text.split '\n'
        if textLines.length
          step.text = textLines

      steps.push step

  open = tour.getCurrentStep()?.id

  lastI = -1

  for step, i in steps
    if i is 0
      firstStepSelector = step.attachToSelector

    stepOptions =
      title: step.title
      text: step.text
      showCancelLink: step.showCancelLink
      attachTo: step.attachToSelector + ' ' + step.attachToDirection
      classes: "shepherd-element shepherd-theme-#{ options.theme }"
      scrollTo: options.scrollTo

    stepOptions.buttons = []
    if i > 0
      stepOptions.buttons.push
        text: 'Back'
        action: tour.back
        classes: 'shepherd-button-secondary'
    else if steps.length > 1
      stepOptions.buttons.push
        text: 'Exit'
        action: tour.cancel
        classes: 'shepherd-button-secondary'

    if i < steps.length - 1
      stepOptions.buttons.push
        text: 'Next'
        action: tour.next
    else
      stepOptions.buttons.push
        text: 'Done'
        action: tour.next

    id = "step-#{ i }"

    existing = tour.getById(id)
    if existing
      existing.setOptions stepOptions
      existing.render()

      if open is id
        tour.show(id)
    else
      tour.addStep 'step-' + i, stepOptions

    lastI = i

  while existing = tour.getById("step-#{ ++lastI }")
    tour.removeStep(existing.id)

  ready ->
    if options.trigger is 'first-page-visit' and not Shepherd.activeTour
      tries = 0
      start = ->
        if document.querySelector(firstStepSelector)
          tour.start()

          if INSTALL_ID isnt 'preview'
            localStorage?.eagerShepherdHasRun = 'true'

        else if tries < 3
          tries++
          setTimeout start, 250

      if INSTALL_ID is 'preview' or window.localStorage?.eagerShepherdHasRun isnt 'true'
        start()

    if options.trigger is 'button-click'
      buttonLocation = Eager.createElement options.buttonLocation, buttonLocation

      button = document.createElement 'button'
      button.className = "shepherd-start-tour-button shepherd-theme-#{ options.theme }"
      button.appendChild document.createTextNode options.buttonText

      if buttonLocation
        buttonLocation.appendChild button

        addEventListener button, 'click', ->
          tour.start()

    else if buttonLocation?.parentNode
      Eager.createElement {method: 'append', selector: 'x:not(x)'}, buttonLocation
      buttonLocation = null

render()

ShepherdInstallHelper = {
  setOptions: (opts) ->
    options = opts

    render()

  tour: tour
}

window.ShepherdInstallHelper = ShepherdInstallHelper
admin/assets/tether-shepherd/CONTRIBUTING.md000064400000004124151213255040014461 0ustar00# Contributing Guide

You will need:

- Node.js/io.js & npm
- Bower
- Gulp


## Getting started

1. Fork the project
2. Clone your forked project by running `git clone git@github.com:{
   YOUR_USERNAME }/shepherd.git`
3. Run `npm install` to install both node modules and bower components
4. Test that you can build the source by moving/renaming the existing `dist`
   directory and running `npm run build`
5. Assuming everything went well, you should now have a `dist` directory that
   matches the one you moved in step 4


## Writing code!

We use `gulp` to facilitate things like transpilation, minification, etc. so
you can focus on writing relevant code. If there is a fix or feature you would like
to contribute, we ask that you take the following steps:

1. Most of the _editable_ code lives in the `src` directory while built code
   will end up in the `dist` directory upon running `npm run build`.

2. Depending on how big your changes are, bump the version numbers appropriately
   in `bower.json` and `package.json`. We try to follow semver, so a good rule
   of thumb for how to bump the version is:
   - A fix to existing code, perform a patch bump e.g. x.x.0 -> x.x.1
   - New feature, perform a minor bump e.g. x.0.x -> x.1.x
   - Breaking changes such a rewrite, perform a major bump e.g.
     1.x.x -> 2.x.x

   Versioning is hard, so just use good judgement and we'll be more than happy
   to help out.

   __NOTE__: There is a `gulp` task that will automate some of the versioning.
   You can run `gulp version:{type}` where type is `patch|minor|major` to
   update both `bower.json` and `package.json` as well as add the appropriate
   git tag.

3. Provide a thoughtful commit message and push your changes to your fork using
   `git push origin master` (assuming your forked project is using `origin` for
   the remote name and you are on the `master` branch).

4. Open a Pull Request on GitHub with a description of your changes.


## Testing

Work in progress. We are hoping to add some tests, so if you would like to help
us get started, feel free to contact us through the Issues or open a Pull
Request.

admin/assets/tether-shepherd/dist/js/shepherd.js000064400000050507151213255040015755 0ustar00/*! tether-shepherd 1.8.1 */

(function(root, factory) {
  if (typeof define === 'function' && define.amd) {
    define(["tether"], factory);
  } else if (typeof exports === 'object') {
    module.exports = factory(require('tether'));
  } else {
    root.Shepherd = factory(root.Tether);
  }
}(this, function(Tether) {

/* global Tether */

'use strict';

var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();

var _get = function get(_x5, _x6, _x7) { var _again = true; _function: while (_again) { var object = _x5, property = _x6, receiver = _x7; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x5 = parent; _x6 = property; _x7 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }

function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }

var _Tether$Utils = Tether.Utils;
var Evented = _Tether$Utils.Evented;
var addClass = _Tether$Utils.addClass;
var extend = _Tether$Utils.extend;
var hasClass = _Tether$Utils.hasClass;
var removeClass = _Tether$Utils.removeClass;
var uniqueId = _Tether$Utils.uniqueId;

var Shepherd = new Evented();

function isUndefined(obj) {
  return typeof obj === 'undefined';
};

function isArray(obj) {
  return obj && obj.constructor === Array;
};

function isObject(obj) {
  return obj && obj.constructor === Object;
};

function isObjectLoose(obj) {
  return typeof obj === 'object';
};

var ATTACHMENT = {
  'top right': 'bottom left',
  'top left': 'bottom right',
  'top center': 'bottom center',
  'middle right': 'middle left',
  'middle left': 'middle right',
  'middle center': 'middle center',
  'bottom left': 'top right',
  'bottom right': 'top left',
  'bottom center': 'top center',
  'top': 'bottom center',
  'left': 'middle right',
  'right': 'middle left',
  'bottom': 'top center',
  'center': 'middle center',
  'middle': 'middle center'
};

function createFromHTML(html) {
  var el = document.createElement('div');
  el.innerHTML = html;
  return el.children[0];
}

function matchesSelector(el, sel) {
  var matches = undefined;
  if (!isUndefined(el.matches)) {
    matches = el.matches;
  } else if (!isUndefined(el.matchesSelector)) {
    matches = el.matchesSelector;
  } else if (!isUndefined(el.msMatchesSelector)) {
    matches = el.msMatchesSelector;
  } else if (!isUndefined(el.webkitMatchesSelector)) {
    matches = el.webkitMatchesSelector;
  } else if (!isUndefined(el.mozMatchesSelector)) {
    matches = el.mozMatchesSelector;
  } else if (!isUndefined(el.oMatchesSelector)) {
    matches = el.oMatchesSelector;
  }
  return matches.call(el, sel);
}

var positionRe = /^(.+) (top|left|right|bottom|center|\[[a-z ]+\])$/;

function parsePosition(str) {
  if (isObjectLoose(str)) {
    if (str.hasOwnProperty("element") && str.hasOwnProperty("on")) {
      return str;
    }
    return null;
  }

  var matches = positionRe.exec(str);
  if (!matches) {
    return null;
  }

  var on = matches[2];
  if (on[0] === '[') {
    on = on.substring(1, on.length - 1);
  }

  return {
    'element': matches[1],
    'on': on
  };
}

function parseShorthand(obj, props) {
  if (obj === null || isUndefined(obj)) {
    return obj;
  } else if (isObjectLoose(obj)) {
    return obj;
  }

  var vals = obj.split(' ');
  var out = {};
  var j = props.length - 1;
  for (var i = vals.length - 1; i >= 0; i--) {
    if (j === 0) {
      out[props[j]] = vals.slice(0, i + 1).join(' ');
      break;
    } else {
      out[props[j]] = vals[i];
    }

    j--;
  }

  return out;
}

var Step = (function (_Evented) {
  _inherits(Step, _Evented);

  function Step(tour, options) {
    _classCallCheck(this, Step);

    _get(Object.getPrototypeOf(Step.prototype), 'constructor', this).call(this, tour, options);
    this.tour = tour;
    this.bindMethods();
    this.setOptions(options);
    return this;
  }

  _createClass(Step, [{
    key: 'bindMethods',
    value: function bindMethods() {
      var _this = this;

      var methods = ['_show', 'show', 'hide', 'isOpen', 'cancel', 'complete', 'scrollTo', 'destroy', 'render'];
      methods.map(function (method) {
        _this[method] = _this[method].bind(_this);
      });
    }
  }, {
    key: 'setOptions',
    value: function setOptions() {
      var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

      this.options = options;
      this.destroy();

      this.id = this.options.id || this.id || 'step-' + uniqueId();

      var when = this.options.when;
      if (when) {
        for (var _event in when) {
          if (({}).hasOwnProperty.call(when, _event)) {
            var handler = when[_event];
            this.on(_event, handler, this);
          }
        }
      }

      // Button configuration

      var buttonsJson = JSON.stringify(this.options.buttons);
      var buttonsAreDefault = isUndefined(buttonsJson) || buttonsJson === "true";

      var buttonsAreEmpty = buttonsJson === "{}" || buttonsJson === "[]" || buttonsJson === "null" || buttonsJson === "false";

      var buttonsAreArray = !buttonsAreDefault && isArray(this.options.buttons);

      var buttonsAreObject = !buttonsAreDefault && isObject(this.options.buttons);

      // Show default button if undefined or 'true'
      if (buttonsAreDefault) {
        this.options.buttons = [{
          text: 'Next',
          action: this.tour.next,
          classes: 'btn'
        }];

        // Can pass in an object which will assume asingle button
      } else if (!buttonsAreEmpty && buttonsAreObject) {
          this.options.buttons = [this.options.buttons];

          // Falsey/empty values or non-object values prevent buttons from rendering
        } else if (buttonsAreEmpty || !buttonsAreArray) {
            this.options.buttons = false;
          }
    }
  }, {
    key: 'getTour',
    value: function getTour() {
      return this.tour;
    }
  }, {
    key: 'bindAdvance',
    value: function bindAdvance() {
      var _this2 = this;

      // An empty selector matches the step element

      var _parseShorthand = parseShorthand(this.options.advanceOn, ['selector', 'event']);

      var event = _parseShorthand.event;
      var selector = _parseShorthand.selector;

      var handler = function handler(e) {
        if (!_this2.isOpen()) {
          return;
        }

        if (!isUndefined(selector)) {
          if (matchesSelector(e.target, selector)) {
            _this2.tour.next();
          }
        } else {
          if (_this2.el && e.target === _this2.el) {
            _this2.tour.next();
          }
        }
      };

      // TODO: this should also bind/unbind on show/hide
      document.body.addEventListener(event, handler);
      this.on('destroy', function () {
        return document.body.removeEventListener(event, handler);
      });
    }
  }, {
    key: 'getAttachTo',
    value: function getAttachTo() {
      var opts = parsePosition(this.options.attachTo) || {};
      var returnOpts = extend({}, opts);

      if (typeof opts.element === 'string') {
        // Can't override the element in user opts reference because we can't
        // guarantee that the element will exist in the future.
        returnOpts.element = document.querySelector(opts.element);
        if (!returnOpts.element) {
          console.error('The element for this Shepherd step was not found ' + opts.element);
        }
      }

      return returnOpts;
    }
  }, {
    key: 'setupTether',
    value: function setupTether() {
      if (isUndefined(Tether)) {
        throw new Error("Using the attachment feature of Shepherd requires the Tether library");
      }

      var opts = this.getAttachTo();
      var attachment = ATTACHMENT[opts.on] || ATTACHMENT.right;
      if (isUndefined(opts.element)) {
        opts.element = 'viewport';
        attachment = 'middle center';
      }

      var tetherOpts = {
        classPrefix: 'shepherd',
        element: this.el,
        constraints: [{
          to: 'window',
          pin: true,
          attachment: 'together'
        }],
        target: opts.element,
        offset: opts.offset || '0 0',
        attachment: attachment
      };

      if (this.tether) {
        this.tether.destroy();
      }

      this.tether = new Tether(extend(tetherOpts, this.options.tetherOptions));
    }
  }, {
    key: 'show',
    value: function show() {
      var _this3 = this;

      if (!isUndefined(this.options.beforeShowPromise)) {
        var beforeShowPromise = this.options.beforeShowPromise();
        if (!isUndefined(beforeShowPromise)) {
          return beforeShowPromise.then(function () {
            return _this3._show();
          });
        }
      }
      this._show();
    }
  }, {
    key: '_show',
    value: function _show() {
      var _this4 = this;

      this.trigger('before-show');

      if (!this.el) {
        this.render();
      }

      addClass(this.el, 'shepherd-open');

      document.body.setAttribute('data-shepherd-step', this.id);

      this.setupTether();

      if (this.options.scrollTo) {
        setTimeout(function () {
          _this4.scrollTo();
        });
      }

      this.trigger('show');
    }
  }, {
    key: 'hide',
    value: function hide() {
      this.trigger('before-hide');

      removeClass(this.el, 'shepherd-open');

      document.body.removeAttribute('data-shepherd-step');

      if (this.tether) {
        this.tether.destroy();
      }
      this.tether = null;

      this.trigger('hide');
    }
  }, {
    key: 'isOpen',
    value: function isOpen() {
      return this.el && hasClass(this.el, 'shepherd-open');
    }
  }, {
    key: 'cancel',
    value: function cancel() {
      this.tour.cancel();
      this.trigger('cancel');
    }
  }, {
    key: 'complete',
    value: function complete() {
      this.tour.complete();
      this.trigger('complete');
    }
  }, {
    key: 'scrollTo',
    value: function scrollTo() {
      var _getAttachTo = this.getAttachTo();

      var element = _getAttachTo.element;

      if (!isUndefined(this.options.scrollToHandler)) {
        this.options.scrollToHandler(element);
      } else if (!isUndefined(element)) {
        element.scrollIntoView();
      }
    }
  }, {
    key: 'destroy',
    value: function destroy() {
      if (!isUndefined(this.el) && this.el.parentNode) {
        this.el.parentNode.removeChild(this.el);
        delete this.el;
      }

      if (this.tether) {
        this.tether.destroy();
      }
      this.tether = null;

      this.trigger('destroy');
    }
  }, {
    key: 'render',
    value: function render() {
      var _this5 = this;

      if (!isUndefined(this.el)) {
        this.destroy();
      }

      this.el = createFromHTML('<div class=\'shepherd-step ' + (this.options.classes || '') + '\' data-id=\'' + this.id + '\' ' + (this.options.idAttribute ? 'id="' + this.options.idAttribute + '"' : '') + '></div>');

      var content = document.createElement('div');
      content.className = 'shepherd-content';
      this.el.appendChild(content);

      var header = document.createElement('header');
      content.appendChild(header);

      if (this.options.title) {
        header.innerHTML += '<h3 class=\'shepherd-title\'>' + this.options.title + '</h3>';
        this.el.className += ' shepherd-has-title';
      }

      if (this.options.showCancelLink) {
        var link = createFromHTML("<a href class='shepherd-cancel-link'>✕</a>");
        header.appendChild(link);

        this.el.className += ' shepherd-has-cancel-link';

        this.bindCancelLink(link);
      }

      if (!isUndefined(this.options.text)) {
        (function () {
          var text = createFromHTML("<div class='shepherd-text'></div>");
          var paragraphs = _this5.options.text;

          if (typeof paragraphs === 'function') {
            paragraphs = paragraphs.call(_this5, text);
          }

          if (paragraphs instanceof HTMLElement) {
            text.appendChild(paragraphs);
          } else {
            if (typeof paragraphs === 'string') {
              paragraphs = [paragraphs];
            }

            paragraphs.map(function (paragraph) {
              text.innerHTML += '<p>' + paragraph + '</p>';
            });
          }

          content.appendChild(text);
        })();
      }

      if (this.options.buttons) {
        (function () {
          var footer = document.createElement('footer');
          var buttons = createFromHTML("<ul class='shepherd-buttons'></ul>");

          _this5.options.buttons.map(function (cfg) {
            var button = createFromHTML('<li><a class=\'shepherd-button ' + (cfg.classes || '') + '\'>' + cfg.text + '</a>');
            buttons.appendChild(button);
            _this5.bindButtonEvents(cfg, button.querySelector('a'));
          });

          footer.appendChild(buttons);
          content.appendChild(footer);
        })();
      }

      document.body.appendChild(this.el);

      this.setupTether();

      if (this.options.advanceOn) {
        this.bindAdvance();
      }
    }
  }, {
    key: 'bindCancelLink',
    value: function bindCancelLink(link) {
      var _this6 = this;

      link.addEventListener('click', function (e) {
        e.preventDefault();
        _this6.cancel();
      });
    }
  }, {
    key: 'bindButtonEvents',
    value: function bindButtonEvents(cfg, el) {
      var _this7 = this;

      cfg.events = cfg.events || {};
      if (!isUndefined(cfg.action)) {
        // Including both a click event and an action is not supported
        cfg.events.click = cfg.action;
      }

      for (var _event2 in cfg.events) {
        if (({}).hasOwnProperty.call(cfg.events, _event2)) {
          var handler = cfg.events[_event2];
          if (typeof handler === 'string') {
            (function () {
              var page = handler;
              handler = function () {
                return _this7.tour.show(page);
              };
            })();
          }
          el.addEventListener(_event2, handler);
        }
      }

      this.on('destroy', function () {
        for (var _event3 in cfg.events) {
          if (({}).hasOwnProperty.call(cfg.events, _event3)) {
            var handler = cfg.events[_event3];
            el.removeEventListener(_event3, handler);
          }
        }
      });
    }
  }]);

  return Step;
})(Evented);

var Tour = (function (_Evented2) {
  _inherits(Tour, _Evented2);

  function Tour() {
    var _this8 = this;

    var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

    _classCallCheck(this, Tour);

    _get(Object.getPrototypeOf(Tour.prototype), 'constructor', this).call(this, options);
    this.bindMethods();
    this.options = options;
    this.steps = this.options.steps || [];

    // Pass these events onto the global Shepherd object
    var events = ['complete', 'cancel', 'hide', 'start', 'show', 'active', 'inactive'];
    events.map(function (event) {
      (function (e) {
        _this8.on(e, function (opts) {
          opts = opts || {};
          opts.tour = _this8;
          Shepherd.trigger(e, opts);
        });
      })(event);
    });

    return this;
  }

  _createClass(Tour, [{
    key: 'bindMethods',
    value: function bindMethods() {
      var _this9 = this;

      var methods = ['next', 'back', 'cancel', 'complete', 'hide'];
      methods.map(function (method) {
        _this9[method] = _this9[method].bind(_this9);
      });
    }
  }, {
    key: 'addStep',
    value: function addStep(name, step) {
      if (isUndefined(step)) {
        step = name;
      }

      if (!(step instanceof Step)) {
        if (typeof name === 'string' || typeof name === 'number') {
          step.id = name.toString();
        }
        step = extend({}, this.options.defaults, step);
        step = new Step(this, step);
      } else {
        step.tour = this;
      }

      this.steps.push(step);
      return this;
    }
  }, {
    key: 'removeStep',
    value: function removeStep(name) {
      var current = this.getCurrentStep();

      for (var i = 0; i < this.steps.length; ++i) {
        var step = this.steps[i];
        if (step.id === name) {
          if (step.isOpen()) {
            step.hide();
          }
          step.destroy();
          this.steps.splice(i, 1);
          break;
        }
      }

      if (current && current.id === name) {
        this.currentStep = undefined;

        if (this.steps.length) this.show(0);else this.hide();
      }
    }
  }, {
    key: 'getById',
    value: function getById(id) {
      for (var i = 0; i < this.steps.length; ++i) {
        var step = this.steps[i];
        if (step.id === id) {
          return step;
        }
      }
    }
  }, {
    key: 'getCurrentStep',
    value: function getCurrentStep() {
      return this.currentStep;
    }
  }, {
    key: 'next',
    value: function next() {
      var index = this.steps.indexOf(this.currentStep);

      if (index === this.steps.length - 1) {
        this.hide(index);
        this.trigger('complete');
        this.done();
      } else {
        this.show(index + 1, true);
      }
    }
  }, {
    key: 'back',
    value: function back() {
      var index = this.steps.indexOf(this.currentStep);
      this.show(index - 1, false);
    }
  }, {
    key: 'cancel',
    value: function cancel() {
      if (this.currentStep) {
        this.currentStep.hide();
      }
      this.trigger('cancel');
      this.done();
    }
  }, {
    key: 'complete',
    value: function complete() {
      if (this.currentStep) {
        this.currentStep.hide();
      }
      this.trigger('complete');
      this.done();
    }
  }, {
    key: 'hide',
    value: function hide() {
      if (this.currentStep) {
        this.currentStep.hide();
      }
      this.trigger('hide');
      this.done();
    }
  }, {
    key: 'done',
    value: function done() {
      Shepherd.activeTour = null;
      removeClass(document.body, 'shepherd-active');
      this.trigger('inactive', { tour: this });
    }
  }, {
    key: 'show',
    value: function show() {
      var key = arguments.length <= 0 || arguments[0] === undefined ? 0 : arguments[0];
      var forward = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1];

      if (this.currentStep) {
        this.currentStep.hide();
      } else {
        addClass(document.body, 'shepherd-active');
        this.trigger('active', { tour: this });
      }

      Shepherd.activeTour = this;

      var next = undefined;

      if (typeof key === 'string') {
        next = this.getById(key);
      } else {
        next = this.steps[key];
      }

      if (next) {
        if (!isUndefined(next.options.showOn) && !next.options.showOn()) {
          var index = this.steps.indexOf(next);
          var nextIndex = forward ? index + 1 : index - 1;
          this.show(nextIndex, forward);
        } else {
          this.trigger('show', {
            step: next,
            previous: this.currentStep
          });

          if (this.currentStep) {
            this.currentStep.hide();
          }

          this.currentStep = next;
          next.show();
        }
      }
    }
  }, {
    key: 'start',
    value: function start() {
      this.trigger('start');

      this.currentStep = null;
      this.next();
    }
  }]);

  return Tour;
})(Evented);

extend(Shepherd, { Tour: Tour, Step: Step, Evented: Evented });
return Shepherd;

}));
admin/assets/tether-shepherd/dist/js/tether.js000064400000136230151213255040015444 0ustar00/*! tether 0.6.5 */


(function(root, factory) {
  if (typeof define === 'function' && define.amd) {
    define(factory);
  } else if (typeof exports === 'object') {
    module.exports = factory(require,exports,module);
  } else {
    root.Tether = factory();
  }
}(this, function(require,exports,module) {

(function() {
  var Evented, addClass, defer, deferred, extend, flush, getBounds, getOffsetParent, getOrigin, getScrollBarSize, getScrollParent, hasClass, node, removeClass, uniqueId, updateClasses, zeroPosCache,
    __hasProp = {}.hasOwnProperty,
    __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; },
    __slice = [].slice;

  if (this.Tether == null) {
    this.Tether = {
      modules: []
    };
  }

  getScrollParent = function(el) {
    var parent, position, scrollParent, style, _ref;
    position = getComputedStyle(el).position;
    if (position === 'fixed') {
      return el;
    }
    scrollParent = void 0;
    parent = el;
    while (parent = parent.parentNode) {
      try {
        style = getComputedStyle(parent);
      } catch (_error) {}
      if (style == null) {
        return parent;
      }
      if (/(auto|scroll)/.test(style['overflow'] + style['overflow-y'] + style['overflow-x'])) {
        if (position !== 'absolute' || ((_ref = style['position']) === 'relative' || _ref === 'absolute' || _ref === 'fixed')) {
          return parent;
        }
      }
    }
    return document.body;
  };

  uniqueId = (function() {
    var id;
    id = 0;
    return function() {
      return id++;
    };
  })();

  zeroPosCache = {};

  getOrigin = function(doc) {
    var id, k, node, v, _ref;
    node = doc._tetherZeroElement;
    if (node == null) {
      node = doc.createElement('div');
      node.setAttribute('data-tether-id', uniqueId());
      extend(node.style, {
        top: 0,
        left: 0,
        position: 'absolute'
      });
      doc.body.appendChild(node);
      doc._tetherZeroElement = node;
    }
    id = node.getAttribute('data-tether-id');
    if (zeroPosCache[id] == null) {
      zeroPosCache[id] = {};
      _ref = node.getBoundingClientRect();
      for (k in _ref) {
        v = _ref[k];
        zeroPosCache[id][k] = v;
      }
      defer(function() {
        return zeroPosCache[id] = void 0;
      });
    }
    return zeroPosCache[id];
  };

  node = null;

  getBounds = function(el) {
    var box, doc, docEl, k, origin, v, _ref;
    if (el === document) {
      doc = document;
      el = document.documentElement;
    } else {
      doc = el.ownerDocument;
    }
    docEl = doc.documentElement;
    box = {};
    _ref = el.getBoundingClientRect();
    for (k in _ref) {
      v = _ref[k];
      box[k] = v;
    }
    origin = getOrigin(doc);
    box.top -= origin.top;
    box.left -= origin.left;
    if (box.width == null) {
      box.width = document.body.scrollWidth - box.left - box.right;
    }
    if (box.height == null) {
      box.height = document.body.scrollHeight - box.top - box.bottom;
    }
    box.top = box.top - docEl.clientTop;
    box.left = box.left - docEl.clientLeft;
    box.right = doc.body.clientWidth - box.width - box.left;
    box.bottom = doc.body.clientHeight - box.height - box.top;
    return box;
  };

  getOffsetParent = function(el) {
    return el.offsetParent || document.documentElement;
  };

  getScrollBarSize = function() {
    var inner, outer, width, widthContained, widthScroll;
    inner = document.createElement('div');
    inner.style.width = '100%';
    inner.style.height = '200px';
    outer = document.createElement('div');
    extend(outer.style, {
      position: 'absolute',
      top: 0,
      left: 0,
      pointerEvents: 'none',
      visibility: 'hidden',
      width: '200px',
      height: '150px',
      overflow: 'hidden'
    });
    outer.appendChild(inner);
    document.body.appendChild(outer);
    widthContained = inner.offsetWidth;
    outer.style.overflow = 'scroll';
    widthScroll = inner.offsetWidth;
    if (widthContained === widthScroll) {
      widthScroll = outer.clientWidth;
    }
    document.body.removeChild(outer);
    width = widthContained - widthScroll;
    return {
      width: width,
      height: width
    };
  };

  extend = function(out) {
    var args, key, obj, val, _i, _len, _ref;
    if (out == null) {
      out = {};
    }
    args = [];
    Array.prototype.push.apply(args, arguments);
    _ref = args.slice(1);
    for (_i = 0, _len = _ref.length; _i < _len; _i++) {
      obj = _ref[_i];
      if (obj) {
        for (key in obj) {
          if (!__hasProp.call(obj, key)) continue;
          val = obj[key];
          out[key] = val;
        }
      }
    }
    return out;
  };

  removeClass = function(el, name) {
    var cls, _i, _len, _ref, _results;
    if (el.classList != null) {
      _ref = name.split(' ');
      _results = [];
      for (_i = 0, _len = _ref.length; _i < _len; _i++) {
        cls = _ref[_i];
        if (cls.trim()) {
          _results.push(el.classList.remove(cls));
        }
      }
      return _results;
    } else {
      return el.className = el.className.replace(new RegExp("(^| )" + (name.split(' ').join('|')) + "( |$)", 'gi'), ' ');
    }
  };

  addClass = function(el, name) {
    var cls, _i, _len, _ref, _results;
    if (el.classList != null) {
      _ref = name.split(' ');
      _results = [];
      for (_i = 0, _len = _ref.length; _i < _len; _i++) {
        cls = _ref[_i];
        if (cls.trim()) {
          _results.push(el.classList.add(cls));
        }
      }
      return _results;
    } else {
      removeClass(el, name);
      return el.className += " " + name;
    }
  };

  hasClass = function(el, name) {
    if (el.classList != null) {
      return el.classList.contains(name);
    } else {
      return new RegExp("(^| )" + name + "( |$)", 'gi').test(el.className);
    }
  };

  updateClasses = function(el, add, all) {
    var cls, _i, _j, _len, _len1, _results;
    for (_i = 0, _len = all.length; _i < _len; _i++) {
      cls = all[_i];
      if (__indexOf.call(add, cls) < 0) {
        if (hasClass(el, cls)) {
          removeClass(el, cls);
        }
      }
    }
    _results = [];
    for (_j = 0, _len1 = add.length; _j < _len1; _j++) {
      cls = add[_j];
      if (!hasClass(el, cls)) {
        _results.push(addClass(el, cls));
      } else {
        _results.push(void 0);
      }
    }
    return _results;
  };

  deferred = [];

  defer = function(fn) {
    return deferred.push(fn);
  };

  flush = function() {
    var fn, _results;
    _results = [];
    while (fn = deferred.pop()) {
      _results.push(fn());
    }
    return _results;
  };

  Evented = (function() {
    function Evented() {}

    Evented.prototype.on = function(event, handler, ctx, once) {
      var _base;
      if (once == null) {
        once = false;
      }
      if (this.bindings == null) {
        this.bindings = {};
      }
      if ((_base = this.bindings)[event] == null) {
        _base[event] = [];
      }
      return this.bindings[event].push({
        handler: handler,
        ctx: ctx,
        once: once
      });
    };

    Evented.prototype.once = function(event, handler, ctx) {
      return this.on(event, handler, ctx, true);
    };

    Evented.prototype.off = function(event, handler) {
      var i, _ref, _results;
      if (((_ref = this.bindings) != null ? _ref[event] : void 0) == null) {
        return;
      }
      if (handler == null) {
        return delete this.bindings[event];
      } else {
        i = 0;
        _results = [];
        while (i < this.bindings[event].length) {
          if (this.bindings[event][i].handler === handler) {
            _results.push(this.bindings[event].splice(i, 1));
          } else {
            _results.push(i++);
          }
        }
        return _results;
      }
    };

    Evented.prototype.trigger = function() {
      var args, ctx, event, handler, i, once, _ref, _ref1, _results;
      event = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
      if ((_ref = this.bindings) != null ? _ref[event] : void 0) {
        i = 0;
        _results = [];
        while (i < this.bindings[event].length) {
          _ref1 = this.bindings[event][i], handler = _ref1.handler, ctx = _ref1.ctx, once = _ref1.once;
          handler.apply(ctx != null ? ctx : this, args);
          if (once) {
            _results.push(this.bindings[event].splice(i, 1));
          } else {
            _results.push(i++);
          }
        }
        return _results;
      }
    };

    return Evented;

  })();

  this.Tether.Utils = {
    getScrollParent: getScrollParent,
    getBounds: getBounds,
    getOffsetParent: getOffsetParent,
    extend: extend,
    addClass: addClass,
    removeClass: removeClass,
    hasClass: hasClass,
    updateClasses: updateClasses,
    defer: defer,
    flush: flush,
    uniqueId: uniqueId,
    Evented: Evented,
    getScrollBarSize: getScrollBarSize
  };

}).call(this);

(function() {
  var MIRROR_LR, MIRROR_TB, OFFSET_MAP, Tether, addClass, addOffset, attachmentToOffset, autoToFixedAttachment, defer, extend, flush, getBounds, getOffsetParent, getOuterSize, getScrollBarSize, getScrollParent, getSize, now, offsetToPx, parseAttachment, parseOffset, position, removeClass, tethers, transformKey, updateClasses, within, _Tether, _ref,
    __slice = [].slice,
    __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };

  if (this.Tether == null) {
    throw new Error("You must include the utils.js file before tether.js");
  }

  Tether = this.Tether;

  _ref = Tether.Utils, getScrollParent = _ref.getScrollParent, getSize = _ref.getSize, getOuterSize = _ref.getOuterSize, getBounds = _ref.getBounds, getOffsetParent = _ref.getOffsetParent, extend = _ref.extend, addClass = _ref.addClass, removeClass = _ref.removeClass, updateClasses = _ref.updateClasses, defer = _ref.defer, flush = _ref.flush, getScrollBarSize = _ref.getScrollBarSize;

  within = function(a, b, diff) {
    if (diff == null) {
      diff = 1;
    }
    return (a + diff >= b && b >= a - diff);
  };

  transformKey = (function() {
    var el, key, _i, _len, _ref1;
    el = document.createElement('div');
    _ref1 = ['transform', 'webkitTransform', 'OTransform', 'MozTransform', 'msTransform'];
    for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
      key = _ref1[_i];
      if (el.style[key] !== void 0) {
        return key;
      }
    }
  })();

  tethers = [];

  position = function() {
    var tether, _i, _len;
    for (_i = 0, _len = tethers.length; _i < _len; _i++) {
      tether = tethers[_i];
      tether.position(false);
    }
    return flush();
  };

  now = function() {
    var _ref1;
    return (_ref1 = typeof performance !== "undefined" && performance !== null ? typeof performance.now === "function" ? performance.now() : void 0 : void 0) != null ? _ref1 : +(new Date);
  };

  (function() {
    var event, lastCall, lastDuration, pendingTimeout, tick, _i, _len, _ref1, _results;
    lastCall = null;
    lastDuration = null;
    pendingTimeout = null;
    tick = function() {
      if ((lastDuration != null) && lastDuration > 16) {
        lastDuration = Math.min(lastDuration - 16, 250);
        pendingTimeout = setTimeout(tick, 250);
        return;
      }
      if ((lastCall != null) && (now() - lastCall) < 10) {
        return;
      }
      if (pendingTimeout != null) {
        clearTimeout(pendingTimeout);
        pendingTimeout = null;
      }
      lastCall = now();
      position();
      return lastDuration = now() - lastCall;
    };
    _ref1 = ['resize', 'scroll', 'touchmove'];
    _results = [];
    for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
      event = _ref1[_i];
      _results.push(window.addEventListener(event, tick));
    }
    return _results;
  })();

  MIRROR_LR = {
    center: 'center',
    left: 'right',
    right: 'left'
  };

  MIRROR_TB = {
    middle: 'middle',
    top: 'bottom',
    bottom: 'top'
  };

  OFFSET_MAP = {
    top: 0,
    left: 0,
    middle: '50%',
    center: '50%',
    bottom: '100%',
    right: '100%'
  };

  autoToFixedAttachment = function(attachment, relativeToAttachment) {
    var left, top;
    left = attachment.left, top = attachment.top;
    if (left === 'auto') {
      left = MIRROR_LR[relativeToAttachment.left];
    }
    if (top === 'auto') {
      top = MIRROR_TB[relativeToAttachment.top];
    }
    return {
      left: left,
      top: top
    };
  };

  attachmentToOffset = function(attachment) {
    var _ref1, _ref2;
    return {
      left: (_ref1 = OFFSET_MAP[attachment.left]) != null ? _ref1 : attachment.left,
      top: (_ref2 = OFFSET_MAP[attachment.top]) != null ? _ref2 : attachment.top
    };
  };

  addOffset = function() {
    var left, offsets, out, top, _i, _len, _ref1;
    offsets = 1 <= arguments.length ? __slice.call(arguments, 0) : [];
    out = {
      top: 0,
      left: 0
    };
    for (_i = 0, _len = offsets.length; _i < _len; _i++) {
      _ref1 = offsets[_i], top = _ref1.top, left = _ref1.left;
      if (typeof top === 'string') {
        top = parseFloat(top, 10);
      }
      if (typeof left === 'string') {
        left = parseFloat(left, 10);
      }
      out.top += top;
      out.left += left;
    }
    return out;
  };

  offsetToPx = function(offset, size) {
    if (typeof offset.left === 'string' && offset.left.indexOf('%') !== -1) {
      offset.left = parseFloat(offset.left, 10) / 100 * size.width;
    }
    if (typeof offset.top === 'string' && offset.top.indexOf('%') !== -1) {
      offset.top = parseFloat(offset.top, 10) / 100 * size.height;
    }
    return offset;
  };

  parseAttachment = parseOffset = function(value) {
    var left, top, _ref1;
    _ref1 = value.split(' '), top = _ref1[0], left = _ref1[1];
    return {
      top: top,
      left: left
    };
  };

  _Tether = (function() {
    _Tether.modules = [];

    function _Tether(options) {
      this.position = __bind(this.position, this);
      var module, _i, _len, _ref1, _ref2;
      tethers.push(this);
      this.history = [];
      this.setOptions(options, false);
      _ref1 = Tether.modules;
      for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
        module = _ref1[_i];
        if ((_ref2 = module.initialize) != null) {
          _ref2.call(this);
        }
      }
      this.position();
    }

    _Tether.prototype.getClass = function(key) {
      var _ref1, _ref2;
      if ((_ref1 = this.options.classes) != null ? _ref1[key] : void 0) {
        return this.options.classes[key];
      } else if (((_ref2 = this.options.classes) != null ? _ref2[key] : void 0) !== false) {
        if (this.options.classPrefix) {
          return "" + this.options.classPrefix + "-" + key;
        } else {
          return key;
        }
      } else {
        return '';
      }
    };

    _Tether.prototype.setOptions = function(options, position) {
      var defaults, key, _i, _len, _ref1, _ref2;
      this.options = options;
      if (position == null) {
        position = true;
      }
      defaults = {
        offset: '0 0',
        targetOffset: '0 0',
        targetAttachment: 'auto auto',
        classPrefix: 'tether'
      };
      this.options = extend(defaults, this.options);
      _ref1 = this.options, this.element = _ref1.element, this.target = _ref1.target, this.targetModifier = _ref1.targetModifier;
      if (this.target === 'viewport') {
        this.target = document.body;
        this.targetModifier = 'visible';
      } else if (this.target === 'scroll-handle') {
        this.target = document.body;
        this.targetModifier = 'scroll-handle';
      }
      _ref2 = ['element', 'target'];
      for (_i = 0, _len = _ref2.length; _i < _len; _i++) {
        key = _ref2[_i];
        if (this[key] == null) {
          throw new Error("Tether Error: Both element and target must be defined");
        }
        if (this[key].jquery != null) {
          this[key] = this[key][0];
        } else if (typeof this[key] === 'string') {
          this[key] = document.querySelector(this[key]);
        }
      }
      addClass(this.element, this.getClass('element'));
      addClass(this.target, this.getClass('target'));
      if (!this.options.attachment) {
        throw new Error("Tether Error: You must provide an attachment");
      }
      this.targetAttachment = parseAttachment(this.options.targetAttachment);
      this.attachment = parseAttachment(this.options.attachment);
      this.offset = parseOffset(this.options.offset);
      this.targetOffset = parseOffset(this.options.targetOffset);
      if (this.scrollParent != null) {
        this.disable();
      }
      if (this.targetModifier === 'scroll-handle') {
        this.scrollParent = this.target;
      } else {
        this.scrollParent = getScrollParent(this.target);
      }
      if (this.options.enabled !== false) {
        return this.enable(position);
      }
    };

    _Tether.prototype.getTargetBounds = function() {
      var bounds, fitAdj, hasBottomScroll, height, out, scrollBottom, scrollPercentage, style, target;
      if (this.targetModifier != null) {
        switch (this.targetModifier) {
          case 'visible':
            if (this.target === document.body) {
              return {
                top: pageYOffset,
                left: pageXOffset,
                height: innerHeight,
                width: innerWidth
              };
            } else {
              bounds = getBounds(this.target);
              out = {
                height: bounds.height,
                width: bounds.width,
                top: bounds.top,
                left: bounds.left
              };
              out.height = Math.min(out.height, bounds.height - (pageYOffset - bounds.top));
              out.height = Math.min(out.height, bounds.height - ((bounds.top + bounds.height) - (pageYOffset + innerHeight)));
              out.height = Math.min(innerHeight, out.height);
              out.height -= 2;
              out.width = Math.min(out.width, bounds.width - (pageXOffset - bounds.left));
              out.width = Math.min(out.width, bounds.width - ((bounds.left + bounds.width) - (pageXOffset + innerWidth)));
              out.width = Math.min(innerWidth, out.width);
              out.width -= 2;
              if (out.top < pageYOffset) {
                out.top = pageYOffset;
              }
              if (out.left < pageXOffset) {
                out.left = pageXOffset;
              }
              return out;
            }
            break;
          case 'scroll-handle':
            target = this.target;
            if (target === document.body) {
              target = document.documentElement;
              bounds = {
                left: pageXOffset,
                top: pageYOffset,
                height: innerHeight,
                width: innerWidth
              };
            } else {
              bounds = getBounds(target);
            }
            style = getComputedStyle(target);
            hasBottomScroll = target.scrollWidth > target.clientWidth || 'scroll' === [style.overflow, style.overflowX] || this.target !== document.body;
            scrollBottom = 0;
            if (hasBottomScroll) {
              scrollBottom = 15;
            }
            height = bounds.height - parseFloat(style.borderTopWidth) - parseFloat(style.borderBottomWidth) - scrollBottom;
            out = {
              width: 15,
              height: height * 0.975 * (height / target.scrollHeight),
              left: bounds.left + bounds.width - parseFloat(style.borderLeftWidth) - 15
            };
            fitAdj = 0;
            if (height < 408 && this.target === document.body) {
              fitAdj = -0.00011 * Math.pow(height, 2) - 0.00727 * height + 22.58;
            }
            if (this.target !== document.body) {
              out.height = Math.max(out.height, 24);
            }
            scrollPercentage = this.target.scrollTop / (target.scrollHeight - height);
            out.top = scrollPercentage * (height - out.height - fitAdj) + bounds.top + parseFloat(style.borderTopWidth);
            if (this.target === document.body) {
              out.height = Math.max(out.height, 24);
            }
            return out;
        }
      } else {
        return getBounds(this.target);
      }
    };

    _Tether.prototype.clearCache = function() {
      return this._cache = {};
    };

    _Tether.prototype.cache = function(k, getter) {
      if (this._cache == null) {
        this._cache = {};
      }
      if (this._cache[k] == null) {
        this._cache[k] = getter.call(this);
      }
      return this._cache[k];
    };

    _Tether.prototype.enable = function(position) {
      if (position == null) {
        position = true;
      }
      addClass(this.target, this.getClass('enabled'));
      addClass(this.element, this.getClass('enabled'));
      this.enabled = true;
      if (this.scrollParent !== document) {
        this.scrollParent.addEventListener('scroll', this.position);
      }
      if (position) {
        return this.position();
      }
    };

    _Tether.prototype.disable = function() {
      removeClass(this.target, this.getClass('enabled'));
      removeClass(this.element, this.getClass('enabled'));
      this.enabled = false;
      if (this.scrollParent != null) {
        return this.scrollParent.removeEventListener('scroll', this.position);
      }
    };

    _Tether.prototype.destroy = function() {
      var i, tether, _i, _len, _results;
      this.disable();
      _results = [];
      for (i = _i = 0, _len = tethers.length; _i < _len; i = ++_i) {
        tether = tethers[i];
        if (tether === this) {
          tethers.splice(i, 1);
          break;
        } else {
          _results.push(void 0);
        }
      }
      return _results;
    };

    _Tether.prototype.updateAttachClasses = function(elementAttach, targetAttach) {
      var add, all, side, sides, _i, _j, _len, _len1, _ref1,
        _this = this;
      if (elementAttach == null) {
        elementAttach = this.attachment;
      }
      if (targetAttach == null) {
        targetAttach = this.targetAttachment;
      }
      sides = ['left', 'top', 'bottom', 'right', 'middle', 'center'];
      if ((_ref1 = this._addAttachClasses) != null ? _ref1.length : void 0) {
        this._addAttachClasses.splice(0, this._addAttachClasses.length);
      }
      add = this._addAttachClasses != null ? this._addAttachClasses : this._addAttachClasses = [];
      if (elementAttach.top) {
        add.push("" + (this.getClass('element-attached')) + "-" + elementAttach.top);
      }
      if (elementAttach.left) {
        add.push("" + (this.getClass('element-attached')) + "-" + elementAttach.left);
      }
      if (targetAttach.top) {
        add.push("" + (this.getClass('target-attached')) + "-" + targetAttach.top);
      }
      if (targetAttach.left) {
        add.push("" + (this.getClass('target-attached')) + "-" + targetAttach.left);
      }
      all = [];
      for (_i = 0, _len = sides.length; _i < _len; _i++) {
        side = sides[_i];
        all.push("" + (this.getClass('element-attached')) + "-" + side);
      }
      for (_j = 0, _len1 = sides.length; _j < _len1; _j++) {
        side = sides[_j];
        all.push("" + (this.getClass('target-attached')) + "-" + side);
      }
      return defer(function() {
        if (_this._addAttachClasses == null) {
          return;
        }
        updateClasses(_this.element, _this._addAttachClasses, all);
        updateClasses(_this.target, _this._addAttachClasses, all);
        return _this._addAttachClasses = void 0;
      });
    };

    _Tether.prototype.position = function(flushChanges) {
      var elementPos, elementStyle, height, left, manualOffset, manualTargetOffset, module, next, offset, offsetBorder, offsetParent, offsetParentSize, offsetParentStyle, offsetPosition, ret, scrollLeft, scrollTop, scrollbarSize, side, targetAttachment, targetOffset, targetPos, targetSize, top, width, _i, _j, _len, _len1, _ref1, _ref2, _ref3, _ref4, _ref5, _ref6,
        _this = this;
      if (flushChanges == null) {
        flushChanges = true;
      }
      if (!this.enabled) {
        return;
      }
      this.clearCache();
      targetAttachment = autoToFixedAttachment(this.targetAttachment, this.attachment);
      this.updateAttachClasses(this.attachment, targetAttachment);
      elementPos = this.cache('element-bounds', function() {
        return getBounds(_this.element);
      });
      width = elementPos.width, height = elementPos.height;
      if (width === 0 && height === 0 && (this.lastSize != null)) {
        _ref1 = this.lastSize, width = _ref1.width, height = _ref1.height;
      } else {
        this.lastSize = {
          width: width,
          height: height
        };
      }
      targetSize = targetPos = this.cache('target-bounds', function() {
        return _this.getTargetBounds();
      });
      offset = offsetToPx(attachmentToOffset(this.attachment), {
        width: width,
        height: height
      });
      targetOffset = offsetToPx(attachmentToOffset(targetAttachment), targetSize);
      manualOffset = offsetToPx(this.offset, {
        width: width,
        height: height
      });
      manualTargetOffset = offsetToPx(this.targetOffset, targetSize);
      offset = addOffset(offset, manualOffset);
      targetOffset = addOffset(targetOffset, manualTargetOffset);
      left = targetPos.left + targetOffset.left - offset.left;
      top = targetPos.top + targetOffset.top - offset.top;
      _ref2 = Tether.modules;
      for (_i = 0, _len = _ref2.length; _i < _len; _i++) {
        module = _ref2[_i];
        ret = module.position.call(this, {
          left: left,
          top: top,
          targetAttachment: targetAttachment,
          targetPos: targetPos,
          attachment: this.attachment,
          elementPos: elementPos,
          offset: offset,
          targetOffset: targetOffset,
          manualOffset: manualOffset,
          manualTargetOffset: manualTargetOffset,
          scrollbarSize: scrollbarSize
        });
        if ((ret == null) || typeof ret !== 'object') {
          continue;
        } else if (ret === false) {
          return false;
        } else {
          top = ret.top, left = ret.left;
        }
      }
      next = {
        page: {
          top: top,
          left: left
        },
        viewport: {
          top: top - pageYOffset,
          bottom: pageYOffset - top - height + innerHeight,
          left: left - pageXOffset,
          right: pageXOffset - left - width + innerWidth
        }
      };
      if (document.body.scrollWidth > window.innerWidth) {
        scrollbarSize = this.cache('scrollbar-size', getScrollBarSize);
        next.viewport.bottom -= scrollbarSize.height;
      }
      if (document.body.scrollHeight > window.innerHeight) {
        scrollbarSize = this.cache('scrollbar-size', getScrollBarSize);
        next.viewport.right -= scrollbarSize.width;
      }
      if (((_ref3 = document.body.style.position) !== '' && _ref3 !== 'static') || ((_ref4 = document.body.parentElement.style.position) !== '' && _ref4 !== 'static')) {
        next.page.bottom = document.body.scrollHeight - top - height;
        next.page.right = document.body.scrollWidth - left - width;
      }
      if (((_ref5 = this.options.optimizations) != null ? _ref5.moveElement : void 0) !== false && (this.targetModifier == null)) {
        offsetParent = this.cache('target-offsetparent', function() {
          return getOffsetParent(_this.target);
        });
        offsetPosition = this.cache('target-offsetparent-bounds', function() {
          return getBounds(offsetParent);
        });
        offsetParentStyle = getComputedStyle(offsetParent);
        elementStyle = getComputedStyle(this.element);
        offsetParentSize = offsetPosition;
        offsetBorder = {};
        _ref6 = ['Top', 'Left', 'Bottom', 'Right'];
        for (_j = 0, _len1 = _ref6.length; _j < _len1; _j++) {
          side = _ref6[_j];
          offsetBorder[side.toLowerCase()] = parseFloat(offsetParentStyle["border" + side + "Width"]);
        }
        offsetPosition.right = document.body.scrollWidth - offsetPosition.left - offsetParentSize.width + offsetBorder.right;
        offsetPosition.bottom = document.body.scrollHeight - offsetPosition.top - offsetParentSize.height + offsetBorder.bottom;
        if (next.page.top >= (offsetPosition.top + offsetBorder.top) && next.page.bottom >= offsetPosition.bottom) {
          if (next.page.left >= (offsetPosition.left + offsetBorder.left) && next.page.right >= offsetPosition.right) {
            scrollTop = offsetParent.scrollTop;
            scrollLeft = offsetParent.scrollLeft;
            next.offset = {
              top: next.page.top - offsetPosition.top + scrollTop - offsetBorder.top,
              left: next.page.left - offsetPosition.left + scrollLeft - offsetBorder.left
            };
          }
        }
      }
      this.move(next);
      this.history.unshift(next);
      if (this.history.length > 3) {
        this.history.pop();
      }
      if (flushChanges) {
        flush();
      }
      return true;
    };

    _Tether.prototype.move = function(position) {
      var css, elVal, found, key, moved, offsetParent, point, same, transcribe, type, val, write, writeCSS, _i, _len, _ref1, _ref2,
        _this = this;
      if (this.element.parentNode == null) {
        return;
      }
      same = {};
      for (type in position) {
        same[type] = {};
        for (key in position[type]) {
          found = false;
          _ref1 = this.history;
          for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
            point = _ref1[_i];
            if (!within((_ref2 = point[type]) != null ? _ref2[key] : void 0, position[type][key])) {
              found = true;
              break;
            }
          }
          if (!found) {
            same[type][key] = true;
          }
        }
      }
      css = {
        top: '',
        left: '',
        right: '',
        bottom: ''
      };
      transcribe = function(same, pos) {
        var xPos, yPos, _ref3;
        if (((_ref3 = _this.options.optimizations) != null ? _ref3.gpu : void 0) !== false) {
          if (same.top) {
            css.top = 0;
            yPos = pos.top;
          } else {
            css.bottom = 0;
            yPos = -pos.bottom;
          }
          if (same.left) {
            css.left = 0;
            xPos = pos.left;
          } else {
            css.right = 0;
            xPos = -pos.right;
          }
          css[transformKey] = "translateX(" + (Math.round(xPos)) + "px) translateY(" + (Math.round(yPos)) + "px)";
          if (transformKey !== 'msTransform') {
            return css[transformKey] += " translateZ(0)";
          }
        } else {
          if (same.top) {
            css.top = "" + pos.top + "px";
          } else {
            css.bottom = "" + pos.bottom + "px";
          }
          if (same.left) {
            return css.left = "" + pos.left + "px";
          } else {
            return css.right = "" + pos.right + "px";
          }
        }
      };
      moved = false;
      if ((same.page.top || same.page.bottom) && (same.page.left || same.page.right)) {
        css.position = 'absolute';
        transcribe(same.page, position.page);
      } else if ((same.viewport.top || same.viewport.bottom) && (same.viewport.left || same.viewport.right)) {
        css.position = 'fixed';
        transcribe(same.viewport, position.viewport);
      } else if ((same.offset != null) && same.offset.top && same.offset.left) {
        css.position = 'absolute';
        offsetParent = this.cache('target-offsetparent', function() {
          return getOffsetParent(_this.target);
        });
        if (getOffsetParent(this.element) !== offsetParent) {
          defer(function() {
            _this.element.parentNode.removeChild(_this.element);
            return offsetParent.appendChild(_this.element);
          });
        }
        transcribe(same.offset, position.offset);
        moved = true;
      } else {
        css.position = 'absolute';
        transcribe({
          top: true,
          left: true
        }, position.page);
      }
      if (!moved && this.element.parentNode.tagName !== 'BODY') {
        this.element.parentNode.removeChild(this.element);
        document.body.appendChild(this.element);
      }
      writeCSS = {};
      write = false;
      for (key in css) {
        val = css[key];
        elVal = this.element.style[key];
        if (elVal !== '' && val !== '' && (key === 'top' || key === 'left' || key === 'bottom' || key === 'right')) {
          elVal = parseFloat(elVal);
          val = parseFloat(val);
        }
        if (elVal !== val) {
          write = true;
          writeCSS[key] = css[key];
        }
      }
      if (write) {
        return defer(function() {
          return extend(_this.element.style, writeCSS);
        });
      }
    };

    return _Tether;

  })();

  Tether.position = position;

  this.Tether = extend(_Tether, Tether);

}).call(this);

(function() {
  var BOUNDS_FORMAT, MIRROR_ATTACH, defer, extend, getBoundingRect, getBounds, getOuterSize, getSize, updateClasses, _ref,
    __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };

  _ref = this.Tether.Utils, getOuterSize = _ref.getOuterSize, getBounds = _ref.getBounds, getSize = _ref.getSize, extend = _ref.extend, updateClasses = _ref.updateClasses, defer = _ref.defer;

  MIRROR_ATTACH = {
    left: 'right',
    right: 'left',
    top: 'bottom',
    bottom: 'top',
    middle: 'middle'
  };

  BOUNDS_FORMAT = ['left', 'top', 'right', 'bottom'];

  getBoundingRect = function(tether, to) {
    var i, pos, side, size, style, _i, _len;
    if (to === 'scrollParent') {
      to = tether.scrollParent;
    } else if (to === 'window') {
      to = [pageXOffset, pageYOffset, innerWidth + pageXOffset, innerHeight + pageYOffset];
    }
    if (to === document) {
      to = to.documentElement;
    }
    if (to.nodeType != null) {
      pos = size = getBounds(to);
      style = getComputedStyle(to);
      to = [pos.left, pos.top, size.width + pos.left, size.height + pos.top];
      for (i = _i = 0, _len = BOUNDS_FORMAT.length; _i < _len; i = ++_i) {
        side = BOUNDS_FORMAT[i];
        side = side[0].toUpperCase() + side.substr(1);
        if (side === 'Top' || side === 'Left') {
          to[i] += parseFloat(style["border" + side + "Width"]);
        } else {
          to[i] -= parseFloat(style["border" + side + "Width"]);
        }
      }
    }
    return to;
  };

  this.Tether.modules.push({
    position: function(_arg) {
      var addClasses, allClasses, attachment, bounds, changeAttachX, changeAttachY, cls, constraint, eAttachment, height, left, oob, oobClass, p, pin, pinned, pinnedClass, removeClass, side, tAttachment, targetAttachment, targetHeight, targetSize, targetWidth, to, top, width, _i, _j, _k, _l, _len, _len1, _len2, _len3, _len4, _len5, _m, _n, _ref1, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8,
        _this = this;
      top = _arg.top, left = _arg.left, targetAttachment = _arg.targetAttachment;
      if (!this.options.constraints) {
        return true;
      }
      removeClass = function(prefix) {
        var side, _i, _len, _results;
        _this.removeClass(prefix);
        _results = [];
        for (_i = 0, _len = BOUNDS_FORMAT.length; _i < _len; _i++) {
          side = BOUNDS_FORMAT[_i];
          _results.push(_this.removeClass("" + prefix + "-" + side));
        }
        return _results;
      };
      _ref1 = this.cache('element-bounds', function() {
        return getBounds(_this.element);
      }), height = _ref1.height, width = _ref1.width;
      if (width === 0 && height === 0 && (this.lastSize != null)) {
        _ref2 = this.lastSize, width = _ref2.width, height = _ref2.height;
      }
      targetSize = this.cache('target-bounds', function() {
        return _this.getTargetBounds();
      });
      targetHeight = targetSize.height;
      targetWidth = targetSize.width;
      tAttachment = {};
      eAttachment = {};
      allClasses = [this.getClass('pinned'), this.getClass('out-of-bounds')];
      _ref3 = this.options.constraints;
      for (_i = 0, _len = _ref3.length; _i < _len; _i++) {
        constraint = _ref3[_i];
        if (constraint.outOfBoundsClass) {
          allClasses.push(constraint.outOfBoundsClass);
        }
        if (constraint.pinnedClass) {
          allClasses.push(constraint.pinnedClass);
        }
      }
      for (_j = 0, _len1 = allClasses.length; _j < _len1; _j++) {
        cls = allClasses[_j];
        _ref4 = ['left', 'top', 'right', 'bottom'];
        for (_k = 0, _len2 = _ref4.length; _k < _len2; _k++) {
          side = _ref4[_k];
          allClasses.push("" + cls + "-" + side);
        }
      }
      addClasses = [];
      tAttachment = extend({}, targetAttachment);
      eAttachment = extend({}, this.attachment);
      _ref5 = this.options.constraints;
      for (_l = 0, _len3 = _ref5.length; _l < _len3; _l++) {
        constraint = _ref5[_l];
        to = constraint.to, attachment = constraint.attachment, pin = constraint.pin;
        if (attachment == null) {
          attachment = '';
        }
        if (__indexOf.call(attachment, ' ') >= 0) {
          _ref6 = attachment.split(' '), changeAttachY = _ref6[0], changeAttachX = _ref6[1];
        } else {
          changeAttachX = changeAttachY = attachment;
        }
        bounds = getBoundingRect(this, to);
        if (changeAttachY === 'target' || changeAttachY === 'both') {
          if (top < bounds[1] && tAttachment.top === 'top') {
            top += targetHeight;
            tAttachment.top = 'bottom';
          }
          if (top + height > bounds[3] && tAttachment.top === 'bottom') {
            top -= targetHeight;
            tAttachment.top = 'top';
          }
        }
        if (changeAttachY === 'together') {
          if (top < bounds[1] && tAttachment.top === 'top') {
            if (eAttachment.top === 'bottom') {
              top += targetHeight;
              tAttachment.top = 'bottom';
              top += height;
              eAttachment.top = 'top';
            } else if (eAttachment.top === 'top') {
              top += targetHeight;
              tAttachment.top = 'bottom';
              top -= height;
              eAttachment.top = 'bottom';
            }
          }
          if (top + height > bounds[3] && tAttachment.top === 'bottom') {
            if (eAttachment.top === 'top') {
              top -= targetHeight;
              tAttachment.top = 'top';
              top -= height;
              eAttachment.top = 'bottom';
            } else if (eAttachment.top === 'bottom') {
              top -= targetHeight;
              tAttachment.top = 'top';
              top += height;
              eAttachment.top = 'top';
            }
          }
          if (tAttachment.top === 'middle') {
            if (top + height > bounds[3] && eAttachment.top === 'top') {
              top -= height;
              eAttachment.top = 'bottom';
            } else if (top < bounds[1] && eAttachment.top === 'bottom') {
              top += height;
              eAttachment.top = 'top';
            }
          }
        }
        if (changeAttachX === 'target' || changeAttachX === 'both') {
          if (left < bounds[0] && tAttachment.left === 'left') {
            left += targetWidth;
            tAttachment.left = 'right';
          }
          if (left + width > bounds[2] && tAttachment.left === 'right') {
            left -= targetWidth;
            tAttachment.left = 'left';
          }
        }
        if (changeAttachX === 'together') {
          if (left < bounds[0] && tAttachment.left === 'left') {
            if (eAttachment.left === 'right') {
              left += targetWidth;
              tAttachment.left = 'right';
              left += width;
              eAttachment.left = 'left';
            } else if (eAttachment.left === 'left') {
              left += targetWidth;
              tAttachment.left = 'right';
              left -= width;
              eAttachment.left = 'right';
            }
          } else if (left + width > bounds[2] && tAttachment.left === 'right') {
            if (eAttachment.left === 'left') {
              left -= targetWidth;
              tAttachment.left = 'left';
              left -= width;
              eAttachment.left = 'right';
            } else if (eAttachment.left === 'right') {
              left -= targetWidth;
              tAttachment.left = 'left';
              left += width;
              eAttachment.left = 'left';
            }
          } else if (tAttachment.left === 'center') {
            if (left + width > bounds[2] && eAttachment.left === 'left') {
              left -= width;
              eAttachment.left = 'right';
            } else if (left < bounds[0] && eAttachment.left === 'right') {
              left += width;
              eAttachment.left = 'left';
            }
          }
        }
        if (changeAttachY === 'element' || changeAttachY === 'both') {
          if (top < bounds[1] && eAttachment.top === 'bottom') {
            top += height;
            eAttachment.top = 'top';
          }
          if (top + height > bounds[3] && eAttachment.top === 'top') {
            top -= height;
            eAttachment.top = 'bottom';
          }
        }
        if (changeAttachX === 'element' || changeAttachX === 'both') {
          if (left < bounds[0] && eAttachment.left === 'right') {
            left += width;
            eAttachment.left = 'left';
          }
          if (left + width > bounds[2] && eAttachment.left === 'left') {
            left -= width;
            eAttachment.left = 'right';
          }
        }
        if (typeof pin === 'string') {
          pin = (function() {
            var _len4, _m, _ref7, _results;
            _ref7 = pin.split(',');
            _results = [];
            for (_m = 0, _len4 = _ref7.length; _m < _len4; _m++) {
              p = _ref7[_m];
              _results.push(p.trim());
            }
            return _results;
          })();
        } else if (pin === true) {
          pin = ['top', 'left', 'right', 'bottom'];
        }
        pin || (pin = []);
        pinned = [];
        oob = [];
        if (top < bounds[1]) {
          if (__indexOf.call(pin, 'top') >= 0) {
            top = bounds[1];
            pinned.push('top');
          } else {
            oob.push('top');
          }
        }
        if (top + height > bounds[3]) {
          if (__indexOf.call(pin, 'bottom') >= 0) {
            top = bounds[3] - height;
            pinned.push('bottom');
          } else {
            oob.push('bottom');
          }
        }
        if (left < bounds[0]) {
          if (__indexOf.call(pin, 'left') >= 0) {
            left = bounds[0];
            pinned.push('left');
          } else {
            oob.push('left');
          }
        }
        if (left + width > bounds[2]) {
          if (__indexOf.call(pin, 'right') >= 0) {
            left = bounds[2] - width;
            pinned.push('right');
          } else {
            oob.push('right');
          }
        }
        if (pinned.length) {
          pinnedClass = (_ref7 = this.options.pinnedClass) != null ? _ref7 : this.getClass('pinned');
          addClasses.push(pinnedClass);
          for (_m = 0, _len4 = pinned.length; _m < _len4; _m++) {
            side = pinned[_m];
            addClasses.push("" + pinnedClass + "-" + side);
          }
        }
        if (oob.length) {
          oobClass = (_ref8 = this.options.outOfBoundsClass) != null ? _ref8 : this.getClass('out-of-bounds');
          addClasses.push(oobClass);
          for (_n = 0, _len5 = oob.length; _n < _len5; _n++) {
            side = oob[_n];
            addClasses.push("" + oobClass + "-" + side);
          }
        }
        if (__indexOf.call(pinned, 'left') >= 0 || __indexOf.call(pinned, 'right') >= 0) {
          eAttachment.left = tAttachment.left = false;
        }
        if (__indexOf.call(pinned, 'top') >= 0 || __indexOf.call(pinned, 'bottom') >= 0) {
          eAttachment.top = tAttachment.top = false;
        }
        if (tAttachment.top !== targetAttachment.top || tAttachment.left !== targetAttachment.left || eAttachment.top !== this.attachment.top || eAttachment.left !== this.attachment.left) {
          this.updateAttachClasses(eAttachment, tAttachment);
        }
      }
      defer(function() {
        updateClasses(_this.target, addClasses, allClasses);
        return updateClasses(_this.element, addClasses, allClasses);
      });
      return {
        top: top,
        left: left
      };
    }
  });

}).call(this);

(function() {
  var defer, getBounds, updateClasses, _ref;

  _ref = this.Tether.Utils, getBounds = _ref.getBounds, updateClasses = _ref.updateClasses, defer = _ref.defer;

  this.Tether.modules.push({
    position: function(_arg) {
      var abutted, addClasses, allClasses, bottom, height, left, right, side, sides, targetPos, top, width, _i, _j, _k, _l, _len, _len1, _len2, _len3, _ref1, _ref2, _ref3, _ref4, _ref5,
        _this = this;
      top = _arg.top, left = _arg.left;
      _ref1 = this.cache('element-bounds', function() {
        return getBounds(_this.element);
      }), height = _ref1.height, width = _ref1.width;
      targetPos = this.getTargetBounds();
      bottom = top + height;
      right = left + width;
      abutted = [];
      if (top <= targetPos.bottom && bottom >= targetPos.top) {
        _ref2 = ['left', 'right'];
        for (_i = 0, _len = _ref2.length; _i < _len; _i++) {
          side = _ref2[_i];
          if ((_ref3 = targetPos[side]) === left || _ref3 === right) {
            abutted.push(side);
          }
        }
      }
      if (left <= targetPos.right && right >= targetPos.left) {
        _ref4 = ['top', 'bottom'];
        for (_j = 0, _len1 = _ref4.length; _j < _len1; _j++) {
          side = _ref4[_j];
          if ((_ref5 = targetPos[side]) === top || _ref5 === bottom) {
            abutted.push(side);
          }
        }
      }
      allClasses = [];
      addClasses = [];
      sides = ['left', 'top', 'right', 'bottom'];
      allClasses.push(this.getClass('abutted'));
      for (_k = 0, _len2 = sides.length; _k < _len2; _k++) {
        side = sides[_k];
        allClasses.push("" + (this.getClass('abutted')) + "-" + side);
      }
      if (abutted.length) {
        addClasses.push(this.getClass('abutted'));
      }
      for (_l = 0, _len3 = abutted.length; _l < _len3; _l++) {
        side = abutted[_l];
        addClasses.push("" + (this.getClass('abutted')) + "-" + side);
      }
      defer(function() {
        updateClasses(_this.target, addClasses, allClasses);
        return updateClasses(_this.element, addClasses, allClasses);
      });
      return true;
    }
  });

}).call(this);

(function() {
  this.Tether.modules.push({
    position: function(_arg) {
      var left, result, shift, shiftLeft, shiftTop, top, _ref;
      top = _arg.top, left = _arg.left;
      if (!this.options.shift) {
        return;
      }
      result = function(val) {
        if (typeof val === 'function') {
          return val.call(this, {
            top: top,
            left: left
          });
        } else {
          return val;
        }
      };
      shift = result(this.options.shift);
      if (typeof shift === 'string') {
        shift = shift.split(' ');
        shift[1] || (shift[1] = shift[0]);
        shiftTop = shift[0], shiftLeft = shift[1];
        shiftTop = parseFloat(shiftTop, 10);
        shiftLeft = parseFloat(shiftLeft, 10);
      } else {
        _ref = [shift.top, shift.left], shiftTop = _ref[0], shiftLeft = _ref[1];
      }
      top += shiftTop;
      left += shiftLeft;
      return {
        top: top,
        left: left
      };
    }
  });

}).call(this);

return this.Tether;

}));
admin/assets/tether-shepherd/dist/js/shepherd.min.js000064400000024621151213255040016535 0ustar00!function(t,e){"function"==typeof define&&define.amd?define(["tether"],e):"object"==typeof exports?module.exports=e(require("tether")):t.Shepherd=e(t.Tether)}(this,function(t){"use strict";function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function n(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function i(t){return"undefined"==typeof t}function r(t){return t&&t.constructor===Array}function o(t){return t&&t.constructor===Object}function s(t){return"object"==typeof t}function h(t){var e=document.createElement("div");return e.innerHTML=t,e.children[0]}function c(t,e){var n=void 0;return i(t.matches)?i(t.matchesSelector)?i(t.msMatchesSelector)?i(t.webkitMatchesSelector)?i(t.mozMatchesSelector)?i(t.oMatchesSelector)||(n=t.oMatchesSelector):n=t.mozMatchesSelector:n=t.webkitMatchesSelector:n=t.msMatchesSelector:n=t.matchesSelector:n=t.matches,n.call(t,e)}function l(t){if(s(t))return t.hasOwnProperty("element")&&t.hasOwnProperty("on")?t:null;var e=S.exec(t);if(!e)return null;var n=e[2];return"["===n[0]&&(n=n.substring(1,n.length-1)),{element:e[1],on:n}}function a(t,e){if(null===t||i(t))return t;if(s(t))return t;for(var n=t.split(" "),r={},o=e.length-1,h=n.length-1;h>=0;h--){if(0===o){r[e[o]]=n.slice(0,h+1).join(" ");break}r[e[o]]=n[h],o--}return r}var u=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),d=function(t,e,n){for(var i=!0;i;){var r=t,o=e,s=n;i=!1,null===r&&(r=Function.prototype);var h=Object.getOwnPropertyDescriptor(r,o);if(void 0!==h){if("value"in h)return h.value;var c=h.get;if(void 0===c)return;return c.call(s)}var l=Object.getPrototypeOf(r);if(null===l)return;t=l,e=o,n=s,i=!0,h=l=void 0}},p=t.Utils,f=p.Evented,v=p.addClass,m=p.extend,y=p.hasClass,g=p.removeClass,b=p.uniqueId,w=new f,k={"top right":"bottom left","top left":"bottom right","top center":"bottom center","middle right":"middle left","middle left":"middle right","middle center":"middle center","bottom left":"top right","bottom right":"top left","bottom center":"top center",top:"bottom center",left:"middle right",right:"middle left",bottom:"top center",center:"middle center",middle:"middle center"},S=/^(.+) (top|left|right|bottom|center|\[[a-z ]+\])$/,O=function(s){function p(t,n){return e(this,p),d(Object.getPrototypeOf(p.prototype),"constructor",this).call(this,t,n),this.tour=t,this.bindMethods(),this.setOptions(n),this}return n(p,s),u(p,[{key:"bindMethods",value:function(){var t=this,e=["_show","show","hide","isOpen","cancel","complete","scrollTo","destroy","render"];e.map(function(e){t[e]=t[e].bind(t)})}},{key:"setOptions",value:function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=t,this.destroy(),this.id=this.options.id||this.id||"step-"+b();var e=this.options.when;if(e)for(var n in e)if({}.hasOwnProperty.call(e,n)){var s=e[n];this.on(n,s,this)}var h=JSON.stringify(this.options.buttons),c=i(h)||"true"===h,l="{}"===h||"[]"===h||"null"===h||"false"===h,a=!c&&r(this.options.buttons),u=!c&&o(this.options.buttons);c?this.options.buttons=[{text:"Next",action:this.tour.next,classes:"btn"}]:!l&&u?this.options.buttons=[this.options.buttons]:!l&&a||(this.options.buttons=!1)}},{key:"getTour",value:function(){return this.tour}},{key:"bindAdvance",value:function(){var t=this,e=a(this.options.advanceOn,["selector","event"]),n=e.event,r=e.selector,o=function(e){t.isOpen()&&(i(r)?t.el&&e.target===t.el&&t.tour.next():c(e.target,r)&&t.tour.next())};document.body.addEventListener(n,o),this.on("destroy",function(){return document.body.removeEventListener(n,o)})}},{key:"getAttachTo",value:function(){var t=l(this.options.attachTo)||{},e=m({},t);return"string"==typeof t.element&&(e.element=document.querySelector(t.element),e.element||console.error("The element for this Shepherd step was not found "+t.element)),e}},{key:"setupTether",value:function(){if(i(t))throw new Error("Using the attachment feature of Shepherd requires the Tether library");var e=this.getAttachTo(),n=k[e.on]||k.right;i(e.element)&&(e.element="viewport",n="middle center");var r={classPrefix:"shepherd",element:this.el,constraints:[{to:"window",pin:!0,attachment:"together"}],target:e.element,offset:e.offset||"0 0",attachment:n};this.tether&&this.tether.destroy(),this.tether=new t(m(r,this.options.tetherOptions))}},{key:"show",value:function(){var t=this;if(!i(this.options.beforeShowPromise)){var e=this.options.beforeShowPromise();if(!i(e))return e.then(function(){return t._show()})}this._show()}},{key:"_show",value:function(){var t=this;this.trigger("before-show"),this.el||this.render(),v(this.el,"shepherd-open"),document.body.setAttribute("data-shepherd-step",this.id),this.setupTether(),this.options.scrollTo&&setTimeout(function(){t.scrollTo()}),this.trigger("show")}},{key:"hide",value:function(){this.trigger("before-hide"),g(this.el,"shepherd-open"),document.body.removeAttribute("data-shepherd-step"),this.tether&&this.tether.destroy(),this.tether=null,this.trigger("hide")}},{key:"isOpen",value:function(){return this.el&&y(this.el,"shepherd-open")}},{key:"cancel",value:function(){this.tour.cancel(),this.trigger("cancel")}},{key:"complete",value:function(){this.tour.complete(),this.trigger("complete")}},{key:"scrollTo",value:function(){var t=this.getAttachTo(),e=t.element;i(this.options.scrollToHandler)?i(e)||e.scrollIntoView():this.options.scrollToHandler(e)}},{key:"destroy",value:function(){!i(this.el)&&this.el.parentNode&&(this.el.parentNode.removeChild(this.el),delete this.el),this.tether&&this.tether.destroy(),this.tether=null,this.trigger("destroy")}},{key:"render",value:function(){var t=this;i(this.el)||this.destroy(),this.el=h("<div class='shepherd-step "+(this.options.classes||"")+"' data-id='"+this.id+"' "+(this.options.idAttribute?'id="'+this.options.idAttribute+'"':"")+"></div>");var e=document.createElement("div");e.className="shepherd-content",this.el.appendChild(e);var n=document.createElement("header");if(e.appendChild(n),this.options.title&&(n.innerHTML+="<h3 class='shepherd-title'>"+this.options.title+"</h3>",this.el.className+=" shepherd-has-title"),this.options.showCancelLink){var r=h("<a href class='shepherd-cancel-link'>✕</a>");n.appendChild(r),this.el.className+=" shepherd-has-cancel-link",this.bindCancelLink(r)}i(this.options.text)||!function(){var n=h("<div class='shepherd-text'></div>"),i=t.options.text;"function"==typeof i&&(i=i.call(t,n)),i instanceof HTMLElement?n.appendChild(i):("string"==typeof i&&(i=[i]),i.map(function(t){n.innerHTML+="<p>"+t+"</p>"})),e.appendChild(n)}(),this.options.buttons&&!function(){var n=document.createElement("footer"),i=h("<ul class='shepherd-buttons'></ul>");t.options.buttons.map(function(e){var n=h("<li><a class='shepherd-button "+(e.classes||"")+"'>"+e.text+"</a>");i.appendChild(n),t.bindButtonEvents(e,n.querySelector("a"))}),n.appendChild(i),e.appendChild(n)}(),document.body.appendChild(this.el),this.setupTether(),this.options.advanceOn&&this.bindAdvance()}},{key:"bindCancelLink",value:function(t){var e=this;t.addEventListener("click",function(t){t.preventDefault(),e.cancel()})}},{key:"bindButtonEvents",value:function(t,e){var n=this;t.events=t.events||{},i(t.action)||(t.events.click=t.action);for(var r in t.events)if({}.hasOwnProperty.call(t.events,r)){var o=t.events[r];"string"==typeof o&&!function(){var t=o;o=function(){return n.tour.show(t)}}(),e.addEventListener(r,o)}this.on("destroy",function(){for(var n in t.events)if({}.hasOwnProperty.call(t.events,n)){var i=t.events[n];e.removeEventListener(n,i)}})}}]),p}(f),T=function(t){function r(){var t=this,n=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];e(this,r),d(Object.getPrototypeOf(r.prototype),"constructor",this).call(this,n),this.bindMethods(),this.options=n,this.steps=this.options.steps||[];var i=["complete","cancel","hide","start","show","active","inactive"];return i.map(function(e){!function(e){t.on(e,function(n){n=n||{},n.tour=t,w.trigger(e,n)})}(e)}),this}return n(r,t),u(r,[{key:"bindMethods",value:function(){var t=this,e=["next","back","cancel","complete","hide"];e.map(function(e){t[e]=t[e].bind(t)})}},{key:"addStep",value:function(t,e){return i(e)&&(e=t),e instanceof O?e.tour=this:("string"!=typeof t&&"number"!=typeof t||(e.id=t.toString()),e=m({},this.options.defaults,e),e=new O(this,e)),this.steps.push(e),this}},{key:"removeStep",value:function(t){for(var e=this.getCurrentStep(),n=0;n<this.steps.length;++n){var i=this.steps[n];if(i.id===t){i.isOpen()&&i.hide(),i.destroy(),this.steps.splice(n,1);break}}e&&e.id===t&&(this.currentStep=void 0,this.steps.length?this.show(0):this.hide())}},{key:"getById",value:function(t){for(var e=0;e<this.steps.length;++e){var n=this.steps[e];if(n.id===t)return n}}},{key:"getCurrentStep",value:function(){return this.currentStep}},{key:"next",value:function(){var t=this.steps.indexOf(this.currentStep);t===this.steps.length-1?(this.hide(t),this.trigger("complete"),this.done()):this.show(t+1,!0)}},{key:"back",value:function(){var t=this.steps.indexOf(this.currentStep);this.show(t-1,!1)}},{key:"cancel",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("cancel"),this.done()}},{key:"complete",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("complete"),this.done()}},{key:"hide",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("hide"),this.done()}},{key:"done",value:function(){w.activeTour=null,g(document.body,"shepherd-active"),this.trigger("inactive",{tour:this})}},{key:"show",value:function(){var t=arguments.length<=0||void 0===arguments[0]?0:arguments[0],e=arguments.length<=1||void 0===arguments[1]||arguments[1];this.currentStep?this.currentStep.hide():(v(document.body,"shepherd-active"),this.trigger("active",{tour:this})),w.activeTour=this;var n=void 0;if(n="string"==typeof t?this.getById(t):this.steps[t])if(i(n.options.showOn)||n.options.showOn())this.trigger("show",{step:n,previous:this.currentStep}),this.currentStep&&this.currentStep.hide(),this.currentStep=n,n.show();else{var r=this.steps.indexOf(n),o=e?r+1:r-1;this.show(o,e)}}},{key:"start",value:function(){this.trigger("start"),this.currentStep=null,this.next()}}]),r}(f);return m(w,{Tour:T,Step:O,Evented:f}),w});admin/assets/tether-shepherd/dist/css/shepherd-theme-default.css000064400000031163151213255040021024 0ustar00.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: none; }

.shepherd-element, .shepherd-element:after, .shepherd-element:before, .shepherd-element *, .shepherd-element *:after, .shepherd-element *:before {
  box-sizing: border-box; }

.shepherd-element {
  position: absolute;
  display: none; }
  .shepherd-element.shepherd-open {
    display: block; }

.shepherd-element.shepherd-theme-default {
  max-width: 100%;
  max-height: 100%; }
  .shepherd-element.shepherd-theme-default .shepherd-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #f6f6f6;
    color: #444;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em; }
    .shepherd-element.shepherd-theme-default .shepherd-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid;
      pointer-events: none; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-left.shepherd-target-attached-center .shepherd-content {
    left: -32px; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-right.shepherd-target-attached-center .shepherd-content {
    left: 32px; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-default.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #f6f6f6; }

.shepherd-element.shepherd-theme-default {
  z-index: 9999;
  max-width: 24em;
  font-size: 1em; }
  .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-default.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {
    border-bottom-color: #e6e6e6; }
  .shepherd-element.shepherd-theme-default.shepherd-has-title .shepherd-content header {
    background: #e6e6e6;
    padding: 1em; }
    .shepherd-element.shepherd-theme-default.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
      padding: 0;
      margin-bottom: 0; }
  .shepherd-element.shepherd-theme-default.shepherd-has-cancel-link .shepherd-content header h3 {
    float: left; }
  .shepherd-element.shepherd-theme-default .shepherd-content {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.17);
    padding: 0; }
    .shepherd-element.shepherd-theme-default .shepherd-content * {
      font-size: inherit; }
    .shepherd-element.shepherd-theme-default .shepherd-content header {
      *zoom: 1;
      border-radius: 5px 5px 0 0; }
      .shepherd-element.shepherd-theme-default .shepherd-content header:after {
        content: "";
        display: table;
        clear: both; }
      .shepherd-element.shepherd-theme-default .shepherd-content header h3 {
        margin: 0;
        line-height: 1;
        font-weight: normal; }
      .shepherd-element.shepherd-theme-default .shepherd-content header a.shepherd-cancel-link {
        float: right;
        text-decoration: none;
        font-size: 1.25em;
        line-height: .8em;
        font-weight: normal;
        color: rgba(0, 0, 0, 0.5);
        opacity: 0.25;
        position: relative;
        top: .1em;
        padding: .8em;
        margin-bottom: -.8em; }
        .shepherd-element.shepherd-theme-default .shepherd-content header a.shepherd-cancel-link:hover {
          opacity: 1; }
    .shepherd-element.shepherd-theme-default .shepherd-content .shepherd-text {
      padding: 1em; }
      .shepherd-element.shepherd-theme-default .shepherd-content .shepherd-text p {
        margin: 0 0 .5em 0;
        line-height: 1.3em; }
        .shepherd-element.shepherd-theme-default .shepherd-content .shepherd-text p:last-child {
          margin-bottom: 0; }
    .shepherd-element.shepherd-theme-default .shepherd-content footer {
      padding: 0 1em 1em; }
      .shepherd-element.shepherd-theme-default .shepherd-content footer .shepherd-buttons {
        text-align: right;
        list-style: none;
        padding: 0;
        margin: 0; }
        .shepherd-element.shepherd-theme-default .shepherd-content footer .shepherd-buttons li {
          display: inline;
          padding: 0;
          margin: 0; }
          .shepherd-element.shepherd-theme-default .shepherd-content footer .shepherd-buttons li .shepherd-button {
            display: inline-block;
            vertical-align: middle;
            *vertical-align: auto;
            *zoom: 1;
            *display: inline;
            border-radius: 3px;
            cursor: pointer;
            border: 0;
            margin: 0 .5em 0 0;
            font-family: inherit;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-size: .8em;
            line-height: 1em;
            padding: .75em 2em;
            background: #3288e6;
            color: #fff; }
            .shepherd-element.shepherd-theme-default .shepherd-content footer .shepherd-buttons li .shepherd-button.shepherd-button-secondary {
              background: #eee;
              color: #888; }
          .shepherd-element.shepherd-theme-default .shepherd-content footer .shepherd-buttons li:last-child .shepherd-button {
            margin-right: 0; }

.shepherd-start-tour-button.shepherd-theme-default {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  border-radius: 3px;
  cursor: pointer;
  border: 0;
  margin: 0 .5em 0 0;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8em;
  line-height: 1em;
  padding: .75em 2em;
  background: #3288e6;
  color: #fff; }
admin/assets/tether-shepherd/dist/css/shepherd-theme-square-dark.css000064400000031603151213255050021617 0ustar00.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: none; }

.shepherd-element, .shepherd-element:after, .shepherd-element:before, .shepherd-element *, .shepherd-element *:after, .shepherd-element *:before {
  box-sizing: border-box; }

.shepherd-element {
  position: absolute;
  display: none; }
  .shepherd-element.shepherd-open {
    display: block; }

.shepherd-element.shepherd-theme-square-dark {
  max-width: 100%;
  max-height: 100%; }
  .shepherd-element.shepherd-theme-square-dark .shepherd-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #232323;
    color: #eee;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em; }
    .shepherd-element.shepherd-theme-square-dark .shepherd-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid;
      pointer-events: none; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-left.shepherd-target-attached-center .shepherd-content {
    left: -32px; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-right.shepherd-target-attached-center .shepherd-content {
    left: 32px; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #232323; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #232323; }

.shepherd-element.shepherd-theme-square-dark {
  border-radius: 0;
  z-index: 9999;
  max-width: 24em;
  font-size: 1em; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-square-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {
    border-bottom-color: #303030; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-has-title .shepherd-content header {
    background: #303030;
    padding: 1em; }
    .shepherd-element.shepherd-theme-square-dark.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
      padding: 0;
      margin-bottom: 0; }
  .shepherd-element.shepherd-theme-square-dark.shepherd-has-cancel-link .shepherd-content header h3 {
    float: left; }
  .shepherd-element.shepherd-theme-square-dark .shepherd-content {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.17);
    border-radius: 0;
    padding: 0; }
    .shepherd-element.shepherd-theme-square-dark .shepherd-content * {
      font-size: inherit; }
    .shepherd-element.shepherd-theme-square-dark .shepherd-content header {
      *zoom: 1;
      border-radius: 0; }
      .shepherd-element.shepherd-theme-square-dark .shepherd-content header:after {
        content: "";
        display: table;
        clear: both; }
      .shepherd-element.shepherd-theme-square-dark .shepherd-content header h3 {
        margin: 0;
        line-height: 1;
        font-weight: normal; }
      .shepherd-element.shepherd-theme-square-dark .shepherd-content header a.shepherd-cancel-link {
        float: right;
        text-decoration: none;
        font-size: 1.25em;
        line-height: .8em;
        font-weight: normal;
        color: rgba(0, 0, 0, 0.5);
        opacity: 0.25;
        position: relative;
        top: .1em;
        padding: .8em;
        margin-bottom: -.8em; }
        .shepherd-element.shepherd-theme-square-dark .shepherd-content header a.shepherd-cancel-link:hover {
          opacity: 1; }
    .shepherd-element.shepherd-theme-square-dark .shepherd-content .shepherd-text {
      padding: 1em; }
      .shepherd-element.shepherd-theme-square-dark .shepherd-content .shepherd-text p {
        margin: 0 0 .5em 0;
        line-height: 1.3em; }
        .shepherd-element.shepherd-theme-square-dark .shepherd-content .shepherd-text p:last-child {
          margin-bottom: 0; }
    .shepherd-element.shepherd-theme-square-dark .shepherd-content footer {
      padding: 0 1em 1em; }
      .shepherd-element.shepherd-theme-square-dark .shepherd-content footer .shepherd-buttons {
        text-align: right;
        list-style: none;
        padding: 0;
        margin: 0; }
        .shepherd-element.shepherd-theme-square-dark .shepherd-content footer .shepherd-buttons li {
          display: inline;
          padding: 0;
          margin: 0; }
          .shepherd-element.shepherd-theme-square-dark .shepherd-content footer .shepherd-buttons li .shepherd-button {
            display: inline-block;
            vertical-align: middle;
            *vertical-align: auto;
            *zoom: 1;
            *display: inline;
            border-radius: 0;
            cursor: pointer;
            border: 0;
            margin: 0 .5em 0 0;
            font-family: inherit;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-size: .8em;
            line-height: 1em;
            padding: .75em 2em;
            background: #3288e6;
            color: #fff; }
            .shepherd-element.shepherd-theme-square-dark .shepherd-content footer .shepherd-buttons li .shepherd-button.shepherd-button-secondary {
              background: #eee;
              color: #888; }
          .shepherd-element.shepherd-theme-square-dark .shepherd-content footer .shepherd-buttons li:last-child .shepherd-button {
            margin-right: 0; }

.shepherd-start-tour-button.shepherd-theme-square-dark {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  margin: 0 .5em 0 0;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8em;
  line-height: 1em;
  padding: .75em 2em;
  background: #3288e6;
  color: #fff; }
admin/assets/tether-shepherd/dist/css/shepherd-theme-dark.css000064400000030671151213255050020325 0ustar00.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: none; }

.shepherd-element, .shepherd-element:after, .shepherd-element:before, .shepherd-element *, .shepherd-element *:after, .shepherd-element *:before {
  box-sizing: border-box; }

.shepherd-element {
  position: absolute;
  display: none; }
  .shepherd-element.shepherd-open {
    display: block; }

.shepherd-element.shepherd-theme-dark {
  max-width: 100%;
  max-height: 100%; }
  .shepherd-element.shepherd-theme-dark .shepherd-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #232323;
    color: #eee;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em; }
    .shepherd-element.shepherd-theme-dark .shepherd-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid;
      pointer-events: none; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-left.shepherd-target-attached-center .shepherd-content {
    left: -32px; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-right.shepherd-target-attached-center .shepherd-content {
    left: 32px; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #232323; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-dark.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #232323; }

.shepherd-element.shepherd-theme-dark {
  z-index: 9999;
  max-width: 24em;
  font-size: 1em; }
  .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-dark.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {
    border-bottom-color: #303030; }
  .shepherd-element.shepherd-theme-dark.shepherd-has-title .shepherd-content header {
    background: #303030;
    padding: 1em; }
    .shepherd-element.shepherd-theme-dark.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
      padding: 0;
      margin-bottom: 0; }
  .shepherd-element.shepherd-theme-dark.shepherd-has-cancel-link .shepherd-content header h3 {
    float: left; }
  .shepherd-element.shepherd-theme-dark .shepherd-content {
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
    padding: 0; }
    .shepherd-element.shepherd-theme-dark .shepherd-content * {
      font-size: inherit; }
    .shepherd-element.shepherd-theme-dark .shepherd-content header {
      *zoom: 1;
      border-radius: 5px 5px 0 0; }
      .shepherd-element.shepherd-theme-dark .shepherd-content header:after {
        content: "";
        display: table;
        clear: both; }
      .shepherd-element.shepherd-theme-dark .shepherd-content header h3 {
        margin: 0;
        line-height: 1;
        font-weight: normal; }
      .shepherd-element.shepherd-theme-dark .shepherd-content header a.shepherd-cancel-link {
        float: right;
        text-decoration: none;
        font-size: 1.25em;
        line-height: .8em;
        font-weight: normal;
        color: rgba(0, 0, 0, 0.5);
        opacity: 0.25;
        position: relative;
        top: .1em;
        padding: .8em;
        margin-bottom: -.8em; }
        .shepherd-element.shepherd-theme-dark .shepherd-content header a.shepherd-cancel-link:hover {
          opacity: 1; }
    .shepherd-element.shepherd-theme-dark .shepherd-content .shepherd-text {
      padding: 1em; }
      .shepherd-element.shepherd-theme-dark .shepherd-content .shepherd-text p {
        margin: 0 0 .5em 0;
        line-height: 1.3em; }
        .shepherd-element.shepherd-theme-dark .shepherd-content .shepherd-text p:last-child {
          margin-bottom: 0; }
    .shepherd-element.shepherd-theme-dark .shepherd-content footer {
      padding: 0 1em 1em; }
      .shepherd-element.shepherd-theme-dark .shepherd-content footer .shepherd-buttons {
        text-align: right;
        list-style: none;
        padding: 0;
        margin: 0; }
        .shepherd-element.shepherd-theme-dark .shepherd-content footer .shepherd-buttons li {
          display: inline;
          padding: 0;
          margin: 0; }
          .shepherd-element.shepherd-theme-dark .shepherd-content footer .shepherd-buttons li .shepherd-button {
            display: inline-block;
            vertical-align: middle;
            *vertical-align: auto;
            *zoom: 1;
            *display: inline;
            border-radius: 3px;
            cursor: pointer;
            border: 0;
            margin: 0 .5em 0 0;
            font-family: inherit;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-size: .8em;
            line-height: 1em;
            padding: .75em 2em;
            background: #3288e6;
            color: #fff; }
            .shepherd-element.shepherd-theme-dark .shepherd-content footer .shepherd-buttons li .shepherd-button.shepherd-button-secondary {
              background: #eee;
              color: #888; }
          .shepherd-element.shepherd-theme-dark .shepherd-content footer .shepherd-buttons li:last-child .shepherd-button {
            margin-right: 0; }

.shepherd-start-tour-button.shepherd-theme-dark {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  border-radius: 3px;
  cursor: pointer;
  border: 0;
  margin: 0 .5em 0 0;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8em;
  line-height: 1em;
  padding: .75em 2em;
  background: #3288e6;
  color: #fff; }
admin/assets/tether-shepherd/dist/css/shepherd-theme-arrows-fix.css000064400000001160151213255050021474 0ustar00.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: none; }
admin/assets/tether-shepherd/dist/css/shepherd-theme-arrows.css000064400000027772151213255050020731 0ustar00.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: none; }

.shepherd-element, .shepherd-element:after, .shepherd-element:before, .shepherd-element *, .shepherd-element *:after, .shepherd-element *:before {
  box-sizing: border-box; }

.shepherd-element {
  position: absolute;
  display: none; }
  .shepherd-element.shepherd-open {
    display: block; }

.shepherd-element.shepherd-theme-arrows {
  max-width: 100%;
  max-height: 100%; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #fff;
    color: #444;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2)); }
    .shepherd-element.shepherd-theme-arrows .shepherd-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid;
      pointer-events: none; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-left.shepherd-target-attached-center .shepherd-content {
    left: -32px; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-right.shepherd-target-attached-center .shepherd-content {
    left: 32px; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #fff; }
  .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #fff; }

.shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-arrows.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {
  border-bottom-color: #eee; }

.shepherd-element.shepherd-theme-arrows.shepherd-has-title .shepherd-content header {
  background: #eee;
  padding: 1em; }
  .shepherd-element.shepherd-theme-arrows.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
    padding: 0;
    margin-bottom: 0; }

.shepherd-element.shepherd-theme-arrows.shepherd-has-cancel-link .shepherd-content header h3 {
  float: left; }

.shepherd-element.shepherd-theme-arrows .shepherd-content {
  padding: 0; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content * {
    font-size: inherit; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content header {
    *zoom: 1;
    border-radius: 5px 5px 0 0; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content header:after {
      content: "";
      display: table;
      clear: both; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content header h3 {
      margin: 0;
      line-height: 1;
      font-weight: normal; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content header a.shepherd-cancel-link {
      float: right;
      text-decoration: none;
      font-size: 1.25em;
      line-height: .8em;
      font-weight: normal;
      color: rgba(0, 0, 0, 0.5);
      opacity: 0.25;
      position: relative;
      top: .1em;
      padding: .8em;
      margin-bottom: -.8em; }
      .shepherd-element.shepherd-theme-arrows .shepherd-content header a.shepherd-cancel-link:hover {
        opacity: 1; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content .shepherd-text {
    padding: 1em; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content .shepherd-text p {
      margin: 0 0 .5em 0;
      line-height: 1.3em; }
      .shepherd-element.shepherd-theme-arrows .shepherd-content .shepherd-text p:last-child {
        margin-bottom: 0; }
  .shepherd-element.shepherd-theme-arrows .shepherd-content footer {
    padding: 0 1em 1em; }
    .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons {
      text-align: right;
      list-style: none;
      padding: 0;
      margin: 0; }
      .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li {
        display: inline;
        padding: 0;
        margin: 0; }
        .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li .shepherd-button {
          display: inline-block;
          vertical-align: middle;
          *vertical-align: auto;
          *zoom: 1;
          *display: inline;
          border-radius: 3px;
          cursor: pointer;
          border: 0;
          margin: 0 .5em 0 0;
          font-family: inherit;
          text-transform: uppercase;
          letter-spacing: .1em;
          font-size: .8em;
          line-height: 1em;
          padding: .75em 2em;
          background: #3288e6;
          color: #fff; }
          .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li .shepherd-button.shepherd-button-secondary {
            background: #eee;
            color: #888; }
        .shepherd-element.shepherd-theme-arrows .shepherd-content footer .shepherd-buttons li:last-child .shepherd-button {
          margin-right: 0; }
admin/assets/tether-shepherd/dist/css/shepherd-theme-arrows-plain-buttons.css000064400000030366151213255050023517 0ustar00.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: none; }

.shepherd-element, .shepherd-element:after, .shepherd-element:before, .shepherd-element *, .shepherd-element *:after, .shepherd-element *:before {
  box-sizing: border-box; }

.shepherd-element {
  position: absolute;
  display: none; }
  .shepherd-element.shepherd-open {
    display: block; }

.shepherd-element.shepherd-theme-arrows-plain-buttons {
  max-width: 100%;
  max-height: 100%; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #fff;
    color: #444;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2)); }
    .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid;
      pointer-events: none; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-left.shepherd-target-attached-center .shepherd-content {
    left: -32px; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-right.shepherd-target-attached-center .shepherd-content {
    left: 32px; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #fff; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #fff; }

.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {
  border-bottom-color: #eee; }

.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header {
  background: #eee;
  padding: 1em; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
    padding: 0;
    margin-bottom: 0; }

.shepherd-element.shepherd-theme-arrows-plain-buttons.shepherd-has-cancel-link .shepherd-content header h3 {
  float: left; }

.shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content {
  padding: 0; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header {
    *zoom: 1;
    border-radius: 5px 5px 0 0; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header:after {
      content: "";
      display: table;
      clear: both; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header h3 {
      margin: 0;
      line-height: 1;
      font-weight: normal; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header a.shepherd-cancel-link {
      float: right;
      text-decoration: none;
      font-size: 1.25em;
      line-height: .8em;
      font-weight: normal;
      color: rgba(0, 0, 0, 0.5);
      opacity: 0.25;
      position: relative;
      top: .1em;
      padding: .8em;
      margin-bottom: -.8em; }
      .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content header a.shepherd-cancel-link:hover {
        opacity: 1; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text {
    padding: 1em; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p {
      margin: 0 0 .5em 0;
      line-height: 1.3em; }
      .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content .shepherd-text p:last-child {
        margin-bottom: 0; }
  .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer {
    padding: 0 1em 1em; }
    .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons {
      text-align: right;
      list-style: none;
      padding: 0;
      margin: 0; }
      .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li {
        display: inline;
        padding: 0;
        margin: 0; }
        .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li .shepherd-button {
          display: inline-block;
          vertical-align: middle;
          *vertical-align: auto;
          *zoom: 1;
          *display: inline;
          cursor: pointer;
          margin: 0 .5em 0 0;
          text-decoration: none; }
        .shepherd-element.shepherd-theme-arrows-plain-buttons .shepherd-content footer .shepherd-buttons li:last-child .shepherd-button {
          margin-right: 0; }
admin/assets/tether-shepherd/dist/css/shepherd-theme-square.css000064400000031122151213255060020675 0ustar00.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: none; }

.shepherd-element, .shepherd-element:after, .shepherd-element:before, .shepherd-element *, .shepherd-element *:after, .shepherd-element *:before {
  box-sizing: border-box; }

.shepherd-element {
  position: absolute;
  display: none; }
  .shepherd-element.shepherd-open {
    display: block; }

.shepherd-element.shepherd-theme-square {
  max-width: 100%;
  max-height: 100%; }
  .shepherd-element.shepherd-theme-square .shepherd-content {
    border-radius: 5px;
    position: relative;
    font-family: inherit;
    background: #f6f6f6;
    color: #444;
    padding: 1em;
    font-size: 1.1em;
    line-height: 1.5em; }
    .shepherd-element.shepherd-theme-square .shepherd-content:before {
      content: "";
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-color: transparent;
      border-width: 16px;
      border-style: solid;
      pointer-events: none; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-center .shepherd-content:before {
      top: 100%;
      left: 50%;
      margin-left: -16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-center .shepherd-content:before {
      bottom: 100%;
      left: 50%;
      margin-left: -16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-right.shepherd-element-attached-middle .shepherd-content:before {
      left: 100%;
      top: 50%;
      margin-top: -16px;
      border-left-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-left.shepherd-element-attached-middle .shepherd-content:before {
      right: 100%;
      top: 50%;
      margin-top: -16px;
      border-right-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-left.shepherd-target-attached-center .shepherd-content {
    left: -32px; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-right.shepherd-target-attached-center .shepherd-content {
    left: 32px; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-middle .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      left: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content {
    margin-top: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom .shepherd-content:before {
      bottom: 100%;
      right: 16px;
      border-bottom-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      left: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content {
    margin-bottom: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top .shepherd-content:before {
      top: 100%;
      right: 16px;
      border-top-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      top: 16px;
      left: 100%;
      border-left-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      top: 16px;
      right: 100%;
      border-right-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content {
    margin-right: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-left .shepherd-content:before {
      bottom: 16px;
      left: 100%;
      border-left-color: #f6f6f6; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content {
    margin-left: 16px; }
    .shepherd-element.shepherd-theme-square.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-right .shepherd-content:before {
      bottom: 16px;
      right: 100%;
      border-right-color: #f6f6f6; }

.shepherd-element.shepherd-theme-square {
  border-radius: 0;
  z-index: 9999;
  max-width: 24em;
  font-size: 1em; }
  .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-center.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before, .shepherd-element.shepherd-theme-square.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-has-title .shepherd-content:before {
    border-bottom-color: #e6e6e6; }
  .shepherd-element.shepherd-theme-square.shepherd-has-title .shepherd-content header {
    background: #e6e6e6;
    padding: 1em; }
    .shepherd-element.shepherd-theme-square.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
      padding: 0;
      margin-bottom: 0; }
  .shepherd-element.shepherd-theme-square.shepherd-has-cancel-link .shepherd-content header h3 {
    float: left; }
  .shepherd-element.shepherd-theme-square .shepherd-content {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.17);
    border-radius: 0;
    padding: 0; }
    .shepherd-element.shepherd-theme-square .shepherd-content * {
      font-size: inherit; }
    .shepherd-element.shepherd-theme-square .shepherd-content header {
      *zoom: 1;
      border-radius: 0; }
      .shepherd-element.shepherd-theme-square .shepherd-content header:after {
        content: "";
        display: table;
        clear: both; }
      .shepherd-element.shepherd-theme-square .shepherd-content header h3 {
        margin: 0;
        line-height: 1;
        font-weight: normal; }
      .shepherd-element.shepherd-theme-square .shepherd-content header a.shepherd-cancel-link {
        float: right;
        text-decoration: none;
        font-size: 1.25em;
        line-height: .8em;
        font-weight: normal;
        color: rgba(0, 0, 0, 0.5);
        opacity: 0.25;
        position: relative;
        top: .1em;
        padding: .8em;
        margin-bottom: -.8em; }
        .shepherd-element.shepherd-theme-square .shepherd-content header a.shepherd-cancel-link:hover {
          opacity: 1; }
    .shepherd-element.shepherd-theme-square .shepherd-content .shepherd-text {
      padding: 1em; }
      .shepherd-element.shepherd-theme-square .shepherd-content .shepherd-text p {
        margin: 0 0 .5em 0;
        line-height: 1.3em; }
        .shepherd-element.shepherd-theme-square .shepherd-content .shepherd-text p:last-child {
          margin-bottom: 0; }
    .shepherd-element.shepherd-theme-square .shepherd-content footer {
      padding: 0 1em 1em; }
      .shepherd-element.shepherd-theme-square .shepherd-content footer .shepherd-buttons {
        text-align: right;
        list-style: none;
        padding: 0;
        margin: 0; }
        .shepherd-element.shepherd-theme-square .shepherd-content footer .shepherd-buttons li {
          display: inline;
          padding: 0;
          margin: 0; }
          .shepherd-element.shepherd-theme-square .shepherd-content footer .shepherd-buttons li .shepherd-button {
            display: inline-block;
            vertical-align: middle;
            *vertical-align: auto;
            *zoom: 1;
            *display: inline;
            border-radius: 0;
            cursor: pointer;
            border: 0;
            margin: 0 .5em 0 0;
            font-family: inherit;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-size: .8em;
            line-height: 1em;
            padding: .75em 2em;
            background: #3288e6;
            color: #fff; }
            .shepherd-element.shepherd-theme-square .shepherd-content footer .shepherd-buttons li .shepherd-button.shepherd-button-secondary {
              background: #eee;
              color: #888; }
          .shepherd-element.shepherd-theme-square .shepherd-content footer .shepherd-buttons li:last-child .shepherd-button {
            margin-right: 0; }

.shepherd-start-tour-button.shepherd-theme-square {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  margin: 0 .5em 0 0;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8em;
  line-height: 1em;
  padding: .75em 2em;
  background: #3288e6;
  color: #fff; }
admin/assets/tether-shepherd/dist/eager/installHelper.js000064400000011352151213255060017425 0ustar00(function() {
  var ShepherdInstallHelper, addEventListener, buttonLocation, firstStepSelector, options, ready, render, tour;

  addEventListener = function(el, eventName, handler) {
    if (el.addEventListener) {
      return el.addEventListener(eventName, handler);
    } else {
      return el.attachEvent("on" + eventName, function() {
        return handler.call(el);
      });
    }
  };

  ready = function(fn) {
    if (document.readyState !== 'loading') {
      return fn();
    } else if (document.addEventListener) {
      return document.addEventListener('DOMContentLoaded', fn);
    } else {
      return document.attachEvent('onreadystatechange', function() {
        if (document.readyState !== 'loading') {
          return fn();
        }
      });
    }
  };

  firstStepSelector = void 0;

  options = INSTALL_OPTIONS;

  tour = null;

  buttonLocation = null;

  render = function() {
    var existing, i, id, j, k, lastI, len, len1, open, ref, ref1, step, stepOptions, steps, textLines;
    tour || (tour = new Shepherd.Tour);
    steps = [];
    ref = options.steps;
    for (j = 0, len = ref.length; j < len; j++) {
      step = ref[j];
      if (step.text && step.attachToSelector && step.attachToDirection) {
        if (typeof step.text === 'string') {
          textLines = step.text.split('\n');
          if (textLines.length) {
            step.text = textLines;
          }
        }
        steps.push(step);
      }
    }
    open = (ref1 = tour.getCurrentStep()) != null ? ref1.id : void 0;
    lastI = -1;
    for (i = k = 0, len1 = steps.length; k < len1; i = ++k) {
      step = steps[i];
      if (i === 0) {
        firstStepSelector = step.attachToSelector;
      }
      stepOptions = {
        title: step.title,
        text: step.text,
        showCancelLink: step.showCancelLink,
        attachTo: step.attachToSelector + ' ' + step.attachToDirection,
        classes: "shepherd-element shepherd-theme-" + options.theme,
        scrollTo: options.scrollTo
      };
      stepOptions.buttons = [];
      if (i > 0) {
        stepOptions.buttons.push({
          text: 'Back',
          action: tour.back,
          classes: 'shepherd-button-secondary'
        });
      } else if (steps.length > 1) {
        stepOptions.buttons.push({
          text: 'Exit',
          action: tour.cancel,
          classes: 'shepherd-button-secondary'
        });
      }
      if (i < steps.length - 1) {
        stepOptions.buttons.push({
          text: 'Next',
          action: tour.next
        });
      } else {
        stepOptions.buttons.push({
          text: 'Done',
          action: tour.next
        });
      }
      id = "step-" + i;
      existing = tour.getById(id);
      if (existing) {
        existing.setOptions(stepOptions);
        existing.render();
        if (open === id) {
          tour.show(id);
        }
      } else {
        tour.addStep('step-' + i, stepOptions);
      }
      lastI = i;
    }
    while (existing = tour.getById("step-" + (++lastI))) {
      tour.removeStep(existing.id);
    }
    return ready(function() {
      var button, ref2, start, tries;
      if (options.trigger === 'first-page-visit' && !Shepherd.activeTour) {
        tries = 0;
        start = function() {
          if (document.querySelector(firstStepSelector)) {
            tour.start();
            if (INSTALL_ID !== 'preview') {
              return typeof localStorage !== "undefined" && localStorage !== null ? localStorage.eagerShepherdHasRun = 'true' : void 0;
            }
          } else if (tries < 3) {
            tries++;
            return setTimeout(start, 250);
          }
        };
        if (INSTALL_ID === 'preview' || ((ref2 = window.localStorage) != null ? ref2.eagerShepherdHasRun : void 0) !== 'true') {
          start();
        }
      }
      if (options.trigger === 'button-click') {
        buttonLocation = Eager.createElement(options.buttonLocation, buttonLocation);
        button = document.createElement('button');
        button.className = "shepherd-start-tour-button shepherd-theme-" + options.theme;
        button.appendChild(document.createTextNode(options.buttonText));
        if (buttonLocation) {
          buttonLocation.appendChild(button);
          return addEventListener(button, 'click', function() {
            return tour.start();
          });
        }
      } else if (buttonLocation != null ? buttonLocation.parentNode : void 0) {
        Eager.createElement({
          method: 'append',
          selector: 'x:not(x)'
        }, buttonLocation);
        return buttonLocation = null;
      }
    });
  };

  render();

  ShepherdInstallHelper = {
    setOptions: function(opts) {
      options = opts;
      return render();
    },
    tour: tour
  };

  window.ShepherdInstallHelper = ShepherdInstallHelper;

}).call(this);
admin/assets/css/parts/_fonts.css000064400000000161151213255060013057 0ustar00h1 {
	@apply mt-0 mb-4 !important;
}
p {
	@apply mt-0 mb-3 !important;
}
code {
	font-size: inherit !important;
}admin/assets/css/parts/ie11.css000064400000000125151213255060012326 0ustar00.respect-ie11 .tabs-content {
	@apply max-w-2xl;
}
::-ms-clear {
    display: none;
}admin/assets/css/admin.css000064400000123711151213255060011535 0ustar00
@import "tailwindcss/base";
@import "tailwindcss/components";

@import "./components/toolbar.css";
@import "./components/tour.css";

@import "tailwindcss/utilities";

@import "./parts/_fonts.css";
@import "./parts/ie11.css";

@import "./settings.css";
@import "./components/wordpress.css";
@import "./components/forms.css";
@import "./components/notifications.css";
@import "./components/animations.css";



/* TODO: Add responsive styles, for now min-width */
#metaslider-ui,
.container {
	min-width: theme('screens.lg');
	@apply mx-auto px-2;
}
.container {
	max-width: theme('screens.lg');
}

pre#shortcode::selection,
pre#shortcode *::selection {
	@apply bg-blue-highlight text-gray-darker;
}

/* Consider everything after this a legacy style with the intent to
eventually be removed/refactored */
.metaslider.wrap div.updated,
.metaslider.wrap div.error {
    clear: both
}

.metaslider .left input[type=text],
.metaslider .left textarea {
    border: 1px solid #8c8f94;
    border-radius: 4px;
    resize: none;
    box-shadow: inherit;
}

.metaslider .left select {
    line-height: 28px;
}

.media-frame-menu .separator {
    display: none
}

.msTipsy .tipsy-arrow-s {
    border-top-color: #555
}

.msTipsy .tipsy-arrow-w {
    border-right-color: #555
}

.msTipsy .tipsy-arrow-n {
    border-bottom-color: #555
}

.msTipsy .tipsy-inner {
    color: white;
    background-color: #555;
}

.msTipsy .tipsy-arrow-e {
    border-left-color: #555
}

#cboxLoadedContent {
    overflow: hidden !important
}

#cboxLoadedContent iframe {
    border: 0 none;
    display: block;
    height: 100%;
    width: 100%;
}

/* Settings table */
.metaslider .ms-settings-table {
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    width: 100%;
    border-collapse: collapse;
    border-bottom: 1px solid #c3c4c7;
}
.metaslider .ms-settings-table tr {
    border-style: solid;
    border-width: 0 1px;
    border-color: #c3c4c7;
    background: #fff; 
}
.metaslider .ms-settings-table tr.highlight {
    border-top-width: 1px;
    border-bottom-width: 1px;
    background: #f1f1f1;
}
.metaslider .ms-settings-table tr.slider-lib {
    background: transparent;
    border-right-width: 0;
    border-left-width: 0;
}
.metaslider .ms-settings-table tr.slider-lib td {
    padding: 0;
    height: 30px;
}
.metaslider .ms-settings-table tr td {
    vertical-align: middle;
    padding: 6px 20px;
    line-height: 1.5em;
}
.metaslider .ms-settings-table tr.highlight td {
    color: #50575e;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 2em;
    padding-left: 20px;
    padding-right: 20px;
}
.metaslider .ms-settings-table tr:not(.highlight) td:nth-of-type(1) {
    width: 40%;
}
.metaslider .ms-settings-table tr:not(.highlight) td:nth-of-type(2) {
    width: 60%;
}
.metaslider .ms-settings-table tr.empty-row-spacing td {
    height: 22px;
}

/* Switch button */
.metaslider .ms-switch-button {
    margin: 0 8px 0 0;
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    line-height: 19.5px;
    vertical-align: middle;
}
.metaslider .ms-switch-button label {
    margin: 17px 0;
}
.metaslider .ms-switch-button label input {
    display: none !important;
}
.metaslider .ms-switch-button label input:checked + span {
    background-color: #dd6923;
}
.metaslider .ms-switch-button label input:checked + span:before {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
}
.metaslider .ms-switch-button label span {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    width: auto;
}
.metaslider .ms-switch-button label span:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* Theme settings */
.theme-select-module .change-theme-img-button {
    position: relative;
    margin-bottom: 7px;
}
.theme-select-module .button-link {
    text-decoration: none;
}
.theme-select-module .remove-theme,
.theme-select-module .remove-theme:hover,
.theme-select-module .remove-theme:active,
.theme-select-module .remove-theme:focus {
    color: #d63638;
}
.theme-select-module .change-theme {
    float: right;
}

.metaslider .right input[type=submit] {
    margin: 0 3px;
}

.metaslider #poststuff .right .configuration {
    padding: 7px 7px 7px 12px;
    line-height: 27px;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.metaslider .section {
    cursor: pointer
}

.metaslider .tipsy-tooltip {
    cursor: default
}

.metaslider .ui-sortable-helper {
    box-shadow: 3px 3px 5px #cccccc
}

.metaslider .left table tr.slide textarea {
    width: 100%;
    height: 120px;
    margin: 0;
    padding: 2px 5px;
}

.metaslider .left table tr.slide input.url {
    width: 100%;
    min-width: 200px;
}

.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window,
.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window,
.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window {
     right: 6px;
     bottom: 20px;
}

.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window label,
.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window label,
.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window label {
     line-height: 18px;
     vertical-align: top;
}

.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window input,
.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window input,
.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window input {
     margin: -2px 0 0 4px;
}

.metaslider .left table tr.slide .tabs-content .new_window {
    position: relative;
    float: right;
    padding: 0px;
    padding-left: 5px;
    margin-right: 0;
    right: 0;
    width: 190px;
    text-align: right;
}
.rtl .metaslider .left table tr.slide .tabs-content .new_window {
    position: relative;
    float: left;
}

.metaslider .left table tr.slide .tabs-content .new_window input {
    margin-left: 3px
}
.rtl .metaslider .left table tr.slide .tabs-content .new_window input {
    margin-right: 0px
}
.metaslider .left table tr.slide .tabs-content .new_window > label {
    text-align: right;
    line-height: 30px;
}

/* small label */
.metaslider .input-label.right {
    float: right;
}
.metaslider .tabs-content .input-label.right input{
    margin-right: 0;
}

/* Caption */
.metaslider .tabs-content .caption {
	position: relative;
}
.metaslider .tabs-content .can-inherit:not(.inherit-from-image) input[type=text] {
	display: block;
}
.metaslider .tabs-content .can-inherit:not(.inherit-from-image) .default {
	display: none;
}
.metaslider .tabs-content .can-inherit.inherit-from-image input[type=text] {
	display: none;
}
.metaslider .tabs-content .can-inherit.inherit-from-image .default {
	display: block;
}
.metaslider .tabs-content .image-title-label,
.metaslider .tabs-content .image-alt-label,
.metaslider .tabs-content .link-alt-label {
    line-height: 30px;
}

.metaslider .tabs-content .default {
    width: 100%;
    overflow: hidden;
    padding: 2px 8px;
    border: 1px solid #8c8f94;
    background: #eeeeee;
    line-height: 24px;
    border-radius: 4px;
}
.metaslider .tabs-content .caption .default {
    height: 60px;
    overflow: auto;
    margin: 0 0 5px 0;
    border-radius: 4px;
}
.metaslider .tabs-content .caption.inherit-from-image textarea {
	display: none;
}
.metaslider .tabs-content .inherit-from-image input[type=text] {
	display: none;
}
.metaslider .tabs-content .inherit-from-image .default {
	display: block;
}
.metaslider .tabs-content .default .no-content {
    opacity: 0.3;
    font-style: italic;
}

.metaslider tr.radio {
    display: table-row;
}

/* *
*  Change background color for label next to checked radio button
*  to make it look like highlighted button
   ================================================== */

.metaslider .right .slider-lib-row input[type=radio]:checked + label {
    background-image: none;
    background-color: #d0d0d0;
}

.metaslider .right .slider-lib-row input[type=radio] {
    display: none;
}

.metaslider .right .slider-lib-row input[type=radio] + label {
    display: inline-block;
    padding: 4px 0;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 20px;
    color: #333;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
    background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
    background-image: -o-linear-gradient(top,#fff,#e6e6e6);
    background-image: linear-gradient(to bottom,#fff,#e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #ddd;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    border-bottom-color: #b3b3b3;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    width: 25%;
}

.metaslider .right .slider-lib-row input[type=radio]:checked + label {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    background-color: #e0e0e0;
}

.metaslider .right #nivo + label:hover,
.metaslider .right #nivo:checked + label {
    color: white;
    background: #b6e026;
    background: -moz-linear-gradient(top, #b6e026 0%, #abdc28 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b6e026), color-stop(100%, #abdc28));
    background: -webkit-linear-gradient(top, #b6e026 0%, #abdc28 100%);
    background: -o-linear-gradient(top, #b6e026 0%, #abdc28 100%);
    background: -ms-linear-gradient(top, #b6e026 0%, #abdc28 100%);
    background: linear-gradient(to bottom, #b6e026 0%, #abdc28 100%);
}

.metaslider .right #responsive + label:hover,
.metaslider .right #responsive:checked + label,
.metaslider .right #responsive:checked {
    color: white;
    background: #ff5db1; /* Old browsers */
    background: -moz-linear-gradient(top,  #ff5db1 0%, #ef017c 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff5db1), color-stop(100%,#ef017c)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ff5db1 0%,#ef017c 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ff5db1 0%,#ef017c 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ff5db1 0%,#ef017c 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ff5db1 0%,#ef017c 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5db1', endColorstr='#ef017c',GradientType=0 ); /* IE6-9 */
}

.metaslider .right #coin + label:hover,
.metaslider .right #coin:checked + label {
    color: white;
    background: #ffd65e;
    background: -moz-linear-gradient(top, #ffd65e 0%, #febf04 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffd65e), color-stop(100%, #febf04));
    background: -webkit-linear-gradient(top, #ffd65e 0%, #febf04 100%);
    background: -o-linear-gradient(top, #ffd65e 0%, #febf04 100%);
    background: -ms-linear-gradient(top, #ffd65e 0%, #febf04 100%);
    background: linear-gradient(to bottom, #ffd65e 0%, #febf04 100%);
}

.metaslider .right #flex + label:hover,
.metaslider .right #flex:checked + label {
    color: white;
    background: #00b7ea;
    background: -moz-linear-gradient(top, #00b7ea 0%, #009ec3 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00b7ea), color-stop(100%, #009ec3));
    background: -webkit-linear-gradient(top, #00b7ea 0%, #009ec3 100%);
    background: -o-linear-gradient(top, #00b7ea 0%, #009ec3 100%);
    background: -ms-linear-gradient(top, #00b7ea 0%, #009ec3 100%);
    background: linear-gradient(to bottom, #00b7ea 0%, #009ec3 100%);
}
.metaslider .right .slider-lib-row label:focus,
.metaslider .right .slider-lib-row label:active {
    background: #acd7fd !important;
    box-shadow: none !important;
    outline: none;
}
.metaslider .right .slider-lib-row {
    text-align: center;
}

.metaslider .right .radio ul {
    margin: 0;
}
.metaslider .right .radio li {
    margin: 0 0 2px 0;
    clear: both;
}
.metaslider .right .radio input[type="radio"] {
    margin-top: 0;
}
.rtl .metaslider .right .radio input[type="radio"] {
    float: right;
}

.metaslider #poststuff .right .ms-postbox .inside {
    padding: 1rem;
	margin: 0;
    background: white;
}

.ms-postbox .handlediv {
    float: right;
    width: 27px;
    height: 30px;
    cursor: pointer;
    color: #aaa;
}

.ms-postbox .handlediv:before {
    right: 12px;
    font: 400 20px/1 dashicons;
    speak: none;
    display: inline-block;
    padding: 8px 10px;
    top: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none !important;
    content: '\f142';
}

.ms-postbox.closed .handlediv:before {
    content: '\f140';
}

.metaslider .social .inside {
    padding: 10px;
}

.metaslider .social .inside ul.info {
    width: 100%;
    margin: 0;
    height: 20px;
}

.metaslider .right .ms-postbox table {
    border: 0;
    width: 100%;
}

.metaslider .right .ms-postbox table textarea {
    width: 100%;
    height: 100px;
    font-family: monospace;
    background: #272822;
    color: #a6e22e;
}

.metaslider .right .ms-postbox h3 {
    cursor: inherit;
}

.metaslider .right .ms-postbox.ms-toggle h3 {
    cursor: pointer;
}

.metaslider .right table {
    margin: 0 0 22px 0;
}

.metaslider select {
    height: auto;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    width: 180px;
    display: inline-block
}

.metaslider .warning {
    background-color: #ffebe8;
    border: 1px solid #c00;
    margin-bottom: 5px;
    border-radius: 3px;
    padding: 5px 10px;
}

.attachment-display-settings {
    display: none;
}

.metaslider .tabs-content input:focus:not([readonly]),
.metaslider .tabs-content textarea:focus:not([readonly]),
.metaslider .tabs-content select:focus:not([readonly]) {
    color: #444;
    border-color: #acd7fd;
    /* background: rgba(172, 215, 253, 0.2); */
}

.metaslider .left .tabs-content {
    clear: both;
}

.metaslider .tabs-content .row {
    float: left;
    clear: both;
    width: 100%;
    vertical-align: middle;
    margin-bottom: 10px;
}

.metaslider .tabs-content .row.last {
    margin-bottom: 0;
}

.metaslider .tabs-content .row label {
    display: inline-block;
}

.metaslider .slide .row.has-right-field > label {
    width: 125px;
}

.metaslider .tabs-content .row input {
    margin-right: 5px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.metaslider .tabs-content .row input[type="text"] {
    width: 100%;
}

.metaslider .tabs-content .row.has-right-checkbox {
    display: flex;
    grid-gap: 0.5rem;
	gap: 0.5rem;
    align-items: center;
}

.metaslider .tabs-content .row.has-right-checkbox > div:nth-child(1) {
	flex-grow: 1;
}

.metaslider .tabs-content .row.has-right-checkbox > div:nth-child(2) [class*="tipsy-tooltip"].dashicons {
    line-height: 22px;
}


.metaslider .tabs-content ul {
    margin: 0;
}

.metaslider .tabs-content li {
    margin: 0 0 10px 0;
}

.metaslider .tabs-content p {
    font-style: italic;
    color: #999999;
}

.metaslider ul.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    height: auto;
    position: relative;
}

.metaslider ul.tabs:after {
    content: '';
    display: table;
    width: 100%;
    border-top: 1px solid #8c8f94;
    margin-top: -1px;
    position: relative;
}

.metaslider ul.tabs li {
    line-height: normal;
    list-style: none;
    background: #fbfbfb;
    display: inline;
}

.metaslider ul.tabs li a {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    padding: 6px 7px;
    margin: 0 0 0 5px;
    color: #50575e;
    background: #fbfbfb;;
    outline: 0;
    box-shadow: none;
    border-width: 1px;
    border-style: solid;
    border-color: #ccc #ccc #8c8f94;
    display: inline-block;
    position: relative;
}

.metaslider ul.tabs li a:hover,
.metaslider ul.tabs li.selected a {
    background: #fff;
    color: #dd6923;
}

.metaslider ul.tabs li.selected a {
    border-color: #8c8f94 #8c8f94 #fff;
}

.metaslider ul.tabs li.selected a:after {
    content: '';
    display: table;
    width: 100%;
    border-top: 2px solid #fff;
    margin-left: -7px;
    bottom: -1px;
    position: absolute;
    z-index: 1;
}

.metaslider .tabs-content {
	padding-top: 1rem;
}

.metaslider .tabs-content .schedule_placeholder {
	text-align: center;
	padding-top: 10px;
}

.metaslider .tabs-content .schedule_placeholder h4 {
	font-weight: normal;
}

.metaslider .dropdown_container {
    margin: 40px 0 10px 0;
}

#adminmenu .toplevel_page_metaslider .wp-menu-image img {
    opacity: 1;
}

.metaslider-ui, .metaslider-ui * {
    box-sizing: border-box;
}

/* Slide Title */
.metaslider-ui .slider-title {
    padding: 10px 0 13px;
    position: relative;
    padding-right: 100px;
    border-bottom: none;
}
.metaslider-ui .slider-title h3 {
    font-weight: normal;
    margin: 0 0.5rem 0 0;
}

/* Slide Listing */
.metaslider-ui .metaslider-slides-container * {
    box-sizing: border-box;
}
.metaslider-ui .metaslider-slides-container {
    border-collapse: separate;
    background: none;
    border: 0;
    box-shadow: none;
}
.metaslider-ui .metaslider-slides-container .slide {
    border: 1px solid #c3c4c7;
    background: white;
    overflow: hidden;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    position: relative;
    display: block;
    margin-bottom: 22px;
    padding-top: 31px;
}
.metaslider-ui .metaslider-slides-container .slide.post_feed  .scroll{
    overflow: auto;
    height: 150px;
}
.metaslider-ui .metaslider-slides-container .slide > td {
    padding: 0;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}
.metaslider-ui .metaslider-slides-container .slide .slide-details {
    margin: 0;
    font-size: 0.8em;
    display: inline-block;
    margin-top: 6px;
    color: #50575e;
    font-weight: 400;
}
.metaslider-ui .metaslider-slides-container .slide .metaslider-ui-controls {
    padding-left: 0.5rem;
    height: 31px;
    font-size: 1.2em;
    cursor: move;
    border-bottom: 1px solid #c3c4c7;
    background-color: #f1f1f1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.metaslider-ui .metaslider-slides-container .metaslider-ui-inner {
    padding: 1rem;
}
.metaslider-ui .metaslider-slides-container .slide .thumb-col-settings {
    display: flex;
}
.metaslider-ui .metaslider-slides-container .slide .thumb-col-settings > div:nth-child(2) {
    flex-grow: 1;
}
.metaslider-ui .metaslider-slides-container .slide .col-2 {
    width: 100%;
}
.metaslider-ui .metaslider-slides-container .metaslider-ui-inner.metaslider-slide-thumb {
    padding: 0 1rem 0 0;
}
.metaslider-ui .metaslider-slides-container .slide .thumb {
    border: 1px solid #8c8f94;
    position: relative;
    height: 150px;
    width: 240px;
    background-size: 100% auto;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.metaslider-ui .metaslider-slides-container .slide .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.metaslider-ui .metaslider-slides-container .toolbar-button,
.metaslider-ui .metaslider-slides-container .update-image,
.metaslider-ui .metaslider-slides-container .delete-slide,
.metaslider-ui .metaslider-slides-container .undo-delete-slide, 
.metaslider-ui .metaslider-slides-container .duplicate-slide {
    color: #50575e;
    outline: 0;
    cursor: pointer;
    background: none;
    box-shadow: none;
    border: 0;
    width: 30px;
    height: 30px;
}
.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-image,
.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-video,
.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .duplicate-slide {
    padding: 0 0 0 6px;
}
.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-image svg,
.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-video svg,
.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .duplicate-slide svg {
    width: 18px;
}
.metaslider-ui .metaslider-slides-container .update-image.image-button,
.metaslider-ui .metaslider-slides-container .update-video.image-button,
.metaslider-ui .metaslider-slides-container .duplicate-slide.image-button {
    padding: 0;
    margin: 0;
    display: block;
    width: auto;
    height: auto;
}
.metaslider-ui .metaslider-slides-container .toolbar-button:hover,
.metaslider-ui .metaslider-slides-container .toolbar-button:active {
	background: #ededed;
	color: #1d8abf;
}
.metaslider-ui .metaslider-slides-container .toolbar-button:focus {
	background-color: #acd7fd !important;
	color: #444 !important;
}

.metaslider-ui .metaslider-slides-container .toolbar-button:active {
	box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.metaslider-ui .metaslider-slides-container .update-image.image-button:active,
.metaslider-ui .metaslider-slides-container .update-image.image-button:focus {
    box-shadow: 0 0 3px 3px #acd7fd;
}
.metaslider-ui .metaslider-slides-container .update-image.image-button:focus .thumb {
    background-color: #acd7fd;
}
.metaslider-ui .metaslider-slides-container .delete-slide {
    padding: 0 0 0 5px;
}

.metaslider-ui .metaslider-slides-container .delete-slide:hover,
.metaslider-ui .metaslider-slides-container .delete-slide:active {
    color: #e82323;
}

.metaslider-ui .metaslider-slides-container .update-image svg,
.metaslider-ui .metaslider-slides-container .delete-slide svg {
    display: block;
}

/* Hide slide button */
.metaslider-ui button.hide-slide.toolbar-button {
	position: relative;
}
.metaslider-ui button.hide-slide.toolbar-button input {
	position: absolute;
	top: 0;
    visibility: hidden;
    opacity: 0;
}
.metaslider-ui button.hide-slide.toolbar-button input ~ svg {
	position: absolute;
	top: 6px;
	left: 6px;
	width: 18px;
	height: 18px;

}
.metaslider-ui button.hide-slide.toolbar-button input ~ svg.feather-eye-off {
	display: none;
}
.metaslider-ui button.hide-slide.toolbar-button input:checked ~ svg.feather-eye-off {
	display: block;
}
.metaslider-ui button.hide-slide.toolbar-button input:checked ~ svg.feather-eye-off line {
    color: rgba(193, 63, 63, 1);
	stroke: rgba(193, 63, 63, 1);
}
.metaslider-ui button.hide-slide.toolbar-button input:checked ~ svg.feather-eye {
	display: none;
}

/* Sorting */
.metaslider-ui .metaslider-slides-container .ui-sortable-helper {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -webkit-transform: translate3d(0, 0, 0) rotate(2deg);
        -ms-transform: translate3d(0, 0, 0) rotate(2deg);
            transform: translate3d(0, 0, 0) rotate(2deg);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2) !important;
}
.metaslider-ui .metaslider-slides-container .ui-sortable-placeholder {
    background: rgba(204, 204, 204, 0.33);
    padding: 4rem;
    visibility: visible !important;
    border: 3px dashed #e0e0e0;
    box-shadow: none;
}

.metaslider .ms-postbox {
    position: relative;
    min-width: 255px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    background: #ffffff;
    margin-bottom: 20px;
    padding: 0;
    line-height: 1;
}

input[type="radio"] {
    margin-right: 4px;
}

.wp-clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* TinyMCE */
.tox.tox-tinymce-aux {
    z-index: 9999;
}

 /* Spin an svg */
 .ms-spin {
    -webkit-animation: ms-spin 2s infinite linear;
    animation: ms-spin 2s infinite linear;
 }
 @-webkit-keyframes ms-spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
  @keyframes ms-spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }

/* Deleting a slide */
.ms-deleting > td div {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}
.ms-deleting button {
    background: none !important;
    color: #aaa!important;
}
.ms-deleted {
    max-height: 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden;
    background-color: transparent!important;
    border: 0!important;
    box-shadow: none!important;
    padding: 0!important;
}
.slide.hide-status .ms-delete-status {
    display:none;
}
.slide:not(.hide-status) .ms-delete-status.is-error {
    font-size: 0.8em;
    line-height: 31px;
    color: #e82323;
}
.slide:not(.hide-status) .ms-delete-status.is-success {
    font-size: 0.8em;
    margin-left: 5px;
    float: right;
    padding: 0.5em;
    color: #46b450;
}
.ms-deleted .slide-details,
.ms-deleted .metaslider-ui-controls button {
    display: none !important;
}
.ms-deleted .metaslider-ui-inner {
    max-height: 0 !important;
    overflow: hidden;
    transition: all .75s ease-in-out;
    -moz-transition: all .75s ease-in-out;
    -webkit-transition: all .75s ease-in-out;
}
.ms-deleted .metaslider-ui-controls {
    cursor: default !important;
    background-color: #f1f1f1 !important;
    border: 0 !important;
    box-shadow: none !important;
}
.ms-deleted .metaslider-ui-controls button.undo-delete-slide {
    display: inline-block;
    font-size: 0.7em;
    width: auto;
    text-transform: lowercase;
}
.ms-deleted .metaslider-ui-controls button.undo-delete-slide i {
    top: 1px;
    position: relative;
    margin-right: 0px;
}
.ms-deleted .metaslider-ui-controls button.undo-delete-slide:focus {
    text-decoration: underline;
}
.ms-deleted .metaslider-ui-controls button.undo-delete-slide:hover {
    color: #de6826;
}
.ms-deleted .metaslider-ui-controls .countdown {
    display: inline-block;
    margin-left: 5px;
    color: #ccc;
    text-shadow: 1px 1px 1px #fff;
}
.ms-delete-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.metaslider-ui .restore-slide-link {
    text-decoration: none;
    box-shadow: none;
    line-height: 1.7em;
}
.metaslider-ui .restore-slide-link svg {
    display: inline;
}
.metaslider-ui .trashed-header {
    padding: 0 0 0.5rem;
}
.metaslider-ui .trashed-header h3 {
    color: #de6826;
    font-weight: normal;
    display: inline-block;
    margin: 0;
}
.metaslider-ui .trashed-header small {
    color: #ccc;
}
.metaslider-ui .trashed-header a {
    color: #666;
    text-decoration: underline;
}
.metaslider-ui .trashed-header a:hover {
    color: #de6826;
}
.metaslider-ui .trash-btns {
    float: right;
    position: static;
    padding: 0;
}
.metaslider-ui .trash-btns a {
    padding: 0.37rem;
    display: block;
}
.metaslider-ui .trashed-notice {
    line-height: 1.4;
}
.metaslider-ui .trashed-notice .notice-info {
    padding: 1rem;
    background: #fff;
    border-left: 4px solid #00a0d2;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* Disable sldie editing in trashed slides screen */
.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .thumb-col-settings > div:nth-child(2) {
    opacity: 0.7;
}

.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .thumb-col-settings,
.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides ul.tabs li,
.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .col-2,
.metaslider-ui .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .metaslider-slides-container .slide .metaslider-ui-controls {
    user-select: none;
    cursor: not-allowed;
}

.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .thumb-col-settings,
.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides ul.tabs li {
    pointer-events: none;
}

/* Styles for edge cases */

/* Removes styling for LastPass autofill */
input.no_last_pass {
    background-image: none !important;
    background-attachment: none !important;
}
#__lpform_title {
    display: none;
}

/* Start Page */
.ms-panel-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.ms-panel-container > * {
	flex-grow: 1;
	flex-basis: 0;
	padding-right: 1.5rem;
}

/* Save/ Delete area */
.ms-delete-save {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}
.ms-delete-save .ms-delete-slideshow {
    color: #aaa;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
}
.ms-delete-save .ms-delete-slideshow:hover {
	text-decoration: underline;
}

#image-api-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    background: white;
}

.ms-heading {
	font-size: 2em;
	margin: 20px 0;
}

/* Welcome screen */
.metaslider-start {
	max-width: 80%;
	margin: 30px auto;
}

.metaslider-welcome .welcome-panel-content {
  min-height: auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
}

.metaslider-welcome .welcome-panel-content + .welcome-panel-content {
  border-top: none;
}

.metaslider-welcome .ms-panel-container > div:nth-child(1) {
  padding-right: 1rem;
}

.metaslider-welcome .ms-panel-container > div:nth-child(2) {
  padding-left: 1rem;
  padding-right: 0;
}

.metaslider-welcome .welcome-panel-content h2 {
  font-size: 1.5em;
  margin: 20px 0;
}

/* All Slideshows Page */
.toplevel_page_metaslider #wpbody-content {
	background-color: transparent;
}
.toplevel_page_metaslider #ms-toolbar .container{
    margin: 0;
}
#slideshows-list {
	margin: 10px 30px;
}
#slideshows-list table a {
	color: #2271b1;
}
#slideshows-list table a.submitdelete {
	color: #b32d2e;
}
#ms-toolbar h2 {
	font-size: 21px;
}
#slideshows-list #nds-wp-list-table-demo {
	margin-top: -50px;
}
#slideshows-list table.fixed{
    position: relative!important;
}
.column-slides .image-wrap .autoplay {
    animation: 12s autoplaythumb infinite linear;
}
#slideshows-list #slides {
	width: 105px;
}
#slideshows-list .wp-heading-inline {
	margin-bottom: 0 !important;
}
.thumb-logo {
    padding: 10px;
}
.default-thumb {
	width: 70%;
	margin: auto;
}
#metaslider-slides-list .untrash, #metaslider-slides-list .delete {
	display: inline-block;
}
.trash-view-restore {
	color: #2271b1;
}
#slideshows-list #message p {
	margin: 10px 0 !important;
}
#metaslider-list-form .search-box {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}
#slideshows-list table .copy-shortcode {
    display: inline;
    margin-right: 10px;
}
#slideshows-list table .dashicons-yes{
	color: green;
}

/* Quick Start Page */
.metaslider_page_metaslider-start #wpbody-content,
.metaslider-pro_page_metaslider-start #wpbody-content {
	background-color: transparent;
}
.metaslider_page_metaslider-start #ms-toolbar .container,
.metaslider-pro_page_metaslider-start #ms-toolbar .container{
    margin: 0;
}

.metaslider-welcome #media-items #message p {
	margin: 0 !important;
	padding: 10px 0;
}
.metaslider-welcome #media-items #message {
	margin: 0;
}

/* Upgrade Page */
.metaslider_page_upgrade-metaslider #ms-toolbar .container{
	margin: 0;
}
.metaslider_upgrade{
	margin: 30px auto;
	max-width: 80%;
}
.ml-upgrade-button {
	background: #dd6923;
	border: none;
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	padding: 8px 15px;
	text-decoration: none;
	width: 100%;
	text-align: center;
}
.ml-upgrade-button:focus, .ml-upgrade-button:active, .ml-upgrade-button:hover {
	color: #fff;
	background: #29375b;
	border: none;
}

/* Settings Page */
#metaslider-settings-page{
    background-color: #F0F0F1;
}
.export-instruction {
	padding: 10px 10px 10px 15px;
	list-style: disc;
}
.export-instruction a {
	font-weight: bold;
}
.export-instruction a .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	margin-top: 3px;
}
#metaslider-settings-page .notice {
	margin: 0;
}
#metaslider-settings-page .notice p {
	padding: 10px 0;
	margin: 0 !important;
}

/* Custom Theme */
.customtheme-list-h {
	font-size: 38px;
}
.customtheme-list-p {
	font-size: 16px;
	margin-bottom: 28px !important;
}
.upgrade-icon{
    margin: 3px 0 0 5px;
}
.promo-wrapper {
	display: table-row;
}
.promo-wrapper div {
	display: table-cell;
	vertical-align: middle;
}
#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a:active,
#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a:focus,
#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a:hover,
#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab.active a {
    background-color: #016FB9;
	border-bottom: none;
	color: #fff;
    font-size: 16px;
}
#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a {
	font-size: 16px;
    padding: 0 15px;
}

/* Legacy Libraries Settings */
#hide-legacy-settings {
	display: none;
}
.disableSwitch span {
	pointer-events: none;
}
.legacy-notif-success .bg-yellow-50 {
	background-color: #DFFFFF !important;
	border-color: #016FB9 !important;
}
.legacy-notif-success svg {
	display: none;
}
.legacy-notif-success .flex .ml-3 {
	margin: 0 !important;
}
.ml-legacy-notice {
	margin: 15px 0 0 0 !important;
}
.ml-legacy-notice p {
	margin: 10px 0 !important;
}

#metaslider-ui, 
.container {
    min-width: auto;
    width: 100%;
}
/* Quick Start */
.metaslider_page_metaslider-start .ms-heading,
.metaslider-pro_page_metaslider-start .ms-heading {
    font-size: 1.5em;
    line-height: 1.2;
}
.metaslider-start {
    margin: 20px !important;
    max-width: none;
}
.metaslider-welcome .ms-panel-container > div:nth-child(2) {
    padding-left: 0;
}
/* Dashboard */
#slideshows-list {
    margin: 10px;
}
.metaslider [class*="tipsy-tooltip"].dashicons {
	opacity: 0.5;
	font-size: 1rem;
	line-height: 30px;
}

#metaslider-ui table input,
#metaslider-ui table textarea,
#metaslider-ui table select {
    font-size: 13px;
}

.slidethumb {
    overflow: hidden;
    width: 150px;
    height: 150px;
}

/* Force CSS properties overriden by core for .form-select class */
.form-select--forced {
    background-color: #fff !important;
    border-color: #e2e8f0 !important;
    border-radius: 0.25rem !important;
    padding-top: 0.5rem !important;
    padding-right: 2.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

/* Mobile Setting */
.mobile-checkbox-wrap {
	background: transparent;
	cursor: pointer;
	display: inline-block;
	padding: 5px 10px;
	position: relative;
	border: 1px solid #c3c4c7;
	border-radius: 3px;
}
.mobile-checkbox {
  display: block!important;
  position:absolute;
  left: 0;
  top: 0;
  width: 100%!important;
  height: 100%!important;
  z-index: 99999;
  opacity: 0;
}
.mobile-checkbox-wrap .dashicons {
	font-size: 25px;
	margin-top: 2px;
	width: 25px;
	height: 25px;
}

.mobile-checkbox-wrap > input[type='checkbox']+span{
  color: #50575e;
}

.mobile-checkbox-wrap > input[type="checkbox"]:checked + span {
	color: #dd6923;
}

.mobile_setting_enabled svg {
	width: 18px;
	margin-top: -2px;
	color: rgb(70, 180, 80);
}

.ms-settings-table .mobile-checkbox-wrap {
	margin-right: 5px;
	padding: 5px 8px !important;
}

/* Settngs & Help Page */
#mobile-settings button {
	display: none !important;
}
#mobile-settings div.col:last-child button {
	display: inline-block !important;
}
#mobile-settings .row {
	display: flex;
}
#mobile-settings .col {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}
#mobile-settings .dashicons {
	padding: 25px 10px;
	width: 55px;
	height: 75px;
	font-size: 25px;
	color: #606060;
}
#mobile-settings form input {
	width: 80px !important;
}

/* Comparison Chart */
#comparison-chart {
	width: 100%;
	max-width: 900px;
	background-color: transparent;
}
#comparison-chart th h1 {
	font-size: 38px;
	text-align: left;
	color: #29375B;
	margin: 10px 0;
	display: block;
	height: 25px;
}
#comparison-chart th h3 {
	text-align: right;
	text-transform: uppercase;
	font-size: 16px;
}
#comparison-chart td {
	border: 5px solid #DAE1E7;
	border-collapse: collapse;
	background-color: white;
}
#comparison-chart td.ms-dark-blue {
    background-color: #29375B;
}
#comparison-chart td.ms-orange {
    background-color: #dd6923;
    text-align: center;
}
#comparison-chart td.ms-dark-blue, #comparison-chart td.ms-orange {
	font-size: 18px;
	padding: 10px;
	font-weight: bold;
}
#comparison-chart td {
	padding: 10px;
}
#comparison-chart td h4 {
	font-size: 16px;
	font-weight: bold;
}
#comparison-chart td p {
	padding: 0;
	margin: 5px 0 !important;
	font-size: 16px;
}
td .dot {
	width: 20px;
	height: 20px;
	background: #d7d7d7;
	border-radius: 60%;
	margin: 0 auto;
}
td .dot.available {
	background: #dd6923;
}

/* CSS Manager Upsell */
.css-manager-ad-container {
	background-color: #F0F0F1;
	padding: 30px 0;
}
.css-manager-ad-container .probutton, .schedule_placeholder .probutton{
	color: #fff;
	background: #dd6923;
	padding: 12px 30px !important;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	border: none;
	font-size: 17px !important;
	margin-top: 15px;
	min-height: 46px !important;
	line-height: 1.8 !important;
	white-space: unset;
}
.schedule_placeholder .probutton {
	margin-top: 0!important;
	margin-bottom: 15px;
}
.css-manager-ad-container .dashicons.dashicons-external,
.schedule_placeholder .dashicons.dashicons-external{
	margin-top: 5px;
}
.css-manager-ad-container h1, .schedule_placeholder h1 {
	color: #29375b;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 600 !important;
}
.schedule_placeholder h1 {
    margin-bottom: 5px!important;
}
.css-manager-ad-container li,
.css-manager-ad-container p,
.schedule_placeholder p {
	font-size: 16px !important;
	font-style: normal !important;
	color: #3c434a !important;
}
.css-manager-ad-container img {
	width: 80%;
	margin: 5% auto;
	box-shadow: 0px 5px 5px 0px silver;
}

#loading-add-sample-slides-notice,
#add-first-slide-notice {
    height: 200px;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f1f1;
    font-size: 1.2em;
    background: #fff;
}

#loading-add-sample-slides-notice span {
    padding-left: 30px;
    background-repeat: no-repeat;
    background-size: contain;
}

@media only screen and (min-width : 320px) {
    .toolbar-separator, .toolbar-actions{
        padding: 0!important;
    }
    .ms-toolbar-button {
        padding-left: 4px!important;
        padding-right: 4px!important;
    }
}

@media (min-width : 768px) {
    .toolbar-separator, .toolbar-actions{
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .ms-toolbar-button {
        padding-left: .5rem!important;
        padding-right: .5rem!important;
    }
    /* Quick Start */
    .metaslider-welcome .ms-panel-container > div:nth-child(2) {
        padding-left: 1rem;
    }
    .metaslider-welcome .drag-drop .drag-drop-inside {
        width: 400px;
    }
    /* Dashboard */
    #slideshows-list {
        margin: 10px 30px;
    }
}

@media (min-width : 990px) {
    /* Quick Start */
    .metaslider_page_metaslider-start .ms-heading,
    .metaslider-pro_page_metaslider-start .ms-heading {
        font-size: 2em;
    }
    .metaslider-start {
        margin: 30px auto!important;
        max-width: 80%;
    }
}

@media (min-width : 1200px) {
    /* Edit slideshow */
    .ms-edit-slideshow {
        display: flex;
        justify-content: space-between;
    }
    .ms-edit-slideshow > .left {
        flex-grow: 1;
    }
}

@media (min-width : 1300px) {
    /* Edit slideshow */
    .ms-edit-slideshow > .right {
        min-width: 400px; 
        width: 400px;
    }
}

@media (min-width : 990px) and (max-width : 1024px), (max-width: 768px) {
    /* Edit slideshow */
    .metaslider-ui .metaslider-slides-container .slide .thumb-col-settings {
        flex-direction: column;
    }
    .metaslider-ui .metaslider-slides-container .metaslider-ui-inner.metaslider-slide-thumb {
        padding-right: 0;
        padding-bottom: 1rem;
    }
    .metaslider-ui .metaslider-slides-container .metaslider-ui-inner.metaslider-slide-thumb button {
        width: 100%;
    }
    .metaslider-ui .metaslider-slides-container .metaslider-ui-inner .thumb {
        width: 100%;
    }
}

@media (min-width : 990px) and (max-width : 1024px) {
    /* Edit slideshow */
    .metaslider-ui .metaslider-slides-container .metaslider-ui-inner .thumb {
        height: 340px;
    }
}

@media (max-width: 768px) {
    /* Edit slideshow */
    .metaslider-ui .metaslider-slides-container .metaslider-ui-inner .thumb {
        height: 240px;
    }
}

@media (max-width: 782px) {
    #metaslider-ui .tabs-content .default,
    #metaslider-ui table input,
    #metaslider-ui table textarea,
    #metaslider-ui table select {
        font-size: 16px;
    }
    #metaslider-ui .tabs-content .default {
        min-height: 40px;
        line-height: 32px;
        padding: 3px 10px;
    }
}admin/assets/css/settings.css000064400000000207151213255060012277 0ustar00.metaslider_page_metaslider-settings #ms-toolbar {
	@apply sticky;
}
.metaslider_page_metaslider-settings #wpfooter {
	@apply hidden;
}admin/assets/css/components/animations.css000064400000000577151213255060015000 0ustar00.pop-in-quick-top-enter {
	opacity: 0;
	transform: translateY(-8px);
}
.pop-in-quick-top-enter-active {
	transition: all .3s ease;
}
.pop-in-quick-top-leave-active {
	transition: none;
	opacity: 0;
	transform: translateY(0);
}
.settings-fade-enter-active, .settings-fade-leave-active {
  transition: opacity .3s ease;
}
.settings-fade-enter, .settings-fade-leave-to {
  opacity: 0;
}admin/assets/css/components/notifications.css000064400000000140151213255060015471 0ustar00/* Put the notifications on the very top */
.swal2-container {
	z-index: 99999999 !important;
}
admin/assets/css/components/forms.css000064400000000342151213255060013752 0ustar00.placeholder-gray-darker::placeholder {
    @apply text-gray-darker !important;
}
.metaslider-ui option:disabled {
    @apply text-gray italic !important;
}
.metaslider-ui select:not([class*="mr-"]) {
	@apply m-0 !important;
}admin/assets/css/components/wordpress.css000064400000000467151213255060014664 0ustar00div#wpcontent {
	@apply px-0 !important;
}

div#wpbody-content {
	@apply bg-gray-light pb-0;
}

div#wpbody-content > .notice {
	@apply m-6;
}

img {
	@apply border-none;
}

#adminmenu .wp-menu-image img {
	@apply inline border-0;
	box-sizing: initial;
}
.update-nag,
div#wpfooter {
	@apply hidden !important;
}
admin/assets/css/components/toolbar.css000064400000000573151213255060014274 0ustar00.ms-toolbar-button {
	@apply flex flex-col justify-end items-center h-full pb-4 px-2 leading-none text-gray-darker transition duration-300 ease-in no-underline !important;
	&:hover, &:active {
		@apply outline-none bg-gray-lighter text-black !important;
	}
	&:focus {
		@apply text-gray-darker !important;
	}
	&.disabled, &.disabled * {
		@apply text-gray-light !important;
	}
}
admin/assets/css/components/tour.css000064400000005315151213255060013622 0ustar00.metaslider-tour {
	@apply z-max max-w-xs !important;
}
.metaslider-tour .shepherd-content {
	@apply rounded shadow-lg !important;
}
.metaslider-tour header {
	@apply bg-orange rounded-t py-3 px-4 !important;
}
.metaslider-tour header h3 {
	@apply text-white text-lg m-0 !important;
}
.metaslider-tour .shepherd-text {
	@apply text-lg flex items-center p-4 bg-white text-black text-left !important;
}
.metaslider-tour .shepherd-text > * {
	@apply text-lg m-0 !important;
}

.shepherd-element.shepherd-has-title .shepherd-content header a.shepherd-cancel-link {
	@apply opacity-75 text-white text-sm border border-white h-6 w-6 p-0 text-center float-none absolute rounded-full;
	line-height: 21px !important;
	right: 11px !important;
	top: 9px !important;
}
.shepherd-element.shepherd-has-title .shepherd-content header a.shepherd-cancel-link::after {
	@apply absolute text-lg text-white;
	content: '\f335';
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	font-family: dashicons !important;
	left: 2px !important;
	top: 1px !important;
}

.metaslider-tour.shepherd-element-attached-top .shepherd-content:before {
	border-bottom-color: theme('colors.orange') !important;
}
.metaslider-tour.shepherd-element-attached-bottom.shepherd-element-attached-right .shepherd-content:before {
	top: 100%;
    left: 100%;
    margin-left: -50px;
    border-top-color: #fff;
}
.metaslider-tour.shepherd-element-attached-top.shepherd-element-attached-right .shepherd-content:before {
	top: auto !important;
	left: auto !important;
	right: 26px !important;
	border-left-color: transparent !important;
	border-top-color: transparent !important;
	border-right-color: transparent !important;
    border-bottom-color: theme('colors.orange') !important;
}

.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before,
.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before {
  display: block;
}

body.shepherd-active[data-shepherd-step='preview'],
body.shepherd-active[data-shepherd-step='add-slide'] {
	position: fixed;
	width: 100%;
}
body.shepherd-active[data-shepherd-step='preview'] #ms-form-settings > .container,
body.shepherd-active[data-shepherd-step='add-slide'] #ms-form-settings > .container {
	filter: blur(3px);
	pointer-events: none;
}admin/assets/css/upgrade.css000064400000007574151213255060012104 0ustar00
.metaslider_feat_table th {
    font-size: 1.1em;
}

.metaslider_feat_table th span {
    text-transform: uppercase;
}

.metaslider_feat_table th img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto -5px;
}

/*  COLUMN SETUP  */
.metaslider_col {
	display: block;
	float: left;
    margin: 1% 0 1% 1%;
}

.metaslider_col:first-child {
    margin-left: 0;
}

.metaslider_col .postbox {
    max-width: 600px;
}

.metaslider_half_width {
    width: 48%;
    max-width: 820px;
}

.other-plugin-title {
	text-decoration: none;
}

/* Added for the Image on Addons tab*/
img.addons {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 44px;
}

.metaslider_feature_cont {
	width: 54.5%;
}

.metaslider_plugin_family_cont {
	width: 44.5%;
}

.metaslider_feat_table, .metaslider_feat_th, .metaslider_feat_table td {
	border: 1px solid #e0e0e0;
	border-collapse: collapse;
	background-color: white;
}

.metaslider_installed_status,
.metaslider_feat_table p {
    color: #666666;
    padding: 0 10px;
    margin: 7px 0 5px;
    font-size: 16px;
    line-height: 1.1;
}

.metaslider_installed_status {
    padding: 10px;
    text-align: center;
}

.metaslider_feat_table h4 {
    font-size: 1.7em;
    line-height: 1;
	margin: 5px 0;
}

.metaslider_feat_table .dashicons {
    display: block;
    margin: auto;
	width: 25px;
	height: 25px;
	font-size: 25px;
	line-height: 1;
}

.metaslider_feat_table .dashicons-yes, .metaslider_feat_table .updraft-yes {
	color: green;
}

.metaslider_feat_table .dashicons-no-alt, .metaslider_feat_table .updraft-no {
	color: red;
}

.metaslider-premium-image {
    display: none;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
    color: #de6826;
    float: left;
    padding: 14px 8px;
    margin: 5px;
}


/* Pro Slider Ads */
.ms-panel-container-ad {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ms-panel-container-ad > * {
    flex-grow: 1;
}
.ms-panel-container-ad img {
    width: 100%;
}
.ms-panel-container-ad h2 {
    margin-top: 25px;
    font-size: 28px;
    line-height: 1.2;
    color: #29375b;
}
.ms-panel-container-ad p {
    font-size: 16px;
}
.ms-panel-container-ad .probutton {
    color: #fff;
    background: #dd6923;
    padding: 12px 30px !important;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-size: 17px !important;
    margin-top: 15px;
    min-height: 46px !important;
    line-height: 1.8 !important;
    white-space: unset;
}
.ms-panel-container-ad .probutton:hover,
.ms-panel-container-ad .probutton:focus,
.ms-panel-container-ad .probutton:active {
    background-color: #29375b;
    border: none;
}
.ms-panel-container-ad .dashicons-external {
    vertical-align: middle;
    margin-left: 3px;
    margin-top: -5px;
}

@media (min-width: 1025px) {
    /* Pro Slider Ads */
    .ms-panel-container-ad {
        padding: 30px 60px 30px 0;
    }
    .ms-panel-container-ad > * {
        flex-basis: 0;
    }
    .ms-panel-container-ad .left {
        max-width: 850px;
    }
}

@media (max-width: 1024px) {
    /* Pro Slider Ads */
    .ms-panel-container-ad {
        padding: 30px 0;
    }
    .ms-panel-container-ad > div {
       text-align: center;
    }
    .ms-panel-container-ad > div:not(.left) {
        padding: 0 40px;
    }
    .ms-panel-container-ad > div h2 {
        margin-top: 0;
    } 
}

@media screen and (max-width: 768px) {
    #wpcontent {
        padding: 0 10px;
    }
	.metaslider_col {
		margin: 1% 0 !important;
	}
	.metaslider_half_width {
		width: 100% !important;
    }
    .metaslider_feat_table h4 {
        margin-left: 10px;
    }
}

@media screen and (min-width: 720px) {
	.metaslider-premium-image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
	}
}admin/assets/css/notices.css000064400000005005151213255060012104 0ustar00/* CSS for adverts */

.updraft-ad-container {
    border-left-color: #FF6A3D!important;
    position: relative;
    padding-right: 130px!important;
}

.updraft-ad-container > h1 {
    color: #dd6923;
    font-weight: 700;
}

.updraft-ad-container > p {
    font-size: 110%;
}

.updraft_notice_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
	height: auto;
	overflow: hidden;
}

.updraft_advert_content_left {
	float:none;
	width:65px;
}

.updraft_advert_content_right {
	float:none;
	width:auto;
    overflow: hidden;
}

.updraft_advert_bottom {
	margin: 10px 0;
	padding: 10px;
	font-size: 140%;
	background-color: white;
	border-color: #E6DB55;
	border: 1px solid;
	border-radius: 4px;
}

.updraft-advert-dismiss {
    position: absolute;
    font-size: 13px;
    top: 5px;
    right: 10px;
}

h3.updraft_advert_heading {
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}

h4.updraft_advert_heading {
	margin-top: 2px !important;
	margin-bottom: 3px !important;
}

.updraft_center_content {
	text-align: center;
	margin-bottom:5px;
}

.updraft_notice_link {
	margin-left:10px;
}

.updraft_text_center {
	text-align: center;
}

.updraft_ad_meta {
    color: #c5c5c5;
    margin: 0;
    font-size: 0.9em;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.mega_list strong {
    font-weight: 700;
}

/* Discount ad */
.ml-discount-ad {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  border-left-color: #dd6923 !important;
}

.ml-discount-ad .ml-discount-ad-title {
  font-size: 1.3em;
  margin: 5px 0;
  line-height: 1.8em;
}

.ml-discount-ad .ml-discount-ad-title .ml-discount-ad-button {
  color: #fff;
  background: #dd6923;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.ml-discount-ad .ml-discount-ad-title .ml-discount-ad-button:focus,
.ml-discount-ad .ml-discount-ad-title .ml-discount-ad-button:active,
.ml-discount-ad .ml-discount-ad-title .ml-discount-ad-button:hover {
  color: #fff;
  background: #29375b;
  border: none;
}

.ml-discount-ad .updraft_advert_content_left {
  width: 70px;
}

@media screen and (min-width: 560px) {
	.updraft_advert_content_left {
		float: left;
	}
}

#wpadminbar #wp-admin-bar-ms-main-menu .ab-item #metaslider-main-menu-icon {
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: left center;
	width: 18px;
	height: 32px;
	float: left;
	margin-right: 5px;
}
admin/assets/css/gutenberg/ms-block-editor.css000064400000000233151213255070015414 0ustar00.wp-block-metaslider-slider.placeholder-loading + .wp-block-metaslider-slider {
	display: none;
}
.wp-block-metaslider-slider {
	transition: height 0.3s;
}admin/assets/css/gutenberg/editor-block.css000064400000001745151213255070015010 0ustar00.components-placeholder.ms-loader {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0;
	left: 0;
	background: rgba(243, 243, 244, 0.83);
	min-height: 50px;
}
.wp-block-metaslider-slider iframe {
	transition: height 0.6s;
	width:100%;
}

.ms-preview {
	position: relative;	
}

.ms-preview__trigger {
	position: absolute;
	top: 0; 
	right: 0;
	bottom: 0;
	left: 0;
}

.components-base-control.ms-loading .is-active.spinner {
	margin-top: -2px;
	float: none;
	margin-left: 0;
}

.ms-plugin-link {
	display: block;
	padding: 15px;
	border-top: 1px solid #e2e4e7;
	border-bottom: 1px solid #e2e4e7;
	margin-left: -16px;
	margin-right: -16px;
	margin-top: 17px;	
}

.ms-edit-current-slideshow {
    position: relative;
    float: right;
    margin-top: -11px;
    font-size: .95em;
}

.ms-edit-current-slideshow::before {
    content: "\f474";
	font-family: dashicons;
    position: absolute;
    left: -19px;
    transform: rotate(90deg);
    color: #CCC;
    font-size: 1.2em;
}

admin/assets/vendor/tipsy/jquery.tipsy.js000064400000023073151213255070014635 0ustar00// tipsy, facebook style tooltips for jquery
// version 1.0.0a
// (c) 2008-2010 jason frame [jason@onehackoranother.com]
// released under the MIT license

(function($) {
    
    function maybeCall(thing, ctx) {
        return (typeof thing == 'function') ? (thing.call(ctx)) : thing;
    };
    
    function isElementInDOM(ele) {
      while (ele = ele.parentNode) {
        if (ele == document) return true;
      }
      return false;
    };
    
    function Tipsy(element, options) {
        this.$element = $(element);
        this.options = options;
        this.enabled = true;
        this.fixTitle();
    };
    
    Tipsy.prototype = {
        show: function() {
            var title = this.getTitle();
            if (title && this.enabled) {
                var $tip = this.tip();
                
                $tip.find('.tipsy-inner')[this.options.html ? 'html' : 'text'](title);
                $tip[0].className = 'tipsy'; // reset classname in case of dynamic gravity
                $tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).prependTo(document.body);
                
                var pos = $.extend({}, this.$element.offset(), {
                    width: this.$element[0].offsetWidth,
                    height: this.$element[0].offsetHeight
                });
                
                var actualWidth = $tip[0].offsetWidth,
                    actualHeight = $tip[0].offsetHeight,
                    gravity = maybeCall(this.options.gravity, this.$element[0]);
                
                var tp;
                switch (gravity.charAt(0)) {
                    case 'n':
                        tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2};
                        break;
                    case 's':
                        tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2};
                        break;
                    case 'e':
                        tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset};
                        break;
                    case 'w':
                        tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset};
                        break;
                }
                
                if (gravity.length == 2) {
                    if (gravity.charAt(1) == 'w') {
                        tp.left = pos.left + pos.width / 2 - 15;
                    } else {
                        tp.left = pos.left + pos.width / 2 - actualWidth + 15;
                    }
                }
                
                $tip.css(tp).addClass('tipsy-' + gravity);
                $tip.find('.tipsy-arrow')[0].className = 'tipsy-arrow tipsy-arrow-' + gravity.charAt(0);
                if (this.options.className) {
                    $tip.addClass(maybeCall(this.options.className, this.$element[0]));
                }
                
                if (this.options.fade) {
                    $tip.stop().css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: this.options.opacity});
                } else {
                    $tip.css({visibility: 'visible', opacity: this.options.opacity});
                }
            }
        },
        
        hide: function() {
            if (this.options.fade) {
                this.tip().stop().fadeOut(function() { $(this).remove(); });
            } else {
                this.tip().remove();
            }
        },
        
        fixTitle: function() {
            var $e = this.$element;
            if ($e.attr('title') || typeof($e.attr('original-title')) != 'string') {
                $e.attr('original-title', $e.attr('title') || '').removeAttr('title');
            }
        },
        
        getTitle: function() {
            var title, $e = this.$element, o = this.options;
            this.fixTitle();
            var title, o = this.options;
            if (typeof o.title == 'string') {
                title = $e.attr(o.title == 'title' ? 'original-title' : o.title);
            } else if (typeof o.title == 'function') {
                title = o.title.call($e[0]);
            }
            title = ('' + title).replace(/(^\s*|\s*$)/, "");
            return title || o.fallback;
        },
        
        tip: function() {
            if (!this.$tip) {
                this.$tip = $('<div class="tipsy"></div>').html('<div class="tipsy-arrow"></div><div class="tipsy-inner"></div>');
                this.$tip.data('tipsy-pointee', this.$element[0]);
            }
            return this.$tip;
        },
        
        validate: function() {
            if (!this.$element[0].parentNode) {
                this.hide();
                this.$element = null;
                this.options = null;
            }
        },
        
        enable: function() { this.enabled = true; },
        disable: function() { this.enabled = false; },
        toggleEnabled: function() { this.enabled = !this.enabled; }
    };
    
    $.fn.tipsy = function(options) {
        
        if (options === true) {
            return this.data('tipsy');
        } else if (typeof options == 'string') {
            var tipsy = this.data('tipsy');
            if (tipsy) tipsy[options]();
            return this;
        }
        
        options = $.extend({}, $.fn.tipsy.defaults, options);
        
        function get(ele) {
            var tipsy = $.data(ele, 'tipsy');
            if (!tipsy) {
                tipsy = new Tipsy(ele, $.fn.tipsy.elementOptions(ele, options));
                $.data(ele, 'tipsy', tipsy);
            }
            return tipsy;
        }
        
        function enter() {
            var tipsy = get(this);
            tipsy.hoverState = 'in';
            if (options.delayIn == 0) {
                tipsy.show();
            } else {
                tipsy.fixTitle();
                setTimeout(function() { if (tipsy.hoverState == 'in') tipsy.show(); }, options.delayIn);
            }
        };
        
        function leave() {
            var tipsy = get(this);
            tipsy.hoverState = 'out';
            if (options.delayOut == 0) {
                tipsy.hide();
            } else {
                setTimeout(function() { if (tipsy.hoverState == 'out') tipsy.hide(); }, options.delayOut);
            }
        };
        
        if (!options.live) this.each(function() { get(this); });
        
        if (options.trigger != 'manual') {
            var binder   = options.live ? 'live' : 'bind',
                eventIn  = options.trigger == 'hover' ? 'mouseenter' : 'focus',
                eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur';
            this[binder](eventIn, enter)[binder](eventOut, leave);
        }
        
        return this;
        
    };
    
    $.fn.tipsy.defaults = {
        className: null,
        delayIn: 0,
        delayOut: 0,
        fade: false,
        fallback: '',
        gravity: 'n',
        html: false,
        live: false,
        offset: 0,
        opacity: 0.8,
        title: 'title',
        trigger: 'hover'
    };
    
    $.fn.tipsy.revalidate = function() {
      $('.tipsy').each(function() {
        var pointee = $.data(this, 'tipsy-pointee');
        if (!pointee || !isElementInDOM(pointee)) {
          $(this).remove();
        }
      });
    };
    
    // Overwrite this method to provide options on a per-element basis.
    // For example, you could store the gravity in a 'tipsy-gravity' attribute:
    // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' });
    // (remember - do not modify 'options' in place!)
    $.fn.tipsy.elementOptions = function(ele, options) {
        return $.metadata ? $.extend({}, options, $(ele).metadata()) : options;
    };
    
    $.fn.tipsy.autoNS = function() {
        return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n';
    };
    
    $.fn.tipsy.autoWE = function() {
        return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w';
    };
    
    /**
     * yields a closure of the supplied parameters, producing a function that takes
     * no arguments and is suitable for use as an autogravity function like so:
     *
     * @param margin (int) - distance from the viewable region edge that an
     *        element should be before setting its tooltip's gravity to be away
     *        from that edge.
     * @param prefer (string, e.g. 'n', 'sw', 'w') - the direction to prefer
     *        if there are no viewable region edges effecting the tooltip's
     *        gravity. It will try to vary from this minimally, for example,
     *        if 'sw' is preferred and an element is near the right viewable 
     *        region edge, but not the top edge, it will set the gravity for
     *        that element's tooltip to be 'se', preserving the southern
     *        component.
     */
     $.fn.tipsy.autoBounds = function(margin, prefer) {
		return function() {
			var dir = {ns: prefer[0], ew: (prefer.length > 1 ? prefer[1] : false)},
			    boundTop = $(document).scrollTop() + margin,
			    boundLeft = $(document).scrollLeft() + margin,
			    $this = $(this);

			if ($this.offset().top < boundTop) dir.ns = 'n';
			if ($this.offset().left < boundLeft) dir.ew = 'w';
			if ($(window).width() + $(document).scrollLeft() - $this.offset().left < margin) dir.ew = 'e';
			if ($(window).height() + $(document).scrollTop() - $this.offset().top < margin) dir.ns = 's';

			return dir.ns + (dir.ew ? dir.ew : '');
		}
	};
    
})(jQuery);
admin/assets/vendor/tipsy/tipsy.css000064400000004166151213255070013475 0ustar00.tipsy { font-size: 12px; position: absolute; padding: 5px; z-index: 100000; }
  .tipsy-inner { background-color: #000; color: #FFF; max-width: 200px; padding: 5px 8px 4px 8px; text-align: center; }

  /* Rounded corners */
  .tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
  
  /* Uncomment for shadow */
  /*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/
  
  .tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; }
  
  /* Rules to colour arrows */
  .tipsy-arrow-n { border-bottom-color: #000; }
  .tipsy-arrow-s { border-top-color: #000; }
  .tipsy-arrow-e { border-left-color: #000; }
  .tipsy-arrow-w { border-right-color: #000; }
  
	.tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; }
    .tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
    .tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none;  border-left-color: transparent; border-right-color: transparent;}
  .tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
    .tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
    .tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
  .tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
  .tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }
admin/assets/vendor/tinymce/js/tinymce/plugins/table/plugin.min.js000064400000135336151213255070021371 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(o=l=e,(n=String).prototype.isPrototypeOf(o)||(null===(r=l.constructor)||void 0===r?void 0:r.name)===n.name)?"string":t;var o,l,n,r})(t)===e,o=e=>t=>typeof t===e,l=t("string"),n=t("array"),r=o("boolean"),a=(void 0,e=>undefined===e);const s=e=>!(e=>null==e)(e),c=o("function"),i=o("number"),m=()=>{},d=e=>()=>e,u=e=>e,p=(e,t)=>e===t;function b(e,...t){return(...o)=>{const l=t.concat(o);return e.apply(null,l)}}const g=e=>{e()},h=d(!1),f=d(!0);class y{constructor(e,t){this.tag=e,this.value=t}static some(e){return new y(!0,e)}static none(){return y.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?y.some(e(this.value)):y.none()}bind(e){return this.tag?e(this.value):y.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:y.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return s(e)?y.some(e):y.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}y.singletonNone=new y(!1);const w=Object.keys,S=Object.hasOwnProperty,C=(e,t)=>{const o=w(e);for(let l=0,n=o.length;l<n;l++){const n=o[l];t(e[n],n)}},v=(e,t)=>{const o={};var l;return((e,t,o,l)=>{C(e,((e,n)=>{(t(e,n)?o:l)(e,n)}))})(e,t,(l=o,(e,t)=>{l[t]=e}),m),o},T=e=>w(e).length,x=(e,t)=>A(e,t)?y.from(e[t]):y.none(),A=(e,t)=>S.call(e,t),R=(e,t)=>A(e,t)&&void 0!==e[t]&&null!==e[t],O=Array.prototype.indexOf,_=Array.prototype.push,D=(e,t)=>((e,t)=>O.call(e,t))(e,t)>-1,N=(e,t)=>{for(let o=0,l=e.length;o<l;o++)if(t(e[o],o))return!0;return!1},I=(e,t)=>{const o=[];for(let l=0;l<e;l++)o.push(t(l));return o},M=(e,t)=>{const o=e.length,l=new Array(o);for(let n=0;n<o;n++){const o=e[n];l[n]=t(o,n)}return l},P=(e,t)=>{for(let o=0,l=e.length;o<l;o++)t(e[o],o)},k=(e,t)=>{const o=[];for(let l=0,n=e.length;l<n;l++){const n=e[l];t(n,l)&&o.push(n)}return o},E=(e,t,o)=>(P(e,((e,l)=>{o=t(o,e,l)})),o),B=(e,t)=>((e,t,o)=>{for(let l=0,n=e.length;l<n;l++){const n=e[l];if(t(n,l))return y.some(n);if(o(n,l))break}return y.none()})(e,t,h),F=(e,t)=>(e=>{const t=[];for(let o=0,l=e.length;o<l;++o){if(!n(e[o]))throw new Error("Arr.flatten item "+o+" was not an array, input: "+e);_.apply(t,e[o])}return t})(M(e,t)),q=(e,t)=>{for(let o=0,l=e.length;o<l;++o)if(!0!==t(e[o],o))return!1;return!0},L=(e,t)=>t>=0&&t<e.length?y.some(e[t]):y.none(),H=(e,t)=>{for(let o=0;o<e.length;o++){const l=t(e[o],o);if(l.isSome())return l}return y.none()},j=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},V={fromHtml:(e,t)=>{const o=(t||document).createElement("div");if(o.innerHTML=e,!o.hasChildNodes()||o.childNodes.length>1){const t="HTML does not have a single root node";throw console.error(t,e),new Error(t)}return j(o.childNodes[0])},fromTag:(e,t)=>{const o=(t||document).createElement(e);return j(o)},fromText:(e,t)=>{const o=(t||document).createTextNode(e);return j(o)},fromDom:j,fromPoint:(e,t,o)=>y.from(e.dom.elementFromPoint(t,o)).map(j)},$=(e,t)=>{const o=e.dom;if(1!==o.nodeType)return!1;{const e=o;if(void 0!==e.matches)return e.matches(t);if(void 0!==e.msMatchesSelector)return e.msMatchesSelector(t);if(void 0!==e.webkitMatchesSelector)return e.webkitMatchesSelector(t);if(void 0!==e.mozMatchesSelector)return e.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")}},W=e=>1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType||0===e.childElementCount,z=(e,t)=>e.dom===t.dom,U=$;"undefined"!=typeof window?window:Function("return this;")();const G=e=>e.dom.nodeName.toLowerCase(),K=e=>e.dom.nodeType,J=e=>t=>K(t)===e,Q=J(1),X=J(3),Y=J(9),Z=J(11),ee=e=>t=>Q(t)&&G(t)===e,te=e=>Y(e)?e:V.fromDom(e.dom.ownerDocument),oe=e=>y.from(e.dom.parentNode).map(V.fromDom),le=e=>y.from(e.dom.nextSibling).map(V.fromDom),ne=e=>M(e.dom.childNodes,V.fromDom),re=c(Element.prototype.attachShadow)&&c(Node.prototype.getRootNode)?e=>V.fromDom(e.dom.getRootNode()):te,ae=e=>V.fromDom(e.dom.host),se=e=>{const t=X(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;const o=t.ownerDocument;return(e=>{const t=re(e);return Z(o=t)&&s(o.dom.host)?y.some(t):y.none();var o})(V.fromDom(t)).fold((()=>o.body.contains(t)),(l=se,n=ae,e=>l(n(e))));var l,n};var ce=(e,t,o,l,n)=>e(o,l)?y.some(o):c(n)&&n(o)?y.none():t(o,l,n);const ie=(e,t,o)=>{let l=e.dom;const n=c(o)?o:h;for(;l.parentNode;){l=l.parentNode;const e=V.fromDom(l);if(t(e))return y.some(e);if(n(e))break}return y.none()},me=(e,t,o)=>ie(e,(e=>$(e,t)),o),de=(e,t)=>((e,o)=>B(e.dom.childNodes,(e=>{return o=V.fromDom(e),$(o,t);var o})).map(V.fromDom))(e),ue=(e,t)=>((e,t)=>{const o=void 0===t?document:t.dom;return W(o)?y.none():y.from(o.querySelector(e)).map(V.fromDom)})(t,e),pe=(e,t,o)=>ce(((e,t)=>$(e,t)),me,e,t,o),be=(e,t=!1)=>{return se(e)?e.dom.isContentEditable:(o=e,pe(o,"[contenteditable]")).fold(d(t),(e=>"true"===ge(e)));var o},ge=e=>e.dom.contentEditable,he=e=>t=>z(t,(e=>V.fromDom(e.getBody()))(e)),fe=e=>/^\d+(\.\d+)?$/.test(e)?e+"px":e,ye=e=>V.fromDom(e.selection.getStart()),we=(e,t)=>{let o=[];return P(ne(e),(e=>{t(e)&&(o=o.concat([e])),o=o.concat(we(e,t))})),o},Se=(e,t)=>((e,o)=>k(ne(e),(e=>$(e,t))))(e),Ce=(e,t)=>((e,t)=>{const o=void 0===t?document:t.dom;return W(o)?[]:M(o.querySelectorAll(e),V.fromDom)})(t,e),ve=(e,t,o)=>{if(!(l(o)||r(o)||i(o)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",o,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,o+"")},Te=(e,t)=>{const o=e.dom.getAttribute(t);return null===o?void 0:o},xe=(e,t)=>y.from(Te(e,t)),Ae=(e,t)=>{e.dom.removeAttribute(t)},Re=(e,t,o=p)=>e.exists((e=>o(e,t))),Oe=(e,t,o)=>e.isSome()&&t.isSome()?y.some(o(e.getOrDie(),t.getOrDie())):y.none(),_e=(e,t)=>((e,t,o)=>""===t||e.length>=t.length&&e.substr(0,0+t.length)===t)(e,t),De=(Ne=/^\s+|\s+$/g,e=>e.replace(Ne,""));var Ne;const Ie=e=>e.length>0,Me=(e,t=10)=>{const o=parseInt(e,t);return isNaN(o)?y.none():y.some(o)},Pe=e=>void 0!==e.style&&c(e.style.getPropertyValue),ke=(e,t)=>{const o=e.dom,l=window.getComputedStyle(o).getPropertyValue(t);return""!==l||se(e)?l:Ee(o,t)},Ee=(e,t)=>Pe(e)?e.style.getPropertyValue(t):"",Be=(e,t)=>{const o=e.dom,l=Ee(o,t);return y.from(l).filter((e=>e.length>0))},Fe=(e,t,o=0)=>xe(e,t).map((e=>parseInt(e,10))).getOr(o),qe=(e,t)=>Le(e,t,f),Le=(e,t,o)=>F(ne(e),(e=>$(e,t)?o(e)?[e]:[]:Le(e,t,o))),He=["tfoot","thead","tbody","colgroup"],je=(e,t,o)=>({element:e,rowspan:t,colspan:o}),Ve=(e,t,o)=>({element:e,cells:t,section:o}),$e=(e,t)=>pe(e,"table",t),We=e=>qe(e,"tr"),ze=e=>$e(e).fold(d([]),(e=>Se(e,"colgroup"))),Ue=e=>oe(e).map((e=>{const t=G(e);return(e=>D(He,e))(t)?t:"tbody"})).getOr("tbody"),Ge=e=>xe(e,"data-snooker-locked-cols").bind((e=>y.from(e.match(/\d+/g)))).map((e=>((e,t)=>{const o={};for(let l=0,n=e.length;l<n;l++){const n=e[l];o[String(n)]=t(n,l)}return o})(e,f))),Ke=(e,t)=>e+","+t,Je=e=>{const t={},o=[];var l;const n=(l=e,L(l,0)).map((e=>e.element)).bind($e).bind(Ge).getOr({});let r=0,a=0,s=0;const{pass:c,fail:i}=((e,t)=>{const o=[],l=[];for(let t=0,r=e.length;t<r;t++){const r=e[t];(n=r,"colgroup"===n.section?o:l).push(r)}var n;return{pass:o,fail:l}})(e);P(i,(e=>{const l=[];P(e.cells,(e=>{let o=0;for(;void 0!==t[Ke(s,o)];)o++;const r=R(n,o.toString()),c=((e,t,o,l,n,r)=>({element:e,rowspan:t,colspan:o,row:l,column:n,isLocked:r}))(e.element,e.rowspan,e.colspan,s,o,r);for(let l=0;l<e.colspan;l++)for(let n=0;n<e.rowspan;n++){const e=o+l,r=Ke(s+n,e);t[r]=c,a=Math.max(a,e+1)}l.push(c)})),r++,o.push(Ve(e.element,l,e.section)),s++}));const{columns:m,colgroups:d}=(e=>L(e,e.length-1))(c).map((e=>{const t=(e=>{const t={};let o=0;return P(e.cells,(e=>{const l=e.colspan;I(l,(n=>{const r=o+n;t[r]=((e,t,o)=>({element:e,colspan:t,column:o}))(e.element,l,r)})),o+=l})),t})(e),o=((e,t)=>({element:e,columns:t}))(e.element,((e,t)=>{const o=[];return C(e,((e,l)=>{o.push(t(e,l))})),o})(t,u));return{colgroups:[o],columns:t}})).getOrThunk((()=>({colgroups:[],columns:{}}))),p=((e,t)=>({rows:e,columns:t}))(r,a);return{grid:p,access:t,all:o,columns:m,colgroups:d}},Qe=e=>{const t=(e=>{const t=We(e);return((e,t)=>M(e,(e=>{if("colgroup"===G(e)){const t=M((e=>$(e,"colgroup")?Se(e,"col"):F(ze(e),(e=>Se(e,"col"))))(e),(e=>{const t=Fe(e,"span",1);return je(e,1,t)}));return Ve(e,t,"colgroup")}{const o=M((e=>qe(e,"th,td"))(e),(e=>{const t=Fe(e,"rowspan",1),o=Fe(e,"colspan",1);return je(e,t,o)}));return Ve(e,o,t(e))}})))([...ze(e),...t],Ue)})(e);return Je(t)},Xe=(e,t,o)=>y.from(e.access[Ke(t,o)]),Ye=(e,t,o)=>{const l=((e,t)=>{const o=F(e.all,(e=>e.cells));return k(o,t)})(e,(e=>o(t,e.element)));return l.length>0?y.some(l[0]):y.none()},Ze=(e,t)=>y.from(e.columns[t]);var et=tinymce.util.Tools.resolve("tinymce.util.Tools");const tt=(e,t,o)=>{const l=e.select("td,th",t);let n;for(let t=0;t<l.length;t++){const r=e.getStyle(l[t],o);if(a(n)&&(n=r),n!==r)return""}return n},ot=(e,t,o)=>{et.each("left center right".split(" "),(l=>{l!==o&&e.formatter.remove("align"+l,{},t)})),o&&e.formatter.apply("align"+o,{},t)},lt=(e,t,o)=>{e.dispatch("TableModified",{...o,table:t})},nt=(e,t,o)=>((e,t)=>(e=>{const t=parseFloat(e);return isNaN(t)?y.none():y.some(t)})(e).getOr(t))(ke(e,t),o),rt=e=>((e,t)=>{const o=e.dom,l=o.getBoundingClientRect().width||o.offsetWidth;return"border-box"===t?l:((e,t,o,l)=>t-nt(e,`padding-${o}`,0)-nt(e,`padding-${l}`,0)-nt(e,`border-${o}-width`,0)-nt(e,`border-${l}-width`,0))(e,l,"left","right")})(e,"content-box");var at=tinymce.util.Tools.resolve("tinymce.Env");const st=I(5,(e=>{const t=`${e+1}px`;return{title:t,value:t}})),ct=M(["Solid","Dotted","Dashed","Double","Groove","Ridge","Inset","Outset","None","Hidden"],(e=>({title:e,value:e.toLowerCase()}))),it="100%",mt=e=>{var t;const o=e.dom,l=null!==(t=o.getParent(e.selection.getStart(),o.isBlock))&&void 0!==t?t:e.getBody();return rt(V.fromDom(l))+"px"},dt=e=>t=>t.options.get(e),ut=dt("table_sizing_mode"),pt=dt("table_border_widths"),bt=dt("table_border_styles"),gt=dt("table_cell_advtab"),ht=dt("table_row_advtab"),ft=dt("table_advtab"),yt=dt("table_appearance_options"),wt=dt("table_grid"),St=dt("table_style_by_css"),Ct=dt("table_cell_class_list"),vt=dt("table_row_class_list"),Tt=dt("table_class_list"),xt=dt("table_toolbar"),At=dt("table_background_color_map"),Rt=dt("table_border_color_map"),Ot=e=>"fixed"===ut(e),_t=e=>"responsive"===ut(e),Dt=e=>{const t=e.options,o=t.get("table_default_styles");return t.isSet("table_default_styles")?o:((e,t)=>_t(e)||!St(e)?t:Ot(e)?{...t,width:mt(e)}:{...t,width:it})(e,o)},Nt=e=>{const t=e.options,o=t.get("table_default_attributes");return t.isSet("table_default_attributes")?o:((e,t)=>_t(e)||St(e)?t:Ot(e)?{...t,width:mt(e)}:{...t,width:it})(e,o)},It=(e,t)=>t.column>=e.startCol&&t.column+t.colspan-1<=e.finishCol&&t.row>=e.startRow&&t.row+t.rowspan-1<=e.finishRow,Mt=(e,t,o)=>((e,t,o)=>{const l=Ye(e,t,z),n=Ye(e,o,z);return l.bind((e=>n.map((t=>{return o=e,l=t,{startRow:Math.min(o.row,l.row),startCol:Math.min(o.column,l.column),finishRow:Math.max(o.row+o.rowspan-1,l.row+l.rowspan-1),finishCol:Math.max(o.column+o.colspan-1,l.column+l.colspan-1)};var o,l}))))})(e,t,o).bind((t=>((e,t)=>{let o=!0;const l=b(It,t);for(let n=t.startRow;n<=t.finishRow;n++)for(let r=t.startCol;r<=t.finishCol;r++)o=o&&Xe(e,n,r).exists(l);return o?y.some(t):y.none()})(e,t))),Pt=Qe,kt=(e,t)=>{oe(e).each((o=>{o.dom.insertBefore(t.dom,e.dom)}))},Et=(e,t)=>{le(e).fold((()=>{oe(e).each((e=>{Bt(e,t)}))}),(e=>{kt(e,t)}))},Bt=(e,t)=>{e.dom.appendChild(t.dom)},Ft=(e,t)=>{P(t,((o,l)=>{const n=0===l?e:t[l-1];Et(n,o)}))},qt=e=>{const t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)},Lt=((e,t)=>{const o=t=>e(t)?y.from(t.dom.nodeValue):y.none();return{get:t=>{if(!e(t))throw new Error("Can only get text value of a text node");return o(t).getOr("")},getOption:o,set:(t,o)=>{if(!e(t))throw new Error("Can only set raw text value of a text node");t.dom.nodeValue=o}}})(X);var Ht=["body","p","div","article","aside","figcaption","figure","footer","header","nav","section","ol","ul","li","table","thead","tbody","tfoot","caption","tr","td","th","h1","h2","h3","h4","h5","h6","blockquote","pre","address"];const jt=(e,t,o,l)=>{const n=t(e,o);return r=(o,l)=>{const n=t(e,l);return Vt(e,o,n)},a=n,((e,t)=>{for(let o=e.length-1;o>=0;o--)t(e[o],o)})(l,((e,t)=>{a=r(a,e)})),a;var r,a},Vt=(e,t,o)=>t.bind((t=>o.filter(b(e.eq,t)))),$t={up:d({selector:me,closest:pe,predicate:ie,all:(e,t)=>{const o=c(t)?t:h;let l=e.dom;const n=[];for(;null!==l.parentNode&&void 0!==l.parentNode;){const e=l.parentNode,t=V.fromDom(e);if(n.push(t),!0===o(t))break;l=e}return n}}),down:d({selector:Ce,predicate:we}),styles:d({get:ke,getRaw:Be,set:(e,t,o)=>{((e,t,o)=>{if(!l(o))throw console.error("Invalid call to CSS.set. Property ",t,":: Value ",o,":: Element ",e),new Error("CSS value must be a string: "+o);Pe(e)&&e.style.setProperty(t,o)})(e.dom,t,o)},remove:(e,t)=>{((e,t)=>{Pe(e)&&e.style.removeProperty(t)})(e.dom,t),Re(xe(e,"style").map(De),"")&&Ae(e,"style")}}),attrs:d({get:Te,set:(e,t,o)=>{ve(e.dom,t,o)},remove:Ae,copyTo:(e,t)=>{((e,t)=>{const o=e.dom;C(t,((e,t)=>{ve(o,t,e)}))})(t,E(e.dom.attributes,((e,t)=>(e[t.name]=t.value,e)),{}))}}),insert:d({before:kt,after:Et,afterAll:Ft,append:Bt,appendAll:(e,t)=>{P(t,(t=>{Bt(e,t)}))},prepend:(e,t)=>{(e=>((e,t)=>{const o=e.dom.childNodes;return y.from(o[0]).map(V.fromDom)})(e))(e).fold((()=>{Bt(e,t)}),(o=>{e.dom.insertBefore(t.dom,o.dom)}))},wrap:(e,t)=>{kt(e,t),Bt(t,e)}}),remove:d({unwrap:e=>{const t=ne(e);t.length>0&&Ft(e,t),qt(e)},remove:qt}),create:d({nu:V.fromTag,clone:e=>V.fromDom(e.dom.cloneNode(!1)),text:V.fromText}),query:d({comparePosition:(e,t)=>e.dom.compareDocumentPosition(t.dom),prevSibling:e=>y.from(e.dom.previousSibling).map(V.fromDom),nextSibling:le}),property:d({children:ne,name:G,parent:oe,document:e=>te(e).dom,isText:X,isComment:e=>8===K(e)||"#comment"===G(e),isElement:Q,isSpecial:e=>{const t=G(e);return D(["script","noscript","iframe","noframes","noembed","title","style","textarea","xmp"],t)},getLanguage:e=>Q(e)?xe(e,"lang"):y.none(),getText:e=>Lt.get(e),setText:(e,t)=>Lt.set(e,t),isBoundary:e=>!!Q(e)&&("body"===G(e)||D(Ht,G(e))),isEmptyTag:e=>!!Q(e)&&D(["br","img","hr","input"],G(e)),isNonEditable:e=>Q(e)&&"false"===Te(e,"contenteditable")}),eq:z,is:U},Wt=e=>me(e,"table"),zt=(e,t,o)=>ue(e,t).bind((t=>ue(e,o).bind((e=>{return(o=Wt,l=[t,e],((e,t,o)=>o.length>0?((e,t,o,l)=>l(e,t,o[0],o.slice(1)))(e,t,o,jt):y.none())($t,((e,t)=>o(t)),l)).map((o=>({first:t,last:e,table:o})));var o,l})))),Ut=e=>M(e,V.fromDom),Gt="data-mce-selected",Kt="data-mce-first-selected",Jt="data-mce-last-selected",Qt={selected:Gt,selectedSelector:"td["+Gt+"],th["+Gt+"]",firstSelected:Kt,firstSelectedSelector:"td["+Kt+"],th["+Kt+"]",lastSelected:Jt,lastSelectedSelector:"td["+Jt+"],th["+Jt+"]"},Xt=e=>(t,o)=>{const l=G(t),n="col"===l||"colgroup"===l?$e(r=t).bind((e=>((e,t)=>((e,t)=>{const o=Ce(e,t);return o.length>0?y.some(o):y.none()})(e,t))(e,Qt.firstSelectedSelector))).fold(d(r),(e=>e[0])):t;var r;return pe(n,e,o)},Yt=Xt("th,td,caption"),Zt=Xt("th,td"),eo=e=>Ut(e.model.table.getSelectedCells()),to=(e,t)=>{const o=Zt(e),l=o.bind((e=>$e(e))).map((e=>We(e)));return Oe(o,l,((e,o)=>k(o,(o=>N(Ut(o.dom.cells),(o=>"1"===Te(o,t)||z(o,e))))))).getOr([])},oo=[{text:"None",value:""},{text:"Top",value:"top"},{text:"Middle",value:"middle"},{text:"Bottom",value:"bottom"}],lo=/^#?([a-f\d])([a-f\d])([a-f\d])$/i,no=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,ro=e=>{return(t=e,"#",_e(t,"#")?((e,t)=>e.substring(1))(t):t).toUpperCase();var t},ao=e=>{const t=e.toString(16);return(1===t.length?"0"+t:t).toUpperCase()},so=e=>{return t=ao(e.red)+ao(e.green)+ao(e.blue),{value:ro(t)};var t},co=/^\s*rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)\s*$/i,io=/^\s*rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?(?:\.\d+)?)\s*\)\s*$/i,mo=(e,t,o,l)=>({red:e,green:t,blue:o,alpha:l}),uo=(e,t,o,l)=>{const n=parseInt(e,10),r=parseInt(t,10),a=parseInt(o,10),s=parseFloat(l);return mo(n,r,a,s)},po=e=>{if("transparent"===e)return y.some(mo(0,0,0,0));const t=co.exec(e);if(null!==t)return y.some(uo(t[1],t[2],t[3],"1"));const o=io.exec(e);return null!==o?y.some(uo(o[1],o[2],o[3],o[4])):y.none()},bo=e=>{let t=e;return{get:()=>t,set:e=>{t=e}}},go=(e,t,o)=>l=>{const n=(e=>{const t=bo(y.none()),o=()=>t.get().each(e);return{clear:()=>{o(),t.set(y.none())},isSet:()=>t.get().isSome(),get:()=>t.get(),set:e=>{o(),t.set(y.some(e))}}})((e=>e.unbind())),r=!Ie(o),a=()=>{const a=eo(e),s=l=>e.formatter.match(t,{value:o},l.dom,r);r?(l.setActive(!N(a,s)),n.set(e.formatter.formatChanged(t,(e=>l.setActive(!e)),!0))):(l.setActive(q(a,s)),n.set(e.formatter.formatChanged(t,l.setActive,!1,{value:o})))};return e.initialized?a():e.on("init",a),n.clear},ho=e=>R(e,"menu"),fo=e=>M(e,(e=>{const t=e.text||e.title||"";return ho(e)?{text:t,items:fo(e.menu)}:{text:t,value:e.value}})),yo=(e,t,o,l)=>M(t,(t=>{const n=t.text||t.title;return ho(t)?{type:"nestedmenuitem",text:n,getSubmenuItems:()=>yo(e,t.menu,o,l)}:{text:n,type:"togglemenuitem",onAction:()=>l(t.value),onSetup:go(e,o,t.value)}})),wo=(e,t)=>o=>{e.execCommand("mceTableApplyCellStyle",!1,{[t]:o})},So=e=>F(e,(e=>ho(e)?[{...e,menu:So(e.menu)}]:Ie(e.value)?[e]:[])),Co=(e,t,o,l)=>n=>n(yo(e,t,o,l)),vo=(e,t,o)=>{const l=M(t,(e=>{return{text:e.title,value:"#"+(o=e.value,(t=o,(e=>lo.test(e)||no.test(e))(t)?y.some({value:ro(t)}):y.none()).orThunk((()=>po(o).map(so))).getOrThunk((()=>{const e=document.createElement("canvas");e.height=1,e.width=1;const t=e.getContext("2d");t.clearRect(0,0,e.width,e.height),t.fillStyle="#FFFFFF",t.fillStyle=o,t.fillRect(0,0,1,1);const l=t.getImageData(0,0,1,1).data,n=l[0],r=l[1],a=l[2],s=l[3];return so(mo(n,r,a,s))}))).value,type:"choiceitem"};var t,o}));return[{type:"fancymenuitem",fancytype:"colorswatch",initData:{colors:l.length>0?l:void 0,allowCustomColors:!1},onAction:t=>{const l="remove"===t.value?"":t.value;e.execCommand("mceTableApplyCellStyle",!1,{[o]:l})}}]},To=e=>()=>{const t="header"===e.queryCommandValue("mceTableRowType")?"body":"header";e.execCommand("mceTableRowType",!1,{type:t})},xo=e=>()=>{const t="th"===e.queryCommandValue("mceTableColType")?"td":"th";e.execCommand("mceTableColType",!1,{type:t})},Ao=[{name:"width",type:"input",label:"Width"},{name:"height",type:"input",label:"Height"},{name:"celltype",type:"listbox",label:"Cell type",items:[{text:"Cell",value:"td"},{text:"Header cell",value:"th"}]},{name:"scope",type:"listbox",label:"Scope",items:[{text:"None",value:""},{text:"Row",value:"row"},{text:"Column",value:"col"},{text:"Row group",value:"rowgroup"},{text:"Column group",value:"colgroup"}]},{name:"halign",type:"listbox",label:"Horizontal align",items:[{text:"None",value:""},{text:"Left",value:"left"},{text:"Center",value:"center"},{text:"Right",value:"right"}]},{name:"valign",type:"listbox",label:"Vertical align",items:oo}],Ro=e=>Ao.concat((e=>{const t=fo(Ct(e));return t.length>0?y.some({name:"class",type:"listbox",label:"Class",items:t}):y.none()})(e).toArray()),Oo=(e,t)=>{const o=[{name:"borderstyle",type:"listbox",label:"Border style",items:[{text:"Select...",value:""}].concat(fo(bt(e)))},{name:"bordercolor",type:"colorinput",label:"Border color"},{name:"backgroundcolor",type:"colorinput",label:"Background color"}];return{title:"Advanced",name:"advanced",items:"cell"===t?[{name:"borderwidth",type:"input",label:"Border width"}].concat(o):o}},_o=(e,t)=>{const o=e.dom;return{setAttrib:(e,l)=>{o.setAttrib(t,e,l)},setStyle:(e,l)=>{o.setStyle(t,e,l)},setFormat:(o,l)=>{""===l?e.formatter.remove(o,{value:null},t,!0):e.formatter.apply(o,{value:l},t)}}},Do=ee("th"),No=(e,t)=>e&&t?"sectionCells":e?"section":"cells",Io=e=>{const t=M(e,(e=>(e=>{const t="thead"===e.section,o=Re((e=>{const t=k(e,(e=>Do(e.element)));return 0===t.length?y.some("td"):t.length===e.length?y.some("th"):y.none()})(e.cells),"th");return"tfoot"===e.section?{type:"footer"}:t||o?{type:"header",subType:No(t,o)}:{type:"body"}})(e).type)),o=D(t,"header"),l=D(t,"footer");if(o||l){const e=D(t,"body");return!o||e||l?o||e||!l?y.none():y.some("footer"):y.some("header")}return y.some("body")},Mo=(e,t)=>H(e.all,(e=>B(e.cells,(e=>z(t,e.element))))),Po=(e,t,o)=>{const l=(e=>{const t=[],o=e=>{t.push(e)};for(let t=0;t<e.length;t++)e[t].each(o);return t})(M(t.selection,(t=>{return(l=t,((e,t,o=h)=>o(t)?y.none():D(e,G(t))?y.some(t):me(t,e.join(","),(e=>$(e,"table")||o(e))))(["td","th"],l,n)).bind((t=>Mo(e,t))).filter(o);var l,n})));return n=l,l.length>0?y.some(n):y.none();var n},ko=(e,t)=>Po(e,t,f),Eo=(e,t)=>q(t,(t=>((e,t)=>Mo(e,t).exists((e=>!e.isLocked)))(e,t))),Bo=(e,t)=>((e,t)=>t.mergable)(0,t).filter((t=>Eo(e,t.cells))),Fo=(e,t)=>((e,t)=>t.unmergable)(0,t).filter((t=>Eo(e,t))),qo=((e=>{if(!n(e))throw new Error("cases must be an array");if(0===e.length)throw new Error("there must be at least one case");const t=[],o={};P(e,((l,r)=>{const a=w(l);if(1!==a.length)throw new Error("one and only one name per case");const s=a[0],c=l[s];if(void 0!==o[s])throw new Error("duplicate key detected:"+s);if("cata"===s)throw new Error("cannot have a case named cata (sorry)");if(!n(c))throw new Error("case arguments must be an array");t.push(s),o[s]=(...o)=>{const l=o.length;if(l!==c.length)throw new Error("Wrong number of arguments to case "+s+". Expected "+c.length+" ("+c+"), got "+l);return{fold:(...t)=>{if(t.length!==e.length)throw new Error("Wrong number of arguments to fold. Expected "+e.length+", got "+t.length);return t[r].apply(null,o)},match:e=>{const l=w(e);if(t.length!==l.length)throw new Error("Wrong number of arguments to match. Expected: "+t.join(",")+"\nActual: "+l.join(","));if(!q(t,(e=>D(l,e))))throw new Error("Not all branches were specified when using match. Specified: "+l.join(", ")+"\nRequired: "+t.join(", "));return e[s].apply(null,o)},log:e=>{console.log(e,{constructors:t,constructor:s,params:o})}}}}))})([{none:[]},{only:["index"]},{left:["index","next"]},{middle:["prev","index","next"]},{right:["prev","index"]}]),(e,t)=>{const o=Qe(e);return ko(o,t).bind((e=>{const t=e[e.length-1],l=e[0].row,n=t.row+t.rowspan,r=o.all.slice(l,n);return Io(r)})).getOr("")}),Lo=e=>{return _e(e,"rgb")?po(t=e).map(so).map((e=>"#"+e.value)).getOr(t):e;var t},Ho=e=>{const t=V.fromDom(e);return{borderwidth:Be(t,"border-width").getOr(""),borderstyle:Be(t,"border-style").getOr(""),bordercolor:Be(t,"border-color").map(Lo).getOr(""),backgroundcolor:Be(t,"background-color").map(Lo).getOr("")}},jo=e=>{const t=e[0],o=e.slice(1);return P(o,(e=>{P(w(t),(o=>{C(e,((e,l)=>{const n=t[o];""!==n&&o===l&&n!==e&&(t[o]="")}))}))})),t},Vo=(e,t,o,l)=>B(e,(e=>!a(o.formatter.matchNode(l,t+e)))).getOr(""),$o=b(Vo,["left","center","right"],"align"),Wo=b(Vo,["top","middle","bottom"],"valign"),zo=e=>$e(V.fromDom(e)).map((t=>{const o={selection:Ut(e.cells)};return qo(t,o)})).getOr(""),Uo=(e,t)=>{const o=Qe(e),l=(e=>F(e.all,(e=>e.cells)))(o),n=k(l,(e=>N(t,(t=>z(e.element,t)))));return M(n,(e=>({element:e.element.dom,column:Ze(o,e.column).map((e=>e.element.dom))})))},Go=(e,t,o,l)=>{const n=l.getData();l.close(),e.undoManager.transact((()=>{((e,t,o,l)=>{const n=v(l,((e,t)=>o[t]!==e));T(n)>0&&t.length>=1&&$e(t[0]).each((o=>{const r=Uo(o,t),a=T(v(n,((e,t)=>"scope"!==t&&"celltype"!==t)))>0,s=A(n,"celltype");(a||A(n,"scope"))&&((e,t,o,l)=>{const n=1===t.length;P(t,(t=>{const r=t.element,a=n?f:l,s=_o(e,r);((e,t,o,l)=>{l("scope")&&e.setAttrib("scope",o.scope),l("class")&&e.setAttrib("class",o.class),l("height")&&e.setStyle("height",fe(o.height)),l("width")&&t.setStyle("width",fe(o.width))})(s,t.column.map((t=>_o(e,t))).getOr(s),o,a),gt(e)&&((e,t,o)=>{o("backgroundcolor")&&e.setFormat("tablecellbackgroundcolor",t.backgroundcolor),o("bordercolor")&&e.setFormat("tablecellbordercolor",t.bordercolor),o("borderstyle")&&e.setFormat("tablecellborderstyle",t.borderstyle),o("borderwidth")&&e.setFormat("tablecellborderwidth",fe(t.borderwidth))})(s,o,a),l("halign")&&ot(e,r,o.halign),l("valign")&&((e,t,o)=>{et.each("top middle bottom".split(" "),(l=>{l!==o&&e.formatter.remove("valign"+l,{},t)})),o&&e.formatter.apply("valign"+o,{},t)})(e,r,o.valign)}))})(e,r,l,b(A,n)),s&&((e,t)=>{e.execCommand("mceTableCellType",!1,{type:t.celltype,no_events:!0})})(e,l),lt(e,o.dom,{structure:s,style:a})}))})(e,t,o,n),e.focus()}))},Ko=e=>{const t=eo(e);if(0===t.length)return;const o=((e,t)=>{const o=$e(t[0]).map((o=>M(Uo(o,t),(t=>((e,t,o,l)=>{const n=e.dom,r=(e,t)=>n.getStyle(e,t)||n.getAttrib(e,t);return{width:r(l.getOr(t),"width"),height:r(t,"height"),scope:n.getAttrib(t,"scope"),celltype:(a=t,a.nodeName.toLowerCase()),class:n.getAttrib(t,"class",""),halign:$o(e,t),valign:Wo(e,t),...o?Ho(t):{}};var a})(e,t.element,gt(e),t.column)))));return jo(o.getOrDie())})(e,t),l={type:"tabpanel",tabs:[{title:"General",name:"general",items:Ro(e)},Oo(e,"cell")]},n={type:"panel",items:[{type:"grid",columns:2,items:Ro(e)}]};e.windowManager.open({title:"Cell Properties",size:"normal",body:gt(e)?l:n,buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:o,onSubmit:b(Go,e,t,o)})},Jo=[{type:"listbox",name:"type",label:"Row type",items:[{text:"Header",value:"header"},{text:"Body",value:"body"},{text:"Footer",value:"footer"}]},{type:"listbox",name:"align",label:"Alignment",items:[{text:"None",value:""},{text:"Left",value:"left"},{text:"Center",value:"center"},{text:"Right",value:"right"}]},{label:"Height",name:"height",type:"input"}],Qo=e=>Jo.concat((e=>{const t=fo(vt(e));return t.length>0?y.some({name:"class",type:"listbox",label:"Class",items:t}):y.none()})(e).toArray()),Xo=(e,t,o,l)=>{const n=l.getData();l.close(),e.undoManager.transact((()=>{((e,t,o,l)=>{const n=v(l,((e,t)=>o[t]!==e));if(T(n)>0){const o=A(n,"type"),r=!o||T(n)>1;r&&((e,t,o,l)=>{const n=1===t.length?f:l;P(t,(t=>{const r=_o(e,t);((e,t,o)=>{o("class")&&e.setAttrib("class",t.class),o("height")&&e.setStyle("height",fe(t.height))})(r,o,n),ht(e)&&((e,t,o)=>{o("backgroundcolor")&&e.setStyle("background-color",t.backgroundcolor),o("bordercolor")&&e.setStyle("border-color",t.bordercolor),o("borderstyle")&&e.setStyle("border-style",t.borderstyle)})(r,o,n),l("align")&&ot(e,t,o.align)}))})(e,t,l,b(A,n)),o&&((e,t)=>{e.execCommand("mceTableRowType",!1,{type:t.type,no_events:!0})})(e,l),$e(V.fromDom(t[0])).each((t=>lt(e,t.dom,{structure:o,style:r})))}})(e,t,o,n),e.focus()}))},Yo=e=>{const t=to(ye(e),Qt.selected);if(0===t.length)return;const o=M(t,(t=>((e,t,o)=>{const l=e.dom;return{height:l.getStyle(t,"height")||l.getAttrib(t,"height"),class:l.getAttrib(t,"class",""),type:zo(t),align:$o(e,t),...o?Ho(t):{}}})(e,t.dom,ht(e)))),l=jo(o),n={type:"tabpanel",tabs:[{title:"General",name:"general",items:Qo(e)},Oo(e,"row")]},r={type:"panel",items:[{type:"grid",columns:2,items:Qo(e)}]};e.windowManager.open({title:"Row Properties",size:"normal",body:ht(e)?n:r,buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:l,onSubmit:b(Xo,e,M(t,(e=>e.dom)),l)})},Zo=(e,t,o)=>{const l=o?[{type:"input",name:"cols",label:"Cols",inputMode:"numeric"},{type:"input",name:"rows",label:"Rows",inputMode:"numeric"}]:[],n=yt(e)?[{type:"input",name:"cellspacing",label:"Cell spacing",inputMode:"numeric"},{type:"input",name:"cellpadding",label:"Cell padding",inputMode:"numeric"},{type:"input",name:"border",label:"Border width"},{type:"label",label:"Caption",items:[{type:"checkbox",name:"caption",label:"Show caption"}]}]:[],r=t.length>0?[{type:"listbox",name:"class",label:"Class",items:t}]:[];return l.concat([{type:"input",name:"width",label:"Width"},{type:"input",name:"height",label:"Height"}]).concat(n).concat([{type:"listbox",name:"align",label:"Alignment",items:[{text:"None",value:""},{text:"Left",value:"left"},{text:"Center",value:"center"},{text:"Right",value:"right"}]}]).concat(r)},el=(e,t,o,n)=>{if("TD"===t.tagName||"TH"===t.tagName)l(o)&&s(n)?e.setStyle(t,o,n):e.setStyles(t,o);else if(t.children)for(let l=0;l<t.children.length;l++)el(e,t.children[l],o,n)},tl=(e,t,o,l)=>{const n=e.dom,r=l.getData(),s=v(r,((e,t)=>o[t]!==e));l.close(),""===r.class&&delete r.class,e.undoManager.transact((()=>{if(!t){const o=Me(r.cols).getOr(1),l=Me(r.rows).getOr(1);e.execCommand("mceInsertTable",!1,{rows:l,columns:o}),t=Zt(ye(e),he(e)).bind((t=>$e(t,he(e)))).map((e=>e.dom)).getOrDie()}if(T(s)>0){const o={border:A(s,"border"),bordercolor:A(s,"bordercolor"),cellpadding:A(s,"cellpadding")};((e,t,o,l)=>{const n=e.dom,r={},s={},c=St(e),i=ft(e);if(a(o.class)||(r.class=o.class),s.height=fe(o.height),c?s.width=fe(o.width):n.getAttrib(t,"width")&&(r.width=(e=>e?e.replace(/px$/,""):"")(o.width)),c?(s["border-width"]=fe(o.border),s["border-spacing"]=fe(o.cellspacing)):(r.border=o.border,r.cellpadding=o.cellpadding,r.cellspacing=o.cellspacing),c&&t.children){const e={};if(l.border&&(e["border-width"]=fe(o.border)),l.cellpadding&&(e.padding=fe(o.cellpadding)),i&&l.bordercolor&&(e["border-color"]=o.bordercolor),!(e=>{for(const t in e)if(S.call(e,t))return!1;return!0})(e))for(let o=0;o<t.children.length;o++)el(n,t.children[o],e)}if(i){const e=o;s["background-color"]=e.backgroundcolor,s["border-color"]=e.bordercolor,s["border-style"]=e.borderstyle}n.setStyles(t,{...Dt(e),...s}),n.setAttribs(t,{...Nt(e),...r})})(e,t,r,o);const l=n.select("caption",t)[0];(l&&!r.caption||!l&&r.caption)&&e.execCommand("mceTableToggleCaption"),ot(e,t,r.align)}if(e.focus(),e.addVisual(),T(s)>0){const o=A(s,"caption"),l=!o||T(s)>1;lt(e,t,{structure:o,style:l})}}))},ol=(e,t)=>{const o=e.dom;let l,n=((e,t)=>{const o=Dt(e),l=Nt(e),n=t?{borderstyle:x(o,"border-style").getOr(""),bordercolor:Lo(x(o,"border-color").getOr("")),backgroundcolor:Lo(x(o,"background-color").getOr(""))}:{};return{height:"",width:"100%",cellspacing:"",cellpadding:"",caption:!1,class:"",align:"",border:"",...o,...l,...n,...(()=>{const t=o["border-width"];return St(e)&&t?{border:t}:x(l,"border").fold((()=>({})),(e=>({border:e})))})(),...{...x(o,"border-spacing").or(x(l,"cellspacing")).fold((()=>({})),(e=>({cellspacing:e}))),...x(o,"border-padding").or(x(l,"cellpadding")).fold((()=>({})),(e=>({cellpadding:e})))}}})(e,ft(e));t?(n.cols="1",n.rows="1",ft(e)&&(n.borderstyle="",n.bordercolor="",n.backgroundcolor="")):(l=o.getParent(e.selection.getStart(),"table",e.getBody()),l?n=((e,t,o)=>{const l=e.dom,n=St(e)?l.getStyle(t,"border-spacing")||l.getAttrib(t,"cellspacing"):l.getAttrib(t,"cellspacing")||l.getStyle(t,"border-spacing"),r=St(e)?tt(l,t,"padding")||l.getAttrib(t,"cellpadding"):l.getAttrib(t,"cellpadding")||tt(l,t,"padding");return{width:l.getStyle(t,"width")||l.getAttrib(t,"width"),height:l.getStyle(t,"height")||l.getAttrib(t,"height"),cellspacing:null!=n?n:"",cellpadding:null!=r?r:"",border:((t,o)=>{const l=Be(V.fromDom(o),"border-width");return St(e)&&l.isSome()?l.getOr(""):t.getAttrib(o,"border")||tt(e.dom,o,"border-width")||tt(e.dom,o,"border")||""})(l,t),caption:!!l.select("caption",t)[0],class:l.getAttrib(t,"class",""),align:$o(e,t),...o?Ho(t):{}}})(e,l,ft(e)):ft(e)&&(n.borderstyle="",n.bordercolor="",n.backgroundcolor=""));const r=fo(Tt(e));r.length>0&&n.class&&(n.class=n.class.replace(/\s*mce\-item\-table\s*/g,""));const a={type:"grid",columns:2,items:Zo(e,r,t)},s=ft(e)?{type:"tabpanel",tabs:[{title:"General",name:"general",items:[a]},Oo(e,"table")]}:{type:"panel",items:[a]};e.windowManager.open({title:"Table Properties",size:"normal",body:s,onSubmit:b(tl,e,l,n),buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:n})},ll=e=>{C({mceTableProps:b(ol,e,!1),mceTableRowProps:b(Yo,e),mceTableCellProps:b(Ko,e),mceInsertTableDialog:b(ol,e,!0)},((t,o)=>e.addCommand(o,(()=>{return o=t,void((e=>{return(t=e,o=ee("table"),ce(((e,t)=>t(e)),ie,t,o,void 0)).forall(be);var t,o})(ye(e))&&o());var o}))))},nl=u,rl=e=>{const t=(e,t)=>xe(e,t).exists((e=>parseInt(e,10)>1));return e.length>0&&q(e,(e=>t(e,"rowspan")||t(e,"colspan")))?y.some(e):y.none()},al=(e,t,o)=>{return t.length<=1?y.none():(l=e,n=o.firstSelectedSelector,r=o.lastSelectedSelector,zt(l,n,r).bind((e=>{const t=e=>z(l,e),o="thead,tfoot,tbody,table",n=me(e.first,o,t),r=me(e.last,o,t);return n.bind((t=>r.bind((o=>z(t,o)?((e,t,o)=>{const l=Pt(e);return Mt(l,t,o)})(e.table,e.first,e.last):y.none()))))}))).map((e=>({bounds:e,cells:t})));var l,n,r},sl=e=>{const t=bo(y.none()),o=bo([]);let l=y.none();const n=ee("caption"),r=e=>l.forall((t=>!t[e])),a=()=>Yt(ye(e),he(e)).bind((t=>{return o=Oe($e(t),Yt((e=>V.fromDom(e.selection.getEnd()))(e),he(e)).bind($e),((o,l)=>z(o,l)?n(t)?y.some((e=>({element:e,mergable:y.none(),unmergable:y.none(),selection:[e]}))(t)):y.some(((e,t,o)=>({element:o,mergable:al(t,e,Qt),unmergable:rl(e),selection:nl(e)}))(eo(e),o,t)):y.none())),o.bind(u);var o})),s=e=>$e(e.element).map((t=>{const o=Qe(t),l=ko(o,e).getOr([]),n=E(l,((e,t)=>(t.isLocked&&(e.onAny=!0,0===t.column?e.onFirst=!0:t.column+t.colspan>=o.grid.columns&&(e.onLast=!0)),e)),{onAny:!1,onFirst:!1,onLast:!1});return{mergeable:Bo(o,e).isSome(),unmergeable:Fo(o,e).isSome(),locked:n}})),c=()=>{t.set((e=>{let t,o=!1;return(...l)=>(o||(o=!0,t=e.apply(null,l)),t)})(a)()),l=t.get().bind(s),P(o.get(),g)},i=e=>(e(),o.set(o.get().concat([e])),()=>{o.set(k(o.get(),(t=>t!==e)))}),m=(o,l)=>i((()=>t.get().fold((()=>{o.setEnabled(!1)}),(t=>{o.setEnabled(!l(t)&&e.selection.isEditable())})))),d=(o,l,n)=>i((()=>t.get().fold((()=>{o.setEnabled(!1),o.setActive(!1)}),(t=>{o.setEnabled(!l(t)&&e.selection.isEditable()),o.setActive(n(t))})))),p=e=>l.exists((t=>t.locked[e])),b=(t,o)=>l=>d(l,(e=>n(e.element)),(()=>e.queryCommandValue(t)===o)),f=b("mceTableRowType","header"),w=b("mceTableColType","th");return e.on("NodeChange ExecCommand TableSelectorChange",c),{onSetupTable:e=>m(e,(e=>!1)),onSetupCellOrRow:e=>m(e,(e=>n(e.element))),onSetupColumn:e=>t=>m(t,(t=>n(t.element)||p(e))),onSetupPasteable:e=>t=>m(t,(t=>n(t.element)||e().isNone())),onSetupPasteableColumn:(e,t)=>o=>m(o,(o=>n(o.element)||e().isNone()||p(t))),onSetupMergeable:e=>m(e,(e=>r("mergeable"))),onSetupUnmergeable:e=>m(e,(e=>r("unmergeable"))),resetTargets:c,onSetupTableWithCaption:t=>d(t,h,(t=>$e(t.element,he(e)).exists((e=>de(e,"caption").isSome())))),onSetupTableRowHeaders:f,onSetupTableColumnHeaders:w,targets:t.get}};var cl=tinymce.util.Tools.resolve("tinymce.FakeClipboard");const il="x-tinymce/dom-table-",ml=il+"rows",dl=il+"columns",ul=e=>{var t;const o=null!==(t=cl.read())&&void 0!==t?t:[];return H(o,(t=>y.from(t.getType(e))))},pl=()=>ul(ml),bl=()=>ul(dl),gl=e=>t=>{const o=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",o),o(),()=>{e.off("NodeChange",o)}},hl=e=>t=>{const o=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",o),o(),()=>{e.off("NodeChange",o)}};e.add("table",(e=>{const t=sl(e);(e=>{const t=e.options.register;t("table_border_widths",{processor:"object[]",default:st}),t("table_border_styles",{processor:"object[]",default:ct}),t("table_cell_advtab",{processor:"boolean",default:!0}),t("table_row_advtab",{processor:"boolean",default:!0}),t("table_advtab",{processor:"boolean",default:!0}),t("table_appearance_options",{processor:"boolean",default:!0}),t("table_grid",{processor:"boolean",default:!at.deviceType.isTouch()}),t("table_cell_class_list",{processor:"object[]",default:[]}),t("table_row_class_list",{processor:"object[]",default:[]}),t("table_class_list",{processor:"object[]",default:[]}),t("table_toolbar",{processor:"string",default:"tableprops tabledelete | tableinsertrowbefore tableinsertrowafter tabledeleterow | tableinsertcolbefore tableinsertcolafter tabledeletecol"}),t("table_background_color_map",{processor:"object[]",default:[]}),t("table_border_color_map",{processor:"object[]",default:[]})})(e),ll(e),((e,t)=>{const o=t=>()=>e.execCommand(t),l=(t,l)=>!!e.queryCommandSupported(l.command)&&(e.ui.registry.addMenuItem(t,{...l,onAction:c(l.onAction)?l.onAction:o(l.command)}),!0),n=(t,l)=>{e.queryCommandSupported(l.command)&&e.ui.registry.addToggleMenuItem(t,{...l,onAction:c(l.onAction)?l.onAction:o(l.command)})},r=t=>{e.execCommand("mceInsertTable",!1,{rows:t.numRows,columns:t.numColumns})},a=[l("tableinsertrowbefore",{text:"Insert row before",icon:"table-insert-row-above",command:"mceTableInsertRowBefore",onSetup:t.onSetupCellOrRow}),l("tableinsertrowafter",{text:"Insert row after",icon:"table-insert-row-after",command:"mceTableInsertRowAfter",onSetup:t.onSetupCellOrRow}),l("tabledeleterow",{text:"Delete row",icon:"table-delete-row",command:"mceTableDeleteRow",onSetup:t.onSetupCellOrRow}),l("tablerowprops",{text:"Row properties",icon:"table-row-properties",command:"mceTableRowProps",onSetup:t.onSetupCellOrRow}),l("tablecutrow",{text:"Cut row",icon:"cut-row",command:"mceTableCutRow",onSetup:t.onSetupCellOrRow}),l("tablecopyrow",{text:"Copy row",icon:"duplicate-row",command:"mceTableCopyRow",onSetup:t.onSetupCellOrRow}),l("tablepasterowbefore",{text:"Paste row before",icon:"paste-row-before",command:"mceTablePasteRowBefore",onSetup:t.onSetupPasteable(pl)}),l("tablepasterowafter",{text:"Paste row after",icon:"paste-row-after",command:"mceTablePasteRowAfter",onSetup:t.onSetupPasteable(pl)})],s=[l("tableinsertcolumnbefore",{text:"Insert column before",icon:"table-insert-column-before",command:"mceTableInsertColBefore",onSetup:t.onSetupColumn("onFirst")}),l("tableinsertcolumnafter",{text:"Insert column after",icon:"table-insert-column-after",command:"mceTableInsertColAfter",onSetup:t.onSetupColumn("onLast")}),l("tabledeletecolumn",{text:"Delete column",icon:"table-delete-column",command:"mceTableDeleteCol",onSetup:t.onSetupColumn("onAny")}),l("tablecutcolumn",{text:"Cut column",icon:"cut-column",command:"mceTableCutCol",onSetup:t.onSetupColumn("onAny")}),l("tablecopycolumn",{text:"Copy column",icon:"duplicate-column",command:"mceTableCopyCol",onSetup:t.onSetupColumn("onAny")}),l("tablepastecolumnbefore",{text:"Paste column before",icon:"paste-column-before",command:"mceTablePasteColBefore",onSetup:t.onSetupPasteableColumn(bl,"onFirst")}),l("tablepastecolumnafter",{text:"Paste column after",icon:"paste-column-after",command:"mceTablePasteColAfter",onSetup:t.onSetupPasteableColumn(bl,"onLast")})],i=[l("tablecellprops",{text:"Cell properties",icon:"table-cell-properties",command:"mceTableCellProps",onSetup:t.onSetupCellOrRow}),l("tablemergecells",{text:"Merge cells",icon:"table-merge-cells",command:"mceTableMergeCells",onSetup:t.onSetupMergeable}),l("tablesplitcells",{text:"Split cell",icon:"table-split-cells",command:"mceTableSplitCells",onSetup:t.onSetupUnmergeable})];wt(e)?e.ui.registry.addNestedMenuItem("inserttable",{text:"Table",icon:"table",getSubmenuItems:()=>[{type:"fancymenuitem",fancytype:"inserttable",onAction:r}],onSetup:hl(e)}):e.ui.registry.addMenuItem("inserttable",{text:"Table",icon:"table",onAction:o("mceInsertTableDialog"),onSetup:hl(e)}),e.ui.registry.addMenuItem("inserttabledialog",{text:"Insert table",icon:"table",onAction:o("mceInsertTableDialog"),onSetup:hl(e)}),l("tableprops",{text:"Table properties",onSetup:t.onSetupTable,command:"mceTableProps"}),l("deletetable",{text:"Delete table",icon:"table-delete-table",onSetup:t.onSetupTable,command:"mceTableDelete"}),D(a,!0)&&e.ui.registry.addNestedMenuItem("row",{type:"nestedmenuitem",text:"Row",getSubmenuItems:d("tableinsertrowbefore tableinsertrowafter tabledeleterow tablerowprops | tablecutrow tablecopyrow tablepasterowbefore tablepasterowafter")}),D(s,!0)&&e.ui.registry.addNestedMenuItem("column",{type:"nestedmenuitem",text:"Column",getSubmenuItems:d("tableinsertcolumnbefore tableinsertcolumnafter tabledeletecolumn | tablecutcolumn tablecopycolumn tablepastecolumnbefore tablepastecolumnafter")}),D(i,!0)&&e.ui.registry.addNestedMenuItem("cell",{type:"nestedmenuitem",text:"Cell",getSubmenuItems:d("tablecellprops tablemergecells tablesplitcells")}),e.ui.registry.addContextMenu("table",{update:()=>(t.resetTargets(),t.targets().fold(d(""),(e=>"caption"===G(e.element)?"tableprops deletetable":"cell row column | advtablesort | tableprops deletetable")))});const m=So(Tt(e));0!==m.length&&e.queryCommandSupported("mceTableToggleClass")&&e.ui.registry.addNestedMenuItem("tableclass",{icon:"table-classes",text:"Table styles",getSubmenuItems:()=>yo(e,m,"tableclass",(t=>e.execCommand("mceTableToggleClass",!1,t))),onSetup:t.onSetupTable});const u=So(Ct(e));0!==u.length&&e.queryCommandSupported("mceTableCellToggleClass")&&e.ui.registry.addNestedMenuItem("tablecellclass",{icon:"table-cell-classes",text:"Cell styles",getSubmenuItems:()=>yo(e,u,"tablecellclass",(t=>e.execCommand("mceTableCellToggleClass",!1,t))),onSetup:t.onSetupCellOrRow}),e.queryCommandSupported("mceTableApplyCellStyle")&&(e.ui.registry.addNestedMenuItem("tablecellvalign",{icon:"vertical-align",text:"Vertical align",getSubmenuItems:()=>yo(e,oo,"tablecellverticalalign",wo(e,"vertical-align")),onSetup:t.onSetupCellOrRow}),e.ui.registry.addNestedMenuItem("tablecellborderwidth",{icon:"border-width",text:"Border width",getSubmenuItems:()=>yo(e,pt(e),"tablecellborderwidth",wo(e,"border-width")),onSetup:t.onSetupCellOrRow}),e.ui.registry.addNestedMenuItem("tablecellborderstyle",{icon:"border-style",text:"Border style",getSubmenuItems:()=>yo(e,bt(e),"tablecellborderstyle",wo(e,"border-style")),onSetup:t.onSetupCellOrRow}),e.ui.registry.addNestedMenuItem("tablecellbackgroundcolor",{icon:"cell-background-color",text:"Background color",getSubmenuItems:()=>vo(e,At(e),"background-color"),onSetup:t.onSetupCellOrRow}),e.ui.registry.addNestedMenuItem("tablecellbordercolor",{icon:"cell-border-color",text:"Border color",getSubmenuItems:()=>vo(e,Rt(e),"border-color"),onSetup:t.onSetupCellOrRow})),n("tablecaption",{icon:"table-caption",text:"Table caption",command:"mceTableToggleCaption",onSetup:t.onSetupTableWithCaption}),n("tablerowheader",{text:"Row header",icon:"table-top-header",command:"mceTableRowType",onAction:To(e),onSetup:t.onSetupTableRowHeaders}),n("tablecolheader",{text:"Column header",icon:"table-left-header",command:"mceTableColType",onAction:xo(e),onSetup:t.onSetupTableRowHeaders})})(e,t),((e,t)=>{e.ui.registry.addMenuButton("table",{tooltip:"Table",icon:"table",onSetup:gl(e),fetch:e=>e("inserttable | cell row column | advtablesort | tableprops deletetable")});const o=t=>()=>e.execCommand(t),l=(t,l)=>{e.queryCommandSupported(l.command)&&e.ui.registry.addButton(t,{...l,onAction:c(l.onAction)?l.onAction:o(l.command)})},n=(t,l)=>{e.queryCommandSupported(l.command)&&e.ui.registry.addToggleButton(t,{...l,onAction:c(l.onAction)?l.onAction:o(l.command)})};l("tableprops",{tooltip:"Table properties",command:"mceTableProps",icon:"table",onSetup:t.onSetupTable}),l("tabledelete",{tooltip:"Delete table",command:"mceTableDelete",icon:"table-delete-table",onSetup:t.onSetupTable}),l("tablecellprops",{tooltip:"Cell properties",command:"mceTableCellProps",icon:"table-cell-properties",onSetup:t.onSetupCellOrRow}),l("tablemergecells",{tooltip:"Merge cells",command:"mceTableMergeCells",icon:"table-merge-cells",onSetup:t.onSetupMergeable}),l("tablesplitcells",{tooltip:"Split cell",command:"mceTableSplitCells",icon:"table-split-cells",onSetup:t.onSetupUnmergeable}),l("tableinsertrowbefore",{tooltip:"Insert row before",command:"mceTableInsertRowBefore",icon:"table-insert-row-above",onSetup:t.onSetupCellOrRow}),l("tableinsertrowafter",{tooltip:"Insert row after",command:"mceTableInsertRowAfter",icon:"table-insert-row-after",onSetup:t.onSetupCellOrRow}),l("tabledeleterow",{tooltip:"Delete row",command:"mceTableDeleteRow",icon:"table-delete-row",onSetup:t.onSetupCellOrRow}),l("tablerowprops",{tooltip:"Row properties",command:"mceTableRowProps",icon:"table-row-properties",onSetup:t.onSetupCellOrRow}),l("tableinsertcolbefore",{tooltip:"Insert column before",command:"mceTableInsertColBefore",icon:"table-insert-column-before",onSetup:t.onSetupColumn("onFirst")}),l("tableinsertcolafter",{tooltip:"Insert column after",command:"mceTableInsertColAfter",icon:"table-insert-column-after",onSetup:t.onSetupColumn("onLast")}),l("tabledeletecol",{tooltip:"Delete column",command:"mceTableDeleteCol",icon:"table-delete-column",onSetup:t.onSetupColumn("onAny")}),l("tablecutrow",{tooltip:"Cut row",command:"mceTableCutRow",icon:"cut-row",onSetup:t.onSetupCellOrRow}),l("tablecopyrow",{tooltip:"Copy row",command:"mceTableCopyRow",icon:"duplicate-row",onSetup:t.onSetupCellOrRow}),l("tablepasterowbefore",{tooltip:"Paste row before",command:"mceTablePasteRowBefore",icon:"paste-row-before",onSetup:t.onSetupPasteable(pl)}),l("tablepasterowafter",{tooltip:"Paste row after",command:"mceTablePasteRowAfter",icon:"paste-row-after",onSetup:t.onSetupPasteable(pl)}),l("tablecutcol",{tooltip:"Cut column",command:"mceTableCutCol",icon:"cut-column",onSetup:t.onSetupColumn("onAny")}),l("tablecopycol",{tooltip:"Copy column",command:"mceTableCopyCol",icon:"duplicate-column",onSetup:t.onSetupColumn("onAny")}),l("tablepastecolbefore",{tooltip:"Paste column before",command:"mceTablePasteColBefore",icon:"paste-column-before",onSetup:t.onSetupPasteableColumn(bl,"onFirst")}),l("tablepastecolafter",{tooltip:"Paste column after",command:"mceTablePasteColAfter",icon:"paste-column-after",onSetup:t.onSetupPasteableColumn(bl,"onLast")}),l("tableinsertdialog",{tooltip:"Insert table",command:"mceInsertTableDialog",icon:"table",onSetup:gl(e)});const r=So(Tt(e));0!==r.length&&e.queryCommandSupported("mceTableToggleClass")&&e.ui.registry.addMenuButton("tableclass",{icon:"table-classes",tooltip:"Table styles",fetch:Co(e,r,"tableclass",(t=>e.execCommand("mceTableToggleClass",!1,t))),onSetup:t.onSetupTable});const a=So(Ct(e));0!==a.length&&e.queryCommandSupported("mceTableCellToggleClass")&&e.ui.registry.addMenuButton("tablecellclass",{icon:"table-cell-classes",tooltip:"Cell styles",fetch:Co(e,a,"tablecellclass",(t=>e.execCommand("mceTableCellToggleClass",!1,t))),onSetup:t.onSetupCellOrRow}),e.queryCommandSupported("mceTableApplyCellStyle")&&(e.ui.registry.addMenuButton("tablecellvalign",{icon:"vertical-align",tooltip:"Vertical align",fetch:Co(e,oo,"tablecellverticalalign",wo(e,"vertical-align")),onSetup:t.onSetupCellOrRow}),e.ui.registry.addMenuButton("tablecellborderwidth",{icon:"border-width",tooltip:"Border width",fetch:Co(e,pt(e),"tablecellborderwidth",wo(e,"border-width")),onSetup:t.onSetupCellOrRow}),e.ui.registry.addMenuButton("tablecellborderstyle",{icon:"border-style",tooltip:"Border style",fetch:Co(e,bt(e),"tablecellborderstyle",wo(e,"border-style")),onSetup:t.onSetupCellOrRow}),e.ui.registry.addMenuButton("tablecellbackgroundcolor",{icon:"cell-background-color",tooltip:"Background color",fetch:t=>t(vo(e,At(e),"background-color")),onSetup:t.onSetupCellOrRow}),e.ui.registry.addMenuButton("tablecellbordercolor",{icon:"cell-border-color",tooltip:"Border color",fetch:t=>t(vo(e,Rt(e),"border-color")),onSetup:t.onSetupCellOrRow})),n("tablecaption",{tooltip:"Table caption",icon:"table-caption",command:"mceTableToggleCaption",onSetup:t.onSetupTableWithCaption}),n("tablerowheader",{tooltip:"Row header",icon:"table-top-header",command:"mceTableRowType",onAction:To(e),onSetup:t.onSetupTableRowHeaders}),n("tablecolheader",{tooltip:"Column header",icon:"table-left-header",command:"mceTableColType",onAction:xo(e),onSetup:t.onSetupTableColumnHeaders})})(e,t),(e=>{const t=xt(e);t.length>0&&e.ui.registry.addContextToolbar("table",{predicate:t=>e.dom.is(t,"table")&&e.getBody().contains(t)&&e.dom.isEditable(t.parentNode),items:t,scope:"node",position:"node"})})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/autolink/plugin.min.js000064400000006253151213255070022123 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>t.options.get(e),n=t("autolink_pattern"),o=t("link_default_target"),r=t("link_default_protocol"),a=t("allow_unsafe_link_target"),s=("string",e=>"string"===(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(n=o=e,(r=String).prototype.isPrototypeOf(n)||(null===(a=o.constructor)||void 0===a?void 0:a.name)===r.name)?"string":t;var n,o,r,a})(e));const l=(void 0,e=>undefined===e);const i=e=>!(e=>null==e)(e),c=Object.hasOwnProperty,d=e=>"\ufeff"===e;var u=tinymce.util.Tools.resolve("tinymce.dom.TextSeeker");const f=e=>/^[(\[{ \u00a0]$/.test(e),g=(e,t,n)=>{for(let o=t-1;o>=0;o--){const t=e.charAt(o);if(!d(t)&&n(t))return o}return-1},m=(e,t)=>{var o;const a=e.schema.getVoidElements(),s=n(e),{dom:i,selection:d}=e;if(null!==i.getParent(d.getNode(),"a[href]"))return null;const m=d.getRng(),k=u(i,(e=>{return i.isBlock(e)||(t=a,n=e.nodeName.toLowerCase(),c.call(t,n))||"false"===i.getContentEditable(e);var t,n})),{container:p,offset:y}=((e,t)=>{let n=e,o=t;for(;1===n.nodeType&&n.childNodes[o];)n=n.childNodes[o],o=3===n.nodeType?n.data.length:n.childNodes.length;return{container:n,offset:o}})(m.endContainer,m.endOffset),w=null!==(o=i.getParent(p,i.isBlock))&&void 0!==o?o:i.getRoot(),h=k.backwards(p,y+t,((e,t)=>{const n=e.data,o=g(n,t,(r=f,e=>!r(e)));var r,a;return-1===o||(a=n[o],/[?!,.;:]/.test(a))?o:o+1}),w);if(!h)return null;let v=h.container;const _=k.backwards(h.container,h.offset,((e,t)=>{v=e;const n=g(e.data,t,f);return-1===n?n:n+1}),w),A=i.createRng();_?A.setStart(_.container,_.offset):A.setStart(v,0),A.setEnd(h.container,h.offset);const C=A.toString().replace(/\uFEFF/g,"").match(s);if(C){let t=C[0];return $="www.",(b=t).length>=4&&b.substr(0,4)===$?t=r(e)+"://"+t:((e,t,n=0,o)=>{const r=e.indexOf(t,n);return-1!==r&&(!!l(o)||r+t.length<=o)})(t,"@")&&!(e=>/^([A-Za-z][A-Za-z\d.+-]*:\/\/)|mailto:/.test(e))(t)&&(t="mailto:"+t),{rng:A,url:t}}var b,$;return null},k=(e,t)=>{const{dom:n,selection:r}=e,{rng:l,url:i}=t,c=r.getBookmark();r.setRng(l);const d="createlink",u={command:d,ui:!1,value:i};if(!e.dispatch("BeforeExecCommand",u).isDefaultPrevented()){e.getDoc().execCommand(d,!1,i),e.dispatch("ExecCommand",u);const t=o(e);if(s(t)){const o=r.getNode();n.setAttrib(o,"target",t),"_blank"!==t||a(e)||n.setAttrib(o,"rel","noopener")}}r.moveToBookmark(c),e.nodeChanged()},p=e=>{const t=m(e,-1);i(t)&&k(e,t)},y=p;e.add("autolink",(e=>{(e=>{const t=e.options.register;t("autolink_pattern",{processor:"regexp",default:new RegExp("^"+/(?:[A-Za-z][A-Za-z\d.+-]{0,14}:\/\/(?:[-.~*+=!&;:'%@?^${}(),\w]+@)?|www\.|[-;:&=+$,.\w]+@)[A-Za-z\d-]+(?:\.[A-Za-z\d-]+)*(?::\d+)?(?:\/(?:[-.~*+=!;:'%@$(),\/\w]*[-~*+=%@$()\/\w])?)?(?:\?(?:[-.~*+=!&;:'%@?^${}(),\/\w]+))?(?:#(?:[-.~*+=!&;:'%@?^${}(),\/\w]+))?/g.source+"$","i")}),t("link_default_target",{processor:"string"}),t("link_default_protocol",{processor:"string",default:"https"})})(e),(e=>{e.on("keydown",(t=>{13!==t.keyCode||t.isDefaultPrevented()||(e=>{const t=m(e,0);i(t)&&k(e,t)})(e)})),e.on("keyup",(t=>{32===t.keyCode?p(e):(48===t.keyCode&&t.shiftKey||221===t.keyCode)&&y(e)}))})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js000064400000036355151213255070022445 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";const e=e=>{let t=e;return{get:()=>t,set:e=>{t=e}}};var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const n=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(n=r=e,(o=String).prototype.isPrototypeOf(n)||(null===(s=r.constructor)||void 0===s?void 0:s.name)===o.name)?"string":t;var n,r,o,s})(t)===e,r=e=>t=>typeof t===e,o=e=>t=>e===t,s=n("string"),i=n("object"),l=n("array"),a=o(null),c=r("boolean"),u=o(void 0),d=e=>!(e=>null==e)(e),m=r("function"),h=r("number"),g=()=>{},p=e=>()=>e;function f(e,...t){return(...n)=>{const r=t.concat(n);return e.apply(null,r)}}const v=p(!1),w=p(!0);class b{constructor(e,t){this.tag=e,this.value=t}static some(e){return new b(!0,e)}static none(){return b.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?b.some(e(this.value)):b.none()}bind(e){return this.tag?e(this.value):b.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:b.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return d(e)?b.some(e):b.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}b.singletonNone=new b(!1);const y=Array.prototype.push,S=(e,t)=>{const n=e.length,r=new Array(n);for(let o=0;o<n;o++){const n=e[o];r[o]=t(n,o)}return r},x=(e,t)=>{for(let n=0,r=e.length;n<r;n++)t(e[n],n)},E=(e,t)=>{const n=[];for(let r=0,o=e.length;r<o;r++){const o=e[r];t(o,r)&&n.push(o)}return n},F=(e,t)=>((e,t,n)=>{for(let r=0,o=e.length;r<o;r++){const o=e[r];if(t(o,r))return b.some(o);if(n(o,r))break}return b.none()})(e,t,v),O=t=>{const n=e(b.none()),r=()=>n.get().each(t);return{clear:()=>{r(),n.set(b.none())},isSet:()=>n.get().isSome(),get:()=>n.get(),set:e=>{r(),n.set(b.some(e))}}},k=()=>O((e=>e.unbind())),T=Object.keys,C="undefined"!=typeof window?window:Function("return this;")(),A=(e,t)=>((e,t)=>{let n=null!=t?t:C;for(let t=0;t<e.length&&null!=n;++t)n=n[e[t]];return n})(e.split("."),t),R=Object.getPrototypeOf,L=e=>{const t=A("ownerDocument.defaultView",e);return i(e)&&((e=>((e,t)=>{const n=((e,t)=>A(e,t))(e,t);if(null==n)throw new Error(e+" not available on this browser");return n})("HTMLElement",e))(t).prototype.isPrototypeOf(e)||/^HTML\w*Element$/.test(R(e).constructor.name))},M=e=>t=>(e=>e.dom.nodeType)(t)===e,P=M(1),D=M(3),N=M(9),H=M(11),W=(e,t)=>{const n=e.dom.getAttribute(t);return null===n?void 0:n},q=(e,t)=>{e.dom.removeAttribute(t)},I=(e,t,n=0,r)=>{const o=e.indexOf(t,n);return-1!==o&&(!!u(r)||o+t.length<=r)},V=e=>void 0!==e.style&&m(e.style.getPropertyValue),j=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},B=j,_=(e,t)=>{const n=e.dom;if(1!==n.nodeType)return!1;{const e=n;if(void 0!==e.matches)return e.matches(t);if(void 0!==e.msMatchesSelector)return e.msMatchesSelector(t);if(void 0!==e.webkitMatchesSelector)return e.webkitMatchesSelector(t);if(void 0!==e.mozMatchesSelector)return e.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")}},z=e=>B(e.dom.ownerDocument),$=e=>S(e.dom.childNodes,B),U=m(Element.prototype.attachShadow)&&m(Node.prototype.getRootNode),K=p(U),X=U?e=>B(e.dom.getRootNode()):e=>N(e)?e:z(e),Y=e=>{const t=X(e);return H(n=t)&&d(n.dom.host)?b.some(t):b.none();var n},G=e=>B(e.dom.host),J=e=>{const t=D(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;const n=t.ownerDocument;return Y(B(t)).fold((()=>n.body.contains(t)),(r=J,o=G,e=>r(o(e))));var r,o},Q=(e,t,n)=>{if(!s(n))throw console.error("Invalid call to CSS.set. Property ",t,":: Value ",n,":: Element ",e),new Error("CSS value must be a string: "+n);V(e)&&e.style.setProperty(t,n)},Z=(e,t,n)=>{const r=e.dom;Q(r,t,n)},ee=(e,t)=>{const n=e.dom;((e,t)=>{const n=T(e);for(let r=0,o=n.length;r<o;r++){const o=n[r];t(e[o],o)}})(t,((e,t)=>{Q(n,t,e)}))},te=(e,t)=>{const n=e.dom,r=window.getComputedStyle(n).getPropertyValue(t);return""!==r||J(e)?r:ne(n,t)},ne=(e,t)=>V(e)?e.style.getPropertyValue(t):"",re=e=>{const t=B((e=>{if(K()&&d(e.target)){const t=B(e.target);if(P(t)&&d(t.dom.shadowRoot)&&e.composed&&e.composedPath){const t=e.composedPath();if(t)return((e,t)=>0<e.length?b.some(e[0]):b.none())(t)}}return b.from(e.target)})(e).getOr(e.target)),n=()=>e.stopPropagation(),r=()=>e.preventDefault(),o=(s=r,i=n,(...e)=>s(i.apply(null,e)));var s,i;return((e,t,n,r,o,s,i)=>({target:e,x:t,y:n,stop:r,prevent:o,kill:s,raw:i}))(t,e.clientX,e.clientY,n,r,o,e)},oe=(e,t,n,r)=>{e.dom.removeEventListener(t,n,r)},se=w,ie=(e,t,n)=>((e,t,n,r)=>((e,t,n,r,o)=>{const s=((e,t)=>n=>{e(n)&&t(re(n))})(n,r);return e.dom.addEventListener(t,s,o),{unbind:f(oe,e,t,s,o)}})(e,t,n,r,!1))(e,t,se,n),le=()=>ae(0,0),ae=(e,t)=>({major:e,minor:t}),ce={nu:ae,detect:(e,t)=>{const n=String(t).toLowerCase();return 0===e.length?le():((e,t)=>{const n=((e,t)=>{for(let n=0;n<e.length;n++){const r=e[n];if(r.test(t))return r}})(e,t);if(!n)return{major:0,minor:0};const r=e=>Number(t.replace(n,"$"+e));return ae(r(1),r(2))})(e,n)},unknown:le},ue=(e,t)=>{const n=String(t).toLowerCase();return F(e,(e=>e.search(n)))},de=/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,me=e=>t=>I(t,e),he=[{name:"Edge",versionRegexes:[/.*?edge\/ ?([0-9]+)\.([0-9]+)$/],search:e=>I(e,"edge/")&&I(e,"chrome")&&I(e,"safari")&&I(e,"applewebkit")},{name:"Chromium",brand:"Chromium",versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/,de],search:e=>I(e,"chrome")&&!I(e,"chromeframe")},{name:"IE",versionRegexes:[/.*?msie\ ?([0-9]+)\.([0-9]+).*/,/.*?rv:([0-9]+)\.([0-9]+).*/],search:e=>I(e,"msie")||I(e,"trident")},{name:"Opera",versionRegexes:[de,/.*?opera\/([0-9]+)\.([0-9]+).*/],search:me("opera")},{name:"Firefox",versionRegexes:[/.*?firefox\/\ ?([0-9]+)\.([0-9]+).*/],search:me("firefox")},{name:"Safari",versionRegexes:[de,/.*?cpu os ([0-9]+)_([0-9]+).*/],search:e=>(I(e,"safari")||I(e,"mobile/"))&&I(e,"applewebkit")}],ge=[{name:"Windows",search:me("win"),versionRegexes:[/.*?windows\ nt\ ?([0-9]+)\.([0-9]+).*/]},{name:"iOS",search:e=>I(e,"iphone")||I(e,"ipad"),versionRegexes:[/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,/.*cpu os ([0-9]+)_([0-9]+).*/,/.*cpu iphone os ([0-9]+)_([0-9]+).*/]},{name:"Android",search:me("android"),versionRegexes:[/.*?android\ ?([0-9]+)\.([0-9]+).*/]},{name:"macOS",search:me("mac os x"),versionRegexes:[/.*?mac\ os\ x\ ?([0-9]+)_([0-9]+).*/]},{name:"Linux",search:me("linux"),versionRegexes:[]},{name:"Solaris",search:me("sunos"),versionRegexes:[]},{name:"FreeBSD",search:me("freebsd"),versionRegexes:[]},{name:"ChromeOS",search:me("cros"),versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/]}],pe={browsers:p(he),oses:p(ge)},fe="Edge",ve="Chromium",we="Opera",be="Firefox",ye="Safari",Se=e=>{const t=e.current,n=e.version,r=e=>()=>t===e;return{current:t,version:n,isEdge:r(fe),isChromium:r(ve),isIE:r("IE"),isOpera:r(we),isFirefox:r(be),isSafari:r(ye)}},xe=()=>Se({current:void 0,version:ce.unknown()}),Ee=Se,Fe=(p(fe),p(ve),p("IE"),p(we),p(be),p(ye),"Windows"),Oe="Android",ke="Linux",Te="macOS",Ce="Solaris",Ae="FreeBSD",Re="ChromeOS",Le=e=>{const t=e.current,n=e.version,r=e=>()=>t===e;return{current:t,version:n,isWindows:r(Fe),isiOS:r("iOS"),isAndroid:r(Oe),isMacOS:r(Te),isLinux:r(ke),isSolaris:r(Ce),isFreeBSD:r(Ae),isChromeOS:r(Re)}},Me=()=>Le({current:void 0,version:ce.unknown()}),Pe=Le,De=(p(Fe),p("iOS"),p(Oe),p(ke),p(Te),p(Ce),p(Ae),p(Re),(e,t,n)=>{const r=pe.browsers(),o=pe.oses(),s=t.bind((e=>((e,t)=>((e,t)=>{for(let n=0;n<e.length;n++){const r=t(e[n]);if(r.isSome())return r}return b.none()})(t.brands,(t=>{const n=t.brand.toLowerCase();return F(e,(e=>{var t;return n===(null===(t=e.brand)||void 0===t?void 0:t.toLowerCase())})).map((e=>({current:e.name,version:ce.nu(parseInt(t.version,10),0)})))})))(r,e))).orThunk((()=>((e,t)=>ue(e,t).map((e=>{const n=ce.detect(e.versionRegexes,t);return{current:e.name,version:n}})))(r,e))).fold(xe,Ee),i=((e,t)=>ue(e,t).map((e=>{const n=ce.detect(e.versionRegexes,t);return{current:e.name,version:n}})))(o,e).fold(Me,Pe),l=((e,t,n,r)=>{const o=e.isiOS()&&!0===/ipad/i.test(n),s=e.isiOS()&&!o,i=e.isiOS()||e.isAndroid(),l=i||r("(pointer:coarse)"),a=o||!s&&i&&r("(min-device-width:768px)"),c=s||i&&!a,u=t.isSafari()&&e.isiOS()&&!1===/safari/i.test(n),d=!c&&!a&&!u;return{isiPad:p(o),isiPhone:p(s),isTablet:p(a),isPhone:p(c),isTouch:p(l),isAndroid:e.isAndroid,isiOS:e.isiOS,isWebView:p(u),isDesktop:p(d)}})(i,s,e,n);return{browser:s,os:i,deviceType:l}}),Ne=e=>window.matchMedia(e).matches;let He=(e=>{let t,n=!1;return(...r)=>(n||(n=!0,t=e.apply(null,r)),t)})((()=>De(navigator.userAgent,b.from(navigator.userAgentData),Ne)));const We=(e,t)=>({left:e,top:t,translate:(n,r)=>We(e+n,t+r)}),qe=We,Ie=e=>{const t=void 0===e?window:e;return He().browser.isFirefox()?b.none():b.from(t.visualViewport)},Ve=(e,t,n,r)=>({x:e,y:t,width:n,height:r,right:e+n,bottom:t+r}),je=e=>{const t=void 0===e?window:e,n=t.document,r=(e=>{const t=void 0!==e?e.dom:document,n=t.body.scrollLeft||t.documentElement.scrollLeft,r=t.body.scrollTop||t.documentElement.scrollTop;return qe(n,r)})(B(n));return Ie(t).fold((()=>{const e=t.document.documentElement,n=e.clientWidth,o=e.clientHeight;return Ve(r.left,r.top,n,o)}),(e=>Ve(Math.max(e.pageLeft,r.left),Math.max(e.pageTop,r.top),e.width,e.height)))},Be=(e,t,n)=>Ie(n).map((n=>{const r=e=>t(re(e));return n.addEventListener(e,r),{unbind:()=>n.removeEventListener(e,r)}})).getOrThunk((()=>({unbind:g})));var _e=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),ze=tinymce.util.Tools.resolve("tinymce.Env");const $e=(e,t)=>{e.dispatch("FullscreenStateChanged",{state:t}),e.dispatch("ResizeEditor")},Ue=("fullscreen_native",e=>e.options.get("fullscreen_native"));const Ke=e=>{return e.dom===(void 0!==(t=z(e).dom).fullscreenElement?t.fullscreenElement:void 0!==t.msFullscreenElement?t.msFullscreenElement:void 0!==t.webkitFullscreenElement?t.webkitFullscreenElement:null);var t},Xe=(e,t,n)=>((e,t,n)=>E(((e,t)=>{const n=m(t)?t:v;let r=e.dom;const o=[];for(;null!==r.parentNode&&void 0!==r.parentNode;){const e=r.parentNode,t=B(e);if(o.push(t),!0===n(t))break;r=e}return o})(e,n),t))(e,(e=>_(e,t)),n),Ye=(e,t)=>((e,n)=>{return E((e=>b.from(e.dom.parentNode).map(B))(r=e).map($).map((e=>E(e,(e=>{return t=e,!(r.dom===t.dom);var t})))).getOr([]),(e=>_(e,t)));var r})(e),Ge="data-ephox-mobile-fullscreen-style",Je="position:absolute!important;",Qe="top:0!important;left:0!important;margin:0!important;padding:0!important;width:100%!important;height:100%!important;overflow:visible!important;",Ze=ze.os.isAndroid(),et=(e,t,n)=>{const r=t=>n=>{const r=W(n,"style"),o=void 0===r?"no-styles":r.trim();o!==t&&(((e,t,n)=>{((e,t,n)=>{if(!(s(n)||c(n)||h(n)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",n,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,n+"")})(e.dom,t,n)})(n,Ge,o),ee(n,e.parseStyle(t)))},o=Xe(t,"*"),i=(e=>{const t=[];for(let n=0,r=e.length;n<r;++n){if(!l(e[n]))throw new Error("Arr.flatten item "+n+" was not an array, input: "+e);y.apply(t,e[n])}return t})(S(o,(e=>Ye(e,"*:not(.tox-silver-sink)")))),a=(e=>{const t=te(e,"background-color");return void 0!==t&&""!==t?"background-color:"+t+"!important":"background-color:rgb(255,255,255)!important;"})(n);x(i,r("display:none!important;")),x(o,r(Je+Qe+a)),r((!0===Ze?"":Je)+Qe+a)(t)},tt=_e.DOM,nt=Ie().fold((()=>({bind:g,unbind:g})),(e=>{const t=(()=>{const e=O(g);return{...e,on:t=>e.get().each(t)}})(),n=k(),r=k(),o=((e,t)=>{let n=null;return{cancel:()=>{a(n)||(clearTimeout(n),n=null)},throttle:(...t)=>{a(n)&&(n=setTimeout((()=>{n=null,e.apply(null,t)}),50))}}})((()=>{document.body.scrollTop=0,document.documentElement.scrollTop=0,window.requestAnimationFrame((()=>{t.on((t=>ee(t,{top:e.offsetTop+"px",left:e.offsetLeft+"px",height:e.height+"px",width:e.width+"px"})))}))}));return{bind:e=>{t.set(e),o.throttle(),n.set(Be("resize",o.throttle)),r.set(Be("scroll",o.throttle))},unbind:()=>{t.on((()=>{n.clear(),r.clear()})),t.clear()}}})),rt=(e,t)=>{const n=document.body,r=document.documentElement,o=e.getContainer(),s=B(o),i=(l=s,b.from(l.dom.nextSibling).map(B)).filter((e=>(e=>P(e)&&L(e.dom))(e)&&((e,t)=>(e=>void 0!==e.dom.classList)(e)&&e.dom.classList.contains("tox-silver-sink"))(e)));var l;const a=(e=>{const t=B(e.getElement());return Y(t).map(G).getOrThunk((()=>(e=>{const t=e.dom.body;if(null==t)throw new Error("Body is not available yet");return B(t)})(z(t))))})(e),c=t.get(),u=B(e.getBody()),d=ze.deviceType.isTouch(),m=o.style,h=e.iframeElement,g=null==h?void 0:h.style,p=e=>{e(n,"tox-fullscreen"),e(r,"tox-fullscreen"),e(o,"tox-fullscreen"),Y(s).map((e=>G(e).dom)).each((t=>{e(t,"tox-fullscreen"),e(t,"tox-shadowhost")}))},f=()=>{d&&(e=>{const t=((e,t)=>{const n=document;return 1!==(r=n).nodeType&&9!==r.nodeType&&11!==r.nodeType||0===r.childElementCount?[]:S(n.querySelectorAll(e),B);var r})("["+Ge+"]");x(t,(t=>{const n=W(t,Ge);n&&"no-styles"!==n?ee(t,e.parseStyle(n)):q(t,"style"),q(t,Ge)}))})(e.dom),p(tt.removeClass),nt.unbind(),b.from(t.get()).each((e=>e.fullscreenChangeHandler.unbind()))};if(c)c.fullscreenChangeHandler.unbind(),Ue(e)&&Ke(a)&&(e=>{const t=e.dom;t.exitFullscreen?t.exitFullscreen():t.msExitFullscreen?t.msExitFullscreen():t.webkitCancelFullScreen&&t.webkitCancelFullScreen()})(z(a)),g.width=c.iframeWidth,g.height=c.iframeHeight,m.width=c.containerWidth,m.height=c.containerHeight,m.top=c.containerTop,m.left=c.containerLeft,w=i,y=c.sinkCssPosition,E=(e,t)=>{Z(e,"position",t)},w.isSome()&&y.isSome()?b.some(E(w.getOrDie(),y.getOrDie())):b.none(),f(),v=c.scrollPos,window.scrollTo(v.x,v.y),t.set(null),$e(e,!1),e.off("remove",f);else{const n=ie(z(a),void 0!==document.fullscreenElement?"fullscreenchange":void 0!==document.msFullscreenElement?"MSFullscreenChange":void 0!==document.webkitFullscreenElement?"webkitfullscreenchange":"fullscreenchange",(n=>{Ue(e)&&(Ke(a)||null===t.get()||rt(e,t))})),r={scrollPos:je(window),containerWidth:m.width,containerHeight:m.height,containerTop:m.top,containerLeft:m.left,iframeWidth:g.width,iframeHeight:g.height,fullscreenChangeHandler:n,sinkCssPosition:i.map((e=>te(e,"position")))};d&&et(e.dom,s,u),g.width=g.height="100%",m.width=m.height="",p(tt.addClass),i.each((e=>{Z(e,"position","fixed")})),nt.bind(s),e.on("remove",f),t.set(r),Ue(e)&&(e=>{const t=e.dom;t.requestFullscreen?t.requestFullscreen():t.msRequestFullscreen?t.msRequestFullscreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()})(a),$e(e,!0)}var v,w,y,E},ot=(e,t)=>n=>{n.setActive(null!==t.get());const r=e=>n.setActive(e.state);return e.on("FullscreenStateChanged",r),()=>e.off("FullscreenStateChanged",r)};t.add("fullscreen",(t=>{const n=e(null);return t.inline||((e=>{(0,e.options.register)("fullscreen_native",{processor:"boolean",default:!1})})(t),((e,t)=>{e.addCommand("mceFullScreen",(()=>{rt(e,t)}))})(t,n),((e,t)=>{const n=()=>e.execCommand("mceFullScreen");e.ui.registry.addToggleMenuItem("fullscreen",{text:"Fullscreen",icon:"fullscreen",shortcut:"Meta+Shift+F",onAction:n,onSetup:ot(e,t)}),e.ui.registry.addToggleButton("fullscreen",{tooltip:"Fullscreen",icon:"fullscreen",onAction:n,onSetup:ot(e,t)})})(t,n),t.addShortcut("Meta+Shift+F","","mceFullScreen")),(e=>({isFullscreen:()=>null!==e.get()}))(n)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js000064400000003156151213255070022215 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),a=tinymce.util.Tools.resolve("tinymce.Env");const t=e=>a=>a.options.get(e),n=t("pagebreak_separator"),o=t("pagebreak_split_block"),r="mce-pagebreak",s=e=>{const t=`<img src="${a.transparentSrc}" class="${r}" data-mce-resize="false" data-mce-placeholder />`;return e?`<p>${t}</p>`:t},c=e=>a=>{const t=()=>{a.setEnabled(e.selection.isEditable())};return e.on("NodeChange",t),t(),()=>{e.off("NodeChange",t)}};e.add("pagebreak",(e=>{(e=>{const a=e.options.register;a("pagebreak_separator",{processor:"string",default:"\x3c!-- pagebreak --\x3e"}),a("pagebreak_split_block",{processor:"boolean",default:!1})})(e),(e=>{e.addCommand("mcePageBreak",(()=>{e.insertContent(s(o(e)))}))})(e),(e=>{const a=()=>e.execCommand("mcePageBreak");e.ui.registry.addButton("pagebreak",{icon:"page-break",tooltip:"Page break",onAction:a,onSetup:c(e)}),e.ui.registry.addMenuItem("pagebreak",{text:"Page break",icon:"page-break",onAction:a,onSetup:c(e)})})(e),(e=>{const a=n(e),t=()=>o(e),c=new RegExp(a.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,(e=>"\\"+e)),"gi");e.on("BeforeSetContent",(e=>{e.content=e.content.replace(c,s(t()))})),e.on("PreInit",(()=>{e.serializer.addNodeFilter("img",(n=>{let o,s,c=n.length;for(;c--;)if(o=n[c],s=o.attr("class"),s&&-1!==s.indexOf(r)){const n=o.parent;if(n&&e.schema.getBlockElements()[n.name]&&t()){n.type=3,n.value=a,n.raw=!0,o.remove();continue}o.type=3,o.value=a,o.raw=!0}}))}))})(e),(e=>{e.on("ResolveName",(a=>{"IMG"===a.target.nodeName&&e.dom.hasClass(a.target,r)&&(a.name="pagebreak")}))})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/anchor/plugin.min.js000064400000005204151213255100021534 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.dom.RangeUtils"),o=tinymce.util.Tools.resolve("tinymce.util.Tools");const n=("allow_html_in_named_anchor",e=>e.options.get("allow_html_in_named_anchor"));const a="a:not([href])",r=e=>!e,i=e=>e.getAttribute("id")||e.getAttribute("name")||"",l=e=>(e=>"a"===e.nodeName.toLowerCase())(e)&&!e.getAttribute("href")&&""!==i(e),s=e=>e.dom.getParent(e.selection.getStart(),a),d=(e,a)=>{const r=s(e);r?((e,t,o)=>{o.removeAttribute("name"),o.id=t,e.addVisual(),e.undoManager.add()})(e,a,r):((e,a)=>{e.undoManager.transact((()=>{n(e)||e.selection.collapse(!0),e.selection.isCollapsed()?e.insertContent(e.dom.createHTML("a",{id:a})):((e=>{const n=e.dom;t(n).walk(e.selection.getRng(),(e=>{o.each(e,(e=>{var t;l(t=e)&&!t.firstChild&&n.remove(e,!1)}))}))})(e),e.formatter.remove("namedAnchor",void 0,void 0,!0),e.formatter.apply("namedAnchor",{value:a}),e.addVisual())}))})(e,a),e.focus()},c=e=>(e=>r(e.attr("href"))&&!r(e.attr("id")||e.attr("name")))(e)&&!e.firstChild,m=e=>t=>{for(let o=0;o<t.length;o++){const n=t[o];c(n)&&n.attr("contenteditable",e)}},u=e=>t=>{const o=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",o),o(),()=>{e.off("NodeChange",o)}};e.add("anchor",(e=>{(e=>{(0,e.options.register)("allow_html_in_named_anchor",{processor:"boolean",default:!1})})(e),(e=>{e.on("PreInit",(()=>{e.parser.addNodeFilter("a",m("false")),e.serializer.addNodeFilter("a",m(null))}))})(e),(e=>{e.addCommand("mceAnchor",(()=>{(e=>{const t=(e=>{const t=s(e);return t?i(t):""})(e);e.windowManager.open({title:"Anchor",size:"normal",body:{type:"panel",items:[{name:"id",type:"input",label:"ID",placeholder:"example"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{id:t},onSubmit:t=>{((e,t)=>/^[A-Za-z][A-Za-z0-9\-:._]*$/.test(t)?(d(e,t),!0):(e.windowManager.alert("ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores."),!1))(e,t.getData().id)&&t.close()}})})(e)}))})(e),(e=>{const t=()=>e.execCommand("mceAnchor");e.ui.registry.addToggleButton("anchor",{icon:"bookmark",tooltip:"Anchor",onAction:t,onSetup:t=>{const o=e.selection.selectorChangedWithUnbind("a:not([href])",t.setActive).unbind,n=u(e)(t);return()=>{o(),n()}}}),e.ui.registry.addMenuItem("anchor",{icon:"bookmark",text:"Anchor...",onAction:t,onSetup:u(e)})})(e),e.on("PreInit",(()=>{(e=>{e.formatter.register("namedAnchor",{inline:"a",selector:a,remove:"all",split:!0,deep:!0,attributes:{id:"%value"},onmatch:(e,t,o)=>l(e)})})(e)}))}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/image/plugin.min.js000064400000046166151213255100021360 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=Object.getPrototypeOf,a=(e,t,a)=>{var i;return!!a(e,t.prototype)||(null===(i=e.constructor)||void 0===i?void 0:i.name)===t.name},i=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&a(e,String,((e,t)=>t.isPrototypeOf(e)))?"string":t})(t)===e,s=e=>t=>typeof t===e,r=i("string"),o=i("object"),n=e=>((e,i)=>o(e)&&a(e,i,((e,a)=>t(e)===a)))(e,Object),l=i("array"),c=(null,e=>null===e);const m=s("boolean"),d=e=>!(e=>null==e)(e),g=s("function"),u=s("number"),p=()=>{};class h{constructor(e,t){this.tag=e,this.value=t}static some(e){return new h(!0,e)}static none(){return h.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?h.some(e(this.value)):h.none()}bind(e){return this.tag?e(this.value):h.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:h.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return d(e)?h.some(e):h.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}h.singletonNone=new h(!1);const b=Object.keys,v=Object.hasOwnProperty,y=(e,t)=>v.call(e,t),f=Array.prototype.push,w=e=>{const t=[];for(let a=0,i=e.length;a<i;++a){if(!l(e[a]))throw new Error("Arr.flatten item "+a+" was not an array, input: "+e);f.apply(t,e[a])}return t};"undefined"!=typeof window?window:Function("return this;")();const A=(e,t,a)=>{((e,t,a)=>{if(!(r(a)||m(a)||u(a)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",a,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,a+"")})(e.dom,t,a)},D=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},_=D;var C=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),I=tinymce.util.Tools.resolve("tinymce.util.URI");const U=e=>e.length>0,x=e=>t=>t.options.get(e),S=x("image_dimensions"),N=x("image_advtab"),T=x("image_uploadtab"),O=x("image_prepend_url"),E=x("image_class_list"),L=x("image_description"),j=x("image_title"),M=x("image_caption"),R=x("image_list"),k=x("a11y_advanced_options"),z=x("automatic_uploads"),B=(e,t)=>Math.max(parseInt(e,10),parseInt(t,10)),P=e=>(e&&(e=e.replace(/px$/,"")),e),F=e=>(e.length>0&&/^[0-9]+$/.test(e)&&(e+="px"),e),H=e=>"IMG"===e.nodeName&&(e.hasAttribute("data-mce-object")||e.hasAttribute("data-mce-placeholder")),G=(e,t)=>{const a=e.options.get;return I.isDomSafe(t,"img",{allow_html_data_urls:a("allow_html_data_urls"),allow_script_urls:a("allow_script_urls"),allow_svg_data_urls:a("allow_svg_data_urls")})},W=C.DOM,$=e=>e.style.marginLeft&&e.style.marginRight&&e.style.marginLeft===e.style.marginRight?P(e.style.marginLeft):"",V=e=>e.style.marginTop&&e.style.marginBottom&&e.style.marginTop===e.style.marginBottom?P(e.style.marginTop):"",K=e=>e.style.borderWidth?P(e.style.borderWidth):"",Z=(e,t)=>{var a;return e.hasAttribute(t)&&null!==(a=e.getAttribute(t))&&void 0!==a?a:""},q=e=>null!==e.parentNode&&"FIGURE"===e.parentNode.nodeName,J=(e,t,a)=>{""===a||null===a?e.removeAttribute(t):e.setAttribute(t,a)},Q=(e,t)=>{const a=e.getAttribute("style"),i=t(null!==a?a:"");i.length>0?(e.setAttribute("style",i),e.setAttribute("data-mce-style",i)):e.removeAttribute("style")},X=(e,t)=>(e,a,i)=>{const s=e.style;s[a]?(s[a]=F(i),Q(e,t)):J(e,a,i)},Y=(e,t)=>e.style[t]?P(e.style[t]):Z(e,t),ee=(e,t)=>{const a=F(t);e.style.marginLeft=a,e.style.marginRight=a},te=(e,t)=>{const a=F(t);e.style.marginTop=a,e.style.marginBottom=a},ae=(e,t)=>{const a=F(t);e.style.borderWidth=a},ie=(e,t)=>{e.style.borderStyle=t},se=e=>{var t;return null!==(t=e.style.borderStyle)&&void 0!==t?t:""},re=e=>d(e)&&"FIGURE"===e.nodeName,oe=e=>0===W.getAttrib(e,"alt").length&&"presentation"===W.getAttrib(e,"role"),ne=e=>oe(e)?"":Z(e,"alt"),le=(e,t)=>{var a;const i=document.createElement("img");return J(i,"style",t.style),($(i)||""!==t.hspace)&&ee(i,t.hspace),(V(i)||""!==t.vspace)&&te(i,t.vspace),(K(i)||""!==t.border)&&ae(i,t.border),(se(i)||""!==t.borderStyle)&&ie(i,t.borderStyle),e(null!==(a=i.getAttribute("style"))&&void 0!==a?a:"")},ce=(e,t)=>({src:Z(t,"src"),alt:ne(t),title:Z(t,"title"),width:Y(t,"width"),height:Y(t,"height"),class:Z(t,"class"),style:e(Z(t,"style")),caption:q(t),hspace:$(t),vspace:V(t),border:K(t),borderStyle:se(t),isDecorative:oe(t)}),me=(e,t,a,i,s)=>{a[i]!==t[i]&&s(e,i,String(a[i]))},de=(e,t,a)=>{if(a){W.setAttrib(e,"role","presentation");const t=_(e);A(t,"alt","")}else{if(c(t)){"alt",_(e).dom.removeAttribute("alt")}else{const a=_(e);A(a,"alt",t)}"presentation"===W.getAttrib(e,"role")&&W.setAttrib(e,"role","")}},ge=(e,t)=>(a,i,s)=>{e(a,s),Q(a,t)},ue=(e,t,a)=>{const i=ce(e,a);me(a,i,t,"caption",((e,t,a)=>(e=>{q(e)?(e=>{const t=e.parentNode;d(t)&&(W.insertAfter(e,t),W.remove(t))})(e):(e=>{const t=W.create("figure",{class:"image"});W.insertAfter(t,e),t.appendChild(e),t.appendChild(W.create("figcaption",{contentEditable:"true"},"Caption")),t.contentEditable="false"})(e)})(e))),me(a,i,t,"src",J),me(a,i,t,"title",J),me(a,i,t,"width",X(0,e)),me(a,i,t,"height",X(0,e)),me(a,i,t,"class",J),me(a,i,t,"style",ge(((e,t)=>J(e,"style",t)),e)),me(a,i,t,"hspace",ge(ee,e)),me(a,i,t,"vspace",ge(te,e)),me(a,i,t,"border",ge(ae,e)),me(a,i,t,"borderStyle",ge(ie,e)),((e,t,a)=>{a.alt===t.alt&&a.isDecorative===t.isDecorative||de(e,a.alt,a.isDecorative)})(a,i,t)},pe=(e,t)=>{const a=(e=>{if(e.margin){const t=String(e.margin).split(" ");switch(t.length){case 1:e["margin-top"]=e["margin-top"]||t[0],e["margin-right"]=e["margin-right"]||t[0],e["margin-bottom"]=e["margin-bottom"]||t[0],e["margin-left"]=e["margin-left"]||t[0];break;case 2:e["margin-top"]=e["margin-top"]||t[0],e["margin-right"]=e["margin-right"]||t[1],e["margin-bottom"]=e["margin-bottom"]||t[0],e["margin-left"]=e["margin-left"]||t[1];break;case 3:e["margin-top"]=e["margin-top"]||t[0],e["margin-right"]=e["margin-right"]||t[1],e["margin-bottom"]=e["margin-bottom"]||t[2],e["margin-left"]=e["margin-left"]||t[1];break;case 4:e["margin-top"]=e["margin-top"]||t[0],e["margin-right"]=e["margin-right"]||t[1],e["margin-bottom"]=e["margin-bottom"]||t[2],e["margin-left"]=e["margin-left"]||t[3]}delete e.margin}return e})(e.dom.styles.parse(t)),i=e.dom.styles.parse(e.dom.styles.serialize(a));return e.dom.styles.serialize(i)},he=e=>{const t=e.selection.getNode(),a=e.dom.getParent(t,"figure.image");return a?e.dom.select("img",a)[0]:t&&("IMG"!==t.nodeName||H(t))?null:t},be=(e,t)=>{var a;const i=e.dom,s=((t,a)=>{const i={};var s;return((e,t,a,i)=>{((e,t)=>{const a=b(e);for(let i=0,s=a.length;i<s;i++){const s=a[i];t(e[s],s)}})(e,((e,s)=>{(t(e,s)?a:i)(e,s)}))})(t,((t,a)=>!e.schema.isValidChild(a,"figure")),(s=i,(e,t)=>{s[t]=e}),p),i})(e.schema.getTextBlockElements()),r=i.getParent(t.parentNode,(e=>{return t=s,a=e.nodeName,y(t,a)&&void 0!==t[a]&&null!==t[a];var t,a}),e.getBody());return r&&null!==(a=i.split(r,t))&&void 0!==a?a:t},ve=(e,t)=>{const a=((t,a)=>{const i=document.createElement("img");if(ue((t=>pe(e,t)),{...a,caption:!1},i),de(i,a.alt,a.isDecorative),a.caption){const e=W.create("figure",{class:"image"});return e.appendChild(i),e.appendChild(W.create("figcaption",{contentEditable:"true"},"Caption")),e.contentEditable="false",e}return i})(0,t);e.dom.setAttrib(a,"data-mce-id","__mcenew"),e.focus(),e.selection.setContent(a.outerHTML);const i=e.dom.select('*[data-mce-id="__mcenew"]')[0];if(e.dom.setAttrib(i,"data-mce-id",null),re(i)){const t=be(e,i);e.selection.select(t)}else e.selection.select(i)},ye=(e,t)=>{const a=he(e);if(a){const i={...ce((t=>pe(e,t)),a),...t},s=((e,t)=>{const a=t.src;return{...t,src:G(e,a)?a:""}})(e,i);i.src?((e,t)=>{const a=he(e);if(a)if(ue((t=>pe(e,t)),t,a),((e,t)=>{e.dom.setAttrib(t,"src",t.getAttribute("src"))})(e,a),re(a.parentNode)){const t=a.parentNode;be(e,t),e.selection.select(a.parentNode)}else e.selection.select(a),((e,t,a)=>{const i=()=>{a.onload=a.onerror=null,e.selection&&(e.selection.select(a),e.nodeChanged())};a.onload=()=>{t.width||t.height||!S(e)||e.dom.setAttribs(a,{width:String(a.clientWidth),height:String(a.clientHeight)}),i()},a.onerror=i})(e,t,a)})(e,s):((e,t)=>{if(t){const a=e.dom.is(t.parentNode,"figure.image")?t.parentNode:t;e.dom.remove(a),e.focus(),e.nodeChanged(),e.dom.isEmpty(e.getBody())&&(e.setContent(""),e.selection.setCursorLocation())}})(e,a)}else t.src&&ve(e,{src:"",alt:"",title:"",width:"",height:"",class:"",style:"",caption:!1,hspace:"",vspace:"",border:"",borderStyle:"",isDecorative:!1,...t})},fe=(we=(e,t)=>n(e)&&n(t)?fe(e,t):t,(...e)=>{if(0===e.length)throw new Error("Can't merge zero objects");const t={};for(let a=0;a<e.length;a++){const i=e[a];for(const e in i)y(i,e)&&(t[e]=we(t[e],i[e]))}return t});var we,Ae=tinymce.util.Tools.resolve("tinymce.util.ImageUploader"),De=tinymce.util.Tools.resolve("tinymce.util.Tools");const _e=e=>r(e.value)?e.value:"",Ce=(e,t)=>{const a=[];return De.each(e,(e=>{const i=(e=>r(e.text)?e.text:r(e.title)?e.title:"")(e);if(void 0!==e.menu){const s=Ce(e.menu,t);a.push({text:i,items:s})}else{const s=t(e);a.push({text:i,value:s})}})),a},Ie=(e=_e)=>t=>t?h.from(t).map((t=>Ce(t,e))):h.none(),Ue=(e,t)=>((e,a)=>{for(let a=0;a<e.length;a++){const s=(e=>y(e,"items"))(i=e[a])?Ue(i.items,t):i.value===t?h.some(i):h.none();if(s.isSome())return s}var i;return h.none()})(e),xe=Ie,Se=(e,t)=>e.bind((e=>Ue(e,t))),Ne=e=>{const t=xe((t=>e.convertURL(t.value||t.url||"","src"))),a=new Promise((a=>{((e,t)=>{const a=R(e);r(a)?fetch(a).then((e=>{e.ok&&e.json().then(t)})):g(a)?a(t):t(a)})(e,(e=>{a(t(e).map((e=>w([[{text:"None",value:""}],e]))))}))})),i=(A=E(e),Ie(_e)(A)),s=N(e),o=T(e),n=(e=>U(e.options.get("images_upload_url")))(e),l=(e=>d(e.options.get("images_upload_handler")))(e),c=(e=>{const t=he(e);return t?ce((t=>pe(e,t)),t):{src:"",alt:"",title:"",width:"",height:"",class:"",style:"",caption:!1,hspace:"",vspace:"",border:"",borderStyle:"",isDecorative:!1}})(e),m=L(e),u=j(e),p=S(e),b=M(e),v=k(e),y=z(e),f=h.some(O(e)).filter((e=>r(e)&&e.length>0));var A;return a.then((e=>({image:c,imageList:e,classList:i,hasAdvTab:s,hasUploadTab:o,hasUploadUrl:n,hasUploadHandler:l,hasDescription:m,hasImageTitle:u,hasDimensions:p,hasImageCaption:b,prependURL:f,hasAccessibilityOptions:v,automaticUploads:y})))},Te=e=>{const t=e.imageList.map((e=>({name:"images",type:"listbox",label:"Image list",items:e}))),a={name:"alt",type:"input",label:"Alternative description",enabled:!(e.hasAccessibilityOptions&&e.image.isDecorative)},i=e.classList.map((e=>({name:"classes",type:"listbox",label:"Class",items:e})));return w([[{name:"src",type:"urlinput",filetype:"image",label:"Source",picker_text:"Browse files"}],t.toArray(),e.hasAccessibilityOptions&&e.hasDescription?[{type:"label",label:"Accessibility",items:[{name:"isDecorative",type:"checkbox",label:"Image is decorative"}]}]:[],e.hasDescription?[a]:[],e.hasImageTitle?[{name:"title",type:"input",label:"Image title"}]:[],e.hasDimensions?[{name:"dimensions",type:"sizeinput"}]:[],[{...(s=e.classList.isSome()&&e.hasImageCaption,s?{type:"grid",columns:2}:{type:"panel"}),items:w([i.toArray(),e.hasImageCaption?[{type:"label",label:"Caption",items:[{type:"checkbox",name:"caption",label:"Show caption"}]}]:[]])}]]);var s},Oe=e=>({title:"General",name:"general",items:Te(e)}),Ee=Te,Le=e=>({src:{value:e.src,meta:{}},images:e.src,alt:e.alt,title:e.title,dimensions:{width:e.width,height:e.height},classes:e.class,caption:e.caption,style:e.style,vspace:e.vspace,border:e.border,hspace:e.hspace,borderstyle:e.borderStyle,fileinput:[],isDecorative:e.isDecorative}),je=(e,t)=>({src:e.src.value,alt:null!==e.alt&&0!==e.alt.length||!t?e.alt:null,title:e.title,width:e.dimensions.width,height:e.dimensions.height,class:e.classes,style:e.style,caption:e.caption,hspace:e.hspace,vspace:e.vspace,border:e.border,borderStyle:e.borderstyle,isDecorative:e.isDecorative}),Me=(e,t,a,i)=>{((e,t)=>{const a=t.getData();((e,t)=>/^(?:[a-zA-Z]+:)?\/\//.test(t)?h.none():e.prependURL.bind((e=>t.substring(0,e.length)!==e?h.some(e+t):h.none())))(e,a.src.value).each((e=>{t.setData({src:{value:e,meta:a.src.meta}})}))})(t,i),((e,t)=>{const a=t.getData(),i=a.src.meta;if(void 0!==i){const s=fe({},a);((e,t,a)=>{e.hasDescription&&r(a.alt)&&(t.alt=a.alt),e.hasAccessibilityOptions&&(t.isDecorative=a.isDecorative||t.isDecorative||!1),e.hasImageTitle&&r(a.title)&&(t.title=a.title),e.hasDimensions&&(r(a.width)&&(t.dimensions.width=a.width),r(a.height)&&(t.dimensions.height=a.height)),r(a.class)&&Se(e.classList,a.class).each((e=>{t.classes=e.value})),e.hasImageCaption&&m(a.caption)&&(t.caption=a.caption),e.hasAdvTab&&(r(a.style)&&(t.style=a.style),r(a.vspace)&&(t.vspace=a.vspace),r(a.border)&&(t.border=a.border),r(a.hspace)&&(t.hspace=a.hspace),r(a.borderstyle)&&(t.borderstyle=a.borderstyle))})(e,s,i),t.setData(s)}})(t,i),((e,t,a,i)=>{const s=i.getData(),r=s.src.value,o=s.src.meta||{};o.width||o.height||!t.hasDimensions||(U(r)?e.imageSize(r).then((e=>{a.open&&i.setData({dimensions:e})})).catch((e=>console.error(e))):i.setData({dimensions:{width:"",height:""}}))})(e,t,a,i),((e,t,a)=>{const i=a.getData(),s=Se(e.imageList,i.src.value);t.prevImage=s,a.setData({images:s.map((e=>e.value)).getOr("")})})(t,a,i)},Re=(e,t,a,i)=>{const s=i.getData();var r;i.block("Uploading image"),(r=s.fileinput,((e,t)=>0<e.length?h.some(e[0]):h.none())(r)).fold((()=>{i.unblock()}),(s=>{const r=URL.createObjectURL(s),o=()=>{i.unblock(),URL.revokeObjectURL(r)},n=s=>{i.setData({src:{value:s,meta:{}}}),i.showTab("general"),Me(e,t,a,i)};var l;(l=s,new Promise(((e,t)=>{const a=new FileReader;a.onload=()=>{e(a.result)},a.onerror=()=>{var e;t(null===(e=a.error)||void 0===e?void 0:e.message)},a.readAsDataURL(l)}))).then((a=>{const l=e.createBlobCache(s,r,a);t.automaticUploads?e.uploadImage(l).then((e=>{n(e.url),o()})).catch((t=>{o(),e.alertErr(t)})):(e.addToBlobCache(l),n(l.blobUri()),i.unblock())}))}))},ke=(e,t,a)=>(i,s)=>{"src"===s.name?Me(e,t,a,i):"images"===s.name?((e,t,a,i)=>{const s=i.getData(),r=Se(t.imageList,s.images);r.each((e=>{const t=""===s.alt||a.prevImage.map((e=>e.text===s.alt)).getOr(!1);t?""===e.value?i.setData({src:e,alt:a.prevAlt}):i.setData({src:e,alt:e.text}):i.setData({src:e})})),a.prevImage=r,Me(e,t,a,i)})(e,t,a,i):"alt"===s.name?a.prevAlt=i.getData().alt:"fileinput"===s.name?Re(e,t,a,i):"isDecorative"===s.name&&i.setEnabled("alt",!i.getData().isDecorative)},ze=e=>()=>{e.open=!1},Be=e=>e.hasAdvTab||e.hasUploadUrl||e.hasUploadHandler?{type:"tabpanel",tabs:w([[Oe(e)],e.hasAdvTab?[{title:"Advanced",name:"advanced",items:[{type:"grid",columns:2,items:[{type:"input",label:"Vertical space",name:"vspace",inputMode:"numeric"},{type:"input",label:"Horizontal space",name:"hspace",inputMode:"numeric"},{type:"input",label:"Border width",name:"border",inputMode:"numeric"},{type:"listbox",name:"borderstyle",label:"Border style",items:[{text:"Select...",value:""},{text:"Solid",value:"solid"},{text:"Dotted",value:"dotted"},{text:"Dashed",value:"dashed"},{text:"Double",value:"double"},{text:"Groove",value:"groove"},{text:"Ridge",value:"ridge"},{text:"Inset",value:"inset"},{text:"Outset",value:"outset"},{text:"None",value:"none"},{text:"Hidden",value:"hidden"}]}]}]}]:[],e.hasUploadTab&&(e.hasUploadUrl||e.hasUploadHandler)?[{title:"Upload",name:"upload",items:[{type:"dropzone",name:"fileinput"}]}]:[]])}:{type:"panel",items:Ee(e)},Pe=(e,t,a)=>i=>{const s=fe(Le(t.image),i.getData()),r={...s,style:le(a.normalizeCss,je(s,!1))};e.execCommand("mceUpdateImage",!1,je(r,t.hasAccessibilityOptions)),e.editorUpload.uploadImagesAuto(),i.close()},Fe=e=>t=>G(e,t)?(e=>new Promise((t=>{const a=document.createElement("img"),i=e=>{a.onload=a.onerror=null,a.parentNode&&a.parentNode.removeChild(a),t(e)};a.onload=()=>{const e={width:B(a.width,a.clientWidth),height:B(a.height,a.clientHeight)};i(Promise.resolve(e))},a.onerror=()=>{i(Promise.reject(`Failed to get image dimensions for: ${e}`))};const s=a.style;s.visibility="hidden",s.position="fixed",s.bottom=s.left="0px",s.width=s.height="auto",document.body.appendChild(a),a.src=e})))(e.documentBaseURI.toAbsolute(t)).then((e=>({width:String(e.width),height:String(e.height)}))):Promise.resolve({width:"",height:""}),He=e=>(t,a,i)=>{var s;return e.editorUpload.blobCache.create({blob:t,blobUri:a,name:null===(s=t.name)||void 0===s?void 0:s.replace(/\.[^\.]+$/,""),filename:t.name,base64:i.split(",")[1]})},Ge=e=>t=>{e.editorUpload.blobCache.add(t)},We=e=>t=>{e.windowManager.alert(t)},$e=e=>t=>pe(e,t),Ve=e=>t=>e.dom.parseStyle(t),Ke=e=>(t,a)=>e.dom.serializeStyle(t,a),Ze=e=>t=>Ae(e).upload([t],!1).then((e=>{var t;return 0===e.length?Promise.reject("Failed to upload image"):!1===e[0].status?Promise.reject(null===(t=e[0].error)||void 0===t?void 0:t.message):e[0]})),qe=e=>{const t={imageSize:Fe(e),addToBlobCache:Ge(e),createBlobCache:He(e),alertErr:We(e),normalizeCss:$e(e),parseStyle:Ve(e),serializeStyle:Ke(e),uploadImage:Ze(e)};return{open:()=>{Ne(e).then((a=>{const i=(e=>({prevImage:Se(e.imageList,e.image.src),prevAlt:e.image.alt,open:!0}))(a);return{title:"Insert/Edit Image",size:"normal",body:Be(a),buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:Le(a.image),onSubmit:Pe(e,a,t),onChange:ke(t,a,i),onClose:ze(i)}})).then(e.windowManager.open)}}},Je=e=>{const t=e.attr("class");return d(t)&&/\bimage\b/.test(t)},Qe=e=>t=>{let a=t.length;const i=t=>{t.attr("contenteditable",e?"true":null)};for(;a--;){const s=t[a];Je(s)&&(s.attr("contenteditable",e?"false":null),De.each(s.getAll("figcaption"),i))}},Xe=e=>t=>{const a=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",a),a(),()=>{e.off("NodeChange",a)}};e.add("image",(e=>{(e=>{const t=e.options.register;t("image_dimensions",{processor:"boolean",default:!0}),t("image_advtab",{processor:"boolean",default:!1}),t("image_uploadtab",{processor:"boolean",default:!0}),t("image_prepend_url",{processor:"string",default:""}),t("image_class_list",{processor:"object[]"}),t("image_description",{processor:"boolean",default:!0}),t("image_title",{processor:"boolean",default:!1}),t("image_caption",{processor:"boolean",default:!1}),t("image_list",{processor:e=>{const t=!1===e||r(e)||((e,t)=>{if(l(e)){for(let a=0,i=e.length;a<i;++a)if(!t(e[a]))return!1;return!0}return!1})(e,o)||g(e);return t?{value:e,valid:t}:{valid:!1,message:"Must be false, a string, an array or a function."}},default:!1})})(e),(e=>{e.on("PreInit",(()=>{e.parser.addNodeFilter("figure",Qe(!0)),e.serializer.addNodeFilter("figure",Qe(!1))}))})(e),(e=>{e.ui.registry.addToggleButton("image",{icon:"image",tooltip:"Insert/edit image",onAction:qe(e).open,onSetup:t=>{t.setActive(d(he(e)));const a=e.selection.selectorChangedWithUnbind("img:not([data-mce-object]):not([data-mce-placeholder]),figure.image",t.setActive).unbind,i=Xe(e)(t);return()=>{a(),i()}}}),e.ui.registry.addMenuItem("image",{icon:"image",text:"Image...",onAction:qe(e).open,onSetup:Xe(e)}),e.ui.registry.addContextMenu("image",{update:t=>e.selection.isEditable()&&(re(t)||"IMG"===t.nodeName&&!H(t))?["image"]:[]})})(e),(e=>{e.addCommand("mceImage",qe(e).open),e.addCommand("mceUpdateImage",((t,a)=>{e.undoManager.transact((()=>ye(e,a)))}))})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/media/plugin.min.js000064400000041630151213255100021344 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(r=o=e,(a=String).prototype.isPrototypeOf(r)||(null===(s=o.constructor)||void 0===s?void 0:s.name)===a.name)?"string":t;var r,o,a,s})(t)===e,r=t("string"),o=t("object"),a=t("array"),s=e=>!(e=>null==e)(e);class i{constructor(e,t){this.tag=e,this.value=t}static some(e){return new i(!0,e)}static none(){return i.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?i.some(e(this.value)):i.none()}bind(e){return this.tag?e(this.value):i.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:i.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return s(e)?i.some(e):i.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}i.singletonNone=new i(!1);const n=Array.prototype.push,l=(e,t)=>{for(let r=0,o=e.length;r<o;r++)t(e[r],r)},c=e=>{const t=[];for(let r=0,o=e.length;r<o;++r){if(!a(e[r]))throw new Error("Arr.flatten item "+r+" was not an array, input: "+e);n.apply(t,e[r])}return t},m=Object.keys,u=Object.hasOwnProperty,d=(e,t)=>h(e,t)?i.from(e[t]):i.none(),h=(e,t)=>u.call(e,t),p=e=>t=>t.options.get(e),g=p("audio_template_callback"),b=p("video_template_callback"),w=p("iframe_template_callback"),v=p("media_live_embeds"),f=p("media_filter_html"),y=p("media_url_resolver"),x=p("media_alt_source"),_=p("media_poster"),k=p("media_dimensions");var j=tinymce.util.Tools.resolve("tinymce.util.Tools"),O=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),A=tinymce.util.Tools.resolve("tinymce.html.DomParser");const S=O.DOM,$=e=>e.replace(/px$/,""),C=e=>{const t=e.attr("style"),r=t?S.parseStyle(t):{};return{type:"ephox-embed-iri",source:e.attr("data-ephox-embed-iri"),altsource:"",poster:"",width:d(r,"max-width").map($).getOr(""),height:d(r,"max-height").map($).getOr("")}},T=(e,t)=>{let r={};for(let o=A({validate:!1,forced_root_block:!1},t).parse(e);o;o=o.walk())if(1===o.type){const e=o.name;if(o.attr("data-ephox-embed-iri")){r=C(o);break}r.source||"param"!==e||(r.source=o.attr("movie")),"iframe"!==e&&"object"!==e&&"embed"!==e&&"video"!==e&&"audio"!==e||(r.type||(r.type=e),r=j.extend(o.attributes.map,r)),"source"===e&&(r.source?r.altsource||(r.altsource=o.attr("src")):r.source=o.attr("src")),"img"!==e||r.poster||(r.poster=o.attr("src"))}return r.source=r.source||r.src||"",r.altsource=r.altsource||"",r.poster=r.poster||"",r},z=e=>{var t;const r=null!==(t=e.toLowerCase().split(".").pop())&&void 0!==t?t:"";return d({mp3:"audio/mpeg",m4a:"audio/x-m4a",wav:"audio/wav",mp4:"video/mp4",webm:"video/webm",ogg:"video/ogg",swf:"application/x-shockwave-flash"},r).getOr("")};var D=tinymce.util.Tools.resolve("tinymce.html.Node"),F=tinymce.util.Tools.resolve("tinymce.html.Serializer");const M=(e,t={})=>A({forced_root_block:!1,validate:!1,allow_conditional_comments:!0,...t},e),N=O.DOM,R=e=>/^[0-9.]+$/.test(e)?e+"px":e,E=(e,t)=>{const r=t.attr("style"),o=r?N.parseStyle(r):{};s(e.width)&&(o["max-width"]=R(e.width)),s(e.height)&&(o["max-height"]=R(e.height)),t.attr("style",N.serializeStyle(o))},U=["source","altsource"],P=(e,t,r,o)=>{let a=0,s=0;const i=M(o);i.addNodeFilter("source",(e=>a=e.length));const n=i.parse(e);for(let e=n;e;e=e.walk())if(1===e.type){const o=e.name;if(e.attr("data-ephox-embed-iri")){E(t,e);break}switch(o){case"video":case"object":case"embed":case"img":case"iframe":void 0!==t.height&&void 0!==t.width&&(e.attr("width",t.width),e.attr("height",t.height))}if(r)switch(o){case"video":e.attr("poster",t.poster),e.attr("src",null);for(let r=a;r<2;r++)if(t[U[r]]){const o=new D("source",1);o.attr("src",t[U[r]]),o.attr("type",t[U[r]+"mime"]||null),e.append(o)}break;case"iframe":e.attr("src",t.source);break;case"object":const r=e.getAll("img").length>0;if(t.poster&&!r){e.attr("src",t.poster);const r=new D("img",1);r.attr("src",t.poster),r.attr("width",t.width),r.attr("height",t.height),e.append(r)}break;case"source":if(s<2&&(e.attr("src",t[U[s]]),e.attr("type",t[U[s]+"mime"]||null),!t[U[s]])){e.remove();continue}s++;break;case"img":t.poster||e.remove()}}return F({},o).serialize(n)},L=[{regex:/youtu\.be\/([\w\-_\?&=.]+)/i,type:"iframe",w:560,h:314,url:"www.youtube.com/embed/$1",allowFullscreen:!0},{regex:/youtube\.com(.+)v=([^&]+)(&([a-z0-9&=\-_]+))?/i,type:"iframe",w:560,h:314,url:"www.youtube.com/embed/$2?$4",allowFullscreen:!0},{regex:/youtube.com\/embed\/([a-z0-9\?&=\-_]+)/i,type:"iframe",w:560,h:314,url:"www.youtube.com/embed/$1",allowFullscreen:!0},{regex:/vimeo\.com\/([0-9]+)\?h=(\w+)/,type:"iframe",w:425,h:350,url:"player.vimeo.com/video/$1?h=$2&title=0&byline=0&portrait=0&color=8dc7dc",allowFullscreen:!0},{regex:/vimeo\.com\/(.*)\/([0-9]+)\?h=(\w+)/,type:"iframe",w:425,h:350,url:"player.vimeo.com/video/$2?h=$3&title=0&amp;byline=0",allowFullscreen:!0},{regex:/vimeo\.com\/([0-9]+)/,type:"iframe",w:425,h:350,url:"player.vimeo.com/video/$1?title=0&byline=0&portrait=0&color=8dc7dc",allowFullscreen:!0},{regex:/vimeo\.com\/(.*)\/([0-9]+)/,type:"iframe",w:425,h:350,url:"player.vimeo.com/video/$2?title=0&amp;byline=0",allowFullscreen:!0},{regex:/maps\.google\.([a-z]{2,3})\/maps\/(.+)msid=(.+)/,type:"iframe",w:425,h:350,url:'maps.google.com/maps/ms?msid=$2&output=embed"',allowFullscreen:!1},{regex:/dailymotion\.com\/video\/([^_]+)/,type:"iframe",w:480,h:270,url:"www.dailymotion.com/embed/video/$1",allowFullscreen:!0},{regex:/dai\.ly\/([^_]+)/,type:"iframe",w:480,h:270,url:"www.dailymotion.com/embed/video/$1",allowFullscreen:!0}],I=(e,t)=>{const r=(e=>{const t=e.match(/^(https?:\/\/|www\.)(.+)$/i);return t&&t.length>1?"www."===t[1]?"https://":t[1]:"https://"})(t),o=e.regex.exec(t);let a=r+e.url;if(s(o))for(let e=0;e<o.length;e++)a=a.replace("$"+e,(()=>o[e]?o[e]:""));return a.replace(/\?$/,"")},B=e=>{const t=L.filter((t=>t.regex.test(e)));return t.length>0?j.extend({},t[0],{url:I(t[0],e)}):null},G=(e,t)=>{var r;const o=j.extend({},t);if(!o.source&&(j.extend(o,T(null!==(r=o.embed)&&void 0!==r?r:"",e.schema)),!o.source))return"";o.altsource||(o.altsource=""),o.poster||(o.poster=""),o.source=e.convertURL(o.source,"source"),o.altsource=e.convertURL(o.altsource,"source"),o.sourcemime=z(o.source),o.altsourcemime=z(o.altsource),o.poster=e.convertURL(o.poster,"poster");const a=B(o.source);if(a&&(o.source=a.url,o.type=a.type,o.allowfullscreen=a.allowFullscreen,o.width=o.width||String(a.w),o.height=o.height||String(a.h)),o.embed)return P(o.embed,o,!0,e.schema);{const t=g(e),r=b(e),a=w(e);return o.width=o.width||"300",o.height=o.height||"150",j.each(o,((t,r)=>{o[r]=e.dom.encode(""+t)})),"iframe"===o.type?((e,t)=>{if(t)return t(e);{const t=e.allowfullscreen?' allowFullscreen="1"':"";return'<iframe src="'+e.source+'" width="'+e.width+'" height="'+e.height+'"'+t+"></iframe>"}})(o,a):"application/x-shockwave-flash"===o.sourcemime?(e=>{let t='<object data="'+e.source+'" width="'+e.width+'" height="'+e.height+'" type="application/x-shockwave-flash">';return e.poster&&(t+='<img src="'+e.poster+'" width="'+e.width+'" height="'+e.height+'" />'),t+="</object>",t})(o):-1!==o.sourcemime.indexOf("audio")?((e,t)=>t?t(e):'<audio controls="controls" src="'+e.source+'">'+(e.altsource?'\n<source src="'+e.altsource+'"'+(e.altsourcemime?' type="'+e.altsourcemime+'"':"")+" />\n":"")+"</audio>")(o,t):((e,t)=>t?t(e):'<video width="'+e.width+'" height="'+e.height+'"'+(e.poster?' poster="'+e.poster+'"':"")+' controls="controls">\n<source src="'+e.source+'"'+(e.sourcemime?' type="'+e.sourcemime+'"':"")+" />\n"+(e.altsource?'<source src="'+e.altsource+'"'+(e.altsourcemime?' type="'+e.altsourcemime+'"':"")+" />\n":"")+"</video>")(o,r)}},W=e=>e.hasAttribute("data-mce-object")||e.hasAttribute("data-ephox-embed-iri"),q={},H=e=>t=>G(e,t),J=(e,t)=>{const r=y(e);return r?((e,t,r)=>new Promise(((o,a)=>{const s=r=>(r.html&&(q[e.source]=r),o({url:e.source,html:r.html?r.html:t(e)}));q[e.source]?s(q[e.source]):r({url:e.source},s,a)})))(t,H(e),r):((e,t)=>Promise.resolve({html:t(e),url:e.source}))(t,H(e))},K=(e,t)=>{const r={};return d(e,"dimensions").each((e=>{l(["width","height"],(o=>{d(t,o).orThunk((()=>d(e,o))).each((e=>r[o]=e))}))})),r},Q=(e,t)=>{const r=t&&"dimensions"!==t?((e,t)=>d(t,e).bind((e=>d(e,"meta"))))(t,e).getOr({}):{},a=((e,t,r)=>a=>{const s=()=>d(e,a),n=()=>d(t,a),l=e=>d(e,"value").bind((e=>e.length>0?i.some(e):i.none()));return{[a]:(a===r?s().bind((e=>o(e)?l(e).orThunk(n):n().orThunk((()=>i.from(e))))):n().orThunk((()=>s().bind((e=>o(e)?l(e):i.from(e)))))).getOr("")}})(e,r,t);return{...a("source"),...a("altsource"),...a("poster"),...a("embed"),...K(e,r)}},V=e=>{const t={...e,source:{value:d(e,"source").getOr("")},altsource:{value:d(e,"altsource").getOr("")},poster:{value:d(e,"poster").getOr("")}};return l(["width","height"],(r=>{d(e,r).each((e=>{const o=t.dimensions||{};o[r]=e,t.dimensions=o}))})),t},X=e=>t=>{const r=t&&t.msg?"Media embed handler error: "+t.msg:"Media embed handler threw unknown error.";e.notificationManager.open({type:"error",text:r})},Y=(e,t)=>o=>{if(r(o.url)&&o.url.trim().length>0){const r=o.html,a={...T(r,t.schema),source:o.url,embed:r};e.setData(V(a))}},Z=(e,t)=>{const r=e.dom.select("*[data-mce-object]");e.insertContent(t),((e,t)=>{const r=e.dom.select("*[data-mce-object]");for(let e=0;e<t.length;e++)for(let o=r.length-1;o>=0;o--)t[e]===r[o]&&r.splice(o,1);e.selection.select(r[0])})(e,r),e.nodeChanged()},ee=(e,t)=>s(t)&&"ephox-embed-iri"===t&&s(B(e)),te=(e,t)=>((e,t)=>e.width!==t.width||e.height!==t.height)(e,t)&&ee(t.source,e.type),re=e=>{const t=(e=>{const t=e.selection.getNode(),r=W(t)?e.serializer.serialize(t,{selection:!0}):"",o=T(r,e.schema),a=(()=>{if(ee(o.source,o.type)){const r=e.dom.getRect(t);return{width:r.w.toString().replace(/px$/,""),height:r.h.toString().replace(/px$/,"")}}return{}})();return{embed:r,...o,...a}})(e),r=(e=>{let t=e;return{get:()=>t,set:e=>{t=e}}})(t),o=V(t),a=k(e)?[{type:"sizeinput",name:"dimensions",label:"Constrain proportions",constrain:!0}]:[],s={title:"General",name:"general",items:c([[{name:"source",type:"urlinput",filetype:"media",label:"Source",picker_text:"Browse files"}],a])},i=[];x(e)&&i.push({name:"altsource",type:"urlinput",filetype:"media",label:"Alternative source URL"}),_(e)&&i.push({name:"poster",type:"urlinput",filetype:"image",label:"Media poster (Image URL)"});const n={title:"Advanced",name:"advanced",items:i},l=[s,{title:"Embed",items:[{type:"textarea",name:"embed",label:"Paste your embed code below:"}]}];i.length>0&&l.push(n);const m={type:"tabpanel",tabs:l},u=e.windowManager.open({title:"Insert/Edit Media",size:"normal",body:m,buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],onSubmit:t=>{const o=Q(t.getData());((e,t,r)=>{var o,a;t.embed=te(e,t)&&k(r)?G(r,{...t,embed:""}):P(null!==(o=t.embed)&&void 0!==o?o:"",t,!1,r.schema),t.embed&&(e.source===t.source||(a=t.source,h(q,a)))?Z(r,t.embed):J(r,t).then((e=>{Z(r,e.html)})).catch(X(r))})(r.get(),o,e),t.close()},onChange:(t,o)=>{switch(o.name){case"source":((t,r)=>{const o=Q(r.getData(),"source");t.source!==o.source&&(Y(u,e)({url:o.source,html:""}),J(e,o).then(Y(u,e)).catch(X(e)))})(r.get(),t);break;case"embed":(t=>{var r;const o=Q(t.getData()),a=T(null!==(r=o.embed)&&void 0!==r?r:"",e.schema);t.setData(V(a))})(t);break;case"dimensions":case"altsource":case"poster":((t,r,o)=>{const a=Q(t.getData(),r),s=te(o,a)&&k(e)?{...a,embed:""}:a,i=G(e,s);t.setData(V({...s,embed:i}))})(t,o.name,r.get())}r.set(Q(t.getData()))},initialData:o})};var oe=tinymce.util.Tools.resolve("tinymce.Env");const ae=e=>{const t=e.name;return"iframe"===t||"video"===t||"audio"===t},se=(e,t,r,o=null)=>{const a=e.attr(r);return s(a)?a:h(t,r)?null:o},ie=(e,t,r)=>{const o="img"===t.name||"video"===e.name,a=o?"300":null,s="audio"===e.name?"30":"150",i=o?s:null;t.attr({width:se(e,r,"width",a),height:se(e,r,"height",i)})},ne=(e,t)=>{const r=t.name,o=new D("img",1);return ce(e,t,o),ie(t,o,{}),o.attr({style:t.attr("style"),src:oe.transparentSrc,"data-mce-object":r,class:"mce-object mce-object-"+r}),o},le=(e,t)=>{var r;const o=t.name,a=new D("span",1);a.attr({contentEditable:"false",style:t.attr("style"),"data-mce-object":o,class:"mce-preview-object mce-object-"+o}),ce(e,t,a);const i=e.dom.parseStyle(null!==(r=t.attr("style"))&&void 0!==r?r:""),n=new D(o,1);if(ie(t,n,i),n.attr({src:t.attr("src"),style:t.attr("style"),class:t.attr("class")}),"iframe"===o)n.attr({allowfullscreen:t.attr("allowfullscreen"),frameborder:"0",sandbox:t.attr("sandbox")});else{l(["controls","crossorigin","currentTime","loop","muted","poster","preload"],(e=>{n.attr(e,t.attr(e))}));const r=a.attr("data-mce-html");s(r)&&((e,t,r,o)=>{const a=M(e.schema).parse(o,{context:t});for(;a.firstChild;)r.append(a.firstChild)})(e,o,n,unescape(r))}const c=new D("span",1);return c.attr("class","mce-shim"),a.append(n),a.append(c),a},ce=(e,t,r)=>{var o;const a=null!==(o=t.attributes)&&void 0!==o?o:[];let s=a.length;for(;s--;){const t=a[s].name;let o=a[s].value;"width"===t||"height"===t||"style"===t||(n="data-mce-",(i=t).length>=9&&i.substr(0,9)===n)||("data"!==t&&"src"!==t||(o=e.convertURL(o,t)),r.attr("data-mce-p-"+t,o))}var i,n;const c=F({inner:!0},e.schema),m=new D("div",1);l(t.children(),(e=>m.append(e)));const u=c.serialize(m);u&&(r.attr("data-mce-html",escape(u)),r.empty())},me=e=>{const t=e.attr("class");return r(t)&&/\btiny-pageembed\b/.test(t)},ue=e=>{let t=e;for(;t=t.parent;)if(t.attr("data-ephox-embed-iri")||me(t))return!0;return!1},de=(e,t,r)=>{const o=(0,e.options.get)("xss_sanitization"),a=f(e);return M(e.schema,{sanitize:o,validate:a}).parse(r,{context:t})},he=e=>t=>{const r=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",r),r(),()=>{e.off("NodeChange",r)}};e.add("media",(e=>((e=>{const t=e.options.register;t("audio_template_callback",{processor:"function"}),t("video_template_callback",{processor:"function"}),t("iframe_template_callback",{processor:"function"}),t("media_live_embeds",{processor:"boolean",default:!0}),t("media_filter_html",{processor:"boolean",default:!0}),t("media_url_resolver",{processor:"function"}),t("media_alt_source",{processor:"boolean",default:!0}),t("media_poster",{processor:"boolean",default:!0}),t("media_dimensions",{processor:"boolean",default:!0})})(e),(e=>{e.addCommand("mceMedia",(()=>{re(e)}))})(e),(e=>{const t=()=>e.execCommand("mceMedia");e.ui.registry.addToggleButton("media",{tooltip:"Insert/edit media",icon:"embed",onAction:t,onSetup:t=>{const r=e.selection;t.setActive(W(r.getNode()));const o=r.selectorChangedWithUnbind("img[data-mce-object],span[data-mce-object],div[data-ephox-embed-iri]",t.setActive).unbind,a=he(e)(t);return()=>{o(),a()}}}),e.ui.registry.addMenuItem("media",{icon:"embed",text:"Media...",onAction:t,onSetup:he(e)})})(e),(e=>{e.on("ResolveName",(e=>{let t;1===e.target.nodeType&&(t=e.target.getAttribute("data-mce-object"))&&(e.name=t)}))})(e),(e=>{e.on("PreInit",(()=>{const{schema:t,serializer:r,parser:o}=e,a=t.getBoolAttrs();l("webkitallowfullscreen mozallowfullscreen".split(" "),(e=>{a[e]={}})),((e,t)=>{const r=m(e);for(let o=0,a=r.length;o<a;o++){const a=r[o];t(e[a],a)}})({embed:["wmode"]},((e,r)=>{const o=t.getElementRule(r);o&&l(e,(e=>{o.attributes[e]={},o.attributesOrder.push(e)}))})),o.addNodeFilter("iframe,video,audio,object,embed",(e=>t=>{let r,o=t.length;for(;o--;)r=t[o],r.parent&&(r.parent.attr("data-mce-object")||(ae(r)&&v(e)?ue(r)||r.replace(le(e,r)):ue(r)||r.replace(ne(e,r))))})(e)),r.addAttributeFilter("data-mce-object",((t,r)=>{var o;let a=t.length;for(;a--;){const s=t[a];if(!s.parent)continue;const i=s.attr(r),n=new D(i,1);if("audio"!==i){const e=s.attr("class");e&&-1!==e.indexOf("mce-preview-object")&&s.firstChild?n.attr({width:s.firstChild.attr("width"),height:s.firstChild.attr("height")}):n.attr({width:s.attr("width"),height:s.attr("height")})}n.attr({style:s.attr("style")});const c=null!==(o=s.attributes)&&void 0!==o?o:[];let m=c.length;for(;m--;){const e=c[m].name;0===e.indexOf("data-mce-p-")&&n.attr(e.substr(11),c[m].value)}const u=s.attr("data-mce-html");if(u){const t=de(e,i,unescape(u));l(t.children(),(e=>n.append(e)))}s.replace(n)}}))})),e.on("SetContent",(()=>{const t=e.dom;l(t.select("span.mce-preview-object"),(e=>{0===t.select("span.mce-shim",e).length&&t.add(e,"span",{class:"mce-shim"})}))}))})(e),(e=>{e.on("click keyup touchend",(()=>{const t=e.selection.getNode();t&&e.dom.hasClass(t,"mce-preview-object")&&e.dom.getAttrib(t,"data-mce-selected")&&t.setAttribute("data-mce-selected","2")})),e.on("ObjectResized",(t=>{const r=t.target;if(r.getAttribute("data-mce-object")){let o=r.getAttribute("data-mce-html");o&&(o=unescape(o),r.setAttribute("data-mce-html",escape(P(o,{width:String(t.width),height:String(t.height)},!1,e.schema))))}}))})(e),(e=>({showDialog:()=>{re(e)}}))(e))))}();admin/assets/vendor/tinymce/js/tinymce/plugins/advlist/plugin.min.js000064400000007263151213255100021737 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=(t,e,s)=>{const r="UL"===e?"InsertUnorderedList":"InsertOrderedList";t.execCommand(r,!1,!1===s?null:{"list-style-type":s})},s=t=>e=>e.options.get(t),r=s("advlist_number_styles"),n=s("advlist_bullet_styles"),i=t=>null==t,l=t=>!i(t);var o=tinymce.util.Tools.resolve("tinymce.util.Tools");class a{constructor(t,e){this.tag=t,this.value=e}static some(t){return new a(!0,t)}static none(){return a.singletonNone}fold(t,e){return this.tag?e(this.value):t()}isSome(){return this.tag}isNone(){return!this.tag}map(t){return this.tag?a.some(t(this.value)):a.none()}bind(t){return this.tag?t(this.value):a.none()}exists(t){return this.tag&&t(this.value)}forall(t){return!this.tag||t(this.value)}filter(t){return!this.tag||t(this.value)?this:a.none()}getOr(t){return this.tag?this.value:t}or(t){return this.tag?this:t}getOrThunk(t){return this.tag?this.value:t()}orThunk(t){return this.tag?this:t()}getOrDie(t){if(this.tag)return this.value;throw new Error(null!=t?t:"Called getOrDie on None")}static from(t){return l(t)?a.some(t):a.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(t){this.tag&&t(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}a.singletonNone=new a(!1);const u=t=>e=>l(e)&&t.test(e.nodeName),d=u(/^(OL|UL|DL)$/),g=u(/^(TH|TD)$/),c=t=>i(t)||"default"===t?"":t,h=(t,e)=>s=>((t,e)=>{const s=t.selection.getNode();return e({parents:t.dom.getParents(s),element:s}),t.on("NodeChange",e),()=>t.off("NodeChange",e)})(t,(r=>((t,r)=>{const n=t.selection.getStart(!0);s.setActive(((t,e,s)=>((t,e,s)=>{for(let e=0,n=t.length;e<n;e++){const n=t[e];if(d(r=n)&&!/\btox\-/.test(r.className))return a.some(n);if(s(n,e))break}var r;return a.none()})(e,0,g).exists((e=>e.nodeName===s&&((t,e)=>t.dom.isChildOf(e,t.getBody()))(t,e))))(t,r,e)),s.setEnabled(!((t,e)=>{const s=t.dom.getParent(e,"ol,ul,dl");return((t,e)=>null!==e&&!t.dom.isEditable(e))(t,s)&&t.selection.isEditable()})(t,n)&&t.selection.isEditable())})(t,r.parents))),m=(t,s,r,n,i,l)=>{l.length>1?((t,s,r,n,i,l)=>{t.ui.registry.addSplitButton(s,{tooltip:r,icon:"OL"===i?"ordered-list":"unordered-list",presets:"listpreview",columns:3,fetch:t=>{t(o.map(l,(t=>{const e="OL"===i?"num":"bull",s="disc"===t||"decimal"===t?"default":t,r=c(t),n=(t=>t.replace(/\-/g," ").replace(/\b\w/g,(t=>t.toUpperCase())))(t);return{type:"choiceitem",value:r,icon:"list-"+e+"-"+s,text:n}})))},onAction:()=>t.execCommand(n),onItemAction:(s,r)=>{e(t,i,r)},select:e=>{const s=(t=>{const e=t.dom.getParent(t.selection.getNode(),"ol,ul"),s=t.dom.getStyle(e,"listStyleType");return a.from(s)})(t);return s.map((t=>e===t)).getOr(!1)},onSetup:h(t,i)})})(t,s,r,n,i,l):((t,s,r,n,i,l)=>{t.ui.registry.addToggleButton(s,{active:!1,tooltip:r,icon:"OL"===i?"ordered-list":"unordered-list",onSetup:h(t,i),onAction:()=>t.queryCommandState(n)||""===l?t.execCommand(n):e(t,i,l)})})(t,s,r,n,i,c(l[0]))};t.add("advlist",(t=>{t.hasPlugin("lists")?((t=>{const e=t.options.register;e("advlist_number_styles",{processor:"string[]",default:"default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman".split(",")}),e("advlist_bullet_styles",{processor:"string[]",default:"default,circle,square".split(",")})})(t),(t=>{m(t,"numlist","Numbered list","InsertOrderedList","OL",r(t)),m(t,"bullist","Bullet list","InsertUnorderedList","UL",n(t))})(t),(t=>{t.addCommand("ApplyUnorderedListStyle",((s,r)=>{e(t,"UL",r["list-style-type"])})),t.addCommand("ApplyOrderedListStyle",((s,r)=>{e(t,"OL",r["list-style-type"])}))})(t)):console.error("Please use the Lists plugin together with the Advanced List plugin.")}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/code/plugin.min.js000064400000001555151213255100021201 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";tinymce.util.Tools.resolve("tinymce.PluginManager").add("code",(e=>((e=>{e.addCommand("mceCodeEditor",(()=>{(e=>{const o=(e=>e.getContent({source_view:!0}))(e);e.windowManager.open({title:"Source Code",size:"large",body:{type:"panel",items:[{type:"textarea",name:"code"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{code:o},onSubmit:o=>{((e,o)=>{e.focus(),e.undoManager.transact((()=>{e.setContent(o)})),e.selection.setCursorLocation(),e.nodeChanged()})(e,o.getData().code),o.close()}})})(e)}))})(e),(e=>{const o=()=>e.execCommand("mceCodeEditor");e.ui.registry.addButton("code",{icon:"sourcecode",tooltip:"Source code",onAction:o}),e.ui.registry.addMenuItem("code",{icon:"sourcecode",text:"Source code",onAction:o})})(e),{})))}();admin/assets/vendor/tinymce/js/tinymce/plugins/preview/plugin.min.js000064400000003266151213255100021751 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.Env"),o=tinymce.util.Tools.resolve("tinymce.util.Tools");const n=e=>t=>t.options.get(e),i=n("content_style"),s=n("content_css_cors"),c=n("body_class"),r=n("body_id");e.add("preview",(e=>{(e=>{e.addCommand("mcePreview",(()=>{(e=>{const n=(e=>{var n;let l="";const a=e.dom.encode,d=null!==(n=i(e))&&void 0!==n?n:"";l+='<base href="'+a(e.documentBaseURI.getURI())+'">';const m=s(e)?' crossorigin="anonymous"':"";o.each(e.contentCSS,(t=>{l+='<link type="text/css" rel="stylesheet" href="'+a(e.documentBaseURI.toAbsolute(t))+'"'+m+">"})),d&&(l+='<style type="text/css">'+d+"</style>");const y=r(e),u=c(e),v='<script>document.addEventListener && document.addEventListener("click", function(e) {for (var elm = e.target; elm; elm = elm.parentNode) {if (elm.nodeName === "A" && !('+(t.os.isMacOS()||t.os.isiOS()?"e.metaKey":"e.ctrlKey && !e.altKey")+")) {e.preventDefault();}}}, false);<\/script> ",p=e.getBody().dir,w=p?' dir="'+a(p)+'"':"";return"<!DOCTYPE html><html><head>"+l+'</head><body id="'+a(y)+'" class="mce-content-body '+a(u)+'"'+w+">"+e.getContent()+v+"</body></html>"})(e);e.windowManager.open({title:"Preview",size:"large",body:{type:"panel",items:[{name:"preview",type:"iframe",sandboxed:!0,transparent:!1}]},buttons:[{type:"cancel",name:"close",text:"Close",primary:!0}],initialData:{preview:n}}).focus("close")})(e)}))})(e),(e=>{const t=()=>e.execCommand("mcePreview");e.ui.registry.addButton("preview",{icon:"preview",tooltip:"Preview",onAction:t}),e.ui.registry.addMenuItem("preview",{icon:"preview",text:"Preview",onAction:t})})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hu_HU.js000064400000011262151213255100022633 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.hu_HU',
'<h1>Billentyűzetes navigáció indítása</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fókusz a menüsávra</dt>\n' +
  '  <dd>Windows és Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fókusz az eszköztárra</dt>\n' +
  '  <dd>Windows és Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fókusz a láblécre</dt>\n' +
  '  <dd>Windows és Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fókusz egy környezetfüggő eszköztárra</dt>\n' +
  '  <dd>Windows, Linux és macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>A navigáció az első felhasználói felületi elemnél kezdődik, amelyet a rendszer kiemel, illetve aláhúz, amennyiben az az első elem\n' +
  '  a lábléc elemútvonalán.</p>\n' +
  '\n' +
  '<h1>Navigálás a felhasználói felület szakaszai között</h1>\n' +
  '\n' +
  '<p>A felhasználói felület következő szakaszára váltáshoz nyomja meg a <strong>Tab</strong> billentyűt.</p>\n' +
  '\n' +
  '<p>A felhasználói felület előző szakaszára váltáshoz nyomja meg a <strong>Shift+Tab</strong> billentyűt.</p>\n' +
  '\n' +
  '<p>A <strong>Tab</strong> billentyűvel a felhasználói felület szakaszai között a következő sorrendben vált:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menüsáv</li>\n' +
  '  <li>Az egyes eszköztárcsoportok</li>\n' +
  '  <li>Oldalsáv</li>\n' +
  '  <li>Elemútvonal a láblécen</li>\n' +
  '  <li>Szószámátkapcsoló gomb a láblécen</li>\n' +
  '  <li>Márkalink a láblécen</li>\n' +
  '  <li>Szerkesztő átméretezési fogópontja a láblécen</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Ha a felhasználói felület valamelyik eleme nincs jelen, a rendszer kihagyja.</p>\n' +
  '\n' +
  '<p>Ha a billentyűzetes navigáció fókusza a láblécen van, és nincs látható oldalsáv, a <strong>Shift+Tab</strong>\n' +
  '  billentyűkombináció lenyomásakor az első eszköztárcsoportra ugrik a fókusz, nem az utolsóra.</p>\n' +
  '\n' +
  '<h1>Navigálás a felhasználói felület szakaszain belül</h1>\n' +
  '\n' +
  '<p>A felhasználói felület következő elemére váltáshoz nyomja meg a megfelelő <strong>nyílbillentyűt</strong>.</p>\n' +
  '\n' +
  '<p>A <strong>bal</strong> és a <strong>jobb</strong> nyílgomb</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>a menüsávban a menük között vált.</li>\n' +
  '  <li>a menükben megnyit egy almenüt.</li>\n' +
  '  <li>az eszköztárcsoportban a gombok között vált.</li>\n' +
  '  <li>a lábléc elemútvonalán az elemek között vált.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>A <strong>le</strong> és a <strong>fel</strong> nyílgomb</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>a menükben a menüpontok között vált.</li>\n' +
  '  <li>az eszköztár előugró menüjében az elemek között vált.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>A <strong>nyílbillentyűk</strong> lenyomásával körkörösen lépkedhet a fókuszban lévő felhasználói felületi szakasz elemei között.</p>\n' +
  '\n' +
  '<p>A megnyitott menüket, almenüket és előugró menüket az <strong>Esc</strong> billentyűvel zárhatja be.</p>\n' +
  '\n' +
  '<p>Ha a fókusz az aktuális felületi elem „felső” részén van, az <strong>Esc</strong> billentyűvel az egész\n' +
  '  billentyűzetes navigációból kilép.</p>\n' +
  '\n' +
  '<h1>Menüpont vagy eszköztárgomb aktiválása</h1>\n' +
  '\n' +
  '<p>Amikor a kívánt menüelem vagy eszköztárgomb van kijelölve, nyomja meg a <strong>Return</strong>, az <strong>Enter</strong>\n' +
  '  vagy a <strong>Szóköz</strong> billentyűt az adott elem vagy gomb aktiválásához.</p>\n' +
  '\n' +
  '<h1>Navigálás a lapokkal nem rendelkező párbeszédablakokban</h1>\n' +
  '\n' +
  '<p>A lapokkal nem rendelkező párbeszédablakokban az első interaktív összetevő kapja a fókuszt, amikor a párbeszédpanel megnyílik.</p>\n' +
  '\n' +
  '<p>A párbeszédpanelek interaktív összetevői között a <strong>Tab</strong> vagy a <strong>Shift+Tab</strong> billentyűvel navigálhat.</p>\n' +
  '\n' +
  '<h1>Navigálás a lapokkal rendelkező párbeszédablakokban</h1>\n' +
  '\n' +
  '<p>A lapokkal rendelkező párbeszédablakokban a lapmenü első gombja kapja a fókuszt, amikor a párbeszédpanel megnyílik.</p>\n' +
  '\n' +
  '<p>A párbeszédpanel e lapjának interaktív összetevői között a <strong>Tab</strong> vagy\n' +
  '  <strong>Shift+Tab</strong> billentyűvel navigálhat.</p>\n' +
  '\n' +
  '<p>A párbeszédablak másik lapjára úgy léphet, hogy a fókuszt a lapmenüre állítja, majd lenyomja a megfelelő <strong>nyílbillentyűt</strong>\n' +
  '  a rendelkezésre álló lapok közötti lépkedéshez.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ja.js000064400000011613151213255100022215 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.ja',
'<h1>キーボード ナビゲーションの開始</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>メニュー バーをフォーカス</dt>\n' +
  '  <dd>Windows または Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>ツール バーをフォーカス</dt>\n' +
  '  <dd>Windows または Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>フッターをフォーカス</dt>\n' +
  '  <dd>Windows または Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>コンテキスト ツール バーをフォーカス</dt>\n' +
  '  <dd>Windows、Linux または macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>ナビゲーションは最初の UI 項目から開始され、強調表示されるか、フッターの要素パスにある最初の項目の場合は\n' +
  '  下線が引かれます。</p>\n' +
  '\n' +
  '<h1>UI セクション間の移動</h1>\n' +
  '\n' +
  '<p>次の UI セクションに移動するには、<strong>Tab</strong> を押します。</p>\n' +
  '\n' +
  '<p>前の UI セクションに移動するには、<strong>Shift+Tab</strong> を押します。</p>\n' +
  '\n' +
  '<p>これらの UI セクションの <strong>Tab</strong> の順序:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>メニュー バー</li>\n' +
  '  <li>各ツール バー グループ</li>\n' +
  '  <li>サイド バー</li>\n' +
  '  <li>フッターの要素パス</li>\n' +
  '  <li>フッターの単語数切り替えボタン</li>\n' +
  '  <li>フッターのブランド リンク</li>\n' +
  '  <li>フッターのエディター サイズ変更ハンドル</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>UI セクションが存在しない場合は、スキップされます。</p>\n' +
  '\n' +
  '<p>フッターにキーボード ナビゲーション フォーカスがあり、表示可能なサイド バーがない場合、<strong>Shift+Tab</strong> を押すと、\n' +
  '  フォーカスが最後ではなく最初のツール バー グループに移動します。</p>\n' +
  '\n' +
  '<h1>UI セクション内の移動</h1>\n' +
  '\n' +
  '<p>次の UI 要素に移動するには、適切な<strong>矢印</strong>キーを押します。</p>\n' +
  '\n' +
  '<p><strong>左矢印</strong>と<strong>右矢印</strong>のキー</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>メニュー バーのメニュー間で移動します。</li>\n' +
  '  <li>メニュー内のサブメニューを開きます。</li>\n' +
  '  <li>ツール バー グループのボタン間で移動します。</li>\n' +
  '  <li>フッターの要素パスの項目間で移動します。</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>下矢印</strong>と<strong>上矢印</strong>のキー</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>メニュー内のメニュー項目間で移動します。</li>\n' +
  '  <li>ツール バー ポップアップ メニュー内のメニュー項目間で移動します。</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>矢印</strong>キーで、フォーカスされた UI セクション内で循環します。</p>\n' +
  '\n' +
  '<p>開いたメニュー、開いたサブメニュー、開いたポップアップ メニューを閉じるには、<strong>Esc</strong> キーを押します。</p>\n' +
  '\n' +
  '<p>現在のフォーカスが特定の UI セクションの「一番上」にある場合、<strong>Esc</strong> キーを押すと\n' +
  '  キーボード ナビゲーションも完全に閉じられます。</p>\n' +
  '\n' +
  '<h1>メニュー項目またはツール バー ボタンの実行</h1>\n' +
  '\n' +
  '<p>目的のメニュー項目やツール バー ボタンが強調表示されている場合、<strong>リターン</strong>、<strong>Enter</strong>、\n' +
  '  または<strong>スペース キー</strong>を押して項目を実行します。</p>\n' +
  '\n' +
  '<h1>タブのないダイアログの移動</h1>\n' +
  '\n' +
  '<p>タブのないダイアログでは、ダイアログが開くと最初の対話型コンポーネントがフォーカスされます。</p>\n' +
  '\n' +
  '<p><strong>Tab</strong> または <strong>Shift+Tab</strong> を押して、対話型ダイアログ コンポーネント間で移動します。</p>\n' +
  '\n' +
  '<h1>タブ付きダイアログの移動</h1>\n' +
  '\n' +
  '<p>タブ付きダイアログでは、ダイアログが開くとタブ メニューの最初のボタンがフォーカスされます。</p>\n' +
  '\n' +
  '<p><strong>Tab</strong> または\n' +
  '  <strong>Shift+Tab</strong> を押して、このダイアログ タブの対話型コンポーネント間で移動します。</p>\n' +
  '\n' +
  '<p>タブ メニューをフォーカスしてから適切な<strong>矢印</strong>キーを押して表示可能なタブを循環して、\n' +
  '  別のダイアログに切り替えます。</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/bg_BG.js000064400000015551151213255110022571 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.bg_BG',
'<h1>Начало на навигацията с клавиатурата</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Фокусиране върху лентата с менюта</dt>\n' +
  '  <dd>Windows или Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Фокусиране върху лентата с инструменти</dt>\n' +
  '  <dd>Windows или Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Фокусиране върху долния колонтитул</dt>\n' +
  '  <dd>Windows или Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Фокусиране върху контекстуалната лента с инструменти</dt>\n' +
  '  <dd>Windows, Linux или macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Навигацията ще започне с първия елемент на ПИ, който ще бъде маркиран или подчертан в случая на първия елемент в\n' +
  '  пътя до елемента в долния колонтитул.</p>\n' +
  '\n' +
  '<h1>Навигиране между раздели на ПИ</h1>\n' +
  '\n' +
  '<p>За да преминете от един раздел на ПИ към следващия, натиснете <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>За да преминете от един раздел на ПИ към предишния, натиснете <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Редът за <strong>обхождане с табулация</strong> на тези раздели на ПИ е:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Лентата с менюта</li>\n' +
  '  <li>Всяка група на лентата с инструменти</li>\n' +
  '  <li>Страничната лента</li>\n' +
  '  <li>Пътят до елемента в долния колонтитул</li>\n' +
  '  <li>Бутонът за превключване на броя на думите в долния колонтитул</li>\n' +
  '  <li>Връзката за търговска марка в долния колонтитул</li>\n' +
  '  <li>Манипулаторът за преоразмеряване на редактора в долния колонтитул</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Ако някой раздел на ПИ липсва, той се пропуска.</p>\n' +
  '\n' +
  '<p>Ако долният колонтитул има фокус за навигация с клавиатурата и няма странична лента, натискането на <strong>Shift+Tab</strong>\n' +
  '  премества фокуса към първата група на лентата с инструменти, а не към последната.</p>\n' +
  '\n' +
  '<h1>Навигиране в разделите на ПИ</h1>\n' +
  '\n' +
  '<p>За да преминете от един елемент на ПИ към следващия, натиснете съответния клавиш със <strong>стрелка</strong>.</p>\n' +
  '\n' +
  '<p>С клавишите със стрелка <strong>наляво</strong> и <strong>надясно</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>се придвижвате между менютата в лентата с менюто;</li>\n' +
  '  <li>отваряте подменю в меню;</li>\n' +
  '  <li>се придвижвате между бутоните в група на лентата с инструменти;</li>\n' +
  '  <li>се придвижвате между елементи в пътя до елемент в долния колонтитул.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>С клавишите със стрелка <strong>надолу</strong> и <strong>нагоре</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>се придвижвате между елементите от менюто в дадено меню;</li>\n' +
  '  <li>се придвижвате между елементите в изскачащо меню на лентата с инструменти.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Клавишите със <strong>стрелки</strong> се придвижват в рамките на фокусирания раздел на ПИ.</p>\n' +
  '\n' +
  '<p>За да затворите отворено меню, подменю или изскачащо меню, натиснете клавиша <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Ако текущият фокус е върху „горната част“ на конкретен раздел на ПИ, натискането на клавиша <strong>Esc</strong> също излиза\n' +
  '  напълно от навигацията с клавиатурата.</p>\n' +
  '\n' +
  '<h1>Изпълнение на елемент от менюто или бутон от лентата с инструменти</h1>\n' +
  '\n' +
  '<p>Когато желаният елемент от менюто или бутон от лентата с инструменти е маркиран, натиснете <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  или <strong>клавиша за интервал</strong>, за да изпълните елемента.</p>\n' +
  '\n' +
  '<h1>Навигиране в диалогови прозорци без раздели</h1>\n' +
  '\n' +
  '<p>В диалоговите прозорци без раздели първият интерактивен компонент се фокусира, когато се отвори диалоговият прозорец.</p>\n' +
  '\n' +
  '<p>Навигирайте между интерактивните компоненти на диалоговия прозорец, като натиснете <strong>Tab</strong> или <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Навигиране в диалогови прозорци с раздели</h1>\n' +
  '\n' +
  '<p>В диалоговите прозорци с раздели първият бутон в менюто с раздели се фокусира, когато се отвори диалоговият прозорец.</p>\n' +
  '\n' +
  '<p>Навигирайте между интерактивните компоненти на този диалогов раздел, като натиснете <strong>Tab</strong> или\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Превключете към друг диалогов раздел, като фокусирате върху менюто с раздели и след това натиснете съответния клавиш със <strong>стрелка</strong>,\n' +
  '  за да преминете през наличните раздели.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ko_KR.js000064400000011136151213255110022631 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.ko_KR',
'<h1>키보드 탐색 시작</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>메뉴 모음 포커스 표시</dt>\n' +
  '  <dd>Windows 또는 Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>도구 모음 포커스 표시</dt>\n' +
  '  <dd>Windows 또는 Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>푸터 포커스 표시</dt>\n' +
  '  <dd>Windows 또는 Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>컨텍스트 도구 모음에 포커스 표시</dt>\n' +
  '  <dd>Windows, Linux 또는 macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>첫 번째 UI 항목에서 탐색이 시작되며, 이때 첫 번째 항목이 강조 표시되거나 푸터 요소 경로에 있는\n' +
  '  경우 밑줄 표시됩니다.</p>\n' +
  '\n' +
  '<h1>UI 섹션 간 탐색</h1>\n' +
  '\n' +
  '<p>한 UI 섹션에서 다음 UI 섹션으로 이동하려면 <strong>Tab(탭)</strong>을 누릅니다.</p>\n' +
  '\n' +
  '<p>한 UI 섹션에서 이전 UI 섹션으로 돌아가려면 <strong>Shift+Tab(시프트+탭)</strong>을 누릅니다.</p>\n' +
  '\n' +
  '<p>이 UI 섹션의 <strong>Tab(탭)</strong> 순서는 다음과 같습니다.</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>메뉴 바</li>\n' +
  '  <li>각 도구 모음 그룹</li>\n' +
  '  <li>사이드바</li>\n' +
  '  <li>푸터의 요소 경로</li>\n' +
  '  <li>푸터의 단어 수 토글 버튼</li>\n' +
  '  <li>푸터의 브랜딩 링크</li>\n' +
  '  <li>푸터의 에디터 크기 변경 핸들</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>UI 섹션이 없는 경우 건너뛰기합니다.</p>\n' +
  '\n' +
  '<p>푸터에 키보드 탐색 포커스가 있고 사이드바는 보이지 않는 경우 <strong>Shift+Tab(시프트+탭)</strong>을 누르면\n' +
  '  포커스 표시가 마지막이 아닌 첫 번째 도구 모음 그룹으로 이동합니다.</p>\n' +
  '\n' +
  '<h1>UI 섹션 내 탐색</h1>\n' +
  '\n' +
  '<p>한 UI 요소에서 다음 UI 요소로 이동하려면 적절한 <strong>화살표</strong> 키를 누릅니다.</p>\n' +
  '\n' +
  '<p><strong>왼쪽</strong>과 <strong>오른쪽</strong> 화살표 키의 용도:</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>메뉴 모음에서 메뉴 항목 사이를 이동합니다.</li>\n' +
  '  <li>메뉴에서 하위 메뉴를 엽니다.</li>\n' +
  '  <li>도구 모음 그룹에서 버튼 사이를 이동합니다.</li>\n' +
  '  <li>푸터의 요소 경로에서 항목 간에 이동합니다.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>아래</strong>와 <strong>위</strong> 화살표 키의 용도:</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>메뉴에서 메뉴 항목 사이를 이동합니다.</li>\n' +
  '  <li>도구 모음 팝업 메뉴에서 메뉴 항목 사이를 이동합니다.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>화살표</strong> 키는 포커스 표시 UI 섹션 내에서 순환됩니다.</p>\n' +
  '\n' +
  '<p>열려 있는 메뉴, 열려 있는 하위 메뉴 또는 열려 있는 팝업 메뉴를 닫으려면 <strong>Esc</strong> 키를 누릅니다.</p>\n' +
  '\n' +
  "<p>현재 포커스 표시가 특정 UI 섹션 '상단'에 있는 경우 이때도 <strong>Esc</strong> 키를 누르면\n" +
  '  키보드 탐색이 완전히 종료됩니다.</p>\n' +
  '\n' +
  '<h1>메뉴 항목 또는 도구 모음 버튼 실행</h1>\n' +
  '\n' +
  '<p>원하는 메뉴 항목 또는 도구 모음 버튼이 강조 표시되어 있을 때 <strong>Return(리턴)</strong>, <strong>Enter(엔터)</strong>,\n' +
  '  또는 <strong>Space bar(스페이스바)</strong>를 눌러 해당 항목을 실행합니다.</p>\n' +
  '\n' +
  '<h1>탭이 없는 대화 탐색</h1>\n' +
  '\n' +
  '<p>탭이 없는 대화의 경우, 첫 번째 대화형 요소가 포커스 표시된 상태로 대화가 열립니다.</p>\n' +
  '\n' +
  '<p>대화형 요소들 사이를 이동할 때는 <strong>Tab(탭)</strong> 또는 <strong>Shift+Tab(시프트+탭)</strong>을 누릅니다.</p>\n' +
  '\n' +
  '<h1>탭이 있는 대화 탐색</h1>\n' +
  '\n' +
  '<p>탭이 있는 대화의 경우, 탭 메뉴에서 첫 번째 버튼이 포커스 표시된 상태로 대화가 열립니다.</p>\n' +
  '\n' +
  '<p>이 대화 탭의 대화형 요소들 사이를 이동할 때는 <strong>Tab(탭)</strong> 또는\n' +
  '  <strong>Shift+Tab(시프트+탭)</strong>을 누릅니다.</p>\n' +
  '\n' +
  '<p>다른 대화 탭으로 이동하려면 탭 메뉴를 포커스 표시한 다음 적절한 <strong>화살표</strong>\n' +
  '  키를 눌러 사용 가능한 탭들을 지나 원하는 탭으로 이동합니다.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/th_TH.js000064400000016637151213255110022645 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.th_TH',
'<h1>เริ่มต้นการนำทางด้วยแป้นพิมพ์</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>โฟกัสที่แถบเมนู</dt>\n' +
  '  <dd>Windows หรือ Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>โฟกัสที่แถบเครื่องมือ</dt>\n' +
  '  <dd>Windows หรือ Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>โฟกัสที่ส่วนท้าย</dt>\n' +
  '  <dd>Windows หรือ Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>โฟกัสที่แถบเครื่องมือตามบริบท</dt>\n' +
  '  <dd>Windows, Linux หรือ macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>การนำทางจะเริ่มที่รายการ UI แรก ซึ่งจะมีการไฮไลต์หรือขีดเส้นใต้ไว้ในกรณีที่รายการแรกอยู่ใน\n' +
  '  พาธองค์ประกอบส่วนท้าย</p>\n' +
  '\n' +
  '<h1>การนำทางระหว่างส่วนต่างๆ ของ UI</h1>\n' +
  '\n' +
  '<p>ในการย้ายจากส่วน UI หนึ่งไปยังส่วนถัดไป ให้กด <strong>Tab</strong></p>\n' +
  '\n' +
  '<p>ในการย้ายจากส่วน UI หนึ่งไปยังส่วนก่อนหน้า ให้กด <strong>Shift+Tab</strong></p>\n' +
  '\n' +
  '<p>ลำดับ<strong>แท็บ</strong>ของส่วนต่างๆ ของ UI คือ:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>แถบเมนู</li>\n' +
  '  <li>แต่ละกลุ่มแถบเครื่องมือ</li>\n' +
  '  <li>แถบข้าง</li>\n' +
  '  <li>พาธองค์ประกอบในส่วนท้าย</li>\n' +
  '  <li>ปุ่มสลับเปิด/ปิดจำนวนคำในส่วนท้าย</li>\n' +
  '  <li>ลิงก์ชื่อแบรนด์ในส่วนท้าย</li>\n' +
  '  <li>จุดจับปรับขนาดของตัวแก้ไขในส่วนท้าย</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>หากส่วน UI ไม่ปรากฏ แสดงว่าถูกข้ามไป</p>\n' +
  '\n' +
  '<p>หากส่วนท้ายมีการโฟกัสการนำทางแป้นพิมพ์และไม่มีแถบข้างปรากฏ การกด <strong>Shift+Tab</strong>\n' +
  '  จะย้ายการโฟกัสไปที่กลุ่มแถบเครื่องมือแรก ไม่ใช่สุดท้าย</p>\n' +
  '\n' +
  '<h1>การนำทางภายในส่วนต่างๆ ของ UI</h1>\n' +
  '\n' +
  '<p>ในการย้ายจากองค์ประกอบ UI หนึ่งไปยังองค์ประกอบส่วนถัดไป ให้กดปุ่ม<strong>ลูกศร</strong>ที่เหมาะสม</p>\n' +
  '\n' +
  '<p>ปุ่มลูกศร<strong>ซ้าย</strong>และ<strong>ขวา</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>ย้ายไปมาระหว่างเมนูต่างๆ ในแถบเมนู</li>\n' +
  '  <li>เปิดเมนูย่อยในเมนู</li>\n' +
  '  <li>ย้ายไปมาระหว่างปุ่มต่างๆ ในกลุ่มแถบเครื่องมือ</li>\n' +
  '  <li>ย้ายไปมาระหว่างรายการต่างๆ ในพาธองค์ประกอบของส่วนท้าย</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>ปุ่มลูกศร<strong>ลง</strong>และ<strong>ขึ้น</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>ย้ายไปมาระหว่างรายการเมนูต่างๆ ในเมนู</li>\n' +
  '  <li>ย้ายไปมาระหว่างรายการต่างๆ ในเมนูป๊อบอัพแถบเครื่องมือ</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>ปุ่ม<strong>ลูกศร</strong>จะเลื่อนไปมาภายในส่วน UI ที่โฟกัส</p>\n' +
  '\n' +
  '<p>ในการปิดเมนูที่เปิดอยู่ เมนูย่อยที่เปิดอยู่ หรือเมนูป๊อบอัพที่เปิดอยู่ ให้กดปุ่ม <strong>Esc</strong></p>\n' +
  '\n' +
  '<p>หากโฟกัสปัจจุบันอยู่ที่ ‘ด้านบนสุด’ ของส่วน UI เฉพาะ การกดปุ่ม <strong>Esc</strong> จะทำให้ออกจาก\n' +
  '  การนำทางด้วยแป้นพิมพ์ทั้งหมดเช่นกัน</p>\n' +
  '\n' +
  '<h1>การดำเนินการรายการเมนูหรือปุ่มในแถบเครื่องมือ</h1>\n' +
  '\n' +
  '<p>เมื่อไฮไลต์รายการเมนูหรือปุ่มในแถบเครื่องมือที่ต้องการ ให้กด <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  หรือ <strong>Space bar</strong> เพื่อดำเนินการรายการดังกล่าว</p>\n' +
  '\n' +
  '<h1>การนำทางสำหรับกล่องโต้ตอบที่ไม่อยู่ในแท็บ</h1>\n' +
  '\n' +
  '<p>ในกล่องโต้ตอบที่ไม่อยู่ในแท็บ จะโฟกัสที่ส่วนประกอบเชิงโต้ตอบแรกเมื่อกล่องโต้ตอบเปิด</p>\n' +
  '\n' +
  '<p>นำทางระหว่างส่วนประกอบเชิงโต้ตอบต่างๆ ของกล่องโต้ตอบ โดยการกด <strong>Tab</strong> หรือ <strong>Shift+Tab</strong></p>\n' +
  '\n' +
  '<h1>การนำทางสำหรับกล่องโต้ตอบที่อยู่ในแท็บ</h1>\n' +
  '\n' +
  '<p>ในกล่องโต้ตอบที่อยู่ในแท็บ จะโฟกัสที่ปุ่มแรกในเมนูแท็บเมื่อกล่องโต้ตอบเปิด</p>\n' +
  '\n' +
  '<p>นำทางระหว่างส่วนประกอบเชิงโต้ตอบต่างๆ ของแท็บกล่องโต้ตอบนี้โดยการกด <strong>Tab</strong> หรือ\n' +
  '  <strong>Shift+Tab</strong></p>\n' +
  '\n' +
  '<p>สลับไปยังแท็บกล่องโต้ตอบอื่นโดยการเลือกโฟกัสที่เมนูแท็บ แล้วกดปุ่ม<strong>ลูกศร</strong>ที่เหมาะสม\n' +
  '  เพื่อเลือกแท็บที่ใช้ได้</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pl.js000064400000011514151213255110022237 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.pl',
'<h1>Początek nawigacji przy użyciu klawiatury</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Ustaw fokus na pasek menu</dt>\n' +
  '  <dd>Windows lub Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Ustaw fokus na pasek narzędzi</dt>\n' +
  '  <dd>Windows lub Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Ustaw fokus na sekcję Footer</dt>\n' +
  '  <dd>Windows lub Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Ustaw fokus na kontekstowy pasek narzędzi</dt>\n' +
  '  <dd>Windows, Linux lub macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Nawigacja zostanie rozpoczęta od pierwszego elementu interfejsu użytkownika, który jest podświetlony lub — w przypadku pierwszego elementu\n' +
  '  w ścieżce elementów w sekcji Footer — podkreślony.</p>\n' +
  '\n' +
  '<h1>Nawigacja pomiędzy sekcjami interfejsu użytkownika</h1>\n' +
  '\n' +
  '<p>Aby przenieść się z danej sekcji interfejsu użytkownika do następnej, naciśnij <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Aby przenieść się z danej sekcji interfejsu użytkownika do poprzedniej, naciśnij <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Kolejność klawisza <strong>Tab</strong> w takich sekcjach interfejsu użytkownika jest następująca:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Pasek menu</li>\n' +
  '  <li>Każda grupa na pasku narzędzi</li>\n' +
  '  <li>Pasek boczny</li>\n' +
  '  <li>Ścieżka elementów w sekcji Footer</li>\n' +
  '  <li>Przycisk przełączania liczby słów w sekcji Footer</li>\n' +
  '  <li>Łącze brandujące w sekcji Footer</li>\n' +
  '  <li>Uchwyt zmiany rozmiaru edytora w sekcji Footer</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Jeżeli nie ma sekcji interfejsu użytkownika, jest to pomijane.</p>\n' +
  '\n' +
  '<p>Jeżeli na sekcji Footer jest ustawiony fokus nawigacji przy użyciu klawiatury i nie ma widocznego paska bocznego, naciśnięcie <strong>Shift+Tab</strong>\n' +
  '  przenosi fokus na pierwszą grupę paska narzędzi, a nie na ostatnią.</p>\n' +
  '\n' +
  '<h1>Nawigacja wewnątrz sekcji interfejsu użytkownika</h1>\n' +
  '\n' +
  '<p>Aby przenieść się z danego elementu interfejsu użytkownika do następnego, naciśnij odpowiedni klawisz <strong>strzałki</strong>.</p>\n' +
  '\n' +
  '<p>Klawisze strzałek <strong>w prawo</strong> i <strong>w lewo</strong> służą do</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>przenoszenia się pomiędzy menu na pasku menu,</li>\n' +
  '  <li>otwarcia podmenu w menu,</li>\n' +
  '  <li>przenoszenia się pomiędzy przyciskami w grupie paska narzędzi,</li>\n' +
  '  <li>przenoszenia się pomiędzy elementami w ścieżce elementów w sekcji Footer.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Klawisze strzałek <strong>w dół</strong> i <strong>w górę</strong> służą do</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>przenoszenia się pomiędzy elementami menu w menu,</li>\n' +
  '  <li>przenoszenia się pomiędzy elementami w wyskakującym menu paska narzędzi.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Klawisze <strong>strzałek</strong> służą do przemieszczania się w sekcji interfejsu użytkownika z ustawionym fokusem.</p>\n' +
  '\n' +
  '<p>Aby zamknąć otwarte menu, otwarte podmenu lub otwarte menu wyskakujące, naciśnij klawisz <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Jeżeli fokus jest ustawiony na górze konkretnej sekcji interfejsu użytkownika, naciśnięcie klawisza <strong>Esc</strong> powoduje wyjście\n' +
  '  z nawigacji przy użyciu klawiatury.</p>\n' +
  '\n' +
  '<h1>Wykonanie elementu menu lub przycisku paska narzędzi</h1>\n' +
  '\n' +
  '<p>Gdy podświetlony jest żądany element menu lub przycisk paska narzędzi, naciśnij klawisz <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  lub <strong>Spacja</strong>, aby go wykonać.</p>\n' +
  '\n' +
  '<h1>Nawigacja po oknie dialogowym bez kart</h1>\n' +
  '\n' +
  '<p>Gdy otwiera się okno dialogowe bez kart, fokus ustawiany jest na pierwszą interaktywną część okna.</p>\n' +
  '\n' +
  '<p>Pomiędzy interaktywnymi częściami okna dialogowego nawiguj, naciskając klawisze <strong>Tab</strong> lub <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Nawigacja po oknie dialogowym z kartami</h1>\n' +
  '\n' +
  '<p>W przypadku okna dialogowego z kartami po otwarciu okna dialogowego fokus ustawiany jest na pierwszy przycisk w menu karty.</p>\n' +
  '\n' +
  '<p>Nawigację pomiędzy interaktywnymi częściami karty okna dialogowego prowadzi się poprzez naciskanie klawiszy <strong>Tab</strong> lub\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Przełączenie się na inną kartę okna dialogowego wykonuje się poprzez ustawienie fokusu na menu karty i naciśnięcie odpowiedniego klawisza <strong>strzałki</strong>\n' +
  '  w celu przemieszczenia się pomiędzy dostępnymi kartami.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/it.js000064400000011746151213255110022247 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.it',
'<h1>Iniziare la navigazione tramite tastiera</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Impostare lo stato attivo per la barra dei menu</dt>\n' +
  '  <dd>Windows o Linux: ALT+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Impostare lo stato attivo per la barra degli strumenti</dt>\n' +
  '  <dd>Windows o Linux: ALT+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Impostare lo stato attivo per il piè di pagina</dt>\n' +
  '  <dd>Windows o Linux: ALT+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Impostare lo stato attivo per la barra degli strumenti contestuale</dt>\n' +
  '  <dd>Windows, Linux o macOS: CTRL+F9\n' +
  '</dl>\n' +
  '\n' +
  "<p>La navigazione inizierà dalla prima voce dell'interfaccia utente, che sarà evidenziata o sottolineata nel caso della prima voce\n" +
  "  nel percorso dell'elemento del piè di pagina.</p>\n" +
  '\n' +
  "<h1>Navigare tra le sezioni dell'interfaccia utente</h1>\n" +
  '\n' +
  "<p>Per passare da una sezione dell'interfaccia utente alla successiva, premere <strong>TAB</strong>.</p>\n" +
  '\n' +
  "<p>Per passare da una sezione dell'interfaccia utente alla precedente, premere <strong>MAIUSC+TAB</strong>.</p>\n" +
  '\n' +
  "<p>L'ordine di <strong>tabulazione</strong> di queste sezioni dell'interfaccia utente è:</p>\n" +
  '\n' +
  '<ol>\n' +
  '  <li>Barra dei menu</li>\n' +
  '  <li>Ogni gruppo di barre degli strumenti</li>\n' +
  '  <li>Barra laterale</li>\n' +
  "  <li>Percorso dell'elemento nel piè di pagina</li>\n" +
  '  <li>Pulsante di attivazione/disattivazione del conteggio delle parole nel piè di pagina</li>\n' +
  '  <li>Collegamento al marchio nel piè di pagina</li>\n' +
  "  <li>Quadratino di ridimensionamento dell'editor nel piè di pagina</li>\n" +
  '</ol>\n' +
  '\n' +
  "<p>Se una sezione dell'interfaccia utente non è presente, viene saltata.</p>\n" +
  '\n' +
  '<p>Se il piè di pagina ha lo stato attivo per la navigazione tramite tastiera e non è presente alcuna barra laterale visibile, premendo <strong>MAIUSC+TAB</strong>\n' +
  "  si sposta lo stato attivo sul primo gruppo di barre degli strumenti, non sull'ultimo.</p>\n" +
  '\n' +
  "<h1>Navigare all'interno delle sezioni dell'interfaccia utente</h1>\n" +
  '\n' +
  "<p>Per passare da un elemento dell'interfaccia utente al successivo, premere il tasto <strong>freccia</strong> appropriato.</p>\n" +
  '\n' +
  '<p>I tasti freccia <strong>Sinistra</strong> e <strong>Destra</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>consentono di spostarsi tra i menu della barra dei menu.</li>\n' +
  '  <li>aprono un sottomenu in un menu.</li>\n' +
  '  <li>consentono di spostarsi tra i pulsanti di un gruppo di barre degli strumenti.</li>\n' +
  "  <li>consentono di spostarsi tra le voci nel percorso dell'elemento del piè di pagina.</li>\n" +
  '</ul>\n' +
  '\n' +
  '<p>I tasti freccia <strong>Giù</strong> e <strong>Su</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>consentono di spostarsi tra le voci di un menu.</li>\n' +
  '  <li>consentono di spostarsi tra le voci di un menu a comparsa della barra degli strumenti.</li>\n' +
  '</ul>\n' +
  '\n' +
  "<p>I tasti <strong>freccia</strong> consentono di spostarsi all'interno della sezione dell'interfaccia utente con stato attivo.</p>\n" +
  '\n' +
  '<p>Per chiudere un menu aperto, un sottomenu aperto o un menu a comparsa aperto, premere il tasto <strong>ESC</strong>.</p>\n' +
  '\n' +
  "<p>Se lo stato attivo corrente si trova nella parte superiore di una particolare sezione dell'interfaccia utente, premendo il tasto <strong>ESC</strong> si esce\n" +
  '  completamente dalla navigazione tramite tastiera.</p>\n' +
  '\n' +
  '<h1>Eseguire una voce di menu o un pulsante della barra degli strumenti</h1>\n' +
  '\n' +
  '<p>Quando la voce di menu o il pulsante della barra degli strumenti desiderati sono evidenziati, premere il tasto di<strong>ritorno a capo</strong>, il tasto <strong>Invio</strong>\n' +
  '  o la <strong>barra spaziatrice</strong> per eseguirli.</p>\n' +
  '\n' +
  '<h1>Navigare nelle finestre di dialogo non a schede</h1>\n' +
  '\n' +
  "<p>Nelle finestre di dialogo non a schede, all'apertura della finestra di dialogo diventa attivo il primo componente interattivo.</p>\n" +
  '\n' +
  '<p>Per spostarsi tra i componenti interattivi della finestra di dialogo, premere <strong>TAB</strong> o <strong>MAIUSC+TAB</strong>.</p>\n' +
  '\n' +
  '<h1>Navigare nelle finestre di dialogo a schede</h1>\n' +
  '\n' +
  "<p>Nelle finestre di dialogo a schede, all'apertura della finestra di dialogo diventa attivo il primo pulsante del menu della scheda.</p>\n" +
  '\n' +
  '<p>Per spostarsi tra i componenti interattivi di questa scheda della finestra di dialogo, premere <strong>TAB</strong> o\n' +
  '  <strong>MAIUSC+TAB</strong>.</p>\n' +
  '\n' +
  "<p>Per passare a un'altra scheda della finestra di dialogo, attivare il menu della scheda e premere il tasto <strong>freccia</strong>\n" +
  '  appropriato per scorrere le schede disponibili.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sv_SE.js000064400000010255151213255120022645 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.sv_SE',
'<h1>Påbörja tangentbordsnavigering</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokusera på menyraden</dt>\n' +
  '  <dd>Windows eller Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokusera på verktygsraden</dt>\n' +
  '  <dd>Windows eller Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokusera på verktygsraden</dt>\n' +
  '  <dd>Windows eller Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokusera på en snabbverktygsrad</dt>\n' +
  '  <dd>Windows, Linux eller macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigeringen börjar vid det första gränssnittsobjektet, vilket är markerat eller understruket om det gäller det första objektet i\n' +
  '  sidfotens elementsökväg.</p>\n' +
  '\n' +
  '<h1>Navigera mellan UI-avsnitt</h1>\n' +
  '\n' +
  '<p>Flytta från ett UI-avsnitt till nästa genom att trycka på <strong>Tabb</strong>.</p>\n' +
  '\n' +
  '<p>Flytta från ett UI-avsnitt till det föregående genom att trycka på <strong>Skift+Tabb</strong>.</p>\n' +
  '\n' +
  '<p><strong>Tabb</strong>-ordningen för dessa UI-avsnitt är:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menyrad</li>\n' +
  '  <li>Varje verktygsradsgrupp</li>\n' +
  '  <li>Sidoruta</li>\n' +
  '  <li>Elementsökväg i sidfoten</li>\n' +
  '  <li>Växlingsknapp för ordantal i sidfoten</li>\n' +
  '  <li>Varumärkeslänk i sidfoten</li>\n' +
  '  <li>Storlekshandtag för redigeraren i sidfoten</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Om ett UI-avsnitt inte finns hoppas det över.</p>\n' +
  '\n' +
  '<p>Om sidfoten har fokus på tangentbordsnavigering, och det inte finns någon synlig sidoruta, flyttas fokus till den första verktygsradsgruppen\n' +
  '  när du trycker på <strong>Skift+Tabb</strong>, inte till den sista.</p>\n' +
  '\n' +
  '<h1>Navigera i UI-avsnitt</h1>\n' +
  '\n' +
  '<p>Flytta från ett UI-element till nästa genom att trycka på motsvarande <strong>piltangent</strong>.</p>\n' +
  '\n' +
  '<p><strong>Vänsterpil</strong> och <strong>högerpil</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>flytta mellan menyer på menyraden.</li>\n' +
  '  <li>öppna en undermeny på en meny.</li>\n' +
  '  <li>flytta mellan knappar i en verktygsradgrupp.</li>\n' +
  '  <li>flytta mellan objekt i sidfotens elementsökväg.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Nedpil</strong> och <strong>uppil</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>flytta mellan menyalternativ på en meny.</li>\n' +
  '  <li>flytta mellan alternativ på en popup-meny på verktygsraden.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Piltangenterna</strong> cirkulerar inom det fokuserade UI-avsnittet.</p>\n' +
  '\n' +
  '<p>Tryck på <strong>Esc</strong>-tangenten om du vill stänga en öppen meny, undermeny eller popup-meny.</p>\n' +
  '\n' +
  '<p>Om det aktuella fokuset är högst upp i ett UI-avsnitt avlutas även tangentbordsnavigeringen helt när\n' +
  '  du trycker på <strong>Esc</strong>-tangenten.</p>\n' +
  '\n' +
  '<h1>Köra ett menyalternativ eller en verktygfältsknapp</h1>\n' +
  '\n' +
  '<p>När menyalternativet eller verktygsradsknappen är markerad trycker du på <strong>Retur</strong>, <strong>Enter</strong>\n' +
  '  eller <strong>blanksteg</strong> för att köra alternativet.</p>\n' +
  '\n' +
  '<h1>Navigera i dialogrutor utan flikar</h1>\n' +
  '\n' +
  '<p>I dialogrutor utan flikar är den första interaktiva komponenten i fokus när dialogrutan öppnas.</p>\n' +
  '\n' +
  '<p>Navigera mellan interaktiva dialogkomponenter genom att trycka på <strong>Tabb</strong> eller <strong>Skift+Tabb</strong>.</p>\n' +
  '\n' +
  '<h1>Navigera i dialogrutor med flikar</h1>\n' +
  '\n' +
  '<p>I dialogrutor utan flikar är den första knappen på flikmenyn i fokus när dialogrutan öppnas.</p>\n' +
  '\n' +
  '<p>Navigera mellan interaktiva komponenter på dialogrutefliken genom att trycka på <strong>Tabb</strong> eller\n' +
  '  <strong>Skift+Tabb</strong>.</p>\n' +
  '\n' +
  '<p>Växla till en annan dialogruta genom att fokusera på flikmenyn och sedan trycka på motsvarande <strong>piltangent</strong>\n' +
  '  för att cirkulera mellan de tillgängliga flikarna.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ca.js000064400000011520151213255120022205 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.ca',
'<h1>Inici de la navegació amb el teclat</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Enfocar la barra de menús</dt>\n' +
  '  <dd>Windows o Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  "  <dt>Enfocar la barra d'eines</dt>\n" +
  '  <dd>Windows o Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Enfocar el peu de pàgina</dt>\n' +
  '  <dd>Windows o Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  "  <dt>Enfocar una barra d'eines contextual</dt>\n" +
  '  <dd>Windows, Linux o macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  "<p>La navegació començarà en el primer element de la interfície d'usuari, que es ressaltarà o subratllarà per al primer element a\n" +
  "  la ruta de l'element de peu de pàgina.</p>\n" +
  '\n' +
  "<h1>Navegació entre seccions de la interfície d'usuari</h1>\n" +
  '\n' +
  "<p>Per desplaçar-vos des d'una secció de la interfície d'usuari a la següent, premeu la tecla <strong>Tab</strong>.</p>\n" +
  '\n' +
  "<p>Per desplaçar-vos des d'una secció de la interfície d'usuari a l'anterior, premeu les tecles <strong>Maj+Tab</strong>.</p>\n" +
  '\n' +
  "<p>L'ordre en prémer la tecla <strong>Tab</strong> d'aquestes secciones de la interfície d'usuari és:</p>\n" +
  '\n' +
  '<ol>\n' +
  '  <li>Barra de menús</li>\n' +
  "  <li>Cada grup de la barra d'eines</li>\n" +
  '  <li>Barra lateral</li>\n' +
  "  <li>Ruta de l'element del peu de pàgina</li>\n" +
  '  <li>Botó de commutació de recompte de paraules al peu de pàgina</li>\n' +
  '  <li>Enllaç de marca del peu de pàgina</li>\n' +
  "  <li>Control de canvi de mida de l'editor al peu de pàgina</li>\n" +
  '</ol>\n' +
  '\n' +
  "<p>Si no hi ha una secció de la interfície d'usuari, s'ometrà.</p>\n" +
  '\n' +
  '<p>Si el peu de pàgina té el focus de navegació del teclat i no hi ha cap barra lateral visible, en prémer <strong>Maj+Tab</strong>\n' +
  "  el focus es mou al primer grup de la barra d'eines, no l'últim.</p>\n" +
  '\n' +
  "<h1>Navegació dins de les seccions de la interfície d'usuari</h1>\n" +
  '\n' +
  "<p>Per desplaçar-vos des d'un element de la interfície d'usuari al següent, premeu la tecla de <strong>Fletxa</strong> adequada.</p>\n" +
  '\n' +
  '<p>Les tecles de fletxa <strong>Esquerra</strong> i <strong>Dreta</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>us permeten desplaçar-vos entre menús de la barra de menús.</li>\n' +
  '  <li>obren un submenú en un menú.</li>\n' +
  "  <li>us permeten desplaçar-vos entre botons d'un grup de la barra d'eines.</li>\n" +
  "  <li>us permeten desplaçar-vos entre elements de la ruta d'elements del peu de pàgina.</li>\n" +
  '</ul>\n' +
  '\n' +
  '<p>Les tecles de fletxa <strong>Avall</strong> i <strong>Amunt</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  "  <li>us permeten desplaçar-vos entre elements de menú d'un menú.</li>\n" +
  "  <li>us permeten desplaçar-vos entre elements d'un menú emergent de la barra d'eines.</li>\n" +
  '</ul>\n' +
  '\n' +
  "<p>Les tecles de <strong>Fletxa</strong> us permeten desplaçar-vos dins de la secció de la interfície d'usuari que té el focus.</p>\n" +
  '\n' +
  '<p>Per tancar un menú, un submenú o un menú emergent oberts, premeu la tecla <strong>Esc</strong>.</p>\n' +
  '\n' +
  "<p>Si el focus actual es troba a la ‘part superior’ d'una secció específica de la interfície d'usuari, en prémer la tecla <strong>Esc</strong> també es tanca\n" +
  '  completament la navegació amb el teclat.</p>\n' +
  '\n' +
  "<h1>Execució d'un element de menú o d'un botó de la barra d'eines</h1>\n" +
  '\n' +
  "<p>Quan l'element del menú o el botó de la barra d'eines que desitgeu estigui ressaltat, premeu <strong>Retorn</strong>, <strong>Intro</strong>\n" +
  "  o la <strong>barra d'espai</strong> per executar l'element.</p>\n" +
  '\n' +
  '<h1>Navegació per quadres de diàleg sense pestanyes</h1>\n' +
  '\n' +
  "<p>En els quadres de diàleg sense pestanyes, el primer component interactiu pren el focus quan s'obre el quadre diàleg.</p>\n" +
  '\n' +
  '<p>Premeu la tecla <strong>Tab</strong> o les tecles <strong>Maj+Tab</strong> per desplaçar-vos entre components interactius del quadre de diàleg.</p>\n' +
  '\n' +
  '<h1>Navegació per quadres de diàleg amb pestanyes</h1>\n' +
  '\n' +
  "<p>En els quadres de diàleg amb pestanyes, el primer botó del menú de la pestanya pren el focus quan s'obre el quadre diàleg.</p>\n" +
  '\n' +
  "<p>Per desplaçar-vos entre components interactius d'aquest quadre de diàleg, premeu la tecla <strong>Tab</strong> o\n" +
  '  les tecles <strong>Maj+Tab</strong>.</p>\n' +
  '\n' +
  "<p>Canvieu a la pestanya d'un altre quadre de diàleg, tot enfocant el menú de la pestanya, i després premeu la tecla <strong>Fletxa</strong> adequada\n" +
  '  per canviar entre les pestanyes disponibles.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/cs.js000064400000011421151213255120022227 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.cs',
'<h1>Začínáme navigovat pomocí klávesnice</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Přejít na řádek nabídek</dt>\n' +
  '  <dd>Windows nebo Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Přejít na panel nástrojů</dt>\n' +
  '  <dd>Windows nebo Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Přejít na zápatí</dt>\n' +
  '  <dd>Windows nebo Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Přejít na kontextový panel nástrojů</dt>\n' +
  '  <dd>Windows, Linux nebo macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigace začne u první položky uživatelského rozhraní, která bude zvýrazněna nebo v případě první položky\n' +
  '  cesty k prvku zápatí podtržena.</p>\n' +
  '\n' +
  '<h1>Navigace mezi oddíly uživatelského rozhraní</h1>\n' +
  '\n' +
  '<p>Stisknutím klávesy <strong>Tab</strong> se posunete z jednoho oddílu uživatelského rozhraní na další.</p>\n' +
  '\n' +
  '<p>Stisknutím kláves <strong>Shift+Tab</strong> se posunete z jednoho oddílu uživatelského rozhraní na předchozí.</p>\n' +
  '\n' +
  '<p>Pořadí přepínání mezi oddíly uživatelského rozhraní pomocí klávesy <strong>Tab</strong>:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Řádek nabídek</li>\n' +
  '  <li>Každá skupina panelu nástrojů</li>\n' +
  '  <li>Boční panel</li>\n' +
  '  <li>Cesta k prvku v zápatí.</li>\n' +
  '  <li>Tlačítko přepínače počtu slov v zápatí</li>\n' +
  '  <li>Odkaz na informace o značce v zápatí</li>\n' +
  '  <li>Úchyt pro změnu velikosti editoru v zápatí</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Pokud nějaký oddíl uživatelského rozhraní není přítomen, je přeskočen.</p>\n' +
  '\n' +
  '<p>Pokud je zápatí vybrané pro navigaci pomocí klávesnice a není zobrazen žádný boční panel, stisknutím kláves <strong>Shift+Tab</strong>\n' +
  '  přejdete na první skupinu panelu nástrojů, nikoli na poslední.</p>\n' +
  '\n' +
  '<h1>Navigace v rámci oddílů uživatelského rozhraní</h1>\n' +
  '\n' +
  '<p>Chcete-li se přesunout z jednoho prvku uživatelského rozhraní na další, stiskněte příslušnou klávesu s <strong>šipkou</strong>.</p>\n' +
  '\n' +
  '<p>Klávesy s šipkou <strong>vlevo</strong> a <strong>vpravo</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>umožňují přesun mezi nabídkami na řádku nabídek;</li>\n' +
  '  <li>otevírají podnabídku nabídky;</li>\n' +
  '  <li>umožňují přesun mezi tlačítky ve skupině panelu nástrojů;</li>\n' +
  '  <li>umožňují přesun mezi položkami cesty prvku v zápatí.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Klávesy se šipkou <strong>dolů</strong> a <strong>nahoru</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>umožňují přesun mezi položkami nabídky;</li>\n' +
  '  <li>umožňují přesun mezi položkami místní nabídky panelu nástrojů.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Šipky</strong> provádí přepínání v rámci vybraného oddílu uživatelského rozhraní.</p>\n' +
  '\n' +
  '<p>Chcete-li zavřít otevřenou nabídku, podnabídku nebo místní nabídku, stiskněte klávesu <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Pokud je aktuálně vybrána horní část oddílu uživatelského rozhraní, stisknutím klávesy <strong>Esc</strong> zcela ukončíte také\n' +
  '  navigaci pomocí klávesnice.</p>\n' +
  '\n' +
  '<h1>Provedení příkazu položky nabídky nebo tlačítka panelu nástrojů</h1>\n' +
  '\n' +
  '<p>Pokud je zvýrazněna požadovaná položka nabídky nebo tlačítko panelu nástrojů, stisknutím klávesy <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  nebo <strong>mezerníku</strong> provedete příslušný příkaz.</p>\n' +
  '\n' +
  '<h1>Navigace v dialogových oknech bez záložek</h1>\n' +
  '\n' +
  '<p>Při otevření dialogových oken bez záložek přejdete na první interaktivní komponentu.</p>\n' +
  '\n' +
  '<p>Přecházet mezi interaktivními komponentami dialogového okna můžete stisknutím klávesy <strong>Tab</strong> nebo kombinace <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navigace v dialogových oknech se záložkami</h1>\n' +
  '\n' +
  '<p>Při otevření dialogových oken se záložkami přejdete na první tlačítko v nabídce záložek.</p>\n' +
  '\n' +
  '<p>Přecházet mezi interaktivními komponentami této záložky dialogového okna můžete stisknutím klávesy <strong>Tab</strong> nebo\n' +
  '  kombinace <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Chcete-li přepnout na další záložku dialogového okna, přejděte na nabídku záložek a poté můžete stisknutím požadované <strong>šipky</strong>\n' +
  '  přepínat mezi dostupnými záložkami.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ru.js000064400000015516151213255120022261 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.ru',
'<h1>Начните управление с помощью клавиатуры</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Фокус на панели меню</dt>\n' +
  '  <dd>Windows или Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Фокус на панели инструментов</dt>\n' +
  '  <dd>Windows или Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Фокус на нижнем колонтитуле</dt>\n' +
  '  <dd>Windows или Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Фокус на контекстной панели инструментов</dt>\n' +
  '  <dd>Windows, Linux или macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Первый доступный для управления элемент интерфейса будет выделен цветом или подчеркнут (если он находится\n' +
  '  в пути элементов нижнего колонтитула).</p>\n' +
  '\n' +
  '<h1>Переход между разделами пользовательского интерфейса</h1>\n' +
  '\n' +
  '<p>Чтобы перейти из текущего раздела интерфейса в следующий, нажмите <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Чтобы перейти из текущего раздела интерфейса в предыдущий, нажмите <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p><strong>Вкладки</strong> разделов интерфейса расположены в следующем порядке:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Панель меню</li>\n' +
  '  <li>Группы панели инструментов</li>\n' +
  '  <li>Боковая панель</li>\n' +
  '  <li>Путь элементов нижнего колонтитула</li>\n' +
  '  <li>Подсчет слов/символов в нижнем колонтитуле</li>\n' +
  '  <li>Брендовая ссылка в нижнем колонтитуле</li>\n' +
  '  <li>Угол для изменения размера окна редактора</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Если раздел интерфейса отсутствует, он пропускается.</p>\n' +
  '\n' +
  '<p>Если при управлении с клавиатуры фокус находится на нижнем колонтитуле, а видимая боковая панель отсутствует, то при нажатии сочетания клавиш <strong>Shift+Tab</strong>\n' +
  '  фокус переносится на первую группу панели инструментов, а не на последнюю.</p>\n' +
  '\n' +
  '<h1>Переход между элементами внутри разделов пользовательского интерфейса</h1>\n' +
  '\n' +
  '<p>Чтобы перейти от текущего элемента интерфейса к следующему, нажмите соответствующую <strong>клавишу со стрелкой</strong>.</p>\n' +
  '\n' +
  '<p>Клавиши со стрелками <strong>влево</strong> и <strong>вправо</strong> позволяют</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>перемещаться между разными меню в панели меню.</li>\n' +
  '  <li>открывать разделы меню.</li>\n' +
  '  <li>перемещаться между кнопками в группе панели инструментов.</li>\n' +
  '  <li>перемещаться между элементами в пути элементов нижнего колонтитула.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Клавиши со стрелками <strong>вниз</strong> и <strong>вверх</strong> позволяют</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>перемещаться между элементами одного меню.</li>\n' +
  '  <li>перемещаться между элементами всплывающего меню в панели инструментов.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>При использовании <strong>клавиш со стрелками</strong> вы будете циклически перемещаться по элементам в пределах выбранного раздела интерфейса.</p>\n' +
  '\n' +
  '<p>Чтобы закрыть открытое меню, его раздел или всплывающее меню, нажмите клавишу <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Если фокус находится наверху какого-либо раздела интерфейса, нажатие клавиши <strong>Esc</strong> также приведет\n' +
  '  к выходу из режима управления с помощью клавиатуры.</p>\n' +
  '\n' +
  '<h1>Использование элемента меню или кнопки на панели инструментов</h1>\n' +
  '\n' +
  '<p>Когда элемент меню или кнопка панели инструментов будут выделены, нажмите <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  или <strong>Space</strong>, чтобы их активировать.</p>\n' +
  '\n' +
  '<h1>Управление в диалоговом окне без вкладок</h1>\n' +
  '\n' +
  '<p>При открытии диалогового окна без вкладок фокус переносится на первый интерактивный компонент.</p>\n' +
  '\n' +
  '<p>Для перехода между интерактивными компонентами диалогового окна нажимайте <strong>Tab</strong> или <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Управление в диалоговом окне с вкладками</h1>\n' +
  '\n' +
  '<p>При открытии диалогового окна с вкладками фокус переносится на первую кнопку в меню вкладок.</p>\n' +
  '\n' +
  '<p>Для перехода между интерактивными компонентами этой вкладки диалогового окна нажимайте <strong>Tab</strong> или\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Для перехода на другую вкладку диалогового окна переместите фокус на меню вкладок, а затем используйте <strong>клавиши со стрелками</strong>\n' +
  '  для циклического переключения между доступными вкладками.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_CN.js000064400000007432151213255120022632 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.zh_CN',
'<h1>开始键盘导航</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>聚焦于菜单栏</dt>\n' +
  '  <dd>Windows 或 Linux:Alt+F9</dd>\n' +
  '  <dd>macOS:&#x2325;F9</dd>\n' +
  '  <dt>聚焦于工具栏</dt>\n' +
  '  <dd>Windows 或 Linux:Alt+F10</dd>\n' +
  '  <dd>macOS:&#x2325;F10</dd>\n' +
  '  <dt>聚焦于页脚</dt>\n' +
  '  <dd>Windows 或 Linux:Alt+F11</dd>\n' +
  '  <dd>macOS:&#x2325;F11</dd>\n' +
  '  <dt>聚焦于上下文工具栏</dt>\n' +
  '  <dd>Windows、Linux 或 macOS:Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>导航将在第一个 UI 项上开始,其中突出显示该项,或者对于页脚元素路径中的第一项,将为其添加下划线。</p>\n' +
  '\n' +
  '<h1>在 UI 部分之间导航</h1>\n' +
  '\n' +
  '<p>要从一个 UI 部分移至下一个,请按 <strong>Tab</strong>。</p>\n' +
  '\n' +
  '<p>要从一个 UI 部分移至上一个,请按 <strong>Shift+Tab</strong>。</p>\n' +
  '\n' +
  '<p>这些 UI 部分的 <strong>Tab</strong> 顺序为:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>菜单栏</li>\n' +
  '  <li>每个工具栏组</li>\n' +
  '  <li>边栏</li>\n' +
  '  <li>页脚中的元素路径</li>\n' +
  '  <li>页脚中的字数切换按钮</li>\n' +
  '  <li>页脚中的品牌链接</li>\n' +
  '  <li>页脚中的编辑器调整大小图柄</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>如果不存在某个 UI 部分,则跳过它。</p>\n' +
  '\n' +
  '<p>如果键盘导航焦点在页脚,并且没有可见的边栏,则按 <strong>Shift+Tab</strong> 将焦点移至第一个工具栏组而非最后一个。</p>\n' +
  '\n' +
  '<h1>在 UI 部分内导航</h1>\n' +
  '\n' +
  '<p>要从一个 UI 元素移至下一个,请按相应的<strong>箭头</strong>键。</p>\n' +
  '\n' +
  '<p><strong>左</strong>和<strong>右</strong>箭头键</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>在菜单栏中的菜单之间移动。</li>\n' +
  '  <li>打开菜单中的子菜单。</li>\n' +
  '  <li>在工具栏组中的按钮之间移动。</li>\n' +
  '  <li>在页脚的元素路径中的各项之间移动。</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>下</strong>和<strong>上</strong>箭头键</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>在菜单中的菜单项之间移动。</li>\n' +
  '  <li>在工具栏弹出菜单中的各项之间移动。</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>箭头</strong>键在具有焦点的 UI 部分内循环。</p>\n' +
  '\n' +
  '<p>要关闭打开的菜单、打开的子菜单或打开的弹出菜单,请按 <strong>Esc</strong> 键。</p>\n' +
  '\n' +
  '<p>如果当前的焦点在特定 UI 部分的“顶部”,则按 <strong>Esc</strong> 键还将完全退出键盘导航。</p>\n' +
  '\n' +
  '<h1>执行菜单项或工具栏按钮</h1>\n' +
  '\n' +
  '<p>当突出显示所需的菜单项或工具栏按钮时,按 <strong>Return</strong>、<strong>Enter</strong> 或<strong>空格</strong>以执行该项。</p>\n' +
  '\n' +
  '<h1>在非标签页式对话框中导航</h1>\n' +
  '\n' +
  '<p>在非标签页式对话框中,当对话框打开时,第一个交互组件获得焦点。</p>\n' +
  '\n' +
  '<p>通过按 <strong>Tab</strong> 或 <strong>Shift+Tab</strong>,在交互对话框组件之间导航。</p>\n' +
  '\n' +
  '<h1>在标签页式对话框中导航</h1>\n' +
  '\n' +
  '<p>在标签页式对话框中,当对话框打开时,标签页菜单中的第一个按钮获得焦点。</p>\n' +
  '\n' +
  '<p>通过按 <strong>Tab</strong> 或 <strong>Shift+Tab</strong>,在此对话框的交互组件之间导航。</p>\n' +
  '\n' +
  '<p>通过将焦点移至另一对话框标签页的菜单,然后按相应的<strong>箭头</strong>键以在可用的标签页间循环,从而切换到该对话框标签页。</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_TW.js000064400000007650151213255120022666 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.zh_TW',
'<h1>開始鍵盤瀏覽</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>跳至功能表列</dt>\n' +
  '  <dd>Windows 或 Linux:Alt+F9</dd>\n' +
  '  <dd>macOS:&#x2325;F9</dd>\n' +
  '  <dt>跳至工具列</dt>\n' +
  '  <dd>Windows 或 Linux:Alt+F10</dd>\n' +
  '  <dd>macOS:&#x2325;F10</dd>\n' +
  '  <dt>跳至頁尾</dt>\n' +
  '  <dd>Windows 或 Linux:Alt+F11</dd>\n' +
  '  <dd>macOS:&#x2325;F11</dd>\n' +
  '  <dt>跳至關聯式工具列</dt>\n' +
  '  <dd>Windows、Linux 或 macOS:Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>瀏覽會從第一個 UI 項目開始,該項目會反白顯示,但如果是「頁尾」元素路徑的第一項,\n' +
  '  則加底線。</p>\n' +
  '\n' +
  '<h1>在 UI 區段之間瀏覽</h1>\n' +
  '\n' +
  '<p>從 UI 區段移至下一個,請按 <strong>Tab</strong>。</p>\n' +
  '\n' +
  '<p>從 UI 區段移回上一個,請按 <strong>Shift+Tab</strong>。</p>\n' +
  '\n' +
  '<p>這些 UI 區段的 <strong>Tab</strong> 順序如下:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>功能表列</li>\n' +
  '  <li>各個工具列群組</li>\n' +
  '  <li>側邊欄</li>\n' +
  '  <li>頁尾中的元素路徑</li>\n' +
  '  <li>頁尾中字數切換按鈕</li>\n' +
  '  <li>頁尾中的品牌連結</li>\n' +
  '  <li>頁尾中編輯器調整大小控點</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>如果 UI 區段未顯示,表示已略過該區段。</p>\n' +
  '\n' +
  '<p>如果鍵盤瀏覽跳至頁尾,但沒有顯示側邊欄,則按下 <strong>Shift+Tab</strong>\n' +
  '  會跳至第一個工具列群組,而不是最後一個。</p>\n' +
  '\n' +
  '<h1>在 UI 區段之內瀏覽</h1>\n' +
  '\n' +
  '<p>在兩個 UI 元素之間移動,請按適當的<strong>方向</strong>鍵。</p>\n' +
  '\n' +
  '<p><strong>向左</strong>和<strong>向右</strong>方向鍵</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>在功能表列中的功能表之間移動。</li>\n' +
  '  <li>開啟功能表中的子功能表。</li>\n' +
  '  <li>在工具列群組中的按鈕之間移動。</li>\n' +
  '  <li>在頁尾的元素路徑中項目之間移動。</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>向下</strong>和<strong>向上</strong>方向鍵</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>在功能表中的功能表項目之間移動。</li>\n' +
  '  <li>在工具列快顯功能表中的項目之間移動。</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>方向</strong>鍵會在所跳至 UI 區段之內循環。</p>\n' +
  '\n' +
  '<p>若要關閉已開啟的功能表、已開啟的子功能表,或已開啟的快顯功能表,請按 <strong>Esc</strong> 鍵。</p>\n' +
  '\n' +
  '<p>如果目前已跳至特定 UI 區段的「頂端」,則按 <strong>Esc</strong> 鍵也會結束\n' +
  '  整個鍵盤瀏覽。</p>\n' +
  '\n' +
  '<h1>執行功能表列項目或工具列按鈕</h1>\n' +
  '\n' +
  '<p>當想要的功能表項目或工具列按鈕已反白顯示時,按 <strong>Return</strong>、<strong>Enter</strong>、\n' +
  '  或<strong>空白鍵</strong>即可執行該項目。</p>\n' +
  '\n' +
  '<h1>瀏覽非索引標籤式對話方塊</h1>\n' +
  '\n' +
  '<p>在非索引標籤式對話方塊中,開啟對話方塊時會跳至第一個互動元件。</p>\n' +
  '\n' +
  '<p>按 <strong>Tab</strong> 或 <strong>Shift+Tab</strong> 即可在互動式對話方塊元件之間瀏覽。</p>\n' +
  '\n' +
  '<h1>瀏覽索引標籤式對話方塊</h1>\n' +
  '\n' +
  '<p>在索引標籤式對話方塊中,開啟對話方塊時會跳至索引標籤式功能表中的第一個按鈕。</p>\n' +
  '\n' +
  '<p>若要在此對話方塊的互動式元件之間瀏覽,請按 <strong>Tab</strong> 或\n' +
  '  <strong>Shift+Tab</strong>。</p>\n' +
  '\n' +
  '<p>先跳至索引標籤式功能表,然後按適當的<strong>方向</strong>鍵,即可切換至另一個對話方塊索引標籤,\n' +
  '  以循環瀏覽可用的索引標籤。</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hr.js000064400000011331151213255120022233 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.hr',
'<h1>Početak navigacije na tipkovnici</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokusiranje trake izbornika</dt>\n' +
  '  <dd>Windows ili Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokusiranje alatne trake</dt>\n' +
  '  <dd>Windows ili Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokusiranje podnožja</dt>\n' +
  '  <dd>Windows ili Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokusiranje kontekstne alatne trake</dt>\n' +
  '  <dd>Windows, Linux ili macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigacija će započeti kod prve stavke na korisničkom sučelju, koja će biti istaknuta ili podcrtana ako se radi o prvoj stavci u\n' +
  '  putu elementa u podnožju.</p>\n' +
  '\n' +
  '<h1>Navigacija između dijelova korisničkog sučelja</h1>\n' +
  '\n' +
  '<p>Za pomicanje s jednog dijela korisničkog sučelja na drugi pritisnite <strong>tabulator</strong>.</p>\n' +
  '\n' +
  '<p>Za pomicanje s jednog dijela korisničkog sučelja na prethodni pritisnite <strong>Shift + tabulator</strong>.</p>\n' +
  '\n' +
  '<p>Ovo je redoslijed pomicanja <strong>tabulatora</strong> po dijelovima korisničkog sučelja:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Traka izbornika</li>\n' +
  '  <li>Pojedinačne grupe na alatnoj traci</li>\n' +
  '  <li>Bočna traka</li>\n' +
  '  <li>Put elemenata u podnožju</li>\n' +
  '  <li>Gumb za pomicanje po broju riječi u podnožju</li>\n' +
  '  <li>Veza na brand u podnožju</li>\n' +
  '  <li>Značajka za promjenu veličine alata za uređivanje u podnožju</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Ako neki dio korisničkog sučelja nije naveden, on se preskače.</p>\n' +
  '\n' +
  '<p>Ako u podnožju postoji fokus za navigaciju na tipkovnici, a nema vidljive bočne trake, pritiskom na <strong>Shift + tabulator</strong>\n' +
  '  fokus se prebacuje na prvu skupinu na alatnoj traci, ne na zadnju.</p>\n' +
  '\n' +
  '<h1>Navigacija unutar dijelova korisničkog sučelja</h1>\n' +
  '\n' +
  '<p>Za pomicanje s jednog elementa korisničkog sučelja na drugi pritisnite tipku s odgovarajućom <strong>strelicom</strong>.</p>\n' +
  '\n' +
  '<p>Tipke s <strong>lijevom</strong> i <strong>desnom</strong> strelicom</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>služe za pomicanje između izbornika na alatnoj traci.</li>\n' +
  '  <li>otvaraju podizbornik unutar izbornika.</li>\n' +
  '  <li>služe za pomicanje između gumba unutar skupina na alatnoj traci.</li>\n' +
  '  <li>služe za pomicanje između stavki na elementu puta u podnožju.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Tipke s <strong>donjom</strong> i <strong>gornjom</strong> strelicom</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>služe za pomicanje između stavki unutar izbornika.</li>\n' +
  '  <li>služe za pomicanje između stavki na alatnoj traci skočnog izbornika.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Tipkama <strong>strelica</strong> kružno se pomičete unutar dijela korisničkog sučelja koji je u fokusu.</p>\n' +
  '\n' +
  '<p>Za zatvaranje otvorenog izbornika, otvorenog podizbornika ili otvorenog skočnog izbornika pritisnite tipku <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Ako je fokus trenutačno postavljen na vrh pojedinačnog dijela korisničkog sučelja, pritiskom na tipku <strong>Esc</strong> također\n' +
  '  u potpunosti zatvarate navigaciju na tipkovnici.</p>\n' +
  '\n' +
  '<h1>Izvršavanje radnji putem stavki izbornika ili gumba na alatnoj traci</h1>\n' +
  '\n' +
  '<p>Nakon što se istakne stavka izbornika ili gumb na alatnoj traci s radnjom koju želite izvršiti, pritisnite tipku <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  ili <strong>razmak</strong> da biste pokrenuli željenu radnju.</p>\n' +
  '\n' +
  '<h1>Navigacija dijaloškim okvirima izvan kartica</h1>\n' +
  '\n' +
  '<p>Prilikom otvaranja dijaloških okvira izvan kartica fokus se nalazi na prvoj interaktivnoj komponenti.</p>\n' +
  '\n' +
  '<p>Navigaciju između interaktivnih dijaloških komponenata vršite pritiskom na <strong>tabulator</strong> ili <strong>Shift + tabulator</strong>.</p>\n' +
  '\n' +
  '<h1>Navigacija dijaloškim okvirima u karticama</h1>\n' +
  '\n' +
  '<p>Prilikom otvaranja dijaloških okvira u karticama fokus se nalazi na prvom gumbu u izborniku unutar kartice.</p>\n' +
  '\n' +
  '<p>Navigaciju između interaktivnih komponenata dijaloškog okvira u kartici vršite pritiskom na <strong>tabulator</strong> ili\n' +
  '  <strong>Shift + tabulator</strong>.</p>\n' +
  '\n' +
  '<p>Na karticu s drugim dijaloškim okvirom možete se prebaciti tako da stavite fokus na izbornik kartice pa pritisnete tipku s odgovarajućom <strong>strelicom</strong>\n' +
  '  za kružno pomicanje između dostupnih kartica.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fi.js000064400000011325151213255130022224 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.fi',
'<h1>Näppäimistönavigoinnin aloittaminen</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Siirrä kohdistus valikkopalkkiin</dt>\n' +
  '  <dd>Windows tai Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Siirrä kohdistus työkalupalkkiin</dt>\n' +
  '  <dd>Windows tai Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Siirrä kohdistus alatunnisteeseen</dt>\n' +
  '  <dd>Windows tai Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Siirrä kohdistus kontekstuaaliseen työkalupalkkiin</dt>\n' +
  '  <dd>Windows, Linux tai macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigointi aloitetaan ensimmäisestä käyttöliittymän kohteesta, joka joko korostetaan tai alleviivataan, jos\n' +
  '  kyseessä on Alatunniste-elementin polun ensimmäinen kohde.</p>\n' +
  '\n' +
  '<h1>Käyttöliittymän eri osien välillä navigointi</h1>\n' +
  '\n' +
  '<p>Paina <strong>sarkainnäppäintä</strong> siirtyäksesi käyttöliittymän osasta seuraavaan.</p>\n' +
  '\n' +
  '<p>Jos haluat siirtyä edelliseen käyttöliittymän osaan, paina <strong>Shift+sarkainnäppäin</strong>.</p>\n' +
  '\n' +
  '<p><strong>Sarkainnäppäin</strong> siirtää sinua näissä käyttöliittymän osissa tässä järjestyksessä:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Valikkopalkki</li>\n' +
  '  <li>Työkalupalkin ryhmät</li>\n' +
  '  <li>Sivupalkki</li>\n' +
  '  <li>Elementin polku alatunnisteessa</li>\n' +
  '  <li>Sanalaskurin vaihtopainike alatunnisteessa</li>\n' +
  '  <li>Brändäyslinkki alatunnisteessa</li>\n' +
  '  <li>Editorin koon muuttamisen kahva alatunnisteessa</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Jos jotakin käyttöliittymän osaa ei ole, se ohitetaan.</p>\n' +
  '\n' +
  '<p>Jos kohdistus on siirretty alatunnisteeseen näppäimistönavigoinnilla eikä sivupalkkia ole näkyvissä, <strong>Shift+sarkainnäppäin</strong>\n' +
  '  siirtää kohdistuksen työkalupalkin ensimmäiseen ryhmään, eikä viimeiseen.</p>\n' +
  '\n' +
  '<h1>Käyttöliittymän eri osien sisällä navigointi</h1>\n' +
  '\n' +
  '<p>Paina <strong>nuolinäppäimiä</strong> siirtyäksesi käyttöliittymäelementistä seuraavaan.</p>\n' +
  '\n' +
  '<p><strong>Vasen</strong>- ja <strong>Oikea</strong>-nuolinäppäimet</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>siirtävät sinua valikkopalkin valikoiden välillä.</li>\n' +
  '  <li>avaavat valikon alavalikon.</li>\n' +
  '  <li>siirtävät sinua työkalupalkin ryhmän painikkeiden välillä.</li>\n' +
  '  <li>siirtävät sinua kohteiden välillä alatunnisteen elementin polussa.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Alas</strong>- ja <strong>Ylös</strong>-nuolinäppäimet</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>siirtävät sinua valikon valikkokohteiden välillä.</li>\n' +
  '  <li>siirtävät sinua työkalupalkin ponnahdusvalikon kohteiden välillä.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Nuolinäppäimet</strong> siirtävät sinua käyttöliittymän korostetun osan sisällä syklissä.</p>\n' +
  '\n' +
  '<p>Paina <strong>Esc</strong>-näppäintä sulkeaksesi avoimen valikon, avataksesi alavalikon tai avataksesi ponnahdusvalikon.</p>\n' +
  '\n' +
  '<p>Jos kohdistus on käyttöliittymän tietyn osion ylälaidassa, <strong>Esc</strong>-näppäimen painaminen\n' +
  '  poistuu myös näppäimistönavigoinnista kokonaan.</p>\n' +
  '\n' +
  '<h1>Suorita valikkokohde tai työkalupalkin painike</h1>\n' +
  '\n' +
  '<p>Kun haluamasi valikkokohde tai työkalupalkin painike on korostettuna, paina <strong>Return</strong>-, <strong>Enter</strong>-\n' +
  '  tai <strong>välilyöntinäppäintä</strong> suorittaaksesi kohteen.</p>\n' +
  '\n' +
  '<h1>Välilehdittömissä valintaikkunoissa navigointi</h1>\n' +
  '\n' +
  '<p>Kun välilehdetön valintaikkuna avautuu, kohdistus siirtyy sen ensimmäiseen interaktiiviseen komponenttiin.</p>\n' +
  '\n' +
  '<p>Voit siirtyä valintaikkunan interaktiivisten komponenttien välillä painamalla <strong>sarkainnäppäintä</strong> tai <strong>Shift+sarkainnäppäin</strong>.</p>\n' +
  '\n' +
  '<h1>Välilehdellisissä valintaikkunoissa navigointi</h1>\n' +
  '\n' +
  '<p>Kun välilehdellinen valintaikkuna avautuu, kohdistus siirtyy välilehtivalikon ensimmäiseen painikkeeseen.</p>\n' +
  '\n' +
  '<p>Voit siirtyä valintaikkunan välilehden interaktiivisen komponenttien välillä painamalla <strong>sarkainnäppäintä</strong> tai\n' +
  '  <strong>Shift+sarkainnäppäin</strong>.</p>\n' +
  '\n' +
  '<p>Voit siirtyä valintaikkunan toiseen välilehteen siirtämällä kohdistuksen välilehtivalikkoon ja painamalla sopivaa <strong>nuolinäppäintä</strong>\n' +
  '  siirtyäksesi käytettävissä olevien välilehtien välillä syklissä.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sk.js000064400000011570151213255130022245 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.sk',
'<h1>Začíname s navigáciou pomocou klávesnice</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Prejsť na panel s ponukami</dt>\n' +
  '  <dd>Windows alebo Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Prejsť na panel nástrojov</dt>\n' +
  '  <dd>Windows alebo Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Prejsť na pätičku</dt>\n' +
  '  <dd>Windows alebo Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Prejsť na kontextový panel nástrojov</dt>\n' +
  '  <dd>Windows, Linux alebo macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigácia začne pri prvej položke používateľského rozhrania, ktorá bude zvýraznená alebo v prípade prvej položky\n' +
  '  cesty k pätičke podčiarknutá.</p>\n' +
  '\n' +
  '<h1>Navigácia medzi časťami používateľského rozhrania</h1>\n' +
  '\n' +
  '<p>Ak sa chcete posunúť z jednej časti používateľského rozhrania do druhej, stlačte tlačidlo <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Ak sa chcete posunúť z jednej časti používateľského rozhrania do predchádzajúcej, stlačte tlačidlá <strong>Shift + Tab</strong>.</p>\n' +
  '\n' +
  '<p>Poradie prepínania medzi týmito časťami používateľského rozhrania pri stláčaní tlačidla <strong>Tab</strong>:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Panel s ponukou</li>\n' +
  '  <li>Každá skupina panela nástrojov</li>\n' +
  '  <li>Bočný panel</li>\n' +
  '  <li>Cesta k prvku v pätičke</li>\n' +
  '  <li>Prepínač počtu slov v pätičke</li>\n' +
  '  <li>Odkaz na informácie o značke v pätičke</li>\n' +
  '  <li>Úchyt na zmenu veľkosti editora v pätičke</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Ak nejaká časť používateľského rozhrania nie je prítomná, preskočí sa.</p>\n' +
  '\n' +
  '<p>Ak je pätička vybratá na navigáciu pomocou klávesnice a nie je viditeľný bočný panel, stlačením klávesov <strong>Shift+Tab</strong>\n' +
  '  prejdete na prvú skupinu panela nástrojov, nie na poslednú.</p>\n' +
  '\n' +
  '<h1>Navigácia v rámci častí používateľského rozhrania</h1>\n' +
  '\n' +
  '<p>Ak sa chcete posunúť z jedného prvku používateľského rozhrania na ďalší, stlačte príslušný kláves so <strong>šípkou</strong>.</p>\n' +
  '\n' +
  '<p>Klávesy so šípkami <strong>doľava</strong> a <strong>doprava</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>umožňujú presun medzi ponukami na paneli ponúk,</li>\n' +
  '  <li>otvárajú podponuku v rámci ponuky,</li>\n' +
  '  <li>umožňujú presun medzi tlačidlami v skupine panelov nástrojov,</li>\n' +
  '  <li>umožňujú presun medzi položkami cesty prvku v pätičke.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Klávesy so šípkami <strong>dole</strong> a <strong>hore</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>umožňujú presun medzi položkami ponuky,</li>\n' +
  '  <li>umožňujú presun medzi položkami v kontextovej ponuke panela nástrojov.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Klávesy so <strong>šípkami</strong> vykonávajú prepínanie v rámci vybranej časti používateľského rozhrania.</p>\n' +
  '\n' +
  '<p>Ak chcete zatvoriť otvorenú ponuku, otvorenú podponuku alebo otvorenú kontextovú ponuku, stlačte kláves <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Ak je aktuálne vybratá horná časť konkrétneho používateľského rozhrania, stlačením klávesu <strong>Esc</strong> úplne ukončíte tiež\n' +
  '  navigáciu pomocou klávesnice.</p>\n' +
  '\n' +
  '<h1>Vykonanie príkazu položky ponuky alebo tlačidla panela nástrojov</h1>\n' +
  '\n' +
  '<p>Keď je zvýraznená požadovaná položka ponuky alebo tlačidlo panela nástrojov, stlačením klávesov <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  alebo <strong>medzerníka</strong> vykonáte príslušný príkaz položky.</p>\n' +
  '\n' +
  '<h1>Navigácia v dialógových oknách bez záložiek</h1>\n' +
  '\n' +
  '<p>Pri otvorení dialógových okien bez záložiek prejdete na prvý interaktívny komponent.</p>\n' +
  '\n' +
  '<p>Medzi interaktívnymi dialógovými komponentmi môžete prechádzať stlačením klávesov <strong>Tab</strong> alebo <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navigácia v dialógových oknách so záložkami</h1>\n' +
  '\n' +
  '<p>Pri otvorení dialógových okien so záložkami prejdete na prvé tlačidlo v ponuke záložiek.</p>\n' +
  '\n' +
  '<p>Medzi interaktívnymi komponentmi tejto dialógovej záložky môžete prechádzať stlačením klávesov <strong>Tab</strong> alebo\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Ak chcete prepnúť na ďalšiu záložku dialógového okna, prejdite do ponuky záložiek a potom môžete stlačením príslušného klávesu so <strong>šípkou</strong>\n' +
  '  prepínať medzi dostupnými záložkami.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/de.js000064400000011556151213255130022224 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.de',
'<h1>Grundlagen der Tastaturnavigation</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokus auf Menüleiste</dt>\n' +
  '  <dd>Windows oder Linux: ALT+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokus auf Symbolleiste</dt>\n' +
  '  <dd>Windows oder Linux: ALT+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokus auf Fußzeile</dt>\n' +
  '  <dd>Windows oder Linux: ALT+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokus auf kontextbezogene Symbolleiste</dt>\n' +
  '  <dd>Windows, Linux oder macOS: STRG+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Die Navigation beginnt beim ersten Benutzeroberflächenelement, welches hervorgehoben ist. Falls sich das erste Element im Pfad der Fußzeile befindet,\n' +
  '  ist es unterstrichen.</p>\n' +
  '\n' +
  '<h1>Zwischen Abschnitten der Benutzeroberfläche navigieren</h1>\n' +
  '\n' +
  '<p>Um von einem Abschnitt der Benutzeroberfläche zum nächsten zu wechseln, drücken Sie <strong>TAB</strong>.</p>\n' +
  '\n' +
  '<p>Um von einem Abschnitt der Benutzeroberfläche zum vorherigen zu wechseln, drücken Sie <strong>UMSCHALT+TAB</strong>.</p>\n' +
  '\n' +
  '<p>Die Abschnitte der Benutzeroberfläche haben folgende <strong>TAB</strong>-Reihenfolge:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menüleiste</li>\n' +
  '  <li>Einzelne Gruppen der Symbolleiste</li>\n' +
  '  <li>Randleiste</li>\n' +
  '  <li>Elementpfad in der Fußzeile</li>\n' +
  '  <li>Umschaltfläche „Wörter zählen“ in der Fußzeile</li>\n' +
  '  <li>Branding-Link in der Fußzeile</li>\n' +
  '  <li>Editor-Ziehpunkt zur Größenänderung in der Fußzeile</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Falls ein Abschnitt der Benutzeroberflächen nicht vorhanden ist, wird er übersprungen.</p>\n' +
  '\n' +
  '<p>Wenn in der Fußzeile die Tastaturnavigation fokussiert ist und keine Randleiste angezeigt wird, wechselt der Fokus durch Drücken von <strong>UMSCHALT+TAB</strong>\n' +
  '  zur ersten Gruppe der Symbolleiste, nicht zur letzten.</p>\n' +
  '\n' +
  '<h1>Innerhalb von Abschnitten der Benutzeroberfläche navigieren</h1>\n' +
  '\n' +
  '<p>Um von einem Element der Benutzeroberfläche zum nächsten zu wechseln, drücken Sie die entsprechende <strong>Pfeiltaste</strong>.</p>\n' +
  '\n' +
  '<p>Die Pfeiltasten <strong>Links</strong> und <strong>Rechts</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>wechseln zwischen Menüs in der Menüleiste.</li>\n' +
  '  <li>öffnen das Untermenü eines Menüs.</li>\n' +
  '  <li>wechseln zwischen Schaltflächen in einer Gruppe der Symbolleiste.</li>\n' +
  '  <li>wechseln zwischen Elementen im Elementpfad der Fußzeile.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Die Pfeiltasten <strong>Abwärts</strong> und <strong>Aufwärts</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>wechseln zwischen Menüelementen in einem Menü.</li>\n' +
  '  <li>wechseln zwischen Elementen in einem Popupmenü der Symbolleiste.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Die <strong>Pfeiltasten</strong> rotieren innerhalb des fokussierten Abschnitts der Benutzeroberfläche.</p>\n' +
  '\n' +
  '<p>Um ein geöffnetes Menü, ein geöffnetes Untermenü oder ein geöffnetes Popupmenü zu schließen, drücken Sie die <strong>ESC</strong>-Taste.</p>\n' +
  '\n' +
  '<p>Wenn sich der aktuelle Fokus ganz oben in einem bestimmten Abschnitt der Benutzeroberfläche befindet, wird durch Drücken der <strong>ESC</strong>-Taste auch\n' +
  '  die Tastaturnavigation beendet.</p>\n' +
  '\n' +
  '<h1>Ein Menüelement oder eine Symbolleistenschaltfläche ausführen</h1>\n' +
  '\n' +
  '<p>Wenn das gewünschte Menüelement oder die gewünschte Symbolleistenschaltfläche hervorgehoben ist, drücken Sie <strong>Zurück</strong>, <strong>Eingabe</strong>\n' +
  '  oder die <strong>Leertaste</strong>, um das Element auszuführen.</p>\n' +
  '\n' +
  '<h1>In Dialogfeldern ohne Registerkarten navigieren</h1>\n' +
  '\n' +
  '<p>In Dialogfeldern ohne Registerkarten ist beim Öffnen eines Dialogfelds die erste interaktive Komponente fokussiert.</p>\n' +
  '\n' +
  '<p>Navigieren Sie zwischen den interaktiven Komponenten eines Dialogfelds, indem Sie <strong>TAB</strong> oder <strong>UMSCHALT+TAB</strong> drücken.</p>\n' +
  '\n' +
  '<h1>In Dialogfeldern mit Registerkarten navigieren</h1>\n' +
  '\n' +
  '<p>In Dialogfeldern mit Registerkarten ist beim Öffnen eines Dialogfelds die erste Schaltfläche eines Registerkartenmenüs fokussiert.</p>\n' +
  '\n' +
  '<p>Navigieren Sie zwischen den interaktiven Komponenten auf dieser Registerkarte des Dialogfelds, indem Sie <strong>TAB</strong> oder\n' +
  '  <strong>UMSCHALT+TAB</strong> drücken.</p>\n' +
  '\n' +
  '<p>Wechseln Sie zu einer anderen Registerkarte des Dialogfelds, indem Sie den Fokus auf das Registerkartenmenü legen und dann die entsprechende <strong>Pfeiltaste</strong>\n' +
  '  drücken, um durch die verfügbaren Registerkarten zu rotieren.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nl.js000064400000010570151213255130022240 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.nl',
'<h1>Toetsenbordnavigatie starten</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Focus op de menubalk instellen</dt>\n' +
  '  <dd>Windows of Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Focus op de werkbalk instellen</dt>\n' +
  '  <dd>Windows of Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Focus op de voettekst instellen</dt>\n' +
  '  <dd>Windows of Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Focus op een contextuele werkbalk instellen</dt>\n' +
  '  <dd>Windows, Linux of macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>De navigatie start bij het eerste UI-item, dat wordt gemarkeerd of onderstreept als het eerste item zich in\n' +
  '  in het elementenpad van de voettekst bevindt.</p>\n' +
  '\n' +
  '<h1>Navigeren tussen UI-secties</h1>\n' +
  '\n' +
  '<p>Druk op <strong>Tab</strong> om naar de volgende UI-sectie te gaan.</p>\n' +
  '\n' +
  '<p>Druk op <strong>Shift+Tab</strong> om naar de vorige UI-sectie te gaan.</p>\n' +
  '\n' +
  '<p>De <strong>Tab</strong>-volgorde van deze UI-secties is:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menubalk</li>\n' +
  '  <li>Elke werkbalkgroep</li>\n' +
  '  <li>Zijbalk</li>\n' +
  '  <li>Elementenpad in de voettekst</li>\n' +
  '  <li>Wisselknop voor aantal woorden in de voettekst</li>\n' +
  '  <li>Merkkoppeling in de voettekst</li>\n' +
  '  <li>Greep voor het wijzigen van het formaat van de editor in de voettekst</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Als een UI-sectie niet aanwezig is, wordt deze overgeslagen.</p>\n' +
  '\n' +
  '<p>Als de focus van de toetsenbordnavigatie is ingesteld op de voettekst en er geen zichtbare zijbalk is, kun je op <strong>Shift+Tab</strong> drukken\n' +
  '  om de focus naar de eerste werkbalkgroep in plaats van de laatste te verplaatsen.</p>\n' +
  '\n' +
  '<h1>Navigeren binnen UI-secties</h1>\n' +
  '\n' +
  '<p>Druk op de <strong>pijltjestoets</strong> om naar het betreffende UI-element te gaan.</p>\n' +
  '\n' +
  '<p>Met de pijltjestoetsen <strong>Links</strong> en <strong>Rechts</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  "  <li>wissel je tussen menu's in de menubalk.</li>\n" +
  '  <li>open je een submenu in een menu.</li>\n' +
  '  <li>wissel je tussen knoppen in een werkbalkgroep.</li>\n' +
  '  <li>wissel je tussen items in het elementenpad in de voettekst.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Met de pijltjestoetsen <strong>Omlaag</strong> en <strong>Omhoog</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>wissel je tussen menu-items in een menu.</li>\n' +
  '  <li>wissel je tussen items in een werkbalkpop-upmenu.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Met de <strong>pijltjestoetsen</strong> wissel je binnen de UI-sectie waarop de focus is ingesteld.</p>\n' +
  '\n' +
  '<p>Druk op de toets <strong>Esc</strong> om een geopend menu, submenu of pop-upmenu te sluiten.</p>\n' +
  '\n' +
  "<p>Als de huidige focus is ingesteld 'bovenaan' een bepaalde UI-sectie, kun je op de toets <strong>Esc</strong> drukken\n" +
  '  om de toetsenbordnavigatie af te sluiten.</p>\n' +
  '\n' +
  '<h1>Een menu-item of werkbalkknop uitvoeren</h1>\n' +
  '\n' +
  '<p>Als het gewenste menu-item of de gewenste werkbalkknop is gemarkeerd, kun je op <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  of de <strong>spatiebalk</strong> drukken om het item uit te voeren.</p>\n' +
  '\n' +
  '<h1>Navigeren in dialoogvensters zonder tabblad</h1>\n' +
  '\n' +
  '<p>Als een dialoogvenster zonder tabblad wordt geopend, wordt de focus ingesteld op het eerste interactieve onderdeel.</p>\n' +
  '\n' +
  '<p>Je kunt navigeren tussen interactieve onderdelen van een dialoogvenster door op <strong>Tab</strong> of <strong>Shift+Tab</strong> te drukken.</p>\n' +
  '\n' +
  '<h1>Navigeren in dialoogvensters met tabblad</h1>\n' +
  '\n' +
  '<p>Als een dialoogvenster met tabblad wordt geopend, wordt de focus ingesteld op de eerste knop in het tabbladmenu.</p>\n' +
  '\n' +
  '<p>Je kunt navigeren tussen interactieve onderdelen van dit tabblad van het dialoogvenster door op <strong>Tab</strong> of\n' +
  '  <strong>Shift+Tab</strong> te drukken.</p>\n' +
  '\n' +
  '<p>Je kunt overschakelen naar een ander tabblad van het dialoogvenster door de focus in te stellen op het tabbladmenu en vervolgens op de juiste <strong>pijltjestoets</strong>\n' +
  '  te drukken om tussen de beschikbare tabbladen te wisselen.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/en.js000064400000007542151213255130022236 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.en',
'<h1>Begin keyboard navigation</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Focus the Menu bar</dt>\n' +
  '  <dd>Windows or Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Focus the Toolbar</dt>\n' +
  '  <dd>Windows or Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Focus the footer</dt>\n' +
  '  <dd>Windows or Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Focus a contextual toolbar</dt>\n' +
  '  <dd>Windows, Linux or macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigation will start at the first UI item, which will be highlighted, or underlined in the case of the first item in\n' +
  '  the Footer element path.</p>\n' +
  '\n' +
  '<h1>Navigate between UI sections</h1>\n' +
  '\n' +
  '<p>To move from one UI section to the next, press <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>To move from one UI section to the previous, press <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>The <strong>Tab</strong> order of these UI sections is:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menu bar</li>\n' +
  '  <li>Each toolbar group</li>\n' +
  '  <li>Sidebar</li>\n' +
  '  <li>Element path in the footer</li>\n' +
  '  <li>Word count toggle button in the footer</li>\n' +
  '  <li>Branding link in the footer</li>\n' +
  '  <li>Editor resize handle in the footer</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>If a UI section is not present, it is skipped.</p>\n' +
  '\n' +
  '<p>If the footer has keyboard navigation focus, and there is no visible sidebar, pressing <strong>Shift+Tab</strong>\n' +
  '  moves focus to the first toolbar group, not the last.</p>\n' +
  '\n' +
  '<h1>Navigate within UI sections</h1>\n' +
  '\n' +
  '<p>To move from one UI element to the next, press the appropriate <strong>Arrow</strong> key.</p>\n' +
  '\n' +
  '<p>The <strong>Left</strong> and <strong>Right</strong> arrow keys</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>move between menus in the menu bar.</li>\n' +
  '  <li>open a sub-menu in a menu.</li>\n' +
  '  <li>move between buttons in a toolbar group.</li>\n' +
  '  <li>move between items in the footer’s element path.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>The <strong>Down</strong> and <strong>Up</strong> arrow keys</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>move between menu items in a menu.</li>\n' +
  '  <li>move between items in a toolbar pop-up menu.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Arrow</strong> keys cycle within the focused UI section.</p>\n' +
  '\n' +
  '<p>To close an open menu, an open sub-menu, or an open pop-up menu, press the <strong>Esc</strong> key.</p>\n' +
  '\n' +
  '<p>If the current focus is at the ‘top’ of a particular UI section, pressing the <strong>Esc</strong> key also exits\n' +
  '  keyboard navigation entirely.</p>\n' +
  '\n' +
  '<h1>Execute a menu item or toolbar button</h1>\n' +
  '\n' +
  '<p>When the desired menu item or toolbar button is highlighted, press <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  or the <strong>Space bar</strong> to execute the item.</p>\n' +
  '\n' +
  '<h1>Navigate non-tabbed dialogs</h1>\n' +
  '\n' +
  '<p>In non-tabbed dialogs, the first interactive component takes focus when the dialog opens.</p>\n' +
  '\n' +
  '<p>Navigate between interactive dialog components by pressing <strong>Tab</strong> or <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navigate tabbed dialogs</h1>\n' +
  '\n' +
  '<p>In tabbed dialogs, the first button in the tab menu takes focus when the dialog opens.</p>\n' +
  '\n' +
  '<p>Navigate between interactive components of this dialog tab by pressing <strong>Tab</strong> or\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Switch to another dialog tab by giving the tab menu focus and then pressing the appropriate <strong>Arrow</strong>\n' +
  '  key to cycle through the available tabs.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/kk.js000064400000015225151213255130022236 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.kk',
'<h1>Пернетақта навигациясын бастау</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Мәзір жолағын фокустау</dt>\n' +
  '  <dd>Windows немесе Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Құралдар тақтасын фокустау</dt>\n' +
  '  <dd>Windows немесе Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Төменгі деректемені фокустау</dt>\n' +
  '  <dd>Windows немесе Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Мәтінмәндік құралдар тақтасын фокустау</dt>\n' +
  '  <dd>Windows, Linux немесе macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Навигация бөлектелетін немесе Төменгі деректеме элементінің жолындағы бірінші элемент жағдайында асты сызылатын\n' +
  '  бірінші ПИ элементінен басталады.</p>\n' +
  '\n' +
  '<h1>ПИ бөлімдері арасында навигациялау</h1>\n' +
  '\n' +
  '<p>Бір ПИ бөлімінен келесісіне өту үшін <strong>Tab</strong> пернесін басыңыз.</p>\n' +
  '\n' +
  '<p>Бір ПИ бөлімінен алдыңғысына өту үшін <strong>Shift+Tab</strong> пернесін басыңыз.</p>\n' +
  '\n' +
  '<p>Осы ПИ бөлімдерінің <strong>Tab</strong> реті:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Мәзір жолағы</li>\n' +
  '  <li>Әрбір құралдар тақтасы тобы</li>\n' +
  '  <li>Бүйірлік жолақ</li>\n' +
  '  <li>Төменгі деректемедегі элемент жолы</li>\n' +
  '  <li>Төменгі деректемедегі сөздер санын ауыстыру түймесі</li>\n' +
  '  <li>Төменгі деректемедегі брендингтік сілтеме</li>\n' +
  '  <li>Төменгі деректемедегі редактор өлшемін өзгерту тұтқасы</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>ПИ бөлімі көрсетілмесе, ол өткізіп жіберіледі.</p>\n' +
  '\n' +
  '<p>Төменгі деректемеде пернетақта навигациясының фокусы болса және бүйірлік жолақ көрінбесе, <strong>Shift+Tab</strong> тіркесімін басу әрекеті\n' +
  '  фокусты соңғысы емес, бірінші құралдар тақтасы тобына жылжытады.</p>\n' +
  '\n' +
  '<h1>ПИ бөлімдерінде навигациялау</h1>\n' +
  '\n' +
  '<p>Бір ПИ элементінен келесісіне өту үшін <strong>Arrow</strong> (Көрсеткі) пернесін басыңыз.</p>\n' +
  '\n' +
  '<p><strong>Left</strong> (Сол жақ) және <strong>Right</strong> (Оң жақ) көрсеткі пернелері</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>мәзір жолағындағы мәзірлер арасында жылжыту.</li>\n' +
  '  <li>мәзірде ішкі мәзірді ашу.</li>\n' +
  '  <li>құралдар тақтасы тобындағы түймелер арасында жылжыту.</li>\n' +
  '  <li>төменгі деректеме элементінің жолындағы элементтер арасында жылжыту.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Down</strong> (Төмен) және <strong>Up</strong> (Жоғары) көрсеткі пернелері</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>мәзірдегі мәзір элементтері арасында жылжыту.</li>\n' +
  '  <li>құралдар тақтасының ашылмалы мәзіріндегі мәзір элементтері арасында жылжыту.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Фокусталған ПИ бөліміндегі <strong>Arrow</strong> (Көрсеткі) пернелерінің циклі.</p>\n' +
  '\n' +
  '<p>Ашық мәзірді жабу үшін ішкі мәзірді ашып немесе ашылмалы мәзірді ашып, <strong>Esc</strong> пернесін басыңыз.</p>\n' +
  '\n' +
  '<p>Ағымдағы фокус белгілі бір ПИ бөлімінің «үстінде» болса, <strong>Esc</strong> пернесін басу әрекеті пернетақта\n' +
  '  навигациясын толығымен жабады.</p>\n' +
  '\n' +
  '<h1>Мәзір элементін немесе құралдар тақтасы түймесін орындау</h1>\n' +
  '\n' +
  '<p>Қажетті мәзір элементі немесе құралдар тақтасы түймесі бөлектелген кезде, элементті орындау үшін <strong>Return</strong> (Қайтару), <strong>Enter</strong> (Енгізу)\n' +
  '  немесе <strong>Space bar</strong> (Бос орын) пернесін басыңыз.</p>\n' +
  '\n' +
  '<h1>Белгіленбеген диалог терезелерін навигациялау</h1>\n' +
  '\n' +
  '<p>Белгіленбеген диалог терезелерінде диалог терезесі ашылған кезде бірінші интерактивті құрамдас фокусталады.</p>\n' +
  '\n' +
  '<p><strong>Tab</strong> немесе <strong>Shift+Tab</strong> пернесін басу арқылы интерактивті диалог терезесінің құрамдастары арасында навигациялаңыз.</p>\n' +
  '\n' +
  '<h1>Белгіленген диалог терезелерін навигациялау</h1>\n' +
  '\n' +
  '<p>Белгіленген диалог терезелерінде диалог терезесі ашылған кезде қойынды мәзіріндегі бірінші түйме фокусталады.</p>\n' +
  '\n' +
  '<p><strong>Tab</strong> немесе\n' +
  '  <strong>Shift+Tab</strong> пернесін басу арқылы осы диалог терезесі қойындысының интерактивті құрамдастары арасында навигациялаңыз.</p>\n' +
  '\n' +
  '<p>Қойынды мәзірінің фокусын беру арқылы басқа диалог терезесінің қойындысына ауысып, тиісті <strong>Arrow</strong> (Көрсеткі)\n' +
  '  пернесін басу арқылы қолжетімді қойындылар арасында айналдыруға болады.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/da.js000064400000010264151213255130022213 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.da',
'<h1>Start tastaturnavigation</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokuser på menulinjen</dt>\n' +
  '  <dd>Windows eller Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokuser på værktøjslinjen</dt>\n' +
  '  <dd>Windows eller Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokuser på sidefoden</dt>\n' +
  '  <dd>Windows eller Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokuser på kontekstuel værktøjslinje</dt>\n' +
  '  <dd>Windows, Linux eller macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigationen starter ved det første UI-element, som fremhæves eller understreges hvad angår det første element i\n' +
  '  sidefodens sti til elementet.</p>\n' +
  '\n' +
  '<h1>Naviger mellem UI-sektioner</h1>\n' +
  '\n' +
  '<p>Gå fra én UI-sektion til den næste ved at trykke på <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Gå fra én UI-sektion til den forrige ved at trykke på <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p><strong>Tab</strong>-rækkefølgen af disse UI-sektioner er:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menulinje</li>\n' +
  '  <li>Hver værktøjsgruppe</li>\n' +
  '  <li>Sidepanel</li>\n' +
  '  <li>Sti til elementet i sidefoden</li>\n' +
  '  <li>Til/fra-knap for ordoptælling i sidefoden</li>\n' +
  '  <li>Brandinglink i sidefoden</li>\n' +
  '  <li>Tilpasningshåndtag for editor i sidefoden</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Hvis en UI-sektion ikke er til stede, springes den over.</p>\n' +
  '\n' +
  '<p>Hvis sidefoden har fokus til tastaturnavigation, og der ikke er noget synligt sidepanel, kan der trykkes på <strong>Shift+Tab</strong>\n' +
  '  for at flytte fokus til den første værktøjsgruppe, ikke den sidste.</p>\n' +
  '\n' +
  '<h1>Naviger inden for UI-sektioner</h1>\n' +
  '\n' +
  '<p>Gå fra ét UI-element til det næste ved at trykke på den relevante <strong>piletast</strong>.</p>\n' +
  '\n' +
  '<p><strong>Venstre</strong> og <strong>højre</strong> piletast</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>flytter mellem menuerne i menulinjen.</li>\n' +
  '  <li>åbner en undermenu i en menu.</li>\n' +
  '  <li>flytter mellem knapperne i en værktøjsgruppe.</li>\n' +
  '  <li>flytter mellem elementer i sidefodens sti til elementet.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Pil <strong>ned</strong> og <strong>op</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>flytter mellem menupunkterne i en menu.</li>\n' +
  '  <li>flytter mellem punkterne i en genvejsmenu i værktøjslinjen.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Piletasterne</strong> kører rundt inden for UI-sektionen, der fokuseres på.</p>\n' +
  '\n' +
  '<p>For at lukke en åben menu, en åben undermenu eller en åben genvejsmenu trykkes der på <strong>Esc</strong>-tasten.</p>\n' +
  '\n' +
  "<p>Hvis det aktuelle fokus er i 'toppen' af en bestemt UI-sektion, vil tryk på <strong>Esc</strong>-tasten også afslutte\n" +
  '  tastaturnavigationen helt.</p>\n' +
  '\n' +
  '<h1>Udfør et menupunkt eller en værktøjslinjeknap</h1>\n' +
  '\n' +
  '<p>Når det ønskede menupunkt eller den ønskede værktøjslinjeknap er fremhævet, trykkes der på <strong>Retur</strong>, <strong>Enter</strong>\n' +
  '  eller <strong>mellemrumstasten</strong> for at udføre elementet.</p>\n' +
  '\n' +
  '<h1>Naviger i ikke-faneopdelte dialogbokse</h1>\n' +
  '\n' +
  '<p>I ikke-faneopdelte dialogbokse får den første interaktive komponent fokus, når dialogboksen åbnes.</p>\n' +
  '\n' +
  '<p>Naviger mellem interaktive dialogbokskomponenter ved at trykke på <strong>Tab</strong> eller <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Naviger i faneopdelte dialogbokse</h1>\n' +
  '\n' +
  '<p>I faneopdelte dialogbokse får den første knap i fanemenuen fokus, når dialogboksen åbnes.</p>\n' +
  '\n' +
  '<p>Naviger mellem interaktive komponenter i denne dialogboksfane ved at trykke på <strong>Tab</strong> eller\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Skift til en anden dialogboksfane ved at fokusere på fanemenuen og derefter trykke på den relevante <strong>piletast</strong>\n' +
  '  for at køre igennem de tilgængelige faner.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hi.js000064400000015772151213255130022240 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.hi',
'<h1>कीबोर्ड नेविगेशन शुरू करें</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>मेन्यू बार पर फ़ोकस करें</dt>\n' +
  '  <dd>Windows या Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>टूलबार पर फ़ोकस करें</dt>\n' +
  '  <dd>Windows या Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>फ़ुटर पर फ़ोकस करें</dt>\n' +
  '  <dd>Windows या Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>प्रासंगिक टूलबार पर फ़ोकस करें</dt>\n' +
  '  <dd>Windows, Linux या macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>नेविगेशन पहले UI आइटम पर शुरू होगा, जिसे हाइलाइट किया जाएगा या पहले आइटम के मामले में फ़ुटर तत्व पथ में\n' +
  '  रेखांकित किया जाएगा।</p>\n' +
  '\n' +
  '<h1>UI सेक्शन के बीच नेविगेट करें</h1>\n' +
  '\n' +
  '<p>एक UI सेक्शन से दूसरे सेक्शन में जाने के लिए, <strong>Tab</strong> दबाएं।</p>\n' +
  '\n' +
  '<p>एक UI सेक्शन से पिछले सेक्शन में जाने के लिए, <strong>Shift+Tab</strong> दबाएं।</p>\n' +
  '\n' +
  '<p>इन UI सेक्शन का <strong>Tab</strong> क्रम नीचे दिया गया है:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>मेन्यू बार</li>\n' +
  '  <li>प्रत्येक टूलबार समूह</li>\n' +
  '  <li>साइडबार</li>\n' +
  '  <li>फ़ुटर में तत्व पथ</li>\n' +
  '  <li>फ़ुटर में शब्द गणना टॉगल बटन</li>\n' +
  '  <li>फ़ुटर में ब्रांडिंग लिंक</li>\n' +
  '  <li>फ़ुटर में संपादक का आकार बदलने का हैंडल</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>अगर कोई UI सेक्शन मौजूद नहीं है, तो उसे छोड़ दिया जाता है।</p>\n' +
  '\n' +
  '<p>अगर फ़ुटर में कीबोर्ड नेविगेशन फ़ोकस है, और कोई दिखा देने वाला साइडबार नहीं है, तो <strong>Shift+Tab</strong> दबाने से\n' +
  '  फ़ोकस पहले टूलबार समूह पर चला जाता है, पिछले पर नहीं।</p>\n' +
  '\n' +
  '<h1>UI सेक्शन के भीतर नेविगेट करें</h1>\n' +
  '\n' +
  '<p>एक UI तत्व से दूसरे में जाने के लिए उपयुक्त <strong>ऐरो</strong> कुंजी दबाएं।</p>\n' +
  '\n' +
  '<p><strong>बाएं</strong> और <strong>दाएं</strong> ऐरो कुंजियां</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>मेन्यू बार में मेन्यू के बीच ले जाती हैं।</li>\n' +
  '  <li>मेन्यू में एक सब-मेन्यू खोलें।</li>\n' +
  '  <li>टूलबार समूह में बटनों के बीच ले जाएं।</li>\n' +
  '  <li>फ़ुटर के तत्व पथ में आइटम के बीच ले जाएं।</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>नीचे</strong> और <strong>ऊपर</strong> ऐरो कुंजियां</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>मेन्यू में मेन्यू आइटम के बीच ले जाती हैं।</li>\n' +
  '  <li>टूलबार पॉप-अप मेन्यू में आइटम के बीच ले जाएं।</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>फ़ोकस वाले UI सेक्शन के भीतर <strong>ऐरो</strong> कुंजियां चलाती रहती हैं।</p>\n' +
  '\n' +
  '<p>कोई खुला मेन्यू, कोई खुला सब-मेन्यू या कोई खुला पॉप-अप मेन्यू बंद करने के लिए <strong>Esc</strong> कुंजी दबाएं।</p>\n' +
  '\n' +
  "<p>अगर मौजूदा फ़ोकस किसी विशेष UI सेक्शन के 'शीर्ष' पर है, तो <strong>Esc</strong> कुंजी दबाने से भी\n" +
  '  कीबोर्ड नेविगेशन पूरी तरह से बाहर हो जाता है।</p>\n' +
  '\n' +
  '<h1>मेन्यू आइटम या टूलबार बटन निष्पादित करें</h1>\n' +
  '\n' +
  '<p>जब वांछित मेन्यू आइटम या टूलबार बटन हाइलाइट किया जाता है, तो आइटम को निष्पादित करने के लिए <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  या <strong>Space bar</strong> दबाएं।</p>\n' +
  '\n' +
  '<h1>गैर-टैब वाले डायलॉग पर नेविगेट करें</h1>\n' +
  '\n' +
  '<p>गैर-टैब वाले डायलॉग में, डायलॉग खुलने पर पहला इंटरैक्टिव घटक फ़ोकस लेता है।</p>\n' +
  '\n' +
  '<p><strong>Tab</strong> or <strong>Shift+Tab</strong> दबाकर इंटरैक्टिव डायलॉग घटकों के बीच नेविगेट करें।</p>\n' +
  '\n' +
  '<h1>टैब किए गए डायलॉग पर नेविगेट करें</h1>\n' +
  '\n' +
  '<p>टैब किए गए डायलॉग में, डायलॉग खुलने पर टैब मेन्यू में पहला बटन फ़ोकस लेता है।</p>\n' +
  '\n' +
  '<p>इस डायलॉग टैब के इंटरैक्टिव घटकों के बीच नेविगेट करने के लिए <strong>Tab</strong> या\n' +
  '  <strong>Shift+Tab</strong> दबाएं।</p>\n' +
  '\n' +
  '<p>टैब मेन्यू को फ़ोकस देकर और फिर उपलब्ध टैब में के बीच जाने के लिए उपयुक्त <strong>ऐरो</strong>\n' +
  '  कुंजी दबाकर दूसरे डायलॉग टैब पर स्विच करें।</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ar.js000064400000014030151213255140022225 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.ar',
'<h1>بدء التنقل بواسطة لوحة المفاتيح</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>التركيز على شريط القوائم</dt>\n' +
  '  <dd>نظاما التشغيل Windows أو Linux: Alt + F9</dd>\n' +
  '  <dd>نظام التشغيل macOS: &#x2325;F9</dd>\n' +
  '  <dt>التركيز على شريط الأدوات</dt>\n' +
  '  <dd>نظاما التشغيل Windows أو Linux: Alt + F10</dd>\n' +
  '  <dd>نظام التشغيل macOS: &#x2325;F10</dd>\n' +
  '  <dt>التركيز على التذييل</dt>\n' +
  '  <dd>نظاما التشغيل Windows أو Linux: Alt + F11</dd>\n' +
  '  <dd>نظام التشغيل macOS: &#x2325;F11</dd>\n' +
  '  <dt>التركيز على شريط أدوات السياق</dt>\n' +
  '  <dd>أنظمة التشغيل Windows أو Linux أو macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>سيبدأ التنقل عند عنصر واجهة المستخدم الأول، والذي سيتم تمييزه أو تسطيره في حالة العنصر الأول في\n' +
  '  مسار عنصر التذييل.</p>\n' +
  '\n' +
  '<h1>التنقل بين أقسام واجهة المستخدم</h1>\n' +
  '\n' +
  '<p>للانتقال من أحد أقسام واجهة المستخدم إلى القسم التالي، اضغط على <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>للانتقال من أحد أقسام واجهة المستخدم إلى القسم السابق، اضغط على <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>ترتيب علامات <strong>Tab</strong> لأقسام واجهة المستخدم هذه هو:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>شريط القوائم</li>\n' +
  '  <li>كل مجموعة شريط الأدوات</li>\n' +
  '  <li>الشريط الجانبي</li>\n' +
  '  <li>مسار العنصر في التذييل</li>\n' +
  '  <li>زر تبديل عدد الكلمات في التذييل</li>\n' +
  '  <li>رابط إدراج العلامة التجارية في التذييل</li>\n' +
  '  <li>مؤشر تغيير حجم المحرر في التذييل</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>إذا لم يكن قسم واجهة المستخدم موجودًا، فسيتم تخطيه.</p>\n' +
  '\n' +
  '<p>إذا كان التذييل يحتوي على التركيز على ‏‫التنقل بواسطة لوحة المفاتيح، ولا يوجد شريط جانبي مرئي، فإن الضغط على <strong>Shift+Tab</strong>\n' +
  '  ينقل التركيز إلى مجموعة شريط الأدوات الأولى، وليس الأخيرة.</p>\n' +
  '\n' +
  '<h1>التنقل بين أقسام واجهة المستخدم</h1>\n' +
  '\n' +
  '<p>للانتقال من أحد عناصر واجهة المستخدم إلى العنصر التالي، اضغط على مفتاح <strong>السهم</strong> المناسب.</p>\n' +
  '\n' +
  '<p>مفتاحا السهمين <strong>اليسار‎</strong> و<strong>اليمين‎</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>التنقل بين القوائم في شريط القوائم.</li>\n' +
  '  <li>فتح قائمة فرعية في القائمة.</li>\n' +
  '  <li>التنقل بين الأزرار في مجموعة شريط الأدوات.</li>\n' +
  '  <li>التنقل بين العناصر في مسار عنصر التذييل.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>مفتاحا السهمين <strong>لأسفل‎</strong> و<strong>لأعلى‎</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>التنقل بين عناصر القائمة في القائمة.</li>\n' +
  '  <li>التنقل بين العناصر في قائمة شريط الأدوات المنبثقة.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>دورة مفاتيح <strong>الأسهم‎</strong> داخل قسم واجهة المستخدم التي تم التركيز عليها.</p>\n' +
  '\n' +
  '<p>لإغلاق قائمة مفتوحة أو قائمة فرعية مفتوحة أو قائمة منبثقة مفتوحة، اضغط على مفتاح <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>إذا كان التركيز الحالي على "الجزء العلوي" من قسم معين لواجهة المستخدم، فإن الضغط على مفتاح <strong>Esc</strong> يؤدي أيضًا إلى الخروج\n' +
  '  من التنقل بواسطة لوحة المفاتيح بالكامل.</p>\n' +
  '\n' +
  '<h1>تنفيذ عنصر قائمة أو زر شريط أدوات</h1>\n' +
  '\n' +
  '<p>عندما يتم تمييز عنصر القائمة المطلوب أو زر شريط الأدوات، اضغط على زر <strong>Return</strong>، أو <strong>Enter</strong>،\n' +
  '  أو <strong>مفتاح المسافة</strong> لتنفيذ العنصر.</p>\n' +
  '\n' +
  '<h1>التنقل في مربعات الحوار غير المبوبة</h1>\n' +
  '\n' +
  '<p>في مربعات الحوار غير المبوبة، يتم التركيز على المكون التفاعلي الأول عند فتح مربع الحوار.</p>\n' +
  '\n' +
  '<p>التنقل بين مكونات الحوار التفاعلي بالضغط على زر <strong>Tab</strong> أو <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>التنقل في مربعات الحوار المبوبة</h1>\n' +
  '\n' +
  '<p>في مربعات الحوار المبوبة، يتم التركيز على الزر الأول في قائمة علامات التبويب عند فتح مربع الحوار.</p>\n' +
  '\n' +
  '<p>التنقل بين المكونات التفاعلية لعلامة التبويب لمربع الحوار هذه بالضغط على زر <strong>Tab</strong> أو\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>التبديل إلى علامة تبويب أخرى لمربع الحوار من خلال التركيز على قائمة علامة التبويب ثم الضغط على زر <strong>السهم</strong> المناسب\n' +
  '  مفتاح للتنقل بين علامات التبويب المتاحة.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/he_IL.js000064400000012144151213255140022607 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.he_IL',
'<h1>התחל ניווט במקלדת</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>התמקד בשורת התפריטים</dt>\n' +
  '  <dd>Windows או Linux:‏ Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>העבר מיקוד לסרגל הכלים</dt>\n' +
  '  <dd>Windows או Linux:‏ Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>העבר מיקוד לכותרת התחתונה</dt>\n' +
  '  <dd>Windows או Linux:‏ Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>העבר מיקוד לסרגל כלים הקשרי</dt>\n' +
  '  <dd>Windows‏, Linux או macOS:‏ Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>הניווט יתחיל ברכיב הראשון במשך, שיודגש או שיהיה מתחתיו קו תחתון במקרה של הפריט הראשון\n' +
  '  הנתיב של רכיב הכותרת התחתונה.</p>\n' +
  '\n' +
  '<h1>עבור בין מקטעים במסך</h1>\n' +
  '\n' +
  '<p>כדי לעבור בין המקטעים במסך, הקש <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>כדי לעבור למקטע הקודם במסך, הקש <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>הסדר מבחינת מקש <strong>Tab</strong> של הרכיבים במסך:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>שורת התפריטים</li>\n' +
  '  <li>כל קבוצה בסרגל הכלים</li>\n' +
  '  <li>הסרגל הצידי</li>\n' +
  '  <li>נתיב של רכיב בכותרת התחתונה</li>\n' +
  '  <li>לחצן לספירת מילים בכותרת התחתונה</li>\n' +
  '  <li>קישור של המותג בכותרת התחתונה</li>\n' +
  '  <li>ידית לשינוי גודל עבור העורך בכותרת התחתונה</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>אם רכיב כלשהו במסך לא מופיע, המערכת תדלג עליו.</p>\n' +
  '\n' +
  '<p>אם בכותרת התחתונה יש מיקוד של ניווט במקלדת, ולא מופיע סרגל בצד, יש להקיש <strong>Shift+Tab</strong>\n' +
  '  מעביר את המיקוד לקבוצה הראשונה בסרגל הכלים, לא האחרונה.</p>\n' +
  '\n' +
  '<h1>עבור בתוך מקטעים במסך</h1>\n' +
  '\n' +
  '<p>כדי לעבור מרכיב אחד לרכיב אחר במסך, הקש על מקש <strong>החץ</strong> המתאים.</p>\n' +
  '\n' +
  '<p>מקשי החיצים <strong>שמאלה</strong> ו<strong>ימינה</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>עבור בין תפריטים בשורת התפריטים.</li>\n' +
  '  <li>פתח תפריט משני בתפריט.</li>\n' +
  '  <li>עבור בין לחצנים בקבוצה בסרגל הכלים.</li>\n' +
  '  <li>עבור בין פריטים ברכיב בכותרת התחתונה.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>מקשי החיצים <strong>למטה</strong> ו<strong>למעלה</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>עבור בין פריטים בתפריט.</li>\n' +
  '  <li>עבור בין פריטים בחלון הקובץ של סרגל הכלים.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>מקשי <strong>החצים</strong> משתנים בתוך המקטע במסך שעליו נמצא המיקוד.</p>\n' +
  '\n' +
  '<p>כדי לסגור תפריט פתוח, תפריט משני פתוח או חלון קופץ, הקש על <strong>Esc</strong>.</p>\n' +
  '\n' +
  "<p>אם המיקוד הוא על החלק 'העליון' של מקטע מסוים במסך, הקשה על <strong>Esc</strong> מביאה גם ליציאה\n" +
  '  מהניווט במקלדת לחלוטין.</p>\n' +
  '\n' +
  '<h1>הפעל פריט בתפריט או לחצן בסרגל הכלים</h1>\n' +
  '\n' +
  '<p>כאשר הפריט הרצוי בתפריט או הלחצן בסרגל הכלים מודגשים, הקש על <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  או על <strong>מקש הרווח</strong> כדי להפעיל את הפריט.</p>\n' +
  '\n' +
  '<h1>ניווט בחלונות דו-שיח בלי כרטיסיות</h1>\n' +
  '\n' +
  '<p>בחלונות דו-שיח בלי כרטיסיות, הרכיב האינטראקטיבי הראשון מקבל את המיקוד כאשר החלון נפתח.</p>\n' +
  '\n' +
  '<p>עבור בין רכיבים אינטראקטיביים בחלון על ידי הקשה על <strong>Tab</strong> או <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>ניווט בחלונות דו-שיח עם כרטיסיות</h1>\n' +
  '\n' +
  '<p>בחלונות דו-שיח עם כרטיסיות, הלחצן הראשון בתפריט מקבל את המיקוד כאשר החלון נפתח.</p>\n' +
  '\n' +
  '<p>עבור בין רכיבים אינטראקטיביים בחלון על ידי הקשה על <strong>Tab</strong> או\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>עבור לכרטיסיה אחרת בחלון על ידי העברת המיקוד לתפריט הכרטיסיות והקשה על <strong>החץ</strong>המתאים\n' +
  '  כדי לעבור בין הכרטיסיות הזמינות.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nb_NO.js000064400000010714151213255140022623 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.nb_NO',
'<h1>Starte tastaturnavigering</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Utheve menylinjen</dt>\n' +
  '  <dd>Windows eller Linux: Alt + F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Utheve verktøylinjen</dt>\n' +
  '  <dd>Windows eller Linux: Alt + F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Utheve bunnteksten</dt>\n' +
  '  <dd>Windows eller Linux: Alt + F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Utheve en kontekstuell verktøylinje</dt>\n' +
  '  <dd>Windows, Linux eller macOS: Ctrl + F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigeringen starter ved det første grensesnittelementet, som utheves, eller understrekes når det gjelder det første elementet i\n' +
  '  elementstien i bunnteksten.</p>\n' +
  '\n' +
  '<h1>Navigere mellom grensesnittdeler</h1>\n' +
  '\n' +
  '<p>Du kan bevege deg fra én grensesnittdel til den neste ved å trykke på <strong>tabulatortasten</strong>.</p>\n' +
  '\n' +
  '<p>Du kan bevege deg fra én grensesnittdel til den forrige ved å trykke på <strong>Shift + tabulatortasten</strong>.</p>\n' +
  '\n' +
  '<p>Rekkefølgen til <strong>tabulatortasten</strong> gjennom grensesnittdelene er:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menylinjen</li>\n' +
  '  <li>Hver gruppe på verktøylinjen</li>\n' +
  '  <li>Sidestolpen</li>\n' +
  '  <li>Elementstien i bunnteksten</li>\n' +
  '  <li>Veksleknappen for ordantall i bunnteksten</li>\n' +
  '  <li>Merkelenken i bunnteksten</li>\n' +
  '  <li>Skaleringshåndtaket for redigeringsprogrammet i bunnteksten</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Hvis en grensesnittdel ikke er til stede, blir den hoppet over.</p>\n' +
  '\n' +
  '<p>Hvis tastaturnavigeringen har uthevet bunnteksten og det ikke finnes en synlig sidestolpe, kan du trykke på <strong>Shift + tabulatortasten</strong>\n' +
  '  for å flytte fokuset til den første gruppen på verktøylinjen i stedet for den siste.</p>\n' +
  '\n' +
  '<h1>Navigere innenfor grensesnittdeler</h1>\n' +
  '\n' +
  '<p>Du kan bevege deg fra ett grensesnittelement til det neste ved å trykke på den aktuelle <strong>piltasten</strong>.</p>\n' +
  '\n' +
  '<p>De <strong>venstre</strong> og <strong>høyre</strong> piltastene</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>beveger deg mellom menyer på menylinjen.</li>\n' +
  '  <li>åpner en undermeny i en meny.</li>\n' +
  '  <li>beveger deg mellom knapper i en gruppe på verktøylinjen.</li>\n' +
  '  <li>beveger deg mellom elementer i elementstien i bunnteksten.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Ned</strong>- og <strong>opp</strong>-piltastene</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>beveger deg mellom menyelementer i en meny.</li>\n' +
  '  <li>beveger deg mellom elementer i en hurtigmeny på verktøylinjen.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Med <strong>piltastene</strong> kan du bevege deg innenfor den uthevede grensesnittdelen.</p>\n' +
  '\n' +
  '<p>Du kan lukke en åpen meny, en åpen undermeny eller en åpen hurtigmeny ved å klikke på <strong>Esc</strong>-tasten.</p>\n' +
  '\n' +
  '<p>Hvis det øverste nivået i en grensesnittdel er uthevet, kan du ved å trykke på <strong>Esc</strong> også avslutte\n' +
  '  tastaturnavigeringen helt.</p>\n' +
  '\n' +
  '<h1>Utføre et menyelement eller en knapp på en verktøylinje</h1>\n' +
  '\n' +
  '<p>Når det ønskede menyelementet eller verktøylinjeknappen er uthevet, trykker du på <strong>Retur</strong>, <strong>Enter</strong>,\n' +
  '  eller <strong>mellomromstasten</strong> for å utføre elementet.</p>\n' +
  '\n' +
  '<h1>Navigere i dialogbokser uten faner</h1>\n' +
  '\n' +
  '<p>I dialogbokser uten faner blir den første interaktive komponenten uthevet når dialogboksen åpnes.</p>\n' +
  '\n' +
  '<p>Naviger mellom interaktive komponenter i dialogboksen ved å trykke på <strong>tabulatortasten</strong> eller <strong>Shift + tabulatortasten</strong>.</p>\n' +
  '\n' +
  '<h1>Navigere i fanebaserte dialogbokser</h1>\n' +
  '\n' +
  '<p>I fanebaserte dialogbokser blir den første knappen i fanemenyen uthevet når dialogboksen åpnes.</p>\n' +
  '\n' +
  '<p>Naviger mellom interaktive komponenter i fanen ved å trykke på <strong>tabulatortasten</strong> eller\n' +
  '  <strong>Shift + tabulatortasten</strong>.</p>\n' +
  '\n' +
  '<p>Veksle til en annen fane i dialogboksen ved å utheve fanemenyen, og trykk deretter på den aktuelle <strong>piltasten</strong>\n' +
  '  for å bevege deg mellom de tilgjengelige fanene.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fa.js000064400000013054151213255140022216 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.fa',
'<h1>شروع پیمایش صفحه‌کلید</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>تمرکز بر نوار منو</dt>\n' +
  '  <dd>Windows یا Linux:‎‏: Alt+F9</dd>\n' +
  '  <dd>‎‏macOS: &#x2325;F9‎‏</dd>\n' +
  '  <dt>تمرکز بر نوار ابزار</dt>\n' +
  '  <dd>Windows یا Linux‎‏: Alt+F10</dd>\n' +
  '  <dd>‎‏macOS: &#x2325;F10‎‏</dd>\n' +
  '  <dt>تمرکز بر پانویس</dt>\n' +
  '  <dd>Windows یا Linux‎‏: Alt+F11</dd>\n' +
  '  <dd>‎‏macOS: &#x2325;F11‎‏</dd>\n' +
  '  <dt>تمرکز بر نوار ابزار بافتاری</dt>\n' +
  '  <dd>Windows ،Linux یا macOS:‏ Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>پیمایش در اولین مورد رابط کاربری شروع می‌شود و درخصوص اولین مورد در\n' +
  '  مسیر عنصر پانویس، برجسته یا زیرخط‌دار می‌شود.</p>\n' +
  '\n' +
  '<h1>پیمایش بین بخش‌های رابط کاربری</h1>\n' +
  '\n' +
  '<p>برای جابجایی از یک بخش رابط کاربری به بخش بعدی، <strong>Tab</strong> را فشار دهید.</p>\n' +
  '\n' +
  '<p>برای جابجایی از یک بخش رابط کاربری به بخش قبلی، <strong>Shift+Tab</strong> را فشار دهید.</p>\n' +
  '\n' +
  '<p>ترتیب <strong>Tab</strong> این بخش‌های رابط کاربری عبارتند از:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>نوار منو</li>\n' +
  '  <li>هر گروه نوار ابزار</li>\n' +
  '  <li>نوار کناری</li>\n' +
  '  <li>مسیر عنصر در پانویس</li>\n' +
  '  <li>دکمه تغییر وضعیت تعداد کلمات در پانویس</li>\n' +
  '  <li>پیوند نمانام‌سازی در پانویس</li>\n' +
  '  <li>دسته تغییر اندازه ویرایشگر در پانویس</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>اگر بخشی از رابط کاربری موجود نباشد، رد می‌شود.</p>\n' +
  '\n' +
  '<p>اگر پانویس دارای تمرکز بر پیمایش صفحه‌کلید باشد،‌ و نوار کناری قابل‌مشاهده وجود ندارد، فشردن <strong>Shift+Tab</strong>\n' +
  '  تمرکز را به گروه نوار ابزار اول می‌برد، نه آخر.</p>\n' +
  '\n' +
  '<h1>پیمایش در بخش‌های رابط کاربری</h1>\n' +
  '\n' +
  '<p>برای جابجایی از یک عنصر رابط کاربری به بعدی، کلید <strong>جهت‌نمای</strong> مناسب را فشار دهید.</p>\n' +
  '\n' +
  '<p>کلیدهای جهت‌نمای <strong>چپ</strong> و <strong>راست</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>جابجایی بین منوها در نوار منو.</li>\n' +
  '  <li>باز کردن منوی فرعی در یک منو.</li>\n' +
  '  <li>جابجایی بین دکمه‌ها در یک گروه نوار ابزار.</li>\n' +
  '  <li>جابجایی بین موارد در مسیر عنصر پانویس.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>کلیدهای جهت‌نمای <strong>پایین</strong> و <strong>بالا</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>جابجایی بین موارد منو در یک منو.</li>\n' +
  '  <li>جابجایی بین موارد در یک منوی بازشوی نوار ابزار.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>کلیدهای<strong>جهت‌نما</strong> در بخش رابط کاربری متمرکز می‌چرخند.</p>\n' +
  '\n' +
  '<p>برای بستن یک منوی باز، یک منوی فرعی باز، یا یک منوی بازشوی باز، کلید <strong>Esc</strong> را فشار دهید.</p>\n' +
  '\n' +
  '<p>اگر تمرکز فعلی در «بالای» یک بخش رابط کاربری خاص است، فشردن کلید <strong>Esc</strong> نیز موجب\n' +
  '  خروج کامل از پیمایش صفحه‌کلید می‌شود.</p>\n' +
  '\n' +
  '<h1>اجرای یک مورد منو یا دکمه نوار ابزار</h1>\n' +
  '\n' +
  '<p>وقتی مورد منو یا دکمه نوار ابزار مورد نظر هایلایت شد، دکمه <strong>بازگشت</strong>، <strong>Enter</strong>،\n' +
  '  یا <strong>نوار Space</strong> را فشار دهید تا مورد را اجرا کنید.</p>\n' +
  '\n' +
  '<h1>پیمایش در کادرهای گفتگوی بدون زبانه</h1>\n' +
  '\n' +
  '<p>در کادرهای گفتگوی بدون زبانه، وقتی کادر گفتگو باز می‌شود، اولین جزء تعاملی متمرکز می‌شود.</p>\n' +
  '\n' +
  '<p>با فشردن <strong>Tab</strong> یا <strong>Shift+Tab</strong>، بین اجزای کادر گفتگوی تعاملی پیمایش کنید.</p>\n' +
  '\n' +
  '<h1>پیمایش کادرهای گفتگوی زبانه‌دار</h1>\n' +
  '\n' +
  '<p>در کادرهای گفتگوی زبانه‌دار، وقتی کادر گفتگو باز می‌شود، اولین دکمه در منوی زبانه متمرکز می‌شود.</p>\n' +
  '\n' +
  '<p>با فشردن <strong>Tab</strong> یا\n' +
  '  <strong>Shift+Tab</strong>، بین اجزای تعاملی این زبانه کادر گفتگو پیمایش کنید.</p>\n' +
  '\n' +
  '<p>با دادن تمرکز به منوی زبانه و سپس فشار دادن کلید <strong>جهت‌نمای</strong>\n' +
  '  مناسب برای چرخش میان زبانه‌های موجود، به زبانه کادر گفتگوی دیگری بروید.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/es.js000064400000011430151213255140022233 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.es',
'<h1>Iniciar la navegación con el teclado</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Enfocar la barra de menús</dt>\n' +
  '  <dd>Windows o Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Enfocar la barra de herramientas</dt>\n' +
  '  <dd>Windows o Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Enfocar el pie de página</dt>\n' +
  '  <dd>Windows o Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Enfocar una barra de herramientas contextual</dt>\n' +
  '  <dd>Windows, Linux o macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>La navegación comenzará por el primer elemento de la interfaz de usuario (IU), de tal manera que se resaltará, o bien se subrayará si se trata del primer elemento de\n' +
  '  la ruta de elemento del pie de página.</p>\n' +
  '\n' +
  '<h1>Navegar entre las secciones de la IU</h1>\n' +
  '\n' +
  '<p>Para pasar de una sección de la IU a la siguiente, pulse la tecla <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Para pasar de una sección de la IU a la anterior, pulse <strong>Mayús+Tab</strong>.</p>\n' +
  '\n' +
  '<p>El orden de <strong>tabulación</strong> de estas secciones de la IU es:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Barra de menús</li>\n' +
  '  <li>Cada grupo de barra de herramientas</li>\n' +
  '  <li>Barra lateral</li>\n' +
  '  <li>Ruta del elemento en el pie de página</li>\n' +
  '  <li>Botón de alternancia de recuento de palabras en el pie de página</li>\n' +
  '  <li>Enlace de personalización de marca en el pie de página</li>\n' +
  '  <li>Controlador de cambio de tamaño en el pie de página</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Si una sección de la IU no está presente, esta se omite.</p>\n' +
  '\n' +
  '<p>Si el pie de página tiene un enfoque de navegación con el teclado y no hay ninguna barra lateral visible, al pulsar <strong>Mayús+Tab</strong>,\n' +
  '  el enfoque se moverá al primer grupo de barra de herramientas, en lugar de al último.</p>\n' +
  '\n' +
  '<h1>Navegar dentro de las secciones de la IU</h1>\n' +
  '\n' +
  '<p>Para pasar de un elemento de la IU al siguiente, pulse la tecla de <strong>flecha</strong> correspondiente.</p>\n' +
  '\n' +
  '<p>Las teclas de flecha <strong>izquierda</strong> y <strong>derecha</strong> permiten</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>desplazarse entre los menús de la barra de menús.</li>\n' +
  '  <li>abrir el submenú de un menú.</li>\n' +
  '  <li>desplazarse entre los botones de un grupo de barra de herramientas.</li>\n' +
  '  <li>desplazarse entre los elementos de la ruta de elemento del pie de página.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Las teclas de flecha <strong>abajo</strong> y <strong>arriba</strong> permiten</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>desplazarse entre los elementos de menú de un menú.</li>\n' +
  '  <li>desplazarse entre los elementos de un menú emergente de una barra de herramientas.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Las teclas de <strong>flecha</strong> van cambiando dentro de la sección de la IU enfocada.</p>\n' +
  '\n' +
  '<p>Para cerrar un menú, un submenú o un menú emergente que estén abiertos, pulse la tecla <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Si el enfoque actual se encuentra en la parte superior de una sección de la IU determinada, al pulsar la tecla <strong>Esc</strong> saldrá\n' +
  '  de la navegación con el teclado por completo.</p>\n' +
  '\n' +
  '<h1>Ejecutar un elemento de menú o un botón de barra de herramientas</h1>\n' +
  '\n' +
  '<p>Si el elemento de menú o el botón de barra de herramientas deseado está resaltado, pulse la tecla <strong>Retorno</strong> o <strong>Entrar</strong>,\n' +
  '  o la <strong>barra espaciadora</strong> para ejecutar el elemento.</p>\n' +
  '\n' +
  '<h1>Navegar por cuadros de diálogo sin pestañas</h1>\n' +
  '\n' +
  '<p>En los cuadros de diálogo sin pestañas, el primer componente interactivo se enfoca al abrirse el cuadro de diálogo.</p>\n' +
  '\n' +
  '<p>Para navegar entre los componentes interactivos del cuadro de diálogo, pulse las teclas <strong>Tab</strong> o <strong>Mayús+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navegar por cuadros de diálogo con pestañas</h1>\n' +
  '\n' +
  '<p>En los cuadros de diálogo con pestañas, el primer botón del menú de pestaña se enfoca al abrirse el cuadro de diálogo.</p>\n' +
  '\n' +
  '<p>Para navegar entre componentes interactivos de esta pestaña del cuadro de diálogo, pulse las teclas <strong>Tab</strong> o\n' +
  '  <strong>Mayús+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Si desea cambiar a otra pestaña del cuadro de diálogo, enfoque el menú de pestañas y, a continuación, pulse la tecla de <strong>flecha</strong>\n' +
  '  correspondiente para moverse por las pestañas disponibles.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_PT.js000064400000010510151213255140022650 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.pt_PT',
'<h1>Iniciar navegação com teclado</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Foco na barra de menu</dt>\n' +
  '  <dd>Windows ou Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Foco na barra de ferramentas</dt>\n' +
  '  <dd>Windows ou Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Foco no rodapé</dt>\n' +
  '  <dd>Windows ou Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Foco numa barra de ferramentas contextual</dt>\n' +
  '  <dd>Windows, Linux ou macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>A navegação começará no primeiro item de IU, que estará realçado ou sublinhado, no caso do primeiro item no\n' +
  '  caminho do elemento do rodapé.</p>\n' +
  '\n' +
  '<h1>Navegar entre secções de IU</h1>\n' +
  '\n' +
  '<p>Para se mover de uma secção de IU para a seguinte, prima <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Para se mover de uma secção de IU para a anterior, prima <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>A ordem de <strong>tabulação</strong> destas secções de IU é:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Barra de menu</li>\n' +
  '  <li>Cada grupo da barra de ferramentas</li>\n' +
  '  <li>Barra lateral</li>\n' +
  '  <li>Caminho do elemento no rodapé</li>\n' +
  '  <li>Botão de alternar da contagem de palavras no rodapé</li>\n' +
  '  <li>Ligação da marca no rodapé</li>\n' +
  '  <li>Alça de redimensionamento do editor no rodapé</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Se uma secção de IU não estiver presente, é ignorada.</p>\n' +
  '\n' +
  '<p>Se o rodapé tiver foco de navegação com teclado e não existir uma barra lateral visível, premir <strong>Shift+Tab</strong>\n' +
  '  move o foco para o primeiro grupo da barra de ferramentas e não para o último.</p>\n' +
  '\n' +
  '<h1>Navegar nas secções de IU</h1>\n' +
  '\n' +
  '<p>Para se mover de um elemento de IU para o seguinte, prima a tecla de <strong>seta</strong> adequada.</p>\n' +
  '\n' +
  '<p>As teclas de seta <strong>Para a esquerda</strong> e <strong>Para a direita</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>movem-se entre menus na barra de menu.</li>\n' +
  '  <li>abrem um submenu num menu.</li>\n' +
  '  <li>movem-se entre botões num grupo da barra de ferramentas.</li>\n' +
  '  <li>movem-se entre itens no caminho do elemento do rodapé.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>As teclas de seta <strong>Para cima</strong> e <strong>Para baixo</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>movem-se entre itens de menu num menu.</li>\n' +
  '  <li>movem-se entre itens num menu de pop-up da barra de ferramentas.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>As teclas de <strong>seta</strong> deslocam-se ciclicamente na secção de IU em foco.</p>\n' +
  '\n' +
  '<p>Para fechar um menu aberto, um submenu aberto ou um menu de pop-up aberto, prima a tecla <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Se o foco atual estiver no "topo" de determinada secção de IU, premir a tecla <strong>Esc</strong> também fecha\n' +
  '  completamente a navegação com teclado.</p>\n' +
  '\n' +
  '<h1>Executar um item de menu ou botão da barra de ferramentas</h1>\n' +
  '\n' +
  '<p>Quando o item de menu ou o botão da barra de ferramentas pretendido estiver realçado, prima <strong>Retrocesso</strong>, <strong>Enter</strong>\n' +
  '  ou a <strong>Barra de espaço</strong> para executar o item.</p>\n' +
  '\n' +
  '<h1>Navegar em diálogos sem separadores</h1>\n' +
  '\n' +
  '<p>Nos diálogos sem separadores, o primeiro componente interativo fica em foco quando o diálogo abre.</p>\n' +
  '\n' +
  '<p>Navegue entre componentes interativos do diálogo, premindo <strong>Tab</strong> ou <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navegar em diálogos com separadores</h1>\n' +
  '\n' +
  '<p>Nos diálogos com separadores, o primeiro botão no menu do separador fica em foco quando o diálogo abre.</p>\n' +
  '\n' +
  '<p>Navegue entre os componentes interativos deste separador do diálogo, premindo <strong>Tab</strong> ou\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Mude para outro separador do diálogo colocando o menu do separador em foco e, em seguida, premindo a tecla de <strong>seta</strong>\n' +
  '  adequada para se deslocar ciclicamente pelos separadores disponíveis.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fr_FR.js000064400000011503151213255140022623 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.fr_FR',
'<h1>Débuter la navigation au clavier</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Cibler la barre du menu</dt>\n' +
  '  <dd>Windows ou Linux : Alt+F9</dd>\n' +
  '  <dd>macOS : &#x2325;F9</dd>\n' +
  "  <dt>Cibler la barre d'outils</dt>\n" +
  '  <dd>Windows ou Linux : Alt+F10</dd>\n' +
  '  <dd>macOS : &#x2325;F10</dd>\n' +
  '  <dt>Cibler le pied de page</dt>\n' +
  '  <dd>Windows ou Linux : Alt+F11</dd>\n' +
  '  <dd>macOS : &#x2325;F11</dd>\n' +
  "  <dt>Cibler une barre d'outils contextuelle</dt>\n" +
  '  <dd>Windows, Linux ou macOS : Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  "<p>La navigation débutera sur le premier élément de l'interface utilisateur, qui sera mis en surbrillance ou bien souligné dans le cas du premier élément du\n" +
  "  chemin d'éléments du pied de page.</p>\n" +
  '\n' +
  "<h1>Naviguer entre les sections de l'interface utilisateur</h1>\n" +
  '\n' +
  "<p>Pour passer d'une section de l'interface utilisateur à la suivante, appuyez sur <strong>Tabulation</strong>.</p>\n" +
  '\n' +
  "<p>Pour passer d'une section de l'interface utilisateur à la précédente, appuyez sur <strong>Maj+Tabulation</strong>.</p>\n" +
  '\n' +
  "<p>L'ordre de <strong>Tabulation</strong> de ces sections de l'interface utilisateur est le suivant :</p>\n" +
  '\n' +
  '<ol>\n' +
  '  <li>Barre du menu</li>\n' +
  "  <li>Chaque groupe de barres d'outils</li>\n" +
  '  <li>Barre latérale</li>\n' +
  "  <li>Chemin d'éléments du pied de page</li>\n" +
  "  <li>Bouton d'activation du compteur de mots dans le pied de page</li>\n" +
  '  <li>Lien de marque dans le pied de page</li>\n' +
  "  <li>Poignée de redimensionnement de l'éditeur dans le pied de page</li>\n" +
  '</ol>\n' +
  '\n' +
  "<p>Si une section de l'interface utilisateur n'est pas présente, elle sera ignorée.</p>\n" +
  '\n' +
  "<p>Si le pied de page comporte un ciblage par navigation au clavier et qu'il n'y a aucune barre latérale visible, appuyer sur <strong>Maj+Tabulation</strong>\n" +
  "  déplace le ciblage vers le premier groupe de barres d'outils et non le dernier.</p>\n" +
  '\n' +
  "<h1>Naviguer au sein des sections de l'interface utilisateur</h1>\n" +
  '\n' +
  "<p>Pour passer d'un élément de l'interface utilisateur au suivant, appuyez sur la <strong>Flèche</strong> appropriée.</p>\n" +
  '\n' +
  '<p>Les touches fléchées <strong>Gauche</strong> et <strong>Droite</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>se déplacent entre les menus de la barre des menus.</li>\n' +
  "  <li>ouvrent un sous-menu au sein d'un menu.</li>\n" +
  "  <li>se déplacent entre les boutons d'un groupe de barres d'outils.</li>\n" +
  "  <li>se déplacent entre les éléments du chemin d'éléments du pied de page.</li>\n" +
  '</ul>\n' +
  '\n' +
  '<p>Les touches fléchées <strong>Bas</strong> et <strong>Haut</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  "  <li>se déplacent entre les éléments de menu au sein d'un menu.</li>\n" +
  "  <li>se déplacent entre les éléments au sein d'un menu contextuel de barre d'outils.</li>\n" +
  '</ul>\n' +
  '\n' +
  "<p>Les <strong>Flèches</strong> parcourent la section de l'interface utilisateur ciblée.</p>\n" +
  '\n' +
  '<p>Pour fermer un menu ouvert, un sous-menu ouvert ou un menu contextuel ouvert, appuyez sur <strong>Echap</strong>.</p>\n' +
  '\n' +
  "<p>Si l'actuel ciblage se trouve en « haut » d'une section spécifique de l'interface utilisateur, appuyer sur <strong>Echap</strong> permet également de quitter\n" +
  '  entièrement la navigation au clavier.</p>\n' +
  '\n' +
  "<h1>Exécuter un élément de menu ou un bouton de barre d'outils</h1>\n" +
  '\n' +
  "<p>Lorsque l'élément de menu ou le bouton de barre d'outils désiré est mis en surbrillance, appuyez sur la touche <strong>Retour arrière</strong>, <strong>Entrée</strong>\n" +
  "  ou la <strong>Barre d'espace</strong> pour exécuter l'élément.</p>\n" +
  '\n' +
  '<h1>Naviguer au sein de dialogues sans onglets</h1>\n' +
  '\n' +
  "<p>Dans les dialogues sans onglets, le premier composant interactif est ciblé lorsque le dialogue s'ouvre.</p>\n" +
  '\n' +
  '<p>Naviguez entre les composants du dialogue interactif en appuyant sur <strong>Tabulation</strong> ou <strong>Maj+Tabulation</strong>.</p>\n' +
  '\n' +
  '<h1>Naviguer au sein de dialogues avec onglets</h1>\n' +
  '\n' +
  "<p>Dans les dialogues avec onglets, le premier bouton du menu de l'onglet est ciblé lorsque le dialogue s'ouvre.</p>\n" +
  '\n' +
  '<p>Naviguez entre les composants interactifs de cet onglet de dialogue en appuyant sur <strong>Tabulation</strong> ou\n' +
  '  <strong>Maj+Tabulation</strong>.</p>\n' +
  '\n' +
  "<p>Passez à un autre onglet de dialogue en ciblant le menu de l'onglet et en appuyant sur la <strong>Flèche</strong>\n" +
  '  appropriée pour parcourir les onglets disponibles.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ms.js000064400000007773151213255140022262 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.ms',
'<h1>Mulakan navigasi papan kekunci</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokus bar Menu</dt>\n' +
  '  <dd>Windows atau Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokus Bar Alat</dt>\n' +
  '  <dd>Windows atau Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokus pengaki</dt>\n' +
  '  <dd>Windows atau Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokus bar alat kontekstual</dt>\n' +
  '  <dd>Windows, Linux atau macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigasi akan bermula pada item UI pertama, yang akan diserlahkan atau digaris bawah dalam saiz item pertama dalam\n' +
  '  laluan elemen Pengaki.</p>\n' +
  '\n' +
  '<h1>Navigasi antara bahagian UI</h1>\n' +
  '\n' +
  '<p>Untuk bergerak dari satu bahagian UI ke yang seterusnya, tekan <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Untuk bergerak dari satu bahagian UI ke yang sebelumnya, tekan <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Tertib <strong>Tab</strong> bahagian UI ini ialah:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Bar menu</li>\n' +
  '  <li>Setiap kumpulan bar alat</li>\n' +
  '  <li>Bar sisi</li>\n' +
  '  <li>Laluan elemen dalam pengaki</li>\n' +
  '  <li>Butang togol kiraan perkataan dalam pengaki</li>\n' +
  '  <li>Pautan penjenamaan dalam pengaki</li>\n' +
  '  <li>Pemegang saiz semula editor dalam pengaki</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Jika bahagian UI tidak wujud, ia dilangkau.</p>\n' +
  '\n' +
  '<p>Jika pengaki mempunyai fokus navigasi papan kekunci dan tiada bar sisi kelihatan, menekan <strong>Shift+Tab</strong>\n' +
  '  akan mengalihkan fokus ke kumpulan bar alat pertama, bukannya yang terakhir.</p>\n' +
  '\n' +
  '<h1>Navigasi dalam bahagian UI</h1>\n' +
  '\n' +
  '<p>Untuk bergerak dari satu elemen UI ke yang seterusnya, tekan kekunci <strong>Anak Panah</strong> yang bersesuaian.</p>\n' +
  '\n' +
  '<p>Kekunci anak panah <strong>Kiri</strong> dan <strong>Kanan</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>bergerak antara menu dalam bar menu.</li>\n' +
  '  <li>membukan submenu dalam menu.</li>\n' +
  '  <li>bergerak antara butang dalam kumpulan bar alat.</li>\n' +
  '  <li>Laluan elemen dalam pengaki.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Kekunci anak panah <strong>Bawah</strong> dan <strong>Atas</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>bergerak antara item menu dalam menu.</li>\n' +
  '  <li>bergerak antara item dalam menu timbul bar alat.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Kekunci <strong>Anak Panah</strong> berkitar dalam bahagian UI difokuskan.</p>\n' +
  '\n' +
  '<p>Untuk menutup menu buka, submenu terbuka atau menu timbul terbuka, tekan kekunci <strong>Esc</strong>.</p>\n' +
  '\n' +
  "<p>Jika fokus semasa berada di bahagian 'atas' bahagian UI tertentu, menekan kekunci <strong>Esc</strong> juga akan keluar daripada\n" +
  '  navigasi papan kekunci sepenuhnya.</p>\n' +
  '\n' +
  '<h1>Laksanakan item menu atau butang bar alat</h1>\n' +
  '\n' +
  '<p>Apabila item menu atau butang bar alat yang diinginkan diserlahkan, tekan <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  atau <strong>bar Space</strong> untuk melaksanakan item.</p>\n' +
  '\n' +
  '<h1>Navigasi ke dialog tidak bertab</h1>\n' +
  '\n' +
  '<p>Dalam dialog tidak bertab, komponen interaksi pertama difokuskan apabila dialog dibuka.</p>\n' +
  '\n' +
  '<p>Navigasi antara komponen dialog interaktif dengan menekan <strong>Tab</strong> atau <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navigasi ke dialog bertab</h1>\n' +
  '\n' +
  '<p>Dalam dialog bertab, butang pertama dalam menu tab difokuskan apabila dialog dibuka.</p>\n' +
  '\n' +
  '<p>Navigasi antara komponen interaktif tab dialog ini dengan menekan <strong>Tab</strong> atau\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Tukar kepada tab dialog lain dengan memfokuskan menu tab, kemudian menekan kekunci <strong>Anak Panah</strong> yang bersesuaian\n' +
  '  untuk berkitar menerusi tab yang tersedia.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/tr.js000064400000010765151213255140022263 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.tr',
'<h1>Klavyeyle gezintiyi başlatma</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Menü çubuğuna odaklan</dt>\n' +
  '  <dd>Windows veya Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Araç çubuğuna odaklan</dt>\n' +
  '  <dd>Windows veya Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Alt bilgiye odaklan</dt>\n' +
  '  <dd>Windows veya Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Bağlamsal araç çubuğuna odaklan</dt>\n' +
  '  <dd>Windows, Linux veya macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Gezinti ilk kullanıcı arabirimi öğesinden başlar, bu öğe vurgulanır ya da ilk öğe, Alt bilgi elemanı\n' +
  '  yolundaysa altı çizilir.</p>\n' +
  '\n' +
  '<h1>Kullanıcı arabirimi bölümleri arasında gezinme</h1>\n' +
  '\n' +
  '<p>Sonraki kullanıcı arabirimi bölümüne gitmek için <strong>Sekme</strong> tuşuna basın.</p>\n' +
  '\n' +
  '<p>Önceki kullanıcı arabirimi bölümüne gitmek için <strong>Shift+Sekme</strong> tuşlarına basın.</p>\n' +
  '\n' +
  '<p>Bu kullanıcı arabirimi bölümlerinin <strong>Sekme</strong> sırası:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menü çubuğu</li>\n' +
  '  <li>Her araç çubuğu grubu</li>\n' +
  '  <li>Kenar çubuğu</li>\n' +
  '  <li>Alt bilgide öğe yolu</li>\n' +
  '  <li>Alt bilgide sözcük sayısı geçiş düğmesi</li>\n' +
  '  <li>Alt bilgide marka bağlantısı</li>\n' +
  '  <li>Alt bilgide düzenleyiciyi yeniden boyutlandırma tutamacı</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Kullanıcı arabirimi bölümü yoksa atlanır.</p>\n' +
  '\n' +
  '<p>Alt bilgide klavyeyle gezinti odağı yoksa ve görünür bir kenar çubuğu mevcut değilse <strong>Shift+Sekme</strong> tuşlarına basıldığında\n' +
  '  odak son araç çubuğu yerine ilk araç çubuğu grubuna taşınır.</p>\n' +
  '\n' +
  '<h1>Kullanıcı arabirimi bölümleri içinde gezinme</h1>\n' +
  '\n' +
  '<p>Sonraki kullanıcı arabirimi elemanına gitmek için uygun <strong>Ok</strong> tuşuna basın.</p>\n' +
  '\n' +
  '<p><strong>Sol</strong> ve <strong>Sağ</strong> ok tuşları</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>menü çubuğundaki menüler arasında hareket eder.</li>\n' +
  '  <li>menüde bir alt menü açar.</li>\n' +
  '  <li>araç çubuğu grubundaki düğmeler arasında hareket eder.</li>\n' +
  '  <li>alt bilginin öğe yolundaki öğeler arasında hareket eder.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Aşağı</strong> ve <strong>Yukarı</strong> ok tuşları</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>menüdeki menü öğeleri arasında hareket eder.</li>\n' +
  '  <li>araç çubuğu açılır menüsündeki öğeler arasında hareket eder.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Ok</strong> tuşları, odaklanılan kullanıcı arabirimi bölümü içinde döngüsel olarak hareket eder.</p>\n' +
  '\n' +
  '<p>Açık bir menüyü, açık bir alt menüyü veya açık bir açılır menüyü kapatmak için <strong>Esc</strong> tuşuna basın.</p>\n' +
  '\n' +
  '<p>Geçerli odak belirli bir kullanıcı arabirimi bölümünün "üst" kısmındaysa <strong>Esc</strong> tuşuna basıldığında\n' +
  '  klavyeyle gezintiden de tamamen çıkılır.</p>\n' +
  '\n' +
  '<h1>Menü öğesini veya araç çubuğu düğmesini yürütme</h1>\n' +
  '\n' +
  '<p>İstediğiniz menü öğesi veya araç çubuğu düğmesi vurgulandığında <strong>Return</strong>, <strong>Enter</strong>\n' +
  '  veya <strong>Ara çubuğu</strong> tuşuna basın.</p>\n' +
  '\n' +
  '<h1>Sekme bulunmayan iletişim kutularında gezinme</h1>\n' +
  '\n' +
  '<p>Sekme bulunmayan iletişim kutularında, iletişim kutusu açıldığında ilk etkileşimli bileşene odaklanılır.</p>\n' +
  '\n' +
  '<p>Etkileşimli iletişim kutusu bileşenleri arasında gezinmek için <strong>Sekme</strong> veya <strong>Shift+ Sekme</strong> tuşlarına basın.</p>\n' +
  '\n' +
  '<h1>Sekmeli iletişim kutularında gezinme</h1>\n' +
  '\n' +
  '<p>Sekmeli iletişim kutularında, iletişim kutusu açıldığında sekme menüsündeki ilk düğmeye odaklanılır.</p>\n' +
  '\n' +
  '<p>Bu iletişim kutusu sekmesinin etkileşimli bileşenleri arasında gezinmek için <strong>Sekme</strong> veya\n' +
  '  <strong>Shift+Sekme</strong> tuşlarına basın.</p>\n' +
  '\n' +
  '<p>Mevcut sekmeler arasında geçiş yapmak için sekme menüsüne odaklanıp uygun <strong>Ok</strong> tuşuna basarak\n' +
  '  başka bir iletişim kutusu sekmesine geçiş yapın.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/vi.js000064400000011741151213255150022250 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.vi',
'<h1>Bắt đầu điều hướng bàn phím</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Tập trung vào thanh menu</dt>\n' +
  '  <dd>Windows hoặc Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Tập trung vào thanh công cụ</dt>\n' +
  '  <dd>Windows hoặc Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Tập trung vào chân trang</dt>\n' +
  '  <dd>Windows hoặc Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Tập trung vào thanh công cụ ngữ cảnh</dt>\n' +
  '  <dd>Windows, Linux hoặc macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Điều hướng sẽ bắt đầu từ mục UI đầu tiên. Mục này sẽ được tô sáng hoặc có gạch dưới (nếu là mục đầu tiên trong\n' +
  '  đường dẫn phần tử Chân trang).</p>\n' +
  '\n' +
  '<h1>Di chuyển qua lại giữa các phần UI</h1>\n' +
  '\n' +
  '<p>Để di chuyển từ một phần UI sang phần tiếp theo, ấn <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Để di chuyển từ một phần UI về phần trước đó, ấn <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Thứ tự <strong>Tab</strong> của các phần UI này như sau:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Thanh menu</li>\n' +
  '  <li>Từng nhóm thanh công cụ</li>\n' +
  '  <li>Thanh bên</li>\n' +
  '  <li>Đường dẫn phần tử trong chân trang</li>\n' +
  '  <li>Nút chuyển đổi đếm chữ ở chân trang</li>\n' +
  '  <li>Liên kết thương hiệu ở chân trang</li>\n' +
  '  <li>Núm điều tác chỉnh kích cỡ trình soạn thảo ở chân trang</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Nếu người dùng không thấy một phần UI, thì có nghĩa phần đó bị bỏ qua.</p>\n' +
  '\n' +
  '<p>Nếu ở chân trang có tính năng tập trung điều hướng bàn phím, mà không có thanh bên nào hiện hữu, thao tác ấn <strong>Shift+Tab</strong>\n' +
  '  sẽ chuyển hướng tập trung vào nhóm thanh công cụ đầu tiên, không phải cuối cùng.</p>\n' +
  '\n' +
  '<h1>Di chuyển qua lại trong các phần UI</h1>\n' +
  '\n' +
  '<p>Để di chuyển từ một phần tử UI sang phần tiếp theo, ấn phím <strong>Mũi tên</strong> tương ứng cho phù hợp.</p>\n' +
  '\n' +
  '<p>Các phím mũi tên <strong>Trái</strong> và <strong>Phải</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>di chuyển giữa các menu trong thanh menu.</li>\n' +
  '  <li>mở menu phụ trong một menu.</li>\n' +
  '  <li>di chuyển giữa các nút trong nhóm thanh công cụ.</li>\n' +
  '  <li>di chuyển giữa các mục trong đường dẫn phần tử của chân trang.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Các phím mũi tên <strong>Hướng xuống</strong> và <strong>Hướng lên</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>di chuyển giữa các mục menu trong menu.</li>\n' +
  '  <li>di chuyển giữa các mục trong menu thanh công cụ dạng bật lên.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Các phím <strong>mũi tên</strong> xoay vòng trong một phần UI tập trung.</p>\n' +
  '\n' +
  '<p>Để đóng một menu mở, một menu phụ đang mở, hoặc một menu dạng bật lên đang mở, hãy ấn phím <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Nếu trọng tâm hiện tại là ở phần “đầu” của một phần UI cụ thể, thao tác ấn phím <strong>Esc</strong> cũng sẽ thoát\n' +
  '  toàn bộ phần điều hướng bàn phím.</p>\n' +
  '\n' +
  '<h1>Thực hiện chức năng của một mục menu hoặc nút thanh công cụ</h1>\n' +
  '\n' +
  '<p>Khi mục menu hoặc nút thanh công cụ muốn dùng được tô sáng, hãy ấn <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  hoặc <strong>Phím cách</strong> để thực hiện chức năng mục đó.</p>\n' +
  '\n' +
  '<h1>Điều hướng giữa các hộp thoại không có nhiều tab</h1>\n' +
  '\n' +
  '<p>Trong các hộp thoại không có nhiều tab, khi hộp thoại mở ra, trọng tâm sẽ hướng vào thành phần tương tác đầu tiên.</p>\n' +
  '\n' +
  '<p>Di chuyển giữa các thành phần hộp thoại tương tác bằng cách ấn <strong>Tab</strong> hoặc <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Điều hướng giữa các hộp thoại có nhiều tab</h1>\n' +
  '\n' +
  '<p>Trong các hộp thoại có nhiều tab, khi hộp thoại mở ra, trọng tâm sẽ hướng vào nút đầu tiên trong menu tab.</p>\n' +
  '\n' +
  '<p>Di chuyển giữa các thành phần tương tác của tab hộp thoại này bằng cách ấn <strong>Tab</strong> hoặc\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Chuyển sang một tab hộp thoại khác bằng cách chuyển trọng tâm vào menu tab, rồi ấn phím <strong>Mũi tên</strong> phù hợp\n' +
  '  để xoay vòng các tab hiện có.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/el.js000064400000016637151213255150022243 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.el',
'<h1>Έναρξη πλοήγησης μέσω πληκτρολογίου</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Εστίαση στη γραμμή μενού</dt>\n' +
  '  <dd>Windows ή Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Εστίαση στη γραμμή εργαλείων</dt>\n' +
  '  <dd>Windows ή Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Εστίαση στο υποσέλιδο</dt>\n' +
  '  <dd>Windows ή Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Εστίαση σε γραμμή εργαλείων βάσει περιεχομένου</dt>\n' +
  '  <dd>Windows, Linux ή macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Η πλοήγηση θα ξεκινήσει από το πρώτο στοιχείο περιβάλλοντος χρήστη, που θα επισημαίνεται ή θα είναι υπογραμμισμένο,\n' +
  '  όπως στην περίπτωση της διαδρομής του στοιχείου Υποσέλιδου.</p>\n' +
  '\n' +
  '<h1>Πλοήγηση μεταξύ ενοτήτων του περιβάλλοντος χρήστη</h1>\n' +
  '\n' +
  '<p>Για να μετακινηθείτε από μια ενότητα περιβάλλοντος χρήστη στην επόμενη, πιέστε το πλήκτρο <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Για να μετακινηθείτε από μια ενότητα περιβάλλοντος χρήστη στην προηγούμενη, πιέστε τα πλήκτρα <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Η σειρά <strong>Tab</strong> αυτών των ενοτήτων περιβάλλοντος χρήστη είναι η εξής:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Γραμμή μενού</li>\n' +
  '  <li>Κάθε ομάδα γραμμής εργαλείων</li>\n' +
  '  <li>Πλαϊνή γραμμή</li>\n' +
  '  <li>Διαδρομή στοιχείου στο υποσέλιδο</li>\n' +
  '  <li>Κουμπί εναλλαγής μέτρησης λέξεων στο υποσέλιδο</li>\n' +
  '  <li>Σύνδεσμος επωνυμίας στο υποσέλιδο</li>\n' +
  '  <li>Λαβή αλλαγής μεγέθους προγράμματος επεξεργασίας στο υποσέλιδο</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Εάν δεν εμφανίζεται ενότητα περιβάλλοντος χρήστη, παραλείπεται.</p>\n' +
  '\n' +
  '<p>Εάν η εστίαση πλοήγησης βρίσκεται στο πληκτρολόγιο και δεν υπάρχει εμφανής πλαϊνή γραμμή, εάν πιέσετε <strong>Shift+Tab</strong>\n' +
  '  η εστίαση μετακινείται στην πρώτη ομάδα γραμμής εργαλείων, όχι στην τελευταία.</p>\n' +
  '\n' +
  '<h1>Πλοήγηση εντός των ενοτήτων του περιβάλλοντος χρήστη</h1>\n' +
  '\n' +
  '<p>Για να μετακινηθείτε από ένα στοιχείο περιβάλλοντος χρήστη στο επόμενο, πιέστε το αντίστοιχο πλήκτρο <strong>βέλους</strong>.</p>\n' +
  '\n' +
  '<p>Με τα πλήκτρα <strong>αριστερού</strong> και <strong>δεξιού</strong> βέλους</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>γίνεται μετακίνηση μεταξύ των μενού στη γραμμή μενού.</li>\n' +
  '  <li>ανοίγει ένα υπομενού σε ένα μενού.</li>\n' +
  '  <li>γίνεται μετακίνηση μεταξύ κουμπιών σε μια ομάδα γραμμής εργαλείων.</li>\n' +
  '  <li>γίνεται μετακίνηση μεταξύ στοιχείων στη διαδρομή στοιχείου στο υποσέλιδο.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Με τα πλήκτρα <strong>επάνω</strong> και <strong>κάτω</strong> βέλους</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>γίνεται μετακίνηση μεταξύ των στοιχείων μενού σε ένα μενού.</li>\n' +
  '  <li>γίνεται μετακίνηση μεταξύ των στοιχείων μενού σε ένα αναδυόμενο μενού γραμμής εργαλείων.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Με τα πλήκτρα <strong>βέλους</strong> γίνεται κυκλική μετακίνηση εντός της εστιασμένης ενότητας περιβάλλοντος χρήστη.</p>\n' +
  '\n' +
  '<p>Για να κλείσετε ένα ανοιχτό μενού, ένα ανοιχτό υπομενού ή ένα ανοιχτό αναδυόμενο μενού, πιέστε το πλήκτρο <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Εάν η τρέχουσα εστίαση βρίσκεται στην κορυφή μιας ενότητας περιβάλλοντος χρήστη, πιέζοντας το πλήκτρο <strong>Esc</strong>,\n' +
  '  γίνεται επίσης πλήρης έξοδος από την πλοήγηση μέσω πληκτρολογίου.</p>\n' +
  '\n' +
  '<h1>Εκτέλεση ενός στοιχείου μενού ή κουμπιού γραμμής εργαλείων</h1>\n' +
  '\n' +
  '<p>Όταν το επιθυμητό στοιχείο μενού ή κουμπί γραμμής εργαλείων είναι επισημασμένο, πιέστε τα πλήκτρα <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  ή το <strong>πλήκτρο διαστήματος</strong> για να εκτελέσετε το στοιχείο.</p>\n' +
  '\n' +
  '<h1>Πλοήγηση σε παράθυρα διαλόγου χωρίς καρτέλες</h1>\n' +
  '\n' +
  '<p>Σε παράθυρα διαλόγου χωρίς καρτέλες, το πρώτο αλληλεπιδραστικό στοιχείο λαμβάνει την εστίαση όταν ανοίγει το παράθυρο διαλόγου.</p>\n' +
  '\n' +
  '<p>Μπορείτε να πλοηγηθείτε μεταξύ των αλληλεπιδραστικών στοιχείων παραθύρων διαλόγων πιέζοντας τα πλήκτρα <strong>Tab</strong> ή <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Πλοήγηση σε παράθυρα διαλόγου με καρτέλες</h1>\n' +
  '\n' +
  '<p>Σε παράθυρα διαλόγου με καρτέλες, το πρώτο κουμπί στο μενού καρτέλας λαμβάνει την εστίαση όταν ανοίγει το παράθυρο διαλόγου.</p>\n' +
  '\n' +
  '<p>Μπορείτε να πλοηγηθείτε μεταξύ των αλληλεπιδραστικών στοιχείων αυτής της καρτέλα διαλόγου πιέζοντας τα πλήκτρα <strong>Tab</strong> ή\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Μπορείτε να κάνετε εναλλαγή σε άλλη καρτέλα του παραθύρου διαλόγου, μεταφέροντας την εστίαση στο μενού καρτέλας και πιέζοντας το κατάλληλο πλήκτρο <strong>βέλους</strong>\n' +
  '  για να μετακινηθείτε κυκλικά στις διαθέσιμες καρτέλες.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/id.js000064400000010160151213255150022220 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.id',
'<h1>Memulai navigasi keyboard</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokus pada bilah Menu</dt>\n' +
  '  <dd>Windows atau Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokus pada Bilah Alat</dt>\n' +
  '  <dd>Windows atau Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokus pada footer</dt>\n' +
  '  <dd>Windows atau Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokus pada bilah alat kontekstual</dt>\n' +
  '  <dd>Windows, Linux, atau macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigasi akan dimulai dari item pertama UI, yang akan disorot atau digarisbawahi di\n' +
  '  alur elemen Footer.</p>\n' +
  '\n' +
  '<h1>Berpindah antar-bagian UI</h1>\n' +
  '\n' +
  '<p>Untuk berpindah dari satu bagian UI ke bagian berikutnya, tekan <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Untuk berpindah dari satu bagian UI ke bagian sebelumnya, tekan <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Urutan <strong>Tab</strong> bagian-bagian UI ini adalah:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Bilah menu</li>\n' +
  '  <li>Tiap grup bilah alat</li>\n' +
  '  <li>Bilah sisi</li>\n' +
  '  <li>Alur elemen di footer</li>\n' +
  '  <li>Tombol aktifkan/nonaktifkan jumlah kata di footer</li>\n' +
  '  <li>Tautan merek di footer</li>\n' +
  '  <li>Pengatur pengubahan ukuran editor di footer</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Jika suatu bagian UI tidak ada, bagian tersebut dilewati.</p>\n' +
  '\n' +
  '<p>Jika fokus navigasi keyboard ada pada footer, tetapi tidak ada bilah sisi yang terlihat, menekan <strong>Shift+Tab</strong>\n' +
  '  akan memindahkan fokus ke grup bilah alat pertama, bukan yang terakhir.</p>\n' +
  '\n' +
  '<h1>Berpindah di dalam bagian-bagian UI</h1>\n' +
  '\n' +
  '<p>Untuk berpindah dari satu elemen UI ke elemen berikutnya, tekan tombol <strong>Panah</strong> yang sesuai.</p>\n' +
  '\n' +
  '<p>Tombol panah <strong>Kiri</strong> dan <strong>Kanan</strong> untuk</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>berpindah-pindah antar-menu di dalam bilah menu.</li>\n' +
  '  <li>membuka sub-menu di dalam menu.</li>\n' +
  '  <li>berpindah-pindah antar-tombol di dalam grup bilah alat.</li>\n' +
  '  <li>berpindah-pindah antar-item di dalam alur elemen footer.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Tombol panah <strong>Bawah</strong> dan <strong>Atas</strong> untuk</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>berpindah-pindah antar-item menu di dalam menu.</li>\n' +
  '  <li>berpindah-pindah antar-item di dalam menu pop-up bilah alat.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Tombol <strong>Panah</strong> hanya bergerak di dalam bagian UI yang difokuskan.</p>\n' +
  '\n' +
  '<p>Untuk menutup menu, sub-menu, atau menu pop-up yang terbuka, tekan tombol <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Jika fokus sedang berada di ‘atas’ bagian UI tertentu, menekan tombol <strong>Esc</strong> juga dapat mengeluarkan fokus\n' +
  '  dari seluruh navigasi keyboard.</p>\n' +
  '\n' +
  '<h1>Menjalankan item menu atau tombol bilah alat</h1>\n' +
  '\n' +
  '<p>Jika item menu atau tombol bilah alat yang diinginkan tersorot, tekan <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  atau <strong>Spasi</strong> untuk menjalankan item.</p>\n' +
  '\n' +
  '<h1>Berpindah dalam dialog tanpa tab</h1>\n' +
  '\n' +
  '<p>Dalam dialog tanpa tab, fokus diarahkan pada komponen interaktif pertama saat dialog terbuka.</p>\n' +
  '\n' +
  '<p>Berpindah di antara komponen dalam dialog interaktif dengan menekan <strong>Tab</strong> atau <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Berpindah dalam dialog dengan tab</h1>\n' +
  '\n' +
  '<p>Dalam dialog yang memiliki tab, fokus diarahkan pada tombol pertama di dalam menu saat dialog terbuka.</p>\n' +
  '\n' +
  '<p>Berpindah di antara komponen-komponen interaktif pada tab dialog ini dengan menekan <strong>Tab</strong> atau\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Beralih ke tab dialog lain dengan mengarahkan fokus pada menu tab lalu tekan tombol <strong>Panah</strong>\n' +
  '  yang sesuai untuk berpindah ke berbagai tab yang tersedia.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sl_SI.js000064400000011040151213255150022633 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.sl_SI',
'<h1>Začetek krmarjenja s tipkovnico</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokus na menijsko vrstico</dt>\n' +
  '  <dd>Windows ali Linux: Alt + F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokus na orodno vrstico</dt>\n' +
  '  <dd>Windows ali Linux: Alt + F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokus na nogo</dt>\n' +
  '  <dd>Windows ali Linux: Alt + F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokus na kontekstualno orodno vrstico</dt>\n' +
  '  <dd>Windows, Linux ali macOS: Ctrl + F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Krmarjenje se bo začelo s prvim elementom uporabniškega vmesnika, ki bo izpostavljena ali podčrtan, če gre za prvi element na\n' +
  '  poti do elementa noge.</p>\n' +
  '\n' +
  '<h1>Krmarjenje med razdelki uporabniškega vmesnika</h1>\n' +
  '\n' +
  '<p>Če se želite pomakniti z enega dela uporabniškega vmesnika na naslednjega, pritisnite <strong>tabulatorko</strong>.</p>\n' +
  '\n' +
  '<p>Če se želite pomakniti z enega dela uporabniškega vmesnika na prejšnjega, pritisnite <strong>shift + tabulatorko</strong>.</p>\n' +
  '\n' +
  '<p>Zaporedje teh razdelkov uporabniškega vmesnika, ko pritiskate <strong>tabulatorko</strong>, je:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menijska vrstica</li>\n' +
  '  <li>Posamezne skupine orodne vrstice</li>\n' +
  '  <li>Stranska vrstica</li>\n' +
  '  <li>Pod do elementa v nogi</li>\n' +
  '  <li>Gumb za preklop štetja besed v nogi</li>\n' +
  '  <li>Povezava do blagovne znamke v nogi</li>\n' +
  '  <li>Ročaj za spreminjanje velikosti urejevalnika v nogi</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Če razdelek uporabniškega vmesnika ni prisoten, je preskočen.</p>\n' +
  '\n' +
  '<p>Če ima noga fokus za krmarjenje s tipkovnico in ni vidne stranske vrstice, s pritiskom na <strong>shift + tabulatorko</strong>\n' +
  '  fokus premaknete na prvo skupino orodne vrstice, ne zadnjo</p>.\n' +
  '\n' +
  '<h1>Krmarjenje v razdelkih uporabniškega vmesnika</h1>\n' +
  '\n' +
  '<p>Če se želite premakniti z enega elementa uporabniškega vmesnika na naslednjega, pritisnite ustrezno <strong>puščično</strong> tipko.</p>\n' +
  '\n' +
  '<p><strong>Leva</strong> in <strong>desna</strong> puščična tipka</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>omogočata premikanje med meniji v menijski vrstici.</li>\n' +
  '  <li>odpreta podmeni v meniju.</li>\n' +
  '  <li>omogočata premikanje med gumbi v skupini orodne vrstice.</li>\n' +
  '  <li>omogočata premikanje med elementi na poti do elementov noge.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Spodnja</strong> in <strong>zgornja</strong> puščična tipka</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>omogočata premikanje med elementi menija.</li>\n' +
  '  <li>omogočata premikanje med elementi v pojavnem meniju orodne vrstice.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Puščične</strong> tipke omogočajo kroženje znotraj razdelka uporabniškega vmesnika, na katerem je fokus.</p>\n' +
  '\n' +
  '<p>Če želite zapreti odprt meni, podmeni ali pojavni meni, pritisnite tipko <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Če je trenutni fokus na »vrhu« določenega razdelka uporabniškega vmesnika, s pritiskom tipke <strong>Esc</strong> zaprete\n' +
  '  tudi celotno krmarjenje s tipkovnico.</p>\n' +
  '\n' +
  '<h1>Izvajanje menijskega elementa ali gumba orodne vrstice</h1>\n' +
  '\n' +
  '<p>Ko je označen želeni menijski element ali orodja vrstica, pritisnite <strong>vračalko</strong>, <strong>Enter</strong>\n' +
  '  ali <strong>preslednico</strong>, da izvedete element.</p>\n' +
  '\n' +
  '<h1>Krmarjenje po pogovornih oknih brez zavihkov</h1>\n' +
  '\n' +
  '<p>Ko odprete pogovorno okno brez zavihkov, ima fokus prva interaktivna komponenta.</p>\n' +
  '\n' +
  '<p>Med interaktivnimi komponentami pogovornega okna se premikate s pritiskom <strong>tabulatorke</strong> ali kombinacije tipke <strong>shift + tabulatorke</strong>.</p>\n' +
  '\n' +
  '<h1>Krmarjenje po pogovornih oknih z zavihki</h1>\n' +
  '\n' +
  '<p>Ko odprete pogovorno okno z zavihki, ima fokus prvi gumb v meniju zavihka.</p>\n' +
  '\n' +
  '<p>Med interaktivnimi komponentami tega zavihka pogovornega okna se premikate s pritiskom <strong>tabulatorke</strong> ali\n' +
  '  kombinacije tipke <strong>shift + tabulatorke</strong>.</p>\n' +
  '\n' +
  '<p>Na drug zavihek pogovornega okna preklopite tako, da fokus prestavite na meni zavihka in nato pritisnete ustrezno <strong>puščično</strong>\n' +
  '  tipko, da se pomaknete med razpoložljivimi zavihki.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ro.js000064400000011505151213255150022250 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.ro',
'<h1>Începeți navigarea de la tastatură</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Focalizare pe bara de meniu</dt>\n' +
  '  <dd>Windows sau Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Focalizare pe bara de instrumente</dt>\n' +
  '  <dd>Windows sau Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Focalizare pe subsol</dt>\n' +
  '  <dd>Windows sau Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Focalizare pe o bară de instrumente contextuală</dt>\n' +
  '  <dd>Windows, Linux sau macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Navigarea va începe de la primul element al interfeței cu utilizatorul, care va fi evidențiat sau subliniat în cazul primului element din\n' +
  '  calea elementului Subsol.</p>\n' +
  '\n' +
  '<h1>Navigați între secțiunile interfeței cu utilizatorul</h1>\n' +
  '\n' +
  '<p>Pentru a trece de la o secțiune a interfeței cu utilizatorul la alta, apăsați <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Pentru a trece de la o secțiune a interfeței cu utilizatorul la cea anterioară, apăsați <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Ordinea cu <strong>Tab</strong> a acestor secțiuni ale interfeței cu utilizatorul este următoarea:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Bara de meniu</li>\n' +
  '  <li>Fiecare grup de bare de instrumente</li>\n' +
  '  <li>Bara laterală</li>\n' +
  '  <li>Calea elementului în subsol</li>\n' +
  '  <li>Buton de comutare a numărului de cuvinte în subsol</li>\n' +
  '  <li>Link de branding în subsol</li>\n' +
  '  <li>Mâner de redimensionare a editorului în subsol</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>În cazul în care o secțiune a interfeței cu utilizatorul nu este prezentă, aceasta este omisă.</p>\n' +
  '\n' +
  '<p>În cazul în care subsolul are focalizarea navigației asupra tastaturii și nu există o bară laterală vizibilă, apăsarea butonului <strong>Shift+Tab</strong>\n' +
  '  mută focalizarea pe primul grup de bare de instrumente, nu pe ultimul.</p>\n' +
  '\n' +
  '<h1>Navigați în secțiunile interfeței cu utilizatorul</h1>\n' +
  '\n' +
  '<p>Pentru a trece de la un element de interfață cu utilizatorul la următorul, apăsați tasta cu <strong>săgeata</strong> corespunzătoare.</p>\n' +
  '\n' +
  '<p>Tastele cu săgeți către <strong>stânga</strong> și <strong>dreapta</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>navighează între meniurile din bara de meniuri.</li>\n' +
  '  <li>deschid un sub-meniu dintr-un meniu.</li>\n' +
  '  <li>navighează între butoanele dintr-un grup de bare de instrumente.</li>\n' +
  '  <li>navighează între elementele din calea elementelor subsolului.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Tastele cu săgeți în <strong>sus</strong> și în <strong>jos</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>navighează între elementele de meniu dintr-un meniu.</li>\n' +
  '  <li>navighează între elementele unui meniu pop-up din bara de instrumente.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Tastele cu <strong>săgeți</strong> navighează în cadrul secțiunii interfeței cu utilizatorul asupra căreia se focalizează.</p>\n' +
  '\n' +
  '<p>Pentru a închide un meniu deschis, un sub-meniu deschis sau un meniu pop-up deschis, apăsați tasta <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Dacă focalizarea curentă este asupra „părții superioare” a unei anumite secțiuni a interfeței cu utilizatorul, prin apăsarea tastei <strong>Esc</strong> se iese, de asemenea,\n' +
  '  în întregime din navigarea de la tastatură.</p>\n' +
  '\n' +
  '<h1>Executarea unui element de meniu sau a unui buton din bara de instrumente</h1>\n' +
  '\n' +
  '<p>Atunci când elementul de meniu dorit sau butonul dorit din bara de instrumente este evidențiat, apăsați <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  sau <strong>bara de spațiu</strong> pentru a executa elementul.</p>\n' +
  '\n' +
  '<h1>Navigarea de dialoguri fără file</h1>\n' +
  '\n' +
  '<p>În dialogurile fără file, prima componentă interactivă beneficiază de focalizare la deschiderea dialogului.</p>\n' +
  '\n' +
  '<p>Navigați între componentele dialogului interactiv apăsând <strong>Tab</strong> sau <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navigarea de dialoguri cu file</h1>\n' +
  '\n' +
  '<p>În dialogurile cu file, primul buton din meniul cu file beneficiază de focalizare la deschiderea dialogului.</p>\n' +
  '\n' +
  '<p>Navigați între componentele interactive ale acestei file de dialog apăsând <strong>Tab</strong> sau\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Treceți la o altă filă de dialog focalizând asupra meniului cu file și apoi apăsând <strong>săgeata</strong> corespunzătoare\n' +
  '  pentru a parcurge filele disponibile.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_BR.js000064400000010353151213255150022636 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.pt_BR',
'<h1>Iniciar navegação pelo teclado</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Foco na barra de menus</dt>\n' +
  '  <dd>Windows ou Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Foco na barra de ferramentas</dt>\n' +
  '  <dd>Windows ou Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Foco no rodapé</dt>\n' +
  '  <dd>Windows ou Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Foco na barra de ferramentas contextual</dt>\n' +
  '  <dd>Windows, Linux ou macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>A navegação inicia no primeiro item da IU, que será destacado ou sublinhado no caso do primeiro item no\n' +
  '  caminho do elemento Rodapé.</p>\n' +
  '\n' +
  '<h1>Navegar entre seções da IU</h1>\n' +
  '\n' +
  '<p>Para ir de uma seção da IU para a seguinte, pressione <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Para ir de uma seção da IU para a anterior, pressione <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>A ordem de <strong>Tab</strong> destas seções da IU é:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Barra de menus</li>\n' +
  '  <li>Cada grupo da barra de ferramentas</li>\n' +
  '  <li>Barra lateral</li>\n' +
  '  <li>Caminho do elemento no rodapé</li>\n' +
  '  <li>Botão de alternar contagem de palavras no rodapé</li>\n' +
  '  <li>Link da marca no rodapé</li>\n' +
  '  <li>Alça de redimensionamento do editor no rodapé</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Se não houver uma seção da IU, ela será pulada.</p>\n' +
  '\n' +
  '<p>Se o rodapé tiver o foco da navegação pelo teclado e não houver uma barra lateral visível, pressionar <strong>Shift+Tab</strong>\n' +
  '  move o foco para o primeiro grupo da barra de ferramentas, não para o último.</p>\n' +
  '\n' +
  '<h1>Navegar dentro das seções da IU</h1>\n' +
  '\n' +
  '<p>Para ir de um elemento da IU para o seguinte, pressione a <strong>Seta</strong> correspondente.</p>\n' +
  '\n' +
  '<p>As teclas de seta <strong>Esquerda</strong> e <strong>Direita</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>movem entre menus na barra de menus.</li>\n' +
  '  <li>abrem um submenu em um menu.</li>\n' +
  '  <li>movem entre botões em um grupo da barra de ferramentas.</li>\n' +
  '  <li>movem entre itens no caminho do elemento do rodapé.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>As teclas de seta <strong>Abaixo</strong> e <strong>Acima</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>movem entre itens de menu em um menu.</li>\n' +
  '  <li>movem entre itens em um menu suspenso da barra de ferramentas.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>As teclas de <strong>Seta</strong> alternam dentre a seção da IU em foco.</p>\n' +
  '\n' +
  '<p>Para fechar um menu aberto, um submenu aberto ou um menu suspenso aberto, pressione <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Se o foco atual estiver no ‘alto’ de determinada seção da IU, pressionar <strong>Esc</strong> também sai\n' +
  '  totalmente da navegação pelo teclado.</p>\n' +
  '\n' +
  '<h1>Executar um item de menu ou botão da barra de ferramentas</h1>\n' +
  '\n' +
  '<p>Com o item de menu ou botão da barra de ferramentas desejado destacado, pressione <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  ou a <strong>Barra de espaço</strong> para executar o item.</p>\n' +
  '\n' +
  '<h1>Navegar por caixas de diálogo sem guias</h1>\n' +
  '\n' +
  '<p>Em caixas de diálogo sem guias, o primeiro componente interativo recebe o foco quando a caixa de diálogo abre.</p>\n' +
  '\n' +
  '<p>Navegue entre componentes interativos de caixa de diálogo pressionando <strong>Tab</strong> ou <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Navegar por caixas de diálogo com guias</h1>\n' +
  '\n' +
  '<p>Em caixas de diálogo com guias, o primeiro botão no menu da guia recebe o foco quando a caixa de diálogo abre.</p>\n' +
  '\n' +
  '<p>Navegue entre componentes interativos dessa guia da caixa de diálogo pressionando <strong>Tab</strong> ou\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Alterne para outra guia da caixa de diálogo colocando o foco no menu da guia e pressionando a <strong>Seta</strong>\n' +
  '  adequada para percorrer as guias disponíveis.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/uk.js000064400000016436151213255150022257 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.uk',
'<h1>Початок роботи з навігацією за допомогою клавіатури</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Фокус на рядок меню</dt>\n' +
  '  <dd>Windows або Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Фокус на панелі інструментів</dt>\n' +
  '  <dd>Windows або Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Фокус на розділі "Нижній колонтитул"</dt>\n' +
  '  <dd>Windows або Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Фокус на контекстній панелі інструментів</dt>\n' +
  '  <dd>Windows, Linux або macOS: Ctrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Навігація почнеться з першого елемента інтерфейсу користувача, який буде виділено або підкреслено в разі, якщо перший елемент знаходиться в\n' +
  '  шляху до елемента "Нижній колонтитул".</p>\n' +
  '\n' +
  '<h1>Навігація між розділами інтерфейсу користувача</h1>\n' +
  '\n' +
  '<p>Щоб перейти з одного розділу інтерфейсу користувача до наступного розділу, натисніть клавішу <strong>Tab</strong>.</p>\n' +
  '\n' +
  '<p>Щоб перейти з одного розділу інтерфейсу користувача до попереднього розділу, натисніть сполучення клавіш <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Порядок <strong>Вкладок</strong> цих розділів інтерфейсу користувача такий:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Рядок меню</li>\n' +
  '  <li>Кожна група панелей інструментів</li>\n' +
  '  <li>Бічна панель</li>\n' +
  '  <li>Шлях до елементів у розділі "Нижній колонтитул"</li>\n' +
  '  <li>Кнопка перемикача "Кількість слів" у розділі "Нижній колонтитул"</li>\n' +
  '  <li>Посилання на брендинг у розділі "Нижній колонтитул"</li>\n' +
  '  <li>Маркер змінення розміру в розділі "Нижній колонтитул"</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>Якщо розділ інтерфейсу користувача відсутній, він пропускається.</p>\n' +
  '\n' +
  '<p>Якщо фокус навігації клавіатури знаходиться на розділі "Нижній колонтитул", але користувач не бачить видиму бічну панель, натисніть <strong>Shift+Tab</strong>,\n' +
  '  щоб перемістити фокус на першу групу панелі інструментів, а не на останню.</p>\n' +
  '\n' +
  '<h1>Навігація в межах розділів інтерфейсу користувача</h1>\n' +
  '\n' +
  '<p>Щоб перейти з одного елементу інтерфейсу користувача до наступного, натисніть відповідну клавішу <strong>зі стрілкою</strong>.</p>\n' +
  '\n' +
  '<p>Клавіші зі стрілками <strong>Ліворуч</strong> і <strong>Праворуч</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>переміщують між меню в рядку меню.</li>\n' +
  '  <li>відкривають вкладене меню в меню.</li>\n' +
  '  <li>переміщують користувача між кнопками в групі панелі інструментів.</li>\n' +
  '  <li>переміщують між елементами в шляху до елементів у розділі "Нижній колонтитул".</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Клавіші зі стрілками <strong>Вниз</strong> і <strong>Вгору</strong></p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>переміщують між елементами меню в меню.</li>\n' +
  '  <li>переміщують між елементами в спливаючому меню панелі інструментів.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p>Клавіші <strong>зі стрілками</strong> переміщують фокус циклічно в межах розділу інтерфейсу користувача, на якому знаходиться фокус.</p>\n' +
  '\n' +
  '<p>Щоб закрити відкрите меню, відкрите вкладене меню або відкрите спливаюче меню, натисніть клавішу <strong>Esc</strong>.</p>\n' +
  '\n' +
  '<p>Якщо поточний фокус знаходиться на верхньому рівні певного розділу інтерфейсу користувача, натискання клавіші <strong>Esc</strong> також виконує вихід\n' +
  '  з навігації за допомогою клавіатури повністю.</p>\n' +
  '\n' +
  '<h1>Виконання елементу меню або кнопки панелі інструментів</h1>\n' +
  '\n' +
  '<p>Коли потрібний елемент меню або кнопку панелі інструментів виділено, натисніть клавіші <strong>Return</strong>, <strong>Enter</strong>,\n' +
  '  або <strong>Пробіл</strong>, щоб виконати цей елемент.</p>\n' +
  '\n' +
  '<h1>Навігація по діалоговим вікнам без вкладок</h1>\n' +
  '\n' +
  '<p>У діалогових вікнах без вкладок перший інтерактивний компонент приймає фокус, коли відкривається діалогове вікно.</p>\n' +
  '\n' +
  '<p>Переходьте між інтерактивними компонентами діалогового вікна, натискаючи клавіші <strong>Tab</strong> або <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<h1>Навігація по діалоговим вікнам з вкладками</h1>\n' +
  '\n' +
  '<p>У діалогових вікнах із вкладками перша кнопка в меню вкладки приймає фокус, коли відкривається діалогове вікно.</p>\n' +
  '\n' +
  '<p>Переходьте між інтерактивними компонентами цієї вкладки діалогового вікна, натискаючи клавіші <strong>Tab</strong> або\n' +
  '  <strong>Shift+Tab</strong>.</p>\n' +
  '\n' +
  '<p>Щоб перейти на іншу вкладку діалогового вікна, перемістіть фокус на меню вкладки, а потім натисніть відповідну клавішу <strong>зі стрілкою</strong>,\n' +
  '  щоб циклічно переходити по доступним вкладкам.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/js/i18n/keynav/eu.js000064400000010272151213255160022242 0ustar00tinymce.Resource.add('tinymce.html-i18n.help-keynav.eu',
'<h1>Hasi teklatuaren nabigazioa</h1>\n' +
  '\n' +
  '<dl>\n' +
  '  <dt>Fokuratu menu-barra</dt>\n' +
  '  <dd>Windows edo Linux: Alt+F9</dd>\n' +
  '  <dd>macOS: &#x2325;F9</dd>\n' +
  '  <dt>Fokuratu tresna-barra</dt>\n' +
  '  <dd>Windows edo Linux: Alt+F10</dd>\n' +
  '  <dd>macOS: &#x2325;F10</dd>\n' +
  '  <dt>Fokuratu orri-oina</dt>\n' +
  '  <dd>Windows edo Linux: Alt+F11</dd>\n' +
  '  <dd>macOS: &#x2325;F11</dd>\n' +
  '  <dt>Fokuratu testuinguruaren tresna-barra</dt>\n' +
  '  <dd>Windows, Linux edo macOS: Ktrl+F9\n' +
  '</dl>\n' +
  '\n' +
  '<p>Nabigazioa EIko lehen elementuan hasiko da: elementu hori nabarmendu egingo da, edo azpimarratu lehen elementua bada\n' +
  '  orri-oineko elementuaren bidea.</p>\n' +
  '\n' +
  '<h1>Nabigatu EIko atalen artean</h1>\n' +
  '\n' +
  '<p>EIko atal batetik hurrengora mugitzeko, sakatu <strong>Tabuladorea</strong>.</p>\n' +
  '\n' +
  '<p>EIko atal batetik aurrekora mugitzeko, sakatu <strong>Maius+Tabuladorea</strong>.</p>\n' +
  '\n' +
  '<p>EIko atal hauen <strong>Tabuladorea</strong> da:</p>\n' +
  '\n' +
  '<ol>\n' +
  '  <li>Menu-barra</li>\n' +
  '  <li>Tresna-barraren talde bakoitza</li>\n' +
  '  <li>Alboko barra</li>\n' +
  '  <li>Orri-oineko elementuaren bidea</li>\n' +
  '  <li>Orri-oneko urrats-kontaketa txandakatzeko botoia</li>\n' +
  '  <li>Orri-oineko marken esteka</li>\n' +
  '  <li>Orri-oineko editorearen tamaina aldatzeko heldulekua</li>\n' +
  '</ol>\n' +
  '\n' +
  '<p>EIko atal bat ez badago, saltatu egin da.</p>\n' +
  '\n' +
  '<p>Orri-oinak teklatuaren nabigazioa fokuratuta badago, eta alboko barra ikusgai ez badago, <strong>Maius+Tabuladorea</strong> sakatuz gero,\n' +
  '  fokua tresna-barrako lehen taldera eramaten da, ez azkenera.</p>\n' +
  '\n' +
  '<h1>Nabigatu EIko atalen barruan</h1>\n' +
  '\n' +
  '<p>EIko elementu batetik hurrengora mugitzeko, sakatu dagokion <strong>Gezia</strong> tekla.</p>\n' +
  '\n' +
  '<p><strong>Ezkerrera</strong> eta <strong>Eskuinera</strong> gezi-teklak</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>menu-barrako menuen artean mugitzen da.</li>\n' +
  '  <li>ireki azpimenu bat menuan.</li>\n' +
  '  <li>mugitu botoi batetik bestera tresna-barren talde batean.</li>\n' +
  '  <li>mugitu orri-oineko elementuaren bideko elementu batetik bestera.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Gora</strong> eta <strong>Behera</strong> gezi-teklak</p>\n' +
  '\n' +
  '<ul>\n' +
  '  <li>mugitu menu bateko menu-elementuen artean.</li>\n' +
  '  <li>mugitu tresna-barrako menu gainerakor bateko menu-elementuen artean.</li>\n' +
  '</ul>\n' +
  '\n' +
  '<p><strong>Gezia</strong> teklen zikloa nabarmendutako EI atalen barruan.</p>\n' +
  '\n' +
  '<p>Irekitako menu bat ixteko, ireki azpimenua, edo ireki menu gainerakorra, sakatu <strong>Ihes</strong> tekla.</p>\n' +
  '\n' +
  '<p>Une horretan fokuratzea EIko atal jakin baten "goialdean" badago, <strong>Ihes</strong> tekla sakatuz gero\n' +
  '  teklatuaren nabigaziotik irtengo zara.</p>\n' +
  '\n' +
  '<h1>Exekutatu menuko elementu bat edo tresna-barrako botoi bat</h1>\n' +
  '\n' +
  '<p>Nahi den menuaren elementua edo tresna-barraren botoia nabarmenduta dagoenean, sakatu <strong>Itzuli</strong>, <strong>Sartu</strong>\n' +
  '  edo <strong>Zuriune-barra</strong> elementua exekutatzeko.</p>\n' +
  '\n' +
  '<h1>Nabigatu fitxarik gabeko elkarrizketak</h1>\n' +
  '\n' +
  '<p>Fitxarik gabeko elkarrizketetan, lehen osagai interaktiboa fokuratzen da elkarrizketa irekitzen denean.</p>\n' +
  '\n' +
  '<p>Nabigatu elkarrizketa interaktiboko osagai batetik bestera <strong>Tabuladorea</strong> edo <strong>Maius+Tabuladorea</strong> sakatuta.</p>\n' +
  '\n' +
  '<h1>Nabigatu fitxadun elkarrizketak</h1>\n' +
  '\n' +
  '<p>Fitxadun elkarrizketetan, fitxa-menuko lehen botoia fokuratzen da elkarrizketa irekitzen denean.</p>\n' +
  '\n' +
  '<p>Nabigatu elkarrizketa-fitxa honen interaktiboko osagai batetik bestera <strong>Tabuladorea</strong> edo\n' +
  '  <strong>Maius+Tabuladorea</strong> sakatuta.</p>\n' +
  '\n' +
  '<p>Aldatu beste elkarrizketa-fitxa batera fitxa-menua fokuratu eta dagokion <strong>Gezia</strong>\n' +
  '  tekla sakatzeko, erabilgarri dauden fitxa batetik bestera txandakatzeko.</p>\n');admin/assets/vendor/tinymce/js/tinymce/plugins/help/plugin.min.js000064400000024546151213255160021232 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");let t=0;const n=e=>{const n=(new Date).getTime(),a=Math.floor(1e9*Math.random());return t++,e+"_"+a+t+String(n)},a=e=>t=>t.options.get(e),r=a("help_tabs"),o=a("forced_plugins"),i=("string",e=>"string"===(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(n=a=e,(r=String).prototype.isPrototypeOf(n)||(null===(o=a.constructor)||void 0===o?void 0:o.name)===r.name)?"string":t;var n,a,r,o})(e));const s=(void 0,e=>undefined===e);const l=e=>"function"==typeof e,c=(!1,()=>false);class m{constructor(e,t){this.tag=e,this.value=t}static some(e){return new m(!0,e)}static none(){return m.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?m.some(e(this.value)):m.none()}bind(e){return this.tag?e(this.value):m.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:m.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return null==e?m.none():m.some(e)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}m.singletonNone=new m(!1);const u=Array.prototype.slice,p=Array.prototype.indexOf,y=(e,t)=>{const n=e.length,a=new Array(n);for(let r=0;r<n;r++){const n=e[r];a[r]=t(n,r)}return a},h=(e,t)=>{const n=[];for(let a=0,r=e.length;a<r;a++){const r=e[a];t(r,a)&&n.push(r)}return n},d=(e,t)=>{const n=u.call(e,0);return n.sort(t),n},g=Object.keys,k=Object.hasOwnProperty,v=(e,t)=>k.call(e,t);var b=tinymce.util.Tools.resolve("tinymce.Resource"),f=tinymce.util.Tools.resolve("tinymce.util.I18n");const A=(e,t)=>b.load(`tinymce.html-i18n.help-keynav.${t}`,`${e}/js/i18n/keynav/${t}.js`),C=e=>A(e,f.getCode()).catch((()=>A(e,"en")));var w=tinymce.util.Tools.resolve("tinymce.Env");const S=e=>{const t=w.os.isMacOS()||w.os.isiOS(),n=t?{alt:"&#x2325;",ctrl:"&#x2303;",shift:"&#x21E7;",meta:"&#x2318;",access:"&#x2303;&#x2325;"}:{meta:"Ctrl ",access:"Shift + Alt "},a=e.split("+"),r=y(a,(e=>{const t=e.toLowerCase().trim();return v(n,t)?n[t]:e}));return t?r.join("").replace(/\s/,""):r.join("+")},_=[{shortcuts:["Meta + B"],action:"Bold"},{shortcuts:["Meta + I"],action:"Italic"},{shortcuts:["Meta + U"],action:"Underline"},{shortcuts:["Meta + A"],action:"Select all"},{shortcuts:["Meta + Y","Meta + Shift + Z"],action:"Redo"},{shortcuts:["Meta + Z"],action:"Undo"},{shortcuts:["Access + 1"],action:"Heading 1"},{shortcuts:["Access + 2"],action:"Heading 2"},{shortcuts:["Access + 3"],action:"Heading 3"},{shortcuts:["Access + 4"],action:"Heading 4"},{shortcuts:["Access + 5"],action:"Heading 5"},{shortcuts:["Access + 6"],action:"Heading 6"},{shortcuts:["Access + 7"],action:"Paragraph"},{shortcuts:["Access + 8"],action:"Div"},{shortcuts:["Access + 9"],action:"Address"},{shortcuts:["Alt + 0"],action:"Open help dialog"},{shortcuts:["Alt + F9"],action:"Focus to menubar"},{shortcuts:["Alt + F10"],action:"Focus to toolbar"},{shortcuts:["Alt + F11"],action:"Focus to element path"},{shortcuts:["Ctrl + F9"],action:"Focus to contextual toolbar"},{shortcuts:["Shift + Enter"],action:"Open popup menu for split buttons"},{shortcuts:["Meta + K"],action:"Insert link (if link plugin activated)"},{shortcuts:["Meta + S"],action:"Save (if save plugin activated)"},{shortcuts:["Meta + F"],action:"Find (if searchreplace plugin activated)"},{shortcuts:["Meta + Shift + F"],action:"Switch to or from fullscreen mode"}],M=()=>({name:"shortcuts",title:"Handy Shortcuts",items:[{type:"table",header:["Action","Shortcut"],cells:y(_,(e=>{const t=y(e.shortcuts,S).join(" or ");return[e.action,t]}))}]}),T=y([{key:"accordion",name:"Accordion"},{key:"advlist",name:"Advanced List"},{key:"anchor",name:"Anchor"},{key:"autolink",name:"Autolink"},{key:"autoresize",name:"Autoresize"},{key:"autosave",name:"Autosave"},{key:"charmap",name:"Character Map"},{key:"code",name:"Code"},{key:"codesample",name:"Code Sample"},{key:"colorpicker",name:"Color Picker"},{key:"directionality",name:"Directionality"},{key:"emoticons",name:"Emoticons"},{key:"fullscreen",name:"Full Screen"},{key:"help",name:"Help"},{key:"image",name:"Image"},{key:"importcss",name:"Import CSS"},{key:"insertdatetime",name:"Insert Date/Time"},{key:"link",name:"Link"},{key:"lists",name:"Lists"},{key:"media",name:"Media"},{key:"nonbreaking",name:"Nonbreaking"},{key:"pagebreak",name:"Page Break"},{key:"preview",name:"Preview"},{key:"quickbars",name:"Quick Toolbars"},{key:"save",name:"Save"},{key:"searchreplace",name:"Search and Replace"},{key:"table",name:"Table"},{key:"template",name:"Template"},{key:"textcolor",name:"Text Color"},{key:"visualblocks",name:"Visual Blocks"},{key:"visualchars",name:"Visual Characters"},{key:"wordcount",name:"Word Count"},{key:"a11ychecker",name:"Accessibility Checker",type:"premium"},{key:"advcode",name:"Advanced Code Editor",type:"premium"},{key:"advtable",name:"Advanced Tables",type:"premium"},{key:"advtemplate",name:"Advanced Templates",type:"premium",slug:"advanced-templates"},{key:"ai",name:"AI Assistant",type:"premium"},{key:"casechange",name:"Case Change",type:"premium"},{key:"checklist",name:"Checklist",type:"premium"},{key:"editimage",name:"Enhanced Image Editing",type:"premium"},{key:"footnotes",name:"Footnotes",type:"premium"},{key:"typography",name:"Advanced Typography",type:"premium",slug:"advanced-typography"},{key:"mediaembed",name:"Enhanced Media Embed",type:"premium",slug:"introduction-to-mediaembed"},{key:"export",name:"Export",type:"premium"},{key:"formatpainter",name:"Format Painter",type:"premium"},{key:"inlinecss",name:"Inline CSS",type:"premium",slug:"inline-css"},{key:"linkchecker",name:"Link Checker",type:"premium"},{key:"mentions",name:"Mentions",type:"premium"},{key:"mergetags",name:"Merge Tags",type:"premium"},{key:"pageembed",name:"Page Embed",type:"premium"},{key:"permanentpen",name:"Permanent Pen",type:"premium"},{key:"powerpaste",name:"PowerPaste",type:"premium",slug:"introduction-to-powerpaste"},{key:"rtc",name:"Real-Time Collaboration",type:"premium",slug:"rtc-introduction"},{key:"tinymcespellchecker",name:"Spell Checker Pro",type:"premium",slug:"introduction-to-tiny-spellchecker"},{key:"autocorrect",name:"Spelling Autocorrect",type:"premium"},{key:"tableofcontents",name:"Table of Contents",type:"premium"},{key:"tinycomments",name:"Tiny Comments",type:"premium",slug:"introduction-to-tiny-comments"},{key:"tinydrive",name:"Tiny Drive",type:"premium",slug:"tinydrive-introduction"}],(e=>({...e,type:e.type||"opensource",slug:e.slug||e.key}))),x=e=>{const t=e=>`<a data-alloy-tabstop="true" tabindex="-1" href="${e.url}" target="_blank" rel="noopener">${e.name}</a>`,n=(e,n)=>{return(a=T,r=e=>e.key===n,((e,t,n)=>{for(let a=0,r=e.length;a<r;a++){const r=e[a];if(t(r,a))return m.some(r);if(n(r,a))break}return m.none()})(a,r,c)).fold((()=>((e,n)=>{const a=e.plugins[n].getMetadata;if(l(a)){const e=a();return{name:e.name,html:t(e)}}return{name:n,html:n}})(e,n)),(e=>{const n="premium"===e.type?`${e.name}*`:e.name;return{name:n,html:t({name:n,url:`https://www.tiny.cloud/docs/tinymce/6/${e.slug}/`})}}));var a,r},a=e=>{const t=(e=>{const t=g(e.plugins),n=o(e);return s(n)?t:h(t,(e=>!(((e,t)=>p.call(e,t))(n,e)>-1)))})(e),a=d(y(t,(t=>n(e,t))),((e,t)=>e.name.localeCompare(t.name))),r=y(a,(e=>"<li>"+e.html+"</li>")),i=r.length,l=r.join("");return"<p><b>"+f.translate(["Plugins installed ({0}):",i])+"</b></p><ul>"+l+"</ul>"},r={type:"htmlpanel",presets:"document",html:[(e=>null==e?"":"<div>"+a(e)+"</div>")(e),(()=>{const e=h(T,(({type:e})=>"premium"===e)),t=d(y(e,(e=>e.name)),((e,t)=>e.localeCompare(t))),n=y(t,(e=>`<li>${e}</li>`)).join("");return"<div><p><b>"+f.translate("Premium plugins:")+"</b></p><ul>"+n+'<li class="tox-help__more-link" "><a href="https://www.tiny.cloud/pricing/?utm_campaign=help_dialog_plugin_tab&utm_source=tiny&utm_medium=referral&utm_term=read_more&utm_content=premium_plugin_heading" rel="noopener" target="_blank" data-alloy-tabstop="true" tabindex="-1">'+f.translate("Learn more...")+"</a></li></ul></div>"})()].join("")};return{name:"plugins",title:"Plugins",items:[r]}};var O=tinymce.util.Tools.resolve("tinymce.EditorManager");const P=(e,t,a)=>()=>{(async(e,t,a)=>{const o=M(),s=await(async e=>({name:"keyboardnav",title:"Keyboard Navigation",items:[{type:"htmlpanel",presets:"document",html:await C(e)}]}))(a),l=x(e),c=(()=>{var e,t;const n='<a data-alloy-tabstop="true" tabindex="-1" href="https://www.tiny.cloud/docs/tinymce/6/changelog/?utm_campaign=help_dialog_version_tab&utm_source=tiny&utm_medium=referral" rel="noopener" target="_blank">TinyMCE '+(e=O.majorVersion,t=O.minorVersion,(0===e.indexOf("@")?"X.X.X":e+"."+t)+"</a>");return{name:"versions",title:"Version",items:[{type:"htmlpanel",html:"<p>"+f.translate(["You are using {0}",n])+"</p>",presets:"document"}]}})(),u={[o.name]:o,[s.name]:s,[l.name]:l,[c.name]:c,...t.get()};return m.from(r(e)).fold((()=>(e=>{const t=g(e),n=t.indexOf("versions");return-1!==n&&(t.splice(n,1),t.push("versions")),{tabs:e,names:t}})(u)),(e=>((e,t)=>{const a={},r=y(e,(e=>{var r;if(i(e))return v(t,e)&&(a[e]=t[e]),e;{const t=null!==(r=e.name)&&void 0!==r?r:n("tab-name");return a[t]=e,t}}));return{tabs:a,names:r}})(e,u)))})(e,t,a).then((({tabs:t,names:n})=>{const a={type:"tabpanel",tabs:(e=>{const t=[],n=e=>{t.push(e)};for(let t=0;t<e.length;t++)e[t].each(n);return t})(y(n,(e=>{return v(n=t,a=e)?m.from(n[a]):m.none();var n,a})))};e.windowManager.open({title:"Help",size:"medium",body:a,buttons:[{type:"cancel",name:"close",text:"Close",primary:!0}],initialData:{}})}))};e.add("help",((e,t)=>{const a=(e=>{let t={};return{get:()=>t,set:e=>{t=e}}})(),r=(e=>({addTab:t=>{var a;const r=null!==(a=t.name)&&void 0!==a?a:n("tab-name"),o=e.get();o[r]=t,e.set(o)}}))(a);(e=>{(0,e.options.register)("help_tabs",{processor:"array"})})(e);const o=P(e,a,t);return((e,t)=>{e.ui.registry.addButton("help",{icon:"help",tooltip:"Help",onAction:t}),e.ui.registry.addMenuItem("help",{text:"Help",icon:"help",shortcut:"Alt+0",onAction:t})})(e,o),((e,t)=>{e.addCommand("mceHelp",t)})(e,o),e.shortcuts.add("Alt+0","Open help dialog","mceHelp"),((e,t)=>{e.on("init",(()=>{C(t)}))})(e,t),r}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/quickbars/plugin.min.js000064400000012115151213255160022253 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=t=>e=>typeof e===t,o=("string",t=>"string"===(t=>{const e=typeof t;return null===t?"null":"object"===e&&Array.isArray(t)?"array":"object"===e&&(o=n=t,(r=String).prototype.isPrototypeOf(o)||(null===(i=n.constructor)||void 0===i?void 0:i.name)===r.name)?"string":e;var o,n,r,i})(t));const n=e("boolean"),r=e("function"),i=t=>e=>e.options.get(t),s=i("quickbars_selection_toolbar"),a=i("quickbars_insert_toolbar"),l=i("quickbars_image_toolbar");let c=0;var u=tinymce.util.Tools.resolve("tinymce.util.Delay");const d=t=>{t.ui.registry.addButton("quickimage",{icon:"image",tooltip:"Insert image",onAction:()=>{(t=>new Promise((e=>{let o=!1;const n=document.createElement("input");n.type="file",n.accept="image/*",n.style.position="fixed",n.style.left="0",n.style.top="0",n.style.opacity="0.001",document.body.appendChild(n);const r=t=>{var r;o||(null===(r=n.parentNode)||void 0===r||r.removeChild(n),o=!0,e(t))},i=t=>{r(Array.prototype.slice.call(t.target.files))};n.addEventListener("input",i),n.addEventListener("change",i);const s=e=>{const n=()=>{r([])};o||("focusin"===e.type?u.setEditorTimeout(t,n,1e3):n()),t.off("focusin remove",s)};t.on("focusin remove",s),n.click()})))(t).then((e=>{if(e.length>0){const o=e[0];(t=>new Promise((e=>{const o=new FileReader;o.onloadend=()=>{e(o.result.split(",")[1])},o.readAsDataURL(t)})))(o).then((e=>{((t,e,o)=>{const n=t.editorUpload.blobCache,r=n.create((t=>{const e=(new Date).getTime(),o=Math.floor(1e9*Math.random());return c++,"mceu_"+o+c+String(e)})(),o,e);n.add(r),t.insertContent(t.dom.createHTML("img",{src:r.blobUri()}))})(t,e,o)}))}}))}}),t.ui.registry.addButton("quicktable",{icon:"table",tooltip:"Insert table",onAction:()=>{((t,e,o)=>{t.execCommand("mceInsertTable",!1,{rows:2,columns:2})})(t)}})},m=(!1,()=>false);class g{constructor(t,e){this.tag=t,this.value=e}static some(t){return new g(!0,t)}static none(){return g.singletonNone}fold(t,e){return this.tag?e(this.value):t()}isSome(){return this.tag}isNone(){return!this.tag}map(t){return this.tag?g.some(t(this.value)):g.none()}bind(t){return this.tag?t(this.value):g.none()}exists(t){return this.tag&&t(this.value)}forall(t){return!this.tag||t(this.value)}filter(t){return!this.tag||t(this.value)?this:g.none()}getOr(t){return this.tag?this.value:t}or(t){return this.tag?this:t}getOrThunk(t){return this.tag?this.value:t()}orThunk(t){return this.tag?this:t()}getOrDie(t){if(this.tag)return this.value;throw new Error(null!=t?t:"Called getOrDie on None")}static from(t){return null==t?g.none():g.some(t)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(t){this.tag&&t(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}g.singletonNone=new g(!1),"undefined"!=typeof window?window:Function("return this;")();var h=(t,e,o,n,i)=>t(o,n)?g.some(o):r(i)&&i(o)?g.none():e(o,n,i);const b=t=>{if(null==t)throw new Error("Node cannot be null or undefined");return{dom:t}},p=b,v=(t,e)=>{const o=t.dom;if(1!==o.nodeType)return!1;{const t=o;if(void 0!==t.matches)return t.matches(e);if(void 0!==t.msMatchesSelector)return t.msMatchesSelector(e);if(void 0!==t.webkitMatchesSelector)return t.webkitMatchesSelector(e);if(void 0!==t.mozMatchesSelector)return t.mozMatchesSelector(e);throw new Error("Browser lacks native selectors")}},f=(t,e,o)=>{let n=t.dom;const i=r(o)?o:m;for(;n.parentNode;){n=n.parentNode;const t=p(n);if(e(t))return g.some(t);if(i(t))break}return g.none()},y=(t,e,o)=>f(t,(t=>v(t,e)),o),k=t=>{const e=a(t);e.length>0&&t.ui.registry.addContextToolbar("quickblock",{predicate:e=>{const o=p(e),n=t.schema.getTextBlockElements(),r=e=>e.dom===t.getBody();return!((t,e)=>{const o=t.dom;return!(!o||!o.hasAttribute)&&o.hasAttribute("data-mce-bogus")})(o)&&((t,e,o)=>h(((t,e)=>v(t,e)),y,t,'table,[data-mce-bogus="all"]',o))(o,0,r).fold((()=>((t,e,o)=>((t,e,o)=>h(((t,e)=>e(t)),f,t,e,o))(t,e,o).isSome())(o,(e=>e.dom.nodeName.toLowerCase()in n&&t.dom.isEmpty(e.dom)),r)),m)},items:e,position:"line",scope:"editor"})};t.add("quickbars",(t=>{(t=>{const e=t.options.register,r=t=>e=>{const r=n(e)||o(e);return r?n(e)?{value:e?t:"",valid:r}:{value:e.trim(),valid:r}:{valid:!1,message:"Must be a boolean or string."}},i="bold italic | quicklink h2 h3 blockquote";e("quickbars_selection_toolbar",{processor:r(i),default:i});const s="quickimage quicktable";e("quickbars_insert_toolbar",{processor:r(s),default:s});const a="alignleft aligncenter alignright";e("quickbars_image_toolbar",{processor:r(a),default:a})})(t),d(t),k(t),(t=>{const e=e=>t.dom.isEditable(e),o=t=>{const o="FIGURE"===t.nodeName&&/image/i.test(t.className),n="IMG"===t.nodeName||o,r=(t=>void 0!==t.dom.classList)(i=p(t))&&i.dom.classList.contains("mce-pagebreak");var i;return n&&e(t.parentElement)&&!r},n=l(t);n.length>0&&t.ui.registry.addContextToolbar("imageselection",{predicate:o,items:n,position:"node"});const r=s(t);r.length>0&&t.ui.registry.addContextToolbar("textselection",{predicate:n=>!o(n)&&!t.selection.isCollapsed()&&e(n),items:r,position:"selection",scope:"editor"})})(t)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js000064400000005736151213255160023323 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>t.options.get(e),a=t("insertdatetime_dateformat"),n=t("insertdatetime_timeformat"),r=t("insertdatetime_formats"),s=t("insertdatetime_element"),i="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),o="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),l="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),m="January February March April May June July August September October November December".split(" "),c=(e,t)=>{if((e=""+e).length<t)for(let a=0;a<t-e.length;a++)e="0"+e;return e},d=(e,t,a=new Date)=>(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace("%D","%m/%d/%Y")).replace("%r","%I:%M:%S %p")).replace("%Y",""+a.getFullYear())).replace("%y",""+a.getYear())).replace("%m",c(a.getMonth()+1,2))).replace("%d",c(a.getDate(),2))).replace("%H",""+c(a.getHours(),2))).replace("%M",""+c(a.getMinutes(),2))).replace("%S",""+c(a.getSeconds(),2))).replace("%I",""+((a.getHours()+11)%12+1))).replace("%p",a.getHours()<12?"AM":"PM")).replace("%B",""+e.translate(m[a.getMonth()]))).replace("%b",""+e.translate(l[a.getMonth()]))).replace("%A",""+e.translate(o[a.getDay()]))).replace("%a",""+e.translate(i[a.getDay()]))).replace("%%","%"),u=(e,t)=>{if(s(e)){const a=d(e,t);let n;n=/%[HMSIp]/.test(t)?d(e,"%Y-%m-%dT%H:%M"):d(e,"%Y-%m-%d");const r=e.dom.getParent(e.selection.getStart(),"time");r?((e,t,a,n)=>{const r=e.dom.create("time",{datetime:a},n);e.dom.replace(r,t),e.selection.select(r,!0),e.selection.collapse(!1)})(e,r,n,a):e.insertContent('<time datetime="'+n+'">'+a+"</time>")}else e.insertContent(d(e,t))};var p=tinymce.util.Tools.resolve("tinymce.util.Tools");const g=e=>t=>{const a=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",a),a(),()=>{e.off("NodeChange",a)}};e.add("insertdatetime",(e=>{(e=>{const t=e.options.register;t("insertdatetime_dateformat",{processor:"string",default:e.translate("%Y-%m-%d")}),t("insertdatetime_timeformat",{processor:"string",default:e.translate("%H:%M:%S")}),t("insertdatetime_formats",{processor:"string[]",default:["%H:%M:%S","%Y-%m-%d","%I:%M:%S %p","%D"]}),t("insertdatetime_element",{processor:"boolean",default:!1})})(e),(e=>{e.addCommand("mceInsertDate",((t,n)=>{u(e,null!=n?n:a(e))})),e.addCommand("mceInsertTime",((t,a)=>{u(e,null!=a?a:n(e))}))})(e),(e=>{const t=r(e),a=(e=>{let t=e;return{get:()=>t,set:e=>{t=e}}})((e=>{const t=r(e);return t.length>0?t[0]:n(e)})(e)),s=t=>e.execCommand("mceInsertDate",!1,t);e.ui.registry.addSplitButton("insertdatetime",{icon:"insert-time",tooltip:"Insert date/time",select:e=>e===a.get(),fetch:a=>{a(p.map(t,(t=>({type:"choiceitem",text:d(e,t),value:t}))))},onAction:e=>{s(a.get())},onItemAction:(e,t)=>{a.set(t),s(t)},onSetup:g(e)});const i=e=>()=>{a.set(e),s(e)};e.ui.registry.addNestedMenuItem("insertdatetime",{icon:"insert-time",text:"Date/time",getSubmenuItems:()=>p.map(t,(t=>({type:"menuitem",text:d(e,t),onAction:i(t)}))),onSetup:g(e)})})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/codesample/plugin.min.js000064400000136227151213255160022416 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>!(e=>null==e)(e),n=()=>{};class a{constructor(e,t){this.tag=e,this.value=t}static some(e){return new a(!0,e)}static none(){return a.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?a.some(e(this.value)):a.none()}bind(e){return this.tag?e(this.value):a.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:a.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return t(e)?a.some(e):a.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}a.singletonNone=new a(!1);var s=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils");const r="undefined"!=typeof window?window:Function("return this;")(),i=function(e,t,n){const a=window.Prism;window.Prism={manual:!0};var s=function(e){var t=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,n=0,a={},s={manual:e.Prism&&e.Prism.manual,disableWorkerMessageHandler:e.Prism&&e.Prism.disableWorkerMessageHandler,util:{encode:function e(t){return t instanceof r?new r(t.type,e(t.content),t.alias):Array.isArray(t)?t.map(e):t.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).slice(8,-1)},objId:function(e){return e.__id||Object.defineProperty(e,"__id",{value:++n}),e.__id},clone:function e(t,n){var a,r;switch(n=n||{},s.util.type(t)){case"Object":if(r=s.util.objId(t),n[r])return n[r];for(var i in a={},n[r]=a,t)t.hasOwnProperty(i)&&(a[i]=e(t[i],n));return a;case"Array":return r=s.util.objId(t),n[r]?n[r]:(a=[],n[r]=a,t.forEach((function(t,s){a[s]=e(t,n)})),a);default:return t}},getLanguage:function(e){for(;e;){var n=t.exec(e.className);if(n)return n[1].toLowerCase();e=e.parentElement}return"none"},setLanguage:function(e,n){e.className=e.className.replace(RegExp(t,"gi"),""),e.classList.add("language-"+n)},currentScript:function(){if("undefined"==typeof document)return null;if("currentScript"in document)return document.currentScript;try{throw new Error}catch(a){var e=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(a.stack)||[])[1];if(e){var t=document.getElementsByTagName("script");for(var n in t)if(t[n].src==e)return t[n]}return null}},isActive:function(e,t,n){for(var a="no-"+t;e;){var s=e.classList;if(s.contains(t))return!0;if(s.contains(a))return!1;e=e.parentElement}return!!n}},languages:{plain:a,plaintext:a,text:a,txt:a,extend:function(e,t){var n=s.util.clone(s.languages[e]);for(var a in t)n[a]=t[a];return n},insertBefore:function(e,t,n,a){var r=(a=a||s.languages)[e],i={};for(var o in r)if(r.hasOwnProperty(o)){if(o==t)for(var l in n)n.hasOwnProperty(l)&&(i[l]=n[l]);n.hasOwnProperty(o)||(i[o]=r[o])}var u=a[e];return a[e]=i,s.languages.DFS(s.languages,(function(t,n){n===u&&t!=e&&(this[t]=i)})),i},DFS:function e(t,n,a,r){r=r||{};var i=s.util.objId;for(var o in t)if(t.hasOwnProperty(o)){n.call(t,o,t[o],a||o);var l=t[o],u=s.util.type(l);"Object"!==u||r[i(l)]?"Array"!==u||r[i(l)]||(r[i(l)]=!0,e(l,n,o,r)):(r[i(l)]=!0,e(l,n,null,r))}}},plugins:{},highlightAll:function(e,t){s.highlightAllUnder(document,e,t)},highlightAllUnder:function(e,t,n){var a={callback:n,container:e,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};s.hooks.run("before-highlightall",a),a.elements=Array.prototype.slice.apply(a.container.querySelectorAll(a.selector)),s.hooks.run("before-all-elements-highlight",a);for(var r,i=0;r=a.elements[i++];)s.highlightElement(r,!0===t,a.callback)},highlightElement:function(t,n,a){var r=s.util.getLanguage(t),i=s.languages[r];s.util.setLanguage(t,r);var o=t.parentElement;o&&"pre"===o.nodeName.toLowerCase()&&s.util.setLanguage(o,r);var l={element:t,language:r,grammar:i,code:t.textContent};function u(e){l.highlightedCode=e,s.hooks.run("before-insert",l),l.element.innerHTML=l.highlightedCode,s.hooks.run("after-highlight",l),s.hooks.run("complete",l),a&&a.call(l.element)}if(s.hooks.run("before-sanity-check",l),(o=l.element.parentElement)&&"pre"===o.nodeName.toLowerCase()&&!o.hasAttribute("tabindex")&&o.setAttribute("tabindex","0"),!l.code)return s.hooks.run("complete",l),void(a&&a.call(l.element));if(s.hooks.run("before-highlight",l),l.grammar)if(n&&e.Worker){var c=new Worker(s.filename);c.onmessage=function(e){u(e.data)},c.postMessage(JSON.stringify({language:l.language,code:l.code,immediateClose:!0}))}else u(s.highlight(l.code,l.grammar,l.language));else u(s.util.encode(l.code))},highlight:function(e,t,n){var a={code:e,grammar:t,language:n};if(s.hooks.run("before-tokenize",a),!a.grammar)throw new Error('The language "'+a.language+'" has no grammar.');return a.tokens=s.tokenize(a.code,a.grammar),s.hooks.run("after-tokenize",a),r.stringify(s.util.encode(a.tokens),a.language)},tokenize:function(e,t){var n=t.rest;if(n){for(var a in n)t[a]=n[a];delete t.rest}var s=new l;return u(s,s.head,e),o(e,s,t,s.head,0),function(e){for(var t=[],n=e.head.next;n!==e.tail;)t.push(n.value),n=n.next;return t}(s)},hooks:{all:{},add:function(e,t){var n=s.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=s.hooks.all[e];if(n&&n.length)for(var a,r=0;a=n[r++];)a(t)}},Token:r};function r(e,t,n,a){this.type=e,this.content=t,this.alias=n,this.length=0|(a||"").length}function i(e,t,n,a){e.lastIndex=t;var s=e.exec(n);if(s&&a&&s[1]){var r=s[1].length;s.index+=r,s[0]=s[0].slice(r)}return s}function o(e,t,n,a,l,d){for(var g in n)if(n.hasOwnProperty(g)&&n[g]){var p=n[g];p=Array.isArray(p)?p:[p];for(var b=0;b<p.length;++b){if(d&&d.cause==g+","+b)return;var h=p[b],f=h.inside,m=!!h.lookbehind,y=!!h.greedy,w=h.alias;if(y&&!h.pattern.global){var k=h.pattern.toString().match(/[imsuy]*$/)[0];h.pattern=RegExp(h.pattern.source,k+"g")}for(var v=h.pattern||h,_=a.next,x=l;_!==t.tail&&!(d&&x>=d.reach);x+=_.value.length,_=_.next){var F=_.value;if(t.length>e.length)return;if(!(F instanceof r)){var A,S=1;if(y){if(!(A=i(v,x,e,m))||A.index>=e.length)break;var $=A.index,z=A.index+A[0].length,E=x;for(E+=_.value.length;$>=E;)E+=(_=_.next).value.length;if(x=E-=_.value.length,_.value instanceof r)continue;for(var C=_;C!==t.tail&&(E<z||"string"==typeof C.value);C=C.next)S++,E+=C.value.length;S--,F=e.slice(x,E),A.index-=x}else if(!(A=i(v,0,F,m)))continue;$=A.index;var j=A[0],B=F.slice(0,$),T=F.slice($+j.length),O=x+F.length;d&&O>d.reach&&(d.reach=O);var P=_.prev;if(B&&(P=u(t,P,B),x+=B.length),c(t,P,S),_=u(t,P,new r(g,f?s.tokenize(j,f):j,w,j)),T&&u(t,_,T),S>1){var N={cause:g+","+b,reach:O};o(e,t,n,_.prev,x,N),d&&N.reach>d.reach&&(d.reach=N.reach)}}}}}}function l(){var e={value:null,prev:null,next:null},t={value:null,prev:e,next:null};e.next=t,this.head=e,this.tail=t,this.length=0}function u(e,t,n){var a=t.next,s={value:n,prev:t,next:a};return t.next=s,a.prev=s,e.length++,s}function c(e,t,n){for(var a=t.next,s=0;s<n&&a!==e.tail;s++)a=a.next;t.next=a,a.prev=t,e.length-=s}if(e.Prism=s,r.stringify=function e(t,n){if("string"==typeof t)return t;if(Array.isArray(t)){var a="";return t.forEach((function(t){a+=e(t,n)})),a}var r={type:t.type,content:e(t.content,n),tag:"span",classes:["token",t.type],attributes:{},language:n},i=t.alias;i&&(Array.isArray(i)?Array.prototype.push.apply(r.classes,i):r.classes.push(i)),s.hooks.run("wrap",r);var o="";for(var l in r.attributes)o+=" "+l+'="'+(r.attributes[l]||"").replace(/"/g,"&quot;")+'"';return"<"+r.tag+' class="'+r.classes.join(" ")+'"'+o+">"+r.content+"</"+r.tag+">"},!e.document)return e.addEventListener?(s.disableWorkerMessageHandler||e.addEventListener("message",(function(t){var n=JSON.parse(t.data),a=n.language,r=n.code,i=n.immediateClose;e.postMessage(s.highlight(r,s.languages[a],a)),i&&e.close()}),!1),s):s;var d=s.util.currentScript();function g(){s.manual||s.highlightAll()}if(d&&(s.filename=d.src,d.hasAttribute("data-manual")&&(s.manual=!0)),!s.manual){var p=document.readyState;"loading"===p||"interactive"===p&&d&&d.defer?document.addEventListener("DOMContentLoaded",g):window.requestAnimationFrame?window.requestAnimationFrame(g):window.setTimeout(g,16)}return s}("undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{});return s.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},function(e){function t(e,t){return"___"+e.toUpperCase()+t+"___"}Object.defineProperties(e.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,a,s,r){if(n.language===a){var i=n.tokenStack=[];n.code=n.code.replace(s,(function(e){if("function"==typeof r&&!r(e))return e;for(var s,o=i.length;-1!==n.code.indexOf(s=t(a,o));)++o;return i[o]=e,s})),n.grammar=e.languages.markup}}},tokenizePlaceholders:{value:function(n,a){if(n.language===a&&n.tokenStack){n.grammar=e.languages[a];var s=0,r=Object.keys(n.tokenStack);!function i(o){for(var l=0;l<o.length&&!(s>=r.length);l++){var u=o[l];if("string"==typeof u||u.content&&"string"==typeof u.content){var c=r[s],d=n.tokenStack[c],g="string"==typeof u?u:u.content,p=t(a,c),b=g.indexOf(p);if(b>-1){++s;var h=g.substring(0,b),f=new e.Token(a,e.tokenize(d,n.grammar),"language-"+a,d),m=g.substring(b+p.length),y=[];h&&y.push.apply(y,i([h])),y.push(f),m&&y.push.apply(y,i([m])),"string"==typeof u?o.splice.apply(o,[l,1].concat(y)):u.content=y}}else u.content&&i(u.content)}return o}(n.tokens)}}}})}(s),s.languages.c=s.languages.extend("clike",{comment:{pattern:/\/\/(?:[^\r\n\\]|\\(?:\r\n?|\n|(?![\r\n])))*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},string:{pattern:/"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,greedy:!0},"class-name":{pattern:/(\b(?:enum|struct)\s+(?:__attribute__\s*\(\([\s\S]*?\)\)\s*)?)\w+|\b[a-z]\w*_t\b/,lookbehind:!0},keyword:/\b(?:_Alignas|_Alignof|_Atomic|_Bool|_Complex|_Generic|_Imaginary|_Noreturn|_Static_assert|_Thread_local|__attribute__|asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|inline|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|typeof|union|unsigned|void|volatile|while)\b/,function:/\b[a-z_]\w*(?=\s*\()/i,number:/(?:\b0x(?:[\da-f]+(?:\.[\da-f]*)?|\.[\da-f]+)(?:p[+-]?\d+)?|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?)[ful]{0,4}/i,operator:/>>=?|<<=?|->|([-+&|:])\1|[?:~]|[-+*/%&|^!=<>]=?/}),s.languages.insertBefore("c","string",{char:{pattern:/'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n]){0,32}'/,greedy:!0}}),s.languages.insertBefore("c","string",{macro:{pattern:/(^[\t ]*)#\s*[a-z](?:[^\r\n\\/]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|\\(?:\r\n|[\s\S]))*/im,lookbehind:!0,greedy:!0,alias:"property",inside:{string:[{pattern:/^(#\s*include\s*)<[^>]+>/,lookbehind:!0},s.languages.c.string],char:s.languages.c.char,comment:s.languages.c.comment,"macro-name":[{pattern:/(^#\s*define\s+)\w+\b(?!\()/i,lookbehind:!0},{pattern:/(^#\s*define\s+)\w+\b(?=\()/i,lookbehind:!0,alias:"function"}],directive:{pattern:/^(#\s*)[a-z]+/,lookbehind:!0,alias:"keyword"},"directive-hash":/^#/,punctuation:/##|\\(?=[\r\n])/,expression:{pattern:/\S[\s\S]*/,inside:s.languages.c}}}}),s.languages.insertBefore("c","function",{constant:/\b(?:EOF|NULL|SEEK_CUR|SEEK_END|SEEK_SET|__DATE__|__FILE__|__LINE__|__TIMESTAMP__|__TIME__|__func__|stderr|stdin|stdout)\b/}),delete s.languages.c.boolean,function(e){var t=/\b(?:alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|char8_t|class|co_await|co_return|co_yield|compl|concept|const|const_cast|consteval|constexpr|constinit|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|final|float|for|friend|goto|if|import|inline|int|int16_t|int32_t|int64_t|int8_t|long|module|mutable|namespace|new|noexcept|nullptr|operator|override|private|protected|public|register|reinterpret_cast|requires|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|uint16_t|uint32_t|uint64_t|uint8_t|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,n=/\b(?!<keyword>)\w+(?:\s*\.\s*\w+)*\b/.source.replace(/<keyword>/g,(function(){return t.source}));e.languages.cpp=e.languages.extend("c",{"class-name":[{pattern:RegExp(/(\b(?:class|concept|enum|struct|typename)\s+)(?!<keyword>)\w+/.source.replace(/<keyword>/g,(function(){return t.source}))),lookbehind:!0},/\b[A-Z]\w*(?=\s*::\s*\w+\s*\()/,/\b[A-Z_]\w*(?=\s*::\s*~\w+\s*\()/i,/\b\w+(?=\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>\s*::\s*\w+\s*\()/],keyword:t,number:{pattern:/(?:\b0b[01']+|\b0x(?:[\da-f']+(?:\.[\da-f']*)?|\.[\da-f']+)(?:p[+-]?[\d']+)?|(?:\b[\d']+(?:\.[\d']*)?|\B\.[\d']+)(?:e[+-]?[\d']+)?)[ful]{0,4}/i,greedy:!0},operator:/>>=?|<<=?|->|--|\+\+|&&|\|\||[?:~]|<=>|[-+*/%&|^!=<>]=?|\b(?:and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/,boolean:/\b(?:false|true)\b/}),e.languages.insertBefore("cpp","string",{module:{pattern:RegExp(/(\b(?:import|module)\s+)/.source+"(?:"+/"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|<[^<>\r\n]*>/.source+"|"+/<mod-name>(?:\s*:\s*<mod-name>)?|:\s*<mod-name>/.source.replace(/<mod-name>/g,(function(){return n}))+")"),lookbehind:!0,greedy:!0,inside:{string:/^[<"][\s\S]+/,operator:/:/,punctuation:/\./}},"raw-string":{pattern:/R"([^()\\ ]{0,16})\([\s\S]*?\)\1"/,alias:"string",greedy:!0}}),e.languages.insertBefore("cpp","keyword",{"generic-function":{pattern:/\b(?!operator\b)[a-z_]\w*\s*<(?:[^<>]|<[^<>]*>)*>(?=\s*\()/i,inside:{function:/^\w+/,generic:{pattern:/<[\s\S]+/,alias:"class-name",inside:e.languages.cpp}}}}),e.languages.insertBefore("cpp","operator",{"double-colon":{pattern:/::/,alias:"punctuation"}}),e.languages.insertBefore("cpp","class-name",{"base-clause":{pattern:/(\b(?:class|struct)\s+\w+\s*:\s*)[^;{}"'\s]+(?:\s+[^;{}"'\s]+)*(?=\s*[;{])/,lookbehind:!0,greedy:!0,inside:e.languages.extend("cpp",{})}}),e.languages.insertBefore("inside","double-colon",{"class-name":/\b[a-z_]\w*\b(?!\s*::)/i},e.languages.cpp["base-clause"])}(s),function(e){function t(e,t){return e.replace(/<<(\d+)>>/g,(function(e,n){return"(?:"+t[+n]+")"}))}function n(e,n,a){return RegExp(t(e,n),a||"")}function a(e,t){for(var n=0;n<t;n++)e=e.replace(/<<self>>/g,(function(){return"(?:"+e+")"}));return e.replace(/<<self>>/g,"[^\\s\\S]")}var s="bool byte char decimal double dynamic float int long object sbyte short string uint ulong ushort var void",r="class enum interface record struct",i="add alias and ascending async await by descending from(?=\\s*(?:\\w|$)) get global group into init(?=\\s*;) join let nameof not notnull on or orderby partial remove select set unmanaged value when where with(?=\\s*{)",o="abstract as base break case catch checked const continue default delegate do else event explicit extern finally fixed for foreach goto if implicit in internal is lock namespace new null operator out override params private protected public readonly ref return sealed sizeof stackalloc static switch this throw try typeof unchecked unsafe using virtual volatile while yield";function l(e){return"\\b(?:"+e.trim().replace(/ /g,"|")+")\\b"}var u=l(r),c=RegExp(l(s+" "+r+" "+i+" "+o)),d=l(r+" "+i+" "+o),g=l(s+" "+r+" "+o),p=a(/<(?:[^<>;=+\-*/%&|^]|<<self>>)*>/.source,2),b=a(/\((?:[^()]|<<self>>)*\)/.source,2),h=/@?\b[A-Za-z_]\w*\b/.source,f=t(/<<0>>(?:\s*<<1>>)?/.source,[h,p]),m=t(/(?!<<0>>)<<1>>(?:\s*\.\s*<<1>>)*/.source,[d,f]),y=/\[\s*(?:,\s*)*\]/.source,w=t(/<<0>>(?:\s*(?:\?\s*)?<<1>>)*(?:\s*\?)?/.source,[m,y]),k=t(/[^,()<>[\];=+\-*/%&|^]|<<0>>|<<1>>|<<2>>/.source,[p,b,y]),v=t(/\(<<0>>+(?:,<<0>>+)+\)/.source,[k]),_=t(/(?:<<0>>|<<1>>)(?:\s*(?:\?\s*)?<<2>>)*(?:\s*\?)?/.source,[v,m,y]),x={keyword:c,punctuation:/[<>()?,.:[\]]/},F=/'(?:[^\r\n'\\]|\\.|\\[Uux][\da-fA-F]{1,8})'/.source,A=/"(?:\\.|[^\\"\r\n])*"/.source,S=/@"(?:""|\\[\s\S]|[^\\"])*"(?!")/.source;e.languages.csharp=e.languages.extend("clike",{string:[{pattern:n(/(^|[^$\\])<<0>>/.source,[S]),lookbehind:!0,greedy:!0},{pattern:n(/(^|[^@$\\])<<0>>/.source,[A]),lookbehind:!0,greedy:!0}],"class-name":[{pattern:n(/(\busing\s+static\s+)<<0>>(?=\s*;)/.source,[m]),lookbehind:!0,inside:x},{pattern:n(/(\busing\s+<<0>>\s*=\s*)<<1>>(?=\s*;)/.source,[h,_]),lookbehind:!0,inside:x},{pattern:n(/(\busing\s+)<<0>>(?=\s*=)/.source,[h]),lookbehind:!0},{pattern:n(/(\b<<0>>\s+)<<1>>/.source,[u,f]),lookbehind:!0,inside:x},{pattern:n(/(\bcatch\s*\(\s*)<<0>>/.source,[m]),lookbehind:!0,inside:x},{pattern:n(/(\bwhere\s+)<<0>>/.source,[h]),lookbehind:!0},{pattern:n(/(\b(?:is(?:\s+not)?|as)\s+)<<0>>/.source,[w]),lookbehind:!0,inside:x},{pattern:n(/\b<<0>>(?=\s+(?!<<1>>|with\s*\{)<<2>>(?:\s*[=,;:{)\]]|\s+(?:in|when)\b))/.source,[_,g,h]),inside:x}],keyword:c,number:/(?:\b0(?:x[\da-f_]*[\da-f]|b[01_]*[01])|(?:\B\.\d+(?:_+\d+)*|\b\d+(?:_+\d+)*(?:\.\d+(?:_+\d+)*)?)(?:e[-+]?\d+(?:_+\d+)*)?)(?:[dflmu]|lu|ul)?\b/i,operator:/>>=?|<<=?|[-=]>|([-+&|])\1|~|\?\?=?|[-+*/%&|^!=<>]=?/,punctuation:/\?\.?|::|[{}[\];(),.:]/}),e.languages.insertBefore("csharp","number",{range:{pattern:/\.\./,alias:"operator"}}),e.languages.insertBefore("csharp","punctuation",{"named-parameter":{pattern:n(/([(,]\s*)<<0>>(?=\s*:)/.source,[h]),lookbehind:!0,alias:"punctuation"}}),e.languages.insertBefore("csharp","class-name",{namespace:{pattern:n(/(\b(?:namespace|using)\s+)<<0>>(?:\s*\.\s*<<0>>)*(?=\s*[;{])/.source,[h]),lookbehind:!0,inside:{punctuation:/\./}},"type-expression":{pattern:n(/(\b(?:default|sizeof|typeof)\s*\(\s*(?!\s))(?:[^()\s]|\s(?!\s)|<<0>>)*(?=\s*\))/.source,[b]),lookbehind:!0,alias:"class-name",inside:x},"return-type":{pattern:n(/<<0>>(?=\s+(?:<<1>>\s*(?:=>|[({]|\.\s*this\s*\[)|this\s*\[))/.source,[_,m]),inside:x,alias:"class-name"},"constructor-invocation":{pattern:n(/(\bnew\s+)<<0>>(?=\s*[[({])/.source,[_]),lookbehind:!0,inside:x,alias:"class-name"},"generic-method":{pattern:n(/<<0>>\s*<<1>>(?=\s*\()/.source,[h,p]),inside:{function:n(/^<<0>>/.source,[h]),generic:{pattern:RegExp(p),alias:"class-name",inside:x}}},"type-list":{pattern:n(/\b((?:<<0>>\s+<<1>>|record\s+<<1>>\s*<<5>>|where\s+<<2>>)\s*:\s*)(?:<<3>>|<<4>>|<<1>>\s*<<5>>|<<6>>)(?:\s*,\s*(?:<<3>>|<<4>>|<<6>>))*(?=\s*(?:where|[{;]|=>|$))/.source,[u,f,h,_,c.source,b,/\bnew\s*\(\s*\)/.source]),lookbehind:!0,inside:{"record-arguments":{pattern:n(/(^(?!new\s*\()<<0>>\s*)<<1>>/.source,[f,b]),lookbehind:!0,greedy:!0,inside:e.languages.csharp},keyword:c,"class-name":{pattern:RegExp(_),greedy:!0,inside:x},punctuation:/[,()]/}},preprocessor:{pattern:/(^[\t ]*)#.*/m,lookbehind:!0,alias:"property",inside:{directive:{pattern:/(#)\b(?:define|elif|else|endif|endregion|error|if|line|nullable|pragma|region|undef|warning)\b/,lookbehind:!0,alias:"keyword"}}}});var $=A+"|"+F,z=t(/\/(?![*/])|\/\/[^\r\n]*[\r\n]|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>/.source,[$]),E=a(t(/[^"'/()]|<<0>>|\(<<self>>*\)/.source,[z]),2),C=/\b(?:assembly|event|field|method|module|param|property|return|type)\b/.source,j=t(/<<0>>(?:\s*\(<<1>>*\))?/.source,[m,E]);e.languages.insertBefore("csharp","class-name",{attribute:{pattern:n(/((?:^|[^\s\w>)?])\s*\[\s*)(?:<<0>>\s*:\s*)?<<1>>(?:\s*,\s*<<1>>)*(?=\s*\])/.source,[C,j]),lookbehind:!0,greedy:!0,inside:{target:{pattern:n(/^<<0>>(?=\s*:)/.source,[C]),alias:"keyword"},"attribute-arguments":{pattern:n(/\(<<0>>*\)/.source,[E]),inside:e.languages.csharp},"class-name":{pattern:RegExp(m),inside:{punctuation:/\./}},punctuation:/[:,]/}}});var B=/:[^}\r\n]+/.source,T=a(t(/[^"'/()]|<<0>>|\(<<self>>*\)/.source,[z]),2),O=t(/\{(?!\{)(?:(?![}:])<<0>>)*<<1>>?\}/.source,[T,B]),P=a(t(/[^"'/()]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>|\(<<self>>*\)/.source,[$]),2),N=t(/\{(?!\{)(?:(?![}:])<<0>>)*<<1>>?\}/.source,[P,B]);function R(t,a){return{interpolation:{pattern:n(/((?:^|[^{])(?:\{\{)*)<<0>>/.source,[t]),lookbehind:!0,inside:{"format-string":{pattern:n(/(^\{(?:(?![}:])<<0>>)*)<<1>>(?=\}$)/.source,[a,B]),lookbehind:!0,inside:{punctuation:/^:/}},punctuation:/^\{|\}$/,expression:{pattern:/[\s\S]+/,alias:"language-csharp",inside:e.languages.csharp}}},string:/[\s\S]+/}}e.languages.insertBefore("csharp","string",{"interpolation-string":[{pattern:n(/(^|[^\\])(?:\$@|@\$)"(?:""|\\[\s\S]|\{\{|<<0>>|[^\\{"])*"/.source,[O]),lookbehind:!0,greedy:!0,inside:R(O,T)},{pattern:n(/(^|[^@\\])\$"(?:\\.|\{\{|<<0>>|[^\\"{])*"/.source,[N]),lookbehind:!0,greedy:!0,inside:R(N,P)}],char:{pattern:RegExp(F),greedy:!0}}),e.languages.dotnet=e.languages.cs=e.languages.csharp}(s),function(e){var t=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:RegExp("@[\\w-](?:"+/[^;{\s"']|\s+(?!\s)/.source+"|"+t.source+")*?"+/(?:;|(?=\s*\{))/.source),inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+t.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+t.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+t.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:t,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined("style","css"),n.tag.addAttribute("style","css"))}(s),function(e){var t=/\b(?:abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|exports|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|module|native|new|non-sealed|null|open|opens|package|permits|private|protected|provides|public|record(?!\s*[(){}[\]<>=%~.:,;?+\-*/&|^])|requires|return|sealed|short|static|strictfp|super|switch|synchronized|this|throw|throws|to|transient|transitive|try|uses|var|void|volatile|while|with|yield)\b/,n=/(?:[a-z]\w*\s*\.\s*)*(?:[A-Z]\w*\s*\.\s*)*/.source,a={pattern:RegExp(/(^|[^\w.])/.source+n+/[A-Z](?:[\d_A-Z]*[a-z]\w*)?\b/.source),lookbehind:!0,inside:{namespace:{pattern:/^[a-z]\w*(?:\s*\.\s*[a-z]\w*)*(?:\s*\.)?/,inside:{punctuation:/\./}},punctuation:/\./}};e.languages.java=e.languages.extend("clike",{string:{pattern:/(^|[^\\])"(?:\\.|[^"\\\r\n])*"/,lookbehind:!0,greedy:!0},"class-name":[a,{pattern:RegExp(/(^|[^\w.])/.source+n+/[A-Z]\w*(?=\s+\w+\s*[;,=()]|\s*(?:\[[\s,]*\]\s*)?::\s*new\b)/.source),lookbehind:!0,inside:a.inside},{pattern:RegExp(/(\b(?:class|enum|extends|implements|instanceof|interface|new|record|throws)\s+)/.source+n+/[A-Z]\w*\b/.source),lookbehind:!0,inside:a.inside}],keyword:t,function:[e.languages.clike.function,{pattern:/(::\s*)[a-z_]\w*/,lookbehind:!0}],number:/\b0b[01][01_]*L?\b|\b0x(?:\.[\da-f_p+-]+|[\da-f_]+(?:\.[\da-f_p+-]+)?)\b|(?:\b\d[\d_]*(?:\.[\d_]*)?|\B\.\d[\d_]*)(?:e[+-]?\d[\d_]*)?[dfl]?/i,operator:{pattern:/(^|[^.])(?:<<=?|>>>?=?|->|--|\+\+|&&|\|\||::|[?:~]|[-+*/%&|^!=<>]=?)/m,lookbehind:!0},constant:/\b[A-Z][A-Z_\d]+\b/}),e.languages.insertBefore("java","string",{"triple-quoted-string":{pattern:/"""[ \t]*[\r\n](?:(?:"|"")?(?:\\.|[^"\\]))*"""/,greedy:!0,alias:"string"},char:{pattern:/'(?:\\.|[^'\\\r\n]){1,6}'/,greedy:!0}}),e.languages.insertBefore("java","class-name",{annotation:{pattern:/(^|[^.])@\w+(?:\s*\.\s*\w+)*/,lookbehind:!0,alias:"punctuation"},generics:{pattern:/<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&))*>)*>)*>)*>/,inside:{"class-name":a,keyword:t,punctuation:/[<>(),.:]/,operator:/[?&|]/}},import:[{pattern:RegExp(/(\bimport\s+)/.source+n+/(?:[A-Z]\w*|\*)(?=\s*;)/.source),lookbehind:!0,inside:{namespace:a.inside.namespace,punctuation:/\./,operator:/\*/,"class-name":/\w+/}},{pattern:RegExp(/(\bimport\s+static\s+)/.source+n+/(?:\w+|\*)(?=\s*;)/.source),lookbehind:!0,alias:"static",inside:{namespace:a.inside.namespace,static:/\b\w+$/,punctuation:/\./,operator:/\*/,"class-name":/\w+/}}],namespace:{pattern:RegExp(/(\b(?:exports|import(?:\s+static)?|module|open|opens|package|provides|requires|to|transitive|uses|with)\s+)(?!<keyword>)[a-z]\w*(?:\.[a-z]\w*)*\.?/.source.replace(/<keyword>/g,(function(){return t.source}))),lookbehind:!0,inside:{punctuation:/\./}}})}(s),s.languages.javascript=s.languages.extend("clike",{"class-name":[s.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|"+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),s.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,s.languages.insertBefore("javascript","keyword",{regex:{pattern:RegExp(/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)/.source+/\//.source+"(?:"+/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}/.source+"|"+/(?:\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.)*\])*\])*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}v[dgimyus]{0,7}/.source+")"+/(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/.source),lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:s.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:s.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:s.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:s.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:s.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),s.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:s.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),s.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),s.languages.markup&&(s.languages.markup.tag.addInlined("script","javascript"),s.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),s.languages.js=s.languages.javascript,s.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},s.languages.markup.tag.inside["attr-value"].inside.entity=s.languages.markup.entity,s.languages.markup.doctype.inside["internal-subset"].inside=s.languages.markup,s.hooks.add("wrap",(function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&amp;/,"&"))})),Object.defineProperty(s.languages.markup.tag,"addInlined",{value:function(e,t){var n={};n["language-"+t]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:s.languages[t]},n.cdata=/^<!\[CDATA\[|\]\]>$/i;var a={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:n}};a["language-"+t]={pattern:/[\s\S]+/,inside:s.languages[t]};var r={};r[e]={pattern:RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g,(function(){return e})),"i"),lookbehind:!0,greedy:!0,inside:a},s.languages.insertBefore("markup","cdata",r)}}),Object.defineProperty(s.languages.markup.tag,"addAttribute",{value:function(e,t){s.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+e+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[t,"language-"+t],inside:s.languages[t]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),s.languages.html=s.languages.markup,s.languages.mathml=s.languages.markup,s.languages.svg=s.languages.markup,s.languages.xml=s.languages.extend("markup",{}),s.languages.ssml=s.languages.xml,s.languages.atom=s.languages.xml,s.languages.rss=s.languages.xml,function(e){var t=/\/\*[\s\S]*?\*\/|\/\/.*|#(?!\[).*/,n=[{pattern:/\b(?:false|true)\b/i,alias:"boolean"},{pattern:/(::\s*)\b[a-z_]\w*\b(?!\s*\()/i,greedy:!0,lookbehind:!0},{pattern:/(\b(?:case|const)\s+)\b[a-z_]\w*(?=\s*[;=])/i,greedy:!0,lookbehind:!0},/\b(?:null)\b/i,/\b[A-Z_][A-Z0-9_]*\b(?!\s*\()/],a=/\b0b[01]+(?:_[01]+)*\b|\b0o[0-7]+(?:_[0-7]+)*\b|\b0x[\da-f]+(?:_[\da-f]+)*\b|(?:\b\d+(?:_\d+)*\.?(?:\d+(?:_\d+)*)?|\B\.\d+)(?:e[+-]?\d+)?/i,s=/<?=>|\?\?=?|\.{3}|\??->|[!=]=?=?|::|\*\*=?|--|\+\+|&&|\|\||<<|>>|[?~]|[/^|%*&<>.+-]=?/,r=/[{}\[\](),:;]/;e.languages.php={delimiter:{pattern:/\?>$|^<\?(?:php(?=\s)|=)?/i,alias:"important"},comment:t,variable:/\$+(?:\w+\b|(?=\{))/,package:{pattern:/(namespace\s+|use\s+(?:function\s+)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,lookbehind:!0,inside:{punctuation:/\\/}},"class-name-definition":{pattern:/(\b(?:class|enum|interface|trait)\s+)\b[a-z_]\w*(?!\\)\b/i,lookbehind:!0,alias:"class-name"},"function-definition":{pattern:/(\bfunction\s+)[a-z_]\w*(?=\s*\()/i,lookbehind:!0,alias:"function"},keyword:[{pattern:/(\(\s*)\b(?:array|bool|boolean|float|int|integer|object|string)\b(?=\s*\))/i,alias:"type-casting",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|object|self|static|string)\b(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|never|object|self|static|string|void)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/\b(?:array(?!\s*\()|bool|float|int|iterable|mixed|object|string|void)\b/i,alias:"type-declaration",greedy:!0},{pattern:/(\|\s*)(?:false|null)\b|\b(?:false|null)(?=\s*\|)/i,alias:"type-declaration",greedy:!0,lookbehind:!0},{pattern:/\b(?:parent|self|static)(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(\byield\s+)from\b/i,lookbehind:!0},/\bclass\b/i,{pattern:/((?:^|[^\s>:]|(?:^|[^-])>|(?:^|[^:]):)\s*)\b(?:abstract|and|array|as|break|callable|case|catch|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|enum|eval|exit|extends|final|finally|fn|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|match|namespace|never|new|or|parent|print|private|protected|public|readonly|require|require_once|return|self|static|switch|throw|trait|try|unset|use|var|while|xor|yield|__halt_compiler)\b/i,lookbehind:!0}],"argument-name":{pattern:/([(,]\s*)\b[a-z_]\w*(?=\s*:(?!:))/i,lookbehind:!0},"class-name":[{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self|\s+static))\s+|\bcatch\s*\()\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/(\|\s*)\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/\b[a-z_]\w*(?!\\)\b(?=\s*\|)/i,greedy:!0},{pattern:/(\|\s*)(?:\\?\b[a-z_]\w*)+\b/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(?:\\?\b[a-z_]\w*)+\b(?=\s*\|)/i,alias:"class-name-fully-qualified",greedy:!0,inside:{punctuation:/\\/}},{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self\b|\s+static\b))\s+|\bcatch\s*\()(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*\$)/i,alias:"type-declaration",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-declaration"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*::)/i,alias:["class-name-fully-qualified","static-context"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/([(,?]\s*)[a-z_]\w*(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-hint"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b[a-z_]\w*(?!\\)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:["class-name-fully-qualified","return-type"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,function:{pattern:/(^|[^\\\w])\\?[a-z_](?:[\w\\]*\w)?(?=\s*\()/i,lookbehind:!0,inside:{punctuation:/\\/}},property:{pattern:/(->\s*)\w+/,lookbehind:!0},number:a,operator:s,punctuation:r};var i={pattern:/\{\$(?:\{(?:\{[^{}]+\}|[^{}]+)\}|[^{}])+\}|(^|[^\\{])\$+(?:\w+(?:\[[^\r\n\[\]]+\]|->\w+)?)/,lookbehind:!0,inside:e.languages.php},o=[{pattern:/<<<'([^']+)'[\r\n](?:.*[\r\n])*?\1;/,alias:"nowdoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},{pattern:/<<<(?:"([^"]+)"[\r\n](?:.*[\r\n])*?\1;|([a-z_]\w*)[\r\n](?:.*[\r\n])*?\2;)/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:i}},{pattern:/`(?:\\[\s\S]|[^\\`])*`/,alias:"backtick-quoted-string",greedy:!0},{pattern:/'(?:\\[\s\S]|[^\\'])*'/,alias:"single-quoted-string",greedy:!0},{pattern:/"(?:\\[\s\S]|[^\\"])*"/,alias:"double-quoted-string",greedy:!0,inside:{interpolation:i}}];e.languages.insertBefore("php","variable",{string:o,attribute:{pattern:/#\[(?:[^"'\/#]|\/(?![*/])|\/\/.*$|#(?!\[).*$|\/\*(?:[^*]|\*(?!\/))*\*\/|"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*')+\](?=\s*[a-z$#])/im,greedy:!0,inside:{"attribute-content":{pattern:/^(#\[)[\s\S]+(?=\]$)/,lookbehind:!0,inside:{comment:t,string:o,"attribute-class-name":[{pattern:/([^:]|^)\b[a-z_]\w*(?!\\)\b/i,alias:"class-name",greedy:!0,lookbehind:!0},{pattern:/([^:]|^)(?:\\?\b[a-z_]\w*)+/i,alias:["class-name","class-name-fully-qualified"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,number:a,operator:s,punctuation:r}},delimiter:{pattern:/^#\[|\]$/,alias:"punctuation"}}}}),e.hooks.add("before-tokenize",(function(t){/<\?/.test(t.code)&&e.languages["markup-templating"].buildPlaceholders(t,"php",/<\?(?:[^"'/#]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|(?:\/\/|#(?!\[))(?:[^?\n\r]|\?(?!>))*(?=$|\?>|[\r\n])|#\[|\/\*(?:[^*]|\*(?!\/))*(?:\*\/|$))*?(?:\?>|$)/g)})),e.hooks.add("after-tokenize",(function(t){e.languages["markup-templating"].tokenizePlaceholders(t,"php")}))}(s),s.languages.python={comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0,greedy:!0},"string-interpolation":{pattern:/(?:f|fr|rf)(?:("""|''')[\s\S]*?\1|("|')(?:\\.|(?!\2)[^\\\r\n])*\2)/i,greedy:!0,inside:{interpolation:{pattern:/((?:^|[^{])(?:\{\{)*)\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}])+\})+\})+\}/,lookbehind:!0,inside:{"format-spec":{pattern:/(:)[^:(){}]+(?=\}$)/,lookbehind:!0},"conversion-option":{pattern:/![sra](?=[:}]$)/,alias:"punctuation"},rest:null}},string:/[\s\S]+/}},"triple-quoted-string":{pattern:/(?:[rub]|br|rb)?("""|''')[\s\S]*?\1/i,greedy:!0,alias:"string"},string:{pattern:/(?:[rub]|br|rb)?("|')(?:\\.|(?!\1)[^\\\r\n])*\1/i,greedy:!0},function:{pattern:/((?:^|\s)def[ \t]+)[a-zA-Z_]\w*(?=\s*\()/g,lookbehind:!0},"class-name":{pattern:/(\bclass\s+)\w+/i,lookbehind:!0},decorator:{pattern:/(^[\t ]*)@\w+(?:\.\w+)*/m,lookbehind:!0,alias:["annotation","punctuation"],inside:{punctuation:/\./}},keyword:/\b(?:_(?=\s*:)|and|as|assert|async|await|break|case|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,builtin:/\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:False|None|True)\b/,number:/\b0(?:b(?:_?[01])+|o(?:_?[0-7])+|x(?:_?[a-f0-9])+)\b|(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)(?:e[+-]?\d+(?:_\d+)*)?j?(?!\w)/i,operator:/[-+%=]=?|!=|:=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]/,punctuation:/[{}[\];(),.:]/},s.languages.python["string-interpolation"].inside.interpolation.inside.rest=s.languages.python,s.languages.py=s.languages.python,function(e){e.languages.ruby=e.languages.extend("clike",{comment:{pattern:/#.*|^=begin\s[\s\S]*?^=end/m,greedy:!0},"class-name":{pattern:/(\b(?:class|module)\s+|\bcatch\s+\()[\w.\\]+|\b[A-Z_]\w*(?=\s*\.\s*new\b)/,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:BEGIN|END|alias|and|begin|break|case|class|def|define_method|defined|do|each|else|elsif|end|ensure|extend|for|if|in|include|module|new|next|nil|not|or|prepend|private|protected|public|raise|redo|require|rescue|retry|return|self|super|then|throw|undef|unless|until|when|while|yield)\b/,operator:/\.{2,3}|&\.|===|<?=>|[!=]?~|(?:&&|\|\||<<|>>|\*\*|[+\-*/%<>!^&|=])=?|[?:]/,punctuation:/[(){}[\].,;]/}),e.languages.insertBefore("ruby","operator",{"double-colon":{pattern:/::/,alias:"punctuation"}});var t={pattern:/((?:^|[^\\])(?:\\{2})*)#\{(?:[^{}]|\{[^{}]*\})*\}/,lookbehind:!0,inside:{content:{pattern:/^(#\{)[\s\S]+(?=\}$)/,lookbehind:!0,inside:e.languages.ruby},delimiter:{pattern:/^#\{|\}$/,alias:"punctuation"}}};delete e.languages.ruby.function;var n="(?:"+[/([^a-zA-Z0-9\s{(\[<=])(?:(?!\1)[^\\]|\\[\s\S])*\1/.source,/\((?:[^()\\]|\\[\s\S]|\((?:[^()\\]|\\[\s\S])*\))*\)/.source,/\{(?:[^{}\\]|\\[\s\S]|\{(?:[^{}\\]|\\[\s\S])*\})*\}/.source,/\[(?:[^\[\]\\]|\\[\s\S]|\[(?:[^\[\]\\]|\\[\s\S])*\])*\]/.source,/<(?:[^<>\\]|\\[\s\S]|<(?:[^<>\\]|\\[\s\S])*>)*>/.source].join("|")+")",a=/(?:"(?:\\.|[^"\\\r\n])*"|(?:\b[a-zA-Z_]\w*|[^\s\0-\x7F]+)[?!]?|\$.)/.source;e.languages.insertBefore("ruby","keyword",{"regex-literal":[{pattern:RegExp(/%r/.source+n+/[egimnosux]{0,6}/.source),greedy:!0,inside:{interpolation:t,regex:/[\s\S]+/}},{pattern:/(^|[^/])\/(?!\/)(?:\[[^\r\n\]]+\]|\\.|[^[/\\\r\n])+\/[egimnosux]{0,6}(?=\s*(?:$|[\r\n,.;})#]))/,lookbehind:!0,greedy:!0,inside:{interpolation:t,regex:/[\s\S]+/}}],variable:/[@$]+[a-zA-Z_]\w*(?:[?!]|\b)/,symbol:[{pattern:RegExp(/(^|[^:]):/.source+a),lookbehind:!0,greedy:!0},{pattern:RegExp(/([\r\n{(,][ \t]*)/.source+a+/(?=:(?!:))/.source),lookbehind:!0,greedy:!0}],"method-definition":{pattern:/(\bdef\s+)\w+(?:\s*\.\s*\w+)?/,lookbehind:!0,inside:{function:/\b\w+$/,keyword:/^self\b/,"class-name":/^\w+/,punctuation:/\./}}}),e.languages.insertBefore("ruby","string",{"string-literal":[{pattern:RegExp(/%[qQiIwWs]?/.source+n),greedy:!0,inside:{interpolation:t,string:/[\s\S]+/}},{pattern:/("|')(?:#\{[^}]+\}|#(?!\{)|\\(?:\r\n|[\s\S])|(?!\1)[^\\#\r\n])*\1/,greedy:!0,inside:{interpolation:t,string:/[\s\S]+/}},{pattern:/<<[-~]?([a-z_]\w*)[\r\n](?:.*[\r\n])*?[\t ]*\1/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<[-~]?[a-z_]\w*|\b[a-z_]\w*$/i,inside:{symbol:/\b\w+/,punctuation:/^<<[-~]?/}},interpolation:t,string:/[\s\S]+/}},{pattern:/<<[-~]?'([a-z_]\w*)'[\r\n](?:.*[\r\n])*?[\t ]*\1/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<[-~]?'[a-z_]\w*'|\b[a-z_]\w*$/i,inside:{symbol:/\b\w+/,punctuation:/^<<[-~]?'|'$/}},string:/[\s\S]+/}}],"command-literal":[{pattern:RegExp(/%x/.source+n),greedy:!0,inside:{interpolation:t,command:{pattern:/[\s\S]+/,alias:"string"}}},{pattern:/`(?:#\{[^}]+\}|#(?!\{)|\\(?:\r\n|[\s\S])|[^\\`#\r\n])*`/,greedy:!0,inside:{interpolation:t,command:{pattern:/[\s\S]+/,alias:"string"}}}]}),delete e.languages.ruby.string,e.languages.insertBefore("ruby","number",{builtin:/\b(?:Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Fixnum|Float|Hash|IO|Integer|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|Stat|String|Struct|Symbol|TMS|Thread|ThreadGroup|Time|TrueClass)\b/,constant:/\b[A-Z][A-Z0-9_]*(?:[?!]|\b)/}),e.languages.rb=e.languages.ruby}(s),window.Prism=a,s}(),o=e=>t=>t.options.get(e),l=o("codesample_languages"),u=o("codesample_global_prismjs"),c=e=>r.Prism&&u(e)?r.Prism:i,d=e=>t(e)&&"PRE"===e.nodeName&&-1!==e.className.indexOf("language-"),g=e=>{const t=e.selection?e.selection.getNode():null;return d(t)?a.some(t):a.none()},p=e=>{const t=(e=>l(e)||[{text:"HTML/XML",value:"markup"},{text:"JavaScript",value:"javascript"},{text:"CSS",value:"css"},{text:"PHP",value:"php"},{text:"Ruby",value:"ruby"},{text:"Python",value:"python"},{text:"Java",value:"java"},{text:"C",value:"c"},{text:"C#",value:"csharp"},{text:"C++",value:"cpp"}])(e),n=(r=t,((e,t)=>0<e.length?a.some(e[0]):a.none())(r)).fold(("",()=>""),(e=>e.value));var r;const i=((e,t)=>g(e).fold((()=>t),(e=>{const n=e.className.match(/language-(\w+)/);return n?n[1]:t})))(e,n),o=(e=>g(e).bind((e=>a.from(e.textContent))).getOr(""))(e);e.windowManager.open({title:"Insert/Edit Code Sample",size:"large",body:{type:"panel",items:[{type:"listbox",name:"language",label:"Language",items:t},{type:"textarea",name:"code",label:"Code view"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{language:i,code:o},onSubmit:t=>{const n=t.getData();((e,t,n)=>{const a=e.dom;e.undoManager.transact((()=>{const r=g(e);return n=s.DOM.encode(n),r.fold((()=>{e.insertContent('<pre id="__new" class="language-'+t+'">'+n+"</pre>");const s=a.select("#__new")[0];a.setAttrib(s,"id",null),e.selection.select(s)}),(s=>{a.setAttrib(s,"class","language-"+t),s.innerHTML=n,c(e).highlightElement(s),e.selection.select(s)}))}))})(e,n.language,n.code),t.close()}})},b=(h=/^\s+|\s+$/g,e=>e.replace(h,""));var h,f=tinymce.util.Tools.resolve("tinymce.util.Tools");const m=(e,t=n)=>n=>{const a=()=>{n.setEnabled(e.selection.isEditable()),t(n)};return e.on("NodeChange",a),a(),()=>{e.off("NodeChange",a)}};e.add("codesample",(e=>{(e=>{const t=e.options.register;t("codesample_languages",{processor:"object[]"}),t("codesample_global_prismjs",{processor:"boolean",default:!1})})(e),(e=>{e.on("PreProcess",(t=>{const n=e.dom,a=n.select("pre[contenteditable=false]",t.node);f.each(f.grep(a,d),(e=>{const t=e.textContent;let a;for(n.setAttrib(e,"class",b(n.getAttrib(e,"class"))),n.setAttrib(e,"contentEditable",null),n.setAttrib(e,"data-mce-highlighted",null);a=e.firstChild;)e.removeChild(a);n.add(e,"code").textContent=t}))})),e.on("SetContent",(()=>{const t=e.dom,n=f.grep(t.select("pre"),(e=>d(e)&&"true"!==t.getAttrib(e,"data-mce-highlighted")));n.length&&e.undoManager.transact((()=>{f.each(n,(n=>{var a;f.each(t.select("br",n),(n=>{t.replace(e.getDoc().createTextNode("\n"),n)})),n.innerHTML=t.encode(null!==(a=n.textContent)&&void 0!==a?a:""),c(e).highlightElement(n),t.setAttrib(n,"data-mce-highlighted",!0),n.className=b(n.className)}))}))})),e.on("PreInit",(()=>{e.parser.addNodeFilter("pre",(e=>{var t;for(let n=0,a=e.length;n<a;n++){const a=e[n];-1!==(null!==(t=a.attr("class"))&&void 0!==t?t:"").indexOf("language-")&&(a.attr("contenteditable","false"),a.attr("data-mce-highlighted","false"))}}))}))})(e),(e=>{const t=()=>e.execCommand("codesample");e.ui.registry.addToggleButton("codesample",{icon:"code-sample",tooltip:"Insert/edit code sample",onAction:t,onSetup:m(e,(t=>{t.setActive((e=>{const t=e.selection.getStart();return e.dom.is(t,'pre[class*="language-"]')})(e))}))}),e.ui.registry.addMenuItem("codesample",{text:"Code sample...",icon:"code-sample",onAction:t,onSetup:m(e)})})(e),(e=>{e.addCommand("codesample",(()=>{const t=e.selection.getNode();e.selection.isCollapsed()||d(t)?p(e):e.formatter.toggle("code")}))})(e),e.on("dblclick",(t=>{d(t.target)&&p(e)}))}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js000064400000002316151213255170022773 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const s=(t,s,o)=>{t.dom.toggleClass(t.getBody(),"mce-visualblocks"),o.set(!o.get()),((t,s)=>{t.dispatch("VisualBlocks",{state:s})})(t,o.get())},o=("visualblocks_default_state",t=>t.options.get("visualblocks_default_state"));const e=(t,s)=>o=>{o.setActive(s.get());const e=t=>o.setActive(t.state);return t.on("VisualBlocks",e),()=>t.off("VisualBlocks",e)};t.add("visualblocks",((t,l)=>{(t=>{(0,t.options.register)("visualblocks_default_state",{processor:"boolean",default:!1})})(t);const a=(t=>{let s=!1;return{get:()=>s,set:t=>{s=t}}})();((t,o,e)=>{t.addCommand("mceVisualBlocks",(()=>{s(t,0,e)}))})(t,0,a),((t,s)=>{const o=()=>t.execCommand("mceVisualBlocks");t.ui.registry.addToggleButton("visualblocks",{icon:"visualblocks",tooltip:"Show blocks",onAction:o,onSetup:e(t,s)}),t.ui.registry.addToggleMenuItem("visualblocks",{text:"Show blocks",icon:"visualblocks",onAction:o,onSetup:e(t,s)})})(t,a),((t,e,l)=>{t.on("PreviewFormats AfterPreviewFormats",(s=>{l.get()&&t.dom.toggleClass(t.getBody(),"mce-visualblocks","afterpreviewformats"===s.type)})),t.on("init",(()=>{o(t)&&s(t,0,l)}))})(t,0,a)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/template/plugin.min.js000064400000020336151213255170022107 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(a=n=e,(r=String).prototype.isPrototypeOf(a)||(null===(s=n.constructor)||void 0===s?void 0:s.name)===r.name)?"string":t;var a,n,r,s})(t)===e,a=t("string"),n=t("object"),r=t("array"),s=("function",e=>"function"==typeof e);const l=(!1,()=>false);var o=tinymce.util.Tools.resolve("tinymce.util.Tools");const c=e=>t=>t.options.get(e),i=c("template_cdate_classes"),u=c("template_mdate_classes"),m=c("template_selected_content_classes"),p=c("template_preview_replace_values"),d=c("template_replace_values"),h=c("templates"),g=c("template_cdate_format"),v=c("template_mdate_format"),f=c("content_style"),y=c("content_css_cors"),b=c("body_class"),_=(e,t)=>{if((e=""+e).length<t)for(let a=0;a<t-e.length;a++)e="0"+e;return e},M=(e,t,a=new Date)=>{const n="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),r="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),s="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),l="January February March April May June July August September October November December".split(" ");return(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=t.replace("%D","%m/%d/%Y")).replace("%r","%I:%M:%S %p")).replace("%Y",""+a.getFullYear())).replace("%y",""+a.getYear())).replace("%m",_(a.getMonth()+1,2))).replace("%d",_(a.getDate(),2))).replace("%H",""+_(a.getHours(),2))).replace("%M",""+_(a.getMinutes(),2))).replace("%S",""+_(a.getSeconds(),2))).replace("%I",""+((a.getHours()+11)%12+1))).replace("%p",a.getHours()<12?"AM":"PM")).replace("%B",""+e.translate(l[a.getMonth()]))).replace("%b",""+e.translate(s[a.getMonth()]))).replace("%A",""+e.translate(r[a.getDay()]))).replace("%a",""+e.translate(n[a.getDay()]))).replace("%%","%")};class T{constructor(e,t){this.tag=e,this.value=t}static some(e){return new T(!0,e)}static none(){return T.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?T.some(e(this.value)):T.none()}bind(e){return this.tag?e(this.value):T.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:T.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return null==e?T.none():T.some(e)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}T.singletonNone=new T(!1);const S=Object.hasOwnProperty;var x=tinymce.util.Tools.resolve("tinymce.html.Serializer");const C={'"':"&quot;","<":"&lt;",">":"&gt;","&":"&amp;","'":"&#039;"},w=e=>e.replace(/["'<>&]/g,(e=>{return(t=C,a=e,((e,t)=>S.call(e,t))(t,a)?T.from(t[a]):T.none()).getOr(e);var t,a})),O=(e,t,a)=>((a,n)=>{for(let n=0,s=a.length;n<s;n++)if(r=a[n],e.hasClass(t,r))return!0;var r;return!1})(a.split(/\s+/)),A=(e,t)=>x({validate:!0},e.schema).serialize(e.parser.parse(t,{insert:!0})),D=(e,t)=>(o.each(t,((t,a)=>{s(t)&&(t=t(a)),e=e.replace(new RegExp("\\{\\$"+a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")+"\\}","g"),t)})),e),N=(e,t)=>{const a=e.dom,n=d(e);o.each(a.select("*",t),(e=>{o.each(n,((t,n)=>{a.hasClass(e,n)&&s(t)&&t(e)}))}))},I=(e,t,a)=>{const n=e.dom,r=e.selection.getContent();a=D(a,d(e));let s=n.create("div",{},A(e,a));const l=n.select(".mceTmpl",s);l&&l.length>0&&(s=n.create("div"),s.appendChild(l[0].cloneNode(!0))),o.each(n.select("*",s),(t=>{O(n,t,i(e))&&(t.innerHTML=M(e,g(e))),O(n,t,u(e))&&(t.innerHTML=M(e,v(e))),O(n,t,m(e))&&(t.innerHTML=r)})),N(e,s),e.execCommand("mceInsertContent",!1,s.innerHTML),e.addVisual()};var E=tinymce.util.Tools.resolve("tinymce.Env");const k=(e,t)=>{const a=(e,t)=>((e,t,a)=>{for(let n=0,r=e.length;n<r;n++){const r=e[n];if(t(r,n))return T.some(r);if(a(r,n))break}return T.none()})(e,(e=>e.text===t),l),n=t=>{e.windowManager.alert("Could not load the specified template.",(()=>t.focus("template")))},r=e=>e.value.url.fold((()=>Promise.resolve(e.value.content.getOr(""))),(e=>fetch(e).then((e=>e.ok?e.text():Promise.reject())))),s=(e,t)=>(s,l)=>{if("template"===l.name){const l=s.getData().template;a(e,l).each((e=>{s.block("Loading..."),r(e).then((a=>{t(s,e,a)})).catch((()=>{t(s,e,""),s.setEnabled("save",!1),n(s)}))}))}},c=t=>s=>{const l=s.getData();a(t,l.template).each((t=>{r(t).then((t=>{e.execCommand("mceInsertTemplate",!1,t),s.close()})).catch((()=>{s.setEnabled("save",!1),n(s)}))}))};(()=>{if(!t||0===t.length){const t=e.translate("No templates defined.");return e.notificationManager.open({text:t,type:"info"}),T.none()}return T.from(o.map(t,((e,t)=>{const a=e=>void 0!==e.url;return{selected:0===t,text:e.title,value:{url:a(e)?T.from(e.url):T.none(),content:a(e)?T.none():T.from(e.content),description:e.description}}})))})().each((t=>{const a=(e=>((e,t)=>{const a=e.length,n=new Array(a);for(let t=0;t<a;t++){const a=e[t];n[t]={text:(r=a).text,value:r.text}}var r;return n})(e))(t),l=(e,a)=>({title:"Insert Template",size:"large",body:{type:"panel",items:e},initialData:a,buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],onSubmit:c(t),onChange:s(t,i)}),i=(t,n,r)=>{const s=((e,t)=>{var a;let n=A(e,t);if(-1===t.indexOf("<html>")){let t="";const r=null!==(a=f(e))&&void 0!==a?a:"",s=y(e)?' crossorigin="anonymous"':"";o.each(e.contentCSS,(a=>{t+='<link type="text/css" rel="stylesheet" href="'+e.documentBaseURI.toAbsolute(a)+'"'+s+">"})),r&&(t+='<style type="text/css">'+r+"</style>");const l=b(e),c=e.dom.encode,i='<script>document.addEventListener && document.addEventListener("click", function(e) {for (var elm = e.target; elm; elm = elm.parentNode) {if (elm.nodeName === "A" && !('+(E.os.isMacOS()||E.os.isiOS()?"e.metaKey":"e.ctrlKey && !e.altKey")+")) {e.preventDefault();}}}, false);<\/script> ",u=e.getBody().dir,m=u?' dir="'+c(u)+'"':"";n='<!DOCTYPE html><html><head><base href="'+c(e.documentBaseURI.getURI())+'">'+t+i+'</head><body class="'+c(l)+'"'+m+">"+n+"</body></html>"}return D(n,p(e))})(e,r),c=[{type:"listbox",name:"template",label:"Templates",items:a},{type:"htmlpanel",html:`<p aria-live="polite">${w(n.value.description)}</p>`},{label:"Preview",type:"iframe",name:"preview",sandboxed:!1,transparent:!1}],i={template:n.text,preview:s};t.unblock(),t.redial(l(c,i)),t.focus("template")},u=e.windowManager.open(l([],{template:"",preview:""}));u.block("Loading..."),r(t[0]).then((e=>{i(u,t[0],e)})).catch((()=>{i(u,t[0],""),u.setEnabled("save",!1),n(u)}))}))},P=e=>t=>{const a=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",a),a(),()=>{e.off("NodeChange",a)}};e.add("template",(e=>{(e=>{const t=e.options.register;t("template_cdate_classes",{processor:"string",default:"cdate"}),t("template_mdate_classes",{processor:"string",default:"mdate"}),t("template_selected_content_classes",{processor:"string",default:"selcontent"}),t("template_preview_replace_values",{processor:"object"}),t("template_replace_values",{processor:"object"}),t("templates",{processor:e=>a(e)||((e,t)=>{if(r(e)){for(let a=0,n=e.length;a<n;++a)if(!t(e[a]))return!1;return!0}return!1})(e,n)||s(e),default:[]}),t("template_cdate_format",{processor:"string",default:e.translate("%Y-%m-%d")}),t("template_mdate_format",{processor:"string",default:e.translate("%Y-%m-%d")})})(e),(e=>{const t=()=>e.execCommand("mceTemplate");e.ui.registry.addButton("template",{icon:"template",tooltip:"Insert template",onSetup:P(e),onAction:t}),e.ui.registry.addMenuItem("template",{icon:"template",text:"Insert template...",onSetup:P(e),onAction:t})})(e),(e=>{e.addCommand("mceInsertTemplate",function(e,...t){return(...a)=>{const n=t.concat(a);return e.apply(null,n)}}(I,e)),e.addCommand("mceTemplate",((e,t)=>()=>{const n=h(e);s(n)?n(t):a(n)?fetch(n).then((e=>{e.ok&&e.json().then(t)})):t(n)})(e,(e=>t=>{k(e,t)})(e)))})(e),(e=>{e.on("PreProcess",(t=>{const a=e.dom,n=v(e);o.each(a.select("div",t.node),(t=>{a.hasClass(t,"mceTmpl")&&(o.each(a.select("*",t),(t=>{O(a,t,u(e))&&(t.innerHTML=M(e,n))})),N(e,t))}))}))})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/directionality/plugin.min.js000064400000010746151213255170023323 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=t=>e=>typeof e===t,o=t=>"string"===(t=>{const e=typeof t;return null===t?"null":"object"===e&&Array.isArray(t)?"array":"object"===e&&(o=r=t,(n=String).prototype.isPrototypeOf(o)||(null===(i=r.constructor)||void 0===i?void 0:i.name)===n.name)?"string":e;var o,r,n,i})(t),r=e("boolean"),n=t=>!(t=>null==t)(t),i=e("function"),s=e("number"),l=(!1,()=>false);class a{constructor(t,e){this.tag=t,this.value=e}static some(t){return new a(!0,t)}static none(){return a.singletonNone}fold(t,e){return this.tag?e(this.value):t()}isSome(){return this.tag}isNone(){return!this.tag}map(t){return this.tag?a.some(t(this.value)):a.none()}bind(t){return this.tag?t(this.value):a.none()}exists(t){return this.tag&&t(this.value)}forall(t){return!this.tag||t(this.value)}filter(t){return!this.tag||t(this.value)?this:a.none()}getOr(t){return this.tag?this.value:t}or(t){return this.tag?this:t}getOrThunk(t){return this.tag?this.value:t()}orThunk(t){return this.tag?this:t()}getOrDie(t){if(this.tag)return this.value;throw new Error(null!=t?t:"Called getOrDie on None")}static from(t){return n(t)?a.some(t):a.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(t){this.tag&&t(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}a.singletonNone=new a(!1);const u=(t,e)=>{for(let o=0,r=t.length;o<r;o++)e(t[o],o)},c=t=>{if(null==t)throw new Error("Node cannot be null or undefined");return{dom:t}},d=c,h=(t,e)=>{const o=t.dom;if(1!==o.nodeType)return!1;{const t=o;if(void 0!==t.matches)return t.matches(e);if(void 0!==t.msMatchesSelector)return t.msMatchesSelector(e);if(void 0!==t.webkitMatchesSelector)return t.webkitMatchesSelector(e);if(void 0!==t.mozMatchesSelector)return t.mozMatchesSelector(e);throw new Error("Browser lacks native selectors")}};"undefined"!=typeof window?window:Function("return this;")();const m=t=>e=>(t=>t.dom.nodeType)(e)===t,g=m(1),f=m(3),v=m(9),y=m(11),p=(t,e)=>{t.dom.removeAttribute(e)},w=i(Element.prototype.attachShadow)&&i(Node.prototype.getRootNode)?t=>d(t.dom.getRootNode()):t=>v(t)?t:d(t.dom.ownerDocument),b=t=>d(t.dom.host),N=t=>{const e=f(t)?t.dom.parentNode:t.dom;if(null==e||null===e.ownerDocument)return!1;const o=e.ownerDocument;return(t=>{const e=w(t);return y(o=e)&&n(o.dom.host)?a.some(e):a.none();var o})(d(e)).fold((()=>o.body.contains(e)),(r=N,i=b,t=>r(i(t))));var r,i},S=t=>"rtl"===((t,e)=>{const o=t.dom,r=window.getComputedStyle(o).getPropertyValue(e);return""!==r||N(t)?r:((t,e)=>(t=>void 0!==t.style&&i(t.style.getPropertyValue))(t)?t.style.getPropertyValue(e):"")(o,e)})(t,"direction")?"rtl":"ltr",A=(t,e)=>((t,o)=>((t,e)=>{const o=[];for(let r=0,n=t.length;r<n;r++){const n=t[r];e(n,r)&&o.push(n)}return o})(((t,e)=>{const o=t.length,r=new Array(o);for(let n=0;n<o;n++){const o=t[n];r[n]=e(o,n)}return r})(t.dom.childNodes,d),(t=>h(t,e))))(t),E=("li",t=>g(t)&&"li"===t.dom.nodeName.toLowerCase());const T=(t,e,n)=>{u(e,(e=>{const c=d(e),m=E(c),f=((t,e)=>{return(e?(o=t,r="ol,ul",((t,e,o)=>{let n=t.dom;const s=i(o)?o:l;for(;n.parentNode;){n=n.parentNode;const t=d(n);if(h(t,r))return a.some(t);if(s(t))break}return a.none()})(o,0,n)):a.some(t)).getOr(t);var o,r,n})(c,m);var v;(v=f,(t=>a.from(t.dom.parentNode).map(d))(v).filter(g)).each((e=>{if(t.setStyle(f.dom,"direction",null),S(e)===n?p(f,"dir"):((t,e,n)=>{((t,e,n)=>{if(!(o(n)||r(n)||s(n)))throw console.error("Invalid call to Attribute.set. Key ",e,":: Value ",n,":: Element ",t),new Error("Attribute value was not simple");t.setAttribute(e,n+"")})(t.dom,e,n)})(f,"dir",n),S(f)!==n&&t.setStyle(f.dom,"direction",n),m){const e=A(f,"li[dir],li[style]");u(e,(e=>{p(e,"dir"),t.setStyle(e.dom,"direction",null)}))}}))}))},C=(t,e)=>{t.selection.isEditable()&&(T(t.dom,t.selection.getSelectedBlocks(),e),t.nodeChanged())},D=(t,e)=>o=>{const r=r=>{const n=d(r.element);o.setActive(S(n)===e),o.setEnabled(t.selection.isEditable())};return t.on("NodeChange",r),o.setEnabled(t.selection.isEditable()),()=>t.off("NodeChange",r)};t.add("directionality",(t=>{(t=>{t.addCommand("mceDirectionLTR",(()=>{C(t,"ltr")})),t.addCommand("mceDirectionRTL",(()=>{C(t,"rtl")}))})(t),(t=>{t.ui.registry.addToggleButton("ltr",{tooltip:"Left to right",icon:"ltr",onAction:()=>t.execCommand("mceDirectionLTR"),onSetup:D(t,"ltr")}),t.ui.registry.addToggleButton("rtl",{tooltip:"Right to left",icon:"rtl",onAction:()=>t.execCommand("mceDirectionRTL"),onSetup:D(t,"rtl")})})(t)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/charmap/plugin.min.js000064400000025630151213255170021711 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=(e,t)=>{const r=((e,t)=>e.dispatch("insertCustomChar",{chr:t}))(e,t).chr;e.execCommand("mceInsertContent",!1,r)},r=e=>t=>e===t,a=("array",e=>"array"===(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(r=a=e,(n=String).prototype.isPrototypeOf(r)||(null===(i=a.constructor)||void 0===i?void 0:i.name)===n.name)?"string":t;var r,a,n,i})(e));const n=r(null),i=r(void 0),o=e=>"function"==typeof e,s=(!1,()=>false);class l{constructor(e,t){this.tag=e,this.value=t}static some(e){return new l(!0,e)}static none(){return l.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?l.some(e(this.value)):l.none()}bind(e){return this.tag?e(this.value):l.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:l.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return null==e?l.none():l.some(e)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}l.singletonNone=new l(!1);const c=Array.prototype.push,u=(e,t)=>{const r=e.length,a=new Array(r);for(let n=0;n<r;n++){const r=e[n];a[n]=t(r,n)}return a};var g=tinymce.util.Tools.resolve("tinymce.util.Tools");const h=e=>t=>t.options.get(e),m=h("charmap"),p=h("charmap_append"),d=g.isArray,f="User Defined",y=e=>{return d(e)?(t=e,g.grep(t,(e=>d(e)&&2===e.length))):"function"==typeof e?e():[];var t},b=e=>{const t=((e,t)=>{const r=m(e);r&&(t=[{name:f,characters:y(r)}]);const a=p(e);if(a){const e=g.grep(t,(e=>e.name===f));return e.length?(e[0].characters=[...e[0].characters,...y(a)],t):t.concat({name:f,characters:y(a)})}return t})(e,[{name:"Currency",characters:[[36,"dollar sign"],[162,"cent sign"],[8364,"euro sign"],[163,"pound sign"],[165,"yen sign"],[164,"currency sign"],[8352,"euro-currency sign"],[8353,"colon sign"],[8354,"cruzeiro sign"],[8355,"french franc sign"],[8356,"lira sign"],[8357,"mill sign"],[8358,"naira sign"],[8359,"peseta sign"],[8360,"rupee sign"],[8361,"won sign"],[8362,"new sheqel sign"],[8363,"dong sign"],[8365,"kip sign"],[8366,"tugrik sign"],[8367,"drachma sign"],[8368,"german penny symbol"],[8369,"peso sign"],[8370,"guarani sign"],[8371,"austral sign"],[8372,"hryvnia sign"],[8373,"cedi sign"],[8374,"livre tournois sign"],[8375,"spesmilo sign"],[8376,"tenge sign"],[8377,"indian rupee sign"],[8378,"turkish lira sign"],[8379,"nordic mark sign"],[8380,"manat sign"],[8381,"ruble sign"],[20870,"yen character"],[20803,"yuan character"],[22291,"yuan character, in hong kong and taiwan"],[22278,"yen/yuan character variant one"]]},{name:"Text",characters:[[169,"copyright sign"],[174,"registered sign"],[8482,"trade mark sign"],[8240,"per mille sign"],[181,"micro sign"],[183,"middle dot"],[8226,"bullet"],[8230,"three dot leader"],[8242,"minutes / feet"],[8243,"seconds / inches"],[167,"section sign"],[182,"paragraph sign"],[223,"sharp s / ess-zed"]]},{name:"Quotations",characters:[[8249,"single left-pointing angle quotation mark"],[8250,"single right-pointing angle quotation mark"],[171,"left pointing guillemet"],[187,"right pointing guillemet"],[8216,"left single quotation mark"],[8217,"right single quotation mark"],[8220,"left double quotation mark"],[8221,"right double quotation mark"],[8218,"single low-9 quotation mark"],[8222,"double low-9 quotation mark"],[60,"less-than sign"],[62,"greater-than sign"],[8804,"less-than or equal to"],[8805,"greater-than or equal to"],[8211,"en dash"],[8212,"em dash"],[175,"macron"],[8254,"overline"],[164,"currency sign"],[166,"broken bar"],[168,"diaeresis"],[161,"inverted exclamation mark"],[191,"turned question mark"],[710,"circumflex accent"],[732,"small tilde"],[176,"degree sign"],[8722,"minus sign"],[177,"plus-minus sign"],[247,"division sign"],[8260,"fraction slash"],[215,"multiplication sign"],[185,"superscript one"],[178,"superscript two"],[179,"superscript three"],[188,"fraction one quarter"],[189,"fraction one half"],[190,"fraction three quarters"]]},{name:"Mathematical",characters:[[402,"function / florin"],[8747,"integral"],[8721,"n-ary sumation"],[8734,"infinity"],[8730,"square root"],[8764,"similar to"],[8773,"approximately equal to"],[8776,"almost equal to"],[8800,"not equal to"],[8801,"identical to"],[8712,"element of"],[8713,"not an element of"],[8715,"contains as member"],[8719,"n-ary product"],[8743,"logical and"],[8744,"logical or"],[172,"not sign"],[8745,"intersection"],[8746,"union"],[8706,"partial differential"],[8704,"for all"],[8707,"there exists"],[8709,"diameter"],[8711,"backward difference"],[8727,"asterisk operator"],[8733,"proportional to"],[8736,"angle"]]},{name:"Extended Latin",characters:[[192,"A - grave"],[193,"A - acute"],[194,"A - circumflex"],[195,"A - tilde"],[196,"A - diaeresis"],[197,"A - ring above"],[256,"A - macron"],[198,"ligature AE"],[199,"C - cedilla"],[200,"E - grave"],[201,"E - acute"],[202,"E - circumflex"],[203,"E - diaeresis"],[274,"E - macron"],[204,"I - grave"],[205,"I - acute"],[206,"I - circumflex"],[207,"I - diaeresis"],[298,"I - macron"],[208,"ETH"],[209,"N - tilde"],[210,"O - grave"],[211,"O - acute"],[212,"O - circumflex"],[213,"O - tilde"],[214,"O - diaeresis"],[216,"O - slash"],[332,"O - macron"],[338,"ligature OE"],[352,"S - caron"],[217,"U - grave"],[218,"U - acute"],[219,"U - circumflex"],[220,"U - diaeresis"],[362,"U - macron"],[221,"Y - acute"],[376,"Y - diaeresis"],[562,"Y - macron"],[222,"THORN"],[224,"a - grave"],[225,"a - acute"],[226,"a - circumflex"],[227,"a - tilde"],[228,"a - diaeresis"],[229,"a - ring above"],[257,"a - macron"],[230,"ligature ae"],[231,"c - cedilla"],[232,"e - grave"],[233,"e - acute"],[234,"e - circumflex"],[235,"e - diaeresis"],[275,"e - macron"],[236,"i - grave"],[237,"i - acute"],[238,"i - circumflex"],[239,"i - diaeresis"],[299,"i - macron"],[240,"eth"],[241,"n - tilde"],[242,"o - grave"],[243,"o - acute"],[244,"o - circumflex"],[245,"o - tilde"],[246,"o - diaeresis"],[248,"o slash"],[333,"o macron"],[339,"ligature oe"],[353,"s - caron"],[249,"u - grave"],[250,"u - acute"],[251,"u - circumflex"],[252,"u - diaeresis"],[363,"u - macron"],[253,"y - acute"],[254,"thorn"],[255,"y - diaeresis"],[563,"y - macron"],[913,"Alpha"],[914,"Beta"],[915,"Gamma"],[916,"Delta"],[917,"Epsilon"],[918,"Zeta"],[919,"Eta"],[920,"Theta"],[921,"Iota"],[922,"Kappa"],[923,"Lambda"],[924,"Mu"],[925,"Nu"],[926,"Xi"],[927,"Omicron"],[928,"Pi"],[929,"Rho"],[931,"Sigma"],[932,"Tau"],[933,"Upsilon"],[934,"Phi"],[935,"Chi"],[936,"Psi"],[937,"Omega"],[945,"alpha"],[946,"beta"],[947,"gamma"],[948,"delta"],[949,"epsilon"],[950,"zeta"],[951,"eta"],[952,"theta"],[953,"iota"],[954,"kappa"],[955,"lambda"],[956,"mu"],[957,"nu"],[958,"xi"],[959,"omicron"],[960,"pi"],[961,"rho"],[962,"final sigma"],[963,"sigma"],[964,"tau"],[965,"upsilon"],[966,"phi"],[967,"chi"],[968,"psi"],[969,"omega"]]},{name:"Symbols",characters:[[8501,"alef symbol"],[982,"pi symbol"],[8476,"real part symbol"],[978,"upsilon - hook symbol"],[8472,"Weierstrass p"],[8465,"imaginary part"]]},{name:"Arrows",characters:[[8592,"leftwards arrow"],[8593,"upwards arrow"],[8594,"rightwards arrow"],[8595,"downwards arrow"],[8596,"left right arrow"],[8629,"carriage return"],[8656,"leftwards double arrow"],[8657,"upwards double arrow"],[8658,"rightwards double arrow"],[8659,"downwards double arrow"],[8660,"left right double arrow"],[8756,"therefore"],[8834,"subset of"],[8835,"superset of"],[8836,"not a subset of"],[8838,"subset of or equal to"],[8839,"superset of or equal to"],[8853,"circled plus"],[8855,"circled times"],[8869,"perpendicular"],[8901,"dot operator"],[8968,"left ceiling"],[8969,"right ceiling"],[8970,"left floor"],[8971,"right floor"],[9001,"left-pointing angle bracket"],[9002,"right-pointing angle bracket"],[9674,"lozenge"],[9824,"black spade suit"],[9827,"black club suit"],[9829,"black heart suit"],[9830,"black diamond suit"],[8194,"en space"],[8195,"em space"],[8201,"thin space"],[8204,"zero width non-joiner"],[8205,"zero width joiner"],[8206,"left-to-right mark"],[8207,"right-to-left mark"]]}]);return t.length>1?[{name:"All",characters:(r=t,n=e=>e.characters,(e=>{const t=[];for(let r=0,n=e.length;r<n;++r){if(!a(e[r]))throw new Error("Arr.flatten item "+r+" was not an array, input: "+e);c.apply(t,e[r])}return t})(u(r,n)))}].concat(t):t;var r,n},w=e=>{let t=e;return{get:()=>t,set:e=>{t=e}}},v=(e,t,r=0,a)=>{const n=e.indexOf(t,r);return-1!==n&&(!!i(a)||n+t.length<=a)},k=String.fromCodePoint,C=(e,t)=>{const r=[],a=t.toLowerCase();return((e,t)=>{for(let t=0,i=e.length;t<i;t++)((e,t,r)=>!!v(k(e).toLowerCase(),r)||v(t.toLowerCase(),r)||v(t.toLowerCase().replace(/\s+/g,""),r))((n=e[t])[0],n[1],a)&&r.push(n);var n})(e.characters),u(r,(e=>({text:e[1],value:k(e[0]),icon:k(e[0])})))},x="pattern",A=(e,r)=>{const a=()=>[{label:"Search",type:"input",name:x},{type:"collection",name:"results"}],i=1===r.length?w(f):w("All"),o=((e,t)=>{let r=null;const a=()=>{n(r)||(clearTimeout(r),r=null)};return{cancel:a,throttle:(...t)=>{a(),r=setTimeout((()=>{r=null,e.apply(null,t)}),40)}}})((e=>{const t=e.getData().pattern;((e,t)=>{var a,n;(a=r,n=e=>e.name===i.get(),((e,t,r)=>{for(let a=0,n=e.length;a<n;a++){const n=e[a];if(t(n,a))return l.some(n);if(r(n,a))break}return l.none()})(a,n,s)).each((r=>{const a=C(r,t);e.setData({results:a})}))})(e,t)})),c={title:"Special Character",size:"normal",body:1===r.length?{type:"panel",items:a()}:{type:"tabpanel",tabs:u(r,(e=>({title:e.name,name:e.name,items:a()})))},buttons:[{type:"cancel",name:"close",text:"Close",primary:!0}],initialData:{pattern:"",results:C(r[0],"")},onAction:(r,a)=>{"results"===a.name&&(t(e,a.value),r.close())},onTabChange:(e,t)=>{i.set(t.newTabName),o.throttle(e)},onChange:(e,t)=>{t.name===x&&o.throttle(e)}};e.windowManager.open(c).focus(x)},q=e=>t=>{const r=()=>{t.setEnabled(e.selection.isEditable())};return e.on("NodeChange",r),r(),()=>{e.off("NodeChange",r)}};e.add("charmap",(e=>{(e=>{const t=e.options.register,r=e=>o(e)||a(e);t("charmap",{processor:r}),t("charmap_append",{processor:r})})(e);const r=b(e);return((e,t)=>{e.addCommand("mceShowCharmap",(()=>{A(e,t)}))})(e,r),(e=>{const t=()=>e.execCommand("mceShowCharmap");e.ui.registry.addButton("charmap",{icon:"insert-character",tooltip:"Special character",onAction:t,onSetup:q(e)}),e.ui.registry.addMenuItem("charmap",{icon:"insert-character",text:"Special character...",onAction:t,onSetup:q(e)})})(e),((e,t)=>{e.ui.registry.addAutocompleter("charmap",{trigger:":",columns:"auto",minChars:2,fetch:(e,r)=>new Promise(((r,a)=>{r(C(t,e))})),onAction:(t,r,a)=>{e.selection.setRng(r),e.insertContent(a),t.hide()}})})(e,r[0]),(e=>({getCharMap:()=>b(e),insertChar:r=>{t(e,r)}}))(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/save/plugin.min.js000064400000003070151213255170021226 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const n=("function",e=>"function"==typeof e);var o=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),t=tinymce.util.Tools.resolve("tinymce.util.Tools");const a=e=>n=>n.options.get(e),c=a("save_enablewhendirty"),i=a("save_onsavecallback"),s=a("save_oncancelcallback"),r=(e,n)=>{e.notificationManager.open({text:n,type:"error"})},l=e=>n=>{const o=()=>{n.setEnabled(!c(e)||e.isDirty())};return o(),e.on("NodeChange dirty",o),()=>e.off("NodeChange dirty",o)};e.add("save",(e=>{(e=>{const n=e.options.register;n("save_enablewhendirty",{processor:"boolean",default:!0}),n("save_onsavecallback",{processor:"function"}),n("save_oncancelcallback",{processor:"function"})})(e),(e=>{e.ui.registry.addButton("save",{icon:"save",tooltip:"Save",enabled:!1,onAction:()=>e.execCommand("mceSave"),onSetup:l(e)}),e.ui.registry.addButton("cancel",{icon:"cancel",tooltip:"Cancel",enabled:!1,onAction:()=>e.execCommand("mceCancel"),onSetup:l(e)}),e.addShortcut("Meta+S","","mceSave")})(e),(e=>{e.addCommand("mceSave",(()=>{(e=>{const t=o.DOM.getParent(e.id,"form");if(c(e)&&!e.isDirty())return;e.save();const a=i(e);if(n(a))return a.call(e,e),void e.nodeChanged();t?(e.setDirty(!1),t.onsubmit&&!t.onsubmit()||("function"==typeof t.submit?t.submit():r(e,"Error: Form submit field collision.")),e.nodeChanged()):r(e,"Error: No form element found.")})(e)})),e.addCommand("mceCancel",(()=>{(e=>{const o=t.trim(e.startContent),a=s(e);n(a)?a.call(e,e):e.resetContent(o)})(e)}))})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/lists/plugin.min.js000064400000066734151213255170021446 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(n=o=e,(r=String).prototype.isPrototypeOf(n)||(null===(s=o.constructor)||void 0===s?void 0:s.name)===r.name)?"string":t;var n,o,r,s})(t)===e,n=e=>t=>typeof t===e,o=t("string"),r=t("object"),s=t("array"),i=n("boolean"),l=e=>!(e=>null==e)(e),a=n("function"),d=n("number"),c=()=>{},m=e=>()=>e,u=(e,t)=>e===t,p=e=>t=>!e(t),g=m(!1);class h{constructor(e,t){this.tag=e,this.value=t}static some(e){return new h(!0,e)}static none(){return h.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?h.some(e(this.value)):h.none()}bind(e){return this.tag?e(this.value):h.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:h.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return l(e)?h.some(e):h.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}h.singletonNone=new h(!1);const f=Array.prototype.slice,y=Array.prototype.indexOf,v=Array.prototype.push,C=(e,t)=>{return n=e,o=t,y.call(n,o)>-1;var n,o},b=(e,t)=>{for(let n=0,o=e.length;n<o;n++)if(t(e[n],n))return!0;return!1},N=(e,t)=>{const n=e.length,o=new Array(n);for(let r=0;r<n;r++){const n=e[r];o[r]=t(n,r)}return o},S=(e,t)=>{for(let n=0,o=e.length;n<o;n++)t(e[n],n)},L=(e,t)=>{const n=[];for(let o=0,r=e.length;o<r;o++){const r=e[o];t(r,o)&&n.push(r)}return n},O=(e,t,n)=>(S(e,((e,o)=>{n=t(n,e,o)})),n),A=(e,t,n)=>{for(let o=0,r=e.length;o<r;o++){const r=e[o];if(t(r,o))return h.some(r);if(n(r,o))break}return h.none()},T=(e,t)=>A(e,t,g),x=(e,t)=>(e=>{const t=[];for(let n=0,o=e.length;n<o;++n){if(!s(e[n]))throw new Error("Arr.flatten item "+n+" was not an array, input: "+e);v.apply(t,e[n])}return t})(N(e,t)),E=e=>{const t=f.call(e,0);return t.reverse(),t},w=(e,t)=>t>=0&&t<e.length?h.some(e[t]):h.none(),k=e=>w(e,0),D=e=>w(e,e.length-1),B=(e,t)=>{const n=[],o=a(t)?e=>b(n,(n=>t(n,e))):e=>C(n,e);for(let t=0,r=e.length;t<r;t++){const r=e[t];o(r)||n.push(r)}return n},M=(e,t,n=u)=>e.exists((e=>n(e,t))),P=(e,t,n)=>e.isSome()&&t.isSome()?h.some(n(e.getOrDie(),t.getOrDie())):h.none(),I=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},R=(e,t)=>{const n=(t||document).createElement("div");if(n.innerHTML=e,!n.hasChildNodes()||n.childNodes.length>1){const t="HTML does not have a single root node";throw console.error(t,e),new Error(t)}return I(n.childNodes[0])},U=(e,t)=>{const n=(t||document).createElement(e);return I(n)},$=I,_=(e,t)=>{const n=e.dom;if(1!==n.nodeType)return!1;{const e=n;if(void 0!==e.matches)return e.matches(t);if(void 0!==e.msMatchesSelector)return e.msMatchesSelector(t);if(void 0!==e.webkitMatchesSelector)return e.webkitMatchesSelector(t);if(void 0!==e.mozMatchesSelector)return e.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")}},H=(e,t)=>e.dom===t.dom,F=_,V="undefined"!=typeof window?window:Function("return this;")(),j=(e,t)=>((e,t)=>{let n=null!=t?t:V;for(let t=0;t<e.length&&null!=n;++t)n=n[e[t]];return n})(e.split("."),t),K=Object.getPrototypeOf,z=e=>{const t=j("ownerDocument.defaultView",e);return r(e)&&((e=>((e,t)=>{const n=((e,t)=>j(e,t))(e,t);if(null==n)throw new Error(e+" not available on this browser");return n})("HTMLElement",e))(t).prototype.isPrototypeOf(e)||/^HTML\w*Element$/.test(K(e).constructor.name))},Q=e=>e.dom.nodeName.toLowerCase(),W=e=>e.dom.nodeType,q=e=>t=>W(t)===e,Z=e=>G(e)&&z(e.dom),G=q(1),J=q(3),X=q(9),Y=q(11),ee=e=>t=>G(t)&&Q(t)===e,te=e=>h.from(e.dom.parentNode).map($),ne=e=>N(e.dom.childNodes,$),oe=(e,t)=>{const n=e.dom.childNodes;return h.from(n[t]).map($)},re=e=>oe(e,0),se=e=>oe(e,e.dom.childNodes.length-1),ie=a(Element.prototype.attachShadow)&&a(Node.prototype.getRootNode)?e=>$(e.dom.getRootNode()):e=>X(e)?e:$(e.dom.ownerDocument),le=e=>$(e.dom.host),ae=e=>{const t=J(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;const n=t.ownerDocument;return(e=>{const t=ie(e);return Y(n=t)&&l(n.dom.host)?h.some(t):h.none();var n})($(t)).fold((()=>n.body.contains(t)),(o=ae,r=le,e=>o(r(e))));var o,r};var de=(e,t,n,o,r)=>e(n,o)?h.some(n):a(r)&&r(n)?h.none():t(n,o,r);const ce=(e,t,n)=>{let o=e.dom;const r=a(n)?n:g;for(;o.parentNode;){o=o.parentNode;const e=$(o);if(t(e))return h.some(e);if(r(e))break}return h.none()},me=(e,t,n)=>de(((e,t)=>t(e)),ce,e,t,n),ue=(e,t,n)=>ce(e,(e=>_(e,t)),n),pe=(e,t)=>{te(e).each((n=>{n.dom.insertBefore(t.dom,e.dom)}))},ge=(e,t)=>{e.dom.appendChild(t.dom)},he=(e,t)=>{S(t,(t=>{ge(e,t)}))},fe=e=>{e.dom.textContent="",S(ne(e),(e=>{ye(e)}))},ye=e=>{const t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)};var ve=tinymce.util.Tools.resolve("tinymce.dom.RangeUtils"),Ce=tinymce.util.Tools.resolve("tinymce.dom.TreeWalker"),be=tinymce.util.Tools.resolve("tinymce.util.VK");const Ne=e=>N(e,$),Se=Object.keys,Le=(e,t)=>{const n=Se(e);for(let o=0,r=n.length;o<r;o++){const r=n[o];t(e[r],r)}},Oe=(e,t)=>{const n=e.dom;Le(t,((e,t)=>{((e,t,n)=>{if(!(o(n)||i(n)||d(n)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",n,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,n+"")})(n,t,e)}))},Ae=e=>O(e.dom.attributes,((e,t)=>(e[t.name]=t.value,e)),{}),Te=e=>((e,t)=>$(e.dom.cloneNode(!0)))(e),xe=(e,t)=>{const n=((e,t)=>{const n=U(t),o=Ae(e);return Oe(n,o),n})(e,t);var o,r;r=n,(e=>h.from(e.dom.nextSibling).map($))(o=e).fold((()=>{te(o).each((e=>{ge(e,r)}))}),(e=>{pe(e,r)}));const s=ne(e);return he(n,s),ye(e),n};var Ee=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),we=tinymce.util.Tools.resolve("tinymce.util.Tools");const ke=e=>t=>l(t)&&t.nodeName.toLowerCase()===e,De=e=>t=>l(t)&&e.test(t.nodeName),Be=e=>l(e)&&3===e.nodeType,Me=e=>l(e)&&1===e.nodeType,Pe=De(/^(OL|UL|DL)$/),Ie=De(/^(OL|UL)$/),Re=ke("ol"),Ue=De(/^(LI|DT|DD)$/),$e=De(/^(DT|DD)$/),_e=De(/^(TH|TD)$/),He=ke("br"),Fe=(e,t)=>l(t)&&t.nodeName in e.schema.getTextBlockElements(),Ve=(e,t)=>l(e)&&e.nodeName in t,je=(e,t)=>l(t)&&t.nodeName in e.schema.getVoidElements(),Ke=(e,t,n)=>{const o=e.isEmpty(t);return!(n&&e.select("span[data-mce-type=bookmark]",t).length>0)&&o},ze=(e,t)=>e.isChildOf(t,e.getRoot()),Qe=e=>t=>t.options.get(e),We=Qe("lists_indent_on_tab"),qe=Qe("forced_root_block"),Ze=Qe("forced_root_block_attrs"),Ge=(e,t)=>{const n=e.dom,o=e.schema.getBlockElements(),r=n.createFragment(),s=qe(e),i=Ze(e);let l,a,d=!1;for(a=n.create(s,i),Ve(t.firstChild,o)||r.appendChild(a);l=t.firstChild;){const e=l.nodeName;d||"SPAN"===e&&"bookmark"===l.getAttribute("data-mce-type")||(d=!0),Ve(l,o)?(r.appendChild(l),a=null):(a||(a=n.create(s,i),r.appendChild(a)),a.appendChild(l))}return!d&&a&&a.appendChild(n.create("br",{"data-mce-bogus":"1"})),r},Je=Ee.DOM,Xe=ee("dd"),Ye=ee("dt"),et=(e,t)=>{var n;Xe(t)?xe(t,"dt"):Ye(t)&&(n=t,h.from(n.dom.parentElement).map($)).each((n=>((e,t,n)=>{const o=Je.select('span[data-mce-type="bookmark"]',t),r=Ge(e,n),s=Je.createRng();s.setStartAfter(n),s.setEndAfter(t);const i=s.extractContents();for(let t=i.firstChild;t;t=t.firstChild)if("LI"===t.nodeName&&e.dom.isEmpty(t)){Je.remove(t);break}e.dom.isEmpty(i)||Je.insertAfter(i,t),Je.insertAfter(r,t);const l=n.parentElement;l&&Ke(e.dom,l)&&(e=>{const t=e.parentNode;t&&we.each(o,(e=>{t.insertBefore(e,n.parentNode)})),Je.remove(e)})(l),Je.remove(n),Ke(e.dom,t)&&Je.remove(t)})(e,n.dom,t.dom)))},tt=e=>{Ye(e)&&xe(e,"dd")},nt=(e,t)=>{if(Be(e))return{container:e,offset:t};const n=ve.getNode(e,t);return Be(n)?{container:n,offset:t>=e.childNodes.length?n.data.length:0}:n.previousSibling&&Be(n.previousSibling)?{container:n.previousSibling,offset:n.previousSibling.data.length}:n.nextSibling&&Be(n.nextSibling)?{container:n.nextSibling,offset:0}:{container:e,offset:t}},ot=e=>{const t=e.cloneRange(),n=nt(e.startContainer,e.startOffset);t.setStart(n.container,n.offset);const o=nt(e.endContainer,e.endOffset);return t.setEnd(o.container,o.offset),t},rt=["OL","UL","DL"],st=rt.join(","),it=(e,t)=>{const n=t||e.selection.getStart(!0);return e.dom.getParent(n,st,dt(e,n))},lt=e=>{const t=e.selection.getSelectedBlocks();return L(((e,t)=>{const n=we.map(t,(t=>e.dom.getParent(t,"li,dd,dt",dt(e,t))||t));return B(n)})(e,t),Ue)},at=(e,t)=>{const n=e.dom.getParents(t,"TD,TH");return n.length>0?n[0]:e.getBody()},dt=(e,t)=>{const n=e.dom.getParents(t,e.dom.isBlock),o=T(n,(t=>{return n=e.schema,!Pe(o=t)&&!Ue(o)&&b(rt,(e=>n.isValidChild(o.nodeName,e)));var n,o}));return o.getOr(e.getBody())},ct=(e,t)=>{const n=e.dom.getParents(t,"ol,ul",dt(e,t));return D(n)},mt=(e,t)=>{const n=N(t,(t=>ct(e,t).getOr(t)));return B(n)},ut=e=>/\btox\-/.test(e.className),pt=(e,t)=>A(e,Pe,_e).exists((e=>e.nodeName===t&&!ut(e))),gt=(e,t)=>null!==t&&!e.dom.isEditable(t),ht=(e,t)=>{const n=e.dom.getParent(t,"ol,ul,dl");return gt(e,n)},ft=(e,t)=>{const n=e.selection.getNode();return t({parents:e.dom.getParents(n),element:n}),e.on("NodeChange",t),()=>e.off("NodeChange",t)},yt=(e,t)=>{const n=(t||document).createDocumentFragment();return S(e,(e=>{n.appendChild(e.dom)})),$(n)},vt=(e,t,n)=>e.dispatch("ListMutation",{action:t,element:n}),Ct=(bt=/^\s+|\s+$/g,e=>e.replace(bt,""));var bt;const Nt=(e,t,n)=>{((e,t,n)=>{if(!o(n))throw console.error("Invalid call to CSS.set. Property ",t,":: Value ",n,":: Element ",e),new Error("CSS value must be a string: "+n);(e=>void 0!==e.style&&a(e.style.getPropertyValue))(e)&&e.style.setProperty(t,n)})(e.dom,t,n)},St=e=>F(e,"OL,UL"),Lt=e=>re(e).exists(St),Ot=e=>"listAttributes"in e,At=e=>"isComment"in e,Tt=e=>e.depth>0,xt=e=>e.isSelected,Et=e=>{const t=ne(e),n=se(e).exists(St)?t.slice(0,-1):t;return N(n,Te)},wt=(e,t)=>{ge(e.item,t.list)},kt=(e,t)=>{const n={list:U(t,e),item:U("li",e)};return ge(n.list,n.item),n},Dt=(e,t,n)=>{const o=t.slice(0,n.depth);return D(o).each((t=>{if(Ot(n)){const o=((e,t,n)=>{const o=U("li",e);return Oe(o,t),he(o,n),o})(e,n.itemAttributes,n.content);((e,t)=>{ge(e.list,t),e.item=t})(t,o),((e,t)=>{Q(e.list)!==t.listType&&(e.list=xe(e.list,t.listType)),Oe(e.list,t.listAttributes)})(t,n)}else if((e=>"isFragment"in e)(n))he(t.item,n.content);else{const e=R(`\x3c!--${n.content}--\x3e`);ge(t.list,e)}})),o},Bt=(e,t)=>{let n=h.none();const o=O(t,((t,o,r)=>At(o)?0===r?(n=h.some(o),t):Dt(e,t,o):o.depth>t.length?((e,t,n)=>{const o=((e,t,n)=>{const o=[];for(let r=0;r<n;r++)o.push(kt(e,Ot(t)?t.listType:t.parentListType));return o})(e,n,n.depth-t.length);var r;return(e=>{for(let t=1;t<e.length;t++)wt(e[t-1],e[t])})(o),((e,t)=>{for(let t=0;t<e.length-1;t++)Nt(e[t].item,"list-style-type","none");D(e).each((e=>{Ot(t)&&(Oe(e.list,t.listAttributes),Oe(e.item,t.itemAttributes)),he(e.item,t.content)}))})(o,n),r=o,P(D(t),k(r),wt),t.concat(o)})(e,t,o):Dt(e,t,o)),[]);return n.each((e=>{const t=R(`\x3c!--${e.content}--\x3e`);k(o).each((e=>{((e,t)=>{re(e).fold((()=>{ge(e,t)}),(n=>{e.dom.insertBefore(t.dom,n.dom)}))})(e.list,t)}))})),k(o).map((e=>e.list))},Mt=e=>(S(e,((t,n)=>{((e,t)=>{const n=e[t].depth,o=e=>e.depth===n&&!e.dirty,r=e=>e.depth<n;return A(E(e.slice(0,t)),o,r).orThunk((()=>A(e.slice(t+1),o,r)))})(e,n).fold((()=>{t.dirty&&Ot(t)&&(e=>{e.listAttributes=((e,t)=>{const n={};var o;return((e,t,n,o)=>{Le(e,((e,r)=>{(t(e,r)?n:o)(e,r)}))})(e,t,(o=n,(e,t)=>{o[t]=e}),c),n})(e.listAttributes,((e,t)=>"start"!==t))})(t)}),(e=>{return o=e,void(Ot(n=t)&&Ot(o)&&(n.listType=o.listType,n.listAttributes={...o.listAttributes}));var n,o}))})),e),Pt=(e,t,n,o)=>{var r,s;if(8===W(s=o)||"#comment"===Q(s))return[{depth:e+1,content:null!==(r=o.dom.nodeValue)&&void 0!==r?r:"",dirty:!1,isSelected:!1,isComment:!0}];t.each((e=>{H(e.start,o)&&n.set(!0)}));const i=((e,t,n)=>te(e).filter(G).map((o=>({depth:t,dirty:!1,isSelected:n,content:Et(e),itemAttributes:Ae(e),listAttributes:Ae(o),listType:Q(o),isInPreviousLi:!1}))))(o,e,n.get());t.each((e=>{H(e.end,o)&&n.set(!1)}));const l=se(o).filter(St).map((o=>Rt(e,t,n,o))).getOr([]);return i.toArray().concat(l)},It=(e,t,n,o)=>re(o).filter(St).fold((()=>Pt(e,t,n,o)),(r=>{const s=O(ne(o),((o,s,i)=>{if(0===i)return o;if(F(s,"LI"))return o.concat(Pt(e,t,n,s));{const t={isFragment:!0,depth:e,content:[s],isSelected:!1,dirty:!1,parentListType:Q(r)};return o.concat(t)}}),[]);return Rt(e,t,n,r).concat(s)})),Rt=(e,t,n,o)=>x(ne(o),(o=>(St(o)?Rt:It)(e+1,t,n,o))),Ut=(e,t,n)=>{const o=((e,t)=>{const n=(e=>{let t=!1;return{get:()=>t,set:e=>{t=e}}})();return N(e,(e=>({sourceList:e,entries:Rt(0,t,n,e)})))})(t,(e=>{const t=N(lt(e),$);return P(T(t,p(Lt)),T(E(t),p(Lt)),((e,t)=>({start:e,end:t})))})(e));S(o,(t=>{((e,t)=>{S(L(e,xt),(e=>((e,t)=>{switch(e){case"Indent":t.depth++;break;case"Outdent":t.depth--;break;case"Flatten":t.depth=0}t.dirty=!0})(t,e)))})(t.entries,n);const o=((e,t)=>x(((e,t)=>{if(0===e.length)return[];{let n=t(e[0]);const o=[];let r=[];for(let s=0,i=e.length;s<i;s++){const i=e[s],l=t(i);l!==n&&(o.push(r),r=[]),n=l,r.push(i)}return 0!==r.length&&o.push(r),o}})(t,Tt),(t=>k(t).exists(Tt)?((e,t)=>{const n=Mt(t);return Bt(e.contentDocument,n).toArray()})(e,t):((e,t)=>{const n=Mt(t);return N(n,(t=>{const n=At(t)?yt([R(`\x3c!--${t.content}--\x3e`)]):yt(t.content);return $(Ge(e,n.dom))}))})(e,t))))(e,t.entries);var r;S(o,(t=>{vt(e,"Indent"===n?"IndentList":"OutdentList",t.dom)})),r=t.sourceList,S(o,(e=>{pe(r,e)})),ye(t.sourceList)}))},$t=(e,t)=>{const n=Ne((e=>{const t=(e=>{const t=ct(e,e.selection.getStart()),n=L(e.selection.getSelectedBlocks(),Ie);return t.toArray().concat(n)})(e),n=(e=>{const t=e.selection.getStart();return e.dom.getParents(t,"ol,ul",dt(e,t))})(e);return T(n,(e=>{return t=$(e),te(t).exists((e=>Ue(e.dom)&&re(e).exists((e=>!Pe(e.dom)))&&se(e).exists((e=>!Pe(e.dom)))));var t})).fold((()=>mt(e,t)),(e=>[e]))})(e)),o=Ne((e=>L(lt(e),$e))(e));let r=!1;if(n.length||o.length){const s=e.selection.getBookmark();Ut(e,n,t),((e,t,n)=>{S(n,"Indent"===t?tt:t=>et(e,t))})(e,t,o),e.selection.moveToBookmark(s),e.selection.setRng(ot(e.selection.getRng())),e.nodeChanged(),r=!0}return r},_t=(e,t)=>!(e=>{const t=it(e);return gt(e,t)})(e)&&$t(e,t),Ht=e=>_t(e,"Indent"),Ft=e=>_t(e,"Outdent"),Vt=e=>_t(e,"Flatten"),jt=e=>"\ufeff"===e;var Kt=tinymce.util.Tools.resolve("tinymce.dom.BookmarkManager");const zt=Ee.DOM,Qt=e=>{const t={},n=n=>{let o=e[n?"startContainer":"endContainer"],r=e[n?"startOffset":"endOffset"];if(Me(o)){const e=zt.create("span",{"data-mce-type":"bookmark"});o.hasChildNodes()?(r=Math.min(r,o.childNodes.length-1),n?o.insertBefore(e,o.childNodes[r]):zt.insertAfter(e,o.childNodes[r])):o.appendChild(e),o=e,r=0}t[n?"startContainer":"endContainer"]=o,t[n?"startOffset":"endOffset"]=r};return n(!0),e.collapsed||n(),t},Wt=e=>{const t=t=>{let n=e[t?"startContainer":"endContainer"],o=e[t?"startOffset":"endOffset"];if(n){if(Me(n)&&n.parentNode){const e=n;o=(e=>{var t;let n=null===(t=e.parentNode)||void 0===t?void 0:t.firstChild,o=0;for(;n;){if(n===e)return o;Me(n)&&"bookmark"===n.getAttribute("data-mce-type")||o++,n=n.nextSibling}return-1})(n),n=n.parentNode,zt.remove(e),!n.hasChildNodes()&&zt.isBlock(n)&&n.appendChild(zt.create("br"))}e[t?"startContainer":"endContainer"]=n,e[t?"startOffset":"endOffset"]=o}};t(!0),t();const n=zt.createRng();return n.setStart(e.startContainer,e.startOffset),e.endContainer&&n.setEnd(e.endContainer,e.endOffset),ot(n)},qt=e=>{switch(e){case"UL":return"ToggleUlList";case"OL":return"ToggleOlList";case"DL":return"ToggleDLList"}},Zt=(e,t)=>{we.each(t,((t,n)=>{e.setAttribute(n,t)}))},Gt=(e,t,n)=>{((e,t,n)=>{const o=n["list-style-type"]?n["list-style-type"]:null;e.setStyle(t,"list-style-type",o)})(e,t,n),((e,t,n)=>{Zt(t,n["list-attributes"]),we.each(e.select("li",t),(e=>{Zt(e,n["list-item-attributes"])}))})(e,t,n)},Jt=(e,t)=>l(t)&&!Ve(t,e.schema.getBlockElements()),Xt=(e,t,n,o)=>{let r=t[n?"startContainer":"endContainer"];const s=t[n?"startOffset":"endOffset"];Me(r)&&(r=r.childNodes[Math.min(s,r.childNodes.length-1)]||r),!n&&He(r.nextSibling)&&(r=r.nextSibling);const i=(t,n)=>{var r;const s=new Ce(t,(t=>{for(;!e.dom.isBlock(t)&&t.parentNode&&o!==t;)t=t.parentNode;return t})(t)),i=n?"next":"prev";let l;for(;l=s[i]();)if(!je(e,l)&&!jt(l.textContent)&&0!==(null===(r=l.textContent)||void 0===r?void 0:r.length))return h.some(l);return h.none()};if(n&&Be(r))if(jt(r.textContent))r=i(r,!1).getOr(r);else for(null!==r.parentNode&&Jt(e,r.parentNode)&&(r=r.parentNode);null!==r.previousSibling&&(Jt(e,r.previousSibling)||Be(r.previousSibling));)r=r.previousSibling;if(!n&&Be(r))if(jt(r.textContent))r=i(r,!0).getOr(r);else for(null!==r.parentNode&&Jt(e,r.parentNode)&&(r=r.parentNode);null!==r.nextSibling&&(Jt(e,r.nextSibling)||Be(r.nextSibling));)r=r.nextSibling;for(;r.parentNode!==o;){const t=r.parentNode;if(Fe(e,r))return r;if(/^(TD|TH)$/.test(t.nodeName))return r;r=t}return r},Yt=(e,t,n)=>{const o=e.selection.getRng();let r="LI";const s=dt(e,((e,t)=>{const n=e.selection.getStart(!0),o=Xt(e,t,!0,e.getBody());return r=$(o),s=$(t.commonAncestorContainer),i=r,l=function(e,...t){return(...n)=>{const o=t.concat(n);return e.apply(null,o)}}(H,s),ce(i,l,void 0).isSome()?t.commonAncestorContainer:n;var r,s,i,l})(e,o)),i=e.dom;if("false"===i.getContentEditable(e.selection.getNode()))return;"DL"===(t=t.toUpperCase())&&(r="DT");const l=Qt(o),a=L(((e,t,n)=>{const o=[],r=e.dom,s=Xt(e,t,!0,n),i=Xt(e,t,!1,n);let l;const a=[];for(let e=s;e&&(a.push(e),e!==i);e=e.nextSibling);return we.each(a,(t=>{var s;if(Fe(e,t))return o.push(t),void(l=null);if(r.isBlock(t)||He(t))return He(t)&&r.remove(t),void(l=null);const i=t.nextSibling;Kt.isBookmarkNode(t)&&(Pe(i)||Fe(e,i)||!i&&t.parentNode===n)?l=null:(l||(l=r.create("p"),null===(s=t.parentNode)||void 0===s||s.insertBefore(l,t),o.push(l)),l.appendChild(t))})),o})(e,o,s),e.dom.isEditable);we.each(a,(o=>{let s;const l=o.previousSibling,a=o.parentNode;Ue(a)||(l&&Pe(l)&&l.nodeName===t&&((e,t,n)=>{const o=e.getStyle(t,"list-style-type");let r=n?n["list-style-type"]:"";return r=null===r?"":r,o===r})(i,l,n)?(s=l,o=i.rename(o,r),l.appendChild(o)):(s=i.create(t),a.insertBefore(s,o),s.appendChild(o),o=i.rename(o,r)),((e,t,n)=>{we.each(["margin","margin-right","margin-bottom","margin-left","margin-top","padding","padding-right","padding-bottom","padding-left","padding-top"],(n=>e.setStyle(t,n,"")))})(i,o),Gt(i,s,n),tn(e.dom,s))})),e.selection.setRng(Wt(l))},en=(e,t,n)=>{return((e,t)=>Pe(e)&&e.nodeName===(null==t?void 0:t.nodeName))(t,n)&&((e,t,n)=>e.getStyle(t,"list-style-type",!0)===e.getStyle(n,"list-style-type",!0))(e,t,n)&&(o=n,t.className===o.className);var o},tn=(e,t)=>{let n,o=t.nextSibling;if(en(e,t,o)){const r=o;for(;n=r.firstChild;)t.appendChild(n);e.remove(r)}if(o=t.previousSibling,en(e,t,o)){const r=o;for(;n=r.lastChild;)t.insertBefore(n,t.firstChild);e.remove(r)}},nn=(e,t,n,o)=>{if(t.nodeName!==n){const r=e.dom.rename(t,n);Gt(e.dom,r,o),vt(e,qt(n),r)}else Gt(e.dom,t,o),vt(e,qt(n),t)},on=(e,t,n,o)=>{if(t.classList.forEach(((e,n,o)=>{e.startsWith("tox-")&&(o.remove(e),0===o.length&&t.removeAttribute("class"))})),t.nodeName!==n){const r=e.dom.rename(t,n);Gt(e.dom,r,o),vt(e,qt(n),r)}else Gt(e.dom,t,o),vt(e,qt(n),t)},rn=e=>"list-style-type"in e,sn=(e,t,n)=>{const o=it(e);if(ht(e,o))return;const s=(e=>{const t=it(e),n=e.selection.getSelectedBlocks();return((e,t)=>l(e)&&1===t.length&&t[0]===e)(t,n)?(e=>L(e.querySelectorAll(st),Pe))(t):L(n,(e=>Pe(e)&&t!==e))})(e),i=r(n)?n:{};s.length>0?((e,t,n,o,r)=>{const s=Pe(t);if(!s||t.nodeName!==o||rn(r)||ut(t)){Yt(e,o,r);const i=Qt(e.selection.getRng()),l=s?[t,...n]:n,a=s&&ut(t)?on:nn;we.each(l,(t=>{a(e,t,o,r)})),e.selection.setRng(Wt(i))}else Vt(e)})(e,o,s,t,i):((e,t,n,o)=>{if(t!==e.getBody())if(t)if(t.nodeName!==n||rn(o)||ut(t)){const r=Qt(e.selection.getRng());ut(t)&&t.classList.forEach(((e,n,o)=>{e.startsWith("tox-")&&(o.remove(e),0===o.length&&t.removeAttribute("class"))})),Gt(e.dom,t,o);const s=e.dom.rename(t,n);tn(e.dom,s),e.selection.setRng(Wt(r)),Yt(e,n,o),vt(e,qt(n),s)}else Vt(e);else Yt(e,n,o),vt(e,qt(n),t)})(e,o,t,i)},ln=Ee.DOM,an=(e,t)=>{const n=we.grep(e.select("ol,ul",t));we.each(n,(t=>{((e,t)=>{const n=t.parentElement;if(n&&"LI"===n.nodeName&&n.firstChild===t){const o=n.previousSibling;o&&"LI"===o.nodeName?(o.appendChild(t),Ke(e,n)&&ln.remove(n)):ln.setStyle(n,"listStyleType","none")}if(Pe(n)){const e=n.previousSibling;e&&"LI"===e.nodeName&&e.appendChild(t)}})(e,t)}))},dn=(e,t,n,o)=>{let r=t.startContainer;const s=t.startOffset;if(Be(r)&&(n?s<r.data.length:s>0))return r;const i=e.schema.getNonEmptyElements();Me(r)&&(r=ve.getNode(r,s));const l=new Ce(r,o);n&&((e,t)=>!!He(t)&&e.isBlock(t.nextSibling)&&!He(t.previousSibling))(e.dom,r)&&l.next();const a=n?l.next.bind(l):l.prev2.bind(l);for(;r=a();){if("LI"===r.nodeName&&!r.hasChildNodes())return r;if(i[r.nodeName])return r;if(Be(r)&&r.data.length>0)return r}return null},cn=(e,t)=>{const n=t.childNodes;return 1===n.length&&!Pe(n[0])&&e.isBlock(n[0])},mn=e=>h.from(e).map($).filter(Z).exists((e=>((e,t=!1)=>{return ae(e)?e.dom.isContentEditable:(n=e,de(((e,t)=>_(e,t)),ue,n,"[contenteditable]",void 0)).fold(m(t),(e=>"true"===(e=>e.dom.contentEditable)(e)));var n})(e)&&!C(["details"],Q(e)))),un=(e,t,n)=>{let o;const r=cn(e,n)?n.firstChild:n;if(((e,t)=>{cn(e,t)&&mn(t.firstChild)&&e.remove(t.firstChild,!0)})(e,t),!Ke(e,t,!0))for(;o=t.firstChild;)r.appendChild(o)},pn=(e,t,n)=>{let o;const r=t.parentNode;if(!ze(e,t)||!ze(e,n))return;Pe(n.lastChild)&&(o=n.lastChild),r===n.lastChild&&He(r.previousSibling)&&e.remove(r.previousSibling);const s=n.lastChild;s&&He(s)&&t.hasChildNodes()&&e.remove(s),Ke(e,n,!0)&&fe($(n)),un(e,t,n),o&&n.appendChild(o);const i=((e,t)=>{const n=e.dom,o=t.dom;return n!==o&&n.contains(o)})($(n),$(t))?e.getParents(t,Pe,n):[];e.remove(t),S(i,(t=>{Ke(e,t)&&t!==e.getRoot()&&e.remove(t)}))},gn=(e,t)=>{const n=e.dom,o=e.selection,r=o.getStart(),s=at(e,r),i=n.getParent(o.getStart(),"LI",s);if(i){const r=i.parentElement;if(r===e.getBody()&&Ke(n,r))return!0;const l=ot(o.getRng()),a=n.getParent(dn(e,l,t,s),"LI",s),d=a&&(t?n.isChildOf(i,a):n.isChildOf(a,i));if(a&&a!==i&&!d)return e.undoManager.transact((()=>{var n,o;t?((e,t,n,o)=>{const r=e.dom;if(r.isEmpty(o))((e,t,n)=>{fe($(n)),pn(e.dom,t,n),e.selection.setCursorLocation(n,0)})(e,n,o);else{const s=Qt(t);pn(r,n,o),e.selection.setRng(Wt(s))}})(e,l,a,i):(null===(o=(n=i).parentNode)||void 0===o?void 0:o.firstChild)===n?Ft(e):((e,t,n,o)=>{const r=Qt(t);pn(e.dom,n,o);const s=Wt(r);e.selection.setRng(s)})(e,l,i,a)})),!0;if(d&&!t&&a!==i)return e.undoManager.transact((()=>{if(l.commonAncestorContainer.parentElement){const t=Qt(l),o=l.commonAncestorContainer.parentElement;un(n,l.commonAncestorContainer.parentElement,a),o.remove();const r=Wt(t);e.selection.setRng(r)}})),!0;if(!a&&!t&&0===l.startOffset&&0===l.endOffset)return e.undoManager.transact((()=>{Vt(e)})),!0}return!1},hn=e=>{const t=e.selection.getStart(),n=at(e,t);return e.dom.getParent(t,"LI,DT,DD",n)||lt(e).length>0},fn=(e,t)=>{const n=e.selection;return!ht(e,n.getNode())&&(n.isCollapsed()?((e,t)=>gn(e,t)||((e,t)=>{const n=e.dom,o=e.selection.getStart(),r=at(e,o),s=n.getParent(o,n.isBlock,r);if(s&&n.isEmpty(s)){const o=ot(e.selection.getRng()),i=n.getParent(dn(e,o,t,r),"LI",r);if(i){const l=e=>C(["td","th","caption"],Q(e)),a=e=>e.dom===r;return!!((e,t,n=u)=>P(e,t,n).getOr(e.isNone()&&t.isNone()))(me($(i),l,a),me($(o.startContainer),l,a),H)&&(e.undoManager.transact((()=>{const o=i.parentNode;((e,t,n)=>{const o=e.getParent(t.parentNode,e.isBlock,n);e.remove(t),o&&e.isEmpty(o)&&e.remove(o)})(n,s,r),tn(n,o),e.selection.select(i,!0),e.selection.collapse(t)})),!0)}}return!1})(e,t))(e,t):(e=>!!hn(e)&&(e.undoManager.transact((()=>{e.execCommand("Delete"),an(e.dom,e.getBody())})),!0))(e))},yn=e=>{const t=E(Ct(e).split("")),n=N(t,((e,t)=>{const n=e.toUpperCase().charCodeAt(0)-"A".charCodeAt(0)+1;return Math.pow(26,t)*n}));return O(n,((e,t)=>e+t),0)},vn=e=>{if(--e<0)return"";{const t=e%26,n=Math.floor(e/26);return vn(n)+String.fromCharCode("A".charCodeAt(0)+t)}},Cn=e=>{const t=parseInt(e.start,10);return M(e.listStyleType,"upper-alpha")?vn(t):M(e.listStyleType,"lower-alpha")?vn(t).toLowerCase():e.start},bn=(e,t)=>()=>{const n=it(e);return l(n)&&n.nodeName===t},Nn=e=>{e.addCommand("mceListProps",(()=>{(e=>{const t=it(e);Re(t)&&!ht(e,t)&&e.windowManager.open({title:"List Properties",body:{type:"panel",items:[{type:"input",name:"start",label:"Start list at number",inputMode:"numeric"}]},initialData:{start:Cn({start:e.dom.getAttrib(t,"start","1"),listStyleType:h.from(e.dom.getStyle(t,"list-style-type"))})},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],onSubmit:t=>{(e=>{switch((e=>/^[0-9]+$/.test(e)?2:/^[A-Z]+$/.test(e)?0:/^[a-z]+$/.test(e)?1:e.length>0?4:3)(e)){case 2:return h.some({listStyleType:h.none(),start:e});case 0:return h.some({listStyleType:h.some("upper-alpha"),start:yn(e).toString()});case 1:return h.some({listStyleType:h.some("lower-alpha"),start:yn(e).toString()});case 3:return h.some({listStyleType:h.none(),start:""});case 4:return h.none()}})(t.getData().start).each((t=>{e.execCommand("mceListUpdate",!1,{attrs:{start:"1"===t.start?"":t.start},styles:{"list-style-type":t.listStyleType.getOr("")}})})),t.close()}})})(e)}))};var Sn=tinymce.util.Tools.resolve("tinymce.html.Node");const Ln=e=>3===e.type,On=e=>0===e.length,An=e=>{const t=(t,n)=>{const o=Sn.create("li");S(t,(e=>o.append(e))),n?e.insert(o,n,!0):e.append(o)},n=O(e.children(),((e,n)=>Ln(n)?[...e,n]:On(e)||Ln(n)?e:(t(e,n),[])),[]);On(n)||t(n)},Tn=(e,t)=>n=>(n.setEnabled(e.selection.isEditable()),ft(e,(o=>{n.setActive(pt(o.parents,t)),n.setEnabled(!ht(e,o.element)&&e.selection.isEditable())}))),xn=(e,t)=>n=>ft(e,(o=>n.setEnabled(pt(o.parents,t)&&!ht(e,o.element))));e.add("lists",(e=>((e=>{(0,e.options.register)("lists_indent_on_tab",{processor:"boolean",default:!0})})(e),(e=>{e.on("PreInit",(()=>{const{parser:t}=e;t.addNodeFilter("ul,ol",(e=>S(e,An)))}))})(e),e.hasPlugin("rtc",!0)?Nn(e):((e=>{We(e)&&(e=>{e.on("keydown",(t=>{t.keyCode!==be.TAB||be.metaKeyPressed(t)||e.undoManager.transact((()=>{(t.shiftKey?Ft(e):Ht(e))&&t.preventDefault()}))}))})(e),(e=>{e.on("ExecCommand",(t=>{const n=t.command.toLowerCase();"delete"!==n&&"forwarddelete"!==n||!hn(e)||an(e.dom,e.getBody())})),e.on("keydown",(t=>{t.keyCode===be.BACKSPACE?fn(e,!1)&&t.preventDefault():t.keyCode===be.DELETE&&fn(e,!0)&&t.preventDefault()}))})(e)})(e),(e=>{e.on("BeforeExecCommand",(t=>{const n=t.command.toLowerCase();"indent"===n?Ht(e):"outdent"===n&&Ft(e)})),e.addCommand("InsertUnorderedList",((t,n)=>{sn(e,"UL",n)})),e.addCommand("InsertOrderedList",((t,n)=>{sn(e,"OL",n)})),e.addCommand("InsertDefinitionList",((t,n)=>{sn(e,"DL",n)})),e.addCommand("RemoveList",(()=>{Vt(e)})),Nn(e),e.addCommand("mceListUpdate",((t,n)=>{r(n)&&((e,t)=>{const n=it(e);null===n||ht(e,n)||e.undoManager.transact((()=>{r(t.styles)&&e.dom.setStyles(n,t.styles),r(t.attrs)&&Le(t.attrs,((t,o)=>e.dom.setAttrib(n,o,t)))}))})(e,n)})),e.addQueryStateHandler("InsertUnorderedList",bn(e,"UL")),e.addQueryStateHandler("InsertOrderedList",bn(e,"OL")),e.addQueryStateHandler("InsertDefinitionList",bn(e,"DL"))})(e)),(e=>{const t=t=>()=>e.execCommand(t);e.hasPlugin("advlist")||(e.ui.registry.addToggleButton("numlist",{icon:"ordered-list",active:!1,tooltip:"Numbered list",onAction:t("InsertOrderedList"),onSetup:Tn(e,"OL")}),e.ui.registry.addToggleButton("bullist",{icon:"unordered-list",active:!1,tooltip:"Bullet list",onAction:t("InsertUnorderedList"),onSetup:Tn(e,"UL")}))})(e),(e=>{const t={text:"List properties...",icon:"ordered-list",onAction:()=>e.execCommand("mceListProps"),onSetup:xn(e,"OL")};e.ui.registry.addMenuItem("listprops",t),e.ui.registry.addContextMenu("lists",{update:t=>{const n=it(e,t);return Re(n)?["listprops"]:[]}})})(e),(e=>({backspaceDelete:t=>{fn(e,t)}}))(e))))}();admin/assets/vendor/tinymce/js/tinymce/plugins/autosave/plugin.min.js000064400000006400151213255200022111 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=("string",t=>"string"===(t=>{const e=typeof t;return null===t?"null":"object"===e&&Array.isArray(t)?"array":"object"===e&&(r=o=t,(a=String).prototype.isPrototypeOf(r)||(null===(s=o.constructor)||void 0===s?void 0:s.name)===a.name)?"string":e;var r,o,a,s})(t));const r=(void 0,t=>undefined===t);var o=tinymce.util.Tools.resolve("tinymce.util.Delay"),a=tinymce.util.Tools.resolve("tinymce.util.LocalStorage"),s=tinymce.util.Tools.resolve("tinymce.util.Tools");const n=t=>{const e=/^(\d+)([ms]?)$/.exec(t);return(e&&e[2]?{s:1e3,m:6e4}[e[2]]:1)*parseInt(t,10)},i=t=>e=>e.options.get(t),u=i("autosave_ask_before_unload"),l=i("autosave_restore_when_empty"),c=i("autosave_interval"),d=i("autosave_retention"),m=t=>{const e=document.location;return t.options.get("autosave_prefix").replace(/{path}/g,e.pathname).replace(/{query}/g,e.search).replace(/{hash}/g,e.hash).replace(/{id}/g,t.id)},v=(t,e)=>{if(r(e))return t.dom.isEmpty(t.getBody());{const r=s.trim(e);if(""===r)return!0;{const e=(new DOMParser).parseFromString(r,"text/html");return t.dom.isEmpty(e)}}},f=t=>{var e;const r=parseInt(null!==(e=a.getItem(m(t)+"time"))&&void 0!==e?e:"0",10)||0;return!((new Date).getTime()-r>d(t)&&(p(t,!1),1))},p=(t,e)=>{const r=m(t);a.removeItem(r+"draft"),a.removeItem(r+"time"),!1!==e&&(t=>{t.dispatch("RemoveDraft")})(t)},g=t=>{const e=m(t);!v(t)&&t.isDirty()&&(a.setItem(e+"draft",t.getContent({format:"raw",no_events:!0})),a.setItem(e+"time",(new Date).getTime().toString()),(t=>{t.dispatch("StoreDraft")})(t))},y=t=>{var e;const r=m(t);f(t)&&(t.setContent(null!==(e=a.getItem(r+"draft"))&&void 0!==e?e:"",{format:"raw"}),(t=>{t.dispatch("RestoreDraft")})(t))};var D=tinymce.util.Tools.resolve("tinymce.EditorManager");const h=t=>e=>{e.setEnabled(f(t));const r=()=>e.setEnabled(f(t));return t.on("StoreDraft RestoreDraft RemoveDraft",r),()=>t.off("StoreDraft RestoreDraft RemoveDraft",r)};t.add("autosave",(t=>((t=>{const r=t.options.register,o=t=>{const r=e(t);return r?{value:n(t),valid:r}:{valid:!1,message:"Must be a string."}};r("autosave_ask_before_unload",{processor:"boolean",default:!0}),r("autosave_prefix",{processor:"string",default:"tinymce-autosave-{path}{query}{hash}-{id}-"}),r("autosave_restore_when_empty",{processor:"boolean",default:!1}),r("autosave_interval",{processor:o,default:"30s"}),r("autosave_retention",{processor:o,default:"20m"})})(t),(t=>{t.editorManager.on("BeforeUnload",(t=>{let e;s.each(D.get(),(t=>{t.plugins.autosave&&t.plugins.autosave.storeDraft(),!e&&t.isDirty()&&u(t)&&(e=t.translate("You have unsaved changes are you sure you want to navigate away?"))})),e&&(t.preventDefault(),t.returnValue=e)}))})(t),(t=>{(t=>{const e=c(t);o.setEditorInterval(t,(()=>{g(t)}),e)})(t);const e=()=>{(t=>{t.undoManager.transact((()=>{y(t),p(t)})),t.focus()})(t)};t.ui.registry.addButton("restoredraft",{tooltip:"Restore last draft",icon:"restore-draft",onAction:e,onSetup:h(t)}),t.ui.registry.addMenuItem("restoredraft",{text:"Restore last draft",icon:"restore-draft",onAction:e,onSetup:h(t)})})(t),t.on("init",(()=>{l(t)&&t.dom.isEmpty(t.getBody())&&y(t)})),(t=>({hasDraft:()=>f(t),storeDraft:()=>g(t),restoreDraft:()=>y(t),removeDraft:e=>p(t,e),isEmpty:e=>v(t,e)}))(t))))}();admin/assets/vendor/tinymce/js/tinymce/plugins/importcss/plugin.min.js000064400000007743151213255200022320 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(s=r=e,(o=String).prototype.isPrototypeOf(s)||(null===(n=r.constructor)||void 0===n?void 0:n.name)===o.name)?"string":t;var s,r,o,n})(t)===e,s=t("string"),r=t("object"),o=t("array"),n=("function",e=>"function"==typeof e);var c=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),i=tinymce.util.Tools.resolve("tinymce.EditorManager"),l=tinymce.util.Tools.resolve("tinymce.Env"),a=tinymce.util.Tools.resolve("tinymce.util.Tools");const p=e=>t=>t.options.get(e),u=p("importcss_merge_classes"),m=p("importcss_exclusive"),f=p("importcss_selector_converter"),y=p("importcss_selector_filter"),d=p("importcss_groups"),h=p("importcss_append"),_=p("importcss_file_filter"),g=p("skin"),v=p("skin_url"),b=Array.prototype.push,x=/^\.(?:ephox|tiny-pageembed|mce)(?:[.-]+\w+)+$/,T=e=>s(e)?t=>-1!==t.indexOf(e):e instanceof RegExp?t=>e.test(t):e,S=(e,t)=>{let s={};const r=/^(?:([a-z0-9\-_]+))?(\.[a-z0-9_\-\.]+)$/i.exec(t);if(!r)return;const o=r[1],n=r[2].substr(1).split(".").join(" "),c=a.makeMap("a,img");return r[1]?(s={title:t},e.schema.getTextBlockElements()[o]?s.block=o:e.schema.getBlockElements()[o]||c[o.toLowerCase()]?s.selector=o:s.inline=o):r[2]&&(s={inline:"span",title:t.substr(1),classes:n}),u(e)?s.classes=n:s.attributes={class:n},s},k=(e,t)=>null===t||m(e),w=e=>{e.on("init",(()=>{const t=(()=>{const e=[],t=[],s={};return{addItemToGroup:(e,r)=>{s[e]?s[e].push(r):(t.push(e),s[e]=[r])},addItem:t=>{e.push(t)},toFormats:()=>{return(r=t,n=e=>{const t=s[e];return 0===t.length?[]:[{title:e,items:t}]},(e=>{const t=[];for(let s=0,r=e.length;s<r;++s){if(!o(e[s]))throw new Error("Arr.flatten item "+s+" was not an array, input: "+e);b.apply(t,e[s])}return t})(((e,t)=>{const s=e.length,r=new Array(s);for(let o=0;o<s;o++){const s=e[o];r[o]=t(s,o)}return r})(r,n))).concat(e);var r,n}}})(),r={},n=T(y(e)),p=(e=>a.map(e,(e=>a.extend({},e,{original:e,selectors:{},filter:T(e.filter)}))))(d(e)),u=(t,s)=>{if(((e,t,s,r)=>!(k(e,s)?t in r:t in s.selectors))(e,t,s,r)){((e,t,s,r)=>{k(e,s)?r[t]=!0:s.selectors[t]=!0})(e,t,s,r);const o=((e,t,s,r)=>{let o;const n=f(e);return o=r&&r.selector_converter?r.selector_converter:n||(()=>S(e,s)),o.call(t,s,r)})(e,e.plugins.importcss,t,s);if(o){const t=o.name||c.DOM.uniqueId();return e.formatter.register(t,o),{title:o.title,format:t}}}return null};a.each(((e,t,r)=>{const o=[],n={},c=(t,n)=>{let p,u=t.href;if(u=(e=>{const t=l.cacheSuffix;return s(e)&&(e=e.replace("?"+t,"").replace("&"+t,"")),e})(u),u&&(!r||r(u,n))&&!((e,t)=>{const s=g(e);if(s){const r=v(e),o=r?e.documentBaseURI.toAbsolute(r):i.baseURL+"/skins/ui/"+s,n=i.baseURL+"/skins/content/";return t===o+"/content"+(e.inline?".inline":"")+".min.css"||-1!==t.indexOf(n)}return!1})(e,u)){a.each(t.imports,(e=>{c(e,!0)}));try{p=t.cssRules||t.rules}catch(e){}a.each(p,(e=>{e.styleSheet&&e.styleSheet?c(e.styleSheet,!0):e.selectorText&&a.each(e.selectorText.split(","),(e=>{o.push(a.trim(e))}))}))}};a.each(e.contentCSS,(e=>{n[e]=!0})),r||(r=(e,t)=>t||n[e]);try{a.each(t.styleSheets,(e=>{c(e)}))}catch(e){}return o})(e,e.getDoc(),T(_(e))),(e=>{if(!x.test(e)&&(!n||n(e))){const s=((e,t)=>a.grep(e,(e=>!e.filter||e.filter(t))))(p,e);if(s.length>0)a.each(s,(s=>{const r=u(e,s);r&&t.addItemToGroup(s.title,r)}));else{const s=u(e,null);s&&t.addItem(s)}}}));const m=t.toFormats();e.dispatch("addStyleModifications",{items:m,replace:!h(e)})}))};e.add("importcss",(e=>((e=>{const t=e.options.register,o=e=>s(e)||n(e)||r(e);t("importcss_merge_classes",{processor:"boolean",default:!0}),t("importcss_exclusive",{processor:"boolean",default:!0}),t("importcss_selector_converter",{processor:"function"}),t("importcss_selector_filter",{processor:o}),t("importcss_file_filter",{processor:o}),t("importcss_groups",{processor:"object[]"}),t("importcss_append",{processor:"boolean",default:!1})})(e),w(e),(e=>({convertSelectorToFormat:t=>S(e,t)}))(e))))}();admin/assets/vendor/tinymce/js/tinymce/plugins/emoticons/js/emojiimages.min.js000064400001454537151213255200023714 0ustar00// Source: npm package: emojilib
// Images provided by twemoji: https://github.com/twitter/twemoji
window.tinymce.Resource.add("tinymce.plugins.emoticons",{100:{keywords:["score","perfect","numbers","century","exam","quiz","test","pass","hundred"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4af}" src="1f4af.png"/>',fitzpatrick_scale:!1,category:"symbols"},1234:{keywords:["numbers","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f522}" src="1f522.png"/>',fitzpatrick_scale:!1,category:"symbols"},grinning:{keywords:["face","smile","happy","joy",":D","grin"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f600}" src="1f600.png"/>',fitzpatrick_scale:!1,category:"people"},grimacing:{keywords:["face","grimace","teeth"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f62c}" src="1f62c.png"/>',fitzpatrick_scale:!1,category:"people"},grin:{keywords:["face","happy","smile","joy","kawaii"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f601}" src="1f601.png"/>',fitzpatrick_scale:!1,category:"people"},joy:{keywords:["face","cry","tears","weep","happy","happytears","haha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f602}" src="1f602.png"/>',fitzpatrick_scale:!1,category:"people"},rofl:{keywords:["face","rolling","floor","laughing","lol","haha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f923}" src="1f923.png"/>',fitzpatrick_scale:!1,category:"people"},partying:{keywords:["face","celebration","woohoo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f973}" src="1f973.png"/>',fitzpatrick_scale:!1,category:"people"},smiley:{keywords:["face","happy","joy","haha",":D",":)","smile","funny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f603}" src="1f603.png"/>',fitzpatrick_scale:!1,category:"people"},smile:{keywords:["face","happy","joy","funny","haha","laugh","like",":D",":)"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f604}" src="1f604.png"/>',fitzpatrick_scale:!1,category:"people"},sweat_smile:{keywords:["face","hot","happy","laugh","sweat","smile","relief"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f605}" src="1f605.png"/>',fitzpatrick_scale:!1,category:"people"},laughing:{keywords:["happy","joy","lol","satisfied","haha","face","glad","XD","laugh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f606}" src="1f606.png"/>',fitzpatrick_scale:!1,category:"people"},innocent:{keywords:["face","angel","heaven","halo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f607}" src="1f607.png"/>',fitzpatrick_scale:!1,category:"people"},wink:{keywords:["face","happy","mischievous","secret",";)","smile","eye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f609}" src="1f609.png"/>',fitzpatrick_scale:!1,category:"people"},blush:{keywords:["face","smile","happy","flushed","crush","embarrassed","shy","joy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f60a}" src="1f60a.png"/>',fitzpatrick_scale:!1,category:"people"},slightly_smiling_face:{keywords:["face","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f642}" src="1f642.png"/>',fitzpatrick_scale:!1,category:"people"},upside_down_face:{keywords:["face","flipped","silly","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f643}" src="1f643.png"/>',fitzpatrick_scale:!1,category:"people"},relaxed:{keywords:["face","blush","massage","happiness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u263a\ufe0f" src="263a.png"/>',fitzpatrick_scale:!1,category:"people"},yum:{keywords:["happy","joy","tongue","smile","face","silly","yummy","nom","delicious","savouring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f60b}" src="1f60b.png"/>',fitzpatrick_scale:!1,category:"people"},relieved:{keywords:["face","relaxed","phew","massage","happiness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f60c}" src="1f60c.png"/>',fitzpatrick_scale:!1,category:"people"},heart_eyes:{keywords:["face","love","like","affection","valentines","infatuation","crush","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f60d}" src="1f60d.png"/>',fitzpatrick_scale:!1,category:"people"},smiling_face_with_three_hearts:{keywords:["face","love","like","affection","valentines","infatuation","crush","hearts","adore"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f970}" src="1f970.png"/>',fitzpatrick_scale:!1,category:"people"},kissing_heart:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f618}" src="1f618.png"/>',fitzpatrick_scale:!1,category:"people"},kissing:{keywords:["love","like","face","3","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f617}" src="1f617.png"/>',fitzpatrick_scale:!1,category:"people"},kissing_smiling_eyes:{keywords:["face","affection","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f619}" src="1f619.png"/>',fitzpatrick_scale:!1,category:"people"},kissing_closed_eyes:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f61a}" src="1f61a.png"/>',fitzpatrick_scale:!1,category:"people"},stuck_out_tongue_winking_eye:{keywords:["face","prank","childish","playful","mischievous","smile","wink","tongue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f61c}" src="1f61c.png"/>',fitzpatrick_scale:!1,category:"people"},zany:{keywords:["face","goofy","crazy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f92a}" src="1f92a.png"/>',fitzpatrick_scale:!1,category:"people"},raised_eyebrow:{keywords:["face","distrust","scepticism","disapproval","disbelief","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f928}" src="1f928.png"/>',fitzpatrick_scale:!1,category:"people"},monocle:{keywords:["face","stuffy","wealthy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d0}" src="1f9d0.png"/>',fitzpatrick_scale:!1,category:"people"},stuck_out_tongue_closed_eyes:{keywords:["face","prank","playful","mischievous","smile","tongue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f61d}" src="1f61d.png"/>',fitzpatrick_scale:!1,category:"people"},stuck_out_tongue:{keywords:["face","prank","childish","playful","mischievous","smile","tongue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f61b}" src="1f61b.png"/>',fitzpatrick_scale:!1,category:"people"},money_mouth_face:{keywords:["face","rich","dollar","money"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f911}" src="1f911.png"/>',fitzpatrick_scale:!1,category:"people"},nerd_face:{keywords:["face","nerdy","geek","dork"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f913}" src="1f913.png"/>',fitzpatrick_scale:!1,category:"people"},sunglasses:{keywords:["face","cool","smile","summer","beach","sunglass"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f60e}" src="1f60e.png"/>',fitzpatrick_scale:!1,category:"people"},star_struck:{keywords:["face","smile","starry","eyes","grinning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f929}" src="1f929.png"/>',fitzpatrick_scale:!1,category:"people"},clown_face:{keywords:["face"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f921}" src="1f921.png"/>',fitzpatrick_scale:!1,category:"people"},cowboy_hat_face:{keywords:["face","cowgirl","hat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f920}" src="1f920.png"/>',fitzpatrick_scale:!1,category:"people"},hugs:{keywords:["face","smile","hug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f917}" src="1f917.png"/>',fitzpatrick_scale:!1,category:"people"},smirk:{keywords:["face","smile","mean","prank","smug","sarcasm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f60f}" src="1f60f.png"/>',fitzpatrick_scale:!1,category:"people"},no_mouth:{keywords:["face","hellokitty"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f636}" src="1f636.png"/>',fitzpatrick_scale:!1,category:"people"},neutral_face:{keywords:["indifference","meh",":|","neutral"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f610}" src="1f610.png"/>',fitzpatrick_scale:!1,category:"people"},expressionless:{keywords:["face","indifferent","-_-","meh","deadpan"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f611}" src="1f611.png"/>',fitzpatrick_scale:!1,category:"people"},unamused:{keywords:["indifference","bored","straight face","serious","sarcasm","unimpressed","skeptical","dubious","side_eye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f612}" src="1f612.png"/>',fitzpatrick_scale:!1,category:"people"},roll_eyes:{keywords:["face","eyeroll","frustrated"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f644}" src="1f644.png"/>',fitzpatrick_scale:!1,category:"people"},thinking:{keywords:["face","hmmm","think","consider"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f914}" src="1f914.png"/>',fitzpatrick_scale:!1,category:"people"},lying_face:{keywords:["face","lie","pinocchio"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f925}" src="1f925.png"/>',fitzpatrick_scale:!1,category:"people"},hand_over_mouth:{keywords:["face","whoops","shock","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f92d}" src="1f92d.png"/>',fitzpatrick_scale:!1,category:"people"},shushing:{keywords:["face","quiet","shhh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f92b}" src="1f92b.png"/>',fitzpatrick_scale:!1,category:"people"},symbols_over_mouth:{keywords:["face","swearing","cursing","cussing","profanity","expletive"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f92c}" src="1f92c.png"/>',fitzpatrick_scale:!1,category:"people"},exploding_head:{keywords:["face","shocked","mind","blown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f92f}" src="1f92f.png"/>',fitzpatrick_scale:!1,category:"people"},flushed:{keywords:["face","blush","shy","flattered"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f633}" src="1f633.png"/>',fitzpatrick_scale:!1,category:"people"},disappointed:{keywords:["face","sad","upset","depressed",":("],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f61e}" src="1f61e.png"/>',fitzpatrick_scale:!1,category:"people"},worried:{keywords:["face","concern","nervous",":("],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f61f}" src="1f61f.png"/>',fitzpatrick_scale:!1,category:"people"},angry:{keywords:["mad","face","annoyed","frustrated"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f620}" src="1f620.png"/>',fitzpatrick_scale:!1,category:"people"},rage:{keywords:["angry","mad","hate","despise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f621}" src="1f621.png"/>',fitzpatrick_scale:!1,category:"people"},pensive:{keywords:["face","sad","depressed","upset"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f614}" src="1f614.png"/>',fitzpatrick_scale:!1,category:"people"},confused:{keywords:["face","indifference","huh","weird","hmmm",":/"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f615}" src="1f615.png"/>',fitzpatrick_scale:!1,category:"people"},slightly_frowning_face:{keywords:["face","frowning","disappointed","sad","upset"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f641}" src="1f641.png"/>',fitzpatrick_scale:!1,category:"people"},frowning_face:{keywords:["face","sad","upset","frown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2639" src="2639.png"/>',fitzpatrick_scale:!1,category:"people"},persevere:{keywords:["face","sick","no","upset","oops"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f623}" src="1f623.png"/>',fitzpatrick_scale:!1,category:"people"},confounded:{keywords:["face","confused","sick","unwell","oops",":S"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f616}" src="1f616.png"/>',fitzpatrick_scale:!1,category:"people"},tired_face:{keywords:["sick","whine","upset","frustrated"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f62b}" src="1f62b.png"/>',fitzpatrick_scale:!1,category:"people"},weary:{keywords:["face","tired","sleepy","sad","frustrated","upset"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f629}" src="1f629.png"/>',fitzpatrick_scale:!1,category:"people"},pleading:{keywords:["face","begging","mercy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f97a}" src="1f97a.png"/>',fitzpatrick_scale:!1,category:"people"},triumph:{keywords:["face","gas","phew","proud","pride"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f624}" src="1f624.png"/>',fitzpatrick_scale:!1,category:"people"},open_mouth:{keywords:["face","surprise","impressed","wow","whoa",":O"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f62e}" src="1f62e.png"/>',fitzpatrick_scale:!1,category:"people"},scream:{keywords:["face","munch","scared","omg"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f631}" src="1f631.png"/>',fitzpatrick_scale:!1,category:"people"},fearful:{keywords:["face","scared","terrified","nervous","oops","huh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f628}" src="1f628.png"/>',fitzpatrick_scale:!1,category:"people"},cold_sweat:{keywords:["face","nervous","sweat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f630}" src="1f630.png"/>',fitzpatrick_scale:!1,category:"people"},hushed:{keywords:["face","woo","shh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f62f}" src="1f62f.png"/>',fitzpatrick_scale:!1,category:"people"},frowning:{keywords:["face","aw","what"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f626}" src="1f626.png"/>',fitzpatrick_scale:!1,category:"people"},anguished:{keywords:["face","stunned","nervous"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f627}" src="1f627.png"/>',fitzpatrick_scale:!1,category:"people"},cry:{keywords:["face","tears","sad","depressed","upset",":'("],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f622}" src="1f622.png"/>',fitzpatrick_scale:!1,category:"people"},disappointed_relieved:{keywords:["face","phew","sweat","nervous"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f625}" src="1f625.png"/>',fitzpatrick_scale:!1,category:"people"},drooling_face:{keywords:["face"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f924}" src="1f924.png"/>',fitzpatrick_scale:!1,category:"people"},sleepy:{keywords:["face","tired","rest","nap"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f62a}" src="1f62a.png"/>',fitzpatrick_scale:!1,category:"people"},sweat:{keywords:["face","hot","sad","tired","exercise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f613}" src="1f613.png"/>',fitzpatrick_scale:!1,category:"people"},hot:{keywords:["face","feverish","heat","red","sweating"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f975}" src="1f975.png"/>',fitzpatrick_scale:!1,category:"people"},cold:{keywords:["face","blue","freezing","frozen","frostbite","icicles"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f976}" src="1f976.png"/>',fitzpatrick_scale:!1,category:"people"},sob:{keywords:["face","cry","tears","sad","upset","depressed"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f62d}" src="1f62d.png"/>',fitzpatrick_scale:!1,category:"people"},dizzy_face:{keywords:["spent","unconscious","xox","dizzy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f635}" src="1f635.png"/>',fitzpatrick_scale:!1,category:"people"},astonished:{keywords:["face","xox","surprised","poisoned"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f632}" src="1f632.png"/>',fitzpatrick_scale:!1,category:"people"},zipper_mouth_face:{keywords:["face","sealed","zipper","secret"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f910}" src="1f910.png"/>',fitzpatrick_scale:!1,category:"people"},nauseated_face:{keywords:["face","vomit","gross","green","sick","throw up","ill"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f922}" src="1f922.png"/>',fitzpatrick_scale:!1,category:"people"},sneezing_face:{keywords:["face","gesundheit","sneeze","sick","allergy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f927}" src="1f927.png"/>',fitzpatrick_scale:!1,category:"people"},vomiting:{keywords:["face","sick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f92e}" src="1f92e.png"/>',fitzpatrick_scale:!1,category:"people"},mask:{keywords:["face","sick","ill","disease"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f637}" src="1f637.png"/>',fitzpatrick_scale:!1,category:"people"},face_with_thermometer:{keywords:["sick","temperature","thermometer","cold","fever"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f912}" src="1f912.png"/>',fitzpatrick_scale:!1,category:"people"},face_with_head_bandage:{keywords:["injured","clumsy","bandage","hurt"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f915}" src="1f915.png"/>',fitzpatrick_scale:!1,category:"people"},woozy:{keywords:["face","dizzy","intoxicated","tipsy","wavy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f974}" src="1f974.png"/>',fitzpatrick_scale:!1,category:"people"},sleeping:{keywords:["face","tired","sleepy","night","zzz"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f634}" src="1f634.png"/>',fitzpatrick_scale:!1,category:"people"},zzz:{keywords:["sleepy","tired","dream"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a4}" src="1f4a4.png"/>',fitzpatrick_scale:!1,category:"people"},poop:{keywords:["hankey","shitface","fail","turd","shit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a9}" src="1f4a9.png"/>',fitzpatrick_scale:!1,category:"people"},smiling_imp:{keywords:["devil","horns"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f608}" src="1f608.png"/>',fitzpatrick_scale:!1,category:"people"},imp:{keywords:["devil","angry","horns"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f47f}" src="1f47f.png"/>',fitzpatrick_scale:!1,category:"people"},japanese_ogre:{keywords:["monster","red","mask","halloween","scary","creepy","devil","demon","japanese","ogre"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f479}" src="1f479.png"/>',fitzpatrick_scale:!1,category:"people"},japanese_goblin:{keywords:["red","evil","mask","monster","scary","creepy","japanese","goblin"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f47a}" src="1f47a.png"/>',fitzpatrick_scale:!1,category:"people"},skull:{keywords:["dead","skeleton","creepy","death"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f480}" src="1f480.png"/>',fitzpatrick_scale:!1,category:"people"},ghost:{keywords:["halloween","spooky","scary"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f47b}" src="1f47b.png"/>',fitzpatrick_scale:!1,category:"people"},alien:{keywords:["UFO","paul","weird","outer_space"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f47d}" src="1f47d.png"/>',fitzpatrick_scale:!1,category:"people"},robot:{keywords:["computer","machine","bot"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f916}" src="1f916.png"/>',fitzpatrick_scale:!1,category:"people"},smiley_cat:{keywords:["animal","cats","happy","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f63a}" src="1f63a.png"/>',fitzpatrick_scale:!1,category:"people"},smile_cat:{keywords:["animal","cats","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f638}" src="1f638.png"/>',fitzpatrick_scale:!1,category:"people"},joy_cat:{keywords:["animal","cats","haha","happy","tears"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f639}" src="1f639.png"/>',fitzpatrick_scale:!1,category:"people"},heart_eyes_cat:{keywords:["animal","love","like","affection","cats","valentines","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f63b}" src="1f63b.png"/>',fitzpatrick_scale:!1,category:"people"},smirk_cat:{keywords:["animal","cats","smirk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f63c}" src="1f63c.png"/>',fitzpatrick_scale:!1,category:"people"},kissing_cat:{keywords:["animal","cats","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f63d}" src="1f63d.png"/>',fitzpatrick_scale:!1,category:"people"},scream_cat:{keywords:["animal","cats","munch","scared","scream"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f640}" src="1f640.png"/>',fitzpatrick_scale:!1,category:"people"},crying_cat_face:{keywords:["animal","tears","weep","sad","cats","upset","cry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f63f}" src="1f63f.png"/>',fitzpatrick_scale:!1,category:"people"},pouting_cat:{keywords:["animal","cats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f63e}" src="1f63e.png"/>',fitzpatrick_scale:!1,category:"people"},palms_up:{keywords:["hands","gesture","cupped","prayer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f932}" src="1f932.png"/>',fitzpatrick_scale:!0,category:"people"},raised_hands:{keywords:["gesture","hooray","yea","celebration","hands"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64c}" src="1f64c.png"/>',fitzpatrick_scale:!0,category:"people"},clap:{keywords:["hands","praise","applause","congrats","yay"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f44f}" src="1f44f.png"/>',fitzpatrick_scale:!0,category:"people"},wave:{keywords:["hands","gesture","goodbye","solong","farewell","hello","hi","palm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f44b}" src="1f44b.png"/>',fitzpatrick_scale:!0,category:"people"},call_me_hand:{keywords:["hands","gesture"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f919}" src="1f919.png"/>',fitzpatrick_scale:!0,category:"people"},"+1":{keywords:["thumbsup","yes","awesome","good","agree","accept","cool","hand","like"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f44d}" src="1f44d.png"/>',fitzpatrick_scale:!0,category:"people"},"-1":{keywords:["thumbsdown","no","dislike","hand"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f44e}" src="1f44e.png"/>',fitzpatrick_scale:!0,category:"people"},facepunch:{keywords:["angry","violence","fist","hit","attack","hand"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f44a}" src="1f44a.png"/>',fitzpatrick_scale:!0,category:"people"},fist:{keywords:["fingers","hand","grasp"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u270a" src="270a.png"/>',fitzpatrick_scale:!0,category:"people"},fist_left:{keywords:["hand","fistbump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f91b}" src="1f91b.png"/>',fitzpatrick_scale:!0,category:"people"},fist_right:{keywords:["hand","fistbump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f91c}" src="1f91c.png"/>',fitzpatrick_scale:!0,category:"people"},v:{keywords:["fingers","ohyeah","hand","peace","victory","two"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u270c" src="270c.png"/>',fitzpatrick_scale:!0,category:"people"},ok_hand:{keywords:["fingers","limbs","perfect","ok","okay"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f44c}" src="1f44c.png"/>',fitzpatrick_scale:!0,category:"people"},raised_hand:{keywords:["fingers","stop","highfive","palm","ban"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u270b" src="270b.png"/>',fitzpatrick_scale:!0,category:"people"},raised_back_of_hand:{keywords:["fingers","raised","backhand"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f91a}" src="1f91a.png"/>',fitzpatrick_scale:!0,category:"people"},open_hands:{keywords:["fingers","butterfly","hands","open"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f450}" src="1f450.png"/>',fitzpatrick_scale:!0,category:"people"},muscle:{keywords:["arm","flex","hand","summer","strong","biceps"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4aa}" src="1f4aa.png"/>',fitzpatrick_scale:!0,category:"people"},pray:{keywords:["please","hope","wish","namaste","highfive"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64f}" src="1f64f.png"/>',fitzpatrick_scale:!0,category:"people"},foot:{keywords:["kick","stomp"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b6}" src="1f9b6.png"/>',fitzpatrick_scale:!0,category:"people"},leg:{keywords:["kick","limb"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b5}" src="1f9b5.png"/>',fitzpatrick_scale:!0,category:"people"},handshake:{keywords:["agreement","shake"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f91d}" src="1f91d.png"/>',fitzpatrick_scale:!1,category:"people"},point_up:{keywords:["hand","fingers","direction","up"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u261d" src="261d.png"/>',fitzpatrick_scale:!0,category:"people"},point_up_2:{keywords:["fingers","hand","direction","up"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f446}" src="1f446.png"/>',fitzpatrick_scale:!0,category:"people"},point_down:{keywords:["fingers","hand","direction","down"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f447}" src="1f447.png"/>',fitzpatrick_scale:!0,category:"people"},point_left:{keywords:["direction","fingers","hand","left"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f448}" src="1f448.png"/>',fitzpatrick_scale:!0,category:"people"},point_right:{keywords:["fingers","hand","direction","right"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f449}" src="1f449.png"/>',fitzpatrick_scale:!0,category:"people"},fu:{keywords:["hand","fingers","rude","middle","flipping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f595}" src="1f595.png"/>',fitzpatrick_scale:!0,category:"people"},raised_hand_with_fingers_splayed:{keywords:["hand","fingers","palm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f590}" src="1f590.png"/>',fitzpatrick_scale:!0,category:"people"},love_you:{keywords:["hand","fingers","gesture"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f91f}" src="1f91f.png"/>',fitzpatrick_scale:!0,category:"people"},metal:{keywords:["hand","fingers","evil_eye","sign_of_horns","rock_on"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f918}" src="1f918.png"/>',fitzpatrick_scale:!0,category:"people"},crossed_fingers:{keywords:["good","lucky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f91e}" src="1f91e.png"/>',fitzpatrick_scale:!0,category:"people"},vulcan_salute:{keywords:["hand","fingers","spock","star trek"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f596}" src="1f596.png"/>',fitzpatrick_scale:!0,category:"people"},writing_hand:{keywords:["lower_left_ballpoint_pen","stationery","write","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u270d" src="270d.png"/>',fitzpatrick_scale:!0,category:"people"},selfie:{keywords:["camera","phone"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f933}" src="1f933.png"/>',fitzpatrick_scale:!0,category:"people"},nail_care:{keywords:["beauty","manicure","finger","fashion","nail"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f485}" src="1f485.png"/>',fitzpatrick_scale:!0,category:"people"},lips:{keywords:["mouth","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f444}" src="1f444.png"/>',fitzpatrick_scale:!1,category:"people"},tooth:{keywords:["teeth","dentist"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b7}" src="1f9b7.png"/>',fitzpatrick_scale:!1,category:"people"},tongue:{keywords:["mouth","playful"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f445}" src="1f445.png"/>',fitzpatrick_scale:!1,category:"people"},ear:{keywords:["face","hear","sound","listen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f442}" src="1f442.png"/>',fitzpatrick_scale:!0,category:"people"},nose:{keywords:["smell","sniff"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f443}" src="1f443.png"/>',fitzpatrick_scale:!0,category:"people"},eye:{keywords:["face","look","see","watch","stare"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f441}" src="1f441.png"/>',fitzpatrick_scale:!1,category:"people"},eyes:{keywords:["look","watch","stalk","peek","see"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f440}" src="1f440.png"/>',fitzpatrick_scale:!1,category:"people"},brain:{keywords:["smart","intelligent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e0}" src="1f9e0.png"/>',fitzpatrick_scale:!1,category:"people"},bust_in_silhouette:{keywords:["user","person","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f464}" src="1f464.png"/>',fitzpatrick_scale:!1,category:"people"},busts_in_silhouette:{keywords:["user","person","human","group","team"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f465}" src="1f465.png"/>',fitzpatrick_scale:!1,category:"people"},speaking_head:{keywords:["user","person","human","sing","say","talk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5e3}" src="1f5e3.png"/>',fitzpatrick_scale:!1,category:"people"},baby:{keywords:["child","boy","girl","toddler"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f476}" src="1f476.png"/>',fitzpatrick_scale:!0,category:"people"},child:{keywords:["gender-neutral","young"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d2}" src="1f9d2.png"/>',fitzpatrick_scale:!0,category:"people"},boy:{keywords:["man","male","guy","teenager"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f466}" src="1f466.png"/>',fitzpatrick_scale:!0,category:"people"},girl:{keywords:["female","woman","teenager"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f467}" src="1f467.png"/>',fitzpatrick_scale:!0,category:"people"},adult:{keywords:["gender-neutral","person"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d1}" src="1f9d1.png"/>',fitzpatrick_scale:!0,category:"people"},man:{keywords:["mustache","father","dad","guy","classy","sir","moustache"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}" src="1f468.png"/>',fitzpatrick_scale:!0,category:"people"},woman:{keywords:["female","girls","lady"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}" src="1f469.png"/>',fitzpatrick_scale:!0,category:"people"},blonde_woman:{keywords:["woman","female","girl","blonde","person"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f471}\u200d\u2640\ufe0f" src="1f471-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},blonde_man:{keywords:["man","male","boy","blonde","guy","person"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f471}" src="1f471.png"/>',fitzpatrick_scale:!0,category:"people"},bearded_person:{keywords:["person","bewhiskered"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d4}" src="1f9d4.png"/>',fitzpatrick_scale:!0,category:"people"},older_adult:{keywords:["human","elder","senior","gender-neutral"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d3}" src="1f9d3.png"/>',fitzpatrick_scale:!0,category:"people"},older_man:{keywords:["human","male","men","old","elder","senior"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f474}" src="1f474.png"/>',fitzpatrick_scale:!0,category:"people"},older_woman:{keywords:["human","female","women","lady","old","elder","senior"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f475}" src="1f475.png"/>',fitzpatrick_scale:!0,category:"people"},man_with_gua_pi_mao:{keywords:["male","boy","chinese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f472}" src="1f472.png"/>',fitzpatrick_scale:!0,category:"people"},woman_with_headscarf:{keywords:["female","hijab","mantilla","tichel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d5}" src="1f9d5.png"/>',fitzpatrick_scale:!0,category:"people"},woman_with_turban:{keywords:["female","indian","hinduism","arabs","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f473}\u200d\u2640\ufe0f" src="1f473-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_with_turban:{keywords:["male","indian","hinduism","arabs"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f473}" src="1f473.png"/>',fitzpatrick_scale:!0,category:"people"},policewoman:{keywords:["woman","police","law","legal","enforcement","arrest","911","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46e}\u200d\u2640\ufe0f" src="1f46e-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},policeman:{keywords:["man","police","law","legal","enforcement","arrest","911"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46e}" src="1f46e.png"/>',fitzpatrick_scale:!0,category:"people"},construction_worker_woman:{keywords:["female","human","wip","build","construction","worker","labor","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f477}\u200d\u2640\ufe0f" src="1f477-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},construction_worker_man:{keywords:["male","human","wip","guy","build","construction","worker","labor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f477}" src="1f477.png"/>',fitzpatrick_scale:!0,category:"people"},guardswoman:{keywords:["uk","gb","british","female","royal","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f482}\u200d\u2640\ufe0f" src="1f482-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},guardsman:{keywords:["uk","gb","british","male","guy","royal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f482}" src="1f482.png"/>',fitzpatrick_scale:!0,category:"people"},female_detective:{keywords:["human","spy","detective","female","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f575}\ufe0f\u200d\u2640\ufe0f" src="1f575-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},male_detective:{keywords:["human","spy","detective"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f575}" src="1f575.png"/>',fitzpatrick_scale:!0,category:"people"},woman_health_worker:{keywords:["doctor","nurse","therapist","healthcare","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u2695\ufe0f" src="1f469-200d-2695-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_health_worker:{keywords:["doctor","nurse","therapist","healthcare","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u2695\ufe0f" src="1f468-200d-2695-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_farmer:{keywords:["rancher","gardener","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f33e}" src="1f469-200d-1f33e.png"/>',fitzpatrick_scale:!0,category:"people"},man_farmer:{keywords:["rancher","gardener","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f33e}" src="1f468-200d-1f33e.png"/>',fitzpatrick_scale:!0,category:"people"},woman_cook:{keywords:["chef","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f373}" src="1f469-200d-1f373.png"/>',fitzpatrick_scale:!0,category:"people"},man_cook:{keywords:["chef","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f373}" src="1f468-200d-1f373.png"/>',fitzpatrick_scale:!0,category:"people"},woman_student:{keywords:["graduate","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f393}" src="1f469-200d-1f393.png"/>',fitzpatrick_scale:!0,category:"people"},man_student:{keywords:["graduate","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f393}" src="1f468-200d-1f393.png"/>',fitzpatrick_scale:!0,category:"people"},woman_singer:{keywords:["rockstar","entertainer","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f3a4}" src="1f469-200d-1f3a4.png"/>',fitzpatrick_scale:!0,category:"people"},man_singer:{keywords:["rockstar","entertainer","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f3a4}" src="1f468-200d-1f3a4.png"/>',fitzpatrick_scale:!0,category:"people"},woman_teacher:{keywords:["instructor","professor","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f3eb}" src="1f469-200d-1f3eb.png"/>',fitzpatrick_scale:!0,category:"people"},man_teacher:{keywords:["instructor","professor","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f3eb}" src="1f468-200d-1f3eb.png"/>',fitzpatrick_scale:!0,category:"people"},woman_factory_worker:{keywords:["assembly","industrial","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f3ed}" src="1f469-200d-1f3ed.png"/>',fitzpatrick_scale:!0,category:"people"},man_factory_worker:{keywords:["assembly","industrial","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f3ed}" src="1f468-200d-1f3ed.png"/>',fitzpatrick_scale:!0,category:"people"},woman_technologist:{keywords:["coder","developer","engineer","programmer","software","woman","human","laptop","computer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f4bb}" src="1f469-200d-1f4bb.png"/>',fitzpatrick_scale:!0,category:"people"},man_technologist:{keywords:["coder","developer","engineer","programmer","software","man","human","laptop","computer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f4bb}" src="1f468-200d-1f4bb.png"/>',fitzpatrick_scale:!0,category:"people"},woman_office_worker:{keywords:["business","manager","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f4bc}" src="1f469-200d-1f4bc.png"/>',fitzpatrick_scale:!0,category:"people"},man_office_worker:{keywords:["business","manager","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f4bc}" src="1f468-200d-1f4bc.png"/>',fitzpatrick_scale:!0,category:"people"},woman_mechanic:{keywords:["plumber","woman","human","wrench"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f527}" src="1f469-200d-1f527.png"/>',fitzpatrick_scale:!0,category:"people"},man_mechanic:{keywords:["plumber","man","human","wrench"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f527}" src="1f468-200d-1f527.png"/>',fitzpatrick_scale:!0,category:"people"},woman_scientist:{keywords:["biologist","chemist","engineer","physicist","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f52c}" src="1f469-200d-1f52c.png"/>',fitzpatrick_scale:!0,category:"people"},man_scientist:{keywords:["biologist","chemist","engineer","physicist","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f52c}" src="1f468-200d-1f52c.png"/>',fitzpatrick_scale:!0,category:"people"},woman_artist:{keywords:["painter","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f3a8}" src="1f469-200d-1f3a8.png"/>',fitzpatrick_scale:!0,category:"people"},man_artist:{keywords:["painter","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f3a8}" src="1f468-200d-1f3a8.png"/>',fitzpatrick_scale:!0,category:"people"},woman_firefighter:{keywords:["fireman","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f692}" src="1f469-200d-1f692.png"/>',fitzpatrick_scale:!0,category:"people"},man_firefighter:{keywords:["fireman","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f692}" src="1f468-200d-1f692.png"/>',fitzpatrick_scale:!0,category:"people"},woman_pilot:{keywords:["aviator","plane","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u2708\ufe0f" src="1f469-200d-2708-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_pilot:{keywords:["aviator","plane","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u2708\ufe0f" src="1f468-200d-2708-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_astronaut:{keywords:["space","rocket","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f680}" src="1f469-200d-1f680.png"/>',fitzpatrick_scale:!0,category:"people"},man_astronaut:{keywords:["space","rocket","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f680}" src="1f468-200d-1f680.png"/>',fitzpatrick_scale:!0,category:"people"},woman_judge:{keywords:["justice","court","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u2696\ufe0f" src="1f469-200d-2696-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_judge:{keywords:["justice","court","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u2696\ufe0f" src="1f468-200d-2696-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_superhero:{keywords:["woman","female","good","heroine","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b8}\u200d\u2640\ufe0f" src="1f9b8-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_superhero:{keywords:["man","male","good","hero","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b8}\u200d\u2642\ufe0f" src="1f9b8-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_supervillain:{keywords:["woman","female","evil","bad","criminal","heroine","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b9}\u200d\u2640\ufe0f" src="1f9b9-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_supervillain:{keywords:["man","male","evil","bad","criminal","hero","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b9}\u200d\u2642\ufe0f" src="1f9b9-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},mrs_claus:{keywords:["woman","female","xmas","mother christmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f936}" src="1f936.png"/>',fitzpatrick_scale:!0,category:"people"},santa:{keywords:["festival","man","male","xmas","father christmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f385}" src="1f385.png"/>',fitzpatrick_scale:!0,category:"people"},sorceress:{keywords:["woman","female","mage","witch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d9}\u200d\u2640\ufe0f" src="1f9d9-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},wizard:{keywords:["man","male","mage","sorcerer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d9}\u200d\u2642\ufe0f" src="1f9d9-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_elf:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9dd}\u200d\u2640\ufe0f" src="1f9dd-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_elf:{keywords:["man","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9dd}\u200d\u2642\ufe0f" src="1f9dd-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_vampire:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9db}\u200d\u2640\ufe0f" src="1f9db-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_vampire:{keywords:["man","male","dracula"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9db}\u200d\u2642\ufe0f" src="1f9db-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_zombie:{keywords:["woman","female","undead","walking dead"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9df}\u200d\u2640\ufe0f" src="1f9df-200d-2640-fe0f.png"/>',fitzpatrick_scale:!1,category:"people"},man_zombie:{keywords:["man","male","dracula","undead","walking dead"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9df}\u200d\u2642\ufe0f" src="1f9df-200d-2642-fe0f.png"/>',fitzpatrick_scale:!1,category:"people"},woman_genie:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9de}\u200d\u2640\ufe0f" src="1f9de-200d-2640-fe0f.png"/>',fitzpatrick_scale:!1,category:"people"},man_genie:{keywords:["man","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9de}\u200d\u2642\ufe0f" src="1f9de-200d-2642-fe0f.png"/>',fitzpatrick_scale:!1,category:"people"},mermaid:{keywords:["woman","female","merwoman","ariel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9dc}\u200d\u2640\ufe0f" src="1f9dc-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},merman:{keywords:["man","male","triton"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9dc}\u200d\u2642\ufe0f" src="1f9dc-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_fairy:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9da}\u200d\u2640\ufe0f" src="1f9da-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_fairy:{keywords:["man","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9da}\u200d\u2642\ufe0f" src="1f9da-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},angel:{keywords:["heaven","wings","halo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f47c}" src="1f47c.png"/>',fitzpatrick_scale:!0,category:"people"},pregnant_woman:{keywords:["baby"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f930}" src="1f930.png"/>',fitzpatrick_scale:!0,category:"people"},breastfeeding:{keywords:["nursing","baby"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f931}" src="1f931.png"/>',fitzpatrick_scale:!0,category:"people"},princess:{keywords:["girl","woman","female","blond","crown","royal","queen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f478}" src="1f478.png"/>',fitzpatrick_scale:!0,category:"people"},prince:{keywords:["boy","man","male","crown","royal","king"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f934}" src="1f934.png"/>',fitzpatrick_scale:!0,category:"people"},bride_with_veil:{keywords:["couple","marriage","wedding","woman","bride"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f470}" src="1f470.png"/>',fitzpatrick_scale:!0,category:"people"},man_in_tuxedo:{keywords:["couple","marriage","wedding","groom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f935}" src="1f935.png"/>',fitzpatrick_scale:!0,category:"people"},running_woman:{keywords:["woman","walking","exercise","race","running","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c3}\u200d\u2640\ufe0f" src="1f3c3-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},running_man:{keywords:["man","walking","exercise","race","running"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c3}" src="1f3c3.png"/>',fitzpatrick_scale:!0,category:"people"},walking_woman:{keywords:["human","feet","steps","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b6}\u200d\u2640\ufe0f" src="1f6b6-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},walking_man:{keywords:["human","feet","steps"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b6}" src="1f6b6.png"/>',fitzpatrick_scale:!0,category:"people"},dancer:{keywords:["female","girl","woman","fun"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f483}" src="1f483.png"/>',fitzpatrick_scale:!0,category:"people"},man_dancing:{keywords:["male","boy","fun","dancer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f57a}" src="1f57a.png"/>',fitzpatrick_scale:!0,category:"people"},dancing_women:{keywords:["female","bunny","women","girls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46f}" src="1f46f.png"/>',fitzpatrick_scale:!1,category:"people"},dancing_men:{keywords:["male","bunny","men","boys"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46f}\u200d\u2642\ufe0f" src="1f46f-200d-2642-fe0f.png"/>',fitzpatrick_scale:!1,category:"people"},couple:{keywords:["pair","people","human","love","date","dating","like","affection","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46b}" src="1f46b.png"/>',fitzpatrick_scale:!1,category:"people"},two_men_holding_hands:{keywords:["pair","couple","love","like","bromance","friendship","people","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46c}" src="1f46c.png"/>',fitzpatrick_scale:!1,category:"people"},two_women_holding_hands:{keywords:["pair","friendship","couple","love","like","female","people","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46d}" src="1f46d.png"/>',fitzpatrick_scale:!1,category:"people"},bowing_woman:{keywords:["woman","female","girl"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f647}\u200d\u2640\ufe0f" src="1f647-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},bowing_man:{keywords:["man","male","boy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f647}" src="1f647.png"/>',fitzpatrick_scale:!0,category:"people"},man_facepalming:{keywords:["man","male","boy","disbelief"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f926}\u200d\u2642\ufe0f" src="1f926-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_facepalming:{keywords:["woman","female","girl","disbelief"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f926}\u200d\u2640\ufe0f" src="1f926-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_shrugging:{keywords:["woman","female","girl","confused","indifferent","doubt"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f937}" src="1f937.png"/>',fitzpatrick_scale:!0,category:"people"},man_shrugging:{keywords:["man","male","boy","confused","indifferent","doubt"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f937}\u200d\u2642\ufe0f" src="1f937-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},tipping_hand_woman:{keywords:["female","girl","woman","human","information"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f481}" src="1f481.png"/>',fitzpatrick_scale:!0,category:"people"},tipping_hand_man:{keywords:["male","boy","man","human","information"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f481}\u200d\u2642\ufe0f" src="1f481-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},no_good_woman:{keywords:["female","girl","woman","nope"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f645}" src="1f645.png"/>',fitzpatrick_scale:!0,category:"people"},no_good_man:{keywords:["male","boy","man","nope"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f645}\u200d\u2642\ufe0f" src="1f645-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},ok_woman:{keywords:["women","girl","female","pink","human","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f646}" src="1f646.png"/>',fitzpatrick_scale:!0,category:"people"},ok_man:{keywords:["men","boy","male","blue","human","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f646}\u200d\u2642\ufe0f" src="1f646-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},raising_hand_woman:{keywords:["female","girl","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64b}" src="1f64b.png"/>',fitzpatrick_scale:!0,category:"people"},raising_hand_man:{keywords:["male","boy","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64b}\u200d\u2642\ufe0f" src="1f64b-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},pouting_woman:{keywords:["female","girl","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64e}" src="1f64e.png"/>',fitzpatrick_scale:!0,category:"people"},pouting_man:{keywords:["male","boy","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64e}\u200d\u2642\ufe0f" src="1f64e-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},frowning_woman:{keywords:["female","girl","woman","sad","depressed","discouraged","unhappy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64d}" src="1f64d.png"/>',fitzpatrick_scale:!0,category:"people"},frowning_man:{keywords:["male","boy","man","sad","depressed","discouraged","unhappy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64d}\u200d\u2642\ufe0f" src="1f64d-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},haircut_woman:{keywords:["female","girl","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f487}" src="1f487.png"/>',fitzpatrick_scale:!0,category:"people"},haircut_man:{keywords:["male","boy","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f487}\u200d\u2642\ufe0f" src="1f487-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},massage_woman:{keywords:["female","girl","woman","head"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f486}" src="1f486.png"/>',fitzpatrick_scale:!0,category:"people"},massage_man:{keywords:["male","boy","man","head"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f486}\u200d\u2642\ufe0f" src="1f486-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},woman_in_steamy_room:{keywords:["female","woman","spa","steamroom","sauna"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d6}\u200d\u2640\ufe0f" src="1f9d6-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},man_in_steamy_room:{keywords:["male","man","spa","steamroom","sauna"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d6}\u200d\u2642\ufe0f" src="1f9d6-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"people"},couple_with_heart_woman_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f491}" src="1f491.png"/>',fitzpatrick_scale:!1,category:"people"},couple_with_heart_woman_woman:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f469}" src="1f469-200d-2764-fe0f-200d-1f469.png"/>',fitzpatrick_scale:!1,category:"people"},couple_with_heart_man_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f468}" src="1f468-200d-2764-fe0f-200d-1f468.png"/>',fitzpatrick_scale:!1,category:"people"},couplekiss_man_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f48f}" src="1f48f.png"/>',fitzpatrick_scale:!1,category:"people"},couplekiss_woman_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}" src="1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png"/>',fitzpatrick_scale:!1,category:"people"},couplekiss_man_man:{keywords:["pair","valentines","love","like","dating","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}" src="1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_woman_boy:{keywords:["home","parents","child","mom","dad","father","mother","people","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f46a}" src="1f46a.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_woman_girl:{keywords:["home","parents","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f469}\u200d\u{1f467}" src="1f468-200d-1f469-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}" src="1f468-200d-1f469-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}" src="1f468-200d-1f469-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}" src="1f468-200d-1f469-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_woman_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f469}\u200d\u{1f466}" src="1f469-200d-1f469-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_woman_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f469}\u200d\u{1f467}" src="1f469-200d-1f469-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}" src="1f469-200d-1f469-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}" src="1f469-200d-1f469-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}" src="1f469-200d-1f469-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_man_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f468}\u200d\u{1f466}" src="1f468-200d-1f468-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_man_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f468}\u200d\u{1f467}" src="1f468-200d-1f468-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_man_girl_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f466}" src="1f468-200d-1f468-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_man_boy_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f468}\u200d\u{1f466}\u200d\u{1f466}" src="1f468-200d-1f468-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_man_girl_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f467}" src="1f468-200d-1f468-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_boy:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f466}" src="1f469-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_girl:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f467}" src="1f469-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_girl_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f467}\u200d\u{1f466}" src="1f469-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_boy_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f466}\u200d\u{1f466}" src="1f469-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_woman_girl_girl:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f469}\u200d\u{1f467}\u200d\u{1f467}" src="1f469-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_boy:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f466}" src="1f468-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_girl:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f467}" src="1f468-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_girl_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f467}\u200d\u{1f466}" src="1f468-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_boy_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f466}\u200d\u{1f466}" src="1f468-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:!1,category:"people"},family_man_girl_girl:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f468}\u200d\u{1f467}\u200d\u{1f467}" src="1f468-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:!1,category:"people"},yarn:{keywords:["ball","crochet","knit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f6}" src="1f9f6.png"/>',fitzpatrick_scale:!1,category:"people"},thread:{keywords:["needle","sewing","spool","string"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f5}" src="1f9f5.png"/>',fitzpatrick_scale:!1,category:"people"},coat:{keywords:["jacket"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e5}" src="1f9e5.png"/>',fitzpatrick_scale:!1,category:"people"},labcoat:{keywords:["doctor","experiment","scientist","chemist"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f97c}" src="1f97c.png"/>',fitzpatrick_scale:!1,category:"people"},womans_clothes:{keywords:["fashion","shopping_bags","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f45a}" src="1f45a.png"/>',fitzpatrick_scale:!1,category:"people"},tshirt:{keywords:["fashion","cloth","casual","shirt","tee"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f455}" src="1f455.png"/>',fitzpatrick_scale:!1,category:"people"},jeans:{keywords:["fashion","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f456}" src="1f456.png"/>',fitzpatrick_scale:!1,category:"people"},necktie:{keywords:["shirt","suitup","formal","fashion","cloth","business"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f454}" src="1f454.png"/>',fitzpatrick_scale:!1,category:"people"},dress:{keywords:["clothes","fashion","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f457}" src="1f457.png"/>',fitzpatrick_scale:!1,category:"people"},bikini:{keywords:["swimming","female","woman","girl","fashion","beach","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f459}" src="1f459.png"/>',fitzpatrick_scale:!1,category:"people"},kimono:{keywords:["dress","fashion","women","female","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f458}" src="1f458.png"/>',fitzpatrick_scale:!1,category:"people"},lipstick:{keywords:["female","girl","fashion","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f484}" src="1f484.png"/>',fitzpatrick_scale:!1,category:"people"},kiss:{keywords:["face","lips","love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f48b}" src="1f48b.png"/>',fitzpatrick_scale:!1,category:"people"},footprints:{keywords:["feet","tracking","walking","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f463}" src="1f463.png"/>',fitzpatrick_scale:!1,category:"people"},flat_shoe:{keywords:["ballet","slip-on","slipper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f97f}" src="1f97f.png"/>',fitzpatrick_scale:!1,category:"people"},high_heel:{keywords:["fashion","shoes","female","pumps","stiletto"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f460}" src="1f460.png"/>',fitzpatrick_scale:!1,category:"people"},sandal:{keywords:["shoes","fashion","flip flops"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f461}" src="1f461.png"/>',fitzpatrick_scale:!1,category:"people"},boot:{keywords:["shoes","fashion"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f462}" src="1f462.png"/>',fitzpatrick_scale:!1,category:"people"},mans_shoe:{keywords:["fashion","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f45e}" src="1f45e.png"/>',fitzpatrick_scale:!1,category:"people"},athletic_shoe:{keywords:["shoes","sports","sneakers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f45f}" src="1f45f.png"/>',fitzpatrick_scale:!1,category:"people"},hiking_boot:{keywords:["backpacking","camping","hiking"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f97e}" src="1f97e.png"/>',fitzpatrick_scale:!1,category:"people"},socks:{keywords:["stockings","clothes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e6}" src="1f9e6.png"/>',fitzpatrick_scale:!1,category:"people"},gloves:{keywords:["hands","winter","clothes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e4}" src="1f9e4.png"/>',fitzpatrick_scale:!1,category:"people"},scarf:{keywords:["neck","winter","clothes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e3}" src="1f9e3.png"/>',fitzpatrick_scale:!1,category:"people"},womans_hat:{keywords:["fashion","accessories","female","lady","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f452}" src="1f452.png"/>',fitzpatrick_scale:!1,category:"people"},tophat:{keywords:["magic","gentleman","classy","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a9}" src="1f3a9.png"/>',fitzpatrick_scale:!1,category:"people"},billed_hat:{keywords:["cap","baseball"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e2}" src="1f9e2.png"/>',fitzpatrick_scale:!1,category:"people"},rescue_worker_helmet:{keywords:["construction","build"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26d1" src="26d1.png"/>',fitzpatrick_scale:!1,category:"people"},mortar_board:{keywords:["school","college","degree","university","graduation","cap","hat","legal","learn","education"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f393}" src="1f393.png"/>',fitzpatrick_scale:!1,category:"people"},crown:{keywords:["king","kod","leader","royalty","lord"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f451}" src="1f451.png"/>',fitzpatrick_scale:!1,category:"people"},school_satchel:{keywords:["student","education","bag","backpack"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f392}" src="1f392.png"/>',fitzpatrick_scale:!1,category:"people"},luggage:{keywords:["packing","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f3}" src="1f9f3.png"/>',fitzpatrick_scale:!1,category:"people"},pouch:{keywords:["bag","accessories","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f45d}" src="1f45d.png"/>',fitzpatrick_scale:!1,category:"people"},purse:{keywords:["fashion","accessories","money","sales","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f45b}" src="1f45b.png"/>',fitzpatrick_scale:!1,category:"people"},handbag:{keywords:["fashion","accessory","accessories","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f45c}" src="1f45c.png"/>',fitzpatrick_scale:!1,category:"people"},briefcase:{keywords:["business","documents","work","law","legal","job","career"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4bc}" src="1f4bc.png"/>',fitzpatrick_scale:!1,category:"people"},eyeglasses:{keywords:["fashion","accessories","eyesight","nerdy","dork","geek"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f453}" src="1f453.png"/>',fitzpatrick_scale:!1,category:"people"},dark_sunglasses:{keywords:["face","cool","accessories"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f576}" src="1f576.png"/>',fitzpatrick_scale:!1,category:"people"},goggles:{keywords:["eyes","protection","safety"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f97d}" src="1f97d.png"/>',fitzpatrick_scale:!1,category:"people"},ring:{keywords:["wedding","propose","marriage","valentines","diamond","fashion","jewelry","gem","engagement"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f48d}" src="1f48d.png"/>',fitzpatrick_scale:!1,category:"people"},closed_umbrella:{keywords:["weather","rain","drizzle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f302}" src="1f302.png"/>',fitzpatrick_scale:!1,category:"people"},dog:{keywords:["animal","friend","nature","woof","puppy","pet","faithful"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f436}" src="1f436.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cat:{keywords:["animal","meow","nature","pet","kitten"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f431}" src="1f431.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},mouse:{keywords:["animal","nature","cheese_wedge","rodent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f42d}" src="1f42d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},hamster:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f439}" src="1f439.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},rabbit:{keywords:["animal","nature","pet","spring","magic","bunny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f430}" src="1f430.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},fox_face:{keywords:["animal","nature","face"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f98a}" src="1f98a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},bear:{keywords:["animal","nature","wild"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f43b}" src="1f43b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},panda_face:{keywords:["animal","nature","panda"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f43c}" src="1f43c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},koala:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f428}" src="1f428.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},tiger:{keywords:["animal","cat","danger","wild","nature","roar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f42f}" src="1f42f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},lion:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f981}" src="1f981.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cow:{keywords:["beef","ox","animal","nature","moo","milk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f42e}" src="1f42e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},pig:{keywords:["animal","oink","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f437}" src="1f437.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},pig_nose:{keywords:["animal","oink"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f43d}" src="1f43d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},frog:{keywords:["animal","nature","croak","toad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f438}" src="1f438.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},squid:{keywords:["animal","nature","ocean","sea"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f991}" src="1f991.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},octopus:{keywords:["animal","creature","ocean","sea","nature","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f419}" src="1f419.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},shrimp:{keywords:["animal","ocean","nature","seafood"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f990}" src="1f990.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},monkey_face:{keywords:["animal","nature","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f435}" src="1f435.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},gorilla:{keywords:["animal","nature","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f98d}" src="1f98d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},see_no_evil:{keywords:["monkey","animal","nature","haha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f648}" src="1f648.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},hear_no_evil:{keywords:["animal","monkey","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f649}" src="1f649.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},speak_no_evil:{keywords:["monkey","animal","nature","omg"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f64a}" src="1f64a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},monkey:{keywords:["animal","nature","banana","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f412}" src="1f412.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},chicken:{keywords:["animal","cluck","nature","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f414}" src="1f414.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},penguin:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f427}" src="1f427.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},bird:{keywords:["animal","nature","fly","tweet","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f426}" src="1f426.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},baby_chick:{keywords:["animal","chicken","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f424}" src="1f424.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},hatching_chick:{keywords:["animal","chicken","egg","born","baby","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f423}" src="1f423.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},hatched_chick:{keywords:["animal","chicken","baby","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f425}" src="1f425.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},duck:{keywords:["animal","nature","bird","mallard"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f986}" src="1f986.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},eagle:{keywords:["animal","nature","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f985}" src="1f985.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},owl:{keywords:["animal","nature","bird","hoot"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f989}" src="1f989.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},bat:{keywords:["animal","nature","blind","vampire"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f987}" src="1f987.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},wolf:{keywords:["animal","nature","wild"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f43a}" src="1f43a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},boar:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f417}" src="1f417.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},horse:{keywords:["animal","brown","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f434}" src="1f434.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},unicorn:{keywords:["animal","nature","mystical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f984}" src="1f984.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},honeybee:{keywords:["animal","insect","nature","bug","spring","honey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f41d}" src="1f41d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},bug:{keywords:["animal","insect","nature","worm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f41b}" src="1f41b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},butterfly:{keywords:["animal","insect","nature","caterpillar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f98b}" src="1f98b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},snail:{keywords:["slow","animal","shell"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f40c}" src="1f40c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},beetle:{keywords:["animal","insect","nature","ladybug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f41e}" src="1f41e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},ant:{keywords:["animal","insect","nature","bug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f41c}" src="1f41c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},grasshopper:{keywords:["animal","cricket","chirp"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f997}" src="1f997.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},spider:{keywords:["animal","arachnid"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f577}" src="1f577.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},scorpion:{keywords:["animal","arachnid"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f982}" src="1f982.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},crab:{keywords:["animal","crustacean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f980}" src="1f980.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},snake:{keywords:["animal","evil","nature","hiss","python"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f40d}" src="1f40d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},lizard:{keywords:["animal","nature","reptile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f98e}" src="1f98e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},"t-rex":{keywords:["animal","nature","dinosaur","tyrannosaurus","extinct"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f996}" src="1f996.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sauropod:{keywords:["animal","nature","dinosaur","brachiosaurus","brontosaurus","diplodocus","extinct"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f995}" src="1f995.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},turtle:{keywords:["animal","slow","nature","tortoise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f422}" src="1f422.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},tropical_fish:{keywords:["animal","swim","ocean","beach","nemo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f420}" src="1f420.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},fish:{keywords:["animal","food","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f41f}" src="1f41f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},blowfish:{keywords:["animal","nature","food","sea","ocean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f421}" src="1f421.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dolphin:{keywords:["animal","nature","fish","sea","ocean","flipper","fins","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f42c}" src="1f42c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},shark:{keywords:["animal","nature","fish","sea","ocean","jaws","fins","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f988}" src="1f988.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},whale:{keywords:["animal","nature","sea","ocean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f433}" src="1f433.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},whale2:{keywords:["animal","nature","sea","ocean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f40b}" src="1f40b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},crocodile:{keywords:["animal","nature","reptile","lizard","alligator"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f40a}" src="1f40a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},leopard:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f406}" src="1f406.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},zebra:{keywords:["animal","nature","stripes","safari"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f993}" src="1f993.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},tiger2:{keywords:["animal","nature","roar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f405}" src="1f405.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},water_buffalo:{keywords:["animal","nature","ox","cow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f403}" src="1f403.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},ox:{keywords:["animal","cow","beef"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f402}" src="1f402.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cow2:{keywords:["beef","ox","animal","nature","moo","milk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f404}" src="1f404.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},deer:{keywords:["animal","nature","horns","venison"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f98c}" src="1f98c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dromedary_camel:{keywords:["animal","hot","desert","hump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f42a}" src="1f42a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},camel:{keywords:["animal","nature","hot","desert","hump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f42b}" src="1f42b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},giraffe:{keywords:["animal","nature","spots","safari"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f992}" src="1f992.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},elephant:{keywords:["animal","nature","nose","th","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f418}" src="1f418.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},rhinoceros:{keywords:["animal","nature","horn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f98f}" src="1f98f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},goat:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f410}" src="1f410.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},ram:{keywords:["animal","sheep","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f40f}" src="1f40f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sheep:{keywords:["animal","nature","wool","shipit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f411}" src="1f411.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},racehorse:{keywords:["animal","gamble","luck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f40e}" src="1f40e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},pig2:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f416}" src="1f416.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},rat:{keywords:["animal","mouse","rodent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f400}" src="1f400.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},mouse2:{keywords:["animal","nature","rodent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f401}" src="1f401.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},rooster:{keywords:["animal","nature","chicken"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f413}" src="1f413.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},turkey:{keywords:["animal","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f983}" src="1f983.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dove:{keywords:["animal","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f54a}" src="1f54a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dog2:{keywords:["animal","nature","friend","doge","pet","faithful"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f415}" src="1f415.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},poodle:{keywords:["dog","animal","101","nature","pet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f429}" src="1f429.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cat2:{keywords:["animal","meow","pet","cats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f408}" src="1f408.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},rabbit2:{keywords:["animal","nature","pet","magic","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f407}" src="1f407.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},chipmunk:{keywords:["animal","nature","rodent","squirrel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f43f}" src="1f43f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},hedgehog:{keywords:["animal","nature","spiny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f994}" src="1f994.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},raccoon:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f99d}" src="1f99d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},llama:{keywords:["animal","nature","alpaca"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f999}" src="1f999.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},hippopotamus:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f99b}" src="1f99b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},kangaroo:{keywords:["animal","nature","australia","joey","hop","marsupial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f998}" src="1f998.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},badger:{keywords:["animal","nature","honey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9a1}" src="1f9a1.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},swan:{keywords:["animal","nature","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9a2}" src="1f9a2.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},peacock:{keywords:["animal","nature","peahen","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f99a}" src="1f99a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},parrot:{keywords:["animal","nature","bird","pirate","talk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f99c}" src="1f99c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},lobster:{keywords:["animal","nature","bisque","claws","seafood"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f99e}" src="1f99e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},mosquito:{keywords:["animal","nature","insect","malaria"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f99f}" src="1f99f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},paw_prints:{keywords:["animal","tracking","footprints","dog","cat","pet","feet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f43e}" src="1f43e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dragon:{keywords:["animal","myth","nature","chinese","green"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f409}" src="1f409.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dragon_face:{keywords:["animal","myth","nature","chinese","green"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f432}" src="1f432.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cactus:{keywords:["vegetable","plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f335}" src="1f335.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},christmas_tree:{keywords:["festival","vacation","december","xmas","celebration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f384}" src="1f384.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},evergreen_tree:{keywords:["plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f332}" src="1f332.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},deciduous_tree:{keywords:["plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f333}" src="1f333.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},palm_tree:{keywords:["plant","vegetable","nature","summer","beach","mojito","tropical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f334}" src="1f334.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},seedling:{keywords:["plant","nature","grass","lawn","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f331}" src="1f331.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},herb:{keywords:["vegetable","plant","medicine","weed","grass","lawn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f33f}" src="1f33f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},shamrock:{keywords:["vegetable","plant","nature","irish","clover"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2618" src="2618.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},four_leaf_clover:{keywords:["vegetable","plant","nature","lucky","irish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f340}" src="1f340.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},bamboo:{keywords:["plant","nature","vegetable","panda","pine_decoration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f38d}" src="1f38d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},tanabata_tree:{keywords:["plant","nature","branch","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f38b}" src="1f38b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},leaves:{keywords:["nature","plant","tree","vegetable","grass","lawn","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f343}" src="1f343.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},fallen_leaf:{keywords:["nature","plant","vegetable","leaves"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f342}" src="1f342.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},maple_leaf:{keywords:["nature","plant","vegetable","ca","fall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f341}" src="1f341.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},ear_of_rice:{keywords:["nature","plant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f33e}" src="1f33e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},hibiscus:{keywords:["plant","vegetable","flowers","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f33a}" src="1f33a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sunflower:{keywords:["nature","plant","fall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f33b}" src="1f33b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},rose:{keywords:["flowers","valentines","love","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f339}" src="1f339.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},wilted_flower:{keywords:["plant","nature","flower"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f940}" src="1f940.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},tulip:{keywords:["flowers","plant","nature","summer","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f337}" src="1f337.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},blossom:{keywords:["nature","flowers","yellow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f33c}" src="1f33c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cherry_blossom:{keywords:["nature","plant","spring","flower"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f338}" src="1f338.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},bouquet:{keywords:["flowers","nature","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f490}" src="1f490.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},mushroom:{keywords:["plant","vegetable"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f344}" src="1f344.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},chestnut:{keywords:["food","squirrel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f330}" src="1f330.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},jack_o_lantern:{keywords:["halloween","light","pumpkin","creepy","fall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f383}" src="1f383.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},shell:{keywords:["nature","sea","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f41a}" src="1f41a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},spider_web:{keywords:["animal","insect","arachnid","silk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f578}" src="1f578.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},earth_americas:{keywords:["globe","world","USA","international"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f30e}" src="1f30e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},earth_africa:{keywords:["globe","world","international"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f30d}" src="1f30d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},earth_asia:{keywords:["globe","world","east","international"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f30f}" src="1f30f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},full_moon:{keywords:["nature","yellow","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f315}" src="1f315.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},waning_gibbous_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep","waxing_gibbous_moon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f316}" src="1f316.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},last_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f317}" src="1f317.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},waning_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f318}" src="1f318.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},new_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f311}" src="1f311.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},waxing_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f312}" src="1f312.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},first_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f313}" src="1f313.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},waxing_gibbous_moon:{keywords:["nature","night","sky","gray","twilight","planet","space","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f314}" src="1f314.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},new_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f31a}" src="1f31a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},full_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f31d}" src="1f31d.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},first_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f31b}" src="1f31b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},last_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f31c}" src="1f31c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sun_with_face:{keywords:["nature","morning","sky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f31e}" src="1f31e.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},crescent_moon:{keywords:["night","sleep","sky","evening","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f319}" src="1f319.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},star:{keywords:["night","yellow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2b50" src="2b50.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},star2:{keywords:["night","sparkle","awesome","good","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f31f}" src="1f31f.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dizzy:{keywords:["star","sparkle","shoot","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ab}" src="1f4ab.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sparkles:{keywords:["stars","shine","shiny","cool","awesome","good","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2728" src="2728.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},comet:{keywords:["space"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2604" src="2604.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sunny:{keywords:["weather","nature","brightness","summer","beach","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2600\ufe0f" src="2600.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sun_behind_small_cloud:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f324}" src="1f324.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},partly_sunny:{keywords:["weather","nature","cloudy","morning","fall","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26c5" src="26c5.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sun_behind_large_cloud:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f325}" src="1f325.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sun_behind_rain_cloud:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f326}" src="1f326.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cloud:{keywords:["weather","sky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2601\ufe0f" src="2601.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_rain:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f327}" src="1f327.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_lightning_and_rain:{keywords:["weather","lightning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26c8" src="26c8.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_lightning:{keywords:["weather","thunder"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f329}" src="1f329.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},zap:{keywords:["thunder","weather","lightning bolt","fast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26a1" src="26a1.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},fire:{keywords:["hot","cook","flame"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f525}" src="1f525.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},boom:{keywords:["bomb","explode","explosion","collision","blown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a5}" src="1f4a5.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},snowflake:{keywords:["winter","season","cold","weather","christmas","xmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2744\ufe0f" src="2744.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_snow:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f328}" src="1f328.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},snowman:{keywords:["winter","season","cold","weather","christmas","xmas","frozen","without_snow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26c4" src="26c4.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},snowman_with_snow:{keywords:["winter","season","cold","weather","christmas","xmas","frozen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2603" src="2603.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},wind_face:{keywords:["gust","air"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f32c}" src="1f32c.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},dash:{keywords:["wind","air","fast","shoo","fart","smoke","puff"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a8}" src="1f4a8.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},tornado:{keywords:["weather","cyclone","twister"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f32a}" src="1f32a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},fog:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f32b}" src="1f32b.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},open_umbrella:{keywords:["weather","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2602" src="2602.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},umbrella:{keywords:["rainy","weather","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2614" src="2614.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},droplet:{keywords:["water","drip","faucet","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a7}" src="1f4a7.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},sweat_drops:{keywords:["water","drip","oops"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a6}" src="1f4a6.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},ocean:{keywords:["sea","water","wave","nature","tsunami","disaster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f30a}" src="1f30a.png"/>',fitzpatrick_scale:!1,category:"animals_and_nature"},green_apple:{keywords:["fruit","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f34f}" src="1f34f.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},apple:{keywords:["fruit","mac","school"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f34e}" src="1f34e.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},pear:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f350}" src="1f350.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},tangerine:{keywords:["food","fruit","nature","orange"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f34a}" src="1f34a.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},lemon:{keywords:["fruit","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f34b}" src="1f34b.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},banana:{keywords:["fruit","food","monkey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f34c}" src="1f34c.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},watermelon:{keywords:["fruit","food","picnic","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f349}" src="1f349.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},grapes:{keywords:["fruit","food","wine"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f347}" src="1f347.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},strawberry:{keywords:["fruit","food","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f353}" src="1f353.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},melon:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f348}" src="1f348.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cherries:{keywords:["food","fruit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f352}" src="1f352.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},peach:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f351}" src="1f351.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},pineapple:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f34d}" src="1f34d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},coconut:{keywords:["fruit","nature","food","palm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f965}" src="1f965.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},kiwi_fruit:{keywords:["fruit","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f95d}" src="1f95d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},mango:{keywords:["fruit","food","tropical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f96d}" src="1f96d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},avocado:{keywords:["fruit","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f951}" src="1f951.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},broccoli:{keywords:["fruit","food","vegetable"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f966}" src="1f966.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},tomato:{keywords:["fruit","vegetable","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f345}" src="1f345.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},eggplant:{keywords:["vegetable","nature","food","aubergine"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f346}" src="1f346.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cucumber:{keywords:["fruit","food","pickle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f952}" src="1f952.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},carrot:{keywords:["vegetable","food","orange"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f955}" src="1f955.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},hot_pepper:{keywords:["food","spicy","chilli","chili"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f336}" src="1f336.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},potato:{keywords:["food","tuber","vegatable","starch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f954}" src="1f954.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},corn:{keywords:["food","vegetable","plant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f33d}" src="1f33d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},leafy_greens:{keywords:["food","vegetable","plant","bok choy","cabbage","kale","lettuce"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f96c}" src="1f96c.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},sweet_potato:{keywords:["food","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f360}" src="1f360.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},peanuts:{keywords:["food","nut"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f95c}" src="1f95c.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},honey_pot:{keywords:["bees","sweet","kitchen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f36f}" src="1f36f.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},croissant:{keywords:["food","bread","french"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f950}" src="1f950.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},bread:{keywords:["food","wheat","breakfast","toast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f35e}" src="1f35e.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},baguette_bread:{keywords:["food","bread","french"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f956}" src="1f956.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},bagel:{keywords:["food","bread","bakery","schmear"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f96f}" src="1f96f.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},pretzel:{keywords:["food","bread","twisted"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f968}" src="1f968.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cheese:{keywords:["food","chadder"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9c0}" src="1f9c0.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},egg:{keywords:["food","chicken","breakfast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f95a}" src="1f95a.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},bacon:{keywords:["food","breakfast","pork","pig","meat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f953}" src="1f953.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},steak:{keywords:["food","cow","meat","cut","chop","lambchop","porkchop"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f969}" src="1f969.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},pancakes:{keywords:["food","breakfast","flapjacks","hotcakes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f95e}" src="1f95e.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},poultry_leg:{keywords:["food","meat","drumstick","bird","chicken","turkey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f357}" src="1f357.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},meat_on_bone:{keywords:["good","food","drumstick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f356}" src="1f356.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},bone:{keywords:["skeleton"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9b4}" src="1f9b4.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},fried_shrimp:{keywords:["food","animal","appetizer","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f364}" src="1f364.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},fried_egg:{keywords:["food","breakfast","kitchen","egg"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f373}" src="1f373.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},hamburger:{keywords:["meat","fast food","beef","cheeseburger","mcdonalds","burger king"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f354}" src="1f354.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},fries:{keywords:["chips","snack","fast food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f35f}" src="1f35f.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},stuffed_flatbread:{keywords:["food","flatbread","stuffed","gyro"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f959}" src="1f959.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},hotdog:{keywords:["food","frankfurter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f32d}" src="1f32d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},pizza:{keywords:["food","party"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f355}" src="1f355.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},sandwich:{keywords:["food","lunch","bread"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f96a}" src="1f96a.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},canned_food:{keywords:["food","soup"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f96b}" src="1f96b.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},spaghetti:{keywords:["food","italian","noodle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f35d}" src="1f35d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},taco:{keywords:["food","mexican"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f32e}" src="1f32e.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},burrito:{keywords:["food","mexican"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f32f}" src="1f32f.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},green_salad:{keywords:["food","healthy","lettuce"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f957}" src="1f957.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},shallow_pan_of_food:{keywords:["food","cooking","casserole","paella"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f958}" src="1f958.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},ramen:{keywords:["food","japanese","noodle","chopsticks"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f35c}" src="1f35c.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},stew:{keywords:["food","meat","soup"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f372}" src="1f372.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},fish_cake:{keywords:["food","japan","sea","beach","narutomaki","pink","swirl","kamaboko","surimi","ramen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f365}" src="1f365.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},fortune_cookie:{keywords:["food","prophecy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f960}" src="1f960.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},sushi:{keywords:["food","fish","japanese","rice"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f363}" src="1f363.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},bento:{keywords:["food","japanese","box"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f371}" src="1f371.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},curry:{keywords:["food","spicy","hot","indian"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f35b}" src="1f35b.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},rice_ball:{keywords:["food","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f359}" src="1f359.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},rice:{keywords:["food","china","asian"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f35a}" src="1f35a.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},rice_cracker:{keywords:["food","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f358}" src="1f358.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},oden:{keywords:["food","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f362}" src="1f362.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},dango:{keywords:["food","dessert","sweet","japanese","barbecue","meat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f361}" src="1f361.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},shaved_ice:{keywords:["hot","dessert","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f367}" src="1f367.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},ice_cream:{keywords:["food","hot","dessert"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f368}" src="1f368.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},icecream:{keywords:["food","hot","dessert","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f366}" src="1f366.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},pie:{keywords:["food","dessert","pastry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f967}" src="1f967.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cake:{keywords:["food","dessert"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f370}" src="1f370.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cupcake:{keywords:["food","dessert","bakery","sweet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9c1}" src="1f9c1.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},moon_cake:{keywords:["food","autumn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f96e}" src="1f96e.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},birthday:{keywords:["food","dessert","cake"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f382}" src="1f382.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},custard:{keywords:["dessert","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f36e}" src="1f36e.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},candy:{keywords:["snack","dessert","sweet","lolly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f36c}" src="1f36c.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},lollipop:{keywords:["food","snack","candy","sweet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f36d}" src="1f36d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},chocolate_bar:{keywords:["food","snack","dessert","sweet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f36b}" src="1f36b.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},popcorn:{keywords:["food","movie theater","films","snack"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f37f}" src="1f37f.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},dumpling:{keywords:["food","empanada","pierogi","potsticker"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f95f}" src="1f95f.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},doughnut:{keywords:["food","dessert","snack","sweet","donut"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f369}" src="1f369.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cookie:{keywords:["food","snack","oreo","chocolate","sweet","dessert"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f36a}" src="1f36a.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},milk_glass:{keywords:["beverage","drink","cow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f95b}" src="1f95b.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},beer:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f37a}" src="1f37a.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},beers:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f37b}" src="1f37b.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},clinking_glasses:{keywords:["beverage","drink","party","alcohol","celebrate","cheers","wine","champagne","toast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f942}" src="1f942.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},wine_glass:{keywords:["drink","beverage","drunk","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f377}" src="1f377.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},tumbler_glass:{keywords:["drink","beverage","drunk","alcohol","liquor","booze","bourbon","scotch","whisky","glass","shot"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f943}" src="1f943.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cocktail:{keywords:["drink","drunk","alcohol","beverage","booze","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f378}" src="1f378.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},tropical_drink:{keywords:["beverage","cocktail","summer","beach","alcohol","booze","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f379}" src="1f379.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},champagne:{keywords:["drink","wine","bottle","celebration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f37e}" src="1f37e.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},sake:{keywords:["wine","drink","drunk","beverage","japanese","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f376}" src="1f376.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},tea:{keywords:["drink","bowl","breakfast","green","british"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f375}" src="1f375.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},cup_with_straw:{keywords:["drink","soda"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f964}" src="1f964.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},coffee:{keywords:["beverage","caffeine","latte","espresso"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2615" src="2615.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},baby_bottle:{keywords:["food","container","milk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f37c}" src="1f37c.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},salt:{keywords:["condiment","shaker"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9c2}" src="1f9c2.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},spoon:{keywords:["cutlery","kitchen","tableware"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f944}" src="1f944.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},fork_and_knife:{keywords:["cutlery","kitchen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f374}" src="1f374.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},plate_with_cutlery:{keywords:["food","eat","meal","lunch","dinner","restaurant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f37d}" src="1f37d.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},bowl_with_spoon:{keywords:["food","breakfast","cereal","oatmeal","porridge"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f963}" src="1f963.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},takeout_box:{keywords:["food","leftovers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f961}" src="1f961.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},chopsticks:{keywords:["food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f962}" src="1f962.png"/>',fitzpatrick_scale:!1,category:"food_and_drink"},soccer:{keywords:["sports","football"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26bd" src="26bd.png"/>',fitzpatrick_scale:!1,category:"activity"},basketball:{keywords:["sports","balls","NBA"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c0}" src="1f3c0.png"/>',fitzpatrick_scale:!1,category:"activity"},football:{keywords:["sports","balls","NFL"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c8}" src="1f3c8.png"/>',fitzpatrick_scale:!1,category:"activity"},baseball:{keywords:["sports","balls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26be" src="26be.png"/>',fitzpatrick_scale:!1,category:"activity"},softball:{keywords:["sports","balls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f94e}" src="1f94e.png"/>',fitzpatrick_scale:!1,category:"activity"},tennis:{keywords:["sports","balls","green"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3be}" src="1f3be.png"/>',fitzpatrick_scale:!1,category:"activity"},volleyball:{keywords:["sports","balls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d0}" src="1f3d0.png"/>',fitzpatrick_scale:!1,category:"activity"},rugby_football:{keywords:["sports","team"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c9}" src="1f3c9.png"/>',fitzpatrick_scale:!1,category:"activity"},flying_disc:{keywords:["sports","frisbee","ultimate"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f94f}" src="1f94f.png"/>',fitzpatrick_scale:!1,category:"activity"},"8ball":{keywords:["pool","hobby","game","luck","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b1}" src="1f3b1.png"/>',fitzpatrick_scale:!1,category:"activity"},golf:{keywords:["sports","business","flag","hole","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f3" src="26f3.png"/>',fitzpatrick_scale:!1,category:"activity"},golfing_woman:{keywords:["sports","business","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3cc}\ufe0f\u200d\u2640\ufe0f" src="1f3cc-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:!1,category:"activity"},golfing_man:{keywords:["sports","business"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3cc}" src="1f3cc.png"/>',fitzpatrick_scale:!0,category:"activity"},ping_pong:{keywords:["sports","pingpong"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d3}" src="1f3d3.png"/>',fitzpatrick_scale:!1,category:"activity"},badminton:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f8}" src="1f3f8.png"/>',fitzpatrick_scale:!1,category:"activity"},goal_net:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f945}" src="1f945.png"/>',fitzpatrick_scale:!1,category:"activity"},ice_hockey:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d2}" src="1f3d2.png"/>',fitzpatrick_scale:!1,category:"activity"},field_hockey:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d1}" src="1f3d1.png"/>',fitzpatrick_scale:!1,category:"activity"},lacrosse:{keywords:["sports","ball","stick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f94d}" src="1f94d.png"/>',fitzpatrick_scale:!1,category:"activity"},cricket:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3cf}" src="1f3cf.png"/>',fitzpatrick_scale:!1,category:"activity"},ski:{keywords:["sports","winter","cold","snow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3bf}" src="1f3bf.png"/>',fitzpatrick_scale:!1,category:"activity"},skier:{keywords:["sports","winter","snow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f7" src="26f7.png"/>',fitzpatrick_scale:!1,category:"activity"},snowboarder:{keywords:["sports","winter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c2}" src="1f3c2.png"/>',fitzpatrick_scale:!0,category:"activity"},person_fencing:{keywords:["sports","fencing","sword"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f93a}" src="1f93a.png"/>',fitzpatrick_scale:!1,category:"activity"},women_wrestling:{keywords:["sports","wrestlers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f93c}\u200d\u2640\ufe0f" src="1f93c-200d-2640-fe0f.png"/>',fitzpatrick_scale:!1,category:"activity"},men_wrestling:{keywords:["sports","wrestlers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f93c}\u200d\u2642\ufe0f" src="1f93c-200d-2642-fe0f.png"/>',fitzpatrick_scale:!1,category:"activity"},woman_cartwheeling:{keywords:["gymnastics"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f938}\u200d\u2640\ufe0f" src="1f938-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},man_cartwheeling:{keywords:["gymnastics"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f938}\u200d\u2642\ufe0f" src="1f938-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},woman_playing_handball:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f93e}\u200d\u2640\ufe0f" src="1f93e-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},man_playing_handball:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f93e}\u200d\u2642\ufe0f" src="1f93e-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},ice_skate:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f8" src="26f8.png"/>',fitzpatrick_scale:!1,category:"activity"},curling_stone:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f94c}" src="1f94c.png"/>',fitzpatrick_scale:!1,category:"activity"},skateboard:{keywords:["board"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f9}" src="1f6f9.png"/>',fitzpatrick_scale:!1,category:"activity"},sled:{keywords:["sleigh","luge","toboggan"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f7}" src="1f6f7.png"/>',fitzpatrick_scale:!1,category:"activity"},bow_and_arrow:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f9}" src="1f3f9.png"/>',fitzpatrick_scale:!1,category:"activity"},fishing_pole_and_fish:{keywords:["food","hobby","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a3}" src="1f3a3.png"/>',fitzpatrick_scale:!1,category:"activity"},boxing_glove:{keywords:["sports","fighting"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f94a}" src="1f94a.png"/>',fitzpatrick_scale:!1,category:"activity"},martial_arts_uniform:{keywords:["judo","karate","taekwondo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f94b}" src="1f94b.png"/>',fitzpatrick_scale:!1,category:"activity"},rowing_woman:{keywords:["sports","hobby","water","ship","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a3}\u200d\u2640\ufe0f" src="1f6a3-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},rowing_man:{keywords:["sports","hobby","water","ship"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a3}" src="1f6a3.png"/>',fitzpatrick_scale:!0,category:"activity"},climbing_woman:{keywords:["sports","hobby","woman","female","rock"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d7}\u200d\u2640\ufe0f" src="1f9d7-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},climbing_man:{keywords:["sports","hobby","man","male","rock"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d7}\u200d\u2642\ufe0f" src="1f9d7-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},swimming_woman:{keywords:["sports","exercise","human","athlete","water","summer","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ca}\u200d\u2640\ufe0f" src="1f3ca-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},swimming_man:{keywords:["sports","exercise","human","athlete","water","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ca}" src="1f3ca.png"/>',fitzpatrick_scale:!0,category:"activity"},woman_playing_water_polo:{keywords:["sports","pool"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f93d}\u200d\u2640\ufe0f" src="1f93d-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},man_playing_water_polo:{keywords:["sports","pool"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f93d}\u200d\u2642\ufe0f" src="1f93d-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},woman_in_lotus_position:{keywords:["woman","female","meditation","yoga","serenity","zen","mindfulness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d8}\u200d\u2640\ufe0f" src="1f9d8-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},man_in_lotus_position:{keywords:["man","male","meditation","yoga","serenity","zen","mindfulness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9d8}\u200d\u2642\ufe0f" src="1f9d8-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},surfing_woman:{keywords:["sports","ocean","sea","summer","beach","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c4}\u200d\u2640\ufe0f" src="1f3c4-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},surfing_man:{keywords:["sports","ocean","sea","summer","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c4}" src="1f3c4.png"/>',fitzpatrick_scale:!0,category:"activity"},bath:{keywords:["clean","shower","bathroom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6c0}" src="1f6c0.png"/>',fitzpatrick_scale:!0,category:"activity"},basketball_woman:{keywords:["sports","human","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f9\ufe0f\u200d\u2640\ufe0f" src="26f9-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},basketball_man:{keywords:["sports","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f9" src="26f9.png"/>',fitzpatrick_scale:!0,category:"activity"},weight_lifting_woman:{keywords:["sports","training","exercise","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3cb}\ufe0f\u200d\u2640\ufe0f" src="1f3cb-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},weight_lifting_man:{keywords:["sports","training","exercise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3cb}" src="1f3cb.png"/>',fitzpatrick_scale:!0,category:"activity"},biking_woman:{keywords:["sports","bike","exercise","hipster","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b4}\u200d\u2640\ufe0f" src="1f6b4-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},biking_man:{keywords:["sports","bike","exercise","hipster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b4}" src="1f6b4.png"/>',fitzpatrick_scale:!0,category:"activity"},mountain_biking_woman:{keywords:["transportation","sports","human","race","bike","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b5}\u200d\u2640\ufe0f" src="1f6b5-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},mountain_biking_man:{keywords:["transportation","sports","human","race","bike"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b5}" src="1f6b5.png"/>',fitzpatrick_scale:!0,category:"activity"},horse_racing:{keywords:["animal","betting","competition","gambling","luck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c7}" src="1f3c7.png"/>',fitzpatrick_scale:!0,category:"activity"},business_suit_levitating:{keywords:["suit","business","levitate","hover","jump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f574}" src="1f574.png"/>',fitzpatrick_scale:!0,category:"activity"},trophy:{keywords:["win","award","contest","place","ftw","ceremony"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c6}" src="1f3c6.png"/>',fitzpatrick_scale:!1,category:"activity"},running_shirt_with_sash:{keywords:["play","pageant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3bd}" src="1f3bd.png"/>',fitzpatrick_scale:!1,category:"activity"},medal_sports:{keywords:["award","winning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c5}" src="1f3c5.png"/>',fitzpatrick_scale:!1,category:"activity"},medal_military:{keywords:["award","winning","army"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f396}" src="1f396.png"/>',fitzpatrick_scale:!1,category:"activity"},"1st_place_medal":{keywords:["award","winning","first"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f947}" src="1f947.png"/>',fitzpatrick_scale:!1,category:"activity"},"2nd_place_medal":{keywords:["award","second"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f948}" src="1f948.png"/>',fitzpatrick_scale:!1,category:"activity"},"3rd_place_medal":{keywords:["award","third"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f949}" src="1f949.png"/>',fitzpatrick_scale:!1,category:"activity"},reminder_ribbon:{keywords:["sports","cause","support","awareness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f397}" src="1f397.png"/>',fitzpatrick_scale:!1,category:"activity"},rosette:{keywords:["flower","decoration","military"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f5}" src="1f3f5.png"/>',fitzpatrick_scale:!1,category:"activity"},ticket:{keywords:["event","concert","pass"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ab}" src="1f3ab.png"/>',fitzpatrick_scale:!1,category:"activity"},tickets:{keywords:["sports","concert","entrance"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f39f}" src="1f39f.png"/>',fitzpatrick_scale:!1,category:"activity"},performing_arts:{keywords:["acting","theater","drama"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ad}" src="1f3ad.png"/>',fitzpatrick_scale:!1,category:"activity"},art:{keywords:["design","paint","draw","colors"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a8}" src="1f3a8.png"/>',fitzpatrick_scale:!1,category:"activity"},circus_tent:{keywords:["festival","carnival","party"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3aa}" src="1f3aa.png"/>',fitzpatrick_scale:!1,category:"activity"},woman_juggling:{keywords:["juggle","balance","skill","multitask"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f939}\u200d\u2640\ufe0f" src="1f939-200d-2640-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},man_juggling:{keywords:["juggle","balance","skill","multitask"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f939}\u200d\u2642\ufe0f" src="1f939-200d-2642-fe0f.png"/>',fitzpatrick_scale:!0,category:"activity"},microphone:{keywords:["sound","music","PA","sing","talkshow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a4}" src="1f3a4.png"/>',fitzpatrick_scale:!1,category:"activity"},headphones:{keywords:["music","score","gadgets"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a7}" src="1f3a7.png"/>',fitzpatrick_scale:!1,category:"activity"},musical_score:{keywords:["treble","clef","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3bc}" src="1f3bc.png"/>',fitzpatrick_scale:!1,category:"activity"},musical_keyboard:{keywords:["piano","instrument","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b9}" src="1f3b9.png"/>',fitzpatrick_scale:!1,category:"activity"},drum:{keywords:["music","instrument","drumsticks","snare"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f941}" src="1f941.png"/>',fitzpatrick_scale:!1,category:"activity"},saxophone:{keywords:["music","instrument","jazz","blues"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b7}" src="1f3b7.png"/>',fitzpatrick_scale:!1,category:"activity"},trumpet:{keywords:["music","brass"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ba}" src="1f3ba.png"/>',fitzpatrick_scale:!1,category:"activity"},guitar:{keywords:["music","instrument"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b8}" src="1f3b8.png"/>',fitzpatrick_scale:!1,category:"activity"},violin:{keywords:["music","instrument","orchestra","symphony"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3bb}" src="1f3bb.png"/>',fitzpatrick_scale:!1,category:"activity"},clapper:{keywords:["movie","film","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ac}" src="1f3ac.png"/>',fitzpatrick_scale:!1,category:"activity"},video_game:{keywords:["play","console","PS4","controller"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ae}" src="1f3ae.png"/>',fitzpatrick_scale:!1,category:"activity"},space_invader:{keywords:["game","arcade","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f47e}" src="1f47e.png"/>',fitzpatrick_scale:!1,category:"activity"},dart:{keywords:["game","play","bar","target","bullseye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3af}" src="1f3af.png"/>',fitzpatrick_scale:!1,category:"activity"},game_die:{keywords:["dice","random","tabletop","play","luck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b2}" src="1f3b2.png"/>',fitzpatrick_scale:!1,category:"activity"},chess_pawn:{keywords:["expendable"],char:"\u265f",fitzpatrick_scale:!1,category:"activity"},slot_machine:{keywords:["bet","gamble","vegas","fruit machine","luck","casino"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b0}" src="1f3b0.png"/>',fitzpatrick_scale:!1,category:"activity"},jigsaw:{keywords:["interlocking","puzzle","piece"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e9}" src="1f9e9.png"/>',fitzpatrick_scale:!1,category:"activity"},bowling:{keywords:["sports","fun","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b3}" src="1f3b3.png"/>',fitzpatrick_scale:!1,category:"activity"},red_car:{keywords:["red","transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f697}" src="1f697.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},taxi:{keywords:["uber","vehicle","cars","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f695}" src="1f695.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},blue_car:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f699}" src="1f699.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},bus:{keywords:["car","vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f68c}" src="1f68c.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},trolleybus:{keywords:["bart","transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f68e}" src="1f68e.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},racing_car:{keywords:["sports","race","fast","formula","f1"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ce}" src="1f3ce.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},police_car:{keywords:["vehicle","cars","transportation","law","legal","enforcement"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f693}" src="1f693.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},ambulance:{keywords:["health","911","hospital"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f691}" src="1f691.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},fire_engine:{keywords:["transportation","cars","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f692}" src="1f692.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},minibus:{keywords:["vehicle","car","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f690}" src="1f690.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},truck:{keywords:["cars","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f69a}" src="1f69a.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},articulated_lorry:{keywords:["vehicle","cars","transportation","express"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f69b}" src="1f69b.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},tractor:{keywords:["vehicle","car","farming","agriculture"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f69c}" src="1f69c.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},kick_scooter:{keywords:["vehicle","kick","razor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f4}" src="1f6f4.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},motorcycle:{keywords:["race","sports","fast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3cd}" src="1f3cd.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},bike:{keywords:["sports","bicycle","exercise","hipster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b2}" src="1f6b2.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},motor_scooter:{keywords:["vehicle","vespa","sasha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f5}" src="1f6f5.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},rotating_light:{keywords:["police","ambulance","911","emergency","alert","error","pinged","law","legal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a8}" src="1f6a8.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_police_car:{keywords:["vehicle","law","legal","enforcement","911"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f694}" src="1f694.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_bus:{keywords:["vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f68d}" src="1f68d.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_automobile:{keywords:["car","vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f698}" src="1f698.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_taxi:{keywords:["vehicle","cars","uber"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f696}" src="1f696.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},aerial_tramway:{keywords:["transportation","vehicle","ski"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a1}" src="1f6a1.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},mountain_cableway:{keywords:["transportation","vehicle","ski"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a0}" src="1f6a0.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},suspension_railway:{keywords:["vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f69f}" src="1f69f.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},railway_car:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f683}" src="1f683.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},train:{keywords:["transportation","vehicle","carriage","public","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f68b}" src="1f68b.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},monorail:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f69d}" src="1f69d.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},bullettrain_side:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f684}" src="1f684.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},bullettrain_front:{keywords:["transportation","vehicle","speed","fast","public","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f685}" src="1f685.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},light_rail:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f688}" src="1f688.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},mountain_railway:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f69e}" src="1f69e.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},steam_locomotive:{keywords:["transportation","vehicle","train"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f682}" src="1f682.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},train2:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f686}" src="1f686.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},metro:{keywords:["transportation","blue-square","mrt","underground","tube"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f687}" src="1f687.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},tram:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f68a}" src="1f68a.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},station:{keywords:["transportation","vehicle","public"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f689}" src="1f689.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},flying_saucer:{keywords:["transportation","vehicle","ufo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f8}" src="1f6f8.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},helicopter:{keywords:["transportation","vehicle","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f681}" src="1f681.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},small_airplane:{keywords:["flight","transportation","fly","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6e9}" src="1f6e9.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},airplane:{keywords:["vehicle","transportation","flight","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2708\ufe0f" src="2708.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},flight_departure:{keywords:["airport","flight","landing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6eb}" src="1f6eb.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},flight_arrival:{keywords:["airport","flight","boarding"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6ec}" src="1f6ec.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},sailboat:{keywords:["ship","summer","transportation","water","sailing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f5" src="26f5.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},motor_boat:{keywords:["ship"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6e5}" src="1f6e5.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},speedboat:{keywords:["ship","transportation","vehicle","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a4}" src="1f6a4.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},ferry:{keywords:["boat","ship","yacht"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f4" src="26f4.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},passenger_ship:{keywords:["yacht","cruise","ferry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f3}" src="1f6f3.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},rocket:{keywords:["launch","ship","staffmode","NASA","outer space","outer_space","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f680}" src="1f680.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},artificial_satellite:{keywords:["communication","gps","orbit","spaceflight","NASA","ISS"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f0}" src="1f6f0.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},seat:{keywords:["sit","airplane","transport","bus","flight","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ba}" src="1f4ba.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},canoe:{keywords:["boat","paddle","water","ship"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6f6}" src="1f6f6.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},anchor:{keywords:["ship","ferry","sea","boat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2693" src="2693.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},construction:{keywords:["wip","progress","caution","warning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a7}" src="1f6a7.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},fuelpump:{keywords:["gas station","petroleum"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26fd" src="26fd.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},busstop:{keywords:["transportation","wait"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f68f}" src="1f68f.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},vertical_traffic_light:{keywords:["transportation","driving"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a6}" src="1f6a6.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},traffic_light:{keywords:["transportation","signal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a5}" src="1f6a5.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},checkered_flag:{keywords:["contest","finishline","race","gokart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3c1}" src="1f3c1.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},ship:{keywords:["transportation","titanic","deploy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a2}" src="1f6a2.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},ferris_wheel:{keywords:["photo","carnival","londoneye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a1}" src="1f3a1.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},roller_coaster:{keywords:["carnival","playground","photo","fun"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a2}" src="1f3a2.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},carousel_horse:{keywords:["photo","carnival"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a0}" src="1f3a0.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},building_construction:{keywords:["wip","working","progress"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d7}" src="1f3d7.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},foggy:{keywords:["photo","mountain"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f301}" src="1f301.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},tokyo_tower:{keywords:["photo","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5fc}" src="1f5fc.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},factory:{keywords:["building","industry","pollution","smoke"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ed}" src="1f3ed.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},fountain:{keywords:["photo","summer","water","fresh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f2" src="26f2.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},rice_scene:{keywords:["photo","japan","asia","tsukimi"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f391}" src="1f391.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},mountain:{keywords:["photo","nature","environment"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f0" src="26f0.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},mountain_snow:{keywords:["photo","nature","environment","winter","cold"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d4}" src="1f3d4.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},mount_fuji:{keywords:["photo","mountain","nature","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5fb}" src="1f5fb.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},volcano:{keywords:["photo","nature","disaster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f30b}" src="1f30b.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},japan:{keywords:["nation","country","japanese","asia"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5fe}" src="1f5fe.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},camping:{keywords:["photo","outdoors","tent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d5}" src="1f3d5.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},tent:{keywords:["photo","camping","outdoors"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26fa" src="26fa.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},national_park:{keywords:["photo","environment","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3de}" src="1f3de.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},motorway:{keywords:["road","cupertino","interstate","highway"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6e3}" src="1f6e3.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},railway_track:{keywords:["train","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6e4}" src="1f6e4.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},sunrise:{keywords:["morning","view","vacation","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f305}" src="1f305.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},sunrise_over_mountains:{keywords:["view","vacation","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f304}" src="1f304.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},desert:{keywords:["photo","warm","saharah"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3dc}" src="1f3dc.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},beach_umbrella:{keywords:["weather","summer","sunny","sand","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d6}" src="1f3d6.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},desert_island:{keywords:["photo","tropical","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3dd}" src="1f3dd.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},city_sunrise:{keywords:["photo","good morning","dawn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f307}" src="1f307.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},city_sunset:{keywords:["photo","evening","sky","buildings"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f306}" src="1f306.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},cityscape:{keywords:["photo","night life","urban"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d9}" src="1f3d9.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},night_with_stars:{keywords:["evening","city","downtown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f303}" src="1f303.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},bridge_at_night:{keywords:["photo","sanfrancisco"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f309}" src="1f309.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},milky_way:{keywords:["photo","space","stars"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f30c}" src="1f30c.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},stars:{keywords:["night","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f320}" src="1f320.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},sparkler:{keywords:["stars","night","shine"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f387}" src="1f387.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},fireworks:{keywords:["photo","festival","carnival","congratulations"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f386}" src="1f386.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},rainbow:{keywords:["nature","happy","unicorn_face","photo","sky","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f308}" src="1f308.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},houses:{keywords:["buildings","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3d8}" src="1f3d8.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},european_castle:{keywords:["building","royalty","history"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f0}" src="1f3f0.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},japanese_castle:{keywords:["photo","building"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ef}" src="1f3ef.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},stadium:{keywords:["photo","place","sports","concert","venue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3df}" src="1f3df.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},statue_of_liberty:{keywords:["american","newyork"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5fd}" src="1f5fd.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},house:{keywords:["building","home"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e0}" src="1f3e0.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},house_with_garden:{keywords:["home","plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e1}" src="1f3e1.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},derelict_house:{keywords:["abandon","evict","broken","building"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3da}" src="1f3da.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},office:{keywords:["building","bureau","work"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e2}" src="1f3e2.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},department_store:{keywords:["building","shopping","mall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ec}" src="1f3ec.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},post_office:{keywords:["building","envelope","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e3}" src="1f3e3.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},european_post_office:{keywords:["building","email"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e4}" src="1f3e4.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},hospital:{keywords:["building","health","surgery","doctor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e5}" src="1f3e5.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},bank:{keywords:["building","money","sales","cash","business","enterprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e6}" src="1f3e6.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},hotel:{keywords:["building","accomodation","checkin"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e8}" src="1f3e8.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},convenience_store:{keywords:["building","shopping","groceries"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ea}" src="1f3ea.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},school:{keywords:["building","student","education","learn","teach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3eb}" src="1f3eb.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},love_hotel:{keywords:["like","affection","dating"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e9}" src="1f3e9.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},wedding:{keywords:["love","like","affection","couple","marriage","bride","groom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f492}" src="1f492.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},classical_building:{keywords:["art","culture","history"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3db}" src="1f3db.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},church:{keywords:["building","religion","christ"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26ea" src="26ea.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},mosque:{keywords:["islam","worship","minaret"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f54c}" src="1f54c.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},synagogue:{keywords:["judaism","worship","temple","jewish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f54d}" src="1f54d.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},kaaba:{keywords:["mecca","mosque","islam"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f54b}" src="1f54b.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},shinto_shrine:{keywords:["temple","japan","kyoto"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26e9" src="26e9.png"/>',fitzpatrick_scale:!1,category:"travel_and_places"},watch:{keywords:["time","accessories"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u231a" src="231a.png"/>',fitzpatrick_scale:!1,category:"objects"},iphone:{keywords:["technology","apple","gadgets","dial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f1}" src="1f4f1.png"/>',fitzpatrick_scale:!1,category:"objects"},calling:{keywords:["iphone","incoming"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f2}" src="1f4f2.png"/>',fitzpatrick_scale:!1,category:"objects"},computer:{keywords:["technology","laptop","screen","display","monitor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4bb}" src="1f4bb.png"/>',fitzpatrick_scale:!1,category:"objects"},keyboard:{keywords:["technology","computer","type","input","text"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2328" src="2328.png"/>',fitzpatrick_scale:!1,category:"objects"},desktop_computer:{keywords:["technology","computing","screen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5a5}" src="1f5a5.png"/>',fitzpatrick_scale:!1,category:"objects"},printer:{keywords:["paper","ink"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5a8}" src="1f5a8.png"/>',fitzpatrick_scale:!1,category:"objects"},computer_mouse:{keywords:["click"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5b1}" src="1f5b1.png"/>',fitzpatrick_scale:!1,category:"objects"},trackball:{keywords:["technology","trackpad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5b2}" src="1f5b2.png"/>',fitzpatrick_scale:!1,category:"objects"},joystick:{keywords:["game","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f579}" src="1f579.png"/>',fitzpatrick_scale:!1,category:"objects"},clamp:{keywords:["tool"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5dc}" src="1f5dc.png"/>',fitzpatrick_scale:!1,category:"objects"},minidisc:{keywords:["technology","record","data","disk","90s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4bd}" src="1f4bd.png"/>',fitzpatrick_scale:!1,category:"objects"},floppy_disk:{keywords:["oldschool","technology","save","90s","80s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4be}" src="1f4be.png"/>',fitzpatrick_scale:!1,category:"objects"},cd:{keywords:["technology","dvd","disk","disc","90s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4bf}" src="1f4bf.png"/>',fitzpatrick_scale:!1,category:"objects"},dvd:{keywords:["cd","disk","disc"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c0}" src="1f4c0.png"/>',fitzpatrick_scale:!1,category:"objects"},vhs:{keywords:["record","video","oldschool","90s","80s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4fc}" src="1f4fc.png"/>',fitzpatrick_scale:!1,category:"objects"},camera:{keywords:["gadgets","photography"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f7}" src="1f4f7.png"/>',fitzpatrick_scale:!1,category:"objects"},camera_flash:{keywords:["photography","gadgets"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f8}" src="1f4f8.png"/>',fitzpatrick_scale:!1,category:"objects"},video_camera:{keywords:["film","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f9}" src="1f4f9.png"/>',fitzpatrick_scale:!1,category:"objects"},movie_camera:{keywords:["film","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a5}" src="1f3a5.png"/>',fitzpatrick_scale:!1,category:"objects"},film_projector:{keywords:["video","tape","record","movie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4fd}" src="1f4fd.png"/>',fitzpatrick_scale:!1,category:"objects"},film_strip:{keywords:["movie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f39e}" src="1f39e.png"/>',fitzpatrick_scale:!1,category:"objects"},telephone_receiver:{keywords:["technology","communication","dial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4de}" src="1f4de.png"/>',fitzpatrick_scale:!1,category:"objects"},phone:{keywords:["technology","communication","dial","telephone"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u260e\ufe0f" src="260e.png"/>',fitzpatrick_scale:!1,category:"objects"},pager:{keywords:["bbcall","oldschool","90s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4df}" src="1f4df.png"/>',fitzpatrick_scale:!1,category:"objects"},fax:{keywords:["communication","technology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e0}" src="1f4e0.png"/>',fitzpatrick_scale:!1,category:"objects"},tv:{keywords:["technology","program","oldschool","show","television"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4fa}" src="1f4fa.png"/>',fitzpatrick_scale:!1,category:"objects"},radio:{keywords:["communication","music","podcast","program"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4fb}" src="1f4fb.png"/>',fitzpatrick_scale:!1,category:"objects"},studio_microphone:{keywords:["sing","recording","artist","talkshow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f399}" src="1f399.png"/>',fitzpatrick_scale:!1,category:"objects"},level_slider:{keywords:["scale"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f39a}" src="1f39a.png"/>',fitzpatrick_scale:!1,category:"objects"},control_knobs:{keywords:["dial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f39b}" src="1f39b.png"/>',fitzpatrick_scale:!1,category:"objects"},compass:{keywords:["magnetic","navigation","orienteering"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9ed}" src="1f9ed.png"/>',fitzpatrick_scale:!1,category:"objects"},stopwatch:{keywords:["time","deadline"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23f1" src="23f1.png"/>',fitzpatrick_scale:!1,category:"objects"},timer_clock:{keywords:["alarm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23f2" src="23f2.png"/>',fitzpatrick_scale:!1,category:"objects"},alarm_clock:{keywords:["time","wake"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23f0" src="23f0.png"/>',fitzpatrick_scale:!1,category:"objects"},mantelpiece_clock:{keywords:["time"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f570}" src="1f570.png"/>',fitzpatrick_scale:!1,category:"objects"},hourglass_flowing_sand:{keywords:["oldschool","time","countdown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23f3" src="23f3.png"/>',fitzpatrick_scale:!1,category:"objects"},hourglass:{keywords:["time","clock","oldschool","limit","exam","quiz","test"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u231b" src="231b.png"/>',fitzpatrick_scale:!1,category:"objects"},satellite:{keywords:["communication","future","radio","space"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e1}" src="1f4e1.png"/>',fitzpatrick_scale:!1,category:"objects"},battery:{keywords:["power","energy","sustain"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f50b}" src="1f50b.png"/>',fitzpatrick_scale:!1,category:"objects"},electric_plug:{keywords:["charger","power"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f50c}" src="1f50c.png"/>',fitzpatrick_scale:!1,category:"objects"},bulb:{keywords:["light","electricity","idea"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a1}" src="1f4a1.png"/>',fitzpatrick_scale:!1,category:"objects"},flashlight:{keywords:["dark","camping","sight","night"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f526}" src="1f526.png"/>',fitzpatrick_scale:!1,category:"objects"},candle:{keywords:["fire","wax"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f56f}" src="1f56f.png"/>',fitzpatrick_scale:!1,category:"objects"},fire_extinguisher:{keywords:["quench"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9ef}" src="1f9ef.png"/>',fitzpatrick_scale:!1,category:"objects"},wastebasket:{keywords:["bin","trash","rubbish","garbage","toss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5d1}" src="1f5d1.png"/>',fitzpatrick_scale:!1,category:"objects"},oil_drum:{keywords:["barrell"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6e2}" src="1f6e2.png"/>',fitzpatrick_scale:!1,category:"objects"},money_with_wings:{keywords:["dollar","bills","payment","sale"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b8}" src="1f4b8.png"/>',fitzpatrick_scale:!1,category:"objects"},dollar:{keywords:["money","sales","bill","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b5}" src="1f4b5.png"/>',fitzpatrick_scale:!1,category:"objects"},yen:{keywords:["money","sales","japanese","dollar","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b4}" src="1f4b4.png"/>',fitzpatrick_scale:!1,category:"objects"},euro:{keywords:["money","sales","dollar","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b6}" src="1f4b6.png"/>',fitzpatrick_scale:!1,category:"objects"},pound:{keywords:["british","sterling","money","sales","bills","uk","england","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b7}" src="1f4b7.png"/>',fitzpatrick_scale:!1,category:"objects"},moneybag:{keywords:["dollar","payment","coins","sale"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b0}" src="1f4b0.png"/>',fitzpatrick_scale:!1,category:"objects"},credit_card:{keywords:["money","sales","dollar","bill","payment","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b3}" src="1f4b3.png"/>',fitzpatrick_scale:!1,category:"objects"},gem:{keywords:["blue","ruby","diamond","jewelry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f48e}" src="1f48e.png"/>',fitzpatrick_scale:!1,category:"objects"},balance_scale:{keywords:["law","fairness","weight"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2696" src="2696.png"/>',fitzpatrick_scale:!1,category:"objects"},toolbox:{keywords:["tools","diy","fix","maintainer","mechanic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f0}" src="1f9f0.png"/>',fitzpatrick_scale:!1,category:"objects"},wrench:{keywords:["tools","diy","ikea","fix","maintainer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f527}" src="1f527.png"/>',fitzpatrick_scale:!1,category:"objects"},hammer:{keywords:["tools","build","create"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f528}" src="1f528.png"/>',fitzpatrick_scale:!1,category:"objects"},hammer_and_pick:{keywords:["tools","build","create"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2692" src="2692.png"/>',fitzpatrick_scale:!1,category:"objects"},hammer_and_wrench:{keywords:["tools","build","create"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6e0}" src="1f6e0.png"/>',fitzpatrick_scale:!1,category:"objects"},pick:{keywords:["tools","dig"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26cf" src="26cf.png"/>',fitzpatrick_scale:!1,category:"objects"},nut_and_bolt:{keywords:["handy","tools","fix"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f529}" src="1f529.png"/>',fitzpatrick_scale:!1,category:"objects"},gear:{keywords:["cog"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2699" src="2699.png"/>',fitzpatrick_scale:!1,category:"objects"},brick:{keywords:["bricks"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f1}" src="1f9f1.png"/>',fitzpatrick_scale:!1,category:"objects"},chains:{keywords:["lock","arrest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26d3" src="26d3.png"/>',fitzpatrick_scale:!1,category:"objects"},magnet:{keywords:["attraction","magnetic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f2}" src="1f9f2.png"/>',fitzpatrick_scale:!1,category:"objects"},gun:{keywords:["violence","weapon","pistol","revolver"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f52b}" src="1f52b.png"/>',fitzpatrick_scale:!1,category:"objects"},bomb:{keywords:["boom","explode","explosion","terrorism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a3}" src="1f4a3.png"/>',fitzpatrick_scale:!1,category:"objects"},firecracker:{keywords:["dynamite","boom","explode","explosion","explosive"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e8}" src="1f9e8.png"/>',fitzpatrick_scale:!1,category:"objects"},hocho:{keywords:["knife","blade","cutlery","kitchen","weapon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f52a}" src="1f52a.png"/>',fitzpatrick_scale:!1,category:"objects"},dagger:{keywords:["weapon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5e1}" src="1f5e1.png"/>',fitzpatrick_scale:!1,category:"objects"},crossed_swords:{keywords:["weapon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2694" src="2694.png"/>',fitzpatrick_scale:!1,category:"objects"},shield:{keywords:["protection","security"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6e1}" src="1f6e1.png"/>',fitzpatrick_scale:!1,category:"objects"},smoking:{keywords:["kills","tobacco","cigarette","joint","smoke"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6ac}" src="1f6ac.png"/>',fitzpatrick_scale:!1,category:"objects"},skull_and_crossbones:{keywords:["poison","danger","deadly","scary","death","pirate","evil"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2620" src="2620.png"/>',fitzpatrick_scale:!1,category:"objects"},coffin:{keywords:["vampire","dead","die","death","rip","graveyard","cemetery","casket","funeral","box"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26b0" src="26b0.png"/>',fitzpatrick_scale:!1,category:"objects"},funeral_urn:{keywords:["dead","die","death","rip","ashes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26b1" src="26b1.png"/>',fitzpatrick_scale:!1,category:"objects"},amphora:{keywords:["vase","jar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3fa}" src="1f3fa.png"/>',fitzpatrick_scale:!1,category:"objects"},crystal_ball:{keywords:["disco","party","magic","circus","fortune_teller"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f52e}" src="1f52e.png"/>',fitzpatrick_scale:!1,category:"objects"},prayer_beads:{keywords:["dhikr","religious"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ff}" src="1f4ff.png"/>',fitzpatrick_scale:!1,category:"objects"},nazar_amulet:{keywords:["bead","charm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9ff}" src="1f9ff.png"/>',fitzpatrick_scale:!1,category:"objects"},barber:{keywords:["hair","salon","style"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f488}" src="1f488.png"/>',fitzpatrick_scale:!1,category:"objects"},alembic:{keywords:["distilling","science","experiment","chemistry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2697" src="2697.png"/>',fitzpatrick_scale:!1,category:"objects"},telescope:{keywords:["stars","space","zoom","science","astronomy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f52d}" src="1f52d.png"/>',fitzpatrick_scale:!1,category:"objects"},microscope:{keywords:["laboratory","experiment","zoomin","science","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f52c}" src="1f52c.png"/>',fitzpatrick_scale:!1,category:"objects"},hole:{keywords:["embarrassing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f573}" src="1f573.png"/>',fitzpatrick_scale:!1,category:"objects"},pill:{keywords:["health","medicine","doctor","pharmacy","drug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f48a}" src="1f48a.png"/>',fitzpatrick_scale:!1,category:"objects"},syringe:{keywords:["health","hospital","drugs","blood","medicine","needle","doctor","nurse"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f489}" src="1f489.png"/>',fitzpatrick_scale:!1,category:"objects"},dna:{keywords:["biologist","genetics","life"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9ec}" src="1f9ec.png"/>',fitzpatrick_scale:!1,category:"objects"},microbe:{keywords:["amoeba","bacteria","germs"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9a0}" src="1f9a0.png"/>',fitzpatrick_scale:!1,category:"objects"},petri_dish:{keywords:["bacteria","biology","culture","lab"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9eb}" src="1f9eb.png"/>',fitzpatrick_scale:!1,category:"objects"},test_tube:{keywords:["chemistry","experiment","lab","science"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9ea}" src="1f9ea.png"/>',fitzpatrick_scale:!1,category:"objects"},thermometer:{keywords:["weather","temperature","hot","cold"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f321}" src="1f321.png"/>',fitzpatrick_scale:!1,category:"objects"},broom:{keywords:["cleaning","sweeping","witch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f9}" src="1f9f9.png"/>',fitzpatrick_scale:!1,category:"objects"},basket:{keywords:["laundry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9fa}" src="1f9fa.png"/>',fitzpatrick_scale:!1,category:"objects"},toilet_paper:{keywords:["roll"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9fb}" src="1f9fb.png"/>',fitzpatrick_scale:!1,category:"objects"},label:{keywords:["sale","tag"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f7}" src="1f3f7.png"/>',fitzpatrick_scale:!1,category:"objects"},bookmark:{keywords:["favorite","label","save"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f516}" src="1f516.png"/>',fitzpatrick_scale:!1,category:"objects"},toilet:{keywords:["restroom","wc","washroom","bathroom","potty"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6bd}" src="1f6bd.png"/>',fitzpatrick_scale:!1,category:"objects"},shower:{keywords:["clean","water","bathroom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6bf}" src="1f6bf.png"/>',fitzpatrick_scale:!1,category:"objects"},bathtub:{keywords:["clean","shower","bathroom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6c1}" src="1f6c1.png"/>',fitzpatrick_scale:!1,category:"objects"},soap:{keywords:["bar","bathing","cleaning","lather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9fc}" src="1f9fc.png"/>',fitzpatrick_scale:!1,category:"objects"},sponge:{keywords:["absorbing","cleaning","porous"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9fd}" src="1f9fd.png"/>',fitzpatrick_scale:!1,category:"objects"},lotion_bottle:{keywords:["moisturizer","sunscreen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f4}" src="1f9f4.png"/>',fitzpatrick_scale:!1,category:"objects"},key:{keywords:["lock","door","password"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f511}" src="1f511.png"/>',fitzpatrick_scale:!1,category:"objects"},old_key:{keywords:["lock","door","password"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5dd}" src="1f5dd.png"/>',fitzpatrick_scale:!1,category:"objects"},couch_and_lamp:{keywords:["read","chill"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6cb}" src="1f6cb.png"/>',fitzpatrick_scale:!1,category:"objects"},sleeping_bed:{keywords:["bed","rest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6cc}" src="1f6cc.png"/>',fitzpatrick_scale:!0,category:"objects"},bed:{keywords:["sleep","rest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6cf}" src="1f6cf.png"/>',fitzpatrick_scale:!1,category:"objects"},door:{keywords:["house","entry","exit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6aa}" src="1f6aa.png"/>',fitzpatrick_scale:!1,category:"objects"},bellhop_bell:{keywords:["service"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6ce}" src="1f6ce.png"/>',fitzpatrick_scale:!1,category:"objects"},teddy_bear:{keywords:["plush","stuffed"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f8}" src="1f9f8.png"/>',fitzpatrick_scale:!1,category:"objects"},framed_picture:{keywords:["photography"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5bc}" src="1f5bc.png"/>',fitzpatrick_scale:!1,category:"objects"},world_map:{keywords:["location","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5fa}" src="1f5fa.png"/>',fitzpatrick_scale:!1,category:"objects"},parasol_on_ground:{keywords:["weather","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26f1" src="26f1.png"/>',fitzpatrick_scale:!1,category:"objects"},moyai:{keywords:["rock","easter island","moai"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5ff}" src="1f5ff.png"/>',fitzpatrick_scale:!1,category:"objects"},shopping:{keywords:["mall","buy","purchase"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6cd}" src="1f6cd.png"/>',fitzpatrick_scale:!1,category:"objects"},shopping_cart:{keywords:["trolley"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6d2}" src="1f6d2.png"/>',fitzpatrick_scale:!1,category:"objects"},balloon:{keywords:["party","celebration","birthday","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f388}" src="1f388.png"/>',fitzpatrick_scale:!1,category:"objects"},flags:{keywords:["fish","japanese","koinobori","carp","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f38f}" src="1f38f.png"/>',fitzpatrick_scale:!1,category:"objects"},ribbon:{keywords:["decoration","pink","girl","bowtie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f380}" src="1f380.png"/>',fitzpatrick_scale:!1,category:"objects"},gift:{keywords:["present","birthday","christmas","xmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f381}" src="1f381.png"/>',fitzpatrick_scale:!1,category:"objects"},confetti_ball:{keywords:["festival","party","birthday","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f38a}" src="1f38a.png"/>',fitzpatrick_scale:!1,category:"objects"},tada:{keywords:["party","congratulations","birthday","magic","circus","celebration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f389}" src="1f389.png"/>',fitzpatrick_scale:!1,category:"objects"},dolls:{keywords:["japanese","toy","kimono"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f38e}" src="1f38e.png"/>',fitzpatrick_scale:!1,category:"objects"},wind_chime:{keywords:["nature","ding","spring","bell"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f390}" src="1f390.png"/>',fitzpatrick_scale:!1,category:"objects"},crossed_flags:{keywords:["japanese","nation","country","border"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f38c}" src="1f38c.png"/>',fitzpatrick_scale:!1,category:"objects"},izakaya_lantern:{keywords:["light","paper","halloween","spooky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3ee}" src="1f3ee.png"/>',fitzpatrick_scale:!1,category:"objects"},red_envelope:{keywords:["gift"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e7}" src="1f9e7.png"/>',fitzpatrick_scale:!1,category:"objects"},email:{keywords:["letter","postal","inbox","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2709\ufe0f" src="2709.png"/>',fitzpatrick_scale:!1,category:"objects"},envelope_with_arrow:{keywords:["email","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e9}" src="1f4e9.png"/>',fitzpatrick_scale:!1,category:"objects"},incoming_envelope:{keywords:["email","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e8}" src="1f4e8.png"/>',fitzpatrick_scale:!1,category:"objects"},"e-mail":{keywords:["communication","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e7}" src="1f4e7.png"/>',fitzpatrick_scale:!1,category:"objects"},love_letter:{keywords:["email","like","affection","envelope","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f48c}" src="1f48c.png"/>',fitzpatrick_scale:!1,category:"objects"},postbox:{keywords:["email","letter","envelope"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ee}" src="1f4ee.png"/>',fitzpatrick_scale:!1,category:"objects"},mailbox_closed:{keywords:["email","communication","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ea}" src="1f4ea.png"/>',fitzpatrick_scale:!1,category:"objects"},mailbox:{keywords:["email","inbox","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4eb}" src="1f4eb.png"/>',fitzpatrick_scale:!1,category:"objects"},mailbox_with_mail:{keywords:["email","inbox","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ec}" src="1f4ec.png"/>',fitzpatrick_scale:!1,category:"objects"},mailbox_with_no_mail:{keywords:["email","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ed}" src="1f4ed.png"/>',fitzpatrick_scale:!1,category:"objects"},package:{keywords:["mail","gift","cardboard","box","moving"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e6}" src="1f4e6.png"/>',fitzpatrick_scale:!1,category:"objects"},postal_horn:{keywords:["instrument","music"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ef}" src="1f4ef.png"/>',fitzpatrick_scale:!1,category:"objects"},inbox_tray:{keywords:["email","documents"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e5}" src="1f4e5.png"/>',fitzpatrick_scale:!1,category:"objects"},outbox_tray:{keywords:["inbox","email"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e4}" src="1f4e4.png"/>',fitzpatrick_scale:!1,category:"objects"},scroll:{keywords:["documents","ancient","history","paper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4dc}" src="1f4dc.png"/>',fitzpatrick_scale:!1,category:"objects"},page_with_curl:{keywords:["documents","office","paper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c3}" src="1f4c3.png"/>',fitzpatrick_scale:!1,category:"objects"},bookmark_tabs:{keywords:["favorite","save","order","tidy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d1}" src="1f4d1.png"/>',fitzpatrick_scale:!1,category:"objects"},receipt:{keywords:["accounting","expenses"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9fe}" src="1f9fe.png"/>',fitzpatrick_scale:!1,category:"objects"},bar_chart:{keywords:["graph","presentation","stats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ca}" src="1f4ca.png"/>',fitzpatrick_scale:!1,category:"objects"},chart_with_upwards_trend:{keywords:["graph","presentation","stats","recovery","business","economics","money","sales","good","success"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c8}" src="1f4c8.png"/>',fitzpatrick_scale:!1,category:"objects"},chart_with_downwards_trend:{keywords:["graph","presentation","stats","recession","business","economics","money","sales","bad","failure"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c9}" src="1f4c9.png"/>',fitzpatrick_scale:!1,category:"objects"},page_facing_up:{keywords:["documents","office","paper","information"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c4}" src="1f4c4.png"/>',fitzpatrick_scale:!1,category:"objects"},date:{keywords:["calendar","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c5}" src="1f4c5.png"/>',fitzpatrick_scale:!1,category:"objects"},calendar:{keywords:["schedule","date","planning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c6}" src="1f4c6.png"/>',fitzpatrick_scale:!1,category:"objects"},spiral_calendar:{keywords:["date","schedule","planning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5d3}" src="1f5d3.png"/>',fitzpatrick_scale:!1,category:"objects"},card_index:{keywords:["business","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c7}" src="1f4c7.png"/>',fitzpatrick_scale:!1,category:"objects"},card_file_box:{keywords:["business","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5c3}" src="1f5c3.png"/>',fitzpatrick_scale:!1,category:"objects"},ballot_box:{keywords:["election","vote"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5f3}" src="1f5f3.png"/>',fitzpatrick_scale:!1,category:"objects"},file_cabinet:{keywords:["filing","organizing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5c4}" src="1f5c4.png"/>',fitzpatrick_scale:!1,category:"objects"},clipboard:{keywords:["stationery","documents"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4cb}" src="1f4cb.png"/>',fitzpatrick_scale:!1,category:"objects"},spiral_notepad:{keywords:["memo","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5d2}" src="1f5d2.png"/>',fitzpatrick_scale:!1,category:"objects"},file_folder:{keywords:["documents","business","office"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c1}" src="1f4c1.png"/>',fitzpatrick_scale:!1,category:"objects"},open_file_folder:{keywords:["documents","load"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4c2}" src="1f4c2.png"/>',fitzpatrick_scale:!1,category:"objects"},card_index_dividers:{keywords:["organizing","business","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5c2}" src="1f5c2.png"/>',fitzpatrick_scale:!1,category:"objects"},newspaper_roll:{keywords:["press","headline"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5de}" src="1f5de.png"/>',fitzpatrick_scale:!1,category:"objects"},newspaper:{keywords:["press","headline"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f0}" src="1f4f0.png"/>',fitzpatrick_scale:!1,category:"objects"},notebook:{keywords:["stationery","record","notes","paper","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d3}" src="1f4d3.png"/>',fitzpatrick_scale:!1,category:"objects"},closed_book:{keywords:["read","library","knowledge","textbook","learn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d5}" src="1f4d5.png"/>',fitzpatrick_scale:!1,category:"objects"},green_book:{keywords:["read","library","knowledge","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d7}" src="1f4d7.png"/>',fitzpatrick_scale:!1,category:"objects"},blue_book:{keywords:["read","library","knowledge","learn","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d8}" src="1f4d8.png"/>',fitzpatrick_scale:!1,category:"objects"},orange_book:{keywords:["read","library","knowledge","textbook","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d9}" src="1f4d9.png"/>',fitzpatrick_scale:!1,category:"objects"},notebook_with_decorative_cover:{keywords:["classroom","notes","record","paper","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d4}" src="1f4d4.png"/>',fitzpatrick_scale:!1,category:"objects"},ledger:{keywords:["notes","paper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d2}" src="1f4d2.png"/>',fitzpatrick_scale:!1,category:"objects"},books:{keywords:["literature","library","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4da}" src="1f4da.png"/>',fitzpatrick_scale:!1,category:"objects"},open_book:{keywords:["book","read","library","knowledge","literature","learn","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d6}" src="1f4d6.png"/>',fitzpatrick_scale:!1,category:"objects"},safety_pin:{keywords:["diaper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9f7}" src="1f9f7.png"/>',fitzpatrick_scale:!1,category:"objects"},link:{keywords:["rings","url"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f517}" src="1f517.png"/>',fitzpatrick_scale:!1,category:"objects"},paperclip:{keywords:["documents","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ce}" src="1f4ce.png"/>',fitzpatrick_scale:!1,category:"objects"},paperclips:{keywords:["documents","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f587}" src="1f587.png"/>',fitzpatrick_scale:!1,category:"objects"},scissors:{keywords:["stationery","cut"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2702\ufe0f" src="2702.png"/>',fitzpatrick_scale:!1,category:"objects"},triangular_ruler:{keywords:["stationery","math","architect","sketch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4d0}" src="1f4d0.png"/>',fitzpatrick_scale:!1,category:"objects"},straight_ruler:{keywords:["stationery","calculate","length","math","school","drawing","architect","sketch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4cf}" src="1f4cf.png"/>',fitzpatrick_scale:!1,category:"objects"},abacus:{keywords:["calculation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9ee}" src="1f9ee.png"/>',fitzpatrick_scale:!1,category:"objects"},pushpin:{keywords:["stationery","mark","here"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4cc}" src="1f4cc.png"/>',fitzpatrick_scale:!1,category:"objects"},round_pushpin:{keywords:["stationery","location","map","here"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4cd}" src="1f4cd.png"/>',fitzpatrick_scale:!1,category:"objects"},triangular_flag_on_post:{keywords:["mark","milestone","place"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6a9}" src="1f6a9.png"/>',fitzpatrick_scale:!1,category:"objects"},white_flag:{keywords:["losing","loser","lost","surrender","give up","fail"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f3}" src="1f3f3.png"/>',fitzpatrick_scale:!1,category:"objects"},black_flag:{keywords:["pirate"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f4}" src="1f3f4.png"/>',fitzpatrick_scale:!1,category:"objects"},rainbow_flag:{keywords:["flag","rainbow","pride","gay","lgbt","glbt","queer","homosexual","lesbian","bisexual","transgender"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f3}\ufe0f\u200d\u{1f308}" src="1f3f3-fe0f-200d-1f308.png"/>',fitzpatrick_scale:!1,category:"objects"},closed_lock_with_key:{keywords:["security","privacy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f510}" src="1f510.png"/>',fitzpatrick_scale:!1,category:"objects"},lock:{keywords:["security","password","padlock"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f512}" src="1f512.png"/>',fitzpatrick_scale:!1,category:"objects"},unlock:{keywords:["privacy","security"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f513}" src="1f513.png"/>',fitzpatrick_scale:!1,category:"objects"},lock_with_ink_pen:{keywords:["security","secret"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f50f}" src="1f50f.png"/>',fitzpatrick_scale:!1,category:"objects"},pen:{keywords:["stationery","writing","write"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f58a}" src="1f58a.png"/>',fitzpatrick_scale:!1,category:"objects"},fountain_pen:{keywords:["stationery","writing","write"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f58b}" src="1f58b.png"/>',fitzpatrick_scale:!1,category:"objects"},black_nib:{keywords:["pen","stationery","writing","write"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2712\ufe0f" src="2712.png"/>',fitzpatrick_scale:!1,category:"objects"},memo:{keywords:["write","documents","stationery","pencil","paper","writing","legal","exam","quiz","test","study","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4dd}" src="1f4dd.png"/>',fitzpatrick_scale:!1,category:"objects"},pencil2:{keywords:["stationery","write","paper","writing","school","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u270f\ufe0f" src="270f.png"/>',fitzpatrick_scale:!1,category:"objects"},crayon:{keywords:["drawing","creativity"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f58d}" src="1f58d.png"/>',fitzpatrick_scale:!1,category:"objects"},paintbrush:{keywords:["drawing","creativity","art"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f58c}" src="1f58c.png"/>',fitzpatrick_scale:!1,category:"objects"},mag:{keywords:["search","zoom","find","detective"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f50d}" src="1f50d.png"/>',fitzpatrick_scale:!1,category:"objects"},mag_right:{keywords:["search","zoom","find","detective"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f50e}" src="1f50e.png"/>',fitzpatrick_scale:!1,category:"objects"},heart:{keywords:["love","like","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2764\ufe0f" src="2764.png"/>',fitzpatrick_scale:!1,category:"symbols"},orange_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f9e1}" src="1f9e1.png"/>',fitzpatrick_scale:!1,category:"symbols"},yellow_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f49b}" src="1f49b.png"/>',fitzpatrick_scale:!1,category:"symbols"},green_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f49a}" src="1f49a.png"/>',fitzpatrick_scale:!1,category:"symbols"},blue_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f499}" src="1f499.png"/>',fitzpatrick_scale:!1,category:"symbols"},purple_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f49c}" src="1f49c.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_heart:{keywords:["evil"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5a4}" src="1f5a4.png"/>',fitzpatrick_scale:!1,category:"symbols"},broken_heart:{keywords:["sad","sorry","break","heart","heartbreak"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f494}" src="1f494.png"/>',fitzpatrick_scale:!1,category:"symbols"},heavy_heart_exclamation:{keywords:["decoration","love"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2763" src="2763.png"/>',fitzpatrick_scale:!1,category:"symbols"},two_hearts:{keywords:["love","like","affection","valentines","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f495}" src="1f495.png"/>',fitzpatrick_scale:!1,category:"symbols"},revolving_hearts:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f49e}" src="1f49e.png"/>',fitzpatrick_scale:!1,category:"symbols"},heartbeat:{keywords:["love","like","affection","valentines","pink","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f493}" src="1f493.png"/>',fitzpatrick_scale:!1,category:"symbols"},heartpulse:{keywords:["like","love","affection","valentines","pink"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f497}" src="1f497.png"/>',fitzpatrick_scale:!1,category:"symbols"},sparkling_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f496}" src="1f496.png"/>',fitzpatrick_scale:!1,category:"symbols"},cupid:{keywords:["love","like","heart","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f498}" src="1f498.png"/>',fitzpatrick_scale:!1,category:"symbols"},gift_heart:{keywords:["love","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f49d}" src="1f49d.png"/>',fitzpatrick_scale:!1,category:"symbols"},heart_decoration:{keywords:["purple-square","love","like"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f49f}" src="1f49f.png"/>',fitzpatrick_scale:!1,category:"symbols"},peace_symbol:{keywords:["hippie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u262e" src="262e.png"/>',fitzpatrick_scale:!1,category:"symbols"},latin_cross:{keywords:["christianity"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u271d" src="271d.png"/>',fitzpatrick_scale:!1,category:"symbols"},star_and_crescent:{keywords:["islam"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u262a" src="262a.png"/>',fitzpatrick_scale:!1,category:"symbols"},om:{keywords:["hinduism","buddhism","sikhism","jainism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f549}" src="1f549.png"/>',fitzpatrick_scale:!1,category:"symbols"},wheel_of_dharma:{keywords:["hinduism","buddhism","sikhism","jainism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2638" src="2638.png"/>',fitzpatrick_scale:!1,category:"symbols"},star_of_david:{keywords:["judaism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2721" src="2721.png"/>',fitzpatrick_scale:!1,category:"symbols"},six_pointed_star:{keywords:["purple-square","religion","jewish","hexagram"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f52f}" src="1f52f.png"/>',fitzpatrick_scale:!1,category:"symbols"},menorah:{keywords:["hanukkah","candles","jewish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f54e}" src="1f54e.png"/>',fitzpatrick_scale:!1,category:"symbols"},yin_yang:{keywords:["balance"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u262f" src="262f.png"/>',fitzpatrick_scale:!1,category:"symbols"},orthodox_cross:{keywords:["suppedaneum","religion"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2626" src="2626.png"/>',fitzpatrick_scale:!1,category:"symbols"},place_of_worship:{keywords:["religion","church","temple","prayer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6d0}" src="1f6d0.png"/>',fitzpatrick_scale:!1,category:"symbols"},ophiuchus:{keywords:["sign","purple-square","constellation","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26ce" src="26ce.png"/>',fitzpatrick_scale:!1,category:"symbols"},aries:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2648" src="2648.png"/>',fitzpatrick_scale:!1,category:"symbols"},taurus:{keywords:["purple-square","sign","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2649" src="2649.png"/>',fitzpatrick_scale:!1,category:"symbols"},gemini:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u264a" src="264a.png"/>',fitzpatrick_scale:!1,category:"symbols"},cancer:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u264b" src="264b.png"/>',fitzpatrick_scale:!1,category:"symbols"},leo:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u264c" src="264c.png"/>',fitzpatrick_scale:!1,category:"symbols"},virgo:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u264d" src="264d.png"/>',fitzpatrick_scale:!1,category:"symbols"},libra:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u264e" src="264e.png"/>',fitzpatrick_scale:!1,category:"symbols"},scorpius:{keywords:["sign","zodiac","purple-square","astrology","scorpio"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u264f" src="264f.png"/>',fitzpatrick_scale:!1,category:"symbols"},sagittarius:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2650" src="2650.png"/>',fitzpatrick_scale:!1,category:"symbols"},capricorn:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2651" src="2651.png"/>',fitzpatrick_scale:!1,category:"symbols"},aquarius:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2652" src="2652.png"/>',fitzpatrick_scale:!1,category:"symbols"},pisces:{keywords:["purple-square","sign","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2653" src="2653.png"/>',fitzpatrick_scale:!1,category:"symbols"},id:{keywords:["purple-square","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f194}" src="1f194.png"/>',fitzpatrick_scale:!1,category:"symbols"},atom_symbol:{keywords:["science","physics","chemistry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u269b" src="269b.png"/>',fitzpatrick_scale:!1,category:"symbols"},u7a7a:{keywords:["kanji","japanese","chinese","empty","sky","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f233}" src="1f233.png"/>',fitzpatrick_scale:!1,category:"symbols"},u5272:{keywords:["cut","divide","chinese","kanji","pink-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f239}" src="1f239.png"/>',fitzpatrick_scale:!1,category:"symbols"},radioactive:{keywords:["nuclear","danger"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2622" src="2622.png"/>',fitzpatrick_scale:!1,category:"symbols"},biohazard:{keywords:["danger"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2623" src="2623.png"/>',fitzpatrick_scale:!1,category:"symbols"},mobile_phone_off:{keywords:["mute","orange-square","silence","quiet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f4}" src="1f4f4.png"/>',fitzpatrick_scale:!1,category:"symbols"},vibration_mode:{keywords:["orange-square","phone"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f3}" src="1f4f3.png"/>',fitzpatrick_scale:!1,category:"symbols"},u6709:{keywords:["orange-square","chinese","have","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f236}" src="1f236.png"/>',fitzpatrick_scale:!1,category:"symbols"},u7121:{keywords:["nothing","chinese","kanji","japanese","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f21a}" src="1f21a.png"/>',fitzpatrick_scale:!1,category:"symbols"},u7533:{keywords:["chinese","japanese","kanji","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f238}" src="1f238.png"/>',fitzpatrick_scale:!1,category:"symbols"},u55b6:{keywords:["japanese","opening hours","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f23a}" src="1f23a.png"/>',fitzpatrick_scale:!1,category:"symbols"},u6708:{keywords:["chinese","month","moon","japanese","orange-square","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f237}\ufe0f" src="1f237.png"/>',fitzpatrick_scale:!1,category:"symbols"},eight_pointed_black_star:{keywords:["orange-square","shape","polygon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2734\ufe0f" src="2734.png"/>',fitzpatrick_scale:!1,category:"symbols"},vs:{keywords:["words","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f19a}" src="1f19a.png"/>',fitzpatrick_scale:!1,category:"symbols"},accept:{keywords:["ok","good","chinese","kanji","agree","yes","orange-circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f251}" src="1f251.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_flower:{keywords:["japanese","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ae}" src="1f4ae.png"/>',fitzpatrick_scale:!1,category:"symbols"},ideograph_advantage:{keywords:["chinese","kanji","obtain","get","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f250}" src="1f250.png"/>',fitzpatrick_scale:!1,category:"symbols"},secret:{keywords:["privacy","chinese","sshh","kanji","red-circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u3299\ufe0f" src="3299.png"/>',fitzpatrick_scale:!1,category:"symbols"},congratulations:{keywords:["chinese","kanji","japanese","red-circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u3297\ufe0f" src="3297.png"/>',fitzpatrick_scale:!1,category:"symbols"},u5408:{keywords:["japanese","chinese","join","kanji","red-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f234}" src="1f234.png"/>',fitzpatrick_scale:!1,category:"symbols"},u6e80:{keywords:["full","chinese","japanese","red-square","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f235}" src="1f235.png"/>',fitzpatrick_scale:!1,category:"symbols"},u7981:{keywords:["kanji","japanese","chinese","forbidden","limit","restricted","red-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f232}" src="1f232.png"/>',fitzpatrick_scale:!1,category:"symbols"},a:{keywords:["red-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f170}\ufe0f" src="1f170.png"/>',fitzpatrick_scale:!1,category:"symbols"},b:{keywords:["red-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f171}\ufe0f" src="1f171.png"/>',fitzpatrick_scale:!1,category:"symbols"},ab:{keywords:["red-square","alphabet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f18e}" src="1f18e.png"/>',fitzpatrick_scale:!1,category:"symbols"},cl:{keywords:["alphabet","words","red-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f191}" src="1f191.png"/>',fitzpatrick_scale:!1,category:"symbols"},o2:{keywords:["alphabet","red-square","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f17e}\ufe0f" src="1f17e.png"/>',fitzpatrick_scale:!1,category:"symbols"},sos:{keywords:["help","red-square","words","emergency","911"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f198}" src="1f198.png"/>',fitzpatrick_scale:!1,category:"symbols"},no_entry:{keywords:["limit","security","privacy","bad","denied","stop","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26d4" src="26d4.png"/>',fitzpatrick_scale:!1,category:"symbols"},name_badge:{keywords:["fire","forbid"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4db}" src="1f4db.png"/>',fitzpatrick_scale:!1,category:"symbols"},no_entry_sign:{keywords:["forbid","stop","limit","denied","disallow","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6ab}" src="1f6ab.png"/>',fitzpatrick_scale:!1,category:"symbols"},x:{keywords:["no","delete","remove","cancel","red"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u274c" src="274c.png"/>',fitzpatrick_scale:!1,category:"symbols"},o:{keywords:["circle","round"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2b55" src="2b55.png"/>',fitzpatrick_scale:!1,category:"symbols"},stop_sign:{keywords:["stop"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6d1}" src="1f6d1.png"/>',fitzpatrick_scale:!1,category:"symbols"},anger:{keywords:["angry","mad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a2}" src="1f4a2.png"/>',fitzpatrick_scale:!1,category:"symbols"},hotsprings:{keywords:["bath","warm","relax"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2668\ufe0f" src="2668.png"/>',fitzpatrick_scale:!1,category:"symbols"},no_pedestrians:{keywords:["rules","crossing","walking","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b7}" src="1f6b7.png"/>',fitzpatrick_scale:!1,category:"symbols"},do_not_litter:{keywords:["trash","bin","garbage","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6af}" src="1f6af.png"/>',fitzpatrick_scale:!1,category:"symbols"},no_bicycles:{keywords:["cyclist","prohibited","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b3}" src="1f6b3.png"/>',fitzpatrick_scale:!1,category:"symbols"},"non-potable_water":{keywords:["drink","faucet","tap","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b1}" src="1f6b1.png"/>',fitzpatrick_scale:!1,category:"symbols"},underage:{keywords:["18","drink","pub","night","minor","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f51e}" src="1f51e.png"/>',fitzpatrick_scale:!1,category:"symbols"},no_mobile_phones:{keywords:["iphone","mute","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f5}" src="1f4f5.png"/>',fitzpatrick_scale:!1,category:"symbols"},exclamation:{keywords:["heavy_exclamation_mark","danger","surprise","punctuation","wow","warning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2757" src="2757.png"/>',fitzpatrick_scale:!1,category:"symbols"},grey_exclamation:{keywords:["surprise","punctuation","gray","wow","warning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2755" src="2755.png"/>',fitzpatrick_scale:!1,category:"symbols"},question:{keywords:["doubt","confused"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2753" src="2753.png"/>',fitzpatrick_scale:!1,category:"symbols"},grey_question:{keywords:["doubts","gray","huh","confused"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2754" src="2754.png"/>',fitzpatrick_scale:!1,category:"symbols"},bangbang:{keywords:["exclamation","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u203c\ufe0f" src="203c.png"/>',fitzpatrick_scale:!1,category:"symbols"},interrobang:{keywords:["wat","punctuation","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2049\ufe0f" src="2049.png"/>',fitzpatrick_scale:!1,category:"symbols"},low_brightness:{keywords:["sun","afternoon","warm","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f505}" src="1f505.png"/>',fitzpatrick_scale:!1,category:"symbols"},high_brightness:{keywords:["sun","light"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f506}" src="1f506.png"/>',fitzpatrick_scale:!1,category:"symbols"},trident:{keywords:["weapon","spear"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f531}" src="1f531.png"/>',fitzpatrick_scale:!1,category:"symbols"},fleur_de_lis:{keywords:["decorative","scout"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u269c" src="269c.png"/>',fitzpatrick_scale:!1,category:"symbols"},part_alternation_mark:{keywords:["graph","presentation","stats","business","economics","bad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u303d\ufe0f" src="303d.png"/>',fitzpatrick_scale:!1,category:"symbols"},warning:{keywords:["exclamation","wip","alert","error","problem","issue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26a0\ufe0f" src="26a0.png"/>',fitzpatrick_scale:!1,category:"symbols"},children_crossing:{keywords:["school","warning","danger","sign","driving","yellow-diamond"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b8}" src="1f6b8.png"/>',fitzpatrick_scale:!1,category:"symbols"},beginner:{keywords:["badge","shield"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f530}" src="1f530.png"/>',fitzpatrick_scale:!1,category:"symbols"},recycle:{keywords:["arrow","environment","garbage","trash"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u267b\ufe0f" src="267b.png"/>',fitzpatrick_scale:!1,category:"symbols"},u6307:{keywords:["chinese","point","green-square","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f22f}" src="1f22f.png"/>',fitzpatrick_scale:!1,category:"symbols"},chart:{keywords:["green-square","graph","presentation","stats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b9}" src="1f4b9.png"/>',fitzpatrick_scale:!1,category:"symbols"},sparkle:{keywords:["stars","green-square","awesome","good","fireworks"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2747\ufe0f" src="2747.png"/>',fitzpatrick_scale:!1,category:"symbols"},eight_spoked_asterisk:{keywords:["star","sparkle","green-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2733\ufe0f" src="2733.png"/>',fitzpatrick_scale:!1,category:"symbols"},negative_squared_cross_mark:{keywords:["x","green-square","no","deny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u274e" src="274e.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_check_mark:{keywords:["green-square","ok","agree","vote","election","answer","tick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2705" src="2705.png"/>',fitzpatrick_scale:!1,category:"symbols"},diamond_shape_with_a_dot_inside:{keywords:["jewel","blue","gem","crystal","fancy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4a0}" src="1f4a0.png"/>',fitzpatrick_scale:!1,category:"symbols"},cyclone:{keywords:["weather","swirl","blue","cloud","vortex","spiral","whirlpool","spin","tornado","hurricane","typhoon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f300}" src="1f300.png"/>',fitzpatrick_scale:!1,category:"symbols"},loop:{keywords:["tape","cassette"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u27bf" src="27bf.png"/>',fitzpatrick_scale:!1,category:"symbols"},globe_with_meridians:{keywords:["earth","international","world","internet","interweb","i18n"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f310}" src="1f310.png"/>',fitzpatrick_scale:!1,category:"symbols"},m:{keywords:["alphabet","blue-circle","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u24c2\ufe0f" src="24c2.png"/>',fitzpatrick_scale:!1,category:"symbols"},atm:{keywords:["money","sales","cash","blue-square","payment","bank"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3e7}" src="1f3e7.png"/>',fitzpatrick_scale:!1,category:"symbols"},sa:{keywords:["japanese","blue-square","katakana"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f202}\ufe0f" src="1f202.png"/>',fitzpatrick_scale:!1,category:"symbols"},passport_control:{keywords:["custom","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6c2}" src="1f6c2.png"/>',fitzpatrick_scale:!1,category:"symbols"},customs:{keywords:["passport","border","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6c3}" src="1f6c3.png"/>',fitzpatrick_scale:!1,category:"symbols"},baggage_claim:{keywords:["blue-square","airport","transport"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6c4}" src="1f6c4.png"/>',fitzpatrick_scale:!1,category:"symbols"},left_luggage:{keywords:["blue-square","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6c5}" src="1f6c5.png"/>',fitzpatrick_scale:!1,category:"symbols"},wheelchair:{keywords:["blue-square","disabled","a11y","accessibility"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u267f" src="267f.png"/>',fitzpatrick_scale:!1,category:"symbols"},no_smoking:{keywords:["cigarette","blue-square","smell","smoke"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6ad}" src="1f6ad.png"/>',fitzpatrick_scale:!1,category:"symbols"},wc:{keywords:["toilet","restroom","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6be}" src="1f6be.png"/>',fitzpatrick_scale:!1,category:"symbols"},parking:{keywords:["cars","blue-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f17f}\ufe0f" src="1f17f.png"/>',fitzpatrick_scale:!1,category:"symbols"},potable_water:{keywords:["blue-square","liquid","restroom","cleaning","faucet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b0}" src="1f6b0.png"/>',fitzpatrick_scale:!1,category:"symbols"},mens:{keywords:["toilet","restroom","wc","blue-square","gender","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6b9}" src="1f6b9.png"/>',fitzpatrick_scale:!1,category:"symbols"},womens:{keywords:["purple-square","woman","female","toilet","loo","restroom","gender"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6ba}" src="1f6ba.png"/>',fitzpatrick_scale:!1,category:"symbols"},baby_symbol:{keywords:["orange-square","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6bc}" src="1f6bc.png"/>',fitzpatrick_scale:!1,category:"symbols"},restroom:{keywords:["blue-square","toilet","refresh","wc","gender"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6bb}" src="1f6bb.png"/>',fitzpatrick_scale:!1,category:"symbols"},put_litter_in_its_place:{keywords:["blue-square","sign","human","info"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f6ae}" src="1f6ae.png"/>',fitzpatrick_scale:!1,category:"symbols"},cinema:{keywords:["blue-square","record","film","movie","curtain","stage","theater"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3a6}" src="1f3a6.png"/>',fitzpatrick_scale:!1,category:"symbols"},signal_strength:{keywords:["blue-square","reception","phone","internet","connection","wifi","bluetooth","bars"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4f6}" src="1f4f6.png"/>',fitzpatrick_scale:!1,category:"symbols"},koko:{keywords:["blue-square","here","katakana","japanese","destination"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f201}" src="1f201.png"/>',fitzpatrick_scale:!1,category:"symbols"},ng:{keywords:["blue-square","words","shape","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f196}" src="1f196.png"/>',fitzpatrick_scale:!1,category:"symbols"},ok:{keywords:["good","agree","yes","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f197}" src="1f197.png"/>',fitzpatrick_scale:!1,category:"symbols"},up:{keywords:["blue-square","above","high"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f199}" src="1f199.png"/>',fitzpatrick_scale:!1,category:"symbols"},cool:{keywords:["words","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f192}" src="1f192.png"/>',fitzpatrick_scale:!1,category:"symbols"},new:{keywords:["blue-square","words","start"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f195}" src="1f195.png"/>',fitzpatrick_scale:!1,category:"symbols"},free:{keywords:["blue-square","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f193}" src="1f193.png"/>',fitzpatrick_scale:!1,category:"symbols"},zero:{keywords:["0","numbers","blue-square","null"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="0\ufe0f\u20e3" src="30-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},one:{keywords:["blue-square","numbers","1"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="1\ufe0f\u20e3" src="31-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},two:{keywords:["numbers","2","prime","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="2\ufe0f\u20e3" src="32-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},three:{keywords:["3","numbers","prime","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="3\ufe0f\u20e3" src="33-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},four:{keywords:["4","numbers","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="4\ufe0f\u20e3" src="34-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},five:{keywords:["5","numbers","blue-square","prime"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="5\ufe0f\u20e3" src="35-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},six:{keywords:["6","numbers","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="6\ufe0f\u20e3" src="36-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},seven:{keywords:["7","numbers","blue-square","prime"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="7\ufe0f\u20e3" src="37-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},eight:{keywords:["8","blue-square","numbers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="8\ufe0f\u20e3" src="38-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},nine:{keywords:["blue-square","numbers","9"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="9\ufe0f\u20e3" src="39-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},keycap_ten:{keywords:["numbers","10","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f51f}" src="1f51f.png"/>',fitzpatrick_scale:!1,category:"symbols"},asterisk:{keywords:["star","keycap"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="*\u20e3" src="2a-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},eject_button:{keywords:["blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23cf\ufe0f" src="23cf.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_forward:{keywords:["blue-square","right","direction","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25b6\ufe0f" src="25b6.png"/>',fitzpatrick_scale:!1,category:"symbols"},pause_button:{keywords:["pause","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23f8" src="23f8.png"/>',fitzpatrick_scale:!1,category:"symbols"},next_track_button:{keywords:["forward","next","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23ed" src="23ed.png"/>',fitzpatrick_scale:!1,category:"symbols"},stop_button:{keywords:["blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23f9" src="23f9.png"/>',fitzpatrick_scale:!1,category:"symbols"},record_button:{keywords:["blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23fa" src="23fa.png"/>',fitzpatrick_scale:!1,category:"symbols"},play_or_pause_button:{keywords:["blue-square","play","pause"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23ef" src="23ef.png"/>',fitzpatrick_scale:!1,category:"symbols"},previous_track_button:{keywords:["backward"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23ee" src="23ee.png"/>',fitzpatrick_scale:!1,category:"symbols"},fast_forward:{keywords:["blue-square","play","speed","continue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23e9" src="23e9.png"/>',fitzpatrick_scale:!1,category:"symbols"},rewind:{keywords:["play","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23ea" src="23ea.png"/>',fitzpatrick_scale:!1,category:"symbols"},twisted_rightwards_arrows:{keywords:["blue-square","shuffle","music","random"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f500}" src="1f500.png"/>',fitzpatrick_scale:!1,category:"symbols"},repeat:{keywords:["loop","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f501}" src="1f501.png"/>',fitzpatrick_scale:!1,category:"symbols"},repeat_one:{keywords:["blue-square","loop"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f502}" src="1f502.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_backward:{keywords:["blue-square","left","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25c0\ufe0f" src="25c0.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_up_small:{keywords:["blue-square","triangle","direction","point","forward","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f53c}" src="1f53c.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_down_small:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f53d}" src="1f53d.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_double_up:{keywords:["blue-square","direction","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23eb" src="23eb.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_double_down:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u23ec" src="23ec.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_right:{keywords:["blue-square","next"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u27a1\ufe0f" src="27a1.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_left:{keywords:["blue-square","previous","back"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2b05\ufe0f" src="2b05.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_up:{keywords:["blue-square","continue","top","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2b06\ufe0f" src="2b06.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_down:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2b07\ufe0f" src="2b07.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_upper_right:{keywords:["blue-square","point","direction","diagonal","northeast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2197\ufe0f" src="2197.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_lower_right:{keywords:["blue-square","direction","diagonal","southeast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2198\ufe0f" src="2198.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_lower_left:{keywords:["blue-square","direction","diagonal","southwest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2199\ufe0f" src="2199.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_upper_left:{keywords:["blue-square","point","direction","diagonal","northwest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2196\ufe0f" src="2196.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_up_down:{keywords:["blue-square","direction","way","vertical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2195\ufe0f" src="2195.png"/>',fitzpatrick_scale:!1,category:"symbols"},left_right_arrow:{keywords:["shape","direction","horizontal","sideways"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2194\ufe0f" src="2194.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrows_counterclockwise:{keywords:["blue-square","sync","cycle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f504}" src="1f504.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_right_hook:{keywords:["blue-square","return","rotate","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u21aa\ufe0f" src="21aa.png"/>',fitzpatrick_scale:!1,category:"symbols"},leftwards_arrow_with_hook:{keywords:["back","return","blue-square","undo","enter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u21a9\ufe0f" src="21a9.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_heading_up:{keywords:["blue-square","direction","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2934\ufe0f" src="2934.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrow_heading_down:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2935\ufe0f" src="2935.png"/>',fitzpatrick_scale:!1,category:"symbols"},hash:{keywords:["symbol","blue-square","twitter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="#\ufe0f\u20e3" src="23-20e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},information_source:{keywords:["blue-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2139\ufe0f" src="2139.png"/>',fitzpatrick_scale:!1,category:"symbols"},abc:{keywords:["blue-square","alphabet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f524}" src="1f524.png"/>',fitzpatrick_scale:!1,category:"symbols"},abcd:{keywords:["blue-square","alphabet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f521}" src="1f521.png"/>',fitzpatrick_scale:!1,category:"symbols"},capital_abcd:{keywords:["alphabet","words","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f520}" src="1f520.png"/>',fitzpatrick_scale:!1,category:"symbols"},symbols:{keywords:["blue-square","music","note","ampersand","percent","glyphs","characters"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f523}" src="1f523.png"/>',fitzpatrick_scale:!1,category:"symbols"},musical_note:{keywords:["score","tone","sound"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b5}" src="1f3b5.png"/>',fitzpatrick_scale:!1,category:"symbols"},notes:{keywords:["music","score"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b6}" src="1f3b6.png"/>',fitzpatrick_scale:!1,category:"symbols"},wavy_dash:{keywords:["draw","line","moustache","mustache","squiggle","scribble"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u3030\ufe0f" src="3030.png"/>',fitzpatrick_scale:!1,category:"symbols"},curly_loop:{keywords:["scribble","draw","shape","squiggle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u27b0" src="27b0.png"/>',fitzpatrick_scale:!1,category:"symbols"},heavy_check_mark:{keywords:["ok","nike","answer","yes","tick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2714\ufe0f" src="2714.png"/>',fitzpatrick_scale:!1,category:"symbols"},arrows_clockwise:{keywords:["sync","cycle","round","repeat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f503}" src="1f503.png"/>',fitzpatrick_scale:!1,category:"symbols"},heavy_plus_sign:{keywords:["math","calculation","addition","more","increase"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2795" src="2795.png"/>',fitzpatrick_scale:!1,category:"symbols"},heavy_minus_sign:{keywords:["math","calculation","subtract","less"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2796" src="2796.png"/>',fitzpatrick_scale:!1,category:"symbols"},heavy_division_sign:{keywords:["divide","math","calculation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2797" src="2797.png"/>',fitzpatrick_scale:!1,category:"symbols"},heavy_multiplication_x:{keywords:["math","calculation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2716\ufe0f" src="2716.png"/>',fitzpatrick_scale:!1,category:"symbols"},infinity:{keywords:["forever"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u267e" src="267e.png"/>',fitzpatrick_scale:!1,category:"symbols"},heavy_dollar_sign:{keywords:["money","sales","payment","currency","buck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b2}" src="1f4b2.png"/>',fitzpatrick_scale:!1,category:"symbols"},currency_exchange:{keywords:["money","sales","dollar","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4b1}" src="1f4b1.png"/>',fitzpatrick_scale:!1,category:"symbols"},copyright:{keywords:["ip","license","circle","law","legal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\xa9\ufe0f" src="a9.png"/>',fitzpatrick_scale:!1,category:"symbols"},registered:{keywords:["alphabet","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\xae\ufe0f" src="ae.png"/>',fitzpatrick_scale:!1,category:"symbols"},tm:{keywords:["trademark","brand","law","legal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2122\ufe0f" src="2122.png"/>',fitzpatrick_scale:!1,category:"symbols"},end:{keywords:["words","arrow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f51a}" src="1f51a.png"/>',fitzpatrick_scale:!1,category:"symbols"},back:{keywords:["arrow","words","return"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f519}" src="1f519.png"/>',fitzpatrick_scale:!1,category:"symbols"},on:{keywords:["arrow","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f51b}" src="1f51b.png"/>',fitzpatrick_scale:!1,category:"symbols"},top:{keywords:["words","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f51d}" src="1f51d.png"/>',fitzpatrick_scale:!1,category:"symbols"},soon:{keywords:["arrow","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f51c}" src="1f51c.png"/>',fitzpatrick_scale:!1,category:"symbols"},ballot_box_with_check:{keywords:["ok","agree","confirm","black-square","vote","election","yes","tick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2611\ufe0f" src="2611.png"/>',fitzpatrick_scale:!1,category:"symbols"},radio_button:{keywords:["input","old","music","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f518}" src="1f518.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_circle:{keywords:["shape","round"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26aa" src="26aa.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_circle:{keywords:["shape","button","round"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u26ab" src="26ab.png"/>',fitzpatrick_scale:!1,category:"symbols"},red_circle:{keywords:["shape","error","danger"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f534}" src="1f534.png"/>',fitzpatrick_scale:!1,category:"symbols"},large_blue_circle:{keywords:["shape","icon","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f535}" src="1f535.png"/>',fitzpatrick_scale:!1,category:"symbols"},small_orange_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f538}" src="1f538.png"/>',fitzpatrick_scale:!1,category:"symbols"},small_blue_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f539}" src="1f539.png"/>',fitzpatrick_scale:!1,category:"symbols"},large_orange_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f536}" src="1f536.png"/>',fitzpatrick_scale:!1,category:"symbols"},large_blue_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f537}" src="1f537.png"/>',fitzpatrick_scale:!1,category:"symbols"},small_red_triangle:{keywords:["shape","direction","up","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f53a}" src="1f53a.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_small_square:{keywords:["shape","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25aa\ufe0f" src="25aa.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_small_square:{keywords:["shape","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25ab\ufe0f" src="25ab.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_large_square:{keywords:["shape","icon","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2b1b" src="2b1b.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_large_square:{keywords:["shape","icon","stone","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2b1c" src="2b1c.png"/>',fitzpatrick_scale:!1,category:"symbols"},small_red_triangle_down:{keywords:["shape","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f53b}" src="1f53b.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_medium_square:{keywords:["shape","button","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25fc\ufe0f" src="25fc.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_medium_square:{keywords:["shape","stone","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25fb\ufe0f" src="25fb.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_medium_small_square:{keywords:["icon","shape","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25fe" src="25fe.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_medium_small_square:{keywords:["shape","stone","icon","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u25fd" src="25fd.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_square_button:{keywords:["shape","input","frame"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f532}" src="1f532.png"/>',fitzpatrick_scale:!1,category:"symbols"},white_square_button:{keywords:["shape","input"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f533}" src="1f533.png"/>',fitzpatrick_scale:!1,category:"symbols"},speaker:{keywords:["sound","volume","silence","broadcast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f508}" src="1f508.png"/>',fitzpatrick_scale:!1,category:"symbols"},sound:{keywords:["volume","speaker","broadcast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f509}" src="1f509.png"/>',fitzpatrick_scale:!1,category:"symbols"},loud_sound:{keywords:["volume","noise","noisy","speaker","broadcast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f50a}" src="1f50a.png"/>',fitzpatrick_scale:!1,category:"symbols"},mute:{keywords:["sound","volume","silence","quiet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f507}" src="1f507.png"/>',fitzpatrick_scale:!1,category:"symbols"},mega:{keywords:["sound","speaker","volume"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e3}" src="1f4e3.png"/>',fitzpatrick_scale:!1,category:"symbols"},loudspeaker:{keywords:["volume","sound"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4e2}" src="1f4e2.png"/>',fitzpatrick_scale:!1,category:"symbols"},bell:{keywords:["sound","notification","christmas","xmas","chime"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f514}" src="1f514.png"/>',fitzpatrick_scale:!1,category:"symbols"},no_bell:{keywords:["sound","volume","mute","quiet","silent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f515}" src="1f515.png"/>',fitzpatrick_scale:!1,category:"symbols"},black_joker:{keywords:["poker","cards","game","play","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f0cf}" src="1f0cf.png"/>',fitzpatrick_scale:!1,category:"symbols"},mahjong:{keywords:["game","play","chinese","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f004}" src="1f004.png"/>',fitzpatrick_scale:!1,category:"symbols"},spades:{keywords:["poker","cards","suits","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2660\ufe0f" src="2660.png"/>',fitzpatrick_scale:!1,category:"symbols"},clubs:{keywords:["poker","cards","magic","suits"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2663\ufe0f" src="2663.png"/>',fitzpatrick_scale:!1,category:"symbols"},hearts:{keywords:["poker","cards","magic","suits"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2665\ufe0f" src="2665.png"/>',fitzpatrick_scale:!1,category:"symbols"},diamonds:{keywords:["poker","cards","magic","suits"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u2666\ufe0f" src="2666.png"/>',fitzpatrick_scale:!1,category:"symbols"},flower_playing_cards:{keywords:["game","sunset","red"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3b4}" src="1f3b4.png"/>',fitzpatrick_scale:!1,category:"symbols"},thought_balloon:{keywords:["bubble","cloud","speech","thinking","dream"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ad}" src="1f4ad.png"/>',fitzpatrick_scale:!1,category:"symbols"},right_anger_bubble:{keywords:["caption","speech","thinking","mad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5ef}" src="1f5ef.png"/>',fitzpatrick_scale:!1,category:"symbols"},speech_balloon:{keywords:["bubble","words","message","talk","chatting"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f4ac}" src="1f4ac.png"/>',fitzpatrick_scale:!1,category:"symbols"},left_speech_bubble:{keywords:["words","message","talk","chatting"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f5e8}" src="1f5e8.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock1:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f550}" src="1f550.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock2:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f551}" src="1f551.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock3:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f552}" src="1f552.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock4:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f553}" src="1f553.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock5:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f554}" src="1f554.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock6:{keywords:["time","late","early","schedule","dawn","dusk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f555}" src="1f555.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock7:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f556}" src="1f556.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock8:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f557}" src="1f557.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock9:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f558}" src="1f558.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock10:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f559}" src="1f559.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock11:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f55a}" src="1f55a.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock12:{keywords:["time","noon","midnight","midday","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f55b}" src="1f55b.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock130:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f55c}" src="1f55c.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock230:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f55d}" src="1f55d.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock330:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f55e}" src="1f55e.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock430:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f55f}" src="1f55f.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock530:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f560}" src="1f560.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock630:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f561}" src="1f561.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock730:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f562}" src="1f562.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock830:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f563}" src="1f563.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock930:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f564}" src="1f564.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock1030:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f565}" src="1f565.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock1130:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f566}" src="1f566.png"/>',fitzpatrick_scale:!1,category:"symbols"},clock1230:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f567}" src="1f567.png"/>',fitzpatrick_scale:!1,category:"symbols"},afghanistan:{keywords:["af","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1eb}" src="1f1e6-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},aland_islands:{keywords:["\xc5land","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1fd}" src="1f1e6-1f1fd.png"/>',fitzpatrick_scale:!1,category:"flags"},albania:{keywords:["al","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1f1}" src="1f1e6-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},algeria:{keywords:["dz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e9}\u{1f1ff}" src="1f1e9-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},american_samoa:{keywords:["american","ws","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1f8}" src="1f1e6-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},andorra:{keywords:["ad","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1e9}" src="1f1e6-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},angola:{keywords:["ao","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1f4}" src="1f1e6-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},anguilla:{keywords:["ai","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1ee}" src="1f1e6-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},antarctica:{keywords:["aq","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1f6}" src="1f1e6-1f1f6.png"/>',fitzpatrick_scale:!1,category:"flags"},antigua_barbuda:{keywords:["antigua","barbuda","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1ec}" src="1f1e6-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},argentina:{keywords:["ar","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1f7}" src="1f1e6-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},armenia:{keywords:["am","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1f2}" src="1f1e6-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},aruba:{keywords:["aw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1fc}" src="1f1e6-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},australia:{keywords:["au","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1fa}" src="1f1e6-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},austria:{keywords:["at","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1f9}" src="1f1e6-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},azerbaijan:{keywords:["az","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1ff}" src="1f1e6-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},bahamas:{keywords:["bs","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f8}" src="1f1e7-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},bahrain:{keywords:["bh","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1ed}" src="1f1e7-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},bangladesh:{keywords:["bd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1e9}" src="1f1e7-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},barbados:{keywords:["bb","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1e7}" src="1f1e7-1f1e7.png"/>',fitzpatrick_scale:!1,category:"flags"},belarus:{keywords:["by","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1fe}" src="1f1e7-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},belgium:{keywords:["be","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1ea}" src="1f1e7-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},belize:{keywords:["bz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1ff}" src="1f1e7-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},benin:{keywords:["bj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1ef}" src="1f1e7-1f1ef.png"/>',fitzpatrick_scale:!1,category:"flags"},bermuda:{keywords:["bm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f2}" src="1f1e7-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},bhutan:{keywords:["bt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f9}" src="1f1e7-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},bolivia:{keywords:["bo","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f4}" src="1f1e7-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},caribbean_netherlands:{keywords:["bonaire","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f6}" src="1f1e7-1f1f6.png"/>',fitzpatrick_scale:!1,category:"flags"},bosnia_herzegovina:{keywords:["bosnia","herzegovina","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1e6}" src="1f1e7-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},botswana:{keywords:["bw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1fc}" src="1f1e7-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},brazil:{keywords:["br","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f7}" src="1f1e7-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},british_indian_ocean_territory:{keywords:["british","indian","ocean","territory","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f4}" src="1f1ee-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},british_virgin_islands:{keywords:["british","virgin","islands","bvi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fb}\u{1f1ec}" src="1f1fb-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},brunei:{keywords:["bn","darussalam","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f3}" src="1f1e7-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},bulgaria:{keywords:["bg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1ec}" src="1f1e7-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},burkina_faso:{keywords:["burkina","faso","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1eb}" src="1f1e7-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},burundi:{keywords:["bi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1ee}" src="1f1e7-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},cape_verde:{keywords:["cabo","verde","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1fb}" src="1f1e8-1f1fb.png"/>',fitzpatrick_scale:!1,category:"flags"},cambodia:{keywords:["kh","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1ed}" src="1f1f0-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},cameroon:{keywords:["cm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1f2}" src="1f1e8-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},canada:{keywords:["ca","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1e6}" src="1f1e8-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},canary_islands:{keywords:["canary","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1e8}" src="1f1ee-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},cayman_islands:{keywords:["cayman","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1fe}" src="1f1f0-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},central_african_republic:{keywords:["central","african","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1eb}" src="1f1e8-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},chad:{keywords:["td","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1e9}" src="1f1f9-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},chile:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1f1}" src="1f1e8-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},cn:{keywords:["china","chinese","prc","flag","country","nation","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1f3}" src="1f1e8-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},christmas_island:{keywords:["christmas","island","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1fd}" src="1f1e8-1f1fd.png"/>',fitzpatrick_scale:!1,category:"flags"},cocos_islands:{keywords:["cocos","keeling","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1e8}" src="1f1e8-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},colombia:{keywords:["co","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1f4}" src="1f1e8-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},comoros:{keywords:["km","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1f2}" src="1f1f0-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},congo_brazzaville:{keywords:["congo","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1ec}" src="1f1e8-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},congo_kinshasa:{keywords:["congo","democratic","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1e9}" src="1f1e8-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},cook_islands:{keywords:["cook","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1f0}" src="1f1e8-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},costa_rica:{keywords:["costa","rica","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1f7}" src="1f1e8-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},croatia:{keywords:["hr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ed}\u{1f1f7}" src="1f1ed-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},cuba:{keywords:["cu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1fa}" src="1f1e8-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},curacao:{keywords:["cura\xe7ao","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1fc}" src="1f1e8-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},cyprus:{keywords:["cy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1fe}" src="1f1e8-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},czech_republic:{keywords:["cz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1ff}" src="1f1e8-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},denmark:{keywords:["dk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e9}\u{1f1f0}" src="1f1e9-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},djibouti:{keywords:["dj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e9}\u{1f1ef}" src="1f1e9-1f1ef.png"/>',fitzpatrick_scale:!1,category:"flags"},dominica:{keywords:["dm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e9}\u{1f1f2}" src="1f1e9-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},dominican_republic:{keywords:["dominican","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e9}\u{1f1f4}" src="1f1e9-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},ecuador:{keywords:["ec","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1e8}" src="1f1ea-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},egypt:{keywords:["eg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1ec}" src="1f1ea-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},el_salvador:{keywords:["el","salvador","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1fb}" src="1f1f8-1f1fb.png"/>',fitzpatrick_scale:!1,category:"flags"},equatorial_guinea:{keywords:["equatorial","gn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f6}" src="1f1ec-1f1f6.png"/>',fitzpatrick_scale:!1,category:"flags"},eritrea:{keywords:["er","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1f7}" src="1f1ea-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},estonia:{keywords:["ee","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1ea}" src="1f1ea-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},ethiopia:{keywords:["et","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1f9}" src="1f1ea-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},eu:{keywords:["european","union","flag","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1fa}" src="1f1ea-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},falkland_islands:{keywords:["falkland","islands","malvinas","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1eb}\u{1f1f0}" src="1f1eb-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},faroe_islands:{keywords:["faroe","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1eb}\u{1f1f4}" src="1f1eb-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},fiji:{keywords:["fj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1eb}\u{1f1ef}" src="1f1eb-1f1ef.png"/>',fitzpatrick_scale:!1,category:"flags"},finland:{keywords:["fi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1eb}\u{1f1ee}" src="1f1eb-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},fr:{keywords:["banner","flag","nation","france","french","country"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1eb}\u{1f1f7}" src="1f1eb-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},french_guiana:{keywords:["french","guiana","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1eb}" src="1f1ec-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},french_polynesia:{keywords:["french","polynesia","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1eb}" src="1f1f5-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},french_southern_territories:{keywords:["french","southern","territories","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1eb}" src="1f1f9-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},gabon:{keywords:["ga","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1e6}" src="1f1ec-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},gambia:{keywords:["gm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f2}" src="1f1ec-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},georgia:{keywords:["ge","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1ea}" src="1f1ec-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},de:{keywords:["german","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e9}\u{1f1ea}" src="1f1e9-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},ghana:{keywords:["gh","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1ed}" src="1f1ec-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},gibraltar:{keywords:["gi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1ee}" src="1f1ec-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},greece:{keywords:["gr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f7}" src="1f1ec-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},greenland:{keywords:["gl","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f1}" src="1f1ec-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},grenada:{keywords:["gd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1e9}" src="1f1ec-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},guadeloupe:{keywords:["gp","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f5}" src="1f1ec-1f1f5.png"/>',fitzpatrick_scale:!1,category:"flags"},guam:{keywords:["gu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1fa}" src="1f1ec-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},guatemala:{keywords:["gt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f9}" src="1f1ec-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},guernsey:{keywords:["gg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1ec}" src="1f1ec-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},guinea:{keywords:["gn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f3}" src="1f1ec-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},guinea_bissau:{keywords:["gw","bissau","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1fc}" src="1f1ec-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},guyana:{keywords:["gy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1fe}" src="1f1ec-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},haiti:{keywords:["ht","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ed}\u{1f1f9}" src="1f1ed-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},honduras:{keywords:["hn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ed}\u{1f1f3}" src="1f1ed-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},hong_kong:{keywords:["hong","kong","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ed}\u{1f1f0}" src="1f1ed-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},hungary:{keywords:["hu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ed}\u{1f1fa}" src="1f1ed-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},iceland:{keywords:["is","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f8}" src="1f1ee-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},india:{keywords:["in","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f3}" src="1f1ee-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},indonesia:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1e9}" src="1f1ee-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},iran:{keywords:["iran,","islamic","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f7}" src="1f1ee-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},iraq:{keywords:["iq","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f6}" src="1f1ee-1f1f6.png"/>',fitzpatrick_scale:!1,category:"flags"},ireland:{keywords:["ie","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1ea}" src="1f1ee-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},isle_of_man:{keywords:["isle","man","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f2}" src="1f1ee-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},israel:{keywords:["il","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f1}" src="1f1ee-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},it:{keywords:["italy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ee}\u{1f1f9}" src="1f1ee-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},cote_divoire:{keywords:["ivory","coast","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1ee}" src="1f1e8-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},jamaica:{keywords:["jm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ef}\u{1f1f2}" src="1f1ef-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},jp:{keywords:["japanese","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ef}\u{1f1f5}" src="1f1ef-1f1f5.png"/>',fitzpatrick_scale:!1,category:"flags"},jersey:{keywords:["je","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ef}\u{1f1ea}" src="1f1ef-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},jordan:{keywords:["jo","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ef}\u{1f1f4}" src="1f1ef-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},kazakhstan:{keywords:["kz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1ff}" src="1f1f0-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},kenya:{keywords:["ke","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1ea}" src="1f1f0-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},kiribati:{keywords:["ki","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1ee}" src="1f1f0-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},kosovo:{keywords:["xk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fd}\u{1f1f0}" src="1f1fd-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},kuwait:{keywords:["kw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1fc}" src="1f1f0-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},kyrgyzstan:{keywords:["kg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1ec}" src="1f1f0-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},laos:{keywords:["lao","democratic","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1e6}" src="1f1f1-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},latvia:{keywords:["lv","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1fb}" src="1f1f1-1f1fb.png"/>',fitzpatrick_scale:!1,category:"flags"},lebanon:{keywords:["lb","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1e7}" src="1f1f1-1f1e7.png"/>',fitzpatrick_scale:!1,category:"flags"},lesotho:{keywords:["ls","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1f8}" src="1f1f1-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},liberia:{keywords:["lr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1f7}" src="1f1f1-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},libya:{keywords:["ly","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1fe}" src="1f1f1-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},liechtenstein:{keywords:["li","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1ee}" src="1f1f1-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},lithuania:{keywords:["lt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1f9}" src="1f1f1-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},luxembourg:{keywords:["lu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1fa}" src="1f1f1-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},macau:{keywords:["macao","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f4}" src="1f1f2-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},macedonia:{keywords:["macedonia,","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f0}" src="1f1f2-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},madagascar:{keywords:["mg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1ec}" src="1f1f2-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},malawi:{keywords:["mw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1fc}" src="1f1f2-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},malaysia:{keywords:["my","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1fe}" src="1f1f2-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},maldives:{keywords:["mv","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1fb}" src="1f1f2-1f1fb.png"/>',fitzpatrick_scale:!1,category:"flags"},mali:{keywords:["ml","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f1}" src="1f1f2-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},malta:{keywords:["mt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f9}" src="1f1f2-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},marshall_islands:{keywords:["marshall","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1ed}" src="1f1f2-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},martinique:{keywords:["mq","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f6}" src="1f1f2-1f1f6.png"/>',fitzpatrick_scale:!1,category:"flags"},mauritania:{keywords:["mr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f7}" src="1f1f2-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},mauritius:{keywords:["mu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1fa}" src="1f1f2-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},mayotte:{keywords:["yt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fe}\u{1f1f9}" src="1f1fe-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},mexico:{keywords:["mx","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1fd}" src="1f1f2-1f1fd.png"/>',fitzpatrick_scale:!1,category:"flags"},micronesia:{keywords:["micronesia,","federated","states","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1eb}\u{1f1f2}" src="1f1eb-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},moldova:{keywords:["moldova,","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1e9}" src="1f1f2-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},monaco:{keywords:["mc","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1e8}" src="1f1f2-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},mongolia:{keywords:["mn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f3}" src="1f1f2-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},montenegro:{keywords:["me","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1ea}" src="1f1f2-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},montserrat:{keywords:["ms","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f8}" src="1f1f2-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},morocco:{keywords:["ma","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1e6}" src="1f1f2-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},mozambique:{keywords:["mz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1ff}" src="1f1f2-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},myanmar:{keywords:["mm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f2}" src="1f1f2-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},namibia:{keywords:["na","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1e6}" src="1f1f3-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},nauru:{keywords:["nr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1f7}" src="1f1f3-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},nepal:{keywords:["np","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1f5}" src="1f1f3-1f1f5.png"/>',fitzpatrick_scale:!1,category:"flags"},netherlands:{keywords:["nl","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1f1}" src="1f1f3-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},new_caledonia:{keywords:["new","caledonia","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1e8}" src="1f1f3-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},new_zealand:{keywords:["new","zealand","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1ff}" src="1f1f3-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},nicaragua:{keywords:["ni","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1ee}" src="1f1f3-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},niger:{keywords:["ne","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1ea}" src="1f1f3-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},nigeria:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1ec}" src="1f1f3-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},niue:{keywords:["nu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1fa}" src="1f1f3-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},norfolk_island:{keywords:["norfolk","island","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1eb}" src="1f1f3-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},northern_mariana_islands:{keywords:["northern","mariana","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f2}\u{1f1f5}" src="1f1f2-1f1f5.png"/>',fitzpatrick_scale:!1,category:"flags"},north_korea:{keywords:["north","korea","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1f5}" src="1f1f0-1f1f5.png"/>',fitzpatrick_scale:!1,category:"flags"},norway:{keywords:["no","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f3}\u{1f1f4}" src="1f1f3-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},oman:{keywords:["om_symbol","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f4}\u{1f1f2}" src="1f1f4-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},pakistan:{keywords:["pk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1f0}" src="1f1f5-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},palau:{keywords:["pw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1fc}" src="1f1f5-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},palestinian_territories:{keywords:["palestine","palestinian","territories","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1f8}" src="1f1f5-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},panama:{keywords:["pa","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1e6}" src="1f1f5-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},papua_new_guinea:{keywords:["papua","new","guinea","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1ec}" src="1f1f5-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},paraguay:{keywords:["py","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1fe}" src="1f1f5-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},peru:{keywords:["pe","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1ea}" src="1f1f5-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},philippines:{keywords:["ph","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1ed}" src="1f1f5-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},pitcairn_islands:{keywords:["pitcairn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1f3}" src="1f1f5-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},poland:{keywords:["pl","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1f1}" src="1f1f5-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},portugal:{keywords:["pt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1f9}" src="1f1f5-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},puerto_rico:{keywords:["puerto","rico","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1f7}" src="1f1f5-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},qatar:{keywords:["qa","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f6}\u{1f1e6}" src="1f1f6-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},reunion:{keywords:["r\xe9union","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f7}\u{1f1ea}" src="1f1f7-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},romania:{keywords:["ro","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f7}\u{1f1f4}" src="1f1f7-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},ru:{keywords:["russian","federation","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f7}\u{1f1fa}" src="1f1f7-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},rwanda:{keywords:["rw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f7}\u{1f1fc}" src="1f1f7-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},st_barthelemy:{keywords:["saint","barth\xe9lemy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e7}\u{1f1f1}" src="1f1e7-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},st_helena:{keywords:["saint","helena","ascension","tristan","cunha","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1ed}" src="1f1f8-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},st_kitts_nevis:{keywords:["saint","kitts","nevis","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1f3}" src="1f1f0-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},st_lucia:{keywords:["saint","lucia","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1e8}" src="1f1f1-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},st_pierre_miquelon:{keywords:["saint","pierre","miquelon","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f5}\u{1f1f2}" src="1f1f5-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},st_vincent_grenadines:{keywords:["saint","vincent","grenadines","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fb}\u{1f1e8}" src="1f1fb-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},samoa:{keywords:["ws","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fc}\u{1f1f8}" src="1f1fc-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},san_marino:{keywords:["san","marino","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f2}" src="1f1f8-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},sao_tome_principe:{keywords:["sao","tome","principe","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f9}" src="1f1f8-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},saudi_arabia:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1e6}" src="1f1f8-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},senegal:{keywords:["sn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f3}" src="1f1f8-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},serbia:{keywords:["rs","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f7}\u{1f1f8}" src="1f1f7-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},seychelles:{keywords:["sc","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1e8}" src="1f1f8-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},sierra_leone:{keywords:["sierra","leone","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f1}" src="1f1f8-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},singapore:{keywords:["sg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1ec}" src="1f1f8-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},sint_maarten:{keywords:["sint","maarten","dutch","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1fd}" src="1f1f8-1f1fd.png"/>',fitzpatrick_scale:!1,category:"flags"},slovakia:{keywords:["sk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f0}" src="1f1f8-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},slovenia:{keywords:["si","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1ee}" src="1f1f8-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},solomon_islands:{keywords:["solomon","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1e7}" src="1f1f8-1f1e7.png"/>',fitzpatrick_scale:!1,category:"flags"},somalia:{keywords:["so","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f4}" src="1f1f8-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},south_africa:{keywords:["south","africa","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ff}\u{1f1e6}" src="1f1ff-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},south_georgia_south_sandwich_islands:{keywords:["south","georgia","sandwich","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1f8}" src="1f1ec-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},kr:{keywords:["south","korea","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f0}\u{1f1f7}" src="1f1f0-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},south_sudan:{keywords:["south","sd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f8}" src="1f1f8-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},es:{keywords:["spain","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1f8}" src="1f1ea-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},sri_lanka:{keywords:["sri","lanka","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f1}\u{1f1f0}" src="1f1f1-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},sudan:{keywords:["sd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1e9}" src="1f1f8-1f1e9.png"/>',fitzpatrick_scale:!1,category:"flags"},suriname:{keywords:["sr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1f7}" src="1f1f8-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},swaziland:{keywords:["sz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1ff}" src="1f1f8-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},sweden:{keywords:["se","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1ea}" src="1f1f8-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},switzerland:{keywords:["ch","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e8}\u{1f1ed}" src="1f1e8-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},syria:{keywords:["syrian","arab","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f8}\u{1f1fe}" src="1f1f8-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},taiwan:{keywords:["tw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1fc}" src="1f1f9-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},tajikistan:{keywords:["tj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1ef}" src="1f1f9-1f1ef.png"/>',fitzpatrick_scale:!1,category:"flags"},tanzania:{keywords:["tanzania,","united","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1ff}" src="1f1f9-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},thailand:{keywords:["th","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1ed}" src="1f1f9-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},timor_leste:{keywords:["timor","leste","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1f1}" src="1f1f9-1f1f1.png"/>',fitzpatrick_scale:!1,category:"flags"},togo:{keywords:["tg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1ec}" src="1f1f9-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},tokelau:{keywords:["tk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1f0}" src="1f1f9-1f1f0.png"/>',fitzpatrick_scale:!1,category:"flags"},tonga:{keywords:["to","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1f4}" src="1f1f9-1f1f4.png"/>',fitzpatrick_scale:!1,category:"flags"},trinidad_tobago:{keywords:["trinidad","tobago","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1f9}" src="1f1f9-1f1f9.png"/>',fitzpatrick_scale:!1,category:"flags"},tunisia:{keywords:["tn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1f3}" src="1f1f9-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},tr:{keywords:["turkey","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1f7}" src="1f1f9-1f1f7.png"/>',fitzpatrick_scale:!1,category:"flags"},turkmenistan:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1f2}" src="1f1f9-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},turks_caicos_islands:{keywords:["turks","caicos","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1e8}" src="1f1f9-1f1e8.png"/>',fitzpatrick_scale:!1,category:"flags"},tuvalu:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1f9}\u{1f1fb}" src="1f1f9-1f1fb.png"/>',fitzpatrick_scale:!1,category:"flags"},uganda:{keywords:["ug","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fa}\u{1f1ec}" src="1f1fa-1f1ec.png"/>',fitzpatrick_scale:!1,category:"flags"},ukraine:{keywords:["ua","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fa}\u{1f1e6}" src="1f1fa-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},united_arab_emirates:{keywords:["united","arab","emirates","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1e6}\u{1f1ea}" src="1f1e6-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},uk:{keywords:["united","kingdom","great","britain","northern","ireland","flag","nation","country","banner","british","UK","english","england","union jack"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ec}\u{1f1e7}" src="1f1ec-1f1e7.png"/>',fitzpatrick_scale:!1,category:"flags"},england:{keywords:["flag","english"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f4}\u{e0067}\u{e0062}\u{e0065}\u{e006e}\u{e0067}\u{e007f}" src="1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png"/>',fitzpatrick_scale:!1,category:"flags"},scotland:{keywords:["flag","scottish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f4}\u{e0067}\u{e0062}\u{e0073}\u{e0063}\u{e0074}\u{e007f}" src="1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png"/>',fitzpatrick_scale:!1,category:"flags"},wales:{keywords:["flag","welsh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f4}\u{e0067}\u{e0062}\u{e0077}\u{e006c}\u{e0073}\u{e007f}" src="1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png"/>',fitzpatrick_scale:!1,category:"flags"},us:{keywords:["united","states","america","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fa}\u{1f1f8}" src="1f1fa-1f1f8.png"/>',fitzpatrick_scale:!1,category:"flags"},us_virgin_islands:{keywords:["virgin","islands","us","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fb}\u{1f1ee}" src="1f1fb-1f1ee.png"/>',fitzpatrick_scale:!1,category:"flags"},uruguay:{keywords:["uy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fa}\u{1f1fe}" src="1f1fa-1f1fe.png"/>',fitzpatrick_scale:!1,category:"flags"},uzbekistan:{keywords:["uz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fa}\u{1f1ff}" src="1f1fa-1f1ff.png"/>',fitzpatrick_scale:!1,category:"flags"},vanuatu:{keywords:["vu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fb}\u{1f1fa}" src="1f1fb-1f1fa.png"/>',fitzpatrick_scale:!1,category:"flags"},vatican_city:{keywords:["vatican","city","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fb}\u{1f1e6}" src="1f1fb-1f1e6.png"/>',fitzpatrick_scale:!1,category:"flags"},venezuela:{keywords:["ve","bolivarian","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fb}\u{1f1ea}" src="1f1fb-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},vietnam:{keywords:["viet","nam","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fb}\u{1f1f3}" src="1f1fb-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},wallis_futuna:{keywords:["wallis","futuna","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fc}\u{1f1eb}" src="1f1fc-1f1eb.png"/>',fitzpatrick_scale:!1,category:"flags"},western_sahara:{keywords:["western","sahara","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ea}\u{1f1ed}" src="1f1ea-1f1ed.png"/>',fitzpatrick_scale:!1,category:"flags"},yemen:{keywords:["ye","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fe}\u{1f1ea}" src="1f1fe-1f1ea.png"/>',fitzpatrick_scale:!1,category:"flags"},zambia:{keywords:["zm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ff}\u{1f1f2}" src="1f1ff-1f1f2.png"/>',fitzpatrick_scale:!1,category:"flags"},zimbabwe:{keywords:["zw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1ff}\u{1f1fc}" src="1f1ff-1f1fc.png"/>',fitzpatrick_scale:!1,category:"flags"},united_nations:{keywords:["un","flag","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f1fa}\u{1f1f3}" src="1f1fa-1f1f3.png"/>',fitzpatrick_scale:!1,category:"flags"},pirate_flag:{keywords:["skull","crossbones","flag","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="\u{1f3f4}\u200d\u2620\ufe0f" src="1f3f4-200d-2620-fe0f.png"/>',fitzpatrick_scale:!1,category:"flags"}});admin/assets/vendor/tinymce/js/tinymce/plugins/emoticons/js/emojis.js000064400000555051151213255200022117 0ustar00window.tinymce.Resource.add("tinymce.plugins.emoticons",{grinning:{keywords:["face","smile","happy","joy",":D","grin"],char:"😀",fitzpatrick_scale:false,category:"people"},grimacing:{keywords:["face","grimace","teeth"],char:"😬",fitzpatrick_scale:false,category:"people"},grin:{keywords:["face","happy","smile","joy","kawaii"],char:"😁",fitzpatrick_scale:false,category:"people"},joy:{keywords:["face","cry","tears","weep","happy","happytears","haha"],char:"😂",fitzpatrick_scale:false,category:"people"},rofl:{keywords:["face","rolling","floor","laughing","lol","haha"],char:"🤣",fitzpatrick_scale:false,category:"people"},partying:{keywords:["face","celebration","woohoo"],char:"🥳",fitzpatrick_scale:false,category:"people"},smiley:{keywords:["face","happy","joy","haha",":D",":)","smile","funny"],char:"😃",fitzpatrick_scale:false,category:"people"},smile:{keywords:["face","happy","joy","funny","haha","laugh","like",":D",":)"],char:"😄",fitzpatrick_scale:false,category:"people"},sweat_smile:{keywords:["face","hot","happy","laugh","sweat","smile","relief"],char:"😅",fitzpatrick_scale:false,category:"people"},laughing:{keywords:["happy","joy","lol","satisfied","haha","face","glad","XD","laugh"],char:"😆",fitzpatrick_scale:false,category:"people"},innocent:{keywords:["face","angel","heaven","halo"],char:"😇",fitzpatrick_scale:false,category:"people"},wink:{keywords:["face","happy","mischievous","secret",";)","smile","eye"],char:"😉",fitzpatrick_scale:false,category:"people"},blush:{keywords:["face","smile","happy","flushed","crush","embarrassed","shy","joy"],char:"😊",fitzpatrick_scale:false,category:"people"},slightly_smiling_face:{keywords:["face","smile"],char:"🙂",fitzpatrick_scale:false,category:"people"},upside_down_face:{keywords:["face","flipped","silly","smile"],char:"🙃",fitzpatrick_scale:false,category:"people"},relaxed:{keywords:["face","blush","massage","happiness"],char:"☺️",fitzpatrick_scale:false,category:"people"},yum:{keywords:["happy","joy","tongue","smile","face","silly","yummy","nom","delicious","savouring"],char:"😋",fitzpatrick_scale:false,category:"people"},relieved:{keywords:["face","relaxed","phew","massage","happiness"],char:"😌",fitzpatrick_scale:false,category:"people"},heart_eyes:{keywords:["face","love","like","affection","valentines","infatuation","crush","heart"],char:"😍",fitzpatrick_scale:false,category:"people"},smiling_face_with_three_hearts:{keywords:["face","love","like","affection","valentines","infatuation","crush","hearts","adore"],char:"🥰",fitzpatrick_scale:false,category:"people"},kissing_heart:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:"😘",fitzpatrick_scale:false,category:"people"},kissing:{keywords:["love","like","face","3","valentines","infatuation","kiss"],char:"😗",fitzpatrick_scale:false,category:"people"},kissing_smiling_eyes:{keywords:["face","affection","valentines","infatuation","kiss"],char:"😙",fitzpatrick_scale:false,category:"people"},kissing_closed_eyes:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:"😚",fitzpatrick_scale:false,category:"people"},stuck_out_tongue_winking_eye:{keywords:["face","prank","childish","playful","mischievous","smile","wink","tongue"],char:"😜",fitzpatrick_scale:false,category:"people"},zany:{keywords:["face","goofy","crazy"],char:"🤪",fitzpatrick_scale:false,category:"people"},raised_eyebrow:{keywords:["face","distrust","scepticism","disapproval","disbelief","surprise"],char:"🤨",fitzpatrick_scale:false,category:"people"},monocle:{keywords:["face","stuffy","wealthy"],char:"🧐",fitzpatrick_scale:false,category:"people"},stuck_out_tongue_closed_eyes:{keywords:["face","prank","playful","mischievous","smile","tongue"],char:"😝",fitzpatrick_scale:false,category:"people"},stuck_out_tongue:{keywords:["face","prank","childish","playful","mischievous","smile","tongue"],char:"😛",fitzpatrick_scale:false,category:"people"},money_mouth_face:{keywords:["face","rich","dollar","money"],char:"🤑",fitzpatrick_scale:false,category:"people"},nerd_face:{keywords:["face","nerdy","geek","dork"],char:"🤓",fitzpatrick_scale:false,category:"people"},sunglasses:{keywords:["face","cool","smile","summer","beach","sunglass"],char:"😎",fitzpatrick_scale:false,category:"people"},star_struck:{keywords:["face","smile","starry","eyes","grinning"],char:"🤩",fitzpatrick_scale:false,category:"people"},clown_face:{keywords:["face"],char:"🤡",fitzpatrick_scale:false,category:"people"},cowboy_hat_face:{keywords:["face","cowgirl","hat"],char:"🤠",fitzpatrick_scale:false,category:"people"},hugs:{keywords:["face","smile","hug"],char:"🤗",fitzpatrick_scale:false,category:"people"},smirk:{keywords:["face","smile","mean","prank","smug","sarcasm"],char:"😏",fitzpatrick_scale:false,category:"people"},no_mouth:{keywords:["face","hellokitty"],char:"😶",fitzpatrick_scale:false,category:"people"},neutral_face:{keywords:["indifference","meh",":|","neutral"],char:"😐",fitzpatrick_scale:false,category:"people"},expressionless:{keywords:["face","indifferent","-_-","meh","deadpan"],char:"😑",fitzpatrick_scale:false,category:"people"},unamused:{keywords:["indifference","bored","straight face","serious","sarcasm","unimpressed","skeptical","dubious","side_eye"],char:"😒",fitzpatrick_scale:false,category:"people"},roll_eyes:{keywords:["face","eyeroll","frustrated"],char:"🙄",fitzpatrick_scale:false,category:"people"},thinking:{keywords:["face","hmmm","think","consider"],char:"🤔",fitzpatrick_scale:false,category:"people"},lying_face:{keywords:["face","lie","pinocchio"],char:"🤥",fitzpatrick_scale:false,category:"people"},hand_over_mouth:{keywords:["face","whoops","shock","surprise"],char:"🤭",fitzpatrick_scale:false,category:"people"},shushing:{keywords:["face","quiet","shhh"],char:"🤫",fitzpatrick_scale:false,category:"people"},symbols_over_mouth:{keywords:["face","swearing","cursing","cussing","profanity","expletive"],char:"🤬",fitzpatrick_scale:false,category:"people"},exploding_head:{keywords:["face","shocked","mind","blown"],char:"🤯",fitzpatrick_scale:false,category:"people"},flushed:{keywords:["face","blush","shy","flattered"],char:"😳",fitzpatrick_scale:false,category:"people"},disappointed:{keywords:["face","sad","upset","depressed",":("],char:"😞",fitzpatrick_scale:false,category:"people"},worried:{keywords:["face","concern","nervous",":("],char:"😟",fitzpatrick_scale:false,category:"people"},angry:{keywords:["mad","face","annoyed","frustrated"],char:"😠",fitzpatrick_scale:false,category:"people"},rage:{keywords:["angry","mad","hate","despise"],char:"😡",fitzpatrick_scale:false,category:"people"},pensive:{keywords:["face","sad","depressed","upset"],char:"😔",fitzpatrick_scale:false,category:"people"},confused:{keywords:["face","indifference","huh","weird","hmmm",":/"],char:"😕",fitzpatrick_scale:false,category:"people"},slightly_frowning_face:{keywords:["face","frowning","disappointed","sad","upset"],char:"🙁",fitzpatrick_scale:false,category:"people"},frowning_face:{keywords:["face","sad","upset","frown"],char:"☹",fitzpatrick_scale:false,category:"people"},persevere:{keywords:["face","sick","no","upset","oops"],char:"😣",fitzpatrick_scale:false,category:"people"},confounded:{keywords:["face","confused","sick","unwell","oops",":S"],char:"😖",fitzpatrick_scale:false,category:"people"},tired_face:{keywords:["sick","whine","upset","frustrated"],char:"😫",fitzpatrick_scale:false,category:"people"},weary:{keywords:["face","tired","sleepy","sad","frustrated","upset"],char:"😩",fitzpatrick_scale:false,category:"people"},pleading:{keywords:["face","begging","mercy"],char:"🥺",fitzpatrick_scale:false,category:"people"},triumph:{keywords:["face","gas","phew","proud","pride"],char:"😤",fitzpatrick_scale:false,category:"people"},open_mouth:{keywords:["face","surprise","impressed","wow","whoa",":O"],char:"😮",fitzpatrick_scale:false,category:"people"},scream:{keywords:["face","munch","scared","omg"],char:"😱",fitzpatrick_scale:false,category:"people"},fearful:{keywords:["face","scared","terrified","nervous","oops","huh"],char:"😨",fitzpatrick_scale:false,category:"people"},cold_sweat:{keywords:["face","nervous","sweat"],char:"😰",fitzpatrick_scale:false,category:"people"},hushed:{keywords:["face","woo","shh"],char:"😯",fitzpatrick_scale:false,category:"people"},frowning:{keywords:["face","aw","what"],char:"😦",fitzpatrick_scale:false,category:"people"},anguished:{keywords:["face","stunned","nervous"],char:"😧",fitzpatrick_scale:false,category:"people"},cry:{keywords:["face","tears","sad","depressed","upset",":'("],char:"😢",fitzpatrick_scale:false,category:"people"},disappointed_relieved:{keywords:["face","phew","sweat","nervous"],char:"😥",fitzpatrick_scale:false,category:"people"},drooling_face:{keywords:["face"],char:"🤤",fitzpatrick_scale:false,category:"people"},sleepy:{keywords:["face","tired","rest","nap"],char:"😪",fitzpatrick_scale:false,category:"people"},sweat:{keywords:["face","hot","sad","tired","exercise"],char:"😓",fitzpatrick_scale:false,category:"people"},hot:{keywords:["face","feverish","heat","red","sweating"],char:"🥵",fitzpatrick_scale:false,category:"people"},cold:{keywords:["face","blue","freezing","frozen","frostbite","icicles"],char:"🥶",fitzpatrick_scale:false,category:"people"},sob:{keywords:["face","cry","tears","sad","upset","depressed"],char:"😭",fitzpatrick_scale:false,category:"people"},dizzy_face:{keywords:["spent","unconscious","xox","dizzy"],char:"😵",fitzpatrick_scale:false,category:"people"},astonished:{keywords:["face","xox","surprised","poisoned"],char:"😲",fitzpatrick_scale:false,category:"people"},zipper_mouth_face:{keywords:["face","sealed","zipper","secret"],char:"🤐",fitzpatrick_scale:false,category:"people"},nauseated_face:{keywords:["face","vomit","gross","green","sick","throw up","ill"],char:"🤢",fitzpatrick_scale:false,category:"people"},sneezing_face:{keywords:["face","gesundheit","sneeze","sick","allergy"],char:"🤧",fitzpatrick_scale:false,category:"people"},vomiting:{keywords:["face","sick"],char:"🤮",fitzpatrick_scale:false,category:"people"},mask:{keywords:["face","sick","ill","disease"],char:"😷",fitzpatrick_scale:false,category:"people"},face_with_thermometer:{keywords:["sick","temperature","thermometer","cold","fever"],char:"🤒",fitzpatrick_scale:false,category:"people"},face_with_head_bandage:{keywords:["injured","clumsy","bandage","hurt"],char:"🤕",fitzpatrick_scale:false,category:"people"},woozy:{keywords:["face","dizzy","intoxicated","tipsy","wavy"],char:"🥴",fitzpatrick_scale:false,category:"people"},sleeping:{keywords:["face","tired","sleepy","night","zzz"],char:"😴",fitzpatrick_scale:false,category:"people"},zzz:{keywords:["sleepy","tired","dream"],char:"💤",fitzpatrick_scale:false,category:"people"},poop:{keywords:["hankey","shitface","fail","turd","shit"],char:"💩",fitzpatrick_scale:false,category:"people"},smiling_imp:{keywords:["devil","horns"],char:"😈",fitzpatrick_scale:false,category:"people"},imp:{keywords:["devil","angry","horns"],char:"👿",fitzpatrick_scale:false,category:"people"},japanese_ogre:{keywords:["monster","red","mask","halloween","scary","creepy","devil","demon","japanese","ogre"],char:"👹",fitzpatrick_scale:false,category:"people"},japanese_goblin:{keywords:["red","evil","mask","monster","scary","creepy","japanese","goblin"],char:"👺",fitzpatrick_scale:false,category:"people"},skull:{keywords:["dead","skeleton","creepy","death"],char:"💀",fitzpatrick_scale:false,category:"people"},ghost:{keywords:["halloween","spooky","scary"],char:"👻",fitzpatrick_scale:false,category:"people"},alien:{keywords:["UFO","paul","weird","outer_space"],char:"👽",fitzpatrick_scale:false,category:"people"},robot:{keywords:["computer","machine","bot"],char:"🤖",fitzpatrick_scale:false,category:"people"},smiley_cat:{keywords:["animal","cats","happy","smile"],char:"😺",fitzpatrick_scale:false,category:"people"},smile_cat:{keywords:["animal","cats","smile"],char:"😸",fitzpatrick_scale:false,category:"people"},joy_cat:{keywords:["animal","cats","haha","happy","tears"],char:"😹",fitzpatrick_scale:false,category:"people"},heart_eyes_cat:{keywords:["animal","love","like","affection","cats","valentines","heart"],char:"😻",fitzpatrick_scale:false,category:"people"},smirk_cat:{keywords:["animal","cats","smirk"],char:"😼",fitzpatrick_scale:false,category:"people"},kissing_cat:{keywords:["animal","cats","kiss"],char:"😽",fitzpatrick_scale:false,category:"people"},scream_cat:{keywords:["animal","cats","munch","scared","scream"],char:"🙀",fitzpatrick_scale:false,category:"people"},crying_cat_face:{keywords:["animal","tears","weep","sad","cats","upset","cry"],char:"😿",fitzpatrick_scale:false,category:"people"},pouting_cat:{keywords:["animal","cats"],char:"😾",fitzpatrick_scale:false,category:"people"},palms_up:{keywords:["hands","gesture","cupped","prayer"],char:"🤲",fitzpatrick_scale:true,category:"people"},raised_hands:{keywords:["gesture","hooray","yea","celebration","hands"],char:"🙌",fitzpatrick_scale:true,category:"people"},clap:{keywords:["hands","praise","applause","congrats","yay"],char:"👏",fitzpatrick_scale:true,category:"people"},wave:{keywords:["hands","gesture","goodbye","solong","farewell","hello","hi","palm"],char:"👋",fitzpatrick_scale:true,category:"people"},call_me_hand:{keywords:["hands","gesture"],char:"🤙",fitzpatrick_scale:true,category:"people"},"+1":{keywords:["thumbsup","yes","awesome","good","agree","accept","cool","hand","like"],char:"👍",fitzpatrick_scale:true,category:"people"},"-1":{keywords:["thumbsdown","no","dislike","hand"],char:"👎",fitzpatrick_scale:true,category:"people"},facepunch:{keywords:["angry","violence","fist","hit","attack","hand"],char:"👊",fitzpatrick_scale:true,category:"people"},fist:{keywords:["fingers","hand","grasp"],char:"✊",fitzpatrick_scale:true,category:"people"},fist_left:{keywords:["hand","fistbump"],char:"🤛",fitzpatrick_scale:true,category:"people"},fist_right:{keywords:["hand","fistbump"],char:"🤜",fitzpatrick_scale:true,category:"people"},v:{keywords:["fingers","ohyeah","hand","peace","victory","two"],char:"✌",fitzpatrick_scale:true,category:"people"},ok_hand:{keywords:["fingers","limbs","perfect","ok","okay"],char:"👌",fitzpatrick_scale:true,category:"people"},raised_hand:{keywords:["fingers","stop","highfive","palm","ban"],char:"✋",fitzpatrick_scale:true,category:"people"},raised_back_of_hand:{keywords:["fingers","raised","backhand"],char:"🤚",fitzpatrick_scale:true,category:"people"},open_hands:{keywords:["fingers","butterfly","hands","open"],char:"👐",fitzpatrick_scale:true,category:"people"},muscle:{keywords:["arm","flex","hand","summer","strong","biceps"],char:"💪",fitzpatrick_scale:true,category:"people"},pray:{keywords:["please","hope","wish","namaste","highfive"],char:"🙏",fitzpatrick_scale:true,category:"people"},foot:{keywords:["kick","stomp"],char:"🦶",fitzpatrick_scale:true,category:"people"},leg:{keywords:["kick","limb"],char:"🦵",fitzpatrick_scale:true,category:"people"},handshake:{keywords:["agreement","shake"],char:"🤝",fitzpatrick_scale:false,category:"people"},point_up:{keywords:["hand","fingers","direction","up"],char:"☝",fitzpatrick_scale:true,category:"people"},point_up_2:{keywords:["fingers","hand","direction","up"],char:"👆",fitzpatrick_scale:true,category:"people"},point_down:{keywords:["fingers","hand","direction","down"],char:"👇",fitzpatrick_scale:true,category:"people"},point_left:{keywords:["direction","fingers","hand","left"],char:"👈",fitzpatrick_scale:true,category:"people"},point_right:{keywords:["fingers","hand","direction","right"],char:"👉",fitzpatrick_scale:true,category:"people"},fu:{keywords:["hand","fingers","rude","middle","flipping"],char:"🖕",fitzpatrick_scale:true,category:"people"},raised_hand_with_fingers_splayed:{keywords:["hand","fingers","palm"],char:"🖐",fitzpatrick_scale:true,category:"people"},love_you:{keywords:["hand","fingers","gesture"],char:"🤟",fitzpatrick_scale:true,category:"people"},metal:{keywords:["hand","fingers","evil_eye","sign_of_horns","rock_on"],char:"🤘",fitzpatrick_scale:true,category:"people"},crossed_fingers:{keywords:["good","lucky"],char:"🤞",fitzpatrick_scale:true,category:"people"},vulcan_salute:{keywords:["hand","fingers","spock","star trek"],char:"🖖",fitzpatrick_scale:true,category:"people"},writing_hand:{keywords:["lower_left_ballpoint_pen","stationery","write","compose"],char:"✍",fitzpatrick_scale:true,category:"people"},selfie:{keywords:["camera","phone"],char:"🤳",fitzpatrick_scale:true,category:"people"},nail_care:{keywords:["beauty","manicure","finger","fashion","nail"],char:"💅",fitzpatrick_scale:true,category:"people"},lips:{keywords:["mouth","kiss"],char:"👄",fitzpatrick_scale:false,category:"people"},tooth:{keywords:["teeth","dentist"],char:"🦷",fitzpatrick_scale:false,category:"people"},tongue:{keywords:["mouth","playful"],char:"👅",fitzpatrick_scale:false,category:"people"},ear:{keywords:["face","hear","sound","listen"],char:"👂",fitzpatrick_scale:true,category:"people"},nose:{keywords:["smell","sniff"],char:"👃",fitzpatrick_scale:true,category:"people"},eye:{keywords:["face","look","see","watch","stare"],char:"👁",fitzpatrick_scale:false,category:"people"},eyes:{keywords:["look","watch","stalk","peek","see"],char:"👀",fitzpatrick_scale:false,category:"people"},brain:{keywords:["smart","intelligent"],char:"🧠",fitzpatrick_scale:false,category:"people"},bust_in_silhouette:{keywords:["user","person","human"],char:"👤",fitzpatrick_scale:false,category:"people"},busts_in_silhouette:{keywords:["user","person","human","group","team"],char:"👥",fitzpatrick_scale:false,category:"people"},speaking_head:{keywords:["user","person","human","sing","say","talk"],char:"🗣",fitzpatrick_scale:false,category:"people"},baby:{keywords:["child","boy","girl","toddler"],char:"👶",fitzpatrick_scale:true,category:"people"},child:{keywords:["gender-neutral","young"],char:"🧒",fitzpatrick_scale:true,category:"people"},boy:{keywords:["man","male","guy","teenager"],char:"👦",fitzpatrick_scale:true,category:"people"},girl:{keywords:["female","woman","teenager"],char:"👧",fitzpatrick_scale:true,category:"people"},adult:{keywords:["gender-neutral","person"],char:"🧑",fitzpatrick_scale:true,category:"people"},man:{keywords:["mustache","father","dad","guy","classy","sir","moustache"],char:"👨",fitzpatrick_scale:true,category:"people"},woman:{keywords:["female","girls","lady"],char:"👩",fitzpatrick_scale:true,category:"people"},blonde_woman:{keywords:["woman","female","girl","blonde","person"],char:"👱‍♀️",fitzpatrick_scale:true,category:"people"},blonde_man:{keywords:["man","male","boy","blonde","guy","person"],char:"👱",fitzpatrick_scale:true,category:"people"},bearded_person:{keywords:["person","bewhiskered"],char:"🧔",fitzpatrick_scale:true,category:"people"},older_adult:{keywords:["human","elder","senior","gender-neutral"],char:"🧓",fitzpatrick_scale:true,category:"people"},older_man:{keywords:["human","male","men","old","elder","senior"],char:"👴",fitzpatrick_scale:true,category:"people"},older_woman:{keywords:["human","female","women","lady","old","elder","senior"],char:"👵",fitzpatrick_scale:true,category:"people"},man_with_gua_pi_mao:{keywords:["male","boy","chinese"],char:"👲",fitzpatrick_scale:true,category:"people"},woman_with_headscarf:{keywords:["female","hijab","mantilla","tichel"],char:"🧕",fitzpatrick_scale:true,category:"people"},woman_with_turban:{keywords:["female","indian","hinduism","arabs","woman"],char:"👳‍♀️",fitzpatrick_scale:true,category:"people"},man_with_turban:{keywords:["male","indian","hinduism","arabs"],char:"👳",fitzpatrick_scale:true,category:"people"},policewoman:{keywords:["woman","police","law","legal","enforcement","arrest","911","female"],char:"👮‍♀️",fitzpatrick_scale:true,category:"people"},policeman:{keywords:["man","police","law","legal","enforcement","arrest","911"],char:"👮",fitzpatrick_scale:true,category:"people"},construction_worker_woman:{keywords:["female","human","wip","build","construction","worker","labor","woman"],char:"👷‍♀️",fitzpatrick_scale:true,category:"people"},construction_worker_man:{keywords:["male","human","wip","guy","build","construction","worker","labor"],char:"👷",fitzpatrick_scale:true,category:"people"},guardswoman:{keywords:["uk","gb","british","female","royal","woman"],char:"💂‍♀️",fitzpatrick_scale:true,category:"people"},guardsman:{keywords:["uk","gb","british","male","guy","royal"],char:"💂",fitzpatrick_scale:true,category:"people"},female_detective:{keywords:["human","spy","detective","female","woman"],char:"🕵️‍♀️",fitzpatrick_scale:true,category:"people"},male_detective:{keywords:["human","spy","detective"],char:"🕵",fitzpatrick_scale:true,category:"people"},woman_health_worker:{keywords:["doctor","nurse","therapist","healthcare","woman","human"],char:"👩‍⚕️",fitzpatrick_scale:true,category:"people"},man_health_worker:{keywords:["doctor","nurse","therapist","healthcare","man","human"],char:"👨‍⚕️",fitzpatrick_scale:true,category:"people"},woman_farmer:{keywords:["rancher","gardener","woman","human"],char:"👩‍🌾",fitzpatrick_scale:true,category:"people"},man_farmer:{keywords:["rancher","gardener","man","human"],char:"👨‍🌾",fitzpatrick_scale:true,category:"people"},woman_cook:{keywords:["chef","woman","human"],char:"👩‍🍳",fitzpatrick_scale:true,category:"people"},man_cook:{keywords:["chef","man","human"],char:"👨‍🍳",fitzpatrick_scale:true,category:"people"},woman_student:{keywords:["graduate","woman","human"],char:"👩‍🎓",fitzpatrick_scale:true,category:"people"},man_student:{keywords:["graduate","man","human"],char:"👨‍🎓",fitzpatrick_scale:true,category:"people"},woman_singer:{keywords:["rockstar","entertainer","woman","human"],char:"👩‍🎤",fitzpatrick_scale:true,category:"people"},man_singer:{keywords:["rockstar","entertainer","man","human"],char:"👨‍🎤",fitzpatrick_scale:true,category:"people"},woman_teacher:{keywords:["instructor","professor","woman","human"],char:"👩‍🏫",fitzpatrick_scale:true,category:"people"},man_teacher:{keywords:["instructor","professor","man","human"],char:"👨‍🏫",fitzpatrick_scale:true,category:"people"},woman_factory_worker:{keywords:["assembly","industrial","woman","human"],char:"👩‍🏭",fitzpatrick_scale:true,category:"people"},man_factory_worker:{keywords:["assembly","industrial","man","human"],char:"👨‍🏭",fitzpatrick_scale:true,category:"people"},woman_technologist:{keywords:["coder","developer","engineer","programmer","software","woman","human","laptop","computer"],char:"👩‍💻",fitzpatrick_scale:true,category:"people"},man_technologist:{keywords:["coder","developer","engineer","programmer","software","man","human","laptop","computer"],char:"👨‍💻",fitzpatrick_scale:true,category:"people"},woman_office_worker:{keywords:["business","manager","woman","human"],char:"👩‍💼",fitzpatrick_scale:true,category:"people"},man_office_worker:{keywords:["business","manager","man","human"],char:"👨‍💼",fitzpatrick_scale:true,category:"people"},woman_mechanic:{keywords:["plumber","woman","human","wrench"],char:"👩‍🔧",fitzpatrick_scale:true,category:"people"},man_mechanic:{keywords:["plumber","man","human","wrench"],char:"👨‍🔧",fitzpatrick_scale:true,category:"people"},woman_scientist:{keywords:["biologist","chemist","engineer","physicist","woman","human"],char:"👩‍🔬",fitzpatrick_scale:true,category:"people"},man_scientist:{keywords:["biologist","chemist","engineer","physicist","man","human"],char:"👨‍🔬",fitzpatrick_scale:true,category:"people"},woman_artist:{keywords:["painter","woman","human"],char:"👩‍🎨",fitzpatrick_scale:true,category:"people"},man_artist:{keywords:["painter","man","human"],char:"👨‍🎨",fitzpatrick_scale:true,category:"people"},woman_firefighter:{keywords:["fireman","woman","human"],char:"👩‍🚒",fitzpatrick_scale:true,category:"people"},man_firefighter:{keywords:["fireman","man","human"],char:"👨‍🚒",fitzpatrick_scale:true,category:"people"},woman_pilot:{keywords:["aviator","plane","woman","human"],char:"👩‍✈️",fitzpatrick_scale:true,category:"people"},man_pilot:{keywords:["aviator","plane","man","human"],char:"👨‍✈️",fitzpatrick_scale:true,category:"people"},woman_astronaut:{keywords:["space","rocket","woman","human"],char:"👩‍🚀",fitzpatrick_scale:true,category:"people"},man_astronaut:{keywords:["space","rocket","man","human"],char:"👨‍🚀",fitzpatrick_scale:true,category:"people"},woman_judge:{keywords:["justice","court","woman","human"],char:"👩‍⚖️",fitzpatrick_scale:true,category:"people"},man_judge:{keywords:["justice","court","man","human"],char:"👨‍⚖️",fitzpatrick_scale:true,category:"people"},woman_superhero:{keywords:["woman","female","good","heroine","superpowers"],char:"🦸‍♀️",fitzpatrick_scale:true,category:"people"},man_superhero:{keywords:["man","male","good","hero","superpowers"],char:"🦸‍♂️",fitzpatrick_scale:true,category:"people"},woman_supervillain:{keywords:["woman","female","evil","bad","criminal","heroine","superpowers"],char:"🦹‍♀️",fitzpatrick_scale:true,category:"people"},man_supervillain:{keywords:["man","male","evil","bad","criminal","hero","superpowers"],char:"🦹‍♂️",fitzpatrick_scale:true,category:"people"},mrs_claus:{keywords:["woman","female","xmas","mother christmas"],char:"🤶",fitzpatrick_scale:true,category:"people"},santa:{keywords:["festival","man","male","xmas","father christmas"],char:"🎅",fitzpatrick_scale:true,category:"people"},sorceress:{keywords:["woman","female","mage","witch"],char:"🧙‍♀️",fitzpatrick_scale:true,category:"people"},wizard:{keywords:["man","male","mage","sorcerer"],char:"🧙‍♂️",fitzpatrick_scale:true,category:"people"},woman_elf:{keywords:["woman","female"],char:"🧝‍♀️",fitzpatrick_scale:true,category:"people"},man_elf:{keywords:["man","male"],char:"🧝‍♂️",fitzpatrick_scale:true,category:"people"},woman_vampire:{keywords:["woman","female"],char:"🧛‍♀️",fitzpatrick_scale:true,category:"people"},man_vampire:{keywords:["man","male","dracula"],char:"🧛‍♂️",fitzpatrick_scale:true,category:"people"},woman_zombie:{keywords:["woman","female","undead","walking dead"],char:"🧟‍♀️",fitzpatrick_scale:false,category:"people"},man_zombie:{keywords:["man","male","dracula","undead","walking dead"],char:"🧟‍♂️",fitzpatrick_scale:false,category:"people"},woman_genie:{keywords:["woman","female"],char:"🧞‍♀️",fitzpatrick_scale:false,category:"people"},man_genie:{keywords:["man","male"],char:"🧞‍♂️",fitzpatrick_scale:false,category:"people"},mermaid:{keywords:["woman","female","merwoman","ariel"],char:"🧜‍♀️",fitzpatrick_scale:true,category:"people"},merman:{keywords:["man","male","triton"],char:"🧜‍♂️",fitzpatrick_scale:true,category:"people"},woman_fairy:{keywords:["woman","female"],char:"🧚‍♀️",fitzpatrick_scale:true,category:"people"},man_fairy:{keywords:["man","male"],char:"🧚‍♂️",fitzpatrick_scale:true,category:"people"},angel:{keywords:["heaven","wings","halo"],char:"👼",fitzpatrick_scale:true,category:"people"},pregnant_woman:{keywords:["baby"],char:"🤰",fitzpatrick_scale:true,category:"people"},breastfeeding:{keywords:["nursing","baby"],char:"🤱",fitzpatrick_scale:true,category:"people"},princess:{keywords:["girl","woman","female","blond","crown","royal","queen"],char:"👸",fitzpatrick_scale:true,category:"people"},prince:{keywords:["boy","man","male","crown","royal","king"],char:"🤴",fitzpatrick_scale:true,category:"people"},bride_with_veil:{keywords:["couple","marriage","wedding","woman","bride"],char:"👰",fitzpatrick_scale:true,category:"people"},man_in_tuxedo:{keywords:["couple","marriage","wedding","groom"],char:"🤵",fitzpatrick_scale:true,category:"people"},running_woman:{keywords:["woman","walking","exercise","race","running","female"],char:"🏃‍♀️",fitzpatrick_scale:true,category:"people"},running_man:{keywords:["man","walking","exercise","race","running"],char:"🏃",fitzpatrick_scale:true,category:"people"},walking_woman:{keywords:["human","feet","steps","woman","female"],char:"🚶‍♀️",fitzpatrick_scale:true,category:"people"},walking_man:{keywords:["human","feet","steps"],char:"🚶",fitzpatrick_scale:true,category:"people"},dancer:{keywords:["female","girl","woman","fun"],char:"💃",fitzpatrick_scale:true,category:"people"},man_dancing:{keywords:["male","boy","fun","dancer"],char:"🕺",fitzpatrick_scale:true,category:"people"},dancing_women:{keywords:["female","bunny","women","girls"],char:"👯",fitzpatrick_scale:false,category:"people"},dancing_men:{keywords:["male","bunny","men","boys"],char:"👯‍♂️",fitzpatrick_scale:false,category:"people"},couple:{keywords:["pair","people","human","love","date","dating","like","affection","valentines","marriage"],char:"👫",fitzpatrick_scale:false,category:"people"},two_men_holding_hands:{keywords:["pair","couple","love","like","bromance","friendship","people","human"],char:"👬",fitzpatrick_scale:false,category:"people"},two_women_holding_hands:{keywords:["pair","friendship","couple","love","like","female","people","human"],char:"👭",fitzpatrick_scale:false,category:"people"},bowing_woman:{keywords:["woman","female","girl"],char:"🙇‍♀️",fitzpatrick_scale:true,category:"people"},bowing_man:{keywords:["man","male","boy"],char:"🙇",fitzpatrick_scale:true,category:"people"},man_facepalming:{keywords:["man","male","boy","disbelief"],char:"🤦‍♂️",fitzpatrick_scale:true,category:"people"},woman_facepalming:{keywords:["woman","female","girl","disbelief"],char:"🤦‍♀️",fitzpatrick_scale:true,category:"people"},woman_shrugging:{keywords:["woman","female","girl","confused","indifferent","doubt"],char:"🤷",fitzpatrick_scale:true,category:"people"},man_shrugging:{keywords:["man","male","boy","confused","indifferent","doubt"],char:"🤷‍♂️",fitzpatrick_scale:true,category:"people"},tipping_hand_woman:{keywords:["female","girl","woman","human","information"],char:"💁",fitzpatrick_scale:true,category:"people"},tipping_hand_man:{keywords:["male","boy","man","human","information"],char:"💁‍♂️",fitzpatrick_scale:true,category:"people"},no_good_woman:{keywords:["female","girl","woman","nope"],char:"🙅",fitzpatrick_scale:true,category:"people"},no_good_man:{keywords:["male","boy","man","nope"],char:"🙅‍♂️",fitzpatrick_scale:true,category:"people"},ok_woman:{keywords:["women","girl","female","pink","human","woman"],char:"🙆",fitzpatrick_scale:true,category:"people"},ok_man:{keywords:["men","boy","male","blue","human","man"],char:"🙆‍♂️",fitzpatrick_scale:true,category:"people"},raising_hand_woman:{keywords:["female","girl","woman"],char:"🙋",fitzpatrick_scale:true,category:"people"},raising_hand_man:{keywords:["male","boy","man"],char:"🙋‍♂️",fitzpatrick_scale:true,category:"people"},pouting_woman:{keywords:["female","girl","woman"],char:"🙎",fitzpatrick_scale:true,category:"people"},pouting_man:{keywords:["male","boy","man"],char:"🙎‍♂️",fitzpatrick_scale:true,category:"people"},frowning_woman:{keywords:["female","girl","woman","sad","depressed","discouraged","unhappy"],char:"🙍",fitzpatrick_scale:true,category:"people"},frowning_man:{keywords:["male","boy","man","sad","depressed","discouraged","unhappy"],char:"🙍‍♂️",fitzpatrick_scale:true,category:"people"},haircut_woman:{keywords:["female","girl","woman"],char:"💇",fitzpatrick_scale:true,category:"people"},haircut_man:{keywords:["male","boy","man"],char:"💇‍♂️",fitzpatrick_scale:true,category:"people"},massage_woman:{keywords:["female","girl","woman","head"],char:"💆",fitzpatrick_scale:true,category:"people"},massage_man:{keywords:["male","boy","man","head"],char:"💆‍♂️",fitzpatrick_scale:true,category:"people"},woman_in_steamy_room:{keywords:["female","woman","spa","steamroom","sauna"],char:"🧖‍♀️",fitzpatrick_scale:true,category:"people"},man_in_steamy_room:{keywords:["male","man","spa","steamroom","sauna"],char:"🧖‍♂️",fitzpatrick_scale:true,category:"people"},couple_with_heart_woman_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:"💑",fitzpatrick_scale:false,category:"people"},couple_with_heart_woman_woman:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:"👩‍❤️‍👩",fitzpatrick_scale:false,category:"people"},couple_with_heart_man_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:"👨‍❤️‍👨",fitzpatrick_scale:false,category:"people"},couplekiss_man_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:"💏",fitzpatrick_scale:false,category:"people"},couplekiss_woman_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:"👩‍❤️‍💋‍👩",fitzpatrick_scale:false,category:"people"},couplekiss_man_man:{keywords:["pair","valentines","love","like","dating","marriage"],char:"👨‍❤️‍💋‍👨",fitzpatrick_scale:false,category:"people"},family_man_woman_boy:{keywords:["home","parents","child","mom","dad","father","mother","people","human"],char:"👪",fitzpatrick_scale:false,category:"people"},family_man_woman_girl:{keywords:["home","parents","people","human","child"],char:"👨‍👩‍👧",fitzpatrick_scale:false,category:"people"},family_man_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:"👨‍👩‍👧‍👦",fitzpatrick_scale:false,category:"people"},family_man_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:"👨‍👩‍👦‍👦",fitzpatrick_scale:false,category:"people"},family_man_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:"👨‍👩‍👧‍👧",fitzpatrick_scale:false,category:"people"},family_woman_woman_boy:{keywords:["home","parents","people","human","children"],char:"👩‍👩‍👦",fitzpatrick_scale:false,category:"people"},family_woman_woman_girl:{keywords:["home","parents","people","human","children"],char:"👩‍👩‍👧",fitzpatrick_scale:false,category:"people"},family_woman_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:"👩‍👩‍👧‍👦",fitzpatrick_scale:false,category:"people"},family_woman_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:"👩‍👩‍👦‍👦",fitzpatrick_scale:false,category:"people"},family_woman_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:"👩‍👩‍👧‍👧",fitzpatrick_scale:false,category:"people"},family_man_man_boy:{keywords:["home","parents","people","human","children"],char:"👨‍👨‍👦",fitzpatrick_scale:false,category:"people"},family_man_man_girl:{keywords:["home","parents","people","human","children"],char:"👨‍👨‍👧",fitzpatrick_scale:false,category:"people"},family_man_man_girl_boy:{keywords:["home","parents","people","human","children"],char:"👨‍👨‍👧‍👦",fitzpatrick_scale:false,category:"people"},family_man_man_boy_boy:{keywords:["home","parents","people","human","children"],char:"👨‍👨‍👦‍👦",fitzpatrick_scale:false,category:"people"},family_man_man_girl_girl:{keywords:["home","parents","people","human","children"],char:"👨‍👨‍👧‍👧",fitzpatrick_scale:false,category:"people"},family_woman_boy:{keywords:["home","parent","people","human","child"],char:"👩‍👦",fitzpatrick_scale:false,category:"people"},family_woman_girl:{keywords:["home","parent","people","human","child"],char:"👩‍👧",fitzpatrick_scale:false,category:"people"},family_woman_girl_boy:{keywords:["home","parent","people","human","children"],char:"👩‍👧‍👦",fitzpatrick_scale:false,category:"people"},family_woman_boy_boy:{keywords:["home","parent","people","human","children"],char:"👩‍👦‍👦",fitzpatrick_scale:false,category:"people"},family_woman_girl_girl:{keywords:["home","parent","people","human","children"],char:"👩‍👧‍👧",fitzpatrick_scale:false,category:"people"},family_man_boy:{keywords:["home","parent","people","human","child"],char:"👨‍👦",fitzpatrick_scale:false,category:"people"},family_man_girl:{keywords:["home","parent","people","human","child"],char:"👨‍👧",fitzpatrick_scale:false,category:"people"},family_man_girl_boy:{keywords:["home","parent","people","human","children"],char:"👨‍👧‍👦",fitzpatrick_scale:false,category:"people"},family_man_boy_boy:{keywords:["home","parent","people","human","children"],char:"👨‍👦‍👦",fitzpatrick_scale:false,category:"people"},family_man_girl_girl:{keywords:["home","parent","people","human","children"],char:"👨‍👧‍👧",fitzpatrick_scale:false,category:"people"},yarn:{keywords:["ball","crochet","knit"],char:"🧶",fitzpatrick_scale:false,category:"people"},thread:{keywords:["needle","sewing","spool","string"],char:"🧵",fitzpatrick_scale:false,category:"people"},coat:{keywords:["jacket"],char:"🧥",fitzpatrick_scale:false,category:"people"},labcoat:{keywords:["doctor","experiment","scientist","chemist"],char:"🥼",fitzpatrick_scale:false,category:"people"},womans_clothes:{keywords:["fashion","shopping_bags","female"],char:"👚",fitzpatrick_scale:false,category:"people"},tshirt:{keywords:["fashion","cloth","casual","shirt","tee"],char:"👕",fitzpatrick_scale:false,category:"people"},jeans:{keywords:["fashion","shopping"],char:"👖",fitzpatrick_scale:false,category:"people"},necktie:{keywords:["shirt","suitup","formal","fashion","cloth","business"],char:"👔",fitzpatrick_scale:false,category:"people"},dress:{keywords:["clothes","fashion","shopping"],char:"👗",fitzpatrick_scale:false,category:"people"},bikini:{keywords:["swimming","female","woman","girl","fashion","beach","summer"],char:"👙",fitzpatrick_scale:false,category:"people"},kimono:{keywords:["dress","fashion","women","female","japanese"],char:"👘",fitzpatrick_scale:false,category:"people"},lipstick:{keywords:["female","girl","fashion","woman"],char:"💄",fitzpatrick_scale:false,category:"people"},kiss:{keywords:["face","lips","love","like","affection","valentines"],char:"💋",fitzpatrick_scale:false,category:"people"},footprints:{keywords:["feet","tracking","walking","beach"],char:"👣",fitzpatrick_scale:false,category:"people"},flat_shoe:{keywords:["ballet","slip-on","slipper"],char:"🥿",fitzpatrick_scale:false,category:"people"},high_heel:{keywords:["fashion","shoes","female","pumps","stiletto"],char:"👠",fitzpatrick_scale:false,category:"people"},sandal:{keywords:["shoes","fashion","flip flops"],char:"👡",fitzpatrick_scale:false,category:"people"},boot:{keywords:["shoes","fashion"],char:"👢",fitzpatrick_scale:false,category:"people"},mans_shoe:{keywords:["fashion","male"],char:"👞",fitzpatrick_scale:false,category:"people"},athletic_shoe:{keywords:["shoes","sports","sneakers"],char:"👟",fitzpatrick_scale:false,category:"people"},hiking_boot:{keywords:["backpacking","camping","hiking"],char:"🥾",fitzpatrick_scale:false,category:"people"},socks:{keywords:["stockings","clothes"],char:"🧦",fitzpatrick_scale:false,category:"people"},gloves:{keywords:["hands","winter","clothes"],char:"🧤",fitzpatrick_scale:false,category:"people"},scarf:{keywords:["neck","winter","clothes"],char:"🧣",fitzpatrick_scale:false,category:"people"},womans_hat:{keywords:["fashion","accessories","female","lady","spring"],char:"👒",fitzpatrick_scale:false,category:"people"},tophat:{keywords:["magic","gentleman","classy","circus"],char:"🎩",fitzpatrick_scale:false,category:"people"},billed_hat:{keywords:["cap","baseball"],char:"🧢",fitzpatrick_scale:false,category:"people"},rescue_worker_helmet:{keywords:["construction","build"],char:"⛑",fitzpatrick_scale:false,category:"people"},mortar_board:{keywords:["school","college","degree","university","graduation","cap","hat","legal","learn","education"],char:"🎓",fitzpatrick_scale:false,category:"people"},crown:{keywords:["king","kod","leader","royalty","lord"],char:"👑",fitzpatrick_scale:false,category:"people"},school_satchel:{keywords:["student","education","bag","backpack"],char:"🎒",fitzpatrick_scale:false,category:"people"},luggage:{keywords:["packing","travel"],char:"🧳",fitzpatrick_scale:false,category:"people"},pouch:{keywords:["bag","accessories","shopping"],char:"👝",fitzpatrick_scale:false,category:"people"},purse:{keywords:["fashion","accessories","money","sales","shopping"],char:"👛",fitzpatrick_scale:false,category:"people"},handbag:{keywords:["fashion","accessory","accessories","shopping"],char:"👜",fitzpatrick_scale:false,category:"people"},briefcase:{keywords:["business","documents","work","law","legal","job","career"],char:"💼",fitzpatrick_scale:false,category:"people"},eyeglasses:{keywords:["fashion","accessories","eyesight","nerdy","dork","geek"],char:"👓",fitzpatrick_scale:false,category:"people"},dark_sunglasses:{keywords:["face","cool","accessories"],char:"🕶",fitzpatrick_scale:false,category:"people"},goggles:{keywords:["eyes","protection","safety"],char:"🥽",fitzpatrick_scale:false,category:"people"},ring:{keywords:["wedding","propose","marriage","valentines","diamond","fashion","jewelry","gem","engagement"],char:"💍",fitzpatrick_scale:false,category:"people"},closed_umbrella:{keywords:["weather","rain","drizzle"],char:"🌂",fitzpatrick_scale:false,category:"people"},dog:{keywords:["animal","friend","nature","woof","puppy","pet","faithful"],char:"🐶",fitzpatrick_scale:false,category:"animals_and_nature"},cat:{keywords:["animal","meow","nature","pet","kitten"],char:"🐱",fitzpatrick_scale:false,category:"animals_and_nature"},mouse:{keywords:["animal","nature","cheese_wedge","rodent"],char:"🐭",fitzpatrick_scale:false,category:"animals_and_nature"},hamster:{keywords:["animal","nature"],char:"🐹",fitzpatrick_scale:false,category:"animals_and_nature"},rabbit:{keywords:["animal","nature","pet","spring","magic","bunny"],char:"🐰",fitzpatrick_scale:false,category:"animals_and_nature"},fox_face:{keywords:["animal","nature","face"],char:"🦊",fitzpatrick_scale:false,category:"animals_and_nature"},bear:{keywords:["animal","nature","wild"],char:"🐻",fitzpatrick_scale:false,category:"animals_and_nature"},panda_face:{keywords:["animal","nature","panda"],char:"🐼",fitzpatrick_scale:false,category:"animals_and_nature"},koala:{keywords:["animal","nature"],char:"🐨",fitzpatrick_scale:false,category:"animals_and_nature"},tiger:{keywords:["animal","cat","danger","wild","nature","roar"],char:"🐯",fitzpatrick_scale:false,category:"animals_and_nature"},lion:{keywords:["animal","nature"],char:"🦁",fitzpatrick_scale:false,category:"animals_and_nature"},cow:{keywords:["beef","ox","animal","nature","moo","milk"],char:"🐮",fitzpatrick_scale:false,category:"animals_and_nature"},pig:{keywords:["animal","oink","nature"],char:"🐷",fitzpatrick_scale:false,category:"animals_and_nature"},pig_nose:{keywords:["animal","oink"],char:"🐽",fitzpatrick_scale:false,category:"animals_and_nature"},frog:{keywords:["animal","nature","croak","toad"],char:"🐸",fitzpatrick_scale:false,category:"animals_and_nature"},squid:{keywords:["animal","nature","ocean","sea"],char:"🦑",fitzpatrick_scale:false,category:"animals_and_nature"},octopus:{keywords:["animal","creature","ocean","sea","nature","beach"],char:"🐙",fitzpatrick_scale:false,category:"animals_and_nature"},shrimp:{keywords:["animal","ocean","nature","seafood"],char:"🦐",fitzpatrick_scale:false,category:"animals_and_nature"},monkey_face:{keywords:["animal","nature","circus"],char:"🐵",fitzpatrick_scale:false,category:"animals_and_nature"},gorilla:{keywords:["animal","nature","circus"],char:"🦍",fitzpatrick_scale:false,category:"animals_and_nature"},see_no_evil:{keywords:["monkey","animal","nature","haha"],char:"🙈",fitzpatrick_scale:false,category:"animals_and_nature"},hear_no_evil:{keywords:["animal","monkey","nature"],char:"🙉",fitzpatrick_scale:false,category:"animals_and_nature"},speak_no_evil:{keywords:["monkey","animal","nature","omg"],char:"🙊",fitzpatrick_scale:false,category:"animals_and_nature"},monkey:{keywords:["animal","nature","banana","circus"],char:"🐒",fitzpatrick_scale:false,category:"animals_and_nature"},chicken:{keywords:["animal","cluck","nature","bird"],char:"🐔",fitzpatrick_scale:false,category:"animals_and_nature"},penguin:{keywords:["animal","nature"],char:"🐧",fitzpatrick_scale:false,category:"animals_and_nature"},bird:{keywords:["animal","nature","fly","tweet","spring"],char:"🐦",fitzpatrick_scale:false,category:"animals_and_nature"},baby_chick:{keywords:["animal","chicken","bird"],char:"🐤",fitzpatrick_scale:false,category:"animals_and_nature"},hatching_chick:{keywords:["animal","chicken","egg","born","baby","bird"],char:"🐣",fitzpatrick_scale:false,category:"animals_and_nature"},hatched_chick:{keywords:["animal","chicken","baby","bird"],char:"🐥",fitzpatrick_scale:false,category:"animals_and_nature"},duck:{keywords:["animal","nature","bird","mallard"],char:"🦆",fitzpatrick_scale:false,category:"animals_and_nature"},eagle:{keywords:["animal","nature","bird"],char:"🦅",fitzpatrick_scale:false,category:"animals_and_nature"},owl:{keywords:["animal","nature","bird","hoot"],char:"🦉",fitzpatrick_scale:false,category:"animals_and_nature"},bat:{keywords:["animal","nature","blind","vampire"],char:"🦇",fitzpatrick_scale:false,category:"animals_and_nature"},wolf:{keywords:["animal","nature","wild"],char:"🐺",fitzpatrick_scale:false,category:"animals_and_nature"},boar:{keywords:["animal","nature"],char:"🐗",fitzpatrick_scale:false,category:"animals_and_nature"},horse:{keywords:["animal","brown","nature"],char:"🐴",fitzpatrick_scale:false,category:"animals_and_nature"},unicorn:{keywords:["animal","nature","mystical"],char:"🦄",fitzpatrick_scale:false,category:"animals_and_nature"},honeybee:{keywords:["animal","insect","nature","bug","spring","honey"],char:"🐝",fitzpatrick_scale:false,category:"animals_and_nature"},bug:{keywords:["animal","insect","nature","worm"],char:"🐛",fitzpatrick_scale:false,category:"animals_and_nature"},butterfly:{keywords:["animal","insect","nature","caterpillar"],char:"🦋",fitzpatrick_scale:false,category:"animals_and_nature"},snail:{keywords:["slow","animal","shell"],char:"🐌",fitzpatrick_scale:false,category:"animals_and_nature"},beetle:{keywords:["animal","insect","nature","ladybug"],char:"🐞",fitzpatrick_scale:false,category:"animals_and_nature"},ant:{keywords:["animal","insect","nature","bug"],char:"🐜",fitzpatrick_scale:false,category:"animals_and_nature"},grasshopper:{keywords:["animal","cricket","chirp"],char:"🦗",fitzpatrick_scale:false,category:"animals_and_nature"},spider:{keywords:["animal","arachnid"],char:"🕷",fitzpatrick_scale:false,category:"animals_and_nature"},scorpion:{keywords:["animal","arachnid"],char:"🦂",fitzpatrick_scale:false,category:"animals_and_nature"},crab:{keywords:["animal","crustacean"],char:"🦀",fitzpatrick_scale:false,category:"animals_and_nature"},snake:{keywords:["animal","evil","nature","hiss","python"],char:"🐍",fitzpatrick_scale:false,category:"animals_and_nature"},lizard:{keywords:["animal","nature","reptile"],char:"🦎",fitzpatrick_scale:false,category:"animals_and_nature"},"t-rex":{keywords:["animal","nature","dinosaur","tyrannosaurus","extinct"],char:"🦖",fitzpatrick_scale:false,category:"animals_and_nature"},sauropod:{keywords:["animal","nature","dinosaur","brachiosaurus","brontosaurus","diplodocus","extinct"],char:"🦕",fitzpatrick_scale:false,category:"animals_and_nature"},turtle:{keywords:["animal","slow","nature","tortoise"],char:"🐢",fitzpatrick_scale:false,category:"animals_and_nature"},tropical_fish:{keywords:["animal","swim","ocean","beach","nemo"],char:"🐠",fitzpatrick_scale:false,category:"animals_and_nature"},fish:{keywords:["animal","food","nature"],char:"🐟",fitzpatrick_scale:false,category:"animals_and_nature"},blowfish:{keywords:["animal","nature","food","sea","ocean"],char:"🐡",fitzpatrick_scale:false,category:"animals_and_nature"},dolphin:{keywords:["animal","nature","fish","sea","ocean","flipper","fins","beach"],char:"🐬",fitzpatrick_scale:false,category:"animals_and_nature"},shark:{keywords:["animal","nature","fish","sea","ocean","jaws","fins","beach"],char:"🦈",fitzpatrick_scale:false,category:"animals_and_nature"},whale:{keywords:["animal","nature","sea","ocean"],char:"🐳",fitzpatrick_scale:false,category:"animals_and_nature"},whale2:{keywords:["animal","nature","sea","ocean"],char:"🐋",fitzpatrick_scale:false,category:"animals_and_nature"},crocodile:{keywords:["animal","nature","reptile","lizard","alligator"],char:"🐊",fitzpatrick_scale:false,category:"animals_and_nature"},leopard:{keywords:["animal","nature"],char:"🐆",fitzpatrick_scale:false,category:"animals_and_nature"},zebra:{keywords:["animal","nature","stripes","safari"],char:"🦓",fitzpatrick_scale:false,category:"animals_and_nature"},tiger2:{keywords:["animal","nature","roar"],char:"🐅",fitzpatrick_scale:false,category:"animals_and_nature"},water_buffalo:{keywords:["animal","nature","ox","cow"],char:"🐃",fitzpatrick_scale:false,category:"animals_and_nature"},ox:{keywords:["animal","cow","beef"],char:"🐂",fitzpatrick_scale:false,category:"animals_and_nature"},cow2:{keywords:["beef","ox","animal","nature","moo","milk"],char:"🐄",fitzpatrick_scale:false,category:"animals_and_nature"},deer:{keywords:["animal","nature","horns","venison"],char:"🦌",fitzpatrick_scale:false,category:"animals_and_nature"},dromedary_camel:{keywords:["animal","hot","desert","hump"],char:"🐪",fitzpatrick_scale:false,category:"animals_and_nature"},camel:{keywords:["animal","nature","hot","desert","hump"],char:"🐫",fitzpatrick_scale:false,category:"animals_and_nature"},giraffe:{keywords:["animal","nature","spots","safari"],char:"🦒",fitzpatrick_scale:false,category:"animals_and_nature"},elephant:{keywords:["animal","nature","nose","th","circus"],char:"🐘",fitzpatrick_scale:false,category:"animals_and_nature"},rhinoceros:{keywords:["animal","nature","horn"],char:"🦏",fitzpatrick_scale:false,category:"animals_and_nature"},goat:{keywords:["animal","nature"],char:"🐐",fitzpatrick_scale:false,category:"animals_and_nature"},ram:{keywords:["animal","sheep","nature"],char:"🐏",fitzpatrick_scale:false,category:"animals_and_nature"},sheep:{keywords:["animal","nature","wool","shipit"],char:"🐑",fitzpatrick_scale:false,category:"animals_and_nature"},racehorse:{keywords:["animal","gamble","luck"],char:"🐎",fitzpatrick_scale:false,category:"animals_and_nature"},pig2:{keywords:["animal","nature"],char:"🐖",fitzpatrick_scale:false,category:"animals_and_nature"},rat:{keywords:["animal","mouse","rodent"],char:"🐀",fitzpatrick_scale:false,category:"animals_and_nature"},mouse2:{keywords:["animal","nature","rodent"],char:"🐁",fitzpatrick_scale:false,category:"animals_and_nature"},rooster:{keywords:["animal","nature","chicken"],char:"🐓",fitzpatrick_scale:false,category:"animals_and_nature"},turkey:{keywords:["animal","bird"],char:"🦃",fitzpatrick_scale:false,category:"animals_and_nature"},dove:{keywords:["animal","bird"],char:"🕊",fitzpatrick_scale:false,category:"animals_and_nature"},dog2:{keywords:["animal","nature","friend","doge","pet","faithful"],char:"🐕",fitzpatrick_scale:false,category:"animals_and_nature"},poodle:{keywords:["dog","animal","101","nature","pet"],char:"🐩",fitzpatrick_scale:false,category:"animals_and_nature"},cat2:{keywords:["animal","meow","pet","cats"],char:"🐈",fitzpatrick_scale:false,category:"animals_and_nature"},rabbit2:{keywords:["animal","nature","pet","magic","spring"],char:"🐇",fitzpatrick_scale:false,category:"animals_and_nature"},chipmunk:{keywords:["animal","nature","rodent","squirrel"],char:"🐿",fitzpatrick_scale:false,category:"animals_and_nature"},hedgehog:{keywords:["animal","nature","spiny"],char:"🦔",fitzpatrick_scale:false,category:"animals_and_nature"},raccoon:{keywords:["animal","nature"],char:"🦝",fitzpatrick_scale:false,category:"animals_and_nature"},llama:{keywords:["animal","nature","alpaca"],char:"🦙",fitzpatrick_scale:false,category:"animals_and_nature"},hippopotamus:{keywords:["animal","nature"],char:"🦛",fitzpatrick_scale:false,category:"animals_and_nature"},kangaroo:{keywords:["animal","nature","australia","joey","hop","marsupial"],char:"🦘",fitzpatrick_scale:false,category:"animals_and_nature"},badger:{keywords:["animal","nature","honey"],char:"🦡",fitzpatrick_scale:false,category:"animals_and_nature"},swan:{keywords:["animal","nature","bird"],char:"🦢",fitzpatrick_scale:false,category:"animals_and_nature"},peacock:{keywords:["animal","nature","peahen","bird"],char:"🦚",fitzpatrick_scale:false,category:"animals_and_nature"},parrot:{keywords:["animal","nature","bird","pirate","talk"],char:"🦜",fitzpatrick_scale:false,category:"animals_and_nature"},lobster:{keywords:["animal","nature","bisque","claws","seafood"],char:"🦞",fitzpatrick_scale:false,category:"animals_and_nature"},mosquito:{keywords:["animal","nature","insect","malaria"],char:"🦟",fitzpatrick_scale:false,category:"animals_and_nature"},paw_prints:{keywords:["animal","tracking","footprints","dog","cat","pet","feet"],char:"🐾",fitzpatrick_scale:false,category:"animals_and_nature"},dragon:{keywords:["animal","myth","nature","chinese","green"],char:"🐉",fitzpatrick_scale:false,category:"animals_and_nature"},dragon_face:{keywords:["animal","myth","nature","chinese","green"],char:"🐲",fitzpatrick_scale:false,category:"animals_and_nature"},cactus:{keywords:["vegetable","plant","nature"],char:"🌵",fitzpatrick_scale:false,category:"animals_and_nature"},christmas_tree:{keywords:["festival","vacation","december","xmas","celebration"],char:"🎄",fitzpatrick_scale:false,category:"animals_and_nature"},evergreen_tree:{keywords:["plant","nature"],char:"🌲",fitzpatrick_scale:false,category:"animals_and_nature"},deciduous_tree:{keywords:["plant","nature"],char:"🌳",fitzpatrick_scale:false,category:"animals_and_nature"},palm_tree:{keywords:["plant","vegetable","nature","summer","beach","mojito","tropical"],char:"🌴",fitzpatrick_scale:false,category:"animals_and_nature"},seedling:{keywords:["plant","nature","grass","lawn","spring"],char:"🌱",fitzpatrick_scale:false,category:"animals_and_nature"},herb:{keywords:["vegetable","plant","medicine","weed","grass","lawn"],char:"🌿",fitzpatrick_scale:false,category:"animals_and_nature"},shamrock:{keywords:["vegetable","plant","nature","irish","clover"],char:"☘",fitzpatrick_scale:false,category:"animals_and_nature"},four_leaf_clover:{keywords:["vegetable","plant","nature","lucky","irish"],char:"🍀",fitzpatrick_scale:false,category:"animals_and_nature"},bamboo:{keywords:["plant","nature","vegetable","panda","pine_decoration"],char:"🎍",fitzpatrick_scale:false,category:"animals_and_nature"},tanabata_tree:{keywords:["plant","nature","branch","summer"],char:"🎋",fitzpatrick_scale:false,category:"animals_and_nature"},leaves:{keywords:["nature","plant","tree","vegetable","grass","lawn","spring"],char:"🍃",fitzpatrick_scale:false,category:"animals_and_nature"},fallen_leaf:{keywords:["nature","plant","vegetable","leaves"],char:"🍂",fitzpatrick_scale:false,category:"animals_and_nature"},maple_leaf:{keywords:["nature","plant","vegetable","ca","fall"],char:"🍁",fitzpatrick_scale:false,category:"animals_and_nature"},ear_of_rice:{keywords:["nature","plant"],char:"🌾",fitzpatrick_scale:false,category:"animals_and_nature"},hibiscus:{keywords:["plant","vegetable","flowers","beach"],char:"🌺",fitzpatrick_scale:false,category:"animals_and_nature"},sunflower:{keywords:["nature","plant","fall"],char:"🌻",fitzpatrick_scale:false,category:"animals_and_nature"},rose:{keywords:["flowers","valentines","love","spring"],char:"🌹",fitzpatrick_scale:false,category:"animals_and_nature"},wilted_flower:{keywords:["plant","nature","flower"],char:"🥀",fitzpatrick_scale:false,category:"animals_and_nature"},tulip:{keywords:["flowers","plant","nature","summer","spring"],char:"🌷",fitzpatrick_scale:false,category:"animals_and_nature"},blossom:{keywords:["nature","flowers","yellow"],char:"🌼",fitzpatrick_scale:false,category:"animals_and_nature"},cherry_blossom:{keywords:["nature","plant","spring","flower"],char:"🌸",fitzpatrick_scale:false,category:"animals_and_nature"},bouquet:{keywords:["flowers","nature","spring"],char:"💐",fitzpatrick_scale:false,category:"animals_and_nature"},mushroom:{keywords:["plant","vegetable"],char:"🍄",fitzpatrick_scale:false,category:"animals_and_nature"},chestnut:{keywords:["food","squirrel"],char:"🌰",fitzpatrick_scale:false,category:"animals_and_nature"},jack_o_lantern:{keywords:["halloween","light","pumpkin","creepy","fall"],char:"🎃",fitzpatrick_scale:false,category:"animals_and_nature"},shell:{keywords:["nature","sea","beach"],char:"🐚",fitzpatrick_scale:false,category:"animals_and_nature"},spider_web:{keywords:["animal","insect","arachnid","silk"],char:"🕸",fitzpatrick_scale:false,category:"animals_and_nature"},earth_americas:{keywords:["globe","world","USA","international"],char:"🌎",fitzpatrick_scale:false,category:"animals_and_nature"},earth_africa:{keywords:["globe","world","international"],char:"🌍",fitzpatrick_scale:false,category:"animals_and_nature"},earth_asia:{keywords:["globe","world","east","international"],char:"🌏",fitzpatrick_scale:false,category:"animals_and_nature"},full_moon:{keywords:["nature","yellow","twilight","planet","space","night","evening","sleep"],char:"🌕",fitzpatrick_scale:false,category:"animals_and_nature"},waning_gibbous_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep","waxing_gibbous_moon"],char:"🌖",fitzpatrick_scale:false,category:"animals_and_nature"},last_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌗",fitzpatrick_scale:false,category:"animals_and_nature"},waning_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌘",fitzpatrick_scale:false,category:"animals_and_nature"},new_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌑",fitzpatrick_scale:false,category:"animals_and_nature"},waxing_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌒",fitzpatrick_scale:false,category:"animals_and_nature"},first_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌓",fitzpatrick_scale:false,category:"animals_and_nature"},waxing_gibbous_moon:{keywords:["nature","night","sky","gray","twilight","planet","space","evening","sleep"],char:"🌔",fitzpatrick_scale:false,category:"animals_and_nature"},new_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌚",fitzpatrick_scale:false,category:"animals_and_nature"},full_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌝",fitzpatrick_scale:false,category:"animals_and_nature"},first_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌛",fitzpatrick_scale:false,category:"animals_and_nature"},last_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"🌜",fitzpatrick_scale:false,category:"animals_and_nature"},sun_with_face:{keywords:["nature","morning","sky"],char:"🌞",fitzpatrick_scale:false,category:"animals_and_nature"},crescent_moon:{keywords:["night","sleep","sky","evening","magic"],char:"🌙",fitzpatrick_scale:false,category:"animals_and_nature"},star:{keywords:["night","yellow"],char:"⭐",fitzpatrick_scale:false,category:"animals_and_nature"},star2:{keywords:["night","sparkle","awesome","good","magic"],char:"🌟",fitzpatrick_scale:false,category:"animals_and_nature"},dizzy:{keywords:["star","sparkle","shoot","magic"],char:"💫",fitzpatrick_scale:false,category:"animals_and_nature"},sparkles:{keywords:["stars","shine","shiny","cool","awesome","good","magic"],char:"✨",fitzpatrick_scale:false,category:"animals_and_nature"},comet:{keywords:["space"],char:"☄",fitzpatrick_scale:false,category:"animals_and_nature"},sunny:{keywords:["weather","nature","brightness","summer","beach","spring"],char:"☀️",fitzpatrick_scale:false,category:"animals_and_nature"},sun_behind_small_cloud:{keywords:["weather"],char:"🌤",fitzpatrick_scale:false,category:"animals_and_nature"},partly_sunny:{keywords:["weather","nature","cloudy","morning","fall","spring"],char:"⛅",fitzpatrick_scale:false,category:"animals_and_nature"},sun_behind_large_cloud:{keywords:["weather"],char:"🌥",fitzpatrick_scale:false,category:"animals_and_nature"},sun_behind_rain_cloud:{keywords:["weather"],char:"🌦",fitzpatrick_scale:false,category:"animals_and_nature"},cloud:{keywords:["weather","sky"],char:"☁️",fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_rain:{keywords:["weather"],char:"🌧",fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_lightning_and_rain:{keywords:["weather","lightning"],char:"⛈",fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_lightning:{keywords:["weather","thunder"],char:"🌩",fitzpatrick_scale:false,category:"animals_and_nature"},zap:{keywords:["thunder","weather","lightning bolt","fast"],char:"⚡",fitzpatrick_scale:false,category:"animals_and_nature"},fire:{keywords:["hot","cook","flame"],char:"🔥",fitzpatrick_scale:false,category:"animals_and_nature"},boom:{keywords:["bomb","explode","explosion","collision","blown"],char:"💥",fitzpatrick_scale:false,category:"animals_and_nature"},snowflake:{keywords:["winter","season","cold","weather","christmas","xmas"],char:"❄️",fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_snow:{keywords:["weather"],char:"🌨",fitzpatrick_scale:false,category:"animals_and_nature"},snowman:{keywords:["winter","season","cold","weather","christmas","xmas","frozen","without_snow"],char:"⛄",fitzpatrick_scale:false,category:"animals_and_nature"},snowman_with_snow:{keywords:["winter","season","cold","weather","christmas","xmas","frozen"],char:"☃",fitzpatrick_scale:false,category:"animals_and_nature"},wind_face:{keywords:["gust","air"],char:"🌬",fitzpatrick_scale:false,category:"animals_and_nature"},dash:{keywords:["wind","air","fast","shoo","fart","smoke","puff"],char:"💨",fitzpatrick_scale:false,category:"animals_and_nature"},tornado:{keywords:["weather","cyclone","twister"],char:"🌪",fitzpatrick_scale:false,category:"animals_and_nature"},fog:{keywords:["weather"],char:"🌫",fitzpatrick_scale:false,category:"animals_and_nature"},open_umbrella:{keywords:["weather","spring"],char:"☂",fitzpatrick_scale:false,category:"animals_and_nature"},umbrella:{keywords:["rainy","weather","spring"],char:"☔",fitzpatrick_scale:false,category:"animals_and_nature"},droplet:{keywords:["water","drip","faucet","spring"],char:"💧",fitzpatrick_scale:false,category:"animals_and_nature"},sweat_drops:{keywords:["water","drip","oops"],char:"💦",fitzpatrick_scale:false,category:"animals_and_nature"},ocean:{keywords:["sea","water","wave","nature","tsunami","disaster"],char:"🌊",fitzpatrick_scale:false,category:"animals_and_nature"},green_apple:{keywords:["fruit","nature"],char:"🍏",fitzpatrick_scale:false,category:"food_and_drink"},apple:{keywords:["fruit","mac","school"],char:"🍎",fitzpatrick_scale:false,category:"food_and_drink"},pear:{keywords:["fruit","nature","food"],char:"🍐",fitzpatrick_scale:false,category:"food_and_drink"},tangerine:{keywords:["food","fruit","nature","orange"],char:"🍊",fitzpatrick_scale:false,category:"food_and_drink"},lemon:{keywords:["fruit","nature"],char:"🍋",fitzpatrick_scale:false,category:"food_and_drink"},banana:{keywords:["fruit","food","monkey"],char:"🍌",fitzpatrick_scale:false,category:"food_and_drink"},watermelon:{keywords:["fruit","food","picnic","summer"],char:"🍉",fitzpatrick_scale:false,category:"food_and_drink"},grapes:{keywords:["fruit","food","wine"],char:"🍇",fitzpatrick_scale:false,category:"food_and_drink"},strawberry:{keywords:["fruit","food","nature"],char:"🍓",fitzpatrick_scale:false,category:"food_and_drink"},melon:{keywords:["fruit","nature","food"],char:"🍈",fitzpatrick_scale:false,category:"food_and_drink"},cherries:{keywords:["food","fruit"],char:"🍒",fitzpatrick_scale:false,category:"food_and_drink"},peach:{keywords:["fruit","nature","food"],char:"🍑",fitzpatrick_scale:false,category:"food_and_drink"},pineapple:{keywords:["fruit","nature","food"],char:"🍍",fitzpatrick_scale:false,category:"food_and_drink"},coconut:{keywords:["fruit","nature","food","palm"],char:"🥥",fitzpatrick_scale:false,category:"food_and_drink"},kiwi_fruit:{keywords:["fruit","food"],char:"🥝",fitzpatrick_scale:false,category:"food_and_drink"},mango:{keywords:["fruit","food","tropical"],char:"🥭",fitzpatrick_scale:false,category:"food_and_drink"},avocado:{keywords:["fruit","food"],char:"🥑",fitzpatrick_scale:false,category:"food_and_drink"},broccoli:{keywords:["fruit","food","vegetable"],char:"🥦",fitzpatrick_scale:false,category:"food_and_drink"},tomato:{keywords:["fruit","vegetable","nature","food"],char:"🍅",fitzpatrick_scale:false,category:"food_and_drink"},eggplant:{keywords:["vegetable","nature","food","aubergine"],char:"🍆",fitzpatrick_scale:false,category:"food_and_drink"},cucumber:{keywords:["fruit","food","pickle"],char:"🥒",fitzpatrick_scale:false,category:"food_and_drink"},carrot:{keywords:["vegetable","food","orange"],char:"🥕",fitzpatrick_scale:false,category:"food_and_drink"},hot_pepper:{keywords:["food","spicy","chilli","chili"],char:"🌶",fitzpatrick_scale:false,category:"food_and_drink"},potato:{keywords:["food","tuber","vegatable","starch"],char:"🥔",fitzpatrick_scale:false,category:"food_and_drink"},corn:{keywords:["food","vegetable","plant"],char:"🌽",fitzpatrick_scale:false,category:"food_and_drink"},leafy_greens:{keywords:["food","vegetable","plant","bok choy","cabbage","kale","lettuce"],char:"🥬",fitzpatrick_scale:false,category:"food_and_drink"},sweet_potato:{keywords:["food","nature"],char:"🍠",fitzpatrick_scale:false,category:"food_and_drink"},peanuts:{keywords:["food","nut"],char:"🥜",fitzpatrick_scale:false,category:"food_and_drink"},honey_pot:{keywords:["bees","sweet","kitchen"],char:"🍯",fitzpatrick_scale:false,category:"food_and_drink"},croissant:{keywords:["food","bread","french"],char:"🥐",fitzpatrick_scale:false,category:"food_and_drink"},bread:{keywords:["food","wheat","breakfast","toast"],char:"🍞",fitzpatrick_scale:false,category:"food_and_drink"},baguette_bread:{keywords:["food","bread","french"],char:"🥖",fitzpatrick_scale:false,category:"food_and_drink"},bagel:{keywords:["food","bread","bakery","schmear"],char:"🥯",fitzpatrick_scale:false,category:"food_and_drink"},pretzel:{keywords:["food","bread","twisted"],char:"🥨",fitzpatrick_scale:false,category:"food_and_drink"},cheese:{keywords:["food","chadder"],char:"🧀",fitzpatrick_scale:false,category:"food_and_drink"},egg:{keywords:["food","chicken","breakfast"],char:"🥚",fitzpatrick_scale:false,category:"food_and_drink"},bacon:{keywords:["food","breakfast","pork","pig","meat"],char:"🥓",fitzpatrick_scale:false,category:"food_and_drink"},steak:{keywords:["food","cow","meat","cut","chop","lambchop","porkchop"],char:"🥩",fitzpatrick_scale:false,category:"food_and_drink"},pancakes:{keywords:["food","breakfast","flapjacks","hotcakes"],char:"🥞",fitzpatrick_scale:false,category:"food_and_drink"},poultry_leg:{keywords:["food","meat","drumstick","bird","chicken","turkey"],char:"🍗",fitzpatrick_scale:false,category:"food_and_drink"},meat_on_bone:{keywords:["good","food","drumstick"],char:"🍖",fitzpatrick_scale:false,category:"food_and_drink"},bone:{keywords:["skeleton"],char:"🦴",fitzpatrick_scale:false,category:"food_and_drink"},fried_shrimp:{keywords:["food","animal","appetizer","summer"],char:"🍤",fitzpatrick_scale:false,category:"food_and_drink"},fried_egg:{keywords:["food","breakfast","kitchen","egg"],char:"🍳",fitzpatrick_scale:false,category:"food_and_drink"},hamburger:{keywords:["meat","fast food","beef","cheeseburger","mcdonalds","burger king"],char:"🍔",fitzpatrick_scale:false,category:"food_and_drink"},fries:{keywords:["chips","snack","fast food"],char:"🍟",fitzpatrick_scale:false,category:"food_and_drink"},stuffed_flatbread:{keywords:["food","flatbread","stuffed","gyro"],char:"🥙",fitzpatrick_scale:false,category:"food_and_drink"},hotdog:{keywords:["food","frankfurter"],char:"🌭",fitzpatrick_scale:false,category:"food_and_drink"},pizza:{keywords:["food","party"],char:"🍕",fitzpatrick_scale:false,category:"food_and_drink"},sandwich:{keywords:["food","lunch","bread"],char:"🥪",fitzpatrick_scale:false,category:"food_and_drink"},canned_food:{keywords:["food","soup"],char:"🥫",fitzpatrick_scale:false,category:"food_and_drink"},spaghetti:{keywords:["food","italian","noodle"],char:"🍝",fitzpatrick_scale:false,category:"food_and_drink"},taco:{keywords:["food","mexican"],char:"🌮",fitzpatrick_scale:false,category:"food_and_drink"},burrito:{keywords:["food","mexican"],char:"🌯",fitzpatrick_scale:false,category:"food_and_drink"},green_salad:{keywords:["food","healthy","lettuce"],char:"🥗",fitzpatrick_scale:false,category:"food_and_drink"},shallow_pan_of_food:{keywords:["food","cooking","casserole","paella"],char:"🥘",fitzpatrick_scale:false,category:"food_and_drink"},ramen:{keywords:["food","japanese","noodle","chopsticks"],char:"🍜",fitzpatrick_scale:false,category:"food_and_drink"},stew:{keywords:["food","meat","soup"],char:"🍲",fitzpatrick_scale:false,category:"food_and_drink"},fish_cake:{keywords:["food","japan","sea","beach","narutomaki","pink","swirl","kamaboko","surimi","ramen"],char:"🍥",fitzpatrick_scale:false,category:"food_and_drink"},fortune_cookie:{keywords:["food","prophecy"],char:"🥠",fitzpatrick_scale:false,category:"food_and_drink"},sushi:{keywords:["food","fish","japanese","rice"],char:"🍣",fitzpatrick_scale:false,category:"food_and_drink"},bento:{keywords:["food","japanese","box"],char:"🍱",fitzpatrick_scale:false,category:"food_and_drink"},curry:{keywords:["food","spicy","hot","indian"],char:"🍛",fitzpatrick_scale:false,category:"food_and_drink"},rice_ball:{keywords:["food","japanese"],char:"🍙",fitzpatrick_scale:false,category:"food_and_drink"},rice:{keywords:["food","china","asian"],char:"🍚",fitzpatrick_scale:false,category:"food_and_drink"},rice_cracker:{keywords:["food","japanese"],char:"🍘",fitzpatrick_scale:false,category:"food_and_drink"},oden:{keywords:["food","japanese"],char:"🍢",fitzpatrick_scale:false,category:"food_and_drink"},dango:{keywords:["food","dessert","sweet","japanese","barbecue","meat"],char:"🍡",fitzpatrick_scale:false,category:"food_and_drink"},shaved_ice:{keywords:["hot","dessert","summer"],char:"🍧",fitzpatrick_scale:false,category:"food_and_drink"},ice_cream:{keywords:["food","hot","dessert"],char:"🍨",fitzpatrick_scale:false,category:"food_and_drink"},icecream:{keywords:["food","hot","dessert","summer"],char:"🍦",fitzpatrick_scale:false,category:"food_and_drink"},pie:{keywords:["food","dessert","pastry"],char:"🥧",fitzpatrick_scale:false,category:"food_and_drink"},cake:{keywords:["food","dessert"],char:"🍰",fitzpatrick_scale:false,category:"food_and_drink"},cupcake:{keywords:["food","dessert","bakery","sweet"],char:"🧁",fitzpatrick_scale:false,category:"food_and_drink"},moon_cake:{keywords:["food","autumn"],char:"🥮",fitzpatrick_scale:false,category:"food_and_drink"},birthday:{keywords:["food","dessert","cake"],char:"🎂",fitzpatrick_scale:false,category:"food_and_drink"},custard:{keywords:["dessert","food"],char:"🍮",fitzpatrick_scale:false,category:"food_and_drink"},candy:{keywords:["snack","dessert","sweet","lolly"],char:"🍬",fitzpatrick_scale:false,category:"food_and_drink"},lollipop:{keywords:["food","snack","candy","sweet"],char:"🍭",fitzpatrick_scale:false,category:"food_and_drink"},chocolate_bar:{keywords:["food","snack","dessert","sweet"],char:"🍫",fitzpatrick_scale:false,category:"food_and_drink"},popcorn:{keywords:["food","movie theater","films","snack"],char:"🍿",fitzpatrick_scale:false,category:"food_and_drink"},dumpling:{keywords:["food","empanada","pierogi","potsticker"],char:"🥟",fitzpatrick_scale:false,category:"food_and_drink"},doughnut:{keywords:["food","dessert","snack","sweet","donut"],char:"🍩",fitzpatrick_scale:false,category:"food_and_drink"},cookie:{keywords:["food","snack","oreo","chocolate","sweet","dessert"],char:"🍪",fitzpatrick_scale:false,category:"food_and_drink"},milk_glass:{keywords:["beverage","drink","cow"],char:"🥛",fitzpatrick_scale:false,category:"food_and_drink"},beer:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:"🍺",fitzpatrick_scale:false,category:"food_and_drink"},beers:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:"🍻",fitzpatrick_scale:false,category:"food_and_drink"},clinking_glasses:{keywords:["beverage","drink","party","alcohol","celebrate","cheers","wine","champagne","toast"],char:"🥂",fitzpatrick_scale:false,category:"food_and_drink"},wine_glass:{keywords:["drink","beverage","drunk","alcohol","booze"],char:"🍷",fitzpatrick_scale:false,category:"food_and_drink"},tumbler_glass:{keywords:["drink","beverage","drunk","alcohol","liquor","booze","bourbon","scotch","whisky","glass","shot"],char:"🥃",fitzpatrick_scale:false,category:"food_and_drink"},cocktail:{keywords:["drink","drunk","alcohol","beverage","booze","mojito"],char:"🍸",fitzpatrick_scale:false,category:"food_and_drink"},tropical_drink:{keywords:["beverage","cocktail","summer","beach","alcohol","booze","mojito"],char:"🍹",fitzpatrick_scale:false,category:"food_and_drink"},champagne:{keywords:["drink","wine","bottle","celebration"],char:"🍾",fitzpatrick_scale:false,category:"food_and_drink"},sake:{keywords:["wine","drink","drunk","beverage","japanese","alcohol","booze"],char:"🍶",fitzpatrick_scale:false,category:"food_and_drink"},tea:{keywords:["drink","bowl","breakfast","green","british"],char:"🍵",fitzpatrick_scale:false,category:"food_and_drink"},cup_with_straw:{keywords:["drink","soda"],char:"🥤",fitzpatrick_scale:false,category:"food_and_drink"},coffee:{keywords:["beverage","caffeine","latte","espresso"],char:"☕",fitzpatrick_scale:false,category:"food_and_drink"},baby_bottle:{keywords:["food","container","milk"],char:"🍼",fitzpatrick_scale:false,category:"food_and_drink"},salt:{keywords:["condiment","shaker"],char:"🧂",fitzpatrick_scale:false,category:"food_and_drink"},spoon:{keywords:["cutlery","kitchen","tableware"],char:"🥄",fitzpatrick_scale:false,category:"food_and_drink"},fork_and_knife:{keywords:["cutlery","kitchen"],char:"🍴",fitzpatrick_scale:false,category:"food_and_drink"},plate_with_cutlery:{keywords:["food","eat","meal","lunch","dinner","restaurant"],char:"🍽",fitzpatrick_scale:false,category:"food_and_drink"},bowl_with_spoon:{keywords:["food","breakfast","cereal","oatmeal","porridge"],char:"🥣",fitzpatrick_scale:false,category:"food_and_drink"},takeout_box:{keywords:["food","leftovers"],char:"🥡",fitzpatrick_scale:false,category:"food_and_drink"},chopsticks:{keywords:["food"],char:"🥢",fitzpatrick_scale:false,category:"food_and_drink"},soccer:{keywords:["sports","football"],char:"⚽",fitzpatrick_scale:false,category:"activity"},basketball:{keywords:["sports","balls","NBA"],char:"🏀",fitzpatrick_scale:false,category:"activity"},football:{keywords:["sports","balls","NFL"],char:"🏈",fitzpatrick_scale:false,category:"activity"},baseball:{keywords:["sports","balls"],char:"⚾",fitzpatrick_scale:false,category:"activity"},softball:{keywords:["sports","balls"],char:"🥎",fitzpatrick_scale:false,category:"activity"},tennis:{keywords:["sports","balls","green"],char:"🎾",fitzpatrick_scale:false,category:"activity"},volleyball:{keywords:["sports","balls"],char:"🏐",fitzpatrick_scale:false,category:"activity"},rugby_football:{keywords:["sports","team"],char:"🏉",fitzpatrick_scale:false,category:"activity"},flying_disc:{keywords:["sports","frisbee","ultimate"],char:"🥏",fitzpatrick_scale:false,category:"activity"},"8ball":{keywords:["pool","hobby","game","luck","magic"],char:"🎱",fitzpatrick_scale:false,category:"activity"},golf:{keywords:["sports","business","flag","hole","summer"],char:"⛳",fitzpatrick_scale:false,category:"activity"},golfing_woman:{keywords:["sports","business","woman","female"],char:"🏌️‍♀️",fitzpatrick_scale:false,category:"activity"},golfing_man:{keywords:["sports","business"],char:"🏌",fitzpatrick_scale:true,category:"activity"},ping_pong:{keywords:["sports","pingpong"],char:"🏓",fitzpatrick_scale:false,category:"activity"},badminton:{keywords:["sports"],char:"🏸",fitzpatrick_scale:false,category:"activity"},goal_net:{keywords:["sports"],char:"🥅",fitzpatrick_scale:false,category:"activity"},ice_hockey:{keywords:["sports"],char:"🏒",fitzpatrick_scale:false,category:"activity"},field_hockey:{keywords:["sports"],char:"🏑",fitzpatrick_scale:false,category:"activity"},lacrosse:{keywords:["sports","ball","stick"],char:"🥍",fitzpatrick_scale:false,category:"activity"},cricket:{keywords:["sports"],char:"🏏",fitzpatrick_scale:false,category:"activity"},ski:{keywords:["sports","winter","cold","snow"],char:"🎿",fitzpatrick_scale:false,category:"activity"},skier:{keywords:["sports","winter","snow"],char:"⛷",fitzpatrick_scale:false,category:"activity"},snowboarder:{keywords:["sports","winter"],char:"🏂",fitzpatrick_scale:true,category:"activity"},person_fencing:{keywords:["sports","fencing","sword"],char:"🤺",fitzpatrick_scale:false,category:"activity"},women_wrestling:{keywords:["sports","wrestlers"],char:"🤼‍♀️",fitzpatrick_scale:false,category:"activity"},men_wrestling:{keywords:["sports","wrestlers"],char:"🤼‍♂️",fitzpatrick_scale:false,category:"activity"},woman_cartwheeling:{keywords:["gymnastics"],char:"🤸‍♀️",fitzpatrick_scale:true,category:"activity"},man_cartwheeling:{keywords:["gymnastics"],char:"🤸‍♂️",fitzpatrick_scale:true,category:"activity"},woman_playing_handball:{keywords:["sports"],char:"🤾‍♀️",fitzpatrick_scale:true,category:"activity"},man_playing_handball:{keywords:["sports"],char:"🤾‍♂️",fitzpatrick_scale:true,category:"activity"},ice_skate:{keywords:["sports"],char:"⛸",fitzpatrick_scale:false,category:"activity"},curling_stone:{keywords:["sports"],char:"🥌",fitzpatrick_scale:false,category:"activity"},skateboard:{keywords:["board"],char:"🛹",fitzpatrick_scale:false,category:"activity"},sled:{keywords:["sleigh","luge","toboggan"],char:"🛷",fitzpatrick_scale:false,category:"activity"},bow_and_arrow:{keywords:["sports"],char:"🏹",fitzpatrick_scale:false,category:"activity"},fishing_pole_and_fish:{keywords:["food","hobby","summer"],char:"🎣",fitzpatrick_scale:false,category:"activity"},boxing_glove:{keywords:["sports","fighting"],char:"🥊",fitzpatrick_scale:false,category:"activity"},martial_arts_uniform:{keywords:["judo","karate","taekwondo"],char:"🥋",fitzpatrick_scale:false,category:"activity"},rowing_woman:{keywords:["sports","hobby","water","ship","woman","female"],char:"🚣‍♀️",fitzpatrick_scale:true,category:"activity"},rowing_man:{keywords:["sports","hobby","water","ship"],char:"🚣",fitzpatrick_scale:true,category:"activity"},climbing_woman:{keywords:["sports","hobby","woman","female","rock"],char:"🧗‍♀️",fitzpatrick_scale:true,category:"activity"},climbing_man:{keywords:["sports","hobby","man","male","rock"],char:"🧗‍♂️",fitzpatrick_scale:true,category:"activity"},swimming_woman:{keywords:["sports","exercise","human","athlete","water","summer","woman","female"],char:"🏊‍♀️",fitzpatrick_scale:true,category:"activity"},swimming_man:{keywords:["sports","exercise","human","athlete","water","summer"],char:"🏊",fitzpatrick_scale:true,category:"activity"},woman_playing_water_polo:{keywords:["sports","pool"],char:"🤽‍♀️",fitzpatrick_scale:true,category:"activity"},man_playing_water_polo:{keywords:["sports","pool"],char:"🤽‍♂️",fitzpatrick_scale:true,category:"activity"},woman_in_lotus_position:{keywords:["woman","female","meditation","yoga","serenity","zen","mindfulness"],char:"🧘‍♀️",fitzpatrick_scale:true,category:"activity"},man_in_lotus_position:{keywords:["man","male","meditation","yoga","serenity","zen","mindfulness"],char:"🧘‍♂️",fitzpatrick_scale:true,category:"activity"},surfing_woman:{keywords:["sports","ocean","sea","summer","beach","woman","female"],char:"🏄‍♀️",fitzpatrick_scale:true,category:"activity"},surfing_man:{keywords:["sports","ocean","sea","summer","beach"],char:"🏄",fitzpatrick_scale:true,category:"activity"},bath:{keywords:["clean","shower","bathroom"],char:"🛀",fitzpatrick_scale:true,category:"activity"},basketball_woman:{keywords:["sports","human","woman","female"],char:"⛹️‍♀️",fitzpatrick_scale:true,category:"activity"},basketball_man:{keywords:["sports","human"],char:"⛹",fitzpatrick_scale:true,category:"activity"},weight_lifting_woman:{keywords:["sports","training","exercise","woman","female"],char:"🏋️‍♀️",fitzpatrick_scale:true,category:"activity"},weight_lifting_man:{keywords:["sports","training","exercise"],char:"🏋",fitzpatrick_scale:true,category:"activity"},biking_woman:{keywords:["sports","bike","exercise","hipster","woman","female"],char:"🚴‍♀️",fitzpatrick_scale:true,category:"activity"},biking_man:{keywords:["sports","bike","exercise","hipster"],char:"🚴",fitzpatrick_scale:true,category:"activity"},mountain_biking_woman:{keywords:["transportation","sports","human","race","bike","woman","female"],char:"🚵‍♀️",fitzpatrick_scale:true,category:"activity"},mountain_biking_man:{keywords:["transportation","sports","human","race","bike"],char:"🚵",fitzpatrick_scale:true,category:"activity"},horse_racing:{keywords:["animal","betting","competition","gambling","luck"],char:"🏇",fitzpatrick_scale:true,category:"activity"},business_suit_levitating:{keywords:["suit","business","levitate","hover","jump"],char:"🕴",fitzpatrick_scale:true,category:"activity"},trophy:{keywords:["win","award","contest","place","ftw","ceremony"],char:"🏆",fitzpatrick_scale:false,category:"activity"},running_shirt_with_sash:{keywords:["play","pageant"],char:"🎽",fitzpatrick_scale:false,category:"activity"},medal_sports:{keywords:["award","winning"],char:"🏅",fitzpatrick_scale:false,category:"activity"},medal_military:{keywords:["award","winning","army"],char:"🎖",fitzpatrick_scale:false,category:"activity"},"1st_place_medal":{keywords:["award","winning","first"],char:"🥇",fitzpatrick_scale:false,category:"activity"},"2nd_place_medal":{keywords:["award","second"],char:"🥈",fitzpatrick_scale:false,category:"activity"},"3rd_place_medal":{keywords:["award","third"],char:"🥉",fitzpatrick_scale:false,category:"activity"},reminder_ribbon:{keywords:["sports","cause","support","awareness"],char:"🎗",fitzpatrick_scale:false,category:"activity"},rosette:{keywords:["flower","decoration","military"],char:"🏵",fitzpatrick_scale:false,category:"activity"},ticket:{keywords:["event","concert","pass"],char:"🎫",fitzpatrick_scale:false,category:"activity"},tickets:{keywords:["sports","concert","entrance"],char:"🎟",fitzpatrick_scale:false,category:"activity"},performing_arts:{keywords:["acting","theater","drama"],char:"🎭",fitzpatrick_scale:false,category:"activity"},art:{keywords:["design","paint","draw","colors"],char:"🎨",fitzpatrick_scale:false,category:"activity"},circus_tent:{keywords:["festival","carnival","party"],char:"🎪",fitzpatrick_scale:false,category:"activity"},woman_juggling:{keywords:["juggle","balance","skill","multitask"],char:"🤹‍♀️",fitzpatrick_scale:true,category:"activity"},man_juggling:{keywords:["juggle","balance","skill","multitask"],char:"🤹‍♂️",fitzpatrick_scale:true,category:"activity"},microphone:{keywords:["sound","music","PA","sing","talkshow"],char:"🎤",fitzpatrick_scale:false,category:"activity"},headphones:{keywords:["music","score","gadgets"],char:"🎧",fitzpatrick_scale:false,category:"activity"},musical_score:{keywords:["treble","clef","compose"],char:"🎼",fitzpatrick_scale:false,category:"activity"},musical_keyboard:{keywords:["piano","instrument","compose"],char:"🎹",fitzpatrick_scale:false,category:"activity"},drum:{keywords:["music","instrument","drumsticks","snare"],char:"🥁",fitzpatrick_scale:false,category:"activity"},saxophone:{keywords:["music","instrument","jazz","blues"],char:"🎷",fitzpatrick_scale:false,category:"activity"},trumpet:{keywords:["music","brass"],char:"🎺",fitzpatrick_scale:false,category:"activity"},guitar:{keywords:["music","instrument"],char:"🎸",fitzpatrick_scale:false,category:"activity"},violin:{keywords:["music","instrument","orchestra","symphony"],char:"🎻",fitzpatrick_scale:false,category:"activity"},clapper:{keywords:["movie","film","record"],char:"🎬",fitzpatrick_scale:false,category:"activity"},video_game:{keywords:["play","console","PS4","controller"],char:"🎮",fitzpatrick_scale:false,category:"activity"},space_invader:{keywords:["game","arcade","play"],char:"👾",fitzpatrick_scale:false,category:"activity"},dart:{keywords:["game","play","bar","target","bullseye"],char:"🎯",fitzpatrick_scale:false,category:"activity"},game_die:{keywords:["dice","random","tabletop","play","luck"],char:"🎲",fitzpatrick_scale:false,category:"activity"},chess_pawn:{keywords:["expendable"],char:"♟",fitzpatrick_scale:false,category:"activity"},slot_machine:{keywords:["bet","gamble","vegas","fruit machine","luck","casino"],char:"🎰",fitzpatrick_scale:false,category:"activity"},jigsaw:{keywords:["interlocking","puzzle","piece"],char:"🧩",fitzpatrick_scale:false,category:"activity"},bowling:{keywords:["sports","fun","play"],char:"🎳",fitzpatrick_scale:false,category:"activity"},red_car:{keywords:["red","transportation","vehicle"],char:"🚗",fitzpatrick_scale:false,category:"travel_and_places"},taxi:{keywords:["uber","vehicle","cars","transportation"],char:"🚕",fitzpatrick_scale:false,category:"travel_and_places"},blue_car:{keywords:["transportation","vehicle"],char:"🚙",fitzpatrick_scale:false,category:"travel_and_places"},bus:{keywords:["car","vehicle","transportation"],char:"🚌",fitzpatrick_scale:false,category:"travel_and_places"},trolleybus:{keywords:["bart","transportation","vehicle"],char:"🚎",fitzpatrick_scale:false,category:"travel_and_places"},racing_car:{keywords:["sports","race","fast","formula","f1"],char:"🏎",fitzpatrick_scale:false,category:"travel_and_places"},police_car:{keywords:["vehicle","cars","transportation","law","legal","enforcement"],char:"🚓",fitzpatrick_scale:false,category:"travel_and_places"},ambulance:{keywords:["health","911","hospital"],char:"🚑",fitzpatrick_scale:false,category:"travel_and_places"},fire_engine:{keywords:["transportation","cars","vehicle"],char:"🚒",fitzpatrick_scale:false,category:"travel_and_places"},minibus:{keywords:["vehicle","car","transportation"],char:"🚐",fitzpatrick_scale:false,category:"travel_and_places"},truck:{keywords:["cars","transportation"],char:"🚚",fitzpatrick_scale:false,category:"travel_and_places"},articulated_lorry:{keywords:["vehicle","cars","transportation","express"],char:"🚛",fitzpatrick_scale:false,category:"travel_and_places"},tractor:{keywords:["vehicle","car","farming","agriculture"],char:"🚜",fitzpatrick_scale:false,category:"travel_and_places"},kick_scooter:{keywords:["vehicle","kick","razor"],char:"🛴",fitzpatrick_scale:false,category:"travel_and_places"},motorcycle:{keywords:["race","sports","fast"],char:"🏍",fitzpatrick_scale:false,category:"travel_and_places"},bike:{keywords:["sports","bicycle","exercise","hipster"],char:"🚲",fitzpatrick_scale:false,category:"travel_and_places"},motor_scooter:{keywords:["vehicle","vespa","sasha"],char:"🛵",fitzpatrick_scale:false,category:"travel_and_places"},rotating_light:{keywords:["police","ambulance","911","emergency","alert","error","pinged","law","legal"],char:"🚨",fitzpatrick_scale:false,category:"travel_and_places"},oncoming_police_car:{keywords:["vehicle","law","legal","enforcement","911"],char:"🚔",fitzpatrick_scale:false,category:"travel_and_places"},oncoming_bus:{keywords:["vehicle","transportation"],char:"🚍",fitzpatrick_scale:false,category:"travel_and_places"},oncoming_automobile:{keywords:["car","vehicle","transportation"],char:"🚘",fitzpatrick_scale:false,category:"travel_and_places"},oncoming_taxi:{keywords:["vehicle","cars","uber"],char:"🚖",fitzpatrick_scale:false,category:"travel_and_places"},aerial_tramway:{keywords:["transportation","vehicle","ski"],char:"🚡",fitzpatrick_scale:false,category:"travel_and_places"},mountain_cableway:{keywords:["transportation","vehicle","ski"],char:"🚠",fitzpatrick_scale:false,category:"travel_and_places"},suspension_railway:{keywords:["vehicle","transportation"],char:"🚟",fitzpatrick_scale:false,category:"travel_and_places"},railway_car:{keywords:["transportation","vehicle"],char:"🚃",fitzpatrick_scale:false,category:"travel_and_places"},train:{keywords:["transportation","vehicle","carriage","public","travel"],char:"🚋",fitzpatrick_scale:false,category:"travel_and_places"},monorail:{keywords:["transportation","vehicle"],char:"🚝",fitzpatrick_scale:false,category:"travel_and_places"},bullettrain_side:{keywords:["transportation","vehicle"],char:"🚄",fitzpatrick_scale:false,category:"travel_and_places"},bullettrain_front:{keywords:["transportation","vehicle","speed","fast","public","travel"],char:"🚅",fitzpatrick_scale:false,category:"travel_and_places"},light_rail:{keywords:["transportation","vehicle"],char:"🚈",fitzpatrick_scale:false,category:"travel_and_places"},mountain_railway:{keywords:["transportation","vehicle"],char:"🚞",fitzpatrick_scale:false,category:"travel_and_places"},steam_locomotive:{keywords:["transportation","vehicle","train"],char:"🚂",fitzpatrick_scale:false,category:"travel_and_places"},train2:{keywords:["transportation","vehicle"],char:"🚆",fitzpatrick_scale:false,category:"travel_and_places"},metro:{keywords:["transportation","blue-square","mrt","underground","tube"],char:"🚇",fitzpatrick_scale:false,category:"travel_and_places"},tram:{keywords:["transportation","vehicle"],char:"🚊",fitzpatrick_scale:false,category:"travel_and_places"},station:{keywords:["transportation","vehicle","public"],char:"🚉",fitzpatrick_scale:false,category:"travel_and_places"},flying_saucer:{keywords:["transportation","vehicle","ufo"],char:"🛸",fitzpatrick_scale:false,category:"travel_and_places"},helicopter:{keywords:["transportation","vehicle","fly"],char:"🚁",fitzpatrick_scale:false,category:"travel_and_places"},small_airplane:{keywords:["flight","transportation","fly","vehicle"],char:"🛩",fitzpatrick_scale:false,category:"travel_and_places"},airplane:{keywords:["vehicle","transportation","flight","fly"],char:"✈️",fitzpatrick_scale:false,category:"travel_and_places"},flight_departure:{keywords:["airport","flight","landing"],char:"🛫",fitzpatrick_scale:false,category:"travel_and_places"},flight_arrival:{keywords:["airport","flight","boarding"],char:"🛬",fitzpatrick_scale:false,category:"travel_and_places"},sailboat:{keywords:["ship","summer","transportation","water","sailing"],char:"⛵",fitzpatrick_scale:false,category:"travel_and_places"},motor_boat:{keywords:["ship"],char:"🛥",fitzpatrick_scale:false,category:"travel_and_places"},speedboat:{keywords:["ship","transportation","vehicle","summer"],char:"🚤",fitzpatrick_scale:false,category:"travel_and_places"},ferry:{keywords:["boat","ship","yacht"],char:"⛴",fitzpatrick_scale:false,category:"travel_and_places"},passenger_ship:{keywords:["yacht","cruise","ferry"],char:"🛳",fitzpatrick_scale:false,category:"travel_and_places"},rocket:{keywords:["launch","ship","staffmode","NASA","outer space","outer_space","fly"],char:"🚀",fitzpatrick_scale:false,category:"travel_and_places"},artificial_satellite:{keywords:["communication","gps","orbit","spaceflight","NASA","ISS"],char:"🛰",fitzpatrick_scale:false,category:"travel_and_places"},seat:{keywords:["sit","airplane","transport","bus","flight","fly"],char:"💺",fitzpatrick_scale:false,category:"travel_and_places"},canoe:{keywords:["boat","paddle","water","ship"],char:"🛶",fitzpatrick_scale:false,category:"travel_and_places"},anchor:{keywords:["ship","ferry","sea","boat"],char:"⚓",fitzpatrick_scale:false,category:"travel_and_places"},construction:{keywords:["wip","progress","caution","warning"],char:"🚧",fitzpatrick_scale:false,category:"travel_and_places"},fuelpump:{keywords:["gas station","petroleum"],char:"⛽",fitzpatrick_scale:false,category:"travel_and_places"},busstop:{keywords:["transportation","wait"],char:"🚏",fitzpatrick_scale:false,category:"travel_and_places"},vertical_traffic_light:{keywords:["transportation","driving"],char:"🚦",fitzpatrick_scale:false,category:"travel_and_places"},traffic_light:{keywords:["transportation","signal"],char:"🚥",fitzpatrick_scale:false,category:"travel_and_places"},checkered_flag:{keywords:["contest","finishline","race","gokart"],char:"🏁",fitzpatrick_scale:false,category:"travel_and_places"},ship:{keywords:["transportation","titanic","deploy"],char:"🚢",fitzpatrick_scale:false,category:"travel_and_places"},ferris_wheel:{keywords:["photo","carnival","londoneye"],char:"🎡",fitzpatrick_scale:false,category:"travel_and_places"},roller_coaster:{keywords:["carnival","playground","photo","fun"],char:"🎢",fitzpatrick_scale:false,category:"travel_and_places"},carousel_horse:{keywords:["photo","carnival"],char:"🎠",fitzpatrick_scale:false,category:"travel_and_places"},building_construction:{keywords:["wip","working","progress"],char:"🏗",fitzpatrick_scale:false,category:"travel_and_places"},foggy:{keywords:["photo","mountain"],char:"🌁",fitzpatrick_scale:false,category:"travel_and_places"},tokyo_tower:{keywords:["photo","japanese"],char:"🗼",fitzpatrick_scale:false,category:"travel_and_places"},factory:{keywords:["building","industry","pollution","smoke"],char:"🏭",fitzpatrick_scale:false,category:"travel_and_places"},fountain:{keywords:["photo","summer","water","fresh"],char:"⛲",fitzpatrick_scale:false,category:"travel_and_places"},rice_scene:{keywords:["photo","japan","asia","tsukimi"],char:"🎑",fitzpatrick_scale:false,category:"travel_and_places"},mountain:{keywords:["photo","nature","environment"],char:"⛰",fitzpatrick_scale:false,category:"travel_and_places"},mountain_snow:{keywords:["photo","nature","environment","winter","cold"],char:"🏔",fitzpatrick_scale:false,category:"travel_and_places"},mount_fuji:{keywords:["photo","mountain","nature","japanese"],char:"🗻",fitzpatrick_scale:false,category:"travel_and_places"},volcano:{keywords:["photo","nature","disaster"],char:"🌋",fitzpatrick_scale:false,category:"travel_and_places"},japan:{keywords:["nation","country","japanese","asia"],char:"🗾",fitzpatrick_scale:false,category:"travel_and_places"},camping:{keywords:["photo","outdoors","tent"],char:"🏕",fitzpatrick_scale:false,category:"travel_and_places"},tent:{keywords:["photo","camping","outdoors"],char:"⛺",fitzpatrick_scale:false,category:"travel_and_places"},national_park:{keywords:["photo","environment","nature"],char:"🏞",fitzpatrick_scale:false,category:"travel_and_places"},motorway:{keywords:["road","cupertino","interstate","highway"],char:"🛣",fitzpatrick_scale:false,category:"travel_and_places"},railway_track:{keywords:["train","transportation"],char:"🛤",fitzpatrick_scale:false,category:"travel_and_places"},sunrise:{keywords:["morning","view","vacation","photo"],char:"🌅",fitzpatrick_scale:false,category:"travel_and_places"},sunrise_over_mountains:{keywords:["view","vacation","photo"],char:"🌄",fitzpatrick_scale:false,category:"travel_and_places"},desert:{keywords:["photo","warm","saharah"],char:"🏜",fitzpatrick_scale:false,category:"travel_and_places"},beach_umbrella:{keywords:["weather","summer","sunny","sand","mojito"],char:"🏖",fitzpatrick_scale:false,category:"travel_and_places"},desert_island:{keywords:["photo","tropical","mojito"],char:"🏝",fitzpatrick_scale:false,category:"travel_and_places"},city_sunrise:{keywords:["photo","good morning","dawn"],char:"🌇",fitzpatrick_scale:false,category:"travel_and_places"},city_sunset:{keywords:["photo","evening","sky","buildings"],char:"🌆",fitzpatrick_scale:false,category:"travel_and_places"},cityscape:{keywords:["photo","night life","urban"],char:"🏙",fitzpatrick_scale:false,category:"travel_and_places"},night_with_stars:{keywords:["evening","city","downtown"],char:"🌃",fitzpatrick_scale:false,category:"travel_and_places"},bridge_at_night:{keywords:["photo","sanfrancisco"],char:"🌉",fitzpatrick_scale:false,category:"travel_and_places"},milky_way:{keywords:["photo","space","stars"],char:"🌌",fitzpatrick_scale:false,category:"travel_and_places"},stars:{keywords:["night","photo"],char:"🌠",fitzpatrick_scale:false,category:"travel_and_places"},sparkler:{keywords:["stars","night","shine"],char:"🎇",fitzpatrick_scale:false,category:"travel_and_places"},fireworks:{keywords:["photo","festival","carnival","congratulations"],char:"🎆",fitzpatrick_scale:false,category:"travel_and_places"},rainbow:{keywords:["nature","happy","unicorn_face","photo","sky","spring"],char:"🌈",fitzpatrick_scale:false,category:"travel_and_places"},houses:{keywords:["buildings","photo"],char:"🏘",fitzpatrick_scale:false,category:"travel_and_places"},european_castle:{keywords:["building","royalty","history"],char:"🏰",fitzpatrick_scale:false,category:"travel_and_places"},japanese_castle:{keywords:["photo","building"],char:"🏯",fitzpatrick_scale:false,category:"travel_and_places"},stadium:{keywords:["photo","place","sports","concert","venue"],char:"🏟",fitzpatrick_scale:false,category:"travel_and_places"},statue_of_liberty:{keywords:["american","newyork"],char:"🗽",fitzpatrick_scale:false,category:"travel_and_places"},house:{keywords:["building","home"],char:"🏠",fitzpatrick_scale:false,category:"travel_and_places"},house_with_garden:{keywords:["home","plant","nature"],char:"🏡",fitzpatrick_scale:false,category:"travel_and_places"},derelict_house:{keywords:["abandon","evict","broken","building"],char:"🏚",fitzpatrick_scale:false,category:"travel_and_places"},office:{keywords:["building","bureau","work"],char:"🏢",fitzpatrick_scale:false,category:"travel_and_places"},department_store:{keywords:["building","shopping","mall"],char:"🏬",fitzpatrick_scale:false,category:"travel_and_places"},post_office:{keywords:["building","envelope","communication"],char:"🏣",fitzpatrick_scale:false,category:"travel_and_places"},european_post_office:{keywords:["building","email"],char:"🏤",fitzpatrick_scale:false,category:"travel_and_places"},hospital:{keywords:["building","health","surgery","doctor"],char:"🏥",fitzpatrick_scale:false,category:"travel_and_places"},bank:{keywords:["building","money","sales","cash","business","enterprise"],char:"🏦",fitzpatrick_scale:false,category:"travel_and_places"},hotel:{keywords:["building","accomodation","checkin"],char:"🏨",fitzpatrick_scale:false,category:"travel_and_places"},convenience_store:{keywords:["building","shopping","groceries"],char:"🏪",fitzpatrick_scale:false,category:"travel_and_places"},school:{keywords:["building","student","education","learn","teach"],char:"🏫",fitzpatrick_scale:false,category:"travel_and_places"},love_hotel:{keywords:["like","affection","dating"],char:"🏩",fitzpatrick_scale:false,category:"travel_and_places"},wedding:{keywords:["love","like","affection","couple","marriage","bride","groom"],char:"💒",fitzpatrick_scale:false,category:"travel_and_places"},classical_building:{keywords:["art","culture","history"],char:"🏛",fitzpatrick_scale:false,category:"travel_and_places"},church:{keywords:["building","religion","christ"],char:"⛪",fitzpatrick_scale:false,category:"travel_and_places"},mosque:{keywords:["islam","worship","minaret"],char:"🕌",fitzpatrick_scale:false,category:"travel_and_places"},synagogue:{keywords:["judaism","worship","temple","jewish"],char:"🕍",fitzpatrick_scale:false,category:"travel_and_places"},kaaba:{keywords:["mecca","mosque","islam"],char:"🕋",fitzpatrick_scale:false,category:"travel_and_places"},shinto_shrine:{keywords:["temple","japan","kyoto"],char:"⛩",fitzpatrick_scale:false,category:"travel_and_places"},watch:{keywords:["time","accessories"],char:"⌚",fitzpatrick_scale:false,category:"objects"},iphone:{keywords:["technology","apple","gadgets","dial"],char:"📱",fitzpatrick_scale:false,category:"objects"},calling:{keywords:["iphone","incoming"],char:"📲",fitzpatrick_scale:false,category:"objects"},computer:{keywords:["technology","laptop","screen","display","monitor"],char:"💻",fitzpatrick_scale:false,category:"objects"},keyboard:{keywords:["technology","computer","type","input","text"],char:"⌨",fitzpatrick_scale:false,category:"objects"},desktop_computer:{keywords:["technology","computing","screen"],char:"🖥",fitzpatrick_scale:false,category:"objects"},printer:{keywords:["paper","ink"],char:"🖨",fitzpatrick_scale:false,category:"objects"},computer_mouse:{keywords:["click"],char:"🖱",fitzpatrick_scale:false,category:"objects"},trackball:{keywords:["technology","trackpad"],char:"🖲",fitzpatrick_scale:false,category:"objects"},joystick:{keywords:["game","play"],char:"🕹",fitzpatrick_scale:false,category:"objects"},clamp:{keywords:["tool"],char:"🗜",fitzpatrick_scale:false,category:"objects"},minidisc:{keywords:["technology","record","data","disk","90s"],char:"💽",fitzpatrick_scale:false,category:"objects"},floppy_disk:{keywords:["oldschool","technology","save","90s","80s"],char:"💾",fitzpatrick_scale:false,category:"objects"},cd:{keywords:["technology","dvd","disk","disc","90s"],char:"💿",fitzpatrick_scale:false,category:"objects"},dvd:{keywords:["cd","disk","disc"],char:"📀",fitzpatrick_scale:false,category:"objects"},vhs:{keywords:["record","video","oldschool","90s","80s"],char:"📼",fitzpatrick_scale:false,category:"objects"},camera:{keywords:["gadgets","photography"],char:"📷",fitzpatrick_scale:false,category:"objects"},camera_flash:{keywords:["photography","gadgets"],char:"📸",fitzpatrick_scale:false,category:"objects"},video_camera:{keywords:["film","record"],char:"📹",fitzpatrick_scale:false,category:"objects"},movie_camera:{keywords:["film","record"],char:"🎥",fitzpatrick_scale:false,category:"objects"},film_projector:{keywords:["video","tape","record","movie"],char:"📽",fitzpatrick_scale:false,category:"objects"},film_strip:{keywords:["movie"],char:"🎞",fitzpatrick_scale:false,category:"objects"},telephone_receiver:{keywords:["technology","communication","dial"],char:"📞",fitzpatrick_scale:false,category:"objects"},phone:{keywords:["technology","communication","dial","telephone"],char:"☎️",fitzpatrick_scale:false,category:"objects"},pager:{keywords:["bbcall","oldschool","90s"],char:"📟",fitzpatrick_scale:false,category:"objects"},fax:{keywords:["communication","technology"],char:"📠",fitzpatrick_scale:false,category:"objects"},tv:{keywords:["technology","program","oldschool","show","television"],char:"📺",fitzpatrick_scale:false,category:"objects"},radio:{keywords:["communication","music","podcast","program"],char:"📻",fitzpatrick_scale:false,category:"objects"},studio_microphone:{keywords:["sing","recording","artist","talkshow"],char:"🎙",fitzpatrick_scale:false,category:"objects"},level_slider:{keywords:["scale"],char:"🎚",fitzpatrick_scale:false,category:"objects"},control_knobs:{keywords:["dial"],char:"🎛",fitzpatrick_scale:false,category:"objects"},compass:{keywords:["magnetic","navigation","orienteering"],char:"🧭",fitzpatrick_scale:false,category:"objects"},stopwatch:{keywords:["time","deadline"],char:"⏱",fitzpatrick_scale:false,category:"objects"},timer_clock:{keywords:["alarm"],char:"⏲",fitzpatrick_scale:false,category:"objects"},alarm_clock:{keywords:["time","wake"],char:"⏰",fitzpatrick_scale:false,category:"objects"},mantelpiece_clock:{keywords:["time"],char:"🕰",fitzpatrick_scale:false,category:"objects"},hourglass_flowing_sand:{keywords:["oldschool","time","countdown"],char:"⏳",fitzpatrick_scale:false,category:"objects"},hourglass:{keywords:["time","clock","oldschool","limit","exam","quiz","test"],char:"⌛",fitzpatrick_scale:false,category:"objects"},satellite:{keywords:["communication","future","radio","space"],char:"📡",fitzpatrick_scale:false,category:"objects"},battery:{keywords:["power","energy","sustain"],char:"🔋",fitzpatrick_scale:false,category:"objects"},electric_plug:{keywords:["charger","power"],char:"🔌",fitzpatrick_scale:false,category:"objects"},bulb:{keywords:["light","electricity","idea"],char:"💡",fitzpatrick_scale:false,category:"objects"},flashlight:{keywords:["dark","camping","sight","night"],char:"🔦",fitzpatrick_scale:false,category:"objects"},candle:{keywords:["fire","wax"],char:"🕯",fitzpatrick_scale:false,category:"objects"},fire_extinguisher:{keywords:["quench"],char:"🧯",fitzpatrick_scale:false,category:"objects"},wastebasket:{keywords:["bin","trash","rubbish","garbage","toss"],char:"🗑",fitzpatrick_scale:false,category:"objects"},oil_drum:{keywords:["barrell"],char:"🛢",fitzpatrick_scale:false,category:"objects"},money_with_wings:{keywords:["dollar","bills","payment","sale"],char:"💸",fitzpatrick_scale:false,category:"objects"},dollar:{keywords:["money","sales","bill","currency"],char:"💵",fitzpatrick_scale:false,category:"objects"},yen:{keywords:["money","sales","japanese","dollar","currency"],char:"💴",fitzpatrick_scale:false,category:"objects"},euro:{keywords:["money","sales","dollar","currency"],char:"💶",fitzpatrick_scale:false,category:"objects"},pound:{keywords:["british","sterling","money","sales","bills","uk","england","currency"],char:"💷",fitzpatrick_scale:false,category:"objects"},moneybag:{keywords:["dollar","payment","coins","sale"],char:"💰",fitzpatrick_scale:false,category:"objects"},credit_card:{keywords:["money","sales","dollar","bill","payment","shopping"],char:"💳",fitzpatrick_scale:false,category:"objects"},gem:{keywords:["blue","ruby","diamond","jewelry"],char:"💎",fitzpatrick_scale:false,category:"objects"},balance_scale:{keywords:["law","fairness","weight"],char:"⚖",fitzpatrick_scale:false,category:"objects"},toolbox:{keywords:["tools","diy","fix","maintainer","mechanic"],char:"🧰",fitzpatrick_scale:false,category:"objects"},wrench:{keywords:["tools","diy","ikea","fix","maintainer"],char:"🔧",fitzpatrick_scale:false,category:"objects"},hammer:{keywords:["tools","build","create"],char:"🔨",fitzpatrick_scale:false,category:"objects"},hammer_and_pick:{keywords:["tools","build","create"],char:"⚒",fitzpatrick_scale:false,category:"objects"},hammer_and_wrench:{keywords:["tools","build","create"],char:"🛠",fitzpatrick_scale:false,category:"objects"},pick:{keywords:["tools","dig"],char:"⛏",fitzpatrick_scale:false,category:"objects"},nut_and_bolt:{keywords:["handy","tools","fix"],char:"🔩",fitzpatrick_scale:false,category:"objects"},gear:{keywords:["cog"],char:"⚙",fitzpatrick_scale:false,category:"objects"},brick:{keywords:["bricks"],char:"🧱",fitzpatrick_scale:false,category:"objects"},chains:{keywords:["lock","arrest"],char:"⛓",fitzpatrick_scale:false,category:"objects"},magnet:{keywords:["attraction","magnetic"],char:"🧲",fitzpatrick_scale:false,category:"objects"},gun:{keywords:["violence","weapon","pistol","revolver"],char:"🔫",fitzpatrick_scale:false,category:"objects"},bomb:{keywords:["boom","explode","explosion","terrorism"],char:"💣",fitzpatrick_scale:false,category:"objects"},firecracker:{keywords:["dynamite","boom","explode","explosion","explosive"],char:"🧨",fitzpatrick_scale:false,category:"objects"},hocho:{keywords:["knife","blade","cutlery","kitchen","weapon"],char:"🔪",fitzpatrick_scale:false,category:"objects"},dagger:{keywords:["weapon"],char:"🗡",fitzpatrick_scale:false,category:"objects"},crossed_swords:{keywords:["weapon"],char:"⚔",fitzpatrick_scale:false,category:"objects"},shield:{keywords:["protection","security"],char:"🛡",fitzpatrick_scale:false,category:"objects"},smoking:{keywords:["kills","tobacco","cigarette","joint","smoke"],char:"🚬",fitzpatrick_scale:false,category:"objects"},skull_and_crossbones:{keywords:["poison","danger","deadly","scary","death","pirate","evil"],char:"☠",fitzpatrick_scale:false,category:"objects"},coffin:{keywords:["vampire","dead","die","death","rip","graveyard","cemetery","casket","funeral","box"],char:"⚰",fitzpatrick_scale:false,category:"objects"},funeral_urn:{keywords:["dead","die","death","rip","ashes"],char:"⚱",fitzpatrick_scale:false,category:"objects"},amphora:{keywords:["vase","jar"],char:"🏺",fitzpatrick_scale:false,category:"objects"},crystal_ball:{keywords:["disco","party","magic","circus","fortune_teller"],char:"🔮",fitzpatrick_scale:false,category:"objects"},prayer_beads:{keywords:["dhikr","religious"],char:"📿",fitzpatrick_scale:false,category:"objects"},nazar_amulet:{keywords:["bead","charm"],char:"🧿",fitzpatrick_scale:false,category:"objects"},barber:{keywords:["hair","salon","style"],char:"💈",fitzpatrick_scale:false,category:"objects"},alembic:{keywords:["distilling","science","experiment","chemistry"],char:"⚗",fitzpatrick_scale:false,category:"objects"},telescope:{keywords:["stars","space","zoom","science","astronomy"],char:"🔭",fitzpatrick_scale:false,category:"objects"},microscope:{keywords:["laboratory","experiment","zoomin","science","study"],char:"🔬",fitzpatrick_scale:false,category:"objects"},hole:{keywords:["embarrassing"],char:"🕳",fitzpatrick_scale:false,category:"objects"},pill:{keywords:["health","medicine","doctor","pharmacy","drug"],char:"💊",fitzpatrick_scale:false,category:"objects"},syringe:{keywords:["health","hospital","drugs","blood","medicine","needle","doctor","nurse"],char:"💉",fitzpatrick_scale:false,category:"objects"},dna:{keywords:["biologist","genetics","life"],char:"🧬",fitzpatrick_scale:false,category:"objects"},microbe:{keywords:["amoeba","bacteria","germs"],char:"🦠",fitzpatrick_scale:false,category:"objects"},petri_dish:{keywords:["bacteria","biology","culture","lab"],char:"🧫",fitzpatrick_scale:false,category:"objects"},test_tube:{keywords:["chemistry","experiment","lab","science"],char:"🧪",fitzpatrick_scale:false,category:"objects"},thermometer:{keywords:["weather","temperature","hot","cold"],char:"🌡",fitzpatrick_scale:false,category:"objects"},broom:{keywords:["cleaning","sweeping","witch"],char:"🧹",fitzpatrick_scale:false,category:"objects"},basket:{keywords:["laundry"],char:"🧺",fitzpatrick_scale:false,category:"objects"},toilet_paper:{keywords:["roll"],char:"🧻",fitzpatrick_scale:false,category:"objects"},label:{keywords:["sale","tag"],char:"🏷",fitzpatrick_scale:false,category:"objects"},bookmark:{keywords:["favorite","label","save"],char:"🔖",fitzpatrick_scale:false,category:"objects"},toilet:{keywords:["restroom","wc","washroom","bathroom","potty"],char:"🚽",fitzpatrick_scale:false,category:"objects"},shower:{keywords:["clean","water","bathroom"],char:"🚿",fitzpatrick_scale:false,category:"objects"},bathtub:{keywords:["clean","shower","bathroom"],char:"🛁",fitzpatrick_scale:false,category:"objects"},soap:{keywords:["bar","bathing","cleaning","lather"],char:"🧼",fitzpatrick_scale:false,category:"objects"},sponge:{keywords:["absorbing","cleaning","porous"],char:"🧽",fitzpatrick_scale:false,category:"objects"},lotion_bottle:{keywords:["moisturizer","sunscreen"],char:"🧴",fitzpatrick_scale:false,category:"objects"},key:{keywords:["lock","door","password"],char:"🔑",fitzpatrick_scale:false,category:"objects"},old_key:{keywords:["lock","door","password"],char:"🗝",fitzpatrick_scale:false,category:"objects"},couch_and_lamp:{keywords:["read","chill"],char:"🛋",fitzpatrick_scale:false,category:"objects"},sleeping_bed:{keywords:["bed","rest"],char:"🛌",fitzpatrick_scale:true,category:"objects"},bed:{keywords:["sleep","rest"],char:"🛏",fitzpatrick_scale:false,category:"objects"},door:{keywords:["house","entry","exit"],char:"🚪",fitzpatrick_scale:false,category:"objects"},bellhop_bell:{keywords:["service"],char:"🛎",fitzpatrick_scale:false,category:"objects"},teddy_bear:{keywords:["plush","stuffed"],char:"🧸",fitzpatrick_scale:false,category:"objects"},framed_picture:{keywords:["photography"],char:"🖼",fitzpatrick_scale:false,category:"objects"},world_map:{keywords:["location","direction"],char:"🗺",fitzpatrick_scale:false,category:"objects"},parasol_on_ground:{keywords:["weather","summer"],char:"⛱",fitzpatrick_scale:false,category:"objects"},moyai:{keywords:["rock","easter island","moai"],char:"🗿",fitzpatrick_scale:false,category:"objects"},shopping:{keywords:["mall","buy","purchase"],char:"🛍",fitzpatrick_scale:false,category:"objects"},shopping_cart:{keywords:["trolley"],char:"🛒",fitzpatrick_scale:false,category:"objects"},balloon:{keywords:["party","celebration","birthday","circus"],char:"🎈",fitzpatrick_scale:false,category:"objects"},flags:{keywords:["fish","japanese","koinobori","carp","banner"],char:"🎏",fitzpatrick_scale:false,category:"objects"},ribbon:{keywords:["decoration","pink","girl","bowtie"],char:"🎀",fitzpatrick_scale:false,category:"objects"},gift:{keywords:["present","birthday","christmas","xmas"],char:"🎁",fitzpatrick_scale:false,category:"objects"},confetti_ball:{keywords:["festival","party","birthday","circus"],char:"🎊",fitzpatrick_scale:false,category:"objects"},tada:{keywords:["party","congratulations","birthday","magic","circus","celebration"],char:"🎉",fitzpatrick_scale:false,category:"objects"},dolls:{keywords:["japanese","toy","kimono"],char:"🎎",fitzpatrick_scale:false,category:"objects"},wind_chime:{keywords:["nature","ding","spring","bell"],char:"🎐",fitzpatrick_scale:false,category:"objects"},crossed_flags:{keywords:["japanese","nation","country","border"],char:"🎌",fitzpatrick_scale:false,category:"objects"},izakaya_lantern:{keywords:["light","paper","halloween","spooky"],char:"🏮",fitzpatrick_scale:false,category:"objects"},red_envelope:{keywords:["gift"],char:"🧧",fitzpatrick_scale:false,category:"objects"},email:{keywords:["letter","postal","inbox","communication"],char:"✉️",fitzpatrick_scale:false,category:"objects"},envelope_with_arrow:{keywords:["email","communication"],char:"📩",fitzpatrick_scale:false,category:"objects"},incoming_envelope:{keywords:["email","inbox"],char:"📨",fitzpatrick_scale:false,category:"objects"},"e-mail":{keywords:["communication","inbox"],char:"📧",fitzpatrick_scale:false,category:"objects"},love_letter:{keywords:["email","like","affection","envelope","valentines"],char:"💌",fitzpatrick_scale:false,category:"objects"},postbox:{keywords:["email","letter","envelope"],char:"📮",fitzpatrick_scale:false,category:"objects"},mailbox_closed:{keywords:["email","communication","inbox"],char:"📪",fitzpatrick_scale:false,category:"objects"},mailbox:{keywords:["email","inbox","communication"],char:"📫",fitzpatrick_scale:false,category:"objects"},mailbox_with_mail:{keywords:["email","inbox","communication"],char:"📬",fitzpatrick_scale:false,category:"objects"},mailbox_with_no_mail:{keywords:["email","inbox"],char:"📭",fitzpatrick_scale:false,category:"objects"},package:{keywords:["mail","gift","cardboard","box","moving"],char:"📦",fitzpatrick_scale:false,category:"objects"},postal_horn:{keywords:["instrument","music"],char:"📯",fitzpatrick_scale:false,category:"objects"},inbox_tray:{keywords:["email","documents"],char:"📥",fitzpatrick_scale:false,category:"objects"},outbox_tray:{keywords:["inbox","email"],char:"📤",fitzpatrick_scale:false,category:"objects"},scroll:{keywords:["documents","ancient","history","paper"],char:"📜",fitzpatrick_scale:false,category:"objects"},page_with_curl:{keywords:["documents","office","paper"],char:"📃",fitzpatrick_scale:false,category:"objects"},bookmark_tabs:{keywords:["favorite","save","order","tidy"],char:"📑",fitzpatrick_scale:false,category:"objects"},receipt:{keywords:["accounting","expenses"],char:"🧾",fitzpatrick_scale:false,category:"objects"},bar_chart:{keywords:["graph","presentation","stats"],char:"📊",fitzpatrick_scale:false,category:"objects"},chart_with_upwards_trend:{keywords:["graph","presentation","stats","recovery","business","economics","money","sales","good","success"],char:"📈",fitzpatrick_scale:false,category:"objects"},chart_with_downwards_trend:{keywords:["graph","presentation","stats","recession","business","economics","money","sales","bad","failure"],char:"📉",fitzpatrick_scale:false,category:"objects"},page_facing_up:{keywords:["documents","office","paper","information"],char:"📄",fitzpatrick_scale:false,category:"objects"},date:{keywords:["calendar","schedule"],char:"📅",fitzpatrick_scale:false,category:"objects"},calendar:{keywords:["schedule","date","planning"],char:"📆",fitzpatrick_scale:false,category:"objects"},spiral_calendar:{keywords:["date","schedule","planning"],char:"🗓",fitzpatrick_scale:false,category:"objects"},card_index:{keywords:["business","stationery"],char:"📇",fitzpatrick_scale:false,category:"objects"},card_file_box:{keywords:["business","stationery"],char:"🗃",fitzpatrick_scale:false,category:"objects"},ballot_box:{keywords:["election","vote"],char:"🗳",fitzpatrick_scale:false,category:"objects"},file_cabinet:{keywords:["filing","organizing"],char:"🗄",fitzpatrick_scale:false,category:"objects"},clipboard:{keywords:["stationery","documents"],char:"📋",fitzpatrick_scale:false,category:"objects"},spiral_notepad:{keywords:["memo","stationery"],char:"🗒",fitzpatrick_scale:false,category:"objects"},file_folder:{keywords:["documents","business","office"],char:"📁",fitzpatrick_scale:false,category:"objects"},open_file_folder:{keywords:["documents","load"],char:"📂",fitzpatrick_scale:false,category:"objects"},card_index_dividers:{keywords:["organizing","business","stationery"],char:"🗂",fitzpatrick_scale:false,category:"objects"},newspaper_roll:{keywords:["press","headline"],char:"🗞",fitzpatrick_scale:false,category:"objects"},newspaper:{keywords:["press","headline"],char:"📰",fitzpatrick_scale:false,category:"objects"},notebook:{keywords:["stationery","record","notes","paper","study"],char:"📓",fitzpatrick_scale:false,category:"objects"},closed_book:{keywords:["read","library","knowledge","textbook","learn"],char:"📕",fitzpatrick_scale:false,category:"objects"},green_book:{keywords:["read","library","knowledge","study"],char:"📗",fitzpatrick_scale:false,category:"objects"},blue_book:{keywords:["read","library","knowledge","learn","study"],char:"📘",fitzpatrick_scale:false,category:"objects"},orange_book:{keywords:["read","library","knowledge","textbook","study"],char:"📙",fitzpatrick_scale:false,category:"objects"},notebook_with_decorative_cover:{keywords:["classroom","notes","record","paper","study"],char:"📔",fitzpatrick_scale:false,category:"objects"},ledger:{keywords:["notes","paper"],char:"📒",fitzpatrick_scale:false,category:"objects"},books:{keywords:["literature","library","study"],char:"📚",fitzpatrick_scale:false,category:"objects"},open_book:{keywords:["book","read","library","knowledge","literature","learn","study"],char:"📖",fitzpatrick_scale:false,category:"objects"},safety_pin:{keywords:["diaper"],char:"🧷",fitzpatrick_scale:false,category:"objects"},link:{keywords:["rings","url"],char:"🔗",fitzpatrick_scale:false,category:"objects"},paperclip:{keywords:["documents","stationery"],char:"📎",fitzpatrick_scale:false,category:"objects"},paperclips:{keywords:["documents","stationery"],char:"🖇",fitzpatrick_scale:false,category:"objects"},scissors:{keywords:["stationery","cut"],char:"✂️",fitzpatrick_scale:false,category:"objects"},triangular_ruler:{keywords:["stationery","math","architect","sketch"],char:"📐",fitzpatrick_scale:false,category:"objects"},straight_ruler:{keywords:["stationery","calculate","length","math","school","drawing","architect","sketch"],char:"📏",fitzpatrick_scale:false,category:"objects"},abacus:{keywords:["calculation"],char:"🧮",fitzpatrick_scale:false,category:"objects"},pushpin:{keywords:["stationery","mark","here"],char:"📌",fitzpatrick_scale:false,category:"objects"},round_pushpin:{keywords:["stationery","location","map","here"],char:"📍",fitzpatrick_scale:false,category:"objects"},triangular_flag_on_post:{keywords:["mark","milestone","place"],char:"🚩",fitzpatrick_scale:false,category:"objects"},white_flag:{keywords:["losing","loser","lost","surrender","give up","fail"],char:"🏳",fitzpatrick_scale:false,category:"objects"},black_flag:{keywords:["pirate"],char:"🏴",fitzpatrick_scale:false,category:"objects"},rainbow_flag:{keywords:["flag","rainbow","pride","gay","lgbt","glbt","queer","homosexual","lesbian","bisexual","transgender"],char:"🏳️‍🌈",fitzpatrick_scale:false,category:"objects"},closed_lock_with_key:{keywords:["security","privacy"],char:"🔐",fitzpatrick_scale:false,category:"objects"},lock:{keywords:["security","password","padlock"],char:"🔒",fitzpatrick_scale:false,category:"objects"},unlock:{keywords:["privacy","security"],char:"🔓",fitzpatrick_scale:false,category:"objects"},lock_with_ink_pen:{keywords:["security","secret"],char:"🔏",fitzpatrick_scale:false,category:"objects"},pen:{keywords:["stationery","writing","write"],char:"🖊",fitzpatrick_scale:false,category:"objects"},fountain_pen:{keywords:["stationery","writing","write"],char:"🖋",fitzpatrick_scale:false,category:"objects"},black_nib:{keywords:["pen","stationery","writing","write"],char:"✒️",fitzpatrick_scale:false,category:"objects"},memo:{keywords:["write","documents","stationery","pencil","paper","writing","legal","exam","quiz","test","study","compose"],char:"📝",fitzpatrick_scale:false,category:"objects"},pencil2:{keywords:["stationery","write","paper","writing","school","study"],char:"✏️",fitzpatrick_scale:false,category:"objects"},crayon:{keywords:["drawing","creativity"],char:"🖍",fitzpatrick_scale:false,category:"objects"},paintbrush:{keywords:["drawing","creativity","art"],char:"🖌",fitzpatrick_scale:false,category:"objects"},mag:{keywords:["search","zoom","find","detective"],char:"🔍",fitzpatrick_scale:false,category:"objects"},mag_right:{keywords:["search","zoom","find","detective"],char:"🔎",fitzpatrick_scale:false,category:"objects"},heart:{keywords:["love","like","valentines"],char:"❤️",fitzpatrick_scale:false,category:"symbols"},orange_heart:{keywords:["love","like","affection","valentines"],char:"🧡",fitzpatrick_scale:false,category:"symbols"},yellow_heart:{keywords:["love","like","affection","valentines"],char:"💛",fitzpatrick_scale:false,category:"symbols"},green_heart:{keywords:["love","like","affection","valentines"],char:"💚",fitzpatrick_scale:false,category:"symbols"},blue_heart:{keywords:["love","like","affection","valentines"],char:"💙",fitzpatrick_scale:false,category:"symbols"},purple_heart:{keywords:["love","like","affection","valentines"],char:"💜",fitzpatrick_scale:false,category:"symbols"},black_heart:{keywords:["evil"],char:"🖤",fitzpatrick_scale:false,category:"symbols"},broken_heart:{keywords:["sad","sorry","break","heart","heartbreak"],char:"💔",fitzpatrick_scale:false,category:"symbols"},heavy_heart_exclamation:{keywords:["decoration","love"],char:"❣",fitzpatrick_scale:false,category:"symbols"},two_hearts:{keywords:["love","like","affection","valentines","heart"],char:"💕",fitzpatrick_scale:false,category:"symbols"},revolving_hearts:{keywords:["love","like","affection","valentines"],char:"💞",fitzpatrick_scale:false,category:"symbols"},heartbeat:{keywords:["love","like","affection","valentines","pink","heart"],char:"💓",fitzpatrick_scale:false,category:"symbols"},heartpulse:{keywords:["like","love","affection","valentines","pink"],char:"💗",fitzpatrick_scale:false,category:"symbols"},sparkling_heart:{keywords:["love","like","affection","valentines"],char:"💖",fitzpatrick_scale:false,category:"symbols"},cupid:{keywords:["love","like","heart","affection","valentines"],char:"💘",fitzpatrick_scale:false,category:"symbols"},gift_heart:{keywords:["love","valentines"],char:"💝",fitzpatrick_scale:false,category:"symbols"},heart_decoration:{keywords:["purple-square","love","like"],char:"💟",fitzpatrick_scale:false,category:"symbols"},peace_symbol:{keywords:["hippie"],char:"☮",fitzpatrick_scale:false,category:"symbols"},latin_cross:{keywords:["christianity"],char:"✝",fitzpatrick_scale:false,category:"symbols"},star_and_crescent:{keywords:["islam"],char:"☪",fitzpatrick_scale:false,category:"symbols"},om:{keywords:["hinduism","buddhism","sikhism","jainism"],char:"🕉",fitzpatrick_scale:false,category:"symbols"},wheel_of_dharma:{keywords:["hinduism","buddhism","sikhism","jainism"],char:"☸",fitzpatrick_scale:false,category:"symbols"},star_of_david:{keywords:["judaism"],char:"✡",fitzpatrick_scale:false,category:"symbols"},six_pointed_star:{keywords:["purple-square","religion","jewish","hexagram"],char:"🔯",fitzpatrick_scale:false,category:"symbols"},menorah:{keywords:["hanukkah","candles","jewish"],char:"🕎",fitzpatrick_scale:false,category:"symbols"},yin_yang:{keywords:["balance"],char:"☯",fitzpatrick_scale:false,category:"symbols"},orthodox_cross:{keywords:["suppedaneum","religion"],char:"☦",fitzpatrick_scale:false,category:"symbols"},place_of_worship:{keywords:["religion","church","temple","prayer"],char:"🛐",fitzpatrick_scale:false,category:"symbols"},ophiuchus:{keywords:["sign","purple-square","constellation","astrology"],char:"⛎",fitzpatrick_scale:false,category:"symbols"},aries:{keywords:["sign","purple-square","zodiac","astrology"],char:"♈",fitzpatrick_scale:false,category:"symbols"},taurus:{keywords:["purple-square","sign","zodiac","astrology"],char:"♉",fitzpatrick_scale:false,category:"symbols"},gemini:{keywords:["sign","zodiac","purple-square","astrology"],char:"♊",fitzpatrick_scale:false,category:"symbols"},cancer:{keywords:["sign","zodiac","purple-square","astrology"],char:"♋",fitzpatrick_scale:false,category:"symbols"},leo:{keywords:["sign","purple-square","zodiac","astrology"],char:"♌",fitzpatrick_scale:false,category:"symbols"},virgo:{keywords:["sign","zodiac","purple-square","astrology"],char:"♍",fitzpatrick_scale:false,category:"symbols"},libra:{keywords:["sign","purple-square","zodiac","astrology"],char:"♎",fitzpatrick_scale:false,category:"symbols"},scorpius:{keywords:["sign","zodiac","purple-square","astrology","scorpio"],char:"♏",fitzpatrick_scale:false,category:"symbols"},sagittarius:{keywords:["sign","zodiac","purple-square","astrology"],char:"♐",fitzpatrick_scale:false,category:"symbols"},capricorn:{keywords:["sign","zodiac","purple-square","astrology"],char:"♑",fitzpatrick_scale:false,category:"symbols"},aquarius:{keywords:["sign","purple-square","zodiac","astrology"],char:"♒",fitzpatrick_scale:false,category:"symbols"},pisces:{keywords:["purple-square","sign","zodiac","astrology"],char:"♓",fitzpatrick_scale:false,category:"symbols"},id:{keywords:["purple-square","words"],char:"🆔",fitzpatrick_scale:false,category:"symbols"},atom_symbol:{keywords:["science","physics","chemistry"],char:"⚛",fitzpatrick_scale:false,category:"symbols"},u7a7a:{keywords:["kanji","japanese","chinese","empty","sky","blue-square"],char:"🈳",fitzpatrick_scale:false,category:"symbols"},u5272:{keywords:["cut","divide","chinese","kanji","pink-square"],char:"🈹",fitzpatrick_scale:false,category:"symbols"},radioactive:{keywords:["nuclear","danger"],char:"☢",fitzpatrick_scale:false,category:"symbols"},biohazard:{keywords:["danger"],char:"☣",fitzpatrick_scale:false,category:"symbols"},mobile_phone_off:{keywords:["mute","orange-square","silence","quiet"],char:"📴",fitzpatrick_scale:false,category:"symbols"},vibration_mode:{keywords:["orange-square","phone"],char:"📳",fitzpatrick_scale:false,category:"symbols"},u6709:{keywords:["orange-square","chinese","have","kanji"],char:"🈶",fitzpatrick_scale:false,category:"symbols"},u7121:{keywords:["nothing","chinese","kanji","japanese","orange-square"],char:"🈚",fitzpatrick_scale:false,category:"symbols"},u7533:{keywords:["chinese","japanese","kanji","orange-square"],char:"🈸",fitzpatrick_scale:false,category:"symbols"},u55b6:{keywords:["japanese","opening hours","orange-square"],char:"🈺",fitzpatrick_scale:false,category:"symbols"},u6708:{keywords:["chinese","month","moon","japanese","orange-square","kanji"],char:"🈷️",fitzpatrick_scale:false,category:"symbols"},eight_pointed_black_star:{keywords:["orange-square","shape","polygon"],char:"✴️",fitzpatrick_scale:false,category:"symbols"},vs:{keywords:["words","orange-square"],char:"🆚",fitzpatrick_scale:false,category:"symbols"},accept:{keywords:["ok","good","chinese","kanji","agree","yes","orange-circle"],char:"🉑",fitzpatrick_scale:false,category:"symbols"},white_flower:{keywords:["japanese","spring"],char:"💮",fitzpatrick_scale:false,category:"symbols"},ideograph_advantage:{keywords:["chinese","kanji","obtain","get","circle"],char:"🉐",fitzpatrick_scale:false,category:"symbols"},secret:{keywords:["privacy","chinese","sshh","kanji","red-circle"],char:"㊙️",fitzpatrick_scale:false,category:"symbols"},congratulations:{keywords:["chinese","kanji","japanese","red-circle"],char:"㊗️",fitzpatrick_scale:false,category:"symbols"},u5408:{keywords:["japanese","chinese","join","kanji","red-square"],char:"🈴",fitzpatrick_scale:false,category:"symbols"},u6e80:{keywords:["full","chinese","japanese","red-square","kanji"],char:"🈵",fitzpatrick_scale:false,category:"symbols"},u7981:{keywords:["kanji","japanese","chinese","forbidden","limit","restricted","red-square"],char:"🈲",fitzpatrick_scale:false,category:"symbols"},a:{keywords:["red-square","alphabet","letter"],char:"🅰️",fitzpatrick_scale:false,category:"symbols"},b:{keywords:["red-square","alphabet","letter"],char:"🅱️",fitzpatrick_scale:false,category:"symbols"},ab:{keywords:["red-square","alphabet"],char:"🆎",fitzpatrick_scale:false,category:"symbols"},cl:{keywords:["alphabet","words","red-square"],char:"🆑",fitzpatrick_scale:false,category:"symbols"},o2:{keywords:["alphabet","red-square","letter"],char:"🅾️",fitzpatrick_scale:false,category:"symbols"},sos:{keywords:["help","red-square","words","emergency","911"],char:"🆘",fitzpatrick_scale:false,category:"symbols"},no_entry:{keywords:["limit","security","privacy","bad","denied","stop","circle"],char:"⛔",fitzpatrick_scale:false,category:"symbols"},name_badge:{keywords:["fire","forbid"],char:"📛",fitzpatrick_scale:false,category:"symbols"},no_entry_sign:{keywords:["forbid","stop","limit","denied","disallow","circle"],char:"🚫",fitzpatrick_scale:false,category:"symbols"},x:{keywords:["no","delete","remove","cancel","red"],char:"❌",fitzpatrick_scale:false,category:"symbols"},o:{keywords:["circle","round"],char:"⭕",fitzpatrick_scale:false,category:"symbols"},stop_sign:{keywords:["stop"],char:"🛑",fitzpatrick_scale:false,category:"symbols"},anger:{keywords:["angry","mad"],char:"💢",fitzpatrick_scale:false,category:"symbols"},hotsprings:{keywords:["bath","warm","relax"],char:"♨️",fitzpatrick_scale:false,category:"symbols"},no_pedestrians:{keywords:["rules","crossing","walking","circle"],char:"🚷",fitzpatrick_scale:false,category:"symbols"},do_not_litter:{keywords:["trash","bin","garbage","circle"],char:"🚯",fitzpatrick_scale:false,category:"symbols"},no_bicycles:{keywords:["cyclist","prohibited","circle"],char:"🚳",fitzpatrick_scale:false,category:"symbols"},"non-potable_water":{keywords:["drink","faucet","tap","circle"],char:"🚱",fitzpatrick_scale:false,category:"symbols"},underage:{keywords:["18","drink","pub","night","minor","circle"],char:"🔞",fitzpatrick_scale:false,category:"symbols"},no_mobile_phones:{keywords:["iphone","mute","circle"],char:"📵",fitzpatrick_scale:false,category:"symbols"},exclamation:{keywords:["heavy_exclamation_mark","danger","surprise","punctuation","wow","warning"],char:"❗",fitzpatrick_scale:false,category:"symbols"},grey_exclamation:{keywords:["surprise","punctuation","gray","wow","warning"],char:"❕",fitzpatrick_scale:false,category:"symbols"},question:{keywords:["doubt","confused"],char:"❓",fitzpatrick_scale:false,category:"symbols"},grey_question:{keywords:["doubts","gray","huh","confused"],char:"❔",fitzpatrick_scale:false,category:"symbols"},bangbang:{keywords:["exclamation","surprise"],char:"‼️",fitzpatrick_scale:false,category:"symbols"},interrobang:{keywords:["wat","punctuation","surprise"],char:"⁉️",fitzpatrick_scale:false,category:"symbols"},100:{keywords:["score","perfect","numbers","century","exam","quiz","test","pass","hundred"],char:"💯",fitzpatrick_scale:false,category:"symbols"},low_brightness:{keywords:["sun","afternoon","warm","summer"],char:"🔅",fitzpatrick_scale:false,category:"symbols"},high_brightness:{keywords:["sun","light"],char:"🔆",fitzpatrick_scale:false,category:"symbols"},trident:{keywords:["weapon","spear"],char:"🔱",fitzpatrick_scale:false,category:"symbols"},fleur_de_lis:{keywords:["decorative","scout"],char:"⚜",fitzpatrick_scale:false,category:"symbols"},part_alternation_mark:{keywords:["graph","presentation","stats","business","economics","bad"],char:"〽️",fitzpatrick_scale:false,category:"symbols"},warning:{keywords:["exclamation","wip","alert","error","problem","issue"],char:"⚠️",fitzpatrick_scale:false,category:"symbols"},children_crossing:{keywords:["school","warning","danger","sign","driving","yellow-diamond"],char:"🚸",fitzpatrick_scale:false,category:"symbols"},beginner:{keywords:["badge","shield"],char:"🔰",fitzpatrick_scale:false,category:"symbols"},recycle:{keywords:["arrow","environment","garbage","trash"],char:"♻️",fitzpatrick_scale:false,category:"symbols"},u6307:{keywords:["chinese","point","green-square","kanji"],char:"🈯",fitzpatrick_scale:false,category:"symbols"},chart:{keywords:["green-square","graph","presentation","stats"],char:"💹",fitzpatrick_scale:false,category:"symbols"},sparkle:{keywords:["stars","green-square","awesome","good","fireworks"],char:"❇️",fitzpatrick_scale:false,category:"symbols"},eight_spoked_asterisk:{keywords:["star","sparkle","green-square"],char:"✳️",fitzpatrick_scale:false,category:"symbols"},negative_squared_cross_mark:{keywords:["x","green-square","no","deny"],char:"❎",fitzpatrick_scale:false,category:"symbols"},white_check_mark:{keywords:["green-square","ok","agree","vote","election","answer","tick"],char:"✅",fitzpatrick_scale:false,category:"symbols"},diamond_shape_with_a_dot_inside:{keywords:["jewel","blue","gem","crystal","fancy"],char:"💠",fitzpatrick_scale:false,category:"symbols"},cyclone:{keywords:["weather","swirl","blue","cloud","vortex","spiral","whirlpool","spin","tornado","hurricane","typhoon"],char:"🌀",fitzpatrick_scale:false,category:"symbols"},loop:{keywords:["tape","cassette"],char:"➿",fitzpatrick_scale:false,category:"symbols"},globe_with_meridians:{keywords:["earth","international","world","internet","interweb","i18n"],char:"🌐",fitzpatrick_scale:false,category:"symbols"},m:{keywords:["alphabet","blue-circle","letter"],char:"Ⓜ️",fitzpatrick_scale:false,category:"symbols"},atm:{keywords:["money","sales","cash","blue-square","payment","bank"],char:"🏧",fitzpatrick_scale:false,category:"symbols"},sa:{keywords:["japanese","blue-square","katakana"],char:"🈂️",fitzpatrick_scale:false,category:"symbols"},passport_control:{keywords:["custom","blue-square"],char:"🛂",fitzpatrick_scale:false,category:"symbols"},customs:{keywords:["passport","border","blue-square"],char:"🛃",fitzpatrick_scale:false,category:"symbols"},baggage_claim:{keywords:["blue-square","airport","transport"],char:"🛄",fitzpatrick_scale:false,category:"symbols"},left_luggage:{keywords:["blue-square","travel"],char:"🛅",fitzpatrick_scale:false,category:"symbols"},wheelchair:{keywords:["blue-square","disabled","a11y","accessibility"],char:"♿",fitzpatrick_scale:false,category:"symbols"},no_smoking:{keywords:["cigarette","blue-square","smell","smoke"],char:"🚭",fitzpatrick_scale:false,category:"symbols"},wc:{keywords:["toilet","restroom","blue-square"],char:"🚾",fitzpatrick_scale:false,category:"symbols"},parking:{keywords:["cars","blue-square","alphabet","letter"],char:"🅿️",fitzpatrick_scale:false,category:"symbols"},potable_water:{keywords:["blue-square","liquid","restroom","cleaning","faucet"],char:"🚰",fitzpatrick_scale:false,category:"symbols"},mens:{keywords:["toilet","restroom","wc","blue-square","gender","male"],char:"🚹",fitzpatrick_scale:false,category:"symbols"},womens:{keywords:["purple-square","woman","female","toilet","loo","restroom","gender"],char:"🚺",fitzpatrick_scale:false,category:"symbols"},baby_symbol:{keywords:["orange-square","child"],char:"🚼",fitzpatrick_scale:false,category:"symbols"},restroom:{keywords:["blue-square","toilet","refresh","wc","gender"],char:"🚻",fitzpatrick_scale:false,category:"symbols"},put_litter_in_its_place:{keywords:["blue-square","sign","human","info"],char:"🚮",fitzpatrick_scale:false,category:"symbols"},cinema:{keywords:["blue-square","record","film","movie","curtain","stage","theater"],char:"🎦",fitzpatrick_scale:false,category:"symbols"},signal_strength:{keywords:["blue-square","reception","phone","internet","connection","wifi","bluetooth","bars"],char:"📶",fitzpatrick_scale:false,category:"symbols"},koko:{keywords:["blue-square","here","katakana","japanese","destination"],char:"🈁",fitzpatrick_scale:false,category:"symbols"},ng:{keywords:["blue-square","words","shape","icon"],char:"🆖",fitzpatrick_scale:false,category:"symbols"},ok:{keywords:["good","agree","yes","blue-square"],char:"🆗",fitzpatrick_scale:false,category:"symbols"},up:{keywords:["blue-square","above","high"],char:"🆙",fitzpatrick_scale:false,category:"symbols"},cool:{keywords:["words","blue-square"],char:"🆒",fitzpatrick_scale:false,category:"symbols"},new:{keywords:["blue-square","words","start"],char:"🆕",fitzpatrick_scale:false,category:"symbols"},free:{keywords:["blue-square","words"],char:"🆓",fitzpatrick_scale:false,category:"symbols"},zero:{keywords:["0","numbers","blue-square","null"],char:"0️⃣",fitzpatrick_scale:false,category:"symbols"},one:{keywords:["blue-square","numbers","1"],char:"1️⃣",fitzpatrick_scale:false,category:"symbols"},two:{keywords:["numbers","2","prime","blue-square"],char:"2️⃣",fitzpatrick_scale:false,category:"symbols"},three:{keywords:["3","numbers","prime","blue-square"],char:"3️⃣",fitzpatrick_scale:false,category:"symbols"},four:{keywords:["4","numbers","blue-square"],char:"4️⃣",fitzpatrick_scale:false,category:"symbols"},five:{keywords:["5","numbers","blue-square","prime"],char:"5️⃣",fitzpatrick_scale:false,category:"symbols"},six:{keywords:["6","numbers","blue-square"],char:"6️⃣",fitzpatrick_scale:false,category:"symbols"},seven:{keywords:["7","numbers","blue-square","prime"],char:"7️⃣",fitzpatrick_scale:false,category:"symbols"},eight:{keywords:["8","blue-square","numbers"],char:"8️⃣",fitzpatrick_scale:false,category:"symbols"},nine:{keywords:["blue-square","numbers","9"],char:"9️⃣",fitzpatrick_scale:false,category:"symbols"},keycap_ten:{keywords:["numbers","10","blue-square"],char:"🔟",fitzpatrick_scale:false,category:"symbols"},asterisk:{keywords:["star","keycap"],char:"*⃣",fitzpatrick_scale:false,category:"symbols"},1234:{keywords:["numbers","blue-square"],char:"🔢",fitzpatrick_scale:false,category:"symbols"},eject_button:{keywords:["blue-square"],char:"⏏️",fitzpatrick_scale:false,category:"symbols"},arrow_forward:{keywords:["blue-square","right","direction","play"],char:"▶️",fitzpatrick_scale:false,category:"symbols"},pause_button:{keywords:["pause","blue-square"],char:"⏸",fitzpatrick_scale:false,category:"symbols"},next_track_button:{keywords:["forward","next","blue-square"],char:"⏭",fitzpatrick_scale:false,category:"symbols"},stop_button:{keywords:["blue-square"],char:"⏹",fitzpatrick_scale:false,category:"symbols"},record_button:{keywords:["blue-square"],char:"⏺",fitzpatrick_scale:false,category:"symbols"},play_or_pause_button:{keywords:["blue-square","play","pause"],char:"⏯",fitzpatrick_scale:false,category:"symbols"},previous_track_button:{keywords:["backward"],char:"⏮",fitzpatrick_scale:false,category:"symbols"},fast_forward:{keywords:["blue-square","play","speed","continue"],char:"⏩",fitzpatrick_scale:false,category:"symbols"},rewind:{keywords:["play","blue-square"],char:"⏪",fitzpatrick_scale:false,category:"symbols"},twisted_rightwards_arrows:{keywords:["blue-square","shuffle","music","random"],char:"🔀",fitzpatrick_scale:false,category:"symbols"},repeat:{keywords:["loop","record"],char:"🔁",fitzpatrick_scale:false,category:"symbols"},repeat_one:{keywords:["blue-square","loop"],char:"🔂",fitzpatrick_scale:false,category:"symbols"},arrow_backward:{keywords:["blue-square","left","direction"],char:"◀️",fitzpatrick_scale:false,category:"symbols"},arrow_up_small:{keywords:["blue-square","triangle","direction","point","forward","top"],char:"🔼",fitzpatrick_scale:false,category:"symbols"},arrow_down_small:{keywords:["blue-square","direction","bottom"],char:"🔽",fitzpatrick_scale:false,category:"symbols"},arrow_double_up:{keywords:["blue-square","direction","top"],char:"⏫",fitzpatrick_scale:false,category:"symbols"},arrow_double_down:{keywords:["blue-square","direction","bottom"],char:"⏬",fitzpatrick_scale:false,category:"symbols"},arrow_right:{keywords:["blue-square","next"],char:"➡️",fitzpatrick_scale:false,category:"symbols"},arrow_left:{keywords:["blue-square","previous","back"],char:"⬅️",fitzpatrick_scale:false,category:"symbols"},arrow_up:{keywords:["blue-square","continue","top","direction"],char:"⬆️",fitzpatrick_scale:false,category:"symbols"},arrow_down:{keywords:["blue-square","direction","bottom"],char:"⬇️",fitzpatrick_scale:false,category:"symbols"},arrow_upper_right:{keywords:["blue-square","point","direction","diagonal","northeast"],char:"↗️",fitzpatrick_scale:false,category:"symbols"},arrow_lower_right:{keywords:["blue-square","direction","diagonal","southeast"],char:"↘️",fitzpatrick_scale:false,category:"symbols"},arrow_lower_left:{keywords:["blue-square","direction","diagonal","southwest"],char:"↙️",fitzpatrick_scale:false,category:"symbols"},arrow_upper_left:{keywords:["blue-square","point","direction","diagonal","northwest"],char:"↖️",fitzpatrick_scale:false,category:"symbols"},arrow_up_down:{keywords:["blue-square","direction","way","vertical"],char:"↕️",fitzpatrick_scale:false,category:"symbols"},left_right_arrow:{keywords:["shape","direction","horizontal","sideways"],char:"↔️",fitzpatrick_scale:false,category:"symbols"},arrows_counterclockwise:{keywords:["blue-square","sync","cycle"],char:"🔄",fitzpatrick_scale:false,category:"symbols"},arrow_right_hook:{keywords:["blue-square","return","rotate","direction"],char:"↪️",fitzpatrick_scale:false,category:"symbols"},leftwards_arrow_with_hook:{keywords:["back","return","blue-square","undo","enter"],char:"↩️",fitzpatrick_scale:false,category:"symbols"},arrow_heading_up:{keywords:["blue-square","direction","top"],char:"⤴️",fitzpatrick_scale:false,category:"symbols"},arrow_heading_down:{keywords:["blue-square","direction","bottom"],char:"⤵️",fitzpatrick_scale:false,category:"symbols"},hash:{keywords:["symbol","blue-square","twitter"],char:"#️⃣",fitzpatrick_scale:false,category:"symbols"},information_source:{keywords:["blue-square","alphabet","letter"],char:"ℹ️",fitzpatrick_scale:false,category:"symbols"},abc:{keywords:["blue-square","alphabet"],char:"🔤",fitzpatrick_scale:false,category:"symbols"},abcd:{keywords:["blue-square","alphabet"],char:"🔡",fitzpatrick_scale:false,category:"symbols"},capital_abcd:{keywords:["alphabet","words","blue-square"],char:"🔠",fitzpatrick_scale:false,category:"symbols"},symbols:{keywords:["blue-square","music","note","ampersand","percent","glyphs","characters"],char:"🔣",fitzpatrick_scale:false,category:"symbols"},musical_note:{keywords:["score","tone","sound"],char:"🎵",fitzpatrick_scale:false,category:"symbols"},notes:{keywords:["music","score"],char:"🎶",fitzpatrick_scale:false,category:"symbols"},wavy_dash:{keywords:["draw","line","moustache","mustache","squiggle","scribble"],char:"〰️",fitzpatrick_scale:false,category:"symbols"},curly_loop:{keywords:["scribble","draw","shape","squiggle"],char:"➰",fitzpatrick_scale:false,category:"symbols"},heavy_check_mark:{keywords:["ok","nike","answer","yes","tick"],char:"✔️",fitzpatrick_scale:false,category:"symbols"},arrows_clockwise:{keywords:["sync","cycle","round","repeat"],char:"🔃",fitzpatrick_scale:false,category:"symbols"},heavy_plus_sign:{keywords:["math","calculation","addition","more","increase"],char:"➕",fitzpatrick_scale:false,category:"symbols"},heavy_minus_sign:{keywords:["math","calculation","subtract","less"],char:"➖",fitzpatrick_scale:false,category:"symbols"},heavy_division_sign:{keywords:["divide","math","calculation"],char:"➗",fitzpatrick_scale:false,category:"symbols"},heavy_multiplication_x:{keywords:["math","calculation"],char:"✖️",fitzpatrick_scale:false,category:"symbols"},infinity:{keywords:["forever"],char:"♾",fitzpatrick_scale:false,category:"symbols"},heavy_dollar_sign:{keywords:["money","sales","payment","currency","buck"],char:"💲",fitzpatrick_scale:false,category:"symbols"},currency_exchange:{keywords:["money","sales","dollar","travel"],char:"💱",fitzpatrick_scale:false,category:"symbols"},copyright:{keywords:["ip","license","circle","law","legal"],char:"©️",fitzpatrick_scale:false,category:"symbols"},registered:{keywords:["alphabet","circle"],char:"®️",fitzpatrick_scale:false,category:"symbols"},tm:{keywords:["trademark","brand","law","legal"],char:"™️",fitzpatrick_scale:false,category:"symbols"},end:{keywords:["words","arrow"],char:"🔚",fitzpatrick_scale:false,category:"symbols"},back:{keywords:["arrow","words","return"],char:"🔙",fitzpatrick_scale:false,category:"symbols"},on:{keywords:["arrow","words"],char:"🔛",fitzpatrick_scale:false,category:"symbols"},top:{keywords:["words","blue-square"],char:"🔝",fitzpatrick_scale:false,category:"symbols"},soon:{keywords:["arrow","words"],char:"🔜",fitzpatrick_scale:false,category:"symbols"},ballot_box_with_check:{keywords:["ok","agree","confirm","black-square","vote","election","yes","tick"],char:"☑️",fitzpatrick_scale:false,category:"symbols"},radio_button:{keywords:["input","old","music","circle"],char:"🔘",fitzpatrick_scale:false,category:"symbols"},white_circle:{keywords:["shape","round"],char:"⚪",fitzpatrick_scale:false,category:"symbols"},black_circle:{keywords:["shape","button","round"],char:"⚫",fitzpatrick_scale:false,category:"symbols"},red_circle:{keywords:["shape","error","danger"],char:"🔴",fitzpatrick_scale:false,category:"symbols"},large_blue_circle:{keywords:["shape","icon","button"],char:"🔵",fitzpatrick_scale:false,category:"symbols"},small_orange_diamond:{keywords:["shape","jewel","gem"],char:"🔸",fitzpatrick_scale:false,category:"symbols"},small_blue_diamond:{keywords:["shape","jewel","gem"],char:"🔹",fitzpatrick_scale:false,category:"symbols"},large_orange_diamond:{keywords:["shape","jewel","gem"],char:"🔶",fitzpatrick_scale:false,category:"symbols"},large_blue_diamond:{keywords:["shape","jewel","gem"],char:"🔷",fitzpatrick_scale:false,category:"symbols"},small_red_triangle:{keywords:["shape","direction","up","top"],char:"🔺",fitzpatrick_scale:false,category:"symbols"},black_small_square:{keywords:["shape","icon"],char:"▪️",fitzpatrick_scale:false,category:"symbols"},white_small_square:{keywords:["shape","icon"],char:"▫️",fitzpatrick_scale:false,category:"symbols"},black_large_square:{keywords:["shape","icon","button"],char:"⬛",fitzpatrick_scale:false,category:"symbols"},white_large_square:{keywords:["shape","icon","stone","button"],char:"⬜",fitzpatrick_scale:false,category:"symbols"},small_red_triangle_down:{keywords:["shape","direction","bottom"],char:"🔻",fitzpatrick_scale:false,category:"symbols"},black_medium_square:{keywords:["shape","button","icon"],char:"◼️",fitzpatrick_scale:false,category:"symbols"},white_medium_square:{keywords:["shape","stone","icon"],char:"◻️",fitzpatrick_scale:false,category:"symbols"},black_medium_small_square:{keywords:["icon","shape","button"],char:"◾",fitzpatrick_scale:false,category:"symbols"},white_medium_small_square:{keywords:["shape","stone","icon","button"],char:"◽",fitzpatrick_scale:false,category:"symbols"},black_square_button:{keywords:["shape","input","frame"],char:"🔲",fitzpatrick_scale:false,category:"symbols"},white_square_button:{keywords:["shape","input"],char:"🔳",fitzpatrick_scale:false,category:"symbols"},speaker:{keywords:["sound","volume","silence","broadcast"],char:"🔈",fitzpatrick_scale:false,category:"symbols"},sound:{keywords:["volume","speaker","broadcast"],char:"🔉",fitzpatrick_scale:false,category:"symbols"},loud_sound:{keywords:["volume","noise","noisy","speaker","broadcast"],char:"🔊",fitzpatrick_scale:false,category:"symbols"},mute:{keywords:["sound","volume","silence","quiet"],char:"🔇",fitzpatrick_scale:false,category:"symbols"},mega:{keywords:["sound","speaker","volume"],char:"📣",fitzpatrick_scale:false,category:"symbols"},loudspeaker:{keywords:["volume","sound"],char:"📢",fitzpatrick_scale:false,category:"symbols"},bell:{keywords:["sound","notification","christmas","xmas","chime"],char:"🔔",fitzpatrick_scale:false,category:"symbols"},no_bell:{keywords:["sound","volume","mute","quiet","silent"],char:"🔕",fitzpatrick_scale:false,category:"symbols"},black_joker:{keywords:["poker","cards","game","play","magic"],char:"🃏",fitzpatrick_scale:false,category:"symbols"},mahjong:{keywords:["game","play","chinese","kanji"],char:"🀄",fitzpatrick_scale:false,category:"symbols"},spades:{keywords:["poker","cards","suits","magic"],char:"♠️",fitzpatrick_scale:false,category:"symbols"},clubs:{keywords:["poker","cards","magic","suits"],char:"♣️",fitzpatrick_scale:false,category:"symbols"},hearts:{keywords:["poker","cards","magic","suits"],char:"♥️",fitzpatrick_scale:false,category:"symbols"},diamonds:{keywords:["poker","cards","magic","suits"],char:"♦️",fitzpatrick_scale:false,category:"symbols"},flower_playing_cards:{keywords:["game","sunset","red"],char:"🎴",fitzpatrick_scale:false,category:"symbols"},thought_balloon:{keywords:["bubble","cloud","speech","thinking","dream"],char:"💭",fitzpatrick_scale:false,category:"symbols"},right_anger_bubble:{keywords:["caption","speech","thinking","mad"],char:"🗯",fitzpatrick_scale:false,category:"symbols"},speech_balloon:{keywords:["bubble","words","message","talk","chatting"],char:"💬",fitzpatrick_scale:false,category:"symbols"},left_speech_bubble:{keywords:["words","message","talk","chatting"],char:"🗨",fitzpatrick_scale:false,category:"symbols"},clock1:{keywords:["time","late","early","schedule"],char:"🕐",fitzpatrick_scale:false,category:"symbols"},clock2:{keywords:["time","late","early","schedule"],char:"🕑",fitzpatrick_scale:false,category:"symbols"},clock3:{keywords:["time","late","early","schedule"],char:"🕒",fitzpatrick_scale:false,category:"symbols"},clock4:{keywords:["time","late","early","schedule"],char:"🕓",fitzpatrick_scale:false,category:"symbols"},clock5:{keywords:["time","late","early","schedule"],char:"🕔",fitzpatrick_scale:false,category:"symbols"},clock6:{keywords:["time","late","early","schedule","dawn","dusk"],char:"🕕",fitzpatrick_scale:false,category:"symbols"},clock7:{keywords:["time","late","early","schedule"],char:"🕖",fitzpatrick_scale:false,category:"symbols"},clock8:{keywords:["time","late","early","schedule"],char:"🕗",fitzpatrick_scale:false,category:"symbols"},clock9:{keywords:["time","late","early","schedule"],char:"🕘",fitzpatrick_scale:false,category:"symbols"},clock10:{keywords:["time","late","early","schedule"],char:"🕙",fitzpatrick_scale:false,category:"symbols"},clock11:{keywords:["time","late","early","schedule"],char:"🕚",fitzpatrick_scale:false,category:"symbols"},clock12:{keywords:["time","noon","midnight","midday","late","early","schedule"],char:"🕛",fitzpatrick_scale:false,category:"symbols"},clock130:{keywords:["time","late","early","schedule"],char:"🕜",fitzpatrick_scale:false,category:"symbols"},clock230:{keywords:["time","late","early","schedule"],char:"🕝",fitzpatrick_scale:false,category:"symbols"},clock330:{keywords:["time","late","early","schedule"],char:"🕞",fitzpatrick_scale:false,category:"symbols"},clock430:{keywords:["time","late","early","schedule"],char:"🕟",fitzpatrick_scale:false,category:"symbols"},clock530:{keywords:["time","late","early","schedule"],char:"🕠",fitzpatrick_scale:false,category:"symbols"},clock630:{keywords:["time","late","early","schedule"],char:"🕡",fitzpatrick_scale:false,category:"symbols"},clock730:{keywords:["time","late","early","schedule"],char:"🕢",fitzpatrick_scale:false,category:"symbols"},clock830:{keywords:["time","late","early","schedule"],char:"🕣",fitzpatrick_scale:false,category:"symbols"},clock930:{keywords:["time","late","early","schedule"],char:"🕤",fitzpatrick_scale:false,category:"symbols"},clock1030:{keywords:["time","late","early","schedule"],char:"🕥",fitzpatrick_scale:false,category:"symbols"},clock1130:{keywords:["time","late","early","schedule"],char:"🕦",fitzpatrick_scale:false,category:"symbols"},clock1230:{keywords:["time","late","early","schedule"],char:"🕧",fitzpatrick_scale:false,category:"symbols"},afghanistan:{keywords:["af","flag","nation","country","banner"],char:"🇦🇫",fitzpatrick_scale:false,category:"flags"},aland_islands:{keywords:["Åland","islands","flag","nation","country","banner"],char:"🇦🇽",fitzpatrick_scale:false,category:"flags"},albania:{keywords:["al","flag","nation","country","banner"],char:"🇦🇱",fitzpatrick_scale:false,category:"flags"},algeria:{keywords:["dz","flag","nation","country","banner"],char:"🇩🇿",fitzpatrick_scale:false,category:"flags"},american_samoa:{keywords:["american","ws","flag","nation","country","banner"],char:"🇦🇸",fitzpatrick_scale:false,category:"flags"},andorra:{keywords:["ad","flag","nation","country","banner"],char:"🇦🇩",fitzpatrick_scale:false,category:"flags"},angola:{keywords:["ao","flag","nation","country","banner"],char:"🇦🇴",fitzpatrick_scale:false,category:"flags"},anguilla:{keywords:["ai","flag","nation","country","banner"],char:"🇦🇮",fitzpatrick_scale:false,category:"flags"},antarctica:{keywords:["aq","flag","nation","country","banner"],char:"🇦🇶",fitzpatrick_scale:false,category:"flags"},antigua_barbuda:{keywords:["antigua","barbuda","flag","nation","country","banner"],char:"🇦🇬",fitzpatrick_scale:false,category:"flags"},argentina:{keywords:["ar","flag","nation","country","banner"],char:"🇦🇷",fitzpatrick_scale:false,category:"flags"},armenia:{keywords:["am","flag","nation","country","banner"],char:"🇦🇲",fitzpatrick_scale:false,category:"flags"},aruba:{keywords:["aw","flag","nation","country","banner"],char:"🇦🇼",fitzpatrick_scale:false,category:"flags"},australia:{keywords:["au","flag","nation","country","banner"],char:"🇦🇺",fitzpatrick_scale:false,category:"flags"},austria:{keywords:["at","flag","nation","country","banner"],char:"🇦🇹",fitzpatrick_scale:false,category:"flags"},azerbaijan:{keywords:["az","flag","nation","country","banner"],char:"🇦🇿",fitzpatrick_scale:false,category:"flags"},bahamas:{keywords:["bs","flag","nation","country","banner"],char:"🇧🇸",fitzpatrick_scale:false,category:"flags"},bahrain:{keywords:["bh","flag","nation","country","banner"],char:"🇧🇭",fitzpatrick_scale:false,category:"flags"},bangladesh:{keywords:["bd","flag","nation","country","banner"],char:"🇧🇩",fitzpatrick_scale:false,category:"flags"},barbados:{keywords:["bb","flag","nation","country","banner"],char:"🇧🇧",fitzpatrick_scale:false,category:"flags"},belarus:{keywords:["by","flag","nation","country","banner"],char:"🇧🇾",fitzpatrick_scale:false,category:"flags"},belgium:{keywords:["be","flag","nation","country","banner"],char:"🇧🇪",fitzpatrick_scale:false,category:"flags"},belize:{keywords:["bz","flag","nation","country","banner"],char:"🇧🇿",fitzpatrick_scale:false,category:"flags"},benin:{keywords:["bj","flag","nation","country","banner"],char:"🇧🇯",fitzpatrick_scale:false,category:"flags"},bermuda:{keywords:["bm","flag","nation","country","banner"],char:"🇧🇲",fitzpatrick_scale:false,category:"flags"},bhutan:{keywords:["bt","flag","nation","country","banner"],char:"🇧🇹",fitzpatrick_scale:false,category:"flags"},bolivia:{keywords:["bo","flag","nation","country","banner"],char:"🇧🇴",fitzpatrick_scale:false,category:"flags"},caribbean_netherlands:{keywords:["bonaire","flag","nation","country","banner"],char:"🇧🇶",fitzpatrick_scale:false,category:"flags"},bosnia_herzegovina:{keywords:["bosnia","herzegovina","flag","nation","country","banner"],char:"🇧🇦",fitzpatrick_scale:false,category:"flags"},botswana:{keywords:["bw","flag","nation","country","banner"],char:"🇧🇼",fitzpatrick_scale:false,category:"flags"},brazil:{keywords:["br","flag","nation","country","banner"],char:"🇧🇷",fitzpatrick_scale:false,category:"flags"},british_indian_ocean_territory:{keywords:["british","indian","ocean","territory","flag","nation","country","banner"],char:"🇮🇴",fitzpatrick_scale:false,category:"flags"},british_virgin_islands:{keywords:["british","virgin","islands","bvi","flag","nation","country","banner"],char:"🇻🇬",fitzpatrick_scale:false,category:"flags"},brunei:{keywords:["bn","darussalam","flag","nation","country","banner"],char:"🇧🇳",fitzpatrick_scale:false,category:"flags"},bulgaria:{keywords:["bg","flag","nation","country","banner"],char:"🇧🇬",fitzpatrick_scale:false,category:"flags"},burkina_faso:{keywords:["burkina","faso","flag","nation","country","banner"],char:"🇧🇫",fitzpatrick_scale:false,category:"flags"},burundi:{keywords:["bi","flag","nation","country","banner"],char:"🇧🇮",fitzpatrick_scale:false,category:"flags"},cape_verde:{keywords:["cabo","verde","flag","nation","country","banner"],char:"🇨🇻",fitzpatrick_scale:false,category:"flags"},cambodia:{keywords:["kh","flag","nation","country","banner"],char:"🇰🇭",fitzpatrick_scale:false,category:"flags"},cameroon:{keywords:["cm","flag","nation","country","banner"],char:"🇨🇲",fitzpatrick_scale:false,category:"flags"},canada:{keywords:["ca","flag","nation","country","banner"],char:"🇨🇦",fitzpatrick_scale:false,category:"flags"},canary_islands:{keywords:["canary","islands","flag","nation","country","banner"],char:"🇮🇨",fitzpatrick_scale:false,category:"flags"},cayman_islands:{keywords:["cayman","islands","flag","nation","country","banner"],char:"🇰🇾",fitzpatrick_scale:false,category:"flags"},central_african_republic:{keywords:["central","african","republic","flag","nation","country","banner"],char:"🇨🇫",fitzpatrick_scale:false,category:"flags"},chad:{keywords:["td","flag","nation","country","banner"],char:"🇹🇩",fitzpatrick_scale:false,category:"flags"},chile:{keywords:["flag","nation","country","banner"],char:"🇨🇱",fitzpatrick_scale:false,category:"flags"},cn:{keywords:["china","chinese","prc","flag","country","nation","banner"],char:"🇨🇳",fitzpatrick_scale:false,category:"flags"},christmas_island:{keywords:["christmas","island","flag","nation","country","banner"],char:"🇨🇽",fitzpatrick_scale:false,category:"flags"},cocos_islands:{keywords:["cocos","keeling","islands","flag","nation","country","banner"],char:"🇨🇨",fitzpatrick_scale:false,category:"flags"},colombia:{keywords:["co","flag","nation","country","banner"],char:"🇨🇴",fitzpatrick_scale:false,category:"flags"},comoros:{keywords:["km","flag","nation","country","banner"],char:"🇰🇲",fitzpatrick_scale:false,category:"flags"},congo_brazzaville:{keywords:["congo","flag","nation","country","banner"],char:"🇨🇬",fitzpatrick_scale:false,category:"flags"},congo_kinshasa:{keywords:["congo","democratic","republic","flag","nation","country","banner"],char:"🇨🇩",fitzpatrick_scale:false,category:"flags"},cook_islands:{keywords:["cook","islands","flag","nation","country","banner"],char:"🇨🇰",fitzpatrick_scale:false,category:"flags"},costa_rica:{keywords:["costa","rica","flag","nation","country","banner"],char:"🇨🇷",fitzpatrick_scale:false,category:"flags"},croatia:{keywords:["hr","flag","nation","country","banner"],char:"🇭🇷",fitzpatrick_scale:false,category:"flags"},cuba:{keywords:["cu","flag","nation","country","banner"],char:"🇨🇺",fitzpatrick_scale:false,category:"flags"},curacao:{keywords:["curaçao","flag","nation","country","banner"],char:"🇨🇼",fitzpatrick_scale:false,category:"flags"},cyprus:{keywords:["cy","flag","nation","country","banner"],char:"🇨🇾",fitzpatrick_scale:false,category:"flags"},czech_republic:{keywords:["cz","flag","nation","country","banner"],char:"🇨🇿",fitzpatrick_scale:false,category:"flags"},denmark:{keywords:["dk","flag","nation","country","banner"],char:"🇩🇰",fitzpatrick_scale:false,category:"flags"},djibouti:{keywords:["dj","flag","nation","country","banner"],char:"🇩🇯",fitzpatrick_scale:false,category:"flags"},dominica:{keywords:["dm","flag","nation","country","banner"],char:"🇩🇲",fitzpatrick_scale:false,category:"flags"},dominican_republic:{keywords:["dominican","republic","flag","nation","country","banner"],char:"🇩🇴",fitzpatrick_scale:false,category:"flags"},ecuador:{keywords:["ec","flag","nation","country","banner"],char:"🇪🇨",fitzpatrick_scale:false,category:"flags"},egypt:{keywords:["eg","flag","nation","country","banner"],char:"🇪🇬",fitzpatrick_scale:false,category:"flags"},el_salvador:{keywords:["el","salvador","flag","nation","country","banner"],char:"🇸🇻",fitzpatrick_scale:false,category:"flags"},equatorial_guinea:{keywords:["equatorial","gn","flag","nation","country","banner"],char:"🇬🇶",fitzpatrick_scale:false,category:"flags"},eritrea:{keywords:["er","flag","nation","country","banner"],char:"🇪🇷",fitzpatrick_scale:false,category:"flags"},estonia:{keywords:["ee","flag","nation","country","banner"],char:"🇪🇪",fitzpatrick_scale:false,category:"flags"},ethiopia:{keywords:["et","flag","nation","country","banner"],char:"🇪🇹",fitzpatrick_scale:false,category:"flags"},eu:{keywords:["european","union","flag","banner"],char:"🇪🇺",fitzpatrick_scale:false,category:"flags"},falkland_islands:{keywords:["falkland","islands","malvinas","flag","nation","country","banner"],char:"🇫🇰",fitzpatrick_scale:false,category:"flags"},faroe_islands:{keywords:["faroe","islands","flag","nation","country","banner"],char:"🇫🇴",fitzpatrick_scale:false,category:"flags"},fiji:{keywords:["fj","flag","nation","country","banner"],char:"🇫🇯",fitzpatrick_scale:false,category:"flags"},finland:{keywords:["fi","flag","nation","country","banner"],char:"🇫🇮",fitzpatrick_scale:false,category:"flags"},fr:{keywords:["banner","flag","nation","france","french","country"],char:"🇫🇷",fitzpatrick_scale:false,category:"flags"},french_guiana:{keywords:["french","guiana","flag","nation","country","banner"],char:"🇬🇫",fitzpatrick_scale:false,category:"flags"},french_polynesia:{keywords:["french","polynesia","flag","nation","country","banner"],char:"🇵🇫",fitzpatrick_scale:false,category:"flags"},french_southern_territories:{keywords:["french","southern","territories","flag","nation","country","banner"],char:"🇹🇫",fitzpatrick_scale:false,category:"flags"},gabon:{keywords:["ga","flag","nation","country","banner"],char:"🇬🇦",fitzpatrick_scale:false,category:"flags"},gambia:{keywords:["gm","flag","nation","country","banner"],char:"🇬🇲",fitzpatrick_scale:false,category:"flags"},georgia:{keywords:["ge","flag","nation","country","banner"],char:"🇬🇪",fitzpatrick_scale:false,category:"flags"},de:{keywords:["german","nation","flag","country","banner"],char:"🇩🇪",fitzpatrick_scale:false,category:"flags"},ghana:{keywords:["gh","flag","nation","country","banner"],char:"🇬🇭",fitzpatrick_scale:false,category:"flags"},gibraltar:{keywords:["gi","flag","nation","country","banner"],char:"🇬🇮",fitzpatrick_scale:false,category:"flags"},greece:{keywords:["gr","flag","nation","country","banner"],char:"🇬🇷",fitzpatrick_scale:false,category:"flags"},greenland:{keywords:["gl","flag","nation","country","banner"],char:"🇬🇱",fitzpatrick_scale:false,category:"flags"},grenada:{keywords:["gd","flag","nation","country","banner"],char:"🇬🇩",fitzpatrick_scale:false,category:"flags"},guadeloupe:{keywords:["gp","flag","nation","country","banner"],char:"🇬🇵",fitzpatrick_scale:false,category:"flags"},guam:{keywords:["gu","flag","nation","country","banner"],char:"🇬🇺",fitzpatrick_scale:false,category:"flags"},guatemala:{keywords:["gt","flag","nation","country","banner"],char:"🇬🇹",fitzpatrick_scale:false,category:"flags"},guernsey:{keywords:["gg","flag","nation","country","banner"],char:"🇬🇬",fitzpatrick_scale:false,category:"flags"},guinea:{keywords:["gn","flag","nation","country","banner"],char:"🇬🇳",fitzpatrick_scale:false,category:"flags"},guinea_bissau:{keywords:["gw","bissau","flag","nation","country","banner"],char:"🇬🇼",fitzpatrick_scale:false,category:"flags"},guyana:{keywords:["gy","flag","nation","country","banner"],char:"🇬🇾",fitzpatrick_scale:false,category:"flags"},haiti:{keywords:["ht","flag","nation","country","banner"],char:"🇭🇹",fitzpatrick_scale:false,category:"flags"},honduras:{keywords:["hn","flag","nation","country","banner"],char:"🇭🇳",fitzpatrick_scale:false,category:"flags"},hong_kong:{keywords:["hong","kong","flag","nation","country","banner"],char:"🇭🇰",fitzpatrick_scale:false,category:"flags"},hungary:{keywords:["hu","flag","nation","country","banner"],char:"🇭🇺",fitzpatrick_scale:false,category:"flags"},iceland:{keywords:["is","flag","nation","country","banner"],char:"🇮🇸",fitzpatrick_scale:false,category:"flags"},india:{keywords:["in","flag","nation","country","banner"],char:"🇮🇳",fitzpatrick_scale:false,category:"flags"},indonesia:{keywords:["flag","nation","country","banner"],char:"🇮🇩",fitzpatrick_scale:false,category:"flags"},iran:{keywords:["iran,","islamic","republic","flag","nation","country","banner"],char:"🇮🇷",fitzpatrick_scale:false,category:"flags"},iraq:{keywords:["iq","flag","nation","country","banner"],char:"🇮🇶",fitzpatrick_scale:false,category:"flags"},ireland:{keywords:["ie","flag","nation","country","banner"],char:"🇮🇪",fitzpatrick_scale:false,category:"flags"},isle_of_man:{keywords:["isle","man","flag","nation","country","banner"],char:"🇮🇲",fitzpatrick_scale:false,category:"flags"},israel:{keywords:["il","flag","nation","country","banner"],char:"🇮🇱",fitzpatrick_scale:false,category:"flags"},it:{keywords:["italy","flag","nation","country","banner"],char:"🇮🇹",fitzpatrick_scale:false,category:"flags"},cote_divoire:{keywords:["ivory","coast","flag","nation","country","banner"],char:"🇨🇮",fitzpatrick_scale:false,category:"flags"},jamaica:{keywords:["jm","flag","nation","country","banner"],char:"🇯🇲",fitzpatrick_scale:false,category:"flags"},jp:{keywords:["japanese","nation","flag","country","banner"],char:"🇯🇵",fitzpatrick_scale:false,category:"flags"},jersey:{keywords:["je","flag","nation","country","banner"],char:"🇯🇪",fitzpatrick_scale:false,category:"flags"},jordan:{keywords:["jo","flag","nation","country","banner"],char:"🇯🇴",fitzpatrick_scale:false,category:"flags"},kazakhstan:{keywords:["kz","flag","nation","country","banner"],char:"🇰🇿",fitzpatrick_scale:false,category:"flags"},kenya:{keywords:["ke","flag","nation","country","banner"],char:"🇰🇪",fitzpatrick_scale:false,category:"flags"},kiribati:{keywords:["ki","flag","nation","country","banner"],char:"🇰🇮",fitzpatrick_scale:false,category:"flags"},kosovo:{keywords:["xk","flag","nation","country","banner"],char:"🇽🇰",fitzpatrick_scale:false,category:"flags"},kuwait:{keywords:["kw","flag","nation","country","banner"],char:"🇰🇼",fitzpatrick_scale:false,category:"flags"},kyrgyzstan:{keywords:["kg","flag","nation","country","banner"],char:"🇰🇬",fitzpatrick_scale:false,category:"flags"},laos:{keywords:["lao","democratic","republic","flag","nation","country","banner"],char:"🇱🇦",fitzpatrick_scale:false,category:"flags"},latvia:{keywords:["lv","flag","nation","country","banner"],char:"🇱🇻",fitzpatrick_scale:false,category:"flags"},lebanon:{keywords:["lb","flag","nation","country","banner"],char:"🇱🇧",fitzpatrick_scale:false,category:"flags"},lesotho:{keywords:["ls","flag","nation","country","banner"],char:"🇱🇸",fitzpatrick_scale:false,category:"flags"},liberia:{keywords:["lr","flag","nation","country","banner"],char:"🇱🇷",fitzpatrick_scale:false,category:"flags"},libya:{keywords:["ly","flag","nation","country","banner"],char:"🇱🇾",fitzpatrick_scale:false,category:"flags"},liechtenstein:{keywords:["li","flag","nation","country","banner"],char:"🇱🇮",fitzpatrick_scale:false,category:"flags"},lithuania:{keywords:["lt","flag","nation","country","banner"],char:"🇱🇹",fitzpatrick_scale:false,category:"flags"},luxembourg:{keywords:["lu","flag","nation","country","banner"],char:"🇱🇺",fitzpatrick_scale:false,category:"flags"},macau:{keywords:["macao","flag","nation","country","banner"],char:"🇲🇴",fitzpatrick_scale:false,category:"flags"},macedonia:{keywords:["macedonia,","flag","nation","country","banner"],char:"🇲🇰",fitzpatrick_scale:false,category:"flags"},madagascar:{keywords:["mg","flag","nation","country","banner"],char:"🇲🇬",fitzpatrick_scale:false,category:"flags"},malawi:{keywords:["mw","flag","nation","country","banner"],char:"🇲🇼",fitzpatrick_scale:false,category:"flags"},malaysia:{keywords:["my","flag","nation","country","banner"],char:"🇲🇾",fitzpatrick_scale:false,category:"flags"},maldives:{keywords:["mv","flag","nation","country","banner"],char:"🇲🇻",fitzpatrick_scale:false,category:"flags"},mali:{keywords:["ml","flag","nation","country","banner"],char:"🇲🇱",fitzpatrick_scale:false,category:"flags"},malta:{keywords:["mt","flag","nation","country","banner"],char:"🇲🇹",fitzpatrick_scale:false,category:"flags"},marshall_islands:{keywords:["marshall","islands","flag","nation","country","banner"],char:"🇲🇭",fitzpatrick_scale:false,category:"flags"},martinique:{keywords:["mq","flag","nation","country","banner"],char:"🇲🇶",fitzpatrick_scale:false,category:"flags"},mauritania:{keywords:["mr","flag","nation","country","banner"],char:"🇲🇷",fitzpatrick_scale:false,category:"flags"},mauritius:{keywords:["mu","flag","nation","country","banner"],char:"🇲🇺",fitzpatrick_scale:false,category:"flags"},mayotte:{keywords:["yt","flag","nation","country","banner"],char:"🇾🇹",fitzpatrick_scale:false,category:"flags"},mexico:{keywords:["mx","flag","nation","country","banner"],char:"🇲🇽",fitzpatrick_scale:false,category:"flags"},micronesia:{keywords:["micronesia,","federated","states","flag","nation","country","banner"],char:"🇫🇲",fitzpatrick_scale:false,category:"flags"},moldova:{keywords:["moldova,","republic","flag","nation","country","banner"],char:"🇲🇩",fitzpatrick_scale:false,category:"flags"},monaco:{keywords:["mc","flag","nation","country","banner"],char:"🇲🇨",fitzpatrick_scale:false,category:"flags"},mongolia:{keywords:["mn","flag","nation","country","banner"],char:"🇲🇳",fitzpatrick_scale:false,category:"flags"},montenegro:{keywords:["me","flag","nation","country","banner"],char:"🇲🇪",fitzpatrick_scale:false,category:"flags"},montserrat:{keywords:["ms","flag","nation","country","banner"],char:"🇲🇸",fitzpatrick_scale:false,category:"flags"},morocco:{keywords:["ma","flag","nation","country","banner"],char:"🇲🇦",fitzpatrick_scale:false,category:"flags"},mozambique:{keywords:["mz","flag","nation","country","banner"],char:"🇲🇿",fitzpatrick_scale:false,category:"flags"},myanmar:{keywords:["mm","flag","nation","country","banner"],char:"🇲🇲",fitzpatrick_scale:false,category:"flags"},namibia:{keywords:["na","flag","nation","country","banner"],char:"🇳🇦",fitzpatrick_scale:false,category:"flags"},nauru:{keywords:["nr","flag","nation","country","banner"],char:"🇳🇷",fitzpatrick_scale:false,category:"flags"},nepal:{keywords:["np","flag","nation","country","banner"],char:"🇳🇵",fitzpatrick_scale:false,category:"flags"},netherlands:{keywords:["nl","flag","nation","country","banner"],char:"🇳🇱",fitzpatrick_scale:false,category:"flags"},new_caledonia:{keywords:["new","caledonia","flag","nation","country","banner"],char:"🇳🇨",fitzpatrick_scale:false,category:"flags"},new_zealand:{keywords:["new","zealand","flag","nation","country","banner"],char:"🇳🇿",fitzpatrick_scale:false,category:"flags"},nicaragua:{keywords:["ni","flag","nation","country","banner"],char:"🇳🇮",fitzpatrick_scale:false,category:"flags"},niger:{keywords:["ne","flag","nation","country","banner"],char:"🇳🇪",fitzpatrick_scale:false,category:"flags"},nigeria:{keywords:["flag","nation","country","banner"],char:"🇳🇬",fitzpatrick_scale:false,category:"flags"},niue:{keywords:["nu","flag","nation","country","banner"],char:"🇳🇺",fitzpatrick_scale:false,category:"flags"},norfolk_island:{keywords:["norfolk","island","flag","nation","country","banner"],char:"🇳🇫",fitzpatrick_scale:false,category:"flags"},northern_mariana_islands:{keywords:["northern","mariana","islands","flag","nation","country","banner"],char:"🇲🇵",fitzpatrick_scale:false,category:"flags"},north_korea:{keywords:["north","korea","nation","flag","country","banner"],char:"🇰🇵",fitzpatrick_scale:false,category:"flags"},norway:{keywords:["no","flag","nation","country","banner"],char:"🇳🇴",fitzpatrick_scale:false,category:"flags"},oman:{keywords:["om_symbol","flag","nation","country","banner"],char:"🇴🇲",fitzpatrick_scale:false,category:"flags"},pakistan:{keywords:["pk","flag","nation","country","banner"],char:"🇵🇰",fitzpatrick_scale:false,category:"flags"},palau:{keywords:["pw","flag","nation","country","banner"],char:"🇵🇼",fitzpatrick_scale:false,category:"flags"},palestinian_territories:{keywords:["palestine","palestinian","territories","flag","nation","country","banner"],char:"🇵🇸",fitzpatrick_scale:false,category:"flags"},panama:{keywords:["pa","flag","nation","country","banner"],char:"🇵🇦",fitzpatrick_scale:false,category:"flags"},papua_new_guinea:{keywords:["papua","new","guinea","flag","nation","country","banner"],char:"🇵🇬",fitzpatrick_scale:false,category:"flags"},paraguay:{keywords:["py","flag","nation","country","banner"],char:"🇵🇾",fitzpatrick_scale:false,category:"flags"},peru:{keywords:["pe","flag","nation","country","banner"],char:"🇵🇪",fitzpatrick_scale:false,category:"flags"},philippines:{keywords:["ph","flag","nation","country","banner"],char:"🇵🇭",fitzpatrick_scale:false,category:"flags"},pitcairn_islands:{keywords:["pitcairn","flag","nation","country","banner"],char:"🇵🇳",fitzpatrick_scale:false,category:"flags"},poland:{keywords:["pl","flag","nation","country","banner"],char:"🇵🇱",fitzpatrick_scale:false,category:"flags"},portugal:{keywords:["pt","flag","nation","country","banner"],char:"🇵🇹",fitzpatrick_scale:false,category:"flags"},puerto_rico:{keywords:["puerto","rico","flag","nation","country","banner"],char:"🇵🇷",fitzpatrick_scale:false,category:"flags"},qatar:{keywords:["qa","flag","nation","country","banner"],char:"🇶🇦",fitzpatrick_scale:false,category:"flags"},reunion:{keywords:["réunion","flag","nation","country","banner"],char:"🇷🇪",fitzpatrick_scale:false,category:"flags"},romania:{keywords:["ro","flag","nation","country","banner"],char:"🇷🇴",fitzpatrick_scale:false,category:"flags"},ru:{keywords:["russian","federation","flag","nation","country","banner"],char:"🇷🇺",fitzpatrick_scale:false,category:"flags"},rwanda:{keywords:["rw","flag","nation","country","banner"],char:"🇷🇼",fitzpatrick_scale:false,category:"flags"},st_barthelemy:{keywords:["saint","barthélemy","flag","nation","country","banner"],char:"🇧🇱",fitzpatrick_scale:false,category:"flags"},st_helena:{keywords:["saint","helena","ascension","tristan","cunha","flag","nation","country","banner"],char:"🇸🇭",fitzpatrick_scale:false,category:"flags"},st_kitts_nevis:{keywords:["saint","kitts","nevis","flag","nation","country","banner"],char:"🇰🇳",fitzpatrick_scale:false,category:"flags"},st_lucia:{keywords:["saint","lucia","flag","nation","country","banner"],char:"🇱🇨",fitzpatrick_scale:false,category:"flags"},st_pierre_miquelon:{keywords:["saint","pierre","miquelon","flag","nation","country","banner"],char:"🇵🇲",fitzpatrick_scale:false,category:"flags"},st_vincent_grenadines:{keywords:["saint","vincent","grenadines","flag","nation","country","banner"],char:"🇻🇨",fitzpatrick_scale:false,category:"flags"},samoa:{keywords:["ws","flag","nation","country","banner"],char:"🇼🇸",fitzpatrick_scale:false,category:"flags"},san_marino:{keywords:["san","marino","flag","nation","country","banner"],char:"🇸🇲",fitzpatrick_scale:false,category:"flags"},sao_tome_principe:{keywords:["sao","tome","principe","flag","nation","country","banner"],char:"🇸🇹",fitzpatrick_scale:false,category:"flags"},saudi_arabia:{keywords:["flag","nation","country","banner"],char:"🇸🇦",fitzpatrick_scale:false,category:"flags"},senegal:{keywords:["sn","flag","nation","country","banner"],char:"🇸🇳",fitzpatrick_scale:false,category:"flags"},serbia:{keywords:["rs","flag","nation","country","banner"],char:"🇷🇸",fitzpatrick_scale:false,category:"flags"},seychelles:{keywords:["sc","flag","nation","country","banner"],char:"🇸🇨",fitzpatrick_scale:false,category:"flags"},sierra_leone:{keywords:["sierra","leone","flag","nation","country","banner"],char:"🇸🇱",fitzpatrick_scale:false,category:"flags"},singapore:{keywords:["sg","flag","nation","country","banner"],char:"🇸🇬",fitzpatrick_scale:false,category:"flags"},sint_maarten:{keywords:["sint","maarten","dutch","flag","nation","country","banner"],char:"🇸🇽",fitzpatrick_scale:false,category:"flags"},slovakia:{keywords:["sk","flag","nation","country","banner"],char:"🇸🇰",fitzpatrick_scale:false,category:"flags"},slovenia:{keywords:["si","flag","nation","country","banner"],char:"🇸🇮",fitzpatrick_scale:false,category:"flags"},solomon_islands:{keywords:["solomon","islands","flag","nation","country","banner"],char:"🇸🇧",fitzpatrick_scale:false,category:"flags"},somalia:{keywords:["so","flag","nation","country","banner"],char:"🇸🇴",fitzpatrick_scale:false,category:"flags"},south_africa:{keywords:["south","africa","flag","nation","country","banner"],char:"🇿🇦",fitzpatrick_scale:false,category:"flags"},south_georgia_south_sandwich_islands:{keywords:["south","georgia","sandwich","islands","flag","nation","country","banner"],char:"🇬🇸",fitzpatrick_scale:false,category:"flags"},kr:{keywords:["south","korea","nation","flag","country","banner"],char:"🇰🇷",fitzpatrick_scale:false,category:"flags"},south_sudan:{keywords:["south","sd","flag","nation","country","banner"],char:"🇸🇸",fitzpatrick_scale:false,category:"flags"},es:{keywords:["spain","flag","nation","country","banner"],char:"🇪🇸",fitzpatrick_scale:false,category:"flags"},sri_lanka:{keywords:["sri","lanka","flag","nation","country","banner"],char:"🇱🇰",fitzpatrick_scale:false,category:"flags"},sudan:{keywords:["sd","flag","nation","country","banner"],char:"🇸🇩",fitzpatrick_scale:false,category:"flags"},suriname:{keywords:["sr","flag","nation","country","banner"],char:"🇸🇷",fitzpatrick_scale:false,category:"flags"},swaziland:{keywords:["sz","flag","nation","country","banner"],char:"🇸🇿",fitzpatrick_scale:false,category:"flags"},sweden:{keywords:["se","flag","nation","country","banner"],char:"🇸🇪",fitzpatrick_scale:false,category:"flags"},switzerland:{keywords:["ch","flag","nation","country","banner"],char:"🇨🇭",fitzpatrick_scale:false,category:"flags"},syria:{keywords:["syrian","arab","republic","flag","nation","country","banner"],char:"🇸🇾",fitzpatrick_scale:false,category:"flags"},taiwan:{keywords:["tw","flag","nation","country","banner"],char:"🇹🇼",fitzpatrick_scale:false,category:"flags"},tajikistan:{keywords:["tj","flag","nation","country","banner"],char:"🇹🇯",fitzpatrick_scale:false,category:"flags"},tanzania:{keywords:["tanzania,","united","republic","flag","nation","country","banner"],char:"🇹🇿",fitzpatrick_scale:false,category:"flags"},thailand:{keywords:["th","flag","nation","country","banner"],char:"🇹🇭",fitzpatrick_scale:false,category:"flags"},timor_leste:{keywords:["timor","leste","flag","nation","country","banner"],char:"🇹🇱",fitzpatrick_scale:false,category:"flags"},togo:{keywords:["tg","flag","nation","country","banner"],char:"🇹🇬",fitzpatrick_scale:false,category:"flags"},tokelau:{keywords:["tk","flag","nation","country","banner"],char:"🇹🇰",fitzpatrick_scale:false,category:"flags"},tonga:{keywords:["to","flag","nation","country","banner"],char:"🇹🇴",fitzpatrick_scale:false,category:"flags"},trinidad_tobago:{keywords:["trinidad","tobago","flag","nation","country","banner"],char:"🇹🇹",fitzpatrick_scale:false,category:"flags"},tunisia:{keywords:["tn","flag","nation","country","banner"],char:"🇹🇳",fitzpatrick_scale:false,category:"flags"},tr:{keywords:["turkey","flag","nation","country","banner"],char:"🇹🇷",fitzpatrick_scale:false,category:"flags"},turkmenistan:{keywords:["flag","nation","country","banner"],char:"🇹🇲",fitzpatrick_scale:false,category:"flags"},turks_caicos_islands:{keywords:["turks","caicos","islands","flag","nation","country","banner"],char:"🇹🇨",fitzpatrick_scale:false,category:"flags"},tuvalu:{keywords:["flag","nation","country","banner"],char:"🇹🇻",fitzpatrick_scale:false,category:"flags"},uganda:{keywords:["ug","flag","nation","country","banner"],char:"🇺🇬",fitzpatrick_scale:false,category:"flags"},ukraine:{keywords:["ua","flag","nation","country","banner"],char:"🇺🇦",fitzpatrick_scale:false,category:"flags"},united_arab_emirates:{keywords:["united","arab","emirates","flag","nation","country","banner"],char:"🇦🇪",fitzpatrick_scale:false,category:"flags"},uk:{keywords:["united","kingdom","great","britain","northern","ireland","flag","nation","country","banner","british","UK","english","england","union jack"],char:"🇬🇧",fitzpatrick_scale:false,category:"flags"},england:{keywords:["flag","english"],char:"🏴󠁧󠁢󠁥󠁮󠁧󠁿",fitzpatrick_scale:false,category:"flags"},scotland:{keywords:["flag","scottish"],char:"🏴󠁧󠁢󠁳󠁣󠁴󠁿",fitzpatrick_scale:false,category:"flags"},wales:{keywords:["flag","welsh"],char:"🏴󠁧󠁢󠁷󠁬󠁳󠁿",fitzpatrick_scale:false,category:"flags"},us:{keywords:["united","states","america","flag","nation","country","banner"],char:"🇺🇸",fitzpatrick_scale:false,category:"flags"},us_virgin_islands:{keywords:["virgin","islands","us","flag","nation","country","banner"],char:"🇻🇮",fitzpatrick_scale:false,category:"flags"},uruguay:{keywords:["uy","flag","nation","country","banner"],char:"🇺🇾",fitzpatrick_scale:false,category:"flags"},uzbekistan:{keywords:["uz","flag","nation","country","banner"],char:"🇺🇿",fitzpatrick_scale:false,category:"flags"},vanuatu:{keywords:["vu","flag","nation","country","banner"],char:"🇻🇺",fitzpatrick_scale:false,category:"flags"},vatican_city:{keywords:["vatican","city","flag","nation","country","banner"],char:"🇻🇦",fitzpatrick_scale:false,category:"flags"},venezuela:{keywords:["ve","bolivarian","republic","flag","nation","country","banner"],char:"🇻🇪",fitzpatrick_scale:false,category:"flags"},vietnam:{keywords:["viet","nam","flag","nation","country","banner"],char:"🇻🇳",fitzpatrick_scale:false,category:"flags"},wallis_futuna:{keywords:["wallis","futuna","flag","nation","country","banner"],char:"🇼🇫",fitzpatrick_scale:false,category:"flags"},western_sahara:{keywords:["western","sahara","flag","nation","country","banner"],char:"🇪🇭",fitzpatrick_scale:false,category:"flags"},yemen:{keywords:["ye","flag","nation","country","banner"],char:"🇾🇪",fitzpatrick_scale:false,category:"flags"},zambia:{keywords:["zm","flag","nation","country","banner"],char:"🇿🇲",fitzpatrick_scale:false,category:"flags"},zimbabwe:{keywords:["zw","flag","nation","country","banner"],char:"🇿🇼",fitzpatrick_scale:false,category:"flags"},united_nations:{keywords:["un","flag","banner"],char:"🇺🇳",fitzpatrick_scale:false,category:"flags"},pirate_flag:{keywords:["skull","crossbones","flag","banner"],char:"🏴‍☠️",fitzpatrick_scale:false,category:"flags"}});admin/assets/vendor/tinymce/js/tinymce/plugins/emoticons/js/emojis.min.js000064400000570530151213255210022701 0ustar00// Source: npm package: emojilib, file:emojis.json
window.tinymce.Resource.add("tinymce.plugins.emoticons",{grinning:{keywords:["face","smile","happy","joy",":D","grin"],char:"\u{1f600}",fitzpatrick_scale:!1,category:"people"},grimacing:{keywords:["face","grimace","teeth"],char:"\u{1f62c}",fitzpatrick_scale:!1,category:"people"},grin:{keywords:["face","happy","smile","joy","kawaii"],char:"\u{1f601}",fitzpatrick_scale:!1,category:"people"},joy:{keywords:["face","cry","tears","weep","happy","happytears","haha"],char:"\u{1f602}",fitzpatrick_scale:!1,category:"people"},rofl:{keywords:["face","rolling","floor","laughing","lol","haha"],char:"\u{1f923}",fitzpatrick_scale:!1,category:"people"},partying:{keywords:["face","celebration","woohoo"],char:"\u{1f973}",fitzpatrick_scale:!1,category:"people"},smiley:{keywords:["face","happy","joy","haha",":D",":)","smile","funny"],char:"\u{1f603}",fitzpatrick_scale:!1,category:"people"},smile:{keywords:["face","happy","joy","funny","haha","laugh","like",":D",":)"],char:"\u{1f604}",fitzpatrick_scale:!1,category:"people"},sweat_smile:{keywords:["face","hot","happy","laugh","sweat","smile","relief"],char:"\u{1f605}",fitzpatrick_scale:!1,category:"people"},laughing:{keywords:["happy","joy","lol","satisfied","haha","face","glad","XD","laugh"],char:"\u{1f606}",fitzpatrick_scale:!1,category:"people"},innocent:{keywords:["face","angel","heaven","halo"],char:"\u{1f607}",fitzpatrick_scale:!1,category:"people"},wink:{keywords:["face","happy","mischievous","secret",";)","smile","eye"],char:"\u{1f609}",fitzpatrick_scale:!1,category:"people"},blush:{keywords:["face","smile","happy","flushed","crush","embarrassed","shy","joy"],char:"\u{1f60a}",fitzpatrick_scale:!1,category:"people"},slightly_smiling_face:{keywords:["face","smile"],char:"\u{1f642}",fitzpatrick_scale:!1,category:"people"},upside_down_face:{keywords:["face","flipped","silly","smile"],char:"\u{1f643}",fitzpatrick_scale:!1,category:"people"},relaxed:{keywords:["face","blush","massage","happiness"],char:"\u263a\ufe0f",fitzpatrick_scale:!1,category:"people"},yum:{keywords:["happy","joy","tongue","smile","face","silly","yummy","nom","delicious","savouring"],char:"\u{1f60b}",fitzpatrick_scale:!1,category:"people"},relieved:{keywords:["face","relaxed","phew","massage","happiness"],char:"\u{1f60c}",fitzpatrick_scale:!1,category:"people"},heart_eyes:{keywords:["face","love","like","affection","valentines","infatuation","crush","heart"],char:"\u{1f60d}",fitzpatrick_scale:!1,category:"people"},smiling_face_with_three_hearts:{keywords:["face","love","like","affection","valentines","infatuation","crush","hearts","adore"],char:"\u{1f970}",fitzpatrick_scale:!1,category:"people"},kissing_heart:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:"\u{1f618}",fitzpatrick_scale:!1,category:"people"},kissing:{keywords:["love","like","face","3","valentines","infatuation","kiss"],char:"\u{1f617}",fitzpatrick_scale:!1,category:"people"},kissing_smiling_eyes:{keywords:["face","affection","valentines","infatuation","kiss"],char:"\u{1f619}",fitzpatrick_scale:!1,category:"people"},kissing_closed_eyes:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:"\u{1f61a}",fitzpatrick_scale:!1,category:"people"},stuck_out_tongue_winking_eye:{keywords:["face","prank","childish","playful","mischievous","smile","wink","tongue"],char:"\u{1f61c}",fitzpatrick_scale:!1,category:"people"},zany:{keywords:["face","goofy","crazy"],char:"\u{1f92a}",fitzpatrick_scale:!1,category:"people"},raised_eyebrow:{keywords:["face","distrust","scepticism","disapproval","disbelief","surprise"],char:"\u{1f928}",fitzpatrick_scale:!1,category:"people"},monocle:{keywords:["face","stuffy","wealthy"],char:"\u{1f9d0}",fitzpatrick_scale:!1,category:"people"},stuck_out_tongue_closed_eyes:{keywords:["face","prank","playful","mischievous","smile","tongue"],char:"\u{1f61d}",fitzpatrick_scale:!1,category:"people"},stuck_out_tongue:{keywords:["face","prank","childish","playful","mischievous","smile","tongue"],char:"\u{1f61b}",fitzpatrick_scale:!1,category:"people"},money_mouth_face:{keywords:["face","rich","dollar","money"],char:"\u{1f911}",fitzpatrick_scale:!1,category:"people"},nerd_face:{keywords:["face","nerdy","geek","dork"],char:"\u{1f913}",fitzpatrick_scale:!1,category:"people"},sunglasses:{keywords:["face","cool","smile","summer","beach","sunglass"],char:"\u{1f60e}",fitzpatrick_scale:!1,category:"people"},star_struck:{keywords:["face","smile","starry","eyes","grinning"],char:"\u{1f929}",fitzpatrick_scale:!1,category:"people"},clown_face:{keywords:["face"],char:"\u{1f921}",fitzpatrick_scale:!1,category:"people"},cowboy_hat_face:{keywords:["face","cowgirl","hat"],char:"\u{1f920}",fitzpatrick_scale:!1,category:"people"},hugs:{keywords:["face","smile","hug"],char:"\u{1f917}",fitzpatrick_scale:!1,category:"people"},smirk:{keywords:["face","smile","mean","prank","smug","sarcasm"],char:"\u{1f60f}",fitzpatrick_scale:!1,category:"people"},no_mouth:{keywords:["face","hellokitty"],char:"\u{1f636}",fitzpatrick_scale:!1,category:"people"},neutral_face:{keywords:["indifference","meh",":|","neutral"],char:"\u{1f610}",fitzpatrick_scale:!1,category:"people"},expressionless:{keywords:["face","indifferent","-_-","meh","deadpan"],char:"\u{1f611}",fitzpatrick_scale:!1,category:"people"},unamused:{keywords:["indifference","bored","straight face","serious","sarcasm","unimpressed","skeptical","dubious","side_eye"],char:"\u{1f612}",fitzpatrick_scale:!1,category:"people"},roll_eyes:{keywords:["face","eyeroll","frustrated"],char:"\u{1f644}",fitzpatrick_scale:!1,category:"people"},thinking:{keywords:["face","hmmm","think","consider"],char:"\u{1f914}",fitzpatrick_scale:!1,category:"people"},lying_face:{keywords:["face","lie","pinocchio"],char:"\u{1f925}",fitzpatrick_scale:!1,category:"people"},hand_over_mouth:{keywords:["face","whoops","shock","surprise"],char:"\u{1f92d}",fitzpatrick_scale:!1,category:"people"},shushing:{keywords:["face","quiet","shhh"],char:"\u{1f92b}",fitzpatrick_scale:!1,category:"people"},symbols_over_mouth:{keywords:["face","swearing","cursing","cussing","profanity","expletive"],char:"\u{1f92c}",fitzpatrick_scale:!1,category:"people"},exploding_head:{keywords:["face","shocked","mind","blown"],char:"\u{1f92f}",fitzpatrick_scale:!1,category:"people"},flushed:{keywords:["face","blush","shy","flattered"],char:"\u{1f633}",fitzpatrick_scale:!1,category:"people"},disappointed:{keywords:["face","sad","upset","depressed",":("],char:"\u{1f61e}",fitzpatrick_scale:!1,category:"people"},worried:{keywords:["face","concern","nervous",":("],char:"\u{1f61f}",fitzpatrick_scale:!1,category:"people"},angry:{keywords:["mad","face","annoyed","frustrated"],char:"\u{1f620}",fitzpatrick_scale:!1,category:"people"},rage:{keywords:["angry","mad","hate","despise"],char:"\u{1f621}",fitzpatrick_scale:!1,category:"people"},pensive:{keywords:["face","sad","depressed","upset"],char:"\u{1f614}",fitzpatrick_scale:!1,category:"people"},confused:{keywords:["face","indifference","huh","weird","hmmm",":/"],char:"\u{1f615}",fitzpatrick_scale:!1,category:"people"},slightly_frowning_face:{keywords:["face","frowning","disappointed","sad","upset"],char:"\u{1f641}",fitzpatrick_scale:!1,category:"people"},frowning_face:{keywords:["face","sad","upset","frown"],char:"\u2639",fitzpatrick_scale:!1,category:"people"},persevere:{keywords:["face","sick","no","upset","oops"],char:"\u{1f623}",fitzpatrick_scale:!1,category:"people"},confounded:{keywords:["face","confused","sick","unwell","oops",":S"],char:"\u{1f616}",fitzpatrick_scale:!1,category:"people"},tired_face:{keywords:["sick","whine","upset","frustrated"],char:"\u{1f62b}",fitzpatrick_scale:!1,category:"people"},weary:{keywords:["face","tired","sleepy","sad","frustrated","upset"],char:"\u{1f629}",fitzpatrick_scale:!1,category:"people"},pleading:{keywords:["face","begging","mercy"],char:"\u{1f97a}",fitzpatrick_scale:!1,category:"people"},triumph:{keywords:["face","gas","phew","proud","pride"],char:"\u{1f624}",fitzpatrick_scale:!1,category:"people"},open_mouth:{keywords:["face","surprise","impressed","wow","whoa",":O"],char:"\u{1f62e}",fitzpatrick_scale:!1,category:"people"},scream:{keywords:["face","munch","scared","omg"],char:"\u{1f631}",fitzpatrick_scale:!1,category:"people"},fearful:{keywords:["face","scared","terrified","nervous","oops","huh"],char:"\u{1f628}",fitzpatrick_scale:!1,category:"people"},cold_sweat:{keywords:["face","nervous","sweat"],char:"\u{1f630}",fitzpatrick_scale:!1,category:"people"},hushed:{keywords:["face","woo","shh"],char:"\u{1f62f}",fitzpatrick_scale:!1,category:"people"},frowning:{keywords:["face","aw","what"],char:"\u{1f626}",fitzpatrick_scale:!1,category:"people"},anguished:{keywords:["face","stunned","nervous"],char:"\u{1f627}",fitzpatrick_scale:!1,category:"people"},cry:{keywords:["face","tears","sad","depressed","upset",":'("],char:"\u{1f622}",fitzpatrick_scale:!1,category:"people"},disappointed_relieved:{keywords:["face","phew","sweat","nervous"],char:"\u{1f625}",fitzpatrick_scale:!1,category:"people"},drooling_face:{keywords:["face"],char:"\u{1f924}",fitzpatrick_scale:!1,category:"people"},sleepy:{keywords:["face","tired","rest","nap"],char:"\u{1f62a}",fitzpatrick_scale:!1,category:"people"},sweat:{keywords:["face","hot","sad","tired","exercise"],char:"\u{1f613}",fitzpatrick_scale:!1,category:"people"},hot:{keywords:["face","feverish","heat","red","sweating"],char:"\u{1f975}",fitzpatrick_scale:!1,category:"people"},cold:{keywords:["face","blue","freezing","frozen","frostbite","icicles"],char:"\u{1f976}",fitzpatrick_scale:!1,category:"people"},sob:{keywords:["face","cry","tears","sad","upset","depressed"],char:"\u{1f62d}",fitzpatrick_scale:!1,category:"people"},dizzy_face:{keywords:["spent","unconscious","xox","dizzy"],char:"\u{1f635}",fitzpatrick_scale:!1,category:"people"},astonished:{keywords:["face","xox","surprised","poisoned"],char:"\u{1f632}",fitzpatrick_scale:!1,category:"people"},zipper_mouth_face:{keywords:["face","sealed","zipper","secret"],char:"\u{1f910}",fitzpatrick_scale:!1,category:"people"},nauseated_face:{keywords:["face","vomit","gross","green","sick","throw up","ill"],char:"\u{1f922}",fitzpatrick_scale:!1,category:"people"},sneezing_face:{keywords:["face","gesundheit","sneeze","sick","allergy"],char:"\u{1f927}",fitzpatrick_scale:!1,category:"people"},vomiting:{keywords:["face","sick"],char:"\u{1f92e}",fitzpatrick_scale:!1,category:"people"},mask:{keywords:["face","sick","ill","disease"],char:"\u{1f637}",fitzpatrick_scale:!1,category:"people"},face_with_thermometer:{keywords:["sick","temperature","thermometer","cold","fever"],char:"\u{1f912}",fitzpatrick_scale:!1,category:"people"},face_with_head_bandage:{keywords:["injured","clumsy","bandage","hurt"],char:"\u{1f915}",fitzpatrick_scale:!1,category:"people"},woozy:{keywords:["face","dizzy","intoxicated","tipsy","wavy"],char:"\u{1f974}",fitzpatrick_scale:!1,category:"people"},sleeping:{keywords:["face","tired","sleepy","night","zzz"],char:"\u{1f634}",fitzpatrick_scale:!1,category:"people"},zzz:{keywords:["sleepy","tired","dream"],char:"\u{1f4a4}",fitzpatrick_scale:!1,category:"people"},poop:{keywords:["hankey","shitface","fail","turd","shit"],char:"\u{1f4a9}",fitzpatrick_scale:!1,category:"people"},smiling_imp:{keywords:["devil","horns"],char:"\u{1f608}",fitzpatrick_scale:!1,category:"people"},imp:{keywords:["devil","angry","horns"],char:"\u{1f47f}",fitzpatrick_scale:!1,category:"people"},japanese_ogre:{keywords:["monster","red","mask","halloween","scary","creepy","devil","demon","japanese","ogre"],char:"\u{1f479}",fitzpatrick_scale:!1,category:"people"},japanese_goblin:{keywords:["red","evil","mask","monster","scary","creepy","japanese","goblin"],char:"\u{1f47a}",fitzpatrick_scale:!1,category:"people"},skull:{keywords:["dead","skeleton","creepy","death"],char:"\u{1f480}",fitzpatrick_scale:!1,category:"people"},ghost:{keywords:["halloween","spooky","scary"],char:"\u{1f47b}",fitzpatrick_scale:!1,category:"people"},alien:{keywords:["UFO","paul","weird","outer_space"],char:"\u{1f47d}",fitzpatrick_scale:!1,category:"people"},robot:{keywords:["computer","machine","bot"],char:"\u{1f916}",fitzpatrick_scale:!1,category:"people"},smiley_cat:{keywords:["animal","cats","happy","smile"],char:"\u{1f63a}",fitzpatrick_scale:!1,category:"people"},smile_cat:{keywords:["animal","cats","smile"],char:"\u{1f638}",fitzpatrick_scale:!1,category:"people"},joy_cat:{keywords:["animal","cats","haha","happy","tears"],char:"\u{1f639}",fitzpatrick_scale:!1,category:"people"},heart_eyes_cat:{keywords:["animal","love","like","affection","cats","valentines","heart"],char:"\u{1f63b}",fitzpatrick_scale:!1,category:"people"},smirk_cat:{keywords:["animal","cats","smirk"],char:"\u{1f63c}",fitzpatrick_scale:!1,category:"people"},kissing_cat:{keywords:["animal","cats","kiss"],char:"\u{1f63d}",fitzpatrick_scale:!1,category:"people"},scream_cat:{keywords:["animal","cats","munch","scared","scream"],char:"\u{1f640}",fitzpatrick_scale:!1,category:"people"},crying_cat_face:{keywords:["animal","tears","weep","sad","cats","upset","cry"],char:"\u{1f63f}",fitzpatrick_scale:!1,category:"people"},pouting_cat:{keywords:["animal","cats"],char:"\u{1f63e}",fitzpatrick_scale:!1,category:"people"},palms_up:{keywords:["hands","gesture","cupped","prayer"],char:"\u{1f932}",fitzpatrick_scale:!0,category:"people"},raised_hands:{keywords:["gesture","hooray","yea","celebration","hands"],char:"\u{1f64c}",fitzpatrick_scale:!0,category:"people"},clap:{keywords:["hands","praise","applause","congrats","yay"],char:"\u{1f44f}",fitzpatrick_scale:!0,category:"people"},wave:{keywords:["hands","gesture","goodbye","solong","farewell","hello","hi","palm"],char:"\u{1f44b}",fitzpatrick_scale:!0,category:"people"},call_me_hand:{keywords:["hands","gesture"],char:"\u{1f919}",fitzpatrick_scale:!0,category:"people"},"+1":{keywords:["thumbsup","yes","awesome","good","agree","accept","cool","hand","like"],char:"\u{1f44d}",fitzpatrick_scale:!0,category:"people"},"-1":{keywords:["thumbsdown","no","dislike","hand"],char:"\u{1f44e}",fitzpatrick_scale:!0,category:"people"},facepunch:{keywords:["angry","violence","fist","hit","attack","hand"],char:"\u{1f44a}",fitzpatrick_scale:!0,category:"people"},fist:{keywords:["fingers","hand","grasp"],char:"\u270a",fitzpatrick_scale:!0,category:"people"},fist_left:{keywords:["hand","fistbump"],char:"\u{1f91b}",fitzpatrick_scale:!0,category:"people"},fist_right:{keywords:["hand","fistbump"],char:"\u{1f91c}",fitzpatrick_scale:!0,category:"people"},v:{keywords:["fingers","ohyeah","hand","peace","victory","two"],char:"\u270c",fitzpatrick_scale:!0,category:"people"},ok_hand:{keywords:["fingers","limbs","perfect","ok","okay"],char:"\u{1f44c}",fitzpatrick_scale:!0,category:"people"},raised_hand:{keywords:["fingers","stop","highfive","palm","ban"],char:"\u270b",fitzpatrick_scale:!0,category:"people"},raised_back_of_hand:{keywords:["fingers","raised","backhand"],char:"\u{1f91a}",fitzpatrick_scale:!0,category:"people"},open_hands:{keywords:["fingers","butterfly","hands","open"],char:"\u{1f450}",fitzpatrick_scale:!0,category:"people"},muscle:{keywords:["arm","flex","hand","summer","strong","biceps"],char:"\u{1f4aa}",fitzpatrick_scale:!0,category:"people"},pray:{keywords:["please","hope","wish","namaste","highfive"],char:"\u{1f64f}",fitzpatrick_scale:!0,category:"people"},foot:{keywords:["kick","stomp"],char:"\u{1f9b6}",fitzpatrick_scale:!0,category:"people"},leg:{keywords:["kick","limb"],char:"\u{1f9b5}",fitzpatrick_scale:!0,category:"people"},handshake:{keywords:["agreement","shake"],char:"\u{1f91d}",fitzpatrick_scale:!1,category:"people"},point_up:{keywords:["hand","fingers","direction","up"],char:"\u261d",fitzpatrick_scale:!0,category:"people"},point_up_2:{keywords:["fingers","hand","direction","up"],char:"\u{1f446}",fitzpatrick_scale:!0,category:"people"},point_down:{keywords:["fingers","hand","direction","down"],char:"\u{1f447}",fitzpatrick_scale:!0,category:"people"},point_left:{keywords:["direction","fingers","hand","left"],char:"\u{1f448}",fitzpatrick_scale:!0,category:"people"},point_right:{keywords:["fingers","hand","direction","right"],char:"\u{1f449}",fitzpatrick_scale:!0,category:"people"},fu:{keywords:["hand","fingers","rude","middle","flipping"],char:"\u{1f595}",fitzpatrick_scale:!0,category:"people"},raised_hand_with_fingers_splayed:{keywords:["hand","fingers","palm"],char:"\u{1f590}",fitzpatrick_scale:!0,category:"people"},love_you:{keywords:["hand","fingers","gesture"],char:"\u{1f91f}",fitzpatrick_scale:!0,category:"people"},metal:{keywords:["hand","fingers","evil_eye","sign_of_horns","rock_on"],char:"\u{1f918}",fitzpatrick_scale:!0,category:"people"},crossed_fingers:{keywords:["good","lucky"],char:"\u{1f91e}",fitzpatrick_scale:!0,category:"people"},vulcan_salute:{keywords:["hand","fingers","spock","star trek"],char:"\u{1f596}",fitzpatrick_scale:!0,category:"people"},writing_hand:{keywords:["lower_left_ballpoint_pen","stationery","write","compose"],char:"\u270d",fitzpatrick_scale:!0,category:"people"},selfie:{keywords:["camera","phone"],char:"\u{1f933}",fitzpatrick_scale:!0,category:"people"},nail_care:{keywords:["beauty","manicure","finger","fashion","nail"],char:"\u{1f485}",fitzpatrick_scale:!0,category:"people"},lips:{keywords:["mouth","kiss"],char:"\u{1f444}",fitzpatrick_scale:!1,category:"people"},tooth:{keywords:["teeth","dentist"],char:"\u{1f9b7}",fitzpatrick_scale:!1,category:"people"},tongue:{keywords:["mouth","playful"],char:"\u{1f445}",fitzpatrick_scale:!1,category:"people"},ear:{keywords:["face","hear","sound","listen"],char:"\u{1f442}",fitzpatrick_scale:!0,category:"people"},nose:{keywords:["smell","sniff"],char:"\u{1f443}",fitzpatrick_scale:!0,category:"people"},eye:{keywords:["face","look","see","watch","stare"],char:"\u{1f441}",fitzpatrick_scale:!1,category:"people"},eyes:{keywords:["look","watch","stalk","peek","see"],char:"\u{1f440}",fitzpatrick_scale:!1,category:"people"},brain:{keywords:["smart","intelligent"],char:"\u{1f9e0}",fitzpatrick_scale:!1,category:"people"},bust_in_silhouette:{keywords:["user","person","human"],char:"\u{1f464}",fitzpatrick_scale:!1,category:"people"},busts_in_silhouette:{keywords:["user","person","human","group","team"],char:"\u{1f465}",fitzpatrick_scale:!1,category:"people"},speaking_head:{keywords:["user","person","human","sing","say","talk"],char:"\u{1f5e3}",fitzpatrick_scale:!1,category:"people"},baby:{keywords:["child","boy","girl","toddler"],char:"\u{1f476}",fitzpatrick_scale:!0,category:"people"},child:{keywords:["gender-neutral","young"],char:"\u{1f9d2}",fitzpatrick_scale:!0,category:"people"},boy:{keywords:["man","male","guy","teenager"],char:"\u{1f466}",fitzpatrick_scale:!0,category:"people"},girl:{keywords:["female","woman","teenager"],char:"\u{1f467}",fitzpatrick_scale:!0,category:"people"},adult:{keywords:["gender-neutral","person"],char:"\u{1f9d1}",fitzpatrick_scale:!0,category:"people"},man:{keywords:["mustache","father","dad","guy","classy","sir","moustache"],char:"\u{1f468}",fitzpatrick_scale:!0,category:"people"},woman:{keywords:["female","girls","lady"],char:"\u{1f469}",fitzpatrick_scale:!0,category:"people"},blonde_woman:{keywords:["woman","female","girl","blonde","person"],char:"\u{1f471}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},blonde_man:{keywords:["man","male","boy","blonde","guy","person"],char:"\u{1f471}",fitzpatrick_scale:!0,category:"people"},bearded_person:{keywords:["person","bewhiskered"],char:"\u{1f9d4}",fitzpatrick_scale:!0,category:"people"},older_adult:{keywords:["human","elder","senior","gender-neutral"],char:"\u{1f9d3}",fitzpatrick_scale:!0,category:"people"},older_man:{keywords:["human","male","men","old","elder","senior"],char:"\u{1f474}",fitzpatrick_scale:!0,category:"people"},older_woman:{keywords:["human","female","women","lady","old","elder","senior"],char:"\u{1f475}",fitzpatrick_scale:!0,category:"people"},man_with_gua_pi_mao:{keywords:["male","boy","chinese"],char:"\u{1f472}",fitzpatrick_scale:!0,category:"people"},woman_with_headscarf:{keywords:["female","hijab","mantilla","tichel"],char:"\u{1f9d5}",fitzpatrick_scale:!0,category:"people"},woman_with_turban:{keywords:["female","indian","hinduism","arabs","woman"],char:"\u{1f473}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},man_with_turban:{keywords:["male","indian","hinduism","arabs"],char:"\u{1f473}",fitzpatrick_scale:!0,category:"people"},policewoman:{keywords:["woman","police","law","legal","enforcement","arrest","911","female"],char:"\u{1f46e}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},policeman:{keywords:["man","police","law","legal","enforcement","arrest","911"],char:"\u{1f46e}",fitzpatrick_scale:!0,category:"people"},construction_worker_woman:{keywords:["female","human","wip","build","construction","worker","labor","woman"],char:"\u{1f477}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},construction_worker_man:{keywords:["male","human","wip","guy","build","construction","worker","labor"],char:"\u{1f477}",fitzpatrick_scale:!0,category:"people"},guardswoman:{keywords:["uk","gb","british","female","royal","woman"],char:"\u{1f482}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},guardsman:{keywords:["uk","gb","british","male","guy","royal"],char:"\u{1f482}",fitzpatrick_scale:!0,category:"people"},female_detective:{keywords:["human","spy","detective","female","woman"],char:"\u{1f575}\ufe0f\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},male_detective:{keywords:["human","spy","detective"],char:"\u{1f575}",fitzpatrick_scale:!0,category:"people"},woman_health_worker:{keywords:["doctor","nurse","therapist","healthcare","woman","human"],char:"\u{1f469}\u200d\u2695\ufe0f",fitzpatrick_scale:!0,category:"people"},man_health_worker:{keywords:["doctor","nurse","therapist","healthcare","man","human"],char:"\u{1f468}\u200d\u2695\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_farmer:{keywords:["rancher","gardener","woman","human"],char:"\u{1f469}\u200d\u{1f33e}",fitzpatrick_scale:!0,category:"people"},man_farmer:{keywords:["rancher","gardener","man","human"],char:"\u{1f468}\u200d\u{1f33e}",fitzpatrick_scale:!0,category:"people"},woman_cook:{keywords:["chef","woman","human"],char:"\u{1f469}\u200d\u{1f373}",fitzpatrick_scale:!0,category:"people"},man_cook:{keywords:["chef","man","human"],char:"\u{1f468}\u200d\u{1f373}",fitzpatrick_scale:!0,category:"people"},woman_student:{keywords:["graduate","woman","human"],char:"\u{1f469}\u200d\u{1f393}",fitzpatrick_scale:!0,category:"people"},man_student:{keywords:["graduate","man","human"],char:"\u{1f468}\u200d\u{1f393}",fitzpatrick_scale:!0,category:"people"},woman_singer:{keywords:["rockstar","entertainer","woman","human"],char:"\u{1f469}\u200d\u{1f3a4}",fitzpatrick_scale:!0,category:"people"},man_singer:{keywords:["rockstar","entertainer","man","human"],char:"\u{1f468}\u200d\u{1f3a4}",fitzpatrick_scale:!0,category:"people"},woman_teacher:{keywords:["instructor","professor","woman","human"],char:"\u{1f469}\u200d\u{1f3eb}",fitzpatrick_scale:!0,category:"people"},man_teacher:{keywords:["instructor","professor","man","human"],char:"\u{1f468}\u200d\u{1f3eb}",fitzpatrick_scale:!0,category:"people"},woman_factory_worker:{keywords:["assembly","industrial","woman","human"],char:"\u{1f469}\u200d\u{1f3ed}",fitzpatrick_scale:!0,category:"people"},man_factory_worker:{keywords:["assembly","industrial","man","human"],char:"\u{1f468}\u200d\u{1f3ed}",fitzpatrick_scale:!0,category:"people"},woman_technologist:{keywords:["coder","developer","engineer","programmer","software","woman","human","laptop","computer"],char:"\u{1f469}\u200d\u{1f4bb}",fitzpatrick_scale:!0,category:"people"},man_technologist:{keywords:["coder","developer","engineer","programmer","software","man","human","laptop","computer"],char:"\u{1f468}\u200d\u{1f4bb}",fitzpatrick_scale:!0,category:"people"},woman_office_worker:{keywords:["business","manager","woman","human"],char:"\u{1f469}\u200d\u{1f4bc}",fitzpatrick_scale:!0,category:"people"},man_office_worker:{keywords:["business","manager","man","human"],char:"\u{1f468}\u200d\u{1f4bc}",fitzpatrick_scale:!0,category:"people"},woman_mechanic:{keywords:["plumber","woman","human","wrench"],char:"\u{1f469}\u200d\u{1f527}",fitzpatrick_scale:!0,category:"people"},man_mechanic:{keywords:["plumber","man","human","wrench"],char:"\u{1f468}\u200d\u{1f527}",fitzpatrick_scale:!0,category:"people"},woman_scientist:{keywords:["biologist","chemist","engineer","physicist","woman","human"],char:"\u{1f469}\u200d\u{1f52c}",fitzpatrick_scale:!0,category:"people"},man_scientist:{keywords:["biologist","chemist","engineer","physicist","man","human"],char:"\u{1f468}\u200d\u{1f52c}",fitzpatrick_scale:!0,category:"people"},woman_artist:{keywords:["painter","woman","human"],char:"\u{1f469}\u200d\u{1f3a8}",fitzpatrick_scale:!0,category:"people"},man_artist:{keywords:["painter","man","human"],char:"\u{1f468}\u200d\u{1f3a8}",fitzpatrick_scale:!0,category:"people"},woman_firefighter:{keywords:["fireman","woman","human"],char:"\u{1f469}\u200d\u{1f692}",fitzpatrick_scale:!0,category:"people"},man_firefighter:{keywords:["fireman","man","human"],char:"\u{1f468}\u200d\u{1f692}",fitzpatrick_scale:!0,category:"people"},woman_pilot:{keywords:["aviator","plane","woman","human"],char:"\u{1f469}\u200d\u2708\ufe0f",fitzpatrick_scale:!0,category:"people"},man_pilot:{keywords:["aviator","plane","man","human"],char:"\u{1f468}\u200d\u2708\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_astronaut:{keywords:["space","rocket","woman","human"],char:"\u{1f469}\u200d\u{1f680}",fitzpatrick_scale:!0,category:"people"},man_astronaut:{keywords:["space","rocket","man","human"],char:"\u{1f468}\u200d\u{1f680}",fitzpatrick_scale:!0,category:"people"},woman_judge:{keywords:["justice","court","woman","human"],char:"\u{1f469}\u200d\u2696\ufe0f",fitzpatrick_scale:!0,category:"people"},man_judge:{keywords:["justice","court","man","human"],char:"\u{1f468}\u200d\u2696\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_superhero:{keywords:["woman","female","good","heroine","superpowers"],char:"\u{1f9b8}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},man_superhero:{keywords:["man","male","good","hero","superpowers"],char:"\u{1f9b8}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_supervillain:{keywords:["woman","female","evil","bad","criminal","heroine","superpowers"],char:"\u{1f9b9}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},man_supervillain:{keywords:["man","male","evil","bad","criminal","hero","superpowers"],char:"\u{1f9b9}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},mrs_claus:{keywords:["woman","female","xmas","mother christmas"],char:"\u{1f936}",fitzpatrick_scale:!0,category:"people"},santa:{keywords:["festival","man","male","xmas","father christmas"],char:"\u{1f385}",fitzpatrick_scale:!0,category:"people"},sorceress:{keywords:["woman","female","mage","witch"],char:"\u{1f9d9}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},wizard:{keywords:["man","male","mage","sorcerer"],char:"\u{1f9d9}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_elf:{keywords:["woman","female"],char:"\u{1f9dd}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},man_elf:{keywords:["man","male"],char:"\u{1f9dd}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_vampire:{keywords:["woman","female"],char:"\u{1f9db}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},man_vampire:{keywords:["man","male","dracula"],char:"\u{1f9db}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_zombie:{keywords:["woman","female","undead","walking dead"],char:"\u{1f9df}\u200d\u2640\ufe0f",fitzpatrick_scale:!1,category:"people"},man_zombie:{keywords:["man","male","dracula","undead","walking dead"],char:"\u{1f9df}\u200d\u2642\ufe0f",fitzpatrick_scale:!1,category:"people"},woman_genie:{keywords:["woman","female"],char:"\u{1f9de}\u200d\u2640\ufe0f",fitzpatrick_scale:!1,category:"people"},man_genie:{keywords:["man","male"],char:"\u{1f9de}\u200d\u2642\ufe0f",fitzpatrick_scale:!1,category:"people"},mermaid:{keywords:["woman","female","merwoman","ariel"],char:"\u{1f9dc}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},merman:{keywords:["man","male","triton"],char:"\u{1f9dc}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_fairy:{keywords:["woman","female"],char:"\u{1f9da}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},man_fairy:{keywords:["man","male"],char:"\u{1f9da}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},angel:{keywords:["heaven","wings","halo"],char:"\u{1f47c}",fitzpatrick_scale:!0,category:"people"},pregnant_woman:{keywords:["baby"],char:"\u{1f930}",fitzpatrick_scale:!0,category:"people"},breastfeeding:{keywords:["nursing","baby"],char:"\u{1f931}",fitzpatrick_scale:!0,category:"people"},princess:{keywords:["girl","woman","female","blond","crown","royal","queen"],char:"\u{1f478}",fitzpatrick_scale:!0,category:"people"},prince:{keywords:["boy","man","male","crown","royal","king"],char:"\u{1f934}",fitzpatrick_scale:!0,category:"people"},bride_with_veil:{keywords:["couple","marriage","wedding","woman","bride"],char:"\u{1f470}",fitzpatrick_scale:!0,category:"people"},man_in_tuxedo:{keywords:["couple","marriage","wedding","groom"],char:"\u{1f935}",fitzpatrick_scale:!0,category:"people"},running_woman:{keywords:["woman","walking","exercise","race","running","female"],char:"\u{1f3c3}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},running_man:{keywords:["man","walking","exercise","race","running"],char:"\u{1f3c3}",fitzpatrick_scale:!0,category:"people"},walking_woman:{keywords:["human","feet","steps","woman","female"],char:"\u{1f6b6}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},walking_man:{keywords:["human","feet","steps"],char:"\u{1f6b6}",fitzpatrick_scale:!0,category:"people"},dancer:{keywords:["female","girl","woman","fun"],char:"\u{1f483}",fitzpatrick_scale:!0,category:"people"},man_dancing:{keywords:["male","boy","fun","dancer"],char:"\u{1f57a}",fitzpatrick_scale:!0,category:"people"},dancing_women:{keywords:["female","bunny","women","girls"],char:"\u{1f46f}",fitzpatrick_scale:!1,category:"people"},dancing_men:{keywords:["male","bunny","men","boys"],char:"\u{1f46f}\u200d\u2642\ufe0f",fitzpatrick_scale:!1,category:"people"},couple:{keywords:["pair","people","human","love","date","dating","like","affection","valentines","marriage"],char:"\u{1f46b}",fitzpatrick_scale:!1,category:"people"},two_men_holding_hands:{keywords:["pair","couple","love","like","bromance","friendship","people","human"],char:"\u{1f46c}",fitzpatrick_scale:!1,category:"people"},two_women_holding_hands:{keywords:["pair","friendship","couple","love","like","female","people","human"],char:"\u{1f46d}",fitzpatrick_scale:!1,category:"people"},bowing_woman:{keywords:["woman","female","girl"],char:"\u{1f647}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},bowing_man:{keywords:["man","male","boy"],char:"\u{1f647}",fitzpatrick_scale:!0,category:"people"},man_facepalming:{keywords:["man","male","boy","disbelief"],char:"\u{1f926}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_facepalming:{keywords:["woman","female","girl","disbelief"],char:"\u{1f926}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_shrugging:{keywords:["woman","female","girl","confused","indifferent","doubt"],char:"\u{1f937}",fitzpatrick_scale:!0,category:"people"},man_shrugging:{keywords:["man","male","boy","confused","indifferent","doubt"],char:"\u{1f937}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},tipping_hand_woman:{keywords:["female","girl","woman","human","information"],char:"\u{1f481}",fitzpatrick_scale:!0,category:"people"},tipping_hand_man:{keywords:["male","boy","man","human","information"],char:"\u{1f481}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},no_good_woman:{keywords:["female","girl","woman","nope"],char:"\u{1f645}",fitzpatrick_scale:!0,category:"people"},no_good_man:{keywords:["male","boy","man","nope"],char:"\u{1f645}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},ok_woman:{keywords:["women","girl","female","pink","human","woman"],char:"\u{1f646}",fitzpatrick_scale:!0,category:"people"},ok_man:{keywords:["men","boy","male","blue","human","man"],char:"\u{1f646}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},raising_hand_woman:{keywords:["female","girl","woman"],char:"\u{1f64b}",fitzpatrick_scale:!0,category:"people"},raising_hand_man:{keywords:["male","boy","man"],char:"\u{1f64b}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},pouting_woman:{keywords:["female","girl","woman"],char:"\u{1f64e}",fitzpatrick_scale:!0,category:"people"},pouting_man:{keywords:["male","boy","man"],char:"\u{1f64e}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},frowning_woman:{keywords:["female","girl","woman","sad","depressed","discouraged","unhappy"],char:"\u{1f64d}",fitzpatrick_scale:!0,category:"people"},frowning_man:{keywords:["male","boy","man","sad","depressed","discouraged","unhappy"],char:"\u{1f64d}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},haircut_woman:{keywords:["female","girl","woman"],char:"\u{1f487}",fitzpatrick_scale:!0,category:"people"},haircut_man:{keywords:["male","boy","man"],char:"\u{1f487}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},massage_woman:{keywords:["female","girl","woman","head"],char:"\u{1f486}",fitzpatrick_scale:!0,category:"people"},massage_man:{keywords:["male","boy","man","head"],char:"\u{1f486}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},woman_in_steamy_room:{keywords:["female","woman","spa","steamroom","sauna"],char:"\u{1f9d6}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"people"},man_in_steamy_room:{keywords:["male","man","spa","steamroom","sauna"],char:"\u{1f9d6}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"people"},couple_with_heart_woman_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:"\u{1f491}",fitzpatrick_scale:!1,category:"people"},couple_with_heart_woman_woman:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:"\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f469}",fitzpatrick_scale:!1,category:"people"},couple_with_heart_man_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:"\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f468}",fitzpatrick_scale:!1,category:"people"},couplekiss_man_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:"\u{1f48f}",fitzpatrick_scale:!1,category:"people"},couplekiss_woman_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:"\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}",fitzpatrick_scale:!1,category:"people"},couplekiss_man_man:{keywords:["pair","valentines","love","like","dating","marriage"],char:"\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}",fitzpatrick_scale:!1,category:"people"},family_man_woman_boy:{keywords:["home","parents","child","mom","dad","father","mother","people","human"],char:"\u{1f46a}",fitzpatrick_scale:!1,category:"people"},family_man_woman_girl:{keywords:["home","parents","people","human","child"],char:"\u{1f468}\u200d\u{1f469}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_man_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_woman_woman_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f469}\u200d\u{1f469}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_woman_woman_girl:{keywords:["home","parents","people","human","children"],char:"\u{1f469}\u200d\u{1f469}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_woman_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_woman_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f469}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_woman_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:"\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_man_man_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f468}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_man_girl:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f468}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_man_man_girl_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_man_boy_boy:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f468}\u200d\u{1f466}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_man_girl_girl:{keywords:["home","parents","people","human","children"],char:"\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_woman_boy:{keywords:["home","parent","people","human","child"],char:"\u{1f469}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_woman_girl:{keywords:["home","parent","people","human","child"],char:"\u{1f469}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_woman_girl_boy:{keywords:["home","parent","people","human","children"],char:"\u{1f469}\u200d\u{1f467}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_woman_boy_boy:{keywords:["home","parent","people","human","children"],char:"\u{1f469}\u200d\u{1f466}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_woman_girl_girl:{keywords:["home","parent","people","human","children"],char:"\u{1f469}\u200d\u{1f467}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_man_boy:{keywords:["home","parent","people","human","child"],char:"\u{1f468}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_girl:{keywords:["home","parent","people","human","child"],char:"\u{1f468}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},family_man_girl_boy:{keywords:["home","parent","people","human","children"],char:"\u{1f468}\u200d\u{1f467}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_boy_boy:{keywords:["home","parent","people","human","children"],char:"\u{1f468}\u200d\u{1f466}\u200d\u{1f466}",fitzpatrick_scale:!1,category:"people"},family_man_girl_girl:{keywords:["home","parent","people","human","children"],char:"\u{1f468}\u200d\u{1f467}\u200d\u{1f467}",fitzpatrick_scale:!1,category:"people"},yarn:{keywords:["ball","crochet","knit"],char:"\u{1f9f6}",fitzpatrick_scale:!1,category:"people"},thread:{keywords:["needle","sewing","spool","string"],char:"\u{1f9f5}",fitzpatrick_scale:!1,category:"people"},coat:{keywords:["jacket"],char:"\u{1f9e5}",fitzpatrick_scale:!1,category:"people"},labcoat:{keywords:["doctor","experiment","scientist","chemist"],char:"\u{1f97c}",fitzpatrick_scale:!1,category:"people"},womans_clothes:{keywords:["fashion","shopping_bags","female"],char:"\u{1f45a}",fitzpatrick_scale:!1,category:"people"},tshirt:{keywords:["fashion","cloth","casual","shirt","tee"],char:"\u{1f455}",fitzpatrick_scale:!1,category:"people"},jeans:{keywords:["fashion","shopping"],char:"\u{1f456}",fitzpatrick_scale:!1,category:"people"},necktie:{keywords:["shirt","suitup","formal","fashion","cloth","business"],char:"\u{1f454}",fitzpatrick_scale:!1,category:"people"},dress:{keywords:["clothes","fashion","shopping"],char:"\u{1f457}",fitzpatrick_scale:!1,category:"people"},bikini:{keywords:["swimming","female","woman","girl","fashion","beach","summer"],char:"\u{1f459}",fitzpatrick_scale:!1,category:"people"},kimono:{keywords:["dress","fashion","women","female","japanese"],char:"\u{1f458}",fitzpatrick_scale:!1,category:"people"},lipstick:{keywords:["female","girl","fashion","woman"],char:"\u{1f484}",fitzpatrick_scale:!1,category:"people"},kiss:{keywords:["face","lips","love","like","affection","valentines"],char:"\u{1f48b}",fitzpatrick_scale:!1,category:"people"},footprints:{keywords:["feet","tracking","walking","beach"],char:"\u{1f463}",fitzpatrick_scale:!1,category:"people"},flat_shoe:{keywords:["ballet","slip-on","slipper"],char:"\u{1f97f}",fitzpatrick_scale:!1,category:"people"},high_heel:{keywords:["fashion","shoes","female","pumps","stiletto"],char:"\u{1f460}",fitzpatrick_scale:!1,category:"people"},sandal:{keywords:["shoes","fashion","flip flops"],char:"\u{1f461}",fitzpatrick_scale:!1,category:"people"},boot:{keywords:["shoes","fashion"],char:"\u{1f462}",fitzpatrick_scale:!1,category:"people"},mans_shoe:{keywords:["fashion","male"],char:"\u{1f45e}",fitzpatrick_scale:!1,category:"people"},athletic_shoe:{keywords:["shoes","sports","sneakers"],char:"\u{1f45f}",fitzpatrick_scale:!1,category:"people"},hiking_boot:{keywords:["backpacking","camping","hiking"],char:"\u{1f97e}",fitzpatrick_scale:!1,category:"people"},socks:{keywords:["stockings","clothes"],char:"\u{1f9e6}",fitzpatrick_scale:!1,category:"people"},gloves:{keywords:["hands","winter","clothes"],char:"\u{1f9e4}",fitzpatrick_scale:!1,category:"people"},scarf:{keywords:["neck","winter","clothes"],char:"\u{1f9e3}",fitzpatrick_scale:!1,category:"people"},womans_hat:{keywords:["fashion","accessories","female","lady","spring"],char:"\u{1f452}",fitzpatrick_scale:!1,category:"people"},tophat:{keywords:["magic","gentleman","classy","circus"],char:"\u{1f3a9}",fitzpatrick_scale:!1,category:"people"},billed_hat:{keywords:["cap","baseball"],char:"\u{1f9e2}",fitzpatrick_scale:!1,category:"people"},rescue_worker_helmet:{keywords:["construction","build"],char:"\u26d1",fitzpatrick_scale:!1,category:"people"},mortar_board:{keywords:["school","college","degree","university","graduation","cap","hat","legal","learn","education"],char:"\u{1f393}",fitzpatrick_scale:!1,category:"people"},crown:{keywords:["king","kod","leader","royalty","lord"],char:"\u{1f451}",fitzpatrick_scale:!1,category:"people"},school_satchel:{keywords:["student","education","bag","backpack"],char:"\u{1f392}",fitzpatrick_scale:!1,category:"people"},luggage:{keywords:["packing","travel"],char:"\u{1f9f3}",fitzpatrick_scale:!1,category:"people"},pouch:{keywords:["bag","accessories","shopping"],char:"\u{1f45d}",fitzpatrick_scale:!1,category:"people"},purse:{keywords:["fashion","accessories","money","sales","shopping"],char:"\u{1f45b}",fitzpatrick_scale:!1,category:"people"},handbag:{keywords:["fashion","accessory","accessories","shopping"],char:"\u{1f45c}",fitzpatrick_scale:!1,category:"people"},briefcase:{keywords:["business","documents","work","law","legal","job","career"],char:"\u{1f4bc}",fitzpatrick_scale:!1,category:"people"},eyeglasses:{keywords:["fashion","accessories","eyesight","nerdy","dork","geek"],char:"\u{1f453}",fitzpatrick_scale:!1,category:"people"},dark_sunglasses:{keywords:["face","cool","accessories"],char:"\u{1f576}",fitzpatrick_scale:!1,category:"people"},goggles:{keywords:["eyes","protection","safety"],char:"\u{1f97d}",fitzpatrick_scale:!1,category:"people"},ring:{keywords:["wedding","propose","marriage","valentines","diamond","fashion","jewelry","gem","engagement"],char:"\u{1f48d}",fitzpatrick_scale:!1,category:"people"},closed_umbrella:{keywords:["weather","rain","drizzle"],char:"\u{1f302}",fitzpatrick_scale:!1,category:"people"},dog:{keywords:["animal","friend","nature","woof","puppy","pet","faithful"],char:"\u{1f436}",fitzpatrick_scale:!1,category:"animals_and_nature"},cat:{keywords:["animal","meow","nature","pet","kitten"],char:"\u{1f431}",fitzpatrick_scale:!1,category:"animals_and_nature"},mouse:{keywords:["animal","nature","cheese_wedge","rodent"],char:"\u{1f42d}",fitzpatrick_scale:!1,category:"animals_and_nature"},hamster:{keywords:["animal","nature"],char:"\u{1f439}",fitzpatrick_scale:!1,category:"animals_and_nature"},rabbit:{keywords:["animal","nature","pet","spring","magic","bunny"],char:"\u{1f430}",fitzpatrick_scale:!1,category:"animals_and_nature"},fox_face:{keywords:["animal","nature","face"],char:"\u{1f98a}",fitzpatrick_scale:!1,category:"animals_and_nature"},bear:{keywords:["animal","nature","wild"],char:"\u{1f43b}",fitzpatrick_scale:!1,category:"animals_and_nature"},panda_face:{keywords:["animal","nature","panda"],char:"\u{1f43c}",fitzpatrick_scale:!1,category:"animals_and_nature"},koala:{keywords:["animal","nature"],char:"\u{1f428}",fitzpatrick_scale:!1,category:"animals_and_nature"},tiger:{keywords:["animal","cat","danger","wild","nature","roar"],char:"\u{1f42f}",fitzpatrick_scale:!1,category:"animals_and_nature"},lion:{keywords:["animal","nature"],char:"\u{1f981}",fitzpatrick_scale:!1,category:"animals_and_nature"},cow:{keywords:["beef","ox","animal","nature","moo","milk"],char:"\u{1f42e}",fitzpatrick_scale:!1,category:"animals_and_nature"},pig:{keywords:["animal","oink","nature"],char:"\u{1f437}",fitzpatrick_scale:!1,category:"animals_and_nature"},pig_nose:{keywords:["animal","oink"],char:"\u{1f43d}",fitzpatrick_scale:!1,category:"animals_and_nature"},frog:{keywords:["animal","nature","croak","toad"],char:"\u{1f438}",fitzpatrick_scale:!1,category:"animals_and_nature"},squid:{keywords:["animal","nature","ocean","sea"],char:"\u{1f991}",fitzpatrick_scale:!1,category:"animals_and_nature"},octopus:{keywords:["animal","creature","ocean","sea","nature","beach"],char:"\u{1f419}",fitzpatrick_scale:!1,category:"animals_and_nature"},shrimp:{keywords:["animal","ocean","nature","seafood"],char:"\u{1f990}",fitzpatrick_scale:!1,category:"animals_and_nature"},monkey_face:{keywords:["animal","nature","circus"],char:"\u{1f435}",fitzpatrick_scale:!1,category:"animals_and_nature"},gorilla:{keywords:["animal","nature","circus"],char:"\u{1f98d}",fitzpatrick_scale:!1,category:"animals_and_nature"},see_no_evil:{keywords:["monkey","animal","nature","haha"],char:"\u{1f648}",fitzpatrick_scale:!1,category:"animals_and_nature"},hear_no_evil:{keywords:["animal","monkey","nature"],char:"\u{1f649}",fitzpatrick_scale:!1,category:"animals_and_nature"},speak_no_evil:{keywords:["monkey","animal","nature","omg"],char:"\u{1f64a}",fitzpatrick_scale:!1,category:"animals_and_nature"},monkey:{keywords:["animal","nature","banana","circus"],char:"\u{1f412}",fitzpatrick_scale:!1,category:"animals_and_nature"},chicken:{keywords:["animal","cluck","nature","bird"],char:"\u{1f414}",fitzpatrick_scale:!1,category:"animals_and_nature"},penguin:{keywords:["animal","nature"],char:"\u{1f427}",fitzpatrick_scale:!1,category:"animals_and_nature"},bird:{keywords:["animal","nature","fly","tweet","spring"],char:"\u{1f426}",fitzpatrick_scale:!1,category:"animals_and_nature"},baby_chick:{keywords:["animal","chicken","bird"],char:"\u{1f424}",fitzpatrick_scale:!1,category:"animals_and_nature"},hatching_chick:{keywords:["animal","chicken","egg","born","baby","bird"],char:"\u{1f423}",fitzpatrick_scale:!1,category:"animals_and_nature"},hatched_chick:{keywords:["animal","chicken","baby","bird"],char:"\u{1f425}",fitzpatrick_scale:!1,category:"animals_and_nature"},duck:{keywords:["animal","nature","bird","mallard"],char:"\u{1f986}",fitzpatrick_scale:!1,category:"animals_and_nature"},eagle:{keywords:["animal","nature","bird"],char:"\u{1f985}",fitzpatrick_scale:!1,category:"animals_and_nature"},owl:{keywords:["animal","nature","bird","hoot"],char:"\u{1f989}",fitzpatrick_scale:!1,category:"animals_and_nature"},bat:{keywords:["animal","nature","blind","vampire"],char:"\u{1f987}",fitzpatrick_scale:!1,category:"animals_and_nature"},wolf:{keywords:["animal","nature","wild"],char:"\u{1f43a}",fitzpatrick_scale:!1,category:"animals_and_nature"},boar:{keywords:["animal","nature"],char:"\u{1f417}",fitzpatrick_scale:!1,category:"animals_and_nature"},horse:{keywords:["animal","brown","nature"],char:"\u{1f434}",fitzpatrick_scale:!1,category:"animals_and_nature"},unicorn:{keywords:["animal","nature","mystical"],char:"\u{1f984}",fitzpatrick_scale:!1,category:"animals_and_nature"},honeybee:{keywords:["animal","insect","nature","bug","spring","honey"],char:"\u{1f41d}",fitzpatrick_scale:!1,category:"animals_and_nature"},bug:{keywords:["animal","insect","nature","worm"],char:"\u{1f41b}",fitzpatrick_scale:!1,category:"animals_and_nature"},butterfly:{keywords:["animal","insect","nature","caterpillar"],char:"\u{1f98b}",fitzpatrick_scale:!1,category:"animals_and_nature"},snail:{keywords:["slow","animal","shell"],char:"\u{1f40c}",fitzpatrick_scale:!1,category:"animals_and_nature"},beetle:{keywords:["animal","insect","nature","ladybug"],char:"\u{1f41e}",fitzpatrick_scale:!1,category:"animals_and_nature"},ant:{keywords:["animal","insect","nature","bug"],char:"\u{1f41c}",fitzpatrick_scale:!1,category:"animals_and_nature"},grasshopper:{keywords:["animal","cricket","chirp"],char:"\u{1f997}",fitzpatrick_scale:!1,category:"animals_and_nature"},spider:{keywords:["animal","arachnid"],char:"\u{1f577}",fitzpatrick_scale:!1,category:"animals_and_nature"},scorpion:{keywords:["animal","arachnid"],char:"\u{1f982}",fitzpatrick_scale:!1,category:"animals_and_nature"},crab:{keywords:["animal","crustacean"],char:"\u{1f980}",fitzpatrick_scale:!1,category:"animals_and_nature"},snake:{keywords:["animal","evil","nature","hiss","python"],char:"\u{1f40d}",fitzpatrick_scale:!1,category:"animals_and_nature"},lizard:{keywords:["animal","nature","reptile"],char:"\u{1f98e}",fitzpatrick_scale:!1,category:"animals_and_nature"},"t-rex":{keywords:["animal","nature","dinosaur","tyrannosaurus","extinct"],char:"\u{1f996}",fitzpatrick_scale:!1,category:"animals_and_nature"},sauropod:{keywords:["animal","nature","dinosaur","brachiosaurus","brontosaurus","diplodocus","extinct"],char:"\u{1f995}",fitzpatrick_scale:!1,category:"animals_and_nature"},turtle:{keywords:["animal","slow","nature","tortoise"],char:"\u{1f422}",fitzpatrick_scale:!1,category:"animals_and_nature"},tropical_fish:{keywords:["animal","swim","ocean","beach","nemo"],char:"\u{1f420}",fitzpatrick_scale:!1,category:"animals_and_nature"},fish:{keywords:["animal","food","nature"],char:"\u{1f41f}",fitzpatrick_scale:!1,category:"animals_and_nature"},blowfish:{keywords:["animal","nature","food","sea","ocean"],char:"\u{1f421}",fitzpatrick_scale:!1,category:"animals_and_nature"},dolphin:{keywords:["animal","nature","fish","sea","ocean","flipper","fins","beach"],char:"\u{1f42c}",fitzpatrick_scale:!1,category:"animals_and_nature"},shark:{keywords:["animal","nature","fish","sea","ocean","jaws","fins","beach"],char:"\u{1f988}",fitzpatrick_scale:!1,category:"animals_and_nature"},whale:{keywords:["animal","nature","sea","ocean"],char:"\u{1f433}",fitzpatrick_scale:!1,category:"animals_and_nature"},whale2:{keywords:["animal","nature","sea","ocean"],char:"\u{1f40b}",fitzpatrick_scale:!1,category:"animals_and_nature"},crocodile:{keywords:["animal","nature","reptile","lizard","alligator"],char:"\u{1f40a}",fitzpatrick_scale:!1,category:"animals_and_nature"},leopard:{keywords:["animal","nature"],char:"\u{1f406}",fitzpatrick_scale:!1,category:"animals_and_nature"},zebra:{keywords:["animal","nature","stripes","safari"],char:"\u{1f993}",fitzpatrick_scale:!1,category:"animals_and_nature"},tiger2:{keywords:["animal","nature","roar"],char:"\u{1f405}",fitzpatrick_scale:!1,category:"animals_and_nature"},water_buffalo:{keywords:["animal","nature","ox","cow"],char:"\u{1f403}",fitzpatrick_scale:!1,category:"animals_and_nature"},ox:{keywords:["animal","cow","beef"],char:"\u{1f402}",fitzpatrick_scale:!1,category:"animals_and_nature"},cow2:{keywords:["beef","ox","animal","nature","moo","milk"],char:"\u{1f404}",fitzpatrick_scale:!1,category:"animals_and_nature"},deer:{keywords:["animal","nature","horns","venison"],char:"\u{1f98c}",fitzpatrick_scale:!1,category:"animals_and_nature"},dromedary_camel:{keywords:["animal","hot","desert","hump"],char:"\u{1f42a}",fitzpatrick_scale:!1,category:"animals_and_nature"},camel:{keywords:["animal","nature","hot","desert","hump"],char:"\u{1f42b}",fitzpatrick_scale:!1,category:"animals_and_nature"},giraffe:{keywords:["animal","nature","spots","safari"],char:"\u{1f992}",fitzpatrick_scale:!1,category:"animals_and_nature"},elephant:{keywords:["animal","nature","nose","th","circus"],char:"\u{1f418}",fitzpatrick_scale:!1,category:"animals_and_nature"},rhinoceros:{keywords:["animal","nature","horn"],char:"\u{1f98f}",fitzpatrick_scale:!1,category:"animals_and_nature"},goat:{keywords:["animal","nature"],char:"\u{1f410}",fitzpatrick_scale:!1,category:"animals_and_nature"},ram:{keywords:["animal","sheep","nature"],char:"\u{1f40f}",fitzpatrick_scale:!1,category:"animals_and_nature"},sheep:{keywords:["animal","nature","wool","shipit"],char:"\u{1f411}",fitzpatrick_scale:!1,category:"animals_and_nature"},racehorse:{keywords:["animal","gamble","luck"],char:"\u{1f40e}",fitzpatrick_scale:!1,category:"animals_and_nature"},pig2:{keywords:["animal","nature"],char:"\u{1f416}",fitzpatrick_scale:!1,category:"animals_and_nature"},rat:{keywords:["animal","mouse","rodent"],char:"\u{1f400}",fitzpatrick_scale:!1,category:"animals_and_nature"},mouse2:{keywords:["animal","nature","rodent"],char:"\u{1f401}",fitzpatrick_scale:!1,category:"animals_and_nature"},rooster:{keywords:["animal","nature","chicken"],char:"\u{1f413}",fitzpatrick_scale:!1,category:"animals_and_nature"},turkey:{keywords:["animal","bird"],char:"\u{1f983}",fitzpatrick_scale:!1,category:"animals_and_nature"},dove:{keywords:["animal","bird"],char:"\u{1f54a}",fitzpatrick_scale:!1,category:"animals_and_nature"},dog2:{keywords:["animal","nature","friend","doge","pet","faithful"],char:"\u{1f415}",fitzpatrick_scale:!1,category:"animals_and_nature"},poodle:{keywords:["dog","animal","101","nature","pet"],char:"\u{1f429}",fitzpatrick_scale:!1,category:"animals_and_nature"},cat2:{keywords:["animal","meow","pet","cats"],char:"\u{1f408}",fitzpatrick_scale:!1,category:"animals_and_nature"},rabbit2:{keywords:["animal","nature","pet","magic","spring"],char:"\u{1f407}",fitzpatrick_scale:!1,category:"animals_and_nature"},chipmunk:{keywords:["animal","nature","rodent","squirrel"],char:"\u{1f43f}",fitzpatrick_scale:!1,category:"animals_and_nature"},hedgehog:{keywords:["animal","nature","spiny"],char:"\u{1f994}",fitzpatrick_scale:!1,category:"animals_and_nature"},raccoon:{keywords:["animal","nature"],char:"\u{1f99d}",fitzpatrick_scale:!1,category:"animals_and_nature"},llama:{keywords:["animal","nature","alpaca"],char:"\u{1f999}",fitzpatrick_scale:!1,category:"animals_and_nature"},hippopotamus:{keywords:["animal","nature"],char:"\u{1f99b}",fitzpatrick_scale:!1,category:"animals_and_nature"},kangaroo:{keywords:["animal","nature","australia","joey","hop","marsupial"],char:"\u{1f998}",fitzpatrick_scale:!1,category:"animals_and_nature"},badger:{keywords:["animal","nature","honey"],char:"\u{1f9a1}",fitzpatrick_scale:!1,category:"animals_and_nature"},swan:{keywords:["animal","nature","bird"],char:"\u{1f9a2}",fitzpatrick_scale:!1,category:"animals_and_nature"},peacock:{keywords:["animal","nature","peahen","bird"],char:"\u{1f99a}",fitzpatrick_scale:!1,category:"animals_and_nature"},parrot:{keywords:["animal","nature","bird","pirate","talk"],char:"\u{1f99c}",fitzpatrick_scale:!1,category:"animals_and_nature"},lobster:{keywords:["animal","nature","bisque","claws","seafood"],char:"\u{1f99e}",fitzpatrick_scale:!1,category:"animals_and_nature"},mosquito:{keywords:["animal","nature","insect","malaria"],char:"\u{1f99f}",fitzpatrick_scale:!1,category:"animals_and_nature"},paw_prints:{keywords:["animal","tracking","footprints","dog","cat","pet","feet"],char:"\u{1f43e}",fitzpatrick_scale:!1,category:"animals_and_nature"},dragon:{keywords:["animal","myth","nature","chinese","green"],char:"\u{1f409}",fitzpatrick_scale:!1,category:"animals_and_nature"},dragon_face:{keywords:["animal","myth","nature","chinese","green"],char:"\u{1f432}",fitzpatrick_scale:!1,category:"animals_and_nature"},cactus:{keywords:["vegetable","plant","nature"],char:"\u{1f335}",fitzpatrick_scale:!1,category:"animals_and_nature"},christmas_tree:{keywords:["festival","vacation","december","xmas","celebration"],char:"\u{1f384}",fitzpatrick_scale:!1,category:"animals_and_nature"},evergreen_tree:{keywords:["plant","nature"],char:"\u{1f332}",fitzpatrick_scale:!1,category:"animals_and_nature"},deciduous_tree:{keywords:["plant","nature"],char:"\u{1f333}",fitzpatrick_scale:!1,category:"animals_and_nature"},palm_tree:{keywords:["plant","vegetable","nature","summer","beach","mojito","tropical"],char:"\u{1f334}",fitzpatrick_scale:!1,category:"animals_and_nature"},seedling:{keywords:["plant","nature","grass","lawn","spring"],char:"\u{1f331}",fitzpatrick_scale:!1,category:"animals_and_nature"},herb:{keywords:["vegetable","plant","medicine","weed","grass","lawn"],char:"\u{1f33f}",fitzpatrick_scale:!1,category:"animals_and_nature"},shamrock:{keywords:["vegetable","plant","nature","irish","clover"],char:"\u2618",fitzpatrick_scale:!1,category:"animals_and_nature"},four_leaf_clover:{keywords:["vegetable","plant","nature","lucky","irish"],char:"\u{1f340}",fitzpatrick_scale:!1,category:"animals_and_nature"},bamboo:{keywords:["plant","nature","vegetable","panda","pine_decoration"],char:"\u{1f38d}",fitzpatrick_scale:!1,category:"animals_and_nature"},tanabata_tree:{keywords:["plant","nature","branch","summer"],char:"\u{1f38b}",fitzpatrick_scale:!1,category:"animals_and_nature"},leaves:{keywords:["nature","plant","tree","vegetable","grass","lawn","spring"],char:"\u{1f343}",fitzpatrick_scale:!1,category:"animals_and_nature"},fallen_leaf:{keywords:["nature","plant","vegetable","leaves"],char:"\u{1f342}",fitzpatrick_scale:!1,category:"animals_and_nature"},maple_leaf:{keywords:["nature","plant","vegetable","ca","fall"],char:"\u{1f341}",fitzpatrick_scale:!1,category:"animals_and_nature"},ear_of_rice:{keywords:["nature","plant"],char:"\u{1f33e}",fitzpatrick_scale:!1,category:"animals_and_nature"},hibiscus:{keywords:["plant","vegetable","flowers","beach"],char:"\u{1f33a}",fitzpatrick_scale:!1,category:"animals_and_nature"},sunflower:{keywords:["nature","plant","fall"],char:"\u{1f33b}",fitzpatrick_scale:!1,category:"animals_and_nature"},rose:{keywords:["flowers","valentines","love","spring"],char:"\u{1f339}",fitzpatrick_scale:!1,category:"animals_and_nature"},wilted_flower:{keywords:["plant","nature","flower"],char:"\u{1f940}",fitzpatrick_scale:!1,category:"animals_and_nature"},tulip:{keywords:["flowers","plant","nature","summer","spring"],char:"\u{1f337}",fitzpatrick_scale:!1,category:"animals_and_nature"},blossom:{keywords:["nature","flowers","yellow"],char:"\u{1f33c}",fitzpatrick_scale:!1,category:"animals_and_nature"},cherry_blossom:{keywords:["nature","plant","spring","flower"],char:"\u{1f338}",fitzpatrick_scale:!1,category:"animals_and_nature"},bouquet:{keywords:["flowers","nature","spring"],char:"\u{1f490}",fitzpatrick_scale:!1,category:"animals_and_nature"},mushroom:{keywords:["plant","vegetable"],char:"\u{1f344}",fitzpatrick_scale:!1,category:"animals_and_nature"},chestnut:{keywords:["food","squirrel"],char:"\u{1f330}",fitzpatrick_scale:!1,category:"animals_and_nature"},jack_o_lantern:{keywords:["halloween","light","pumpkin","creepy","fall"],char:"\u{1f383}",fitzpatrick_scale:!1,category:"animals_and_nature"},shell:{keywords:["nature","sea","beach"],char:"\u{1f41a}",fitzpatrick_scale:!1,category:"animals_and_nature"},spider_web:{keywords:["animal","insect","arachnid","silk"],char:"\u{1f578}",fitzpatrick_scale:!1,category:"animals_and_nature"},earth_americas:{keywords:["globe","world","USA","international"],char:"\u{1f30e}",fitzpatrick_scale:!1,category:"animals_and_nature"},earth_africa:{keywords:["globe","world","international"],char:"\u{1f30d}",fitzpatrick_scale:!1,category:"animals_and_nature"},earth_asia:{keywords:["globe","world","east","international"],char:"\u{1f30f}",fitzpatrick_scale:!1,category:"animals_and_nature"},full_moon:{keywords:["nature","yellow","twilight","planet","space","night","evening","sleep"],char:"\u{1f315}",fitzpatrick_scale:!1,category:"animals_and_nature"},waning_gibbous_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep","waxing_gibbous_moon"],char:"\u{1f316}",fitzpatrick_scale:!1,category:"animals_and_nature"},last_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f317}",fitzpatrick_scale:!1,category:"animals_and_nature"},waning_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f318}",fitzpatrick_scale:!1,category:"animals_and_nature"},new_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f311}",fitzpatrick_scale:!1,category:"animals_and_nature"},waxing_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f312}",fitzpatrick_scale:!1,category:"animals_and_nature"},first_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f313}",fitzpatrick_scale:!1,category:"animals_and_nature"},waxing_gibbous_moon:{keywords:["nature","night","sky","gray","twilight","planet","space","evening","sleep"],char:"\u{1f314}",fitzpatrick_scale:!1,category:"animals_and_nature"},new_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f31a}",fitzpatrick_scale:!1,category:"animals_and_nature"},full_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f31d}",fitzpatrick_scale:!1,category:"animals_and_nature"},first_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f31b}",fitzpatrick_scale:!1,category:"animals_and_nature"},last_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:"\u{1f31c}",fitzpatrick_scale:!1,category:"animals_and_nature"},sun_with_face:{keywords:["nature","morning","sky"],char:"\u{1f31e}",fitzpatrick_scale:!1,category:"animals_and_nature"},crescent_moon:{keywords:["night","sleep","sky","evening","magic"],char:"\u{1f319}",fitzpatrick_scale:!1,category:"animals_and_nature"},star:{keywords:["night","yellow"],char:"\u2b50",fitzpatrick_scale:!1,category:"animals_and_nature"},star2:{keywords:["night","sparkle","awesome","good","magic"],char:"\u{1f31f}",fitzpatrick_scale:!1,category:"animals_and_nature"},dizzy:{keywords:["star","sparkle","shoot","magic"],char:"\u{1f4ab}",fitzpatrick_scale:!1,category:"animals_and_nature"},sparkles:{keywords:["stars","shine","shiny","cool","awesome","good","magic"],char:"\u2728",fitzpatrick_scale:!1,category:"animals_and_nature"},comet:{keywords:["space"],char:"\u2604",fitzpatrick_scale:!1,category:"animals_and_nature"},sunny:{keywords:["weather","nature","brightness","summer","beach","spring"],char:"\u2600\ufe0f",fitzpatrick_scale:!1,category:"animals_and_nature"},sun_behind_small_cloud:{keywords:["weather"],char:"\u{1f324}",fitzpatrick_scale:!1,category:"animals_and_nature"},partly_sunny:{keywords:["weather","nature","cloudy","morning","fall","spring"],char:"\u26c5",fitzpatrick_scale:!1,category:"animals_and_nature"},sun_behind_large_cloud:{keywords:["weather"],char:"\u{1f325}",fitzpatrick_scale:!1,category:"animals_and_nature"},sun_behind_rain_cloud:{keywords:["weather"],char:"\u{1f326}",fitzpatrick_scale:!1,category:"animals_and_nature"},cloud:{keywords:["weather","sky"],char:"\u2601\ufe0f",fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_rain:{keywords:["weather"],char:"\u{1f327}",fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_lightning_and_rain:{keywords:["weather","lightning"],char:"\u26c8",fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_lightning:{keywords:["weather","thunder"],char:"\u{1f329}",fitzpatrick_scale:!1,category:"animals_and_nature"},zap:{keywords:["thunder","weather","lightning bolt","fast"],char:"\u26a1",fitzpatrick_scale:!1,category:"animals_and_nature"},fire:{keywords:["hot","cook","flame"],char:"\u{1f525}",fitzpatrick_scale:!1,category:"animals_and_nature"},boom:{keywords:["bomb","explode","explosion","collision","blown"],char:"\u{1f4a5}",fitzpatrick_scale:!1,category:"animals_and_nature"},snowflake:{keywords:["winter","season","cold","weather","christmas","xmas"],char:"\u2744\ufe0f",fitzpatrick_scale:!1,category:"animals_and_nature"},cloud_with_snow:{keywords:["weather"],char:"\u{1f328}",fitzpatrick_scale:!1,category:"animals_and_nature"},snowman:{keywords:["winter","season","cold","weather","christmas","xmas","frozen","without_snow"],char:"\u26c4",fitzpatrick_scale:!1,category:"animals_and_nature"},snowman_with_snow:{keywords:["winter","season","cold","weather","christmas","xmas","frozen"],char:"\u2603",fitzpatrick_scale:!1,category:"animals_and_nature"},wind_face:{keywords:["gust","air"],char:"\u{1f32c}",fitzpatrick_scale:!1,category:"animals_and_nature"},dash:{keywords:["wind","air","fast","shoo","fart","smoke","puff"],char:"\u{1f4a8}",fitzpatrick_scale:!1,category:"animals_and_nature"},tornado:{keywords:["weather","cyclone","twister"],char:"\u{1f32a}",fitzpatrick_scale:!1,category:"animals_and_nature"},fog:{keywords:["weather"],char:"\u{1f32b}",fitzpatrick_scale:!1,category:"animals_and_nature"},open_umbrella:{keywords:["weather","spring"],char:"\u2602",fitzpatrick_scale:!1,category:"animals_and_nature"},umbrella:{keywords:["rainy","weather","spring"],char:"\u2614",fitzpatrick_scale:!1,category:"animals_and_nature"},droplet:{keywords:["water","drip","faucet","spring"],char:"\u{1f4a7}",fitzpatrick_scale:!1,category:"animals_and_nature"},sweat_drops:{keywords:["water","drip","oops"],char:"\u{1f4a6}",fitzpatrick_scale:!1,category:"animals_and_nature"},ocean:{keywords:["sea","water","wave","nature","tsunami","disaster"],char:"\u{1f30a}",fitzpatrick_scale:!1,category:"animals_and_nature"},green_apple:{keywords:["fruit","nature"],char:"\u{1f34f}",fitzpatrick_scale:!1,category:"food_and_drink"},apple:{keywords:["fruit","mac","school"],char:"\u{1f34e}",fitzpatrick_scale:!1,category:"food_and_drink"},pear:{keywords:["fruit","nature","food"],char:"\u{1f350}",fitzpatrick_scale:!1,category:"food_and_drink"},tangerine:{keywords:["food","fruit","nature","orange"],char:"\u{1f34a}",fitzpatrick_scale:!1,category:"food_and_drink"},lemon:{keywords:["fruit","nature"],char:"\u{1f34b}",fitzpatrick_scale:!1,category:"food_and_drink"},banana:{keywords:["fruit","food","monkey"],char:"\u{1f34c}",fitzpatrick_scale:!1,category:"food_and_drink"},watermelon:{keywords:["fruit","food","picnic","summer"],char:"\u{1f349}",fitzpatrick_scale:!1,category:"food_and_drink"},grapes:{keywords:["fruit","food","wine"],char:"\u{1f347}",fitzpatrick_scale:!1,category:"food_and_drink"},strawberry:{keywords:["fruit","food","nature"],char:"\u{1f353}",fitzpatrick_scale:!1,category:"food_and_drink"},melon:{keywords:["fruit","nature","food"],char:"\u{1f348}",fitzpatrick_scale:!1,category:"food_and_drink"},cherries:{keywords:["food","fruit"],char:"\u{1f352}",fitzpatrick_scale:!1,category:"food_and_drink"},peach:{keywords:["fruit","nature","food"],char:"\u{1f351}",fitzpatrick_scale:!1,category:"food_and_drink"},pineapple:{keywords:["fruit","nature","food"],char:"\u{1f34d}",fitzpatrick_scale:!1,category:"food_and_drink"},coconut:{keywords:["fruit","nature","food","palm"],char:"\u{1f965}",fitzpatrick_scale:!1,category:"food_and_drink"},kiwi_fruit:{keywords:["fruit","food"],char:"\u{1f95d}",fitzpatrick_scale:!1,category:"food_and_drink"},mango:{keywords:["fruit","food","tropical"],char:"\u{1f96d}",fitzpatrick_scale:!1,category:"food_and_drink"},avocado:{keywords:["fruit","food"],char:"\u{1f951}",fitzpatrick_scale:!1,category:"food_and_drink"},broccoli:{keywords:["fruit","food","vegetable"],char:"\u{1f966}",fitzpatrick_scale:!1,category:"food_and_drink"},tomato:{keywords:["fruit","vegetable","nature","food"],char:"\u{1f345}",fitzpatrick_scale:!1,category:"food_and_drink"},eggplant:{keywords:["vegetable","nature","food","aubergine"],char:"\u{1f346}",fitzpatrick_scale:!1,category:"food_and_drink"},cucumber:{keywords:["fruit","food","pickle"],char:"\u{1f952}",fitzpatrick_scale:!1,category:"food_and_drink"},carrot:{keywords:["vegetable","food","orange"],char:"\u{1f955}",fitzpatrick_scale:!1,category:"food_and_drink"},hot_pepper:{keywords:["food","spicy","chilli","chili"],char:"\u{1f336}",fitzpatrick_scale:!1,category:"food_and_drink"},potato:{keywords:["food","tuber","vegatable","starch"],char:"\u{1f954}",fitzpatrick_scale:!1,category:"food_and_drink"},corn:{keywords:["food","vegetable","plant"],char:"\u{1f33d}",fitzpatrick_scale:!1,category:"food_and_drink"},leafy_greens:{keywords:["food","vegetable","plant","bok choy","cabbage","kale","lettuce"],char:"\u{1f96c}",fitzpatrick_scale:!1,category:"food_and_drink"},sweet_potato:{keywords:["food","nature"],char:"\u{1f360}",fitzpatrick_scale:!1,category:"food_and_drink"},peanuts:{keywords:["food","nut"],char:"\u{1f95c}",fitzpatrick_scale:!1,category:"food_and_drink"},honey_pot:{keywords:["bees","sweet","kitchen"],char:"\u{1f36f}",fitzpatrick_scale:!1,category:"food_and_drink"},croissant:{keywords:["food","bread","french"],char:"\u{1f950}",fitzpatrick_scale:!1,category:"food_and_drink"},bread:{keywords:["food","wheat","breakfast","toast"],char:"\u{1f35e}",fitzpatrick_scale:!1,category:"food_and_drink"},baguette_bread:{keywords:["food","bread","french"],char:"\u{1f956}",fitzpatrick_scale:!1,category:"food_and_drink"},bagel:{keywords:["food","bread","bakery","schmear"],char:"\u{1f96f}",fitzpatrick_scale:!1,category:"food_and_drink"},pretzel:{keywords:["food","bread","twisted"],char:"\u{1f968}",fitzpatrick_scale:!1,category:"food_and_drink"},cheese:{keywords:["food","chadder"],char:"\u{1f9c0}",fitzpatrick_scale:!1,category:"food_and_drink"},egg:{keywords:["food","chicken","breakfast"],char:"\u{1f95a}",fitzpatrick_scale:!1,category:"food_and_drink"},bacon:{keywords:["food","breakfast","pork","pig","meat"],char:"\u{1f953}",fitzpatrick_scale:!1,category:"food_and_drink"},steak:{keywords:["food","cow","meat","cut","chop","lambchop","porkchop"],char:"\u{1f969}",fitzpatrick_scale:!1,category:"food_and_drink"},pancakes:{keywords:["food","breakfast","flapjacks","hotcakes"],char:"\u{1f95e}",fitzpatrick_scale:!1,category:"food_and_drink"},poultry_leg:{keywords:["food","meat","drumstick","bird","chicken","turkey"],char:"\u{1f357}",fitzpatrick_scale:!1,category:"food_and_drink"},meat_on_bone:{keywords:["good","food","drumstick"],char:"\u{1f356}",fitzpatrick_scale:!1,category:"food_and_drink"},bone:{keywords:["skeleton"],char:"\u{1f9b4}",fitzpatrick_scale:!1,category:"food_and_drink"},fried_shrimp:{keywords:["food","animal","appetizer","summer"],char:"\u{1f364}",fitzpatrick_scale:!1,category:"food_and_drink"},fried_egg:{keywords:["food","breakfast","kitchen","egg"],char:"\u{1f373}",fitzpatrick_scale:!1,category:"food_and_drink"},hamburger:{keywords:["meat","fast food","beef","cheeseburger","mcdonalds","burger king"],char:"\u{1f354}",fitzpatrick_scale:!1,category:"food_and_drink"},fries:{keywords:["chips","snack","fast food"],char:"\u{1f35f}",fitzpatrick_scale:!1,category:"food_and_drink"},stuffed_flatbread:{keywords:["food","flatbread","stuffed","gyro"],char:"\u{1f959}",fitzpatrick_scale:!1,category:"food_and_drink"},hotdog:{keywords:["food","frankfurter"],char:"\u{1f32d}",fitzpatrick_scale:!1,category:"food_and_drink"},pizza:{keywords:["food","party"],char:"\u{1f355}",fitzpatrick_scale:!1,category:"food_and_drink"},sandwich:{keywords:["food","lunch","bread"],char:"\u{1f96a}",fitzpatrick_scale:!1,category:"food_and_drink"},canned_food:{keywords:["food","soup"],char:"\u{1f96b}",fitzpatrick_scale:!1,category:"food_and_drink"},spaghetti:{keywords:["food","italian","noodle"],char:"\u{1f35d}",fitzpatrick_scale:!1,category:"food_and_drink"},taco:{keywords:["food","mexican"],char:"\u{1f32e}",fitzpatrick_scale:!1,category:"food_and_drink"},burrito:{keywords:["food","mexican"],char:"\u{1f32f}",fitzpatrick_scale:!1,category:"food_and_drink"},green_salad:{keywords:["food","healthy","lettuce"],char:"\u{1f957}",fitzpatrick_scale:!1,category:"food_and_drink"},shallow_pan_of_food:{keywords:["food","cooking","casserole","paella"],char:"\u{1f958}",fitzpatrick_scale:!1,category:"food_and_drink"},ramen:{keywords:["food","japanese","noodle","chopsticks"],char:"\u{1f35c}",fitzpatrick_scale:!1,category:"food_and_drink"},stew:{keywords:["food","meat","soup"],char:"\u{1f372}",fitzpatrick_scale:!1,category:"food_and_drink"},fish_cake:{keywords:["food","japan","sea","beach","narutomaki","pink","swirl","kamaboko","surimi","ramen"],char:"\u{1f365}",fitzpatrick_scale:!1,category:"food_and_drink"},fortune_cookie:{keywords:["food","prophecy"],char:"\u{1f960}",fitzpatrick_scale:!1,category:"food_and_drink"},sushi:{keywords:["food","fish","japanese","rice"],char:"\u{1f363}",fitzpatrick_scale:!1,category:"food_and_drink"},bento:{keywords:["food","japanese","box"],char:"\u{1f371}",fitzpatrick_scale:!1,category:"food_and_drink"},curry:{keywords:["food","spicy","hot","indian"],char:"\u{1f35b}",fitzpatrick_scale:!1,category:"food_and_drink"},rice_ball:{keywords:["food","japanese"],char:"\u{1f359}",fitzpatrick_scale:!1,category:"food_and_drink"},rice:{keywords:["food","china","asian"],char:"\u{1f35a}",fitzpatrick_scale:!1,category:"food_and_drink"},rice_cracker:{keywords:["food","japanese"],char:"\u{1f358}",fitzpatrick_scale:!1,category:"food_and_drink"},oden:{keywords:["food","japanese"],char:"\u{1f362}",fitzpatrick_scale:!1,category:"food_and_drink"},dango:{keywords:["food","dessert","sweet","japanese","barbecue","meat"],char:"\u{1f361}",fitzpatrick_scale:!1,category:"food_and_drink"},shaved_ice:{keywords:["hot","dessert","summer"],char:"\u{1f367}",fitzpatrick_scale:!1,category:"food_and_drink"},ice_cream:{keywords:["food","hot","dessert"],char:"\u{1f368}",fitzpatrick_scale:!1,category:"food_and_drink"},icecream:{keywords:["food","hot","dessert","summer"],char:"\u{1f366}",fitzpatrick_scale:!1,category:"food_and_drink"},pie:{keywords:["food","dessert","pastry"],char:"\u{1f967}",fitzpatrick_scale:!1,category:"food_and_drink"},cake:{keywords:["food","dessert"],char:"\u{1f370}",fitzpatrick_scale:!1,category:"food_and_drink"},cupcake:{keywords:["food","dessert","bakery","sweet"],char:"\u{1f9c1}",fitzpatrick_scale:!1,category:"food_and_drink"},moon_cake:{keywords:["food","autumn"],char:"\u{1f96e}",fitzpatrick_scale:!1,category:"food_and_drink"},birthday:{keywords:["food","dessert","cake"],char:"\u{1f382}",fitzpatrick_scale:!1,category:"food_and_drink"},custard:{keywords:["dessert","food"],char:"\u{1f36e}",fitzpatrick_scale:!1,category:"food_and_drink"},candy:{keywords:["snack","dessert","sweet","lolly"],char:"\u{1f36c}",fitzpatrick_scale:!1,category:"food_and_drink"},lollipop:{keywords:["food","snack","candy","sweet"],char:"\u{1f36d}",fitzpatrick_scale:!1,category:"food_and_drink"},chocolate_bar:{keywords:["food","snack","dessert","sweet"],char:"\u{1f36b}",fitzpatrick_scale:!1,category:"food_and_drink"},popcorn:{keywords:["food","movie theater","films","snack"],char:"\u{1f37f}",fitzpatrick_scale:!1,category:"food_and_drink"},dumpling:{keywords:["food","empanada","pierogi","potsticker"],char:"\u{1f95f}",fitzpatrick_scale:!1,category:"food_and_drink"},doughnut:{keywords:["food","dessert","snack","sweet","donut"],char:"\u{1f369}",fitzpatrick_scale:!1,category:"food_and_drink"},cookie:{keywords:["food","snack","oreo","chocolate","sweet","dessert"],char:"\u{1f36a}",fitzpatrick_scale:!1,category:"food_and_drink"},milk_glass:{keywords:["beverage","drink","cow"],char:"\u{1f95b}",fitzpatrick_scale:!1,category:"food_and_drink"},beer:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:"\u{1f37a}",fitzpatrick_scale:!1,category:"food_and_drink"},beers:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:"\u{1f37b}",fitzpatrick_scale:!1,category:"food_and_drink"},clinking_glasses:{keywords:["beverage","drink","party","alcohol","celebrate","cheers","wine","champagne","toast"],char:"\u{1f942}",fitzpatrick_scale:!1,category:"food_and_drink"},wine_glass:{keywords:["drink","beverage","drunk","alcohol","booze"],char:"\u{1f377}",fitzpatrick_scale:!1,category:"food_and_drink"},tumbler_glass:{keywords:["drink","beverage","drunk","alcohol","liquor","booze","bourbon","scotch","whisky","glass","shot"],char:"\u{1f943}",fitzpatrick_scale:!1,category:"food_and_drink"},cocktail:{keywords:["drink","drunk","alcohol","beverage","booze","mojito"],char:"\u{1f378}",fitzpatrick_scale:!1,category:"food_and_drink"},tropical_drink:{keywords:["beverage","cocktail","summer","beach","alcohol","booze","mojito"],char:"\u{1f379}",fitzpatrick_scale:!1,category:"food_and_drink"},champagne:{keywords:["drink","wine","bottle","celebration"],char:"\u{1f37e}",fitzpatrick_scale:!1,category:"food_and_drink"},sake:{keywords:["wine","drink","drunk","beverage","japanese","alcohol","booze"],char:"\u{1f376}",fitzpatrick_scale:!1,category:"food_and_drink"},tea:{keywords:["drink","bowl","breakfast","green","british"],char:"\u{1f375}",fitzpatrick_scale:!1,category:"food_and_drink"},cup_with_straw:{keywords:["drink","soda"],char:"\u{1f964}",fitzpatrick_scale:!1,category:"food_and_drink"},coffee:{keywords:["beverage","caffeine","latte","espresso"],char:"\u2615",fitzpatrick_scale:!1,category:"food_and_drink"},baby_bottle:{keywords:["food","container","milk"],char:"\u{1f37c}",fitzpatrick_scale:!1,category:"food_and_drink"},salt:{keywords:["condiment","shaker"],char:"\u{1f9c2}",fitzpatrick_scale:!1,category:"food_and_drink"},spoon:{keywords:["cutlery","kitchen","tableware"],char:"\u{1f944}",fitzpatrick_scale:!1,category:"food_and_drink"},fork_and_knife:{keywords:["cutlery","kitchen"],char:"\u{1f374}",fitzpatrick_scale:!1,category:"food_and_drink"},plate_with_cutlery:{keywords:["food","eat","meal","lunch","dinner","restaurant"],char:"\u{1f37d}",fitzpatrick_scale:!1,category:"food_and_drink"},bowl_with_spoon:{keywords:["food","breakfast","cereal","oatmeal","porridge"],char:"\u{1f963}",fitzpatrick_scale:!1,category:"food_and_drink"},takeout_box:{keywords:["food","leftovers"],char:"\u{1f961}",fitzpatrick_scale:!1,category:"food_and_drink"},chopsticks:{keywords:["food"],char:"\u{1f962}",fitzpatrick_scale:!1,category:"food_and_drink"},soccer:{keywords:["sports","football"],char:"\u26bd",fitzpatrick_scale:!1,category:"activity"},basketball:{keywords:["sports","balls","NBA"],char:"\u{1f3c0}",fitzpatrick_scale:!1,category:"activity"},football:{keywords:["sports","balls","NFL"],char:"\u{1f3c8}",fitzpatrick_scale:!1,category:"activity"},baseball:{keywords:["sports","balls"],char:"\u26be",fitzpatrick_scale:!1,category:"activity"},softball:{keywords:["sports","balls"],char:"\u{1f94e}",fitzpatrick_scale:!1,category:"activity"},tennis:{keywords:["sports","balls","green"],char:"\u{1f3be}",fitzpatrick_scale:!1,category:"activity"},volleyball:{keywords:["sports","balls"],char:"\u{1f3d0}",fitzpatrick_scale:!1,category:"activity"},rugby_football:{keywords:["sports","team"],char:"\u{1f3c9}",fitzpatrick_scale:!1,category:"activity"},flying_disc:{keywords:["sports","frisbee","ultimate"],char:"\u{1f94f}",fitzpatrick_scale:!1,category:"activity"},"8ball":{keywords:["pool","hobby","game","luck","magic"],char:"\u{1f3b1}",fitzpatrick_scale:!1,category:"activity"},golf:{keywords:["sports","business","flag","hole","summer"],char:"\u26f3",fitzpatrick_scale:!1,category:"activity"},golfing_woman:{keywords:["sports","business","woman","female"],char:"\u{1f3cc}\ufe0f\u200d\u2640\ufe0f",fitzpatrick_scale:!1,category:"activity"},golfing_man:{keywords:["sports","business"],char:"\u{1f3cc}",fitzpatrick_scale:!0,category:"activity"},ping_pong:{keywords:["sports","pingpong"],char:"\u{1f3d3}",fitzpatrick_scale:!1,category:"activity"},badminton:{keywords:["sports"],char:"\u{1f3f8}",fitzpatrick_scale:!1,category:"activity"},goal_net:{keywords:["sports"],char:"\u{1f945}",fitzpatrick_scale:!1,category:"activity"},ice_hockey:{keywords:["sports"],char:"\u{1f3d2}",fitzpatrick_scale:!1,category:"activity"},field_hockey:{keywords:["sports"],char:"\u{1f3d1}",fitzpatrick_scale:!1,category:"activity"},lacrosse:{keywords:["sports","ball","stick"],char:"\u{1f94d}",fitzpatrick_scale:!1,category:"activity"},cricket:{keywords:["sports"],char:"\u{1f3cf}",fitzpatrick_scale:!1,category:"activity"},ski:{keywords:["sports","winter","cold","snow"],char:"\u{1f3bf}",fitzpatrick_scale:!1,category:"activity"},skier:{keywords:["sports","winter","snow"],char:"\u26f7",fitzpatrick_scale:!1,category:"activity"},snowboarder:{keywords:["sports","winter"],char:"\u{1f3c2}",fitzpatrick_scale:!0,category:"activity"},person_fencing:{keywords:["sports","fencing","sword"],char:"\u{1f93a}",fitzpatrick_scale:!1,category:"activity"},women_wrestling:{keywords:["sports","wrestlers"],char:"\u{1f93c}\u200d\u2640\ufe0f",fitzpatrick_scale:!1,category:"activity"},men_wrestling:{keywords:["sports","wrestlers"],char:"\u{1f93c}\u200d\u2642\ufe0f",fitzpatrick_scale:!1,category:"activity"},woman_cartwheeling:{keywords:["gymnastics"],char:"\u{1f938}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},man_cartwheeling:{keywords:["gymnastics"],char:"\u{1f938}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"activity"},woman_playing_handball:{keywords:["sports"],char:"\u{1f93e}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},man_playing_handball:{keywords:["sports"],char:"\u{1f93e}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"activity"},ice_skate:{keywords:["sports"],char:"\u26f8",fitzpatrick_scale:!1,category:"activity"},curling_stone:{keywords:["sports"],char:"\u{1f94c}",fitzpatrick_scale:!1,category:"activity"},skateboard:{keywords:["board"],char:"\u{1f6f9}",fitzpatrick_scale:!1,category:"activity"},sled:{keywords:["sleigh","luge","toboggan"],char:"\u{1f6f7}",fitzpatrick_scale:!1,category:"activity"},bow_and_arrow:{keywords:["sports"],char:"\u{1f3f9}",fitzpatrick_scale:!1,category:"activity"},fishing_pole_and_fish:{keywords:["food","hobby","summer"],char:"\u{1f3a3}",fitzpatrick_scale:!1,category:"activity"},boxing_glove:{keywords:["sports","fighting"],char:"\u{1f94a}",fitzpatrick_scale:!1,category:"activity"},martial_arts_uniform:{keywords:["judo","karate","taekwondo"],char:"\u{1f94b}",fitzpatrick_scale:!1,category:"activity"},rowing_woman:{keywords:["sports","hobby","water","ship","woman","female"],char:"\u{1f6a3}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},rowing_man:{keywords:["sports","hobby","water","ship"],char:"\u{1f6a3}",fitzpatrick_scale:!0,category:"activity"},climbing_woman:{keywords:["sports","hobby","woman","female","rock"],char:"\u{1f9d7}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},climbing_man:{keywords:["sports","hobby","man","male","rock"],char:"\u{1f9d7}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"activity"},swimming_woman:{keywords:["sports","exercise","human","athlete","water","summer","woman","female"],char:"\u{1f3ca}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},swimming_man:{keywords:["sports","exercise","human","athlete","water","summer"],char:"\u{1f3ca}",fitzpatrick_scale:!0,category:"activity"},woman_playing_water_polo:{keywords:["sports","pool"],char:"\u{1f93d}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},man_playing_water_polo:{keywords:["sports","pool"],char:"\u{1f93d}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"activity"},woman_in_lotus_position:{keywords:["woman","female","meditation","yoga","serenity","zen","mindfulness"],char:"\u{1f9d8}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},man_in_lotus_position:{keywords:["man","male","meditation","yoga","serenity","zen","mindfulness"],char:"\u{1f9d8}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"activity"},surfing_woman:{keywords:["sports","ocean","sea","summer","beach","woman","female"],char:"\u{1f3c4}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},surfing_man:{keywords:["sports","ocean","sea","summer","beach"],char:"\u{1f3c4}",fitzpatrick_scale:!0,category:"activity"},bath:{keywords:["clean","shower","bathroom"],char:"\u{1f6c0}",fitzpatrick_scale:!0,category:"activity"},basketball_woman:{keywords:["sports","human","woman","female"],char:"\u26f9\ufe0f\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},basketball_man:{keywords:["sports","human"],char:"\u26f9",fitzpatrick_scale:!0,category:"activity"},weight_lifting_woman:{keywords:["sports","training","exercise","woman","female"],char:"\u{1f3cb}\ufe0f\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},weight_lifting_man:{keywords:["sports","training","exercise"],char:"\u{1f3cb}",fitzpatrick_scale:!0,category:"activity"},biking_woman:{keywords:["sports","bike","exercise","hipster","woman","female"],char:"\u{1f6b4}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},biking_man:{keywords:["sports","bike","exercise","hipster"],char:"\u{1f6b4}",fitzpatrick_scale:!0,category:"activity"},mountain_biking_woman:{keywords:["transportation","sports","human","race","bike","woman","female"],char:"\u{1f6b5}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},mountain_biking_man:{keywords:["transportation","sports","human","race","bike"],char:"\u{1f6b5}",fitzpatrick_scale:!0,category:"activity"},horse_racing:{keywords:["animal","betting","competition","gambling","luck"],char:"\u{1f3c7}",fitzpatrick_scale:!0,category:"activity"},business_suit_levitating:{keywords:["suit","business","levitate","hover","jump"],char:"\u{1f574}",fitzpatrick_scale:!0,category:"activity"},trophy:{keywords:["win","award","contest","place","ftw","ceremony"],char:"\u{1f3c6}",fitzpatrick_scale:!1,category:"activity"},running_shirt_with_sash:{keywords:["play","pageant"],char:"\u{1f3bd}",fitzpatrick_scale:!1,category:"activity"},medal_sports:{keywords:["award","winning"],char:"\u{1f3c5}",fitzpatrick_scale:!1,category:"activity"},medal_military:{keywords:["award","winning","army"],char:"\u{1f396}",fitzpatrick_scale:!1,category:"activity"},"1st_place_medal":{keywords:["award","winning","first"],char:"\u{1f947}",fitzpatrick_scale:!1,category:"activity"},"2nd_place_medal":{keywords:["award","second"],char:"\u{1f948}",fitzpatrick_scale:!1,category:"activity"},"3rd_place_medal":{keywords:["award","third"],char:"\u{1f949}",fitzpatrick_scale:!1,category:"activity"},reminder_ribbon:{keywords:["sports","cause","support","awareness"],char:"\u{1f397}",fitzpatrick_scale:!1,category:"activity"},rosette:{keywords:["flower","decoration","military"],char:"\u{1f3f5}",fitzpatrick_scale:!1,category:"activity"},ticket:{keywords:["event","concert","pass"],char:"\u{1f3ab}",fitzpatrick_scale:!1,category:"activity"},tickets:{keywords:["sports","concert","entrance"],char:"\u{1f39f}",fitzpatrick_scale:!1,category:"activity"},performing_arts:{keywords:["acting","theater","drama"],char:"\u{1f3ad}",fitzpatrick_scale:!1,category:"activity"},art:{keywords:["design","paint","draw","colors"],char:"\u{1f3a8}",fitzpatrick_scale:!1,category:"activity"},circus_tent:{keywords:["festival","carnival","party"],char:"\u{1f3aa}",fitzpatrick_scale:!1,category:"activity"},woman_juggling:{keywords:["juggle","balance","skill","multitask"],char:"\u{1f939}\u200d\u2640\ufe0f",fitzpatrick_scale:!0,category:"activity"},man_juggling:{keywords:["juggle","balance","skill","multitask"],char:"\u{1f939}\u200d\u2642\ufe0f",fitzpatrick_scale:!0,category:"activity"},microphone:{keywords:["sound","music","PA","sing","talkshow"],char:"\u{1f3a4}",fitzpatrick_scale:!1,category:"activity"},headphones:{keywords:["music","score","gadgets"],char:"\u{1f3a7}",fitzpatrick_scale:!1,category:"activity"},musical_score:{keywords:["treble","clef","compose"],char:"\u{1f3bc}",fitzpatrick_scale:!1,category:"activity"},musical_keyboard:{keywords:["piano","instrument","compose"],char:"\u{1f3b9}",fitzpatrick_scale:!1,category:"activity"},drum:{keywords:["music","instrument","drumsticks","snare"],char:"\u{1f941}",fitzpatrick_scale:!1,category:"activity"},saxophone:{keywords:["music","instrument","jazz","blues"],char:"\u{1f3b7}",fitzpatrick_scale:!1,category:"activity"},trumpet:{keywords:["music","brass"],char:"\u{1f3ba}",fitzpatrick_scale:!1,category:"activity"},guitar:{keywords:["music","instrument"],char:"\u{1f3b8}",fitzpatrick_scale:!1,category:"activity"},violin:{keywords:["music","instrument","orchestra","symphony"],char:"\u{1f3bb}",fitzpatrick_scale:!1,category:"activity"},clapper:{keywords:["movie","film","record"],char:"\u{1f3ac}",fitzpatrick_scale:!1,category:"activity"},video_game:{keywords:["play","console","PS4","controller"],char:"\u{1f3ae}",fitzpatrick_scale:!1,category:"activity"},space_invader:{keywords:["game","arcade","play"],char:"\u{1f47e}",fitzpatrick_scale:!1,category:"activity"},dart:{keywords:["game","play","bar","target","bullseye"],char:"\u{1f3af}",fitzpatrick_scale:!1,category:"activity"},game_die:{keywords:["dice","random","tabletop","play","luck"],char:"\u{1f3b2}",fitzpatrick_scale:!1,category:"activity"},chess_pawn:{keywords:["expendable"],char:"\u265f",fitzpatrick_scale:!1,category:"activity"},slot_machine:{keywords:["bet","gamble","vegas","fruit machine","luck","casino"],char:"\u{1f3b0}",fitzpatrick_scale:!1,category:"activity"},jigsaw:{keywords:["interlocking","puzzle","piece"],char:"\u{1f9e9}",fitzpatrick_scale:!1,category:"activity"},bowling:{keywords:["sports","fun","play"],char:"\u{1f3b3}",fitzpatrick_scale:!1,category:"activity"},red_car:{keywords:["red","transportation","vehicle"],char:"\u{1f697}",fitzpatrick_scale:!1,category:"travel_and_places"},taxi:{keywords:["uber","vehicle","cars","transportation"],char:"\u{1f695}",fitzpatrick_scale:!1,category:"travel_and_places"},blue_car:{keywords:["transportation","vehicle"],char:"\u{1f699}",fitzpatrick_scale:!1,category:"travel_and_places"},bus:{keywords:["car","vehicle","transportation"],char:"\u{1f68c}",fitzpatrick_scale:!1,category:"travel_and_places"},trolleybus:{keywords:["bart","transportation","vehicle"],char:"\u{1f68e}",fitzpatrick_scale:!1,category:"travel_and_places"},racing_car:{keywords:["sports","race","fast","formula","f1"],char:"\u{1f3ce}",fitzpatrick_scale:!1,category:"travel_and_places"},police_car:{keywords:["vehicle","cars","transportation","law","legal","enforcement"],char:"\u{1f693}",fitzpatrick_scale:!1,category:"travel_and_places"},ambulance:{keywords:["health","911","hospital"],char:"\u{1f691}",fitzpatrick_scale:!1,category:"travel_and_places"},fire_engine:{keywords:["transportation","cars","vehicle"],char:"\u{1f692}",fitzpatrick_scale:!1,category:"travel_and_places"},minibus:{keywords:["vehicle","car","transportation"],char:"\u{1f690}",fitzpatrick_scale:!1,category:"travel_and_places"},truck:{keywords:["cars","transportation"],char:"\u{1f69a}",fitzpatrick_scale:!1,category:"travel_and_places"},articulated_lorry:{keywords:["vehicle","cars","transportation","express"],char:"\u{1f69b}",fitzpatrick_scale:!1,category:"travel_and_places"},tractor:{keywords:["vehicle","car","farming","agriculture"],char:"\u{1f69c}",fitzpatrick_scale:!1,category:"travel_and_places"},kick_scooter:{keywords:["vehicle","kick","razor"],char:"\u{1f6f4}",fitzpatrick_scale:!1,category:"travel_and_places"},motorcycle:{keywords:["race","sports","fast"],char:"\u{1f3cd}",fitzpatrick_scale:!1,category:"travel_and_places"},bike:{keywords:["sports","bicycle","exercise","hipster"],char:"\u{1f6b2}",fitzpatrick_scale:!1,category:"travel_and_places"},motor_scooter:{keywords:["vehicle","vespa","sasha"],char:"\u{1f6f5}",fitzpatrick_scale:!1,category:"travel_and_places"},rotating_light:{keywords:["police","ambulance","911","emergency","alert","error","pinged","law","legal"],char:"\u{1f6a8}",fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_police_car:{keywords:["vehicle","law","legal","enforcement","911"],char:"\u{1f694}",fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_bus:{keywords:["vehicle","transportation"],char:"\u{1f68d}",fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_automobile:{keywords:["car","vehicle","transportation"],char:"\u{1f698}",fitzpatrick_scale:!1,category:"travel_and_places"},oncoming_taxi:{keywords:["vehicle","cars","uber"],char:"\u{1f696}",fitzpatrick_scale:!1,category:"travel_and_places"},aerial_tramway:{keywords:["transportation","vehicle","ski"],char:"\u{1f6a1}",fitzpatrick_scale:!1,category:"travel_and_places"},mountain_cableway:{keywords:["transportation","vehicle","ski"],char:"\u{1f6a0}",fitzpatrick_scale:!1,category:"travel_and_places"},suspension_railway:{keywords:["vehicle","transportation"],char:"\u{1f69f}",fitzpatrick_scale:!1,category:"travel_and_places"},railway_car:{keywords:["transportation","vehicle"],char:"\u{1f683}",fitzpatrick_scale:!1,category:"travel_and_places"},train:{keywords:["transportation","vehicle","carriage","public","travel"],char:"\u{1f68b}",fitzpatrick_scale:!1,category:"travel_and_places"},monorail:{keywords:["transportation","vehicle"],char:"\u{1f69d}",fitzpatrick_scale:!1,category:"travel_and_places"},bullettrain_side:{keywords:["transportation","vehicle"],char:"\u{1f684}",fitzpatrick_scale:!1,category:"travel_and_places"},bullettrain_front:{keywords:["transportation","vehicle","speed","fast","public","travel"],char:"\u{1f685}",fitzpatrick_scale:!1,category:"travel_and_places"},light_rail:{keywords:["transportation","vehicle"],char:"\u{1f688}",fitzpatrick_scale:!1,category:"travel_and_places"},mountain_railway:{keywords:["transportation","vehicle"],char:"\u{1f69e}",fitzpatrick_scale:!1,category:"travel_and_places"},steam_locomotive:{keywords:["transportation","vehicle","train"],char:"\u{1f682}",fitzpatrick_scale:!1,category:"travel_and_places"},train2:{keywords:["transportation","vehicle"],char:"\u{1f686}",fitzpatrick_scale:!1,category:"travel_and_places"},metro:{keywords:["transportation","blue-square","mrt","underground","tube"],char:"\u{1f687}",fitzpatrick_scale:!1,category:"travel_and_places"},tram:{keywords:["transportation","vehicle"],char:"\u{1f68a}",fitzpatrick_scale:!1,category:"travel_and_places"},station:{keywords:["transportation","vehicle","public"],char:"\u{1f689}",fitzpatrick_scale:!1,category:"travel_and_places"},flying_saucer:{keywords:["transportation","vehicle","ufo"],char:"\u{1f6f8}",fitzpatrick_scale:!1,category:"travel_and_places"},helicopter:{keywords:["transportation","vehicle","fly"],char:"\u{1f681}",fitzpatrick_scale:!1,category:"travel_and_places"},small_airplane:{keywords:["flight","transportation","fly","vehicle"],char:"\u{1f6e9}",fitzpatrick_scale:!1,category:"travel_and_places"},airplane:{keywords:["vehicle","transportation","flight","fly"],char:"\u2708\ufe0f",fitzpatrick_scale:!1,category:"travel_and_places"},flight_departure:{keywords:["airport","flight","landing"],char:"\u{1f6eb}",fitzpatrick_scale:!1,category:"travel_and_places"},flight_arrival:{keywords:["airport","flight","boarding"],char:"\u{1f6ec}",fitzpatrick_scale:!1,category:"travel_and_places"},sailboat:{keywords:["ship","summer","transportation","water","sailing"],char:"\u26f5",fitzpatrick_scale:!1,category:"travel_and_places"},motor_boat:{keywords:["ship"],char:"\u{1f6e5}",fitzpatrick_scale:!1,category:"travel_and_places"},speedboat:{keywords:["ship","transportation","vehicle","summer"],char:"\u{1f6a4}",fitzpatrick_scale:!1,category:"travel_and_places"},ferry:{keywords:["boat","ship","yacht"],char:"\u26f4",fitzpatrick_scale:!1,category:"travel_and_places"},passenger_ship:{keywords:["yacht","cruise","ferry"],char:"\u{1f6f3}",fitzpatrick_scale:!1,category:"travel_and_places"},rocket:{keywords:["launch","ship","staffmode","NASA","outer space","outer_space","fly"],char:"\u{1f680}",fitzpatrick_scale:!1,category:"travel_and_places"},artificial_satellite:{keywords:["communication","gps","orbit","spaceflight","NASA","ISS"],char:"\u{1f6f0}",fitzpatrick_scale:!1,category:"travel_and_places"},seat:{keywords:["sit","airplane","transport","bus","flight","fly"],char:"\u{1f4ba}",fitzpatrick_scale:!1,category:"travel_and_places"},canoe:{keywords:["boat","paddle","water","ship"],char:"\u{1f6f6}",fitzpatrick_scale:!1,category:"travel_and_places"},anchor:{keywords:["ship","ferry","sea","boat"],char:"\u2693",fitzpatrick_scale:!1,category:"travel_and_places"},construction:{keywords:["wip","progress","caution","warning"],char:"\u{1f6a7}",fitzpatrick_scale:!1,category:"travel_and_places"},fuelpump:{keywords:["gas station","petroleum"],char:"\u26fd",fitzpatrick_scale:!1,category:"travel_and_places"},busstop:{keywords:["transportation","wait"],char:"\u{1f68f}",fitzpatrick_scale:!1,category:"travel_and_places"},vertical_traffic_light:{keywords:["transportation","driving"],char:"\u{1f6a6}",fitzpatrick_scale:!1,category:"travel_and_places"},traffic_light:{keywords:["transportation","signal"],char:"\u{1f6a5}",fitzpatrick_scale:!1,category:"travel_and_places"},checkered_flag:{keywords:["contest","finishline","race","gokart"],char:"\u{1f3c1}",fitzpatrick_scale:!1,category:"travel_and_places"},ship:{keywords:["transportation","titanic","deploy"],char:"\u{1f6a2}",fitzpatrick_scale:!1,category:"travel_and_places"},ferris_wheel:{keywords:["photo","carnival","londoneye"],char:"\u{1f3a1}",fitzpatrick_scale:!1,category:"travel_and_places"},roller_coaster:{keywords:["carnival","playground","photo","fun"],char:"\u{1f3a2}",fitzpatrick_scale:!1,category:"travel_and_places"},carousel_horse:{keywords:["photo","carnival"],char:"\u{1f3a0}",fitzpatrick_scale:!1,category:"travel_and_places"},building_construction:{keywords:["wip","working","progress"],char:"\u{1f3d7}",fitzpatrick_scale:!1,category:"travel_and_places"},foggy:{keywords:["photo","mountain"],char:"\u{1f301}",fitzpatrick_scale:!1,category:"travel_and_places"},tokyo_tower:{keywords:["photo","japanese"],char:"\u{1f5fc}",fitzpatrick_scale:!1,category:"travel_and_places"},factory:{keywords:["building","industry","pollution","smoke"],char:"\u{1f3ed}",fitzpatrick_scale:!1,category:"travel_and_places"},fountain:{keywords:["photo","summer","water","fresh"],char:"\u26f2",fitzpatrick_scale:!1,category:"travel_and_places"},rice_scene:{keywords:["photo","japan","asia","tsukimi"],char:"\u{1f391}",fitzpatrick_scale:!1,category:"travel_and_places"},mountain:{keywords:["photo","nature","environment"],char:"\u26f0",fitzpatrick_scale:!1,category:"travel_and_places"},mountain_snow:{keywords:["photo","nature","environment","winter","cold"],char:"\u{1f3d4}",fitzpatrick_scale:!1,category:"travel_and_places"},mount_fuji:{keywords:["photo","mountain","nature","japanese"],char:"\u{1f5fb}",fitzpatrick_scale:!1,category:"travel_and_places"},volcano:{keywords:["photo","nature","disaster"],char:"\u{1f30b}",fitzpatrick_scale:!1,category:"travel_and_places"},japan:{keywords:["nation","country","japanese","asia"],char:"\u{1f5fe}",fitzpatrick_scale:!1,category:"travel_and_places"},camping:{keywords:["photo","outdoors","tent"],char:"\u{1f3d5}",fitzpatrick_scale:!1,category:"travel_and_places"},tent:{keywords:["photo","camping","outdoors"],char:"\u26fa",fitzpatrick_scale:!1,category:"travel_and_places"},national_park:{keywords:["photo","environment","nature"],char:"\u{1f3de}",fitzpatrick_scale:!1,category:"travel_and_places"},motorway:{keywords:["road","cupertino","interstate","highway"],char:"\u{1f6e3}",fitzpatrick_scale:!1,category:"travel_and_places"},railway_track:{keywords:["train","transportation"],char:"\u{1f6e4}",fitzpatrick_scale:!1,category:"travel_and_places"},sunrise:{keywords:["morning","view","vacation","photo"],char:"\u{1f305}",fitzpatrick_scale:!1,category:"travel_and_places"},sunrise_over_mountains:{keywords:["view","vacation","photo"],char:"\u{1f304}",fitzpatrick_scale:!1,category:"travel_and_places"},desert:{keywords:["photo","warm","saharah"],char:"\u{1f3dc}",fitzpatrick_scale:!1,category:"travel_and_places"},beach_umbrella:{keywords:["weather","summer","sunny","sand","mojito"],char:"\u{1f3d6}",fitzpatrick_scale:!1,category:"travel_and_places"},desert_island:{keywords:["photo","tropical","mojito"],char:"\u{1f3dd}",fitzpatrick_scale:!1,category:"travel_and_places"},city_sunrise:{keywords:["photo","good morning","dawn"],char:"\u{1f307}",fitzpatrick_scale:!1,category:"travel_and_places"},city_sunset:{keywords:["photo","evening","sky","buildings"],char:"\u{1f306}",fitzpatrick_scale:!1,category:"travel_and_places"},cityscape:{keywords:["photo","night life","urban"],char:"\u{1f3d9}",fitzpatrick_scale:!1,category:"travel_and_places"},night_with_stars:{keywords:["evening","city","downtown"],char:"\u{1f303}",fitzpatrick_scale:!1,category:"travel_and_places"},bridge_at_night:{keywords:["photo","sanfrancisco"],char:"\u{1f309}",fitzpatrick_scale:!1,category:"travel_and_places"},milky_way:{keywords:["photo","space","stars"],char:"\u{1f30c}",fitzpatrick_scale:!1,category:"travel_and_places"},stars:{keywords:["night","photo"],char:"\u{1f320}",fitzpatrick_scale:!1,category:"travel_and_places"},sparkler:{keywords:["stars","night","shine"],char:"\u{1f387}",fitzpatrick_scale:!1,category:"travel_and_places"},fireworks:{keywords:["photo","festival","carnival","congratulations"],char:"\u{1f386}",fitzpatrick_scale:!1,category:"travel_and_places"},rainbow:{keywords:["nature","happy","unicorn_face","photo","sky","spring"],char:"\u{1f308}",fitzpatrick_scale:!1,category:"travel_and_places"},houses:{keywords:["buildings","photo"],char:"\u{1f3d8}",fitzpatrick_scale:!1,category:"travel_and_places"},european_castle:{keywords:["building","royalty","history"],char:"\u{1f3f0}",fitzpatrick_scale:!1,category:"travel_and_places"},japanese_castle:{keywords:["photo","building"],char:"\u{1f3ef}",fitzpatrick_scale:!1,category:"travel_and_places"},stadium:{keywords:["photo","place","sports","concert","venue"],char:"\u{1f3df}",fitzpatrick_scale:!1,category:"travel_and_places"},statue_of_liberty:{keywords:["american","newyork"],char:"\u{1f5fd}",fitzpatrick_scale:!1,category:"travel_and_places"},house:{keywords:["building","home"],char:"\u{1f3e0}",fitzpatrick_scale:!1,category:"travel_and_places"},house_with_garden:{keywords:["home","plant","nature"],char:"\u{1f3e1}",fitzpatrick_scale:!1,category:"travel_and_places"},derelict_house:{keywords:["abandon","evict","broken","building"],char:"\u{1f3da}",fitzpatrick_scale:!1,category:"travel_and_places"},office:{keywords:["building","bureau","work"],char:"\u{1f3e2}",fitzpatrick_scale:!1,category:"travel_and_places"},department_store:{keywords:["building","shopping","mall"],char:"\u{1f3ec}",fitzpatrick_scale:!1,category:"travel_and_places"},post_office:{keywords:["building","envelope","communication"],char:"\u{1f3e3}",fitzpatrick_scale:!1,category:"travel_and_places"},european_post_office:{keywords:["building","email"],char:"\u{1f3e4}",fitzpatrick_scale:!1,category:"travel_and_places"},hospital:{keywords:["building","health","surgery","doctor"],char:"\u{1f3e5}",fitzpatrick_scale:!1,category:"travel_and_places"},bank:{keywords:["building","money","sales","cash","business","enterprise"],char:"\u{1f3e6}",fitzpatrick_scale:!1,category:"travel_and_places"},hotel:{keywords:["building","accomodation","checkin"],char:"\u{1f3e8}",fitzpatrick_scale:!1,category:"travel_and_places"},convenience_store:{keywords:["building","shopping","groceries"],char:"\u{1f3ea}",fitzpatrick_scale:!1,category:"travel_and_places"},school:{keywords:["building","student","education","learn","teach"],char:"\u{1f3eb}",fitzpatrick_scale:!1,category:"travel_and_places"},love_hotel:{keywords:["like","affection","dating"],char:"\u{1f3e9}",fitzpatrick_scale:!1,category:"travel_and_places"},wedding:{keywords:["love","like","affection","couple","marriage","bride","groom"],char:"\u{1f492}",fitzpatrick_scale:!1,category:"travel_and_places"},classical_building:{keywords:["art","culture","history"],char:"\u{1f3db}",fitzpatrick_scale:!1,category:"travel_and_places"},church:{keywords:["building","religion","christ"],char:"\u26ea",fitzpatrick_scale:!1,category:"travel_and_places"},mosque:{keywords:["islam","worship","minaret"],char:"\u{1f54c}",fitzpatrick_scale:!1,category:"travel_and_places"},synagogue:{keywords:["judaism","worship","temple","jewish"],char:"\u{1f54d}",fitzpatrick_scale:!1,category:"travel_and_places"},kaaba:{keywords:["mecca","mosque","islam"],char:"\u{1f54b}",fitzpatrick_scale:!1,category:"travel_and_places"},shinto_shrine:{keywords:["temple","japan","kyoto"],char:"\u26e9",fitzpatrick_scale:!1,category:"travel_and_places"},watch:{keywords:["time","accessories"],char:"\u231a",fitzpatrick_scale:!1,category:"objects"},iphone:{keywords:["technology","apple","gadgets","dial"],char:"\u{1f4f1}",fitzpatrick_scale:!1,category:"objects"},calling:{keywords:["iphone","incoming"],char:"\u{1f4f2}",fitzpatrick_scale:!1,category:"objects"},computer:{keywords:["technology","laptop","screen","display","monitor"],char:"\u{1f4bb}",fitzpatrick_scale:!1,category:"objects"},keyboard:{keywords:["technology","computer","type","input","text"],char:"\u2328",fitzpatrick_scale:!1,category:"objects"},desktop_computer:{keywords:["technology","computing","screen"],char:"\u{1f5a5}",fitzpatrick_scale:!1,category:"objects"},printer:{keywords:["paper","ink"],char:"\u{1f5a8}",fitzpatrick_scale:!1,category:"objects"},computer_mouse:{keywords:["click"],char:"\u{1f5b1}",fitzpatrick_scale:!1,category:"objects"},trackball:{keywords:["technology","trackpad"],char:"\u{1f5b2}",fitzpatrick_scale:!1,category:"objects"},joystick:{keywords:["game","play"],char:"\u{1f579}",fitzpatrick_scale:!1,category:"objects"},clamp:{keywords:["tool"],char:"\u{1f5dc}",fitzpatrick_scale:!1,category:"objects"},minidisc:{keywords:["technology","record","data","disk","90s"],char:"\u{1f4bd}",fitzpatrick_scale:!1,category:"objects"},floppy_disk:{keywords:["oldschool","technology","save","90s","80s"],char:"\u{1f4be}",fitzpatrick_scale:!1,category:"objects"},cd:{keywords:["technology","dvd","disk","disc","90s"],char:"\u{1f4bf}",fitzpatrick_scale:!1,category:"objects"},dvd:{keywords:["cd","disk","disc"],char:"\u{1f4c0}",fitzpatrick_scale:!1,category:"objects"},vhs:{keywords:["record","video","oldschool","90s","80s"],char:"\u{1f4fc}",fitzpatrick_scale:!1,category:"objects"},camera:{keywords:["gadgets","photography"],char:"\u{1f4f7}",fitzpatrick_scale:!1,category:"objects"},camera_flash:{keywords:["photography","gadgets"],char:"\u{1f4f8}",fitzpatrick_scale:!1,category:"objects"},video_camera:{keywords:["film","record"],char:"\u{1f4f9}",fitzpatrick_scale:!1,category:"objects"},movie_camera:{keywords:["film","record"],char:"\u{1f3a5}",fitzpatrick_scale:!1,category:"objects"},film_projector:{keywords:["video","tape","record","movie"],char:"\u{1f4fd}",fitzpatrick_scale:!1,category:"objects"},film_strip:{keywords:["movie"],char:"\u{1f39e}",fitzpatrick_scale:!1,category:"objects"},telephone_receiver:{keywords:["technology","communication","dial"],char:"\u{1f4de}",fitzpatrick_scale:!1,category:"objects"},phone:{keywords:["technology","communication","dial","telephone"],char:"\u260e\ufe0f",fitzpatrick_scale:!1,category:"objects"},pager:{keywords:["bbcall","oldschool","90s"],char:"\u{1f4df}",fitzpatrick_scale:!1,category:"objects"},fax:{keywords:["communication","technology"],char:"\u{1f4e0}",fitzpatrick_scale:!1,category:"objects"},tv:{keywords:["technology","program","oldschool","show","television"],char:"\u{1f4fa}",fitzpatrick_scale:!1,category:"objects"},radio:{keywords:["communication","music","podcast","program"],char:"\u{1f4fb}",fitzpatrick_scale:!1,category:"objects"},studio_microphone:{keywords:["sing","recording","artist","talkshow"],char:"\u{1f399}",fitzpatrick_scale:!1,category:"objects"},level_slider:{keywords:["scale"],char:"\u{1f39a}",fitzpatrick_scale:!1,category:"objects"},control_knobs:{keywords:["dial"],char:"\u{1f39b}",fitzpatrick_scale:!1,category:"objects"},compass:{keywords:["magnetic","navigation","orienteering"],char:"\u{1f9ed}",fitzpatrick_scale:!1,category:"objects"},stopwatch:{keywords:["time","deadline"],char:"\u23f1",fitzpatrick_scale:!1,category:"objects"},timer_clock:{keywords:["alarm"],char:"\u23f2",fitzpatrick_scale:!1,category:"objects"},alarm_clock:{keywords:["time","wake"],char:"\u23f0",fitzpatrick_scale:!1,category:"objects"},mantelpiece_clock:{keywords:["time"],char:"\u{1f570}",fitzpatrick_scale:!1,category:"objects"},hourglass_flowing_sand:{keywords:["oldschool","time","countdown"],char:"\u23f3",fitzpatrick_scale:!1,category:"objects"},hourglass:{keywords:["time","clock","oldschool","limit","exam","quiz","test"],char:"\u231b",fitzpatrick_scale:!1,category:"objects"},satellite:{keywords:["communication","future","radio","space"],char:"\u{1f4e1}",fitzpatrick_scale:!1,category:"objects"},battery:{keywords:["power","energy","sustain"],char:"\u{1f50b}",fitzpatrick_scale:!1,category:"objects"},electric_plug:{keywords:["charger","power"],char:"\u{1f50c}",fitzpatrick_scale:!1,category:"objects"},bulb:{keywords:["light","electricity","idea"],char:"\u{1f4a1}",fitzpatrick_scale:!1,category:"objects"},flashlight:{keywords:["dark","camping","sight","night"],char:"\u{1f526}",fitzpatrick_scale:!1,category:"objects"},candle:{keywords:["fire","wax"],char:"\u{1f56f}",fitzpatrick_scale:!1,category:"objects"},fire_extinguisher:{keywords:["quench"],char:"\u{1f9ef}",fitzpatrick_scale:!1,category:"objects"},wastebasket:{keywords:["bin","trash","rubbish","garbage","toss"],char:"\u{1f5d1}",fitzpatrick_scale:!1,category:"objects"},oil_drum:{keywords:["barrell"],char:"\u{1f6e2}",fitzpatrick_scale:!1,category:"objects"},money_with_wings:{keywords:["dollar","bills","payment","sale"],char:"\u{1f4b8}",fitzpatrick_scale:!1,category:"objects"},dollar:{keywords:["money","sales","bill","currency"],char:"\u{1f4b5}",fitzpatrick_scale:!1,category:"objects"},yen:{keywords:["money","sales","japanese","dollar","currency"],char:"\u{1f4b4}",fitzpatrick_scale:!1,category:"objects"},euro:{keywords:["money","sales","dollar","currency"],char:"\u{1f4b6}",fitzpatrick_scale:!1,category:"objects"},pound:{keywords:["british","sterling","money","sales","bills","uk","england","currency"],char:"\u{1f4b7}",fitzpatrick_scale:!1,category:"objects"},moneybag:{keywords:["dollar","payment","coins","sale"],char:"\u{1f4b0}",fitzpatrick_scale:!1,category:"objects"},credit_card:{keywords:["money","sales","dollar","bill","payment","shopping"],char:"\u{1f4b3}",fitzpatrick_scale:!1,category:"objects"},gem:{keywords:["blue","ruby","diamond","jewelry"],char:"\u{1f48e}",fitzpatrick_scale:!1,category:"objects"},balance_scale:{keywords:["law","fairness","weight"],char:"\u2696",fitzpatrick_scale:!1,category:"objects"},toolbox:{keywords:["tools","diy","fix","maintainer","mechanic"],char:"\u{1f9f0}",fitzpatrick_scale:!1,category:"objects"},wrench:{keywords:["tools","diy","ikea","fix","maintainer"],char:"\u{1f527}",fitzpatrick_scale:!1,category:"objects"},hammer:{keywords:["tools","build","create"],char:"\u{1f528}",fitzpatrick_scale:!1,category:"objects"},hammer_and_pick:{keywords:["tools","build","create"],char:"\u2692",fitzpatrick_scale:!1,category:"objects"},hammer_and_wrench:{keywords:["tools","build","create"],char:"\u{1f6e0}",fitzpatrick_scale:!1,category:"objects"},pick:{keywords:["tools","dig"],char:"\u26cf",fitzpatrick_scale:!1,category:"objects"},nut_and_bolt:{keywords:["handy","tools","fix"],char:"\u{1f529}",fitzpatrick_scale:!1,category:"objects"},gear:{keywords:["cog"],char:"\u2699",fitzpatrick_scale:!1,category:"objects"},brick:{keywords:["bricks"],char:"\u{1f9f1}",fitzpatrick_scale:!1,category:"objects"},chains:{keywords:["lock","arrest"],char:"\u26d3",fitzpatrick_scale:!1,category:"objects"},magnet:{keywords:["attraction","magnetic"],char:"\u{1f9f2}",fitzpatrick_scale:!1,category:"objects"},gun:{keywords:["violence","weapon","pistol","revolver"],char:"\u{1f52b}",fitzpatrick_scale:!1,category:"objects"},bomb:{keywords:["boom","explode","explosion","terrorism"],char:"\u{1f4a3}",fitzpatrick_scale:!1,category:"objects"},firecracker:{keywords:["dynamite","boom","explode","explosion","explosive"],char:"\u{1f9e8}",fitzpatrick_scale:!1,category:"objects"},hocho:{keywords:["knife","blade","cutlery","kitchen","weapon"],char:"\u{1f52a}",fitzpatrick_scale:!1,category:"objects"},dagger:{keywords:["weapon"],char:"\u{1f5e1}",fitzpatrick_scale:!1,category:"objects"},crossed_swords:{keywords:["weapon"],char:"\u2694",fitzpatrick_scale:!1,category:"objects"},shield:{keywords:["protection","security"],char:"\u{1f6e1}",fitzpatrick_scale:!1,category:"objects"},smoking:{keywords:["kills","tobacco","cigarette","joint","smoke"],char:"\u{1f6ac}",fitzpatrick_scale:!1,category:"objects"},skull_and_crossbones:{keywords:["poison","danger","deadly","scary","death","pirate","evil"],char:"\u2620",fitzpatrick_scale:!1,category:"objects"},coffin:{keywords:["vampire","dead","die","death","rip","graveyard","cemetery","casket","funeral","box"],char:"\u26b0",fitzpatrick_scale:!1,category:"objects"},funeral_urn:{keywords:["dead","die","death","rip","ashes"],char:"\u26b1",fitzpatrick_scale:!1,category:"objects"},amphora:{keywords:["vase","jar"],char:"\u{1f3fa}",fitzpatrick_scale:!1,category:"objects"},crystal_ball:{keywords:["disco","party","magic","circus","fortune_teller"],char:"\u{1f52e}",fitzpatrick_scale:!1,category:"objects"},prayer_beads:{keywords:["dhikr","religious"],char:"\u{1f4ff}",fitzpatrick_scale:!1,category:"objects"},nazar_amulet:{keywords:["bead","charm"],char:"\u{1f9ff}",fitzpatrick_scale:!1,category:"objects"},barber:{keywords:["hair","salon","style"],char:"\u{1f488}",fitzpatrick_scale:!1,category:"objects"},alembic:{keywords:["distilling","science","experiment","chemistry"],char:"\u2697",fitzpatrick_scale:!1,category:"objects"},telescope:{keywords:["stars","space","zoom","science","astronomy"],char:"\u{1f52d}",fitzpatrick_scale:!1,category:"objects"},microscope:{keywords:["laboratory","experiment","zoomin","science","study"],char:"\u{1f52c}",fitzpatrick_scale:!1,category:"objects"},hole:{keywords:["embarrassing"],char:"\u{1f573}",fitzpatrick_scale:!1,category:"objects"},pill:{keywords:["health","medicine","doctor","pharmacy","drug"],char:"\u{1f48a}",fitzpatrick_scale:!1,category:"objects"},syringe:{keywords:["health","hospital","drugs","blood","medicine","needle","doctor","nurse"],char:"\u{1f489}",fitzpatrick_scale:!1,category:"objects"},dna:{keywords:["biologist","genetics","life"],char:"\u{1f9ec}",fitzpatrick_scale:!1,category:"objects"},microbe:{keywords:["amoeba","bacteria","germs"],char:"\u{1f9a0}",fitzpatrick_scale:!1,category:"objects"},petri_dish:{keywords:["bacteria","biology","culture","lab"],char:"\u{1f9eb}",fitzpatrick_scale:!1,category:"objects"},test_tube:{keywords:["chemistry","experiment","lab","science"],char:"\u{1f9ea}",fitzpatrick_scale:!1,category:"objects"},thermometer:{keywords:["weather","temperature","hot","cold"],char:"\u{1f321}",fitzpatrick_scale:!1,category:"objects"},broom:{keywords:["cleaning","sweeping","witch"],char:"\u{1f9f9}",fitzpatrick_scale:!1,category:"objects"},basket:{keywords:["laundry"],char:"\u{1f9fa}",fitzpatrick_scale:!1,category:"objects"},toilet_paper:{keywords:["roll"],char:"\u{1f9fb}",fitzpatrick_scale:!1,category:"objects"},label:{keywords:["sale","tag"],char:"\u{1f3f7}",fitzpatrick_scale:!1,category:"objects"},bookmark:{keywords:["favorite","label","save"],char:"\u{1f516}",fitzpatrick_scale:!1,category:"objects"},toilet:{keywords:["restroom","wc","washroom","bathroom","potty"],char:"\u{1f6bd}",fitzpatrick_scale:!1,category:"objects"},shower:{keywords:["clean","water","bathroom"],char:"\u{1f6bf}",fitzpatrick_scale:!1,category:"objects"},bathtub:{keywords:["clean","shower","bathroom"],char:"\u{1f6c1}",fitzpatrick_scale:!1,category:"objects"},soap:{keywords:["bar","bathing","cleaning","lather"],char:"\u{1f9fc}",fitzpatrick_scale:!1,category:"objects"},sponge:{keywords:["absorbing","cleaning","porous"],char:"\u{1f9fd}",fitzpatrick_scale:!1,category:"objects"},lotion_bottle:{keywords:["moisturizer","sunscreen"],char:"\u{1f9f4}",fitzpatrick_scale:!1,category:"objects"},key:{keywords:["lock","door","password"],char:"\u{1f511}",fitzpatrick_scale:!1,category:"objects"},old_key:{keywords:["lock","door","password"],char:"\u{1f5dd}",fitzpatrick_scale:!1,category:"objects"},couch_and_lamp:{keywords:["read","chill"],char:"\u{1f6cb}",fitzpatrick_scale:!1,category:"objects"},sleeping_bed:{keywords:["bed","rest"],char:"\u{1f6cc}",fitzpatrick_scale:!0,category:"objects"},bed:{keywords:["sleep","rest"],char:"\u{1f6cf}",fitzpatrick_scale:!1,category:"objects"},door:{keywords:["house","entry","exit"],char:"\u{1f6aa}",fitzpatrick_scale:!1,category:"objects"},bellhop_bell:{keywords:["service"],char:"\u{1f6ce}",fitzpatrick_scale:!1,category:"objects"},teddy_bear:{keywords:["plush","stuffed"],char:"\u{1f9f8}",fitzpatrick_scale:!1,category:"objects"},framed_picture:{keywords:["photography"],char:"\u{1f5bc}",fitzpatrick_scale:!1,category:"objects"},world_map:{keywords:["location","direction"],char:"\u{1f5fa}",fitzpatrick_scale:!1,category:"objects"},parasol_on_ground:{keywords:["weather","summer"],char:"\u26f1",fitzpatrick_scale:!1,category:"objects"},moyai:{keywords:["rock","easter island","moai"],char:"\u{1f5ff}",fitzpatrick_scale:!1,category:"objects"},shopping:{keywords:["mall","buy","purchase"],char:"\u{1f6cd}",fitzpatrick_scale:!1,category:"objects"},shopping_cart:{keywords:["trolley"],char:"\u{1f6d2}",fitzpatrick_scale:!1,category:"objects"},balloon:{keywords:["party","celebration","birthday","circus"],char:"\u{1f388}",fitzpatrick_scale:!1,category:"objects"},flags:{keywords:["fish","japanese","koinobori","carp","banner"],char:"\u{1f38f}",fitzpatrick_scale:!1,category:"objects"},ribbon:{keywords:["decoration","pink","girl","bowtie"],char:"\u{1f380}",fitzpatrick_scale:!1,category:"objects"},gift:{keywords:["present","birthday","christmas","xmas"],char:"\u{1f381}",fitzpatrick_scale:!1,category:"objects"},confetti_ball:{keywords:["festival","party","birthday","circus"],char:"\u{1f38a}",fitzpatrick_scale:!1,category:"objects"},tada:{keywords:["party","congratulations","birthday","magic","circus","celebration"],char:"\u{1f389}",fitzpatrick_scale:!1,category:"objects"},dolls:{keywords:["japanese","toy","kimono"],char:"\u{1f38e}",fitzpatrick_scale:!1,category:"objects"},wind_chime:{keywords:["nature","ding","spring","bell"],char:"\u{1f390}",fitzpatrick_scale:!1,category:"objects"},crossed_flags:{keywords:["japanese","nation","country","border"],char:"\u{1f38c}",fitzpatrick_scale:!1,category:"objects"},izakaya_lantern:{keywords:["light","paper","halloween","spooky"],char:"\u{1f3ee}",fitzpatrick_scale:!1,category:"objects"},red_envelope:{keywords:["gift"],char:"\u{1f9e7}",fitzpatrick_scale:!1,category:"objects"},email:{keywords:["letter","postal","inbox","communication"],char:"\u2709\ufe0f",fitzpatrick_scale:!1,category:"objects"},envelope_with_arrow:{keywords:["email","communication"],char:"\u{1f4e9}",fitzpatrick_scale:!1,category:"objects"},incoming_envelope:{keywords:["email","inbox"],char:"\u{1f4e8}",fitzpatrick_scale:!1,category:"objects"},"e-mail":{keywords:["communication","inbox"],char:"\u{1f4e7}",fitzpatrick_scale:!1,category:"objects"},love_letter:{keywords:["email","like","affection","envelope","valentines"],char:"\u{1f48c}",fitzpatrick_scale:!1,category:"objects"},postbox:{keywords:["email","letter","envelope"],char:"\u{1f4ee}",fitzpatrick_scale:!1,category:"objects"},mailbox_closed:{keywords:["email","communication","inbox"],char:"\u{1f4ea}",fitzpatrick_scale:!1,category:"objects"},mailbox:{keywords:["email","inbox","communication"],char:"\u{1f4eb}",fitzpatrick_scale:!1,category:"objects"},mailbox_with_mail:{keywords:["email","inbox","communication"],char:"\u{1f4ec}",fitzpatrick_scale:!1,category:"objects"},mailbox_with_no_mail:{keywords:["email","inbox"],char:"\u{1f4ed}",fitzpatrick_scale:!1,category:"objects"},package:{keywords:["mail","gift","cardboard","box","moving"],char:"\u{1f4e6}",fitzpatrick_scale:!1,category:"objects"},postal_horn:{keywords:["instrument","music"],char:"\u{1f4ef}",fitzpatrick_scale:!1,category:"objects"},inbox_tray:{keywords:["email","documents"],char:"\u{1f4e5}",fitzpatrick_scale:!1,category:"objects"},outbox_tray:{keywords:["inbox","email"],char:"\u{1f4e4}",fitzpatrick_scale:!1,category:"objects"},scroll:{keywords:["documents","ancient","history","paper"],char:"\u{1f4dc}",fitzpatrick_scale:!1,category:"objects"},page_with_curl:{keywords:["documents","office","paper"],char:"\u{1f4c3}",fitzpatrick_scale:!1,category:"objects"},bookmark_tabs:{keywords:["favorite","save","order","tidy"],char:"\u{1f4d1}",fitzpatrick_scale:!1,category:"objects"},receipt:{keywords:["accounting","expenses"],char:"\u{1f9fe}",fitzpatrick_scale:!1,category:"objects"},bar_chart:{keywords:["graph","presentation","stats"],char:"\u{1f4ca}",fitzpatrick_scale:!1,category:"objects"},chart_with_upwards_trend:{keywords:["graph","presentation","stats","recovery","business","economics","money","sales","good","success"],char:"\u{1f4c8}",fitzpatrick_scale:!1,category:"objects"},chart_with_downwards_trend:{keywords:["graph","presentation","stats","recession","business","economics","money","sales","bad","failure"],char:"\u{1f4c9}",fitzpatrick_scale:!1,category:"objects"},page_facing_up:{keywords:["documents","office","paper","information"],char:"\u{1f4c4}",fitzpatrick_scale:!1,category:"objects"},date:{keywords:["calendar","schedule"],char:"\u{1f4c5}",fitzpatrick_scale:!1,category:"objects"},calendar:{keywords:["schedule","date","planning"],char:"\u{1f4c6}",fitzpatrick_scale:!1,category:"objects"},spiral_calendar:{keywords:["date","schedule","planning"],char:"\u{1f5d3}",fitzpatrick_scale:!1,category:"objects"},card_index:{keywords:["business","stationery"],char:"\u{1f4c7}",fitzpatrick_scale:!1,category:"objects"},card_file_box:{keywords:["business","stationery"],char:"\u{1f5c3}",fitzpatrick_scale:!1,category:"objects"},ballot_box:{keywords:["election","vote"],char:"\u{1f5f3}",fitzpatrick_scale:!1,category:"objects"},file_cabinet:{keywords:["filing","organizing"],char:"\u{1f5c4}",fitzpatrick_scale:!1,category:"objects"},clipboard:{keywords:["stationery","documents"],char:"\u{1f4cb}",fitzpatrick_scale:!1,category:"objects"},spiral_notepad:{keywords:["memo","stationery"],char:"\u{1f5d2}",fitzpatrick_scale:!1,category:"objects"},file_folder:{keywords:["documents","business","office"],char:"\u{1f4c1}",fitzpatrick_scale:!1,category:"objects"},open_file_folder:{keywords:["documents","load"],char:"\u{1f4c2}",fitzpatrick_scale:!1,category:"objects"},card_index_dividers:{keywords:["organizing","business","stationery"],char:"\u{1f5c2}",fitzpatrick_scale:!1,category:"objects"},newspaper_roll:{keywords:["press","headline"],char:"\u{1f5de}",fitzpatrick_scale:!1,category:"objects"},newspaper:{keywords:["press","headline"],char:"\u{1f4f0}",fitzpatrick_scale:!1,category:"objects"},notebook:{keywords:["stationery","record","notes","paper","study"],char:"\u{1f4d3}",fitzpatrick_scale:!1,category:"objects"},closed_book:{keywords:["read","library","knowledge","textbook","learn"],char:"\u{1f4d5}",fitzpatrick_scale:!1,category:"objects"},green_book:{keywords:["read","library","knowledge","study"],char:"\u{1f4d7}",fitzpatrick_scale:!1,category:"objects"},blue_book:{keywords:["read","library","knowledge","learn","study"],char:"\u{1f4d8}",fitzpatrick_scale:!1,category:"objects"},orange_book:{keywords:["read","library","knowledge","textbook","study"],char:"\u{1f4d9}",fitzpatrick_scale:!1,category:"objects"},notebook_with_decorative_cover:{keywords:["classroom","notes","record","paper","study"],char:"\u{1f4d4}",fitzpatrick_scale:!1,category:"objects"},ledger:{keywords:["notes","paper"],char:"\u{1f4d2}",fitzpatrick_scale:!1,category:"objects"},books:{keywords:["literature","library","study"],char:"\u{1f4da}",fitzpatrick_scale:!1,category:"objects"},open_book:{keywords:["book","read","library","knowledge","literature","learn","study"],char:"\u{1f4d6}",fitzpatrick_scale:!1,category:"objects"},safety_pin:{keywords:["diaper"],char:"\u{1f9f7}",fitzpatrick_scale:!1,category:"objects"},link:{keywords:["rings","url"],char:"\u{1f517}",fitzpatrick_scale:!1,category:"objects"},paperclip:{keywords:["documents","stationery"],char:"\u{1f4ce}",fitzpatrick_scale:!1,category:"objects"},paperclips:{keywords:["documents","stationery"],char:"\u{1f587}",fitzpatrick_scale:!1,category:"objects"},scissors:{keywords:["stationery","cut"],char:"\u2702\ufe0f",fitzpatrick_scale:!1,category:"objects"},triangular_ruler:{keywords:["stationery","math","architect","sketch"],char:"\u{1f4d0}",fitzpatrick_scale:!1,category:"objects"},straight_ruler:{keywords:["stationery","calculate","length","math","school","drawing","architect","sketch"],char:"\u{1f4cf}",fitzpatrick_scale:!1,category:"objects"},abacus:{keywords:["calculation"],char:"\u{1f9ee}",fitzpatrick_scale:!1,category:"objects"},pushpin:{keywords:["stationery","mark","here"],char:"\u{1f4cc}",fitzpatrick_scale:!1,category:"objects"},round_pushpin:{keywords:["stationery","location","map","here"],char:"\u{1f4cd}",fitzpatrick_scale:!1,category:"objects"},triangular_flag_on_post:{keywords:["mark","milestone","place"],char:"\u{1f6a9}",fitzpatrick_scale:!1,category:"objects"},white_flag:{keywords:["losing","loser","lost","surrender","give up","fail"],char:"\u{1f3f3}",fitzpatrick_scale:!1,category:"objects"},black_flag:{keywords:["pirate"],char:"\u{1f3f4}",fitzpatrick_scale:!1,category:"objects"},rainbow_flag:{keywords:["flag","rainbow","pride","gay","lgbt","glbt","queer","homosexual","lesbian","bisexual","transgender"],char:"\u{1f3f3}\ufe0f\u200d\u{1f308}",fitzpatrick_scale:!1,category:"objects"},closed_lock_with_key:{keywords:["security","privacy"],char:"\u{1f510}",fitzpatrick_scale:!1,category:"objects"},lock:{keywords:["security","password","padlock"],char:"\u{1f512}",fitzpatrick_scale:!1,category:"objects"},unlock:{keywords:["privacy","security"],char:"\u{1f513}",fitzpatrick_scale:!1,category:"objects"},lock_with_ink_pen:{keywords:["security","secret"],char:"\u{1f50f}",fitzpatrick_scale:!1,category:"objects"},pen:{keywords:["stationery","writing","write"],char:"\u{1f58a}",fitzpatrick_scale:!1,category:"objects"},fountain_pen:{keywords:["stationery","writing","write"],char:"\u{1f58b}",fitzpatrick_scale:!1,category:"objects"},black_nib:{keywords:["pen","stationery","writing","write"],char:"\u2712\ufe0f",fitzpatrick_scale:!1,category:"objects"},memo:{keywords:["write","documents","stationery","pencil","paper","writing","legal","exam","quiz","test","study","compose"],char:"\u{1f4dd}",fitzpatrick_scale:!1,category:"objects"},pencil2:{keywords:["stationery","write","paper","writing","school","study"],char:"\u270f\ufe0f",fitzpatrick_scale:!1,category:"objects"},crayon:{keywords:["drawing","creativity"],char:"\u{1f58d}",fitzpatrick_scale:!1,category:"objects"},paintbrush:{keywords:["drawing","creativity","art"],char:"\u{1f58c}",fitzpatrick_scale:!1,category:"objects"},mag:{keywords:["search","zoom","find","detective"],char:"\u{1f50d}",fitzpatrick_scale:!1,category:"objects"},mag_right:{keywords:["search","zoom","find","detective"],char:"\u{1f50e}",fitzpatrick_scale:!1,category:"objects"},heart:{keywords:["love","like","valentines"],char:"\u2764\ufe0f",fitzpatrick_scale:!1,category:"symbols"},orange_heart:{keywords:["love","like","affection","valentines"],char:"\u{1f9e1}",fitzpatrick_scale:!1,category:"symbols"},yellow_heart:{keywords:["love","like","affection","valentines"],char:"\u{1f49b}",fitzpatrick_scale:!1,category:"symbols"},green_heart:{keywords:["love","like","affection","valentines"],char:"\u{1f49a}",fitzpatrick_scale:!1,category:"symbols"},blue_heart:{keywords:["love","like","affection","valentines"],char:"\u{1f499}",fitzpatrick_scale:!1,category:"symbols"},purple_heart:{keywords:["love","like","affection","valentines"],char:"\u{1f49c}",fitzpatrick_scale:!1,category:"symbols"},black_heart:{keywords:["evil"],char:"\u{1f5a4}",fitzpatrick_scale:!1,category:"symbols"},broken_heart:{keywords:["sad","sorry","break","heart","heartbreak"],char:"\u{1f494}",fitzpatrick_scale:!1,category:"symbols"},heavy_heart_exclamation:{keywords:["decoration","love"],char:"\u2763",fitzpatrick_scale:!1,category:"symbols"},two_hearts:{keywords:["love","like","affection","valentines","heart"],char:"\u{1f495}",fitzpatrick_scale:!1,category:"symbols"},revolving_hearts:{keywords:["love","like","affection","valentines"],char:"\u{1f49e}",fitzpatrick_scale:!1,category:"symbols"},heartbeat:{keywords:["love","like","affection","valentines","pink","heart"],char:"\u{1f493}",fitzpatrick_scale:!1,category:"symbols"},heartpulse:{keywords:["like","love","affection","valentines","pink"],char:"\u{1f497}",fitzpatrick_scale:!1,category:"symbols"},sparkling_heart:{keywords:["love","like","affection","valentines"],char:"\u{1f496}",fitzpatrick_scale:!1,category:"symbols"},cupid:{keywords:["love","like","heart","affection","valentines"],char:"\u{1f498}",fitzpatrick_scale:!1,category:"symbols"},gift_heart:{keywords:["love","valentines"],char:"\u{1f49d}",fitzpatrick_scale:!1,category:"symbols"},heart_decoration:{keywords:["purple-square","love","like"],char:"\u{1f49f}",fitzpatrick_scale:!1,category:"symbols"},peace_symbol:{keywords:["hippie"],char:"\u262e",fitzpatrick_scale:!1,category:"symbols"},latin_cross:{keywords:["christianity"],char:"\u271d",fitzpatrick_scale:!1,category:"symbols"},star_and_crescent:{keywords:["islam"],char:"\u262a",fitzpatrick_scale:!1,category:"symbols"},om:{keywords:["hinduism","buddhism","sikhism","jainism"],char:"\u{1f549}",fitzpatrick_scale:!1,category:"symbols"},wheel_of_dharma:{keywords:["hinduism","buddhism","sikhism","jainism"],char:"\u2638",fitzpatrick_scale:!1,category:"symbols"},star_of_david:{keywords:["judaism"],char:"\u2721",fitzpatrick_scale:!1,category:"symbols"},six_pointed_star:{keywords:["purple-square","religion","jewish","hexagram"],char:"\u{1f52f}",fitzpatrick_scale:!1,category:"symbols"},menorah:{keywords:["hanukkah","candles","jewish"],char:"\u{1f54e}",fitzpatrick_scale:!1,category:"symbols"},yin_yang:{keywords:["balance"],char:"\u262f",fitzpatrick_scale:!1,category:"symbols"},orthodox_cross:{keywords:["suppedaneum","religion"],char:"\u2626",fitzpatrick_scale:!1,category:"symbols"},place_of_worship:{keywords:["religion","church","temple","prayer"],char:"\u{1f6d0}",fitzpatrick_scale:!1,category:"symbols"},ophiuchus:{keywords:["sign","purple-square","constellation","astrology"],char:"\u26ce",fitzpatrick_scale:!1,category:"symbols"},aries:{keywords:["sign","purple-square","zodiac","astrology"],char:"\u2648",fitzpatrick_scale:!1,category:"symbols"},taurus:{keywords:["purple-square","sign","zodiac","astrology"],char:"\u2649",fitzpatrick_scale:!1,category:"symbols"},gemini:{keywords:["sign","zodiac","purple-square","astrology"],char:"\u264a",fitzpatrick_scale:!1,category:"symbols"},cancer:{keywords:["sign","zodiac","purple-square","astrology"],char:"\u264b",fitzpatrick_scale:!1,category:"symbols"},leo:{keywords:["sign","purple-square","zodiac","astrology"],char:"\u264c",fitzpatrick_scale:!1,category:"symbols"},virgo:{keywords:["sign","zodiac","purple-square","astrology"],char:"\u264d",fitzpatrick_scale:!1,category:"symbols"},libra:{keywords:["sign","purple-square","zodiac","astrology"],char:"\u264e",fitzpatrick_scale:!1,category:"symbols"},scorpius:{keywords:["sign","zodiac","purple-square","astrology","scorpio"],char:"\u264f",fitzpatrick_scale:!1,category:"symbols"},sagittarius:{keywords:["sign","zodiac","purple-square","astrology"],char:"\u2650",fitzpatrick_scale:!1,category:"symbols"},capricorn:{keywords:["sign","zodiac","purple-square","astrology"],char:"\u2651",fitzpatrick_scale:!1,category:"symbols"},aquarius:{keywords:["sign","purple-square","zodiac","astrology"],char:"\u2652",fitzpatrick_scale:!1,category:"symbols"},pisces:{keywords:["purple-square","sign","zodiac","astrology"],char:"\u2653",fitzpatrick_scale:!1,category:"symbols"},id:{keywords:["purple-square","words"],char:"\u{1f194}",fitzpatrick_scale:!1,category:"symbols"},atom_symbol:{keywords:["science","physics","chemistry"],char:"\u269b",fitzpatrick_scale:!1,category:"symbols"},u7a7a:{keywords:["kanji","japanese","chinese","empty","sky","blue-square"],char:"\u{1f233}",fitzpatrick_scale:!1,category:"symbols"},u5272:{keywords:["cut","divide","chinese","kanji","pink-square"],char:"\u{1f239}",fitzpatrick_scale:!1,category:"symbols"},radioactive:{keywords:["nuclear","danger"],char:"\u2622",fitzpatrick_scale:!1,category:"symbols"},biohazard:{keywords:["danger"],char:"\u2623",fitzpatrick_scale:!1,category:"symbols"},mobile_phone_off:{keywords:["mute","orange-square","silence","quiet"],char:"\u{1f4f4}",fitzpatrick_scale:!1,category:"symbols"},vibration_mode:{keywords:["orange-square","phone"],char:"\u{1f4f3}",fitzpatrick_scale:!1,category:"symbols"},u6709:{keywords:["orange-square","chinese","have","kanji"],char:"\u{1f236}",fitzpatrick_scale:!1,category:"symbols"},u7121:{keywords:["nothing","chinese","kanji","japanese","orange-square"],char:"\u{1f21a}",fitzpatrick_scale:!1,category:"symbols"},u7533:{keywords:["chinese","japanese","kanji","orange-square"],char:"\u{1f238}",fitzpatrick_scale:!1,category:"symbols"},u55b6:{keywords:["japanese","opening hours","orange-square"],char:"\u{1f23a}",fitzpatrick_scale:!1,category:"symbols"},u6708:{keywords:["chinese","month","moon","japanese","orange-square","kanji"],char:"\u{1f237}\ufe0f",fitzpatrick_scale:!1,category:"symbols"},eight_pointed_black_star:{keywords:["orange-square","shape","polygon"],char:"\u2734\ufe0f",fitzpatrick_scale:!1,category:"symbols"},vs:{keywords:["words","orange-square"],char:"\u{1f19a}",fitzpatrick_scale:!1,category:"symbols"},accept:{keywords:["ok","good","chinese","kanji","agree","yes","orange-circle"],char:"\u{1f251}",fitzpatrick_scale:!1,category:"symbols"},white_flower:{keywords:["japanese","spring"],char:"\u{1f4ae}",fitzpatrick_scale:!1,category:"symbols"},ideograph_advantage:{keywords:["chinese","kanji","obtain","get","circle"],char:"\u{1f250}",fitzpatrick_scale:!1,category:"symbols"},secret:{keywords:["privacy","chinese","sshh","kanji","red-circle"],char:"\u3299\ufe0f",fitzpatrick_scale:!1,category:"symbols"},congratulations:{keywords:["chinese","kanji","japanese","red-circle"],char:"\u3297\ufe0f",fitzpatrick_scale:!1,category:"symbols"},u5408:{keywords:["japanese","chinese","join","kanji","red-square"],char:"\u{1f234}",fitzpatrick_scale:!1,category:"symbols"},u6e80:{keywords:["full","chinese","japanese","red-square","kanji"],char:"\u{1f235}",fitzpatrick_scale:!1,category:"symbols"},u7981:{keywords:["kanji","japanese","chinese","forbidden","limit","restricted","red-square"],char:"\u{1f232}",fitzpatrick_scale:!1,category:"symbols"},a:{keywords:["red-square","alphabet","letter"],char:"\u{1f170}\ufe0f",fitzpatrick_scale:!1,category:"symbols"},b:{keywords:["red-square","alphabet","letter"],char:"\u{1f171}\ufe0f",fitzpatrick_scale:!1,category:"symbols"},ab:{keywords:["red-square","alphabet"],char:"\u{1f18e}",fitzpatrick_scale:!1,category:"symbols"},cl:{keywords:["alphabet","words","red-square"],char:"\u{1f191}",fitzpatrick_scale:!1,category:"symbols"},o2:{keywords:["alphabet","red-square","letter"],char:"\u{1f17e}\ufe0f",fitzpatrick_scale:!1,category:"symbols"},sos:{keywords:["help","red-square","words","emergency","911"],char:"\u{1f198}",fitzpatrick_scale:!1,category:"symbols"},no_entry:{keywords:["limit","security","privacy","bad","denied","stop","circle"],char:"\u26d4",fitzpatrick_scale:!1,category:"symbols"},name_badge:{keywords:["fire","forbid"],char:"\u{1f4db}",fitzpatrick_scale:!1,category:"symbols"},no_entry_sign:{keywords:["forbid","stop","limit","denied","disallow","circle"],char:"\u{1f6ab}",fitzpatrick_scale:!1,category:"symbols"},x:{keywords:["no","delete","remove","cancel","red"],char:"\u274c",fitzpatrick_scale:!1,category:"symbols"},o:{keywords:["circle","round"],char:"\u2b55",fitzpatrick_scale:!1,category:"symbols"},stop_sign:{keywords:["stop"],char:"\u{1f6d1}",fitzpatrick_scale:!1,category:"symbols"},anger:{keywords:["angry","mad"],char:"\u{1f4a2}",fitzpatrick_scale:!1,category:"symbols"},hotsprings:{keywords:["bath","warm","relax"],char:"\u2668\ufe0f",fitzpatrick_scale:!1,category:"symbols"},no_pedestrians:{keywords:["rules","crossing","walking","circle"],char:"\u{1f6b7}",fitzpatrick_scale:!1,category:"symbols"},do_not_litter:{keywords:["trash","bin","garbage","circle"],char:"\u{1f6af}",fitzpatrick_scale:!1,category:"symbols"},no_bicycles:{keywords:["cyclist","prohibited","circle"],char:"\u{1f6b3}",fitzpatrick_scale:!1,category:"symbols"},"non-potable_water":{keywords:["drink","faucet","tap","circle"],char:"\u{1f6b1}",fitzpatrick_scale:!1,category:"symbols"},underage:{keywords:["18","drink","pub","night","minor","circle"],char:"\u{1f51e}",fitzpatrick_scale:!1,category:"symbols"},no_mobile_phones:{keywords:["iphone","mute","circle"],char:"\u{1f4f5}",fitzpatrick_scale:!1,category:"symbols"},exclamation:{keywords:["heavy_exclamation_mark","danger","surprise","punctuation","wow","warning"],char:"\u2757",fitzpatrick_scale:!1,category:"symbols"},grey_exclamation:{keywords:["surprise","punctuation","gray","wow","warning"],char:"\u2755",fitzpatrick_scale:!1,category:"symbols"},question:{keywords:["doubt","confused"],char:"\u2753",fitzpatrick_scale:!1,category:"symbols"},grey_question:{keywords:["doubts","gray","huh","confused"],char:"\u2754",fitzpatrick_scale:!1,category:"symbols"},bangbang:{keywords:["exclamation","surprise"],char:"\u203c\ufe0f",fitzpatrick_scale:!1,category:"symbols"},interrobang:{keywords:["wat","punctuation","surprise"],char:"\u2049\ufe0f",fitzpatrick_scale:!1,category:"symbols"},100:{keywords:["score","perfect","numbers","century","exam","quiz","test","pass","hundred"],char:"\u{1f4af}",fitzpatrick_scale:!1,category:"symbols"},low_brightness:{keywords:["sun","afternoon","warm","summer"],char:"\u{1f505}",fitzpatrick_scale:!1,category:"symbols"},high_brightness:{keywords:["sun","light"],char:"\u{1f506}",fitzpatrick_scale:!1,category:"symbols"},trident:{keywords:["weapon","spear"],char:"\u{1f531}",fitzpatrick_scale:!1,category:"symbols"},fleur_de_lis:{keywords:["decorative","scout"],char:"\u269c",fitzpatrick_scale:!1,category:"symbols"},part_alternation_mark:{keywords:["graph","presentation","stats","business","economics","bad"],char:"\u303d\ufe0f",fitzpatrick_scale:!1,category:"symbols"},warning:{keywords:["exclamation","wip","alert","error","problem","issue"],char:"\u26a0\ufe0f",fitzpatrick_scale:!1,category:"symbols"},children_crossing:{keywords:["school","warning","danger","sign","driving","yellow-diamond"],char:"\u{1f6b8}",fitzpatrick_scale:!1,category:"symbols"},beginner:{keywords:["badge","shield"],char:"\u{1f530}",fitzpatrick_scale:!1,category:"symbols"},recycle:{keywords:["arrow","environment","garbage","trash"],char:"\u267b\ufe0f",fitzpatrick_scale:!1,category:"symbols"},u6307:{keywords:["chinese","point","green-square","kanji"],char:"\u{1f22f}",fitzpatrick_scale:!1,category:"symbols"},chart:{keywords:["green-square","graph","presentation","stats"],char:"\u{1f4b9}",fitzpatrick_scale:!1,category:"symbols"},sparkle:{keywords:["stars","green-square","awesome","good","fireworks"],char:"\u2747\ufe0f",fitzpatrick_scale:!1,category:"symbols"},eight_spoked_asterisk:{keywords:["star","sparkle","green-square"],char:"\u2733\ufe0f",fitzpatrick_scale:!1,category:"symbols"},negative_squared_cross_mark:{keywords:["x","green-square","no","deny"],char:"\u274e",fitzpatrick_scale:!1,category:"symbols"},white_check_mark:{keywords:["green-square","ok","agree","vote","election","answer","tick"],char:"\u2705",fitzpatrick_scale:!1,category:"symbols"},diamond_shape_with_a_dot_inside:{keywords:["jewel","blue","gem","crystal","fancy"],char:"\u{1f4a0}",fitzpatrick_scale:!1,category:"symbols"},cyclone:{keywords:["weather","swirl","blue","cloud","vortex","spiral","whirlpool","spin","tornado","hurricane","typhoon"],char:"\u{1f300}",fitzpatrick_scale:!1,category:"symbols"},loop:{keywords:["tape","cassette"],char:"\u27bf",fitzpatrick_scale:!1,category:"symbols"},globe_with_meridians:{keywords:["earth","international","world","internet","interweb","i18n"],char:"\u{1f310}",fitzpatrick_scale:!1,category:"symbols"},m:{keywords:["alphabet","blue-circle","letter"],char:"\u24c2\ufe0f",fitzpatrick_scale:!1,category:"symbols"},atm:{keywords:["money","sales","cash","blue-square","payment","bank"],char:"\u{1f3e7}",fitzpatrick_scale:!1,category:"symbols"},sa:{keywords:["japanese","blue-square","katakana"],char:"\u{1f202}\ufe0f",fitzpatrick_scale:!1,category:"symbols"},passport_control:{keywords:["custom","blue-square"],char:"\u{1f6c2}",fitzpatrick_scale:!1,category:"symbols"},customs:{keywords:["passport","border","blue-square"],char:"\u{1f6c3}",fitzpatrick_scale:!1,category:"symbols"},baggage_claim:{keywords:["blue-square","airport","transport"],char:"\u{1f6c4}",fitzpatrick_scale:!1,category:"symbols"},left_luggage:{keywords:["blue-square","travel"],char:"\u{1f6c5}",fitzpatrick_scale:!1,category:"symbols"},wheelchair:{keywords:["blue-square","disabled","a11y","accessibility"],char:"\u267f",fitzpatrick_scale:!1,category:"symbols"},no_smoking:{keywords:["cigarette","blue-square","smell","smoke"],char:"\u{1f6ad}",fitzpatrick_scale:!1,category:"symbols"},wc:{keywords:["toilet","restroom","blue-square"],char:"\u{1f6be}",fitzpatrick_scale:!1,category:"symbols"},parking:{keywords:["cars","blue-square","alphabet","letter"],char:"\u{1f17f}\ufe0f",fitzpatrick_scale:!1,category:"symbols"},potable_water:{keywords:["blue-square","liquid","restroom","cleaning","faucet"],char:"\u{1f6b0}",fitzpatrick_scale:!1,category:"symbols"},mens:{keywords:["toilet","restroom","wc","blue-square","gender","male"],char:"\u{1f6b9}",fitzpatrick_scale:!1,category:"symbols"},womens:{keywords:["purple-square","woman","female","toilet","loo","restroom","gender"],char:"\u{1f6ba}",fitzpatrick_scale:!1,category:"symbols"},baby_symbol:{keywords:["orange-square","child"],char:"\u{1f6bc}",fitzpatrick_scale:!1,category:"symbols"},restroom:{keywords:["blue-square","toilet","refresh","wc","gender"],char:"\u{1f6bb}",fitzpatrick_scale:!1,category:"symbols"},put_litter_in_its_place:{keywords:["blue-square","sign","human","info"],char:"\u{1f6ae}",fitzpatrick_scale:!1,category:"symbols"},cinema:{keywords:["blue-square","record","film","movie","curtain","stage","theater"],char:"\u{1f3a6}",fitzpatrick_scale:!1,category:"symbols"},signal_strength:{keywords:["blue-square","reception","phone","internet","connection","wifi","bluetooth","bars"],char:"\u{1f4f6}",fitzpatrick_scale:!1,category:"symbols"},koko:{keywords:["blue-square","here","katakana","japanese","destination"],char:"\u{1f201}",fitzpatrick_scale:!1,category:"symbols"},ng:{keywords:["blue-square","words","shape","icon"],char:"\u{1f196}",fitzpatrick_scale:!1,category:"symbols"},ok:{keywords:["good","agree","yes","blue-square"],char:"\u{1f197}",fitzpatrick_scale:!1,category:"symbols"},up:{keywords:["blue-square","above","high"],char:"\u{1f199}",fitzpatrick_scale:!1,category:"symbols"},cool:{keywords:["words","blue-square"],char:"\u{1f192}",fitzpatrick_scale:!1,category:"symbols"},new:{keywords:["blue-square","words","start"],char:"\u{1f195}",fitzpatrick_scale:!1,category:"symbols"},free:{keywords:["blue-square","words"],char:"\u{1f193}",fitzpatrick_scale:!1,category:"symbols"},zero:{keywords:["0","numbers","blue-square","null"],char:"0\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},one:{keywords:["blue-square","numbers","1"],char:"1\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},two:{keywords:["numbers","2","prime","blue-square"],char:"2\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},three:{keywords:["3","numbers","prime","blue-square"],char:"3\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},four:{keywords:["4","numbers","blue-square"],char:"4\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},five:{keywords:["5","numbers","blue-square","prime"],char:"5\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},six:{keywords:["6","numbers","blue-square"],char:"6\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},seven:{keywords:["7","numbers","blue-square","prime"],char:"7\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},eight:{keywords:["8","blue-square","numbers"],char:"8\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},nine:{keywords:["blue-square","numbers","9"],char:"9\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},keycap_ten:{keywords:["numbers","10","blue-square"],char:"\u{1f51f}",fitzpatrick_scale:!1,category:"symbols"},asterisk:{keywords:["star","keycap"],char:"*\u20e3",fitzpatrick_scale:!1,category:"symbols"},1234:{keywords:["numbers","blue-square"],char:"\u{1f522}",fitzpatrick_scale:!1,category:"symbols"},eject_button:{keywords:["blue-square"],char:"\u23cf\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_forward:{keywords:["blue-square","right","direction","play"],char:"\u25b6\ufe0f",fitzpatrick_scale:!1,category:"symbols"},pause_button:{keywords:["pause","blue-square"],char:"\u23f8",fitzpatrick_scale:!1,category:"symbols"},next_track_button:{keywords:["forward","next","blue-square"],char:"\u23ed",fitzpatrick_scale:!1,category:"symbols"},stop_button:{keywords:["blue-square"],char:"\u23f9",fitzpatrick_scale:!1,category:"symbols"},record_button:{keywords:["blue-square"],char:"\u23fa",fitzpatrick_scale:!1,category:"symbols"},play_or_pause_button:{keywords:["blue-square","play","pause"],char:"\u23ef",fitzpatrick_scale:!1,category:"symbols"},previous_track_button:{keywords:["backward"],char:"\u23ee",fitzpatrick_scale:!1,category:"symbols"},fast_forward:{keywords:["blue-square","play","speed","continue"],char:"\u23e9",fitzpatrick_scale:!1,category:"symbols"},rewind:{keywords:["play","blue-square"],char:"\u23ea",fitzpatrick_scale:!1,category:"symbols"},twisted_rightwards_arrows:{keywords:["blue-square","shuffle","music","random"],char:"\u{1f500}",fitzpatrick_scale:!1,category:"symbols"},repeat:{keywords:["loop","record"],char:"\u{1f501}",fitzpatrick_scale:!1,category:"symbols"},repeat_one:{keywords:["blue-square","loop"],char:"\u{1f502}",fitzpatrick_scale:!1,category:"symbols"},arrow_backward:{keywords:["blue-square","left","direction"],char:"\u25c0\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_up_small:{keywords:["blue-square","triangle","direction","point","forward","top"],char:"\u{1f53c}",fitzpatrick_scale:!1,category:"symbols"},arrow_down_small:{keywords:["blue-square","direction","bottom"],char:"\u{1f53d}",fitzpatrick_scale:!1,category:"symbols"},arrow_double_up:{keywords:["blue-square","direction","top"],char:"\u23eb",fitzpatrick_scale:!1,category:"symbols"},arrow_double_down:{keywords:["blue-square","direction","bottom"],char:"\u23ec",fitzpatrick_scale:!1,category:"symbols"},arrow_right:{keywords:["blue-square","next"],char:"\u27a1\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_left:{keywords:["blue-square","previous","back"],char:"\u2b05\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_up:{keywords:["blue-square","continue","top","direction"],char:"\u2b06\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_down:{keywords:["blue-square","direction","bottom"],char:"\u2b07\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_upper_right:{keywords:["blue-square","point","direction","diagonal","northeast"],char:"\u2197\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_lower_right:{keywords:["blue-square","direction","diagonal","southeast"],char:"\u2198\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_lower_left:{keywords:["blue-square","direction","diagonal","southwest"],char:"\u2199\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_upper_left:{keywords:["blue-square","point","direction","diagonal","northwest"],char:"\u2196\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_up_down:{keywords:["blue-square","direction","way","vertical"],char:"\u2195\ufe0f",fitzpatrick_scale:!1,category:"symbols"},left_right_arrow:{keywords:["shape","direction","horizontal","sideways"],char:"\u2194\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrows_counterclockwise:{keywords:["blue-square","sync","cycle"],char:"\u{1f504}",fitzpatrick_scale:!1,category:"symbols"},arrow_right_hook:{keywords:["blue-square","return","rotate","direction"],char:"\u21aa\ufe0f",fitzpatrick_scale:!1,category:"symbols"},leftwards_arrow_with_hook:{keywords:["back","return","blue-square","undo","enter"],char:"\u21a9\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_heading_up:{keywords:["blue-square","direction","top"],char:"\u2934\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrow_heading_down:{keywords:["blue-square","direction","bottom"],char:"\u2935\ufe0f",fitzpatrick_scale:!1,category:"symbols"},hash:{keywords:["symbol","blue-square","twitter"],char:"#\ufe0f\u20e3",fitzpatrick_scale:!1,category:"symbols"},information_source:{keywords:["blue-square","alphabet","letter"],char:"\u2139\ufe0f",fitzpatrick_scale:!1,category:"symbols"},abc:{keywords:["blue-square","alphabet"],char:"\u{1f524}",fitzpatrick_scale:!1,category:"symbols"},abcd:{keywords:["blue-square","alphabet"],char:"\u{1f521}",fitzpatrick_scale:!1,category:"symbols"},capital_abcd:{keywords:["alphabet","words","blue-square"],char:"\u{1f520}",fitzpatrick_scale:!1,category:"symbols"},symbols:{keywords:["blue-square","music","note","ampersand","percent","glyphs","characters"],char:"\u{1f523}",fitzpatrick_scale:!1,category:"symbols"},musical_note:{keywords:["score","tone","sound"],char:"\u{1f3b5}",fitzpatrick_scale:!1,category:"symbols"},notes:{keywords:["music","score"],char:"\u{1f3b6}",fitzpatrick_scale:!1,category:"symbols"},wavy_dash:{keywords:["draw","line","moustache","mustache","squiggle","scribble"],char:"\u3030\ufe0f",fitzpatrick_scale:!1,category:"symbols"},curly_loop:{keywords:["scribble","draw","shape","squiggle"],char:"\u27b0",fitzpatrick_scale:!1,category:"symbols"},heavy_check_mark:{keywords:["ok","nike","answer","yes","tick"],char:"\u2714\ufe0f",fitzpatrick_scale:!1,category:"symbols"},arrows_clockwise:{keywords:["sync","cycle","round","repeat"],char:"\u{1f503}",fitzpatrick_scale:!1,category:"symbols"},heavy_plus_sign:{keywords:["math","calculation","addition","more","increase"],char:"\u2795",fitzpatrick_scale:!1,category:"symbols"},heavy_minus_sign:{keywords:["math","calculation","subtract","less"],char:"\u2796",fitzpatrick_scale:!1,category:"symbols"},heavy_division_sign:{keywords:["divide","math","calculation"],char:"\u2797",fitzpatrick_scale:!1,category:"symbols"},heavy_multiplication_x:{keywords:["math","calculation"],char:"\u2716\ufe0f",fitzpatrick_scale:!1,category:"symbols"},infinity:{keywords:["forever"],char:"\u267e",fitzpatrick_scale:!1,category:"symbols"},heavy_dollar_sign:{keywords:["money","sales","payment","currency","buck"],char:"\u{1f4b2}",fitzpatrick_scale:!1,category:"symbols"},currency_exchange:{keywords:["money","sales","dollar","travel"],char:"\u{1f4b1}",fitzpatrick_scale:!1,category:"symbols"},copyright:{keywords:["ip","license","circle","law","legal"],char:"\xa9\ufe0f",fitzpatrick_scale:!1,category:"symbols"},registered:{keywords:["alphabet","circle"],char:"\xae\ufe0f",fitzpatrick_scale:!1,category:"symbols"},tm:{keywords:["trademark","brand","law","legal"],char:"\u2122\ufe0f",fitzpatrick_scale:!1,category:"symbols"},end:{keywords:["words","arrow"],char:"\u{1f51a}",fitzpatrick_scale:!1,category:"symbols"},back:{keywords:["arrow","words","return"],char:"\u{1f519}",fitzpatrick_scale:!1,category:"symbols"},on:{keywords:["arrow","words"],char:"\u{1f51b}",fitzpatrick_scale:!1,category:"symbols"},top:{keywords:["words","blue-square"],char:"\u{1f51d}",fitzpatrick_scale:!1,category:"symbols"},soon:{keywords:["arrow","words"],char:"\u{1f51c}",fitzpatrick_scale:!1,category:"symbols"},ballot_box_with_check:{keywords:["ok","agree","confirm","black-square","vote","election","yes","tick"],char:"\u2611\ufe0f",fitzpatrick_scale:!1,category:"symbols"},radio_button:{keywords:["input","old","music","circle"],char:"\u{1f518}",fitzpatrick_scale:!1,category:"symbols"},white_circle:{keywords:["shape","round"],char:"\u26aa",fitzpatrick_scale:!1,category:"symbols"},black_circle:{keywords:["shape","button","round"],char:"\u26ab",fitzpatrick_scale:!1,category:"symbols"},red_circle:{keywords:["shape","error","danger"],char:"\u{1f534}",fitzpatrick_scale:!1,category:"symbols"},large_blue_circle:{keywords:["shape","icon","button"],char:"\u{1f535}",fitzpatrick_scale:!1,category:"symbols"},small_orange_diamond:{keywords:["shape","jewel","gem"],char:"\u{1f538}",fitzpatrick_scale:!1,category:"symbols"},small_blue_diamond:{keywords:["shape","jewel","gem"],char:"\u{1f539}",fitzpatrick_scale:!1,category:"symbols"},large_orange_diamond:{keywords:["shape","jewel","gem"],char:"\u{1f536}",fitzpatrick_scale:!1,category:"symbols"},large_blue_diamond:{keywords:["shape","jewel","gem"],char:"\u{1f537}",fitzpatrick_scale:!1,category:"symbols"},small_red_triangle:{keywords:["shape","direction","up","top"],char:"\u{1f53a}",fitzpatrick_scale:!1,category:"symbols"},black_small_square:{keywords:["shape","icon"],char:"\u25aa\ufe0f",fitzpatrick_scale:!1,category:"symbols"},white_small_square:{keywords:["shape","icon"],char:"\u25ab\ufe0f",fitzpatrick_scale:!1,category:"symbols"},black_large_square:{keywords:["shape","icon","button"],char:"\u2b1b",fitzpatrick_scale:!1,category:"symbols"},white_large_square:{keywords:["shape","icon","stone","button"],char:"\u2b1c",fitzpatrick_scale:!1,category:"symbols"},small_red_triangle_down:{keywords:["shape","direction","bottom"],char:"\u{1f53b}",fitzpatrick_scale:!1,category:"symbols"},black_medium_square:{keywords:["shape","button","icon"],char:"\u25fc\ufe0f",fitzpatrick_scale:!1,category:"symbols"},white_medium_square:{keywords:["shape","stone","icon"],char:"\u25fb\ufe0f",fitzpatrick_scale:!1,category:"symbols"},black_medium_small_square:{keywords:["icon","shape","button"],char:"\u25fe",fitzpatrick_scale:!1,category:"symbols"},white_medium_small_square:{keywords:["shape","stone","icon","button"],char:"\u25fd",fitzpatrick_scale:!1,category:"symbols"},black_square_button:{keywords:["shape","input","frame"],char:"\u{1f532}",fitzpatrick_scale:!1,category:"symbols"},white_square_button:{keywords:["shape","input"],char:"\u{1f533}",fitzpatrick_scale:!1,category:"symbols"},speaker:{keywords:["sound","volume","silence","broadcast"],char:"\u{1f508}",fitzpatrick_scale:!1,category:"symbols"},sound:{keywords:["volume","speaker","broadcast"],char:"\u{1f509}",fitzpatrick_scale:!1,category:"symbols"},loud_sound:{keywords:["volume","noise","noisy","speaker","broadcast"],char:"\u{1f50a}",fitzpatrick_scale:!1,category:"symbols"},mute:{keywords:["sound","volume","silence","quiet"],char:"\u{1f507}",fitzpatrick_scale:!1,category:"symbols"},mega:{keywords:["sound","speaker","volume"],char:"\u{1f4e3}",fitzpatrick_scale:!1,category:"symbols"},loudspeaker:{keywords:["volume","sound"],char:"\u{1f4e2}",fitzpatrick_scale:!1,category:"symbols"},bell:{keywords:["sound","notification","christmas","xmas","chime"],char:"\u{1f514}",fitzpatrick_scale:!1,category:"symbols"},no_bell:{keywords:["sound","volume","mute","quiet","silent"],char:"\u{1f515}",fitzpatrick_scale:!1,category:"symbols"},black_joker:{keywords:["poker","cards","game","play","magic"],char:"\u{1f0cf}",fitzpatrick_scale:!1,category:"symbols"},mahjong:{keywords:["game","play","chinese","kanji"],char:"\u{1f004}",fitzpatrick_scale:!1,category:"symbols"},spades:{keywords:["poker","cards","suits","magic"],char:"\u2660\ufe0f",fitzpatrick_scale:!1,category:"symbols"},clubs:{keywords:["poker","cards","magic","suits"],char:"\u2663\ufe0f",fitzpatrick_scale:!1,category:"symbols"},hearts:{keywords:["poker","cards","magic","suits"],char:"\u2665\ufe0f",fitzpatrick_scale:!1,category:"symbols"},diamonds:{keywords:["poker","cards","magic","suits"],char:"\u2666\ufe0f",fitzpatrick_scale:!1,category:"symbols"},flower_playing_cards:{keywords:["game","sunset","red"],char:"\u{1f3b4}",fitzpatrick_scale:!1,category:"symbols"},thought_balloon:{keywords:["bubble","cloud","speech","thinking","dream"],char:"\u{1f4ad}",fitzpatrick_scale:!1,category:"symbols"},right_anger_bubble:{keywords:["caption","speech","thinking","mad"],char:"\u{1f5ef}",fitzpatrick_scale:!1,category:"symbols"},speech_balloon:{keywords:["bubble","words","message","talk","chatting"],char:"\u{1f4ac}",fitzpatrick_scale:!1,category:"symbols"},left_speech_bubble:{keywords:["words","message","talk","chatting"],char:"\u{1f5e8}",fitzpatrick_scale:!1,category:"symbols"},clock1:{keywords:["time","late","early","schedule"],char:"\u{1f550}",fitzpatrick_scale:!1,category:"symbols"},clock2:{keywords:["time","late","early","schedule"],char:"\u{1f551}",fitzpatrick_scale:!1,category:"symbols"},clock3:{keywords:["time","late","early","schedule"],char:"\u{1f552}",fitzpatrick_scale:!1,category:"symbols"},clock4:{keywords:["time","late","early","schedule"],char:"\u{1f553}",fitzpatrick_scale:!1,category:"symbols"},clock5:{keywords:["time","late","early","schedule"],char:"\u{1f554}",fitzpatrick_scale:!1,category:"symbols"},clock6:{keywords:["time","late","early","schedule","dawn","dusk"],char:"\u{1f555}",fitzpatrick_scale:!1,category:"symbols"},clock7:{keywords:["time","late","early","schedule"],char:"\u{1f556}",fitzpatrick_scale:!1,category:"symbols"},clock8:{keywords:["time","late","early","schedule"],char:"\u{1f557}",fitzpatrick_scale:!1,category:"symbols"},clock9:{keywords:["time","late","early","schedule"],char:"\u{1f558}",fitzpatrick_scale:!1,category:"symbols"},clock10:{keywords:["time","late","early","schedule"],char:"\u{1f559}",fitzpatrick_scale:!1,category:"symbols"},clock11:{keywords:["time","late","early","schedule"],char:"\u{1f55a}",fitzpatrick_scale:!1,category:"symbols"},clock12:{keywords:["time","noon","midnight","midday","late","early","schedule"],char:"\u{1f55b}",fitzpatrick_scale:!1,category:"symbols"},clock130:{keywords:["time","late","early","schedule"],char:"\u{1f55c}",fitzpatrick_scale:!1,category:"symbols"},clock230:{keywords:["time","late","early","schedule"],char:"\u{1f55d}",fitzpatrick_scale:!1,category:"symbols"},clock330:{keywords:["time","late","early","schedule"],char:"\u{1f55e}",fitzpatrick_scale:!1,category:"symbols"},clock430:{keywords:["time","late","early","schedule"],char:"\u{1f55f}",fitzpatrick_scale:!1,category:"symbols"},clock530:{keywords:["time","late","early","schedule"],char:"\u{1f560}",fitzpatrick_scale:!1,category:"symbols"},clock630:{keywords:["time","late","early","schedule"],char:"\u{1f561}",fitzpatrick_scale:!1,category:"symbols"},clock730:{keywords:["time","late","early","schedule"],char:"\u{1f562}",fitzpatrick_scale:!1,category:"symbols"},clock830:{keywords:["time","late","early","schedule"],char:"\u{1f563}",fitzpatrick_scale:!1,category:"symbols"},clock930:{keywords:["time","late","early","schedule"],char:"\u{1f564}",fitzpatrick_scale:!1,category:"symbols"},clock1030:{keywords:["time","late","early","schedule"],char:"\u{1f565}",fitzpatrick_scale:!1,category:"symbols"},clock1130:{keywords:["time","late","early","schedule"],char:"\u{1f566}",fitzpatrick_scale:!1,category:"symbols"},clock1230:{keywords:["time","late","early","schedule"],char:"\u{1f567}",fitzpatrick_scale:!1,category:"symbols"},afghanistan:{keywords:["af","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},aland_islands:{keywords:["\xc5land","islands","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1fd}",fitzpatrick_scale:!1,category:"flags"},albania:{keywords:["al","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},algeria:{keywords:["dz","flag","nation","country","banner"],char:"\u{1f1e9}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},american_samoa:{keywords:["american","ws","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},andorra:{keywords:["ad","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},angola:{keywords:["ao","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},anguilla:{keywords:["ai","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},antarctica:{keywords:["aq","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1f6}",fitzpatrick_scale:!1,category:"flags"},antigua_barbuda:{keywords:["antigua","barbuda","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},argentina:{keywords:["ar","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},armenia:{keywords:["am","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},aruba:{keywords:["aw","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},australia:{keywords:["au","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},austria:{keywords:["at","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},azerbaijan:{keywords:["az","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},bahamas:{keywords:["bs","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},bahrain:{keywords:["bh","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},bangladesh:{keywords:["bd","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},barbados:{keywords:["bb","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1e7}",fitzpatrick_scale:!1,category:"flags"},belarus:{keywords:["by","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},belgium:{keywords:["be","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},belize:{keywords:["bz","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},benin:{keywords:["bj","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1ef}",fitzpatrick_scale:!1,category:"flags"},bermuda:{keywords:["bm","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},bhutan:{keywords:["bt","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},bolivia:{keywords:["bo","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},caribbean_netherlands:{keywords:["bonaire","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f6}",fitzpatrick_scale:!1,category:"flags"},bosnia_herzegovina:{keywords:["bosnia","herzegovina","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},botswana:{keywords:["bw","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},brazil:{keywords:["br","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},british_indian_ocean_territory:{keywords:["british","indian","ocean","territory","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},british_virgin_islands:{keywords:["british","virgin","islands","bvi","flag","nation","country","banner"],char:"\u{1f1fb}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},brunei:{keywords:["bn","darussalam","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},bulgaria:{keywords:["bg","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},burkina_faso:{keywords:["burkina","faso","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},burundi:{keywords:["bi","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},cape_verde:{keywords:["cabo","verde","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1fb}",fitzpatrick_scale:!1,category:"flags"},cambodia:{keywords:["kh","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},cameroon:{keywords:["cm","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},canada:{keywords:["ca","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},canary_islands:{keywords:["canary","islands","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},cayman_islands:{keywords:["cayman","islands","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},central_african_republic:{keywords:["central","african","republic","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},chad:{keywords:["td","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},chile:{keywords:["flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},cn:{keywords:["china","chinese","prc","flag","country","nation","banner"],char:"\u{1f1e8}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},christmas_island:{keywords:["christmas","island","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1fd}",fitzpatrick_scale:!1,category:"flags"},cocos_islands:{keywords:["cocos","keeling","islands","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},colombia:{keywords:["co","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},comoros:{keywords:["km","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},congo_brazzaville:{keywords:["congo","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},congo_kinshasa:{keywords:["congo","democratic","republic","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},cook_islands:{keywords:["cook","islands","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},costa_rica:{keywords:["costa","rica","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},croatia:{keywords:["hr","flag","nation","country","banner"],char:"\u{1f1ed}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},cuba:{keywords:["cu","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},curacao:{keywords:["cura\xe7ao","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},cyprus:{keywords:["cy","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},czech_republic:{keywords:["cz","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},denmark:{keywords:["dk","flag","nation","country","banner"],char:"\u{1f1e9}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},djibouti:{keywords:["dj","flag","nation","country","banner"],char:"\u{1f1e9}\u{1f1ef}",fitzpatrick_scale:!1,category:"flags"},dominica:{keywords:["dm","flag","nation","country","banner"],char:"\u{1f1e9}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},dominican_republic:{keywords:["dominican","republic","flag","nation","country","banner"],char:"\u{1f1e9}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},ecuador:{keywords:["ec","flag","nation","country","banner"],char:"\u{1f1ea}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},egypt:{keywords:["eg","flag","nation","country","banner"],char:"\u{1f1ea}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},el_salvador:{keywords:["el","salvador","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1fb}",fitzpatrick_scale:!1,category:"flags"},equatorial_guinea:{keywords:["equatorial","gn","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f6}",fitzpatrick_scale:!1,category:"flags"},eritrea:{keywords:["er","flag","nation","country","banner"],char:"\u{1f1ea}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},estonia:{keywords:["ee","flag","nation","country","banner"],char:"\u{1f1ea}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},ethiopia:{keywords:["et","flag","nation","country","banner"],char:"\u{1f1ea}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},eu:{keywords:["european","union","flag","banner"],char:"\u{1f1ea}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},falkland_islands:{keywords:["falkland","islands","malvinas","flag","nation","country","banner"],char:"\u{1f1eb}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},faroe_islands:{keywords:["faroe","islands","flag","nation","country","banner"],char:"\u{1f1eb}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},fiji:{keywords:["fj","flag","nation","country","banner"],char:"\u{1f1eb}\u{1f1ef}",fitzpatrick_scale:!1,category:"flags"},finland:{keywords:["fi","flag","nation","country","banner"],char:"\u{1f1eb}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},fr:{keywords:["banner","flag","nation","france","french","country"],char:"\u{1f1eb}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},french_guiana:{keywords:["french","guiana","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},french_polynesia:{keywords:["french","polynesia","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},french_southern_territories:{keywords:["french","southern","territories","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},gabon:{keywords:["ga","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},gambia:{keywords:["gm","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},georgia:{keywords:["ge","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},de:{keywords:["german","nation","flag","country","banner"],char:"\u{1f1e9}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},ghana:{keywords:["gh","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},gibraltar:{keywords:["gi","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},greece:{keywords:["gr","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},greenland:{keywords:["gl","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},grenada:{keywords:["gd","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},guadeloupe:{keywords:["gp","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f5}",fitzpatrick_scale:!1,category:"flags"},guam:{keywords:["gu","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},guatemala:{keywords:["gt","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},guernsey:{keywords:["gg","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},guinea:{keywords:["gn","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},guinea_bissau:{keywords:["gw","bissau","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},guyana:{keywords:["gy","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},haiti:{keywords:["ht","flag","nation","country","banner"],char:"\u{1f1ed}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},honduras:{keywords:["hn","flag","nation","country","banner"],char:"\u{1f1ed}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},hong_kong:{keywords:["hong","kong","flag","nation","country","banner"],char:"\u{1f1ed}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},hungary:{keywords:["hu","flag","nation","country","banner"],char:"\u{1f1ed}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},iceland:{keywords:["is","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},india:{keywords:["in","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},indonesia:{keywords:["flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},iran:{keywords:["iran,","islamic","republic","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},iraq:{keywords:["iq","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f6}",fitzpatrick_scale:!1,category:"flags"},ireland:{keywords:["ie","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},isle_of_man:{keywords:["isle","man","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},israel:{keywords:["il","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},it:{keywords:["italy","flag","nation","country","banner"],char:"\u{1f1ee}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},cote_divoire:{keywords:["ivory","coast","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},jamaica:{keywords:["jm","flag","nation","country","banner"],char:"\u{1f1ef}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},jp:{keywords:["japanese","nation","flag","country","banner"],char:"\u{1f1ef}\u{1f1f5}",fitzpatrick_scale:!1,category:"flags"},jersey:{keywords:["je","flag","nation","country","banner"],char:"\u{1f1ef}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},jordan:{keywords:["jo","flag","nation","country","banner"],char:"\u{1f1ef}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},kazakhstan:{keywords:["kz","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},kenya:{keywords:["ke","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},kiribati:{keywords:["ki","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},kosovo:{keywords:["xk","flag","nation","country","banner"],char:"\u{1f1fd}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},kuwait:{keywords:["kw","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},kyrgyzstan:{keywords:["kg","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},laos:{keywords:["lao","democratic","republic","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},latvia:{keywords:["lv","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1fb}",fitzpatrick_scale:!1,category:"flags"},lebanon:{keywords:["lb","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1e7}",fitzpatrick_scale:!1,category:"flags"},lesotho:{keywords:["ls","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},liberia:{keywords:["lr","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},libya:{keywords:["ly","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},liechtenstein:{keywords:["li","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},lithuania:{keywords:["lt","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},luxembourg:{keywords:["lu","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},macau:{keywords:["macao","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},macedonia:{keywords:["macedonia,","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},madagascar:{keywords:["mg","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},malawi:{keywords:["mw","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},malaysia:{keywords:["my","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},maldives:{keywords:["mv","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1fb}",fitzpatrick_scale:!1,category:"flags"},mali:{keywords:["ml","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},malta:{keywords:["mt","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},marshall_islands:{keywords:["marshall","islands","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},martinique:{keywords:["mq","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f6}",fitzpatrick_scale:!1,category:"flags"},mauritania:{keywords:["mr","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},mauritius:{keywords:["mu","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},mayotte:{keywords:["yt","flag","nation","country","banner"],char:"\u{1f1fe}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},mexico:{keywords:["mx","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1fd}",fitzpatrick_scale:!1,category:"flags"},micronesia:{keywords:["micronesia,","federated","states","flag","nation","country","banner"],char:"\u{1f1eb}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},moldova:{keywords:["moldova,","republic","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},monaco:{keywords:["mc","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},mongolia:{keywords:["mn","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},montenegro:{keywords:["me","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},montserrat:{keywords:["ms","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},morocco:{keywords:["ma","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},mozambique:{keywords:["mz","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},myanmar:{keywords:["mm","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},namibia:{keywords:["na","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},nauru:{keywords:["nr","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},nepal:{keywords:["np","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1f5}",fitzpatrick_scale:!1,category:"flags"},netherlands:{keywords:["nl","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},new_caledonia:{keywords:["new","caledonia","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},new_zealand:{keywords:["new","zealand","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},nicaragua:{keywords:["ni","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},niger:{keywords:["ne","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},nigeria:{keywords:["flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},niue:{keywords:["nu","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},norfolk_island:{keywords:["norfolk","island","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},northern_mariana_islands:{keywords:["northern","mariana","islands","flag","nation","country","banner"],char:"\u{1f1f2}\u{1f1f5}",fitzpatrick_scale:!1,category:"flags"},north_korea:{keywords:["north","korea","nation","flag","country","banner"],char:"\u{1f1f0}\u{1f1f5}",fitzpatrick_scale:!1,category:"flags"},norway:{keywords:["no","flag","nation","country","banner"],char:"\u{1f1f3}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},oman:{keywords:["om_symbol","flag","nation","country","banner"],char:"\u{1f1f4}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},pakistan:{keywords:["pk","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},palau:{keywords:["pw","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},palestinian_territories:{keywords:["palestine","palestinian","territories","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},panama:{keywords:["pa","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},papua_new_guinea:{keywords:["papua","new","guinea","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},paraguay:{keywords:["py","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},peru:{keywords:["pe","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},philippines:{keywords:["ph","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},pitcairn_islands:{keywords:["pitcairn","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},poland:{keywords:["pl","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},portugal:{keywords:["pt","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},puerto_rico:{keywords:["puerto","rico","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},qatar:{keywords:["qa","flag","nation","country","banner"],char:"\u{1f1f6}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},reunion:{keywords:["r\xe9union","flag","nation","country","banner"],char:"\u{1f1f7}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},romania:{keywords:["ro","flag","nation","country","banner"],char:"\u{1f1f7}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},ru:{keywords:["russian","federation","flag","nation","country","banner"],char:"\u{1f1f7}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},rwanda:{keywords:["rw","flag","nation","country","banner"],char:"\u{1f1f7}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},st_barthelemy:{keywords:["saint","barth\xe9lemy","flag","nation","country","banner"],char:"\u{1f1e7}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},st_helena:{keywords:["saint","helena","ascension","tristan","cunha","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},st_kitts_nevis:{keywords:["saint","kitts","nevis","flag","nation","country","banner"],char:"\u{1f1f0}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},st_lucia:{keywords:["saint","lucia","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},st_pierre_miquelon:{keywords:["saint","pierre","miquelon","flag","nation","country","banner"],char:"\u{1f1f5}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},st_vincent_grenadines:{keywords:["saint","vincent","grenadines","flag","nation","country","banner"],char:"\u{1f1fb}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},samoa:{keywords:["ws","flag","nation","country","banner"],char:"\u{1f1fc}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},san_marino:{keywords:["san","marino","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},sao_tome_principe:{keywords:["sao","tome","principe","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},saudi_arabia:{keywords:["flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},senegal:{keywords:["sn","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},serbia:{keywords:["rs","flag","nation","country","banner"],char:"\u{1f1f7}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},seychelles:{keywords:["sc","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},sierra_leone:{keywords:["sierra","leone","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},singapore:{keywords:["sg","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},sint_maarten:{keywords:["sint","maarten","dutch","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1fd}",fitzpatrick_scale:!1,category:"flags"},slovakia:{keywords:["sk","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},slovenia:{keywords:["si","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},solomon_islands:{keywords:["solomon","islands","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1e7}",fitzpatrick_scale:!1,category:"flags"},somalia:{keywords:["so","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},south_africa:{keywords:["south","africa","flag","nation","country","banner"],char:"\u{1f1ff}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},south_georgia_south_sandwich_islands:{keywords:["south","georgia","sandwich","islands","flag","nation","country","banner"],char:"\u{1f1ec}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},kr:{keywords:["south","korea","nation","flag","country","banner"],char:"\u{1f1f0}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},south_sudan:{keywords:["south","sd","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},es:{keywords:["spain","flag","nation","country","banner"],char:"\u{1f1ea}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},sri_lanka:{keywords:["sri","lanka","flag","nation","country","banner"],char:"\u{1f1f1}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},sudan:{keywords:["sd","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1e9}",fitzpatrick_scale:!1,category:"flags"},suriname:{keywords:["sr","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},swaziland:{keywords:["sz","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},sweden:{keywords:["se","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},switzerland:{keywords:["ch","flag","nation","country","banner"],char:"\u{1f1e8}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},syria:{keywords:["syrian","arab","republic","flag","nation","country","banner"],char:"\u{1f1f8}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},taiwan:{keywords:["tw","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},tajikistan:{keywords:["tj","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1ef}",fitzpatrick_scale:!1,category:"flags"},tanzania:{keywords:["tanzania,","united","republic","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},thailand:{keywords:["th","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},timor_leste:{keywords:["timor","leste","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1f1}",fitzpatrick_scale:!1,category:"flags"},togo:{keywords:["tg","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},tokelau:{keywords:["tk","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1f0}",fitzpatrick_scale:!1,category:"flags"},tonga:{keywords:["to","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1f4}",fitzpatrick_scale:!1,category:"flags"},trinidad_tobago:{keywords:["trinidad","tobago","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1f9}",fitzpatrick_scale:!1,category:"flags"},tunisia:{keywords:["tn","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},tr:{keywords:["turkey","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1f7}",fitzpatrick_scale:!1,category:"flags"},turkmenistan:{keywords:["flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},turks_caicos_islands:{keywords:["turks","caicos","islands","flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1e8}",fitzpatrick_scale:!1,category:"flags"},tuvalu:{keywords:["flag","nation","country","banner"],char:"\u{1f1f9}\u{1f1fb}",fitzpatrick_scale:!1,category:"flags"},uganda:{keywords:["ug","flag","nation","country","banner"],char:"\u{1f1fa}\u{1f1ec}",fitzpatrick_scale:!1,category:"flags"},ukraine:{keywords:["ua","flag","nation","country","banner"],char:"\u{1f1fa}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},united_arab_emirates:{keywords:["united","arab","emirates","flag","nation","country","banner"],char:"\u{1f1e6}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},uk:{keywords:["united","kingdom","great","britain","northern","ireland","flag","nation","country","banner","british","UK","english","england","union jack"],char:"\u{1f1ec}\u{1f1e7}",fitzpatrick_scale:!1,category:"flags"},england:{keywords:["flag","english"],char:"\u{1f3f4}\u{e0067}\u{e0062}\u{e0065}\u{e006e}\u{e0067}\u{e007f}",fitzpatrick_scale:!1,category:"flags"},scotland:{keywords:["flag","scottish"],char:"\u{1f3f4}\u{e0067}\u{e0062}\u{e0073}\u{e0063}\u{e0074}\u{e007f}",fitzpatrick_scale:!1,category:"flags"},wales:{keywords:["flag","welsh"],char:"\u{1f3f4}\u{e0067}\u{e0062}\u{e0077}\u{e006c}\u{e0073}\u{e007f}",fitzpatrick_scale:!1,category:"flags"},us:{keywords:["united","states","america","flag","nation","country","banner"],char:"\u{1f1fa}\u{1f1f8}",fitzpatrick_scale:!1,category:"flags"},us_virgin_islands:{keywords:["virgin","islands","us","flag","nation","country","banner"],char:"\u{1f1fb}\u{1f1ee}",fitzpatrick_scale:!1,category:"flags"},uruguay:{keywords:["uy","flag","nation","country","banner"],char:"\u{1f1fa}\u{1f1fe}",fitzpatrick_scale:!1,category:"flags"},uzbekistan:{keywords:["uz","flag","nation","country","banner"],char:"\u{1f1fa}\u{1f1ff}",fitzpatrick_scale:!1,category:"flags"},vanuatu:{keywords:["vu","flag","nation","country","banner"],char:"\u{1f1fb}\u{1f1fa}",fitzpatrick_scale:!1,category:"flags"},vatican_city:{keywords:["vatican","city","flag","nation","country","banner"],char:"\u{1f1fb}\u{1f1e6}",fitzpatrick_scale:!1,category:"flags"},venezuela:{keywords:["ve","bolivarian","republic","flag","nation","country","banner"],char:"\u{1f1fb}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},vietnam:{keywords:["viet","nam","flag","nation","country","banner"],char:"\u{1f1fb}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},wallis_futuna:{keywords:["wallis","futuna","flag","nation","country","banner"],char:"\u{1f1fc}\u{1f1eb}",fitzpatrick_scale:!1,category:"flags"},western_sahara:{keywords:["western","sahara","flag","nation","country","banner"],char:"\u{1f1ea}\u{1f1ed}",fitzpatrick_scale:!1,category:"flags"},yemen:{keywords:["ye","flag","nation","country","banner"],char:"\u{1f1fe}\u{1f1ea}",fitzpatrick_scale:!1,category:"flags"},zambia:{keywords:["zm","flag","nation","country","banner"],char:"\u{1f1ff}\u{1f1f2}",fitzpatrick_scale:!1,category:"flags"},zimbabwe:{keywords:["zw","flag","nation","country","banner"],char:"\u{1f1ff}\u{1f1fc}",fitzpatrick_scale:!1,category:"flags"},united_nations:{keywords:["un","flag","banner"],char:"\u{1f1fa}\u{1f1f3}",fitzpatrick_scale:!1,category:"flags"},pirate_flag:{keywords:["skull","crossbones","flag","banner"],char:"\u{1f3f4}\u200d\u2620\ufe0f",fitzpatrick_scale:!1,category:"flags"}});admin/assets/vendor/tinymce/js/tinymce/plugins/emoticons/js/emojiimages.js000064400001441000151213255210023110 0ustar00window.tinymce.Resource.add("tinymce.plugins.emoticons",{100:{keywords:["score","perfect","numbers","century","exam","quiz","test","pass","hundred"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💯" src="1f4af.png"/>',fitzpatrick_scale:false,category:"symbols"},1234:{keywords:["numbers","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔢" src="1f522.png"/>',fitzpatrick_scale:false,category:"symbols"},grinning:{keywords:["face","smile","happy","joy",":D","grin"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😀" src="1f600.png"/>',fitzpatrick_scale:false,category:"people"},grimacing:{keywords:["face","grimace","teeth"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😬" src="1f62c.png"/>',fitzpatrick_scale:false,category:"people"},grin:{keywords:["face","happy","smile","joy","kawaii"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😁" src="1f601.png"/>',fitzpatrick_scale:false,category:"people"},joy:{keywords:["face","cry","tears","weep","happy","happytears","haha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😂" src="1f602.png"/>',fitzpatrick_scale:false,category:"people"},rofl:{keywords:["face","rolling","floor","laughing","lol","haha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤣" src="1f923.png"/>',fitzpatrick_scale:false,category:"people"},partying:{keywords:["face","celebration","woohoo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥳" src="1f973.png"/>',fitzpatrick_scale:false,category:"people"},smiley:{keywords:["face","happy","joy","haha",":D",":)","smile","funny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😃" src="1f603.png"/>',fitzpatrick_scale:false,category:"people"},smile:{keywords:["face","happy","joy","funny","haha","laugh","like",":D",":)"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😄" src="1f604.png"/>',fitzpatrick_scale:false,category:"people"},sweat_smile:{keywords:["face","hot","happy","laugh","sweat","smile","relief"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😅" src="1f605.png"/>',fitzpatrick_scale:false,category:"people"},laughing:{keywords:["happy","joy","lol","satisfied","haha","face","glad","XD","laugh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😆" src="1f606.png"/>',fitzpatrick_scale:false,category:"people"},innocent:{keywords:["face","angel","heaven","halo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😇" src="1f607.png"/>',fitzpatrick_scale:false,category:"people"},wink:{keywords:["face","happy","mischievous","secret",";)","smile","eye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😉" src="1f609.png"/>',fitzpatrick_scale:false,category:"people"},blush:{keywords:["face","smile","happy","flushed","crush","embarrassed","shy","joy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😊" src="1f60a.png"/>',fitzpatrick_scale:false,category:"people"},slightly_smiling_face:{keywords:["face","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙂" src="1f642.png"/>',fitzpatrick_scale:false,category:"people"},upside_down_face:{keywords:["face","flipped","silly","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙃" src="1f643.png"/>',fitzpatrick_scale:false,category:"people"},relaxed:{keywords:["face","blush","massage","happiness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☺️" src="263a.png"/>',fitzpatrick_scale:false,category:"people"},yum:{keywords:["happy","joy","tongue","smile","face","silly","yummy","nom","delicious","savouring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😋" src="1f60b.png"/>',fitzpatrick_scale:false,category:"people"},relieved:{keywords:["face","relaxed","phew","massage","happiness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😌" src="1f60c.png"/>',fitzpatrick_scale:false,category:"people"},heart_eyes:{keywords:["face","love","like","affection","valentines","infatuation","crush","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😍" src="1f60d.png"/>',fitzpatrick_scale:false,category:"people"},smiling_face_with_three_hearts:{keywords:["face","love","like","affection","valentines","infatuation","crush","hearts","adore"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥰" src="1f970.png"/>',fitzpatrick_scale:false,category:"people"},kissing_heart:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😘" src="1f618.png"/>',fitzpatrick_scale:false,category:"people"},kissing:{keywords:["love","like","face","3","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😗" src="1f617.png"/>',fitzpatrick_scale:false,category:"people"},kissing_smiling_eyes:{keywords:["face","affection","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😙" src="1f619.png"/>',fitzpatrick_scale:false,category:"people"},kissing_closed_eyes:{keywords:["face","love","like","affection","valentines","infatuation","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😚" src="1f61a.png"/>',fitzpatrick_scale:false,category:"people"},stuck_out_tongue_winking_eye:{keywords:["face","prank","childish","playful","mischievous","smile","wink","tongue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😜" src="1f61c.png"/>',fitzpatrick_scale:false,category:"people"},zany:{keywords:["face","goofy","crazy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤪" src="1f92a.png"/>',fitzpatrick_scale:false,category:"people"},raised_eyebrow:{keywords:["face","distrust","scepticism","disapproval","disbelief","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤨" src="1f928.png"/>',fitzpatrick_scale:false,category:"people"},monocle:{keywords:["face","stuffy","wealthy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧐" src="1f9d0.png"/>',fitzpatrick_scale:false,category:"people"},stuck_out_tongue_closed_eyes:{keywords:["face","prank","playful","mischievous","smile","tongue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😝" src="1f61d.png"/>',fitzpatrick_scale:false,category:"people"},stuck_out_tongue:{keywords:["face","prank","childish","playful","mischievous","smile","tongue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😛" src="1f61b.png"/>',fitzpatrick_scale:false,category:"people"},money_mouth_face:{keywords:["face","rich","dollar","money"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤑" src="1f911.png"/>',fitzpatrick_scale:false,category:"people"},nerd_face:{keywords:["face","nerdy","geek","dork"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤓" src="1f913.png"/>',fitzpatrick_scale:false,category:"people"},sunglasses:{keywords:["face","cool","smile","summer","beach","sunglass"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😎" src="1f60e.png"/>',fitzpatrick_scale:false,category:"people"},star_struck:{keywords:["face","smile","starry","eyes","grinning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤩" src="1f929.png"/>',fitzpatrick_scale:false,category:"people"},clown_face:{keywords:["face"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤡" src="1f921.png"/>',fitzpatrick_scale:false,category:"people"},cowboy_hat_face:{keywords:["face","cowgirl","hat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤠" src="1f920.png"/>',fitzpatrick_scale:false,category:"people"},hugs:{keywords:["face","smile","hug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤗" src="1f917.png"/>',fitzpatrick_scale:false,category:"people"},smirk:{keywords:["face","smile","mean","prank","smug","sarcasm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😏" src="1f60f.png"/>',fitzpatrick_scale:false,category:"people"},no_mouth:{keywords:["face","hellokitty"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😶" src="1f636.png"/>',fitzpatrick_scale:false,category:"people"},neutral_face:{keywords:["indifference","meh",":|","neutral"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😐" src="1f610.png"/>',fitzpatrick_scale:false,category:"people"},expressionless:{keywords:["face","indifferent","-_-","meh","deadpan"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😑" src="1f611.png"/>',fitzpatrick_scale:false,category:"people"},unamused:{keywords:["indifference","bored","straight face","serious","sarcasm","unimpressed","skeptical","dubious","side_eye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😒" src="1f612.png"/>',fitzpatrick_scale:false,category:"people"},roll_eyes:{keywords:["face","eyeroll","frustrated"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙄" src="1f644.png"/>',fitzpatrick_scale:false,category:"people"},thinking:{keywords:["face","hmmm","think","consider"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤔" src="1f914.png"/>',fitzpatrick_scale:false,category:"people"},lying_face:{keywords:["face","lie","pinocchio"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤥" src="1f925.png"/>',fitzpatrick_scale:false,category:"people"},hand_over_mouth:{keywords:["face","whoops","shock","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤭" src="1f92d.png"/>',fitzpatrick_scale:false,category:"people"},shushing:{keywords:["face","quiet","shhh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤫" src="1f92b.png"/>',fitzpatrick_scale:false,category:"people"},symbols_over_mouth:{keywords:["face","swearing","cursing","cussing","profanity","expletive"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤬" src="1f92c.png"/>',fitzpatrick_scale:false,category:"people"},exploding_head:{keywords:["face","shocked","mind","blown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤯" src="1f92f.png"/>',fitzpatrick_scale:false,category:"people"},flushed:{keywords:["face","blush","shy","flattered"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😳" src="1f633.png"/>',fitzpatrick_scale:false,category:"people"},disappointed:{keywords:["face","sad","upset","depressed",":("],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😞" src="1f61e.png"/>',fitzpatrick_scale:false,category:"people"},worried:{keywords:["face","concern","nervous",":("],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😟" src="1f61f.png"/>',fitzpatrick_scale:false,category:"people"},angry:{keywords:["mad","face","annoyed","frustrated"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😠" src="1f620.png"/>',fitzpatrick_scale:false,category:"people"},rage:{keywords:["angry","mad","hate","despise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😡" src="1f621.png"/>',fitzpatrick_scale:false,category:"people"},pensive:{keywords:["face","sad","depressed","upset"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😔" src="1f614.png"/>',fitzpatrick_scale:false,category:"people"},confused:{keywords:["face","indifference","huh","weird","hmmm",":/"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😕" src="1f615.png"/>',fitzpatrick_scale:false,category:"people"},slightly_frowning_face:{keywords:["face","frowning","disappointed","sad","upset"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙁" src="1f641.png"/>',fitzpatrick_scale:false,category:"people"},frowning_face:{keywords:["face","sad","upset","frown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☹" src="2639.png"/>',fitzpatrick_scale:false,category:"people"},persevere:{keywords:["face","sick","no","upset","oops"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😣" src="1f623.png"/>',fitzpatrick_scale:false,category:"people"},confounded:{keywords:["face","confused","sick","unwell","oops",":S"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😖" src="1f616.png"/>',fitzpatrick_scale:false,category:"people"},tired_face:{keywords:["sick","whine","upset","frustrated"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😫" src="1f62b.png"/>',fitzpatrick_scale:false,category:"people"},weary:{keywords:["face","tired","sleepy","sad","frustrated","upset"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😩" src="1f629.png"/>',fitzpatrick_scale:false,category:"people"},pleading:{keywords:["face","begging","mercy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥺" src="1f97a.png"/>',fitzpatrick_scale:false,category:"people"},triumph:{keywords:["face","gas","phew","proud","pride"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😤" src="1f624.png"/>',fitzpatrick_scale:false,category:"people"},open_mouth:{keywords:["face","surprise","impressed","wow","whoa",":O"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😮" src="1f62e.png"/>',fitzpatrick_scale:false,category:"people"},scream:{keywords:["face","munch","scared","omg"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😱" src="1f631.png"/>',fitzpatrick_scale:false,category:"people"},fearful:{keywords:["face","scared","terrified","nervous","oops","huh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😨" src="1f628.png"/>',fitzpatrick_scale:false,category:"people"},cold_sweat:{keywords:["face","nervous","sweat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😰" src="1f630.png"/>',fitzpatrick_scale:false,category:"people"},hushed:{keywords:["face","woo","shh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😯" src="1f62f.png"/>',fitzpatrick_scale:false,category:"people"},frowning:{keywords:["face","aw","what"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😦" src="1f626.png"/>',fitzpatrick_scale:false,category:"people"},anguished:{keywords:["face","stunned","nervous"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😧" src="1f627.png"/>',fitzpatrick_scale:false,category:"people"},cry:{keywords:["face","tears","sad","depressed","upset",":'("],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😢" src="1f622.png"/>',fitzpatrick_scale:false,category:"people"},disappointed_relieved:{keywords:["face","phew","sweat","nervous"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😥" src="1f625.png"/>',fitzpatrick_scale:false,category:"people"},drooling_face:{keywords:["face"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤤" src="1f924.png"/>',fitzpatrick_scale:false,category:"people"},sleepy:{keywords:["face","tired","rest","nap"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😪" src="1f62a.png"/>',fitzpatrick_scale:false,category:"people"},sweat:{keywords:["face","hot","sad","tired","exercise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😓" src="1f613.png"/>',fitzpatrick_scale:false,category:"people"},hot:{keywords:["face","feverish","heat","red","sweating"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥵" src="1f975.png"/>',fitzpatrick_scale:false,category:"people"},cold:{keywords:["face","blue","freezing","frozen","frostbite","icicles"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥶" src="1f976.png"/>',fitzpatrick_scale:false,category:"people"},sob:{keywords:["face","cry","tears","sad","upset","depressed"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😭" src="1f62d.png"/>',fitzpatrick_scale:false,category:"people"},dizzy_face:{keywords:["spent","unconscious","xox","dizzy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😵" src="1f635.png"/>',fitzpatrick_scale:false,category:"people"},astonished:{keywords:["face","xox","surprised","poisoned"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😲" src="1f632.png"/>',fitzpatrick_scale:false,category:"people"},zipper_mouth_face:{keywords:["face","sealed","zipper","secret"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤐" src="1f910.png"/>',fitzpatrick_scale:false,category:"people"},nauseated_face:{keywords:["face","vomit","gross","green","sick","throw up","ill"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤢" src="1f922.png"/>',fitzpatrick_scale:false,category:"people"},sneezing_face:{keywords:["face","gesundheit","sneeze","sick","allergy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤧" src="1f927.png"/>',fitzpatrick_scale:false,category:"people"},vomiting:{keywords:["face","sick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤮" src="1f92e.png"/>',fitzpatrick_scale:false,category:"people"},mask:{keywords:["face","sick","ill","disease"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😷" src="1f637.png"/>',fitzpatrick_scale:false,category:"people"},face_with_thermometer:{keywords:["sick","temperature","thermometer","cold","fever"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤒" src="1f912.png"/>',fitzpatrick_scale:false,category:"people"},face_with_head_bandage:{keywords:["injured","clumsy","bandage","hurt"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤕" src="1f915.png"/>',fitzpatrick_scale:false,category:"people"},woozy:{keywords:["face","dizzy","intoxicated","tipsy","wavy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥴" src="1f974.png"/>',fitzpatrick_scale:false,category:"people"},sleeping:{keywords:["face","tired","sleepy","night","zzz"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😴" src="1f634.png"/>',fitzpatrick_scale:false,category:"people"},zzz:{keywords:["sleepy","tired","dream"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💤" src="1f4a4.png"/>',fitzpatrick_scale:false,category:"people"},poop:{keywords:["hankey","shitface","fail","turd","shit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💩" src="1f4a9.png"/>',fitzpatrick_scale:false,category:"people"},smiling_imp:{keywords:["devil","horns"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😈" src="1f608.png"/>',fitzpatrick_scale:false,category:"people"},imp:{keywords:["devil","angry","horns"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👿" src="1f47f.png"/>',fitzpatrick_scale:false,category:"people"},japanese_ogre:{keywords:["monster","red","mask","halloween","scary","creepy","devil","demon","japanese","ogre"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👹" src="1f479.png"/>',fitzpatrick_scale:false,category:"people"},japanese_goblin:{keywords:["red","evil","mask","monster","scary","creepy","japanese","goblin"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👺" src="1f47a.png"/>',fitzpatrick_scale:false,category:"people"},skull:{keywords:["dead","skeleton","creepy","death"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💀" src="1f480.png"/>',fitzpatrick_scale:false,category:"people"},ghost:{keywords:["halloween","spooky","scary"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👻" src="1f47b.png"/>',fitzpatrick_scale:false,category:"people"},alien:{keywords:["UFO","paul","weird","outer_space"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👽" src="1f47d.png"/>',fitzpatrick_scale:false,category:"people"},robot:{keywords:["computer","machine","bot"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤖" src="1f916.png"/>',fitzpatrick_scale:false,category:"people"},smiley_cat:{keywords:["animal","cats","happy","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😺" src="1f63a.png"/>',fitzpatrick_scale:false,category:"people"},smile_cat:{keywords:["animal","cats","smile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😸" src="1f638.png"/>',fitzpatrick_scale:false,category:"people"},joy_cat:{keywords:["animal","cats","haha","happy","tears"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😹" src="1f639.png"/>',fitzpatrick_scale:false,category:"people"},heart_eyes_cat:{keywords:["animal","love","like","affection","cats","valentines","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😻" src="1f63b.png"/>',fitzpatrick_scale:false,category:"people"},smirk_cat:{keywords:["animal","cats","smirk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😼" src="1f63c.png"/>',fitzpatrick_scale:false,category:"people"},kissing_cat:{keywords:["animal","cats","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😽" src="1f63d.png"/>',fitzpatrick_scale:false,category:"people"},scream_cat:{keywords:["animal","cats","munch","scared","scream"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙀" src="1f640.png"/>',fitzpatrick_scale:false,category:"people"},crying_cat_face:{keywords:["animal","tears","weep","sad","cats","upset","cry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😿" src="1f63f.png"/>',fitzpatrick_scale:false,category:"people"},pouting_cat:{keywords:["animal","cats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="😾" src="1f63e.png"/>',fitzpatrick_scale:false,category:"people"},palms_up:{keywords:["hands","gesture","cupped","prayer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤲" src="1f932.png"/>',fitzpatrick_scale:true,category:"people"},raised_hands:{keywords:["gesture","hooray","yea","celebration","hands"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙌" src="1f64c.png"/>',fitzpatrick_scale:true,category:"people"},clap:{keywords:["hands","praise","applause","congrats","yay"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👏" src="1f44f.png"/>',fitzpatrick_scale:true,category:"people"},wave:{keywords:["hands","gesture","goodbye","solong","farewell","hello","hi","palm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👋" src="1f44b.png"/>',fitzpatrick_scale:true,category:"people"},call_me_hand:{keywords:["hands","gesture"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤙" src="1f919.png"/>',fitzpatrick_scale:true,category:"people"},"+1":{keywords:["thumbsup","yes","awesome","good","agree","accept","cool","hand","like"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👍" src="1f44d.png"/>',fitzpatrick_scale:true,category:"people"},"-1":{keywords:["thumbsdown","no","dislike","hand"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👎" src="1f44e.png"/>',fitzpatrick_scale:true,category:"people"},facepunch:{keywords:["angry","violence","fist","hit","attack","hand"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👊" src="1f44a.png"/>',fitzpatrick_scale:true,category:"people"},fist:{keywords:["fingers","hand","grasp"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✊" src="270a.png"/>',fitzpatrick_scale:true,category:"people"},fist_left:{keywords:["hand","fistbump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤛" src="1f91b.png"/>',fitzpatrick_scale:true,category:"people"},fist_right:{keywords:["hand","fistbump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤜" src="1f91c.png"/>',fitzpatrick_scale:true,category:"people"},v:{keywords:["fingers","ohyeah","hand","peace","victory","two"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✌" src="270c.png"/>',fitzpatrick_scale:true,category:"people"},ok_hand:{keywords:["fingers","limbs","perfect","ok","okay"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👌" src="1f44c.png"/>',fitzpatrick_scale:true,category:"people"},raised_hand:{keywords:["fingers","stop","highfive","palm","ban"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✋" src="270b.png"/>',fitzpatrick_scale:true,category:"people"},raised_back_of_hand:{keywords:["fingers","raised","backhand"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤚" src="1f91a.png"/>',fitzpatrick_scale:true,category:"people"},open_hands:{keywords:["fingers","butterfly","hands","open"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👐" src="1f450.png"/>',fitzpatrick_scale:true,category:"people"},muscle:{keywords:["arm","flex","hand","summer","strong","biceps"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💪" src="1f4aa.png"/>',fitzpatrick_scale:true,category:"people"},pray:{keywords:["please","hope","wish","namaste","highfive"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙏" src="1f64f.png"/>',fitzpatrick_scale:true,category:"people"},foot:{keywords:["kick","stomp"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦶" src="1f9b6.png"/>',fitzpatrick_scale:true,category:"people"},leg:{keywords:["kick","limb"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦵" src="1f9b5.png"/>',fitzpatrick_scale:true,category:"people"},handshake:{keywords:["agreement","shake"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤝" src="1f91d.png"/>',fitzpatrick_scale:false,category:"people"},point_up:{keywords:["hand","fingers","direction","up"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☝" src="261d.png"/>',fitzpatrick_scale:true,category:"people"},point_up_2:{keywords:["fingers","hand","direction","up"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👆" src="1f446.png"/>',fitzpatrick_scale:true,category:"people"},point_down:{keywords:["fingers","hand","direction","down"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👇" src="1f447.png"/>',fitzpatrick_scale:true,category:"people"},point_left:{keywords:["direction","fingers","hand","left"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👈" src="1f448.png"/>',fitzpatrick_scale:true,category:"people"},point_right:{keywords:["fingers","hand","direction","right"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👉" src="1f449.png"/>',fitzpatrick_scale:true,category:"people"},fu:{keywords:["hand","fingers","rude","middle","flipping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖕" src="1f595.png"/>',fitzpatrick_scale:true,category:"people"},raised_hand_with_fingers_splayed:{keywords:["hand","fingers","palm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖐" src="1f590.png"/>',fitzpatrick_scale:true,category:"people"},love_you:{keywords:["hand","fingers","gesture"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤟" src="1f91f.png"/>',fitzpatrick_scale:true,category:"people"},metal:{keywords:["hand","fingers","evil_eye","sign_of_horns","rock_on"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤘" src="1f918.png"/>',fitzpatrick_scale:true,category:"people"},crossed_fingers:{keywords:["good","lucky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤞" src="1f91e.png"/>',fitzpatrick_scale:true,category:"people"},vulcan_salute:{keywords:["hand","fingers","spock","star trek"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖖" src="1f596.png"/>',fitzpatrick_scale:true,category:"people"},writing_hand:{keywords:["lower_left_ballpoint_pen","stationery","write","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✍" src="270d.png"/>',fitzpatrick_scale:true,category:"people"},selfie:{keywords:["camera","phone"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤳" src="1f933.png"/>',fitzpatrick_scale:true,category:"people"},nail_care:{keywords:["beauty","manicure","finger","fashion","nail"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💅" src="1f485.png"/>',fitzpatrick_scale:true,category:"people"},lips:{keywords:["mouth","kiss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👄" src="1f444.png"/>',fitzpatrick_scale:false,category:"people"},tooth:{keywords:["teeth","dentist"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦷" src="1f9b7.png"/>',fitzpatrick_scale:false,category:"people"},tongue:{keywords:["mouth","playful"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👅" src="1f445.png"/>',fitzpatrick_scale:false,category:"people"},ear:{keywords:["face","hear","sound","listen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👂" src="1f442.png"/>',fitzpatrick_scale:true,category:"people"},nose:{keywords:["smell","sniff"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👃" src="1f443.png"/>',fitzpatrick_scale:true,category:"people"},eye:{keywords:["face","look","see","watch","stare"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👁" src="1f441.png"/>',fitzpatrick_scale:false,category:"people"},eyes:{keywords:["look","watch","stalk","peek","see"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👀" src="1f440.png"/>',fitzpatrick_scale:false,category:"people"},brain:{keywords:["smart","intelligent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧠" src="1f9e0.png"/>',fitzpatrick_scale:false,category:"people"},bust_in_silhouette:{keywords:["user","person","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👤" src="1f464.png"/>',fitzpatrick_scale:false,category:"people"},busts_in_silhouette:{keywords:["user","person","human","group","team"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👥" src="1f465.png"/>',fitzpatrick_scale:false,category:"people"},speaking_head:{keywords:["user","person","human","sing","say","talk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗣" src="1f5e3.png"/>',fitzpatrick_scale:false,category:"people"},baby:{keywords:["child","boy","girl","toddler"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👶" src="1f476.png"/>',fitzpatrick_scale:true,category:"people"},child:{keywords:["gender-neutral","young"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧒" src="1f9d2.png"/>',fitzpatrick_scale:true,category:"people"},boy:{keywords:["man","male","guy","teenager"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👦" src="1f466.png"/>',fitzpatrick_scale:true,category:"people"},girl:{keywords:["female","woman","teenager"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👧" src="1f467.png"/>',fitzpatrick_scale:true,category:"people"},adult:{keywords:["gender-neutral","person"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧑" src="1f9d1.png"/>',fitzpatrick_scale:true,category:"people"},man:{keywords:["mustache","father","dad","guy","classy","sir","moustache"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨" src="1f468.png"/>',fitzpatrick_scale:true,category:"people"},woman:{keywords:["female","girls","lady"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩" src="1f469.png"/>',fitzpatrick_scale:true,category:"people"},blonde_woman:{keywords:["woman","female","girl","blonde","person"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👱‍♀️" src="1f471-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},blonde_man:{keywords:["man","male","boy","blonde","guy","person"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👱" src="1f471.png"/>',fitzpatrick_scale:true,category:"people"},bearded_person:{keywords:["person","bewhiskered"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧔" src="1f9d4.png"/>',fitzpatrick_scale:true,category:"people"},older_adult:{keywords:["human","elder","senior","gender-neutral"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧓" src="1f9d3.png"/>',fitzpatrick_scale:true,category:"people"},older_man:{keywords:["human","male","men","old","elder","senior"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👴" src="1f474.png"/>',fitzpatrick_scale:true,category:"people"},older_woman:{keywords:["human","female","women","lady","old","elder","senior"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👵" src="1f475.png"/>',fitzpatrick_scale:true,category:"people"},man_with_gua_pi_mao:{keywords:["male","boy","chinese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👲" src="1f472.png"/>',fitzpatrick_scale:true,category:"people"},woman_with_headscarf:{keywords:["female","hijab","mantilla","tichel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧕" src="1f9d5.png"/>',fitzpatrick_scale:true,category:"people"},woman_with_turban:{keywords:["female","indian","hinduism","arabs","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👳‍♀️" src="1f473-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_with_turban:{keywords:["male","indian","hinduism","arabs"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👳" src="1f473.png"/>',fitzpatrick_scale:true,category:"people"},policewoman:{keywords:["woman","police","law","legal","enforcement","arrest","911","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👮‍♀️" src="1f46e-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},policeman:{keywords:["man","police","law","legal","enforcement","arrest","911"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👮" src="1f46e.png"/>',fitzpatrick_scale:true,category:"people"},construction_worker_woman:{keywords:["female","human","wip","build","construction","worker","labor","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👷‍♀️" src="1f477-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},construction_worker_man:{keywords:["male","human","wip","guy","build","construction","worker","labor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👷" src="1f477.png"/>',fitzpatrick_scale:true,category:"people"},guardswoman:{keywords:["uk","gb","british","female","royal","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💂‍♀️" src="1f482-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},guardsman:{keywords:["uk","gb","british","male","guy","royal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💂" src="1f482.png"/>',fitzpatrick_scale:true,category:"people"},female_detective:{keywords:["human","spy","detective","female","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕵️‍♀️" src="1f575-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},male_detective:{keywords:["human","spy","detective"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕵" src="1f575.png"/>',fitzpatrick_scale:true,category:"people"},woman_health_worker:{keywords:["doctor","nurse","therapist","healthcare","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍⚕️" src="1f469-200d-2695-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_health_worker:{keywords:["doctor","nurse","therapist","healthcare","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍⚕️" src="1f468-200d-2695-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_farmer:{keywords:["rancher","gardener","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🌾" src="1f469-200d-1f33e.png"/>',fitzpatrick_scale:true,category:"people"},man_farmer:{keywords:["rancher","gardener","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🌾" src="1f468-200d-1f33e.png"/>',fitzpatrick_scale:true,category:"people"},woman_cook:{keywords:["chef","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🍳" src="1f469-200d-1f373.png"/>',fitzpatrick_scale:true,category:"people"},man_cook:{keywords:["chef","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🍳" src="1f468-200d-1f373.png"/>',fitzpatrick_scale:true,category:"people"},woman_student:{keywords:["graduate","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🎓" src="1f469-200d-1f393.png"/>',fitzpatrick_scale:true,category:"people"},man_student:{keywords:["graduate","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🎓" src="1f468-200d-1f393.png"/>',fitzpatrick_scale:true,category:"people"},woman_singer:{keywords:["rockstar","entertainer","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🎤" src="1f469-200d-1f3a4.png"/>',fitzpatrick_scale:true,category:"people"},man_singer:{keywords:["rockstar","entertainer","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🎤" src="1f468-200d-1f3a4.png"/>',fitzpatrick_scale:true,category:"people"},woman_teacher:{keywords:["instructor","professor","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🏫" src="1f469-200d-1f3eb.png"/>',fitzpatrick_scale:true,category:"people"},man_teacher:{keywords:["instructor","professor","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🏫" src="1f468-200d-1f3eb.png"/>',fitzpatrick_scale:true,category:"people"},woman_factory_worker:{keywords:["assembly","industrial","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🏭" src="1f469-200d-1f3ed.png"/>',fitzpatrick_scale:true,category:"people"},man_factory_worker:{keywords:["assembly","industrial","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🏭" src="1f468-200d-1f3ed.png"/>',fitzpatrick_scale:true,category:"people"},woman_technologist:{keywords:["coder","developer","engineer","programmer","software","woman","human","laptop","computer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍💻" src="1f469-200d-1f4bb.png"/>',fitzpatrick_scale:true,category:"people"},man_technologist:{keywords:["coder","developer","engineer","programmer","software","man","human","laptop","computer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍💻" src="1f468-200d-1f4bb.png"/>',fitzpatrick_scale:true,category:"people"},woman_office_worker:{keywords:["business","manager","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍💼" src="1f469-200d-1f4bc.png"/>',fitzpatrick_scale:true,category:"people"},man_office_worker:{keywords:["business","manager","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍💼" src="1f468-200d-1f4bc.png"/>',fitzpatrick_scale:true,category:"people"},woman_mechanic:{keywords:["plumber","woman","human","wrench"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🔧" src="1f469-200d-1f527.png"/>',fitzpatrick_scale:true,category:"people"},man_mechanic:{keywords:["plumber","man","human","wrench"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🔧" src="1f468-200d-1f527.png"/>',fitzpatrick_scale:true,category:"people"},woman_scientist:{keywords:["biologist","chemist","engineer","physicist","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🔬" src="1f469-200d-1f52c.png"/>',fitzpatrick_scale:true,category:"people"},man_scientist:{keywords:["biologist","chemist","engineer","physicist","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🔬" src="1f468-200d-1f52c.png"/>',fitzpatrick_scale:true,category:"people"},woman_artist:{keywords:["painter","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🎨" src="1f469-200d-1f3a8.png"/>',fitzpatrick_scale:true,category:"people"},man_artist:{keywords:["painter","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🎨" src="1f468-200d-1f3a8.png"/>',fitzpatrick_scale:true,category:"people"},woman_firefighter:{keywords:["fireman","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🚒" src="1f469-200d-1f692.png"/>',fitzpatrick_scale:true,category:"people"},man_firefighter:{keywords:["fireman","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🚒" src="1f468-200d-1f692.png"/>',fitzpatrick_scale:true,category:"people"},woman_pilot:{keywords:["aviator","plane","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍✈️" src="1f469-200d-2708-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_pilot:{keywords:["aviator","plane","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍✈️" src="1f468-200d-2708-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_astronaut:{keywords:["space","rocket","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍🚀" src="1f469-200d-1f680.png"/>',fitzpatrick_scale:true,category:"people"},man_astronaut:{keywords:["space","rocket","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍🚀" src="1f468-200d-1f680.png"/>',fitzpatrick_scale:true,category:"people"},woman_judge:{keywords:["justice","court","woman","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍⚖️" src="1f469-200d-2696-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_judge:{keywords:["justice","court","man","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍⚖️" src="1f468-200d-2696-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_superhero:{keywords:["woman","female","good","heroine","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦸‍♀️" src="1f9b8-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_superhero:{keywords:["man","male","good","hero","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦸‍♂️" src="1f9b8-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_supervillain:{keywords:["woman","female","evil","bad","criminal","heroine","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦹‍♀️" src="1f9b9-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_supervillain:{keywords:["man","male","evil","bad","criminal","hero","superpowers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦹‍♂️" src="1f9b9-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},mrs_claus:{keywords:["woman","female","xmas","mother christmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤶" src="1f936.png"/>',fitzpatrick_scale:true,category:"people"},santa:{keywords:["festival","man","male","xmas","father christmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎅" src="1f385.png"/>',fitzpatrick_scale:true,category:"people"},sorceress:{keywords:["woman","female","mage","witch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧙‍♀️" src="1f9d9-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},wizard:{keywords:["man","male","mage","sorcerer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧙‍♂️" src="1f9d9-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_elf:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧝‍♀️" src="1f9dd-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_elf:{keywords:["man","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧝‍♂️" src="1f9dd-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_vampire:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧛‍♀️" src="1f9db-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_vampire:{keywords:["man","male","dracula"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧛‍♂️" src="1f9db-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_zombie:{keywords:["woman","female","undead","walking dead"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧟‍♀️" src="1f9df-200d-2640-fe0f.png"/>',fitzpatrick_scale:false,category:"people"},man_zombie:{keywords:["man","male","dracula","undead","walking dead"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧟‍♂️" src="1f9df-200d-2642-fe0f.png"/>',fitzpatrick_scale:false,category:"people"},woman_genie:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧞‍♀️" src="1f9de-200d-2640-fe0f.png"/>',fitzpatrick_scale:false,category:"people"},man_genie:{keywords:["man","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧞‍♂️" src="1f9de-200d-2642-fe0f.png"/>',fitzpatrick_scale:false,category:"people"},mermaid:{keywords:["woman","female","merwoman","ariel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧜‍♀️" src="1f9dc-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},merman:{keywords:["man","male","triton"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧜‍♂️" src="1f9dc-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_fairy:{keywords:["woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧚‍♀️" src="1f9da-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_fairy:{keywords:["man","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧚‍♂️" src="1f9da-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},angel:{keywords:["heaven","wings","halo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👼" src="1f47c.png"/>',fitzpatrick_scale:true,category:"people"},pregnant_woman:{keywords:["baby"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤰" src="1f930.png"/>',fitzpatrick_scale:true,category:"people"},breastfeeding:{keywords:["nursing","baby"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤱" src="1f931.png"/>',fitzpatrick_scale:true,category:"people"},princess:{keywords:["girl","woman","female","blond","crown","royal","queen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👸" src="1f478.png"/>',fitzpatrick_scale:true,category:"people"},prince:{keywords:["boy","man","male","crown","royal","king"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤴" src="1f934.png"/>',fitzpatrick_scale:true,category:"people"},bride_with_veil:{keywords:["couple","marriage","wedding","woman","bride"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👰" src="1f470.png"/>',fitzpatrick_scale:true,category:"people"},man_in_tuxedo:{keywords:["couple","marriage","wedding","groom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤵" src="1f935.png"/>',fitzpatrick_scale:true,category:"people"},running_woman:{keywords:["woman","walking","exercise","race","running","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏃‍♀️" src="1f3c3-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},running_man:{keywords:["man","walking","exercise","race","running"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏃" src="1f3c3.png"/>',fitzpatrick_scale:true,category:"people"},walking_woman:{keywords:["human","feet","steps","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚶‍♀️" src="1f6b6-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},walking_man:{keywords:["human","feet","steps"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚶" src="1f6b6.png"/>',fitzpatrick_scale:true,category:"people"},dancer:{keywords:["female","girl","woman","fun"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💃" src="1f483.png"/>',fitzpatrick_scale:true,category:"people"},man_dancing:{keywords:["male","boy","fun","dancer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕺" src="1f57a.png"/>',fitzpatrick_scale:true,category:"people"},dancing_women:{keywords:["female","bunny","women","girls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👯" src="1f46f.png"/>',fitzpatrick_scale:false,category:"people"},dancing_men:{keywords:["male","bunny","men","boys"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👯‍♂️" src="1f46f-200d-2642-fe0f.png"/>',fitzpatrick_scale:false,category:"people"},couple:{keywords:["pair","people","human","love","date","dating","like","affection","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👫" src="1f46b.png"/>',fitzpatrick_scale:false,category:"people"},two_men_holding_hands:{keywords:["pair","couple","love","like","bromance","friendship","people","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👬" src="1f46c.png"/>',fitzpatrick_scale:false,category:"people"},two_women_holding_hands:{keywords:["pair","friendship","couple","love","like","female","people","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👭" src="1f46d.png"/>',fitzpatrick_scale:false,category:"people"},bowing_woman:{keywords:["woman","female","girl"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙇‍♀️" src="1f647-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},bowing_man:{keywords:["man","male","boy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙇" src="1f647.png"/>',fitzpatrick_scale:true,category:"people"},man_facepalming:{keywords:["man","male","boy","disbelief"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤦‍♂️" src="1f926-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_facepalming:{keywords:["woman","female","girl","disbelief"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤦‍♀️" src="1f926-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_shrugging:{keywords:["woman","female","girl","confused","indifferent","doubt"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤷" src="1f937.png"/>',fitzpatrick_scale:true,category:"people"},man_shrugging:{keywords:["man","male","boy","confused","indifferent","doubt"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤷‍♂️" src="1f937-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},tipping_hand_woman:{keywords:["female","girl","woman","human","information"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💁" src="1f481.png"/>',fitzpatrick_scale:true,category:"people"},tipping_hand_man:{keywords:["male","boy","man","human","information"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💁‍♂️" src="1f481-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},no_good_woman:{keywords:["female","girl","woman","nope"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙅" src="1f645.png"/>',fitzpatrick_scale:true,category:"people"},no_good_man:{keywords:["male","boy","man","nope"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙅‍♂️" src="1f645-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},ok_woman:{keywords:["women","girl","female","pink","human","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙆" src="1f646.png"/>',fitzpatrick_scale:true,category:"people"},ok_man:{keywords:["men","boy","male","blue","human","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙆‍♂️" src="1f646-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},raising_hand_woman:{keywords:["female","girl","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙋" src="1f64b.png"/>',fitzpatrick_scale:true,category:"people"},raising_hand_man:{keywords:["male","boy","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙋‍♂️" src="1f64b-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},pouting_woman:{keywords:["female","girl","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙎" src="1f64e.png"/>',fitzpatrick_scale:true,category:"people"},pouting_man:{keywords:["male","boy","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙎‍♂️" src="1f64e-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},frowning_woman:{keywords:["female","girl","woman","sad","depressed","discouraged","unhappy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙍" src="1f64d.png"/>',fitzpatrick_scale:true,category:"people"},frowning_man:{keywords:["male","boy","man","sad","depressed","discouraged","unhappy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙍‍♂️" src="1f64d-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},haircut_woman:{keywords:["female","girl","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💇" src="1f487.png"/>',fitzpatrick_scale:true,category:"people"},haircut_man:{keywords:["male","boy","man"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💇‍♂️" src="1f487-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},massage_woman:{keywords:["female","girl","woman","head"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💆" src="1f486.png"/>',fitzpatrick_scale:true,category:"people"},massage_man:{keywords:["male","boy","man","head"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💆‍♂️" src="1f486-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},woman_in_steamy_room:{keywords:["female","woman","spa","steamroom","sauna"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧖‍♀️" src="1f9d6-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},man_in_steamy_room:{keywords:["male","man","spa","steamroom","sauna"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧖‍♂️" src="1f9d6-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"people"},couple_with_heart_woman_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💑" src="1f491.png"/>',fitzpatrick_scale:false,category:"people"},couple_with_heart_woman_woman:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍❤️‍👩" src="1f469-200d-2764-fe0f-200d-1f469.png"/>',fitzpatrick_scale:false,category:"people"},couple_with_heart_man_man:{keywords:["pair","love","like","affection","human","dating","valentines","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍❤️‍👨" src="1f468-200d-2764-fe0f-200d-1f468.png"/>',fitzpatrick_scale:false,category:"people"},couplekiss_man_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💏" src="1f48f.png"/>',fitzpatrick_scale:false,category:"people"},couplekiss_woman_woman:{keywords:["pair","valentines","love","like","dating","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍❤️‍💋‍👩" src="1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png"/>',fitzpatrick_scale:false,category:"people"},couplekiss_man_man:{keywords:["pair","valentines","love","like","dating","marriage"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍❤️‍💋‍👨" src="1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png"/>',fitzpatrick_scale:false,category:"people"},family_man_woman_boy:{keywords:["home","parents","child","mom","dad","father","mother","people","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👪" src="1f46a.png"/>',fitzpatrick_scale:false,category:"people"},family_man_woman_girl:{keywords:["home","parents","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👩‍👧" src="1f468-200d-1f469-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_man_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👩‍👧‍👦" src="1f468-200d-1f469-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👩‍👦‍👦" src="1f468-200d-1f469-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👩‍👧‍👧" src="1f468-200d-1f469-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_woman_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👩‍👦" src="1f469-200d-1f469-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_woman_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👩‍👧" src="1f469-200d-1f469-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_woman_girl_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👩‍👧‍👦" src="1f469-200d-1f469-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_woman_boy_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👩‍👦‍👦" src="1f469-200d-1f469-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_woman_girl_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👩‍👧‍👧" src="1f469-200d-1f469-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_man_man_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👨‍👦" src="1f468-200d-1f468-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_man_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👨‍👧" src="1f468-200d-1f468-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_man_man_girl_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👨‍👧‍👦" src="1f468-200d-1f468-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_man_boy_boy:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👨‍👦‍👦" src="1f468-200d-1f468-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_man_girl_girl:{keywords:["home","parents","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👨‍👧‍👧" src="1f468-200d-1f468-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_boy:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👦" src="1f469-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_girl:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👧" src="1f469-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_girl_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👧‍👦" src="1f469-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_boy_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👦‍👦" src="1f469-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_woman_girl_girl:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👩‍👧‍👧" src="1f469-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_man_boy:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👦" src="1f468-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_girl:{keywords:["home","parent","people","human","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👧" src="1f468-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},family_man_girl_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👧‍👦" src="1f468-200d-1f467-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_boy_boy:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👦‍👦" src="1f468-200d-1f466-200d-1f466.png"/>',fitzpatrick_scale:false,category:"people"},family_man_girl_girl:{keywords:["home","parent","people","human","children"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👨‍👧‍👧" src="1f468-200d-1f467-200d-1f467.png"/>',fitzpatrick_scale:false,category:"people"},yarn:{keywords:["ball","crochet","knit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧶" src="1f9f6.png"/>',fitzpatrick_scale:false,category:"people"},thread:{keywords:["needle","sewing","spool","string"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧵" src="1f9f5.png"/>',fitzpatrick_scale:false,category:"people"},coat:{keywords:["jacket"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧥" src="1f9e5.png"/>',fitzpatrick_scale:false,category:"people"},labcoat:{keywords:["doctor","experiment","scientist","chemist"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥼" src="1f97c.png"/>',fitzpatrick_scale:false,category:"people"},womans_clothes:{keywords:["fashion","shopping_bags","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👚" src="1f45a.png"/>',fitzpatrick_scale:false,category:"people"},tshirt:{keywords:["fashion","cloth","casual","shirt","tee"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👕" src="1f455.png"/>',fitzpatrick_scale:false,category:"people"},jeans:{keywords:["fashion","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👖" src="1f456.png"/>',fitzpatrick_scale:false,category:"people"},necktie:{keywords:["shirt","suitup","formal","fashion","cloth","business"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👔" src="1f454.png"/>',fitzpatrick_scale:false,category:"people"},dress:{keywords:["clothes","fashion","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👗" src="1f457.png"/>',fitzpatrick_scale:false,category:"people"},bikini:{keywords:["swimming","female","woman","girl","fashion","beach","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👙" src="1f459.png"/>',fitzpatrick_scale:false,category:"people"},kimono:{keywords:["dress","fashion","women","female","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👘" src="1f458.png"/>',fitzpatrick_scale:false,category:"people"},lipstick:{keywords:["female","girl","fashion","woman"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💄" src="1f484.png"/>',fitzpatrick_scale:false,category:"people"},kiss:{keywords:["face","lips","love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💋" src="1f48b.png"/>',fitzpatrick_scale:false,category:"people"},footprints:{keywords:["feet","tracking","walking","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👣" src="1f463.png"/>',fitzpatrick_scale:false,category:"people"},flat_shoe:{keywords:["ballet","slip-on","slipper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥿" src="1f97f.png"/>',fitzpatrick_scale:false,category:"people"},high_heel:{keywords:["fashion","shoes","female","pumps","stiletto"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👠" src="1f460.png"/>',fitzpatrick_scale:false,category:"people"},sandal:{keywords:["shoes","fashion","flip flops"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👡" src="1f461.png"/>',fitzpatrick_scale:false,category:"people"},boot:{keywords:["shoes","fashion"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👢" src="1f462.png"/>',fitzpatrick_scale:false,category:"people"},mans_shoe:{keywords:["fashion","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👞" src="1f45e.png"/>',fitzpatrick_scale:false,category:"people"},athletic_shoe:{keywords:["shoes","sports","sneakers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👟" src="1f45f.png"/>',fitzpatrick_scale:false,category:"people"},hiking_boot:{keywords:["backpacking","camping","hiking"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥾" src="1f97e.png"/>',fitzpatrick_scale:false,category:"people"},socks:{keywords:["stockings","clothes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧦" src="1f9e6.png"/>',fitzpatrick_scale:false,category:"people"},gloves:{keywords:["hands","winter","clothes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧤" src="1f9e4.png"/>',fitzpatrick_scale:false,category:"people"},scarf:{keywords:["neck","winter","clothes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧣" src="1f9e3.png"/>',fitzpatrick_scale:false,category:"people"},womans_hat:{keywords:["fashion","accessories","female","lady","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👒" src="1f452.png"/>',fitzpatrick_scale:false,category:"people"},tophat:{keywords:["magic","gentleman","classy","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎩" src="1f3a9.png"/>',fitzpatrick_scale:false,category:"people"},billed_hat:{keywords:["cap","baseball"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧢" src="1f9e2.png"/>',fitzpatrick_scale:false,category:"people"},rescue_worker_helmet:{keywords:["construction","build"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛑" src="26d1.png"/>',fitzpatrick_scale:false,category:"people"},mortar_board:{keywords:["school","college","degree","university","graduation","cap","hat","legal","learn","education"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎓" src="1f393.png"/>',fitzpatrick_scale:false,category:"people"},crown:{keywords:["king","kod","leader","royalty","lord"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👑" src="1f451.png"/>',fitzpatrick_scale:false,category:"people"},school_satchel:{keywords:["student","education","bag","backpack"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎒" src="1f392.png"/>',fitzpatrick_scale:false,category:"people"},luggage:{keywords:["packing","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧳" src="1f9f3.png"/>',fitzpatrick_scale:false,category:"people"},pouch:{keywords:["bag","accessories","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👝" src="1f45d.png"/>',fitzpatrick_scale:false,category:"people"},purse:{keywords:["fashion","accessories","money","sales","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👛" src="1f45b.png"/>',fitzpatrick_scale:false,category:"people"},handbag:{keywords:["fashion","accessory","accessories","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👜" src="1f45c.png"/>',fitzpatrick_scale:false,category:"people"},briefcase:{keywords:["business","documents","work","law","legal","job","career"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💼" src="1f4bc.png"/>',fitzpatrick_scale:false,category:"people"},eyeglasses:{keywords:["fashion","accessories","eyesight","nerdy","dork","geek"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👓" src="1f453.png"/>',fitzpatrick_scale:false,category:"people"},dark_sunglasses:{keywords:["face","cool","accessories"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕶" src="1f576.png"/>',fitzpatrick_scale:false,category:"people"},goggles:{keywords:["eyes","protection","safety"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥽" src="1f97d.png"/>',fitzpatrick_scale:false,category:"people"},ring:{keywords:["wedding","propose","marriage","valentines","diamond","fashion","jewelry","gem","engagement"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💍" src="1f48d.png"/>',fitzpatrick_scale:false,category:"people"},closed_umbrella:{keywords:["weather","rain","drizzle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌂" src="1f302.png"/>',fitzpatrick_scale:false,category:"people"},dog:{keywords:["animal","friend","nature","woof","puppy","pet","faithful"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐶" src="1f436.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cat:{keywords:["animal","meow","nature","pet","kitten"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐱" src="1f431.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},mouse:{keywords:["animal","nature","cheese_wedge","rodent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐭" src="1f42d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},hamster:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐹" src="1f439.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},rabbit:{keywords:["animal","nature","pet","spring","magic","bunny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐰" src="1f430.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},fox_face:{keywords:["animal","nature","face"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦊" src="1f98a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},bear:{keywords:["animal","nature","wild"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐻" src="1f43b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},panda_face:{keywords:["animal","nature","panda"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐼" src="1f43c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},koala:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐨" src="1f428.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},tiger:{keywords:["animal","cat","danger","wild","nature","roar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐯" src="1f42f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},lion:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦁" src="1f981.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cow:{keywords:["beef","ox","animal","nature","moo","milk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐮" src="1f42e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},pig:{keywords:["animal","oink","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐷" src="1f437.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},pig_nose:{keywords:["animal","oink"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐽" src="1f43d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},frog:{keywords:["animal","nature","croak","toad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐸" src="1f438.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},squid:{keywords:["animal","nature","ocean","sea"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦑" src="1f991.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},octopus:{keywords:["animal","creature","ocean","sea","nature","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐙" src="1f419.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},shrimp:{keywords:["animal","ocean","nature","seafood"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦐" src="1f990.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},monkey_face:{keywords:["animal","nature","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐵" src="1f435.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},gorilla:{keywords:["animal","nature","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦍" src="1f98d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},see_no_evil:{keywords:["monkey","animal","nature","haha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙈" src="1f648.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},hear_no_evil:{keywords:["animal","monkey","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙉" src="1f649.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},speak_no_evil:{keywords:["monkey","animal","nature","omg"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🙊" src="1f64a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},monkey:{keywords:["animal","nature","banana","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐒" src="1f412.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},chicken:{keywords:["animal","cluck","nature","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐔" src="1f414.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},penguin:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐧" src="1f427.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},bird:{keywords:["animal","nature","fly","tweet","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐦" src="1f426.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},baby_chick:{keywords:["animal","chicken","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐤" src="1f424.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},hatching_chick:{keywords:["animal","chicken","egg","born","baby","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐣" src="1f423.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},hatched_chick:{keywords:["animal","chicken","baby","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐥" src="1f425.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},duck:{keywords:["animal","nature","bird","mallard"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦆" src="1f986.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},eagle:{keywords:["animal","nature","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦅" src="1f985.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},owl:{keywords:["animal","nature","bird","hoot"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦉" src="1f989.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},bat:{keywords:["animal","nature","blind","vampire"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦇" src="1f987.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},wolf:{keywords:["animal","nature","wild"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐺" src="1f43a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},boar:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐗" src="1f417.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},horse:{keywords:["animal","brown","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐴" src="1f434.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},unicorn:{keywords:["animal","nature","mystical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦄" src="1f984.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},honeybee:{keywords:["animal","insect","nature","bug","spring","honey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐝" src="1f41d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},bug:{keywords:["animal","insect","nature","worm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐛" src="1f41b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},butterfly:{keywords:["animal","insect","nature","caterpillar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦋" src="1f98b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},snail:{keywords:["slow","animal","shell"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐌" src="1f40c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},beetle:{keywords:["animal","insect","nature","ladybug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐞" src="1f41e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},ant:{keywords:["animal","insect","nature","bug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐜" src="1f41c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},grasshopper:{keywords:["animal","cricket","chirp"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦗" src="1f997.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},spider:{keywords:["animal","arachnid"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕷" src="1f577.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},scorpion:{keywords:["animal","arachnid"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦂" src="1f982.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},crab:{keywords:["animal","crustacean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦀" src="1f980.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},snake:{keywords:["animal","evil","nature","hiss","python"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐍" src="1f40d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},lizard:{keywords:["animal","nature","reptile"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦎" src="1f98e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},"t-rex":{keywords:["animal","nature","dinosaur","tyrannosaurus","extinct"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦖" src="1f996.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sauropod:{keywords:["animal","nature","dinosaur","brachiosaurus","brontosaurus","diplodocus","extinct"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦕" src="1f995.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},turtle:{keywords:["animal","slow","nature","tortoise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐢" src="1f422.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},tropical_fish:{keywords:["animal","swim","ocean","beach","nemo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐠" src="1f420.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},fish:{keywords:["animal","food","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐟" src="1f41f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},blowfish:{keywords:["animal","nature","food","sea","ocean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐡" src="1f421.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dolphin:{keywords:["animal","nature","fish","sea","ocean","flipper","fins","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐬" src="1f42c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},shark:{keywords:["animal","nature","fish","sea","ocean","jaws","fins","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦈" src="1f988.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},whale:{keywords:["animal","nature","sea","ocean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐳" src="1f433.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},whale2:{keywords:["animal","nature","sea","ocean"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐋" src="1f40b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},crocodile:{keywords:["animal","nature","reptile","lizard","alligator"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐊" src="1f40a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},leopard:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐆" src="1f406.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},zebra:{keywords:["animal","nature","stripes","safari"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦓" src="1f993.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},tiger2:{keywords:["animal","nature","roar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐅" src="1f405.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},water_buffalo:{keywords:["animal","nature","ox","cow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐃" src="1f403.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},ox:{keywords:["animal","cow","beef"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐂" src="1f402.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cow2:{keywords:["beef","ox","animal","nature","moo","milk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐄" src="1f404.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},deer:{keywords:["animal","nature","horns","venison"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦌" src="1f98c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dromedary_camel:{keywords:["animal","hot","desert","hump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐪" src="1f42a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},camel:{keywords:["animal","nature","hot","desert","hump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐫" src="1f42b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},giraffe:{keywords:["animal","nature","spots","safari"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦒" src="1f992.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},elephant:{keywords:["animal","nature","nose","th","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐘" src="1f418.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},rhinoceros:{keywords:["animal","nature","horn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦏" src="1f98f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},goat:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐐" src="1f410.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},ram:{keywords:["animal","sheep","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐏" src="1f40f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sheep:{keywords:["animal","nature","wool","shipit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐑" src="1f411.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},racehorse:{keywords:["animal","gamble","luck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐎" src="1f40e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},pig2:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐖" src="1f416.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},rat:{keywords:["animal","mouse","rodent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐀" src="1f400.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},mouse2:{keywords:["animal","nature","rodent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐁" src="1f401.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},rooster:{keywords:["animal","nature","chicken"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐓" src="1f413.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},turkey:{keywords:["animal","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦃" src="1f983.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dove:{keywords:["animal","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕊" src="1f54a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dog2:{keywords:["animal","nature","friend","doge","pet","faithful"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐕" src="1f415.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},poodle:{keywords:["dog","animal","101","nature","pet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐩" src="1f429.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cat2:{keywords:["animal","meow","pet","cats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐈" src="1f408.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},rabbit2:{keywords:["animal","nature","pet","magic","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐇" src="1f407.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},chipmunk:{keywords:["animal","nature","rodent","squirrel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐿" src="1f43f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},hedgehog:{keywords:["animal","nature","spiny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦔" src="1f994.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},raccoon:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦝" src="1f99d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},llama:{keywords:["animal","nature","alpaca"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦙" src="1f999.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},hippopotamus:{keywords:["animal","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦛" src="1f99b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},kangaroo:{keywords:["animal","nature","australia","joey","hop","marsupial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦘" src="1f998.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},badger:{keywords:["animal","nature","honey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦡" src="1f9a1.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},swan:{keywords:["animal","nature","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦢" src="1f9a2.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},peacock:{keywords:["animal","nature","peahen","bird"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦚" src="1f99a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},parrot:{keywords:["animal","nature","bird","pirate","talk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦜" src="1f99c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},lobster:{keywords:["animal","nature","bisque","claws","seafood"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦞" src="1f99e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},mosquito:{keywords:["animal","nature","insect","malaria"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦟" src="1f99f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},paw_prints:{keywords:["animal","tracking","footprints","dog","cat","pet","feet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐾" src="1f43e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dragon:{keywords:["animal","myth","nature","chinese","green"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐉" src="1f409.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dragon_face:{keywords:["animal","myth","nature","chinese","green"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐲" src="1f432.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cactus:{keywords:["vegetable","plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌵" src="1f335.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},christmas_tree:{keywords:["festival","vacation","december","xmas","celebration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎄" src="1f384.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},evergreen_tree:{keywords:["plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌲" src="1f332.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},deciduous_tree:{keywords:["plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌳" src="1f333.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},palm_tree:{keywords:["plant","vegetable","nature","summer","beach","mojito","tropical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌴" src="1f334.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},seedling:{keywords:["plant","nature","grass","lawn","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌱" src="1f331.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},herb:{keywords:["vegetable","plant","medicine","weed","grass","lawn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌿" src="1f33f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},shamrock:{keywords:["vegetable","plant","nature","irish","clover"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☘" src="2618.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},four_leaf_clover:{keywords:["vegetable","plant","nature","lucky","irish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍀" src="1f340.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},bamboo:{keywords:["plant","nature","vegetable","panda","pine_decoration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎍" src="1f38d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},tanabata_tree:{keywords:["plant","nature","branch","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎋" src="1f38b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},leaves:{keywords:["nature","plant","tree","vegetable","grass","lawn","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍃" src="1f343.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},fallen_leaf:{keywords:["nature","plant","vegetable","leaves"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍂" src="1f342.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},maple_leaf:{keywords:["nature","plant","vegetable","ca","fall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍁" src="1f341.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},ear_of_rice:{keywords:["nature","plant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌾" src="1f33e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},hibiscus:{keywords:["plant","vegetable","flowers","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌺" src="1f33a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sunflower:{keywords:["nature","plant","fall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌻" src="1f33b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},rose:{keywords:["flowers","valentines","love","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌹" src="1f339.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},wilted_flower:{keywords:["plant","nature","flower"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥀" src="1f940.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},tulip:{keywords:["flowers","plant","nature","summer","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌷" src="1f337.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},blossom:{keywords:["nature","flowers","yellow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌼" src="1f33c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cherry_blossom:{keywords:["nature","plant","spring","flower"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌸" src="1f338.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},bouquet:{keywords:["flowers","nature","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💐" src="1f490.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},mushroom:{keywords:["plant","vegetable"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍄" src="1f344.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},chestnut:{keywords:["food","squirrel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌰" src="1f330.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},jack_o_lantern:{keywords:["halloween","light","pumpkin","creepy","fall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎃" src="1f383.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},shell:{keywords:["nature","sea","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🐚" src="1f41a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},spider_web:{keywords:["animal","insect","arachnid","silk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕸" src="1f578.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},earth_americas:{keywords:["globe","world","USA","international"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌎" src="1f30e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},earth_africa:{keywords:["globe","world","international"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌍" src="1f30d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},earth_asia:{keywords:["globe","world","east","international"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌏" src="1f30f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},full_moon:{keywords:["nature","yellow","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌕" src="1f315.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},waning_gibbous_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep","waxing_gibbous_moon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌖" src="1f316.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},last_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌗" src="1f317.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},waning_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌘" src="1f318.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},new_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌑" src="1f311.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},waxing_crescent_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌒" src="1f312.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},first_quarter_moon:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌓" src="1f313.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},waxing_gibbous_moon:{keywords:["nature","night","sky","gray","twilight","planet","space","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌔" src="1f314.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},new_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌚" src="1f31a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},full_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌝" src="1f31d.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},first_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌛" src="1f31b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},last_quarter_moon_with_face:{keywords:["nature","twilight","planet","space","night","evening","sleep"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌜" src="1f31c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sun_with_face:{keywords:["nature","morning","sky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌞" src="1f31e.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},crescent_moon:{keywords:["night","sleep","sky","evening","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌙" src="1f319.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},star:{keywords:["night","yellow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⭐" src="2b50.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},star2:{keywords:["night","sparkle","awesome","good","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌟" src="1f31f.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dizzy:{keywords:["star","sparkle","shoot","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💫" src="1f4ab.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sparkles:{keywords:["stars","shine","shiny","cool","awesome","good","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✨" src="2728.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},comet:{keywords:["space"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☄" src="2604.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sunny:{keywords:["weather","nature","brightness","summer","beach","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☀️" src="2600.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sun_behind_small_cloud:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌤" src="1f324.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},partly_sunny:{keywords:["weather","nature","cloudy","morning","fall","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛅" src="26c5.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sun_behind_large_cloud:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌥" src="1f325.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sun_behind_rain_cloud:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌦" src="1f326.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cloud:{keywords:["weather","sky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☁️" src="2601.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_rain:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌧" src="1f327.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_lightning_and_rain:{keywords:["weather","lightning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛈" src="26c8.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_lightning:{keywords:["weather","thunder"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌩" src="1f329.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},zap:{keywords:["thunder","weather","lightning bolt","fast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚡" src="26a1.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},fire:{keywords:["hot","cook","flame"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔥" src="1f525.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},boom:{keywords:["bomb","explode","explosion","collision","blown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💥" src="1f4a5.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},snowflake:{keywords:["winter","season","cold","weather","christmas","xmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❄️" src="2744.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},cloud_with_snow:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌨" src="1f328.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},snowman:{keywords:["winter","season","cold","weather","christmas","xmas","frozen","without_snow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛄" src="26c4.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},snowman_with_snow:{keywords:["winter","season","cold","weather","christmas","xmas","frozen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☃" src="2603.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},wind_face:{keywords:["gust","air"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌬" src="1f32c.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},dash:{keywords:["wind","air","fast","shoo","fart","smoke","puff"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💨" src="1f4a8.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},tornado:{keywords:["weather","cyclone","twister"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌪" src="1f32a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},fog:{keywords:["weather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌫" src="1f32b.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},open_umbrella:{keywords:["weather","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☂" src="2602.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},umbrella:{keywords:["rainy","weather","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☔" src="2614.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},droplet:{keywords:["water","drip","faucet","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💧" src="1f4a7.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},sweat_drops:{keywords:["water","drip","oops"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💦" src="1f4a6.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},ocean:{keywords:["sea","water","wave","nature","tsunami","disaster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌊" src="1f30a.png"/>',fitzpatrick_scale:false,category:"animals_and_nature"},green_apple:{keywords:["fruit","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍏" src="1f34f.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},apple:{keywords:["fruit","mac","school"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍎" src="1f34e.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},pear:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍐" src="1f350.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},tangerine:{keywords:["food","fruit","nature","orange"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍊" src="1f34a.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},lemon:{keywords:["fruit","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍋" src="1f34b.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},banana:{keywords:["fruit","food","monkey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍌" src="1f34c.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},watermelon:{keywords:["fruit","food","picnic","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍉" src="1f349.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},grapes:{keywords:["fruit","food","wine"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍇" src="1f347.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},strawberry:{keywords:["fruit","food","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍓" src="1f353.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},melon:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍈" src="1f348.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cherries:{keywords:["food","fruit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍒" src="1f352.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},peach:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍑" src="1f351.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},pineapple:{keywords:["fruit","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍍" src="1f34d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},coconut:{keywords:["fruit","nature","food","palm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥥" src="1f965.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},kiwi_fruit:{keywords:["fruit","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥝" src="1f95d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},mango:{keywords:["fruit","food","tropical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥭" src="1f96d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},avocado:{keywords:["fruit","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥑" src="1f951.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},broccoli:{keywords:["fruit","food","vegetable"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥦" src="1f966.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},tomato:{keywords:["fruit","vegetable","nature","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍅" src="1f345.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},eggplant:{keywords:["vegetable","nature","food","aubergine"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍆" src="1f346.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cucumber:{keywords:["fruit","food","pickle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥒" src="1f952.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},carrot:{keywords:["vegetable","food","orange"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥕" src="1f955.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},hot_pepper:{keywords:["food","spicy","chilli","chili"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌶" src="1f336.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},potato:{keywords:["food","tuber","vegatable","starch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥔" src="1f954.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},corn:{keywords:["food","vegetable","plant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌽" src="1f33d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},leafy_greens:{keywords:["food","vegetable","plant","bok choy","cabbage","kale","lettuce"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥬" src="1f96c.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},sweet_potato:{keywords:["food","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍠" src="1f360.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},peanuts:{keywords:["food","nut"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥜" src="1f95c.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},honey_pot:{keywords:["bees","sweet","kitchen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍯" src="1f36f.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},croissant:{keywords:["food","bread","french"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥐" src="1f950.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},bread:{keywords:["food","wheat","breakfast","toast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍞" src="1f35e.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},baguette_bread:{keywords:["food","bread","french"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥖" src="1f956.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},bagel:{keywords:["food","bread","bakery","schmear"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥯" src="1f96f.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},pretzel:{keywords:["food","bread","twisted"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥨" src="1f968.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cheese:{keywords:["food","chadder"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧀" src="1f9c0.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},egg:{keywords:["food","chicken","breakfast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥚" src="1f95a.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},bacon:{keywords:["food","breakfast","pork","pig","meat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥓" src="1f953.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},steak:{keywords:["food","cow","meat","cut","chop","lambchop","porkchop"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥩" src="1f969.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},pancakes:{keywords:["food","breakfast","flapjacks","hotcakes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥞" src="1f95e.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},poultry_leg:{keywords:["food","meat","drumstick","bird","chicken","turkey"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍗" src="1f357.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},meat_on_bone:{keywords:["good","food","drumstick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍖" src="1f356.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},bone:{keywords:["skeleton"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦴" src="1f9b4.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},fried_shrimp:{keywords:["food","animal","appetizer","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍤" src="1f364.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},fried_egg:{keywords:["food","breakfast","kitchen","egg"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍳" src="1f373.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},hamburger:{keywords:["meat","fast food","beef","cheeseburger","mcdonalds","burger king"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍔" src="1f354.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},fries:{keywords:["chips","snack","fast food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍟" src="1f35f.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},stuffed_flatbread:{keywords:["food","flatbread","stuffed","gyro"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥙" src="1f959.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},hotdog:{keywords:["food","frankfurter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌭" src="1f32d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},pizza:{keywords:["food","party"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍕" src="1f355.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},sandwich:{keywords:["food","lunch","bread"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥪" src="1f96a.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},canned_food:{keywords:["food","soup"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥫" src="1f96b.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},spaghetti:{keywords:["food","italian","noodle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍝" src="1f35d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},taco:{keywords:["food","mexican"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌮" src="1f32e.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},burrito:{keywords:["food","mexican"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌯" src="1f32f.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},green_salad:{keywords:["food","healthy","lettuce"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥗" src="1f957.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},shallow_pan_of_food:{keywords:["food","cooking","casserole","paella"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥘" src="1f958.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},ramen:{keywords:["food","japanese","noodle","chopsticks"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍜" src="1f35c.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},stew:{keywords:["food","meat","soup"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍲" src="1f372.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},fish_cake:{keywords:["food","japan","sea","beach","narutomaki","pink","swirl","kamaboko","surimi","ramen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍥" src="1f365.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},fortune_cookie:{keywords:["food","prophecy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥠" src="1f960.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},sushi:{keywords:["food","fish","japanese","rice"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍣" src="1f363.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},bento:{keywords:["food","japanese","box"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍱" src="1f371.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},curry:{keywords:["food","spicy","hot","indian"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍛" src="1f35b.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},rice_ball:{keywords:["food","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍙" src="1f359.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},rice:{keywords:["food","china","asian"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍚" src="1f35a.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},rice_cracker:{keywords:["food","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍘" src="1f358.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},oden:{keywords:["food","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍢" src="1f362.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},dango:{keywords:["food","dessert","sweet","japanese","barbecue","meat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍡" src="1f361.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},shaved_ice:{keywords:["hot","dessert","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍧" src="1f367.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},ice_cream:{keywords:["food","hot","dessert"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍨" src="1f368.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},icecream:{keywords:["food","hot","dessert","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍦" src="1f366.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},pie:{keywords:["food","dessert","pastry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥧" src="1f967.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cake:{keywords:["food","dessert"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍰" src="1f370.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cupcake:{keywords:["food","dessert","bakery","sweet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧁" src="1f9c1.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},moon_cake:{keywords:["food","autumn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥮" src="1f96e.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},birthday:{keywords:["food","dessert","cake"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎂" src="1f382.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},custard:{keywords:["dessert","food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍮" src="1f36e.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},candy:{keywords:["snack","dessert","sweet","lolly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍬" src="1f36c.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},lollipop:{keywords:["food","snack","candy","sweet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍭" src="1f36d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},chocolate_bar:{keywords:["food","snack","dessert","sweet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍫" src="1f36b.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},popcorn:{keywords:["food","movie theater","films","snack"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍿" src="1f37f.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},dumpling:{keywords:["food","empanada","pierogi","potsticker"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥟" src="1f95f.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},doughnut:{keywords:["food","dessert","snack","sweet","donut"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍩" src="1f369.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cookie:{keywords:["food","snack","oreo","chocolate","sweet","dessert"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍪" src="1f36a.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},milk_glass:{keywords:["beverage","drink","cow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥛" src="1f95b.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},beer:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍺" src="1f37a.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},beers:{keywords:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍻" src="1f37b.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},clinking_glasses:{keywords:["beverage","drink","party","alcohol","celebrate","cheers","wine","champagne","toast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥂" src="1f942.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},wine_glass:{keywords:["drink","beverage","drunk","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍷" src="1f377.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},tumbler_glass:{keywords:["drink","beverage","drunk","alcohol","liquor","booze","bourbon","scotch","whisky","glass","shot"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥃" src="1f943.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cocktail:{keywords:["drink","drunk","alcohol","beverage","booze","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍸" src="1f378.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},tropical_drink:{keywords:["beverage","cocktail","summer","beach","alcohol","booze","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍹" src="1f379.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},champagne:{keywords:["drink","wine","bottle","celebration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍾" src="1f37e.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},sake:{keywords:["wine","drink","drunk","beverage","japanese","alcohol","booze"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍶" src="1f376.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},tea:{keywords:["drink","bowl","breakfast","green","british"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍵" src="1f375.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},cup_with_straw:{keywords:["drink","soda"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥤" src="1f964.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},coffee:{keywords:["beverage","caffeine","latte","espresso"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☕" src="2615.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},baby_bottle:{keywords:["food","container","milk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍼" src="1f37c.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},salt:{keywords:["condiment","shaker"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧂" src="1f9c2.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},spoon:{keywords:["cutlery","kitchen","tableware"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥄" src="1f944.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},fork_and_knife:{keywords:["cutlery","kitchen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍴" src="1f374.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},plate_with_cutlery:{keywords:["food","eat","meal","lunch","dinner","restaurant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🍽" src="1f37d.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},bowl_with_spoon:{keywords:["food","breakfast","cereal","oatmeal","porridge"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥣" src="1f963.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},takeout_box:{keywords:["food","leftovers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥡" src="1f961.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},chopsticks:{keywords:["food"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥢" src="1f962.png"/>',fitzpatrick_scale:false,category:"food_and_drink"},soccer:{keywords:["sports","football"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚽" src="26bd.png"/>',fitzpatrick_scale:false,category:"activity"},basketball:{keywords:["sports","balls","NBA"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏀" src="1f3c0.png"/>',fitzpatrick_scale:false,category:"activity"},football:{keywords:["sports","balls","NFL"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏈" src="1f3c8.png"/>',fitzpatrick_scale:false,category:"activity"},baseball:{keywords:["sports","balls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚾" src="26be.png"/>',fitzpatrick_scale:false,category:"activity"},softball:{keywords:["sports","balls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥎" src="1f94e.png"/>',fitzpatrick_scale:false,category:"activity"},tennis:{keywords:["sports","balls","green"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎾" src="1f3be.png"/>',fitzpatrick_scale:false,category:"activity"},volleyball:{keywords:["sports","balls"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏐" src="1f3d0.png"/>',fitzpatrick_scale:false,category:"activity"},rugby_football:{keywords:["sports","team"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏉" src="1f3c9.png"/>',fitzpatrick_scale:false,category:"activity"},flying_disc:{keywords:["sports","frisbee","ultimate"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥏" src="1f94f.png"/>',fitzpatrick_scale:false,category:"activity"},"8ball":{keywords:["pool","hobby","game","luck","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎱" src="1f3b1.png"/>',fitzpatrick_scale:false,category:"activity"},golf:{keywords:["sports","business","flag","hole","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛳" src="26f3.png"/>',fitzpatrick_scale:false,category:"activity"},golfing_woman:{keywords:["sports","business","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏌️‍♀️" src="1f3cc-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:false,category:"activity"},golfing_man:{keywords:["sports","business"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏌" src="1f3cc.png"/>',fitzpatrick_scale:true,category:"activity"},ping_pong:{keywords:["sports","pingpong"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏓" src="1f3d3.png"/>',fitzpatrick_scale:false,category:"activity"},badminton:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏸" src="1f3f8.png"/>',fitzpatrick_scale:false,category:"activity"},goal_net:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥅" src="1f945.png"/>',fitzpatrick_scale:false,category:"activity"},ice_hockey:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏒" src="1f3d2.png"/>',fitzpatrick_scale:false,category:"activity"},field_hockey:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏑" src="1f3d1.png"/>',fitzpatrick_scale:false,category:"activity"},lacrosse:{keywords:["sports","ball","stick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥍" src="1f94d.png"/>',fitzpatrick_scale:false,category:"activity"},cricket:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏏" src="1f3cf.png"/>',fitzpatrick_scale:false,category:"activity"},ski:{keywords:["sports","winter","cold","snow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎿" src="1f3bf.png"/>',fitzpatrick_scale:false,category:"activity"},skier:{keywords:["sports","winter","snow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛷" src="26f7.png"/>',fitzpatrick_scale:false,category:"activity"},snowboarder:{keywords:["sports","winter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏂" src="1f3c2.png"/>',fitzpatrick_scale:true,category:"activity"},person_fencing:{keywords:["sports","fencing","sword"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤺" src="1f93a.png"/>',fitzpatrick_scale:false,category:"activity"},women_wrestling:{keywords:["sports","wrestlers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤼‍♀️" src="1f93c-200d-2640-fe0f.png"/>',fitzpatrick_scale:false,category:"activity"},men_wrestling:{keywords:["sports","wrestlers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤼‍♂️" src="1f93c-200d-2642-fe0f.png"/>',fitzpatrick_scale:false,category:"activity"},woman_cartwheeling:{keywords:["gymnastics"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤸‍♀️" src="1f938-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},man_cartwheeling:{keywords:["gymnastics"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤸‍♂️" src="1f938-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},woman_playing_handball:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤾‍♀️" src="1f93e-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},man_playing_handball:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤾‍♂️" src="1f93e-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},ice_skate:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛸" src="26f8.png"/>',fitzpatrick_scale:false,category:"activity"},curling_stone:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥌" src="1f94c.png"/>',fitzpatrick_scale:false,category:"activity"},skateboard:{keywords:["board"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛹" src="1f6f9.png"/>',fitzpatrick_scale:false,category:"activity"},sled:{keywords:["sleigh","luge","toboggan"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛷" src="1f6f7.png"/>',fitzpatrick_scale:false,category:"activity"},bow_and_arrow:{keywords:["sports"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏹" src="1f3f9.png"/>',fitzpatrick_scale:false,category:"activity"},fishing_pole_and_fish:{keywords:["food","hobby","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎣" src="1f3a3.png"/>',fitzpatrick_scale:false,category:"activity"},boxing_glove:{keywords:["sports","fighting"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥊" src="1f94a.png"/>',fitzpatrick_scale:false,category:"activity"},martial_arts_uniform:{keywords:["judo","karate","taekwondo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥋" src="1f94b.png"/>',fitzpatrick_scale:false,category:"activity"},rowing_woman:{keywords:["sports","hobby","water","ship","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚣‍♀️" src="1f6a3-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},rowing_man:{keywords:["sports","hobby","water","ship"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚣" src="1f6a3.png"/>',fitzpatrick_scale:true,category:"activity"},climbing_woman:{keywords:["sports","hobby","woman","female","rock"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧗‍♀️" src="1f9d7-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},climbing_man:{keywords:["sports","hobby","man","male","rock"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧗‍♂️" src="1f9d7-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},swimming_woman:{keywords:["sports","exercise","human","athlete","water","summer","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏊‍♀️" src="1f3ca-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},swimming_man:{keywords:["sports","exercise","human","athlete","water","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏊" src="1f3ca.png"/>',fitzpatrick_scale:true,category:"activity"},woman_playing_water_polo:{keywords:["sports","pool"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤽‍♀️" src="1f93d-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},man_playing_water_polo:{keywords:["sports","pool"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤽‍♂️" src="1f93d-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},woman_in_lotus_position:{keywords:["woman","female","meditation","yoga","serenity","zen","mindfulness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧘‍♀️" src="1f9d8-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},man_in_lotus_position:{keywords:["man","male","meditation","yoga","serenity","zen","mindfulness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧘‍♂️" src="1f9d8-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},surfing_woman:{keywords:["sports","ocean","sea","summer","beach","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏄‍♀️" src="1f3c4-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},surfing_man:{keywords:["sports","ocean","sea","summer","beach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏄" src="1f3c4.png"/>',fitzpatrick_scale:true,category:"activity"},bath:{keywords:["clean","shower","bathroom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛀" src="1f6c0.png"/>',fitzpatrick_scale:true,category:"activity"},basketball_woman:{keywords:["sports","human","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛹️‍♀️" src="26f9-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},basketball_man:{keywords:["sports","human"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛹" src="26f9.png"/>',fitzpatrick_scale:true,category:"activity"},weight_lifting_woman:{keywords:["sports","training","exercise","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏋️‍♀️" src="1f3cb-fe0f-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},weight_lifting_man:{keywords:["sports","training","exercise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏋" src="1f3cb.png"/>',fitzpatrick_scale:true,category:"activity"},biking_woman:{keywords:["sports","bike","exercise","hipster","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚴‍♀️" src="1f6b4-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},biking_man:{keywords:["sports","bike","exercise","hipster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚴" src="1f6b4.png"/>',fitzpatrick_scale:true,category:"activity"},mountain_biking_woman:{keywords:["transportation","sports","human","race","bike","woman","female"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚵‍♀️" src="1f6b5-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},mountain_biking_man:{keywords:["transportation","sports","human","race","bike"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚵" src="1f6b5.png"/>',fitzpatrick_scale:true,category:"activity"},horse_racing:{keywords:["animal","betting","competition","gambling","luck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏇" src="1f3c7.png"/>',fitzpatrick_scale:true,category:"activity"},business_suit_levitating:{keywords:["suit","business","levitate","hover","jump"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕴" src="1f574.png"/>',fitzpatrick_scale:true,category:"activity"},trophy:{keywords:["win","award","contest","place","ftw","ceremony"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏆" src="1f3c6.png"/>',fitzpatrick_scale:false,category:"activity"},running_shirt_with_sash:{keywords:["play","pageant"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎽" src="1f3bd.png"/>',fitzpatrick_scale:false,category:"activity"},medal_sports:{keywords:["award","winning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏅" src="1f3c5.png"/>',fitzpatrick_scale:false,category:"activity"},medal_military:{keywords:["award","winning","army"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎖" src="1f396.png"/>',fitzpatrick_scale:false,category:"activity"},"1st_place_medal":{keywords:["award","winning","first"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥇" src="1f947.png"/>',fitzpatrick_scale:false,category:"activity"},"2nd_place_medal":{keywords:["award","second"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥈" src="1f948.png"/>',fitzpatrick_scale:false,category:"activity"},"3rd_place_medal":{keywords:["award","third"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥉" src="1f949.png"/>',fitzpatrick_scale:false,category:"activity"},reminder_ribbon:{keywords:["sports","cause","support","awareness"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎗" src="1f397.png"/>',fitzpatrick_scale:false,category:"activity"},rosette:{keywords:["flower","decoration","military"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏵" src="1f3f5.png"/>',fitzpatrick_scale:false,category:"activity"},ticket:{keywords:["event","concert","pass"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎫" src="1f3ab.png"/>',fitzpatrick_scale:false,category:"activity"},tickets:{keywords:["sports","concert","entrance"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎟" src="1f39f.png"/>',fitzpatrick_scale:false,category:"activity"},performing_arts:{keywords:["acting","theater","drama"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎭" src="1f3ad.png"/>',fitzpatrick_scale:false,category:"activity"},art:{keywords:["design","paint","draw","colors"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎨" src="1f3a8.png"/>',fitzpatrick_scale:false,category:"activity"},circus_tent:{keywords:["festival","carnival","party"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎪" src="1f3aa.png"/>',fitzpatrick_scale:false,category:"activity"},woman_juggling:{keywords:["juggle","balance","skill","multitask"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤹‍♀️" src="1f939-200d-2640-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},man_juggling:{keywords:["juggle","balance","skill","multitask"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🤹‍♂️" src="1f939-200d-2642-fe0f.png"/>',fitzpatrick_scale:true,category:"activity"},microphone:{keywords:["sound","music","PA","sing","talkshow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎤" src="1f3a4.png"/>',fitzpatrick_scale:false,category:"activity"},headphones:{keywords:["music","score","gadgets"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎧" src="1f3a7.png"/>',fitzpatrick_scale:false,category:"activity"},musical_score:{keywords:["treble","clef","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎼" src="1f3bc.png"/>',fitzpatrick_scale:false,category:"activity"},musical_keyboard:{keywords:["piano","instrument","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎹" src="1f3b9.png"/>',fitzpatrick_scale:false,category:"activity"},drum:{keywords:["music","instrument","drumsticks","snare"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🥁" src="1f941.png"/>',fitzpatrick_scale:false,category:"activity"},saxophone:{keywords:["music","instrument","jazz","blues"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎷" src="1f3b7.png"/>',fitzpatrick_scale:false,category:"activity"},trumpet:{keywords:["music","brass"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎺" src="1f3ba.png"/>',fitzpatrick_scale:false,category:"activity"},guitar:{keywords:["music","instrument"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎸" src="1f3b8.png"/>',fitzpatrick_scale:false,category:"activity"},violin:{keywords:["music","instrument","orchestra","symphony"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎻" src="1f3bb.png"/>',fitzpatrick_scale:false,category:"activity"},clapper:{keywords:["movie","film","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎬" src="1f3ac.png"/>',fitzpatrick_scale:false,category:"activity"},video_game:{keywords:["play","console","PS4","controller"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎮" src="1f3ae.png"/>',fitzpatrick_scale:false,category:"activity"},space_invader:{keywords:["game","arcade","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="👾" src="1f47e.png"/>',fitzpatrick_scale:false,category:"activity"},dart:{keywords:["game","play","bar","target","bullseye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎯" src="1f3af.png"/>',fitzpatrick_scale:false,category:"activity"},game_die:{keywords:["dice","random","tabletop","play","luck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎲" src="1f3b2.png"/>',fitzpatrick_scale:false,category:"activity"},chess_pawn:{keywords:["expendable"],char:"♟",fitzpatrick_scale:false,category:"activity"},slot_machine:{keywords:["bet","gamble","vegas","fruit machine","luck","casino"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎰" src="1f3b0.png"/>',fitzpatrick_scale:false,category:"activity"},jigsaw:{keywords:["interlocking","puzzle","piece"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧩" src="1f9e9.png"/>',fitzpatrick_scale:false,category:"activity"},bowling:{keywords:["sports","fun","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎳" src="1f3b3.png"/>',fitzpatrick_scale:false,category:"activity"},red_car:{keywords:["red","transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚗" src="1f697.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},taxi:{keywords:["uber","vehicle","cars","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚕" src="1f695.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},blue_car:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚙" src="1f699.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},bus:{keywords:["car","vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚌" src="1f68c.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},trolleybus:{keywords:["bart","transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚎" src="1f68e.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},racing_car:{keywords:["sports","race","fast","formula","f1"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏎" src="1f3ce.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},police_car:{keywords:["vehicle","cars","transportation","law","legal","enforcement"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚓" src="1f693.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},ambulance:{keywords:["health","911","hospital"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚑" src="1f691.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},fire_engine:{keywords:["transportation","cars","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚒" src="1f692.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},minibus:{keywords:["vehicle","car","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚐" src="1f690.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},truck:{keywords:["cars","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚚" src="1f69a.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},articulated_lorry:{keywords:["vehicle","cars","transportation","express"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚛" src="1f69b.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},tractor:{keywords:["vehicle","car","farming","agriculture"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚜" src="1f69c.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},kick_scooter:{keywords:["vehicle","kick","razor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛴" src="1f6f4.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},motorcycle:{keywords:["race","sports","fast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏍" src="1f3cd.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},bike:{keywords:["sports","bicycle","exercise","hipster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚲" src="1f6b2.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},motor_scooter:{keywords:["vehicle","vespa","sasha"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛵" src="1f6f5.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},rotating_light:{keywords:["police","ambulance","911","emergency","alert","error","pinged","law","legal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚨" src="1f6a8.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},oncoming_police_car:{keywords:["vehicle","law","legal","enforcement","911"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚔" src="1f694.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},oncoming_bus:{keywords:["vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚍" src="1f68d.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},oncoming_automobile:{keywords:["car","vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚘" src="1f698.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},oncoming_taxi:{keywords:["vehicle","cars","uber"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚖" src="1f696.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},aerial_tramway:{keywords:["transportation","vehicle","ski"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚡" src="1f6a1.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},mountain_cableway:{keywords:["transportation","vehicle","ski"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚠" src="1f6a0.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},suspension_railway:{keywords:["vehicle","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚟" src="1f69f.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},railway_car:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚃" src="1f683.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},train:{keywords:["transportation","vehicle","carriage","public","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚋" src="1f68b.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},monorail:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚝" src="1f69d.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},bullettrain_side:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚄" src="1f684.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},bullettrain_front:{keywords:["transportation","vehicle","speed","fast","public","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚅" src="1f685.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},light_rail:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚈" src="1f688.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},mountain_railway:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚞" src="1f69e.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},steam_locomotive:{keywords:["transportation","vehicle","train"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚂" src="1f682.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},train2:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚆" src="1f686.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},metro:{keywords:["transportation","blue-square","mrt","underground","tube"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚇" src="1f687.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},tram:{keywords:["transportation","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚊" src="1f68a.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},station:{keywords:["transportation","vehicle","public"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚉" src="1f689.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},flying_saucer:{keywords:["transportation","vehicle","ufo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛸" src="1f6f8.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},helicopter:{keywords:["transportation","vehicle","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚁" src="1f681.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},small_airplane:{keywords:["flight","transportation","fly","vehicle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛩" src="1f6e9.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},airplane:{keywords:["vehicle","transportation","flight","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✈️" src="2708.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},flight_departure:{keywords:["airport","flight","landing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛫" src="1f6eb.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},flight_arrival:{keywords:["airport","flight","boarding"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛬" src="1f6ec.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},sailboat:{keywords:["ship","summer","transportation","water","sailing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛵" src="26f5.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},motor_boat:{keywords:["ship"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛥" src="1f6e5.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},speedboat:{keywords:["ship","transportation","vehicle","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚤" src="1f6a4.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},ferry:{keywords:["boat","ship","yacht"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛴" src="26f4.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},passenger_ship:{keywords:["yacht","cruise","ferry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛳" src="1f6f3.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},rocket:{keywords:["launch","ship","staffmode","NASA","outer space","outer_space","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚀" src="1f680.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},artificial_satellite:{keywords:["communication","gps","orbit","spaceflight","NASA","ISS"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛰" src="1f6f0.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},seat:{keywords:["sit","airplane","transport","bus","flight","fly"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💺" src="1f4ba.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},canoe:{keywords:["boat","paddle","water","ship"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛶" src="1f6f6.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},anchor:{keywords:["ship","ferry","sea","boat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚓" src="2693.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},construction:{keywords:["wip","progress","caution","warning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚧" src="1f6a7.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},fuelpump:{keywords:["gas station","petroleum"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛽" src="26fd.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},busstop:{keywords:["transportation","wait"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚏" src="1f68f.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},vertical_traffic_light:{keywords:["transportation","driving"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚦" src="1f6a6.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},traffic_light:{keywords:["transportation","signal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚥" src="1f6a5.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},checkered_flag:{keywords:["contest","finishline","race","gokart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏁" src="1f3c1.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},ship:{keywords:["transportation","titanic","deploy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚢" src="1f6a2.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},ferris_wheel:{keywords:["photo","carnival","londoneye"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎡" src="1f3a1.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},roller_coaster:{keywords:["carnival","playground","photo","fun"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎢" src="1f3a2.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},carousel_horse:{keywords:["photo","carnival"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎠" src="1f3a0.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},building_construction:{keywords:["wip","working","progress"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏗" src="1f3d7.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},foggy:{keywords:["photo","mountain"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌁" src="1f301.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},tokyo_tower:{keywords:["photo","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗼" src="1f5fc.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},factory:{keywords:["building","industry","pollution","smoke"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏭" src="1f3ed.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},fountain:{keywords:["photo","summer","water","fresh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛲" src="26f2.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},rice_scene:{keywords:["photo","japan","asia","tsukimi"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎑" src="1f391.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},mountain:{keywords:["photo","nature","environment"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛰" src="26f0.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},mountain_snow:{keywords:["photo","nature","environment","winter","cold"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏔" src="1f3d4.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},mount_fuji:{keywords:["photo","mountain","nature","japanese"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗻" src="1f5fb.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},volcano:{keywords:["photo","nature","disaster"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌋" src="1f30b.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},japan:{keywords:["nation","country","japanese","asia"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗾" src="1f5fe.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},camping:{keywords:["photo","outdoors","tent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏕" src="1f3d5.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},tent:{keywords:["photo","camping","outdoors"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛺" src="26fa.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},national_park:{keywords:["photo","environment","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏞" src="1f3de.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},motorway:{keywords:["road","cupertino","interstate","highway"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛣" src="1f6e3.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},railway_track:{keywords:["train","transportation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛤" src="1f6e4.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},sunrise:{keywords:["morning","view","vacation","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌅" src="1f305.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},sunrise_over_mountains:{keywords:["view","vacation","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌄" src="1f304.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},desert:{keywords:["photo","warm","saharah"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏜" src="1f3dc.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},beach_umbrella:{keywords:["weather","summer","sunny","sand","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏖" src="1f3d6.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},desert_island:{keywords:["photo","tropical","mojito"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏝" src="1f3dd.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},city_sunrise:{keywords:["photo","good morning","dawn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌇" src="1f307.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},city_sunset:{keywords:["photo","evening","sky","buildings"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌆" src="1f306.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},cityscape:{keywords:["photo","night life","urban"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏙" src="1f3d9.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},night_with_stars:{keywords:["evening","city","downtown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌃" src="1f303.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},bridge_at_night:{keywords:["photo","sanfrancisco"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌉" src="1f309.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},milky_way:{keywords:["photo","space","stars"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌌" src="1f30c.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},stars:{keywords:["night","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌠" src="1f320.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},sparkler:{keywords:["stars","night","shine"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎇" src="1f387.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},fireworks:{keywords:["photo","festival","carnival","congratulations"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎆" src="1f386.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},rainbow:{keywords:["nature","happy","unicorn_face","photo","sky","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌈" src="1f308.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},houses:{keywords:["buildings","photo"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏘" src="1f3d8.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},european_castle:{keywords:["building","royalty","history"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏰" src="1f3f0.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},japanese_castle:{keywords:["photo","building"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏯" src="1f3ef.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},stadium:{keywords:["photo","place","sports","concert","venue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏟" src="1f3df.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},statue_of_liberty:{keywords:["american","newyork"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗽" src="1f5fd.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},house:{keywords:["building","home"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏠" src="1f3e0.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},house_with_garden:{keywords:["home","plant","nature"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏡" src="1f3e1.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},derelict_house:{keywords:["abandon","evict","broken","building"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏚" src="1f3da.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},office:{keywords:["building","bureau","work"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏢" src="1f3e2.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},department_store:{keywords:["building","shopping","mall"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏬" src="1f3ec.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},post_office:{keywords:["building","envelope","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏣" src="1f3e3.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},european_post_office:{keywords:["building","email"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏤" src="1f3e4.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},hospital:{keywords:["building","health","surgery","doctor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏥" src="1f3e5.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},bank:{keywords:["building","money","sales","cash","business","enterprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏦" src="1f3e6.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},hotel:{keywords:["building","accomodation","checkin"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏨" src="1f3e8.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},convenience_store:{keywords:["building","shopping","groceries"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏪" src="1f3ea.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},school:{keywords:["building","student","education","learn","teach"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏫" src="1f3eb.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},love_hotel:{keywords:["like","affection","dating"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏩" src="1f3e9.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},wedding:{keywords:["love","like","affection","couple","marriage","bride","groom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💒" src="1f492.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},classical_building:{keywords:["art","culture","history"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏛" src="1f3db.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},church:{keywords:["building","religion","christ"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛪" src="26ea.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},mosque:{keywords:["islam","worship","minaret"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕌" src="1f54c.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},synagogue:{keywords:["judaism","worship","temple","jewish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕍" src="1f54d.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},kaaba:{keywords:["mecca","mosque","islam"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕋" src="1f54b.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},shinto_shrine:{keywords:["temple","japan","kyoto"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛩" src="26e9.png"/>',fitzpatrick_scale:false,category:"travel_and_places"},watch:{keywords:["time","accessories"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⌚" src="231a.png"/>',fitzpatrick_scale:false,category:"objects"},iphone:{keywords:["technology","apple","gadgets","dial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📱" src="1f4f1.png"/>',fitzpatrick_scale:false,category:"objects"},calling:{keywords:["iphone","incoming"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📲" src="1f4f2.png"/>',fitzpatrick_scale:false,category:"objects"},computer:{keywords:["technology","laptop","screen","display","monitor"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💻" src="1f4bb.png"/>',fitzpatrick_scale:false,category:"objects"},keyboard:{keywords:["technology","computer","type","input","text"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⌨" src="2328.png"/>',fitzpatrick_scale:false,category:"objects"},desktop_computer:{keywords:["technology","computing","screen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖥" src="1f5a5.png"/>',fitzpatrick_scale:false,category:"objects"},printer:{keywords:["paper","ink"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖨" src="1f5a8.png"/>',fitzpatrick_scale:false,category:"objects"},computer_mouse:{keywords:["click"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖱" src="1f5b1.png"/>',fitzpatrick_scale:false,category:"objects"},trackball:{keywords:["technology","trackpad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖲" src="1f5b2.png"/>',fitzpatrick_scale:false,category:"objects"},joystick:{keywords:["game","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕹" src="1f579.png"/>',fitzpatrick_scale:false,category:"objects"},clamp:{keywords:["tool"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗜" src="1f5dc.png"/>',fitzpatrick_scale:false,category:"objects"},minidisc:{keywords:["technology","record","data","disk","90s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💽" src="1f4bd.png"/>',fitzpatrick_scale:false,category:"objects"},floppy_disk:{keywords:["oldschool","technology","save","90s","80s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💾" src="1f4be.png"/>',fitzpatrick_scale:false,category:"objects"},cd:{keywords:["technology","dvd","disk","disc","90s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💿" src="1f4bf.png"/>',fitzpatrick_scale:false,category:"objects"},dvd:{keywords:["cd","disk","disc"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📀" src="1f4c0.png"/>',fitzpatrick_scale:false,category:"objects"},vhs:{keywords:["record","video","oldschool","90s","80s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📼" src="1f4fc.png"/>',fitzpatrick_scale:false,category:"objects"},camera:{keywords:["gadgets","photography"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📷" src="1f4f7.png"/>',fitzpatrick_scale:false,category:"objects"},camera_flash:{keywords:["photography","gadgets"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📸" src="1f4f8.png"/>',fitzpatrick_scale:false,category:"objects"},video_camera:{keywords:["film","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📹" src="1f4f9.png"/>',fitzpatrick_scale:false,category:"objects"},movie_camera:{keywords:["film","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎥" src="1f3a5.png"/>',fitzpatrick_scale:false,category:"objects"},film_projector:{keywords:["video","tape","record","movie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📽" src="1f4fd.png"/>',fitzpatrick_scale:false,category:"objects"},film_strip:{keywords:["movie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎞" src="1f39e.png"/>',fitzpatrick_scale:false,category:"objects"},telephone_receiver:{keywords:["technology","communication","dial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📞" src="1f4de.png"/>',fitzpatrick_scale:false,category:"objects"},phone:{keywords:["technology","communication","dial","telephone"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☎️" src="260e.png"/>',fitzpatrick_scale:false,category:"objects"},pager:{keywords:["bbcall","oldschool","90s"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📟" src="1f4df.png"/>',fitzpatrick_scale:false,category:"objects"},fax:{keywords:["communication","technology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📠" src="1f4e0.png"/>',fitzpatrick_scale:false,category:"objects"},tv:{keywords:["technology","program","oldschool","show","television"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📺" src="1f4fa.png"/>',fitzpatrick_scale:false,category:"objects"},radio:{keywords:["communication","music","podcast","program"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📻" src="1f4fb.png"/>',fitzpatrick_scale:false,category:"objects"},studio_microphone:{keywords:["sing","recording","artist","talkshow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎙" src="1f399.png"/>',fitzpatrick_scale:false,category:"objects"},level_slider:{keywords:["scale"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎚" src="1f39a.png"/>',fitzpatrick_scale:false,category:"objects"},control_knobs:{keywords:["dial"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎛" src="1f39b.png"/>',fitzpatrick_scale:false,category:"objects"},compass:{keywords:["magnetic","navigation","orienteering"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧭" src="1f9ed.png"/>',fitzpatrick_scale:false,category:"objects"},stopwatch:{keywords:["time","deadline"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏱" src="23f1.png"/>',fitzpatrick_scale:false,category:"objects"},timer_clock:{keywords:["alarm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏲" src="23f2.png"/>',fitzpatrick_scale:false,category:"objects"},alarm_clock:{keywords:["time","wake"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏰" src="23f0.png"/>',fitzpatrick_scale:false,category:"objects"},mantelpiece_clock:{keywords:["time"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕰" src="1f570.png"/>',fitzpatrick_scale:false,category:"objects"},hourglass_flowing_sand:{keywords:["oldschool","time","countdown"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏳" src="23f3.png"/>',fitzpatrick_scale:false,category:"objects"},hourglass:{keywords:["time","clock","oldschool","limit","exam","quiz","test"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⌛" src="231b.png"/>',fitzpatrick_scale:false,category:"objects"},satellite:{keywords:["communication","future","radio","space"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📡" src="1f4e1.png"/>',fitzpatrick_scale:false,category:"objects"},battery:{keywords:["power","energy","sustain"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔋" src="1f50b.png"/>',fitzpatrick_scale:false,category:"objects"},electric_plug:{keywords:["charger","power"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔌" src="1f50c.png"/>',fitzpatrick_scale:false,category:"objects"},bulb:{keywords:["light","electricity","idea"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💡" src="1f4a1.png"/>',fitzpatrick_scale:false,category:"objects"},flashlight:{keywords:["dark","camping","sight","night"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔦" src="1f526.png"/>',fitzpatrick_scale:false,category:"objects"},candle:{keywords:["fire","wax"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕯" src="1f56f.png"/>',fitzpatrick_scale:false,category:"objects"},fire_extinguisher:{keywords:["quench"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧯" src="1f9ef.png"/>',fitzpatrick_scale:false,category:"objects"},wastebasket:{keywords:["bin","trash","rubbish","garbage","toss"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗑" src="1f5d1.png"/>',fitzpatrick_scale:false,category:"objects"},oil_drum:{keywords:["barrell"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛢" src="1f6e2.png"/>',fitzpatrick_scale:false,category:"objects"},money_with_wings:{keywords:["dollar","bills","payment","sale"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💸" src="1f4b8.png"/>',fitzpatrick_scale:false,category:"objects"},dollar:{keywords:["money","sales","bill","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💵" src="1f4b5.png"/>',fitzpatrick_scale:false,category:"objects"},yen:{keywords:["money","sales","japanese","dollar","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💴" src="1f4b4.png"/>',fitzpatrick_scale:false,category:"objects"},euro:{keywords:["money","sales","dollar","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💶" src="1f4b6.png"/>',fitzpatrick_scale:false,category:"objects"},pound:{keywords:["british","sterling","money","sales","bills","uk","england","currency"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💷" src="1f4b7.png"/>',fitzpatrick_scale:false,category:"objects"},moneybag:{keywords:["dollar","payment","coins","sale"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💰" src="1f4b0.png"/>',fitzpatrick_scale:false,category:"objects"},credit_card:{keywords:["money","sales","dollar","bill","payment","shopping"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💳" src="1f4b3.png"/>',fitzpatrick_scale:false,category:"objects"},gem:{keywords:["blue","ruby","diamond","jewelry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💎" src="1f48e.png"/>',fitzpatrick_scale:false,category:"objects"},balance_scale:{keywords:["law","fairness","weight"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚖" src="2696.png"/>',fitzpatrick_scale:false,category:"objects"},toolbox:{keywords:["tools","diy","fix","maintainer","mechanic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧰" src="1f9f0.png"/>',fitzpatrick_scale:false,category:"objects"},wrench:{keywords:["tools","diy","ikea","fix","maintainer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔧" src="1f527.png"/>',fitzpatrick_scale:false,category:"objects"},hammer:{keywords:["tools","build","create"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔨" src="1f528.png"/>',fitzpatrick_scale:false,category:"objects"},hammer_and_pick:{keywords:["tools","build","create"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚒" src="2692.png"/>',fitzpatrick_scale:false,category:"objects"},hammer_and_wrench:{keywords:["tools","build","create"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛠" src="1f6e0.png"/>',fitzpatrick_scale:false,category:"objects"},pick:{keywords:["tools","dig"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛏" src="26cf.png"/>',fitzpatrick_scale:false,category:"objects"},nut_and_bolt:{keywords:["handy","tools","fix"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔩" src="1f529.png"/>',fitzpatrick_scale:false,category:"objects"},gear:{keywords:["cog"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚙" src="2699.png"/>',fitzpatrick_scale:false,category:"objects"},brick:{keywords:["bricks"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧱" src="1f9f1.png"/>',fitzpatrick_scale:false,category:"objects"},chains:{keywords:["lock","arrest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛓" src="26d3.png"/>',fitzpatrick_scale:false,category:"objects"},magnet:{keywords:["attraction","magnetic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧲" src="1f9f2.png"/>',fitzpatrick_scale:false,category:"objects"},gun:{keywords:["violence","weapon","pistol","revolver"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔫" src="1f52b.png"/>',fitzpatrick_scale:false,category:"objects"},bomb:{keywords:["boom","explode","explosion","terrorism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💣" src="1f4a3.png"/>',fitzpatrick_scale:false,category:"objects"},firecracker:{keywords:["dynamite","boom","explode","explosion","explosive"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧨" src="1f9e8.png"/>',fitzpatrick_scale:false,category:"objects"},hocho:{keywords:["knife","blade","cutlery","kitchen","weapon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔪" src="1f52a.png"/>',fitzpatrick_scale:false,category:"objects"},dagger:{keywords:["weapon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗡" src="1f5e1.png"/>',fitzpatrick_scale:false,category:"objects"},crossed_swords:{keywords:["weapon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚔" src="2694.png"/>',fitzpatrick_scale:false,category:"objects"},shield:{keywords:["protection","security"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛡" src="1f6e1.png"/>',fitzpatrick_scale:false,category:"objects"},smoking:{keywords:["kills","tobacco","cigarette","joint","smoke"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚬" src="1f6ac.png"/>',fitzpatrick_scale:false,category:"objects"},skull_and_crossbones:{keywords:["poison","danger","deadly","scary","death","pirate","evil"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☠" src="2620.png"/>',fitzpatrick_scale:false,category:"objects"},coffin:{keywords:["vampire","dead","die","death","rip","graveyard","cemetery","casket","funeral","box"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚰" src="26b0.png"/>',fitzpatrick_scale:false,category:"objects"},funeral_urn:{keywords:["dead","die","death","rip","ashes"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚱" src="26b1.png"/>',fitzpatrick_scale:false,category:"objects"},amphora:{keywords:["vase","jar"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏺" src="1f3fa.png"/>',fitzpatrick_scale:false,category:"objects"},crystal_ball:{keywords:["disco","party","magic","circus","fortune_teller"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔮" src="1f52e.png"/>',fitzpatrick_scale:false,category:"objects"},prayer_beads:{keywords:["dhikr","religious"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📿" src="1f4ff.png"/>',fitzpatrick_scale:false,category:"objects"},nazar_amulet:{keywords:["bead","charm"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧿" src="1f9ff.png"/>',fitzpatrick_scale:false,category:"objects"},barber:{keywords:["hair","salon","style"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💈" src="1f488.png"/>',fitzpatrick_scale:false,category:"objects"},alembic:{keywords:["distilling","science","experiment","chemistry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚗" src="2697.png"/>',fitzpatrick_scale:false,category:"objects"},telescope:{keywords:["stars","space","zoom","science","astronomy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔭" src="1f52d.png"/>',fitzpatrick_scale:false,category:"objects"},microscope:{keywords:["laboratory","experiment","zoomin","science","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔬" src="1f52c.png"/>',fitzpatrick_scale:false,category:"objects"},hole:{keywords:["embarrassing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕳" src="1f573.png"/>',fitzpatrick_scale:false,category:"objects"},pill:{keywords:["health","medicine","doctor","pharmacy","drug"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💊" src="1f48a.png"/>',fitzpatrick_scale:false,category:"objects"},syringe:{keywords:["health","hospital","drugs","blood","medicine","needle","doctor","nurse"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💉" src="1f489.png"/>',fitzpatrick_scale:false,category:"objects"},dna:{keywords:["biologist","genetics","life"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧬" src="1f9ec.png"/>',fitzpatrick_scale:false,category:"objects"},microbe:{keywords:["amoeba","bacteria","germs"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🦠" src="1f9a0.png"/>',fitzpatrick_scale:false,category:"objects"},petri_dish:{keywords:["bacteria","biology","culture","lab"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧫" src="1f9eb.png"/>',fitzpatrick_scale:false,category:"objects"},test_tube:{keywords:["chemistry","experiment","lab","science"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧪" src="1f9ea.png"/>',fitzpatrick_scale:false,category:"objects"},thermometer:{keywords:["weather","temperature","hot","cold"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌡" src="1f321.png"/>',fitzpatrick_scale:false,category:"objects"},broom:{keywords:["cleaning","sweeping","witch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧹" src="1f9f9.png"/>',fitzpatrick_scale:false,category:"objects"},basket:{keywords:["laundry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧺" src="1f9fa.png"/>',fitzpatrick_scale:false,category:"objects"},toilet_paper:{keywords:["roll"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧻" src="1f9fb.png"/>',fitzpatrick_scale:false,category:"objects"},label:{keywords:["sale","tag"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏷" src="1f3f7.png"/>',fitzpatrick_scale:false,category:"objects"},bookmark:{keywords:["favorite","label","save"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔖" src="1f516.png"/>',fitzpatrick_scale:false,category:"objects"},toilet:{keywords:["restroom","wc","washroom","bathroom","potty"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚽" src="1f6bd.png"/>',fitzpatrick_scale:false,category:"objects"},shower:{keywords:["clean","water","bathroom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚿" src="1f6bf.png"/>',fitzpatrick_scale:false,category:"objects"},bathtub:{keywords:["clean","shower","bathroom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛁" src="1f6c1.png"/>',fitzpatrick_scale:false,category:"objects"},soap:{keywords:["bar","bathing","cleaning","lather"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧼" src="1f9fc.png"/>',fitzpatrick_scale:false,category:"objects"},sponge:{keywords:["absorbing","cleaning","porous"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧽" src="1f9fd.png"/>',fitzpatrick_scale:false,category:"objects"},lotion_bottle:{keywords:["moisturizer","sunscreen"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧴" src="1f9f4.png"/>',fitzpatrick_scale:false,category:"objects"},key:{keywords:["lock","door","password"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔑" src="1f511.png"/>',fitzpatrick_scale:false,category:"objects"},old_key:{keywords:["lock","door","password"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗝" src="1f5dd.png"/>',fitzpatrick_scale:false,category:"objects"},couch_and_lamp:{keywords:["read","chill"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛋" src="1f6cb.png"/>',fitzpatrick_scale:false,category:"objects"},sleeping_bed:{keywords:["bed","rest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛌" src="1f6cc.png"/>',fitzpatrick_scale:true,category:"objects"},bed:{keywords:["sleep","rest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛏" src="1f6cf.png"/>',fitzpatrick_scale:false,category:"objects"},door:{keywords:["house","entry","exit"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚪" src="1f6aa.png"/>',fitzpatrick_scale:false,category:"objects"},bellhop_bell:{keywords:["service"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛎" src="1f6ce.png"/>',fitzpatrick_scale:false,category:"objects"},teddy_bear:{keywords:["plush","stuffed"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧸" src="1f9f8.png"/>',fitzpatrick_scale:false,category:"objects"},framed_picture:{keywords:["photography"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖼" src="1f5bc.png"/>',fitzpatrick_scale:false,category:"objects"},world_map:{keywords:["location","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗺" src="1f5fa.png"/>',fitzpatrick_scale:false,category:"objects"},parasol_on_ground:{keywords:["weather","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛱" src="26f1.png"/>',fitzpatrick_scale:false,category:"objects"},moyai:{keywords:["rock","easter island","moai"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗿" src="1f5ff.png"/>',fitzpatrick_scale:false,category:"objects"},shopping:{keywords:["mall","buy","purchase"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛍" src="1f6cd.png"/>',fitzpatrick_scale:false,category:"objects"},shopping_cart:{keywords:["trolley"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛒" src="1f6d2.png"/>',fitzpatrick_scale:false,category:"objects"},balloon:{keywords:["party","celebration","birthday","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎈" src="1f388.png"/>',fitzpatrick_scale:false,category:"objects"},flags:{keywords:["fish","japanese","koinobori","carp","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎏" src="1f38f.png"/>',fitzpatrick_scale:false,category:"objects"},ribbon:{keywords:["decoration","pink","girl","bowtie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎀" src="1f380.png"/>',fitzpatrick_scale:false,category:"objects"},gift:{keywords:["present","birthday","christmas","xmas"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎁" src="1f381.png"/>',fitzpatrick_scale:false,category:"objects"},confetti_ball:{keywords:["festival","party","birthday","circus"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎊" src="1f38a.png"/>',fitzpatrick_scale:false,category:"objects"},tada:{keywords:["party","congratulations","birthday","magic","circus","celebration"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎉" src="1f389.png"/>',fitzpatrick_scale:false,category:"objects"},dolls:{keywords:["japanese","toy","kimono"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎎" src="1f38e.png"/>',fitzpatrick_scale:false,category:"objects"},wind_chime:{keywords:["nature","ding","spring","bell"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎐" src="1f390.png"/>',fitzpatrick_scale:false,category:"objects"},crossed_flags:{keywords:["japanese","nation","country","border"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎌" src="1f38c.png"/>',fitzpatrick_scale:false,category:"objects"},izakaya_lantern:{keywords:["light","paper","halloween","spooky"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏮" src="1f3ee.png"/>',fitzpatrick_scale:false,category:"objects"},red_envelope:{keywords:["gift"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧧" src="1f9e7.png"/>',fitzpatrick_scale:false,category:"objects"},email:{keywords:["letter","postal","inbox","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✉️" src="2709.png"/>',fitzpatrick_scale:false,category:"objects"},envelope_with_arrow:{keywords:["email","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📩" src="1f4e9.png"/>',fitzpatrick_scale:false,category:"objects"},incoming_envelope:{keywords:["email","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📨" src="1f4e8.png"/>',fitzpatrick_scale:false,category:"objects"},"e-mail":{keywords:["communication","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📧" src="1f4e7.png"/>',fitzpatrick_scale:false,category:"objects"},love_letter:{keywords:["email","like","affection","envelope","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💌" src="1f48c.png"/>',fitzpatrick_scale:false,category:"objects"},postbox:{keywords:["email","letter","envelope"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📮" src="1f4ee.png"/>',fitzpatrick_scale:false,category:"objects"},mailbox_closed:{keywords:["email","communication","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📪" src="1f4ea.png"/>',fitzpatrick_scale:false,category:"objects"},mailbox:{keywords:["email","inbox","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📫" src="1f4eb.png"/>',fitzpatrick_scale:false,category:"objects"},mailbox_with_mail:{keywords:["email","inbox","communication"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📬" src="1f4ec.png"/>',fitzpatrick_scale:false,category:"objects"},mailbox_with_no_mail:{keywords:["email","inbox"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📭" src="1f4ed.png"/>',fitzpatrick_scale:false,category:"objects"},package:{keywords:["mail","gift","cardboard","box","moving"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📦" src="1f4e6.png"/>',fitzpatrick_scale:false,category:"objects"},postal_horn:{keywords:["instrument","music"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📯" src="1f4ef.png"/>',fitzpatrick_scale:false,category:"objects"},inbox_tray:{keywords:["email","documents"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📥" src="1f4e5.png"/>',fitzpatrick_scale:false,category:"objects"},outbox_tray:{keywords:["inbox","email"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📤" src="1f4e4.png"/>',fitzpatrick_scale:false,category:"objects"},scroll:{keywords:["documents","ancient","history","paper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📜" src="1f4dc.png"/>',fitzpatrick_scale:false,category:"objects"},page_with_curl:{keywords:["documents","office","paper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📃" src="1f4c3.png"/>',fitzpatrick_scale:false,category:"objects"},bookmark_tabs:{keywords:["favorite","save","order","tidy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📑" src="1f4d1.png"/>',fitzpatrick_scale:false,category:"objects"},receipt:{keywords:["accounting","expenses"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧾" src="1f9fe.png"/>',fitzpatrick_scale:false,category:"objects"},bar_chart:{keywords:["graph","presentation","stats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📊" src="1f4ca.png"/>',fitzpatrick_scale:false,category:"objects"},chart_with_upwards_trend:{keywords:["graph","presentation","stats","recovery","business","economics","money","sales","good","success"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📈" src="1f4c8.png"/>',fitzpatrick_scale:false,category:"objects"},chart_with_downwards_trend:{keywords:["graph","presentation","stats","recession","business","economics","money","sales","bad","failure"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📉" src="1f4c9.png"/>',fitzpatrick_scale:false,category:"objects"},page_facing_up:{keywords:["documents","office","paper","information"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📄" src="1f4c4.png"/>',fitzpatrick_scale:false,category:"objects"},date:{keywords:["calendar","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📅" src="1f4c5.png"/>',fitzpatrick_scale:false,category:"objects"},calendar:{keywords:["schedule","date","planning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📆" src="1f4c6.png"/>',fitzpatrick_scale:false,category:"objects"},spiral_calendar:{keywords:["date","schedule","planning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗓" src="1f5d3.png"/>',fitzpatrick_scale:false,category:"objects"},card_index:{keywords:["business","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📇" src="1f4c7.png"/>',fitzpatrick_scale:false,category:"objects"},card_file_box:{keywords:["business","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗃" src="1f5c3.png"/>',fitzpatrick_scale:false,category:"objects"},ballot_box:{keywords:["election","vote"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗳" src="1f5f3.png"/>',fitzpatrick_scale:false,category:"objects"},file_cabinet:{keywords:["filing","organizing"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗄" src="1f5c4.png"/>',fitzpatrick_scale:false,category:"objects"},clipboard:{keywords:["stationery","documents"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📋" src="1f4cb.png"/>',fitzpatrick_scale:false,category:"objects"},spiral_notepad:{keywords:["memo","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗒" src="1f5d2.png"/>',fitzpatrick_scale:false,category:"objects"},file_folder:{keywords:["documents","business","office"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📁" src="1f4c1.png"/>',fitzpatrick_scale:false,category:"objects"},open_file_folder:{keywords:["documents","load"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📂" src="1f4c2.png"/>',fitzpatrick_scale:false,category:"objects"},card_index_dividers:{keywords:["organizing","business","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗂" src="1f5c2.png"/>',fitzpatrick_scale:false,category:"objects"},newspaper_roll:{keywords:["press","headline"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗞" src="1f5de.png"/>',fitzpatrick_scale:false,category:"objects"},newspaper:{keywords:["press","headline"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📰" src="1f4f0.png"/>',fitzpatrick_scale:false,category:"objects"},notebook:{keywords:["stationery","record","notes","paper","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📓" src="1f4d3.png"/>',fitzpatrick_scale:false,category:"objects"},closed_book:{keywords:["read","library","knowledge","textbook","learn"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📕" src="1f4d5.png"/>',fitzpatrick_scale:false,category:"objects"},green_book:{keywords:["read","library","knowledge","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📗" src="1f4d7.png"/>',fitzpatrick_scale:false,category:"objects"},blue_book:{keywords:["read","library","knowledge","learn","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📘" src="1f4d8.png"/>',fitzpatrick_scale:false,category:"objects"},orange_book:{keywords:["read","library","knowledge","textbook","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📙" src="1f4d9.png"/>',fitzpatrick_scale:false,category:"objects"},notebook_with_decorative_cover:{keywords:["classroom","notes","record","paper","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📔" src="1f4d4.png"/>',fitzpatrick_scale:false,category:"objects"},ledger:{keywords:["notes","paper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📒" src="1f4d2.png"/>',fitzpatrick_scale:false,category:"objects"},books:{keywords:["literature","library","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📚" src="1f4da.png"/>',fitzpatrick_scale:false,category:"objects"},open_book:{keywords:["book","read","library","knowledge","literature","learn","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📖" src="1f4d6.png"/>',fitzpatrick_scale:false,category:"objects"},safety_pin:{keywords:["diaper"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧷" src="1f9f7.png"/>',fitzpatrick_scale:false,category:"objects"},link:{keywords:["rings","url"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔗" src="1f517.png"/>',fitzpatrick_scale:false,category:"objects"},paperclip:{keywords:["documents","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📎" src="1f4ce.png"/>',fitzpatrick_scale:false,category:"objects"},paperclips:{keywords:["documents","stationery"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖇" src="1f587.png"/>',fitzpatrick_scale:false,category:"objects"},scissors:{keywords:["stationery","cut"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✂️" src="2702.png"/>',fitzpatrick_scale:false,category:"objects"},triangular_ruler:{keywords:["stationery","math","architect","sketch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📐" src="1f4d0.png"/>',fitzpatrick_scale:false,category:"objects"},straight_ruler:{keywords:["stationery","calculate","length","math","school","drawing","architect","sketch"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📏" src="1f4cf.png"/>',fitzpatrick_scale:false,category:"objects"},abacus:{keywords:["calculation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧮" src="1f9ee.png"/>',fitzpatrick_scale:false,category:"objects"},pushpin:{keywords:["stationery","mark","here"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📌" src="1f4cc.png"/>',fitzpatrick_scale:false,category:"objects"},round_pushpin:{keywords:["stationery","location","map","here"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📍" src="1f4cd.png"/>',fitzpatrick_scale:false,category:"objects"},triangular_flag_on_post:{keywords:["mark","milestone","place"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚩" src="1f6a9.png"/>',fitzpatrick_scale:false,category:"objects"},white_flag:{keywords:["losing","loser","lost","surrender","give up","fail"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏳" src="1f3f3.png"/>',fitzpatrick_scale:false,category:"objects"},black_flag:{keywords:["pirate"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏴" src="1f3f4.png"/>',fitzpatrick_scale:false,category:"objects"},rainbow_flag:{keywords:["flag","rainbow","pride","gay","lgbt","glbt","queer","homosexual","lesbian","bisexual","transgender"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏳️‍🌈" src="1f3f3-fe0f-200d-1f308.png"/>',fitzpatrick_scale:false,category:"objects"},closed_lock_with_key:{keywords:["security","privacy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔐" src="1f510.png"/>',fitzpatrick_scale:false,category:"objects"},lock:{keywords:["security","password","padlock"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔒" src="1f512.png"/>',fitzpatrick_scale:false,category:"objects"},unlock:{keywords:["privacy","security"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔓" src="1f513.png"/>',fitzpatrick_scale:false,category:"objects"},lock_with_ink_pen:{keywords:["security","secret"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔏" src="1f50f.png"/>',fitzpatrick_scale:false,category:"objects"},pen:{keywords:["stationery","writing","write"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖊" src="1f58a.png"/>',fitzpatrick_scale:false,category:"objects"},fountain_pen:{keywords:["stationery","writing","write"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖋" src="1f58b.png"/>',fitzpatrick_scale:false,category:"objects"},black_nib:{keywords:["pen","stationery","writing","write"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✒️" src="2712.png"/>',fitzpatrick_scale:false,category:"objects"},memo:{keywords:["write","documents","stationery","pencil","paper","writing","legal","exam","quiz","test","study","compose"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📝" src="1f4dd.png"/>',fitzpatrick_scale:false,category:"objects"},pencil2:{keywords:["stationery","write","paper","writing","school","study"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✏️" src="270f.png"/>',fitzpatrick_scale:false,category:"objects"},crayon:{keywords:["drawing","creativity"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖍" src="1f58d.png"/>',fitzpatrick_scale:false,category:"objects"},paintbrush:{keywords:["drawing","creativity","art"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖌" src="1f58c.png"/>',fitzpatrick_scale:false,category:"objects"},mag:{keywords:["search","zoom","find","detective"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔍" src="1f50d.png"/>',fitzpatrick_scale:false,category:"objects"},mag_right:{keywords:["search","zoom","find","detective"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔎" src="1f50e.png"/>',fitzpatrick_scale:false,category:"objects"},heart:{keywords:["love","like","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❤️" src="2764.png"/>',fitzpatrick_scale:false,category:"symbols"},orange_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🧡" src="1f9e1.png"/>',fitzpatrick_scale:false,category:"symbols"},yellow_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💛" src="1f49b.png"/>',fitzpatrick_scale:false,category:"symbols"},green_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💚" src="1f49a.png"/>',fitzpatrick_scale:false,category:"symbols"},blue_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💙" src="1f499.png"/>',fitzpatrick_scale:false,category:"symbols"},purple_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💜" src="1f49c.png"/>',fitzpatrick_scale:false,category:"symbols"},black_heart:{keywords:["evil"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🖤" src="1f5a4.png"/>',fitzpatrick_scale:false,category:"symbols"},broken_heart:{keywords:["sad","sorry","break","heart","heartbreak"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💔" src="1f494.png"/>',fitzpatrick_scale:false,category:"symbols"},heavy_heart_exclamation:{keywords:["decoration","love"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❣" src="2763.png"/>',fitzpatrick_scale:false,category:"symbols"},two_hearts:{keywords:["love","like","affection","valentines","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💕" src="1f495.png"/>',fitzpatrick_scale:false,category:"symbols"},revolving_hearts:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💞" src="1f49e.png"/>',fitzpatrick_scale:false,category:"symbols"},heartbeat:{keywords:["love","like","affection","valentines","pink","heart"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💓" src="1f493.png"/>',fitzpatrick_scale:false,category:"symbols"},heartpulse:{keywords:["like","love","affection","valentines","pink"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💗" src="1f497.png"/>',fitzpatrick_scale:false,category:"symbols"},sparkling_heart:{keywords:["love","like","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💖" src="1f496.png"/>',fitzpatrick_scale:false,category:"symbols"},cupid:{keywords:["love","like","heart","affection","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💘" src="1f498.png"/>',fitzpatrick_scale:false,category:"symbols"},gift_heart:{keywords:["love","valentines"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💝" src="1f49d.png"/>',fitzpatrick_scale:false,category:"symbols"},heart_decoration:{keywords:["purple-square","love","like"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💟" src="1f49f.png"/>',fitzpatrick_scale:false,category:"symbols"},peace_symbol:{keywords:["hippie"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☮" src="262e.png"/>',fitzpatrick_scale:false,category:"symbols"},latin_cross:{keywords:["christianity"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✝" src="271d.png"/>',fitzpatrick_scale:false,category:"symbols"},star_and_crescent:{keywords:["islam"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☪" src="262a.png"/>',fitzpatrick_scale:false,category:"symbols"},om:{keywords:["hinduism","buddhism","sikhism","jainism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕉" src="1f549.png"/>',fitzpatrick_scale:false,category:"symbols"},wheel_of_dharma:{keywords:["hinduism","buddhism","sikhism","jainism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☸" src="2638.png"/>',fitzpatrick_scale:false,category:"symbols"},star_of_david:{keywords:["judaism"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✡" src="2721.png"/>',fitzpatrick_scale:false,category:"symbols"},six_pointed_star:{keywords:["purple-square","religion","jewish","hexagram"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔯" src="1f52f.png"/>',fitzpatrick_scale:false,category:"symbols"},menorah:{keywords:["hanukkah","candles","jewish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕎" src="1f54e.png"/>',fitzpatrick_scale:false,category:"symbols"},yin_yang:{keywords:["balance"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☯" src="262f.png"/>',fitzpatrick_scale:false,category:"symbols"},orthodox_cross:{keywords:["suppedaneum","religion"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☦" src="2626.png"/>',fitzpatrick_scale:false,category:"symbols"},place_of_worship:{keywords:["religion","church","temple","prayer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛐" src="1f6d0.png"/>',fitzpatrick_scale:false,category:"symbols"},ophiuchus:{keywords:["sign","purple-square","constellation","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛎" src="26ce.png"/>',fitzpatrick_scale:false,category:"symbols"},aries:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♈" src="2648.png"/>',fitzpatrick_scale:false,category:"symbols"},taurus:{keywords:["purple-square","sign","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♉" src="2649.png"/>',fitzpatrick_scale:false,category:"symbols"},gemini:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♊" src="264a.png"/>',fitzpatrick_scale:false,category:"symbols"},cancer:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♋" src="264b.png"/>',fitzpatrick_scale:false,category:"symbols"},leo:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♌" src="264c.png"/>',fitzpatrick_scale:false,category:"symbols"},virgo:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♍" src="264d.png"/>',fitzpatrick_scale:false,category:"symbols"},libra:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♎" src="264e.png"/>',fitzpatrick_scale:false,category:"symbols"},scorpius:{keywords:["sign","zodiac","purple-square","astrology","scorpio"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♏" src="264f.png"/>',fitzpatrick_scale:false,category:"symbols"},sagittarius:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♐" src="2650.png"/>',fitzpatrick_scale:false,category:"symbols"},capricorn:{keywords:["sign","zodiac","purple-square","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♑" src="2651.png"/>',fitzpatrick_scale:false,category:"symbols"},aquarius:{keywords:["sign","purple-square","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♒" src="2652.png"/>',fitzpatrick_scale:false,category:"symbols"},pisces:{keywords:["purple-square","sign","zodiac","astrology"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♓" src="2653.png"/>',fitzpatrick_scale:false,category:"symbols"},id:{keywords:["purple-square","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆔" src="1f194.png"/>',fitzpatrick_scale:false,category:"symbols"},atom_symbol:{keywords:["science","physics","chemistry"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚛" src="269b.png"/>',fitzpatrick_scale:false,category:"symbols"},u7a7a:{keywords:["kanji","japanese","chinese","empty","sky","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈳" src="1f233.png"/>',fitzpatrick_scale:false,category:"symbols"},u5272:{keywords:["cut","divide","chinese","kanji","pink-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈹" src="1f239.png"/>',fitzpatrick_scale:false,category:"symbols"},radioactive:{keywords:["nuclear","danger"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☢" src="2622.png"/>',fitzpatrick_scale:false,category:"symbols"},biohazard:{keywords:["danger"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☣" src="2623.png"/>',fitzpatrick_scale:false,category:"symbols"},mobile_phone_off:{keywords:["mute","orange-square","silence","quiet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📴" src="1f4f4.png"/>',fitzpatrick_scale:false,category:"symbols"},vibration_mode:{keywords:["orange-square","phone"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📳" src="1f4f3.png"/>',fitzpatrick_scale:false,category:"symbols"},u6709:{keywords:["orange-square","chinese","have","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈶" src="1f236.png"/>',fitzpatrick_scale:false,category:"symbols"},u7121:{keywords:["nothing","chinese","kanji","japanese","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈚" src="1f21a.png"/>',fitzpatrick_scale:false,category:"symbols"},u7533:{keywords:["chinese","japanese","kanji","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈸" src="1f238.png"/>',fitzpatrick_scale:false,category:"symbols"},u55b6:{keywords:["japanese","opening hours","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈺" src="1f23a.png"/>',fitzpatrick_scale:false,category:"symbols"},u6708:{keywords:["chinese","month","moon","japanese","orange-square","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈷️" src="1f237.png"/>',fitzpatrick_scale:false,category:"symbols"},eight_pointed_black_star:{keywords:["orange-square","shape","polygon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✴️" src="2734.png"/>',fitzpatrick_scale:false,category:"symbols"},vs:{keywords:["words","orange-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆚" src="1f19a.png"/>',fitzpatrick_scale:false,category:"symbols"},accept:{keywords:["ok","good","chinese","kanji","agree","yes","orange-circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🉑" src="1f251.png"/>',fitzpatrick_scale:false,category:"symbols"},white_flower:{keywords:["japanese","spring"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💮" src="1f4ae.png"/>',fitzpatrick_scale:false,category:"symbols"},ideograph_advantage:{keywords:["chinese","kanji","obtain","get","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🉐" src="1f250.png"/>',fitzpatrick_scale:false,category:"symbols"},secret:{keywords:["privacy","chinese","sshh","kanji","red-circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="㊙️" src="3299.png"/>',fitzpatrick_scale:false,category:"symbols"},congratulations:{keywords:["chinese","kanji","japanese","red-circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="㊗️" src="3297.png"/>',fitzpatrick_scale:false,category:"symbols"},u5408:{keywords:["japanese","chinese","join","kanji","red-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈴" src="1f234.png"/>',fitzpatrick_scale:false,category:"symbols"},u6e80:{keywords:["full","chinese","japanese","red-square","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈵" src="1f235.png"/>',fitzpatrick_scale:false,category:"symbols"},u7981:{keywords:["kanji","japanese","chinese","forbidden","limit","restricted","red-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈲" src="1f232.png"/>',fitzpatrick_scale:false,category:"symbols"},a:{keywords:["red-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🅰️" src="1f170.png"/>',fitzpatrick_scale:false,category:"symbols"},b:{keywords:["red-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🅱️" src="1f171.png"/>',fitzpatrick_scale:false,category:"symbols"},ab:{keywords:["red-square","alphabet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆎" src="1f18e.png"/>',fitzpatrick_scale:false,category:"symbols"},cl:{keywords:["alphabet","words","red-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆑" src="1f191.png"/>',fitzpatrick_scale:false,category:"symbols"},o2:{keywords:["alphabet","red-square","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🅾️" src="1f17e.png"/>',fitzpatrick_scale:false,category:"symbols"},sos:{keywords:["help","red-square","words","emergency","911"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆘" src="1f198.png"/>',fitzpatrick_scale:false,category:"symbols"},no_entry:{keywords:["limit","security","privacy","bad","denied","stop","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⛔" src="26d4.png"/>',fitzpatrick_scale:false,category:"symbols"},name_badge:{keywords:["fire","forbid"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📛" src="1f4db.png"/>',fitzpatrick_scale:false,category:"symbols"},no_entry_sign:{keywords:["forbid","stop","limit","denied","disallow","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚫" src="1f6ab.png"/>',fitzpatrick_scale:false,category:"symbols"},x:{keywords:["no","delete","remove","cancel","red"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❌" src="274c.png"/>',fitzpatrick_scale:false,category:"symbols"},o:{keywords:["circle","round"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⭕" src="2b55.png"/>',fitzpatrick_scale:false,category:"symbols"},stop_sign:{keywords:["stop"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛑" src="1f6d1.png"/>',fitzpatrick_scale:false,category:"symbols"},anger:{keywords:["angry","mad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💢" src="1f4a2.png"/>',fitzpatrick_scale:false,category:"symbols"},hotsprings:{keywords:["bath","warm","relax"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♨️" src="2668.png"/>',fitzpatrick_scale:false,category:"symbols"},no_pedestrians:{keywords:["rules","crossing","walking","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚷" src="1f6b7.png"/>',fitzpatrick_scale:false,category:"symbols"},do_not_litter:{keywords:["trash","bin","garbage","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚯" src="1f6af.png"/>',fitzpatrick_scale:false,category:"symbols"},no_bicycles:{keywords:["cyclist","prohibited","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚳" src="1f6b3.png"/>',fitzpatrick_scale:false,category:"symbols"},"non-potable_water":{keywords:["drink","faucet","tap","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚱" src="1f6b1.png"/>',fitzpatrick_scale:false,category:"symbols"},underage:{keywords:["18","drink","pub","night","minor","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔞" src="1f51e.png"/>',fitzpatrick_scale:false,category:"symbols"},no_mobile_phones:{keywords:["iphone","mute","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📵" src="1f4f5.png"/>',fitzpatrick_scale:false,category:"symbols"},exclamation:{keywords:["heavy_exclamation_mark","danger","surprise","punctuation","wow","warning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❗" src="2757.png"/>',fitzpatrick_scale:false,category:"symbols"},grey_exclamation:{keywords:["surprise","punctuation","gray","wow","warning"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❕" src="2755.png"/>',fitzpatrick_scale:false,category:"symbols"},question:{keywords:["doubt","confused"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❓" src="2753.png"/>',fitzpatrick_scale:false,category:"symbols"},grey_question:{keywords:["doubts","gray","huh","confused"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❔" src="2754.png"/>',fitzpatrick_scale:false,category:"symbols"},bangbang:{keywords:["exclamation","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="‼️" src="203c.png"/>',fitzpatrick_scale:false,category:"symbols"},interrobang:{keywords:["wat","punctuation","surprise"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⁉️" src="2049.png"/>',fitzpatrick_scale:false,category:"symbols"},low_brightness:{keywords:["sun","afternoon","warm","summer"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔅" src="1f505.png"/>',fitzpatrick_scale:false,category:"symbols"},high_brightness:{keywords:["sun","light"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔆" src="1f506.png"/>',fitzpatrick_scale:false,category:"symbols"},trident:{keywords:["weapon","spear"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔱" src="1f531.png"/>',fitzpatrick_scale:false,category:"symbols"},fleur_de_lis:{keywords:["decorative","scout"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚜" src="269c.png"/>',fitzpatrick_scale:false,category:"symbols"},part_alternation_mark:{keywords:["graph","presentation","stats","business","economics","bad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="〽️" src="303d.png"/>',fitzpatrick_scale:false,category:"symbols"},warning:{keywords:["exclamation","wip","alert","error","problem","issue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚠️" src="26a0.png"/>',fitzpatrick_scale:false,category:"symbols"},children_crossing:{keywords:["school","warning","danger","sign","driving","yellow-diamond"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚸" src="1f6b8.png"/>',fitzpatrick_scale:false,category:"symbols"},beginner:{keywords:["badge","shield"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔰" src="1f530.png"/>',fitzpatrick_scale:false,category:"symbols"},recycle:{keywords:["arrow","environment","garbage","trash"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♻️" src="267b.png"/>',fitzpatrick_scale:false,category:"symbols"},u6307:{keywords:["chinese","point","green-square","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈯" src="1f22f.png"/>',fitzpatrick_scale:false,category:"symbols"},chart:{keywords:["green-square","graph","presentation","stats"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💹" src="1f4b9.png"/>',fitzpatrick_scale:false,category:"symbols"},sparkle:{keywords:["stars","green-square","awesome","good","fireworks"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❇️" src="2747.png"/>',fitzpatrick_scale:false,category:"symbols"},eight_spoked_asterisk:{keywords:["star","sparkle","green-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✳️" src="2733.png"/>',fitzpatrick_scale:false,category:"symbols"},negative_squared_cross_mark:{keywords:["x","green-square","no","deny"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="❎" src="274e.png"/>',fitzpatrick_scale:false,category:"symbols"},white_check_mark:{keywords:["green-square","ok","agree","vote","election","answer","tick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✅" src="2705.png"/>',fitzpatrick_scale:false,category:"symbols"},diamond_shape_with_a_dot_inside:{keywords:["jewel","blue","gem","crystal","fancy"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💠" src="1f4a0.png"/>',fitzpatrick_scale:false,category:"symbols"},cyclone:{keywords:["weather","swirl","blue","cloud","vortex","spiral","whirlpool","spin","tornado","hurricane","typhoon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌀" src="1f300.png"/>',fitzpatrick_scale:false,category:"symbols"},loop:{keywords:["tape","cassette"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="➿" src="27bf.png"/>',fitzpatrick_scale:false,category:"symbols"},globe_with_meridians:{keywords:["earth","international","world","internet","interweb","i18n"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🌐" src="1f310.png"/>',fitzpatrick_scale:false,category:"symbols"},m:{keywords:["alphabet","blue-circle","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="Ⓜ️" src="24c2.png"/>',fitzpatrick_scale:false,category:"symbols"},atm:{keywords:["money","sales","cash","blue-square","payment","bank"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏧" src="1f3e7.png"/>',fitzpatrick_scale:false,category:"symbols"},sa:{keywords:["japanese","blue-square","katakana"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈂️" src="1f202.png"/>',fitzpatrick_scale:false,category:"symbols"},passport_control:{keywords:["custom","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛂" src="1f6c2.png"/>',fitzpatrick_scale:false,category:"symbols"},customs:{keywords:["passport","border","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛃" src="1f6c3.png"/>',fitzpatrick_scale:false,category:"symbols"},baggage_claim:{keywords:["blue-square","airport","transport"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛄" src="1f6c4.png"/>',fitzpatrick_scale:false,category:"symbols"},left_luggage:{keywords:["blue-square","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🛅" src="1f6c5.png"/>',fitzpatrick_scale:false,category:"symbols"},wheelchair:{keywords:["blue-square","disabled","a11y","accessibility"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♿" src="267f.png"/>',fitzpatrick_scale:false,category:"symbols"},no_smoking:{keywords:["cigarette","blue-square","smell","smoke"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚭" src="1f6ad.png"/>',fitzpatrick_scale:false,category:"symbols"},wc:{keywords:["toilet","restroom","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚾" src="1f6be.png"/>',fitzpatrick_scale:false,category:"symbols"},parking:{keywords:["cars","blue-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🅿️" src="1f17f.png"/>',fitzpatrick_scale:false,category:"symbols"},potable_water:{keywords:["blue-square","liquid","restroom","cleaning","faucet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚰" src="1f6b0.png"/>',fitzpatrick_scale:false,category:"symbols"},mens:{keywords:["toilet","restroom","wc","blue-square","gender","male"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚹" src="1f6b9.png"/>',fitzpatrick_scale:false,category:"symbols"},womens:{keywords:["purple-square","woman","female","toilet","loo","restroom","gender"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚺" src="1f6ba.png"/>',fitzpatrick_scale:false,category:"symbols"},baby_symbol:{keywords:["orange-square","child"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚼" src="1f6bc.png"/>',fitzpatrick_scale:false,category:"symbols"},restroom:{keywords:["blue-square","toilet","refresh","wc","gender"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚻" src="1f6bb.png"/>',fitzpatrick_scale:false,category:"symbols"},put_litter_in_its_place:{keywords:["blue-square","sign","human","info"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🚮" src="1f6ae.png"/>',fitzpatrick_scale:false,category:"symbols"},cinema:{keywords:["blue-square","record","film","movie","curtain","stage","theater"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎦" src="1f3a6.png"/>',fitzpatrick_scale:false,category:"symbols"},signal_strength:{keywords:["blue-square","reception","phone","internet","connection","wifi","bluetooth","bars"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📶" src="1f4f6.png"/>',fitzpatrick_scale:false,category:"symbols"},koko:{keywords:["blue-square","here","katakana","japanese","destination"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🈁" src="1f201.png"/>',fitzpatrick_scale:false,category:"symbols"},ng:{keywords:["blue-square","words","shape","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆖" src="1f196.png"/>',fitzpatrick_scale:false,category:"symbols"},ok:{keywords:["good","agree","yes","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆗" src="1f197.png"/>',fitzpatrick_scale:false,category:"symbols"},up:{keywords:["blue-square","above","high"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆙" src="1f199.png"/>',fitzpatrick_scale:false,category:"symbols"},cool:{keywords:["words","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆒" src="1f192.png"/>',fitzpatrick_scale:false,category:"symbols"},new:{keywords:["blue-square","words","start"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆕" src="1f195.png"/>',fitzpatrick_scale:false,category:"symbols"},free:{keywords:["blue-square","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🆓" src="1f193.png"/>',fitzpatrick_scale:false,category:"symbols"},zero:{keywords:["0","numbers","blue-square","null"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="0️⃣" src="30-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},one:{keywords:["blue-square","numbers","1"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="1️⃣" src="31-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},two:{keywords:["numbers","2","prime","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="2️⃣" src="32-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},three:{keywords:["3","numbers","prime","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="3️⃣" src="33-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},four:{keywords:["4","numbers","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="4️⃣" src="34-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},five:{keywords:["5","numbers","blue-square","prime"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="5️⃣" src="35-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},six:{keywords:["6","numbers","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="6️⃣" src="36-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},seven:{keywords:["7","numbers","blue-square","prime"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="7️⃣" src="37-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},eight:{keywords:["8","blue-square","numbers"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="8️⃣" src="38-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},nine:{keywords:["blue-square","numbers","9"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="9️⃣" src="39-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},keycap_ten:{keywords:["numbers","10","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔟" src="1f51f.png"/>',fitzpatrick_scale:false,category:"symbols"},asterisk:{keywords:["star","keycap"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="*⃣" src="2a-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},eject_button:{keywords:["blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏏️" src="23cf.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_forward:{keywords:["blue-square","right","direction","play"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="▶️" src="25b6.png"/>',fitzpatrick_scale:false,category:"symbols"},pause_button:{keywords:["pause","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏸" src="23f8.png"/>',fitzpatrick_scale:false,category:"symbols"},next_track_button:{keywords:["forward","next","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏭" src="23ed.png"/>',fitzpatrick_scale:false,category:"symbols"},stop_button:{keywords:["blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏹" src="23f9.png"/>',fitzpatrick_scale:false,category:"symbols"},record_button:{keywords:["blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏺" src="23fa.png"/>',fitzpatrick_scale:false,category:"symbols"},play_or_pause_button:{keywords:["blue-square","play","pause"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏯" src="23ef.png"/>',fitzpatrick_scale:false,category:"symbols"},previous_track_button:{keywords:["backward"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏮" src="23ee.png"/>',fitzpatrick_scale:false,category:"symbols"},fast_forward:{keywords:["blue-square","play","speed","continue"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏩" src="23e9.png"/>',fitzpatrick_scale:false,category:"symbols"},rewind:{keywords:["play","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏪" src="23ea.png"/>',fitzpatrick_scale:false,category:"symbols"},twisted_rightwards_arrows:{keywords:["blue-square","shuffle","music","random"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔀" src="1f500.png"/>',fitzpatrick_scale:false,category:"symbols"},repeat:{keywords:["loop","record"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔁" src="1f501.png"/>',fitzpatrick_scale:false,category:"symbols"},repeat_one:{keywords:["blue-square","loop"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔂" src="1f502.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_backward:{keywords:["blue-square","left","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="◀️" src="25c0.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_up_small:{keywords:["blue-square","triangle","direction","point","forward","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔼" src="1f53c.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_down_small:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔽" src="1f53d.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_double_up:{keywords:["blue-square","direction","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏫" src="23eb.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_double_down:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⏬" src="23ec.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_right:{keywords:["blue-square","next"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="➡️" src="27a1.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_left:{keywords:["blue-square","previous","back"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⬅️" src="2b05.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_up:{keywords:["blue-square","continue","top","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⬆️" src="2b06.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_down:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⬇️" src="2b07.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_upper_right:{keywords:["blue-square","point","direction","diagonal","northeast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↗️" src="2197.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_lower_right:{keywords:["blue-square","direction","diagonal","southeast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↘️" src="2198.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_lower_left:{keywords:["blue-square","direction","diagonal","southwest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↙️" src="2199.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_upper_left:{keywords:["blue-square","point","direction","diagonal","northwest"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↖️" src="2196.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_up_down:{keywords:["blue-square","direction","way","vertical"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↕️" src="2195.png"/>',fitzpatrick_scale:false,category:"symbols"},left_right_arrow:{keywords:["shape","direction","horizontal","sideways"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↔️" src="2194.png"/>',fitzpatrick_scale:false,category:"symbols"},arrows_counterclockwise:{keywords:["blue-square","sync","cycle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔄" src="1f504.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_right_hook:{keywords:["blue-square","return","rotate","direction"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↪️" src="21aa.png"/>',fitzpatrick_scale:false,category:"symbols"},leftwards_arrow_with_hook:{keywords:["back","return","blue-square","undo","enter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="↩️" src="21a9.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_heading_up:{keywords:["blue-square","direction","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⤴️" src="2934.png"/>',fitzpatrick_scale:false,category:"symbols"},arrow_heading_down:{keywords:["blue-square","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⤵️" src="2935.png"/>',fitzpatrick_scale:false,category:"symbols"},hash:{keywords:["symbol","blue-square","twitter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="#️⃣" src="23-20e3.png"/>',fitzpatrick_scale:false,category:"symbols"},information_source:{keywords:["blue-square","alphabet","letter"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="ℹ️" src="2139.png"/>',fitzpatrick_scale:false,category:"symbols"},abc:{keywords:["blue-square","alphabet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔤" src="1f524.png"/>',fitzpatrick_scale:false,category:"symbols"},abcd:{keywords:["blue-square","alphabet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔡" src="1f521.png"/>',fitzpatrick_scale:false,category:"symbols"},capital_abcd:{keywords:["alphabet","words","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔠" src="1f520.png"/>',fitzpatrick_scale:false,category:"symbols"},symbols:{keywords:["blue-square","music","note","ampersand","percent","glyphs","characters"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔣" src="1f523.png"/>',fitzpatrick_scale:false,category:"symbols"},musical_note:{keywords:["score","tone","sound"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎵" src="1f3b5.png"/>',fitzpatrick_scale:false,category:"symbols"},notes:{keywords:["music","score"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎶" src="1f3b6.png"/>',fitzpatrick_scale:false,category:"symbols"},wavy_dash:{keywords:["draw","line","moustache","mustache","squiggle","scribble"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="〰️" src="3030.png"/>',fitzpatrick_scale:false,category:"symbols"},curly_loop:{keywords:["scribble","draw","shape","squiggle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="➰" src="27b0.png"/>',fitzpatrick_scale:false,category:"symbols"},heavy_check_mark:{keywords:["ok","nike","answer","yes","tick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✔️" src="2714.png"/>',fitzpatrick_scale:false,category:"symbols"},arrows_clockwise:{keywords:["sync","cycle","round","repeat"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔃" src="1f503.png"/>',fitzpatrick_scale:false,category:"symbols"},heavy_plus_sign:{keywords:["math","calculation","addition","more","increase"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="➕" src="2795.png"/>',fitzpatrick_scale:false,category:"symbols"},heavy_minus_sign:{keywords:["math","calculation","subtract","less"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="➖" src="2796.png"/>',fitzpatrick_scale:false,category:"symbols"},heavy_division_sign:{keywords:["divide","math","calculation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="➗" src="2797.png"/>',fitzpatrick_scale:false,category:"symbols"},heavy_multiplication_x:{keywords:["math","calculation"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="✖️" src="2716.png"/>',fitzpatrick_scale:false,category:"symbols"},infinity:{keywords:["forever"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♾" src="267e.png"/>',fitzpatrick_scale:false,category:"symbols"},heavy_dollar_sign:{keywords:["money","sales","payment","currency","buck"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💲" src="1f4b2.png"/>',fitzpatrick_scale:false,category:"symbols"},currency_exchange:{keywords:["money","sales","dollar","travel"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💱" src="1f4b1.png"/>',fitzpatrick_scale:false,category:"symbols"},copyright:{keywords:["ip","license","circle","law","legal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="©️" src="a9.png"/>',fitzpatrick_scale:false,category:"symbols"},registered:{keywords:["alphabet","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="®️" src="ae.png"/>',fitzpatrick_scale:false,category:"symbols"},tm:{keywords:["trademark","brand","law","legal"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="™️" src="2122.png"/>',fitzpatrick_scale:false,category:"symbols"},end:{keywords:["words","arrow"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔚" src="1f51a.png"/>',fitzpatrick_scale:false,category:"symbols"},back:{keywords:["arrow","words","return"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔙" src="1f519.png"/>',fitzpatrick_scale:false,category:"symbols"},on:{keywords:["arrow","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔛" src="1f51b.png"/>',fitzpatrick_scale:false,category:"symbols"},top:{keywords:["words","blue-square"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔝" src="1f51d.png"/>',fitzpatrick_scale:false,category:"symbols"},soon:{keywords:["arrow","words"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔜" src="1f51c.png"/>',fitzpatrick_scale:false,category:"symbols"},ballot_box_with_check:{keywords:["ok","agree","confirm","black-square","vote","election","yes","tick"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="☑️" src="2611.png"/>',fitzpatrick_scale:false,category:"symbols"},radio_button:{keywords:["input","old","music","circle"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔘" src="1f518.png"/>',fitzpatrick_scale:false,category:"symbols"},white_circle:{keywords:["shape","round"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚪" src="26aa.png"/>',fitzpatrick_scale:false,category:"symbols"},black_circle:{keywords:["shape","button","round"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⚫" src="26ab.png"/>',fitzpatrick_scale:false,category:"symbols"},red_circle:{keywords:["shape","error","danger"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔴" src="1f534.png"/>',fitzpatrick_scale:false,category:"symbols"},large_blue_circle:{keywords:["shape","icon","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔵" src="1f535.png"/>',fitzpatrick_scale:false,category:"symbols"},small_orange_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔸" src="1f538.png"/>',fitzpatrick_scale:false,category:"symbols"},small_blue_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔹" src="1f539.png"/>',fitzpatrick_scale:false,category:"symbols"},large_orange_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔶" src="1f536.png"/>',fitzpatrick_scale:false,category:"symbols"},large_blue_diamond:{keywords:["shape","jewel","gem"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔷" src="1f537.png"/>',fitzpatrick_scale:false,category:"symbols"},small_red_triangle:{keywords:["shape","direction","up","top"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔺" src="1f53a.png"/>',fitzpatrick_scale:false,category:"symbols"},black_small_square:{keywords:["shape","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="▪️" src="25aa.png"/>',fitzpatrick_scale:false,category:"symbols"},white_small_square:{keywords:["shape","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="▫️" src="25ab.png"/>',fitzpatrick_scale:false,category:"symbols"},black_large_square:{keywords:["shape","icon","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⬛" src="2b1b.png"/>',fitzpatrick_scale:false,category:"symbols"},white_large_square:{keywords:["shape","icon","stone","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="⬜" src="2b1c.png"/>',fitzpatrick_scale:false,category:"symbols"},small_red_triangle_down:{keywords:["shape","direction","bottom"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔻" src="1f53b.png"/>',fitzpatrick_scale:false,category:"symbols"},black_medium_square:{keywords:["shape","button","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="◼️" src="25fc.png"/>',fitzpatrick_scale:false,category:"symbols"},white_medium_square:{keywords:["shape","stone","icon"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="◻️" src="25fb.png"/>',fitzpatrick_scale:false,category:"symbols"},black_medium_small_square:{keywords:["icon","shape","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="◾" src="25fe.png"/>',fitzpatrick_scale:false,category:"symbols"},white_medium_small_square:{keywords:["shape","stone","icon","button"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="◽" src="25fd.png"/>',fitzpatrick_scale:false,category:"symbols"},black_square_button:{keywords:["shape","input","frame"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔲" src="1f532.png"/>',fitzpatrick_scale:false,category:"symbols"},white_square_button:{keywords:["shape","input"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔳" src="1f533.png"/>',fitzpatrick_scale:false,category:"symbols"},speaker:{keywords:["sound","volume","silence","broadcast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔈" src="1f508.png"/>',fitzpatrick_scale:false,category:"symbols"},sound:{keywords:["volume","speaker","broadcast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔉" src="1f509.png"/>',fitzpatrick_scale:false,category:"symbols"},loud_sound:{keywords:["volume","noise","noisy","speaker","broadcast"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔊" src="1f50a.png"/>',fitzpatrick_scale:false,category:"symbols"},mute:{keywords:["sound","volume","silence","quiet"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔇" src="1f507.png"/>',fitzpatrick_scale:false,category:"symbols"},mega:{keywords:["sound","speaker","volume"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📣" src="1f4e3.png"/>',fitzpatrick_scale:false,category:"symbols"},loudspeaker:{keywords:["volume","sound"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="📢" src="1f4e2.png"/>',fitzpatrick_scale:false,category:"symbols"},bell:{keywords:["sound","notification","christmas","xmas","chime"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔔" src="1f514.png"/>',fitzpatrick_scale:false,category:"symbols"},no_bell:{keywords:["sound","volume","mute","quiet","silent"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🔕" src="1f515.png"/>',fitzpatrick_scale:false,category:"symbols"},black_joker:{keywords:["poker","cards","game","play","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🃏" src="1f0cf.png"/>',fitzpatrick_scale:false,category:"symbols"},mahjong:{keywords:["game","play","chinese","kanji"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🀄" src="1f004.png"/>',fitzpatrick_scale:false,category:"symbols"},spades:{keywords:["poker","cards","suits","magic"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♠️" src="2660.png"/>',fitzpatrick_scale:false,category:"symbols"},clubs:{keywords:["poker","cards","magic","suits"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♣️" src="2663.png"/>',fitzpatrick_scale:false,category:"symbols"},hearts:{keywords:["poker","cards","magic","suits"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♥️" src="2665.png"/>',fitzpatrick_scale:false,category:"symbols"},diamonds:{keywords:["poker","cards","magic","suits"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="♦️" src="2666.png"/>',fitzpatrick_scale:false,category:"symbols"},flower_playing_cards:{keywords:["game","sunset","red"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🎴" src="1f3b4.png"/>',fitzpatrick_scale:false,category:"symbols"},thought_balloon:{keywords:["bubble","cloud","speech","thinking","dream"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💭" src="1f4ad.png"/>',fitzpatrick_scale:false,category:"symbols"},right_anger_bubble:{keywords:["caption","speech","thinking","mad"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗯" src="1f5ef.png"/>',fitzpatrick_scale:false,category:"symbols"},speech_balloon:{keywords:["bubble","words","message","talk","chatting"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="💬" src="1f4ac.png"/>',fitzpatrick_scale:false,category:"symbols"},left_speech_bubble:{keywords:["words","message","talk","chatting"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🗨" src="1f5e8.png"/>',fitzpatrick_scale:false,category:"symbols"},clock1:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕐" src="1f550.png"/>',fitzpatrick_scale:false,category:"symbols"},clock2:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕑" src="1f551.png"/>',fitzpatrick_scale:false,category:"symbols"},clock3:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕒" src="1f552.png"/>',fitzpatrick_scale:false,category:"symbols"},clock4:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕓" src="1f553.png"/>',fitzpatrick_scale:false,category:"symbols"},clock5:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕔" src="1f554.png"/>',fitzpatrick_scale:false,category:"symbols"},clock6:{keywords:["time","late","early","schedule","dawn","dusk"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕕" src="1f555.png"/>',fitzpatrick_scale:false,category:"symbols"},clock7:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕖" src="1f556.png"/>',fitzpatrick_scale:false,category:"symbols"},clock8:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕗" src="1f557.png"/>',fitzpatrick_scale:false,category:"symbols"},clock9:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕘" src="1f558.png"/>',fitzpatrick_scale:false,category:"symbols"},clock10:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕙" src="1f559.png"/>',fitzpatrick_scale:false,category:"symbols"},clock11:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕚" src="1f55a.png"/>',fitzpatrick_scale:false,category:"symbols"},clock12:{keywords:["time","noon","midnight","midday","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕛" src="1f55b.png"/>',fitzpatrick_scale:false,category:"symbols"},clock130:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕜" src="1f55c.png"/>',fitzpatrick_scale:false,category:"symbols"},clock230:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕝" src="1f55d.png"/>',fitzpatrick_scale:false,category:"symbols"},clock330:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕞" src="1f55e.png"/>',fitzpatrick_scale:false,category:"symbols"},clock430:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕟" src="1f55f.png"/>',fitzpatrick_scale:false,category:"symbols"},clock530:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕠" src="1f560.png"/>',fitzpatrick_scale:false,category:"symbols"},clock630:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕡" src="1f561.png"/>',fitzpatrick_scale:false,category:"symbols"},clock730:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕢" src="1f562.png"/>',fitzpatrick_scale:false,category:"symbols"},clock830:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕣" src="1f563.png"/>',fitzpatrick_scale:false,category:"symbols"},clock930:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕤" src="1f564.png"/>',fitzpatrick_scale:false,category:"symbols"},clock1030:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕥" src="1f565.png"/>',fitzpatrick_scale:false,category:"symbols"},clock1130:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕦" src="1f566.png"/>',fitzpatrick_scale:false,category:"symbols"},clock1230:{keywords:["time","late","early","schedule"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🕧" src="1f567.png"/>',fitzpatrick_scale:false,category:"symbols"},afghanistan:{keywords:["af","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇫" src="1f1e6-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},aland_islands:{keywords:["Åland","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇽" src="1f1e6-1f1fd.png"/>',fitzpatrick_scale:false,category:"flags"},albania:{keywords:["al","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇱" src="1f1e6-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},algeria:{keywords:["dz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇩🇿" src="1f1e9-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},american_samoa:{keywords:["american","ws","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇸" src="1f1e6-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},andorra:{keywords:["ad","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇩" src="1f1e6-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},angola:{keywords:["ao","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇴" src="1f1e6-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},anguilla:{keywords:["ai","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇮" src="1f1e6-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},antarctica:{keywords:["aq","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇶" src="1f1e6-1f1f6.png"/>',fitzpatrick_scale:false,category:"flags"},antigua_barbuda:{keywords:["antigua","barbuda","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇬" src="1f1e6-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},argentina:{keywords:["ar","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇷" src="1f1e6-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},armenia:{keywords:["am","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇲" src="1f1e6-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},aruba:{keywords:["aw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇼" src="1f1e6-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},australia:{keywords:["au","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇺" src="1f1e6-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},austria:{keywords:["at","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇹" src="1f1e6-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},azerbaijan:{keywords:["az","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇿" src="1f1e6-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},bahamas:{keywords:["bs","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇸" src="1f1e7-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},bahrain:{keywords:["bh","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇭" src="1f1e7-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},bangladesh:{keywords:["bd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇩" src="1f1e7-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},barbados:{keywords:["bb","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇧" src="1f1e7-1f1e7.png"/>',fitzpatrick_scale:false,category:"flags"},belarus:{keywords:["by","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇾" src="1f1e7-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},belgium:{keywords:["be","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇪" src="1f1e7-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},belize:{keywords:["bz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇿" src="1f1e7-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},benin:{keywords:["bj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇯" src="1f1e7-1f1ef.png"/>',fitzpatrick_scale:false,category:"flags"},bermuda:{keywords:["bm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇲" src="1f1e7-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},bhutan:{keywords:["bt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇹" src="1f1e7-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},bolivia:{keywords:["bo","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇴" src="1f1e7-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},caribbean_netherlands:{keywords:["bonaire","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇶" src="1f1e7-1f1f6.png"/>',fitzpatrick_scale:false,category:"flags"},bosnia_herzegovina:{keywords:["bosnia","herzegovina","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇦" src="1f1e7-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},botswana:{keywords:["bw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇼" src="1f1e7-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},brazil:{keywords:["br","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇷" src="1f1e7-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},british_indian_ocean_territory:{keywords:["british","indian","ocean","territory","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇴" src="1f1ee-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},british_virgin_islands:{keywords:["british","virgin","islands","bvi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇻🇬" src="1f1fb-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},brunei:{keywords:["bn","darussalam","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇳" src="1f1e7-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},bulgaria:{keywords:["bg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇬" src="1f1e7-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},burkina_faso:{keywords:["burkina","faso","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇫" src="1f1e7-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},burundi:{keywords:["bi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇮" src="1f1e7-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},cape_verde:{keywords:["cabo","verde","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇻" src="1f1e8-1f1fb.png"/>',fitzpatrick_scale:false,category:"flags"},cambodia:{keywords:["kh","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇭" src="1f1f0-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},cameroon:{keywords:["cm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇲" src="1f1e8-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},canada:{keywords:["ca","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇦" src="1f1e8-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},canary_islands:{keywords:["canary","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇨" src="1f1ee-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},cayman_islands:{keywords:["cayman","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇾" src="1f1f0-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},central_african_republic:{keywords:["central","african","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇫" src="1f1e8-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},chad:{keywords:["td","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇩" src="1f1f9-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},chile:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇱" src="1f1e8-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},cn:{keywords:["china","chinese","prc","flag","country","nation","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇳" src="1f1e8-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},christmas_island:{keywords:["christmas","island","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇽" src="1f1e8-1f1fd.png"/>',fitzpatrick_scale:false,category:"flags"},cocos_islands:{keywords:["cocos","keeling","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇨" src="1f1e8-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},colombia:{keywords:["co","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇴" src="1f1e8-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},comoros:{keywords:["km","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇲" src="1f1f0-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},congo_brazzaville:{keywords:["congo","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇬" src="1f1e8-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},congo_kinshasa:{keywords:["congo","democratic","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇩" src="1f1e8-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},cook_islands:{keywords:["cook","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇰" src="1f1e8-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},costa_rica:{keywords:["costa","rica","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇷" src="1f1e8-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},croatia:{keywords:["hr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇭🇷" src="1f1ed-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},cuba:{keywords:["cu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇺" src="1f1e8-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},curacao:{keywords:["curaçao","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇼" src="1f1e8-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},cyprus:{keywords:["cy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇾" src="1f1e8-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},czech_republic:{keywords:["cz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇿" src="1f1e8-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},denmark:{keywords:["dk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇩🇰" src="1f1e9-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},djibouti:{keywords:["dj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇩🇯" src="1f1e9-1f1ef.png"/>',fitzpatrick_scale:false,category:"flags"},dominica:{keywords:["dm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇩🇲" src="1f1e9-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},dominican_republic:{keywords:["dominican","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇩🇴" src="1f1e9-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},ecuador:{keywords:["ec","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇨" src="1f1ea-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},egypt:{keywords:["eg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇬" src="1f1ea-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},el_salvador:{keywords:["el","salvador","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇻" src="1f1f8-1f1fb.png"/>',fitzpatrick_scale:false,category:"flags"},equatorial_guinea:{keywords:["equatorial","gn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇶" src="1f1ec-1f1f6.png"/>',fitzpatrick_scale:false,category:"flags"},eritrea:{keywords:["er","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇷" src="1f1ea-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},estonia:{keywords:["ee","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇪" src="1f1ea-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},ethiopia:{keywords:["et","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇹" src="1f1ea-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},eu:{keywords:["european","union","flag","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇺" src="1f1ea-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},falkland_islands:{keywords:["falkland","islands","malvinas","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇫🇰" src="1f1eb-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},faroe_islands:{keywords:["faroe","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇫🇴" src="1f1eb-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},fiji:{keywords:["fj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇫🇯" src="1f1eb-1f1ef.png"/>',fitzpatrick_scale:false,category:"flags"},finland:{keywords:["fi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇫🇮" src="1f1eb-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},fr:{keywords:["banner","flag","nation","france","french","country"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇫🇷" src="1f1eb-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},french_guiana:{keywords:["french","guiana","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇫" src="1f1ec-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},french_polynesia:{keywords:["french","polynesia","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇫" src="1f1f5-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},french_southern_territories:{keywords:["french","southern","territories","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇫" src="1f1f9-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},gabon:{keywords:["ga","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇦" src="1f1ec-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},gambia:{keywords:["gm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇲" src="1f1ec-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},georgia:{keywords:["ge","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇪" src="1f1ec-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},de:{keywords:["german","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇩🇪" src="1f1e9-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},ghana:{keywords:["gh","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇭" src="1f1ec-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},gibraltar:{keywords:["gi","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇮" src="1f1ec-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},greece:{keywords:["gr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇷" src="1f1ec-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},greenland:{keywords:["gl","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇱" src="1f1ec-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},grenada:{keywords:["gd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇩" src="1f1ec-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},guadeloupe:{keywords:["gp","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇵" src="1f1ec-1f1f5.png"/>',fitzpatrick_scale:false,category:"flags"},guam:{keywords:["gu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇺" src="1f1ec-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},guatemala:{keywords:["gt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇹" src="1f1ec-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},guernsey:{keywords:["gg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇬" src="1f1ec-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},guinea:{keywords:["gn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇳" src="1f1ec-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},guinea_bissau:{keywords:["gw","bissau","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇼" src="1f1ec-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},guyana:{keywords:["gy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇾" src="1f1ec-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},haiti:{keywords:["ht","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇭🇹" src="1f1ed-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},honduras:{keywords:["hn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇭🇳" src="1f1ed-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},hong_kong:{keywords:["hong","kong","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇭🇰" src="1f1ed-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},hungary:{keywords:["hu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇭🇺" src="1f1ed-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},iceland:{keywords:["is","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇸" src="1f1ee-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},india:{keywords:["in","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇳" src="1f1ee-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},indonesia:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇩" src="1f1ee-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},iran:{keywords:["iran,","islamic","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇷" src="1f1ee-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},iraq:{keywords:["iq","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇶" src="1f1ee-1f1f6.png"/>',fitzpatrick_scale:false,category:"flags"},ireland:{keywords:["ie","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇪" src="1f1ee-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},isle_of_man:{keywords:["isle","man","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇲" src="1f1ee-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},israel:{keywords:["il","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇱" src="1f1ee-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},it:{keywords:["italy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇮🇹" src="1f1ee-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},cote_divoire:{keywords:["ivory","coast","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇮" src="1f1e8-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},jamaica:{keywords:["jm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇯🇲" src="1f1ef-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},jp:{keywords:["japanese","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇯🇵" src="1f1ef-1f1f5.png"/>',fitzpatrick_scale:false,category:"flags"},jersey:{keywords:["je","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇯🇪" src="1f1ef-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},jordan:{keywords:["jo","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇯🇴" src="1f1ef-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},kazakhstan:{keywords:["kz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇿" src="1f1f0-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},kenya:{keywords:["ke","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇪" src="1f1f0-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},kiribati:{keywords:["ki","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇮" src="1f1f0-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},kosovo:{keywords:["xk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇽🇰" src="1f1fd-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},kuwait:{keywords:["kw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇼" src="1f1f0-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},kyrgyzstan:{keywords:["kg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇬" src="1f1f0-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},laos:{keywords:["lao","democratic","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇦" src="1f1f1-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},latvia:{keywords:["lv","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇻" src="1f1f1-1f1fb.png"/>',fitzpatrick_scale:false,category:"flags"},lebanon:{keywords:["lb","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇧" src="1f1f1-1f1e7.png"/>',fitzpatrick_scale:false,category:"flags"},lesotho:{keywords:["ls","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇸" src="1f1f1-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},liberia:{keywords:["lr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇷" src="1f1f1-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},libya:{keywords:["ly","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇾" src="1f1f1-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},liechtenstein:{keywords:["li","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇮" src="1f1f1-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},lithuania:{keywords:["lt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇹" src="1f1f1-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},luxembourg:{keywords:["lu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇺" src="1f1f1-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},macau:{keywords:["macao","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇴" src="1f1f2-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},macedonia:{keywords:["macedonia,","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇰" src="1f1f2-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},madagascar:{keywords:["mg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇬" src="1f1f2-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},malawi:{keywords:["mw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇼" src="1f1f2-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},malaysia:{keywords:["my","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇾" src="1f1f2-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},maldives:{keywords:["mv","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇻" src="1f1f2-1f1fb.png"/>',fitzpatrick_scale:false,category:"flags"},mali:{keywords:["ml","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇱" src="1f1f2-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},malta:{keywords:["mt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇹" src="1f1f2-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},marshall_islands:{keywords:["marshall","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇭" src="1f1f2-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},martinique:{keywords:["mq","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇶" src="1f1f2-1f1f6.png"/>',fitzpatrick_scale:false,category:"flags"},mauritania:{keywords:["mr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇷" src="1f1f2-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},mauritius:{keywords:["mu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇺" src="1f1f2-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},mayotte:{keywords:["yt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇾🇹" src="1f1fe-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},mexico:{keywords:["mx","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇽" src="1f1f2-1f1fd.png"/>',fitzpatrick_scale:false,category:"flags"},micronesia:{keywords:["micronesia,","federated","states","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇫🇲" src="1f1eb-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},moldova:{keywords:["moldova,","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇩" src="1f1f2-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},monaco:{keywords:["mc","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇨" src="1f1f2-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},mongolia:{keywords:["mn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇳" src="1f1f2-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},montenegro:{keywords:["me","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇪" src="1f1f2-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},montserrat:{keywords:["ms","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇸" src="1f1f2-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},morocco:{keywords:["ma","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇦" src="1f1f2-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},mozambique:{keywords:["mz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇿" src="1f1f2-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},myanmar:{keywords:["mm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇲" src="1f1f2-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},namibia:{keywords:["na","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇦" src="1f1f3-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},nauru:{keywords:["nr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇷" src="1f1f3-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},nepal:{keywords:["np","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇵" src="1f1f3-1f1f5.png"/>',fitzpatrick_scale:false,category:"flags"},netherlands:{keywords:["nl","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇱" src="1f1f3-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},new_caledonia:{keywords:["new","caledonia","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇨" src="1f1f3-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},new_zealand:{keywords:["new","zealand","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇿" src="1f1f3-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},nicaragua:{keywords:["ni","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇮" src="1f1f3-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},niger:{keywords:["ne","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇪" src="1f1f3-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},nigeria:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇬" src="1f1f3-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},niue:{keywords:["nu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇺" src="1f1f3-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},norfolk_island:{keywords:["norfolk","island","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇫" src="1f1f3-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},northern_mariana_islands:{keywords:["northern","mariana","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇲🇵" src="1f1f2-1f1f5.png"/>',fitzpatrick_scale:false,category:"flags"},north_korea:{keywords:["north","korea","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇵" src="1f1f0-1f1f5.png"/>',fitzpatrick_scale:false,category:"flags"},norway:{keywords:["no","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇳🇴" src="1f1f3-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},oman:{keywords:["om_symbol","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇴🇲" src="1f1f4-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},pakistan:{keywords:["pk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇰" src="1f1f5-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},palau:{keywords:["pw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇼" src="1f1f5-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},palestinian_territories:{keywords:["palestine","palestinian","territories","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇸" src="1f1f5-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},panama:{keywords:["pa","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇦" src="1f1f5-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},papua_new_guinea:{keywords:["papua","new","guinea","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇬" src="1f1f5-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},paraguay:{keywords:["py","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇾" src="1f1f5-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},peru:{keywords:["pe","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇪" src="1f1f5-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},philippines:{keywords:["ph","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇭" src="1f1f5-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},pitcairn_islands:{keywords:["pitcairn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇳" src="1f1f5-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},poland:{keywords:["pl","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇱" src="1f1f5-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},portugal:{keywords:["pt","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇹" src="1f1f5-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},puerto_rico:{keywords:["puerto","rico","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇷" src="1f1f5-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},qatar:{keywords:["qa","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇶🇦" src="1f1f6-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},reunion:{keywords:["réunion","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇷🇪" src="1f1f7-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},romania:{keywords:["ro","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇷🇴" src="1f1f7-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},ru:{keywords:["russian","federation","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇷🇺" src="1f1f7-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},rwanda:{keywords:["rw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇷🇼" src="1f1f7-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},st_barthelemy:{keywords:["saint","barthélemy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇧🇱" src="1f1e7-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},st_helena:{keywords:["saint","helena","ascension","tristan","cunha","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇭" src="1f1f8-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},st_kitts_nevis:{keywords:["saint","kitts","nevis","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇳" src="1f1f0-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},st_lucia:{keywords:["saint","lucia","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇨" src="1f1f1-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},st_pierre_miquelon:{keywords:["saint","pierre","miquelon","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇵🇲" src="1f1f5-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},st_vincent_grenadines:{keywords:["saint","vincent","grenadines","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇻🇨" src="1f1fb-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},samoa:{keywords:["ws","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇼🇸" src="1f1fc-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},san_marino:{keywords:["san","marino","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇲" src="1f1f8-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},sao_tome_principe:{keywords:["sao","tome","principe","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇹" src="1f1f8-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},saudi_arabia:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇦" src="1f1f8-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},senegal:{keywords:["sn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇳" src="1f1f8-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},serbia:{keywords:["rs","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇷🇸" src="1f1f7-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},seychelles:{keywords:["sc","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇨" src="1f1f8-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},sierra_leone:{keywords:["sierra","leone","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇱" src="1f1f8-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},singapore:{keywords:["sg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇬" src="1f1f8-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},sint_maarten:{keywords:["sint","maarten","dutch","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇽" src="1f1f8-1f1fd.png"/>',fitzpatrick_scale:false,category:"flags"},slovakia:{keywords:["sk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇰" src="1f1f8-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},slovenia:{keywords:["si","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇮" src="1f1f8-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},solomon_islands:{keywords:["solomon","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇧" src="1f1f8-1f1e7.png"/>',fitzpatrick_scale:false,category:"flags"},somalia:{keywords:["so","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇴" src="1f1f8-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},south_africa:{keywords:["south","africa","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇿🇦" src="1f1ff-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},south_georgia_south_sandwich_islands:{keywords:["south","georgia","sandwich","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇸" src="1f1ec-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},kr:{keywords:["south","korea","nation","flag","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇰🇷" src="1f1f0-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},south_sudan:{keywords:["south","sd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇸" src="1f1f8-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},es:{keywords:["spain","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇸" src="1f1ea-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},sri_lanka:{keywords:["sri","lanka","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇱🇰" src="1f1f1-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},sudan:{keywords:["sd","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇩" src="1f1f8-1f1e9.png"/>',fitzpatrick_scale:false,category:"flags"},suriname:{keywords:["sr","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇷" src="1f1f8-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},swaziland:{keywords:["sz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇿" src="1f1f8-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},sweden:{keywords:["se","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇪" src="1f1f8-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},switzerland:{keywords:["ch","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇨🇭" src="1f1e8-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},syria:{keywords:["syrian","arab","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇸🇾" src="1f1f8-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},taiwan:{keywords:["tw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇼" src="1f1f9-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},tajikistan:{keywords:["tj","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇯" src="1f1f9-1f1ef.png"/>',fitzpatrick_scale:false,category:"flags"},tanzania:{keywords:["tanzania,","united","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇿" src="1f1f9-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},thailand:{keywords:["th","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇭" src="1f1f9-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},timor_leste:{keywords:["timor","leste","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇱" src="1f1f9-1f1f1.png"/>',fitzpatrick_scale:false,category:"flags"},togo:{keywords:["tg","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇬" src="1f1f9-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},tokelau:{keywords:["tk","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇰" src="1f1f9-1f1f0.png"/>',fitzpatrick_scale:false,category:"flags"},tonga:{keywords:["to","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇴" src="1f1f9-1f1f4.png"/>',fitzpatrick_scale:false,category:"flags"},trinidad_tobago:{keywords:["trinidad","tobago","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇹" src="1f1f9-1f1f9.png"/>',fitzpatrick_scale:false,category:"flags"},tunisia:{keywords:["tn","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇳" src="1f1f9-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},tr:{keywords:["turkey","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇷" src="1f1f9-1f1f7.png"/>',fitzpatrick_scale:false,category:"flags"},turkmenistan:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇲" src="1f1f9-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},turks_caicos_islands:{keywords:["turks","caicos","islands","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇨" src="1f1f9-1f1e8.png"/>',fitzpatrick_scale:false,category:"flags"},tuvalu:{keywords:["flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇹🇻" src="1f1f9-1f1fb.png"/>',fitzpatrick_scale:false,category:"flags"},uganda:{keywords:["ug","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇺🇬" src="1f1fa-1f1ec.png"/>',fitzpatrick_scale:false,category:"flags"},ukraine:{keywords:["ua","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇺🇦" src="1f1fa-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},united_arab_emirates:{keywords:["united","arab","emirates","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇦🇪" src="1f1e6-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},uk:{keywords:["united","kingdom","great","britain","northern","ireland","flag","nation","country","banner","british","UK","english","england","union jack"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇬🇧" src="1f1ec-1f1e7.png"/>',fitzpatrick_scale:false,category:"flags"},england:{keywords:["flag","english"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏴󠁧󠁢󠁥󠁮󠁧󠁿" src="1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png"/>',fitzpatrick_scale:false,category:"flags"},scotland:{keywords:["flag","scottish"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏴󠁧󠁢󠁳󠁣󠁴󠁿" src="1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png"/>',fitzpatrick_scale:false,category:"flags"},wales:{keywords:["flag","welsh"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏴󠁧󠁢󠁷󠁬󠁳󠁿" src="1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png"/>',fitzpatrick_scale:false,category:"flags"},us:{keywords:["united","states","america","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇺🇸" src="1f1fa-1f1f8.png"/>',fitzpatrick_scale:false,category:"flags"},us_virgin_islands:{keywords:["virgin","islands","us","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇻🇮" src="1f1fb-1f1ee.png"/>',fitzpatrick_scale:false,category:"flags"},uruguay:{keywords:["uy","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇺🇾" src="1f1fa-1f1fe.png"/>',fitzpatrick_scale:false,category:"flags"},uzbekistan:{keywords:["uz","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇺🇿" src="1f1fa-1f1ff.png"/>',fitzpatrick_scale:false,category:"flags"},vanuatu:{keywords:["vu","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇻🇺" src="1f1fb-1f1fa.png"/>',fitzpatrick_scale:false,category:"flags"},vatican_city:{keywords:["vatican","city","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇻🇦" src="1f1fb-1f1e6.png"/>',fitzpatrick_scale:false,category:"flags"},venezuela:{keywords:["ve","bolivarian","republic","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇻🇪" src="1f1fb-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},vietnam:{keywords:["viet","nam","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇻🇳" src="1f1fb-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},wallis_futuna:{keywords:["wallis","futuna","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇼🇫" src="1f1fc-1f1eb.png"/>',fitzpatrick_scale:false,category:"flags"},western_sahara:{keywords:["western","sahara","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇪🇭" src="1f1ea-1f1ed.png"/>',fitzpatrick_scale:false,category:"flags"},yemen:{keywords:["ye","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇾🇪" src="1f1fe-1f1ea.png"/>',fitzpatrick_scale:false,category:"flags"},zambia:{keywords:["zm","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇿🇲" src="1f1ff-1f1f2.png"/>',fitzpatrick_scale:false,category:"flags"},zimbabwe:{keywords:["zw","flag","nation","country","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇿🇼" src="1f1ff-1f1fc.png"/>',fitzpatrick_scale:false,category:"flags"},united_nations:{keywords:["un","flag","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🇺🇳" src="1f1fa-1f1f3.png"/>',fitzpatrick_scale:false,category:"flags"},pirate_flag:{keywords:["skull","crossbones","flag","banner"],char:'<img data-emoticon="true" style="width:1em;height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em" draggable="false" alt="🏴‍☠️" src="1f3f4-200d-2620-fe0f.png"/>',fitzpatrick_scale:false,category:"flags"}});admin/assets/vendor/tinymce/js/tinymce/plugins/emoticons/plugin.min.js000064400000014566151213255220022300 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=t=>e=>t===e,o=e(null),n=e(void 0),s=()=>{},r=()=>!1;class a{constructor(t,e){this.tag=t,this.value=e}static some(t){return new a(!0,t)}static none(){return a.singletonNone}fold(t,e){return this.tag?e(this.value):t()}isSome(){return this.tag}isNone(){return!this.tag}map(t){return this.tag?a.some(t(this.value)):a.none()}bind(t){return this.tag?t(this.value):a.none()}exists(t){return this.tag&&t(this.value)}forall(t){return!this.tag||t(this.value)}filter(t){return!this.tag||t(this.value)?this:a.none()}getOr(t){return this.tag?this.value:t}or(t){return this.tag?this:t}getOrThunk(t){return this.tag?this.value:t()}orThunk(t){return this.tag?this:t()}getOrDie(t){if(this.tag)return this.value;throw new Error(null!=t?t:"Called getOrDie on None")}static from(t){return null==t?a.none():a.some(t)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(t){this.tag&&t(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}a.singletonNone=new a(!1);const i=(t,e)=>{const o=t.length,n=new Array(o);for(let s=0;s<o;s++){const o=t[s];n[s]=e(o,s)}return n},l=t=>{let e=t;return{get:()=>e,set:t=>{e=t}}},c=Object.keys,u=Object.hasOwnProperty,g=(t,e)=>{const o=c(t);for(let n=0,s=o.length;n<s;n++){const s=o[n];e(t[s],s)}},m=(t,e)=>u.call(t,e),d=(h=(t,e)=>e,(...t)=>{if(0===t.length)throw new Error("Can't merge zero objects");const e={};for(let o=0;o<t.length;o++){const n=t[o];for(const t in n)m(n,t)&&(e[t]=h(e[t],n[t]))}return e});var h;const p=()=>{const t=(t=>{const e=l(a.none()),o=()=>e.get().each(t);return{clear:()=>{o(),e.set(a.none())},isSet:()=>e.get().isSome(),get:()=>e.get(),set:t=>{o(),e.set(a.some(t))}}})(s);return{...t,on:e=>t.get().each(e)}},v=(t,e,o=0,s)=>{const r=t.indexOf(e,o);return-1!==r&&(!!n(s)||r+e.length<=s)};var y=tinymce.util.Tools.resolve("tinymce.Resource");const f=t=>e=>e.options.get(t),b=f("emoticons_database"),w=f("emoticons_database_url"),C=f("emoticons_database_id"),_=f("emoticons_append"),j=f("emoticons_images_url"),k="All",A={symbols:"Symbols",people:"People",animals_and_nature:"Animals and Nature",food_and_drink:"Food and Drink",activity:"Activity",travel_and_places:"Travel and Places",objects:"Objects",flags:"Flags",user:"User Defined"},O=(t,e)=>m(t,e)?t[e]:e,x=t=>{const e=_(t);return o=t=>({keywords:[],category:"user",...t}),((t,e)=>{const o={};return g(t,((t,n)=>{const s=e(t,n);o[s.k]=s.v})),o})(e,((t,e)=>({k:e,v:o(t)})));var o},E=(t,e)=>v(t.title.toLowerCase(),e)||((t,o)=>{for(let o=0,s=t.length;o<s;o++)if(n=t[o],v(n.toLowerCase(),e))return!0;var n;return!1})(t.keywords),S=(t,e,o)=>{const n=[],s=e.toLowerCase(),a=o.fold((()=>r),(t=>e=>e>=t));for(let o=0;o<t.length&&(0!==e.length&&!E(t[o],s)||(n.push({value:t[o].char,text:t[o].title,icon:t[o].char}),!a(n.length)));o++);return n},L="pattern",N=(t,e)=>{const n={pattern:"",results:S(e.listAll(),"",a.some(300))},s=l(k),r=((t,e)=>{let n=null;const s=()=>{o(n)||(clearTimeout(n),n=null)};return{cancel:s,throttle:(...e)=>{s(),n=setTimeout((()=>{n=null,t.apply(null,e)}),200)}}})((t=>{(t=>{const o=t.getData(),n=s.get(),r=e.listCategory(n),i=S(r,o[L],n===k?a.some(300):a.none());t.setData({results:i})})(t)})),c={label:"Search",type:"input",name:L},u={type:"collection",name:"results"},g=()=>({title:"Emojis",size:"normal",body:{type:"tabpanel",tabs:i(e.listCategories(),(t=>({title:t,name:t,items:[c,u]})))},initialData:n,onTabChange:(t,e)=>{s.set(e.newTabName),r.throttle(t)},onChange:r.throttle,onAction:(e,o)=>{"results"===o.name&&(((t,e)=>{t.insertContent(e)})(t,o.value),e.close())},buttons:[{type:"cancel",text:"Close",primary:!0}]}),m=t.windowManager.open(g());m.focus(L),e.hasLoaded()||(m.block("Loading emojis..."),e.waitForLoad().then((()=>{m.redial(g()),r.throttle(m),m.focus(L),m.unblock()})).catch((t=>{m.redial({title:"Emojis",body:{type:"panel",items:[{type:"alertbanner",level:"error",icon:"warning",text:"Could not load emojis"}]},buttons:[{type:"cancel",text:"Close",primary:!0}],initialData:{pattern:"",results:[]}}),m.focus(L),m.unblock()})))},T=t=>e=>{const o=()=>{e.setEnabled(t.selection.isEditable())};return t.on("NodeChange",o),o(),()=>{t.off("NodeChange",o)}};t.add("emoticons",((t,e)=>{((t,e)=>{const o=t.options.register;o("emoticons_database",{processor:"string",default:"emojis"}),o("emoticons_database_url",{processor:"string",default:`${e}/js/${b(t)}${t.suffix}.js`}),o("emoticons_database_id",{processor:"string",default:"tinymce.plugins.emoticons"}),o("emoticons_append",{processor:"object",default:{}}),o("emoticons_images_url",{processor:"string",default:"https://twemoji.maxcdn.com/v/13.0.1/72x72/"})})(t,e);const o=((t,e,o)=>{const n=p(),s=p(),r=j(t),i=t=>{return o="<img",(e=t.char).length>=4&&e.substr(0,4)===o?t.char.replace(/src="([^"]+)"/,((t,e)=>`src="${r}${e}"`)):t.char;var e,o};t.on("init",(()=>{y.load(o,e).then((e=>{const o=x(t);(t=>{const e={},o=[];g(t,((t,n)=>{const s={title:n,keywords:t.keywords,char:i(t),category:O(A,t.category)},r=void 0!==e[s.category]?e[s.category]:[];e[s.category]=r.concat([s]),o.push(s)})),n.set(e),s.set(o)})(d(e,o))}),(t=>{console.log(`Failed to load emojis: ${t}`),n.set({}),s.set([])}))}));const l=()=>s.get().getOr([]),u=()=>n.isSet()&&s.isSet();return{listCategories:()=>[k].concat(c(n.get().getOr({}))),hasLoaded:u,waitForLoad:()=>u()?Promise.resolve(!0):new Promise(((t,o)=>{let n=15;const s=setInterval((()=>{u()?(clearInterval(s),t(!0)):(n--,n<0&&(console.log("Could not load emojis from url: "+e),clearInterval(s),o(!1)))}),100)})),listAll:l,listCategory:t=>t===k?l():n.get().bind((e=>a.from(e[t]))).getOr([])}})(t,w(t),C(t));((t,e)=>{t.addCommand("mceEmoticons",(()=>N(t,e)))})(t,o),(t=>{const e=()=>t.execCommand("mceEmoticons");t.ui.registry.addButton("emoticons",{tooltip:"Emojis",icon:"emoji",onAction:e,onSetup:T(t)}),t.ui.registry.addMenuItem("emoticons",{text:"Emojis...",icon:"emoji",onAction:e,onSetup:T(t)})})(t),((t,e)=>{t.ui.registry.addAutocompleter("emoticons",{trigger:":",columns:"auto",minChars:2,fetch:(t,o)=>e.waitForLoad().then((()=>{const n=e.listAll();return S(n,t,a.some(o))})),onAction:(e,o,n)=>{t.selection.setRng(o),t.insertContent(n),e.hide()}})})(t,o),(t=>{t.on("PreInit",(()=>{t.parser.addAttributeFilter("data-emoticon",(t=>{((t,e)=>{for(let e=0,n=t.length;e<n;e++)(o=t[e]).attr("data-mce-resize","false"),o.attr("data-mce-placeholder","1");var o})(t)}))}))})(t)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js000064400000003043151213255220022561 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=n=>e=>typeof e===n,o=e("boolean"),a=e("number"),t=n=>e=>e.options.get(n),i=t("nonbreaking_force_tab"),s=t("nonbreaking_wrap"),r=(n,e)=>{let o="";for(let a=0;a<e;a++)o+=n;return o},c=(n,e)=>{const o=s(n)||n.plugins.visualchars?`<span class="${(n=>!!n.plugins.visualchars&&n.plugins.visualchars.isEnabled())(n)?"mce-nbsp-wrap mce-nbsp":"mce-nbsp-wrap"}" contenteditable="false">${r("&nbsp;",e)}</span>`:r("&nbsp;",e);n.undoManager.transact((()=>n.insertContent(o)))};var l=tinymce.util.Tools.resolve("tinymce.util.VK");const u=n=>e=>{const o=()=>{e.setEnabled(n.selection.isEditable())};return n.on("NodeChange",o),o(),()=>{n.off("NodeChange",o)}};n.add("nonbreaking",(n=>{(n=>{const e=n.options.register;e("nonbreaking_force_tab",{processor:n=>o(n)?{value:n?3:0,valid:!0}:a(n)?{value:n,valid:!0}:{valid:!1,message:"Must be a boolean or number."},default:!1}),e("nonbreaking_wrap",{processor:"boolean",default:!0})})(n),(n=>{n.addCommand("mceNonBreaking",(()=>{c(n,1)}))})(n),(n=>{const e=()=>n.execCommand("mceNonBreaking");n.ui.registry.addButton("nonbreaking",{icon:"non-breaking",tooltip:"Nonbreaking space",onAction:e,onSetup:u(n)}),n.ui.registry.addMenuItem("nonbreaking",{icon:"non-breaking",text:"Nonbreaking space",onAction:e,onSetup:u(n)})})(n),(n=>{const e=i(n);e>0&&n.on("keydown",(o=>{if(o.keyCode===l.TAB&&!o.isDefaultPrevented()){if(o.shiftKey)return;o.preventDefault(),o.stopImmediatePropagation(),c(n,e)}}))})(n)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/link/plugin.min.js000064400000036737151213255220021241 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(n=o=e,(r=String).prototype.isPrototypeOf(n)||(null===(l=o.constructor)||void 0===l?void 0:l.name)===r.name)?"string":t;var n,o,r,l})(t)===e,n=e=>t=>typeof t===e,o=t("string"),r=t("object"),l=t("array"),i=(null,e=>null===e);const a=n("boolean"),s=e=>!(e=>null==e)(e),c=n("function"),u=(e,t)=>{if(l(e)){for(let n=0,o=e.length;n<o;++n)if(!t(e[n]))return!1;return!0}return!1},g=()=>{},d=(e,t)=>e===t;class m{constructor(e,t){this.tag=e,this.value=t}static some(e){return new m(!0,e)}static none(){return m.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?m.some(e(this.value)):m.none()}bind(e){return this.tag?e(this.value):m.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:m.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return s(e)?m.some(e):m.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}m.singletonNone=new m(!1);const h=Array.prototype.indexOf,f=Array.prototype.push,p=e=>{const t=[];for(let n=0,o=e.length;n<o;++n){if(!l(e[n]))throw new Error("Arr.flatten item "+n+" was not an array, input: "+e);f.apply(t,e[n])}return t},k=(e,t)=>{for(let n=0;n<e.length;n++){const o=t(e[n],n);if(o.isSome())return o}return m.none()},v=(e,t,n=d)=>e.exists((e=>n(e,t))),x=e=>{const t=[],n=e=>{t.push(e)};for(let t=0;t<e.length;t++)e[t].each(n);return t},y=(e,t)=>e?m.some(t):m.none(),b=e=>t=>t.options.get(e),_=b("link_assume_external_targets"),w=b("link_context_toolbar"),C=b("link_list"),O=b("link_default_target"),N=b("link_default_protocol"),A=b("link_target_list"),S=b("link_rel_list"),E=b("link_class_list"),T=b("link_title"),R=b("allow_unsafe_link_target"),P=b("link_quicklink");var L=tinymce.util.Tools.resolve("tinymce.util.Tools");const M=e=>o(e.value)?e.value:"",D=(e,t)=>{const n=[];return L.each(e,(e=>{const r=(e=>o(e.text)?e.text:o(e.title)?e.title:"")(e);if(void 0!==e.menu){const o=D(e.menu,t);n.push({text:r,items:o})}else{const o=t(e);n.push({text:r,value:o})}})),n},B=(e=M)=>t=>m.from(t).map((t=>D(t,e))),I=e=>B(M)(e),j=B,K=(e,t)=>n=>({name:e,type:"listbox",label:t,items:n}),U=M,q=Object.keys,F=Object.hasOwnProperty,V=(e,t)=>F.call(e,t);var $=tinymce.util.Tools.resolve("tinymce.dom.TreeWalker"),z=tinymce.util.Tools.resolve("tinymce.util.URI");const G=e=>s(e)&&"a"===e.nodeName.toLowerCase(),H=e=>G(e)&&!!Q(e),J=(e,t)=>{if(e.collapsed)return[];{const n=e.cloneContents(),o=n.firstChild,r=new $(o,n),l=[];let i=o;do{t(i)&&l.push(i)}while(i=r.next());return l}},W=e=>/^\w+:/i.test(e),Q=e=>{var t,n;return null!==(n=null!==(t=e.getAttribute("data-mce-href"))&&void 0!==t?t:e.getAttribute("href"))&&void 0!==n?n:""},X=(e,t)=>{const n=["noopener"],o=e?e.split(/\s+/):[],r=e=>e.filter((e=>-1===L.inArray(n,e))),l=t?(e=>(e=r(e)).length>0?e.concat(n):n)(o):r(o);return l.length>0?(e=>L.trim(e.sort().join(" ")))(l):""},Y=(e,t)=>(t=t||te(e.selection.getRng())[0]||e.selection.getNode(),le(t)?m.from(e.dom.select("a[href]",t)[0]):m.from(e.dom.getParent(t,"a[href]"))),Z=(e,t)=>Y(e,t).isSome(),ee=(e,t)=>t.fold((()=>e.getContent({format:"text"})),(e=>e.innerText||e.textContent||"")).replace(/\uFEFF/g,""),te=e=>J(e,H),ne=e=>L.grep(e,H),oe=e=>ne(e).length>0,re=e=>{const t=e.schema.getTextInlineElements();if(Y(e).exists((e=>e.hasAttribute("data-mce-block"))))return!1;const n=e.selection.getRng();return!!n.collapsed||0===J(n,(e=>1===e.nodeType&&!G(e)&&!V(t,e.nodeName.toLowerCase()))).length},le=e=>s(e)&&"FIGURE"===e.nodeName&&/\bimage\b/i.test(e.className),ie=(e,t,n)=>{const o=e.selection.getNode(),r=Y(e,o),l=((e,t)=>{const n={...t};if(0===S(e).length&&!R(e)){const e=X(n.rel,"_blank"===n.target);n.rel=e||null}return m.from(n.target).isNone()&&!1===A(e)&&(n.target=O(e)),n.href=((e,t)=>"http"!==t&&"https"!==t||W(e)?e:t+"://"+e)(n.href,_(e)),n})(e,(e=>{return t=["title","rel","class","target"],n=(t,n)=>(e[n].each((e=>{t[n]=e.length>0?e:null})),t),o={href:e.href},((e,t)=>{for(let n=0,o=e.length;n<o;n++)t(e[n],n)})(t,((e,t)=>{o=n(o,e)})),o;var t,n,o})(n));e.undoManager.transact((()=>{n.href===t.href&&t.attach(),r.fold((()=>{((e,t,n,o)=>{const r=e.dom;le(t)?ge(r,t,o):n.fold((()=>{e.execCommand("mceInsertLink",!1,o)}),(t=>{e.insertContent(r.createHTML("a",o,r.encode(t)))}))})(e,o,n.text,l)}),(t=>{e.focus(),((e,t,n,o)=>{n.each((e=>{V(t,"innerText")?t.innerText=e:t.textContent=e})),e.dom.setAttribs(t,o),e.selection.select(t)})(e,t,n.text,l)}))}))},ae=e=>{const{class:t,href:n,rel:o,target:r,text:l,title:a}=e;return((e,t)=>{const n={};var o;return((e,t,n,o)=>{((e,t)=>{const n=q(e);for(let o=0,r=n.length;o<r;o++){const r=n[o];t(e[r],r)}})(e,((e,r)=>{(t(e,r)?n:o)(e,r)}))})(e,((e,t)=>!1===i(e)),(o=n,(e,t)=>{o[t]=e}),g),n})({class:t.getOrNull(),href:n,rel:o.getOrNull(),target:r.getOrNull(),text:l.getOrNull(),title:a.getOrNull()})},se=(e,t,n)=>{const o=((e,t)=>{const n=e.options.get,o={allow_html_data_urls:n("allow_html_data_urls"),allow_script_urls:n("allow_script_urls"),allow_svg_data_urls:n("allow_svg_data_urls")},r=t.href;return{...t,href:z.isDomSafe(r,"a",o)?r:""}})(e,n);e.hasPlugin("rtc",!0)?e.execCommand("createlink",!1,ae(o)):ie(e,t,o)},ce=e=>{e.hasPlugin("rtc",!0)?e.execCommand("unlink"):(e=>{e.undoManager.transact((()=>{const t=e.selection.getNode();le(t)?ue(e,t):(e=>{const t=e.dom,n=e.selection,o=n.getBookmark(),r=n.getRng().cloneRange(),l=t.getParent(r.startContainer,"a[href]",e.getBody()),i=t.getParent(r.endContainer,"a[href]",e.getBody());l&&r.setStartBefore(l),i&&r.setEndAfter(i),n.setRng(r),e.execCommand("unlink"),n.moveToBookmark(o)})(e),e.focus()}))})(e)},ue=(e,t)=>{var n;const o=e.dom.select("img",t)[0];if(o){const r=e.dom.getParents(o,"a[href]",t)[0];r&&(null===(n=r.parentNode)||void 0===n||n.insertBefore(o,r),e.dom.remove(r))}},ge=(e,t,n)=>{var o;const r=e.select("img",t)[0];if(r){const t=e.create("a",n);null===(o=r.parentNode)||void 0===o||o.insertBefore(t,r),t.appendChild(r)}},de=(e,t)=>k(t,(t=>(e=>{return V(t=e,n="items")&&void 0!==t[n]&&null!==t[n];var t,n})(t)?de(e,t.items):y(t.value===e,t))),me=(e,t)=>{const n={text:e.text,title:e.title},o=(e,o)=>{const r=(l=t,i=o,"link"===i?l.link:"anchor"===i?l.anchor:m.none()).getOr([]);var l,i;return((e,t,n,o)=>{const r=o[t],l=e.length>0;return void 0!==r?de(r,n).map((t=>({url:{value:t.value,meta:{text:l?e:t.text,attach:g}},text:l?e:t.text}))):m.none()})(n.text,o,r,e)};return{onChange:(e,t)=>{const r=t.name;return"url"===r?(e=>{const t=(o=e.url,y(n.text.length<=0,m.from(null===(r=o.meta)||void 0===r?void 0:r.text).getOr(o.value)));var o,r;const l=(e=>{var t;return y(n.title.length<=0,m.from(null===(t=e.meta)||void 0===t?void 0:t.title).getOr(""))})(e.url);return t.isSome()||l.isSome()?m.some({...t.map((e=>({text:e}))).getOr({}),...l.map((e=>({title:e}))).getOr({})}):m.none()})(e()):((e,t)=>h.call(e,t))(["anchor","link"],r)>-1?o(e(),r):"text"===r||"title"===r?(n[r]=e()[r],m.none()):m.none()}}};var he=tinymce.util.Tools.resolve("tinymce.util.Delay");const fe=e=>{const t=e.href;return t.indexOf("@")>0&&-1===t.indexOf("/")&&-1===t.indexOf("mailto:")?m.some({message:"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",preprocess:e=>({...e,href:"mailto:"+t})}):m.none()},pe=(e,t)=>n=>{const o=n.href;return 1===e&&!W(o)||0===e&&/^\s*www(\.|\d\.)/i.test(o)?m.some({message:`The URL you entered seems to be an external link. Do you want to add the required ${t}:// prefix?`,preprocess:e=>({...e,href:t+"://"+o})}):m.none()},ke=e=>{const t=e.dom.select("a:not([href])"),n=p(((e,t)=>{const n=e.length,o=new Array(n);for(let r=0;r<n;r++){const n=e[r];o[r]=t(n,r)}return o})(t,(e=>{const t=e.name||e.id;return t?[{text:t,value:"#"+t}]:[]})));return n.length>0?m.some([{text:"None",value:""}].concat(n)):m.none()},ve=e=>{const t=E(e);return t.length>0?I(t):m.none()},xe=e=>{try{return m.some(JSON.parse(e))}catch(e){return m.none()}},ye=(e,t)=>{const n=S(e);if(n.length>0){const o=v(t,"_blank"),r=e=>X(U(e),o);return(!1===R(e)?j(r):I)(n)}return m.none()},be=[{text:"Current window",value:""},{text:"New window",value:"_blank"}],_e=e=>{const t=A(e);return l(t)?I(t).orThunk((()=>m.some(be))):!1===t?m.none():m.some(be)},we=(e,t,n)=>{const o=e.getAttrib(t,n);return null!==o&&o.length>0?m.some(o):m.none()},Ce=(e,t)=>(e=>{const t=t=>e.convertURL(t.value||t.url||"","href"),n=C(e);return new Promise((e=>{o(n)?fetch(n).then((e=>e.ok?e.text().then(xe):Promise.reject())).then(e,(()=>e(m.none()))):c(n)?n((t=>e(m.some(t)))):e(m.from(n))})).then((e=>e.bind(j(t)).map((e=>e.length>0?[{text:"None",value:""}].concat(e):e))))})(e).then((n=>{const o=((e,t)=>{const n=e.dom,o=re(e)?m.some(ee(e.selection,t)):m.none(),r=t.bind((e=>m.from(n.getAttrib(e,"href")))),l=t.bind((e=>m.from(n.getAttrib(e,"target")))),i=t.bind((e=>we(n,e,"rel"))),a=t.bind((e=>we(n,e,"class")));return{url:r,text:o,title:t.bind((e=>we(n,e,"title"))),target:l,rel:i,linkClass:a}})(e,t);return{anchor:o,catalogs:{targets:_e(e),rels:ye(e,o.target),classes:ve(e),anchor:ke(e),link:n},optNode:t,flags:{titleEnabled:T(e)}}})),Oe=e=>{const t=(e=>{const t=Y(e);return Ce(e,t)})(e);t.then((t=>{const n=((e,t)=>n=>{const o=n.getData();if(!o.url.value)return ce(e),void n.close();const r=e=>m.from(o[e]).filter((n=>!v(t.anchor[e],n))),l={href:o.url.value,text:r("text"),target:r("target"),rel:r("rel"),class:r("linkClass"),title:r("title")},i={href:o.url.value,attach:void 0!==o.url.meta&&o.url.meta.attach?o.url.meta.attach:g};((e,t)=>k([fe,pe(_(e),N(e))],(e=>e(t))).fold((()=>Promise.resolve(t)),(n=>new Promise((o=>{((e,t,n)=>{const o=e.selection.getRng();he.setEditorTimeout(e,(()=>{e.windowManager.confirm(t,(t=>{e.selection.setRng(o),n(t)}))}))})(e,n.message,(e=>{o(e?n.preprocess(t):t)}))})))))(e,l).then((t=>{se(e,i,t)})),n.close()})(e,t);return((e,t,n)=>{const o=e.anchor.text.map((()=>({name:"text",type:"input",label:"Text to display"}))).toArray(),r=e.flags.titleEnabled?[{name:"title",type:"input",label:"Title"}]:[],l=((e,t)=>{const n=e.anchor,o=n.url.getOr("");return{url:{value:o,meta:{original:{value:o}}},text:n.text.getOr(""),title:n.title.getOr(""),anchor:o,link:o,rel:n.rel.getOr(""),target:n.target.or(t).getOr(""),linkClass:n.linkClass.getOr("")}})(e,m.from(O(n))),i=e.catalogs,a=me(l,i);return{title:"Insert/Edit Link",size:"normal",body:{type:"panel",items:p([[{name:"url",type:"urlinput",filetype:"file",label:"URL",picker_text:"Browse links"}],o,r,x([i.anchor.map(K("anchor","Anchors")),i.rels.map(K("rel","Rel")),i.targets.map(K("target","Open link in...")),i.link.map(K("link","Link list")),i.classes.map(K("linkClass","Class"))])])},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:l,onChange:(e,{name:t})=>{a.onChange(e.getData,{name:t}).each((t=>{e.setData(t)}))},onSubmit:t}})(t,n,e)})).then((t=>{e.windowManager.open(t)}))};var Ne=tinymce.util.Tools.resolve("tinymce.util.VK");const Ae=(e,t)=>e.dom.getParent(t,"a[href]"),Se=e=>Ae(e,e.selection.getStart()),Ee=(e,t)=>{if(t){const n=Q(t);if(/^#/.test(n)){const t=e.dom.select(n);t.length&&e.selection.scrollIntoView(t[0],!0)}else(e=>{const t=document.createElement("a");t.target="_blank",t.href=e,t.rel="noreferrer noopener";const n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null),((e,t)=>{document.body.appendChild(e),e.dispatchEvent(t),document.body.removeChild(e)})(t,n)})(t.href)}},Te=e=>()=>{e.execCommand("mceLink",!1,{dialog:!0})},Re=e=>()=>{Ee(e,Se(e))},Pe=(e,t)=>(e.on("NodeChange",t),()=>e.off("NodeChange",t)),Le=e=>t=>{const n=()=>{t.setActive(!e.mode.isReadOnly()&&Z(e,e.selection.getNode())),t.setEnabled(e.selection.isEditable())};return n(),Pe(e,n)},Me=e=>t=>{const n=()=>{t.setEnabled(e.selection.isEditable())};return n(),Pe(e,n)},De=e=>t=>{const n=()=>t.setEnabled((e=>1===(e.selection.isCollapsed()?ne(e.dom.getParents(e.selection.getStart())):te(e.selection.getRng())).length)(e));return n(),Pe(e,n)},Be=e=>t=>{const n=e.dom.getParents(e.selection.getStart()),o=n=>{t.setEnabled((t=>{return oe(t)||(n=e.selection.getRng(),te(n).length>0);var n})(n)&&e.selection.isEditable())};return o(n),Pe(e,(e=>o(e.parents)))};e.add("link",(e=>{(e=>{const t=e.options.register;t("link_assume_external_targets",{processor:e=>{const t=o(e)||a(e);return t?!0===e?{value:1,valid:t}:"http"===e||"https"===e?{value:e,valid:t}:{value:0,valid:t}:{valid:!1,message:"Must be a string or a boolean."}},default:!1}),t("link_context_toolbar",{processor:"boolean",default:!1}),t("link_list",{processor:e=>o(e)||c(e)||u(e,r)}),t("link_default_target",{processor:"string"}),t("link_default_protocol",{processor:"string",default:"https"}),t("link_target_list",{processor:e=>a(e)||u(e,r),default:!0}),t("link_rel_list",{processor:"object[]",default:[]}),t("link_class_list",{processor:"object[]",default:[]}),t("link_title",{processor:"boolean",default:!0}),t("allow_unsafe_link_target",{processor:"boolean",default:!1}),t("link_quicklink",{processor:"boolean",default:!1})})(e),(e=>{e.ui.registry.addToggleButton("link",{icon:"link",tooltip:"Insert/edit link",onAction:Te(e),onSetup:Le(e)}),e.ui.registry.addButton("openlink",{icon:"new-tab",tooltip:"Open link",onAction:Re(e),onSetup:De(e)}),e.ui.registry.addButton("unlink",{icon:"unlink",tooltip:"Remove link",onAction:()=>ce(e),onSetup:Be(e)})})(e),(e=>{e.ui.registry.addMenuItem("openlink",{text:"Open link",icon:"new-tab",onAction:Re(e),onSetup:De(e)}),e.ui.registry.addMenuItem("link",{icon:"link",text:"Link...",shortcut:"Meta+K",onSetup:Me(e),onAction:Te(e)}),e.ui.registry.addMenuItem("unlink",{icon:"unlink",text:"Remove link",onAction:()=>ce(e),onSetup:Be(e)})})(e),(e=>{e.ui.registry.addContextMenu("link",{update:t=>e.dom.isEditable(t)?oe(e.dom.getParents(t,"a"))?"link unlink openlink":"link":""})})(e),(e=>{const t=t=>{const n=e.selection.getNode();return t.setEnabled(Z(e,n)),g};e.ui.registry.addContextForm("quicklink",{launch:{type:"contextformtogglebutton",icon:"link",tooltip:"Link",onSetup:Le(e)},label:"Link",predicate:t=>w(e)&&Z(e,t),initValue:()=>Y(e).fold((()=>""),Q),commands:[{type:"contextformtogglebutton",icon:"link",tooltip:"Link",primary:!0,onSetup:t=>{const n=e.selection.getNode();return t.setActive(Z(e,n)),Le(e)(t)},onAction:t=>{const n=t.getValue(),o=(t=>{const n=Y(e),o=re(e);if(n.isNone()&&o){const o=ee(e.selection,n);return y(0===o.length,t)}return m.none()})(n);se(e,{href:n,attach:g},{href:n,text:o,title:m.none(),rel:m.none(),target:m.none(),class:m.none()}),(e=>{e.selection.collapse(!1)})(e),t.hide()}},{type:"contextformbutton",icon:"unlink",tooltip:"Remove link",onSetup:t,onAction:t=>{ce(e),t.hide()}},{type:"contextformbutton",icon:"new-tab",tooltip:"Open link",onSetup:t,onAction:t=>{Re(e)(),t.hide()}}]})})(e),(e=>{e.on("click",(t=>{const n=Ae(e,t.target);n&&Ne.metaKeyPressed(t)&&(t.preventDefault(),Ee(e,n))})),e.on("keydown",(t=>{if(!t.isDefaultPrevented()&&13===t.keyCode&&(e=>!0===e.altKey&&!1===e.shiftKey&&!1===e.ctrlKey&&!1===e.metaKey)(t)){const n=Se(e);n&&(t.preventDefault(),Ee(e,n))}}))})(e),(e=>{e.addCommand("mceLink",((t,n)=>{!0!==(null==n?void 0:n.dialog)&&P(e)?e.dispatch("contexttoolbar-show",{toolbarKey:"quicklink"}):Oe(e)}))})(e),(e=>{e.addShortcut("Meta+K","",(()=>{e.execCommand("mceLink")}))})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/accordion/plugin.min.js000064400000032336151213255220022234 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager");let t=0;const o=e=>t=>typeof t===e,n=e=>"string"===(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(o=n=e,(r=String).prototype.isPrototypeOf(o)||(null===(s=n.constructor)||void 0===s?void 0:s.name)===r.name)?"string":t;var o,n,r,s})(e),r=o("boolean"),s=e=>null==e,a=e=>!s(e),i=o("function"),d=o("number"),l=e=>()=>e,c=(e,t)=>e===t,m=l(!1);class u{constructor(e,t){this.tag=e,this.value=t}static some(e){return new u(!0,e)}static none(){return u.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?u.some(e(this.value)):u.none()}bind(e){return this.tag?e(this.value):u.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:u.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return a(e)?u.some(e):u.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}u.singletonNone=new u(!1);const g=Array.prototype.indexOf,p=(e,t)=>{return o=e,n=t,g.call(o,n)>-1;var o,n},h=(e,t)=>{const o=e.length,n=new Array(o);for(let r=0;r<o;r++){const o=e[r];n[r]=t(o,r)}return n},f=(e,t)=>{for(let o=0,n=e.length;o<n;o++)t(e[o],o)},y=Object.keys;"undefined"!=typeof window?window:Function("return this;")();const v=e=>e.dom.nodeName.toLowerCase(),w=e=>e.dom.nodeType,b=e=>t=>w(t)===e,N=b(1),T=b(3),A=b(9),C=b(11),S=(e,t,o)=>{if(!(n(o)||r(o)||d(o)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",o,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,o+"")},x=(e,t)=>{const o=e.dom.getAttribute(t);return null===o?void 0:o},E=(e,t)=>u.from(x(e,t)),D=(e,t)=>{e.dom.removeAttribute(t)},M=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},P={fromHtml:(e,t)=>{const o=(t||document).createElement("div");if(o.innerHTML=e,!o.hasChildNodes()||o.childNodes.length>1){const t="HTML does not have a single root node";throw console.error(t,e),new Error(t)}return M(o.childNodes[0])},fromTag:(e,t)=>{const o=(t||document).createElement(e);return M(o)},fromText:(e,t)=>{const o=(t||document).createTextNode(e);return M(o)},fromDom:M,fromPoint:(e,t,o)=>u.from(e.dom.elementFromPoint(t,o)).map(M)},O=(e,t)=>{const o=e.dom;if(1!==o.nodeType)return!1;{const e=o;if(void 0!==e.matches)return e.matches(t);if(void 0!==e.msMatchesSelector)return e.msMatchesSelector(t);if(void 0!==e.webkitMatchesSelector)return e.webkitMatchesSelector(t);if(void 0!==e.mozMatchesSelector)return e.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")}},k=e=>1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType||0===e.childElementCount,B=O,R=(L=/^\s+|\s+$/g,e=>e.replace(L,""));var L;const $=e=>void 0!==e.style&&i(e.style.getPropertyValue),I=e=>A(e)?e:P.fromDom(e.dom.ownerDocument),V=e=>u.from(e.dom.parentNode).map(P.fromDom),j=e=>u.from(e.dom.nextSibling).map(P.fromDom),q=e=>h(e.dom.childNodes,P.fromDom),F=i(Element.prototype.attachShadow)&&i(Node.prototype.getRootNode)?e=>P.fromDom(e.dom.getRootNode()):I,H=e=>P.fromDom(e.dom.host),z=e=>{const t=T(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;const o=t.ownerDocument;return(e=>{const t=F(e);return C(o=t)&&a(o.dom.host)?u.some(t):u.none();var o})(P.fromDom(t)).fold((()=>o.body.contains(t)),(n=z,r=H,e=>n(r(e))));var n,r},K=(e,t)=>$(e)?e.style.getPropertyValue(t):"",U=(e,t)=>{V(e).each((o=>{o.dom.insertBefore(t.dom,e.dom)}))},Y=(e,t)=>{j(e).fold((()=>{V(e).each((e=>{_(e,t)}))}),(e=>{U(e,t)}))},_=(e,t)=>{e.dom.appendChild(t.dom)},G=(e,t)=>{f(t,((o,n)=>{const r=0===n?e:t[n-1];Y(r,o)}))},J=(e,t)=>{let o=[];return f(q(e),(e=>{t(e)&&(o=o.concat([e])),o=o.concat(J(e,t))})),o},Q=(e,t,o)=>{let n=e.dom;const r=i(o)?o:m;for(;n.parentNode;){n=n.parentNode;const e=P.fromDom(n);if(t(e))return u.some(e);if(r(e))break}return u.none()},W=e=>{const t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)},X=(e,t,o)=>Q(e,(e=>O(e,t)),o),Z=(e,t)=>((e,t)=>{const o=void 0===t?document:t.dom;return k(o)?u.none():u.from(o.querySelector(e)).map(P.fromDom)})(t,e),ee=((e,t)=>{const o=t=>e(t)?u.from(t.dom.nodeValue):u.none();return{get:t=>{if(!e(t))throw new Error("Can only get text value of a text node");return o(t).getOr("")},getOption:o,set:(t,o)=>{if(!e(t))throw new Error("Can only set raw text value of a text node");t.dom.nodeValue=o}}})(T);var te=["body","p","div","article","aside","figcaption","figure","footer","header","nav","section","ol","ul","li","table","thead","tbody","tfoot","caption","tr","td","th","h1","h2","h3","h4","h5","h6","blockquote","pre","address"];const oe=(e,t)=>({element:e,offset:t}),ne=(e,t,o)=>e.property().isText(t)&&0===e.property().getText(t).trim().length||e.property().isComment(t)?o(t).bind((t=>ne(e,t,o).orThunk((()=>u.some(t))))):u.none(),re=(e,t)=>e.property().isText(t)?e.property().getText(t).length:e.property().children(t).length,se=(e,t)=>{const o=ne(e,t,e.query().prevSibling).getOr(t);if(e.property().isText(o))return oe(o,re(e,o));const n=e.property().children(o);return n.length>0?se(e,n[n.length-1]):oe(o,re(e,o))},ae=se,ie={up:l({selector:X,closest:(e,t,o)=>((e,t,o,n,r)=>((e,t)=>O(e,t))(o,n)?u.some(o):i(r)&&r(o)?u.none():t(o,n,r))(0,X,e,t,o),predicate:Q,all:(e,t)=>{const o=i(t)?t:m;let n=e.dom;const r=[];for(;null!==n.parentNode&&void 0!==n.parentNode;){const e=n.parentNode,t=P.fromDom(e);if(r.push(t),!0===o(t))break;n=e}return r}}),down:l({selector:(e,t)=>((e,t)=>{const o=void 0===t?document:t.dom;return k(o)?[]:h(o.querySelectorAll(e),P.fromDom)})(t,e),predicate:J}),styles:l({get:(e,t)=>{const o=e.dom,n=window.getComputedStyle(o).getPropertyValue(t);return""!==n||z(e)?n:K(o,t)},getRaw:(e,t)=>{const o=e.dom,n=K(o,t);return u.from(n).filter((e=>e.length>0))},set:(e,t,o)=>{((e,t,o)=>{if(!n(o))throw console.error("Invalid call to CSS.set. Property ",t,":: Value ",o,":: Element ",e),new Error("CSS value must be a string: "+o);$(e)&&e.style.setProperty(t,o)})(e.dom,t,o)},remove:(e,t)=>{((e,t)=>{$(e)&&e.style.removeProperty(t)})(e.dom,t),((e,t,o=c)=>e.exists((e=>o(e,t))))(E(e,"style").map(R),"")&&D(e,"style")}}),attrs:l({get:x,set:(e,t,o)=>{S(e.dom,t,o)},remove:D,copyTo:(e,t)=>{const o=(n=e.dom.attributes,r=(e,t)=>(e[t.name]=t.value,e),s={},f(n,((e,t)=>{s=r(s,e)})),s);var n,r,s;((e,t)=>{const o=e.dom;((e,t)=>{const o=y(e);for(let n=0,r=o.length;n<r;n++){const r=o[n];t(e[r],r)}})(t,((e,t)=>{S(o,t,e)}))})(t,o)}}),insert:l({before:U,after:Y,afterAll:G,append:_,appendAll:(e,t)=>{f(t,(t=>{_(e,t)}))},prepend:(e,t)=>{(e=>((e,t)=>{const o=e.dom.childNodes;return u.from(o[0]).map(P.fromDom)})(e))(e).fold((()=>{_(e,t)}),(o=>{e.dom.insertBefore(t.dom,o.dom)}))},wrap:(e,t)=>{U(e,t),_(t,e)}}),remove:l({unwrap:e=>{const t=q(e);t.length>0&&G(e,t),W(e)},remove:W}),create:l({nu:P.fromTag,clone:e=>P.fromDom(e.dom.cloneNode(!1)),text:P.fromText}),query:l({comparePosition:(e,t)=>e.dom.compareDocumentPosition(t.dom),prevSibling:e=>u.from(e.dom.previousSibling).map(P.fromDom),nextSibling:j}),property:l({children:q,name:v,parent:V,document:e=>I(e).dom,isText:T,isComment:e=>8===w(e)||"#comment"===v(e),isElement:N,isSpecial:e=>{const t=v(e);return p(["script","noscript","iframe","noframes","noembed","title","style","textarea","xmp"],t)},getLanguage:e=>N(e)?E(e,"lang"):u.none(),getText:e=>ee.get(e),setText:(e,t)=>ee.set(e,t),isBoundary:e=>!!N(e)&&("body"===v(e)||p(te,v(e))),isEmptyTag:e=>!!N(e)&&p(["br","img","hr","input"],v(e)),isNonEditable:e=>N(e)&&"false"===x(e,"contenteditable")}),eq:(e,t)=>e.dom===t.dom,is:B},de="details",le="mce-accordion",ce="mce-accordion-summary",me="mce-accordion-body",ue="div";var ge=tinymce.util.Tools.resolve("tinymce.util.Tools");const pe=e=>"SUMMARY"===(null==e?void 0:e.nodeName),he=e=>"DETAILS"===(null==e?void 0:e.nodeName),fe=e=>e.hasAttribute("open"),ye=e=>{const t=e.selection.getNode();return pe(t)||Boolean(e.dom.getParent(t,pe))},ve=e=>!ye(e)&&e.dom.isEditable(e.selection.getNode()),we=e=>u.from(e.dom.getParent(e.selection.getNode(),he)),be=e=>(e.innerHTML='<br data-mce-bogus="1" />',e),Ne=e=>be(e.dom.create("p")),Te=e=>t=>{((e,t)=>{if(pe(null==t?void 0:t.lastChild)){const o=Ne(e);t.appendChild(o),e.selection.setCursorLocation(o,0)}})(e,t),((e,t)=>{if(!pe(null==t?void 0:t.firstChild)){const o=(e=>be(e.dom.create("summary")))(e);t.prepend(o),e.selection.setCursorLocation(o,0)}})(e,t)},Ae=(e,t)=>{const o=null!=t?t:!fe(e);return o?e.setAttribute("open","open"):e.removeAttribute("open"),o},Ce=e=>{e.addCommand("InsertAccordion",(()=>(e=>{if(!ve(e))return;const o=P.fromDom(e.getBody()),n=(e=>{const o=(new Date).getTime(),n=Math.floor(1e9*Math.random());return t++,"acc_"+n+t+String(o)})(),r=e.dom.encode(e.selection.getRng().toString()||e.translate("Accordion summary...")),s=e.dom.encode(e.translate("Accordion body...")),a=`<summary class="${ce}">${r}</summary>`,i=`<${ue} class="${me}"><p>${s}</p></${ue}>`;e.undoManager.transact((()=>{e.insertContent([`<details data-mce-id="${n}" class="${le}" open="open">`,a,i,"</details>"].join("")),Z(o,`[data-mce-id="${n}"]`).each((t=>{D(t,"data-mce-id"),Z(t,"summary").each((t=>{const o=e.dom.createRng(),n=ae(ie,t);o.setStart(n.element.dom,n.offset),o.setEnd(n.element.dom,n.offset),e.selection.setRng(o)}))}))}))})(e))),e.addCommand("ToggleAccordion",((t,o)=>((e,t)=>{we(e).each((o=>{((e,t,o)=>{e.dispatch("ToggledAccordion",{element:t,state:o})})(e,o,Ae(o,t))}))})(e,o))),e.addCommand("ToggleAllAccordions",((t,o)=>((e,t)=>{const o=Array.from(e.getBody().querySelectorAll("details"));0!==o.length&&(f(o,(e=>Ae(e,null!=t?t:!fe(e)))),((e,t,o)=>{e.dispatch("ToggledAllAccordions",{elements:t,state:o})})(e,o,t))})(e,o))),e.addCommand("RemoveAccordion",(()=>(e=>{we(e).each((t=>{const{nextSibling:o}=t;o?(e.selection.select(o,!0),e.selection.collapse(!0)):((e,t)=>{const o=Ne(e);t.insertAdjacentElement("afterend",o),e.selection.setCursorLocation(o,0)})(e,t),t.remove()}))})(e)))};var Se=tinymce.util.Tools.resolve("tinymce.html.Node");const xe=e=>{var t,o;return null!==(o=null===(t=e.attr("class"))||void 0===t?void 0:t.split(" "))&&void 0!==o?o:[]},Ee=(e,t)=>{const o=new Set([...xe(e),...t]),n=Array.from(o);n.length>0&&e.attr("class",n.join(" "))},De=(e,t)=>{const o=((e,o)=>{const n=[];for(let o=0,s=e.length;o<s;o++){const s=e[o];r=s,!t.has(r)&&n.push(s)}var r;return n})(xe(e));e.attr("class",o.length>0?o.join(" "):null)},Me=e=>e.name===de&&p(xe(e),le),Pe=e=>{const t=e.children();let o,n;const r=[];for(let e=0;e<t.length;e++){const i=t[e];"summary"===i.name&&s(o)?o=i:(a=i).name===ue&&p(xe(a),me)&&s(n)?n=i:r.push(i)}var a;return{summaryNode:o,wrapperNode:n,otherNodes:r}},Oe=e=>{const t=new Se("br",1);t.attr("data-mce-bogus","1"),e.empty(),e.append(t)};var ke=tinymce.util.Tools.resolve("tinymce.util.VK");const Be=e=>{(e=>{e.on("keydown",(t=>{(!t.shiftKey&&t.keyCode===ke.ENTER&&ye(e)||(e=>{const t=e.selection.getRng();return he(t.startContainer)&&t.collapsed&&0===t.startOffset})(e))&&(t.preventDefault(),e.execCommand("ToggleAccordion"))}))})(e),e.on("ExecCommand",(t=>{const o=t.command.toLowerCase();"delete"!==o&&"forwarddelete"!==o||!(e=>we(e).isSome())(e)||(e=>{ge.each(ge.grep(e.dom.select("details",e.getBody())),Te(e))})(e)}))};var Re=tinymce.util.Tools.resolve("tinymce.Env");const Le=e=>t=>{const o=()=>t.setEnabled(ve(e));return e.on("NodeChange",o),()=>e.off("NodeChange",o)};e.add("accordion",(e=>{(e=>{const t=()=>e.execCommand("InsertAccordion");e.ui.registry.addButton("accordion",{icon:"accordion",tooltip:"Insert accordion",onSetup:Le(e),onAction:t}),e.ui.registry.addMenuItem("accordion",{icon:"accordion",text:"Accordion",onSetup:Le(e),onAction:t}),e.ui.registry.addToggleButton("accordiontoggle",{icon:"accordion-toggle",tooltip:"Toggle accordion",onAction:()=>e.execCommand("ToggleAccordion")}),e.ui.registry.addToggleButton("accordionremove",{icon:"remove",tooltip:"Delete accordion",onAction:()=>e.execCommand("RemoveAccordion")}),e.ui.registry.addContextToolbar("accordion",{predicate:t=>e.dom.is(t,"details")&&e.getBody().contains(t)&&e.dom.isEditable(t.parentNode),items:"accordiontoggle accordionremove",scope:"node",position:"node"})})(e),Ce(e),Be(e),(e=>{e.on("PreInit",(()=>{const{serializer:t,parser:o}=e;o.addNodeFilter(de,(e=>{for(let t=0;t<e.length;t++){const o=e[t];if(Me(o)){const e=o,{summaryNode:t,wrapperNode:n,otherNodes:r}=Pe(e),i=a(t),d=i?t:new Se("summary",1);s(d.firstChild)&&Oe(d),Ee(d,[ce]),i||(a(e.firstChild)?e.insert(d,e.firstChild,!0):e.append(d));const l=a(n),c=l?n:new Se(ue,1);if(c.attr("data-mce-bogus","1"),Ee(c,[me]),r.length>0)for(let e=0;e<r.length;e++){const t=r[e];c.append(t)}if(s(c.firstChild)){const e=new Se("p",1);Oe(e),c.append(e)}l||e.append(c)}}})),t.addNodeFilter(de,(e=>{const t=new Set([ce]);for(let o=0;o<e.length;o++){const n=e[o];if(Me(n)){const e=n,{summaryNode:o,wrapperNode:r}=Pe(e);a(o)&&De(o,t),a(r)&&r.unwrap()}}}))}))})(e),(e=>{Re.browser.isSafari()&&e.on("click",(t=>{if(pe(t.target)){const o=t.target,n=e.selection.getRng();n.collapsed&&n.startContainer===o.parentNode&&0===n.startOffset&&e.selection.setCursorLocation(o,0)}}))})(e)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/autoresize/plugin.min.js000064400000004730151213255220022462 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.Env");const o=e=>t=>t.options.get(e),s=o("min_height"),i=o("max_height"),n=o("autoresize_overflow_padding"),r=o("autoresize_bottom_margin"),l=(e,t)=>{const o=e.getBody();o&&(o.style.overflowY=t?"":"hidden",t||(o.scrollTop=0))},g=(e,t,o,s)=>{var i;const n=parseInt(null!==(i=e.getStyle(t,o,s))&&void 0!==i?i:"",10);return isNaN(n)?0:n},a=(e,o,r,c)=>{var d;const f=e.dom,u=e.getDoc();if(!u)return;if((e=>e.plugins.fullscreen&&e.plugins.fullscreen.isFullscreen())(e))return void l(e,!0);const m=u.documentElement,h=c?c():n(e),p=null!==(d=s(e))&&void 0!==d?d:e.getElement().offsetHeight;let y=p;const S=g(f,m,"margin-top",!0),v=g(f,m,"margin-bottom",!0);let C=m.offsetHeight+S+v+h;C<0&&(C=0);const b=e.getContainer().offsetHeight-e.getContentAreaContainer().offsetHeight;C+b>p&&(y=C+b);const w=i(e);if(w&&y>w?(y=w,l(e,!0)):l(e,!1),y!==o.get()){const s=y-o.get();if(f.setStyle(e.getContainer(),"height",y+"px"),o.set(y),(e=>{e.dispatch("ResizeEditor")})(e),t.browser.isSafari()&&(t.os.isMacOS()||t.os.isiOS())){const t=e.getWin();t.scrollTo(t.pageXOffset,t.pageYOffset)}e.hasFocus()&&(e=>{if("setcontent"===(null==e?void 0:e.type.toLowerCase())){const t=e;return!0===t.selection||!0===t.paste}return!1})(r)&&e.selection.scrollIntoView(),(t.browser.isSafari()||t.browser.isChromium())&&s<0&&a(e,o,r,c)}};e.add("autoresize",(e=>{if((e=>{const t=e.options.register;t("autoresize_overflow_padding",{processor:"number",default:1}),t("autoresize_bottom_margin",{processor:"number",default:50})})(e),e.options.isSet("resize")||e.options.set("resize",!1),!e.inline){const o=(e=>{let t=0;return{get:()=>t,set:e=>{t=e}}})();((e,t)=>{e.addCommand("mceAutoResize",(()=>{a(e,t)}))})(e,o),((e,o)=>{let s,i,l=()=>r(e);e.on("init",(i=>{s=0;const r=n(e),g=e.dom;g.setStyles(e.getDoc().documentElement,{height:"auto"}),t.browser.isEdge()||t.browser.isIE()?g.setStyles(e.getBody(),{paddingLeft:r,paddingRight:r,"min-height":0}):g.setStyles(e.getBody(),{paddingLeft:r,paddingRight:r}),a(e,o,i,l),s+=1})),e.on("NodeChange SetContent keyup FullscreenStateChanged ResizeContent",(t=>{if(1===s)i=e.getContainer().offsetHeight,a(e,o,t,l),s+=1;else if(2===s){const t=i<e.getContainer().offsetHeight;if(t){const t=e.dom,o=e.getDoc();t.setStyles(o.documentElement,{"min-height":0}),t.setStyles(e.getBody(),{"min-height":"inherit"})}l=t?(0,()=>0):l,s+=1}else a(e,o,t,l)}))})(e,o)}}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/wordcount/plugin.min.js000064400000027402151213255220022315 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=(null,t=>null===t);const n=t=>t,o=(t,e)=>{const n=t.length,o=new Array(n);for(let r=0;r<n;r++){const n=t[r];o[r]=e(n,r)}return o},r="[-'\\.\u2018\u2019\u2024\ufe52\uff07\uff0e]",c="[:\xb7\xb7\u05f4\u2027\ufe13\ufe55\uff1a]",u="[\xb1+*/,;;\u0589\u060c\u060d\u066c\u07f8\u2044\ufe10\ufe14\ufe50\ufe54\uff0c\uff1b]",s="[0-9\u0660-\u0669\u066b\u06f0-\u06f9\u07c0-\u07c9\u0966-\u096f\u09e6-\u09ef\u0a66-\u0a6f\u0ae6-\u0aef\u0b66-\u0b6f\u0be6-\u0bef\u0c66-\u0c6f\u0ce6-\u0cef\u0d66-\u0d6f\u0e50-\u0e59\u0ed0-\u0ed9\u0f20-\u0f29\u1040-\u1049\u1090-\u1099\u17e0-\u17e9\u1810-\u1819\u1946-\u194f\u19d0-\u19d9\u1a80-\u1a89\u1a90-\u1a99\u1b50-\u1b59\u1bb0-\u1bb9\u1c40-\u1c49\u1c50-\u1c59\ua620-\ua629\ua8d0-\ua8d9\ua900-\ua909\ua9d0-\ua9d9\uaa50-\uaa59\uabf0-\uabf9]",a="\\r",l="\\n",i="[\v\f\x85\u2028\u2029]",d="[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065f\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f\u109a-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b6-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u192b\u1930-\u193b\u19b0-\u19c0\u19c8\u19c9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f\u1b00-\u1b04\u1b34-\u1b44\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1baa\u1be6-\u1bf3\u1c24-\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe3-\uabea\uabec\uabed\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]",g="[\xad\u0600-\u0603\u06dd\u070f\u17b4\u17b5\u200e\u200f\u202a-\u202e\u2060-\u2064\u206a-\u206f\ufeff\ufff9-\ufffb]",p="[\u3031-\u3035\u309b\u309c\u30a0-\u30fa\u30fc-\u30ff\u31f0-\u31ff\u32d0-\u32fe\u3300-\u3357\uff66-\uff9d]",h="[=_\u203f\u2040\u2054\ufe33\ufe34\ufe4d-\ufe4f\uff3f\u2200-\u22ff<>]",C="[~\u2116|!-*+-\\/:;?@\\[-`{}\xa1\xab\xb7\xbb\xbf;\xb7\u055a-\u055f\u0589\u058a\u05be\u05c0\u05c3\u05c6\u05f3\u05f4\u0609\u060a\u060c\u060d\u061b\u061e\u061f\u066a-\u066d\u06d4\u0700-\u070d\u07f7-\u07f9\u0830-\u083e\u085e\u0964\u0965\u0970\u0df4\u0e4f\u0e5a\u0e5b\u0f04-\u0f12\u0f3a-\u0f3d\u0f85\u0fd0-\u0fd4\u0fd9\u0fda\u104a-\u104f\u10fb\u1361-\u1368\u1400\u166d\u166e\u169b\u169c\u16eb-\u16ed\u1735\u1736\u17d4-\u17d6\u17d8-\u17da\u1800-\u180a\u1944\u1945\u1a1e\u1a1f\u1aa0-\u1aa6\u1aa8-\u1aad\u1b5a-\u1b60\u1bfc-\u1bff\u1c3b-\u1c3f\u1c7e\u1c7f\u1cd3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205e\u207d\u207e\u208d\u208e\u3008\u3009\u2768-\u2775\u27c5\u27c6\u27e6-\u27ef\u2983-\u2998\u29d8-\u29db\u29fc\u29fd\u2cf9-\u2cfc\u2cfe\u2cff\u2d70\u2e00-\u2e2e\u2e30\u2e31\u3001-\u3003\u3008-\u3011\u3014-\u301f\u3030\u303d\u30a0\u30fb\ua4fe\ua4ff\ua60d-\ua60f\ua673\ua67e\ua6f2-\ua6f7\ua874-\ua877\ua8ce\ua8cf\ua8f8-\ua8fa\ua92e\ua92f\ua95f\ua9c1-\ua9cd\ua9de\ua9df\uaa5c-\uaa5f\uaade\uaadf\uabeb\ufd3e\ufd3f\ufe10-\ufe19\ufe30-\ufe52\ufe54-\ufe61\ufe63\ufe68\ufe6a\ufe6b\uff01-\uff03\uff05-\uff0a\uff0c-\uff0f\uff1a\uff1b\uff1f\uff20\uff3b-\uff3d\uff3f\uff5b\uff5d\uff5f-\uff65]",y=10,m=[new RegExp("[A-Za-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f3\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u10a0-\u10c5\u10d0-\u10fa\u10fc\u1100-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1a00-\u1a16\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bc0-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u24b6-\u24e9\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2d00-\u2d25\u2d30-\u2d65\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005\u303b\u303c\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790\ua791\ua7a0-\ua7a9\ua7fa-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uffa0-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc]"),new RegExp(r),new RegExp(c),new RegExp(u),new RegExp(s),new RegExp(a),new RegExp(l),new RegExp(i),new RegExp(d),new RegExp(g),new RegExp(p),new RegExp(h),new RegExp("@")],w=new RegExp("^"+C+"$"),W=m,f=t=>{let e=13;const n=W.length;for(let o=0;o<n;++o){const n=W[o];if(n&&n.test(t)){e=o;break}}return e},x=(t,e)=>{const n=t[e],o=t[e+1];if(e<0||e>t.length-1&&0!==e)return!1;if(0===n&&0===o)return!1;const r=t[e+2];if(0===n&&(2===o||1===o||12===o)&&0===r)return!1;const c=t[e-1];return(2!==n&&1!==n&&12!==o||0!==o||0!==c)&&(4!==n&&0!==n||4!==o&&0!==o)&&(3!==n&&1!==n||4!==o||4!==c)&&(4!==n||3!==o&&1!==o||4!==r)&&(8!==n&&9!==n||0!==o&&4!==o&&o!==y&&8!==o&&9!==o)&&(8!==o&&(9!==o||0!==r&&4!==r&&r!==y&&8!==r&&9!==r)||0!==n&&4!==n&&n!==y&&8!==n&&9!==n)&&(5!==n||6!==o)&&(7===n||5===n||6===n||7===o||5===o||6===o||(n!==y||o!==y)&&(11!==o||0!==n&&4!==n&&n!==y&&11!==n)&&(11!==n||0!==o&&4!==o&&o!==y)&&12!==n)},E=/^\s+$/,R=w,S=t=>"http"===t||"https"===t,b=(t,e)=>{const n=((t,e)=>{let n;for(n=e;n<t.length&&!E.test(t[n]);n++);return n})(t,e+1);return"://"===t.slice(e+1,n).join("").substr(0,3)?n:e},v=(t,e,n)=>((t,e,n)=>{n={includeWhitespace:!1,includePunctuation:!1,...n};const r=o(t,e);return((t,e,n,o)=>{const r=[],c=[];let u=[];for(let s=0;s<n.length;++s)if(u.push(t[s]),x(n,s)){const n=e[s];if((o.includeWhitespace||!E.test(n))&&(o.includePunctuation||!R.test(n))){const n=s-u.length+1,o=s+1,a=e.slice(n,o).join("");if(S(a)){const n=b(e,s),r=t.slice(o,n);Array.prototype.push.apply(u,r),s=n}r.push(u),c.push({start:n,end:o})}u=[]}return{words:r,indices:c}})(t,r,(t=>{const e=(t=>{const e={};return n=>{if(e[n])return e[n];{const o=t(n);return e[n]=o,o}}})(f);return o(t,e)})(r),n)})(t,e,n).words;var F=tinymce.util.Tools.resolve("tinymce.dom.TreeWalker");const T=(t,e)=>{const n=e.getBlockElements(),o=e.getVoidElements(),r=t=>n[t.nodeName]||o[t.nodeName],c=[];let u="";const s=new F(t,t);let a;for(;a=s.next();)3===a.nodeType?u+=a.data.replace(/\uFEFF/g,""):r(a)&&u.length&&(c.push(u),u="");return u.length&&c.push(u),c},A=t=>t.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"_").length,B=(t,e)=>{const o=(t=>t.replace(/\u200B/g,""))(T(t,e).join("\n"));return v(o.split(""),n).length},D=(t,e)=>{const n=T(t,e).join("");return A(n)},j=(t,e)=>{const n=T(t,e).join("").replace(/\s/g,"");return A(n)},k=(t,e)=>()=>e(t.getBody(),t.schema),U=(t,e)=>()=>e(t.selection.getRng().cloneContents(),t.schema),M=t=>k(t,B);var P=tinymce.util.Tools.resolve("tinymce.util.Delay");const N=(t,e)=>{((t,e)=>{t.dispatch("wordCountUpdate",{wordCount:{words:e.body.getWordCount(),characters:e.body.getCharacterCount(),charactersWithoutSpaces:e.body.getCharacterCountWithoutSpaces()}})})(t,e)},V=(t,n,o)=>{const r=((t,n)=>{let o=null;return{cancel:()=>{e(o)||(clearTimeout(o),o=null)},throttle:(...r)=>{e(o)&&(o=setTimeout((()=>{o=null,t.apply(null,r)}),n))}}})((()=>N(t,n)),o);t.on("init",(()=>{N(t,n),P.setEditorTimeout(t,(()=>{t.on("SetContent BeforeAddUndo Undo Redo ViewUpdate keyup",r.throttle)}),0),t.on("remove",r.cancel)}))};((e=300)=>{t.add("wordcount",(t=>{const n=(t=>({body:{getWordCount:M(t),getCharacterCount:k(t,D),getCharacterCountWithoutSpaces:k(t,j)},selection:{getWordCount:U(t,B),getCharacterCount:U(t,D),getCharacterCountWithoutSpaces:U(t,j)},getCount:M(t)}))(t);return((t,e)=>{t.addCommand("mceWordCount",(()=>((t,e)=>{t.windowManager.open({title:"Word Count",body:{type:"panel",items:[{type:"table",header:["Count","Document","Selection"],cells:[["Words",String(e.body.getWordCount()),String(e.selection.getWordCount())],["Characters (no spaces)",String(e.body.getCharacterCountWithoutSpaces()),String(e.selection.getCharacterCountWithoutSpaces())],["Characters",String(e.body.getCharacterCount()),String(e.selection.getCharacterCount())]]}]},buttons:[{type:"cancel",name:"close",text:"Close",primary:!0}]})})(t,e)))})(t,n),(t=>{const e=()=>t.execCommand("mceWordCount");t.ui.registry.addButton("wordcount",{tooltip:"Word count",icon:"character-count",onAction:e}),t.ui.registry.addMenuItem("wordcount",{text:"Word count",icon:"character-count",onAction:e})})(t),V(t,n,e),n}))})()}();admin/assets/vendor/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js000064400000032077151213255220023076 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";const e=e=>{let t=e;return{get:()=>t,set:e=>{t=e}}};var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const n=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(n=r=e,(o=String).prototype.isPrototypeOf(n)||(null===(s=r.constructor)||void 0===s?void 0:s.name)===o.name)?"string":t;var n,r,o,s})(t)===e,r=e=>t=>typeof t===e,o=n("string"),s=n("array"),a=r("boolean"),l=r("number"),i=()=>{},c=e=>()=>e,d=c(!0),u=c("[~\u2116|!-*+-\\/:;?@\\[-`{}\xa1\xab\xb7\xbb\xbf;\xb7\u055a-\u055f\u0589\u058a\u05be\u05c0\u05c3\u05c6\u05f3\u05f4\u0609\u060a\u060c\u060d\u061b\u061e\u061f\u066a-\u066d\u06d4\u0700-\u070d\u07f7-\u07f9\u0830-\u083e\u085e\u0964\u0965\u0970\u0df4\u0e4f\u0e5a\u0e5b\u0f04-\u0f12\u0f3a-\u0f3d\u0f85\u0fd0-\u0fd4\u0fd9\u0fda\u104a-\u104f\u10fb\u1361-\u1368\u1400\u166d\u166e\u169b\u169c\u16eb-\u16ed\u1735\u1736\u17d4-\u17d6\u17d8-\u17da\u1800-\u180a\u1944\u1945\u1a1e\u1a1f\u1aa0-\u1aa6\u1aa8-\u1aad\u1b5a-\u1b60\u1bfc-\u1bff\u1c3b-\u1c3f\u1c7e\u1c7f\u1cd3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205e\u207d\u207e\u208d\u208e\u3008\u3009\u2768-\u2775\u27c5\u27c6\u27e6-\u27ef\u2983-\u2998\u29d8-\u29db\u29fc\u29fd\u2cf9-\u2cfc\u2cfe\u2cff\u2d70\u2e00-\u2e2e\u2e30\u2e31\u3001-\u3003\u3008-\u3011\u3014-\u301f\u3030\u303d\u30a0\u30fb\ua4fe\ua4ff\ua60d-\ua60f\ua673\ua67e\ua6f2-\ua6f7\ua874-\ua877\ua8ce\ua8cf\ua8f8-\ua8fa\ua92e\ua92f\ua95f\ua9c1-\ua9cd\ua9de\ua9df\uaa5c-\uaa5f\uaade\uaadf\uabeb\ufd3e\ufd3f\ufe10-\ufe19\ufe30-\ufe52\ufe54-\ufe61\ufe63\ufe68\ufe6a\ufe6b\uff01-\uff03\uff05-\uff0a\uff0c-\uff0f\uff1a\uff1b\uff1f\uff20\uff3b-\uff3d\uff3f\uff5b\uff5d\uff5f-\uff65]");class h{constructor(e,t){this.tag=e,this.value=t}static some(e){return new h(!0,e)}static none(){return h.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?h.some(e(this.value)):h.none()}bind(e){return this.tag?e(this.value):h.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:h.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return null==e?h.none():h.some(e)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}h.singletonNone=new h(!1);const m=u;var g=tinymce.util.Tools.resolve("tinymce.Env"),f=tinymce.util.Tools.resolve("tinymce.util.Tools");const p=Array.prototype.slice,x=Array.prototype.push,y=(e,t)=>{const n=e.length,r=new Array(n);for(let o=0;o<n;o++){const n=e[o];r[o]=t(n,o)}return r},w=(e,t)=>{for(let n=0,r=e.length;n<r;n++)t(e[n],n)},b=(e,t)=>{for(let n=e.length-1;n>=0;n--)t(e[n],n)},v=(e,t)=>(e=>{const t=[];for(let n=0,r=e.length;n<r;++n){if(!s(e[n]))throw new Error("Arr.flatten item "+n+" was not an array, input: "+e);x.apply(t,e[n])}return t})(y(e,t)),C=Object.hasOwnProperty,E=(e,t)=>C.call(e,t);"undefined"!=typeof window?window:Function("return this;")();const O=(3,e=>3===(e=>e.dom.nodeType)(e));const N=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},T=N,k=(e,t)=>({element:e,offset:t}),A=(e,t)=>{((e,t)=>{const n=(e=>h.from(e.dom.parentNode).map(T))(e);n.each((n=>{n.dom.insertBefore(t.dom,e.dom)}))})(e,t),((e,t)=>{e.dom.appendChild(t.dom)})(t,e)},S=((e,t)=>{const n=t=>e(t)?h.from(t.dom.nodeValue):h.none();return{get:t=>{if(!e(t))throw new Error("Can only get text value of a text node");return n(t).getOr("")},getOption:n,set:(t,n)=>{if(!e(t))throw new Error("Can only set raw text value of a text node");t.dom.nodeValue=n}}})(O),B=e=>S.get(e);var F=tinymce.util.Tools.resolve("tinymce.dom.TreeWalker");const I=(e,t)=>e.isBlock(t)||E(e.schema.getVoidElements(),t.nodeName),R=(e,t)=>!e.isEditable(t),M=(e,t)=>!e.isBlock(t)&&E(e.schema.getWhitespaceElements(),t.nodeName),D=(e,t)=>((e,t)=>{const n=(e=>y(e.dom.childNodes,T))(e);return n.length>0&&t<n.length?k(n[t],0):k(e,t)})(T(e),t),P=(e,t,n,r,o,s=!0)=>{let a=s?t(!1):n;for(;a;){const n=R(e,a);if(n||M(e,a)){if(n?r.cef(a):r.boundary(a))break;a=t(!0)}else{if(I(e,a)){if(r.boundary(a))break}else 3===a.nodeType&&r.text(a);if(a===o)break;a=t(!1)}}},W=(e,t,n,r,o)=>{var s;if(((e,t)=>I(e,t)||R(e,t)||M(e,t)||((e,t)=>"true"===e.getContentEditable(t)&&t.parentNode&&!e.isEditable(t.parentNode))(e,t))(e,n))return;const a=null!==(s=e.getParent(r,e.isBlock))&&void 0!==s?s:e.getRoot(),l=new F(n,a),i=o?l.next.bind(l):l.prev.bind(l);P(e,i,n,{boundary:d,cef:d,text:e=>{o?t.fOffset+=e.length:t.sOffset+=e.length,t.elements.push(T(e))}})},$=(e,t,n,r,o,s=!0)=>{const a=new F(n,t),l=[];let i={sOffset:0,fOffset:0,elements:[]};W(e,i,n,t,!1);const c=()=>(i.elements.length>0&&(l.push(i),i={sOffset:0,fOffset:0,elements:[]}),!1);return P(e,a.next.bind(a),n,{boundary:c,cef:e=>(c(),o&&l.push(...o.cef(e)),!1),text:e=>{i.elements.push(T(e)),o&&o.text(e,i)}},r,s),r&&W(e,i,r,t,!0),c(),l},V=(e,t)=>{const n=D(t.startContainer,t.startOffset),r=n.element.dom,o=D(t.endContainer,t.endOffset),s=o.element.dom;return $(e,t.commonAncestorContainer,r,s,{text:(e,t)=>{e===s?t.fOffset+=e.length-o.offset:e===r&&(t.sOffset+=n.offset)},cef:t=>{return((e,t)=>{const n=p.call(e,0);return n.sort(((e,t)=>((e,t)=>((e,t,n)=>0!=(e.compareDocumentPosition(t)&n))(e,t,Node.DOCUMENT_POSITION_PRECEDING))(e.elements[0].dom,t.elements[0].dom)?1:-1)),n})(v((n=T(t),((e,t)=>{const n=void 0===t?document:t.dom;return 1!==(r=n).nodeType&&9!==r.nodeType&&11!==r.nodeType||0===r.childElementCount?[]:y(n.querySelectorAll(e),T);var r})("*[contenteditable=true]",n)),(t=>{const n=t.dom;return $(e,n,n)})));var n}},!1)},j=(e,t)=>t.collapsed?[]:V(e,t),z=(e,t)=>{const n=e.createRng();return n.selectNode(t),j(e,n)},U=(e,t)=>v(t,(t=>{const n=t.elements,r=y(n,B).join(""),o=((e,t,n=0,r=e.length)=>{const o=t.regex;o.lastIndex=n;const s=[];let a;for(;a=o.exec(e);){const e=a[t.matchIndex],n=a.index+a[0].indexOf(e),l=n+e.length;if(l>r)break;s.push({start:n,finish:l}),o.lastIndex=l}return s})(r,e,t.sOffset,r.length-t.fOffset);return((e,t)=>{const n=(r=e,o=(e,n)=>{const r=B(n),o=e.last,s=o+r.length,a=v(t,((e,t)=>e.start<s&&e.finish>o?[{element:n,start:Math.max(o,e.start)-o,finish:Math.min(s,e.finish)-o,matchId:t}]:[]));return{results:e.results.concat(a),last:s}},s={results:[],last:0},w(r,((e,t)=>{s=o(s,e)})),s).results;var r,o,s;return((e,t)=>{if(0===e.length)return[];{let n=t(e[0]);const r=[];let o=[];for(let s=0,a=e.length;s<a;s++){const a=e[s],l=t(a);l!==n&&(r.push(o),o=[]),n=l,o.push(a)}return 0!==o.length&&r.push(o),r}})(n,(e=>e.matchId))})(n,o)})),_=(e,t)=>{b(e,((e,n)=>{b(e,(e=>{const r=T(t.cloneNode(!1));((e,t,n)=>{((e,t,n)=>{if(!(o(n)||a(n)||l(n)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",n,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,n+"")})(e.dom,t,n)})(r,"data-mce-index",n);const s=e.element.dom;if(s.length===e.finish&&0===e.start)A(e.element,r);else{s.length!==e.finish&&s.splitText(e.finish);const t=s.splitText(e.start);A(T(t),r)}}))}))},q=e=>e.getAttribute("data-mce-index"),G=(e,t,n,r)=>{const o=e.dom.create("span",{"data-mce-bogus":1});o.className="mce-match-marker";const s=e.getBody();return te(e,t,!1),r?((e,t,n,r)=>{const o=n.getBookmark(),s=e.select("td[data-mce-selected],th[data-mce-selected]"),a=s.length>0?((e,t)=>v(t,(t=>z(e,t))))(e,s):j(e,n.getRng()),l=U(t,a);return _(l,r),n.moveToBookmark(o),l.length})(e.dom,n,e.selection,o):((e,t,n,r)=>{const o=z(e,n),s=U(t,o);return _(s,r),s.length})(e.dom,n,s,o)},K=e=>{var t;const n=e.parentNode;e.firstChild&&n.insertBefore(e.firstChild,e),null===(t=e.parentNode)||void 0===t||t.removeChild(e)},H=(e,t)=>{const n=[],r=f.toArray(e.getBody().getElementsByTagName("span"));if(r.length)for(let e=0;e<r.length;e++){const o=q(r[e]);null!==o&&o.length&&o===t.toString()&&n.push(r[e])}return n},J=(e,t,n)=>{const r=t.get();let o=r.index;const s=e.dom;n?o+1===r.count?o=0:o++:o-1==-1?o=r.count-1:o--,s.removeClass(H(e,r.index),"mce-match-marker-selected");const a=H(e,o);return a.length?(s.addClass(H(e,o),"mce-match-marker-selected"),e.selection.scrollIntoView(a[0]),o):-1},L=(e,t)=>{const n=t.parentNode;e.remove(t),n&&e.isEmpty(n)&&e.remove(n)},Q=(e,t,n,r,o,s)=>{const a=e.selection,l=((e,t)=>{const n="("+e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&").replace(/\s/g,"[^\\S\\r\\n\\uFEFF]")+")";return t?`(?:^|\\s|${m()})`+n+`(?=$|\\s|${m()})`:n})(n,o),i=a.isForward(),c={regex:new RegExp(l,r?"g":"gi"),matchIndex:1},d=G(e,t,c,s);if(g.browser.isSafari()&&a.setRng(a.getRng(),i),d){const a=J(e,t,!0);t.set({index:a,count:d,text:n,matchCase:r,wholeWord:o,inSelection:s})}return d},X=(e,t)=>{const n=J(e,t,!0);t.set({...t.get(),index:n})},Y=(e,t)=>{const n=J(e,t,!1);t.set({...t.get(),index:n})},Z=e=>{const t=q(e);return null!==t&&t.length>0},ee=(e,t,n,r,o)=>{const s=t.get(),a=s.index;let l,i=a;r=!1!==r;const c=e.getBody(),d=f.grep(f.toArray(c.getElementsByTagName("span")),Z);for(let t=0;t<d.length;t++){const c=q(d[t]);let u=l=parseInt(c,10);if(o||u===s.index){for(n.length?(d[t].innerText=n,K(d[t])):L(e.dom,d[t]);d[++t];){if(u=parseInt(q(d[t]),10),u!==l){t--;break}L(e.dom,d[t])}r&&i--}else l>a&&d[t].setAttribute("data-mce-index",String(l-1))}return t.set({...s,count:o?0:s.count-1,index:i}),r?X(e,t):Y(e,t),!o&&t.get().count>0},te=(e,t,n)=>{let r,o;const s=t.get(),a=f.toArray(e.getBody().getElementsByTagName("span"));for(let e=0;e<a.length;e++){const t=q(a[e]);null!==t&&t.length&&(t===s.index.toString()&&(r||(r=a[e].firstChild),o=a[e].firstChild),K(a[e]))}if(t.set({...s,index:-1,count:0,text:""}),r&&o){const t=e.dom.createRng();return t.setStart(r,0),t.setEnd(o,o.data.length),!1!==n&&e.selection.setRng(t),t}},ne=(t,n)=>{const r=(()=>{const t=(t=>{const n=e(h.none()),r=()=>n.get().each(t);return{clear:()=>{r(),n.set(h.none())},isSet:()=>n.get().isSome(),get:()=>n.get(),set:e=>{r(),n.set(h.some(e))}}})(i);return{...t,on:e=>t.get().each(e)}})();t.undoManager.add();const o=f.trim(t.selection.getContent({format:"text"})),s=e=>{e.setEnabled("next",((e,t)=>t.get().count>1)(0,n)),e.setEnabled("prev",((e,t)=>t.get().count>1)(0,n))},a=(e,t)=>{w(["replace","replaceall","prev","next"],(n=>e.setEnabled(n,!t)))},l=(e,t)=>{t.redial(y(e,t.getData()))},c=(e,t)=>{g.browser.isSafari()&&g.deviceType.isTouch()&&("find"===t||"replace"===t||"replaceall"===t)&&e.focus(t)},d=e=>{te(t,n,!1),a(e,!0),s(e)},u=e=>{const r=e.getData(),o=n.get();if(r.findtext.length){if(o.text===r.findtext&&o.matchCase===r.matchcase&&o.wholeWord===r.wholewords)X(t,n);else{const o=Q(t,n,r.findtext,r.matchcase,r.wholewords,r.inselection);o<=0&&l(!0,e),a(e,0===o)}s(e)}else d(e)},m=n.get(),p={findtext:o,replacetext:"",wholewords:m.wholeWord,matchcase:m.matchCase,inselection:m.inSelection},x=e=>{const t=[{type:"bar",items:[{type:"input",name:"findtext",placeholder:"Find",maximized:!0,inputMode:"search"},{type:"button",name:"prev",text:"Previous",icon:"action-prev",enabled:!1,borderless:!0},{type:"button",name:"next",text:"Next",icon:"action-next",enabled:!1,borderless:!0}]},{type:"input",name:"replacetext",placeholder:"Replace with",inputMode:"search"}];return e&&t.push({type:"alertbanner",level:"error",text:"Could not find the specified string.",icon:"warning"}),t},y=(e,r)=>({title:"Find and Replace",size:"normal",body:{type:"panel",items:x(e)},buttons:[{type:"menu",name:"options",icon:"preferences",tooltip:"Preferences",align:"start",items:[{type:"togglemenuitem",name:"matchcase",text:"Match case"},{type:"togglemenuitem",name:"wholewords",text:"Find whole words only"},{type:"togglemenuitem",name:"inselection",text:"Find in selection"}]},{type:"custom",name:"find",text:"Find",primary:!0},{type:"custom",name:"replace",text:"Replace",enabled:!1},{type:"custom",name:"replaceall",text:"Replace all",enabled:!1}],initialData:r,onChange:(t,r)=>{e&&l(!1,t),"findtext"===r.name&&n.get().count>0&&d(t)},onAction:(e,r)=>{const o=e.getData();switch(r.name){case"find":u(e);break;case"replace":ee(t,n,o.replacetext)?s(e):d(e);break;case"replaceall":ee(t,n,o.replacetext,!0,!0),d(e);break;case"prev":Y(t,n),s(e);break;case"next":X(t,n),s(e);break;case"matchcase":case"wholewords":case"inselection":l(!1,e),(e=>{const t=e.getData(),r=n.get();n.set({...r,matchCase:t.matchcase,wholeWord:t.wholewords,inSelection:t.inselection})})(e),d(e)}c(e,r.name)},onSubmit:e=>{u(e),c(e,"find")},onClose:()=>{t.focus(),te(t,n),t.undoManager.add()}});r.set(t.windowManager.open(y(!1,p),{inline:"toolbar"}))},re=(e,t)=>()=>{ne(e,t)};t.add("searchreplace",(t=>{const n=e({index:-1,count:0,text:"",matchCase:!1,wholeWord:!1,inSelection:!1});return((e,t)=>{e.addCommand("SearchReplace",(()=>{ne(e,t)}))})(t,n),((e,t)=>{e.ui.registry.addMenuItem("searchreplace",{text:"Find and replace...",shortcut:"Meta+F",onAction:re(e,t),icon:"search"}),e.ui.registry.addButton("searchreplace",{tooltip:"Find and replace",onAction:re(e,t),icon:"search"}),e.shortcuts.add("Meta+F","",re(e,t))})(t,n),((e,t)=>({done:n=>te(e,t,n),find:(n,r,o,s=!1)=>Q(e,t,n,r,o,s),next:()=>X(e,t),prev:()=>Y(e,t),replace:(n,r,o)=>ee(e,t,n,r,o)}))(t,n)}))}();admin/assets/vendor/tinymce/js/tinymce/plugins/visualchars/plugin.min.js000064400000013355151213255220022617 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=t=>e=>(t=>{const e=typeof t;return null===t?"null":"object"===e&&Array.isArray(t)?"array":"object"===e&&(n=o=t,(r=String).prototype.isPrototypeOf(n)||(null===(s=o.constructor)||void 0===s?void 0:s.name)===r.name)?"string":e;var n,o,r,s})(e)===t,n=t=>e=>typeof e===t,o=e("string"),r=e("object"),s=(null,t=>null===t);const a=n("boolean"),l=n("number");class i{constructor(t,e){this.tag=t,this.value=e}static some(t){return new i(!0,t)}static none(){return i.singletonNone}fold(t,e){return this.tag?e(this.value):t()}isSome(){return this.tag}isNone(){return!this.tag}map(t){return this.tag?i.some(t(this.value)):i.none()}bind(t){return this.tag?t(this.value):i.none()}exists(t){return this.tag&&t(this.value)}forall(t){return!this.tag||t(this.value)}filter(t){return!this.tag||t(this.value)?this:i.none()}getOr(t){return this.tag?this.value:t}or(t){return this.tag?this:t}getOrThunk(t){return this.tag?this.value:t()}orThunk(t){return this.tag?this:t()}getOrDie(t){if(this.tag)return this.value;throw new Error(null!=t?t:"Called getOrDie on None")}static from(t){return null==t?i.none():i.some(t)}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(t){this.tag&&t(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}i.singletonNone=new i(!1);const u=(t,e)=>{for(let n=0,o=t.length;n<o;n++)e(t[n],n)},c=Object.keys,d=(t,e)=>{const n=c(t);for(let o=0,r=n.length;o<r;o++){const r=n[o];e(t[r],r)}},h="undefined"!=typeof window?window:Function("return this;")(),m=(t,e)=>((t,e)=>{let n=null!=e?e:h;for(let e=0;e<t.length&&null!=n;++e)n=n[t[e]];return n})(t.split("."),e),g=Object.getPrototypeOf,v=t=>{const e=m("ownerDocument.defaultView",t);return r(t)&&((t=>((t,e)=>{const n=((t,e)=>m(t,e))(t,e);if(null==n)throw new Error(t+" not available on this browser");return n})("HTMLElement",t))(e).prototype.isPrototypeOf(t)||/^HTML\w*Element$/.test(g(t).constructor.name))},f=t=>t.dom.nodeValue,p=t=>e=>(t=>t.dom.nodeType)(e)===t,b=t=>w(t)&&v(t.dom),w=p(1),y=p(3),A=(t,e,n)=>{((t,e,n)=>{if(!(o(n)||a(n)||l(n)))throw console.error("Invalid call to Attribute.set. Key ",e,":: Value ",n,":: Element ",t),new Error("Attribute value was not simple");t.setAttribute(e,n+"")})(t.dom,e,n)},k=(t,e)=>{t.dom.removeAttribute(e)},N=(t,e)=>{const n=((t,e)=>{const n=t.dom.getAttribute(e);return null===n?void 0:n})(t,e);return void 0===n||""===n?[]:n.split(" ")},T=t=>void 0!==t.dom.classList,C=t=>{if(null==t)throw new Error("Node cannot be null or undefined");return{dom:t}},E=C,O={"\xa0":"nbsp","\xad":"shy"},L=(t,e)=>{let n="";return d(t,((t,e)=>{n+=e})),new RegExp("["+n+"]",e?"g":"")},V=L(O),j=L(O,!0),B=(t=>{let e="";return d(t,(t=>{e&&(e+=","),e+="span.mce-"+t})),e})(O),S="mce-nbsp",_=t=>t.dom.contentEditable,x=t=>'<span data-mce-bogus="1" class="mce-'+O[t]+'">'+t+"</span>",M=t=>"span"===t.nodeName.toLowerCase()&&t.classList.contains("mce-nbsp-wrap"),P=t=>{const e=f(t);return y(t)&&o(e)&&V.test(e)},D=(t,e,n)=>{let o=[];const r=((t,e)=>{const n=t.length,o=new Array(n);for(let r=0;r<n;r++){const n=t[r];o[r]=e(n,r)}return o})(t.dom.childNodes,E);return u(r,(t=>{var r;n&&(M((r=t).dom)||!(t=>b(t)&&"false"===_(t))(r))&&e(t)&&(o=o.concat([t])),o=o.concat(D(t,e,((t,e)=>{if(b(t)&&!M(t.dom)){const e=_(t);if("true"===e)return!0;if("false"===e)return!1}return e})(t,n)))})),o},H=(t,e)=>{const n=t.dom,o=D(E(e),P,t.dom.isEditable(e));u(o,(e=>{var o;const r=e.dom.parentNode;if(M(r))s=E(r),a=S,T(s)?s.dom.classList.add(a):((t,e)=>{((t,e,n)=>{const o=N(t,e).concat([n]);A(t,e,o.join(" "))})(t,"class",e)})(s,a);else{const r=n.encode(null!==(o=f(e))&&void 0!==o?o:"").replace(j,x),s=n.create("div",{},r);let a;for(;a=s.lastChild;)n.insertAfter(a,e.dom);t.dom.remove(e.dom)}var s,a}))},I=(t,e)=>{const n=t.dom.select(B,e);u(n,(e=>{var n,o;M(e)?(n=E(e),o=S,T(n)?n.dom.classList.remove(o):((t,e)=>{((t,e,n)=>{const o=((t,e)=>{const o=[];for(let e=0,r=t.length;e<r;e++){const r=t[e];r!==n&&o.push(r)}return o})(N(t,e));o.length>0?A(t,e,o.join(" ")):k(t,e)})(t,"class",e)})(n,o),(t=>{const e=T(t)?t.dom.classList:(t=>N(t,"class"))(t);0===e.length&&k(t,"class")})(n)):t.dom.remove(e,!0)}))},$=t=>{const e=t.getBody(),n=t.selection.getBookmark();let o=((t,e)=>{for(;t.parentNode;){if(t.parentNode===e)return e;t=t.parentNode}})(t.selection.getNode(),e);o=void 0!==o?o:e,I(t,o),H(t,o),t.selection.moveToBookmark(n)},F=(t,e)=>{((t,e)=>{t.dispatch("VisualChars",{state:e})})(t,e.get());const n=t.getBody();!0===e.get()?H(t,n):I(t,n)},K=("visualchars_default_state",t=>t.options.get("visualchars_default_state"));const R=(t,e)=>{const n=((t,e)=>{let n=null;return{cancel:()=>{s(n)||(clearTimeout(n),n=null)},throttle:(...e)=>{s(n)&&(n=setTimeout((()=>{n=null,t.apply(null,e)}),300))}}})((()=>{$(t)}));t.on("keydown",(o=>{!0===e.get()&&(13===o.keyCode?$(t):n.throttle())})),t.on("remove",n.cancel)},U=(t,e)=>n=>{n.setActive(e.get());const o=t=>n.setActive(t.state);return t.on("VisualChars",o),()=>t.off("VisualChars",o)};t.add("visualchars",(t=>{(t=>{(0,t.options.register)("visualchars_default_state",{processor:"boolean",default:!1})})(t);const e=(t=>{let e=t;return{get:()=>e,set:t=>{e=t}}})(K(t));return((t,e)=>{t.addCommand("mceVisualChars",(()=>{((t,e)=>{e.set(!e.get());const n=t.selection.getBookmark();F(t,e),t.selection.moveToBookmark(n)})(t,e)}))})(t,e),((t,e)=>{const n=()=>t.execCommand("mceVisualChars");t.ui.registry.addToggleButton("visualchars",{tooltip:"Show invisible characters",icon:"visualchars",onAction:n,onSetup:U(t,e)}),t.ui.registry.addToggleMenuItem("visualchars",{text:"Show invisible characters",icon:"visualchars",onAction:n,onSetup:U(t,e)})})(t,e),R(t,e),((t,e)=>{t.on("init",(()=>{F(t,e)}))})(t,e),(t=>({isEnabled:()=>t.get()}))(e)}))}();admin/assets/vendor/tinymce/js/tinymce/tinymce.min.js000064400001514523151213255230016771 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=function(e){if(null===e)return"null";if(void 0===e)return"undefined";var t=typeof e;return"object"===t&&(Array.prototype.isPrototypeOf(e)||e.constructor&&"Array"===e.constructor.name)?"array":"object"===t&&(String.prototype.isPrototypeOf(e)||e.constructor&&"String"===e.constructor.name)?"string":t},t=function(e){return{eq:e}},n=t((function(e,t){return e===t})),o=function(e){return t((function(t,n){if(t.length!==n.length)return!1;for(var o=t.length,r=0;r<o;r++)if(!e.eq(t[r],n[r]))return!1;return!0}))},r=function(e){return t((function(r,s){var a=Object.keys(r),i=Object.keys(s);if(!function(e,n){return function(e,n){return t((function(t,o){return e.eq(n(t),n(o))}))}(o(e),(function(e){return function(e,t){return Array.prototype.slice.call(e).sort(t)}(e,n)}))}(n).eq(a,i))return!1;for(var l=a.length,d=0;d<l;d++){var c=a[d];if(!e.eq(r[c],s[c]))return!1}return!0}))},s=t((function(t,n){if(t===n)return!0;var a=e(t);return a===e(n)&&(function(e){return-1!==["undefined","boolean","number","string","function","xml","null"].indexOf(e)}(a)?t===n:"array"===a?o(s).eq(t,n):"object"===a&&r(s).eq(t,n))}));const a=Object.getPrototypeOf,i=(e,t,n)=>{var o;return!!n(e,t.prototype)||(null===(o=e.constructor)||void 0===o?void 0:o.name)===t.name},l=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&i(e,String,((e,t)=>t.isPrototypeOf(e)))?"string":t})(t)===e,d=e=>t=>typeof t===e,c=e=>t=>e===t,u=(e,t)=>f(e)&&i(e,t,((e,t)=>a(e)===t)),m=l("string"),f=l("object"),g=e=>u(e,Object),p=l("array"),h=c(null),b=d("boolean"),v=c(void 0),y=e=>null==e,C=e=>!y(e),w=d("function"),x=d("number"),E=(e,t)=>{if(p(e)){for(let n=0,o=e.length;n<o;++n)if(!t(e[n]))return!1;return!0}return!1},_=()=>{},k=(e,t)=>(...n)=>e(t.apply(null,n)),S=(e,t)=>n=>e(t(n)),N=e=>()=>e,R=e=>e,A=(e,t)=>e===t;function T(e,...t){return(...n)=>{const o=t.concat(n);return e.apply(null,o)}}const O=e=>t=>!e(t),B=e=>()=>{throw new Error(e)},P=e=>e(),D=e=>{e()},L=N(!1),M=N(!0);class I{constructor(e,t){this.tag=e,this.value=t}static some(e){return new I(!0,e)}static none(){return I.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?I.some(e(this.value)):I.none()}bind(e){return this.tag?e(this.value):I.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:I.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return C(e)?I.some(e):I.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}I.singletonNone=new I(!1);const F=Array.prototype.slice,U=Array.prototype.indexOf,z=Array.prototype.push,j=(e,t)=>U.call(e,t),H=(e,t)=>j(e,t)>-1,$=(e,t)=>{for(let n=0,o=e.length;n<o;n++)if(t(e[n],n))return!0;return!1},q=(e,t)=>{const n=e.length,o=new Array(n);for(let r=0;r<n;r++){const n=e[r];o[r]=t(n,r)}return o},V=(e,t)=>{for(let n=0,o=e.length;n<o;n++)t(e[n],n)},W=(e,t)=>{for(let n=e.length-1;n>=0;n--)t(e[n],n)},K=(e,t)=>{const n=[],o=[];for(let r=0,s=e.length;r<s;r++){const s=e[r];(t(s,r)?n:o).push(s)}return{pass:n,fail:o}},Y=(e,t)=>{const n=[];for(let o=0,r=e.length;o<r;o++){const r=e[o];t(r,o)&&n.push(r)}return n},G=(e,t,n)=>(W(e,((e,o)=>{n=t(n,e,o)})),n),X=(e,t,n)=>(V(e,((e,o)=>{n=t(n,e,o)})),n),Q=(e,t,n)=>{for(let o=0,r=e.length;o<r;o++){const r=e[o];if(t(r,o))return I.some(r);if(n(r,o))break}return I.none()},J=(e,t)=>Q(e,t,L),Z=(e,t)=>{for(let n=0,o=e.length;n<o;n++)if(t(e[n],n))return I.some(n);return I.none()},ee=e=>{const t=[];for(let n=0,o=e.length;n<o;++n){if(!p(e[n]))throw new Error("Arr.flatten item "+n+" was not an array, input: "+e);z.apply(t,e[n])}return t},te=(e,t)=>ee(q(e,t)),ne=(e,t)=>{for(let n=0,o=e.length;n<o;++n)if(!0!==t(e[n],n))return!1;return!0},oe=e=>{const t=F.call(e,0);return t.reverse(),t},re=(e,t)=>Y(e,(e=>!H(t,e))),se=(e,t)=>{const n={};for(let o=0,r=e.length;o<r;o++){const r=e[o];n[String(r)]=t(r,o)}return n},ae=(e,t)=>{const n=F.call(e,0);return n.sort(t),n},ie=(e,t)=>t>=0&&t<e.length?I.some(e[t]):I.none(),le=e=>ie(e,0),de=e=>ie(e,e.length-1),ce=w(Array.from)?Array.from:e=>F.call(e),ue=(e,t)=>{for(let n=0;n<e.length;n++){const o=t(e[n],n);if(o.isSome())return o}return I.none()},me=Object.keys,fe=Object.hasOwnProperty,ge=(e,t)=>{const n=me(e);for(let o=0,r=n.length;o<r;o++){const r=n[o];t(e[r],r)}},pe=(e,t)=>he(e,((e,n)=>({k:n,v:t(e,n)}))),he=(e,t)=>{const n={};return ge(e,((e,o)=>{const r=t(e,o);n[r.k]=r.v})),n},be=e=>(t,n)=>{e[n]=t},ve=(e,t,n,o)=>{ge(e,((e,r)=>{(t(e,r)?n:o)(e,r)}))},ye=(e,t)=>{const n={};return ve(e,t,be(n),_),n},Ce=(e,t)=>{const n=[];return ge(e,((e,o)=>{n.push(t(e,o))})),n},we=e=>Ce(e,R),xe=(e,t)=>Ee(e,t)?I.from(e[t]):I.none(),Ee=(e,t)=>fe.call(e,t),_e=(e,t)=>Ee(e,t)&&void 0!==e[t]&&null!==e[t],ke=e=>{const t={};return V(e,(e=>{t[e]={}})),me(t)},Se=e=>void 0!==e.length,Ne=Array.isArray,Re=(e,t,n)=>{if(!e)return!1;if(n=n||e,Se(e)){for(let o=0,r=e.length;o<r;o++)if(!1===t.call(n,e[o],o,e))return!1}else for(const o in e)if(Ee(e,o)&&!1===t.call(n,e[o],o,e))return!1;return!0},Ae=(e,t)=>{const n=[];return Re(e,((o,r)=>{n.push(t(o,r,e))})),n},Te=(e,t)=>{const n=[];return Re(e,((o,r)=>{t&&!t(o,r,e)||n.push(o)})),n},Oe=(e,t,n,o)=>{let r=v(n)?e[0]:n;for(let n=0;n<e.length;n++)r=t.call(o,r,e[n],n);return r},Be=(e,t,n)=>{for(let o=0,r=e.length;o<r;o++)if(t.call(n,e[o],o,e))return o;return-1},Pe=e=>e[e.length-1],De=e=>{let t,n=!1;return(...o)=>(n||(n=!0,t=e.apply(null,o)),t)},Le=()=>Me(0,0),Me=(e,t)=>({major:e,minor:t}),Ie={nu:Me,detect:(e,t)=>{const n=String(t).toLowerCase();return 0===e.length?Le():((e,t)=>{const n=((e,t)=>{for(let n=0;n<e.length;n++){const o=e[n];if(o.test(t))return o}})(e,t);if(!n)return{major:0,minor:0};const o=e=>Number(t.replace(n,"$"+e));return Me(o(1),o(2))})(e,n)},unknown:Le},Fe=(e,t)=>{const n=String(t).toLowerCase();return J(e,(e=>e.search(n)))},Ue=(e,t,n)=>""===t||e.length>=t.length&&e.substr(n,n+t.length)===t,ze=(e,t)=>He(e,t)?((e,t)=>e.substring(t))(e,t.length):e,je=(e,t,n=0,o)=>{const r=e.indexOf(t,n);return-1!==r&&(!!v(o)||r+t.length<=o)},He=(e,t)=>Ue(e,t,0),$e=(e,t)=>Ue(e,t,e.length-t.length),qe=e=>t=>t.replace(e,""),Ve=qe(/^\s+|\s+$/g),We=qe(/^\s+/g),Ke=qe(/\s+$/g),Ye=e=>e.length>0,Ge=e=>!Ye(e),Xe=(e,t=10)=>{const n=parseInt(e,t);return isNaN(n)?I.none():I.some(n)},Qe=/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,Je=e=>t=>je(t,e),Ze=[{name:"Edge",versionRegexes:[/.*?edge\/ ?([0-9]+)\.([0-9]+)$/],search:e=>je(e,"edge/")&&je(e,"chrome")&&je(e,"safari")&&je(e,"applewebkit")},{name:"Chromium",brand:"Chromium",versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/,Qe],search:e=>je(e,"chrome")&&!je(e,"chromeframe")},{name:"IE",versionRegexes:[/.*?msie\ ?([0-9]+)\.([0-9]+).*/,/.*?rv:([0-9]+)\.([0-9]+).*/],search:e=>je(e,"msie")||je(e,"trident")},{name:"Opera",versionRegexes:[Qe,/.*?opera\/([0-9]+)\.([0-9]+).*/],search:Je("opera")},{name:"Firefox",versionRegexes:[/.*?firefox\/\ ?([0-9]+)\.([0-9]+).*/],search:Je("firefox")},{name:"Safari",versionRegexes:[Qe,/.*?cpu os ([0-9]+)_([0-9]+).*/],search:e=>(je(e,"safari")||je(e,"mobile/"))&&je(e,"applewebkit")}],et=[{name:"Windows",search:Je("win"),versionRegexes:[/.*?windows\ nt\ ?([0-9]+)\.([0-9]+).*/]},{name:"iOS",search:e=>je(e,"iphone")||je(e,"ipad"),versionRegexes:[/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,/.*cpu os ([0-9]+)_([0-9]+).*/,/.*cpu iphone os ([0-9]+)_([0-9]+).*/]},{name:"Android",search:Je("android"),versionRegexes:[/.*?android\ ?([0-9]+)\.([0-9]+).*/]},{name:"macOS",search:Je("mac os x"),versionRegexes:[/.*?mac\ os\ x\ ?([0-9]+)_([0-9]+).*/]},{name:"Linux",search:Je("linux"),versionRegexes:[]},{name:"Solaris",search:Je("sunos"),versionRegexes:[]},{name:"FreeBSD",search:Je("freebsd"),versionRegexes:[]},{name:"ChromeOS",search:Je("cros"),versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/]}],tt={browsers:N(Ze),oses:N(et)},nt="Edge",ot="Chromium",rt="Opera",st="Firefox",at="Safari",it=e=>{const t=e.current,n=e.version,o=e=>()=>t===e;return{current:t,version:n,isEdge:o(nt),isChromium:o(ot),isIE:o("IE"),isOpera:o(rt),isFirefox:o(st),isSafari:o(at)}},lt=()=>it({current:void 0,version:Ie.unknown()}),dt=it,ct=(N(nt),N(ot),N("IE"),N(rt),N(st),N(at),"Windows"),ut="Android",mt="Linux",ft="macOS",gt="Solaris",pt="FreeBSD",ht="ChromeOS",bt=e=>{const t=e.current,n=e.version,o=e=>()=>t===e;return{current:t,version:n,isWindows:o(ct),isiOS:o("iOS"),isAndroid:o(ut),isMacOS:o(ft),isLinux:o(mt),isSolaris:o(gt),isFreeBSD:o(pt),isChromeOS:o(ht)}},vt=()=>bt({current:void 0,version:Ie.unknown()}),yt=bt,Ct=(N(ct),N("iOS"),N(ut),N(mt),N(ft),N(gt),N(pt),N(ht),e=>window.matchMedia(e).matches);let wt=De((()=>((e,t,n)=>{const o=tt.browsers(),r=tt.oses(),s=t.bind((e=>((e,t)=>ue(t.brands,(t=>{const n=t.brand.toLowerCase();return J(e,(e=>{var t;return n===(null===(t=e.brand)||void 0===t?void 0:t.toLowerCase())})).map((e=>({current:e.name,version:Ie.nu(parseInt(t.version,10),0)})))})))(o,e))).orThunk((()=>((e,t)=>Fe(e,t).map((e=>{const n=Ie.detect(e.versionRegexes,t);return{current:e.name,version:n}})))(o,e))).fold(lt,dt),a=((e,t)=>Fe(e,t).map((e=>{const n=Ie.detect(e.versionRegexes,t);return{current:e.name,version:n}})))(r,e).fold(vt,yt),i=((e,t,n,o)=>{const r=e.isiOS()&&!0===/ipad/i.test(n),s=e.isiOS()&&!r,a=e.isiOS()||e.isAndroid(),i=a||o("(pointer:coarse)"),l=r||!s&&a&&o("(min-device-width:768px)"),d=s||a&&!l,c=t.isSafari()&&e.isiOS()&&!1===/safari/i.test(n),u=!d&&!l&&!c;return{isiPad:N(r),isiPhone:N(s),isTablet:N(l),isPhone:N(d),isTouch:N(i),isAndroid:e.isAndroid,isiOS:e.isiOS,isWebView:N(c),isDesktop:N(u)}})(a,s,e,n);return{browser:s,os:a,deviceType:i}})(navigator.userAgent,I.from(navigator.userAgentData),Ct)));const xt=()=>wt(),Et=navigator.userAgent,_t=xt(),kt=_t.browser,St=_t.os,Nt=_t.deviceType,Rt=-1!==Et.indexOf("Windows Phone"),At={transparentSrc:"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",documentMode:kt.isIE()?document.documentMode||7:10,cacheSuffix:null,container:null,canHaveCSP:!kt.isIE(),windowsPhone:Rt,browser:{current:kt.current,version:kt.version,isChromium:kt.isChromium,isEdge:kt.isEdge,isFirefox:kt.isFirefox,isIE:kt.isIE,isOpera:kt.isOpera,isSafari:kt.isSafari},os:{current:St.current,version:St.version,isAndroid:St.isAndroid,isChromeOS:St.isChromeOS,isFreeBSD:St.isFreeBSD,isiOS:St.isiOS,isLinux:St.isLinux,isMacOS:St.isMacOS,isSolaris:St.isSolaris,isWindows:St.isWindows},deviceType:{isDesktop:Nt.isDesktop,isiPad:Nt.isiPad,isiPhone:Nt.isiPhone,isPhone:Nt.isPhone,isTablet:Nt.isTablet,isTouch:Nt.isTouch,isWebView:Nt.isWebView}},Tt=/^\s*|\s*$/g,Ot=e=>y(e)?"":(""+e).replace(Tt,""),Bt=function(e,t,n,o){o=o||this,e&&(n&&(e=e[n]),Re(e,((e,r)=>!1!==t.call(o,e,r,n)&&(Bt(e,t,n,o),!0))))},Pt={trim:Ot,isArray:Ne,is:(e,t)=>t?!("array"!==t||!Ne(e))||typeof e===t:void 0!==e,toArray:e=>{if(Ne(e))return e;{const t=[];for(let n=0,o=e.length;n<o;n++)t[n]=e[n];return t}},makeMap:(e,t,n={})=>{const o=m(e)?e.split(t||","):e||[];let r=o.length;for(;r--;)n[o[r]]={};return n},each:Re,map:Ae,grep:Te,inArray:(e,t)=>{if(e)for(let n=0,o=e.length;n<o;n++)if(e[n]===t)return n;return-1},hasOwn:Ee,extend:(e,...t)=>{for(let n=0;n<t.length;n++){const o=t[n];for(const t in o)if(Ee(o,t)){const n=o[t];void 0!==n&&(e[t]=n)}}return e},walk:Bt,resolve:(e,t=window)=>{const n=e.split(".");for(let e=0,o=n.length;e<o&&(t=t[n[e]]);e++);return t},explode:(e,t)=>p(e)?e:""===e?[]:Ae(e.split(t||","),Ot),_addCacheSuffix:e=>{const t=At.cacheSuffix;return t&&(e+=(-1===e.indexOf("?")?"?":"&")+t),e}},Dt=(e,t,n=A)=>e.exists((e=>n(e,t))),Lt=(e,t,n=A)=>Mt(e,t,n).getOr(e.isNone()&&t.isNone()),Mt=(e,t,n)=>e.isSome()&&t.isSome()?I.some(n(e.getOrDie(),t.getOrDie())):I.none(),It=(e,t)=>e?I.some(t):I.none(),Ft="undefined"!=typeof window?window:Function("return this;")(),Ut=(e,t)=>((e,t)=>{let n=null!=t?t:Ft;for(let t=0;t<e.length&&null!=n;++t)n=n[e[t]];return n})(e.split("."),t),zt=Object.getPrototypeOf,jt=e=>{const t=Ut("ownerDocument.defaultView",e);return f(e)&&((e=>((e,t)=>{const n=((e,t)=>Ut(e,t))(e,t);if(null==n)throw new Error(e+" not available on this browser");return n})("HTMLElement",e))(t).prototype.isPrototypeOf(e)||/^HTML\w*Element$/.test(zt(e).constructor.name))},Ht=e=>e.dom.nodeName.toLowerCase(),$t=e=>e.dom.nodeType,qt=e=>t=>$t(t)===e,Vt=e=>Wt(e)&&jt(e.dom),Wt=qt(1),Kt=qt(3),Yt=qt(9),Gt=qt(11),Xt=e=>t=>Wt(t)&&Ht(t)===e,Qt=(e,t,n)=>{if(!(m(n)||b(n)||x(n)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",n,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,n+"")},Jt=(e,t,n)=>{Qt(e.dom,t,n)},Zt=(e,t)=>{const n=e.dom;ge(t,((e,t)=>{Qt(n,t,e)}))},en=(e,t)=>{const n=e.dom.getAttribute(t);return null===n?void 0:n},tn=(e,t)=>I.from(en(e,t)),nn=(e,t)=>{const n=e.dom;return!(!n||!n.hasAttribute)&&n.hasAttribute(t)},on=(e,t)=>{e.dom.removeAttribute(t)},rn=e=>X(e.dom.attributes,((e,t)=>(e[t.name]=t.value,e)),{}),sn=(e,t)=>{const n=en(e,t);return void 0===n||""===n?[]:n.split(" ")},an=e=>void 0!==e.dom.classList,ln=e=>sn(e,"class"),dn=(e,t)=>((e,t,n)=>{const o=sn(e,t).concat([n]);return Jt(e,t,o.join(" ")),!0})(e,"class",t),cn=(e,t)=>((e,t,n)=>{const o=Y(sn(e,t),(e=>e!==n));return o.length>0?Jt(e,t,o.join(" ")):on(e,t),!1})(e,"class",t),un=(e,t)=>{an(e)?e.dom.classList.add(t):dn(e,t)},mn=e=>{0===(an(e)?e.dom.classList:ln(e)).length&&on(e,"class")},fn=(e,t)=>{an(e)?e.dom.classList.remove(t):cn(e,t),mn(e)},gn=(e,t)=>an(e)&&e.dom.classList.contains(t),pn=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},hn=(e,t)=>{const n=(t||document).createElement("div");if(n.innerHTML=e,!n.hasChildNodes()||n.childNodes.length>1){const t="HTML does not have a single root node";throw console.error(t,e),new Error(t)}return pn(n.childNodes[0])},bn=(e,t)=>{const n=(t||document).createElement(e);return pn(n)},vn=(e,t)=>{const n=(t||document).createTextNode(e);return pn(n)},yn=pn,Cn=(e,t,n)=>I.from(e.dom.elementFromPoint(t,n)).map(pn),wn=(e,t)=>{const n=[],o=e=>(n.push(e),t(e));let r=t(e);do{r=r.bind(o)}while(r.isSome());return n},xn=(e,t)=>{const n=e.dom;if(1!==n.nodeType)return!1;{const e=n;if(void 0!==e.matches)return e.matches(t);if(void 0!==e.msMatchesSelector)return e.msMatchesSelector(t);if(void 0!==e.webkitMatchesSelector)return e.webkitMatchesSelector(t);if(void 0!==e.mozMatchesSelector)return e.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")}},En=e=>1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType||0===e.childElementCount,_n=(e,t)=>e.dom===t.dom,kn=(e,t)=>{const n=e.dom,o=t.dom;return n!==o&&n.contains(o)},Sn=e=>yn(e.dom.ownerDocument),Nn=e=>Yt(e)?e:Sn(e),Rn=e=>yn(Nn(e).dom.defaultView),An=e=>I.from(e.dom.parentNode).map(yn),Tn=e=>I.from(e.dom.parentElement).map(yn),On=(e,t)=>{const n=w(t)?t:L;let o=e.dom;const r=[];for(;null!==o.parentNode&&void 0!==o.parentNode;){const e=o.parentNode,t=yn(e);if(r.push(t),!0===n(t))break;o=e}return r},Bn=e=>I.from(e.dom.previousSibling).map(yn),Pn=e=>I.from(e.dom.nextSibling).map(yn),Dn=e=>oe(wn(e,Bn)),Ln=e=>wn(e,Pn),Mn=e=>q(e.dom.childNodes,yn),In=(e,t)=>{const n=e.dom.childNodes;return I.from(n[t]).map(yn)},Fn=e=>In(e,0),Un=e=>In(e,e.dom.childNodes.length-1),zn=e=>e.dom.childNodes.length,jn=e=>Gt(e)&&C(e.dom.host),Hn=w(Element.prototype.attachShadow)&&w(Node.prototype.getRootNode),$n=N(Hn),qn=Hn?e=>yn(e.dom.getRootNode()):Nn,Vn=e=>jn(e)?e:(e=>{const t=e.dom.head;if(null==t)throw new Error("Head is not available yet");return yn(t)})(Nn(e)),Wn=e=>yn(e.dom.host),Kn=e=>{if($n()&&C(e.target)){const t=yn(e.target);if(Wt(t)&&Yn(t)&&e.composed&&e.composedPath){const t=e.composedPath();if(t)return le(t)}}return I.from(e.target)},Yn=e=>C(e.dom.shadowRoot),Gn=e=>{const t=Kt(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;const n=t.ownerDocument;return(e=>{const t=qn(e);return jn(t)?I.some(t):I.none()})(yn(t)).fold((()=>n.body.contains(t)),S(Gn,Wn))};var Xn=(e,t,n,o,r)=>e(n,o)?I.some(n):w(r)&&r(n)?I.none():t(n,o,r);const Qn=(e,t,n)=>{let o=e.dom;const r=w(n)?n:L;for(;o.parentNode;){o=o.parentNode;const e=yn(o);if(t(e))return I.some(e);if(r(e))break}return I.none()},Jn=(e,t,n)=>Xn(((e,t)=>t(e)),Qn,e,t,n),Zn=(e,t)=>{const n=e=>{for(let o=0;o<e.childNodes.length;o++){const r=yn(e.childNodes[o]);if(t(r))return I.some(r);const s=n(e.childNodes[o]);if(s.isSome())return s}return I.none()};return n(e.dom)},eo=(e,t,n)=>Qn(e,(e=>xn(e,t)),n),to=(e,t)=>((e,t)=>{const n=void 0===t?document:t.dom;return En(n)?I.none():I.from(n.querySelector(e)).map(yn)})(t,e),no=(e,t,n)=>Xn(((e,t)=>xn(e,t)),eo,e,t,n),oo=(e,t=!1)=>{return Gn(e)?e.dom.isContentEditable:(n=e,no(n,"[contenteditable]")).fold(N(t),(e=>"true"===ro(e)));var n},ro=e=>e.dom.contentEditable,so=e=>void 0!==e.style&&w(e.style.getPropertyValue),ao=(e,t,n)=>{if(!m(n))throw console.error("Invalid call to CSS.set. Property ",t,":: Value ",n,":: Element ",e),new Error("CSS value must be a string: "+n);so(e)&&e.style.setProperty(t,n)},io=(e,t,n)=>{const o=e.dom;ao(o,t,n)},lo=(e,t)=>{const n=e.dom;ge(t,((e,t)=>{ao(n,t,e)}))},co=(e,t)=>{const n=e.dom,o=window.getComputedStyle(n).getPropertyValue(t);return""!==o||Gn(e)?o:uo(n,t)},uo=(e,t)=>so(e)?e.style.getPropertyValue(t):"",mo=(e,t)=>{const n=e.dom,o=uo(n,t);return I.from(o).filter((e=>e.length>0))},fo=e=>{const t={},n=e.dom;if(so(n))for(let e=0;e<n.style.length;e++){const o=n.style.item(e);t[o]=n.style[o]}return t},go=(e,t)=>{((e,t)=>{so(e)&&e.style.removeProperty(t)})(e.dom,t),Dt(tn(e,"style").map(Ve),"")&&on(e,"style")},po=(e,t)=>{An(e).each((n=>{n.dom.insertBefore(t.dom,e.dom)}))},ho=(e,t)=>{Pn(e).fold((()=>{An(e).each((e=>{vo(e,t)}))}),(e=>{po(e,t)}))},bo=(e,t)=>{Fn(e).fold((()=>{vo(e,t)}),(n=>{e.dom.insertBefore(t.dom,n.dom)}))},vo=(e,t)=>{e.dom.appendChild(t.dom)},yo=(e,t)=>{po(e,t),vo(t,e)},Co=(e,t)=>{V(t,(t=>{vo(e,t)}))},wo=e=>{e.dom.textContent="",V(Mn(e),(e=>{xo(e)}))},xo=e=>{const t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)},Eo=e=>{const t=Mn(e);var n,o;t.length>0&&(n=e,V(o=t,((e,t)=>{const r=0===t?n:o[t-1];ho(r,e)}))),xo(e)},_o=e=>q(e,yn),ko=e=>e.dom.innerHTML,So=(e,t)=>{const n=Sn(e).dom,o=yn(n.createDocumentFragment()),r=((e,t)=>{const n=(t||document).createElement("div");return n.innerHTML=e,Mn(yn(n))})(t,n);Co(o,r),wo(e),vo(e,o)},No=(e,t,n,o)=>((e,t,n,o,r)=>{const s=((e,t)=>n=>{e(n)&&t((e=>{const t=yn(Kn(e).getOr(e.target)),n=()=>e.stopPropagation(),o=()=>e.preventDefault(),r=k(o,n);return((e,t,n,o,r,s,a)=>({target:e,x:t,y:n,stop:o,prevent:r,kill:s,raw:a}))(t,e.clientX,e.clientY,n,o,r,e)})(n))})(n,o);return e.dom.addEventListener(t,s,false),{unbind:T(Ro,e,t,s,false)}})(e,t,n,o),Ro=(e,t,n,o)=>{e.dom.removeEventListener(t,n,o)},Ao=(e,t)=>({left:e,top:t,translate:(n,o)=>Ao(e+n,t+o)}),To=Ao,Oo=(e,t)=>void 0!==e?e:void 0!==t?t:0,Bo=e=>{const t=e.dom,n=t.ownerDocument.body;return n===t?To(n.offsetLeft,n.offsetTop):Gn(e)?(e=>{const t=e.getBoundingClientRect();return To(t.left,t.top)})(t):To(0,0)},Po=e=>{const t=void 0!==e?e.dom:document,n=t.body.scrollLeft||t.documentElement.scrollLeft,o=t.body.scrollTop||t.documentElement.scrollTop;return To(n,o)},Do=(e,t,n)=>{const o=(void 0!==n?n.dom:document).defaultView;o&&o.scrollTo(e,t)},Lo=(e,t)=>{xt().browser.isSafari()&&w(e.dom.scrollIntoViewIfNeeded)?e.dom.scrollIntoViewIfNeeded(!1):e.dom.scrollIntoView(t)},Mo=(e,t,n,o)=>({x:e,y:t,width:n,height:o,right:e+n,bottom:t+o}),Io=e=>{const t=void 0===e?window:e,n=t.document,o=Po(yn(n));return(e=>{const t=void 0===e?window:e;return xt().browser.isFirefox()?I.none():I.from(t.visualViewport)})(t).fold((()=>{const e=t.document.documentElement,n=e.clientWidth,r=e.clientHeight;return Mo(o.left,o.top,n,r)}),(e=>Mo(Math.max(e.pageLeft,o.left),Math.max(e.pageTop,o.top),e.width,e.height)))},Fo=(e,t)=>{let n=[];return V(Mn(e),(e=>{t(e)&&(n=n.concat([e])),n=n.concat(Fo(e,t))})),n},Uo=(e,t)=>((e,t)=>{const n=void 0===t?document:t.dom;return En(n)?[]:q(n.querySelectorAll(e),yn)})(t,e),zo=(e,t,n)=>eo(e,t,n).isSome();class jo{constructor(e,t){this.node=e,this.rootNode=t,this.current=this.current.bind(this),this.next=this.next.bind(this),this.prev=this.prev.bind(this),this.prev2=this.prev2.bind(this)}current(){return this.node}next(e){return this.node=this.findSibling(this.node,"firstChild","nextSibling",e),this.node}prev(e){return this.node=this.findSibling(this.node,"lastChild","previousSibling",e),this.node}prev2(e){return this.node=this.findPreviousNode(this.node,e),this.node}findSibling(e,t,n,o){if(e){if(!o&&e[t])return e[t];if(e!==this.rootNode){let t=e[n];if(t)return t;for(let o=e.parentNode;o&&o!==this.rootNode;o=o.parentNode)if(t=o[n],t)return t}}}findPreviousNode(e,t){if(e){const n=e.previousSibling;if(this.rootNode&&n===this.rootNode)return;if(n){if(!t)for(let e=n.lastChild;e;e=e.lastChild)if(!e.lastChild)return e;return n}const o=e.parentNode;if(o&&o!==this.rootNode)return o}}}const Ho=e=>t=>!!t&&t.nodeType===e,$o=e=>!!e&&!Object.getPrototypeOf(e),qo=Ho(1),Vo=e=>qo(e)&&Vt(yn(e)),Wo=e=>{const t=e.toLowerCase();return e=>C(e)&&e.nodeName.toLowerCase()===t},Ko=e=>{const t=e.map((e=>e.toLowerCase()));return e=>{if(e&&e.nodeName){const n=e.nodeName.toLowerCase();return H(t,n)}return!1}},Yo=(e,t)=>{const n=t.toLowerCase().split(" ");return t=>{if(qo(t)){const o=t.ownerDocument.defaultView;if(o)for(let r=0;r<n.length;r++){const s=o.getComputedStyle(t,null);if((s?s.getPropertyValue(e):null)===n[r])return!0}}return!1}},Go=e=>t=>qo(t)&&t.hasAttribute(e),Xo=e=>qo(e)&&e.hasAttribute("data-mce-bogus"),Qo=e=>qo(e)&&"TABLE"===e.tagName,Jo=e=>t=>{if(Vo(t)){if(t.contentEditable===e)return!0;if(t.getAttribute("data-mce-contenteditable")===e)return!0}return!1},Zo=Ko(["textarea","input"]),er=Ho(3),tr=Ho(4),nr=Ho(7),or=Ho(8),rr=Ho(9),sr=Ho(11),ar=Wo("br"),ir=Wo("img"),lr=Jo("true"),dr=Jo("false"),cr=Ko(["td","th"]),ur=Ko(["td","th","caption"]),mr=Ko(["video","audio","object","embed"]),fr=Wo("li"),gr=Wo("details"),pr=Wo("summary"),hr="\ufeff",br="\xa0",vr=e=>e===hr,yr=((e,t)=>{const n=t=>e(t)?I.from(t.dom.nodeValue):I.none();return{get:t=>{if(!e(t))throw new Error("Can only get text value of a text node");return n(t).getOr("")},getOption:n,set:(t,n)=>{if(!e(t))throw new Error("Can only set raw text value of a text node");t.dom.nodeValue=n}}})(Kt),Cr=e=>yr.get(e),wr=e=>yr.getOption(e),xr=e=>{let t;return n=>(t=t||se(e,M),Ee(t,Ht(n)))},Er=e=>Wt(e)&&"br"===Ht(e),_r=xr(["h1","h2","h3","h4","h5","h6","p","div","address","pre","form","blockquote","center","dir","fieldset","header","footer","article","section","hgroup","aside","nav","figure"]),kr=xr(["ul","ol","dl"]),Sr=xr(["li","dd","dt"]),Nr=xr(["thead","tbody","tfoot"]),Rr=xr(["td","th"]),Ar=xr(["pre","script","textarea","style"]),Tr=()=>{const e=bn("br");return Jt(e,"data-mce-bogus","1"),e},Or=e=>{wo(e),vo(e,Tr())},Br=hr,Pr=vr,Dr=e=>e.replace(/\uFEFF/g,""),Lr=qo,Mr=er,Ir=e=>(Mr(e)&&(e=e.parentNode),Lr(e)&&e.hasAttribute("data-mce-caret")),Fr=e=>Mr(e)&&Pr(e.data),Ur=e=>Ir(e)||Fr(e),zr=e=>e.firstChild!==e.lastChild||!ar(e.firstChild),jr=e=>{const t=e.container();return!!er(t)&&(t.data.charAt(e.offset())===Br||e.isAtStart()&&Fr(t.previousSibling))},Hr=e=>{const t=e.container();return!!er(t)&&(t.data.charAt(e.offset()-1)===Br||e.isAtEnd()&&Fr(t.nextSibling))},$r=e=>Mr(e)&&e.data[0]===Br,qr=e=>Mr(e)&&e.data[e.data.length-1]===Br,Vr=e=>e&&e.hasAttribute("data-mce-caret")?((e=>{var t;const n=e.getElementsByTagName("br"),o=n[n.length-1];Xo(o)&&(null===(t=o.parentNode)||void 0===t||t.removeChild(o))})(e),e.removeAttribute("data-mce-caret"),e.removeAttribute("data-mce-bogus"),e.removeAttribute("style"),e.removeAttribute("data-mce-style"),e.removeAttribute("_moz_abspos"),e):null,Wr=e=>Ir(e.startContainer),Kr=lr,Yr=dr,Gr=ar,Xr=er,Qr=Ko(["script","style","textarea"]),Jr=Ko(["img","input","textarea","hr","iframe","video","audio","object","embed"]),Zr=Ko(["table"]),es=Ur,ts=e=>!es(e)&&(Xr(e)?!Qr(e.parentNode):Jr(e)||Gr(e)||Zr(e)||ns(e)),ns=e=>!(e=>qo(e)&&"true"===e.getAttribute("unselectable"))(e)&&Yr(e),os=(e,t)=>ts(e)&&((e,t)=>{for(let n=e.parentNode;n&&n!==t;n=n.parentNode){if(ns(n))return!1;if(Kr(n))return!0}return!0})(e,t),rs=/^[ \t\r\n]*$/,ss=e=>rs.test(e),as=e=>{for(const t of e)if(!vr(t))return!1;return!0},is=e=>"\n"===e||"\r"===e,ls=(e,t=4,n=!0,o=!0)=>{const r=((e,t)=>t<=0?"":new Array(t+1).join(" "))(0,t),s=e.replace(/\t/g,r),a=X(s,((e,t)=>(e=>-1!==" \f\t\v".indexOf(e))(t)||t===br?e.pcIsSpace||""===e.str&&n||e.str.length===s.length-1&&o||((e,t)=>t<e.length&&t>=0&&is(e[t]))(s,e.str.length+1)?{pcIsSpace:!1,str:e.str+br}:{pcIsSpace:!0,str:e.str+" "}:{pcIsSpace:is(t),str:e.str+t}),{pcIsSpace:!1,str:""});return a.str},ds=(e,t)=>ts(e)&&!((e,t)=>er(e)&&ss(e.data)&&!((e,t)=>{const n=yn(t),o=yn(e);return zo(o,"pre,code",T(_n,n))})(e,t))(e,t)||(e=>qo(e)&&"A"===e.nodeName&&!e.hasAttribute("href")&&(e.hasAttribute("name")||e.hasAttribute("id")))(e)||cs(e),cs=Go("data-mce-bookmark"),us=Go("data-mce-bogus"),ms=("data-mce-bogus","all",e=>qo(e)&&"all"===e.getAttribute("data-mce-bogus"));const fs=e=>Tn(yn(e)).exists((e=>!oo(e))),gs=(e,t=!0)=>((e,t)=>{let n=0;if(ds(e,e))return!1;{let o=e.firstChild;if(!o)return!0;const r=new jo(o,e);do{if(t){if(ms(o)){o=r.next(!0);continue}if(us(o)){o=r.next();continue}}if(lr(o)&&fs(o))return!1;if(ar(o))n++,o=r.next();else{if(ds(o,e))return!1;o=r.next()}}while(o);return n<=1}})(e.dom,t),ps=e=>"svg"===e.toLowerCase(),hs=e=>ps(e.nodeName),bs=e=>"svg"===(null==e?void 0:e.nodeName)?"svg":"html",vs=["svg"],ys="data-mce-block",Cs=e=>q((e=>Y(me(e),(e=>!/[A-Z]/.test(e))))(e),(e=>`${e}:`+q(vs,(t=>`not(${t} ${e})`)).join(":"))).join(","),ws=(e,t)=>C(t.querySelector(e))?(t.setAttribute(ys,"true"),"inline-boundary"===t.getAttribute("data-mce-selected")&&t.removeAttribute("data-mce-selected"),!0):(t.removeAttribute(ys),!1),xs=(e,t)=>{const n=Cs(e.getTransparentElements()),o=Cs(e.getBlockElements());return Y(t.querySelectorAll(n),(e=>ws(o,e)))},Es=(e,t)=>{var n;const o=t?"lastChild":"firstChild";for(let t=e[o];t;t=t[o])if(gs(yn(t)))return void(null===(n=t.parentNode)||void 0===n||n.removeChild(t))},_s=(e,t,n)=>{const o=e.getBlockElements(),r=yn(t),s=e=>Ht(e)in o,a=e=>_n(e,r);V(_o(n),(t=>{Qn(t,s,a).each((n=>{const o=((t,o)=>Y(Mn(t),(t=>s(t)&&!e.isValidChild(Ht(n),Ht(t)))))(t);if(o.length>0){const t=Tn(n);V(o,(e=>{Qn(e,s,a).each((t=>{((e,t)=>{const n=document.createRange(),o=e.parentNode;if(o){n.setStartBefore(e),n.setEndBefore(t);const r=n.extractContents();Es(r,!0),n.setStartAfter(t),n.setEndAfter(e);const s=n.extractContents();Es(s,!1),gs(yn(r))||o.insertBefore(r,e),gs(yn(t))||o.insertBefore(t,e),gs(yn(s))||o.insertBefore(s,e),o.removeChild(e)}})(t.dom,e.dom)}))})),t.each((t=>xs(e,t.dom)))}}))}))},ks=(e,t)=>{const n=xs(e,t);_s(e,t,n),((e,t,n)=>{V([...n,...Ts(e,t)?[t]:[]],(t=>V(Uo(yn(t),t.nodeName.toLowerCase()),(t=>{Os(e,t.dom)&&Eo(t)}))))})(e,t,n)},Ss=(e,t)=>{if(As(e,t)){const n=Cs(e.getBlockElements());ws(n,t)}},Ns=e=>e.hasAttribute(ys),Rs=(e,t)=>Ee(e.getTransparentElements(),t),As=(e,t)=>qo(t)&&Rs(e,t.nodeName),Ts=(e,t)=>As(e,t)&&Ns(t),Os=(e,t)=>As(e,t)&&!Ns(t),Bs=(e,t)=>1===t.type&&Rs(e,t.name)&&m(t.attr(ys)),Ps=xt().browser,Ds=e=>J(e,Wt),Ls=(e,t)=>e.children&&H(e.children,t),Ms=(e,t={})=>{let n=0;const o={},r=yn(e),s=Nn(r),a=e=>{vo(Vn(r),e)},i=e=>{const t=Vn(r);to(t,"#"+e).each(xo)},l=e=>xe(o,e).getOrThunk((()=>({id:"mce-u"+n++,passed:[],failed:[],count:0}))),d=e=>new Promise(((n,r)=>{let i;const d=Pt._addCacheSuffix(e),c=l(d);o[d]=c,c.count++;const u=(e,t)=>{V(e,D),c.status=t,c.passed=[],c.failed=[],i&&(i.onload=null,i.onerror=null,i=null)},m=()=>u(c.passed,2),f=()=>u(c.failed,3);if(n&&c.passed.push(n),r&&c.failed.push(r),1===c.status)return;if(2===c.status)return void m();if(3===c.status)return void f();c.status=1;const g=bn("link",s.dom);Zt(g,{rel:"stylesheet",type:"text/css",id:c.id}),t.contentCssCors&&Jt(g,"crossOrigin","anonymous"),t.referrerPolicy&&Jt(g,"referrerpolicy",t.referrerPolicy),i=g.dom,i.onload=m,i.onerror=f,a(g),Jt(g,"href",d)})),c=e=>{const t=Pt._addCacheSuffix(e);xe(o,t).each((e=>{0==--e.count&&(delete o[t],i(e.id))}))};return{load:d,loadRawCss:(e,t)=>{const n=l(e);o[e]=n,n.count++;const r=bn("style",s.dom);Zt(r,{rel:"stylesheet",type:"text/css",id:n.id}),r.dom.innerHTML=t,a(r)},loadAll:e=>Promise.allSettled(q(e,(e=>d(e).then(N(e))))).then((e=>{const t=K(e,(e=>"fulfilled"===e.status));return t.fail.length>0?Promise.reject(q(t.fail,(e=>e.reason))):q(t.pass,(e=>e.value))})),unload:c,unloadRawCss:e=>{xe(o,e).each((t=>{0==--t.count&&(delete o[e],i(t.id))}))},unloadAll:e=>{V(e,(e=>{c(e)}))},_setReferrerPolicy:e=>{t.referrerPolicy=e},_setContentCssCors:e=>{t.contentCssCors=e}}},Is=(()=>{const e=new WeakMap;return{forElement:(t,n)=>{const o=qn(t).dom;return I.from(e.get(o)).getOrThunk((()=>{const t=Ms(o,n);return e.set(o,t),t}))}}})(),Fs=(e,t,n)=>C(e)&&(ds(e,t)||n.isInline(e.nodeName.toLowerCase())),Us=e=>(e=>"span"===e.nodeName.toLowerCase())(e)&&"bookmark"===e.getAttribute("data-mce-type"),zs=(e,t,n,o)=>{var r;const s=o||t;if(qo(t)&&Us(t))return t;const a=t.childNodes;for(let t=a.length-1;t>=0;t--)zs(e,a[t],n,s);if(qo(t)){const e=t.childNodes;1===e.length&&Us(e[0])&&(null===(r=t.parentNode)||void 0===r||r.insertBefore(e[0],t))}return(e=>sr(e)||rr(e))(t)||ds(t,s)||(e=>!!qo(e)&&e.childNodes.length>0)(t)||((e,t,n)=>er(e)&&e.data.length>0&&((e,t,n)=>{const o=new jo(e,t).prev(!1),r=new jo(e,t).next(!1),s=v(o)||Fs(o,t,n),a=v(r)||Fs(r,t,n);return s&&a})(e,t,n))(t,s,n)||e.remove(t),t},js=Pt.makeMap,Hs=/[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,$s=/[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,qs=/[<>&\"\']/g,Vs=/&#([a-z0-9]+);?|&([a-z0-9]+);/gi,Ws={128:"\u20ac",130:"\u201a",131:"\u0192",132:"\u201e",133:"\u2026",134:"\u2020",135:"\u2021",136:"\u02c6",137:"\u2030",138:"\u0160",139:"\u2039",140:"\u0152",142:"\u017d",145:"\u2018",146:"\u2019",147:"\u201c",148:"\u201d",149:"\u2022",150:"\u2013",151:"\u2014",152:"\u02dc",153:"\u2122",154:"\u0161",155:"\u203a",156:"\u0153",158:"\u017e",159:"\u0178"},Ks={'"':"&quot;","'":"&#39;","<":"&lt;",">":"&gt;","&":"&amp;","`":"&#96;"},Ys={"&lt;":"<","&gt;":">","&amp;":"&","&quot;":'"',"&apos;":"'"},Gs=(e,t)=>{const n={};if(e){const o=e.split(",");t=t||10;for(let e=0;e<o.length;e+=2){const r=String.fromCharCode(parseInt(o[e],t));if(!Ks[r]){const t="&"+o[e+1]+";";n[r]=t,n[t]=r}}return n}},Xs=Gs("50,nbsp,51,iexcl,52,cent,53,pound,54,curren,55,yen,56,brvbar,57,sect,58,uml,59,copy,5a,ordf,5b,laquo,5c,not,5d,shy,5e,reg,5f,macr,5g,deg,5h,plusmn,5i,sup2,5j,sup3,5k,acute,5l,micro,5m,para,5n,middot,5o,cedil,5p,sup1,5q,ordm,5r,raquo,5s,frac14,5t,frac12,5u,frac34,5v,iquest,60,Agrave,61,Aacute,62,Acirc,63,Atilde,64,Auml,65,Aring,66,AElig,67,Ccedil,68,Egrave,69,Eacute,6a,Ecirc,6b,Euml,6c,Igrave,6d,Iacute,6e,Icirc,6f,Iuml,6g,ETH,6h,Ntilde,6i,Ograve,6j,Oacute,6k,Ocirc,6l,Otilde,6m,Ouml,6n,times,6o,Oslash,6p,Ugrave,6q,Uacute,6r,Ucirc,6s,Uuml,6t,Yacute,6u,THORN,6v,szlig,70,agrave,71,aacute,72,acirc,73,atilde,74,auml,75,aring,76,aelig,77,ccedil,78,egrave,79,eacute,7a,ecirc,7b,euml,7c,igrave,7d,iacute,7e,icirc,7f,iuml,7g,eth,7h,ntilde,7i,ograve,7j,oacute,7k,ocirc,7l,otilde,7m,ouml,7n,divide,7o,oslash,7p,ugrave,7q,uacute,7r,ucirc,7s,uuml,7t,yacute,7u,thorn,7v,yuml,ci,fnof,sh,Alpha,si,Beta,sj,Gamma,sk,Delta,sl,Epsilon,sm,Zeta,sn,Eta,so,Theta,sp,Iota,sq,Kappa,sr,Lambda,ss,Mu,st,Nu,su,Xi,sv,Omicron,t0,Pi,t1,Rho,t3,Sigma,t4,Tau,t5,Upsilon,t6,Phi,t7,Chi,t8,Psi,t9,Omega,th,alpha,ti,beta,tj,gamma,tk,delta,tl,epsilon,tm,zeta,tn,eta,to,theta,tp,iota,tq,kappa,tr,lambda,ts,mu,tt,nu,tu,xi,tv,omicron,u0,pi,u1,rho,u2,sigmaf,u3,sigma,u4,tau,u5,upsilon,u6,phi,u7,chi,u8,psi,u9,omega,uh,thetasym,ui,upsih,um,piv,812,bull,816,hellip,81i,prime,81j,Prime,81u,oline,824,frasl,88o,weierp,88h,image,88s,real,892,trade,89l,alefsym,8cg,larr,8ch,uarr,8ci,rarr,8cj,darr,8ck,harr,8dl,crarr,8eg,lArr,8eh,uArr,8ei,rArr,8ej,dArr,8ek,hArr,8g0,forall,8g2,part,8g3,exist,8g5,empty,8g7,nabla,8g8,isin,8g9,notin,8gb,ni,8gf,prod,8gh,sum,8gi,minus,8gn,lowast,8gq,radic,8gt,prop,8gu,infin,8h0,ang,8h7,and,8h8,or,8h9,cap,8ha,cup,8hb,int,8hk,there4,8hs,sim,8i5,cong,8i8,asymp,8j0,ne,8j1,equiv,8j4,le,8j5,ge,8k2,sub,8k3,sup,8k4,nsub,8k6,sube,8k7,supe,8kl,oplus,8kn,otimes,8l5,perp,8m5,sdot,8o8,lceil,8o9,rceil,8oa,lfloor,8ob,rfloor,8p9,lang,8pa,rang,9ea,loz,9j0,spades,9j3,clubs,9j5,hearts,9j6,diams,ai,OElig,aj,oelig,b0,Scaron,b1,scaron,bo,Yuml,m6,circ,ms,tilde,802,ensp,803,emsp,809,thinsp,80c,zwnj,80d,zwj,80e,lrm,80f,rlm,80j,ndash,80k,mdash,80o,lsquo,80p,rsquo,80q,sbquo,80s,ldquo,80t,rdquo,80u,bdquo,810,dagger,811,Dagger,81g,permil,81p,lsaquo,81q,rsaquo,85c,euro",32),Qs=(e,t)=>e.replace(t?Hs:$s,(e=>Ks[e]||e)),Js=(e,t)=>e.replace(t?Hs:$s,(e=>e.length>1?"&#"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+";":Ks[e]||"&#"+e.charCodeAt(0)+";")),Zs=(e,t,n)=>{const o=n||Xs;return e.replace(t?Hs:$s,(e=>Ks[e]||o[e]||e))},ea={encodeRaw:Qs,encodeAllRaw:e=>(""+e).replace(qs,(e=>Ks[e]||e)),encodeNumeric:Js,encodeNamed:Zs,getEncodeFunc:(e,t)=>{const n=Gs(t)||Xs,o=js(e.replace(/\+/g,","));return o.named&&o.numeric?(e,t)=>e.replace(t?Hs:$s,(e=>void 0!==Ks[e]?Ks[e]:void 0!==n[e]?n[e]:e.length>1?"&#"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+";":"&#"+e.charCodeAt(0)+";")):o.named?t?(e,t)=>Zs(e,t,n):Zs:o.numeric?Js:Qs},decode:e=>e.replace(Vs,((e,t)=>t?(t="x"===t.charAt(0).toLowerCase()?parseInt(t.substr(1),16):parseInt(t,10))>65535?(t-=65536,String.fromCharCode(55296+(t>>10),56320+(1023&t))):Ws[t]||String.fromCharCode(t):Ys[e]||Xs[e]||(e=>{const t=bn("div").dom;return t.innerHTML=e,t.textContent||t.innerText||e})(e)))},ta=(e,t)=>(e=Pt.trim(e))?e.split(t||" "):[],na=e=>new RegExp("^"+e.replace(/([?+*])/g,".$1")+"$"),oa={},ra=Pt.makeMap,sa=Pt.each,aa=Pt.extend,ia=Pt.explode,la=(e,t={})=>{const n=ra(e," ",ra(e.toUpperCase()," "));return aa(n,t)},da=e=>la("td th li dt dd figcaption caption details summary",e.getTextBlockElements()),ca=(e,t)=>{if(e){const n={};return m(e)&&(e={"*":e}),sa(e,((e,o)=>{n[o]=n[o.toUpperCase()]="map"===t?ra(e,/[, ]/):ia(e,/[, ]/)})),n}},ua=(e={})=>{var t;const n={},o={};let r=[];const s={},a={},i=(t,n,o)=>{const r=e[t];if(r)return ra(r,/[, ]/,ra(r.toUpperCase(),/[, ]/));{let e=oa[t];return e||(e=la(n,o),oa[t]=e),e}},l=null!==(t=e.schema)&&void 0!==t?t:"html5",d=(e=>{const{globalAttributes:t,phrasingContent:n,flowContent:o}=(e=>{let t,n,o;t="id accesskey class dir lang style tabindex title role",n="address blockquote div dl fieldset form h1 h2 h3 h4 h5 h6 hr menu ol p pre table ul",o="a abbr b bdo br button cite code del dfn em embed i iframe img input ins kbd label map noscript object q s samp script select small span strong sub sup textarea u var #text #comment","html4"!==e&&(t+=" contenteditable contextmenu draggable dropzone hidden spellcheck translate",n+=" article aside details dialog figure main header footer hgroup section nav a ins del canvas map",o+=" audio canvas command datalist mark meter output picture progress time wbr video ruby bdi keygen svg"),"html5-strict"!==e&&(t+=" xml:lang",o=[o,"acronym applet basefont big font strike tt"].join(" "),n=[n,"center dir isindex noframes"].join(" "));const r=[n,o].join(" ");return{globalAttributes:t,blockContent:n,phrasingContent:o,flowContent:r}})(e),r={},s=(e,t,n)=>{r[e]={attributes:se(t,N({})),attributesOrder:t,children:se(n,N({}))}},a=(e,n="",o="")=>{const r=ta(o),a=ta(e);let i=a.length;const l=ta([t,n].join(" "));for(;i--;)s(a[i],l.slice(),r)},i=(e,t)=>{const n=ta(e),o=ta(t);let s=n.length;for(;s--;){const e=r[n[s]];for(let t=0,n=o.length;t<n;t++)e.attributes[o[t]]={},e.attributesOrder.push(o[t])}};return"html5-strict"!==e&&(V(ta("acronym applet basefont big font strike tt"),(e=>{a(e,"",n)})),V(ta("center dir isindex noframes"),(e=>{a(e,"",o)}))),a("html","manifest","head body"),a("head","","base command link meta noscript script style title"),a("title hr noscript br"),a("base","href target"),a("link","href rel media hreflang type sizes hreflang"),a("meta","name http-equiv content charset"),a("style","media type scoped"),a("script","src async defer type charset"),a("body","onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload onmessage onoffline ononline onpagehide onpageshow onpopstate onresize onscroll onstorage onunload",o),a("dd div","",o),a("address dt caption","","html4"===e?n:o),a("h1 h2 h3 h4 h5 h6 pre p abbr code var samp kbd sub sup i b u bdo span legend em strong small s cite dfn","",n),a("blockquote","cite",o),a("ol","reversed start type","li"),a("ul","","li"),a("li","value",o),a("dl","","dt dd"),a("a","href target rel media hreflang type","html4"===e?n:o),a("q","cite",n),a("ins del","cite datetime",o),a("img","src sizes srcset alt usemap ismap width height"),a("iframe","src name width height",o),a("embed","src type width height"),a("object","data type typemustmatch name usemap form width height",[o,"param"].join(" ")),a("param","name value"),a("map","name",[o,"area"].join(" ")),a("area","alt coords shape href target rel media hreflang type"),a("table","border","caption colgroup thead tfoot tbody tr"+("html4"===e?" col":"")),a("colgroup","span","col"),a("col","span"),a("tbody thead tfoot","","tr"),a("tr","","td th"),a("td","colspan rowspan headers",o),a("th","colspan rowspan headers scope abbr",o),a("form","accept-charset action autocomplete enctype method name novalidate target",o),a("fieldset","disabled form name",[o,"legend"].join(" ")),a("label","form for",n),a("input","accept alt autocomplete checked dirname disabled form formaction formenctype formmethod formnovalidate formtarget height list max maxlength min multiple name pattern readonly required size src step type value width"),a("button","disabled form formaction formenctype formmethod formnovalidate formtarget name type value","html4"===e?o:n),a("select","disabled form multiple name required size","option optgroup"),a("optgroup","disabled label","option"),a("option","disabled label selected value"),a("textarea","cols dirname disabled form maxlength name readonly required rows wrap"),a("menu","type label",[o,"li"].join(" ")),a("noscript","",o),"html4"!==e&&(a("wbr"),a("ruby","",[n,"rt rp"].join(" ")),a("figcaption","",o),a("mark rt rp bdi","",n),a("summary","",[n,"h1 h2 h3 h4 h5 h6"].join(" ")),a("canvas","width height",o),a("video","src crossorigin poster preload autoplay mediagroup loop muted controls width height buffered",[o,"track source"].join(" ")),a("audio","src crossorigin preload autoplay mediagroup loop muted controls buffered volume",[o,"track source"].join(" ")),a("picture","","img source"),a("source","src srcset type media sizes"),a("track","kind src srclang label default"),a("datalist","",[n,"option"].join(" ")),a("article section nav aside main header footer","",o),a("hgroup","","h1 h2 h3 h4 h5 h6"),a("figure","",[o,"figcaption"].join(" ")),a("time","datetime",n),a("dialog","open",o),a("command","type label icon disabled checked radiogroup command"),a("output","for form name",n),a("progress","value max",n),a("meter","value min max low high optimum",n),a("details","open",[o,"summary"].join(" ")),a("keygen","autofocus challenge disabled form keytype name"),s("svg","id tabindex lang xml:space class style x y width height viewBox preserveAspectRatio zoomAndPan transform".split(" "),[])),"html5-strict"!==e&&(i("script","language xml:space"),i("style","xml:space"),i("object","declare classid code codebase codetype archive standby align border hspace vspace"),i("embed","align name hspace vspace"),i("param","valuetype type"),i("a","charset name rev shape coords"),i("br","clear"),i("applet","codebase archive code object alt name width height align hspace vspace"),i("img","name longdesc align border hspace vspace"),i("iframe","longdesc frameborder marginwidth marginheight scrolling align"),i("font basefont","size color face"),i("input","usemap align"),i("select"),i("textarea"),i("h1 h2 h3 h4 h5 h6 div p legend caption","align"),i("ul","type compact"),i("li","type"),i("ol dl menu dir","compact"),i("pre","width xml:space"),i("hr","align noshade size width"),i("isindex","prompt"),i("table","summary width frame rules cellspacing cellpadding align bgcolor"),i("col","width align char charoff valign"),i("colgroup","width align char charoff valign"),i("thead","align char charoff valign"),i("tr","align char charoff valign bgcolor"),i("th","axis align char charoff valign nowrap bgcolor width height"),i("form","accept"),i("td","abbr axis scope align char charoff valign nowrap bgcolor width height"),i("tfoot","align char charoff valign"),i("tbody","align char charoff valign"),i("area","nohref"),i("body","background bgcolor text link vlink alink")),"html4"!==e&&(i("input button select textarea","autofocus"),i("input textarea","placeholder"),i("a","download"),i("link script img","crossorigin"),i("img","loading"),i("iframe","sandbox seamless allow allowfullscreen loading")),"html4"!==e&&V([r.video,r.audio],(e=>{delete e.children.audio,delete e.children.video})),V(ta("a form meter progress dfn"),(e=>{r[e]&&delete r[e].children[e]})),delete r.caption.children.table,delete r.script,r})(l);!1===e.verify_html&&(e.valid_elements="*[*]");const c=ca(e.valid_styles),u=ca(e.invalid_styles,"map"),m=ca(e.valid_classes,"map"),f=i("whitespace_elements","pre script noscript style textarea video audio iframe object code"),g=i("self_closing_elements","colgroup dd dt li option p td tfoot th thead tr"),p=i("void_elements","area base basefont br col frame hr img input isindex link meta param embed source wbr track"),h=i("boolean_attributes","checked compact declare defer disabled ismap multiple nohref noresize noshade nowrap readonly selected autoplay loop controls allowfullscreen"),b="td th iframe video audio object script code",v=i("non_empty_elements",b+" pre svg",p),y=i("move_caret_before_on_enter_elements",b+" table",p),C="h1 h2 h3 h4 h5 h6",w=i("text_block_elements",C+" p div address pre form blockquote center dir fieldset header footer article section hgroup aside main nav figure"),x=i("block_elements","hr table tbody thead tfoot th tr td li ol ul caption dl dt dd noscript menu isindex option datalist select optgroup figcaption details summary html body multicol listing",w),E=i("text_inline_elements","span strong b em i font s strike u var cite dfn code mark q sup sub samp"),_=i("transparent_elements","a ins del canvas map"),k=i("wrap_block_elements","pre "+C);sa("script noscript iframe noframes noembed title style textarea xmp plaintext".split(" "),(e=>{a[e]=new RegExp("</"+e+"[^>]*>","gi")}));const S=e=>{const t=I.from(n["@"]),o=/[*?+]/;V(((e,t)=>{const n=/^([#+\-])?([^\[!\/]+)(?:\/([^\[!]+))?(?:(!?)\[([^\]]+)])?$/;return te(ta(t,","),(t=>{const o=n.exec(t);if(o){const t=o[1],n=o[2],r=o[3],s=o[4],a=o[5],i={attributes:{},attributesOrder:[]};if(e.each((e=>((e,t)=>{ge(e.attributes,((e,n)=>{t.attributes[n]=e})),t.attributesOrder.push(...e.attributesOrder)})(e,i))),"#"===t?i.paddEmpty=!0:"-"===t&&(i.removeEmpty=!0),"!"===s&&(i.removeEmptyAttrs=!0),a&&((e,t)=>{const n=/^([!\-])?(\w+[\\:]:\w+|[^=~<]+)?(?:([=~<])(.*))?$/,o=/[*?+]/,{attributes:r,attributesOrder:s}=t;V(ta(e,"|"),(e=>{const a=n.exec(e);if(a){const e={},n=a[1],i=a[2].replace(/[\\:]:/g,":"),l=a[3],d=a[4];if("!"===n&&(t.attributesRequired=t.attributesRequired||[],t.attributesRequired.push(i),e.required=!0),"-"===n)return delete r[i],void s.splice(Pt.inArray(s,i),1);if(l&&("="===l?(t.attributesDefault=t.attributesDefault||[],t.attributesDefault.push({name:i,value:d}),e.defaultValue=d):"~"===l?(t.attributesForced=t.attributesForced||[],t.attributesForced.push({name:i,value:d}),e.forcedValue=d):"<"===l&&(e.validValues=Pt.makeMap(d,"?"))),o.test(i)){const n=e;t.attributePatterns=t.attributePatterns||[],n.pattern=na(i),t.attributePatterns.push(n)}else r[i]||s.push(i),r[i]=e}}))})(a,i),r&&(i.outputName=n),"@"===n){if(!e.isNone())return[];e=I.some(i)}return[r?{name:n,element:i,aliasName:r}:{name:n,element:i}]}return[]}))})(t,null!=e?e:""),(({name:e,element:t,aliasName:s})=>{if(s&&(n[s]=t),o.test(e)){const n=t;n.pattern=na(e),r.push(n)}else n[e]=t}))},R=e=>{r=[],V(me(n),(e=>{delete n[e]})),S(e)},A=e=>{delete oa.text_block_elements,delete oa.block_elements,V((e=>{const t=/^(~)?(.+)$/;return te(ta(e,","),(e=>{const n=t.exec(e);if(n){const e="~"===n[1];return[{inline:e,cloneName:e?"span":"div",name:n[2]}]}return[]}))})(null!=e?e:""),(({inline:e,name:t,cloneName:r})=>{if(o[t]=o[r],s[t]=r,v[t.toUpperCase()]={},v[t]={},e||(x[t.toUpperCase()]={},x[t]={}),!n[t]){let e=n[r];e=aa({},e),delete e.removeEmptyAttrs,delete e.removeEmpty,n[t]=e}ge(o,((e,n)=>{e[r]&&(o[n]=e=aa({},o[n]),e[t]=e[r])}))}))},T=e=>{V((e=>{const t=/^([+\-]?)([A-Za-z0-9_\-.\u00b7\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u037d\u037f-\u1fff\u200c-\u200d\u203f-\u2040\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff\uf900-\ufdcf\ufdf0-\ufffd]+)\[([^\]]+)]$/;return te(ta(e,","),(e=>{const n=t.exec(e);if(n){const e=n[1],t=e?(e=>"-"===e?"remove":"add")(e):"replace";return[{operation:t,name:n[2],validChildren:ta(n[3],"|")}]}return[]}))})(null!=e?e:""),(({operation:e,name:t,validChildren:n})=>{const r="replace"===e?{"#comment":{}}:o[t];V(n,(t=>{"remove"===e?delete r[t]:r[t]={}})),o[t]=r}))},O=e=>{const t=n[e];if(t)return t;let o=r.length;for(;o--;){const t=r[o];if(t.pattern.test(e))return t}};e.valid_elements?(R(e.valid_elements),sa(d,((e,t)=>{o[t]=e.children}))):(sa(d,((e,t)=>{n[t]={attributes:e.attributes,attributesOrder:e.attributesOrder},o[t]=e.children})),sa(ta("strong/b em/i"),(e=>{const t=ta(e,"/");n[t[1]].outputName=t[0]})),sa(E,((t,o)=>{n[o]&&(e.padd_empty_block_inline_children&&(n[o].paddInEmptyBlock=!0),n[o].removeEmpty=!0)})),sa(ta("ol ul blockquote a table tbody"),(e=>{n[e]&&(n[e].removeEmpty=!0)})),sa(ta("p h1 h2 h3 h4 h5 h6 th td pre div address caption li summary"),(e=>{n[e]&&(n[e].paddEmpty=!0)})),sa(ta("span"),(e=>{n[e].removeEmptyAttrs=!0}))),delete n.svg,A(e.custom_elements),T(e.valid_children),S(e.extended_valid_elements),T("+ol[ul|ol],+ul[ul|ol]"),sa({dd:"dl",dt:"dl",li:"ul ol",td:"tr",th:"tr",tr:"tbody thead tfoot",tbody:"table",thead:"table",tfoot:"table",legend:"fieldset",area:"map",param:"video audio object"},((e,t)=>{n[t]&&(n[t].parentsRequired=ta(e))})),e.invalid_elements&&sa(ia(e.invalid_elements),(e=>{n[e]&&delete n[e]})),O("span")||S("span[!data-mce-type|*]");const B=N(c),P=N(u),D=N(m),L=N(h),M=N(x),F=N(w),U=N(E),z=N(Object.seal(p)),j=N(g),H=N(v),$=N(y),q=N(f),W=N(_),K=N(k),Y=N(Object.seal(a)),G=(e,t)=>{const n=O(e);if(n){if(!t)return!0;{if(n.attributes[t])return!0;const e=n.attributePatterns;if(e){let n=e.length;for(;n--;)if(e[n].pattern.test(t))return!0}}}return!1},X=e=>Ee(M(),e),Q=e=>!He(e,"#")&&G(e)&&!X(e),J=N(s);return{type:l,children:o,elements:n,getValidStyles:B,getValidClasses:D,getBlockElements:M,getInvalidStyles:P,getVoidElements:z,getTextBlockElements:F,getTextInlineElements:U,getBoolAttrs:L,getElementRule:O,getSelfClosingElements:j,getNonEmptyElements:H,getMoveCaretBeforeOnEnterElements:$,getWhitespaceElements:q,getTransparentElements:W,getSpecialElements:Y,isValidChild:(e,t)=>{const n=o[e.toLowerCase()];return!(!n||!n[t.toLowerCase()])},isValid:G,isBlock:X,isInline:Q,isWrapper:e=>Ee(K(),e)||Q(e),getCustomElements:J,addValidElements:S,setValidElements:R,addCustomElements:A,addValidChildren:T}},ma=e=>{const t=e.toString(16);return(1===t.length?"0"+t:t).toUpperCase()},fa=e=>(e=>{return{value:(t=e,ze(t,"#").toUpperCase())};var t})(ma(e.red)+ma(e.green)+ma(e.blue)),ga=/^\s*rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)\s*$/i,pa=/^\s*rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?(?:\.\d+)?)\s*\)\s*$/i,ha=(e,t,n,o)=>({red:e,green:t,blue:n,alpha:o}),ba=(e,t,n,o)=>{const r=parseInt(e,10),s=parseInt(t,10),a=parseInt(n,10),i=parseFloat(o);return ha(r,s,a,i)},va=e=>{if("transparent"===e)return I.some(ha(0,0,0,0));const t=ga.exec(e);if(null!==t)return I.some(ba(t[1],t[2],t[3],"1"));const n=pa.exec(e);return null!==n?I.some(ba(n[1],n[2],n[3],n[4])):I.none()},ya=e=>`rgba(${e.red},${e.green},${e.blue},${e.alpha})`,Ca=e=>va(e).map(fa).map((e=>"#"+e.value)).getOr(e),wa=(e={},t)=>{const n=/(?:url(?:(?:\(\s*\"([^\"]+)\"\s*\))|(?:\(\s*\'([^\']+)\'\s*\))|(?:\(\s*([^)\s]+)\s*\))))|(?:\'([^\']+)\')|(?:\"([^\"]+)\")/gi,o=/\s*([^:]+):\s*([^;]+);?/g,r=/\s+$/,s={};let a,i;const l=hr;t&&(a=t.getValidStyles(),i=t.getInvalidStyles());const d="\\\" \\' \\; \\: ; : \ufeff".split(" ");for(let e=0;e<d.length;e++)s[d[e]]=l+e,s[l+e]=d[e];const c={parse:t=>{const a={};let i=!1;const d=e.url_converter,u=e.url_converter_scope||c,f=(e,t,n)=>{const o=a[e+"-top"+t];if(!o)return;const r=a[e+"-right"+t];if(!r)return;const s=a[e+"-bottom"+t];if(!s)return;const i=a[e+"-left"+t];if(!i)return;const l=[o,r,s,i];let d=l.length-1;for(;d--&&l[d]===l[d+1];);d>-1&&n||(a[e+t]=-1===d?l[0]:l.join(" "),delete a[e+"-top"+t],delete a[e+"-right"+t],delete a[e+"-bottom"+t],delete a[e+"-left"+t])},g=e=>{const t=a[e];if(!t)return;const n=t.indexOf(",")>-1?[t]:t.split(" ");let o=n.length;for(;o--;)if(n[o]!==n[0])return!1;return a[e]=n[0],!0},p=e=>(i=!0,s[e]),h=(e,t)=>(i&&(e=e.replace(/\uFEFF[0-9]/g,(e=>s[e]))),t||(e=e.replace(/\\([\'\";:])/g,"$1")),e),b=e=>String.fromCharCode(parseInt(e.slice(1),16)),v=e=>e.replace(/\\[0-9a-f]+/gi,b),y=(t,n,o,r,s,a)=>{if(s=s||a)return"'"+(s=h(s)).replace(/\'/g,"\\'")+"'";if(n=h(n||o||r||""),!e.allow_script_urls){const t=n.replace(/[\s\r\n]+/g,"");if(/(java|vb)script:/i.test(t))return"";if(!e.allow_svg_data_urls&&/^data:image\/svg/i.test(t))return""}return d&&(n=d.call(u,n,"style")),"url('"+n.replace(/\'/g,"\\'")+"')"};if(t){let s;for(t=(t=t.replace(/[\u0000-\u001F]/g,"")).replace(/\\[\"\';:\uFEFF]/g,p).replace(/\"[^\"]+\"|\'[^\']+\'/g,(e=>e.replace(/[;:]/g,p)));s=o.exec(t);){o.lastIndex=s.index+s[0].length;let t=s[1].replace(r,"").toLowerCase(),d=s[2].replace(r,"");if(t&&d){if(t=v(t),d=v(d),-1!==t.indexOf(l)||-1!==t.indexOf('"'))continue;if(!e.allow_script_urls&&("behavior"===t||/expression\s*\(|\/\*|\*\//.test(d)))continue;"font-weight"===t&&"700"===d?d="bold":"color"!==t&&"background-color"!==t||(d=d.toLowerCase()),m(e.force_hex_color)&&"off"!==e.force_hex_color&&va(d).each((t=>{"always"!==e.force_hex_color&&1!==t.alpha||(d=Ca(ya(t)))})),d=d.replace(n,y),a[t]=i?h(d,!0):d}}f("border","",!0),f("border","-width"),f("border","-color"),f("border","-style"),f("padding",""),f("margin",""),"border",w="border-style",x="border-color",g(C="border-width")&&g(w)&&g(x)&&(a.border=a[C]+" "+a[w]+" "+a[x],delete a[C],delete a[w],delete a[x]),"medium none"===a.border&&delete a.border,"none"===a["border-image"]&&delete a["border-image"]}var C,w,x;return a},serialize:(e,t)=>{let n="";const o=(t,o)=>{const r=o[t];if(r)for(let t=0,o=r.length;t<o;t++){const o=r[t],s=e[o];s&&(n+=(n.length>0?" ":"")+o+": "+s+";")}};return t&&a?(o("*",a),o(t,a)):ge(e,((e,o)=>{e&&((e,t)=>{if(!i||!t)return!0;let n=i["*"];return!(n&&n[e]||(n=i[t],n&&n[e]))})(o,t)&&(n+=(n.length>0?" ":"")+o+": "+e+";")})),n}};return c},xa={keyLocation:!0,layerX:!0,layerY:!0,returnValue:!0,webkitMovementX:!0,webkitMovementY:!0,keyIdentifier:!0,mozPressure:!0},Ea=(e,t)=>{const n=null!=t?t:{};for(const t in e)Ee(xa,t)||(n[t]=e[t]);return C(e.composedPath)&&(n.composedPath=()=>e.composedPath()),C(e.getModifierState)&&(n.getModifierState=t=>e.getModifierState(t)),C(e.getTargetRanges)&&(n.getTargetRanges=()=>e.getTargetRanges()),n},_a=(e,t,n,o)=>{var r;const s=Ea(t,o);return s.type=e,y(s.target)&&(s.target=null!==(r=s.srcElement)&&void 0!==r?r:n),(e=>y(e.preventDefault)||(e=>e instanceof Event||w(e.initEvent))(e))(t)&&(s.preventDefault=()=>{s.defaultPrevented=!0,s.isDefaultPrevented=M,w(t.preventDefault)&&t.preventDefault()},s.stopPropagation=()=>{s.cancelBubble=!0,s.isPropagationStopped=M,w(t.stopPropagation)&&t.stopPropagation()},s.stopImmediatePropagation=()=>{s.isImmediatePropagationStopped=M,s.stopPropagation()},(e=>e.isDefaultPrevented===M||e.isDefaultPrevented===L)(s)||(s.isDefaultPrevented=!0===s.defaultPrevented?M:L,s.isPropagationStopped=!0===s.cancelBubble?M:L,s.isImmediatePropagationStopped=L)),s},ka=/^(?:mouse|contextmenu)|click/,Sa=(e,t,n,o)=>{e.addEventListener(t,n,o||!1)},Na=(e,t,n,o)=>{e.removeEventListener(t,n,o||!1)},Ra=(e,t)=>{const n=_a(e.type,e,document,t);if((e=>C(e)&&ka.test(e.type))(e)&&v(e.pageX)&&!v(e.clientX)){const t=n.target.ownerDocument||document,o=t.documentElement,r=t.body,s=n;s.pageX=e.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),s.pageY=e.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)}return n},Aa=(e,t,n)=>{const o=e.document,r={type:"ready"};if(n.domLoaded)return void t(r);const s=()=>{Na(e,"DOMContentLoaded",s),Na(e,"load",s),n.domLoaded||(n.domLoaded=!0,t(r)),e=null};"complete"===o.readyState||"interactive"===o.readyState&&o.body?s():Sa(e,"DOMContentLoaded",s),n.domLoaded||Sa(e,"load",s)};class Ta{constructor(){this.domLoaded=!1,this.events={},this.count=1,this.expando="mce-data-"+(+new Date).toString(32),this.hasFocusIn="onfocusin"in document.documentElement,this.count=1}bind(e,t,n,o){const r=this;let s;const a=window,i=e=>{r.executeHandlers(Ra(e||a.event),l)};if(!e||er(e)||or(e))return n;let l;e[r.expando]?l=e[r.expando]:(l=r.count++,e[r.expando]=l,r.events[l]={}),o=o||e;const d=t.split(" ");let c=d.length;for(;c--;){let t=d[c],u=i,m=!1,f=!1;"DOMContentLoaded"===t&&(t="ready"),r.domLoaded&&"ready"===t&&"complete"===e.readyState?n.call(o,Ra({type:t})):(r.hasFocusIn||"focusin"!==t&&"focusout"!==t||(m=!0,f="focusin"===t?"focus":"blur",u=e=>{const t=Ra(e||a.event);t.type="focus"===t.type?"focusin":"focusout",r.executeHandlers(t,l)}),s=r.events[l][t],s?"ready"===t&&r.domLoaded?n(Ra({type:t})):s.push({func:n,scope:o}):(r.events[l][t]=s=[{func:n,scope:o}],s.fakeName=f,s.capture=m,s.nativeHandler=u,"ready"===t?Aa(e,u,r):Sa(e,f||t,u,m)))}return e=s=null,n}unbind(e,t,n){if(!e||er(e)||or(e))return this;const o=e[this.expando];if(o){let r=this.events[o];if(t){const o=t.split(" ");let s=o.length;for(;s--;){const t=o[s],a=r[t];if(a){if(n){let e=a.length;for(;e--;)if(a[e].func===n){const n=a.nativeHandler,o=a.fakeName,s=a.capture,i=a.slice(0,e).concat(a.slice(e+1));i.nativeHandler=n,i.fakeName=o,i.capture=s,r[t]=i}}n&&0!==a.length||(delete r[t],Na(e,a.fakeName||t,a.nativeHandler,a.capture))}}}else ge(r,((t,n)=>{Na(e,t.fakeName||n,t.nativeHandler,t.capture)})),r={};for(const e in r)if(Ee(r,e))return this;delete this.events[o];try{delete e[this.expando]}catch(t){e[this.expando]=null}}return this}fire(e,t,n){return this.dispatch(e,t,n)}dispatch(e,t,n){if(!e||er(e)||or(e))return this;const o=Ra({type:t,target:e},n);do{const t=e[this.expando];t&&this.executeHandlers(o,t),e=e.parentNode||e.ownerDocument||e.defaultView||e.parentWindow}while(e&&!o.isPropagationStopped());return this}clean(e){if(!e||er(e)||or(e))return this;if(e[this.expando]&&this.unbind(e),e.getElementsByTagName||(e=e.document),e&&e.getElementsByTagName){this.unbind(e);const t=e.getElementsByTagName("*");let n=t.length;for(;n--;)(e=t[n])[this.expando]&&this.unbind(e)}return this}destroy(){this.events={}}cancel(e){return e&&(e.preventDefault(),e.stopImmediatePropagation()),!1}executeHandlers(e,t){const n=this.events[t],o=n&&n[e.type];if(o)for(let t=0,n=o.length;t<n;t++){const n=o[t];if(n&&!1===n.func.call(n.scope,e)&&e.preventDefault(),e.isImmediatePropagationStopped())return}}}Ta.Event=new Ta;const Oa=Pt.each,Ba=Pt.grep,Pa="data-mce-style",Da=Pt.makeMap("fill-opacity font-weight line-height opacity orphans widows z-index zoom"," "),La=(e,t,n)=>{y(n)||""===n?on(e,t):Jt(e,t,n)},Ma=e=>e.replace(/[A-Z]/g,(e=>"-"+e.toLowerCase())),Ia=(e,t)=>{let n=0;if(e)for(let o=e.nodeType,r=e.previousSibling;r;r=r.previousSibling){const e=r.nodeType;(!t||!er(r)||e!==o&&r.data.length)&&(n++,o=e)}return n},Fa=(e,t)=>{const n=en(t,"style"),o=e.serialize(e.parse(n),Ht(t));La(t,Pa,o)},Ua=(e,t,n)=>{const o=Ma(t);y(n)||""===n?go(e,o):io(e,o,((e,t)=>x(e)?Ee(Da,t)?e+"":e+"px":e)(n,o))},za=(e,t={})=>{const n={},o=window,r={};let s=0;const a=Is.forElement(yn(e),{contentCssCors:t.contentCssCors,referrerPolicy:t.referrerPolicy}),i=[],l=t.schema?t.schema:ua({}),d=wa({url_converter:t.url_converter,url_converter_scope:t.url_converter_scope,force_hex_color:t.force_hex_color},t.schema),c=t.ownEvents?new Ta:Ta.Event,u=l.getBlockElements(),f=t=>t&&e&&m(t)?e.getElementById(t):t,g=e=>{const t=f(e);return C(t)?yn(t):null},h=(e,t,n="")=>{let o;const r=g(e);if(C(r)&&Wt(r)){const e=G[t];o=e&&e.get?e.get(r.dom,t):en(r,t)}return C(o)?o:n},b=e=>{const t=f(e);return y(t)?[]:t.attributes},v=(e,n,o)=>{O(e,(e=>{if(qo(e)){const r=yn(e),s=""===o?null:o,a=en(r,n),i=G[n];i&&i.set?i.set(r.dom,s,n):La(r,n,s),a!==s&&t.onSetAttrib&&t.onSetAttrib({attrElm:r.dom,attrName:n,attrValue:s})}}))},x=()=>t.root_element||e.body,E=(t,n)=>((e,t,n)=>{let o=0,r=0;const s=e.ownerDocument;if(n=n||e,t){if(n===e&&t.getBoundingClientRect&&"static"===co(yn(e),"position")){const n=t.getBoundingClientRect();return o=n.left+(s.documentElement.scrollLeft||e.scrollLeft)-s.documentElement.clientLeft,r=n.top+(s.documentElement.scrollTop||e.scrollTop)-s.documentElement.clientTop,{x:o,y:r}}let a=t;for(;a&&a!==n&&a.nodeType&&!Ls(a,n);){const e=a;o+=e.offsetLeft||0,r+=e.offsetTop||0,a=e.offsetParent}for(a=t.parentNode;a&&a!==n&&a.nodeType&&!Ls(a,n);)o-=a.scrollLeft||0,r-=a.scrollTop||0,a=a.parentNode;r+=(e=>Ps.isFirefox()&&"table"===Ht(e)?Ds(Mn(e)).filter((e=>"caption"===Ht(e))).bind((e=>Ds(Ln(e)).map((t=>{const n=t.dom.offsetTop,o=e.dom.offsetTop,r=e.dom.offsetHeight;return n<=o?-r:0})))).getOr(0):0)(yn(t))}return{x:o,y:r}})(e.body,f(t),n),k=(e,t,n)=>{const o=f(e);var r;if(!y(o)&&(Vo(o)||qo(r=o)&&"http://www.w3.org/2000/svg"===r.namespaceURI))return n?co(yn(o),Ma(t)):("float"===(t=t.replace(/-(\D)/g,((e,t)=>t.toUpperCase())))&&(t="cssFloat"),o.style?o.style[t]:void 0)},S=e=>{const t=f(e);if(!t)return{w:0,h:0};let n=k(t,"width"),o=k(t,"height");return n&&-1!==n.indexOf("px")||(n="0"),o&&-1!==o.indexOf("px")||(o="0"),{w:parseInt(n,10)||t.offsetWidth||t.clientWidth,h:parseInt(o,10)||t.offsetHeight||t.clientHeight}},R=(e,t)=>{if(!e)return!1;const n=p(e)?e:[e];return $(n,(e=>xn(yn(e),t)))},A=(e,t,n,o)=>{const r=[];let s=f(e);o=void 0===o;const a=n||("BODY"!==x().nodeName?x().parentNode:null);if(m(t))if("*"===t)t=qo;else{const e=t;t=t=>R(t,e)}for(;s&&!(s===a||y(s.nodeType)||rr(s)||sr(s));){if(!t||t(s)){if(!o)return[s];r.push(s)}s=s.parentNode}return o?r:null},T=(e,t,n)=>{let o=t;if(e){m(t)&&(o=e=>R(e,t));for(let t=e[n];t;t=t[n])if(w(o)&&o(t))return t}return null},O=function(e,t,n){const o=null!=n?n:this;if(p(e)){const n=[];return Oa(e,((e,r)=>{const s=f(e);s&&n.push(t.call(o,s,r))})),n}{const n=f(e);return!!n&&t.call(o,n)}},B=(e,t)=>{O(e,(e=>{ge(t,((t,n)=>{v(e,n,t)}))}))},P=(e,t)=>{O(e,(e=>{const n=yn(e);So(n,t)}))},D=(t,n,o,r,s)=>O(t,(t=>{const a=m(n)?e.createElement(n):n;return C(o)&&B(a,o),r&&(!m(r)&&r.nodeType?a.appendChild(r):m(r)&&P(a,r)),s?a:t.appendChild(a)})),L=(t,n,o)=>D(e.createElement(t),t,n,o,!0),M=ea.encodeAllRaw,I=(e,t)=>O(e,(e=>{const n=yn(e);return t&&V(Mn(n),(e=>{Kt(e)&&0===e.dom.length?xo(e):po(n,e)})),xo(n),n.dom})),F=(e,t,n)=>{O(e,(e=>{if(qo(e)){const o=yn(e),r=t.split(" ");V(r,(e=>{C(n)?(n?un:fn)(o,e):((e,t)=>{const n=an(e)?e.dom.classList.toggle(t):((e,t)=>H(ln(e),t)?cn(e,t):dn(e,t))(e,t);mn(e)})(o,e)}))}}))},U=(e,t,n)=>O(t,(o=>{var r;const s=p(t)?e.cloneNode(!0):e;return n&&Oa(Ba(o.childNodes),(e=>{s.appendChild(e)})),null===(r=o.parentNode)||void 0===r||r.replaceChild(s,o),o})),z=e=>{if(qo(e)){const t="a"===e.nodeName.toLowerCase()&&!h(e,"href")&&h(e,"id");if(h(e,"name")||h(e,"data-mce-bookmark")||t)return!0}return!1},j=()=>e.createRange(),q=(n,r,s,a)=>{if(p(n)){let e=n.length;const t=[];for(;e--;)t[e]=q(n[e],r,s,a);return t}return!t.collect||n!==e&&n!==o||i.push([n,r,s,a]),c.bind(n,r,s,a||Y)},W=(t,n,r)=>{if(p(t)){let e=t.length;const o=[];for(;e--;)o[e]=W(t[e],n,r);return o}if(i.length>0&&(t===e||t===o)){let e=i.length;for(;e--;){const[o,s,a]=i[e];t!==o||n&&n!==s||r&&r!==a||c.unbind(o,s,a)}}return c.unbind(t,n,r)},K=e=>{if(e&&Vo(e)){const t=e.getAttribute("data-mce-contenteditable");return t&&"inherit"!==t?t:"inherit"!==e.contentEditable?e.contentEditable:null}return null},Y={doc:e,settings:t,win:o,files:r,stdMode:!0,boxModel:!0,styleSheetLoader:a,boundEvents:i,styles:d,schema:l,events:c,isBlock:e=>m(e)?Ee(u,e):qo(e)&&(Ee(u,e.nodeName)||Ts(l,e)),root:null,clone:(e,t)=>e.cloneNode(t),getRoot:x,getViewPort:e=>{const t=Io(e);return{x:t.x,y:t.y,w:t.width,h:t.height}},getRect:e=>{const t=f(e),n=E(t),o=S(t);return{x:n.x,y:n.y,w:o.w,h:o.h}},getSize:S,getParent:(e,t,n)=>{const o=A(e,t,n,!1);return o&&o.length>0?o[0]:null},getParents:A,get:f,getNext:(e,t)=>T(e,t,"nextSibling"),getPrev:(e,t)=>T(e,t,"previousSibling"),select:(n,o)=>{var r,s;const a=null!==(s=null!==(r=f(o))&&void 0!==r?r:t.root_element)&&void 0!==s?s:e;return w(a.querySelectorAll)?ce(a.querySelectorAll(n)):[]},is:R,add:D,create:L,createHTML:(e,t,n="")=>{let o="<"+e;for(const e in t)_e(t,e)&&(o+=" "+e+'="'+M(t[e])+'"');return Ge(n)&&Ee(l.getVoidElements(),e)?o+" />":o+">"+n+"</"+e+">"},createFragment:t=>{const n=e.createElement("div"),o=e.createDocumentFragment();let r;for(o.appendChild(n),t&&(n.innerHTML=t);r=n.firstChild;)o.appendChild(r);return o.removeChild(n),o},remove:I,setStyle:(e,n,o)=>{O(e,(e=>{const r=yn(e);Ua(r,n,o),t.update_styles&&Fa(d,r)}))},getStyle:k,setStyles:(e,n)=>{O(e,(e=>{const o=yn(e);ge(n,((e,t)=>{Ua(o,t,e)})),t.update_styles&&Fa(d,o)}))},removeAllAttribs:e=>O(e,(e=>{const t=e.attributes;for(let n=t.length-1;n>=0;n--)e.removeAttributeNode(t.item(n))})),setAttrib:v,setAttribs:B,getAttrib:h,getPos:E,parseStyle:e=>d.parse(e),serializeStyle:(e,t)=>d.serialize(e,t),addStyle:t=>{if(Y!==za.DOM&&e===document){if(n[t])return;n[t]=!0}let o=e.getElementById("mceDefaultStyles");if(!o){o=e.createElement("style"),o.id="mceDefaultStyles",o.type="text/css";const t=e.head;t.firstChild?t.insertBefore(o,t.firstChild):t.appendChild(o)}o.styleSheet?o.styleSheet.cssText+=t:o.appendChild(e.createTextNode(t))},loadCSS:e=>{e||(e=""),V(e.split(","),(e=>{r[e]=!0,a.load(e).catch(_)}))},addClass:(e,t)=>{F(e,t,!0)},removeClass:(e,t)=>{F(e,t,!1)},hasClass:(e,t)=>{const n=g(e),o=t.split(" ");return C(n)&&ne(o,(e=>gn(n,e)))},toggleClass:F,show:e=>{O(e,(e=>go(yn(e),"display")))},hide:e=>{O(e,(e=>io(yn(e),"display","none")))},isHidden:e=>{const t=g(e);return C(t)&&Dt(mo(t,"display"),"none")},uniqueId:e=>(e||"mce_")+s++,setHTML:P,getOuterHTML:e=>{const t=g(e);return C(t)?qo(t.dom)?t.dom.outerHTML:(e=>{const t=bn("div"),n=yn(e.dom.cloneNode(!0));return vo(t,n),ko(t)})(t):""},setOuterHTML:(e,t)=>{O(e,(e=>{qo(e)&&(e.outerHTML=t)}))},decode:ea.decode,encode:M,insertAfter:(e,t)=>{const n=f(t);return O(e,(e=>{const t=null==n?void 0:n.parentNode,o=null==n?void 0:n.nextSibling;return t&&(o?t.insertBefore(e,o):t.appendChild(e)),e}))},replace:U,rename:(e,t)=>{if(e.nodeName!==t.toUpperCase()){const n=L(t);return Oa(b(e),(t=>{v(n,t.nodeName,h(e,t.nodeName))})),U(n,e,!0),n}return e},findCommonAncestor:(e,t)=>{let n=e;for(;n;){let e=t;for(;e&&n!==e;)e=e.parentNode;if(n===e)break;n=n.parentNode}return!n&&e.ownerDocument?e.ownerDocument.documentElement:n},run:O,getAttribs:b,isEmpty:(e,t,n)=>{let o=0;if(z(e))return!1;const r=e.firstChild;if(r){const s=new jo(r,e),a=l?l.getWhitespaceElements():{},i=t||(l?l.getNonEmptyElements():null);let d=r;do{if(qo(d)){const e=d.getAttribute("data-mce-bogus");if(e){d=s.next("all"===e);continue}const t=d.nodeName.toLowerCase();if(i&&i[t]){if("br"===t){o++,d=s.next();continue}return!1}if(z(d))return!1}if(or(d))return!1;if(er(d)&&!ss(d.data)&&(!(null==n?void 0:n.includeZwsp)||!as(d.data)))return!1;if(er(d)&&d.parentNode&&a[d.parentNode.nodeName]&&ss(d.data))return!1;d=s.next()}while(d)}return o<=1},createRng:j,nodeIndex:Ia,split:(e,t,n)=>{let o,r,s=j();if(e&&t&&e.parentNode&&t.parentNode){const a=e.parentNode;return s.setStart(a,Ia(e)),s.setEnd(t.parentNode,Ia(t)),o=s.extractContents(),s=j(),s.setStart(t.parentNode,Ia(t)+1),s.setEnd(a,Ia(e)+1),r=s.extractContents(),a.insertBefore(zs(Y,o,l),e),n?a.insertBefore(n,e):a.insertBefore(t,e),a.insertBefore(zs(Y,r,l),e),I(e),n||t}},bind:q,unbind:W,fire:(e,t,n)=>c.dispatch(e,t,n),dispatch:(e,t,n)=>c.dispatch(e,t,n),getContentEditable:K,getContentEditableParent:e=>{const t=x();let n=null;for(let o=e;o&&o!==t&&(n=K(o),null===n);o=o.parentNode);return n},isEditable:e=>{if(C(e)){const t=qo(e)?e:e.parentElement;return C(t)&&Vo(t)&&oo(yn(t))}return!1},destroy:()=>{if(i.length>0){let e=i.length;for(;e--;){const[t,n,o]=i[e];c.unbind(t,n,o)}}ge(r,((e,t)=>{a.unload(t),delete r[t]}))},isChildOf:(e,t)=>e===t||t.contains(e),dumpRng:e=>"startContainer: "+e.startContainer.nodeName+", startOffset: "+e.startOffset+", endContainer: "+e.endContainer.nodeName+", endOffset: "+e.endOffset},G=((e,t,n)=>{const o=t.keep_values,r={set:(e,o,r)=>{const s=yn(e);w(t.url_converter)&&C(o)&&(o=t.url_converter.call(t.url_converter_scope||n(),String(o),r,e)),La(s,"data-mce-"+r,o),La(s,r,o)},get:(e,t)=>{const n=yn(e);return en(n,"data-mce-"+t)||en(n,t)}},s={style:{set:(t,n)=>{const r=yn(t);o&&La(r,Pa,n),on(r,"style"),m(n)&&lo(r,e.parse(n))},get:t=>{const n=yn(t),o=en(n,Pa)||en(n,"style");return e.serialize(e.parse(o),Ht(n))}}};return o&&(s.href=s.src=r),s})(d,t,N(Y));return Y};za.DOM=za(document),za.nodeIndex=Ia;const ja=za.DOM;class Ha{constructor(e={}){this.states={},this.queue=[],this.scriptLoadedCallbacks={},this.queueLoadedCallbacks=[],this.loading=!1,this.settings=e}_setReferrerPolicy(e){this.settings.referrerPolicy=e}loadScript(e){return new Promise(((t,n)=>{const o=ja;let r;const s=()=>{o.remove(a),r&&(r.onerror=r.onload=r=null)},a=o.uniqueId();r=document.createElement("script"),r.id=a,r.type="text/javascript",r.src=Pt._addCacheSuffix(e),this.settings.referrerPolicy&&o.setAttrib(r,"referrerpolicy",this.settings.referrerPolicy),r.onload=()=>{s(),t()},r.onerror=()=>{s(),n("Failed to load script: "+e)},(document.getElementsByTagName("head")[0]||document.body).appendChild(r)}))}isDone(e){return 2===this.states[e]}markDone(e){this.states[e]=2}add(e){const t=this;return t.queue.push(e),void 0===t.states[e]&&(t.states[e]=0),new Promise(((n,o)=>{t.scriptLoadedCallbacks[e]||(t.scriptLoadedCallbacks[e]=[]),t.scriptLoadedCallbacks[e].push({resolve:n,reject:o})}))}load(e){return this.add(e)}remove(e){delete this.states[e],delete this.scriptLoadedCallbacks[e]}loadQueue(){const e=this.queue;return this.queue=[],this.loadScripts(e)}loadScripts(e){const t=this,n=(e,n)=>{xe(t.scriptLoadedCallbacks,n).each((t=>{V(t,(t=>t[e](n)))})),delete t.scriptLoadedCallbacks[n]},o=e=>{const t=Y(e,(e=>"rejected"===e.status));return t.length>0?Promise.reject(te(t,(({reason:e})=>p(e)?e:[e]))):Promise.resolve()},r=e=>Promise.allSettled(q(e,(e=>2===t.states[e]?(n("resolve",e),Promise.resolve()):3===t.states[e]?(n("reject",e),Promise.reject(e)):(t.states[e]=1,t.loadScript(e).then((()=>{t.states[e]=2,n("resolve",e);const s=t.queue;return s.length>0?(t.queue=[],r(s).then(o)):Promise.resolve()}),(()=>(t.states[e]=3,n("reject",e),Promise.reject(e)))))))),s=e=>(t.loading=!0,r(e).then((e=>{t.loading=!1;const n=t.queueLoadedCallbacks.shift();return I.from(n).each(D),o(e)}))),a=ke(e);return t.loading?new Promise(((e,n)=>{t.queueLoadedCallbacks.push((()=>{s(a).then(e,n)}))})):s(a)}}Ha.ScriptLoader=new Ha;const $a=e=>{let t=e;return{get:()=>t,set:e=>{t=e}}},qa={},Va=$a("en"),Wa=()=>xe(qa,Va.get()),Ka={getData:()=>pe(qa,(e=>({...e}))),setCode:e=>{e&&Va.set(e)},getCode:()=>Va.get(),add:(e,t)=>{let n=qa[e];n||(qa[e]=n={});const o=q(me(t),(e=>e.toLowerCase()));ge(t,((e,r)=>{const s=r.toLowerCase();s!==r&&((e,t)=>{const n=e.indexOf(t);return-1!==n&&e.indexOf(t,n+1)>n})(o,s)?(Ee(t,s)||(n[s]=e),n[r]=e):n[s]=e}))},translate:e=>{const t=Wa().getOr({}),n=e=>w(e)?Object.prototype.toString.call(e):o(e)?"":""+e,o=e=>""===e||null==e,r=e=>{const o=n(e);return Ee(t,o)?n(t[o]):xe(t,o.toLowerCase()).map(n).getOr(o)},s=e=>e.replace(/{context:\w+}$/,"");if(o(e))return"";if(f(a=e)&&Ee(a,"raw"))return n(e.raw);var a;if((e=>p(e)&&e.length>1)(e)){const t=e.slice(1);return s(r(e[0]).replace(/\{([0-9]+)\}/g,((e,o)=>Ee(t,o)?n(t[o]):e)))}return s(r(e))},isRtl:()=>Wa().bind((e=>xe(e,"_dir"))).exists((e=>"rtl"===e)),hasCode:e=>Ee(qa,e)},Ya=()=>{const e=[],t={},n={},o=[],r=(e,t)=>{const n=Y(o,(n=>n.name===e&&n.state===t));V(n,(e=>e.resolve()))},s=e=>Ee(t,e),a=(e,n)=>{const o=Ka.getCode();!o||n&&-1===(","+(n||"")+",").indexOf(","+o+",")||Ha.ScriptLoader.add(t[e]+"/langs/"+o+".js")},i=(e,t="added")=>"added"===t&&(e=>Ee(n,e))(e)||"loaded"===t&&s(e)?Promise.resolve():new Promise((n=>{o.push({name:e,state:t,resolve:n})}));return{items:e,urls:t,lookup:n,get:e=>{if(n[e])return n[e].instance},requireLangPack:(e,t)=>{!1!==Ya.languageLoad&&(s(e)?a(e,t):i(e,"loaded").then((()=>a(e,t))))},add:(t,o)=>(e.push(o),n[t]={instance:o},r(t,"added"),o),remove:e=>{delete t[e],delete n[e]},createUrl:(e,t)=>m(t)?m(e)?{prefix:"",resource:t,suffix:""}:{prefix:e.prefix,resource:t,suffix:e.suffix}:t,load:(e,o)=>{if(t[e])return Promise.resolve();let s=m(o)?o:o.prefix+o.resource+o.suffix;0!==s.indexOf("/")&&-1===s.indexOf("://")&&(s=Ya.baseURL+"/"+s),t[e]=s.substring(0,s.lastIndexOf("/"));const a=()=>(r(e,"loaded"),Promise.resolve());return n[e]?a():Ha.ScriptLoader.add(s).then(a)},waitFor:i}};Ya.languageLoad=!0,Ya.baseURL="",Ya.PluginManager=Ya(),Ya.ThemeManager=Ya(),Ya.ModelManager=Ya();const Ga=e=>{const t=$a(I.none()),n=()=>t.get().each((e=>clearInterval(e)));return{clear:()=>{n(),t.set(I.none())},isSet:()=>t.get().isSome(),get:()=>t.get(),set:o=>{n(),t.set(I.some(setInterval(o,e)))}}},Xa=()=>{const e=(e=>{const t=$a(I.none()),n=()=>t.get().each(e);return{clear:()=>{n(),t.set(I.none())},isSet:()=>t.get().isSome(),get:()=>t.get(),set:e=>{n(),t.set(I.some(e))}}})(_);return{...e,on:t=>e.get().each(t)}},Qa=(e,t)=>{let n=null;return{cancel:()=>{h(n)||(clearTimeout(n),n=null)},throttle:(...o)=>{h(n)&&(n=setTimeout((()=>{n=null,e.apply(null,o)}),t))}}},Ja=(e,t)=>{let n=null;const o=()=>{h(n)||(clearTimeout(n),n=null)};return{cancel:o,throttle:(...r)=>{o(),n=setTimeout((()=>{n=null,e.apply(null,r)}),t)}}},Za=N("mce-annotation"),ei=N("data-mce-annotation"),ti=N("data-mce-annotation-uid"),ni=N("data-mce-annotation-active"),oi=N("data-mce-annotation-classes"),ri=N("data-mce-annotation-attrs"),si=e=>t=>_n(t,e),ai=(e,t)=>{const n=e.selection.getRng(),o=yn(n.startContainer),r=yn(e.getBody()),s=t.fold((()=>"."+Za()),(e=>`[${ei()}="${e}"]`)),a=In(o,n.startOffset).getOr(o);return no(a,s,si(r)).bind((t=>tn(t,`${ti()}`).bind((n=>tn(t,`${ei()}`).map((t=>{const o=li(e,n);return{uid:n,name:t,elements:o}}))))))},ii=(e,t)=>nn(e,"data-mce-bogus")||zo(e,'[data-mce-bogus="all"]',si(t)),li=(e,t)=>{const n=yn(e.getBody()),o=Uo(n,`[${ti()}="${t}"]`);return Y(o,(e=>!ii(e,n)))},di=(e,t)=>{const n=yn(e.getBody()),o=Uo(n,`[${ei()}="${t}"]`),r={};return V(o,(e=>{if(!ii(e,n)){const t=en(e,ti()),n=xe(r,t).getOr([]);r[t]=n.concat([e])}})),r};let ci=0;const ui=e=>{const t=(new Date).getTime(),n=Math.floor(1e9*Math.random());return ci++,e+"_"+n+ci+String(t)},mi=(e,t)=>yn(e.dom.cloneNode(t)),fi=e=>mi(e,!1),gi=e=>mi(e,!0),pi=(e,t,n=L)=>{const o=new jo(e,t),r=e=>{let t;do{t=o[e]()}while(t&&!er(t)&&!n(t));return I.from(t).filter(er)};return{current:()=>I.from(o.current()).filter(er),next:()=>r("next"),prev:()=>r("prev"),prev2:()=>r("prev2")}},hi=(e,t)=>{const n=t||(t=>e.isBlock(t)||ar(t)||dr(t)),o=(e,t,n,r)=>{if(er(e)){const n=r(e,t,e.data);if(-1!==n)return I.some({container:e,offset:n})}return n().bind((e=>o(e.container,e.offset,n,r)))};return{backwards:(t,r,s,a)=>{const i=pi(t,null!=a?a:e.getRoot(),n);return o(t,r,(()=>i.prev().map((e=>({container:e,offset:e.length})))),s).getOrNull()},forwards:(t,r,s,a)=>{const i=pi(t,null!=a?a:e.getRoot(),n);return o(t,r,(()=>i.next().map((e=>({container:e,offset:0})))),s).getOrNull()}}},bi=Math.round,vi=e=>e?{left:bi(e.left),top:bi(e.top),bottom:bi(e.bottom),right:bi(e.right),width:bi(e.width),height:bi(e.height)}:{left:0,top:0,bottom:0,right:0,width:0,height:0},yi=(e,t)=>(e=vi(e),t||(e.left=e.left+e.width),e.right=e.left,e.width=0,e),Ci=(e,t,n)=>e>=0&&e<=Math.min(t.height,n.height)/2,wi=(e,t)=>{const n=Math.min(t.height/2,e.height/2);return e.bottom-n<t.top||!(e.top>t.bottom)&&Ci(t.top-e.bottom,e,t)},xi=(e,t)=>e.top>t.bottom||!(e.bottom<t.top)&&Ci(t.bottom-e.top,e,t),Ei=(e,t,n)=>{const o=Math.max(Math.min(t,e.left+e.width),e.left),r=Math.max(Math.min(n,e.top+e.height),e.top);return Math.sqrt((t-o)*(t-o)+(n-r)*(n-r))},_i=e=>{const t=e.startContainer,n=e.startOffset;return t===e.endContainer&&t.hasChildNodes()&&e.endOffset===n+1?t.childNodes[n]:null},ki=(e,t)=>{if(qo(e)&&e.hasChildNodes()){const n=e.childNodes,o=((e,t,n)=>Math.min(Math.max(e,0),n))(t,0,n.length-1);return n[o]}return e},Si=new RegExp("[\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\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e3-\u0902\u093a\u093c\u0941-\u0948\u094d\u0951-\u0957\u0962-\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2-\u09e3\u0a01-\u0a02\u0a3c\u0a41-\u0a42\u0a47-\u0a48\u0a4b-\u0a4d\u0a51\u0a70-\u0a71\u0a75\u0a81-\u0a82\u0abc\u0ac1-\u0ac5\u0ac7-\u0ac8\u0acd\u0ae2-\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62-\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c00\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55-\u0c56\u0c62-\u0c63\u0c81\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc-\u0ccd\u0cd5-\u0cd6\u0ce2-\u0ce3\u0d01\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62-\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb-\u0ebc\u0ec8-\u0ecd\u0f18-\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86-\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039-\u103a\u103d-\u103e\u1058-\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085-\u1086\u108d\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752-\u1753\u1772-\u1773\u17b4-\u17b5\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927-\u1928\u1932\u1939-\u193b\u1a17-\u1a18\u1a1b\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1ab0-\u1abd\u1abe\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80-\u1b81\u1ba2-\u1ba5\u1ba8-\u1ba9\u1bab-\u1bad\u1be6\u1be8-\u1be9\u1bed\u1bef-\u1bf1\u1c2c-\u1c33\u1c36-\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1cf4\u1cf8-\u1cf9\u1dc0-\u1df5\u1dfc-\u1dff\u200c-\u200d\u20d0-\u20dc\u20dd-\u20e0\u20e1\u20e2-\u20e4\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302d\u302e-\u302f\u3099-\u309a\ua66f\ua670-\ua672\ua674-\ua67d\ua69e-\ua69f\ua6f0-\ua6f1\ua802\ua806\ua80b\ua825-\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\ua9e5\uaa29-\uaa2e\uaa31-\uaa32\uaa35-\uaa36\uaa43\uaa4c\uaa7c\uaab0\uaab2-\uaab4\uaab7-\uaab8\uaabe-\uaabf\uaac1\uaaec-\uaaed\uaaf6\uabe5\uabe8\uabed\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\uff9e-\uff9f]"),Ni=e=>m(e)&&e.charCodeAt(0)>=768&&Si.test(e),Ri=qo,Ai=ts,Ti=Yo("display","block table"),Oi=Yo("float","left right"),Bi=((...e)=>t=>{for(let n=0;n<e.length;n++)if(!e[n](t))return!1;return!0})(Ri,Ai,O(Oi)),Pi=O(Yo("white-space","pre pre-line pre-wrap")),Di=er,Li=ar,Mi=za.nodeIndex,Ii=(e,t)=>t<0&&qo(e)&&e.hasChildNodes()?void 0:ki(e,t),Fi=e=>e?e.createRange():za.DOM.createRng(),Ui=e=>m(e)&&/[\r\n\t ]/.test(e),zi=e=>!!e.setStart&&!!e.setEnd,ji=e=>{const t=e.startContainer,n=e.startOffset;if(Ui(e.toString())&&Pi(t.parentNode)&&er(t)){const e=t.data;if(Ui(e[n-1])||Ui(e[n+1]))return!0}return!1},Hi=e=>0===e.left&&0===e.right&&0===e.top&&0===e.bottom,$i=e=>{var t;let n;const o=e.getClientRects();return n=o.length>0?vi(o[0]):vi(e.getBoundingClientRect()),!zi(e)&&Li(e)&&Hi(n)?(e=>{const t=e.ownerDocument,n=Fi(t),o=t.createTextNode(br),r=e.parentNode;r.insertBefore(o,e),n.setStart(o,0),n.setEnd(o,1);const s=vi(n.getBoundingClientRect());return r.removeChild(o),s})(e):Hi(n)&&zi(e)&&null!==(t=(e=>{const t=e.startContainer,n=e.endContainer,o=e.startOffset,r=e.endOffset;if(t===n&&er(n)&&0===o&&1===r){const t=e.cloneRange();return t.setEndAfter(n),$i(t)}return null})(e))&&void 0!==t?t:n},qi=(e,t)=>{const n=yi(e,t);return n.width=1,n.right=n.left+1,n},Vi=(e,t,n)=>{const o=()=>(n||(n=(e=>{const t=[],n=e=>{var n,o;0!==e.height&&(t.length>0&&(n=e,o=t[t.length-1],n.left===o.left&&n.top===o.top&&n.bottom===o.bottom&&n.right===o.right)||t.push(e))},o=(e,t)=>{const o=Fi(e.ownerDocument);if(t<e.data.length){if(Ni(e.data[t]))return;if(Ni(e.data[t-1])&&(o.setStart(e,t),o.setEnd(e,t+1),!ji(o)))return void n(qi($i(o),!1))}t>0&&(o.setStart(e,t-1),o.setEnd(e,t),ji(o)||n(qi($i(o),!1))),t<e.data.length&&(o.setStart(e,t),o.setEnd(e,t+1),ji(o)||n(qi($i(o),!0)))},r=e.container(),s=e.offset();if(Di(r))return o(r,s),t;if(Ri(r))if(e.isAtEnd()){const e=Ii(r,s);Di(e)&&o(e,e.data.length),Bi(e)&&!Li(e)&&n(qi($i(e),!1))}else{const a=Ii(r,s);if(Di(a)&&o(a,0),Bi(a)&&e.isAtEnd())return n(qi($i(a),!1)),t;const i=Ii(e.container(),e.offset()-1);Bi(i)&&!Li(i)&&(Ti(i)||Ti(a)||!Bi(a))&&n(qi($i(i),!1)),Bi(a)&&n(qi($i(a),!0))}return t})(Vi(e,t))),n);return{container:N(e),offset:N(t),toRange:()=>{const n=Fi(e.ownerDocument);return n.setStart(e,t),n.setEnd(e,t),n},getClientRects:o,isVisible:()=>o().length>0,isAtStart:()=>(Di(e),0===t),isAtEnd:()=>Di(e)?t>=e.data.length:t>=e.childNodes.length,isEqual:n=>n&&e===n.container()&&t===n.offset(),getNode:n=>Ii(e,n?t-1:t)}};Vi.fromRangeStart=e=>Vi(e.startContainer,e.startOffset),Vi.fromRangeEnd=e=>Vi(e.endContainer,e.endOffset),Vi.after=e=>Vi(e.parentNode,Mi(e)+1),Vi.before=e=>Vi(e.parentNode,Mi(e)),Vi.isAbove=(e,t)=>Mt(le(t.getClientRects()),de(e.getClientRects()),wi).getOr(!1),Vi.isBelow=(e,t)=>Mt(de(t.getClientRects()),le(e.getClientRects()),xi).getOr(!1),Vi.isAtStart=e=>!!e&&e.isAtStart(),Vi.isAtEnd=e=>!!e&&e.isAtEnd(),Vi.isTextPosition=e=>!!e&&er(e.container()),Vi.isElementPosition=e=>!Vi.isTextPosition(e);const Wi=(e,t)=>{er(t)&&0===t.data.length&&e.remove(t)},Ki=(e,t,n)=>{sr(n)?((e,t,n)=>{const o=I.from(n.firstChild),r=I.from(n.lastChild);t.insertNode(n),o.each((t=>Wi(e,t.previousSibling))),r.each((t=>Wi(e,t.nextSibling)))})(e,t,n):((e,t,n)=>{t.insertNode(n),Wi(e,n.previousSibling),Wi(e,n.nextSibling)})(e,t,n)},Yi=er,Gi=Xo,Xi=za.nodeIndex,Qi=e=>{const t=e.parentNode;return Gi(t)?Qi(t):t},Ji=e=>e?Oe(e.childNodes,((e,t)=>(Gi(t)&&"BR"!==t.nodeName?e=e.concat(Ji(t)):e.push(t),e)),[]):[],Zi=e=>t=>e===t,el=e=>(Yi(e)?"text()":e.nodeName.toLowerCase())+"["+(e=>{let t,n;t=Ji(Qi(e)),n=Be(t,Zi(e),e),t=t.slice(0,n+1);const o=Oe(t,((e,n,o)=>(Yi(n)&&Yi(t[o-1])&&e++,e)),0);return t=Te(t,Ko([e.nodeName])),n=Be(t,Zi(e),e),n-o})(e)+"]",tl=(e,t)=>{let n,o=[],r=t.container(),s=t.offset();if(Yi(r))n=((e,t)=>{let n=e;for(;(n=n.previousSibling)&&Yi(n);)t+=n.data.length;return t})(r,s);else{const e=r.childNodes;s>=e.length?(n="after",s=e.length-1):n="before",r=e[s]}o.push(el(r));let a=((e,t,n)=>{const o=[];for(let n=t.parentNode;n&&n!==e;n=n.parentNode)o.push(n);return o})(e,r);return a=Te(a,O(Xo)),o=o.concat(Ae(a,(e=>el(e)))),o.reverse().join("/")+","+n},nl=(e,t)=>{if(!t)return null;const n=t.split(","),o=n[0].split("/"),r=n.length>1?n[1]:"before",s=Oe(o,((e,t)=>{const n=/([\w\-\(\)]+)\[([0-9]+)\]/.exec(t);return n?("text()"===n[1]&&(n[1]="#text"),((e,t,n)=>{let o=Ji(e);return o=Te(o,((e,t)=>!Yi(e)||!Yi(o[t-1]))),o=Te(o,Ko([t])),o[n]})(e,n[1],parseInt(n[2],10))):null}),e);if(!s)return null;if(!Yi(s)&&s.parentNode){let e;return e="after"===r?Xi(s)+1:Xi(s),Vi(s.parentNode,e)}return((e,t)=>{let n=e,o=0;for(;Yi(n);){const r=n.data.length;if(t>=o&&t<=o+r){e=n,t-=o;break}if(!Yi(n.nextSibling)){e=n,t=r;break}o+=r,n=n.nextSibling}return Yi(e)&&t>e.data.length&&(t=e.data.length),Vi(e,t)})(s,parseInt(r,10))},ol=dr,rl=(e,t,n,o,r)=>{const s=r?o.startContainer:o.endContainer;let a=r?o.startOffset:o.endOffset;const i=[],l=e.getRoot();if(er(s))i.push(n?((e,t,n)=>{let o=e(t.data.slice(0,n)).length;for(let n=t.previousSibling;n&&er(n);n=n.previousSibling)o+=e(n.data).length;return o})(t,s,a):a);else{let t=0;const o=s.childNodes;a>=o.length&&o.length&&(t=1,a=Math.max(0,o.length-1)),i.push(e.nodeIndex(o[a],n)+t)}for(let t=s;t&&t!==l;t=t.parentNode)i.push(e.nodeIndex(t,n));return i},sl=(e,t,n)=>{let o=0;return Pt.each(e.select(t),(e=>"all"===e.getAttribute("data-mce-bogus")?void 0:e!==n&&void o++)),o},al=(e,t)=>{let n=t?e.startContainer:e.endContainer,o=t?e.startOffset:e.endOffset;if(qo(n)&&"TR"===n.nodeName){const r=n.childNodes;n=r[Math.min(t?o:o-1,r.length-1)],n&&(o=t?0:n.childNodes.length,t?e.setStart(n,o):e.setEnd(n,o))}},il=e=>(al(e,!0),al(e,!1),e),ll=(e,t)=>{if(qo(e)&&(e=ki(e,t),ol(e)))return e;if(Ur(e)){er(e)&&Ir(e)&&(e=e.parentNode);let t=e.previousSibling;if(ol(t))return t;if(t=e.nextSibling,ol(t))return t}},dl=(e,t,n)=>{const o=n.getNode(),r=n.getRng();if("IMG"===o.nodeName||ol(o)){const e=o.nodeName;return{name:e,index:sl(n.dom,e,o)}}const s=(e=>ll(e.startContainer,e.startOffset)||ll(e.endContainer,e.endOffset))(r);if(s){const e=s.tagName;return{name:e,index:sl(n.dom,e,s)}}return((e,t,n,o)=>{const r=t.dom,s=rl(r,e,n,o,!0),a=t.isForward(),i=Wr(o)?{isFakeCaret:!0}:{};return t.isCollapsed()?{start:s,forward:a,...i}:{start:s,end:rl(r,e,n,o,!1),forward:a,...i}})(e,n,t,r)},cl=(e,t,n)=>{const o={"data-mce-type":"bookmark",id:t,style:"overflow:hidden;line-height:0px"};return n?e.create("span",o,"&#xFEFF;"):e.create("span",o)},ul=(e,t)=>{const n=e.dom;let o=e.getRng();const r=n.uniqueId(),s=e.isCollapsed(),a=e.getNode(),i=a.nodeName,l=e.isForward();if("IMG"===i)return{name:i,index:sl(n,i,a)};const d=il(o.cloneRange());if(!s){d.collapse(!1);const e=cl(n,r+"_end",t);Ki(n,d,e)}o=il(o),o.collapse(!0);const c=cl(n,r+"_start",t);return Ki(n,o,c),e.moveToBookmark({id:r,keep:!0,forward:l}),{id:r,forward:l}},ml=T(dl,R,!0),fl=e=>{const t=t=>t(e),n=N(e),o=()=>r,r={tag:!0,inner:e,fold:(t,n)=>n(e),isValue:M,isError:L,map:t=>pl.value(t(e)),mapError:o,bind:t,exists:t,forall:t,getOr:n,or:o,getOrThunk:n,orThunk:o,getOrDie:n,each:t=>{t(e)},toOptional:()=>I.some(e)};return r},gl=e=>{const t=()=>n,n={tag:!1,inner:e,fold:(t,n)=>t(e),isValue:L,isError:M,map:t,mapError:t=>pl.error(t(e)),bind:t,exists:L,forall:M,getOr:R,or:R,getOrThunk:P,orThunk:P,getOrDie:B(String(e)),each:_,toOptional:I.none};return n},pl={value:fl,error:gl,fromOption:(e,t)=>e.fold((()=>gl(t)),fl)},hl=e=>{if(!p(e))throw new Error("cases must be an array");if(0===e.length)throw new Error("there must be at least one case");const t=[],n={};return V(e,((o,r)=>{const s=me(o);if(1!==s.length)throw new Error("one and only one name per case");const a=s[0],i=o[a];if(void 0!==n[a])throw new Error("duplicate key detected:"+a);if("cata"===a)throw new Error("cannot have a case named cata (sorry)");if(!p(i))throw new Error("case arguments must be an array");t.push(a),n[a]=(...n)=>{const o=n.length;if(o!==i.length)throw new Error("Wrong number of arguments to case "+a+". Expected "+i.length+" ("+i+"), got "+o);return{fold:(...t)=>{if(t.length!==e.length)throw new Error("Wrong number of arguments to fold. Expected "+e.length+", got "+t.length);return t[r].apply(null,n)},match:e=>{const o=me(e);if(t.length!==o.length)throw new Error("Wrong number of arguments to match. Expected: "+t.join(",")+"\nActual: "+o.join(","));if(!ne(t,(e=>H(o,e))))throw new Error("Not all branches were specified when using match. Specified: "+o.join(", ")+"\nRequired: "+t.join(", "));return e[a].apply(null,n)},log:e=>{console.log(e,{constructors:t,constructor:a,params:n})}}}})),n};hl([{bothErrors:["error1","error2"]},{firstError:["error1","value2"]},{secondError:["value1","error2"]},{bothValues:["value1","value2"]}]);const bl=e=>"inline-command"===e.type||"inline-format"===e.type,vl=e=>"block-command"===e.type||"block-format"===e.type,yl=e=>{const t=t=>pl.error({message:t,pattern:e}),n=(n,o,r)=>{if(void 0!==e.format){let r;if(p(e.format)){if(!ne(e.format,m))return t(n+" pattern has non-string items in the `format` array");r=e.format}else{if(!m(e.format))return t(n+" pattern has non-string `format` parameter");r=[e.format]}return pl.value(o(r))}return void 0!==e.cmd?m(e.cmd)?pl.value(r(e.cmd,e.value)):t(n+" pattern has non-string `cmd` parameter"):t(n+" pattern is missing both `format` and `cmd` parameters")};if(!f(e))return t("Raw pattern is not an object");if(!m(e.start))return t("Raw pattern is missing `start` parameter");if(void 0!==e.end){if(!m(e.end))return t("Inline pattern has non-string `end` parameter");if(0===e.start.length&&0===e.end.length)return t("Inline pattern has empty `start` and `end` parameters");let o=e.start,r=e.end;return 0===r.length&&(r=o,o=""),n("Inline",(e=>({type:"inline-format",start:o,end:r,format:e})),((e,t)=>({type:"inline-command",start:o,end:r,cmd:e,value:t})))}return void 0!==e.replacement?m(e.replacement)?0===e.start.length?t("Replacement pattern has empty `start` parameter"):pl.value({type:"inline-command",start:"",end:e.start,cmd:"mceInsertContent",value:e.replacement}):t("Replacement pattern has non-string `replacement` parameter"):0===e.start.length?t("Block pattern has empty `start` parameter"):n("Block",(t=>({type:"block-format",start:e.start,format:t[0]})),((t,n)=>({type:"block-command",start:e.start,cmd:t,value:n})))},Cl=e=>Y(e,vl),wl=e=>Y(e,bl),xl=e=>{const t=(e=>{const t=[],n=[];return V(e,(e=>{e.fold((e=>{t.push(e)}),(e=>{n.push(e)}))})),{errors:t,values:n}})(q(e,yl));return V(t.errors,(e=>console.error(e.message,e.pattern))),t.values},El=xt().deviceType,_l=El.isTouch(),kl=za.DOM,Sl=e=>u(e,RegExp),Nl=e=>t=>t.options.get(e),Rl=e=>m(e)||f(e),Al=(e,t="")=>n=>{const o=m(n);if(o){if(-1!==n.indexOf("=")){const r=(e=>{const t=e.indexOf("=")>0?e.split(/[;,](?![^=;,]*(?:[;,]|$))/):e.split(",");return X(t,((e,t)=>{const n=t.split("="),o=n[0],r=n.length>1?n[1]:o;return e[Ve(o)]=Ve(r),e}),{})})(n);return{value:xe(r,e.id).getOr(t),valid:o}}return{value:n,valid:o}}return{valid:!1,message:"Must be a string."}},Tl=Nl("iframe_attrs"),Ol=Nl("doctype"),Bl=Nl("document_base_url"),Pl=Nl("body_id"),Dl=Nl("body_class"),Ll=Nl("content_security_policy"),Ml=Nl("br_in_pre"),Il=Nl("forced_root_block"),Fl=Nl("forced_root_block_attrs"),Ul=Nl("newline_behavior"),zl=Nl("br_newline_selector"),jl=Nl("no_newline_selector"),Hl=Nl("keep_styles"),$l=Nl("end_container_on_empty_block"),ql=Nl("automatic_uploads"),Vl=Nl("images_reuse_filename"),Wl=Nl("images_replace_blob_uris"),Kl=Nl("icons"),Yl=Nl("icons_url"),Gl=Nl("images_upload_url"),Xl=Nl("images_upload_base_path"),Ql=Nl("images_upload_credentials"),Jl=Nl("images_upload_handler"),Zl=Nl("content_css_cors"),ed=Nl("referrer_policy"),td=Nl("language"),nd=Nl("language_url"),od=Nl("indent_use_margin"),rd=Nl("indentation"),sd=Nl("content_css"),ad=Nl("content_style"),id=Nl("font_css"),ld=Nl("directionality"),dd=Nl("inline_boundaries_selector"),cd=Nl("object_resizing"),ud=Nl("resize_img_proportional"),md=Nl("placeholder"),fd=Nl("event_root"),gd=Nl("service_message"),pd=Nl("theme"),hd=Nl("theme_url"),bd=Nl("model"),vd=Nl("model_url"),yd=Nl("inline_boundaries"),Cd=Nl("formats"),wd=Nl("preview_styles"),xd=Nl("format_empty_lines"),Ed=Nl("format_noneditable_selector"),_d=Nl("custom_ui_selector"),kd=Nl("inline"),Sd=Nl("hidden_input"),Nd=Nl("submit_patch"),Rd=Nl("add_form_submit_trigger"),Ad=Nl("add_unload_trigger"),Td=Nl("custom_undo_redo_levels"),Od=Nl("disable_nodechange"),Bd=Nl("readonly"),Pd=Nl("editable_root"),Dd=Nl("content_css_cors"),Ld=Nl("plugins"),Md=Nl("external_plugins"),Id=Nl("block_unsupported_drop"),Fd=Nl("visual"),Ud=Nl("visual_table_class"),zd=Nl("visual_anchor_class"),jd=Nl("iframe_aria_text"),Hd=Nl("setup"),$d=Nl("init_instance_callback"),qd=Nl("urlconverter_callback"),Vd=Nl("auto_focus"),Wd=Nl("browser_spellcheck"),Kd=Nl("protect"),Yd=Nl("paste_block_drop"),Gd=Nl("paste_data_images"),Xd=Nl("paste_preprocess"),Qd=Nl("paste_postprocess"),Jd=Nl("newdocument_content"),Zd=Nl("paste_webkit_styles"),ec=Nl("paste_remove_styles_if_webkit"),tc=Nl("paste_merge_formats"),nc=Nl("smart_paste"),oc=Nl("paste_as_text"),rc=Nl("paste_tab_spaces"),sc=Nl("allow_html_data_urls"),ac=Nl("text_patterns"),ic=Nl("text_patterns_lookup"),lc=Nl("noneditable_class"),dc=Nl("editable_class"),cc=Nl("noneditable_regexp"),uc=Nl("preserve_cdata"),mc=Nl("highlight_on_focus"),fc=Nl("xss_sanitization"),gc=Nl("init_content_sync"),pc=e=>Pt.explode(e.options.get("images_file_types")),hc=Nl("table_tab_navigation"),bc=Nl("details_initial_state"),vc=Nl("details_serialized_state"),yc=Nl("force_hex_color"),Cc=Nl("sandbox_iframes"),wc=qo,xc=er,Ec=e=>{const t=e.parentNode;t&&t.removeChild(e)},_c=e=>{const t=Dr(e);return{count:e.length-t.length,text:t}},kc=e=>{let t;for(;-1!==(t=e.data.lastIndexOf(Br));)e.deleteData(t,1)},Sc=(e,t)=>(Rc(e),t),Nc=(e,t)=>Vi.isTextPosition(t)?((e,t)=>xc(e)&&t.container()===e?((e,t)=>{const n=_c(e.data.substr(0,t.offset())),o=_c(e.data.substr(t.offset()));return(n.text+o.text).length>0?(kc(e),Vi(e,t.offset()-n.count)):t})(e,t):Sc(e,t))(e,t):((e,t)=>t.container()===e.parentNode?((e,t)=>{const n=t.container(),o=((e,t)=>{const n=j(e,t);return-1===n?I.none():I.some(n)})(ce(n.childNodes),e).map((e=>e<t.offset()?Vi(n,t.offset()-1):t)).getOr(t);return Rc(e),o})(e,t):Sc(e,t))(e,t),Rc=e=>{wc(e)&&Ur(e)&&(zr(e)?e.removeAttribute("data-mce-caret"):Ec(e)),xc(e)&&(kc(e),0===e.data.length&&Ec(e))},Ac=dr,Tc=mr,Oc=cr,Bc=(e,t,n)=>{const o=yi(t.getBoundingClientRect(),n);let r,s;if("BODY"===e.tagName){const t=e.ownerDocument.documentElement;r=e.scrollLeft||t.scrollLeft,s=e.scrollTop||t.scrollTop}else{const t=e.getBoundingClientRect();r=e.scrollLeft-t.left,s=e.scrollTop-t.top}o.left+=r,o.right+=r,o.top+=s,o.bottom+=s,o.width=1;let a=t.offsetWidth-t.clientWidth;return a>0&&(n&&(a*=-1),o.left+=a,o.right+=a),o},Pc=(e,t,n,o)=>{const r=Xa();let s,a;const i=Il(e),l=e.dom,d=()=>{(e=>{var t,n;const o=Uo(yn(e),"*[contentEditable=false],video,audio,embed,object");for(let e=0;e<o.length;e++){const r=o[e].dom;let s=r.previousSibling;if(qr(s)){const e=s.data;1===e.length?null===(t=s.parentNode)||void 0===t||t.removeChild(s):s.deleteData(e.length-1,1)}s=r.nextSibling,$r(s)&&(1===s.data.length?null===(n=s.parentNode)||void 0===n||n.removeChild(s):s.deleteData(0,1))}})(t),a&&(Rc(a),a=null),r.on((e=>{l.remove(e.caret),r.clear()})),s&&(clearInterval(s),s=void 0)};return{show:(e,c)=>{let u;if(d(),Oc(c))return null;if(!n(c))return a=((e,t)=>{var n;const o=(null!==(n=e.ownerDocument)&&void 0!==n?n:document).createTextNode(Br),r=e.parentNode;if(t){const t=e.previousSibling;if(Mr(t)){if(Ur(t))return t;if(qr(t))return t.splitText(t.data.length-1)}null==r||r.insertBefore(o,e)}else{const t=e.nextSibling;if(Mr(t)){if(Ur(t))return t;if($r(t))return t.splitText(1),t}e.nextSibling?null==r||r.insertBefore(o,e.nextSibling):null==r||r.appendChild(o)}return o})(c,e),u=c.ownerDocument.createRange(),Lc(a.nextSibling)?(u.setStart(a,0),u.setEnd(a,0)):(u.setStart(a,1),u.setEnd(a,1)),u;{const n=((e,t,n)=>{var o;const r=(null!==(o=t.ownerDocument)&&void 0!==o?o:document).createElement(e);r.setAttribute("data-mce-caret",n?"before":"after"),r.setAttribute("data-mce-bogus","all"),r.appendChild(Tr().dom);const s=t.parentNode;return n?null==s||s.insertBefore(r,t):t.nextSibling?null==s||s.insertBefore(r,t.nextSibling):null==s||s.appendChild(r),r})(i,c,e),d=Bc(t,c,e);l.setStyle(n,"top",d.top),a=n;const m=l.create("div",{class:"mce-visual-caret","data-mce-bogus":"all"});l.setStyles(m,{...d}),l.add(t,m),r.set({caret:m,element:c,before:e}),e&&l.addClass(m,"mce-visual-caret-before"),s=setInterval((()=>{r.on((e=>{o()?l.toggleClass(e.caret,"mce-visual-caret-hidden"):l.addClass(e.caret,"mce-visual-caret-hidden")}))}),500),u=c.ownerDocument.createRange(),u.setStart(n,0),u.setEnd(n,0)}return u},hide:d,getCss:()=>".mce-visual-caret {position: absolute;background-color: black;background-color: currentcolor;}.mce-visual-caret-hidden {display: none;}*[data-mce-caret] {position: absolute;left: -1000px;right: auto;top: 0;margin: 0;padding: 0;}",reposition:()=>{r.on((e=>{const n=Bc(t,e.element,e.before);l.setStyles(e.caret,{...n})}))},destroy:()=>clearInterval(s)}},Dc=()=>At.browser.isFirefox(),Lc=e=>Ac(e)||Tc(e),Mc=e=>(Lc(e)||Qo(e)&&Dc())&&Tn(yn(e)).exists(oo),Ic=lr,Fc=dr,Uc=mr,zc=Yo("display","block table table-cell table-caption list-item"),jc=Ur,Hc=Ir,$c=qo,qc=er,Vc=ts,Wc=e=>e>0,Kc=e=>e<0,Yc=(e,t)=>{let n;for(;n=e(t);)if(!Hc(n))return n;return null},Gc=(e,t,n,o,r)=>{const s=new jo(e,o),a=Fc(e)||Hc(e);let i;if(Kc(t)){if(a&&(i=Yc(s.prev.bind(s),!0),n(i)))return i;for(;i=Yc(s.prev.bind(s),r);)if(n(i))return i}if(Wc(t)){if(a&&(i=Yc(s.next.bind(s),!0),n(i)))return i;for(;i=Yc(s.next.bind(s),r);)if(n(i))return i}return null},Xc=(e,t)=>{for(;e&&e!==t;){if(zc(e))return e;e=e.parentNode}return null},Qc=(e,t,n)=>Xc(e.container(),n)===Xc(t.container(),n),Jc=(e,t)=>{if(!t)return I.none();const n=t.container(),o=t.offset();return $c(n)?I.from(n.childNodes[o+e]):I.none()},Zc=(e,t)=>{var n;const o=(null!==(n=t.ownerDocument)&&void 0!==n?n:document).createRange();return e?(o.setStartBefore(t),o.setEndBefore(t)):(o.setStartAfter(t),o.setEndAfter(t)),o},eu=(e,t,n)=>Xc(t,e)===Xc(n,e),tu=(e,t,n)=>{const o=e?"previousSibling":"nextSibling";let r=n;for(;r&&r!==t;){let e=r[o];if(e&&jc(e)&&(e=e[o]),Fc(e)||Uc(e)){if(eu(t,e,r))return e;break}if(Vc(e))break;r=r.parentNode}return null},nu=T(Zc,!0),ou=T(Zc,!1),ru=(e,t,n)=>{let o;const r=T(tu,!0,t),s=T(tu,!1,t),a=n.startContainer,i=n.startOffset;if(Ir(a)){const e=qc(a)?a.parentNode:a,t=e.getAttribute("data-mce-caret");if("before"===t&&(o=e.nextSibling,Mc(o)))return nu(o);if("after"===t&&(o=e.previousSibling,Mc(o)))return ou(o)}if(!n.collapsed)return n;if(er(a)){if(jc(a)){if(1===e){if(o=s(a),o)return nu(o);if(o=r(a),o)return ou(o)}if(-1===e){if(o=r(a),o)return ou(o);if(o=s(a),o)return nu(o)}return n}if(qr(a)&&i>=a.data.length-1)return 1===e&&(o=s(a),o)?nu(o):n;if($r(a)&&i<=1)return-1===e&&(o=r(a),o)?ou(o):n;if(i===a.data.length)return o=s(a),o?nu(o):n;if(0===i)return o=r(a),o?ou(o):n}return n},su=(e,t)=>Jc(e?0:-1,t).filter(Fc),au=(e,t,n)=>{const o=ru(e,t,n);return-1===e?Vi.fromRangeStart(o):Vi.fromRangeEnd(o)},iu=e=>I.from(e.getNode()).map(yn),lu=(e,t)=>{let n=t;for(;n=e(n);)if(n.isVisible())return n;return n},du=(e,t)=>{const n=Qc(e,t);return!(n||!ar(e.getNode()))||n};var cu;!function(e){e[e.Backwards=-1]="Backwards",e[e.Forwards=1]="Forwards"}(cu||(cu={}));const uu=dr,mu=er,fu=qo,gu=ar,pu=ts,hu=e=>Jr(e)||(e=>!!ns(e)&&!X(ce(e.getElementsByTagName("*")),((e,t)=>e||Kr(t)),!1))(e),bu=os,vu=(e,t)=>e.hasChildNodes()&&t<e.childNodes.length?e.childNodes[t]:null,yu=(e,t)=>{if(Wc(e)){if(pu(t.previousSibling)&&!mu(t.previousSibling))return Vi.before(t);if(mu(t))return Vi(t,0)}if(Kc(e)){if(pu(t.nextSibling)&&!mu(t.nextSibling))return Vi.after(t);if(mu(t))return Vi(t,t.data.length)}return Kc(e)?gu(t)?Vi.before(t):Vi.after(t):Vi.before(t)},Cu=(e,t,n)=>{let o,r,s,a;if(!fu(n)||!t)return null;if(t.isEqual(Vi.after(n))&&n.lastChild){if(a=Vi.after(n.lastChild),Kc(e)&&pu(n.lastChild)&&fu(n.lastChild))return gu(n.lastChild)?Vi.before(n.lastChild):a}else a=t;const i=a.container();let l=a.offset();if(mu(i)){if(Kc(e)&&l>0)return Vi(i,--l);if(Wc(e)&&l<i.length)return Vi(i,++l);o=i}else{if(Kc(e)&&l>0&&(r=vu(i,l-1),pu(r)))return!hu(r)&&(s=Gc(r,e,bu,r),s)?mu(s)?Vi(s,s.data.length):Vi.after(s):mu(r)?Vi(r,r.data.length):Vi.before(r);if(Wc(e)&&l<i.childNodes.length&&(r=vu(i,l),pu(r)))return gu(r)?((e,t)=>{const n=t.nextSibling;return n&&pu(n)?mu(n)?Vi(n,0):Vi.before(n):Cu(cu.Forwards,Vi.after(t),e)})(n,r):!hu(r)&&(s=Gc(r,e,bu,r),s)?mu(s)?Vi(s,0):Vi.before(s):mu(r)?Vi(r,0):Vi.after(r);o=r||a.getNode()}if(o&&(Wc(e)&&a.isAtEnd()||Kc(e)&&a.isAtStart())&&(o=Gc(o,e,M,n,!0),bu(o,n)))return yu(e,o);r=o?Gc(o,e,bu,n):o;const d=Pe(Y(((e,t)=>{const n=[];let o=e;for(;o&&o!==t;)n.push(o),o=o.parentNode;return n})(i,n),uu));return!d||r&&d.contains(r)?r?yu(e,r):null:(a=Wc(e)?Vi.after(d):Vi.before(d),a)},wu=e=>({next:t=>Cu(cu.Forwards,t,e),prev:t=>Cu(cu.Backwards,t,e)}),xu=e=>Vi.isTextPosition(e)?0===e.offset():ts(e.getNode()),Eu=e=>{if(Vi.isTextPosition(e)){const t=e.container();return e.offset()===t.data.length}return ts(e.getNode(!0))},_u=(e,t)=>!Vi.isTextPosition(e)&&!Vi.isTextPosition(t)&&e.getNode()===t.getNode(!0),ku=(e,t,n)=>{const o=wu(t);return I.from(e?o.next(n):o.prev(n))},Su=(e,t,n)=>ku(e,t,n).bind((o=>Qc(n,o,t)&&((e,t,n)=>{return e?!_u(t,n)&&(o=t,!(!Vi.isTextPosition(o)&&ar(o.getNode())))&&Eu(t)&&xu(n):!_u(n,t)&&xu(t)&&Eu(n);var o})(e,n,o)?ku(e,t,o):I.some(o))),Nu=(e,t,n,o)=>Su(e,t,n).bind((n=>o(n)?Nu(e,t,n,o):I.some(n))),Ru=(e,t)=>{const n=e?t.firstChild:t.lastChild;return er(n)?I.some(Vi(n,e?0:n.data.length)):n?ts(n)?I.some(e?Vi.before(n):ar(o=n)?Vi.before(o):Vi.after(o)):((e,t,n)=>{const o=e?Vi.before(n):Vi.after(n);return ku(e,t,o)})(e,t,n):I.none();var o},Au=T(ku,!0),Tu=T(ku,!1),Ou=T(Ru,!0),Bu=T(Ru,!1),Pu="_mce_caret",Du=e=>qo(e)&&e.id===Pu,Lu=(e,t)=>{let n=t;for(;n&&n!==e;){if(Du(n))return n;n=n.parentNode}return null},Mu=e=>Ee(e,"name"),Iu=e=>Pt.isArray(e.start),Fu=e=>!(!Mu(e)&&b(e.forward))||e.forward,Uu=(e,t)=>(qo(t)&&e.isBlock(t)&&!t.innerHTML&&(t.innerHTML='<br data-mce-bogus="1" />'),t),zu=(e,t)=>Bu(e).fold(L,(e=>(t.setStart(e.container(),e.offset()),t.setEnd(e.container(),e.offset()),!0))),ju=(e,t,n)=>!(!(e=>!e.hasChildNodes())(t)||!Lu(e,t)||(((e,t)=>{var n;const o=(null!==(n=e.ownerDocument)&&void 0!==n?n:document).createTextNode(Br);e.appendChild(o),t.setStart(o,0),t.setEnd(o,0)})(t,n),0)),Hu=(e,t,n,o)=>{const r=n[t?"start":"end"],s=e.getRoot();if(r){let e=s,n=r[0];for(let t=r.length-1;e&&t>=1;t--){const n=e.childNodes;if(ju(s,e,o))return!0;if(r[t]>n.length-1)return!!ju(s,e,o)||zu(e,o);e=n[r[t]]}er(e)&&(n=Math.min(r[0],e.data.length)),qo(e)&&(n=Math.min(r[0],e.childNodes.length)),t?o.setStart(e,n):o.setEnd(e,n)}return!0},$u=e=>er(e)&&e.data.length>0,qu=(e,t,n)=>{const o=e.get(n.id+"_"+t),r=null==o?void 0:o.parentNode,s=n.keep;if(o&&r){let a,i;if("start"===t?s?o.hasChildNodes()?(a=o.firstChild,i=1):$u(o.nextSibling)?(a=o.nextSibling,i=0):$u(o.previousSibling)?(a=o.previousSibling,i=o.previousSibling.data.length):(a=r,i=e.nodeIndex(o)+1):(a=r,i=e.nodeIndex(o)):s?o.hasChildNodes()?(a=o.firstChild,i=1):$u(o.previousSibling)?(a=o.previousSibling,i=o.previousSibling.data.length):(a=r,i=e.nodeIndex(o)):(a=r,i=e.nodeIndex(o)),!s){const r=o.previousSibling,s=o.nextSibling;let l;for(Pt.each(Pt.grep(o.childNodes),(e=>{er(e)&&(e.data=e.data.replace(/\uFEFF/g,""))}));l=e.get(n.id+"_"+t);)e.remove(l,!0);if(er(s)&&er(r)&&!At.browser.isOpera()){const t=r.data.length;r.appendData(s.data),e.remove(s),a=r,i=t}}return I.some(Vi(a,i))}return I.none()},Vu=(e,t,n)=>((e,t,n=!1)=>2===t?dl(Dr,n,e):3===t?(e=>{const t=e.getRng();return{start:tl(e.dom.getRoot(),Vi.fromRangeStart(t)),end:tl(e.dom.getRoot(),Vi.fromRangeEnd(t)),forward:e.isForward()}})(e):t?(e=>({rng:e.getRng(),forward:e.isForward()}))(e):ul(e,!1))(e,t,n),Wu=(e,t)=>{((e,t)=>{const n=e.dom;if(t){if(Iu(t))return((e,t)=>{const n=e.createRng();return Hu(e,!0,t,n)&&Hu(e,!1,t,n)?I.some({range:n,forward:Fu(t)}):I.none()})(n,t);if((e=>m(e.start))(t))return((e,t)=>{const n=I.from(nl(e.getRoot(),t.start)),o=I.from(nl(e.getRoot(),t.end));return Mt(n,o,((n,o)=>{const r=e.createRng();return r.setStart(n.container(),n.offset()),r.setEnd(o.container(),o.offset()),{range:r,forward:Fu(t)}}))})(n,t);if((e=>Ee(e,"id"))(t))return((e,t)=>{const n=qu(e,"start",t),o=qu(e,"end",t);return Mt(n,o.or(n),((n,o)=>{const r=e.createRng();return r.setStart(Uu(e,n.container()),n.offset()),r.setEnd(Uu(e,o.container()),o.offset()),{range:r,forward:Fu(t)}}))})(n,t);if(Mu(t))return((e,t)=>I.from(e.select(t.name)[t.index]).map((t=>{const n=e.createRng();return n.selectNode(t),{range:n,forward:!0}})))(n,t);if((e=>Ee(e,"rng"))(t))return I.some({range:t.rng,forward:Fu(t)})}return I.none()})(e,t).each((({range:t,forward:n})=>{e.setRng(t,n)}))},Ku=e=>qo(e)&&"SPAN"===e.tagName&&"bookmark"===e.getAttribute("data-mce-type"),Yu=(Gu=br,e=>Gu===e);var Gu;const Xu=e=>""!==e&&-1!==" \f\n\r\t\v".indexOf(e),Qu=e=>!Xu(e)&&!Yu(e)&&!vr(e),Ju=e=>{const t=[];if(e)for(let n=0;n<e.rangeCount;n++)t.push(e.getRangeAt(n));return t},Zu=(e,t)=>{const n=Uo(t,"td[data-mce-selected],th[data-mce-selected]");return n.length>0?n:(e=>Y((e=>te(e,(e=>{const t=_i(e);return t?[yn(t)]:[]})))(e),Rr))(e)},em=e=>Zu(Ju(e.selection.getSel()),yn(e.getBody())),tm=(e,t)=>eo(e,"table",t),nm=e=>Fn(e).fold(N([e]),(t=>[e].concat(nm(t)))),om=e=>Un(e).fold(N([e]),(t=>"br"===Ht(t)?Bn(t).map((t=>[e].concat(om(t)))).getOr([]):[e].concat(om(t)))),rm=(e,t)=>Mt((e=>{const t=e.startContainer,n=e.startOffset;return er(t)?0===n?I.some(yn(t)):I.none():I.from(t.childNodes[n]).map(yn)})(t),(e=>{const t=e.endContainer,n=e.endOffset;return er(t)?n===t.data.length?I.some(yn(t)):I.none():I.from(t.childNodes[n-1]).map(yn)})(t),((t,n)=>{const o=J(nm(e),T(_n,t)),r=J(om(e),T(_n,n));return o.isSome()&&r.isSome()})).getOr(!1),sm=(e,t,n,o)=>{const r=n,s=new jo(n,r),a=ye(e.schema.getMoveCaretBeforeOnEnterElements(),((e,t)=>!H(["td","th","table"],t.toLowerCase())));let i=n;do{if(er(i)&&0!==Pt.trim(i.data).length)return void(o?t.setStart(i,0):t.setEnd(i,i.data.length));if(a[i.nodeName])return void(o?t.setStartBefore(i):"BR"===i.nodeName?t.setEndBefore(i):t.setEndAfter(i))}while(i=o?s.next():s.prev());"BODY"===r.nodeName&&(o?t.setStart(r,0):t.setEnd(r,r.childNodes.length))},am=e=>{const t=e.selection.getSel();return C(t)&&t.rangeCount>0},im=(e,t)=>{const n=em(e);n.length>0?V(n,(n=>{const o=n.dom,r=e.dom.createRng();r.setStartBefore(o),r.setEndAfter(o),t(r,!0)})):t(e.selection.getRng(),!1)},lm=(e,t,n)=>{const o=ul(e,t);n(o),e.moveToBookmark(o)},dm=e=>x(null==e?void 0:e.nodeType),cm=e=>qo(e)&&!Ku(e)&&!Du(e)&&!Xo(e),um=(e,t,n)=>{const{selection:o,dom:r}=e,s=o.getNode(),a=dr(s);lm(o,!0,(()=>{t()})),a&&dr(s)&&r.isChildOf(s,e.getBody())?e.selection.select(s):n(o.getStart())&&mm(r,o)},mm=(e,t)=>{var n,o;const r=t.getRng(),{startContainer:s,startOffset:a}=r;if(!((e,t)=>{if(cm(t)&&!/^(TD|TH)$/.test(t.nodeName)){const n=e.getAttrib(t,"data-mce-selected"),o=parseInt(n,10);return!isNaN(o)&&o>0}return!1})(e,t.getNode())&&qo(s)){const i=s.childNodes,l=e.getRoot();let d;if(a<i.length){const t=i[a];d=new jo(t,null!==(n=e.getParent(t,e.isBlock))&&void 0!==n?n:l)}else{const t=i[i.length-1];d=new jo(t,null!==(o=e.getParent(t,e.isBlock))&&void 0!==o?o:l),d.next(!0)}for(let n=d.current();n;n=d.next()){if("false"===e.getContentEditable(n))return;if(er(n)&&!hm(n))return r.setStart(n,0),void t.setRng(r)}}},fm=(e,t,n)=>{if(e){const o=t?"nextSibling":"previousSibling";for(e=n?e:e[o];e;e=e[o])if(qo(e)||!hm(e))return e}},gm=(e,t)=>!!e.getTextBlockElements()[t.nodeName.toLowerCase()]||Ts(e,t),pm=(e,t,n)=>e.schema.isValidChild(t,n),hm=(e,t=!1)=>{if(C(e)&&er(e)){const n=t?e.data.replace(/ /g,"\xa0"):e.data;return ss(n)}return!1},bm=(e,t)=>{const n=e.dom;return cm(t)&&"false"===n.getContentEditable(t)&&((e,t)=>{const n="[data-mce-cef-wrappable]",o=Ed(e),r=Ge(o)?n:`${n},${o}`;return xn(yn(t),r)})(e,t)&&0===n.select('[contenteditable="true"]',t).length},vm=(e,t)=>w(e)?e(t):(C(t)&&(e=e.replace(/%(\w+)/g,((e,n)=>t[n]||e))),e),ym=(e,t)=>(t=t||"",e=""+((e=e||"").nodeName||e),t=""+(t.nodeName||t),e.toLowerCase()===t.toLowerCase()),Cm=(e,t)=>{if(y(e))return null;{let n=String(e);return"color"!==t&&"backgroundColor"!==t||(n=Ca(n)),"fontWeight"===t&&700===e&&(n="bold"),"fontFamily"===t&&(n=n.replace(/[\'\"]/g,"").replace(/,\s+/g,",")),n}},wm=(e,t,n)=>{const o=e.getStyle(t,n);return Cm(o,n)},xm=(e,t)=>{let n;return e.getParent(t,(t=>!!qo(t)&&(n=e.getStyle(t,"text-decoration"),!!n&&"none"!==n))),n},Em=(e,t,n)=>e.getParents(t,n,e.getRoot()),_m=(e,t,n)=>{const o=e.formatter.get(t);return C(o)&&$(o,n)},km=e=>_e(e,"block"),Sm=e=>_e(e,"selector"),Nm=e=>_e(e,"inline"),Rm=e=>Sm(e)&&!1!==e.expand&&!Nm(e),Am=e=>(e=>{const t=[];let n=e;for(;n;){if(er(n)&&n.data!==Br||n.childNodes.length>1)return[];qo(n)&&t.push(n),n=n.firstChild}return t})(e).length>0,Tm=e=>Du(e.dom)&&Am(e.dom),Om=Ku,Bm=Em,Pm=hm,Dm=gm,Lm=(e,t)=>{let n=t;for(;n;){if(qo(n)&&e.getContentEditable(n))return"false"===e.getContentEditable(n)?n:t;n=n.parentNode}return t},Mm=(e,t,n,o)=>{const r=t.data;if(e){for(let e=n;e>0;e--)if(o(r.charAt(e-1)))return e}else for(let e=n;e<r.length;e++)if(o(r.charAt(e)))return e;return-1},Im=(e,t,n)=>Mm(e,t,n,(e=>Yu(e)||Xu(e))),Fm=(e,t,n)=>Mm(e,t,n,Qu),Um=(e,t,n,o,r,s)=>{let a;const i=e.getParent(n,e.isBlock)||t,l=(t,n,o)=>{const s=hi(e),l=r?s.backwards:s.forwards;return I.from(l(t,n,((e,t)=>Om(e.parentNode)?-1:(a=e,o(r,e,t))),i))};return l(n,o,Im).bind((e=>s?l(e.container,e.offset+(r?-1:0),Fm):I.some(e))).orThunk((()=>a?I.some({container:a,offset:r?0:a.length}):I.none()))},zm=(e,t,n,o,r)=>{const s=o[r];er(o)&&Ge(o.data)&&s&&(o=s);const a=Bm(e,o);for(let o=0;o<a.length;o++)for(let r=0;r<t.length;r++){const s=t[r];if((!C(s.collapsed)||s.collapsed===n.collapsed)&&Sm(s)&&e.is(a[o],s.selector))return a[o]}return o},jm=(e,t,n,o)=>{var r;let s=n;const a=e.getRoot(),i=t[0];if(km(i)&&(s=i.wrapper?null:e.getParent(n,i.block,a)),!s){const t=null!==(r=e.getParent(n,"LI,TD,TH,SUMMARY"))&&void 0!==r?r:a;s=e.getParent(er(n)?n.parentNode:n,(t=>t!==a&&Dm(e.schema,t)),t)}if(s&&km(i)&&i.wrapper&&(s=Bm(e,s,"ul,ol").reverse()[0]||s),!s)for(s=n;s&&s[o]&&!e.isBlock(s[o])&&(s=s[o],!ym(s,"br")););return s||n},Hm=(e,t,n,o)=>{const r=n.parentNode;return!C(n[o])&&(!(r!==t&&!y(r)&&!e.isBlock(r))||Hm(e,t,r,o))},$m=(e,t,n,o,r)=>{let s=n;const a=r?"previousSibling":"nextSibling",i=e.getRoot();if(er(n)&&!Pm(n)&&(r?o>0:o<n.data.length))return n;for(;s;){if(!t[0].block_expand&&e.isBlock(s))return s;for(let t=s[a];t;t=t[a]){const n=er(t)&&!Hm(e,i,t,a);if(!Om(t)&&(!ar(l=t)||!l.getAttribute("data-mce-bogus")||l.nextSibling)&&!Pm(t,n))return s}if(s===i||s.parentNode===i){n=s;break}s=s.parentNode}var l;return n},qm=e=>Om(e.parentNode)||Om(e),Vm=(e,t,n,o=!1)=>{let{startContainer:r,startOffset:s,endContainer:a,endOffset:i}=t;const l=n[0];return qo(r)&&r.hasChildNodes()&&(r=ki(r,s),er(r)&&(s=0)),qo(a)&&a.hasChildNodes()&&(a=ki(a,t.collapsed?i:i-1),er(a)&&(i=a.data.length)),r=Lm(e,r),a=Lm(e,a),qm(r)&&(r=Om(r)?r:r.parentNode,r=t.collapsed?r.previousSibling||r:r.nextSibling||r,er(r)&&(s=t.collapsed?r.length:0)),qm(a)&&(a=Om(a)?a:a.parentNode,a=t.collapsed?a.nextSibling||a:a.previousSibling||a,er(a)&&(i=t.collapsed?0:a.length)),t.collapsed&&(Um(e,e.getRoot(),r,s,!0,o).each((({container:e,offset:t})=>{r=e,s=t})),Um(e,e.getRoot(),a,i,!1,o).each((({container:e,offset:t})=>{a=e,i=t}))),(Nm(l)||l.block_expand)&&(Nm(l)&&er(r)&&0!==s||(r=$m(e,n,r,s,!0)),Nm(l)&&er(a)&&i!==a.data.length||(a=$m(e,n,a,i,!1))),Rm(l)&&(r=zm(e,n,t,r,"previousSibling"),a=zm(e,n,t,a,"nextSibling")),(km(l)||Sm(l))&&(r=jm(e,n,r,"previousSibling"),a=jm(e,n,a,"nextSibling"),km(l)&&(e.isBlock(r)||(r=$m(e,n,r,s,!0)),e.isBlock(a)||(a=$m(e,n,a,i,!1)))),qo(r)&&r.parentNode&&(s=e.nodeIndex(r),r=r.parentNode),qo(a)&&a.parentNode&&(i=e.nodeIndex(a)+1,a=a.parentNode),{startContainer:r,startOffset:s,endContainer:a,endOffset:i}},Wm=(e,t,n)=>{var o;const r=t.startOffset,s=ki(t.startContainer,r),a=t.endOffset,i=ki(t.endContainer,a-1),l=e=>{const t=e[0];er(t)&&t===s&&r>=t.data.length&&e.splice(0,1);const n=e[e.length-1];return 0===a&&e.length>0&&n===i&&er(n)&&e.splice(e.length-1,1),e},d=(e,t,n)=>{const o=[];for(;e&&e!==n;e=e[t])o.push(e);return o},c=(t,n)=>e.getParent(t,(e=>e.parentNode===n),n),u=(e,t,o)=>{const r=o?"nextSibling":"previousSibling";for(let s=e,a=s.parentNode;s&&s!==t;s=a){a=s.parentNode;const t=d(s===e?s:s[r],r);t.length&&(o||t.reverse(),n(l(t)))}};if(s===i)return n(l([s]));const m=null!==(o=e.findCommonAncestor(s,i))&&void 0!==o?o:e.getRoot();if(e.isChildOf(s,i))return u(s,m,!0);if(e.isChildOf(i,s))return u(i,m);const f=c(s,m)||s,g=c(i,m)||i;u(s,f,!0);const p=d(f===s?f:f.nextSibling,"nextSibling",g===i?g.nextSibling:g);p.length&&n(l(p)),u(i,g)},Km=['pre[class*=language-][contenteditable="false"]',"figure.image","div[data-ephox-embed-iri]","div.tiny-pageembed","div.mce-toc","div[data-mce-toc]"],Ym=(e,t,n,o,r,s)=>{const{uid:a=t,...i}=n;un(e,Za()),Jt(e,`${ti()}`,a),Jt(e,`${ei()}`,o);const{attributes:l={},classes:d=[]}=r(a,i);if(Zt(e,l),((e,t)=>{V(t,(t=>{un(e,t)}))})(e,d),s){d.length>0&&Jt(e,`${oi()}`,d.join(","));const t=me(l);t.length>0&&Jt(e,`${ri()}`,t.join(","))}},Gm=(e,t,n,o,r)=>{const s=bn("span",e);return Ym(s,t,n,o,r,!1),s},Xm=(e,t,n,o,r,s)=>{const a=[],i=Gm(e.getDoc(),n,s,o,r),l=Xa(),d=()=>{l.clear()},c=e=>{V(e,u)},u=t=>{switch(((e,t,n,o)=>An(t).fold((()=>"skipping"),(r=>"br"===o||(e=>Kt(e)&&Cr(e)===Br)(t)?"valid":(e=>Wt(e)&&gn(e,Za()))(t)?"existing":Du(t.dom)?"caret":$(Km,(e=>xn(t,e)))?"valid-block":pm(e,n,o)&&pm(e,Ht(r),n)?"valid":"invalid-child")))(e,t,"span",Ht(t))){case"invalid-child":{d();const e=Mn(t);c(e),d();break}case"valid-block":d(),Ym(t,n,s,o,r,!0);break;case"valid":{const e=l.get().getOrThunk((()=>{const e=fi(i);return a.push(e),l.set(e),e}));yo(t,e);break}}};return Wm(e.dom,t,(e=>{d(),(e=>{const t=q(e,yn);c(t)})(e)})),a},Qm=e=>{const t=(()=>{const e={};return{register:(t,n)=>{e[t]={name:t,settings:n}},lookup:t=>xe(e,t).map((e=>e.settings)),getNames:()=>me(e)}})();((e,t)=>{const n=ei(),o=e=>I.from(e.attr(n)).bind(t.lookup),r=e=>{var t,n;e.attr(ti(),null),e.attr(ei(),null),e.attr(ni(),null);const o=I.from(e.attr(ri())).map((e=>e.split(","))).getOr([]),r=I.from(e.attr(oi())).map((e=>e.split(","))).getOr([]);V(o,(t=>e.attr(t,null)));const s=null!==(n=null===(t=e.attr("class"))||void 0===t?void 0:t.split(" "))&&void 0!==n?n:[],a=re(s,[Za()].concat(r));e.attr("class",a.length>0?a.join(" "):null),e.attr(oi(),null),e.attr(ri(),null)};e.serializer.addTempAttr(ni()),e.serializer.addAttributeFilter(n,(e=>{for(const t of e)o(t).each((e=>{!1===e.persistent&&("span"===t.name?t.unwrap():r(t))}))}))})(e,t);const n=((e,t)=>{const n=$a({}),o=()=>({listeners:[],previous:Xa()}),r=(e,t)=>{s(e,(e=>(t(e),e)))},s=(e,t)=>{const r=n.get(),s=t(xe(r,e).getOrThunk(o));r[e]=s,n.set(r)},a=(t,n)=>{V(li(e,t),(e=>{n?Jt(e,ni(),"true"):on(e,ni())}))},i=Ja((()=>{const n=ae(t.getNames());V(n,(t=>{s(t,(n=>{const o=n.previous.get();return ai(e,I.some(t)).fold((()=>{o.each((e=>{(e=>{r(e,(t=>{V(t.listeners,(t=>t(!1,e)))}))})(t),n.previous.clear(),a(e,!1)}))}),(({uid:e,name:t,elements:s})=>{Dt(o,e)||(o.each((e=>a(e,!1))),((e,t,n)=>{r(e,(o=>{V(o.listeners,(o=>o(!0,e,{uid:t,nodes:q(n,(e=>e.dom))})))}))})(t,e,s),n.previous.set(e),a(e,!0))})),{previous:n.previous,listeners:n.listeners}}))}))}),30);return e.on("remove",(()=>{i.cancel()})),e.on("NodeChange",(()=>{i.throttle()})),{addListener:(e,t)=>{s(e,(e=>({previous:e.previous,listeners:e.listeners.concat([t])})))}}})(e,t),o=Xt("span"),r=e=>{V(e,(e=>{o(e)?Eo(e):(e=>{fn(e,Za()),on(e,`${ti()}`),on(e,`${ei()}`),on(e,`${ni()}`);const t=tn(e,`${ri()}`).map((e=>e.split(","))).getOr([]),n=tn(e,`${oi()}`).map((e=>e.split(","))).getOr([]);var o;V(t,(t=>on(e,t))),o=e,V(n,(e=>{fn(o,e)})),on(e,`${oi()}`),on(e,`${ri()}`)})(e)}))};return{register:(e,n)=>{t.register(e,n)},annotate:(n,o)=>{t.lookup(n).each((t=>{((e,t,n,o)=>{e.undoManager.transact((()=>{const r=e.selection,s=r.getRng(),a=em(e).length>0,i=ui("mce-annotation");if(s.collapsed&&!a&&((e,t)=>{const n=Vm(e.dom,t,[{inline:"span"}]);t.setStart(n.startContainer,n.startOffset),t.setEnd(n.endContainer,n.endOffset),e.selection.setRng(t)})(e,s),r.getRng().collapsed&&!a){const s=Gm(e.getDoc(),i,o,t,n.decorate);So(s,br),r.getRng().insertNode(s.dom),r.select(s.dom)}else lm(r,!1,(()=>{im(e,(r=>{Xm(e,r,i,t,n.decorate,o)}))}))}))})(e,n,t,o)}))},annotationChanged:(e,t)=>{n.addListener(e,t)},remove:t=>{ai(e,I.some(t)).each((({elements:t})=>{const n=e.selection.getBookmark();r(t),e.selection.moveToBookmark(n)}))},removeAll:t=>{const n=e.selection.getBookmark();ge(di(e,t),((e,t)=>{r(e)})),e.selection.moveToBookmark(n)},getAll:t=>{const n=di(e,t);return pe(n,(e=>q(e,(e=>e.dom))))}}},Jm=e=>({getBookmark:T(Vu,e),moveToBookmark:T(Wu,e)});Jm.isBookmarkNode=Ku;const Zm=(e,t,n)=>!n.collapsed&&$(n.getClientRects(),(n=>((e,t,n)=>t>=e.left&&t<=e.right&&n>=e.top&&n<=e.bottom)(n,e,t))),ef=(e,t,n)=>{e.dispatch(t,n)},tf=(e,t,n,o)=>{e.dispatch("FormatApply",{format:t,node:n,vars:o})},nf=(e,t,n,o)=>{e.dispatch("FormatRemove",{format:t,node:n,vars:o})},of=(e,t)=>e.dispatch("SetContent",t),rf=(e,t)=>e.dispatch("GetContent",t),sf=(e,t)=>e.dispatch("PastePlainTextToggle",{state:t}),af={BACKSPACE:8,DELETE:46,DOWN:40,ENTER:13,ESC:27,LEFT:37,RIGHT:39,SPACEBAR:32,TAB:9,UP:38,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,modifierPressed:e=>e.shiftKey||e.ctrlKey||e.altKey||af.metaKeyPressed(e),metaKeyPressed:e=>At.os.isMacOS()||At.os.isiOS()?e.metaKey:e.ctrlKey&&!e.altKey},lf="data-mce-selected",df=Math.abs,cf=Math.round,uf={nw:[0,0,-1,-1],ne:[1,0,1,-1],se:[1,1,1,1],sw:[0,1,-1,1]},mf=(e,t)=>{const n=t.dom,o=t.getDoc(),r=document,s=t.getBody();let a,i,l,d,c,u,m,f,g,p,h,b,v,y,w;const x=e=>C(e)&&(ir(e)||n.is(e,"figure.image")),E=e=>mr(e)||n.hasClass(e,"mce-preview-object"),_=e=>{const n=e.target;((e,t)=>{if((e=>"longpress"===e.type||0===e.type.indexOf("touch"))(e)){const n=e.touches[0];return x(e.target)&&!Zm(n.clientX,n.clientY,t)}return x(e.target)&&!Zm(e.clientX,e.clientY,t)})(e,t.selection.getRng())&&!e.isDefaultPrevented()&&t.selection.select(n)},k=e=>n.hasClass(e,"mce-preview-object")&&C(e.firstElementChild)?[e,e.firstElementChild]:n.is(e,"figure.image")?[e.querySelector("img")]:[e],S=e=>{const o=cd(t);return!!o&&"false"!==e.getAttribute("data-mce-resize")&&e!==t.getBody()&&(n.hasClass(e,"mce-preview-object")&&C(e.firstElementChild)?xn(yn(e.firstElementChild),o):xn(yn(e),o))},N=(e,o,r)=>{if(C(r)){const s=k(e);V(s,(e=>{e.style[o]||!t.schema.isValid(e.nodeName.toLowerCase(),o)?n.setStyle(e,o,r):n.setAttrib(e,o,""+r)}))}},R=(e,t,n)=>{N(e,"width",t),N(e,"height",n)},A=e=>{let o,r,c,C,_;o=e.screenX-u,r=e.screenY-m,b=o*d[2]+f,v=r*d[3]+g,b=b<5?5:b,v=v<5?5:v,c=(x(a)||E(a))&&!1!==ud(t)?!af.modifierPressed(e):af.modifierPressed(e),c&&(df(o)>df(r)?(v=cf(b*p),b=cf(v/p)):(b=cf(v/p),v=cf(b*p))),R(i,b,v),C=d.startPos.x+o,_=d.startPos.y+r,C=C>0?C:0,_=_>0?_:0,n.setStyles(l,{left:C,top:_,display:"block"}),l.innerHTML=b+" &times; "+v,d[2]<0&&i.clientWidth<=b&&n.setStyle(i,"left",void 0+(f-b)),d[3]<0&&i.clientHeight<=v&&n.setStyle(i,"top",void 0+(g-v)),o=s.scrollWidth-y,r=s.scrollHeight-w,o+r!==0&&n.setStyles(l,{left:C-o,top:_-r}),h||(((e,t,n,o,r)=>{e.dispatch("ObjectResizeStart",{target:t,width:n,height:o,origin:r})})(t,a,f,g,"corner-"+d.name),h=!0)},T=()=>{const e=h;h=!1,e&&(N(a,"width",b),N(a,"height",v)),n.unbind(o,"mousemove",A),n.unbind(o,"mouseup",T),r!==o&&(n.unbind(r,"mousemove",A),n.unbind(r,"mouseup",T)),n.remove(i),n.remove(l),n.remove(c),O(a),e&&(((e,t,n,o,r)=>{e.dispatch("ObjectResized",{target:t,width:n,height:o,origin:r})})(t,a,b,v,"corner-"+d.name),n.setAttrib(a,"style",n.getAttrib(a,"style"))),t.nodeChanged()},O=e=>{M();const h=n.getPos(e,s),C=h.x,x=h.y,_=e.getBoundingClientRect(),N=_.width||_.right-_.left,O=_.height||_.bottom-_.top;a!==e&&(P(),a=e,b=v=0);const B=t.dispatch("ObjectSelected",{target:e});S(e)&&!B.isDefaultPrevented()?ge(uf,((e,t)=>{let h=n.get("mceResizeHandle"+t);h&&n.remove(h),h=n.add(s,"div",{id:"mceResizeHandle"+t,"data-mce-bogus":"all",class:"mce-resizehandle",unselectable:!0,style:"cursor:"+t+"-resize; margin:0; padding:0"}),n.bind(h,"mousedown",(h=>{h.stopImmediatePropagation(),h.preventDefault(),(h=>{const b=k(a)[0];var v;u=h.screenX,m=h.screenY,f=b.clientWidth,g=b.clientHeight,p=g/f,d=e,d.name=t,d.startPos={x:N*e[0]+C,y:O*e[1]+x},y=s.scrollWidth,w=s.scrollHeight,c=n.add(s,"div",{class:"mce-resize-backdrop","data-mce-bogus":"all"}),n.setStyles(c,{position:"fixed",left:"0",top:"0",width:"100%",height:"100%"}),i=E(v=a)?n.create("img",{src:At.transparentSrc}):v.cloneNode(!0),n.addClass(i,"mce-clonedresizable"),n.setAttrib(i,"data-mce-bogus","all"),i.contentEditable="false",n.setStyles(i,{left:C,top:x,margin:0}),R(i,N,O),i.removeAttribute(lf),s.appendChild(i),n.bind(o,"mousemove",A),n.bind(o,"mouseup",T),r!==o&&(n.bind(r,"mousemove",A),n.bind(r,"mouseup",T)),l=n.add(s,"div",{class:"mce-resize-helper","data-mce-bogus":"all"},f+" &times; "+g)})(h)})),e.elm=h,n.setStyles(h,{left:N*e[0]+C-h.offsetWidth/2,top:O*e[1]+x-h.offsetHeight/2})})):P(!1)},B=Qa(O,0),P=(e=!0)=>{B.cancel(),M(),a&&e&&a.removeAttribute(lf),ge(uf,((e,t)=>{const o=n.get("mceResizeHandle"+t);o&&(n.unbind(o),n.remove(o))}))},D=(e,t)=>n.isChildOf(e,t),L=o=>{if(h||t.removed||t.composing)return;const r="mousedown"===o.type?o.target:e.getNode(),a=no(yn(r),"table,img,figure.image,hr,video,span.mce-preview-object,details").map((e=>e.dom)).filter((e=>n.isEditable(e.parentElement)||"IMG"===e.nodeName&&n.isEditable(e))).getOrUndefined(),i=C(a)?n.getAttrib(a,lf,"1"):"1";if(V(n.select(`img[${lf}],hr[${lf}]`),(e=>{e.removeAttribute(lf)})),C(a)&&D(a,s)&&t.hasFocus()){I();const t=e.getStart(!0);if(D(t,a)&&D(e.getEnd(!0),a))return n.setAttrib(a,lf,i),void B.throttle(a)}P()},M=()=>{ge(uf,(e=>{e.elm&&(n.unbind(e.elm),delete e.elm)}))},I=()=>{try{t.getDoc().execCommand("enableObjectResizing",!1,"false")}catch(e){}};return t.on("init",(()=>{I(),t.on("NodeChange ResizeEditor ResizeWindow ResizeContent drop",L),t.on("keyup compositionend",(e=>{a&&"TABLE"===a.nodeName&&L(e)})),t.on("hide blur",P),t.on("contextmenu longpress",_,!0)})),t.on("remove",M),{isResizable:S,showResizeRect:O,hideResizeRect:P,updateResizeRect:L,destroy:()=>{B.cancel(),a=i=c=null}}},ff=(e,t,n)=>{const o=e.document.createRange();var r;return r=o,t.fold((e=>{r.setStartBefore(e.dom)}),((e,t)=>{r.setStart(e.dom,t)}),(e=>{r.setStartAfter(e.dom)})),((e,t)=>{t.fold((t=>{e.setEndBefore(t.dom)}),((t,n)=>{e.setEnd(t.dom,n)}),(t=>{e.setEndAfter(t.dom)}))})(o,n),o},gf=(e,t,n,o,r)=>{const s=e.document.createRange();return s.setStart(t.dom,n),s.setEnd(o.dom,r),s},pf=hl([{ltr:["start","soffset","finish","foffset"]},{rtl:["start","soffset","finish","foffset"]}]),hf=(e,t,n)=>t(yn(n.startContainer),n.startOffset,yn(n.endContainer),n.endOffset);pf.ltr,pf.rtl;const bf=(e,t,n,o)=>({start:e,soffset:t,finish:n,foffset:o}),vf=document.caretPositionFromPoint?(e,t,n)=>{var o,r;return I.from(null===(r=(o=e.dom).caretPositionFromPoint)||void 0===r?void 0:r.call(o,t,n)).bind((t=>{if(null===t.offsetNode)return I.none();const n=e.dom.createRange();return n.setStart(t.offsetNode,t.offset),n.collapse(),I.some(n)}))}:document.caretRangeFromPoint?(e,t,n)=>{var o,r;return I.from(null===(r=(o=e.dom).caretRangeFromPoint)||void 0===r?void 0:r.call(o,t,n))}:I.none,yf=hl([{before:["element"]},{on:["element","offset"]},{after:["element"]}]),Cf={before:yf.before,on:yf.on,after:yf.after,cata:(e,t,n,o)=>e.fold(t,n,o),getStart:e=>e.fold(R,R,R)},wf=hl([{domRange:["rng"]},{relative:["startSitu","finishSitu"]},{exact:["start","soffset","finish","foffset"]}]),xf={domRange:wf.domRange,relative:wf.relative,exact:wf.exact,exactFromRange:e=>wf.exact(e.start,e.soffset,e.finish,e.foffset),getWin:e=>{const t=(e=>e.match({domRange:e=>yn(e.startContainer),relative:(e,t)=>Cf.getStart(e),exact:(e,t,n,o)=>e}))(e);return Rn(t)},range:bf},Ef=(e,t)=>{const n=Ht(e);return"input"===n?Cf.after(e):H(["br","img"],n)?0===t?Cf.before(e):Cf.after(e):Cf.on(e,t)},_f=(e,t)=>{const n=e.fold(Cf.before,Ef,Cf.after),o=t.fold(Cf.before,Ef,Cf.after);return xf.relative(n,o)},kf=(e,t,n,o)=>{const r=Ef(e,t),s=Ef(n,o);return xf.relative(r,s)},Sf=(e,t)=>{const n=(t||document).createDocumentFragment();return V(e,(e=>{n.appendChild(e.dom)})),yn(n)},Nf=e=>{const t=xf.getWin(e).dom,n=(e,n,o,r)=>gf(t,e,n,o,r),o=(e=>e.match({domRange:e=>{const t=yn(e.startContainer),n=yn(e.endContainer);return kf(t,e.startOffset,n,e.endOffset)},relative:_f,exact:kf}))(e);return((e,t)=>{const n=((e,t)=>t.match({domRange:e=>({ltr:N(e),rtl:I.none}),relative:(t,n)=>({ltr:De((()=>ff(e,t,n))),rtl:De((()=>I.some(ff(e,n,t))))}),exact:(t,n,o,r)=>({ltr:De((()=>gf(e,t,n,o,r))),rtl:De((()=>I.some(gf(e,o,r,t,n))))})}))(e,t);return((e,t)=>{const n=t.ltr();return n.collapsed?t.rtl().filter((e=>!1===e.collapsed)).map((e=>pf.rtl(yn(e.endContainer),e.endOffset,yn(e.startContainer),e.startOffset))).getOrThunk((()=>hf(0,pf.ltr,n))):hf(0,pf.ltr,n)})(0,n)})(t,o).match({ltr:n,rtl:n})},Rf=(e,t,n)=>((e,t,n)=>((e,t,n)=>{const o=yn(e.document);return vf(o,t,n).map((e=>bf(yn(e.startContainer),e.startOffset,yn(e.endContainer),e.endOffset)))})(e,t,n))(Rn(yn(n)).dom,e,t).map((e=>{const t=n.createRange();return t.setStart(e.start.dom,e.soffset),t.setEnd(e.finish.dom,e.foffset),t})).getOrUndefined(),Af=(e,t)=>C(e)&&C(t)&&e.startContainer===t.startContainer&&e.startOffset===t.startOffset&&e.endContainer===t.endContainer&&e.endOffset===t.endOffset,Tf=(e,t,n)=>null!==((e,t,n)=>{let o=e;for(;o&&o!==t;){if(n(o))return o;o=o.parentNode}return null})(e,t,n),Of=(e,t,n)=>Tf(e,t,(e=>e.nodeName===n)),Bf=(e,t)=>Ur(e)&&!Tf(e,t,Du),Pf=(e,t,n)=>{const o=t.parentNode;if(o){const r=new jo(t,e.getParent(o,e.isBlock)||e.getRoot());let s;for(;s=r[n?"prev":"next"]();)if(ar(s))return!0}return!1},Df=(e,t,n,o,r)=>{const s=e.getRoot(),a=e.schema.getNonEmptyElements(),i=r.parentNode;let l,d;if(!i)return I.none();const c=e.getParent(i,e.isBlock)||s;if(o&&ar(r)&&t&&e.isEmpty(c))return I.some(Vi(i,e.nodeIndex(r)));const u=new jo(r,c);for(;d=u[o?"prev":"next"]();){if("false"===e.getContentEditableParent(d)||Bf(d,s))return I.none();if(er(d)&&d.data.length>0)return Of(d,s,"A")?I.none():I.some(Vi(d,o?d.data.length:0));if(e.isBlock(d)||a[d.nodeName.toLowerCase()])return I.none();l=d}return or(l)?I.none():n&&l?I.some(Vi(l,0)):I.none()},Lf=(e,t,n,o)=>{const r=e.getRoot();let s,a=!1,i=n?o.startContainer:o.endContainer,l=n?o.startOffset:o.endOffset;const d=qo(i)&&l===i.childNodes.length,c=e.schema.getNonEmptyElements();let u=n;if(Ur(i))return I.none();if(qo(i)&&l>i.childNodes.length-1&&(u=!1),rr(i)&&(i=r,l=0),i===r){if(u&&(s=i.childNodes[l>0?l-1:0],s)){if(Ur(s))return I.none();if(c[s.nodeName]||Qo(s))return I.none()}if(i.hasChildNodes()){if(l=Math.min(!u&&l>0?l-1:l,i.childNodes.length-1),i=i.childNodes[l],l=er(i)&&d?i.data.length:0,!t&&i===r.lastChild&&Qo(i))return I.none();if(((e,t)=>{let n=t;for(;n&&n!==e;){if(dr(n))return!0;n=n.parentNode}return!1})(r,i)||Ur(i))return I.none();if(gr(i))return I.none();if(i.hasChildNodes()&&!Qo(i)){s=i;const t=new jo(i,r);do{if(dr(s)||Ur(s)){a=!1;break}if(er(s)&&s.data.length>0){l=u?0:s.data.length,i=s,a=!0;break}if(c[s.nodeName.toLowerCase()]&&!ur(s)){l=e.nodeIndex(s),i=s.parentNode,u||l++,a=!0;break}}while(s=u?t.next():t.prev())}}}return t&&(er(i)&&0===l&&Df(e,d,t,!0,i).each((e=>{i=e.container(),l=e.offset(),a=!0})),qo(i)&&(s=i.childNodes[l],s||(s=i.childNodes[l-1]),!s||!ar(s)||((e,t)=>{var n;return"A"===(null===(n=e.previousSibling)||void 0===n?void 0:n.nodeName)})(s)||Pf(e,s,!1)||Pf(e,s,!0)||Df(e,d,t,!0,s).each((e=>{i=e.container(),l=e.offset(),a=!0})))),u&&!t&&er(i)&&l===i.data.length&&Df(e,d,t,!1,i).each((e=>{i=e.container(),l=e.offset(),a=!0})),a&&i?I.some(Vi(i,l)):I.none()},Mf=(e,t)=>{const n=t.collapsed,o=t.cloneRange(),r=Vi.fromRangeStart(t);return Lf(e,n,!0,o).each((e=>{n&&Vi.isAbove(r,e)||o.setStart(e.container(),e.offset())})),n||Lf(e,n,!1,o).each((e=>{o.setEnd(e.container(),e.offset())})),n&&o.collapse(!0),Af(t,o)?I.none():I.some(o)},If=(e,t)=>e.splitText(t),Ff=e=>{let t=e.startContainer,n=e.startOffset,o=e.endContainer,r=e.endOffset;if(t===o&&er(t)){if(n>0&&n<t.data.length)if(o=If(t,n),t=o.previousSibling,r>n){r-=n;const e=If(o,r).previousSibling;t=o=e,r=e.data.length,n=0}else r=0}else if(er(t)&&n>0&&n<t.data.length&&(t=If(t,n),n=0),er(o)&&r>0&&r<o.data.length){const e=If(o,r).previousSibling;o=e,r=e.data.length}return{startContainer:t,startOffset:n,endContainer:o,endOffset:r}},Uf=e=>({walk:(t,n)=>Wm(e,t,n),split:Ff,expand:(t,n={type:"word"})=>{if("word"===n.type){const n=Vm(e,t,[{inline:"span"}]),o=e.createRng();return o.setStart(n.startContainer,n.startOffset),o.setEnd(n.endContainer,n.endOffset),o}return t},normalize:t=>Mf(e,t).fold(L,(e=>(t.setStart(e.startContainer,e.startOffset),t.setEnd(e.endContainer,e.endOffset),!0)))});Uf.compareRanges=Af,Uf.getCaretRangeFromPoint=Rf,Uf.getSelectedNode=_i,Uf.getNode=ki;const zf=((e,t)=>{const n=t=>{const n=(e=>{const t=e.dom;return Gn(e)?t.getBoundingClientRect().height:t.offsetHeight})(t);if(n<=0||null===n){const n=co(t,e);return parseFloat(n)||0}return n},o=(e,t)=>X(t,((t,n)=>{const o=co(e,n),r=void 0===o?0:parseInt(o,10);return isNaN(r)?t:t+r}),0);return{set:(t,n)=>{if(!x(n)&&!n.match(/^[0-9]+$/))throw new Error(e+".set accepts only positive integer values. Value was "+n);const o=t.dom;so(o)&&(o.style[e]=n+"px")},get:n,getOuter:n,aggregate:o,max:(e,t,n)=>{const r=o(e,n);return t>r?t-r:0}}})("height"),jf=()=>yn(document),Hf=(e,t)=>e.view(t).fold(N([]),(t=>{const n=e.owner(t),o=Hf(e,n);return[t].concat(o)}));var $f=Object.freeze({__proto__:null,view:e=>{var t;return(e.dom===document?I.none():I.from(null===(t=e.dom.defaultView)||void 0===t?void 0:t.frameElement)).map(yn)},owner:e=>Nn(e)});const qf=e=>"textarea"===Ht(e),Vf=(e,t)=>{const n=(e=>{const t=e.dom.ownerDocument,n=t.body,o=t.defaultView,r=t.documentElement;if(n===e.dom)return To(n.offsetLeft,n.offsetTop);const s=Oo(null==o?void 0:o.pageYOffset,r.scrollTop),a=Oo(null==o?void 0:o.pageXOffset,r.scrollLeft),i=Oo(r.clientTop,n.clientTop),l=Oo(r.clientLeft,n.clientLeft);return Bo(e).translate(a-l,s-i)})(e),o=(e=>zf.get(e))(e);return{element:e,bottom:n.top+o,height:o,pos:n,cleanup:t}},Wf=(e,t,n,o)=>{Xf(e,((r,s)=>Yf(e,t,n,o)),n)},Kf=(e,t,n,o,r)=>{const s={elm:o.element.dom,alignToTop:r};((e,t)=>e.dispatch("ScrollIntoView",t).isDefaultPrevented())(e,s)||(n(e,t,Po(t).top,o,r),((e,t)=>{e.dispatch("AfterScrollIntoView",t)})(e,s))},Yf=(e,t,n,o)=>{const r=yn(e.getBody()),s=yn(e.getDoc());r.dom.offsetWidth;const a=((e,t)=>{const n=((e,t)=>{const n=Mn(e);if(0===n.length||qf(e))return{element:e,offset:t};if(t<n.length&&!qf(n[t]))return{element:n[t],offset:0};{const o=n[n.length-1];return qf(o)?{element:e,offset:t}:"img"===Ht(o)?{element:o,offset:1}:Kt(o)?{element:o,offset:Cr(o).length}:{element:o,offset:Mn(o).length}}})(e,t),o=hn('<span data-mce-bogus="all" style="display: inline-block;">\ufeff</span>');return po(n.element,o),Vf(o,(()=>xo(o)))})(yn(n.startContainer),n.startOffset);Kf(e,s,t,a,o),a.cleanup()},Gf=(e,t,n,o)=>{const r=yn(e.getDoc());Kf(e,r,n,(e=>Vf(yn(e),_))(t),o)},Xf=(e,t,n)=>{const o=n.startContainer,r=n.startOffset,s=n.endContainer,a=n.endOffset;t(yn(o),yn(s));const i=e.dom.createRng();i.setStart(o,r),i.setEnd(s,a),e.selection.setRng(n)},Qf=(e,t,n,o,r)=>{const s=t.pos;if(o)Do(s.left,s.top,r);else{const o=s.top-n+t.height;Do(-e.getBody().getBoundingClientRect().left,o,r)}},Jf=(e,t,n,o,r,s)=>{const a=o+n,i=r.pos.top,l=r.bottom,d=l-i>=o;i<n?Qf(e,r,o,!1!==s,t):i>a?Qf(e,r,o,d?!1!==s:!0===s,t):l>a&&!d&&Qf(e,r,o,!0===s,t)},Zf=(e,t,n,o,r)=>{const s=Rn(t).dom.innerHeight;Jf(e,t,n,s,o,r)},eg=(e,t,n,o,r)=>{const s=Rn(t).dom.innerHeight;Jf(e,t,n,s,o,r);const a=(e=>{const t=jf(),n=Po(t),o=((e,t)=>{const n=t.owner(e);return Hf(t,n)})(e,$f),r=Bo(e),s=G(o,((e,t)=>{const n=Bo(t);return{left:e.left+n.left,top:e.top+n.top}}),{left:0,top:0});return To(s.left+r.left+n.left,s.top+r.top+n.top)})(o.element),i=Io(window);a.top<i.y?Lo(o.element,!1!==r):a.top>i.bottom&&Lo(o.element,!0===r)},tg=(e,t,n)=>Wf(e,Zf,t,n),ng=(e,t,n)=>Gf(e,t,Zf,n),og=(e,t,n)=>Wf(e,eg,t,n),rg=(e,t,n)=>Gf(e,t,eg,n),sg=(e,t,n)=>{(e.inline?tg:og)(e,t,n)},ag=(e,t=!1)=>e.dom.focus({preventScroll:t}),ig=e=>{const t=qn(e).dom;return e.dom===t.activeElement},lg=(e=jf())=>I.from(e.dom.activeElement).map(yn),dg=(e,t)=>{const n=Kt(t)?Cr(t).length:Mn(t).length+1;return e>n?n:e<0?0:e},cg=e=>xf.range(e.start,dg(e.soffset,e.start),e.finish,dg(e.foffset,e.finish)),ug=(e,t)=>!$o(t.dom)&&(kn(e,t)||_n(e,t)),mg=e=>t=>ug(e,t.start)&&ug(e,t.finish),fg=e=>xf.range(yn(e.startContainer),e.startOffset,yn(e.endContainer),e.endOffset),gg=e=>{const t=document.createRange();try{return t.setStart(e.start.dom,e.soffset),t.setEnd(e.finish.dom,e.foffset),I.some(t)}catch(e){return I.none()}},pg=e=>{const t=(e=>e.inline||At.browser.isFirefox())(e)?(n=yn(e.getBody()),(e=>{const t=e.getSelection();return(t&&0!==t.rangeCount?I.from(t.getRangeAt(0)):I.none()).map(fg)})(Rn(n).dom).filter(mg(n))):I.none();var n;e.bookmark=t.isSome()?t:e.bookmark},hg=e=>(e.bookmark?e.bookmark:I.none()).bind((t=>{return n=yn(e.getBody()),o=t,I.from(o).filter(mg(n)).map(cg);var n,o})).bind(gg),bg={isEditorUIElement:e=>{const t=e.className.toString();return-1!==t.indexOf("tox-")||-1!==t.indexOf("mce-")}},vg={setEditorTimeout:(e,t,n)=>((e,t)=>(x(t)||(t=0),setTimeout(e,t)))((()=>{e.removed||t()}),n),setEditorInterval:(e,t,n)=>{const o=((e,t)=>(x(t)||(t=0),setInterval(e,t)))((()=>{e.removed?clearInterval(o):t()}),n);return o}};let yg;const Cg=za.DOM,wg=e=>{const t=e.classList;return void 0!==t&&(t.contains("tox-edit-area")||t.contains("tox-edit-area__iframe")||t.contains("mce-content-body"))},xg=(e,t)=>{const n=_d(e),o=Cg.getParent(t,(t=>(e=>qo(e)&&bg.isEditorUIElement(e))(t)||!!n&&e.dom.is(t,n)));return null!==o},Eg=e=>{try{const t=qn(yn(e.getElement()));return lg(t).fold((()=>document.body),(e=>e.dom))}catch(e){return document.body}},_g=(e,t)=>{const n=t.editor;(e=>{const t=Qa((()=>{pg(e)}),0);e.on("init",(()=>{e.inline&&((e,t)=>{const n=()=>{t.throttle()};za.DOM.bind(document,"mouseup",n),e.on("remove",(()=>{za.DOM.unbind(document,"mouseup",n)}))})(e,t),((e,t)=>{((e,t)=>{e.on("mouseup touchend",(e=>{t.throttle()}))})(e,t),e.on("keyup NodeChange AfterSetSelectionRange",(t=>{(e=>"nodechange"===e.type&&e.selectionChange)(t)||pg(e)}))})(e,t)})),e.on("remove",(()=>{t.cancel()}))})(n);const o=(e,t)=>{mc(e)&&!0!==e.inline&&t(yn(e.getContainer()),"tox-edit-focus")};n.on("focusin",(()=>{const t=e.focusedEditor;wg(Eg(n))&&o(n,un),t!==n&&(t&&t.dispatch("blur",{focusedEditor:n}),e.setActive(n),e.focusedEditor=n,n.dispatch("focus",{blurredEditor:t}),n.focus(!0))})),n.on("focusout",(()=>{vg.setEditorTimeout(n,(()=>{const t=e.focusedEditor;wg(Eg(n))&&t===n||o(n,fn),xg(n,Eg(n))||t!==n||(n.dispatch("blur",{focusedEditor:null}),e.focusedEditor=null)}))})),yg||(yg=t=>{const n=e.activeEditor;n&&Kn(t).each((t=>{const o=t;o.ownerDocument===document&&(o===document.body||xg(n,o)||e.focusedEditor!==n||(n.dispatch("blur",{focusedEditor:null}),e.focusedEditor=null))}))},Cg.bind(document,"focusin",yg))},kg=(e,t)=>{e.focusedEditor===t.editor&&(e.focusedEditor=null),!e.activeEditor&&yg&&(Cg.unbind(document,"focusin",yg),yg=null)},Sg=(e,t)=>{((e,t)=>(e=>e.collapsed?I.from(ki(e.startContainer,e.startOffset)).map(yn):I.none())(t).bind((t=>Nr(t)?I.some(t):kn(e,t)?I.none():I.some(e))))(yn(e.getBody()),t).bind((e=>Ou(e.dom))).fold((()=>{e.selection.normalize()}),(t=>e.selection.setRng(t.toRange())))},Ng=e=>{if(e.setActive)try{e.setActive()}catch(t){e.focus()}else e.focus()},Rg=e=>e.inline?(e=>{const t=e.getBody();return t&&(n=yn(t),ig(n)||(o=n,lg(qn(o)).filter((e=>o.dom.contains(e.dom)))).isSome());var n,o})(e):(e=>C(e.iframeElement)&&ig(yn(e.iframeElement)))(e),Ag=e=>Rg(e)||(e=>{const t=qn(yn(e.getElement()));return lg(t).filter((t=>!wg(t.dom)&&xg(e,t.dom))).isSome()})(e),Tg=e=>e.editorManager.setActive(e),Og=(e,t)=>t.collapsed?e.isEditable(t.startContainer):e.isEditable(t.startContainer)&&e.isEditable(t.endContainer),Bg=(e,t,n,o,r)=>{const s=n?t.startContainer:t.endContainer,a=n?t.startOffset:t.endOffset;return I.from(s).map(yn).map((e=>o&&t.collapsed?e:In(e,r(e,a)).getOr(e))).bind((e=>Wt(e)?I.some(e):An(e).filter(Wt))).map((e=>e.dom)).getOr(e)},Pg=(e,t,n=!1)=>Bg(e,t,!0,n,((e,t)=>Math.min(zn(e),t))),Dg=(e,t,n=!1)=>Bg(e,t,!1,n,((e,t)=>t>0?t-1:t)),Lg=(e,t)=>{const n=e;for(;e&&er(e)&&0===e.length;)e=t?e.nextSibling:e.previousSibling;return e||n},Mg=(e,t)=>q(t,(t=>{const n=e.dispatch("GetSelectionRange",{range:t});return n.range!==t?n.range:t})),Ig=["img","br"],Fg=e=>{const t=wr(e).filter((e=>0!==e.trim().length||e.indexOf(br)>-1)).isSome();return t||H(Ig,Ht(e))||(e=>Vt(e)&&"false"===en(e,"contenteditable"))(e)},Ug="[data-mce-autocompleter]",zg=(e,t)=>{if(jg(yn(e.getBody())).isNone()){const o=hn('<span data-mce-autocompleter="1" data-mce-bogus="1"></span>',e.getDoc());vo(o,yn(t.extractContents())),t.insertNode(o.dom),An(o).each((e=>e.dom.normalize())),(n=o,((e,t)=>{const n=e=>{const o=Mn(e);for(let e=o.length-1;e>=0;e--){const r=o[e];if(t(r))return I.some(r);const s=n(r);if(s.isSome())return s}return I.none()};return n(e)})(n,Fg)).map((t=>{e.selection.setCursorLocation(t.dom,(e=>"img"===Ht(e)?1:wr(e).fold((()=>Mn(e).length),(e=>e.length)))(t))}))}var n},jg=e=>to(e,Ug),Hg={"#text":3,"#comment":8,"#cdata":4,"#pi":7,"#doctype":10,"#document-fragment":11},$g=(e,t,n)=>{const o=n?"lastChild":"firstChild",r=n?"prev":"next";if(e[o])return e[o];if(e!==t){let n=e[r];if(n)return n;for(let o=e.parent;o&&o!==t;o=o.parent)if(n=o[r],n)return n}},qg=e=>{var t;const n=null!==(t=e.value)&&void 0!==t?t:"";if(!ss(n))return!1;const o=e.parent;return!o||"span"===o.name&&!o.attr("style")||!/^[ ]+$/.test(n)},Vg=e=>{const t="a"===e.name&&!e.attr("href")&&e.attr("id");return e.attr("name")||e.attr("id")&&!e.firstChild||e.attr("data-mce-bookmark")||t};class Wg{static create(e,t){const n=new Wg(e,Hg[e]||1);return t&&ge(t,((e,t)=>{n.attr(t,e)})),n}constructor(e,t){this.name=e,this.type=t,1===t&&(this.attributes=[],this.attributes.map={})}replace(e){const t=this;return e.parent&&e.remove(),t.insert(e,t),t.remove(),t}attr(e,t){const n=this;if(!m(e))return C(e)&&ge(e,((e,t)=>{n.attr(t,e)})),n;const o=n.attributes;if(o){if(void 0!==t){if(null===t){if(e in o.map){delete o.map[e];let t=o.length;for(;t--;)if(o[t].name===e)return o.splice(t,1),n}return n}if(e in o.map){let n=o.length;for(;n--;)if(o[n].name===e){o[n].value=t;break}}else o.push({name:e,value:t});return o.map[e]=t,n}return o.map[e]}}clone(){const e=this,t=new Wg(e.name,e.type),n=e.attributes;if(n){const e=[];e.map={};for(let t=0,o=n.length;t<o;t++){const o=n[t];"id"!==o.name&&(e[e.length]={name:o.name,value:o.value},e.map[o.name]=o.value)}t.attributes=e}return t.value=e.value,t}wrap(e){const t=this;return t.parent&&(t.parent.insert(e,t),e.append(t)),t}unwrap(){const e=this;for(let t=e.firstChild;t;){const n=t.next;e.insert(t,e,!0),t=n}e.remove()}remove(){const e=this,t=e.parent,n=e.next,o=e.prev;return t&&(t.firstChild===e?(t.firstChild=n,n&&(n.prev=null)):o&&(o.next=n),t.lastChild===e?(t.lastChild=o,o&&(o.next=null)):n&&(n.prev=o),e.parent=e.next=e.prev=null),e}append(e){const t=this;e.parent&&e.remove();const n=t.lastChild;return n?(n.next=e,e.prev=n,t.lastChild=e):t.lastChild=t.firstChild=e,e.parent=t,e}insert(e,t,n){e.parent&&e.remove();const o=t.parent||this;return n?(t===o.firstChild?o.firstChild=e:t.prev&&(t.prev.next=e),e.prev=t.prev,e.next=t,t.prev=e):(t===o.lastChild?o.lastChild=e:t.next&&(t.next.prev=e),e.next=t.next,e.prev=t,t.next=e),e.parent=o,e}getAll(e){const t=this,n=[];for(let o=t.firstChild;o;o=$g(o,t))o.name===e&&n.push(o);return n}children(){const e=[];for(let t=this.firstChild;t;t=t.next)e.push(t);return e}empty(){const e=this;if(e.firstChild){const t=[];for(let n=e.firstChild;n;n=$g(n,e))t.push(n);let n=t.length;for(;n--;){const e=t[n];e.parent=e.firstChild=e.lastChild=e.next=e.prev=null}}return e.firstChild=e.lastChild=null,e}isEmpty(e,t={},n){var o;const r=this;let s=r.firstChild;if(Vg(r))return!1;if(s)do{if(1===s.type){if(s.attr("data-mce-bogus"))continue;if(e[s.name])return!1;if(Vg(s))return!1}if(8===s.type)return!1;if(3===s.type&&!qg(s))return!1;if(3===s.type&&s.parent&&t[s.parent.name]&&ss(null!==(o=s.value)&&void 0!==o?o:""))return!1;if(n&&n(s))return!1}while(s=$g(s,r));return!0}walk(e){return $g(this,null,e)}}const Kg=Pt.makeMap("NOSCRIPT STYLE SCRIPT XMP IFRAME NOEMBED NOFRAMES PLAINTEXT"," "),Yg=e=>m(e.nodeValue)&&e.nodeValue.includes(Br),Gg=e=>(0===e.length?"":`${q(e,(e=>`[${e}]`)).join(",")},`)+'[data-mce-bogus="all"]',Xg=e=>document.createTreeWalker(e,NodeFilter.SHOW_COMMENT,(e=>Yg(e)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP)),Qg=e=>document.createTreeWalker(e,NodeFilter.SHOW_TEXT,(e=>{if(Yg(e)){const t=e.parentNode;return t&&Ee(Kg,t.nodeName)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}return NodeFilter.FILTER_SKIP})),Jg=e=>null!==Xg(e).nextNode(),Zg=e=>null!==Qg(e).nextNode(),ep=(e,t)=>null!==t.querySelector(Gg(e)),tp=(e,t)=>{V(((e,t)=>t.querySelectorAll(Gg(e)))(e,t),(t=>{const n=yn(t);"all"===en(n,"data-mce-bogus")?xo(n):V(e,(e=>{nn(n,e)&&on(n,e)}))}))},np=e=>{let t=e.nextNode();for(;null!==t;)t.nodeValue=null,t=e.nextNode()},op=k(np,Xg),rp=k(np,Qg),sp=(e,t)=>{const n=[{condition:T(ep,t),action:T(tp,t)},{condition:Jg,action:op},{condition:Zg,action:rp}];let o=e,r=!1;return V(n,(({condition:t,action:n})=>{t(o)&&(r||(o=e.cloneNode(!0),r=!0),n(o))})),o},ap=e=>{const t=Uo(e,"[data-mce-bogus]");V(t,(e=>{"all"===en(e,"data-mce-bogus")?xo(e):Er(e)?(po(e,vn(hr)),xo(e)):Eo(e)}))},ip=e=>{const t=Uo(e,"input");V(t,(e=>{on(e,"name")}))},lp=(e,t,n)=>{let o;return o="raw"===t.format?Pt.trim(Dr(sp(n,e.serializer.getTempAttrs()).innerHTML)):"text"===t.format?((e,t)=>{const n=e.getDoc(),o=qn(yn(e.getBody())),r=bn("div",n);Jt(r,"data-mce-bogus","all"),lo(r,{position:"fixed",left:"-9999999px",top:"0"}),So(r,t.innerHTML),ap(r),ip(r);const s=(e=>jn(e)?e:yn(Nn(e).dom.body))(o);vo(s,r);const a=Dr(r.dom.innerText);return xo(r),a})(e,n):"tree"===t.format?e.serializer.serialize(n,t):((e,t)=>{const n=Il(e),o=new RegExp(`^(<${n}[^>]*>(&nbsp;|&#160;|\\s|\xa0|<br \\/>|)<\\/${n}>[\r\n]*|<br \\/>[\r\n]*)$`);return t.replace(o,"")})(e,e.serializer.serialize(n,t)),"text"!==t.format&&!Ar(yn(n))&&m(o)?Pt.trim(o):o},dp=Pt.makeMap,cp=e=>{const t=[],n=(e=e||{}).indent,o=dp(e.indent_before||""),r=dp(e.indent_after||""),s=ea.getEncodeFunc(e.entity_encoding||"raw",e.entities),a="xhtml"!==e.element_format;return{start:(e,i,l)=>{if(n&&o[e]&&t.length>0){const e=t[t.length-1];e.length>0&&"\n"!==e&&t.push("\n")}if(t.push("<",e),i)for(let e=0,n=i.length;e<n;e++){const n=i[e];t.push(" ",n.name,'="',s(n.value,!0),'"')}if(t[t.length]=!l||a?">":" />",l&&n&&r[e]&&t.length>0){const e=t[t.length-1];e.length>0&&"\n"!==e&&t.push("\n")}},end:e=>{let o;t.push("</",e,">"),n&&r[e]&&t.length>0&&(o=t[t.length-1],o.length>0&&"\n"!==o&&t.push("\n"))},text:(e,n)=>{e.length>0&&(t[t.length]=n?e:s(e))},cdata:e=>{t.push("<![CDATA[",e,"]]>")},comment:e=>{t.push("\x3c!--",e,"--\x3e")},pi:(e,o)=>{o?t.push("<?",e," ",s(o),"?>"):t.push("<?",e,"?>"),n&&t.push("\n")},doctype:e=>{t.push("<!DOCTYPE",e,">",n?"\n":"")},reset:()=>{t.length=0},getContent:()=>t.join("").replace(/\n$/,"")}},up=(e={},t=ua())=>{const n=cp(e);return e.validate=!("validate"in e)||e.validate,{serialize:o=>{const r=e.validate,s={3:e=>{var t;n.text(null!==(t=e.value)&&void 0!==t?t:"",e.raw)},8:e=>{var t;n.comment(null!==(t=e.value)&&void 0!==t?t:"")},7:e=>{n.pi(e.name,e.value)},10:e=>{var t;n.doctype(null!==(t=e.value)&&void 0!==t?t:"")},4:e=>{var t;n.cdata(null!==(t=e.value)&&void 0!==t?t:"")},11:e=>{let t=e;if(t=t.firstChild)do{a(t)}while(t=t.next)}};n.reset();const a=e=>{var o;const i=s[e.type];if(i)i(e);else{const s=e.name,i=s in t.getVoidElements();let l=e.attributes;if(r&&l&&l.length>1){const n=[];n.map={};const o=t.getElementRule(e.name);if(o){for(let e=0,t=o.attributesOrder.length;e<t;e++){const t=o.attributesOrder[e];if(t in l.map){const e=l.map[t];n.map[t]=e,n.push({name:t,value:e})}}for(let e=0,t=l.length;e<t;e++){const t=l[e].name;if(!(t in n.map)){const e=l.map[t];n.map[t]=e,n.push({name:t,value:e})}}l=n}}if(n.start(s,l,i),ps(s))m(e.value)&&n.text(e.value,!0),n.end(s);else if(!i){let t=e.firstChild;if(t){"pre"!==s&&"textarea"!==s||3!==t.type||"\n"!==(null===(o=t.value)||void 0===o?void 0:o[0])||n.text("\n",!0);do{a(t)}while(t=t.next)}n.end(s)}}};return 1!==o.type||e.inner?3===o.type?s[3](o):s[11](o):a(o),n.getContent()}}},mp=new Set;V(["margin","margin-left","margin-right","margin-top","margin-bottom","padding","padding-left","padding-right","padding-top","padding-bottom","border","border-width","border-style","border-color","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","float","position","left","right","top","bottom","z-index","display","transform","width","max-width","min-width","height","max-height","min-height","overflow","overflow-x","overflow-y","text-overflow","vertical-align","transition","transition-delay","transition-duration","transition-property","transition-timing-function"],(e=>{mp.add(e)}));const fp=["font","text-decoration","text-emphasis"],gp=(e,t)=>me(e.parseStyle(e.getAttrib(t,"style"))),pp=(e,t,n)=>{const o=gp(e,t),r=gp(e,n),s=o=>{var r,s;const a=null!==(r=e.getStyle(t,o))&&void 0!==r?r:"",i=null!==(s=e.getStyle(n,o))&&void 0!==s?s:"";return Ye(a)&&Ye(i)&&a!==i};return $(o,(e=>{const t=t=>$(t,(t=>t===e));if(!t(r)&&t(fp)){const e=Y(r,(e=>$(fp,(t=>He(e,t)))));return $(e,s)}return s(e)}))},hp=(e,t,n)=>I.from(n.container()).filter(er).exists((o=>{const r=e?0:-1;return t(o.data.charAt(n.offset()+r))})),bp=T(hp,!0,Xu),vp=T(hp,!1,Xu),yp=e=>{const t=e.container();return er(t)&&(0===t.data.length||Pr(t.data)&&Jm.isBookmarkNode(t.parentNode))},Cp=(e,t)=>n=>Jc(e?0:-1,n).filter(t).isSome(),wp=e=>ir(e)&&"block"===co(yn(e),"display"),xp=e=>dr(e)&&!(e=>qo(e)&&"all"===e.getAttribute("data-mce-bogus"))(e),Ep=Cp(!0,wp),_p=Cp(!1,wp),kp=Cp(!0,mr),Sp=Cp(!1,mr),Np=Cp(!0,Qo),Rp=Cp(!1,Qo),Ap=Cp(!0,xp),Tp=Cp(!1,xp),Op=(e,t)=>((e,t,n)=>kn(t,e)?On(e,(e=>n(e)||_n(e,t))).slice(0,-1):[])(e,t,L),Bp=(e,t)=>[e].concat(Op(e,t)),Pp=(e,t,n)=>Nu(e,t,n,yp),Dp=(e,t,n)=>J(Bp(yn(t.container()),e),(e=>t=>e.isBlock(Ht(t)))(n)),Lp=(e,t,n,o)=>Pp(e,t.dom,n).forall((e=>Dp(t,n,o).fold((()=>!Qc(e,n,t.dom)),(o=>!Qc(e,n,t.dom)&&kn(o,yn(e.container())))))),Mp=(e,t,n,o)=>Dp(t,n,o).fold((()=>Pp(e,t.dom,n).forall((e=>!Qc(e,n,t.dom)))),(t=>Pp(e,t.dom,n).isNone())),Ip=T(Mp,!1),Fp=T(Mp,!0),Up=T(Lp,!1),zp=T(Lp,!0),jp=e=>iu(e).exists(Er),Hp=(e,t,n,o)=>{const r=Y(Bp(yn(n.container()),t),(e=>o.isBlock(Ht(e)))),s=le(r).getOr(t);return ku(e,s.dom,n).filter(jp)},$p=(e,t,n)=>iu(t).exists(Er)||Hp(!0,e,t,n).isSome(),qp=(e,t,n)=>(e=>I.from(e.getNode(!0)).map(yn))(t).exists(Er)||Hp(!1,e,t,n).isSome(),Vp=T(Hp,!1),Wp=T(Hp,!0),Kp=e=>Vi.isTextPosition(e)&&!e.isAtStart()&&!e.isAtEnd(),Yp=(e,t,n)=>{const o=Y(Bp(yn(t.container()),e),(e=>n.isBlock(Ht(e))));return le(o).getOr(e)},Gp=(e,t,n)=>Kp(t)?vp(t):vp(t)||Tu(Yp(e,t,n).dom,t).exists(vp),Xp=(e,t,n)=>Kp(t)?bp(t):bp(t)||Au(Yp(e,t,n).dom,t).exists(bp),Qp=e=>iu(e).bind((e=>Jn(e,Wt))).exists((e=>(e=>H(["pre","pre-wrap"],e))(co(e,"white-space")))),Jp=(e,t)=>n=>{return o=new jo(n,e)[t](),C(o)&&dr(o)&&zc(o);var o},Zp=(e,t,n)=>!Qp(t)&&(((e,t,n)=>((e,t)=>Tu(e.dom,t).isNone())(e,t)||((e,t)=>Au(e.dom,t).isNone())(e,t)||Ip(e,t,n)||Fp(e,t,n)||qp(e,t,n)||$p(e,t,n))(e,t,n)||Gp(e,t,n)||Xp(e,t,n)),eh=(e,t,n)=>!Qp(t)&&(Ip(e,t,n)||Up(e,t,n)||qp(e,t,n)||Gp(e,t,n)||((e,t)=>{const n=Tu(e.dom,t).getOr(t),o=Jp(e.dom,"prev");return t.isAtStart()&&(o(t.container())||o(n.container()))})(e,t)),th=(e,t,n)=>!Qp(t)&&(Fp(e,t,n)||zp(e,t,n)||$p(e,t,n)||Xp(e,t,n)||((e,t)=>{const n=Au(e.dom,t).getOr(t),o=Jp(e.dom,"next");return t.isAtEnd()&&(o(t.container())||o(n.container()))})(e,t)),nh=(e,t,n)=>eh(e,t,n)||th(e,(e=>{const t=e.container(),n=e.offset();return er(t)&&n<t.data.length?Vi(t,n+1):e})(t),n),oh=(e,t)=>Yu(e.charAt(t)),rh=(e,t)=>Xu(e.charAt(t)),sh=(e,t,n,o)=>{const r=t.data,s=Vi(t,0);return n||!oh(r,0)||nh(e,s,o)?!!(n&&rh(r,0)&&eh(e,s,o))&&(t.data=br+r.slice(1),!0):(t.data=" "+r.slice(1),!0)},ah=(e,t,n,o)=>{const r=t.data,s=Vi(t,r.length-1);return n||!oh(r,r.length-1)||nh(e,s,o)?!!(n&&rh(r,r.length-1)&&th(e,s,o))&&(t.data=r.slice(0,-1)+br,!0):(t.data=r.slice(0,-1)+" ",!0)},ih=(e,t,n)=>{const o=t.container();if(!er(o))return I.none();if((e=>{const t=e.container();return er(t)&&je(t.data,br)})(t)){const r=sh(e,o,!1,n)||(e=>{const t=e.data,n=(e=>{const t=e.split("");return q(t,((e,n)=>Yu(e)&&n>0&&n<t.length-1&&Qu(t[n-1])&&Qu(t[n+1])?" ":e)).join("")})(t);return n!==t&&(e.data=n,!0)})(o)||ah(e,o,!1,n);return It(r,t)}if(nh(e,t,n)){const r=sh(e,o,!0,n)||ah(e,o,!0,n);return It(r,t)}return I.none()},lh=(e,t,n,o)=>{if(0===n)return;const r=yn(e),s=Qn(r,(e=>o.isBlock(Ht(e)))).getOr(r),a=e.data.slice(t,t+n),i=t+n>=e.data.length&&th(s,Vi(e,e.data.length),o),l=0===t&&eh(s,Vi(e,0),o);e.replaceData(t,n,ls(a,4,l,i))},dh=(e,t,n)=>{const o=e.data.slice(t),r=o.length-We(o).length;lh(e,t,r,n)},ch=(e,t,n)=>{const o=e.data.slice(0,t),r=o.length-Ke(o).length;lh(e,t-r,r,n)},uh=(e,t,n,o,r=!0)=>{const s=Ke(e.data).length,a=r?e:t,i=r?t:e;return r?a.appendData(i.data):a.insertData(0,i.data),xo(yn(i)),o&&dh(a,s,n),a},mh=(e,t)=>((e,t)=>{const n=e.container(),o=e.offset();return!Vi.isTextPosition(e)&&n===t.parentNode&&o>Vi.before(t).offset()})(t,e)?Vi(t.container(),t.offset()-1):t,fh=e=>{return ts(e.previousSibling)?I.some((t=e.previousSibling,er(t)?Vi(t,t.data.length):Vi.after(t))):e.previousSibling?Bu(e.previousSibling):I.none();var t},gh=e=>{return ts(e.nextSibling)?I.some((t=e.nextSibling,er(t)?Vi(t,0):Vi.before(t))):e.nextSibling?Ou(e.nextSibling):I.none();var t},ph=(e,t,n)=>((e,t,n)=>e?((e,t)=>gh(t).orThunk((()=>fh(t))).orThunk((()=>((e,t)=>Au(e,Vi.after(t)).orThunk((()=>Tu(e,Vi.before(t)))))(e,t))))(t,n):((e,t)=>fh(t).orThunk((()=>gh(t))).orThunk((()=>((e,t)=>I.from(t.previousSibling?t.previousSibling:t.parentNode).bind((t=>Tu(e,Vi.before(t)))).orThunk((()=>Au(e,Vi.after(t)))))(e,t))))(t,n))(e,t,n).map(T(mh,n)),hh=(e,t,n)=>{n.fold((()=>{e.focus()}),(n=>{e.selection.setRng(n.toRange(),t)}))},bh=(e,t)=>t&&Ee(e.schema.getBlockElements(),Ht(t)),vh=(e,t,n,o=!0,r=!1)=>{const s=ph(t,e.getBody(),n.dom),a=Qn(n,T(bh,e),(i=e.getBody(),e=>e.dom===i));var i;const l=((e,t,n,o)=>{const r=Bn(e).filter(Kt),s=Pn(e).filter(Kt);return xo(e),(a=r,i=s,l=t,d=(e,t,r)=>{const s=e.dom,a=t.dom,i=s.data.length;return uh(s,a,n,o),r.container()===a?Vi(s,i):r},a.isSome()&&i.isSome()&&l.isSome()?I.some(d(a.getOrDie(),i.getOrDie(),l.getOrDie())):I.none()).orThunk((()=>(o&&(r.each((e=>ch(e.dom,e.dom.length,n))),s.each((e=>dh(e.dom,0,n)))),t)));var a,i,l,d})(n,s,e.schema,((e,t)=>Ee(e.schema.getTextInlineElements(),Ht(t)))(e,n));e.dom.isEmpty(e.getBody())?(e.setContent(""),e.selection.setCursorLocation()):a.bind((e=>((e,t)=>{if(gs(e)){const n=hn('<br data-mce-bogus="1">');return t?V(Mn(e),(e=>{Tm(e)||xo(e)})):wo(e),vo(e,n),I.some(Vi.before(n.dom))}return I.none()})(e,r))).fold((()=>{o&&hh(e,t,l)}),(n=>{o&&hh(e,t,I.some(n))}))},yh=/[\u0591-\u07FF\uFB1D-\uFDFF\uFE70-\uFEFC]/,Ch=(e,t)=>xn(yn(t),dd(e))&&!Ts(e.schema,t)&&e.dom.isEditable(t),wh=e=>{var t;return"rtl"===za.DOM.getStyle(e,"direction",!0)||(e=>yh.test(e))(null!==(t=e.textContent)&&void 0!==t?t:"")},xh=(e,t,n)=>{const o=((e,t,n)=>Y(za.DOM.getParents(n.container(),"*",t),e))(e,t,n);return I.from(o[o.length-1])},Eh=(e,t)=>{const n=t.container(),o=t.offset();return e?Fr(n)?er(n.nextSibling)?Vi(n.nextSibling,0):Vi.after(n):jr(t)?Vi(n,o+1):t:Fr(n)?er(n.previousSibling)?Vi(n.previousSibling,n.previousSibling.data.length):Vi.before(n):Hr(t)?Vi(n,o-1):t},_h=T(Eh,!0),kh=T(Eh,!1),Sh=(e,t)=>{const n=e=>e.stopImmediatePropagation();e.on("beforeinput input",n,!0),e.getDoc().execCommand(t),e.off("beforeinput input",n)},Nh=e=>Sh(e,"Delete"),Rh=e=>_r(e)||Sr(e),Ah=(e,t)=>kn(e,t)?Jn(t,Rh,(e=>t=>Dt(An(t),e,_n))(e)):I.none(),Th=(e,t=!0)=>{e.dom.isEmpty(e.getBody())&&e.setContent("",{no_selection:!t})},Oh=(e,t,n)=>Mt(Ou(n),Bu(n),((o,r)=>{const s=Eh(!0,o),a=Eh(!1,r),i=Eh(!1,t);return e?Au(n,i).exists((e=>e.isEqual(a)&&t.isEqual(s))):Tu(n,i).exists((e=>e.isEqual(s)&&t.isEqual(a)))})).getOr(!0),Bh=e=>{var t;return(8===$t(t=e)||"#comment"===Ht(t)?Bn(e):Un(e)).bind(Bh).orThunk((()=>I.some(e)))},Ph=(e,t,n,o=!0)=>{var r;t.deleteContents();const s=Bh(n).getOr(n),a=yn(null!==(r=e.dom.getParent(s.dom,e.dom.isBlock))&&void 0!==r?r:n.dom);if(a.dom===e.getBody()?Th(e,o):gs(a)&&(Or(a),o&&e.selection.setCursorLocation(a.dom,0)),!_n(n,a)){const e=Dt(An(a),n)?[]:An(i=a).map(Mn).map((e=>Y(e,(e=>!_n(i,e))))).getOr([]);V(e.concat(Mn(n)),(e=>{_n(e,a)||kn(e,a)||!gs(e)||xo(e)}))}var i},Dh=(e,t)=>((e,t)=>{const n=e.dom;return n.parentNode?((e,t)=>J(e.dom.childNodes,(e=>t(yn(e)))).map(yn))(yn(n.parentNode),(n=>!_n(e,n)&&t(n))):I.none()})(e,t).isSome(),Lh=(e,t)=>Zn(e,t).isSome(),Mh=e=>Uo(e,"td,th"),Ih=(e,t)=>tm(yn(e),t),Fh=(e,t)=>({start:e,end:t}),Uh=hl([{singleCellTable:["rng","cell"]},{fullTable:["table"]},{partialTable:["cells","outsideDetails"]},{multiTable:["startTableCells","endTableCells","betweenRng"]}]),zh=(e,t)=>no(yn(e),"td,th",t),jh=e=>!_n(e.start,e.end),Hh=(e,t)=>tm(e.start,t).bind((n=>tm(e.end,t).bind((e=>It(_n(n,e),n))))),$h=e=>t=>Hh(t,e).map((e=>((e,t,n)=>({rng:e,table:t,cells:n}))(t,e,Mh(e)))),qh=(e,t,n,o)=>{if(n.collapsed||!e.forall(jh))return I.none();if(t.isSameTable){const t=e.bind($h(o));return I.some({start:t,end:t})}{const e=zh(n.startContainer,o),t=zh(n.endContainer,o),r=e.bind((e=>t=>tm(t,e).bind((e=>de(Mh(e)).map((e=>Fh(t,e))))))(o)).bind($h(o)),s=t.bind((e=>t=>tm(t,e).bind((e=>le(Mh(e)).map((e=>Fh(e,t))))))(o)).bind($h(o));return I.some({start:r,end:s})}},Vh=(e,t)=>Z(e,(e=>_n(e,t))),Wh=e=>Mt(Vh(e.cells,e.rng.start),Vh(e.cells,e.rng.end),((t,n)=>e.cells.slice(t,n+1))),Kh=(e,t)=>{const{startTable:n,endTable:o}=t,r=e.cloneRange();return n.each((e=>r.setStartAfter(e.dom))),o.each((e=>r.setEndBefore(e.dom))),r},Yh=(e,t)=>{const n=(e=>t=>_n(e,t))(e),o=((e,t)=>{const n=zh(e.startContainer,t),o=zh(e.endContainer,t);return Mt(n,o,Fh)})(t,n),r=((e,t)=>{const n=Ih(e.startContainer,t),o=Ih(e.endContainer,t),r=n.isSome(),s=o.isSome(),a=Mt(n,o,_n).getOr(!1);return(e=>Mt(e.startTable,e.endTable,((t,n)=>{const o=Lh(t,(e=>_n(e,n))),r=Lh(n,(e=>_n(e,t)));return o||r?{...e,startTable:o?I.none():e.startTable,endTable:r?I.none():e.endTable,isSameTable:!1,isMultiTable:!1}:e})).getOr(e))({startTable:n,endTable:o,isStartInTable:r,isEndInTable:s,isSameTable:a,isMultiTable:!a&&r&&s})})(t,n);return((e,t,n)=>e.exists((e=>((e,t)=>!jh(e)&&Hh(e,t).exists((e=>{const t=e.dom.rows;return 1===t.length&&1===t[0].cells.length})))(e,n)&&rm(e.start,t))))(o,t,n)?o.map((e=>Uh.singleCellTable(t,e.start))):r.isMultiTable?((e,t,n,o)=>qh(e,t,n,o).bind((({start:e,end:o})=>{const r=e.bind(Wh).getOr([]),s=o.bind(Wh).getOr([]);if(r.length>0&&s.length>0){const e=Kh(n,t);return I.some(Uh.multiTable(r,s,e))}return I.none()})))(o,r,t,n):((e,t,n,o)=>qh(e,t,n,o).bind((({start:e,end:t})=>e.or(t))).bind((e=>{const{isSameTable:o}=t,r=Wh(e).getOr([]);if(o&&e.cells.length===r.length)return I.some(Uh.fullTable(e.table));if(r.length>0){if(o)return I.some(Uh.partialTable(r,I.none()));{const e=Kh(n,t);return I.some(Uh.partialTable(r,I.some({...t,rng:e})))}}return I.none()})))(o,r,t,n)},Gh=e=>V(e,(e=>{on(e,"contenteditable"),Or(e)})),Xh=(e,t,n,o)=>{const r=n.cloneRange();o?(r.setStart(n.startContainer,n.startOffset),r.setEndAfter(t.dom.lastChild)):(r.setStartBefore(t.dom.firstChild),r.setEnd(n.endContainer,n.endOffset)),eb(e,r,t,!1).each((e=>e()))},Qh=e=>{const t=em(e),n=yn(e.selection.getNode());cr(n.dom)&&gs(n)?e.selection.setCursorLocation(n.dom,0):e.selection.collapse(!0),t.length>1&&$(t,(e=>_n(e,n)))&&Jt(n,"data-mce-selected","1")},Jh=(e,t,n)=>I.some((()=>{const o=e.selection.getRng(),r=n.bind((({rng:n,isStartInTable:r})=>{const s=((e,t)=>I.from(e.dom.getParent(t,e.dom.isBlock)).map(yn))(e,r?n.endContainer:n.startContainer);n.deleteContents(),((e,t,n)=>{n.each((n=>{t?xo(n):(Or(n),e.selection.setCursorLocation(n.dom,0))}))})(e,r,s.filter(gs));const a=r?t[0]:t[t.length-1];return Xh(e,a,o,r),gs(a)?I.none():I.some(r?t.slice(1):t.slice(0,-1))})).getOr(t);Gh(r),Qh(e)})),Zh=(e,t,n,o)=>I.some((()=>{const r=e.selection.getRng(),s=t[0],a=n[n.length-1];Xh(e,s,r,!0),Xh(e,a,r,!1);const i=gs(s)?t:t.slice(1),l=gs(a)?n:n.slice(0,-1);Gh(i.concat(l)),o.deleteContents(),Qh(e)})),eb=(e,t,n,o=!0)=>I.some((()=>{Ph(e,t,n,o)})),tb=(e,t)=>I.some((()=>vh(e,!1,t))),nb=(e,t)=>J(Bp(t,e),Rr),ob=(e,t)=>J(Bp(t,e),Xt("caption")),rb=(e,t)=>I.some((()=>{Or(t),e.selection.setCursorLocation(t.dom,0)})),sb=(e,t)=>e?Np(t):Rp(t),ab=(e,t,n)=>{const o=yn(e.getBody());return ob(o,n).fold((()=>((e,t,n,o)=>{const r=Vi.fromRangeStart(e.selection.getRng());return nb(n,o).bind((o=>gs(o)?rb(e,o):((e,t,n,o,r)=>Su(n,e.getBody(),r).bind((e=>nb(t,yn(e.getNode())).bind((e=>_n(e,o)?I.none():I.some(_))))))(e,n,t,o,r)))})(e,t,o,n).orThunk((()=>It(((e,t)=>{const n=Vi.fromRangeStart(e.selection.getRng());return sb(t,n)||ku(t,e.getBody(),n).exists((e=>sb(t,e)))})(e,t),_)))),(n=>((e,t,n,o)=>{const r=Vi.fromRangeStart(e.selection.getRng());return gs(o)?rb(e,o):((e,t,n,o,r)=>Su(n,e.getBody(),r).fold((()=>I.some(_)),(s=>((e,t,n,o)=>Ou(e.dom).bind((r=>Bu(e.dom).map((e=>t?n.isEqual(r)&&o.isEqual(e):n.isEqual(e)&&o.isEqual(r))))).getOr(!0))(o,n,r,s)?((e,t)=>rb(e,t))(e,o):((e,t,n)=>ob(e,yn(n.getNode())).fold((()=>I.some(_)),(e=>It(!_n(e,t),_))))(t,o,s))))(e,n,t,o,r)})(e,t,o,n)))},ib=(e,t)=>{const n=yn(e.selection.getStart(!0)),o=em(e);return e.selection.isCollapsed()&&0===o.length?ab(e,t,n):((e,t,n)=>{const o=yn(e.getBody()),r=e.selection.getRng();return 0!==n.length?Jh(e,n,I.none()):((e,t,n,o)=>ob(t,o).fold((()=>((e,t,n)=>Yh(t,n).bind((t=>t.fold(T(eb,e),T(tb,e),T(Jh,e),T(Zh,e)))))(e,t,n)),(t=>((e,t)=>rb(e,t))(e,t))))(e,o,r,t)})(e,n,o)},lb=(e,t)=>{let n=t;for(;n&&n!==e;){if(lr(n)||dr(n))return n;n=n.parentNode}return null},db=["data-ephox-","data-mce-","data-alloy-","data-snooker-","_"],cb=Pt.each,ub=e=>{const t=e.dom,n=new Set(e.serializer.getTempAttrs()),o=e=>$(db,(t=>He(e,t)))||n.has(e);return{compare:(e,n)=>{if(e.nodeName!==n.nodeName||e.nodeType!==n.nodeType)return!1;const r=e=>{const n={};return cb(t.getAttribs(e),(r=>{const s=r.nodeName.toLowerCase();"style"===s||o(s)||(n[s]=t.getAttrib(e,s))})),n},s=(e,t)=>{for(const n in e)if(Ee(e,n)){const o=t[n];if(v(o))return!1;if(e[n]!==o)return!1;delete t[n]}for(const e in t)if(Ee(t,e))return!1;return!0};if(qo(e)&&qo(n)){if(!s(r(e),r(n)))return!1;if(!s(t.parseStyle(t.getAttrib(e,"style")),t.parseStyle(t.getAttrib(n,"style"))))return!1}return!Ku(e)&&!Ku(n)},isAttributeInternal:o}},mb=e=>["h1","h2","h3","h4","h5","h6"].includes(e.name),fb=(e,t,n,o)=>{const r=n.name;for(let t=0,s=e.length;t<s;t++){const s=e[t];if(s.name===r){const e=o.nodes[r];e?e.nodes.push(n):o.nodes[r]={filter:s,nodes:[n]}}}if(n.attributes)for(let e=0,r=t.length;e<r;e++){const r=t[e],s=r.name;if(s in n.attributes.map){const e=o.attributes[s];e?e.nodes.push(n):o.attributes[s]={filter:r,nodes:[n]}}}},gb=(e,t)=>{const n=(e,n)=>{ge(e,(e=>{const o=ce(e.nodes);V(e.filter.callbacks,(r=>{for(let t=o.length-1;t>=0;t--){const r=o[t];(n?void 0!==r.attr(e.filter.name):r.name===e.filter.name)&&!y(r.parent)||o.splice(t,1)}o.length>0&&r(o,e.filter.name,t)}))}))};n(e.nodes,!1),n(e.attributes,!0)},pb=(e,t,n,o={})=>{const r=((e,t,n)=>{const o={nodes:{},attributes:{}};return n.firstChild&&((n,r)=>{let s=n;for(;s=s.walk();)fb(e,t,s,o)})(n),o})(e,t,n);gb(r,o)},hb=(e,t,n,o)=>{if((e.pad_empty_with_br||t.insert)&&n(o)){const e=new Wg("br",1);t.insert&&e.attr("data-mce-bogus","1"),o.empty().append(e)}else o.empty().append(new Wg("#text",3)).value=br},bb=(e,t)=>{const n=null==e?void 0:e.firstChild;return C(n)&&n===e.lastChild&&n.name===t},vb=(e,t,n,o)=>o.isEmpty(t,n,(t=>((e,t)=>{const n=e.getElementRule(t.name);return!0===(null==n?void 0:n.paddEmpty)})(e,t))),yb=e=>{let t;for(let n=e;n;n=n.parent){const e=n.attr("contenteditable");if("false"===e)break;"true"===e&&(t=n)}return I.from(t)},Cb=(e,t,n=e.parent)=>{if(t.getSpecialElements()[e.name])e.empty().remove();else{const o=e.children();for(const e of o)n&&!t.isValidChild(n.name,e.name)&&Cb(e,t,n);e.unwrap()}},wb=(e,t,n,o=_)=>{const r=t.getTextBlockElements(),s=t.getNonEmptyElements(),a=t.getWhitespaceElements(),i=Pt.makeMap("tr,td,th,tbody,thead,tfoot,table,summary"),l=new Set,d=e=>e!==n&&!i[e.name];for(let n=0;n<e.length;n++){const i=e[n];let c,u,m;if(!i.parent||l.has(i))continue;if(r[i.name]&&"li"===i.parent.name){let e=i.next;for(;e&&r[e.name];)e.name="li",l.add(e),i.parent.insert(e,i.parent),e=e.next;i.unwrap();continue}const f=[i];for(c=i.parent;c&&!t.isValidChild(c.name,i.name)&&d(c);c=c.parent)f.push(c);if(c&&f.length>1)if(xb(t,i,c))Cb(i,t);else{f.reverse(),u=f[0].clone(),o(u);let e=u;for(let n=0;n<f.length-1;n++){t.isValidChild(e.name,f[n].name)&&n>0?(m=f[n].clone(),o(m),e.append(m)):m=e;for(let e=f[n].firstChild;e&&e!==f[n+1];){const t=e.next;m.append(e),e=t}e=m}vb(t,s,a,u)?c.insert(i,f[0],!0):(c.insert(u,f[0],!0),c.insert(i,u)),c=f[0],(vb(t,s,a,c)||bb(c,"br"))&&c.empty().remove()}else if(i.parent){if("li"===i.name){let e=i.prev;if(e&&("ul"===e.name||"ol"===e.name)){e.append(i);continue}if(e=i.next,e&&("ul"===e.name||"ol"===e.name)&&e.firstChild){e.insert(i,e.firstChild,!0);continue}const t=new Wg("ul",1);o(t),i.wrap(t);continue}if(t.isValidChild(i.parent.name,"div")&&t.isValidChild("div",i.name)){const e=new Wg("div",1);o(e),i.wrap(e)}else Cb(i,t)}}},xb=(e,t,n=t.parent)=>!(!n||(!e.children[t.name]||e.isValidChild(n.name,t.name))&&("a"!==t.name||!((e,t)=>{let n=e;for(;n;){if("a"===n.name)return!0;n=n.parent}return!1})(n))&&(!(e=>"summary"===e.name)(n)||!mb(t)||(null==n?void 0:n.firstChild)===t&&(null==n?void 0:n.lastChild)===t)),Eb=e=>e.collapsed?e:(e=>{const t=Vi.fromRangeStart(e),n=Vi.fromRangeEnd(e),o=e.commonAncestorContainer;return ku(!1,o,n).map((r=>!Qc(t,n,o)&&Qc(t,r,o)?((e,t,n,o)=>{const r=document.createRange();return r.setStart(e,t),r.setEnd(n,o),r})(t.container(),t.offset(),r.container(),r.offset()):e)).getOr(e)})(e),_b=(e,t)=>{let n=t.firstChild,o=t.lastChild;return n&&"meta"===n.name&&(n=n.next),o&&"mce_marker"===o.attr("id")&&(o=o.prev),((e,t)=>{const n=e.getNonEmptyElements();return C(t)&&(t.isEmpty(n)||((e,t)=>e.getBlockElements()[t.name]&&(e=>C(e.firstChild)&&e.firstChild===e.lastChild)(t)&&(e=>"br"===e.name||e.value===br)(t.firstChild))(e,t))})(e,o)&&(o=null==o?void 0:o.prev),!(!n||n!==o||"ul"!==n.name&&"ol"!==n.name)},kb=e=>{return e.length>0&&(!(n=e[e.length-1]).firstChild||C(null==(t=n)?void 0:t.firstChild)&&t.firstChild===t.lastChild&&(e=>e.data===br||ar(e))(t.firstChild))?e.slice(0,-1):e;var t,n},Sb=(e,t)=>{const n=e.getParent(t,e.isBlock);return n&&"LI"===n.nodeName?n:null},Nb=(e,t)=>{const n=Vi.after(e),o=wu(t).prev(n);return o?o.toRange():null},Rb=(e,t,n,o)=>{const r=((e,t,n)=>{const o=t.serialize(n);return(e=>{var t,n;const o=e.firstChild,r=e.lastChild;return o&&"META"===o.nodeName&&(null===(t=o.parentNode)||void 0===t||t.removeChild(o)),r&&"mce_marker"===r.id&&(null===(n=r.parentNode)||void 0===n||n.removeChild(r)),e})(e.createFragment(o))})(t,e,o),s=Sb(t,n.startContainer),a=kb((i=r.firstChild,Y(null!==(l=null==i?void 0:i.childNodes)&&void 0!==l?l:[],(e=>"LI"===e.nodeName))));var i,l;const d=t.getRoot(),c=e=>{const o=Vi.fromRangeStart(n),r=wu(t.getRoot()),a=1===e?r.prev(o):r.next(o),i=null==a?void 0:a.getNode();return!i||Sb(t,i)!==s};return s?c(1)?((e,t,n)=>{const o=e.parentNode;return o&&Pt.each(t,(t=>{o.insertBefore(t,e)})),((e,t)=>{const n=Vi.before(e),o=wu(t).next(n);return o?o.toRange():null})(e,n)})(s,a,d):c(2)?((e,t,n,o)=>(o.insertAfter(t.reverse(),e),Nb(t[0],n)))(s,a,d,t):((e,t,n,o)=>{const r=((e,t)=>{const n=t.cloneRange(),o=t.cloneRange();return n.setStartBefore(e),o.setEndAfter(e),[n.cloneContents(),o.cloneContents()]})(e,o),s=e.parentNode;return s&&(s.insertBefore(r[0],e),Pt.each(t,(t=>{s.insertBefore(t,e)})),s.insertBefore(r[1],e),s.removeChild(e)),Nb(t[t.length-1],n)})(s,a,d,n):null},Ab=["pre"],Tb=cr,Ob=(e,t,n)=>{var o,r;const s=e.selection,a=e.dom,i=e.parser,l=n.merge,d=up({validate:!0},e.schema),c='<span id="mce_marker" data-mce-type="bookmark">&#xFEFF;</span>';n.preserve_zwsp||(t=Dr(t)),-1===t.indexOf("{$caret}")&&(t+="{$caret}"),t=t.replace(/\{\$caret\}/,c);let u=s.getRng();const m=u.startContainer,f=e.getBody();m===f&&s.isCollapsed()&&a.isBlock(f.firstChild)&&((e,t)=>C(t)&&!e.schema.getVoidElements()[t.nodeName])(e,f.firstChild)&&a.isEmpty(f.firstChild)&&(u=a.createRng(),u.setStart(f.firstChild,0),u.setEnd(f.firstChild,0),s.setRng(u)),s.isCollapsed()||(e=>{const t=e.dom,n=Eb(e.selection.getRng());e.selection.setRng(n);const o=t.getParent(n.startContainer,Tb);((e,t,n)=>!!C(n)&&n===e.getParent(t.endContainer,Tb)&&rm(yn(n),t))(t,n,o)?eb(e,n,yn(o)):n.startContainer===n.endContainer&&n.endOffset-n.startOffset==1&&er(n.startContainer.childNodes[n.startOffset])?n.deleteContents():e.getDoc().execCommand("Delete",!1)})(e);const g=s.getNode(),p={context:g.nodeName.toLowerCase(),data:n.data,insert:!0},h=i.parse(t,p);if(!0===n.paste&&_b(e.schema,h)&&((e,t)=>!!Sb(e,t))(a,g))return u=Rb(d,a,s.getRng(),h),u&&s.setRng(u),t;!0===n.paste&&((e,t,n,o)=>{var r;const s=t.firstChild,a=t.lastChild,i=s===("bookmark"===a.attr("data-mce-type")?a.prev:a),l=H(Ab,s.name);if(i&&l){const t="false"!==s.attr("contenteditable"),a=(null===(r=e.getParent(n,e.isBlock))||void 0===r?void 0:r.nodeName.toLowerCase())===s.name,i=I.from(lb(o,n)).forall(lr);return t&&a&&i}return!1})(a,h,g,e.getBody())&&(null===(o=h.firstChild)||void 0===o||o.unwrap()),(e=>{let t=e;for(;t=t.walk();)1===t.type&&t.attr("data-mce-fragment","1")})(h);let b=h.lastChild;if(b&&"mce_marker"===b.attr("id")){const t=b;for(b=b.prev;b;b=b.walk(!0))if(3===b.type||!a.isBlock(b.name)){b.parent&&e.schema.isValidChild(b.parent.name,"span")&&b.parent.insert(t,b,"br"===b.name);break}}if(e._selectionOverrides.showBlockCaretContainer(g),p.invalid||((e,t,n)=>{var o;return $(n.children(),mb)&&"SUMMARY"===(null===(o=e.getParent(t,e.isBlock))||void 0===o?void 0:o.nodeName)})(a,g,h)){e.selection.setContent(c);let n,o=s.getNode();const l=e.getBody();for(rr(o)?o=n=l:n=o;n&&n!==l;)o=n,n=n.parentNode;t=o===l?l.innerHTML:a.getOuterHTML(o);const u=i.parse(t),m=(e=>{for(let t=e;t;t=t.walk())if("mce_marker"===t.attr("id"))return I.some(t);return I.none()})(u),f=m.bind(yb).getOr(u);m.each((e=>e.replace(h)));const g=h.children(),p=null!==(r=h.parent)&&void 0!==r?r:u;h.unwrap();const b=Y(g,(t=>xb(e.schema,t,p)));wb(b,e.schema,f),pb(i.getNodeFilters(),i.getAttributeFilters(),u),t=d.serialize(u),o===l?a.setHTML(l,t):a.setOuterHTML(o,t)}else t=d.serialize(h),((e,t,n)=>{var o;if("all"===n.getAttribute("data-mce-bogus"))null===(o=n.parentNode)||void 0===o||o.insertBefore(e.dom.createFragment(t),n);else{const o=n.firstChild,r=n.lastChild;!o||o===r&&"BR"===o.nodeName?e.dom.setHTML(n,t):e.selection.setContent(t,{no_events:!0})}})(e,t,g);var v;return((e,t)=>{const n=e.schema.getTextInlineElements(),o=e.dom;if(t){const t=e.getBody(),r=ub(e);Pt.each(o.select("*[data-mce-fragment]"),(e=>{if(C(n[e.nodeName.toLowerCase()])&&((e,t)=>ne(gp(e,t),(e=>!(e=>mp.has(e))(e))))(o,e))for(let n=e.parentElement;C(n)&&n!==t&&!pp(o,e,n);n=n.parentElement)if(r.compare(n,e)){o.remove(e,!0);break}}))}})(e,l),((e,t)=>{var n,o,r;let s;const a=e.dom,i=e.selection;if(!t)return;i.scrollIntoView(t);const l=lb(e.getBody(),t);if(l&&"false"===a.getContentEditable(l))return a.remove(t),void i.select(l);let d=a.createRng();const c=t.previousSibling;if(er(c)){d.setStart(c,null!==(o=null===(n=c.nodeValue)||void 0===n?void 0:n.length)&&void 0!==o?o:0);const e=t.nextSibling;er(e)&&(c.appendData(e.data),null===(r=e.parentNode)||void 0===r||r.removeChild(e))}else d.setStartBefore(t),d.setEndBefore(t);const u=a.getParent(t,a.isBlock);if(a.remove(t),u&&a.isEmpty(u)){const t=Tb(u);wo(yn(u)),d.setStart(u,0),d.setEnd(u,0),t||(e=>!!e.getAttribute("data-mce-fragment"))(u)||!(s=(t=>{let n=Vi.fromRangeStart(t);return n=wu(e.getBody()).next(n),null==n?void 0:n.toRange()})(d))?a.add(u,a.create("br",t?{}:{"data-mce-bogus":"1"})):(d=s,a.remove(u))}i.setRng(d)})(e,a.get("mce_marker")),v=e.getBody(),Pt.each(v.getElementsByTagName("*"),(e=>{e.removeAttribute("data-mce-fragment")})),((e,t,n)=>{I.from(e.getParent(t,"td,th")).map(yn).each((e=>((e,t)=>{Un(e).each((n=>{Bn(n).each((o=>{t.isBlock(Ht(e))&&Er(n)&&t.isBlock(Ht(o))&&xo(n)}))}))})(e,n)))})(a,s.getStart(),e.schema),((e,t,n)=>{const o=On(yn(n),(e=>_n(e,yn(t))));ie(o,o.length-2).filter(Wt).fold((()=>ks(e,t)),(t=>ks(e,t.dom)))})(e.schema,e.getBody(),s.getStart()),t},Bb=e=>e instanceof Wg,Pb=(e,t,n)=>{e.dom.setHTML(e.getBody(),t),!0!==n&&(e=>{Rg(e)&&Ou(e.getBody()).each((t=>{const n=t.getNode(),o=Qo(n)?Ou(n).getOr(t):t;e.selection.setRng(o.toRange())}))})(e)},Db=e=>w(e)?e:L,Lb=(e,t,n)=>{const o=t(e),r=Db(n);return o.orThunk((()=>r(e)?I.none():((e,t,n)=>{let o=e.dom;const r=Db(n);for(;o.parentNode;){o=o.parentNode;const e=yn(o),n=t(e);if(n.isSome())return n;if(r(e))break}return I.none()})(e,t,r)))},Mb=ym,Ib=(e,t,n)=>{const o=e.formatter.get(n);if(o)for(let n=0;n<o.length;n++){const r=o[n];if(Sm(r)&&!1===r.inherit&&e.dom.is(t,r.selector))return!0}return!1},Fb=(e,t,n,o,r)=>{const s=e.dom.getRoot();if(t===s)return!1;const a=e.dom.getParent(t,(t=>!!Ib(e,t,n)||t.parentNode===s||!!jb(e,t,n,o,!0)));return!!jb(e,a,n,o,r)},Ub=(e,t,n)=>!(!Nm(n)||!Mb(t,n.inline))||!(!km(n)||!Mb(t,n.block))||!!Sm(n)&&qo(t)&&e.is(t,n.selector),zb=(e,t,n,o,r,s)=>{const a=n[o],i="attributes"===o;if(w(n.onmatch))return n.onmatch(t,n,o);if(a)if(Se(a)){for(let n=0;n<a.length;n++)if(i?e.getAttrib(t,a[n]):wm(e,t,a[n]))return!0}else for(const o in a)if(Ee(a,o)){const l=i?e.getAttrib(t,o):wm(e,t,o),d=vm(a[o],s),c=y(l)||Ge(l);if(c&&y(d))continue;if(r&&c&&!n.exact)return!1;if((!r||n.exact)&&!Mb(l,Cm(d,o)))return!1}return!0},jb=(e,t,n,o,r)=>{const s=e.formatter.get(n),a=e.dom;if(s&&qo(t))for(let n=0;n<s.length;n++){const i=s[n];if(Ub(e.dom,t,i)&&zb(a,t,i,"attributes",r,o)&&zb(a,t,i,"styles",r,o)){const n=i.classes;if(n)for(let r=0;r<n.length;r++)if(!e.dom.hasClass(t,vm(n[r],o)))return;return i}}},Hb=(e,t,n,o,r)=>{if(o)return Fb(e,o,t,n,r);if(o=e.selection.getNode(),Fb(e,o,t,n,r))return!0;const s=e.selection.getStart();return!(s===o||!Fb(e,s,t,n,r))},$b=Br,qb=e=>{if(e){const t=new jo(e,e);for(let e=t.current();e;e=t.next())if(er(e))return e}return null},Vb=e=>{const t=bn("span");return Zt(t,{id:Pu,"data-mce-bogus":"1","data-mce-type":"format-caret"}),e&&vo(t,vn($b)),t},Wb=(e,t,n)=>{const o=e.dom,r=e.selection;if(Am(t))vh(e,!1,yn(t),n,!0);else{const e=r.getRng(),n=o.getParent(t,o.isBlock),s=e.startContainer,a=e.startOffset,i=e.endContainer,l=e.endOffset,d=(e=>{const t=qb(e);return t&&t.data.charAt(0)===$b&&t.deleteData(0,1),t})(t);o.remove(t,!0),s===d&&a>0&&e.setStart(d,a-1),i===d&&l>0&&e.setEnd(d,l-1),n&&o.isEmpty(n)&&Or(yn(n)),r.setRng(e)}},Kb=(e,t,n)=>{const o=e.dom,r=e.selection;if(t)Wb(e,t,n);else if(!(t=Lu(e.getBody(),r.getStart())))for(;t=o.get(Pu);)Wb(e,t,n)},Yb=(e,t)=>(e.appendChild(t),t),Gb=(e,t)=>{var n;const o=G(e,((e,t)=>Yb(e,t.cloneNode(!1))),t),r=null!==(n=o.ownerDocument)&&void 0!==n?n:document;return Yb(o,r.createTextNode($b))},Xb=(e,t,n,o)=>{const a=e.dom,i=e.selection;let l=!1;const d=e.formatter.get(t);if(!d)return;const c=i.getRng(),u=c.startContainer,m=c.startOffset;let f=u;er(u)&&(m!==u.data.length&&(l=!0),f=f.parentNode);const g=[];let h;for(;f;){if(jb(e,f,t,n,o)){h=f;break}f.nextSibling&&(l=!0),g.push(f),f=f.parentNode}if(h)if(l){const r=i.getBookmark();c.collapse(!0);let s=Vm(a,c,d,!0);s=Ff(s),e.formatter.remove(t,n,s,o),i.moveToBookmark(r)}else{const l=Lu(e.getBody(),h),d=C(l)?a.getParents(h.parentNode,M,l):[],c=Vb(!1).dom;((e,t,n)=>{var o,r;const s=e.dom,a=s.getParent(n,T(gm,e.schema));a&&s.isEmpty(a)?null===(o=n.parentNode)||void 0===o||o.replaceChild(t,n):((e=>{const t=Uo(e,"br"),n=Y((e=>{const t=[];let n=e.dom;for(;n;)t.push(yn(n)),n=n.lastChild;return t})(e).slice(-1),Er);t.length===n.length&&V(n,xo)})(yn(n)),s.isEmpty(n)?null===(r=n.parentNode)||void 0===r||r.replaceChild(t,n):s.insertAfter(t,n))})(e,c,null!=l?l:h);const u=((e,t,n,o,a,i)=>{const l=e.formatter,d=e.dom,c=Y(me(l.get()),(e=>e!==o&&!je(e,"removeformat"))),u=((e,t,n)=>X(n,((n,o)=>{const r=((e,t)=>_m(e,t,(e=>{const t=e=>w(e)||e.length>1&&"%"===e.charAt(0);return $(["styles","attributes"],(n=>xe(e,n).exists((e=>{const n=p(e)?e:we(e);return $(n,t)}))))})))(e,o);return e.formatter.matchNode(t,o,{},r)?n.concat([o]):n}),[]))(e,n,c);if(Y(u,(t=>!((e,t,n)=>{const o=["inline","block","selector","attributes","styles","classes"],a=e=>ye(e,((e,t)=>$(o,(e=>e===t))));return _m(e,t,(t=>{const o=a(t);return _m(e,n,(e=>{const t=a(e);return((e,t,n=s)=>r(n).eq(e,t))(o,t)}))}))})(e,t,o))).length>0){const e=n.cloneNode(!1);return d.add(t,e),l.remove(o,a,e,i),d.remove(e),I.some(e)}return I.none()})(e,c,h,t,n,o),m=Gb([...g,...u.toArray(),...d],c);l&&Wb(e,l,C(l)),i.setCursorLocation(m,1),a.isEmpty(h)&&a.remove(h)}},Qb=e=>{const t=Vb(!1),n=Gb(e,t.dom);return{caretContainer:t,caretPosition:Vi(n,0)}},Jb=(e,t)=>{const{caretContainer:n,caretPosition:o}=Qb(t);return po(yn(e),n),xo(yn(e)),o},Zb=(e,t)=>{if(Du(t.dom))return!1;const n=e.schema.getTextInlineElements();return Ee(n,Ht(t))&&!Du(t.dom)&&!Xo(t.dom)},ev={},tv=Ko(["pre"]);((e,t)=>{ev[e]||(ev[e]=[]),ev[e].push((e=>{if(!e.selection.getRng().collapsed){const t=e.selection.getSelectedBlocks(),n=Y(Y(t,tv),(e=>t=>{const n=t.previousSibling;return tv(n)&&H(e,n)})(t));V(n,(e=>{((e,t)=>{const n=yn(t),o=Nn(n).dom;xo(n),Co(yn(e),[bn("br",o),bn("br",o),...Mn(n)])})(e.previousSibling,e)}))}}))})("pre");const nv=["fontWeight","fontStyle","color","fontSize","fontFamily"],ov=(e,t)=>{const n=e.get(t);return p(n)?J(n,(e=>Nm(e)&&"span"===e.inline&&(e=>f(e.styles)&&$(me(e.styles),(e=>H(nv,e))))(e))):I.none()},rv=(e,t)=>Tu(t,Vi.fromRangeStart(e)).isNone(),sv=(e,t)=>!1===Au(t,Vi.fromRangeEnd(e)).exists((e=>!ar(e.getNode())||Au(t,e).isSome())),av=e=>t=>fr(t)&&e.isEditable(t),iv=e=>Y(e.getSelectedBlocks(),av(e.dom)),lv=Pt.each,dv=e=>qo(e)&&!Ku(e)&&!Du(e)&&!Xo(e),cv=(e,t)=>{for(let n=e;n;n=n[t]){if(er(n)&&Ye(n.data))return e;if(qo(n)&&!Ku(n))return n}return e},uv=(e,t,n)=>{const o=ub(e),r=Vo(t)&&e.dom.isEditable(t),s=Vo(n)&&e.dom.isEditable(n);if(r&&s){const r=cv(t,"previousSibling"),s=cv(n,"nextSibling");if(o.compare(r,s)){for(let e=r.nextSibling;e&&e!==s;){const t=e;e=e.nextSibling,r.appendChild(t)}return e.dom.remove(s),Pt.each(Pt.grep(s.childNodes),(e=>{r.appendChild(e)})),r}}return n},mv=(e,t,n,o)=>{var r;if(o&&!1!==t.merge_siblings){const t=null!==(r=uv(e,fm(o),o))&&void 0!==r?r:o;uv(e,t,fm(t,!0))}},fv=(e,t,n)=>{lv(e.childNodes,(e=>{dv(e)&&(t(e)&&n(e),e.hasChildNodes()&&fv(e,t,n))}))},gv=(e,t)=>n=>!(!n||!wm(e,n,t)),pv=(e,t,n)=>o=>{e.setStyle(o,t,n),""===o.getAttribute("style")&&o.removeAttribute("style"),((e,t)=>{"SPAN"===t.nodeName&&0===e.getAttribs(t).length&&e.remove(t,!0)})(e,o)},hv=hl([{keep:[]},{rename:["name"]},{removed:[]}]),bv=/^(src|href|style)$/,vv=Pt.each,yv=ym,Cv=(e,t,n)=>e.isChildOf(t,n)&&t!==n&&!e.isBlock(n),wv=(e,t,n)=>{let o=t[n?"startContainer":"endContainer"],r=t[n?"startOffset":"endOffset"];if(qo(o)){const e=o.childNodes.length-1;!n&&r&&r--,o=o.childNodes[r>e?e:r]}return er(o)&&n&&r>=o.data.length&&(o=new jo(o,e.getBody()).next()||o),er(o)&&!n&&0===r&&(o=new jo(o,e.getBody()).prev()||o),o},xv=(e,t)=>{const n=t?"firstChild":"lastChild",o=e[n];return(e=>/^(TR|TH|TD)$/.test(e.nodeName))(e)&&o?"TR"===e.nodeName&&o[n]||o:e},Ev=(e,t,n,o)=>{var r;const s=e.create(n,o);return null===(r=t.parentNode)||void 0===r||r.insertBefore(s,t),s.appendChild(t),s},_v=(e,t,n,o,r)=>{const s=yn(t),a=yn(e.create(o,r)),i=n?Ln(s):Dn(s);return Co(a,i),n?(po(s,a),bo(a,s)):(ho(s,a),vo(a,s)),a.dom},kv=(e,t,n)=>{const o=t.parentNode;let r;const s=e.dom,a=Il(e);km(n)&&o===s.getRoot()&&(n.list_block&&yv(t,n.list_block)||V(ce(t.childNodes),(t=>{pm(e,a,t.nodeName.toLowerCase())?r?r.appendChild(t):(r=Ev(s,t,a),s.setAttribs(r,Fl(e))):r=null}))),(e=>Sm(e)&&Nm(e)&&Dt(xe(e,"mixed"),!0))(n)&&!yv(n.inline,t)||s.remove(t,!0)},Sv=(e,t,n)=>x(e)?{name:t,value:null}:{name:e,value:vm(t,n)},Nv=(e,t)=>{""===e.getAttrib(t,"style")&&(t.removeAttribute("style"),t.removeAttribute("data-mce-style"))},Rv=(e,t,n,o,r)=>{let s=!1;vv(n.styles,((a,i)=>{const{name:l,value:d}=Sv(i,a,o),c=Cm(d,l);(n.remove_similar||h(d)||!qo(r)||yv(wm(e,r,l),c))&&e.setStyle(t,l,""),s=!0})),s&&Nv(e,t)},Av=(e,t,n,o,r)=>{const s=e.dom,a=ub(e),i=e.schema;if(Nm(t)&&Rs(i,t.inline)&&Ts(i,o)&&o.parentElement===e.getBody())return kv(e,o,t),hv.removed();if(!t.ceFalseOverride&&o&&"false"===s.getContentEditableParent(o))return hv.keep();if(o&&!Ub(s,o,t)&&!((e,t)=>t.links&&"A"===e.nodeName)(o,t))return hv.keep();const l=o,d=t.preserve_attributes;if(Nm(t)&&"all"===t.remove&&p(d)){const e=Y(s.getAttribs(l),(e=>H(d,e.name.toLowerCase())));if(s.removeAllAttribs(l),V(e,(e=>s.setAttrib(l,e.name,e.value))),e.length>0)return hv.rename("span")}if("all"!==t.remove){Rv(s,l,t,n,r),vv(t.attributes,((e,o)=>{const{name:a,value:i}=Sv(o,e,n);if(t.remove_similar||h(i)||!qo(r)||yv(s.getAttrib(r,a),i)){if("class"===a){const e=s.getAttrib(l,a);if(e){let t="";if(V(e.split(/\s+/),(e=>{/mce\-\w+/.test(e)&&(t+=(t?" ":"")+e)})),t)return void s.setAttrib(l,a,t)}}if(bv.test(a)&&l.removeAttribute("data-mce-"+a),"style"===a&&Ko(["li"])(l)&&"none"===s.getStyle(l,"list-style-type"))return l.removeAttribute(a),void s.setStyle(l,"list-style-type","none");"class"===a&&l.removeAttribute("className"),l.removeAttribute(a)}})),vv(t.classes,(e=>{e=vm(e,n),qo(r)&&!s.hasClass(r,e)||s.removeClass(l,e)}));const e=s.getAttribs(l);for(let t=0;t<e.length;t++){const n=e[t].nodeName;if(!a.isAttributeInternal(n))return hv.keep()}}return"none"!==t.remove?(kv(e,l,t),hv.removed()):hv.keep()},Tv=(e,t,n,o)=>Av(e,t,n,o,o).fold(N(o),(t=>(e.dom.createFragment().appendChild(o),e.dom.rename(o,t))),N(null)),Ov=(e,t,n,o,r)=>{(o||e.selection.isEditable())&&((e,t,n,o,r)=>{const s=e.formatter.get(t),a=s[0],i=e.dom,l=e.selection,d=o=>{const i=((e,t,n,o,r)=>{let s;return t.parentNode&&V(Em(e.dom,t.parentNode).reverse(),(t=>{if(!s&&qo(t)&&"_start"!==t.id&&"_end"!==t.id){const a=jb(e,t,n,o,r);a&&!1!==a.split&&(s=t)}})),s})(e,o,t,n,r);return((e,t,n,o,r,s,a,i)=>{var l,d;let c,u;const m=e.dom;if(n){const s=n.parentNode;for(let n=o.parentNode;n&&n!==s;n=n.parentNode){let o=m.clone(n,!1);for(let n=0;n<t.length&&(o=Tv(e,t[n],i,o),null!==o);n++);o&&(c&&o.appendChild(c),u||(u=o),c=o)}a.mixed&&m.isBlock(n)||(o=null!==(l=m.split(n,o))&&void 0!==l?l:o),c&&u&&(null===(d=r.parentNode)||void 0===d||d.insertBefore(c,r),u.appendChild(r),Nm(a)&&mv(e,a,0,c))}return o})(e,s,i,o,o,0,a,n)},c=t=>$(s,(o=>Bv(e,o,n,t,t))),u=t=>{const n=ce(t.childNodes),o=c(t)||$(s,(e=>Ub(i,t,e))),r=t.parentNode;if(!o&&C(r)&&Rm(a)&&c(r),a.deep&&n.length)for(let e=0;e<n.length;e++)u(n[e]);V(["underline","line-through","overline"],(n=>{qo(t)&&e.dom.getStyle(t,"text-decoration")===n&&t.parentNode&&xm(i,t.parentNode)===n&&Bv(e,{deep:!1,exact:!0,inline:"span",styles:{textDecoration:n}},void 0,t)}))},m=e=>{const t=i.get(e?"_start":"_end");if(t){let n=t[e?"firstChild":"lastChild"];return(e=>Ku(e)&&qo(e)&&("_start"===e.id||"_end"===e.id))(n)&&(n=n[e?"firstChild":"lastChild"]),er(n)&&0===n.data.length&&(n=e?t.previousSibling||t.nextSibling:t.nextSibling||t.previousSibling),i.remove(t,!0),n}return null},f=t=>{let n,o,r=Vm(i,t,s,t.collapsed);if(a.split){if(r=Ff(r),n=wv(e,r,!0),o=wv(e,r),n!==o){if(n=xv(n,!0),o=xv(o,!1),Cv(i,n,o)){const e=I.from(n.firstChild).getOr(n);return d(_v(i,e,!0,"span",{id:"_start","data-mce-type":"bookmark"})),void m(!0)}if(Cv(i,o,n)){const e=I.from(o.lastChild).getOr(o);return d(_v(i,e,!1,"span",{id:"_end","data-mce-type":"bookmark"})),void m(!1)}n=Ev(i,n,"span",{id:"_start","data-mce-type":"bookmark"}),o=Ev(i,o,"span",{id:"_end","data-mce-type":"bookmark"});const e=i.createRng();e.setStartAfter(n),e.setEndBefore(o),Wm(i,e,(e=>{V(e,(e=>{Ku(e)||Ku(e.parentNode)||d(e)}))})),d(n),d(o),n=m(!0),o=m()}else n=o=d(n);r.startContainer=n.parentNode?n.parentNode:n,r.startOffset=i.nodeIndex(n),r.endContainer=o.parentNode?o.parentNode:o,r.endOffset=i.nodeIndex(o)+1}Wm(i,r,(e=>{V(e,u)}))};if(o){if(dm(o)){const e=i.createRng();e.setStartBefore(o),e.setEndAfter(o),f(e)}else f(o);nf(e,t,o,n)}else l.isCollapsed()&&Nm(a)&&!em(e).length?Xb(e,t,n,r):(um(e,(()=>im(e,f)),(o=>Nm(a)&&Hb(e,t,n,o))),e.nodeChanged()),((e,t,n)=>{"removeformat"===t?V(iv(e.selection),(t=>{V(nv,(n=>e.dom.setStyle(t,n,""))),Nv(e.dom,t)})):ov(e.formatter,t).each((t=>{V(iv(e.selection),(o=>Rv(e.dom,o,t,n,null)))}))})(e,t,n),nf(e,t,o,n)})(e,t,n,o,r)},Bv=(e,t,n,o,r)=>Av(e,t,n,o,r).fold(L,(t=>(e.dom.rename(o,t),!0)),M),Pv=Pt.each,Dv=Pt.each,Lv=(e,t,n,o)=>{if(Dv(n.styles,((n,r)=>{e.setStyle(t,r,vm(n,o))})),n.styles){const n=e.getAttrib(t,"style");n&&e.setAttrib(t,"data-mce-style",n)}},Mv=(e,t,n,o)=>{const r=e.formatter.get(t),s=r[0],a=!o&&e.selection.isCollapsed(),i=e.dom,l=e.selection,d=(e,t=s)=>{w(t.onformat)&&t.onformat(e,t,n,o),Lv(i,e,t,n),Dv(t.attributes,((t,o)=>{i.setAttrib(e,o,vm(t,n))})),Dv(t.classes,(t=>{const o=vm(t,n);i.hasClass(e,o)||i.addClass(e,o)}))},c=(e,t)=>{let n=!1;return Dv(e,(e=>!(!Sm(e)||("false"!==i.getContentEditable(t)||e.ceFalseOverride)&&(!C(e.collapsed)||e.collapsed===a)&&i.is(t,e.selector)&&!Du(t)&&(d(t,e),n=!0,1)))),n},u=e=>{if(m(e)){const t=i.create(e);return d(t),t}return null},f=(o,a,i)=>{const l=[];let m=!0;const f=s.inline||s.block,g=u(f);Wm(o,a,(a=>{let u;const p=a=>{let h=!1,b=m,v=!1;const y=a.parentNode,w=y.nodeName.toLowerCase(),x=o.getContentEditable(a);C(x)&&(b=m,m="true"===x,h=!0,v=bm(e,a));const E=m&&!h;if(ar(a)&&!((e,t,n,o)=>{if(xd(e)&&Nm(t)&&n.parentNode){const t=da(e.schema),r=Dh(yn(n),(e=>Du(e.dom)));return _e(t,o)&&gs(yn(n.parentNode),!1)&&!r}return!1})(e,s,a,w))return u=null,void(km(s)&&o.remove(a));if((o=>(e=>km(e)&&!0===e.wrapper)(s)&&jb(e,o,t,n))(a))u=null;else{if(((t,n,o)=>{const r=(e=>km(e)&&!0!==e.wrapper)(s)&&gm(e.schema,t)&&pm(e,n,f);return o&&r})(a,w,E)){const e=o.rename(a,f);return d(e),l.push(e),void(u=null)}if(Sm(s)){let e=c(r,a);if(!e&&C(y)&&Rm(s)&&(e=c(r,y)),!Nm(s)||e)return void(u=null)}C(g)&&((t,n,r,a)=>{const l=t.nodeName.toLowerCase(),d=pm(e,f,l)&&pm(e,n,f),c=!i&&er(t)&&Pr(t.data),u=Du(t),m=!Nm(s)||!o.isBlock(t);return(r||a)&&d&&!c&&!u&&m})(a,w,E,v)?(u||(u=o.clone(g,!1),y.insertBefore(u,a),l.push(u)),v&&h&&(m=b),u.appendChild(a)):(u=null,V(ce(a.childNodes),p),h&&(m=b),u=null)}};V(a,p)})),!0===s.links&&V(l,(e=>{const t=e=>{"A"===e.nodeName&&d(e,s),V(ce(e.childNodes),t)};t(e)})),V(l,(a=>{const i=(e=>{let t=0;return V(e.childNodes,(e=>{(e=>C(e)&&er(e)&&0===e.length)(e)||Ku(e)||t++})),t})(a);!(l.length>1)&&o.isBlock(a)||0!==i?(Nm(s)||km(s)&&s.wrapper)&&(s.exact||1!==i||(a=(e=>{const t=J(e.childNodes,cm).filter((e=>"false"!==o.getContentEditable(e)&&Ub(o,e,s)));return t.map((t=>{const n=o.clone(t,!1);return d(n),o.replace(n,e,!0),o.remove(t,!0),n})).getOr(e)})(a)),((e,t,n,o)=>{Pv(t,(t=>{Nm(t)&&Pv(e.dom.select(t.inline,o),(o=>{dv(o)&&Bv(e,t,n,o,t.exact?o:null)})),((e,t,n)=>{if(t.clear_child_styles){const o=t.links?"*:not(a)":"*";lv(e.select(o,n),(n=>{dv(n)&&e.isEditable(n)&&lv(t.styles,((t,o)=>{e.setStyle(n,o,"")}))}))}})(e.dom,t,o)}))})(e,r,n,a),((e,t,n,o,r)=>{const s=r.parentNode;jb(e,s,n,o)&&Bv(e,t,o,r)||t.merge_with_parents&&s&&e.dom.getParent(s,(s=>!!jb(e,s,n,o)&&(Bv(e,t,o,r),!0)))})(e,s,t,n,a),((e,t,n,o)=>{if(t.styles&&t.styles.backgroundColor){const r=gv(e,"fontSize");fv(o,(t=>r(t)&&e.isEditable(t)),pv(e,"backgroundColor",vm(t.styles.backgroundColor,n)))}})(o,s,n,a),((e,t,n,o)=>{const r=t=>{if(Vo(t)&&qo(t.parentNode)&&e.isEditable(t)){const n=xm(e,t.parentNode);e.getStyle(t,"color")&&n?e.setStyle(t,"text-decoration",n):e.getStyle(t,"text-decoration")===n&&e.setStyle(t,"text-decoration",null)}};t.styles&&(t.styles.color||t.styles.textDecoration)&&(Pt.walk(o,r,"childNodes"),r(o))})(o,s,0,a),((e,t,n,o)=>{if(Nm(t)&&("sub"===t.inline||"sup"===t.inline)){const n=gv(e,"fontSize");fv(o,(t=>n(t)&&e.isEditable(t)),pv(e,"fontSize",""));const r=Y(e.select("sup"===t.inline?"sub":"sup",o),e.isEditable);e.remove(r,!0)}})(o,s,0,a),mv(e,s,0,a)):o.remove(a,!0)}))},g=dm(o)?o:l.getNode();if("false"===i.getContentEditable(g)&&!bm(e,g))return c(r,o=g),void tf(e,t,o,n);if(s){if(o)if(dm(o)){if(!c(r,o)){const e=i.createRng();e.setStartBefore(o),e.setEndAfter(o),f(i,Vm(i,e,r),!0)}}else f(i,o,!0);else a&&Nm(s)&&!em(e).length?((e,t,n)=>{let o;const r=e.selection,s=e.formatter.get(t);if(!s)return;const a=r.getRng();let i=a.startOffset;const l=a.startContainer.nodeValue;o=Lu(e.getBody(),r.getStart());const d=/[^\s\u00a0\u00ad\u200b\ufeff]/;if(l&&i>0&&i<l.length&&d.test(l.charAt(i))&&d.test(l.charAt(i-1))){const o=r.getBookmark();a.collapse(!0);let i=Vm(e.dom,a,s);i=Ff(i),e.formatter.apply(t,n,i),r.moveToBookmark(o)}else{let s=o?qb(o):null;o&&(null==s?void 0:s.data)===$b||(c=e.getDoc(),u=Vb(!0).dom,o=c.importNode(u,!0),s=o.firstChild,a.insertNode(o),i=1),e.formatter.apply(t,n,o),r.setCursorLocation(s,i)}var c,u})(e,t,n):(l.setRng(Eb(l.getRng())),um(e,(()=>{im(e,((e,t)=>{const n=t?e:Vm(i,e,r);f(i,n,!1)}))}),M),e.nodeChanged()),ov(e.formatter,t).each((t=>{V((e=>Y((e=>{const t=e.getSelectedBlocks(),n=e.getRng();if(e.isCollapsed())return[];if(1===t.length)return rv(n,t[0])&&sv(n,t[0])?t:[];{const e=le(t).filter((e=>rv(n,e))).toArray(),o=de(t).filter((e=>sv(n,e))).toArray(),r=t.slice(1,-1);return e.concat(r).concat(o)}})(e),av(e.dom)))(e.selection),(e=>Lv(i,e,t,n)))}));((e,t)=>{Ee(ev,e)&&V(ev[e],(e=>{e(t)}))})(t,e)}tf(e,t,o,n)},Iv=(e,t,n,o)=>{(o||e.selection.isEditable())&&Mv(e,t,n,o)},Fv=e=>Ee(e,"vars"),Uv=e=>e.selection.getStart(),zv=(e,t,n,o,r)=>Q(t,(t=>{const s=e.formatter.matchNode(t,n,null!=r?r:{},o);return!v(s)}),(t=>!!Ib(e,t,n)||!o&&C(e.formatter.matchNode(t,n,r,!0)))),jv=(e,t)=>{const n=null!=t?t:Uv(e);return Y(Em(e.dom,n),(e=>qo(e)&&!Xo(e)))},Hv=(e,t,n)=>{const o=jv(e,t);ge(n,((n,r)=>{const s=n=>{const s=zv(e,o,r,n.similar,Fv(n)?n.vars:void 0),a=s.isSome();if(n.state.get()!==a){n.state.set(a);const e=s.getOr(t);Fv(n)?n.callback(a,{node:e,format:r,parents:o}):V(n.callbacks,(t=>t(a,{node:e,format:r,parents:o})))}};V([n.withSimilar,n.withoutSimilar],s),V(n.withVars,s)}))},$v=Pt.explode,qv=()=>{const e={};return{addFilter:(t,n)=>{V($v(t),(t=>{Ee(e,t)||(e[t]={name:t,callbacks:[]}),e[t].callbacks.push(n)}))},getFilters:()=>we(e),removeFilter:(t,n)=>{V($v(t),(t=>{if(Ee(e,t))if(C(n)){const o=e[t],r=Y(o.callbacks,(e=>e!==n));r.length>0?o.callbacks=r:delete e[t]}else delete e[t]}))}}},Vv=(e,t,n)=>{var o;const r=wa();t.convert_fonts_to_spans&&((e,t,n)=>{e.addNodeFilter("font",(e=>{V(e,(e=>{const o=t.parse(e.attr("style")),r=e.attr("color"),s=e.attr("face"),a=e.attr("size");r&&(o.color=r),s&&(o["font-family"]=s),a&&Xe(a).each((e=>{o["font-size"]=n[e-1]})),e.name="span",e.attr("style",t.serialize(o)),((e,t)=>{V(["color","face","size"],(t=>{e.attr(t,null)}))})(e)}))}))})(e,r,Pt.explode(null!==(o=t.font_size_legacy_values)&&void 0!==o?o:"")),((e,t,n)=>{e.addNodeFilter("strike",(e=>{const o="html4"!==t.type;V(e,(e=>{if(o)e.name="s";else{const t=n.parse(e.attr("style"));t["text-decoration"]="line-through",e.name="span",e.attr("style",n.serialize(t))}}))}))})(e,n,r)},Wv=(e,t,n)=>{t.addNodeFilter("br",((t,o,r)=>{const s=Pt.extend({},n.getBlockElements()),a=n.getNonEmptyElements(),i=n.getWhitespaceElements();s.body=1;const l=e=>e.name in s||Bs(n,e);for(let o=0,d=t.length;o<d;o++){let d=t[o],c=d.parent;if(c&&l(c)&&d===c.lastChild){let t=d.prev;for(;t;){const e=t.name;if("span"!==e||"bookmark"!==t.attr("data-mce-type")){"br"===e&&(d=null);break}t=t.prev}if(d&&(d.remove(),vb(n,a,i,c))){const t=n.getElementRule(c.name);t&&(t.removeEmpty?c.remove():t.paddEmpty&&hb(e,r,l,c))}}else{let e=d;for(;c&&c.firstChild===e&&c.lastChild===e&&(e=c,!s[c.name]);)c=c.parent;if(e===c){const e=new Wg("#text",3);e.value=br,d.replace(e)}}}}))},Kv=e=>{const[t,...n]=e.split(","),o=n.join(","),r=/data:([^/]+\/[^;]+)(;.+)?/.exec(t);if(r){const e=";base64"===r[2],t=e?(e=>{const t=/([a-z0-9+\/=\s]+)/i.exec(e);return t?t[1]:""})(o):decodeURIComponent(o);return I.some({type:r[1],data:t,base64Encoded:e})}return I.none()},Yv=(e,t,n=!0)=>{let o=t;if(n)try{o=atob(t)}catch(e){return I.none()}const r=new Uint8Array(o.length);for(let e=0;e<r.length;e++)r[e]=o.charCodeAt(e);return I.some(new Blob([r],{type:e}))},Gv=e=>new Promise(((t,n)=>{const o=new FileReader;o.onloadend=()=>{t(o.result)},o.onerror=()=>{var e;n(null===(e=o.error)||void 0===e?void 0:e.message)},o.readAsDataURL(e)}));let Xv=0;const Qv=(e,t,n)=>Kv(e).bind((({data:e,type:o,base64Encoded:r})=>{if(t&&!r)return I.none();{const t=r?e:btoa(e);return n(t,o)}})),Jv=(e,t,n)=>{const o=e.create("blobid"+Xv++,t,n);return e.add(o),o},Zv=(e,t,n=!1)=>Qv(t,n,((t,n)=>I.from(e.getByData(t,n)).orThunk((()=>Yv(n,t).map((n=>Jv(e,n,t))))))),ey=(e,t)=>He(e,`${t}/`),ty=(e,t)=>{const n=e.schema;t.remove_trailing_brs&&Wv(t,e,n),e.addAttributeFilter("href",(e=>{let n=e.length;const o=e=>{const t=e?Pt.trim(e):"";return/\b(noopener)\b/g.test(t)?t:(e=>e.split(" ").filter((e=>e.length>0)).concat(["noopener"]).sort().join(" "))(t)};if(!t.allow_unsafe_link_target)for(;n--;){const t=e[n];"a"===t.name&&"_blank"===t.attr("target")&&t.attr("rel",o(t.attr("rel")))}})),t.allow_html_in_named_anchor||e.addAttributeFilter("id,name",(e=>{let t,n,o,r,s=e.length;for(;s--;)if(r=e[s],"a"===r.name&&r.firstChild&&!r.attr("href"))for(o=r.parent,t=r.lastChild;t&&o;)n=t.prev,o.insert(t,r),t=n})),t.fix_list_elements&&e.addNodeFilter("ul,ol",(e=>{let t,n,o=e.length;for(;o--;)if(t=e[o],n=t.parent,n&&("ul"===n.name||"ol"===n.name))if(t.prev&&"li"===t.prev.name)t.prev.append(t);else{const e=new Wg("li",1);e.attr("style","list-style-type: none"),t.wrap(e)}}));const o=n.getValidClasses();t.validate&&o&&e.addAttributeFilter("class",(e=>{var t;let n=e.length;for(;n--;){const r=e[n],s=null!==(t=r.attr("class"))&&void 0!==t?t:"",a=Pt.explode(s," ");let i="";for(let e=0;e<a.length;e++){const t=a[e];let n=!1,s=o["*"];s&&s[t]&&(n=!0),s=o[r.name],!n&&s&&s[t]&&(n=!0),n&&(i&&(i+=" "),i+=t)}i.length||(i=null),r.attr("class",i)}})),((e,t)=>{const{blob_cache:n}=t;if(n){const t=e=>{const t=e.attr("src");(e=>e.attr("src")===At.transparentSrc||C(e.attr("data-mce-placeholder")))(e)||(e=>C(e.attr("data-mce-bogus")))(e)||y(t)||Zv(n,t,!0).each((t=>{e.attr("src",t.blobUri())}))};e.addAttributeFilter("src",(e=>V(e,t)))}})(e,t),t.convert_unsafe_embeds&&e.addNodeFilter("object,embed",(e=>V(e,(e=>{e.replace(((e,t,n,o,r)=>{let s;s=v(e)?"iframe":ey(e,"image")?"img":ey(e,"video")?"video":ey(e,"audio")?"audio":"iframe";const a=new Wg(s,1);return a.attr("audio"===s?{src:t}:{src:t,width:n,height:o}),"audio"!==s&&"video"!==s||a.attr("controls",""),"iframe"===s&&r&&a.attr("sandbox",""),a})(e.attr("type"),"object"===e.name?e.attr("data"):e.attr("src"),e.attr("width"),e.attr("height"),t.sandbox_iframes))})))),t.sandbox_iframes&&e.addNodeFilter("iframe",(e=>V(e,(e=>e.attr("sandbox","")))))},{entries:ny,setPrototypeOf:oy,isFrozen:ry,getPrototypeOf:sy,getOwnPropertyDescriptor:ay}=Object;let{freeze:iy,seal:ly,create:dy}=Object,{apply:cy,construct:uy}="undefined"!=typeof Reflect&&Reflect;cy||(cy=function(e,t,n){return e.apply(t,n)}),iy||(iy=function(e){return e}),ly||(ly=function(e){return e}),uy||(uy=function(e,t){return new e(...t)});const my=_y(Array.prototype.forEach),fy=_y(Array.prototype.pop),gy=_y(Array.prototype.push),py=_y(String.prototype.toLowerCase),hy=_y(String.prototype.toString),by=_y(String.prototype.match),vy=_y(String.prototype.replace),yy=_y(String.prototype.indexOf),Cy=_y(String.prototype.trim),wy=_y(RegExp.prototype.test),xy=(Ey=TypeError,function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return uy(Ey,t)});var Ey;function _y(e){return function(t){for(var n=arguments.length,o=new Array(n>1?n-1:0),r=1;r<n;r++)o[r-1]=arguments[r];return cy(e,t,o)}}function ky(e,t,n){var o;n=null!==(o=n)&&void 0!==o?o:py,oy&&oy(e,null);let r=t.length;for(;r--;){let o=t[r];if("string"==typeof o){const e=n(o);e!==o&&(ry(t)||(t[r]=e),o=e)}e[o]=!0}return e}function Sy(e){const t=dy(null);for(const[n,o]of ny(e))t[n]=o;return t}function Ny(e,t){for(;null!==e;){const n=ay(e,t);if(n){if(n.get)return _y(n.get);if("function"==typeof n.value)return _y(n.value)}e=sy(e)}return function(e){return console.warn("fallback value for",e),null}}const Ry=iy(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),Ay=iy(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Ty=iy(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),Oy=iy(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),By=iy(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),Py=iy(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),Dy=iy(["#text"]),Ly=iy(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),My=iy(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Iy=iy(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),Fy=iy(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),Uy=ly(/\{\{[\w\W]*|[\w\W]*\}\}/gm),zy=ly(/<%[\w\W]*|[\w\W]*%>/gm),jy=ly(/\${[\w\W]*}/gm),Hy=ly(/^data-[\-\w.\u00B7-\uFFFF]/),$y=ly(/^aria-[\-\w]+$/),qy=ly(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Vy=ly(/^(?:\w+script|data):/i),Wy=ly(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Ky=ly(/^html$/i);var Yy=Object.freeze({__proto__:null,MUSTACHE_EXPR:Uy,ERB_EXPR:zy,TMPLIT_EXPR:jy,DATA_ATTR:Hy,ARIA_ATTR:$y,IS_ALLOWED_URI:qy,IS_SCRIPT_OR_DATA:Vy,ATTR_WHITESPACE:Wy,DOCTYPE_NAME:Ky});const Gy=()=>"undefined"==typeof window?null:window;var Xy=function e(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Gy();const n=t=>e(t);if(n.version="3.0.5",n.removed=[],!t||!t.document||9!==t.document.nodeType)return n.isSupported=!1,n;const o=t.document,r=o.currentScript;let{document:s}=t;const{DocumentFragment:a,HTMLTemplateElement:i,Node:l,Element:d,NodeFilter:c,NamedNodeMap:u=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:m,DOMParser:f,trustedTypes:g}=t,p=d.prototype,h=Ny(p,"cloneNode"),b=Ny(p,"nextSibling"),v=Ny(p,"childNodes"),y=Ny(p,"parentNode");if("function"==typeof i){const e=s.createElement("template");e.content&&e.content.ownerDocument&&(s=e.content.ownerDocument)}let C,w="";const{implementation:x,createNodeIterator:E,createDocumentFragment:_,getElementsByTagName:k}=s,{importNode:S}=o;let N={};n.isSupported="function"==typeof ny&&"function"==typeof y&&x&&void 0!==x.createHTMLDocument;const{MUSTACHE_EXPR:R,ERB_EXPR:A,TMPLIT_EXPR:T,DATA_ATTR:O,ARIA_ATTR:B,IS_SCRIPT_OR_DATA:P,ATTR_WHITESPACE:D}=Yy;let{IS_ALLOWED_URI:L}=Yy,M=null;const I=ky({},[...Ry,...Ay,...Ty,...By,...Dy]);let F=null;const U=ky({},[...Ly,...My,...Iy,...Fy]);let z=Object.seal(Object.create(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),j=null,H=null,$=!0,q=!0,V=!1,W=!0,K=!1,Y=!1,G=!1,X=!1,Q=!1,J=!1,Z=!1,ee=!0,te=!1,ne=!0,oe=!1,re={},se=null;const ae=ky({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let ie=null;const le=ky({},["audio","video","img","source","image","track"]);let de=null;const ce=ky({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),ue="http://www.w3.org/1998/Math/MathML",me="http://www.w3.org/2000/svg",fe="http://www.w3.org/1999/xhtml";let ge=fe,pe=!1,he=null;const be=ky({},[ue,me,fe],hy);let ve;const ye=["application/xhtml+xml","text/html"];let Ce,we=null;const xe=s.createElement("form"),Ee=function(e){return e instanceof RegExp||e instanceof Function},_e=function(e){if(!we||we!==e){if(e&&"object"==typeof e||(e={}),e=Sy(e),ve=ve=-1===ye.indexOf(e.PARSER_MEDIA_TYPE)?"text/html":e.PARSER_MEDIA_TYPE,Ce="application/xhtml+xml"===ve?hy:py,M="ALLOWED_TAGS"in e?ky({},e.ALLOWED_TAGS,Ce):I,F="ALLOWED_ATTR"in e?ky({},e.ALLOWED_ATTR,Ce):U,he="ALLOWED_NAMESPACES"in e?ky({},e.ALLOWED_NAMESPACES,hy):be,de="ADD_URI_SAFE_ATTR"in e?ky(Sy(ce),e.ADD_URI_SAFE_ATTR,Ce):ce,ie="ADD_DATA_URI_TAGS"in e?ky(Sy(le),e.ADD_DATA_URI_TAGS,Ce):le,se="FORBID_CONTENTS"in e?ky({},e.FORBID_CONTENTS,Ce):ae,j="FORBID_TAGS"in e?ky({},e.FORBID_TAGS,Ce):{},H="FORBID_ATTR"in e?ky({},e.FORBID_ATTR,Ce):{},re="USE_PROFILES"in e&&e.USE_PROFILES,$=!1!==e.ALLOW_ARIA_ATTR,q=!1!==e.ALLOW_DATA_ATTR,V=e.ALLOW_UNKNOWN_PROTOCOLS||!1,W=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,K=e.SAFE_FOR_TEMPLATES||!1,Y=e.WHOLE_DOCUMENT||!1,Q=e.RETURN_DOM||!1,J=e.RETURN_DOM_FRAGMENT||!1,Z=e.RETURN_TRUSTED_TYPE||!1,X=e.FORCE_BODY||!1,ee=!1!==e.SANITIZE_DOM,te=e.SANITIZE_NAMED_PROPS||!1,ne=!1!==e.KEEP_CONTENT,oe=e.IN_PLACE||!1,L=e.ALLOWED_URI_REGEXP||qy,ge=e.NAMESPACE||fe,z=e.CUSTOM_ELEMENT_HANDLING||{},e.CUSTOM_ELEMENT_HANDLING&&Ee(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(z.tagNameCheck=e.CUSTOM_ELEMENT_HANDLING.tagNameCheck),e.CUSTOM_ELEMENT_HANDLING&&Ee(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(z.attributeNameCheck=e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),e.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(z.allowCustomizedBuiltInElements=e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),K&&(q=!1),J&&(Q=!0),re&&(M=ky({},[...Dy]),F=[],!0===re.html&&(ky(M,Ry),ky(F,Ly)),!0===re.svg&&(ky(M,Ay),ky(F,My),ky(F,Fy)),!0===re.svgFilters&&(ky(M,Ty),ky(F,My),ky(F,Fy)),!0===re.mathMl&&(ky(M,By),ky(F,Iy),ky(F,Fy))),e.ADD_TAGS&&(M===I&&(M=Sy(M)),ky(M,e.ADD_TAGS,Ce)),e.ADD_ATTR&&(F===U&&(F=Sy(F)),ky(F,e.ADD_ATTR,Ce)),e.ADD_URI_SAFE_ATTR&&ky(de,e.ADD_URI_SAFE_ATTR,Ce),e.FORBID_CONTENTS&&(se===ae&&(se=Sy(se)),ky(se,e.FORBID_CONTENTS,Ce)),ne&&(M["#text"]=!0),Y&&ky(M,["html","head","body"]),M.table&&(ky(M,["tbody"]),delete j.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw xy('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw xy('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');C=e.TRUSTED_TYPES_POLICY,w=C.createHTML("")}else void 0===C&&(C=function(e,t){if("object"!=typeof e||"function"!=typeof e.createPolicy)return null;let n=null;const o="data-tt-policy-suffix";t&&t.hasAttribute(o)&&(n=t.getAttribute(o));const r="dompurify"+(n?"#"+n:"");try{return e.createPolicy(r,{createHTML:e=>e,createScriptURL:e=>e})}catch(e){return console.warn("TrustedTypes policy "+r+" could not be created."),null}}(g,r)),null!==C&&"string"==typeof w&&(w=C.createHTML(""));iy&&iy(e),we=e}},ke=ky({},["mi","mo","mn","ms","mtext"]),Se=ky({},["foreignobject","desc","title","annotation-xml"]),Ne=ky({},["title","style","font","a","script"]),Re=ky({},Ay);ky(Re,Ty),ky(Re,Oy);const Ae=ky({},By);ky(Ae,Py);const Te=function(e){gy(n.removed,{element:e});try{e.parentNode.removeChild(e)}catch(t){e.remove()}},Oe=function(e,t){try{gy(n.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){gy(n.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e&&!F[e])if(Q||J)try{Te(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},Be=function(e){let t,n;if(X)e="<remove></remove>"+e;else{const t=by(e,/^[\r\n\t ]+/);n=t&&t[0]}"application/xhtml+xml"===ve&&ge===fe&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");const o=C?C.createHTML(e):e;if(ge===fe)try{t=(new f).parseFromString(o,ve)}catch(e){}if(!t||!t.documentElement){t=x.createDocument(ge,"template",null);try{t.documentElement.innerHTML=pe?w:o}catch(e){}}const r=t.body||t.documentElement;return e&&n&&r.insertBefore(s.createTextNode(n),r.childNodes[0]||null),ge===fe?k.call(t,Y?"html":"body")[0]:Y?t.documentElement:r},Pe=function(e){return E.call(e.ownerDocument||e,e,c.SHOW_ELEMENT|c.SHOW_COMMENT|c.SHOW_TEXT,null,!1)},De=function(e){return"object"==typeof l?e instanceof l:e&&"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName},Le=function(e,t,o){N[e]&&my(N[e],(e=>{e.call(n,t,o,we)}))},Me=function(e){let t;if(Le("beforeSanitizeElements",e,null),(o=e)instanceof m&&("string"!=typeof o.nodeName||"string"!=typeof o.textContent||"function"!=typeof o.removeChild||!(o.attributes instanceof u)||"function"!=typeof o.removeAttribute||"function"!=typeof o.setAttribute||"string"!=typeof o.namespaceURI||"function"!=typeof o.insertBefore||"function"!=typeof o.hasChildNodes))return Te(e),!0;var o;const r=Ce(e.nodeName);if(Le("uponSanitizeElement",e,{tagName:r,allowedTags:M}),e.hasChildNodes()&&!De(e.firstElementChild)&&(!De(e.content)||!De(e.content.firstElementChild))&&wy(/<[/\w]/g,e.innerHTML)&&wy(/<[/\w]/g,e.textContent))return Te(e),!0;if(!M[r]||j[r]){if(!j[r]&&Fe(r)){if(z.tagNameCheck instanceof RegExp&&wy(z.tagNameCheck,r))return!1;if(z.tagNameCheck instanceof Function&&z.tagNameCheck(r))return!1}if(ne&&!se[r]){const t=y(e)||e.parentNode,n=v(e)||e.childNodes;if(n&&t)for(let o=n.length-1;o>=0;--o)t.insertBefore(h(n[o],!0),b(e))}return Te(e),!0}return e instanceof d&&!function(e){let t=y(e);t&&t.tagName||(t={namespaceURI:ge,tagName:"template"});const n=py(e.tagName),o=py(t.tagName);return!!he[e.namespaceURI]&&(e.namespaceURI===me?t.namespaceURI===fe?"svg"===n:t.namespaceURI===ue?"svg"===n&&("annotation-xml"===o||ke[o]):Boolean(Re[n]):e.namespaceURI===ue?t.namespaceURI===fe?"math"===n:t.namespaceURI===me?"math"===n&&Se[o]:Boolean(Ae[n]):e.namespaceURI===fe?!(t.namespaceURI===me&&!Se[o])&&!(t.namespaceURI===ue&&!ke[o])&&!Ae[n]&&(Ne[n]||!Re[n]):!("application/xhtml+xml"!==ve||!he[e.namespaceURI]))}(e)?(Te(e),!0):"noscript"!==r&&"noembed"!==r&&"noframes"!==r||!wy(/<\/no(script|embed|frames)/i,e.innerHTML)?(K&&3===e.nodeType&&(t=e.textContent,t=vy(t,R," "),t=vy(t,A," "),t=vy(t,T," "),e.textContent!==t&&(gy(n.removed,{element:e.cloneNode()}),e.textContent=t)),Le("afterSanitizeElements",e,null),!1):(Te(e),!0)},Ie=function(e,t,n){if(ee&&("id"===t||"name"===t)&&(n in s||n in xe))return!1;if(q&&!H[t]&&wy(O,t));else if($&&wy(B,t));else if(!F[t]||H[t]){if(!(Fe(e)&&(z.tagNameCheck instanceof RegExp&&wy(z.tagNameCheck,e)||z.tagNameCheck instanceof Function&&z.tagNameCheck(e))&&(z.attributeNameCheck instanceof RegExp&&wy(z.attributeNameCheck,t)||z.attributeNameCheck instanceof Function&&z.attributeNameCheck(t))||"is"===t&&z.allowCustomizedBuiltInElements&&(z.tagNameCheck instanceof RegExp&&wy(z.tagNameCheck,n)||z.tagNameCheck instanceof Function&&z.tagNameCheck(n))))return!1}else if(de[t]);else if(wy(L,vy(n,D,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==yy(n,"data:")||!ie[e])if(V&&!wy(P,vy(n,D,"")));else if(n)return!1;return!0},Fe=function(e){return e.indexOf("-")>0},Ue=function(e){let t,n,o,r;Le("beforeSanitizeAttributes",e,null);const{attributes:s}=e;if(!s)return;const a={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:F};for(r=s.length;r--;){t=s[r];const{name:i,namespaceURI:l}=t;n="value"===i?t.value:Cy(t.value);const d=n;if(o=Ce(i),a.attrName=o,a.attrValue=n,a.keepAttr=!0,a.forceKeepAttr=void 0,Le("uponSanitizeAttribute",e,a),n=a.attrValue,a.forceKeepAttr)continue;if(!a.keepAttr){Oe(i,e);continue}if(!W&&wy(/\/>/i,n)){Oe(i,e);continue}K&&(n=vy(n,R," "),n=vy(n,A," "),n=vy(n,T," "));const c=Ce(e.nodeName);if(Ie(c,o,n)){if(!te||"id"!==o&&"name"!==o||(Oe(i,e),n="user-content-"+n),C&&"object"==typeof g&&"function"==typeof g.getAttributeType)if(l);else switch(g.getAttributeType(c,o)){case"TrustedHTML":n=C.createHTML(n);break;case"TrustedScriptURL":n=C.createScriptURL(n)}if(n!==d)try{l?e.setAttributeNS(l,i,n):e.setAttribute(i,n)}catch(t){Oe(i,e)}}else Oe(i,e)}Le("afterSanitizeAttributes",e,null)},ze=function e(t){let n;const o=Pe(t);for(Le("beforeSanitizeShadowDOM",t,null);n=o.nextNode();)Le("uponSanitizeShadowNode",n,null),Me(n)||(n.content instanceof a&&e(n.content),Ue(n));Le("afterSanitizeShadowDOM",t,null)};return n.sanitize=function(e){let t,r,s,i,d=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(pe=!e,pe&&(e="\x3c!--\x3e"),"string"!=typeof e&&!De(e)){if("function"!=typeof e.toString)throw xy("toString is not a function");if("string"!=typeof(e=e.toString()))throw xy("dirty is not a string, aborting")}if(!n.isSupported)return e;if(G||_e(d),n.removed=[],"string"==typeof e&&(oe=!1),oe){if(e.nodeName){const t=Ce(e.nodeName);if(!M[t]||j[t])throw xy("root node is forbidden and cannot be sanitized in-place")}}else if(e instanceof l)t=Be("\x3c!----\x3e"),r=t.ownerDocument.importNode(e,!0),1===r.nodeType&&"BODY"===r.nodeName||"HTML"===r.nodeName?t=r:t.appendChild(r);else{if(!Q&&!K&&!Y&&-1===e.indexOf("<"))return C&&Z?C.createHTML(e):e;if(t=Be(e),!t)return Q?null:Z?w:""}t&&X&&Te(t.firstChild);const c=Pe(oe?e:t);for(;s=c.nextNode();)Me(s)||(s.content instanceof a&&ze(s.content),Ue(s));if(oe)return e;if(Q){if(J)for(i=_.call(t.ownerDocument);t.firstChild;)i.appendChild(t.firstChild);else i=t;return(F.shadowroot||F.shadowrootmode)&&(i=S.call(o,i,!0)),i}let u=Y?t.outerHTML:t.innerHTML;return Y&&M["!doctype"]&&t.ownerDocument&&t.ownerDocument.doctype&&t.ownerDocument.doctype.name&&wy(Ky,t.ownerDocument.doctype.name)&&(u="<!DOCTYPE "+t.ownerDocument.doctype.name+">\n"+u),K&&(u=vy(u,R," "),u=vy(u,A," "),u=vy(u,T," ")),C&&Z?C.createHTML(u):u},n.setConfig=function(e){_e(e),G=!0},n.clearConfig=function(){we=null,G=!1},n.isValidAttribute=function(e,t,n){we||_e({});const o=Ce(e),r=Ce(t);return Ie(o,r,n)},n.addHook=function(e,t){"function"==typeof t&&(N[e]=N[e]||[],gy(N[e],t))},n.removeHook=function(e){if(N[e])return fy(N[e])},n.removeHooks=function(e){N[e]&&(N[e]=[])},n.removeAllHooks=function(){N={}},n}();const Qy=Pt.each,Jy=Pt.trim,Zy=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],eC={ftp:21,http:80,https:443,mailto:25},tC=["img","video"],nC=(e,t,n)=>{const o=(e=>{try{return decodeURIComponent(e)}catch(t){return unescape(e)}})(t).replace(/\s/g,"");return!e.allow_script_urls&&(!!/((java|vb)script|mhtml):/i.test(o)||!e.allow_html_data_urls&&(/^data:image\//i.test(o)?((e,t)=>C(e)?!e:!C(t)||!H(tC,t))(e.allow_svg_data_urls,n)&&/^data:image\/svg\+xml/i.test(o):/^data:/i.test(o)))};class oC{static parseDataUri(e){let t;const n=decodeURIComponent(e).split(","),o=/data:([^;]+)/.exec(n[0]);return o&&(t=o[1]),{type:t,data:n[1]}}static isDomSafe(e,t,n={}){if(n.allow_script_urls)return!0;{const o=ea.decode(e).replace(/[\s\u0000-\u001F]+/g,"");return!nC(n,o,t)}}static getDocumentBaseUrl(e){var t;let n;return n=0!==e.protocol.indexOf("http")&&"file:"!==e.protocol?null!==(t=e.href)&&void 0!==t?t:"":e.protocol+"//"+e.host+e.pathname,/^[^:]+:\/\/\/?[^\/]+\//.test(n)&&(n=n.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,""),/[\/\\]$/.test(n)||(n+="/")),n}constructor(e,t={}){this.path="",this.directory="",e=Jy(e),this.settings=t;const n=t.base_uri,o=this;if(/^([\w\-]+):([^\/]{2})/i.test(e)||/^\s*#/.test(e))return void(o.source=e);const r=0===e.indexOf("//");if(0!==e.indexOf("/")||r||(e=(n&&n.protocol||"http")+"://mce_host"+e),!/^[\w\-]*:?\/\//.test(e)){const t=n?n.path:new oC(document.location.href).directory;if(""===(null==n?void 0:n.protocol))e="//mce_host"+o.toAbsPath(t,e);else{const r=/([^#?]*)([#?]?.*)/.exec(e);r&&(e=(n&&n.protocol||"http")+"://mce_host"+o.toAbsPath(t,r[1])+r[2])}}e=e.replace(/@@/g,"(mce_at)");const s=/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@\/]*):?([^:@\/]*))?@)?(\[[a-zA-Z0-9:.%]+\]|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/.exec(e);s&&Qy(Zy,((e,t)=>{let n=s[t];n&&(n=n.replace(/\(mce_at\)/g,"@@")),o[e]=n})),n&&(o.protocol||(o.protocol=n.protocol),o.userInfo||(o.userInfo=n.userInfo),o.port||"mce_host"!==o.host||(o.port=n.port),o.host&&"mce_host"!==o.host||(o.host=n.host),o.source=""),r&&(o.protocol="")}setPath(e){const t=/^(.*?)\/?(\w+)?$/.exec(e);t&&(this.path=t[0],this.directory=t[1],this.file=t[2]),this.source="",this.getURI()}toRelative(e){if("./"===e)return e;const t=new oC(e,{base_uri:this});if("mce_host"!==t.host&&this.host!==t.host&&t.host||this.port!==t.port||this.protocol!==t.protocol&&""!==t.protocol)return t.getURI();const n=this.getURI(),o=t.getURI();if(n===o||"/"===n.charAt(n.length-1)&&n.substr(0,n.length-1)===o)return n;let r=this.toRelPath(this.path,t.path);return t.query&&(r+="?"+t.query),t.anchor&&(r+="#"+t.anchor),r}toAbsolute(e,t){const n=new oC(e,{base_uri:this});return n.getURI(t&&this.isSameOrigin(n))}isSameOrigin(e){if(this.host==e.host&&this.protocol==e.protocol){if(this.port==e.port)return!0;const t=this.protocol?eC[this.protocol]:null;if(t&&(this.port||t)==(e.port||t))return!0}return!1}toRelPath(e,t){let n,o,r=0,s="";const a=e.substring(0,e.lastIndexOf("/")).split("/"),i=t.split("/");if(a.length>=i.length)for(n=0,o=a.length;n<o;n++)if(n>=i.length||a[n]!==i[n]){r=n+1;break}if(a.length<i.length)for(n=0,o=i.length;n<o;n++)if(n>=a.length||a[n]!==i[n]){r=n+1;break}if(1===r)return t;for(n=0,o=a.length-(r-1);n<o;n++)s+="../";for(n=r-1,o=i.length;n<o;n++)s+=n!==r-1?"/"+i[n]:i[n];return s}toAbsPath(e,t){let n=0;const o=/\/$/.test(t)?"/":"",r=e.split("/"),s=t.split("/"),a=[];Qy(r,(e=>{e&&a.push(e)}));const i=[];for(let e=s.length-1;e>=0;e--)0!==s[e].length&&"."!==s[e]&&(".."!==s[e]?n>0?n--:i.push(s[e]):n++);const l=a.length-n;let d;return d=l<=0?oe(i).join("/"):a.slice(0,l).join("/")+"/"+oe(i).join("/"),0!==d.indexOf("/")&&(d="/"+d),o&&d.lastIndexOf("/")!==d.length-1&&(d+=o),d}getURI(e=!1){let t;return this.source&&!e||(t="",e||(this.protocol?t+=this.protocol+"://":t+="//",this.userInfo&&(t+=this.userInfo+"@"),this.host&&(t+=this.host),this.port&&(t+=":"+this.port)),this.path&&(t+=this.path),this.query&&(t+="?"+this.query),this.anchor&&(t+="#"+this.anchor),this.source=t),this.source}}const rC=Pt.makeMap("src,href,data,background,action,formaction,poster,xlink:href"),sC="data-mce-type";let aC=0;const iC=(e,t,n,o,r)=>{var s,a,i,l;const d=t.validate,c=n.getSpecialElements();8===e.nodeType&&!t.allow_conditional_comments&&/^\[if/i.test(null!==(s=e.nodeValue)&&void 0!==s?s:"")&&(e.nodeValue=" "+e.nodeValue);const u=null!==(a=null==r?void 0:r.tagName)&&void 0!==a?a:e.nodeName.toLowerCase();if("html"!==o&&n.isValid(o))return void(C(r)&&(r.allowedTags[u]=!0));if(1!==e.nodeType||"body"===u)return;const f=yn(e),g=nn(f,sC),p=en(f,"data-mce-bogus");if(!g&&m(p))return void("all"===p?xo(f):Eo(f));const h=n.getElementRule(u);if(!d||h){if(C(r)&&(r.allowedTags[u]=!0),d&&h&&!g){if(V(null!==(i=h.attributesForced)&&void 0!==i?i:[],(e=>{Jt(f,e.name,"{$uid}"===e.value?"mce_"+aC++:e.value)})),V(null!==(l=h.attributesDefault)&&void 0!==l?l:[],(e=>{nn(f,e.name)||Jt(f,e.name,"{$uid}"===e.value?"mce_"+aC++:e.value)})),h.attributesRequired&&!$(h.attributesRequired,(e=>nn(f,e))))return void Eo(f);if(h.removeEmptyAttrs&&(e=>{const t=e.dom.attributes;return null==t||0===t.length})(f))return void Eo(f);h.outputName&&h.outputName!==u&&((e,t)=>{const n=((e,t)=>{const n=bn(t),o=rn(e);return Zt(n,o),n})(e,t);ho(e,n);const o=Mn(e);Co(n,o),xo(e)})(f,h.outputName)}}else Ee(c,u)?xo(f):Eo(f)},lC=(e,t,n,o,r,s)=>"html"!==n&&!ps(o)||!(r in rC&&nC(e,s,o))&&(!e.validate||t.isValid(o,r)||He(r,"data-")||He(r,"aria-")),dC=(e,t)=>e.hasAttribute(sC)&&("id"===t||"class"===t||"style"===t),cC=(e,t)=>e in t.getBoolAttrs(),uC=(e,t,n,o)=>{const{attributes:r}=e;for(let s=r.length-1;s>=0;s--){const a=r[s],i=a.name,l=a.value;lC(t,n,o,e.tagName.toLowerCase(),i,l)||dC(e,i)?cC(i,n)&&e.setAttribute(i,i):e.removeAttribute(i)}},mC=(e,t,n)=>{const o=Xy();return o.addHook("uponSanitizeElement",((o,r)=>{iC(o,e,t,n.track(o),r)})),o.addHook("uponSanitizeAttribute",((o,r)=>{((e,t,n,o,r)=>{const s=e.tagName.toLowerCase(),{attrName:a,attrValue:i}=r;r.keepAttr=lC(t,n,o,s,a,i),r.keepAttr?(r.allowedAttributes[a]=!0,cC(a,n)&&(r.attrValue=a),t.allow_svg_data_urls&&He(i,"data:image/svg+xml")&&(r.forceKeepAttr=!0)):dC(e,a)&&(r.forceKeepAttr=!0)})(o,e,t,n.current(),r)})),o},fC=e=>{const t=["type","href","role","arcrole","title","show","actuate","label","from","to"].map((e=>`xlink:${e}`)),n={IN_PLACE:!0,USE_PROFILES:{html:!0,svg:!0,svgFilters:!0},ALLOWED_ATTR:t};return Xy().sanitize(e,n),e.innerHTML},gC=Pt.makeMap,pC=Pt.extend,hC=(e,t,n,o)=>{const r=e.name,s=r in n&&"title"!==r&&"textarea"!==r,a=t.childNodes;for(let t=0,r=a.length;t<r;t++){const r=a[t],i=new Wg(r.nodeName.toLowerCase(),r.nodeType);if(qo(r)){const e=r.attributes;for(let t=0,n=e.length;t<n;t++){const n=e[t];i.attr(n.name,n.value)}ps(i.name)&&(o(r),i.value=r.innerHTML)}else er(r)?(i.value=r.data,s&&(i.raw=!0)):(or(r)||tr(r)||nr(r))&&(i.value=r.data);ps(i.name)||hC(i,r,n,o),e.append(i)}},bC=(e={},t=ua())=>{const n=qv(),o=qv(),r={validate:!0,root_name:"body",sanitize:!0,...e},s=new DOMParser,a=((e,t)=>{const n=(()=>{let e=[];const t=()=>e[e.length-1];return{track:n=>{hs(n)&&e.push(n);let o=t();return o&&!o.contains(n)&&(e.pop(),o=t()),bs(o)},current:()=>bs(t()),reset:()=>{e=[]}}})();if(e.sanitize){const o=mC(e,t,n),r=(t,r)=>{o.sanitize(t,((e,t)=>{const n={IN_PLACE:!0,ALLOW_UNKNOWN_PROTOCOLS:!0,ALLOWED_TAGS:["#comment","#cdata-section","body"],ALLOWED_ATTR:[]};return n.PARSER_MEDIA_TYPE=t,e.allow_script_urls?n.ALLOWED_URI_REGEXP=/.*/:e.allow_html_data_urls&&(n.ALLOWED_URI_REGEXP=/^(?!(\w+script|mhtml):)/i),n})(e,r)),o.removed=[],n.reset()};return{sanitizeHtmlElement:r,sanitizeNamespaceElement:fC}}return{sanitizeHtmlElement:(o,r)=>{const s=document.createNodeIterator(o,NodeFilter.SHOW_ELEMENT|NodeFilter.SHOW_COMMENT|NodeFilter.SHOW_TEXT);let a;for(;a=s.nextNode();){const o=n.track(a);iC(a,e,t,o),qo(a)&&uC(a,e,t,o)}n.reset()},sanitizeNamespaceElement:_}})(r,t),i=n.addFilter,l=n.getFilters,d=n.removeFilter,c=o.addFilter,u=o.getFilters,f=o.removeFilter,g=(e,n)=>{const o=m(n.attr(sC)),r=1===n.type&&!Ee(e,n.name)&&!Bs(t,n)&&!ps(n.name);return 3===n.type||r&&!o},p={schema:t,addAttributeFilter:c,getAttributeFilters:u,removeAttributeFilter:f,addNodeFilter:i,getNodeFilters:l,removeNodeFilter:d,parse:(e,n={})=>{var o;const i=r.validate,d=null!==(o=n.context)&&void 0!==o?o:r.root_name,c=((e,n,o="html")=>{const r="xhtml"===o?"application/xhtml+xml":"text/html",i=Ee(t.getSpecialElements(),n.toLowerCase()),l=i?`<${n}>${e}</${n}>`:e,d="xhtml"===o?`<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>${l}</body></html>`:`<body>${l}</body>`,c=s.parseFromString(d,r).body;return a.sanitizeHtmlElement(c,r),i?c.firstChild:c})(e,d,n.format);ks(t,c);const m=new Wg(d,11);hC(m,c,t.getSpecialElements(),a.sanitizeNamespaceElement),c.innerHTML="";const[f,p]=((e,t,n,o)=>{const r=n.validate,s=t.getNonEmptyElements(),a=t.getWhitespaceElements(),i=pC(gC("script,style,head,html,body,title,meta,param"),t.getBlockElements()),l=da(t),d=/[ \t\r\n]+/g,c=/^[ \t\r\n]+/,u=/[ \t\r\n]+$/,m=e=>{let t=e.parent;for(;C(t);){if(t.name in a)return!0;t=t.parent}return!1},f=n=>n.name in i||Bs(t,n)||ps(n.name)&&n.parent===e,g=(t,n)=>{const r=n?t.prev:t.next;return!C(r)&&!y(t.parent)&&f(t.parent)&&(t.parent!==e||!0===o.isRootContent)};return[e=>{var t;if(3===e.type&&!m(e)){let n=null!==(t=e.value)&&void 0!==t?t:"";n=n.replace(d," "),(((e,t)=>C(e)&&(t(e)||"br"===e.name))(e.prev,f)||g(e,!0))&&(n=n.replace(c,"")),0===n.length?e.remove():e.value=n}},e=>{var i;if(1===e.type){const i=t.getElementRule(e.name);if(r&&i){const r=vb(t,s,a,e);i.paddInEmptyBlock&&r&&(e=>{let n=e;for(;C(n);){if(n.name in l)return vb(t,s,a,n);n=n.parent}return!1})(e)?hb(n,o,f,e):i.removeEmpty&&r?f(e)?e.remove():e.unwrap():i.paddEmpty&&(r||(e=>{var t;return bb(e,"#text")&&(null===(t=null==e?void 0:e.firstChild)||void 0===t?void 0:t.value)===br})(e))&&hb(n,o,f,e)}}else if(3===e.type&&!m(e)){let t=null!==(i=e.value)&&void 0!==i?i:"";(e.next&&f(e.next)||g(e,!1))&&(t=t.replace(u,"")),0===t.length?e.remove():e.value=t}}]})(m,t,r,n),h=[],b=i?e=>((e,n)=>{xb(t,e)&&n.push(e)})(e,h):_,v={nodes:{},attributes:{}},w=e=>fb(l(),u(),e,v);if(((e,t,n)=>{const o=[];for(let n=e,r=n;n;r=n,n=n.walk()){const s=n;V(t,(e=>e(s))),y(s.parent)&&s!==e?n=r:o.push(s)}for(let e=o.length-1;e>=0;e--){const t=o[e];V(n,(e=>e(t)))}})(m,[f,w],[p,b]),h.reverse(),i&&h.length>0)if(n.context){const{pass:e,fail:o}=K(h,(e=>e.parent===m));wb(o,t,m,w),n.invalid=e.length>0}else wb(h,t,m,w);const x=((e,t)=>{var n;const o=null!==(n=t.forced_root_block)&&void 0!==n?n:e.forced_root_block;return!1===o?"":!0===o?"p":o})(r,n);return x&&("body"===m.name||n.isRootContent)&&((e,n)=>{const o=pC(gC("script,style,head,html,body,title,meta,param"),t.getBlockElements()),s=/^[ \t\r\n]+/,a=/[ \t\r\n]+$/;let i=e.firstChild,l=null;const d=e=>{var t,n;e&&(i=e.firstChild,i&&3===i.type&&(i.value=null===(t=i.value)||void 0===t?void 0:t.replace(s,"")),i=e.lastChild,i&&3===i.type&&(i.value=null===(n=i.value)||void 0===n?void 0:n.replace(a,"")))};if(t.isValidChild(e.name,n.toLowerCase())){for(;i;){const t=i.next;g(o,i)?(l||(l=new Wg(n,1),l.attr(r.forced_root_block_attrs),e.insert(l,i)),l.append(i)):(d(l),l=null),i=t}d(l)}})(m,x),n.invalid||gb(v,n),m}};return ty(p,r),((e,t,n)=>{t.inline_styles&&Vv(e,t,n)})(p,r,t),p},vC=(e,t,n)=>{const o=(e=>Bb(e)?up({validate:!1}).serialize(e):e)(e),r=t(o);if(r.isDefaultPrevented())return r;if(Bb(e)){if(r.content!==o){const t=bC({validate:!1,forced_root_block:!1,...n}).parse(r.content,{context:e.name});return{...r,content:t}}return{...r,content:e}}return r},yC=(e,t)=>{if(t.no_events)return pl.value(t);{const n=((e,t)=>e.dispatch("BeforeGetContent",t))(e,t);return n.isDefaultPrevented()?pl.error(rf(e,{content:"",...n}).content):pl.value(n)}},CC=(e,t,n)=>{if(n.no_events)return t;{const o=vC(t,(t=>rf(e,{...n,content:t})),{sanitize:fc(e),sandbox_iframes:Cc(e)});return o.content}},wC=(e,t)=>{if(t.no_events)return pl.value(t);{const n=vC(t.content,(n=>((e,t)=>e.dispatch("BeforeSetContent",t))(e,{...t,content:n})),{sanitize:fc(e),sandbox_iframes:Cc(e)});return n.isDefaultPrevented()?(of(e,n),pl.error(void 0)):pl.value(n)}},xC=(e,t,n)=>{n.no_events||of(e,{...n,content:t})},EC=(e,t,n)=>({element:e,width:t,rows:n}),_C=(e,t)=>({element:e,cells:t}),kC=(e,t)=>({x:e,y:t}),SC=(e,t)=>tn(e,t).bind(Xe).getOr(1),NC=(e,t,n)=>{const o=e.rows;return!!(o[n]?o[n].cells:[])[t]},RC=e=>X(e,((e,t)=>t.cells.length>e?t.cells.length:e),0),AC=(e,t)=>{const n=e.rows;for(let e=0;e<n.length;e++){const o=n[e].cells;for(let n=0;n<o.length;n++)if(_n(o[n],t))return I.some(kC(n,e))}return I.none()},TC=(e,t,n,o,r)=>{const s=[],a=e.rows;for(let e=n;e<=r;e++){const n=a[e].cells,r=t<o?n.slice(t,o+1):n.slice(o,t+1);s.push(_C(a[e].element,r))}return s},OC=e=>((e,t)=>{const n=fi(e.element),o=bn("tbody");return Co(o,t),vo(n,o),n})(e,(e=>q(e.rows,(e=>{const t=q(e.cells,(e=>{const t=gi(e);return on(t,"colspan"),on(t,"rowspan"),t})),n=fi(e.element);return Co(n,t),n})))(e)),BC=(e,t,n)=>{const o=yn(t.commonAncestorContainer),r=Bp(o,e),s=Y(r,(e=>n.isWrapper(Ht(e)))),a=((e,t)=>J(e,(e=>"li"===Ht(e)&&rm(e,t))).fold(N([]),(t=>(e=>J(e,(e=>"ul"===Ht(e)||"ol"===Ht(e))))(e).map((e=>{const t=bn(Ht(e)),n=ye(fo(e),((e,t)=>He(t,"list-style")));return lo(t,n),[bn("li"),t]})).getOr([]))))(r,t),i=s.concat(a.length?a:(e=>Sr(e)?An(e).filter(kr).fold(N([]),(t=>[e,t])):kr(e)?[e]:[])(o));return q(i,fi)},PC=()=>Sf([]),DC=(e,t)=>((e,t)=>eo(t,"table",T(_n,e)))(e,t[0]).bind((e=>{const n=t[0],o=t[t.length-1],r=(e=>{const t=EC(fi(e),0,[]);return V(Uo(e,"tr"),((e,n)=>{V(Uo(e,"td,th"),((o,r)=>{((e,t,n,o,r)=>{const s=SC(r,"rowspan"),a=SC(r,"colspan"),i=e.rows;for(let e=n;e<n+s;e++){i[e]||(i[e]=_C(gi(o),[]));for(let o=t;o<t+a;o++)i[e].cells[o]=e===n&&o===t?r:fi(r)}})(t,((e,t,n)=>{for(;NC(e,t,n);)t++;return t})(t,r,n),n,e,o)}))})),EC(t.element,RC(t.rows),t.rows)})(e);return((e,t,n)=>AC(e,t).bind((t=>AC(e,n).map((n=>((e,t,n)=>{const o=t.x,r=t.y,s=n.x,a=n.y,i=r<a?TC(e,o,r,s,a):TC(e,o,a,s,r);return EC(e.element,RC(i),i)})(e,t,n))))))(r,n,o).map((e=>Sf([OC(e)])))})).getOrThunk(PC),LC=(e,t,n)=>{const o=Zu(t,e);return o.length>0?DC(e,o):((e,t,n)=>t.length>0&&t[0].collapsed?PC():((e,t,n)=>((e,t)=>{const n=X(t,((e,t)=>(vo(t,e),t)),e);return t.length>0?Sf([n]):n})(yn(t.cloneContents()),BC(e,t,n)))(e,t[0],n))(e,t,n)},MC=(e,t)=>t>=0&&t<e.length&&Xu(e.charAt(t)),IC=e=>Dr(e.innerText),FC=e=>qo(e)?e.outerHTML:er(e)?ea.encodeRaw(e.data,!1):or(e)?"\x3c!--"+e.data+"--\x3e":"",UC=(e,t)=>(((e,t)=>{let n=0;V(e,(e=>{0===e[0]?n++:1===e[0]?(((e,t,n)=>{const o=(e=>{let t;const n=document.createElement("div"),o=document.createDocumentFragment();for(e&&(n.innerHTML=e);t=n.firstChild;)o.appendChild(t);return o})(t);if(e.hasChildNodes()&&n<e.childNodes.length){const t=e.childNodes[n];e.insertBefore(o,t)}else e.appendChild(o)})(t,e[1],n),n++):2===e[0]&&((e,t)=>{if(e.hasChildNodes()&&t<e.childNodes.length){const n=e.childNodes[t];e.removeChild(n)}})(t,n)}))})(((e,t)=>{const n=e.length+t.length+2,o=new Array(n),r=new Array(n),s=(n,o,r,a,l)=>{const d=i(n,o,r,a);if(null===d||d.start===o&&d.diag===o-a||d.end===n&&d.diag===n-r){let s=n,i=r;for(;s<o||i<a;)s<o&&i<a&&e[s]===t[i]?(l.push([0,e[s]]),++s,++i):o-n>a-r?(l.push([2,e[s]]),++s):(l.push([1,t[i]]),++i)}else{s(n,d.start,r,d.start-d.diag,l);for(let t=d.start;t<d.end;++t)l.push([0,e[t]]);s(d.end,o,d.end-d.diag,a,l)}},a=(n,o,r,s)=>{let a=n;for(;a-o<s&&a<r&&e[a]===t[a-o];)++a;return((e,t,n)=>({start:e,end:t,diag:n}))(n,a,o)},i=(n,s,i,l)=>{const d=s-n,c=l-i;if(0===d||0===c)return null;const u=d-c,m=c+d,f=(m%2==0?m:m+1)/2;let g,p,h,b,v;for(o[1+f]=n,r[1+f]=s+1,g=0;g<=f;++g){for(p=-g;p<=g;p+=2){for(h=p+f,p===-g||p!==g&&o[h-1]<o[h+1]?o[h]=o[h+1]:o[h]=o[h-1]+1,b=o[h],v=b-n+i-p;b<s&&v<l&&e[b]===t[v];)o[h]=++b,++v;if(u%2!=0&&u-g<=p&&p<=u+g&&r[h-u]<=o[h])return a(r[h-u],p+n-i,s,l)}for(p=u-g;p<=u+g;p+=2){for(h=p+f-u,p===u-g||p!==u+g&&r[h+1]<=r[h-1]?r[h]=r[h+1]-1:r[h]=r[h-1],b=r[h]-1,v=b-n+i-p;b>=n&&v>=i&&e[b]===t[v];)r[h]=b--,v--;if(u%2==0&&-g<=p&&p<=g&&r[h]<=o[h+u])return a(r[h],p+n-i,s,l)}}return null},l=[];return s(0,e.length,0,t.length,l),l})(q(ce(t.childNodes),FC),e),t),t),zC=De((()=>document.implementation.createHTMLDocument("undo"))),jC=e=>{const t=e.serializer.getTempAttrs(),n=sp(e.getBody(),t);return(e=>null!==e.querySelector("iframe"))(n)?{type:"fragmented",fragments:Y(q(ce(n.childNodes),k(Dr,FC)),(e=>e.length>0)),content:"",bookmark:null,beforeBookmark:null}:{type:"complete",fragments:null,content:Dr(n.innerHTML),bookmark:null,beforeBookmark:null}},HC=(e,t,n)=>{const o=n?t.beforeBookmark:t.bookmark;"fragmented"===t.type?UC(t.fragments,e.getBody()):e.setContent(t.content,{format:"raw",no_selection:!C(o)||!Iu(o)||!o.isFakeCaret}),o&&(e.selection.moveToBookmark(o),e.selection.scrollIntoView())},$C=e=>"fragmented"===e.type?e.fragments.join(""):e.content,qC=e=>{const t=bn("body",zC());return So(t,$C(e)),V(Uo(t,"*[data-mce-bogus]"),Eo),ko(t)},VC=(e,t)=>!(!e||!t)&&(!!((e,t)=>$C(e)===$C(t))(e,t)||((e,t)=>qC(e)===qC(t))(e,t)),WC=e=>0===e.get(),KC=(e,t,n)=>{WC(n)&&(e.typing=t)},YC=(e,t)=>{e.typing&&(KC(e,!1,t),e.add())},GC=e=>({init:{bindEvents:_},undoManager:{beforeChange:(t,n)=>((e,t,n)=>{WC(t)&&n.set(ml(e.selection))})(e,t,n),add:(t,n,o,r,s,a)=>((e,t,n,o,r,s,a)=>{const i=jC(e),l=Pt.extend(s||{},i);if(!WC(o)||e.removed)return null;const d=t.data[n.get()];if(e.dispatch("BeforeAddUndo",{level:l,lastLevel:d,originalEvent:a}).isDefaultPrevented())return null;if(d&&VC(d,l))return null;t.data[n.get()]&&r.get().each((e=>{t.data[n.get()].beforeBookmark=e}));const c=Td(e);if(c&&t.data.length>c){for(let e=0;e<t.data.length-1;e++)t.data[e]=t.data[e+1];t.data.length--,n.set(t.data.length)}l.bookmark=ml(e.selection),n.get()<t.data.length-1&&(t.data.length=n.get()+1),t.data.push(l),n.set(t.data.length-1);const u={level:l,lastLevel:d,originalEvent:a};return n.get()>0?(e.setDirty(!0),e.dispatch("AddUndo",u),e.dispatch("change",u)):e.dispatch("AddUndo",u),l})(e,t,n,o,r,s,a),undo:(t,n,o)=>((e,t,n,o)=>{let r;return t.typing&&(t.add(),t.typing=!1,KC(t,!1,n)),o.get()>0&&(o.set(o.get()-1),r=t.data[o.get()],HC(e,r,!0),e.setDirty(!0),e.dispatch("Undo",{level:r})),r})(e,t,n,o),redo:(t,n)=>((e,t,n)=>{let o;return t.get()<n.length-1&&(t.set(t.get()+1),o=n[t.get()],HC(e,o,!1),e.setDirty(!0),e.dispatch("Redo",{level:o})),o})(e,t,n),clear:(t,n)=>((e,t,n)=>{t.data=[],n.set(0),t.typing=!1,e.dispatch("ClearUndos")})(e,t,n),reset:e=>(e=>{e.clear(),e.add()})(e),hasUndo:(t,n)=>((e,t,n)=>n.get()>0||t.typing&&t.data[0]&&!VC(jC(e),t.data[0]))(e,t,n),hasRedo:(e,t)=>((e,t)=>t.get()<e.data.length-1&&!e.typing)(e,t),transact:(e,t,n)=>((e,t,n)=>(YC(e,t),e.beforeChange(),e.ignore(n),e.add()))(e,t,n),ignore:(e,t)=>((e,t)=>{try{e.set(e.get()+1),t()}finally{e.set(e.get()-1)}})(e,t),extra:(t,n,o,r)=>((e,t,n,o,r)=>{if(t.transact(o)){const o=t.data[n.get()].bookmark,s=t.data[n.get()-1];HC(e,s,!0),t.transact(r)&&(t.data[n.get()-1].beforeBookmark=o)}})(e,t,n,o,r)},formatter:{match:(t,n,o,r)=>Hb(e,t,n,o,r),matchAll:(t,n)=>((e,t,n)=>{const o=[],r={},s=e.selection.getStart();return e.dom.getParent(s,(s=>{for(let a=0;a<t.length;a++){const i=t[a];!r[i]&&jb(e,s,i,n)&&(r[i]=!0,o.push(i))}}),e.dom.getRoot()),o})(e,t,n),matchNode:(t,n,o,r)=>jb(e,t,n,o,r),canApply:t=>((e,t)=>{const n=e.formatter.get(t),o=e.dom;if(n&&e.selection.isEditable()){const t=e.selection.getStart(),r=Em(o,t);for(let e=n.length-1;e>=0;e--){const t=n[e];if(!Sm(t))return!0;for(let e=r.length-1;e>=0;e--)if(o.is(r[e],t.selector))return!0}}return!1})(e,t),closest:t=>((e,t)=>{const n=t=>_n(t,yn(e.getBody()));return I.from(e.selection.getStart(!0)).bind((o=>Lb(yn(o),(n=>ue(t,(t=>((t,n)=>jb(e,t.dom,n)?I.some(n):I.none())(n,t)))),n))).getOrNull()})(e,t),apply:(t,n,o)=>Iv(e,t,n,o),remove:(t,n,o,r)=>Ov(e,t,n,o,r),toggle:(t,n,o)=>((e,t,n,o)=>{const r=e.formatter.get(t);r&&(!Hb(e,t,n,o)||"toggle"in r[0]&&!r[0].toggle?Iv(e,t,n,o):Ov(e,t,n,o))})(e,t,n,o),formatChanged:(t,n,o,r,s)=>((e,t,n,o,r,s)=>(((e,t,n,o,r,s)=>{const a=t.get();V(n.split(","),(t=>{const n=xe(a,t).getOrThunk((()=>{const e={withSimilar:{state:$a(!1),similar:!0,callbacks:[]},withoutSimilar:{state:$a(!1),similar:!1,callbacks:[]},withVars:[]};return a[t]=e,e})),i=()=>{const n=jv(e);return zv(e,n,t,r,s).isSome()};if(v(s)){const e=r?n.withSimilar:n.withoutSimilar;e.callbacks.push(o),1===e.callbacks.length&&e.state.set(i())}else n.withVars.push({state:$a(i()),similar:r,vars:s,callback:o})})),t.set(a)})(e,t,n,o,r,s),{unbind:()=>((e,t,n)=>{const o=e.get();V(t.split(","),(e=>xe(o,e).each((t=>{o[e]={withSimilar:{...t.withSimilar,callbacks:Y(t.withSimilar.callbacks,(e=>e!==n))},withoutSimilar:{...t.withoutSimilar,callbacks:Y(t.withoutSimilar.callbacks,(e=>e!==n))},withVars:Y(t.withVars,(e=>e.callback!==n))}})))),e.set(o)})(t,n,o)}))(e,t,n,o,r,s)},editor:{getContent:t=>((e,t)=>I.from(e.getBody()).fold(N("tree"===t.format?new Wg("body",11):""),(n=>lp(e,t,n))))(e,t),setContent:(t,n)=>((e,t,n)=>I.from(e.getBody()).map((o=>Bb(t)?((e,t,n,o)=>{pb(e.parser.getNodeFilters(),e.parser.getAttributeFilters(),n);const r=up({validate:!1},e.schema).serialize(n),s=Dr(Ar(yn(t))?r:Pt.trim(r));return Pb(e,s,o.no_selection),{content:n,html:s}})(e,o,t,n):((e,t,n,o)=>{if(0===(n=Dr(n)).length||/^\s+$/.test(n)){const r='<br data-mce-bogus="1">';"TABLE"===t.nodeName?n="<tr><td>"+r+"</td></tr>":/^(UL|OL)$/.test(t.nodeName)&&(n="<li>"+r+"</li>");const s=Il(e);return e.schema.isValidChild(t.nodeName.toLowerCase(),s.toLowerCase())?(n=r,n=e.dom.createHTML(s,Fl(e),n)):n||(n=r),Pb(e,n,o.no_selection),{content:n,html:n}}{"raw"!==o.format&&(n=up({validate:!1},e.schema).serialize(e.parser.parse(n,{isRootContent:!0,insert:!0})));const r=Ar(yn(t))?n:Pt.trim(n);return Pb(e,r,o.no_selection),{content:r,html:r}}})(e,o,t,n))).getOr({content:t,html:Bb(n.content)?"":n.content}))(e,t,n),insertContent:(t,n)=>Ob(e,t,n),addVisual:t=>((e,t)=>{const n=e.dom,o=C(t)?t:e.getBody();V(n.select("table,a",o),(t=>{switch(t.nodeName){case"TABLE":const o=Ud(e),r=n.getAttrib(t,"border");r&&"0"!==r||!e.hasVisual?n.removeClass(t,o):n.addClass(t,o);break;case"A":if(!n.getAttrib(t,"href")){const o=n.getAttrib(t,"name")||t.id,r=zd(e);o&&e.hasVisual?n.addClass(t,r):n.removeClass(t,r)}}})),e.dispatch("VisualAid",{element:t,hasVisual:e.hasVisual})})(e,t)},selection:{getContent:(t,n)=>((e,t,n={})=>{const o=((e,t)=>({...e,format:t,get:!0,selection:!0,getInner:!0}))(n,t);return yC(e,o).fold(R,(t=>{const n=((e,t)=>{if("text"===t.format)return(e=>I.from(e.selection.getRng()).map((t=>{var n;const o=I.from(e.dom.getParent(t.commonAncestorContainer,e.dom.isBlock)),r=e.getBody(),s=(e=>e.map((e=>e.nodeName)).getOr("div").toLowerCase())(o),a=yn(t.cloneContents());ap(a),ip(a);const i=e.dom.add(r,s,{"data-mce-bogus":"all",style:"overflow: hidden; opacity: 0;"},a.dom),l=IC(i),d=Dr(null!==(n=i.textContent)&&void 0!==n?n:"");if(e.dom.remove(i),MC(d,0)||MC(d,d.length-1)){const e=o.getOr(r),t=IC(e),n=t.indexOf(l);return-1===n?l:(MC(t,n-1)?" ":"")+l+(MC(t,n+l.length)?" ":"")}return l})).getOr(""))(e);{const n=((e,t)=>{const n=e.selection.getRng(),o=e.dom.create("body"),r=e.selection.getSel(),s=Mg(e,Ju(r)),a=t.contextual?LC(yn(e.getBody()),s,e.schema).dom:n.cloneContents();return a&&o.appendChild(a),e.selection.serializer.serialize(o,t)})(e,t);return"tree"===t.format?n:e.selection.isCollapsed()?"":n}})(e,t);return CC(e,n,t)}))})(e,t,n)},autocompleter:{addDecoration:t=>zg(e,t),removeDecoration:()=>((e,t)=>jg(t).each((t=>{const n=e.selection.getBookmark();Eo(t),e.selection.moveToBookmark(n)})))(e,yn(e.getBody()))},raw:{getModel:()=>I.none()}}),XC=e=>Ee(e.plugins,"rtc"),QC=e=>e.rtcInstance?e.rtcInstance:GC(e),JC=e=>{const t=e.rtcInstance;if(t)return t;throw new Error("Failed to get RTC instance not yet initialized.")},ZC=e=>JC(e).init.bindEvents(),ew=e=>0===e.dom.length?(xo(e),I.none()):I.some(e),tw=(e,t,n,o,r)=>{e.bind((e=>((o?ch:dh)(e.dom,o?e.dom.length:0,r),t.filter(Kt).map((t=>((e,t,n,o,r)=>{const s=e.dom,a=t.dom,i=o?s.length:a.length;o?(uh(s,a,r,!1,!o),n.setStart(a,i)):(uh(a,s,r,!1,!o),n.setEnd(a,i))})(e,t,n,o,r)))))).orThunk((()=>{const e=((e,t)=>e.filter((e=>Jm.isBookmarkNode(e.dom))).bind(t?Pn:Bn))(t,o).or(t).filter(Kt);return e.map((e=>((e,t,n)=>{An(e).each((o=>{const r=e.dom;t&&eh(o,Vi(r,0),n)?dh(r,0,n):!t&&th(o,Vi(r,r.length),n)&&ch(r,r.length,n)}))})(e,o,r)))}))},nw=(e,t,n)=>{if(Ee(e,t)){const o=Y(e[t],(e=>e!==n));0===o.length?delete e[t]:e[t]=o}};const ow=e=>!(!e||!e.ownerDocument)&&kn(yn(e.ownerDocument),yn(e)),rw=(e,t,n,o)=>{let r,s;const{selectorChangedWithUnbind:a}=((e,t)=>{let n,o;const r=(t,n)=>J(n,(n=>e.is(n,t))),s=t=>e.getParents(t,void 0,e.getRoot());return{selectorChangedWithUnbind:(e,a)=>(n||(n={},o={},t.on("NodeChange",(e=>{const t=e.element,a=s(t),i={};ge(n,((e,t)=>{r(t,a).each((n=>{o[t]||(V(e,(e=>{e(!0,{node:n,selector:t,parents:a})})),o[t]=e),i[t]=e}))})),ge(o,((e,n)=>{i[n]||(delete o[n],V(e,(e=>{e(!1,{node:t,selector:n,parents:a})})))}))}))),n[e]||(n[e]=[]),n[e].push(a),r(e,s(t.selection.getStart())).each((()=>{o[e]=n[e]})),{unbind:()=>{nw(n,e,a),nw(o,e,a)}})}})(e,o),i=(e,t)=>((e,t,n={})=>{const o=((e,t)=>({format:"html",...e,set:!0,selection:!0,content:t}))(n,t);wC(e,o).each((t=>{const n=((e,t)=>{if("raw"!==t.format){const n=e.selection.getRng(),o=e.dom.getParent(n.commonAncestorContainer,e.dom.isBlock),r=o?{context:o.nodeName.toLowerCase()}:{},s=e.parser.parse(t.content,{forced_root_block:!1,...r,...t});return up({validate:!1},e.schema).serialize(s)}return t.content})(e,t),o=e.selection.getRng();((e,t,n)=>{const o=I.from(t.firstChild).map(yn),r=I.from(t.lastChild).map(yn);e.deleteContents(),e.insertNode(t);const s=o.bind(Bn).filter(Kt).bind(ew),a=r.bind(Pn).filter(Kt).bind(ew);tw(s,o,e,!0,n),tw(a,r,e,!1,n),e.collapse(!1)})(o,o.createContextualFragment(n),e.schema),e.selection.setRng(o),sg(e,o),xC(e,n,t)}))})(o,e,t),l=e=>{const t=c();t.collapse(!!e),u(t)},d=()=>t.getSelection?t.getSelection():t.document.selection,c=()=>{let n;const a=(e,t,n)=>{try{return t.compareBoundaryPoints(e,n)}catch(e){return-1}},i=t.document;if(C(o.bookmark)&&!Rg(o)){const e=hg(o);if(e.isSome())return e.map((e=>Mg(o,[e])[0])).getOr(i.createRange())}try{const e=d();e&&!$o(e.anchorNode)&&(n=e.rangeCount>0?e.getRangeAt(0):i.createRange(),n=Mg(o,[n])[0])}catch(e){}if(n||(n=i.createRange()),rr(n.startContainer)&&n.collapsed){const t=e.getRoot();n.setStart(t,0),n.setEnd(t,0)}return r&&s&&(0===a(n.START_TO_START,n,r)&&0===a(n.END_TO_END,n,r)?n=s:(r=null,s=null)),n},u=(e,t)=>{if(!(e=>!!e&&ow(e.startContainer)&&ow(e.endContainer))(e))return;const n=d();if(e=o.dispatch("SetSelectionRange",{range:e,forward:t}).range,n){s=e;try{n.removeAllRanges(),n.addRange(e)}catch(e){}!1===t&&n.extend&&(n.collapse(e.endContainer,e.endOffset),n.extend(e.startContainer,e.startOffset)),r=n.rangeCount>0?n.getRangeAt(0):null}if(!e.collapsed&&e.startContainer===e.endContainer&&(null==n?void 0:n.setBaseAndExtent)&&e.endOffset-e.startOffset<2&&e.startContainer.hasChildNodes()){const t=e.startContainer.childNodes[e.startOffset];t&&"IMG"===t.nodeName&&(n.setBaseAndExtent(e.startContainer,e.startOffset,e.endContainer,e.endOffset),n.anchorNode===e.startContainer&&n.focusNode===e.endContainer||n.setBaseAndExtent(t,0,t,1))}o.dispatch("AfterSetSelectionRange",{range:e,forward:t})},m=()=>{const t=d(),n=null==t?void 0:t.anchorNode,o=null==t?void 0:t.focusNode;if(!t||!n||!o||$o(n)||$o(o))return!0;const r=e.createRng(),s=e.createRng();try{r.setStart(n,t.anchorOffset),r.collapse(!0),s.setStart(o,t.focusOffset),s.collapse(!0)}catch(e){return!0}return r.compareBoundaryPoints(r.START_TO_START,s)<=0},f={dom:e,win:t,serializer:n,editor:o,expand:(t={type:"word"})=>u(Uf(e).expand(c(),t)),collapse:l,setCursorLocation:(t,n)=>{const r=e.createRng();C(t)&&C(n)?(r.setStart(t,n),r.setEnd(t,n),u(r),l(!1)):(sm(e,r,o.getBody(),!0),u(r))},getContent:e=>((e,t={})=>((e,t,n)=>JC(e).selection.getContent(t,n))(e,t.format?t.format:"html",t))(o,e),setContent:i,getBookmark:(e,t)=>g.getBookmark(e,t),moveToBookmark:e=>g.moveToBookmark(e),select:(t,n)=>(((e,t,n)=>I.from(t).bind((t=>I.from(t.parentNode).map((o=>{const r=e.nodeIndex(t),s=e.createRng();return s.setStart(o,r),s.setEnd(o,r+1),n&&(sm(e,s,t,!0),sm(e,s,t,!1)),s})))))(e,t,n).each(u),t),isCollapsed:()=>{const e=c(),t=d();return!(!e||e.item)&&(e.compareEndPoints?0===e.compareEndPoints("StartToEnd",e):!t||e.collapsed)},isEditable:()=>{const t=c(),n=o.getBody().querySelectorAll('[data-mce-selected="1"]');return n.length>0?ne(n,(t=>e.isEditable(t.parentElement))):Og(e,t)},isForward:m,setNode:t=>(i(e.getOuterHTML(t)),t),getNode:()=>((e,t)=>{if(!t)return e;let n=t.startContainer,o=t.endContainer;const r=t.startOffset,s=t.endOffset;let a=t.commonAncestorContainer;t.collapsed||(n===o&&s-r<2&&n.hasChildNodes()&&(a=n.childNodes[r]),er(n)&&er(o)&&(n=n.length===r?Lg(n.nextSibling,!0):n.parentNode,o=0===s?Lg(o.previousSibling,!1):o.parentNode,n&&n===o&&(a=n)));const i=er(a)?a.parentNode:a;return Vo(i)?i:e})(o.getBody(),c()),getSel:d,setRng:u,getRng:c,getStart:e=>Pg(o.getBody(),c(),e),getEnd:e=>Dg(o.getBody(),c(),e),getSelectedBlocks:(t,n)=>((e,t,n,o)=>{const r=[],s=e.getRoot(),a=e.getParent(n||Pg(s,t,t.collapsed),e.isBlock),i=e.getParent(o||Dg(s,t,t.collapsed),e.isBlock);if(a&&a!==s&&r.push(a),a&&i&&a!==i){let t;const n=new jo(a,s);for(;(t=n.next())&&t!==i;)e.isBlock(t)&&r.push(t)}return i&&a!==i&&i!==s&&r.push(i),r})(e,c(),t,n),normalize:()=>{const t=c(),n=d();if(!(Ju(n).length>1)&&am(o)){const n=Mf(e,t);return n.each((e=>{u(e,m())})),n.getOr(t)}return t},selectorChanged:(e,t)=>(a(e,t),f),selectorChangedWithUnbind:a,getScrollContainer:()=>{let t,n=e.getRoot();for(;n&&"BODY"!==n.nodeName;){if(n.scrollHeight>n.clientHeight){t=n;break}n=n.parentNode}return t},scrollIntoView:(e,t)=>{C(e)?((e,t,n)=>{(e.inline?ng:rg)(e,t,n)})(o,e,t):sg(o,c(),t)},placeCaretAt:(e,t)=>u(Rf(e,t,o.getDoc())),getBoundingClientRect:()=>{const e=c();return e.collapsed?Vi.fromRangeStart(e).getClientRects()[0]:e.getBoundingClientRect()},destroy:()=>{t=r=s=null,p.destroy()}},g=Jm(f),p=mf(f,o);return f.bookmarkManager=g,f.controlSelection=p,f},sw=(e,t,n)=>{-1===Pt.inArray(t,n)&&(e.addAttributeFilter(n,((e,t)=>{let n=e.length;for(;n--;)e[n].attr(t,null)})),t.push(n))},aw=(e,t)=>{const n=["data-mce-selected"],o={entity_encoding:"named",remove_trailing_brs:!0,pad_empty_with_br:!1,...e},r=t&&t.dom?t.dom:za.DOM,s=t&&t.schema?t.schema:ua(o),a=bC(o,s);return((e,t,n)=>{e.addAttributeFilter("data-mce-tabindex",((e,t)=>{let n=e.length;for(;n--;){const o=e[n];o.attr("tabindex",o.attr("data-mce-tabindex")),o.attr(t,null)}})),e.addAttributeFilter("src,href,style",((e,o)=>{const r="data-mce-"+o,s=t.url_converter,a=t.url_converter_scope;let i=e.length;for(;i--;){const t=e[i];let l=t.attr(r);void 0!==l?(t.attr(o,l.length>0?l:null),t.attr(r,null)):(l=t.attr(o),"style"===o?l=n.serializeStyle(n.parseStyle(l),t.name):s&&(l=s.call(a,l,o,t.name)),t.attr(o,l.length>0?l:null))}})),e.addAttributeFilter("class",(e=>{let t=e.length;for(;t--;){const n=e[t];let o=n.attr("class");o&&(o=o.replace(/(?:^|\s)mce-item-\w+(?!\S)/g,""),n.attr("class",o.length>0?o:null))}})),e.addAttributeFilter("data-mce-type",((e,t,n)=>{let o=e.length;for(;o--;){const t=e[o];if("bookmark"===t.attr("data-mce-type")&&!n.cleanup){const e=I.from(t.firstChild).exists((e=>{var t;return!Pr(null!==(t=e.value)&&void 0!==t?t:"")}));e?t.unwrap():t.remove()}}})),e.addNodeFilter("noscript",(e=>{var t;let n=e.length;for(;n--;){const o=e[n].firstChild;o&&(o.value=ea.decode(null!==(t=o.value)&&void 0!==t?t:""))}})),e.addNodeFilter("script,style",((e,n)=>{var o;const r=e=>e.replace(/(<!--\[CDATA\[|\]\]-->)/g,"\n").replace(/^[\r\n]*|[\r\n]*$/g,"").replace(/^\s*((<!--)?(\s*\/\/)?\s*<!\[CDATA\[|(<!--\s*)?\/\*\s*<!\[CDATA\[\s*\*\/|(\/\/)?\s*<!--|\/\*\s*<!--\s*\*\/)\s*[\r\n]*/gi,"").replace(/\s*(\/\*\s*\]\]>\s*\*\/(-->)?|\s*\/\/\s*\]\]>(-->)?|\/\/\s*(-->)?|\]\]>|\/\*\s*-->\s*\*\/|\s*-->\s*)\s*$/g,"");let s=e.length;for(;s--;){const a=e[s],i=a.firstChild,l=null!==(o=null==i?void 0:i.value)&&void 0!==o?o:"";if("script"===n){const e=a.attr("type");e&&a.attr("type","mce-no/type"===e?null:e.replace(/^mce\-/,"")),"xhtml"===t.element_format&&i&&l.length>0&&(i.value="// <![CDATA[\n"+r(l)+"\n// ]]>")}else"xhtml"===t.element_format&&i&&l.length>0&&(i.value="\x3c!--\n"+r(l)+"\n--\x3e")}})),e.addNodeFilter("#comment",(e=>{let o=e.length;for(;o--;){const r=e[o],s=r.value;t.preserve_cdata&&0===(null==s?void 0:s.indexOf("[CDATA["))?(r.name="#cdata",r.type=4,r.value=n.decode(s.replace(/^\[CDATA\[|\]\]$/g,""))):0===(null==s?void 0:s.indexOf("mce:protected "))&&(r.name="#text",r.type=3,r.raw=!0,r.value=unescape(s).substr(14))}})),e.addNodeFilter("xml:namespace,input",((e,t)=>{let n=e.length;for(;n--;){const o=e[n];7===o.type?o.remove():1===o.type&&("input"!==t||o.attr("type")||o.attr("type","text"))}})),e.addAttributeFilter("data-mce-type",(t=>{V(t,(t=>{"format-caret"===t.attr("data-mce-type")&&(t.isEmpty(e.schema.getNonEmptyElements())?t.remove():t.unwrap())}))})),e.addAttributeFilter("data-mce-src,data-mce-href,data-mce-style,data-mce-selected,data-mce-expando,data-mce-block,data-mce-type,data-mce-resize,data-mce-placeholder",((e,t)=>{let n=e.length;for(;n--;)e[n].attr(t,null)})),t.remove_trailing_brs&&Wv(t,e,e.schema)})(a,o,r),{schema:s,addNodeFilter:a.addNodeFilter,addAttributeFilter:a.addAttributeFilter,serialize:(e,n={})=>{const i={format:"html",...n},l=((e,t,n)=>((e,t)=>C(e)&&e.hasEventListeners("PreProcess")&&!t.no_events)(e,n)?((e,t,n)=>{let o;const r=e.dom;let s=t.cloneNode(!0);const a=document.implementation;if(a.createHTMLDocument){const e=a.createHTMLDocument("");Pt.each("BODY"===s.nodeName?s.childNodes:[s],(t=>{e.body.appendChild(e.importNode(t,!0))})),s="BODY"!==s.nodeName?e.body.firstChild:e.body,o=r.doc,r.doc=e}return((e,t)=>{e.dispatch("PreProcess",t)})(e,{...n,node:s}),o&&(r.doc=o),s})(e,t,n):t)(t,e,i),d=((e,t,n)=>{const o=Dr(n.getInner?t.innerHTML:e.getOuterHTML(t));return n.selection||Ar(yn(t))?o:Pt.trim(o)})(r,l,i),c=((e,t,n)=>{const o=n.selection?{forced_root_block:!1,...n}:n,r=e.parse(t,o);return(e=>{const t=e=>"br"===(null==e?void 0:e.name),n=e.lastChild;if(t(n)){const e=n.prev;t(e)&&(n.remove(),e.remove())}})(r),r})(a,d,i);return"tree"===i.format?c:((e,t,n,o,r)=>{const s=((e,t,n)=>up(e,t).serialize(n))(t,n,o);return((e,t,n)=>{if(!t.no_events&&e){const o=((e,t)=>e.dispatch("PostProcess",t))(e,{...t,content:n});return o.content}return n})(e,r,s)})(t,o,s,c,i)},addRules:s.addValidElements,setRules:s.setValidElements,addTempAttr:T(sw,a,n),getTempAttrs:N(n),getNodeFilters:a.getNodeFilters,getAttributeFilters:a.getAttributeFilters,removeNodeFilter:a.removeNodeFilter,removeAttributeFilter:a.removeAttributeFilter}},iw=(e,t)=>{const n=aw(e,t);return{schema:n.schema,addNodeFilter:n.addNodeFilter,addAttributeFilter:n.addAttributeFilter,serialize:n.serialize,addRules:n.addRules,setRules:n.setRules,addTempAttr:n.addTempAttr,getTempAttrs:n.getTempAttrs,getNodeFilters:n.getNodeFilters,getAttributeFilters:n.getAttributeFilters,removeNodeFilter:n.removeNodeFilter,removeAttributeFilter:n.removeAttributeFilter}},lw=(e,t,n={})=>{const o=((e,t)=>({format:"html",...e,set:!0,content:t}))(n,t);return wC(e,o).map((t=>{const n=((e,t,n)=>QC(e).editor.setContent(t,n))(e,t.content,t);return xC(e,n.html,t),n.content})).getOr(t)},dw="autoresize_on_init,content_editable_state,padd_empty_with_br,block_elements,boolean_attributes,editor_deselector,editor_selector,elements,file_browser_callback_types,filepicker_validator_handler,force_hex_style_colors,force_p_newlines,gecko_spellcheck,images_dataimg_filter,media_scripts,mode,move_caret_before_on_enter_elements,non_empty_elements,self_closing_elements,short_ended_elements,special,spellchecker_select_languages,spellchecker_whitelist,tab_focus,tabfocus_elements,table_responsive_width,text_block_elements,text_inline_elements,toolbar_drawer,types,validate,whitespace_elements,paste_enable_default_filters,paste_filter_drop,paste_word_valid_elements,paste_retain_style_properties,paste_convert_word_fake_lists".split(","),cw="template_cdate_classes,template_mdate_classes,template_selected_content_classes,template_preview_replace_values,template_replace_values,templates,template_cdate_format,template_mdate_format".split(","),uw="bbcode,colorpicker,contextmenu,fullpage,legacyoutput,spellchecker,textcolor".split(","),mw=[{name:"template",replacedWith:"Advanced Template"},{name:"rtc"}],fw=(e,t)=>{const n=Y(t,(t=>Ee(e,t)));return ae(n)},gw=e=>{const t=fw(e,dw),n=e.forced_root_block;return!1!==n&&""!==n||t.push("forced_root_block (false only)"),ae(t)},pw=e=>fw(e,cw),hw=(e,t)=>{const n=Pt.makeMap(e.plugins," "),o=Y(t,(e=>Ee(n,e)));return ae(o)},bw=e=>hw(e,uw),vw=e=>hw(e,mw.map((e=>e.name))),yw=e=>J(mw,(t=>t.name===e)).fold((()=>e),(t=>t.replacedWith?`${e}, replaced by ${t.replacedWith}`:e)),Cw=za.DOM,ww=e=>I.from(e).each((e=>e.destroy())),xw=(()=>{const e={};return{add:(t,n)=>{e[t]=n},get:t=>e[t]?e[t]:{icons:{}},has:t=>Ee(e,t)}})(),Ew=Ya.ModelManager,_w=(e,t)=>t.dom[e],kw=(e,t)=>parseInt(co(t,e),10),Sw=T(_w,"clientWidth"),Nw=T(_w,"clientHeight"),Rw=T(kw,"margin-top"),Aw=T(kw,"margin-left"),Tw=e=>{const t=[],n=()=>{const t=e.theme;return t&&t.getNotificationManagerImpl?t.getNotificationManagerImpl():(()=>{const e=()=>{throw new Error("Theme did not provide a NotificationManager implementation.")};return{open:e,close:e,getArgs:e}})()},o=()=>I.from(t[0]),r=()=>{V(t,(e=>{e.reposition()}))},s=e=>{Z(t,(t=>t===e)).each((e=>{t.splice(e,1)}))},a=(a,i=!0)=>e.removed||!(e=>{return(t=e.inline?e.getBody():e.getContentAreaContainer(),I.from(t).map(yn)).map(Gn).getOr(!1);var t})(e)?{}:(i&&e.dispatch("BeforeOpenNotification",{notification:a}),J(t,(e=>{return t=n().getArgs(e),o=a,!(t.type!==o.type||t.text!==o.text||t.progressBar||t.timeout||o.progressBar||o.timeout);var t,o})).getOrThunk((()=>{e.editorManager.setActive(e);const i=n().open(a,(()=>{s(i),r(),Ag(e)&&o().fold((()=>e.focus()),(e=>ag(yn(e.getEl()))))}));return(e=>{t.push(e)})(i),r(),e.dispatch("OpenNotification",{notification:{...i}}),i}))),i=N(t);return(e=>{e.on("SkinLoaded",(()=>{const t=gd(e);t&&a({text:t,type:"warning",timeout:0},!1),r()})),e.on("show ResizeEditor ResizeWindow NodeChange",(()=>{requestAnimationFrame(r)})),e.on("remove",(()=>{V(t.slice(),(e=>{n().close(e)}))}))})(e),{open:a,close:()=>{o().each((e=>{n().close(e),s(e),r()}))},getNotifications:i}},Ow=Ya.PluginManager,Bw=Ya.ThemeManager,Pw=e=>{let t=[];const n=()=>{const t=e.theme;return t&&t.getWindowManagerImpl?t.getWindowManagerImpl():(()=>{const e=()=>{throw new Error("Theme did not provide a WindowManager implementation.")};return{open:e,openUrl:e,alert:e,confirm:e,close:e}})()},o=(e,t)=>(...n)=>t?t.apply(e,n):void 0,r=n=>{(t=>{e.dispatch("CloseWindow",{dialog:t})})(n),t=Y(t,(e=>e!==n)),0===t.length&&e.focus()},s=n=>{e.editorManager.setActive(e),pg(e),e.ui.show();const o=n();return(n=>{t.push(n),(t=>{e.dispatch("OpenWindow",{dialog:t})})(n)})(o),o};return e.on("remove",(()=>{V(t,(e=>{n().close(e)}))})),{open:(e,t)=>s((()=>n().open(e,t,r))),openUrl:e=>s((()=>n().openUrl(e,r))),alert:(e,t,r)=>{const s=n();s.alert(e,o(r||s,t))},confirm:(e,t,r)=>{const s=n();s.confirm(e,o(r||s,t))},close:()=>{I.from(t[t.length-1]).each((e=>{n().close(e),r(e)}))}}},Dw=(e,t)=>{e.notificationManager.open({type:"error",text:t})},Lw=(e,t)=>{e._skinLoaded?Dw(e,t):e.on("SkinLoaded",(()=>{Dw(e,t)}))},Mw=(e,t,n)=>{ef(e,t,{message:n}),console.error(n)},Iw=(e,t,n)=>n?`Failed to load ${e}: ${n} from url ${t}`:`Failed to load ${e} url: ${t}`,Fw=(e,...t)=>{const n=window.console;n&&(n.error?n.error(e,...t):n.log(e,...t))},Uw=e=>"content/"+e+"/content.css",zw=(e,t)=>{const n=e.editorManager.baseURL+"/skins/content",o=`content${e.editorManager.suffix}.css`;return q(t,(t=>(e=>tinymce.Resource.has(Uw(e)))(t)?t:(e=>/^[a-z0-9\-]+$/i.test(e))(t)&&!e.inline?`${n}/${t}/${o}`:e.documentBaseURI.toAbsolute(t)))},jw=(e,t)=>{const n={};return{findAll:(o,r=M)=>{const s=Y((e=>e?ce(e.getElementsByTagName("img")):[])(o),(t=>{const n=t.src;return!t.hasAttribute("data-mce-bogus")&&!t.hasAttribute("data-mce-placeholder")&&!(!n||n===At.transparentSrc)&&(He(n,"blob:")?!e.isUploaded(n)&&r(t):!!He(n,"data:")&&r(t))})),a=q(s,(e=>{const o=e.src;if(Ee(n,o))return n[o].then((t=>m(t)?t:{image:e,blobInfo:t.blobInfo}));{const r=((e,t)=>{const n=()=>Promise.reject("Invalid data URI");if(He(t,"blob:")){const s=e.getByUri(t);return C(s)?Promise.resolve(s):(o=t,He(o,"blob:")?(e=>fetch(e).then((e=>e.ok?e.blob():Promise.reject())).catch((()=>Promise.reject({message:`Cannot convert ${e} to Blob. Resource might not exist or is inaccessible.`,uriType:"blob"}))))(o):He(o,"data:")?(r=o,new Promise(((e,t)=>{Kv(r).bind((({type:e,data:t,base64Encoded:n})=>Yv(e,t,n))).fold((()=>t("Invalid data URI")),e)}))):Promise.reject("Unknown URI format")).then((t=>Gv(t).then((o=>Qv(o,!1,(n=>I.some(Jv(e,t,n)))).getOrThunk(n)))))}var o,r;return He(t,"data:")?Zv(e,t).fold(n,(e=>Promise.resolve(e))):Promise.reject("Unknown image data format")})(t,o).then((t=>(delete n[o],{image:e,blobInfo:t}))).catch((e=>(delete n[o],e)));return n[o]=r,r}}));return Promise.all(a)}}},Hw=()=>{let e={};const t=(e,t)=>({status:e,resultUri:t}),n=t=>t in e;return{hasBlobUri:n,getResultUri:t=>{const n=e[t];return n?n.resultUri:null},isPending:t=>!!n(t)&&1===e[t].status,isUploaded:t=>!!n(t)&&2===e[t].status,markPending:n=>{e[n]=t(1,null)},markUploaded:(n,o)=>{e[n]=t(2,o)},removeFailed:t=>{delete e[t]},destroy:()=>{e={}}}};let $w=0;const qw=(e,t)=>{const n={},o=(e,n)=>new Promise(((o,r)=>{const s=new XMLHttpRequest;s.open("POST",t.url),s.withCredentials=t.credentials,s.upload.onprogress=e=>{n(e.loaded/e.total*100)},s.onerror=()=>{r("Image upload failed due to a XHR Transport error. Code: "+s.status)},s.onload=()=>{if(s.status<200||s.status>=300)return void r("HTTP Error: "+s.status);const e=JSON.parse(s.responseText);var n,a;e&&m(e.location)?o((n=t.basePath,a=e.location,n?n.replace(/\/$/,"")+"/"+a.replace(/^\//,""):a)):r("Invalid JSON: "+s.responseText)};const a=new FormData;a.append("file",e.blob(),e.filename()),s.send(a)})),r=w(t.handler)?t.handler:o,s=(e,t)=>({url:t,blobInfo:e,status:!0}),a=(e,t)=>({url:"",blobInfo:e,status:!1,error:t}),i=(e,t)=>{Pt.each(n[e],(e=>{e(t)})),delete n[e]};return{upload:(l,d)=>t.url||r!==o?((t,o)=>(t=Pt.grep(t,(t=>!e.isUploaded(t.blobUri()))),Promise.all(Pt.map(t,(t=>e.isPending(t.blobUri())?(e=>{const t=e.blobUri();return new Promise((e=>{n[t]=n[t]||[],n[t].push(e)}))})(t):((t,n,o)=>(e.markPending(t.blobUri()),new Promise((r=>{let l,d;try{const c=()=>{l&&(l.close(),d=_)},u=n=>{c(),e.markUploaded(t.blobUri(),n),i(t.blobUri(),s(t,n)),r(s(t,n))},f=n=>{c(),e.removeFailed(t.blobUri()),i(t.blobUri(),a(t,n)),r(a(t,n))};d=e=>{e<0||e>100||I.from(l).orThunk((()=>I.from(o).map(P))).each((t=>{l=t,t.progressBar.value(e)}))},n(t,d).then(u,(e=>{f(m(e)?{message:e}:e)}))}catch(e){r(a(t,e))}}))))(t,r,o))))))(l,d):new Promise((e=>{e([])}))}},Vw=e=>()=>e.notificationManager.open({text:e.translate("Image uploading..."),type:"info",timeout:-1,progressBar:!0}),Ww=(e,t)=>qw(t,{url:Gl(e),basePath:Xl(e),credentials:Ql(e),handler:Jl(e)}),Kw=e=>{const t=(()=>{let e=[];const t=e=>{if(!e.blob||!e.base64)throw new Error("blob and base64 representations of the image are required for BlobInfo to be created");const t=e.id||"blobid"+$w+++(()=>{const e=()=>Math.round(4294967295*Math.random()).toString(36);return"s"+(new Date).getTime().toString(36)+e()+e()+e()})(),n=e.name||t,o=e.blob;var r;return{id:N(t),name:N(n),filename:N(e.filename||n+"."+(r=o.type,{"image/jpeg":"jpg","image/jpg":"jpg","image/gif":"gif","image/png":"png","image/apng":"apng","image/avif":"avif","image/svg+xml":"svg","image/webp":"webp","image/bmp":"bmp","image/tiff":"tiff"}[r.toLowerCase()]||"dat")),blob:N(o),base64:N(e.base64),blobUri:N(e.blobUri||URL.createObjectURL(o)),uri:N(e.uri)}},n=t=>J(e,t).getOrUndefined(),o=e=>n((t=>t.id()===e));return{create:(e,n,o,r,s)=>{if(m(e))return t({id:e,name:r,filename:s,blob:n,base64:o});if(f(e))return t(e);throw new Error("Unknown input type")},add:t=>{o(t.id())||e.push(t)},get:o,getByUri:e=>n((t=>t.blobUri()===e)),getByData:(e,t)=>n((n=>n.base64()===e&&n.blob().type===t)),findFirst:n,removeByUri:t=>{e=Y(e,(e=>e.blobUri()!==t||(URL.revokeObjectURL(e.blobUri()),!1)))},destroy:()=>{V(e,(e=>{URL.revokeObjectURL(e.blobUri())})),e=[]}}})();let n,o;const r=Hw(),s=[],a=t=>n=>e.selection?t(n):[],i=(e,t,n)=>{let o=0;do{o=e.indexOf(t,o),-1!==o&&(e=e.substring(0,o)+n+e.substr(o+t.length),o+=n.length-t.length+1)}while(-1!==o);return e},l=(e,t,n)=>{const o=`src="${n}"${n===At.transparentSrc?' data-mce-placeholder="1"':""}`;return e=i(e,`src="${t}"`,o),i(e,'data-mce-src="'+t+'"','data-mce-src="'+n+'"')},d=(t,n)=>{V(e.undoManager.data,(e=>{"fragmented"===e.type?e.fragments=q(e.fragments,(e=>l(e,t,n))):e.content=l(e.content,t,n)}))},c=()=>(n||(n=Ww(e,r)),p().then(a((o=>{const r=q(o,(e=>e.blobInfo));return n.upload(r,Vw(e)).then(a((n=>{const r=[];let s=!1;const a=q(n,((n,a)=>{const{blobInfo:i,image:l}=o[a];let c=!1;return n.status&&Wl(e)?(n.url&&!je(l.src,n.url)&&(s=!0),t.removeByUri(l.src),XC(e)||((t,n)=>{const o=e.convertURL(n,"src");var r;d(t.src,n),Zt(yn(t),{src:Vl(e)?(r=n,r+(-1===r.indexOf("?")?"?":"&")+(new Date).getTime()):n,"data-mce-src":o})})(l,n.url)):n.error&&(n.error.remove&&(d(l.src,At.transparentSrc),r.push(l),c=!0),((e,t)=>{Lw(e,Ka.translate(["Failed to upload image: {0}",t]))})(e,n.error.message)),{element:l,status:n.status,uploadUri:n.url,blobInfo:i,removed:c}}));return r.length>0&&!XC(e)?e.undoManager.transact((()=>{V(_o(r),(n=>{const o=An(n);xo(n),o.each((e=>t=>{((e,t)=>e.dom.isEmpty(t.dom)&&C(e.schema.getTextBlockElements()[Ht(t)]))(e,t)&&vo(t,hn('<br data-mce-bogus="1" />'))})(e)),t.removeByUri(n.dom.src)}))})):s&&e.undoManager.dispatchChange(),a})))})))),u=()=>ql(e)?c():Promise.resolve([]),g=e=>ne(s,(t=>t(e))),p=()=>(o||(o=jw(r,t)),o.findAll(e.getBody(),g).then(a((t=>{const n=Y(t,(t=>m(t)?(Lw(e,t),!1):"blob"!==t.uriType));return XC(e)||V(n,(e=>{d(e.image.src,e.blobInfo.blobUri()),e.image.src=e.blobInfo.blobUri(),e.image.removeAttribute("data-mce-src")})),n})))),h=n=>n.replace(/src="(blob:[^"]+)"/g,((n,o)=>{const s=r.getResultUri(o);if(s)return'src="'+s+'"';let a=t.getByUri(o);return a||(a=X(e.editorManager.get(),((e,t)=>e||t.editorUpload&&t.editorUpload.blobCache.getByUri(o)),void 0)),a?'src="data:'+a.blob().type+";base64,"+a.base64()+'"':n}));return e.on("SetContent",(()=>{ql(e)?u():p()})),e.on("RawSaveContent",(e=>{e.content=h(e.content)})),e.on("GetContent",(e=>{e.source_view||"raw"===e.format||"tree"===e.format||(e.content=h(e.content))})),e.on("PostRender",(()=>{e.parser.addNodeFilter("img",(e=>{V(e,(e=>{const n=e.attr("src");if(!n||t.getByUri(n))return;const o=r.getResultUri(n);o&&e.attr("src",o)}))}))})),{blobCache:t,addFilter:e=>{s.push(e)},uploadImages:c,uploadImagesAuto:u,scanForImages:p,destroy:()=>{t.destroy(),r.destroy(),o=n=null}}},Yw={remove_similar:!0,inherit:!1},Gw={selector:"td,th",...Yw},Xw={tablecellbackgroundcolor:{styles:{backgroundColor:"%value"},...Gw},tablecellverticalalign:{styles:{"vertical-align":"%value"},...Gw},tablecellbordercolor:{styles:{borderColor:"%value"},...Gw},tablecellclass:{classes:["%value"],...Gw},tableclass:{selector:"table",classes:["%value"],...Yw},tablecellborderstyle:{styles:{borderStyle:"%value"},...Gw},tablecellborderwidth:{styles:{borderWidth:"%value"},...Gw}},Qw=N(Xw),Jw=Pt.each,Zw=za.DOM,ex=e=>C(e)&&f(e),tx=(e,t)=>{const n=t&&t.schema||ua({}),o=e=>{const t=m(e)?{name:e,classes:[],attrs:{}}:e,n=Zw.create(t.name);return((e,t)=>{t.classes.length>0&&Zw.addClass(e,t.classes.join(" ")),Zw.setAttribs(e,t.attrs)})(n,t),n},r=(e,t,s)=>{let a;const i=t[0],l=ex(i)?i.name:void 0,d=((e,t)=>{const o=n.getElementRule(e.nodeName.toLowerCase()),r=null==o?void 0:o.parentsRequired;return!(!r||!r.length)&&(t&&H(r,t)?t:r[0])})(e,l);if(d)l===d?(a=i,t=t.slice(1)):a=d;else if(i)a=i,t=t.slice(1);else if(!s)return e;const c=a?o(a):Zw.create("div");c.appendChild(e),s&&Pt.each(s,(t=>{const n=o(t);c.insertBefore(n,e)}));const u=ex(a)?a.siblings:void 0;return r(c,t,u)},s=Zw.create("div");if(e.length>0){const t=e[0],n=o(t),a=ex(t)?t.siblings:void 0;s.appendChild(r(n,e.slice(1),a))}return s},nx=e=>{let t="div";const n={name:t,classes:[],attrs:{},selector:e=Pt.trim(e)};return"*"!==e&&(t=e.replace(/(?:([#\.]|::?)([\w\-]+)|(\[)([^\]]+)\]?)/g,((e,t,o,r,s)=>{switch(t){case"#":n.attrs.id=o;break;case".":n.classes.push(o);break;case":":-1!==Pt.inArray("checked disabled enabled read-only required".split(" "),o)&&(n.attrs[o]=o)}if("["===r){const e=s.match(/([\w\-]+)(?:\=\"([^\"]+))?/);e&&(n.attrs[e[1]]=e[2])}return""}))),n.name=t||"div",n},ox=(e,t)=>{let n="",o=wd(e);if(""===o)return"";const r=e=>m(e)?e.replace(/%(\w+)/g,""):"",s=(t,n)=>Zw.getStyle(null!=n?n:e.getBody(),t,!0);if(m(t)){const n=e.formatter.get(t);if(!n)return"";t=n[0]}if("preview"in t){const e=t.preview;if(!1===e)return"";o=e||o}let a,i=t.block||t.inline||"span";const l=(d=t.selector,m(d)?(d=(d=d.split(/\s*,\s*/)[0]).replace(/\s*(~\+|~|\+|>)\s*/g,"$1"),Pt.map(d.split(/(?:>|\s+(?![^\[\]]+\]))/),(e=>{const t=Pt.map(e.split(/(?:~\+|~|\+)/),nx),n=t.pop();return t.length&&(n.siblings=t),n})).reverse()):[]);var d;l.length>0?(l[0].name||(l[0].name=i),i=t.selector,a=tx(l,e)):a=tx([i],e);const c=Zw.select(i,a)[0]||a.firstChild;Jw(t.styles,((e,t)=>{const n=r(e);n&&Zw.setStyle(c,t,n)})),Jw(t.attributes,((e,t)=>{const n=r(e);n&&Zw.setAttrib(c,t,n)})),Jw(t.classes,(e=>{const t=r(e);Zw.hasClass(c,t)||Zw.addClass(c,t)})),e.dispatch("PreviewFormats"),Zw.setStyles(a,{position:"absolute",left:-65535}),e.getBody().appendChild(a);const u=s("fontSize"),f=/px$/.test(u)?parseInt(u,10):0;return Jw(o.split(" "),(e=>{let t=s(e,c);if(!("background-color"===e&&/transparent|rgba\s*\([^)]+,\s*0\)/.test(t)&&(t=s(e),"#ffffff"===Ca(t).toLowerCase())||"color"===e&&"#000000"===Ca(t).toLowerCase())){if("font-size"===e&&/em|%$/.test(t)){if(0===f)return;t=parseFloat(t)/(/%$/.test(t)?100:1)*f+"px"}"border"===e&&t&&(n+="padding:0 2px;"),n+=e+":"+t+";"}})),e.dispatch("AfterPreviewFormats"),Zw.remove(a),n},rx=e=>{const t=(e=>{const t={},n=(e,o)=>{e&&(m(e)?(p(o)||(o=[o]),V(o,(e=>{v(e.deep)&&(e.deep=!Sm(e)),v(e.split)&&(e.split=!Sm(e)||Nm(e)),v(e.remove)&&Sm(e)&&!Nm(e)&&(e.remove="none"),Sm(e)&&Nm(e)&&(e.mixed=!0,e.block_expand=!0),m(e.classes)&&(e.classes=e.classes.split(/\s+/))})),t[e]=o):ge(e,((e,t)=>{n(t,e)})))};return n((e=>{const t=e.dom,n=e.schema.type,o={valigntop:[{selector:"td,th",styles:{verticalAlign:"top"}}],valignmiddle:[{selector:"td,th",styles:{verticalAlign:"middle"}}],valignbottom:[{selector:"td,th",styles:{verticalAlign:"bottom"}}],alignleft:[{selector:"figure.image",collapsed:!1,classes:"align-left",ceFalseOverride:!0,preview:"font-family font-size"},{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li,pre",styles:{textAlign:"left"},inherit:!1,preview:!1},{selector:"img,audio,video",collapsed:!1,styles:{float:"left"},preview:"font-family font-size"},{selector:"table",collapsed:!1,styles:{marginLeft:"0px",marginRight:"auto"},onformat:e=>{t.setStyle(e,"float",null)},preview:"font-family font-size"},{selector:".mce-preview-object,[data-ephox-embed-iri]",ceFalseOverride:!0,styles:{float:"left"}}],aligncenter:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li,pre",styles:{textAlign:"center"},inherit:!1,preview:"font-family font-size"},{selector:"figure.image",collapsed:!1,classes:"align-center",ceFalseOverride:!0,preview:"font-family font-size"},{selector:"img,audio,video",collapsed:!1,styles:{display:"block",marginLeft:"auto",marginRight:"auto"},preview:!1},{selector:"table",collapsed:!1,styles:{marginLeft:"auto",marginRight:"auto"},preview:"font-family font-size"},{selector:".mce-preview-object",ceFalseOverride:!0,styles:{display:"table",marginLeft:"auto",marginRight:"auto"},preview:!1},{selector:"[data-ephox-embed-iri]",ceFalseOverride:!0,styles:{marginLeft:"auto",marginRight:"auto"},preview:!1}],alignright:[{selector:"figure.image",collapsed:!1,classes:"align-right",ceFalseOverride:!0,preview:"font-family font-size"},{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li,pre",styles:{textAlign:"right"},inherit:!1,preview:"font-family font-size"},{selector:"img,audio,video",collapsed:!1,styles:{float:"right"},preview:"font-family font-size"},{selector:"table",collapsed:!1,styles:{marginRight:"0px",marginLeft:"auto"},onformat:e=>{t.setStyle(e,"float",null)},preview:"font-family font-size"},{selector:".mce-preview-object,[data-ephox-embed-iri]",ceFalseOverride:!0,styles:{float:"right"},preview:!1}],alignjustify:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li,pre",styles:{textAlign:"justify"},inherit:!1,preview:"font-family font-size"}],bold:[{inline:"strong",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontWeight:"bold"}},{inline:"b",remove:"all",preserve_attributes:["class","style"]}],italic:[{inline:"em",remove:"all",preserve_attributes:["class","style"]},{inline:"span",styles:{fontStyle:"italic"}},{inline:"i",remove:"all",preserve_attributes:["class","style"]}],underline:[{inline:"span",styles:{textDecoration:"underline"},exact:!0},{inline:"u",remove:"all",preserve_attributes:["class","style"]}],strikethrough:(()=>{const e={inline:"span",styles:{textDecoration:"line-through"},exact:!0},t={inline:"strike",remove:"all",preserve_attributes:["class","style"]},o={inline:"s",remove:"all",preserve_attributes:["class","style"]};return"html4"!==n?[o,e,t]:[e,o,t]})(),forecolor:{inline:"span",styles:{color:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0},hilitecolor:{inline:"span",styles:{backgroundColor:"%value"},links:!0,remove_similar:!0,clear_child_styles:!0},fontname:{inline:"span",toggle:!1,styles:{fontFamily:"%value"},clear_child_styles:!0},fontsize:{inline:"span",toggle:!1,styles:{fontSize:"%value"},clear_child_styles:!0},lineheight:{selector:"h1,h2,h3,h4,h5,h6,p,li,td,th,div",styles:{lineHeight:"%value"}},fontsize_class:{inline:"span",attributes:{class:"%value"}},blockquote:{block:"blockquote",wrapper:!0,remove:"all"},subscript:{inline:"sub"},superscript:{inline:"sup"},code:{inline:"code"},link:{inline:"a",selector:"a",remove:"all",split:!0,deep:!0,onmatch:(e,t,n)=>qo(e)&&e.hasAttribute("href"),onformat:(e,n,o)=>{Pt.each(o,((n,o)=>{t.setAttrib(e,o,n)}))}},lang:{inline:"span",clear_child_styles:!0,remove_similar:!0,attributes:{lang:"%value","data-mce-lang":e=>{var t;return null!==(t=null==e?void 0:e.customValue)&&void 0!==t?t:null}}},removeformat:[{selector:"b,strong,em,i,font,u,strike,s,sub,sup,dfn,code,samp,kbd,var,cite,mark,q,del,ins,small",remove:"all",split:!0,expand:!1,block_expand:!0,deep:!0},{selector:"span",attributes:["style","class"],remove:"empty",split:!0,expand:!1,deep:!0},{selector:"*",attributes:["style","class"],split:!1,expand:!1,deep:!0}]};return Pt.each("p h1 h2 h3 h4 h5 h6 div address pre dt dd samp".split(/\s/),(e=>{o[e]={block:e,remove:"all"}})),o})(e)),n(Qw()),n(Cd(e)),{get:e=>C(e)?t[e]:t,has:e=>Ee(t,e),register:n,unregister:e=>(e&&t[e]&&delete t[e],t)}})(e),n=$a({});return(e=>{e.addShortcut("meta+b","","Bold"),e.addShortcut("meta+i","","Italic"),e.addShortcut("meta+u","","Underline");for(let t=1;t<=6;t++)e.addShortcut("access+"+t,"",["FormatBlock",!1,"h"+t]);e.addShortcut("access+7","",["FormatBlock",!1,"p"]),e.addShortcut("access+8","",["FormatBlock",!1,"div"]),e.addShortcut("access+9","",["FormatBlock",!1,"address"])})(e),(e=>{e.on("mouseup keydown",(t=>{var n;((e,t,n)=>{const o=e.selection,r=e.getBody();Kb(e,null,n),8!==t&&46!==t||!o.isCollapsed()||o.getStart().innerHTML!==$b||Kb(e,Lu(r,o.getStart()),!0),37!==t&&39!==t||Kb(e,Lu(r,o.getStart()),!0)})(e,t.keyCode,(n=e.selection.getRng().endContainer,er(n)&&$e(n.data,br)))}))})(e),XC(e)||((e,t)=>{e.set({}),t.on("NodeChange",(n=>{Hv(t,n.element,e.get())})),t.on("FormatApply FormatRemove",(n=>{const o=I.from(n.node).map((e=>dm(e)?e:e.startContainer)).bind((e=>qo(e)?I.some(e):I.from(e.parentElement))).getOrThunk((()=>Uv(t)));Hv(t,o,e.get())}))})(n,e),{get:t.get,has:t.has,register:t.register,unregister:t.unregister,apply:(t,n,o)=>{((e,t,n,o)=>{JC(e).formatter.apply(t,n,o)})(e,t,n,o)},remove:(t,n,o,r)=>{((e,t,n,o,r)=>{JC(e).formatter.remove(t,n,o,r)})(e,t,n,o,r)},toggle:(t,n,o)=>{((e,t,n,o)=>{JC(e).formatter.toggle(t,n,o)})(e,t,n,o)},match:(t,n,o,r)=>((e,t,n,o,r)=>JC(e).formatter.match(t,n,o,r))(e,t,n,o,r),closest:t=>((e,t)=>JC(e).formatter.closest(t))(e,t),matchAll:(t,n)=>((e,t,n)=>JC(e).formatter.matchAll(t,n))(e,t,n),matchNode:(t,n,o,r)=>((e,t,n,o,r)=>JC(e).formatter.matchNode(t,n,o,r))(e,t,n,o,r),canApply:t=>((e,t)=>JC(e).formatter.canApply(t))(e,t),formatChanged:(t,o,r,s)=>((e,t,n,o,r,s)=>JC(e).formatter.formatChanged(t,n,o,r,s))(e,n,t,o,r,s),getCssText:T(ox,e)}},sx=e=>{switch(e.toLowerCase()){case"undo":case"redo":case"mcefocus":return!0;default:return!1}},ax=e=>{const t=Xa(),n=$a(0),o=$a(0),r={data:[],typing:!1,beforeChange:()=>{((e,t,n)=>{JC(e).undoManager.beforeChange(t,n)})(e,n,t)},add:(s,a)=>((e,t,n,o,r,s,a)=>JC(e).undoManager.add(t,n,o,r,s,a))(e,r,o,n,t,s,a),dispatchChange:()=>{e.setDirty(!0);const t=jC(e);t.bookmark=ml(e.selection),e.dispatch("change",{level:t,lastLevel:ie(r.data,o.get()).getOrUndefined()})},undo:()=>((e,t,n,o)=>JC(e).undoManager.undo(t,n,o))(e,r,n,o),redo:()=>((e,t,n)=>JC(e).undoManager.redo(t,n))(e,o,r.data),clear:()=>{((e,t,n)=>{JC(e).undoManager.clear(t,n)})(e,r,o)},reset:()=>{((e,t)=>{JC(e).undoManager.reset(t)})(e,r)},hasUndo:()=>((e,t,n)=>JC(e).undoManager.hasUndo(t,n))(e,r,o),hasRedo:()=>((e,t,n)=>JC(e).undoManager.hasRedo(t,n))(e,r,o),transact:t=>((e,t,n,o)=>JC(e).undoManager.transact(t,n,o))(e,r,n,t),ignore:t=>{((e,t,n)=>{JC(e).undoManager.ignore(t,n)})(e,n,t)},extra:(t,n)=>{((e,t,n,o,r)=>{JC(e).undoManager.extra(t,n,o,r)})(e,r,o,t,n)}};return XC(e)||((e,t,n)=>{const o=$a(!1),r=e=>{KC(t,!1,n),t.add({},e)};e.on("init",(()=>{t.add()})),e.on("BeforeExecCommand",(e=>{const o=e.command;sx(o)||(YC(t,n),t.beforeChange())})),e.on("ExecCommand",(e=>{const t=e.command;sx(t)||r(e)})),e.on("ObjectResizeStart cut",(()=>{t.beforeChange()})),e.on("SaveContent ObjectResized blur",r),e.on("dragend",r),e.on("keyup",(n=>{const s=n.keyCode;if(n.isDefaultPrevented())return;const a=At.os.isMacOS()&&"Meta"===n.key;(s>=33&&s<=36||s>=37&&s<=40||45===s||n.ctrlKey||a)&&(r(),e.nodeChanged()),46!==s&&8!==s||e.nodeChanged(),o.get()&&t.typing&&!VC(jC(e),t.data[0])&&(e.isDirty()||e.setDirty(!0),e.dispatch("TypingUndo"),o.set(!1),e.nodeChanged())})),e.on("keydown",(e=>{const s=e.keyCode;if(e.isDefaultPrevented())return;if(s>=33&&s<=36||s>=37&&s<=40||45===s)return void(t.typing&&r(e));const a=e.ctrlKey&&!e.altKey||e.metaKey;if((s<16||s>20)&&224!==s&&91!==s&&!t.typing&&!a)return t.beforeChange(),KC(t,!0,n),t.add({},e),void o.set(!0);(At.os.isMacOS()?e.metaKey:e.ctrlKey&&!e.altKey)&&t.beforeChange()})),e.on("mousedown",(e=>{t.typing&&r(e)})),e.on("input",(e=>{var t;e.inputType&&("insertReplacementText"===e.inputType||"insertText"===(t=e).inputType&&null===t.data||(e=>"insertFromPaste"===e.inputType||"insertFromDrop"===e.inputType)(e))&&r(e)})),e.on("AddUndo Undo Redo ClearUndos",(t=>{t.isDefaultPrevented()||e.nodeChanged()}))})(e,r,n),(e=>{e.addShortcut("meta+z","","Undo"),e.addShortcut("meta+y,meta+shift+z","","Redo")})(e),r},ix=[9,27,af.HOME,af.END,19,20,44,144,145,33,34,45,16,17,18,91,92,93,af.DOWN,af.UP,af.LEFT,af.RIGHT].concat(At.browser.isFirefox()?[224]:[]),lx="data-mce-placeholder",dx=e=>"keydown"===e.type||"keyup"===e.type,cx=e=>{const t=e.keyCode;return t===af.BACKSPACE||t===af.DELETE},ux=(e,t)=>({from:e,to:t}),mx=(e,t)=>{const n=yn(e),o=yn(t.container());return Ah(n,o).map((e=>((e,t)=>({block:e,position:t}))(e,t)))},fx=(e,t)=>Jn(t,(e=>Rr(e)||lr(e.dom)),(t=>_n(t,e))).filter(Wt).getOr(e),gx=(e,t)=>{const n=((e,t)=>{const n=Mn(e);return Z(n,(e=>t.isBlock(Ht(e)))).fold(N(n),(e=>n.slice(0,e)))})(e,t);return V(n,xo),n},px=(e,t)=>{const n=Bp(t,e);return J(n.reverse(),(e=>gs(e))).each(xo)},hx=(e,t,n,o,r)=>{if(gs(n))return Or(n),Ou(n.dom);0===Y(Dn(r),(e=>!gs(e))).length&&gs(t)&&po(r,bn("br"));const s=Tu(n.dom,Vi.before(r.dom));return V(gx(t,o),(e=>{po(r,e)})),px(e,t),s},bx=(e,t,n,o)=>{if(gs(n)){if(gs(t)){const e=e=>{const t=(e,n)=>Fn(e).fold((()=>n),(e=>((e,t)=>e.isInline(Ht(t)))(o,e)?t(e,n.concat(fi(e))):n));return t(e,[])},r=G(e(n),((e,t)=>(yo(e,t),t)),Tr());wo(t),vo(t,r)}return xo(n),Ou(t.dom)}const r=Bu(n.dom);return V(gx(t,o),(e=>{vo(n,e)})),px(e,t),r},vx=(e,t)=>{Ru(e,t.dom).bind((e=>I.from(e.getNode()))).map(yn).filter(Er).each(xo)},yx=(e,t,n,o)=>(vx(!0,t),vx(!1,n),((e,t)=>kn(t,e)?((e,t)=>{const n=Bp(t,e);return I.from(n[n.length-1])})(t,e):I.none())(t,n).fold(T(bx,e,t,n,o),T(hx,e,t,n,o))),Cx=(e,t,n,o,r)=>t?yx(e,o,n,r):yx(e,n,o,r),wx=(e,t)=>{const n=yn(e.getBody()),o=((e,t,n)=>n.collapsed?((e,t,n)=>{const o=mx(e,Vi.fromRangeStart(n)),r=o.bind((n=>ku(t,e,n.position).bind((n=>mx(e,n).map((n=>((e,t,n)=>ar(n.position.getNode())&&!gs(n.block)?Ru(!1,n.block.dom).bind((o=>o.isEqual(n.position)?ku(t,e,o).bind((t=>mx(e,t))):I.some(n))).getOr(n):n)(e,t,n)))))));return Mt(o,r,ux).filter((t=>(e=>!_n(e.from.block,e.to.block))(t)&&((e,t)=>{const n=yn(e);return _n(fx(n,t.from.block),fx(n,t.to.block))})(e,t)&&(e=>!1===dr(e.from.block.dom)&&!1===dr(e.to.block.dom))(t)&&(e=>{const t=e=>_r(e)||Ns(e.dom);return t(e.from.block)&&t(e.to.block)})(t)))})(e,t,n):I.none())(n.dom,t,e.selection.getRng()).map((o=>()=>{Cx(n,t,o.from.block,o.to.block,e.schema).each((t=>{e.selection.setRng(t.toRange())}))}));return o},xx=(e,t)=>{const n=yn(t),o=T(_n,e);return Qn(n,Rr,o).isSome()},Ex=e=>{const t=yn(e.getBody());return((e,t)=>{const n=Tu(e.dom,Vi.fromRangeStart(t)).isNone(),o=Au(e.dom,Vi.fromRangeEnd(t)).isNone();return!((e,t)=>xx(e,t.startContainer)||xx(e,t.endContainer))(e,t)&&n&&o})(t,e.selection.getRng())?(e=>I.some((()=>{e.setContent(""),e.selection.setCursorLocation()})))(e):((e,t,n)=>{const o=t.getRng();return Mt(Ah(e,yn(o.startContainer)),Ah(e,yn(o.endContainer)),((r,s)=>_n(r,s)?I.none():I.some((()=>{o.deleteContents(),Cx(e,!0,r,s,n).each((e=>{t.setRng(e.toRange())}))})))).getOr(I.none())})(t,e.selection,e.schema)},_x=(e,t)=>e.selection.isCollapsed()?I.none():Ex(e),kx=(e,t,n,o,r)=>I.from(t._selectionOverrides.showCaret(e,n,o,r)),Sx=(e,t)=>e.dispatch("BeforeObjectSelected",{target:t}).isDefaultPrevented()?I.none():I.some((e=>{const t=e.ownerDocument.createRange();return t.selectNode(e),t})(t)),Nx=(e,t,n)=>t.collapsed?((e,t,n)=>{const o=ru(1,e.getBody(),t),r=Vi.fromRangeStart(o),s=r.getNode();if(Lc(s))return kx(1,e,s,!r.isAtEnd(),!1);const a=r.getNode(!0);if(Lc(a))return kx(1,e,a,!1,!1);const i=lb(e.dom.getRoot(),r.getNode());return Lc(i)?kx(1,e,i,!1,n):I.none()})(e,t,n).getOr(t):t,Rx=e=>Ap(e)||kp(e),Ax=e=>Tp(e)||Sp(e),Tx=(e,t,n,o,r,s)=>{kx(o,e,s.getNode(!r),r,!0).each((n=>{if(t.collapsed){const e=t.cloneRange();r?e.setEnd(n.startContainer,n.startOffset):e.setStart(n.endContainer,n.endOffset),e.deleteContents()}else t.deleteContents();e.selection.setRng(n)})),((e,t)=>{er(t)&&0===t.data.length&&e.remove(t)})(e.dom,n)},Ox=(e,t)=>((e,t)=>{const n=e.selection.getRng();if(!er(n.commonAncestorContainer))return I.none();const o=t?cu.Forwards:cu.Backwards,r=wu(e.getBody()),s=T(lu,t?r.next:r.prev),a=t?Rx:Ax,i=au(o,e.getBody(),n),l=s(i),d=l?Eh(t,l):l;if(!d||!du(i,d))return I.none();if(a(d))return I.some((()=>Tx(e,n,i.getNode(),o,t,d)));const c=s(d);return c&&a(c)&&du(d,c)?I.some((()=>Tx(e,n,i.getNode(),o,t,c))):I.none()})(e,t),Bx=(e,t)=>{const n=e.getBody();return t?Ou(n).filter(Ap):Bu(n).filter(Tp)},Px=e=>{const t=e.selection.getRng();return!t.collapsed&&(Bx(e,!0).exists((e=>e.isEqual(Vi.fromRangeStart(t))))||Bx(e,!1).exists((e=>e.isEqual(Vi.fromRangeEnd(t)))))},Dx=hl([{remove:["element"]},{moveToElement:["element"]},{moveToPosition:["position"]}]),Lx=(e,t,n,o)=>ku(t,e,n).bind((r=>{return s=r.getNode(),C(s)&&(Rr(yn(s))||Sr(yn(s)))||((e,t,n,o,r)=>{const s=t=>r.isInline(t.nodeName.toLowerCase())&&!Qc(n,o,e);return su(!t,n).fold((()=>su(t,o).fold(L,s)),s)})(e,t,n,r,o)?I.none():t&&dr(r.getNode())||!t&&dr(r.getNode(!0))?((e,t,n,o)=>{const r=o.getNode(!t);return Ah(yn(e),yn(n.getNode())).map((e=>gs(e)?Dx.remove(e.dom):Dx.moveToElement(r))).orThunk((()=>I.some(Dx.moveToElement(r))))})(e,t,n,r):t&&Tp(n)||!t&&Ap(n)?I.some(Dx.moveToPosition(r)):I.none();var s})),Mx=(e,t)=>I.from(lb(e.getBody(),t)),Ix=(e,t)=>{const n=e.selection.getNode();return Mx(e,n).filter(dr).fold((()=>((e,t,n,o)=>{const r=ru(t?1:-1,e,n),s=Vi.fromRangeStart(r),a=yn(e);return!t&&Tp(s)?I.some(Dx.remove(s.getNode(!0))):t&&Ap(s)?I.some(Dx.remove(s.getNode())):!t&&Ap(s)&&qp(a,s,o)?Vp(a,s,o).map((e=>Dx.remove(e.getNode()))):t&&Tp(s)&&$p(a,s,o)?Wp(a,s,o).map((e=>Dx.remove(e.getNode()))):((e,t,n,o)=>((e,t)=>{const n=t.getNode(!e),o=e?"after":"before";return qo(n)&&n.getAttribute("data-mce-caret")===o})(t,n)?((e,t)=>y(t)?I.none():e&&dr(t.nextSibling)?I.some(Dx.moveToElement(t.nextSibling)):!e&&dr(t.previousSibling)?I.some(Dx.moveToElement(t.previousSibling)):I.none())(t,n.getNode(!t)).orThunk((()=>Lx(e,t,n,o))):Lx(e,t,n,o).bind((t=>((e,t,n)=>n.fold((e=>I.some(Dx.remove(e))),(e=>I.some(Dx.moveToElement(e))),(n=>Qc(t,n,e)?I.none():I.some(Dx.moveToPosition(n)))))(e,n,t))))(e,t,s,o)})(e.getBody(),t,e.selection.getRng(),e.schema).map((n=>()=>n.fold(((e,t)=>n=>(e._selectionOverrides.hideFakeCaret(),vh(e,t,yn(n)),!0))(e,t),((e,t)=>n=>{const o=t?Vi.before(n):Vi.after(n);return e.selection.setRng(o.toRange()),!0})(e,t),(e=>t=>(e.selection.setRng(t.toRange()),!0))(e))))),(()=>I.some(_)))},Fx=e=>{const t=e.dom,n=e.selection,o=lb(e.getBody(),n.getNode());if(lr(o)&&t.isBlock(o)&&t.isEmpty(o)){const e=t.create("br",{"data-mce-bogus":"1"});t.setHTML(o,""),o.appendChild(e),n.setRng(Vi.before(e).toRange())}return!0},Ux=(e,t)=>e.selection.isCollapsed()?Ix(e,t):((e,t)=>{const n=e.selection.getNode();return dr(n)&&!cr(n)?Mx(e,n.parentNode).filter(dr).fold((()=>I.some((()=>{var n;n=yn(e.getBody()),V(Uo(n,".mce-offscreen-selection"),xo),vh(e,t,yn(e.selection.getNode())),Th(e)}))),(()=>I.some(_))):Px(e)?I.some((()=>{Ph(e,e.selection.getRng(),yn(e.getBody()))})):I.none()})(e,t),zx=(e,t)=>e.selection.isCollapsed()?((e,t)=>{const n=Vi.fromRangeStart(e.selection.getRng());return ku(t,e.getBody(),n).filter((e=>t?Ep(e):_p(e))).bind((e=>Jc(t?0:-1,e))).map((t=>()=>e.selection.select(t)))})(e,t):I.none(),jx=er,Hx=e=>jx(e)&&e.data[0]===Br,$x=e=>jx(e)&&e.data[e.data.length-1]===Br,qx=e=>{var t;return(null!==(t=e.ownerDocument)&&void 0!==t?t:document).createTextNode(Br)},Vx=(e,t)=>e?(e=>{var t;if(jx(e.previousSibling))return $x(e.previousSibling)||e.previousSibling.appendData(Br),e.previousSibling;if(jx(e))return Hx(e)||e.insertData(0,Br),e;{const n=qx(e);return null===(t=e.parentNode)||void 0===t||t.insertBefore(n,e),n}})(t):(e=>{var t,n;if(jx(e.nextSibling))return Hx(e.nextSibling)||e.nextSibling.insertData(0,Br),e.nextSibling;if(jx(e))return $x(e)||e.appendData(Br),e;{const o=qx(e);return e.nextSibling?null===(t=e.parentNode)||void 0===t||t.insertBefore(o,e.nextSibling):null===(n=e.parentNode)||void 0===n||n.appendChild(o),o}})(t),Wx=T(Vx,!0),Kx=T(Vx,!1),Yx=(e,t)=>er(e.container())?Vx(t,e.container()):Vx(t,e.getNode()),Gx=(e,t)=>{const n=t.get();return n&&e.container()===n&&Fr(n)},Xx=(e,t)=>t.fold((t=>{Rc(e.get());const n=Wx(t);return e.set(n),I.some(Vi(n,n.length-1))}),(t=>Ou(t).map((t=>{if(Gx(t,e)){const t=e.get();return Vi(t,1)}{Rc(e.get());const n=Yx(t,!0);return e.set(n),Vi(n,1)}}))),(t=>Bu(t).map((t=>{if(Gx(t,e)){const t=e.get();return Vi(t,t.length-1)}{Rc(e.get());const n=Yx(t,!1);return e.set(n),Vi(n,n.length-1)}}))),(t=>{Rc(e.get());const n=Kx(t);return e.set(n),I.some(Vi(n,1))})),Qx=(e,t)=>{for(let n=0;n<e.length;n++){const o=e[n].apply(null,t);if(o.isSome())return o}return I.none()},Jx=hl([{before:["element"]},{start:["element"]},{end:["element"]},{after:["element"]}]),Zx=(e,t)=>Xc(t,e)||e,eE=(e,t,n)=>{const o=_h(n),r=Zx(t,o.container());return xh(e,r,o).fold((()=>Au(r,o).bind(T(xh,e,r)).map((e=>Jx.before(e)))),I.none)},tE=(e,t)=>null===Lu(e,t),nE=(e,t,n)=>xh(e,t,n).filter(T(tE,t)),oE=(e,t,n)=>{const o=kh(n);return nE(e,t,o).bind((e=>Tu(e,o).isNone()?I.some(Jx.start(e)):I.none()))},rE=(e,t,n)=>{const o=_h(n);return nE(e,t,o).bind((e=>Au(e,o).isNone()?I.some(Jx.end(e)):I.none()))},sE=(e,t,n)=>{const o=kh(n),r=Zx(t,o.container());return xh(e,r,o).fold((()=>Tu(r,o).bind(T(xh,e,r)).map((e=>Jx.after(e)))),I.none)},aE=e=>!wh(lE(e)),iE=(e,t,n)=>Qx([eE,oE,rE,sE],[e,t,n]).filter(aE),lE=e=>e.fold(R,R,R,R),dE=e=>e.fold(N("before"),N("start"),N("end"),N("after")),cE=e=>e.fold(Jx.before,Jx.before,Jx.after,Jx.after),uE=e=>e.fold(Jx.start,Jx.start,Jx.end,Jx.end),mE=(e,t,n,o,r,s)=>Mt(xh(t,n,o),xh(t,n,r),((t,o)=>t!==o&&((e,t,n)=>{const o=Xc(t,e),r=Xc(n,e);return C(o)&&o===r})(n,t,o)?Jx.after(e?t:o):s)).getOr(s),fE=(e,t)=>e.fold(M,(e=>{return o=t,!(dE(n=e)===dE(o)&&lE(n)===lE(o));var n,o})),gE=(e,t)=>e?t.fold(k(I.some,Jx.start),I.none,k(I.some,Jx.after),I.none):t.fold(I.none,k(I.some,Jx.before),I.none,k(I.some,Jx.end)),pE=(e,t,n)=>{const o=e?1:-1;return t.setRng(Vi(n.container(),n.offset()+o).toRange()),t.getSel().modify("move",e?"forward":"backward","word"),!0};var hE;!function(e){e[e.Br=0]="Br",e[e.Block=1]="Block",e[e.Wrap=2]="Wrap",e[e.Eol=3]="Eol"}(hE||(hE={}));const bE=(e,t)=>e===cu.Backwards?oe(t):t,vE=(e,t,n)=>e===cu.Forwards?t.next(n):t.prev(n),yE=(e,t,n,o)=>ar(o.getNode(t===cu.Forwards))?hE.Br:!1===Qc(n,o)?hE.Block:hE.Wrap,CE=(e,t,n,o)=>{const r=wu(n);let s=o;const a=[];for(;s;){const n=vE(t,r,s);if(!n)break;if(ar(n.getNode(!1)))return t===cu.Forwards?{positions:bE(t,a).concat([n]),breakType:hE.Br,breakAt:I.some(n)}:{positions:bE(t,a),breakType:hE.Br,breakAt:I.some(n)};if(n.isVisible()){if(e(s,n)){const e=yE(0,t,s,n);return{positions:bE(t,a),breakType:e,breakAt:I.some(n)}}a.push(n),s=n}else s=n}return{positions:bE(t,a),breakType:hE.Eol,breakAt:I.none()}},wE=(e,t,n,o)=>t(n,o).breakAt.map((o=>{const r=t(n,o).positions;return e===cu.Backwards?r.concat(o):[o].concat(r)})).getOr([]),xE=(e,t)=>X(e,((e,n)=>e.fold((()=>I.some(n)),(o=>Mt(le(o.getClientRects()),le(n.getClientRects()),((e,r)=>{const s=Math.abs(t-e.left);return Math.abs(t-r.left)<=s?n:o})).or(e)))),I.none()),EE=(e,t)=>le(t.getClientRects()).bind((t=>xE(e,t.left))),_E=T(CE,Vi.isAbove,-1),kE=T(CE,Vi.isBelow,1),SE=T(wE,-1,_E),NE=T(wE,1,kE),RE=(e,t)=>_E(e,t).breakAt.isNone(),AE=(e,t)=>kE(e,t).breakAt.isNone(),TE=(e,t)=>EE(SE(e,t),t),OE=(e,t)=>EE(NE(e,t),t),BE=dr,PE=(e,t)=>Math.abs(e.left-t),DE=(e,t)=>Math.abs(e.right-t),LE=(e,t)=>Oe(e,((e,n)=>{const o=Math.min(PE(e,t),DE(e,t)),r=Math.min(PE(n,t),DE(n,t));return r===o&&_e(n,"node")&&BE(n.node)||r<o?n:e})),ME=e=>{const t=t=>q(t,(t=>{const n=vi(t);return n.node=e,n}));if(qo(e))return t(e.getClientRects());if(er(e)){const n=e.ownerDocument.createRange();return n.setStart(e,0),n.setEnd(e,e.data.length),t(n.getClientRects())}return[]},IE=e=>te(e,ME);var FE;!function(e){e[e.Up=-1]="Up",e[e.Down=1]="Down"}(FE||(FE={}));const UE=(e,t,n,o,r,s)=>{let a=0;const i=[],l=o=>{let s=IE([o]);-1===e&&(s=s.reverse());for(let e=0;e<s.length;e++){const o=s[e];if(!n(o,d)){if(i.length>0&&t(o,Pe(i))&&a++,o.line=a,r(o))return!0;i.push(o)}}return!1},d=Pe(s.getClientRects());if(!d)return i;const c=s.getNode();return c&&(l(c),((e,t,n,o)=>{let r=o;for(;r=Gc(r,e,os,t);)if(n(r))return})(e,o,l,c)),i},zE=T(UE,FE.Up,wi,xi),jE=T(UE,FE.Down,xi,wi),HE=e=>Pe(e.getClientRects()),$E=e=>t=>((e,t)=>t.line>e)(e,t),qE=e=>t=>((e,t)=>t.line===e)(e,t),VE=(e,t)=>{e.selection.setRng(t),sg(e,e.selection.getRng())},WE=(e,t,n)=>I.some(Nx(e,t,n)),KE=(e,t,n,o,r,s)=>{const a=t===cu.Forwards,i=wu(e.getBody()),l=T(lu,a?i.next:i.prev),d=a?o:r;if(!n.collapsed){const o=_i(n);if(s(o))return kx(t,e,o,t===cu.Backwards,!1);if(Px(e)){const e=n.cloneRange();return e.collapse(t===cu.Backwards),I.from(e)}}const c=au(t,e.getBody(),n);if(d(c))return Sx(e,c.getNode(!a));let u=l(c);const m=Wr(n);if(!u)return m?I.some(n):I.none();if(u=Eh(a,u),d(u))return kx(t,e,u.getNode(!a),a,!1);const f=l(u);return f&&d(f)&&du(u,f)?kx(t,e,f.getNode(!a),a,!1):m?WE(e,u.toRange(),!1):I.none()},YE=(e,t,n,o,r,s)=>{const a=au(t,e.getBody(),n),i=Pe(a.getClientRects()),l=t===FE.Down,d=e.getBody();if(!i)return I.none();if(Px(e)){const e=l?Vi.fromRangeEnd(n):Vi.fromRangeStart(n);return(l?OE:TE)(d,e).orThunk((()=>I.from(e))).map((e=>e.toRange()))}const c=(l?jE:zE)(d,$E(1),a),u=Y(c,qE(1)),m=i.left,f=LE(u,m);if(f&&s(f.node)){const n=Math.abs(m-f.left),o=Math.abs(m-f.right);return kx(t,e,f.node,n<o,!1)}let g;if(g=o(a)?a.getNode():r(a)?a.getNode(!0):_i(n),g){const n=((e,t,n,o)=>{const r=wu(t);let s,a,i,l;const d=[];let c=0;1===e?(s=r.next,a=xi,i=wi,l=Vi.after(o)):(s=r.prev,a=wi,i=xi,l=Vi.before(o));const u=HE(l);do{if(!l.isVisible())continue;const e=HE(l);if(i(e,u))continue;d.length>0&&a(e,Pe(d))&&c++;const t=vi(e);if(t.position=l,t.line=c,n(t))return d;d.push(t)}while(l=s(l));return d})(t,d,$E(1),g);let o=LE(Y(n,qE(1)),m);if(o)return WE(e,o.position.toRange(),!1);if(o=Pe(Y(n,qE(0))),o)return WE(e,o.position.toRange(),!1)}return 0===u.length?GE(e,l).filter(l?r:o).map((t=>Nx(e,t.toRange(),!1))):I.none()},GE=(e,t)=>{const n=e.selection.getRng(),o=t?Vi.fromRangeEnd(n):Vi.fromRangeStart(n),r=(s=o.container(),a=e.getBody(),Qn(yn(s),(e=>Ic(e.dom)),(e=>e.dom===a)).map((e=>e.dom)).getOr(a));var s,a;if(t){const e=kE(r,o);return de(e.positions)}{const e=_E(r,o);return le(e.positions)}},XE=(e,t,n)=>GE(e,t).filter(n).exists((t=>(e.selection.setRng(t.toRange()),!0))),QE=(e,t)=>{const n=e.dom.createRng();n.setStart(t.container(),t.offset()),n.setEnd(t.container(),t.offset()),e.selection.setRng(n)},JE=(e,t)=>{e?t.setAttribute("data-mce-selected","inline-boundary"):t.removeAttribute("data-mce-selected")},ZE=(e,t,n)=>Xx(t,n).map((t=>(QE(e,t),n))),e_=(e,t,n)=>{const o=e.getBody(),r=((e,t,n)=>{const o=Vi.fromRangeStart(e);if(e.collapsed)return o;{const r=Vi.fromRangeEnd(e);return n?Tu(t,r).getOr(r):Au(t,o).getOr(o)}})(e.selection.getRng(),o,n);return((e,t,n,o)=>{const r=Eh(e,o),s=iE(t,n,r);return iE(t,n,r).bind(T(gE,e)).orThunk((()=>((e,t,n,o,r)=>{const s=Eh(e,r);return ku(e,n,s).map(T(Eh,e)).fold((()=>o.map(cE)),(r=>iE(t,n,r).map(T(mE,e,t,n,s,r)).filter(T(fE,o)))).filter(aE)})(e,t,n,s,o)))})(n,T(Ch,e),o,r).bind((n=>ZE(e,t,n)))},t_=(e,t,n)=>!!yd(e)&&e_(e,t,n).isSome(),n_=(e,t,n)=>!!yd(t)&&((e,t)=>{const n=t.selection.getRng(),o=e?Vi.fromRangeEnd(n):Vi.fromRangeStart(n);return!!(e=>w(e.selection.getSel().modify))(t)&&(e&&jr(o)?pE(!0,t.selection,o):!(e||!Hr(o))&&pE(!1,t.selection,o))})(e,t),o_=e=>{const t=$a(null),n=T(Ch,e);return e.on("NodeChange",(o=>{yd(e)&&(((e,t,n)=>{const o=q(Uo(yn(t.getRoot()),'*[data-mce-selected="inline-boundary"]'),(e=>e.dom)),r=Y(o,e),s=Y(n,e);V(re(r,s),T(JE,!1)),V(re(s,r),T(JE,!0))})(n,e.dom,o.parents),((e,t)=>{const n=t.get();if(e.selection.isCollapsed()&&!e.composing&&n){const o=Vi.fromRangeStart(e.selection.getRng());Vi.isTextPosition(o)&&!(e=>jr(e)||Hr(e))(o)&&(QE(e,Nc(n,o)),t.set(null))}})(e,t),((e,t,n,o)=>{if(t.selection.isCollapsed()){const r=Y(o,e);V(r,(o=>{const r=Vi.fromRangeStart(t.selection.getRng());iE(e,t.getBody(),r).bind((e=>ZE(t,n,e)))}))}})(n,e,t,o.parents))})),t},r_=T(n_,!0),s_=T(n_,!1),a_=(e,t,n)=>{if(yd(e)){const o=GE(e,t).getOrThunk((()=>{const n=e.selection.getRng();return t?Vi.fromRangeEnd(n):Vi.fromRangeStart(n)}));return iE(T(Ch,e),e.getBody(),o).exists((t=>{const o=cE(t);return Xx(n,o).exists((t=>(QE(e,t),!0)))}))}return!1},i_=(e,t)=>n=>Xx(t,n).map((t=>()=>QE(e,t))),l_=(e,t,n,o)=>{const r=e.getBody(),s=T(Ch,e);e.undoManager.ignore((()=>{e.selection.setRng(((e,t)=>{const n=document.createRange();return n.setStart(e.container(),e.offset()),n.setEnd(t.container(),t.offset()),n})(n,o)),Nh(e),iE(s,r,Vi.fromRangeStart(e.selection.getRng())).map(uE).bind(i_(e,t)).each(D)})),e.nodeChanged()},d_=(e,t,n)=>{if(e.selection.isCollapsed()&&yd(e)){const o=Vi.fromRangeStart(e.selection.getRng());return((e,t,n,o)=>{const r=((e,t)=>Xc(t,e)||e)(e.getBody(),o.container()),s=T(Ch,e),a=iE(s,r,o);return a.bind((e=>n?e.fold(N(I.some(uE(e))),I.none,N(I.some(cE(e))),I.none):e.fold(I.none,N(I.some(cE(e))),I.none,N(I.some(uE(e)))))).map(i_(e,t)).getOrThunk((()=>{const i=Su(n,r,o),l=i.bind((e=>iE(s,r,e)));return Mt(a,l,(()=>xh(s,r,o).bind((t=>(e=>Mt(Ou(e),Bu(e),((t,n)=>{const o=Eh(!0,t),r=Eh(!1,n);return Au(e,o).forall((e=>e.isEqual(r)))})).getOr(!0))(t)?I.some((()=>{vh(e,n,yn(t))})):I.none())))).getOrThunk((()=>l.bind((()=>i.map((r=>()=>{n?l_(e,t,o,r):l_(e,t,r,o)}))))))}))})(e,t,n,o)}return I.none()},c_=(e,t)=>{const n=yn(e.getBody()),o=yn(e.selection.getStart()),r=Bp(o,n);return Z(r,t).fold(N(r),(e=>r.slice(0,e)))},u_=e=>1===zn(e),m_=(e,t)=>{const n=T(Zb,e);return te(t,(e=>n(e)?[e.dom]:[]))},f_=e=>{const t=(e=>c_(e,(t=>e.schema.isBlock(Ht(t)))))(e);return m_(e,t)},g_=(e,t)=>{const n=Y((e=>c_(e,(t=>e.schema.isBlock(Ht(t))||(e=>zn(e)>1)(t))))(e),u_);return de(n).bind((o=>{const r=Vi.fromRangeStart(e.selection.getRng());return Oh(t,r,o.dom)&&!Tm(o)?I.some((()=>((e,t,n,o)=>{const r=m_(t,o);if(0===r.length)vh(t,e,n);else{const e=Jb(n.dom,r);t.selection.setRng(e.toRange())}})(t,e,o,n))):I.none()}))},p_=(e,t)=>{const n=e.selection.getStart(),o=((e,t)=>{const n=t.parentElement;return ar(t)&&!h(n)&&e.dom.isEmpty(n)})(e,n)||Tm(yn(n))?Jb(n,t):((e,t)=>{const{caretContainer:n,caretPosition:o}=Qb(t);return e.insertNode(n.dom),o})(e.selection.getRng(),t);e.selection.setRng(o.toRange())},h_=e=>er(e.startContainer),b_=e=>{const t=e.selection.getRng();return(e=>0===e.startOffset&&h_(e))(t)&&((e,t)=>{const n=t.startContainer.parentElement;return!h(n)&&Zb(e,yn(n))})(e,t)&&(e=>(e=>(e=>{const t=e.startContainer.parentNode,n=e.endContainer.parentNode;return!h(t)&&!h(n)&&t.isEqualNode(n)})(e)&&(e=>{const t=e.endContainer;return e.endOffset===(er(t)?t.length:t.childNodes.length)})(e))(e)||(e=>!e.endContainer.isEqualNode(e.commonAncestorContainer))(e))(t)},v_=(e,t)=>e.selection.isCollapsed()?g_(e,t):(e=>{if(b_(e)){const t=f_(e);return I.some((()=>{Nh(e),((e,t)=>{const n=re(t,f_(e));n.length>0&&p_(e,n)})(e,t)}))}return I.none()})(e),y_=(e,t)=>Qn(e,(e=>Du(e.dom)),(e=>t.isBlock(Ht(e)))).isSome(),C_=e=>((e=>{const t=e.selection.getRng();return t.collapsed&&(h_(t)||e.dom.isEmpty(t.startContainer))&&!(e=>y_(yn(e.selection.getStart()),e.schema))(e)})(e)&&p_(e,[]),!0),w_=(e,t,n)=>C(n)?I.some((()=>{e._selectionOverrides.hideFakeCaret(),vh(e,t,yn(n))})):I.none(),x_=(e,t)=>e.selection.isCollapsed()?((e,t)=>{const n=t?kp:Sp,o=t?cu.Forwards:cu.Backwards,r=au(o,e.getBody(),e.selection.getRng());return n(r)?w_(e,t,r.getNode(!t)):I.from(Eh(t,r)).filter((e=>n(e)&&du(r,e))).bind((n=>w_(e,t,n.getNode(!t))))})(e,t):((e,t)=>{const n=e.selection.getNode();return mr(n)?w_(e,t,n):I.none()})(e,t),E_=e=>Xe(null!=e?e:"").getOr(0),__=(e,t)=>(e||"table"===Ht(t)?"margin":"padding")+("rtl"===co(t,"direction")?"-right":"-left"),k_=e=>{const t=N_(e);return!e.mode.isReadOnly()&&(t.length>1||((e,t)=>ne(t,(t=>{const n=__(od(e),t),o=mo(t,n).map(E_).getOr(0);return"false"!==e.dom.getContentEditable(t.dom)&&o>0})))(e,t))},S_=e=>kr(e)||Sr(e),N_=e=>Y(_o(e.selection.getSelectedBlocks()),(e=>!S_(e)&&!(e=>An(e).exists(S_))(e)&&Jn(e,(e=>lr(e.dom)||dr(e.dom))).exists((e=>lr(e.dom))))),R_=(e,t)=>{var n,o;const{dom:r}=e,s=rd(e),a=null!==(o=null===(n=/[a-z%]+$/i.exec(s))||void 0===n?void 0:n[0])&&void 0!==o?o:"px",i=E_(s),l=od(e);V(N_(e),(e=>{((e,t,n,o,r,s)=>{const a=__(n,yn(s)),i=E_(e.getStyle(s,a));if("outdent"===t){const t=Math.max(0,i-o);e.setStyle(s,a,t?t+r:"")}else{const t=i+o+r;e.setStyle(s,a,t)}})(r,t,l,i,a,e.dom)}))},A_=e=>R_(e,"outdent"),T_=e=>{if(e.selection.isCollapsed()&&k_(e)){const t=e.dom,n=e.selection.getRng(),o=Vi.fromRangeStart(n),r=t.getParent(n.startContainer,t.isBlock);if(null!==r&&Ip(yn(r),o,e.schema))return I.some((()=>A_(e)))}return I.none()},O_=(e,t,n)=>ue([T_,Ux,Ox,(e,n)=>d_(e,t,n),wx,ib,zx,x_,_x,v_],(t=>t(e,n))).filter((t=>e.selection.isEditable())),B_=(e,t)=>{e.addCommand("delete",(()=>{((e,t)=>{O_(e,t,!1).fold((()=>{e.selection.isEditable()&&(Nh(e),Th(e))}),D)})(e,t)})),e.addCommand("forwardDelete",(()=>{((e,t)=>{O_(e,t,!0).fold((()=>{e.selection.isEditable()&&(e=>{Sh(e,"ForwardDelete")})(e)}),D)})(e,t)}))},P_=e=>void 0===e.touches||1!==e.touches.length?I.none():I.some(e.touches[0]),D_=(e,t)=>Ee(e,t.nodeName),L_=(e,t)=>!!er(t)||!!qo(t)&&!(D_(e.getBlockElements(),t)||Ku(t)||Ts(e,t)||hs(t)),M_=(e,t)=>{if(er(t)){if(0===t.data.length)return!0;if(/^\s+$/.test(t.data))return!t.nextSibling||D_(e,t.nextSibling)||hs(t.nextSibling)}return!1},I_=e=>e.dom.create(Il(e),Fl(e)),F_=e=>{const t=e.dom,n=e.selection,o=e.schema,r=o.getBlockElements(),s=n.getStart(),a=e.getBody();let i,l,d=!1;const c=Il(e);if(!s||!qo(s))return;const u=a.nodeName.toLowerCase();if(!o.isValidChild(u,c.toLowerCase())||((e,t,n)=>$(Op(yn(n),yn(t)),(t=>D_(e,t.dom))))(r,a,s))return;const m=n.getRng(),{startContainer:f,startOffset:g,endContainer:p,endOffset:h}=m,b=Rg(e);let v=a.firstChild;for(;v;)if(qo(v)&&Ss(o,v),L_(o,v)){if(M_(r,v)){l=v,v=v.nextSibling,t.remove(l);continue}i||(i=I_(e),a.insertBefore(i,v),d=!0),l=v,v=v.nextSibling,i.appendChild(l)}else i=null,v=v.nextSibling;d&&b&&(m.setStart(f,g),m.setEnd(p,h),n.setRng(m),e.nodeChanged())},U_=(e,t,n)=>{const o=yn(I_(e)),r=Tr();vo(o,r),n(t,o);const s=document.createRange();return s.setStartBefore(r.dom),s.setEndBefore(r.dom),s},z_=e=>t=>-1!==(" "+t.attr("class")+" ").indexOf(e),j_=(e,t,n)=>function(o){const r=arguments,s=r[r.length-2],a=s>0?t.charAt(s-1):"";if('"'===a)return o;if(">"===a){const e=t.lastIndexOf("<",s);if(-1!==e&&-1!==t.substring(e,s).indexOf('contenteditable="false"'))return o}return'<span class="'+n+'" data-mce-content="'+e.dom.encode(r[0])+'">'+e.dom.encode("string"==typeof r[1]?r[1]:r[0])+"</span>"},H_=(e,t)=>{t.hasAttribute("data-mce-caret")&&(Vr(t),e.selection.setRng(e.selection.getRng()),e.selection.scrollIntoView(t))},$_=(e,t)=>{const n=(e=>to(yn(e.getBody()),"*[data-mce-caret]").map((e=>e.dom)).getOrNull())(e);if(n)return"compositionstart"===t.type?(t.preventDefault(),t.stopPropagation(),void H_(e,n)):void(zr(n)&&(H_(e,n),e.undoManager.add()))},q_=dr,V_=(e,t,n)=>{const o=wu(e.getBody()),r=T(lu,1===t?o.next:o.prev);if(n.collapsed){const o=e.dom.getParent(n.startContainer,"PRE");if(!o)return;if(!r(Vi.fromRangeStart(n))){const n=yn((e=>{const t=e.dom.create(Il(e));return t.innerHTML='<br data-mce-bogus="1">',t})(e));1===t?ho(yn(o),n):po(yn(o),n),e.selection.select(n.dom,!0),e.selection.collapse()}}},W_=(e,t)=>((e,t)=>{const n=t?cu.Forwards:cu.Backwards,o=e.selection.getRng();return((e,t,n)=>KE(t,e,n,Ap,Tp,q_))(n,e,o).orThunk((()=>(V_(e,n,o),I.none())))})(e,((e,t)=>{const n=t?e.getEnd(!0):e.getStart(!0);return wh(n)?!t:t})(e.selection,t)).exists((t=>(VE(e,t),!0))),K_=(e,t)=>((e,t)=>{const n=t?1:-1,o=e.selection.getRng();return((e,t,n)=>YE(t,e,n,(e=>Ap(e)||Np(e)),(e=>Tp(e)||Rp(e)),q_))(n,e,o).orThunk((()=>(V_(e,n,o),I.none())))})(e,t).exists((t=>(VE(e,t),!0))),Y_=(e,t)=>XE(e,t,t?Tp:Ap),G_=(e,t)=>Bx(e,!t).map((n=>{const o=n.toRange(),r=e.selection.getRng();return t?o.setStart(r.startContainer,r.startOffset):o.setEnd(r.endContainer,r.endOffset),o})).exists((t=>(VE(e,t),!0))),X_=e=>H(["figcaption"],Ht(e)),Q_=(e,t)=>!!e.selection.isCollapsed()&&((e,t)=>{const n=yn(e.getBody()),o=Vi.fromRangeStart(e.selection.getRng());return((e,t,n)=>{const o=T(_n,t);return Jn(yn(e.container()),(e=>n.isBlock(Ht(e))),o).filter(X_)})(o,n,e.schema).exists((()=>{if(((e,t,n)=>t?AE(e.dom,n):RE(e.dom,n))(n,t,o)){const o=U_(e,n,t?vo:bo);return e.selection.setRng(o),!0}return!1}))})(e,t),J_=(e,t)=>((e,t)=>t?I.from(e.dom.getParent(e.selection.getNode(),"details")).map((t=>((e,t)=>{const n=e.selection.getRng(),o=Vi.fromRangeStart(n);return!(e.getBody().lastChild!==t||!AE(t,o)||(e.execCommand("InsertNewBlockAfter"),0))})(e,t))).getOr(!1):I.from(e.dom.getParent(e.selection.getNode(),"summary")).bind((t=>I.from(e.dom.getParent(t,"details")).map((n=>((e,t,n)=>{const o=e.selection.getRng(),r=Vi.fromRangeStart(o);return!(e.getBody().firstChild!==t||!RE(n,r)||(e.execCommand("InsertNewBlockBefore"),0))})(e,n,t))))).getOr(!1))(e,t),Z_={shiftKey:!1,altKey:!1,ctrlKey:!1,metaKey:!1,keyCode:0},ek=(e,t)=>t.keyCode===e.keyCode&&t.shiftKey===e.shiftKey&&t.altKey===e.altKey&&t.ctrlKey===e.ctrlKey&&t.metaKey===e.metaKey,tk=(e,...t)=>()=>e.apply(null,t),nk=(e,t)=>J(((e,t)=>te((e=>q(e,(e=>({...Z_,...e}))))(e),(e=>ek(e,t)?[e]:[])))(e,t),(e=>e.action())),ok=(e,t)=>ue(((e,t)=>te((e=>q(e,(e=>({...Z_,...e}))))(e),(e=>ek(e,t)?[e]:[])))(e,t),(e=>e.action())),rk=(e,t)=>{const n=t?cu.Forwards:cu.Backwards,o=e.selection.getRng();return KE(e,n,o,kp,Sp,mr).exists((t=>(VE(e,t),!0)))},sk=(e,t)=>{const n=t?1:-1,o=e.selection.getRng();return YE(e,n,o,kp,Sp,mr).exists((t=>(VE(e,t),!0)))},ak=(e,t)=>XE(e,t,t?Sp:kp),ik=hl([{none:["current"]},{first:["current"]},{middle:["current","target"]},{last:["current"]}]),lk={...ik,none:e=>ik.none(e)},dk=(e,t,n)=>te(Mn(e),(e=>xn(e,t)?n(e)?[e]:[]:dk(e,t,n))),ck=(e,t)=>no(e,"table",t),uk=(e,t,n,o,r=M)=>{const s=1===o;if(!s&&n<=0)return lk.first(e[0]);if(s&&n>=e.length-1)return lk.last(e[e.length-1]);{const s=n+o,a=e[s];return r(a)?lk.middle(t,a):uk(e,t,s,o,r)}},mk=(e,t)=>ck(e,t).bind((t=>{const n=dk(t,"th,td",M);return Z(n,(t=>_n(e,t))).map((e=>({index:e,all:n})))})),fk=(e,t,n,o,r)=>{const s=Uo(yn(n),"td,th,caption").map((e=>e.dom)),a=Y(((e,t)=>te(t,(t=>{const n=((e,t)=>({left:e.left-t,top:e.top-t,right:e.right+-2,bottom:e.bottom+-2,width:e.width+t,height:e.height+t}))(vi(t.getBoundingClientRect()),-1);return[{x:n.left,y:e(n),cell:t},{x:n.right,y:e(n),cell:t}]})))(e,s),(e=>t(e,r)));return((e,t,n)=>X(e,((e,o)=>e.fold((()=>I.some(o)),(e=>{const r=Math.sqrt(Math.abs(e.x-t)+Math.abs(e.y-n)),s=Math.sqrt(Math.abs(o.x-t)+Math.abs(o.y-n));return I.some(s<r?o:e)}))),I.none()))(a,o,r).map((e=>e.cell))},gk=T(fk,(e=>e.bottom),((e,t)=>e.y<t)),pk=T(fk,(e=>e.top),((e,t)=>e.y>t)),hk=(e,t,n)=>{const o=e(t,n);return(e=>e.breakType===hE.Wrap&&0===e.positions.length)(o)||!ar(n.getNode())&&(e=>e.breakType===hE.Br&&1===e.positions.length)(o)?!((e,t,n)=>n.breakAt.exists((n=>e(t,n).breakAt.isSome())))(e,t,o):o.breakAt.isNone()},bk=T(hk,_E),vk=T(hk,kE),yk=(e,t,n,o)=>{const r=e.selection.getRng(),s=t?1:-1;return!(!Dc()||!((e,t,n)=>{const o=Vi.fromRangeStart(t);return Ru(!e,n).exists((e=>e.isEqual(o)))})(t,r,n)||(kx(s,e,n,!t,!1).each((t=>{VE(e,t)})),0))},Ck=(e,t,n)=>{const o=((e,t)=>{const n=t.getNode(e);return Qo(n)?I.some(n):I.none()})(!!t,n),r=!1===t;o.fold((()=>VE(e,n.toRange())),(o=>Ru(r,e.getBody()).filter((e=>e.isEqual(n))).fold((()=>VE(e,n.toRange())),(n=>((e,t,n)=>{t.undoManager.transact((()=>{const o=e?ho:po,r=U_(t,yn(n),o);VE(t,r)}))})(t,e,o)))))},wk=(e,t,n,o)=>{const r=e.selection.getRng(),s=Vi.fromRangeStart(r),a=e.getBody();if(!t&&bk(o,s)){const o=((e,t,n)=>((e,t)=>le(t.getClientRects()).bind((t=>gk(e,t.left,t.top))).bind((e=>{return EE(Bu(n=e).map((e=>_E(n,e).positions.concat(e))).getOr([]),t);var n})))(t,n).orThunk((()=>le(n.getClientRects()).bind((n=>xE(SE(e,Vi.before(t)),n.left))))).getOr(Vi.before(t)))(a,n,s);return Ck(e,t,o),!0}if(t&&vk(o,s)){const o=((e,t,n)=>((e,t)=>de(t.getClientRects()).bind((t=>pk(e,t.left,t.top))).bind((e=>{return EE(Ou(n=e).map((e=>[e].concat(kE(n,e).positions))).getOr([]),t);var n})))(t,n).orThunk((()=>le(n.getClientRects()).bind((n=>xE(NE(e,Vi.after(t)),n.left))))).getOr(Vi.after(t)))(a,n,s);return Ck(e,t,o),!0}return!1},xk=(e,t,n)=>I.from(e.dom.getParent(e.selection.getNode(),"td,th")).bind((o=>I.from(e.dom.getParent(o,"table")).map((r=>n(e,t,r,o))))).getOr(!1),Ek=(e,t)=>xk(e,t,yk),_k=(e,t)=>xk(e,t,wk),kk=(e,t,n)=>n.fold(I.none,I.none,((e,t)=>{return(n=t,Zn(n,Fg)).map((e=>(e=>{const t=xf.exact(e,0,e,0);return Nf(t)})(e)));var n}),(n=>(e.execCommand("mceTableInsertRowAfter"),Sk(e,t,n)))),Sk=(e,t,n)=>{return kk(e,t,(r=oo,mk(o=n,void 0).fold((()=>lk.none(o)),(e=>uk(e.all,o,e.index,1,r)))));var o,r},Nk=(e,t,n)=>{return kk(e,t,(r=oo,mk(o=n,void 0).fold((()=>lk.none()),(e=>uk(e.all,o,e.index,-1,r)))));var o,r},Rk=(e,t)=>{const n=["table","li","dl"],o=yn(e.getBody()),r=e=>{const t=Ht(e);return _n(e,o)||H(n,t)},s=e.selection.getRng();return((e,t)=>((e,t,n=L)=>n(t)?I.none():H(e,Ht(t))?I.some(t):eo(t,e.join(","),(e=>xn(e,"table")||n(e))))(["td","th"],e,t))(yn(t?s.endContainer:s.startContainer),r).map((n=>(ck(n,r).each((t=>{e.model.table.clearSelectedCells(t.dom)})),e.selection.collapse(!t),(t?Sk:Nk)(e,r,n).each((t=>{e.selection.setRng(t)})),!0))).getOr(!1)},Ak=(e,t)=>({container:e,offset:t}),Tk=za.DOM,Ok=e=>t=>e===t?-1:0,Bk=(e,t,n)=>{if(er(e)&&t>=0)return I.some(Ak(e,t));{const o=hi(Tk);return I.from(o.backwards(e,t,Ok(e),n)).map((e=>Ak(e.container,e.container.data.length)))}},Pk=(e,t,n)=>{if(!er(e))return I.none();const o=e.data;if(t>=0&&t<=o.length)return I.some(Ak(e,t));{const o=hi(Tk);return I.from(o.backwards(e,t,Ok(e),n)).bind((e=>{const o=e.container.data;return Pk(e.container,t+o.length,n)}))}},Dk=(e,t,n)=>{if(!er(e))return I.none();const o=e.data;if(t<=o.length)return I.some(Ak(e,t));{const r=hi(Tk);return I.from(r.forwards(e,t,Ok(e),n)).bind((e=>Dk(e.container,t-o.length,n)))}},Lk=(e,t,n,o,r)=>{const s=hi(e,(e=>t=>e.isBlock(t)||H(["BR","IMG","HR","INPUT"],t.nodeName)||"false"===e.getContentEditable(t))(e));return I.from(s.backwards(t,n,o,r))},Mk=e=>Dr(e.toString().replace(/\u00A0/g," ")),Ik=e=>""!==e&&-1!==" \xa0\f\n\r\t\v".indexOf(e),Fk=(e,t)=>e.substring(t.length),Uk=(e,t,n,o=0)=>{return(r=yn(t.startContainer),no(r,Ug)).fold((()=>((e,t,n,o=0)=>{if(!(r=t).collapsed||!er(r.startContainer))return I.none();var r;const s={text:"",offset:0},a=e.getParent(t.startContainer,e.isBlock)||e.getRoot();return Lk(e,t.startContainer,t.startOffset,((e,t,o)=>(s.text=o+s.text,s.offset+=t,((e,t,n)=>{let o;const r=n.charAt(0);for(o=t-1;o>=0;o--){const s=e.charAt(o);if(Ik(s))return I.none();if(r===s&&je(e,n,o,t))break}return I.some(o)})(s.text,s.offset,n).getOr(t))),a).bind((e=>{const r=t.cloneRange();if(r.setStart(e.container,e.offset),r.setEnd(t.endContainer,t.endOffset),r.collapsed)return I.none();const s=Mk(r);return 0!==s.lastIndexOf(n)||Fk(s,n).length<o?I.none():I.some({text:Fk(s,n),range:r,trigger:n})}))})(e,t,n,o)),(t=>{const o=e.createRng();o.selectNode(t.dom);const r=Mk(o);return I.some({range:o,text:Fk(r,n),trigger:n})}));var r},zk=e=>{if((e=>3===e.nodeType)(e))return Ak(e,e.data.length);{const t=e.childNodes;return t.length>0?zk(t[t.length-1]):Ak(e,t.length)}},jk=(e,t)=>{const n=e.childNodes;return n.length>0&&t<n.length?jk(n[t],0):n.length>0&&(e=>1===e.nodeType)(e)&&n.length===t?zk(n[n.length-1]):Ak(e,t)},Hk=(e,t,n,o={})=>{var r;const s=t(),a=null!==(r=e.selection.getRng().startContainer.nodeValue)&&void 0!==r?r:"",i=Y(s.lookupByTrigger(n.trigger),(t=>n.text.length>=t.minChars&&t.matches.getOrThunk((()=>(e=>t=>{const n=jk(t.startContainer,t.startOffset);return!((e,t)=>{var n;const o=null!==(n=e.getParent(t.container,e.isBlock))&&void 0!==n?n:e.getRoot();return Lk(e,t.container,t.offset,((e,t)=>0===t?-1:t),o).filter((e=>{const t=e.container.data.charAt(e.offset-1);return!Ik(t)})).isSome()})(e,n)})(e.dom)))(n.range,a,n.text)));if(0===i.length)return I.none();const l=Promise.all(q(i,(e=>e.fetch(n.text,e.maxResults,o).then((t=>({matchText:n.text,items:t,columns:e.columns,onAction:e.onAction,highlightOn:e.highlightOn}))))));return I.some({lookupData:l,context:n})};var $k;!function(e){e[e.Error=0]="Error",e[e.Value=1]="Value"}($k||($k={}));const qk=(e,t,n)=>e.stype===$k.Error?t(e.serror):n(e.svalue),Vk=e=>({stype:$k.Value,svalue:e}),Wk=e=>({stype:$k.Error,serror:e}),Kk=qk,Yk=e=>f(e)&&me(e).length>100?" removed due to size":JSON.stringify(e,null,2),Gk=(e,t)=>Wk([{path:e,getErrorInfo:t}]),Xk=(e,t)=>({extract:(n,o)=>xe(o,e).fold((()=>((e,t)=>Gk(e,(()=>'Choice schema did not contain choice key: "'+t+'"')))(n,e)),(e=>((e,t,n,o)=>xe(n,o).fold((()=>((e,t,n)=>Gk(e,(()=>'The chosen schema: "'+n+'" did not exist in branches: '+Yk(t))))(e,n,o)),(n=>n.extract(e.concat(["branch: "+o]),t))))(n,o,t,e))),toString:()=>"chooseOn("+e+"). Possible values: "+me(t)}),Qk=e=>(...t)=>{if(0===t.length)throw new Error("Can't merge zero objects");const n={};for(let o=0;o<t.length;o++){const r=t[o];for(const t in r)Ee(r,t)&&(n[t]=e(n[t],r[t]))}return n},Jk=Qk(((e,t)=>g(e)&&g(t)?Jk(e,t):t)),Zk=(Qk(((e,t)=>t)),e=>({tag:"defaultedThunk",process:N(e)})),eS=e=>{const t=(e=>{const t=[],n=[];return V(e,(e=>{qk(e,(e=>n.push(e)),(e=>t.push(e)))})),{values:t,errors:n}})(e);return t.errors.length>0?(n=t.errors,k(Wk,ee)(n)):Vk(t.values);var n},tS=(e,t,n)=>{switch(e.tag){case"field":return t(e.key,e.newKey,e.presence,e.prop);case"custom":return n(e.newKey,e.instantiator)}},nS=e=>({extract:(t,n)=>{return o=e(n),r=e=>((e,t)=>Gk(e,N(t)))(t,e),o.stype===$k.Error?r(o.serror):o;var o,r},toString:N("val")}),oS=nS(Vk),rS=(e,t,n,o)=>o(xe(e,t).getOrThunk((()=>n(e)))),sS=(e,t,n,o,r)=>{const s=e=>r.extract(t.concat([o]),e),a=e=>e.fold((()=>Vk(I.none())),(e=>{const n=r.extract(t.concat([o]),e);return s=n,a=I.some,s.stype===$k.Value?{stype:$k.Value,svalue:a(s.svalue)}:s;var s,a}));switch(e.tag){case"required":return((e,t,n,o)=>xe(t,n).fold((()=>((e,t,n)=>Gk(e,(()=>'Could not find valid *required* value for "'+t+'" in '+Yk(n))))(e,n,t)),o))(t,n,o,s);case"defaultedThunk":return rS(n,o,e.process,s);case"option":return((e,t,n)=>n(xe(e,t)))(n,o,a);case"defaultedOptionThunk":return((e,t,n,o)=>o(xe(e,t).map((t=>!0===t?n(e):t))))(n,o,e.process,a);case"mergeWithThunk":return rS(n,o,N({}),(t=>{const o=Jk(e.process(n),t);return s(o)}))}},aS=e=>({extract:(t,n)=>((e,t,n)=>{const o={},r=[];for(const s of n)tS(s,((n,s,a,i)=>{const l=sS(a,e,t,n,i);Kk(l,(e=>{r.push(...e)}),(e=>{o[s]=e}))}),((e,n)=>{o[e]=n(t)}));return r.length>0?Wk(r):Vk(o)})(t,n,e),toString:()=>{const t=q(e,(e=>tS(e,((e,t,n,o)=>e+" -> "+o.toString()),((e,t)=>"state("+e+")"))));return"obj{\n"+t.join("\n")+"}"}}),iS=e=>({extract:(t,n)=>{const o=q(n,((n,o)=>e.extract(t.concat(["["+o+"]"]),n)));return eS(o)},toString:()=>"array("+e.toString()+")"}),lS=(e,t,n)=>{return o=((e,t,n)=>((e,t)=>e.stype===$k.Error?{stype:$k.Error,serror:t(e.serror)}:e)(t.extract([e],n),(e=>({input:n,errors:e}))))(e,t,n),qk(o,pl.error,pl.value);var o},dS=(e,t)=>Xk(e,pe(t,aS)),cS=N(oS),uS=(e,t)=>nS((n=>{const o=typeof n;return e(n)?Vk(n):Wk(`Expected type: ${t} but got: ${o}`)})),mS=uS(x,"number"),fS=uS(m,"string"),gS=uS(b,"boolean"),pS=uS(w,"function"),hS=(e,t,n,o)=>({tag:"field",key:e,newKey:t,presence:n,prop:o}),bS=(e,t)=>({tag:"custom",newKey:e,instantiator:t}),vS=(e,t)=>hS(e,e,{tag:"required",process:{}},t),yS=e=>vS(e,fS),CS=e=>vS(e,pS),wS=(e,t)=>hS(e,e,{tag:"option",process:{}},t),xS=e=>wS(e,fS),ES=(e,t,n)=>hS(e,e,Zk(t),n),_S=(e,t)=>ES(e,t,mS),kS=(e,t,n)=>ES(e,t,(e=>{return t=t=>H(e,t)?pl.value(t):pl.error(`Unsupported value: "${t}", choose one of "${e.join(", ")}".`),nS((e=>t(e).fold(Wk,Vk)));var t})(n)),SS=(e,t)=>ES(e,t,gS),NS=(e,t)=>ES(e,t,pS),RS=yS("type"),AS=CS("fetch"),TS=CS("onAction"),OS=NS("onSetup",(()=>_)),BS=xS("text"),PS=xS("icon"),DS=xS("tooltip"),LS=xS("label"),MS=SS("active",!1),IS=SS("enabled",!0),FS=SS("primary",!1),US=e=>((e,t)=>ES("type",t,fS))(0,e),zS=aS([RS,yS("trigger"),_S("minChars",1),(1,((e,t)=>hS(e,e,Zk(1),cS()))("columns")),_S("maxResults",10),("matches",wS("matches",pS)),AS,TS,(jS=fS,ES("highlightOn",[],iS(jS)))]);var jS;const HS=[IS,DS,PS,BS,OS],$S=[MS].concat(HS),qS=[NS("predicate",L),kS("scope","node",["node","editor"]),kS("position","selection",["node","selection","line"])],VS=HS.concat([US("contextformbutton"),FS,TS,bS("original",R)]),WS=$S.concat([US("contextformbutton"),FS,TS,bS("original",R)]),KS=HS.concat([US("contextformbutton")]),YS=$S.concat([US("contextformtogglebutton")]),GS=dS("type",{contextformbutton:VS,contextformtogglebutton:WS});aS([US("contextform"),NS("initValue",N("")),LS,((e,t)=>hS(e,e,{tag:"required",process:{}},iS(t)))("commands",GS),wS("launch",dS("type",{contextformbutton:KS,contextformtogglebutton:YS}))].concat(qS));const XS=e=>{const t=e.ui.registry.getAll().popups,n=pe(t,(e=>{return(t=e,lS("Autocompleter",zS,{trigger:t.ch,...t})).fold((e=>{throw new Error("Errors: \n"+(e=>{const t=e.length>10?e.slice(0,10).concat([{path:[],getErrorInfo:N("... (only showing first ten failures)")}]):e;return q(t,(e=>"Failed path: ("+e.path.join(" > ")+")\n"+e.getErrorInfo()))})((t=e).errors).join("\n")+"\n\nInput object: "+Yk(t.input));var t}),R);var t})),o=ke(Ce(n,(e=>e.trigger))),r=we(n);return{dataset:n,triggers:o,lookupByTrigger:e=>Y(r,(t=>t.trigger===e))}},QS=e=>{const t=Xa(),n=$a(!1),o=t.isSet,r=()=>{o()&&((e=>{JC(e).autocompleter.removeDecoration()})(e),(e=>{e.dispatch("AutocompleterEnd")})(e),n.set(!1),t.clear())},s=De((()=>XS(e))),a=a=>{(n=>t.get().map((t=>Uk(e.dom,e.selection.getRng(),t.trigger).bind((t=>Hk(e,s,t,n))))).getOrThunk((()=>((e,t)=>{const n=t(),o=e.selection.getRng();return((e,t,n)=>ue(n.triggers,(n=>Uk(e,t,n))))(e.dom,o,n).bind((n=>Hk(e,t,n)))})(e,s))))(a).fold(r,(s=>{(n=>{o()||(((e,t)=>{JC(e).autocompleter.addDecoration(t)})(e,n.range),t.set({trigger:n.trigger,matchLength:n.text.length}))})(s.context),s.lookupData.then((o=>{t.get().map((a=>{const i=s.context;a.trigger===i.trigger&&(i.text.length-a.matchLength>=10?r():(t.set({...a,matchLength:i.text.length}),n.get()?((e,t)=>{e.dispatch("AutocompleterUpdate",t)})(e,{lookupData:o}):(n.set(!0),((e,t)=>{e.dispatch("AutocompleterStart",t)})(e,{lookupData:o}))))}))}))}))};e.addCommand("mceAutocompleterReload",((e,t)=>{const n=f(t)?t.fetchOptions:{};a(n)})),e.addCommand("mceAutocompleterClose",r),((e,t)=>{const n=Ja(t.load,50);e.on("keypress compositionend",(e=>{27!==e.which&&n.throttle()})),e.on("keydown",(e=>{const o=e.which;8===o?n.throttle():27===o&&t.cancelIfNecessary()})),e.on("remove",n.cancel)})(e,{cancelIfNecessary:r,load:a})},JS=xt().browser.isSafari(),ZS=e=>Or(yn(e)),eN=(e,t)=>{var n;return 0===e.startOffset&&e.endOffset===(null===(n=t.textContent)||void 0===n?void 0:n.length)},tN=(e,t)=>I.from(e.getParent(t.container(),"details")),nN=(e,t)=>tN(e,t).isSome(),oN=(e,t)=>{const n=t.getNode();v(n)||e.selection.setCursorLocation(n,t.offset())},rN=(e,t,n)=>{const o=e.dom.getParent(t.container(),"details");if(o&&!o.open){const t=e.dom.select("summary",o)[0];t&&(n?Ou(t):Bu(t)).each((t=>oN(e,t)))}else oN(e,t)},sN=(e,t,n)=>{const{dom:o,selection:r}=e,s=e.getBody();if("character"===n){const n=Vi.fromRangeStart(r.getRng()),a=o.getParent(n.container(),o.isBlock),i=tN(o,n),l=a&&o.isEmpty(a),d=h(null==a?void 0:a.previousSibling),c=h(null==a?void 0:a.nextSibling);return!!(l&&(t?c:d)&&Su(!t,s,n).exists((e=>nN(o,e)&&!Lt(i,tN(o,e)))))||Su(t,s,n).fold(L,(n=>{const r=tN(o,n);if(nN(o,n)&&!Lt(i,r)){if(t||rN(e,n,!1),a&&l){if(t&&d)return!0;if(!t&&c)return!0;rN(e,n,t),e.dom.remove(a)}return!0}return!1}))}return!1},aN=(e,t,n,o)=>{const r=e.selection.getRng(),s=Vi.fromRangeStart(r),a=e.getBody();return"selection"===o?((e,t)=>{const n=t.startSummary.exists((t=>t.contains(e.startContainer))),o=t.startSummary.exists((t=>t.contains(e.endContainer))),r=t.startDetails.forall((e=>t.endDetails.forall((t=>e!==t))));return(n||o)&&!(n&&o)||r})(r,t):n?((e,t)=>t.startSummary.exists((t=>((e,t)=>Bu(t).exists((n=>ar(n.getNode())&&Tu(t,n).exists((t=>t.isEqual(e)))||n.isEqual(e))))(e,t))))(s,t)||((e,t,n)=>n.startDetails.exists((n=>Au(e,t).forall((e=>!n.contains(e.container()))))))(a,s,t):((e,t)=>t.startSummary.exists((t=>((e,t)=>Ou(t).exists((t=>t.isEqual(e))))(e,t))))(s,t)||((e,t)=>t.startDetails.exists((n=>Tu(n,e).forall((n=>t.startSummary.exists((t=>!t.contains(e.container())&&t.contains(n.container()))))))))(s,t)},iN=(e,t,n)=>((e,t,n)=>((e,t)=>{const n=I.from(e.getParent(t.startContainer,"details")),o=I.from(e.getParent(t.endContainer,"details"));if(n.isSome()||o.isSome()){const t=n.bind((t=>I.from(e.select("summary",t)[0])));return I.some({startSummary:t,startDetails:n,endDetails:o})}return I.none()})(e.dom,e.selection.getRng()).fold((()=>sN(e,t,n)),(o=>aN(e,o,t,n)||sN(e,t,n))))(e,t,n)||JS&&((e,t,n)=>{const o=e.selection,r=o.getNode(),s=o.getRng(),a=Vi.fromRangeStart(s);return!!pr(r)&&("selection"===n&&eN(s,r)||Oh(t,a,r)?ZS(r):e.undoManager.transact((()=>{const s=o.getSel();let{anchorNode:a,anchorOffset:i,focusNode:l,focusOffset:d}=null!=s?s:{};const c=()=>{C(a)&&C(i)&&C(l)&&C(d)&&(null==s||s.setBaseAndExtent(a,i,l,d))},u=(e,t)=>{V(e.childNodes,(e=>{dm(e)&&t.appendChild(e)}))},m=e.dom.create("span",{"data-mce-bogus":"1"});u(r,m),r.appendChild(m),c(),"word"!==n&&"line"!==n||null==s||s.modify("extend",t?"right":"left",n),!o.isCollapsed()&&eN(o.getRng(),m)?ZS(r):(e.execCommand(t?"ForwardDelete":"Delete"),a=null==s?void 0:s.anchorNode,i=null==s?void 0:s.anchorOffset,l=null==s?void 0:s.focusNode,d=null==s?void 0:s.focusOffset,u(m,r),c()),e.dom.remove(m)})),!0)})(e,t,n)?I.some(_):I.none(),lN=e=>(t,n,o={})=>{const r=t.getBody(),s={bubbles:!0,composed:!0,data:null,isComposing:!1,detail:0,view:null,target:r,currentTarget:r,eventPhase:Event.AT_TARGET,originalTarget:r,explicitOriginalTarget:r,isTrusted:!1,srcElement:r,cancelable:!1,preventDefault:_,inputType:n},a=Ea(new InputEvent(e));return t.dispatch(e,{...a,...s,...o})},dN=lN("input"),cN=lN("beforeinput"),uN=xt(),mN=uN.os,fN=mN.isMacOS()||mN.isiOS(),gN=uN.browser.isFirefox(),pN=(e,t)=>{const n=e.dom,o=e.schema.getMoveCaretBeforeOnEnterElements();if(!t)return;if(/^(LI|DT|DD)$/.test(t.nodeName)){const e=(e=>{for(;e;){if(qo(e)||er(e)&&e.data&&/[\r\n\s]/.test(e.data))return e;e=e.nextSibling}return null})(t.firstChild);e&&/^(UL|OL|DL)$/.test(e.nodeName)&&t.insertBefore(n.doc.createTextNode(br),t.firstChild)}const r=n.createRng();if(t.normalize(),t.hasChildNodes()){const e=new jo(t,t);let n,s=t;for(;n=e.current();){if(er(n)){r.setStart(n,0),r.setEnd(n,0);break}if(o[n.nodeName.toLowerCase()]){r.setStartBefore(n),r.setEndBefore(n);break}s=n,n=e.next()}n||(r.setStart(s,0),r.setEnd(s,0))}else ar(t)?t.nextSibling&&n.isBlock(t.nextSibling)?(r.setStartBefore(t),r.setEndBefore(t)):(r.setStartAfter(t),r.setEndAfter(t)):(r.setStart(t,0),r.setEnd(t,0));e.selection.setRng(r),sg(e,r)},hN=(e,t)=>{const n=e.getRoot();let o,r=t;for(;r!==n&&r&&"false"!==e.getContentEditable(r);){if("true"===e.getContentEditable(r)){o=r;break}r=r.parentNode}return r!==n?o:n},bN=e=>I.from(e.dom.getParent(e.selection.getStart(!0),e.dom.isBlock)),vN=e=>{e.innerHTML='<br data-mce-bogus="1">'},yN=(e,t)=>{Il(e).toLowerCase()===t.tagName.toLowerCase()&&((e,t,n)=>{const o=e.dom;I.from(n.style).map(o.parseStyle).each((e=>{const n={...fo(yn(t)),...e};o.setStyles(t,n)}));const r=I.from(n.class).map((e=>e.split(/\s+/))),s=I.from(t.className).map((e=>Y(e.split(/\s+/),(e=>""!==e))));Mt(r,s,((e,n)=>{const r=Y(n,(t=>!H(e,t))),s=[...e,...r];o.setAttrib(t,"class",s.join(" "))}));const a=["style","class"],i=ye(n,((e,t)=>!H(a,t)));o.setAttribs(t,i)})(e,t,Fl(e))},CN=(e,t,n,o,r=!0,s,a)=>{const i=e.dom,l=e.schema,d=Il(e),c=n?n.nodeName.toUpperCase():"";let u=t;const m=l.getTextInlineElements();let f;f=s||"TABLE"===c||"HR"===c?i.create(s||d,a||{}):n.cloneNode(!1);let g=f;if(r){do{if(m[u.nodeName]){if(Du(u)||Ku(u))continue;const e=u.cloneNode(!1);i.setAttrib(e,"id",""),f.hasChildNodes()?(e.appendChild(f.firstChild),f.appendChild(e)):(g=e,f.appendChild(e))}}while((u=u.parentNode)&&u!==o)}else i.setAttrib(f,"style",null),i.setAttrib(f,"class",null);return yN(e,f),vN(g),f},wN=(e,t)=>{const n=null==e?void 0:e.parentNode;return C(n)&&n.nodeName===t},xN=e=>C(e)&&/^(OL|UL|LI)$/.test(e.nodeName),EN=e=>C(e)&&/^(LI|DT|DD)$/.test(e.nodeName),_N=e=>{const t=e.parentNode;return EN(t)?t:e},kN=(e,t,n)=>{let o=e[n?"firstChild":"lastChild"];for(;o&&!qo(o);)o=o[n?"nextSibling":"previousSibling"];return o===t},SN=e=>X(Ce(fo(yn(e)),((e,t)=>`${t}: ${e};`)),((e,t)=>e+t),""),NN=(e,t)=>t&&"A"===t.nodeName&&e.isEmpty(t),RN=(e,t)=>e.nodeName===t||e.previousSibling&&e.previousSibling.nodeName===t,AN=(e,t)=>C(t)&&e.isBlock(t)&&!/^(TD|TH|CAPTION|FORM)$/.test(t.nodeName)&&!/^(fixed|absolute)/i.test(t.style.position)&&e.isEditable(t.parentNode)&&"false"!==e.getContentEditable(t),TN=(e,t,n)=>er(t)?e?1===n&&t.data.charAt(n-1)===Br?0:n:n===t.data.length-1&&t.data.charAt(n)===Br?t.data.length:n:n,ON={insert:(e,t)=>{let n,o,r,s,a=!1;const i=e.dom,l=e.schema.getNonEmptyElements(),d=e.selection.getRng(),c=Il(e),u=yn(d.startContainer),f=In(u,d.startOffset),g=f.exists((e=>Vt(e)&&!oo(e))),p=d.collapsed&&g,b=(t,o)=>CN(e,n,k,_,Hl(e),t,o),v=e=>{const t=TN(e,n,o);if(er(n)&&(e?t>0:t<n.data.length))return!1;if(n.parentNode===k&&a&&!e)return!0;if(e&&qo(n)&&n===k.firstChild)return!0;if(RN(n,"TABLE")||RN(n,"HR"))return a&&!e||!a&&e;const r=new jo(n,k);let s;for(er(n)&&(e&&0===t?r.prev():e||t!==n.data.length||r.next());s=r.current();){if(qo(s)){if(!s.getAttribute("data-mce-bogus")){const e=s.nodeName.toLowerCase();if(l[e]&&"br"!==e)return!1}}else if(er(s)&&!ss(s.data))return!1;e?r.prev():r.next()}return!0},w=()=>{let t;return t=/^(H[1-6]|PRE|FIGURE)$/.test(r)&&"HGROUP"!==S?b(c):b(),((e,t)=>{const n=$l(e);return!y(t)&&(m(n)?H(Pt.explode(n),t.nodeName.toLowerCase()):n)})(e,s)&&AN(i,s)&&i.isEmpty(k,void 0,{includeZwsp:!0})?t=i.split(s,k):i.insertAfter(t,k),pN(e,t),t};Mf(i,d).each((e=>{d.setStart(e.startContainer,e.startOffset),d.setEnd(e.endContainer,e.endOffset)})),n=d.startContainer,o=d.startOffset;const x=!(!t||!t.shiftKey),E=!(!t||!t.ctrlKey);qo(n)&&n.hasChildNodes()&&!p&&(a=o>n.childNodes.length-1,n=n.childNodes[Math.min(o,n.childNodes.length-1)]||n,o=a&&er(n)?n.data.length:0);const _=hN(i,n);if(!_||((e,t)=>{const n=e.dom.getParent(t,"ol,ul,dl");return null!==n&&"false"===e.dom.getContentEditableParent(n)})(e,n))return;x||(n=((e,t,n,o,r)=>{var s,a;const i=e.dom,l=null!==(s=hN(i,o))&&void 0!==s?s:i.getRoot();let d=i.getParent(o,i.isBlock);if(!d||!AN(i,d)){if(d=d||l,!d.hasChildNodes()){const o=i.create(t);return yN(e,o),d.appendChild(o),n.setStart(o,0),n.setEnd(o,0),o}let s,c=o;for(;c&&c.parentNode!==d;)c=c.parentNode;for(;c&&!i.isBlock(c);)s=c,c=c.previousSibling;const u=null===(a=null==s?void 0:s.parentElement)||void 0===a?void 0:a.nodeName;if(s&&u&&e.schema.isValidChild(u,t.toLowerCase())){const a=s.parentNode,l=i.create(t);for(yN(e,l),a.insertBefore(l,s),c=s;c&&!i.isBlock(c);){const e=c.nextSibling;l.appendChild(c),c=e}n.setStart(o,r),n.setEnd(o,r)}}return o})(e,c,d,n,o));let k=i.getParent(n,i.isBlock)||i.getRoot();s=C(null==k?void 0:k.parentNode)?i.getParent(k.parentNode,i.isBlock):null,r=k?k.nodeName.toUpperCase():"";const S=s?s.nodeName.toUpperCase():"";if("LI"!==S||E||(k=s,s=s.parentNode,r=S),qo(s)&&((e,t,n)=>!t&&n.nodeName.toLowerCase()===Il(e)&&e.dom.isEmpty(n)&&((t,n,o)=>{let r=n;for(;r&&r!==t&&h(r.nextSibling);){const t=r.parentElement;if(!t||(s=t,!Ee(e.schema.getTextBlockElements(),s.nodeName.toLowerCase())))return gr(t);r=t}var s;return!1})(e.getBody(),n))(e,x,k))return((e,t,n)=>{var o,r,s;const a=t(Il(e)),i=((e,t)=>e.dom.getParent(t,gr))(e,n);i&&(e.dom.insertAfter(a,i),pN(e,a),(null!==(s=null===(r=null===(o=n.parentElement)||void 0===o?void 0:o.childNodes)||void 0===r?void 0:r.length)&&void 0!==s?s:0)>1&&e.dom.remove(n))})(e,b,k);if(/^(LI|DT|DD)$/.test(r)&&qo(s)&&i.isEmpty(k))return void((e,t,n,o,r)=>{const s=e.dom,a=e.selection.getRng(),i=n.parentNode;if(n===e.getBody()||!i)return;var l;xN(l=n)&&xN(l.parentNode)&&(r="LI");const d=EN(o)?SN(o):void 0;let c=EN(o)&&d?t(r,{style:SN(o)}):t(r);if(kN(n,o,!0)&&kN(n,o,!1))if(wN(n,"LI")){const e=_N(n);s.insertAfter(c,e),(e=>{var t;return(null===(t=e.parentNode)||void 0===t?void 0:t.firstChild)===e})(n)?s.remove(e):s.remove(n)}else s.replace(c,n);else if(kN(n,o,!0))wN(n,"LI")?(s.insertAfter(c,_N(n)),c.appendChild(s.doc.createTextNode(" ")),c.appendChild(n)):i.insertBefore(c,n),s.remove(o);else if(kN(n,o,!1))s.insertAfter(c,_N(n)),s.remove(o);else{n=_N(n);const e=a.cloneRange();e.setStartAfter(o),e.setEndAfter(n);const t=e.extractContents();if("LI"===r&&((e,t)=>e.firstChild&&"LI"===e.firstChild.nodeName)(t)){const e=Y(q(c.children,yn),O(Xt("br")));c=t.firstChild,s.insertAfter(t,n),V(e,(e=>bo(yn(c),e))),d&&c.setAttribute("style",d)}else s.insertAfter(t,n),s.insertAfter(c,n);s.remove(o)}pN(e,c)})(e,b,s,k,c);if(!(p||k!==e.getBody()&&AN(i,k)))return;const N=k.parentNode;let R;if(p)R=b(c),f.fold((()=>{vo(u,yn(R))}),(e=>{po(e,yn(R))})),e.selection.setCursorLocation(R,0);else if(Ir(k))R=Vr(k),i.isEmpty(k)&&vN(k),yN(e,R),pN(e,R);else if(v(!1))R=w();else if(v(!0)&&N){R=N.insertBefore(b(),k);const t=yn(d.startContainer).dom.hasChildNodes()&&d.collapsed;pN(e,RN(k,"HR")||t?R:k)}else{const t=(e=>{const t=e.cloneRange();return t.setStart(e.startContainer,TN(!0,e.startContainer,e.startOffset)),t.setEnd(e.endContainer,TN(!1,e.endContainer,e.endOffset)),t})(d).cloneRange();t.setEndAfter(k);const n=t.extractContents();(e=>{V(Fo(yn(e),Kt),(e=>{const t=e.dom;t.nodeValue=Dr(t.data)}))})(n),(e=>{let t=e;do{er(t)&&(t.data=t.data.replace(/^[\r\n]+/,"")),t=t.firstChild}while(t)})(n),R=n.firstChild,i.insertAfter(n,k),((e,t,n)=>{var o;const r=[];if(!n)return;let s=n;for(;s=s.firstChild;){if(e.isBlock(s))return;qo(s)&&!t[s.nodeName.toLowerCase()]&&r.push(s)}let a=r.length;for(;a--;)s=r[a],(!s.hasChildNodes()||s.firstChild===s.lastChild&&""===(null===(o=s.firstChild)||void 0===o?void 0:o.nodeValue)||NN(e,s))&&e.remove(s)})(i,l,R),((e,t)=>{t.normalize();const n=t.lastChild;(!n||qo(n)&&/^(left|right)$/gi.test(e.getStyle(n,"float",!0)))&&e.add(t,"br")})(i,k),i.isEmpty(k)&&vN(k),R.normalize(),i.isEmpty(R)?(i.remove(R),w()):(yN(e,R),pN(e,R))}i.setAttrib(R,"id",""),e.dispatch("NewBlock",{newBlock:R})},fakeEventName:"insertParagraph"},BN=(e,t,n)=>{const o=e.dom.createRng();n?(o.setStartBefore(t),o.setEndBefore(t)):(o.setStartAfter(t),o.setEndAfter(t)),e.selection.setRng(o),sg(e,o)},PN=(e,t)=>{const n=bn("br");po(yn(t),n),e.undoManager.add()},DN=(e,t)=>{LN(e.getBody(),t)||ho(yn(t),bn("br"));const n=bn("br");ho(yn(t),n),BN(e,n.dom,!1),e.undoManager.add()},LN=(e,t)=>{return n=Vi.after(t),!!ar(n.getNode())||Au(e,Vi.after(t)).map((e=>ar(e.getNode()))).getOr(!1);var n},MN=e=>e&&"A"===e.nodeName&&"href"in e,IN=e=>e.fold(L,MN,MN,L),FN=(e,t)=>{t.fold(_,T(PN,e),T(DN,e),_)},UN={insert:(e,t)=>{const n=(e=>{const t=T(Ch,e),n=Vi.fromRangeStart(e.selection.getRng());return iE(t,e.getBody(),n).filter(IN)})(e);n.isSome()?n.each(T(FN,e)):((e,t)=>{const n=e.selection,o=e.dom,r=n.getRng();let s,a=!1;Mf(o,r).each((e=>{r.setStart(e.startContainer,e.startOffset),r.setEnd(e.endContainer,e.endOffset)}));let i=r.startOffset,l=r.startContainer;if(qo(l)&&l.hasChildNodes()){const e=i>l.childNodes.length-1;l=l.childNodes[Math.min(i,l.childNodes.length-1)]||l,i=e&&er(l)?l.data.length:0}let d=o.getParent(l,o.isBlock);const c=d&&d.parentNode?o.getParent(d.parentNode,o.isBlock):null,u=c?c.nodeName.toUpperCase():"",m=!(!t||!t.ctrlKey);"LI"!==u||m||(d=c),er(l)&&i>=l.data.length&&(((e,t,n)=>{const o=new jo(t,n);let r;const s=e.getNonEmptyElements();for(;r=o.next();)if(s[r.nodeName.toLowerCase()]||er(r)&&r.length>0)return!0;return!1})(e.schema,l,d||o.getRoot())||(s=o.create("br"),r.insertNode(s),r.setStartAfter(s),r.setEndAfter(s),a=!0)),s=o.create("br"),Ki(o,r,s),BN(e,s,a),e.undoManager.add()})(e,t)},fakeEventName:"insertLineBreak"},zN=(e,t)=>bN(e).filter((e=>t.length>0&&xn(yn(e),t))).isSome(),jN=hl([{br:[]},{block:[]},{none:[]}]),HN=(e,t)=>(e=>zN(e,jl(e)))(e),$N=e=>(t,n)=>(e=>bN(e).filter((e=>Sr(yn(e)))).isSome())(t)===e,qN=(e,t)=>(n,o)=>{const r=(e=>bN(e).fold(N(""),(e=>e.nodeName.toUpperCase())))(n)===e.toUpperCase();return r===t},VN=e=>{const t=hN(e.dom,e.selection.getStart());return y(t)},WN=e=>qN("pre",e),KN=e=>(t,n)=>Ml(t)===e,YN=(e,t)=>(e=>zN(e,zl(e)))(e),GN=(e,t)=>t,XN=e=>{const t=Il(e),n=hN(e.dom,e.selection.getStart());return C(n)&&e.schema.isValidChild(n.nodeName,t)},QN=e=>{const t=e.selection.getRng(),n=yn(t.startContainer),o=In(n,t.startOffset).map((e=>Vt(e)&&!oo(e)));return t.collapsed&&o.getOr(!0)},JN=(e,t)=>(n,o)=>X(e,((e,t)=>e&&t(n,o)),!0)?I.some(t):I.none(),ZN=(e,t,n)=>{t.selection.isCollapsed()||(e=>{e.execCommand("delete")})(t),C(n)&&cN(t,e.fakeEventName).isDefaultPrevented()||(e.insert(t,n),C(n)&&dN(t,e.fakeEventName))},eR=(e,t)=>{const n=()=>ZN(UN,e,t),o=()=>ZN(ON,e,t),r=((e,t)=>Qx([JN([HN],jN.none()),JN([WN(!0),VN],jN.none()),JN([qN("summary",!0)],jN.br()),JN([WN(!0),KN(!1),GN],jN.br()),JN([WN(!0),KN(!1)],jN.block()),JN([WN(!0),KN(!0),GN],jN.block()),JN([WN(!0),KN(!0)],jN.br()),JN([$N(!0),GN],jN.br()),JN([$N(!0)],jN.block()),JN([YN],jN.br()),JN([GN],jN.br()),JN([XN],jN.block()),JN([QN],jN.block())],[e,!(!t||!t.shiftKey)]).getOr(jN.none()))(e,t);switch(Ul(e)){case"linebreak":r.fold(n,n,_);break;case"block":r.fold(o,o,_);break;case"invert":r.fold(o,n,_);break;default:r.fold(n,o,_)}},tR=xt(),nR=tR.os.isiOS()&&tR.browser.isSafari(),oR=(e,t)=>{var n;t.isDefaultPrevented()||(t.preventDefault(),(n=e.undoManager).typing&&(n.typing=!1,n.add()),e.undoManager.transact((()=>{eR(e,t)})))},rR=xt(),sR=e=>e.stopImmediatePropagation(),aR=e=>e.keyCode===af.PAGE_UP||e.keyCode===af.PAGE_DOWN,iR=(e,t,n)=>{n&&!e.get()?t.on("NodeChange",sR,!0):!n&&e.get()&&t.off("NodeChange",sR),e.set(n)},lR=(e,t)=>{const n=t.container(),o=t.offset();return er(n)?(n.insertData(o,e),I.some(Vi(n,o+e.length))):iu(t).map((n=>{const o=vn(e);return t.isAtEnd()?ho(n,o):po(n,o),Vi(o.dom,e.length)}))},dR=T(lR,br),cR=T(lR," "),uR=e=>t=>{e.selection.setRng(t.toRange()),e.nodeChanged()},mR=e=>{const t=Vi.fromRangeStart(e.selection.getRng()),n=yn(e.getBody());if(e.selection.isCollapsed()){const o=T(Ch,e),r=Vi.fromRangeStart(e.selection.getRng());return iE(o,e.getBody(),r).bind((e=>t=>t.fold((t=>Tu(e.dom,Vi.before(t))),(e=>Ou(e)),(e=>Bu(e)),(t=>Au(e.dom,Vi.after(t)))))(n)).map((o=>()=>((e,t,n)=>o=>Zp(e,o,n)?dR(t):cR(t))(n,t,e.schema)(o).each(uR(e))))}return I.none()},fR=e=>{return It(At.browser.isFirefox()&&e.selection.isEditable()&&(t=e.dom,n=e.selection.getRng().startContainer,t.isEditable(t.getParent(n,"summary"))),(()=>{const t=yn(e.getBody());e.selection.isCollapsed()||e.getDoc().execCommand("Delete"),((e,t,n)=>Zp(e,t,n)?dR(t):cR(t))(t,Vi.fromRangeStart(e.selection.getRng()),e.schema).each(uR(e))}));var t,n},gR=e=>hc(e)?[{keyCode:af.TAB,action:tk(Rk,e,!0)},{keyCode:af.TAB,shiftKey:!0,action:tk(Rk,e,!1)}]:[],pR=e=>{if(e.addShortcut("Meta+P","","mcePrint"),QS(e),XC(e))return $a(null);{const t=o_(e);return(e=>{e.on("beforeinput",(t=>{e.selection.isEditable()&&!$(t.getTargetRanges(),(t=>!Og(e.dom,t)))||t.preventDefault()}))})(e),(e=>{e.on("keyup compositionstart",T($_,e))})(e),((e,t)=>{e.on("keydown",(n=>{n.isDefaultPrevented()||((e,t,n)=>{const o=At.os.isMacOS()||At.os.isiOS();nk([{keyCode:af.RIGHT,action:tk(W_,e,!0)},{keyCode:af.LEFT,action:tk(W_,e,!1)},{keyCode:af.UP,action:tk(K_,e,!1)},{keyCode:af.DOWN,action:tk(K_,e,!0)},...o?[{keyCode:af.UP,action:tk(G_,e,!1),metaKey:!0,shiftKey:!0},{keyCode:af.DOWN,action:tk(G_,e,!0),metaKey:!0,shiftKey:!0}]:[],{keyCode:af.RIGHT,action:tk(Ek,e,!0)},{keyCode:af.LEFT,action:tk(Ek,e,!1)},{keyCode:af.UP,action:tk(_k,e,!1)},{keyCode:af.DOWN,action:tk(_k,e,!0)},{keyCode:af.UP,action:tk(_k,e,!1)},{keyCode:af.UP,action:tk(J_,e,!1)},{keyCode:af.DOWN,action:tk(J_,e,!0)},{keyCode:af.RIGHT,action:tk(rk,e,!0)},{keyCode:af.LEFT,action:tk(rk,e,!1)},{keyCode:af.UP,action:tk(sk,e,!1)},{keyCode:af.DOWN,action:tk(sk,e,!0)},{keyCode:af.RIGHT,action:tk(t_,e,t,!0)},{keyCode:af.LEFT,action:tk(t_,e,t,!1)},{keyCode:af.RIGHT,ctrlKey:!o,altKey:o,action:tk(r_,e,t)},{keyCode:af.LEFT,ctrlKey:!o,altKey:o,action:tk(s_,e,t)},{keyCode:af.UP,action:tk(Q_,e,!1)},{keyCode:af.DOWN,action:tk(Q_,e,!0)}],n).each((e=>{n.preventDefault()}))})(e,t,n)}))})(e,t),((e,t)=>{let n=!1;e.on("keydown",(o=>{n=o.keyCode===af.BACKSPACE,o.isDefaultPrevented()||((e,t,n)=>{const o=n.keyCode===af.BACKSPACE?"deleteContentBackward":"deleteContentForward",r=e.selection.isCollapsed(),s=r?"character":"selection",a=e=>r?e?"word":"line":"selection";ok([{keyCode:af.BACKSPACE,action:tk(T_,e)},{keyCode:af.BACKSPACE,action:tk(Ux,e,!1)},{keyCode:af.DELETE,action:tk(Ux,e,!0)},{keyCode:af.BACKSPACE,action:tk(Ox,e,!1)},{keyCode:af.DELETE,action:tk(Ox,e,!0)},{keyCode:af.BACKSPACE,action:tk(d_,e,t,!1)},{keyCode:af.DELETE,action:tk(d_,e,t,!0)},{keyCode:af.BACKSPACE,action:tk(ib,e,!1)},{keyCode:af.DELETE,action:tk(ib,e,!0)},{keyCode:af.BACKSPACE,action:tk(iN,e,!1,s)},{keyCode:af.DELETE,action:tk(iN,e,!0,s)},...fN?[{keyCode:af.BACKSPACE,altKey:!0,action:tk(iN,e,!1,a(!0))},{keyCode:af.DELETE,altKey:!0,action:tk(iN,e,!0,a(!0))},{keyCode:af.BACKSPACE,metaKey:!0,action:tk(iN,e,!1,a(!1))}]:[{keyCode:af.BACKSPACE,ctrlKey:!0,action:tk(iN,e,!1,a(!0))},{keyCode:af.DELETE,ctrlKey:!0,action:tk(iN,e,!0,a(!0))}],{keyCode:af.BACKSPACE,action:tk(zx,e,!1)},{keyCode:af.DELETE,action:tk(zx,e,!0)},{keyCode:af.BACKSPACE,action:tk(x_,e,!1)},{keyCode:af.DELETE,action:tk(x_,e,!0)},{keyCode:af.BACKSPACE,action:tk(_x,e,!1)},{keyCode:af.DELETE,action:tk(_x,e,!0)},{keyCode:af.BACKSPACE,action:tk(wx,e,!1)},{keyCode:af.DELETE,action:tk(wx,e,!0)},{keyCode:af.BACKSPACE,action:tk(v_,e,!1)},{keyCode:af.DELETE,action:tk(v_,e,!0)}],n).filter((t=>e.selection.isEditable())).each((t=>{n.preventDefault(),cN(e,o).isDefaultPrevented()||(t(),dN(e,o))}))})(e,t,o)})),e.on("keyup",(t=>{t.isDefaultPrevented()||((e,t,n)=>{nk([{keyCode:af.BACKSPACE,action:tk(Fx,e)},{keyCode:af.DELETE,action:tk(Fx,e)},...fN?[{keyCode:af.BACKSPACE,altKey:!0,action:tk(C_,e)},{keyCode:af.DELETE,altKey:!0,action:tk(C_,e)},...n?[{keyCode:gN?224:91,action:tk(C_,e)}]:[]]:[{keyCode:af.BACKSPACE,ctrlKey:!0,action:tk(C_,e)},{keyCode:af.DELETE,ctrlKey:!0,action:tk(C_,e)}]],t)})(e,t,n),n=!1}))})(e,t),(e=>{let t=I.none();e.on("keydown",(n=>{n.keyCode===af.ENTER&&(nR&&(e=>{if(!e.collapsed)return!1;const t=e.startContainer;if(er(t)){const n=/^[\uAC00-\uD7AF\u1100-\u11FF\u3130-\u318F\uA960-\uA97F\uD7B0-\uD7FF]$/,o=t.data.charAt(e.startOffset-1);return n.test(o)}return!1})(e.selection.getRng())?(e=>{t=I.some(e.selection.getBookmark()),e.undoManager.add()})(e):oR(e,n))})),e.on("keyup",(n=>{n.keyCode===af.ENTER&&t.each((()=>((e,n)=>{e.undoManager.undo(),t.fold(_,(t=>e.selection.moveToBookmark(t))),oR(e,n),t=I.none()})(e,n)))}))})(e),(e=>{e.on("keydown",(t=>{t.isDefaultPrevented()||((e,t)=>{ok([{keyCode:af.SPACEBAR,action:tk(mR,e)},{keyCode:af.SPACEBAR,action:tk(fR,e)}],t).each((n=>{t.preventDefault(),cN(e,"insertText",{data:" "}).isDefaultPrevented()||(n(),dN(e,"insertText",{data:" "}))}))})(e,t)}))})(e),(e=>{e.on("input",(t=>{t.isComposing||(e=>{const t=yn(e.getBody());e.selection.isCollapsed()&&ih(t,Vi.fromRangeStart(e.selection.getRng()),e.schema).each((t=>{e.selection.setRng(t.toRange())}))})(e)}))})(e),(e=>{e.on("keydown",(t=>{t.isDefaultPrevented()||((e,t)=>{nk([...gR(e)],t).each((e=>{t.preventDefault()}))})(e,t)}))})(e),((e,t)=>{e.on("keydown",(n=>{n.isDefaultPrevented()||((e,t,n)=>{const o=At.os.isMacOS()||At.os.isiOS();nk([{keyCode:af.END,action:tk(Y_,e,!0)},{keyCode:af.HOME,action:tk(Y_,e,!1)},...o?[]:[{keyCode:af.HOME,action:tk(G_,e,!1),ctrlKey:!0,shiftKey:!0},{keyCode:af.END,action:tk(G_,e,!0),ctrlKey:!0,shiftKey:!0}],{keyCode:af.END,action:tk(ak,e,!0)},{keyCode:af.HOME,action:tk(ak,e,!1)},{keyCode:af.END,action:tk(a_,e,!0,t)},{keyCode:af.HOME,action:tk(a_,e,!1,t)}],n).each((e=>{n.preventDefault()}))})(e,t,n)}))})(e,t),((e,t)=>{if(rR.os.isMacOS())return;const n=$a(!1);e.on("keydown",(t=>{aR(t)&&iR(n,e,!0)})),e.on("keyup",(o=>{o.isDefaultPrevented()||((e,t,n)=>{nk([{keyCode:af.PAGE_UP,action:tk(a_,e,!1,t)},{keyCode:af.PAGE_DOWN,action:tk(a_,e,!0,t)}],n)})(e,t,o),aR(o)&&n.get()&&(iR(n,e,!1),e.nodeChanged())}))})(e,t),t}};class hR{constructor(e){let t;this.lastPath=[],this.editor=e;const n=this;"onselectionchange"in e.getDoc()||e.on("NodeChange click mouseup keyup focus",(n=>{const o=e.selection.getRng(),r={startContainer:o.startContainer,startOffset:o.startOffset,endContainer:o.endContainer,endOffset:o.endOffset};"nodechange"!==n.type&&Af(r,t)||e.dispatch("SelectionChange"),t=r})),e.on("contextmenu",(()=>{e.dispatch("SelectionChange")})),e.on("SelectionChange",(()=>{const t=e.selection.getStart(!0);t&&am(e)&&!n.isSameElementPath(t)&&e.dom.isChildOf(t,e.getBody())&&e.nodeChanged({selectionChange:!0})})),e.on("mouseup",(t=>{!t.isDefaultPrevented()&&am(e)&&("IMG"===e.selection.getNode().nodeName?vg.setEditorTimeout(e,(()=>{e.nodeChanged()})):e.nodeChanged())}))}nodeChanged(e={}){const t=this.editor.selection;let n;if(this.editor.initialized&&t&&!Od(this.editor)&&!this.editor.mode.isReadOnly()){const o=this.editor.getBody();n=t.getStart(!0)||o,n.ownerDocument===this.editor.getDoc()&&this.editor.dom.isChildOf(n,o)||(n=o);const r=[];this.editor.dom.getParent(n,(e=>e===o||(r.push(e),!1))),this.editor.dispatch("NodeChange",{...e,element:n,parents:r})}}isSameElementPath(e){let t;const n=this.editor,o=oe(n.dom.getParents(e,M,n.getBody()));if(o.length===this.lastPath.length){for(t=o.length;t>=0&&o[t]===this.lastPath[t];t--);if(-1===t)return this.lastPath=o,!0}return this.lastPath=o,!1}}const bR=ui("image"),vR=ui("event"),yR=e=>t=>{t[vR]=e},CR=yR(0),wR=yR(2),xR=yR(1),ER=(0,e=>{const t=e;return I.from(t[vR]).exists((e=>0===e))});const _R=ui("mode"),kR=e=>t=>{t[_R]=e},SR=(e,t)=>kR(t)(e),NR=kR(0),RR=kR(2),AR=kR(1),TR=e=>t=>{const n=t;return I.from(n[_R]).exists((t=>t===e))},OR=TR(0),BR=TR(1),PR=["none","copy","link","move"],DR=["none","copy","copyLink","copyMove","link","linkMove","move","all","uninitialized"],LR=()=>{const e=new window.DataTransfer;let t="move",n="all";const o={get dropEffect(){return t},set dropEffect(e){H(PR,e)&&(t=e)},get effectAllowed(){return n},set effectAllowed(e){ER(o)&&H(DR,e)&&(n=e)},get items(){return((e,t)=>({...t,get length(){return t.length},add:(n,o)=>{if(OR(e)){if(!m(n))return t.add(n);if(!v(o))return t.add(n,o)}return null},remove:n=>{OR(e)&&t.remove(n)},clear:()=>{OR(e)&&t.clear()}}))(o,e.items)},get files(){return BR(o)?Object.freeze({length:0,item:e=>null}):e.files},get types(){return e.types},setDragImage:(t,n,r)=>{var s;OR(o)&&(s={image:t,x:n,y:r},o[bR]=s,e.setDragImage(t,n,r))},getData:t=>BR(o)?"":e.getData(t),setData:(t,n)=>{OR(o)&&e.setData(t,n)},clearData:t=>{OR(o)&&e.clearData(t)}};return NR(o),o},MR=(e,t)=>e.setData("text/html",t),IR="x-tinymce/html",FR=N(IR),UR="\x3c!-- "+IR+" --\x3e",zR=e=>UR+e,jR=e=>-1!==e.indexOf(UR),HR="%MCEPASTEBIN%",$R=e=>e.dom.get("mcepastebin"),qR=e=>C(e)&&"mcepastebin"===e.id,VR=e=>e===HR,WR=(e,t)=>(Pt.each(t,(t=>{e=u(t,RegExp)?e.replace(t,""):e.replace(t[0],t[1])})),e),KR=e=>WR(e,[/^[\s\S]*<body[^>]*>\s*|\s*<\/body[^>]*>[\s\S]*$/gi,/<!--StartFragment-->|<!--EndFragment-->/g,[/( ?)<span class="Apple-converted-space">\u00a0<\/span>( ?)/g,(e,t,n)=>t||n?br:" "],/<br class="Apple-interchange-newline">/g,/<br>$/i]),YR=(e,t)=>({content:e,cancelled:t}),GR=(e,t)=>(e.insertContent(t,{merge:tc(e),paste:!0}),!0),XR=e=>/^https?:\/\/[\w\-\/+=.,!;:&%@^~(){}?#]+$/i.test(e),QR=(e,t,n)=>!(e.selection.isCollapsed()||!XR(t))&&((e,t,n)=>(e.undoManager.extra((()=>{n(e,t)}),(()=>{e.execCommand("mceInsertLink",!1,t)})),!0))(e,t,n),JR=(e,t,n)=>!!((e,t)=>XR(t)&&$(pc(e),(e=>$e(t.toLowerCase(),`.${e.toLowerCase()}`))))(e,t)&&((e,t,n)=>(e.undoManager.extra((()=>{n(e,t)}),(()=>{e.insertContent('<img src="'+t+'">')})),!0))(e,t,n),ZR=(e=>{let t=0;return()=>"mceclip"+t++})(),eA=e=>{const t=LR();return MR(t,e),RR(t),t},tA=(e,t,n,o,r)=>{const s=((e,t,n)=>((e,t,n)=>{const o=((e,t,n)=>e.dispatch("PastePreProcess",{content:t,internal:n}))(e,t,n),r=((e,t)=>{const n=bC({sanitize:fc(e),sandbox_iframes:Cc(e)},e.schema);n.addNodeFilter("meta",(e=>{Pt.each(e,(e=>{e.remove()}))}));const o=n.parse(t,{forced_root_block:!1,isRootContent:!0});return up({validate:!0},e.schema).serialize(o)})(e,o.content);return e.hasEventListeners("PastePostProcess")&&!o.isDefaultPrevented()?((e,t,n)=>{const o=e.dom.create("div",{style:"display:none"},t),r=((e,t,n)=>e.dispatch("PastePostProcess",{node:t,internal:n}))(e,o,n);return YR(r.node.innerHTML,r.isDefaultPrevented())})(e,r,n):YR(r,o.isDefaultPrevented())})(e,t,n))(e,t,n);if(!s.cancelled){const t=s.content,n=()=>((e,t,n)=>{n||!nc(e)?GR(e,t):((e,t)=>{Pt.each([QR,JR,GR],(n=>!n(e,t,GR)))})(e,t)})(e,t,o);r?cN(e,"insertFromPaste",{dataTransfer:eA(t)}).isDefaultPrevented()||(n(),dN(e,"insertFromPaste")):n()}},nA=(e,t,n,o)=>{const r=n||jR(t);tA(e,(e=>e.replace(UR,""))(t),r,!1,o)},oA=(e,t,n)=>{const o=e.dom.encode(t).replace(/\r\n/g,"\n"),r=((e,t,n)=>{const o=e.split(/\n\n/),r=((e,t)=>{let n="<"+e;const o=Ce(t,((e,t)=>t+'="'+ea.encodeAllRaw(e)+'"'));return o.length&&(n+=" "+o.join(" ")),n+">"})(t,n),s="</"+t+">",a=q(o,(e=>e.split(/\n/).join("<br />")));return 1===a.length?a[0]:q(a,(e=>r+e+s)).join("")})(ls(o,rc(e)),Il(e),Fl(e));tA(e,r,!1,!0,n)},rA=e=>{const t={};if(e&&e.types)for(let n=0;n<e.types.length;n++){const o=e.types[n];try{t[o]=e.getData(o)}catch(e){t[o]=""}}return t},sA=(e,t)=>t in e&&e[t].length>0,aA=e=>sA(e,"text/html")||sA(e,"text/plain"),iA=(e,t,n)=>{const o="paste"===t.type?t.clipboardData:t.dataTransfer;var r;if(Gd(e)&&o){const s=((e,t)=>{const n=t.items?te(ce(t.items),(e=>"file"===e.kind?[e.getAsFile()]:[])):[],o=t.files?ce(t.files):[];return Y(n.length>0?n:o,(e=>{const t=pc(e);return e=>He(e.type,"image/")&&$(t,(t=>(e=>{const t=e.toLowerCase(),n={jpg:"jpeg",jpe:"jpeg",jfi:"jpeg",jif:"jpeg",jfif:"jpeg",pjpeg:"jpeg",pjp:"jpeg",svg:"svg+xml"};return Pt.hasOwn(n,t)?"image/"+n[t]:"image/"+t})(t)===e.type))})(e))})(e,o);if(s.length>0)return t.preventDefault(),(r=s,Promise.all(q(r,(e=>Gv(e).then((t=>({file:e,uri:t}))))))).then((t=>{n&&e.selection.setRng(n),V(t,(t=>{((e,t)=>{Kv(t.uri).each((({data:n,type:o,base64Encoded:r})=>{const s=r?n:btoa(n),a=t.file,i=e.editorUpload.blobCache,l=i.getByData(s,o),d=null!=l?l:((e,t,n,o)=>{const r=ZR(),s=Vl(e)&&C(n.name),a=s?((e,t)=>{const n=t.match(/([\s\S]+?)(?:\.[a-z0-9.]+)$/i);return C(n)?e.dom.encode(n[1]):void 0})(e,n.name):r,i=s?n.name:void 0,l=t.create(r,n,o,a,i);return t.add(l),l})(e,i,a,s);nA(e,`<img src="${d.blobUri()}">`,!1,!0)}))})(e,t)}))})),!0}return!1},lA=(e,t,n,o,r)=>{let s=KR(n);const a=sA(t,FR())||jR(n),i=!a&&(e=>!/<(?:\/?(?!(?:div|p|br|span)>)\w+|(?:(?!(?:span style="white-space:\s?pre;?">)|br\s?\/>))\w+\s[^>]+)>/i.test(e))(s),l=XR(s);(VR(s)||!s.length||i&&!l)&&(o=!0),(o||l)&&(s=sA(t,"text/plain")&&i?t["text/plain"]:(e=>{const t=ua(),n=bC({},t);let o="";const r=t.getVoidElements(),s=Pt.makeMap("script noscript style textarea video audio iframe object"," "),a=t.getBlockElements(),i=e=>{const n=e.name,l=e;if("br"!==n){if("wbr"!==n)if(r[n]&&(o+=" "),s[n])o+=" ";else{if(3===e.type&&(o+=e.value),!(e.name in t.getVoidElements())){let t=e.firstChild;if(t)do{i(t)}while(t=t.next)}a[n]&&l.next&&(o+="\n","p"===n&&(o+="\n"))}}else o+="\n"};return e=WR(e,[/<!\[[^\]]+\]>/g]),i(n.parse(e)),o})(s)),VR(s)||(o?oA(e,s,r):nA(e,s,a,r))},dA=(e,t,n)=>{((e,t,n)=>{let o;e.on("keydown",(e=>{(e=>af.metaKeyPressed(e)&&86===e.keyCode||e.shiftKey&&45===e.keyCode)(e)&&!e.isDefaultPrevented()&&(o=e.shiftKey&&86===e.keyCode)})),e.on("paste",(r=>{if(r.isDefaultPrevented()||(e=>{var t,n;return At.os.isAndroid()&&0===(null===(n=null===(t=e.clipboardData)||void 0===t?void 0:t.items)||void 0===n?void 0:n.length)})(r))return;const s="text"===n.get()||o;o=!1;const a=rA(r.clipboardData);!aA(a)&&iA(e,r,t.getLastRng()||e.selection.getRng())||(sA(a,"text/html")?(r.preventDefault(),lA(e,a,a["text/html"],s,!0)):sA(a,"text/plain")&&sA(a,"text/uri-list")?(r.preventDefault(),lA(e,a,a["text/plain"],s,!0)):(t.create(),vg.setEditorTimeout(e,(()=>{const n=t.getHtml();t.remove(),lA(e,a,n,s,!1)}),0)))}))})(e,t,n),(e=>{const t=e=>He(e,"webkit-fake-url"),n=e=>He(e,"data:");e.parser.addNodeFilter("img",((o,r,s)=>{if(!Gd(e)&&(e=>{var t;return!0===(null===(t=e.data)||void 0===t?void 0:t.paste)})(s))for(const r of o){const o=r.attr("src");m(o)&&!r.attr("data-mce-object")&&o!==At.transparentSrc&&(t(o)||!sc(e)&&n(o))&&r.remove()}}))})(e)},cA=(e,t,n,o)=>{((e,t,n)=>{if(!e)return!1;try{return e.clearData(),e.setData("text/html",t),e.setData("text/plain",n),e.setData(FR(),t),!0}catch(e){return!1}})(e.clipboardData,t.html,t.text)?(e.preventDefault(),o()):n(t.html,o)},uA=e=>(t,n)=>{const{dom:o,selection:r}=e,s=o.create("div",{contenteditable:"false","data-mce-bogus":"all"}),a=o.create("div",{contenteditable:"true"},t);o.setStyles(s,{position:"fixed",top:"0",left:"-3000px",width:"1000px",overflow:"hidden"}),s.appendChild(a),o.add(e.getBody(),s);const i=r.getRng();a.focus();const l=o.createRng();l.selectNodeContents(a),r.setRng(l),vg.setEditorTimeout(e,(()=>{r.setRng(i),o.remove(s),n()}),0)},mA=e=>({html:zR(e.selection.getContent({contextual:!0})),text:e.selection.getContent({format:"text"})}),fA=e=>!e.selection.isCollapsed()||(e=>!!e.dom.getParent(e.selection.getStart(),"td[data-mce-selected],th[data-mce-selected]",e.getBody()))(e),gA=(e,t)=>{var n,o;return Uf.getCaretRangeFromPoint(null!==(n=t.clientX)&&void 0!==n?n:0,null!==(o=t.clientY)&&void 0!==o?o:0,e.getDoc())},pA=(e,t)=>{e.focus(),t&&e.selection.setRng(t)},hA=/rgb\s*\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)/gi,bA=e=>Pt.trim(e).replace(hA,Ca).toLowerCase(),vA=(e,t,n)=>{const o=Zd(e);if(n||"all"===o||!ec(e))return t;const r=o?o.split(/[, ]/):[];if(r&&"none"!==o){const n=e.dom,o=e.selection.getNode();t=t.replace(/(<[^>]+) style="([^"]*)"([^>]*>)/gi,((e,t,s,a)=>{const i=n.parseStyle(n.decode(s)),l={};for(let e=0;e<r.length;e++){const t=i[r[e]];let s=t,a=n.getStyle(o,r[e],!0);/color/.test(r[e])&&(s=bA(s),a=bA(a)),a!==s&&(l[r[e]]=t)}const d=n.serializeStyle(l,"span");return d?t+' style="'+d+'"'+a:t+a}))}else t=t.replace(/(<[^>]+) style="([^"]*)"([^>]*>)/gi,"$1$3");return t=t.replace(/(<[^>]+) data-mce-style="([^"]+)"([^>]*>)/gi,((e,t,n,o)=>t+' style="'+n+'"'+o)),t},yA=e=>{const t=$a(!1),n=$a(oc(e)?"text":"html"),o=(e=>{const t=$a(null);return{create:()=>((e,t)=>{const{dom:n,selection:o}=e,r=e.getBody();t.set(o.getRng());const s=n.add(e.getBody(),"div",{id:"mcepastebin",class:"mce-pastebin",contentEditable:!0,"data-mce-bogus":"all",style:"position: fixed; top: 50%; width: 10px; height: 10px; overflow: hidden; opacity: 0"},HR);At.browser.isFirefox()&&n.setStyle(s,"left","rtl"===n.getStyle(r,"direction",!0)?65535:-65535),n.bind(s,"beforedeactivate focusin focusout",(e=>{e.stopPropagation()})),s.focus(),o.select(s,!0)})(e,t),remove:()=>((e,t)=>{const n=e.dom;if($R(e)){let o;const r=t.get();for(;o=$R(e);)n.remove(o),n.unbind(o);r&&e.selection.setRng(r)}t.set(null)})(e,t),getEl:()=>$R(e),getHtml:()=>(e=>{const t=e.dom,n=(e,n)=>{e.appendChild(n),t.remove(n,!0)},[o,...r]=Y(e.getBody().childNodes,qR);V(r,(e=>{n(o,e)}));const s=t.select("div[id=mcepastebin]",o);for(let e=s.length-1;e>=0;e--){const r=t.create("div");o.insertBefore(r,s[e]),n(r,s[e])}return o?o.innerHTML:""})(e),getLastRng:t.get}})(e);(e=>{(At.browser.isChromium()||At.browser.isSafari())&&((e,t)=>{e.on("PastePreProcess",(n=>{n.content=t(e,n.content,n.internal)}))})(e,vA)})(e),((e,t)=>{e.addCommand("mceTogglePlainTextPaste",(()=>{((e,t)=>{"text"===t.get()?(t.set("html"),sf(e,!1)):(t.set("text"),sf(e,!0)),e.focus()})(e,t)})),e.addCommand("mceInsertClipboardContent",((t,n)=>{n.html&&nA(e,n.html,n.internal,!1),n.text&&oA(e,n.text,!1)}))})(e,n),(e=>{const t=t=>n=>{t(e,n)},n=Xd(e);w(n)&&e.on("PastePreProcess",t(n));const o=Qd(e);w(o)&&e.on("PastePostProcess",t(o))})(e),e.on("PreInit",(()=>{(e=>{e.on("cut",(e=>t=>{!t.isDefaultPrevented()&&fA(e)&&e.selection.isEditable()&&cA(t,mA(e),uA(e),(()=>{if(At.browser.isChromium()||At.browser.isFirefox()){const t=e.selection.getRng();vg.setEditorTimeout(e,(()=>{e.selection.setRng(t),e.execCommand("Delete")}),0)}else e.execCommand("Delete")}))})(e)),e.on("copy",(e=>t=>{!t.isDefaultPrevented()&&fA(e)&&cA(t,mA(e),uA(e),_)})(e))})(e),((e,t)=>{Yd(e)&&e.on("dragend dragover draggesture dragdrop drop drag",(e=>{e.preventDefault(),e.stopPropagation()})),Gd(e)||e.on("drop",(e=>{const t=e.dataTransfer;t&&(e=>$(e.files,(e=>/^image\//.test(e.type))))(t)&&e.preventDefault()})),e.on("drop",(n=>{if(n.isDefaultPrevented())return;const o=gA(e,n);if(y(o))return;const r=rA(n.dataTransfer),s=sA(r,FR());if((!aA(r)||(e=>{const t=e["text/plain"];return!!t&&0===t.indexOf("file://")})(r))&&iA(e,n,o))return;const a=r[FR()],i=a||r["text/html"]||r["text/plain"],l=((e,t,n,o)=>{const r=e.getParent(n,(e=>Ts(t,e)));if(!h(e.getParent(n,"summary")))return!0;if(r&&Ee(o,"text/html")){const e=(new DOMParser).parseFromString(o["text/html"],"text/html").body;return!h(e.querySelector(r.nodeName.toLowerCase()))}return!1})(e.dom,e.schema,o.startContainer,r),d=t.get();d&&!l||i&&(n.preventDefault(),vg.setEditorTimeout(e,(()=>{e.undoManager.transact((()=>{(a||d&&l)&&e.execCommand("Delete"),pA(e,o);const t=KR(i);r["text/html"]?nA(e,t,s,!0):oA(e,t,!0)}))})))})),e.on("dragstart",(e=>{t.set(!0)})),e.on("dragover dragend",(n=>{Gd(e)&&!t.get()&&(n.preventDefault(),pA(e,gA(e,n))),"dragend"===n.type&&t.set(!1)})),(e=>{e.on("input",(t=>{const n=e=>h(e.querySelector("summary"));if("deleteByDrag"===t.inputType){const t=Y(e.dom.select("details"),n);V(t,(t=>{ar(t.firstChild)&&t.firstChild.remove();const n=e.dom.create("summary");n.appendChild(Tr().dom),t.prepend(n)}))}}))})(e)})(e,t),dA(e,o,n)}))},CA=ar,wA=er,xA=e=>dr(e.dom),EA=e=>t=>_n(yn(e),t),_A=(e,t)=>Jn(yn(e),xA,EA(t)),kA=(e,t,n)=>{const o=new jo(e,t),r=n?o.next.bind(o):o.prev.bind(o);let s=e;for(let t=n?e:r();t&&!CA(t);t=r())ts(t)&&(s=t);return s},SA=e=>{const t=((e,t,n)=>{const o=Vi.fromRangeStart(e).getNode(),r=((e,t,n)=>Jn(yn(e),(e=>(e=>lr(e.dom))(e)||n.isBlock(Ht(e))),EA(t)).getOr(yn(t)).dom)(o,t,n),s=kA(o,r,!1),a=kA(o,r,!0),i=document.createRange();return _A(s,r).fold((()=>{wA(s)?i.setStart(s,0):i.setStartBefore(s)}),(e=>i.setStartBefore(e.dom))),_A(a,r).fold((()=>{wA(a)?i.setEnd(a,a.data.length):i.setEndAfter(a)}),(e=>i.setEndAfter(e.dom))),i})(e.selection.getRng(),e.getBody(),e.schema);e.selection.setRng(Eb(t))};var NA;!function(e){e.Before="before",e.After="after"}(NA||(NA={}));const RA=(e,t)=>Math.abs(e.left-t),AA=(e,t)=>Math.abs(e.right-t),TA=(e,t)=>(e=>X(e,((e,t)=>e.fold((()=>I.some(t)),(e=>{const n=Math.min(t.left,e.left),o=Math.min(t.top,e.top),r=Math.max(t.right,e.right),s=Math.max(t.bottom,e.bottom);return I.some({top:o,right:r,bottom:s,left:n,width:r-n,height:s-o})}))),I.none()))(Y(e,(e=>{return(n=t)>=(o=e).top&&n<=o.bottom;var n,o}))).fold((()=>[[],e]),(t=>{const{pass:n,fail:o}=K(e,(e=>((e,t)=>{const n=((e,t)=>Math.max(0,Math.min(e.bottom,t.bottom)-Math.max(e.top,t.top)))(e,t)/Math.min(e.height,t.height);return((e,t)=>e.top<t.bottom&&e.bottom>t.top)(e,t)&&n>.5})(e,t)));return[n,o]})),OA=(e,t,n)=>t>e.left&&t<e.right?0:Math.min(Math.abs(e.left-t),Math.abs(e.right-t)),BA=(e,t,n,o)=>{const r=e=>ts(e.node)?I.some(e):qo(e.node)?BA(ce(e.node.childNodes),t,n,!1):I.none(),s=(e,s)=>{const a=ae(e,((e,o)=>s(e,t,n)-s(o,t,n)));return ue(a,r).map((e=>o&&!er(e.node)&&a.length>1?((e,o,s)=>r(o).filter((o=>Math.abs(s(e,t,n)-s(o,t,n))<2&&er(o.node))))(e,a[1],s).getOr(e):e))},[a,i]=TA(IE(e),n),{pass:l,fail:d}=K(i,(e=>e.top<n));return s(a,OA).orThunk((()=>s(d,Ei))).orThunk((()=>s(l,Ei)))},PA=(e,t,n)=>((e,t,n)=>{const o=yn(e),r=Nn(o),s=Cn(r,t,n).filter((e=>kn(o,e))).getOr(o);return((e,t,n,o)=>{const r=(t,s)=>{const a=Y(t.dom.childNodes,O((e=>qo(e)&&e.classList.contains("mce-drag-container"))));return s.fold((()=>BA(a,n,o,!0)),(e=>{const t=Y(a,(t=>t!==e.dom));return BA(t,n,o,!0)})).orThunk((()=>(_n(t,e)?I.none():Tn(t)).bind((e=>r(e,I.some(t))))))};return r(t,I.none())})(o,s,t,n)})(e,t,n).filter((e=>Mc(e.node))).map((e=>((e,t)=>({node:e.node,position:RA(e,t)<AA(e,t)?NA.Before:NA.After}))(e,t))),DA=e=>{var t,n;const o=e.getBoundingClientRect(),r=e.ownerDocument,s=r.documentElement,a=r.defaultView;return{top:o.top+(null!==(t=null==a?void 0:a.scrollY)&&void 0!==t?t:0)-s.clientTop,left:o.left+(null!==(n=null==a?void 0:a.scrollX)&&void 0!==n?n:0)-s.clientLeft}},LA=e=>({target:e,srcElement:e}),MA=(e,t,n,o)=>{const r=((e,t)=>{const n=(e=>{const t=LR(),n=(e=>{const t=e;return I.from(t[_R])})(e);return RR(e),CR(t),t.dropEffect=e.dropEffect,t.effectAllowed=e.effectAllowed,(e=>{const t=e;return I.from(t[bR])})(e).each((e=>t.setDragImage(e.image,e.x,e.y))),V(e.types,(n=>{"Files"!==n&&t.setData(n,e.getData(n))})),V(e.files,(e=>t.items.add(e))),(e=>{const t=e;return I.from(t[vR])})(e).each((e=>{((e,t)=>{yR(t)(e)})(t,e)})),n.each((n=>{SR(e,n),SR(t,n)})),t})(e);return"dragstart"===t?(CR(n),NR(n)):"drop"===t?(wR(n),RR(n)):(xR(n),AR(n)),n})(n,e);return v(o)?((e,t,n)=>{const o=B("Function not supported on simulated event.");return{bubbles:!0,cancelBubble:!1,cancelable:!0,composed:!1,currentTarget:null,defaultPrevented:!1,eventPhase:0,isTrusted:!0,returnValue:!1,timeStamp:0,type:e,composedPath:o,initEvent:o,preventDefault:_,stopImmediatePropagation:_,stopPropagation:_,AT_TARGET:window.Event.AT_TARGET,BUBBLING_PHASE:window.Event.BUBBLING_PHASE,CAPTURING_PHASE:window.Event.CAPTURING_PHASE,NONE:window.Event.NONE,altKey:!1,button:0,buttons:0,clientX:0,clientY:0,ctrlKey:!1,metaKey:!1,movementX:0,movementY:0,offsetX:0,offsetY:0,pageX:0,pageY:0,relatedTarget:null,screenX:0,screenY:0,shiftKey:!1,x:0,y:0,detail:0,view:null,which:0,initUIEvent:o,initMouseEvent:o,getModifierState:o,dataTransfer:n,...LA(t)}})(e,t,r):((e,t,n,o)=>({...t,dataTransfer:o,type:e,...LA(n)}))(e,o,t,r)},IA=dr,FA=((...e)=>t=>{for(let n=0;n<e.length;n++)if(e[n](t))return!0;return!1})(IA,lr),UA=(e,t,n,o)=>{const r=e.dom,s=t.cloneNode(!0);r.setStyles(s,{width:n,height:o}),r.setAttrib(s,"data-mce-selected",null);const a=r.create("div",{class:"mce-drag-container","data-mce-bogus":"all",unselectable:"on",contenteditable:"false"});return r.setStyles(a,{position:"absolute",opacity:.5,overflow:"hidden",border:0,padding:0,margin:0,width:n,height:o}),r.setStyles(s,{margin:0,boxSizing:"border-box"}),a.appendChild(s),a},zA=(e,t)=>n=>()=>{const o="left"===e?n.scrollX:n.scrollY;n.scroll({[e]:o+t,behavior:"smooth"})},jA=zA("left",-32),HA=zA("left",32),$A=zA("top",-32),qA=zA("top",32),VA=e=>{e&&e.parentNode&&e.parentNode.removeChild(e)},WA=(e,t,n,o,r)=>{"dragstart"===t&&MR(o,e.dom.getOuterHTML(n));const s=MA(t,n,o,r);return e.dispatch(t,s)},KA=(e,t)=>{const n=Qa(((e,n)=>((e,t,n)=>{e._selectionOverrides.hideFakeCaret(),PA(e.getBody(),t,n).fold((()=>e.selection.placeCaretAt(t,n)),(o=>{const r=e._selectionOverrides.showCaret(1,o.node,o.position===NA.Before,!1);r?e.selection.setRng(r):e.selection.placeCaretAt(t,n)}))})(t,e,n)),0);t.on("remove",n.cancel);const o=e;return r=>e.on((e=>{const s=Math.max(Math.abs(r.screenX-e.screenX),Math.abs(r.screenY-e.screenY));if(!e.dragging&&s>10){const n=WA(t,"dragstart",e.element,e.dataTransfer,r);if(C(n.dataTransfer)&&(e.dataTransfer=n.dataTransfer),n.isDefaultPrevented())return;e.dragging=!0,t.focus()}if(e.dragging){const s=r.currentTarget===t.getDoc().documentElement,l=((e,t)=>({pageX:t.pageX-e.relX,pageY:t.pageY+5}))(e,((e,t)=>{return n=(e=>e.inline?DA(e.getBody()):{left:0,top:0})(e),o=(e=>{const t=e.getBody();return e.inline?{left:t.scrollLeft,top:t.scrollTop}:{left:0,top:0}})(e),r=((e,t)=>{if(t.target.ownerDocument!==e.getDoc()){const n=DA(e.getContentAreaContainer()),o=(e=>{const t=e.getBody(),n=e.getDoc().documentElement,o={left:t.scrollLeft,top:t.scrollTop},r={left:t.scrollLeft||n.scrollLeft,top:t.scrollTop||n.scrollTop};return e.inline?o:r})(e);return{left:t.pageX-n.left+o.left,top:t.pageY-n.top+o.top}}return{left:t.pageX,top:t.pageY}})(e,t),{pageX:r.left-n.left+o.left,pageY:r.top-n.top+o.top};var n,o,r})(t,r));a=e.ghost,i=t.getBody(),a.parentNode!==i&&i.appendChild(a),((e,t,n,o,r,s,a,i,l,d,c,u)=>{let m=0,f=0;e.style.left=t.pageX+"px",e.style.top=t.pageY+"px",t.pageX+n>r&&(m=t.pageX+n-r),t.pageY+o>s&&(f=t.pageY+o-s),e.style.width=n-m+"px",e.style.height=o-f+"px";const g=l.clientHeight,p=l.clientWidth,h=a+l.getBoundingClientRect().top,b=i+l.getBoundingClientRect().left;c.on((e=>{e.intervalId.clear(),e.dragging&&u&&(a+8>=g?e.intervalId.set(qA(d)):a-8<=0?e.intervalId.set($A(d)):i+8>=p?e.intervalId.set(HA(d)):i-8<=0?e.intervalId.set(jA(d)):h+16>=window.innerHeight?e.intervalId.set(qA(window)):h-16<=0?e.intervalId.set($A(window)):b+16>=window.innerWidth?e.intervalId.set(HA(window)):b-16<=0&&e.intervalId.set(jA(window)))}))})(e.ghost,l,e.width,e.height,e.maxX,e.maxY,r.clientY,r.clientX,t.getContentAreaContainer(),t.getWin(),o,s),n.throttle(r.clientX,r.clientY)}var a,i}))},YA=(e,t,n)=>{e.on((e=>{e.intervalId.clear(),e.dragging&&n.fold((()=>WA(t,"dragend",e.element,e.dataTransfer)),(n=>WA(t,"dragend",e.element,e.dataTransfer,n)))})),GA(e)},GA=e=>{e.on((e=>{e.intervalId.clear(),VA(e.ghost)})),e.clear()},XA=e=>{const t=Xa(),n=za.DOM,o=document,r=((e,t)=>n=>{if((e=>0===e.button)(n)){const o=J(t.dom.getParents(n.target),FA).getOr(null);if(C(o)&&((e,t,n)=>IA(n)&&n!==t&&e.isEditable(n.parentElement))(t.dom,t.getBody(),o)){const r=t.dom.getPos(o),s=t.getBody(),a=t.getDoc().documentElement;e.set({element:o,dataTransfer:LR(),dragging:!1,screenX:n.screenX,screenY:n.screenY,maxX:(t.inline?s.scrollWidth:a.offsetWidth)-2,maxY:(t.inline?s.scrollHeight:a.offsetHeight)-2,relX:n.pageX-r.x,relY:n.pageY-r.y,width:o.offsetWidth,height:o.offsetHeight,ghost:UA(t,o,o.offsetWidth,o.offsetHeight),intervalId:Ga(100)})}}})(t,e),s=KA(t,e),a=((e,t)=>n=>{e.on((e=>{var o;if(e.intervalId.clear(),e.dragging){if(((e,t,n)=>!y(t)&&t!==n&&!e.dom.isChildOf(t,n)&&e.dom.isEditable(t))(t,(e=>{const t=e.getSel();if(C(t)){const e=t.getRangeAt(0).startContainer;return er(e)?e.parentNode:e}return null})(t.selection),e.element)){const r=null!==(o=t.getDoc().elementFromPoint(n.clientX,n.clientY))&&void 0!==o?o:t.getBody();WA(t,"drop",r,e.dataTransfer,n).isDefaultPrevented()||t.undoManager.transact((()=>{((e,t)=>{const n=e.getParent(t.parentNode,e.isBlock);VA(t),n&&n!==e.getRoot()&&e.isEmpty(n)&&Or(yn(n))})(t.dom,e.element),(e=>{const t=e.getData("text/html");return""===t?I.none():I.some(t)})(e.dataTransfer).each((e=>t.insertContent(e))),t._selectionOverrides.hideFakeCaret()}))}WA(t,"dragend",t.getBody(),e.dataTransfer,n)}})),GA(e)})(t,e),i=((e,t)=>n=>YA(e,t,I.some(n)))(t,e);e.on("mousedown",r),e.on("mousemove",s),e.on("mouseup",a),n.bind(o,"mousemove",s),n.bind(o,"mouseup",i),e.on("remove",(()=>{n.unbind(o,"mousemove",s),n.unbind(o,"mouseup",i)})),e.on("keydown",(n=>{n.keyCode===af.ESC&&YA(t,e,I.none())}))},QA=dr,JA=(e,t)=>lb(e.getBody(),t),ZA=e=>{const t=e.selection,n=e.dom,o=e.getBody(),r=Pc(e,o,n.isBlock,(()=>Rg(e))),s="sel-"+n.uniqueId(),a="data-mce-selected";let i;const l=e=>e!==o&&(QA(e)||mr(e))&&n.isChildOf(e,o)&&n.isEditable(e.parentNode),d=(n,o,s,a=!0)=>e.dispatch("ShowCaret",{target:o,direction:n,before:s}).isDefaultPrevented()?null:(a&&t.scrollIntoView(o,-1===n),r.show(s,o)),c=e=>Ur(e)||$r(e)||qr(e),u=e=>c(e.startContainer)||c(e.endContainer),m=t=>{const o=e.schema.getVoidElements(),r=n.createRng(),s=t.startContainer,a=t.startOffset,i=t.endContainer,l=t.endOffset;return Ee(o,s.nodeName.toLowerCase())?0===a?r.setStartBefore(s):r.setStartAfter(s):r.setStart(s,a),Ee(o,i.nodeName.toLowerCase())?0===l?r.setEndBefore(i):r.setEndAfter(i):r.setEnd(i,l),r},f=(r,c)=>{if(!r)return null;if(r.collapsed){if(!u(r)){const e=c?1:-1,t=au(e,o,r),s=t.getNode(!c);if(C(s)){if(Mc(s))return d(e,s,!!c&&!t.isAtEnd(),!1);if(Fr(s)&&dr(s.nextSibling)){const e=n.createRng();return e.setStart(s,0),e.setEnd(s,0),e}}const a=t.getNode(c);if(C(a)){if(Mc(a))return d(e,a,!c&&!t.isAtEnd(),!1);if(Fr(a)&&dr(a.previousSibling)){const e=n.createRng();return e.setStart(a,1),e.setEnd(a,1),e}}}return null}let m=r.startContainer,f=r.startOffset;const g=r.endOffset;if(er(m)&&0===f&&QA(m.parentNode)&&(m=m.parentNode,f=n.nodeIndex(m),m=m.parentNode),!qo(m))return null;if(g===f+1&&m===r.endContainer){const o=m.childNodes[f];if(l(o))return(o=>{const r=o.cloneNode(!0),l=e.dispatch("ObjectSelected",{target:o,targetClone:r});if(l.isDefaultPrevented())return null;const d=((o,r)=>{const a=yn(e.getBody()),i=e.getDoc(),l=to(a,"#"+s).getOrThunk((()=>{const e=hn('<div data-mce-bogus="all" class="mce-offscreen-selection"></div>',i);return Jt(e,"id",s),vo(a,e),e})),d=n.createRng();wo(l),Co(l,[vn(br,i),yn(r),vn(br,i)]),d.setStart(l.dom.firstChild,1),d.setEnd(l.dom.lastChild,0),lo(l,{top:n.getPos(o,e.getBody()).y+"px"}),ag(l);const c=t.getSel();return c&&(c.removeAllRanges(),c.addRange(d)),d})(o,l.targetClone),c=yn(o);return V(Uo(yn(e.getBody()),`*[${a}]`),(e=>{_n(c,e)||on(e,a)})),n.getAttrib(o,a)||o.setAttribute(a,"1"),i=o,p(),d})(o)}return null},g=()=>{i&&i.removeAttribute(a),to(yn(e.getBody()),"#"+s).each(xo),i=null},p=()=>{r.hide()};return XC(e)||(e.on("click",(t=>{n.isEditable(t.target)||(t.preventDefault(),e.focus())})),e.on("blur NewBlock",g),e.on("ResizeWindow FullscreenStateChanged",r.reposition),e.on("tap",(t=>{const n=t.target,o=JA(e,n);QA(o)?(t.preventDefault(),Sx(e,o).each(f)):l(n)&&Sx(e,n).each(f)}),!0),e.on("mousedown",(r=>{const s=r.target;if(s!==o&&"HTML"!==s.nodeName&&!n.isChildOf(s,o))return;if(!((e,t,n)=>{const o=yn(e.getBody()),r=e.inline?o:yn(Nn(o).dom.documentElement),s=((e,t,n,o)=>{const r=(e=>e.dom.getBoundingClientRect())(t);return{x:n-(e?r.left+t.dom.clientLeft+Aw(t):0),y:o-(e?r.top+t.dom.clientTop+Rw(t):0)}})(e.inline,r,t,n);return((e,t,n)=>{const o=Sw(e),r=Nw(e);return t>=0&&n>=0&&t<=o&&n<=r})(r,s.x,s.y)})(e,r.clientX,r.clientY))return;g(),p();const a=JA(e,s);QA(a)?(r.preventDefault(),Sx(e,a).each(f)):PA(o,r.clientX,r.clientY).each((n=>{var o;r.preventDefault(),(o=d(1,n.node,n.position===NA.Before,!1))&&t.setRng(o),Vo(a)?a.focus():e.getBody().focus()}))})),e.on("keypress",(e=>{af.modifierPressed(e)||QA(t.getNode())&&e.preventDefault()})),e.on("GetSelectionRange",(e=>{let t=e.range;if(i){if(!i.parentNode)return void(i=null);t=t.cloneRange(),t.selectNode(i),e.range=t}})),e.on("SetSelectionRange",(e=>{e.range=m(e.range);const t=f(e.range,e.forward);t&&(e.range=t)})),e.on("AfterSetSelectionRange",(e=>{const t=e.range,o=t.startContainer.parentElement;var r;u(t)||qo(r=o)&&"mcepastebin"===r.id||p(),(e=>C(e)&&n.hasClass(e,"mce-offscreen-selection"))(o)||g()})),(e=>{XA(e),Id(e)&&(e=>{const t=t=>{if(!t.isDefaultPrevented()){const n=t.dataTransfer;n&&(H(n.types,"Files")||n.files.length>0)&&(t.preventDefault(),"drop"===t.type&&Lw(e,"Dropped file type is not supported"))}},n=n=>{xg(e,n.target)&&t(n)},o=()=>{const o=za.DOM,r=e.dom,s=document,a=e.inline?e.getBody():e.getDoc(),i=["drop","dragover"];V(i,(e=>{o.bind(s,e,n),r.bind(a,e,t)})),e.on("remove",(()=>{V(i,(e=>{o.unbind(s,e,n),r.unbind(a,e,t)}))}))};e.on("init",(()=>{vg.setEditorTimeout(e,o,0)}))})(e)})(e),(e=>{const t=Qa((()=>{if(!e.removed&&e.getBody().contains(document.activeElement)){const t=e.selection.getRng();if(t.collapsed){const n=Nx(e,t,!1);e.selection.setRng(n)}}}),0);e.on("focus",(()=>{t.throttle()})),e.on("blur",(()=>{t.cancel()}))})(e),(e=>{e.on("init",(()=>{e.on("focusin",(t=>{const n=t.target;if(mr(n)){const t=lb(e.getBody(),n),o=dr(t)?t:n;e.selection.getNode()!==o&&Sx(e,o).each((t=>e.selection.setRng(t)))}}))}))})(e)),{showCaret:d,showBlockCaretContainer:e=>{e.hasAttribute("data-mce-caret")&&(Vr(e),t.scrollIntoView(e))},hideFakeCaret:p,destroy:()=>{r.destroy(),i=null}}},eT=(e,t)=>{let n=t;for(let t=e.previousSibling;er(t);t=t.previousSibling)n+=t.data.length;return n},tT=(e,t,n,o,r)=>{if(er(n)&&(o<0||o>n.data.length))return[];const s=r&&er(n)?[eT(n,o)]:[o];let a=n;for(;a!==t&&a.parentNode;)s.push(e.nodeIndex(a,r)),a=a.parentNode;return a===t?s.reverse():[]},nT=(e,t,n,o,r,s,a=!1)=>({start:tT(e,t,n,o,a),end:tT(e,t,r,s,a)}),oT=(e,t)=>{const n=t.slice(),o=n.pop();return x(o)?X(n,((e,t)=>e.bind((e=>I.from(e.childNodes[t])))),I.some(e)).bind((e=>er(e)&&(o<0||o>e.data.length)?I.none():I.some({node:e,offset:o}))):I.none()},rT=(e,t)=>oT(e,t.start).bind((({node:n,offset:o})=>oT(e,t.end).map((({node:e,offset:t})=>{const r=document.createRange();return r.setStart(n,o),r.setEnd(e,t),r})))),sT=(e,t,n)=>{if(t&&e.isEmpty(t)&&!n(t)){const o=t.parentNode;e.remove(t,er(t.firstChild)&&ss(t.firstChild.data)),sT(e,o,n)}},aT=(e,t,n,o=!0)=>{const r=t.startContainer.parentNode,s=t.endContainer.parentNode;t.deleteContents(),o&&!n(t.startContainer)&&(er(t.startContainer)&&0===t.startContainer.data.length&&e.remove(t.startContainer),er(t.endContainer)&&0===t.endContainer.data.length&&e.remove(t.endContainer),sT(e,r,n),r!==s&&sT(e,s,n))},iT=(e,t)=>I.from(e.dom.getParent(t.startContainer,e.dom.isBlock)),lT=(e,t,n)=>{const o=e.dynamicPatternsLookup({text:n,block:t});return{...e,blockPatterns:Cl(o).concat(e.blockPatterns),inlinePatterns:wl(o).concat(e.inlinePatterns)}},dT=(e,t,n,o)=>{const r=e.createRng();return r.setStart(t,0),r.setEnd(n,o),r.toString()},cT=(e,t,n)=>{((e,t,n)=>{if(er(e)&&0>=e.length)return I.some(Ak(e,0));{const t=hi(Tk);return I.from(t.forwards(e,0,Ok(e),n)).map((e=>Ak(e.container,0)))}})(t,0,t).each((o=>{const r=o.container;Dk(r,n.start.length,t).each((n=>{const o=e.createRng();o.setStart(r,0),o.setEnd(n.container,n.offset),aT(e,o,(e=>e===t))}));const s=yn(r),a=Cr(s);/^\s[^\s]/.test(a)&&((e,t)=>{yr.set(e,t)})(s,a.slice(1))}))},uT=(e,t)=>e.create("span",{"data-mce-type":"bookmark",id:t}),mT=(e,t)=>{const n=e.createRng();return n.setStartAfter(t.start),n.setEndBefore(t.end),n},fT=(e,t,n)=>{const o=rT(e.getRoot(),n).getOrDie("Unable to resolve path range"),r=o.startContainer,s=o.endContainer,a=0===o.endOffset?s:s.splitText(o.endOffset),i=0===o.startOffset?r:r.splitText(o.startOffset),l=i.parentNode;return{prefix:t,end:a.parentNode.insertBefore(uT(e,t+"-end"),a),start:l.insertBefore(uT(e,t+"-start"),i)}},gT=(e,t,n)=>{sT(e,e.get(t.prefix+"-end"),n),sT(e,e.get(t.prefix+"-start"),n)},pT=e=>0===e.start.length,hT=(e,t,n,o)=>{const r=t.start;var s;return Lk(e,o.container,o.offset,(s=r,(e,t)=>{const n=e.data.substring(0,t),o=n.lastIndexOf(s.charAt(s.length-1)),r=n.lastIndexOf(s);return-1!==r?r+s.length:-1!==o?o+1:-1}),n).bind((o=>{var s,a;const i=null!==(a=null===(s=n.textContent)||void 0===s?void 0:s.indexOf(r))&&void 0!==a?a:-1;if(-1!==i&&o.offset>=i+r.length){const t=e.createRng();return t.setStart(o.container,o.offset-r.length),t.setEnd(o.container,o.offset),I.some(t)}{const s=o.offset-r.length;return Pk(o.container,s,n).map((t=>{const n=e.createRng();return n.setStart(t.container,t.offset),n.setEnd(o.container,o.offset),n})).filter((e=>e.toString()===r)).orThunk((()=>hT(e,t,n,Ak(o.container,0))))}}))},bT=(e,t,n,o)=>{const r=e.dom,s=r.getRoot(),a=n.pattern,i=n.position.container,l=n.position.offset;return Pk(i,l-n.pattern.end.length,t).bind((d=>{const c=nT(r,s,d.container,d.offset,i,l,o);if(pT(a))return I.some({matches:[{pattern:a,startRng:c,endRng:c}],position:d});{const i=vT(e,n.remainingPatterns,d.container,d.offset,t,o),l=i.getOr({matches:[],position:d}),u=l.position,m=((e,t,n,o,r,s=!1)=>{if(0===t.start.length&&!s){const t=e.createRng();return t.setStart(n,o),t.setEnd(n,o),I.some(t)}return Bk(n,o,r).bind((n=>hT(e,t,r,n).bind((e=>{var t;if(s){if(e.endContainer===n.container&&e.endOffset===n.offset)return I.none();if(0===n.offset&&(null===(t=e.endContainer.textContent)||void 0===t?void 0:t.length)===e.endOffset)return I.none()}return I.some(e)}))))})(r,a,u.container,u.offset,t,i.isNone());return m.map((e=>{const t=((e,t,n,o=!1)=>nT(e,t,n.startContainer,n.startOffset,n.endContainer,n.endOffset,o))(r,s,e,o);return{matches:l.matches.concat([{pattern:a,startRng:t,endRng:c}]),position:Ak(e.startContainer,e.startOffset)}}))}}))},vT=(e,t,n,o,r,s)=>{const a=e.dom;return Bk(n,o,a.getRoot()).bind((i=>{const l=dT(a,r,n,o);for(let a=0;a<t.length;a++){const d=t[a];if(!$e(l,d.end))continue;const c=t.slice();c.splice(a,1);const u=bT(e,r,{pattern:d,remainingPatterns:c,position:i},s);if(u.isNone()&&o>0)return vT(e,t,n,o-1,r,s);if(u.isSome())return u}return I.none()}))},yT=(e,t,n)=>{e.selection.setRng(n),"inline-format"===t.type?V(t.format,(t=>{e.formatter.apply(t)})):e.execCommand(t.cmd,!1,t.value)},CT=(e,t,n,o,r,s)=>{var a;return((e,t)=>{const n=ne(e,(e=>$(t,(t=>e.pattern.start===t.pattern.start&&e.pattern.end===t.pattern.end))));return e.length===t.length?n?e:t:e.length>t.length?e:t})(vT(e,r.inlinePatterns,n,o,t,s).fold((()=>[]),(e=>e.matches)),vT(e,(a=r.inlinePatterns,ae(a,((e,t)=>t.end.length-e.end.length))),n,o,t,s).fold((()=>[]),(e=>e.matches)))},wT=(e,t)=>{if(0===t.length)return;const n=e.dom,o=e.selection.getBookmark(),r=((e,t)=>{const n=ui("mce_textpattern"),o=G(t,((t,o)=>{const r=fT(e,n+`_end${t.length}`,o.endRng);return t.concat([{...o,endMarker:r}])}),[]);return G(o,((t,r)=>{const s=o.length-t.length-1,a=pT(r.pattern)?r.endMarker:fT(e,n+`_start${s}`,r.startRng);return t.concat([{...r,startMarker:a}])}),[])})(n,t);V(r,(t=>{const o=n.getParent(t.startMarker.start,n.isBlock),r=e=>e===o;pT(t.pattern)?((e,t,n,o)=>{const r=mT(e.dom,n);aT(e.dom,r,o),yT(e,t,r)})(e,t.pattern,t.endMarker,r):((e,t,n,o,r)=>{const s=e.dom,a=mT(s,o),i=mT(s,n);aT(s,i,r),aT(s,a,r);const l={prefix:n.prefix,start:n.end,end:o.start},d=mT(s,l);yT(e,t,d)})(e,t.pattern,t.startMarker,t.endMarker,r),gT(n,t.endMarker,r),gT(n,t.startMarker,r)})),e.selection.moveToBookmark(o)},xT=(e,t)=>{const n=e.selection.getRng();return iT(e,n).map((o=>{var r;const s=Math.max(0,n.startOffset),a=lT(t,o,null!==(r=o.textContent)&&void 0!==r?r:""),i=CT(e,o,n.startContainer,s,a,!0),l=((e,t,n,o)=>{var r;const s=e.dom,a=Il(e);if(!s.is(t,a))return[];const i=null!==(r=t.textContent)&&void 0!==r?r:"";return((e,t)=>{const n=(e=>ae(e,((e,t)=>t.start.length-e.start.length)))(e),o=t.replace(br," ");return J(n,(e=>0===t.indexOf(e.start)||0===o.indexOf(e.start)))})(n.blockPatterns,i).map((e=>Pt.trim(i).length===e.start.length?[]:[{pattern:e,range:nT(s,s.getRoot(),t,0,t,0,true)}])).getOr([])})(e,o,a);return(l.length>0||i.length>0)&&(e.undoManager.add(),e.undoManager.extra((()=>{e.execCommand("mceInsertNewLine")}),(()=>{(e=>{e.insertContent(Br,{preserve_zwsp:!0})})(e),wT(e,i),((e,t)=>{if(0===t.length)return;const n=e.selection.getBookmark();V(t,(t=>((e,t)=>{const n=e.dom,o=t.pattern,r=rT(n.getRoot(),t.range).getOrDie("Unable to resolve path range");return iT(e,r).each((t=>{"block-format"===o.type?((e,t)=>{const n=t.get(e);return p(n)&&le(n).exists((e=>Ee(e,"block")))})(o.format,e.formatter)&&e.undoManager.transact((()=>{cT(e.dom,t,o),e.formatter.apply(o.format)})):"block-command"===o.type&&e.undoManager.transact((()=>{cT(e.dom,t,o),e.execCommand(o.cmd,!1,o.value)}))})),!0})(e,t))),e.selection.moveToBookmark(n)})(e,l);const t=e.selection.getRng(),n=Bk(t.startContainer,t.startOffset,e.dom.getRoot());e.execCommand("mceInsertNewLine"),n.each((t=>{const n=t.container;n.data.charAt(t.offset-1)===hr&&(n.deleteData(t.offset-1,1),sT(e.dom,n.parentNode,(t=>t===e.dom.getRoot())))}))})),!0)})).getOr(!1)},ET=(e,t,n)=>{for(let o=0;o<e.length;o++)if(n(e[o],t))return!0;return!1},_T=e=>{const t=Pt.each,n=af.BACKSPACE,o=af.DELETE,r=e.dom,s=e.selection,a=e.parser,i=At.browser,l=i.isFirefox(),d=i.isChromium()||i.isSafari(),c=At.deviceType.isiPhone()||At.deviceType.isiPad(),u=At.os.isMacOS()||At.os.isiOS(),f=(t,n)=>{try{e.getDoc().execCommand(t,!1,String(n))}catch(e){}},g=e=>e.isDefaultPrevented(),p=()=>{e.shortcuts.add("meta+a",null,"SelectAll")},h=()=>{e.inline||r.bind(e.getDoc(),"mousedown mouseup",(t=>{let n;if(t.target===e.getDoc().documentElement)if(n=s.getRng(),e.getBody().focus(),"mousedown"===t.type){if(Ur(n.startContainer))return;s.placeCaretAt(t.clientX,t.clientY)}else s.setRng(n)}))},b=()=>{Range.prototype.getClientRects||e.on("mousedown",(t=>{if(!g(t)&&"HTML"===t.target.nodeName){const t=e.getBody();t.blur(),vg.setEditorTimeout(e,(()=>{t.focus()}))}}))},v=()=>{const t=zd(e);e.on("click",(n=>{const o=n.target;/^(IMG|HR)$/.test(o.nodeName)&&r.isEditable(o)&&(n.preventDefault(),e.selection.select(o),e.nodeChanged()),"A"===o.nodeName&&r.hasClass(o,t)&&0===o.childNodes.length&&r.isEditable(o.parentNode)&&(n.preventDefault(),s.select(o))}))},y=()=>{e.on("keydown",(e=>{if(!g(e)&&e.keyCode===n&&s.isCollapsed()&&0===s.getRng().startOffset){const t=s.getNode().previousSibling;if(t&&t.nodeName&&"table"===t.nodeName.toLowerCase())return e.preventDefault(),!1}return!0}))},C=()=>{Bd(e)||e.on("BeforeExecCommand mousedown",(()=>{f("StyleWithCSS",!1),f("enableInlineTableEditing",!1),cd(e)||f("enableObjectResizing",!1)}))},w=()=>{e.contentStyles.push("img:-moz-broken {-moz-force-broken-image-icon:1;min-width:24px;min-height:24px}")},x=()=>{e.inline||e.on("keydown",(()=>{document.activeElement===document.body&&e.getWin().focus()}))},E=()=>{e.inline||(e.contentStyles.push("body {min-height: 150px}"),e.on("click",(t=>{let n;"HTML"===t.target.nodeName&&(n=e.selection.getRng(),e.getBody().focus(),e.selection.setRng(n),e.selection.normalize(),e.nodeChanged())})))},k=()=>{u&&e.on("keydown",(t=>{!af.metaKeyPressed(t)||t.shiftKey||37!==t.keyCode&&39!==t.keyCode||(t.preventDefault(),e.selection.getSel().modify("move",37===t.keyCode?"backward":"forward","lineboundary"))}))},S=()=>{e.on("click",(e=>{let t=e.target;do{if("A"===t.tagName)return void e.preventDefault()}while(t=t.parentNode)})),e.contentStyles.push(".mce-content-body {-webkit-touch-callout: none}")},N=()=>{e.on("init",(()=>{e.dom.bind(e.getBody(),"submit",(e=>{e.preventDefault()}))}))},R=_;return XC(e)?(d&&(h(),v(),N(),p(),c&&(x(),E(),S())),l&&(b(),C(),w(),k())):(e.on("keydown",(t=>{if(g(t)||t.keyCode!==af.BACKSPACE)return;let n=s.getRng();const o=n.startContainer,a=n.startOffset,i=r.getRoot();let l=o;if(n.collapsed&&0===a){for(;l.parentNode&&l.parentNode.firstChild===l&&l.parentNode!==i;)l=l.parentNode;"BLOCKQUOTE"===l.nodeName&&(e.formatter.toggle("blockquote",void 0,l),n=r.createRng(),n.setStart(o,0),n.setEnd(o,0),s.setRng(n))}})),(()=>{const t=e=>{const t=r.create("body"),n=e.cloneContents();return t.appendChild(n),s.serializer.serialize(t,{format:"html"})};e.on("keydown",(s=>{const a=s.keyCode;if(!g(s)&&(a===o||a===n)&&e.selection.isEditable()){const n=e.selection.isCollapsed(),o=e.getBody();if(n&&!gs(yn(o)))return;if(!n&&!(n=>{const o=t(n),s=r.createRng();return s.selectNode(e.getBody()),o===t(s)})(e.selection.getRng()))return;s.preventDefault(),e.setContent(""),o.firstChild&&r.isBlock(o.firstChild)?e.selection.setCursorLocation(o.firstChild,0):e.selection.setCursorLocation(o,0),e.nodeChanged()}}))})(),At.windowsPhone||e.on("keyup focusin mouseup",(t=>{af.modifierPressed(t)||(e=>{const t=e.getBody(),n=e.selection.getRng();return n.startContainer===n.endContainer&&n.startContainer===t&&0===n.startOffset&&n.endOffset===t.childNodes.length})(e)||s.normalize()}),!0),d&&(h(),v(),e.on("init",(()=>{f("DefaultParagraphSeparator",Il(e))})),N(),y(),a.addNodeFilter("br",(e=>{let t=e.length;for(;t--;)"Apple-interchange-newline"===e[t].attr("class")&&e[t].remove()})),c?(x(),E(),S()):p()),l&&(e.on("keydown",(t=>{if(!g(t)&&t.keyCode===n){if(!e.getBody().getElementsByTagName("hr").length)return;if(s.isCollapsed()&&0===s.getRng().startOffset){const e=s.getNode(),n=e.previousSibling;if("HR"===e.nodeName)return r.remove(e),void t.preventDefault();n&&n.nodeName&&"hr"===n.nodeName.toLowerCase()&&(r.remove(n),t.preventDefault())}}})),b(),(()=>{const n=()=>{const n=r.getAttribs(s.getStart().cloneNode(!1));return()=>{const o=s.getStart();o!==e.getBody()&&(r.setAttrib(o,"style",null),t(n,(e=>{o.setAttributeNode(e.cloneNode(!0))})))}},o=()=>!s.isCollapsed()&&r.getParent(s.getStart(),r.isBlock)!==r.getParent(s.getEnd(),r.isBlock);e.on("keypress",(t=>{let r;return!(!(g(t)||8!==t.keyCode&&46!==t.keyCode)&&o()&&(r=n(),e.getDoc().execCommand("delete",!1),r(),t.preventDefault(),1))})),r.bind(e.getDoc(),"cut",(t=>{if(!g(t)&&o()){const t=n();vg.setEditorTimeout(e,(()=>{t()}))}}))})(),C(),e.on("SetContent ExecCommand",(e=>{"setcontent"!==e.type&&"mceInsertLink"!==e.command||t(r.select("a:not([data-mce-block])"),(e=>{var t;let n=e.parentNode;const o=r.getRoot();if((null==n?void 0:n.lastChild)===e){for(;n&&!r.isBlock(n);){if((null===(t=n.parentNode)||void 0===t?void 0:t.lastChild)!==n||n===o)return;n=n.parentNode}r.add(n,"br",{"data-mce-bogus":1})}}))})),w(),k(),y(),e.on("drop",(t=>{var n;const o=null===(n=t.dataTransfer)||void 0===n?void 0:n.getData("text/html");m(o)&&/^<img[^>]*>$/.test(o)&&e.dispatch("dragend",new window.DragEvent("dragend",t))})))),{refreshContentEditable:R,isHidden:()=>{if(!l||e.removed)return!1;const t=e.selection.getSel();return!t||!t.rangeCount||0===t.rangeCount}}},kT=za.DOM,ST=e=>e.inline?e.getElement().nodeName.toLowerCase():void 0,NT=e=>ye(e,(e=>!1===v(e))),RT=e=>{const t=e.options.get,n=e.editorUpload.blobCache;return NT({allow_conditional_comments:t("allow_conditional_comments"),allow_html_data_urls:t("allow_html_data_urls"),allow_svg_data_urls:t("allow_svg_data_urls"),allow_html_in_named_anchor:t("allow_html_in_named_anchor"),allow_script_urls:t("allow_script_urls"),allow_unsafe_link_target:t("allow_unsafe_link_target"),convert_unsafe_embeds:t("convert_unsafe_embeds"),convert_fonts_to_spans:t("convert_fonts_to_spans"),fix_list_elements:t("fix_list_elements"),font_size_legacy_values:t("font_size_legacy_values"),forced_root_block:t("forced_root_block"),forced_root_block_attrs:t("forced_root_block_attrs"),preserve_cdata:t("preserve_cdata"),inline_styles:t("inline_styles"),root_name:ST(e),sandbox_iframes:t("sandbox_iframes"),sanitize:t("xss_sanitization"),validate:!0,blob_cache:n,document:e.getDoc()})},AT=e=>{const t=e.options.get;return NT({custom_elements:t("custom_elements"),extended_valid_elements:t("extended_valid_elements"),invalid_elements:t("invalid_elements"),invalid_styles:t("invalid_styles"),schema:t("schema"),valid_children:t("valid_children"),valid_classes:t("valid_classes"),valid_elements:t("valid_elements"),valid_styles:t("valid_styles"),verify_html:t("verify_html"),padd_empty_block_inline_children:t("format_empty_lines")})},TT=e=>e.inline?e.ui.styleSheetLoader:e.dom.styleSheetLoader,OT=e=>{const t=TT(e),n=id(e),o=e.contentCSS,r=()=>{t.unloadAll(o),e.inline||e.ui.styleSheetLoader.unloadAll(n)},s=()=>{e.removed?r():e.on("remove",r)};if(e.contentStyles.length>0){let t="";Pt.each(e.contentStyles,(e=>{t+=e+"\r\n"})),e.dom.addStyle(t)}const a=Promise.all(((e,t,n)=>{const{pass:o,fail:r}=K(t,(e=>tinymce.Resource.has(Uw(e)))),s=o.map((t=>{const n=tinymce.Resource.get(Uw(t));return m(n)?Promise.resolve(TT(e).loadRawCss(t,n)):Promise.resolve()})),a=[...s,TT(e).loadAll(r)];return e.inline?a:a.concat([e.ui.styleSheetLoader.loadAll(n)])})(e,o,n)).then(s).catch(s),i=ad(e);return i&&((e,t)=>{const n=yn(e.getBody()),o=Vn(qn(n)),r=bn("style");Jt(r,"type","text/css"),vo(r,vn(t)),vo(o,r),e.on("remove",(()=>{xo(r)}))})(e,i),a},BT=e=>{!0!==e.removed&&((e=>{XC(e)||e.load({initial:!0,format:"html"}),e.startContent=e.getContent({format:"raw"})})(e),(e=>{e.bindPendingEventDelegates(),e.initialized=!0,(e=>{e.dispatch("Init")})(e),e.focus(!0),(e=>{const t=e.dom.getRoot();e.inline||am(e)&&e.selection.getStart(!0)!==t||Ou(t).each((t=>{const n=t.getNode(),o=Qo(n)?Ou(n).getOr(t):t;e.selection.setRng(o.toRange())}))})(e),e.nodeChanged({initial:!0});const t=$d(e);w(t)&&t.call(e,e),(e=>{const t=Vd(e);t&&vg.setEditorTimeout(e,(()=>{let n;n=!0===t?e:e.editorManager.get(t),n&&!n.destroyed&&(n.focus(),n.selection.scrollIntoView())}),100)})(e)})(e))},PT=e=>{const t=e.getElement();let n=e.getDoc();e.inline&&(kT.addClass(t,"mce-content-body"),e.contentDocument=n=document,e.contentWindow=window,e.bodyElement=t,e.contentAreaContainer=t);const o=e.getBody();o.disabled=!0,e.readonly=Bd(e),e._editableRoot=Pd(e),!e.readonly&&e.hasEditableRoot()&&(e.inline&&"static"===kT.getStyle(o,"position",!0)&&(o.style.position="relative"),o.contentEditable="true"),o.disabled=!1,e.editorUpload=Kw(e),e.schema=ua(AT(e)),e.dom=za(n,{keep_values:!0,url_converter:e.convertURL,url_converter_scope:e,update_styles:!0,root_element:e.inline?e.getBody():null,collect:e.inline,schema:e.schema,contentCssCors:Zl(e),referrerPolicy:ed(e),onSetAttrib:t=>{e.dispatch("SetAttrib",t)},force_hex_color:yc(e)}),e.parser=(e=>{const t=bC(RT(e),e.schema);return t.addAttributeFilter("src,href,style,tabindex",((t,n)=>{const o=e.dom,r="data-mce-"+n;let s=t.length;for(;s--;){const a=t[s];let i=a.attr(n);if(i&&!a.attr(r)){if(0===i.indexOf("data:")||0===i.indexOf("blob:"))continue;"style"===n?(i=o.serializeStyle(o.parseStyle(i),a.name),i.length||(i=null),a.attr(r,i),a.attr(n,i)):"tabindex"===n?(a.attr(r,i),a.attr(n,null)):a.attr(r,e.convertURL(i,n,a.name))}}})),t.addNodeFilter("script",(e=>{let t=e.length;for(;t--;){const n=e[t],o=n.attr("type")||"no/type";0!==o.indexOf("mce-")&&n.attr("type","mce-"+o)}})),uc(e)&&t.addNodeFilter("#cdata",(t=>{var n;let o=t.length;for(;o--;){const r=t[o];r.type=8,r.name="#comment",r.value="[CDATA["+e.dom.encode(null!==(n=r.value)&&void 0!==n?n:"")+"]]"}})),t.addNodeFilter("p,h1,h2,h3,h4,h5,h6,div",(t=>{let n=t.length;const o=e.schema.getNonEmptyElements();for(;n--;){const e=t[n];e.isEmpty(o)&&0===e.getAll("br").length&&e.append(new Wg("br",1))}})),t})(e),e.serializer=iw((e=>{const t=e.options.get;return{...RT(e),...AT(e),...NT({remove_trailing_brs:t("remove_trailing_brs"),pad_empty_with_br:t("pad_empty_with_br"),url_converter:t("url_converter"),url_converter_scope:t("url_converter_scope"),element_format:t("element_format"),entities:t("entities"),entity_encoding:t("entity_encoding"),indent:t("indent"),indent_after:t("indent_after"),indent_before:t("indent_before")})}})(e),e),e.selection=rw(e.dom,e.getWin(),e.serializer,e),e.annotator=Qm(e),e.formatter=rx(e),e.undoManager=ax(e),e._nodeChangeDispatcher=new hR(e),e._selectionOverrides=ZA(e),(e=>{const t=Xa(),n=$a(!1),o=Ja((t=>{e.dispatch("longpress",{...t,type:"longpress"}),n.set(!0)}),400);e.on("touchstart",(e=>{P_(e).each((r=>{o.cancel();const s={x:r.clientX,y:r.clientY,target:e.target};o.throttle(e),n.set(!1),t.set(s)}))}),!0),e.on("touchmove",(r=>{o.cancel(),P_(r).each((o=>{t.on((r=>{((e,t)=>{const n=Math.abs(e.clientX-t.x),o=Math.abs(e.clientY-t.y);return n>5||o>5})(o,r)&&(t.clear(),n.set(!1),e.dispatch("longpresscancel"))}))}))}),!0),e.on("touchend touchcancel",(r=>{o.cancel(),"touchcancel"!==r.type&&t.get().filter((e=>e.target.isEqualNode(r.target))).each((()=>{n.get()?r.preventDefault():e.dispatch("tap",{...r,type:"tap"})}))}),!0)})(e),(e=>{(e=>{e.on("click",(t=>{e.dom.getParent(t.target,"details")&&t.preventDefault()}))})(e),(e=>{e.parser.addNodeFilter("details",(t=>{const n=bc(e);V(t,(e=>{"expanded"===n?e.attr("open","open"):"collapsed"===n&&e.attr("open",null)}))})),e.serializer.addNodeFilter("details",(t=>{const n=vc(e);V(t,(e=>{"expanded"===n?e.attr("open","open"):"collapsed"===n&&e.attr("open",null)}))}))})(e)})(e),(e=>{const t="contenteditable",n=" "+Pt.trim(dc(e))+" ",o=" "+Pt.trim(lc(e))+" ",r=z_(n),s=z_(o),a=cc(e);a.length>0&&e.on("BeforeSetContent",(t=>{((e,t,n)=>{let o=t.length,r=n.content;if("raw"!==n.format){for(;o--;)r=r.replace(t[o],j_(e,r,lc(e)));n.content=r}})(e,a,t)})),e.parser.addAttributeFilter("class",(e=>{let n=e.length;for(;n--;){const o=e[n];r(o)?o.attr(t,"true"):s(o)&&o.attr(t,"false")}})),e.serializer.addAttributeFilter(t,(e=>{let n=e.length;for(;n--;){const o=e[n];(r(o)||s(o))&&(a.length>0&&o.attr("data-mce-content")?(o.name="#text",o.type=3,o.raw=!0,o.value=o.attr("data-mce-content")):o.attr(t,null))}}))})(e),XC(e)||((e=>{e.on("mousedown",(t=>{t.detail>=3&&(t.preventDefault(),SA(e))}))})(e),(e=>{(e=>{const t=[",",".",";",":","!","?"],n=[32],o=()=>{return t=ac(e),n=ic(e),{inlinePatterns:wl(t),blockPatterns:Cl(t),dynamicPatternsLookup:n};var t,n},r=()=>(e=>e.options.isSet("text_patterns_lookup"))(e);e.on("keydown",(t=>{if(13===t.keyCode&&!af.modifierPressed(t)&&e.selection.isCollapsed()){const n=o();(n.inlinePatterns.length>0||n.blockPatterns.length>0||r())&&xT(e,n)&&t.preventDefault()}}),!0);const s=()=>{if(e.selection.isCollapsed()){const t=o();(t.inlinePatterns.length>0||r())&&((e,t)=>{const n=e.selection.getRng();iT(e,n).map((o=>{const r=Math.max(0,n.startOffset-1),s=dT(e.dom,o,n.startContainer,r),a=lT(t,o,s),i=CT(e,o,n.startContainer,r,a,!1);i.length>0&&e.undoManager.transact((()=>{wT(e,i)}))}))})(e,t)}};e.on("keyup",(e=>{ET(n,e,((e,t)=>e===t.keyCode&&!af.modifierPressed(t)))&&s()})),e.on("keypress",(n=>{ET(t,n,((e,t)=>e.charCodeAt(0)===t.charCode))&&vg.setEditorTimeout(e,s)}))})(e)})(e));const r=pR(e);B_(e,r),(e=>{e.on("NodeChange",T(F_,e))})(e),(e=>{var t;const n=e.dom,o=Il(e),r=null!==(t=md(e))&&void 0!==t?t:"",s=(t,a)=>{if((e=>{if(dx(e)){const t=e.keyCode;return!cx(e)&&(af.metaKeyPressed(e)||e.altKey||t>=112&&t<=123||H(ix,t))}return!1})(t))return;const i=e.getBody(),l=!(e=>dx(e)&&!(cx(e)||"keyup"===e.type&&229===e.keyCode))(t)&&((e,t,n)=>{if(gs(yn(t),!1)){const o=t.firstElementChild;return!o||!e.getStyle(t.firstElementChild,"padding-left")&&!e.getStyle(t.firstElementChild,"padding-right")&&n===o.nodeName.toLowerCase()}return!1})(n,i,o);(""!==n.getAttrib(i,lx)!==l||a)&&(n.setAttrib(i,lx,l?r:null),n.setAttrib(i,"aria-placeholder",l?r:null),((e,t)=>{e.dispatch("PlaceholderToggle",{state:t})})(e,l),e.on(l?"keydown":"keyup",s),e.off(l?"keyup":"keydown",s))};Ye(r)&&e.on("init",(t=>{s(t,!0),e.on("change SetContent ExecCommand",s),e.on("paste",(t=>vg.setEditorTimeout(e,(()=>s(t)))))}))})(e),yA(e);const s=(e=>{const t=e;return(e=>xe(e.plugins,"rtc").bind((e=>I.from(e.setup))))(e).fold((()=>(t.rtcInstance=GC(e),I.none())),(e=>(t.rtcInstance=(()=>{const e=N(null),t=N("");return{init:{bindEvents:_},undoManager:{beforeChange:_,add:e,undo:e,redo:e,clear:_,reset:_,hasUndo:L,hasRedo:L,transact:e,ignore:_,extra:_},formatter:{match:L,matchAll:N([]),matchNode:N(void 0),canApply:L,closest:t,apply:_,remove:_,toggle:_,formatChanged:N({unbind:_})},editor:{getContent:t,setContent:N({content:"",html:""}),insertContent:N(""),addVisual:_},selection:{getContent:t},autocompleter:{addDecoration:_,removeDecoration:_},raw:{getModel:N(I.none())}}})(),I.some((()=>e().then((e=>(t.rtcInstance=(e=>{const t=e=>f(e)?e:{},{init:n,undoManager:o,formatter:r,editor:s,selection:a,autocompleter:i,raw:l}=e;return{init:{bindEvents:n.bindEvents},undoManager:{beforeChange:o.beforeChange,add:o.add,undo:o.undo,redo:o.redo,clear:o.clear,reset:o.reset,hasUndo:o.hasUndo,hasRedo:o.hasRedo,transact:(e,t,n)=>o.transact(n),ignore:(e,t)=>o.ignore(t),extra:(e,t,n,r)=>o.extra(n,r)},formatter:{match:(e,n,o,s)=>r.match(e,t(n),s),matchAll:r.matchAll,matchNode:r.matchNode,canApply:e=>r.canApply(e),closest:e=>r.closest(e),apply:(e,n,o)=>r.apply(e,t(n)),remove:(e,n,o,s)=>r.remove(e,t(n)),toggle:(e,n,o)=>r.toggle(e,t(n)),formatChanged:(e,t,n,o,s)=>r.formatChanged(t,n,o,s)},editor:{getContent:e=>s.getContent(e),setContent:(e,t)=>({content:s.setContent(e,t),html:""}),insertContent:(e,t)=>(s.insertContent(e),""),addVisual:s.addVisual},selection:{getContent:(e,t)=>a.getContent(t)},autocompleter:{addDecoration:i.addDecoration,removeDecoration:i.removeDecoration},raw:{getModel:()=>I.some(l.getRawModel())}}})(e),e.rtc.isRemote))))))))})(e);(e=>{const t=e.getDoc(),n=e.getBody();(e=>{e.dispatch("PreInit")})(e),Wd(e)||(t.body.spellcheck=!1,kT.setAttrib(n,"spellcheck","false")),e.quirks=_T(e),(e=>{e.dispatch("PostRender")})(e);const o=ld(e);void 0!==o&&(n.dir=o);const r=Kd(e);r&&e.on("BeforeSetContent",(e=>{Pt.each(r,(t=>{e.content=e.content.replace(t,(e=>"\x3c!--mce:protected "+escape(e)+"--\x3e"))}))})),e.on("SetContent",(()=>{e.addVisual(e.getBody())})),e.on("compositionstart compositionend",(t=>{e.composing="compositionstart"===t.type}))})(e),s.fold((()=>{const t=(e=>{let t=!1;const n=setTimeout((()=>{t||e.setProgressState(!0)}),500);return()=>{clearTimeout(n),t=!0,e.setProgressState(!1)}})(e);OT(e).then((()=>{BT(e),t()}))}),(t=>{e.setProgressState(!0),OT(e).then((()=>{t().then((t=>{e.setProgressState(!1),BT(e),ZC(e)}),(t=>{e.notificationManager.open({type:"error",text:String(t)}),BT(e),ZC(e)}))}))}))},DT=M,LT=za.DOM,MT=za.DOM,IT=(e,t)=>({editorContainer:e,iframeContainer:t,api:{}}),FT=e=>{const t=e.getElement();return e.inline?IT(null):(e=>{const t=MT.create("div");return MT.insertAfter(t,e),IT(t,t)})(t)},UT=async e=>{e.dispatch("ScriptsLoaded"),(e=>{const t=Pt.trim(Kl(e)),n=e.ui.registry.getAll().icons,o={...xw.get("default").icons,...xw.get(t).icons};ge(o,((t,o)=>{Ee(n,o)||e.ui.registry.addIcon(o,t)}))})(e),(e=>{const t=pd(e);if(m(t)){const n=Bw.get(t);e.theme=n(e,Bw.urls[t])||{},w(e.theme.init)&&e.theme.init(e,Bw.urls[t]||e.documentBaseUrl.replace(/\/$/,""))}else e.theme={}})(e),(e=>{const t=bd(e),n=Ew.get(t);e.model=n(e,Ew.urls[t])})(e),(e=>{const t=[];V(Ld(e),(n=>{((e,t,n)=>{const o=Ow.get(n),r=Ow.urls[n]||e.documentBaseUrl.replace(/\/$/,"");if(n=Pt.trim(n),o&&-1===Pt.inArray(t,n)){if(e.plugins[n])return;try{const s=o(e,r)||{};e.plugins[n]=s,w(s.init)&&(s.init(e,r),t.push(n))}catch(t){((e,t,n)=>{const o=Ka.translate(["Failed to initialize plugin: {0}",t]);ef(e,"PluginLoadError",{message:o}),Fw(o,n),Lw(e,o)})(e,n,t)}}})(e,t,(e=>e.replace(/^\-/,""))(n))}))})(e);const t=await(e=>{const t=e.getElement();return e.orgDisplay=t.style.display,m(pd(e))?(e=>{const t=e.theme.renderUI;return t?t():FT(e)})(e):w(pd(e))?(e=>{const t=e.getElement(),n=pd(e)(e,t);return n.editorContainer.nodeType&&(n.editorContainer.id=n.editorContainer.id||e.id+"_parent"),n.iframeContainer&&n.iframeContainer.nodeType&&(n.iframeContainer.id=n.iframeContainer.id||e.id+"_iframecontainer"),n.height=n.iframeHeight?n.iframeHeight:t.offsetHeight,n})(e):FT(e)})(e);((e,t)=>{const n={show:I.from(t.show).getOr(_),hide:I.from(t.hide).getOr(_),isEnabled:I.from(t.isEnabled).getOr(M),setEnabled:n=>{e.mode.isReadOnly()||I.from(t.setEnabled).each((e=>e(n)))}};e.ui={...e.ui,...n}})(e,I.from(t.api).getOr({})),e.editorContainer=t.editorContainer,(e=>{e.contentCSS=e.contentCSS.concat((e=>zw(e,sd(e)))(e),(e=>zw(e,id(e)))(e))})(e),e.inline?PT(e):((e,t)=>{((e,t)=>{const n=e.translate("Rich Text Area"),o=tn(yn(e.getElement()),"tabindex").bind(Xe),r=((e,t,n,o)=>{const r=bn("iframe");return o.each((e=>Jt(r,"tabindex",e))),Zt(r,n),Zt(r,{id:e+"_ifr",frameBorder:"0",allowTransparency:"true",title:t}),un(r,"tox-edit-area__iframe"),r})(e.id,n,Tl(e),o).dom;r.onload=()=>{r.onload=null,e.dispatch("load")},e.contentAreaContainer=t.iframeContainer,e.iframeElement=r,e.iframeHTML=(e=>{let t=Ol(e)+"<html><head>";Bl(e)!==e.documentBaseUrl&&(t+='<base href="'+e.documentBaseURI.getURI()+'" />'),t+='<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />';const n=Pl(e),o=Dl(e),r=e.translate(jd(e));return Ll(e)&&(t+='<meta http-equiv="Content-Security-Policy" content="'+Ll(e)+'" />'),t+=`</head><body id="${n}" class="mce-content-body ${o}" data-id="${e.id}" aria-label="${r}"><br></body></html>`,t})(e),LT.add(t.iframeContainer,r)})(e,t),t.editorContainer&&(t.editorContainer.style.display=e.orgDisplay,e.hidden=LT.isHidden(t.editorContainer)),e.getElement().style.display="none",LT.setAttrib(e.id,"aria-hidden","true"),e.getElement().style.visibility=e.orgVisibility,(e=>{const t=e.iframeElement,n=()=>{e.contentDocument=t.contentDocument,PT(e)};if(gc(e)||At.browser.isFirefox()){const t=e.getDoc();t.open(),t.write(e.iframeHTML),t.close(),n()}else{const r=(o=yn(t),No(o,"load",DT,(()=>{r.unbind(),n()})));t.srcdoc=e.iframeHTML}var o})(e)})(e,{editorContainer:t.editorContainer,iframeContainer:t.iframeContainer})},zT=za.DOM,jT=e=>"-"===e.charAt(0),HT=(e,t,n)=>I.from(t).filter((e=>Ye(e)&&!xw.has(e))).map((t=>({url:`${e.editorManager.baseURL}/icons/${t}/icons${n}.js`,name:I.some(t)}))),$T=(e,t)=>{const n=Ha.ScriptLoader,o=()=>{!e.removed&&(e=>{const t=pd(e);return!m(t)||C(Bw.get(t))})(e)&&(e=>{const t=bd(e);return C(Ew.get(t))})(e)&&UT(e)};((e,t)=>{const n=pd(e);if(m(n)&&!jT(n)&&!Ee(Bw.urls,n)){const o=hd(e),r=o?e.documentBaseURI.toAbsolute(o):`themes/${n}/theme${t}.js`;Bw.load(n,r).catch((()=>{((e,t,n)=>{Mw(e,"ThemeLoadError",Iw("theme",t,n))})(e,r,n)}))}})(e,t),((e,t)=>{const n=bd(e);if("plugin"!==n&&!Ee(Ew.urls,n)){const o=vd(e),r=m(o)?e.documentBaseURI.toAbsolute(o):`models/${n}/model${t}.js`;Ew.load(n,r).catch((()=>{((e,t,n)=>{Mw(e,"ModelLoadError",Iw("model",t,n))})(e,r,n)}))}})(e,t),((e,t)=>{const n=td(t),o=nd(t);if(!Ka.hasCode(n)&&"en"!==n){const r=Ye(o)?o:`${t.editorManager.baseURL}/langs/${n}.js`;e.add(r).catch((()=>{((e,t,n)=>{Mw(e,"LanguageLoadError",Iw("language",t,n))})(t,r,n)}))}})(n,e),((e,t,n)=>{const o=HT(t,"default",n),r=(e=>I.from(Yl(e)).filter(Ye).map((e=>({url:e,name:I.none()}))))(t).orThunk((()=>HT(t,Kl(t),"")));V((e=>{const t=[],n=e=>{t.push(e)};for(let t=0;t<e.length;t++)e[t].each(n);return t})([o,r]),(n=>{e.add(n.url).catch((()=>{((e,t,n)=>{Mw(e,"IconsLoadError",Iw("icons",t,n))})(t,n.url,n.name.getOrUndefined())}))}))})(n,e,t),((e,t)=>{const n=(t,n)=>{Ow.load(t,n).catch((()=>{((e,t,n)=>{Mw(e,"PluginLoadError",Iw("plugin",t,n))})(e,n,t)}))};ge(Md(e),((t,o)=>{n(o,t),e.options.set("plugins",Ld(e).concat(o))})),V(Ld(e),(e=>{!(e=Pt.trim(e))||Ow.urls[e]||jT(e)||n(e,`plugins/${e}/plugin${t}.js`)}))})(e,t),n.loadQueue().then(o,o)},qT=xt().deviceType,VT=qT.isPhone(),WT=qT.isTablet(),KT=e=>{if(y(e))return[];{const t=p(e)?e:e.split(/[ ,]/),n=q(t,Ve);return Y(n,Ye)}},YT=(e,t)=>{const n=((t,n)=>{const o={},r={};return ve(t,((t,n)=>H(e,n)),be(o),be(r)),{t:o,f:r}})(t);return o=n.t,r=n.f,{sections:N(o),options:N(r)};var o,r},GT=(e,t)=>Ee(e.sections(),t),XT=(e,t)=>({table_grid:!1,object_resizing:!1,resize:!1,toolbar_mode:xe(e,"toolbar_mode").getOr("scrolling"),toolbar_sticky:!1,...t?{menubar:!1}:{}}),QT=(e,t)=>{var n;const o=null!==(n=t.external_plugins)&&void 0!==n?n:{};return e&&e.external_plugins?Pt.extend({},e.external_plugins,o):o},JT=(e,t,n,o,r)=>{var s;const a=e?{mobile:XT(null!==(s=r.mobile)&&void 0!==s?s:{},t)}:{},i=YT(["mobile"],Jk(a,r)),l=Pt.extend(n,o,i.options(),((e,t)=>e&&GT(t,"mobile"))(e,i)?((e,t,n={})=>{const o=e.sections(),r=xe(o,t).getOr({});return Pt.extend({},n,r)})(i,"mobile"):{},{external_plugins:QT(o,i.options())});return((e,t,n,o)=>{const r=KT(n.forced_plugins),s=KT(o.plugins),a=((e,t)=>GT(e,t)?e.sections()[t]:{})(t,"mobile"),i=((e,t,n,o)=>e&&GT(t,"mobile")?o:n)(e,t,s,a.plugins?KT(a.plugins):s),l=((e,t)=>[...KT(e),...KT(t)])(r,i);return Pt.extend(o,{forced_plugins:r,plugins:l})})(e,i,o,l)},ZT=e=>{(e=>{const t=t=>()=>{V("left,center,right,justify".split(","),(n=>{t!==n&&e.formatter.remove("align"+n)})),"none"!==t&&((t,n)=>{e.formatter.toggle(t,void 0),e.nodeChanged()})("align"+t)};e.editorCommands.addCommands({JustifyLeft:t("left"),JustifyCenter:t("center"),JustifyRight:t("right"),JustifyFull:t("justify"),JustifyNone:t("none")})})(e),(e=>{const t=t=>()=>{const n=e.selection,o=n.isCollapsed()?[e.dom.getParent(n.getNode(),e.dom.isBlock)]:n.getSelectedBlocks();return $(o,(n=>C(e.formatter.matchNode(n,t))))};e.editorCommands.addCommands({JustifyLeft:t("alignleft"),JustifyCenter:t("aligncenter"),JustifyRight:t("alignright"),JustifyFull:t("alignjustify")},"state")})(e)},eO=(e,t)=>{const n=e.selection,o=e.dom;return/^ | $/.test(t)?((e,t,n,o)=>{const r=yn(e.getRoot());return n=eh(r,Vi.fromRangeStart(t),o)?n.replace(/^ /,"&nbsp;"):n.replace(/^&nbsp;/," "),th(r,Vi.fromRangeEnd(t),o)?n.replace(/(&nbsp;| )(<br( \/)>)?$/,"&nbsp;"):n.replace(/&nbsp;(<br( \/)?>)?$/," ")})(o,n.getRng(),t,e.schema):t},tO=(e,t)=>{if(e.selection.isEditable()){const{content:n,details:o}=(e=>{if("string"!=typeof e){const t=Pt.extend({paste:e.paste,data:{paste:e.paste}},e);return{content:e.content,details:t}}return{content:e,details:{}}})(t);wC(e,{...o,content:eO(e,n),format:"html",set:!1,selection:!0}).each((t=>{const n=((e,t,n)=>QC(e).editor.insertContent(t,n))(e,t.content,o);xC(e,n,t),e.addVisual()}))}},nO={"font-size":"size","font-family":"face"},oO=Xt("font"),rO=e=>(t,n)=>I.from(n).map(yn).filter(Wt).bind((n=>((e,t,n)=>Lb(yn(n),(t=>(t=>mo(t,e).orThunk((()=>oO(t)?xe(nO,e).bind((e=>tn(t,e))):I.none())))(t)),(e=>_n(yn(t),e))))(e,t,n.dom).or(((e,t)=>I.from(za.DOM.getStyle(t,e,!0)))(e,n.dom)))).getOr(""),sO=rO("font-size"),aO=k((e=>e.replace(/[\'\"\\]/g,"").replace(/,\s+/g,",")),rO("font-family")),iO=e=>Ou(e.getBody()).bind((e=>{const t=e.container();return I.from(er(t)?t.parentNode:t)})),lO=(e,t)=>((e,t)=>(e=>I.from(e.selection.getRng()).bind((t=>{const n=e.getBody();return t.startContainer===n&&0===t.startOffset?I.none():I.from(e.selection.getStart(!0))})))(e).orThunk(T(iO,e)).map(yn).filter(Wt).bind(t))(e,S(I.some,t)),dO=(e,t)=>{if(/^[0-9.]+$/.test(t)){const n=parseInt(t,10);if(n>=1&&n<=7){const o=(e=>Pt.explode(e.options.get("font_size_style_values")))(e),r=(e=>Pt.explode(e.options.get("font_size_classes")))(e);return r.length>0?r[n-1]||t:o[n-1]||t}return t}return t},cO=e=>{const t=e.split(/\s*,\s*/);return q(t,(e=>-1===e.indexOf(" ")||He(e,'"')||He(e,"'")?e:`'${e}'`)).join(",")},uO=(e,t)=>{const n=e.dom,o=e.selection.getRng(),r=t?e.selection.getStart():e.selection.getEnd(),s=t?o.startContainer:o.endContainer,a=hN(n,s);if(!a||!a.isContentEditable)return;const i=t?po:ho,l=Il(e);((e,t,n,o)=>{const r=e.dom,s=e=>r.isBlock(e)&&e.parentElement===n,a=s(t)?t:r.getParent(o,s,n);return I.from(a).map(yn)})(e,r,a,s).each((t=>{const n=CN(e,s,t.dom,a,!1,l);i(t,yn(n)),e.selection.setCursorLocation(n,0),e.dispatch("NewBlock",{newBlock:n}),dN(e,"insertParagraph")}))},mO=e=>{ZT(e),(e=>{e.editorCommands.addCommands({"Cut,Copy,Paste":t=>{const n=e.getDoc();let o;try{n.execCommand(t)}catch(e){o=!0}if("paste"!==t||n.queryCommandEnabled(t)||(o=!0),o||!n.queryCommandSupported(t)){let t=e.translate("Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.");(At.os.isMacOS()||At.os.isiOS())&&(t=t.replace(/Ctrl\+/g,"\u2318+")),e.notificationManager.open({text:t,type:"error"})}}})})(e),(e=>{e.editorCommands.addCommands({mceAddUndoLevel:()=>{e.undoManager.add()},mceEndUndoLevel:()=>{e.undoManager.add()},Undo:()=>{e.undoManager.undo()},Redo:()=>{e.undoManager.redo()}})})(e),(e=>{e.editorCommands.addCommands({mceSelectNodeDepth:(t,n,o)=>{let r=0;e.dom.getParent(e.selection.getNode(),(t=>!qo(t)||r++!==o||(e.selection.select(t),!1)),e.getBody())},mceSelectNode:(t,n,o)=>{e.selection.select(o)},selectAll:()=>{const t=e.dom.getParent(e.selection.getStart(),lr);if(t){const n=e.dom.createRng();n.selectNodeContents(t),e.selection.setRng(n)}}})})(e),(e=>{e.editorCommands.addCommands({mceCleanup:()=>{const t=e.selection.getBookmark();e.setContent(e.getContent()),e.selection.moveToBookmark(t)},insertImage:(t,n,o)=>{tO(e,e.dom.createHTML("img",{src:o}))},insertHorizontalRule:()=>{e.execCommand("mceInsertContent",!1,"<hr>")},insertText:(t,n,o)=>{tO(e,e.dom.encode(o))},insertHTML:(t,n,o)=>{tO(e,o)},mceInsertContent:(t,n,o)=>{tO(e,o)},mceSetContent:(t,n,o)=>{e.setContent(o)},mceReplaceContent:(t,n,o)=>{e.execCommand("mceInsertContent",!1,o.replace(/\{\$selection\}/g,e.selection.getContent({format:"text"})))},mceNewDocument:()=>{e.setContent(Jd(e))}})})(e),(e=>{const t=(t,n,o)=>{const r=m(o)?{href:o}:o,s=e.dom.getParent(e.selection.getNode(),"a");f(r)&&m(r.href)&&(r.href=r.href.replace(/ /g,"%20"),s&&r.href||e.formatter.remove("link"),r.href&&e.formatter.apply("link",r,s))};e.editorCommands.addCommands({unlink:()=>{if(e.selection.isEditable()){if(e.selection.isCollapsed()){const t=e.dom.getParent(e.selection.getStart(),"a");return void(t&&e.dom.remove(t,!0))}e.formatter.remove("link")}},mceInsertLink:t,createLink:t})})(e),(e=>{e.editorCommands.addCommands({Indent:()=>{(e=>{R_(e,"indent")})(e)},Outdent:()=>{A_(e)}}),e.editorCommands.addCommands({Outdent:()=>k_(e)},"state")})(e),(e=>{e.editorCommands.addCommands({InsertNewBlockBefore:()=>{(e=>{uO(e,!0)})(e)},InsertNewBlockAfter:()=>{(e=>{uO(e,!1)})(e)}})})(e),(e=>{e.editorCommands.addCommands({insertParagraph:()=>{ZN(ON,e)},mceInsertNewLine:(t,n,o)=>{eR(e,o)},InsertLineBreak:(t,n,o)=>{ZN(UN,e)}})})(e),(e=>{(e=>{e.editorCommands.addCommands({"InsertUnorderedList,InsertOrderedList":t=>{e.getDoc().execCommand(t);const n=e.dom.getParent(e.selection.getNode(),"ol,ul");if(n){const t=n.parentNode;if(t&&/^(H[1-6]|P|ADDRESS|PRE)$/.test(t.nodeName)){const o=e.selection.getBookmark();e.dom.split(t,n),e.selection.moveToBookmark(o)}}}})})(e),(e=>{e.editorCommands.addCommands({"InsertUnorderedList,InsertOrderedList":t=>{const n=e.dom.getParent(e.selection.getNode(),"ul,ol");return n&&("insertunorderedlist"===t&&"UL"===n.tagName||"insertorderedlist"===t&&"OL"===n.tagName)}},"state")})(e)})(e),(e=>{(e=>{const t=(t,n)=>{e.formatter.toggle(t,n),e.nodeChanged()};e.editorCommands.addCommands({"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":e=>{t(e)},"ForeColor,HiliteColor":(e,n,o)=>{t(e,{value:o})},BackColor:(e,n,o)=>{t("hilitecolor",{value:o})},FontName:(t,n,o)=>{((e,t)=>{const n=dO(e,t);e.formatter.toggle("fontname",{value:cO(n)}),e.nodeChanged()})(e,o)},FontSize:(t,n,o)=>{((e,t)=>{e.formatter.toggle("fontsize",{value:dO(e,t)}),e.nodeChanged()})(e,o)},LineHeight:(t,n,o)=>{((e,t)=>{e.formatter.toggle("lineheight",{value:String(t)}),e.nodeChanged()})(e,o)},Lang:(e,n,o)=>{var r;t(e,{value:o.code,customValue:null!==(r=o.customCode)&&void 0!==r?r:null})},RemoveFormat:t=>{e.formatter.remove(t)},mceBlockQuote:()=>{t("blockquote")},FormatBlock:(e,n,o)=>{t(m(o)?o:"p")},mceToggleFormat:(e,n,o)=>{t(o)}})})(e),(e=>{const t=t=>e.formatter.match(t);e.editorCommands.addCommands({"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":e=>t(e),mceBlockQuote:()=>t("blockquote")},"state"),e.editorCommands.addQueryValueHandler("FontName",(()=>(e=>lO(e,(t=>aO(e.getBody(),t.dom))).getOr(""))(e))),e.editorCommands.addQueryValueHandler("FontSize",(()=>(e=>lO(e,(t=>sO(e.getBody(),t.dom))).getOr(""))(e))),e.editorCommands.addQueryValueHandler("LineHeight",(()=>(e=>lO(e,(t=>{const n=yn(e.getBody()),o=Lb(t,(e=>mo(e,"line-height")),T(_n,n));return o.getOrThunk((()=>{const e=parseFloat(co(t,"line-height")),n=parseFloat(co(t,"font-size"));return String(e/n)}))})).getOr(""))(e)))})(e)})(e),(e=>{e.editorCommands.addCommands({mceRemoveNode:(t,n,o)=>{const r=null!=o?o:e.selection.getNode();if(r!==e.getBody()){const t=e.selection.getBookmark();e.dom.remove(r,!0),e.selection.moveToBookmark(t)}},mcePrint:()=>{e.getWin().print()},mceFocus:(t,n,o)=>{((e,t)=>{e.removed||(t?Tg(e):(e=>{const t=e.selection,n=e.getBody();let o=t.getRng();e.quirks.refreshContentEditable(),C(e.bookmark)&&!Rg(e)&&hg(e).each((t=>{e.selection.setRng(t),o=t}));const r=((e,t)=>e.dom.getParent(t,(t=>"true"===e.dom.getContentEditable(t))))(e,t.getNode());if(r&&e.dom.isChildOf(r,n))return Ng(r),Sg(e,o),void Tg(e);e.inline||(At.browser.isOpera()||Ng(n),e.getWin().focus()),(At.browser.isFirefox()||e.inline)&&(Ng(n),Sg(e,o)),Tg(e)})(e))})(e,!0===o)},mceToggleVisualAid:()=>{e.hasVisual=!e.hasVisual,e.addVisual()}})})(e)},fO=["toggleview"],gO=e=>H(fO,e.toLowerCase());class pO{constructor(e){this.commands={state:{},exec:{},value:{}},this.editor=e}execCommand(e,t=!1,n,o){const r=this.editor,s=e.toLowerCase(),a=null==o?void 0:o.skip_focus;if(r.removed)return!1;if("mcefocus"!==s&&(/^(mceAddUndoLevel|mceEndUndoLevel)$/i.test(s)||a?(e=>{hg(e).each((t=>e.selection.setRng(t)))})(r):r.focus()),r.dispatch("BeforeExecCommand",{command:e,ui:t,value:n}).isDefaultPrevented())return!1;const i=this.commands.exec[s];return!!w(i)&&(i(s,t,n),r.dispatch("ExecCommand",{command:e,ui:t,value:n}),!0)}queryCommandState(e){if(!gO(e)&&this.editor.quirks.isHidden()||this.editor.removed)return!1;const t=e.toLowerCase(),n=this.commands.state[t];return!!w(n)&&n(t)}queryCommandValue(e){if(!gO(e)&&this.editor.quirks.isHidden()||this.editor.removed)return"";const t=e.toLowerCase(),n=this.commands.value[t];return w(n)?n(t):""}addCommands(e,t="exec"){const n=this.commands;ge(e,((e,o)=>{V(o.toLowerCase().split(","),(o=>{n[t][o]=e}))}))}addCommand(e,t,n){const o=e.toLowerCase();this.commands.exec[o]=(e,o,r)=>t.call(null!=n?n:this.editor,o,r)}queryCommandSupported(e){const t=e.toLowerCase();return!!this.commands.exec[t]}addQueryStateHandler(e,t,n){this.commands.state[e.toLowerCase()]=()=>t.call(null!=n?n:this.editor)}addQueryValueHandler(e,t,n){this.commands.value[e.toLowerCase()]=()=>t.call(null!=n?n:this.editor)}}const hO="data-mce-contenteditable",bO=(e,t,n)=>{try{e.getDoc().execCommand(t,!1,String(n))}catch(e){}},vO=(e,t)=>{e.dom.contentEditable=t?"true":"false"},yO=e=>e.readonly,CO=e=>{e.parser.addAttributeFilter("contenteditable",(t=>{yO(e)&&V(t,(e=>{e.attr(hO,e.attr("contenteditable")),e.attr("contenteditable","false")}))})),e.serializer.addAttributeFilter(hO,(t=>{yO(e)&&V(t,(e=>{e.attr("contenteditable",e.attr(hO))}))})),e.serializer.addTempAttr(hO)},wO=["copy"],xO=Pt.makeMap("focus blur focusin focusout click dblclick mousedown mouseup mousemove mouseover beforepaste paste cut copy selectionchange mouseout mouseenter mouseleave wheel keydown keypress keyup input beforeinput contextmenu dragstart dragend dragover draggesture dragdrop drop drag submit compositionstart compositionend compositionupdate touchstart touchmove touchend touchcancel"," ");class EO{static isNative(e){return!!xO[e.toLowerCase()]}constructor(e){this.bindings={},this.settings=e||{},this.scope=this.settings.scope||this,this.toggleEvent=this.settings.toggleEvent||L}fire(e,t){return this.dispatch(e,t)}dispatch(e,t){const n=e.toLowerCase(),o=_a(n,null!=t?t:{},this.scope);this.settings.beforeFire&&this.settings.beforeFire(o);const r=this.bindings[n];if(r)for(let e=0,t=r.length;e<t;e++){const t=r[e];if(!t.removed){if(t.once&&this.off(n,t.func),o.isImmediatePropagationStopped())return o;if(!1===t.func.call(this.scope,o))return o.preventDefault(),o}}return o}on(e,t,n,o){if(!1===t&&(t=L),t){const r={func:t,removed:!1};o&&Pt.extend(r,o);const s=e.toLowerCase().split(" ");let a=s.length;for(;a--;){const e=s[a];let t=this.bindings[e];t||(t=[],this.toggleEvent(e,!0)),t=n?[r,...t]:[...t,r],this.bindings[e]=t}}return this}off(e,t){if(e){const n=e.toLowerCase().split(" ");let o=n.length;for(;o--;){const r=n[o];let s=this.bindings[r];if(!r)return ge(this.bindings,((e,t)=>{this.toggleEvent(t,!1),delete this.bindings[t]})),this;if(s){if(t){const e=K(s,(e=>e.func===t));s=e.fail,this.bindings[r]=s,V(e.pass,(e=>{e.removed=!0}))}else s.length=0;s.length||(this.toggleEvent(e,!1),delete this.bindings[r])}}}else ge(this.bindings,((e,t)=>{this.toggleEvent(t,!1)})),this.bindings={};return this}once(e,t,n){return this.on(e,t,n,{once:!0})}has(e){e=e.toLowerCase();const t=this.bindings[e];return!(!t||0===t.length)}}const _O=e=>(e._eventDispatcher||(e._eventDispatcher=new EO({scope:e,toggleEvent:(t,n)=>{EO.isNative(t)&&e.toggleNativeEvent&&e.toggleNativeEvent(t,n)}})),e._eventDispatcher),kO={fire(e,t,n){return this.dispatch(e,t,n)},dispatch(e,t,n){const o=this;if(o.removed&&"remove"!==e&&"detach"!==e)return _a(e.toLowerCase(),null!=t?t:{},o);const r=_O(o).dispatch(e,t);if(!1!==n&&o.parent){let t=o.parent();for(;t&&!r.isPropagationStopped();)t.dispatch(e,r,!1),t=t.parent?t.parent():void 0}return r},on(e,t,n){return _O(this).on(e,t,n)},off(e,t){return _O(this).off(e,t)},once(e,t){return _O(this).once(e,t)},hasEventListeners(e){return _O(this).has(e)}},SO=za.DOM;let NO;const RO=(e,t)=>{if("selectionchange"===t)return e.getDoc();if(!e.inline&&/^(?:mouse|touch|click|contextmenu|drop|dragover|dragend)/.test(t))return e.getDoc().documentElement;const n=fd(e);return n?(e.eventRoot||(e.eventRoot=SO.select(n)[0]),e.eventRoot):e.getBody()},AO=(e,t,n)=>{(e=>!e.hidden&&!yO(e))(e)?e.dispatch(t,n):yO(e)&&((e,t)=>{if((e=>"click"===e.type)(t)&&!af.metaKeyPressed(t)){const n=yn(t.target);((e,t)=>no(t,"a",(t=>_n(t,yn(e.getBody())))).bind((e=>tn(e,"href"))))(e,n).each((n=>{if(t.preventDefault(),/^#/.test(n)){const t=e.dom.select(`${n},[name="${ze(n,"#")}"]`);t.length&&e.selection.scrollIntoView(t[0],!0)}else window.open(n,"_blank","rel=noopener noreferrer,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes,scrollbars=yes")}))}else(e=>H(wO,e.type))(t)&&e.dispatch(t.type,t)})(e,n)},TO=(e,t)=>{if(e.delegates||(e.delegates={}),e.delegates[t]||e.removed)return;const n=RO(e,t);if(fd(e)){if(NO||(NO={},e.editorManager.on("removeEditor",(()=>{e.editorManager.activeEditor||NO&&(ge(NO,((t,n)=>{e.dom.unbind(RO(e,n))})),NO=null)}))),NO[t])return;const o=n=>{const o=n.target,r=e.editorManager.get();let s=r.length;for(;s--;){const e=r[s].getBody();(e===o||SO.isChildOf(o,e))&&AO(r[s],t,n)}};NO[t]=o,SO.bind(n,t,o)}else{const o=n=>{AO(e,t,n)};SO.bind(n,t,o),e.delegates[t]=o}},OO={...kO,bindPendingEventDelegates(){const e=this;Pt.each(e._pendingNativeEvents,(t=>{TO(e,t)}))},toggleNativeEvent(e,t){const n=this;"focus"!==e&&"blur"!==e&&(n.removed||(t?n.initialized?TO(n,e):n._pendingNativeEvents?n._pendingNativeEvents.push(e):n._pendingNativeEvents=[e]:n.initialized&&n.delegates&&(n.dom.unbind(RO(n,e),e,n.delegates[e]),delete n.delegates[e])))},unbindAllNativeEvents(){const e=this,t=e.getBody(),n=e.dom;e.delegates&&(ge(e.delegates,((t,n)=>{e.dom.unbind(RO(e,n),n,t)})),delete e.delegates),!e.inline&&t&&n&&(t.onload=null,n.unbind(e.getWin()),n.unbind(e.getDoc())),n&&(n.unbind(t),n.unbind(e.getContainer()))}},BO=e=>m(e)?{value:e.split(/[ ,]/),valid:!0}:E(e,m)?{value:e,valid:!0}:{valid:!1,message:"The value must be a string[] or a comma/space separated string."},PO=(e,t)=>e+(Ge(t.message)?"":`. ${t.message}`),DO=e=>e.valid,LO=(e,t,n="")=>{const o=t(e);return b(o)?o?{value:e,valid:!0}:{valid:!1,message:n}:o},MO=["design","readonly"],IO=(e,t,n,o)=>{const r=n[t.get()],s=n[o];try{s.activate()}catch(e){return void console.error(`problem while activating editor mode ${o}:`,e)}r.deactivate(),r.editorReadOnly!==s.editorReadOnly&&((e,t)=>{const n=yn(e.getBody());((e,t,n)=>{gn(e,t)&&!n?fn(e,t):n&&un(e,t)})(n,"mce-content-readonly",t),t?(e.selection.controlSelection.hideResizeRect(),e._selectionOverrides.hideFakeCaret(),(e=>{I.from(e.selection.getNode()).each((e=>{e.removeAttribute("data-mce-selected")}))})(e),e.readonly=!0,vO(n,!1),V(Uo(n,'*[contenteditable="true"]'),(e=>{Jt(e,hO,"true"),vO(e,!1)}))):(e.readonly=!1,e.hasEditableRoot()&&vO(n,!0),V(Uo(n,`*[${hO}="true"]`),(e=>{on(e,hO),vO(e,!0)})),bO(e,"StyleWithCSS",!1),bO(e,"enableInlineTableEditing",!1),bO(e,"enableObjectResizing",!1),Ag(e)&&e.focus(),(e=>{e.selection.setRng(e.selection.getRng())})(e),e.nodeChanged())})(e,s.editorReadOnly),t.set(o),((e,t)=>{e.dispatch("SwitchMode",{mode:t})})(e,o)},FO=Pt.each,UO=Pt.explode,zO={f1:112,f2:113,f3:114,f4:115,f5:116,f6:117,f7:118,f8:119,f9:120,f10:121,f11:122,f12:123},jO=Pt.makeMap("alt,ctrl,shift,meta,access"),HO=e=>{const t={},n=At.os.isMacOS()||At.os.isiOS();FO(UO(e.toLowerCase(),"+"),(e=>{(e=>e in jO)(e)?t[e]=!0:/^[0-9]{2,}$/.test(e)?t.keyCode=parseInt(e,10):(t.charCode=e.charCodeAt(0),t.keyCode=zO[e]||e.toUpperCase().charCodeAt(0))}));const o=[t.keyCode];let r;for(r in jO)t[r]?o.push(r):t[r]=!1;return t.id=o.join(","),t.access&&(t.alt=!0,n?t.ctrl=!0:t.shift=!0),t.meta&&(n?t.meta=!0:(t.ctrl=!0,t.meta=!1)),t};class $O{constructor(e){this.shortcuts={},this.pendingPatterns=[],this.editor=e;const t=this;e.on("keyup keypress keydown",(e=>{!t.hasModifier(e)&&!t.isFunctionKey(e)||e.isDefaultPrevented()||(FO(t.shortcuts,(n=>{t.matchShortcut(e,n)&&(t.pendingPatterns=n.subpatterns.slice(0),"keydown"===e.type&&t.executeShortcutAction(n))})),t.matchShortcut(e,t.pendingPatterns[0])&&(1===t.pendingPatterns.length&&"keydown"===e.type&&t.executeShortcutAction(t.pendingPatterns[0]),t.pendingPatterns.shift()))}))}add(e,t,n,o){const r=this,s=r.normalizeCommandFunc(n);return FO(UO(Pt.trim(e)),(e=>{const n=r.createShortcut(e,t,s,o);r.shortcuts[n.id]=n})),!0}remove(e){const t=this.createShortcut(e);return!!this.shortcuts[t.id]&&(delete this.shortcuts[t.id],!0)}normalizeCommandFunc(e){const t=this,n=e;return"string"==typeof n?()=>{t.editor.execCommand(n,!1,null)}:Pt.isArray(n)?()=>{t.editor.execCommand(n[0],n[1],n[2])}:n}createShortcut(e,t,n,o){const r=Pt.map(UO(e,">"),HO);return r[r.length-1]=Pt.extend(r[r.length-1],{func:n,scope:o||this.editor}),Pt.extend(r[0],{desc:this.editor.translate(t),subpatterns:r.slice(1)})}hasModifier(e){return e.altKey||e.ctrlKey||e.metaKey}isFunctionKey(e){return"keydown"===e.type&&e.keyCode>=112&&e.keyCode<=123}matchShortcut(e,t){return!!t&&t.ctrl===e.ctrlKey&&t.meta===e.metaKey&&t.alt===e.altKey&&t.shift===e.shiftKey&&!!(e.keyCode===t.keyCode||e.charCode&&e.charCode===t.charCode)&&(e.preventDefault(),!0)}executeShortcutAction(e){return e.func?e.func.call(e.scope):null}}const qO=()=>{const e=(()=>{const e={},t={},n={},o={},r={},s={},a={},i={},l=(e,t)=>(n,o)=>{e[n.toLowerCase()]={...o,type:t}};return{addButton:l(e,"button"),addGroupToolbarButton:l(e,"grouptoolbarbutton"),addToggleButton:l(e,"togglebutton"),addMenuButton:l(e,"menubutton"),addSplitButton:l(e,"splitbutton"),addMenuItem:l(t,"menuitem"),addNestedMenuItem:l(t,"nestedmenuitem"),addToggleMenuItem:l(t,"togglemenuitem"),addAutocompleter:l(n,"autocompleter"),addContextMenu:l(r,"contextmenu"),addContextToolbar:l(s,"contexttoolbar"),addContextForm:l(s,"contextform"),addSidebar:l(a,"sidebar"),addView:l(i,"views"),addIcon:(e,t)=>o[e.toLowerCase()]=t,getAll:()=>({buttons:e,menuItems:t,icons:o,popups:n,contextMenus:r,contextToolbars:s,sidebars:a,views:i})}})();return{addAutocompleter:e.addAutocompleter,addButton:e.addButton,addContextForm:e.addContextForm,addContextMenu:e.addContextMenu,addContextToolbar:e.addContextToolbar,addIcon:e.addIcon,addMenuButton:e.addMenuButton,addMenuItem:e.addMenuItem,addNestedMenuItem:e.addNestedMenuItem,addSidebar:e.addSidebar,addSplitButton:e.addSplitButton,addToggleButton:e.addToggleButton,addGroupToolbarButton:e.addGroupToolbarButton,addToggleMenuItem:e.addToggleMenuItem,addView:e.addView,getAll:e.getAll}},VO=za.DOM,WO=Pt.extend,KO=Pt.each;class YO{constructor(e,t,n){this.plugins={},this.contentCSS=[],this.contentStyles=[],this.loadedCSS={},this.isNotDirty=!1,this.composing=!1,this.destroyed=!1,this.hasHiddenInput=!1,this.iframeElement=null,this.initialized=!1,this.readonly=!1,this.removed=!1,this.startContent="",this._pendingNativeEvents=[],this._skinLoaded=!1,this._editableRoot=!0,this.editorManager=n,this.documentBaseUrl=n.documentBaseURL,WO(this,OO);const o=this;this.id=e,this.hidden=!1;const r=((e,t)=>JT(VT||WT,VT,t,e,t))(n.defaultOptions,t);this.options=((e,t)=>{const n={},o={},r=(e,t,n)=>{const r=LO(t,n);return DO(r)?(o[e]=r.value,!0):(console.warn(PO(`Invalid value passed for the ${e} option`,r)),!1)},s=e=>Ee(n,e);return{register:(e,s)=>{const a=(e=>m(e.processor))(s)?(e=>{const t=(()=>{switch(e){case"array":return p;case"boolean":return b;case"function":return w;case"number":return x;case"object":return f;case"string":return m;case"string[]":return BO;case"object[]":return e=>E(e,f);case"regexp":return e=>u(e,RegExp);default:return M}})();return n=>LO(n,t,`The value must be a ${e}.`)})(s.processor):s.processor,i=((e,t,n)=>{if(!v(t)){const o=LO(t,n);if(DO(o))return o.value;console.error(PO(`Invalid default value passed for the "${e}" option`,o))}})(e,s.default,a);n[e]={...s,default:i,processor:a},xe(o,e).orThunk((()=>xe(t,e))).each((t=>r(e,t,a)))},isRegistered:s,get:e=>xe(o,e).orThunk((()=>xe(n,e).map((e=>e.default)))).getOrUndefined(),set:(e,t)=>{if(s(e)){const o=n[e];return o.immutable?(console.error(`"${e}" is an immutable option and cannot be updated`),!1):r(e,t,o.processor)}return console.warn(`"${e}" is not a registered option. Ensure the option has been registered before setting a value.`),!1},unset:e=>{const t=s(e);return t&&delete o[e],t},isSet:e=>Ee(o,e)}})(0,r),(e=>{const t=e.options.register;t("id",{processor:"string",default:e.id}),t("selector",{processor:"string"}),t("target",{processor:"object"}),t("suffix",{processor:"string"}),t("cache_suffix",{processor:"string"}),t("base_url",{processor:"string"}),t("referrer_policy",{processor:"string",default:""}),t("language_load",{processor:"boolean",default:!0}),t("inline",{processor:"boolean",default:!1}),t("iframe_attrs",{processor:"object",default:{}}),t("doctype",{processor:"string",default:"<!DOCTYPE html>"}),t("document_base_url",{processor:"string",default:e.documentBaseUrl}),t("body_id",{processor:Al(e,"tinymce"),default:"tinymce"}),t("body_class",{processor:Al(e),default:""}),t("content_security_policy",{processor:"string",default:""}),t("br_in_pre",{processor:"boolean",default:!0}),t("forced_root_block",{processor:e=>{const t=m(e)&&Ye(e);return t?{value:e,valid:t}:{valid:!1,message:"Must be a non-empty string."}},default:"p"}),t("forced_root_block_attrs",{processor:"object",default:{}}),t("newline_behavior",{processor:e=>{const t=H(["block","linebreak","invert","default"],e);return t?{value:e,valid:t}:{valid:!1,message:"Must be one of: block, linebreak, invert or default."}},default:"default"}),t("br_newline_selector",{processor:"string",default:".mce-toc h2,figcaption,caption"}),t("no_newline_selector",{processor:"string",default:""}),t("keep_styles",{processor:"boolean",default:!0}),t("end_container_on_empty_block",{processor:e=>b(e)||m(e)?{valid:!0,value:e}:{valid:!1,message:"Must be boolean or a string"},default:"blockquote"}),t("font_size_style_values",{processor:"string",default:"xx-small,x-small,small,medium,large,x-large,xx-large"}),t("font_size_legacy_values",{processor:"string",default:"xx-small,small,medium,large,x-large,xx-large,300%"}),t("font_size_classes",{processor:"string",default:""}),t("automatic_uploads",{processor:"boolean",default:!0}),t("images_reuse_filename",{processor:"boolean",default:!1}),t("images_replace_blob_uris",{processor:"boolean",default:!0}),t("icons",{processor:"string",default:""}),t("icons_url",{processor:"string",default:""}),t("images_upload_url",{processor:"string",default:""}),t("images_upload_base_path",{processor:"string",default:""}),t("images_upload_credentials",{processor:"boolean",default:!1}),t("images_upload_handler",{processor:"function"}),t("language",{processor:"string",default:"en"}),t("language_url",{processor:"string",default:""}),t("entity_encoding",{processor:"string",default:"named"}),t("indent",{processor:"boolean",default:!0}),t("indent_before",{processor:"string",default:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,th,ul,ol,li,dl,dt,dd,area,table,thead,tfoot,tbody,tr,section,details,summary,article,hgroup,aside,figure,figcaption,option,optgroup,datalist"}),t("indent_after",{processor:"string",default:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,th,ul,ol,li,dl,dt,dd,area,table,thead,tfoot,tbody,tr,section,details,summary,article,hgroup,aside,figure,figcaption,option,optgroup,datalist"}),t("indent_use_margin",{processor:"boolean",default:!1}),t("indentation",{processor:"string",default:"40px"}),t("content_css",{processor:e=>{const t=!1===e||m(e)||E(e,m);return t?m(e)?{value:q(e.split(","),Ve),valid:t}:p(e)?{value:e,valid:t}:!1===e?{value:[],valid:t}:{value:e,valid:t}:{valid:!1,message:"Must be false, a string or an array of strings."}},default:kd(e)?[]:["default"]}),t("content_style",{processor:"string"}),t("content_css_cors",{processor:"boolean",default:!1}),t("font_css",{processor:e=>{const t=m(e)||E(e,m);return t?{value:p(e)?e:q(e.split(","),Ve),valid:t}:{valid:!1,message:"Must be a string or an array of strings."}},default:[]}),t("inline_boundaries",{processor:"boolean",default:!0}),t("inline_boundaries_selector",{processor:"string",default:"a[href],code,span.mce-annotation"}),t("object_resizing",{processor:e=>{const t=b(e)||m(e);return t?!1===e||El.isiPhone()||El.isiPad()?{value:"",valid:t}:{value:!0===e?"table,img,figure.image,div,video,iframe":e,valid:t}:{valid:!1,message:"Must be boolean or a string"}},default:!_l}),t("resize_img_proportional",{processor:"boolean",default:!0}),t("event_root",{processor:"object"}),t("service_message",{processor:"string"}),t("theme",{processor:e=>!1===e||m(e)||w(e),default:"silver"}),t("theme_url",{processor:"string"}),t("formats",{processor:"object"}),t("format_empty_lines",{processor:"boolean",default:!1}),t("format_noneditable_selector",{processor:"string",default:""}),t("preview_styles",{processor:e=>{const t=!1===e||m(e);return t?{value:!1===e?"":e,valid:t}:{valid:!1,message:"Must be false or a string"}},default:"font-family font-size font-weight font-style text-decoration text-transform color background-color border border-radius outline text-shadow"}),t("custom_ui_selector",{processor:"string",default:""}),t("hidden_input",{processor:"boolean",default:!0}),t("submit_patch",{processor:"boolean",default:!0}),t("encoding",{processor:"string"}),t("add_form_submit_trigger",{processor:"boolean",default:!0}),t("add_unload_trigger",{processor:"boolean",default:!0}),t("custom_undo_redo_levels",{processor:"number",default:0}),t("disable_nodechange",{processor:"boolean",default:!1}),t("readonly",{processor:"boolean",default:!1}),t("editable_root",{processor:"boolean",default:!0}),t("plugins",{processor:"string[]",default:[]}),t("external_plugins",{processor:"object"}),t("forced_plugins",{processor:"string[]"}),t("model",{processor:"string",default:e.hasPlugin("rtc")?"plugin":"dom"}),t("model_url",{processor:"string"}),t("block_unsupported_drop",{processor:"boolean",default:!0}),t("visual",{processor:"boolean",default:!0}),t("visual_table_class",{processor:"string",default:"mce-item-table"}),t("visual_anchor_class",{processor:"string",default:"mce-item-anchor"}),t("iframe_aria_text",{processor:"string",default:"Rich Text Area. Press ALT-0 for help."}),t("setup",{processor:"function"}),t("init_instance_callback",{processor:"function"}),t("url_converter",{processor:"function",default:e.convertURL}),t("url_converter_scope",{processor:"object",default:e}),t("urlconverter_callback",{processor:"function"}),t("allow_conditional_comments",{processor:"boolean",default:!1}),t("allow_html_data_urls",{processor:"boolean",default:!1}),t("allow_svg_data_urls",{processor:"boolean"}),t("allow_html_in_named_anchor",{processor:"boolean",default:!1}),t("allow_script_urls",{processor:"boolean",default:!1}),t("allow_unsafe_link_target",{processor:"boolean",default:!1}),t("convert_fonts_to_spans",{processor:"boolean",default:!0,deprecated:!0}),t("fix_list_elements",{processor:"boolean",default:!1}),t("preserve_cdata",{processor:"boolean",default:!1}),t("remove_trailing_brs",{processor:"boolean",default:!0}),t("pad_empty_with_br",{processor:"boolean",default:!1}),t("inline_styles",{processor:"boolean",default:!0,deprecated:!0}),t("element_format",{processor:"string",default:"html"}),t("entities",{processor:"string"}),t("schema",{processor:"string",default:"html5"}),t("convert_urls",{processor:"boolean",default:!0}),t("relative_urls",{processor:"boolean",default:!0}),t("remove_script_host",{processor:"boolean",default:!0}),t("custom_elements",{processor:"string"}),t("extended_valid_elements",{processor:"string"}),t("invalid_elements",{processor:"string"}),t("invalid_styles",{processor:Rl}),t("valid_children",{processor:"string"}),t("valid_classes",{processor:Rl}),t("valid_elements",{processor:"string"}),t("valid_styles",{processor:Rl}),t("verify_html",{processor:"boolean",default:!0}),t("auto_focus",{processor:e=>m(e)||!0===e}),t("browser_spellcheck",{processor:"boolean",default:!1}),t("protect",{processor:"array"}),t("images_file_types",{processor:"string",default:"jpeg,jpg,jpe,jfi,jif,jfif,png,gif,bmp,webp"}),t("deprecation_warnings",{processor:"boolean",default:!0}),t("a11y_advanced_options",{processor:"boolean",default:!1}),t("api_key",{processor:"string"}),t("paste_block_drop",{processor:"boolean",default:!1}),t("paste_data_images",{processor:"boolean",default:!0}),t("paste_preprocess",{processor:"function"}),t("paste_postprocess",{processor:"function"}),t("paste_webkit_styles",{processor:"string",default:"none"}),t("paste_remove_styles_if_webkit",{processor:"boolean",default:!0}),t("paste_merge_formats",{processor:"boolean",default:!0}),t("smart_paste",{processor:"boolean",default:!0}),t("paste_as_text",{processor:"boolean",default:!1}),t("paste_tab_spaces",{processor:"number",default:4}),t("text_patterns",{processor:e=>E(e,f)||!1===e?{value:xl(!1===e?[]:e),valid:!0}:{valid:!1,message:"Must be an array of objects or false."},default:[{start:"*",end:"*",format:"italic"},{start:"**",end:"**",format:"bold"},{start:"#",format:"h1"},{start:"##",format:"h2"},{start:"###",format:"h3"},{start:"####",format:"h4"},{start:"#####",format:"h5"},{start:"######",format:"h6"},{start:"1. ",cmd:"InsertOrderedList"},{start:"* ",cmd:"InsertUnorderedList"},{start:"- ",cmd:"InsertUnorderedList"}]}),t("text_patterns_lookup",{processor:e=>{return w(e)?{value:(t=e,e=>{const n=t(e);return xl(n)}),valid:!0}:{valid:!1,message:"Must be a single function"};var t},default:e=>[]}),t("noneditable_class",{processor:"string",default:"mceNonEditable"}),t("editable_class",{processor:"string",default:"mceEditable"}),t("noneditable_regexp",{processor:e=>E(e,Sl)?{value:e,valid:!0}:Sl(e)?{value:[e],valid:!0}:{valid:!1,message:"Must be a RegExp or an array of RegExp."},default:[]}),t("table_tab_navigation",{processor:"boolean",default:!0}),t("highlight_on_focus",{processor:"boolean",default:!1}),t("xss_sanitization",{processor:"boolean",default:!0}),t("details_initial_state",{processor:e=>{const t=H(["inherited","collapsed","expanded"],e);return t?{value:e,valid:t}:{valid:!1,message:"Must be one of: inherited, collapsed, or expanded."}},default:"inherited"}),t("details_serialized_state",{processor:e=>{const t=H(["inherited","collapsed","expanded"],e);return t?{value:e,valid:t}:{valid:!1,message:"Must be one of: inherited, collapsed, or expanded."}},default:"inherited"}),t("init_content_sync",{processor:"boolean",default:!1}),t("newdocument_content",{processor:"string",default:""}),t("force_hex_color",{processor:e=>{const t=["always","rgb_only","off"],n=H(t,e);return n?{value:e,valid:n}:{valid:!1,message:`Must be one of: ${t.join(", ")}.`}},default:"off"}),t("sandbox_iframes",{processor:"boolean",default:!1}),t("convert_unsafe_embeds",{processor:"boolean",default:!1}),e.on("ScriptsLoaded",(()=>{t("directionality",{processor:"string",default:Ka.isRtl()?"rtl":void 0}),t("placeholder",{processor:"string",default:kl.getAttrib(e.getElement(),"placeholder")})}))})(o);const s=this.options.get;s("deprecation_warnings")&&((e,t)=>{((e,t)=>{const n=gw(e),o=bw(t),r=o.length>0,s=n.length>0,a="mobile"===t.theme;if(r||s||a){const e="\n- ",t=a?`\n\nThemes:${e}mobile`:"",i=r?`\n\nPlugins:${e}${o.join(e)}`:"",l=s?`\n\nOptions:${e}${n.join(e)}`:"";console.warn("The following deprecated features are currently enabled and have been removed in TinyMCE 6.0. These features will no longer work and should be removed from the TinyMCE configuration. See https://www.tiny.cloud/docs/tinymce/6/migration-from-5x/ for more information."+t+i+l)}})(e,t),((e,t)=>{const n=pw(e),o=vw(t),r=o.length>0,s=n.length>0;if(r||s){const e="\n- ",t=r?`\n\nPlugins:${e}${o.map(yw).join(e)}`:"",a=s?`\n\nOptions:${e}${n.join(e)}`:"";console.warn("The following deprecated features are currently enabled but will be removed soon."+t+a)}})(e,t)})(t,r);const a=s("suffix");a&&(n.suffix=a),this.suffix=n.suffix;const i=s("base_url");i&&n._setBaseUrl(i),this.baseUri=n.baseURI;const l=ed(o);l&&(Ha.ScriptLoader._setReferrerPolicy(l),za.DOM.styleSheetLoader._setReferrerPolicy(l));const d=Dd(o);C(d)&&za.DOM.styleSheetLoader._setContentCssCors(d),Ya.languageLoad=s("language_load"),Ya.baseURL=n.baseURL,this.setDirty(!1),this.documentBaseURI=new oC(Bl(o),{base_uri:this.baseUri}),this.baseURI=this.baseUri,this.inline=kd(o),this.hasVisual=Fd(o),this.shortcuts=new $O(this),this.editorCommands=new pO(this),mO(this);const c=s("cache_suffix");c&&(At.cacheSuffix=c.replace(/^[\?\&]+/,"")),this.ui={registry:qO(),styleSheetLoader:void 0,show:_,hide:_,setEnabled:_,isEnabled:M},this.mode=(e=>{const t=$a("design"),n=$a({design:{activate:_,deactivate:_,editorReadOnly:!1},readonly:{activate:_,deactivate:_,editorReadOnly:!0}});return(e=>{e.serializer?CO(e):e.on("PreInit",(()=>{CO(e)}))})(e),(e=>{e.on("ShowCaret",(t=>{yO(e)&&t.preventDefault()})),e.on("ObjectSelected",(t=>{yO(e)&&t.preventDefault()}))})(e),{isReadOnly:()=>yO(e),set:o=>((e,t,n,o)=>{if(o!==n.get()){if(!Ee(t,o))throw new Error(`Editor mode '${o}' is invalid`);e.initialized?IO(e,n,t,o):e.on("init",(()=>IO(e,n,t,o)))}})(e,n.get(),t,o),get:()=>t.get(),register:(e,t)=>{n.set(((e,t,n)=>{if(H(MO,t))throw new Error(`Cannot override default mode ${t}`);return{...e,[t]:{...n,deactivate:()=>{try{n.deactivate()}catch(e){console.error(`problem while deactivating editor mode ${t}:`,e)}}}}})(n.get(),e,t))}}})(o),n.dispatch("SetupEditor",{editor:this});const g=Hd(o);w(g)&&g.call(o,o)}render(){(e=>{const t=e.id;Ka.setCode(td(e));const n=()=>{zT.unbind(window,"ready",n),e.render()};if(!Ta.Event.domLoaded)return void zT.bind(window,"ready",n);if(!e.getElement())return;const o=yn(e.getElement()),r=rn(o);e.on("remove",(()=>{W(o.dom.attributes,(e=>on(o,e.name))),Zt(o,r)})),e.ui.styleSheetLoader=((e,t)=>Is.forElement(e,{contentCssCors:Dd(t),referrerPolicy:ed(t)}))(o,e),kd(e)?e.inline=!0:(e.orgVisibility=e.getElement().style.visibility,e.getElement().style.visibility="hidden");const s=e.getElement().form||zT.getParent(t,"form");s&&(e.formElement=s,Sd(e)&&!Zo(e.getElement())&&(zT.insertAfter(zT.create("input",{type:"hidden",name:t}),t),e.hasHiddenInput=!0),e.formEventDelegate=t=>{e.dispatch(t.type,t)},zT.bind(s,"submit reset",e.formEventDelegate),e.on("reset",(()=>{e.resetContent()})),!Nd(e)||s.submit.nodeType||s.submit.length||s._mceOldSubmit||(s._mceOldSubmit=s.submit,s.submit=()=>(e.editorManager.triggerSave(),e.setDirty(!1),s._mceOldSubmit(s)))),e.windowManager=Pw(e),e.notificationManager=Tw(e),(e=>"xml"===e.options.get("encoding"))(e)&&e.on("GetContent",(e=>{e.save&&(e.content=zT.encode(e.content))})),Rd(e)&&e.on("submit",(()=>{e.initialized&&e.save()})),Ad(e)&&(e._beforeUnload=()=>{!e.initialized||e.destroyed||e.isHidden()||e.save({format:"raw",no_events:!0,set_dirty:!1})},e.editorManager.on("BeforeUnload",e._beforeUnload)),e.editorManager.add(e),$T(e,e.suffix)})(this)}focus(e){this.execCommand("mceFocus",!1,e)}hasFocus(){return Rg(this)}translate(e){return Ka.translate(e)}getParam(e,t,n){const o=this.options;return o.isRegistered(e)||(C(n)?o.register(e,{processor:n,default:t}):o.register(e,{processor:M,default:t})),o.isSet(e)||v(t)?o.get(e):t}hasPlugin(e,t){return!(!H(Ld(this),e)||t&&void 0===Ow.get(e))}nodeChanged(e){this._nodeChangeDispatcher.nodeChanged(e)}addCommand(e,t,n){this.editorCommands.addCommand(e,t,n)}addQueryStateHandler(e,t,n){this.editorCommands.addQueryStateHandler(e,t,n)}addQueryValueHandler(e,t,n){this.editorCommands.addQueryValueHandler(e,t,n)}addShortcut(e,t,n,o){this.shortcuts.add(e,t,n,o)}execCommand(e,t,n,o){return this.editorCommands.execCommand(e,t,n,o)}queryCommandState(e){return this.editorCommands.queryCommandState(e)}queryCommandValue(e){return this.editorCommands.queryCommandValue(e)}queryCommandSupported(e){return this.editorCommands.queryCommandSupported(e)}show(){const e=this;e.hidden&&(e.hidden=!1,e.inline?e.getBody().contentEditable="true":(VO.show(e.getContainer()),VO.hide(e.id)),e.load(),e.dispatch("show"))}hide(){const e=this;e.hidden||(e.save(),e.inline?(e.getBody().contentEditable="false",e===e.editorManager.focusedEditor&&(e.editorManager.focusedEditor=null)):(VO.hide(e.getContainer()),VO.setStyle(e.id,"display",e.orgDisplay)),e.hidden=!0,e.dispatch("hide"))}isHidden(){return this.hidden}setProgressState(e,t){this.dispatch("ProgressState",{state:e,time:t})}load(e={}){const t=this,n=t.getElement();if(t.removed)return"";if(n){const o={...e,load:!0},r=Zo(n)?n.value:n.innerHTML,s=t.setContent(r,o);return o.no_events||t.dispatch("LoadContent",{...o,element:n}),s}return""}save(e={}){const t=this;let n=t.getElement();if(!n||!t.initialized||t.removed)return"";const o={...e,save:!0,element:n};let r=t.getContent(o);const s={...o,content:r};if(s.no_events||t.dispatch("SaveContent",s),"raw"===s.format&&t.dispatch("RawSaveContent",s),r=s.content,Zo(n))n.value=r;else{!e.is_removing&&t.inline||(n.innerHTML=r);const o=VO.getParent(t.id,"form");o&&KO(o.elements,(e=>e.name!==t.id||(e.value=r,!1)))}return s.element=o.element=n=null,!1!==s.set_dirty&&t.setDirty(!1),r}setContent(e,t){return lw(this,e,t)}getContent(e){return((e,t={})=>{const n=((e,t)=>({...e,format:t,get:!0,getInner:!0}))(t,t.format?t.format:"html");return yC(e,n).fold(R,(t=>{const n=((e,t)=>QC(e).editor.getContent(t))(e,t);return CC(e,n,t)}))})(this,e)}insertContent(e,t){t&&(e=WO({content:e},t)),this.execCommand("mceInsertContent",!1,e)}resetContent(e){void 0===e?lw(this,this.startContent,{format:"raw"}):lw(this,e),this.undoManager.reset(),this.setDirty(!1),this.nodeChanged()}isDirty(){return!this.isNotDirty}setDirty(e){const t=!this.isNotDirty;this.isNotDirty=!e,e&&e!==t&&this.dispatch("dirty")}getContainer(){const e=this;return e.container||(e.container=e.editorContainer||VO.get(e.id+"_parent")),e.container}getContentAreaContainer(){return this.contentAreaContainer}getElement(){return this.targetElm||(this.targetElm=VO.get(this.id)),this.targetElm}getWin(){const e=this;if(!e.contentWindow){const t=e.iframeElement;t&&(e.contentWindow=t.contentWindow)}return e.contentWindow}getDoc(){const e=this;if(!e.contentDocument){const t=e.getWin();t&&(e.contentDocument=t.document)}return e.contentDocument}getBody(){var e,t;const n=this.getDoc();return null!==(t=null!==(e=this.bodyElement)&&void 0!==e?e:null==n?void 0:n.body)&&void 0!==t?t:null}convertURL(e,t,n){const o=this,r=o.options.get,s=qd(o);if(w(s))return s.call(o,e,n,!0,t);if(!r("convert_urls")||"link"===n||f(n)&&"LINK"===n.nodeName||0===e.indexOf("file:")||0===e.length)return e;const a=new oC(e);return"http"!==a.protocol&&"https"!==a.protocol&&""!==a.protocol?e:r("relative_urls")?o.documentBaseURI.toRelative(e):e=o.documentBaseURI.toAbsolute(e,r("remove_script_host"))}addVisual(e){((e,t)=>{((e,t)=>{JC(e).editor.addVisual(t)})(e,t)})(this,e)}setEditableRoot(e){((e,t)=>{e._editableRoot!==t&&(e._editableRoot=t,e.readonly||(e.getBody().contentEditable=String(e.hasEditableRoot()),e.nodeChanged()),((e,t)=>{e.dispatch("EditableRootStateChange",{state:t})})(e,t))})(this,e)}hasEditableRoot(){return this._editableRoot}remove(){(e=>{if(!e.removed){const{_selectionOverrides:t,editorUpload:n}=e,o=e.getBody(),r=e.getElement();o&&e.save({is_removing:!0}),e.removed=!0,e.unbindAllNativeEvents(),e.hasHiddenInput&&C(null==r?void 0:r.nextSibling)&&Cw.remove(r.nextSibling),(e=>{e.dispatch("remove")})(e),e.editorManager.remove(e),!e.inline&&o&&(e=>{Cw.setStyle(e.id,"display",e.orgDisplay)})(e),(e=>{e.dispatch("detach")})(e),Cw.remove(e.getContainer()),ww(t),ww(n),e.destroy()}})(this)}destroy(e){((e,t)=>{const{selection:n,dom:o}=e;e.destroyed||(t||e.removed?(t||(e.editorManager.off("beforeunload",e._beforeUnload),e.theme&&e.theme.destroy&&e.theme.destroy(),ww(n),ww(o)),(e=>{const t=e.formElement;t&&(t._mceOldSubmit&&(t.submit=t._mceOldSubmit,delete t._mceOldSubmit),Cw.unbind(t,"submit reset",e.formEventDelegate))})(e),(e=>{const t=e;t.contentAreaContainer=t.formElement=t.container=t.editorContainer=null,t.bodyElement=t.contentDocument=t.contentWindow=null,t.iframeElement=t.targetElm=null;const n=e.selection;if(n){const e=n.dom;t.selection=n.win=n.dom=e.doc=null}})(e),e.destroyed=!0):e.remove())})(this,e)}uploadImages(){return this.editorUpload.uploadImages()}_scanForImages(){return this.editorUpload.scanForImages()}}const GO=za.DOM,XO=Pt.each;let QO,JO=!1,ZO=[];const eB=e=>{const t=e.type;XO(rB.get(),(n=>{switch(t){case"scroll":n.dispatch("ScrollWindow",e);break;case"resize":n.dispatch("ResizeWindow",e)}}))},tB=e=>{if(e!==JO){const t=za.DOM;e?(t.bind(window,"resize",eB),t.bind(window,"scroll",eB)):(t.unbind(window,"resize",eB),t.unbind(window,"scroll",eB)),JO=e}},nB=e=>{const t=ZO;return ZO=Y(ZO,(t=>e!==t)),rB.activeEditor===e&&(rB.activeEditor=ZO.length>0?ZO[0]:null),rB.focusedEditor===e&&(rB.focusedEditor=null),t.length!==ZO.length},oB="CSS1Compat"!==document.compatMode,rB={...kO,baseURI:null,baseURL:null,defaultOptions:{},documentBaseURL:null,suffix:null,majorVersion:"6",minorVersion:"8.3",releaseDate:"2024-02-08",i18n:Ka,activeEditor:null,focusedEditor:null,setup(){const e=this;let t="",n="",o=oC.getDocumentBaseUrl(document.location);/^[^:]+:\/\/\/?[^\/]+\//.test(o)&&(o=o.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,""),/[\/\\]$/.test(o)||(o+="/"));const r=window.tinymce||window.tinyMCEPreInit;if(r)t=r.base||r.baseURL,n=r.suffix;else{const e=document.getElementsByTagName("script");for(let o=0;o<e.length;o++){const r=e[o].src||"";if(""===r)continue;const s=r.substring(r.lastIndexOf("/"));if(/tinymce(\.full|\.jquery|)(\.min|\.dev|)\.js/.test(r)){-1!==s.indexOf(".min")&&(n=".min"),t=r.substring(0,r.lastIndexOf("/"));break}}if(!t&&document.currentScript){const e=document.currentScript.src;-1!==e.indexOf(".min")&&(n=".min"),t=e.substring(0,e.lastIndexOf("/"))}}var s;e.baseURL=new oC(o).toAbsolute(t),e.documentBaseURL=o,e.baseURI=new oC(e.baseURL),e.suffix=n,(s=e).on("AddEditor",T(_g,s)),s.on("RemoveEditor",T(kg,s))},overrideDefaults(e){const t=e.base_url;t&&this._setBaseUrl(t);const n=e.suffix;n&&(this.suffix=n),this.defaultOptions=e;const o=e.plugin_base_urls;void 0!==o&&ge(o,((e,t)=>{Ya.PluginManager.urls[t]=e}))},init(e){const t=this;let n;const o=Pt.makeMap("area base basefont br col frame hr img input isindex link meta param embed source wbr track colgroup option table tbody tfoot thead tr th td script noscript style textarea video audio iframe object menu"," ");let r=e=>{n=e};const s=()=>{let n=0;const a=[];let i;GO.unbind(window,"ready",s),(n=>{const o=e.onpageload;o&&o.apply(t,[])})(),i=((e,t)=>{const n=[],o=w(t)?e=>$(n,(n=>t(n,e))):e=>H(n,e);for(let t=0,r=e.length;t<r;t++){const r=e[t];o(r)||n.push(r)}return n})((e=>At.browser.isIE()||At.browser.isEdge()?(Fw("TinyMCE does not support the browser you are using. For a list of supported browsers please see: https://www.tiny.cloud/docs/tinymce/6/support/#supportedwebbrowsers"),[]):oB?(Fw("Failed to initialize the editor as the document is not in standards mode. TinyMCE requires standards mode."),[]):m(e.selector)?GO.select(e.selector):C(e.target)?[e.target]:[])(e)),Pt.each(i,(e=>{var n;(n=t.get(e.id))&&n.initialized&&!(n.getContainer()||n.getBody()).parentNode&&(nB(n),n.unbindAllNativeEvents(),n.destroy(!0),n.removed=!0)})),i=Pt.grep(i,(e=>!t.get(e.id))),0===i.length?r([]):XO(i,(s=>{((e,t)=>e.inline&&t.tagName.toLowerCase()in o)(e,s)?Fw("Could not initialize inline editor on invalid inline target element",s):((e,o,s)=>{const l=new YO(e,o,t);a.push(l),l.on("init",(()=>{++n===i.length&&r(a)})),l.targetElm=l.targetElm||s,l.render()})((e=>{let t=e.id;return t||(t=xe(e,"name").filter((e=>!GO.get(e))).getOrThunk(GO.uniqueId),e.setAttribute("id",t)),t})(s),e,s)}))};return GO.bind(window,"ready",s),new Promise((e=>{n?e(n):r=t=>{e(t)}}))},get(e){return 0===arguments.length?ZO.slice(0):m(e)?J(ZO,(t=>t.id===e)).getOr(null):x(e)&&ZO[e]?ZO[e]:null},add(e){const t=this,n=t.get(e.id);return n===e||(null===n&&ZO.push(e),tB(!0),t.activeEditor=e,t.dispatch("AddEditor",{editor:e}),QO||(QO=e=>{const n=t.dispatch("BeforeUnload");if(n.returnValue)return e.preventDefault(),e.returnValue=n.returnValue,n.returnValue},window.addEventListener("beforeunload",QO))),e},createEditor(e,t){return this.add(new YO(e,t,this))},remove(e){const t=this;let n;if(e){if(!m(e))return n=e,h(t.get(n.id))?null:(nB(n)&&t.dispatch("RemoveEditor",{editor:n}),0===ZO.length&&window.removeEventListener("beforeunload",QO),n.remove(),tB(ZO.length>0),n);XO(GO.select(e),(e=>{n=t.get(e.id),n&&t.remove(n)}))}else for(let e=ZO.length-1;e>=0;e--)t.remove(ZO[e])},execCommand(e,t,n){var o;const r=this,s=f(n)?null!==(o=n.id)&&void 0!==o?o:n.index:n;switch(e){case"mceAddEditor":if(!r.get(s)){const e=n.options;new YO(s,e,r).render()}return!0;case"mceRemoveEditor":{const e=r.get(s);return e&&e.remove(),!0}case"mceToggleEditor":{const e=r.get(s);return e?(e.isHidden()?e.show():e.hide(),!0):(r.execCommand("mceAddEditor",!1,n),!0)}}return!!r.activeEditor&&r.activeEditor.execCommand(e,t,n)},triggerSave:()=>{XO(ZO,(e=>{e.save()}))},addI18n:(e,t)=>{Ka.add(e,t)},translate:e=>Ka.translate(e),setActive(e){const t=this.activeEditor;this.activeEditor!==e&&(t&&t.dispatch("deactivate",{relatedTarget:e}),e.dispatch("activate",{relatedTarget:t})),this.activeEditor=e},_setBaseUrl(e){this.baseURL=new oC(this.documentBaseURL).toAbsolute(e.replace(/\/+$/,"")),this.baseURI=new oC(this.baseURL)}};rB.setup();const sB=(()=>{const e=Xa();return{FakeClipboardItem:e=>({items:e,types:me(e),getType:t=>xe(e,t).getOrUndefined()}),write:t=>{e.set(t)},read:()=>e.get().getOrUndefined(),clear:e.clear}})(),aB=Math.min,iB=Math.max,lB=Math.round,dB=(e,t,n)=>{let o=t.x,r=t.y;const s=e.w,a=e.h,i=t.w,l=t.h,d=(n||"").split("");return"b"===d[0]&&(r+=l),"r"===d[1]&&(o+=i),"c"===d[0]&&(r+=lB(l/2)),"c"===d[1]&&(o+=lB(i/2)),"b"===d[3]&&(r-=a),"r"===d[4]&&(o-=s),"c"===d[3]&&(r-=lB(a/2)),"c"===d[4]&&(o-=lB(s/2)),cB(o,r,s,a)},cB=(e,t,n,o)=>({x:e,y:t,w:n,h:o}),uB={inflate:(e,t,n)=>cB(e.x-t,e.y-n,e.w+2*t,e.h+2*n),relativePosition:dB,findBestRelativePosition:(e,t,n,o)=>{for(let r=0;r<o.length;r++){const s=dB(e,t,o[r]);if(s.x>=n.x&&s.x+s.w<=n.w+n.x&&s.y>=n.y&&s.y+s.h<=n.h+n.y)return o[r]}return null},intersect:(e,t)=>{const n=iB(e.x,t.x),o=iB(e.y,t.y),r=aB(e.x+e.w,t.x+t.w),s=aB(e.y+e.h,t.y+t.h);return r-n<0||s-o<0?null:cB(n,o,r-n,s-o)},clamp:(e,t,n)=>{let o=e.x,r=e.y,s=e.x+e.w,a=e.y+e.h;const i=t.x+t.w,l=t.y+t.h,d=iB(0,t.x-o),c=iB(0,t.y-r),u=iB(0,s-i),m=iB(0,a-l);return o+=d,r+=c,n&&(s+=d,a+=c,o-=u,r-=m),s-=u,a-=m,cB(o,r,s-o,a-r)},create:cB,fromClientRect:e=>cB(e.left,e.top,e.width,e.height)},mB=(()=>{const e={},t={},n={};return{load:(n,o)=>{const r=`Script at URL "${o}" failed to load`,s=`Script at URL "${o}" did not call \`tinymce.Resource.add('${n}', data)\` within 1 second`;if(void 0!==e[n])return e[n];{const a=new Promise(((e,a)=>{const i=((e,t,n=1e3)=>{let o=!1,r=null;const s=e=>(...t)=>{o||(o=!0,null!==r&&(clearTimeout(r),r=null),e.apply(null,t))},a=s(e),i=s(t);return{start:(...e)=>{o||null!==r||(r=setTimeout((()=>i.apply(null,e)),n))},resolve:a,reject:i}})(e,a);t[n]=i.resolve,Ha.ScriptLoader.loadScript(o).then((()=>i.start(s)),(()=>i.reject(r)))}));return e[n]=a,a}},add:(o,r)=>{void 0!==t[o]&&(t[o](r),delete t[o]),e[o]=Promise.resolve(r),n[o]=r},has:e=>e in n,get:e=>n[e],unload:t=>{delete e[t]}}})();let fB;try{const e="__storage_test__";fB=window.localStorage,fB.setItem(e,e),fB.removeItem(e)}catch(e){fB=(()=>{let e={},t=[];const n={getItem:t=>e[t]||null,setItem:(n,o)=>{t.push(n),e[n]=String(o)},key:e=>t[e],removeItem:n=>{t=t.filter((e=>e===n)),delete e[n]},clear:()=>{t=[],e={}},length:0};return Object.defineProperty(n,"length",{get:()=>t.length,configurable:!1,enumerable:!1}),n})()}const gB={geom:{Rect:uB},util:{Delay:vg,Tools:Pt,VK:af,URI:oC,EventDispatcher:EO,Observable:kO,I18n:Ka,LocalStorage:fB,ImageUploader:e=>{const t=Hw(),n=Ww(e,t);return{upload:(t,o=!0)=>n.upload(t,o?Vw(e):void 0)}}},dom:{EventUtils:Ta,TreeWalker:jo,TextSeeker:hi,DOMUtils:za,ScriptLoader:Ha,RangeUtils:Uf,Serializer:iw,StyleSheetLoader:Ms,ControlSelection:mf,BookmarkManager:Jm,Selection:rw,Event:Ta.Event},html:{Styles:wa,Entities:ea,Node:Wg,Schema:ua,DomParser:bC,Writer:cp,Serializer:up},Env:At,AddOnManager:Ya,Annotator:Qm,Formatter:rx,UndoManager:ax,EditorCommands:pO,WindowManager:Pw,NotificationManager:Tw,EditorObservable:OO,Shortcuts:$O,Editor:YO,FocusManager:bg,EditorManager:rB,DOM:za.DOM,ScriptLoader:Ha.ScriptLoader,PluginManager:Ow,ThemeManager:Bw,ModelManager:Ew,IconManager:xw,Resource:mB,FakeClipboard:sB,trim:Pt.trim,isArray:Pt.isArray,is:Pt.is,toArray:Pt.toArray,makeMap:Pt.makeMap,each:Pt.each,map:Pt.map,grep:Pt.grep,inArray:Pt.inArray,extend:Pt.extend,walk:Pt.walk,resolve:Pt.resolve,explode:Pt.explode,_addCacheSuffix:Pt._addCacheSuffix},pB=Pt.extend(rB,gB);(e=>{window.tinymce=e,window.tinyMCE=e})(pB),(e=>{if("object"==typeof module)try{module.exports=e}catch(e){}})(pB)}();admin/assets/vendor/tinymce/js/tinymce/icons/default/icons.min.js000064400000207463151213255230021174 0ustar00tinymce.IconManager.add("default",{icons:{"accessibility-check":'<svg width="24" height="24"><path d="M12 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.1.9-2 2-2Zm8 7h-5v12c0 .6-.4 1-1 1a1 1 0 0 1-1-1v-5c0-.6-.4-1-1-1a1 1 0 0 0-1 1v5c0 .6-.4 1-1 1a1 1 0 0 1-1-1V9H4a1 1 0 1 1 0-2h16c.6 0 1 .4 1 1s-.4 1-1 1Z" fill-rule="nonzero"/></svg>',"accordion-toggle":'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 15c0-.6.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1h-6a1 1 0 0 1-1-1Z"/><path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="M4 15c0-.6.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1-1-1Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12 19c0-.6.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1h-6a1 1 0 0 1-1-1Z"/><path opacity=".2" fill-rule="evenodd" clip-rule="evenodd" d="M4 19c0-.6.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1-1-1Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.3 7.3a1 1 0 0 1 1.4 0L16 9.6l2.3-2.3a1 1 0 1 1 1.4 1.4L16 12.4l-3.7-3.7a1 1 0 0 1 0-1.4ZM4.3 11.7a1 1 0 0 1 0-1.4L6.6 8 4.3 5.7a1 1 0 0 1 1.4-1.4L9.4 8l-3.7 3.7a1 1 0 0 1-1.4 0Z"/></svg>',accordion:'<svg width="24" height="24"><rect x="12" y="7" width="10" height="2" rx="1"/><rect x="12" y="11" width="10" height="2" rx="1"/><rect x="12" y="15" width="6" height="2" rx="1"/><path fill-rule="evenodd" clip-rule="evenodd" d="M2.3 7.3a1 1 0 0 1 1.4 0L6 9.6l2.3-2.3a1 1 0 0 1 1.4 1.4L6 12.4 2.3 8.7a1 1 0 0 1 0-1.4Z"/></svg>',"action-next":'<svg width="24" height="24"><path fill-rule="nonzero" d="M5.7 7.3a1 1 0 0 0-1.4 1.4l7.7 7.7 7.7-7.7a1 1 0 1 0-1.4-1.4L12 13.6 5.7 7.3Z"/></svg>',"action-prev":'<svg width="24" height="24"><path fill-rule="nonzero" d="M18.3 15.7a1 1 0 0 0 1.4-1.4L12 6.6l-7.7 7.7a1 1 0 0 0 1.4 1.4L12 9.4l6.3 6.3Z"/></svg>',addtag:'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 5a2 2 0 0 1 1.6.8L21 12l-4.4 6.2a2 2 0 0 1-1.6.8h-3v-2h3l3.5-5L15 7H5v3H3V7c0-1.1.9-2 2-2h10Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6 12a1 1 0 0 0-1 1v2H3a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2H7v-2c0-.6-.4-1-1-1Z"/></svg>',"ai-prompt":'<svg width="24" height="24"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 6.7a1 1 0 0 0-1.4 0l-9.9 10a1 1 0 0 0 0 1.3l2.1 2.1c.4.4 1 .4 1.4 0l10-9.9c.3-.3.3-1 0-1.4l-2.2-2Zm1.4 2.8-2-2-3 2.7 2.2 2.2 2.8-2.9Z"/><path d="m18.5 7.3-.7-1.5-1.5-.8 1.5-.7.7-1.5.7 1.5 1.5.7-1.5.8-.7 1.5ZM18.5 16.5l-.7-1.6-1.5-.7 1.5-.7.7-1.6.7 1.6 1.5.7-1.5.7-.7 1.6ZM9.7 7.3 9 5.8 7.5 5 9 4.3l.7-1.5.7 1.5L12 5l-1.5.8-.7 1.5Z"/></g><defs><clipPath id="a"><path d="M0 0h24v24H0z"/></clipPath></defs></svg>',ai:'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="M5 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H5Zm6.8 11.5.5 1.2a68.3 68.3 0 0 0 .7 1.1l.4.1c.3 0 .5 0 .7-.3.2-.1.3-.3.3-.6l-.3-1-2.6-6.2a20.4 20.4 0 0 0-.5-1.3l-.5-.4-.7-.2c-.2 0-.5 0-.6.2-.2 0-.4.2-.5.4l-.3.6-.3.7L5.7 15l-.2.6-.1.4c0 .3 0 .5.3.7l.6.2c.3 0 .5 0 .7-.2l.4-1 .5-1.2h3.9ZM9.8 9l1.5 4h-3l1.5-4Zm5.6-.9v7.6c0 .4 0 .7.2 1l.7.2c.3 0 .6 0 .8-.3l.2-.9V8.1c0-.4 0-.7-.2-.9a1 1 0 0 0-.8-.3c-.2 0-.5.1-.7.3l-.2 1Z"/></svg>',"align-center":'<svg width="24" height="24"><path d="M5 5h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2Zm3 4h8c.6 0 1 .4 1 1s-.4 1-1 1H8a1 1 0 1 1 0-2Zm0 8h8c.6 0 1 .4 1 1s-.4 1-1 1H8a1 1 0 0 1 0-2Zm-3-4h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2Z" fill-rule="evenodd"/></svg>',"align-justify":'<svg width="24" height="24"><path d="M5 5h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2Zm0 4h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2Zm0 4h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2Zm0 4h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2Z" fill-rule="evenodd"/></svg>',"align-left":'<svg width="24" height="24"><path d="M5 5h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2Zm0 4h8c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2Zm0 8h8c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2Zm0-4h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2Z" fill-rule="evenodd"/></svg>',"align-none":'<svg width="24" height="24"><path d="M14.2 5 13 7H5a1 1 0 1 1 0-2h9.2Zm4 0h.8a1 1 0 0 1 0 2h-2l1.2-2Zm-6.4 4-1.2 2H5a1 1 0 0 1 0-2h6.8Zm4 0H19a1 1 0 0 1 0 2h-4.4l1.2-2Zm-6.4 4-1.2 2H5a1 1 0 0 1 0-2h4.4Zm4 0H19a1 1 0 0 1 0 2h-6.8l1.2-2ZM7 17l-1.2 2H5a1 1 0 0 1 0-2h2Zm4 0h8a1 1 0 0 1 0 2H9.8l1.2-2Zm5.2-13.5 1.3.7-9.7 16.3-1.3-.7 9.7-16.3Z" fill-rule="evenodd"/></svg>',"align-right":'<svg width="24" height="24"><path d="M5 5h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2Zm6 4h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm0 8h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm-6-4h14c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2Z" fill-rule="evenodd"/></svg>',"arrow-left":'<svg width="24" height="24"><path d="m5.6 13 12 6a1 1 0 0 0 1.4-1V6a1 1 0 0 0-1.4-.9l-12 6a1 1 0 0 0 0 1.8Z" fill-rule="evenodd"/></svg>',"arrow-right":'<svg width="24" height="24"><path d="m18.5 13-12 6A1 1 0 0 1 5 18V6a1 1 0 0 1 1.4-.9l12 6a1 1 0 0 1 0 1.8Z" fill-rule="evenodd"/></svg>',bold:'<svg width="24" height="24"><path d="M7.8 19c-.3 0-.5 0-.6-.2l-.2-.5V5.7c0-.2 0-.4.2-.5l.6-.2h5c1.5 0 2.7.3 3.5 1 .7.6 1.1 1.4 1.1 2.5a3 3 0 0 1-.6 1.9c-.4.6-1 1-1.6 1.2.4.1.9.3 1.3.6s.8.7 1 1.2c.4.4.5 1 .5 1.6 0 1.3-.4 2.3-1.3 3-.8.7-2.1 1-3.8 1H7.8Zm5-8.3c.6 0 1.2-.1 1.6-.5.4-.3.6-.7.6-1.3 0-1.1-.8-1.7-2.3-1.7H9.3v3.5h3.4Zm.5 6c.7 0 1.3-.1 1.7-.4.4-.4.6-.9.6-1.5s-.2-1-.7-1.4c-.4-.3-1-.4-2-.4H9.4v3.8h4Z" fill-rule="evenodd"/></svg>',bookmark:'<svg width="24" height="24"><path d="M6 4v17l6-4 6 4V4c0-.6-.4-1-1-1H7a1 1 0 0 0-1 1Z" fill-rule="nonzero"/></svg>',"border-style":'<svg width="24" height="24"><g fill-rule="evenodd"><rect width="18" height="2" x="3" y="6" rx="1"/><rect width="2.8" height="2" x="3" y="16" rx="1"/><rect width="2.8" height="2" x="6.8" y="16" rx="1"/><rect width="2.8" height="2" x="10.6" y="16" rx="1"/><rect width="2.8" height="2" x="14.4" y="16" rx="1"/><rect width="2.8" height="2" x="18.2" y="16" rx="1"/><rect width="8" height="2" x="3" y="11" rx="1"/><rect width="8" height="2" x="13" y="11" rx="1"/></g></svg>',"border-width":'<svg width="24" height="24"><g fill-rule="evenodd"><rect width="18" height="5" x="3" y="5" rx="1"/><rect width="18" height="3.5" x="3" y="11.5" rx="1"/><rect width="18" height="2" x="3" y="17" rx="1"/></g></svg>',brightness:'<svg width="24" height="24"><path d="M12 17c.3 0 .5.1.7.3.2.2.3.4.3.7v1c0 .3-.1.5-.3.7a1 1 0 0 1-.7.3 1 1 0 0 1-.7-.3 1 1 0 0 1-.3-.7v-1c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3Zm0-10a1 1 0 0 1-.7-.3A1 1 0 0 1 11 6V5c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.2.3.4.3.7v1c0 .3-.1.5-.3.7a1 1 0 0 1-.7.3Zm7 4c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7a1 1 0 0 1-.7.3h-1a1 1 0 0 1-.7-.3 1 1 0 0 1-.3-.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h1ZM7 12c0 .3-.1.5-.3.7a1 1 0 0 1-.7.3H5a1 1 0 0 1-.7-.3A1 1 0 0 1 4 12c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h1c.3 0 .5.1.7.3.2.2.3.4.3.7Zm10 3.5.7.8c.2.1.3.4.3.6 0 .3-.1.6-.3.8a1 1 0 0 1-.8.3 1 1 0 0 1-.6-.3l-.8-.7a1 1 0 0 1-.3-.8c0-.2.1-.5.3-.7a1 1 0 0 1 1.4 0Zm-10-7-.7-.8a1 1 0 0 1-.3-.6c0-.3.1-.6.3-.8.2-.2.5-.3.8-.3.2 0 .5.1.7.3l.7.7c.2.2.3.5.3.8 0 .2-.1.5-.3.7a1 1 0 0 1-.7.3 1 1 0 0 1-.8-.3Zm10 0a1 1 0 0 1-.8.3 1 1 0 0 1-.7-.3 1 1 0 0 1-.3-.7c0-.3.1-.6.3-.8l.8-.7c.1-.2.4-.3.6-.3.3 0 .6.1.8.3.2.2.3.5.3.8 0 .2-.1.5-.3.7l-.7.7Zm-10 7c.2-.2.5-.3.8-.3.2 0 .5.1.7.3a1 1 0 0 1 0 1.4l-.8.8a1 1 0 0 1-.6.3 1 1 0 0 1-.8-.3 1 1 0 0 1-.3-.8c0-.2.1-.5.3-.6l.7-.8ZM12 8a4 4 0 0 1 3.7 2.4 4 4 0 0 1 0 3.2A4 4 0 0 1 12 16a4 4 0 0 1-3.7-2.4 4 4 0 0 1 0-3.2A4 4 0 0 1 12 8Zm0 6.5c.7 0 1.3-.2 1.8-.7.5-.5.7-1.1.7-1.8s-.2-1.3-.7-1.8c-.5-.5-1.1-.7-1.8-.7s-1.3.2-1.8.7c-.5.5-.7 1.1-.7 1.8s.2 1.3.7 1.8c.5.5 1.1.7 1.8.7Z" fill-rule="evenodd"/></svg>',browse:'<svg width="24" height="24"><path d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4v-2h4V8H5v10h4v2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm-8 9.4-2.3 2.3a1 1 0 1 1-1.4-1.4l4-4a1 1 0 0 1 1.4 0l4 4a1 1 0 0 1-1.4 1.4L13 13.4V20a1 1 0 0 1-2 0v-6.6Z" fill-rule="nonzero"/></svg>',cancel:'<svg width="24" height="24"><path d="M12 4.6a7.4 7.4 0 1 1 0 14.8 7.4 7.4 0 0 1 0-14.8ZM12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18Zm0 8L14.8 8l1 1.1-2.7 2.8 2.7 2.7-1.1 1.1-2.7-2.7-2.7 2.7-1-1.1 2.6-2.7-2.7-2.7 1-1.1 2.8 2.7Z" fill-rule="nonzero"/></svg>',"cell-background-color":'<svg width="24" height="24"><path d="m15.7 2 1.6 1.6-2.7 2.6 5.9 5.8c.7.7.7 1.7 0 2.4l-6.3 6.1a1.7 1.7 0 0 1-2.4 0l-6.3-6.1c-.7-.7-.7-1.7 0-2.4L15.7 2ZM18 12l-4.5-4L9 12h9ZM4 16s2 2.4 2 3.8C6 21 5.1 22 4 22s-2-1-2-2.2C2 18.4 4 16 4 16Z"/></svg>',"cell-border-color":'<svg width="24" height="24"><g fill-rule="evenodd"><path fill-rule="nonzero" d="M5 13v5h2v2H5a2 2 0 0 1-2-2v-5h2zm8-7V4h6a2 2 0 0 1 2 2h-8z" opacity=".2"/><path fill-rule="nonzero" d="M13 4v2H5v7H3V6c0-1.1.9-2 2-2h8zm-2.6 14.1.1-.1.1.1.2.3.2.2.2.2c.4.6.8 1.2.8 1.7 0 .8-.7 1.5-1.5 1.5S9 21.3 9 20.5c0-.5.4-1.1.8-1.7l.2-.2.2-.2.2-.3z"/><path d="m13 11-2 2H5v-2h6V6h2z"/><path fill-rule="nonzero" d="m18.4 8 1 1-1.8 1.9 4 4c.5.4.5 1.1 0 1.6l-4.3 4.2a1.2 1.2 0 0 1-1.6 0l-4.4-4.2c-.4-.5-.4-1.2 0-1.7l7-6.8Zm1.6 7-3-3-3 3h6Z"/></g></svg>',"change-case":'<svg width="24" height="24"><path d="M18.4 18.2v-.6c-.5.8-1.3 1.2-2.4 1.2-2.2 0-3.3-1.6-3.3-4.8 0-3.1 1-4.7 3.3-4.7 1.1 0 1.8.3 2.4 1.1v-.6c0-.5.4-.8.8-.8s.8.3.8.8v8.4c0 .5-.4.8-.8.8a.8.8 0 0 1-.8-.8zm-2-7.4c-1.3 0-1.8.9-1.8 3.2 0 2.4.5 3.3 1.7 3.3 1.3 0 1.8-.9 1.8-3.2 0-2.4-.5-3.3-1.7-3.3zM10 15.7H5.5l-.8 2.6a1 1 0 0 1-1 .7h-.2a.7.7 0 0 1-.7-1l4-12a1 1 0 0 1 2 0l4 12a.7.7 0 0 1-.8 1h-.2a1 1 0 0 1-1-.7l-.8-2.6zm-.3-1.5-2-6.5-1.9 6.5h3.9z" fill-rule="evenodd"/></svg>',"character-count":'<svg width="24" height="24"><path d="M4 11.5h16v1H4v-1Zm4.8-6.8V10H7.7V5.8h-1v-1h2ZM11 8.3V9h2v1h-3V7.7l2-1v-.9h-2v-1h3v2.4l-2 1Zm6.3-3.4V10h-3.1V9h2.1V8h-2.1V6.8h2.1v-1h-2.1v-1h3.1ZM5.8 16.4c0-.5.2-.8.5-1 .2-.2.6-.3 1.2-.3l.8.1c.2 0 .4.2.5.3l.4.4v2.8l.2.3H8.2V18.7l-.6.3H7c-.4 0-.7 0-1-.2a1 1 0 0 1-.3-.9c0-.3 0-.6.3-.8.3-.2.7-.4 1.2-.4l.6-.2h.3v-.2l-.1-.2a.8.8 0 0 0-.5-.1 1 1 0 0 0-.4 0l-.3.4h-1Zm2.3.8h-.2l-.2.1-.4.1a1 1 0 0 0-.4.2l-.2.2.1.3.5.1h.4l.4-.4v-.6Zm2-3.4h1.2v1.7l.5-.3h.5c.5 0 .9.1 1.2.5.3.4.5.8.5 1.4 0 .6-.2 1.1-.5 1.5-.3.4-.7.6-1.3.6l-.6-.1-.4-.4v.4h-1.1v-5.4Zm1.1 3.3c0 .3 0 .6.2.8a.7.7 0 0 0 1.2 0l.2-.8c0-.4 0-.6-.2-.8a.7.7 0 0 0-.6-.3l-.6.3-.2.8Zm6.1-.5c0-.2 0-.3-.2-.4a.8.8 0 0 0-.5-.2c-.3 0-.5.1-.6.3l-.2.9c0 .3 0 .6.2.8.1.2.3.3.6.3.2 0 .4 0 .5-.2l.2-.4h1.1c0 .5-.3.8-.6 1.1a2 2 0 0 1-1.3.4c-.5 0-1-.2-1.3-.6a2 2 0 0 1-.5-1.4c0-.6.1-1.1.5-1.5.3-.4.8-.5 1.4-.5.5 0 1 0 1.2.3.4.3.5.7.5 1.2h-1v-.1Z" fill-rule="evenodd"/></svg>',"checklist-rtl":'<svg width="24" height="24"><path d="M5 17h8c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2zm0-6h8c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2zm0-6h8c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2zm14.2 11c.2-.4.6-.5.9-.3.3.2.4.6.2 1L18 20c-.2.3-.7.4-1 0l-1.3-1.3a.7.7 0 0 1 0-1c.3-.2.7-.2 1 0l.7.9 1.7-2.8zm0-6c.2-.4.6-.5.9-.3.3.2.4.6.2 1L18 14c-.2.3-.7.4-1 0l-1.3-1.3a.7.7 0 0 1 0-1c.3-.2.7-.2 1 0l.7.9 1.7-2.8zm0-6c.2-.4.6-.5.9-.3.3.2.4.6.2 1L18 8c-.2.3-.7.4-1 0l-1.3-1.3a.7.7 0 0 1 0-1c.3-.2.7-.2 1 0l.7.9 1.7-2.8z" fill-rule="evenodd"/></svg>',checklist:'<svg width="24" height="24"><path d="M11 17h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm0-6h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm0-6h8a1 1 0 0 1 0 2h-8a1 1 0 0 1 0-2ZM7.2 16c.2-.4.6-.5.9-.3.3.2.4.6.2 1L6 20c-.2.3-.7.4-1 0l-1.3-1.3a.7.7 0 0 1 0-1c.3-.2.7-.2 1 0l.7.9 1.7-2.8Zm0-6c.2-.4.6-.5.9-.3.3.2.4.6.2 1L6 14c-.2.3-.7.4-1 0l-1.3-1.3a.7.7 0 0 1 0-1c.3-.2.7-.2 1 0l.7.9 1.7-2.8Zm0-6c.2-.4.6-.5.9-.3.3.2.4.6.2 1L6 8c-.2.3-.7.4-1 0L3.8 6.9a.7.7 0 0 1 0-1c.3-.2.7-.2 1 0l.7.9 1.7-2.8Z" fill-rule="evenodd"/></svg>',checkmark:'<svg width="24" height="24"><path d="M18.2 5.4a1 1 0 0 1 1.6 1.2l-8 12a1 1 0 0 1-1.5.1l-5-5a1 1 0 1 1 1.4-1.4l4.1 4.1 7.4-11Z" fill-rule="nonzero"/></svg>',"chevron-down":'<svg width="10" height="10"><path d="M8.7 2.2c.3-.3.8-.3 1 0 .4.4.4.9 0 1.2L5.7 7.8c-.3.3-.9.3-1.2 0L.2 3.4a.8.8 0 0 1 0-1.2c.3-.3.8-.3 1.1 0L5 6l3.7-3.8Z" fill-rule="nonzero"/></svg>',"chevron-left":'<svg width="10" height="10"><path d="M7.8 1.3 4 5l3.8 3.7c.3.3.3.8 0 1-.4.4-.9.4-1.2 0L2.2 5.7a.8.8 0 0 1 0-1.2L6.6.2C7 0 7.4 0 7.8.2c.3.3.3.8 0 1.1Z" fill-rule="nonzero"/></svg>',"chevron-right":'<svg width="10" height="10"><path d="M2.2 1.3a.8.8 0 0 1 0-1c.4-.4.9-.4 1.2 0l4.4 4.1c.3.4.3.9 0 1.2L3.4 9.8c-.3.3-.8.3-1.2 0a.8.8 0 0 1 0-1.1L6 5 2.2 1.3Z" fill-rule="nonzero"/></svg>',"chevron-up":'<svg width="10" height="10"><path d="M8.7 7.8 5 4 1.3 7.8c-.3.3-.8.3-1 0a.8.8 0 0 1 0-1.2l4.1-4.4c.3-.3.9-.3 1.2 0l4.2 4.4c.3.3.3.9 0 1.2-.3.3-.8.3-1.1 0Z" fill-rule="nonzero"/></svg>',close:'<svg width="24" height="24"><path d="M17.3 8.2 13.4 12l3.9 3.8a1 1 0 0 1-1.5 1.5L12 13.4l-3.8 3.9a1 1 0 0 1-1.5-1.5l3.9-3.8-3.9-3.8a1 1 0 0 1 1.5-1.5l3.8 3.9 3.8-3.9a1 1 0 0 1 1.5 1.5Z" fill-rule="evenodd"/></svg>',"code-sample":'<svg width="24" height="26"><path d="M7.1 11a2.8 2.8 0 0 1-.8 2 2.8 2.8 0 0 1 .8 2v1.7c0 .3.1.6.4.8.2.3.5.4.8.4.3 0 .4.2.4.4v.8c0 .2-.1.4-.4.4-.7 0-1.4-.3-2-.8-.5-.6-.8-1.3-.8-2V15c0-.3-.1-.6-.4-.8-.2-.3-.5-.4-.8-.4a.4.4 0 0 1-.4-.4v-.8c0-.2.2-.4.4-.4.3 0 .6-.1.8-.4.3-.2.4-.5.4-.8V9.3c0-.7.3-1.4.8-2 .6-.5 1.3-.8 2-.8.3 0 .4.2.4.4v.8c0 .2-.1.4-.4.4-.3 0-.6.1-.8.4-.3.2-.4.5-.4.8V11Zm9.8 0V9.3c0-.3-.1-.6-.4-.8-.2-.3-.5-.4-.8-.4a.4.4 0 0 1-.4-.4V7c0-.2.1-.4.4-.4.7 0 1.4.3 2 .8.5.6.8 1.3.8 2V11c0 .3.1.6.4.8.2.3.5.4.8.4.2 0 .4.2.4.4v.8c0 .2-.2.4-.4.4-.3 0-.6.1-.8.4-.3.2-.4.5-.4.8v1.7c0 .7-.3 1.4-.8 2-.6.5-1.3.8-2 .8a.4.4 0 0 1-.4-.4v-.8c0-.2.1-.4.4-.4.3 0 .6-.1.8-.4.3-.2.4-.5.4-.8V15a2.8 2.8 0 0 1 .8-2 2.8 2.8 0 0 1-.8-2Zm-3.3-.4c0 .4-.1.8-.5 1.1-.3.3-.7.5-1.1.5-.4 0-.8-.2-1.1-.5-.4-.3-.5-.7-.5-1.1 0-.5.1-.9.5-1.2.3-.3.7-.4 1.1-.4.4 0 .8.1 1.1.4.4.3.5.7.5 1.2ZM12 13c.4 0 .8.1 1.1.5.4.3.5.7.5 1.1 0 1-.1 1.6-.5 2a3 3 0 0 1-1.1 1c-.4.3-.8.4-1.1.4a.5.5 0 0 1-.5-.5V17a3 3 0 0 0 1-.2l.6-.6c-.6 0-1-.2-1.3-.5-.2-.3-.3-.7-.3-1 0-.5.1-1 .5-1.2.3-.4.7-.5 1.1-.5Z" fill-rule="evenodd"/></svg>',"color-levels":'<svg width="24" height="24"><path d="M17.5 11.4A9 9 0 0 1 18 14c0 .5 0 1-.2 1.4 0 .4-.3.9-.5 1.3a6.2 6.2 0 0 1-3.7 3 5.7 5.7 0 0 1-3.2 0A5.9 5.9 0 0 1 7.6 18a6.2 6.2 0 0 1-1.4-2.6 6.7 6.7 0 0 1 0-2.8c0-.4.1-.9.3-1.3a13.6 13.6 0 0 1 2.3-4A20 20 0 0 1 12 4a26.4 26.4 0 0 1 3.2 3.4 18.2 18.2 0 0 1 2.3 4Zm-2 4.5c.4-.7.5-1.4.5-2a7.3 7.3 0 0 0-1-3.2c.2.6.2 1.2.2 1.9a4.5 4.5 0 0 1-1.3 3 5.3 5.3 0 0 1-2.3 1.5 4.9 4.9 0 0 1-2 .1 4.3 4.3 0 0 0 2.4.8 4 4 0 0 0 2-.6 4 4 0 0 0 1.5-1.5Z" fill-rule="evenodd"/></svg>',"color-picker":'<svg width="24" height="24"><path d="M12 3a9 9 0 0 0 0 18 1.5 1.5 0 0 0 1.1-2.5c-.2-.3-.4-.6-.4-1 0-.8.7-1.5 1.5-1.5H16a5 5 0 0 0 5-5c0-4.4-4-8-9-8Zm-5.5 9a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm3-4a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm3 4a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z" fill-rule="nonzero"/></svg>',"color-swatch-remove-color":'<svg width="24" height="24"><path stroke="#000" stroke-width="2" d="M21 3 3 21" fill-rule="evenodd"/></svg>',"color-swatch":'<svg width="24" height="24"><rect x="3" y="3" width="18" height="18" rx="1" fill-rule="evenodd"/></svg>',"comment-add":'<svg width="24" height="24"><g fill-rule="nonzero"><path d="m9 19 3-2h7c.6 0 1-.4 1-1V6c0-.6-.4-1-1-1H5a1 1 0 0 0-1 1v10c0 .6.4 1 1 1h4v2Zm-2 4v-4H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3h-6.4L7 23Z"/><path d="M13 10h2a1 1 0 0 1 0 2h-2v2a1 1 0 0 1-2 0v-2H9a1 1 0 0 1 0-2h2V8a1 1 0 0 1 2 0v2Z"/></g></svg>',comment:'<svg width="24" height="24"><path fill-rule="nonzero" d="m9 19 3-2h7c.6 0 1-.4 1-1V6c0-.6-.4-1-1-1H5a1 1 0 0 0-1 1v10c0 .6.4 1 1 1h4v2Zm-2 4v-4H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3h-6.4L7 23Z"/></svg>',contrast:'<svg width="24" height="24"><path d="M12 4a7.8 7.8 0 0 1 5.7 2.3A8 8 0 1 1 12 4Zm-6 8a6 6 0 0 0 6 6V6a6 6 0 0 0-6 6Z" fill-rule="evenodd"/></svg>',copy:'<svg width="24" height="24"><path d="M16 3H6a2 2 0 0 0-2 2v11h2V5h10V3Zm1 4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9c0-1.2.9-2 2-2h7Zm0 12V9h-7v10h7Z" fill-rule="nonzero"/></svg>',crop:'<svg width="24" height="24"><path d="M17 8v7h2c.6 0 1 .4 1 1s-.4 1-1 1h-2v2c0 .6-.4 1-1 1a1 1 0 0 1-1-1v-2H7V9H5a1 1 0 1 1 0-2h2V5c0-.6.4-1 1-1s1 .4 1 1v2h7l3-3 1 1-3 3ZM9 9v5l5-5H9Zm1 6h5v-5l-5 5Z" fill-rule="evenodd"/></svg>',"cut-column":'<svg width="24" height="24"><path fill-rule="evenodd" d="M7.2 4.5c.9 0 1.6.4 2.2 1A3.7 3.7 0 0 1 10.5 8v.5l1 1 4-4 1-.5a3.3 3.3 0 0 1 2 0c.4 0 .7.3 1 .5L17 8h4v13h-6V10l-1.5 1.5.5.5v4l-2.5-2.5-1 1v.5c0 .4 0 .8-.3 1.2-.2.5-.4.9-.8 1.2-.6.7-1.3 1-2.2 1-.8.2-1.5 0-2-.6l-.5-.8-.2-1c0-.4 0-.8.3-1.2A3.9 3.9 0 0 1 7 12.7c.5-.2 1-.3 1.5-.2l1-1-1-1c-.5 0-1 0-1.5-.2-.5-.1-1-.4-1.4-.9-.4-.3-.6-.7-.8-1.2L4.5 7c0-.4 0-.7.2-1 0-.3.3-.6.5-.8.5-.5 1.2-.8 2-.7Zm12.3 5h-3v10h3v-10ZM8 13.8h-.3l-.4.2a2.8 2.8 0 0 0-.7.4v.1a2.8 2.8 0 0 0-.6.8l-.1.4v.7l.2.5.5.2h.7a2.6 2.6 0 0 0 .8-.3 2.4 2.4 0 0 0 .7-.7 2.5 2.5 0 0 0 .3-.8 1.5 1.5 0 0 0 0-.8 1 1 0 0 0-.2-.4 1 1 0 0 0-.5-.2H8Zm3.5-3.7c-.4 0-.7.1-1 .4-.3.3-.4.6-.4 1s.1.7.4 1c.3.3.6.4 1 .4s.7-.1 1-.4c.3-.3.4-.6.4-1s-.1-.7-.4-1c-.3-.3-.6-.4-1-.4ZM7 5.8h-.4a1 1 0 0 0-.5.3 1 1 0 0 0-.2.5v.7a2.5 2.5 0 0 0 .3.8l.2.3h.1l.4.4.4.2.4.1h.7L9 9l.2-.4a1.6 1.6 0 0 0 0-.8 2.6 2.6 0 0 0-.3-.8A2.5 2.5 0 0 0 7.7 6l-.4-.1H7Z"/></svg>',"cut-row":'<svg width="24" height="24"><path fill-rule="evenodd" d="M22 3v5H9l3 3 2-2h4l-4 4 1 1h.5c.4 0 .8 0 1.2.3.5.2.9.4 1.2.8.7.6 1 1.3 1 2.2.2.8 0 1.5-.6 2l-.8.5-1 .2c-.4 0-.8 0-1.2-.3a3.9 3.9 0 0 1-2.1-2.2c-.2-.5-.3-1-.2-1.5l-1-1-1 1c0 .5 0 1-.2 1.5-.1.5-.4 1-.9 1.4-.3.4-.7.6-1.2.8l-1.2.3c-.4 0-.7 0-1-.2-.3 0-.6-.3-.8-.5-.5-.5-.8-1.2-.7-2 0-.9.4-1.6 1-2.2A3.7 3.7 0 0 1 8.6 14H9l1-1-4-4-.5-1a3.3 3.3 0 0 1 0-2c0-.4.3-.7.5-1l2 2V3h14ZM8.5 15.3h-.3a2.6 2.6 0 0 0-.8.4 2.5 2.5 0 0 0-.9 1.1l-.1.4v.7l.2.5.5.2h.7a2.5 2.5 0 0 0 .8-.3L9 18V18l.4-.4.2-.4.1-.4v-.7a1 1 0 0 0-.2-.5 1 1 0 0 0-.4-.2h-.5Zm7 0H15a1 1 0 0 0-.4.3 1 1 0 0 0-.2.5 1.5 1.5 0 0 0 0 .7v.4a2.8 2.8 0 0 0 .5.7h.1a2.8 2.8 0 0 0 .8.6l.4.1h.7l.5-.2.2-.5v-.7a2.6 2.6 0 0 0-.3-.8 2.4 2.4 0 0 0-.7-.7 2.5 2.5 0 0 0-.8-.3h-.3ZM12 11.6c-.4 0-.7.1-1 .4-.3.3-.4.6-.4 1s.1.7.4 1c.3.3.6.4 1 .4s.7-.1 1-.4c.3-.3.4-.6.4-1s-.1-.7-.4-1c-.3-.3-.6-.4-1-.4Zm8.5-7.1h-11v2h11v-2Z"/></svg>',cut:'<svg width="24" height="24"><path d="M18 15c.6.7 1 1.4 1 2.3 0 .8-.2 1.5-.7 2l-.8.5-1 .2c-.4 0-.8 0-1.2-.3a3.9 3.9 0 0 1-2.1-2.2c-.2-.5-.3-1-.2-1.5l-1-1-1 1c0 .5 0 1-.2 1.5-.1.5-.4 1-.9 1.4-.3.4-.7.6-1.2.8l-1.2.3c-.4 0-.7 0-1-.2-.3 0-.6-.3-.8-.5-.5-.5-.8-1.2-.7-2 0-.9.4-1.6 1-2.2A3.7 3.7 0 0 1 8.6 14H9l1-1-4-4-.5-1a3.3 3.3 0 0 1 0-2c0-.4.3-.7.5-1l6 6 6-6 .5 1a3.3 3.3 0 0 1 0 2c0 .4-.3.7-.5 1l-4 4 1 1h.5c.4 0 .8 0 1.2.3.5.2.9.4 1.2.8Zm-8.5 2.2.1-.4v-.7a1 1 0 0 0-.2-.5 1 1 0 0 0-.4-.2 1.6 1.6 0 0 0-.8 0 2.6 2.6 0 0 0-.8.3 2.5 2.5 0 0 0-.9 1.1l-.1.4v.7l.2.5.5.2h.7a2.5 2.5 0 0 0 .8-.3 2.8 2.8 0 0 0 1-1Zm2.5-2.8c.4 0 .7-.1 1-.4.3-.3.4-.6.4-1s-.1-.7-.4-1c-.3-.3-.6-.4-1-.4s-.7.1-1 .4c-.3.3-.4.6-.4 1s.1.7.4 1c.3.3.6.4 1 .4Zm5.4 4 .2-.5v-.7a2.6 2.6 0 0 0-.3-.8 2.4 2.4 0 0 0-.7-.7 2.5 2.5 0 0 0-.8-.3 1.5 1.5 0 0 0-.8 0 1 1 0 0 0-.4.2 1 1 0 0 0-.2.5 1.5 1.5 0 0 0 0 .7v.4l.3.4.3.4a2.8 2.8 0 0 0 .8.5l.4.1h.7l.5-.2Z" fill-rule="evenodd"/></svg>',"document-properties":'<svg width="24" height="24"><path d="M14.4 3H7a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V7.6L14.4 3ZM17 19H7V5h6v4h4v10Z" fill-rule="nonzero"/></svg>',drag:'<svg width="24" height="24"><path d="M13 5h2v2h-2V5Zm0 4h2v2h-2V9ZM9 9h2v2H9V9Zm4 4h2v2h-2v-2Zm-4 0h2v2H9v-2Zm0 4h2v2H9v-2Zm4 0h2v2h-2v-2ZM9 5h2v2H9V5Z" fill-rule="evenodd"/></svg>',"duplicate-column":'<svg width="24" height="24"><path d="M17 6v16h-7V6h7Zm-2 2h-3v12h3V8Zm-2-6v2H8v15H6V2h7Z"/></svg>',"duplicate-row":'<svg width="24" height="24"><path d="M22 11v7H6v-7h16Zm-2 2H8v3h12v-3Zm-1-6v2H4v5H2V7h17Z"/></svg>',duplicate:'<svg width="24" height="24"><g fill-rule="nonzero"><path d="M16 3v2H6v11H4V5c0-1.1.9-2 2-2h10Zm3 8h-2V9h-7v10h9a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9c0-1.2.9-2 2-2h7a2 2 0 0 1 2 2v2Z"/><path d="M17 14h1a1 1 0 0 1 0 2h-1v1a1 1 0 0 1-2 0v-1h-1a1 1 0 0 1 0-2h1v-1a1 1 0 0 1 2 0v1Z"/></g></svg>',"edit-block":'<svg width="24" height="24"><path fill-rule="nonzero" d="m19.8 8.8-9.4 9.4c-.2.2-.5.4-.9.4l-5.4 1.2 1.2-5.4.5-.8 9.4-9.4c.7-.7 1.8-.7 2.5 0l2.1 2.1c.7.7.7 1.8 0 2.5Zm-2-.2 1-.9v-.3l-2.2-2.2a.3.3 0 0 0-.3 0l-1 1L18 8.5Zm-1 1-2.5-2.4-6 6 2.5 2.5 6-6Zm-7 7.1-2.6-2.4-.3.3-.1.2-.7 3 3.1-.6h.1l.4-.5Z"/></svg>',"edit-image":'<svg width="24" height="24"><path d="M18 16h2V7a2 2 0 0 0-2-2H7v2h11v9ZM6 17h15a1 1 0 0 1 0 2h-1v1a1 1 0 0 1-2 0v-1H6a2 2 0 0 1-2-2V7H3a1 1 0 1 1 0-2h1V4a1 1 0 1 1 2 0v13Zm3-5.3 1.3 2 3-4.7 3.7 6H7l2-3.3Z" fill-rule="nonzero"/></svg>',"embed-page":'<svg width="24" height="24"><path d="M19 6V5H5v14h2A13 13 0 0 1 19 6Zm0 1.4c-.8.8-1.6 2.4-2.2 4.6H19V7.4Zm0 5.6h-2.4c-.4 1.8-.6 3.8-.6 6h3v-6Zm-4 6c0-2.2.2-4.2.6-6H13c-.7 1.8-1.1 3.8-1.1 6h3Zm-4 0c0-2.2.4-4.2 1-6H9.6A12 12 0 0 0 8 19h3ZM4 3h16c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1H4a1 1 0 0 1-1-1V4c0-.6.4-1 1-1Zm11.8 9c.4-1.9 1-3.4 1.8-4.5a9.2 9.2 0 0 0-4 4.5h2.2Zm-3.4 0a12 12 0 0 1 2.8-4 12 12 0 0 0-5 4h2.2Z" fill-rule="nonzero"/></svg>',embed:'<svg width="24" height="24"><path d="M4 3h16c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1H4a1 1 0 0 1-1-1V4c0-.6.4-1 1-1Zm1 2v14h14V5H5Zm4.8 2.6 5.6 4a.5.5 0 0 1 0 .8l-5.6 4A.5.5 0 0 1 9 16V8a.5.5 0 0 1 .8-.4Z" fill-rule="nonzero"/></svg>',emoji:'<svg width="24" height="24"><path d="M9 11c.6 0 1-.4 1-1s-.4-1-1-1a1 1 0 0 0-1 1c0 .6.4 1 1 1Zm6 0c.6 0 1-.4 1-1s-.4-1-1-1a1 1 0 0 0-1 1c0 .6.4 1 1 1Zm-3 5.5c2.1 0 4-1.5 4.4-3.5H7.6c.5 2 2.3 3.5 4.4 3.5ZM12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm0 14.5a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13Z" fill-rule="nonzero"/></svg>',export:'<svg width="24" height="24"><g fill-rule="nonzero"><path d="M14.4 3 18 7v1h-5V5H7v14h9a1 1 0 0 1 2 0c0 1-.8 2-1.9 2H7c-1 0-2-.8-2-1.9V5c0-1 .8-2 1.9-2h7.5Z"/><path d="M18.1 12c.5 0 .9.4.9 1 0 .5-.3 1-.8 1h-7.3c-.5 0-.9-.4-.9-1 0-.5.3-1 .8-1h7.3Z"/><path d="M16.4 9.2a1 1 0 0 1 1.4.2l2.4 3.6-2.4 3.6a1 1 0 0 1-1.7-1v-.2l1.7-2.4-1.6-2.4a1 1 0 0 1 .2-1.4Z"/></g></svg>',fill:'<svg width="24" height="26"><path d="m16.6 12-9-9-1.4 1.4 2.4 2.4-5.2 5.1c-.5.6-.5 1.6 0 2.2L9 19.6a1.5 1.5 0 0 0 2.2 0l5.5-5.5c.5-.6.5-1.6 0-2.2ZM5.2 13 10 8.2l4.8 4.8H5.2ZM19 14.5s-2 2.2-2 3.5c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.3-2-3.5-2-3.5Z" fill-rule="nonzero"/></svg>',"flip-horizontally":'<svg width="24" height="24"><path d="M14 19h2v-2h-2v2Zm4-8h2V9h-2v2ZM4 7v10c0 1.1.9 2 2 2h3v-2H6V7h3V5H6a2 2 0 0 0-2 2Zm14-2v2h2a2 2 0 0 0-2-2Zm-7 16h2V3h-2v18Zm7-6h2v-2h-2v2Zm-4-8h2V5h-2v2Zm4 12a2 2 0 0 0 2-2h-2v2Z" fill-rule="nonzero"/></svg>',"flip-vertically":'<svg width="24" height="24"><path d="M5 14v2h2v-2H5Zm8 4v2h2v-2h-2Zm4-14H7a2 2 0 0 0-2 2v3h2V6h10v3h2V6a2 2 0 0 0-2-2Zm2 14h-2v2a2 2 0 0 0 2-2ZM3 11v2h18v-2H3Zm6 7v2h2v-2H9Zm8-4v2h2v-2h-2ZM5 18c0 1.1.9 2 2 2v-2H5Z" fill-rule="nonzero"/></svg>',footnote:'<svg width="24" height="24"><path d="M19 13c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2h14Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M19 4v6h-1V5h-1.5V4h2.6Z"/><path d="M12 18c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 1 1 0-2h7ZM14 8c.6 0 1 .4 1 1s-.4 1-1 1H5a1 1 0 0 1 0-2h9Z"/></svg>',"format-painter":'<svg width="24" height="24"><path d="M18 5V4c0-.5-.4-1-1-1H5a1 1 0 0 0-1 1v4c0 .6.5 1 1 1h12c.6 0 1-.4 1-1V7h1v4H9v9c0 .6.4 1 1 1h2c.6 0 1-.4 1-1v-7h8V5h-3Z" fill-rule="nonzero"/></svg>',format:'<svg width="24" height="24"><path fill-rule="evenodd" d="M17 5a1 1 0 0 1 0 2h-4v11a1 1 0 0 1-2 0V7H7a1 1 0 1 1 0-2h10Z"/></svg>',fullscreen:'<svg width="24" height="24"><path d="m15.3 10-1.2-1.3 2.9-3h-2.3a.9.9 0 1 1 0-1.7H19c.5 0 .9.4.9.9v4.4a.9.9 0 1 1-1.8 0V7l-2.9 3Zm0 4 3 3v-2.3a.9.9 0 1 1 1.7 0V19c0 .5-.4.9-.9.9h-4.4a.9.9 0 1 1 0-1.8H17l-3-2.9 1.3-1.2ZM10 15.4l-2.9 3h2.3a.9.9 0 1 1 0 1.7H5a.9.9 0 0 1-.9-.9v-4.4a.9.9 0 1 1 1.8 0V17l2.9-3 1.2 1.3ZM8.7 10 5.7 7v2.3a.9.9 0 0 1-1.7 0V5c0-.5.4-.9.9-.9h4.4a.9.9 0 0 1 0 1.8H7l3 2.9-1.3 1.2Z" fill-rule="nonzero"/></svg>',gallery:'<svg width="24" height="24"><path fill-rule="nonzero" d="m5 15.7 2.3-2.2c.3-.3.7-.3 1 0L11 16l5.1-5c.3-.4.8-.4 1 0l2 1.9V8H5v7.7ZM5 18V19h3l1.8-1.9-2-2L5 17.9Zm14-3-2.5-2.4-6.4 6.5H19v-4ZM4 6h16c.6 0 1 .4 1 1v13c0 .6-.4 1-1 1H4a1 1 0 0 1-1-1V7c0-.6.4-1 1-1Zm6 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM4.5 4h15a.5.5 0 1 1 0 1h-15a.5.5 0 0 1 0-1Zm2-2h11a.5.5 0 1 1 0 1h-11a.5.5 0 0 1 0-1Z"/></svg>',gamma:'<svg width="24" height="24"><path d="M4 3h16c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1H4a1 1 0 0 1-1-1V4c0-.6.4-1 1-1Zm1 2v14h14V5H5Zm6.5 11.8V14L9.2 8.7a5.1 5.1 0 0 0-.4-.8l-.1-.2H8v-1l.3-.1.3-.1h.7a1 1 0 0 1 .6.5l.1.3a8.5 8.5 0 0 1 .3.6l1.9 4.6 2-5.2a1 1 0 0 1 1-.6.5.5 0 0 1 .5.6L13 14v2.8a.7.7 0 0 1-1.4 0Z" fill-rule="nonzero"/></svg>',help:'<svg width="24" height="24"><g fill-rule="evenodd"><path d="M12 5.5a6.5 6.5 0 0 0-6 9 6.3 6.3 0 0 0 1.4 2l1 1a6.3 6.3 0 0 0 3.6 1 6.5 6.5 0 0 0 6-9 6.3 6.3 0 0 0-1.4-2l-1-1a6.3 6.3 0 0 0-3.6-1ZM12 4a7.8 7.8 0 0 1 5.7 2.3A8 8 0 1 1 12 4Z"/><path d="M9.6 9.7a.7.7 0 0 1-.7-.8c0-1.1 1.5-1.8 3.2-1.8 1.8 0 3.2.8 3.2 2.4 0 1.4-.4 2.1-1.5 2.8-.2 0-.3.1-.3.2a2 2 0 0 0-.8.8.8.8 0 0 1-1.4-.6c.3-.7.8-1 1.3-1.5l.4-.2c.7-.4.8-.6.8-1.5 0-.5-.6-.9-1.7-.9-.5 0-1 .1-1.4.3-.2 0-.3.1-.3.2v-.2c0 .4-.4.8-.8.8Z" fill-rule="nonzero"/><circle cx="12" cy="16" r="1"/></g></svg>',"highlight-bg-color":'<svg width="24" height="24"><g fill-rule="evenodd"><path class="tox-icon-highlight-bg-color__color" d="M3 18h18v3H3z"/><path fill-rule="nonzero" d="M7.7 16.7H3l3.3-3.3-.7-.8L10.2 8l4 4.1-4 4.2c-.2.2-.6.2-.8 0l-.6-.7-1.1 1.1zm5-7.5L11 7.4l3-2.9a2 2 0 0 1 2.6 0L18 6c.7.7.7 2 0 2.7l-2.9 2.9-1.8-1.8-.5-.6"/></g></svg>',home:'<svg width="24" height="24"><path fill-rule="nonzero" d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>',"horizontal-rule":'<svg width="24" height="24"><path d="M4 11h16v2H4z" fill-rule="evenodd"/></svg>',"image-options":'<svg width="24" height="24"><path d="M6 10a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2Zm12 0a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2Zm-6 0a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2Z" fill-rule="nonzero"/></svg>',image:'<svg width="24" height="24"><path d="m5 15.7 3.3-3.2c.3-.3.7-.3 1 0L12 15l4.1-4c.3-.4.8-.4 1 0l2 1.9V5H5v10.7ZM5 18V19h3l2.8-2.9-2-2L5 17.9Zm14-3-2.5-2.4-6.4 6.5H19v-4ZM4 3h16c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1H4a1 1 0 0 1-1-1V4c0-.6.4-1 1-1Zm6 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" fill-rule="nonzero"/></svg>',indent:'<svg width="24" height="24"><path d="M7 5h12c.6 0 1 .4 1 1s-.4 1-1 1H7a1 1 0 1 1 0-2Zm5 4h7c.6 0 1 .4 1 1s-.4 1-1 1h-7a1 1 0 0 1 0-2Zm0 4h7c.6 0 1 .4 1 1s-.4 1-1 1h-7a1 1 0 0 1 0-2Zm-5 4h12a1 1 0 0 1 0 2H7a1 1 0 0 1 0-2Zm-2.6-3.8L6.2 12l-1.8-1.2a1 1 0 0 1 1.2-1.6l3 2a1 1 0 0 1 0 1.6l-3 2a1 1 0 1 1-1.2-1.6Z" fill-rule="evenodd"/></svg>',info:'<svg width="24" height="24"><path d="M12 4a7.8 7.8 0 0 1 5.7 2.3A8 8 0 1 1 12 4Zm-1 3v2h2V7h-2Zm3 10v-1h-1v-5h-3v1h1v4h-1v1h4Z" fill-rule="evenodd"/></svg>',"insert-character":'<svg width="24" height="24"><path d="M15 18h4l1-2v4h-6v-3.3l1.4-1a6 6 0 0 0 1.8-2.9 6.3 6.3 0 0 0-.1-4.1 5.8 5.8 0 0 0-3-3.2c-.6-.3-1.3-.5-2.1-.5a5.1 5.1 0 0 0-3.9 1.8 6.3 6.3 0 0 0-1.3 6 6.2 6.2 0 0 0 1.8 3l1.4.9V20H4v-4l1 2h4v-.5l-2-1L5.4 15A6.5 6.5 0 0 1 4 11c0-1 .2-1.9.6-2.7A7 7 0 0 1 6.3 6C7.1 5.4 8 5 9 4.5c1-.3 2-.5 3.1-.5a8.8 8.8 0 0 1 5.7 2 7 7 0 0 1 1.7 2.3 6 6 0 0 1 .2 4.8c-.2.7-.6 1.3-1 1.9a7.6 7.6 0 0 1-3.6 2.5v.5Z" fill-rule="evenodd"/></svg>',"insert-time":'<svg width="24" height="24"><g fill-rule="nonzero"><path d="M12 19a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0 2a9 9 0 1 1 0-18 9 9 0 0 1 0 18Z"/><path d="M16 12h-3V7c0-.6-.4-1-1-1a1 1 0 0 0-1 1v7h5c.6 0 1-.4 1-1s-.4-1-1-1Z"/></g></svg>',invert:'<svg width="24" height="24"><path d="M18 19.3 16.5 18a5.8 5.8 0 0 1-3.1 1.9 6.1 6.1 0 0 1-5.5-1.6A5.8 5.8 0 0 1 6 14v-.3l.1-1.2A13.9 13.9 0 0 1 7.7 9l-3-3 .7-.8 2.8 2.9 9 8.9 1.5 1.6-.7.6Zm0-5.5v.3l-.1 1.1-.4 1-1.2-1.2a4.3 4.3 0 0 0 .2-1v-.2c0-.4 0-.8-.2-1.3l-.5-1.4a14.8 14.8 0 0 0-3-4.2L12 6a26.1 26.1 0 0 0-2.2 2.5l-1-1a20.9 20.9 0 0 1 2.9-3.3L12 4l1 .8a22.2 22.2 0 0 1 4 5.4c.6 1.2 1 2.4 1 3.6Z" fill-rule="evenodd"/></svg>',italic:'<svg width="24" height="24"><path d="m16.7 4.7-.1.9h-.3c-.6 0-1 0-1.4.3-.3.3-.4.6-.5 1.1l-2.1 9.8v.6c0 .5.4.8 1.4.8h.2l-.2.8H8l.2-.8h.2c1.1 0 1.8-.5 2-1.5l2-9.8.1-.5c0-.6-.4-.8-1.4-.8h-.3l.2-.9h5.8Z" fill-rule="evenodd"/></svg>',language:'<svg width="24" height="24"><path d="M12 3a9 9 0 1 1 0 18 9 9 0 0 1 0-18Zm4.3 13.3c-.5 1-1.2 2-2 2.9a7.5 7.5 0 0 0 3.2-2.1l-.2-.2a6 6 0 0 0-1-.6Zm-8.6 0c-.5.2-.9.5-1.2.8.9 1 2 1.7 3.2 2a10 10 0 0 1-2-2.8Zm3.6-.8c-.8 0-1.6.1-2.2.3.5 1 1.2 1.9 2.1 2.7Zm1.5 0v3c.9-.8 1.6-1.7 2.1-2.7-.6-.2-1.4-.3-2.1-.3Zm-6-2.7H4.5c.2 1 .5 2.1 1 3h.3l1.3-1a10 10 0 0 1-.3-2Zm12.7 0h-2.3c0 .7-.1 1.4-.3 2l1.6 1.1c.5-1 .9-2 1-3.1Zm-3.8 0h-3V14c1 0 2 .1 2.7.4.2-.5.3-1 .3-1.6Zm-4.4 0h-3l.3 1.6c.8-.3 1.7-.4 2.7-.4v-1.3Zm-5.5-5c-.7 1-1.1 2.2-1.3 3.5h2.3c0-1 .2-1.8.5-2.6l-1.5-1Zm2.9 1.4v.1c-.2.6-.4 1.3-.4 2h3V9.4c-1 0-1.8-.1-2.6-.3Zm6.6 0h-.1l-2.4.3v1.8h3l-.5-2.1Zm3-1.4-.3.1-1.3.8c.3.8.5 1.6.5 2.6h2.3a7.5 7.5 0 0 0-1.3-3.5Zm-9 0 2 .2V5.5a9 9 0 0 0-2 2.2Zm3.5-2.3V8c.6 0 1.3 0 1.9-.2a9 9 0 0 0-2-2.3Zm-3-.7h-.1c-1.1.4-2.1 1-3 1.8l1.2.7a10 10 0 0 1 1.9-2.5Zm4.4 0 .1.1a10 10 0 0 1 1.8 2.4l1.1-.7a7.5 7.5 0 0 0-3-1.8Z"/></svg>',"line-height":'<svg width="24" height="24"><path d="M21 5a1 1 0 0 1 .1 2H13a1 1 0 0 1-.1-2H21zm0 4a1 1 0 0 1 .1 2H13a1 1 0 0 1-.1-2H21zm0 4a1 1 0 0 1 .1 2H13a1 1 0 0 1-.1-2H21zm0 4a1 1 0 0 1 .1 2H13a1 1 0 0 1-.1-2H21zM7 3.6l3.7 3.7a1 1 0 0 1-1.3 1.5h-.1L8 7.3v9.2l1.3-1.3a1 1 0 0 1 1.3 0h.1c.4.4.4 1 0 1.3v.1L7 20.4l-3.7-3.7a1 1 0 0 1 1.3-1.5h.1L6 16.7V7.4L4.7 8.7a1 1 0 0 1-1.3 0h-.1a1 1 0 0 1 0-1.3v-.1L7 3.6z"/></svg>',line:'<svg width="24" height="24"><path d="m15 9-8 8H4v-3l8-8 3 3Zm1-1-3-3 1-1h1c-.2 0 0 0 0 0l2 2s0 .2 0 0v1l-1 1ZM4 18h16v2H4v-2Z" fill-rule="evenodd"/></svg>',link:'<svg width="24" height="24"><path d="M6.2 12.3a1 1 0 0 1 1.4 1.4l-2 2a2 2 0 1 0 2.6 2.8l4.8-4.8a1 1 0 0 0 0-1.4 1 1 0 1 1 1.4-1.3 2.9 2.9 0 0 1 0 4L9.6 20a3.9 3.9 0 0 1-5.5-5.5l2-2Zm11.6-.6a1 1 0 0 1-1.4-1.4l2-2a2 2 0 1 0-2.6-2.8L11 10.3a1 1 0 0 0 0 1.4A1 1 0 1 1 9.6 13a2.9 2.9 0 0 1 0-4L14.4 4a3.9 3.9 0 0 1 5.5 5.5l-2 2Z" fill-rule="nonzero"/></svg>',"list-bull-circle":'<svg width="48" height="48"><g fill-rule="evenodd"><path d="M11 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM11 26a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM11 36a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z" fill-rule="nonzero"/><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/></g></svg>',"list-bull-default":'<svg width="48" height="48"><g fill-rule="evenodd"><circle cx="11" cy="14" r="3"/><circle cx="11" cy="24" r="3"/><circle cx="11" cy="34" r="3"/><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/></g></svg>',"list-bull-square":'<svg width="48" height="48"><g fill-rule="evenodd"><path d="M8 11h6v6H8zM8 21h6v6H8zM8 31h6v6H8z"/><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/></g></svg>',"list-num-default-rtl":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M8 12h22v4H8zM8 22h22v4H8zM8 32h22v4H8z"/><path d="M37.4 17v-4.8h-.1l-1.5 1v-1.1l1.6-1.1h1.2v6zM33.3 17.1c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm1.7 5.7c0-1.2 1-2 2.2-2 1.3 0 2.1.8 2.1 1.8 0 .7-.3 1.2-1.3 2.2l-1.2 1v.2h2.6v1h-4.3v-.9l2-1.9c.8-.8 1-1.1 1-1.5 0-.5-.4-.8-1-.8-.5 0-.9.3-.9.9H35zm-1.7 4.3c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7zm3.2 7.3v-1h.7c.6 0 1-.3 1-.8 0-.4-.4-.7-1-.7s-1 .3-1 .8H35c0-1.1 1-1.8 2.2-1.8 1.2 0 2.1.6 2.1 1.6 0 .7-.4 1.2-1 1.3v.1c.7.1 1.3.7 1.3 1.4 0 1-1 1.9-2.4 1.9-1.3 0-2.2-.8-2.3-2h1.2c0 .6.5 1 1.1 1 .6 0 1-.4 1-1 0-.5-.3-.8-1-.8h-.7zm-3.3 2.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .8.3.8.7 0 .4-.3.7-.8.7z"/></g></svg>',"list-num-default":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/><path d="M10 17v-4.8l-1.5 1v-1.1l1.6-1h1.2V17h-1.2Zm3.6.1c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .7.3.7.7 0 .4-.2.7-.7.7Zm-5 5.7c0-1.2.8-2 2.1-2s2.1.8 2.1 1.8c0 .7-.3 1.2-1.4 2.2l-1.1 1v.2h2.6v1H8.6v-.9l2-1.9c.8-.8 1-1.1 1-1.5 0-.5-.4-.8-1-.8-.5 0-.9.3-.9.9H8.5Zm6.3 4.3c-.5 0-.7-.3-.7-.7 0-.4.2-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7ZM10 34.4v-1h.7c.6 0 1-.3 1-.8 0-.4-.4-.7-1-.7s-1 .3-1 .8H8.6c0-1.1 1-1.8 2.2-1.8 1.3 0 2.1.6 2.1 1.6 0 .7-.4 1.2-1 1.3v.1c.8.1 1.3.7 1.3 1.4 0 1-1 1.9-2.4 1.9-1.3 0-2.2-.8-2.3-2h1.2c0 .6.5 1 1.1 1 .7 0 1-.4 1-1 0-.5-.3-.8-1-.8h-.7Zm4.7 2.7c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .8.3.8.7 0 .4-.3.7-.8.7Z"/></g></svg>',"list-num-lower-alpha-rtl":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M8 12h22v4H8zM8 22h22v4H8zM8 32h22v4H8z"/><path d="M36.5 16c-.9 0-1.5-.5-1.5-1.3s.6-1.3 1.8-1.4h1v-.4c0-.4-.2-.6-.7-.6-.4 0-.7.1-.8.4h-1.1c0-.8.8-1.4 2-1.4S39 12 39 13V16h-1.2v-.6c-.3.4-.8.7-1.4.7Zm.4-.8c.6 0 1-.4 1-.9V14h-1c-.5.1-.7.3-.7.6 0 .4.3.6.7.6ZM33.1 16.1c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .8.3.8.7 0 .4-.3.7-.8.7ZM37.7 26c-.7 0-1.2-.2-1.5-.7v.7H35v-6.3h1.2v2.5c.3-.5.8-.9 1.5-.9 1.1 0 1.8 1 1.8 2.4 0 1.5-.7 2.4-1.8 2.4Zm-.5-3.6c-.6 0-1 .5-1 1.3s.4 1.4 1 1.4c.7 0 1-.6 1-1.4 0-.8-.3-1.3-1-1.3ZM33.2 26.1c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .8.3.8.7 0 .4-.3.7-.8.7zm6 7h-1c-.1-.5-.4-.8-1-.8s-1 .5-1 1.4c0 1 .4 1.4 1 1.4.5 0 .9-.2 1-.7h1c0 1-.8 1.7-2 1.7-1.4 0-2.2-.9-2.2-2.4s.8-2.4 2.2-2.4c1.2 0 2 .7 2 1.7zm-6.1 3c-.5 0-.7-.3-.7-.7 0-.4.2-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7z"/></g></svg>',"list-num-lower-alpha":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/><path d="M10.3 15.2c.5 0 1-.4 1-.9V14h-1c-.5.1-.8.3-.8.6 0 .4.3.6.8.6Zm-.4.9c-1 0-1.5-.6-1.5-1.4 0-.8.6-1.3 1.7-1.4h1.1v-.4c0-.4-.2-.6-.7-.6-.5 0-.8.1-.9.4h-1c0-.8.8-1.4 2-1.4 1.1 0 1.8.6 1.8 1.6V16h-1.1v-.6h-.1c-.2.4-.7.7-1.3.7Zm4.6 0c-.5 0-.7-.3-.7-.7 0-.4.2-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Zm-3.2 10c-.6 0-1.2-.3-1.4-.8v.7H8.5v-6.3H10v2.5c.3-.5.8-.9 1.4-.9 1.2 0 1.9 1 1.9 2.4 0 1.5-.7 2.4-1.9 2.4Zm-.4-3.7c-.7 0-1 .5-1 1.3s.3 1.4 1 1.4c.6 0 1-.6 1-1.4 0-.8-.4-1.3-1-1.3Zm4 3.7c-.5 0-.7-.3-.7-.7 0-.4.2-.7.7-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Zm-2.2 7h-1.2c0-.5-.4-.8-.9-.8-.6 0-1 .5-1 1.4 0 1 .4 1.4 1 1.4.5 0 .8-.2 1-.7h1c0 1-.8 1.7-2 1.7-1.4 0-2.2-.9-2.2-2.4s.8-2.4 2.2-2.4c1.2 0 2 .7 2 1.7Zm1.8 3c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Z"/></g></svg>',"list-num-lower-greek-rtl":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M8 12h22v4H8zM8 22h22v4H8zM8 32h22v4H8z"/><path d="M37.4 16c-1.2 0-2-.8-2-2.3 0-1.5.8-2.4 2-2.4.6 0 1 .4 1.3 1v-.9H40v3.2c0 .4.1.5.4.5h.2v.9h-.6c-.6 0-1-.2-1-.7h-.2c-.2.4-.7.8-1.3.8Zm.3-1c.6 0 1-.5 1-1.3s-.4-1.3-1-1.3-1 .5-1 1.3.4 1.4 1 1.4ZM33.3 16.1c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7ZM36 21.9c0-1.5.8-2.3 2.1-2.3 1.2 0 2 .6 2 1.6 0 .6-.3 1-.9 1.3.9.3 1.3.8 1.3 1.7 0 1.2-.7 1.9-1.8 1.9-.6 0-1.1-.3-1.4-.8v2.2H36V22Zm1.8 1.2v-1h.3c.5 0 .9-.2.9-.7 0-.5-.3-.8-.9-.8-.5 0-.8.3-.8 1v2.2c0 .8.4 1.3 1 1.3s1-.4 1-1-.4-1-1.2-1h-.3ZM33.3 26.1c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7ZM37.1 34.6 34.8 30h1.4l1.7 3.5 1.7-3.5h1.1l-2.2 4.6v.1c.5.8.7 1.4.7 1.8 0 .4-.2.8-.4 1-.2.2-.6.3-1 .3-.9 0-1.3-.4-1.3-1.2 0-.5.2-1 .5-1.7l.1-.2Zm.7 1a2 2 0 0 0-.4.9c0 .3.1.4.4.4.3 0 .4-.1.4-.4 0-.2-.1-.6-.4-1ZM33.3 36.1c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Z"/></g></svg>',"list-num-lower-greek":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/><path d="M10.5 15c.7 0 1-.5 1-1.3s-.3-1.3-1-1.3c-.5 0-.9.5-.9 1.3s.4 1.4 1 1.4Zm-.3 1c-1.1 0-1.8-.8-1.8-2.3 0-1.5.7-2.4 1.8-2.4.7 0 1.1.4 1.3 1h.1v-.9h1.2v3.2c0 .4.1.5.4.5h.2v.9h-.6c-.6 0-1-.2-1.1-.7h-.1c-.2.4-.7.8-1.4.8Zm5 .1c-.5 0-.8-.3-.8-.7 0-.4.3-.7.7-.7.5 0 .8.3.8.7 0 .4-.3.7-.8.7Zm-4.9 7v-1h.3c.6 0 1-.2 1-.7 0-.5-.4-.8-1-.8-.5 0-.8.3-.8 1v2.2c0 .8.4 1.3 1.1 1.3.6 0 1-.4 1-1s-.5-1-1.3-1h-.3ZM8.6 22c0-1.5.7-2.3 2-2.3 1.2 0 2 .6 2 1.6 0 .6-.3 1-.8 1.3.8.3 1.3.8 1.3 1.7 0 1.2-.8 1.9-1.9 1.9-.6 0-1.1-.3-1.3-.8v2.2H8.5V22Zm6.2 4.2c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .7.3.7.7 0 .4-.2.7-.7.7Zm-4.5 8.5L8 30h1.4l1.7 3.5 1.7-3.5h1.1l-2.2 4.6v.1c.5.8.7 1.4.7 1.8 0 .4-.1.8-.4 1-.2.2-.6.3-1 .3-.9 0-1.3-.4-1.3-1.2 0-.5.2-1 .5-1.7l.1-.2Zm.7 1a2 2 0 0 0-.4.9c0 .3.1.4.4.4.3 0 .4-.1.4-.4 0-.2-.1-.6-.4-1Zm4.5.5c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Z"/></g></svg>',"list-num-lower-roman-rtl":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M8 12h22v4H8zM8 22h22v4H8zM8 32h22v4H8z"/><path d="M32.9 16v-1.2h-1.3V16H33Zm0 10v-1.2h-1.3V26H33Zm0 10v-1.2h-1.3V36H33Z"/><path fill-rule="nonzero" d="M36 21h-1.5v5H36zM36 31h-1.5v5H36zM39 21h-1.5v5H39zM39 31h-1.5v5H39zM42 31h-1.5v5H42zM36 11h-1.5v5H36zM36 19h-1.5v1H36zM36 29h-1.5v1H36zM39 19h-1.5v1H39zM39 29h-1.5v1H39zM42 29h-1.5v1H42zM36 9h-1.5v1H36z"/></g></svg>',"list-num-lower-roman":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/><path d="M15.1 16v-1.2h1.3V16H15Zm0 10v-1.2h1.3V26H15Zm0 10v-1.2h1.3V36H15Z"/><path fill-rule="nonzero" d="M12 21h1.5v5H12zM12 31h1.5v5H12zM9 21h1.5v5H9zM9 31h1.5v5H9zM6 31h1.5v5H6zM12 11h1.5v5H12zM12 19h1.5v1H12zM12 29h1.5v1H12zM9 19h1.5v1H9zM9 29h1.5v1H9zM6 29h1.5v1H6zM12 9h1.5v1H12z"/></g></svg>',"list-num-upper-alpha-rtl":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M8 12h22v4H8zM8 22h22v4H8zM8 32h22v4H8z"/><path d="m39.3 17-.5-1.4h-2l-.5 1.4H35l2-6h1.6l2 6h-1.3Zm-1.6-4.7-.7 2.3h1.6l-.8-2.3ZM33.4 17c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .7.3.7.7 0 .4-.2.7-.7.7Zm4.7 9.9h-2.7v-6H38c1.2 0 1.9.6 1.9 1.5 0 .6-.5 1.2-1 1.3.7.1 1.3.7 1.3 1.5 0 1-.8 1.7-2 1.7Zm-1.4-5v1.5h1c.6 0 1-.3 1-.8 0-.4-.4-.7-1-.7h-1Zm0 4h1.1c.7 0 1.1-.3 1.1-.8 0-.6-.4-.9-1.1-.9h-1.1V26ZM33 27.1c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Zm4.9 10c-1.8 0-2.8-1.1-2.8-3.1s1-3.1 2.8-3.1c1.4 0 2.5.9 2.6 2.2h-1.3c0-.7-.6-1.1-1.3-1.1-1 0-1.6.7-1.6 2s.6 2 1.6 2c.7 0 1.2-.4 1.4-1h1.2c-.1 1.3-1.2 2.2-2.6 2.2Zm-4.5 0c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Z"/></g></svg>',"list-num-upper-alpha":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/><path d="m12.6 17-.5-1.4h-2L9.5 17H8.3l2-6H12l2 6h-1.3ZM11 12.3l-.7 2.3h1.6l-.8-2.3Zm4.7 4.8c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7.5 0 .7.3.7.7 0 .4-.2.7-.7.7ZM11.4 27H8.7v-6h2.6c1.2 0 1.9.6 1.9 1.5 0 .6-.5 1.2-1 1.3.7.1 1.3.7 1.3 1.5 0 1-.8 1.7-2 1.7ZM10 22v1.5h1c.6 0 1-.3 1-.8 0-.4-.4-.7-1-.7h-1Zm0 4H11c.7 0 1.1-.3 1.1-.8 0-.6-.4-.9-1.1-.9H10V26Zm5.4 1.1c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Zm-4.1 10c-1.8 0-2.8-1.1-2.8-3.1s1-3.1 2.8-3.1c1.4 0 2.5.9 2.6 2.2h-1.3c0-.7-.6-1.1-1.3-1.1-1 0-1.6.7-1.6 2s.6 2 1.6 2c.7 0 1.2-.4 1.4-1h1.2c-.1 1.3-1.2 2.2-2.6 2.2Zm4.5 0c-.5 0-.8-.3-.8-.7 0-.4.3-.7.8-.7.4 0 .7.3.7.7 0 .4-.3.7-.7.7Z"/></g></svg>',"list-num-upper-roman-rtl":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M8 12h22v4H8zM8 22h22v4H8zM8 32h22v4H8z"/><path d="M31.6 17v-1.2H33V17h-1.3Zm0 10v-1.2H33V27h-1.3Zm0 10v-1.2H33V37h-1.3Z"/><path fill-rule="nonzero" d="M34.5 20H36v7h-1.5zM34.5 30H36v7h-1.5zM37.5 20H39v7h-1.5zM37.5 30H39v7h-1.5zM40.5 30H42v7h-1.5zM34.5 10H36v7h-1.5z"/></g></svg>',"list-num-upper-roman":'<svg width="48" height="48"><g fill-rule="evenodd"><path opacity=".2" d="M18 12h22v4H18zM18 22h22v4H18zM18 32h22v4H18z"/><path d="M15.1 17v-1.2h1.3V17H15Zm0 10v-1.2h1.3V27H15Zm0 10v-1.2h1.3V37H15Z"/><path fill-rule="nonzero" d="M12 20h1.5v7H12zM12 30h1.5v7H12zM9 20h1.5v7H9zM9 30h1.5v7H9zM6 30h1.5v7H6zM12 10h1.5v7H12z"/></g></svg>',lock:'<svg width="24" height="24"><path d="M16.3 11c.2 0 .3 0 .5.2l.2.6v7.4c0 .3 0 .4-.2.6l-.6.2H7.8c-.3 0-.4 0-.6-.2a.7.7 0 0 1-.2-.6v-7.4c0-.3 0-.4.2-.6l.5-.2H8V8c0-.8.3-1.5.9-2.1.6-.6 1.3-.9 2.1-.9h2c.8 0 1.5.3 2.1.9.6.6.9 1.3.9 2.1v3h.3ZM10 8v3h4V8a1 1 0 0 0-.3-.7A1 1 0 0 0 13 7h-2a1 1 0 0 0-.7.3 1 1 0 0 0-.3.7Z" fill-rule="evenodd"/></svg>',ltr:'<svg width="24" height="24"><path d="M11 5h7a1 1 0 0 1 0 2h-1v11a1 1 0 0 1-2 0V7h-2v11a1 1 0 0 1-2 0v-6c-.5 0-1 0-1.4-.3A3.4 3.4 0 0 1 7.8 10a3.3 3.3 0 0 1 0-2.8 3.4 3.4 0 0 1 1.8-1.8L11 5ZM4.4 16.2 6.2 15l-1.8-1.2a1 1 0 0 1 1.2-1.6l3 2a1 1 0 0 1 0 1.6l-3 2a1 1 0 1 1-1.2-1.6Z" fill-rule="evenodd"/></svg>',minus:'<svg width="24" height="24"><path d="M19 11a1 1 0 0 1 .1 2H5a1 1 0 0 1-.1-2H19Z"/></svg>',"more-drawer":'<svg width="24" height="24"><path d="M6 10a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2Zm12 0a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2Zm-6 0a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2Z" fill-rule="nonzero"/></svg>',"new-document":'<svg width="24" height="24"><path d="M14.4 3H7a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V7.6L14.4 3ZM17 19H7V5h6v4h4v10Z" fill-rule="nonzero"/></svg>',"new-tab":'<svg width="24" height="24"><path d="m15 13 2-2v8H5V7h8l-2 2H7v8h8v-4Zm4-8v5.5l-2-2-5.6 5.5H10v-1.4L15.5 7l-2-2H19Z" fill-rule="evenodd"/></svg>',"non-breaking":'<svg width="24" height="24"><path d="M11 11H8a1 1 0 1 1 0-2h3V6c0-.6.4-1 1-1s1 .4 1 1v3h3c.6 0 1 .4 1 1s-.4 1-1 1h-3v3c0 .6-.4 1-1 1a1 1 0 0 1-1-1v-3Zm10 4v5H3v-5c0-.6.4-1 1-1s1 .4 1 1v3h14v-3c0-.6.4-1 1-1s1 .4 1 1Z" fill-rule="evenodd"/></svg>',notice:'<svg width="24" height="24"><path d="M15.5 4 20 8.5v7L15.5 20h-7L4 15.5v-7L8.5 4h7ZM13 17v-2h-2v2h2Zm0-4V7h-2v6h2Z" fill-rule="evenodd" clip-rule="evenodd"/></svg>',"ordered-list-rtl":'<svg width="24" height="24"><path d="M6 17h8a1 1 0 0 1 0 2H6a1 1 0 0 1 0-2Zm0-6h8a1 1 0 0 1 0 2H6a1 1 0 0 1 0-2Zm0-6h8a1 1 0 0 1 0 2H6a1 1 0 1 1 0-2Zm13-1v3.5a.5.5 0 1 1-1 0V5h-.5a.5.5 0 1 1 0-1H19Zm-1 8.8.2.2h1.3a.5.5 0 1 1 0 1h-1.6a1 1 0 0 1-.9-1V13c0-.4.3-.8.6-1l1.2-.4.2-.3a.2.2 0 0 0-.2-.2h-1.3a.5.5 0 0 1-.5-.5c0-.3.2-.5.5-.5h1.6c.5 0 .9.4.9 1v.1c0 .4-.3.8-.6 1l-1.2.4-.2.3Zm2 4.2v2c0 .6-.4 1-1 1h-1.5a.5.5 0 0 1 0-1h1.2a.3.3 0 1 0 0-.6h-1.3a.4.4 0 1 1 0-.8h1.3a.3.3 0 0 0 0-.6h-1.2a.5.5 0 1 1 0-1H19c.6 0 1 .4 1 1Z" fill-rule="evenodd"/></svg>',"ordered-list":'<svg width="24" height="24"><path d="M10 17h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm0-6h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm0-6h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 1 1 0-2ZM6 4v3.5c0 .3-.2.5-.5.5a.5.5 0 0 1-.5-.5V5h-.5a.5.5 0 0 1 0-1H6Zm-1 8.8.2.2h1.3c.3 0 .5.2.5.5s-.2.5-.5.5H4.9a1 1 0 0 1-.9-1V13c0-.4.3-.8.6-1l1.2-.4.2-.3a.2.2 0 0 0-.2-.2H4.5a.5.5 0 0 1-.5-.5c0-.3.2-.5.5-.5h1.6c.5 0 .9.4.9 1v.1c0 .4-.3.8-.6 1l-1.2.4-.2.3ZM7 17v2c0 .6-.4 1-1 1H4.5a.5.5 0 0 1 0-1h1.2c.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3H4.4a.4.4 0 1 1 0-.8h1.3c.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3H4.5a.5.5 0 1 1 0-1H6c.6 0 1 .4 1 1Z" fill-rule="evenodd"/></svg>',orientation:'<svg width="24" height="24"><path d="M7.3 6.4 1 13l6.4 6.5 6.5-6.5-6.5-6.5ZM3.7 13l3.6-3.7L11 13l-3.7 3.7-3.6-3.7ZM12 6l2.8 2.7c.3.3.3.8 0 1-.3.4-.9.4-1.2 0L9.2 5.7a.8.8 0 0 1 0-1.2L13.6.2c.3-.3.9-.3 1.2 0 .3.3.3.8 0 1.1L12 4h1a9 9 0 1 1-4.3 16.9l1.5-1.5A7 7 0 1 0 13 6h-1Z" fill-rule="nonzero"/></svg>',outdent:'<svg width="24" height="24"><path d="M7 5h12c.6 0 1 .4 1 1s-.4 1-1 1H7a1 1 0 1 1 0-2Zm5 4h7c.6 0 1 .4 1 1s-.4 1-1 1h-7a1 1 0 0 1 0-2Zm0 4h7c.6 0 1 .4 1 1s-.4 1-1 1h-7a1 1 0 0 1 0-2Zm-5 4h12a1 1 0 0 1 0 2H7a1 1 0 0 1 0-2Zm1.6-3.8a1 1 0 0 1-1.2 1.6l-3-2a1 1 0 0 1 0-1.6l3-2a1 1 0 0 1 1.2 1.6L6.8 12l1.8 1.2Z" fill-rule="evenodd"/></svg>',"page-break":'<svg width="24" height="24"><g fill-rule="evenodd"><path d="M5 11c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1 0-2Zm3 0h1c.6 0 1 .4 1 1s-.4 1-1 1H8a1 1 0 0 1 0-2Zm4 0c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1 0-2Zm3 0h1c.6 0 1 .4 1 1s-.4 1-1 1h-1a1 1 0 0 1 0-2Zm4 0c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1 0-2ZM7 3v5h10V3c0-.6.4-1 1-1s1 .4 1 1v7H5V3c0-.6.4-1 1-1s1 .4 1 1ZM6 22a1 1 0 0 1-1-1v-7h14v7c0 .6-.4 1-1 1a1 1 0 0 1-1-1v-5H7v5c0 .6-.4 1-1 1Z"/></g></svg>',paragraph:'<svg width="24" height="24"><path fill-rule="evenodd" d="M10 5h7a1 1 0 0 1 0 2h-1v11a1 1 0 0 1-2 0V7h-2v11a1 1 0 0 1-2 0v-6c-.5 0-1 0-1.4-.3A3.4 3.4 0 0 1 6.8 10a3.3 3.3 0 0 1 0-2.8 3.4 3.4 0 0 1 1.8-1.8L10 5Z"/></svg>',"paste-column-after":'<svg width="24" height="24"><path fill-rule="evenodd" d="M12 1a3 3 0 0 1 2.8 2H18c1 0 2 .8 2 1.9V7h-2V5h-2v1c0 .6-.4 1-1 1H9a1 1 0 0 1-1-1V5H6v13h7v2H6c-1 0-2-.8-2-1.9V5c0-1 .8-2 1.9-2H9.2A3 3 0 0 1 12 1Zm8 7v12h-6V8h6Zm-1.5 1.5h-3v9h3v-9ZM12 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>',"paste-column-before":'<svg width="24" height="24"><path fill-rule="evenodd" d="M12 1a3 3 0 0 1 2.8 2H18c1 0 2 .8 2 1.9V18c0 1-.8 2-1.9 2H11v-2h7V5h-2v1c0 .6-.4 1-1 1H9a1 1 0 0 1-1-1V5H6v2H4V5c0-1 .8-2 1.9-2H9.2A3 3 0 0 1 12 1Zm-2 7v12H4V8h6ZM8.5 9.5h-3v9h3v-9ZM12 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>',"paste-row-after":'<svg width="24" height="24"><path fill-rule="evenodd" d="M12 1a3 3 0 0 1 2.8 2H18c1 0 2 .8 2 1.9V11h-2V5h-2v1c0 .6-.4 1-1 1H9a1 1 0 0 1-1-1V5H6v13h14c0 1-.8 2-1.9 2H6c-1 0-2-.8-2-1.9V5c0-1 .8-2 1.9-2H9.2A3 3 0 0 1 12 1Zm10 11v5H8v-5h14Zm-1.5 1.5h-11v2h11v-2ZM12 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>',"paste-row-before":'<svg width="24" height="24"><path fill-rule="evenodd" d="M12 1a3 3 0 0 1 2.8 2H18c1 0 2 .8 2 1.9V7h-2V5h-2v1c0 .6-.4 1-1 1H9a1 1 0 0 1-1-1V5H6v13h12v-4h2v4c0 1-.8 2-1.9 2H6c-1 0-2-.8-2-1.9V5c0-1 .8-2 1.9-2H9.2A3 3 0 0 1 12 1Zm10 7v5H8V8h14Zm-1.5 1.5h-11v2h11v-2ZM12 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"/></svg>',"paste-text":'<svg width="24" height="24"><path d="M18 9V5h-2v1c0 .6-.4 1-1 1H9a1 1 0 0 1-1-1V5H6v13h3V9h9ZM9 20H6a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.2A3 3 0 0 1 12 1a3 3 0 0 1 2.8 2H18a2 2 0 0 1 2 2v4h1v12H9v-1Zm1.5-9.5v9h9v-9h-9ZM12 3a1 1 0 0 0-1 1c0 .5.4 1 1 1s1-.5 1-1-.4-1-1-1Zm0 9h6v2h-.5l-.5-1h-1v4h.8v1h-3.6v-1h.8v-4h-1l-.5 1H12v-2Z" fill-rule="nonzero"/></svg>',paste:'<svg width="24" height="24"><path d="M18 9V5h-2v1c0 .6-.4 1-1 1H9a1 1 0 0 1-1-1V5H6v13h3V9h9ZM9 20H6a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.2A3 3 0 0 1 12 1a3 3 0 0 1 2.8 2H18a2 2 0 0 1 2 2v4h1v12H9v-1Zm1.5-9.5v9h9v-9h-9ZM12 3a1 1 0 0 0-1 1c0 .5.4 1 1 1s1-.5 1-1-.4-1-1-1Z" fill-rule="nonzero"/></svg>',"permanent-pen":'<svg width="24" height="24"><path d="M10.5 17.5 8 20H3v-3l3.5-3.5a2 2 0 0 1 0-3L14 3l1 1-7.3 7.3a1 1 0 0 0 0 1.4l3.6 3.6c.4.4 1 .4 1.4 0L20 9l1 1-7.6 7.6a2 2 0 0 1-2.8 0l-.1-.1Z" fill-rule="nonzero"/></svg>',plus:'<svg width="24" height="24"><path d="M12 4c.5 0 1 .4 1 .9V11h6a1 1 0 0 1 .1 2H13v6a1 1 0 0 1-2 .1V13H5a1 1 0 0 1-.1-2H11V5c0-.6.4-1 1-1Z"/></svg>',preferences:'<svg width="24" height="24"><path d="m20.1 13.5-1.9.2a5.8 5.8 0 0 1-.6 1.5l1.2 1.5c.4.4.3 1 0 1.4l-.7.7a1 1 0 0 1-1.4 0l-1.5-1.2a6.2 6.2 0 0 1-1.5.6l-.2 1.9c0 .5-.5.9-1 .9h-1a1 1 0 0 1-1-.9l-.2-1.9a5.8 5.8 0 0 1-1.5-.6l-1.5 1.2a1 1 0 0 1-1.4 0l-.7-.7a1 1 0 0 1 0-1.4l1.2-1.5a6.2 6.2 0 0 1-.6-1.5l-1.9-.2a1 1 0 0 1-.9-1v-1c0-.5.4-1 .9-1l1.9-.2a5.8 5.8 0 0 1 .6-1.5L5.2 7.3a1 1 0 0 1 0-1.4l.7-.7a1 1 0 0 1 1.4 0l1.5 1.2a6.2 6.2 0 0 1 1.5-.6l.2-1.9c0-.5.5-.9 1-.9h1c.5 0 1 .4 1 .9l.2 1.9a5.8 5.8 0 0 1 1.5.6l1.5-1.2a1 1 0 0 1 1.4 0l.7.7c.3.4.4 1 0 1.4l-1.2 1.5a6.2 6.2 0 0 1 .6 1.5l1.9.2c.5 0 .9.5.9 1v1c0 .5-.4 1-.9 1ZM12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" fill-rule="evenodd"/></svg>',preview:'<svg width="24" height="24"><path d="M3.5 12.5c.5.8 1.1 1.6 1.8 2.3 2 2 4.2 3.2 6.7 3.2s4.7-1.2 6.7-3.2a16.2 16.2 0 0 0 2.1-2.8 15.7 15.7 0 0 0-2.1-2.8c-2-2-4.2-3.2-6.7-3.2a9.3 9.3 0 0 0-6.7 3.2A16.2 16.2 0 0 0 3.2 12c0 .2.2.3.3.5Zm-2.4-1 .7-1.2L4 7.8C6.2 5.4 8.9 4 12 4c3 0 5.8 1.4 8.1 3.8a18.2 18.2 0 0 1 2.8 3.7v1l-.7 1.2-2.1 2.5c-2.3 2.4-5 3.8-8.1 3.8-3 0-5.8-1.4-8.1-3.8a18.2 18.2 0 0 1-2.8-3.7 1 1 0 0 1 0-1Zm12-3.3a2 2 0 1 0 2.7 2.6 4 4 0 1 1-2.6-2.6Z" fill-rule="nonzero"/></svg>',print:'<svg width="24" height="24"><path d="M18 8H6a3 3 0 0 0-3 3v6h2v3h14v-3h2v-6a3 3 0 0 0-3-3Zm-1 10H7v-4h10v4Zm.5-5c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5Zm.5-8H6v2h12V5Z" fill-rule="nonzero"/></svg>',quote:'<svg width="24" height="24"><path d="M7.5 17h.9c.4 0 .7-.2.9-.6L11 13V8c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v4c0 .6.4 1 1 1h2l-1.3 2.7a1 1 0 0 0 .8 1.3Zm8 0h.9c.4 0 .7-.2.9-.6L19 13V8c0-.6-.4-1-1-1h-4a1 1 0 0 0-1 1v4c0 .6.4 1 1 1h2l-1.3 2.7a1 1 0 0 0 .8 1.3Z" fill-rule="nonzero"/></svg>',redo:'<svg width="24" height="24"><path d="M17.6 10H12c-2.8 0-4.4 1.4-4.9 3.5-.4 2 .3 4 1.4 4.6a1 1 0 1 1-1 1.8c-2-1.2-2.9-4.1-2.3-6.8.6-3 3-5.1 6.8-5.1h5.6l-3.3-3.3a1 1 0 1 1 1.4-1.4l5 5a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4-1.4l3.3-3.3Z" fill-rule="nonzero"/></svg>',reload:'<svg width="24" height="24"><g fill-rule="nonzero"><path d="m5 22.1-1.2-4.7v-.2a1 1 0 0 1 1-1l5 .4a1 1 0 1 1-.2 2l-2.2-.2a7.8 7.8 0 0 0 8.4.2 7.5 7.5 0 0 0 3.5-6.4 1 1 0 1 1 2 0 9.5 9.5 0 0 1-4.5 8 9.9 9.9 0 0 1-10.2 0l.4 1.4a1 1 0 1 1-2 .5ZM13.6 7.4c0-.5.5-1 1-.9l2.8.2a8 8 0 0 0-9.5-1 7.5 7.5 0 0 0-3.6 7 1 1 0 0 1-2 0 9.5 9.5 0 0 1 4.5-8.6 10 10 0 0 1 10.9.3l-.3-1a1 1 0 0 1 2-.5l1.1 4.8a1 1 0 0 1-1 1.2l-5-.4a1 1 0 0 1-.9-1Z"/></g></svg>',"remove-formatting":'<svg width="24" height="24"><path d="M13.2 6a1 1 0 0 1 0 .2l-2.6 10a1 1 0 0 1-1 .8h-.2a.8.8 0 0 1-.8-1l2.6-10H8a1 1 0 1 1 0-2h9a1 1 0 0 1 0 2h-3.8ZM5 18h7a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Zm13 1.5L16.5 18 15 19.5a.7.7 0 0 1-1-1l1.5-1.5-1.5-1.5a.7.7 0 0 1 1-1l1.5 1.5 1.5-1.5a.7.7 0 0 1 1 1L17.5 17l1.5 1.5a.7.7 0 0 1-1 1Z" fill-rule="evenodd"/></svg>',remove:'<svg width="24" height="24"><path d="M16 7h3a1 1 0 0 1 0 2h-1v9a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9H5a1 1 0 1 1 0-2h3V6a3 3 0 0 1 3-3h2a3 3 0 0 1 3 3v1Zm-2 0V6c0-.6-.4-1-1-1h-2a1 1 0 0 0-1 1v1h4Zm2 2H8v9c0 .6.4 1 1 1h6c.6 0 1-.4 1-1V9Zm-7 3a1 1 0 0 1 2 0v4a1 1 0 0 1-2 0v-4Zm4 0a1 1 0 0 1 2 0v4a1 1 0 0 1-2 0v-4Z" fill-rule="nonzero"/></svg>',"resize-handle":'<svg width="10" height="10"><g fill-rule="nonzero"><path d="M8.1 1.1A.5.5 0 1 1 9 2l-7 7A.5.5 0 1 1 1 8l7-7ZM8.1 5.1A.5.5 0 1 1 9 6l-3 3A.5.5 0 1 1 5 8l3-3Z"/></g></svg>',resize:'<svg width="24" height="24"><path d="M4 5c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h6c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7a1 1 0 0 1-.7.3H7.4L18 16.6V13c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.2.3.4.3.7v6c0 .3-.1.5-.3.7a1 1 0 0 1-.7.3h-6a1 1 0 0 1-.7-.3 1 1 0 0 1-.3-.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h3.6L6 7.4V11c0 .3-.1.5-.3.7a1 1 0 0 1-.7.3 1 1 0 0 1-.7-.3A1 1 0 0 1 4 11V5Z" fill-rule="evenodd"/></svg>',"restore-draft":'<svg width="24" height="24"><g fill-rule="evenodd"><path d="M17 13c0 .6-.4 1-1 1h-4V8c0-.6.4-1 1-1s1 .4 1 1v4h2c.6 0 1 .4 1 1Z"/><path d="M4.7 10H9a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1V5a1 1 0 1 1 2 0v3l2.5-2.4a9.2 9.2 0 0 1 10.8-1.5A9 9 0 0 1 13.4 21c-2.4.1-4.7-.7-6.5-2.2a1 1 0 1 1 1.3-1.5 7.2 7.2 0 0 0 11.6-3.7 7 7 0 0 0-3.5-7.7A7.2 7.2 0 0 0 8 7L4.7 10Z" fill-rule="nonzero"/></g></svg>',"rotate-left":'<svg width="24" height="24"><path d="M4.7 10H9a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1V5a1 1 0 1 1 2 0v3l2.5-2.4a9.2 9.2 0 0 1 10.8-1.5A9 9 0 0 1 13.4 21c-2.4.1-4.7-.7-6.5-2.2a1 1 0 1 1 1.3-1.5 7.2 7.2 0 0 0 11.6-3.7 7 7 0 0 0-3.5-7.7A7.2 7.2 0 0 0 8 7L4.7 10Z" fill-rule="nonzero"/></svg>',"rotate-right":'<svg width="24" height="24"><path d="M20 8V5a1 1 0 0 1 2 0v6c0 .6-.4 1-1 1h-6a1 1 0 0 1 0-2h4.3L16 7A7.2 7.2 0 0 0 7.7 6a7 7 0 0 0 3 13.1c1.9.1 3.7-.5 5-1.7a1 1 0 0 1 1.4 1.5A9.2 9.2 0 0 1 2.2 14c-.9-3.9 1-8 4.5-9.9 3.5-1.9 8-1.3 10.8 1.5L20 8Z" fill-rule="nonzero"/></svg>',rtl:'<svg width="24" height="24"><path d="M8 5h8v2h-2v12h-2V7h-2v12H8v-7c-.5 0-1 0-1.4-.3A3.4 3.4 0 0 1 4.8 10a3.3 3.3 0 0 1 0-2.8 3.4 3.4 0 0 1 1.8-1.8L8 5Zm12 11.2a1 1 0 1 1-1 1.6l-3-2a1 1 0 0 1 0-1.6l3-2a1 1 0 1 1 1 1.6L18.4 15l1.8 1.2Z" fill-rule="evenodd"/></svg>',save:'<svg width="24" height="24"><path d="M5 16h14a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2Zm0 2v2h14v-2H5Zm10 0h2v2h-2v-2Zm-4-6.4L8.7 9.3a1 1 0 1 0-1.4 1.4l4 4c.4.4 1 .4 1.4 0l4-4a1 1 0 1 0-1.4-1.4L13 11.6V4a1 1 0 0 0-2 0v7.6Z" fill-rule="nonzero"/></svg>',search:'<svg width="24" height="24"><path d="M16 17.3a8 8 0 1 1 1.4-1.4l4.3 4.4a1 1 0 0 1-1.4 1.4l-4.4-4.3Zm-5-.3a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z" fill-rule="nonzero"/></svg>',"select-all":'<svg width="24" height="24"><path d="M3 5h2V3a2 2 0 0 0-2 2Zm0 8h2v-2H3v2Zm4 8h2v-2H7v2ZM3 9h2V7H3v2Zm10-6h-2v2h2V3Zm6 0v2h2a2 2 0 0 0-2-2ZM5 21v-2H3c0 1.1.9 2 2 2Zm-2-4h2v-2H3v2ZM9 3H7v2h2V3Zm2 18h2v-2h-2v2Zm8-8h2v-2h-2v2Zm0 8a2 2 0 0 0 2-2h-2v2Zm0-12h2V7h-2v2Zm0 8h2v-2h-2v2Zm-4 4h2v-2h-2v2Zm0-16h2V3h-2v2ZM7 17h10V7H7v10Zm2-8h6v6H9V9Z" fill-rule="nonzero"/></svg>',selected:'<svg width="24" height="24"><path fill-rule="nonzero" d="M6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm3.6 10.9L7 12.3a.7.7 0 0 0-1 1L9.6 17 18 8.6a.7.7 0 0 0 0-1 .7.7 0 0 0-1 0l-7.4 7.3Z"/></svg>',send:'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="m13.3 22 7-18.3-18.3 7L9 15l4.3 7ZM18 6.8l-.7-.7L9.4 14l.7.7L18 6.8Z"/></svg>',settings:'<svg width="24" height="24"><path d="M11 6h8c.6 0 1 .4 1 1s-.4 1-1 1h-8v.3c0 .2 0 .3-.2.5l-.6.2H7.8c-.3 0-.4 0-.6-.2a.7.7 0 0 1-.2-.6V8H5a1 1 0 1 1 0-2h2v-.3c0-.2 0-.3.2-.5l.5-.2h2.5c.3 0 .4 0 .6.2l.2.5V6ZM8 8h2V6H8v2Zm9 2.8v.2h2c.6 0 1 .4 1 1s-.4 1-1 1h-2v.3c0 .2 0 .3-.2.5l-.6.2h-2.4c-.3 0-.4 0-.6-.2a.7.7 0 0 1-.2-.6V13H5a1 1 0 0 1 0-2h8v-.3c0-.2 0-.3.2-.5l.6-.2h2.4c.3 0 .4 0 .6.2l.2.6ZM14 13h2v-2h-2v2Zm-3 2.8v.2h8c.6 0 1 .4 1 1s-.4 1-1 1h-8v.3c0 .2 0 .3-.2.5l-.6.2H7.8c-.3 0-.4 0-.6-.2a.7.7 0 0 1-.2-.6V18H5a1 1 0 0 1 0-2h2v-.3c0-.2 0-.3.2-.5l.5-.2h2.5c.3 0 .4 0 .6.2l.2.6ZM8 18h2v-2H8v2Z" fill-rule="evenodd"/></svg>',sharpen:'<svg width="24" height="24"><path d="m16 6 4 4-8 9-8-9 4-4h8Zm-4 10.2 5.5-6.2-.1-.1H12v-.3h5.1l-.2-.2H12V9h4.6l-.2-.2H12v-.3h4.1l-.2-.2H12V8h3.6l-.2-.2H8.7L6.5 10l.1.1H12v.3H6.9l.2.2H12v.3H7.3l.2.2H12v.3H7.7l.3.2h4v.3H8.2l.2.2H12v.3H8.6l.3.2H12v.3H9l.3.2H12v.3H9.5l.2.2H12v.3h-2l.2.2H12v.3h-1.6l.2.2H12v.3h-1.1l.2.2h.9v.3h-.7l.2.2h.5v.3h-.3l.3.2Z" fill-rule="evenodd"/></svg>',sourcecode:'<svg width="24" height="24"><g fill-rule="nonzero"><path d="M9.8 15.7c.3.3.3.8 0 1-.3.4-.9.4-1.2 0l-4.4-4.1a.8.8 0 0 1 0-1.2l4.4-4.2c.3-.3.9-.3 1.2 0 .3.3.3.8 0 1.1L6 12l3.8 3.7ZM14.2 15.7c-.3.3-.3.8 0 1 .4.4.9.4 1.2 0l4.4-4.1c.3-.3.3-.9 0-1.2l-4.4-4.2a.8.8 0 0 0-1.2 0c-.3.3-.3.8 0 1.1L18 12l-3.8 3.7Z"/></g></svg>',"spell-check":'<svg width="24" height="24"><path d="M6 8v3H5V5c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h2c.3 0 .5.1.7.3.2.2.3.4.3.7v6H8V8H6Zm0-3v2h2V5H6Zm13 0h-3v5h3v1h-3a1 1 0 0 1-.7-.3 1 1 0 0 1-.3-.7V5c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3h3v1Zm-5 1.5-.1.7c-.1.2-.3.3-.6.3.3 0 .5.1.6.3l.1.7V10c0 .3-.1.5-.3.7a1 1 0 0 1-.7.3h-3V4h3c.3 0 .5.1.7.3.2.2.3.4.3.7v1.5ZM13 10V8h-2v2h2Zm0-3V5h-2v2h2Zm3 5 1 1-6.5 7L7 15.5l1.3-1 2.2 2.2L16 12Z" fill-rule="evenodd"/></svg>',"strike-through":'<svg width="24" height="24"><g fill-rule="evenodd"><path d="M15.6 8.5c-.5-.7-1-1.1-1.3-1.3-.6-.4-1.3-.6-2-.6-2.7 0-2.8 1.7-2.8 2.1 0 1.6 1.8 2 3.2 2.3 4.4.9 4.6 2.8 4.6 3.9 0 1.4-.7 4.1-5 4.1A6.2 6.2 0 0 1 7 16.4l1.5-1.1c.4.6 1.6 2 3.7 2 1.6 0 2.5-.4 3-1.2.4-.8.3-2-.8-2.6-.7-.4-1.6-.7-2.9-1-1-.2-3.9-.8-3.9-3.6C7.6 6 10.3 5 12.4 5c2.9 0 4.2 1.6 4.7 2.4l-1.5 1.1Z"/><path d="M5 11h14a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2Z" fill-rule="nonzero"/></g></svg>',subscript:'<svg width="24" height="24"><path d="m10.4 10 4.6 4.6-1.4 1.4L9 11.4 4.4 16 3 14.6 7.6 10 3 5.4 4.4 4 9 8.6 13.6 4 15 5.4 10.4 10ZM21 19h-5v-1l1-.8 1.7-1.6c.3-.4.5-.8.5-1.2 0-.3 0-.6-.2-.7-.2-.2-.5-.3-.9-.3a2 2 0 0 0-.8.2l-.7.3-.4-1.1 1-.6 1.2-.2c.8 0 1.4.3 1.8.7.4.4.6.9.6 1.5s-.2 1.1-.5 1.6a8 8 0 0 1-1.3 1.3l-.6.6h2.6V19Z" fill-rule="nonzero"/></svg>',superscript:'<svg width="24" height="24"><path d="M15 9.4 10.4 14l4.6 4.6-1.4 1.4L9 15.4 4.4 20 3 18.6 7.6 14 3 9.4 4.4 8 9 12.6 13.6 8 15 9.4Zm5.9 1.6h-5v-1l1-.8 1.7-1.6c.3-.5.5-.9.5-1.3 0-.3 0-.5-.2-.7-.2-.2-.5-.3-.9-.3l-.8.2-.7.4-.4-1.2c.2-.2.5-.4 1-.5.3-.2.8-.2 1.2-.2.8 0 1.4.2 1.8.6.4.4.6 1 .6 1.6 0 .5-.2 1-.5 1.5l-1.3 1.4-.6.5h2.6V11Z" fill-rule="nonzero"/></svg>',"table-caption":'<svg width="24" height="24"><g fill-rule="nonzero"><rect width="12" height="2" x="3" y="4" rx="1"/><path d="M19 8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2h14ZM5 15v3h6v-3H5Zm14 0h-6v3h6v-3Zm0-5h-6v3h6v-3ZM5 13h6v-3H5v3Z"/></g></svg>',"table-cell-classes":'<svg width="24" height="24"><g fill-rule="evenodd"><path fill-rule="nonzero" d="M13 4v9H3V6c0-1.1.9-2 2-2h8Zm-2 2H5v5h6V6Z"/><path fill-rule="nonzero" d="M13 4h6a2 2 0 0 1 2 2v7h-8v-2h6V6h-6V4Z" opacity=".2"/><path d="m18 20-2.6 1.6.7-3-2.4-2 3.1-.2 1.2-2.9 1.2 2.9 3.1.2-2.4 2 .7 3z"/><path fill-rule="nonzero" d="M3 13v5c0 1.1.9 2 2 2h8v-7h-2v5H5v-5H3Z" opacity=".2"/></g></svg>',"table-cell-properties":'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm-8 9H5v5h6v-5Zm8 0h-6v5h6v-5Zm-8-7H5v5h6V6Z"/></svg>',"table-cell-select-all":'<svg width="24" height="24"><g fill-rule="evenodd"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm0 2H5v12h14V6Z"/><path d="M13 6v5h6v2h-6v5h-2v-5H5v-2h6V6h2Z" opacity=".2"/></g></svg>',"table-cell-select-inner":'<svg width="24" height="24"><g fill-rule="evenodd"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm0 2H5v12h14V6Z" opacity=".2"/><path d="M13 6v5h6v2h-6v5h-2v-5H5v-2h6V6h2Z"/></g></svg>',"table-classes":'<svg width="24" height="24"><g fill-rule="evenodd"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v7h-8v7H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm-8 9H5v5h6v-5Zm8-7h-6v5h6V6Zm-8 0H5v5h6V6Z"/><path d="m18 20-2.6 1.6.7-3-2.4-2 3.1-.2 1.2-2.9 1.2 2.9 3.1.2-2.4 2 .7 3z"/></g></svg>',"table-delete-column":'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm-4 4h-2V6h-2v2H9V6H5v12h4v-2h2v2h2v-2h2v2h4V6h-4v2Zm.3.5 1 1.2-3 2.3 3 2.3-1 1.2L12 13l-3.3 2.6-1-1.2 3-2.3-3-2.3 1-1.2L12 11l3.3-2.5Z"/></svg>',"table-delete-row":'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm0 2H5v3h2.5v2H5v2h2.5v2H5v3h14v-3h-2.5v-2H19v-2h-2.5V9H19V6Zm-4.7 1.8 1.2 1L13 12l2.6 3.3-1.2 1-2.3-3-2.3 3-1.2-1L11 12 8.5 8.7l1.2-1 2.3 3 2.3-3Z"/></svg>',"table-delete-table":'<svg width="24" height="24"><g fill-rule="nonzero"><path d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14ZM5 6v12h14V6H5Z"/><path d="m14.4 8.6 1.1 1-2.4 2.4 2.4 2.4-1.1 1.1-2.4-2.4-2.4 2.4-1-1.1 2.3-2.4-2.3-2.4 1-1 2.4 2.3z"/></g></svg>',"table-insert-column-after":'<svg width="24" height="24"><path fill-rule="nonzero" d="M20 4c.6 0 1 .4 1 1v2a1 1 0 0 1-2 0V6h-8v12h8v-1a1 1 0 0 1 2 0v2c0 .5-.4 1-.9 1H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h15ZM9 13H5v5h4v-5Zm7-5c.5 0 1 .4 1 .9V11h2a1 1 0 0 1 .1 2H17v2a1 1 0 0 1-2 .1V13h-2a1 1 0 0 1-.1-2H15V9c0-.6.4-1 1-1ZM9 6H5v5h4V6Z"/></svg>',"table-insert-column-before":'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a1 1 0 0 1-1-1v-2a1 1 0 0 1 2 0v1h8V6H5v1a1 1 0 1 1-2 0V5c0-.6.4-1 1-1h15Zm0 9h-4v5h4v-5ZM8 8c.5 0 1 .4 1 .9V11h2a1 1 0 0 1 .1 2H9v2a1 1 0 0 1-2 .1V13H5a1 1 0 0 1-.1-2H7V9c0-.6.4-1 1-1Zm11-2h-4v5h4V6Z"/></svg>',"table-insert-row-above":'<svg width="24" height="24"><path fill-rule="nonzero" d="M6 4a1 1 0 1 1 0 2H5v6h14V6h-1a1 1 0 0 1 0-2h2c.6 0 1 .4 1 1v13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-.6.4-1 1-1h2Zm5 10H5v4h6v-4Zm8 0h-6v4h6v-4ZM12 3c.5 0 1 .4 1 .9V6h2a1 1 0 0 1 0 2h-2v2a1 1 0 0 1-2 .1V8H9a1 1 0 0 1 0-2h2V4c0-.6.4-1 1-1Z"/></svg>',"table-insert-row-after":'<svg width="24" height="24"><path fill-rule="nonzero" d="M12 13c.5 0 1 .4 1 .9V16h2a1 1 0 0 1 .1 2H13v2a1 1 0 0 1-2 .1V18H9a1 1 0 0 1-.1-2H11v-2c0-.6.4-1 1-1Zm6 7a1 1 0 0 1 0-2h1v-6H5v6h1a1 1 0 0 1 0 2H4a1 1 0 0 1-1-1V6c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v13c0 .5-.4 1-.9 1H18ZM11 6H5v4h6V6Zm8 0h-6v4h6V6Z"/></svg>',"table-left-header":'<svg width="24" height="24"><path d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm0 9h-4v5h4v-5Zm-6 0H9v5h4v-5Zm0-7H9v5h4V6Zm6 0h-4v5h4V6Z"/></svg>',"table-merge-cells":'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14ZM5 15.5V18h3v-2.5H5Zm14-5h-9V18h9v-7.5ZM19 6h-4v2.5h4V6ZM8 6H5v2.5h3V6Zm5 0h-3v2.5h3V6Zm-8 7.5h3v-3H5v3Z"/></svg>',"table-row-numbering-rtl":'<svg width="24" height="24"><path d="M6 4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6Zm0 12h8v3H6v-3Zm11 0c.6 0 1 .4 1 1v1a1 1 0 0 1-2 0v-1c0-.6.4-1 1-1ZM6 11h8v3H6v-3Zm11 0c.6 0 1 .4 1 1v1a1 1 0 0 1-2 0v-1c0-.6.4-1 1-1ZM6 6h8v3H6V6Zm11 0c.6 0 1 .4 1 1v1a1 1 0 1 1-2 0V7c0-.6.4-1 1-1Z"/></svg>',"table-row-numbering":'<svg width="24" height="24"><path d="M18 4a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h12Zm0 12h-8v3h8v-3ZM7 16a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1c0-.6-.4-1-1-1Zm11-5h-8v3h8v-3ZM7 11a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1c0-.6-.4-1-1-1Zm11-5h-8v3h8V6ZM7 6a1 1 0 0 0-1 1v1a1 1 0 1 0 2 0V7c0-.6-.4-1-1-1Z"/></svg>',"table-row-properties":'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14ZM5 15v3h6v-3H5Zm14 0h-6v3h6v-3Zm0-9h-6v3h6V6ZM5 9h6V6H5v3Z"/></svg>',"table-split-cells":'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14ZM8 15.5H5V18h3v-2.5Zm11-5h-9V18h9v-7.5Zm-2.5 1 1 1-2 2 2 2-1 1-2-2-2 2-1-1 2-2-2-2 1-1 2 2 2-2Zm-8.5-1H5v3h3v-3ZM19 6h-4v2.5h4V6ZM8 6H5v2.5h3V6Zm5 0h-3v2.5h3V6Z"/></svg>',"table-top-header":'<svg width="24" height="24"><path d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14Zm-8 11H5v3h6v-3Zm8 0h-6v3h6v-3Zm0-5h-6v3h6v-3ZM5 13h6v-3H5v3Z"/></svg>',table:'<svg width="24" height="24"><path fill-rule="nonzero" d="M19 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14ZM5 14v4h6v-4H5Zm14 0h-6v4h6v-4Zm0-6h-6v4h6V8ZM5 12h6V8H5v4Z"/></svg>',"template-add":'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 12v4H5a2 2 0 0 0-2 2v3h9.3a6 6 0 0 1-.3-2H5v-1h7a6 6 0 0 1 .8-2H11v-5l-.8-.6a3 3 0 1 1 3.6 0l-.8.6v4.7a6 6 0 0 1 2-1.9V12a5 5 0 1 0-6 0Z"/><path d="M18 15c.5 0 1 .4 1 .9V18h2a1 1 0 0 1 .1 2H19v2a1 1 0 0 1-2 .1V20h-2a1 1 0 0 1-.1-2H17v-2c0-.6.4-1 1-1Z"/></svg>',template:'<svg width="24" height="24"><path d="M19 19v-1H5v1h14ZM9 16v-4a5 5 0 1 1 6 0v4h4a2 2 0 0 1 2 2v3H3v-3c0-1.1.9-2 2-2h4Zm4 0v-5l.8-.6a3 3 0 1 0-3.6 0l.8.6v5h2Z" fill-rule="nonzero"/></svg>',"temporary-placeholder":'<svg width="24" height="24"><g fill-rule="evenodd"><path d="M9 7.6V6h2.5V4.5a.5.5 0 1 1 1 0V6H15v1.6a8 8 0 1 1-6 0Zm-2.6 5.3a.5.5 0 0 0 .3.6c.3 0 .6 0 .6-.3l.1-.2a5 5 0 0 1 3.3-2.8c.3-.1.4-.4.4-.6-.1-.3-.4-.5-.6-.4a6 6 0 0 0-4.1 3.7Z"/><circle cx="14" cy="4" r="1"/><circle cx="12" cy="2" r="1"/><circle cx="10" cy="4" r="1"/></g></svg>',"text-color":'<svg width="24" height="24"><g fill-rule="evenodd"><path class="tox-icon-text-color__color" d="M3 18h18v3H3z"/><path d="M8.7 16h-.8a.5.5 0 0 1-.5-.6l2.7-9c.1-.3.3-.4.5-.4h2.8c.2 0 .4.1.5.4l2.7 9a.5.5 0 0 1-.5.6h-.8a.5.5 0 0 1-.4-.4l-.7-2.2c0-.3-.3-.4-.5-.4h-3.4c-.2 0-.4.1-.5.4l-.7 2.2c0 .3-.2.4-.4.4Zm2.6-7.6-.6 2a.5.5 0 0 0 .5.6h1.6a.5.5 0 0 0 .5-.6l-.6-2c0-.3-.3-.4-.5-.4h-.4c-.2 0-.4.1-.5.4Z"/></g></svg>',"text-size-decrease":'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 5a1 1 0 1 1 0 2h-4v11a1 1 0 1 1-2 0V7H4a1 1 0 0 1 0-2h10ZM14 12a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Z"/></svg>',"text-size-increase":'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 5a1 1 0 1 1 0 2h-4v11a1 1 0 1 1-2 0V7H4a1 1 0 0 1 0-2h10ZM17 9a1 1 0 0 0-1 1v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2v-2c0-.6-.4-1-1-1Z"/></svg>',toc:'<svg width="24" height="24"><path d="M5 5c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 1 1 0-2Zm3 0h11c.6 0 1 .4 1 1s-.4 1-1 1H8a1 1 0 1 1 0-2Zm-3 8c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1 0-2Zm3 0h11c.6 0 1 .4 1 1s-.4 1-1 1H8a1 1 0 0 1 0-2Zm0-4c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 1 1 0-2Zm3 0h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm-3 8c.6 0 1 .4 1 1s-.4 1-1 1a1 1 0 0 1 0-2Zm3 0h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Z" fill-rule="evenodd"/></svg>',translate:'<svg width="24" height="24"><path d="m12.7 14.3-.3.7-.4.7-2.2-2.2-3.1 3c-.3.4-.8.4-1 0a.7.7 0 0 1 0-1l3.1-3A12.4 12.4 0 0 1 6.7 9H8a10.1 10.1 0 0 0 1.7 2.4c.5-.5 1-1.1 1.4-1.8l.9-2H4.7a.7.7 0 1 1 0-1.5h4.4v-.7c0-.4.3-.8.7-.8.4 0 .7.4.7.8v.7H15c.4 0 .8.3.8.7 0 .4-.4.8-.8.8h-1.4a12.3 12.3 0 0 1-1 2.4 13.5 13.5 0 0 1-1.7 2.3l1.9 1.8Zm4.3-3 2.7 7.3a.5.5 0 0 1-.4.7 1 1 0 0 1-1-.7l-.6-1.5h-3.4l-.6 1.5a1 1 0 0 1-1 .7.5.5 0 0 1-.4-.7l2.7-7.4a1 1 0 0 1 2 0Zm-2.2 4.4h2.4L16 12.5l-1.2 3.2Z" fill-rule="evenodd"/></svg>',typography:'<svg width="24" height="24"><path fill-rule="evenodd" clip-rule="evenodd" d="M17 5a1 1 0 1 1 0 2h-4v11a1 1 0 1 1-2 0V7H7a1 1 0 0 1 0-2h10Z"/><path d="m17.5 14 .8-1.7 1.7-.8-1.7-.8-.8-1.7-.8 1.7-1.7.8 1.7.8.8 1.7ZM7 14l1 2 2 1-2 1-1 2-1-2-2-1 2-1 1-2Z"/></svg>',underline:'<svg width="24" height="24"><path d="M16 5c.6 0 1 .4 1 1v5.5a4 4 0 0 1-.4 1.8l-1 1.4a5.3 5.3 0 0 1-5.5 1 5 5 0 0 1-1.6-1c-.5-.4-.8-.9-1.1-1.4a4 4 0 0 1-.4-1.8V6c0-.6.4-1 1-1s1 .4 1 1v5.5c0 .3 0 .6.2 1l.6.7a3.3 3.3 0 0 0 2.2.8 3.4 3.4 0 0 0 2.2-.8c.3-.2.4-.5.6-.8l.2-.9V6c0-.6.4-1 1-1ZM8 17h8c.6 0 1 .4 1 1s-.4 1-1 1H8a1 1 0 0 1 0-2Z" fill-rule="evenodd"/></svg>',undo:'<svg width="24" height="24"><path d="M6.4 8H12c3.7 0 6.2 2 6.8 5.1.6 2.7-.4 5.6-2.3 6.8a1 1 0 0 1-1-1.8c1.1-.6 1.8-2.7 1.4-4.6-.5-2.1-2.1-3.5-4.9-3.5H6.4l3.3 3.3a1 1 0 1 1-1.4 1.4l-5-5a1 1 0 0 1 0-1.4l5-5a1 1 0 0 1 1.4 1.4L6.4 8Z" fill-rule="nonzero"/></svg>',unlink:'<svg width="24" height="24"><path d="M6.2 12.3a1 1 0 0 1 1.4 1.4l-2 2a2 2 0 1 0 2.6 2.8l4.8-4.8a1 1 0 0 0 0-1.4 1 1 0 1 1 1.4-1.3 2.9 2.9 0 0 1 0 4L9.6 20a3.9 3.9 0 0 1-5.5-5.5l2-2Zm11.6-.6a1 1 0 0 1-1.4-1.4l2.1-2a2 2 0 1 0-2.7-2.8L11 10.3a1 1 0 0 0 0 1.4A1 1 0 1 1 9.6 13a2.9 2.9 0 0 1 0-4L14.4 4a3.9 3.9 0 0 1 5.5 5.5l-2 2ZM7.6 6.3a.8.8 0 0 1-1 1.1L3.3 4.2a.7.7 0 1 1 1-1l3.2 3.1ZM5.1 8.6a.8.8 0 0 1 0 1.5H3a.8.8 0 0 1 0-1.5H5Zm5-3.5a.8.8 0 0 1-1.5 0V3a.8.8 0 0 1 1.5 0V5Zm6 11.8a.8.8 0 0 1 1-1l3.2 3.2a.8.8 0 0 1-1 1L16 17Zm-2.2 2a.8.8 0 0 1 1.5 0V21a.8.8 0 0 1-1.5 0V19Zm5-3.5a.7.7 0 1 1 0-1.5H21a.8.8 0 0 1 0 1.5H19Z" fill-rule="nonzero"/></svg>',unlock:'<svg width="24" height="24"><path d="M16 5c.8 0 1.5.3 2.1.9.6.6.9 1.3.9 2.1v3h-2V8a1 1 0 0 0-.3-.7A1 1 0 0 0 16 7h-2a1 1 0 0 0-.7.3 1 1 0 0 0-.3.7v3h.3c.2 0 .3 0 .5.2l.2.6v7.4c0 .3 0 .4-.2.6l-.6.2H4.8c-.3 0-.4 0-.6-.2a.7.7 0 0 1-.2-.6v-7.4c0-.3 0-.4.2-.6l.5-.2H11V8c0-.8.3-1.5.9-2.1.6-.6 1.3-.9 2.1-.9h2Z" fill-rule="evenodd"/></svg>',"unordered-list":'<svg width="24" height="24"><path d="M11 5h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm0 6h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2Zm0 6h8c.6 0 1 .4 1 1s-.4 1-1 1h-8a1 1 0 0 1 0-2ZM4.5 6c0-.4.1-.8.4-1 .3-.4.7-.5 1.1-.5.4 0 .8.1 1 .4.4.3.5.7.5 1.1 0 .4-.1.8-.4 1-.3.4-.7.5-1.1.5-.4 0-.8-.1-1-.4-.4-.3-.5-.7-.5-1.1Zm0 6c0-.4.1-.8.4-1 .3-.4.7-.5 1.1-.5.4 0 .8.1 1 .4.4.3.5.7.5 1.1 0 .4-.1.8-.4 1-.3.4-.7.5-1.1.5-.4 0-.8-.1-1-.4-.4-.3-.5-.7-.5-1.1Zm0 6c0-.4.1-.8.4-1 .3-.4.7-.5 1.1-.5.4 0 .8.1 1 .4.4.3.5.7.5 1.1 0 .4-.1.8-.4 1-.3.4-.7.5-1.1.5-.4 0-.8-.1-1-.4-.4-.3-.5-.7-.5-1.1Z" fill-rule="evenodd"/></svg>',unselected:'<svg width="24" height="24"><path fill-rule="nonzero" d="M6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm0 1a1 1 0 0 0-1 1v12c0 .6.4 1 1 1h12c.6 0 1-.4 1-1V6c0-.6-.4-1-1-1H6Z"/></svg>',upload:'<svg width="24" height="24"><path d="M18 19v-2a1 1 0 0 1 2 0v3c0 .6-.4 1-1 1H5a1 1 0 0 1-1-1v-3a1 1 0 0 1 2 0v2h12ZM11 6.4 8.7 8.7a1 1 0 0 1-1.4-1.4l4-4a1 1 0 0 1 1.4 0l4 4a1 1 0 1 1-1.4 1.4L13 6.4V16a1 1 0 0 1-2 0V6.4Z" fill-rule="nonzero"/></svg>',user:'<svg width="24" height="24"><path d="M12 24a12 12 0 1 1 0-24 12 12 0 0 1 0 24Zm-8.7-5.3a11 11 0 0 0 17.4 0C19.4 16.3 14.6 15 12 15c-2.6 0-7.4 1.3-8.7 3.7ZM12 13c2.2 0 4-2 4-4.5S14.2 4 12 4 8 6 8 8.5 9.8 13 12 13Z" fill-rule="nonzero"/></svg>',"vertical-align":'<svg width="24" height="24"><g fill-rule="nonzero"><rect width="18" height="2" x="3" y="11" rx="1"/><path d="M12 2c.6 0 1 .4 1 1v4l2-1.3a1 1 0 0 1 1.2 1.5l-.1.1-4.1 3-4-3a1 1 0 0 1 1-1.7l2 1.5V3c0-.6.4-1 1-1zm0 11.8 4 2.9a1 1 0 0 1-1 1.7l-2-1.5V21c0 .5-.4 1-.9 1H12a1 1 0 0 1-1-1v-4l-2 1.3a1 1 0 0 1-1.2-.1l-.1-.1a1 1 0 0 1 .1-1.3l.1-.1 4.1-3z"/></g></svg>',visualblocks:'<svg width="24" height="24"><path d="M9 19v2H7v-2h2Zm-4 0v2a2 2 0 0 1-2-2h2Zm8 0v2h-2v-2h2Zm8 0a2 2 0 0 1-2 2v-2h2Zm-4 0v2h-2v-2h2ZM15 7a1 1 0 0 1 0 2v7a1 1 0 0 1-2 0V9h-1v7a1 1 0 0 1-2 0v-4a2.5 2.5 0 0 1-.2-5H15ZM5 15v2H3v-2h2Zm16 0v2h-2v-2h2ZM5 11v2H3v-2h2Zm16 0v2h-2v-2h2ZM5 7v2H3V7h2Zm16 0v2h-2V7h2ZM5 3v2H3c0-1.1.9-2 2-2Zm8 0v2h-2V3h2Zm6 0a2 2 0 0 1 2 2h-2V3ZM9 3v2H7V3h2Zm8 0v2h-2V3h2Z" fill-rule="evenodd"/></svg>',visualchars:'<svg width="24" height="24"><path d="M10 5h7a1 1 0 0 1 0 2h-1v11a1 1 0 0 1-2 0V7h-2v11a1 1 0 0 1-2 0v-6c-.5 0-1 0-1.4-.3A3.4 3.4 0 0 1 6.8 10a3.3 3.3 0 0 1 0-2.8 3.4 3.4 0 0 1 1.8-1.8L10 5Z" fill-rule="evenodd"/></svg>',warning:'<svg width="24" height="24"><path d="M19.8 18.3c.2.5.3.9 0 1.2-.1.3-.5.5-1 .5H5.2c-.5 0-.9-.2-1-.5-.3-.3-.2-.7 0-1.2L11 4.7l.5-.5.5-.2c.2 0 .3 0 .5.2.2 0 .3.3.5.5l6.8 13.6ZM12 18c.3 0 .5-.1.7-.3.2-.2.3-.4.3-.7a1 1 0 0 0-.3-.7 1 1 0 0 0-.7-.3 1 1 0 0 0-.7.3 1 1 0 0 0-.3.7c0 .3.1.5.3.7.2.2.4.3.7.3Zm.7-3 .3-4a1 1 0 0 0-.3-.7 1 1 0 0 0-.7-.3 1 1 0 0 0-.7.3 1 1 0 0 0-.3.7l.3 4h1.4Z" fill-rule="evenodd"/></svg>',"zoom-in":'<svg width="24" height="24"><path d="M16 17.3a8 8 0 1 1 1.4-1.4l4.3 4.4a1 1 0 0 1-1.4 1.4l-4.4-4.3Zm-5-.3a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm-1-9a1 1 0 0 1 2 0v6a1 1 0 0 1-2 0V8Zm-2 4a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2H8Z" fill-rule="nonzero"/></svg>',"zoom-out":'<svg width="24" height="24"><path d="M16 17.3a8 8 0 1 1 1.4-1.4l4.3 4.4a1 1 0 0 1-1.4 1.4l-4.4-4.3Zm-5-.3a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm-3-5a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2H8Z" fill-rule="nonzero"/></svg>'}});admin/assets/vendor/tinymce/js/tinymce/models/dom/model.min.js000064400000274631151213255230020465 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";var e=tinymce.util.Tools.resolve("tinymce.ModelManager");const t=e=>t=>(e=>{const t=typeof e;return null===e?"null":"object"===t&&Array.isArray(e)?"array":"object"===t&&(o=n=e,(r=String).prototype.isPrototypeOf(o)||(null===(s=n.constructor)||void 0===s?void 0:s.name)===r.name)?"string":t;var o,n,r,s})(t)===e,o=e=>t=>typeof t===e,n=e=>t=>e===t,r=t("string"),s=t("object"),l=t("array"),a=n(null),c=o("boolean"),i=n(void 0),m=e=>!(e=>null==e)(e),d=o("function"),u=o("number"),f=()=>{},g=e=>()=>e,h=e=>e,p=(e,t)=>e===t;function w(e,...t){return(...o)=>{const n=t.concat(o);return e.apply(null,n)}}const b=e=>t=>!e(t),v=e=>e(),y=g(!1),x=g(!0);class C{constructor(e,t){this.tag=e,this.value=t}static some(e){return new C(!0,e)}static none(){return C.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?C.some(e(this.value)):C.none()}bind(e){return this.tag?e(this.value):C.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:C.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return m(e)?C.some(e):C.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}C.singletonNone=new C(!1);const S=Array.prototype.slice,T=Array.prototype.indexOf,R=Array.prototype.push,D=(e,t)=>{return o=e,n=t,T.call(o,n)>-1;var o,n},O=(e,t)=>{for(let o=0,n=e.length;o<n;o++)if(t(e[o],o))return!0;return!1},k=(e,t)=>{const o=[];for(let n=0;n<e;n++)o.push(t(n));return o},E=(e,t)=>{const o=e.length,n=new Array(o);for(let r=0;r<o;r++){const o=e[r];n[r]=t(o,r)}return n},N=(e,t)=>{for(let o=0,n=e.length;o<n;o++)t(e[o],o)},B=(e,t)=>{const o=[],n=[];for(let r=0,s=e.length;r<s;r++){const s=e[r];(t(s,r)?o:n).push(s)}return{pass:o,fail:n}},_=(e,t)=>{const o=[];for(let n=0,r=e.length;n<r;n++){const r=e[n];t(r,n)&&o.push(r)}return o},z=(e,t,o)=>(((e,t)=>{for(let o=e.length-1;o>=0;o--)t(e[o],o)})(e,((e,n)=>{o=t(o,e,n)})),o),A=(e,t,o)=>(N(e,((e,n)=>{o=t(o,e,n)})),o),L=(e,t)=>((e,t,o)=>{for(let n=0,r=e.length;n<r;n++){const r=e[n];if(t(r,n))return C.some(r);if(o(r,n))break}return C.none()})(e,t,y),W=(e,t)=>{for(let o=0,n=e.length;o<n;o++)if(t(e[o],o))return C.some(o);return C.none()},M=e=>{const t=[];for(let o=0,n=e.length;o<n;++o){if(!l(e[o]))throw new Error("Arr.flatten item "+o+" was not an array, input: "+e);R.apply(t,e[o])}return t},j=(e,t)=>M(E(e,t)),P=(e,t)=>{for(let o=0,n=e.length;o<n;++o)if(!0!==t(e[o],o))return!1;return!0},I=(e,t)=>{const o={};for(let n=0,r=e.length;n<r;n++){const r=e[n];o[String(r)]=t(r,n)}return o},F=(e,t)=>t>=0&&t<e.length?C.some(e[t]):C.none(),H=e=>F(e,0),$=e=>F(e,e.length-1),V=(e,t)=>{for(let o=0;o<e.length;o++){const n=t(e[o],o);if(n.isSome())return n}return C.none()},q=Object.keys,U=Object.hasOwnProperty,G=(e,t)=>{const o=q(e);for(let n=0,r=o.length;n<r;n++){const r=o[n];t(e[r],r)}},K=(e,t)=>Y(e,((e,o)=>({k:o,v:t(e,o)}))),Y=(e,t)=>{const o={};return G(e,((e,n)=>{const r=t(e,n);o[r.k]=r.v})),o},J=(e,t)=>{const o=[];return G(e,((e,n)=>{o.push(t(e,n))})),o},Q=e=>J(e,h),X=(e,t)=>U.call(e,t),Z="undefined"!=typeof window?window:Function("return this;")(),ee=(e,t)=>((e,t)=>{let o=null!=t?t:Z;for(let t=0;t<e.length&&null!=o;++t)o=o[e[t]];return o})(e.split("."),t),te=Object.getPrototypeOf,oe=e=>{const t=ee("ownerDocument.defaultView",e);return s(e)&&((e=>((e,t)=>{const o=((e,t)=>ee(e,t))(e,t);if(null==o)throw new Error(e+" not available on this browser");return o})("HTMLElement",e))(t).prototype.isPrototypeOf(e)||/^HTML\w*Element$/.test(te(e).constructor.name))},ne=e=>e.dom.nodeName.toLowerCase(),re=e=>e.dom.nodeType,se=e=>t=>re(t)===e,le=e=>8===re(e)||"#comment"===ne(e),ae=e=>ce(e)&&oe(e.dom),ce=se(1),ie=se(3),me=se(9),de=se(11),ue=e=>t=>ce(t)&&ne(t)===e,fe=(e,t,o)=>{if(!(r(o)||c(o)||u(o)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",o,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,o+"")},ge=(e,t,o)=>{fe(e.dom,t,o)},he=(e,t)=>{const o=e.dom;G(t,((e,t)=>{fe(o,t,e)}))},pe=(e,t)=>{const o=e.dom.getAttribute(t);return null===o?void 0:o},we=(e,t)=>C.from(pe(e,t)),be=(e,t)=>{e.dom.removeAttribute(t)},ve=e=>A(e.dom.attributes,((e,t)=>(e[t.name]=t.value,e)),{}),ye=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},xe={fromHtml:(e,t)=>{const o=(t||document).createElement("div");if(o.innerHTML=e,!o.hasChildNodes()||o.childNodes.length>1){const t="HTML does not have a single root node";throw console.error(t,e),new Error(t)}return ye(o.childNodes[0])},fromTag:(e,t)=>{const o=(t||document).createElement(e);return ye(o)},fromText:(e,t)=>{const o=(t||document).createTextNode(e);return ye(o)},fromDom:ye,fromPoint:(e,t,o)=>C.from(e.dom.elementFromPoint(t,o)).map(ye)},Ce=(e,t)=>{const o=e.dom;if(1!==o.nodeType)return!1;{const e=o;if(void 0!==e.matches)return e.matches(t);if(void 0!==e.msMatchesSelector)return e.msMatchesSelector(t);if(void 0!==e.webkitMatchesSelector)return e.webkitMatchesSelector(t);if(void 0!==e.mozMatchesSelector)return e.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")}},Se=e=>1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType||0===e.childElementCount,Te=(e,t)=>{const o=void 0===t?document:t.dom;return Se(o)?C.none():C.from(o.querySelector(e)).map(xe.fromDom)},Re=(e,t)=>e.dom===t.dom,De=(e,t)=>{const o=e.dom,n=t.dom;return o!==n&&o.contains(n)},Oe=Ce,ke=e=>xe.fromDom(e.dom.ownerDocument),Ee=e=>me(e)?e:ke(e),Ne=e=>C.from(e.dom.parentNode).map(xe.fromDom),Be=e=>C.from(e.dom.parentElement).map(xe.fromDom),_e=(e,t)=>{const o=d(t)?t:y;let n=e.dom;const r=[];for(;null!==n.parentNode&&void 0!==n.parentNode;){const e=n.parentNode,t=xe.fromDom(e);if(r.push(t),!0===o(t))break;n=e}return r},ze=e=>C.from(e.dom.previousSibling).map(xe.fromDom),Ae=e=>C.from(e.dom.nextSibling).map(xe.fromDom),Le=e=>E(e.dom.childNodes,xe.fromDom),We=(e,t)=>{const o=e.dom.childNodes;return C.from(o[t]).map(xe.fromDom)},Me=(e,t)=>{Ne(e).each((o=>{o.dom.insertBefore(t.dom,e.dom)}))},je=(e,t)=>{Ae(e).fold((()=>{Ne(e).each((e=>{Ie(e,t)}))}),(e=>{Me(e,t)}))},Pe=(e,t)=>{const o=(e=>We(e,0))(e);o.fold((()=>{Ie(e,t)}),(o=>{e.dom.insertBefore(t.dom,o.dom)}))},Ie=(e,t)=>{e.dom.appendChild(t.dom)},Fe=(e,t)=>{Me(e,t),Ie(t,e)},He=(e,t)=>{N(t,((o,n)=>{const r=0===n?e:t[n-1];je(r,o)}))},$e=(e,t)=>{N(t,(t=>{Ie(e,t)}))},Ve=e=>{e.dom.textContent="",N(Le(e),(e=>{qe(e)}))},qe=e=>{const t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)},Ue=e=>{const t=Le(e);t.length>0&&He(e,t),qe(e)},Ge=(e,t)=>xe.fromDom(e.dom.cloneNode(t)),Ke=e=>Ge(e,!1),Ye=e=>Ge(e,!0),Je=(e,t)=>{const o=xe.fromTag(t),n=ve(e);return he(o,n),o},Qe=["tfoot","thead","tbody","colgroup"],Xe=(e,t,o)=>({element:e,rowspan:t,colspan:o}),Ze=(e,t,o)=>({element:e,cells:t,section:o}),et=(e,t,o)=>({element:e,isNew:t,isLocked:o}),tt=(e,t,o,n)=>({element:e,cells:t,section:o,isNew:n}),ot=d(Element.prototype.attachShadow)&&d(Node.prototype.getRootNode),nt=g(ot),rt=ot?e=>xe.fromDom(e.dom.getRootNode()):Ee,st=e=>xe.fromDom(e.dom.host),lt=e=>{const t=ie(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;const o=t.ownerDocument;return(e=>{const t=rt(e);return de(o=t)&&m(o.dom.host)?C.some(t):C.none();var o})(xe.fromDom(t)).fold((()=>o.body.contains(t)),(n=lt,r=st,e=>n(r(e))));var n,r},at=e=>{const t=e.dom.body;if(null==t)throw new Error("Body is not available yet");return xe.fromDom(t)},ct=(e,t)=>{let o=[];return N(Le(e),(e=>{t(e)&&(o=o.concat([e])),o=o.concat(ct(e,t))})),o},it=(e,t,o)=>((e,o,n)=>_(_e(e,n),(e=>Ce(e,t))))(e,0,o),mt=(e,t)=>((e,o)=>_(Le(e),(e=>Ce(e,t))))(e),dt=(e,t)=>((e,t)=>{const o=void 0===t?document:t.dom;return Se(o)?[]:E(o.querySelectorAll(e),xe.fromDom)})(t,e);var ut=(e,t,o,n,r)=>e(o,n)?C.some(o):d(r)&&r(o)?C.none():t(o,n,r);const ft=(e,t,o)=>{let n=e.dom;const r=d(o)?o:y;for(;n.parentNode;){n=n.parentNode;const e=xe.fromDom(n);if(t(e))return C.some(e);if(r(e))break}return C.none()},gt=(e,t,o)=>ut(((e,t)=>t(e)),ft,e,t,o),ht=(e,t,o)=>ft(e,(e=>Ce(e,t)),o),pt=(e,t)=>((e,o)=>L(e.dom.childNodes,(e=>{return o=xe.fromDom(e),Ce(o,t);var o})).map(xe.fromDom))(e),wt=(e,t)=>Te(t,e),bt=(e,t,o)=>ut(((e,t)=>Ce(e,t)),ht,e,t,o),vt=(e,t,o=p)=>e.exists((e=>o(e,t))),yt=e=>{const t=[],o=e=>{t.push(e)};for(let t=0;t<e.length;t++)e[t].each(o);return t},xt=(e,t)=>e?C.some(t):C.none(),Ct=(e,t,o)=>""===t||e.length>=t.length&&e.substr(o,o+t.length)===t,St=(e,t,o=0,n)=>{const r=e.indexOf(t,o);return-1!==r&&(!!i(n)||r+t.length<=n)},Tt=(e,t)=>Ct(e,t,0),Rt=(e,t)=>Ct(e,t,e.length-t.length),Dt=(e=>t=>t.replace(e,""))(/^\s+|\s+$/g),Ot=e=>e.length>0,kt=e=>void 0!==e.style&&d(e.style.getPropertyValue),Et=(e,t,o)=>{if(!r(o))throw console.error("Invalid call to CSS.set. Property ",t,":: Value ",o,":: Element ",e),new Error("CSS value must be a string: "+o);kt(e)&&e.style.setProperty(t,o)},Nt=(e,t,o)=>{const n=e.dom;Et(n,t,o)},Bt=(e,t)=>{const o=e.dom;G(t,((e,t)=>{Et(o,t,e)}))},_t=(e,t)=>{const o=e.dom,n=window.getComputedStyle(o).getPropertyValue(t);return""!==n||lt(e)?n:zt(o,t)},zt=(e,t)=>kt(e)?e.style.getPropertyValue(t):"",At=(e,t)=>{const o=e.dom,n=zt(o,t);return C.from(n).filter((e=>e.length>0))},Lt=(e,t)=>{((e,t)=>{kt(e)&&e.style.removeProperty(t)})(e.dom,t),vt(we(e,"style").map(Dt),"")&&be(e,"style")},Wt=(e,t,o=0)=>we(e,t).map((e=>parseInt(e,10))).getOr(o),Mt=(e,t)=>Wt(e,t,1),jt=e=>ue("col")(e)?Wt(e,"span",1)>1:Mt(e,"colspan")>1,Pt=e=>Mt(e,"rowspan")>1,It=(e,t)=>parseInt(_t(e,t),10),Ft=g(10),Ht=g(10),$t=(e,t)=>Vt(e,t,x),Vt=(e,t,o)=>j(Le(e),(e=>Ce(e,t)?o(e)?[e]:[]:Vt(e,t,o))),qt=(e,t)=>((e,t,o=y)=>o(t)?C.none():D(e,ne(t))?C.some(t):ht(t,e.join(","),(e=>Ce(e,"table")||o(e))))(["td","th"],e,t),Ut=e=>$t(e,"th,td"),Gt=e=>Ce(e,"colgroup")?mt(e,"col"):j(Jt(e),(e=>mt(e,"col"))),Kt=(e,t)=>bt(e,"table",t),Yt=e=>$t(e,"tr"),Jt=e=>Kt(e).fold(g([]),(e=>mt(e,"colgroup"))),Qt=(e,t)=>E(e,(e=>{if("colgroup"===ne(e)){const t=E(Gt(e),(e=>{const t=Wt(e,"span",1);return Xe(e,1,t)}));return Ze(e,t,"colgroup")}{const o=E(Ut(e),(e=>{const t=Wt(e,"rowspan",1),o=Wt(e,"colspan",1);return Xe(e,t,o)}));return Ze(e,o,t(e))}})),Xt=e=>Ne(e).map((e=>{const t=ne(e);return(e=>D(Qe,e))(t)?t:"tbody"})).getOr("tbody"),Zt=e=>{const t=Yt(e),o=[...Jt(e),...t];return Qt(o,Xt)},eo=e=>{let t,o=!1;return(...n)=>(o||(o=!0,t=e.apply(null,n)),t)},to=()=>oo(0,0),oo=(e,t)=>({major:e,minor:t}),no={nu:oo,detect:(e,t)=>{const o=String(t).toLowerCase();return 0===e.length?to():((e,t)=>{const o=((e,t)=>{for(let o=0;o<e.length;o++){const n=e[o];if(n.test(t))return n}})(e,t);if(!o)return{major:0,minor:0};const n=e=>Number(t.replace(o,"$"+e));return oo(n(1),n(2))})(e,o)},unknown:to},ro=(e,t)=>{const o=String(t).toLowerCase();return L(e,(e=>e.search(o)))},so=/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,lo=e=>t=>St(t,e),ao=[{name:"Edge",versionRegexes:[/.*?edge\/ ?([0-9]+)\.([0-9]+)$/],search:e=>St(e,"edge/")&&St(e,"chrome")&&St(e,"safari")&&St(e,"applewebkit")},{name:"Chromium",brand:"Chromium",versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/,so],search:e=>St(e,"chrome")&&!St(e,"chromeframe")},{name:"IE",versionRegexes:[/.*?msie\ ?([0-9]+)\.([0-9]+).*/,/.*?rv:([0-9]+)\.([0-9]+).*/],search:e=>St(e,"msie")||St(e,"trident")},{name:"Opera",versionRegexes:[so,/.*?opera\/([0-9]+)\.([0-9]+).*/],search:lo("opera")},{name:"Firefox",versionRegexes:[/.*?firefox\/\ ?([0-9]+)\.([0-9]+).*/],search:lo("firefox")},{name:"Safari",versionRegexes:[so,/.*?cpu os ([0-9]+)_([0-9]+).*/],search:e=>(St(e,"safari")||St(e,"mobile/"))&&St(e,"applewebkit")}],co=[{name:"Windows",search:lo("win"),versionRegexes:[/.*?windows\ nt\ ?([0-9]+)\.([0-9]+).*/]},{name:"iOS",search:e=>St(e,"iphone")||St(e,"ipad"),versionRegexes:[/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,/.*cpu os ([0-9]+)_([0-9]+).*/,/.*cpu iphone os ([0-9]+)_([0-9]+).*/]},{name:"Android",search:lo("android"),versionRegexes:[/.*?android\ ?([0-9]+)\.([0-9]+).*/]},{name:"macOS",search:lo("mac os x"),versionRegexes:[/.*?mac\ os\ x\ ?([0-9]+)_([0-9]+).*/]},{name:"Linux",search:lo("linux"),versionRegexes:[]},{name:"Solaris",search:lo("sunos"),versionRegexes:[]},{name:"FreeBSD",search:lo("freebsd"),versionRegexes:[]},{name:"ChromeOS",search:lo("cros"),versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/]}],io={browsers:g(ao),oses:g(co)},mo="Edge",uo="Chromium",fo="Opera",go="Firefox",ho="Safari",po=e=>{const t=e.current,o=e.version,n=e=>()=>t===e;return{current:t,version:o,isEdge:n(mo),isChromium:n(uo),isIE:n("IE"),isOpera:n(fo),isFirefox:n(go),isSafari:n(ho)}},wo=()=>po({current:void 0,version:no.unknown()}),bo=po,vo=(g(mo),g(uo),g("IE"),g(fo),g(go),g(ho),"Windows"),yo="Android",xo="Linux",Co="macOS",So="Solaris",To="FreeBSD",Ro="ChromeOS",Do=e=>{const t=e.current,o=e.version,n=e=>()=>t===e;return{current:t,version:o,isWindows:n(vo),isiOS:n("iOS"),isAndroid:n(yo),isMacOS:n(Co),isLinux:n(xo),isSolaris:n(So),isFreeBSD:n(To),isChromeOS:n(Ro)}},Oo=()=>Do({current:void 0,version:no.unknown()}),ko=Do,Eo=(g(vo),g("iOS"),g(yo),g(xo),g(Co),g(So),g(To),g(Ro),e=>window.matchMedia(e).matches);let No=eo((()=>((e,t,o)=>{const n=io.browsers(),r=io.oses(),s=t.bind((e=>((e,t)=>V(t.brands,(t=>{const o=t.brand.toLowerCase();return L(e,(e=>{var t;return o===(null===(t=e.brand)||void 0===t?void 0:t.toLowerCase())})).map((e=>({current:e.name,version:no.nu(parseInt(t.version,10),0)})))})))(n,e))).orThunk((()=>((e,t)=>ro(e,t).map((e=>{const o=no.detect(e.versionRegexes,t);return{current:e.name,version:o}})))(n,e))).fold(wo,bo),l=((e,t)=>ro(e,t).map((e=>{const o=no.detect(e.versionRegexes,t);return{current:e.name,version:o}})))(r,e).fold(Oo,ko),a=((e,t,o,n)=>{const r=e.isiOS()&&!0===/ipad/i.test(o),s=e.isiOS()&&!r,l=e.isiOS()||e.isAndroid(),a=l||n("(pointer:coarse)"),c=r||!s&&l&&n("(min-device-width:768px)"),i=s||l&&!c,m=t.isSafari()&&e.isiOS()&&!1===/safari/i.test(o),d=!i&&!c&&!m;return{isiPad:g(r),isiPhone:g(s),isTablet:g(c),isPhone:g(i),isTouch:g(a),isAndroid:e.isAndroid,isiOS:e.isiOS,isWebView:g(m),isDesktop:g(d)}})(l,s,e,o);return{browser:s,os:l,deviceType:a}})(navigator.userAgent,C.from(navigator.userAgentData),Eo)));const Bo=()=>No(),_o=(e,t)=>{const o=o=>{const n=t(o);if(n<=0||null===n){const t=_t(o,e);return parseFloat(t)||0}return n},n=(e,t)=>A(t,((t,o)=>{const n=_t(e,o),r=void 0===n?0:parseInt(n,10);return isNaN(r)?t:t+r}),0);return{set:(t,o)=>{if(!u(o)&&!o.match(/^[0-9]+$/))throw new Error(e+".set accepts only positive integer values. Value was "+o);const n=t.dom;kt(n)&&(n.style[e]=o+"px")},get:o,getOuter:o,aggregate:n,max:(e,t,o)=>{const r=n(e,o);return t>r?t-r:0}}},zo=(e,t,o)=>((e,t)=>(e=>{const t=parseFloat(e);return isNaN(t)?C.none():C.some(t)})(e).getOr(t))(_t(e,t),o),Ao=_o("width",(e=>e.dom.offsetWidth)),Lo=e=>Ao.get(e),Wo=e=>Ao.getOuter(e),Mo=e=>((e,t)=>{const o=e.dom,n=o.getBoundingClientRect().width||o.offsetWidth;return"border-box"===t?n:((e,t,o,n)=>t-zo(e,`padding-${o}`,0)-zo(e,`padding-${n}`,0)-zo(e,`border-${o}-width`,0)-zo(e,`border-${n}-width`,0))(e,n,"left","right")})(e,"content-box"),jo=(e,t,o)=>{const n=e.cells,r=n.slice(0,t),s=n.slice(t),l=r.concat(o).concat(s);return Fo(e,l)},Po=(e,t,o)=>jo(e,t,[o]),Io=(e,t,o)=>{e.cells[t]=o},Fo=(e,t)=>tt(e.element,t,e.section,e.isNew),Ho=(e,t)=>e.cells[t],$o=(e,t)=>Ho(e,t).element,Vo=e=>e.cells.length,qo=e=>{const t=B(e,(e=>"colgroup"===e.section));return{rows:t.fail,cols:t.pass}},Uo=(e,t,o)=>{const n=E(e.cells,o);return tt(t(e.element),n,e.section,!0)},Go="data-snooker-locked-cols",Ko=e=>we(e,Go).bind((e=>C.from(e.match(/\d+/g)))).map((e=>I(e,x))),Yo=e=>{const t=A(qo(e).rows,((e,t)=>(N(t.cells,((t,o)=>{t.isLocked&&(e[o]=!0)})),e)),{}),o=J(t,((e,t)=>parseInt(t,10)));return((e,t)=>{const o=S.call(e,0);return o.sort(void 0),o})(o)},Jo=(e,t)=>e+","+t,Qo=(e,t)=>{const o=j(e.all,(e=>e.cells));return _(o,t)},Xo=e=>{const t={},o=[],n=H(e).map((e=>e.element)).bind(Kt).bind(Ko).getOr({});let r=0,s=0,l=0;const{pass:a,fail:c}=B(e,(e=>"colgroup"===e.section));N(c,(e=>{const a=[];N(e.cells,(e=>{let o=0;for(;void 0!==t[Jo(l,o)];)o++;const r=((e,t)=>X(e,t)&&void 0!==e[t]&&null!==e[t])(n,o.toString()),c=((e,t,o,n,r,s)=>({element:e,rowspan:t,colspan:o,row:n,column:r,isLocked:s}))(e.element,e.rowspan,e.colspan,l,o,r);for(let n=0;n<e.colspan;n++)for(let r=0;r<e.rowspan;r++){const e=o+n,a=Jo(l+r,e);t[a]=c,s=Math.max(s,e+1)}a.push(c)})),r++,o.push(Ze(e.element,a,e.section)),l++}));const{columns:i,colgroups:m}=$(a).map((e=>{const t=(e=>{const t={};let o=0;return N(e.cells,(e=>{const n=e.colspan;k(n,(r=>{const s=o+r;t[s]=((e,t,o)=>({element:e,colspan:t,column:o}))(e.element,n,s)})),o+=n})),t})(e),o=((e,t)=>({element:e,columns:t}))(e.element,Q(t));return{colgroups:[o],columns:t}})).getOrThunk((()=>({colgroups:[],columns:{}}))),d=((e,t)=>({rows:e,columns:t}))(r,s);return{grid:d,access:t,all:o,columns:i,colgroups:m}},Zo=e=>{const t=Zt(e);return Xo(t)},en=Xo,tn=(e,t,o)=>C.from(e.access[Jo(t,o)]),on=(e,t,o)=>{const n=Qo(e,(e=>o(t,e.element)));return n.length>0?C.some(n[0]):C.none()},nn=Qo,rn=e=>j(e.all,(e=>e.cells)),sn=e=>Q(e.columns),ln=e=>q(e.columns).length>0,an=(e,t)=>C.from(e.columns[t]),cn=(e,t=x)=>{const o=e.grid,n=k(o.columns,h),r=k(o.rows,h);return E(n,(o=>mn((()=>j(r,(t=>tn(e,t,o).filter((e=>e.column===o)).toArray()))),(e=>1===e.colspan&&t(e.element)),(()=>tn(e,0,o)))))},mn=(e,t,o)=>{const n=e();return L(n,t).orThunk((()=>C.from(n[0]).orThunk(o))).map((e=>e.element))},dn=e=>{const t=e.grid,o=k(t.rows,h),n=k(t.columns,h);return E(o,(t=>mn((()=>j(n,(o=>tn(e,t,o).filter((e=>e.row===t)).fold(g([]),(e=>[e]))))),(e=>1===e.rowspan),(()=>tn(e,t,0)))))},un=(e,t)=>o=>"rtl"===fn(o)?t:e,fn=e=>"rtl"===_t(e,"direction")?"rtl":"ltr",gn=_o("height",(e=>{const t=e.dom;return lt(e)?t.getBoundingClientRect().height:t.offsetHeight})),hn=e=>gn.get(e),pn=e=>gn.getOuter(e),wn=(e,t)=>({left:e,top:t,translate:(o,n)=>wn(e+o,t+n)}),bn=wn,vn=(e,t)=>void 0!==e?e:void 0!==t?t:0,yn=e=>{const t=e.dom.ownerDocument,o=t.body,n=t.defaultView,r=t.documentElement;if(o===e.dom)return bn(o.offsetLeft,o.offsetTop);const s=vn(null==n?void 0:n.pageYOffset,r.scrollTop),l=vn(null==n?void 0:n.pageXOffset,r.scrollLeft),a=vn(r.clientTop,o.clientTop),c=vn(r.clientLeft,o.clientLeft);return xn(e).translate(l-c,s-a)},xn=e=>{const t=e.dom,o=t.ownerDocument.body;return o===t?bn(o.offsetLeft,o.offsetTop):lt(e)?(e=>{const t=e.getBoundingClientRect();return bn(t.left,t.top)})(t):bn(0,0)},Cn=(e,t)=>({row:e,y:t}),Sn=(e,t)=>({col:e,x:t}),Tn=e=>yn(e).left+Wo(e),Rn=e=>yn(e).left,Dn=(e,t)=>Sn(e,Rn(t)),On=(e,t)=>Sn(e,Tn(t)),kn=e=>yn(e).top,En=(e,t)=>Cn(e,kn(t)),Nn=(e,t)=>Cn(e,kn(t)+pn(t)),Bn=(e,t,o)=>{if(0===o.length)return[];const n=E(o.slice(1),((t,o)=>t.map((t=>e(o,t))))),r=o[o.length-1].map((e=>t(o.length-1,e)));return n.concat([r])},_n={delta:h,positions:e=>Bn(En,Nn,e),edge:kn},zn=un({delta:h,edge:Rn,positions:e=>Bn(Dn,On,e)},{delta:e=>-e,edge:Tn,positions:e=>Bn(On,Dn,e)}),An={delta:(e,t)=>zn(t).delta(e,t),positions:(e,t)=>zn(t).positions(e,t),edge:e=>zn(e).edge(e)},Ln={unsupportedLength:["em","ex","cap","ch","ic","rem","lh","rlh","vw","vh","vi","vb","vmin","vmax","cm","mm","Q","in","pc","pt","px"],fixed:["px","pt"],relative:["%"],empty:[""]},Wn=(()=>{const e="[0-9]+",t="[eE][+-]?"+e,o=e=>`(?:${e})?`,n=["Infinity",e+"\\."+o(e)+o(t),"\\."+e+o(t),e+o(t)].join("|");return new RegExp(`^([+-]?(?:${n}))(.*)$`)})(),Mn=/(\d+(\.\d+)?)%/,jn=/(\d+(\.\d+)?)px|em/,Pn=ue("col"),In=(e,t,o)=>{const n=Be(e).getOrThunk((()=>at(ke(e))));return t(e)/o(n)*100},Fn=(e,t)=>{Nt(e,"width",t+"px")},Hn=(e,t)=>{Nt(e,"width",t+"%")},$n=(e,t)=>{Nt(e,"height",t+"px")},Vn=e=>{const t=(e=>{return zo(t=e,"height",t.dom.offsetHeight)+"px";var t})(e);return t?((e,t,o,n)=>{const r=parseFloat(e);return Rt(e,"%")&&"table"!==ne(t)?((e,t,o,n)=>{const r=Kt(e).map((e=>{const n=o(e);return Math.floor(t/100*n)})).getOr(t);return n(e,r),r})(t,r,o,n):r})(t,e,hn,$n):hn(e)},qn=(e,t)=>At(e,t).orThunk((()=>we(e,t).map((e=>e+"px")))),Un=e=>qn(e,"width"),Gn=e=>In(e,Lo,Mo),Kn=e=>{return Pn(e)?Lo(e):zo(t=e,"width",t.dom.offsetWidth);var t},Yn=e=>((e,t,o)=>o(e)/Mt(e,"rowspan"))(e,0,Vn),Jn=(e,t,o)=>{Nt(e,"width",t+o)},Qn=e=>In(e,Lo,Mo)+"%",Xn=g(Mn),Zn=ue("col"),er=e=>Un(e).getOrThunk((()=>Kn(e)+"px")),tr=e=>{return(t=e,qn(t,"height")).getOrThunk((()=>Yn(e)+"px"));var t},or=(e,t,o,n,r,s)=>e.filter(n).fold((()=>s(((e,t)=>{if(t<0||t>=e.length-1)return C.none();const o=e[t].fold((()=>{const o=(e=>{const t=S.call(e,0);return t.reverse(),t})(e.slice(0,t));return V(o,((e,t)=>e.map((e=>({value:e,delta:t+1})))))}),(e=>C.some({value:e,delta:0}))),n=e[t+1].fold((()=>{const o=e.slice(t+1);return V(o,((e,t)=>e.map((e=>({value:e,delta:t+1})))))}),(e=>C.some({value:e,delta:1})));return o.bind((e=>n.map((t=>{const o=t.delta+e.delta;return Math.abs(t.value-e.value)/o}))))})(o,t))),(e=>r(e))),nr=(e,t,o,n)=>{const r=cn(e),s=ln(e)?(e=>E(sn(e),(e=>C.from(e.element))))(e):r,l=[C.some(An.edge(t))].concat(E(An.positions(r,t),(e=>e.map((e=>e.x))))),a=b(jt);return E(s,((e,t)=>or(e,t,l,a,(e=>{if((e=>{const t=Bo().browser,o=t.isChromium()||t.isFirefox();return!Zn(e)||o})(e))return o(e);{const e=null!=(s=r[t])?h(s):C.none();return or(e,t,l,a,(e=>n(C.some(Lo(e)))),n)}var s}),n)))},rr=e=>e.map((e=>e+"px")).getOr(""),sr=(e,t,o)=>nr(e,t,Kn,(e=>e.getOrThunk(o.minCellWidth))),lr=(e,t,o,n,r)=>{const s=dn(e),l=[C.some(o.edge(t))].concat(E(o.positions(s,t),(e=>e.map((e=>e.y)))));return E(s,((e,t)=>or(e,t,l,b(Pt),n,r)))},ar=(e,t)=>()=>lt(e)?t(e):parseFloat(At(e,"width").getOr("0")),cr=e=>{const t=ar(e,(e=>parseFloat(Qn(e)))),o=ar(e,Lo);return{width:t,pixelWidth:o,getWidths:(t,o)=>((e,t,o)=>nr(e,t,Gn,(e=>e.fold((()=>o.minCellWidth()),(e=>e/o.pixelWidth()*100)))))(t,e,o),getCellDelta:e=>e/o()*100,singleColumnWidth:(e,t)=>[100-e],minCellWidth:()=>Ft()/o()*100,setElementWidth:Hn,adjustTableWidth:o=>{const n=t();Hn(e,n+o/100*n)},isRelative:!0,label:"percent"}},ir=e=>{const t=ar(e,Lo);return{width:t,pixelWidth:t,getWidths:(t,o)=>sr(t,e,o),getCellDelta:h,singleColumnWidth:(e,t)=>[Math.max(Ft(),e+t)-e],minCellWidth:Ft,setElementWidth:Fn,adjustTableWidth:o=>{const n=t()+o;Fn(e,n)},isRelative:!1,label:"pixel"}},mr=e=>Un(e).fold((()=>(e=>{const t=ar(e,Lo),o=g(0);return{width:t,pixelWidth:t,getWidths:(t,o)=>sr(t,e,o),getCellDelta:o,singleColumnWidth:g([0]),minCellWidth:o,setElementWidth:f,adjustTableWidth:f,isRelative:!0,label:"none"}})(e)),(t=>((e,t)=>null!==Xn().exec(t)?cr(e):ir(e))(e,t))),dr=ir,ur=cr,fr=(e,t,o)=>{const n=e[o].element,r=xe.fromTag("td");Ie(r,xe.fromTag("br")),(t?Ie:Pe)(n,r)},gr=((e,t)=>{const o=t=>e(t)?C.from(t.dom.nodeValue):C.none();return{get:t=>{if(!e(t))throw new Error("Can only get text value of a text node");return o(t).getOr("")},getOption:o,set:(t,o)=>{if(!e(t))throw new Error("Can only set raw text value of a text node");t.dom.nodeValue=o}}})(ie),hr=e=>gr.get(e),pr=e=>gr.getOption(e),wr=(e,t)=>gr.set(e,t),br=e=>"img"===ne(e)?1:pr(e).fold((()=>Le(e).length),(e=>e.length)),vr=["img","br"],yr=e=>pr(e).filter((e=>0!==e.trim().length||e.indexOf("\xa0")>-1)).isSome()||D(vr,ne(e))||(e=>ae(e)&&"false"===pe(e,"contenteditable"))(e),xr=e=>((e,t)=>{const o=e=>{for(let n=0;n<e.childNodes.length;n++){const r=xe.fromDom(e.childNodes[n]);if(t(r))return C.some(r);const s=o(e.childNodes[n]);if(s.isSome())return s}return C.none()};return o(e.dom)})(e,yr),Cr=e=>Sr(e,yr),Sr=(e,t)=>{const o=e=>{const n=Le(e);for(let e=n.length-1;e>=0;e--){const r=n[e];if(t(r))return C.some(r);const s=o(r);if(s.isSome())return s}return C.none()};return o(e)},Tr={scope:["row","col"]},Rr=e=>()=>{const t=xe.fromTag("td",e.dom);return Ie(t,xe.fromTag("br",e.dom)),t},Dr=e=>()=>xe.fromTag("col",e.dom),Or=e=>()=>xe.fromTag("colgroup",e.dom),kr=e=>()=>xe.fromTag("tr",e.dom),Er=(e,t,o)=>{const n=((e,t)=>{const o=Je(e,t),n=Le(Ye(e));return $e(o,n),o})(e,t);return G(o,((e,t)=>{null===e?be(n,t):ge(n,t,e)})),n},Nr=e=>e,Br=(e,t,o)=>{const n=(e,t)=>{((e,t)=>{const o=e.dom,n=t.dom;kt(o)&&kt(n)&&(n.style.cssText=o.style.cssText)})(e.element,t),Lt(t,"height"),1!==e.colspan&&Lt(t,"width")};return{col:o=>{const r=xe.fromTag(ne(o.element),t.dom);return n(o,r),e(o.element,r),r},colgroup:Or(t),row:kr(t),cell:r=>{const s=xe.fromTag(ne(r.element),t.dom),l=o.getOr(["strong","em","b","i","span","font","h1","h2","h3","h4","h5","h6","p","div"]),a=l.length>0?((e,t,o)=>xr(e).map((n=>{const r=o.join(","),s=it(n,r,(t=>Re(t,e)));return z(s,((e,t)=>{const o=Ke(t);return Ie(e,o),o}),t)})).getOr(t))(r.element,s,l):s;return Ie(a,xe.fromTag("br")),n(r,s),((e,t)=>{G(Tr,((o,n)=>we(e,n).filter((e=>D(o,e))).each((e=>ge(t,n,e)))))})(r.element,s),e(r.element,s),s},replace:Er,colGap:Dr(t),gap:Rr(t)}},_r=e=>({col:Dr(e),colgroup:Or(e),row:kr(e),cell:Rr(e),replace:Nr,colGap:Dr(e),gap:Rr(e)}),zr=e=>t=>t.options.get(e),Ar="100%",Lr=e=>{var t;const o=e.dom,n=null!==(t=o.getParent(e.selection.getStart(),o.isBlock))&&void 0!==t?t:e.getBody();return Mo(xe.fromDom(n))+"px"},Wr=e=>C.from(e.options.get("table_clone_elements")),Mr=zr("table_header_type"),jr=zr("table_column_resizing"),Pr=e=>"preservetable"===jr(e),Ir=e=>"resizetable"===jr(e),Fr=zr("table_sizing_mode"),Hr=e=>"relative"===Fr(e),$r=e=>"fixed"===Fr(e),Vr=e=>"responsive"===Fr(e),qr=zr("table_resize_bars"),Ur=zr("table_style_by_css"),Gr=zr("table_merge_content_on_paste"),Kr=e=>{const t=e.options,o=t.get("table_default_attributes");return t.isSet("table_default_attributes")?o:((e,t)=>Vr(e)||Ur(e)?t:$r(e)?{...t,width:Lr(e)}:{...t,width:Ar})(e,o)},Yr=zr("table_use_colgroups"),Jr=e=>bt(e,"[contenteditable]"),Qr=(e,t=!1)=>lt(e)?e.dom.isContentEditable:Jr(e).fold(g(t),(e=>"true"===Xr(e))),Xr=e=>e.dom.contentEditable,Zr=e=>xe.fromDom(e.getBody()),es=e=>t=>Re(t,Zr(e)),ts=e=>{be(e,"data-mce-style");const t=e=>be(e,"data-mce-style");N(Ut(e),t),N(Gt(e),t),N(Yt(e),t)},os=e=>xe.fromDom(e.selection.getStart()),ns=e=>e.getBoundingClientRect().width,rs=e=>e.getBoundingClientRect().height,ss=e=>gt(e,ue("table")).exists(Qr),ls=(e,t)=>{const o=t.column,n=t.column+t.colspan-1,r=t.row,s=t.row+t.rowspan-1;return o<=e.finishCol&&n>=e.startCol&&r<=e.finishRow&&s>=e.startRow},as=(e,t)=>t.column>=e.startCol&&t.column+t.colspan-1<=e.finishCol&&t.row>=e.startRow&&t.row+t.rowspan-1<=e.finishRow,cs=(e,t,o)=>{const n=on(e,t,Re),r=on(e,o,Re);return n.bind((e=>r.map((t=>{return o=e,n=t,{startRow:Math.min(o.row,n.row),startCol:Math.min(o.column,n.column),finishRow:Math.max(o.row+o.rowspan-1,n.row+n.rowspan-1),finishCol:Math.max(o.column+o.colspan-1,n.column+n.colspan-1)};var o,n}))))},is=(e,t,o)=>cs(e,t,o).map((t=>{const o=nn(e,w(ls,t));return E(o,(e=>e.element))})),ms=(e,t)=>on(e,t,((e,t)=>De(t,e))).map((e=>e.element)),ds=(e,t,o)=>{const n=fs(e);return is(n,t,o)},us=(e,t,o,n,r)=>{const s=fs(e),l=Re(e,o)?C.some(t):ms(s,t),a=Re(e,r)?C.some(n):ms(s,n);return l.bind((e=>a.bind((t=>is(s,e,t)))))},fs=Zo;var gs=["body","p","div","article","aside","figcaption","figure","footer","header","nav","section","ol","ul","li","table","thead","tbody","tfoot","caption","tr","td","th","h1","h2","h3","h4","h5","h6","blockquote","pre","address"],hs=()=>({up:g({selector:ht,closest:bt,predicate:ft,all:_e}),down:g({selector:dt,predicate:ct}),styles:g({get:_t,getRaw:At,set:Nt,remove:Lt}),attrs:g({get:pe,set:ge,remove:be,copyTo:(e,t)=>{const o=ve(e);he(t,o)}}),insert:g({before:Me,after:je,afterAll:He,append:Ie,appendAll:$e,prepend:Pe,wrap:Fe}),remove:g({unwrap:Ue,remove:qe}),create:g({nu:xe.fromTag,clone:e=>xe.fromDom(e.dom.cloneNode(!1)),text:xe.fromText}),query:g({comparePosition:(e,t)=>e.dom.compareDocumentPosition(t.dom),prevSibling:ze,nextSibling:Ae}),property:g({children:Le,name:ne,parent:Ne,document:e=>Ee(e).dom,isText:ie,isComment:le,isElement:ce,isSpecial:e=>{const t=ne(e);return D(["script","noscript","iframe","noframes","noembed","title","style","textarea","xmp"],t)},getLanguage:e=>ce(e)?we(e,"lang"):C.none(),getText:hr,setText:wr,isBoundary:e=>!!ce(e)&&("body"===ne(e)||D(gs,ne(e))),isEmptyTag:e=>!!ce(e)&&D(["br","img","hr","input"],ne(e)),isNonEditable:e=>ce(e)&&"false"===pe(e,"contenteditable")}),eq:Re,is:Oe});const ps=(e,t,o,n)=>{const r=t(e,o);return z(n,((o,n)=>{const r=t(e,n);return ws(e,o,r)}),r)},ws=(e,t,o)=>t.bind((t=>o.filter(w(e.eq,t)))),bs=hs(),vs=(e,t)=>((e,t,o)=>o.length>0?((e,t,o,n)=>n(e,t,o[0],o.slice(1)))(e,t,o,ps):C.none())(bs,((t,o)=>e(o)),t),ys=e=>ht(e,"table"),xs=(e,t,o)=>{const n=e=>t=>void 0!==o&&o(t)||Re(t,e);return Re(e,t)?C.some({boxes:C.some([e]),start:e,finish:t}):ys(e).bind((r=>ys(t).bind((s=>{if(Re(r,s))return C.some({boxes:ds(r,e,t),start:e,finish:t});if(De(r,s)){const o=it(t,"td,th",n(r)),l=o.length>0?o[o.length-1]:t;return C.some({boxes:us(r,e,r,t,s),start:e,finish:l})}if(De(s,r)){const o=it(e,"td,th",n(s)),l=o.length>0?o[o.length-1]:e;return C.some({boxes:us(s,e,r,t,s),start:e,finish:l})}return((e,t,o)=>((e,t,o,n=y)=>{const r=[t].concat(e.up().all(t)),s=[o].concat(e.up().all(o)),l=e=>W(e,n).fold((()=>e),(t=>e.slice(0,t+1))),a=l(r),c=l(s),i=L(a,(t=>O(c,((e,t)=>w(e.eq,t))(e,t))));return{firstpath:a,secondpath:c,shared:i}})(bs,e,t,void 0))(e,t).shared.bind((l=>bt(l,"table",o).bind((o=>{const l=it(t,"td,th",n(o)),a=l.length>0?l[l.length-1]:t,c=it(e,"td,th",n(o)),i=c.length>0?c[c.length-1]:e;return C.some({boxes:us(o,e,r,t,s),start:i,finish:a})}))))}))))},Cs=(e,t)=>{const o=dt(e,t);return o.length>0?C.some(o):C.none()},Ss=(e,t,o)=>wt(e,t).bind((t=>wt(e,o).bind((e=>vs(ys,[t,e]).map((o=>({first:t,last:e,table:o}))))))),Ts=(e,t,o,n,r)=>((e,t)=>L(e,(e=>Ce(e,t))))(e,r).bind((e=>((e,t,o)=>Kt(e).bind((n=>((e,t,o,n)=>on(e,t,Re).bind((t=>{const r=o>0?t.row+t.rowspan-1:t.row,s=n>0?t.column+t.colspan-1:t.column;return tn(e,r+o,s+n).map((e=>e.element))})))(fs(n),e,t,o))))(e,t,o).bind((e=>((e,t)=>ht(e,"table").bind((o=>wt(o,t).bind((t=>xs(t,e).bind((e=>e.boxes.map((t=>({boxes:t,start:e.start,finish:e.finish}))))))))))(e,n))))),Rs=(e,t)=>Cs(e,t),Ds=(e,t,o)=>Ss(e,t,o).bind((t=>{const o=t=>Re(e,t),n="thead,tfoot,tbody,table",r=ht(t.first,n,o),s=ht(t.last,n,o);return r.bind((e=>s.bind((o=>Re(e,o)?((e,t,o)=>((e,t,o)=>cs(e,t,o).bind((t=>((e,t)=>{let o=!0;const n=w(as,t);for(let r=t.startRow;r<=t.finishRow;r++)for(let s=t.startCol;s<=t.finishCol;s++)o=o&&tn(e,r,s).exists(n);return o?C.some(t):C.none()})(e,t))))(fs(e),t,o))(t.table,t.first,t.last):C.none()))))})),Os=h,ks=e=>{const t=(e,t)=>we(e,t).exists((e=>parseInt(e,10)>1));return e.length>0&&P(e,(e=>t(e,"rowspan")||t(e,"colspan")))?C.some(e):C.none()},Es=(e,t,o)=>t.length<=1?C.none():Ds(e,o.firstSelectedSelector,o.lastSelectedSelector).map((e=>({bounds:e,cells:t}))),Ns="data-mce-selected",Bs="data-mce-first-selected",_s="data-mce-last-selected",zs="["+Ns+"]",As={selected:Ns,selectedSelector:"td["+Ns+"],th["+Ns+"]",firstSelected:Bs,firstSelectedSelector:"td["+Bs+"],th["+Bs+"]",lastSelected:_s,lastSelectedSelector:"td["+_s+"],th["+_s+"]"},Ls=(e,t,o)=>({element:o,mergable:Es(t,e,As),unmergable:ks(e),selection:Os(e)}),Ws=e=>(t,o)=>{const n=ne(t),r="col"===n||"colgroup"===n?Kt(s=t).bind((e=>Rs(e,As.firstSelectedSelector))).fold(g(s),(e=>e[0])):t;var s;return bt(r,e,o)},Ms=Ws("th,td,caption"),js=Ws("th,td"),Ps=e=>{return t=e.model.table.getSelectedCells(),E(t,xe.fromDom);var t},Is=(e,t)=>{e.on("BeforeGetContent",(t=>{const o=o=>{t.preventDefault(),(e=>Kt(e[0]).map((e=>{const t=((e,t)=>{const o=e=>Ce(e.element,t),n=Ye(e),r=Zt(n),s=mr(e),l=en(r),a=((e,t)=>{const o=e.grid.columns;let n=e.grid.rows,r=o,s=0,l=0;const a=[],c=[];return G(e.access,(e=>{if(a.push(e),t(e)){c.push(e);const t=e.row,o=t+e.rowspan-1,a=e.column,i=a+e.colspan-1;t<n?n=t:o>s&&(s=o),a<r?r=a:i>l&&(l=i)}})),((e,t,o,n,r,s)=>({minRow:e,minCol:t,maxRow:o,maxCol:n,allCells:r,selectedCells:s}))(n,r,s,l,a,c)})(l,o),c="th:not("+t+"),td:not("+t+")",i=Vt(n,"th,td",(e=>Ce(e,c)));N(i,qe),((e,t,o,n)=>{const r=_(e,(e=>"colgroup"!==e.section)),s=t.grid.columns,l=t.grid.rows;for(let e=0;e<l;e++){let l=!1;for(let a=0;a<s;a++)e<o.minRow||e>o.maxRow||a<o.minCol||a>o.maxCol||(tn(t,e,a).filter(n).isNone()?fr(r,l,e):l=!0)}})(r,l,a,o);const m=((e,t,o,n)=>{if(0===n.minCol&&t.grid.columns===n.maxCol+1)return 0;const r=sr(t,e,o),s=A(r,((e,t)=>e+t),0),l=A(r.slice(n.minCol,n.maxCol+1),((e,t)=>e+t),0),a=l/s*o.pixelWidth()-o.pixelWidth();return o.getCellDelta(a)})(e,Zo(e),s,a);return((e,t,o,n)=>{G(o.columns,(e=>{(e.column<t.minCol||e.column>t.maxCol)&&qe(e.element)}));const r=_($t(e,"tr"),(e=>0===e.dom.childElementCount));N(r,qe),t.minCol!==t.maxCol&&t.minRow!==t.maxRow||N($t(e,"th,td"),(e=>{be(e,"rowspan"),be(e,"colspan")})),be(e,Go),be(e,"data-snooker-col-series"),mr(e).adjustTableWidth(n)})(n,a,l,m),n})(e,zs);return ts(t),[t]})))(o).each((o=>{t.content="text"===t.format?(e=>E(e,(e=>e.dom.innerText)).join(""))(o):((e,t)=>E(t,(t=>e.selection.serializer.serialize(t.dom,{}))).join(""))(e,o)}))};if(!0===t.selection){const t=(e=>_(Ps(e),(e=>Ce(e,As.selectedSelector))))(e);t.length>=1&&o(t)}})),e.on("BeforeSetContent",(o=>{if(!0===o.selection&&!0===o.paste){const n=Ps(e);H(n).each((n=>{Kt(n).each((r=>{const s=_(((e,t)=>{const o=document.createElement("div");return o.innerHTML=e,Le(xe.fromDom(o))})(o.content),(e=>"meta"!==ne(e))),l=ue("table");if(Gr(e)&&1===s.length&&l(s[0])){o.preventDefault();const l=xe.fromDom(e.getDoc()),a=_r(l),c=((e,t,o)=>({element:e,clipboard:t,generators:o}))(n,s[0],a);t.pasteCells(r,c).each((()=>{e.focus()}))}}))}))}}))},Fs=(e,t)=>({element:e,offset:t}),Hs=(e,t,o)=>e.property().isText(t)&&0===e.property().getText(t).trim().length||e.property().isComment(t)?o(t).bind((t=>Hs(e,t,o).orThunk((()=>C.some(t))))):C.none(),$s=(e,t)=>e.property().isText(t)?e.property().getText(t).length:e.property().children(t).length,Vs=(e,t)=>{const o=Hs(e,t,e.query().prevSibling).getOr(t);if(e.property().isText(o))return Fs(o,$s(e,o));const n=e.property().children(o);return n.length>0?Vs(e,n[n.length-1]):Fs(o,$s(e,o))},qs=Vs,Us=hs(),Gs=(e,t)=>{if(!jt(e)){const o=(e=>Un(e).bind((e=>{return t=e,o=["fixed","relative","empty"],C.from(Wn.exec(t)).bind((e=>{const t=Number(e[1]),n=e[2];return((e,t)=>O(t,(t=>O(Ln[t],(t=>e===t)))))(n,o)?C.some({value:t,unit:n}):C.none()}));var t,o})))(e);o.each((o=>{const n=o.value/2;Jn(e,n,o.unit),Jn(t,n,o.unit)}))}},Ks=e=>E(e,g(0)),Ys=(e,t,o,n,r)=>r(e.slice(0,t)).concat(n).concat(r(e.slice(o))),Js=e=>(t,o,n,r)=>{if(e(n)){const e=Math.max(r,t[o]-Math.abs(n)),s=Math.abs(e-t[o]);return n>=0?s:-s}return n},Qs=Js((e=>e<0)),Xs=Js(x),Zs=()=>{const e=(e,t,o,n)=>{const r=(100+o)/100,s=Math.max(n,(e[t]+o)/r);return E(e,((e,o)=>(o===t?s:e/r)-e))},t=(t,o,n,r,s,l)=>l?e(t,o,r,s):((e,t,o,n,r)=>{const s=Qs(e,t,n,r);return Ys(e,t,o+1,[s,0],Ks)})(t,o,n,r,s);return{resizeTable:(e,t)=>e(t),clampTableDelta:Qs,calcLeftEdgeDeltas:t,calcMiddleDeltas:(e,o,n,r,s,l,a)=>t(e,n,r,s,l,a),calcRightEdgeDeltas:(t,o,n,r,s,l)=>{if(l)return e(t,n,r,s);{const e=Qs(t,n,r,s);return Ks(t.slice(0,n)).concat([e])}},calcRedestributedWidths:(e,t,o,n)=>{if(n){const n=(t+o)/t,r=E(e,(e=>e/n));return{delta:100*n-100,newSizes:r}}return{delta:o,newSizes:e}}}},el=()=>{const e=(e,t,o,n,r)=>{const s=Xs(e,n>=0?o:t,n,r);return Ys(e,t,o+1,[s,-s],Ks)};return{resizeTable:(e,t,o)=>{o&&e(t)},clampTableDelta:(e,t,o,n,r)=>{if(r){if(o>=0)return o;{const t=A(e,((e,t)=>e+t-n),0);return Math.max(-t,o)}}return Qs(e,t,o,n)},calcLeftEdgeDeltas:e,calcMiddleDeltas:(t,o,n,r,s,l)=>e(t,n,r,s,l),calcRightEdgeDeltas:(e,t,o,n,r,s)=>{if(s)return Ks(e);{const t=n/e.length;return E(e,g(t))}},calcRedestributedWidths:(e,t,o,n)=>({delta:0,newSizes:e})}},tl=e=>Zo(e).grid,ol=ue("th"),nl=e=>P(e,(e=>ol(e.element))),rl=(e,t)=>e&&t?"sectionCells":e?"section":"cells",sl=e=>{const t="thead"===e.section,o=vt(ll(e.cells),"th");return"tfoot"===e.section?{type:"footer"}:t||o?{type:"header",subType:rl(t,o)}:{type:"body"}},ll=e=>{const t=_(e,(e=>ol(e.element)));return 0===t.length?C.some("td"):t.length===e.length?C.some("th"):C.none()},al=(e,t,o)=>et(o(e.element,t),!0,e.isLocked),cl=(e,t)=>e.section!==t?tt(e.element,e.cells,t,e.isNew):e,il=()=>({transformRow:cl,transformCell:(e,t,o)=>{const n=o(e.element,t),r="td"!==ne(n)?((e,t)=>{const o=Je(e,"td");je(e,o);const n=Le(e);return $e(o,n),qe(e),o})(n):n;return et(r,e.isNew,e.isLocked)}}),ml=()=>({transformRow:cl,transformCell:al}),dl=()=>({transformRow:(e,t)=>cl(e,"thead"===t?"tbody":t),transformCell:al}),ul=il,fl=ml,gl=dl,hl=()=>({transformRow:h,transformCell:al}),pl=(e,t,o,n)=>{o===n?be(e,t):ge(e,t,o)},wl=(e,t,o)=>{$(mt(e,t)).fold((()=>Pe(e,o)),(e=>je(e,o)))},bl=(e,t)=>{const o=[],n=[],r=e=>E(e,(e=>{e.isNew&&o.push(e.element);const t=e.element;return Ve(t),N(e.cells,(e=>{e.isNew&&n.push(e.element),pl(e.element,"colspan",e.colspan,1),pl(e.element,"rowspan",e.rowspan,1),Ie(t,e.element)})),t})),s=e=>j(e,(e=>E(e.cells,(e=>(pl(e.element,"span",e.colspan,1),e.element))))),l=(t,o)=>{const n=((e,t)=>{const o=pt(e,t).getOrThunk((()=>{const o=xe.fromTag(t,ke(e).dom);return"thead"===t?wl(e,"caption,colgroup",o):"colgroup"===t?wl(e,"caption",o):Ie(e,o),o}));return Ve(o),o})(e,o),l=("colgroup"===o?s:r)(t);$e(n,l)},a=(t,o)=>{t.length>0?l(t,o):(t=>{pt(e,t).each(qe)})(o)},c=[],i=[],m=[],d=[];return N(t,(e=>{switch(e.section){case"thead":c.push(e);break;case"tbody":i.push(e);break;case"tfoot":m.push(e);break;case"colgroup":d.push(e)}})),a(d,"colgroup"),a(c,"thead"),a(i,"tbody"),a(m,"tfoot"),{newRows:o,newCells:n}},vl=(e,t)=>{if(0===e.length)return 0;const o=e[0];return W(e,(e=>!t(o.element,e.element))).getOr(e.length)},yl=(e,t)=>{const o=E(e,(e=>E(e.cells,y)));return E(e,((n,r)=>{const s=j(n.cells,((n,s)=>{if(!1===o[r][s]){const m=((e,t,o,n)=>{const r=((e,t)=>e[t])(e,t),s="colgroup"===r.section,l=vl(r.cells.slice(o),n),a=s?1:vl(((e,t)=>E(e,(e=>Ho(e,t))))(e.slice(t),o),n);return{colspan:l,rowspan:a}})(e,r,s,t);return((e,t,n,r)=>{for(let s=e;s<e+n;s++)for(let e=t;e<t+r;e++)o[s][e]=!0})(r,s,m.rowspan,m.colspan),[(l=n.element,a=m.rowspan,c=m.colspan,i=n.isNew,{element:l,rowspan:a,colspan:c,isNew:i})]}return[];var l,a,c,i}));return((e,t,o,n)=>({element:e,cells:t,section:o,isNew:n}))(n.element,s,n.section,n.isNew)}))},xl=(e,t,o)=>{const n=[];N(e.colgroups,(r=>{const s=[];for(let n=0;n<e.grid.columns;n++){const r=an(e,n).map((e=>et(e.element,o,!1))).getOrThunk((()=>et(t.colGap(),!0,!1)));s.push(r)}n.push(tt(r.element,s,"colgroup",o))}));for(let r=0;r<e.grid.rows;r++){const s=[];for(let n=0;n<e.grid.columns;n++){const l=tn(e,r,n).map((e=>et(e.element,o,e.isLocked))).getOrThunk((()=>et(t.gap(),!0,!1)));s.push(l)}const l=e.all[r],a=tt(l.element,s,l.section,o);n.push(a)}return n},Cl=e=>yl(e,Re),Sl=(e,t)=>V(e.all,(e=>L(e.cells,(e=>Re(t,e.element))))),Tl=(e,t,o)=>{const n=E(t.selection,(t=>qt(t).bind((t=>Sl(e,t))).filter(o))),r=yt(n);return xt(r.length>0,r)},Rl=(e,t,o,n,r)=>(s,l,a,c)=>{const i=Zo(s),m=C.from(null==c?void 0:c.section).getOrThunk(hl);return t(i,l).map((t=>{const o=((e,t)=>xl(e,t,!1))(i,a),n=e(o,t,Re,r(a),m),s=Yo(n.grid);return{info:t,grid:Cl(n.grid),cursor:n.cursor,lockedColumns:s}})).bind((e=>{const t=bl(s,e.grid),r=C.from(null==c?void 0:c.sizing).getOrThunk((()=>mr(s))),l=C.from(null==c?void 0:c.resize).getOrThunk(el);return o(s,e.grid,e.info,{sizing:r,resize:l,section:m}),n(s),be(s,Go),e.lockedColumns.length>0&&ge(s,Go,e.lockedColumns.join(",")),C.some({cursor:e.cursor,newRows:t.newRows,newCells:t.newCells})}))},Dl=(e,t)=>Tl(e,t,x).map((e=>({cells:e,generators:t.generators,clipboard:t.clipboard}))),Ol=(e,t)=>Tl(e,t,x),kl=(e,t)=>Tl(e,t,(e=>!e.isLocked)),El=(e,t)=>P(t,(t=>((e,t)=>Sl(e,t).exists((e=>!e.isLocked)))(e,t))),Nl=(e,t,o,n)=>{const r=qo(e).rows;let s=!0;for(let e=0;e<r.length;e++)for(let l=0;l<Vo(r[0]);l++){const a=r[e],c=Ho(a,l),i=o(c.element,t);i&&!s?Io(a,l,et(n(),!0,c.isLocked)):i&&(s=!1)}return e},Bl=e=>{const t=t=>t(e),o=g(e),n=()=>r,r={tag:!0,inner:e,fold:(t,o)=>o(e),isValue:x,isError:y,map:t=>zl.value(t(e)),mapError:n,bind:t,exists:t,forall:t,getOr:o,or:n,getOrThunk:o,orThunk:n,getOrDie:o,each:t=>{t(e)},toOptional:()=>C.some(e)};return r},_l=e=>{const t=()=>o,o={tag:!1,inner:e,fold:(t,o)=>t(e),isValue:y,isError:x,map:t,mapError:t=>zl.error(t(e)),bind:t,exists:y,forall:x,getOr:h,or:h,getOrThunk:v,orThunk:v,getOrDie:(n=String(e),()=>{throw new Error(n)}),each:f,toOptional:C.none};var n;return o},zl={value:Bl,error:_l,fromOption:(e,t)=>e.fold((()=>_l(t)),Bl)},Al=(e,t)=>({rowDelta:0,colDelta:Vo(e[0])-Vo(t[0])}),Ll=(e,t)=>({rowDelta:e.length-t.length,colDelta:0}),Wl=(e,t,o,n)=>{const r="colgroup"===t.section?o.col:o.cell;return k(e,(e=>et(r(),!0,n(e))))},Ml=(e,t,o,n)=>{const r=e[e.length-1];return e.concat(k(t,(()=>{const e="colgroup"===r.section?o.colgroup:o.row,t=Uo(r,e,h),s=Wl(t.cells.length,t,o,(e=>X(n,e.toString())));return Fo(t,s)})))},jl=(e,t,o,n)=>E(e,(e=>{const r=Wl(t,e,o,y);return jo(e,n,r)})),Pl=(e,t,o)=>{const n=t.colDelta<0?jl:h,r=t.rowDelta<0?Ml:h,s=Yo(e),l=Vo(e[0]),a=O(s,(e=>e===l-1)),c=n(e,Math.abs(t.colDelta),o,a?l-1:l),i=Yo(c);return r(c,Math.abs(t.rowDelta),o,I(i,x))},Il=(e,t,o,n)=>{const r=w(n,Ho(e[t],o).element),s=e[t];return e.length>1&&Vo(s)>1&&(o>0&&r($o(s,o-1))||o<s.cells.length-1&&r($o(s,o+1))||t>0&&r($o(e[t-1],o))||t<e.length-1&&r($o(e[t+1],o)))},Fl=(e,t,o)=>_(o,(o=>o>=e.column&&o<=Vo(t[0])+e.column)),Hl=(e,t,o,n,r)=>{((e,t,o,n)=>{t>0&&t<e[0].cells.length&&N(e,(e=>{const r=e.cells[t-1];let s=0;const l=n();for(;e.cells.length>t+s&&o(r.element,e.cells[t+s].element);)Io(e,t+s,et(l,!0,e.cells[t+s].isLocked)),s++}))})(t,e,r,n.cell);const s=Ll(o,t),l=Pl(o,s,n),a=Ll(t,l),c=Pl(t,a,n);return E(c,((t,o)=>jo(t,e,l[o].cells)))},$l=(e,t,o,n,r)=>{((e,t,o,n)=>{const r=qo(e).rows;if(t>0&&t<r.length){const e=((e,t)=>A(e,((e,o)=>O(e,(e=>t(e.element,o.element)))?e:e.concat([o])),[]))(r[t-1].cells,o);N(e,(e=>{let s=C.none();for(let l=t;l<r.length;l++)for(let t=0;t<Vo(r[0]);t++){const a=r[l],c=Ho(a,t);o(c.element,e.element)&&(s.isNone()&&(s=C.some(n())),s.each((e=>{Io(a,t,et(e,!0,c.isLocked))})))}}))}})(t,e,r,n.cell);const s=Yo(t),l=Al(t,o),a={...l,colDelta:l.colDelta-s.length},c=Pl(t,a,n),{cols:i,rows:m}=qo(c),d=Yo(c),u=Al(o,t),f={...u,colDelta:u.colDelta+d.length},g=(p=n,w=d,E(o,(e=>A(w,((t,o)=>{const n=Wl(1,e,p,x)[0];return Po(t,o,n)}),e)))),h=Pl(g,f,n);var p,w;return[...i,...m.slice(0,e),...h,...m.slice(e,m.length)]},Vl=(e,t,o,n,r)=>{const{rows:s,cols:l}=qo(e),a=s.slice(0,t),c=s.slice(t);return[...l,...a,((e,t,o,n)=>Uo(e,(e=>n(e,o)),t))(s[o],((e,o)=>t>0&&t<s.length&&n($o(s[t-1],o),$o(s[t],o))?Ho(s[t],o):et(r(e.element,n),!0,e.isLocked)),n,r),...c]},ql=(e,t,o,n,r)=>E(e,(e=>{const s=t>0&&t<Vo(e)&&n($o(e,t-1),$o(e,t)),l=((e,t,o,n,r,s,l)=>{if("colgroup"!==o&&n)return Ho(e,t);{const t=Ho(e,r);return et(l(t.element,s),!0,!1)}})(e,t,e.section,s,o,n,r);return Po(e,t,l)})),Ul=(e,t,o,n)=>((e,t,o,n)=>void 0!==$o(e[t],o)&&t>0&&n($o(e[t-1],o),$o(e[t],o)))(e,t,o,n)||((e,t,o)=>t>0&&o($o(e,t-1),$o(e,t)))(e[t],o,n),Gl=(e,t,o,n)=>{const r=e=>(e=>"row"===e?Pt(t):jt(t))(e)?`${e}group`:e;return e?ol(t)?r(o):null:n&&ol(t)?r("row"===o?"col":"row"):null},Kl=(e,t,o)=>et(o(e.element,t),!0,e.isLocked),Yl=(e,t,o,n,r,s,l)=>E(e,((e,a)=>((e,c)=>{const i=e.cells,m=E(i,((e,c)=>{if((e=>O(t,(t=>o(e.element,t.element))))(e)){const t=l(e,a,c)?r(e,o,n):e;return s(t,a,c).each((e=>{var o,n;o=t.element,n={scope:C.from(e)},G(n,((e,t)=>{e.fold((()=>{be(o,t)}),(e=>{fe(o.dom,t,e)}))}))})),t}return e}));return tt(e.element,m,e.section,e.isNew)})(e))),Jl=(e,t,o)=>j(e,((n,r)=>Ul(e,r,t,o)?[]:[Ho(n,t)])),Ql=(e,t,o,n,r)=>{const s=qo(e).rows,l=j(t,(e=>Jl(s,e,n))),a=E(s,(e=>nl(e.cells))),c=((e,t)=>P(t,h)&&nl(e)?x:(e,o,n)=>!("th"===ne(e.element)&&t[o]))(l,a),i=((e,t)=>(o,n)=>C.some(Gl(e,o.element,"row",t[n])))(o,a);return Yl(e,l,n,r,Kl,i,c)},Xl=(e,t,o,n)=>{const r=qo(e).rows,s=E(t,(e=>Ho(r[e.row],e.column)));return Yl(e,s,o,n,Kl,C.none,x)},Zl=e=>{if(!l(e))throw new Error("cases must be an array");if(0===e.length)throw new Error("there must be at least one case");const t=[],o={};return N(e,((n,r)=>{const s=q(n);if(1!==s.length)throw new Error("one and only one name per case");const a=s[0],c=n[a];if(void 0!==o[a])throw new Error("duplicate key detected:"+a);if("cata"===a)throw new Error("cannot have a case named cata (sorry)");if(!l(c))throw new Error("case arguments must be an array");t.push(a),o[a]=(...o)=>{const n=o.length;if(n!==c.length)throw new Error("Wrong number of arguments to case "+a+". Expected "+c.length+" ("+c+"), got "+n);return{fold:(...t)=>{if(t.length!==e.length)throw new Error("Wrong number of arguments to fold. Expected "+e.length+", got "+t.length);return t[r].apply(null,o)},match:e=>{const n=q(e);if(t.length!==n.length)throw new Error("Wrong number of arguments to match. Expected: "+t.join(",")+"\nActual: "+n.join(","));if(!P(t,(e=>D(n,e))))throw new Error("Not all branches were specified when using match. Specified: "+n.join(", ")+"\nRequired: "+t.join(", "));return e[a].apply(null,o)},log:e=>{console.log(e,{constructors:t,constructor:a,params:o})}}}})),o},ea={...Zl([{none:[]},{only:["index"]},{left:["index","next"]},{middle:["prev","index","next"]},{right:["prev","index"]}])},ta=(e,t,o)=>{let n=0;for(let r=e;r<t;r++)n+=void 0!==o[r]?o[r]:0;return n},oa=(e,t)=>{const o=rn(e);return E(o,(e=>{const o=ta(e.row,e.row+e.rowspan,t);return{element:e.element,height:o,rowspan:e.rowspan}}))},na=(e,t,o)=>{const n=((e,t)=>ln(e)?((e,t)=>{const o=sn(e);return E(o,((e,o)=>({element:e.element,width:t[o],colspan:e.colspan})))})(e,t):((e,t)=>{const o=rn(e);return E(o,(e=>{const o=ta(e.column,e.column+e.colspan,t);return{element:e.element,width:o,colspan:e.colspan}}))})(e,t))(e,t);N(n,(e=>{o.setElementWidth(e.element,e.width)}))},ra=(e,t,o,n,r)=>{const s=Zo(e),l=r.getCellDelta(t),a=r.getWidths(s,r),c=o===s.grid.columns-1,i=n.clampTableDelta(a,o,l,r.minCellWidth(),c),m=((e,t,o,n,r)=>{const s=e.slice(0),l=((e,t)=>0===e.length?ea.none():1===e.length?ea.only(0):0===t?ea.left(0,1):t===e.length-1?ea.right(t-1,t):t>0&&t<e.length-1?ea.middle(t-1,t,t+1):ea.none())(e,t),a=g(E(s,g(0)));return l.fold(a,(e=>n.singleColumnWidth(s[e],o)),((e,t)=>r.calcLeftEdgeDeltas(s,e,t,o,n.minCellWidth(),n.isRelative)),((e,t,l)=>r.calcMiddleDeltas(s,e,t,l,o,n.minCellWidth(),n.isRelative)),((e,t)=>r.calcRightEdgeDeltas(s,e,t,o,n.minCellWidth(),n.isRelative)))})(a,o,i,r,n),d=E(m,((e,t)=>e+a[t]));na(s,d,r),n.resizeTable(r.adjustTableWidth,i,c)},sa=e=>A(e,((e,t)=>O(e,(e=>e.column===t.column))?e:e.concat([t])),[]).sort(((e,t)=>e.column-t.column)),la=ue("col"),aa=ue("colgroup"),ca=e=>"tr"===ne(e)||aa(e),ia=e=>({element:e,colspan:Wt(e,"colspan",1),rowspan:Wt(e,"rowspan",1)}),ma=e=>we(e,"scope").map((e=>e.substr(0,3))),da=(e,t=ia)=>{const o=o=>{if(ca(o))return aa((r={element:o}).element)?e.colgroup(r):e.row(r);{const r=o,s=(t=>la(t.element)?e.col(t):e.cell(t))(t(r));return n=C.some({item:r,replacement:s}),s}var r};let n=C.none();return{getOrInit:(e,t)=>n.fold((()=>o(e)),(n=>t(e,n.item)?n.replacement:o(e)))}},ua=e=>t=>{const o=[],n=n=>{const r="td"===e?{scope:null}:{},s=t.replace(n,e,r);return o.push({item:n,sub:s}),s};return{replaceOrInit:(e,t)=>{if(ca(e)||la(e))return e;{const r=e;return((e,t)=>L(o,(o=>t(o.item,e))))(r,t).fold((()=>n(r)),(o=>t(e,o.item)?o.sub:n(r)))}}}},fa=e=>({unmerge:t=>{const o=ma(t);return o.each((e=>ge(t,"scope",e))),()=>{const n=e.cell({element:t,colspan:1,rowspan:1});return Lt(n,"width"),Lt(t,"width"),o.each((e=>ge(n,"scope",e))),n}},merge:e=>(Lt(e[0],"width"),(()=>{const t=yt(E(e,ma));if(0===t.length)return C.none();{const e=t[0],o=["row","col"];return O(t,(t=>t!==e&&D(o,t)))?C.none():C.from(e)}})().fold((()=>be(e[0],"scope")),(t=>ge(e[0],"scope",t+"group"))),g(e[0]))}),ga=["body","p","div","article","aside","figcaption","figure","footer","header","nav","section","ol","ul","table","thead","tfoot","tbody","caption","tr","td","th","h1","h2","h3","h4","h5","h6","blockquote","pre","address"],ha=hs(),pa=e=>((e,t)=>{const o=e.property().name(t);return D(ga,o)})(ha,e),wa=e=>((e,t)=>{const o=e.property().name(t);return D(["ol","ul"],o)})(ha,e),ba=e=>{const t=ue("br"),o=e=>Cr(e).bind((o=>{const n=Ae(o).map((e=>!!pa(e)||!!((e,t)=>D(["br","img","hr","input"],e.property().name(t)))(ha,e)&&"img"!==ne(e))).getOr(!1);return Ne(o).map((r=>{return!0===n||("li"===ne(s=r)||ft(s,wa).isSome())||t(o)||pa(r)&&!Re(e,r)?[]:[xe.fromTag("br")];var s}))})).getOr([]),n=(()=>{const n=j(e,(e=>{const n=Le(e);return(e=>P(e,(e=>t(e)||ie(e)&&0===hr(e).trim().length)))(n)?[]:n.concat(o(e))}));return 0===n.length?[xe.fromTag("br")]:n})();Ve(e[0]),$e(e[0],n)},va=e=>Qr(e,!0),ya=e=>{0===Ut(e).length&&qe(e)},xa=(e,t)=>({grid:e,cursor:t}),Ca=(e,t,o)=>{const n=((e,t,o)=>{var n,r;const s=qo(e).rows;return C.from(null===(r=null===(n=s[t])||void 0===n?void 0:n.cells[o])||void 0===r?void 0:r.element).filter(va).orThunk((()=>(e=>V(e,(e=>V(e.cells,(e=>{const t=e.element;return xt(va(t),t)})))))(s)))})(e,t,o);return xa(e,n)},Sa=e=>A(e,((e,t)=>O(e,(e=>e.row===t.row))?e:e.concat([t])),[]).sort(((e,t)=>e.row-t.row)),Ta=(e,t)=>(o,n,r,s,l)=>{const a=Sa(n),c=E(a,(e=>e.row)),i=((e,t,o,n,r,s,l)=>{const{cols:a,rows:c}=qo(e),i=c[t[0]],m=j(t,(e=>((e,t,o)=>{const n=e[t];return j(n.cells,((n,r)=>Ul(e,t,r,o)?[]:[n]))})(c,e,r))),d=E(i.cells,((e,t)=>nl(Jl(c,t,r)))),u=[...c];N(t,(e=>{u[e]=l.transformRow(c[e],o)}));const f=[...a,...u],g=((e,t)=>P(t,h)&&nl(e.cells)?x:(e,o,n)=>!("th"===ne(e.element)&&t[n]))(i,d),p=((e,t)=>(o,n,r)=>C.some(Gl(e,o.element,"col",t[r])))(n,d);return Yl(f,m,r,s,l.transformCell,p,g)})(o,c,e,t,r,s.replaceOrInit,l);return Ca(i,n[0].row,n[0].column)},Ra=Ta("thead",!0),Da=Ta("tbody",!1),Oa=Ta("tfoot",!1),ka=(e,t,o)=>{const n=((e,t)=>Qt(e,(()=>t)))(e,o.section),r=en(n);return xl(r,t,!0)},Ea=(e,t,o,n)=>((e,t,o,n)=>{const r=en(t),s=n.getWidths(r,n);na(r,s,n)})(0,t,0,n.sizing),Na=(e,t,o,n)=>((e,t,o,n,r)=>{const s=en(t),l=n.getWidths(s,n),a=n.pixelWidth(),{newSizes:c,delta:i}=r.calcRedestributedWidths(l,a,o.pixelDelta,n.isRelative);na(s,c,n),n.adjustTableWidth(i)})(0,t,o,n.sizing,n.resize),Ba=(e,t)=>O(t,(e=>0===e.column&&e.isLocked)),_a=(e,t)=>O(t,(t=>t.column+t.colspan>=e.grid.columns&&t.isLocked)),za=(e,t)=>{const o=cn(e),n=sa(t);return A(n,((e,t)=>e+o[t.column].map(Wo).getOr(0)),0)},Aa=e=>(t,o)=>Ol(t,o).filter((o=>!(e?Ba:_a)(t,o))).map((e=>({details:e,pixelDelta:za(t,e)}))),La=e=>(t,o)=>Dl(t,o).filter((o=>!(e?Ba:_a)(t,o.cells))),Wa=ua("th"),Ma=ua("td"),ja=Rl(((e,t,o,n)=>{const r=t[0].row,s=Sa(t),l=z(s,((e,t)=>({grid:Vl(e.grid,r,t.row+e.delta,o,n.getOrInit),delta:e.delta+1})),{grid:e,delta:0}).grid;return Ca(l,r,t[0].column)}),Ol,f,f,da),Pa=Rl(((e,t,o,n)=>{const r=Sa(t),s=r[r.length-1],l=s.row+s.rowspan,a=z(r,((e,t)=>Vl(e,l,t.row,o,n.getOrInit)),e);return Ca(a,l,t[0].column)}),Ol,f,f,da),Ia=Rl(((e,t,o,n)=>{const r=t.details,s=sa(r),l=s[0].column,a=z(s,((e,t)=>({grid:ql(e.grid,l,t.column+e.delta,o,n.getOrInit),delta:e.delta+1})),{grid:e,delta:0}).grid;return Ca(a,r[0].row,l)}),Aa(!0),Na,f,da),Fa=Rl(((e,t,o,n)=>{const r=t.details,s=r[r.length-1],l=s.column+s.colspan,a=sa(r),c=z(a,((e,t)=>ql(e,l,t.column,o,n.getOrInit)),e);return Ca(c,r[0].row,l)}),Aa(!1),Na,f,da),Ha=Rl(((e,t,o,n)=>{const r=sa(t.details),s=((e,t)=>j(e,(e=>{const o=e.cells,n=z(t,((e,t)=>t>=0&&t<e.length?e.slice(0,t).concat(e.slice(t+1)):e),o);return n.length>0?[tt(e.element,n,e.section,e.isNew)]:[]})))(e,E(r,(e=>e.column))),l=s.length>0?s[0].cells.length-1:0;return Ca(s,r[0].row,Math.min(r[0].column,l))}),((e,t)=>kl(e,t).map((t=>({details:t,pixelDelta:-za(e,t)})))),Na,ya,da),$a=Rl(((e,t,o,n)=>{const r=Sa(t),s=((e,t,o)=>{const{rows:n,cols:r}=qo(e);return[...r,...n.slice(0,t),...n.slice(o+1)]})(e,r[0].row,r[r.length-1].row),l=s.length>0?s.length-1:0;return Ca(s,Math.min(t[0].row,l),t[0].column)}),Ol,f,ya,da),Va=Rl(((e,t,o,n)=>{const r=sa(t),s=E(r,(e=>e.column)),l=Ql(e,s,!0,o,n.replaceOrInit);return Ca(l,t[0].row,t[0].column)}),kl,f,f,Wa),qa=Rl(((e,t,o,n)=>{const r=sa(t),s=E(r,(e=>e.column)),l=Ql(e,s,!1,o,n.replaceOrInit);return Ca(l,t[0].row,t[0].column)}),kl,f,f,Ma),Ua=Rl(Ra,kl,f,f,Wa),Ga=Rl(Da,kl,f,f,Ma),Ka=Rl(Oa,kl,f,f,Ma),Ya=Rl(((e,t,o,n)=>{const r=Xl(e,t,o,n.replaceOrInit);return Ca(r,t[0].row,t[0].column)}),kl,f,f,Wa),Ja=Rl(((e,t,o,n)=>{const r=Xl(e,t,o,n.replaceOrInit);return Ca(r,t[0].row,t[0].column)}),kl,f,f,Ma),Qa=Rl(((e,t,o,n)=>{const r=t.cells;ba(r);const s=((e,t,o,n)=>{const r=qo(e).rows;if(0===r.length)return e;for(let e=t.startRow;e<=t.finishRow;e++)for(let o=t.startCol;o<=t.finishCol;o++){const t=r[e],s=Ho(t,o).isLocked;Io(t,o,et(n(),!1,s))}return e})(e,t.bounds,0,n.merge(r));return xa(s,C.from(r[0]))}),((e,t)=>((e,t)=>t.mergable)(0,t).filter((t=>El(e,t.cells)))),Ea,f,fa),Xa=Rl(((e,t,o,n)=>{const r=z(t,((e,t)=>Nl(e,t,o,n.unmerge(t))),e);return xa(r,C.from(t[0]))}),((e,t)=>((e,t)=>t.unmergable)(0,t).filter((t=>El(e,t)))),Ea,f,fa),Za=Rl(((e,t,o,n)=>{const r=((e,t)=>{const o=Zo(e);return xl(o,t,!0)})(t.clipboard,t.generators);var s,l;return((e,t,o,n,r)=>{const s=Yo(t),l=((e,t,o)=>{const n=Vo(t[0]),r=qo(t).cols.length+e.row,s=k(n-e.column,(t=>t+e.column));return{row:r,column:L(s,(e=>P(o,(t=>t!==e)))).getOr(n-1)}})(e,t,s),a=qo(o).rows,c=Fl(l,a,s),i=((e,t,o)=>{if(e.row>=t.length||e.column>Vo(t[0]))return zl.error("invalid start address out of table bounds, row: "+e.row+", column: "+e.column);const n=t.slice(e.row),r=n[0].cells.slice(e.column),s=Vo(o[0]),l=o.length;return zl.value({rowDelta:n.length-l,colDelta:r.length-s})})(l,t,a);return i.map((e=>{const o={...e,colDelta:e.colDelta-c.length},s=Pl(t,o,n),i=Yo(s),m=Fl(l,a,i);return((e,t,o,n,r,s)=>{const l=e.row,a=e.column,c=l+o.length,i=a+Vo(o[0])+s.length,m=I(s,x);for(let e=l;e<c;e++){let s=0;for(let c=a;c<i;c++){if(m[c]){s++;continue}Il(t,e,c,r)&&Nl(t,$o(t[e],c),r,n.cell);const i=c-a-s,d=Ho(o[e-l],i),u=d.element,f=n.replace(u);Io(t[e],c,et(f,!0,d.isLocked))}}return t})(l,s,a,n,r,m)}))})((s=t.row,l=t.column,{row:s,column:l}),e,r,t.generators,o).fold((()=>xa(e,C.some(t.element))),(e=>Ca(e,t.row,t.column)))}),((e,t)=>qt(t.element).bind((o=>Sl(e,o).map((e=>({...e,generators:t.generators,clipboard:t.clipboard})))))),Ea,f,da),ec=Rl(((e,t,o,n)=>{const r=qo(e).rows,s=t.cells[0].column,l=r[t.cells[0].row],a=ka(t.clipboard,t.generators,l),c=Hl(s,e,a,t.generators,o);return Ca(c,t.cells[0].row,t.cells[0].column)}),La(!0),f,f,da),tc=Rl(((e,t,o,n)=>{const r=qo(e).rows,s=t.cells[t.cells.length-1].column+t.cells[t.cells.length-1].colspan,l=r[t.cells[0].row],a=ka(t.clipboard,t.generators,l),c=Hl(s,e,a,t.generators,o);return Ca(c,t.cells[0].row,t.cells[0].column)}),La(!1),f,f,da),oc=Rl(((e,t,o,n)=>{const r=qo(e).rows,s=t.cells[0].row,l=r[s],a=ka(t.clipboard,t.generators,l),c=$l(s,e,a,t.generators,o);return Ca(c,t.cells[0].row,t.cells[0].column)}),Dl,f,f,da),nc=Rl(((e,t,o,n)=>{const r=qo(e).rows,s=t.cells[t.cells.length-1].row+t.cells[t.cells.length-1].rowspan,l=r[t.cells[0].row],a=ka(t.clipboard,t.generators,l),c=$l(s,e,a,t.generators,o);return Ca(c,t.cells[0].row,t.cells[0].column)}),Dl,f,f,da),rc=(e,t)=>{const o=Zo(e);return Ol(o,t).bind((e=>{const t=e[e.length-1],n=e[0].column,r=t.column+t.colspan,s=M(E(o.all,(e=>_(e.cells,(e=>e.column>=n&&e.column<r)))));return ll(s)})).getOr("")},sc=(e,t)=>{const o=Zo(e);return Ol(o,t).bind(ll).getOr("")},lc=(e,t)=>{const o=Zo(e);return Ol(o,t).bind((e=>{const t=e[e.length-1],n=e[0].row,r=t.row+t.rowspan;return(e=>{const t=E(e,(e=>sl(e).type)),o=D(t,"header"),n=D(t,"footer");if(o||n){const e=D(t,"body");return!o||e||n?o||e||!n?C.none():C.some("footer"):C.some("header")}return C.some("body")})(o.all.slice(n,r))})).getOr("")},ac=(e,t)=>e.dispatch("NewRow",{node:t}),cc=(e,t)=>e.dispatch("NewCell",{node:t}),ic=(e,t,o)=>{e.dispatch("TableModified",{...o,table:t})},mc={structure:!1,style:!0},dc={structure:!0,style:!1},uc={structure:!0,style:!0},fc=(e,t)=>Hr(e)?ur(t):$r(e)?dr(t):mr(t),gc=(e,t,o)=>{const n=e=>"table"===ne(Zr(e)),r=Wr(e),s=Ir(e)?f:Gs,l=t=>{switch(Mr(e)){case"section":return ul();case"sectionCells":return fl();case"cells":return gl();default:return((e,t)=>{var o;switch((o=Zo(e),V(o.all,(e=>{const t=sl(e);return"header"===t.type?C.from(t.subType):C.none()}))).getOr(t)){case"section":return il();case"sectionCells":return ml();case"cells":return dl()}})(t,"section")}},a=(n,s,a,c)=>(i,m,d=!1)=>{ts(i);const u=xe.fromDom(e.getDoc()),f=Br(a,u,r),g={sizing:fc(e,i),resize:Ir(e)?Zs():el(),section:l(i)};return s(i)?n(i,m,f,g).bind((n=>{t.refresh(i.dom),N(n.newRows,(t=>{ac(e,t.dom)})),N(n.newCells,(t=>{cc(e,t.dom)}));const r=((t,n)=>n.cursor.fold((()=>{const n=Ut(t);return H(n).filter(lt).map((n=>{o.clearSelectedCells(t.dom);const r=e.dom.createRng();return r.selectNode(n.dom),e.selection.setRng(r),ge(n,"data-mce-selected","1"),r}))}),(n=>{const r=qs(Us,n),s=e.dom.createRng();return s.setStart(r.element.dom,r.offset),s.setEnd(r.element.dom,r.offset),e.selection.setRng(s),o.clearSelectedCells(t.dom),C.some(s)})))(i,n);return lt(i)&&(ts(i),d||ic(e,i.dom,c)),r.map((e=>({rng:e,effect:c})))})):C.none()},c=a($a,(t=>!n(e)||tl(t).rows>1),f,dc),i=a(Ha,(t=>!n(e)||tl(t).columns>1),f,dc);return{deleteRow:c,deleteColumn:i,insertRowsBefore:a(ja,x,f,dc),insertRowsAfter:a(Pa,x,f,dc),insertColumnsBefore:a(Ia,x,s,dc),insertColumnsAfter:a(Fa,x,s,dc),mergeCells:a(Qa,x,f,dc),unmergeCells:a(Xa,x,f,dc),pasteColsBefore:a(ec,x,f,dc),pasteColsAfter:a(tc,x,f,dc),pasteRowsBefore:a(oc,x,f,dc),pasteRowsAfter:a(nc,x,f,dc),pasteCells:a(Za,x,f,uc),makeCellsHeader:a(Ya,x,f,dc),unmakeCellsHeader:a(Ja,x,f,dc),makeColumnsHeader:a(Va,x,f,dc),unmakeColumnsHeader:a(qa,x,f,dc),makeRowsHeader:a(Ua,x,f,dc),makeRowsBody:a(Ga,x,f,dc),makeRowsFooter:a(Ka,x,f,dc),getTableRowType:lc,getTableCellType:sc,getTableColType:rc}},hc=(e,t,o)=>{const n=Wt(e,t,1);1===o||n<=1?be(e,t):ge(e,t,Math.min(o,n))},pc=(e,t)=>o=>{const n=o.column+o.colspan-1,r=o.column;return n>=e&&r<t},wc=Zl([{invalid:["raw"]},{pixels:["value"]},{percent:["value"]}]),bc=(e,t,o)=>{const n=o.substring(0,o.length-e.length),r=parseFloat(n);return n===r.toString()?t(r):wc.invalid(o)},vc={...wc,from:e=>Rt(e,"%")?bc("%",wc.percent,e):Rt(e,"px")?bc("px",wc.pixels,e):wc.invalid(e)},yc=(e,t,o)=>{const n=vc.from(o),r=P(e,(e=>"0px"===e))?((e,t)=>{const o=e.fold((()=>g("")),(e=>g(e/t+"px")),(()=>g(100/t+"%")));return k(t,o)})(n,e.length):((e,t,o)=>e.fold((()=>t),(e=>((e,t,o)=>{const n=o/t;return E(e,(e=>vc.from(e).fold((()=>e),(e=>e*n+"px"),(e=>e/100*o+"px"))))})(t,o,e)),(e=>((e,t)=>E(e,(e=>vc.from(e).fold((()=>e),(e=>e/t*100+"%"),(e=>e+"%")))))(t,o))))(n,e,t);return Sc(r)},xc=(e,t)=>0===e.length?t:z(e,((e,t)=>vc.from(t).fold(g(0),h,h)+e),0),Cc=(e,t)=>vc.from(e).fold(g(e),(e=>e+t+"px"),(e=>e+t+"%")),Sc=e=>{if(0===e.length)return e;const t=z(e,((e,t)=>{const o=vc.from(t).fold((()=>({value:t,remainder:0})),(e=>((e,t)=>{const o=Math.floor(e);return{value:o+"px",remainder:e-o}})(e)),(e=>({value:e+"%",remainder:0})));return{output:[o.value].concat(e.output),remainder:e.remainder+o.remainder}}),{output:[],remainder:0}),o=t.output;return o.slice(0,o.length-1).concat([Cc(o[o.length-1],Math.round(t.remainder))])},Tc=vc.from,Rc=e=>Tc(e).fold(g("px"),g("px"),g("%")),Dc=(e,t,o)=>{const n=Zo(e),r=n.all,s=rn(n),l=sn(n);t.each((t=>{const o=Rc(t),r=Lo(e),a=((e,t)=>nr(e,t,er,rr))(n,e),c=yc(a,r,t);ln(n)?((e,t,o)=>{N(t,((t,n)=>{const r=xc([e[n]],Ft());Nt(t.element,"width",r+o)}))})(c,l,o):((e,t,o)=>{N(t,(t=>{const n=e.slice(t.column,t.colspan+t.column),r=xc(n,Ft());Nt(t.element,"width",r+o)}))})(c,s,o),Nt(e,"width",t)})),o.each((t=>{const o=Rc(t),l=hn(e),a=((e,t,o)=>lr(e,t,o,tr,rr))(n,e,_n);((e,t,o,n)=>{N(o,(t=>{const o=e.slice(t.row,t.rowspan+t.row),r=xc(o,Ht());Nt(t.element,"height",r+n)})),N(t,((t,o)=>{Nt(t.element,"height",e[o])}))})(yc(a,l,t),r,s,o),Nt(e,"height",t)}))},Oc=e=>Un(e).exists((e=>Mn.test(e))),kc=e=>Un(e).exists((e=>jn.test(e))),Ec=e=>Un(e).isNone(),Nc=e=>{be(e,"width")},Bc=e=>{const t=Qn(e);Dc(e,C.some(t),C.none()),Nc(e)},_c=e=>{const t=(e=>Lo(e)+"px")(e);Dc(e,C.some(t),C.none()),Nc(e)},zc=e=>{Lt(e,"width");const t=Gt(e),o=t.length>0?t:Ut(e);N(o,(e=>{Lt(e,"width"),Nc(e)})),Nc(e)},Ac={styles:{"border-collapse":"collapse",width:"100%"},attributes:{border:"1"},colGroups:!1},Lc=(e,t,o,n)=>k(e,(e=>((e,t,o,n)=>{const r=xe.fromTag("tr");for(let s=0;s<e;s++){const e=xe.fromTag(n<t||s<o?"th":"td");s<o&&ge(e,"scope","row"),n<t&&ge(e,"scope","col"),Ie(e,xe.fromTag("br")),Ie(r,e)}return r})(t,o,n,e))),Wc=(e,t)=>{e.selection.select(t.dom,!0),e.selection.collapse(!0)},Mc=(e,t,o,n,s)=>{const l=(e=>{const t=e.options,o=t.get("table_default_styles");return t.isSet("table_default_styles")?o:((e,t)=>Vr(e)||!Ur(e)?t:$r(e)?{...t,width:Lr(e)}:{...t,width:Ar})(e,o)})(e),a={styles:l,attributes:Kr(e),colGroups:Yr(e)};return e.undoManager.ignore((()=>{const r=((e,t,o,n,r,s=Ac)=>{const l=xe.fromTag("table"),a="cells"!==r;Bt(l,s.styles),he(l,s.attributes),s.colGroups&&Ie(l,(e=>{const t=xe.fromTag("colgroup");return k(e,(()=>Ie(t,xe.fromTag("col")))),t})(t));const c=Math.min(e,o);if(a&&o>0){const e=xe.fromTag("thead");Ie(l,e);const s=Lc(o,t,"sectionCells"===r?c:0,n);$e(e,s)}const i=xe.fromTag("tbody");Ie(l,i);const m=Lc(a?e-c:e,t,a?0:o,n);return $e(i,m),l})(o,t,s,n,Mr(e),a);ge(r,"data-mce-id","__mce");const l=(e=>{const t=xe.fromTag("div"),o=xe.fromDom(e.dom.cloneNode(!0));return Ie(t,o),(e=>e.dom.innerHTML)(t)})(r);e.insertContent(l),e.addVisual()})),wt(Zr(e),'table[data-mce-id="__mce"]').map((t=>($r(e)?_c(t):Vr(e)?zc(t):(Hr(e)||(e=>r(e)&&-1!==e.indexOf("%"))(l.width))&&Bc(t),ts(t),be(t,"data-mce-id"),((e,t)=>{N(dt(t,"tr"),(t=>{ac(e,t.dom),N(dt(t,"th,td"),(t=>{cc(e,t.dom)}))}))})(e,t),((e,t)=>{wt(t,"td,th").each(w(Wc,e))})(e,t),t.dom))).getOrNull()};var jc=tinymce.util.Tools.resolve("tinymce.FakeClipboard");const Pc="x-tinymce/dom-table-",Ic=Pc+"rows",Fc=Pc+"columns",Hc=e=>{const t=jc.FakeClipboardItem(e);jc.write([t])},$c=e=>{var t;const o=null!==(t=jc.read())&&void 0!==t?t:[];return V(o,(t=>C.from(t.getType(e))))},Vc=e=>{$c(e).isSome()&&jc.clear()},qc=e=>{e.fold(Gc,(e=>Hc({[Ic]:e})))},Uc=()=>$c(Ic),Gc=()=>Vc(Ic),Kc=e=>{e.fold(Jc,(e=>Hc({[Fc]:e})))},Yc=()=>$c(Fc),Jc=()=>Vc(Fc),Qc=e=>Ms(os(e),es(e)).filter(ss),Xc=(e,t)=>{const o=es(e),n=e=>Kt(e,o),l=t=>(e=>js(os(e),es(e)).filter(ss))(e).bind((e=>n(e).map((o=>t(o,e))))),a=t=>{e.focus()},c=(t,o=!1)=>l(((n,r)=>{const s=Ls(Ps(e),n,r);t(n,s,o).each(a)})),i=()=>l(((t,o)=>((e,t,o)=>{const n=Zo(e);return Ol(n,t).bind((e=>{const t=xl(n,o,!1),r=qo(t).rows.slice(e[0].row,e[e.length-1].row+e[e.length-1].rowspan),s=j(r,(e=>{const t=_(e.cells,(e=>!e.isLocked));return t.length>0?[{...e,cells:t}]:[]})),l=Cl(s);return xt(l.length>0,l)})).map((e=>E(e,(e=>{const t=Ke(e.element);return N(e.cells,(e=>{const o=Ye(e.element);pl(o,"colspan",e.colspan,1),pl(o,"rowspan",e.rowspan,1),Ie(t,o)})),t}))))})(t,Ls(Ps(e),t,o),Br(f,xe.fromDom(e.getDoc()),C.none())))),m=()=>l(((t,o)=>((e,t)=>{const o=Zo(e);return kl(o,t).map((e=>{const t=e[e.length-1],n=e[0].column,r=t.column+t.colspan,s=((e,t,o)=>{if(ln(e)){const n=_(sn(e),pc(t,o)),r=E(n,(e=>{const n=Ye(e.element);return hc(n,"span",o-t),n})),s=xe.fromTag("colgroup");return $e(s,r),[s]}return[]})(o,n,r),l=((e,t,o)=>E(e.all,(e=>{const n=_(e.cells,pc(t,o)),r=E(n,(e=>{const n=Ye(e.element);return hc(n,"colspan",o-t),n})),s=xe.fromTag("tr");return $e(s,r),s})))(o,n,r);return[...s,...l]}))})(t,Ls(Ps(e),t,o)))),d=(t,o)=>o().each((o=>{const n=E(o,(e=>Ye(e)));l(((o,r)=>{const s=_r(xe.fromDom(e.getDoc())),l=((e,t,o,n)=>({selection:Os(e),clipboard:o,generators:n}))(Ps(e),0,n,s);t(o,l).each(a)}))})),g=e=>(t,o)=>((e,t)=>X(e,t)?C.from(e[t]):C.none())(o,"type").each((t=>{c(e(t),o.no_events)}));G({mceTableSplitCells:()=>c(t.unmergeCells),mceTableMergeCells:()=>c(t.mergeCells),mceTableInsertRowBefore:()=>c(t.insertRowsBefore),mceTableInsertRowAfter:()=>c(t.insertRowsAfter),mceTableInsertColBefore:()=>c(t.insertColumnsBefore),mceTableInsertColAfter:()=>c(t.insertColumnsAfter),mceTableDeleteCol:()=>c(t.deleteColumn),mceTableDeleteRow:()=>c(t.deleteRow),mceTableCutCol:()=>m().each((e=>{Kc(e),c(t.deleteColumn)})),mceTableCutRow:()=>i().each((e=>{qc(e),c(t.deleteRow)})),mceTableCopyCol:()=>m().each((e=>Kc(e))),mceTableCopyRow:()=>i().each((e=>qc(e))),mceTablePasteColBefore:()=>d(t.pasteColsBefore,Yc),mceTablePasteColAfter:()=>d(t.pasteColsAfter,Yc),mceTablePasteRowBefore:()=>d(t.pasteRowsBefore,Uc),mceTablePasteRowAfter:()=>d(t.pasteRowsAfter,Uc),mceTableDelete:()=>Qc(e).each((t=>{Kt(t,o).filter(b(o)).each((t=>{const o=xe.fromText("");if(je(t,o),qe(t),e.dom.isEmpty(e.getBody()))e.setContent(""),e.selection.setCursorLocation();else{const t=e.dom.createRng();t.setStart(o.dom,0),t.setEnd(o.dom,0),e.selection.setRng(t),e.nodeChanged()}}))})),mceTableCellToggleClass:(t,o)=>{l((t=>{const n=Ps(e),r=P(n,(t=>e.formatter.match("tablecellclass",{value:o},t.dom))),s=r?e.formatter.remove:e.formatter.apply;N(n,(e=>s("tablecellclass",{value:o},e.dom))),ic(e,t.dom,mc)}))},mceTableToggleClass:(t,o)=>{l((t=>{e.formatter.toggle("tableclass",{value:o},t.dom),ic(e,t.dom,mc)}))},mceTableToggleCaption:()=>{Qc(e).each((t=>{Kt(t,o).each((o=>{pt(o,"caption").fold((()=>{const t=xe.fromTag("caption");Ie(t,xe.fromText("Caption")),((e,t,o)=>{We(e,0).fold((()=>{Ie(e,t)}),(e=>{Me(e,t)}))})(o,t),e.selection.setCursorLocation(t.dom,0)}),(n=>{ue("caption")(t)&&Te("td",o).each((t=>e.selection.setCursorLocation(t.dom,0))),qe(n)})),ic(e,o.dom,dc)}))}))},mceTableSizingMode:(t,n)=>(t=>Qc(e).each((n=>{Vr(e)||$r(e)||Hr(e)||Kt(n,o).each((o=>{"relative"!==t||Oc(o)?"fixed"!==t||kc(o)?"responsive"!==t||Ec(o)||zc(o):_c(o):Bc(o),ts(o),ic(e,o.dom,dc)}))})))(n),mceTableCellType:g((e=>"th"===e?t.makeCellsHeader:t.unmakeCellsHeader)),mceTableColType:g((e=>"th"===e?t.makeColumnsHeader:t.unmakeColumnsHeader)),mceTableRowType:g((e=>{switch(e){case"header":return t.makeRowsHeader;case"footer":return t.makeRowsFooter;default:return t.makeRowsBody}}))},((t,o)=>e.addCommand(o,t))),e.addCommand("mceInsertTable",((t,o)=>{((e,t,o,n={})=>{const r=e=>u(e)&&e>0;if(r(t)&&r(o)){const r=n.headerRows||0,s=n.headerColumns||0;return Mc(e,o,t,s,r)}console.error("Invalid values for mceInsertTable - rows and columns values are required to insert a table.")})(e,o.rows,o.columns,o.options)})),e.addCommand("mceTableApplyCellStyle",((t,o)=>{const l=e=>"tablecell"+e.toLowerCase().replace("-","");if(!s(o))return;const a=_(Ps(e),ss);if(0===a.length)return;const c=((e,t)=>{const o={};return((e,t,o,n)=>{G(e,((e,r)=>{(t(e,r)?o:n)(e,r)}))})(e,t,(e=>(t,o)=>{e[o]=t})(o),f),o})(o,((t,o)=>e.formatter.has(l(o))&&r(t)));(e=>{for(const t in e)if(U.call(e,t))return!1;return!0})(c)||(G(c,((t,o)=>{const n=l(o);N(a,(o=>{""===t?e.formatter.remove(n,{value:null},o.dom,!0):e.formatter.apply(n,{value:t},o.dom)}))})),n(a[0]).each((t=>ic(e,t.dom,mc))))}))},Zc=Zl([{before:["element"]},{on:["element","offset"]},{after:["element"]}]),ei={before:Zc.before,on:Zc.on,after:Zc.after,cata:(e,t,o,n)=>e.fold(t,o,n),getStart:e=>e.fold(h,h,h)},ti=(e,t)=>({selection:e,kill:t}),oi=(e,t)=>{const o=e.document.createRange();return o.selectNode(t.dom),o},ni=(e,t)=>{const o=e.document.createRange();return ri(o,t),o},ri=(e,t)=>e.selectNodeContents(t.dom),si=(e,t,o)=>{const n=e.document.createRange();var r;return r=n,t.fold((e=>{r.setStartBefore(e.dom)}),((e,t)=>{r.setStart(e.dom,t)}),(e=>{r.setStartAfter(e.dom)})),((e,t)=>{t.fold((t=>{e.setEndBefore(t.dom)}),((t,o)=>{e.setEnd(t.dom,o)}),(t=>{e.setEndAfter(t.dom)}))})(n,o),n},li=(e,t,o,n,r)=>{const s=e.document.createRange();return s.setStart(t.dom,o),s.setEnd(n.dom,r),s},ai=e=>({left:e.left,top:e.top,right:e.right,bottom:e.bottom,width:e.width,height:e.height}),ci=Zl([{ltr:["start","soffset","finish","foffset"]},{rtl:["start","soffset","finish","foffset"]}]),ii=(e,t,o)=>t(xe.fromDom(o.startContainer),o.startOffset,xe.fromDom(o.endContainer),o.endOffset),mi=(e,t)=>{const o=((e,t)=>t.match({domRange:e=>({ltr:g(e),rtl:C.none}),relative:(t,o)=>({ltr:eo((()=>si(e,t,o))),rtl:eo((()=>C.some(si(e,o,t))))}),exact:(t,o,n,r)=>({ltr:eo((()=>li(e,t,o,n,r))),rtl:eo((()=>C.some(li(e,n,r,t,o))))})}))(e,t);return((e,t)=>{const o=t.ltr();return o.collapsed?t.rtl().filter((e=>!1===e.collapsed)).map((e=>ci.rtl(xe.fromDom(e.endContainer),e.endOffset,xe.fromDom(e.startContainer),e.startOffset))).getOrThunk((()=>ii(0,ci.ltr,o))):ii(0,ci.ltr,o)})(0,o)},di=(e,t)=>mi(e,t).match({ltr:(t,o,n,r)=>{const s=e.document.createRange();return s.setStart(t.dom,o),s.setEnd(n.dom,r),s},rtl:(t,o,n,r)=>{const s=e.document.createRange();return s.setStart(n.dom,r),s.setEnd(t.dom,o),s}});ci.ltr,ci.rtl;const ui=(e,t,o,n)=>({start:e,soffset:t,finish:o,foffset:n}),fi=(e,t,o,n)=>({start:ei.on(e,t),finish:ei.on(o,n)}),gi=(e,t)=>{const o=di(e,t);return ui(xe.fromDom(o.startContainer),o.startOffset,xe.fromDom(o.endContainer),o.endOffset)},hi=fi,pi=(e,t,o,n,r)=>Re(o,n)?C.none():xs(o,n,t).bind((t=>{const n=t.boxes.getOr([]);return n.length>1?(r(e,n,t.start,t.finish),C.some(ti(C.some(hi(o,0,o,br(o))),!0))):C.none()})),wi=(e,t)=>({item:e,mode:t}),bi=(e,t,o,n=vi)=>e.property().parent(t).map((e=>wi(e,n))),vi=(e,t,o,n=yi)=>o.sibling(e,t).map((e=>wi(e,n))),yi=(e,t,o,n=yi)=>{const r=e.property().children(t);return o.first(r).map((e=>wi(e,n)))},xi=[{current:bi,next:vi,fallback:C.none()},{current:vi,next:yi,fallback:C.some(bi)},{current:yi,next:yi,fallback:C.some(vi)}],Ci=(e,t,o,n,r=xi)=>L(r,(e=>e.current===o)).bind((o=>o.current(e,t,n,o.next).orThunk((()=>o.fallback.bind((o=>Ci(e,t,o,n))))))),Si=(e,t,o,n,r,s)=>Ci(e,t,n,r).bind((t=>s(t.item)?C.none():o(t.item)?C.some(t.item):Si(e,t.item,o,t.mode,r,s))),Ti=e=>t=>0===e.property().children(t).length,Ri=(e,t,o,n)=>Si(e,t,o,vi,{sibling:(e,t)=>e.query().prevSibling(t),first:e=>e.length>0?C.some(e[e.length-1]):C.none()},n),Di=(e,t,o,n)=>Si(e,t,o,vi,{sibling:(e,t)=>e.query().nextSibling(t),first:e=>e.length>0?C.some(e[0]):C.none()},n),Oi=hs(),ki=(e,t)=>((e,t,o)=>Ri(e,t,Ti(e),o))(Oi,e,t),Ei=(e,t)=>((e,t,o)=>Di(e,t,Ti(e),o))(Oi,e,t),Ni=Zl([{none:["message"]},{success:[]},{failedUp:["cell"]},{failedDown:["cell"]}]),Bi=e=>bt(e,"tr"),_i={...Ni,verify:(e,t,o,n,r,s,l)=>bt(n,"td,th",l).bind((o=>bt(t,"td,th",l).map((t=>Re(o,t)?Re(n,o)&&br(o)===r?s(t):Ni.none("in same cell"):vs(Bi,[o,t]).fold((()=>((e,t,o)=>{const n=e.getRect(t),r=e.getRect(o);return r.right>n.left&&r.left<n.right})(e,t,o)?Ni.success():s(t)),(e=>s(t))))))).getOr(Ni.none("default")),cata:(e,t,o,n,r)=>e.fold(t,o,n,r)},zi=ue("br"),Ai=(e,t,o)=>t(e,o).bind((e=>ie(e)&&0===hr(e).trim().length?Ai(e,t,o):C.some(e))),Li=(e,t,o,n)=>((e,t)=>We(e,t).filter(zi).orThunk((()=>We(e,t-1).filter(zi))))(t,o).bind((t=>n.traverse(t).fold((()=>Ai(t,n.gather,e).map(n.relative)),(e=>(e=>Ne(e).bind((t=>{const o=Le(t);return((e,t)=>W(e,w(Re,t)))(o,e).map((n=>((e,t,o,n)=>({parent:e,children:t,element:o,index:n}))(t,o,e,n)))})))(e).map((e=>ei.on(e.parent,e.index))))))),Wi=(e,t)=>({left:e.left,top:e.top+t,right:e.right,bottom:e.bottom+t}),Mi=(e,t)=>({left:e.left,top:e.top-t,right:e.right,bottom:e.bottom-t}),ji=(e,t,o)=>({left:e.left+t,top:e.top+o,right:e.right+t,bottom:e.bottom+o}),Pi=e=>({left:e.left,top:e.top,right:e.right,bottom:e.bottom}),Ii=(e,t)=>C.some(e.getRect(t)),Fi=(e,t,o)=>ce(t)?Ii(e,t).map(Pi):ie(t)?((e,t,o)=>o>=0&&o<br(t)?e.getRangedRect(t,o,t,o+1):o>0?e.getRangedRect(t,o-1,t,o):C.none())(e,t,o).map(Pi):C.none(),Hi=(e,t)=>ce(t)?Ii(e,t).map(Pi):ie(t)?e.getRangedRect(t,0,t,br(t)).map(Pi):C.none(),$i=Zl([{none:[]},{retry:["caret"]}]),Vi=(e,t,o)=>gt(t,pa).fold(y,(t=>Hi(e,t).exists((e=>((e,t)=>e.left<t.left||Math.abs(t.right-e.left)<1||e.left>t.right)(o,e))))),qi={point:e=>e.bottom,adjuster:(e,t,o,n,r)=>{const s=Wi(r,5);return Math.abs(o.bottom-n.bottom)<1||o.top>r.bottom?$i.retry(s):o.top===r.bottom?$i.retry(Wi(r,1)):Vi(e,t,r)?$i.retry(ji(s,5,0)):$i.none()},move:Wi,gather:Ei},Ui=(e,t,o,n,r)=>0===r?C.some(n):((e,t,o)=>e.elementFromPoint(t,o).filter((e=>"table"===ne(e))).isSome())(e,n.left,t.point(n))?((e,t,o,n,r)=>Ui(e,t,o,t.move(n,5),r))(e,t,o,n,r-1):e.situsFromPoint(n.left,t.point(n)).bind((s=>s.start.fold(C.none,(s=>Hi(e,s).bind((l=>t.adjuster(e,s,l,o,n).fold(C.none,(n=>Ui(e,t,o,n,r-1))))).orThunk((()=>C.some(n)))),C.none))),Gi=(e,t,o)=>{const n=e.move(o,5),r=Ui(t,e,o,n,100).getOr(n);return((e,t,o)=>e.point(t)>o.getInnerHeight()?C.some(e.point(t)-o.getInnerHeight()):e.point(t)<0?C.some(-e.point(t)):C.none())(e,r,t).fold((()=>t.situsFromPoint(r.left,e.point(r))),(o=>(t.scrollBy(0,o),t.situsFromPoint(r.left,e.point(r)-o))))},Ki={tryUp:w(Gi,{point:e=>e.top,adjuster:(e,t,o,n,r)=>{const s=Mi(r,5);return Math.abs(o.top-n.top)<1||o.bottom<r.top?$i.retry(s):o.bottom===r.top?$i.retry(Mi(r,1)):Vi(e,t,r)?$i.retry(ji(s,5,0)):$i.none()},move:Mi,gather:ki}),tryDown:w(Gi,qi),getJumpSize:g(5)},Yi=(e,t,o)=>e.getSelection().bind((n=>((e,t,o,n)=>{const r=zi(t)?((e,t,o)=>o.traverse(t).orThunk((()=>Ai(t,o.gather,e))).map(o.relative))(e,t,n):Li(e,t,o,n);return r.map((e=>({start:e,finish:e})))})(t,n.finish,n.foffset,o).fold((()=>C.some(Fs(n.finish,n.foffset))),(r=>{const s=e.fromSitus(r);return l=_i.verify(e,n.finish,n.foffset,s.finish,s.foffset,o.failure,t),_i.cata(l,(e=>C.none()),(()=>C.none()),(e=>C.some(Fs(e,0))),(e=>C.some(Fs(e,br(e)))));var l})))),Ji=(e,t,o,n,r,s)=>0===s?C.none():Zi(e,t,o,n,r).bind((l=>{const a=e.fromSitus(l),c=_i.verify(e,o,n,a.finish,a.foffset,r.failure,t);return _i.cata(c,(()=>C.none()),(()=>C.some(l)),(l=>Re(o,l)&&0===n?Qi(e,o,n,Mi,r):Ji(e,t,l,0,r,s-1)),(l=>Re(o,l)&&n===br(l)?Qi(e,o,n,Wi,r):Ji(e,t,l,br(l),r,s-1)))})),Qi=(e,t,o,n,r)=>Fi(e,t,o).bind((t=>Xi(e,r,n(t,Ki.getJumpSize())))),Xi=(e,t,o)=>{const n=Bo().browser;return n.isChromium()||n.isSafari()||n.isFirefox()?t.retry(e,o):C.none()},Zi=(e,t,o,n,r)=>Fi(e,o,n).bind((t=>Xi(e,r,t))),em=(e,t,o,n,r)=>bt(n,"td,th",t).bind((n=>bt(n,"table",t).bind((s=>((e,t)=>ft(e,(e=>Ne(e).exists((e=>Re(e,t)))),void 0).isSome())(r,s)?((e,t,o)=>Yi(e,t,o).bind((n=>Ji(e,t,n.element,n.offset,o,20).map(e.fromSitus))))(e,t,o).bind((e=>bt(e.finish,"td,th",t).map((t=>({start:n,finish:t,range:e}))))):C.none())))),tm=(e,t,o,n,r,s)=>s(n,t).orThunk((()=>em(e,t,o,n,r).map((e=>{const t=e.range;return ti(C.some(hi(t.start,t.soffset,t.finish,t.foffset)),!0)})))),om=(e,t)=>bt(e,"tr",t).bind((e=>bt(e,"table",t).bind((o=>{const n=dt(o,"tr");return Re(e,n[0])?((e,t,o)=>Ri(Oi,e,(e=>Cr(e).isSome()),o))(o,0,t).map((e=>{const t=br(e);return ti(C.some(hi(e,t,e,t)),!0)})):C.none()})))),nm=(e,t)=>bt(e,"tr",t).bind((e=>bt(e,"table",t).bind((o=>{const n=dt(o,"tr");return Re(e,n[n.length-1])?((e,t,o)=>Di(Oi,e,(e=>xr(e).isSome()),o))(o,0,t).map((e=>ti(C.some(hi(e,0,e,0)),!0))):C.none()})))),rm=(e,t,o,n,r,s,l)=>em(e,o,n,r,s).bind((e=>pi(t,o,e.start,e.finish,l))),sm=e=>{let t=e;return{get:()=>t,set:e=>{t=e}}},lm=()=>{const e=(e=>{const t=sm(C.none()),o=()=>t.get().each(e);return{clear:()=>{o(),t.set(C.none())},isSet:()=>t.get().isSome(),get:()=>t.get(),set:e=>{o(),t.set(C.some(e))}}})(f);return{...e,on:t=>e.get().each(t)}},am=(e,t)=>bt(e,"td,th",t),cm=e=>Be(e).exists(Qr),im={traverse:Ae,gather:Ei,relative:ei.before,retry:Ki.tryDown,failure:_i.failedDown},mm={traverse:ze,gather:ki,relative:ei.before,retry:Ki.tryUp,failure:_i.failedUp},dm=e=>t=>t===e,um=dm(38),fm=dm(40),gm=e=>e>=37&&e<=40,hm={isBackward:dm(37),isForward:dm(39)},pm={isBackward:dm(39),isForward:dm(37)},wm=Zl([{domRange:["rng"]},{relative:["startSitu","finishSitu"]},{exact:["start","soffset","finish","foffset"]}]),bm={domRange:wm.domRange,relative:wm.relative,exact:wm.exact,exactFromRange:e=>wm.exact(e.start,e.soffset,e.finish,e.foffset),getWin:e=>{const t=(e=>e.match({domRange:e=>xe.fromDom(e.startContainer),relative:(e,t)=>ei.getStart(e),exact:(e,t,o,n)=>e}))(e);return xe.fromDom(Ee(t).dom.defaultView)},range:ui},vm=document.caretPositionFromPoint?(e,t,o)=>{var n,r;return C.from(null===(r=(n=e.dom).caretPositionFromPoint)||void 0===r?void 0:r.call(n,t,o)).bind((t=>{if(null===t.offsetNode)return C.none();const o=e.dom.createRange();return o.setStart(t.offsetNode,t.offset),o.collapse(),C.some(o)}))}:document.caretRangeFromPoint?(e,t,o)=>{var n,r;return C.from(null===(r=(n=e.dom).caretRangeFromPoint)||void 0===r?void 0:r.call(n,t,o))}:C.none,ym=(e,t)=>{const o=ne(e);return"input"===o?ei.after(e):D(["br","img"],o)?0===t?ei.before(e):ei.after(e):ei.on(e,t)},xm=e=>C.from(e.getSelection()),Cm=(e,t)=>{xm(e).each((e=>{e.removeAllRanges(),e.addRange(t)}))},Sm=(e,t,o,n,r)=>{const s=li(e,t,o,n,r);Cm(e,s)},Tm=(e,t)=>mi(e,t).match({ltr:(t,o,n,r)=>{Sm(e,t,o,n,r)},rtl:(t,o,n,r)=>{xm(e).each((s=>{if(s.setBaseAndExtent)s.setBaseAndExtent(t.dom,o,n.dom,r);else if(s.extend)try{((e,t,o,n,r,s)=>{t.collapse(o.dom,n),t.extend(r.dom,s)})(0,s,t,o,n,r)}catch(s){Sm(e,n,r,t,o)}else Sm(e,n,r,t,o)}))}}),Rm=(e,t,o,n,r)=>{const s=((e,t,o,n)=>{const r=ym(e,t),s=ym(o,n);return bm.relative(r,s)})(t,o,n,r);Tm(e,s)},Dm=(e,t,o)=>{const n=((e,t)=>{const o=e.fold(ei.before,ym,ei.after),n=t.fold(ei.before,ym,ei.after);return bm.relative(o,n)})(t,o);Tm(e,n)},Om=e=>{if(e.rangeCount>0){const t=e.getRangeAt(0),o=e.getRangeAt(e.rangeCount-1);return C.some(ui(xe.fromDom(t.startContainer),t.startOffset,xe.fromDom(o.endContainer),o.endOffset))}return C.none()},km=e=>{if(null===e.anchorNode||null===e.focusNode)return Om(e);{const t=xe.fromDom(e.anchorNode),o=xe.fromDom(e.focusNode);return((e,t,o,n)=>{const r=((e,t,o,n)=>{const r=ke(e).dom.createRange();return r.setStart(e.dom,t),r.setEnd(o.dom,n),r})(e,t,o,n),s=Re(e,o)&&t===n;return r.collapsed&&!s})(t,e.anchorOffset,o,e.focusOffset)?C.some(ui(t,e.anchorOffset,o,e.focusOffset)):Om(e)}},Em=(e,t,o=!0)=>{const n=(o?ni:oi)(e,t);Cm(e,n)},Nm=e=>(e=>xm(e).filter((e=>e.rangeCount>0)).bind(km))(e).map((e=>bm.exact(e.start,e.soffset,e.finish,e.foffset))),Bm=e=>({elementFromPoint:(t,o)=>xe.fromPoint(xe.fromDom(e.document),t,o),getRect:e=>e.dom.getBoundingClientRect(),getRangedRect:(t,o,n,r)=>{const s=bm.exact(t,o,n,r);return((e,t)=>(e=>{const t=e.getClientRects(),o=t.length>0?t[0]:e.getBoundingClientRect();return o.width>0||o.height>0?C.some(o).map(ai):C.none()})(di(e,t)))(e,s)},getSelection:()=>Nm(e).map((t=>gi(e,t))),fromSitus:t=>{const o=bm.relative(t.start,t.finish);return gi(e,o)},situsFromPoint:(t,o)=>((e,t,o)=>((e,t,o)=>{const n=xe.fromDom(e.document);return vm(n,t,o).map((e=>ui(xe.fromDom(e.startContainer),e.startOffset,xe.fromDom(e.endContainer),e.endOffset)))})(e,t,o))(e,t,o).map((e=>fi(e.start,e.soffset,e.finish,e.foffset))),clearSelection:()=>{(e=>{xm(e).each((e=>e.removeAllRanges()))})(e)},collapseSelection:(t=!1)=>{Nm(e).each((o=>o.fold((e=>e.collapse(t)),((o,n)=>{const r=t?o:n;Dm(e,r,r)}),((o,n,r,s)=>{const l=t?o:r,a=t?n:s;Rm(e,l,a,l,a)}))))},setSelection:t=>{Rm(e,t.start,t.soffset,t.finish,t.foffset)},setRelativeSelection:(t,o)=>{Dm(e,t,o)},selectNode:t=>{Em(e,t,!1)},selectContents:t=>{Em(e,t)},getInnerHeight:()=>e.innerHeight,getScrollY:()=>(e=>{const t=void 0!==e?e.dom:document,o=t.body.scrollLeft||t.documentElement.scrollLeft,n=t.body.scrollTop||t.documentElement.scrollTop;return bn(o,n)})(xe.fromDom(e.document)).top,scrollBy:(t,o)=>{((e,t,o)=>{const n=(void 0!==o?o.dom:document).defaultView;n&&n.scrollBy(e,t)})(t,o,xe.fromDom(e.document))}}),_m=(e,t)=>({rows:e,cols:t}),zm=e=>gt(e,ae).exists(Qr),Am=(e,t)=>zm(e)||zm(t),Lm=e=>void 0!==e.dom.classList,Wm=(e,t)=>((e,t,o)=>{const n=((e,t)=>{const o=pe(e,t);return void 0===o||""===o?[]:o.split(" ")})(e,t).concat([o]);return ge(e,t,n.join(" ")),!0})(e,"class",t),Mm=(e,t)=>{Lm(e)?e.dom.classList.add(t):Wm(e,t)},jm=(e,t)=>Lm(e)&&e.dom.classList.contains(t),Pm=()=>({tag:"none"}),Im=e=>({tag:"multiple",elements:e}),Fm=e=>({tag:"single",element:e}),Hm=e=>{const t=xe.fromDom((e=>{if(nt()&&m(e.target)){const t=xe.fromDom(e.target);if(ce(t)&&m(t.dom.shadowRoot)&&e.composed&&e.composedPath){const t=e.composedPath();if(t)return H(t)}}return C.from(e.target)})(e).getOr(e.target)),o=()=>e.stopPropagation(),n=()=>e.preventDefault(),r=(s=n,l=o,(...e)=>s(l.apply(null,e)));var s,l;return((e,t,o,n,r,s,l)=>({target:e,x:t,y:o,stop:n,prevent:r,kill:s,raw:l}))(t,e.clientX,e.clientY,o,n,r,e)},$m=(e,t,o,n)=>{e.dom.removeEventListener(t,o,n)},Vm=x,qm=(e,t,o)=>((e,t,o,n)=>((e,t,o,n,r)=>{const s=((e,t)=>o=>{e(o)&&t(Hm(o))})(o,n);return e.dom.addEventListener(t,s,r),{unbind:w($m,e,t,s,r)}})(e,t,o,n,!1))(e,t,Vm,o),Um=Hm,Gm=e=>!jm(xe.fromDom(e.target),"ephox-snooker-resizer-bar"),Km=(e,t)=>{const o=(r=As.selectedSelector,{get:()=>Rs(xe.fromDom(e.getBody()),r).fold((()=>js(os(e),es(e)).fold(Pm,Fm)),Im)}),n=((e,t,o)=>{const n=t=>{be(t,e.selected),be(t,e.firstSelected),be(t,e.lastSelected)},r=t=>{ge(t,e.selected,"1")},s=e=>{l(e),o()},l=t=>{const o=dt(t,`${e.selectedSelector},${e.firstSelectedSelector},${e.lastSelectedSelector}`);N(o,n)};return{clearBeforeUpdate:l,clear:s,selectRange:(o,n,l,a)=>{s(o),N(n,r),ge(l,e.firstSelected,"1"),ge(a,e.lastSelected,"1"),t(n,l,a)},selectedSelector:e.selectedSelector,firstSelectedSelector:e.firstSelectedSelector,lastSelectedSelector:e.lastSelectedSelector}})(As,((t,o,n)=>{Kt(o).each((r=>{const s=Wr(e),l=Br(f,xe.fromDom(e.getDoc()),s),a=((e,t,o)=>{const n=Zo(e);return Ol(n,t).map((e=>{const t=xl(n,o,!1),{rows:r}=qo(t),s=((e,t)=>{const o=e.slice(0,t[t.length-1].row+1),n=Cl(o);return j(n,(e=>{const o=e.cells.slice(0,t[t.length-1].column+1);return E(o,(e=>e.element))}))})(r,e),l=((e,t)=>{const o=e.slice(t[0].row+t[0].rowspan-1,e.length),n=Cl(o);return j(n,(e=>{const o=e.cells.slice(t[0].column+t[0].colspan-1,e.cells.length);return E(o,(e=>e.element))}))})(r,e);return{upOrLeftCells:s,downOrRightCells:l}}))})(r,{selection:Ps(e)},l);((e,t,o,n,r)=>{e.dispatch("TableSelectionChange",{cells:t,start:o,finish:n,otherCells:r})})(e,t,o,n,a)}))}),(()=>(e=>{e.dispatch("TableSelectionClear")})(e)));var r;return e.on("init",(o=>{const r=e.getWin(),s=Zr(e),l=es(e),a=((e,t,o,n)=>{const r=((e,t,o,n)=>{const r=lm(),s=r.clear,l=s=>{r.on((r=>{n.clearBeforeUpdate(t),am(s.target,o).each((l=>{xs(r,l,o).each((o=>{const r=o.boxes.getOr([]);if(1===r.length){const o=r[0],l="false"===Xr(o),a=vt(Jr(s.target),o,Re);l&&a&&(n.selectRange(t,r,o,o),e.selectContents(o))}else r.length>1&&(n.selectRange(t,r,o.start,o.finish),e.selectContents(l))}))}))}))};return{clearstate:s,mousedown:e=>{n.clear(t),am(e.target,o).filter(cm).each(r.set)},mouseover:e=>{l(e)},mouseup:e=>{l(e),s()}}})(Bm(e),t,o,n);return{clearstate:r.clearstate,mousedown:r.mousedown,mouseover:r.mouseover,mouseup:r.mouseup}})(r,s,l,n),c=((e,t,o,n)=>{const r=Bm(e),s=()=>(n.clear(t),C.none());return{keydown:(e,l,a,c,i,m)=>{const d=e.raw,u=d.which,f=!0===d.shiftKey,g=Cs(t,n.selectedSelector).fold((()=>(gm(u)&&!f&&n.clearBeforeUpdate(t),gm(u)&&f&&!Am(l,c)?C.none:fm(u)&&f?w(rm,r,t,o,im,c,l,n.selectRange):um(u)&&f?w(rm,r,t,o,mm,c,l,n.selectRange):fm(u)?w(tm,r,o,im,c,l,nm):um(u)?w(tm,r,o,mm,c,l,om):C.none)),(e=>{const o=o=>()=>{const s=V(o,(o=>((e,t,o,n,r)=>Ts(n,e,t,r.firstSelectedSelector,r.lastSelectedSelector).map((e=>(r.clearBeforeUpdate(o),r.selectRange(o,e.boxes,e.start,e.finish),e.boxes))))(o.rows,o.cols,t,e,n)));return s.fold((()=>Ss(t,n.firstSelectedSelector,n.lastSelectedSelector).map((e=>{const o=fm(u)||m.isForward(u)?ei.after:ei.before;return r.setRelativeSelection(ei.on(e.first,0),o(e.table)),n.clear(t),ti(C.none(),!0)}))),(e=>C.some(ti(C.none(),!0))))};return gm(u)&&f&&!Am(l,c)?C.none:fm(u)&&f?o([_m(1,0)]):um(u)&&f?o([_m(-1,0)]):m.isBackward(u)&&f?o([_m(0,-1),_m(-1,0)]):m.isForward(u)&&f?o([_m(0,1),_m(1,0)]):gm(u)&&!f?s:C.none}));return g()},keyup:(e,r,s,l,a)=>Cs(t,n.selectedSelector).fold((()=>{const c=e.raw,i=c.which;return!0===c.shiftKey&&gm(i)&&Am(r,l)?((e,t,o,n,r,s,l)=>Re(o,r)&&n===s?C.none():bt(o,"td,th",t).bind((o=>bt(r,"td,th",t).bind((n=>pi(e,t,o,n,l))))))(t,o,r,s,l,a,n.selectRange):C.none()}),C.none)}})(r,s,l,n),i=((e,t,o,n)=>{const r=Bm(e);return(e,s)=>{n.clearBeforeUpdate(t),xs(e,s,o).each((e=>{const o=e.boxes.getOr([]);n.selectRange(t,o,e.start,e.finish),r.selectContents(s),r.collapseSelection()}))}})(r,s,l,n);e.on("TableSelectorChange",(e=>i(e.start,e.finish)));const m=(t,o)=>{(e=>!0===e.raw.shiftKey)(t)&&(o.kill&&t.kill(),o.selection.each((t=>{const o=bm.relative(t.start,t.finish),n=di(r,o);e.selection.setRng(n)})))},d=e=>0===e.button,u=(()=>{const e=sm(xe.fromDom(s)),t=sm(0);return{touchEnd:o=>{const n=xe.fromDom(o.target);if(ue("td")(n)||ue("th")(n)){const r=e.get(),s=t.get();Re(r,n)&&o.timeStamp-s<300&&(o.preventDefault(),i(n,n))}e.set(n),t.set(o.timeStamp)}}})();e.on("dragstart",(e=>{a.clearstate()})),e.on("mousedown",(e=>{d(e)&&Gm(e)&&a.mousedown(Um(e))})),e.on("mouseover",(e=>{var t;void 0!==(t=e).buttons&&0==(1&t.buttons)||!Gm(e)||a.mouseover(Um(e))})),e.on("mouseup",(e=>{d(e)&&Gm(e)&&a.mouseup(Um(e))})),e.on("touchend",u.touchEnd),e.on("keyup",(t=>{const o=Um(t);if(o.raw.shiftKey&&gm(o.raw.which)){const t=e.selection.getRng(),n=xe.fromDom(t.startContainer),r=xe.fromDom(t.endContainer);c.keyup(o,n,t.startOffset,r,t.endOffset).each((e=>{m(o,e)}))}})),e.on("keydown",(o=>{const n=Um(o);t.hide();const r=e.selection.getRng(),s=xe.fromDom(r.startContainer),l=xe.fromDom(r.endContainer),a=un(hm,pm)(xe.fromDom(e.selection.getStart()));c.keydown(n,s,r.startOffset,l,r.endOffset,a).each((e=>{m(n,e)})),t.show()})),e.on("NodeChange",(()=>{const t=e.selection,o=xe.fromDom(t.getStart()),r=xe.fromDom(t.getEnd());vs(Kt,[o,r]).fold((()=>n.clear(s)),f)}))})),e.on("PreInit",(()=>{e.serializer.addTempAttr(As.firstSelected),e.serializer.addTempAttr(As.lastSelected)})),{getSelectedCells:()=>((e,t,o,n)=>{switch(e.tag){case"none":return t();case"single":return(e=>[e.dom])(e.element);case"multiple":return(e=>E(e,(e=>e.dom)))(e.elements)}})(o.get(),g([])),clearSelectedCells:e=>n.clear(xe.fromDom(e))}},Ym=e=>{let t=[];return{bind:e=>{if(void 0===e)throw new Error("Event bind error: undefined handler");t.push(e)},unbind:e=>{t=_(t,(t=>t!==e))},trigger:(...o)=>{const n={};N(e,((e,t)=>{n[e]=o[t]})),N(t,(e=>{e(n)}))}}},Jm=e=>({registry:K(e,(e=>({bind:e.bind,unbind:e.unbind}))),trigger:K(e,(e=>e.trigger))}),Qm=e=>e.slice(0).sort(),Xm=(e,t)=>{const o=_(t,(t=>!D(e,t)));o.length>0&&(e=>{throw new Error("Unsupported keys for object: "+Qm(e).join(", "))})(o)},Zm=e=>((e,t)=>((e,t,o)=>{if(0===t.length)throw new Error("You must specify at least one required field.");return((e,t)=>{if(!l(t))throw new Error("The "+e+" fields must be an array. Was: "+t+".");N(t,(t=>{if(!r(t))throw new Error("The value "+t+" in the "+e+" fields was not a string.")}))})("required",t),(e=>{const t=Qm(e);L(t,((e,o)=>o<t.length-1&&e===t[o+1])).each((e=>{throw new Error("The field: "+e+" occurs more than once in the combined fields: ["+t.join(", ")+"].")}))})(t),n=>{const r=q(n);P(t,(e=>D(r,e)))||((e,t)=>{throw new Error("All required keys ("+Qm(e).join(", ")+") were not specified. Specified keys were: "+Qm(t).join(", ")+".")})(t,r),e(t,r);const s=_(t,(e=>!o.validate(n[e],e)));return s.length>0&&((e,t)=>{throw new Error("All values need to be of type: "+t+". Keys ("+Qm(e).join(", ")+") were not.")})(s,o.label),n}})(e,t,{validate:d,label:"function"}))(Xm,e),ed=Zm(["compare","extract","mutate","sink"]),td=Zm(["element","start","stop","destroy"]),od=Zm(["forceDrop","drop","move","delayDrop"]),nd=()=>{const e=(()=>{const e=Jm({move:Ym(["info"])});return{onEvent:f,reset:f,events:e.registry}})(),t=(()=>{let e=C.none();const t=Jm({move:Ym(["info"])});return{onEvent:(o,n)=>{n.extract(o).each((o=>{const r=((t,o)=>{const n=e.map((e=>t.compare(e,o)));return e=C.some(o),n})(n,o);r.each((e=>{t.trigger.move(e)}))}))},reset:()=>{e=C.none()},events:t.registry}})();let o=e;return{on:()=>{o.reset(),o=t},off:()=>{o.reset(),o=e},isOn:()=>o===t,onEvent:(e,t)=>{o.onEvent(e,t)},events:t.events}},rd=e=>{const t=e.replace(/\./g,"-");return{resolve:e=>t+"-"+e}},sd=rd("ephox-dragster").resolve;var ld=ed({compare:(e,t)=>bn(t.left-e.left,t.top-e.top),extract:e=>C.some(bn(e.x,e.y)),sink:(e,t)=>{const o=(e=>{const t={layerClass:sd("blocker"),...e},o=xe.fromTag("div");return ge(o,"role","presentation"),Bt(o,{position:"fixed",left:"0px",top:"0px",width:"100%",height:"100%"}),Mm(o,sd("blocker")),Mm(o,t.layerClass),{element:g(o),destroy:()=>{qe(o)}}})(t),n=qm(o.element(),"mousedown",e.forceDrop),r=qm(o.element(),"mouseup",e.drop),s=qm(o.element(),"mousemove",e.move),l=qm(o.element(),"mouseout",e.delayDrop);return td({element:o.element,start:e=>{Ie(e,o.element())},stop:()=>{qe(o.element())},destroy:()=>{o.destroy(),r.unbind(),s.unbind(),l.unbind(),n.unbind()}})},mutate:(e,t)=>{e.mutate(t.left,t.top)}});const ad=rd("ephox-snooker").resolve,cd=ad("resizer-bar"),id=ad("resizer-rows"),md=ad("resizer-cols"),dd=e=>{const t=dt(e.parent(),"."+cd);N(t,qe)},ud=(e,t,o)=>{const n=e.origin();N(t,(t=>{t.each((t=>{const r=o(n,t);Mm(r,cd),Ie(e.parent(),r)}))}))},fd=(e,t,o,n,r)=>{const s=yn(o),l=t.isResizable,a=n.length>0?_n.positions(n,o):[],c=a.length>0?((e,t)=>j(e.all,((e,o)=>t(e.element)?[o]:[])))(e,l):[];((e,t,o,n)=>{ud(e,t,((e,t)=>{const r=((e,t,o,n,r)=>{const s=xe.fromTag("div");return Bt(s,{position:"absolute",left:t+"px",top:o-3.5+"px",height:"7px",width:n+"px"}),he(s,{"data-row":e,role:"presentation"}),s})(t.row,o.left-e.left,t.y-e.top,n);return Mm(r,id),r}))})(t,_(a,((e,t)=>O(c,(e=>t===e)))),s,Wo(o));const i=r.length>0?An.positions(r,o):[],m=i.length>0?((e,t)=>{const o=[];return k(e.grid.columns,(n=>{an(e,n).map((e=>e.element)).forall(t)&&o.push(n)})),_(o,(o=>{const n=nn(e,(e=>e.column===o));return P(n,(e=>t(e.element)))}))})(e,l):[];((e,t,o,n)=>{ud(e,t,((e,t)=>{const r=((e,t,o,n,r)=>{const s=xe.fromTag("div");return Bt(s,{position:"absolute",left:t-3.5+"px",top:o+"px",height:r+"px",width:"7px"}),he(s,{"data-column":e,role:"presentation"}),s})(t.col,t.x-e.left,o.top-e.top,0,n);return Mm(r,md),r}))})(t,_(i,((e,t)=>O(m,(e=>t===e)))),s,pn(o))},gd=(e,t)=>{if(dd(e),e.isResizable(t)){const o=Zo(t),n=dn(o),r=cn(o);fd(o,e,t,n,r)}},hd=(e,t)=>{const o=dt(e.parent(),"."+cd);N(o,t)},pd=e=>{hd(e,(e=>{Nt(e,"display","none")}))},wd=e=>{hd(e,(e=>{Nt(e,"display","block")}))},bd=ad("resizer-bar-dragging"),vd=e=>{const t=(()=>{const e=Jm({drag:Ym(["xDelta","yDelta","target"])});let t=C.none();const o=(()=>{const e=Jm({drag:Ym(["xDelta","yDelta"])});return{mutate:(t,o)=>{e.trigger.drag(t,o)},events:e.registry}})();return o.events.drag.bind((o=>{t.each((t=>{e.trigger.drag(o.xDelta,o.yDelta,t)}))})),{assign:e=>{t=C.some(e)},get:()=>t,mutate:o.mutate,events:e.registry}})(),o=((e,t={})=>{var o;return((e,t,o)=>{let n=!1;const r=Jm({start:Ym([]),stop:Ym([])}),s=nd(),l=()=>{m.stop(),s.isOn()&&(s.off(),r.trigger.stop())},c=((e,t)=>{let o=null;const n=()=>{a(o)||(clearTimeout(o),o=null)};return{cancel:n,throttle:(...t)=>{n(),o=setTimeout((()=>{o=null,e.apply(null,t)}),200)}}})(l);s.events.move.bind((o=>{t.mutate(e,o.info)}));const i=e=>(...t)=>{n&&e.apply(null,t)},m=t.sink(od({forceDrop:l,drop:i(l),move:i((e=>{c.cancel(),s.onEvent(e,t)})),delayDrop:i(c.throttle)}),o);return{element:m.element,go:e=>{m.start(e),s.on(),r.trigger.start()},on:()=>{n=!0},off:()=>{n=!1},isActive:()=>n,destroy:()=>{m.destroy()},events:r.registry}})(e,null!==(o=t.mode)&&void 0!==o?o:ld,t)})(t,{});let n=C.none();const r=(e,t)=>C.from(pe(e,t));t.events.drag.bind((e=>{r(e.target,"data-row").each((t=>{const o=It(e.target,"top");Nt(e.target,"top",o+e.yDelta+"px")})),r(e.target,"data-column").each((t=>{const o=It(e.target,"left");Nt(e.target,"left",o+e.xDelta+"px")}))}));const s=(e,t)=>It(e,t)-Wt(e,"data-initial-"+t,0);o.events.stop.bind((()=>{t.get().each((t=>{n.each((o=>{r(t,"data-row").each((e=>{const n=s(t,"top");be(t,"data-initial-top"),d.trigger.adjustHeight(o,n,parseInt(e,10))})),r(t,"data-column").each((e=>{const n=s(t,"left");be(t,"data-initial-left"),d.trigger.adjustWidth(o,n,parseInt(e,10))})),gd(e,o)}))}))}));const l=(n,r)=>{d.trigger.startAdjust(),t.assign(n),ge(n,"data-initial-"+r,It(n,r)),Mm(n,bd),Nt(n,"opacity","0.2"),o.go(e.parent())},c=qm(e.parent(),"mousedown",(e=>{var t;t=e.target,jm(t,id)&&l(e.target,"top"),(e=>jm(e,md))(e.target)&&l(e.target,"left")})),i=t=>Re(t,e.view()),m=qm(e.view(),"mouseover",(t=>{var r;(r=t.target,bt(r,"table",i).filter(Qr)).fold((()=>{lt(t.target)&&dd(e)}),(t=>{o.isActive()&&(n=C.some(t),gd(e,t))}))})),d=Jm({adjustHeight:Ym(["table","delta","row"]),adjustWidth:Ym(["table","delta","column"]),startAdjust:Ym([])});return{destroy:()=>{c.unbind(),m.unbind(),o.destroy(),dd(e)},refresh:t=>{gd(e,t)},on:o.on,off:o.off,hideBars:w(pd,e),showBars:w(wd,e),events:d.registry}},yd=(e,t,o)=>{const n=_n,r=An,s=vd(e),l=Jm({beforeResize:Ym(["table","type"]),afterResize:Ym(["table","type"]),startDrag:Ym([])});return s.events.adjustHeight.bind((e=>{const t=e.table;l.trigger.beforeResize(t,"row");((e,t,o,n)=>{const r=Zo(e),s=((e,t,o)=>lr(e,t,o,Yn,(e=>e.getOrThunk(Ht))))(r,e,n),l=E(s,((e,n)=>o===n?Math.max(t+e,Ht()):e)),a=oa(r,l),c=((e,t)=>E(e.all,((e,o)=>({element:e.element,height:t[o]}))))(r,l);N(c,(e=>{$n(e.element,e.height)})),N(a,(e=>{$n(e.element,e.height)}));const i=z(l,((e,t)=>e+t),0);$n(e,i)})(t,n.delta(e.delta,t),e.row,n),l.trigger.afterResize(t,"row")})),s.events.startAdjust.bind((e=>{l.trigger.startDrag()})),s.events.adjustWidth.bind((e=>{const n=e.table;l.trigger.beforeResize(n,"col");const s=r.delta(e.delta,n),a=o(n);ra(n,s,e.column,t,a),l.trigger.afterResize(n,"col")})),{on:s.on,off:s.off,refreshBars:s.refresh,hideBars:s.hideBars,showBars:s.showBars,destroy:s.destroy,events:l.registry}},xd=e=>m(e)&&"TABLE"===e.nodeName,Cd="bar-",Sd=e=>"false"!==pe(e,"data-mce-resize"),Td=e=>{const t=lm(),o=lm(),n=lm();let r,s;const l=t=>fc(e,t),a=()=>Pr(e)?el():Zs();return e.on("init",(()=>{const r=((e,t)=>e.inline?((e,t,o)=>({parent:g(t),view:g(e),origin:g(bn(0,0)),isResizable:o}))(xe.fromDom(e.getBody()),(()=>{const e=xe.fromTag("div");return Bt(e,{position:"static",height:"0",width:"0",padding:"0",margin:"0",border:"0"}),Ie(at(xe.fromDom(document)),e),e})(),t):((e,t)=>{const o=me(e)?(e=>xe.fromDom(Ee(e).dom.documentElement))(e):e;return{parent:g(o),view:g(e),origin:g(bn(0,0)),isResizable:t}})(xe.fromDom(e.getDoc()),t))(e,Sd);if(n.set(r),(e=>{const t=e.options.get("object_resizing");return D(t.split(","),"table")})(e)&&qr(e)){const n=a(),s=yd(r,n,l);s.on(),s.events.startDrag.bind((o=>{t.set(e.selection.getRng())})),s.events.beforeResize.bind((t=>{const o=t.table.dom;((e,t,o,n,r)=>{e.dispatch("ObjectResizeStart",{target:t,width:o,height:n,origin:r})})(e,o,ns(o),rs(o),Cd+t.type)})),s.events.afterResize.bind((o=>{const n=o.table,r=n.dom;ts(n),t.on((t=>{e.selection.setRng(t),e.focus()})),((e,t,o,n,r)=>{e.dispatch("ObjectResized",{target:t,width:o,height:n,origin:r})})(e,r,ns(r),rs(r),Cd+o.type),e.undoManager.add()})),o.set(s)}})),e.on("ObjectResizeStart",(t=>{const o=t.target;if(xd(o)){const n=xe.fromDom(o);N(e.dom.select(".mce-clonedresizable"),(t=>{e.dom.addClass(t,"mce-"+jr(e)+"-columns")})),!kc(n)&&$r(e)?_c(n):!Oc(n)&&Hr(e)&&Bc(n),Ec(n)&&Tt(t.origin,Cd)&&Bc(n),r=t.width,s=Vr(e)?"":((e,t)=>{const o=e.dom.getStyle(t,"width")||e.dom.getAttrib(t,"width");return C.from(o).filter(Ot)})(e,o).getOr("")}})),e.on("ObjectResized",(t=>{const o=t.target;if(xd(o)){const n=xe.fromDom(o),c=t.origin;Tt(c,"corner-")&&((t,o,n)=>{const c=Rt(o,"e");if(""===s&&Bc(t),n!==r&&""!==s){Nt(t,"width",s);const o=a(),i=l(t),m=Pr(e)||c?(e=>tl(e).columns)(t)-1:0;ra(t,n-r,m,o,i)}else if((e=>/^(\d+(\.\d+)?)%$/.test(e))(s)){const e=parseFloat(s.replace("%",""));Nt(t,"width",n*e/r+"%")}(e=>/^(\d+(\.\d+)?)px$/.test(e))(s)&&(e=>{const t=Zo(e);ln(t)||N(Ut(e),(e=>{const t=_t(e,"width");Nt(e,"width",t),be(e,"width")}))})(t)})(n,c,t.width),ts(n),ic(e,n.dom,mc)}})),e.on("SwitchMode",(()=>{o.on((t=>{e.mode.isReadOnly()?t.hideBars():t.showBars()}))})),e.on("dragstart dragend",(e=>{o.on((t=>{"dragstart"===e.type?(t.hideBars(),t.off()):(t.on(),t.showBars())}))})),e.on("remove",(()=>{o.on((e=>{e.destroy()})),n.on((t=>{((e,t)=>{e.inline&&qe(t.parent())})(e,t)}))})),{refresh:e=>{o.on((t=>t.refreshBars(xe.fromDom(e))))},hide:()=>{o.on((e=>e.hideBars()))},show:()=>{o.on((e=>e.showBars()))}}},Rd=e=>{(e=>{const t=e.options.register;t("table_clone_elements",{processor:"string[]"}),t("table_use_colgroups",{processor:"boolean",default:!0}),t("table_header_type",{processor:e=>{const t=D(["section","cells","sectionCells","auto"],e);return t?{value:e,valid:t}:{valid:!1,message:"Must be one of: section, cells, sectionCells or auto."}},default:"section"}),t("table_sizing_mode",{processor:"string",default:"auto"}),t("table_default_attributes",{processor:"object",default:{border:"1"}}),t("table_default_styles",{processor:"object",default:{"border-collapse":"collapse"}}),t("table_column_resizing",{processor:e=>{const t=D(["preservetable","resizetable"],e);return t?{value:e,valid:t}:{valid:!1,message:"Must be preservetable, or resizetable."}},default:"preservetable"}),t("table_resize_bars",{processor:"boolean",default:!0}),t("table_style_by_css",{processor:"boolean",default:!0}),t("table_merge_content_on_paste",{processor:"boolean",default:!0})})(e);const t=Td(e),o=Km(e,t),n=gc(e,t,o);return Xc(e,n),((e,t)=>{const o=es(e),n=t=>js(os(e)).bind((n=>Kt(n,o).map((o=>{const r=Ls(Ps(e),o,n);return t(o,r)})))).getOr("");G({mceTableRowType:()=>n(t.getTableRowType),mceTableCellType:()=>n(t.getTableCellType),mceTableColType:()=>n(t.getTableColType)},((t,o)=>e.addQueryValueHandler(o,t)))})(e,n),Is(e,n),{getSelectedCells:o.getSelectedCells,clearSelectedCells:o.clearSelectedCells}};e.add("dom",(e=>({table:Rd(e)})))}();admin/assets/vendor/tinymce/js/tinymce/tinymce.d.ts000064400000364443151213255230016446 0ustar00interface StringPathBookmark {
    start: string;
    end?: string;
    forward?: boolean;
}
interface RangeBookmark {
    rng: Range;
    forward?: boolean;
}
interface IdBookmark {
    id: string;
    keep?: boolean;
    forward?: boolean;
}
interface IndexBookmark {
    name: string;
    index: number;
}
interface PathBookmark {
    start: number[];
    end?: number[];
    isFakeCaret?: boolean;
    forward?: boolean;
}
type Bookmark = StringPathBookmark | RangeBookmark | IdBookmark | IndexBookmark | PathBookmark;
type NormalizedEvent<E, T = any> = E & {
    readonly type: string;
    readonly target: T;
    readonly isDefaultPrevented: () => boolean;
    readonly preventDefault: () => void;
    readonly isPropagationStopped: () => boolean;
    readonly stopPropagation: () => void;
    readonly isImmediatePropagationStopped: () => boolean;
    readonly stopImmediatePropagation: () => void;
};
type MappedEvent<T extends {}, K extends string> = K extends keyof T ? T[K] : any;
interface NativeEventMap {
    'beforepaste': Event;
    'blur': FocusEvent;
    'beforeinput': InputEvent;
    'click': MouseEvent;
    'compositionend': Event;
    'compositionstart': Event;
    'compositionupdate': Event;
    'contextmenu': PointerEvent;
    'copy': ClipboardEvent;
    'cut': ClipboardEvent;
    'dblclick': MouseEvent;
    'drag': DragEvent;
    'dragdrop': DragEvent;
    'dragend': DragEvent;
    'draggesture': DragEvent;
    'dragover': DragEvent;
    'dragstart': DragEvent;
    'drop': DragEvent;
    'focus': FocusEvent;
    'focusin': FocusEvent;
    'focusout': FocusEvent;
    'input': InputEvent;
    'keydown': KeyboardEvent;
    'keypress': KeyboardEvent;
    'keyup': KeyboardEvent;
    'mousedown': MouseEvent;
    'mouseenter': MouseEvent;
    'mouseleave': MouseEvent;
    'mousemove': MouseEvent;
    'mouseout': MouseEvent;
    'mouseover': MouseEvent;
    'mouseup': MouseEvent;
    'paste': ClipboardEvent;
    'selectionchange': Event;
    'submit': Event;
    'touchend': TouchEvent;
    'touchmove': TouchEvent;
    'touchstart': TouchEvent;
    'touchcancel': TouchEvent;
    'wheel': WheelEvent;
}
type EditorEvent<T> = NormalizedEvent<T>;
interface EventDispatcherSettings {
    scope?: any;
    toggleEvent?: (name: string, state: boolean) => void | boolean;
    beforeFire?: <T>(args: EditorEvent<T>) => void;
}
interface EventDispatcherConstructor<T extends {}> {
    readonly prototype: EventDispatcher<T>;
    new (settings?: EventDispatcherSettings): EventDispatcher<T>;
    isNative: (name: string) => boolean;
}
declare class EventDispatcher<T extends {}> {
    static isNative(name: string): boolean;
    private readonly settings;
    private readonly scope;
    private readonly toggleEvent;
    private bindings;
    constructor(settings?: EventDispatcherSettings);
    fire<K extends string, U extends MappedEvent<T, K>>(name: K, args?: U): EditorEvent<U>;
    dispatch<K extends string, U extends MappedEvent<T, K>>(name: K, args?: U): EditorEvent<U>;
    on<K extends string>(name: K, callback: false | ((event: EditorEvent<MappedEvent<T, K>>) => void | boolean), prepend?: boolean, extra?: {}): this;
    off<K extends string>(name?: K, callback?: (event: EditorEvent<MappedEvent<T, K>>) => void): this;
    once<K extends string>(name: K, callback: (event: EditorEvent<MappedEvent<T, K>>) => void, prepend?: boolean): this;
    has(name: string): boolean;
}
type UndoLevelType = 'fragmented' | 'complete';
interface BaseUndoLevel {
    type: UndoLevelType;
    bookmark: Bookmark | null;
    beforeBookmark: Bookmark | null;
}
interface FragmentedUndoLevel extends BaseUndoLevel {
    type: 'fragmented';
    fragments: string[];
    content: '';
}
interface CompleteUndoLevel extends BaseUndoLevel {
    type: 'complete';
    fragments: null;
    content: string;
}
type NewUndoLevel = CompleteUndoLevel | FragmentedUndoLevel;
type UndoLevel = NewUndoLevel & {
    bookmark: Bookmark;
};
interface UndoManager {
    data: UndoLevel[];
    typing: boolean;
    add: (level?: Partial<UndoLevel>, event?: EditorEvent<any>) => UndoLevel | null;
    dispatchChange: () => void;
    beforeChange: () => void;
    undo: () => UndoLevel | undefined;
    redo: () => UndoLevel | undefined;
    clear: () => void;
    reset: () => void;
    hasUndo: () => boolean;
    hasRedo: () => boolean;
    transact: (callback: () => void) => UndoLevel | null;
    ignore: (callback: () => void) => void;
    extra: (callback1: () => void, callback2: () => void) => void;
}
type SchemaType = 'html4' | 'html5' | 'html5-strict';
interface ElementSettings {
    block_elements?: string;
    boolean_attributes?: string;
    move_caret_before_on_enter_elements?: string;
    non_empty_elements?: string;
    self_closing_elements?: string;
    text_block_elements?: string;
    text_inline_elements?: string;
    void_elements?: string;
    whitespace_elements?: string;
    transparent_elements?: string;
    wrap_block_elements?: string;
}
interface SchemaSettings extends ElementSettings {
    custom_elements?: string;
    extended_valid_elements?: string;
    invalid_elements?: string;
    invalid_styles?: string | Record<string, string>;
    schema?: SchemaType;
    valid_children?: string;
    valid_classes?: string | Record<string, string>;
    valid_elements?: string;
    valid_styles?: string | Record<string, string>;
    verify_html?: boolean;
    padd_empty_block_inline_children?: boolean;
}
interface Attribute {
    required?: boolean;
    defaultValue?: string;
    forcedValue?: string;
    validValues?: Record<string, {}>;
}
interface DefaultAttribute {
    name: string;
    value: string;
}
interface AttributePattern extends Attribute {
    pattern: RegExp;
}
interface ElementRule {
    attributes: Record<string, Attribute>;
    attributesDefault?: DefaultAttribute[];
    attributesForced?: DefaultAttribute[];
    attributesOrder: string[];
    attributePatterns?: AttributePattern[];
    attributesRequired?: string[];
    paddEmpty?: boolean;
    removeEmpty?: boolean;
    removeEmptyAttrs?: boolean;
    paddInEmptyBlock?: boolean;
}
interface SchemaElement extends ElementRule {
    outputName?: string;
    parentsRequired?: string[];
    pattern?: RegExp;
}
interface SchemaMap {
    [name: string]: {};
}
interface SchemaRegExpMap {
    [name: string]: RegExp;
}
interface Schema {
    type: SchemaType;
    children: Record<string, SchemaMap>;
    elements: Record<string, SchemaElement>;
    getValidStyles: () => Record<string, string[]> | undefined;
    getValidClasses: () => Record<string, SchemaMap> | undefined;
    getBlockElements: () => SchemaMap;
    getInvalidStyles: () => Record<string, SchemaMap> | undefined;
    getVoidElements: () => SchemaMap;
    getTextBlockElements: () => SchemaMap;
    getTextInlineElements: () => SchemaMap;
    getBoolAttrs: () => SchemaMap;
    getElementRule: (name: string) => SchemaElement | undefined;
    getSelfClosingElements: () => SchemaMap;
    getNonEmptyElements: () => SchemaMap;
    getMoveCaretBeforeOnEnterElements: () => SchemaMap;
    getWhitespaceElements: () => SchemaMap;
    getTransparentElements: () => SchemaMap;
    getSpecialElements: () => SchemaRegExpMap;
    isValidChild: (name: string, child: string) => boolean;
    isValid: (name: string, attr?: string) => boolean;
    isBlock: (name: string) => boolean;
    isInline: (name: string) => boolean;
    isWrapper: (name: string) => boolean;
    getCustomElements: () => SchemaMap;
    addValidElements: (validElements: string) => void;
    setValidElements: (validElements: string) => void;
    addCustomElements: (customElements: string) => void;
    addValidChildren: (validChildren: any) => void;
}
type Attributes$1 = Array<{
    name: string;
    value: string;
}> & {
    map: Record<string, string>;
};
interface AstNodeConstructor {
    readonly prototype: AstNode;
    new (name: string, type: number): AstNode;
    create(name: string, attrs?: Record<string, string>): AstNode;
}
declare class AstNode {
    static create(name: string, attrs?: Record<string, string>): AstNode;
    name: string;
    type: number;
    attributes?: Attributes$1;
    value?: string;
    parent?: AstNode | null;
    firstChild?: AstNode | null;
    lastChild?: AstNode | null;
    next?: AstNode | null;
    prev?: AstNode | null;
    raw?: boolean;
    constructor(name: string, type: number);
    replace(node: AstNode): AstNode;
    attr(name: string, value: string | null | undefined): AstNode | undefined;
    attr(name: Record<string, string | null | undefined> | undefined): AstNode | undefined;
    attr(name: string): string | undefined;
    clone(): AstNode;
    wrap(wrapper: AstNode): AstNode;
    unwrap(): void;
    remove(): AstNode;
    append(node: AstNode): AstNode;
    insert(node: AstNode, refNode: AstNode, before?: boolean): AstNode;
    getAll(name: string): AstNode[];
    children(): AstNode[];
    empty(): AstNode;
    isEmpty(elements: SchemaMap, whitespace?: SchemaMap, predicate?: (node: AstNode) => boolean): boolean;
    walk(prev?: boolean): AstNode | null | undefined;
}
type Content = string | AstNode;
type ContentFormat = 'raw' | 'text' | 'html' | 'tree';
interface GetContentArgs {
    format: ContentFormat;
    get: boolean;
    getInner: boolean;
    no_events?: boolean;
    save?: boolean;
    source_view?: boolean;
    [key: string]: any;
}
interface SetContentArgs {
    format: string;
    set: boolean;
    content: Content;
    no_events?: boolean;
    no_selection?: boolean;
    paste?: boolean;
    load?: boolean;
    initial?: boolean;
    [key: string]: any;
}
interface GetSelectionContentArgs extends GetContentArgs {
    selection?: boolean;
    contextual?: boolean;
}
interface SetSelectionContentArgs extends SetContentArgs {
    content: string;
    selection?: boolean;
}
interface BlobInfoData {
    id?: string;
    name?: string;
    filename?: string;
    blob: Blob;
    base64: string;
    blobUri?: string;
    uri?: string;
}
interface BlobInfo {
    id: () => string;
    name: () => string;
    filename: () => string;
    blob: () => Blob;
    base64: () => string;
    blobUri: () => string;
    uri: () => string | undefined;
}
interface BlobCache {
    create: {
        (o: BlobInfoData): BlobInfo;
        (id: string, blob: Blob, base64: string, name?: string, filename?: string): BlobInfo;
    };
    add: (blobInfo: BlobInfo) => void;
    get: (id: string) => BlobInfo | undefined;
    getByUri: (blobUri: string) => BlobInfo | undefined;
    getByData: (base64: string, type: string) => BlobInfo | undefined;
    findFirst: (predicate: (blobInfo: BlobInfo) => boolean) => BlobInfo | undefined;
    removeByUri: (blobUri: string) => void;
    destroy: () => void;
}
interface BlobInfoImagePair {
    image: HTMLImageElement;
    blobInfo: BlobInfo;
}
declare class NodeChange {
    private readonly editor;
    private lastPath;
    constructor(editor: Editor);
    nodeChanged(args?: Record<string, any>): void;
    private isSameElementPath;
}
interface SelectionOverrides {
    showCaret: (direction: number, node: HTMLElement, before: boolean, scrollIntoView?: boolean) => Range | null;
    showBlockCaretContainer: (blockCaretContainer: HTMLElement) => void;
    hideFakeCaret: () => void;
    destroy: () => void;
}
interface Quirks {
    refreshContentEditable(): void;
    isHidden(): boolean;
}
type DecoratorData = Record<string, any>;
type Decorator = (uid: string, data: DecoratorData) => {
    attributes?: {};
    classes?: string[];
};
type AnnotationListener = (state: boolean, name: string, data?: {
    uid: string;
    nodes: any[];
}) => void;
type AnnotationListenerApi = AnnotationListener;
interface AnnotatorSettings {
    decorate: Decorator;
    persistent?: boolean;
}
interface Annotator {
    register: (name: string, settings: AnnotatorSettings) => void;
    annotate: (name: string, data: DecoratorData) => void;
    annotationChanged: (name: string, f: AnnotationListenerApi) => void;
    remove: (name: string) => void;
    removeAll: (name: string) => void;
    getAll: (name: string) => Record<string, Element[]>;
}
interface GeomRect {
    readonly x: number;
    readonly y: number;
    readonly w: number;
    readonly h: number;
}
interface Rect {
    inflate: (rect: GeomRect, w: number, h: number) => GeomRect;
    relativePosition: (rect: GeomRect, targetRect: GeomRect, rel: string) => GeomRect;
    findBestRelativePosition: (rect: GeomRect, targetRect: GeomRect, constrainRect: GeomRect, rels: string[]) => string | null;
    intersect: (rect: GeomRect, cropRect: GeomRect) => GeomRect | null;
    clamp: (rect: GeomRect, clampRect: GeomRect, fixedSize?: boolean) => GeomRect;
    create: (x: number, y: number, w: number, h: number) => GeomRect;
    fromClientRect: (clientRect: DOMRect) => GeomRect;
}
interface NotificationManagerImpl {
    open: (spec: NotificationSpec, closeCallback: () => void) => NotificationApi;
    close: <T extends NotificationApi>(notification: T) => void;
    getArgs: <T extends NotificationApi>(notification: T) => NotificationSpec;
}
interface NotificationSpec {
    type?: 'info' | 'warning' | 'error' | 'success';
    text: string;
    icon?: string;
    progressBar?: boolean;
    timeout?: number;
    closeButton?: boolean;
}
interface NotificationApi {
    close: () => void;
    progressBar: {
        value: (percent: number) => void;
    };
    text: (text: string) => void;
    reposition: () => void;
    getEl: () => HTMLElement;
    settings: NotificationSpec;
}
interface NotificationManager {
    open: (spec: NotificationSpec) => NotificationApi;
    close: () => void;
    getNotifications: () => NotificationApi[];
}
interface UploadFailure {
    message: string;
    remove?: boolean;
}
type ProgressFn = (percent: number) => void;
type UploadHandler = (blobInfo: BlobInfo, progress: ProgressFn) => Promise<string>;
interface UploadResult$2 {
    url: string;
    blobInfo: BlobInfo;
    status: boolean;
    error?: UploadFailure;
}
interface RawPattern {
    start?: any;
    end?: any;
    format?: any;
    cmd?: any;
    value?: any;
    replacement?: any;
}
interface InlineBasePattern {
    readonly start: string;
    readonly end: string;
}
interface InlineFormatPattern extends InlineBasePattern {
    readonly type: 'inline-format';
    readonly format: string[];
}
interface InlineCmdPattern extends InlineBasePattern {
    readonly type: 'inline-command';
    readonly cmd: string;
    readonly value?: any;
}
type InlinePattern = InlineFormatPattern | InlineCmdPattern;
interface BlockBasePattern {
    readonly start: string;
}
interface BlockFormatPattern extends BlockBasePattern {
    readonly type: 'block-format';
    readonly format: string;
}
interface BlockCmdPattern extends BlockBasePattern {
    readonly type: 'block-command';
    readonly cmd: string;
    readonly value?: any;
}
type BlockPattern = BlockFormatPattern | BlockCmdPattern;
type Pattern = InlinePattern | BlockPattern;
interface DynamicPatternContext {
    readonly text: string;
    readonly block: Element;
}
type DynamicPatternsLookup = (ctx: DynamicPatternContext) => Pattern[];
type RawDynamicPatternsLookup = (ctx: DynamicPatternContext) => RawPattern[];
interface AlertBannerSpec {
    type: 'alertbanner';
    level: 'info' | 'warn' | 'error' | 'success';
    text: string;
    icon: string;
    url?: string;
}
interface ButtonSpec {
    type: 'button';
    text: string;
    enabled?: boolean;
    primary?: boolean;
    name?: string;
    icon?: string;
    borderless?: boolean;
    buttonType?: 'primary' | 'secondary' | 'toolbar';
}
interface FormComponentSpec {
    type: string;
    name: string;
}
interface FormComponentWithLabelSpec extends FormComponentSpec {
    label?: string;
}
interface CheckboxSpec extends FormComponentSpec {
    type: 'checkbox';
    label: string;
    enabled?: boolean;
}
interface CollectionSpec extends FormComponentWithLabelSpec {
    type: 'collection';
}
interface CollectionItem {
    value: string;
    text: string;
    icon: string;
}
interface ColorInputSpec extends FormComponentWithLabelSpec {
    type: 'colorinput';
    storageKey?: string;
}
interface ColorPickerSpec extends FormComponentWithLabelSpec {
    type: 'colorpicker';
}
interface CustomEditorInit {
    setValue: (value: string) => void;
    getValue: () => string;
    destroy: () => void;
}
type CustomEditorInitFn = (elm: HTMLElement, settings: any) => Promise<CustomEditorInit>;
interface CustomEditorOldSpec extends FormComponentSpec {
    type: 'customeditor';
    tag?: string;
    init: (e: HTMLElement) => Promise<CustomEditorInit>;
}
interface CustomEditorNewSpec extends FormComponentSpec {
    type: 'customeditor';
    tag?: string;
    scriptId: string;
    scriptUrl: string;
    settings?: any;
}
type CustomEditorSpec = CustomEditorOldSpec | CustomEditorNewSpec;
interface DropZoneSpec extends FormComponentWithLabelSpec {
    type: 'dropzone';
}
interface GridSpec {
    type: 'grid';
    columns: number;
    items: BodyComponentSpec[];
}
interface HtmlPanelSpec {
    type: 'htmlpanel';
    html: string;
    presets?: 'presentation' | 'document';
}
interface IframeSpec extends FormComponentWithLabelSpec {
    type: 'iframe';
    border?: boolean;
    sandboxed?: boolean;
    streamContent?: boolean;
    transparent?: boolean;
}
interface ImagePreviewSpec extends FormComponentSpec {
    type: 'imagepreview';
    height?: string;
}
interface InputSpec extends FormComponentWithLabelSpec {
    type: 'input';
    inputMode?: string;
    placeholder?: string;
    maximized?: boolean;
    enabled?: boolean;
}
type Alignment = 'start' | 'center' | 'end';
interface LabelSpec {
    type: 'label';
    label: string;
    items: BodyComponentSpec[];
    align?: Alignment;
}
interface ListBoxSingleItemSpec {
    text: string;
    value: string;
}
interface ListBoxNestedItemSpec {
    text: string;
    items: ListBoxItemSpec[];
}
type ListBoxItemSpec = ListBoxNestedItemSpec | ListBoxSingleItemSpec;
interface ListBoxSpec extends FormComponentWithLabelSpec {
    type: 'listbox';
    items: ListBoxItemSpec[];
    disabled?: boolean;
}
interface PanelSpec {
    type: 'panel';
    classes?: string[];
    items: BodyComponentSpec[];
}
interface SelectBoxItemSpec {
    text: string;
    value: string;
}
interface SelectBoxSpec extends FormComponentWithLabelSpec {
    type: 'selectbox';
    items: SelectBoxItemSpec[];
    size?: number;
    enabled?: boolean;
}
interface SizeInputSpec extends FormComponentWithLabelSpec {
    type: 'sizeinput';
    constrain?: boolean;
    enabled?: boolean;
}
interface SliderSpec extends FormComponentSpec {
    type: 'slider';
    label: string;
    min?: number;
    max?: number;
}
interface TableSpec {
    type: 'table';
    header: string[];
    cells: string[][];
}
interface TextAreaSpec extends FormComponentWithLabelSpec {
    type: 'textarea';
    placeholder?: string;
    maximized?: boolean;
    enabled?: boolean;
}
interface BaseToolbarButtonSpec<I extends BaseToolbarButtonInstanceApi> {
    enabled?: boolean;
    tooltip?: string;
    icon?: string;
    text?: string;
    onSetup?: (api: I) => (api: I) => void;
}
interface BaseToolbarButtonInstanceApi {
    isEnabled: () => boolean;
    setEnabled: (state: boolean) => void;
    setText: (text: string) => void;
    setIcon: (icon: string) => void;
}
interface ToolbarButtonSpec extends BaseToolbarButtonSpec<ToolbarButtonInstanceApi> {
    type?: 'button';
    onAction: (api: ToolbarButtonInstanceApi) => void;
}
interface ToolbarButtonInstanceApi extends BaseToolbarButtonInstanceApi {
}
interface ToolbarGroupSetting {
    name: string;
    items: string[];
}
type ToolbarConfig = string | ToolbarGroupSetting[];
interface GroupToolbarButtonInstanceApi extends BaseToolbarButtonInstanceApi {
}
interface GroupToolbarButtonSpec extends BaseToolbarButtonSpec<GroupToolbarButtonInstanceApi> {
    type?: 'grouptoolbarbutton';
    items?: ToolbarConfig;
}
interface CardImageSpec {
    type: 'cardimage';
    src: string;
    alt?: string;
    classes?: string[];
}
interface CardTextSpec {
    type: 'cardtext';
    text: string;
    name?: string;
    classes?: string[];
}
type CardItemSpec = CardContainerSpec | CardImageSpec | CardTextSpec;
type CardContainerDirection = 'vertical' | 'horizontal';
type CardContainerAlign = 'left' | 'right';
type CardContainerValign = 'top' | 'middle' | 'bottom';
interface CardContainerSpec {
    type: 'cardcontainer';
    items: CardItemSpec[];
    direction?: CardContainerDirection;
    align?: CardContainerAlign;
    valign?: CardContainerValign;
}
interface CommonMenuItemSpec {
    enabled?: boolean;
    text?: string;
    value?: string;
    meta?: Record<string, any>;
    shortcut?: string;
}
interface CommonMenuItemInstanceApi {
    isEnabled: () => boolean;
    setEnabled: (state: boolean) => void;
}
interface CardMenuItemInstanceApi extends CommonMenuItemInstanceApi {
}
interface CardMenuItemSpec extends Omit<CommonMenuItemSpec, 'text' | 'shortcut'> {
    type: 'cardmenuitem';
    label?: string;
    items: CardItemSpec[];
    onSetup?: (api: CardMenuItemInstanceApi) => (api: CardMenuItemInstanceApi) => void;
    onAction?: (api: CardMenuItemInstanceApi) => void;
}
interface ChoiceMenuItemSpec extends CommonMenuItemSpec {
    type?: 'choiceitem';
    icon?: string;
}
interface ChoiceMenuItemInstanceApi extends CommonMenuItemInstanceApi {
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
interface ContextMenuItem extends CommonMenuItemSpec {
    text: string;
    icon?: string;
    type?: 'item';
    onAction: () => void;
}
interface ContextSubMenu extends CommonMenuItemSpec {
    type: 'submenu';
    text: string;
    icon?: string;
    getSubmenuItems: () => string | Array<ContextMenuContents>;
}
type ContextMenuContents = string | ContextMenuItem | SeparatorMenuItemSpec | ContextSubMenu;
interface ContextMenuApi {
    update: (element: Element) => string | Array<ContextMenuContents>;
}
interface FancyActionArgsMap {
    'inserttable': {
        numRows: number;
        numColumns: number;
    };
    'colorswatch': {
        value: string;
    };
}
interface BaseFancyMenuItemSpec<T extends keyof FancyActionArgsMap> {
    type: 'fancymenuitem';
    fancytype: T;
    initData?: Record<string, unknown>;
    onAction?: (data: FancyActionArgsMap[T]) => void;
}
interface InsertTableMenuItemSpec extends BaseFancyMenuItemSpec<'inserttable'> {
    fancytype: 'inserttable';
    initData?: {};
}
interface ColorSwatchMenuItemSpec extends BaseFancyMenuItemSpec<'colorswatch'> {
    fancytype: 'colorswatch';
    select?: (value: string) => boolean;
    initData?: {
        allowCustomColors?: boolean;
        colors?: ChoiceMenuItemSpec[];
        storageKey?: string;
    };
}
type FancyMenuItemSpec = InsertTableMenuItemSpec | ColorSwatchMenuItemSpec;
interface MenuItemSpec extends CommonMenuItemSpec {
    type?: 'menuitem';
    icon?: string;
    onSetup?: (api: MenuItemInstanceApi) => (api: MenuItemInstanceApi) => void;
    onAction?: (api: MenuItemInstanceApi) => void;
}
interface MenuItemInstanceApi extends CommonMenuItemInstanceApi {
}
interface SeparatorMenuItemSpec {
    type?: 'separator';
    text?: string;
}
interface ToggleMenuItemSpec extends CommonMenuItemSpec {
    type?: 'togglemenuitem';
    icon?: string;
    active?: boolean;
    onSetup?: (api: ToggleMenuItemInstanceApi) => void;
    onAction: (api: ToggleMenuItemInstanceApi) => void;
}
interface ToggleMenuItemInstanceApi extends CommonMenuItemInstanceApi {
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
type NestedMenuItemContents = string | MenuItemSpec | NestedMenuItemSpec | ToggleMenuItemSpec | SeparatorMenuItemSpec | FancyMenuItemSpec;
interface NestedMenuItemSpec extends CommonMenuItemSpec {
    type?: 'nestedmenuitem';
    icon?: string;
    getSubmenuItems: () => string | Array<NestedMenuItemContents>;
    onSetup?: (api: NestedMenuItemInstanceApi) => (api: NestedMenuItemInstanceApi) => void;
}
interface NestedMenuItemInstanceApi extends CommonMenuItemInstanceApi {
    setTooltip: (tooltip: string) => void;
    setIconFill: (id: string, value: string) => void;
}
type MenuButtonItemTypes = NestedMenuItemContents;
type SuccessCallback$1 = (menu: string | MenuButtonItemTypes[]) => void;
interface MenuButtonFetchContext {
    pattern: string;
}
interface BaseMenuButtonSpec {
    text?: string;
    tooltip?: string;
    icon?: string;
    search?: boolean | {
        placeholder?: string;
    };
    fetch: (success: SuccessCallback$1, fetchContext: MenuButtonFetchContext, api: BaseMenuButtonInstanceApi) => void;
    onSetup?: (api: BaseMenuButtonInstanceApi) => (api: BaseMenuButtonInstanceApi) => void;
}
interface BaseMenuButtonInstanceApi {
    isEnabled: () => boolean;
    setEnabled: (state: boolean) => void;
    isActive: () => boolean;
    setActive: (state: boolean) => void;
    setText: (text: string) => void;
    setIcon: (icon: string) => void;
}
interface ToolbarMenuButtonSpec extends BaseMenuButtonSpec {
    type?: 'menubutton';
    onSetup?: (api: ToolbarMenuButtonInstanceApi) => (api: ToolbarMenuButtonInstanceApi) => void;
}
interface ToolbarMenuButtonInstanceApi extends BaseMenuButtonInstanceApi {
}
type ToolbarSplitButtonItemTypes = ChoiceMenuItemSpec | SeparatorMenuItemSpec;
type SuccessCallback = (menu: ToolbarSplitButtonItemTypes[]) => void;
type SelectPredicate = (value: string) => boolean;
type PresetTypes = 'color' | 'normal' | 'listpreview';
type ColumnTypes$1 = number | 'auto';
interface ToolbarSplitButtonSpec {
    type?: 'splitbutton';
    tooltip?: string;
    icon?: string;
    text?: string;
    select?: SelectPredicate;
    presets?: PresetTypes;
    columns?: ColumnTypes$1;
    fetch: (success: SuccessCallback) => void;
    onSetup?: (api: ToolbarSplitButtonInstanceApi) => (api: ToolbarSplitButtonInstanceApi) => void;
    onAction: (api: ToolbarSplitButtonInstanceApi) => void;
    onItemAction: (api: ToolbarSplitButtonInstanceApi, value: string) => void;
}
interface ToolbarSplitButtonInstanceApi {
    isEnabled: () => boolean;
    setEnabled: (state: boolean) => void;
    setIconFill: (id: string, value: string) => void;
    isActive: () => boolean;
    setActive: (state: boolean) => void;
    setTooltip: (tooltip: string) => void;
    setText: (text: string) => void;
    setIcon: (icon: string) => void;
}
interface BaseToolbarToggleButtonSpec<I extends BaseToolbarButtonInstanceApi> extends BaseToolbarButtonSpec<I> {
    active?: boolean;
}
interface BaseToolbarToggleButtonInstanceApi extends BaseToolbarButtonInstanceApi {
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
interface ToolbarToggleButtonSpec extends BaseToolbarToggleButtonSpec<ToolbarToggleButtonInstanceApi> {
    type?: 'togglebutton';
    onAction: (api: ToolbarToggleButtonInstanceApi) => void;
}
interface ToolbarToggleButtonInstanceApi extends BaseToolbarToggleButtonInstanceApi {
}
type Id = string;
interface TreeSpec {
    type: 'tree';
    items: TreeItemSpec[];
    onLeafAction?: (id: Id) => void;
    defaultExpandedIds?: Id[];
    onToggleExpand?: (expandedIds: Id[], { expanded, node }: {
        expanded: boolean;
        node: Id;
    }) => void;
    defaultSelectedId?: Id;
}
interface BaseTreeItemSpec {
    title: string;
    id: Id;
    menu?: ToolbarMenuButtonSpec;
}
interface DirectorySpec extends BaseTreeItemSpec {
    type: 'directory';
    children: TreeItemSpec[];
}
interface LeafSpec extends BaseTreeItemSpec {
    type: 'leaf';
}
type TreeItemSpec = DirectorySpec | LeafSpec;
interface UrlInputSpec extends FormComponentWithLabelSpec {
    type: 'urlinput';
    filetype?: 'image' | 'media' | 'file';
    enabled?: boolean;
    picker_text?: string;
}
interface UrlInputData {
    value: string;
    meta: {
        text?: string;
    };
}
type BodyComponentSpec = BarSpec | ButtonSpec | CheckboxSpec | TextAreaSpec | InputSpec | ListBoxSpec | SelectBoxSpec | SizeInputSpec | SliderSpec | IframeSpec | HtmlPanelSpec | UrlInputSpec | DropZoneSpec | ColorInputSpec | GridSpec | ColorPickerSpec | ImagePreviewSpec | AlertBannerSpec | CollectionSpec | LabelSpec | TableSpec | TreeSpec | PanelSpec | CustomEditorSpec;
interface BarSpec {
    type: 'bar';
    items: BodyComponentSpec[];
}
interface DialogToggleMenuItemSpec extends CommonMenuItemSpec {
    type?: 'togglemenuitem';
    name: string;
}
type DialogFooterMenuButtonItemSpec = DialogToggleMenuItemSpec;
interface BaseDialogFooterButtonSpec {
    name?: string;
    align?: 'start' | 'end';
    primary?: boolean;
    enabled?: boolean;
    icon?: string;
    buttonType?: 'primary' | 'secondary';
}
interface DialogFooterNormalButtonSpec extends BaseDialogFooterButtonSpec {
    type: 'submit' | 'cancel' | 'custom';
    text: string;
}
interface DialogFooterMenuButtonSpec extends BaseDialogFooterButtonSpec {
    type: 'menu';
    text?: string;
    tooltip?: string;
    icon?: string;
    items: DialogFooterMenuButtonItemSpec[];
}
interface DialogFooterToggleButtonSpec extends BaseDialogFooterButtonSpec {
    type: 'togglebutton';
    tooltip?: string;
    icon?: string;
    text?: string;
    active?: boolean;
}
type DialogFooterButtonSpec = DialogFooterNormalButtonSpec | DialogFooterMenuButtonSpec | DialogFooterToggleButtonSpec;
interface TabSpec {
    name?: string;
    title: string;
    items: BodyComponentSpec[];
}
interface TabPanelSpec {
    type: 'tabpanel';
    tabs: TabSpec[];
}
type DialogDataItem = any;
type DialogData = Record<string, DialogDataItem>;
interface DialogInstanceApi<T extends DialogData> {
    getData: () => T;
    setData: (data: Partial<T>) => void;
    setEnabled: (name: string, state: boolean) => void;
    focus: (name: string) => void;
    showTab: (name: string) => void;
    redial: (nu: DialogSpec<T>) => void;
    block: (msg: string) => void;
    unblock: () => void;
    toggleFullscreen: () => void;
    close: () => void;
}
interface DialogActionDetails {
    name: string;
    value?: any;
}
interface DialogChangeDetails<T> {
    name: keyof T;
}
interface DialogTabChangeDetails {
    newTabName: string;
    oldTabName: string;
}
type DialogActionHandler<T extends DialogData> = (api: DialogInstanceApi<T>, details: DialogActionDetails) => void;
type DialogChangeHandler<T extends DialogData> = (api: DialogInstanceApi<T>, details: DialogChangeDetails<T>) => void;
type DialogSubmitHandler<T extends DialogData> = (api: DialogInstanceApi<T>) => void;
type DialogCloseHandler = () => void;
type DialogCancelHandler<T extends DialogData> = (api: DialogInstanceApi<T>) => void;
type DialogTabChangeHandler<T extends DialogData> = (api: DialogInstanceApi<T>, details: DialogTabChangeDetails) => void;
type DialogSize = 'normal' | 'medium' | 'large';
interface DialogSpec<T extends DialogData> {
    title: string;
    size?: DialogSize;
    body: TabPanelSpec | PanelSpec;
    buttons?: DialogFooterButtonSpec[];
    initialData?: Partial<T>;
    onAction?: DialogActionHandler<T>;
    onChange?: DialogChangeHandler<T>;
    onSubmit?: DialogSubmitHandler<T>;
    onClose?: DialogCloseHandler;
    onCancel?: DialogCancelHandler<T>;
    onTabChange?: DialogTabChangeHandler<T>;
}
interface UrlDialogInstanceApi {
    block: (msg: string) => void;
    unblock: () => void;
    close: () => void;
    sendMessage: (msg: any) => void;
}
interface UrlDialogActionDetails {
    name: string;
    value?: any;
}
interface UrlDialogMessage {
    mceAction: string;
    [key: string]: any;
}
type UrlDialogActionHandler = (api: UrlDialogInstanceApi, actions: UrlDialogActionDetails) => void;
type UrlDialogCloseHandler = () => void;
type UrlDialogCancelHandler = (api: UrlDialogInstanceApi) => void;
type UrlDialogMessageHandler = (api: UrlDialogInstanceApi, message: UrlDialogMessage) => void;
interface UrlDialogFooterButtonSpec extends DialogFooterNormalButtonSpec {
    type: 'cancel' | 'custom';
}
interface UrlDialogSpec {
    title: string;
    url: string;
    height?: number;
    width?: number;
    buttons?: UrlDialogFooterButtonSpec[];
    onAction?: UrlDialogActionHandler;
    onClose?: UrlDialogCloseHandler;
    onCancel?: UrlDialogCancelHandler;
    onMessage?: UrlDialogMessageHandler;
}
type ColumnTypes = number | 'auto';
type SeparatorItemSpec = SeparatorMenuItemSpec;
interface AutocompleterItemSpec {
    type?: 'autocompleteitem';
    value: string;
    text?: string;
    icon?: string;
    meta?: Record<string, any>;
}
type AutocompleterContents = SeparatorItemSpec | AutocompleterItemSpec | CardMenuItemSpec;
interface AutocompleterSpec {
    type?: 'autocompleter';
    ch?: string;
    trigger?: string;
    minChars?: number;
    columns?: ColumnTypes;
    matches?: (rng: Range, text: string, pattern: string) => boolean;
    fetch: (pattern: string, maxResults: number, fetchOptions: Record<string, any>) => Promise<AutocompleterContents[]>;
    onAction: (autocompleterApi: AutocompleterInstanceApi, rng: Range, value: string, meta: Record<string, any>) => void;
    maxResults?: number;
    highlightOn?: string[];
}
interface AutocompleterInstanceApi {
    hide: () => void;
    reload: (fetchOptions: Record<string, any>) => void;
}
type ContextPosition = 'node' | 'selection' | 'line';
type ContextScope = 'node' | 'editor';
interface ContextBarSpec {
    predicate?: (elem: Element) => boolean;
    position?: ContextPosition;
    scope?: ContextScope;
}
interface ContextFormLaunchButtonApi extends BaseToolbarButtonSpec<BaseToolbarButtonInstanceApi> {
    type: 'contextformbutton';
}
interface ContextFormLaunchToggleButtonSpec extends BaseToolbarToggleButtonSpec<BaseToolbarToggleButtonInstanceApi> {
    type: 'contextformtogglebutton';
}
interface ContextFormButtonInstanceApi extends BaseToolbarButtonInstanceApi {
}
interface ContextFormToggleButtonInstanceApi extends BaseToolbarToggleButtonInstanceApi {
}
interface ContextFormButtonSpec extends BaseToolbarButtonSpec<ContextFormButtonInstanceApi> {
    type?: 'contextformbutton';
    primary?: boolean;
    onAction: (formApi: ContextFormInstanceApi, api: ContextFormButtonInstanceApi) => void;
}
interface ContextFormToggleButtonSpec extends BaseToolbarToggleButtonSpec<ContextFormToggleButtonInstanceApi> {
    type?: 'contextformtogglebutton';
    onAction: (formApi: ContextFormInstanceApi, buttonApi: ContextFormToggleButtonInstanceApi) => void;
    primary?: boolean;
}
interface ContextFormInstanceApi {
    hide: () => void;
    getValue: () => string;
}
interface ContextFormSpec extends ContextBarSpec {
    type?: 'contextform';
    initValue?: () => string;
    label?: string;
    launch?: ContextFormLaunchButtonApi | ContextFormLaunchToggleButtonSpec;
    commands: Array<ContextFormToggleButtonSpec | ContextFormButtonSpec>;
}
interface ContextToolbarSpec extends ContextBarSpec {
    type?: 'contexttoolbar';
    items: string;
}
type PublicDialog_d_AlertBannerSpec = AlertBannerSpec;
type PublicDialog_d_BarSpec = BarSpec;
type PublicDialog_d_BodyComponentSpec = BodyComponentSpec;
type PublicDialog_d_ButtonSpec = ButtonSpec;
type PublicDialog_d_CheckboxSpec = CheckboxSpec;
type PublicDialog_d_CollectionItem = CollectionItem;
type PublicDialog_d_CollectionSpec = CollectionSpec;
type PublicDialog_d_ColorInputSpec = ColorInputSpec;
type PublicDialog_d_ColorPickerSpec = ColorPickerSpec;
type PublicDialog_d_CustomEditorSpec = CustomEditorSpec;
type PublicDialog_d_CustomEditorInit = CustomEditorInit;
type PublicDialog_d_CustomEditorInitFn = CustomEditorInitFn;
type PublicDialog_d_DialogData = DialogData;
type PublicDialog_d_DialogSize = DialogSize;
type PublicDialog_d_DialogSpec<T extends DialogData> = DialogSpec<T>;
type PublicDialog_d_DialogInstanceApi<T extends DialogData> = DialogInstanceApi<T>;
type PublicDialog_d_DialogFooterButtonSpec = DialogFooterButtonSpec;
type PublicDialog_d_DialogActionDetails = DialogActionDetails;
type PublicDialog_d_DialogChangeDetails<T> = DialogChangeDetails<T>;
type PublicDialog_d_DialogTabChangeDetails = DialogTabChangeDetails;
type PublicDialog_d_DropZoneSpec = DropZoneSpec;
type PublicDialog_d_GridSpec = GridSpec;
type PublicDialog_d_HtmlPanelSpec = HtmlPanelSpec;
type PublicDialog_d_IframeSpec = IframeSpec;
type PublicDialog_d_ImagePreviewSpec = ImagePreviewSpec;
type PublicDialog_d_InputSpec = InputSpec;
type PublicDialog_d_LabelSpec = LabelSpec;
type PublicDialog_d_ListBoxSpec = ListBoxSpec;
type PublicDialog_d_ListBoxItemSpec = ListBoxItemSpec;
type PublicDialog_d_ListBoxNestedItemSpec = ListBoxNestedItemSpec;
type PublicDialog_d_ListBoxSingleItemSpec = ListBoxSingleItemSpec;
type PublicDialog_d_PanelSpec = PanelSpec;
type PublicDialog_d_SelectBoxSpec = SelectBoxSpec;
type PublicDialog_d_SelectBoxItemSpec = SelectBoxItemSpec;
type PublicDialog_d_SizeInputSpec = SizeInputSpec;
type PublicDialog_d_SliderSpec = SliderSpec;
type PublicDialog_d_TableSpec = TableSpec;
type PublicDialog_d_TabSpec = TabSpec;
type PublicDialog_d_TabPanelSpec = TabPanelSpec;
type PublicDialog_d_TextAreaSpec = TextAreaSpec;
type PublicDialog_d_TreeSpec = TreeSpec;
type PublicDialog_d_TreeItemSpec = TreeItemSpec;
type PublicDialog_d_UrlInputData = UrlInputData;
type PublicDialog_d_UrlInputSpec = UrlInputSpec;
type PublicDialog_d_UrlDialogSpec = UrlDialogSpec;
type PublicDialog_d_UrlDialogFooterButtonSpec = UrlDialogFooterButtonSpec;
type PublicDialog_d_UrlDialogInstanceApi = UrlDialogInstanceApi;
type PublicDialog_d_UrlDialogActionDetails = UrlDialogActionDetails;
type PublicDialog_d_UrlDialogMessage = UrlDialogMessage;
declare namespace PublicDialog_d {
    export { PublicDialog_d_AlertBannerSpec as AlertBannerSpec, PublicDialog_d_BarSpec as BarSpec, PublicDialog_d_BodyComponentSpec as BodyComponentSpec, PublicDialog_d_ButtonSpec as ButtonSpec, PublicDialog_d_CheckboxSpec as CheckboxSpec, PublicDialog_d_CollectionItem as CollectionItem, PublicDialog_d_CollectionSpec as CollectionSpec, PublicDialog_d_ColorInputSpec as ColorInputSpec, PublicDialog_d_ColorPickerSpec as ColorPickerSpec, PublicDialog_d_CustomEditorSpec as CustomEditorSpec, PublicDialog_d_CustomEditorInit as CustomEditorInit, PublicDialog_d_CustomEditorInitFn as CustomEditorInitFn, PublicDialog_d_DialogData as DialogData, PublicDialog_d_DialogSize as DialogSize, PublicDialog_d_DialogSpec as DialogSpec, PublicDialog_d_DialogInstanceApi as DialogInstanceApi, PublicDialog_d_DialogFooterButtonSpec as DialogFooterButtonSpec, PublicDialog_d_DialogActionDetails as DialogActionDetails, PublicDialog_d_DialogChangeDetails as DialogChangeDetails, PublicDialog_d_DialogTabChangeDetails as DialogTabChangeDetails, PublicDialog_d_DropZoneSpec as DropZoneSpec, PublicDialog_d_GridSpec as GridSpec, PublicDialog_d_HtmlPanelSpec as HtmlPanelSpec, PublicDialog_d_IframeSpec as IframeSpec, PublicDialog_d_ImagePreviewSpec as ImagePreviewSpec, PublicDialog_d_InputSpec as InputSpec, PublicDialog_d_LabelSpec as LabelSpec, PublicDialog_d_ListBoxSpec as ListBoxSpec, PublicDialog_d_ListBoxItemSpec as ListBoxItemSpec, PublicDialog_d_ListBoxNestedItemSpec as ListBoxNestedItemSpec, PublicDialog_d_ListBoxSingleItemSpec as ListBoxSingleItemSpec, PublicDialog_d_PanelSpec as PanelSpec, PublicDialog_d_SelectBoxSpec as SelectBoxSpec, PublicDialog_d_SelectBoxItemSpec as SelectBoxItemSpec, PublicDialog_d_SizeInputSpec as SizeInputSpec, PublicDialog_d_SliderSpec as SliderSpec, PublicDialog_d_TableSpec as TableSpec, PublicDialog_d_TabSpec as TabSpec, PublicDialog_d_TabPanelSpec as TabPanelSpec, PublicDialog_d_TextAreaSpec as TextAreaSpec, PublicDialog_d_TreeSpec as TreeSpec, PublicDialog_d_TreeItemSpec as TreeItemSpec, DirectorySpec as TreeDirectorySpec, LeafSpec as TreeLeafSpec, PublicDialog_d_UrlInputData as UrlInputData, PublicDialog_d_UrlInputSpec as UrlInputSpec, PublicDialog_d_UrlDialogSpec as UrlDialogSpec, PublicDialog_d_UrlDialogFooterButtonSpec as UrlDialogFooterButtonSpec, PublicDialog_d_UrlDialogInstanceApi as UrlDialogInstanceApi, PublicDialog_d_UrlDialogActionDetails as UrlDialogActionDetails, PublicDialog_d_UrlDialogMessage as UrlDialogMessage, };
}
type PublicInlineContent_d_AutocompleterSpec = AutocompleterSpec;
type PublicInlineContent_d_AutocompleterItemSpec = AutocompleterItemSpec;
type PublicInlineContent_d_AutocompleterContents = AutocompleterContents;
type PublicInlineContent_d_AutocompleterInstanceApi = AutocompleterInstanceApi;
type PublicInlineContent_d_ContextPosition = ContextPosition;
type PublicInlineContent_d_ContextScope = ContextScope;
type PublicInlineContent_d_ContextFormSpec = ContextFormSpec;
type PublicInlineContent_d_ContextFormInstanceApi = ContextFormInstanceApi;
type PublicInlineContent_d_ContextFormButtonSpec = ContextFormButtonSpec;
type PublicInlineContent_d_ContextFormButtonInstanceApi = ContextFormButtonInstanceApi;
type PublicInlineContent_d_ContextFormToggleButtonSpec = ContextFormToggleButtonSpec;
type PublicInlineContent_d_ContextFormToggleButtonInstanceApi = ContextFormToggleButtonInstanceApi;
type PublicInlineContent_d_ContextToolbarSpec = ContextToolbarSpec;
type PublicInlineContent_d_SeparatorItemSpec = SeparatorItemSpec;
declare namespace PublicInlineContent_d {
    export { PublicInlineContent_d_AutocompleterSpec as AutocompleterSpec, PublicInlineContent_d_AutocompleterItemSpec as AutocompleterItemSpec, PublicInlineContent_d_AutocompleterContents as AutocompleterContents, PublicInlineContent_d_AutocompleterInstanceApi as AutocompleterInstanceApi, PublicInlineContent_d_ContextPosition as ContextPosition, PublicInlineContent_d_ContextScope as ContextScope, PublicInlineContent_d_ContextFormSpec as ContextFormSpec, PublicInlineContent_d_ContextFormInstanceApi as ContextFormInstanceApi, PublicInlineContent_d_ContextFormButtonSpec as ContextFormButtonSpec, PublicInlineContent_d_ContextFormButtonInstanceApi as ContextFormButtonInstanceApi, PublicInlineContent_d_ContextFormToggleButtonSpec as ContextFormToggleButtonSpec, PublicInlineContent_d_ContextFormToggleButtonInstanceApi as ContextFormToggleButtonInstanceApi, PublicInlineContent_d_ContextToolbarSpec as ContextToolbarSpec, PublicInlineContent_d_SeparatorItemSpec as SeparatorItemSpec, };
}
type PublicMenu_d_MenuItemSpec = MenuItemSpec;
type PublicMenu_d_MenuItemInstanceApi = MenuItemInstanceApi;
type PublicMenu_d_NestedMenuItemContents = NestedMenuItemContents;
type PublicMenu_d_NestedMenuItemSpec = NestedMenuItemSpec;
type PublicMenu_d_NestedMenuItemInstanceApi = NestedMenuItemInstanceApi;
type PublicMenu_d_FancyMenuItemSpec = FancyMenuItemSpec;
type PublicMenu_d_ColorSwatchMenuItemSpec = ColorSwatchMenuItemSpec;
type PublicMenu_d_InsertTableMenuItemSpec = InsertTableMenuItemSpec;
type PublicMenu_d_ToggleMenuItemSpec = ToggleMenuItemSpec;
type PublicMenu_d_ToggleMenuItemInstanceApi = ToggleMenuItemInstanceApi;
type PublicMenu_d_ChoiceMenuItemSpec = ChoiceMenuItemSpec;
type PublicMenu_d_ChoiceMenuItemInstanceApi = ChoiceMenuItemInstanceApi;
type PublicMenu_d_SeparatorMenuItemSpec = SeparatorMenuItemSpec;
type PublicMenu_d_ContextMenuApi = ContextMenuApi;
type PublicMenu_d_ContextMenuContents = ContextMenuContents;
type PublicMenu_d_ContextMenuItem = ContextMenuItem;
type PublicMenu_d_ContextSubMenu = ContextSubMenu;
type PublicMenu_d_CardMenuItemSpec = CardMenuItemSpec;
type PublicMenu_d_CardMenuItemInstanceApi = CardMenuItemInstanceApi;
type PublicMenu_d_CardItemSpec = CardItemSpec;
type PublicMenu_d_CardContainerSpec = CardContainerSpec;
type PublicMenu_d_CardImageSpec = CardImageSpec;
type PublicMenu_d_CardTextSpec = CardTextSpec;
declare namespace PublicMenu_d {
    export { PublicMenu_d_MenuItemSpec as MenuItemSpec, PublicMenu_d_MenuItemInstanceApi as MenuItemInstanceApi, PublicMenu_d_NestedMenuItemContents as NestedMenuItemContents, PublicMenu_d_NestedMenuItemSpec as NestedMenuItemSpec, PublicMenu_d_NestedMenuItemInstanceApi as NestedMenuItemInstanceApi, PublicMenu_d_FancyMenuItemSpec as FancyMenuItemSpec, PublicMenu_d_ColorSwatchMenuItemSpec as ColorSwatchMenuItemSpec, PublicMenu_d_InsertTableMenuItemSpec as InsertTableMenuItemSpec, PublicMenu_d_ToggleMenuItemSpec as ToggleMenuItemSpec, PublicMenu_d_ToggleMenuItemInstanceApi as ToggleMenuItemInstanceApi, PublicMenu_d_ChoiceMenuItemSpec as ChoiceMenuItemSpec, PublicMenu_d_ChoiceMenuItemInstanceApi as ChoiceMenuItemInstanceApi, PublicMenu_d_SeparatorMenuItemSpec as SeparatorMenuItemSpec, PublicMenu_d_ContextMenuApi as ContextMenuApi, PublicMenu_d_ContextMenuContents as ContextMenuContents, PublicMenu_d_ContextMenuItem as ContextMenuItem, PublicMenu_d_ContextSubMenu as ContextSubMenu, PublicMenu_d_CardMenuItemSpec as CardMenuItemSpec, PublicMenu_d_CardMenuItemInstanceApi as CardMenuItemInstanceApi, PublicMenu_d_CardItemSpec as CardItemSpec, PublicMenu_d_CardContainerSpec as CardContainerSpec, PublicMenu_d_CardImageSpec as CardImageSpec, PublicMenu_d_CardTextSpec as CardTextSpec, };
}
interface SidebarInstanceApi {
    element: () => HTMLElement;
}
interface SidebarSpec {
    icon?: string;
    tooltip?: string;
    onShow?: (api: SidebarInstanceApi) => void;
    onSetup?: (api: SidebarInstanceApi) => (api: SidebarInstanceApi) => void;
    onHide?: (api: SidebarInstanceApi) => void;
}
type PublicSidebar_d_SidebarSpec = SidebarSpec;
type PublicSidebar_d_SidebarInstanceApi = SidebarInstanceApi;
declare namespace PublicSidebar_d {
    export { PublicSidebar_d_SidebarSpec as SidebarSpec, PublicSidebar_d_SidebarInstanceApi as SidebarInstanceApi, };
}
type PublicToolbar_d_ToolbarButtonSpec = ToolbarButtonSpec;
type PublicToolbar_d_ToolbarButtonInstanceApi = ToolbarButtonInstanceApi;
type PublicToolbar_d_ToolbarSplitButtonSpec = ToolbarSplitButtonSpec;
type PublicToolbar_d_ToolbarSplitButtonInstanceApi = ToolbarSplitButtonInstanceApi;
type PublicToolbar_d_ToolbarMenuButtonSpec = ToolbarMenuButtonSpec;
type PublicToolbar_d_ToolbarMenuButtonInstanceApi = ToolbarMenuButtonInstanceApi;
type PublicToolbar_d_ToolbarToggleButtonSpec = ToolbarToggleButtonSpec;
type PublicToolbar_d_ToolbarToggleButtonInstanceApi = ToolbarToggleButtonInstanceApi;
type PublicToolbar_d_GroupToolbarButtonSpec = GroupToolbarButtonSpec;
type PublicToolbar_d_GroupToolbarButtonInstanceApi = GroupToolbarButtonInstanceApi;
declare namespace PublicToolbar_d {
    export { PublicToolbar_d_ToolbarButtonSpec as ToolbarButtonSpec, PublicToolbar_d_ToolbarButtonInstanceApi as ToolbarButtonInstanceApi, PublicToolbar_d_ToolbarSplitButtonSpec as ToolbarSplitButtonSpec, PublicToolbar_d_ToolbarSplitButtonInstanceApi as ToolbarSplitButtonInstanceApi, PublicToolbar_d_ToolbarMenuButtonSpec as ToolbarMenuButtonSpec, PublicToolbar_d_ToolbarMenuButtonInstanceApi as ToolbarMenuButtonInstanceApi, PublicToolbar_d_ToolbarToggleButtonSpec as ToolbarToggleButtonSpec, PublicToolbar_d_ToolbarToggleButtonInstanceApi as ToolbarToggleButtonInstanceApi, PublicToolbar_d_GroupToolbarButtonSpec as GroupToolbarButtonSpec, PublicToolbar_d_GroupToolbarButtonInstanceApi as GroupToolbarButtonInstanceApi, };
}
interface ViewButtonApi {
    setIcon: (newIcon: string) => void;
}
interface ViewToggleButtonApi extends ViewButtonApi {
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
interface BaseButtonSpec<Api extends ViewButtonApi> {
    text?: string;
    icon?: string;
    tooltip?: string;
    buttonType?: 'primary' | 'secondary';
    borderless?: boolean;
    onAction: (api: Api) => void;
}
interface ViewNormalButtonSpec extends BaseButtonSpec<ViewButtonApi> {
    text: string;
    type: 'button';
}
interface ViewToggleButtonSpec extends BaseButtonSpec<ViewToggleButtonApi> {
    type: 'togglebutton';
    active?: boolean;
    onAction: (api: ViewToggleButtonApi) => void;
}
interface ViewButtonsGroupSpec {
    type: 'group';
    buttons: Array<ViewNormalButtonSpec | ViewToggleButtonSpec>;
}
type ViewButtonSpec = ViewNormalButtonSpec | ViewToggleButtonSpec | ViewButtonsGroupSpec;
interface ViewInstanceApi {
    getContainer: () => HTMLElement;
}
interface ViewSpec {
    buttons?: ViewButtonSpec[];
    onShow: (api: ViewInstanceApi) => void;
    onHide: (api: ViewInstanceApi) => void;
}
type PublicView_d_ViewSpec = ViewSpec;
type PublicView_d_ViewInstanceApi = ViewInstanceApi;
declare namespace PublicView_d {
    export { PublicView_d_ViewSpec as ViewSpec, PublicView_d_ViewInstanceApi as ViewInstanceApi, };
}
interface Registry$1 {
    addButton: (name: string, spec: ToolbarButtonSpec) => void;
    addGroupToolbarButton: (name: string, spec: GroupToolbarButtonSpec) => void;
    addToggleButton: (name: string, spec: ToolbarToggleButtonSpec) => void;
    addMenuButton: (name: string, spec: ToolbarMenuButtonSpec) => void;
    addSplitButton: (name: string, spec: ToolbarSplitButtonSpec) => void;
    addMenuItem: (name: string, spec: MenuItemSpec) => void;
    addNestedMenuItem: (name: string, spec: NestedMenuItemSpec) => void;
    addToggleMenuItem: (name: string, spec: ToggleMenuItemSpec) => void;
    addContextMenu: (name: string, spec: ContextMenuApi) => void;
    addContextToolbar: (name: string, spec: ContextToolbarSpec) => void;
    addContextForm: (name: string, spec: ContextFormSpec) => void;
    addIcon: (name: string, svgData: string) => void;
    addAutocompleter: (name: string, spec: AutocompleterSpec) => void;
    addSidebar: (name: string, spec: SidebarSpec) => void;
    addView: (name: string, spec: ViewSpec) => void;
    getAll: () => {
        buttons: Record<string, ToolbarButtonSpec | GroupToolbarButtonSpec | ToolbarMenuButtonSpec | ToolbarSplitButtonSpec | ToolbarToggleButtonSpec>;
        menuItems: Record<string, MenuItemSpec | NestedMenuItemSpec | ToggleMenuItemSpec>;
        popups: Record<string, AutocompleterSpec>;
        contextMenus: Record<string, ContextMenuApi>;
        contextToolbars: Record<string, ContextToolbarSpec | ContextFormSpec>;
        icons: Record<string, string>;
        sidebars: Record<string, SidebarSpec>;
        views: Record<string, ViewSpec>;
    };
}
interface AutocompleteLookupData {
    readonly matchText: string;
    readonly items: AutocompleterContents[];
    readonly columns: ColumnTypes;
    readonly onAction: (autoApi: AutocompleterInstanceApi, rng: Range, value: string, meta: Record<string, any>) => void;
    readonly highlightOn: string[];
}
interface AutocompleterEventArgs {
    readonly lookupData: AutocompleteLookupData[];
}
interface RangeLikeObject {
    startContainer: Node;
    startOffset: number;
    endContainer: Node;
    endOffset: number;
}
type ApplyFormat = BlockFormat | InlineFormat | SelectorFormat;
type RemoveFormat = RemoveBlockFormat | RemoveInlineFormat | RemoveSelectorFormat;
type Format = ApplyFormat | RemoveFormat;
type Formats = Record<string, Format | Format[]>;
type FormatAttrOrStyleValue = string | ((vars?: FormatVars) => string | null);
type FormatVars = Record<string, string | null>;
interface BaseFormat<T> {
    ceFalseOverride?: boolean;
    classes?: string | string[];
    collapsed?: boolean;
    exact?: boolean;
    expand?: boolean;
    links?: boolean;
    mixed?: boolean;
    block_expand?: boolean;
    onmatch?: (node: Element, fmt: T, itemName: string) => boolean;
    remove?: 'none' | 'empty' | 'all';
    remove_similar?: boolean;
    split?: boolean;
    deep?: boolean;
    preserve_attributes?: string[];
}
interface Block {
    block: string;
    list_block?: string;
    wrapper?: boolean;
}
interface Inline {
    inline: string;
}
interface Selector {
    selector: string;
    inherit?: boolean;
}
interface CommonFormat<T> extends BaseFormat<T> {
    attributes?: Record<string, FormatAttrOrStyleValue>;
    styles?: Record<string, FormatAttrOrStyleValue>;
    toggle?: boolean;
    preview?: string | false;
    onformat?: (elm: Element, fmt: T, vars?: FormatVars, node?: Node | RangeLikeObject | null) => void;
    clear_child_styles?: boolean;
    merge_siblings?: boolean;
    merge_with_parents?: boolean;
}
interface BlockFormat extends Block, CommonFormat<BlockFormat> {
}
interface InlineFormat extends Inline, CommonFormat<InlineFormat> {
}
interface SelectorFormat extends Selector, CommonFormat<SelectorFormat> {
}
interface CommonRemoveFormat<T> extends BaseFormat<T> {
    attributes?: string[] | Record<string, FormatAttrOrStyleValue>;
    styles?: string[] | Record<string, FormatAttrOrStyleValue>;
}
interface RemoveBlockFormat extends Block, CommonRemoveFormat<RemoveBlockFormat> {
}
interface RemoveInlineFormat extends Inline, CommonRemoveFormat<RemoveInlineFormat> {
}
interface RemoveSelectorFormat extends Selector, CommonRemoveFormat<RemoveSelectorFormat> {
}
interface Filter<C extends Function> {
    name: string;
    callbacks: C[];
}
interface ParserArgs {
    getInner?: boolean | number;
    forced_root_block?: boolean | string;
    context?: string;
    isRootContent?: boolean;
    format?: string;
    invalid?: boolean;
    no_events?: boolean;
    [key: string]: any;
}
type ParserFilterCallback = (nodes: AstNode[], name: string, args: ParserArgs) => void;
interface ParserFilter extends Filter<ParserFilterCallback> {
}
interface DomParserSettings {
    allow_html_data_urls?: boolean;
    allow_svg_data_urls?: boolean;
    allow_conditional_comments?: boolean;
    allow_html_in_named_anchor?: boolean;
    allow_script_urls?: boolean;
    allow_unsafe_link_target?: boolean;
    blob_cache?: BlobCache;
    convert_fonts_to_spans?: boolean;
    convert_unsafe_embeds?: boolean;
    document?: Document;
    fix_list_elements?: boolean;
    font_size_legacy_values?: string;
    forced_root_block?: boolean | string;
    forced_root_block_attrs?: Record<string, string>;
    inline_styles?: boolean;
    pad_empty_with_br?: boolean;
    preserve_cdata?: boolean;
    remove_trailing_brs?: boolean;
    root_name?: string;
    sandbox_iframes?: boolean;
    sanitize?: boolean;
    validate?: boolean;
}
interface DomParser {
    schema: Schema;
    addAttributeFilter: (name: string, callback: ParserFilterCallback) => void;
    getAttributeFilters: () => ParserFilter[];
    removeAttributeFilter: (name: string, callback?: ParserFilterCallback) => void;
    addNodeFilter: (name: string, callback: ParserFilterCallback) => void;
    getNodeFilters: () => ParserFilter[];
    removeNodeFilter: (name: string, callback?: ParserFilterCallback) => void;
    parse: (html: string, args?: ParserArgs) => AstNode;
}
interface StyleSheetLoaderSettings {
    maxLoadTime?: number;
    contentCssCors?: boolean;
    referrerPolicy?: ReferrerPolicy;
}
interface StyleSheetLoader {
    load: (url: string) => Promise<void>;
    loadRawCss: (key: string, css: string) => void;
    loadAll: (urls: string[]) => Promise<string[]>;
    unload: (url: string) => void;
    unloadRawCss: (key: string) => void;
    unloadAll: (urls: string[]) => void;
    _setReferrerPolicy: (referrerPolicy: ReferrerPolicy) => void;
    _setContentCssCors: (contentCssCors: boolean) => void;
}
type Registry = Registry$1;
interface EditorUiApi {
    show: () => void;
    hide: () => void;
    setEnabled: (state: boolean) => void;
    isEnabled: () => boolean;
}
interface EditorUi extends EditorUiApi {
    registry: Registry;
    styleSheetLoader: StyleSheetLoader;
}
type Ui_d_Registry = Registry;
type Ui_d_EditorUiApi = EditorUiApi;
type Ui_d_EditorUi = EditorUi;
declare namespace Ui_d {
    export { Ui_d_Registry as Registry, PublicDialog_d as Dialog, PublicInlineContent_d as InlineContent, PublicMenu_d as Menu, PublicView_d as View, PublicSidebar_d as Sidebar, PublicToolbar_d as Toolbar, Ui_d_EditorUiApi as EditorUiApi, Ui_d_EditorUi as EditorUi, };
}
interface WindowParams {
    readonly inline?: 'cursor' | 'toolbar' | 'bottom';
    readonly ariaAttrs?: boolean;
    readonly persistent?: boolean;
}
type InstanceApi<T extends DialogData> = UrlDialogInstanceApi | DialogInstanceApi<T>;
interface WindowManagerImpl {
    open: <T extends DialogData>(config: DialogSpec<T>, params: WindowParams | undefined, closeWindow: (dialog: DialogInstanceApi<T>) => void) => DialogInstanceApi<T>;
    openUrl: (config: UrlDialogSpec, closeWindow: (dialog: UrlDialogInstanceApi) => void) => UrlDialogInstanceApi;
    alert: (message: string, callback: () => void) => void;
    confirm: (message: string, callback: (state: boolean) => void) => void;
    close: (dialog: InstanceApi<any>) => void;
}
interface WindowManager {
    open: <T extends DialogData>(config: DialogSpec<T>, params?: WindowParams) => DialogInstanceApi<T>;
    openUrl: (config: UrlDialogSpec) => UrlDialogInstanceApi;
    alert: (message: string, callback?: () => void, scope?: any) => void;
    confirm: (message: string, callback?: (state: boolean) => void, scope?: any) => void;
    close: () => void;
}
interface ExecCommandEvent {
    command: string;
    ui: boolean;
    value?: any;
}
interface BeforeGetContentEvent extends GetContentArgs {
    selection?: boolean;
}
interface GetContentEvent extends BeforeGetContentEvent {
    content: string;
}
interface BeforeSetContentEvent extends SetContentArgs {
    content: string;
    selection?: boolean;
}
interface SetContentEvent extends BeforeSetContentEvent {
    content: string;
}
interface SaveContentEvent extends GetContentEvent {
    save: boolean;
}
interface NewBlockEvent {
    newBlock: Element;
}
interface NodeChangeEvent {
    element: Element;
    parents: Node[];
    selectionChange?: boolean;
    initial?: boolean;
}
interface FormatEvent {
    format: string;
    vars?: FormatVars;
    node?: Node | RangeLikeObject | null;
}
interface ObjectResizeEvent {
    target: HTMLElement;
    width: number;
    height: number;
    origin: string;
}
interface ObjectSelectedEvent {
    target: Node;
    targetClone?: Node;
}
interface ScrollIntoViewEvent {
    elm: HTMLElement;
    alignToTop: boolean | undefined;
}
interface SetSelectionRangeEvent {
    range: Range;
    forward: boolean | undefined;
}
interface ShowCaretEvent {
    target: Node;
    direction: number;
    before: boolean;
}
interface SwitchModeEvent {
    mode: string;
}
interface ChangeEvent {
    level: UndoLevel;
    lastLevel: UndoLevel | undefined;
}
interface AddUndoEvent extends ChangeEvent {
    originalEvent: Event | undefined;
}
interface UndoRedoEvent {
    level: UndoLevel;
}
interface WindowEvent<T extends DialogData> {
    dialog: InstanceApi<T>;
}
interface ProgressStateEvent {
    state: boolean;
    time?: number;
}
interface AfterProgressStateEvent {
    state: boolean;
}
interface PlaceholderToggleEvent {
    state: boolean;
}
interface LoadErrorEvent {
    message: string;
}
interface PreProcessEvent extends ParserArgs {
    node: Element;
}
interface PostProcessEvent extends ParserArgs {
    content: string;
}
interface PastePlainTextToggleEvent {
    state: boolean;
}
interface PastePreProcessEvent {
    content: string;
    readonly internal: boolean;
}
interface PastePostProcessEvent {
    node: HTMLElement;
    readonly internal: boolean;
}
interface EditableRootStateChangeEvent {
    state: boolean;
}
interface NewTableRowEvent {
    node: HTMLTableRowElement;
}
interface NewTableCellEvent {
    node: HTMLTableCellElement;
}
interface TableEventData {
    readonly structure: boolean;
    readonly style: boolean;
}
interface TableModifiedEvent extends TableEventData {
    readonly table: HTMLTableElement;
}
interface BeforeOpenNotificationEvent {
    notification: NotificationSpec;
}
interface OpenNotificationEvent {
    notification: NotificationApi;
}
interface EditorEventMap extends Omit<NativeEventMap, 'blur' | 'focus'> {
    'activate': {
        relatedTarget: Editor | null;
    };
    'deactivate': {
        relatedTarget: Editor;
    };
    'focus': {
        blurredEditor: Editor | null;
    };
    'blur': {
        focusedEditor: Editor | null;
    };
    'resize': UIEvent;
    'scroll': UIEvent;
    'input': InputEvent;
    'beforeinput': InputEvent;
    'detach': {};
    'remove': {};
    'init': {};
    'ScrollIntoView': ScrollIntoViewEvent;
    'AfterScrollIntoView': ScrollIntoViewEvent;
    'ObjectResized': ObjectResizeEvent;
    'ObjectResizeStart': ObjectResizeEvent;
    'SwitchMode': SwitchModeEvent;
    'ScrollWindow': Event;
    'ResizeWindow': UIEvent;
    'SkinLoaded': {};
    'SkinLoadError': LoadErrorEvent;
    'PluginLoadError': LoadErrorEvent;
    'ModelLoadError': LoadErrorEvent;
    'IconsLoadError': LoadErrorEvent;
    'ThemeLoadError': LoadErrorEvent;
    'LanguageLoadError': LoadErrorEvent;
    'BeforeExecCommand': ExecCommandEvent;
    'ExecCommand': ExecCommandEvent;
    'NodeChange': NodeChangeEvent;
    'FormatApply': FormatEvent;
    'FormatRemove': FormatEvent;
    'ShowCaret': ShowCaretEvent;
    'SelectionChange': {};
    'ObjectSelected': ObjectSelectedEvent;
    'BeforeObjectSelected': ObjectSelectedEvent;
    'GetSelectionRange': {
        range: Range;
    };
    'SetSelectionRange': SetSelectionRangeEvent;
    'AfterSetSelectionRange': SetSelectionRangeEvent;
    'BeforeGetContent': BeforeGetContentEvent;
    'GetContent': GetContentEvent;
    'BeforeSetContent': BeforeSetContentEvent;
    'SetContent': SetContentEvent;
    'SaveContent': SaveContentEvent;
    'RawSaveContent': SaveContentEvent;
    'LoadContent': {
        load: boolean;
        element: HTMLElement;
    };
    'PreviewFormats': {};
    'AfterPreviewFormats': {};
    'ScriptsLoaded': {};
    'PreInit': {};
    'PostRender': {};
    'NewBlock': NewBlockEvent;
    'ClearUndos': {};
    'TypingUndo': {};
    'Redo': UndoRedoEvent;
    'Undo': UndoRedoEvent;
    'BeforeAddUndo': AddUndoEvent;
    'AddUndo': AddUndoEvent;
    'change': ChangeEvent;
    'CloseWindow': WindowEvent<any>;
    'OpenWindow': WindowEvent<any>;
    'ProgressState': ProgressStateEvent;
    'AfterProgressState': AfterProgressStateEvent;
    'PlaceholderToggle': PlaceholderToggleEvent;
    'tap': TouchEvent;
    'longpress': TouchEvent;
    'longpresscancel': {};
    'PreProcess': PreProcessEvent;
    'PostProcess': PostProcessEvent;
    'AutocompleterStart': AutocompleterEventArgs;
    'AutocompleterUpdate': AutocompleterEventArgs;
    'AutocompleterEnd': {};
    'PastePlainTextToggle': PastePlainTextToggleEvent;
    'PastePreProcess': PastePreProcessEvent;
    'PastePostProcess': PastePostProcessEvent;
    'TableModified': TableModifiedEvent;
    'NewRow': NewTableRowEvent;
    'NewCell': NewTableCellEvent;
    'SetAttrib': SetAttribEvent;
    'hide': {};
    'show': {};
    'dirty': {};
    'BeforeOpenNotification': BeforeOpenNotificationEvent;
    'OpenNotification': OpenNotificationEvent;
}
interface EditorManagerEventMap {
    'AddEditor': {
        editor: Editor;
    };
    'RemoveEditor': {
        editor: Editor;
    };
    'BeforeUnload': {
        returnValue: any;
    };
}
type EventTypes_d_ExecCommandEvent = ExecCommandEvent;
type EventTypes_d_BeforeGetContentEvent = BeforeGetContentEvent;
type EventTypes_d_GetContentEvent = GetContentEvent;
type EventTypes_d_BeforeSetContentEvent = BeforeSetContentEvent;
type EventTypes_d_SetContentEvent = SetContentEvent;
type EventTypes_d_SaveContentEvent = SaveContentEvent;
type EventTypes_d_NewBlockEvent = NewBlockEvent;
type EventTypes_d_NodeChangeEvent = NodeChangeEvent;
type EventTypes_d_FormatEvent = FormatEvent;
type EventTypes_d_ObjectResizeEvent = ObjectResizeEvent;
type EventTypes_d_ObjectSelectedEvent = ObjectSelectedEvent;
type EventTypes_d_ScrollIntoViewEvent = ScrollIntoViewEvent;
type EventTypes_d_SetSelectionRangeEvent = SetSelectionRangeEvent;
type EventTypes_d_ShowCaretEvent = ShowCaretEvent;
type EventTypes_d_SwitchModeEvent = SwitchModeEvent;
type EventTypes_d_ChangeEvent = ChangeEvent;
type EventTypes_d_AddUndoEvent = AddUndoEvent;
type EventTypes_d_UndoRedoEvent = UndoRedoEvent;
type EventTypes_d_WindowEvent<T extends DialogData> = WindowEvent<T>;
type EventTypes_d_ProgressStateEvent = ProgressStateEvent;
type EventTypes_d_AfterProgressStateEvent = AfterProgressStateEvent;
type EventTypes_d_PlaceholderToggleEvent = PlaceholderToggleEvent;
type EventTypes_d_LoadErrorEvent = LoadErrorEvent;
type EventTypes_d_PreProcessEvent = PreProcessEvent;
type EventTypes_d_PostProcessEvent = PostProcessEvent;
type EventTypes_d_PastePlainTextToggleEvent = PastePlainTextToggleEvent;
type EventTypes_d_PastePreProcessEvent = PastePreProcessEvent;
type EventTypes_d_PastePostProcessEvent = PastePostProcessEvent;
type EventTypes_d_EditableRootStateChangeEvent = EditableRootStateChangeEvent;
type EventTypes_d_NewTableRowEvent = NewTableRowEvent;
type EventTypes_d_NewTableCellEvent = NewTableCellEvent;
type EventTypes_d_TableEventData = TableEventData;
type EventTypes_d_TableModifiedEvent = TableModifiedEvent;
type EventTypes_d_BeforeOpenNotificationEvent = BeforeOpenNotificationEvent;
type EventTypes_d_OpenNotificationEvent = OpenNotificationEvent;
type EventTypes_d_EditorEventMap = EditorEventMap;
type EventTypes_d_EditorManagerEventMap = EditorManagerEventMap;
declare namespace EventTypes_d {
    export { EventTypes_d_ExecCommandEvent as ExecCommandEvent, EventTypes_d_BeforeGetContentEvent as BeforeGetContentEvent, EventTypes_d_GetContentEvent as GetContentEvent, EventTypes_d_BeforeSetContentEvent as BeforeSetContentEvent, EventTypes_d_SetContentEvent as SetContentEvent, EventTypes_d_SaveContentEvent as SaveContentEvent, EventTypes_d_NewBlockEvent as NewBlockEvent, EventTypes_d_NodeChangeEvent as NodeChangeEvent, EventTypes_d_FormatEvent as FormatEvent, EventTypes_d_ObjectResizeEvent as ObjectResizeEvent, EventTypes_d_ObjectSelectedEvent as ObjectSelectedEvent, EventTypes_d_ScrollIntoViewEvent as ScrollIntoViewEvent, EventTypes_d_SetSelectionRangeEvent as SetSelectionRangeEvent, EventTypes_d_ShowCaretEvent as ShowCaretEvent, EventTypes_d_SwitchModeEvent as SwitchModeEvent, EventTypes_d_ChangeEvent as ChangeEvent, EventTypes_d_AddUndoEvent as AddUndoEvent, EventTypes_d_UndoRedoEvent as UndoRedoEvent, EventTypes_d_WindowEvent as WindowEvent, EventTypes_d_ProgressStateEvent as ProgressStateEvent, EventTypes_d_AfterProgressStateEvent as AfterProgressStateEvent, EventTypes_d_PlaceholderToggleEvent as PlaceholderToggleEvent, EventTypes_d_LoadErrorEvent as LoadErrorEvent, EventTypes_d_PreProcessEvent as PreProcessEvent, EventTypes_d_PostProcessEvent as PostProcessEvent, EventTypes_d_PastePlainTextToggleEvent as PastePlainTextToggleEvent, EventTypes_d_PastePreProcessEvent as PastePreProcessEvent, EventTypes_d_PastePostProcessEvent as PastePostProcessEvent, EventTypes_d_EditableRootStateChangeEvent as EditableRootStateChangeEvent, EventTypes_d_NewTableRowEvent as NewTableRowEvent, EventTypes_d_NewTableCellEvent as NewTableCellEvent, EventTypes_d_TableEventData as TableEventData, EventTypes_d_TableModifiedEvent as TableModifiedEvent, EventTypes_d_BeforeOpenNotificationEvent as BeforeOpenNotificationEvent, EventTypes_d_OpenNotificationEvent as OpenNotificationEvent, EventTypes_d_EditorEventMap as EditorEventMap, EventTypes_d_EditorManagerEventMap as EditorManagerEventMap, };
}
type Format_d_Formats = Formats;
type Format_d_Format = Format;
type Format_d_ApplyFormat = ApplyFormat;
type Format_d_BlockFormat = BlockFormat;
type Format_d_InlineFormat = InlineFormat;
type Format_d_SelectorFormat = SelectorFormat;
type Format_d_RemoveFormat = RemoveFormat;
type Format_d_RemoveBlockFormat = RemoveBlockFormat;
type Format_d_RemoveInlineFormat = RemoveInlineFormat;
type Format_d_RemoveSelectorFormat = RemoveSelectorFormat;
declare namespace Format_d {
    export { Format_d_Formats as Formats, Format_d_Format as Format, Format_d_ApplyFormat as ApplyFormat, Format_d_BlockFormat as BlockFormat, Format_d_InlineFormat as InlineFormat, Format_d_SelectorFormat as SelectorFormat, Format_d_RemoveFormat as RemoveFormat, Format_d_RemoveBlockFormat as RemoveBlockFormat, Format_d_RemoveInlineFormat as RemoveInlineFormat, Format_d_RemoveSelectorFormat as RemoveSelectorFormat, };
}
type StyleFormat = BlockStyleFormat | InlineStyleFormat | SelectorStyleFormat;
type AllowedFormat = Separator | FormatReference | StyleFormat | NestedFormatting;
interface Separator {
    title: string;
}
interface FormatReference {
    title: string;
    format: string;
    icon?: string;
}
interface NestedFormatting {
    title: string;
    items: Array<FormatReference | StyleFormat>;
}
interface CommonStyleFormat {
    name?: string;
    title: string;
    icon?: string;
}
interface BlockStyleFormat extends BlockFormat, CommonStyleFormat {
}
interface InlineStyleFormat extends InlineFormat, CommonStyleFormat {
}
interface SelectorStyleFormat extends SelectorFormat, CommonStyleFormat {
}
type EntityEncoding = 'named' | 'numeric' | 'raw' | 'named,numeric' | 'named+numeric' | 'numeric,named' | 'numeric+named';
interface ContentLanguage {
    readonly title: string;
    readonly code: string;
    readonly customCode?: string;
}
type ThemeInitFunc = (editor: Editor, elm: HTMLElement) => {
    editorContainer: HTMLElement;
    iframeContainer: HTMLElement;
    height?: number;
    iframeHeight?: number;
    api?: EditorUiApi;
};
type SetupCallback = (editor: Editor) => void;
type FilePickerCallback = (callback: (value: string, meta?: Record<string, any>) => void, value: string, meta: Record<string, any>) => void;
type FilePickerValidationStatus = 'valid' | 'unknown' | 'invalid' | 'none';
type FilePickerValidationCallback = (info: {
    type: string;
    url: string;
}, callback: (validation: {
    status: FilePickerValidationStatus;
    message: string;
}) => void) => void;
type PastePreProcessFn = (editor: Editor, args: PastePreProcessEvent) => void;
type PastePostProcessFn = (editor: Editor, args: PastePostProcessEvent) => void;
type URLConverter = (url: string, name: string, elm?: string | Element) => string;
type URLConverterCallback = (url: string, node: Node | string | undefined, on_save: boolean, name: string) => string;
interface ToolbarGroup {
    name?: string;
    items: string[];
}
type ToolbarMode = 'floating' | 'sliding' | 'scrolling' | 'wrap';
type ToolbarLocation = 'top' | 'bottom' | 'auto';
type ForceHexColor = 'always' | 'rgb_only' | 'off';
interface BaseEditorOptions {
    a11y_advanced_options?: boolean;
    add_form_submit_trigger?: boolean;
    add_unload_trigger?: boolean;
    allow_conditional_comments?: boolean;
    allow_html_data_urls?: boolean;
    allow_html_in_named_anchor?: boolean;
    allow_script_urls?: boolean;
    allow_svg_data_urls?: boolean;
    allow_unsafe_link_target?: boolean;
    anchor_bottom?: false | string;
    anchor_top?: false | string;
    auto_focus?: string | true;
    automatic_uploads?: boolean;
    base_url?: string;
    block_formats?: string;
    block_unsupported_drop?: boolean;
    body_id?: string;
    body_class?: string;
    br_in_pre?: boolean;
    br_newline_selector?: string;
    browser_spellcheck?: boolean;
    branding?: boolean;
    cache_suffix?: string;
    color_cols?: number;
    color_cols_foreground?: number;
    color_cols_background?: number;
    color_map?: string[];
    color_map_foreground?: string[];
    color_map_background?: string[];
    color_default_foreground?: string;
    color_default_background?: string;
    content_css?: boolean | string | string[];
    content_css_cors?: boolean;
    content_security_policy?: string;
    content_style?: string;
    content_langs?: ContentLanguage[];
    contextmenu?: string | string[] | false;
    contextmenu_never_use_native?: boolean;
    convert_fonts_to_spans?: boolean;
    convert_unsafe_embeds?: boolean;
    convert_urls?: boolean;
    custom_colors?: boolean;
    custom_elements?: string;
    custom_ui_selector?: string;
    custom_undo_redo_levels?: number;
    default_font_stack?: string[];
    deprecation_warnings?: boolean;
    directionality?: 'ltr' | 'rtl';
    doctype?: string;
    document_base_url?: string;
    draggable_modal?: boolean;
    editable_class?: string;
    editable_root?: boolean;
    element_format?: 'xhtml' | 'html';
    elementpath?: boolean;
    encoding?: string;
    end_container_on_empty_block?: boolean | string;
    entities?: string;
    entity_encoding?: EntityEncoding;
    extended_valid_elements?: string;
    event_root?: string;
    file_picker_callback?: FilePickerCallback;
    file_picker_types?: string;
    file_picker_validator_handler?: FilePickerValidationCallback;
    fix_list_elements?: boolean;
    fixed_toolbar_container?: string;
    fixed_toolbar_container_target?: HTMLElement;
    font_css?: string | string[];
    font_family_formats?: string;
    font_size_classes?: string;
    font_size_legacy_values?: string;
    font_size_style_values?: string;
    font_size_formats?: string;
    font_size_input_default_unit?: string;
    force_hex_color?: ForceHexColor;
    forced_root_block?: string;
    forced_root_block_attrs?: Record<string, string>;
    formats?: Formats;
    format_noneditable_selector?: string;
    height?: number | string;
    help_accessibility?: boolean;
    hidden_input?: boolean;
    highlight_on_focus?: boolean;
    icons?: string;
    icons_url?: string;
    id?: string;
    iframe_aria_text?: string;
    iframe_attrs?: Record<string, string>;
    images_file_types?: string;
    images_replace_blob_uris?: boolean;
    images_reuse_filename?: boolean;
    images_upload_base_path?: string;
    images_upload_credentials?: boolean;
    images_upload_handler?: UploadHandler;
    images_upload_url?: string;
    indent?: boolean;
    indent_after?: string;
    indent_before?: string;
    indent_use_margin?: boolean;
    indentation?: string;
    init_instance_callback?: SetupCallback;
    inline?: boolean;
    inline_boundaries?: boolean;
    inline_boundaries_selector?: string;
    inline_styles?: boolean;
    invalid_elements?: string;
    invalid_styles?: string | Record<string, string>;
    keep_styles?: boolean;
    language?: string;
    language_load?: boolean;
    language_url?: string;
    line_height_formats?: string;
    max_height?: number;
    max_width?: number;
    menu?: Record<string, {
        title: string;
        items: string;
    }>;
    menubar?: boolean | string;
    min_height?: number;
    min_width?: number;
    model?: string;
    model_url?: string;
    newdocument_content?: string;
    newline_behavior?: 'block' | 'linebreak' | 'invert' | 'default';
    no_newline_selector?: string;
    noneditable_class?: string;
    noneditable_regexp?: RegExp | RegExp[];
    nowrap?: boolean;
    object_resizing?: boolean | string;
    pad_empty_with_br?: boolean;
    paste_as_text?: boolean;
    paste_block_drop?: boolean;
    paste_data_images?: boolean;
    paste_merge_formats?: boolean;
    paste_postprocess?: PastePostProcessFn;
    paste_preprocess?: PastePreProcessFn;
    paste_remove_styles_if_webkit?: boolean;
    paste_tab_spaces?: number;
    paste_webkit_styles?: string;
    placeholder?: string;
    preserve_cdata?: boolean;
    preview_styles?: false | string;
    promotion?: boolean;
    protect?: RegExp[];
    readonly?: boolean;
    referrer_policy?: ReferrerPolicy;
    relative_urls?: boolean;
    remove_script_host?: boolean;
    remove_trailing_brs?: boolean;
    removed_menuitems?: string;
    resize?: boolean | 'both';
    resize_img_proportional?: boolean;
    root_name?: string;
    sandbox_iframes?: boolean;
    schema?: SchemaType;
    selector?: string;
    setup?: SetupCallback;
    sidebar_show?: string;
    skin?: boolean | string;
    skin_url?: string;
    smart_paste?: boolean;
    statusbar?: boolean;
    style_formats?: AllowedFormat[];
    style_formats_autohide?: boolean;
    style_formats_merge?: boolean;
    submit_patch?: boolean;
    suffix?: string;
    table_tab_navigation?: boolean;
    target?: HTMLElement;
    text_patterns?: RawPattern[] | false;
    text_patterns_lookup?: RawDynamicPatternsLookup;
    theme?: string | ThemeInitFunc | false;
    theme_url?: string;
    toolbar?: boolean | string | string[] | Array<ToolbarGroup>;
    toolbar1?: string;
    toolbar2?: string;
    toolbar3?: string;
    toolbar4?: string;
    toolbar5?: string;
    toolbar6?: string;
    toolbar7?: string;
    toolbar8?: string;
    toolbar9?: string;
    toolbar_groups?: Record<string, GroupToolbarButtonSpec>;
    toolbar_location?: ToolbarLocation;
    toolbar_mode?: ToolbarMode;
    toolbar_sticky?: boolean;
    toolbar_sticky_offset?: number;
    typeahead_urls?: boolean;
    ui_mode?: 'combined' | 'split';
    url_converter?: URLConverter;
    url_converter_scope?: any;
    urlconverter_callback?: URLConverterCallback;
    valid_children?: string;
    valid_classes?: string | Record<string, string>;
    valid_elements?: string;
    valid_styles?: string | Record<string, string>;
    verify_html?: boolean;
    visual?: boolean;
    visual_anchor_class?: string;
    visual_table_class?: string;
    width?: number | string;
    xss_sanitization?: boolean;
    disable_nodechange?: boolean;
    forced_plugins?: string | string[];
    plugin_base_urls?: Record<string, string>;
    service_message?: string;
    [key: string]: any;
}
interface RawEditorOptions extends BaseEditorOptions {
    external_plugins?: Record<string, string>;
    mobile?: RawEditorOptions;
    plugins?: string | string[];
}
interface NormalizedEditorOptions extends BaseEditorOptions {
    external_plugins: Record<string, string>;
    forced_plugins: string[];
    plugins: string[];
}
interface EditorOptions extends NormalizedEditorOptions {
    a11y_advanced_options: boolean;
    allow_unsafe_link_target: boolean;
    anchor_bottom: string;
    anchor_top: string;
    automatic_uploads: boolean;
    block_formats: string;
    body_class: string;
    body_id: string;
    br_newline_selector: string;
    color_map: string[];
    color_cols: number;
    color_cols_foreground: number;
    color_cols_background: number;
    color_default_background: string;
    color_default_foreground: string;
    content_css: string[];
    contextmenu: string[];
    convert_unsafe_embeds: boolean;
    custom_colors: boolean;
    default_font_stack: string[];
    document_base_url: string;
    init_content_sync: boolean;
    draggable_modal: boolean;
    editable_class: string;
    editable_root: boolean;
    font_css: string[];
    font_family_formats: string;
    font_size_classes: string;
    font_size_formats: string;
    font_size_input_default_unit: string;
    font_size_legacy_values: string;
    font_size_style_values: string;
    forced_root_block: string;
    forced_root_block_attrs: Record<string, string>;
    force_hex_color: ForceHexColor;
    format_noneditable_selector: string;
    height: number | string;
    highlight_on_focus: boolean;
    iframe_attrs: Record<string, string>;
    images_file_types: string;
    images_upload_base_path: string;
    images_upload_credentials: boolean;
    images_upload_url: string;
    indent_use_margin: boolean;
    indentation: string;
    inline: boolean;
    inline_boundaries_selector: string;
    language: string;
    language_load: boolean;
    language_url: string;
    line_height_formats: string;
    menu: Record<string, {
        title: string;
        items: string;
    }>;
    menubar: boolean | string;
    model: string;
    newdocument_content: string;
    no_newline_selector: string;
    noneditable_class: string;
    noneditable_regexp: RegExp[];
    object_resizing: string;
    pad_empty_with_br: boolean;
    paste_as_text: boolean;
    preview_styles: string;
    promotion: boolean;
    readonly: boolean;
    removed_menuitems: string;
    sandbox_iframes: boolean;
    toolbar: boolean | string | string[] | Array<ToolbarGroup>;
    toolbar_groups: Record<string, GroupToolbarButtonSpec>;
    toolbar_location: ToolbarLocation;
    toolbar_mode: ToolbarMode;
    toolbar_persist: boolean;
    toolbar_sticky: boolean;
    toolbar_sticky_offset: number;
    text_patterns: Pattern[];
    text_patterns_lookup: DynamicPatternsLookup;
    visual: boolean;
    visual_anchor_class: string;
    visual_table_class: string;
    width: number | string;
    xss_sanitization: boolean;
}
type StyleMap = Record<string, string | number>;
interface StylesSettings {
    allow_script_urls?: boolean;
    allow_svg_data_urls?: boolean;
    url_converter?: URLConverter;
    url_converter_scope?: any;
    force_hex_color?: ForceHexColor;
}
interface Styles {
    parse: (css: string | undefined) => Record<string, string>;
    serialize: (styles: StyleMap, elementName?: string) => string;
}
type EventUtilsCallback<T> = (event: EventUtilsEvent<T>) => void | boolean;
type EventUtilsEvent<T> = NormalizedEvent<T> & {
    metaKey: boolean;
};
interface Callback$1<T> {
    func: EventUtilsCallback<T>;
    scope: any;
}
interface CallbackList<T> extends Array<Callback$1<T>> {
    fakeName: string | false;
    capture: boolean;
    nativeHandler: EventListener;
}
interface EventUtilsConstructor {
    readonly prototype: EventUtils;
    new (): EventUtils;
    Event: EventUtils;
}
declare class EventUtils {
    static Event: EventUtils;
    domLoaded: boolean;
    events: Record<number, Record<string, CallbackList<any>>>;
    private readonly expando;
    private hasFocusIn;
    private count;
    constructor();
    bind<K extends keyof HTMLElementEventMap>(target: any, name: K, callback: EventUtilsCallback<HTMLElementEventMap[K]>, scope?: any): EventUtilsCallback<HTMLElementEventMap[K]>;
    bind<T = any>(target: any, names: string, callback: EventUtilsCallback<T>, scope?: any): EventUtilsCallback<T>;
    unbind<K extends keyof HTMLElementEventMap>(target: any, name: K, callback?: EventUtilsCallback<HTMLElementEventMap[K]>): this;
    unbind<T = any>(target: any, names: string, callback?: EventUtilsCallback<T>): this;
    unbind(target: any): this;
    fire(target: any, name: string, args?: {}): this;
    dispatch(target: any, name: string, args?: {}): this;
    clean(target: any): this;
    destroy(): void;
    cancel<T>(e: EventUtilsEvent<T>): boolean;
    private executeHandlers;
}
interface SetAttribEvent {
    attrElm: HTMLElement;
    attrName: string;
    attrValue: string | boolean | number | null;
}
interface DOMUtilsSettings {
    schema: Schema;
    url_converter: URLConverter;
    url_converter_scope: any;
    ownEvents: boolean;
    keep_values: boolean;
    update_styles: boolean;
    root_element: HTMLElement | null;
    collect: boolean;
    onSetAttrib: (event: SetAttribEvent) => void;
    contentCssCors: boolean;
    referrerPolicy: ReferrerPolicy;
    force_hex_color: ForceHexColor;
}
type Target = Node | Window;
type RunArguments<T extends Node = Node> = string | T | Array<string | T> | null;
type BoundEvent = [
    Target,
    string,
    EventUtilsCallback<any>,
    any
];
type Callback<K extends string> = EventUtilsCallback<MappedEvent<HTMLElementEventMap, K>>;
type RunResult<T, R> = T extends Array<any> ? R[] : false | R;
interface DOMUtils {
    doc: Document;
    settings: Partial<DOMUtilsSettings>;
    win: Window;
    files: Record<string, boolean>;
    stdMode: boolean;
    boxModel: boolean;
    styleSheetLoader: StyleSheetLoader;
    boundEvents: BoundEvent[];
    styles: Styles;
    schema: Schema;
    events: EventUtils;
    root: Node | null;
    isBlock: {
        (node: Node | null): node is HTMLElement;
        (node: string): boolean;
    };
    clone: (node: Node, deep: boolean) => Node;
    getRoot: () => HTMLElement;
    getViewPort: (argWin?: Window) => GeomRect;
    getRect: (elm: string | HTMLElement) => GeomRect;
    getSize: (elm: string | HTMLElement) => {
        w: number;
        h: number;
    };
    getParent: {
        <K extends keyof HTMLElementTagNameMap>(node: string | Node | null, selector: K, root?: Node): HTMLElementTagNameMap[K] | null;
        <T extends Element>(node: string | Node | null, selector: string | ((node: Node) => node is T), root?: Node): T | null;
        (node: string | Node | null, selector?: string | ((node: Node) => boolean | void), root?: Node): Node | null;
    };
    getParents: {
        <K extends keyof HTMLElementTagNameMap>(elm: string | HTMLElementTagNameMap[K] | null, selector: K, root?: Node, collect?: boolean): Array<HTMLElementTagNameMap[K]>;
        <T extends Element>(node: string | Node | null, selector: string | ((node: Node) => node is T), root?: Node, collect?: boolean): T[];
        (elm: string | Node | null, selector?: string | ((node: Node) => boolean | void), root?: Node, collect?: boolean): Node[];
    };
    get: {
        <T extends Node>(elm: T): T;
        (elm: string): HTMLElement | null;
    };
    getNext: (node: Node | null, selector: string | ((node: Node) => boolean)) => Node | null;
    getPrev: (node: Node | null, selector: string | ((node: Node) => boolean)) => Node | null;
    select: {
        <K extends keyof HTMLElementTagNameMap>(selector: K, scope?: string | Node): Array<HTMLElementTagNameMap[K]>;
        <T extends HTMLElement = HTMLElement>(selector: string, scope?: string | Node): T[];
    };
    is: {
        <T extends Element>(elm: Node | Node[] | null, selector: string): elm is T;
        (elm: Node | Node[] | null, selector: string): boolean;
    };
    add: (parentElm: RunArguments, name: string | Element, attrs?: Record<string, string | boolean | number | null>, html?: string | Node | null, create?: boolean) => HTMLElement;
    create: {
        <K extends keyof HTMLElementTagNameMap>(name: K, attrs?: Record<string, string | boolean | number | null>, html?: string | Node | null): HTMLElementTagNameMap[K];
        (name: string, attrs?: Record<string, string | boolean | number | null>, html?: string | Node | null): HTMLElement;
    };
    createHTML: (name: string, attrs?: Record<string, string | null>, html?: string) => string;
    createFragment: (html?: string) => DocumentFragment;
    remove: {
        <T extends Node>(node: T | T[], keepChildren?: boolean): typeof node extends Array<any> ? T[] : T;
        <T extends Node>(node: string, keepChildren?: boolean): T | false;
    };
    getStyle: {
        (elm: Element, name: string, computed: true): string;
        (elm: string | Element | null, name: string, computed?: boolean): string | undefined;
    };
    setStyle: (elm: string | Element | Element[], name: string, value: string | number | null) => void;
    setStyles: (elm: string | Element | Element[], stylesArg: StyleMap) => void;
    removeAllAttribs: (e: RunArguments<Element>) => void;
    setAttrib: (elm: RunArguments<Element>, name: string, value: string | boolean | number | null) => void;
    setAttribs: (elm: RunArguments<Element>, attrs: Record<string, string | boolean | number | null>) => void;
    getAttrib: (elm: string | Element | null, name: string, defaultVal?: string) => string;
    getAttribs: (elm: string | Element) => NamedNodeMap | Attr[];
    getPos: (elm: string | Element, rootElm?: Node) => {
        x: number;
        y: number;
    };
    parseStyle: (cssText: string) => Record<string, string>;
    serializeStyle: (stylesArg: StyleMap, name?: string) => string;
    addStyle: (cssText: string) => void;
    loadCSS: (url: string) => void;
    hasClass: (elm: string | Element, cls: string) => boolean;
    addClass: (elm: RunArguments<Element>, cls: string) => void;
    removeClass: (elm: RunArguments<Element>, cls: string) => void;
    toggleClass: (elm: RunArguments<Element>, cls: string, state?: boolean) => void;
    show: (elm: string | Node | Node[]) => void;
    hide: (elm: string | Node | Node[]) => void;
    isHidden: (elm: string | Node) => boolean;
    uniqueId: (prefix?: string) => string;
    setHTML: (elm: RunArguments<Element>, html: string) => void;
    getOuterHTML: (elm: string | Node) => string;
    setOuterHTML: (elm: string | Node | Node[], html: string) => void;
    decode: (text: string) => string;
    encode: (text: string) => string;
    insertAfter: {
        <T extends Node>(node: T | T[], reference: string | Node): T;
        <T extends Node>(node: RunArguments<T>, reference: string | Node): RunResult<typeof node, T>;
    };
    replace: {
        <T extends Node>(newElm: Node, oldElm: T | T[], keepChildren?: boolean): T;
        <T extends Node>(newElm: Node, oldElm: RunArguments<T>, keepChildren?: boolean): false | T;
    };
    rename: {
        <K extends keyof HTMLElementTagNameMap>(elm: Element, name: K): HTMLElementTagNameMap[K];
        (elm: Element, name: string): Element;
    };
    findCommonAncestor: (a: Node, b: Node) => Node | null;
    run<R, T extends Node>(this: DOMUtils, elm: T | T[], func: (node: T) => R, scope?: any): typeof elm extends Array<any> ? R[] : R;
    run<R, T extends Node>(this: DOMUtils, elm: RunArguments<T>, func: (node: T) => R, scope?: any): RunResult<typeof elm, R>;
    isEmpty: (node: Node, elements?: Record<string, any>, options?: ({
        includeZwsp?: boolean;
    })) => boolean;
    createRng: () => Range;
    nodeIndex: (node: Node, normalized?: boolean) => number;
    split: {
        <T extends Node>(parentElm: Node, splitElm: Node, replacementElm: T): T | undefined;
        <T extends Node>(parentElm: Node, splitElm: T): T | undefined;
    };
    bind: {
        <K extends string>(target: Target, name: K, func: Callback<K>, scope?: any): Callback<K>;
        <K extends string>(target: Target[], name: K, func: Callback<K>, scope?: any): Callback<K>[];
    };
    unbind: {
        <K extends string>(target: Target, name?: K, func?: EventUtilsCallback<MappedEvent<HTMLElementEventMap, K>>): EventUtils;
        <K extends string>(target: Target[], name?: K, func?: EventUtilsCallback<MappedEvent<HTMLElementEventMap, K>>): EventUtils[];
    };
    fire: (target: Node | Window, name: string, evt?: {}) => EventUtils;
    dispatch: (target: Node | Window, name: string, evt?: {}) => EventUtils;
    getContentEditable: (node: Node) => string | null;
    getContentEditableParent: (node: Node) => string | null;
    isEditable: (node: Node | null | undefined) => boolean;
    destroy: () => void;
    isChildOf: (node: Node, parent: Node) => boolean;
    dumpRng: (r: Range) => string;
}
interface ClientRect {
    left: number;
    top: number;
    bottom: number;
    right: number;
    width: number;
    height: number;
}
interface BookmarkManager {
    getBookmark: (type?: number, normalized?: boolean) => Bookmark;
    moveToBookmark: (bookmark: Bookmark) => void;
}
interface ControlSelection {
    isResizable: (elm: Element) => boolean;
    showResizeRect: (elm: HTMLElement) => void;
    hideResizeRect: () => void;
    updateResizeRect: (evt: EditorEvent<any>) => void;
    destroy: () => void;
}
interface WriterSettings {
    element_format?: 'xhtml' | 'html';
    entities?: string;
    entity_encoding?: EntityEncoding;
    indent?: boolean;
    indent_after?: string;
    indent_before?: string;
}
type Attributes = Array<{
    name: string;
    value: string;
}>;
interface Writer {
    cdata: (text: string) => void;
    comment: (text: string) => void;
    doctype: (text: string) => void;
    end: (name: string) => void;
    getContent: () => string;
    pi: (name: string, text?: string) => void;
    reset: () => void;
    start: (name: string, attrs?: Attributes | null, empty?: boolean) => void;
    text: (text: string, raw?: boolean) => void;
}
interface HtmlSerializerSettings extends WriterSettings {
    inner?: boolean;
    validate?: boolean;
}
interface HtmlSerializer {
    serialize: (node: AstNode) => string;
}
interface DomSerializerSettings extends DomParserSettings, WriterSettings, SchemaSettings, HtmlSerializerSettings {
    remove_trailing_brs?: boolean;
    url_converter?: URLConverter;
    url_converter_scope?: {};
}
interface DomSerializerImpl {
    schema: Schema;
    addNodeFilter: (name: string, callback: ParserFilterCallback) => void;
    addAttributeFilter: (name: string, callback: ParserFilterCallback) => void;
    getNodeFilters: () => ParserFilter[];
    getAttributeFilters: () => ParserFilter[];
    removeNodeFilter: (name: string, callback?: ParserFilterCallback) => void;
    removeAttributeFilter: (name: string, callback?: ParserFilterCallback) => void;
    serialize: {
        (node: Element, parserArgs: {
            format: 'tree';
        } & ParserArgs): AstNode;
        (node: Element, parserArgs?: ParserArgs): string;
    };
    addRules: (rules: string) => void;
    setRules: (rules: string) => void;
    addTempAttr: (name: string) => void;
    getTempAttrs: () => string[];
}
interface DomSerializer extends DomSerializerImpl {
}
interface EditorSelection {
    bookmarkManager: BookmarkManager;
    controlSelection: ControlSelection;
    dom: DOMUtils;
    win: Window;
    serializer: DomSerializer;
    editor: Editor;
    collapse: (toStart?: boolean) => void;
    setCursorLocation: {
        (node: Node, offset: number): void;
        (): void;
    };
    getContent: {
        (args: {
            format: 'tree';
        } & Partial<GetSelectionContentArgs>): AstNode;
        (args?: Partial<GetSelectionContentArgs>): string;
    };
    setContent: (content: string, args?: Partial<SetSelectionContentArgs>) => void;
    getBookmark: (type?: number, normalized?: boolean) => Bookmark;
    moveToBookmark: (bookmark: Bookmark) => void;
    select: (node: Node, content?: boolean) => Node;
    isCollapsed: () => boolean;
    isEditable: () => boolean;
    isForward: () => boolean;
    setNode: (elm: Element) => Element;
    getNode: () => HTMLElement;
    getSel: () => Selection | null;
    setRng: (rng: Range, forward?: boolean) => void;
    getRng: () => Range;
    getStart: (real?: boolean) => Element;
    getEnd: (real?: boolean) => Element;
    getSelectedBlocks: (startElm?: Element, endElm?: Element) => Element[];
    normalize: () => Range;
    selectorChanged: (selector: string, callback: (active: boolean, args: {
        node: Node;
        selector: String;
        parents: Node[];
    }) => void) => EditorSelection;
    selectorChangedWithUnbind: (selector: string, callback: (active: boolean, args: {
        node: Node;
        selector: String;
        parents: Node[];
    }) => void) => {
        unbind: () => void;
    };
    getScrollContainer: () => HTMLElement | undefined;
    scrollIntoView: (elm?: HTMLElement, alignToTop?: boolean) => void;
    placeCaretAt: (clientX: number, clientY: number) => void;
    getBoundingClientRect: () => ClientRect | DOMRect;
    destroy: () => void;
    expand: (options?: {
        type: 'word';
    }) => void;
}
type EditorCommandCallback<S> = (this: S, ui: boolean, value: any) => void;
type EditorCommandsCallback = (command: string, ui: boolean, value?: any) => void;
interface Commands {
    state: Record<string, (command: string) => boolean>;
    exec: Record<string, EditorCommandsCallback>;
    value: Record<string, (command: string) => string>;
}
interface ExecCommandArgs {
    skip_focus?: boolean;
}
interface EditorCommandsConstructor {
    readonly prototype: EditorCommands;
    new (editor: Editor): EditorCommands;
}
declare class EditorCommands {
    private readonly editor;
    private commands;
    constructor(editor: Editor);
    execCommand(command: string, ui?: boolean, value?: any, args?: ExecCommandArgs): boolean;
    queryCommandState(command: string): boolean;
    queryCommandValue(command: string): string;
    addCommands<K extends keyof Commands>(commandList: Commands[K], type: K): void;
    addCommands(commandList: Record<string, EditorCommandsCallback>): void;
    addCommand<S>(command: string, callback: EditorCommandCallback<S>, scope: S): void;
    addCommand(command: string, callback: EditorCommandCallback<Editor>): void;
    queryCommandSupported(command: string): boolean;
    addQueryStateHandler<S>(command: string, callback: (this: S) => boolean, scope: S): void;
    addQueryStateHandler(command: string, callback: (this: Editor) => boolean): void;
    addQueryValueHandler<S>(command: string, callback: (this: S) => string, scope: S): void;
    addQueryValueHandler(command: string, callback: (this: Editor) => string): void;
}
interface RawString {
    raw: string;
}
type Primitive = string | number | boolean | Record<string | number, any> | Function;
type TokenisedString = [
    string,
    ...Primitive[]
];
type Untranslated = Primitive | TokenisedString | RawString | null | undefined;
type TranslatedString = string;
interface I18n {
    getData: () => Record<string, Record<string, string>>;
    setCode: (newCode: string) => void;
    getCode: () => string;
    add: (code: string, items: Record<string, string>) => void;
    translate: (text: Untranslated) => TranslatedString;
    isRtl: () => boolean;
    hasCode: (code: string) => boolean;
}
interface Observable<T extends {}> {
    fire<K extends string, U extends MappedEvent<T, K>>(name: K, args?: U, bubble?: boolean): EditorEvent<U>;
    dispatch<K extends string, U extends MappedEvent<T, K>>(name: K, args?: U, bubble?: boolean): EditorEvent<U>;
    on<K extends string>(name: K, callback: (event: EditorEvent<MappedEvent<T, K>>) => void, prepend?: boolean): EventDispatcher<T>;
    off<K extends string>(name?: K, callback?: (event: EditorEvent<MappedEvent<T, K>>) => void): EventDispatcher<T>;
    once<K extends string>(name: K, callback: (event: EditorEvent<MappedEvent<T, K>>) => void): EventDispatcher<T>;
    hasEventListeners(name: string): boolean;
}
interface URISettings {
    base_uri?: URI;
}
interface URIConstructor {
    readonly prototype: URI;
    new (url: string, settings?: URISettings): URI;
    getDocumentBaseUrl: (loc: {
        protocol: string;
        host?: string;
        href?: string;
        pathname?: string;
    }) => string;
    parseDataUri: (uri: string) => {
        type: string;
        data: string;
    };
}
interface SafeUriOptions {
    readonly allow_html_data_urls?: boolean;
    readonly allow_script_urls?: boolean;
    readonly allow_svg_data_urls?: boolean;
}
declare class URI {
    static parseDataUri(uri: string): {
        type: string | undefined;
        data: string;
    };
    static isDomSafe(uri: string, context?: string, options?: SafeUriOptions): boolean;
    static getDocumentBaseUrl(loc: {
        protocol: string;
        host?: string;
        href?: string;
        pathname?: string;
    }): string;
    source: string;
    protocol: string | undefined;
    authority: string | undefined;
    userInfo: string | undefined;
    user: string | undefined;
    password: string | undefined;
    host: string | undefined;
    port: string | undefined;
    relative: string | undefined;
    path: string;
    directory: string;
    file: string | undefined;
    query: string | undefined;
    anchor: string | undefined;
    settings: URISettings;
    constructor(url: string, settings?: URISettings);
    setPath(path: string): void;
    toRelative(uri: string): string;
    toAbsolute(uri: string, noHost?: boolean): string;
    isSameOrigin(uri: URI): boolean;
    toRelPath(base: string, path: string): string;
    toAbsPath(base: string, path: string): string;
    getURI(noProtoHost?: boolean): string;
}
interface EditorManager extends Observable<EditorManagerEventMap> {
    defaultOptions: RawEditorOptions;
    majorVersion: string;
    minorVersion: string;
    releaseDate: string;
    activeEditor: Editor | null;
    focusedEditor: Editor | null;
    baseURI: URI;
    baseURL: string;
    documentBaseURL: string;
    i18n: I18n;
    suffix: string;
    add(this: EditorManager, editor: Editor): Editor;
    addI18n: (code: string, item: Record<string, string>) => void;
    createEditor(this: EditorManager, id: string, options: RawEditorOptions): Editor;
    execCommand(this: EditorManager, cmd: string, ui: boolean, value: any): boolean;
    get(this: EditorManager): Editor[];
    get(this: EditorManager, id: number | string): Editor | null;
    init(this: EditorManager, options: RawEditorOptions): Promise<Editor[]>;
    overrideDefaults(this: EditorManager, defaultOptions: Partial<RawEditorOptions>): void;
    remove(this: EditorManager): void;
    remove(this: EditorManager, selector: string): void;
    remove(this: EditorManager, editor: Editor): Editor | null;
    setActive(this: EditorManager, editor: Editor): void;
    setup(this: EditorManager): void;
    translate: (text: Untranslated) => TranslatedString;
    triggerSave: () => void;
    _setBaseUrl(this: EditorManager, baseUrl: string): void;
}
interface EditorObservable extends Observable<EditorEventMap> {
    bindPendingEventDelegates(this: Editor): void;
    toggleNativeEvent(this: Editor, name: string, state: boolean): void;
    unbindAllNativeEvents(this: Editor): void;
}
interface ProcessorSuccess<T> {
    valid: true;
    value: T;
}
interface ProcessorError {
    valid: false;
    message: string;
}
type SimpleProcessor = (value: unknown) => boolean;
type Processor<T> = (value: unknown) => ProcessorSuccess<T> | ProcessorError;
interface BuiltInOptionTypeMap {
    'string': string;
    'number': number;
    'boolean': boolean;
    'array': any[];
    'function': Function;
    'object': any;
    'string[]': string[];
    'object[]': any[];
    'regexp': RegExp;
}
type BuiltInOptionType = keyof BuiltInOptionTypeMap;
interface BaseOptionSpec {
    immutable?: boolean;
    deprecated?: boolean;
    docsUrl?: string;
}
interface BuiltInOptionSpec<K extends BuiltInOptionType> extends BaseOptionSpec {
    processor: K;
    default?: BuiltInOptionTypeMap[K];
}
interface SimpleOptionSpec<T> extends BaseOptionSpec {
    processor: SimpleProcessor;
    default?: T;
}
interface OptionSpec<T, U> extends BaseOptionSpec {
    processor: Processor<U>;
    default?: T;
}
interface Options {
    register: {
        <K extends BuiltInOptionType>(name: string, spec: BuiltInOptionSpec<K>): void;
        <K extends keyof NormalizedEditorOptions>(name: K, spec: OptionSpec<NormalizedEditorOptions[K], EditorOptions[K]> | SimpleOptionSpec<NormalizedEditorOptions[K]>): void;
        <T, U>(name: string, spec: OptionSpec<T, U>): void;
        <T>(name: string, spec: SimpleOptionSpec<T>): void;
    };
    isRegistered: (name: string) => boolean;
    get: {
        <K extends keyof EditorOptions>(name: K): EditorOptions[K];
        <T>(name: string): T | undefined;
    };
    set: <K extends string, T>(name: K, value: K extends keyof NormalizedEditorOptions ? NormalizedEditorOptions[K] : T) => boolean;
    unset: (name: string) => boolean;
    isSet: (name: string) => boolean;
}
interface UploadResult$1 {
    element: HTMLImageElement;
    status: boolean;
    blobInfo: BlobInfo;
    uploadUri: string;
    removed: boolean;
}
interface EditorUpload {
    blobCache: BlobCache;
    addFilter: (filter: (img: HTMLImageElement) => boolean) => void;
    uploadImages: () => Promise<UploadResult$1[]>;
    uploadImagesAuto: () => Promise<UploadResult$1[]>;
    scanForImages: () => Promise<BlobInfoImagePair[]>;
    destroy: () => void;
}
type FormatChangeCallback = (state: boolean, data: {
    node: Node;
    format: string;
    parents: Element[];
}) => void;
interface FormatRegistry {
    get: {
        (name: string): Format[] | undefined;
        (): Record<string, Format[]>;
    };
    has: (name: string) => boolean;
    register: (name: string | Formats, format?: Format[] | Format) => void;
    unregister: (name: string) => Formats;
}
interface Formatter extends FormatRegistry {
    apply: (name: string, vars?: FormatVars, node?: Node | RangeLikeObject | null) => void;
    remove: (name: string, vars?: FormatVars, node?: Node | Range, similar?: boolean) => void;
    toggle: (name: string, vars?: FormatVars, node?: Node) => void;
    match: (name: string, vars?: FormatVars, node?: Node, similar?: boolean) => boolean;
    closest: (names: string[]) => string | null;
    matchAll: (names: string[], vars?: FormatVars) => string[];
    matchNode: (node: Node | null, name: string, vars?: FormatVars, similar?: boolean) => Format | undefined;
    canApply: (name: string) => boolean;
    formatChanged: (names: string, callback: FormatChangeCallback, similar?: boolean, vars?: FormatVars) => {
        unbind: () => void;
    };
    getCssText: (format: string | ApplyFormat) => string;
}
interface EditorMode {
    isReadOnly: () => boolean;
    set: (mode: string) => void;
    get: () => string;
    register: (mode: string, api: EditorModeApi) => void;
}
interface EditorModeApi {
    activate: () => void;
    deactivate: () => void;
    editorReadOnly: boolean;
}
interface Model {
    readonly table: {
        readonly getSelectedCells: () => HTMLTableCellElement[];
        readonly clearSelectedCells: (container: Node) => void;
    };
}
type ModelManager = AddOnManager<Model>;
interface Plugin {
    getMetadata?: () => {
        name: string;
        url: string;
    };
    init?: (editor: Editor, url: string) => void;
    [key: string]: any;
}
type PluginManager = AddOnManager<void | Plugin>;
interface ShortcutsConstructor {
    readonly prototype: Shortcuts;
    new (editor: Editor): Shortcuts;
}
type CommandFunc = string | [
    string,
    boolean,
    any
] | (() => void);
declare class Shortcuts {
    private readonly editor;
    private readonly shortcuts;
    private pendingPatterns;
    constructor(editor: Editor);
    add(pattern: string, desc: string | null, cmdFunc: CommandFunc, scope?: any): boolean;
    remove(pattern: string): boolean;
    private normalizeCommandFunc;
    private createShortcut;
    private hasModifier;
    private isFunctionKey;
    private matchShortcut;
    private executeShortcutAction;
}
interface RenderResult {
    iframeContainer?: HTMLElement;
    editorContainer: HTMLElement;
    api?: Partial<EditorUiApi>;
}
interface Theme {
    ui?: any;
    inline?: any;
    execCommand?: (command: string, ui?: boolean, value?: any) => boolean;
    destroy?: () => void;
    init?: (editor: Editor, url: string) => void;
    renderUI?: () => Promise<RenderResult> | RenderResult;
    getNotificationManagerImpl?: () => NotificationManagerImpl;
    getWindowManagerImpl?: () => WindowManagerImpl;
}
type ThemeManager = AddOnManager<void | Theme>;
interface EditorConstructor {
    readonly prototype: Editor;
    new (id: string, options: RawEditorOptions, editorManager: EditorManager): Editor;
}
declare class Editor implements EditorObservable {
    documentBaseUrl: string;
    baseUri: URI;
    id: string;
    plugins: Record<string, Plugin>;
    documentBaseURI: URI;
    baseURI: URI;
    contentCSS: string[];
    contentStyles: string[];
    ui: EditorUi;
    mode: EditorMode;
    options: Options;
    editorUpload: EditorUpload;
    shortcuts: Shortcuts;
    loadedCSS: Record<string, any>;
    editorCommands: EditorCommands;
    suffix: string;
    editorManager: EditorManager;
    hidden: boolean;
    inline: boolean;
    hasVisual: boolean;
    isNotDirty: boolean;
    annotator: Annotator;
    bodyElement: HTMLElement | undefined;
    bookmark: any;
    composing: boolean;
    container: HTMLElement;
    contentAreaContainer: HTMLElement;
    contentDocument: Document;
    contentWindow: Window;
    delegates: Record<string, EventUtilsCallback<any>> | undefined;
    destroyed: boolean;
    dom: DOMUtils;
    editorContainer: HTMLElement;
    eventRoot: Element | undefined;
    formatter: Formatter;
    formElement: HTMLElement | undefined;
    formEventDelegate: ((e: Event) => void) | undefined;
    hasHiddenInput: boolean;
    iframeElement: HTMLIFrameElement | null;
    iframeHTML: string | undefined;
    initialized: boolean;
    notificationManager: NotificationManager;
    orgDisplay: string;
    orgVisibility: string | undefined;
    parser: DomParser;
    quirks: Quirks;
    readonly: boolean;
    removed: boolean;
    schema: Schema;
    selection: EditorSelection;
    serializer: DomSerializer;
    startContent: string;
    targetElm: HTMLElement;
    theme: Theme;
    model: Model;
    undoManager: UndoManager;
    windowManager: WindowManager;
    _beforeUnload: (() => void) | undefined;
    _eventDispatcher: EventDispatcher<NativeEventMap> | undefined;
    _nodeChangeDispatcher: NodeChange;
    _pendingNativeEvents: string[];
    _selectionOverrides: SelectionOverrides;
    _skinLoaded: boolean;
    _editableRoot: boolean;
    bindPendingEventDelegates: EditorObservable['bindPendingEventDelegates'];
    toggleNativeEvent: EditorObservable['toggleNativeEvent'];
    unbindAllNativeEvents: EditorObservable['unbindAllNativeEvents'];
    fire: EditorObservable['fire'];
    dispatch: EditorObservable['dispatch'];
    on: EditorObservable['on'];
    off: EditorObservable['off'];
    once: EditorObservable['once'];
    hasEventListeners: EditorObservable['hasEventListeners'];
    constructor(id: string, options: RawEditorOptions, editorManager: EditorManager);
    render(): void;
    focus(skipFocus?: boolean): void;
    hasFocus(): boolean;
    translate(text: Untranslated): TranslatedString;
    getParam<K extends BuiltInOptionType>(name: string, defaultVal: BuiltInOptionTypeMap[K], type: K): BuiltInOptionTypeMap[K];
    getParam<K extends keyof NormalizedEditorOptions>(name: K, defaultVal?: NormalizedEditorOptions[K], type?: BuiltInOptionType): NormalizedEditorOptions[K];
    getParam<T>(name: string, defaultVal: T, type?: BuiltInOptionType): T;
    hasPlugin(name: string, loaded?: boolean): boolean;
    nodeChanged(args?: any): void;
    addCommand<S>(name: string, callback: EditorCommandCallback<S>, scope: S): void;
    addCommand(name: string, callback: EditorCommandCallback<Editor>): void;
    addQueryStateHandler<S>(name: string, callback: (this: S) => boolean, scope?: S): void;
    addQueryStateHandler(name: string, callback: (this: Editor) => boolean): void;
    addQueryValueHandler<S>(name: string, callback: (this: S) => string, scope: S): void;
    addQueryValueHandler(name: string, callback: (this: Editor) => string): void;
    addShortcut(pattern: string, desc: string, cmdFunc: string | [
        string,
        boolean,
        any
    ] | (() => void), scope?: any): void;
    execCommand(cmd: string, ui?: boolean, value?: any, args?: ExecCommandArgs): boolean;
    queryCommandState(cmd: string): boolean;
    queryCommandValue(cmd: string): string;
    queryCommandSupported(cmd: string): boolean;
    show(): void;
    hide(): void;
    isHidden(): boolean;
    setProgressState(state: boolean, time?: number): void;
    load(args?: Partial<SetContentArgs>): string;
    save(args?: Partial<GetContentArgs>): string;
    setContent(content: string, args?: Partial<SetContentArgs>): string;
    setContent(content: AstNode, args?: Partial<SetContentArgs>): AstNode;
    setContent(content: Content, args?: Partial<SetContentArgs>): Content;
    getContent(args: {
        format: 'tree';
    } & Partial<GetContentArgs>): AstNode;
    getContent(args?: Partial<GetContentArgs>): string;
    insertContent(content: string, args?: any): void;
    resetContent(initialContent?: string): void;
    isDirty(): boolean;
    setDirty(state: boolean): void;
    getContainer(): HTMLElement;
    getContentAreaContainer(): HTMLElement;
    getElement(): HTMLElement;
    getWin(): Window;
    getDoc(): Document;
    getBody(): HTMLElement;
    convertURL(url: string, name: string, elm?: string | Element): string;
    addVisual(elm?: HTMLElement): void;
    setEditableRoot(state: boolean): void;
    hasEditableRoot(): boolean;
    remove(): void;
    destroy(automatic?: boolean): void;
    uploadImages(): Promise<UploadResult$1[]>;
    _scanForImages(): Promise<BlobInfoImagePair[]>;
}
interface UrlObject {
    prefix: string;
    resource: string;
    suffix: string;
}
type WaitState = 'added' | 'loaded';
type AddOnConstructor<T> = (editor: Editor, url: string) => T;
interface AddOnManager<T> {
    items: AddOnConstructor<T>[];
    urls: Record<string, string>;
    lookup: Record<string, {
        instance: AddOnConstructor<T>;
    }>;
    get: (name: string) => AddOnConstructor<T> | undefined;
    requireLangPack: (name: string, languages?: string) => void;
    add: (id: string, addOn: AddOnConstructor<T>) => AddOnConstructor<T>;
    remove: (name: string) => void;
    createUrl: (baseUrl: UrlObject, dep: string | UrlObject) => UrlObject;
    load: (name: string, addOnUrl: string | UrlObject) => Promise<void>;
    waitFor: (name: string, state?: WaitState) => Promise<void>;
}
interface RangeUtils {
    walk: (rng: Range, callback: (nodes: Node[]) => void) => void;
    split: (rng: Range) => RangeLikeObject;
    normalize: (rng: Range) => boolean;
    expand: (rng: Range, options?: {
        type: 'word';
    }) => Range;
}
interface ScriptLoaderSettings {
    referrerPolicy?: ReferrerPolicy;
}
interface ScriptLoaderConstructor {
    readonly prototype: ScriptLoader;
    new (): ScriptLoader;
    ScriptLoader: ScriptLoader;
}
declare class ScriptLoader {
    static ScriptLoader: ScriptLoader;
    private settings;
    private states;
    private queue;
    private scriptLoadedCallbacks;
    private queueLoadedCallbacks;
    private loading;
    constructor(settings?: ScriptLoaderSettings);
    _setReferrerPolicy(referrerPolicy: ReferrerPolicy): void;
    loadScript(url: string): Promise<void>;
    isDone(url: string): boolean;
    markDone(url: string): void;
    add(url: string): Promise<void>;
    load(url: string): Promise<void>;
    remove(url: string): void;
    loadQueue(): Promise<void>;
    loadScripts(scripts: string[]): Promise<void>;
}
type TextProcessCallback = (node: Text, offset: number, text: string) => number;
interface Spot {
    container: Text;
    offset: number;
}
interface TextSeeker {
    backwards: (node: Node, offset: number, process: TextProcessCallback, root?: Node) => Spot | null;
    forwards: (node: Node, offset: number, process: TextProcessCallback, root?: Node) => Spot | null;
}
interface DomTreeWalkerConstructor {
    readonly prototype: DomTreeWalker;
    new (startNode: Node, rootNode: Node): DomTreeWalker;
}
declare class DomTreeWalker {
    private readonly rootNode;
    private node;
    constructor(startNode: Node, rootNode: Node);
    current(): Node | null | undefined;
    next(shallow?: boolean): Node | null | undefined;
    prev(shallow?: boolean): Node | null | undefined;
    prev2(shallow?: boolean): Node | null | undefined;
    private findSibling;
    private findPreviousNode;
}
interface Version {
    major: number;
    minor: number;
}
interface Env {
    transparentSrc: string;
    documentMode: number;
    cacheSuffix: any;
    container: any;
    canHaveCSP: boolean;
    windowsPhone: boolean;
    browser: {
        current: string | undefined;
        version: Version;
        isEdge: () => boolean;
        isChromium: () => boolean;
        isIE: () => boolean;
        isOpera: () => boolean;
        isFirefox: () => boolean;
        isSafari: () => boolean;
    };
    os: {
        current: string | undefined;
        version: Version;
        isWindows: () => boolean;
        isiOS: () => boolean;
        isAndroid: () => boolean;
        isMacOS: () => boolean;
        isLinux: () => boolean;
        isSolaris: () => boolean;
        isFreeBSD: () => boolean;
        isChromeOS: () => boolean;
    };
    deviceType: {
        isiPad: () => boolean;
        isiPhone: () => boolean;
        isTablet: () => boolean;
        isPhone: () => boolean;
        isTouch: () => boolean;
        isWebView: () => boolean;
        isDesktop: () => boolean;
    };
}
interface FakeClipboardItem {
    readonly items: Record<string, any>;
    readonly types: ReadonlyArray<string>;
    readonly getType: <D = any>(type: string) => D | undefined;
}
interface FakeClipboard {
    readonly FakeClipboardItem: (items: Record<string, any>) => FakeClipboardItem;
    readonly write: (data: FakeClipboardItem[]) => void;
    readonly read: () => FakeClipboardItem[] | undefined;
    readonly clear: () => void;
}
interface FocusManager {
    isEditorUIElement: (elm: Element) => boolean;
}
interface EntitiesMap {
    [name: string]: string;
}
interface Entities {
    encodeRaw: (text: string, attr?: boolean) => string;
    encodeAllRaw: (text: string) => string;
    encodeNumeric: (text: string, attr?: boolean) => string;
    encodeNamed: (text: string, attr?: boolean, entities?: EntitiesMap) => string;
    getEncodeFunc: (name: string, entities?: string) => (text: string, attr?: boolean) => string;
    decode: (text: string) => string;
}
interface IconPack {
    icons: Record<string, string>;
}
interface IconManager {
    add: (id: string, iconPack: IconPack) => void;
    get: (id: string) => IconPack;
    has: (id: string) => boolean;
}
interface Resource {
    load: <T = any>(id: string, url: string) => Promise<T>;
    add: (id: string, data: any) => void;
    has: (id: string) => boolean;
    get: (id: string) => any;
    unload: (id: string) => void;
}
type TextPatterns_d_Pattern = Pattern;
type TextPatterns_d_RawPattern = RawPattern;
type TextPatterns_d_DynamicPatternsLookup = DynamicPatternsLookup;
type TextPatterns_d_RawDynamicPatternsLookup = RawDynamicPatternsLookup;
type TextPatterns_d_DynamicPatternContext = DynamicPatternContext;
type TextPatterns_d_BlockCmdPattern = BlockCmdPattern;
type TextPatterns_d_BlockPattern = BlockPattern;
type TextPatterns_d_BlockFormatPattern = BlockFormatPattern;
type TextPatterns_d_InlineCmdPattern = InlineCmdPattern;
type TextPatterns_d_InlinePattern = InlinePattern;
type TextPatterns_d_InlineFormatPattern = InlineFormatPattern;
declare namespace TextPatterns_d {
    export { TextPatterns_d_Pattern as Pattern, TextPatterns_d_RawPattern as RawPattern, TextPatterns_d_DynamicPatternsLookup as DynamicPatternsLookup, TextPatterns_d_RawDynamicPatternsLookup as RawDynamicPatternsLookup, TextPatterns_d_DynamicPatternContext as DynamicPatternContext, TextPatterns_d_BlockCmdPattern as BlockCmdPattern, TextPatterns_d_BlockPattern as BlockPattern, TextPatterns_d_BlockFormatPattern as BlockFormatPattern, TextPatterns_d_InlineCmdPattern as InlineCmdPattern, TextPatterns_d_InlinePattern as InlinePattern, TextPatterns_d_InlineFormatPattern as InlineFormatPattern, };
}
interface Delay {
    setEditorInterval: (editor: Editor, callback: () => void, time?: number) => number;
    setEditorTimeout: (editor: Editor, callback: () => void, time?: number) => number;
}
type UploadResult = UploadResult$2;
interface ImageUploader {
    upload: (blobInfos: BlobInfo[], showNotification?: boolean) => Promise<UploadResult[]>;
}
type ArrayCallback$1<T, R> = (this: any, x: T, i: number, xs: ArrayLike<T>) => R;
type ObjCallback$1<T, R> = (this: any, value: T, key: string, obj: Record<string, T>) => R;
type ArrayCallback<T, R> = ArrayCallback$1<T, R>;
type ObjCallback<T, R> = ObjCallback$1<T, R>;
type WalkCallback<T> = (this: any, o: T, i: string, n: keyof T | undefined) => boolean | void;
interface Tools {
    is: (obj: any, type?: string) => boolean;
    isArray: <T>(arr: any) => arr is Array<T>;
    inArray: <T>(arr: ArrayLike<T>, value: T) => number;
    grep: {
        <T>(arr: ArrayLike<T> | null | undefined, pred?: ArrayCallback<T, boolean>): T[];
        <T>(arr: Record<string, T> | null | undefined, pred?: ObjCallback<T, boolean>): T[];
    };
    trim: (str: string | null | undefined) => string;
    toArray: <T>(obj: ArrayLike<T>) => T[];
    hasOwn: (obj: any, name: string) => boolean;
    makeMap: (items: ArrayLike<string> | string | undefined, delim?: string | RegExp, map?: Record<string, {}>) => Record<string, {}>;
    each: {
        <T>(arr: ArrayLike<T> | null | undefined, cb: ArrayCallback<T, void | boolean>, scope?: any): boolean;
        <T>(obj: Record<string, T> | null | undefined, cb: ObjCallback<T, void | boolean>, scope?: any): boolean;
    };
    map: {
        <T, R>(arr: ArrayLike<T> | null | undefined, cb: ArrayCallback<T, R>): R[];
        <T, R>(obj: Record<string, T> | null | undefined, cb: ObjCallback<T, R>): R[];
    };
    extend: (obj: Object, ext: Object, ...objs: Object[]) => any;
    walk: <T extends Record<string, any>>(obj: T, f: WalkCallback<T>, n?: keyof T, scope?: any) => void;
    resolve: (path: string, o?: Object) => any;
    explode: (s: string | string[], d?: string | RegExp) => string[];
    _addCacheSuffix: (url: string) => string;
}
interface KeyboardLikeEvent {
    shiftKey: boolean;
    ctrlKey: boolean;
    altKey: boolean;
    metaKey: boolean;
}
interface VK {
    BACKSPACE: number;
    DELETE: number;
    DOWN: number;
    ENTER: number;
    ESC: number;
    LEFT: number;
    RIGHT: number;
    SPACEBAR: number;
    TAB: number;
    UP: number;
    PAGE_UP: number;
    PAGE_DOWN: number;
    END: number;
    HOME: number;
    modifierPressed: (e: KeyboardLikeEvent) => boolean;
    metaKeyPressed: (e: KeyboardLikeEvent) => boolean;
}
interface DOMUtilsNamespace {
    (doc: Document, settings: Partial<DOMUtilsSettings>): DOMUtils;
    DOM: DOMUtils;
    nodeIndex: (node: Node, normalized?: boolean) => number;
}
interface RangeUtilsNamespace {
    (dom: DOMUtils): RangeUtils;
    compareRanges: (rng1: RangeLikeObject, rng2: RangeLikeObject) => boolean;
    getCaretRangeFromPoint: (clientX: number, clientY: number, doc: Document) => Range;
    getSelectedNode: (range: Range) => Node;
    getNode: (container: Node, offset: number) => Node;
}
interface AddOnManagerNamespace {
    <T>(): AddOnManager<T>;
    language: string | undefined;
    languageLoad: boolean;
    baseURL: string;
    PluginManager: PluginManager;
    ThemeManager: ThemeManager;
    ModelManager: ModelManager;
}
interface BookmarkManagerNamespace {
    (selection: EditorSelection): BookmarkManager;
    isBookmarkNode: (node: Node) => boolean;
}
interface TinyMCE extends EditorManager {
    geom: {
        Rect: Rect;
    };
    util: {
        Delay: Delay;
        Tools: Tools;
        VK: VK;
        URI: URIConstructor;
        EventDispatcher: EventDispatcherConstructor<any>;
        Observable: Observable<any>;
        I18n: I18n;
        LocalStorage: Storage;
        ImageUploader: ImageUploader;
    };
    dom: {
        EventUtils: EventUtilsConstructor;
        TreeWalker: DomTreeWalkerConstructor;
        TextSeeker: (dom: DOMUtils, isBlockBoundary?: (node: Node) => boolean) => TextSeeker;
        DOMUtils: DOMUtilsNamespace;
        ScriptLoader: ScriptLoaderConstructor;
        RangeUtils: RangeUtilsNamespace;
        Serializer: (settings: DomSerializerSettings, editor?: Editor) => DomSerializer;
        ControlSelection: (selection: EditorSelection, editor: Editor) => ControlSelection;
        BookmarkManager: BookmarkManagerNamespace;
        Selection: (dom: DOMUtils, win: Window, serializer: DomSerializer, editor: Editor) => EditorSelection;
        StyleSheetLoader: (documentOrShadowRoot: Document | ShadowRoot, settings: StyleSheetLoaderSettings) => StyleSheetLoader;
        Event: EventUtils;
    };
    html: {
        Styles: (settings?: StylesSettings, schema?: Schema) => Styles;
        Entities: Entities;
        Node: AstNodeConstructor;
        Schema: (settings?: SchemaSettings) => Schema;
        DomParser: (settings?: DomParserSettings, schema?: Schema) => DomParser;
        Writer: (settings?: WriterSettings) => Writer;
        Serializer: (settings?: HtmlSerializerSettings, schema?: Schema) => HtmlSerializer;
    };
    AddOnManager: AddOnManagerNamespace;
    Annotator: (editor: Editor) => Annotator;
    Editor: EditorConstructor;
    EditorCommands: EditorCommandsConstructor;
    EditorManager: EditorManager;
    EditorObservable: EditorObservable;
    Env: Env;
    FocusManager: FocusManager;
    Formatter: (editor: Editor) => Formatter;
    NotificationManager: (editor: Editor) => NotificationManager;
    Shortcuts: ShortcutsConstructor;
    UndoManager: (editor: Editor) => UndoManager;
    WindowManager: (editor: Editor) => WindowManager;
    DOM: DOMUtils;
    ScriptLoader: ScriptLoader;
    PluginManager: PluginManager;
    ThemeManager: ThemeManager;
    ModelManager: ModelManager;
    IconManager: IconManager;
    Resource: Resource;
    FakeClipboard: FakeClipboard;
    trim: Tools['trim'];
    isArray: Tools['isArray'];
    is: Tools['is'];
    toArray: Tools['toArray'];
    makeMap: Tools['makeMap'];
    each: Tools['each'];
    map: Tools['map'];
    grep: Tools['grep'];
    inArray: Tools['inArray'];
    extend: Tools['extend'];
    walk: Tools['walk'];
    resolve: Tools['resolve'];
    explode: Tools['explode'];
    _addCacheSuffix: Tools['_addCacheSuffix'];
}
declare const tinymce: TinyMCE;
export { AddOnManager, Annotator, AstNode, Bookmark, BookmarkManager, ControlSelection, DOMUtils, Delay, DomParser, DomParserSettings, DomSerializer, DomSerializerSettings, DomTreeWalker, Editor, EditorCommands, EditorEvent, EditorManager, EditorModeApi, EditorObservable, EditorOptions, EditorSelection, Entities, Env, EventDispatcher, EventUtils, EventTypes_d as Events, FakeClipboard, FocusManager, Format_d as Formats, Formatter, GeomRect, HtmlSerializer, HtmlSerializerSettings, I18n, IconManager, Model, ModelManager, NotificationApi, NotificationManager, NotificationSpec, Observable, Plugin, PluginManager, RangeUtils, RawEditorOptions, Rect, Resource, Schema, SchemaSettings, ScriptLoader, Shortcuts, StyleSheetLoader, Styles, TextPatterns_d as TextPatterns, TextSeeker, Theme, ThemeManager, TinyMCE, Tools, URI, Ui_d as Ui, UndoManager, VK, WindowManager, Writer, WriterSettings, tinymce as default };
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/content.js000064400000056075151213255240021572 0ustar00tinymce.Resource.add('ui/tinymce-5/content.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css000064400000000774151213255240024001 0ustar00body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/skin.js000064400000235255151213255240021063 0ustar00tinymce.Resource.add('ui/tinymce-5/skin.css', ".tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:1px solid #ccc;border-radius:0;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#fff;border:1px solid #ccc;border-radius:0;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:3px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(30,113,170,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#207ab7}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#207ab7}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#207ab7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#1c6ca1}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#185d8c}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.08);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#c00}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#c00}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#527530}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#527530}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#ccc;border-radius:0;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#207ab7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#207ab7;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:3px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #207ab7,0 0 0 3px rgba(32,122,183,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#207ab7;background-image:none;border-color:#207ab7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#114060;background-image:none;border-color:#114060;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#f0f0f0;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled{background-color:#b1ccdf;background-image:none;border-color:#b1ccdf;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#b1ccdf;background-image:none;border-color:#b1ccdf;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#9fc1d7;background-image:none;border-color:#9fc1d7;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#9fc1d7;background-image:none;border-color:#9fc1d7;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#8db5d0;background-image:none;border-color:#8db5d0;box-shadow:none;color:#222f3e}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked[disabled]{background-color:#f0f0f0;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:#e3e3e3;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--naked:focus:not(:disabled){background-color:#e3e3e3;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--naked:active:not(:disabled){background-color:#d6d6d6;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}.tox .tox-checkbox{align-items:center;border-radius:3px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:3px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,.3)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#207ab7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#207ab7}.tox .tox-checkbox--disabled{color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(34,47,62,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:3px;box-shadow:inset 0 0 0 1px #207ab7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#ccc;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#e6e6e6;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#222f3e;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#fff;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active{background-color:#dee0e2}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#c8cbcf;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#dee0e2}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#c8cbcf;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#dee0e2;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(34,47,62,.7);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#222f3e}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(34,47,62,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:34px;margin:3px 0 2px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid #ccc}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid #ccc}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:2px 0 3px 4px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px 0}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#222f3e;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#dee0e2}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#222f3e;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#fff;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#222f3e;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:\"\";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:\"\";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(34,47,62,.7)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#222f3e;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#fff}.tox .tox-dialog{background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(32,122,183,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #207ab7;color:#207ab7}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#207ab7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#114060;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #207ab7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#092335;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#222f3e}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#222f3e;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#222f3e;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:1px solid #ccc;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #404040}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #ccc;border-radius:3px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #ccc;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #2d6adf;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #ccc}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#fff;border-bottom:none;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #ccc;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#fff;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#207ab7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(0,0,0,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(0,0,0,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #fff;border-radius:3px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#fff;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#207ab7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#222f3e}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#222f3e}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#fff;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size=\"0\"],.tox:not([dir=rtl]) .tox-selectfield select[size=\"1\"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size=\"0\"],.tox[dir=rtl] .tox-selectfield select[size=\"1\"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#ccc;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:0 -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(32,122,183,.5);border-color:rgba(32,122,183,.5)}.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 0}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:4px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:4px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:url(\"data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E\") left 0 top 0 #fff;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 4px 0 4px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:url(\"data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E\") left 0 top 0 #fff;background-color:#fff;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn--active{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#e4eeda;border-color:#d7e6c8;color:#222f3e}.tox .tox-notification--success p{color:#222f3e}.tox .tox-notification--success a{color:#517342}.tox .tox-notification--success svg{fill:#222f3e}.tox .tox-notification--error{background-color:#f5cccc;border-color:#f0b3b3;color:#222f3e}.tox .tox-notification--error p{color:#222f3e}.tox .tox-notification--error a{color:#77181f}.tox .tox-notification--error svg{fill:#222f3e}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#fff5cc;border-color:#fff0b3;color:#222f3e}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#222f3e}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#7a6e25}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#222f3e}.tox .tox-notification--info{background-color:#d6e7fb;border-color:#c1dbf9;color:#222f3e}.tox .tox-notification--info p{color:#222f3e}.tox .tox-notification--info a{color:#2a64a6}.tox .tox-notification--info svg{fill:#222f3e}.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#ccc transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #ccc transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #ccc transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #ccc;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#fff;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #ccc;border-radius:3px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#207ab7;border:2px solid #185d8c;border-radius:3px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #ccc;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:12px;font-weight:400;height:18px;overflow:hidden;padding:0 8px;position:relative;text-transform:uppercase}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(34,47,62,.7);text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#222f3e;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(34,47,62,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#222f3e}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#dee0e2;border-radius:1px 1px -4px 1px;box-shadow:0 0 0 2px #dee0e2}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:3px 0 2px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#222f3e}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#dee0e2;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:hover svg{fill:#222f3e}.tox .tox-tbtn:active{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:active svg{fill:#222f3e}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#222f3e}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#222f3e}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:51px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:68px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:0 0;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#dee0e2}.tox .tox-number-input input{border-radius:3px;color:#222f3e;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#dee0e2;color:#222f3e}.tox .tox-number-input input:focus{background:#fff;color:#222f3e}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button{background:0 0;color:#222f3e;height:34px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#222f3e;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#dee0e2}.tox .tox-number-input button:hover{background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:hover svg{fill:#222f3e}.tox .tox-number-input button:active{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:active svg{fill:#222f3e}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#dee0e2}.tox .tox-tbtn--select{margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--bespoke{background:0 0}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:0}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:3px 0 2px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #dee0e2 inset}.tox .tox-split-button:focus{background:#dee0e2;box-shadow:none;color:#222f3e}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(34,47,62,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#fff}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#fff;background-image:repeating-linear-gradient(#ccc 0 1px,transparent 1px 39px);background-position:center top 39px;background-repeat:no-repeat;background-size:calc(100% - 4px * 2) calc(100% - 39px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 4px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid #ccc;margin-top:-1px;padding-bottom:0;padding-top:0}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:3px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 4px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 4px 0 4px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid #ccc}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid #ccc}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#222f3e;border-radius:3px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#222f3e}.tox .tox-tree .tox-trbtn:focus{background:#dee0e2;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active{background:#b1d0e6;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:active svg{fill:#222f3e}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#b1d0e6;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#fff;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #ccc;border-radius:3px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #ccc;border-radius:3px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #ccc;border-radius:3px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:\"\";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:none;padding:0}.tox.tox-tinymce--toolbar-bottom .tox-editor-header,.tox.tox-tinymce-inline .tox-editor-header{margin-bottom:-1px}.tox.tox-tinymce-inline .tox-editor-container{overflow:hidden}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:none;box-shadow:none}.tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:transparent;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:0}.tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px 0}.tox .tox-menu.tox-collection.tox-collection--list{padding:0}.tox .tox-pop{box-shadow:none}.tox .tox-number-input,.tox .tox-split-button,.tox .tox-tbtn,.tox .tox-tbtn--select{margin:2px 0 3px 0}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background:url(\"data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E\") left 0 top 0 #fff!important}.tox .tox-menubar+.tox-toolbar-overlord{border-top:none}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord .tox-toolbar__primary{border-top:1px solid #ccc;margin-top:-1px}.tox.tox-tinymce-aux .tox-toolbar__overflow{border:1px solid #ccc;padding:0}.tox .tox-pop .tox-pop__dialog .tox-toolbar{padding:0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar{border-top:1px solid #ccc}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child{border-top:1px solid #ccc}.tox .tox-toolbar__group{padding:0 4px 0 4px}.tox .tox-collection__item{border-radius:0;cursor:pointer}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:rgba(34,47,62,.7);text-decoration:underline}.tox .tox-statusbar__branding svg{vertical-align:-.25em}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:1ch}.tox .tox-statusbar__resize-handle{padding-bottom:0;padding-right:0}.tox .tox-button::before{display:none}")
//# sourceMappingURL=skin.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.js000064400000056020151213255240023035 0ustar00tinymce.Resource.add('ui/tinymce-5/content.inline.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}")
//# sourceMappingURL=content.inline.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/content.min.css000064400000055701151213255240022523 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/skin.min.css000064400000235047151213255240022020 0ustar00.tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:1px solid #ccc;border-radius:0;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#fff;border:1px solid #ccc;border-radius:0;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:3px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(30,113,170,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#207ab7}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#207ab7}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#207ab7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#1c6ca1}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#185d8c}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.08);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#c00}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#c00}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#527530}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#527530}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#ccc;border-radius:0;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#207ab7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#207ab7;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:3px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #207ab7,0 0 0 3px rgba(32,122,183,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#207ab7;background-image:none;border-color:#207ab7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#114060;background-image:none;border-color:#114060;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#f0f0f0;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled{background-color:#b1ccdf;background-image:none;border-color:#b1ccdf;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#b1ccdf;background-image:none;border-color:#b1ccdf;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#9fc1d7;background-image:none;border-color:#9fc1d7;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#9fc1d7;background-image:none;border-color:#9fc1d7;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#8db5d0;background-image:none;border-color:#8db5d0;box-shadow:none;color:#222f3e}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked[disabled]{background-color:#f0f0f0;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:#e3e3e3;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--naked:focus:not(:disabled){background-color:#e3e3e3;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--naked:active:not(:disabled){background-color:#d6d6d6;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}.tox .tox-checkbox{align-items:center;border-radius:3px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:3px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,.3)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#207ab7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#207ab7}.tox .tox-checkbox--disabled{color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(34,47,62,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:3px;box-shadow:inset 0 0 0 1px #207ab7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#ccc;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#e6e6e6;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#222f3e;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#fff;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active{background-color:#dee0e2}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#c8cbcf;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#dee0e2}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#c8cbcf;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#dee0e2;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(34,47,62,.7);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#222f3e}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(34,47,62,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:34px;margin:3px 0 2px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid #ccc}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid #ccc}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:2px 0 3px 4px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px 0}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#222f3e;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#dee0e2}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#222f3e;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#fff;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#222f3e;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(34,47,62,.7)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#222f3e;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#fff}.tox .tox-dialog{background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(32,122,183,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #207ab7;color:#207ab7}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#207ab7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#114060;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #207ab7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#092335;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#222f3e}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#222f3e;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#222f3e;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:1px solid #ccc;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #404040}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #ccc;border-radius:3px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #ccc;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #2d6adf;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #ccc}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#fff;border-bottom:none;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #ccc;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#fff;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#207ab7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(0,0,0,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(0,0,0,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #fff;border-radius:3px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#fff;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#207ab7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#222f3e}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#222f3e}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#fff;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#ccc;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:0 -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(32,122,183,.5);border-color:rgba(32,122,183,.5)}.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 0}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:4px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:4px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 4px 0 4px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;background-color:#fff;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn--active{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#e4eeda;border-color:#d7e6c8;color:#222f3e}.tox .tox-notification--success p{color:#222f3e}.tox .tox-notification--success a{color:#517342}.tox .tox-notification--success svg{fill:#222f3e}.tox .tox-notification--error{background-color:#f5cccc;border-color:#f0b3b3;color:#222f3e}.tox .tox-notification--error p{color:#222f3e}.tox .tox-notification--error a{color:#77181f}.tox .tox-notification--error svg{fill:#222f3e}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#fff5cc;border-color:#fff0b3;color:#222f3e}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#222f3e}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#7a6e25}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#222f3e}.tox .tox-notification--info{background-color:#d6e7fb;border-color:#c1dbf9;color:#222f3e}.tox .tox-notification--info p{color:#222f3e}.tox .tox-notification--info a{color:#2a64a6}.tox .tox-notification--info svg{fill:#222f3e}.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#ccc transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #ccc transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #ccc transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #ccc;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#fff;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #ccc;border-radius:3px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#207ab7;border:2px solid #185d8c;border-radius:3px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #ccc;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:12px;font-weight:400;height:18px;overflow:hidden;padding:0 8px;position:relative;text-transform:uppercase}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(34,47,62,.7);text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#222f3e;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(34,47,62,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#222f3e}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#dee0e2;border-radius:1px 1px -4px 1px;box-shadow:0 0 0 2px #dee0e2}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:3px 0 2px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#222f3e}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#dee0e2;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:hover svg{fill:#222f3e}.tox .tox-tbtn:active{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:active svg{fill:#222f3e}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#222f3e}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#222f3e}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:51px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:68px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:0 0;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#dee0e2}.tox .tox-number-input input{border-radius:3px;color:#222f3e;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#dee0e2;color:#222f3e}.tox .tox-number-input input:focus{background:#fff;color:#222f3e}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button{background:0 0;color:#222f3e;height:34px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#222f3e;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#dee0e2}.tox .tox-number-input button:hover{background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:hover svg{fill:#222f3e}.tox .tox-number-input button:active{background:#c8cbcf;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:active svg{fill:#222f3e}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#dee0e2}.tox .tox-tbtn--select{margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--bespoke{background:0 0}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:0}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:3px 0 2px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #dee0e2 inset}.tox .tox-split-button:focus{background:#dee0e2;box-shadow:none;color:#222f3e}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(34,47,62,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#fff}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#fff;background-image:repeating-linear-gradient(#ccc 0 1px,transparent 1px 39px);background-position:center top 39px;background-repeat:no-repeat;background-size:calc(100% - 4px * 2) calc(100% - 39px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 4px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid #ccc;margin-top:-1px;padding-bottom:0;padding-top:0}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:3px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 4px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 4px 0 4px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid #ccc}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid #ccc}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#222f3e;border-radius:3px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#222f3e}.tox .tox-tree .tox-trbtn:focus{background:#dee0e2;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#dee0e2;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active{background:#b1d0e6;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:active svg{fill:#222f3e}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#b1d0e6;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#fff;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #ccc;border-radius:3px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #ccc;border-radius:3px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #ccc;border-radius:3px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:none;padding:0}.tox.tox-tinymce--toolbar-bottom .tox-editor-header,.tox.tox-tinymce-inline .tox-editor-header{margin-bottom:-1px}.tox.tox-tinymce-inline .tox-editor-container{overflow:hidden}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:none;box-shadow:none}.tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:transparent;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:0}.tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px 0}.tox .tox-menu.tox-collection.tox-collection--list{padding:0}.tox .tox-pop{box-shadow:none}.tox .tox-number-input,.tox .tox-split-button,.tox .tox-tbtn,.tox .tox-tbtn--select{margin:2px 0 3px 0}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff!important}.tox .tox-menubar+.tox-toolbar-overlord{border-top:none}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord .tox-toolbar__primary{border-top:1px solid #ccc;margin-top:-1px}.tox.tox-tinymce-aux .tox-toolbar__overflow{border:1px solid #ccc;padding:0}.tox .tox-pop .tox-pop__dialog .tox-toolbar{padding:0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar{border-top:1px solid #ccc}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child{border-top:1px solid #ccc}.tox .tox-toolbar__group{padding:0 4px 0 4px}.tox .tox-collection__item{border-radius:0;cursor:pointer}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:rgba(34,47,62,.7);text-decoration:underline}.tox .tox-statusbar__branding svg{vertical-align:-.25em}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:1ch}.tox .tox-statusbar__resize-handle{padding-bottom:0;padding-right:0}.tox .tox-button::before{display:none}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.js000064400000001142151213255240023031 0ustar00tinymce.Resource.add('ui/tinymce-5/skin.shadowdom.css', "body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}")
//# sourceMappingURL=skin.shadowdom.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.min.css000064400000055606151213255240024004 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/content.js000064400000055263151213255250022006 0ustar00tinymce.Resource.add('ui/dark/content.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%236d737b%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#f8f8f2;background:0 0;text-shadow:0 1px rgba(0,0,0,.3);font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border-radius:.3em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#282a36}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#6272a4}.token.punctuation{color:#f8f8f2}.namespace{opacity:.7}.token.constant,.token.deleted,.token.property,.token.symbol,.token.tag{color:#ff79c6}.token.boolean,.token.number{color:#bd93f9}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#50fa7b}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url,.token.variable{color:#f8f8f2}.token.atrule,.token.attr-value,.token.class-name,.token.function{color:#f1fa8c}.token.keyword{color:#8be9fd}.token.important,.token.regex{color:#ffb86c}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.3)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.3);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #4099ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #4099ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #4099ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #4099ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #4099ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#4099ff}.mce-content-body .mce-edit-focus{outline:3px solid #4099ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid transparent;bottom:-1px;content:'';left:-1px;mix-blend-mode:lighten;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#4099ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css000064400000000774151213255250024217 0ustar00body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/skin.js000064400000230060151213255250021266 0ustar00tinymce.Resource.add('ui/dark/skin.css', ".tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:2px solid #161f29;border-radius:10px;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#222f3e;border:2px solid #161f29;border-radius:10px;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:6px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(0,101,216,.4);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#006ce7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#0060ce}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#0054b4}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#161f29;border-radius:10px;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#006ce7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#006ce7;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:6px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #006ce7,0 0 0 3px rgba(0,108,231,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#006ce7;background-image:none;border-color:#006ce7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#003c81;background-image:none;border-color:#003c81;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#3d546f;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#3d546f;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;color:#fff;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#3d546f;background-image:none;border-color:#3d546f;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:hover:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:active:not(:disabled){background-color:#2b3b4e;background-image:none;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled{background-color:#2b5c93;background-image:none;border-color:#2b5c93;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#2b5c93;background-image:none;border-color:#2b5c93;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#254f80;background-image:none;border-color:#254f80;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#254f80;background-image:none;border-color:#254f80;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#1f436c;background-image:none;border-color:#1f436c;box-shadow:none;color:#fff}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked[disabled]{background-color:rgba(255,255,255,.2);border-color:transparent;box-shadow:unset;color:rgba(255,255,255,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:rgba(255,255,255,.2);border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked:focus:not(:disabled){background-color:rgba(255,255,255,.2);border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked:active:not(:disabled){background-color:rgba(255,255,255,.3);border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#fff}.tox .tox-checkbox{align-items:center;border-radius:6px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:6px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(255,255,255,.2)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#006ce7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#006ce7}.tox .tox-checkbox--disabled{color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(255,255,255,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:6px;box-shadow:inset 0 0 0 1px #006ce7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:rgba(255,255,255,.15);border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:rgba(255,255,255,.15);color:rgba(255,255,255,.5);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#fff;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#2b3b4e;color:#fff}.tox .tox-collection--list .tox-collection__item--active{background-color:#3389ec}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#599fef;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#3389ec}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#599fef;color:#fff}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#3389ec;color:#fff}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(255,255,255,.5);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#fff}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(255,255,255,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#2b3b4e;border:1px solid rgba(255,255,255,.15);border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:28px;margin:6px 1px 5px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid transparent}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid transparent}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:5px 0 6px 11px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px -4px}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#fff;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#3389ec}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#fff;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#2b3b4e;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#2b3b4e;border:1px solid #161f29;border-radius:6px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#fff;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#fff;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#fff;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(255,255,255,.5);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#2b3b4e;bottom:0;content:\"\";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(43,59,78,0),#2b3b4e);bottom:0;content:\"\";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#2b3b4e;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#fff;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#2b3b4e;box-shadow:0 0 8px 8px #2b3b4e;color:#fff;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#2b3b4e;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(255,255,255,.5)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#fff;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(34,47,62,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#222f3e}.tox .tox-dialog{background-color:#2b3b4e;border-color:#161f29;border-radius:10px;border-style:solid;border-width:0;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#2b3b4e;border-bottom:none;color:#fff;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#fff;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(255,255,255,.5);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(0,108,231,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #67aeff;color:#67aeff}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#67aeff;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#cde5ff;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #67aeff;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#fff;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#fff}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#fff;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#fff;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#2b3b4e;border-top:none;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(34,47,62,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #000}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #161f29;border-radius:6px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #161f29;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(255,255,255,.5);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #fff;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #161f29}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#222f3e;border-bottom:1px solid rgba(255,255,255,.15);box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid rgba(255,255,255,.15);box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#222f3e;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:none}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#006ce7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(255,255,255,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(255,255,255,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #2b3b4e;border-radius:6px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(255,255,255,.5);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#161f29;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#222f3e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#2b3b4e;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#006ce7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#fff}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#fff}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#161f29;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#2b3b4e;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size=\"0\"],.tox:not([dir=rtl]) .tox-selectfield select[size=\"1\"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size=\"0\"],.tox[dir=rtl] .tox-selectfield select[size=\"1\"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#161f29;border-radius:6px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:rgba(255,255,255,.15);border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(0,108,231,.5);border-color:rgba(0,108,231,.5)}.tox .tox-insert-table-picker__label{color:#fff;display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#2b3b4e;border:1px solid rgba(255,255,255,.15);border-radius:6px;box-shadow:none;display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 4px}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:8px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:8px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#222f3e;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 11px 0 12px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#222f3e;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:5px 1px 6px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn--active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#334840;border-color:#3c5440;color:#fff}.tox .tox-notification--success p{color:#fff}.tox .tox-notification--success a{color:#b5d199}.tox .tox-notification--success svg{fill:#fff}.tox .tox-notification--error{background-color:#442632;border-color:#55212b;color:#fff}.tox .tox-notification--error p{color:#fff}.tox .tox-notification--error a{color:#e68080}.tox .tox-notification--error svg{fill:#fff}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#222f3e;border-color:rgba(255,255,255,.15);color:#fff0b3}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#fff0b3}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#fc0}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#fff0b3}.tox .tox-notification--info{background-color:#254161;border-color:#264972;color:#fff}.tox .tox-notification--info p{color:#fff}.tox .tox-notification--info a{color:#83b7f3}.tox .tox-notification--info svg{fill:#fff}.tox .tox-notification__body{align-self:center;color:#fff;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#222f3e;border:1px solid #161f29;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#222f3e transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#161f29 transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #222f3e transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #161f29 transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #222f3e transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #161f29 transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #222f3e;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #161f29;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#222f3e;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #161f29;border-radius:6px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#006ce7;border:2px solid #0054b4;border-radius:6px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(255,255,255,.5);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#222f3e;border-top:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.75);display:flex;flex:0 0 auto;font-size:14px;font-weight:400;height:25px;overflow:hidden;padding:0 8px;position:relative;text-transform:none}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(255,255,255,.75);text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#fff;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(255,255,255,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#fff}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(255,255,255,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#434e5b;border-radius:1px 1px 5px 1px;box-shadow:0 0 0 2px #434e5b}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(34,47,62,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:6px 1px 5px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#fff}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#3389ec;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:hover svg{fill:#fff}.tox .tox-tbtn:active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:active svg{fill:#fff}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#fff}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#fff}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#fff}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:42px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:56px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:#2f4055;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#3389ec}.tox .tox-number-input input{border-radius:3px;color:#fff;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#3389ec;color:#fff}.tox .tox-number-input input:focus{background:#fff;color:#222f3e}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button{background:#2f4055;color:#fff;height:28px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#fff;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#3389ec}.tox .tox-number-input button:hover{background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:hover svg{fill:#fff}.tox .tox-number-input button:active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:active svg{fill:#fff}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#3389ec}.tox .tox-tbtn--select{margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--bespoke{background:#2f4055}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:4px}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:6px 1px 5px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #3389ec inset}.tox .tox-split-button:focus{background:#3389ec;box-shadow:none;color:#fff}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(255,255,255,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#222f3e}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#222f3e;background-image:repeating-linear-gradient(rgba(255,255,255,.15) 0 1px,transparent 1px 39px);background-position:center top 40px;background-repeat:no-repeat;background-size:calc(100% - 11px * 2) calc(100% - 41px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 11px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid transparent;margin-top:-1px;padding-bottom:1px;padding-top:1px}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#222f3e;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 11px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 11px 0 12px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid transparent}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid transparent}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#3d546f;border-radius:6px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #3d546f;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #3d546f;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #3d546f;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #3d546f;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#fff}.tox .tox-tree .tox-trbtn:focus{background:#3389ec;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:active svg{fill:#fff}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#fff}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#222f3e;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #161f29;border-radius:6px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #161f29;border-radius:6px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #161f29;border-radius:6px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:\"\";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox.tox-tinymce-aux .tox-toolbar__overflow{box-shadow:0 0 0 1px rgba(255,255,255,.15)}")
//# sourceMappingURL=skin.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.js000064400000056013151213255250023255 0ustar00tinymce.Resource.add('ui/dark/content.inline.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}")
//# sourceMappingURL=content.inline.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css000064400000055074151213255250022744 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%236d737b%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#f8f8f2;background:0 0;text-shadow:0 1px rgba(0,0,0,.3);font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border-radius:.3em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#282a36}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#6272a4}.token.punctuation{color:#f8f8f2}.namespace{opacity:.7}.token.constant,.token.deleted,.token.property,.token.symbol,.token.tag{color:#ff79c6}.token.boolean,.token.number{color:#bd93f9}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#50fa7b}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url,.token.variable{color:#f8f8f2}.token.atrule,.token.attr-value,.token.class-name,.token.function{color:#f1fa8c}.token.keyword{color:#8be9fd}.token.important,.token.regex{color:#ffb86c}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.3)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.3);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #4099ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #4099ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #4099ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #4099ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #4099ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#4099ff}.mce-content-body .mce-edit-focus{outline:3px solid #4099ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid transparent;bottom:-1px;content:'';left:-1px;mix-blend-mode:lighten;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#4099ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css000064400000227665151213255250022245 0ustar00.tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:2px solid #161f29;border-radius:10px;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#222f3e;border:2px solid #161f29;border-radius:10px;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:6px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(0,101,216,.4);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#006ce7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#0060ce}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#0054b4}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#161f29;border-radius:10px;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#006ce7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#006ce7;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:6px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #006ce7,0 0 0 3px rgba(0,108,231,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#006ce7;background-image:none;border-color:#006ce7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#003c81;background-image:none;border-color:#003c81;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#3d546f;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#3d546f;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;color:#fff;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#3d546f;background-image:none;border-color:#3d546f;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:hover:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:active:not(:disabled){background-color:#2b3b4e;background-image:none;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled{background-color:#2b5c93;background-image:none;border-color:#2b5c93;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#2b5c93;background-image:none;border-color:#2b5c93;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#254f80;background-image:none;border-color:#254f80;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#254f80;background-image:none;border-color:#254f80;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#1f436c;background-image:none;border-color:#1f436c;box-shadow:none;color:#fff}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked[disabled]{background-color:rgba(255,255,255,.2);border-color:transparent;box-shadow:unset;color:rgba(255,255,255,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:rgba(255,255,255,.2);border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked:focus:not(:disabled){background-color:rgba(255,255,255,.2);border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked:active:not(:disabled){background-color:rgba(255,255,255,.3);border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#fff}.tox .tox-checkbox{align-items:center;border-radius:6px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:6px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(255,255,255,.2)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#006ce7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#006ce7}.tox .tox-checkbox--disabled{color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(255,255,255,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:6px;box-shadow:inset 0 0 0 1px #006ce7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:rgba(255,255,255,.15);border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:rgba(255,255,255,.15);color:rgba(255,255,255,.5);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#fff;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#2b3b4e;color:#fff}.tox .tox-collection--list .tox-collection__item--active{background-color:#3389ec}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#599fef;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#3389ec}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#599fef;color:#fff}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#3389ec;color:#fff}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(255,255,255,.5);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#fff}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(255,255,255,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#2b3b4e;border:1px solid rgba(255,255,255,.15);border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:28px;margin:6px 1px 5px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid transparent}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid transparent}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:5px 0 6px 11px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px -4px}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#fff;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#3389ec}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#fff;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#2b3b4e;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#2b3b4e;border:1px solid #161f29;border-radius:6px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#fff;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#fff;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#fff;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(255,255,255,.5);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#2b3b4e;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(43,59,78,0),#2b3b4e);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#2b3b4e;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#fff;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#2b3b4e;box-shadow:0 0 8px 8px #2b3b4e;color:#fff;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#2b3b4e;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(255,255,255,.5)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#fff;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(34,47,62,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#222f3e}.tox .tox-dialog{background-color:#2b3b4e;border-color:#161f29;border-radius:10px;border-style:solid;border-width:0;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#2b3b4e;border-bottom:none;color:#fff;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#fff;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(255,255,255,.5);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(0,108,231,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #67aeff;color:#67aeff}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#67aeff;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#cde5ff;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #67aeff;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#fff;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#fff}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#fff;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#fff;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#2b3b4e;border-top:none;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(34,47,62,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #000}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #161f29;border-radius:6px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #161f29;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(255,255,255,.5);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #fff;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #161f29}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#222f3e;border-bottom:1px solid rgba(255,255,255,.15);box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid rgba(255,255,255,.15);box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#222f3e;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:none}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#006ce7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(255,255,255,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(255,255,255,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #2b3b4e;border-radius:6px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(255,255,255,.5);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#161f29;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#222f3e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#2b3b4e;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#006ce7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#fff}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#fff}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#161f29;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#2b3b4e;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#161f29;border-radius:6px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:rgba(255,255,255,.15);border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(0,108,231,.5);border-color:rgba(0,108,231,.5)}.tox .tox-insert-table-picker__label{color:#fff;display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#2b3b4e;border:1px solid rgba(255,255,255,.15);border-radius:6px;box-shadow:none;display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 4px}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:8px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:8px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#222f3e;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 11px 0 12px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#222f3e;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:5px 1px 6px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn--active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#334840;border-color:#3c5440;color:#fff}.tox .tox-notification--success p{color:#fff}.tox .tox-notification--success a{color:#b5d199}.tox .tox-notification--success svg{fill:#fff}.tox .tox-notification--error{background-color:#442632;border-color:#55212b;color:#fff}.tox .tox-notification--error p{color:#fff}.tox .tox-notification--error a{color:#e68080}.tox .tox-notification--error svg{fill:#fff}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#222f3e;border-color:rgba(255,255,255,.15);color:#fff0b3}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#fff0b3}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#fc0}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#fff0b3}.tox .tox-notification--info{background-color:#254161;border-color:#264972;color:#fff}.tox .tox-notification--info p{color:#fff}.tox .tox-notification--info a{color:#83b7f3}.tox .tox-notification--info svg{fill:#fff}.tox .tox-notification__body{align-self:center;color:#fff;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#222f3e;border:1px solid #161f29;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#222f3e transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#161f29 transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #222f3e transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #161f29 transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #222f3e transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #161f29 transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #222f3e;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #161f29;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#222f3e;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #161f29;border-radius:6px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#006ce7;border:2px solid #0054b4;border-radius:6px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(255,255,255,.5);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#222f3e;border-top:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.75);display:flex;flex:0 0 auto;font-size:14px;font-weight:400;height:25px;overflow:hidden;padding:0 8px;position:relative;text-transform:none}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(255,255,255,.75);text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#fff;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(255,255,255,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#fff}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(255,255,255,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#434e5b;border-radius:1px 1px 5px 1px;box-shadow:0 0 0 2px #434e5b}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(34,47,62,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:6px 1px 5px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#fff}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#3389ec;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:hover svg{fill:#fff}.tox .tox-tbtn:active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:active svg{fill:#fff}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#fff}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#fff}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#fff}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:42px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:56px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:#2f4055;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#3389ec}.tox .tox-number-input input{border-radius:3px;color:#fff;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#3389ec;color:#fff}.tox .tox-number-input input:focus{background:#fff;color:#222f3e}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button{background:#2f4055;color:#fff;height:28px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#fff;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#3389ec}.tox .tox-number-input button:hover{background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:hover svg{fill:#fff}.tox .tox-number-input button:active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:active svg{fill:#fff}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#3389ec}.tox .tox-tbtn--select{margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--bespoke{background:#2f4055}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:4px}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:6px 1px 5px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #3389ec inset}.tox .tox-split-button:focus{background:#3389ec;box-shadow:none;color:#fff}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(255,255,255,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#222f3e}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#222f3e;background-image:repeating-linear-gradient(rgba(255,255,255,.15) 0 1px,transparent 1px 39px);background-position:center top 40px;background-repeat:no-repeat;background-size:calc(100% - 11px * 2) calc(100% - 41px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 11px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid transparent;margin-top:-1px;padding-bottom:1px;padding-top:1px}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#222f3e;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 11px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 11px 0 12px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid transparent}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid transparent}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#3d546f;border-radius:6px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #3d546f;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #3d546f;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #3d546f;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #3d546f;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#fff}.tox .tox-tree .tox-trbtn:focus{background:#3389ec;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#3389ec;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:active{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:active svg{fill:#fff}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#599fef;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#fff}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#222f3e;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #161f29;border-radius:6px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #161f29;border-radius:6px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #161f29;border-radius:6px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox.tox-tinymce-aux .tox-toolbar__overflow{box-shadow:0 0 0 1px rgba(255,255,255,.15)}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.js000064400000001135151213255250023251 0ustar00tinymce.Resource.add('ui/dark/skin.shadowdom.css', "body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}")
//# sourceMappingURL=skin.shadowdom.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css000064400000055606151213255250024222 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/content.js000064400000056073151213255250021067 0ustar00tinymce.Resource.add('ui/default/content.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.min.css000064400000000774151213255260023301 0ustar00body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/skin.js000064400000230115151213255260020351 0ustar00tinymce.Resource.add('ui/default/skin.css', ".tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:2px solid #eee;border-radius:10px;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#fff;border:2px solid #eee;border-radius:10px;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:6px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(0,101,216,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#006ce7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#0060ce}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#0054b4}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.08);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#c00}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#c00}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#527530}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#527530}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#eee;border-radius:10px;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#006ce7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#006ce7;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:6px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #006ce7,0 0 0 3px rgba(0,108,231,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#006ce7;background-image:none;border-color:#006ce7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#003c81;background-image:none;border-color:#003c81;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#f0f0f0;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#7daee4;background-image:none;border-color:#7daee4;box-shadow:none;color:#222f3e}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked[disabled]{background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:rgba(34,47,62,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked:focus:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked:active:not(:disabled){background-color:rgba(34,47,62,.18);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}.tox .tox-checkbox{align-items:center;border-radius:6px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:6px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,.3)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#006ce7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#006ce7}.tox .tox-checkbox--disabled{color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(34,47,62,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:6px;box-shadow:inset 0 0 0 1px #006ce7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#e3e3e3;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#fcfcfc;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#222f3e;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#fff;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active{background-color:#cce2fa}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#a6ccf7;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#cce2fa}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#a6ccf7;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#cce2fa;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(34,47,62,.7);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#222f3e}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(34,47,62,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#fff;border:1px solid #e3e3e3;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:28px;margin:6px 1px 5px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid transparent}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid transparent}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:5px 0 6px 11px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px -4px}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#222f3e;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#cce2fa}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#222f3e;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#fff;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#222f3e;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:\"\";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:\"\";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(34,47,62,.7)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#222f3e;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#fff}.tox .tox-dialog{background-color:#fff;border-color:#eee;border-radius:10px;border-style:solid;border-width:0;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(0,108,231,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #006ce7;color:#006ce7}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#006ce7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#003c81;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #006ce7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#00244e;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#222f3e}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#222f3e;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#222f3e;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:none;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #626262}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #eee;border-radius:6px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #eee;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #2d6adf;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #eee}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#fff;border-bottom:none;box-shadow:0 2px 2px -2px rgba(34,47,62,.1),0 8px 8px -4px rgba(34,47,62,.07);padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #e3e3e3;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#fff;box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#006ce7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(0,0,0,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(0,0,0,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #fff;border-radius:6px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#006ce7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#222f3e}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#222f3e}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size=\"0\"],.tox:not([dir=rtl]) .tox-selectfield select[size=\"1\"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size=\"0\"],.tox[dir=rtl] .tox-selectfield select[size=\"1\"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#eee;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(0,108,231,.5);border-color:rgba(0,108,231,.5)}.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#fff;border:1px solid transparent;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 4px}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:8px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:8px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 11px 0 12px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:5px 1px 6px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn--active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#e4eeda;border-color:#d7e6c8;color:#222f3e}.tox .tox-notification--success p{color:#222f3e}.tox .tox-notification--success a{color:#517342}.tox .tox-notification--success svg{fill:#222f3e}.tox .tox-notification--error{background-color:#f5cccc;border-color:#f0b3b3;color:#222f3e}.tox .tox-notification--error p{color:#222f3e}.tox .tox-notification--error a{color:#77181f}.tox .tox-notification--error svg{fill:#222f3e}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#fff5cc;border-color:#fff0b3;color:#222f3e}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#222f3e}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#7a6e25}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#222f3e}.tox .tox-notification--info{background-color:#d6e7fb;border-color:#c1dbf9;color:#222f3e}.tox .tox-notification--info p{color:#222f3e}.tox .tox-notification--info a{color:#2a64a6}.tox .tox-notification--info svg{fill:#222f3e}.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#eee transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #eee transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #eee transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #eee;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#fff;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #eee;border-radius:6px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#006ce7;border:2px solid #0054b4;border-radius:6px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #e3e3e3;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:14px;font-weight:400;height:25px;overflow:hidden;padding:0 8px;position:relative;text-transform:none}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(34,47,62,.7);text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#222f3e;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(34,47,62,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#222f3e}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#dee0e2;border-radius:1px 1px 5px 1px;box-shadow:0 0 0 2px #dee0e2}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:6px 1px 5px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#222f3e}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#cce2fa;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:hover svg{fill:#222f3e}.tox .tox-tbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:active svg{fill:#222f3e}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#222f3e}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#222f3e}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:42px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:56px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:#f7f7f7;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#cce2fa}.tox .tox-number-input input{border-radius:3px;color:#222f3e;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#cce2fa;color:#222f3e}.tox .tox-number-input input:focus{background:#fff;color:#222f3e}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button{background:#f7f7f7;color:#222f3e;height:28px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#222f3e;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#cce2fa}.tox .tox-number-input button:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:hover svg{fill:#222f3e}.tox .tox-number-input button:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:active svg{fill:#222f3e}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#cce2fa}.tox .tox-tbtn--select{margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--bespoke{background:#f7f7f7}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:4px}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:6px 1px 5px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #cce2fa inset}.tox .tox-split-button:focus{background:#cce2fa;box-shadow:none;color:#222f3e}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(34,47,62,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#fff}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#fff;background-image:repeating-linear-gradient(#e3e3e3 0 1px,transparent 1px 39px);background-position:center top 40px;background-repeat:no-repeat;background-size:calc(100% - 11px * 2) calc(100% - 41px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 11px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid transparent;margin-top:-1px;padding-bottom:1px;padding-top:1px}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 11px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 11px 0 12px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid transparent}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid transparent}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#222f3e;border-radius:6px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#222f3e}.tox .tox-tree .tox-trbtn:focus{background:#cce2fa;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:active svg{fill:#222f3e}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#fff;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #eee;border-radius:6px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #eee;border-radius:6px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #eee;border-radius:6px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:\"\";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}")
//# sourceMappingURL=skin.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/content.inline.js000064400000056016151213255260022342 0ustar00tinymce.Resource.add('ui/default/content.inline.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}")
//# sourceMappingURL=content.inline.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/content.min.css000064400000055701151213255260022023 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/skin.min.css000064400000227717151213255260021325 0ustar00.tox{box-shadow:none;box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:2px solid #eee;border-radius:10px;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#fff;border:2px solid #eee;border-radius:10px;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:6px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(0,101,216,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#006ce7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#0060ce}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#0054b4}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.08);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#8f5d00}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#c00}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#c00}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#527530}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#527530}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#eee;border-radius:10px;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#006ce7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#006ce7;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:6px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #006ce7,0 0 0 3px rgba(0,108,231,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#006ce7;background-image:none;border-color:#006ce7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#003c81;background-image:none;border-color:#003c81;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#f0f0f0;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#7daee4;background-image:none;border-color:#7daee4;box-shadow:none;color:#222f3e}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked[disabled]{background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:rgba(34,47,62,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked:focus:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked:active:not(:disabled){background-color:rgba(34,47,62,.18);border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}.tox .tox-checkbox{align-items:center;border-radius:6px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:6px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,.3)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#006ce7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#006ce7}.tox .tox-checkbox--disabled{color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(34,47,62,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(34,47,62,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:6px;box-shadow:inset 0 0 0 1px #006ce7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#e3e3e3;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#fcfcfc;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#222f3e;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#fff;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active{background-color:#cce2fa}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#a6ccf7;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#cce2fa}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#a6ccf7;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#cce2fa;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(34,47,62,.7);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#222f3e}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(34,47,62,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#fff;border:1px solid #e3e3e3;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:28px;margin:6px 1px 5px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid transparent}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid transparent}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:5px 0 6px 11px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px -4px}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#222f3e;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#cce2fa}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#222f3e;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#fff;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#222f3e;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(34,47,62,.7)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#222f3e;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#fff}.tox .tox-dialog{background-color:#fff;border-color:#eee;border-radius:10px;border-style:solid;border-width:0;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(0,108,231,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #006ce7;color:#006ce7}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#006ce7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#003c81;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #006ce7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#00244e;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#222f3e}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#222f3e;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#222f3e;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:none;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #626262}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #eee;border-radius:6px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #eee;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #2d6adf;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #eee}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#fff;border-bottom:none;box-shadow:0 2px 2px -2px rgba(34,47,62,.1),0 8px 8px -4px rgba(34,47,62,.07);padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #e3e3e3;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#fff;box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#006ce7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(0,0,0,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(0,0,0,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #fff;border-radius:6px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#006ce7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#222f3e}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#222f3e}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 2px rgba(0,108,231,.25);outline:0}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#eee;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(0,108,231,.5);border-color:rgba(0,108,231,.5)}.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#fff;border:1px solid transparent;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 4px}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:8px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:8px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 11px 0 12px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:5px 1px 6px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn--active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#e4eeda;border-color:#d7e6c8;color:#222f3e}.tox .tox-notification--success p{color:#222f3e}.tox .tox-notification--success a{color:#517342}.tox .tox-notification--success svg{fill:#222f3e}.tox .tox-notification--error{background-color:#f5cccc;border-color:#f0b3b3;color:#222f3e}.tox .tox-notification--error p{color:#222f3e}.tox .tox-notification--error a{color:#77181f}.tox .tox-notification--error svg{fill:#222f3e}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#fff5cc;border-color:#fff0b3;color:#222f3e}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#222f3e}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#7a6e25}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#222f3e}.tox .tox-notification--info{background-color:#d6e7fb;border-color:#c1dbf9;color:#222f3e}.tox .tox-notification--info p{color:#222f3e}.tox .tox-notification--info a{color:#2a64a6}.tox .tox-notification--info svg{fill:#222f3e}.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#eee transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #eee transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #eee transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #eee;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#fff;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #eee;border-radius:6px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#006ce7;border:2px solid #0054b4;border-radius:6px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #e3e3e3;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:14px;font-weight:400;height:25px;overflow:hidden;padding:0 8px;position:relative;text-transform:none}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(34,47,62,.7);text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#222f3e;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(34,47,62,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#222f3e}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#dee0e2;border-radius:1px 1px 5px 1px;box-shadow:0 0 0 2px #dee0e2}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:6px 1px 5px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#222f3e}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#cce2fa;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:hover svg{fill:#222f3e}.tox .tox-tbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:active svg{fill:#222f3e}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#222f3e}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#222f3e}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:42px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:56px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:#f7f7f7;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#cce2fa}.tox .tox-number-input input{border-radius:3px;color:#222f3e;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#cce2fa;color:#222f3e}.tox .tox-number-input input:focus{background:#fff;color:#222f3e}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button{background:#f7f7f7;color:#222f3e;height:28px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#222f3e;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#cce2fa}.tox .tox-number-input button:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:hover svg{fill:#222f3e}.tox .tox-number-input button:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:active svg{fill:#222f3e}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(34,47,62,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#cce2fa}.tox .tox-tbtn--select{margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn--bespoke{background:#f7f7f7}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:4px}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:6px 1px 5px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #cce2fa inset}.tox .tox-split-button:focus{background:#cce2fa;box-shadow:none;color:#222f3e}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(34,47,62,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#fff}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#fff;background-image:repeating-linear-gradient(#e3e3e3 0 1px,transparent 1px 39px);background-position:center top 40px;background-repeat:no-repeat;background-size:calc(100% - 11px * 2) calc(100% - 41px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 11px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid transparent;margin-top:-1px;padding-bottom:1px;padding-top:1px}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 11px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 11px 0 12px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid transparent}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid transparent}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#222f3e;border-radius:6px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#222f3e}.tox .tox-tree .tox-trbtn:focus{background:#cce2fa;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#cce2fa;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:active svg{fill:#222f3e}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#fff;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #eee;border-radius:6px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #eee;border-radius:6px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #eee;border-radius:6px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.js000064400000001140151213255260022327 0ustar00tinymce.Resource.add('ui/default/skin.shadowdom.css', "body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}")
//# sourceMappingURL=skin.shadowdom.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css000064400000055606151213255260023304 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.js000064400000055275151213255260022514 0ustar00tinymce.Resource.add('ui/tinymce-5-dark/content.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%236d737b%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#f8f8f2;background:0 0;text-shadow:0 1px rgba(0,0,0,.3);font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border-radius:.3em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#282a36}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#6272a4}.token.punctuation{color:#f8f8f2}.namespace{opacity:.7}.token.constant,.token.deleted,.token.property,.token.symbol,.token.tag{color:#ff79c6}.token.boolean,.token.number{color:#bd93f9}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#50fa7b}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url,.token.variable{color:#f8f8f2}.token.atrule,.token.attr-value,.token.class-name,.token.function{color:#f1fa8c}.token.keyword{color:#8be9fd}.token.important,.token.regex{color:#ffb86c}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.3)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.3);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #4099ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #4099ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #4099ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #4099ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #4099ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#4099ff}.mce-content-body .mce-edit-focus{outline:3px solid #4099ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid transparent;bottom:-1px;content:'';left:-1px;mix-blend-mode:lighten;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#4099ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css000064400000000774151213255260024722 0ustar00body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.js000064400000235045151213255260022001 0ustar00tinymce.Resource.add('ui/tinymce-5-dark/skin.css', ".tox{box-shadow:none;box-sizing:content-box;color:#2a3746;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:1px solid #000;border-radius:0;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#222f3e;border:1px solid #000;border-radius:0;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:3px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(30,113,170,.4);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#207ab7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#1c6ca1}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#185d8c}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#000;border-radius:0;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#207ab7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#207ab7;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:3px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #207ab7,0 0 0 3px rgba(32,122,183,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#207ab7;background-image:none;border-color:#207ab7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#114060;background-image:none;border-color:#114060;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#3d546f;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#3d546f;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;color:#fff;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#3d546f;background-image:none;border-color:#3d546f;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:hover:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:active:not(:disabled){background-color:#2b3b4e;background-image:none;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#264560;background-image:none;border-color:#264560;box-shadow:none;color:#fff}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked[disabled]{background-color:#3d546f;border-color:#3d546f;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:focus:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:active:not(:disabled){background-color:#2b3b4e;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#fff}.tox .tox-checkbox{align-items:center;border-radius:3px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:3px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(255,255,255,.2)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#207ab7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#207ab7}.tox .tox-checkbox--disabled{color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(255,255,255,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:3px;box-shadow:inset 0 0 0 1px #207ab7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#1a1a1a;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#333;color:#fff;cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#fff;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#2b3b4e;color:#fff}.tox .tox-collection--list .tox-collection__item--active{background-color:#4a5562}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#757d87;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#4a5562}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#757d87;color:#fff}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#4a5562;color:#fff}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(255,255,255,.5);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#fff}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(255,255,255,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#2b3b4e;border:1px solid #1a1a1a;border-radius:3px;box-shadow:0 0 2px 0 rgba(42,55,70,.2),0 4px 8px 0 rgba(42,55,70,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:34px;margin:3px 0 2px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid #000}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid #000}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:2px 0 3px 4px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px 0}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#fff;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#4a5562}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#fff;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#2b3b4e;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#2b3b4e;border:1px solid #000;border-radius:3px;box-shadow:0 4px 8px 0 rgba(42,55,70,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#fff;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#fff;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#fff;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(255,255,255,.5);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#2b3b4e;bottom:0;content:\"\";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(43,59,78,0),#2b3b4e);bottom:0;content:\"\";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#2b3b4e;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#fff;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#2b3b4e;box-shadow:0 0 8px 8px #2b3b4e;color:#fff;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#2b3b4e;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(255,255,255,.5)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#fff;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(34,47,62,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#222f3e}.tox .tox-dialog{background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:0 16px 16px -10px rgba(42,55,70,.15),0 0 40px 1px rgba(42,55,70,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#2b3b4e;border-bottom:none;color:#fff;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#fff;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(255,255,255,.5);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(32,122,183,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #207ab7;color:#207ab7}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#207ab7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#114060;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #207ab7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#092335;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#fff}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#fff;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#fff;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#2b3b4e;border-top:1px solid #000;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(34,47,62,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #000}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #000;border-radius:3px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #000;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(255,255,255,.5);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #2d6adf;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #000}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#222f3e;border-bottom:none;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #000;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#222f3e;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(42,55,70,.2);border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#207ab7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(255,255,255,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(255,255,255,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #2b3b4e;border-radius:3px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(255,255,255,.5);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#222f3e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#207ab7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#fff}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#fff}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size=\"0\"],.tox:not([dir=rtl]) .tox-selectfield select[size=\"1\"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size=\"0\"],.tox[dir=rtl] .tox-selectfield select[size=\"1\"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#000;border-radius:3px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#000;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:0 -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(32,122,183,.5);border-color:rgba(32,122,183,.5)}.tox .tox-insert-table-picker__label{color:#fff;display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#2b3b4e;border:1px solid #000;border-radius:3px;box-shadow:0 4px 8px 0 rgba(42,55,70,.1);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 0}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:4px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:4px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:url(\"data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E\") left 0 top 0 #222f3e;background-color:#222f3e;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 4px 0 4px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:url(\"data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E\") left 0 top 0 #222f3e;background-color:#222f3e;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn--active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#334840;border-color:#3c5440;color:#fff}.tox .tox-notification--success p{color:#fff}.tox .tox-notification--success a{color:#b5d199}.tox .tox-notification--success svg{fill:#fff}.tox .tox-notification--error{background-color:#442632;border-color:#55212b;color:#fff}.tox .tox-notification--error p{color:#fff}.tox .tox-notification--error a{color:#e68080}.tox .tox-notification--error svg{fill:#fff}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#222f3e;border-color:#000;color:#fff0b3}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#fff0b3}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#fc0}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#fff0b3}.tox .tox-notification--info{background-color:#254161;border-color:#264972;color:#fff}.tox .tox-notification--info p{color:#fff}.tox .tox-notification--info a{color:#83b7f3}.tox .tox-notification--info svg{fill:#fff}.tox .tox-notification__body{align-self:center;color:#fff;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#222f3e;border:1px solid #000;border-radius:3px;box-shadow:0 0 2px 0 rgba(42,55,70,.2),0 4px 8px 0 rgba(42,55,70,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#222f3e transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#000 transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #222f3e transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #000 transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #222f3e transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #000 transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #222f3e;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #000;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#222f3e;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #000;border-radius:3px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#207ab7;border:2px solid #185d8c;border-radius:3px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(255,255,255,.5);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#222f3e;border-top:1px solid #000;color:#fff;display:flex;flex:0 0 auto;font-size:12px;font-weight:400;height:18px;overflow:hidden;padding:0 8px;position:relative;text-transform:uppercase}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:#fff;text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#fff;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(255,255,255,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#fff}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(255,255,255,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#4a5562;border-radius:1px 1px -4px 1px;box-shadow:0 0 0 2px #4a5562}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(34,47,62,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:3px 0 2px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#fff}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#4a5562;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:hover svg{fill:#fff}.tox .tox-tbtn:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:active svg{fill:#fff}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#fff}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#fff}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#fff}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:51px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:68px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:0 0;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#4a5562}.tox .tox-number-input input{border-radius:3px;color:#fff;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#4a5562;color:#fff}.tox .tox-number-input input:focus{background:#fff;color:#2a3746}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button{background:0 0;color:#fff;height:34px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#fff;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#4a5562}.tox .tox-number-input button:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:hover svg{fill:#fff}.tox .tox-number-input button:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:active svg{fill:#fff}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#4a5562}.tox .tox-tbtn--select{margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--bespoke{background:0 0}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:0}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:3px 0 2px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #4a5562 inset}.tox .tox-split-button:focus{background:#4a5562;box-shadow:none;color:#fff}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(255,255,255,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#222f3e}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#222f3e;background-image:repeating-linear-gradient(#000 0 1px,transparent 1px 39px);background-position:center top 39px;background-repeat:no-repeat;background-size:calc(100% - 4px * 2) calc(100% - 39px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 4px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid #000;margin-top:-1px;padding-bottom:0;padding-top:0}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#222f3e;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:3px;box-shadow:0 0 2px 0 rgba(42,55,70,.2),0 4px 8px 0 rgba(42,55,70,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 4px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 4px 0 4px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid #000}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid #000}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#3d546f;border-radius:3px;box-shadow:0 2px 4px rgba(42,55,70,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #3d546f;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #3d546f;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #3d546f;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #3d546f;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#fff}.tox .tox-tree .tox-trbtn:focus{background:#4a5562;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:active{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:active svg{fill:#fff}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#fff}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#222f3e;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #000;border-radius:3px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #000;border-radius:3px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #000;border-radius:3px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:\"\";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:none;padding:0}.tox.tox-tinymce--toolbar-bottom .tox-editor-header,.tox.tox-tinymce-inline .tox-editor-header{margin-bottom:-1px}.tox.tox-tinymce-inline .tox-editor-container{overflow:hidden}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:none;box-shadow:none}.tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:transparent;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:0}.tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px 0}.tox .tox-menu.tox-collection.tox-collection--list{padding:0}.tox .tox-pop{box-shadow:none}.tox .tox-number-input,.tox .tox-split-button,.tox .tox-tbtn,.tox .tox-tbtn--select{margin:2px 0 3px 0}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background:url(\"data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E\") left 0 top 0 #222f3e!important}.tox .tox-menubar+.tox-toolbar-overlord{border-top:none}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord .tox-toolbar__primary{border-top:1px solid #000;margin-top:-1px}.tox.tox-tinymce-aux .tox-toolbar__overflow{border:1px solid #000;padding:0}.tox .tox-pop .tox-pop__dialog .tox-toolbar{padding:0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar{border-top:1px solid #000}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child{border-top:1px solid #000}.tox .tox-toolbar__group{padding:0 4px 0 4px}.tox .tox-collection__item{border-radius:0;cursor:pointer}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#fff;text-decoration:underline}.tox .tox-statusbar__branding svg{vertical-align:-.25em}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:1ch}.tox .tox-statusbar__resize-handle{padding-bottom:0;padding-right:0}.tox .tox-button::before{display:none}")
//# sourceMappingURL=skin.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.js000064400000056025151213255260023763 0ustar00tinymce.Resource.add('ui/tinymce-5-dark/content.inline.css', ".mce-content-body .mce-item-anchor{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A\")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A\"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected=\"2\"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A\") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected=\"2\"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A\") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A\");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border=\"0\"],.mce-item-table[border=\"0\"] caption,.mce-item-table[border=\"0\"] td,.mce-item-table[border=\"0\"] th,table[style*=\"border-width: 0px\"],table[style*=\"border-width: 0px\"] caption,table[style*=\"border-width: 0px\"] td,table[style*=\"border-width: 0px\"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}")
//# sourceMappingURL=content.inline.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.min.css000064400000055074151213255270023450 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%236d737b%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#f8f8f2;background:0 0;text-shadow:0 1px rgba(0,0,0,.3);font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border-radius:.3em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#282a36}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#6272a4}.token.punctuation{color:#f8f8f2}.namespace{opacity:.7}.token.constant,.token.deleted,.token.property,.token.symbol,.token.tag{color:#ff79c6}.token.boolean,.token.number{color:#bd93f9}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#50fa7b}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url,.token.variable{color:#f8f8f2}.token.atrule,.token.attr-value,.token.class-name,.token.function{color:#f1fa8c}.token.keyword{color:#8be9fd}.token.important,.token.regex{color:#ffb86c}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.3)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.3);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #4099ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #4099ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #4099ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #4099ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #4099ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#4099ff}.mce-content-body .mce-edit-focus{outline:3px solid #4099ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid transparent;bottom:-1px;content:'';left:-1px;mix-blend-mode:lighten;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#4099ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.min.css000064400000234632151213255270022741 0ustar00.tox{box-shadow:none;box-sizing:content-box;color:#2a3746;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg):not(rect){background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:1px solid #000;border-radius:0;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#222f3e;border:1px solid #000;border-radius:0;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;z-index:1300}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description{align-items:stretch;border-radius:3px;display:flex;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox .accessibility-issue__repair{margin-top:16px}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:rgba(30,113,170,.4);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#207ab7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#1c6ca1}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#185d8c}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:rgba(255,165,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:rgba(204,0,0,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#2a3746}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.5);color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#fff}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg{fill:#fff}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{font-size:14px;margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:4px 4px 4px 8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .tox-advtemplate .tox-form__grid{flex:1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#000;border-radius:0;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#207ab7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#207ab7;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:3px;bottom:-1px;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #207ab7,0 0 0 3px rgba(32,122,183,.25);content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#207ab7;background-image:none;border-color:#207ab7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:focus-visible:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#154f76;background-image:none;border-color:#154f76;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#114060;background-image:none;border-color:#114060;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--secondary{background-color:#3d546f;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#3d546f;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;color:#fff;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#3d546f;background-image:none;border-color:#3d546f;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:hover:not(:disabled){background-color:#34485f;background-image:none;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--secondary:active:not(:disabled){background-color:#2b3b4e;background-image:none;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#346085;background-image:none;border-color:#346085;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#2d5373;background-image:none;border-color:#2d5373;box-shadow:none;color:#fff}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#264560;background-image:none;border-color:#264560;box-shadow:none;color:#fff}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#fff}.tox .tox-button--naked[disabled]{background-color:#3d546f;border-color:#3d546f;box-shadow:none;color:rgba(255,255,255,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:focus:not(:disabled){background-color:#34485f;border-color:#34485f;box-shadow:none;color:#fff}.tox .tox-button--naked:active:not(:disabled){background-color:#2b3b4e;border-color:#2b3b4e;box-shadow:none;color:#fff}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#fff}.tox .tox-checkbox{align-items:center;border-radius:3px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:3px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(255,255,255,.2)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#207ab7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#207ab7}.tox .tox-checkbox--disabled{color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(255,255,255,.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(255,255,255,.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:3px;box-shadow:inset 0 0 0 1px #207ab7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#1a1a1a;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#333;color:#fff;cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#fff;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:#2b3b4e;color:#fff}.tox .tox-collection--list .tox-collection__item--active{background-color:#4a5562}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#757d87;color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active{background-color:#4a5562}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#757d87;color:#fff}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#4a5562;color:#fff}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#fff}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(255,255,255,.5);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:#fff}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(255,255,255,.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#2b3b4e;border:1px solid #1a1a1a;border-radius:3px;box-shadow:0 0 2px 0 rgba(42,55,70,.2),0 4px 8px 0 rgba(42,55,70,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:34px;margin:3px 0 2px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid #000}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid #000}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:2px 0 3px 4px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px 0}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#fff;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#4a5562}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#fff;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#2b3b4e;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#2b3b4e;border:1px solid #000;border-radius:3px;box-shadow:0 4px 8px 0 rgba(42,55,70,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#fff;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#fff;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#fff;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(255,255,255,.5);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment-thread__overlay::after{background:#2b3b4e;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:16px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(43,59,78,0),#2b3b4e);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#2b3b4e;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#fff;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#2b3b4e;box-shadow:0 0 8px 8px #2b3b4e;color:#fff;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#2b3b4e;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(255,255,255,.5)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#fff;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(34,47,62,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#222f3e}.tox .tox-dialog{background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:0 16px 16px -10px rgba(42,55,70,.15),0 0 40px 1px rgba(42,55,70,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#2b3b4e;border-bottom:none;color:#fff;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#fff;display:flex;flex:1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(255,255,255,.5);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(32,122,183,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #207ab7;color:#207ab7}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#207ab7;cursor:pointer;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#114060;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #207ab7;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#092335;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#fff}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;margin-inline-end:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#fff;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#fff;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#2b3b4e;border-top:1px solid #000;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(34,47,62,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #000}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #000;border-radius:3px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #000;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(255,255,255,.5);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #2d6adf;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #000}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#222f3e;border-bottom:none;box-shadow:none;padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #000;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#222f3e;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(42,55,70,.2);border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#207ab7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(255,255,255,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(255,255,255,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(255,255,255,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #2b3b4e;border-radius:3px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(255,255,255,.5);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled]{background-color:#222f3e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#207ab7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#fff}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#fff}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#2b3b4e;border-color:#000;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#19232e;color:rgba(255,255,255,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#2b3b4e;border-color:#207ab7;box-shadow:none;outline:2px solid rgba(32,122,183,.25)}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#000;border-radius:3px;border-style:solid;border-width:1px;display:flex;flex:1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#000;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:0 -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(32,122,183,.5);border-color:rgba(32,122,183,.5)}.tox .tox-insert-table-picker__label{color:#fff;display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#2b3b4e;border:1px solid #000;border-radius:3px;box-shadow:0 4px 8px 0 rgba(42,55,70,.1);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 0}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:4px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:4px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;background-color:#222f3e;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 4px 0 4px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;background-color:#222f3e;grid-column:2;grid-row:1;padding-inline-end:8px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:transparent;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn--active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification a{cursor:pointer;text-decoration:underline}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#334840;border-color:#3c5440;color:#fff}.tox .tox-notification--success p{color:#fff}.tox .tox-notification--success a{color:#b5d199}.tox .tox-notification--success svg{fill:#fff}.tox .tox-notification--error{background-color:#442632;border-color:#55212b;color:#fff}.tox .tox-notification--error p{color:#fff}.tox .tox-notification--error a{color:#e68080}.tox .tox-notification--error svg{fill:#fff}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#222f3e;border-color:#000;color:#fff0b3}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#fff0b3}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#fc0}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#fff0b3}.tox .tox-notification--info{background-color:#254161;border-color:#264972;color:#fff}.tox .tox-notification--info p{color:#fff}.tox .tox-notification--info a{color:#83b7f3}.tox .tox-notification--info svg{fill:#fff}.tox .tox-notification__body{align-self:center;color:#fff;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#222f3e;border:1px solid #000;border-radius:3px;box-shadow:0 0 2px 0 rgba(42,55,70,.2),0 4px 8px 0 rgba(42,55,70,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#222f3e transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#000 transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #222f3e transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #000 transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #222f3e transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #000 transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #222f3e;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #000;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#222f3e;display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-slider{align-items:center;display:flex;flex:1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #000;border-radius:3px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#207ab7;border:2px solid #185d8c;border-radius:3px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{margin-inline-start:32px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(255,255,255,.5);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#222f3e;border-top:1px solid #000;color:#fff;display:flex;flex:0 0 auto;font-size:12px;font-weight:400;height:18px;overflow:hidden;padding:0 8px;position:relative;text-transform:uppercase}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:space-between;overflow:hidden}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex:0 0 calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:#fff;text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#fff;cursor:pointer}.tox .tox-statusbar__branding svg{fill:rgba(255,255,255,.8);height:1.14em;vertical-align:-.28em;width:3.6em}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#fff}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-bottom:3px;padding-left:1ch;padding-right:3px}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(255,255,255,.5)}.tox .tox-statusbar__resize-handle:focus svg{background-color:#4a5562;border-radius:1px 1px -4px 1px;box-shadow:0 0 0 2px #4a5562}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(34,47,62,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:3px 0 2px 0;outline:0;overflow:hidden;padding:0;text-transform:none;width:34px}.tox .tox-tbtn svg{display:block;fill:#fff}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#4a5562;border:0;box-shadow:none}.tox .tox-tbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:hover svg{fill:#fff}.tox .tox-tbtn:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn:active svg{fill:#fff}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:hover{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:hover svg{fill:#fff}.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#fff}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#fff}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:51px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:68px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-number-input{border-radius:3px;display:flex;margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-number-input .tox-input-wrapper{background:0 0;display:flex;pointer-events:none;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background:#4a5562}.tox .tox-number-input input{border-radius:3px;color:#fff;font-size:14px;margin:2px 0;pointer-events:all;width:60px}.tox .tox-number-input input:hover{background:#4a5562;color:#fff}.tox .tox-number-input input:focus{background:#fff;color:#2a3746}.tox .tox-number-input input:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button{background:0 0;color:#fff;height:34px;text-align:center;width:24px}.tox .tox-number-input button svg{display:block;fill:#fff;margin:0 auto;transform:scale(.67)}.tox .tox-number-input button:focus{background:#4a5562}.tox .tox-number-input button:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:hover svg{fill:#fff}.tox .tox-number-input button:active{background:#757d87;border:0;box-shadow:none;color:#fff}.tox .tox-number-input button:active svg{fill:#fff}.tox .tox-number-input button:disabled{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(255,255,255,.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#4a5562}.tox .tox-tbtn--select{margin:3px 0 2px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-tbtn--bespoke{background:0 0}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{margin-inline-start:0}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:3px 0 2px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #4a5562 inset}.tox .tox-split-button:focus{background:#4a5562;box-shadow:none;color:#fff}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(255,255,255,.5)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(255,255,255,.5)}.tox.tox-platform-touch .tox-split-button .tox-tbtn--select{padding:0 0}.tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,.tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color{opacity:.6}.tox .tox-toolbar-overlord{background-color:#222f3e}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#222f3e;background-image:repeating-linear-gradient(#000 0 1px,transparent 1px 39px);background-position:center top 39px;background-repeat:no-repeat;background-size:calc(100% - 4px * 2) calc(100% - 39px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 4px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid #000;margin-top:-1px;padding-bottom:0;padding-top:0}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#222f3e;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:3px;box-shadow:0 0 2px 0 rgba(42,55,70,.2),0 4px 8px 0 rgba(42,55,70,.15);overscroll-behavior:none;padding:4px 0}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 4px * 2) calc(100% - 51px);padding:4px 0}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 4px 0 4px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid #000}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid #000}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#3d546f;border-radius:3px;box-shadow:0 2px 4px rgba(42,55,70,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:none}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #3d546f;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #3d546f;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #3d546f;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #3d546f;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#fff;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#fff}.tox .tox-tree .tox-trbtn:focus{background:#4a5562;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#4a5562;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:active{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn:active svg{fill:#fff}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(255,255,255,.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#6ea9d0;border:0;box-shadow:none;color:#fff}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#fff}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#fff}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:unset}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#fff}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#fff}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#222f3e;display:flex;flex:1;flex-direction:column}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:8px 8px 0 8px;position:relative}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;padding:8px 8px 0 8px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;width:100%}.tox .tox-view__pane_panel{border:1px solid #000;border-radius:3px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #000;border-radius:3px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #000;border-radius:3px;display:flex;flex:1;overflow:hidden;position:relative}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:none;padding:0}.tox.tox-tinymce--toolbar-bottom .tox-editor-header,.tox.tox-tinymce-inline .tox-editor-header{margin-bottom:-1px}.tox.tox-tinymce-inline .tox-editor-container{overflow:hidden}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:none;box-shadow:none}.tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:transparent;box-shadow:0 4px 4px -3px rgba(0,0,0,.25);padding:0}.tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 4px 4px -3px rgba(0,0,0,.25)}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px 0}.tox .tox-menu.tox-collection.tox-collection--list{padding:0}.tox .tox-pop{box-shadow:none}.tox .tox-number-input,.tox .tox-split-button,.tox .tox-tbtn,.tox .tox-tbtn--select{margin:2px 0 3px 0}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e!important}.tox .tox-menubar+.tox-toolbar-overlord{border-top:none}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord .tox-toolbar__primary{border-top:1px solid #000;margin-top:-1px}.tox.tox-tinymce-aux .tox-toolbar__overflow{border:1px solid #000;padding:0}.tox .tox-pop .tox-pop__dialog .tox-toolbar{padding:0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar{border-top:1px solid #000}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,.tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child{border-top:1px solid #000}.tox .tox-toolbar__group{padding:0 4px 0 4px}.tox .tox-collection__item{border-radius:0;cursor:pointer}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#fff;text-decoration:underline}.tox .tox-statusbar__branding svg{vertical-align:-.25em}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:1ch}.tox .tox-statusbar__resize-handle{padding-bottom:0;padding-right:0}.tox .tox-button::before{display:none}
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js000064400000001147151213255270023760 0ustar00tinymce.Resource.add('ui/tinymce-5-dark/skin.shadowdom.css', "body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}")
//# sourceMappingURL=skin.shadowdom.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css000064400000055606151213255270024726 0ustar00.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center}.mce-content-body .mce-item-anchor:empty{cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor:not(:empty){background-position-x:2px;display:inline-block;padding-left:12px}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.tox-comments-visible span.tox-comment img:not([data-mce-selected]),.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment>video:not([data-mce-selected]){outline:3px solid #ffe89d}.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]){outline:3px solid #fed635}.tox-comments-visible span.tox-comment:not([data-mce-selected]){background-color:#ffe89d;outline:0}.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]){background-color:#fed635}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");cursor:pointer;height:1em;margin-left:-1.5em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{content:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:0;margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentColor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-2000000px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}div.mce-footnotes hr{margin-inline-end:auto;margin-inline-start:0;width:25%}div.mce-footnotes li>a.mce-footnotes-backlink{text-decoration:none}@media print{sup.mce-footnote a{color:#000;text-decoration:none}div.mce-footnotes{break-inside:avoid;width:100%}div.mce-footnotes li>a.mce-footnotes-backlink{display:none}}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-content-body .mce-mergetag{cursor:default!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body .mce-mergetag:hover{background-color:rgba(0,108,231,.1)}.mce-content-body .mce-mergetag-affix{background-color:rgba(0,108,231,.1);color:#006ce7}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--21by9{padding-top:42.857143%}.tiny-pageembed--16by9{padding-top:56.25%}.tiny-pageembed--4by3{padding-top:75%}.tiny-pageembed--1by1{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body[data-mce-placeholder]{position:relative}.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before{color:rgba(34,47,62,.7);content:attr(data-mce-placeholder);position:absolute}.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before{left:1px}.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before{right:1px}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:1298}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-resize-backdrop{z-index:10000}.mce-content-body .mce-clonedresizable{cursor:default;opacity:.5;outline:1px dashed #000;position:absolute;z-index:10001}.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th{border:0}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10002}.tox-rtc-user-selection{position:relative}.tox-rtc-user-cursor{bottom:0;cursor:default;position:absolute;top:0;width:2px}.tox-rtc-user-cursor::before{background-color:inherit;border-radius:50%;content:'';display:block;height:8px;position:absolute;right:-3px;top:-3px;width:8px}.tox-rtc-user-cursor:hover::after{background-color:inherit;border-radius:100px;box-sizing:border-box;color:#fff;content:attr(data-user);display:block;font-size:12px;font-weight:700;left:-5px;min-height:8px;min-width:8px;padding:0 12px;position:absolute;top:-11px;white-space:nowrap;z-index:1000}.tox-rtc-user-selection--1 .tox-rtc-user-cursor{background-color:#2dc26b}.tox-rtc-user-selection--2 .tox-rtc-user-cursor{background-color:#e03e2d}.tox-rtc-user-selection--3 .tox-rtc-user-cursor{background-color:#f1c40f}.tox-rtc-user-selection--4 .tox-rtc-user-cursor{background-color:#3598db}.tox-rtc-user-selection--5 .tox-rtc-user-cursor{background-color:#b96ad9}.tox-rtc-user-selection--6 .tox-rtc-user-cursor{background-color:#e67e23}.tox-rtc-user-selection--7 .tox-rtc-user-cursor{background-color:#aaa69d}.tox-rtc-user-selection--8 .tox-rtc-user-cursor{background-color:#f368e0}.tox-rtc-remote-image{background:#eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;border:1px solid #ccc;min-height:240px;min-width:320px}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-match-marker-selected::-moz-selection{background:#39f;color:#fff}.mce-match-marker-selected::selection{background:#39f;color:#fff}.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{position:relative}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{outline:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{background-color:rgba(180,215,255,.7);border:1px solid rgba(180,215,255,.7);bottom:-1px;content:'';left:-1px;mix-blend-mode:multiply;position:absolute;right:-1px;top:-1px}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after{border-color:rgba(0,84,180,.7)}}.mce-content-body img[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body img[data-mce-selected]::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc ul>li{list-style-type:none}[data-mce-block]{display:block}.mce-item-table:not([border]),.mce-item-table:not([border]) caption,.mce-item-table:not([border]) td,.mce-item-table:not([border]) th,.mce-item-table[border="0"],.mce-item-table[border="0"] caption,.mce-item-table[border="0"] td,.mce-item-table[border="0"] th,table[style*="border-width: 0px"],table[style*="border-width: 0px"] caption,table[style*="border-width: 0px"] td,table[style*="border-width: 0px"] th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-visualblocks:not([dir=rtl]) address,.mce-visualblocks:not([dir=rtl]) article,.mce-visualblocks:not([dir=rtl]) aside,.mce-visualblocks:not([dir=rtl]) blockquote,.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-visualblocks:not([dir=rtl]) dl,.mce-visualblocks:not([dir=rtl]) figcaption,.mce-visualblocks:not([dir=rtl]) figure,.mce-visualblocks:not([dir=rtl]) h1,.mce-visualblocks:not([dir=rtl]) h2,.mce-visualblocks:not([dir=rtl]) h3,.mce-visualblocks:not([dir=rtl]) h4,.mce-visualblocks:not([dir=rtl]) h5,.mce-visualblocks:not([dir=rtl]) h6,.mce-visualblocks:not([dir=rtl]) hgroup,.mce-visualblocks:not([dir=rtl]) ol,.mce-visualblocks:not([dir=rtl]) p,.mce-visualblocks:not([dir=rtl]) pre,.mce-visualblocks:not([dir=rtl]) section,.mce-visualblocks:not([dir=rtl]) ul{margin-left:3px}.mce-visualblocks[dir=rtl] address,.mce-visualblocks[dir=rtl] article,.mce-visualblocks[dir=rtl] aside,.mce-visualblocks[dir=rtl] blockquote,.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-visualblocks[dir=rtl] dl,.mce-visualblocks[dir=rtl] figcaption,.mce-visualblocks[dir=rtl] figure,.mce-visualblocks[dir=rtl] h1,.mce-visualblocks[dir=rtl] h2,.mce-visualblocks[dir=rtl] h3,.mce-visualblocks[dir=rtl] h4,.mce-visualblocks[dir=rtl] h5,.mce-visualblocks[dir=rtl] h6,.mce-visualblocks[dir=rtl] hgroup,.mce-visualblocks[dir=rtl] ol,.mce-visualblocks[dir=rtl] p,.mce-visualblocks[dir=rtl] pre,.mce-visualblocks[dir=rtl] section,.mce-visualblocks[dir=rtl] ul{background-position-x:right;margin-right:3px}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}
admin/assets/vendor/tinymce/js/tinymce/skins/content/tinymce-5/content.js000064400000002346151213255270022622 0ustar00tinymce.Resource.add('content/tinymce-5/content.css', "body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/content/tinymce-5/content.min.css000064400000002175151213255270023560 0ustar00body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
admin/assets/vendor/tinymce/js/tinymce/skins/content/writer/content.js000064400000002370151213255270022321 0ustar00tinymce.Resource.add('content/writer/content.css', "body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem auto;max-width:900px}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/content/writer/content.min.css000064400000002222151213255270023253 0ustar00body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem auto;max-width:900px}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
admin/assets/vendor/tinymce/js/tinymce/skins/content/dark/content.js000064400000002444151213255300021722 0ustar00tinymce.Resource.add('content/dark/content.css', "body{background-color:#222f3e;color:#fff;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/content/dark/content.min.css000064400000002300151213255300022647 0ustar00body{background-color:#222f3e;color:#fff;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}
admin/assets/vendor/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.js000064400000002461151213255300023531 0ustar00tinymce.Resource.add('content/tinymce-5-dark/content.css', "body{background-color:#2f3742;color:#dfe0e4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.min.css000064400000002303151213255300024462 0ustar00body{background-color:#2f3742;color:#dfe0e4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}
admin/assets/vendor/tinymce/js/tinymce/skins/content/document/content.js000064400000002510151213255300022611 0ustar00tinymce.Resource.add('content/document/content.css', "@media screen{html{background:#f4f4f4;min-height:100%}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#ccc}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/content/document/content.min.css000064400000002340151213255300023550 0ustar00@media screen{html{background:#f4f4f4;min-height:100%}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
admin/assets/vendor/tinymce/js/tinymce/skins/content/default/content.js000064400000002344151213255300022424 0ustar00tinymce.Resource.add('content/default/content.css', "body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}")
//# sourceMappingURL=content.js.map
admin/assets/vendor/tinymce/js/tinymce/skins/content/default/content.min.css000064400000002175151213255300023364 0ustar00body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
admin/assets/vendor/tinymce/js/tinymce/themes/silver/theme.min.js000064400001437701151213255300021214 0ustar00/**
 * TinyMCE version 6.8.3 (2024-02-08)
 */
!function(){"use strict";const e=Object.getPrototypeOf,t=(e,t,o)=>{var n;return!!o(e,t.prototype)||(null===(n=e.constructor)||void 0===n?void 0:n.name)===t.name},o=e=>o=>(e=>{const o=typeof e;return null===e?"null":"object"===o&&Array.isArray(e)?"array":"object"===o&&t(e,String,((e,t)=>t.isPrototypeOf(e)))?"string":o})(o)===e,n=e=>t=>typeof t===e,s=e=>t=>e===t,r=o("string"),a=o("object"),i=o=>((o,n)=>a(o)&&t(o,n,((t,o)=>e(t)===o)))(o,Object),l=o("array"),c=s(null),d=n("boolean"),u=s(void 0),m=e=>null==e,g=e=>!m(e),p=n("function"),h=n("number"),f=(e,t)=>{if(l(e)){for(let o=0,n=e.length;o<n;++o)if(!t(e[o]))return!1;return!0}return!1},b=()=>{},v=e=>()=>e(),y=(e,t)=>(...o)=>e(t.apply(null,o)),x=e=>()=>e,w=e=>e,S=(e,t)=>e===t;function k(e,...t){return(...o)=>{const n=t.concat(o);return e.apply(null,n)}}const C=e=>t=>!e(t),O=e=>()=>{throw new Error(e)},_=e=>e(),T=x(!1),E=x(!0);class A{constructor(e,t){this.tag=e,this.value=t}static some(e){return new A(!0,e)}static none(){return A.singletonNone}fold(e,t){return this.tag?t(this.value):e()}isSome(){return this.tag}isNone(){return!this.tag}map(e){return this.tag?A.some(e(this.value)):A.none()}bind(e){return this.tag?e(this.value):A.none()}exists(e){return this.tag&&e(this.value)}forall(e){return!this.tag||e(this.value)}filter(e){return!this.tag||e(this.value)?this:A.none()}getOr(e){return this.tag?this.value:e}or(e){return this.tag?this:e}getOrThunk(e){return this.tag?this.value:e()}orThunk(e){return this.tag?this:e()}getOrDie(e){if(this.tag)return this.value;throw new Error(null!=e?e:"Called getOrDie on None")}static from(e){return g(e)?A.some(e):A.none()}getOrNull(){return this.tag?this.value:null}getOrUndefined(){return this.value}each(e){this.tag&&e(this.value)}toArray(){return this.tag?[this.value]:[]}toString(){return this.tag?`some(${this.value})`:"none()"}}A.singletonNone=new A(!1);const M=Array.prototype.slice,D=Array.prototype.indexOf,B=Array.prototype.push,I=(e,t)=>D.call(e,t),F=(e,t)=>{const o=I(e,t);return-1===o?A.none():A.some(o)},R=(e,t)=>I(e,t)>-1,N=(e,t)=>{for(let o=0,n=e.length;o<n;o++)if(t(e[o],o))return!0;return!1},V=(e,t)=>{const o=[];for(let n=0;n<e;n++)o.push(t(n));return o},z=(e,t)=>{const o=[];for(let n=0;n<e.length;n+=t){const s=M.call(e,n,n+t);o.push(s)}return o},L=(e,t)=>{const o=e.length,n=new Array(o);for(let s=0;s<o;s++){const o=e[s];n[s]=t(o,s)}return n},H=(e,t)=>{for(let o=0,n=e.length;o<n;o++)t(e[o],o)},P=(e,t)=>{const o=[],n=[];for(let s=0,r=e.length;s<r;s++){const r=e[s];(t(r,s)?o:n).push(r)}return{pass:o,fail:n}},U=(e,t)=>{const o=[];for(let n=0,s=e.length;n<s;n++){const s=e[n];t(s,n)&&o.push(s)}return o},W=(e,t,o)=>(((e,t)=>{for(let o=e.length-1;o>=0;o--)t(e[o],o)})(e,((e,n)=>{o=t(o,e,n)})),o),j=(e,t,o)=>(H(e,((e,n)=>{o=t(o,e,n)})),o),G=(e,t)=>((e,t,o)=>{for(let n=0,s=e.length;n<s;n++){const s=e[n];if(t(s,n))return A.some(s);if(o(s,n))break}return A.none()})(e,t,T),$=(e,t)=>{for(let o=0,n=e.length;o<n;o++)if(t(e[o],o))return A.some(o);return A.none()},q=e=>{const t=[];for(let o=0,n=e.length;o<n;++o){if(!l(e[o]))throw new Error("Arr.flatten item "+o+" was not an array, input: "+e);B.apply(t,e[o])}return t},Y=(e,t)=>q(L(e,t)),X=(e,t)=>{for(let o=0,n=e.length;o<n;++o)if(!0!==t(e[o],o))return!1;return!0},K=e=>{const t=M.call(e,0);return t.reverse(),t},J=(e,t)=>U(e,(e=>!R(t,e))),Z=(e,t)=>{const o={};for(let n=0,s=e.length;n<s;n++){const s=e[n];o[String(s)]=t(s,n)}return o},Q=e=>[e],ee=(e,t)=>{const o=M.call(e,0);return o.sort(t),o},te=(e,t)=>t>=0&&t<e.length?A.some(e[t]):A.none(),oe=e=>te(e,0),ne=e=>te(e,e.length-1),se=p(Array.from)?Array.from:e=>M.call(e),re=(e,t)=>{for(let o=0;o<e.length;o++){const n=t(e[o],o);if(n.isSome())return n}return A.none()},ae=Object.keys,ie=Object.hasOwnProperty,le=(e,t)=>{const o=ae(e);for(let n=0,s=o.length;n<s;n++){const s=o[n];t(e[s],s)}},ce=(e,t)=>de(e,((e,o)=>({k:o,v:t(e,o)}))),de=(e,t)=>{const o={};return le(e,((e,n)=>{const s=t(e,n);o[s.k]=s.v})),o},ue=e=>(t,o)=>{e[o]=t},me=(e,t,o,n)=>{le(e,((e,s)=>{(t(e,s)?o:n)(e,s)}))},ge=(e,t)=>{const o={};return me(e,t,ue(o),b),o},pe=(e,t)=>{const o=[];return le(e,((e,n)=>{o.push(t(e,n))})),o},he=(e,t)=>{const o=ae(e);for(let n=0,s=o.length;n<s;n++){const s=o[n],r=e[s];if(t(r,s,e))return A.some(r)}return A.none()},fe=e=>pe(e,w),be=(e,t)=>ve(e,t)?A.from(e[t]):A.none(),ve=(e,t)=>ie.call(e,t),ye=(e,t)=>ve(e,t)&&void 0!==e[t]&&null!==e[t],xe=(e,t,o=S)=>e.exists((e=>o(e,t))),we=e=>{const t=[],o=e=>{t.push(e)};for(let t=0;t<e.length;t++)e[t].each(o);return t},Se=(e,t,o)=>e.isSome()&&t.isSome()?A.some(o(e.getOrDie(),t.getOrDie())):A.none(),ke=(e,t)=>null!=e?A.some(t(e)):A.none(),Ce=(e,t)=>e?A.some(t):A.none(),Oe=(e,t,o)=>""===t||e.length>=t.length&&e.substr(o,o+t.length)===t,_e=(e,t)=>Ee(e,t)?((e,t)=>e.substring(t))(e,t.length):e,Te=(e,t,o=0,n)=>{const s=e.indexOf(t,o);return-1!==s&&(!!u(n)||s+t.length<=n)},Ee=(e,t)=>Oe(e,t,0),Ae=(e,t)=>Oe(e,t,e.length-t.length),Me=(Mo=/^\s+|\s+$/g,e=>e.replace(Mo,"")),De=e=>e.length>0,Be=e=>!De(e),Ie=e=>void 0!==e.style&&p(e.style.getPropertyValue),Fe=e=>{if(null==e)throw new Error("Node cannot be null or undefined");return{dom:e}},Re=(e,t)=>{const o=(t||document).createElement("div");if(o.innerHTML=e,!o.hasChildNodes()||o.childNodes.length>1){const t="HTML does not have a single root node";throw console.error(t,e),new Error(t)}return Fe(o.childNodes[0])},Ne=(e,t)=>{const o=(t||document).createElement(e);return Fe(o)},Ve=(e,t)=>{const o=(t||document).createTextNode(e);return Fe(o)},ze=Fe,Le="undefined"!=typeof window?window:Function("return this;")(),He=(e,t)=>((e,t)=>{let o=null!=t?t:Le;for(let t=0;t<e.length&&null!=o;++t)o=o[e[t]];return o})(e.split("."),t),Pe=Object.getPrototypeOf,Ue=e=>{const t=He("ownerDocument.defaultView",e);return a(e)&&((e=>((e,t)=>{const o=((e,t)=>He(e,t))(e,t);if(null==o)throw new Error(e+" not available on this browser");return o})("HTMLElement",e))(t).prototype.isPrototypeOf(e)||/^HTML\w*Element$/.test(Pe(e).constructor.name))},We=e=>e.dom.nodeName.toLowerCase(),je=e=>t=>(e=>e.dom.nodeType)(t)===e,Ge=e=>$e(e)&&Ue(e.dom),$e=je(1),qe=je(3),Ye=je(9),Xe=je(11),Ke=e=>t=>$e(t)&&We(t)===e,Je=(e,t)=>{const o=e.dom;if(1!==o.nodeType)return!1;{const e=o;if(void 0!==e.matches)return e.matches(t);if(void 0!==e.msMatchesSelector)return e.msMatchesSelector(t);if(void 0!==e.webkitMatchesSelector)return e.webkitMatchesSelector(t);if(void 0!==e.mozMatchesSelector)return e.mozMatchesSelector(t);throw new Error("Browser lacks native selectors")}},Ze=e=>1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType||0===e.childElementCount,Qe=(e,t)=>e.dom===t.dom,et=(e,t)=>{const o=e.dom,n=t.dom;return o!==n&&o.contains(n)},tt=e=>ze(e.dom.ownerDocument),ot=e=>Ye(e)?e:tt(e),nt=e=>ze(ot(e).dom.documentElement),st=e=>ze(ot(e).dom.defaultView),rt=e=>A.from(e.dom.parentNode).map(ze),at=e=>A.from(e.dom.parentElement).map(ze),it=e=>A.from(e.dom.offsetParent).map(ze),lt=e=>L(e.dom.childNodes,ze),ct=(e,t)=>{const o=e.dom.childNodes;return A.from(o[t]).map(ze)},dt=e=>ct(e,0),ut=(e,t)=>({element:e,offset:t}),mt=(e,t)=>{const o=lt(e);return o.length>0&&t<o.length?ut(o[t],0):ut(e,t)},gt=e=>Xe(e)&&g(e.dom.host),pt=p(Element.prototype.attachShadow)&&p(Node.prototype.getRootNode),ht=x(pt),ft=pt?e=>ze(e.dom.getRootNode()):ot,bt=e=>gt(e)?e:ze(ot(e).dom.body),vt=e=>{const t=ft(e);return gt(t)?A.some(t):A.none()},yt=e=>ze(e.dom.host),xt=e=>{const t=qe(e)?e.dom.parentNode:e.dom;if(null==t||null===t.ownerDocument)return!1;const o=t.ownerDocument;return vt(ze(t)).fold((()=>o.body.contains(t)),(n=xt,s=yt,e=>n(s(e))));var n,s},wt=()=>St(ze(document)),St=e=>{const t=e.dom.body;if(null==t)throw new Error("Body is not available yet");return ze(t)},kt=(e,t,o)=>{if(!(r(o)||d(o)||h(o)))throw console.error("Invalid call to Attribute.set. Key ",t,":: Value ",o,":: Element ",e),new Error("Attribute value was not simple");e.setAttribute(t,o+"")},Ct=(e,t,o)=>{kt(e.dom,t,o)},Ot=(e,t)=>{const o=e.dom;le(t,((e,t)=>{kt(o,t,e)}))},_t=(e,t)=>{const o=e.dom.getAttribute(t);return null===o?void 0:o},Tt=(e,t)=>A.from(_t(e,t)),Et=(e,t)=>{const o=e.dom;return!(!o||!o.hasAttribute)&&o.hasAttribute(t)},At=(e,t)=>{e.dom.removeAttribute(t)},Mt=(e,t,o)=>{if(!r(o))throw console.error("Invalid call to CSS.set. Property ",t,":: Value ",o,":: Element ",e),new Error("CSS value must be a string: "+o);Ie(e)&&e.style.setProperty(t,o)},Dt=(e,t)=>{Ie(e)&&e.style.removeProperty(t)},Bt=(e,t,o)=>{const n=e.dom;Mt(n,t,o)},It=(e,t)=>{const o=e.dom;le(t,((e,t)=>{Mt(o,t,e)}))},Ft=(e,t)=>{const o=e.dom;le(t,((e,t)=>{e.fold((()=>{Dt(o,t)}),(e=>{Mt(o,t,e)}))}))},Rt=(e,t)=>{const o=e.dom,n=window.getComputedStyle(o).getPropertyValue(t);return""!==n||xt(e)?n:Nt(o,t)},Nt=(e,t)=>Ie(e)?e.style.getPropertyValue(t):"",Vt=(e,t)=>{const o=e.dom,n=Nt(o,t);return A.from(n).filter((e=>e.length>0))},zt=e=>{const t={},o=e.dom;if(Ie(o))for(let e=0;e<o.style.length;e++){const n=o.style.item(e);t[n]=o.style[n]}return t},Lt=(e,t,o)=>{const n=Ne(e);return Bt(n,t,o),Vt(n,t).isSome()},Ht=(e,t)=>{const o=e.dom;Dt(o,t),xe(Tt(e,"style").map(Me),"")&&At(e,"style")},Pt=e=>e.dom.offsetWidth,Ut=(e,t)=>{const o=o=>{const n=t(o);if(n<=0||null===n){const t=Rt(o,e);return parseFloat(t)||0}return n},n=(e,t)=>j(t,((t,o)=>{const n=Rt(e,o),s=void 0===n?0:parseInt(n,10);return isNaN(s)?t:t+s}),0);return{set:(t,o)=>{if(!h(o)&&!o.match(/^[0-9]+$/))throw new Error(e+".set accepts only positive integer values. Value was "+o);const n=t.dom;Ie(n)&&(n.style[e]=o+"px")},get:o,getOuter:o,aggregate:n,max:(e,t,o)=>{const s=n(e,o);return t>s?t-s:0}}},Wt=Ut("height",(e=>{const t=e.dom;return xt(e)?t.getBoundingClientRect().height:t.offsetHeight})),jt=e=>Wt.get(e),Gt=e=>Wt.getOuter(e),$t=(e,t)=>({left:e,top:t,translate:(o,n)=>$t(e+o,t+n)}),qt=$t,Yt=(e,t)=>void 0!==e?e:void 0!==t?t:0,Xt=e=>{const t=e.dom.ownerDocument,o=t.body,n=t.defaultView,s=t.documentElement;if(o===e.dom)return qt(o.offsetLeft,o.offsetTop);const r=Yt(null==n?void 0:n.pageYOffset,s.scrollTop),a=Yt(null==n?void 0:n.pageXOffset,s.scrollLeft),i=Yt(s.clientTop,o.clientTop),l=Yt(s.clientLeft,o.clientLeft);return Kt(e).translate(a-l,r-i)},Kt=e=>{const t=e.dom,o=t.ownerDocument.body;return o===t?qt(o.offsetLeft,o.offsetTop):xt(e)?(e=>{const t=e.getBoundingClientRect();return qt(t.left,t.top)})(t):qt(0,0)},Jt=Ut("width",(e=>e.dom.offsetWidth)),Zt=e=>Jt.get(e),Qt=e=>Jt.getOuter(e),eo=e=>{let t,o=!1;return(...n)=>(o||(o=!0,t=e.apply(null,n)),t)},to=()=>oo(0,0),oo=(e,t)=>({major:e,minor:t}),no={nu:oo,detect:(e,t)=>{const o=String(t).toLowerCase();return 0===e.length?to():((e,t)=>{const o=((e,t)=>{for(let o=0;o<e.length;o++){const n=e[o];if(n.test(t))return n}})(e,t);if(!o)return{major:0,minor:0};const n=e=>Number(t.replace(o,"$"+e));return oo(n(1),n(2))})(e,o)},unknown:to},so=(e,t)=>{const o=String(t).toLowerCase();return G(e,(e=>e.search(o)))},ro=/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,ao=e=>t=>Te(t,e),io=[{name:"Edge",versionRegexes:[/.*?edge\/ ?([0-9]+)\.([0-9]+)$/],search:e=>Te(e,"edge/")&&Te(e,"chrome")&&Te(e,"safari")&&Te(e,"applewebkit")},{name:"Chromium",brand:"Chromium",versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/,ro],search:e=>Te(e,"chrome")&&!Te(e,"chromeframe")},{name:"IE",versionRegexes:[/.*?msie\ ?([0-9]+)\.([0-9]+).*/,/.*?rv:([0-9]+)\.([0-9]+).*/],search:e=>Te(e,"msie")||Te(e,"trident")},{name:"Opera",versionRegexes:[ro,/.*?opera\/([0-9]+)\.([0-9]+).*/],search:ao("opera")},{name:"Firefox",versionRegexes:[/.*?firefox\/\ ?([0-9]+)\.([0-9]+).*/],search:ao("firefox")},{name:"Safari",versionRegexes:[ro,/.*?cpu os ([0-9]+)_([0-9]+).*/],search:e=>(Te(e,"safari")||Te(e,"mobile/"))&&Te(e,"applewebkit")}],lo=[{name:"Windows",search:ao("win"),versionRegexes:[/.*?windows\ nt\ ?([0-9]+)\.([0-9]+).*/]},{name:"iOS",search:e=>Te(e,"iphone")||Te(e,"ipad"),versionRegexes:[/.*?version\/\ ?([0-9]+)\.([0-9]+).*/,/.*cpu os ([0-9]+)_([0-9]+).*/,/.*cpu iphone os ([0-9]+)_([0-9]+).*/]},{name:"Android",search:ao("android"),versionRegexes:[/.*?android\ ?([0-9]+)\.([0-9]+).*/]},{name:"macOS",search:ao("mac os x"),versionRegexes:[/.*?mac\ os\ x\ ?([0-9]+)_([0-9]+).*/]},{name:"Linux",search:ao("linux"),versionRegexes:[]},{name:"Solaris",search:ao("sunos"),versionRegexes:[]},{name:"FreeBSD",search:ao("freebsd"),versionRegexes:[]},{name:"ChromeOS",search:ao("cros"),versionRegexes:[/.*?chrome\/([0-9]+)\.([0-9]+).*/]}],co={browsers:x(io),oses:x(lo)},uo="Edge",mo="Chromium",go="Opera",po="Firefox",ho="Safari",fo=e=>{const t=e.current,o=e.version,n=e=>()=>t===e;return{current:t,version:o,isEdge:n(uo),isChromium:n(mo),isIE:n("IE"),isOpera:n(go),isFirefox:n(po),isSafari:n(ho)}},bo=()=>fo({current:void 0,version:no.unknown()}),vo=fo,yo=(x(uo),x(mo),x("IE"),x(go),x(po),x(ho),"Windows"),xo="Android",wo="Linux",So="macOS",ko="Solaris",Co="FreeBSD",Oo="ChromeOS",_o=e=>{const t=e.current,o=e.version,n=e=>()=>t===e;return{current:t,version:o,isWindows:n(yo),isiOS:n("iOS"),isAndroid:n(xo),isMacOS:n(So),isLinux:n(wo),isSolaris:n(ko),isFreeBSD:n(Co),isChromeOS:n(Oo)}},To=()=>_o({current:void 0,version:no.unknown()}),Eo=_o,Ao=(x(yo),x("iOS"),x(xo),x(wo),x(So),x(ko),x(Co),x(Oo),e=>window.matchMedia(e).matches);var Mo;let Do=eo((()=>((e,t,o)=>{const n=co.browsers(),s=co.oses(),r=t.bind((e=>((e,t)=>re(t.brands,(t=>{const o=t.brand.toLowerCase();return G(e,(e=>{var t;return o===(null===(t=e.brand)||void 0===t?void 0:t.toLowerCase())})).map((e=>({current:e.name,version:no.nu(parseInt(t.version,10),0)})))})))(n,e))).orThunk((()=>((e,t)=>so(e,t).map((e=>{const o=no.detect(e.versionRegexes,t);return{current:e.name,version:o}})))(n,e))).fold(bo,vo),a=((e,t)=>so(e,t).map((e=>{const o=no.detect(e.versionRegexes,t);return{current:e.name,version:o}})))(s,e).fold(To,Eo),i=((e,t,o,n)=>{const s=e.isiOS()&&!0===/ipad/i.test(o),r=e.isiOS()&&!s,a=e.isiOS()||e.isAndroid(),i=a||n("(pointer:coarse)"),l=s||!r&&a&&n("(min-device-width:768px)"),c=r||a&&!l,d=t.isSafari()&&e.isiOS()&&!1===/safari/i.test(o),u=!c&&!l&&!d;return{isiPad:x(s),isiPhone:x(r),isTablet:x(l),isPhone:x(c),isTouch:x(i),isAndroid:e.isAndroid,isiOS:e.isiOS,isWebView:x(d),isDesktop:x(u)}})(a,r,e,o);return{browser:r,os:a,deviceType:i}})(navigator.userAgent,A.from(navigator.userAgentData),Ao)));const Bo=()=>Do(),Io=e=>{const t=ze((e=>{if(ht()&&g(e.target)){const t=ze(e.target);if($e(t)&&(e=>g(e.dom.shadowRoot))(t)&&e.composed&&e.composedPath){const t=e.composedPath();if(t)return oe(t)}}return A.from(e.target)})(e).getOr(e.target)),o=()=>e.stopPropagation(),n=()=>e.preventDefault(),s=y(n,o);return((e,t,o,n,s,r,a)=>({target:e,x:t,y:o,stop:n,prevent:s,kill:r,raw:a}))(t,e.clientX,e.clientY,o,n,s,e)},Fo=(e,t,o,n,s)=>{const r=((e,t)=>o=>{e(o)&&t(Io(o))})(o,n);return e.dom.addEventListener(t,r,s),{unbind:k(Ro,e,t,r,s)}},Ro=(e,t,o,n)=>{e.dom.removeEventListener(t,o,n)},No=(e,t)=>{rt(e).each((o=>{o.dom.insertBefore(t.dom,e.dom)}))},Vo=(e,t)=>{const o=(e=>A.from(e.dom.nextSibling).map(ze))(e);o.fold((()=>{rt(e).each((e=>{Lo(e,t)}))}),(e=>{No(e,t)}))},zo=(e,t)=>{dt(e).fold((()=>{Lo(e,t)}),(o=>{e.dom.insertBefore(t.dom,o.dom)}))},Lo=(e,t)=>{e.dom.appendChild(t.dom)},Ho=(e,t)=>{H(t,(t=>{Lo(e,t)}))},Po=e=>{e.dom.textContent="",H(lt(e),(e=>{Uo(e)}))},Uo=e=>{const t=e.dom;null!==t.parentNode&&t.parentNode.removeChild(t)},Wo=e=>{const t=void 0!==e?e.dom:document,o=t.body.scrollLeft||t.documentElement.scrollLeft,n=t.body.scrollTop||t.documentElement.scrollTop;return qt(o,n)},jo=(e,t,o)=>{const n=(void 0!==o?o.dom:document).defaultView;n&&n.scrollTo(e,t)},Go=(e,t,o,n)=>({x:e,y:t,width:o,height:n,right:e+o,bottom:t+n}),$o=e=>{const t=void 0===e?window:e,o=t.document,n=Wo(ze(o));return(e=>{const t=void 0===e?window:e;return Bo().browser.isFirefox()?A.none():A.from(t.visualViewport)})(t).fold((()=>{const e=t.document.documentElement,o=e.clientWidth,s=e.clientHeight;return Go(n.left,n.top,o,s)}),(e=>Go(Math.max(e.pageLeft,n.left),Math.max(e.pageTop,n.top),e.width,e.height)))},qo=()=>ze(document),Yo=(e,t)=>e.view(t).fold(x([]),(t=>{const o=e.owner(t),n=Yo(e,o);return[t].concat(n)}));var Xo=Object.freeze({__proto__:null,view:e=>{var t;return(e.dom===document?A.none():A.from(null===(t=e.dom.defaultView)||void 0===t?void 0:t.frameElement)).map(ze)},owner:e=>tt(e)});const Ko=e=>{const t=qo(),o=Wo(t),n=((e,t)=>{const o=t.owner(e),n=Yo(t,o);return A.some(n)})(e,Xo);return n.fold(k(Xt,e),(t=>{const n=Kt(e),s=W(t,((e,t)=>{const o=Kt(t);return{left:e.left+o.left,top:e.top+o.top}}),{left:0,top:0});return qt(s.left+n.left+o.left,s.top+n.top+o.top)}))},Jo=(e,t,o,n)=>({x:e,y:t,width:o,height:n,right:e+o,bottom:t+n}),Zo=e=>{const t=Xt(e),o=Qt(e),n=Gt(e);return Jo(t.left,t.top,o,n)},Qo=e=>{const t=Ko(e),o=Qt(e),n=Gt(e);return Jo(t.left,t.top,o,n)},en=(e,t)=>{const o=Math.max(e.x,t.x),n=Math.max(e.y,t.y),s=Math.min(e.right,t.right),r=Math.min(e.bottom,t.bottom);return Jo(o,n,s-o,r-n)},tn=()=>$o(window);var on=tinymce.util.Tools.resolve("tinymce.ThemeManager");const nn=e=>{const t=t=>t(e),o=x(e),n=()=>s,s={tag:!0,inner:e,fold:(t,o)=>o(e),isValue:E,isError:T,map:t=>rn.value(t(e)),mapError:n,bind:t,exists:t,forall:t,getOr:o,or:n,getOrThunk:o,orThunk:n,getOrDie:o,each:t=>{t(e)},toOptional:()=>A.some(e)};return s},sn=e=>{const t=()=>o,o={tag:!1,inner:e,fold:(t,o)=>t(e),isValue:T,isError:E,map:t,mapError:t=>rn.error(t(e)),bind:t,exists:T,forall:E,getOr:w,or:w,getOrThunk:_,orThunk:_,getOrDie:O(String(e)),each:b,toOptional:A.none};return o},rn={value:nn,error:sn,fromOption:(e,t)=>e.fold((()=>sn(t)),nn)};var an;!function(e){e[e.Error=0]="Error",e[e.Value=1]="Value"}(an||(an={}));const ln=(e,t,o)=>e.stype===an.Error?t(e.serror):o(e.svalue),cn=e=>({stype:an.Value,svalue:e}),dn=e=>({stype:an.Error,serror:e}),un=cn,mn=dn,gn=ln,pn=(e,t,o,n)=>({tag:"field",key:e,newKey:t,presence:o,prop:n}),hn=(e,t,o)=>{switch(e.tag){case"field":return t(e.key,e.newKey,e.presence,e.prop);case"custom":return o(e.newKey,e.instantiator)}},fn=e=>(...t)=>{if(0===t.length)throw new Error("Can't merge zero objects");const o={};for(let n=0;n<t.length;n++){const s=t[n];for(const t in s)ve(s,t)&&(o[t]=e(o[t],s[t]))}return o},bn=fn(((e,t)=>i(e)&&i(t)?bn(e,t):t)),vn=fn(((e,t)=>t)),yn=e=>({tag:"defaultedThunk",process:e}),xn=e=>yn(x(e)),wn=e=>({tag:"mergeWithThunk",process:e}),Sn=e=>{const t=(e=>{const t=[],o=[];return H(e,(e=>{ln(e,(e=>o.push(e)),(e=>t.push(e)))})),{values:t,errors:o}})(e);return t.errors.length>0?(o=t.errors,y(mn,q)(o)):un(t.values);var o},kn=e=>a(e)&&ae(e).length>100?" removed due to size":JSON.stringify(e,null,2),Cn=(e,t)=>mn([{path:e,getErrorInfo:t}]),On=e=>({extract:(t,o)=>((e,t)=>e.stype===an.Error?t(e.serror):e)(e(o),(e=>((e,t)=>Cn(e,x(t)))(t,e))),toString:x("val")}),_n=On(un),Tn=(e,t,o,n)=>n(be(e,t).getOrThunk((()=>o(e)))),En=(e,t,o,n,s)=>{const r=e=>s.extract(t.concat([n]),e),a=e=>e.fold((()=>un(A.none())),(e=>((e,t)=>e.stype===an.Value?{stype:an.Value,svalue:t(e.svalue)}:e)(s.extract(t.concat([n]),e),A.some)));switch(e.tag){case"required":return((e,t,o,n)=>be(t,o).fold((()=>((e,t,o)=>Cn(e,(()=>'Could not find valid *required* value for "'+t+'" in '+kn(o))))(e,o,t)),n))(t,o,n,r);case"defaultedThunk":return Tn(o,n,e.process,r);case"option":return((e,t,o)=>o(be(e,t)))(o,n,a);case"defaultedOptionThunk":return((e,t,o,n)=>n(be(e,t).map((t=>!0===t?o(e):t))))(o,n,e.process,a);case"mergeWithThunk":return Tn(o,n,x({}),(t=>{const n=bn(e.process(o),t);return r(n)}))}},An=e=>({extract:(t,o)=>e().extract(t,o),toString:()=>e().toString()}),Mn=e=>ae(ge(e,g)),Dn=e=>{const t=Bn(e),o=W(e,((e,t)=>hn(t,(t=>bn(e,{[t]:!0})),x(e))),{});return{extract:(e,n)=>{const s=d(n)?[]:Mn(n),r=U(s,(e=>!ye(o,e)));return 0===r.length?t.extract(e,n):((e,t)=>Cn(e,(()=>"There are unsupported fields: ["+t.join(", ")+"] specified")))(e,r)},toString:t.toString}},Bn=e=>({extract:(t,o)=>((e,t,o)=>{const n={},s=[];for(const r of o)hn(r,((o,r,a,i)=>{const l=En(a,e,t,o,i);gn(l,(e=>{s.push(...e)}),(e=>{n[r]=e}))}),((e,o)=>{n[e]=o(t)}));return s.length>0?mn(s):un(n)})(t,o,e),toString:()=>{const t=L(e,(e=>hn(e,((e,t,o,n)=>e+" -> "+n.toString()),((e,t)=>"state("+e+")"))));return"obj{\n"+t.join("\n")+"}"}}),In=e=>({extract:(t,o)=>{const n=L(o,((o,n)=>e.extract(t.concat(["["+n+"]"]),o)));return Sn(n)},toString:()=>"array("+e.toString()+")"}),Fn=(e,t)=>{const o=void 0!==t?t:w;return{extract:(t,n)=>{const s=[];for(const r of e){const e=r.extract(t,n);if(e.stype===an.Value)return{stype:an.Value,svalue:o(e.svalue)};s.push(e)}return Sn(s)},toString:()=>"oneOf("+L(e,(e=>e.toString())).join(", ")+")"}},Rn=(e,t)=>({extract:(o,n)=>{const s=ae(n),r=((t,o)=>In(On(e)).extract(t,o))(o,s);return((e,t)=>e.stype===an.Value?t(e.svalue):e)(r,(e=>{const s=L(e,(e=>pn(e,e,{tag:"required",process:{}},t)));return Bn(s).extract(o,n)}))},toString:()=>"setOf("+t.toString()+")"}),Nn=y(In,Bn),Vn=x(_n),zn=(e,t)=>On((o=>{const n=typeof o;return e(o)?un(o):mn(`Expected type: ${t} but got: ${n}`)})),Ln=zn(h,"number"),Hn=zn(r,"string"),Pn=zn(d,"boolean"),Un=zn(p,"function"),Wn=e=>{if(Object(e)!==e)return!0;switch({}.toString.call(e).slice(8,-1)){case"Boolean":case"Number":case"String":case"Date":case"RegExp":case"Blob":case"FileList":case"ImageData":case"ImageBitmap":case"ArrayBuffer":return!0;case"Array":case"Object":return Object.keys(e).every((t=>Wn(e[t])));default:return!1}},jn=On((e=>Wn(e)?un(e):mn("Expected value to be acceptable for sending via postMessage"))),Gn=(e,t)=>({extract:(o,n)=>be(n,e).fold((()=>((e,t)=>Cn(e,(()=>'Choice schema did not contain choice key: "'+t+'"')))(o,e)),(e=>((e,t,o,n)=>be(o,n).fold((()=>((e,t,o)=>Cn(e,(()=>'The chosen schema: "'+o+'" did not exist in branches: '+kn(t))))(e,o,n)),(o=>o.extract(e.concat(["branch: "+n]),t))))(o,n,t,e))),toString:()=>"chooseOn("+e+"). Possible values: "+ae(t)}),$n=e=>On((t=>e(t).fold(mn,un))),qn=(e,t)=>Rn((t=>e(t).fold(dn,cn)),t),Yn=(e,t,o)=>{return n=((e,t,o)=>((e,t)=>e.stype===an.Error?{stype:an.Error,serror:t(e.serror)}:e)(t.extract([e],o),(e=>({input:o,errors:e}))))(e,t,o),ln(n,rn.error,rn.value);var n},Xn=e=>e.fold((e=>{throw new Error(Jn(e))}),w),Kn=(e,t,o)=>Xn(Yn(e,t,o)),Jn=e=>"Errors: \n"+(e=>{const t=e.length>10?e.slice(0,10).concat([{path:[],getErrorInfo:x("... (only showing first ten failures)")}]):e;return L(t,(e=>"Failed path: ("+e.path.join(" > ")+")\n"+e.getErrorInfo()))})(e.errors).join("\n")+"\n\nInput object: "+kn(e.input),Zn=(e,t)=>Gn(e,ce(t,Bn)),Qn=(e,t)=>((e,t)=>{const o=eo(t);return{extract:(e,t)=>o().extract(e,t),toString:()=>o().toString()}})(0,t),es=pn,ts=(e,t)=>({tag:"custom",newKey:e,instantiator:t}),os=e=>$n((t=>R(e,t)?rn.value(t):rn.error(`Unsupported value: "${t}", choose one of "${e.join(", ")}".`))),ns=e=>es(e,e,{tag:"required",process:{}},Vn()),ss=(e,t)=>es(e,e,{tag:"required",process:{}},t),rs=e=>ss(e,Ln),as=e=>ss(e,Hn),is=(e,t)=>es(e,e,{tag:"required",process:{}},os(t)),ls=e=>ss(e,Un),cs=(e,t)=>es(e,e,{tag:"required",process:{}},Bn(t)),ds=(e,t)=>es(e,e,{tag:"required",process:{}},Nn(t)),us=(e,t)=>es(e,e,{tag:"required",process:{}},In(t)),ms=e=>es(e,e,{tag:"option",process:{}},Vn()),gs=(e,t)=>es(e,e,{tag:"option",process:{}},t),ps=e=>gs(e,Ln),hs=e=>gs(e,Hn),fs=(e,t)=>gs(e,os(t)),bs=e=>gs(e,Un),vs=(e,t)=>gs(e,In(t)),ys=(e,t)=>gs(e,Bn(t)),xs=(e,t)=>es(e,e,xn(t),Vn()),ws=(e,t,o)=>es(e,e,xn(t),o),Ss=(e,t)=>ws(e,t,Ln),ks=(e,t)=>ws(e,t,Hn),Cs=(e,t,o)=>ws(e,t,os(o)),Os=(e,t)=>ws(e,t,Pn),_s=(e,t)=>ws(e,t,Un),Ts=(e,t,o)=>ws(e,t,In(o)),Es=(e,t,o)=>ws(e,t,Bn(o)),As=e=>{let t=e;return{get:()=>t,set:e=>{t=e}}},Ms=e=>{if(!l(e))throw new Error("cases must be an array");if(0===e.length)throw new Error("there must be at least one case");const t=[],o={};return H(e,((n,s)=>{const r=ae(n);if(1!==r.length)throw new Error("one and only one name per case");const a=r[0],i=n[a];if(void 0!==o[a])throw new Error("duplicate key detected:"+a);if("cata"===a)throw new Error("cannot have a case named cata (sorry)");if(!l(i))throw new Error("case arguments must be an array");t.push(a),o[a]=(...o)=>{const n=o.length;if(n!==i.length)throw new Error("Wrong number of arguments to case "+a+". Expected "+i.length+" ("+i+"), got "+n);return{fold:(...t)=>{if(t.length!==e.length)throw new Error("Wrong number of arguments to fold. Expected "+e.length+", got "+t.length);return t[s].apply(null,o)},match:e=>{const n=ae(e);if(t.length!==n.length)throw new Error("Wrong number of arguments to match. Expected: "+t.join(",")+"\nActual: "+n.join(","));if(!X(t,(e=>R(n,e))))throw new Error("Not all branches were specified when using match. Specified: "+n.join(", ")+"\nRequired: "+t.join(", "));return e[a].apply(null,o)},log:e=>{console.log(e,{constructors:t,constructor:a,params:o})}}}})),o};Ms([{bothErrors:["error1","error2"]},{firstError:["error1","value2"]},{secondError:["value1","error2"]},{bothValues:["value1","value2"]}]);const Ds=(e,t)=>((e,t)=>({[e]:t}))(e,t),Bs=e=>(e=>{const t={};return H(e,(e=>{t[e.key]=e.value})),t})(e),Is=e=>p(e)?e:T,Fs=(e,t,o)=>{let n=e.dom;const s=Is(o);for(;n.parentNode;){n=n.parentNode;const e=ze(n),o=t(e);if(o.isSome())return o;if(s(e))break}return A.none()},Rs=(e,t,o)=>{const n=t(e),s=Is(o);return n.orThunk((()=>s(e)?A.none():Fs(e,t,s)))},Ns=(e,t)=>Qe(e.element,t.event.target),Vs={can:E,abort:T,run:b},zs=e=>{if(!ye(e,"can")&&!ye(e,"abort")&&!ye(e,"run"))throw new Error("EventHandler defined by: "+JSON.stringify(e,null,2)+" does not have can, abort, or run!");return{...Vs,...e}},Ls=x,Hs=Ls("touchstart"),Ps=Ls("touchmove"),Us=Ls("touchend"),Ws=Ls("touchcancel"),js=Ls("mousedown"),Gs=Ls("mousemove"),$s=Ls("mouseout"),qs=Ls("mouseup"),Ys=Ls("mouseover"),Xs=Ls("focusin"),Ks=Ls("focusout"),Js=Ls("keydown"),Zs=Ls("keyup"),Qs=Ls("input"),er=Ls("change"),tr=Ls("click"),or=Ls("transitioncancel"),nr=Ls("transitionend"),sr=Ls("transitionstart"),rr=Ls("selectstart"),ar=e=>x("alloy."+e),ir={tap:ar("tap")},lr=ar("focus"),cr=ar("blur.post"),dr=ar("paste.post"),ur=ar("receive"),mr=ar("execute"),gr=ar("focus.item"),pr=ir.tap,hr=ar("longpress"),fr=ar("sandbox.close"),br=ar("typeahead.cancel"),vr=ar("system.init"),yr=ar("system.touchmove"),xr=ar("system.touchend"),wr=ar("system.scroll"),Sr=ar("system.resize"),kr=ar("system.attached"),Cr=ar("system.detached"),Or=ar("system.dismissRequested"),_r=ar("system.repositionRequested"),Tr=ar("focusmanager.shifted"),Er=ar("slotcontainer.visibility"),Ar=ar("system.external.element.scroll"),Mr=ar("change.tab"),Dr=ar("dismiss.tab"),Br=ar("highlight"),Ir=ar("dehighlight"),Fr=(e,t)=>{zr(e,e.element,t,{})},Rr=(e,t,o)=>{zr(e,e.element,t,o)},Nr=e=>{Fr(e,mr())},Vr=(e,t,o)=>{zr(e,t,o,{})},zr=(e,t,o,n)=>{const s={target:t,...n};e.getSystem().triggerEvent(o,t,s)},Lr=(e,t,o,n)=>{e.getSystem().triggerEvent(o,t,n.event)},Hr=e=>Bs(e),Pr=(e,t)=>({key:e,value:zs({abort:t})}),Ur=e=>({key:e,value:zs({run:(e,t)=>{t.event.prevent()}})}),Wr=(e,t)=>({key:e,value:zs({run:t})}),jr=(e,t,o)=>({key:e,value:zs({run:(e,n)=>{t.apply(void 0,[e,n].concat(o))}})}),Gr=e=>t=>({key:e,value:zs({run:(e,o)=>{Ns(e,o)&&t(e,o)}})}),$r=(e,t,o)=>((e,t)=>Wr(e,((o,n)=>{o.getSystem().getByUid(t).each((t=>{Lr(t,t.element,e,n)}))})))(e,t.partUids[o]),qr=(e,t)=>Wr(e,((e,o)=>{const n=o.event,s=e.getSystem().getByDom(n.target).getOrThunk((()=>Rs(n.target,(t=>e.getSystem().getByDom(t).toOptional()),T).getOr(e)));t(e,s,o)})),Yr=e=>Wr(e,((e,t)=>{t.cut()})),Xr=e=>Wr(e,((e,t)=>{t.stop()})),Kr=(e,t)=>Gr(e)(t),Jr=Gr(kr()),Zr=Gr(Cr()),Qr=Gr(vr()),ea=(aa=mr(),e=>Wr(aa,e)),ta=e=>e.dom.innerHTML,oa=(e,t)=>{const o=tt(e).dom,n=ze(o.createDocumentFragment()),s=((e,t)=>{const o=(t||document).createElement("div");return o.innerHTML=e,lt(ze(o))})(t,o);Ho(n,s),Po(e),Lo(e,n)},na=(e,t)=>ze(e.dom.cloneNode(t)),sa=e=>(e=>{if(gt(e))return"#shadow-root";{const t=(e=>na(e,!1))(e);return(e=>{const t=Ne("div"),o=ze(e.dom.cloneNode(!0));return Lo(t,o),ta(t)})(t)}})(e),ra=Hr([((e,t)=>({key:e,value:zs({can:(e,t)=>{const o=t.event,n=o.originator,s=o.target;return!((e,t,o)=>Qe(t,e.element)&&!Qe(t,o))(e,n,s)||(console.warn(lr()+" did not get interpreted by the desired target. \nOriginator: "+sa(n)+"\nTarget: "+sa(s)+"\nCheck the "+lr()+" event handlers"),!1)}})}))(lr())]);var aa,ia=Object.freeze({__proto__:null,events:ra});let la=0;const ca=e=>{const t=(new Date).getTime(),o=Math.floor(1e9*Math.random());return la++,e+"_"+o+la+String(t)},da=x("alloy-id-"),ua=x("data-alloy-id"),ma=da(),ga=ua(),pa=(e,t)=>{Object.defineProperty(e.dom,ga,{value:t,writable:!0})},ha=e=>{const t=$e(e)?e.dom[ga]:null;return A.from(t)},fa=e=>ca(e),ba=w,va=e=>{const t=t=>`The component must be in a context to execute: ${t}`+(e?"\n"+sa(e().element)+" is not in context.":""),o=e=>()=>{throw new Error(t(e))},n=e=>()=>{console.warn(t(e))};return{debugInfo:x("fake"),triggerEvent:n("triggerEvent"),triggerFocus:n("triggerFocus"),triggerEscape:n("triggerEscape"),broadcast:n("broadcast"),broadcastOn:n("broadcastOn"),broadcastEvent:n("broadcastEvent"),build:o("build"),buildOrPatch:o("buildOrPatch"),addToWorld:o("addToWorld"),removeFromWorld:o("removeFromWorld"),addToGui:o("addToGui"),removeFromGui:o("removeFromGui"),getByUid:o("getByUid"),getByDom:o("getByDom"),isConnected:T}},ya=va(),xa=e=>L(e,(e=>Ae(e,"/*")?e.substring(0,e.length-2):e)),wa=(e,t)=>{const o=e.toString(),n=o.indexOf(")")+1,s=o.indexOf("("),r=o.substring(s+1,n-1).split(/,\s*/);return e.toFunctionAnnotation=()=>({name:t,parameters:xa(r)}),e},Sa=ca("alloy-premade"),ka=e=>(Object.defineProperty(e.element.dom,Sa,{value:e.uid,writable:!0}),Ds(Sa,e)),Ca=e=>be(e,Sa),Oa=e=>((e,t)=>{const o=t.toString(),n=o.indexOf(")")+1,s=o.indexOf("("),r=o.substring(s+1,n-1).split(/,\s*/);return e.toFunctionAnnotation=()=>({name:"OVERRIDE",parameters:xa(r.slice(1))}),e})(((t,...o)=>e(t.getApis(),t,...o)),e),_a={init:()=>Ta({readState:x("No State required")})},Ta=e=>e,Ea=(e,t)=>{const o={};return le(e,((e,n)=>{le(e,((e,s)=>{const r=be(o,s).getOr([]);o[s]=r.concat([t(n,e)])}))})),o},Aa=e=>({classes:u(e.classes)?[]:e.classes,attributes:u(e.attributes)?{}:e.attributes,styles:u(e.styles)?{}:e.styles}),Ma=e=>e.cHandler,Da=(e,t)=>({name:e,handler:t}),Ba=(e,t)=>{const o={};return H(e,(e=>{o[e.name()]=e.handlers(t)})),o},Ia=(e,t,o)=>{const n=t[o];return n?((e,t,o,n)=>{try{const s=ee(o,((o,s)=>{const r=o[t],a=s[t],i=n.indexOf(r),l=n.indexOf(a);if(-1===i)throw new Error("The ordering for "+e+" does not have an entry for "+r+".\nOrder specified: "+JSON.stringify(n,null,2));if(-1===l)throw new Error("The ordering for "+e+" does not have an entry for "+a+".\nOrder specified: "+JSON.stringify(n,null,2));return i<l?-1:l<i?1:0}));return rn.value(s)}catch(e){return rn.error([e])}})("Event: "+o,"name",e,n).map((e=>(e=>{const t=((e,t)=>(...t)=>j(e,((e,o)=>e&&(e=>e.can)(o).apply(void 0,t)),!0))(e),o=((e,t)=>(...t)=>j(e,((e,o)=>e||(e=>e.abort)(o).apply(void 0,t)),!1))(e);return{can:t,abort:o,run:(...t)=>{H(e,(e=>{e.run.apply(void 0,t)}))}}})(L(e,(e=>e.handler))))):((e,t)=>rn.error(["The event ("+e+') has more than one behaviour that listens to it.\nWhen this occurs, you must specify an event ordering for the behaviours in your spec (e.g. [ "listing", "toggling" ]).\nThe behaviours that can trigger it are: '+JSON.stringify(L(t,(e=>e.name)),null,2)]))(o,e)},Fa=(e,t)=>((e,t)=>{const o=(e=>{const t=[],o=[];return H(e,(e=>{e.fold((e=>{t.push(e)}),(e=>{o.push(e)}))})),{errors:t,values:o}})(e);return o.errors.length>0?(n=o.errors,rn.error(q(n))):((e,t)=>0===e.length?rn.value(t):rn.value(bn(t,vn.apply(void 0,e))))(o.values,t);var n})(pe(e,((e,o)=>(1===e.length?rn.value(e[0].handler):Ia(e,t,o)).map((n=>{const s=(e=>{const t=(e=>p(e)?{can:E,abort:T,run:e}:e)(e);return(e,o,...n)=>{const s=[e,o].concat(n);t.abort.apply(void 0,s)?o.stop():t.can.apply(void 0,s)&&t.run.apply(void 0,s)}})(n),r=e.length>1?U(t[o],(t=>N(e,(e=>e.name===t)))).join(" > "):e[0].name;return Ds(o,((e,t)=>({handler:e,purpose:t}))(s,r))})))),{}),Ra="alloy.base.behaviour",Na=Bn([es("dom","dom",{tag:"required",process:{}},Bn([ns("tag"),xs("styles",{}),xs("classes",[]),xs("attributes",{}),ms("value"),ms("innerHtml")])),ns("components"),ns("uid"),xs("events",{}),xs("apis",{}),es("eventOrder","eventOrder",(ui={[mr()]:["disabling",Ra,"toggling","typeaheadevents"],[lr()]:[Ra,"focusing","keying"],[vr()]:[Ra,"disabling","toggling","representing"],[Qs()]:[Ra,"representing","streaming","invalidating"],[Cr()]:[Ra,"representing","item-events","tooltipping"],[js()]:["focusing",Ra,"item-type-events"],[Hs()]:["focusing",Ra,"item-type-events"],[Ys()]:["item-type-events","tooltipping"],[ur()]:["receiving","reflecting","tooltipping"]},wn(x(ui))),Vn()),ms("domModification")]),Va=e=>e.events,za=(e,t)=>{const o=_t(e,t);return void 0===o||""===o?[]:o.split(" ")},La=e=>void 0!==e.dom.classList,Ha=e=>za(e,"class"),Pa=(e,t)=>((e,t,o)=>{const n=za(e,t).concat([o]);return Ct(e,t,n.join(" ")),!0})(e,"class",t),Ua=(e,t)=>((e,t,o)=>{const n=U(za(e,t),(e=>e!==o));return n.length>0?Ct(e,t,n.join(" ")):At(e,t),!1})(e,"class",t),Wa=(e,t)=>{La(e)?e.dom.classList.add(t):Pa(e,t)},ja=e=>{0===(La(e)?e.dom.classList:Ha(e)).length&&At(e,"class")},Ga=(e,t)=>{La(e)?e.dom.classList.remove(t):Ua(e,t),ja(e)},$a=(e,t)=>La(e)&&e.dom.classList.contains(t),qa=(e,t)=>{H(t,(t=>{Wa(e,t)}))},Ya=(e,t)=>{H(t,(t=>{Ga(e,t)}))},Xa=e=>La(e)?(e=>{const t=e.dom.classList,o=new Array(t.length);for(let e=0;e<t.length;e++){const n=t.item(e);null!==n&&(o[e]=n)}return o})(e):Ha(e),Ka=e=>e.dom.value,Ja=(e,t)=>{if(void 0===t)throw new Error("Value.set was undefined");e.dom.value=t},Za=(e,t,o)=>{o.fold((()=>Lo(e,t)),(e=>{Qe(e,t)||(No(e,t),Uo(e))}))},Qa=(e,t,o)=>{const n=L(t,o),s=lt(e);return H(s.slice(n.length),Uo),n},ei=(e,t,o,n)=>{const s=ct(e,t),r=n(o,s),a=((e,t,o)=>ct(e,t).map((e=>{if(o.exists((t=>!Qe(t,e)))){const t=o.map(We).getOr("span"),n=Ne(t);return No(e,n),n}return e})))(e,t,s);return Za(e,r.element,a),r},ti=(e,t)=>{const o=ae(e),n=ae(t),s=J(n,o),r=((e,o)=>{const n={},s={};return me(e,((e,o)=>!ve(t,o)||e!==t[o]),ue(n),ue(s)),{t:n,f:s}})(e).t;return{toRemove:s,toSet:r}},oi=(e,t)=>{const o=t.filter((t=>We(t)===e.tag&&!(e=>e.innerHtml.isSome()&&e.domChildren.length>0)(e)&&!(e=>ve(e.dom,Sa))(t))).bind((t=>((e,t)=>{try{const o=((e,t)=>{const{class:o,style:n,...s}=(e=>j(e.dom.attributes,((e,t)=>(e[t.name]=t.value,e)),{}))(t),{toSet:r,toRemove:a}=ti(e.attributes,s),i=zt(t),{toSet:l,toRemove:c}=ti(e.styles,i),d=Xa(t),u=J(d,e.classes),m=J(e.classes,d);return H(a,(e=>At(t,e))),Ot(t,r),qa(t,m),Ya(t,u),H(c,(e=>Ht(t,e))),It(t,l),e.innerHtml.fold((()=>{const o=e.domChildren;((e,t)=>{Qa(e,t,((t,o)=>{const n=ct(e,o);return Za(e,t,n),t}))})(t,o)}),(e=>{oa(t,e)})),(()=>{const o=t,n=e.value.getOrUndefined();n!==Ka(o)&&Ja(o,null!=n?n:"")})(),t})(e,t);return A.some(o)}catch(e){return A.none()}})(e,t))).getOrThunk((()=>(e=>{const t=Ne(e.tag);Ot(t,e.attributes),qa(t,e.classes),It(t,e.styles),e.innerHtml.each((e=>oa(t,e)));const o=e.domChildren;return Ho(t,o),e.value.each((e=>{Ja(t,e)})),t})(e)));return pa(o,e.uid),o},ni=e=>{const t=(e=>{const t=be(e,"behaviours").getOr({});return Y(ae(t),(e=>{const o=t[e];return g(o)?[o.me]:[]}))})(e);return((e,t)=>((e,t)=>{const o=L(t,(e=>ys(e.name(),[ns("config"),xs("state",_a)]))),n=Yn("component.behaviours",Bn(o),e.behaviours).fold((t=>{throw new Error(Jn(t)+"\nComplete spec:\n"+JSON.stringify(e,null,2))}),w);return{list:t,data:ce(n,(e=>{const t=e.map((e=>({config:e.config,state:e.state.init(e.config)})));return x(t)}))}})(e,t))(e,t)},si=(e,t)=>{const o=()=>m,n=As(ya),s=Xn((e=>Yn("custom.definition",Na,e))(e)),r=ni(e),a=(e=>e.list)(r),i=(e=>e.data)(r),l=((e,t,o)=>{const n={...(s=e).dom,uid:s.uid,domChildren:L(s.components,(e=>e.element))};var s;const r=(e=>e.domModification.fold((()=>Aa({})),Aa))(e),a={"alloy.base.modification":r},i=t.length>0?((e,t,o,n)=>{const s={...t};H(o,(t=>{s[t.name()]=t.exhibit(e,n)}));const r=Ea(s,((e,t)=>({name:e,modification:t}))),a=e=>W(e,((e,t)=>({...t.modification,...e})),{}),i=W(r.classes,((e,t)=>t.modification.concat(e)),[]),l=a(r.attributes),c=a(r.styles);return Aa({classes:i,attributes:l,styles:c})})(o,a,t,n):r;return l=n,c=i,{...l,attributes:{...l.attributes,...c.attributes},styles:{...l.styles,...c.styles},classes:l.classes.concat(c.classes)};var l,c})(s,a,i),c=oi(l,t),d=((e,t,o)=>{const n={"alloy.base.behaviour":Va(e)};return((e,t,o,n)=>{const s=((e,t,o)=>{const n={...o,...Ba(t,e)};return Ea(n,Da)})(e,o,n);return Fa(s,t)})(o,e.eventOrder,t,n).getOrDie()})(s,a,i),u=As(s.components),m={uid:e.uid,getSystem:n.get,config:t=>{const o=i;return(p(o[t.name()])?o[t.name()]:()=>{throw new Error("Could not find "+t.name()+" in "+JSON.stringify(e,null,2))})()},hasConfigured:e=>p(i[e.name()]),spec:e,readState:e=>i[e]().map((e=>e.state.readState())).getOr("not enabled"),getApis:()=>s.apis,connect:e=>{n.set(e)},disconnect:()=>{n.set(va(o))},element:c,syncComponents:()=>{const e=lt(c),t=Y(e,(e=>n.get().getByDom(e).fold((()=>[]),Q)));u.set(t)},components:u.get,events:d};return m},ri=e=>{const t=Ve(e);return ai({element:t})},ai=e=>{const t=Kn("external.component",Dn([ns("element"),ms("uid")]),e),o=As(va()),n=t.uid.getOrThunk((()=>fa("external")));pa(t.element,n);const s={uid:n,getSystem:o.get,config:A.none,hasConfigured:T,connect:e=>{o.set(e)},disconnect:()=>{o.set(va((()=>s)))},getApis:()=>({}),element:t.element,spec:e,readState:x("No state"),syncComponents:b,components:x([]),events:{}};return ka(s)},ii=fa,li=(e,t)=>Ca(e).getOrThunk((()=>((e,t)=>{const{events:o,...n}=ba(e),s=((e,t)=>{const o=be(e,"components").getOr([]);return t.fold((()=>L(o,ci)),(e=>L(o,((t,o)=>li(t,ct(e,o))))))})(n,t),r={...n,events:{...ia,...o},components:s};return rn.value(si(r,t))})((e=>ve(e,"uid"))(e)?e:{uid:ii(""),...e},t).getOrDie())),ci=e=>li(e,A.none()),di=ka;var ui,mi=(e,t,o,n,s)=>e(o,n)?A.some(o):p(s)&&s(o)?A.none():t(o,n,s);const gi=(e,t,o)=>{let n=e.dom;const s=p(o)?o:T;for(;n.parentNode;){n=n.parentNode;const e=ze(n);if(t(e))return A.some(e);if(s(e))break}return A.none()},pi=(e,t,o)=>mi(((e,t)=>t(e)),gi,e,t,o),hi=(e,t,o)=>pi(e,t,o).isSome(),fi=(e,t,o)=>gi(e,(e=>Je(e,t)),o),bi=(e,t)=>((e,o)=>G(e.dom.childNodes,(e=>{return o=ze(e),Je(o,t);var o})).map(ze))(e),vi=(e,t)=>((e,t)=>{const o=void 0===t?document:t.dom;return Ze(o)?A.none():A.from(o.querySelector(e)).map(ze)})(t,e),yi=(e,t,o)=>mi(((e,t)=>Je(e,t)),fi,e,t,o),xi="aria-controls",wi=()=>{const e=ca(xi);return{id:e,link:t=>{Ct(t,xi,e)},unlink:e=>{At(e,xi)}}},Si=(e,t)=>hi(t,(t=>Qe(t,e.element)),T)||((e,t)=>(e=>pi(e,(e=>{if(!$e(e))return!1;const t=_t(e,"id");return void 0!==t&&t.indexOf(xi)>-1})).bind((e=>{const t=_t(e,"id"),o=ft(e);return vi(o,`[${xi}="${t}"]`)})))(t).exists((t=>Si(e,t))))(e,t);var ki;!function(e){e[e.STOP=0]="STOP",e[e.NORMAL=1]="NORMAL",e[e.LOGGING=2]="LOGGING"}(ki||(ki={}));const Ci=As({}),Oi=["alloy/data/Fields","alloy/debugging/Debugging"],_i=(e,t,o)=>((e,t,o)=>{switch(be(Ci.get(),e).orThunk((()=>{const t=ae(Ci.get());return re(t,(t=>e.indexOf(t)>-1?A.some(Ci.get()[t]):A.none()))})).getOr(ki.NORMAL)){case ki.NORMAL:return o(Ti());case ki.LOGGING:{const n=((e,t)=>{const o=[],n=(new Date).getTime();return{logEventCut:(e,t,n)=>{o.push({outcome:"cut",target:t,purpose:n})},logEventStopped:(e,t,n)=>{o.push({outcome:"stopped",target:t,purpose:n})},logNoParent:(e,t,n)=>{o.push({outcome:"no-parent",target:t,purpose:n})},logEventNoHandlers:(e,t)=>{o.push({outcome:"no-handlers-left",target:t})},logEventResponse:(e,t,n)=>{o.push({outcome:"response",purpose:n,target:t})},write:()=>{const s=(new Date).getTime();R(["mousemove","mouseover","mouseout",vr()],e)||console.log(e,{event:e,time:s-n,target:t.dom,sequence:L(o,(e=>R(["cut","stopped","response"],e.outcome)?"{"+e.purpose+"} "+e.outcome+" at ("+sa(e.target)+")":e.outcome))})}}})(e,t),s=o(n);return n.write(),s}case ki.STOP:return!0}})(e,t,o),Ti=x({logEventCut:b,logEventStopped:b,logNoParent:b,logEventNoHandlers:b,logEventResponse:b,write:b}),Ei=x([ns("menu"),ns("selectedMenu")]),Ai=x([ns("item"),ns("selectedItem")]);x(Bn(Ai().concat(Ei())));const Mi=x(Bn(Ai())),Di=cs("initSize",[ns("numColumns"),ns("numRows")]),Bi=()=>cs("markers",[ns("backgroundMenu")].concat(Ei()).concat(Ai())),Ii=e=>cs("markers",L(e,ns)),Fi=(e,t,o)=>((()=>{const e=new Error;if(void 0!==e.stack){const t=e.stack.split("\n");G(t,(e=>e.indexOf("alloy")>0&&!N(Oi,(t=>e.indexOf(t)>-1)))).getOr("unknown")}})(),es(t,t,o,$n((e=>rn.value(((...t)=>e.apply(void 0,t))))))),Ri=e=>Fi(0,e,xn(b)),Ni=e=>Fi(0,e,xn(A.none)),Vi=e=>Fi(0,e,{tag:"required",process:{}}),zi=e=>Fi(0,e,{tag:"required",process:{}}),Li=(e,t)=>ts(e,x(t)),Hi=e=>ts(e,w),Pi=x(Di),Ui=(e,t,o,n,s,r,a,i=!1)=>({x:e,y:t,bubble:o,direction:n,placement:s,restriction:r,label:`${a}-${s}`,alwaysFit:i}),Wi=Ms([{southeast:[]},{southwest:[]},{northeast:[]},{northwest:[]},{south:[]},{north:[]},{east:[]},{west:[]}]),ji=Wi.southeast,Gi=Wi.southwest,$i=Wi.northeast,qi=Wi.northwest,Yi=Wi.south,Xi=Wi.north,Ki=Wi.east,Ji=Wi.west,Zi=(e,t,o,n)=>{const s=e+t;return s>n?o:s<o?n:s},Qi=(e,t,o)=>Math.min(Math.max(e,t),o),el=(e,t)=>Z(["left","right","top","bottom"],(o=>be(t,o).map((t=>((e,t)=>{switch(t){case 1:return e.x;case 0:return e.x+e.width;case 2:return e.y;case 3:return e.y+e.height}})(e,t))))),tl="layout",ol=e=>e.x,nl=(e,t)=>e.x+e.width/2-t.width/2,sl=(e,t)=>e.x+e.width-t.width,rl=(e,t)=>e.y-t.height,al=e=>e.y+e.height,il=(e,t)=>e.y+e.height/2-t.height/2,ll=(e,t,o)=>Ui(ol(e),al(e),o.southeast(),ji(),"southeast",el(e,{left:1,top:3}),tl),cl=(e,t,o)=>Ui(sl(e,t),al(e),o.southwest(),Gi(),"southwest",el(e,{right:0,top:3}),tl),dl=(e,t,o)=>Ui(ol(e),rl(e,t),o.northeast(),$i(),"northeast",el(e,{left:1,bottom:2}),tl),ul=(e,t,o)=>Ui(sl(e,t),rl(e,t),o.northwest(),qi(),"northwest",el(e,{right:0,bottom:2}),tl),ml=(e,t,o)=>Ui(nl(e,t),rl(e,t),o.north(),Xi(),"north",el(e,{bottom:2}),tl),gl=(e,t,o)=>Ui(nl(e,t),al(e),o.south(),Yi(),"south",el(e,{top:3}),tl),pl=(e,t,o)=>Ui((e=>e.x+e.width)(e),il(e,t),o.east(),Ki(),"east",el(e,{left:0}),tl),hl=(e,t,o)=>Ui(((e,t)=>e.x-t.width)(e,t),il(e,t),o.west(),Ji(),"west",el(e,{right:1}),tl),fl=()=>[ll,cl,dl,ul,gl,ml,pl,hl],bl=()=>[cl,ll,ul,dl,gl,ml,pl,hl],vl=()=>[dl,ul,ll,cl,ml,gl],yl=()=>[ul,dl,cl,ll,ml,gl],xl=()=>[ll,cl,dl,ul,gl,ml],wl=()=>[cl,ll,ul,dl,gl,ml];var Sl=Object.freeze({__proto__:null,events:e=>Hr([Wr(ur(),((t,o)=>{const n=e.channels,s=ae(n),r=o,a=((e,t)=>t.universal?e:U(e,(e=>R(t.channels,e))))(s,r);H(a,(e=>{const o=n[e],s=o.schema,a=Kn("channel["+e+"] data\nReceiver: "+sa(t.element),s,r.data);o.onReceive(t,a)}))}))])}),kl=[ss("channels",qn(rn.value,Dn([Vi("onReceive"),xs("schema",Vn())])))];const Cl=(e,t,o)=>Qr(((n,s)=>{o(n,e,t)})),Ol=e=>({key:e,value:void 0}),_l=(e,t,o,n,s,r,a)=>{const i=e=>ye(e,o)?e[o]():A.none(),l=ce(s,((e,t)=>((e,t,o)=>((e,t,o)=>{const n=o.toString(),s=n.indexOf(")")+1,r=n.indexOf("("),a=n.substring(r+1,s-1).split(/,\s*/);return e.toFunctionAnnotation=()=>({name:t,parameters:xa(a.slice(0,1).concat(a.slice(3)))}),e})(((n,...s)=>{const r=[n].concat(s);return n.config({name:x(e)}).fold((()=>{throw new Error("We could not find any behaviour configuration for: "+e+". Using API: "+o)}),(e=>{const o=Array.prototype.slice.call(r,1);return t.apply(void 0,[n,e.config,e.state].concat(o))}))}),o,t))(o,e,t))),c={...ce(r,((e,t)=>wa(e,t))),...l,revoke:k(Ol,o),config:t=>{const n=Kn(o+"-config",e,t);return{key:o,value:{config:n,me:c,configAsRaw:eo((()=>Kn(o+"-config",e,t))),initialConfig:t,state:a}}},schema:x(t),exhibit:(e,t)=>Se(i(e),be(n,"exhibit"),((e,o)=>o(t,e.config,e.state))).getOrThunk((()=>Aa({}))),name:x(o),handlers:e=>i(e).map((e=>be(n,"events").getOr((()=>({})))(e.config,e.state))).getOr({})};return c},Tl=e=>Bs(e),El=Dn([ns("fields"),ns("name"),xs("active",{}),xs("apis",{}),xs("state",_a),xs("extra",{})]),Al=e=>{const t=Kn("Creating behaviour: "+e.name,El,e);return((e,t,o,n,s,r)=>{const a=Dn(e),i=ys(t,[("config",l=e,gs("config",Dn(l)))]);var l;return _l(a,i,t,o,n,s,r)})(t.fields,t.name,t.active,t.apis,t.extra,t.state)},Ml=Dn([ns("branchKey"),ns("branches"),ns("name"),xs("active",{}),xs("apis",{}),xs("state",_a),xs("extra",{})]),Dl=e=>{const t=Kn("Creating behaviour: "+e.name,Ml,e);return((e,t,o,n,s,r)=>{const a=e,i=ys(t,[gs("config",e)]);return _l(a,i,t,o,n,s,r)})(Zn(t.branchKey,t.branches),t.name,t.active,t.apis,t.extra,t.state)},Bl=x(void 0),Il=Al({fields:kl,name:"receiving",active:Sl});var Fl=Object.freeze({__proto__:null,exhibit:(e,t)=>Aa({classes:[],styles:t.useFixed()?{}:{position:"relative"}})});const Rl=(e,t=!1)=>e.dom.focus({preventScroll:t}),Nl=e=>e.dom.blur(),Vl=e=>{const t=ft(e).dom;return e.dom===t.activeElement},zl=(e=qo())=>A.from(e.dom.activeElement).map(ze),Ll=e=>zl(ft(e)).filter((t=>e.dom.contains(t.dom))),Hl=(e,t)=>{const o=ft(t),n=zl(o).bind((e=>{const o=t=>Qe(e,t);return o(t)?A.some(t):((e,t)=>{const o=e=>{for(let n=0;n<e.childNodes.length;n++){const s=ze(e.childNodes[n]);if(t(s))return A.some(s);const r=o(e.childNodes[n]);if(r.isSome())return r}return A.none()};return o(e.dom)})(t,o)})),s=e(t);return n.each((e=>{zl(o).filter((t=>Qe(t,e))).fold((()=>{Rl(e)}),b)})),s},Pl=(e,t,o,n,s)=>{const r=e=>e+"px";return{position:e,left:t.map(r),top:o.map(r),right:n.map(r),bottom:s.map(r)}},Ul=(e,t)=>{Ft(e,(e=>({...e,position:A.some(e.position)}))(t))},Wl=Ms([{none:[]},{relative:["x","y","width","height"]},{fixed:["x","y","width","height"]}]),jl=(e,t,o,n,s,r)=>{const a=t.rect,i=a.x-o,l=a.y-n,c=s-(i+a.width),d=r-(l+a.height),u=A.some(i),m=A.some(l),g=A.some(c),p=A.some(d),h=A.none();return t.direction.fold((()=>Pl(e,u,m,h,h)),(()=>Pl(e,h,m,g,h)),(()=>Pl(e,u,h,h,p)),(()=>Pl(e,h,h,g,p)),(()=>Pl(e,u,m,h,h)),(()=>Pl(e,u,h,h,p)),(()=>Pl(e,u,m,h,h)),(()=>Pl(e,h,m,g,h)))},Gl=(e,t)=>e.fold((()=>{const e=t.rect;return Pl("absolute",A.some(e.x),A.some(e.y),A.none(),A.none())}),((e,o,n,s)=>jl("absolute",t,e,o,n,s)),((e,o,n,s)=>jl("fixed",t,e,o,n,s))),$l=(e,t)=>{const o=k(Ko,t),n=e.fold(o,o,(()=>{const e=Wo();return Ko(t).translate(-e.left,-e.top)})),s=Qt(t),r=Gt(t);return Jo(n.left,n.top,s,r)},ql=(e,t)=>t.fold((()=>e.fold(tn,tn,Jo)),(t=>e.fold(x(t),x(t),(()=>{const o=Yl(e,t.x,t.y);return Jo(o.left,o.top,t.width,t.height)})))),Yl=(e,t,o)=>{const n=qt(t,o);return e.fold(x(n),x(n),(()=>{const e=Wo();return n.translate(-e.left,-e.top)}))};Wl.none;const Xl=Wl.relative,Kl=Wl.fixed,Jl="data-alloy-placement",Zl=e=>Tt(e,Jl),Ql=Ms([{fit:["reposition"]},{nofit:["reposition","visibleW","visibleH","isVisible"]}]),ec=(e,t,o,n)=>{const s=e.bubble,r=s.offset,a=((e,t,o)=>{const n=(n,s)=>t[n].map((t=>{const r="top"===n||"bottom"===n,a=r?o.top:o.left,i=("left"===n||"top"===n?Math.max:Math.min)(t,s)+a;return r?Qi(i,e.y,e.bottom):Qi(i,e.x,e.right)})).getOr(s),s=n("left",e.x),r=n("top",e.y),a=n("right",e.right),i=n("bottom",e.bottom);return Jo(s,r,a-s,i-r)})(n,e.restriction,r),i=e.x+r.left,l=e.y+r.top,c=Jo(i,l,t,o),{originInBounds:d,sizeInBounds:u,visibleW:m,visibleH:g}=((e,t)=>{const{x:o,y:n,right:s,bottom:r}=t,{x:a,y:i,right:l,bottom:c,width:d,height:u}=e;return{originInBounds:a>=o&&a<=s&&i>=n&&i<=r,sizeInBounds:l<=s&&l>=o&&c<=r&&c>=n,visibleW:Math.min(d,a>=o?s-a:l-o),visibleH:Math.min(u,i>=n?r-i:c-n)}})(c,a),p=d&&u,h=p?c:((e,t)=>{const{x:o,y:n,right:s,bottom:r}=t,{x:a,y:i,width:l,height:c}=e,d=Math.max(o,s-l),u=Math.max(n,r-c),m=Qi(a,o,d),g=Qi(i,n,u),p=Math.min(m+l,s)-m,h=Math.min(g+c,r)-g;return Jo(m,g,p,h)})(c,a),f=h.width>0&&h.height>0,{maxWidth:b,maxHeight:v}=((e,t,o)=>{const n=x(t.bottom-o.y),s=x(o.bottom-t.y),r=((e,t,o,n)=>e.fold(t,t,n,n,t,n,o,o))(e,s,s,n),a=x(t.right-o.x),i=x(o.right-t.x),l=((e,t,o,n)=>e.fold(t,n,t,n,o,o,t,n))(e,i,i,a);return{maxWidth:l,maxHeight:r}})(e.direction,h,n),y={rect:h,maxHeight:v,maxWidth:b,direction:e.direction,placement:e.placement,classes:{on:s.classesOn,off:s.classesOff},layout:e.label,testY:l};return p||e.alwaysFit?Ql.fit(y):Ql.nofit(y,m,g,f)},tc=e=>{const t=As(A.none()),o=()=>t.get().each(e);return{clear:()=>{o(),t.set(A.none())},isSet:()=>t.get().isSome(),get:()=>t.get(),set:e=>{o(),t.set(A.some(e))}}},oc=()=>tc((e=>e.unbind())),nc=()=>{const e=tc(b);return{...e,on:t=>e.get().each(t)}},sc=E,rc=(e,t,o)=>((e,t,o,n)=>Fo(e,t,o,n,!1))(e,t,sc,o),ac=(e,t,o)=>((e,t,o,n)=>Fo(e,t,o,n,!0))(e,t,sc,o),ic=Io,lc=["top","bottom","right","left"],cc="data-alloy-transition-timer",dc=(e,t,o,n,s,a)=>{const i=((e,t,o)=>o.exists((o=>{const n=e.mode;return"all"===n||o[n]!==t[n]})))(n,s,a);if(i||((e,t)=>((e,t)=>X(t,(t=>$a(e,t))))(e,t.classes))(e,n)){Bt(e,"position",o.position);const a=$l(t,e),l=Gl(t,{...s,rect:a}),c=Z(lc,(e=>l[e]));((e,t)=>{const o=e=>parseFloat(e).toFixed(3);return he(t,((t,n)=>!((e,t,o=S)=>Se(e,t,o).getOr(e.isNone()&&t.isNone()))(e[n].map(o),t.map(o)))).isSome()})(o,c)&&(Ft(e,c),i&&((e,t)=>{qa(e,t.classes),Tt(e,cc).each((t=>{clearTimeout(parseInt(t,10)),At(e,cc)})),((e,t)=>{const o=oc(),n=oc();let s;const a=t=>{var o;const n=null!==(o=t.raw.pseudoElement)&&void 0!==o?o:"";return Qe(t.target,e)&&Be(n)&&R(lc,t.raw.propertyName)},i=r=>{if(m(r)||a(r)){o.clear(),n.clear();const a=null==r?void 0:r.raw.type;(m(a)||a===nr())&&(clearTimeout(s),At(e,cc),Ya(e,t.classes))}},l=rc(e,sr(),(t=>{a(t)&&(l.unbind(),o.set(rc(e,nr(),i)),n.set(rc(e,or(),i)))})),c=(e=>{const t=t=>{const o=Rt(e,t).split(/\s*,\s*/);return U(o,De)},o=e=>{if(r(e)&&/^[\d.]+/.test(e)){const t=parseFloat(e);return Ae(e,"ms")?t:1e3*t}return 0},n=t("transition-delay"),s=t("transition-duration");return j(s,((e,t,s)=>{const r=o(n[s])+o(t);return Math.max(e,r)}),0)})(e);requestAnimationFrame((()=>{s=setTimeout(i,c+17),Ct(e,cc,s)}))})(e,t)})(e,n),Pt(e))}else Ya(e,n.classes)},uc=(e,t)=>{((e,t)=>{const o=Wt.max(e,t,["margin-top","border-top-width","padding-top","padding-bottom","border-bottom-width","margin-bottom"]);Bt(e,"max-height",o+"px")})(e,Math.floor(t))},mc=x(((e,t)=>{uc(e,t),It(e,{"overflow-x":"hidden","overflow-y":"auto"})})),gc=x(((e,t)=>{uc(e,t)})),pc=(e,t,o)=>void 0===e[t]?o:e[t],hc=(e,t,o,n)=>{const s=((e,t,o,n)=>{Ht(t,"max-height"),Ht(t,"max-width");const s={width:Qt(r=t),height:Gt(r)};var r;return((e,t,o,n,s,r)=>{const a=n.width,i=n.height,l=(t,l,c,d,u)=>{const m=t(o,n,s,e,r),g=ec(m,a,i,r);return g.fold(x(g),((e,t,o,n)=>(u===n?o>d||t>c:!u&&n)?g:Ql.nofit(l,c,d,u)))};return j(t,((e,t)=>{const o=k(l,t);return e.fold(x(e),o)}),Ql.nofit({rect:o,maxHeight:n.height,maxWidth:n.width,direction:ji(),placement:"southeast",classes:{on:[],off:[]},layout:"none",testY:o.y},-1,-1,!1)).fold(w,w)})(t,n.preference,e,s,o,n.bounds)})(e,t,o,n);return((e,t,o)=>{const n=Gl(o.origin,t);o.transition.each((s=>{dc(e,o.origin,n,s,t,o.lastPlacement)})),Ul(e,n)})(t,s,n),((e,t)=>{((e,t)=>{Ct(e,Jl,t)})(e,t.placement)})(t,s),((e,t)=>{const o=t.classes;Ya(e,o.off),qa(e,o.on)})(t,s),((e,t,o)=>{(0,o.maxHeightFunction)(e,t.maxHeight)})(t,s,n),((e,t,o)=>{(0,o.maxWidthFunction)(e,t.maxWidth)})(t,s,n),{layout:s.layout,placement:s.placement}},fc=["valignCentre","alignLeft","alignRight","alignCentre","top","bottom","left","right","inset"],bc=(e,t,o,n=1)=>{const s=e*n,r=t*n,a=e=>be(o,e).getOr([]),i=(e,t,o)=>{const n=J(fc,o);return{offset:qt(e,t),classesOn:Y(o,a),classesOff:Y(n,a)}};return{southeast:()=>i(-e,t,["top","alignLeft"]),southwest:()=>i(e,t,["top","alignRight"]),south:()=>i(-e/2,t,["top","alignCentre"]),northeast:()=>i(-e,-t,["bottom","alignLeft"]),northwest:()=>i(e,-t,["bottom","alignRight"]),north:()=>i(-e/2,-t,["bottom","alignCentre"]),east:()=>i(e,-t/2,["valignCentre","left"]),west:()=>i(-e,-t/2,["valignCentre","right"]),insetNortheast:()=>i(s,r,["top","alignLeft","inset"]),insetNorthwest:()=>i(-s,r,["top","alignRight","inset"]),insetNorth:()=>i(-s/2,r,["top","alignCentre","inset"]),insetSoutheast:()=>i(s,-r,["bottom","alignLeft","inset"]),insetSouthwest:()=>i(-s,-r,["bottom","alignRight","inset"]),insetSouth:()=>i(-s/2,-r,["bottom","alignCentre","inset"]),insetEast:()=>i(-s,-r/2,["valignCentre","right","inset"]),insetWest:()=>i(s,-r/2,["valignCentre","left","inset"])}},vc=()=>bc(0,0,{}),yc=w,xc=(e,t)=>o=>"rtl"===wc(o)?t:e,wc=e=>"rtl"===Rt(e,"direction")?"rtl":"ltr";var Sc;!function(e){e.TopToBottom="toptobottom",e.BottomToTop="bottomtotop"}(Sc||(Sc={}));const kc="data-alloy-vertical-dir",Cc=e=>hi(e,(e=>$e(e)&&_t(e,"data-alloy-vertical-dir")===Sc.BottomToTop)),Oc=()=>ys("layouts",[ns("onLtr"),ns("onRtl"),ms("onBottomLtr"),ms("onBottomRtl")]),_c=(e,t,o,n,s,r,a)=>{const i=a.map(Cc).getOr(!1),l=t.layouts.map((t=>t.onLtr(e))),c=t.layouts.map((t=>t.onRtl(e))),d=i?t.layouts.bind((t=>t.onBottomLtr.map((t=>t(e))))).or(l).getOr(s):l.getOr(o),u=i?t.layouts.bind((t=>t.onBottomRtl.map((t=>t(e))))).or(c).getOr(r):c.getOr(n);return xc(d,u)(e)};var Tc=[ns("hotspot"),ms("bubble"),xs("overrides",{}),Oc(),Li("placement",((e,t,o)=>{const n=t.hotspot,s=$l(o,n.element),r=_c(e.element,t,xl(),wl(),vl(),yl(),A.some(t.hotspot.element));return A.some(yc({anchorBox:s,bubble:t.bubble.getOr(vc()),overrides:t.overrides,layouts:r}))}))],Ec=[ns("x"),ns("y"),xs("height",0),xs("width",0),xs("bubble",vc()),xs("overrides",{}),Oc(),Li("placement",((e,t,o)=>{const n=Yl(o,t.x,t.y),s=Jo(n.left,n.top,t.width,t.height),r=_c(e.element,t,fl(),bl(),fl(),bl(),A.none());return A.some(yc({anchorBox:s,bubble:t.bubble,overrides:t.overrides,layouts:r}))}))];const Ac=Ms([{screen:["point"]},{absolute:["point","scrollLeft","scrollTop"]}]),Mc=e=>e.fold(w,((e,t,o)=>e.translate(-t,-o))),Dc=e=>e.fold(w,w),Bc=e=>j(e,((e,t)=>e.translate(t.left,t.top)),qt(0,0)),Ic=e=>{const t=L(e,Dc);return Bc(t)},Fc=Ac.screen,Rc=Ac.absolute,Nc=(e,t,o)=>{const n=tt(e.element),s=Wo(n),r=((e,t,o)=>{const n=st(o.root).dom;return A.from(n.frameElement).map(ze).filter((t=>{const o=tt(t),n=tt(e.element);return Qe(o,n)})).map(Xt)})(e,0,o).getOr(s);return Rc(r,s.left,s.top)},Vc=(e,t,o,n)=>{const s=Fc(qt(e,t));return A.some(((e,t,o)=>({point:e,width:t,height:o}))(s,o,n))},zc=(e,t,o,n,s)=>e.map((e=>{const r=[t,e.point],a=(i=()=>Ic(r),l=()=>Ic(r),c=()=>(e=>{const t=L(e,Mc);return Bc(t)})(r),n.fold(i,l,c));var i,l,c;const d=(p=a.left,h=a.top,f=e.width,b=e.height,{x:p,y:h,width:f,height:b}),u=o.showAbove?vl():xl(),m=o.showAbove?yl():wl(),g=_c(s,o,u,m,u,m,A.none());var p,h,f,b;return yc({anchorBox:d,bubble:o.bubble.getOr(vc()),overrides:o.overrides,layouts:g})}));var Lc=[ns("node"),ns("root"),ms("bubble"),Oc(),xs("overrides",{}),xs("showAbove",!1),Li("placement",((e,t,o)=>{const n=Nc(e,0,t);return t.node.filter(xt).bind((s=>{const r=s.dom.getBoundingClientRect(),a=Vc(r.left,r.top,r.width,r.height),i=t.node.getOr(e.element);return zc(a,n,t,o,i)}))}))];const Hc=(e,t,o,n)=>({start:e,soffset:t,finish:o,foffset:n}),Pc=Ms([{before:["element"]},{on:["element","offset"]},{after:["element"]}]),Uc=(Pc.before,Pc.on,Pc.after,e=>e.fold(w,w,w)),Wc=Ms([{domRange:["rng"]},{relative:["startSitu","finishSitu"]},{exact:["start","soffset","finish","foffset"]}]),jc={domRange:Wc.domRange,relative:Wc.relative,exact:Wc.exact,exactFromRange:e=>Wc.exact(e.start,e.soffset,e.finish,e.foffset),getWin:e=>{const t=(e=>e.match({domRange:e=>ze(e.startContainer),relative:(e,t)=>Uc(e),exact:(e,t,o,n)=>e}))(e);return st(t)},range:Hc},Gc=(e,t,o)=>{const n=e.document.createRange();var s;return s=n,t.fold((e=>{s.setStartBefore(e.dom)}),((e,t)=>{s.setStart(e.dom,t)}),(e=>{s.setStartAfter(e.dom)})),((e,t)=>{t.fold((t=>{e.setEndBefore(t.dom)}),((t,o)=>{e.setEnd(t.dom,o)}),(t=>{e.setEndAfter(t.dom)}))})(n,o),n},$c=(e,t,o,n,s)=>{const r=e.document.createRange();return r.setStart(t.dom,o),r.setEnd(n.dom,s),r},qc=e=>({left:e.left,top:e.top,right:e.right,bottom:e.bottom,width:e.width,height:e.height}),Yc=Ms([{ltr:["start","soffset","finish","foffset"]},{rtl:["start","soffset","finish","foffset"]}]),Xc=(e,t,o)=>t(ze(o.startContainer),o.startOffset,ze(o.endContainer),o.endOffset),Kc=(e,t)=>((e,t)=>{const o=((e,t)=>t.match({domRange:e=>({ltr:x(e),rtl:A.none}),relative:(t,o)=>({ltr:eo((()=>Gc(e,t,o))),rtl:eo((()=>A.some(Gc(e,o,t))))}),exact:(t,o,n,s)=>({ltr:eo((()=>$c(e,t,o,n,s))),rtl:eo((()=>A.some($c(e,n,s,t,o))))})}))(e,t);return((e,t)=>{const o=t.ltr();return o.collapsed?t.rtl().filter((e=>!1===e.collapsed)).map((e=>Yc.rtl(ze(e.endContainer),e.endOffset,ze(e.startContainer),e.startOffset))).getOrThunk((()=>Xc(0,Yc.ltr,o))):Xc(0,Yc.ltr,o)})(0,o)})(e,t).match({ltr:(t,o,n,s)=>{const r=e.document.createRange();return r.setStart(t.dom,o),r.setEnd(n.dom,s),r},rtl:(t,o,n,s)=>{const r=e.document.createRange();return r.setStart(n.dom,s),r.setEnd(t.dom,o),r}});Yc.ltr,Yc.rtl;const Jc=(e,t,o)=>U(((e,t)=>{const o=p(t)?t:T;let n=e.dom;const s=[];for(;null!==n.parentNode&&void 0!==n.parentNode;){const e=n.parentNode,t=ze(e);if(s.push(t),!0===o(t))break;n=e}return s})(e,o),t),Zc=(e,t)=>((e,t)=>{const o=void 0===t?document:t.dom;return Ze(o)?[]:L(o.querySelectorAll(e),ze)})(t,e),Qc=e=>{if(e.rangeCount>0){const t=e.getRangeAt(0),o=e.getRangeAt(e.rangeCount-1);return A.some(Hc(ze(t.startContainer),t.startOffset,ze(o.endContainer),o.endOffset))}return A.none()},ed=e=>{if(null===e.anchorNode||null===e.focusNode)return Qc(e);{const t=ze(e.anchorNode),o=ze(e.focusNode);return((e,t,o,n)=>{const s=((e,t,o,n)=>{const s=tt(e).dom.createRange();return s.setStart(e.dom,t),s.setEnd(o.dom,n),s})(e,t,o,n),r=Qe(e,o)&&t===n;return s.collapsed&&!r})(t,e.anchorOffset,o,e.focusOffset)?A.some(Hc(t,e.anchorOffset,o,e.focusOffset)):Qc(e)}},td=(e,t)=>(e=>{const t=e.getClientRects(),o=t.length>0?t[0]:e.getBoundingClientRect();return o.width>0||o.height>0?A.some(o).map(qc):A.none()})(Kc(e,t)),od=((e,t)=>{const o=t=>e(t)?A.from(t.dom.nodeValue):A.none();return{get:t=>{if(!e(t))throw new Error("Can only get text value of a text node");return o(t).getOr("")},getOption:o,set:(t,o)=>{if(!e(t))throw new Error("Can only set raw text value of a text node");t.dom.nodeValue=o}}})(qe),nd=(e,t)=>({element:e,offset:t}),sd=(e,t)=>qe(e)?nd(e,t):((e,t)=>{const o=lt(e);if(0===o.length)return nd(e,t);if(t<o.length)return nd(o[t],0);{const e=o[o.length-1],t=qe(e)?(e=>od.get(e))(e).length:lt(e).length;return nd(e,t)}})(e,t),rd=e=>void 0!==e.foffset,ad=(e,t)=>t.getSelection.getOrThunk((()=>()=>(e=>(e=>A.from(e.getSelection()))(e).filter((e=>e.rangeCount>0)).bind(ed))(e)))().map((e=>{if(rd(e)){const t=sd(e.start,e.soffset),o=sd(e.finish,e.foffset);return jc.range(t.element,t.offset,o.element,o.offset)}return e}));var id=[ms("getSelection"),ns("root"),ms("bubble"),Oc(),xs("overrides",{}),xs("showAbove",!1),Li("placement",((e,t,o)=>{const n=st(t.root).dom,s=Nc(e,0,t),r=ad(n,t).bind((e=>{if(rd(e)){const t=((e,t)=>(e=>{const t=e.getBoundingClientRect();return t.width>0||t.height>0?A.some(t).map(qc):A.none()})(Kc(e,t)))(n,jc.exactFromRange(e)).orThunk((()=>{const t=Ve("\ufeff");No(e.start,t);const o=td(n,jc.exact(t,0,t,1));return Uo(t),o}));return t.bind((e=>Vc(e.left,e.top,e.width,e.height)))}{const t=ce(e,(e=>e.dom.getBoundingClientRect())),o={left:Math.min(t.firstCell.left,t.lastCell.left),right:Math.max(t.firstCell.right,t.lastCell.right),top:Math.min(t.firstCell.top,t.lastCell.top),bottom:Math.max(t.firstCell.bottom,t.lastCell.bottom)};return Vc(o.left,o.top,o.right-o.left,o.bottom-o.top)}})),a=ad(n,t).bind((e=>rd(e)?$e(e.start)?A.some(e.start):at(e.start):A.some(e.firstCell))).getOr(e.element);return zc(r,s,t,o,a)}))];const ld="link-layout",cd=e=>e.x+e.width,dd=(e,t)=>e.x-t.width,ud=(e,t)=>e.y-t.height+e.height,md=e=>e.y,gd=(e,t,o)=>Ui(cd(e),md(e),o.southeast(),ji(),"southeast",el(e,{left:0,top:2}),ld),pd=(e,t,o)=>Ui(dd(e,t),md(e),o.southwest(),Gi(),"southwest",el(e,{right:1,top:2}),ld),hd=(e,t,o)=>Ui(cd(e),ud(e,t),o.northeast(),$i(),"northeast",el(e,{left:0,bottom:3}),ld),fd=(e,t,o)=>Ui(dd(e,t),ud(e,t),o.northwest(),qi(),"northwest",el(e,{right:1,bottom:3}),ld),bd=()=>[gd,pd,hd,fd],vd=()=>[pd,gd,fd,hd];var yd=[ns("item"),Oc(),xs("overrides",{}),Li("placement",((e,t,o)=>{const n=$l(o,t.item.element),s=_c(e.element,t,bd(),vd(),bd(),vd(),A.none());return A.some(yc({anchorBox:n,bubble:vc(),overrides:t.overrides,layouts:s}))}))],xd=Zn("type",{selection:id,node:Lc,hotspot:Tc,submenu:yd,makeshift:Ec});const wd=[us("classes",Hn),Cs("mode","all",["all","layout","placement"])],Sd=[xs("useFixed",T),ms("getBounds")],kd=[ss("anchor",xd),ys("transition",wd)],Cd=(e,t,o,n,s,r)=>{const a=Kn("placement.info",Bn(kd),s),i=a.anchor,l=n.element,c=o.get(n.uid);Hl((()=>{Bt(l,"position","fixed");const s=Vt(l,"visibility");Bt(l,"visibility","hidden");const d=t.useFixed()?(()=>{const e=document.documentElement;return Kl(0,0,e.clientWidth,e.clientHeight)})():(e=>{const t=Xt(e.element),o=e.element.dom.getBoundingClientRect();return Xl(t.left,t.top,o.width,o.height)})(e);i.placement(e,i,d).each((e=>{const s=r.orThunk((()=>t.getBounds.map(_))),i=((e,t,o,n,s,r)=>((e,t,o,n,s,r,a,i)=>{const l=pc(a,"maxHeightFunction",mc()),c=pc(a,"maxWidthFunction",b),d=e.anchorBox,u=e.origin,m={bounds:ql(u,r),origin:u,preference:n,maxHeightFunction:l,maxWidthFunction:c,lastPlacement:s,transition:i};return hc(d,t,o,m)})(((e,t)=>((e,t)=>({anchorBox:e,origin:t}))(e,t))(t.anchorBox,e),n.element,t.bubble,t.layouts,s,o,t.overrides,r))(d,e,s,n,c,a.transition);o.set(n.uid,i)})),s.fold((()=>{Ht(l,"visibility")}),(e=>{Bt(l,"visibility",e)})),Vt(l,"left").isNone()&&Vt(l,"top").isNone()&&Vt(l,"right").isNone()&&Vt(l,"bottom").isNone()&&xe(Vt(l,"position"),"fixed")&&Ht(l,"position")}),l)};var Od=Object.freeze({__proto__:null,position:(e,t,o,n,s)=>{const r=A.none();Cd(e,t,o,n,s,r)},positionWithinBounds:Cd,getMode:(e,t,o)=>t.useFixed()?"fixed":"absolute",reset:(e,t,o,n)=>{const s=n.element;H(["position","left","right","top","bottom"],(e=>Ht(s,e))),(e=>{At(e,Jl)})(s),o.clear(n.uid)}});const _d=Al({fields:Sd,name:"positioning",active:Fl,apis:Od,state:Object.freeze({__proto__:null,init:()=>{let e={};return Ta({readState:()=>e,clear:t=>{g(t)?delete e[t]:e={}},set:(t,o)=>{e[t]=o},get:t=>be(e,t)})}})}),Td=e=>e.getSystem().isConnected(),Ed=e=>{Fr(e,Cr());const t=e.components();H(t,Ed)},Ad=e=>{const t=e.components();H(t,Ad),Fr(e,kr())},Md=(e,t)=>{e.getSystem().addToWorld(t),xt(e.element)&&Ad(t)},Dd=e=>{Ed(e),e.getSystem().removeFromWorld(e)},Bd=(e,t)=>{Lo(e.element,t.element)},Id=(e,t)=>{Fd(e,t,Lo)},Fd=(e,t,o)=>{e.getSystem().addToWorld(t),o(e.element,t.element),xt(e.element)&&Ad(t),e.syncComponents()},Rd=e=>{Ed(e),Uo(e.element),e.getSystem().removeFromWorld(e)},Nd=e=>{const t=rt(e.element).bind((t=>e.getSystem().getByDom(t).toOptional()));Rd(e),t.each((e=>{e.syncComponents()}))},Vd=e=>{const t=e.components();H(t,Rd),Po(e.element),e.syncComponents()},zd=(e,t)=>{Hd(e,t,Lo)},Ld=(e,t)=>{Hd(e,t,Vo)},Hd=(e,t,o)=>{o(e,t.element);const n=lt(t.element);H(n,(e=>{t.getByDom(e).each(Ad)}))},Pd=e=>{const t=lt(e.element);H(t,(t=>{e.getByDom(t).each(Ed)})),Uo(e.element)},Ud=(e,t,o,n)=>{o.get().each((t=>{Vd(e)}));const s=t.getAttachPoint(e);Id(s,e);const r=e.getSystem().build(n);return Id(e,r),o.set(r),r},Wd=(e,t,o,n)=>{const s=Ud(e,t,o,n);return t.onOpen(e,s),s},jd=(e,t,o)=>{o.get().each((n=>{Vd(e),Nd(e),t.onClose(e,n),o.clear()}))},Gd=(e,t,o)=>o.isOpen(),$d=(e,t,o)=>{const n=t.getAttachPoint(e);Bt(e.element,"position",_d.getMode(n)),((e,t,o,n)=>{Vt(e.element,t).fold((()=>{At(e.element,o)}),(t=>{Ct(e.element,o,t)})),Bt(e.element,t,"hidden")})(e,"visibility",t.cloakVisibilityAttr)},qd=(e,t,o)=>{(e=>N(["top","left","right","bottom"],(t=>Vt(e,t).isSome())))(e.element)||Ht(e.element,"position"),((e,t,o)=>{Tt(e.element,o).fold((()=>Ht(e.element,t)),(o=>Bt(e.element,t,o)))})(e,"visibility",t.cloakVisibilityAttr)};var Yd=Object.freeze({__proto__:null,cloak:$d,decloak:qd,open:Wd,openWhileCloaked:(e,t,o,n,s)=>{$d(e,t),Wd(e,t,o,n),s(),qd(e,t)},close:jd,isOpen:Gd,isPartOf:(e,t,o,n)=>Gd(0,0,o)&&o.get().exists((o=>t.isPartOf(e,o,n))),getState:(e,t,o)=>o.get(),setContent:(e,t,o,n)=>o.get().map((()=>Ud(e,t,o,n)))}),Xd=Object.freeze({__proto__:null,events:(e,t)=>Hr([Wr(fr(),((o,n)=>{jd(o,e,t)}))])}),Kd=[Ri("onOpen"),Ri("onClose"),ns("isPartOf"),ns("getAttachPoint"),xs("cloakVisibilityAttr","data-precloak-visibility")],Jd=Object.freeze({__proto__:null,init:()=>{const e=nc(),t=x("not-implemented");return Ta({readState:t,isOpen:e.isSet,clear:e.clear,set:e.set,get:e.get})}});const Zd=Al({fields:Kd,name:"sandboxing",active:Xd,apis:Yd,state:Jd}),Qd=x("dismiss.popups"),eu=x("reposition.popups"),tu=x("mouse.released"),ou=Dn([xs("isExtraPart",T),ys("fireEventInstead",[xs("event",Or())])]),nu=e=>{const t=Kn("Dismissal",ou,e);return{[Qd()]:{schema:Dn([ns("target")]),onReceive:(e,o)=>{Zd.isOpen(e)&&(Zd.isPartOf(e,o.target)||t.isExtraPart(e,o.target)||t.fireEventInstead.fold((()=>Zd.close(e)),(t=>Fr(e,t.event))))}}}},su=Dn([ys("fireEventInstead",[xs("event",_r())]),ls("doReposition")]),ru=e=>{const t=Kn("Reposition",su,e);return{[eu()]:{onReceive:e=>{Zd.isOpen(e)&&t.fireEventInstead.fold((()=>t.doReposition(e)),(t=>Fr(e,t.event)))}}}},au=(e,t,o)=>{t.store.manager.onLoad(e,t,o)},iu=(e,t,o)=>{t.store.manager.onUnload(e,t,o)};var lu=Object.freeze({__proto__:null,onLoad:au,onUnload:iu,setValue:(e,t,o,n)=>{t.store.manager.setValue(e,t,o,n)},getValue:(e,t,o)=>t.store.manager.getValue(e,t,o),getState:(e,t,o)=>o}),cu=Object.freeze({__proto__:null,events:(e,t)=>{const o=e.resetOnDom?[Jr(((o,n)=>{au(o,e,t)})),Zr(((o,n)=>{iu(o,e,t)}))]:[Cl(e,t,au)];return Hr(o)}});const du=()=>{const e=As(null);return Ta({set:e.set,get:e.get,isNotSet:()=>null===e.get(),clear:()=>{e.set(null)},readState:()=>({mode:"memory",value:e.get()})})},uu=()=>{const e=As({}),t=As({});return Ta({readState:()=>({mode:"dataset",dataByValue:e.get(),dataByText:t.get()}),lookup:o=>be(e.get(),o).orThunk((()=>be(t.get(),o))),update:o=>{const n=e.get(),s=t.get(),r={},a={};H(o,(e=>{r[e.value]=e,be(e,"meta").each((t=>{be(t,"text").each((t=>{a[t]=e}))}))})),e.set({...n,...r}),t.set({...s,...a})},clear:()=>{e.set({}),t.set({})}})};var mu=Object.freeze({__proto__:null,memory:du,dataset:uu,manual:()=>Ta({readState:b}),init:e=>e.store.manager.state(e)});const gu=(e,t,o,n)=>{const s=t.store;o.update([n]),s.setValue(e,n),t.onSetValue(e,n)};var pu=[ms("initialValue"),ns("getFallbackEntry"),ns("getDataKey"),ns("setValue"),Li("manager",{setValue:gu,getValue:(e,t,o)=>{const n=t.store,s=n.getDataKey(e);return o.lookup(s).getOrThunk((()=>n.getFallbackEntry(s)))},onLoad:(e,t,o)=>{t.store.initialValue.each((n=>{gu(e,t,o,n)}))},onUnload:(e,t,o)=>{o.clear()},state:uu})],hu=[ns("getValue"),xs("setValue",b),ms("initialValue"),Li("manager",{setValue:(e,t,o,n)=>{t.store.setValue(e,n),t.onSetValue(e,n)},getValue:(e,t,o)=>t.store.getValue(e),onLoad:(e,t,o)=>{t.store.initialValue.each((o=>{t.store.setValue(e,o)}))},onUnload:b,state:_a.init})],fu=[ms("initialValue"),Li("manager",{setValue:(e,t,o,n)=>{o.set(n),t.onSetValue(e,n)},getValue:(e,t,o)=>o.get(),onLoad:(e,t,o)=>{t.store.initialValue.each((e=>{o.isNotSet()&&o.set(e)}))},onUnload:(e,t,o)=>{o.clear()},state:du})],bu=[ws("store",{mode:"memory"},Zn("mode",{memory:fu,manual:hu,dataset:pu})),Ri("onSetValue"),xs("resetOnDom",!1)];const vu=Al({fields:bu,name:"representing",active:cu,apis:lu,extra:{setValueFrom:(e,t)=>{const o=vu.getValue(t);vu.setValue(e,o)}},state:mu}),yu=(e,t)=>Es(e,{},L(t,(t=>{return o=t.name(),n="Cannot configure "+t.name()+" for "+e,es(o,o,{tag:"option",process:{}},On((e=>mn("The field: "+o+" is forbidden. "+n))));var o,n})).concat([ts("dump",w)])),xu=e=>e.dump,wu=(e,t)=>({...Tl(t),...e.dump}),Su=yu,ku=wu,Cu="placeholder",Ou=Ms([{single:["required","valueThunk"]},{multiple:["required","valueThunks"]}]),_u=e=>ve(e,"uiType"),Tu=(e,t,o,n)=>((e,t,o,n)=>_u(o)&&o.uiType===Cu?((e,t,o,n)=>e.exists((e=>e!==o.owner))?Ou.single(!0,x(o)):be(n,o.name).fold((()=>{throw new Error("Unknown placeholder component: "+o.name+"\nKnown: ["+ae(n)+"]\nNamespace: "+e.getOr("none")+"\nSpec: "+JSON.stringify(o,null,2))}),(e=>e.replace())))(e,0,o,n):Ou.single(!1,x(o)))(e,0,o,n).fold(((s,r)=>{const a=_u(o)?r(t,o.config,o.validated):r(t),i=be(a,"components").getOr([]),l=Y(i,(o=>Tu(e,t,o,n)));return[{...a,components:l}]}),((e,n)=>{if(_u(o)){const e=n(t,o.config,o.validated);return o.validated.preprocess.getOr(w)(e)}return n(t)})),Eu=Ou.single,Au=Ou.multiple,Mu=x(Cu),Du=Ms([{required:["data"]},{external:["data"]},{optional:["data"]},{group:["data"]}]),Bu=xs("factory",{sketch:w}),Iu=xs("schema",[]),Fu=ns("name"),Ru=es("pname","pname",yn((e=>"<alloy."+ca(e.name)+">")),Vn()),Nu=ts("schema",(()=>[ms("preprocess")])),Vu=xs("defaults",x({})),zu=xs("overrides",x({})),Lu=Bn([Bu,Iu,Fu,Ru,Vu,zu]),Hu=Bn([Bu,Iu,Fu,Vu,zu]),Pu=Bn([Bu,Iu,Fu,Ru,Vu,zu]),Uu=Bn([Bu,Nu,Fu,ns("unit"),Ru,Vu,zu]),Wu=e=>e.fold(A.some,A.none,A.some,A.some),ju=e=>{const t=e=>e.name;return e.fold(t,t,t,t)},Gu=(e,t)=>o=>{const n=Kn("Converting part type",t,o);return e(n)},$u=Gu(Du.required,Lu),qu=Gu(Du.external,Hu),Yu=Gu(Du.optional,Pu),Xu=Gu(Du.group,Uu),Ku=x("entirety");var Ju=Object.freeze({__proto__:null,required:$u,external:qu,optional:Yu,group:Xu,asNamedPart:Wu,name:ju,asCommon:e=>e.fold(w,w,w,w),original:Ku});const Zu=(e,t,o,n)=>bn(t.defaults(e,o,n),o,{uid:e.partUids[t.name]},t.overrides(e,o,n)),Qu=(e,t)=>{const o={};return H(t,(t=>{Wu(t).each((t=>{const n=em(e,t.pname);o[t.name]=o=>{const s=Kn("Part: "+t.name+" in "+e,Bn(t.schema),o);return{...n,config:o,validated:s}}}))})),o},em=(e,t)=>({uiType:Mu(),owner:e,name:t}),tm=(e,t,o)=>({uiType:Mu(),owner:e,name:t,config:o,validated:{}}),om=e=>Y(e,(e=>e.fold(A.none,A.some,A.none,A.none).map((e=>cs(e.name,e.schema.concat([Hi(Ku())])))).toArray())),nm=e=>L(e,ju),sm=(e,t,o)=>((e,t,o)=>{const n={},s={};return H(o,(e=>{e.fold((e=>{n[e.pname]=Eu(!0,((t,o,n)=>e.factory.sketch(Zu(t,e,o,n))))}),(e=>{const o=t.parts[e.name];s[e.name]=x(e.factory.sketch(Zu(t,e,o[Ku()]),o))}),(e=>{n[e.pname]=Eu(!1,((t,o,n)=>e.factory.sketch(Zu(t,e,o,n))))}),(e=>{n[e.pname]=Au(!0,((t,o,n)=>{const s=t[e.name];return L(s,(o=>e.factory.sketch(bn(e.defaults(t,o,n),o,e.overrides(t,o)))))}))}))})),{internals:x(n),externals:x(s)}})(0,t,o),rm=(e,t,o)=>((e,t,o,n)=>{const s=ce(n,((e,t)=>((e,t)=>{let o=!1;return{name:x(e),required:()=>t.fold(((e,t)=>e),((e,t)=>e)),used:()=>o,replace:()=>{if(o)throw new Error("Trying to use the same placeholder more than once: "+e);return o=!0,t}}})(t,e))),r=((e,t,o,n)=>Y(o,(o=>Tu(e,t,o,n))))(e,t,o,s);return le(s,(o=>{if(!1===o.used()&&o.required())throw new Error("Placeholder: "+o.name()+" was not found in components list\nNamespace: "+e.getOr("none")+"\nComponents: "+JSON.stringify(t.components,null,2))})),r})(A.some(e),t,t.components,o),am=(e,t,o)=>{const n=t.partUids[o];return e.getSystem().getByUid(n).toOptional()},im=(e,t,o)=>am(e,t,o).getOrDie("Could not find part: "+o),lm=(e,t,o)=>{const n={},s=t.partUids,r=e.getSystem();return H(o,(e=>{n[e]=x(r.getByUid(s[e]))})),n},cm=(e,t)=>{const o=e.getSystem();return ce(t.partUids,((e,t)=>x(o.getByUid(e))))},dm=e=>ae(e.partUids),um=(e,t,o)=>{const n={},s=t.partUids,r=e.getSystem();return H(o,(e=>{n[e]=x(r.getByUid(s[e]).getOrDie())})),n},mm=(e,t)=>{const o=nm(t);return Bs(L(o,(t=>({key:t,value:e+"-"+t}))))},gm=e=>es("partUids","partUids",wn((t=>mm(t.uid,e))),Vn());var pm=Object.freeze({__proto__:null,generate:Qu,generateOne:tm,schemas:om,names:nm,substitutes:sm,components:rm,defaultUids:mm,defaultUidsSchema:gm,getAllParts:cm,getAllPartNames:dm,getPart:am,getPartOrDie:im,getParts:lm,getPartsOrDie:um});const hm=(e,t,o,n,s)=>{const r=((e,t)=>(e.length>0?[cs("parts",e)]:[]).concat([ns("uid"),xs("dom",{}),xs("components",[]),Hi("originalSpec"),xs("debug.sketcher",{})]).concat(t))(n,s);return Kn(e+" [SpecSchema]",Dn(r.concat(t)),o)},fm=(e,t,o,n,s)=>{const r=bm(s),a=om(o),i=gm(o),l=hm(e,t,r,a,[i]),c=sm(0,l,o);return n(l,rm(e,l,c.internals()),r,c.externals())},bm=e=>(e=>ve(e,"uid"))(e)?e:{...e,uid:fa("uid")},vm=Dn([ns("name"),ns("factory"),ns("configFields"),xs("apis",{}),xs("extraApis",{})]),ym=Dn([ns("name"),ns("factory"),ns("configFields"),ns("partFields"),xs("apis",{}),xs("extraApis",{})]),xm=e=>{const t=Kn("Sketcher for "+e.name,vm,e),o=ce(t.apis,Oa),n=ce(t.extraApis,((e,t)=>wa(e,t)));return{name:t.name,configFields:t.configFields,sketch:e=>((e,t,o,n)=>{const s=bm(n);return o(hm(e,t,s,[],[]),s)})(t.name,t.configFields,t.factory,e),...o,...n}},wm=e=>{const t=Kn("Sketcher for "+e.name,ym,e),o=Qu(t.name,t.partFields),n=ce(t.apis,Oa),s=ce(t.extraApis,((e,t)=>wa(e,t)));return{name:t.name,partFields:t.partFields,configFields:t.configFields,sketch:e=>fm(t.name,t.configFields,t.partFields,t.factory,e),parts:o,...n,...s}},Sm=e=>Ke("input")(e)&&"radio"!==_t(e,"type")||Ke("textarea")(e);var km=Object.freeze({__proto__:null,getCurrent:(e,t,o)=>t.find(e)});const Cm=[ns("find")],Om=Al({fields:Cm,name:"composing",apis:km}),_m=["input","button","textarea","select"],Tm=(e,t,o)=>{(t.disabled()?Im:Fm)(e,t)},Em=(e,t)=>!0===t.useNative&&R(_m,We(e.element)),Am=e=>{Ct(e.element,"disabled","disabled")},Mm=e=>{At(e.element,"disabled")},Dm=e=>{Ct(e.element,"aria-disabled","true")},Bm=e=>{Ct(e.element,"aria-disabled","false")},Im=(e,t,o)=>{t.disableClass.each((t=>{Wa(e.element,t)})),(Em(e,t)?Am:Dm)(e),t.onDisabled(e)},Fm=(e,t,o)=>{t.disableClass.each((t=>{Ga(e.element,t)})),(Em(e,t)?Mm:Bm)(e),t.onEnabled(e)},Rm=(e,t)=>Em(e,t)?(e=>Et(e.element,"disabled"))(e):(e=>"true"===_t(e.element,"aria-disabled"))(e);var Nm=Object.freeze({__proto__:null,enable:Fm,disable:Im,isDisabled:Rm,onLoad:Tm,set:(e,t,o,n)=>{(n?Im:Fm)(e,t)}}),Vm=Object.freeze({__proto__:null,exhibit:(e,t)=>Aa({classes:t.disabled()?t.disableClass.toArray():[]}),events:(e,t)=>Hr([Pr(mr(),((t,o)=>Rm(t,e))),Cl(e,t,Tm)])}),zm=[_s("disabled",T),xs("useNative",!0),ms("disableClass"),Ri("onDisabled"),Ri("onEnabled")];const Lm=Al({fields:zm,name:"disabling",active:Vm,apis:Nm}),Hm=(e,t,o,n)=>{const s=Zc(e.element,"."+t.highlightClass);H(s,(o=>{N(n,(e=>Qe(e.element,o)))||(Ga(o,t.highlightClass),e.getSystem().getByDom(o).each((o=>{t.onDehighlight(e,o),Fr(o,Ir())})))}))},Pm=(e,t,o,n)=>{Hm(e,t,0,[n]),Um(e,t,o,n)||(Wa(n.element,t.highlightClass),t.onHighlight(e,n),Fr(n,Br()))},Um=(e,t,o,n)=>$a(n.element,t.highlightClass),Wm=(e,t,o)=>vi(e.element,"."+t.itemClass).bind((t=>e.getSystem().getByDom(t).toOptional())),jm=(e,t,o)=>{const n=Zc(e.element,"."+t.itemClass);return(n.length>0?A.some(n[n.length-1]):A.none()).bind((t=>e.getSystem().getByDom(t).toOptional()))},Gm=(e,t,o,n)=>{const s=Zc(e.element,"."+t.itemClass);return $(s,(e=>$a(e,t.highlightClass))).bind((t=>{const o=Zi(t,n,0,s.length-1);return e.getSystem().getByDom(s[o]).toOptional()}))},$m=(e,t,o)=>{const n=Zc(e.element,"."+t.itemClass);return we(L(n,(t=>e.getSystem().getByDom(t).toOptional())))};var qm=Object.freeze({__proto__:null,dehighlightAll:(e,t,o)=>Hm(e,t,0,[]),dehighlight:(e,t,o,n)=>{Um(e,t,o,n)&&(Ga(n.element,t.highlightClass),t.onDehighlight(e,n),Fr(n,Ir()))},highlight:Pm,highlightFirst:(e,t,o)=>{Wm(e,t).each((n=>{Pm(e,t,o,n)}))},highlightLast:(e,t,o)=>{jm(e,t).each((n=>{Pm(e,t,o,n)}))},highlightAt:(e,t,o,n)=>{((e,t,o,n)=>{const s=Zc(e.element,"."+t.itemClass);return A.from(s[n]).fold((()=>rn.error(new Error("No element found with index "+n))),e.getSystem().getByDom)})(e,t,0,n).fold((e=>{throw e}),(n=>{Pm(e,t,o,n)}))},highlightBy:(e,t,o,n)=>{const s=$m(e,t);G(s,n).each((n=>{Pm(e,t,o,n)}))},isHighlighted:Um,getHighlighted:(e,t,o)=>vi(e.element,"."+t.highlightClass).bind((t=>e.getSystem().getByDom(t).toOptional())),getFirst:Wm,getLast:jm,getPrevious:(e,t,o)=>Gm(e,t,0,-1),getNext:(e,t,o)=>Gm(e,t,0,1),getCandidates:$m}),Ym=[ns("highlightClass"),ns("itemClass"),Ri("onHighlight"),Ri("onDehighlight")];const Xm=Al({fields:Ym,name:"highlighting",apis:qm}),Km=[8],Jm=[9],Zm=[13],Qm=[27],eg=[32],tg=[37],og=[38],ng=[39],sg=[40],rg=(e,t,o)=>{const n=K(e.slice(0,t)),s=K(e.slice(t+1));return G(n.concat(s),o)},ag=(e,t,o)=>{const n=K(e.slice(0,t));return G(n,o)},ig=(e,t,o)=>{const n=e.slice(0,t),s=e.slice(t+1);return G(s.concat(n),o)},lg=(e,t,o)=>{const n=e.slice(t+1);return G(n,o)},cg=e=>t=>{const o=t.raw;return R(e,o.which)},dg=e=>t=>X(e,(e=>e(t))),ug=e=>!0===e.raw.shiftKey,mg=e=>!0===e.raw.ctrlKey,gg=C(ug),pg=(e,t)=>({matches:e,classification:t}),hg=(e,t,o)=>{t.exists((e=>o.exists((t=>Qe(t,e)))))||Rr(e,Tr(),{prevFocus:t,newFocus:o})},fg=()=>{const e=e=>Ll(e.element);return{get:e,set:(t,o)=>{const n=e(t);t.getSystem().triggerFocus(o,t.element);const s=e(t);hg(t,n,s)}}},bg=()=>{const e=e=>Xm.getHighlighted(e).map((e=>e.element));return{get:e,set:(t,o)=>{const n=e(t);t.getSystem().getByDom(o).fold(b,(e=>{Xm.highlight(t,e)}));const s=e(t);hg(t,n,s)}}};var vg;!function(e){e.OnFocusMode="onFocus",e.OnEnterOrSpaceMode="onEnterOrSpace",e.OnApiMode="onApi"}(vg||(vg={}));const yg=(e,t,o,n,s)=>{const r=(e,t,o,n,s)=>{return(r=o(e,t,n,s),a=t.event,G(r,(e=>e.matches(a))).map((e=>e.classification))).bind((o=>o(e,t,n,s)));var r,a},a={schema:()=>e.concat([xs("focusManager",fg()),ws("focusInside","onFocus",$n((e=>R(["onFocus","onEnterOrSpace","onApi"],e)?rn.value(e):rn.error("Invalid value for focusInside")))),Li("handler",a),Li("state",t),Li("sendFocusIn",s)]),processKey:r,toEvents:(e,t)=>{const a=e.focusInside!==vg.OnFocusMode?A.none():s(e).map((o=>Wr(lr(),((n,s)=>{o(n,e,t),s.stop()})))),i=[Wr(Js(),((n,a)=>{r(n,a,o,e,t).fold((()=>{((o,n)=>{const r=cg(eg.concat(Zm))(n.event);e.focusInside===vg.OnEnterOrSpaceMode&&r&&Ns(o,n)&&s(e).each((s=>{s(o,e,t),n.stop()}))})(n,a)}),(e=>{a.stop()}))})),Wr(Zs(),((o,s)=>{r(o,s,n,e,t).each((e=>{s.stop()}))}))];return Hr(a.toArray().concat(i))}};return a},xg=e=>{const t=[ms("onEscape"),ms("onEnter"),xs("selector",'[data-alloy-tabstop="true"]:not(:disabled)'),xs("firstTabstop",0),xs("useTabstopAt",E),ms("visibilitySelector")].concat([e]),o=(e,t)=>{const o=e.visibilitySelector.bind((e=>yi(t,e))).getOr(t);return jt(o)>0},n=(e,t)=>t.focusManager.get(e).bind((e=>yi(e,t.selector))),s=(e,t,n)=>{((e,t)=>{const n=Zc(e.element,t.selector),s=U(n,(e=>o(t,e)));return A.from(s[t.firstTabstop])})(e,t).each((o=>{t.focusManager.set(e,o)}))},r=(e,t,s,r)=>{const a=Zc(e.element,s.selector);return n(e,s).bind((t=>$(a,k(Qe,t)).bind((t=>((e,t,n,s,r)=>r(t,n,(e=>((e,t)=>o(e,t)&&e.useTabstopAt(t))(s,e))).fold((()=>s.cyclic?A.some(!0):A.none()),(t=>(s.focusManager.set(e,t),A.some(!0)))))(e,a,t,s,r)))))},a=(e,t,o)=>{const n=o.cyclic?rg:ag;return r(e,0,o,n)},i=(e,t,o)=>{const n=o.cyclic?ig:lg;return r(e,0,o,n)},l=x([pg(dg([ug,cg(Jm)]),a),pg(cg(Jm),i),pg(dg([gg,cg(Zm)]),((e,t,o)=>o.onEnter.bind((o=>o(e,t)))))]),c=x([pg(cg(Qm),((e,t,o)=>o.onEscape.bind((o=>o(e,t))))),pg(cg(Jm),((e,t,o)=>n(e,o).filter((e=>!o.useTabstopAt(e))).bind((n=>((e=>(e=>rt(e))(e).bind(dt).exists((t=>Qe(t,e))))(n)?a:i)(e,t,o)))))]);return yg(t,_a.init,l,c,(()=>A.some(s)))};var wg=xg(ts("cyclic",T)),Sg=xg(ts("cyclic",E));const kg=(e,t,o)=>Sm(o)&&cg(eg)(t.event)?A.none():((e,t,o)=>(Vr(e,o,mr()),A.some(!0)))(e,0,o),Cg=(e,t)=>A.some(!0),Og=[xs("execute",kg),xs("useSpace",!1),xs("useEnter",!0),xs("useControlEnter",!1),xs("useDown",!1)],_g=(e,t,o)=>o.execute(e,t,e.element);var Tg=yg(Og,_a.init,((e,t,o,n)=>{const s=o.useSpace&&!Sm(e.element)?eg:[],r=o.useEnter?Zm:[],a=o.useDown?sg:[],i=s.concat(r).concat(a);return[pg(cg(i),_g)].concat(o.useControlEnter?[pg(dg([mg,cg(Zm)]),_g)]:[])}),((e,t,o,n)=>o.useSpace&&!Sm(e.element)?[pg(cg(eg),Cg)]:[]),(()=>A.none()));const Eg=()=>{const e=nc();return Ta({readState:()=>e.get().map((e=>({numRows:String(e.numRows),numColumns:String(e.numColumns)}))).getOr({numRows:"?",numColumns:"?"}),setGridSize:(t,o)=>{e.set({numRows:t,numColumns:o})},getNumRows:()=>e.get().map((e=>e.numRows)),getNumColumns:()=>e.get().map((e=>e.numColumns))})};var Ag=Object.freeze({__proto__:null,flatgrid:Eg,init:e=>e.state(e)});const Mg=e=>(t,o,n,s)=>{const r=e(t.element);return Fg(r,t,o,n,s)},Dg=(e,t)=>{const o=xc(e,t);return Mg(o)},Bg=(e,t)=>{const o=xc(t,e);return Mg(o)},Ig=e=>(t,o,n,s)=>Fg(e,t,o,n,s),Fg=(e,t,o,n,s)=>n.focusManager.get(t).bind((o=>e(t.element,o,n,s))).map((e=>(n.focusManager.set(t,e),!0))),Rg=Ig,Ng=Ig,Vg=Ig,zg=e=>!(e=>e.offsetWidth<=0&&e.offsetHeight<=0)(e.dom),Lg=(e,t,o)=>{const n=Zc(e,o);return((e,o)=>$(e,(e=>Qe(e,t))).map((t=>({index:t,candidates:e}))))(U(n,zg))},Hg=(e,t)=>$(e,(e=>Qe(t,e))),Pg=(e,t,o,n)=>n(Math.floor(t/o),t%o).bind((t=>{const n=t.row*o+t.column;return n>=0&&n<e.length?A.some(e[n]):A.none()})),Ug=(e,t,o,n,s)=>Pg(e,t,n,((t,r)=>{const a=t===o-1?e.length-t*n:n,i=Zi(r,s,0,a-1);return A.some({row:t,column:i})})),Wg=(e,t,o,n,s)=>Pg(e,t,n,((t,r)=>{const a=Zi(t,s,0,o-1),i=a===o-1?e.length-a*n:n,l=Qi(r,0,i-1);return A.some({row:a,column:l})})),jg=[ns("selector"),xs("execute",kg),Ni("onEscape"),xs("captureTab",!1),Pi()],Gg=(e,t,o)=>{vi(e.element,t.selector).each((o=>{t.focusManager.set(e,o)}))},$g=e=>(t,o,n,s)=>Lg(t,o,n.selector).bind((t=>e(t.candidates,t.index,s.getNumRows().getOr(n.initSize.numRows),s.getNumColumns().getOr(n.initSize.numColumns)))),qg=(e,t,o)=>o.captureTab?A.some(!0):A.none(),Yg=$g(((e,t,o,n)=>Ug(e,t,o,n,-1))),Xg=$g(((e,t,o,n)=>Ug(e,t,o,n,1))),Kg=$g(((e,t,o,n)=>Wg(e,t,o,n,-1))),Jg=$g(((e,t,o,n)=>Wg(e,t,o,n,1))),Zg=x([pg(cg(tg),Dg(Yg,Xg)),pg(cg(ng),Bg(Yg,Xg)),pg(cg(og),Rg(Kg)),pg(cg(sg),Ng(Jg)),pg(dg([ug,cg(Jm)]),qg),pg(dg([gg,cg(Jm)]),qg),pg(cg(eg.concat(Zm)),((e,t,o,n)=>((e,t)=>t.focusManager.get(e).bind((e=>yi(e,t.selector))))(e,o).bind((n=>o.execute(e,t,n)))))]),Qg=x([pg(cg(Qm),((e,t,o)=>o.onEscape(e,t))),pg(cg(eg),Cg)]);var ep=yg(jg,Eg,Zg,Qg,(()=>A.some(Gg)));const tp=(e,t,o,n,s)=>{const r=(e,t,o)=>s(e,t,n,0,o.length-1,o[t],(t=>{return n=o[t],"button"===We(n)&&"disabled"===_t(n,"disabled")?r(e,t,o):A.from(o[t]);var n}));return Lg(e,o,t).bind((e=>{const t=e.index,o=e.candidates;return r(t,t,o)}))},op=(e,t,o,n)=>tp(e,t,o,n,((e,t,o,n,s,r,a)=>{const i=Qi(t+o,n,s);return i===e?A.from(r):a(i)})),np=(e,t,o,n)=>tp(e,t,o,n,((e,t,o,n,s,r,a)=>{const i=Zi(t,o,n,s);return i===e?A.none():a(i)})),sp=[ns("selector"),xs("getInitial",A.none),xs("execute",kg),Ni("onEscape"),xs("executeOnMove",!1),xs("allowVertical",!0),xs("allowHorizontal",!0),xs("cycles",!0)],rp=(e,t,o)=>((e,t)=>t.focusManager.get(e).bind((e=>yi(e,t.selector))))(e,o).bind((n=>o.execute(e,t,n))),ap=(e,t,o)=>{t.getInitial(e).orThunk((()=>vi(e.element,t.selector))).each((o=>{t.focusManager.set(e,o)}))},ip=(e,t,o)=>(o.cycles?np:op)(e,o.selector,t,-1),lp=(e,t,o)=>(o.cycles?np:op)(e,o.selector,t,1),cp=e=>(t,o,n,s)=>e(t,o,n,s).bind((()=>n.executeOnMove?rp(t,o,n):A.some(!0))),dp=x([pg(cg(eg),Cg),pg(cg(Qm),((e,t,o)=>o.onEscape(e,t)))]);var up=yg(sp,_a.init,((e,t,o,n)=>{const s=[...o.allowHorizontal?tg:[]].concat(o.allowVertical?og:[]),r=[...o.allowHorizontal?ng:[]].concat(o.allowVertical?sg:[]);return[pg(cg(s),cp(Dg(ip,lp))),pg(cg(r),cp(Bg(ip,lp))),pg(cg(Zm),rp),pg(cg(eg),rp)]}),dp,(()=>A.some(ap)));const mp=(e,t,o)=>A.from(e[t]).bind((e=>A.from(e[o]).map((e=>({rowIndex:t,columnIndex:o,cell:e}))))),gp=(e,t,o,n)=>{const s=e[t].length,r=Zi(o,n,0,s-1);return mp(e,t,r)},pp=(e,t,o,n)=>{const s=Zi(o,n,0,e.length-1),r=e[s].length,a=Qi(t,0,r-1);return mp(e,s,a)},hp=(e,t,o,n)=>{const s=e[t].length,r=Qi(o+n,0,s-1);return mp(e,t,r)},fp=(e,t,o,n)=>{const s=Qi(o+n,0,e.length-1),r=e[s].length,a=Qi(t,0,r-1);return mp(e,s,a)},bp=[cs("selectors",[ns("row"),ns("cell")]),xs("cycles",!0),xs("previousSelector",A.none),xs("execute",kg)],vp=(e,t,o)=>{t.previousSelector(e).orThunk((()=>{const o=t.selectors;return vi(e.element,o.cell)})).each((o=>{t.focusManager.set(e,o)}))},yp=(e,t)=>(o,n,s)=>{const r=s.cycles?e:t;return yi(n,s.selectors.row).bind((e=>{const t=Zc(e,s.selectors.cell);return Hg(t,n).bind((t=>{const n=Zc(o,s.selectors.row);return Hg(n,e).bind((e=>{const o=((e,t)=>L(e,(e=>Zc(e,t.selectors.cell))))(n,s);return r(o,e,t).map((e=>e.cell))}))}))}))},xp=yp(((e,t,o)=>gp(e,t,o,-1)),((e,t,o)=>hp(e,t,o,-1))),wp=yp(((e,t,o)=>gp(e,t,o,1)),((e,t,o)=>hp(e,t,o,1))),Sp=yp(((e,t,o)=>pp(e,o,t,-1)),((e,t,o)=>fp(e,o,t,-1))),kp=yp(((e,t,o)=>pp(e,o,t,1)),((e,t,o)=>fp(e,o,t,1))),Cp=x([pg(cg(tg),Dg(xp,wp)),pg(cg(ng),Bg(xp,wp)),pg(cg(og),Rg(Sp)),pg(cg(sg),Ng(kp)),pg(cg(eg.concat(Zm)),((e,t,o)=>Ll(e.element).bind((n=>o.execute(e,t,n)))))]),Op=x([pg(cg(eg),Cg)]);var _p=yg(bp,_a.init,Cp,Op,(()=>A.some(vp)));const Tp=[ns("selector"),xs("execute",kg),xs("moveOnTab",!1)],Ep=(e,t,o)=>o.focusManager.get(e).bind((n=>o.execute(e,t,n))),Ap=(e,t,o)=>{vi(e.element,t.selector).each((o=>{t.focusManager.set(e,o)}))},Mp=(e,t,o)=>np(e,o.selector,t,-1),Dp=(e,t,o)=>np(e,o.selector,t,1),Bp=x([pg(cg(og),Vg(Mp)),pg(cg(sg),Vg(Dp)),pg(dg([ug,cg(Jm)]),((e,t,o,n)=>o.moveOnTab?Vg(Mp)(e,t,o,n):A.none())),pg(dg([gg,cg(Jm)]),((e,t,o,n)=>o.moveOnTab?Vg(Dp)(e,t,o,n):A.none())),pg(cg(Zm),Ep),pg(cg(eg),Ep)]),Ip=x([pg(cg(eg),Cg)]);var Fp=yg(Tp,_a.init,Bp,Ip,(()=>A.some(Ap)));const Rp=[Ni("onSpace"),Ni("onEnter"),Ni("onShiftEnter"),Ni("onLeft"),Ni("onRight"),Ni("onTab"),Ni("onShiftTab"),Ni("onUp"),Ni("onDown"),Ni("onEscape"),xs("stopSpaceKeyup",!1),ms("focusIn")];var Np=yg(Rp,_a.init,((e,t,o)=>[pg(cg(eg),o.onSpace),pg(dg([gg,cg(Zm)]),o.onEnter),pg(dg([ug,cg(Zm)]),o.onShiftEnter),pg(dg([ug,cg(Jm)]),o.onShiftTab),pg(dg([gg,cg(Jm)]),o.onTab),pg(cg(og),o.onUp),pg(cg(sg),o.onDown),pg(cg(tg),o.onLeft),pg(cg(ng),o.onRight),pg(cg(eg),o.onSpace)]),((e,t,o)=>[...o.stopSpaceKeyup?[pg(cg(eg),Cg)]:[],pg(cg(Qm),o.onEscape)]),(e=>e.focusIn));const Vp=wg.schema(),zp=Sg.schema(),Lp=up.schema(),Hp=ep.schema(),Pp=_p.schema(),Up=Tg.schema(),Wp=Fp.schema(),jp=Np.schema(),Gp=Dl({branchKey:"mode",branches:Object.freeze({__proto__:null,acyclic:Vp,cyclic:zp,flow:Lp,flatgrid:Hp,matrix:Pp,execution:Up,menu:Wp,special:jp}),name:"keying",active:{events:(e,t)=>e.handler.toEvents(e,t)},apis:{focusIn:(e,t,o)=>{t.sendFocusIn(t).fold((()=>{e.getSystem().triggerFocus(e.element,e.element)}),(n=>{n(e,t,o)}))},setGridSize:(e,t,o,n,s)=>{(e=>ye(e,"setGridSize"))(o)?o.setGridSize(n,s):console.error("Layout does not support setGridSize")}},state:Ag}),$p=(e,t)=>{Hl((()=>{((e,t,o)=>{const n=e.components();(e=>{H(e.components(),(e=>Uo(e.element))),Po(e.element),e.syncComponents()})(e);const s=o(t),r=J(n,s);H(r,(t=>{Ed(t),e.getSystem().removeFromWorld(t)})),H(s,(t=>{Td(t)?Bd(e,t):(e.getSystem().addToWorld(t),Bd(e,t),xt(e.element)&&Ad(t))})),e.syncComponents()})(e,t,(()=>L(t,e.getSystem().build)))}),e.element)},qp=(e,t)=>{Hl((()=>{((o,n,s)=>{const r=o.components(),a=Y(n,(e=>Ca(e).toArray()));H(r,(e=>{R(a,e)||Dd(e)}));const i=((e,t,o)=>Qa(e,t,((t,n)=>ei(e,n,t,o))))(e.element,t,e.getSystem().buildOrPatch),l=J(r,i);H(l,(e=>{Td(e)&&Dd(e)})),H(i,(e=>{Td(e)||Md(o,e)})),o.syncComponents()})(e,t)}),e.element)},Yp=(e,t,o,n)=>{Dd(t);const s=ei(e.element,o,n,e.getSystem().buildOrPatch);Md(e,s),e.syncComponents()},Xp=(e,t,o)=>{const n=e.getSystem().build(o);Fd(e,n,t)},Kp=(e,t,o,n)=>{Nd(t),Xp(e,((e,t)=>((e,t,o)=>{ct(e,o).fold((()=>{Lo(e,t)}),(e=>{No(e,t)}))})(e,t,o)),n)},Jp=(e,t)=>e.components(),Zp=(e,t,o,n,s)=>{const r=Jp(e);return A.from(r[n]).map((o=>(s.fold((()=>Nd(o)),(s=>{(t.reuseDom?Yp:Kp)(e,o,n,s)})),o)))};var Qp=Object.freeze({__proto__:null,append:(e,t,o,n)=>{Xp(e,Lo,n)},prepend:(e,t,o,n)=>{Xp(e,zo,n)},remove:(e,t,o,n)=>{const s=Jp(e),r=G(s,(e=>Qe(n.element,e.element)));r.each(Nd)},replaceAt:Zp,replaceBy:(e,t,o,n,s)=>{const r=Jp(e);return $(r,n).bind((o=>Zp(e,t,0,o,s)))},set:(e,t,o,n)=>(t.reuseDom?qp:$p)(e,n),contents:Jp});const eh=Al({fields:[Os("reuseDom",!0)],name:"replacing",apis:Qp}),th=(e,t)=>{const o=((e,t)=>{const o=Hr(t);return Al({fields:[ns("enabled")],name:e,active:{events:x(o)}})})(e,t);return{key:e,value:{config:{},me:o,configAsRaw:x({}),initialConfig:{},state:_a}}},oh=(e,t)=>{t.ignore||(Rl(e.element),t.onFocus(e))};var nh=Object.freeze({__proto__:null,focus:oh,blur:(e,t)=>{t.ignore||Nl(e.element)},isFocused:e=>Vl(e.element)}),sh=Object.freeze({__proto__:null,exhibit:(e,t)=>{const o=t.ignore?{}:{attributes:{tabindex:"-1"}};return Aa(o)},events:e=>Hr([Wr(lr(),((t,o)=>{oh(t,e),o.stop()}))].concat(e.stopMousedown?[Wr(js(),((e,t)=>{t.event.prevent()}))]:[]))}),rh=[Ri("onFocus"),xs("stopMousedown",!1),xs("ignore",!1)];const ah=Al({fields:rh,name:"focusing",active:sh,apis:nh}),ih=(e,t,o,n)=>{const s=o.get();o.set(n),((e,t,o)=>{t.toggleClass.each((t=>{o.get()?Wa(e.element,t):Ga(e.element,t)}))})(e,t,o),((e,t,o)=>{const n=t.aria;n.update(e,n,o.get())})(e,t,o),s!==n&&t.onToggled(e,n)},lh=(e,t,o)=>{ih(e,t,o,!o.get())},ch=(e,t,o)=>{ih(e,t,o,t.selected)};var dh=Object.freeze({__proto__:null,onLoad:ch,toggle:lh,isOn:(e,t,o)=>o.get(),on:(e,t,o)=>{ih(e,t,o,!0)},off:(e,t,o)=>{ih(e,t,o,!1)},set:ih}),uh=Object.freeze({__proto__:null,exhibit:()=>Aa({}),events:(e,t)=>{const o=(n=e,s=t,r=lh,ea((e=>{r(e,n,s)})));var n,s,r;const a=Cl(e,t,ch);return Hr(q([e.toggleOnExecute?[o]:[],[a]]))}});const mh=(e,t,o)=>{Ct(e.element,"aria-expanded",o)};var gh=[xs("selected",!1),ms("toggleClass"),xs("toggleOnExecute",!0),Ri("onToggled"),ws("aria",{mode:"none"},Zn("mode",{pressed:[xs("syncWithExpanded",!1),Li("update",((e,t,o)=>{Ct(e.element,"aria-pressed",o),t.syncWithExpanded&&mh(e,0,o)}))],checked:[Li("update",((e,t,o)=>{Ct(e.element,"aria-checked",o)}))],expanded:[Li("update",mh)],selected:[Li("update",((e,t,o)=>{Ct(e.element,"aria-selected",o)}))],none:[Li("update",b)]}))];const ph=Al({fields:gh,name:"toggling",active:uh,apis:dh,state:(!1,{init:()=>{const e=As(false);return{get:()=>e.get(),set:t=>e.set(t),clear:()=>e.set(false),readState:()=>e.get()}}})});const hh=()=>{const e=(e,t)=>{t.stop(),Nr(e)};return[Wr(tr(),e),Wr(pr(),e),Yr(Hs()),Yr(js())]},fh=e=>Hr(q([e.map((e=>ea(((t,o)=>{e(t),o.stop()})))).toArray(),hh()])),bh="alloy.item-hover",vh="alloy.item-focus",yh="alloy.item-toggled",xh=e=>{(Ll(e.element).isNone()||ah.isFocused(e))&&(ah.isFocused(e)||ah.focus(e),Rr(e,bh,{item:e}))},wh=e=>{Rr(e,vh,{item:e})},Sh=x(bh),kh=x(vh),Ch=x(yh),Oh=e=>e.toggling.map((e=>e.exclusive?"menuitemradio":"menuitemcheckbox")).getOr("menuitem"),_h=[ns("data"),ns("components"),ns("dom"),xs("hasSubmenu",!1),ms("toggling"),Su("itemBehaviours",[ph,ah,Gp,vu]),xs("ignoreFocus",!1),xs("domModification",{}),Li("builder",(e=>({dom:e.dom,domModification:{...e.domModification,attributes:{role:Oh(e),...e.domModification.attributes,"aria-haspopup":e.hasSubmenu,...e.hasSubmenu?{"aria-expanded":!1}:{}}},behaviours:ku(e.itemBehaviours,[e.toggling.fold(ph.revoke,(e=>ph.config((e=>({aria:{mode:"checked"},...ge(e,((e,t)=>"exclusive"!==t)),onToggled:(t,o)=>{p(e.onToggled)&&e.onToggled(t,o),((e,t)=>{Rr(e,yh,{item:e,state:t})})(t,o)}}))(e)))),ah.config({ignore:e.ignoreFocus,stopMousedown:e.ignoreFocus,onFocus:e=>{wh(e)}}),Gp.config({mode:"execution"}),vu.config({store:{mode:"memory",initialValue:e.data}}),th("item-type-events",[...hh(),Wr(Ys(),xh),Wr(gr(),ah.focus)])]),components:e.components,eventOrder:e.eventOrder}))),xs("eventOrder",{})],Th=[ns("dom"),ns("components"),Li("builder",(e=>({dom:e.dom,components:e.components,events:Hr([Xr(gr())])})))],Eh=x("item-widget"),Ah=x([$u({name:"widget",overrides:e=>({behaviours:Tl([vu.config({store:{mode:"manual",getValue:t=>e.data,setValue:b}})])})})]),Mh=[ns("uid"),ns("data"),ns("components"),ns("dom"),xs("autofocus",!1),xs("ignoreFocus",!1),Su("widgetBehaviours",[vu,ah,Gp]),xs("domModification",{}),gm(Ah()),Li("builder",(e=>{const t=sm(Eh(),e,Ah()),o=rm(Eh(),e,t.internals()),n=t=>am(t,e,"widget").map((e=>(Gp.focusIn(e),e))),s=(t,o)=>Sm(o.event.target)?A.none():e.autofocus?(o.setSource(t.element),A.none()):A.none();return{dom:e.dom,components:o,domModification:e.domModification,events:Hr([ea(((e,t)=>{n(e).each((e=>{t.stop()}))})),Wr(Ys(),xh),Wr(gr(),((t,o)=>{e.autofocus?n(t):ah.focus(t)}))]),behaviours:ku(e.widgetBehaviours,[vu.config({store:{mode:"memory",initialValue:e.data}}),ah.config({ignore:e.ignoreFocus,onFocus:e=>{wh(e)}}),Gp.config({mode:"special",focusIn:e.autofocus?e=>{n(e)}:Bl(),onLeft:s,onRight:s,onEscape:(t,o)=>ah.isFocused(t)||e.autofocus?e.autofocus?(o.setSource(t.element),A.none()):A.none():(ah.focus(t),A.some(!0))})])}}))],Dh=Zn("type",{widget:Mh,item:_h,separator:Th}),Bh=x([Xu({factory:{sketch:e=>{const t=Kn("menu.spec item",Dh,e);return t.builder(t)}},name:"items",unit:"item",defaults:(e,t)=>ve(t,"uid")?t:{...t,uid:fa("item")},overrides:(e,t)=>({type:t.type,ignoreFocus:e.fakeFocus,domModification:{classes:[e.markers.item]}})})]),Ih=x([ns("value"),ns("items"),ns("dom"),ns("components"),xs("eventOrder",{}),yu("menuBehaviours",[Xm,vu,Om,Gp]),ws("movement",{mode:"menu",moveOnTab:!0},Zn("mode",{grid:[Pi(),Li("config",((e,t)=>({mode:"flatgrid",selector:"."+e.markers.item,initSize:{numColumns:t.initSize.numColumns,numRows:t.initSize.numRows},focusManager:e.focusManager})))],matrix:[Li("config",((e,t)=>({mode:"matrix",selectors:{row:t.rowSelector,cell:"."+e.markers.item},previousSelector:t.previousSelector,focusManager:e.focusManager}))),ns("rowSelector"),xs("previousSelector",A.none)],menu:[xs("moveOnTab",!0),Li("config",((e,t)=>({mode:"menu",selector:"."+e.markers.item,moveOnTab:t.moveOnTab,focusManager:e.focusManager})))]})),ss("markers",Mi()),xs("fakeFocus",!1),xs("focusManager",fg()),Ri("onHighlight"),Ri("onDehighlight")]),Fh=x("alloy.menu-focus"),Rh=wm({name:"Menu",configFields:Ih(),partFields:Bh(),factory:(e,t,o,n)=>({uid:e.uid,dom:e.dom,markers:e.markers,behaviours:wu(e.menuBehaviours,[Xm.config({highlightClass:e.markers.selectedItem,itemClass:e.markers.item,onHighlight:e.onHighlight,onDehighlight:e.onDehighlight}),vu.config({store:{mode:"memory",initialValue:e.value}}),Om.config({find:A.some}),Gp.config(e.movement.config(e,e.movement))]),events:Hr([Wr(kh(),((e,t)=>{const o=t.event;e.getSystem().getByDom(o.target).each((o=>{Xm.highlight(e,o),t.stop(),Rr(e,Fh(),{menu:e,item:o})}))})),Wr(Sh(),((e,t)=>{const o=t.event.item;Xm.highlight(e,o)})),Wr(Ch(),((e,t)=>{const{item:o,state:n}=t.event;n&&"menuitemradio"===_t(o.element,"role")&&((e,t)=>{const o=Zc(e.element,'[role="menuitemradio"][aria-checked="true"]');H(o,(o=>{Qe(o,t.element)||e.getSystem().getByDom(o).each((e=>{ph.off(e)}))}))})(e,o)}))]),components:t,eventOrder:e.eventOrder,domModification:{attributes:{role:"menu"}}})}),Nh=(e,t,o,n)=>be(o,n).bind((n=>be(e,n).bind((n=>{const s=Nh(e,t,o,n);return A.some([n].concat(s))})))).getOr([]),Vh=e=>"prepared"===e.type?A.some(e.menu):A.none(),zh=()=>{const e=As({}),t=As({}),o=As({}),n=nc(),s=As({}),r=e=>a(e).bind(Vh),a=e=>be(t.get(),e),i=t=>be(e.get(),t);return{setMenuBuilt:(e,o)=>{t.set({...t.get(),[e]:{type:"prepared",menu:o}})},setContents:(r,a,i,l)=>{n.set(r),e.set(i),t.set(a),s.set(l);const c=((e,t)=>{const o={};le(e,((e,t)=>{H(e,(e=>{o[e]=t}))}));const n=t,s=de(t,((e,t)=>({k:e,v:t}))),r=ce(s,((e,t)=>[t].concat(Nh(o,n,s,t))));return ce(o,(e=>be(r,e).getOr([e])))})(l,i);o.set(c)},expand:t=>be(e.get(),t).map((e=>{const n=be(o.get(),t).getOr([]);return[e].concat(n)})),refresh:e=>be(o.get(),e),collapse:e=>be(o.get(),e).bind((e=>e.length>1?A.some(e.slice(1)):A.none())),lookupMenu:a,lookupItem:i,otherMenus:e=>{const t=s.get();return J(ae(t),e)},getPrimary:()=>n.get().bind(r),getMenus:()=>t.get(),clear:()=>{e.set({}),t.set({}),o.set({}),n.clear()},isClear:()=>n.get().isNone(),getTriggeringPath:(t,s)=>{const a=U(i(t).toArray(),(e=>r(e).isSome()));return be(o.get(),t).bind((t=>{const o=K(a.concat(t));return(e=>{const t=[];for(let o=0;o<e.length;o++){const n=e[o];if(!n.isSome())return A.none();t.push(n.getOrDie())}return A.some(t)})(Y(o,((t,a)=>((t,o,n)=>r(t).bind((s=>(t=>he(e.get(),((e,o)=>e===t)))(t).bind((e=>o(e).map((e=>({triggeredMenu:s,triggeringItem:e,triggeringPath:n}))))))))(t,s,o.slice(0,a+1)).fold((()=>xe(n.get(),t)?[]:[A.none()]),(e=>[A.some(e)])))))}))}}},Lh=Vh,Hh=ca("tiered-menu-item-highlight"),Ph=ca("tiered-menu-item-dehighlight");var Uh;!function(e){e[e.HighlightMenuAndItem=0]="HighlightMenuAndItem",e[e.HighlightJustMenu=1]="HighlightJustMenu",e[e.HighlightNone=2]="HighlightNone"}(Uh||(Uh={}));const Wh=x("collapse-item"),jh=xm({name:"TieredMenu",configFields:[zi("onExecute"),zi("onEscape"),Vi("onOpenMenu"),Vi("onOpenSubmenu"),Ri("onRepositionMenu"),Ri("onCollapseMenu"),xs("highlightOnOpen",Uh.HighlightMenuAndItem),cs("data",[ns("primary"),ns("menus"),ns("expansions")]),xs("fakeFocus",!1),Ri("onHighlightItem"),Ri("onDehighlightItem"),Ri("onHover"),Bi(),ns("dom"),xs("navigateOnHover",!0),xs("stayInDom",!1),yu("tmenuBehaviours",[Gp,Xm,Om,eh]),xs("eventOrder",{})],apis:{collapseMenu:(e,t)=>{e.collapseMenu(t)},highlightPrimary:(e,t)=>{e.highlightPrimary(t)},repositionMenus:(e,t)=>{e.repositionMenus(t)}},factory:(e,t)=>{const o=nc(),n=zh(),s=e=>vu.getValue(e).value,r=t=>ce(e.data.menus,((e,t)=>Y(e.items,(e=>"separator"===e.type?[]:[e.data.value])))),a=Xm.highlight,i=(t,o)=>{a(t,o),Xm.getHighlighted(o).orThunk((()=>Xm.getFirst(o))).each((n=>{e.fakeFocus?Xm.highlight(o,n):Vr(t,n.element,gr())}))},l=(e,t)=>we(L(t,(t=>e.lookupMenu(t).bind((e=>"prepared"===e.type?A.some(e.menu):A.none()))))),c=(t,o,n)=>{const s=l(o,o.otherMenus(n));H(s,(o=>{Ya(o.element,[e.markers.backgroundMenu]),e.stayInDom||eh.remove(t,o)}))},d=(t,n)=>{const r=(t=>o.get().getOrThunk((()=>{const n={},r=Zc(t.element,`.${e.markers.item}`),a=U(r,(e=>"true"===_t(e,"aria-haspopup")));return H(a,(e=>{t.getSystem().getByDom(e).each((e=>{const t=s(e);n[t]=e}))})),o.set(n),n})))(t);le(r,((e,t)=>{const o=R(n,t);Ct(e.element,"aria-expanded",o)}))},u=(t,o,n)=>A.from(n[0]).bind((s=>o.lookupMenu(s).bind((s=>{if("notbuilt"===s.type)return A.none();{const r=s.menu,a=l(o,n.slice(1));return H(a,(t=>{Wa(t.element,e.markers.backgroundMenu)})),xt(r.element)||eh.append(t,di(r)),Ya(r.element,[e.markers.backgroundMenu]),i(t,r),c(t,o,n),A.some(r)}}))));let m;!function(e){e[e.HighlightSubmenu=0]="HighlightSubmenu",e[e.HighlightParent=1]="HighlightParent"}(m||(m={}));const g=(t,o,r=m.HighlightSubmenu)=>{if(o.hasConfigured(Lm)&&Lm.isDisabled(o))return A.some(o);{const a=s(o);return n.expand(a).bind((s=>(d(t,s),A.from(s[0]).bind((a=>n.lookupMenu(a).bind((i=>{const l=((e,t,o)=>{if("notbuilt"===o.type){const s=e.getSystem().build(o.nbMenu());return n.setMenuBuilt(t,s),s}return o.menu})(t,a,i);return xt(l.element)||eh.append(t,di(l)),e.onOpenSubmenu(t,o,l,K(s)),r===m.HighlightSubmenu?(Xm.highlightFirst(l),u(t,n,s)):(Xm.dehighlightAll(l),A.some(o))})))))))}},p=(t,o)=>{const r=s(o);return n.collapse(r).bind((s=>(d(t,s),u(t,n,s).map((n=>(e.onCollapseMenu(t,o,n),n))))))},h=t=>(o,n)=>yi(n.getSource(),`.${e.markers.item}`).bind((e=>o.getSystem().getByDom(e).toOptional().bind((e=>t(o,e).map(E))))),f=Hr([Wr(Fh(),((e,t)=>{const o=t.event.item;n.lookupItem(s(o)).each((()=>{const o=t.event.menu;Xm.highlight(e,o);const r=s(t.event.item);n.refresh(r).each((t=>c(e,n,t)))}))})),ea(((t,o)=>{const n=o.event.target;t.getSystem().getByDom(n).each((o=>{0===s(o).indexOf("collapse-item")&&p(t,o),g(t,o,m.HighlightSubmenu).fold((()=>{e.onExecute(t,o)}),b)}))})),Jr(((t,o)=>{(t=>{const o=((t,o,n)=>ce(n,((n,s)=>{const r=()=>Rh.sketch({...n,value:s,markers:e.markers,fakeFocus:e.fakeFocus,onHighlight:(e,t)=>{Rr(e,Hh,{menuComp:e,itemComp:t})},onDehighlight:(e,t)=>{Rr(e,Ph,{menuComp:e,itemComp:t})},focusManager:e.fakeFocus?bg():fg()});return s===o?{type:"prepared",menu:t.getSystem().build(r())}:{type:"notbuilt",nbMenu:r}})))(t,e.data.primary,e.data.menus),s=r();return n.setContents(e.data.primary,o,e.data.expansions,s),n.getPrimary()})(t).each((o=>{eh.append(t,di(o)),e.onOpenMenu(t,o),e.highlightOnOpen===Uh.HighlightMenuAndItem?i(t,o):e.highlightOnOpen===Uh.HighlightJustMenu&&a(t,o)}))})),Wr(Hh,((t,o)=>{e.onHighlightItem(t,o.event.menuComp,o.event.itemComp)})),Wr(Ph,((t,o)=>{e.onDehighlightItem(t,o.event.menuComp,o.event.itemComp)})),...e.navigateOnHover?[Wr(Sh(),((t,o)=>{const r=o.event.item;((e,t)=>{const o=s(t);n.refresh(o).bind((t=>(d(e,t),u(e,n,t))))})(t,r),g(t,r,m.HighlightParent),e.onHover(t,r)}))]:[]]),v=e=>Xm.getHighlighted(e).bind(Xm.getHighlighted),y={collapseMenu:e=>{v(e).each((t=>{p(e,t)}))},highlightPrimary:e=>{n.getPrimary().each((t=>{i(e,t)}))},repositionMenus:t=>{const o=n.getPrimary().bind((e=>v(t).bind((e=>{const t=s(e),o=fe(n.getMenus()),r=we(L(o,Lh));return n.getTriggeringPath(t,(e=>((e,t,o)=>re(t,(e=>{if(!e.getSystem().isConnected())return A.none();const t=Xm.getCandidates(e);return G(t,(e=>s(e)===o))})))(0,r,e)))})).map((t=>({primary:e,triggeringPath:t})))));o.fold((()=>{(e=>A.from(e.components()[0]).filter((e=>"menu"===_t(e.element,"role"))))(t).each((o=>{e.onRepositionMenu(t,o,[])}))}),(({primary:o,triggeringPath:n})=>{e.onRepositionMenu(t,o,n)}))}};return{uid:e.uid,dom:e.dom,markers:e.markers,behaviours:wu(e.tmenuBehaviours,[Gp.config({mode:"special",onRight:h(((e,t)=>Sm(t.element)?A.none():g(e,t,m.HighlightSubmenu))),onLeft:h(((e,t)=>Sm(t.element)?A.none():p(e,t))),onEscape:h(((t,o)=>p(t,o).orThunk((()=>e.onEscape(t,o).map((()=>t)))))),focusIn:(e,t)=>{n.getPrimary().each((t=>{Vr(e,t.element,gr())}))}}),Xm.config({highlightClass:e.markers.selectedMenu,itemClass:e.markers.menu}),Om.config({find:e=>Xm.getHighlighted(e)}),eh.config({})]),eventOrder:e.eventOrder,apis:y,events:f}},extraApis:{tieredData:(e,t,o)=>({primary:e,menus:t,expansions:o}),singleData:(e,t)=>({primary:e,menus:Ds(e,t),expansions:{}}),collapseItem:e=>({value:ca(Wh()),meta:{text:e}})}}),Gh=xm({name:"InlineView",configFields:[ns("lazySink"),Ri("onShow"),Ri("onHide"),bs("onEscape"),yu("inlineBehaviours",[Zd,vu,Il]),ys("fireDismissalEventInstead",[xs("event",Or())]),ys("fireRepositionEventInstead",[xs("event",_r())]),xs("getRelated",A.none),xs("isExtraPart",T),xs("eventOrder",A.none)],factory:(e,t)=>{const o=(t,o,n,s)=>{const r=e.lazySink(t).getOrDie();Zd.openWhileCloaked(t,o,(()=>_d.positionWithinBounds(r,t,n,s()))),vu.setValue(t,A.some({mode:"position",config:n,getBounds:s}))},n=(t,o,n,s)=>{const r=((e,t,o,n,s)=>{const r=()=>e.lazySink(t),a="horizontal"===n.type?{layouts:{onLtr:()=>xl(),onRtl:()=>wl()}}:{},i=e=>(e=>2===e.length)(e)?a:{};return jh.sketch({dom:{tag:"div"},data:n.data,markers:n.menu.markers,highlightOnOpen:n.menu.highlightOnOpen,fakeFocus:n.menu.fakeFocus,onEscape:()=>(Zd.close(t),e.onEscape.map((e=>e(t))),A.some(!0)),onExecute:()=>A.some(!0),onOpenMenu:(e,t)=>{_d.positionWithinBounds(r().getOrDie(),t,o,s())},onOpenSubmenu:(e,t,o,n)=>{const s=r().getOrDie();_d.position(s,o,{anchor:{type:"submenu",item:t,...i(n)}})},onRepositionMenu:(e,t,n)=>{const a=r().getOrDie();_d.positionWithinBounds(a,t,o,s()),H(n,(e=>{const t=i(e.triggeringPath);_d.position(a,e.triggeredMenu,{anchor:{type:"submenu",item:e.triggeringItem,...t}})}))}})})(e,t,o,n,s);Zd.open(t,r),vu.setValue(t,A.some({mode:"menu",menu:r}))},s=t=>{Zd.isOpen(t)&&vu.getValue(t).each((o=>{switch(o.mode){case"menu":Zd.getState(t).each(jh.repositionMenus);break;case"position":const n=e.lazySink(t).getOrDie();_d.positionWithinBounds(n,t,o.config,o.getBounds())}}))},r={setContent:(e,t)=>{Zd.setContent(e,t)},showAt:(e,t,n)=>{const s=A.none;o(e,t,n,s)},showWithinBounds:o,showMenuAt:(e,t,o)=>{n(e,t,o,A.none)},showMenuWithinBounds:n,hide:e=>{Zd.isOpen(e)&&(vu.setValue(e,A.none()),Zd.close(e))},getContent:e=>Zd.getState(e),reposition:s,isOpen:Zd.isOpen};return{uid:e.uid,dom:e.dom,behaviours:wu(e.inlineBehaviours,[Zd.config({isPartOf:(t,o,n)=>Si(o,n)||((t,o)=>e.getRelated(t).exists((e=>Si(e,o))))(t,n),getAttachPoint:t=>e.lazySink(t).getOrDie(),onOpen:t=>{e.onShow(t)},onClose:t=>{e.onHide(t)}}),vu.config({store:{mode:"memory",initialValue:A.none()}}),Il.config({channels:{...nu({isExtraPart:t.isExtraPart,...e.fireDismissalEventInstead.map((e=>({fireEventInstead:{event:e.event}}))).getOr({})}),...ru({...e.fireRepositionEventInstead.map((e=>({fireEventInstead:{event:e.event}}))).getOr({}),doReposition:s})}})]),eventOrder:e.eventOrder,apis:r}},apis:{showAt:(e,t,o,n)=>{e.showAt(t,o,n)},showWithinBounds:(e,t,o,n,s)=>{e.showWithinBounds(t,o,n,s)},showMenuAt:(e,t,o,n)=>{e.showMenuAt(t,o,n)},showMenuWithinBounds:(e,t,o,n,s)=>{e.showMenuWithinBounds(t,o,n,s)},hide:(e,t)=>{e.hide(t)},isOpen:(e,t)=>e.isOpen(t),getContent:(e,t)=>e.getContent(t),setContent:(e,t,o)=>{e.setContent(t,o)},reposition:(e,t)=>{e.reposition(t)}}});var $h=tinymce.util.Tools.resolve("tinymce.util.Delay");const qh=xm({name:"Button",factory:e=>{const t=fh(e.action),o=e.dom.tag,n=t=>be(e.dom,"attributes").bind((e=>be(e,t)));return{uid:e.uid,dom:e.dom,components:e.components,events:t,behaviours:ku(e.buttonBehaviours,[ah.config({}),Gp.config({mode:"execution",useSpace:!0,useEnter:!0})]),domModification:{attributes:"button"===o?{type:n("type").getOr("button"),...n("role").map((e=>({role:e}))).getOr({})}:{role:e.role.getOr(n("role").getOr("button"))}},eventOrder:e.eventOrder}},configFields:[xs("uid",void 0),ns("dom"),xs("components",[]),Su("buttonBehaviours",[ah,Gp]),ms("action"),ms("role"),xs("eventOrder",{})]}),Yh=e=>{const t=Re(e),o=lt(t),n=(e=>{const t=void 0!==e.dom.attributes?e.dom.attributes:[];return j(t,((e,t)=>"class"===t.name?e:{...e,[t.name]:t.value}),{})})(t),s=(e=>Array.prototype.slice.call(e.dom.classList,0))(t),r=0===o.length?{}:{innerHtml:ta(t)};return{tag:We(t),classes:s,attributes:n,...r}},Xh=e=>{const t=(e=>void 0!==e.uid)(e)&&ye(e,"uid")?e.uid:fa("memento");return{get:e=>e.getSystem().getByUid(t).getOrDie(),getOpt:e=>e.getSystem().getByUid(t).toOptional(),asSpec:()=>({...e,uid:t})}},{entries:Kh,setPrototypeOf:Jh,isFrozen:Zh,getPrototypeOf:Qh,getOwnPropertyDescriptor:ef}=Object;let{freeze:tf,seal:of,create:nf}=Object,{apply:sf,construct:rf}="undefined"!=typeof Reflect&&Reflect;sf||(sf=function(e,t,o){return e.apply(t,o)}),tf||(tf=function(e){return e}),of||(of=function(e){return e}),rf||(rf=function(e,t){return new e(...t)});const af=yf(Array.prototype.forEach),lf=yf(Array.prototype.pop),cf=yf(Array.prototype.push),df=yf(String.prototype.toLowerCase),uf=yf(String.prototype.toString),mf=yf(String.prototype.match),gf=yf(String.prototype.replace),pf=yf(String.prototype.indexOf),hf=yf(String.prototype.trim),ff=yf(RegExp.prototype.test),bf=(vf=TypeError,function(){for(var e=arguments.length,t=new Array(e),o=0;o<e;o++)t[o]=arguments[o];return rf(vf,t)});var vf;function yf(e){return function(t){for(var o=arguments.length,n=new Array(o>1?o-1:0),s=1;s<o;s++)n[s-1]=arguments[s];return sf(e,t,n)}}function xf(e,t,o){var n;o=null!==(n=o)&&void 0!==n?n:df,Jh&&Jh(e,null);let s=t.length;for(;s--;){let n=t[s];if("string"==typeof n){const e=o(n);e!==n&&(Zh(t)||(t[s]=e),n=e)}e[n]=!0}return e}function wf(e){const t=nf(null);for(const[o,n]of Kh(e))t[o]=n;return t}function Sf(e,t){for(;null!==e;){const o=ef(e,t);if(o){if(o.get)return yf(o.get);if("function"==typeof o.value)return yf(o.value)}e=Qh(e)}return function(e){return console.warn("fallback value for",e),null}}const kf=tf(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),Cf=tf(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Of=tf(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),_f=tf(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),Tf=tf(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),Ef=tf(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),Af=tf(["#text"]),Mf=tf(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),Df=tf(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Bf=tf(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),If=tf(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),Ff=of(/\{\{[\w\W]*|[\w\W]*\}\}/gm),Rf=of(/<%[\w\W]*|[\w\W]*%>/gm),Nf=of(/\${[\w\W]*}/gm),Vf=of(/^data-[\-\w.\u00B7-\uFFFF]/),zf=of(/^aria-[\-\w]+$/),Lf=of(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Hf=of(/^(?:\w+script|data):/i),Pf=of(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Uf=of(/^html$/i);var Wf=Object.freeze({__proto__:null,MUSTACHE_EXPR:Ff,ERB_EXPR:Rf,TMPLIT_EXPR:Nf,DATA_ATTR:Vf,ARIA_ATTR:zf,IS_ALLOWED_URI:Lf,IS_SCRIPT_OR_DATA:Hf,ATTR_WHITESPACE:Pf,DOCTYPE_NAME:Uf});const jf=()=>"undefined"==typeof window?null:window;var Gf=function e(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:jf();const o=t=>e(t);if(o.version="3.0.5",o.removed=[],!t||!t.document||9!==t.document.nodeType)return o.isSupported=!1,o;const n=t.document,s=n.currentScript;let{document:r}=t;const{DocumentFragment:a,HTMLTemplateElement:i,Node:l,Element:c,NodeFilter:d,NamedNodeMap:u=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:m,DOMParser:g,trustedTypes:p}=t,h=c.prototype,f=Sf(h,"cloneNode"),b=Sf(h,"nextSibling"),v=Sf(h,"childNodes"),y=Sf(h,"parentNode");if("function"==typeof i){const e=r.createElement("template");e.content&&e.content.ownerDocument&&(r=e.content.ownerDocument)}let x,w="";const{implementation:S,createNodeIterator:k,createDocumentFragment:C,getElementsByTagName:O}=r,{importNode:_}=n;let T={};o.isSupported="function"==typeof Kh&&"function"==typeof y&&S&&void 0!==S.createHTMLDocument;const{MUSTACHE_EXPR:E,ERB_EXPR:A,TMPLIT_EXPR:M,DATA_ATTR:D,ARIA_ATTR:B,IS_SCRIPT_OR_DATA:I,ATTR_WHITESPACE:F}=Wf;let{IS_ALLOWED_URI:R}=Wf,N=null;const V=xf({},[...kf,...Cf,...Of,...Tf,...Af]);let z=null;const L=xf({},[...Mf,...Df,...Bf,...If]);let H=Object.seal(Object.create(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),P=null,U=null,W=!0,j=!0,G=!1,$=!0,q=!1,Y=!1,X=!1,K=!1,J=!1,Z=!1,Q=!1,ee=!0,te=!1,oe=!0,ne=!1,se={},re=null;const ae=xf({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let ie=null;const le=xf({},["audio","video","img","source","image","track"]);let ce=null;const de=xf({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),ue="http://www.w3.org/1998/Math/MathML",me="http://www.w3.org/2000/svg",ge="http://www.w3.org/1999/xhtml";let pe=ge,he=!1,fe=null;const be=xf({},[ue,me,ge],uf);let ve;const ye=["application/xhtml+xml","text/html"];let xe,we=null;const Se=r.createElement("form"),ke=function(e){return e instanceof RegExp||e instanceof Function},Ce=function(e){if(!we||we!==e){if(e&&"object"==typeof e||(e={}),e=wf(e),ve=ve=-1===ye.indexOf(e.PARSER_MEDIA_TYPE)?"text/html":e.PARSER_MEDIA_TYPE,xe="application/xhtml+xml"===ve?uf:df,N="ALLOWED_TAGS"in e?xf({},e.ALLOWED_TAGS,xe):V,z="ALLOWED_ATTR"in e?xf({},e.ALLOWED_ATTR,xe):L,fe="ALLOWED_NAMESPACES"in e?xf({},e.ALLOWED_NAMESPACES,uf):be,ce="ADD_URI_SAFE_ATTR"in e?xf(wf(de),e.ADD_URI_SAFE_ATTR,xe):de,ie="ADD_DATA_URI_TAGS"in e?xf(wf(le),e.ADD_DATA_URI_TAGS,xe):le,re="FORBID_CONTENTS"in e?xf({},e.FORBID_CONTENTS,xe):ae,P="FORBID_TAGS"in e?xf({},e.FORBID_TAGS,xe):{},U="FORBID_ATTR"in e?xf({},e.FORBID_ATTR,xe):{},se="USE_PROFILES"in e&&e.USE_PROFILES,W=!1!==e.ALLOW_ARIA_ATTR,j=!1!==e.ALLOW_DATA_ATTR,G=e.ALLOW_UNKNOWN_PROTOCOLS||!1,$=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,q=e.SAFE_FOR_TEMPLATES||!1,Y=e.WHOLE_DOCUMENT||!1,J=e.RETURN_DOM||!1,Z=e.RETURN_DOM_FRAGMENT||!1,Q=e.RETURN_TRUSTED_TYPE||!1,K=e.FORCE_BODY||!1,ee=!1!==e.SANITIZE_DOM,te=e.SANITIZE_NAMED_PROPS||!1,oe=!1!==e.KEEP_CONTENT,ne=e.IN_PLACE||!1,R=e.ALLOWED_URI_REGEXP||Lf,pe=e.NAMESPACE||ge,H=e.CUSTOM_ELEMENT_HANDLING||{},e.CUSTOM_ELEMENT_HANDLING&&ke(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(H.tagNameCheck=e.CUSTOM_ELEMENT_HANDLING.tagNameCheck),e.CUSTOM_ELEMENT_HANDLING&&ke(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(H.attributeNameCheck=e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),e.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(H.allowCustomizedBuiltInElements=e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),q&&(j=!1),Z&&(J=!0),se&&(N=xf({},[...Af]),z=[],!0===se.html&&(xf(N,kf),xf(z,Mf)),!0===se.svg&&(xf(N,Cf),xf(z,Df),xf(z,If)),!0===se.svgFilters&&(xf(N,Of),xf(z,Df),xf(z,If)),!0===se.mathMl&&(xf(N,Tf),xf(z,Bf),xf(z,If))),e.ADD_TAGS&&(N===V&&(N=wf(N)),xf(N,e.ADD_TAGS,xe)),e.ADD_ATTR&&(z===L&&(z=wf(z)),xf(z,e.ADD_ATTR,xe)),e.ADD_URI_SAFE_ATTR&&xf(ce,e.ADD_URI_SAFE_ATTR,xe),e.FORBID_CONTENTS&&(re===ae&&(re=wf(re)),xf(re,e.FORBID_CONTENTS,xe)),oe&&(N["#text"]=!0),Y&&xf(N,["html","head","body"]),N.table&&(xf(N,["tbody"]),delete P.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw bf('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw bf('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');x=e.TRUSTED_TYPES_POLICY,w=x.createHTML("")}else void 0===x&&(x=function(e,t){if("object"!=typeof e||"function"!=typeof e.createPolicy)return null;let o=null;const n="data-tt-policy-suffix";t&&t.hasAttribute(n)&&(o=t.getAttribute(n));const s="dompurify"+(o?"#"+o:"");try{return e.createPolicy(s,{createHTML:e=>e,createScriptURL:e=>e})}catch(e){return console.warn("TrustedTypes policy "+s+" could not be created."),null}}(p,s)),null!==x&&"string"==typeof w&&(w=x.createHTML(""));tf&&tf(e),we=e}},Oe=xf({},["mi","mo","mn","ms","mtext"]),_e=xf({},["foreignobject","desc","title","annotation-xml"]),Te=xf({},["title","style","font","a","script"]),Ee=xf({},Cf);xf(Ee,Of),xf(Ee,_f);const Ae=xf({},Tf);xf(Ae,Ef);const Me=function(e){cf(o.removed,{element:e});try{e.parentNode.removeChild(e)}catch(t){e.remove()}},De=function(e,t){try{cf(o.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){cf(o.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e&&!z[e])if(J||Z)try{Me(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},Be=function(e){let t,o;if(K)e="<remove></remove>"+e;else{const t=mf(e,/^[\r\n\t ]+/);o=t&&t[0]}"application/xhtml+xml"===ve&&pe===ge&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");const n=x?x.createHTML(e):e;if(pe===ge)try{t=(new g).parseFromString(n,ve)}catch(e){}if(!t||!t.documentElement){t=S.createDocument(pe,"template",null);try{t.documentElement.innerHTML=he?w:n}catch(e){}}const s=t.body||t.documentElement;return e&&o&&s.insertBefore(r.createTextNode(o),s.childNodes[0]||null),pe===ge?O.call(t,Y?"html":"body")[0]:Y?t.documentElement:s},Ie=function(e){return k.call(e.ownerDocument||e,e,d.SHOW_ELEMENT|d.SHOW_COMMENT|d.SHOW_TEXT,null,!1)},Fe=function(e){return"object"==typeof l?e instanceof l:e&&"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName},Re=function(e,t,n){T[e]&&af(T[e],(e=>{e.call(o,t,n,we)}))},Ne=function(e){let t;if(Re("beforeSanitizeElements",e,null),(n=e)instanceof m&&("string"!=typeof n.nodeName||"string"!=typeof n.textContent||"function"!=typeof n.removeChild||!(n.attributes instanceof u)||"function"!=typeof n.removeAttribute||"function"!=typeof n.setAttribute||"string"!=typeof n.namespaceURI||"function"!=typeof n.insertBefore||"function"!=typeof n.hasChildNodes))return Me(e),!0;var n;const s=xe(e.nodeName);if(Re("uponSanitizeElement",e,{tagName:s,allowedTags:N}),e.hasChildNodes()&&!Fe(e.firstElementChild)&&(!Fe(e.content)||!Fe(e.content.firstElementChild))&&ff(/<[/\w]/g,e.innerHTML)&&ff(/<[/\w]/g,e.textContent))return Me(e),!0;if(!N[s]||P[s]){if(!P[s]&&ze(s)){if(H.tagNameCheck instanceof RegExp&&ff(H.tagNameCheck,s))return!1;if(H.tagNameCheck instanceof Function&&H.tagNameCheck(s))return!1}if(oe&&!re[s]){const t=y(e)||e.parentNode,o=v(e)||e.childNodes;if(o&&t)for(let n=o.length-1;n>=0;--n)t.insertBefore(f(o[n],!0),b(e))}return Me(e),!0}return e instanceof c&&!function(e){let t=y(e);t&&t.tagName||(t={namespaceURI:pe,tagName:"template"});const o=df(e.tagName),n=df(t.tagName);return!!fe[e.namespaceURI]&&(e.namespaceURI===me?t.namespaceURI===ge?"svg"===o:t.namespaceURI===ue?"svg"===o&&("annotation-xml"===n||Oe[n]):Boolean(Ee[o]):e.namespaceURI===ue?t.namespaceURI===ge?"math"===o:t.namespaceURI===me?"math"===o&&_e[n]:Boolean(Ae[o]):e.namespaceURI===ge?!(t.namespaceURI===me&&!_e[n])&&!(t.namespaceURI===ue&&!Oe[n])&&!Ae[o]&&(Te[o]||!Ee[o]):!("application/xhtml+xml"!==ve||!fe[e.namespaceURI]))}(e)?(Me(e),!0):"noscript"!==s&&"noembed"!==s&&"noframes"!==s||!ff(/<\/no(script|embed|frames)/i,e.innerHTML)?(q&&3===e.nodeType&&(t=e.textContent,t=gf(t,E," "),t=gf(t,A," "),t=gf(t,M," "),e.textContent!==t&&(cf(o.removed,{element:e.cloneNode()}),e.textContent=t)),Re("afterSanitizeElements",e,null),!1):(Me(e),!0)},Ve=function(e,t,o){if(ee&&("id"===t||"name"===t)&&(o in r||o in Se))return!1;if(j&&!U[t]&&ff(D,t));else if(W&&ff(B,t));else if(!z[t]||U[t]){if(!(ze(e)&&(H.tagNameCheck instanceof RegExp&&ff(H.tagNameCheck,e)||H.tagNameCheck instanceof Function&&H.tagNameCheck(e))&&(H.attributeNameCheck instanceof RegExp&&ff(H.attributeNameCheck,t)||H.attributeNameCheck instanceof Function&&H.attributeNameCheck(t))||"is"===t&&H.allowCustomizedBuiltInElements&&(H.tagNameCheck instanceof RegExp&&ff(H.tagNameCheck,o)||H.tagNameCheck instanceof Function&&H.tagNameCheck(o))))return!1}else if(ce[t]);else if(ff(R,gf(o,F,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==pf(o,"data:")||!ie[e])if(G&&!ff(I,gf(o,F,"")));else if(o)return!1;return!0},ze=function(e){return e.indexOf("-")>0},Le=function(e){let t,o,n,s;Re("beforeSanitizeAttributes",e,null);const{attributes:r}=e;if(!r)return;const a={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:z};for(s=r.length;s--;){t=r[s];const{name:i,namespaceURI:l}=t;o="value"===i?t.value:hf(t.value);const c=o;if(n=xe(i),a.attrName=n,a.attrValue=o,a.keepAttr=!0,a.forceKeepAttr=void 0,Re("uponSanitizeAttribute",e,a),o=a.attrValue,a.forceKeepAttr)continue;if(!a.keepAttr){De(i,e);continue}if(!$&&ff(/\/>/i,o)){De(i,e);continue}q&&(o=gf(o,E," "),o=gf(o,A," "),o=gf(o,M," "));const d=xe(e.nodeName);if(Ve(d,n,o)){if(!te||"id"!==n&&"name"!==n||(De(i,e),o="user-content-"+o),x&&"object"==typeof p&&"function"==typeof p.getAttributeType)if(l);else switch(p.getAttributeType(d,n)){case"TrustedHTML":o=x.createHTML(o);break;case"TrustedScriptURL":o=x.createScriptURL(o)}if(o!==c)try{l?e.setAttributeNS(l,i,o):e.setAttribute(i,o)}catch(t){De(i,e)}}else De(i,e)}Re("afterSanitizeAttributes",e,null)},He=function e(t){let o;const n=Ie(t);for(Re("beforeSanitizeShadowDOM",t,null);o=n.nextNode();)Re("uponSanitizeShadowNode",o,null),Ne(o)||(o.content instanceof a&&e(o.content),Le(o));Re("afterSanitizeShadowDOM",t,null)};return o.sanitize=function(e){let t,s,r,i,c=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(he=!e,he&&(e="\x3c!--\x3e"),"string"!=typeof e&&!Fe(e)){if("function"!=typeof e.toString)throw bf("toString is not a function");if("string"!=typeof(e=e.toString()))throw bf("dirty is not a string, aborting")}if(!o.isSupported)return e;if(X||Ce(c),o.removed=[],"string"==typeof e&&(ne=!1),ne){if(e.nodeName){const t=xe(e.nodeName);if(!N[t]||P[t])throw bf("root node is forbidden and cannot be sanitized in-place")}}else if(e instanceof l)t=Be("\x3c!----\x3e"),s=t.ownerDocument.importNode(e,!0),1===s.nodeType&&"BODY"===s.nodeName||"HTML"===s.nodeName?t=s:t.appendChild(s);else{if(!J&&!q&&!Y&&-1===e.indexOf("<"))return x&&Q?x.createHTML(e):e;if(t=Be(e),!t)return J?null:Q?w:""}t&&K&&Me(t.firstChild);const d=Ie(ne?e:t);for(;r=d.nextNode();)Ne(r)||(r.content instanceof a&&He(r.content),Le(r));if(ne)return e;if(J){if(Z)for(i=C.call(t.ownerDocument);t.firstChild;)i.appendChild(t.firstChild);else i=t;return(z.shadowroot||z.shadowrootmode)&&(i=_.call(n,i,!0)),i}let u=Y?t.outerHTML:t.innerHTML;return Y&&N["!doctype"]&&t.ownerDocument&&t.ownerDocument.doctype&&t.ownerDocument.doctype.name&&ff(Uf,t.ownerDocument.doctype.name)&&(u="<!DOCTYPE "+t.ownerDocument.doctype.name+">\n"+u),q&&(u=gf(u,E," "),u=gf(u,A," "),u=gf(u,M," ")),x&&Q?x.createHTML(u):u},o.setConfig=function(e){Ce(e),X=!0},o.clearConfig=function(){we=null,X=!1},o.isValidAttribute=function(e,t,o){we||Ce({});const n=xe(e),s=xe(t);return Ve(n,s,o)},o.addHook=function(e,t){"function"==typeof t&&(T[e]=T[e]||[],cf(T[e],t))},o.removeHook=function(e){if(T[e])return lf(T[e])},o.removeHooks=function(e){T[e]&&(T[e]=[])},o.removeAllHooks=function(){T={}},o}();const $f=e=>Gf().sanitize(e);var qf=tinymce.util.Tools.resolve("tinymce.util.I18n");const Yf={indent:!0,outdent:!0,"table-insert-column-after":!0,"table-insert-column-before":!0,"paste-column-after":!0,"paste-column-before":!0,"unordered-list":!0,"list-bull-circle":!0,"list-bull-default":!0,"list-bull-square":!0},Xf="temporary-placeholder",Kf=e=>()=>be(e,Xf).getOr("!not found!"),Jf=(e,t)=>{const o=e.toLowerCase();if(qf.isRtl()){const e=((e,t)=>Ae(e,t)?e:((e,t)=>e+t)(e,t))(o,"-rtl");return ve(t,e)?e:o}return o},Zf=(e,t)=>be(t,Jf(e,t)),Qf=(e,t)=>{const o=t();return Zf(e,o).getOrThunk(Kf(o))},eb=()=>th("add-focusable",[Jr((e=>{bi(e.element,"svg").each((e=>Ct(e,"focusable","false")))}))]),tb=(e,t,o,n)=>{var s,r;const a=(e=>!!qf.isRtl()&&ve(Yf,e))(t)?["tox-icon--flip"]:[],i=be(o,Jf(t,o)).or(n).getOrThunk(Kf(o));return{dom:{tag:e.tag,attributes:null!==(s=e.attributes)&&void 0!==s?s:{},classes:e.classes.concat(a),innerHtml:i},behaviours:Tl([...null!==(r=e.behaviours)&&void 0!==r?r:[],eb()])}},ob=(e,t,o,n=A.none())=>tb(t,e,o(),n),nb={success:"checkmark",error:"warning",err:"error",warning:"warning",warn:"warning",info:"info"},sb=xm({name:"Notification",factory:e=>{const t=Xh({dom:Yh(`<p>${$f(e.translationProvider(e.text))}</p>`),behaviours:Tl([eh.config({})])}),o=e=>({dom:{tag:"div",classes:["tox-bar"],styles:{width:`${e}%`}}}),n=e=>({dom:{tag:"div",classes:["tox-text"],innerHtml:`${e}%`}}),s=Xh({dom:{tag:"div",classes:e.progress?["tox-progress-bar","tox-progress-indicator"]:["tox-progress-bar"]},components:[{dom:{tag:"div",classes:["tox-bar-container"]},components:[o(0)]},n(0)],behaviours:Tl([eh.config({})])}),r={updateProgress:(e,t)=>{e.getSystem().isConnected()&&s.getOpt(e).each((e=>{eh.set(e,[{dom:{tag:"div",classes:["tox-bar-container"]},components:[o(t)]},n(t)])}))},updateText:(e,o)=>{if(e.getSystem().isConnected()){const n=t.get(e);eh.set(n,[ri(o)])}}},a=q([e.icon.toArray(),e.level.toArray(),e.level.bind((e=>A.from(nb[e]))).toArray()]),i=Xh(qh.sketch({dom:{tag:"button",classes:["tox-notification__dismiss","tox-button","tox-button--naked","tox-button--icon"]},components:[ob("close",{tag:"span",classes:["tox-icon"],attributes:{"aria-label":e.translationProvider("Close")}},e.iconProvider)],action:t=>{e.onAction(t)}})),l=((e,t,o)=>{const n=o(),s=G(e,(e=>ve(n,Jf(e,n))));return tb({tag:"div",classes:["tox-notification__icon"]},s.getOr(Xf),n,A.none())})(a,0,e.iconProvider),c=[l,{dom:{tag:"div",classes:["tox-notification__body"]},components:[t.asSpec()],behaviours:Tl([eh.config({})])}];return{uid:e.uid,dom:{tag:"div",attributes:{role:"alert"},classes:e.level.map((e=>["tox-notification","tox-notification--in",`tox-notification--${e}`])).getOr(["tox-notification","tox-notification--in"])},behaviours:Tl([ah.config({}),th("notification-events",[Wr(Xs(),(e=>{i.getOpt(e).each(ah.focus)}))])]),components:c.concat(e.progress?[s.asSpec()]:[]).concat(e.closeButton?[i.asSpec()]:[]),apis:r}},configFields:[ms("level"),ns("progress"),ms("icon"),ns("onAction"),ns("text"),ns("iconProvider"),ns("translationProvider"),Os("closeButton",!0)],apis:{updateProgress:(e,t,o)=>{e.updateProgress(t,o)},updateText:(e,t,o)=>{e.updateText(t,o)}}});var rb,ab,ib=tinymce.util.Tools.resolve("tinymce.dom.DOMUtils"),lb=tinymce.util.Tools.resolve("tinymce.EditorManager"),cb=tinymce.util.Tools.resolve("tinymce.Env");!function(e){e.default="wrap",e.floating="floating",e.sliding="sliding",e.scrolling="scrolling"}(rb||(rb={})),function(e){e.auto="auto",e.top="top",e.bottom="bottom"}(ab||(ab={}));const db=e=>t=>t.options.get(e),ub=e=>t=>A.from(e(t)),mb=e=>{const t=cb.deviceType.isPhone(),o=cb.deviceType.isTablet()||t,n=e.options.register,s=e=>r(e)||!1===e,a=e=>r(e)||h(e);n("skin",{processor:e=>r(e)||!1===e,default:"oxide"}),n("skin_url",{processor:"string"}),n("height",{processor:a,default:Math.max(e.getElement().offsetHeight,400)}),n("width",{processor:a,default:ib.DOM.getStyle(e.getElement(),"width")}),n("min_height",{processor:"number",default:100}),n("min_width",{processor:"number"}),n("max_height",{processor:"number"}),n("max_width",{processor:"number"}),n("style_formats",{processor:"object[]"}),n("style_formats_merge",{processor:"boolean",default:!1}),n("style_formats_autohide",{processor:"boolean",default:!1}),n("line_height_formats",{processor:"string",default:"1 1.1 1.2 1.3 1.4 1.5 2"}),n("font_family_formats",{processor:"string",default:"Andale Mono=andale mono,monospace;Arial=arial,helvetica,sans-serif;Arial Black=arial black,sans-serif;Book Antiqua=book antiqua,palatino,serif;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,palatino,serif;Helvetica=helvetica,arial,sans-serif;Impact=impact,sans-serif;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco,monospace;Times New Roman=times new roman,times,serif;Trebuchet MS=trebuchet ms,geneva,sans-serif;Verdana=verdana,geneva,sans-serif;Webdings=webdings;Wingdings=wingdings,zapf dingbats"}),n("font_size_formats",{processor:"string",default:"8pt 10pt 12pt 14pt 18pt 24pt 36pt"}),n("font_size_input_default_unit",{processor:"string",default:"pt"}),n("block_formats",{processor:"string",default:"Paragraph=p;Heading 1=h1;Heading 2=h2;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6;Preformatted=pre"}),n("content_langs",{processor:"object[]"}),n("removed_menuitems",{processor:"string",default:""}),n("menubar",{processor:e=>r(e)||d(e),default:!t}),n("menu",{processor:"object",default:{}}),n("toolbar",{processor:e=>d(e)||r(e)||l(e)?{value:e,valid:!0}:{valid:!1,message:"Must be a boolean, string or array."},default:!0}),V(9,(e=>{n("toolbar"+(e+1),{processor:"string"})})),n("toolbar_mode",{processor:"string",default:o?"scrolling":"floating"}),n("toolbar_groups",{processor:"object",default:{}}),n("toolbar_location",{processor:"string",default:ab.auto}),n("toolbar_persist",{processor:"boolean",default:!1}),n("toolbar_sticky",{processor:"boolean",default:e.inline}),n("toolbar_sticky_offset",{processor:"number",default:0}),n("fixed_toolbar_container",{processor:"string",default:""}),n("fixed_toolbar_container_target",{processor:"object"}),n("ui_mode",{processor:"string",default:"combined"}),n("file_picker_callback",{processor:"function"}),n("file_picker_validator_handler",{processor:"function"}),n("file_picker_types",{processor:"string"}),n("typeahead_urls",{processor:"boolean",default:!0}),n("anchor_top",{processor:s,default:"#top"}),n("anchor_bottom",{processor:s,default:"#bottom"}),n("draggable_modal",{processor:"boolean",default:!1}),n("statusbar",{processor:"boolean",default:!0}),n("elementpath",{processor:"boolean",default:!0}),n("branding",{processor:"boolean",default:!0}),n("promotion",{processor:"boolean",default:!0}),n("resize",{processor:e=>"both"===e||d(e),default:!cb.deviceType.isTouch()}),n("sidebar_show",{processor:"string"}),n("help_accessibility",{processor:"boolean",default:e.hasPlugin("help")}),n("default_font_stack",{processor:"string[]",default:[]})},gb=db("readonly"),pb=db("height"),hb=db("width"),fb=ub(db("min_width")),bb=ub(db("min_height")),vb=ub(db("max_width")),yb=ub(db("max_height")),xb=ub(db("style_formats")),wb=db("style_formats_merge"),Sb=db("style_formats_autohide"),kb=db("content_langs"),Cb=db("removed_menuitems"),Ob=db("toolbar_mode"),_b=db("toolbar_groups"),Tb=db("toolbar_location"),Eb=db("fixed_toolbar_container"),Ab=db("fixed_toolbar_container_target"),Mb=db("toolbar_persist"),Db=db("toolbar_sticky_offset"),Bb=db("menubar"),Ib=db("toolbar"),Fb=db("file_picker_callback"),Rb=db("file_picker_validator_handler"),Nb=db("font_size_input_default_unit"),Vb=db("file_picker_types"),zb=db("typeahead_urls"),Lb=db("anchor_top"),Hb=db("anchor_bottom"),Pb=db("draggable_modal"),Ub=db("statusbar"),Wb=db("elementpath"),jb=db("branding"),Gb=db("resize"),$b=db("paste_as_text"),qb=db("sidebar_show"),Yb=db("promotion"),Xb=db("help_accessibility"),Kb=db("default_font_stack"),Jb=e=>!1===e.options.get("skin"),Zb=e=>!1!==e.options.get("menubar"),Qb=e=>{const t=e.options.get("skin_url");if(Jb(e))return t;if(t)return e.documentBaseURI.toAbsolute(t);{const t=e.options.get("skin");return lb.baseURL+"/skins/ui/"+t}},ev=e=>A.from(e.options.get("skin_url")),tv=e=>e.options.get("line_height_formats").split(" "),ov=e=>{const t=Ib(e),o=r(t),n=l(t)&&t.length>0;return!sv(e)&&(n||o||!0===t)},nv=e=>{const t=V(9,(t=>e.options.get("toolbar"+(t+1)))),o=U(t,r);return Ce(o.length>0,o)},sv=e=>nv(e).fold((()=>{const t=Ib(e);return f(t,r)&&t.length>0}),E),rv=e=>Tb(e)===ab.bottom,av=e=>{var t;if(!e.inline)return A.none();const o=null!==(t=Eb(e))&&void 0!==t?t:"";if(o.length>0)return vi(wt(),o);const n=Ab(e);return g(n)?A.some(ze(n)):A.none()},iv=e=>e.inline&&av(e).isSome(),lv=e=>av(e).getOrThunk((()=>bt(ft(ze(e.getElement()))))),cv=e=>e.inline&&!Zb(e)&&!ov(e)&&!sv(e),dv=e=>(e.options.get("toolbar_sticky")||e.inline)&&!iv(e)&&!cv(e),uv=e=>!iv(e)&&"split"===e.options.get("ui_mode"),mv=e=>{const t=e.options.get("menu");return ce(t,(e=>({...e,items:e.items})))};var gv=Object.freeze({__proto__:null,get ToolbarMode(){return rb},get ToolbarLocation(){return ab},register:mb,getSkinUrl:Qb,getSkinUrlOption:ev,isReadOnly:gb,isSkinDisabled:Jb,getHeightOption:pb,getWidthOption:hb,getMinWidthOption:fb,getMinHeightOption:bb,getMaxWidthOption:vb,getMaxHeightOption:yb,getUserStyleFormats:xb,shouldMergeStyleFormats:wb,shouldAutoHideStyleFormats:Sb,getLineHeightFormats:tv,getContentLanguages:kb,getRemovedMenuItems:Cb,isMenubarEnabled:Zb,isMultipleToolbars:sv,isToolbarEnabled:ov,isToolbarPersist:Mb,getMultipleToolbarsOption:nv,getUiContainer:lv,useFixedContainer:iv,isSplitUiMode:uv,getToolbarMode:Ob,isDraggableModal:Pb,isDistractionFree:cv,isStickyToolbar:dv,getStickyToolbarOffset:Db,getToolbarLocation:Tb,isToolbarLocationBottom:rv,getToolbarGroups:_b,getMenus:mv,getMenubar:Bb,getToolbar:Ib,getFilePickerCallback:Fb,getFilePickerTypes:Vb,useTypeaheadUrls:zb,getAnchorTop:Lb,getAnchorBottom:Hb,getFilePickerValidatorHandler:Rb,getFontSizeInputDefaultUnit:Nb,useStatusBar:Ub,useElementPath:Wb,promotionEnabled:Yb,useBranding:jb,getResize:Gb,getPasteAsText:$b,getSidebarShow:qb,useHelpAccessibility:Xb,getDefaultFontStack:Kb});const pv="[data-mce-autocompleter]",hv=e=>yi(e,pv);var fv;!function(e){e[e.CLOSE_ON_EXECUTE=0]="CLOSE_ON_EXECUTE",e[e.BUBBLE_TO_SANDBOX=1]="BUBBLE_TO_SANDBOX"}(fv||(fv={}));var bv=fv;const vv="tox-menu-nav__js",yv="tox-collection__item",xv="tox-swatch",wv={normal:vv,color:xv},Sv="tox-collection__item--enabled",kv="tox-collection__item-icon",Cv="tox-collection__item-label",Ov="tox-collection__item-caret",_v="tox-collection__item--active",Tv="tox-collection__item-container",Ev="tox-collection__item-container--row",Av=e=>be(wv,e).getOr(vv),Mv=e=>"color"===e?"tox-swatches":"tox-menu",Dv=e=>({backgroundMenu:"tox-background-menu",selectedMenu:"tox-selected-menu",selectedItem:"tox-collection__item--active",hasIcons:"tox-menu--has-icons",menu:Mv(e),tieredMenu:"tox-tiered-menu"}),Bv=e=>{const t=Dv(e);return{backgroundMenu:t.backgroundMenu,selectedMenu:t.selectedMenu,menu:t.menu,selectedItem:t.selectedItem,item:Av(e)}},Iv=(e,t,o)=>{const n=Dv(o);return{tag:"div",classes:q([[n.menu,`tox-menu-${t}-column`],e?[n.hasIcons]:[]])}},Fv=[Rh.parts.items({})],Rv=(e,t,o)=>{const n=Dv(o);return{dom:{tag:"div",classes:q([[n.tieredMenu]])},markers:Bv(o)}},Nv=x([ms("data"),xs("inputAttributes",{}),xs("inputStyles",{}),xs("tag","input"),xs("inputClasses",[]),Ri("onSetValue"),xs("styles",{}),xs("eventOrder",{}),yu("inputBehaviours",[vu,ah]),xs("selectOnFocus",!0)]),Vv=e=>Tl([ah.config({onFocus:e.selectOnFocus?e=>{const t=e.element,o=Ka(t);t.dom.setSelectionRange(0,o.length)}:b})]),zv=e=>({...Vv(e),...wu(e.inputBehaviours,[vu.config({store:{mode:"manual",...e.data.map((e=>({initialValue:e}))).getOr({}),getValue:e=>Ka(e.element),setValue:(e,t)=>{Ka(e.element)!==t&&Ja(e.element,t)}},onSetValue:e.onSetValue})])}),Lv=e=>({tag:e.tag,attributes:{type:"text",...e.inputAttributes},styles:e.inputStyles,classes:e.inputClasses}),Hv=xm({name:"Input",configFields:Nv(),factory:(e,t)=>({uid:e.uid,dom:Lv(e),components:[],behaviours:zv(e),eventOrder:e.eventOrder})}),Pv=ca("refetch-trigger-event"),Uv=ca("redirect-menu-item-interaction"),Wv="tox-menu__searcher",jv=e=>vi(e.element,`.${Wv}`).bind((t=>e.getSystem().getByDom(t).toOptional())),Gv=jv,$v=e=>({fetchPattern:vu.getValue(e),selectionStart:e.element.dom.selectionStart,selectionEnd:e.element.dom.selectionEnd}),qv=e=>{const t=(e,t)=>(t.cut(),A.none()),o=(e,t)=>{const o={interactionEvent:t.event,eventType:t.event.raw.type};return Rr(e,Uv,o),A.some(!0)},n="searcher-events";return{dom:{tag:"div",classes:[yv]},components:[Hv.sketch({inputClasses:[Wv,"tox-textfield"],inputAttributes:{...e.placeholder.map((t=>({placeholder:e.i18n(t)}))).getOr({}),type:"search","aria-autocomplete":"list"},inputBehaviours:Tl([th(n,[Wr(Qs(),(e=>{Fr(e,Pv)})),Wr(Js(),((e,t)=>{"Escape"===t.event.raw.key&&t.stop()}))]),Gp.config({mode:"special",onLeft:t,onRight:t,onSpace:t,onEnter:o,onEscape:o,onUp:o,onDown:o})]),eventOrder:{keydown:[n,Gp.name()]}})]}},Yv="tox-collection--results__js",Xv=e=>{var t;return e.dom?{...e,dom:{...e.dom,attributes:{...null!==(t=e.dom.attributes)&&void 0!==t?t:{},id:ca("aria-item-search-result-id"),"aria-selected":"false"}}}:e},Kv=(e,t)=>o=>{const n=z(o,t);return L(n,(t=>({dom:e,components:t})))},Jv=(e,t)=>{const o=[];let n=[];return H(e,((e,s)=>{t(e,s)?(n.length>0&&o.push(n),n=[],(ve(e.dom,"innerHtml")||e.components&&e.components.length>0)&&n.push(e)):n.push(e)})),n.length>0&&o.push(n),L(o,(e=>({dom:{tag:"div",classes:["tox-collection__group"]},components:e})))},Zv=(e,t,o)=>Rh.parts.items({preprocess:n=>{const s=L(n,o);return"auto"!==e&&e>1?Kv({tag:"div",classes:["tox-collection__group"]},e)(s):Jv(s,((e,o)=>"separator"===t[o].type))}}),Qv=(e,t,o=!0)=>({dom:{tag:"div",classes:["tox-menu","tox-collection"].concat(1===e?["tox-collection--list"]:["tox-collection--grid"])},components:[Zv(e,t,w)]}),ey=e=>N(e,(e=>"icon"in e&&void 0!==e.icon)),ty=e=>(console.error(Jn(e)),console.log(e),A.none()),oy=(e,t,o,n,s)=>{const r=(a=o,{dom:{tag:"div",classes:["tox-collection","tox-collection--horizontal"]},components:[Rh.parts.items({preprocess:e=>Jv(e,((e,t)=>"separator"===a[t].type))})]});var a;return{value:e,dom:r.dom,components:r.components,items:o}},ny=(e,t,o,n,s)=>{if("color"===s.menuType){const t=(e=>({dom:{tag:"div",classes:["tox-menu","tox-swatches-menu"]},components:[{dom:{tag:"div",classes:["tox-swatches"]},components:[Rh.parts.items({preprocess:"auto"!==e?Kv({tag:"div",classes:["tox-swatches__row"]},e):w})]}]}))(n);return{value:e,dom:t.dom,components:t.components,items:o}}if("normal"===s.menuType&&"auto"===n){const t=Qv(n,o);return{value:e,dom:t.dom,components:t.components,items:o}}if("normal"===s.menuType||"searchable"===s.menuType){const t="searchable"!==s.menuType?Qv(n,o):"search-with-field"===s.searchMode.searchMode?((e,t,o)=>{const n=ca("aria-controls-search-results");return{dom:{tag:"div",classes:["tox-menu","tox-collection"].concat(1===e?["tox-collection--list"]:["tox-collection--grid"])},components:[qv({i18n:qf.translate,placeholder:o.placeholder}),{dom:{tag:"div",classes:[...1===e?["tox-collection--list"]:["tox-collection--grid"],Yv],attributes:{id:n}},components:[Zv(e,t,Xv)]}]}})(n,o,s.searchMode):((e,t,o=!0)=>{const n=ca("aria-controls-search-results");return{dom:{tag:"div",classes:["tox-menu","tox-collection",Yv].concat(1===e?["tox-collection--list"]:["tox-collection--grid"]),attributes:{id:n}},components:[Zv(e,t,Xv)]}})(n,o);return{value:e,dom:t.dom,components:t.components,items:o}}if("listpreview"===s.menuType&&"auto"!==n){const t=(e=>({dom:{tag:"div",classes:["tox-menu","tox-collection","tox-collection--toolbar","tox-collection--toolbar-lg"]},components:[Rh.parts.items({preprocess:Kv({tag:"div",classes:["tox-collection__group"]},e)})]}))(n);return{value:e,dom:t.dom,components:t.components,items:o}}return{value:e,dom:Iv(t,n,s.menuType),components:Fv,items:o}},sy=as("type"),ry=as("name"),ay=as("label"),iy=as("text"),ly=as("title"),cy=as("icon"),dy=as("value"),uy=ls("fetch"),my=ls("getSubmenuItems"),gy=ls("onAction"),py=ls("onItemAction"),hy=_s("onSetup",(()=>b)),fy=hs("name"),by=hs("text"),vy=hs("icon"),yy=hs("tooltip"),xy=hs("label"),wy=hs("shortcut"),Sy=bs("select"),ky=Os("active",!1),Cy=Os("borderless",!1),Oy=Os("enabled",!0),_y=Os("primary",!1),Ty=e=>xs("columns",e),Ey=xs("meta",{}),Ay=_s("onAction",b),My=e=>ks("type",e),Dy=e=>es("name","name",yn((()=>ca(`${e}-name`))),Hn),By=Bn([sy,by]),Iy=Bn([My("autocompleteitem"),ky,Oy,Ey,dy,by,vy]),Fy=[Oy,yy,vy,by,hy],Ry=Bn([sy,gy].concat(Fy)),Ny=e=>Yn("toolbarbutton",Ry,e),Vy=[ky].concat(Fy),zy=Bn(Vy.concat([sy,gy])),Ly=e=>Yn("ToggleButton",zy,e),Hy=[_s("predicate",T),Cs("scope","node",["node","editor"]),Cs("position","selection",["node","selection","line"])],Py=Fy.concat([My("contextformbutton"),_y,gy,ts("original",w)]),Uy=Vy.concat([My("contextformbutton"),_y,gy,ts("original",w)]),Wy=Fy.concat([My("contextformbutton")]),jy=Vy.concat([My("contextformtogglebutton")]),Gy=Zn("type",{contextformbutton:Py,contextformtogglebutton:Uy}),$y=Bn([My("contextform"),_s("initValue",x("")),xy,us("commands",Gy),gs("launch",Zn("type",{contextformbutton:Wy,contextformtogglebutton:jy}))].concat(Hy)),qy=Bn([My("contexttoolbar"),as("items")].concat(Hy)),Yy=[sy,as("src"),hs("alt"),Ts("classes",[],Hn)],Xy=Bn(Yy),Ky=[sy,iy,fy,Ts("classes",["tox-collection__item-label"],Hn)],Jy=Bn(Ky),Zy=An((()=>Gn("type",{cardimage:Xy,cardtext:Jy,cardcontainer:Qy}))),Qy=Bn([sy,ks("direction","horizontal"),ks("align","left"),ks("valign","middle"),us("items",Zy)]),ex=[Oy,by,wy,("menuitem",es("value","value",yn((()=>ca("menuitem-value"))),Vn())),Ey];const tx=Bn([sy,xy,us("items",Zy),hy,Ay].concat(ex)),ox=Bn([sy,ky,vy].concat(ex)),nx=[sy,as("fancytype"),Ay],sx=[xs("initData",{})].concat(nx),rx=[bs("select"),Es("initData",{},[Os("allowCustomColors",!0),ks("storageKey","default"),vs("colors",Vn())])].concat(nx),ax=Zn("fancytype",{inserttable:sx,colorswatch:rx}),ix=Bn([sy,hy,Ay,vy].concat(ex)),lx=Bn([sy,my,hy,vy].concat(ex)),cx=Bn([sy,vy,ky,hy,gy].concat(ex)),dx=(e,t,o)=>{const n=Zc(e.element,"."+o);if(n.length>0){const e=$(n,(e=>{const o=e.dom.getBoundingClientRect().top,s=n[0].dom.getBoundingClientRect().top;return Math.abs(o-s)>t})).getOr(n.length);return A.some({numColumns:e,numRows:Math.ceil(n.length/e)})}return A.none()},ux=e=>((e,t)=>Tl([th(e,t)]))(ca("unnamed-events"),e),mx=ca("tooltip.exclusive"),gx=ca("tooltip.show"),px=ca("tooltip.hide"),hx=(e,t,o)=>{e.getSystem().broadcastOn([mx],{})};var fx=Object.freeze({__proto__:null,hideAllExclusive:hx,setComponents:(e,t,o,n)=>{o.getTooltip().each((e=>{e.getSystem().isConnected()&&eh.set(e,n)}))}}),bx=Object.freeze({__proto__:null,events:(e,t)=>{const o=o=>{t.getTooltip().each((n=>{Nd(n),e.onHide(o,n),t.clearTooltip()})),t.clearTimer()};return Hr(q([[Wr(gx,(o=>{t.resetTimer((()=>{(o=>{if(!t.isShowing()){hx(o);const n=e.lazySink(o).getOrDie(),s=o.getSystem().build({dom:e.tooltipDom,components:e.tooltipComponents,events:Hr("normal"===e.mode?[Wr(Ys(),(e=>{Fr(o,gx)})),Wr($s(),(e=>{Fr(o,px)}))]:[]),behaviours:Tl([eh.config({})])});t.setTooltip(s),Id(n,s),e.onShow(o,s),_d.position(n,s,{anchor:e.anchor(o)})}})(o)}),e.delay)})),Wr(px,(n=>{t.resetTimer((()=>{o(n)}),e.delay)})),Wr(ur(),((e,t)=>{const n=t;n.universal||R(n.channels,mx)&&o(e)})),Zr((e=>{o(e)}))],"normal"===e.mode?[Wr(Xs(),(e=>{Fr(e,gx)})),Wr(cr(),(e=>{Fr(e,px)})),Wr(Ys(),(e=>{Fr(e,gx)})),Wr($s(),(e=>{Fr(e,px)}))]:[Wr(Br(),((e,t)=>{Fr(e,gx)})),Wr(Ir(),(e=>{Fr(e,px)}))]]))}}),vx=[ns("lazySink"),ns("tooltipDom"),xs("exclusive",!0),xs("tooltipComponents",[]),xs("delay",300),Cs("mode","normal",["normal","follow-highlight"]),xs("anchor",(e=>({type:"hotspot",hotspot:e,layouts:{onLtr:x([gl,ml,ll,dl,cl,ul]),onRtl:x([gl,ml,ll,dl,cl,ul])}}))),Ri("onHide"),Ri("onShow")],yx=Object.freeze({__proto__:null,init:()=>{const e=nc(),t=nc(),o=()=>{e.on(clearTimeout)},n=x("not-implemented");return Ta({getTooltip:t.get,isShowing:t.isSet,setTooltip:t.set,clearTooltip:t.clear,clearTimer:o,resetTimer:(t,n)=>{o(),e.set(setTimeout(t,n))},readState:n})}});const xx=Al({fields:vx,name:"tooltipping",active:bx,state:yx,apis:fx}),wx="silver.readonly",Sx=Bn([("readonly",ss("readonly",Pn))]);const kx=(e,t)=>{const o=e.mainUi.outerContainer.element,n=[e.mainUi.mothership,...e.uiMotherships];t&&H(n,(e=>{e.broadcastOn([Qd()],{target:o})})),H(n,(e=>{e.broadcastOn([wx],{readonly:t})}))},Cx=(e,t)=>{e.on("init",(()=>{e.mode.isReadOnly()&&kx(t,!0)})),e.on("SwitchMode",(()=>kx(t,e.mode.isReadOnly()))),gb(e)&&e.mode.set("readonly")},Ox=()=>Il.config({channels:{[wx]:{schema:Sx,onReceive:(e,t)=>{Lm.set(e,t.readonly)}}}}),_x=e=>Lm.config({disabled:e}),Tx=e=>Lm.config({disabled:e,disableClass:"tox-tbtn--disabled"}),Ex=e=>Lm.config({disabled:e,disableClass:"tox-tbtn--disabled",useNative:!1}),Ax=(e,t)=>{const o=e.getApi(t);return e=>{e(o)}},Mx=(e,t)=>Jr((o=>{Ax(e,o)((o=>{const n=e.onSetup(o);p(n)&&t.set(n)}))})),Dx=(e,t)=>Zr((o=>Ax(e,o)(t.get()))),Bx=(e,t)=>ea(((o,n)=>{Ax(e,o)(e.onAction),e.triggersSubmenu||t!==bv.CLOSE_ON_EXECUTE||(o.getSystem().isConnected()&&Fr(o,fr()),n.stop())})),Ix={[mr()]:["disabling","alloy.base.behaviour","toggling","item-events"]},Fx=we,Rx=(e,t,o,n)=>{const s=As(b);return{type:"item",dom:t.dom,components:Fx(t.optComponents),data:e.data,eventOrder:Ix,hasSubmenu:e.triggersSubmenu,itemBehaviours:Tl([th("item-events",[Bx(e,o),Mx(e,s),Dx(e,s)]),(r=()=>!e.enabled||n.isDisabled(),Lm.config({disabled:r,disableClass:"tox-collection__item--state-disabled"})),Ox(),eh.config({})].concat(e.itemBehaviours))};var r},Nx=e=>({value:e.value,meta:{text:e.text.getOr(""),...e.meta}}),Vx=e=>{const t=cb.os.isMacOS()||cb.os.isiOS(),o=t?{alt:"\u2325",ctrl:"\u2303",shift:"\u21e7",meta:"\u2318",access:"\u2303\u2325"}:{meta:"Ctrl",access:"Shift+Alt"},n=e.split("+"),s=L(n,(e=>{const t=e.toLowerCase().trim();return ve(o,t)?o[t]:e}));return t?s.join(""):s.join("+")},zx=(e,t,o=[kv])=>ob(e,{tag:"div",classes:o},t),Lx=e=>({dom:{tag:"div",classes:[Cv]},components:[ri(qf.translate(e))]}),Hx=(e,t)=>({dom:{tag:"div",classes:t,innerHtml:e}}),Px=(e,t)=>({dom:{tag:"div",classes:[Cv]},components:[{dom:{tag:e.tag,styles:e.styles},components:[ri(qf.translate(t))]}]}),Ux=e=>({dom:{tag:"div",classes:["tox-collection__item-accessory"]},components:[ri(Vx(e))]}),Wx=e=>zx("checkmark",e,["tox-collection__item-checkmark"]),jx=e=>{const t=e.map((e=>({attributes:{title:qf.translate(e),id:ca("menu-item")}}))).getOr({});return{tag:"div",classes:[vv,yv],...t}},Gx=(e,t,o,n=A.none())=>"color"===e.presets?((e,t,o)=>{const n=e.ariaLabel,s=e.value,r=e.iconContent.map((e=>((e,t,o)=>{const n=t();return Zf(e,n).or(o).getOrThunk(Kf(n))})(e,t.icons,o)));return{dom:(()=>{const e=xv,o=r.getOr(""),a=n.map((e=>({title:t.translate(e)}))).getOr({}),i={tag:"div",attributes:a,classes:[e]};return"custom"===s?{...i,tag:"button",classes:[...i.classes,"tox-swatches__picker-btn"],innerHtml:o}:"remove"===s?{...i,classes:[...i.classes,"tox-swatch--remove"],innerHtml:o}:g(s)?{...i,attributes:{...i.attributes,"data-mce-color":s},styles:{"background-color":s},innerHtml:o}:i})(),optComponents:[]}})(e,t,n):((e,t,o,n)=>{const s={tag:"div",classes:[kv]},r=o?e.iconContent.map((e=>ob(e,s,t.icons,n))).orThunk((()=>A.some({dom:s}))):A.none(),a=e.checkMark,i=A.from(e.meta).fold((()=>Lx),(e=>ve(e,"style")?k(Px,e.style):Lx)),l=e.htmlContent.fold((()=>e.textContent.map(i)),(e=>A.some(Hx(e,[Cv]))));return{dom:jx(e.ariaLabel),optComponents:[r,l,e.shortcutContent.map(Ux),a,e.caret]}})(e,t,o,n),$x=(e,t)=>be(e,"tooltipWorker").map((e=>[xx.config({lazySink:t.getSink,tooltipDom:{tag:"div",classes:["tox-tooltip-worker-container"]},tooltipComponents:[],anchor:e=>({type:"submenu",item:e,overrides:{maxHeightFunction:gc}}),mode:"follow-highlight",onShow:(t,o)=>{e((e=>{xx.setComponents(t,[ai({element:ze(e)})])}))}})])).getOr([]),qx=(e,t)=>{const o=(e=>ib.DOM.encode(e))(qf.translate(e));if(t.length>0){const e=new RegExp((e=>e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"))(t),"gi");return o.replace(e,(e=>`<span class="tox-autocompleter-highlight">${e}</span>`))}return o},Yx=(e,t)=>L(e,(e=>{switch(e.type){case"cardcontainer":return((e,t)=>{const o="vertical"===e.direction?"tox-collection__item-container--column":Ev,n="left"===e.align?"tox-collection__item-container--align-left":"tox-collection__item-container--align-right";return{dom:{tag:"div",classes:[Tv,o,n,(()=>{switch(e.valign){case"top":return"tox-collection__item-container--valign-top";case"middle":return"tox-collection__item-container--valign-middle";case"bottom":return"tox-collection__item-container--valign-bottom"}})()]},components:t}})(e,Yx(e.items,t));case"cardimage":return((e,t,o)=>({dom:{tag:"img",classes:t,attributes:{src:e,alt:o.getOr("")}}}))(e.src,e.classes,e.alt);case"cardtext":const o=e.name.exists((e=>R(t.cardText.highlightOn,e))),n=o?A.from(t.cardText.matchText).getOr(""):"";return Hx(qx(e.text,n),e.classes)}})),Xx=Qu(Eh(),Ah()),Kx=e=>({value:ew(e)}),Jx=/^#?([a-f\d])([a-f\d])([a-f\d])$/i,Zx=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,Qx=e=>Jx.test(e)||Zx.test(e),ew=e=>_e(e,"#").toUpperCase(),tw=e=>{const t=e.toString(16);return(1===t.length?"0"+t:t).toUpperCase()},ow=e=>{const t=tw(e.red)+tw(e.green)+tw(e.blue);return Kx(t)},nw=Math.min,sw=Math.max,rw=Math.round,aw=/^\s*rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)\s*$/i,iw=/^\s*rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d?(?:\.\d+)?)\s*\)\s*$/i,lw=(e,t,o,n)=>({red:e,green:t,blue:o,alpha:n}),cw=e=>{const t=parseInt(e,10);return t.toString()===e&&t>=0&&t<=255},dw=e=>{let t,o,n;const s=(e.hue||0)%360;let r=e.saturation/100,a=e.value/100;if(r=sw(0,nw(r,1)),a=sw(0,nw(a,1)),0===r)return t=o=n=rw(255*a),lw(t,o,n,1);const i=s/60,l=a*r,c=l*(1-Math.abs(i%2-1)),d=a-l;switch(Math.floor(i)){case 0:t=l,o=c,n=0;break;case 1:t=c,o=l,n=0;break;case 2:t=0,o=l,n=c;break;case 3:t=0,o=c,n=l;break;case 4:t=c,o=0,n=l;break;case 5:t=l,o=0,n=c;break;default:t=o=n=0}return t=rw(255*(t+d)),o=rw(255*(o+d)),n=rw(255*(n+d)),lw(t,o,n,1)},uw=e=>{const t=(e=>{const t=(e=>{const t=e.value.replace(Jx,((e,t,o,n)=>t+t+o+o+n+n));return{value:t}})(e),o=Zx.exec(t.value);return null===o?["FFFFFF","FF","FF","FF"]:o})(e),o=parseInt(t[1],16),n=parseInt(t[2],16),s=parseInt(t[3],16);return lw(o,n,s,1)},mw=(e,t,o,n)=>{const s=parseInt(e,10),r=parseInt(t,10),a=parseInt(o,10),i=parseFloat(n);return lw(s,r,a,i)},gw=e=>{if("transparent"===e)return A.some(lw(0,0,0,0));const t=aw.exec(e);if(null!==t)return A.some(mw(t[1],t[2],t[3],"1"));const o=iw.exec(e);return null!==o?A.some(mw(o[1],o[2],o[3],o[4])):A.none()},pw=e=>`rgba(${e.red},${e.green},${e.blue},${e.alpha})`,hw=lw(255,0,0,1),fw=(e,t)=>{e.dispatch("ResizeContent",t)},bw=(e,t)=>{e.dispatch("TextColorChange",t)},vw=(e,t)=>e.dispatch("ResolveName",{name:t.nodeName.toLowerCase(),target:t}),yw=(e,t)=>()=>{e(),t()},xw=e=>Sw(e,"NodeChange",(t=>{t.setEnabled(e.selection.isEditable())})),ww=(e,t)=>o=>{const n=xw(e)(o),s=((e,t)=>o=>{const n=oc(),s=()=>{o.setActive(e.formatter.match(t));const s=e.formatter.formatChanged(t,o.setActive);n.set(s)};return e.initialized?s():e.once("init",s),()=>{e.off("init",s),n.clear()}})(e,t)(o);return()=>{n(),s()}},Sw=(e,t,o)=>n=>{const s=()=>o(n),r=()=>{o(n),e.on(t,s)};return e.initialized?r():e.once("init",r),()=>{e.off("init",r),e.off(t,s)}},kw=e=>t=>()=>{e.undoManager.transact((()=>{e.focus(),e.execCommand("mceToggleFormat",!1,t.format)}))},Cw=(e,t)=>()=>e.execCommand(t);var Ow=tinymce.util.Tools.resolve("tinymce.util.LocalStorage");const _w={},Tw=e=>be(_w,e).getOrThunk((()=>{const t=`tinymce-custom-colors-${e}`,o=Ow.getItem(t);if(m(o)){const e=Ow.getItem("tinymce-custom-colors");Ow.setItem(t,g(e)?e:"[]")}const n=((e,t=10)=>{const o=Ow.getItem(e),n=r(o)?JSON.parse(o):[],s=t-(a=n).length<0?a.slice(0,t):a;var a;const i=e=>{s.splice(e,1)};return{add:o=>{F(s,o).each(i),s.unshift(o),s.length>t&&s.pop(),Ow.setItem(e,JSON.stringify(s))},state:()=>s.slice(0)}})(t,10);return _w[e]=n,n})),Ew=(e,t)=>{Tw(e).add(t)},Aw=(e,t,o)=>({hue:e,saturation:t,value:o}),Mw=e=>{let t=0,o=0,n=0;const s=e.red/255,r=e.green/255,a=e.blue/255,i=Math.min(s,Math.min(r,a)),l=Math.max(s,Math.max(r,a));return i===l?(n=i,Aw(0,0,100*n)):(t=s===i?3:a===i?1:5,t=60*(t-(s===i?r-a:a===i?s-r:a-s)/(l-i)),o=(l-i)/l,n=l,Aw(Math.round(t),Math.round(100*o),Math.round(100*n)))},Dw=e=>ow(dw(e)),Bw=e=>{return(t=e,Qx(t)?A.some({value:ew(t)}):A.none()).orThunk((()=>gw(e).map(ow))).getOrThunk((()=>{const t=document.createElement("canvas");t.height=1,t.width=1;const o=t.getContext("2d");o.clearRect(0,0,t.width,t.height),o.fillStyle="#FFFFFF",o.fillStyle=e,o.fillRect(0,0,1,1);const n=o.getImageData(0,0,1,1).data,s=n[0],r=n[1],a=n[2],i=n[3];return ow(lw(s,r,a,i))}));var t},Iw="forecolor",Fw="hilitecolor",Rw=e=>{const t=[];for(let o=0;o<e.length;o+=2)t.push({text:e[o+1],value:"#"+Bw(e[o]).value,icon:"checkmark",type:"choiceitem"});return t},Nw=e=>t=>t.options.get(e),Vw="#000000",zw=(e,t)=>t===Iw&&e.options.isSet("color_map_foreground")?Nw("color_map_foreground")(e):t===Fw&&e.options.isSet("color_map_background")?Nw("color_map_background")(e):Nw("color_map")(e),Lw=(e,t="default")=>Math.max(5,Math.ceil(Math.sqrt(zw(e,t).length))),Hw=(e,t)=>{const o=Nw("color_cols")(e),n=Lw(e,t);return o===Lw(e)?n:o},Pw=(e,t="default")=>Math.round(t===Iw?Nw("color_cols_foreground")(e):t===Fw?Nw("color_cols_background")(e):Nw("color_cols")(e)),Uw=Nw("custom_colors"),Ww=Nw("color_default_foreground"),jw=Nw("color_default_background"),Gw=(e,t)=>{const o=ze(e.selection.getStart()),n="hilitecolor"===t?Rs(o,(e=>{if($e(e)){const t=Rt(e,"background-color");return Ce(gw(t).exists((e=>0!==e.alpha)),t)}return A.none()})).getOr("rgba(0, 0, 0, 0)"):Rt(o,"color");return gw(n).map((e=>"#"+ow(e).value))},$w=e=>{const t="choiceitem",o={type:t,text:"Remove color",icon:"color-swatch-remove-color",value:"remove"};return e?[o,{type:t,text:"Custom color",icon:"color-picker",value:"custom"}]:[o]},qw=(e,t,o,n)=>{"custom"===o?oS(e)((o=>{o.each((o=>{Ew(t,o),e.execCommand("mceApplyTextcolor",t,o),n(o)}))}),Gw(e,t).getOr(Vw)):"remove"===o?(n(""),e.execCommand("mceRemoveTextcolor",t)):(n(o),e.execCommand("mceApplyTextcolor",t,o))},Yw=(e,t,o)=>e.concat((e=>L(Tw(e).state(),(e=>({type:"choiceitem",text:e,icon:"checkmark",value:e}))))(t).concat($w(o))),Xw=(e,t,o)=>n=>{n(Yw(e,t,o))},Kw=(e,t,o)=>{const n="forecolor"===t?"tox-icon-text-color__color":"tox-icon-highlight-bg-color__color";e.setIconFill(n,o)},Jw=(e,t)=>{e.setTooltip(t)},Zw=(e,t)=>o=>{const n=Gw(e,t);return xe(n,o.toUpperCase())},Qw=(e,t,o)=>{if(Be(o))return"forecolor"===t?"Text color":"Background color";const n="forecolor"===t?"Text color {0}":"Background color {0}",s=Yw(zw(e,t),t,!1),r=G(s,(e=>e.value===o)).getOr({text:""}).text;return e.translate([n,e.translate(r)])},eS=(e,t,o,n)=>{e.ui.registry.addSplitButton(t,{tooltip:Qw(e,o,n.get()),presets:"color",icon:"forecolor"===t?"text-color":"highlight-bg-color",select:Zw(e,o),columns:Pw(e,o),fetch:Xw(zw(e,o),o,Uw(e)),onAction:t=>{qw(e,o,n.get(),b)},onItemAction:(s,r)=>{qw(e,o,r,(o=>{n.set(o),bw(e,{name:t,color:o})}))},onSetup:s=>{Kw(s,t,n.get());const r=n=>{n.name===t&&(Kw(s,n.name,n.color),Jw(s,Qw(e,o,n.color)))};return e.on("TextColorChange",r),yw(xw(e)(s),(()=>{e.off("TextColorChange",r)}))}})},tS=(e,t,o,n,s)=>{e.ui.registry.addNestedMenuItem(t,{text:n,icon:"forecolor"===t?"text-color":"highlight-bg-color",onSetup:n=>(Jw(n,Qw(e,o,s.get())),Kw(n,t,s.get()),xw(e)(n)),getSubmenuItems:()=>[{type:"fancymenuitem",fancytype:"colorswatch",select:Zw(e,o),initData:{storageKey:o},onAction:n=>{qw(e,o,n.value,(o=>{s.set(o),bw(e,{name:t,color:o})}))}}]})},oS=e=>(t,o)=>{let n=!1;const s={colorpicker:o};e.windowManager.open({title:"Color Picker",size:"normal",body:{type:"panel",items:[{type:"colorpicker",name:"colorpicker",label:"Color"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:s,onAction:(e,t)=>{"hex-valid"===t.name&&(n=t.value)},onSubmit:o=>{const s=o.getData().colorpicker;n?(t(A.from(s)),o.close()):e.windowManager.alert(e.translate(["Invalid hex color code: {0}",s]))},onClose:b,onCancel:()=>{t(A.none())}})},nS=(e,t,o,n,s,r,a,i)=>{const l=ey(t),c=sS(t,o,n,"color"!==s?"normal":"color",r,a,i);return ny(e,l,c,n,{menuType:s})},sS=(e,t,o,n,s,r,a)=>we(L(e,(i=>{return"choiceitem"===i.type?(l=i,Yn("choicemenuitem",ox,l)).fold(ty,(i=>A.some(((e,t,o,n,s,r,a,i=!0)=>{const l=Gx({presets:o,textContent:t?e.text:A.none(),htmlContent:A.none(),ariaLabel:e.text,iconContent:e.icon,shortcutContent:t?e.shortcut:A.none(),checkMark:t?A.some(Wx(a.icons)):A.none(),caret:A.none(),value:e.value},a,i);return bn(Rx({data:Nx(e),enabled:e.enabled,getApi:e=>({setActive:t=>{ph.set(e,t)},isActive:()=>ph.isOn(e),isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t)}),onAction:t=>n(e.value),onSetup:e=>(e.setActive(s),b),triggersSubmenu:!1,itemBehaviours:[]},l,r,a),{toggling:{toggleClass:Sv,toggleOnExecute:!1,selected:e.active,exclusive:!0}})})(i,1===o,n,t,r(i.value),s,a,ey(e))))):A.none();var l}))),rS=(e,t)=>{const o=Bv(t);return 1===e?{mode:"menu",moveOnTab:!0}:"auto"===e?{mode:"grid",selector:"."+o.item,initSize:{numColumns:1,numRows:1}}:{mode:"matrix",rowSelector:"."+("color"===t?"tox-swatches__row":"tox-collection__group"),previousSelector:e=>"color"===t?vi(e.element,"[aria-checked=true]"):A.none()}},aS=ca("cell-over"),iS=ca("cell-execute"),lS=(e,t,o)=>{const n=o=>Rr(o,iS,{row:e,col:t}),s=(e,t)=>{t.stop(),n(e)};return ci({dom:{tag:"div",attributes:{role:"button","aria-label":o}},behaviours:Tl([th("insert-table-picker-cell",[Wr(Ys(),ah.focus),Wr(mr(),n),Wr(tr(),s),Wr(pr(),s)]),ph.config({toggleClass:"tox-insert-table-picker__selected",toggleOnExecute:!1}),ah.config({onFocus:o=>Rr(o,aS,{row:e,col:t})})])})},cS=e=>Y(e,(e=>L(e,di))),dS=(e,t)=>ri(`${t}x${e}`),uS={inserttable:(e,t)=>{const o=(e=>(t,o)=>e.shared.providers.translate(["{0} columns, {1} rows",o,t]))(t),n=((e,t,o)=>{const n=[];for(let t=0;t<10;t++){const o=[];for(let n=0;n<10;n++){const s=e(t+1,n+1);o.push(lS(t,n,s))}n.push(o)}return n})(o),s=dS(0,0),r=Xh({dom:{tag:"span",classes:["tox-insert-table-picker__label"]},components:[s],behaviours:Tl([eh.config({})])});return{type:"widget",data:{value:ca("widget-id")},dom:{tag:"div",classes:["tox-fancymenuitem"]},autofocus:!0,components:[Xx.widget({dom:{tag:"div",classes:["tox-insert-table-picker"]},components:cS(n).concat(r.asSpec()),behaviours:Tl([th("insert-table-picker",[Jr((e=>{eh.set(r.get(e),[s])})),qr(aS,((e,t,o)=>{const{row:s,col:a}=o.event;((e,t,o,n,s)=>{for(let n=0;n<10;n++)for(let s=0;s<10;s++)ph.set(e[n][s],n<=t&&s<=o)})(n,s,a),eh.set(r.get(e),[dS(s+1,a+1)])})),qr(iS,((t,o,n)=>{const{row:s,col:r}=n.event;e.onAction({numRows:s+1,numColumns:r+1}),Fr(t,fr())}))]),Gp.config({initSize:{numRows:10,numColumns:10},mode:"flatgrid",selector:'[role="button"]'})])})]}},colorswatch:(e,t)=>{const o=((e,t)=>{const o=e.initData.allowCustomColors&&t.colorinput.hasCustomColors();return e.initData.colors.fold((()=>Yw(t.colorinput.getColors(e.initData.storageKey),e.initData.storageKey,o)),(e=>e.concat($w(o))))})(e,t),n=t.colorinput.getColorCols(e.initData.storageKey),s="color",r={...nS(ca("menu-value"),o,(t=>{e.onAction({value:t})}),n,s,bv.CLOSE_ON_EXECUTE,e.select.getOr(T),t.shared.providers),markers:Bv(s),movement:rS(n,s)};return{type:"widget",data:{value:ca("widget-id")},dom:{tag:"div",classes:["tox-fancymenuitem"]},autofocus:!0,components:[Xx.widget(Rh.sketch(r))]}}},mS=e=>({type:"separator",dom:{tag:"div",classes:[yv,"tox-collection__group-heading"]},components:e.text.map(ri).toArray()});var gS=Object.freeze({__proto__:null,getCoupled:(e,t,o,n)=>o.getOrCreate(e,t,n),getExistingCoupled:(e,t,o,n)=>o.getExisting(e,t,n)}),pS=[ss("others",qn(rn.value,Vn()))],hS=Object.freeze({__proto__:null,init:()=>{const e={},t=(t,o)=>{if(0===ae(t.others).length)throw new Error("Cannot find any known coupled components");return be(e,o)},o=x({});return Ta({readState:o,getExisting:(e,o,n)=>t(o,n).orThunk((()=>(be(o.others,n).getOrDie("No information found for coupled component: "+n),A.none()))),getOrCreate:(o,n,s)=>t(n,s).getOrThunk((()=>{const t=be(n.others,s).getOrDie("No information found for coupled component: "+s)(o),r=o.getSystem().build(t);return e[s]=r,r}))})}});const fS=Al({fields:pS,name:"coupling",apis:gS,state:hS}),bS=e=>{let t=A.none(),o=[];const n=e=>{s()?r(e):o.push(e)},s=()=>t.isSome(),r=e=>{t.each((t=>{setTimeout((()=>{e(t)}),0)}))};return e((e=>{s()||(t=A.some(e),H(o,r),o=[])})),{get:n,map:e=>bS((t=>{n((o=>{t(e(o))}))})),isReady:s}},vS={nu:bS,pure:e=>bS((t=>{t(e)}))},yS=e=>{setTimeout((()=>{throw e}),0)},xS=e=>{const t=t=>{e().then(t,yS)};return{map:t=>xS((()=>e().then(t))),bind:t=>xS((()=>e().then((e=>t(e).toPromise())))),anonBind:t=>xS((()=>e().then((()=>t.toPromise())))),toLazy:()=>vS.nu(t),toCached:()=>{let t=null;return xS((()=>(null===t&&(t=e()),t)))},toPromise:e,get:t}},wS=e=>xS((()=>new Promise(e))),SS=e=>xS((()=>Promise.resolve(e))),kS=x("sink"),CS=x(Yu({name:kS(),overrides:x({dom:{tag:"div"},behaviours:Tl([_d.config({useFixed:E})]),events:Hr([Yr(Js()),Yr(js()),Yr(tr())])})})),OS=(e,t)=>{const o=e.getHotspot(t).getOr(t),n="hotspot",s=e.getAnchorOverrides();return e.layouts.fold((()=>({type:n,hotspot:o,overrides:s})),(e=>({type:n,hotspot:o,overrides:s,layouts:e})))},_S=(e,t,o,n,s,r,a)=>{const i=((e,t,o,n,s,r,a)=>{const i=((e,t,o)=>(0,e.fetch)(o).map(t))(e,t,n),l=AS(n,e);return i.map((e=>e.bind((e=>A.from(jh.sketch({...r.menu(),uid:fa(""),data:e,highlightOnOpen:a,onOpenMenu:(e,t)=>{const n=l().getOrDie();_d.position(n,t,{anchor:o}),Zd.decloak(s)},onOpenSubmenu:(e,t,o)=>{const n=l().getOrDie();_d.position(n,o,{anchor:{type:"submenu",item:t}}),Zd.decloak(s)},onRepositionMenu:(e,t,n)=>{const s=l().getOrDie();_d.position(s,t,{anchor:o}),H(n,(e=>{_d.position(s,e.triggeredMenu,{anchor:{type:"submenu",item:e.triggeringItem}})}))},onEscape:()=>(ah.focus(n),Zd.close(s),A.some(!0))}))))))})(e,t,OS(e,o),o,n,s,a);return i.map((e=>(e.fold((()=>{Zd.isOpen(n)&&Zd.close(n)}),(e=>{Zd.cloak(n),Zd.open(n,e),r(n)})),n)))},TS=(e,t,o,n,s,r,a)=>(Zd.close(n),SS(n)),ES=(e,t,o,n,s,r)=>{const a=fS.getCoupled(o,"sandbox");return(Zd.isOpen(a)?TS:_S)(e,t,o,a,n,s,r)},AS=(e,t)=>e.getSystem().getByUid(t.uid+"-"+kS()).map((e=>()=>rn.value(e))).getOrThunk((()=>t.lazySink.fold((()=>()=>rn.error(new Error("No internal sink is specified, nor could an external sink be found"))),(t=>()=>t(e))))),MS=e=>{Zd.getState(e).each((e=>{jh.repositionMenus(e)}))},DS=(e,t,o)=>{const n=wi(),s=AS(t,e);return{dom:{tag:"div",classes:e.sandboxClasses,attributes:{id:n.id,role:"listbox"}},behaviours:ku(e.sandboxBehaviours,[vu.config({store:{mode:"memory",initialValue:t}}),Zd.config({onOpen:(s,r)=>{const a=OS(e,t);n.link(t.element),e.matchWidth&&((e,t,o)=>{const n=Om.getCurrent(t).getOr(t),s=Zt(e.element);o?Bt(n.element,"min-width",s+"px"):((e,t)=>{Jt.set(e,t)})(n.element,s)})(a.hotspot,r,e.useMinWidth),e.onOpen(a,s,r),void 0!==o&&void 0!==o.onOpen&&o.onOpen(s,r)},onClose:(e,s)=>{n.unlink(t.element),void 0!==o&&void 0!==o.onClose&&o.onClose(e,s)},isPartOf:(e,o,n)=>Si(o,n)||Si(t,n),getAttachPoint:()=>s().getOrDie()}),Om.config({find:e=>Zd.getState(e).bind((e=>Om.getCurrent(e)))}),Il.config({channels:{...nu({isExtraPart:T}),...ru({doReposition:MS})}})])}},BS=e=>{const t=fS.getCoupled(e,"sandbox");MS(t)},IS=()=>[xs("sandboxClasses",[]),Su("sandboxBehaviours",[Om,Il,Zd,vu])],FS=x([ns("dom"),ns("fetch"),Ri("onOpen"),Ni("onExecute"),xs("getHotspot",A.some),xs("getAnchorOverrides",x({})),Oc(),yu("dropdownBehaviours",[ph,fS,Gp,ah]),ns("toggleClass"),xs("eventOrder",{}),ms("lazySink"),xs("matchWidth",!1),xs("useMinWidth",!1),ms("role")].concat(IS())),RS=x([qu({schema:[Bi(),xs("fakeFocus",!1)],name:"menu",defaults:e=>({onExecute:e.onExecute})}),CS()]),NS=wm({name:"Dropdown",configFields:FS(),partFields:RS(),factory:(e,t,o,n)=>{const s=e=>{Zd.getState(e).each((e=>{jh.highlightPrimary(e)}))},r=(t,o,s)=>ES(e,w,t,n,o,s),a={expand:e=>{ph.isOn(e)||r(e,b,Uh.HighlightNone).get(b)},open:e=>{ph.isOn(e)||r(e,b,Uh.HighlightMenuAndItem).get(b)},refetch:t=>fS.getExistingCoupled(t,"sandbox").fold((()=>r(t,b,Uh.HighlightMenuAndItem).map(b)),(o=>_S(e,w,t,o,n,b,Uh.HighlightMenuAndItem).map(b))),isOpen:ph.isOn,close:e=>{ph.isOn(e)&&r(e,b,Uh.HighlightMenuAndItem).get(b)},repositionMenus:e=>{ph.isOn(e)&&BS(e)}},i=(e,t)=>(Nr(e),A.some(!0));return{uid:e.uid,dom:e.dom,components:t,behaviours:wu(e.dropdownBehaviours,[ph.config({toggleClass:e.toggleClass,aria:{mode:"expanded"}}),fS.config({others:{sandbox:t=>DS(e,t,{onOpen:()=>ph.on(t),onClose:()=>ph.off(t)})}}),Gp.config({mode:"special",onSpace:i,onEnter:i,onDown:(e,t)=>{if(NS.isOpen(e)){const t=fS.getCoupled(e,"sandbox");s(t)}else NS.open(e);return A.some(!0)},onEscape:(e,t)=>NS.isOpen(e)?(NS.close(e),A.some(!0)):A.none()}),ah.config({})]),events:fh(A.some((e=>{r(e,s,Uh.HighlightMenuAndItem).get(b)}))),eventOrder:{...e.eventOrder,[mr()]:["disabling","toggling","alloy.base.behaviour"]},apis:a,domModification:{attributes:{"aria-haspopup":"true",...e.role.fold((()=>({})),(e=>({role:e}))),..."button"===e.dom.tag?{type:("type",be(e.dom,"attributes").bind((e=>be(e,"type")))).getOr("button")}:{}}}}},apis:{open:(e,t)=>e.open(t),refetch:(e,t)=>e.refetch(t),expand:(e,t)=>e.expand(t),close:(e,t)=>e.close(t),isOpen:(e,t)=>e.isOpen(t),repositionMenus:(e,t)=>e.repositionMenus(t)}}),VS=(e,t,o)=>{Gv(e).each((e=>{var n;((e,t)=>{Tt(t.element,"id").each((t=>Ct(e.element,"aria-activedescendant",t)))})(e,o),($a((n=t).element,Yv)?A.some(n.element):vi(n.element,"."+Yv)).each((t=>{Tt(t,"id").each((t=>Ct(e.element,"aria-controls",t)))}))})),Ct(o.element,"aria-selected","true")},zS=(e,t,o)=>{Ct(o.element,"aria-selected","false")},LS=e=>fS.getExistingCoupled(e,"sandbox").bind(jv).map($v).map((e=>e.fetchPattern)).getOr("");var HS;!function(e){e[e.ContentFocus=0]="ContentFocus",e[e.UiFocus=1]="UiFocus"}(HS||(HS={}));const PS=(e,t,o,n,s)=>{const r=o.shared.providers,a=e=>s?{...e,shortcut:A.none(),icon:e.text.isSome()?A.none():e.icon}:e;switch(e.type){case"menuitem":return(i=e,Yn("menuitem",ix,i)).fold(ty,(e=>A.some(((e,t,o,n=!0)=>{const s=Gx({presets:"normal",iconContent:e.icon,textContent:e.text,htmlContent:A.none(),ariaLabel:e.text,caret:A.none(),checkMark:A.none(),shortcutContent:e.shortcut},o,n);return Rx({data:Nx(e),getApi:e=>({isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t)}),enabled:e.enabled,onAction:e.onAction,onSetup:e.onSetup,triggersSubmenu:!1,itemBehaviours:[]},s,t,o)})(a(e),t,r,n))));case"nestedmenuitem":return(e=>Yn("nestedmenuitem",lx,e))(e).fold(ty,(e=>A.some(((e,t,o,n=!0,s=!1)=>{const r=s?(a=o.icons,zx("chevron-down",a,[Ov])):(e=>zx("chevron-right",e,[Ov]))(o.icons);var a;const i=Gx({presets:"normal",iconContent:e.icon,textContent:e.text,htmlContent:A.none(),ariaLabel:e.text,caret:A.some(r),checkMark:A.none(),shortcutContent:e.shortcut},o,n);return Rx({data:Nx(e),getApi:e=>({isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t),setIconFill:(t,o)=>{vi(e.element,`svg path[class="${t}"], rect[class="${t}"]`).each((e=>{Ct(e,"fill",o)}))},setTooltip:t=>{const n=o.translate(t);Ot(e.element,{"aria-label":n,title:n})}}),enabled:e.enabled,onAction:b,onSetup:e.onSetup,triggersSubmenu:!0,itemBehaviours:[]},i,t,o)})(a(e),t,r,n,s))));case"togglemenuitem":return(e=>Yn("togglemenuitem",cx,e))(e).fold(ty,(e=>A.some(((e,t,o,n=!0)=>{const s=Gx({iconContent:e.icon,textContent:e.text,htmlContent:A.none(),ariaLabel:e.text,checkMark:A.some(Wx(o.icons)),caret:A.none(),shortcutContent:e.shortcut,presets:"normal",meta:e.meta},o,n);return bn(Rx({data:Nx(e),enabled:e.enabled,getApi:e=>({setActive:t=>{ph.set(e,t)},isActive:()=>ph.isOn(e),isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t)}),onAction:e.onAction,onSetup:e.onSetup,triggersSubmenu:!1,itemBehaviours:[]},s,t,o),{toggling:{toggleClass:Sv,toggleOnExecute:!1,selected:e.active}})})(a(e),t,r,n))));case"separator":return(e=>Yn("separatormenuitem",By,e))(e).fold(ty,(e=>A.some(mS(e))));case"fancymenuitem":return(e=>Yn("fancymenuitem",ax,e))(e).fold(ty,(e=>((e,t)=>be(uS,e.fancytype).map((o=>o(e,t))))(e,o)));default:return console.error("Unknown item in general menu",e),A.none()}var i},US=(e,t,o,n,s,r,a)=>{const i=1===n,l=!i||ey(e);return we(L(e,(e=>{switch(e.type){case"separator":return(n=e,Yn("Autocompleter.Separator",By,n)).fold(ty,(e=>A.some(mS(e))));case"cardmenuitem":return(e=>Yn("cardmenuitem",tx,e))(e).fold(ty,(e=>A.some(((e,t,o,n)=>{const s={dom:jx(e.label),optComponents:[A.some({dom:{tag:"div",classes:[Tv,Ev]},components:Yx(e.items,n)})]};return Rx({data:Nx({text:A.none(),...e}),enabled:e.enabled,getApi:e=>({isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>{Lm.set(e,!t),H(Zc(e.element,"*"),(o=>{e.getSystem().getByDom(o).each((e=>{e.hasConfigured(Lm)&&Lm.set(e,!t)}))}))}}),onAction:e.onAction,onSetup:e.onSetup,triggersSubmenu:!1,itemBehaviours:A.from(n.itemBehaviours).getOr([])},s,t,o.providers)})({...e,onAction:t=>{e.onAction(t),o(e.value,e.meta)}},s,r,{itemBehaviours:$x(e.meta,r),cardText:{matchText:t,highlightOn:a}}))));default:return(e=>Yn("Autocompleter.Item",Iy,e))(e).fold(ty,(e=>A.some(((e,t,o,n,s,r,a,i=!0)=>{const l=Gx({presets:n,textContent:A.none(),htmlContent:o?e.text.map((e=>qx(e,t))):A.none(),ariaLabel:e.text,iconContent:e.icon,shortcutContent:A.none(),checkMark:A.none(),caret:A.none(),value:e.value},a.providers,i,e.icon);return Rx({data:Nx(e),enabled:e.enabled,getApi:x({}),onAction:t=>s(e.value,e.meta),onSetup:x(b),triggersSubmenu:!1,itemBehaviours:$x(e.meta,a)},l,r,a.providers)})(e,t,i,"normal",o,s,r,l))))}var n})))},WS=(e,t,o,n,s,r)=>{const a=ey(t),i=we(L(t,(e=>{const t=e=>PS(e,o,n,(e=>s?!ve(e,"text"):a)(e),s);return"nestedmenuitem"===e.type&&e.getSubmenuItems().length<=0?t({...e,enabled:!1}):t(e)}))),l=(e=>"no-search"===e.searchMode?{menuType:"normal"}:{menuType:"searchable",searchMode:e})(r);return(s?oy:ny)(e,a,i,1,l)},jS=e=>jh.singleData(e.value,e),GS=(e,t)=>{const o=ca("autocompleter"),n=As(!1),s=As(!1),r=ci(Gh.sketch({dom:{tag:"div",classes:["tox-autocompleter"],attributes:{id:o}},components:[],fireDismissalEventInstead:{},inlineBehaviours:Tl([th("dismissAutocompleter",[Wr(Or(),(()=>d())),Wr(Br(),((t,o)=>{Tt(o.event.target,"id").each((t=>Ct(ze(e.getBody()),"aria-activedescendant",t)))}))])]),lazySink:t.getSink})),a=()=>Gh.isOpen(r),i=s.get,l=()=>{if(a()){Gh.hide(r),e.dom.remove(o,!1);const t=ze(e.getBody());Tt(t,"aria-owns").filter((e=>e===o)).each((()=>{At(t,"aria-owns"),At(t,"aria-activedescendant")}))}},c=()=>Gh.getContent(r).bind((e=>te(e.components(),0))),d=()=>e.execCommand("mceAutocompleterClose"),u=s=>{const a=(o=>{const s=re(o,(e=>A.from(e.columns))).getOr(1);return Y(o,(o=>{const r=o.items;return US(r,o.matchText,((t,s)=>{const r=e.selection.getRng();((e,t)=>hv(ze(t.startContainer)).map((t=>{const o=e.createRng();return o.selectNode(t.dom),o})))(e.dom,r).each((r=>{const a={hide:()=>d(),reload:t=>{l(),e.execCommand("mceAutocompleterReload",!1,{fetchOptions:t})}};n.set(!0),o.onAction(a,r,t,s),n.set(!1)}))}),s,bv.BUBBLE_TO_SANDBOX,t,o.highlightOn)}))})(s);a.length>0?(((t,o)=>{var n;(n=ze(e.getBody()),vi(n,pv)).each((n=>{const s=re(t,(e=>A.from(e.columns))).getOr(1);Gh.showMenuAt(r,{anchor:{type:"node",root:ze(e.getBody()),node:A.from(n)}},((e,t,o,n)=>{const s=rS(t,n),r=Bv(n);return{data:jS({...e,movement:s,menuBehaviours:ux("auto"!==t?[]:[Jr(((e,t)=>{dx(e,4,r.item).each((({numColumns:t,numRows:o})=>{Gp.setGridSize(e,o,t)}))}))])}),menu:{markers:Bv(n),fakeFocus:o===HS.ContentFocus}}})(ny("autocompleter-value",!0,o,s,{menuType:"normal"}),s,HS.ContentFocus,"normal"))})),c().each(Xm.highlightFirst)})(s,a),Ct(ze(e.getBody()),"aria-owns",o),e.inline||m()):l()},m=()=>{e.dom.get(o)&&e.dom.remove(o,!1);const t=e.getDoc().documentElement,n=e.selection.getNode(),s=(e=>na(e,!0))(r.element);It(s,{border:"0",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0",position:"absolute",width:"1px",top:`${n.offsetTop}px`,left:`${n.offsetLeft}px`}),e.dom.add(t,s.dom),vi(s,'[role="menu"]').each((e=>{Ht(e,"position"),Ht(e,"max-height")}))};e.on("AutocompleterStart",(({lookupData:e})=>{s.set(!0),n.set(!1),u(e)})),e.on("AutocompleterUpdate",(({lookupData:e})=>u(e))),e.on("AutocompleterEnd",(()=>{l(),s.set(!1),n.set(!1)}));((e,t)=>{const o=(e,t)=>{Rr(e,Js(),{raw:t})},n=()=>e.getMenu().bind(Xm.getHighlighted);t.on("keydown",(t=>{const s=t.which;e.isActive()&&(e.isMenuOpen()?13===s?(n().each(Nr),t.preventDefault()):40===s?(n().fold((()=>{e.getMenu().each(Xm.highlightFirst)}),(e=>{o(e,t)})),t.preventDefault(),t.stopImmediatePropagation()):37!==s&&38!==s&&39!==s||n().each((e=>{o(e,t),t.preventDefault(),t.stopImmediatePropagation()})):13!==s&&38!==s&&40!==s||e.cancelIfNecessary())})),t.on("NodeChange",(t=>{e.isActive()&&!e.isProcessingAction()&&hv(ze(t.element)).isNone()&&e.cancelIfNecessary()}))})({cancelIfNecessary:d,isMenuOpen:a,isActive:i,isProcessingAction:n.get,getMenu:c},e)},$S=["visible","hidden","clip"],qS=e=>Me(e).length>0&&!R($S,e),YS=e=>{if(Ge(e)){const t=Rt(e,"overflow-x"),o=Rt(e,"overflow-y");return qS(t)||qS(o)}return!1},XS=(e,t)=>uv(e)?(e=>{const t=Jc(e,YS),o=0===t.length?vt(e).map(yt).map((e=>Jc(e,YS))).getOr([]):t;return oe(o).map((e=>({element:e,others:o.slice(1)})))})(t):A.none(),KS=e=>{const t=[...L(e.others,Zo),tn()];return((e,t)=>j(t,((e,t)=>en(e,t)),e))(Zo(e.element),t)},JS=(e,t,o)=>yi(e,t,o).isSome(),ZS=(e,t)=>{let o=null;return{cancel:()=>{null!==o&&(clearTimeout(o),o=null)},schedule:(...n)=>{o=setTimeout((()=>{e.apply(null,n),o=null}),t)}}},QS=e=>{const t=e.raw;return void 0===t.touches||1!==t.touches.length?A.none():A.some(t.touches[0])},ek=(e,t)=>{const o={stopBackspace:!0,...t},n=(e=>{const t=nc(),o=As(!1),n=ZS((t=>{e.triggerEvent(hr(),t),o.set(!0)}),400),s=Bs([{key:Hs(),value:e=>(QS(e).each((s=>{n.cancel();const r={x:s.clientX,y:s.clientY,target:e.target};n.schedule(e),o.set(!1),t.set(r)})),A.none())},{key:Ps(),value:e=>(n.cancel(),QS(e).each((e=>{t.on((o=>{((e,t)=>{const o=Math.abs(e.clientX-t.x),n=Math.abs(e.clientY-t.y);return o>5||n>5})(e,o)&&t.clear()}))})),A.none())},{key:Us(),value:s=>(n.cancel(),t.get().filter((e=>Qe(e.target,s.target))).map((t=>o.get()?(s.prevent(),!1):e.triggerEvent(pr(),s))))}]);return{fireIfReady:(e,t)=>be(s,t).bind((t=>t(e)))}})(o),s=L(["touchstart","touchmove","touchend","touchcancel","gesturestart","mousedown","mouseup","mouseover","mousemove","mouseout","click"].concat(["selectstart","input","contextmenu","change","transitionend","transitioncancel","drag","dragstart","dragend","dragenter","dragleave","dragover","drop","keyup"]),(t=>rc(e,t,(e=>{n.fireIfReady(e,t).each((t=>{t&&e.kill()})),o.triggerEvent(t,e)&&e.kill()})))),r=nc(),a=rc(e,"paste",(e=>{n.fireIfReady(e,"paste").each((t=>{t&&e.kill()})),o.triggerEvent("paste",e)&&e.kill(),r.set(setTimeout((()=>{o.triggerEvent(dr(),e)}),0))})),i=rc(e,"keydown",(e=>{o.triggerEvent("keydown",e)?e.kill():o.stopBackspace&&(e=>e.raw.which===Km[0]&&!R(["input","textarea"],We(e.target))&&!JS(e.target,'[contenteditable="true"]'))(e)&&e.prevent()})),l=rc(e,"focusin",(e=>{o.triggerEvent("focusin",e)&&e.kill()})),c=nc(),d=rc(e,"focusout",(e=>{o.triggerEvent("focusout",e)&&e.kill(),c.set(setTimeout((()=>{o.triggerEvent(cr(),e)}),0))}));return{unbind:()=>{H(s,(e=>{e.unbind()})),i.unbind(),l.unbind(),d.unbind(),a.unbind(),r.on(clearTimeout),c.on(clearTimeout)}}},tk=(e,t)=>{const o=be(e,"target").getOr(t);return As(o)},ok=Ms([{stopped:[]},{resume:["element"]},{complete:[]}]),nk=(e,t,o,n,s,r)=>{const a=e(t,n),i=((e,t)=>{const o=As(!1),n=As(!1);return{stop:()=>{o.set(!0)},cut:()=>{n.set(!0)},isStopped:o.get,isCut:n.get,event:e,setSource:t.set,getSource:t.get}})(o,s);return a.fold((()=>(r.logEventNoHandlers(t,n),ok.complete())),(e=>{const o=e.descHandler;return Ma(o)(i),i.isStopped()?(r.logEventStopped(t,e.element,o.purpose),ok.stopped()):i.isCut()?(r.logEventCut(t,e.element,o.purpose),ok.complete()):rt(e.element).fold((()=>(r.logNoParent(t,e.element,o.purpose),ok.complete())),(n=>(r.logEventResponse(t,e.element,o.purpose),ok.resume(n))))}))},sk=(e,t,o,n,s,r)=>nk(e,t,o,n,s,r).fold(E,(n=>sk(e,t,o,n,s,r)),T),rk=(e,t,o,n,s)=>{const r=tk(o,n);return sk(e,t,o,n,r,s)},ak=()=>{const e=(()=>{const e={};return{registerId:(t,o,n)=>{le(n,((n,s)=>{const r=void 0!==e[s]?e[s]:{};r[o]=((e,t)=>({cHandler:k.apply(void 0,[e.handler].concat(t)),purpose:e.purpose}))(n,t),e[s]=r}))},unregisterId:t=>{le(e,((e,o)=>{ve(e,t)&&delete e[t]}))},filterByType:t=>be(e,t).map((e=>pe(e,((e,t)=>((e,t)=>({id:e,descHandler:t}))(t,e))))).getOr([]),find:(t,o,n)=>be(e,o).bind((e=>Rs(n,(t=>((e,t)=>ha(t).bind((t=>be(e,t))).map((e=>((e,t)=>({element:e,descHandler:t}))(t,e))))(e,t)),t)))}})(),t={},o=o=>{ha(o.element).each((o=>{delete t[o],e.unregisterId(o)}))};return{find:(t,o,n)=>e.find(t,o,n),filter:t=>e.filterByType(t),register:n=>{const s=(e=>{const t=e.element;return ha(t).getOrThunk((()=>((e,t)=>{const o=ca(ma+"uid-");return pa(t,o),o})(0,e.element)))})(n);ye(t,s)&&((e,n)=>{const s=t[n];if(s!==e)throw new Error('The tagId "'+n+'" is already used by: '+sa(s.element)+"\nCannot use it for: "+sa(e.element)+"\nThe conflicting element is"+(xt(s.element)?" ":" not ")+"already in the DOM");o(e)})(n,s);const r=[n];e.registerId(r,s,n.events),t[s]=n},unregister:o,getById:e=>be(t,e)}},ik=xm({name:"Container",factory:e=>{const{attributes:t,...o}=e.dom;return{uid:e.uid,dom:{tag:"div",attributes:{role:"presentation",...t},...o},components:e.components,behaviours:xu(e.containerBehaviours),events:e.events,domModification:e.domModification,eventOrder:e.eventOrder}},configFields:[xs("components",[]),yu("containerBehaviours",[]),xs("events",{}),xs("domModification",{}),xs("eventOrder",{})]}),lk=e=>{const t=t=>rt(e.element).fold(E,(e=>Qe(t,e))),o=ak(),n=(e,n)=>o.find(t,e,n),s=ek(e.element,{triggerEvent:(e,t)=>_i(e,t.target,(o=>((e,t,o,n)=>rk(e,t,o,o.target,n))(n,e,t,o)))}),r={debugInfo:x("real"),triggerEvent:(e,t,o)=>{_i(e,t,(s=>rk(n,e,o,t,s)))},triggerFocus:(e,t)=>{ha(e).fold((()=>{Rl(e)}),(o=>{_i(lr(),e,(o=>(((e,t,o,n,s)=>{const r=tk(o,n);nk(e,t,o,n,r,s)})(n,lr(),{originator:t,kill:b,prevent:b,target:e},e,o),!1)))}))},triggerEscape:(e,t)=>{r.triggerEvent("keydown",e.element,t.event)},getByUid:e=>p(e),getByDom:e=>h(e),build:ci,buildOrPatch:li,addToGui:e=>{l(e)},removeFromGui:e=>{c(e)},addToWorld:e=>{a(e)},removeFromWorld:e=>{i(e)},broadcast:e=>{u(e)},broadcastOn:(e,t)=>{m(e,t)},broadcastEvent:(e,t)=>{g(e,t)},isConnected:E},a=e=>{e.connect(r),qe(e.element)||(o.register(e),H(e.components(),a),r.triggerEvent(vr(),e.element,{target:e.element}))},i=e=>{qe(e.element)||(H(e.components(),i),o.unregister(e)),e.disconnect()},l=t=>{Id(e,t)},c=e=>{Nd(e)},d=e=>{const t=o.filter(ur());H(t,(t=>{const o=t.descHandler;Ma(o)(e)}))},u=e=>{d({universal:!0,data:e})},m=(e,t)=>{d({universal:!1,channels:e,data:t})},g=(e,t)=>((e,t,o)=>{const n=(e=>{const t=As(!1);return{stop:()=>{t.set(!0)},cut:b,isStopped:t.get,isCut:T,event:e,setSource:O("Cannot set source of a broadcasted event"),getSource:O("Cannot get source of a broadcasted event")}})(t);return H(e,(e=>{const t=e.descHandler;Ma(t)(n)})),n.isStopped()})(o.filter(e),t),p=e=>o.getById(e).fold((()=>rn.error(new Error('Could not find component with uid: "'+e+'" in system.'))),rn.value),h=e=>{const t=ha(e).getOr("not found");return p(t)};return a(e),{root:e,element:e.element,destroy:()=>{s.unbind(),Uo(e.element)},add:l,remove:c,getByUid:p,getByDom:h,addToWorld:a,removeFromWorld:i,broadcast:u,broadcastOn:m,broadcastEvent:g}},ck=x([xs("prefix","form-field"),yu("fieldBehaviours",[Om,vu])]),dk=x([Yu({schema:[ns("dom")],name:"label"}),Yu({factory:{sketch:e=>({uid:e.uid,dom:{tag:"span",styles:{display:"none"},attributes:{"aria-hidden":"true"},innerHtml:e.text}})},schema:[ns("text")],name:"aria-descriptor"}),$u({factory:{sketch:e=>{const t=((e,t)=>{const o={};return le(e,((e,n)=>{R(t,n)||(o[n]=e)})),o})(e,["factory"]);return e.factory.sketch(t)}},schema:[ns("factory")],name:"field"})]),uk=wm({name:"FormField",configFields:ck(),partFields:dk(),factory:(e,t,o,n)=>{const s=wu(e.fieldBehaviours,[Om.config({find:t=>am(t,e,"field")}),vu.config({store:{mode:"manual",getValue:e=>Om.getCurrent(e).bind(vu.getValue),setValue:(e,t)=>{Om.getCurrent(e).each((e=>{vu.setValue(e,t)}))}}})]),r=Hr([Jr(((t,o)=>{const n=lm(t,e,["label","field","aria-descriptor"]);n.field().each((t=>{const o=ca(e.prefix);n.label().each((e=>{Ct(e.element,"for",o),Ct(t.element,"id",o)})),n["aria-descriptor"]().each((o=>{const n=ca(e.prefix);Ct(o.element,"id",n),Ct(t.element,"aria-describedby",n)}))}))}))]),a={getField:t=>am(t,e,"field"),getLabel:t=>am(t,e,"label")};return{uid:e.uid,dom:e.dom,components:t,behaviours:s,events:r,apis:a}},apis:{getField:(e,t)=>e.getField(t),getLabel:(e,t)=>e.getLabel(t)}});var mk=Object.freeze({__proto__:null,exhibit:(e,t)=>Aa({attributes:Bs([{key:t.tabAttr,value:"true"}])})}),gk=[xs("tabAttr","data-alloy-tabstop")];const pk=Al({fields:gk,name:"tabstopping",active:mk});var hk=tinymce.util.Tools.resolve("tinymce.html.Entities");const fk=(e,t,o,n)=>{const s=bk(e,t,o,n);return uk.sketch(s)},bk=(e,t,o,n)=>({dom:vk(o),components:e.toArray().concat([t]),fieldBehaviours:Tl(n)}),vk=e=>({tag:"div",classes:["tox-form__group"].concat(e)}),yk=(e,t)=>uk.parts.label({dom:{tag:"label",classes:["tox-label"]},components:[ri(t.translate(e))]}),xk=ca("form-component-change"),wk=ca("form-close"),Sk=ca("form-cancel"),kk=ca("form-action"),Ck=ca("form-submit"),Ok=ca("form-block"),_k=ca("form-unblock"),Tk=ca("form-tabchange"),Ek=ca("form-resize"),Ak=(e,t,o)=>{const n=e.label.map((e=>yk(e,t))),s=t.icons(),r=e=>(t,o)=>{yi(o.event.target,"[data-collection-item-value]").each((n=>{e(t,o,n,_t(n,"data-collection-item-value"))}))},a=r(((o,n,s,r)=>{n.stop(),t.isDisabled()||Rr(o,kk,{name:e.name,value:r})})),i=[Wr(Ys(),r(((e,t,o)=>{Rl(o)}))),Wr(tr(),a),Wr(pr(),a),Wr(Xs(),r(((e,t,o)=>{vi(e.element,"."+_v).each((e=>{Ga(e,_v)})),Wa(o,_v)}))),Wr(Ks(),r((e=>{vi(e.element,"."+_v).each((e=>{Ga(e,_v)}))}))),ea(r(((t,o,n,s)=>{Rr(t,kk,{name:e.name,value:s})})))],l=(e,t)=>L(Zc(e.element,".tox-collection__item"),t),c=uk.parts.field({dom:{tag:"div",classes:["tox-collection"].concat(1!==e.columns?["tox-collection--grid"]:["tox-collection--list"])},components:[],factory:{sketch:w},behaviours:Tl([Lm.config({disabled:t.isDisabled,onDisabled:e=>{l(e,(e=>{Wa(e,"tox-collection__item--state-disabled"),Ct(e,"aria-disabled",!0)}))},onEnabled:e=>{l(e,(e=>{Ga(e,"tox-collection__item--state-disabled"),At(e,"aria-disabled")}))}}),Ox(),eh.config({}),vu.config({store:{mode:"memory",initialValue:o.getOr([])},onSetValue:(o,n)=>{((o,n)=>{const r=L(n,(o=>{const n=qf.translate(o.text),r=1===e.columns?`<div class="tox-collection__item-label">${n}</div>`:"",a=`<div class="tox-collection__item-icon">${(e=>{var t;return null!==(t=s[e])&&void 0!==t?t:e})(o.icon)}</div>`,i={_:" "," - ":" ","-":" "},l=n.replace(/\_| \- |\-/g,(e=>i[e]));return`<div class="tox-collection__item${t.isDisabled()?" tox-collection__item--state-disabled":""}" tabindex="-1" data-collection-item-value="${hk.encodeAllRaw(o.value)}" title="${l}" aria-label="${l}">${a}${r}</div>`})),a="auto"!==e.columns&&e.columns>1?z(r,e.columns):[r],i=L(a,(e=>`<div class="tox-collection__group">${e.join("")}</div>`));oa(o.element,i.join(""))})(o,n),"auto"===e.columns&&dx(o,5,"tox-collection__item").each((({numRows:e,numColumns:t})=>{Gp.setGridSize(o,e,t)})),Fr(o,Ek)}}),pk.config({}),Gp.config((d=e.columns,"normal",1===d?{mode:"menu",moveOnTab:!1,selector:".tox-collection__item"}:"auto"===d?{mode:"flatgrid",selector:".tox-collection__item",initSize:{numColumns:1,numRows:1}}:{mode:"matrix",selectors:{row:".tox-collection__group",cell:`.${yv}`}})),th("collection-events",i)]),eventOrder:{[mr()]:["disabling","alloy.base.behaviour","collection-events"]}});var d;return fk(n,c,["tox-form__group--collection"],[])},Mk=["input","textarea"],Dk=e=>{const t=We(e);return R(Mk,t)},Bk=(e,t)=>{const o=t.getRoot(e).getOr(e.element);Ga(o,t.invalidClass),t.notify.each((t=>{Dk(e.element)&&Ct(e.element,"aria-invalid",!1),t.getContainer(e).each((e=>{oa(e,t.validHtml)})),t.onValid(e)}))},Ik=(e,t,o,n)=>{const s=t.getRoot(e).getOr(e.element);Wa(s,t.invalidClass),t.notify.each((t=>{Dk(e.element)&&Ct(e.element,"aria-invalid",!0),t.getContainer(e).each((e=>{oa(e,n)})),t.onInvalid(e,n)}))},Fk=(e,t,o)=>t.validator.fold((()=>SS(rn.value(!0))),(t=>t.validate(e))),Rk=(e,t,o)=>(t.notify.each((t=>{t.onValidate(e)})),Fk(e,t).map((o=>e.getSystem().isConnected()?o.fold((o=>(Ik(e,t,0,o),rn.error(o))),(o=>(Bk(e,t),rn.value(o)))):rn.error("No longer in system"))));var Nk=Object.freeze({__proto__:null,markValid:Bk,markInvalid:Ik,query:Fk,run:Rk,isInvalid:(e,t)=>{const o=t.getRoot(e).getOr(e.element);return $a(o,t.invalidClass)}}),Vk=Object.freeze({__proto__:null,events:(e,t)=>e.validator.map((t=>Hr([Wr(t.onEvent,(t=>{Rk(t,e).get(w)}))].concat(t.validateOnLoad?[Jr((t=>{Rk(t,e).get(b)}))]:[])))).getOr({})}),zk=[ns("invalidClass"),xs("getRoot",A.none),ys("notify",[xs("aria","alert"),xs("getContainer",A.none),xs("validHtml",""),Ri("onValid"),Ri("onInvalid"),Ri("onValidate")]),ys("validator",[ns("validate"),xs("onEvent","input"),xs("validateOnLoad",!0)])];const Lk=Al({fields:zk,name:"invalidating",active:Vk,apis:Nk,extra:{validation:e=>t=>{const o=vu.getValue(t);return SS(e(o))}}}),Hk=Al({fields:[],name:"unselecting",active:Object.freeze({__proto__:null,events:()=>Hr([Pr(rr(),E)]),exhibit:()=>Aa({styles:{"-webkit-user-select":"none","user-select":"none","-ms-user-select":"none","-moz-user-select":"-moz-none"},attributes:{unselectable:"on"}})})}),Pk=ca("color-input-change"),Uk=ca("color-swatch-change"),Wk=ca("color-picker-cancel"),jk=Yu({schema:[ns("dom")],name:"label"}),Gk=e=>Yu({name:e+"-edge",overrides:t=>t.model.manager.edgeActions[e].fold((()=>({})),(e=>({events:Hr([jr(Hs(),((t,o,n)=>e(t,n)),[t]),jr(js(),((t,o,n)=>e(t,n)),[t]),jr(Gs(),((t,o,n)=>{n.mouseIsDown.get()&&e(t,n)}),[t])])})))}),$k=Gk("top-left"),qk=Gk("top"),Yk=Gk("top-right"),Xk=Gk("right"),Kk=Gk("bottom-right"),Jk=Gk("bottom"),Zk=Gk("bottom-left"),Qk=Gk("left"),eC=$u({name:"thumb",defaults:x({dom:{styles:{position:"absolute"}}}),overrides:e=>({events:Hr([$r(Hs(),e,"spectrum"),$r(Ps(),e,"spectrum"),$r(Us(),e,"spectrum"),$r(js(),e,"spectrum"),$r(Gs(),e,"spectrum"),$r(qs(),e,"spectrum")])})}),tC=e=>ug(e.event);var oC=[jk,Qk,Xk,qk,Jk,$k,Yk,Zk,Kk,eC,$u({schema:[ts("mouseIsDown",(()=>As(!1)))],name:"spectrum",overrides:e=>{const t=e.model.manager,o=(o,n)=>t.getValueFromEvent(n).map((n=>t.setValueFrom(o,e,n)));return{behaviours:Tl([Gp.config({mode:"special",onLeft:(o,n)=>t.onLeft(o,e,tC(n)),onRight:(o,n)=>t.onRight(o,e,tC(n)),onUp:(o,n)=>t.onUp(o,e,tC(n)),onDown:(o,n)=>t.onDown(o,e,tC(n))}),pk.config({}),ah.config({})]),events:Hr([Wr(Hs(),o),Wr(Ps(),o),Wr(js(),o),Wr(Gs(),((t,n)=>{e.mouseIsDown.get()&&o(t,n)}))])}}})];const nC=x("slider.change.value"),sC=e=>{const t=e.event.raw;if((e=>-1!==e.type.indexOf("touch"))(t)){const e=t;return void 0!==e.touches&&1===e.touches.length?A.some(e.touches[0]).map((e=>qt(e.clientX,e.clientY))):A.none()}{const e=t;return void 0!==e.clientX?A.some(e).map((e=>qt(e.clientX,e.clientY))):A.none()}},rC=e=>e.model.minX,aC=e=>e.model.minY,iC=e=>e.model.minX-1,lC=e=>e.model.minY-1,cC=e=>e.model.maxX,dC=e=>e.model.maxY,uC=e=>e.model.maxX+1,mC=e=>e.model.maxY+1,gC=(e,t,o)=>t(e)-o(e),pC=e=>gC(e,cC,rC),hC=e=>gC(e,dC,aC),fC=e=>pC(e)/2,bC=e=>hC(e)/2,vC=(e,t)=>t?e.stepSize*e.speedMultiplier:e.stepSize,yC=e=>e.snapToGrid,xC=e=>e.snapStart,wC=e=>e.rounded,SC=(e,t)=>void 0!==e[t+"-edge"],kC=e=>SC(e,"left"),CC=e=>SC(e,"right"),OC=e=>SC(e,"top"),_C=e=>SC(e,"bottom"),TC=e=>e.model.value.get(),EC=(e,t)=>({x:e,y:t}),AC=(e,t)=>{Rr(e,nC(),{value:t})},MC=(e,t,o,n)=>e<t?e:e>o?o:e===t?t-1:Math.max(t,e-n),DC=(e,t,o,n)=>e>o?e:e<t?t:e===o?o+1:Math.min(o,e+n),BC=(e,t,o)=>Math.max(t,Math.min(o,e)),IC=e=>{const{min:t,max:o,range:n,value:s,step:r,snap:a,snapStart:i,rounded:l,hasMinEdge:c,hasMaxEdge:d,minBound:u,maxBound:m,screenRange:g}=e,p=c?t-1:t,h=d?o+1:o;if(s<u)return p;if(s>m)return h;{const e=((e,t,o)=>Math.min(o,Math.max(e,t))-t)(s,u,m),c=BC(e/g*n+t,p,h);return a&&c>=t&&c<=o?((e,t,o,n,s)=>s.fold((()=>{const s=e-t,r=Math.round(s/n)*n;return BC(t+r,t-1,o+1)}),(t=>{const s=(e-t)%n,r=Math.round(s/n),a=Math.floor((e-t)/n),i=Math.floor((o-t)/n),l=t+Math.min(i,a+r)*n;return Math.max(t,l)})))(c,t,o,r,i):l?Math.round(c):c}},FC=e=>{const{min:t,max:o,range:n,value:s,hasMinEdge:r,hasMaxEdge:a,maxBound:i,maxOffset:l,centerMinEdge:c,centerMaxEdge:d}=e;return s<t?r?0:c:s>o?a?i:d:(s-t)/n*l},RC="top",NC="right",VC="bottom",zC="left",LC=e=>e.element.dom.getBoundingClientRect(),HC=(e,t)=>e[t],PC=e=>{const t=LC(e);return HC(t,zC)},UC=e=>{const t=LC(e);return HC(t,NC)},WC=e=>{const t=LC(e);return HC(t,RC)},jC=e=>{const t=LC(e);return HC(t,VC)},GC=e=>{const t=LC(e);return HC(t,"width")},$C=e=>{const t=LC(e);return HC(t,"height")},qC=(e,t,o)=>(e+t)/2-o,YC=(e,t)=>{const o=LC(e),n=LC(t),s=HC(o,zC),r=HC(o,NC),a=HC(n,zC);return qC(s,r,a)},XC=(e,t)=>{const o=LC(e),n=LC(t),s=HC(o,RC),r=HC(o,VC),a=HC(n,RC);return qC(s,r,a)},KC=(e,t)=>{Rr(e,nC(),{value:t})},JC=(e,t,o)=>{const n={min:rC(t),max:cC(t),range:pC(t),value:o,step:vC(t),snap:yC(t),snapStart:xC(t),rounded:wC(t),hasMinEdge:kC(t),hasMaxEdge:CC(t),minBound:PC(e),maxBound:UC(e),screenRange:GC(e)};return IC(n)},ZC=e=>(t,o,n)=>((e,t,o,n)=>{const s=(e>0?DC:MC)(TC(o),rC(o),cC(o),vC(o,n));return KC(t,s),A.some(s)})(e,t,o,n).map(E),QC=(e,t,o,n,s,r)=>{const a=((e,t,o,n,s)=>{const r=GC(e),a=n.bind((t=>A.some(YC(t,e)))).getOr(0),i=s.bind((t=>A.some(YC(t,e)))).getOr(r),l={min:rC(t),max:cC(t),range:pC(t),value:o,hasMinEdge:kC(t),hasMaxEdge:CC(t),minBound:PC(e),minOffset:0,maxBound:UC(e),maxOffset:r,centerMinEdge:a,centerMaxEdge:i};return FC(l)})(t,r,o,n,s);return PC(t)-PC(e)+a},eO=ZC(-1),tO=ZC(1),oO=A.none,nO=A.none,sO={"top-left":A.none(),top:A.none(),"top-right":A.none(),right:A.some(((e,t)=>{AC(e,uC(t))})),"bottom-right":A.none(),bottom:A.none(),"bottom-left":A.none(),left:A.some(((e,t)=>{AC(e,iC(t))}))};var rO=Object.freeze({__proto__:null,setValueFrom:(e,t,o)=>{const n=JC(e,t,o);return KC(e,n),n},setToMin:(e,t)=>{const o=rC(t);KC(e,o)},setToMax:(e,t)=>{const o=cC(t);KC(e,o)},findValueOfOffset:JC,getValueFromEvent:e=>sC(e).map((e=>e.left)),findPositionOfValue:QC,setPositionFromValue:(e,t,o,n)=>{const s=TC(o),r=QC(e,n.getSpectrum(e),s,n.getLeftEdge(e),n.getRightEdge(e),o),a=Zt(t.element)/2;Bt(t.element,"left",r-a+"px")},onLeft:eO,onRight:tO,onUp:oO,onDown:nO,edgeActions:sO});const aO=(e,t)=>{Rr(e,nC(),{value:t})},iO=(e,t,o)=>{const n={min:aC(t),max:dC(t),range:hC(t),value:o,step:vC(t),snap:yC(t),snapStart:xC(t),rounded:wC(t),hasMinEdge:OC(t),hasMaxEdge:_C(t),minBound:WC(e),maxBound:jC(e),screenRange:$C(e)};return IC(n)},lO=e=>(t,o,n)=>((e,t,o,n)=>{const s=(e>0?DC:MC)(TC(o),aC(o),dC(o),vC(o,n));return aO(t,s),A.some(s)})(e,t,o,n).map(E),cO=(e,t,o,n,s,r)=>{const a=((e,t,o,n,s)=>{const r=$C(e),a=n.bind((t=>A.some(XC(t,e)))).getOr(0),i=s.bind((t=>A.some(XC(t,e)))).getOr(r),l={min:aC(t),max:dC(t),range:hC(t),value:o,hasMinEdge:OC(t),hasMaxEdge:_C(t),minBound:WC(e),minOffset:0,maxBound:jC(e),maxOffset:r,centerMinEdge:a,centerMaxEdge:i};return FC(l)})(t,r,o,n,s);return WC(t)-WC(e)+a},dO=A.none,uO=A.none,mO=lO(-1),gO=lO(1),pO={"top-left":A.none(),top:A.some(((e,t)=>{AC(e,lC(t))})),"top-right":A.none(),right:A.none(),"bottom-right":A.none(),bottom:A.some(((e,t)=>{AC(e,mC(t))})),"bottom-left":A.none(),left:A.none()};var hO=Object.freeze({__proto__:null,setValueFrom:(e,t,o)=>{const n=iO(e,t,o);return aO(e,n),n},setToMin:(e,t)=>{const o=aC(t);aO(e,o)},setToMax:(e,t)=>{const o=dC(t);aO(e,o)},findValueOfOffset:iO,getValueFromEvent:e=>sC(e).map((e=>e.top)),findPositionOfValue:cO,setPositionFromValue:(e,t,o,n)=>{const s=TC(o),r=cO(e,n.getSpectrum(e),s,n.getTopEdge(e),n.getBottomEdge(e),o),a=jt(t.element)/2;Bt(t.element,"top",r-a+"px")},onLeft:dO,onRight:uO,onUp:mO,onDown:gO,edgeActions:pO});const fO=(e,t)=>{Rr(e,nC(),{value:t})},bO=(e,t)=>({x:e,y:t}),vO=(e,t)=>(o,n,s)=>((e,t,o,n,s)=>{const r=e>0?DC:MC,a=t?TC(n).x:r(TC(n).x,rC(n),cC(n),vC(n,s)),i=t?r(TC(n).y,aC(n),dC(n),vC(n,s)):TC(n).y;return fO(o,bO(a,i)),A.some(a)})(e,t,o,n,s).map(E),yO=vO(-1,!1),xO=vO(1,!1),wO=vO(-1,!0),SO=vO(1,!0),kO={"top-left":A.some(((e,t)=>{AC(e,EC(iC(t),lC(t)))})),top:A.some(((e,t)=>{AC(e,EC(fC(t),lC(t)))})),"top-right":A.some(((e,t)=>{AC(e,EC(uC(t),lC(t)))})),right:A.some(((e,t)=>{AC(e,EC(uC(t),bC(t)))})),"bottom-right":A.some(((e,t)=>{AC(e,EC(uC(t),mC(t)))})),bottom:A.some(((e,t)=>{AC(e,EC(fC(t),mC(t)))})),"bottom-left":A.some(((e,t)=>{AC(e,EC(iC(t),mC(t)))})),left:A.some(((e,t)=>{AC(e,EC(iC(t),bC(t)))}))};var CO=Object.freeze({__proto__:null,setValueFrom:(e,t,o)=>{const n=JC(e,t,o.left),s=iO(e,t,o.top),r=bO(n,s);return fO(e,r),r},setToMin:(e,t)=>{const o=rC(t),n=aC(t);fO(e,bO(o,n))},setToMax:(e,t)=>{const o=cC(t),n=dC(t);fO(e,bO(o,n))},getValueFromEvent:e=>sC(e),setPositionFromValue:(e,t,o,n)=>{const s=TC(o),r=QC(e,n.getSpectrum(e),s.x,n.getLeftEdge(e),n.getRightEdge(e),o),a=cO(e,n.getSpectrum(e),s.y,n.getTopEdge(e),n.getBottomEdge(e),o),i=Zt(t.element)/2,l=jt(t.element)/2;Bt(t.element,"left",r-i+"px"),Bt(t.element,"top",a-l+"px")},onLeft:yO,onRight:xO,onUp:wO,onDown:SO,edgeActions:kO});const OO=wm({name:"Slider",configFields:[xs("stepSize",1),xs("speedMultiplier",10),xs("onChange",b),xs("onChoose",b),xs("onInit",b),xs("onDragStart",b),xs("onDragEnd",b),xs("snapToGrid",!1),xs("rounded",!0),ms("snapStart"),ss("model",Zn("mode",{x:[xs("minX",0),xs("maxX",100),ts("value",(e=>As(e.mode.minX))),ns("getInitialValue"),Li("manager",rO)],y:[xs("minY",0),xs("maxY",100),ts("value",(e=>As(e.mode.minY))),ns("getInitialValue"),Li("manager",hO)],xy:[xs("minX",0),xs("maxX",100),xs("minY",0),xs("maxY",100),ts("value",(e=>As({x:e.mode.minX,y:e.mode.minY}))),ns("getInitialValue"),Li("manager",CO)]})),yu("sliderBehaviours",[Gp,vu]),ts("mouseIsDown",(()=>As(!1)))],partFields:oC,factory:(e,t,o,n)=>{const s=t=>im(t,e,"thumb"),r=t=>im(t,e,"spectrum"),a=t=>am(t,e,"left-edge"),i=t=>am(t,e,"right-edge"),l=t=>am(t,e,"top-edge"),c=t=>am(t,e,"bottom-edge"),d=e.model,u=d.manager,m=(t,o)=>{u.setPositionFromValue(t,o,e,{getLeftEdge:a,getRightEdge:i,getTopEdge:l,getBottomEdge:c,getSpectrum:r})},g=(e,t)=>{d.value.set(t);const o=s(e);m(e,o)},p=t=>{const o=e.mouseIsDown.get();e.mouseIsDown.set(!1),o&&am(t,e,"thumb").each((o=>{const n=d.value.get();e.onChoose(t,o,n)}))},h=(t,o)=>{o.stop(),e.mouseIsDown.set(!0),e.onDragStart(t,s(t))},f=(t,o)=>{o.stop(),e.onDragEnd(t,s(t)),p(t)},b=t=>{am(t,e,"spectrum").map(Gp.focusIn)};return{uid:e.uid,dom:e.dom,components:t,behaviours:wu(e.sliderBehaviours,[Gp.config({mode:"special",focusIn:b}),vu.config({store:{mode:"manual",getValue:e=>d.value.get(),setValue:g}}),Il.config({channels:{[tu()]:{onReceive:p}}})]),events:Hr([Wr(nC(),((t,o)=>{((t,o)=>{g(t,o);const n=s(t);e.onChange(t,n,o),A.some(!0)})(t,o.event.value)})),Jr(((t,o)=>{const n=d.getInitialValue();d.value.set(n);const a=s(t);m(t,a);const i=r(t);e.onInit(t,a,i,d.value.get())})),Wr(Hs(),h),Wr(Us(),f),Wr(js(),((e,t)=>{b(e),h(e,t)})),Wr(qs(),f)]),apis:{resetToMin:t=>{u.setToMin(t,e)},resetToMax:t=>{u.setToMax(t,e)},setValue:g,refresh:m},domModification:{styles:{position:"relative"}}}},apis:{setValue:(e,t,o)=>{e.setValue(t,o)},resetToMin:(e,t)=>{e.resetToMin(t)},resetToMax:(e,t)=>{e.resetToMax(t)},refresh:(e,t)=>{e.refresh(t)}}}),_O=ca("rgb-hex-update"),TO=ca("slider-update"),EO=ca("palette-update"),AO="form",MO=[yu("formBehaviours",[vu])],DO=e=>"<alloy.field."+e+">",BO=(e,t)=>({uid:e.uid,dom:e.dom,components:t,behaviours:wu(e.formBehaviours,[vu.config({store:{mode:"manual",getValue:t=>{const o=cm(t,e);return ce(o,((e,t)=>e().bind((e=>{return o=Om.getCurrent(e),n=new Error(`Cannot find a current component to extract the value from for form part '${t}': `+sa(e.element)),o.fold((()=>rn.error(n)),rn.value);var o,n})).map(vu.getValue)))},setValue:(t,o)=>{le(o,((o,n)=>{am(t,e,n).each((e=>{Om.getCurrent(e).each((e=>{vu.setValue(e,o)}))}))}))}}})]),apis:{getField:(t,o)=>am(t,e,o).bind(Om.getCurrent)}}),IO={getField:Oa(((e,t,o)=>e.getField(t,o))),sketch:e=>{const t=(()=>{const e=[];return{field:(t,o)=>(e.push(t),tm(AO,DO(t),o)),record:x(e)}})(),o=e(t),n=t.record(),s=L(n,(e=>$u({name:e,pname:DO(e)})));return fm(AO,MO,s,BO,o)}},FO=ca("valid-input"),RO=ca("invalid-input"),NO=ca("validating-input"),VO="colorcustom.rgb.",zO=(e,t,o,n)=>{const s=(o,n)=>Lk.config({invalidClass:t("invalid"),notify:{onValidate:e=>{Rr(e,NO,{type:o})},onValid:e=>{Rr(e,FO,{type:o,value:vu.getValue(e)})},onInvalid:e=>{Rr(e,RO,{type:o,value:vu.getValue(e)})}},validator:{validate:t=>{const o=vu.getValue(t),s=n(o)?rn.value(!0):rn.error(e("aria.input.invalid"));return SS(s)},validateOnLoad:!1}}),r=(o,n,r,a,i)=>{const l=e(VO+"range"),c=uk.parts.label({dom:{tag:"label",attributes:{"aria-label":a}},components:[ri(r)]}),d=uk.parts.field({data:i,factory:Hv,inputAttributes:{type:"text",..."hex"===n?{"aria-live":"polite"}:{}},inputClasses:[t("textfield")],inputBehaviours:Tl([s(n,o),pk.config({})]),onSetValue:e=>{Lk.isInvalid(e)&&Lk.run(e).get(b)}}),u=[c,d],m="hex"!==n?[uk.parts["aria-descriptor"]({text:l})]:[];return{dom:{tag:"div",attributes:{role:"presentation"}},components:u.concat(m)}},a=(e,t)=>{const o=t.red,n=t.green,s=t.blue;vu.setValue(e,{red:o,green:n,blue:s})},i=Xh({dom:{tag:"div",classes:[t("rgba-preview")],styles:{"background-color":"white"},attributes:{role:"presentation"}}}),l=(e,t)=>{i.getOpt(e).each((e=>{Bt(e.element,"background-color","#"+t.value)}))},c=xm({factory:()=>{const s={red:As(A.some(255)),green:As(A.some(255)),blue:As(A.some(255)),hex:As(A.some("ffffff"))},c=e=>s[e].get(),d=(e,t)=>{s[e].set(t)},u=e=>{const t=e.red,o=e.green,n=e.blue;d("red",A.some(t)),d("green",A.some(o)),d("blue",A.some(n))},m=(e,t)=>{const o=t.event;"hex"!==o.type?d(o.type,A.none()):n(e)},g=(e,t)=>{const n=t.event;(e=>"hex"===e.type)(n)?((e,t)=>{o(e);const n=Kx(t);d("hex",A.some(n.value));const s=uw(n);a(e,s),u(s),Rr(e,_O,{hex:n}),l(e,n)})(e,n.value):((e,t,o)=>{const n=parseInt(o,10);d(t,A.some(n)),c("red").bind((e=>c("green").bind((t=>c("blue").map((o=>lw(e,t,o,1))))))).each((t=>{const o=((e,t)=>{const o=ow(t);return IO.getField(e,"hex").each((t=>{ah.isFocused(t)||vu.setValue(e,{hex:o.value})})),o})(e,t);Rr(e,_O,{hex:o}),l(e,o)}))})(e,n.type,n.value)},p=t=>({label:e(VO+t+".label"),description:e(VO+t+".description")}),h=p("red"),f=p("green"),b=p("blue"),v=p("hex");return bn(IO.sketch((o=>({dom:{tag:"form",classes:[t("rgb-form")],attributes:{"aria-label":e("aria.color.picker")}},components:[o.field("red",uk.sketch(r(cw,"red",h.label,h.description,255))),o.field("green",uk.sketch(r(cw,"green",f.label,f.description,255))),o.field("blue",uk.sketch(r(cw,"blue",b.label,b.description,255))),o.field("hex",uk.sketch(r(Qx,"hex",v.label,v.description,"ffffff"))),i.asSpec()],formBehaviours:Tl([Lk.config({invalidClass:t("form-invalid")}),th("rgb-form-events",[Wr(FO,g),Wr(RO,m),Wr(NO,m)])])}))),{apis:{updateHex:(e,t)=>{vu.setValue(e,{hex:t.value}),((e,t)=>{const o=uw(t);a(e,o),u(o)})(e,t),l(e,t)}}})},name:"RgbForm",configFields:[],apis:{updateHex:(e,t,o)=>{e.updateHex(t,o)}},extraApis:{}});return c},LO=(e,t)=>{const o=xm({name:"ColourPicker",configFields:[ns("dom"),xs("onValidHex",b),xs("onInvalidHex",b)],factory:o=>{const n=zO(e,t,o.onValidHex,o.onInvalidHex),s=((e,t)=>{const o=OO.parts.spectrum({dom:{tag:"canvas",attributes:{role:"presentation"},classes:[t("sv-palette-spectrum")]}}),n=OO.parts.thumb({dom:{tag:"div",attributes:{role:"presentation"},classes:[t("sv-palette-thumb")],innerHtml:`<div class=${t("sv-palette-inner-thumb")} role="presentation"></div>`}}),s=(e,t)=>{const{width:o,height:n}=e,s=e.getContext("2d");if(null===s)return;s.fillStyle=t,s.fillRect(0,0,o,n);const r=s.createLinearGradient(0,0,o,0);r.addColorStop(0,"rgba(255,255,255,1)"),r.addColorStop(1,"rgba(255,255,255,0)"),s.fillStyle=r,s.fillRect(0,0,o,n);const a=s.createLinearGradient(0,0,0,n);a.addColorStop(0,"rgba(0,0,0,0)"),a.addColorStop(1,"rgba(0,0,0,1)"),s.fillStyle=a,s.fillRect(0,0,o,n)};return xm({factory:r=>{const a=x({x:0,y:0}),i=Tl([Om.config({find:A.some}),ah.config({})]);return OO.sketch({dom:{tag:"div",attributes:{role:"slider","aria-valuetext":e(["Saturation {0}%, Brightness {1}%",0,0])},classes:[t("sv-palette")]},model:{mode:"xy",getInitialValue:a},rounded:!1,components:[o,n],onChange:(t,o,n)=>{h(n)||Ct(t.element,"aria-valuetext",e(["Saturation {0}%, Brightness {1}%",Math.floor(n.x),Math.floor(100-n.y)])),Rr(t,EO,{value:n})},onInit:(e,t,o,n)=>{s(o.element.dom,pw(hw))},sliderBehaviours:i})},name:"SaturationBrightnessPalette",configFields:[],apis:{setHue:(e,t,o)=>{((e,t)=>{const o=e.components()[0].element.dom,n=Aw(t,100,100),r=dw(n);s(o,pw(r))})(t,o)},setThumb:(t,o,n)=>{((t,o)=>{const n=Mw(uw(o));OO.setValue(t,{x:n.saturation,y:100-n.value}),Ct(t.element,"aria-valuetext",e(["Saturation {0}%, Brightness {1}%",n.saturation,n.value]))})(o,n)}},extraApis:{}})})(e,t),r={paletteRgba:As(hw),paletteHue:As(0)},a=Xh(((e,t)=>{const o=OO.parts.spectrum({dom:{tag:"div",classes:[t("hue-slider-spectrum")],attributes:{role:"presentation"}}}),n=OO.parts.thumb({dom:{tag:"div",classes:[t("hue-slider-thumb")],attributes:{role:"presentation"}}});return OO.sketch({dom:{tag:"div",classes:[t("hue-slider")],attributes:{role:"slider","aria-valuemin":0,"aria-valuemax":360,"aria-valuenow":120}},rounded:!1,model:{mode:"y",getInitialValue:x(0)},components:[o,n],sliderBehaviours:Tl([ah.config({})]),onChange:(e,t,o)=>{Ct(e.element,"aria-valuenow",Math.floor(360-3.6*o)),Rr(e,TO,{value:o})}})})(0,t)),i=Xh(s.sketch({})),l=Xh(n.sketch({})),c=(e,t,o)=>{i.getOpt(e).each((e=>{s.setHue(e,o)}))},d=(e,t)=>{l.getOpt(e).each((e=>{n.updateHex(e,t)}))},u=(e,t,o)=>{a.getOpt(e).each((e=>{OO.setValue(e,(e=>100-e/360*100)(o))}))},m=(e,t)=>{i.getOpt(e).each((e=>{s.setThumb(e,t)}))},g=(e,t,o,n)=>{((e,t)=>{const o=uw(e);r.paletteRgba.set(o),r.paletteHue.set(t)})(t,o),H(n,(n=>{n(e,t,o)}))};return{uid:o.uid,dom:o.dom,components:[i.asSpec(),a.asSpec(),l.asSpec()],behaviours:Tl([th("colour-picker-events",[Wr(_O,(()=>{const e=[c,u,m];return(t,o)=>{const n=o.event.hex,s=(e=>Mw(uw(e)))(n);g(t,n,s.hue,e)}})()),Wr(EO,(()=>{const e=[d];return(t,o)=>{const n=o.event.value,s=r.paletteHue.get(),a=Aw(s,n.x,100-n.y),i=Dw(a);g(t,i,s,e)}})()),Wr(TO,(()=>{const e=[c,d];return(t,o)=>{const n=(e=>(100-e)/100*360)(o.event.value),s=r.paletteRgba.get(),a=Mw(s),i=Aw(n,a.saturation,a.value),l=Dw(i);g(t,l,n,e)}})())]),Om.config({find:e=>l.getOpt(e)}),Gp.config({mode:"acyclic"})])}}});return o},HO=()=>Om.config({find:A.some}),PO=e=>Om.config({find:t=>ct(t.element,e).bind((e=>t.getSystem().getByDom(e).toOptional()))}),UO=Bn([xs("preprocess",w),xs("postprocess",w)]),WO=(e,t)=>{const o=Kn("RepresentingConfigs.memento processors",UO,t);return vu.config({store:{mode:"manual",getValue:t=>{const n=e.get(t),s=vu.getValue(n);return o.postprocess(s)},setValue:(t,n)=>{const s=o.preprocess(n),r=e.get(t);vu.setValue(r,s)}}})},jO=(e,t,o)=>vu.config({store:{mode:"manual",...e.map((e=>({initialValue:e}))).getOr({}),getValue:t,setValue:o}}),GO=(e,t,o)=>jO(e,(e=>t(e.element)),((e,t)=>o(e.element,t))),$O=e=>vu.config({store:{mode:"memory",initialValue:e}}),qO={"colorcustom.rgb.red.label":"R","colorcustom.rgb.red.description":"Red component","colorcustom.rgb.green.label":"G","colorcustom.rgb.green.description":"Green component","colorcustom.rgb.blue.label":"B","colorcustom.rgb.blue.description":"Blue component","colorcustom.rgb.hex.label":"#","colorcustom.rgb.hex.description":"Hex color code","colorcustom.rgb.range":"Range 0 to 255","aria.color.picker":"Color Picker","aria.input.invalid":"Invalid input"};var YO=tinymce.util.Tools.resolve("tinymce.Resource"),XO=tinymce.util.Tools.resolve("tinymce.util.Tools");const KO=(e,t)=>{let o=null;const n=()=>{c(o)||(clearTimeout(o),o=null)};return{cancel:n,throttle:(...s)=>{n(),o=setTimeout((()=>{o=null,e.apply(null,s)}),t)}}},JO=ca("alloy-fake-before-tabstop"),ZO=ca("alloy-fake-after-tabstop"),QO=e=>({dom:{tag:"div",styles:{width:"1px",height:"1px",outline:"none"},attributes:{tabindex:"0"},classes:e},behaviours:Tl([ah.config({ignore:!0}),pk.config({})])}),e_=(e,t)=>({dom:{tag:"div",classes:["tox-navobj",...e.getOr([])]},components:[QO([JO]),t,QO([ZO])],behaviours:Tl([PO(1)])}),t_=(e,t)=>{Rr(e,Js(),{raw:{which:9,shiftKey:t}})},o_=(e,t)=>{const o=t.element;$a(o,JO)?t_(e,!0):$a(o,ZO)&&t_(e,!1)},n_=e=>JS(e,["."+JO,"."+ZO].join(","),T),s_=ca("update-dialog"),r_=ca("update-title"),a_=ca("update-body"),i_=ca("update-footer"),l_=ca("body-send-message"),c_=ca("dialog-focus-shifted"),d_=Bo().browser,u_=d_.isSafari(),m_=d_.isFirefox(),g_=u_||m_,p_=d_.isChromium(),h_=({scrollTop:e,scrollHeight:t,clientHeight:o})=>Math.ceil(e)+o>=t,f_=(e,t)=>e.scrollTo(0,"bottom"===t?99999999:t),b_=(e,t,o)=>{const n=e.dom;A.from(n.contentDocument).fold(o,(e=>{let o=0;const s=((e,t)=>{const o=e.body;return A.from(!/^<!DOCTYPE (html|HTML)/.test(t)&&(!p_&&!u_||g(o)&&(0!==o.scrollTop||Math.abs(o.scrollHeight-o.clientHeight)>1))?o:e.documentElement)})(e,t).map((e=>(o=e.scrollTop,e))).forall(h_),r=()=>{const e=n.contentWindow;g(e)&&(s?f_(e,"bottom"):!s&&g_&&0!==o&&f_(e,o))};u_&&n.addEventListener("load",r,{once:!0}),e.open(),e.write(t),e.close(),u_||r()}))},v_=Ce(g_,u_?500:200).map((e=>((e,t)=>{let o=null,n=null;return{cancel:()=>{c(o)||(clearTimeout(o),o=null,n=null)},throttle:(...s)=>{n=s,c(o)&&(o=setTimeout((()=>{const t=n;o=null,n=null,e.apply(null,t)}),t))}}})(b_,e))),y_=ca("toolbar.button.execute"),x_=ca("common-button-display-events"),w_={[mr()]:["disabling","alloy.base.behaviour","toggling","toolbar-button-events"],[kr()]:["toolbar-button-events",x_],[js()]:["focusing","alloy.base.behaviour",x_]},S_=e=>Bt(e.element,"width",Rt(e.element,"width")),k_=(e,t,o)=>ob(e,{tag:"span",classes:["tox-icon","tox-tbtn__icon-wrap"],behaviours:o},t),C_=(e,t)=>k_(e,t,[]),O_=(e,t)=>k_(e,t,[eh.config({})]),__=(e,t,o)=>({dom:{tag:"span",classes:[`${t}__select-label`]},components:[ri(o.translate(e))],behaviours:Tl([eh.config({})])}),T_=ca("update-menu-text"),E_=ca("update-menu-icon"),A_=(e,t,o)=>{const n=As(b),s=e.text.map((e=>Xh(__(e,t,o.providers)))),r=e.icon.map((e=>Xh(O_(e,o.providers.icons)))),a=(e,t)=>{const o=vu.getValue(e);return ah.focus(o),Rr(o,"keydown",{raw:t.event.raw}),NS.close(o),A.some(!0)},i=e.role.fold((()=>({})),(e=>({role:e}))),l=e.tooltip.fold((()=>({})),(e=>{const t=o.providers.translate(e);return{title:t,"aria-label":t}})),c=ob("chevron-down",{tag:"div",classes:[`${t}__select-chevron`]},o.providers.icons),d=ca("common-button-display-events"),u=Xh(NS.sketch({...e.uid?{uid:e.uid}:{},...i,dom:{tag:"button",classes:[t,`${t}--select`].concat(L(e.classes,(e=>`${t}--${e}`))),attributes:{...l}},components:Fx([r.map((e=>e.asSpec())),s.map((e=>e.asSpec())),A.some(c)]),matchWidth:!0,useMinWidth:!0,onOpen:(t,o,n)=>{e.searchable&&(e=>{Gv(e).each((e=>ah.focus(e)))})(n)},dropdownBehaviours:Tl([...e.dropdownBehaviours,_x((()=>e.disabled||o.providers.isDisabled())),Ox(),Hk.config({}),eh.config({}),th("dropdown-events",[Mx(e,n),Dx(e,n)]),th(d,[Jr(((e,t)=>S_(e)))]),th("menubutton-update-display-text",[Wr(T_,((e,t)=>{s.bind((t=>t.getOpt(e))).each((e=>{eh.set(e,[ri(o.providers.translate(t.event.text))])}))})),Wr(E_,((e,t)=>{r.bind((t=>t.getOpt(e))).each((e=>{eh.set(e,[O_(t.event.icon,o.providers.icons)])}))}))])]),eventOrder:bn(w_,{mousedown:["focusing","alloy.base.behaviour","item-type-events","normal-dropdown-events"],[kr()]:["toolbar-button-events","dropdown-events",d]}),sandboxBehaviours:Tl([Gp.config({mode:"special",onLeft:a,onRight:a}),th("dropdown-sandbox-events",[Wr(Pv,((e,t)=>{(e=>{const t=vu.getValue(e),o=jv(e).map($v);NS.refetch(t).get((()=>{const e=fS.getCoupled(t,"sandbox");o.each((t=>jv(e).each((e=>((e,t)=>{vu.setValue(e,t.fetchPattern),e.element.dom.selectionStart=t.selectionStart,e.element.dom.selectionEnd=t.selectionEnd})(e,t)))))}))})(e),t.stop()})),Wr(Uv,((e,t)=>{((e,t)=>{(e=>Zd.getState(e).bind(Xm.getHighlighted).bind(Xm.getHighlighted))(e).each((o=>{((e,t,o,n)=>{const s={...n,target:t};e.getSystem().triggerEvent(o,t,s)})(e,o.element,t.event.eventType,t.event.interactionEvent)}))})(e,t),t.stop()}))])]),lazySink:o.getSink,toggleClass:`${t}--active`,parts:{menu:{...Rv(0,e.columns,e.presets),fakeFocus:e.searchable,onHighlightItem:VS,onCollapseMenu:(e,t,o)=>{Xm.getHighlighted(o).each((t=>{VS(e,o,t)}))},onDehighlightItem:zS}},getAnchorOverrides:()=>({maxHeightFunction:(e,t)=>{mc()(e,t-10)}}),fetch:t=>wS(k(e.fetch,t))}));return u.asSpec()},M_=e=>"separator"===e.type,D_={type:"separator"},B_=(e,t)=>{const o=((e,t)=>{const o=j(e,((e,o)=>(e=>r(e))(o)?""===o?e:"|"===o?e.length>0&&!M_(e[e.length-1])?e.concat([D_]):e:ve(t,o.toLowerCase())?e.concat([t[o.toLowerCase()]]):e:e.concat([o])),[]);return o.length>0&&M_(o[o.length-1])&&o.pop(),o})(r(e)?e.split(" "):e,t);return W(o,((e,o)=>{if((e=>ve(e,"getSubmenuItems"))(o)){const n=(e=>{const t=be(e,"value").getOrThunk((()=>ca("generated-menu-item")));return bn({value:t},e)})(o),s=((e,t)=>{const o=e.getSubmenuItems(),n=B_(o,t);return{item:e,menus:bn(n.menus,{[e.value]:n.items}),expansions:bn(n.expansions,{[e.value]:e.value})}})(n,t);return{menus:bn(e.menus,s.menus),items:[s.item,...e.items],expansions:bn(e.expansions,s.expansions)}}return{...e,items:[o,...e.items]}}),{menus:{},expansions:{},items:[]})},I_=(e,t,o,n)=>{const s=ca("primary-menu"),r=B_(e,o.shared.providers.menuItems());if(0===r.items.length)return A.none();const a=(e=>e.search.fold((()=>({searchMode:"no-search"})),(e=>({searchMode:"search-with-field",placeholder:e.placeholder}))))(n),i=WS(s,r.items,t,o,n.isHorizontalMenu,a),l=(e=>e.search.fold((()=>({searchMode:"no-search"})),(e=>({searchMode:"search-with-results"}))))(n),c=ce(r.menus,((e,n)=>WS(n,e,t,o,!1,l))),d=bn(c,Ds(s,i));return A.from(jh.tieredData(s,d,r.expansions))},F_=e=>!ve(e,"items"),R_="data-value",N_=(e,t,o,n)=>L(o,(o=>F_(o)?{type:"togglemenuitem",text:o.text,value:o.value,active:o.value===n,onAction:()=>{vu.setValue(e,o.value),Rr(e,xk,{name:t}),ah.focus(e)}}:{type:"nestedmenuitem",text:o.text,getSubmenuItems:()=>N_(e,t,o.items,n)})),V_=(e,t)=>re(e,(e=>F_(e)?Ce(e.value===t,e):V_(e.items,t))),z_=xm({name:"HtmlSelect",configFields:[ns("options"),yu("selectBehaviours",[ah,vu]),xs("selectClasses",[]),xs("selectAttributes",{}),ms("data")],factory:(e,t)=>{const o=L(e.options,(e=>({dom:{tag:"option",value:e.value,innerHtml:e.text}}))),n=e.data.map((e=>Ds("initialValue",e))).getOr({});return{uid:e.uid,dom:{tag:"select",classes:e.selectClasses,attributes:e.selectAttributes},components:o,behaviours:wu(e.selectBehaviours,[ah.config({}),vu.config({store:{mode:"manual",getValue:e=>Ka(e.element),setValue:(t,o)=>{const n=oe(e.options);G(e.options,(e=>e.value===o)).isSome()?Ja(t.element,o):-1===t.element.dom.selectedIndex&&""===o&&n.each((e=>Ja(t.element,e.value)))},...n}})])}}}),L_=x([xs("field1Name","field1"),xs("field2Name","field2"),Vi("onLockedChange"),Ii(["lockClass"]),xs("locked",!1),Su("coupledFieldBehaviours",[Om,vu])]),H_=(e,t)=>$u({factory:uk,name:e,overrides:e=>({fieldBehaviours:Tl([th("coupled-input-behaviour",[Wr(Qs(),(o=>{((e,t,o)=>am(e,t,o).bind(Om.getCurrent))(o,e,t).each((t=>{am(o,e,"lock").each((n=>{ph.isOn(n)&&e.onLockedChange(o,t,n)}))}))}))])])})}),P_=x([H_("field1","field2"),H_("field2","field1"),$u({factory:qh,schema:[ns("dom")],name:"lock",overrides:e=>({buttonBehaviours:Tl([ph.config({selected:e.locked,toggleClass:e.markers.lockClass,aria:{mode:"pressed"}})])})})]),U_=wm({name:"FormCoupledInputs",configFields:L_(),partFields:P_(),factory:(e,t,o,n)=>({uid:e.uid,dom:e.dom,components:t,behaviours:ku(e.coupledFieldBehaviours,[Om.config({find:A.some}),vu.config({store:{mode:"manual",getValue:t=>{const o=um(t,e,["field1","field2"]);return{[e.field1Name]:vu.getValue(o.field1()),[e.field2Name]:vu.getValue(o.field2())}},setValue:(t,o)=>{const n=um(t,e,["field1","field2"]);ye(o,e.field1Name)&&vu.setValue(n.field1(),o[e.field1Name]),ye(o,e.field2Name)&&vu.setValue(n.field2(),o[e.field2Name])}}})]),apis:{getField1:t=>am(t,e,"field1"),getField2:t=>am(t,e,"field2"),getLock:t=>am(t,e,"lock")}}),apis:{getField1:(e,t)=>e.getField1(t),getField2:(e,t)=>e.getField2(t),getLock:(e,t)=>e.getLock(t)}}),W_=e=>{const t=/^\s*(\d+(?:\.\d+)?)\s*(|cm|mm|in|px|pt|pc|em|ex|ch|rem|vw|vh|vmin|vmax|%)\s*$/.exec(e);if(null!==t){const e=parseFloat(t[1]),o=t[2];return rn.value({value:e,unit:o})}return rn.error(e)},j_=(e,t)=>{const o={"":96,px:96,pt:72,cm:2.54,pc:12,mm:25.4,in:1},n=e=>ve(o,e);return e.unit===t?A.some(e.value):n(e.unit)&&n(t)?o[e.unit]===o[t]?A.some(e.value):A.some(e.value/o[e.unit]*o[t]):A.none()},G_=e=>A.none(),$_=(e,t)=>{const o=e.label.map((e=>yk(e,t))),n=[Lm.config({disabled:()=>e.disabled||t.isDisabled()}),Ox(),Gp.config({mode:"execution",useEnter:!0!==e.multiline,useControlEnter:!0===e.multiline,execute:e=>(Fr(e,Ck),A.some(!0))}),th("textfield-change",[Wr(Qs(),((t,o)=>{Rr(t,xk,{name:e.name})})),Wr(dr(),((t,o)=>{Rr(t,xk,{name:e.name})}))]),pk.config({})],s=e.validation.map((e=>Lk.config({getRoot:e=>at(e.element),invalidClass:"tox-invalid",validator:{validate:t=>{const o=vu.getValue(t),n=e.validator(o);return SS(!0===n?rn.value(o):rn.error(n))},validateOnLoad:e.validateOnLoad}}))).toArray(),r={...e.placeholder.fold(x({}),(e=>({placeholder:t.translate(e)}))),...e.inputMode.fold(x({}),(e=>({inputmode:e})))},a=uk.parts.field({tag:!0===e.multiline?"textarea":"input",...e.data.map((e=>({data:e}))).getOr({}),inputAttributes:r,inputClasses:[e.classname],inputBehaviours:Tl(q([n,s])),selectOnFocus:!1,factory:Hv}),i=e.multiline?{dom:{tag:"div",classes:["tox-textarea-wrap"]},components:[a]}:a,l=(e.flex?["tox-form__group--stretched"]:[]).concat(e.maximized?["tox-form-group--maximize"]:[]),c=[Lm.config({disabled:()=>e.disabled||t.isDisabled(),onDisabled:e=>{uk.getField(e).each(Lm.disable)},onEnabled:e=>{uk.getField(e).each(Lm.enable)}}),Ox()];return fk(o,i,l,c)},q_=(e,t)=>t.getAnimationRoot.fold((()=>e.element),(t=>t(e))),Y_=e=>e.dimension.property,X_=(e,t)=>e.dimension.getDimension(t),K_=(e,t)=>{const o=q_(e,t);Ya(o,[t.shrinkingClass,t.growingClass])},J_=(e,t)=>{Ga(e.element,t.openClass),Wa(e.element,t.closedClass),Bt(e.element,Y_(t),"0px"),Pt(e.element)},Z_=(e,t)=>{Ga(e.element,t.closedClass),Wa(e.element,t.openClass),Ht(e.element,Y_(t))},Q_=(e,t,o,n)=>{o.setCollapsed(),Bt(e.element,Y_(t),X_(t,e.element)),K_(e,t),J_(e,t),t.onStartShrink(e),t.onShrunk(e)},eT=(e,t,o,n)=>{const s=n.getOrThunk((()=>X_(t,e.element)));o.setCollapsed(),Bt(e.element,Y_(t),s),Pt(e.element);const r=q_(e,t);Ga(r,t.growingClass),Wa(r,t.shrinkingClass),J_(e,t),t.onStartShrink(e)},tT=(e,t,o)=>{const n=X_(t,e.element);("0px"===n?Q_:eT)(e,t,o,A.some(n))},oT=(e,t,o)=>{const n=q_(e,t),s=$a(n,t.shrinkingClass),r=X_(t,e.element);Z_(e,t);const a=X_(t,e.element);(s?()=>{Bt(e.element,Y_(t),r),Pt(e.element)}:()=>{J_(e,t)})(),Ga(n,t.shrinkingClass),Wa(n,t.growingClass),Z_(e,t),Bt(e.element,Y_(t),a),o.setExpanded(),t.onStartGrow(e)},nT=(e,t,o)=>{const n=q_(e,t);return!0===$a(n,t.growingClass)},sT=(e,t,o)=>{const n=q_(e,t);return!0===$a(n,t.shrinkingClass)};var rT=Object.freeze({__proto__:null,refresh:(e,t,o)=>{if(o.isExpanded()){Ht(e.element,Y_(t));const o=X_(t,e.element);Bt(e.element,Y_(t),o)}},grow:(e,t,o)=>{o.isExpanded()||oT(e,t,o)},shrink:(e,t,o)=>{o.isExpanded()&&tT(e,t,o)},immediateShrink:(e,t,o)=>{o.isExpanded()&&Q_(e,t,o)},hasGrown:(e,t,o)=>o.isExpanded(),hasShrunk:(e,t,o)=>o.isCollapsed(),isGrowing:nT,isShrinking:sT,isTransitioning:(e,t,o)=>nT(e,t)||sT(e,t),toggleGrow:(e,t,o)=>{(o.isExpanded()?tT:oT)(e,t,o)},disableTransitions:K_,immediateGrow:(e,t,o)=>{o.isExpanded()||(Z_(e,t),Bt(e.element,Y_(t),X_(t,e.element)),K_(e,t),o.setExpanded(),t.onStartGrow(e),t.onGrown(e))}}),aT=Object.freeze({__proto__:null,exhibit:(e,t,o)=>{const n=t.expanded;return Aa(n?{classes:[t.openClass],styles:{}}:{classes:[t.closedClass],styles:Ds(t.dimension.property,"0px")})},events:(e,t)=>Hr([Kr(nr(),((o,n)=>{n.event.raw.propertyName===e.dimension.property&&(K_(o,e),t.isExpanded()&&Ht(o.element,e.dimension.property),(t.isExpanded()?e.onGrown:e.onShrunk)(o))}))])}),iT=[ns("closedClass"),ns("openClass"),ns("shrinkingClass"),ns("growingClass"),ms("getAnimationRoot"),Ri("onShrunk"),Ri("onStartShrink"),Ri("onGrown"),Ri("onStartGrow"),xs("expanded",!1),ss("dimension",Zn("property",{width:[Li("property","width"),Li("getDimension",(e=>Zt(e)+"px"))],height:[Li("property","height"),Li("getDimension",(e=>jt(e)+"px"))]}))];const lT=Al({fields:iT,name:"sliding",active:aT,apis:rT,state:Object.freeze({__proto__:null,init:e=>{const t=As(e.expanded);return Ta({isExpanded:()=>!0===t.get(),isCollapsed:()=>!1===t.get(),setCollapsed:k(t.set,!1),setExpanded:k(t.set,!0),readState:()=>"expanded: "+t.get()})}})}),cT=e=>({isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t),setActive:t=>{const o=e.element;t?(Wa(o,"tox-tbtn--enabled"),Ct(o,"aria-pressed",!0)):(Ga(o,"tox-tbtn--enabled"),At(o,"aria-pressed"))},isActive:()=>$a(e.element,"tox-tbtn--enabled"),setText:t=>{Rr(e,T_,{text:t})},setIcon:t=>Rr(e,E_,{icon:t})}),dT=(e,t,o,n,s=!0)=>A_({text:e.text,icon:e.icon,tooltip:e.tooltip,searchable:e.search.isSome(),role:n,fetch:(t,n)=>{const s={pattern:e.search.isSome()?LS(t):""};e.fetch((t=>{n(I_(t,bv.CLOSE_ON_EXECUTE,o,{isHorizontalMenu:!1,search:e.search}))}),s,cT(t))},onSetup:e.onSetup,getApi:cT,columns:1,presets:"normal",classes:[],dropdownBehaviours:[...s?[pk.config({})]:[]]},t,o.shared),uT=(e,t,o)=>{const n=e=>n=>{const s=!n.isActive();n.setActive(s),e.storage.set(s),o.shared.getSink().each((o=>{t().getOpt(o).each((t=>{Rl(t.element),Rr(t,kk,{name:e.name,value:e.storage.get()})}))}))},s=e=>t=>{t.setActive(e.storage.get())};return t=>{t(L(e,(e=>{const t=e.text.fold((()=>({})),(e=>({text:e})));return{type:e.type,active:!1,...t,onAction:n(e),onSetup:s(e)}})))}},mT=e=>({dom:{tag:"span",classes:["tox-tree__label"],attributes:{title:e,"aria-label":e}},components:[ri(e)]}),gT=ca("leaf-label-event-id"),pT=({leaf:e,onLeafAction:t,visible:o,treeId:n,selectedId:s,backstage:r})=>{const a=e.menu.map((e=>dT(e,"tox-mbtn",r,A.none(),o))),i=[mT(e.title)];return a.each((e=>i.push(e))),qh.sketch({dom:{tag:"div",classes:["tox-tree--leaf__label","tox-trbtn"].concat(o?["tox-tree--leaf__label--visible"]:[])},components:i,role:"treeitem",action:o=>{t(e.id),o.getSystem().broadcastOn([`update-active-item-${n}`],{value:e.id})},eventOrder:{[Js()]:[gT,"keying"]},buttonBehaviours:Tl([...o?[pk.config({})]:[],ph.config({toggleClass:"tox-trbtn--enabled",toggleOnExecute:!1,aria:{mode:"selected"}}),Il.config({channels:{[`update-active-item-${n}`]:{onReceive:(t,o)=>{(o.value===e.id?ph.on:ph.off)(t)}}}}),th(gT,[Jr(((t,o)=>{s.each((o=>{(o===e.id?ph.on:ph.off)(t)}))})),Wr(Js(),((e,t)=>{const o="ArrowLeft"===t.event.raw.code,n="ArrowRight"===t.event.raw.code;o?(fi(e.element,".tox-tree--directory").each((t=>{e.getSystem().getByDom(t).each((e=>{bi(t,".tox-tree--directory__label").each((t=>{e.getSystem().getByDom(t).each(ah.focus)}))}))})),t.stop()):n&&t.stop()}))])])})},hT=ca("directory-label-event-id"),fT=({directory:e,visible:t,noChildren:o,backstage:n})=>{const s=e.menu.map((e=>dT(e,"tox-mbtn",n,A.none()))),r=[{dom:{tag:"div",classes:["tox-chevron"]},components:[(a="chevron-right",i=n.shared.providers.icons,((e,t,o)=>ob(e,{tag:"span",classes:["tox-tree__icon-wrap","tox-icon"],behaviours:[]},t))(a,i))]},mT(e.title)];var a,i;s.each((e=>{r.push(e)}));const l=t=>{fi(t.element,".tox-tree--directory").each((o=>{t.getSystem().getByDom(o).each((o=>{const n=!ph.isOn(o);ph.toggle(o),Rr(t,"expand-tree-node",{expanded:n,node:e.id})}))}))};return qh.sketch({dom:{tag:"div",classes:["tox-tree--directory__label","tox-trbtn"].concat(t?["tox-tree--directory__label--visible"]:[])},components:r,action:l,eventOrder:{[Js()]:[hT,"keying"]},buttonBehaviours:Tl([...t?[pk.config({})]:[],th(hT,[Wr(Js(),((e,t)=>{const n="ArrowRight"===t.event.raw.code,s="ArrowLeft"===t.event.raw.code;n&&o&&t.stop(),(n||s)&&fi(e.element,".tox-tree--directory").each((o=>{e.getSystem().getByDom(o).each((o=>{!ph.isOn(o)&&n||ph.isOn(o)&&s?(l(e),t.stop()):s&&!ph.isOn(o)&&(fi(o.element,".tox-tree--directory").each((e=>{bi(e,".tox-tree--directory__label").each((e=>{o.getSystem().getByDom(e).each(ah.focus)}))})),t.stop())}))}))}))])])})},bT=({children:e,onLeafAction:t,visible:o,treeId:n,expandedIds:s,selectedId:r,backstage:a})=>({dom:{tag:"div",classes:["tox-tree--directory__children"]},components:e.map((e=>"leaf"===e.type?pT({leaf:e,selectedId:r,onLeafAction:t,visible:o,treeId:n,backstage:a}):yT({directory:e,expandedIds:s,selectedId:r,onLeafAction:t,labelTabstopping:o,treeId:n,backstage:a}))),behaviours:Tl([lT.config({dimension:{property:"height"},closedClass:"tox-tree--directory__children--closed",openClass:"tox-tree--directory__children--open",growingClass:"tox-tree--directory__children--growing",shrinkingClass:"tox-tree--directory__children--shrinking",expanded:o}),eh.config({})])}),vT=ca("directory-event-id"),yT=({directory:e,onLeafAction:t,labelTabstopping:o,treeId:n,backstage:s,expandedIds:r,selectedId:a})=>{const{children:i}=e,l=As(r),c=r.includes(e.id);return{dom:{tag:"div",classes:["tox-tree--directory"],attributes:{role:"treeitem"}},components:[fT({directory:e,visible:o,noChildren:0===e.children.length,backstage:s}),bT({children:i,expandedIds:r,selectedId:a,onLeafAction:t,visible:c,treeId:n,backstage:s})],behaviours:Tl([th(vT,[Jr(((e,t)=>{ph.set(e,c)})),Wr("expand-tree-node",((e,t)=>{const{expanded:o,node:n}=t.event;l.set(o?[...l.get(),n]:l.get().filter((e=>e!==n)))}))]),ph.config({...e.children.length>0?{aria:{mode:"expanded"}}:{},toggleClass:"tox-tree--directory--expanded",onToggled:(e,o)=>{const r=e.components()[1],c=(d=o,i.map((e=>"leaf"===e.type?pT({leaf:e,selectedId:a,onLeafAction:t,visible:d,treeId:n,backstage:s}):yT({directory:e,expandedIds:l.get(),selectedId:a,onLeafAction:t,labelTabstopping:d,treeId:n,backstage:s}))));var d;o?lT.grow(r):lT.shrink(r),eh.set(r,c)}})])}},xT=ca("tree-event-id");var wT=Object.freeze({__proto__:null,events:(e,t)=>{const o=e.stream.streams.setup(e,t);return Hr([Wr(e.event,o),Zr((()=>t.cancel()))].concat(e.cancelEvent.map((e=>[Wr(e,(()=>t.cancel()))])).getOr([])))}});const ST=e=>{const t=As(null);return Ta({readState:()=>({timer:null!==t.get()?"set":"unset"}),setTimer:e=>{t.set(e)},cancel:()=>{const e=t.get();null!==e&&e.cancel()}})};var kT=Object.freeze({__proto__:null,throttle:ST,init:e=>e.stream.streams.state(e)}),CT=[ss("stream",Zn("mode",{throttle:[ns("delay"),xs("stopEvent",!0),Li("streams",{setup:(e,t)=>{const o=e.stream,n=KO(e.onStream,o.delay);return t.setTimer(n),(e,t)=>{n.throttle(e,t),o.stopEvent&&t.stop()}},state:ST})]})),xs("event","input"),ms("cancelEvent"),Vi("onStream")];const OT=Al({fields:CT,name:"streaming",active:wT,state:kT}),_T=(e,t,o)=>{const n=vu.getValue(o);vu.setValue(t,n),ET(t)},TT=(e,t)=>{const o=e.element,n=Ka(o),s=o.dom;"number"!==_t(o,"type")&&t(s,n)},ET=e=>{TT(e,((e,t)=>e.setSelectionRange(t.length,t.length)))},AT=x("alloy.typeahead.itemexecute"),MT=x([ms("lazySink"),ns("fetch"),xs("minChars",5),xs("responseTime",1e3),Ri("onOpen"),xs("getHotspot",A.some),xs("getAnchorOverrides",x({})),xs("layouts",A.none()),xs("eventOrder",{}),Es("model",{},[xs("getDisplayText",(e=>void 0!==e.meta&&void 0!==e.meta.text?e.meta.text:e.value)),xs("selectsOver",!0),xs("populateFromBrowse",!0)]),Ri("onSetValue"),Ni("onExecute"),Ri("onItemExecute"),xs("inputClasses",[]),xs("inputAttributes",{}),xs("inputStyles",{}),xs("matchWidth",!0),xs("useMinWidth",!1),xs("dismissOnBlur",!0),Ii(["openClass"]),ms("initialData"),yu("typeaheadBehaviours",[ah,vu,OT,Gp,ph,fS]),ts("lazyTypeaheadComp",(()=>As(A.none))),ts("previewing",(()=>As(!0)))].concat(Nv()).concat(IS())),DT=x([qu({schema:[Bi()],name:"menu",overrides:e=>({fakeFocus:!0,onHighlightItem:(t,o,n)=>{e.previewing.get()?e.lazyTypeaheadComp.get().each((t=>{((e,t,o)=>{if(e.selectsOver){const n=vu.getValue(t),s=e.getDisplayText(n),r=vu.getValue(o);return 0===e.getDisplayText(r).indexOf(s)?A.some((()=>{_T(0,t,o),((e,t)=>{TT(e,((e,o)=>e.setSelectionRange(t,o.length)))})(t,s.length)})):A.none()}return A.none()})(e.model,t,n).fold((()=>{e.model.selectsOver?(Xm.dehighlight(o,n),e.previewing.set(!0)):e.previewing.set(!1)}),(t=>{t(),e.previewing.set(!1)}))})):e.lazyTypeaheadComp.get().each((t=>{e.model.populateFromBrowse&&_T(e.model,t,n),Tt(n.element,"id").each((e=>Ct(t.element,"aria-activedescendant",e)))}))},onExecute:(t,o)=>e.lazyTypeaheadComp.get().map((e=>(Rr(e,AT(),{item:o}),!0))),onHover:(t,o)=>{e.previewing.set(!1),e.lazyTypeaheadComp.get().each((t=>{e.model.populateFromBrowse&&_T(e.model,t,o)}))}})})]),BT=wm({name:"Typeahead",configFields:MT(),partFields:DT(),factory:(e,t,o,n)=>{const s=(t,o,s)=>{e.previewing.set(!1);const r=fS.getCoupled(t,"sandbox");if(Zd.isOpen(r))Om.getCurrent(r).each((e=>{Xm.getHighlighted(e).fold((()=>{s(e)}),(()=>{Lr(r,e.element,"keydown",o)}))}));else{const o=e=>{Om.getCurrent(e).each(s)};_S(e,a(t),t,r,n,o,Uh.HighlightMenuAndItem).get(b)}},r=Vv(e),a=e=>t=>t.map((t=>{const o=fe(t.menus),n=Y(o,(e=>U(e.items,(e=>"item"===e.type))));return vu.getState(e).update(L(n,(e=>e.data))),t})),i=e=>Om.getCurrent(e),l="typeaheadevents",c=[ah.config({}),vu.config({onSetValue:e.onSetValue,store:{mode:"dataset",getDataKey:e=>Ka(e.element),getFallbackEntry:e=>({value:e,meta:{}}),setValue:(t,o)=>{Ja(t.element,e.model.getDisplayText(o))},...e.initialData.map((e=>Ds("initialValue",e))).getOr({})}}),OT.config({stream:{mode:"throttle",delay:e.responseTime,stopEvent:!1},onStream:(t,o)=>{const s=fS.getCoupled(t,"sandbox");if(ah.isFocused(t)&&Ka(t.element).length>=e.minChars){const o=i(s).bind((e=>Xm.getHighlighted(e).map(vu.getValue)));e.previewing.set(!0);const r=t=>{i(s).each((t=>{o.fold((()=>{e.model.selectsOver&&Xm.highlightFirst(t)}),(e=>{Xm.highlightBy(t,(t=>vu.getValue(t).value===e.value)),Xm.getHighlighted(t).orThunk((()=>(Xm.highlightFirst(t),A.none())))}))}))};_S(e,a(t),t,s,n,r,Uh.HighlightJustMenu).get(b)}},cancelEvent:br()}),Gp.config({mode:"special",onDown:(e,t)=>(s(e,t,Xm.highlightFirst),A.some(!0)),onEscape:e=>{const t=fS.getCoupled(e,"sandbox");return Zd.isOpen(t)?(Zd.close(t),A.some(!0)):A.none()},onUp:(e,t)=>(s(e,t,Xm.highlightLast),A.some(!0)),onEnter:t=>{const o=fS.getCoupled(t,"sandbox"),n=Zd.isOpen(o);if(n&&!e.previewing.get())return i(o).bind((e=>Xm.getHighlighted(e))).map((e=>(Rr(t,AT(),{item:e}),!0)));{const s=vu.getValue(t);return Fr(t,br()),e.onExecute(o,t,s),n&&Zd.close(o),A.some(!0)}}}),ph.config({toggleClass:e.markers.openClass,aria:{mode:"expanded"}}),fS.config({others:{sandbox:t=>DS(e,t,{onOpen:()=>ph.on(t),onClose:()=>{e.lazyTypeaheadComp.get().each((e=>At(e.element,"aria-activedescendant"))),ph.off(t)}})}}),th(l,[Jr((t=>{e.lazyTypeaheadComp.set(A.some(t))})),Zr((t=>{e.lazyTypeaheadComp.set(A.none())})),ea((t=>{const o=b;ES(e,a(t),t,n,o,Uh.HighlightMenuAndItem).get(b)})),Wr(AT(),((t,o)=>{const n=fS.getCoupled(t,"sandbox");_T(e.model,t,o.event.item),Fr(t,br()),e.onItemExecute(t,n,o.event.item,vu.getValue(t)),Zd.close(n),ET(t)}))].concat(e.dismissOnBlur?[Wr(cr(),(e=>{const t=fS.getCoupled(e,"sandbox");Ll(t.element).isNone()&&Zd.close(t)}))]:[]))],d={[Cr()]:[vu.name(),OT.name(),l],...e.eventOrder};return{uid:e.uid,dom:Lv(bn(e,{inputAttributes:{role:"combobox","aria-autocomplete":"list","aria-haspopup":"true"}})),behaviours:{...r,...wu(e.typeaheadBehaviours,c)},eventOrder:d}}}),IT=e=>({...e,toCached:()=>IT(e.toCached()),bindFuture:t=>IT(e.bind((e=>e.fold((e=>SS(rn.error(e))),(e=>t(e)))))),bindResult:t=>IT(e.map((e=>e.bind(t)))),mapResult:t=>IT(e.map((e=>e.map(t)))),mapError:t=>IT(e.map((e=>e.mapError(t)))),foldResult:(t,o)=>e.map((e=>e.fold(t,o))),withTimeout:(t,o)=>IT(wS((n=>{let s=!1;const r=setTimeout((()=>{s=!0,n(rn.error(o()))}),t);e.get((e=>{s||(clearTimeout(r),n(e))}))})))}),FT=e=>IT(wS(e)),RT=(e,t,o=[],n,s,r)=>{const a=t.fold((()=>({})),(e=>({action:e}))),i={buttonBehaviours:Tl([_x((()=>!e.enabled||r.isDisabled())),Ox(),pk.config({}),th("button press",[Ur("click"),Ur("mousedown")])].concat(o)),eventOrder:{click:["button press","alloy.base.behaviour"],mousedown:["button press","alloy.base.behaviour"]},...a},l=bn(i,{dom:n});return bn(l,{components:s})},NT=(e,t,o,n=[])=>{const s={tag:"button",classes:["tox-tbtn"],attributes:e.tooltip.map((e=>({"aria-label":o.translate(e),title:o.translate(e)}))).getOr({})},r=e.icon.map((e=>C_(e,o.icons))),a=Fx([r]);return RT(e,t,n,s,a,o)},VT=e=>{switch(e){case"primary":return["tox-button"];case"toolbar":return["tox-tbtn"];default:return["tox-button","tox-button--secondary"]}},zT=(e,t,o,n=[],s=[])=>{const r=o.translate(e.text),a=e.icon.map((e=>C_(e,o.icons))),i=[a.getOrThunk((()=>ri(r)))],l=e.buttonType.getOr(e.primary||e.borderless?"primary":"secondary"),c=[...VT(l),...a.isSome()?["tox-button--icon"]:[],...e.borderless?["tox-button--naked"]:[],...s];return RT(e,t,n,{tag:"button",classes:c,attributes:{title:r}},i,o)},LT=(e,t,o,n=[],s=[])=>{const r=zT(e,A.some(t),o,n,s);return qh.sketch(r)},HT=(e,t)=>o=>{"custom"===t?Rr(o,kk,{name:e,value:{}}):"submit"===t?Fr(o,Ck):"cancel"===t?Fr(o,Sk):console.error("Unknown button type: ",t)},PT=(e,t,o)=>{if(((e,t)=>"menu"===t)(0,t)){const t=()=>r,n=e,s={...e,type:"menubutton",search:A.none(),onSetup:t=>(t.setEnabled(e.enabled),b),fetch:uT(n.items,t,o)},r=Xh(dT(s,"tox-tbtn",o,A.none()));return r.asSpec()}if(((e,t)=>"custom"===t||"cancel"===t||"submit"===t)(0,t)){const n=HT(e.name,t),s={...e,borderless:!1};return LT(s,n,o.shared.providers,[])}if(((e,t)=>"togglebutton"===t)(0,t))return((e,t)=>{var o,n;const s=e.icon.map((e=>O_(e,t.icons))).map(Xh),r=e.buttonType.getOr(e.primary?"primary":"secondary"),a={...e,name:null!==(o=e.name)&&void 0!==o?o:"",primary:"primary"===r,tooltip:A.from(e.tooltip),enabled:null!==(n=e.enabled)&&void 0!==n&&n,borderless:!1},i=a.tooltip.map((e=>({"aria-label":t.translate(e),title:t.translate(e)}))).getOr({}),l=VT(null!=r?r:"secondary"),c=e.icon.isSome()&&e.text.isSome(),d={tag:"button",classes:[...l.concat(e.icon.isSome()?["tox-button--icon"]:[]),...e.active?["tox-button--enabled"]:[],...c?["tox-button--icon-and-text"]:[]],attributes:i},u=t.translate(e.text.getOr("")),m=ri(u),g=[...Fx([s.map((e=>e.asSpec()))]),...e.text.isSome()?[m]:[]],p=RT(a,A.some((o=>{Rr(o,kk,{name:e.name,value:{setIcon:e=>{s.map((n=>n.getOpt(o).each((o=>{eh.set(o,[O_(e,t.icons)])}))))}}})})),[],d,g,t);return qh.sketch(p)})(e,o.shared.providers);throw console.error("Unknown footer button type: ",t),new Error("Unknown footer button type")},UT={type:"separator"},WT=e=>({type:"menuitem",value:e.url,text:e.title,meta:{attach:e.attach},onAction:b}),jT=(e,t)=>({type:"menuitem",value:t,text:e,meta:{attach:void 0},onAction:b}),GT=(e,t)=>(e=>L(e,WT))(((e,t)=>U(t,(t=>t.type===e)))(e,t)),$T=e=>GT("header",e.targets),qT=e=>GT("anchor",e.targets),YT=e=>A.from(e.anchorTop).map((e=>jT("<top>",e))).toArray(),XT=e=>A.from(e.anchorBottom).map((e=>jT("<bottom>",e))).toArray(),KT=(e,t)=>{const o=e.toLowerCase();return U(t,(e=>{var t;const n=void 0!==e.meta&&void 0!==e.meta.text?e.meta.text:e.text,s=null!==(t=e.value)&&void 0!==t?t:"";return Te(n.toLowerCase(),o)||Te(s.toLowerCase(),o)}))},JT=ca("aria-invalid"),ZT=(e,t)=>{e.dom.checked=t},QT=e=>e.dom.checked,eE=e=>(t,o,n,s)=>be(o,"name").fold((()=>e(o,s,A.none())),(r=>t.field(r,e(o,s,be(n,r))))),tE={bar:eE(((e,t)=>((e,t)=>({dom:{tag:"div",classes:["tox-bar","tox-form__controls-h-stack"]},components:L(e.items,t.interpreter)}))(e,t.shared))),collection:eE(((e,t,o)=>Ak(e,t.shared.providers,o))),alertbanner:eE(((e,t)=>((e,t)=>{const o=Qf(e.icon,t.icons);return ik.sketch({dom:{tag:"div",attributes:{role:"alert"},classes:["tox-notification","tox-notification--in",`tox-notification--${e.level}`]},components:[{dom:{tag:"div",classes:["tox-notification__icon"],innerHtml:e.url?void 0:o},components:e.url?[qh.sketch({dom:{tag:"button",classes:["tox-button","tox-button--naked","tox-button--icon"],innerHtml:o,attributes:{title:t.translate(e.iconTooltip)}},action:t=>Rr(t,kk,{name:"alert-banner",value:e.url}),buttonBehaviours:Tl([eb()])})]:void 0},{dom:{tag:"div",classes:["tox-notification__body"],innerHtml:t.translate(e.text)}}]})})(e,t.shared.providers))),input:eE(((e,t,o)=>((e,t,o)=>$_({name:e.name,multiline:!1,label:e.label,inputMode:e.inputMode,placeholder:e.placeholder,flex:!1,disabled:!e.enabled,classname:"tox-textfield",validation:A.none(),maximized:e.maximized,data:o},t))(e,t.shared.providers,o))),textarea:eE(((e,t,o)=>((e,t,o)=>$_({name:e.name,multiline:!0,label:e.label,inputMode:A.none(),placeholder:e.placeholder,flex:!0,disabled:!e.enabled,classname:"tox-textarea",validation:A.none(),maximized:e.maximized,data:o},t))(e,t.shared.providers,o))),label:eE(((e,t)=>((e,t)=>{const o="tox-label";return{dom:{tag:"div",classes:["tox-form__group"]},components:[{dom:{tag:"label",classes:[o,..."center"===e.align?[`${o}--center`]:[],..."end"===e.align?[`${o}--end`]:[]]},components:[ri(t.providers.translate(e.label))]},...L(e.items,t.interpreter)],behaviours:Tl([HO(),eh.config({}),(n=A.none(),GO(n,ta,oa)),Gp.config({mode:"acyclic"})])};var n})(e,t.shared))),iframe:(TA=(e,t,o)=>((e,t,o)=>{const n="tox-dialog__iframe",s=e.transparent?[]:[`${n}--opaque`],r=e.border?["tox-navobj-bordered"]:[],a={...e.label.map((e=>({title:e}))).getOr({}),...o.map((e=>({srcdoc:e}))).getOr({}),...e.sandboxed?{sandbox:"allow-scripts allow-same-origin"}:{}},i=((e,t)=>{const o=As(e.getOr(""));return{getValue:e=>o.get(),setValue:(e,n)=>{if(o.get()!==n){const o=e.element,s=()=>Ct(o,"srcdoc",n);t?v_.fold(x(b_),(e=>e.throttle))(o,n,s):s()}o.set(n)}}})(o,e.streamContent),l=e.label.map((e=>yk(e,t))),c=uk.parts.field({factory:{sketch:e=>e_(A.from(r),{uid:e.uid,dom:{tag:"iframe",attributes:a,classes:[n,...s]},behaviours:Tl([pk.config({}),ah.config({}),jO(o,i.getValue,i.setValue),Il.config({channels:{[c_]:{onReceive:(e,t)=>{t.newFocus.each((t=>{at(e.element).each((o=>{(Qe(e.element,t)?Wa:Ga)(o,"tox-navobj-bordered-focus")}))}))}}}})])})}});return fk(l,c,["tox-form__group--stretched"],[])})(e,t.shared.providers,o),(e,t,o,n)=>{const s=bn(t,{source:"dynamic"});return eE(TA)(e,s,o,n)}),button:eE(((e,t)=>((e,t)=>{const o=HT(e.name,"custom");return n=A.none(),s=uk.parts.field({factory:qh,...zT(e,A.some(o),t,[$O(""),HO()])}),fk(n,s,[],[]);var n,s})(e,t.shared.providers))),checkbox:eE(((e,t,o)=>((e,t,o)=>{const n=e=>(e.element.dom.click(),A.some(!0)),s=uk.parts.field({factory:{sketch:w},dom:{tag:"input",classes:["tox-checkbox__input"],attributes:{type:"checkbox"}},behaviours:Tl([HO(),Lm.config({disabled:()=>!e.enabled||t.isDisabled(),onDisabled:e=>{at(e.element).each((e=>Wa(e,"tox-checkbox--disabled")))},onEnabled:e=>{at(e.element).each((e=>Ga(e,"tox-checkbox--disabled")))}}),pk.config({}),ah.config({}),GO(o,QT,ZT),Gp.config({mode:"special",onEnter:n,onSpace:n,stopSpaceKeyup:!0}),th("checkbox-events",[Wr(er(),((t,o)=>{Rr(t,xk,{name:e.name})}))])])}),r=uk.parts.label({dom:{tag:"span",classes:["tox-checkbox__label"]},components:[ri(t.translate(e.label))],behaviours:Tl([Hk.config({})])}),a=e=>ob("checked"===e?"selected":"unselected",{tag:"span",classes:["tox-icon","tox-checkbox-icon__"+e]},t.icons),i=Xh({dom:{tag:"div",classes:["tox-checkbox__icons"]},components:[a("checked"),a("unchecked")]});return uk.sketch({dom:{tag:"label",classes:["tox-checkbox"]},components:[s,i.asSpec(),r],fieldBehaviours:Tl([Lm.config({disabled:()=>!e.enabled||t.isDisabled()}),Ox()])})})(e,t.shared.providers,o))),colorinput:eE(((e,t,o)=>((e,t,o,n)=>{const s=uk.parts.field({factory:Hv,inputClasses:["tox-textfield"],data:n,onSetValue:e=>Lk.run(e).get(b),inputBehaviours:Tl([Lm.config({disabled:t.providers.isDisabled}),Ox(),pk.config({}),Lk.config({invalidClass:"tox-textbox-field-invalid",getRoot:e=>at(e.element),notify:{onValid:e=>{const t=vu.getValue(e);Rr(e,Pk,{color:t})}},validator:{validateOnLoad:!1,validate:e=>{const t=vu.getValue(e);if(0===t.length)return SS(rn.value(!0));{const e=Ne("span");Bt(e,"background-color",t);const o=Vt(e,"background-color").fold((()=>rn.error("blah")),(e=>rn.value(t)));return SS(o)}}}})]),selectOnFocus:!1}),r=e.label.map((e=>yk(e,t.providers))),a=(e,t)=>{Rr(e,Uk,{value:t})},i=Xh(((e,t)=>NS.sketch({dom:e.dom,components:e.components,toggleClass:"mce-active",dropdownBehaviours:Tl([_x(t.providers.isDisabled),Ox(),Hk.config({}),pk.config({})]),layouts:e.layouts,sandboxClasses:["tox-dialog__popups"],lazySink:t.getSink,fetch:o=>wS((t=>e.fetch(t))).map((n=>A.from(jS(bn(nS(ca("menu-value"),n,(t=>{e.onItemAction(o,t)}),e.columns,e.presets,bv.CLOSE_ON_EXECUTE,T,t.providers),{movement:rS(e.columns,e.presets)}))))),parts:{menu:Rv(0,0,e.presets)}}))({dom:{tag:"span",attributes:{"aria-label":t.providers.translate("Color swatch")}},layouts:{onRtl:()=>[cl,ll,gl],onLtr:()=>[ll,cl,gl]},components:[],fetch:Xw(o.getColors(e.storageKey),e.storageKey,o.hasCustomColors()),columns:o.getColorCols(e.storageKey),presets:"color",onItemAction:(t,n)=>{i.getOpt(t).each((t=>{"custom"===n?o.colorPicker((o=>{o.fold((()=>Fr(t,Wk)),(o=>{a(t,o),Ew(e.storageKey,o)}))}),"#ffffff"):a(t,"remove"===n?"":n)}))}},t));return uk.sketch({dom:{tag:"div",classes:["tox-form__group"]},components:r.toArray().concat([{dom:{tag:"div",classes:["tox-color-input"]},components:[s,i.asSpec()]}]),fieldBehaviours:Tl([th("form-field-events",[Wr(Pk,((t,o)=>{i.getOpt(t).each((e=>{Bt(e.element,"background-color",o.event.color)})),Rr(t,xk,{name:e.name})})),Wr(Uk,((e,t)=>{uk.getField(e).each((o=>{vu.setValue(o,t.event.value),Om.getCurrent(e).each(ah.focus)}))})),Wr(Wk,((e,t)=>{uk.getField(e).each((t=>{Om.getCurrent(e).each(ah.focus)}))}))])])})})(e,t.shared,t.colorinput,o))),colorpicker:eE(((e,t,o)=>((e,t,o)=>{const n=e=>"tox-"+e,s=LO((e=>t=>r(t)?e.translate(qO[t]):e.translate(t))(t),n),a=Xh(s.sketch({dom:{tag:"div",classes:[n("color-picker-container")],attributes:{role:"presentation"}},onValidHex:e=>{Rr(e,kk,{name:"hex-valid",value:!0})},onInvalidHex:e=>{Rr(e,kk,{name:"hex-valid",value:!1})}}));return{dom:{tag:"div"},components:[a.asSpec()],behaviours:Tl([jO(o,(e=>{const t=a.get(e);return Om.getCurrent(t).bind((e=>vu.getValue(e).hex)).map((e=>"#"+_e(e,"#"))).getOr("")}),((e,t)=>{const o=A.from(/^#([a-fA-F0-9]{3}(?:[a-fA-F0-9]{3})?)/.exec(t)).bind((e=>te(e,1))),n=a.get(e);Om.getCurrent(n).fold((()=>{console.log("Can not find form")}),(e=>{vu.setValue(e,{hex:o.getOr("")}),IO.getField(e,"hex").each((e=>{Fr(e,Qs())}))}))})),HO()])}})(0,t.shared.providers,o))),dropzone:eE(((e,t,o)=>((e,t,o)=>{const n=(e,t)=>{t.stop()},s=e=>(t,o)=>{H(e,(e=>{e(t,o)}))},r=(e,t)=>{var o;if(!Lm.isDisabled(e)){const n=t.event.raw;i(e,null===(o=n.dataTransfer)||void 0===o?void 0:o.files)}},a=(e,t)=>{const o=t.event.raw.target;i(e,o.files)},i=(o,n)=>{n&&(vu.setValue(o,((e,t)=>{const o=XO.explode(t.getOption("images_file_types"));return U(se(e),(e=>N(o,(t=>Ae(e.name.toLowerCase(),`.${t.toLowerCase()}`)))))})(n,t)),Rr(o,xk,{name:e.name}))},l=Xh({dom:{tag:"input",attributes:{type:"file",accept:"image/*"},styles:{display:"none"}},behaviours:Tl([th("input-file-events",[Yr(tr()),Yr(pr())])])}),c=e.label.map((e=>yk(e,t))),d=uk.parts.field({factory:{sketch:e=>({uid:e.uid,dom:{tag:"div",classes:["tox-dropzone-container"]},behaviours:Tl([$O(o.getOr([])),HO(),Lm.config({}),ph.config({toggleClass:"dragenter",toggleOnExecute:!1}),th("dropzone-events",[Wr("dragenter",s([n,ph.toggle])),Wr("dragleave",s([n,ph.toggle])),Wr("dragover",n),Wr("drop",s([n,r])),Wr(er(),a)])]),components:[{dom:{tag:"div",classes:["tox-dropzone"],styles:{}},components:[{dom:{tag:"p"},components:[ri(t.translate("Drop an image here"))]},qh.sketch({dom:{tag:"button",styles:{position:"relative"},classes:["tox-button","tox-button--secondary"]},components:[ri(t.translate("Browse for an image")),l.asSpec()],action:e=>{l.get(e).element.dom.click()},buttonBehaviours:Tl([pk.config({}),_x(t.isDisabled),Ox()])})]}]})}});return fk(c,d,["tox-form__group--stretched"],[])})(e,t.shared.providers,o))),grid:eE(((e,t)=>((e,t)=>({dom:{tag:"div",classes:["tox-form__grid",`tox-form__grid--${e.columns}col`]},components:L(e.items,t.interpreter)}))(e,t.shared))),listbox:eE(((e,t,o)=>((e,t,o)=>{const n=t.shared.providers,s=o.bind((t=>V_(e.items,t))).orThunk((()=>oe(e.items).filter(F_))),r=e.label.map((e=>yk(e,n))),a=uk.parts.field({dom:{},factory:{sketch:o=>A_({uid:o.uid,text:s.map((e=>e.text)),icon:A.none(),tooltip:e.label,role:A.none(),fetch:(o,n)=>{const s=N_(o,e.name,e.items,vu.getValue(o));n(I_(s,bv.CLOSE_ON_EXECUTE,t,{isHorizontalMenu:!1,search:A.none()}))},onSetup:x(b),getApi:x({}),columns:1,presets:"normal",classes:[],dropdownBehaviours:[pk.config({}),jO(s.map((e=>e.value)),(e=>_t(e.element,R_)),((t,o)=>{V_(e.items,o).each((e=>{Ct(t.element,R_,e.value),Rr(t,T_,{text:e.text})}))}))]},"tox-listbox",t.shared)}}),i={dom:{tag:"div",classes:["tox-listboxfield"]},components:[a]};return uk.sketch({dom:{tag:"div",classes:["tox-form__group"]},components:q([r.toArray(),[i]]),fieldBehaviours:Tl([Lm.config({disabled:x(!e.enabled),onDisabled:e=>{uk.getField(e).each(Lm.disable)},onEnabled:e=>{uk.getField(e).each(Lm.enable)}})])})})(e,t,o))),selectbox:eE(((e,t,o)=>((e,t,o)=>{const n=L(e.items,(e=>({text:t.translate(e.text),value:e.value}))),s=e.label.map((e=>yk(e,t))),r=uk.parts.field({dom:{},...o.map((e=>({data:e}))).getOr({}),selectAttributes:{size:e.size},options:n,factory:z_,selectBehaviours:Tl([Lm.config({disabled:()=>!e.enabled||t.isDisabled()}),pk.config({}),th("selectbox-change",[Wr(er(),((t,o)=>{Rr(t,xk,{name:e.name})}))])])}),a=e.size>1?A.none():A.some(ob("chevron-down",{tag:"div",classes:["tox-selectfield__icon-js"]},t.icons)),i={dom:{tag:"div",classes:["tox-selectfield"]},components:q([[r],a.toArray()])};return uk.sketch({dom:{tag:"div",classes:["tox-form__group"]},components:q([s.toArray(),[i]]),fieldBehaviours:Tl([Lm.config({disabled:()=>!e.enabled||t.isDisabled(),onDisabled:e=>{uk.getField(e).each(Lm.disable)},onEnabled:e=>{uk.getField(e).each(Lm.enable)}}),Ox()])})})(e,t.shared.providers,o))),sizeinput:eE(((e,t)=>((e,t)=>{let o=G_;const n=ca("ratio-event"),s=e=>ob(e,{tag:"span",classes:["tox-icon","tox-lock-icon__"+e]},t.icons),r=U_.parts.lock({dom:{tag:"button",classes:["tox-lock","tox-button","tox-button--naked","tox-button--icon"],attributes:{title:t.translate(e.label.getOr("Constrain proportions"))}},components:[s("lock"),s("unlock")],buttonBehaviours:Tl([Lm.config({disabled:()=>!e.enabled||t.isDisabled()}),Ox(),pk.config({})])}),a=e=>({dom:{tag:"div",classes:["tox-form__group"]},components:e}),i=o=>uk.parts.field({factory:Hv,inputClasses:["tox-textfield"],inputBehaviours:Tl([Lm.config({disabled:()=>!e.enabled||t.isDisabled()}),Ox(),pk.config({}),th("size-input-events",[Wr(Xs(),((e,t)=>{Rr(e,n,{isField1:o})})),Wr(er(),((t,o)=>{Rr(t,xk,{name:e.name})}))])]),selectOnFocus:!1}),l=e=>({dom:{tag:"label",classes:["tox-label"]},components:[ri(t.translate(e))]}),c=U_.parts.field1(a([uk.parts.label(l("Width")),i(!0)])),d=U_.parts.field2(a([uk.parts.label(l("Height")),i(!1)]));return U_.sketch({dom:{tag:"div",classes:["tox-form__group"]},components:[{dom:{tag:"div",classes:["tox-form__controls-h-stack"]},components:[c,d,a([l("\xa0"),r])]}],field1Name:"width",field2Name:"height",locked:!0,markers:{lockClass:"tox-locked"},onLockedChange:(e,t,n)=>{W_(vu.getValue(e)).each((e=>{o(e).each((e=>{vu.setValue(t,(e=>{const t={"":0,px:0,pt:1,mm:1,pc:2,ex:2,em:2,ch:2,rem:2,cm:3,in:4,"%":4};let o=e.value.toFixed((n=e.unit)in t?t[n]:1);var n;return-1!==o.indexOf(".")&&(o=o.replace(/\.?0*$/,"")),o+e.unit})(e))}))}))},coupledFieldBehaviours:Tl([Lm.config({disabled:()=>!e.enabled||t.isDisabled(),onDisabled:e=>{U_.getField1(e).bind(uk.getField).each(Lm.disable),U_.getField2(e).bind(uk.getField).each(Lm.disable),U_.getLock(e).each(Lm.disable)},onEnabled:e=>{U_.getField1(e).bind(uk.getField).each(Lm.enable),U_.getField2(e).bind(uk.getField).each(Lm.enable),U_.getLock(e).each(Lm.enable)}}),Ox(),th("size-input-events2",[Wr(n,((e,t)=>{const n=t.event.isField1,s=n?U_.getField1(e):U_.getField2(e),r=n?U_.getField2(e):U_.getField1(e),a=s.map(vu.getValue).getOr(""),i=r.map(vu.getValue).getOr("");o=((e,t)=>{const o=W_(e).toOptional(),n=W_(t).toOptional();return Se(o,n,((e,t)=>j_(e,t.unit).map((e=>t.value/e)).map((e=>{return o=e,n=t.unit,e=>j_(e,n).map((e=>({value:e*o,unit:n})));var o,n})).getOr(G_))).getOr(G_)})(a,i)}))])])})})(e,t.shared.providers))),slider:eE(((e,t,o)=>((e,t,o)=>{const n=OO.parts.label({dom:{tag:"label",classes:["tox-label"]},components:[ri(t.translate(e.label))]}),s=OO.parts.spectrum({dom:{tag:"div",classes:["tox-slider__rail"],attributes:{role:"presentation"}}}),r=OO.parts.thumb({dom:{tag:"div",classes:["tox-slider__handle"],attributes:{role:"presentation"}}});return OO.sketch({dom:{tag:"div",classes:["tox-slider"],attributes:{role:"presentation"}},model:{mode:"x",minX:e.min,maxX:e.max,getInitialValue:x(o.getOrThunk((()=>(Math.abs(e.max)-Math.abs(e.min))/2)))},components:[n,s,r],sliderBehaviours:Tl([HO(),ah.config({})]),onChoose:(t,o,n)=>{Rr(t,xk,{name:e.name,value:n})}})})(e,t.shared.providers,o))),urlinput:eE(((e,t,o)=>((e,t,o,n)=>{const s=t.shared.providers,r=t=>{const n=vu.getValue(t);o.addToHistory(n.value,e.filetype)},a={...n.map((e=>({initialData:e}))).getOr({}),dismissOnBlur:!0,inputClasses:["tox-textfield"],sandboxClasses:["tox-dialog__popups"],inputAttributes:{"aria-errormessage":JT,type:"url"},minChars:0,responseTime:0,fetch:n=>{const s=((e,t,o)=>{var n,s;const r=vu.getValue(t),a=null!==(s=null===(n=null==r?void 0:r.meta)||void 0===n?void 0:n.text)&&void 0!==s?s:r.value;return o.getLinkInformation().fold((()=>[]),(t=>{const n=KT(a,(e=>L(e,(e=>jT(e,e))))(o.getHistory(e)));return"file"===e?(s=[n,KT(a,$T(t)),KT(a,q([YT(t),qT(t),XT(t)]))],j(s,((e,t)=>0===e.length||0===t.length?e.concat(t):e.concat(UT,t)),[])):n;var s}))})(e.filetype,n,o),r=I_(s,bv.BUBBLE_TO_SANDBOX,t,{isHorizontalMenu:!1,search:A.none()});return SS(r)},getHotspot:e=>g.getOpt(e),onSetValue:(e,t)=>{e.hasConfigured(Lk)&&Lk.run(e).get(b)},typeaheadBehaviours:Tl([...o.getValidationHandler().map((t=>Lk.config({getRoot:e=>at(e.element),invalidClass:"tox-control-wrap--status-invalid",notify:{onInvalid:(e,t)=>{c.getOpt(e).each((e=>{Ct(e.element,"title",s.translate(t))}))}},validator:{validate:o=>{const n=vu.getValue(o);return FT((o=>{t({type:e.filetype,url:n.value},(e=>{if("invalid"===e.status){const t=rn.error(e.message);o(t)}else{const t=rn.value(e.message);o(t)}}))}))},validateOnLoad:!1}}))).toArray(),Lm.config({disabled:()=>!e.enabled||s.isDisabled()}),pk.config({}),th("urlinput-events",[Wr(Qs(),(t=>{const o=Ka(t.element),n=o.trim();n!==o&&Ja(t.element,n),"file"===e.filetype&&Rr(t,xk,{name:e.name})})),Wr(er(),(t=>{Rr(t,xk,{name:e.name}),r(t)})),Wr(dr(),(t=>{Rr(t,xk,{name:e.name}),r(t)}))])]),eventOrder:{[Qs()]:["streaming","urlinput-events","invalidating"]},model:{getDisplayText:e=>e.value,selectsOver:!1,populateFromBrowse:!1},markers:{openClass:"tox-textfield--popup-open"},lazySink:t.shared.getSink,parts:{menu:Rv(0,0,"normal")},onExecute:(e,t,o)=>{Rr(t,Ck,{})},onItemExecute:(t,o,n,s)=>{r(t),Rr(t,xk,{name:e.name})}},i=uk.parts.field({...a,factory:BT}),l=e.label.map((e=>yk(e,s))),c=Xh(((e,t,o=e,n=e)=>ob(o,{tag:"div",classes:["tox-icon","tox-control-wrap__status-icon-"+e],attributes:{title:s.translate(n),"aria-live":"polite",...t.fold((()=>({})),(e=>({id:e})))}},s.icons))("invalid",A.some(JT),"warning")),d=Xh({dom:{tag:"div",classes:["tox-control-wrap__status-icon-wrap"]},components:[c.asSpec()]}),u=o.getUrlPicker(e.filetype),m=ca("browser.url.event"),g=Xh({dom:{tag:"div",classes:["tox-control-wrap"]},components:[i,d.asSpec()],behaviours:Tl([Lm.config({disabled:()=>!e.enabled||s.isDisabled()})])}),p=Xh(LT({name:e.name,icon:A.some("browse"),text:e.picker_text.or(e.label).getOr(""),enabled:e.enabled,primary:!1,buttonType:A.none(),borderless:!0},(e=>Fr(e,m)),s,[],["tox-browse-url"]));return uk.sketch({dom:vk([]),components:l.toArray().concat([{dom:{tag:"div",classes:["tox-form__controls-h-stack"]},components:q([[g.asSpec()],u.map((()=>p.asSpec())).toArray()])}]),fieldBehaviours:Tl([Lm.config({disabled:()=>!e.enabled||s.isDisabled(),onDisabled:e=>{uk.getField(e).each(Lm.disable),p.getOpt(e).each(Lm.disable)},onEnabled:e=>{uk.getField(e).each(Lm.enable),p.getOpt(e).each(Lm.enable)}}),Ox(),th("url-input-events",[Wr(m,(t=>{Om.getCurrent(t).each((o=>{const n=vu.getValue(o),s={fieldname:e.name,...n};u.each((n=>{n(s).get((n=>{vu.setValue(o,n),Rr(t,xk,{name:e.name})}))}))}))}))])])})})(e,t,t.urlinput,o))),customeditor:eE((e=>{const t=nc(),o=Xh({dom:{tag:e.tag}}),n=nc();return{dom:{tag:"div",classes:["tox-custom-editor"]},behaviours:Tl([th("custom-editor-events",[Jr((s=>{o.getOpt(s).each((o=>{((e=>ve(e,"init"))(e)?e.init(o.element.dom):YO.load(e.scriptId,e.scriptUrl).then((t=>t(o.element.dom,e.settings)))).then((e=>{n.on((t=>{e.setValue(t)})),n.clear(),t.set(e)}))}))}))]),jO(A.none(),(()=>t.get().fold((()=>n.get().getOr("")),(e=>e.getValue()))),((e,o)=>{t.get().fold((()=>n.set(o)),(e=>e.setValue(o)))})),HO()]),components:[o.asSpec()]}})),htmlpanel:eE((e=>"presentation"===e.presets?ik.sketch({dom:{tag:"div",classes:["tox-form__group"],innerHtml:e.html}}):ik.sketch({dom:{tag:"div",classes:["tox-form__group"],innerHtml:e.html,attributes:{role:"document"}},containerBehaviours:Tl([pk.config({}),ah.config({})])}))),imagepreview:eE(((e,t,o)=>((e,t)=>{const o=As(t.getOr({url:""})),n=Xh({dom:{tag:"img",classes:["tox-imagepreview__image"],attributes:t.map((e=>({src:e.url}))).getOr({})}}),s=Xh({dom:{tag:"div",classes:["tox-imagepreview__container"],attributes:{role:"presentation"}},components:[n.asSpec()]}),r={};e.height.each((e=>r.height=e));const a=t.map((e=>({url:e.url,zoom:A.from(e.zoom),cachedWidth:A.from(e.cachedWidth),cachedHeight:A.from(e.cachedHeight)})));return{dom:{tag:"div",classes:["tox-imagepreview"],styles:r,attributes:{role:"presentation"}},components:[s.asSpec()],behaviours:Tl([HO(),jO(a,(()=>o.get()),((e,t)=>{const r={url:t.url};t.zoom.each((e=>r.zoom=e)),t.cachedWidth.each((e=>r.cachedWidth=e)),t.cachedHeight.each((e=>r.cachedHeight=e)),o.set(r);const a=()=>{const{cachedWidth:t,cachedHeight:o,zoom:n}=r;if(!u(t)&&!u(o)){if(u(n)){const n=((e,t,o)=>{const n=Zt(e),s=jt(e);return Math.min(n/t,s/o,1)})(e.element,t,o);r.zoom=n}const a=((e,t,o,n,s)=>{const r=o*s,a=n*s,i=Math.max(0,e/2-r/2),l=Math.max(0,t/2-a/2);return{left:i.toString()+"px",top:l.toString()+"px",width:r.toString()+"px",height:a.toString()+"px"}})(Zt(e.element),jt(e.element),t,o,r.zoom);s.getOpt(e).each((e=>{It(e.element,a)}))}};n.getOpt(e).each((o=>{const n=o.element;var s;t.url!==_t(n,"src")&&(Ct(n,"src",t.url),Ga(e.element,"tox-imagepreview__loaded")),a(),(s=n,new Promise(((e,t)=>{const o=()=>{r(),e(s)},n=[rc(s,"load",o),rc(s,"error",(()=>{r(),t("Unable to load data from image: "+s.dom.src)}))],r=()=>H(n,(e=>e.unbind()));s.dom.complete&&o()}))).then((t=>{e.getSystem().isConnected()&&(Wa(e.element,"tox-imagepreview__loaded"),r.cachedWidth=t.dom.naturalWidth,r.cachedHeight=t.dom.naturalHeight,a())}))}))}))])}})(e,o))),table:eE(((e,t)=>((e,t)=>{const o=e=>({dom:{tag:"td",innerHtml:t.translate(e)}});return{dom:{tag:"table",classes:["tox-dialog__table"]},components:[(s=e.header,{dom:{tag:"thead"},components:[{dom:{tag:"tr"},components:L(s,(e=>({dom:{tag:"th",innerHtml:t.translate(e)}})))}]}),(n=e.cells,{dom:{tag:"tbody"},components:L(n,(e=>({dom:{tag:"tr"},components:L(e,o)})))})],behaviours:Tl([pk.config({}),ah.config({})])};var n,s})(e,t.shared.providers))),tree:eE(((e,t)=>((e,t)=>{const o=e.onLeafAction.getOr(b),n=e.onToggleExpand.getOr(b),s=e.defaultExpandedIds,r=As(s),a=As(e.defaultSelectedId),i=ca("tree-id"),l=(n,s)=>e.items.map((e=>"leaf"===e.type?pT({leaf:e,selectedId:n,onLeafAction:o,visible:!0,treeId:i,backstage:t}):yT({directory:e,selectedId:n,onLeafAction:o,expandedIds:s,labelTabstopping:!0,treeId:i,backstage:t})));return{dom:{tag:"div",classes:["tox-tree"],attributes:{role:"tree"}},components:l(a.get(),r.get()),behaviours:Tl([Gp.config({mode:"flow",selector:".tox-tree--leaf__label--visible, .tox-tree--directory__label--visible",cycles:!1}),th(xT,[Wr("expand-tree-node",((e,t)=>{const{expanded:o,node:s}=t.event;r.set(o?[...r.get(),s]:r.get().filter((e=>e!==s))),n(r.get(),{expanded:o,node:s})}))]),Il.config({channels:{[`update-active-item-${i}`]:{onReceive:(e,t)=>{a.set(A.some(t.value)),eh.set(e,l(A.some(t.value),r.get()))}}}}),eh.config({})])}})(e,t))),panel:eE(((e,t)=>((e,t)=>({dom:{tag:"div",classes:e.classes},components:L(e.items,t.shared.interpreter)}))(e,t)))},oE={field:(e,t)=>t,record:x([])},nE=(e,t,o,n)=>{const s=bn(n,{shared:{interpreter:t=>sE(e,t,o,s)}});return sE(e,t,o,s)},sE=(e,t,o,n)=>be(tE,t.type).fold((()=>(console.error(`Unknown factory type "${t.type}", defaulting to container: `,t),t)),(s=>s(e,t,o,n))),rE=(e,t,o)=>sE(oE,e,t,o),aE="layout-inset",iE=e=>e.x,lE=(e,t)=>e.x+e.width/2-t.width/2,cE=(e,t)=>e.x+e.width-t.width,dE=e=>e.y,uE=(e,t)=>e.y+e.height-t.height,mE=(e,t)=>e.y+e.height/2-t.height/2,gE=(e,t,o)=>Ui(cE(e,t),uE(e,t),o.insetSouthwest(),qi(),"southwest",el(e,{right:0,bottom:3}),aE),pE=(e,t,o)=>Ui(iE(e),uE(e,t),o.insetSoutheast(),$i(),"southeast",el(e,{left:1,bottom:3}),aE),hE=(e,t,o)=>Ui(cE(e,t),dE(e),o.insetNorthwest(),Gi(),"northwest",el(e,{right:0,top:2}),aE),fE=(e,t,o)=>Ui(iE(e),dE(e),o.insetNortheast(),ji(),"northeast",el(e,{left:1,top:2}),aE),bE=(e,t,o)=>Ui(lE(e,t),dE(e),o.insetNorth(),Yi(),"north",el(e,{top:2}),aE),vE=(e,t,o)=>Ui(lE(e,t),uE(e,t),o.insetSouth(),Xi(),"south",el(e,{bottom:3}),aE),yE=(e,t,o)=>Ui(cE(e,t),mE(e,t),o.insetEast(),Ji(),"east",el(e,{right:0}),aE),xE=(e,t,o)=>Ui(iE(e),mE(e,t),o.insetWest(),Ki(),"west",el(e,{left:1}),aE),wE=e=>{switch(e){case"north":return bE;case"northeast":return fE;case"northwest":return hE;case"south":return vE;case"southeast":return pE;case"southwest":return gE;case"east":return yE;case"west":return xE}},SE=(e,t,o,n,s)=>Zl(n).map(wE).getOr(bE)(e,t,o,n,s),kE=e=>{switch(e){case"north":return vE;case"northeast":return pE;case"northwest":return gE;case"south":return bE;case"southeast":return fE;case"southwest":return hE;case"east":return xE;case"west":return yE}},CE=(e,t,o,n,s)=>Zl(n).map(kE).getOr(bE)(e,t,o,n,s),OE={valignCentre:[],alignCentre:[],alignLeft:[],alignRight:[],right:[],left:[],bottom:[],top:[]},_E=(e,t,o)=>{const n={maxHeightFunction:gc()};return()=>o()?{type:"node",root:bt(ft(e())),node:A.from(e()),bubble:bc(12,12,OE),layouts:{onRtl:()=>[fE],onLtr:()=>[hE]},overrides:n}:{type:"hotspot",hotspot:t(),bubble:bc(-12,12,OE),layouts:{onRtl:()=>[ll,cl,gl],onLtr:()=>[cl,ll,gl]},overrides:n}},TE=(e,t,o,n)=>{const s={maxHeightFunction:gc()};return()=>n()?{type:"node",root:bt(ft(t())),node:A.from(t()),bubble:bc(12,12,OE),layouts:{onRtl:()=>[bE],onLtr:()=>[bE]},overrides:s}:e?{type:"node",root:bt(ft(t())),node:A.from(t()),bubble:bc(0,-Gt(t()),OE),layouts:{onRtl:()=>[ml],onLtr:()=>[ml]},overrides:s}:{type:"hotspot",hotspot:o(),bubble:bc(0,0,OE),layouts:{onRtl:()=>[ml],onLtr:()=>[ml]},overrides:s}},EE=(e,t,o)=>()=>o()?{type:"node",root:bt(ft(e())),node:A.from(e()),layouts:{onRtl:()=>[bE],onLtr:()=>[bE]}}:{type:"hotspot",hotspot:t(),layouts:{onRtl:()=>[gl],onLtr:()=>[gl]}},AE=(e,t)=>()=>({type:"selection",root:t(),getSelection:()=>{const t=e.selection.getRng(),o=e.model.table.getSelectedCells();if(o.length>1){const e=o[0],t=o[o.length-1],n={firstCell:ze(e),lastCell:ze(t)};return A.some(n)}return A.some(jc.range(ze(t.startContainer),t.startOffset,ze(t.endContainer),t.endOffset))}}),ME=e=>t=>({type:"node",root:e(),node:t}),DE=(e,t,o,n)=>{const s=iv(e),r=()=>ze(e.getBody()),a=()=>ze(e.getContentAreaContainer()),i=()=>s||!n();return{inlineDialog:_E(a,t,i),inlineBottomDialog:TE(e.inline,a,o,i),banner:EE(a,t,i),cursor:AE(e,r),node:ME(r)}},BE=e=>(t,o)=>{oS(e)(t,o)},IE=e=>()=>Uw(e),FE=e=>t=>zw(e,t),RE=e=>t=>Pw(e,t),NE=e=>()=>Pb(e),VE=e=>ye(e,"items"),zE=e=>ye(e,"format"),LE=[{title:"Headings",items:[{title:"Heading 1",format:"h1"},{title:"Heading 2",format:"h2"},{title:"Heading 3",format:"h3"},{title:"Heading 4",format:"h4"},{title:"Heading 5",format:"h5"},{title:"Heading 6",format:"h6"}]},{title:"Inline",items:[{title:"Bold",format:"bold"},{title:"Italic",format:"italic"},{title:"Underline",format:"underline"},{title:"Strikethrough",format:"strikethrough"},{title:"Superscript",format:"superscript"},{title:"Subscript",format:"subscript"},{title:"Code",format:"code"}]},{title:"Blocks",items:[{title:"Paragraph",format:"p"},{title:"Blockquote",format:"blockquote"},{title:"Div",format:"div"},{title:"Pre",format:"pre"}]},{title:"Align",items:[{title:"Left",format:"alignleft"},{title:"Center",format:"aligncenter"},{title:"Right",format:"alignright"},{title:"Justify",format:"alignjustify"}]}],HE=e=>j(e,((e,t)=>{if(ve(t,"items")){const o=HE(t.items);return{customFormats:e.customFormats.concat(o.customFormats),formats:e.formats.concat([{title:t.title,items:o.formats}])}}if(ve(t,"inline")||(e=>ve(e,"block"))(t)||(e=>ve(e,"selector"))(t)){const o=`custom-${r(t.name)?t.name:t.title.toLowerCase()}`;return{customFormats:e.customFormats.concat([{name:o,format:t}]),formats:e.formats.concat([{title:t.title,format:o,icon:t.icon}])}}return{...e,formats:e.formats.concat(t)}}),{customFormats:[],formats:[]}),PE=e=>xb(e).map((t=>{const o=((e,t)=>{const o=HE(t),n=t=>{H(t,(t=>{e.formatter.has(t.name)||e.formatter.register(t.name,t.format)}))};return e.formatter?n(o.customFormats):e.on("init",(()=>{n(o.customFormats)})),o.formats})(e,t);return wb(e)?LE.concat(o):o})).getOr(LE),UE=(e,t,o)=>({...e,type:"formatter",isSelected:t(e.format),getStylePreview:o(e.format)}),WE=(e,t,o,n)=>{const s=t=>L(t,(t=>VE(t)?(e=>{const t=s(e.items);return{...e,type:"submenu",getStyleItems:x(t)}})(t):zE(t)?(e=>UE(e,o,n))(t):(e=>{const t=ae(e);return 1===t.length&&R(t,"title")})(t)?{...t,type:"separator"}:(t=>{const s=r(t.name)?t.name:ca(t.title),a=`custom-${s}`,i={...t,type:"formatter",format:a,isSelected:o(a),getStylePreview:n(a)};return e.formatter.register(s,i),i})(t)));return s(t)},jE=XO.trim,GE=e=>t=>{if((e=>g(e)&&1===e.nodeType)(t)){if(t.contentEditable===e)return!0;if(t.getAttribute("data-mce-contenteditable")===e)return!0}return!1},$E=GE("true"),qE=GE("false"),YE=(e,t,o,n,s)=>({type:e,title:t,url:o,level:n,attach:s}),XE=e=>e.innerText||e.textContent,KE=e=>(e=>e&&"A"===e.nodeName&&void 0!==(e.id||e.name))(e)&&ZE(e),JE=e=>e&&/^(H[1-6])$/.test(e.nodeName),ZE=e=>(e=>{let t=e;for(;t=t.parentNode;){const e=t.contentEditable;if(e&&"inherit"!==e)return $E(t)}return!1})(e)&&!qE(e),QE=e=>JE(e)&&ZE(e),eA=e=>{var t;const o=(e=>e.id?e.id:ca("h"))(e);return YE("header",null!==(t=XE(e))&&void 0!==t?t:"","#"+o,(e=>JE(e)?parseInt(e.nodeName.substr(1),10):0)(e),(()=>{e.id=o}))},tA=e=>{const t=e.id||e.name,o=XE(e);return YE("anchor",o||"#"+t,"#"+t,0,b)},oA=e=>jE(e.title).length>0,nA=e=>{const t=(e=>{const t=L(Zc(ze(e),"h1,h2,h3,h4,h5,h6,a:not([href])"),(e=>e.dom));return t})(e);return U((e=>L(U(e,QE),eA))(t).concat((e=>L(U(e,KE),tA))(t)),oA)},sA="tinymce-url-history",rA=e=>r(e)&&/^https?/.test(e),aA=e=>a(e)&&he(e,(e=>{return!(l(t=e)&&t.length<=5&&X(t,rA));var t})).isNone(),iA=()=>{const e=Ow.getItem(sA);if(null===e)return{};let t;try{t=JSON.parse(e)}catch(e){if(e instanceof SyntaxError)return console.log("Local storage "+sA+" was not valid JSON",e),{};throw e}return aA(t)?t:(console.log("Local storage "+sA+" was not valid format",t),{})},lA=e=>{const t=iA();return be(t,e).getOr([])},cA=(e,t)=>{if(!rA(e))return;const o=iA(),n=be(o,t).getOr([]),s=U(n,(t=>t!==e));o[t]=[e].concat(s).slice(0,5),(e=>{if(!aA(e))throw new Error("Bad format for history:\n"+JSON.stringify(e));Ow.setItem(sA,JSON.stringify(e))})(o)},dA=e=>!!e,uA=e=>ce(XO.makeMap(e,/[, ]/),dA),mA=e=>A.from(Fb(e)),gA=e=>A.from(e).filter(r).getOrUndefined(),pA=e=>({getHistory:lA,addToHistory:cA,getLinkInformation:()=>(e=>zb(e)?A.some({targets:nA(e.getBody()),anchorTop:gA(Lb(e)),anchorBottom:gA(Hb(e))}):A.none())(e),getValidationHandler:()=>(e=>A.from(Rb(e)))(e),getUrlPicker:t=>((e,t)=>((e,t)=>{const o=(e=>{const t=A.from(Vb(e)).filter(dA).map(uA);return mA(e).fold(T,(e=>t.fold(E,(e=>ae(e).length>0&&e))))})(e);return d(o)?o?mA(e):A.none():o[t]?mA(e):A.none()})(e,t).map((o=>n=>wS((s=>{const i={filetype:t,fieldname:n.fieldname,...A.from(n.meta).getOr({})};o.call(e,((e,t)=>{if(!r(e))throw new Error("Expected value to be string");if(void 0!==t&&!a(t))throw new Error("Expected meta to be a object");s({value:e,meta:t})}),n.value,i)})))))(e,t)}),hA=pm,fA=Ju,bA=x([xs("shell",!1),ns("makeItem"),xs("setupItem",b),Su("listBehaviours",[eh])]),vA=Yu({name:"items",overrides:()=>({behaviours:Tl([eh.config({})])})}),yA=x([vA]),xA=wm({name:x("CustomList")(),configFields:bA(),partFields:yA(),factory:(e,t,o,n)=>{const s=e.shell?{behaviours:[eh.config({})],components:[]}:{behaviours:[],components:t};return{uid:e.uid,dom:e.dom,components:s.components,behaviours:wu(e.listBehaviours,s.behaviours),apis:{setItems:(t,o)=>{var n;(n=t,e.shell?A.some(n):am(n,e,"items")).fold((()=>{throw console.error("Custom List was defined to not be a shell, but no item container was specified in components"),new Error("Custom List was defined to not be a shell, but no item container was specified in components")}),(n=>{const s=eh.contents(n),r=o.length,a=r-s.length,i=a>0?V(a,(()=>e.makeItem())):[],l=s.slice(r);H(l,(e=>eh.remove(n,e))),H(i,(e=>eh.append(n,e)));const c=eh.contents(n);H(c,((n,s)=>{e.setupItem(t,n,o[s],s)}))}))}}}},apis:{setItems:(e,t,o)=>{e.setItems(t,o)}}}),wA=x([ns("dom"),xs("shell",!0),yu("toolbarBehaviours",[eh])]),SA=x([Yu({name:"groups",overrides:()=>({behaviours:Tl([eh.config({})])})})]),kA=wm({name:"Toolbar",configFields:wA(),partFields:SA(),factory:(e,t,o,n)=>{const s=e.shell?{behaviours:[eh.config({})],components:[]}:{behaviours:[],components:t};return{uid:e.uid,dom:e.dom,components:s.components,behaviours:wu(e.toolbarBehaviours,s.behaviours),apis:{setGroups:(t,o)=>{var n;(n=t,e.shell?A.some(n):am(n,e,"groups")).fold((()=>{throw console.error("Toolbar was defined to not be a shell, but no groups container was specified in components"),new Error("Toolbar was defined to not be a shell, but no groups container was specified in components")}),(e=>{eh.set(e,o)}))},refresh:b},domModification:{attributes:{role:"group"}}}},apis:{setGroups:(e,t,o)=>{e.setGroups(t,o)}}}),CA=b,OA=T,_A=x([]);var TA,EA=Object.freeze({__proto__:null,setup:CA,isDocked:OA,getBehaviours:_A});const AA=e=>(xe(Vt(e,"position"),"fixed")?A.none():it(e)).orThunk((()=>{const t=Ne("span");return rt(e).bind((e=>{Lo(e,t);const o=it(t);return Uo(t),o}))})),MA=e=>AA(e).map(Xt).getOrThunk((()=>qt(0,0))),DA=(e,t)=>{const o=e.element;Wa(o,t.transitionClass),Ga(o,t.fadeOutClass),Wa(o,t.fadeInClass),t.onShow(e)},BA=(e,t)=>{const o=e.element;Wa(o,t.transitionClass),Ga(o,t.fadeInClass),Wa(o,t.fadeOutClass),t.onHide(e)},IA=(e,t)=>e.y>=t.y,FA=(e,t)=>e.bottom<=t.bottom,RA=(e,t,o)=>({location:"top",leftX:t,topY:o.bounds.y-e.y}),NA=(e,t,o)=>({location:"bottom",leftX:t,bottomY:e.bottom-o.bounds.bottom}),VA=e=>e.box.x-e.win.x,zA=(e,t,o)=>o.getInitialPos().map((o=>{const n=((e,t)=>{const o=t.optScrollEnv.fold(x(e.bounds.y),(t=>t.scrollElmTop+(e.bounds.y-t.currentScrollTop)));return qt(e.bounds.x,o)})(o,t);return{box:Jo(n.left,n.top,Zt(e),jt(e)),location:o.location}})),LA=(e,t,o,n,s)=>{const r=((e,t)=>{const o=t.optScrollEnv.fold(x(e.y),(t=>e.y+t.currentScrollTop-t.scrollElmTop));return qt(e.x,o)})(t,o),a=Jo(r.left,r.top,t.width,t.height);n.setInitialPos({style:zt(e),position:Rt(e,"position")||"static",bounds:a,location:s.location})},HA=(e,t,o)=>o.getInitialPos().bind((n=>{var s;switch(o.clearInitialPos(),n.position){case"static":return A.some({morph:"static"});case"absolute":const o=AA(e).getOr(wt()),r=Zo(o),a=null!==(s=o.dom.scrollTop)&&void 0!==s?s:0;return A.some({morph:"absolute",positionCss:Pl("absolute",be(n.style,"left").map((e=>t.x-r.x)),be(n.style,"top").map((e=>t.y-r.y+a)),be(n.style,"right").map((e=>r.right-t.right)),be(n.style,"bottom").map((e=>r.bottom-t.bottom)))});default:return A.none()}})),PA=e=>{switch(e.location){case"top":return A.some({morph:"fixed",positionCss:Pl("fixed",A.some(e.leftX),A.some(e.topY),A.none(),A.none())});case"bottom":return A.some({morph:"fixed",positionCss:Pl("fixed",A.some(e.leftX),A.none(),A.none(),A.some(e.bottomY))});default:return A.none()}},UA=(e,t,o)=>{const n=e.element;return xe(Vt(n,"position"),"fixed")?((e,t,o)=>((e,t,o)=>zA(e,t,o).filter((({box:e})=>((e,t,o)=>X(e,(e=>{switch(e){case"bottom":return FA(t,o.bounds);case"top":return IA(t,o.bounds)}})))(o.getModes(),e,t))).bind((({box:t})=>HA(e,t,o))))(e,t,o).orThunk((()=>t.optScrollEnv.bind((n=>zA(e,t,o))).bind((({box:e,location:o})=>{const n=tn(),s=VA({win:n,box:e}),r="top"===o?RA(n,s,t):NA(n,s,t);return PA(r)})))))(n,t,o):((e,t,o)=>{const n=Zo(e),s=tn(),r=((e,t,o)=>{const n=t.win,s=t.box,r=VA(t);return re(e,(e=>{switch(e){case"bottom":return FA(s,o.bounds)?A.none():A.some(NA(n,r,o));case"top":return IA(s,o.bounds)?A.none():A.some(RA(n,r,o));default:return A.none()}})).getOr({location:"no-dock"})})(o.getModes(),{win:s,box:n},t);return"top"===r.location||"bottom"===r.location?(LA(e,n,t,o,r),PA(r)):A.none()})(n,t,o)},WA=(e,t,o)=>{o.setDocked(!1),H(["left","right","top","bottom","position"],(t=>Ht(e.element,t))),t.onUndocked(e)},jA=(e,t,o,n)=>{const s="fixed"===n.position;o.setDocked(s),Ul(e.element,n),(s?t.onDocked:t.onUndocked)(e)},GA=(e,t,o,n,s=!1)=>{t.contextual.each((t=>{t.lazyContext(e).each((r=>{const a=((e,t)=>e.y<t.bottom&&e.bottom>t.y)(r,n.bounds);a!==o.isVisible()&&(o.setVisible(a),s&&!a?(qa(e.element,[t.fadeOutClass]),t.onHide(e)):(a?DA:BA)(e,t))}))}))},$A=(e,t,o,n,s)=>{GA(e,t,o,n,!0),jA(e,t,o,s.positionCss)},qA=(e,t,o)=>{e.getSystem().isConnected()&&((e,t,o)=>{const n=t.lazyViewport(e);GA(e,t,o,n),UA(e,n,o).each((s=>{((e,t,o,n,s)=>{switch(s.morph){case"static":return WA(e,t,o);case"absolute":return jA(e,t,o,s.positionCss);case"fixed":$A(e,t,o,n,s)}})(e,t,o,n,s)}))})(e,t,o)},YA=(e,t,o)=>{o.isDocked()&&((e,t,o)=>{const n=e.element;o.setDocked(!1);const s=t.lazyViewport(e);((e,t,o)=>{const n=e.element;return zA(n,t,o).bind((({box:e})=>HA(n,e,o)))})(e,s,o).each((n=>{switch(n.morph){case"static":WA(e,t,o);break;case"absolute":jA(e,t,o,n.positionCss)}})),o.setVisible(!0),t.contextual.each((t=>{Ya(n,[t.fadeInClass,t.fadeOutClass,t.transitionClass]),t.onShow(e)})),qA(e,t,o)})(e,t,o)},XA=e=>(t,o,n)=>{const s=o.lazyViewport(t);((e,t,o,n)=>{const s=Zo(e),r=tn(),a=n(r,VA({win:r,box:s}),t);return"bottom"===a.location||"top"===a.location?(((e,t,o,n,s)=>{n.getInitialPos().fold((()=>LA(e,t,o,n,s)),(()=>b))})(e,s,t,o,a),PA(a)):A.none()})(t.element,s,n,e).each((e=>{$A(t,o,n,s,e)}))},KA=XA(RA),JA=XA(NA);var ZA=Object.freeze({__proto__:null,refresh:qA,reset:YA,isDocked:(e,t,o)=>o.isDocked(),getModes:(e,t,o)=>o.getModes(),setModes:(e,t,o,n)=>o.setModes(n),forceDockToTop:KA,forceDockToBottom:JA}),QA=Object.freeze({__proto__:null,events:(e,t)=>Hr([Kr(nr(),((o,n)=>{e.contextual.each((e=>{$a(o.element,e.transitionClass)&&(Ya(o.element,[e.transitionClass,e.fadeInClass]),(t.isVisible()?e.onShown:e.onHidden)(o)),n.stop()}))})),Wr(wr(),((o,n)=>{qA(o,e,t)})),Wr(Ar(),((o,n)=>{qA(o,e,t)})),Wr(Sr(),((o,n)=>{YA(o,e,t)}))])}),eM=[ys("contextual",[as("fadeInClass"),as("fadeOutClass"),as("transitionClass"),ls("lazyContext"),Ri("onShow"),Ri("onShown"),Ri("onHide"),Ri("onHidden")]),_s("lazyViewport",(()=>({bounds:tn(),optScrollEnv:A.none()}))),Ts("modes",["top","bottom"],Hn),Ri("onDocked"),Ri("onUndocked")];const tM=Al({fields:eM,name:"docking",active:QA,apis:ZA,state:Object.freeze({__proto__:null,init:e=>{const t=As(!1),o=As(!0),n=nc(),s=As(e.modes);return Ta({isDocked:t.get,setDocked:t.set,getInitialPos:n.get,setInitialPos:n.set,clearInitialPos:n.clear,isVisible:o.get,setVisible:o.set,getModes:s.get,setModes:s.set,readState:()=>`docked:  ${t.get()}, visible: ${o.get()}, modes: ${s.get().join(",")}`})}})}),oM=x(ca("toolbar-height-change")),nM={fadeInClass:"tox-editor-dock-fadein",fadeOutClass:"tox-editor-dock-fadeout",transitionClass:"tox-editor-dock-transition"},sM="tox-tinymce--toolbar-sticky-on",rM="tox-tinymce--toolbar-sticky-off",aM=(e,t)=>R(tM.getModes(e),t),iM=e=>{const t=e.element;at(t).each((o=>{const n="padding-"+tM.getModes(e)[0];if(tM.isDocked(e)){const e=Zt(o);Bt(t,"width",e+"px"),Bt(o,n,(e=>Gt(e)+(parseInt(Rt(e,"margin-top"),10)||0)+(parseInt(Rt(e,"margin-bottom"),10)||0))(t)+"px")}else Ht(t,"width"),Ht(o,n)}))},lM=(e,t)=>{t?(Ga(e,nM.fadeOutClass),qa(e,[nM.transitionClass,nM.fadeInClass])):(Ga(e,nM.fadeInClass),qa(e,[nM.fadeOutClass,nM.transitionClass]))},cM=(e,t)=>{const o=ze(e.getContainer());t?(Wa(o,sM),Ga(o,rM)):(Wa(o,rM),Ga(o,sM))},dM=(e,t)=>{const o=nc(),n=t.getSink,s=e=>{n().each((t=>e(t.element)))},r=t=>{e.inline||iM(t),cM(e,tM.isDocked(t)),t.getSystem().broadcastOn([eu()],{}),n().each((e=>e.getSystem().broadcastOn([eu()],{})))},a=e.inline?[]:[Il.config({channels:{[oM()]:{onReceive:iM}}})];return[ah.config({}),tM.config({contextual:{lazyContext:t=>{const o=Gt(t.element),n=e.inline?e.getContentAreaContainer():e.getContainer();return A.from(n).map((n=>{const s=Zo(ze(n));return XS(e,t.element).fold((()=>{const e=s.height-o,n=s.y+(aM(t,"top")?0:o);return Jo(s.x,n,s.width,e)}),(e=>{const n=en(s,KS(e)),r=aM(t,"top")?n.y:n.y+o;return Jo(n.x,r,n.width,n.height-o)}))}))},onShow:()=>{s((e=>lM(e,!0)))},onShown:e=>{s((e=>Ya(e,[nM.transitionClass,nM.fadeInClass]))),o.get().each((t=>{((e,t)=>{const o=tt(t);zl(o).filter((e=>!Qe(t,e))).filter((t=>Qe(t,ze(o.dom.body))||et(e,t))).each((()=>Rl(t)))})(e.element,t),o.clear()}))},onHide:e=>{((e,t)=>Ll(e).orThunk((()=>t().toOptional().bind((e=>Ll(e.element))))))(e.element,n).fold(o.clear,o.set),s((e=>lM(e,!1)))},onHidden:()=>{s((e=>Ya(e,[nM.transitionClass])))},...nM},lazyViewport:t=>XS(e,t.element).fold((()=>{const o=tn(),n=Db(e),s=o.y+(aM(t,"top")?n:0),r=o.height-(aM(t,"bottom")?n:0);return{bounds:Jo(o.x,s,o.width,r),optScrollEnv:A.none()}}),(e=>({bounds:KS(e),optScrollEnv:A.some({currentScrollTop:e.element.dom.scrollTop,scrollElmTop:Xt(e.element).top})}))),modes:[t.header.getDockingMode()],onDocked:r,onUndocked:r}),...a]};var uM=Object.freeze({__proto__:null,setup:(e,t,o)=>{e.inline||(t.header.isPositionedAtTop()||e.on("ResizeEditor",(()=>{o().each(tM.reset)})),e.on("ResizeWindow ResizeEditor",(()=>{o().each(iM)})),e.on("SkinLoaded",(()=>{o().each((e=>{tM.isDocked(e)?tM.reset(e):tM.refresh(e)}))})),e.on("FullscreenStateChanged",(()=>{o().each(tM.reset)}))),e.on("AfterScrollIntoView",(e=>{o().each((t=>{tM.refresh(t);const o=t.element;zg(o)&&((e,t)=>{const o=tt(t),n=st(t).dom.innerHeight,s=Wo(o),r=ze(e.elm),a=Qo(r),i=jt(r),l=a.y,c=l+i,d=Xt(t),u=jt(t),m=d.top,g=m+u,p=Math.abs(m-s.top)<2,h=Math.abs(g-(s.top+n))<2;if(p&&l<g)jo(s.left,l-u,o);else if(h&&c>m){const e=l-n+i+u;jo(s.left,e,o)}})(e,o)}))})),e.on("PostRender",(()=>{cM(e,!1)}))},isDocked:e=>e().map(tM.isDocked).getOr(!1),getBehaviours:dM});const mM=Bn([sy,ss("items",Fn([Nn([ry,us("items",Hn)]),Hn]))].concat(Fy)),gM=[hs("text"),hs("tooltip"),hs("icon"),ws("search",!1,Fn([Pn,Bn([hs("placeholder")])],(e=>d(e)?e?A.some({placeholder:A.none()}):A.none():A.some(e)))),ls("fetch"),_s("onSetup",(()=>b))],pM=Bn([sy,...gM]),hM=e=>Yn("menubutton",pM,e),fM=Bn([sy,yy,vy,by,Sy,uy,hy,Cs("presets","normal",["normal","color","listpreview"]),Ty(1),gy,py]);var bM=xm({factory:(e,t)=>{const o={focus:Gp.focusIn,setMenus:(e,o)=>{const n=L(o,(e=>{const o={type:"menubutton",text:e.text,fetch:t=>{t(e.getItems())}},n=hM(o).mapError((e=>Jn(e))).getOrDie();return dT(n,"tox-mbtn",t.backstage,A.some("menuitem"))}));eh.set(e,n)}};return{uid:e.uid,dom:e.dom,components:[],behaviours:Tl([eh.config({}),th("menubar-events",[Jr((t=>{e.onSetup(t)})),Wr(Ys(),((e,t)=>{vi(e.element,".tox-mbtn--active").each((o=>{yi(t.event.target,".tox-mbtn").each((t=>{Qe(o,t)||e.getSystem().getByDom(o).each((o=>{e.getSystem().getByDom(t).each((e=>{NS.expand(e),NS.close(o),ah.focus(e)}))}))}))}))})),Wr(Tr(),((e,t)=>{t.event.prevFocus.bind((t=>e.getSystem().getByDom(t).toOptional())).each((o=>{t.event.newFocus.bind((t=>e.getSystem().getByDom(t).toOptional())).each((e=>{NS.isOpen(o)&&(NS.expand(e),NS.close(o))}))}))}))]),Gp.config({mode:"flow",selector:".tox-mbtn",onEscape:t=>(e.onEscape(t),A.some(!0))}),pk.config({})]),apis:o,domModification:{attributes:{role:"menubar"}}}},name:"silver.Menubar",configFields:[ns("dom"),ns("uid"),ns("onEscape"),ns("backstage"),xs("onSetup",b)],apis:{focus:(e,t)=>{e.focus(t)},setMenus:(e,t,o)=>{e.setMenus(t,o)}}});const vM="container",yM=[yu("slotBehaviours",[])],xM=e=>"<alloy.field."+e+">",wM=(e,t)=>{const o=t=>dm(e),n=(t,o)=>(n,s)=>am(n,e,s).map((e=>t(e,s))).getOr(o),s=(e,t)=>"true"!==_t(e.element,"aria-hidden"),r=n(s,!1),a=n(((e,t)=>{if(s(e)){const o=e.element;Bt(o,"display","none"),Ct(o,"aria-hidden","true"),Rr(e,Er(),{name:t,visible:!1})}})),i=(e=>(t,o)=>{H(o,(o=>e(t,o)))})(a),l=n(((e,t)=>{if(!s(e)){const o=e.element;Ht(o,"display"),At(o,"aria-hidden"),Rr(e,Er(),{name:t,visible:!0})}})),c={getSlotNames:o,getSlot:(t,o)=>am(t,e,o),isShowing:r,hideSlot:a,hideAllSlots:e=>i(e,o()),showSlot:l};return{uid:e.uid,dom:e.dom,components:t,behaviours:xu(e.slotBehaviours),apis:c}},SM=ce({getSlotNames:(e,t)=>e.getSlotNames(t),getSlot:(e,t,o)=>e.getSlot(t,o),isShowing:(e,t,o)=>e.isShowing(t,o),hideSlot:(e,t,o)=>e.hideSlot(t,o),hideAllSlots:(e,t)=>e.hideAllSlots(t),showSlot:(e,t,o)=>e.showSlot(t,o)},(e=>Oa(e))),kM={...SM,sketch:e=>{const t=(()=>{const e=[];return{slot:(t,o)=>(e.push(t),tm(vM,xM(t),o)),record:x(e)}})(),o=e(t),n=t.record(),s=L(n,(e=>$u({name:e,pname:xM(e)})));return fm(vM,yM,s,wM,o)}},CM=Bn([vy,yy,_s("onShow",b),_s("onHide",b),hy]),OM=e=>({element:()=>e.element.dom}),_M=(e,t)=>{const o=L(ae(t),(e=>{const o=t[e],n=Xn((e=>Yn("sidebar",CM,e))(o));return{name:e,getApi:OM,onSetup:n.onSetup,onShow:n.onShow,onHide:n.onHide}}));return L(o,(t=>{const n=As(b);return e.slot(t.name,{dom:{tag:"div",classes:["tox-sidebar__pane"]},behaviours:ux([Mx(t,n),Dx(t,n),Wr(Er(),((e,t)=>{const n=t.event,s=G(o,(e=>e.name===n.name));s.each((t=>{(n.visible?t.onShow:t.onHide)(t.getApi(e))}))}))])})}))},TM=e=>kM.sketch((t=>({dom:{tag:"div",classes:["tox-sidebar__pane-container"]},components:_M(t,e),slotBehaviours:ux([Jr((e=>kM.hideAllSlots(e)))])}))),EM=(e,t)=>{Ct(e,"role",t)},AM=e=>Om.getCurrent(e).bind((e=>lT.isGrowing(e)||lT.hasGrown(e)?Om.getCurrent(e).bind((e=>G(kM.getSlotNames(e),(t=>kM.isShowing(e,t))))):A.none())),MM=ca("FixSizeEvent"),DM=ca("AutoSizeEvent");var BM=Object.freeze({__proto__:null,block:(e,t,o,n)=>{Ct(e.element,"aria-busy",!0);const s=t.getRoot(e).getOr(e),r=Tl([Gp.config({mode:"special",onTab:()=>A.some(!0),onShiftTab:()=>A.some(!0)}),ah.config({})]),a=n(s,r),i=s.getSystem().build(a);eh.append(s,di(i)),i.hasConfigured(Gp)&&t.focus&&Gp.focusIn(i),o.isBlocked()||t.onBlock(e),o.blockWith((()=>eh.remove(s,i)))},unblock:(e,t,o)=>{At(e.element,"aria-busy"),o.isBlocked()&&t.onUnblock(e),o.clear()},isBlocked:(e,t,o)=>o.isBlocked()}),IM=[_s("getRoot",A.none),Os("focus",!0),Ri("onBlock"),Ri("onUnblock")];const FM=Al({fields:IM,name:"blocking",apis:BM,state:Object.freeze({__proto__:null,init:()=>{const e=tc((e=>e.destroy()));return Ta({readState:e.isSet,blockWith:t=>{e.set({destroy:t})},clear:e.clear,isBlocked:e.isSet})}})}),RM=e=>Om.getCurrent(e).each((e=>Rl(e.element,!0))),NM=(e,t,o)=>{const n=As(!1),s=nc(),r=o=>{var s;n.get()&&(!(e=>"focusin"===e.type)(s=o)||!(s.composed?oe(s.composedPath()):A.from(s.target)).map(ze).filter($e).exists((e=>$a(e,"mce-pastebin"))))&&(o.preventDefault(),RM(t()),e.editorManager.setActive(e))};e.inline||e.on("PreInit",(()=>{e.dom.bind(e.getWin(),"focusin",r),e.on("BeforeExecCommand",(e=>{"mcefocus"===e.command.toLowerCase()&&!0!==e.value&&r(e)}))}));const a=s=>{s!==n.get()&&(n.set(s),((e,t,o,n)=>{const s=t.element;if(((e,t)=>{const o="tabindex",n=`data-mce-${o}`;A.from(e.iframeElement).map(ze).each((e=>{t?(Tt(e,o).each((t=>Ct(e,n,t))),Ct(e,o,-1)):(At(e,o),Tt(e,n).each((t=>{Ct(e,o,t),At(e,n)})))}))})(e,o),o)FM.block(t,(e=>(t,o)=>({dom:{tag:"div",attributes:{"aria-label":e.translate("Loading..."),tabindex:"0"},classes:["tox-throbber__busy-spinner"]},components:[{dom:Yh('<div class="tox-spinner"><div></div><div></div><div></div></div>')}]}))(n)),Ht(s,"display"),At(s,"aria-hidden"),e.hasFocus()&&RM(t);else{const o=Om.getCurrent(t).exists((e=>Vl(e.element)));FM.unblock(t),Bt(s,"display","none"),Ct(s,"aria-hidden","true"),o&&e.focus()}})(e,t(),s,o.providers),((e,t)=>{e.dispatch("AfterProgressState",{state:t})})(e,s))};e.on("ProgressState",(t=>{if(s.on(clearTimeout),h(t.time)){const o=$h.setEditorTimeout(e,(()=>a(t.state)),t.time);s.set(o)}else a(t.state),s.clear()}))},VM=(e,t,o)=>({within:e,extra:t,withinWidth:o}),zM=(e,t,o)=>{const n=j(e,((e,t)=>((e,t)=>{const n=o(e);return A.some({element:e,start:t,finish:t+n,width:n})})(t,e.len).fold(x(e),(t=>({len:t.finish,list:e.list.concat([t])})))),{len:0,list:[]}).list,s=U(n,(e=>e.finish<=t)),r=W(s,((e,t)=>e+t.width),0);return{within:s,extra:n.slice(s.length),withinWidth:r}},LM=e=>L(e,(e=>e.element)),HM=(e,t)=>{const o=L(t,(e=>di(e)));kA.setGroups(e,o)},PM=(e,t,o)=>{const n=t.builtGroups.get();if(0===n.length)return;const s=im(e,t,"primary"),r=fS.getCoupled(e,"overflowGroup");Bt(s.element,"visibility","hidden");const a=n.concat([r]),i=re(a,(e=>Ll(e.element).bind((t=>e.getSystem().getByDom(t).toOptional()))));o([]),HM(s,a);const l=((e,t,o,n)=>{const s=((e,t,o)=>{const n=zM(t,e,o);return 0===n.extra.length?A.some(n):A.none()})(e,t,o).getOrThunk((()=>zM(t,e-o(n),o))),r=s.within,a=s.extra,i=s.withinWidth;return 1===a.length&&a[0].width<=o(n)?((e,t,o)=>{const n=LM(e.concat(t));return VM(n,[],o)})(r,a,i):a.length>=1?((e,t,o,n)=>{const s=LM(e).concat([o]);return VM(s,LM(t),n)})(r,a,n,i):((e,t,o)=>VM(LM(e),[],o))(r,0,i)})(Zt(s.element),t.builtGroups.get(),(e=>Zt(e.element)),r);0===l.extra.length?(eh.remove(s,r),o([])):(HM(s,l.within),o(l.extra)),Ht(s.element,"visibility"),Pt(s.element),i.each(ah.focus)},UM=x([yu("splitToolbarBehaviours",[fS]),ts("builtGroups",(()=>As([])))]),WM=x([Ii(["overflowToggledClass"]),bs("getOverflowBounds"),ns("lazySink"),ts("overflowGroups",(()=>As([]))),Ri("onOpened"),Ri("onClosed")].concat(UM())),jM=x([$u({factory:kA,schema:wA(),name:"primary"}),qu({schema:wA(),name:"overflow"}),qu({name:"overflow-button"}),qu({name:"overflow-group"})]),GM=x(((e,t)=>{((e,t)=>{const o=Jt.max(e,t,["margin-left","border-left-width","padding-left","padding-right","border-right-width","margin-right"]);Bt(e,"max-width",o+"px")})(e,Math.floor(t))})),$M=x([Ii(["toggledClass"]),ns("lazySink"),ls("fetch"),bs("getBounds"),ys("fireDismissalEventInstead",[xs("event",Or())]),Oc(),Ri("onToggled")]),qM=x([qu({name:"button",overrides:e=>({dom:{attributes:{"aria-haspopup":"true"}},buttonBehaviours:Tl([ph.config({toggleClass:e.markers.toggledClass,aria:{mode:"expanded"},toggleOnExecute:!1,onToggled:e.onToggled})])})}),qu({factory:kA,schema:wA(),name:"toolbar",overrides:e=>({toolbarBehaviours:Tl([Gp.config({mode:"cyclic",onEscape:t=>(am(t,e,"button").each(ah.focus),A.none())})])})})]),YM=nc(),XM=(e,t)=>{const o=fS.getCoupled(e,"toolbarSandbox");Zd.isOpen(o)?Zd.close(o):Zd.open(o,t.toolbar())},KM=(e,t,o,n)=>{const s=o.getBounds.map((e=>e())),r=o.lazySink(e).getOrDie();_d.positionWithinBounds(r,t,{anchor:{type:"hotspot",hotspot:e,layouts:n,overrides:{maxWidthFunction:GM()}}},s)},JM=(e,t,o,n,s)=>{kA.setGroups(t,s),KM(e,t,o,n),ph.on(e)},ZM=wm({name:"FloatingToolbarButton",factory:(e,t,o,n)=>({...qh.sketch({...n.button(),action:e=>{XM(e,n)},buttonBehaviours:ku({dump:n.button().buttonBehaviours},[fS.config({others:{toolbarSandbox:t=>((e,t,o)=>{const n=wi();return{dom:{tag:"div",attributes:{id:n.id}},behaviours:Tl([Gp.config({mode:"special",onEscape:e=>(Zd.close(e),A.some(!0))}),Zd.config({onOpen:(s,r)=>{const a=YM.get().getOr(!1);o.fetch().get((s=>{JM(e,r,o,t.layouts,s),n.link(e.element),a||Gp.focusIn(r)}))},onClose:()=>{ph.off(e),YM.get().getOr(!1)||ah.focus(e),n.unlink(e.element)},isPartOf:(t,o,n)=>Si(o,n)||Si(e,n),getAttachPoint:()=>o.lazySink(e).getOrDie()}),Il.config({channels:{...nu({isExtraPart:T,...o.fireDismissalEventInstead.map((e=>({fireEventInstead:{event:e.event}}))).getOr({})}),...ru({doReposition:()=>{Zd.getState(fS.getCoupled(e,"toolbarSandbox")).each((n=>{KM(e,n,o,t.layouts)}))}})}})])}})(t,o,e)}})])}),apis:{setGroups:(t,n)=>{Zd.getState(fS.getCoupled(t,"toolbarSandbox")).each((s=>{JM(t,s,e,o.layouts,n)}))},reposition:t=>{Zd.getState(fS.getCoupled(t,"toolbarSandbox")).each((n=>{KM(t,n,e,o.layouts)}))},toggle:e=>{XM(e,n)},toggleWithoutFocusing:e=>{((e,t)=>{YM.set(!0),XM(e,t),YM.clear()})(e,n)},getToolbar:e=>Zd.getState(fS.getCoupled(e,"toolbarSandbox")),isOpen:e=>Zd.isOpen(fS.getCoupled(e,"toolbarSandbox"))}}),configFields:$M(),partFields:qM(),apis:{setGroups:(e,t,o)=>{e.setGroups(t,o)},reposition:(e,t)=>{e.reposition(t)},toggle:(e,t)=>{e.toggle(t)},toggleWithoutFocusing:(e,t)=>{e.toggleWithoutFocusing(t)},getToolbar:(e,t)=>e.getToolbar(t),isOpen:(e,t)=>e.isOpen(t)}}),QM=x([ns("items"),Ii(["itemSelector"]),yu("tgroupBehaviours",[Gp])]),eD=x([Xu({name:"items",unit:"item"})]),tD=wm({name:"ToolbarGroup",configFields:QM(),partFields:eD(),factory:(e,t,o,n)=>({uid:e.uid,dom:e.dom,components:t,behaviours:wu(e.tgroupBehaviours,[Gp.config({mode:"flow",selector:e.markers.itemSelector})]),domModification:{attributes:{role:"toolbar"}}})}),oD=e=>L(e,(e=>di(e))),nD=(e,t,o)=>{PM(e,o,(n=>{o.overflowGroups.set(n),t.getOpt(e).each((e=>{ZM.setGroups(e,oD(n))}))}))},sD=wm({name:"SplitFloatingToolbar",configFields:WM(),partFields:jM(),factory:(e,t,o,n)=>{const s=Xh(ZM.sketch({fetch:()=>wS((t=>{t(oD(e.overflowGroups.get()))})),layouts:{onLtr:()=>[cl,ll],onRtl:()=>[ll,cl],onBottomLtr:()=>[ul,dl],onBottomRtl:()=>[dl,ul]},getBounds:o.getOverflowBounds,lazySink:e.lazySink,fireDismissalEventInstead:{},markers:{toggledClass:e.markers.overflowToggledClass},parts:{button:n["overflow-button"](),toolbar:n.overflow()},onToggled:(t,o)=>e[o?"onOpened":"onClosed"](t)}));return{uid:e.uid,dom:e.dom,components:t,behaviours:wu(e.splitToolbarBehaviours,[fS.config({others:{overflowGroup:()=>tD.sketch({...n["overflow-group"](),items:[s.asSpec()]})}})]),apis:{setGroups:(t,o)=>{e.builtGroups.set(L(o,t.getSystem().build)),nD(t,s,e)},refresh:t=>nD(t,s,e),toggle:e=>{s.getOpt(e).each((e=>{ZM.toggle(e)}))},toggleWithoutFocusing:e=>{s.getOpt(e).each(ZM.toggleWithoutFocusing)},isOpen:e=>s.getOpt(e).map(ZM.isOpen).getOr(!1),reposition:e=>{s.getOpt(e).each((e=>{ZM.reposition(e)}))},getOverflow:e=>s.getOpt(e).bind(ZM.getToolbar)},domModification:{attributes:{role:"group"}}}},apis:{setGroups:(e,t,o)=>{e.setGroups(t,o)},refresh:(e,t)=>{e.refresh(t)},reposition:(e,t)=>{e.reposition(t)},toggle:(e,t)=>{e.toggle(t)},toggleWithoutFocusing:(e,t)=>{e.toggle(t)},isOpen:(e,t)=>e.isOpen(t),getOverflow:(e,t)=>e.getOverflow(t)}}),rD=x([Ii(["closedClass","openClass","shrinkingClass","growingClass","overflowToggledClass"]),Ri("onOpened"),Ri("onClosed")].concat(UM())),aD=x([$u({factory:kA,schema:wA(),name:"primary"}),$u({factory:kA,schema:wA(),name:"overflow",overrides:e=>({toolbarBehaviours:Tl([lT.config({dimension:{property:"height"},closedClass:e.markers.closedClass,openClass:e.markers.openClass,shrinkingClass:e.markers.shrinkingClass,growingClass:e.markers.growingClass,onShrunk:t=>{am(t,e,"overflow-button").each((e=>{ph.off(e),ah.focus(e)})),e.onClosed(t)},onGrown:t=>{Gp.focusIn(t),e.onOpened(t)},onStartGrow:t=>{am(t,e,"overflow-button").each(ph.on)}}),Gp.config({mode:"acyclic",onEscape:t=>(am(t,e,"overflow-button").each(ah.focus),A.some(!0))})])})}),qu({name:"overflow-button",overrides:e=>({buttonBehaviours:Tl([ph.config({toggleClass:e.markers.overflowToggledClass,aria:{mode:"pressed"},toggleOnExecute:!1})])})}),qu({name:"overflow-group"})]),iD=(e,t)=>{am(e,t,"overflow-button").bind((()=>am(e,t,"overflow"))).each((o=>{lD(e,t),lT.toggleGrow(o)}))},lD=(e,t)=>{am(e,t,"overflow").each((o=>{PM(e,t,(e=>{const t=L(e,(e=>di(e)));kA.setGroups(o,t)})),am(e,t,"overflow-button").each((e=>{lT.hasGrown(o)&&ph.on(e)})),lT.refresh(o)}))},cD=wm({name:"SplitSlidingToolbar",configFields:rD(),partFields:aD(),factory:(e,t,o,n)=>{const s="alloy.toolbar.toggle";return{uid:e.uid,dom:e.dom,components:t,behaviours:wu(e.splitToolbarBehaviours,[fS.config({others:{overflowGroup:e=>tD.sketch({...n["overflow-group"](),items:[qh.sketch({...n["overflow-button"](),action:t=>{Fr(e,s)}})]})}}),th("toolbar-toggle-events",[Wr(s,(t=>{iD(t,e)}))])]),apis:{setGroups:(t,o)=>{((t,o)=>{const n=L(o,t.getSystem().build);e.builtGroups.set(n)})(t,o),lD(t,e)},refresh:t=>lD(t,e),toggle:t=>iD(t,e),isOpen:t=>((e,t)=>am(e,t,"overflow").map(lT.hasGrown).getOr(!1))(t,e)},domModification:{attributes:{role:"group"}}}},apis:{setGroups:(e,t,o)=>{e.setGroups(t,o)},refresh:(e,t)=>{e.refresh(t)},toggle:(e,t)=>{e.toggle(t)},isOpen:(e,t)=>e.isOpen(t)}}),dD=e=>{const t=e.title.fold((()=>({})),(e=>({attributes:{title:e}})));return{dom:{tag:"div",classes:["tox-toolbar__group"],...t},components:[tD.parts.items({})],items:e.items,markers:{itemSelector:"*:not(.tox-split-button) > .tox-tbtn:not([disabled]), .tox-split-button:not([disabled]), .tox-toolbar-nav-js:not([disabled]), .tox-number-input:not([disabled])"},tgroupBehaviours:Tl([pk.config({}),ah.config({})])}},uD=e=>tD.sketch(dD(e)),mD=(e,t)=>{const o=Jr((t=>{const o=L(e.initGroups,uD);kA.setGroups(t,o)}));return Tl([Ex(e.providers.isDisabled),Ox(),Gp.config({mode:t,onEscape:e.onEscape,selector:".tox-toolbar__group"}),th("toolbar-events",[o])])},gD=e=>{const t=e.cyclicKeying?"cyclic":"acyclic";return{uid:e.uid,dom:{tag:"div",classes:["tox-toolbar-overlord"]},parts:{"overflow-group":dD({title:A.none(),items:[]}),"overflow-button":NT({name:"more",icon:A.some("more-drawer"),enabled:!0,tooltip:A.some("Reveal or hide additional toolbar items"),primary:!1,buttonType:A.none(),borderless:!1},A.none(),e.providers)},splitToolbarBehaviours:mD(e,t)}},pD=e=>{const t=gD(e),o=sD.parts.primary({dom:{tag:"div",classes:["tox-toolbar__primary"]}});return sD.sketch({...t,lazySink:e.getSink,getOverflowBounds:()=>{const t=e.moreDrawerData.lazyHeader().element,o=Qo(t),n=nt(t),s=Qo(n),r=Math.max(n.dom.scrollHeight,s.height);return Jo(o.x+4,s.y,o.width-8,r)},parts:{...t.parts,overflow:{dom:{tag:"div",classes:["tox-toolbar__overflow"],attributes:e.attributes}}},components:[o],markers:{overflowToggledClass:"tox-tbtn--enabled"},onOpened:t=>e.onToggled(t,!0),onClosed:t=>e.onToggled(t,!1)})},hD=e=>{const t=cD.parts.primary({dom:{tag:"div",classes:["tox-toolbar__primary"]}}),o=cD.parts.overflow({dom:{tag:"div",classes:["tox-toolbar__overflow"]}}),n=gD(e);return cD.sketch({...n,components:[t,o],markers:{openClass:"tox-toolbar__overflow--open",closedClass:"tox-toolbar__overflow--closed",growingClass:"tox-toolbar__overflow--growing",shrinkingClass:"tox-toolbar__overflow--shrinking",overflowToggledClass:"tox-tbtn--enabled"},onOpened:t=>{t.getSystem().broadcastOn([oM()],{type:"opened"}),e.onToggled(t,!0)},onClosed:t=>{t.getSystem().broadcastOn([oM()],{type:"closed"}),e.onToggled(t,!1)}})},fD=e=>{const t=e.cyclicKeying?"cyclic":"acyclic";return kA.sketch({uid:e.uid,dom:{tag:"div",classes:["tox-toolbar"].concat(e.type===rb.scrolling?["tox-toolbar--scrolling"]:[])},components:[kA.parts.groups({})],toolbarBehaviours:mD(e,t)})},bD=[by,vy,hs("tooltip"),Cs("buttonType","secondary",["primary","secondary"]),Os("borderless",!1),ls("onAction")],vD={button:[...bD,iy,is("type",["button"])],togglebutton:[...bD,Os("active",!1),is("type",["togglebutton"])]},yD=[is("type",["group"]),Ts("buttons",[],Zn("type",vD))],xD=Zn("type",{...vD,group:yD}),wD=Bn([Ts("buttons",[],xD),ls("onShow"),ls("onHide")]),SD=(e,t)=>((e,t)=>{var o,n;const s="togglebutton"===e.type,r=e.icon.map((e=>O_(e,t.icons))).map(Xh),a={...e,name:s?e.text.getOr(e.icon.getOr("")):null!==(o=e.text)&&void 0!==o?o:e.icon.getOr(""),primary:"primary"===e.buttonType,buttonType:A.from(e.buttonType),tooltip:e.tooltip,icon:e.icon,enabled:!0,borderless:e.borderless},i=VT(null!==(n=e.buttonType)&&void 0!==n?n:"secondary"),l=s?e.text.map(t.translate):A.some(t.translate(e.text)),c=l.map(ri),d=a.tooltip.or(l).map((e=>({"aria-label":t.translate(e),title:t.translate(e)}))).getOr({}),u=r.map((e=>e.asSpec())),m=Fx([u,c]),g=e.icon.isSome()&&c.isSome(),p={tag:"button",classes:i.concat(...e.icon.isSome()&&!g?["tox-button--icon"]:[]).concat(...g?["tox-button--icon-and-text"]:[]).concat(...e.borderless?["tox-button--naked"]:[]).concat(..."togglebutton"===e.type&&e.active?["tox-button--enabled"]:[]),attributes:d},h=RT(a,A.some((o=>{const n=e=>{r.map((n=>n.getOpt(o).each((o=>{eh.set(o,[O_(e,t.icons)])}))))};return s?e.onAction({setIcon:n,setActive:e=>{const t=o.element;e?(Wa(t,"tox-button--enabled"),Ct(t,"aria-pressed",!0)):(Ga(t,"tox-button--enabled"),At(t,"aria-pressed"))},isActive:()=>$a(o.element,"tox-button--enabled")}):"button"===e.type?e.onAction({setIcon:n}):void 0})),[],p,m,t);return qh.sketch(h)})(e,t),kD=Bo().deviceType,CD=kD.isPhone(),OD=kD.isTablet();var _D=wm({name:"silver.View",configFields:[ns("viewConfig")],partFields:[Yu({factory:{sketch:e=>{let t=!1;const o=L(e.buttons,(o=>"group"===o.type?(t=!0,((e,t)=>({dom:{tag:"div",classes:["tox-view__toolbar__group"]},components:L(e.buttons,(e=>SD(e,t)))}))(o,e.providers)):SD(o,e.providers)));return{uid:e.uid,dom:{tag:"div",classes:[t?"tox-view__toolbar":"tox-view__header",...CD||OD?["tox-view--mobile","tox-view--scrolling"]:[]]},behaviours:Tl([ah.config({}),Gp.config({mode:"flow",selector:"button, .tox-button",focusInside:vg.OnEnterOrSpaceMode})]),components:t?o:[ik.sketch({dom:{tag:"div",classes:["tox-view__header-start"]},components:[]}),ik.sketch({dom:{tag:"div",classes:["tox-view__header-end"]},components:o})]}}},schema:[ns("buttons"),ns("providers")],name:"header"}),Yu({factory:{sketch:e=>({uid:e.uid,dom:{tag:"div",classes:["tox-view__pane"]}})},schema:[],name:"pane"})],factory:(e,t,o,n)=>{const s={getPane:t=>hA.getPart(t,e,"pane"),getOnShow:t=>e.viewConfig.onShow,getOnHide:t=>e.viewConfig.onHide};return{uid:e.uid,dom:e.dom,components:t,apis:s}},apis:{getPane:(e,t)=>e.getPane(t),getOnShow:(e,t)=>e.getOnShow(t),getOnHide:(e,t)=>e.getOnHide(t)}});const TD=(e,t,o)=>pe(t,((t,n)=>{const s=Xn(Yn("view",wD,t));return e.slot(n,_D.sketch({dom:{tag:"div",classes:["tox-view"]},viewConfig:s,components:[...s.buttons.length>0?[_D.parts.header({buttons:s.buttons,providers:o})]:[],_D.parts.pane({})]}))})),ED=(e,t)=>kM.sketch((o=>({dom:{tag:"div",classes:["tox-view-wrap__slot-container"]},components:TD(o,e,t),slotBehaviours:ux([Jr((e=>kM.hideAllSlots(e)))])}))),AD=e=>G(kM.getSlotNames(e),(t=>kM.isShowing(e,t))),MD=(e,t,o)=>{kM.getSlot(e,t).each((e=>{_D.getPane(e).each((t=>{var n;o(e)((n=t.element.dom,{getContainer:x(n)}))}))}))};var DD=xm({factory:(e,t)=>{const o={setViews:(e,o)=>{eh.set(e,[ED(o,t.backstage.shared.providers)])},whichView:e=>Om.getCurrent(e).bind(AD),toggleView:(e,t,o,n)=>Om.getCurrent(e).exists((s=>{const r=AD(s),a=r.exists((e=>n===e)),i=kM.getSlot(s,n).isSome();return i&&(kM.hideAllSlots(s),a?((e=>{const t=e.element;Bt(t,"display","none"),Ct(t,"aria-hidden","true")})(e),t()):(o(),(e=>{const t=e.element;Ht(t,"display"),At(t,"aria-hidden")})(e),kM.showSlot(s,n),((e,t)=>{MD(e,t,_D.getOnShow)})(s,n)),r.each((e=>((e,t)=>MD(e,t,_D.getOnHide))(s,e)))),i}))};return{uid:e.uid,dom:{tag:"div",classes:["tox-view-wrap"],attributes:{"aria-hidden":"true"},styles:{display:"none"}},components:[],behaviours:Tl([eh.config({}),Om.config({find:e=>{const t=eh.contents(e);return oe(t)}})]),apis:o}},name:"silver.ViewWrapper",configFields:[ns("backstage")],apis:{setViews:(e,t,o)=>e.setViews(t,o),toggleView:(e,t,o,n,s)=>e.toggleView(t,o,n,s),whichView:(e,t)=>e.whichView(t)}});const BD=fA.optional({factory:bM,name:"menubar",schema:[ns("backstage")]}),ID=fA.optional({factory:{sketch:e=>xA.sketch({uid:e.uid,dom:e.dom,listBehaviours:Tl([Gp.config({mode:"acyclic",selector:".tox-toolbar"})]),makeItem:()=>fD({type:e.type,uid:ca("multiple-toolbar-item"),cyclicKeying:!1,initGroups:[],providers:e.providers,onEscape:()=>(e.onEscape(),A.some(!0))}),setupItem:(e,t,o,n)=>{kA.setGroups(t,o)},shell:!0})},name:"multiple-toolbar",schema:[ns("dom"),ns("onEscape")]}),FD=fA.optional({factory:{sketch:e=>{const t=(e=>e.type===rb.sliding?hD:e.type===rb.floating?pD:fD)(e);return t({type:e.type,uid:e.uid,onEscape:()=>(e.onEscape(),A.some(!0)),onToggled:(t,o)=>e.onToolbarToggled(o),cyclicKeying:!1,initGroups:[],getSink:e.getSink,providers:e.providers,moreDrawerData:{lazyToolbar:e.lazyToolbar,lazyMoreButton:e.lazyMoreButton,lazyHeader:e.lazyHeader},attributes:e.attributes})}},name:"toolbar",schema:[ns("dom"),ns("onEscape"),ns("getSink")]}),RD=fA.optional({factory:{sketch:e=>{const t=e.editor,o=e.sticky?dM:_A;return{uid:e.uid,dom:e.dom,components:e.components,behaviours:Tl(o(t,e.sharedBackstage))}}},name:"header",schema:[ns("dom")]}),ND=fA.optional({factory:{sketch:e=>({uid:e.uid,dom:e.dom,components:[{dom:{tag:"a",attributes:{href:"https://www.tiny.cloud/tinymce-self-hosted-premium-features/?utm_campaign=self_hosted_upgrade_promo&utm_source=tiny&utm_medium=referral",rel:"noopener",target:"_blank","aria-hidden":"true"},classes:["tox-promotion-link"],innerHtml:"\u26a1\ufe0fUpgrade"}}]})},name:"promotion",schema:[ns("dom")]}),VD=fA.optional({name:"socket",schema:[ns("dom")]}),zD=fA.optional({factory:{sketch:e=>({uid:e.uid,dom:{tag:"div",classes:["tox-sidebar"],attributes:{role:"presentation"}},components:[{dom:{tag:"div",classes:["tox-sidebar__slider"]},components:[],behaviours:Tl([pk.config({}),ah.config({}),lT.config({dimension:{property:"width"},closedClass:"tox-sidebar--sliding-closed",openClass:"tox-sidebar--sliding-open",shrinkingClass:"tox-sidebar--sliding-shrinking",growingClass:"tox-sidebar--sliding-growing",onShrunk:e=>{Om.getCurrent(e).each(kM.hideAllSlots),Fr(e,DM)},onGrown:e=>{Fr(e,DM)},onStartGrow:e=>{Rr(e,MM,{width:Vt(e.element,"width").getOr("")})},onStartShrink:e=>{Rr(e,MM,{width:Zt(e.element)+"px"})}}),eh.config({}),Om.config({find:e=>{const t=eh.contents(e);return oe(t)}})])}],behaviours:Tl([PO(0),th("sidebar-sliding-events",[Wr(MM,((e,t)=>{Bt(e.element,"width",t.event.width)})),Wr(DM,((e,t)=>{Ht(e.element,"width")}))])])})},name:"sidebar",schema:[ns("dom")]}),LD=fA.optional({factory:{sketch:e=>({uid:e.uid,dom:{tag:"div",attributes:{"aria-hidden":"true"},classes:["tox-throbber"],styles:{display:"none"}},behaviours:Tl([eh.config({}),FM.config({focus:!1}),Om.config({find:e=>oe(e.components())})]),components:[]})},name:"throbber",schema:[ns("dom")]}),HD=fA.optional({factory:DD,name:"viewWrapper",schema:[ns("backstage")]}),PD=fA.optional({factory:{sketch:e=>({uid:e.uid,dom:{tag:"div",classes:["tox-editor-container"]},components:e.components})},name:"editorContainer",schema:[]});var UD=wm({name:"OuterContainer",factory:(e,t,o)=>{let n=!1;const s={getSocket:t=>hA.getPart(t,e,"socket"),setSidebar:(t,o,n)=>{hA.getPart(t,e,"sidebar").each((e=>((e,t,o)=>{Om.getCurrent(e).each((n=>{eh.set(n,[TM(t)]);const s=null==o?void 0:o.toLowerCase();r(s)&&ve(t,s)&&Om.getCurrent(n).each((t=>{kM.showSlot(t,s),lT.immediateGrow(n),Ht(n.element,"width"),EM(e.element,"region")}))}))})(e,o,n)))},toggleSidebar:(t,o)=>{hA.getPart(t,e,"sidebar").each((e=>((e,t)=>{Om.getCurrent(e).each((o=>{Om.getCurrent(o).each((n=>{lT.hasGrown(o)?kM.isShowing(n,t)?(lT.shrink(o),EM(e.element,"presentation")):(kM.hideAllSlots(n),kM.showSlot(n,t),EM(e.element,"region")):(kM.hideAllSlots(n),kM.showSlot(n,t),lT.grow(o),EM(e.element,"region"))}))}))})(e,o)))},whichSidebar:t=>hA.getPart(t,e,"sidebar").bind(AM).getOrNull(),getHeader:t=>hA.getPart(t,e,"header"),getToolbar:t=>hA.getPart(t,e,"toolbar"),setToolbar:(t,o)=>{hA.getPart(t,e,"toolbar").each((e=>{const t=L(o,uD);e.getApis().setGroups(e,t)}))},setToolbars:(t,o)=>{hA.getPart(t,e,"multiple-toolbar").each((e=>{const t=L(o,(e=>L(e,uD)));xA.setItems(e,t)}))},refreshToolbar:t=>{hA.getPart(t,e,"toolbar").each((e=>e.getApis().refresh(e)))},toggleToolbarDrawer:t=>{hA.getPart(t,e,"toolbar").each((e=>{ke(e.getApis().toggle,(t=>t(e)))}))},toggleToolbarDrawerWithoutFocusing:t=>{hA.getPart(t,e,"toolbar").each((e=>{ke(e.getApis().toggleWithoutFocusing,(t=>t(e)))}))},isToolbarDrawerToggled:t=>hA.getPart(t,e,"toolbar").bind((e=>A.from(e.getApis().isOpen).map((t=>t(e))))).getOr(!1),getThrobber:t=>hA.getPart(t,e,"throbber"),focusToolbar:t=>{hA.getPart(t,e,"toolbar").orThunk((()=>hA.getPart(t,e,"multiple-toolbar"))).each((e=>{Gp.focusIn(e)}))},setMenubar:(t,o)=>{hA.getPart(t,e,"menubar").each((e=>{bM.setMenus(e,o)}))},focusMenubar:t=>{hA.getPart(t,e,"menubar").each((e=>{bM.focus(e)}))},setViews:(t,o)=>{hA.getPart(t,e,"viewWrapper").each((e=>{DD.setViews(e,o)}))},toggleView:(t,o)=>hA.getPart(t,e,"viewWrapper").exists((e=>DD.toggleView(e,(()=>s.showMainView(t)),(()=>s.hideMainView(t)),o))),whichView:t=>hA.getPart(t,e,"viewWrapper").bind(DD.whichView).getOrNull(),hideMainView:t=>{n=s.isToolbarDrawerToggled(t),n&&s.toggleToolbarDrawer(t),hA.getPart(t,e,"editorContainer").each((e=>{const t=e.element;Bt(t,"display","none"),Ct(t,"aria-hidden","true")}))},showMainView:t=>{n&&s.toggleToolbarDrawer(t),hA.getPart(t,e,"editorContainer").each((e=>{const t=e.element;Ht(t,"display"),At(t,"aria-hidden")}))}};return{uid:e.uid,dom:e.dom,components:t,apis:s,behaviours:e.behaviours}},configFields:[ns("dom"),ns("behaviours")],partFields:[RD,BD,FD,ID,VD,zD,ND,LD,HD,PD],apis:{getSocket:(e,t)=>e.getSocket(t),setSidebar:(e,t,o,n)=>{e.setSidebar(t,o,n)},toggleSidebar:(e,t,o)=>{e.toggleSidebar(t,o)},whichSidebar:(e,t)=>e.whichSidebar(t),getHeader:(e,t)=>e.getHeader(t),getToolbar:(e,t)=>e.getToolbar(t),setToolbar:(e,t,o)=>{e.setToolbar(t,o)},setToolbars:(e,t,o)=>{e.setToolbars(t,o)},refreshToolbar:(e,t)=>e.refreshToolbar(t),toggleToolbarDrawer:(e,t)=>{e.toggleToolbarDrawer(t)},toggleToolbarDrawerWithoutFocusing:(e,t)=>{e.toggleToolbarDrawerWithoutFocusing(t)},isToolbarDrawerToggled:(e,t)=>e.isToolbarDrawerToggled(t),getThrobber:(e,t)=>e.getThrobber(t),setMenubar:(e,t,o)=>{e.setMenubar(t,o)},focusMenubar:(e,t)=>{e.focusMenubar(t)},focusToolbar:(e,t)=>{e.focusToolbar(t)},setViews:(e,t,o)=>{e.setViews(t,o)},toggleView:(e,t,o)=>e.toggleView(t,o),whichView:(e,t)=>e.whichView(t)}});const WD={file:{title:"File",items:"newdocument restoredraft | preview | export print | deleteallconversations"},edit:{title:"Edit",items:"undo redo | cut copy paste pastetext | selectall | searchreplace"},view:{title:"View",items:"code | visualaid visualchars visualblocks | spellchecker | preview fullscreen | showcomments"},insert:{title:"Insert",items:"image link media addcomment pageembed template inserttemplate codesample inserttable accordion | charmap emoticons hr | pagebreak nonbreaking anchor tableofcontents footnotes | mergetags | insertdatetime"},format:{title:"Format",items:"bold italic underline strikethrough superscript subscript codeformat | styles blocks fontfamily fontsize align lineheight | forecolor backcolor | language | removeformat"},tools:{title:"Tools",items:"aidialog aishortcuts | spellchecker spellcheckerlanguage | autocorrect capitalization | a11ycheck code typography wordcount addtemplate"},table:{title:"Table",items:"inserttable | cell row column | advtablesort | tableprops deletetable"},help:{title:"Help",items:"help"}},jD=e=>e.split(" "),GD=(e,t)=>{const o={...WD,...t.menus},n=ae(t.menus).length>0,s=void 0===t.menubar||!0===t.menubar?jD("file edit view insert format tools table help"):jD(!1===t.menubar?"":t.menubar),a=U(s,(e=>{const o=ve(WD,e);return n?o||be(t.menus,e).exists((e=>ve(e,"items"))):o})),i=L(a,(n=>{const s=o[n];return((e,t,o)=>{const n=Cb(o).split(/[ ,]/);return{text:e.title,getItems:()=>Y(e.items,(e=>{const o=e.toLowerCase();return 0===o.trim().length||N(n,(e=>e===o))?[]:"separator"===o||"|"===o?[{type:"separator"}]:t.menuItems[o]?[t.menuItems[o]]:[]}))}})({title:s.title,items:jD(s.items)},t,e)}));return U(i,(e=>e.getItems().length>0&&N(e.getItems(),(e=>r(e)||"separator"!==e.type))))},$D=(e,t,o)=>(e.on("remove",(()=>o.unload(t))),o.load(t)),qD=(e,t,o,n)=>(e.on("remove",(()=>n.unloadRawCss(t))),n.loadRawCss(t,o)),YD=async(e,t)=>{const o="ui/"+ev(e).getOr("default")+"/skin.css",n=tinymce.Resource.get(o);return r(n)?Promise.resolve(qD(e,o,n,e.ui.styleSheetLoader)):$D(e,t+"/skin.min.css",e.ui.styleSheetLoader)},XD=async(e,t)=>{var o;if(o=ze(e.getElement()),vt(o).isSome()){const o="ui/"+ev(e).getOr("default")+"/skin.shadowdom.css",n=tinymce.Resource.get(o);return r(n)?(qD(e,o,n,ib.DOM.styleSheetLoader),Promise.resolve()):$D(e,t+"/skin.shadowdom.min.css",ib.DOM.styleSheetLoader)}},KD=(e,t)=>(async(e,t)=>{ev(t).fold((()=>{const o=Qb(t);o&&t.contentCSS.push(o+(e?"/content.inline":"/content")+".min.css")}),(o=>{const n="ui/"+o+(e?"/content.inline":"/content")+".css",s=tinymce.Resource.get(n);if(r(s))qD(t,n,s,t.ui.styleSheetLoader);else{const o=Qb(t);o&&t.contentCSS.push(o+(e?"/content.inline":"/content")+".min.css")}}));const o=Qb(t);if(!Jb(t)&&r(o))return Promise.all([YD(t,o),XD(t,o)]).then()})(e,t).then((e=>{const t=()=>{e._skinLoaded=!0,(e=>{e.dispatch("SkinLoaded")})(e)};return()=>{e.initialized?t():e.on("init",t)}})(t),((e,t)=>()=>((e,t)=>{e.dispatch("SkinLoadError",t)})(e,{message:"Skin could not be loaded"}))(t)),JD=k(KD,!1),ZD=k(KD,!0),QD=(e,t,o)=>e.translate([t,e.translate(o)]),eB=(e,t)=>{const o=(o,s,r,a)=>{const i=e.shared.providers.translate(o.title);if("separator"===o.type)return A.some({type:"separator",text:i});if("submenu"===o.type){const e=Y(o.getStyleItems(),(e=>n(e,s,a)));return 0===s&&e.length<=0?A.none():A.some({type:"nestedmenuitem",text:i,enabled:e.length>0,getSubmenuItems:()=>Y(o.getStyleItems(),(e=>n(e,s,a)))})}return A.some({type:"togglemenuitem",text:i,icon:o.icon,active:o.isSelected(a),enabled:!r,onAction:t.onAction(o),...o.getStylePreview().fold((()=>({})),(e=>({meta:{style:e}})))})},n=(e,n,s)=>{const r="formatter"===e.type&&t.isInvalid(e);return 0===n?r?[]:o(e,n,!1,s).toArray():o(e,n,r,s).toArray()},s=e=>{const o=t.getCurrentValue(),s=t.shouldHide?0:1;return Y(e,(e=>n(e,s,o)))};return{validateItems:s,getFetch:(e,t)=>(o,n)=>{const r=t(),a=s(r);n(I_(a,bv.CLOSE_ON_EXECUTE,e,{isHorizontalMenu:!1,search:A.none()}))}}},tB=(e,t,o)=>{const n=o.dataset,s="basic"===n.type?()=>L(n.data,(e=>UE(e,o.isSelectedFor,o.getPreviewFor))):n.getData;return{items:eB(t,o),getStyleItems:s}},oB=(e,t,o,n,s)=>{const{items:r,getStyleItems:a}=tB(0,t,o);return A_({text:o.icon.isSome()?A.none():o.text,icon:o.icon,tooltip:A.from(o.tooltip),role:A.none(),fetch:r.getFetch(t,a),onSetup:t=>{const r=o=>t.setTooltip(QD(e,n,o.value));return e.on(s,r),yw(Sw(e,"NodeChange",(t=>{const n=t.getComponent();o.updateText(n),Lm.set(t.getComponent(),!e.selection.isEditable())}))(t),(()=>e.off(s,r)))},getApi:e=>({getComponent:x(e),setTooltip:o=>{const n=t.shared.providers.translate(o);Ot(e.element,{"aria-label":n,title:n})}}),columns:1,presets:"normal",classes:o.icon.isSome()?[]:["bespoke"],dropdownBehaviours:[]},"tox-tbtn",t.shared)};var nB;!function(e){e[e.SemiColon=0]="SemiColon",e[e.Space=1]="Space"}(nB||(nB={}));const sB=(e,t,o)=>{const n=(s=((e,t)=>t===nB.SemiColon?e.replace(/;$/,"").split(";"):e.split(" "))(e.options.get(t),o),L(s,(e=>{let t=e,o=e;const n=e.split("=");return n.length>1&&(t=n[0],o=n[1]),{title:t,format:o}})));var s;return{type:"basic",data:n}},rB="Alignment {0}",aB="left",iB=[{title:"Left",icon:"align-left",format:"alignleft",command:"JustifyLeft"},{title:"Center",icon:"align-center",format:"aligncenter",command:"JustifyCenter"},{title:"Right",icon:"align-right",format:"alignright",command:"JustifyRight"},{title:"Justify",icon:"align-justify",format:"alignjustify",command:"JustifyFull"}],lB=e=>{const t={type:"basic",data:iB};return{tooltip:QD(e,rB,aB),text:A.none(),icon:A.some("align-left"),isSelectedFor:t=>()=>e.formatter.match(t),getCurrentValue:A.none,getPreviewFor:e=>A.none,onAction:t=>()=>G(iB,(e=>e.format===t.format)).each((t=>e.execCommand(t.command))),updateText:t=>{const o=G(iB,(t=>e.formatter.match(t.format))).fold(x(aB),(e=>e.title.toLowerCase()));Rr(t,E_,{icon:`align-${o}`}),((e,t)=>{e.dispatch("AlignTextUpdate",t)})(e,{value:o})},dataset:t,shouldHide:!1,isInvalid:t=>!e.formatter.canApply(t.format)}},cB=(e,t)=>{const o=t(),n=L(o,(e=>e.format));return A.from(e.formatter.closest(n)).bind((e=>G(o,(t=>t.format===e)))).orThunk((()=>Ce(e.formatter.match("p"),{title:"Paragraph",format:"p"})))},dB="Block {0}",uB="Paragraph",mB=e=>{const t=sB(e,"block_formats",nB.SemiColon);return{tooltip:QD(e,dB,uB),text:A.some(uB),icon:A.none(),isSelectedFor:t=>()=>e.formatter.match(t),getCurrentValue:A.none,getPreviewFor:t=>()=>{const o=e.formatter.get(t);return o?A.some({tag:o.length>0&&(o[0].inline||o[0].block)||"div",styles:e.dom.parseStyle(e.formatter.getCssText(t))}):A.none()},onAction:kw(e),updateText:o=>{const n=cB(e,(()=>t.data)).fold(x(uB),(e=>e.title));Rr(o,T_,{text:n}),((e,t)=>{e.dispatch("BlocksTextUpdate",t)})(e,{value:n})},dataset:t,shouldHide:!1,isInvalid:t=>!e.formatter.canApply(t.format)}},gB="Font {0}",pB="System Font",hB=["-apple-system","Segoe UI","Roboto","Helvetica Neue","sans-serif"],fB=e=>{const t=e.split(/\s*,\s*/);return L(t,(e=>e.replace(/^['"]+|['"]+$/g,"")))},bB=(e,t)=>t.length>0&&X(t,(t=>e.indexOf(t.toLowerCase())>-1)),vB=e=>{const t=()=>{const t=e=>e?fB(e)[0]:"",n=e.queryCommandValue("FontName"),s=o.data,r=n?n.toLowerCase():"",a=Kb(e),i=G(s,(e=>{const o=e.format;return o.toLowerCase()===r||t(o).toLowerCase()===t(r).toLowerCase()})).orThunk((()=>Ce(((e,t)=>{if(0===e.indexOf("-apple-system")||t.length>0){const o=fB(e.toLowerCase());return bB(o,hB)||bB(o,t)}return!1})(r,a),{title:pB,format:r})));return{matchOpt:i,font:n}},o=sB(e,"font_family_formats",nB.SemiColon);return{tooltip:QD(e,gB,pB),text:A.some(pB),icon:A.none(),isSelectedFor:e=>t=>t.exists((t=>t.format===e)),getCurrentValue:()=>{const{matchOpt:e}=t();return e},getPreviewFor:e=>()=>A.some({tag:"div",styles:-1===e.indexOf("dings")?{"font-family":e}:{}}),onAction:t=>()=>{e.undoManager.transact((()=>{e.focus(),e.execCommand("FontName",!1,t.format)}))},updateText:o=>{const{matchOpt:n,font:s}=t(),r=n.fold(x(s),(e=>e.title));Rr(o,T_,{text:r}),((e,t)=>{e.dispatch("FontFamilyTextUpdate",t)})(e,{value:r})},dataset:o,shouldHide:!1,isInvalid:T}},yB={unsupportedLength:["em","ex","cap","ch","ic","rem","lh","rlh","vw","vh","vi","vb","vmin","vmax","cm","mm","Q","in","pc","pt","px"],fixed:["px","pt"],relative:["%"],empty:[""]},xB=(()=>{const e="[0-9]+",t="[eE][+-]?"+e,o=e=>`(?:${e})?`,n=["Infinity",e+"\\."+o(e)+o(t),"\\."+e+o(t),e+o(t)].join("|");return new RegExp(`^([+-]?(?:${n}))(.*)$`)})(),wB=(e,t)=>A.from(xB.exec(e)).bind((e=>{const o=Number(e[1]),n=e[2];return((e,t)=>N(t,(t=>N(yB[t],(t=>e===t)))))(n,t)?A.some({value:o,unit:n}):A.none()})),SB={tab:x(9),escape:x(27),enter:x(13),backspace:x(8),delete:x(46),left:x(37),up:x(38),right:x(39),down:x(40),space:x(32),home:x(36),end:x(35),pageUp:x(33),pageDown:x(34)},kB="Font size {0}",CB="12pt",OB={"8pt":"1","10pt":"2","12pt":"3","14pt":"4","18pt":"5","24pt":"6","36pt":"7"},_B={"xx-small":"7pt","x-small":"8pt",small:"10pt",medium:"12pt",large:"14pt","x-large":"18pt","xx-large":"24pt"},TB=(e,t)=>/[0-9.]+px$/.test(e)?((e,t)=>{const o=Math.pow(10,t);return Math.round(e*o)/o})(72*parseInt(e,10)/96,t||0)+"pt":be(_B,e).getOr(e),EB=e=>be(OB,e).getOr(""),AB=e=>{const t=()=>{let t=A.none();const o=n.data,s=e.queryCommandValue("FontSize");if(s)for(let e=3;t.isNone()&&e>=0;e--){const n=TB(s,e),r=EB(n);t=G(o,(e=>e.format===s||e.format===n||e.format===r))}return{matchOpt:t,size:s}},o=x(A.none),n=sB(e,"font_size_formats",nB.Space);return{tooltip:QD(e,kB,CB),text:A.some(CB),icon:A.none(),isSelectedFor:e=>t=>t.exists((t=>t.format===e)),getPreviewFor:o,getCurrentValue:()=>{const{matchOpt:e}=t();return e},onAction:t=>()=>{e.undoManager.transact((()=>{e.focus(),e.execCommand("FontSize",!1,t.format)}))},updateText:o=>{const{matchOpt:n,size:s}=t(),r=n.fold(x(s),(e=>e.title));Rr(o,T_,{text:r}),((e,t)=>{e.dispatch("FontSizeTextUpdate",t)})(e,{value:r})},dataset:n,shouldHide:!1,isInvalid:T}},MB="Format {0}",DB=(e,t)=>{const o="Paragraph";return{tooltip:QD(e,MB,o),text:A.some(o),icon:A.none(),isSelectedFor:t=>()=>e.formatter.match(t),getCurrentValue:A.none,getPreviewFor:t=>()=>{const o=e.formatter.get(t);return void 0!==o?A.some({tag:o.length>0&&(o[0].inline||o[0].block)||"div",styles:e.dom.parseStyle(e.formatter.getCssText(t))}):A.none()},onAction:kw(e),updateText:t=>{const n=e=>VE(e)?Y(e.items,n):zE(e)?[{title:e.title,format:e.format}]:[],s=Y(PE(e),n),r=cB(e,x(s)).fold(x(o),(e=>e.title));Rr(t,T_,{text:r}),((e,t)=>{e.dispatch("StylesTextUpdate",t)})(e,{value:r})},shouldHide:Sb(e),isInvalid:t=>!e.formatter.canApply(t.format),dataset:t}},BB=x([ns("toggleClass"),ns("fetch"),Vi("onExecute"),xs("getHotspot",A.some),xs("getAnchorOverrides",x({})),Oc(),Vi("onItemExecute"),ms("lazySink"),ns("dom"),Ri("onOpen"),yu("splitDropdownBehaviours",[fS,Gp,ah]),xs("matchWidth",!1),xs("useMinWidth",!1),xs("eventOrder",{}),ms("role")].concat(IS())),IB=$u({factory:qh,schema:[ns("dom")],name:"arrow",defaults:()=>({buttonBehaviours:Tl([ah.revoke()])}),overrides:e=>({dom:{tag:"span",attributes:{role:"presentation"}},action:t=>{t.getSystem().getByUid(e.uid).each(Nr)},buttonBehaviours:Tl([ph.config({toggleOnExecute:!1,toggleClass:e.toggleClass})])})}),FB=$u({factory:qh,schema:[ns("dom")],name:"button",defaults:()=>({buttonBehaviours:Tl([ah.revoke()])}),overrides:e=>({dom:{tag:"span",attributes:{role:"presentation"}},action:t=>{t.getSystem().getByUid(e.uid).each((o=>{e.onExecute(o,t)}))}})}),RB=x([IB,FB,Yu({factory:{sketch:e=>({uid:e.uid,dom:{tag:"span",styles:{display:"none"},attributes:{"aria-hidden":"true"},innerHtml:e.text}})},schema:[ns("text")],name:"aria-descriptor"}),qu({schema:[Bi()],name:"menu",defaults:e=>({onExecute:(t,o)=>{t.getSystem().getByUid(e.uid).each((n=>{e.onItemExecute(n,t,o)}))}})}),CS()]),NB=wm({name:"SplitDropdown",configFields:BB(),partFields:RB(),factory:(e,t,o,n)=>{const s=e=>{Om.getCurrent(e).each((e=>{Xm.highlightFirst(e),Gp.focusIn(e)}))},r=t=>{ES(e,w,t,n,s,Uh.HighlightMenuAndItem).get(b)},a=t=>{const o=im(t,e,"button");return Nr(o),A.some(!0)},i={...Hr([Jr(((t,o)=>{am(t,e,"aria-descriptor").each((e=>{const o=ca("aria");Ct(e.element,"id",o),Ct(t.element,"aria-describedby",o)}))}))]),...fh(A.some(r))},l={repositionMenus:e=>{ph.isOn(e)&&BS(e)}};return{uid:e.uid,dom:e.dom,components:t,apis:l,eventOrder:{...e.eventOrder,[mr()]:["disabling","toggling","alloy.base.behaviour"]},events:i,behaviours:wu(e.splitDropdownBehaviours,[fS.config({others:{sandbox:t=>{const o=im(t,e,"arrow");return DS(e,t,{onOpen:()=>{ph.on(o),ph.on(t)},onClose:()=>{ph.off(o),ph.off(t)}})}}}),Gp.config({mode:"special",onSpace:a,onEnter:a,onDown:e=>(r(e),A.some(!0))}),ah.config({}),ph.config({toggleOnExecute:!1,aria:{mode:"expanded"}})]),domModification:{attributes:{role:e.role.getOr("button"),"aria-haspopup":!0}}}},apis:{repositionMenus:(e,t)=>e.repositionMenus(t)}}),VB=e=>({isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t),setText:t=>Rr(e,T_,{text:t}),setIcon:t=>Rr(e,E_,{icon:t})}),zB=e=>({setActive:t=>{ph.set(e,t)},isActive:()=>ph.isOn(e),isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t),setText:t=>Rr(e,T_,{text:t}),setIcon:t=>Rr(e,E_,{icon:t})}),LB=(e,t)=>e.map((e=>({"aria-label":t.translate(e),title:t.translate(e)}))).getOr({}),HB=ca("focus-button"),PB=(e,t,o,n,s)=>{const r=t.map((e=>Xh(__(e,"tox-tbtn",s)))),a=e.map((e=>Xh(O_(e,s.icons))));return{dom:{tag:"button",classes:["tox-tbtn"].concat(t.isSome()?["tox-tbtn--select"]:[]),attributes:LB(o,s)},components:Fx([a.map((e=>e.asSpec())),r.map((e=>e.asSpec()))]),eventOrder:{[js()]:["focusing","alloy.base.behaviour",x_],[kr()]:[x_,"toolbar-group-button-events"]},buttonBehaviours:Tl([Ex(s.isDisabled),Ox(),th(x_,[Jr(((e,t)=>S_(e))),Wr(T_,((e,t)=>{r.bind((t=>t.getOpt(e))).each((e=>{eh.set(e,[ri(s.translate(t.event.text))])}))})),Wr(E_,((e,t)=>{a.bind((t=>t.getOpt(e))).each((e=>{eh.set(e,[O_(t.event.icon,s.icons)])}))})),Wr(js(),((e,t)=>{t.event.prevent(),Fr(e,HB)}))])].concat(n.getOr([])))}},UB=(e,t,o)=>{var n;const s=As(b),r=PB(e.icon,e.text,e.tooltip,A.none(),o);return qh.sketch({dom:r.dom,components:r.components,eventOrder:w_,buttonBehaviours:{...Tl([th("toolbar-button-events",[(a={onAction:e.onAction,getApi:t.getApi},ea(((e,t)=>{Ax(a,e)((t=>{Rr(e,y_,{buttonApi:t}),a.onAction(t)}))}))),Mx(t,s),Dx(t,s)]),Ex((()=>!e.enabled||o.isDisabled())),Ox()].concat(t.toolbarButtonBehaviours)),[x_]:null===(n=r.buttonBehaviours)||void 0===n?void 0:n[x_]}});var a},WB=(e,t,o)=>UB(e,{toolbarButtonBehaviours:o.length>0?[th("toolbarButtonWith",o)]:[],getApi:VB,onSetup:e.onSetup},t),jB=(e,t,o)=>UB(e,{toolbarButtonBehaviours:[eh.config({}),ph.config({toggleClass:"tox-tbtn--enabled",aria:{mode:"pressed"},toggleOnExecute:!1})].concat(o.length>0?[th("toolbarToggleButtonWith",o)]:[]),getApi:zB,onSetup:e.onSetup},t),GB=(e,t,o)=>n=>wS((e=>t.fetch(e))).map((s=>A.from(jS(bn(nS(ca("menu-value"),s,(o=>{t.onItemAction(e(n),o)}),t.columns,t.presets,bv.CLOSE_ON_EXECUTE,t.select.getOr(T),o),{movement:rS(t.columns,t.presets),menuBehaviours:ux("auto"!==t.columns?[]:[Jr(((e,o)=>{dx(e,4,Av(t.presets)).each((({numRows:t,numColumns:o})=>{Gp.setGridSize(e,t,o)}))}))])}))))),$B=[{name:"history",items:["undo","redo"]},{name:"ai",items:["aidialog","aishortcuts"]},{name:"styles",items:["styles"]},{name:"formatting",items:["bold","italic"]},{name:"alignment",items:["alignleft","aligncenter","alignright","alignjustify"]},{name:"indentation",items:["outdent","indent"]},{name:"permanent pen",items:["permanentpen"]},{name:"comments",items:["addcomment"]}],qB=(e,t)=>(o,n,s)=>{const r=e(o).mapError((e=>Jn(e))).getOrDie();return t(r,n,s)},YB={button:qB(Ny,((e,t)=>{return o=e,n=t.shared.providers,WB(o,n,[]);var o,n})),togglebutton:qB(Ly,((e,t)=>{return o=e,n=t.shared.providers,jB(o,n,[]);var o,n})),menubutton:qB(hM,((e,t)=>dT(e,"tox-tbtn",t,A.none(),!1))),splitbutton:qB((e=>Yn("SplitButton",fM,e)),((e,t)=>((e,t)=>{const o=e=>({isEnabled:()=>!Lm.isDisabled(e),setEnabled:t=>Lm.set(e,!t),setIconFill:(t,o)=>{vi(e.element,`svg path[class="${t}"], rect[class="${t}"]`).each((e=>{Ct(e,"fill",o)}))},setActive:t=>{Ct(e.element,"aria-pressed",t),vi(e.element,"span").each((o=>{e.getSystem().getByDom(o).each((e=>ph.set(e,t)))}))},isActive:()=>vi(e.element,"span").exists((t=>e.getSystem().getByDom(t).exists(ph.isOn))),setText:t=>vi(e.element,"span").each((o=>e.getSystem().getByDom(o).each((e=>Rr(e,T_,{text:t}))))),setIcon:t=>vi(e.element,"span").each((o=>e.getSystem().getByDom(o).each((e=>Rr(e,E_,{icon:t}))))),setTooltip:o=>{const n=t.providers.translate(o);Ot(e.element,{"aria-label":n,title:n})}}),n=As(b),s={getApi:o,onSetup:e.onSetup};return NB.sketch({dom:{tag:"div",classes:["tox-split-button"],attributes:{"aria-pressed":!1,...LB(e.tooltip,t.providers)}},onExecute:t=>{const n=o(t);n.isEnabled()&&e.onAction(n)},onItemExecute:(e,t,o)=>{},splitDropdownBehaviours:Tl([Tx(t.providers.isDisabled),Ox(),th("split-dropdown-events",[Jr(((e,t)=>S_(e))),Wr(HB,ah.focus),Mx(s,n),Dx(s,n)]),Hk.config({})]),eventOrder:{[kr()]:["alloy.base.behaviour","split-dropdown-events"]},toggleClass:"tox-tbtn--enabled",lazySink:t.getSink,fetch:GB(o,e,t.providers),parts:{menu:Rv(0,e.columns,e.presets)},components:[NB.parts.button(PB(e.icon,e.text,A.none(),A.some([ph.config({toggleClass:"tox-tbtn--enabled",toggleOnExecute:!1})]),t.providers)),NB.parts.arrow({dom:{tag:"button",classes:["tox-tbtn","tox-split-button__chevron"],innerHtml:Qf("chevron-down",t.providers.icons)},buttonBehaviours:Tl([Tx(t.providers.isDisabled),Ox(),eb()])}),NB.parts["aria-descriptor"]({text:t.providers.translate("To open the popup, press Shift+Enter")})]})})(e,t.shared))),grouptoolbarbutton:qB((e=>Yn("GroupToolbarButton",mM,e)),((e,t,o)=>{const n=o.ui.registry.getAll().buttons,s={[kc]:t.shared.header.isPositionedAtTop()?Sc.TopToBottom:Sc.BottomToTop};if(Ob(o)===rb.floating)return((e,t,o,n)=>{const s=t.shared,r=As(b),a={toolbarButtonBehaviours:[],getApi:VB,onSetup:e.onSetup},i=[th("toolbar-group-button-events",[Mx(a,r),Dx(a,r)])];return ZM.sketch({lazySink:s.getSink,fetch:()=>wS((t=>{t(L(o(e.items),uD))})),markers:{toggledClass:"tox-tbtn--enabled"},parts:{button:PB(e.icon,e.text,e.tooltip,A.some(i),s.providers),toolbar:{dom:{tag:"div",classes:["tox-toolbar__overflow"],attributes:n}}}})})(e,t,(e=>KB(o,{buttons:n,toolbar:e,allowToolbarGroups:!1},t,A.none())),s);throw new Error("Toolbar groups are only supported when using floating toolbar mode")}))},XB={styles:(e,t)=>{const o={type:"advanced",...t.styles};return oB(e,t,DB(e,o),MB,"StylesTextUpdate")},fontsize:(e,t)=>oB(e,t,AB(e),kB,"FontSizeTextUpdate"),fontsizeinput:(e,t)=>((e,t,o)=>{let n=A.none();const s=Sw(e,"NodeChange SwitchMode",(t=>{const s=t.getComponent();n=A.some(s),o.updateInputValue(s),Lm.set(s,!e.selection.isEditable())})),r=e=>({getComponent:x(e)}),a=As(b),i=ca("custom-number-input-events"),l=(e,t,s)=>{const r=n.map((e=>vu.getValue(e))).getOr(""),a=o.getNewValue(r,e),i=r.length-`${a}`.length,l=n.map((e=>e.element.dom.selectionStart-i)),c=n.map((e=>e.element.dom.selectionEnd-i));o.onAction(a,s),n.each((e=>{vu.setValue(e,a),t&&(l.each((t=>e.element.dom.selectionStart=t)),c.each((t=>e.element.dom.selectionEnd=t)))}))},c=(e,t)=>l(((e,t)=>e-t),e,t),d=(e,t)=>l(((e,t)=>e+t),e,t),u=e=>at(e.element).fold(A.none,(e=>(Rl(e),A.some(!0)))),m=e=>Vl(e.element)?(dt(e.element).each((e=>Rl(e))),A.some(!0)):A.none(),g=(o,n,s,a)=>{const i=As(b),l=t.shared.providers.translate(s),c=ca("altExecuting"),d=Sw(e,"NodeChange SwitchMode",(t=>{Lm.set(t.getComponent(),!e.selection.isEditable())})),u=e=>{Lm.isDisabled(e)||o(!0)};return qh.sketch({dom:{tag:"button",attributes:{title:l,"aria-label":l},classes:a.concat(n)},components:[C_(n,t.shared.providers.icons)],buttonBehaviours:Tl([Lm.config({}),th(c,[Mx({onSetup:d,getApi:r},i),Dx({getApi:r},i),Wr(Js(),((e,t)=>{t.event.raw.keyCode!==SB.space()&&t.event.raw.keyCode!==SB.enter()||Lm.isDisabled(e)||o(!1)})),Wr(tr(),u),Wr(Us(),u)])]),eventOrder:{[Js()]:[c,"keying"],[tr()]:[c,"alloy.base.behaviour"],[Us()]:[c,"alloy.base.behaviour"]}})},p=Xh(g((e=>c(!1,e)),"minus","Decrease font size",[])),h=Xh(g((e=>d(!1,e)),"plus","Increase font size",[])),f=Xh({dom:{tag:"div",classes:["tox-input-wrapper"]},components:[Hv.sketch({inputBehaviours:Tl([Lm.config({}),th(i,[Mx({onSetup:s,getApi:r},a),Dx({getApi:r},a)]),th("input-update-display-text",[Wr(T_,((e,t)=>{vu.setValue(e,t.event.text)})),Wr(Ks(),(e=>{o.onAction(vu.getValue(e))})),Wr(er(),(e=>{o.onAction(vu.getValue(e))}))]),Gp.config({mode:"special",onEnter:e=>(l(w,!0,!0),A.some(!0)),onEscape:u,onUp:e=>(d(!0,!1),A.some(!0)),onDown:e=>(c(!0,!1),A.some(!0)),onLeft:(e,t)=>(t.cut(),A.none()),onRight:(e,t)=>(t.cut(),A.none())})])})],behaviours:Tl([ah.config({}),Gp.config({mode:"special",onEnter:m,onSpace:m,onEscape:u}),th("input-wrapper-events",[Wr(Ys(),(e=>{H([p,h],(t=>{const o=ze(t.get(e).element.dom);Vl(o)&&Nl(o)}))}))])])});return{dom:{tag:"div",classes:["tox-number-input"]},components:[p.asSpec(),f.asSpec(),h.asSpec()],behaviours:Tl([ah.config({}),Gp.config({mode:"flow",focusInside:vg.OnEnterOrSpaceMode,cycles:!1,selector:"button, .tox-input-wrapper",onEscape:e=>Vl(e.element)?A.none():(Rl(e.element),A.some(!0))})])}})(e,t,(e=>{const t=()=>e.queryCommandValue("FontSize");return{updateInputValue:e=>Rr(e,T_,{text:t()}),onAction:(t,o)=>e.execCommand("FontSize",!1,t,{skip_focus:!o}),getNewValue:(o,n)=>{wB(o,["unsupportedLength","empty"]);const s=t(),r=wB(o,["unsupportedLength","empty"]).or(wB(s,["unsupportedLength","empty"])),a=r.map((e=>e.value)).getOr(16),i=Nb(e),l=r.map((e=>e.unit)).filter((e=>""!==e)).getOr(i),c=n(a,(e=>{var t;return null!==(t={em:{step:.1},cm:{step:.1},in:{step:.1},pc:{step:.1},ch:{step:.1},rem:{step:.1}}[e])&&void 0!==t?t:{step:1}})(l).step),d=`${(e=>e>=0)(c)?c:a}${l}`;return d!==s&&((e,t)=>{e.dispatch("FontSizeInputTextUpdate",t)})(e,{value:d}),d}}})(e)),fontfamily:(e,t)=>oB(e,t,vB(e),gB,"FontFamilyTextUpdate"),blocks:(e,t)=>oB(e,t,mB(e),dB,"BlocksTextUpdate"),align:(e,t)=>oB(e,t,lB(e),rB,"AlignTextUpdate")},KB=(e,t,o,n)=>{const s=(e=>{const t=e.toolbar,o=e.buttons;return!1===t?[]:void 0===t||!0===t?(e=>{const t=L($B,(t=>{const o=U(t.items,(t=>ve(e,t)||ve(XB,t)));return{name:t.name,items:o}}));return U(t,(e=>e.items.length>0))})(o):r(t)?(e=>{const t=e.split("|");return L(t,(e=>({items:e.trim().split(" ")})))})(t):(e=>f(e,(e=>ve(e,"name")&&ve(e,"items"))))(t)?t:(console.error("Toolbar type should be string, string[], boolean or ToolbarGroup[]"),[])})(t),a=L(s,(s=>{const r=Y(s.items,(s=>0===s.trim().length?[]:((e,t,o,n,s,r)=>be(t,o.toLowerCase()).orThunk((()=>r.bind((e=>re(e,(e=>be(t,e+o.toLowerCase()))))))).fold((()=>be(XB,o.toLowerCase()).map((t=>t(e,s)))),(t=>"grouptoolbarbutton"!==t.type||n?((e,t,o)=>be(YB,e.type).fold((()=>(console.error("skipping button defined by",e),A.none())),(n=>A.some(n(e,t,o)))))(t,s,e):(console.warn(`Ignoring the '${o}' toolbar button. Group toolbar buttons are only supported when using floating toolbar mode and cannot be nested.`),A.none()))))(e,t.buttons,s,t.allowToolbarGroups,o,n).toArray()));return{title:A.from(e.translate(s.name)),items:r}}));return U(a,(e=>e.items.length>0))},JB=(e,t,o,n)=>{const s=t.mainUi.outerContainer,a=o.toolbar,i=o.buttons;if(f(a,r)){const t=a.map((t=>{const s={toolbar:t,buttons:i,allowToolbarGroups:o.allowToolbarGroups};return KB(e,s,n,A.none())}));UD.setToolbars(s,t)}else UD.setToolbar(s,KB(e,o,n,A.none()))},ZB=Bo(),QB=ZB.os.isiOS()&&ZB.os.version.major<=12;var eI=Object.freeze({__proto__:null,render:(e,t,o,n,s)=>{const{mainUi:r,uiMotherships:a}=t,i=As(0),l=r.outerContainer;JD(e);const d=ze(s.targetNode),u=bt(ft(d));Ld(d,r.mothership),((e,t,o)=>{uv(e)&&Ld(o.mainUi.mothership.element,o.popupUi.mothership),zd(t,o.dialogUi.mothership)})(e,u,t),e.on("SkinLoaded",(()=>{UD.setSidebar(l,o.sidebar,qb(e)),JB(e,t,o,n),i.set(e.getWin().innerWidth),UD.setMenubar(l,GD(e,o)),UD.setViews(l,o.views),((e,t)=>{const{uiMotherships:o}=t,n=e.dom;let s=e.getWin();const r=e.getDoc().documentElement,a=As(qt(s.innerWidth,s.innerHeight)),i=As(qt(r.offsetWidth,r.offsetHeight)),l=()=>{const t=a.get();t.left===s.innerWidth&&t.top===s.innerHeight||(a.set(qt(s.innerWidth,s.innerHeight)),fw(e))},c=()=>{const t=e.getDoc().documentElement,o=i.get();o.left===t.offsetWidth&&o.top===t.offsetHeight||(i.set(qt(t.offsetWidth,t.offsetHeight)),fw(e))},d=t=>{((e,t)=>{e.dispatch("ScrollContent",t)})(e,t)};n.bind(s,"resize",l),n.bind(s,"scroll",d);const u=ac(ze(e.getBody()),"load",c);e.on("hide",(()=>{H(o,(e=>{Bt(e.element,"display","none")}))})),e.on("show",(()=>{H(o,(e=>{Ht(e.element,"display")}))})),e.on("NodeChange",c),e.on("remove",(()=>{u.unbind(),n.unbind(s,"resize",l),n.unbind(s,"scroll",d),s=null}))})(e,t)}));const m=UD.getSocket(l).getOrDie("Could not find expected socket element");if(QB){It(m.element,{overflow:"scroll","-webkit-overflow-scrolling":"touch"});const t=((e,t)=>{let o=null;return{cancel:()=>{c(o)||(clearTimeout(o),o=null)},throttle:(...t)=>{c(o)&&(o=setTimeout((()=>{o=null,e.apply(null,t)}),20))}}})((()=>{e.dispatch("ScrollContent")})),o=rc(m.element,"scroll",t.throttle);e.on("remove",o.unbind)}Cx(e,t),e.addCommand("ToggleSidebar",((t,o)=>{UD.toggleSidebar(l,o),e.dispatch("ToggleSidebar")})),e.addQueryValueHandler("ToggleSidebar",(()=>{var e;return null!==(e=UD.whichSidebar(l))&&void 0!==e?e:""})),e.addCommand("ToggleView",((t,o)=>{if(UD.toggleView(l,o)){const t=l.element;r.mothership.broadcastOn([Qd()],{target:t}),H(a,(e=>{e.broadcastOn([Qd()],{target:t})})),c(UD.whichView(l))&&(e.focus(),e.nodeChanged(),UD.refreshToolbar(l))}})),e.addQueryValueHandler("ToggleView",(()=>{var e;return null!==(e=UD.whichView(l))&&void 0!==e?e:""}));const g=Ob(e);g!==rb.sliding&&g!==rb.floating||e.on("ResizeWindow ResizeEditor ResizeContent",(()=>{const o=e.getWin().innerWidth;o!==i.get()&&(UD.refreshToolbar(t.mainUi.outerContainer),i.set(o))}));const p={setEnabled:e=>{kx(t,!e)},isEnabled:()=>!Lm.isDisabled(l)};return{iframeContainer:m.element.dom,editorContainer:l.element.dom,api:p}}});const tI=e=>/^[0-9\.]+(|px)$/i.test(""+e)?A.some(parseInt(""+e,10)):A.none(),oI=e=>h(e)?e+"px":e,nI=(e,t,o)=>{const n=t.filter((t=>e<t)),s=o.filter((t=>e>t));return n.or(s).getOr(e)},sI=e=>{const t=hb(e),o=fb(e),n=vb(e);return tI(t).map((e=>nI(e,o,n)))},{ToolbarLocation:rI,ToolbarMode:aI}=gv,iI=(e,t,o,n,s)=>{const{mainUi:r,uiMotherships:a}=o,i=ib.DOM,l=iv(e),c=dv(e),d=vb(e).or(sI(e)),u=n.shared.header,m=u.isPositionedAtTop,g=Ob(e),p=g===aI.sliding||g===aI.floating,h=As(!1),f=()=>h.get()&&!e.removed,b=e=>p?e.fold(x(0),(e=>e.components().length>1?jt(e.components()[1].element):0)):0,v=()=>{H(a,(e=>{e.broadcastOn([eu()],{})}))},y=o=>{if(!f())return;l||s.on((e=>{const o=d.getOrThunk((()=>{const e=tI(Rt(wt(),"margin-left")).getOr(0);return Zt(wt())-Xt(t).left+e}));Bt(e.element,"max-width",o+"px")}));const n=l?A.none():(()=>{if(l)return A.none();if(Xt(r.outerContainer.element).left+Qt(r.outerContainer.element)>=window.innerWidth-40||Vt(r.outerContainer.element,"width").isSome()){Bt(r.outerContainer.element,"position","absolute"),Bt(r.outerContainer.element,"left","0px"),Ht(r.outerContainer.element,"width");const e=Qt(r.outerContainer.element);return A.some(e)}return A.none()})();p&&UD.refreshToolbar(r.outerContainer),l||(o=>{s.on((n=>{const s=UD.getToolbar(r.outerContainer),a=b(s),i=Zo(t),{top:l,left:c}=((e,t)=>uv(e)?AA(t):A.none())(e,r.outerContainer.element).fold((()=>({top:m()?Math.max(i.y-jt(n.element)+a,0):i.bottom,left:i.x})),(e=>{var t;const o=Zo(e),s=null!==(t=e.dom.scrollTop)&&void 0!==t?t:0,r=Qe(e,wt()),l=r?Math.max(i.y-jt(n.element)+a,0):i.y-o.y+s-jt(n.element)+a;return{top:m()?l:i.bottom,left:r?i.x:i.x-o.x}})),d={position:"absolute",left:Math.round(c)+"px",top:Math.round(l)+"px"},u=o.map((e=>{const t=Wo(),o=window.innerWidth-(c-t.left);return{width:Math.max(Math.min(e,o),150)+"px"}})).getOr({});It(r.outerContainer.element,{...d,...u})}))})(n),c&&s.on(o),v()},w=()=>!(l||!c||!f())&&s.get().exists((o=>{const n=u.getDockingMode(),a=(o=>{switch(Tb(e)){case rI.auto:const e=UD.getToolbar(r.outerContainer),n=b(e),s=jt(o.element)-n,a=Zo(t);if(a.y>s)return"top";{const e=nt(t),o=Math.max(e.dom.scrollHeight,jt(e));return a.bottom<o-s||tn().bottom<a.bottom-s?"bottom":"top"}case rI.bottom:return"bottom";case rI.top:default:return"top"}})(o);return a!==n&&(i=a,s.on((e=>{tM.setModes(e,[i]),u.setDockingMode(i);const t=m()?Sc.TopToBottom:Sc.BottomToTop;Ct(e.element,kc,t)})),!0);var i}));return{isVisible:f,isPositionedAtTop:m,show:()=>{h.set(!0),Bt(r.outerContainer.element,"display","flex"),i.addClass(e.getBody(),"mce-edit-focus"),H(a,(e=>{Ht(e.element,"display")})),w(),uv(e)?y((e=>tM.isDocked(e)?tM.reset(e):tM.refresh(e))):y(tM.refresh)},hide:()=>{h.set(!1),Bt(r.outerContainer.element,"display","none"),i.removeClass(e.getBody(),"mce-edit-focus"),H(a,(e=>{Bt(e.element,"display","none")}))},update:y,updateMode:()=>{w()&&y(tM.reset)},repositionPopups:v}},lI=(e,t)=>{const o=Zo(e);return{pos:t?o.y:o.bottom,bounds:o}};var cI=Object.freeze({__proto__:null,render:(e,t,o,n,s)=>{const{mainUi:r}=t,a=nc(),i=ze(s.targetNode),l=iI(e,i,t,n,a),c=Mb(e);ZD(e);const d=()=>{if(a.isSet())return void l.show();a.set(UD.getHeader(r.outerContainer).getOrDie());const s=lv(e);uv(e)?(Ld(i,r.mothership),Ld(i,t.popupUi.mothership)):zd(s,r.mothership),zd(s,t.dialogUi.mothership),JB(e,t,o,n),UD.setMenubar(r.outerContainer,GD(e,o)),l.show(),((e,t,o,n)=>{const s=As(lI(t,o.isPositionedAtTop())),r=n=>{const{pos:r,bounds:a}=lI(t,o.isPositionedAtTop()),{pos:i,bounds:l}=s.get(),c=a.height!==l.height||a.width!==l.width;s.set({pos:r,bounds:a}),c&&fw(e,n),o.isVisible()&&(i!==r?o.update(tM.reset):c&&(o.updateMode(),o.repositionPopups()))};n||(e.on("activate",o.show),e.on("deactivate",o.hide)),e.on("SkinLoaded ResizeWindow",(()=>o.update(tM.reset))),e.on("NodeChange keydown",(e=>{requestAnimationFrame((()=>r(e)))}));let a=0;const i=KO((()=>o.update(tM.refresh)),33);e.on("ScrollWindow",(()=>{const e=Wo().left;e!==a&&(a=e,i.throttle()),o.updateMode()})),uv(e)&&e.on("ElementScroll",(e=>{o.update(tM.refresh)}));const l=oc();l.set(ac(ze(e.getBody()),"load",(e=>r(e.raw)))),e.on("remove",(()=>{l.clear()}))})(e,i,l,c),e.nodeChanged()};e.on("show",d),e.on("hide",l.hide),c||(e.on("focus",d),e.on("blur",l.hide)),e.on("init",(()=>{(e.hasFocus()||c)&&d()})),Cx(e,t);const u={show:d,hide:l.hide,setEnabled:e=>{kx(t,!e)},isEnabled:()=>!Lm.isDisabled(r.outerContainer)};return{editorContainer:r.outerContainer.element.dom,api:u}}});const dI="contexttoolbar-hide",uI=(e,t)=>Wr(y_,((o,n)=>{const s=(e=>({hide:()=>Fr(e,fr()),getValue:()=>vu.getValue(e)}))(e.get(o));t.onAction(s,n.event.buttonApi)})),mI=(e,t)=>{const o=e.label.fold((()=>({})),(e=>({"aria-label":e}))),n=Xh(Hv.sketch({inputClasses:["tox-toolbar-textfield","tox-toolbar-nav-js"],data:e.initValue(),inputAttributes:o,selectOnFocus:!0,inputBehaviours:Tl([Gp.config({mode:"special",onEnter:e=>s.findPrimary(e).map((e=>(Nr(e),!0))),onLeft:(e,t)=>(t.cut(),A.none()),onRight:(e,t)=>(t.cut(),A.none())})])})),s=((e,t,o)=>{const n=L(t,(t=>Xh(((e,t,o)=>(e=>"contextformtogglebutton"===e.type)(t)?((e,t,o)=>{const{primary:n,...s}=t.original,r=Xn(Ly({...s,type:"togglebutton",onAction:b}));return jB(r,o,[uI(e,t)])})(e,t,o):((e,t,o)=>{const{primary:n,...s}=t.original,r=Xn(Ny({...s,type:"button",onAction:b}));return WB(r,o,[uI(e,t)])})(e,t,o))(e,t,o))));return{asSpecs:()=>L(n,(e=>e.asSpec())),findPrimary:e=>re(t,((t,o)=>t.primary?A.from(n[o]).bind((t=>t.getOpt(e))).filter(C(Lm.isDisabled)):A.none()))}})(n,e.commands,t);return[{title:A.none(),items:[n.asSpec()]},{title:A.none(),items:s.asSpecs()}]},gI=(e,t,o)=>t.bottom-e.y>=o&&e.bottom-t.y>=o,pI=e=>{const t=(e=>{const t=e.getBoundingClientRect();if(t.height<=0&&t.width<=0){const o=mt(ze(e.startContainer),e.startOffset).element;return(qe(o)?rt(o):A.some(o)).filter($e).map((e=>e.dom.getBoundingClientRect())).getOr(t)}return t})(e.selection.getRng());if(e.inline){const e=Wo();return Jo(e.left+t.left,e.top+t.top,t.width,t.height)}{const o=Qo(ze(e.getBody()));return Jo(o.x+t.left,o.y+t.top,t.width,t.height)}},hI=(e,t,o,n=0)=>{const s=$o(window),r=Zo(ze(e.getContentAreaContainer())),a=Zb(e)||ov(e)||sv(e),{x:i,width:l}=((e,t,o)=>{const n=Math.max(e.x+o,t.x);return{x:n,width:Math.min(e.right-o,t.right)-n}})(r,s,n);if(e.inline&&!a)return Jo(i,s.y,l,s.height);{const a=t.header.isPositionedAtTop(),{y:c,bottom:d}=((e,t,o,n,s,r)=>{const a=ze(e.getContainer()),i=vi(a,".tox-editor-header").getOr(a),l=Zo(i),c=l.y>=t.bottom,d=n&&!c;if(e.inline&&d)return{y:Math.max(l.bottom+r,o.y),bottom:o.bottom};if(e.inline&&!d)return{y:o.y,bottom:Math.min(l.y-r,o.bottom)};const u="line"===s?Zo(a):t;return d?{y:Math.max(l.bottom+r,o.y),bottom:Math.min(u.bottom-r,o.bottom)}:{y:Math.max(u.y+r,o.y),bottom:Math.min(l.y-r,o.bottom)}})(e,r,s,a,o,n);return Jo(i,c,l,d-c)}},fI={valignCentre:[],alignCentre:[],alignLeft:["tox-pop--align-left"],alignRight:["tox-pop--align-right"],right:["tox-pop--right"],left:["tox-pop--left"],bottom:["tox-pop--bottom"],top:["tox-pop--top"],inset:["tox-pop--inset"]},bI={maxHeightFunction:gc(),maxWidthFunction:GM()},vI=e=>"node"===e,yI=(e,t,o,n,s)=>{const r=pI(e),a=n.lastElement().exists((e=>Qe(o,e)));return((e,t)=>{const o=e.selection.getRng(),n=mt(ze(o.startContainer),o.startOffset);return o.startContainer===o.endContainer&&o.startOffset===o.endOffset-1&&Qe(n.element,t)})(e,o)?a?SE:bE:a?((e,o,s)=>{const a=Vt(e,"position");Bt(e,"position",o);const i=gI(r,Zo(t),-20)&&!n.isReposition()?CE:SE;return a.each((t=>Bt(e,"position",t))),i})(t,n.getMode()):("fixed"===n.getMode()?s.y+Wo().top:s.y)+(jt(t)+12)<=r.y?bE:vE},xI=(e,t,o,n)=>{const s=t=>(n,s,r,a,i)=>({...yI(e,a,t,o,i)({...n,y:i.y,height:i.height},s,r,a,i),alwaysFit:!0}),r=e=>vI(n)?[s(e)]:[];return t?{onLtr:e=>[gl,ll,cl,dl,ul,ml].concat(r(e)),onRtl:e=>[gl,cl,ll,ul,dl,ml].concat(r(e))}:{onLtr:e=>[ml,gl,dl,ll,ul,cl].concat(r(e)),onRtl:e=>[ml,gl,ul,cl,dl,ll].concat(r(e))}},wI=(e,t)=>{const o=U(t,(t=>t.predicate(e.dom))),{pass:n,fail:s}=P(o,(e=>"contexttoolbar"===e.type));return{contextToolbars:n,contextForms:s}},SI=(e,t)=>{const o={},n=[],s=[],r={},a={},i=ae(e);return H(i,(i=>{const l=e[i];"contextform"===l.type?((e,i)=>{const l=Xn(Yn("ContextForm",$y,i));o[e]=l,l.launch.map((o=>{r["form:"+e]={...i.launch,type:"contextformtogglebutton"===o.type?"togglebutton":"button",onAction:()=>{t(l)}}})),"editor"===l.scope?s.push(l):n.push(l),a[e]=l})(i,l):"contexttoolbar"===l.type&&((e,t)=>{var o;(o=t,Yn("ContextToolbar",qy,o)).each((o=>{"editor"===t.scope?s.push(o):n.push(o),a[e]=o}))})(i,l)})),{forms:o,inNodeScope:n,inEditorScope:s,lookupTable:a,formNavigators:r}},kI=ca("forward-slide"),CI=ca("backward-slide"),OI=ca("change-slide-event"),_I="tox-pop--resizing",TI="tox-pop--transition",EI=(e,t,o,n)=>{const s=n.backstage,r=s.shared,a=Bo().deviceType.isTouch,i=nc(),l=nc(),c=nc(),d=ci((e=>{const t=As([]);return Gh.sketch({dom:{tag:"div",classes:["tox-pop"]},fireDismissalEventInstead:{event:"doNotDismissYet"},onShow:e=>{t.set([]),Gh.getContent(e).each((e=>{Ht(e.element,"visibility")})),Ga(e.element,_I),Ht(e.element,"width")},inlineBehaviours:Tl([th("context-toolbar-events",[Kr(nr(),((e,t)=>{"width"===t.event.raw.propertyName&&(Ga(e.element,_I),Ht(e.element,"width"))})),Wr(OI,((e,t)=>{const o=e.element;Ht(o,"width");const n=Zt(o);Gh.setContent(e,t.event.contents),Wa(o,_I);const s=Zt(o);Bt(o,"width",n+"px"),Gh.getContent(e).each((e=>{t.event.focus.bind((e=>(Rl(e),Ll(o)))).orThunk((()=>(Gp.focusIn(e),zl(ft(o)))))})),setTimeout((()=>{Bt(e.element,"width",s+"px")}),0)})),Wr(kI,((e,o)=>{Gh.getContent(e).each((o=>{t.set(t.get().concat([{bar:o,focus:zl(ft(e.element))}]))})),Rr(e,OI,{contents:o.event.forwardContents,focus:A.none()})})),Wr(CI,((e,o)=>{ne(t.get()).each((o=>{t.set(t.get().slice(0,t.get().length-1)),Rr(e,OI,{contents:di(o.bar),focus:o.focus})}))}))]),Gp.config({mode:"special",onEscape:o=>ne(t.get()).fold((()=>e.onEscape()),(e=>(Fr(o,CI),A.some(!0))))})]),lazySink:()=>rn.value(e.sink)})})({sink:o,onEscape:()=>(e.focus(),A.some(!0))})),u=()=>{const t=c.get().getOr("node"),o=vI(t)?1:0;return hI(e,r,t,o)},m=()=>!(e.removed||a()&&s.isContextMenuOpen()),g=()=>{if(m()){const t=u(),o=xe(c.get(),"node")?((e,t)=>t.filter((e=>xt(e)&&Ge(e))).map(Qo).getOrThunk((()=>pI(e))))(e,i.get()):pI(e);return t.height<=0||!gI(o,t,.01)}return!0},p=()=>{i.clear(),l.clear(),c.clear(),Gh.hide(d)},h=()=>{if(Gh.isOpen(d)){const e=d.element;Ht(e,"display"),g()?Bt(e,"display","none"):(l.set(0),Gh.reposition(d))}},f=t=>({dom:{tag:"div",classes:["tox-pop__dialog"]},components:[t],behaviours:Tl([Gp.config({mode:"acyclic"}),th("pop-dialog-wrap-events",[Jr((t=>{e.shortcuts.add("ctrl+F9","focus statusbar",(()=>Gp.focusIn(t)))})),Zr((t=>{e.shortcuts.remove("ctrl+F9")}))])])}),v=eo((()=>SI(t,(e=>{const t=y([e]);Rr(d,kI,{forwardContents:f(t)})})))),y=t=>{const{buttons:o}=e.ui.registry.getAll(),s={...o,...v().formNavigators},a=Ob(e)===rb.scrolling?rb.scrolling:rb.default,i=q(L(t,(t=>"contexttoolbar"===t.type?((t,o)=>KB(e,{buttons:t,toolbar:o.items,allowToolbarGroups:!1},n.backstage,A.some(["form:"])))(s,t):((e,t)=>mI(e,t))(t,r.providers))));return fD({type:a,uid:ca("context-toolbar"),initGroups:i,onEscape:A.none,cyclicKeying:!0,providers:r.providers})},x=(t,n)=>{if(S.cancel(),!m())return;const s=y(t),p=t[0].position,h=((t,n)=>{const s="node"===t?r.anchors.node(n):r.anchors.cursor(),c=((e,t,o,n)=>"line"===t?{bubble:bc(12,0,fI),layouts:{onLtr:()=>[pl],onRtl:()=>[hl]},overrides:bI}:{bubble:bc(0,12,fI,1/12),layouts:xI(e,o,n,t),overrides:bI})(e,t,a(),{lastElement:i.get,isReposition:()=>xe(l.get(),0),getMode:()=>_d.getMode(o)});return bn(s,c)})(p,n);c.set(p),l.set(1);const b=d.element;Ht(b,"display"),(e=>xe(Se(e,i.get(),Qe),!0))(n)||(Ga(b,TI),_d.reset(o,d)),Gh.showWithinBounds(d,f(s),{anchor:h,transition:{classes:[TI],mode:"placement"}},(()=>A.some(u()))),n.fold(i.clear,i.set),g()&&Bt(b,"display","none")};let w=!1;const S=KO((()=>{!e.hasFocus()||e.removed||w||($a(d.element,TI)?S.throttle():((e,t)=>{const o=ze(t.getBody()),n=e=>Qe(e,o),s=ze(t.selection.getNode());return(e=>!n(e)&&!et(o,e))(s)?A.none():((e,t,o)=>{const n=wI(e,t);if(n.contextForms.length>0)return A.some({elem:e,toolbars:[n.contextForms[0]]});{const t=wI(e,o);if(t.contextForms.length>0)return A.some({elem:e,toolbars:[t.contextForms[0]]});if(n.contextToolbars.length>0||t.contextToolbars.length>0){const o=(e=>{if(e.length<=1)return e;{const t=t=>N(e,(e=>e.position===t)),o=t=>U(e,(e=>e.position===t)),n=t("selection"),s=t("node");if(n||s){if(s&&n){const e=o("node"),t=L(o("selection"),(e=>({...e,position:"node"})));return e.concat(t)}return o(n?"selection":"node")}return o("line")}})(n.contextToolbars.concat(t.contextToolbars));return A.some({elem:e,toolbars:o})}return A.none()}})(s,e.inNodeScope,e.inEditorScope).orThunk((()=>((e,t,o)=>e(t)?A.none():Fs(t,(e=>{if($e(e)){const{contextToolbars:t,contextForms:n}=wI(e,o.inNodeScope),s=n.length>0?n:(e=>{if(e.length<=1)return e;{const t=t=>G(e,(e=>e.position===t));return t("selection").orThunk((()=>t("node"))).orThunk((()=>t("line"))).map((e=>e.position)).fold((()=>[]),(t=>U(e,(e=>e.position===t))))}})(t);return s.length>0?A.some({elem:e,toolbars:s}):A.none()}return A.none()}),e))(n,s,e)))})(v(),e).fold(p,(e=>{x(e.toolbars,A.some(e.elem))})))}),17);e.on("init",(()=>{e.on("remove",p),e.on("ScrollContent ScrollWindow ObjectResized ResizeEditor longpress",h),e.on("click keyup focus SetContent",S.throttle),e.on(dI,p),e.on("contexttoolbar-show",(t=>{const o=v();be(o.lookupTable,t.toolbarKey).each((o=>{x([o],Ce(t.target!==e,t.target)),Gh.getContent(d).each(Gp.focusIn)}))})),e.on("focusout",(t=>{$h.setEditorTimeout(e,(()=>{Ll(o.element).isNone()&&Ll(d.element).isNone()&&p()}),0)})),e.on("SwitchMode",(()=>{e.mode.isReadOnly()&&p()})),e.on("AfterProgressState",(t=>{t.state?p():e.hasFocus()&&S.throttle()})),e.on("dragstart",(()=>{w=!0})),e.on("dragend drop",(()=>{w=!1})),e.on("NodeChange",(e=>{Ll(d.element).fold(S.throttle,b)}))}))},AI=(e,t)=>{const o=()=>{const o=t.getOptions(e),n=t.getCurrent(e).map(t.hash),s=nc();return L(o,(o=>({type:"togglemenuitem",text:t.display(o),onSetup:r=>{const a=e=>{e&&(s.on((e=>e.setActive(!1))),s.set(r)),r.setActive(e)};a(xe(n,t.hash(o)));const i=t.watcher(e,o,a);return()=>{s.clear(),i()}},onAction:()=>t.setCurrent(e,o)})))};e.ui.registry.addMenuButton(t.name,{tooltip:t.text,icon:t.icon,fetch:e=>e(o()),onSetup:t.onToolbarSetup}),e.ui.registry.addNestedMenuItem(t.name,{type:"nestedmenuitem",text:t.text,getSubmenuItems:o,onSetup:t.onMenuSetup})},MI=e=>{AI(e,(e=>({name:"lineheight",text:"Line height",icon:"line-height",getOptions:tv,hash:e=>((e,t)=>wB(e,["fixed","relative","empty"]).map((({value:e,unit:t})=>e+t)))(e).getOr(e),display:w,watcher:(e,t,o)=>e.formatter.formatChanged("lineheight",o,!1,{value:t}).unbind,getCurrent:e=>A.from(e.queryCommandValue("LineHeight")),setCurrent:(e,t)=>e.execCommand("LineHeight",!1,t),onToolbarSetup:xw(e),onMenuSetup:xw(e)}))(e)),(e=>A.from(kb(e)).map((t=>({name:"language",text:"Language",icon:"language",getOptions:x(t),hash:e=>u(e.customCode)?e.code:`${e.code}/${e.customCode}`,display:e=>e.title,watcher:(e,t,o)=>{var n;return e.formatter.formatChanged("lang",o,!1,{value:t.code,customValue:null!==(n=t.customCode)&&void 0!==n?n:null}).unbind},getCurrent:e=>{const t=ze(e.selection.getNode());return Rs(t,(e=>A.some(e).filter($e).bind((e=>Tt(e,"lang").map((t=>({code:t,customCode:Tt(e,"data-mce-lang").getOrUndefined(),title:""})))))))},setCurrent:(e,t)=>e.execCommand("Lang",!1,t),onToolbarSetup:t=>{const o=oc();return t.setActive(e.formatter.match("lang",{},void 0,!0)),o.set(e.formatter.formatChanged("lang",t.setActive,!0)),yw(o.clear,xw(e)(t))},onMenuSetup:xw(e)}))))(e).each((t=>AI(e,t)))},DI=e=>Sw(e,"NodeChange",(t=>{t.setEnabled(e.queryCommandState("outdent")&&e.selection.isEditable())})),BI=(e,t)=>o=>{o.setActive(t.get());const n=e=>{t.set(e.state),o.setActive(e.state)};return e.on("PastePlainTextToggle",n),yw((()=>e.off("PastePlainTextToggle",n)),xw(e)(o))},II=(e,t)=>()=>{e.execCommand("mceToggleFormat",!1,t)},FI=e=>{(e=>{(e=>{XO.each([{name:"bold",text:"Bold",icon:"bold"},{name:"italic",text:"Italic",icon:"italic"},{name:"underline",text:"Underline",icon:"underline"},{name:"strikethrough",text:"Strikethrough",icon:"strike-through"},{name:"subscript",text:"Subscript",icon:"subscript"},{name:"superscript",text:"Superscript",icon:"superscript"}],((t,o)=>{e.ui.registry.addToggleButton(t.name,{tooltip:t.text,icon:t.icon,onSetup:ww(e,t.name),onAction:II(e,t.name)})}));for(let t=1;t<=6;t++){const o="h"+t;e.ui.registry.addToggleButton(o,{text:o.toUpperCase(),tooltip:"Heading "+t,onSetup:ww(e,o),onAction:II(e,o)})}})(e),(e=>{XO.each([{name:"copy",text:"Copy",action:"Copy",icon:"copy"},{name:"help",text:"Help",action:"mceHelp",icon:"help"},{name:"selectall",text:"Select all",action:"SelectAll",icon:"select-all"},{name:"newdocument",text:"New document",action:"mceNewDocument",icon:"new-document"},{name:"print",text:"Print",action:"mcePrint",icon:"print"}],(t=>{e.ui.registry.addButton(t.name,{tooltip:t.text,icon:t.icon,onAction:Cw(e,t.action)})})),XO.each([{name:"cut",text:"Cut",action:"Cut",icon:"cut"},{name:"paste",text:"Paste",action:"Paste",icon:"paste"},{name:"removeformat",text:"Clear formatting",action:"RemoveFormat",icon:"remove-formatting"},{name:"remove",text:"Remove",action:"Delete",icon:"remove"},{name:"hr",text:"Horizontal line",action:"InsertHorizontalRule",icon:"horizontal-rule"}],(t=>{e.ui.registry.addButton(t.name,{tooltip:t.text,icon:t.icon,onSetup:xw(e),onAction:Cw(e,t.action)})}))})(e),(e=>{XO.each([{name:"blockquote",text:"Blockquote",action:"mceBlockQuote",icon:"quote"}],(t=>{e.ui.registry.addToggleButton(t.name,{tooltip:t.text,icon:t.icon,onAction:Cw(e,t.action),onSetup:ww(e,t.name)})}))})(e)})(e),(e=>{XO.each([{name:"newdocument",text:"New document",action:"mceNewDocument",icon:"new-document"},{name:"copy",text:"Copy",action:"Copy",icon:"copy",shortcut:"Meta+C"},{name:"selectall",text:"Select all",action:"SelectAll",icon:"select-all",shortcut:"Meta+A"},{name:"print",text:"Print...",action:"mcePrint",icon:"print",shortcut:"Meta+P"}],(t=>{e.ui.registry.addMenuItem(t.name,{text:t.text,icon:t.icon,shortcut:t.shortcut,onAction:Cw(e,t.action)})})),XO.each([{name:"bold",text:"Bold",action:"Bold",icon:"bold",shortcut:"Meta+B"},{name:"italic",text:"Italic",action:"Italic",icon:"italic",shortcut:"Meta+I"},{name:"underline",text:"Underline",action:"Underline",icon:"underline",shortcut:"Meta+U"},{name:"strikethrough",text:"Strikethrough",action:"Strikethrough",icon:"strike-through"},{name:"subscript",text:"Subscript",action:"Subscript",icon:"subscript"},{name:"superscript",text:"Superscript",action:"Superscript",icon:"superscript"},{name:"removeformat",text:"Clear formatting",action:"RemoveFormat",icon:"remove-formatting"},{name:"cut",text:"Cut",action:"Cut",icon:"cut",shortcut:"Meta+X"},{name:"paste",text:"Paste",action:"Paste",icon:"paste",shortcut:"Meta+V"},{name:"hr",text:"Horizontal line",action:"InsertHorizontalRule",icon:"horizontal-rule"}],(t=>{e.ui.registry.addMenuItem(t.name,{text:t.text,icon:t.icon,shortcut:t.shortcut,onSetup:xw(e),onAction:Cw(e,t.action)})})),e.ui.registry.addMenuItem("codeformat",{text:"Code",icon:"sourcecode",onSetup:xw(e),onAction:II(e,"code")})})(e)},RI=(e,t)=>Sw(e,"Undo Redo AddUndo TypingUndo ClearUndos SwitchMode",(o=>{o.setEnabled(!e.mode.isReadOnly()&&e.undoManager[t]())})),NI=e=>Sw(e,"VisualAid",(t=>{t.setActive(e.hasVisual)})),VI=(e,t)=>{(e=>{H([{name:"alignleft",text:"Align left",cmd:"JustifyLeft",icon:"align-left"},{name:"aligncenter",text:"Align center",cmd:"JustifyCenter",icon:"align-center"},{name:"alignright",text:"Align right",cmd:"JustifyRight",icon:"align-right"},{name:"alignjustify",text:"Justify",cmd:"JustifyFull",icon:"align-justify"}],(t=>{e.ui.registry.addToggleButton(t.name,{tooltip:t.text,icon:t.icon,onAction:Cw(e,t.cmd),onSetup:ww(e,t.name)})})),e.ui.registry.addButton("alignnone",{tooltip:"No alignment",icon:"align-none",onSetup:xw(e),onAction:Cw(e,"JustifyNone")})})(e),FI(e),((e,t)=>{((e,t)=>{const o=tB(0,t,lB(e));e.ui.registry.addNestedMenuItem("align",{text:t.shared.providers.translate("Align"),onSetup:xw(e),getSubmenuItems:()=>o.items.validateItems(o.getStyleItems())})})(e,t),((e,t)=>{const o=tB(0,t,vB(e));e.ui.registry.addNestedMenuItem("fontfamily",{text:t.shared.providers.translate("Fonts"),onSetup:xw(e),getSubmenuItems:()=>o.items.validateItems(o.getStyleItems())})})(e,t),((e,t)=>{const o={type:"advanced",...t.styles},n=tB(0,t,DB(e,o));e.ui.registry.addNestedMenuItem("styles",{text:"Formats",onSetup:xw(e),getSubmenuItems:()=>n.items.validateItems(n.getStyleItems())})})(e,t),((e,t)=>{const o=tB(0,t,mB(e));e.ui.registry.addNestedMenuItem("blocks",{text:"Blocks",onSetup:xw(e),getSubmenuItems:()=>o.items.validateItems(o.getStyleItems())})})(e,t),((e,t)=>{const o=tB(0,t,AB(e));e.ui.registry.addNestedMenuItem("fontsize",{text:"Font sizes",onSetup:xw(e),getSubmenuItems:()=>o.items.validateItems(o.getStyleItems())})})(e,t)})(e,t),(e=>{(e=>{e.ui.registry.addMenuItem("undo",{text:"Undo",icon:"undo",shortcut:"Meta+Z",onSetup:RI(e,"hasUndo"),onAction:Cw(e,"undo")}),e.ui.registry.addMenuItem("redo",{text:"Redo",icon:"redo",shortcut:"Meta+Y",onSetup:RI(e,"hasRedo"),onAction:Cw(e,"redo")})})(e),(e=>{e.ui.registry.addButton("undo",{tooltip:"Undo",icon:"undo",enabled:!1,onSetup:RI(e,"hasUndo"),onAction:Cw(e,"undo")}),e.ui.registry.addButton("redo",{tooltip:"Redo",icon:"redo",enabled:!1,onSetup:RI(e,"hasRedo"),onAction:Cw(e,"redo")})})(e)})(e),(e=>{(e=>{e.addCommand("mceApplyTextcolor",((t,o)=>{((e,t,o)=>{e.undoManager.transact((()=>{e.focus(),e.formatter.apply(t,{value:o}),e.nodeChanged()}))})(e,t,o)})),e.addCommand("mceRemoveTextcolor",(t=>{((e,t)=>{e.undoManager.transact((()=>{e.focus(),e.formatter.remove(t,{value:null},void 0,!0),e.nodeChanged()}))})(e,t)}))})(e);const t=Ww(e),o=jw(e),n=As(t),s=As(o);eS(e,"forecolor","forecolor",n),eS(e,"backcolor","hilitecolor",s),tS(e,"forecolor","forecolor","Text color",n),tS(e,"backcolor","hilitecolor","Background color",s)})(e),(e=>{(e=>{e.ui.registry.addButton("visualaid",{tooltip:"Visual aids",text:"Visual aids",onAction:Cw(e,"mceToggleVisualAid")})})(e),(e=>{e.ui.registry.addToggleMenuItem("visualaid",{text:"Visual aids",onSetup:NI(e),onAction:Cw(e,"mceToggleVisualAid")})})(e)})(e),(e=>{(e=>{e.ui.registry.addButton("outdent",{tooltip:"Decrease indent",icon:"outdent",onSetup:DI(e),onAction:Cw(e,"outdent")}),e.ui.registry.addButton("indent",{tooltip:"Increase indent",icon:"indent",onSetup:xw(e),onAction:Cw(e,"indent")})})(e)})(e),MI(e),(e=>{const t=As($b(e)),o=()=>e.execCommand("mceTogglePlainTextPaste");e.ui.registry.addToggleButton("pastetext",{active:!1,icon:"paste-text",tooltip:"Paste as text",onAction:o,onSetup:BI(e,t)}),e.ui.registry.addToggleMenuItem("pastetext",{text:"Paste as text",icon:"paste-text",onAction:o,onSetup:BI(e,t)})})(e)},zI=e=>r(e)?e.split(/[ ,]/):e,LI=e=>t=>t.options.get(e),HI=LI("contextmenu_never_use_native"),PI=LI("contextmenu_avoid_overlap"),UI=e=>{const t=e.ui.registry.getAll().contextMenus,o=e.options.get("contextmenu");return e.options.isSet("contextmenu")?o:U(o,(e=>ve(t,e)))},WI=(e,t)=>({type:"makeshift",x:e,y:t}),jI=e=>"longpress"===e.type||0===e.type.indexOf("touch"),GI=(e,t)=>"contextmenu"===t.type||"longpress"===t.type?e.inline?(e=>{if(jI(e)){const t=e.touches[0];return WI(t.pageX,t.pageY)}return WI(e.pageX,e.pageY)})(t):((e,t)=>{const o=ib.DOM.getPos(e);return((e,t,o)=>WI(e.x+t,e.y+o))(t,o.x,o.y)})(e.getContentAreaContainer(),(e=>{if(jI(e)){const t=e.touches[0];return WI(t.clientX,t.clientY)}return WI(e.clientX,e.clientY)})(t)):$I(e),$I=e=>({type:"selection",root:ze(e.selection.getNode())}),qI=(e,t,o)=>{switch(o){case"node":return(e=>({type:"node",node:A.some(ze(e.selection.getNode())),root:ze(e.getBody())}))(e);case"point":return GI(e,t);case"selection":return $I(e)}},YI=(e,t,o,n,s,r)=>{const a=o(),i=qI(e,t,r);I_(a,bv.CLOSE_ON_EXECUTE,n,{isHorizontalMenu:!1,search:A.none()}).map((e=>{t.preventDefault(),Gh.showMenuAt(s,{anchor:i},{menu:{markers:Bv("normal")},data:e})}))},XI={onLtr:()=>[gl,ll,cl,dl,ul,ml,bE,vE,fE,pE,hE,gE],onRtl:()=>[gl,cl,ll,ul,dl,ml,bE,vE,hE,gE,fE,pE]},KI={valignCentre:[],alignCentre:[],alignLeft:["tox-pop--align-left"],alignRight:["tox-pop--align-right"],right:["tox-pop--right"],left:["tox-pop--left"],bottom:["tox-pop--bottom"],top:["tox-pop--top"]},JI=(e,t,o,n,s,r)=>{const a=Bo(),i=a.os.isiOS(),l=a.os.isMacOS(),c=a.os.isAndroid(),d=a.deviceType.isTouch(),u=()=>{const a=o();((e,t,o,n,s,r,a)=>{const i=((e,t,o)=>{const n=qI(e,t,o);return{bubble:bc(0,"point"===o?12:0,KI),layouts:XI,overrides:{maxWidthFunction:GM(),maxHeightFunction:gc()},...n}})(e,t,r);I_(o,bv.CLOSE_ON_EXECUTE,n,{isHorizontalMenu:!0,search:A.none()}).map((o=>{t.preventDefault();const l=a?Uh.HighlightMenuAndItem:Uh.HighlightNone;Gh.showMenuWithinBounds(s,{anchor:i},{menu:{markers:Bv("normal"),highlightOnOpen:l},data:o,type:"horizontal"},(()=>A.some(hI(e,n.shared,"node"===r?"node":"selection")))),e.dispatch(dI)}))})(e,t,a,n,s,r,!(c||i||l&&d))};if((l||i)&&"node"!==r){const o=()=>{(e=>{const t=e.selection.getRng(),o=()=>{$h.setEditorTimeout(e,(()=>{e.selection.setRng(t)}),10),r()};e.once("touchend",o);const n=e=>{e.preventDefault(),e.stopImmediatePropagation()};e.on("mousedown",n,!0);const s=()=>r();e.once("longpresscancel",s);const r=()=>{e.off("touchend",o),e.off("longpresscancel",s),e.off("mousedown",n)}})(e),u()};((e,t)=>{const o=e.selection;if(o.isCollapsed()||t.touches.length<1)return!1;{const n=t.touches[0],s=o.getRng();return td(e.getWin(),jc.domRange(s)).exists((e=>e.left<=n.clientX&&e.right>=n.clientX&&e.top<=n.clientY&&e.bottom>=n.clientY))}})(e,t)?o():(e.once("selectionchange",o),e.once("touchend",(()=>e.off("selectionchange",o))))}else u()},ZI=e=>r(e)?"|"===e:"separator"===e.type,QI={type:"separator"},eF=e=>{const t=e=>({text:e.text,icon:e.icon,enabled:e.enabled,shortcut:e.shortcut});if(r(e))return e;switch(e.type){case"separator":return QI;case"submenu":return{type:"nestedmenuitem",...t(e),getSubmenuItems:()=>{const t=e.getSubmenuItems();return r(t)?t:L(t,eF)}};default:const o=e;return{type:"menuitem",...t(o),onAction:v(o.onAction)}}},tF=(e,t)=>{if(0===t.length)return e;const o=ne(e).filter((e=>!ZI(e))).fold((()=>[]),(e=>[QI]));return e.concat(o).concat(t).concat([QI])},oF=(e,t)=>!(e=>"longpress"===e.type||ve(e,"touches"))(t)&&(2!==t.button||t.target===e.getBody()&&""===t.pointerType),nF=(e,t)=>oF(e,t)?e.selection.getStart(!0):t.target,sF=(e,t,o)=>{const n=Bo().deviceType.isTouch,s=ci(Gh.sketch({dom:{tag:"div"},lazySink:t,onEscape:()=>e.focus(),onShow:()=>o.setContextMenuState(!0),onHide:()=>o.setContextMenuState(!1),fireDismissalEventInstead:{},inlineBehaviours:Tl([th("dismissContextMenu",[Wr(Or(),((t,o)=>{Zd.close(t),e.focus()}))])])})),a=()=>Gh.hide(s),i=t=>{if(HI(e)&&t.preventDefault(),((e,t)=>t.ctrlKey&&!HI(e))(e,t)||(e=>0===UI(e).length)(e))return;const a=((e,t)=>{const o=PI(e),n=oF(e,t)?"selection":"point";if(De(o)){const s=nF(e,t);return JS(ze(s),o)?"node":n}return n})(e,t);(n()?JI:YI)(e,t,(()=>{const o=nF(e,t),n=e.ui.registry.getAll(),s=UI(e);return((e,t,o)=>{const n=j(t,((t,n)=>be(e,n.toLowerCase()).map((e=>{const n=e.update(o);if(r(n)&&De(Me(n)))return tF(t,n.split(" "));if(l(n)&&n.length>0){const e=L(n,eF);return tF(t,e)}return t})).getOrThunk((()=>t.concat([n])))),[]);return n.length>0&&ZI(n[n.length-1])&&n.pop(),n})(n.contextMenus,s,o)}),o,s,a)};e.on("init",(()=>{const t="ResizeEditor ScrollContent ScrollWindow longpresscancel"+(n()?"":" ResizeWindow");e.on(t,a),e.on("longpress contextmenu",i)}))},rF=Ms([{offset:["x","y"]},{absolute:["x","y"]},{fixed:["x","y"]}]),aF=e=>t=>t.translate(-e.left,-e.top),iF=e=>t=>t.translate(e.left,e.top),lF=e=>(t,o)=>j(e,((e,t)=>t(e)),qt(t,o)),cF=(e,t,o)=>e.fold(lF([iF(o),aF(t)]),lF([aF(t)]),lF([])),dF=(e,t,o)=>e.fold(lF([iF(o)]),lF([]),lF([iF(t)])),uF=(e,t,o)=>e.fold(lF([]),lF([aF(o)]),lF([iF(t),aF(o)])),mF=(e,t,o)=>{const n=e.fold(((e,t)=>({position:A.some("absolute"),left:A.some(e+"px"),top:A.some(t+"px")})),((e,t)=>({position:A.some("absolute"),left:A.some(e-o.left+"px"),top:A.some(t-o.top+"px")})),((e,t)=>({position:A.some("fixed"),left:A.some(e+"px"),top:A.some(t+"px")})));return{right:A.none(),bottom:A.none(),...n}},gF=(e,t,o,n)=>{const s=(e,s)=>(r,a)=>{const i=e(t,o,n);return s(r.getOr(i.left),a.getOr(i.top))};return e.fold(s(uF,pF),s(dF,hF),s(cF,fF))},pF=rF.offset,hF=rF.absolute,fF=rF.fixed,bF=(e,t)=>{const o=_t(e,t);return u(o)?NaN:parseInt(o,10)},vF=(e,t,o,n,s,r)=>{const a=((e,t,o,n)=>((e,t)=>{const o=e.element,n=bF(o,t.leftAttr),s=bF(o,t.topAttr);return isNaN(n)||isNaN(s)?A.none():A.some(qt(n,s))})(e,t).fold((()=>o),(e=>fF(e.left+n.left,e.top+n.top))))(e,t,o,n),i=t.mustSnap?xF(e,t,a,s,r):wF(e,t,a,s,r),l=cF(a,s,r);return((e,t,o)=>{const n=e.element;Ct(n,t.leftAttr,o.left+"px"),Ct(n,t.topAttr,o.top+"px")})(e,t,l),i.fold((()=>({coord:fF(l.left,l.top),extra:A.none()})),(e=>({coord:e.output,extra:e.extra})))},yF=(e,t,o,n)=>re(e,(e=>{const s=e.sensor,r=((e,t,o,n,s,r)=>{const a=dF(e,s,r),i=dF(t,s,r);return Math.abs(a.left-i.left)<=o&&Math.abs(a.top-i.top)<=n})(t,s,e.range.left,e.range.top,o,n);return r?A.some({output:gF(e.output,t,o,n),extra:e.extra}):A.none()})),xF=(e,t,o,n,s)=>{const r=t.getSnapPoints(e);return yF(r,o,n,s).orThunk((()=>{const e=j(r,((e,t)=>{const r=t.sensor,a=((e,t,o,n,s,r)=>{const a=dF(e,s,r),i=dF(t,s,r),l=Math.abs(a.left-i.left),c=Math.abs(a.top-i.top);return qt(l,c)})(o,r,t.range.left,t.range.top,n,s);return e.deltas.fold((()=>({deltas:A.some(a),snap:A.some(t)})),(o=>(a.left+a.top)/2<=(o.left+o.top)/2?{deltas:A.some(a),snap:A.some(t)}:e))}),{deltas:A.none(),snap:A.none()});return e.snap.map((e=>({output:gF(e.output,o,n,s),extra:e.extra})))}))},wF=(e,t,o,n,s)=>{const r=t.getSnapPoints(e);return yF(r,o,n,s)};var SF=Object.freeze({__proto__:null,snapTo:(e,t,o,n)=>{const s=t.getTarget(e.element);if(t.repositionTarget){const t=tt(e.element),o=Wo(t),r=MA(s),a=((e,t,o)=>({coord:gF(e.output,e.output,t,o),extra:e.extra}))(n,o,r),i=mF(a.coord,0,r);Ft(s,i)}}});const kF="data-initial-z-index",CF=(e,t)=>{e.getSystem().addToGui(t),(e=>{rt(e.element).filter($e).each((t=>{Vt(t,"z-index").each((e=>{Ct(t,kF,e)})),Bt(t,"z-index",Rt(e.element,"z-index"))}))})(t)},OF=e=>{(e=>{rt(e.element).filter($e).each((e=>{Tt(e,kF).fold((()=>Ht(e,"z-index")),(t=>Bt(e,"z-index",t))),At(e,kF)}))})(e),e.getSystem().removeFromGui(e)},_F=(e,t,o)=>e.getSystem().build(ik.sketch({dom:{styles:{left:"0px",top:"0px",width:"100%",height:"100%",position:"fixed","z-index":"1000000000000000"},classes:[t]},events:o}));var TF=ys("snaps",[ns("getSnapPoints"),Ri("onSensor"),ns("leftAttr"),ns("topAttr"),xs("lazyViewport",tn),xs("mustSnap",!1)]);const EF=[xs("useFixed",T),ns("blockerClass"),xs("getTarget",w),xs("onDrag",b),xs("repositionTarget",!0),xs("onDrop",b),_s("getBounds",tn),TF],AF=e=>{return(t=Vt(e,"left"),o=Vt(e,"top"),n=Vt(e,"position"),t.isSome()&&o.isSome()&&n.isSome()?A.some(((e,t,o)=>("fixed"===o?fF:pF)(parseInt(e,10),parseInt(t,10)))(t.getOrDie(),o.getOrDie(),n.getOrDie())):A.none()).getOrThunk((()=>{const t=Xt(e);return hF(t.left,t.top)}));var t,o,n},MF=(e,t)=>({bounds:e.getBounds(),height:Gt(t.element),width:Qt(t.element)}),DF=(e,t,o,n,s)=>{const r=o.update(n,s),a=o.getStartData().getOrThunk((()=>MF(t,e)));r.each((o=>{((e,t,o,n)=>{const s=t.getTarget(e.element);if(t.repositionTarget){const r=tt(e.element),a=Wo(r),i=MA(s),l=AF(s),c=((e,t,o,n,s,r,a)=>((e,t,o,n,s)=>{const r=s.bounds,a=dF(t,o,n),i=Qi(a.left,r.x,r.x+r.width-s.width),l=Qi(a.top,r.y,r.y+r.height-s.height),c=hF(i,l);return t.fold((()=>{const e=uF(c,o,n);return pF(e.left,e.top)}),x(c),(()=>{const e=cF(c,o,n);return fF(e.left,e.top)}))})(0,t.fold((()=>{const e=(t=o,a=r.left,i=r.top,t.fold(((e,t)=>pF(e+a,t+i)),((e,t)=>hF(e+a,t+i)),((e,t)=>fF(e+a,t+i))));var t,a,i;const l=cF(e,n,s);return fF(l.left,l.top)}),(t=>{const a=vF(e,t,o,r,n,s);return a.extra.each((o=>{t.onSensor(e,o)})),a.coord})),n,s,a))(e,t.snaps,l,a,i,n,o),d=mF(c,0,i);Ft(s,d)}t.onDrag(e,s,n)})(e,t,a,o)}))},BF=(e,t,o,n)=>{t.each(OF),o.snaps.each((t=>{((e,t)=>{((e,t)=>{const o=e.element;At(o,t.leftAttr),At(o,t.topAttr)})(e,t)})(e,t)}));const s=o.getTarget(e.element);n.reset(),o.onDrop(e,s)},IF=e=>(t,o)=>{const n=e=>{o.setStartData(MF(t,e))};return Hr([Wr(wr(),(e=>{o.getStartData().each((()=>n(e)))})),...e(t,o,n)])};var FF=Object.freeze({__proto__:null,getData:e=>A.from(qt(e.x,e.y)),getDelta:(e,t)=>qt(t.left-e.left,t.top-e.top)});const RF=(e,t,o)=>[Wr(js(),((n,s)=>{if(0!==s.event.raw.button)return;s.stop();const r=()=>BF(n,A.some(l),e,t),a=ZS(r,200),i={drop:r,delayDrop:a.schedule,forceDrop:r,move:o=>{a.cancel(),DF(n,e,t,FF,o)}},l=_F(n,e.blockerClass,(e=>Hr([Wr(js(),e.forceDrop),Wr(qs(),e.drop),Wr(Gs(),((t,o)=>{e.move(o.event)})),Wr($s(),e.delayDrop)]))(i));o(n),CF(n,l)}))],NF=[...EF,Li("dragger",{handlers:IF(RF)})];var VF=Object.freeze({__proto__:null,getData:e=>{const t=e.raw.touches;return 1===t.length?(e=>{const t=e[0];return A.some(qt(t.clientX,t.clientY))})(t):A.none()},getDelta:(e,t)=>qt(t.left-e.left,t.top-e.top)});const zF=(e,t,o)=>{const n=nc(),s=o=>{BF(o,n.get(),e,t),n.clear()};return[Wr(Hs(),((r,a)=>{a.stop();const i=()=>s(r),l={drop:i,delayDrop:b,forceDrop:i,move:o=>{DF(r,e,t,VF,o)}},c=_F(r,e.blockerClass,(e=>Hr([Wr(Hs(),e.forceDrop),Wr(Us(),e.drop),Wr(Ws(),e.drop),Wr(Ps(),((t,o)=>{e.move(o.event)}))]))(l));n.set(c),o(r),CF(r,c)})),Wr(Ps(),((o,n)=>{n.stop(),DF(o,e,t,VF,n.event)})),Wr(Us(),((e,t)=>{t.stop(),s(e)})),Wr(Ws(),s)]},LF=NF,HF=[...EF,Li("dragger",{handlers:IF(zF)})],PF=[...EF,Li("dragger",{handlers:IF(((e,t,o)=>[...RF(e,t,o),...zF(e,t,o)]))})];var UF=Object.freeze({__proto__:null,mouse:LF,touch:HF,mouseOrTouch:PF}),WF=Object.freeze({__proto__:null,init:()=>{let e=A.none(),t=A.none();const o=x({});return Ta({readState:o,reset:()=>{e=A.none(),t=A.none()},update:(t,o)=>t.getData(o).bind((o=>((t,o)=>{const n=e.map((e=>t.getDelta(e,o)));return e=A.some(o),n})(t,o))),getStartData:()=>t,setStartData:e=>{t=A.some(e)}})}});const jF=Dl({branchKey:"mode",branches:UF,name:"dragging",active:{events:(e,t)=>e.dragger.handlers(e,t)},extra:{snap:e=>({sensor:e.sensor,range:e.range,output:e.output,extra:A.from(e.extra)})},state:WF,apis:SF}),GF=(e,t,o,n,s,r)=>e.fold((()=>jF.snap({sensor:hF(o-20,n-20),range:qt(s,r),output:hF(A.some(o),A.some(n)),extra:{td:t}})),(e=>{const s=o-20,r=n-20,a=e.element.dom.getBoundingClientRect();return jF.snap({sensor:hF(s,r),range:qt(40,40),output:hF(A.some(o-a.width/2),A.some(n-a.height/2)),extra:{td:t}})})),$F=(e,t,o)=>({getSnapPoints:e,leftAttr:"data-drag-left",topAttr:"data-drag-top",onSensor:(e,n)=>{const s=n.td;((e,t)=>e.exists((e=>Qe(e,t))))(t.get(),s)||(t.set(s),o(s))},mustSnap:!0}),qF=e=>Xh(qh.sketch({dom:{tag:"div",classes:["tox-selector"]},buttonBehaviours:Tl([jF.config({mode:"mouseOrTouch",blockerClass:"blocker",snaps:e}),Hk.config({})]),eventOrder:{mousedown:["dragging","alloy.base.behaviour"],touchstart:["dragging","alloy.base.behaviour"]}})),YF=(e,t)=>{const o=As([]),n=As([]),s=As(!1),r=nc(),a=nc(),i=e=>{const o=Qo(e);return GF(u.getOpt(t),e,o.x,o.y,o.width,o.height)},l=e=>{const o=Qo(e);return GF(m.getOpt(t),e,o.right,o.bottom,o.width,o.height)},c=$F((()=>L(o.get(),(e=>i(e)))),r,(t=>{a.get().each((o=>{e.dispatch("TableSelectorChange",{start:t,finish:o})}))})),d=$F((()=>L(n.get(),(e=>l(e)))),a,(t=>{r.get().each((o=>{e.dispatch("TableSelectorChange",{start:o,finish:t})}))})),u=qF(c),m=qF(d),g=ci(u.asSpec()),p=ci(m.asSpec()),h=(t,o,n,s)=>{const r=n(o);jF.snapTo(t,r),((t,o,n,r)=>{const a=o.dom.getBoundingClientRect();Ht(t.element,"display");const i=st(ze(e.getBody())).dom.innerHeight,l=a[s]<0,c=((e,t)=>e[s]>t)(a,i);(l||c)&&Bt(t.element,"display","none")})(t,o)},f=e=>h(g,e,i,"top"),b=e=>h(p,e,l,"bottom");Bo().deviceType.isTouch()&&(e.on("TableSelectionChange",(e=>{s.get()||(Id(t,g),Id(t,p),s.set(!0)),r.set(e.start),a.set(e.finish),e.otherCells.each((t=>{o.set(t.upOrLeftCells),n.set(t.downOrRightCells),f(e.start),b(e.finish)}))})),e.on("ResizeEditor ResizeWindow ScrollContent",(()=>{r.get().each(f),a.get().each(b)})),e.on("TableSelectionClear",(()=>{s.get()&&(Nd(g),Nd(p),s.set(!1)),r.clear(),a.clear()})))},XF=(e,t,o)=>{var n;const s=null!==(n=t.delimiter)&&void 0!==n?n:"\u203a";return{dom:{tag:"div",classes:["tox-statusbar__path"],attributes:{role:"navigation"}},behaviours:Tl([Gp.config({mode:"flow",selector:"div[role=button]"}),Lm.config({disabled:o.isDisabled}),Ox(),pk.config({}),eh.config({}),th("elementPathEvents",[Jr(((t,n)=>{e.shortcuts.add("alt+F11","focus statusbar elementpath",(()=>Gp.focusIn(t))),e.on("NodeChange",(n=>{const r=(t=>{const o=[];let n=t.length;for(;n-- >0;){const r=t[n];if(1===r.nodeType&&"BR"!==(s=r).nodeName&&!s.getAttribute("data-mce-bogus")&&"bookmark"!==s.getAttribute("data-mce-type")){const t=vw(e,r);if(t.isDefaultPrevented()||o.push({name:t.name,element:r}),t.isPropagationStopped())break}}var s;return o})(n.parents),a=r.length>0?j(r,((t,n,r)=>{const a=((t,n,s)=>qh.sketch({dom:{tag:"div",classes:["tox-statusbar__path-item"],attributes:{"data-index":s,"aria-level":s+1}},components:[ri(t)],action:t=>{e.focus(),e.selection.select(n),e.nodeChanged()},buttonBehaviours:Tl([_x(o.isDisabled),Ox()])}))(n.name,n.element,r);return 0===r?t.concat([a]):t.concat([{dom:{tag:"div",classes:["tox-statusbar__path-divider"],attributes:{"aria-hidden":!0}},components:[ri(` ${s} `)]},a])}),[]):[];eh.set(t,a)}))}))])]),components:[]}};var KF;!function(e){e[e.None=0]="None",e[e.Both=1]="Both",e[e.Vertical=2]="Vertical"}(KF||(KF={}));const JF=(e,t,o)=>{const n=ze(e.getContainer()),s=((e,t,o,n,s)=>{const r={height:nI(n+t.top,bb(e),yb(e))};return o===KF.Both&&(r.width=nI(s+t.left,fb(e),vb(e))),r})(e,t,o,jt(n),Zt(n));le(s,((e,t)=>{h(e)&&Bt(n,t,oI(e))})),(e=>{e.dispatch("ResizeEditor")})(e)},ZF=(e,t,o,n)=>{const s=qt(20*o,20*n);return JF(e,s,t),A.some(!0)},QF=(e,t)=>{const o=()=>{const o=[],n=Xb(e),s=Wb(e),r=jb(e)||e.hasPlugin("wordcount");return s&&o.push(XF(e,{},t)),n&&o.push((()=>{const e=Vx("Alt+0");return{dom:{tag:"div",classes:["tox-statusbar__help-text"]},components:[ri(qf.translate(["Press {0} for help",e]))]}})()),r&&o.push((()=>{const o=[];return e.hasPlugin("wordcount")&&o.push(((e,t)=>{const o=(e,o,n)=>eh.set(e,[ri(t.translate(["{0} "+n,o[n]]))]);return qh.sketch({dom:{tag:"button",classes:["tox-statusbar__wordcount"]},components:[],buttonBehaviours:Tl([_x(t.isDisabled),Ox(),pk.config({}),eh.config({}),vu.config({store:{mode:"memory",initialValue:{mode:"words",count:{words:0,characters:0}}}}),th("wordcount-events",[ea((e=>{const t=vu.getValue(e),n="words"===t.mode?"characters":"words";vu.setValue(e,{mode:n,count:t.count}),o(e,t.count,n)})),Jr((t=>{e.on("wordCountUpdate",(e=>{const{mode:n}=vu.getValue(t);vu.setValue(t,{mode:n,count:e.wordCount}),o(t,e.wordCount,n)}))}))])]),eventOrder:{[mr()]:["disabling","alloy.base.behaviour","wordcount-events"]}})})(e,t)),jb(e)&&o.push({dom:{tag:"span",classes:["tox-statusbar__branding"]},components:[{dom:{tag:"a",attributes:{href:"https://www.tiny.cloud/powered-by-tiny?utm_campaign=poweredby&utm_source=tiny&utm_medium=referral&utm_content=v6",rel:"noopener",target:"_blank","aria-label":qf.translate(["Powered by {0}","Tiny"])},innerHtml:'<svg width="50px" height="16px" viewBox="0 0 50 16" xmlns="http://www.w3.org/2000/svg">\n  <path fill-rule="evenodd" clip-rule="evenodd" d="M10.143 0c2.608.015 5.186 2.178 5.186 5.331 0 0 .077 3.812-.084 4.87-.361 2.41-2.164 4.074-4.65 4.496-1.453.284-2.523.49-3.212.623-.373.071-.634.122-.785.152-.184.038-.997.145-1.35.145-2.732 0-5.21-2.04-5.248-5.33 0 0 0-3.514.03-4.442.093-2.4 1.758-4.342 4.926-4.963 0 0 3.875-.752 4.036-.782.368-.07.775-.1 1.15-.1Zm1.826 2.8L5.83 3.989v2.393l-2.455.475v5.968l6.137-1.189V9.243l2.456-.476V2.8ZM5.83 6.382l3.682-.713v3.574l-3.682.713V6.382Zm27.173-1.64-.084-1.066h-2.226v9.132h2.456V7.743c-.008-1.151.998-2.064 2.149-2.072 1.15-.008 1.987.92 1.995 2.072v5.065h2.455V7.359c-.015-2.18-1.657-3.929-3.837-3.913a3.993 3.993 0 0 0-2.908 1.296Zm-6.3-4.266L29.16 0v2.387l-2.456.475V.476Zm0 3.2v9.132h2.456V3.676h-2.456Zm18.179 11.787L49.11 3.676H46.58l-1.612 4.527-.46 1.382-.384-1.382-1.611-4.527H39.98l3.3 9.132L42.15 16l2.732-.537ZM22.867 9.738c0 .752.568 1.075.921 1.075.353 0 .668-.047.998-.154l.537 1.765c-.23.154-.92.537-2.225.537-1.305 0-2.655-.997-2.686-2.686a136.877 136.877 0 0 1 0-4.374H18.8V3.676h1.612v-1.98l2.455-.476v2.456h2.302V5.9h-2.302v3.837Z"/>\n</svg>\n'.trim()},behaviours:Tl([ah.config({})])}]}),{dom:{tag:"div",classes:["tox-statusbar__right-container"]},components:o}})()),o.length>0?[{dom:{tag:"div",classes:["tox-statusbar__text-container",...(()=>{const e="tox-statusbar__text-container--flex-start",t="tox-statusbar__text-container--flex-end";if(n){const o="tox-statusbar__text-container-3-cols";return r||s?r&&!s?[o,t]:[o,e]:[o,"tox-statusbar__text-container--space-around"]}return[r&&!s?t:e]})()]},components:o}]:[]};return{dom:{tag:"div",classes:["tox-statusbar"]},components:(()=>{const n=o(),s=((e,t)=>{const o=(e=>{const t=Gb(e);return!1===t?KF.None:"both"===t?KF.Both:KF.Vertical})(e);if(o===KF.None)return A.none();const n=o===KF.Both?"Press the arrow keys to resize the editor.":"Press the Up and Down arrow keys to resize the editor.";return A.some(ob("resize-handle",{tag:"div",classes:["tox-statusbar__resize-handle"],attributes:{title:t.translate("Resize"),"aria-label":t.translate(n)},behaviours:[jF.config({mode:"mouse",repositionTarget:!1,onDrag:(t,n,s)=>JF(e,s,o),blockerClass:"tox-blocker"}),Gp.config({mode:"special",onLeft:()=>ZF(e,o,-1,0),onRight:()=>ZF(e,o,1,0),onUp:()=>ZF(e,o,0,-1),onDown:()=>ZF(e,o,0,1)}),pk.config({}),ah.config({})]},t.icons))})(e,t);return n.concat(s.toArray())})()}},eR=(e,t)=>t.get().getOrDie(`UI for ${e} has not been rendered`),tR=(e,t)=>{const o=e.inline,n=o?cI:eI,s=dv(e)?uM:EA,r=(()=>{const e=nc(),t=nc(),o=nc();return{dialogUi:e,popupUi:t,mainUi:o,getUiMotherships:()=>{const o=e.get().map((e=>e.mothership)),n=t.get().map((e=>e.mothership));return o.fold((()=>n.toArray()),(e=>n.fold((()=>[e]),(t=>Qe(e.element,t.element)?[e]:[e,t]))))},lazyGetInOuterOrDie:(e,t)=>()=>o.get().bind((e=>t(e.outerContainer))).getOrDie(`Could not find ${e} element in OuterContainer`)}})(),a=nc(),i=nc(),l=nc(),c=Bo().deviceType.isTouch()?["tox-platform-touch"]:[],d=rv(e),u=Ob(e),m=Xh({dom:{tag:"div",classes:["tox-anchorbar"]}}),g=Xh({dom:{tag:"div",classes:["tox-bottom-anchorbar"]}}),p=()=>r.mainUi.get().map((e=>e.outerContainer)).bind(UD.getHeader),h=r.lazyGetInOuterOrDie("anchor bar",m.getOpt),f=r.lazyGetInOuterOrDie("bottom anchor bar",g.getOpt),b=r.lazyGetInOuterOrDie("toolbar",UD.getToolbar),v=r.lazyGetInOuterOrDie("throbber",UD.getThrobber),y=((e,t,o,n)=>{const s=As(!1),r=(e=>{const t=As(rv(e)?"bottom":"top");return{isPositionedAtTop:()=>"top"===t.get(),getDockingMode:t.get,setDockingMode:t.set}})(t),a={icons:()=>t.ui.registry.getAll().icons,menuItems:()=>t.ui.registry.getAll().menuItems,translate:qf.translate,isDisabled:()=>t.mode.isReadOnly()||!t.ui.isEnabled(),getOption:t.options.get},i=pA(t),l=(e=>{const t=t=>()=>e.formatter.match(t),o=t=>()=>{const o=e.formatter.get(t);return void 0!==o?A.some({tag:o.length>0&&(o[0].inline||o[0].block)||"div",styles:e.dom.parseStyle(e.formatter.getCssText(t))}):A.none()},n=As([]),s=As([]),r=As(!1);return e.on("PreInit",(s=>{const r=PE(e),a=WE(e,r,t,o);n.set(a)})),e.on("addStyleModifications",(n=>{const a=WE(e,n.items,t,o);s.set(a),r.set(n.replace)})),{getData:()=>{const e=r.get()?[]:n.get(),t=s.get();return e.concat(t)}}})(t),c=(e=>({colorPicker:BE(e),hasCustomColors:IE(e),getColors:FE(e),getColorCols:RE(e)}))(t),d=(e=>({isDraggableModal:NE(e)}))(t),u={shared:{providers:a,anchors:DE(t,o,n,r.isPositionedAtTop),header:r},urlinput:i,styles:l,colorinput:c,dialog:d,isContextMenuOpen:()=>s.get(),setContextMenuState:e=>s.set(e)},m={...u,shared:{...u.shared,interpreter:e=>rE(e,{},m),getSink:e.popup}},g={...u,shared:{...u.shared,interpreter:e=>rE(e,{},g),getSink:e.dialog}};return{popup:m,dialog:g}})({popup:()=>rn.fromOption(r.popupUi.get().map((e=>e.sink)),"(popup) UI has not been rendered"),dialog:()=>rn.fromOption(r.dialogUi.get().map((e=>e.sink)),"UI has not been rendered")},e,h,f),x=()=>{const t=(()=>{const t={attributes:{[kc]:d?Sc.BottomToTop:Sc.TopToBottom}},o=UD.parts.menubar({dom:{tag:"div",classes:["tox-menubar"]},backstage:y.popup,onEscape:()=>{e.focus()}}),n=UD.parts.toolbar({dom:{tag:"div",classes:["tox-toolbar"]},getSink:y.popup.shared.getSink,providers:y.popup.shared.providers,onEscape:()=>{e.focus()},onToolbarToggled:t=>{((e,t)=>{e.dispatch("ToggleToolbarDrawer",{state:t})})(e,t)},type:u,lazyToolbar:b,lazyHeader:()=>p().getOrDie("Could not find header element"),...t}),s=UD.parts["multiple-toolbar"]({dom:{tag:"div",classes:["tox-toolbar-overlord"]},providers:y.popup.shared.providers,onEscape:()=>{e.focus()},type:u}),r=sv(e),a=ov(e),i=Zb(e),l=Yb(e),c=UD.parts.promotion({dom:{tag:"div",classes:["tox-promotion"]}}),g=r||a||i,h=l?[c,o]:[o];return UD.parts.header({dom:{tag:"div",classes:["tox-editor-header"].concat(g?[]:["tox-editor-header--empty"]),...t},components:q([i?h:[],r?[s]:a?[n]:[],iv(e)?[]:[m.asSpec()]]),sticky:dv(e),editor:e,sharedBackstage:y.popup.shared})})(),n={dom:{tag:"div",classes:["tox-sidebar-wrap"]},components:[UD.parts.socket({dom:{tag:"div",classes:["tox-edit-area"]}}),UD.parts.sidebar({dom:{tag:"div",classes:["tox-sidebar"]}})]},s=UD.parts.throbber({dom:{tag:"div",classes:["tox-throbber"]},backstage:y.popup}),r=UD.parts.viewWrapper({backstage:y.popup}),i=Ub(e)&&!o?A.some(QF(e,y.popup.shared.providers)):A.none(),l=q([d?[]:[t],o?[]:[n],d?[t]:[]]),h=UD.parts.editorContainer({components:q([l,o?[]:[g.asSpec(),...i.toArray()]])}),f=cv(e),v={role:"application",...qf.isRtl()?{dir:"rtl"}:{},...f?{"aria-hidden":"true"}:{}},x=ci(UD.sketch({dom:{tag:"div",classes:["tox","tox-tinymce"].concat(o?["tox-tinymce-inline"]:[]).concat(d?["tox-tinymce--toolbar-bottom"]:[]).concat(c),styles:{visibility:"hidden",...f?{opacity:"0",border:"0"}:{}},attributes:v},components:[h,...o?[]:[r],s],behaviours:Tl([Ox(),Lm.config({disableClass:"tox-tinymce--disabled"}),Gp.config({mode:"cyclic",selector:".tox-menubar, .tox-toolbar, .tox-toolbar__primary, .tox-toolbar__overflow--open, .tox-sidebar__overflow--open, .tox-statusbar__path, .tox-statusbar__wordcount, .tox-statusbar__branding a, .tox-statusbar__resize-handle"})])})),w=lk(x);return a.set(w),{mothership:w,outerContainer:x}},w=t=>{const o=oI((e=>{const t=(e=>{const t=pb(e),o=bb(e),n=yb(e);return tI(t).map((e=>nI(e,o,n)))})(e);return t.getOr(pb(e))})(e)),n=oI((e=>sI(e).getOr(hb(e)))(e));return e.inline||(Lt("div","width",n)&&Bt(t.element,"width",n),Lt("div","height",o)?Bt(t.element,"height",o):Bt(t.element,"height","400px")),o};return{popups:{backstage:y.popup,getMothership:()=>eR("popups",l)},dialogs:{backstage:y.dialog,getMothership:()=>eR("dialogs",i)},renderUI:()=>{const o=x(),a=(()=>{const t=lv(e),o=Qe(wt(),t)&&"grid"===Rt(t,"display"),n={dom:{tag:"div",classes:["tox","tox-silver-sink","tox-tinymce-aux"].concat(c),attributes:{...qf.isRtl()?{dir:"rtl"}:{}}},behaviours:Tl([_d.config({useFixed:()=>s.isDocked(p)})])},r={dom:{styles:{width:document.body.clientWidth+"px"}},events:Hr([Wr(Sr(),(e=>{Bt(e.element,"width",document.body.clientWidth+"px")}))])},a=ci(bn(n,o?r:{})),l=lk(a);return i.set(l),{sink:a,mothership:l}})(),d=uv(e)?(()=>{const e={dom:{tag:"div",classes:["tox","tox-silver-sink","tox-silver-popup-sink","tox-tinymce-aux"].concat(c),attributes:{...qf.isRtl()?{dir:"rtl"}:{}}},behaviours:Tl([_d.config({useFixed:()=>s.isDocked(p),getBounds:()=>t.getPopupSinkBounds()})])},o=ci(e),n=lk(o);return l.set(n),{sink:o,mothership:n}})():(e=>(l.set(e.mothership),e))(a);r.dialogUi.set(a),r.popupUi.set(d),r.mainUi.set(o);return(t=>{const{mainUi:o,popupUi:r,uiMotherships:a}=t;ce(_b(e),((t,o)=>{e.ui.registry.addGroupToolbarButton(o,t)}));const{buttons:i,menuItems:l,contextToolbars:c,sidebars:d,views:m}=e.ui.registry.getAll(),g=nv(e),h={menuItems:l,menus:mv(e),menubar:Bb(e),toolbar:g.getOrThunk((()=>Ib(e))),allowToolbarGroups:u===rb.floating,buttons:i,sidebar:d,views:m};var f;f=o.outerContainer,e.addShortcut("alt+F9","focus menubar",(()=>{UD.focusMenubar(f)})),e.addShortcut("alt+F10","focus toolbar",(()=>{UD.focusToolbar(f)})),e.addCommand("ToggleToolbarDrawer",((e,t)=>{(null==t?void 0:t.skipFocus)?UD.toggleToolbarDrawerWithoutFocusing(f):UD.toggleToolbarDrawer(f)})),e.addQueryStateHandler("ToggleToolbarDrawer",(()=>UD.isToolbarDrawerToggled(f))),((e,t,o)=>{const n=(e,n)=>{H([t,...o],(t=>{t.broadcastEvent(e,n)}))},s=(e,n)=>{H([t,...o],(t=>{t.broadcastOn([e],n)}))},r=e=>s(Qd(),{target:e.target}),a=qo(),i=rc(a,"touchstart",r),l=rc(a,"touchmove",(e=>n(yr(),e))),c=rc(a,"touchend",(e=>n(xr(),e))),d=rc(a,"mousedown",r),u=rc(a,"mouseup",(e=>{0===e.raw.button&&s(tu(),{target:e.target})})),m=e=>s(Qd(),{target:ze(e.target)}),g=e=>{0===e.button&&s(tu(),{target:ze(e.target)})},p=()=>{H(e.editorManager.get(),(t=>{e!==t&&t.dispatch("DismissPopups",{relatedTarget:e})}))},h=e=>n(wr(),ic(e)),f=e=>{s(eu(),{}),n(Sr(),ic(e))},b=ft(ze(e.getElement())),v=ac(b,"scroll",(o=>{requestAnimationFrame((()=>{if(null!=e.getContainer()){const s=XS(e,t.element).map((e=>[e.element,...e.others])).getOr([]);N(s,(e=>Qe(e,o.target)))&&(e.dispatch("ElementScroll",{target:o.target.dom}),n(Ar(),o))}}))})),y=()=>s(eu(),{}),x=t=>{t.state&&s(Qd(),{target:ze(e.getContainer())})},w=e=>{s(Qd(),{target:ze(e.relatedTarget.getContainer())})};e.on("PostRender",(()=>{e.on("click",m),e.on("tap",m),e.on("mouseup",g),e.on("mousedown",p),e.on("ScrollWindow",h),e.on("ResizeWindow",f),e.on("ResizeEditor",y),e.on("AfterProgressState",x),e.on("DismissPopups",w)})),e.on("remove",(()=>{e.off("click",m),e.off("tap",m),e.off("mouseup",g),e.off("mousedown",p),e.off("ScrollWindow",h),e.off("ResizeWindow",f),e.off("ResizeEditor",y),e.off("AfterProgressState",x),e.off("DismissPopups",w),d.unbind(),i.unbind(),l.unbind(),c.unbind(),u.unbind(),v.unbind()})),e.on("detach",(()=>{H([t,...o],Pd),H([t,...o],(e=>e.destroy()))}))})(e,o.mothership,a),s.setup(e,y.popup.shared,p),VI(e,y.popup),sF(e,y.popup.shared.getSink,y.popup),(e=>{const{sidebars:t}=e.ui.registry.getAll();H(ae(t),(o=>{const n=t[o],s=()=>xe(A.from(e.queryCommandValue("ToggleSidebar")),o);e.ui.registry.addToggleButton(o,{icon:n.icon,tooltip:n.tooltip,onAction:t=>{e.execCommand("ToggleSidebar",!1,o),t.setActive(s())},onSetup:t=>{t.setActive(s());const o=()=>t.setActive(s());return e.on("ToggleSidebar",o),()=>{e.off("ToggleSidebar",o)}}})}))})(e),NM(e,v,y.popup.shared),EI(e,c,r.sink,{backstage:y.popup}),YF(e,r.sink);const b={targetNode:e.getElement(),height:w(o.outerContainer)};return n.render(e,t,h,y.popup,b)})({popupUi:d,dialogUi:a,mainUi:o,uiMotherships:r.getUiMotherships()})}}},oR=x([ns("lazySink"),ms("dragBlockClass"),_s("getBounds",tn),xs("useTabstopAt",E),xs("firstTabstop",0),xs("eventOrder",{}),yu("modalBehaviours",[Gp]),Ni("onExecute"),zi("onEscape")]),nR={sketch:w},sR=x([Yu({name:"draghandle",overrides:(e,t)=>({behaviours:Tl([jF.config({mode:"mouse",getTarget:e=>fi(e,'[role="dialog"]').getOr(e),blockerClass:e.dragBlockClass.getOrDie(new Error("The drag blocker class was not specified for a dialog with a drag handle: \n"+JSON.stringify(t,null,2)).message),getBounds:e.getDragBounds})])})}),$u({schema:[ns("dom")],name:"title"}),$u({factory:nR,schema:[ns("dom")],name:"close"}),$u({factory:nR,schema:[ns("dom")],name:"body"}),Yu({factory:nR,schema:[ns("dom")],name:"footer"}),qu({factory:{sketch:(e,t)=>({...e,dom:t.dom,components:t.components})},schema:[xs("dom",{tag:"div",styles:{position:"fixed",left:"0px",top:"0px",right:"0px",bottom:"0px"}}),xs("components",[])],name:"blocker"})]),rR=wm({name:"ModalDialog",configFields:oR(),partFields:sR(),factory:(e,t,o,n)=>{const s=nc(),r=ca("modal-events"),a={...e.eventOrder,[kr()]:[r].concat(e.eventOrder["alloy.system.attached"]||[])};return{uid:e.uid,dom:e.dom,components:t,apis:{show:t=>{s.set(t);const o=e.lazySink(t).getOrDie(),r=n.blocker(),a=o.getSystem().build({...r,components:r.components.concat([di(t)]),behaviours:Tl([ah.config({}),th("dialog-blocker-events",[Kr(Xs(),(()=>{FM.isBlocked(t)||Gp.focusIn(t)}))])])});Id(o,a),Gp.focusIn(t)},hide:e=>{s.clear(),rt(e.element).each((t=>{e.getSystem().getByDom(t).each((e=>{Nd(e)}))}))},getBody:t=>im(t,e,"body"),getFooter:t=>am(t,e,"footer"),setIdle:e=>{FM.unblock(e)},setBusy:(e,t)=>{FM.block(e,t)}},eventOrder:a,domModification:{attributes:{role:"dialog","aria-modal":"true"}},behaviours:wu(e.modalBehaviours,[eh.config({}),Gp.config({mode:"cyclic",onEnter:e.onExecute,onEscape:e.onEscape,useTabstopAt:e.useTabstopAt,firstTabstop:e.firstTabstop}),FM.config({getRoot:s.get}),th(r,[Jr((t=>{((e,t)=>{const o=Tt(e,"id").fold((()=>{const e=ca("dialog-label");return Ct(t,"id",e),e}),w);Ct(e,"aria-labelledby",o)})(t.element,im(t,e,"title").element)}))])])}},apis:{show:(e,t)=>{e.show(t)},hide:(e,t)=>{e.hide(t)},getBody:(e,t)=>e.getBody(t),getFooter:(e,t)=>e.getFooter(t),setBusy:(e,t,o)=>{e.setBusy(t,o)},setIdle:(e,t)=>{e.setIdle(t)}}}),aR=Bn([sy,ry].concat(ex)),iR=Pn,lR=[Dy("button"),vy,Cs("align","end",["start","end"]),_y,Oy,fs("buttonType",["primary","secondary"])],cR=[...lR,iy],dR=[is("type",["submit","cancel","custom"]),...cR],uR=[is("type",["menu"]),by,yy,vy,us("items",aR),...lR],mR=[...lR,is("type",["togglebutton"]),as("tooltip"),vy,by,Os("active",!1)],gR=Zn("type",{submit:dR,cancel:dR,custom:dR,menu:uR,togglebutton:mR}),pR=[sy,iy,is("level",["info","warn","error","success"]),cy,xs("url","")],hR=Bn(pR),fR=[sy,iy,Oy,Dy("button"),vy,Cy,fs("buttonType",["primary","secondary","toolbar"]),_y],bR=Bn(fR),vR=[sy,ry],yR=vR.concat([xy]),xR=vR.concat([ay,Oy]),wR=Bn(xR),SR=Pn,kR=yR.concat([Ty("auto")]),CR=Bn(kR),OR=Nn([dy,iy,cy]),_R=yR.concat([ks("storageKey","default")]),TR=Bn(_R),ER=Hn,AR=Bn(yR),MR=Hn,DR=vR.concat([ks("tag","textarea"),as("scriptId"),as("scriptUrl"),ws("settings",void 0,jn)]),BR=vR.concat([ks("tag","textarea"),ls("init")]),IR=$n((e=>Yn("customeditor.old",Dn(BR),e).orThunk((()=>Yn("customeditor.new",Dn(DR),e))))),FR=Hn,RR=Bn(yR),NR=In(_n),VR=e=>[sy,rs("columns"),e],zR=[sy,as("html"),Cs("presets","presentation",["presentation","document"])],LR=Bn(zR),HR=yR.concat([Os("border",!1),Os("sandboxed",!0),Os("streamContent",!1),Os("transparent",!0)]),PR=Bn(HR),UR=Hn,WR=Bn(vR.concat([hs("height")])),jR=Bn([as("url"),ps("zoom"),ps("cachedWidth"),ps("cachedHeight")]),GR=yR.concat([hs("inputMode"),hs("placeholder"),Os("maximized",!1),Oy]),$R=Bn(GR),qR=Hn,YR=e=>[sy,ay,e,Cs("align","start",["start","center","end"])],XR=[iy,dy],KR=[iy,us("items",Qn(0,(()=>JR)))],JR=Fn([Bn(XR),Bn(KR)]),ZR=yR.concat([us("items",JR),Oy]),QR=Bn(ZR),eN=Hn,tN=yR.concat([ds("items",[iy,dy]),Ss("size",1),Oy]),oN=Bn(tN),nN=Hn,sN=yR.concat([Os("constrain",!0),Oy]),rN=Bn(sN),aN=Bn([as("width"),as("height")]),iN=vR.concat([ay,Ss("min",0),Ss("max",0)]),lN=Bn(iN),cN=Ln,dN=[sy,us("header",Hn),us("cells",In(Hn))],uN=Bn(dN),mN=yR.concat([hs("placeholder"),Os("maximized",!1),Oy]),gN=Bn(mN),pN=Hn,hN=[is("type",["directory","leaf"]),ly,as("id"),gs("menu",pM)],fN=Bn(hN),bN=hN.concat([us("children",Qn(0,(()=>Gn("type",{directory:vN,leaf:fN}))))]),vN=Bn(bN),yN=Gn("type",{directory:vN,leaf:fN}),xN=[sy,us("items",yN),bs("onLeafAction"),bs("onToggleExpand"),Ts("defaultExpandedIds",[],Hn),hs("defaultSelectedId")],wN=Bn(xN),SN=yR.concat([Cs("filetype","file",["image","media","file"]),Oy,hs("picker_text")]),kN=Bn(SN),CN=Bn([dy,Ey]),ON=e=>es("items","items",{tag:"required",process:{}},In($n((t=>Yn(`Checking item of ${e}`,_N,t).fold((e=>rn.error(Jn(e))),(e=>rn.value(e))))))),_N=An((()=>{return Gn("type",{alertbanner:hR,bar:Bn((e=ON("bar"),[sy,e])),button:bR,checkbox:wR,colorinput:TR,colorpicker:AR,dropzone:RR,grid:Bn(VR(ON("grid"))),iframe:PR,input:$R,listbox:QR,selectbox:oN,sizeinput:rN,slider:lN,textarea:gN,urlinput:kN,customeditor:IR,htmlpanel:LR,imagepreview:WR,collection:CR,label:Bn(YR(ON("label"))),table:uN,tree:wN,panel:EN});var e})),TN=[sy,xs("classes",[]),us("items",_N)],EN=Bn(TN),AN=[Dy("tab"),ly,us("items",_N)],MN=[sy,ds("tabs",AN)],DN=Bn(MN),BN=cR,IN=gR,FN=Bn([as("title"),ss("body",Gn("type",{panel:EN,tabpanel:DN})),ks("size","normal"),Ts("buttons",[],IN),xs("initialData",{}),_s("onAction",b),_s("onChange",b),_s("onSubmit",b),_s("onClose",b),_s("onCancel",b),_s("onTabChange",b)]),RN=Bn([is("type",["cancel","custom"]),...BN]),NN=Bn([as("title"),as("url"),ps("height"),ps("width"),vs("buttons",RN),_s("onAction",b),_s("onCancel",b),_s("onClose",b),_s("onMessage",b)]),VN=e=>a(e)?[e].concat(Y(fe(e),VN)):l(e)?Y(e,VN):[],zN=e=>r(e.type)&&r(e.name),LN={checkbox:SR,colorinput:ER,colorpicker:MR,dropzone:NR,input:qR,iframe:UR,imagepreview:jR,selectbox:nN,sizeinput:aN,slider:cN,listbox:eN,size:aN,textarea:pN,urlinput:CN,customeditor:FR,collection:OR,togglemenuitem:iR},HN=e=>{const t=(e=>U(VN(e),zN))(e),o=Y(t,(e=>(e=>A.from(LN[e.type]))(e).fold((()=>[]),(t=>[ss(e.name,t)]))));return Bn(o)},PN=e=>{var t;return{internalDialog:Xn(Yn("dialog",FN,e)),dataValidator:HN(e),initialData:null!==(t=e.initialData)&&void 0!==t?t:{}}},UN={open:(e,t)=>{const o=PN(t);return e(o.internalDialog,o.initialData,o.dataValidator)},openUrl:(e,t)=>e(Xn(Yn("dialog",NN,t))),redial:e=>PN(e)};var WN=Object.freeze({__proto__:null,events:(e,t)=>{const o=(o,n)=>{e.updateState.each((e=>{const s=e(o,n);t.set(s)})),e.renderComponents.each((s=>{const r=s(n,t.get());(e.reuseDom?qp:$p)(o,r)}))};return Hr([Wr(ur(),((t,n)=>{const s=n;if(!s.universal){const n=e.channel;R(s.channels,n)&&o(t,s.data)}})),Jr(((t,n)=>{e.initialData.each((e=>{o(t,e)}))}))])}}),jN=Object.freeze({__proto__:null,getState:(e,t,o)=>o}),GN=[ns("channel"),ms("renderComponents"),ms("updateState"),ms("initialData"),Os("reuseDom",!0)];const $N=Al({fields:GN,name:"reflecting",active:WN,apis:jN,state:Object.freeze({__proto__:null,init:()=>{const e=As(A.none());return{readState:()=>e.get().getOr("none"),get:e.get,set:e.set,clear:()=>e.set(A.none())}}})}),qN=e=>{const t=[],o={};return le(e,((e,n)=>{e.fold((()=>{t.push(n)}),(e=>{o[n]=e}))})),t.length>0?rn.error(t):rn.value(o)},YN=(e,t,o)=>{const n=Xh(IO.sketch((n=>({dom:{tag:"div",classes:["tox-form"].concat(e.classes)},components:L(e.items,(e=>nE(n,e,t,o)))}))));return{dom:{tag:"div",classes:["tox-dialog__body"]},components:[{dom:{tag:"div",classes:["tox-dialog__body-content"]},components:[n.asSpec()]}],behaviours:Tl([Gp.config({mode:"acyclic",useTabstopAt:C(n_)}),(s=n,Om.config({find:s.getOpt})),WO(n,{postprocess:e=>qN(e).fold((e=>(console.error(e),{})),w)}),th("dialog-body-panel",[Wr(Xs(),((e,t)=>{e.getSystem().broadcastOn([c_],{newFocus:A.some(t.event.target)})}))])])};var s},XN=xm({name:"TabButton",configFields:[xs("uid",void 0),ns("value"),es("dom","dom",wn((()=>({attributes:{role:"tab",id:ca("aria"),"aria-selected":"false"}}))),Vn()),ms("action"),xs("domModification",{}),yu("tabButtonBehaviours",[ah,Gp,vu]),ns("view")],factory:(e,t)=>({uid:e.uid,dom:e.dom,components:e.components,events:fh(e.action),behaviours:wu(e.tabButtonBehaviours,[ah.config({}),Gp.config({mode:"execution",useSpace:!0,useEnter:!0}),vu.config({store:{mode:"memory",initialValue:e.value}})]),domModification:e.domModification})}),KN=x([ns("tabs"),ns("dom"),xs("clickToDismiss",!1),yu("tabbarBehaviours",[Xm,Gp]),Ii(["tabClass","selectedClass"])]),JN=Xu({factory:XN,name:"tabs",unit:"tab",overrides:e=>{const t=(e,t)=>{Xm.dehighlight(e,t),Rr(e,Dr(),{tabbar:e,button:t})},o=(e,t)=>{Xm.highlight(e,t),Rr(e,Mr(),{tabbar:e,button:t})};return{action:n=>{const s=n.getSystem().getByUid(e.uid).getOrDie(),r=Xm.isHighlighted(s,n);(r&&e.clickToDismiss?t:r?b:o)(s,n)},domModification:{classes:[e.markers.tabClass]}}}}),ZN=x([JN]),QN=wm({name:"Tabbar",configFields:KN(),partFields:ZN(),factory:(e,t,o,n)=>({uid:e.uid,dom:e.dom,components:t,"debug.sketcher":"Tabbar",domModification:{attributes:{role:"tablist"}},behaviours:wu(e.tabbarBehaviours,[Xm.config({highlightClass:e.markers.selectedClass,itemClass:e.markers.tabClass,onHighlight:(e,t)=>{Ct(t.element,"aria-selected","true")},onDehighlight:(e,t)=>{Ct(t.element,"aria-selected","false")}}),Gp.config({mode:"flow",getInitial:e=>Xm.getHighlighted(e).map((e=>e.element)),selector:"."+e.markers.tabClass,executeOnMove:!0})])})}),eV=xm({name:"Tabview",configFields:[yu("tabviewBehaviours",[eh])],factory:(e,t)=>({uid:e.uid,dom:e.dom,behaviours:wu(e.tabviewBehaviours,[eh.config({})]),domModification:{attributes:{role:"tabpanel"}}})}),tV=x([xs("selectFirst",!0),Ri("onChangeTab"),Ri("onDismissTab"),xs("tabs",[]),yu("tabSectionBehaviours",[])]),oV=$u({factory:QN,schema:[ns("dom"),cs("markers",[ns("tabClass"),ns("selectedClass")])],name:"tabbar",defaults:e=>({tabs:e.tabs})}),nV=$u({factory:eV,name:"tabview"}),sV=x([oV,nV]),rV=wm({name:"TabSection",configFields:tV(),partFields:sV(),factory:(e,t,o,n)=>{const s=(t,o)=>{am(t,e,"tabbar").each((e=>{o(e).each(Nr)}))};return{uid:e.uid,dom:e.dom,components:t,behaviours:xu(e.tabSectionBehaviours),events:Hr(q([e.selectFirst?[Jr(((e,t)=>{s(e,Xm.getFirst)}))]:[],[Wr(Mr(),((t,o)=>{(t=>{const o=vu.getValue(t);am(t,e,"tabview").each((n=>{G(e.tabs,(e=>e.value===o)).each((o=>{const s=o.view();Tt(t.element,"id").each((e=>{Ct(n.element,"aria-labelledby",e)})),eh.set(n,s),e.onChangeTab(n,t,s)}))}))})(o.event.button)})),Wr(Dr(),((t,o)=>{const n=o.event.button;e.onDismissTab(t,n)}))]])),apis:{getViewItems:t=>am(t,e,"tabview").map((e=>eh.contents(e))).getOr([]),showTab:(e,t)=>{s(e,(e=>{const o=Xm.getCandidates(e);return G(o,(e=>vu.getValue(e)===t)).filter((t=>!Xm.isHighlighted(e,t)))}))}}}},apis:{getViewItems:(e,t)=>e.getViewItems(t),showTab:(e,t,o)=>{e.showTab(t,o)}}}),aV=(e,t)=>{Bt(e,"height",t+"px"),Bt(e,"flex-basis",t+"px")},iV=(e,t,o)=>{fi(e,'[role="dialog"]').each((e=>{vi(e,'[role="tablist"]').each((n=>{o.get().map((o=>(Bt(t,"height","0"),Bt(t,"flex-basis","0"),Math.min(o,((e,t,o)=>{const n=nt(e).dom,s=fi(e,".tox-dialog-wrap").getOr(e);let r;r="fixed"===Rt(s,"position")?Math.max(n.clientHeight,window.innerHeight):Math.max(n.offsetHeight,n.scrollHeight);const a=jt(t),i=t.dom.offsetLeft>=o.dom.offsetLeft+Zt(o)?Math.max(jt(o),a):a,l=parseInt(Rt(e,"margin-top"),10)||0,c=parseInt(Rt(e,"margin-bottom"),10)||0;return r-(jt(e)+l+c-i)})(e,t,n))))).each((e=>{aV(t,e)}))}))}))},lV=e=>vi(e,'[role="tabpanel"]'),cV="send-data-to-section",dV="send-data-to-view",uV=(e,t,o)=>{const n=As({}),s=e=>{const t=vu.getValue(e),o=qN(t).getOr({}),s=n.get(),r=bn(s,o);n.set(r)},r=e=>{const t=n.get();vu.setValue(e,t)},a=As(null),i=L(e.tabs,(e=>({value:e.name,dom:{tag:"div",classes:["tox-dialog__body-nav-item"]},components:[ri(o.shared.providers.translate(e.title))],view:()=>[IO.sketch((n=>({dom:{tag:"div",classes:["tox-form"]},components:L(e.items,(e=>nE(n,e,t,o))),formBehaviours:Tl([Gp.config({mode:"acyclic",useTabstopAt:C(n_)}),th("TabView.form.events",[Jr(r),Zr(s)]),Il.config({channels:Bs([{key:cV,value:{onReceive:s}},{key:dV,value:{onReceive:r}}])})])})))]}))),l=(e=>{const t=nc(),o=[Jr((o=>{const n=o.element;lV(n).each((s=>{Bt(s,"visibility","hidden"),o.getSystem().getByDom(s).toOptional().each((o=>{const n=((e,t,o)=>L(e,((n,s)=>{eh.set(o,e[s].view());const r=t.dom.getBoundingClientRect();return eh.set(o,[]),r.height})))(e,s,o),r=(e=>oe(ee(e,((e,t)=>e>t?-1:e<t?1:0))))(n);r.fold(t.clear,t.set)})),iV(n,s,t),Ht(s,"visibility"),((e,t)=>{oe(e).each((e=>rV.showTab(t,e.value)))})(e,o),requestAnimationFrame((()=>{iV(n,s,t)}))}))})),Wr(Sr(),(e=>{const o=e.element;lV(o).each((e=>{iV(o,e,t)}))})),Wr(Ek,((e,o)=>{const n=e.element;lV(n).each((e=>{const o=zl(ft(e));Bt(e,"visibility","hidden");const s=Vt(e,"height").map((e=>parseInt(e,10)));Ht(e,"height"),Ht(e,"flex-basis");const r=e.dom.getBoundingClientRect().height;s.forall((e=>r>e))?(t.set(r),iV(n,e,t)):s.each((t=>{aV(e,t)})),Ht(e,"visibility"),o.each(Rl)}))}))];return{extraEvents:o,selectFirst:!1}})(i);return rV.sketch({dom:{tag:"div",classes:["tox-dialog__body"]},onChangeTab:(e,t,o)=>{const n=vu.getValue(t);Rr(e,Tk,{name:n,oldName:a.get()}),a.set(n)},tabs:i,components:[rV.parts.tabbar({dom:{tag:"div",classes:["tox-dialog__body-nav"]},components:[QN.parts.tabs({})],markers:{tabClass:"tox-tab",selectedClass:"tox-dialog__body-nav-item--active"},tabbarBehaviours:Tl([pk.config({})])}),rV.parts.tabview({dom:{tag:"div",classes:["tox-dialog__body-content"]}})],selectFirst:l.selectFirst,tabSectionBehaviours:Tl([th("tabpanel",l.extraEvents),Gp.config({mode:"acyclic"}),Om.config({find:e=>oe(rV.getViewItems(e))}),jO(A.none(),(e=>(e.getSystem().broadcastOn([cV],{}),n.get())),((e,t)=>{n.set(t),e.getSystem().broadcastOn([dV],{})}))])})},mV=(e,t,o,n,s)=>({dom:{tag:"div",classes:["tox-dialog__content-js"],attributes:{...o.map((e=>({id:e}))).getOr({}),...s?{"aria-live":"polite"}:{}}},components:[],behaviours:Tl([PO(0),$N.config({channel:`${a_}-${t}`,updateState:(e,t)=>A.some({isTabPanel:()=>"tabpanel"===t.body.type}),renderComponents:e=>{const t=e.body;return"tabpanel"===t.type?[uV(t,e.initialData,n)]:[YN(t,e.initialData,n)]},initialData:e})])}),gV=cb.deviceType.isTouch(),pV=(e,t)=>({dom:{tag:"div",styles:{display:"none"},classes:["tox-dialog__header"]},components:[e,t]}),hV=(e,t)=>rR.parts.close(qh.sketch({dom:{tag:"button",classes:["tox-button","tox-button--icon","tox-button--naked"],attributes:{type:"button","aria-label":t.translate("Close")}},action:e,buttonBehaviours:Tl([pk.config({})])})),fV=()=>rR.parts.title({dom:{tag:"div",classes:["tox-dialog__title"],innerHtml:"",styles:{display:"none"}}}),bV=(e,t)=>rR.parts.body({dom:{tag:"div",classes:["tox-dialog__body"]},components:[{dom:{tag:"div",classes:["tox-dialog__body-content"]},components:[{dom:Yh(`<p>${$f(t.translate(e))}</p>`)}]}]}),vV=e=>rR.parts.footer({dom:{tag:"div",classes:["tox-dialog__footer"]},components:e}),yV=(e,t)=>[ik.sketch({dom:{tag:"div",classes:["tox-dialog__footer-start"]},components:e}),ik.sketch({dom:{tag:"div",classes:["tox-dialog__footer-end"]},components:t})],xV=e=>{const t="tox-dialog",o=t+"-wrap",n=o+"__backdrop",s=t+"__disable-scroll";return rR.sketch({lazySink:e.lazySink,onEscape:t=>(e.onEscape(t),A.some(!0)),useTabstopAt:e=>!n_(e),firstTabstop:e.firstTabstop,dom:{tag:"div",classes:[t].concat(e.extraClasses),styles:{position:"relative",...e.extraStyles}},components:[e.header,e.body,...e.footer.toArray()],parts:{blocker:{dom:Yh(`<div class="${o}"></div>`),components:[{dom:{tag:"div",classes:gV?[n,n+"--opaque"]:[n]}}]}},dragBlockClass:o,modalBehaviours:Tl([ah.config({}),th("dialog-events",e.dialogEvents.concat([Kr(Xs(),((e,t)=>{FM.isBlocked(e)||Gp.focusIn(e)})),Wr(Tr(),((e,t)=>{e.getSystem().broadcastOn([c_],{newFocus:t.event.newFocus})}))])),th("scroll-lock",[Jr((()=>{Wa(wt(),s)})),Zr((()=>{Ga(wt(),s)}))]),...e.extraBehaviours]),eventOrder:{[mr()]:["dialog-events"],[kr()]:["scroll-lock","dialog-events","alloy.base.behaviour"],[Cr()]:["alloy.base.behaviour","dialog-events","scroll-lock"],...e.eventOrder}})},wV=e=>qh.sketch({dom:{tag:"button",classes:["tox-button","tox-button--icon","tox-button--naked"],attributes:{type:"button","aria-label":e.translate("Close"),title:e.translate("Close")}},buttonBehaviours:Tl([pk.config({})]),components:[ob("close",{tag:"span",classes:["tox-icon"]},e.icons)],action:e=>{Fr(e,Sk)}}),SV=(e,t,o,n)=>({dom:{tag:"div",classes:["tox-dialog__title"],attributes:{...o.map((e=>({id:e}))).getOr({})}},components:[],behaviours:Tl([$N.config({channel:`${r_}-${t}`,initialData:e,renderComponents:e=>[ri(n.translate(e.title))]})])}),kV=()=>({dom:Yh('<div class="tox-dialog__draghandle"></div>')}),CV=(e,t,o)=>((e,t,o)=>{const n=rR.parts.title(SV(e,t,A.none(),o)),s=rR.parts.draghandle(kV()),r=rR.parts.close(wV(o)),a=[n].concat(e.draggable?[s]:[]).concat([r]);return ik.sketch({dom:Yh('<div class="tox-dialog__header"></div>'),components:a})})({title:o.shared.providers.translate(e),draggable:o.dialog.isDraggableModal()},t,o.shared.providers),OV=(e,t,o,n)=>({dom:{tag:"div",classes:["tox-dialog__busy-spinner"],attributes:{"aria-label":o.translate(e)},styles:{left:"0px",right:"0px",bottom:"0px",top:`${n.getOr(0)}px`,position:"absolute"}},behaviours:t,components:[{dom:Yh('<div class="tox-spinner"><div></div><div></div><div></div></div>')}]}),_V=(e,t,o)=>({onClose:()=>o.closeWindow(),onBlock:o=>{const n=vi(e().element,".tox-dialog__header").map((e=>jt(e)));rR.setBusy(e(),((e,s)=>OV(o.message,s,t,n)))},onUnblock:()=>{rR.setIdle(e())}}),TV="tox-dialog--fullscreen",EV="tox-dialog--width-lg",AV="tox-dialog--width-md",MV=e=>{switch(e){case"large":return A.some(EV);case"medium":return A.some(AV);default:return A.none()}},DV=(e,t)=>{const o=ze(t.element.dom);$a(o,TV)||(Ya(o,[EV,AV]),MV(e).each((e=>Wa(o,e))))},BV=(e,t)=>{const o=ze(e.element.dom),n=Xa(o),s=G(n,(e=>e===EV||e===AV)).or(MV(t));((e,t)=>{H(t,(t=>{((e,t)=>{const o=La(e)?e.dom.classList.toggle(t):((e,t)=>R(Ha(e),t)?Ua(e,t):Pa(e,t))(e,t);ja(e)})(e,t)}))})(o,[TV,...s.toArray()])},IV=(e,t,o)=>ci(xV({...e,firstTabstop:1,lazySink:o.shared.getSink,extraBehaviours:[$O({}),...e.extraBehaviours],onEscape:e=>{Fr(e,Sk)},dialogEvents:t,eventOrder:{[ur()]:[$N.name(),Il.name()],[kr()]:["scroll-lock",$N.name(),"messages","dialog-events","alloy.base.behaviour"],[Cr()]:["alloy.base.behaviour","dialog-events","messages",$N.name(),"scroll-lock"]}})),FV=(e,t={})=>L(e,(e=>"menu"===e.type?(e=>{const o=L(e.items,(e=>{const o=be(t,e.name).getOr(As(!1));return{...e,storage:o}}));return{...e,items:o}})(e):e)),RV=e=>j(e,((e,t)=>"menu"===t.type?j(t.items,((e,t)=>(e[t.name]=t.storage,e)),e):e),{}),NV=(e,t)=>[qr(Xs(),o_),e(wk,((e,o,n,s)=>{zl(ft(s.element)).fold(b,Nl),t.onClose(),o.onClose()})),e(Sk,((e,t,o,n)=>{t.onCancel(e),Fr(n,wk)})),Wr(_k,((e,o)=>t.onUnblock())),Wr(Ok,((e,o)=>t.onBlock(o.event)))],VV=(e,t,o)=>{const n=(t,o)=>Wr(t,((t,n)=>{s(t,((s,r)=>{o(e(),s,n.event,t)}))})),s=(e,t)=>{$N.getState(e).get().each((o=>{t(o.internalDialog,e)}))};return[...NV(n,t),n(Ck,((e,t)=>t.onSubmit(e))),n(xk,((e,t,o)=>{t.onChange(e,{name:o.name})})),n(kk,((e,t,n,s)=>{const r=()=>s.getSystem().isConnected()?Gp.focusIn(s):void 0,a=e=>Et(e,"disabled")||Tt(e,"aria-disabled").exists((e=>"true"===e)),i=ft(s.element),l=zl(i);t.onAction(e,{name:n.name,value:n.value}),zl(i).fold(r,(e=>{a(e)||l.exists((t=>et(e,t)&&a(t)))?r():o().toOptional().filter((t=>!et(t.element,e))).each(r)}))})),n(Tk,((e,t,o)=>{t.onTabChange(e,{newTabName:o.name,oldTabName:o.oldName})})),Zr((t=>{const o=e();vu.setValue(t,o.getData())}))]},zV=(e,t)=>{const o=t.map((e=>e.footerButtons)).getOr([]),n=P(o,(e=>"start"===e.align)),s=(e,t)=>ik.sketch({dom:{tag:"div",classes:[`tox-dialog__footer-${e}`]},components:L(t,(e=>e.memento.asSpec()))});return[s("start",n.pass),s("end",n.fail)]},LV=(e,t,o)=>({dom:Yh('<div class="tox-dialog__footer"></div>'),components:[],behaviours:Tl([$N.config({channel:`${i_}-${t}`,initialData:e,updateState:(e,t)=>{const n=L(t.buttons,(e=>{const t=Xh(((e,t)=>PT(e,e.type,t))(e,o));return{name:e.name,align:e.align,memento:t}}));return A.some({lookupByName:t=>((e,t,o)=>G(t,(e=>e.name===o)).bind((t=>t.memento.getOpt(e))))(e,n,t),footerButtons:n})},renderComponents:zV})])}),HV=(e,t,o)=>rR.parts.footer(LV(e,t,o)),PV=(e,t)=>{if(e.getRoot().getSystem().isConnected()){const o=Om.getCurrent(e.getFormWrapper()).getOr(e.getFormWrapper());return IO.getField(o,t).orThunk((()=>{const o=e.getFooter().bind((e=>$N.getState(e).get()));return o.bind((e=>e.lookupByName(t)))}))}return A.none()},UV=(e,t,o)=>{const n=t=>{const o=e.getRoot();o.getSystem().isConnected()&&t(o)},s={getData:()=>{const t=e.getRoot(),n=t.getSystem().isConnected()?e.getFormWrapper():t;return{...vu.getValue(n),...ce(o,(e=>e.get()))}},setData:t=>{n((n=>{const r=s.getData(),a=bn(r,t),i=((e,t)=>{const o=e.getRoot();return $N.getState(o).get().map((e=>Xn(Yn("data",e.dataValidator,t)))).getOr(t)})(e,a),l=e.getFormWrapper();vu.setValue(l,i),le(o,((e,t)=>{ve(a,t)&&e.set(a[t])}))}))},setEnabled:(t,o)=>{PV(e,t).each(o?Lm.enable:Lm.disable)},focus:t=>{PV(e,t).each(ah.focus)},block:e=>{if(!r(e))throw new Error("The dialogInstanceAPI.block function should be passed a blocking message of type string as an argument");n((t=>{Rr(t,Ok,{message:e})}))},unblock:()=>{n((e=>{Fr(e,_k)}))},showTab:t=>{n((o=>{const n=e.getBody();$N.getState(n).get().exists((e=>e.isTabPanel()))&&Om.getCurrent(n).each((e=>{rV.showTab(e,t)}))}))},redial:r=>{n((n=>{const a=e.getId(),i=t(r),l=FV(i.internalDialog.buttons,o);n.getSystem().broadcastOn([`${s_}-${a}`],i),n.getSystem().broadcastOn([`${r_}-${a}`],i.internalDialog),n.getSystem().broadcastOn([`${a_}-${a}`],i.internalDialog),n.getSystem().broadcastOn([`${i_}-${a}`],{...i.internalDialog,buttons:l}),s.setData(i.initialData)}))},close:()=>{n((e=>{Fr(e,wk)}))},toggleFullscreen:e.toggleFullscreen};return s},WV=(e,t,o,n=!1,s)=>{const r=ca("dialog"),a=ca("dialog-label"),i=ca("dialog-content"),l=e.internalDialog,c=As(l.size),d=MV(c.get()).toArray(),u=Xh(((e,t,o,n)=>ik.sketch({dom:Yh('<div class="tox-dialog__header"></div>'),components:[SV(e,t,A.some(o),n),kV(),wV(n)],containerBehaviours:Tl([jF.config({mode:"mouse",blockerClass:"blocker",getTarget:e=>yi(e,'[role="dialog"]').getOrDie(),snaps:{getSnapPoints:()=>[],leftAttr:"data-drag-left",topAttr:"data-drag-top"}})])}))({title:l.title,draggable:!0},r,a,o.shared.providers)),m=Xh(((e,t,o,n,s)=>mV(e,t,A.some(o),n,s))({body:l.body,initialData:l.initialData},r,i,o,n)),g=FV(l.buttons),p=RV(g),h=Ce(0!==g.length,Xh(((e,t,o)=>LV(e,t,o))({buttons:g},r,o))),f=VV((()=>v),{onBlock:e=>{FM.block(b,((t,n)=>{const s=u.getOpt(b).map((e=>jt(e.element)));return OV(e.message,n,o.shared.providers,s)}))},onUnblock:()=>{FM.unblock(b)},onClose:()=>t.closeWindow()},o.shared.getSink),b=ci({dom:{tag:"div",classes:["tox-dialog","tox-dialog-inline",...d],attributes:{role:"dialog","aria-labelledby":a}},eventOrder:{[ur()]:[$N.name(),Il.name()],[mr()]:["execute-on-form"],[kr()]:["reflecting","execute-on-form"]},behaviours:Tl([Gp.config({mode:"cyclic",onEscape:e=>(Fr(e,wk),A.some(!0)),useTabstopAt:e=>!n_(e)&&("button"!==We(e)||"disabled"!==_t(e,"disabled")),firstTabstop:1}),$N.config({channel:`${s_}-${r}`,updateState:(e,t)=>(c.set(t.internalDialog.size),DV(t.internalDialog.size,e),s(),A.some(t)),initialData:e}),ah.config({}),th("execute-on-form",f.concat([Kr(Xs(),((e,t)=>{Gp.focusIn(e)})),Wr(Tr(),((e,t)=>{e.getSystem().broadcastOn([c_],{newFocus:t.event.newFocus})}))])),FM.config({getRoot:()=>A.some(b)}),eh.config({}),$O({})]),components:[u.asSpec(),m.asSpec(),...h.map((e=>e.asSpec())).toArray()]}),v=UV({getId:x(r),getRoot:x(b),getFooter:()=>h.map((e=>e.get(b))),getBody:()=>m.get(b),getFormWrapper:()=>{const e=m.get(b);return Om.getCurrent(e).getOr(e)},toggleFullscreen:()=>{BV(b,c.get())}},t.redial,p);return{dialog:b,instanceApi:v}};var jV=tinymce.util.Tools.resolve("tinymce.util.URI");const GV=["insertContent","setContent","execCommand","close","block","unblock"],$V=e=>a(e)&&-1!==GV.indexOf(e.mceAction),qV=(e,t,o,n)=>{const s=ca("dialog"),i=CV(e.title,s,n),l=(e=>{const t={dom:{tag:"div",classes:["tox-dialog__content-js"]},components:[{dom:{tag:"div",classes:["tox-dialog__body-iframe"]},components:[e_(A.none(),{dom:{tag:"iframe",attributes:{src:e.url}},behaviours:Tl([pk.config({}),ah.config({})])})]}],behaviours:Tl([Gp.config({mode:"acyclic",useTabstopAt:C(n_)})])};return rR.parts.body(t)})(e),c=e.buttons.bind((e=>0===e.length?A.none():A.some(HV({buttons:e},s,n)))),u=((e,t)=>{const o=(e,t)=>Wr(e,((e,o)=>{n(e,((n,s)=>{t(x,n,o.event,e)}))})),n=(e,t)=>{$N.getState(e).get().each((o=>{t(o,e)}))};return[...NV(o,t),o(kk,((e,t,o)=>{t.onAction(e,{name:o.name})}))]})(0,_V((()=>y),n.shared.providers,t)),m={...e.height.fold((()=>({})),(e=>({height:e+"px","max-height":e+"px"}))),...e.width.fold((()=>({})),(e=>({width:e+"px","max-width":e+"px"})))},p=e.width.isNone()&&e.height.isNone()?["tox-dialog--width-lg"]:[],h=new jV(e.url,{base_uri:new jV(window.location.href)}),f=`${h.protocol}://${h.host}${h.port?":"+h.port:""}`,b=oc(),v=[$N.config({channel:`${s_}-${s}`,updateState:(e,t)=>A.some(t),initialData:e}),th("messages",[Jr((()=>{const t=rc(ze(window),"message",(t=>{if(h.isSameOrigin(new jV(t.raw.origin))){const n=t.raw.data;$V(n)?((e,t,o)=>{switch(o.mceAction){case"insertContent":e.insertContent(o.content);break;case"setContent":e.setContent(o.content);break;case"execCommand":const n=!!d(o.ui)&&o.ui;e.execCommand(o.cmd,n,o.value);break;case"close":t.close();break;case"block":t.block(o.message);break;case"unblock":t.unblock()}})(o,x,n):(e=>!$V(e)&&a(e)&&ve(e,"mceAction"))(n)&&e.onMessage(x,n)}}));b.set(t)})),Zr(b.clear)]),Il.config({channels:{[l_]:{onReceive:(e,t)=>{vi(e.element,"iframe").each((e=>{const o=e.dom.contentWindow;g(o)&&o.postMessage(t,f)}))}}}})],y=IV({id:s,header:i,body:l,footer:c,extraClasses:p,extraBehaviours:v,extraStyles:m},u,n),x=(e=>{const t=t=>{e.getSystem().isConnected()&&t(e)};return{block:e=>{if(!r(e))throw new Error("The urlDialogInstanceAPI.block function should be passed a blocking message of type string as an argument");t((t=>{Rr(t,Ok,{message:e})}))},unblock:()=>{t((e=>{Fr(e,_k)}))},close:()=>{t((e=>{Fr(e,wk)}))},sendMessage:e=>{t((t=>{t.getSystem().broadcastOn([l_],e)}))}}})(y);return{dialog:y,instanceApi:x}},YV=(e,t)=>Xn(Yn("data",t,e)),XV=e=>JS(e,".tox-alert-dialog")||JS(e,".tox-confirm-dialog"),KV=(e,t,o)=>t&&o?[]:[tM.config({contextual:{lazyContext:()=>A.some(Zo(ze(e.getContentAreaContainer()))),fadeInClass:"tox-dialog-dock-fadein",fadeOutClass:"tox-dialog-dock-fadeout",transitionClass:"tox-dialog-dock-transition"},modes:["top"],lazyViewport:t=>XS(e,t.element).map((e=>({bounds:KS(e),optScrollEnv:A.some({currentScrollTop:e.element.dom.scrollTop,scrollElmTop:Xt(e.element).top})}))).getOrThunk((()=>({bounds:tn(),optScrollEnv:A.none()})))})],JV=e=>{const t=e.editor,o=dv(t),n=(e=>{const t=e.shared;return{open:(o,n)=>{const s=()=>{rR.hide(l),n()},r=Xh(PT({name:"close-alert",text:"OK",primary:!0,buttonType:A.some("primary"),align:"end",enabled:!0,icon:A.none()},"cancel",e)),a=fV(),i=hV(s,t.providers),l=ci(xV({lazySink:()=>t.getSink(),header:pV(a,i),body:bV(o,t.providers),footer:A.some(vV(yV([],[r.asSpec()]))),onEscape:s,extraClasses:["tox-alert-dialog"],extraBehaviours:[],extraStyles:{},dialogEvents:[Wr(Sk,s)],eventOrder:{}}));rR.show(l);const c=r.get(l);ah.focus(c)}}})(e.backstages.dialog),s=(e=>{const t=e.shared;return{open:(o,n)=>{const s=e=>{rR.hide(c),n(e)},r=Xh(PT({name:"yes",text:"Yes",primary:!0,buttonType:A.some("primary"),align:"end",enabled:!0,icon:A.none()},"submit",e)),a=PT({name:"no",text:"No",primary:!1,buttonType:A.some("secondary"),align:"end",enabled:!0,icon:A.none()},"cancel",e),i=fV(),l=hV((()=>s(!1)),t.providers),c=ci(xV({lazySink:()=>t.getSink(),header:pV(i,l),body:bV(o,t.providers),footer:A.some(vV(yV([],[a,r.asSpec()]))),onEscape:()=>s(!1),extraClasses:["tox-confirm-dialog"],extraBehaviours:[],extraStyles:{},dialogEvents:[Wr(Sk,(()=>s(!1))),Wr(Ck,(()=>s(!0)))],eventOrder:{}}));rR.show(c);const d=r.get(c);ah.focus(d)}}})(e.backstages.dialog),r=(t,o)=>UN.open(((t,n,s)=>{const r=n,a=((e,t,o)=>{const n=ca("dialog"),s=e.internalDialog,r=CV(s.title,n,o),a=As(s.size),i=MV(a.get()).toArray(),l=((e,t,o)=>{const n=mV(e,t,A.none(),o,!1);return rR.parts.body(n)})({body:s.body,initialData:s.initialData},n,o),c=FV(s.buttons),d=RV(c),u=Ce(0!==c.length,HV({buttons:c},n,o)),m=VV((()=>f),_V((()=>p),o.shared.providers,t),o.shared.getSink),g={id:n,header:r,body:l,footer:u,extraClasses:i,extraBehaviours:[$N.config({channel:`${s_}-${n}`,updateState:(e,t)=>(a.set(t.internalDialog.size),DV(t.internalDialog.size,e),A.some(t)),initialData:e})],extraStyles:{}},p=IV(g,m,o),h={getId:x(n),getRoot:x(p),getBody:()=>rR.getBody(p),getFooter:()=>rR.getFooter(p),getFormWrapper:()=>{const e=rR.getBody(p);return Om.getCurrent(e).getOr(e)},toggleFullscreen:()=>{BV(p,a.get())}},f=UV(h,t.redial,d);return{dialog:p,instanceApi:f}})({dataValidator:s,initialData:r,internalDialog:t},{redial:UN.redial,closeWindow:()=>{rR.hide(a.dialog),o(a.instanceApi)}},e.backstages.dialog);return rR.show(a.dialog),a.instanceApi.setData(r),a.instanceApi}),t),a=(n,s,r,a)=>UN.open(((n,i,l)=>{const c=YV(i,l),d=nc(),u=e.backstages.popup.shared.header.isPositionedAtTop(),m=()=>d.on((e=>{Gh.reposition(e),o&&u||tM.refresh(e)})),g=WV({dataValidator:l,initialData:c,internalDialog:n},{redial:UN.redial,closeWindow:()=>{d.on(Gh.hide),t.off("ResizeEditor",m),d.clear(),r(g.instanceApi)}},e.backstages.popup,a.ariaAttrs,m),p=ci(Gh.sketch({lazySink:e.backstages.popup.shared.getSink,dom:{tag:"div",classes:[]},fireDismissalEventInstead:a.persistent?{event:"doNotDismissYet"}:{},...u?{}:{fireRepositionEventInstead:{}},inlineBehaviours:Tl([th("window-manager-inline-events",[Wr(Or(),((e,t)=>{Fr(g.dialog,Sk)}))]),...KV(t,o,u)]),isExtraPart:(e,t)=>XV(t)}));return d.set(p),Gh.showWithinBounds(p,di(g.dialog),{anchor:s},(()=>{const e=t.inline?wt():ze(t.getContainer()),o=Zo(e);return A.some(o)})),o&&u||(tM.refresh(p),t.on("ResizeEditor",m)),g.instanceApi.setData(c),Gp.focusIn(g.dialog),g.instanceApi}),n),i=(o,n,s,r)=>UN.open(((o,a,i)=>{const l=YV(a,i),c=nc(),d=e.backstages.popup.shared.header.isPositionedAtTop(),u=()=>c.on((e=>{Gh.reposition(e),tM.refresh(e)})),m=WV({dataValidator:i,initialData:l,internalDialog:o},{redial:UN.redial,closeWindow:()=>{c.on(Gh.hide),t.off("ResizeEditor ScrollWindow ElementScroll",u),c.clear(),s(m.instanceApi)}},e.backstages.popup,r.ariaAttrs,u),g=ci(Gh.sketch({lazySink:e.backstages.popup.shared.getSink,dom:{tag:"div",classes:[]},fireDismissalEventInstead:r.persistent?{event:"doNotDismissYet"}:{},...d?{}:{fireRepositionEventInstead:{}},inlineBehaviours:Tl([th("window-manager-inline-events",[Wr(Or(),((e,t)=>{Fr(m.dialog,Sk)}))]),tM.config({contextual:{lazyContext:()=>A.some(Zo(ze(t.getContentAreaContainer()))),fadeInClass:"tox-dialog-dock-fadein",fadeOutClass:"tox-dialog-dock-fadeout",transitionClass:"tox-dialog-dock-transition"},modes:["top","bottom"],lazyViewport:e=>XS(t,e.element).map((e=>({bounds:KS(e),optScrollEnv:A.some({currentScrollTop:e.element.dom.scrollTop,scrollElmTop:Xt(e.element).top})}))).getOrThunk((()=>({bounds:tn(),optScrollEnv:A.none()})))})]),isExtraPart:(e,t)=>XV(t)}));return c.set(g),Gh.showWithinBounds(g,di(m.dialog),{anchor:n},(()=>e.backstages.popup.shared.getSink().toOptional().bind((e=>{const o=XS(t,e.element).map((e=>KS(e))).getOr(tn()),n=Zo(ze(t.getContentAreaContainer())),s=en(n,o);return A.some(Jo(s.x,s.y,s.width,s.height-15))})))),tM.refresh(g),t.on("ResizeEditor ScrollWindow ElementScroll ResizeWindow",u),m.instanceApi.setData(l),Gp.focusIn(m.dialog),m.instanceApi}),o);return{open:(t,o,n)=>{if(!u(o)){if("toolbar"===o.inline)return a(t,e.backstages.popup.shared.anchors.inlineDialog(),n,o);if("bottom"===o.inline)return i(t,e.backstages.popup.shared.anchors.inlineBottomDialog(),n,o);if("cursor"===o.inline)return a(t,e.backstages.popup.shared.anchors.cursor(),n,o)}return r(t,n)},openUrl:(o,n)=>((o,n)=>UN.openUrl((o=>{const s=qV(o,{closeWindow:()=>{rR.hide(s.dialog),n(s.instanceApi)}},t,e.backstages.dialog);return rR.show(s.dialog),s.instanceApi}),o))(o,n),alert:(e,t)=>{n.open(e,t)},close:e=>{e.close()},confirm:(e,t)=>{s.open(e,t)}}};on.add("silver",(e=>{(e=>{mb(e),(e=>{const t=e.options.register,o=e=>f(e,r)?{value:Rw(e),valid:!0}:{valid:!1,message:"Must be an array of strings."},n=e=>h(e)&&e>0?{value:e,valid:!0}:{valid:!1,message:"Must be a positive number."};t("color_map",{processor:o,default:["#BFEDD2","Light Green","#FBEEB8","Light Yellow","#F8CAC6","Light Red","#ECCAFA","Light Purple","#C2E0F4","Light Blue","#2DC26B","Green","#F1C40F","Yellow","#E03E2D","Red","#B96AD9","Purple","#3598DB","Blue","#169179","Dark Turquoise","#E67E23","Orange","#BA372A","Dark Red","#843FA1","Dark Purple","#236FA1","Dark Blue","#ECF0F1","Light Gray","#CED4D9","Medium Gray","#95A5A6","Gray","#7E8C8D","Dark Gray","#34495E","Navy Blue","#000000","Black","#ffffff","White"]}),t("color_map_background",{processor:o}),t("color_map_foreground",{processor:o}),t("color_cols",{processor:n,default:Lw(e)}),t("color_cols_foreground",{processor:n,default:Hw(e,Iw)}),t("color_cols_background",{processor:n,default:Hw(e,Fw)}),t("custom_colors",{processor:"boolean",default:!0}),t("color_default_foreground",{processor:"string",default:Vw}),t("color_default_background",{processor:"string",default:Vw})})(e),(e=>{const t=e.options.register;t("contextmenu_avoid_overlap",{processor:"string",default:""}),t("contextmenu_never_use_native",{processor:"boolean",default:!1}),t("contextmenu",{processor:e=>!1===e?{value:[],valid:!0}:r(e)||f(e,r)?{value:zI(e),valid:!0}:{valid:!1,message:"Must be false or a string."},default:"link linkchecker image editimage table spellchecker configurepermanentpen"})})(e)})(e);let t=()=>tn();const{dialogs:o,popups:n,renderUI:s}=tR(e,{getPopupSinkBounds:()=>t()});GS(e,n.backstage.shared);const a=JV({editor:e,backstages:{popup:n.backstage,dialog:o.backstage}});return{renderUI:()=>{const o=s();return XS(e,n.getMothership().element).each((e=>{t=()=>KS(e)})),o},getWindowManagerImpl:x(a),getNotificationManagerImpl:()=>((e,t,o)=>{const n=t.backstage.shared,s=()=>{const t=Zo(ze(e.getContentAreaContainer())),o=tn(),n=Qi(o.x,t.x,t.right),s=Qi(o.y,t.y,t.bottom),r=Math.max(t.right,o.right),a=Math.max(t.bottom,o.bottom);return A.some(Jo(n,s,r-n,a-s))};return{open:(t,r)=>{const a=()=>{r(),Gh.hide(l)},i=ci(sb.sketch({text:t.text,level:R(["success","error","warning","warn","info"],t.type)?t.type:void 0,progress:!0===t.progressBar,icon:t.icon,closeButton:t.closeButton,onAction:a,iconProvider:n.providers.icons,translationProvider:n.providers.translate})),l=ci(Gh.sketch({dom:{tag:"div",classes:["tox-notifications-container"]},lazySink:n.getSink,fireDismissalEventInstead:{},...n.header.isPositionedAtTop()?{}:{fireRepositionEventInstead:{}}}));o.add(l),h(t.timeout)&&t.timeout>0&&$h.setEditorTimeout(e,(()=>{a()}),t.timeout);const c={close:a,reposition:()=>{const t=di(i),o={maxHeightFunction:gc()},r=e.notificationManager.getNotifications();if(r[0]===c){const e={...n.anchors.banner(),overrides:o};Gh.showWithinBounds(l,t,{anchor:e},s)}else F(r,c).each((e=>{const n=r[e-1].getEl(),a={type:"node",root:wt(),node:A.some(ze(n)),overrides:o,layouts:{onRtl:()=>[gl],onLtr:()=>[gl]}};Gh.showWithinBounds(l,t,{anchor:a},s)}))},text:e=>{sb.updateText(i,e)},settings:t,getEl:()=>i.element.dom,progressBar:{value:e=>{sb.updateProgress(i,e)}}};return c},close:e=>{e.close()},getArgs:e=>e.settings}})(e,{backstage:n.backstage},n.getMothership())}}))}();admin/assets/vendor/tinymce/js/tinymce/license.txt000064400000002116151213255300016347 0ustar00MIT License

Copyright (c) 2022 Ephox Corporation DBA Tiny Technologies, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
admin/assets/vendor/tinymce/CHANGELOG.md000064400001002144151213255300013713 0ustar00# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## 6.8.3 - 2024-02-08

### Changed
- Update outbound TinyMCE website links. #TINY-10491

### Fixed
- The floating toolbar would not be fully visible when the editor was placed inside a scrollable container. #TINY-10335
- ShadowDOM skin was not loaded properly when used with js bundling feature. #TINY-10451

## 6.8.2 - 2023-12-11

### Fixed
- Bespoke select toolbar buttons including `fontfamily`, `fontsize`, `blocks`, and `styles` incorrectly used plural words in their accessible names. #TINY-10426
- The `align` bespoke select toolbar button had an accessible name that was misleading and grammatically incorrect in certain cases. #TINY-10435
- Accessible names of bespoke select toolbar buttons including `align`, `fontfamily`, `fontsize`, `blocks`, and `styles` were incorrectly translated. #TINY-10426 #TINY-10435
- Clicking inside table cells with heavily nested content could cause the browser to hang. #TINY-10380
- Toggling a list that contains an LI element having another list as its first child would remove the remaining content within that LI element. #TINY-10414

## 6.8.1 - 2023-11-29

### Improved
- Colorpicker now includes the Brightness/Saturation selector and hue slider in the keyboard navigable items. #TINY-9287

### Fixed
- Translation syntax for announcement text in the table grid was incorrectly formatted. #TINY-10141
- The functions `schema.isWrapper` and `schema.isInline` did not exclude node names that started with `#` which should not be considered as elements. #TINY-10385

## 6.8.0 - 2023-11-22

### Added
- CSS files are now also generated as separate JS files to improve bundling of all resources. #TINY-10352
- Added new `StylesheetLoader.loadRawCss` API that can be used to load CSS into a style element. #TINY-10352
- Added new `StylesheetLoader.unloadRawCss` API that can be used to unload CSS that was loaded into a style element. #TINY-10352
- Added `force_hex_color` editor option. Option `'always'` converts all RGB & RGBA colours to hex, `'rgb_only'` will only convert RGB and *not* RGBA colours to hex, `'off'` won't convert any colours to hex. #TINY-9819
- Added `default_font_stack` editor option that makes it possible to define what is considered a system font stack. #TINY-10290
- New `sandbox_iframes` option that controls whether iframe elements will be added a `sandbox=""` attribute to mitigate malicious intent. #TINY-10348
- New `convert_unsafe_embeds` option that controls whether `<object>` and `<embed>` elements will be converted to more restrictive alternatives, namely `<img>` for image MIME types, `<video>` for video MIME types, `<audio>` audio MIME types, or `<iframe>` for other or unspecified MIME types. #TINY-10349

### Improved
- Improved the tooltips of picker buttons for the urlinput components in the "Insert/Edit Image" and "Insert/Edit Link" dialogs. #TINY-10155
- Inline dialog will now respect `size: 'large'` argument in the dialog spec. #TINY-10209
- SVG elements and their children are now retained when configured as valid elements. #TINY-10237
- Bespoke select toolbar buttons including `align`, `fontfamily`, `fontsize`, `blocks`, and `styles` did not include their visible text labels in their accessible names. #TINY-10147

### Fixed
- Editor would convert urls that are not http/s or relative resulting in broken links. #TINY-10153
- Calling the `setProgressState` API would cause the window to be scrolled when the editor wasn't fully visible. #TINY-10172
- Applying heading formatting to the content of the `summary` element extended its application to the content of the parent `details` element. #TINY-10154
- Setting the content with an attribute that contains a self-closing HTML tag did not preserve the tag. #TINY-10088
- Screen readers now announce the selected color of `forecolor` and `backcolor` buttons. #TINY-9796
- Resize handles would not appear on editable images in a non-editable context. #TINY-10118
- Corrections and copy-edits to the `addIcon` API documentation. #TINY-10230
- The dialog size was not updated when the `size` argument was changed when redialling a dialog. #TINY-10209
- Toggling a list that contains an LI element having another list as its first child would remove the remaining content within that LI element. #TINY-10213
- Custom block element wasn't considered block element in some cases. #TINY-10139
- The editor no longer forcefully takes focus when a notification closes while the focus is outside of the editor. #TINY-10282
- An empty element with a `contenteditable="true"` attribute within a table cell would not be treated as content and get removed if backspace or delete was being pressed. #TINY-10010
- Removing an LI element containing a `details` element would incorrectly merge its content. #TINY-10133
- The function `getModifierState` did not work on events passed through the editor as expected. #TINY-10263
- Search and replace plugin would incorrectly find matching text inside non-editable root elements. #TINY-10162
- Removed use of `async` for editor rendering which caused visual blinking when reloading the editor in-place. #TINY-10249
- Toggling off one format on the caret when multiple formats was toggled on would toggle all of them off. #TINY-10132
- Merging an external `p` inside a `list` via delete or backspace would incorrectly try to move a parent element inside a child element. #TINY-10289
- Directionality would not be consistently applied to the entire `accordion` block. #TINY-10291
- The `fontsizeinput` toolbar item was causing console warnings when toolbar items were clicked. #TINY-10330
- Menubar buttons with more than one word would sometimes wrap into two lines. #TINY-10343
- Creating a new `li` via enter inside a nested list would not inherit styles from the source `li`. #TINY-10316
- Screen readers now announce the active autocompleter item. #TINY-9393
- Dialog collection items would not display any icons chosen from icon pack. #TINY-10174

## 6.7.3 - 2023-11-15

### Changed
- Zero width no-break space (U+FEFF) characters are removed from content passed to `setContent`, `insertContent`, and `resetContent` APIs. #TINY-10305
- Zero width no-break space (U+FEFF) characters in initial content are not loaded into the editor upon initialization. #TINY-10305

### Fixed
- Specific HTML content containing unescaped text nodes caused mXSS when using undo/redo. #TINY-10305
- Specific HTML content containing unescaped text nodes caused mXSS when using the `getContent` and `setContent` APIs with the `format: 'raw'` option, which also affected the `resetContent` API and the draft restoration feature of the Autosave plugin. #TINY-10305

## 6.7.2 - 2023-10-25

### Fixed
- The function `getModifierState` did not work on events passed through the editor as expected. #TINY-10263
- Removed use of `async` for editor rendering which caused visual blinking when reloading the editor in-place. #TINY-10249
- Toggling a list that contains an LI element having another list as its first child would remove the remaining content within that LI element. #TINY-10213
- List items containing a list element surrounded by non list nodes would cause some list operations to fail. #TINY-10268
- The `accordion` toggling with the Enter key press would behave incorrectly on Safari. #TINY-10177
- Deleting a range that included both text of a cell and a nested table in that cell removed the entire content of the cell. #TINY-10254

## 6.7.1 - 2023-10-19

### Fixed
- Specific HTML content caused mXSS when using undo/redo. #TINY-10180
- Specific HTML content caused mXSS when using the `getContent` and `setContent` APIs with the `format: 'raw'` option, which also affected the `resetContent` API and the draft restoration feature of the Autosave plugin. #TINY-10236
- Notification messages containing HTML were not properly XSS sanitized before being displayed. #TINY-10286

## 6.7.0 - 2023-08-30

### Added
- New `help_accessibility` option displays the keyboard shortcut to open the in-application help in the status bar. #TINY-9379
- Added a new `InsertNewBlockBefore` command which inserts an empty block before the block containing the current selection. #TINY-10022
- Added a new `InsertNewBlockAfter` command which inserts an empty block after the block containing the current selection. #TINY-10022

### Improved
- Adding a newline after a table would, in some specific cases, not work. #TINY-9863
- Menus now have a slight margin at the top and bottom to more clearly separate them from the frame edge. #TINY-9978
- Updated **More** toolbar button tooltip text from *More...* to *Reveal or hide additional toolbar items*. #TINY-9629
- Where multiple case sensitive variants of a translation key are provided, they will now all be preserved in the translation object instead of just the lowercase variant. #TINY-10115
- Improved screen reader announcements of the column and row selection in the grid presented by the **Table** menu and toolbar item. #TINY-10140
- Improved the keyboard focus visibility for links inside dialogs. #TINY-10124

### Changed
- Change `UndoLevelType` from `enum` to union type so that it is easier to use. #TINY-9764
- The pattern replacement removed spaces if they were contained within a tag that only contained a space and the text to replace. #TINY-9744
- If loading content CSS takes more than 500ms, the editor will be set to an *in progress* state until the CSS is ready. #TINY-10008

### Fixed
- Applying an ordered or unordered list to a selected checklist incorrectly turned the list into paragraphs. #TINY-9975
- Returning an empty string in a custom context menu update function resulted in a small white line appearing on right-click and the browser-native context menu would not present. #TINY-9842
- For sufficiently long URLs and sufficiently wide windows, URL autocompletion hid middle portions of the URL from view. #TINY-10017
- Numeric input in toolbar items did not disable when a switching from edit to read-only mode. #TINY-10129
- The Quick Toolbars plugin showed text alignment buttons on pagebreaks. #TINY-10054
- Creating lists in empty blocks sometimes, and incorrectly, converted adjacent block elements into list items. #TINY-10136
- Creating a list from multiple `<div>` elements only created a partial list. #TINY-9872
- Tab navigation incorrectly stopped around `iframe` dialog components. #TINY-9815
- It was possible to delete the sole empty block immediately before a `<details>` element if it was nested within another `<details>` element. #TINY-9965
- Deleting `<li>` elements that only contained `<br>` tags sometimes caused a crash. #TINY-6888
- It was possible to remove the `<summary>` element from a `<details>` element by dragging and dropping. #TINY-9960
- It was possible to break `<summary>` elements if content containing block elements was dragged-and-dropped inside them. #TINY-9960
- Contents were not removed from the drag start source if dragging and dropping internally into a transparent block element. #TINY-9960
- Using the Media plugin unexpectedly changed `<script>` tags in the editor body to `<image>` tags. #TINY-10007
- In some circumstances, pressing the **Enter** key scrolled the entire page. #TINY-9828
- The border styles of a table were incorrectly split into a longhand form after table dialog updates. #TINY-9843
- Links in **Help → Help → Plugins** and **Help → Help → Version** were not navigable by keyboard. #TINY-10071
- Fixed the inability to insert content next to the `<details>` element when it is the first or last content element. Pressing the **Up** or **Down** arrow key now inserts a block element before or after the `<details>` element. #TINY-9827
- An empty element with a `contenteditable="true"` attribute within a noneditable root was deleted when the Backspace key was pressed. #TINY-10011
- The `color_cols` option was not respected when set to the value 5 with a custom `color_map` specified. #TINY-10126
- In Safari on macOS, deleting backwards within a `<summary>` element removed the entire `<details>` element if it had no other content. #TINY-10123

## 6.6.2 - 2023-08-09

### Fixed
- An "Uncaught TypeError: Cannot read properties of null" error would sometimes be thrown when updating the content of a `streamContent: true` iframe dialog component. #TINY-10128

## 6.6.1 - 2023-08-02

### Added
- Restored filtering option, `pad_empty_with_br`. Set to `true` to pad empty block elements with `<br>` tags instead of the `&nbsp;` character entity. #TINY-9861

### Improved
- When Safari is the host browser, content updates for iframe dialog components with `streamContent: true` set are now throttled to 500ms intervals. #TINY-10097

### Changed
- API comments/documentation: a markup typo and run-on sentences both corrected. #TINY-10073

### Fixed
- On Safari and Firefox, scroll positions were not always maintained when updating the content of a `streamContent: true` iframe dialog component. #TINY-10078
- On Safari, iframe dialog components did not consistently autoscroll to the end of the scrollable area when `streamContent: true` was set. #TINY-10109
- Scrolling behavior was inconsistent when updating a `streamContent: true` iframe dialog component with content lacking an HTML document type declaration. #TINY-10110
- A warning message was sometimes printed to the browser console when closing a dialog that contained an iframe component. #TINY-10070
- Lists could not be created within editable areas nested inside non-editable areas. #TINY-10000
- On Safari and Firefox, the border around `iframe` dialog components did not highlight when focused. #TINY-10101
- Right-clicking on an image in a non-editable context opened the Image context menu. #TINY-10016
- The `color_cols` option was not respected when a custom `color_map` was defined. #TINY-10098
- The `color_cols` options were were not rounded to the nearest number when set to a decimal number. #TINY-9737

## 6.6.0 - 2023-07-12

### Added
- Added a new property value — `bottom` — for inline dialog configurations that anchors the dialog to the bottom of the editor. #TINY-9888
- Added a new property — `persistent` — for inline dialog configurations that will stop the dialog closing when clicking away from it. #TINY-9991
- New `ai`, `ai-prompt` and `send` icons. #TINY-9942
- Added a new property — `streamContent` — for the `iframe` dialog component. This causes `setData()` to update content without reloading the frame, and end scroll positions will be maintained as new content streams in. #TINY-10032
- AI Assistant plugin toolbar items added to the default toolbar and AI Assistant plugin menu items added to the default menu bar. #TINY-9939
- Added a new property — `border` — for the `iframe` dialog component that allows a border to be added. #TINY-10049
- Added a new property — `align` — for the label dialog component that controls text alignment. #TINY-10058

### Improved
- When defining a modal or inline dialog, if the buttons property is an empty array, or is not defined at all, the footer will now no longer be rendered. #TINY-9996
- The `iframe` dialog component now has a minimum height of 200px. #TINY-10059
- Improved detection of scrollable containers when the `ui_mode: 'split'` option is set. #TINY-9385

### Changed
- The icon in an `alertbanner` dialog component is no longer clickable if the _URL_ field is not specified. #TINY-10013

### Fixed
- Fixed an issue that caused the inline dialog `size` setting to have no effect. #TINY-10015
- Fixed an issue that prevented the close button from being clicked when the dialog was blocked. #TINY-10056

## 6.5.1 - 2023-06-19

### Fixed
- Fixed a regression where pasting an image url would result in the url being inserted as plain text instead of the image being inserted. #TINY-9997
- It was not possible to press space to insert a space character inside a summary element on Firefox. #TINY-9964

## 6.5.0 - 2023-06-12

### Added
- Support for the `h` hash parameter in Vimeo video URLs in the Media plugin. #TINY-9830
- New `table_merge_content_on_paste` option which disables the merging behaviour when pasting a table inside an existing table. #TINY-9808
- New optional `defaultExpandedIds` and `onToggleExpand` options to the `tree` component config. #TINY-9653
- New optional `defaultSelectedId` option to the `tree` component config. #TINY-9715
- New `accordion` plugin with the `InsertAccordion` command. #TINY-9730
- New `accordion` and `accordion-toggle` icons. #TINY-9789
- New `details_initial_state` and `details_serialized_state` options. #TINY-9732
- New `init_content_sync` option that initializes the editor iframe using `document.write` instead of `srcdoc`. #TINY-9818
- New `newdocument_content` option that sets the content presented in the editor on choosing *File -> New document* or pressing the *New document* toolbar button. #TINY-9839
- New `editable_root` option that can be set to `false` to prevent editing of the editor’s root element. #TINY-9839
- New `editor.setEditableRoot` API that sets the editable state of the editor root element. #TINY-9839
- New `editor.hasEditableRoot` API that returns `true` or `false` depending on the editable state of the editor root element. #TINY-9839
- New `EditableRootStateChange` event that gets dispatched when the state of the editable root is changed. #TINY-9839
- Added Oxide styles for `dl`, `dt`, `dd`, `ol`, and `strong` elements in dialog body content. #TINY-9919

### Improved
- Screen readers can now announce highlighted items listed in the Link dialog’s link combobox. #TINY-9280
- The `icon` field for a dialog’s footer `togglebutton` is no longer mandatory. #TINY-9757
- Toolbar buttons and menu items now present as disabled when they cannot be used because a selected element has a `contenteditable="false"` attribute. #TINY-9669
- Help text displayed at *Help -> Help -> Keyboard Navigation* re-written. #DOC-1936
- Translations added for Help text displayed at *Help > Help > Keyboard Navigation*. #TINY-9633
- For word count purposes these characters are now considered punctuation marks: *$*, *~*, *+*, *|*, *№*, and *`*. They no longer increase a document’s word count. #TINY-8122
- Updated the `codesample` plugin dialog and the `template` plugin dialog to use the `listbox` component to match other dialogs. #TINY-9630
- If the selection contains more than one table cell, Quickbar toolbars are now positioned in the middle of the selection horizontally. #TINY-8297
- Exposed `dataTransfer` property of drag and drop events for elements with a `contenteditable="false"` attribute. #TINY-9601
- Screen readers now announce instructions for resizing the editor using arrow keys, when the resize handle is focused. #TINY-9793
- Dialog `tabpanel` tab labels are now allowed to word wrap for better readability with long labels. #TINY-9947
- Added newlines before and after `details` elements in the output HTML. #TINY-9959
- Added padding for empty `summary` elements so that they can be properly edited. #TINY-9959

### Changed
- The `caption`, `address` and `dt` elements no longer incorrectly allow non-inline child elements when the editor schema is set to _HTML 4_. #TINY-9768
- SVG icons for back and foreground colors now use `class` instead of `id` to identify SVG elements that should change color. #TINY-9844
- Anchor tag elements — `<a>` — no longer incorrectly allow non-inline child elements when the editor schema is set to _HTML 4_. #TINY-9805
- Help dialog was restored to `medium` width for better readability. #TINY-9947

### Fixed
- Right-clicking on a merge tag instance presented different highlighting depending on the host browser. #TINY-9848
- When macOS was the host operating system, pressing *Command+backspace* did not add an undo level. #TINY-8910
- *Ctrl+backspace* and *Ctrl+delete* did not restore the correct insertion point position after a redo operation. #TINY-8910
- In the `tree` component, a selected item in a directory would not stay selected after collapsing the directory. #TINY-9715
- Enabling or Disabling checkboxes would not set the correct classes and attributes. #TINY-4189
- Entering a newline would, in some setups, place the insertion point in the wrong paragraph. #TINY-9822
- Redial would, in some situations, cause select elements not to have an initial value selected when they should have. #TINY-9679
- The Table toolbar was visible even if the table was within a host element with a `contenteditable="false"` attribute set. #TINY-9664
- Quickbar toolbars were incorrectly shown for elements with a `contenteditable="false"` attribute set in a root with a `contenteditable="false"` attribute set. #TINY-9460
- When Chrome was the host browser, adding a newline when the insertion point was placed after a table could, in some specific situations, not generate the expected newline. #TINY-9813
- Show the calculated height and width of Media Embed elements in the `media` plugin dialog. #TINY-8714
- Removing an image that failed to upload from an empty paragraph left the paragraph without a padding `<br>` tag. #TINY-9696
- Allow a Media Embed element to be correctly resized when using the `media` plugin dialog by converting the Media Embed element to a standalone iframe. #TINY-8714
- In some circumstances, an inline alert in the _Search and Replace_ dialog persisted when it was not necessary. #TINY-9704
- Context toolbars displayed the incorrect status for the `advlist` plugin buttons. #TINY-9680
- In Safari running on iOS, Korean characters merged onto the previous line upon typing after inserting a newline by pressing Enter. #TINY-9746
- Initiating the editor with a table as the first element resulted in resize handles being displayed around the table even when the editor did not have focus. #TINY-9748
- If the insertion point was between two images, pressing the Backspace key would, in some situations, delete the image after the insertion point instead of the image before the insertion point. #TINY-9807
- Directionality commands could set the `dir` attribute on elements with a `contenteditable="false"` attribute set when these elements were within a root with a `contenteditable="false"` attribute set. #TINY-9662
- The content of the dialog body could not be scrolled. #TINY-9668
- Some toolbar items, when in a not-enabled state, did not render the `not-allowed` mouse pointer. #TINY-9758
- Formats were incorrectly applied to the closest editable element if the selection was in a `contenteditable="false"` context. #TINY-9678
- Formats were incorrectly removed from the closest editable element if the selection was in a `contenteditable="false"` context. #TINY-9678
- Formatter API, `canApply`, was not returning `false` when the selection was in a `contenteditable="false"` context. #TINY-9678
- When dragging image elements and dropping the image in the editor the `dragend` event would sometimes not fire when Firefox was the host browser. #TINY-9694
- It was possible to remove links in noneditable contents with the `unlink` editor command. #TINY-9739
- Direction was not visually changing when using the Directionality plugin on an element which had the `direction` CSS property set. #TINY-9314
- Whitespace between transparent elements was incorrectly converted into empty paragraphs. #TINY-9761
- Popups were not constrained within the scrollable container when in a shadow root. #TINY-9743
- Pressing arrow keys inside RTL elements would move the insertion point in an incorrect direction when moving over elements with the `contenteditable` attribute set to `false`. #TINY-9565
- Inserting two tables consecutively without focus in the editor resulted in the second table being inserted at the wrong position. #TINY-3909
- Pasting content into the editor did not fire `beforeinput` and `input` events. #TINY-9829
- In some cases, exiting a `blockquote` element could fail when the insertion point was positioned at the end of the `blockquote`. #TINY-9794
- Templates containing an `<html>` tag were not parsed before being rendered for preview. #TINY-9867
- Typing after deleting formatted content could remove a space at the start of the typing. #TINY-9310
- Invalid markup in Notification and Dialog close buttons. #TINY-9849
- In dialogs, an incorrect `aria-describedby` attribute caused the dialog body to be announced when using a screen reader. #TINY-9816
- The sticky toolbar did not render correctly when transitioning from the custom editor view to the main view. #TINY-9814
- Saving the Table Properties dialog after changing properties unrelated to cells would overwrite cell properties set by the Cell Properties dialog. #TINY-9837
- Fixed the constrained bounds calculation for dismissal of the toolbar when using `toolbar_location: 'bottom'`. #TINY-9718
- Pressing the Backspace or Delete key when the insertion point was within a `details` element resulted in broken markup. #TINY-9884
- Making the selection into a list did not work if the selection included a block element with a `contenteditable="false"` attribute. #TINY-9823
- Inserting elements in the middle of the summary caused two summaries to appear within `details` elements. #TINY-9885

## 6.4.2 - 2023-04-26

### Fixed
- The editor displayed a notification error when it failed to retrieve a blob image uri. #TINY-9604
- Tab navigation no longer incorrectly stops at menu buttons within toolbar groups. #TINY-9723
- The `urlinput` dialog component would not open the type-ahead dropdown when the input value was reset to an empty string. #TINY-9717
- Redial would, in some circumstances, cause elements to not have an initial value selected when they should have. #TINY-9679
- When hovering over tree dialog components the mouse pointer rendered incorrectly. #TINY-9692
- The `tox-button` and `tox-button-secondary` buttons now support the `hover`, `active`, `focus`, and `disabled` states. #TINY-9713
- Setting an invalid unit in the `fontsizeinput` changed it to the default value instead of reverting it to the previous, and valid, value. #TINY-9754
- Selection was not correctly scrolled horizontally into view when using the `selection.scrollIntoView` API. #TINY-9747
- The contextual toolbar displayed the status of Advanced List Premium plugin icons incorrectly. #TINY-9680
- The `quickimage` toolbar button failed to insert images selected from the local computer when running on Google Chrome for macOS. #TINY-9769

## 6.4.1 - 2023-03-29

### Fixed
- The `fontsizeinput` increase and decrease size buttons now work on TinyMCE mobile. #TINY-9725
- The TinyMCE editor toolbar is now accessible for all screen widths; it no longer collapses into an inaccessible vertical line when the screen is scrolled horizontally. #TINY-9646
- Reverted the changes made, in TinyMCE 6.4.0, to UI button colors in focus, active, and enabled states. #TINY-9176

## 6.4.0 - 2023-03-15

### Added
- New `tree` component that can be used in dialog body panel. #TINY-9532
- `renderUI` property in the `Theme` type can now return a `Promise<RenderResult>` instead of `RenderResult`. #TINY-9556
- New `isEditable` API to `editor.selection` that returns true or false if the current selection is editable. #TINY-9462
- New `isEditable` API to `editor.dom` that returns true or false if the specified node is editable. #TINY-9462
- New `setText` and `setIcon` methods added to menu button and toolbar button API. #TINY-9268
- New `highlight_on_focus` option which enables highlighting the content area on focus. #TINY-9277
- New `fontsizeinput` toolbar item which allows the user to set the size via input and also increase and decrease it with `+` and `-` buttons. #TINY-9429
- Added `skipFocus` option to the `ToggleToolbarDrawer` command to preserve focus. #TINY-9337
- New `font_size_input_default_unit` option allows entry of numbers without a unit in `fontsizeinput`. They are then parsed as the set unit. If `font_size_input_default_unit` is not set the default is `pt`. #TINY-9585
- New `group` and `togglebutton` in view. #TINY-9523
- New `togglebutton` in dialog footer buttons. #TINY-9523
- Added `toggleFullscreen` to dialog API. #TINY-9528
- New `text-size-increase` and `text-size-decrease` icons. #TINY-9530
- New `xss_sanitization` option to allow disabling of XSS sanitization. #TINY-9600
- Added the top right close button of modal dialogs to the tabbing order. The 'x' button in these dialogs can now be accessed using keyboard navigation. #TINY-9520
- New `ui_mode` option for editor in scrollable containers support. #TINY-9414
- The sidebar element now has the accessibility role `region` when visible and the accessibility role `presentation` when hidden. #TINY-9517
- The `tox-custom-editor` class now has a border highlight when it is selected. #TINY-9673
- An element could be dropped onto the decendants of an element with a `contenteditable="false"` attribute. #TINY-9364
- Checkmark did not show in menu color swatches. #TINY-9395
- Add support for navigating inside the tree component using arrow keys and shift key. #TINY-9614

### Improved
- Direct invalid child text nodes of list elements are now wrapped in list item elements. #TINY-4818
- Templates are now be parsed before preview and insertion to make preview consistent with inserted template content and prevent XSS. #TINY-9244
- Pressing backspace on an empty line now preserves formatting on the previous empty line. #TINY-9454
- Pressing enter inside the `inputfontsize` input field now moves focus back into the editor content. #TINY-9598
- Drag and drop events for elements with a `contenteditable="false"` attribute now includes target element details. #TINY-9599
- Updated focus, active, and enabled colors of UI buttons for improved contrast against the UI color. #TINY-9176

### Changed
- The `link` plugins context menu items no longer appears for links that include elements with a `contenteditable="false"` attribute. #TINY-9491
- The formatting of elements with a `contenteditable="false"` attribute are no longer cloned to new cells when new table rows are created. #TINY-9449
- Changed the color of `@dialog-table-border-color`, and added right padding to the first cell of dialog table. #TINY-9380

### Fixed
- Sometimes the editor would finish initializing before the silver theme would have finished loading. #TINY-9556
- The `searchreplace` modal closed incorrectly when clicking outside of the alert that pops up when no match is found. #TINY-9443
- The text color or background color picker toolbar buttons did not update when the text color or background color was changed using the equivalent commands in the Format menu. #TINY-9439
- The `onSetup` api function would not run when defining custom group toolbar button. #TINY-9496
- The foreground and background menu icons would not properly update to display the last used color. #TINY-9497
- Added new `setIconFill` function to `NestedMenuItemInstanceApi`. #TINY-9497
- Pasting links to text would sometimes not generate the correct undo stack in Safari. #TINY-9489
- Toolbar split buttons in `advlist` plugin now show the correct state when the cursor is in a checklist. #TINY-5167
- Dragging transparent elements into transparent block elements could produce invalid nesting of transparents. #TINY-9231
- The `editor.insertContent` API would insert contents inside elements with a `contenteditable="false"` attribute if the selection was inside the element. #TINY-9462
- Closing a dialog would scroll down the document in Safari. #TINY-9148
- Inline headers would not work in some situations when the editor was moved too far right horizontally. #TINY-8977
- Quick toolbars were incorrectly rendered during the dragging of elements with a `contenteditable="false"` attribute. #TINY-9305
- Selection of images, horizontal rules, tables or elements with a `contenteditable="false"` attribute was possible if they were within an element with a `contenteditable="false"` attribute. #TINY-9473
- Ranged deletion of formatted text using selection or a keyboard shortcut would sometimes cause Blink- and Webkit-based browsers to insert interpreted tags upon typing. This could result in inconsistent tags. #TINY-9302
- Visual characters were rendered inside elements with a `contenteditable="false"` attribute. #TINY-9474
- Lists with an element with a `contenteditable="false"` attribute as their root were incorrectly editable using list API commands, toolbar buttons and menu items. #TINY-9458
- Color picker dialog would not update the preview color if the hex input value was prefixed with the `#` character. #TINY-9457
- Table cell selection was possible even if the element being selected was within an element with a `contenteditable="false"` attribute. #TINY-9459
- Table commands were modifying tables that were within an element with a `contenteditable="false"` attribute. #TINY-9459
- Fake carets were rendered for elements with a `contenteditable="false"` attribute and for tables within an element with a `contenteditable="false"` attribute. #TINY-9459
- Textareas with scrollbars in dialogs would not render rounded corners correctly on some browsers. #TINY-9331
- It was possible to open links inside the editor if the editor root was an element with a `contenteditable="false"` attribute. #TINY-9470
- Inline boundary was rendered for boundary elements that had a `contenteditable="false"` attribute. #TINY-9471
- Clicking on a disabled split button will no longer call the `onAction` callback. #TINY-9504
- The *Edit Link* dialog incorrectly retrieved the URL value when opened immediately after the link insertion. #TINY-7993
- The `ForwardDelete` and `Delete` editor commands were deleting content within elements with a `contenteditable="false"` attribute. #TINY-9477
- The Backspace and Forward Delete keys were deleting content within elements with a `contenteditable="false"` attribute. #TINY-9477
- Inserting newlines inside an editable element that was inside an element with a `contenteditable="false"` attribute root would sometimes try to split the editable element. #TINY-9461
- Creating a list in a table cell when the caret is in front of an anchor element would not properly include the anchor in the list. #TINY-6853
- Dragging and dropping elements with a `contenteditable="false"` attribute on table borders would remove the element on drop. #TINY-9021
- Elements with a `contenteditable="false"` attribute would be removed when dragged and dropped within a root element with a `contenteditable="false"` attribute. #TINY-9558
- Formatting could be applied or removed to list items with a `contenteditable="false"` attribute that were inside an element with a `contenteditable="false"` attribute. #TINY-9563
- Annotation were not removed if the annotation was deleted immediately after being created. #TINY-9399
- Inserting a link for a selection from quickbars did not preserve formatting. #TINY-9593
- Inline dialog position was not correct when the editor was not inline and was contained in a `fixed` or `absolute` positioned element. #TINY-9554
- Sticky toolbars did not fade transition when undocking in classic iframe mode. #TINY-9408
- Inserting elements that were not valid within the closest editing host would incorrectly split the editing host. #TINY-9595
- The `color_cols` option was not respected in the `forecolor` or `backcolor` color swatches. #TINY-9560
- Drag and dropping the last element with a `contenteditable="false"` attribute out of its parent block would not properly pad the parent block element. #TINY-9606
- Applying heading formats from `text_patterns` produced an invisible space before a word. #TINY-9603
- Opening color swatches caused the browser tab to crash when `color_cols` or other column option was set to 0. #TINY-9649
- Opening a menu button in the footer of a dialog after a redial threw an error. #TINY-9686
- After closing a view, the `more...` toolbar button disappeared if the editor had `toolbar_mode: 'sliding'` and the toolbar was opened. #TINY-9419
- Inline dialogs would open partially off screen when the toolbar had a small width. #TINY-9588
- The `autoresize` plugin would cause infinite resizing when `content_css` was set to `document`. #TINY-8872

## 6.3.2 - 2023-02-22

### Fixed
- Removed a workaround for ensuring stylesheets are loaded in an outdated version of webkit. #TINY-9433

## 6.3.1 - 2022-12-06

### Fixed
- HTML in messages for the `WindowManager.alert` and `WindowManager.confirm` APIs were not properly sanitized. #TINY-3548

## 6.3.0 - 2022-11-23

### Added
- New `expand` function added to `tinymce.selection` which expands the selection around the nearest word. #TINY-9001
- New `expand` function added to `tinymce.dom.RangeUtils` to return a new range expanded around the nearest word. #TINY-9001
- New `color_map_background` and `color_map_foreground` options which set the base colors used in the `backcolor` and `forecolor` toolbar buttons and menu items. #TINY-9184
- Added optional `storageKey` property to `colorinput` component and `colorswatch` fancy menu item. #TINY-9184
- New `addView` function added to `editor.ui.registry` which makes it possible to register custom editor views. #TINY-9210
- New `ToggleView` command which makes it possible to hide or show registered custom views. #TINY-9210
- New `color_default_foreground` and `color_default_background` options to set the initial default color for the `forecolor` and `backcolor` toolbar buttons and menu items. #TINY-9183
- New `getTransparentElements` function added to `tinymce.html.Schema` to return a map object of transparent HTML elements. #TINY-9172
- Added `ToggleToolbarDrawer` event to subscribe to toolbar’s opening and closing. #TINY-9271

### Changed
- Transparent elements, like anchors, are now allowed in the root of the editor body if they contain blocks. #TINY-9172
- Colorswatch keyboard navigation now starts on currently selected color if present in the colorswatch. #TINY-9283
- `setContent` is now allowed to accept any custom keys and values as a second options argument. #TINY-9143

### Improved
- Transparent elements, like anchors, can now contain block elements. #TINY-9172
- Colorswatch now displays a checkmark for selected color. #TINY-9283
- Color picker dialog now starts on the appropriate color for the cursor position. #TINY-9213

### Fixed
- Parsing media content would cause a memory leak, which for example occurred when using the `getContent` API. #TINY-9186
- Dragging a noneditable element toward the bottom edge would cause the page to scroll up. #TINY-9025
- Range expanding capabilities would behave inconsistently depending on where the cursor was placed. #TINY-9029
- Compilation errors were thrown when using TypeScript 4.8. #TINY-9161
- Line separator scrolling in floating toolbars. #TINY-8948
- A double bottom border appeared on inline mode editor for the `tinymce-5` skin. #TINY-9108
- The editor header showed up even with no menubar and toolbar configured. #TINY-8819
- Inline text pattern no longer triggers if it matches only the end but not the start. #TINY-8947
- Matches of inline text patterns that are similar are now managed correctly. #TINY-8949
- Using `editor.selection.getContent({ format: 'text' })` or `editor.getContent({ format: 'text' })` would sometimes deselect selected radio buttons. #TINY-9213
- The context toolbar prevented the user from placing the cursor at the edges of the editor. #TINY-8890
- The Quick Insert context toolbar provided by the `quickbars` plugin showed when the cursor was in a fake block caret. #TINY-9190
- The `editor.selection.getRng()` API was not returning a proper range on hidden editors in Firefox. #TINY-9259
- The `editor.selection.getBookmark()` API was not returning a proper bookmark on hidden editors in Firefox. #TINY-9259
- Dragging a noneditable element before or after another noneditable element now works correctly. #TINY-9253
- The restored selection after a redo or undo action was not scrolled into view. #TINY-9222
- A newline could not be inserted when the selection was restored from a bookmark after an inline element with a `contenteditable="false"` attribute. #TINY-9194
- The global `tinymce.dom.styleSheetLoader` was not affected by the `content_css_cors` option. #TINY-6037
- The caret was moved to the previous line when a text pattern executed a `mceInsertContent` command on Enter key when running on Firefox. #TINY-9193

## 6.2.0 - 2022-09-08

### Added
- New `text_patterns_lookup` option to provide additional text patterns dynamically. #TINY-8778
- New promotion element has been added to the default UI. It can be disabled using the new `promotion` option. #TINY-8840
- New `format_noneditable_selector` option to specify the `contenteditable="false"` elements that can be wrapped in a format. #TINY-8905
- Added `allow` as a valid attribute for the `iframe` element in the editor schema. #TINY-8939
- New `search` field in the `MenuButton` that shows a search field at the top of the menu, and refetches items when the search field updates. #TINY-8952

### Improved
- The formatter can now apply a format to a `contenteditable="false"` element by wrapping it. Configurable using the `format_noneditable_selector` option. #TINY-8905
- The autocompleter now supports a multiple character trigger using the new `trigger` configuration. #TINY-8887
- The formatter now applies some inline formats, such as color and font size, to list item elements when the entire item content is selected. #TINY-8961
- The installed and available plugin lists in the Help dialog are now sorted alphabetically. #TINY-9019
- Alignment can now be applied to more types of embedded media elements. #TINY-8687

### Changed
- The `@menubar-row-separator-color` oxide variable no longer affects the divider between the Menubar and Toolbar. It only controls the color of the separator lines drawn in multiline Menubars. #TINY-8632
- The `@toolbar-separator-color` oxide variable now affects the color of the separator between the Menubar and Toolbar only. #TINY-8632
- Available Premium plugins, which are listed by name in the Help dialog, are no longer translated. #TINY-9019

### Fixed
- The Autolink plugin did not work when text nodes in the content were fragmented. #TINY-3723
- Fixed multiple incorrect types on public APIs found while enabling TypeScript strict mode. #TINY-8806
- The number of blank lines returned from `editor.getContent({format: 'text'})` differed between browsers. #TINY-8579
- The editor focused via the `auto_focus` option was not scrolled into the viewport. #TINY-8785
- Adding spaces immediately after a `contenteditable="false"` block did not work properly in some circumstances. #TINY-8814
- Elements with only `data-*` custom attributes were sometimes removed when they should not be removed. #TINY-8755
- Selecting a figure with `class="image"` incorrectly highlighted the link toolbar button. #TINY-8832
- Specifying a single, non-default list style for the `advlist_bullet_styles` and `advlist_number_styles` options was not respected. #TINY-8721
- Fixed multiple issues that occurred when formatting `contenteditable` elements. #TINY-8905
- Spaces could be incorrectly added to `urlinput` dialog components (commonly but not exclusively presented in the *Insert/Edit Link* dialog) in certain cases. #TINY-8775
- The text patterns logic threw an error when there were fragmented text nodes in a paragraph. #TINY-8779
- Dragging a `contentEditable=false` element towards a document’s edge did not cause scrolling. #TINY-8874
- Parsing large documents no longer throws a `Maximum call stack size exceeded` exception. #TINY-6945
- DomParser filter matching was not checked between filters, which could lead to an exception in the parser. #TINY-8888
- `contenteditable="false"` lists can no longer be toggled; and `contenteditable="true"` list elements within these lists can no longer be indented, split into another list element, or appended to the previous list element by deletion. #TINY-8920
- Removed extra bottom padding in the context toolbar of the `tinymce-5` skin. #TINY-8980
- Fixed a regression where pressing **Enter** added or deleted content outside the selection. #TINY-9101
- Fixed a bug where pressing **Enter** deleted selected `contenteditable="false"` `<pre>` elements. #TINY-9101
- The `editor.insertContent()` API did not respect the `no_events` argument. #TINY-9140

### Deprecated
- The autocompleter configuration property, `ch`, has been deprecated. It will be removed in the next major release. Use the `trigger` property instead. #TINY-8887

## 6.1.2 - 2022-07-29

### Fixed
- Reverted the undo level fix in the `autolink` plugin as it caused duplicated content in some edge cases. #TINY-8936

## 6.1.1 - 2022-07-27

### Fixed
- Invalid special elements were not cleaned up correctly during sanitization. #TINY-8780
- An exception was thrown when deleting all content if the start or end of the document had a `contenteditable="false"` element. #TINY-8877
- When a sidebar was opened using the `sidebar_show` option, its associated toolbar button was not highlighted. #TINY-8873
- When converting a URL to a link, the `autolink` plugin did not fire an `ExecCommand` event, nor did it create an undo level. #TINY-8896
- Worked around a Firefox bug which resulted in cookies not being available inside the editor content. #TINY-8916
- `<pre>` content pasted into a `<pre>` block that had inline styles or was `noneditable` now merges correctly with the surrounding content. #TINY-8860
- After a `codesample` was pasted, the insertion point was placed incorrectly. #TINY-8861

## 6.1.0 - 2022-06-29

### Added
- New `sidebar_show` option to show the specified sidebar on initialization. #TINY-8710
- New `newline_behavior` option controls what happens when the Return or Enter key is pressed or the `mceInsertNewLine` command is used. #TINY-8458
- New `iframe_template_callback` option in the Media plugin. Patch provided by Namstel. #TINY-8684
- New `transparent` property for `iframe` dialog component. #TINY-8534
- New `removeAttributeFilter` and `removeNodeFilter` functions added to the DomParser and DOM Serializer APIs. #TINY-7847
- New `dispatchChange` function added to the UndoManager API to fire the change with current editor status as level and current undoManager layer as lastLevel. #TINY-8641

### Improved
- Clearer focus states for buttons while navigating with a keyboard. #TINY-8557
- Support annotating certain block elements directly when using the editor's Annotation API. #TINY-8698
- The `mceLink` command can now take the value `{ dialog: true }` to always open the link dialog. #TINY-8057
- All help dialog links to `https://www.tiny.cloud` now include `rel="noopener"` to avoid potential security issues. #TINY-8834

### Changed
- The `end_container_on_empty_block` option can now take a string of blocks, allowing the exiting of a blockquote element by pressing Enter or Return twice. #TINY-6559
- The default value for `end_container_on_empty_block` option has been changed to `'blockquote'`. #TINY-6559
- Link menu and toolbar buttons now always execute the `mceLink` command. #TINY-8057
- Toggling fullscreen mode when using the Fullscreen plugin now also fires the `ResizeEditor` event. #TINY-8701
- Getting the editor's text content now returns newlines instead of an empty string if more than one empty paragraph exists. #TINY-8578
- Custom elements are now treated as non-empty elements by the schema. #TINY-4784
- The autocompleter's menu HTML element is now positioned instead of the wrapper. #TINY-6476
- Choice menu items will now use the `'menuitemradio'` aria role to better reflect that only a single item can be active. #TINY-8602

### Fixed
- Some Template plugin option values were not escaped properly when doing replacement lookups with Regular Expressions. #TINY-7433
- Copy events were not dispatched in readonly mode. #TINY-6800
- `<pre>` tags were not preserved when copying and pasting. #TINY-7719
- The URL detection used for autolink and smart paste did not work if a path segment contained valid characters such as `!` and `:`. #TINY-8069
- In some cases pressing the Backspace or Delete key would incorrectly step into tables rather than remain outside. #TINY-8592
- Links opened when Alt+Enter or Option+Return was typed even when `preventDefault()` was called on the keydown event. #TINY-8661
- Inconsistent visual behavior between choosing Edit -> Select All and typing Ctrl+A or Cmd+A when a document contained an image. #TINY-4550
- Ctrl+Shift+Home/End or Cmd+Shift+Up-arrow/Down-arrow did not expand the selection to a `contenteditable="false"` element if the element was at the beginning or end of a document. #TINY-7795
- Triple-clicking did not select a paragraph in Google Chrome in some circumstances. #TINY-8215
- Images were not showing as selected when selected along with other content. #TINY-5947
- Selection direction was not stored or restored when getting or setting selection bookmarks. #TINY-8599
- When text within an inline boundary element was selected and the right-arrow key was pressed, the insertion point incorrectly moved to the left. #TINY-8601
- In some versions of Safari, the `editor.selection.isForward()` API could throw an exception due to an invalid selection. #TINY-8686
- The selection is no longer incorrectly moved inside a comment by the `editor.selection.normalize()` API. #TINY-7817
- The `InsertParagraph` or `mceInsertNewLine` commands did not delete the current selection like the native command does. #TINY-8606
- The `InsertLineBreak` command did not replace selected content. #TINY-8458
- If selected content straddled a parent and nested list, cutting the selection did not always set the list style to `'none'` on the parent list. #TINY-8078
- Delete operations could behave incorrectly if the selection contains a `contenteditable="false"` element located at the edge of content. #TINY-8729
- Spaces were not added correctly on some browsers when the insertion point was immediately before or after a `contenteditable="false"` block element. #TINY-8588
- Images that used a Data URI were corrupted when the data wasn't base64 encoded. #TINY-8337
- `uploadImages` no longer triggers two change events if there is a removal of images on upload. #TINY-8641
- Preview and Insert Template dialogs now display the correct content background color when using dark skins. #TINY-8534
- Dialogs no longer exceed window height on smaller screens. #TINY-8146
- UI components, such as dialogs, would in some cases cause the Esc keyup event to incorrectly trigger inside the editor. #TINY-7005
- Fixed incorrect word breaks in menus when the menu presented with a scrollbar. #TINY-8572
- Notifications did not properly reposition when toggling fullscreen mode. #TINY-8701
- Text alignments, such as flush left and centered, could not be applied to `<pre>` elements. #TINY-7715
- Indenting or outdenting list items inside a block element that was inside another list item did not work. #TINY-7209
- Changing the list type of a list within another block element altered the parent element that contained that list. #TINY-8068
- Pasting columns in tables could, in some circumstances, result in an invalid table. #TINY-8040
- Copying columns in tables could sometimes result in an invalid copy. #TINY-8040
- Changing table properties with the `table_style_by_css` option set to `false` would sometimes reset the table width. #TINY-8758
- Custom elements added to otherwise blank lines were removed during serialization. #TINY-4784
- The editor's autocompleter was not triggered at the start of nested list items. #TINY-8759
- Some function types in the TreeWalker API missed that it could return `undefined`. #TINY-8592
- Nuget packages for .NET and .NET Core are now configured to copy TinyMCE into `/wwwroot/lib/` when TinyMCE is installed into a project. #TINY-8611

## 6.0.3 - 2022-05-25

### Fixed
- Could not remove values when multiple cells were selected with the cell properties dialog. #TINY-8625
- Could not remove values when multiple rows were selected with the row properties dialog. #TINY-8625
- Empty lines that were formatted in a ranged selection using the `format_empty_lines` option were not kept in the serialized content. #TINY-8639
- The `s` element was missing from the default schema text inline elements. #TINY-8639
- Some text inline elements specified via the schema were not removed when empty by default. #TINY-8639

## 6.0.2 - 2022-04-27

### Fixed
- Some media elements wouldn't update when changing the source URL. #TINY-8660
- Inline toolbars flickered when switching between editors. #TINY-8594
- Multiple inline toolbars were shown if focused too quickly. #TINY-8503
- Added background and additional spacing for the text labeled buttons in the toolbar to improve visual clarity. #TINY-8617
- Toolbar split buttons with text used an incorrect width on touch devices. #TINY-8647

## 6.0.1 - 2022-03-23

### Fixed
- Fixed the dev ZIP missing the required `bin` scripts to build from the source. #TINY-8542
- Fixed a regression whereby text patterns couldn't be updated at runtime. #TINY-8540
- Fixed an issue where tables with colgroups could be copied incorrectly in some cases. #TINY-8568
- Naked buttons better adapt to various background colors, improved text contrast in notifications. #TINY-8533
- The autocompleter would not fire the `AutocompleterStart` event nor close the menu in some cases. #TINY-8552
- It wasn't possible to select text right after an inline noneditable element. #TINY-8567
- Fixed a double border showing for the `tinymce-5` skin when using `toolbar_location: 'bottom'`. #TINY-8564
- Clipboard content was not generated correctly when cutting and copying `contenteditable="false"` elements. #TINY-8563
- Fixed the box-shadow getting clipped in autocompletor popups. #TINY-8573
- The `buttonType` property did not work for dialog footer buttons. #TINY-8582
- Fix contrast ratio for error messages. #TINY-8586

## 6.0.0 - 2022-03-03

### Added
- New `editor.options` API to replace the old `editor.settings` and `editor.getParam` APIs. #TINY-8206
- New `editor.annotator.removeAll` API to remove all annotations by name. #TINY-8195
- New `Resource.unload` API to make it possible to unload resources. #TINY-8431
- New `FakeClipboard` API on the `tinymce` global. #TINY-8353
- New `dispatch()` function to replace the now deprecated `fire()` function in various APIs. #TINY-8102
- New `AutocompleterStart`, `AutocompleterUpdate` and `AutocompleterEnd` events. #TINY-8279
- New `mceAutocompleterClose`, `mceAutocompleterReload` commands. #TINY-8279
- New `mceInsertTableDialog` command to open the insert table dialog. #TINY-8273
- New `slider` dialog component. #TINY-8304
- New `imagepreview` dialog component, allowing preview and zoom of any image URL. #TINY-8333
- New `buttonType` property on dialog button components, supporting `toolbar` style in addition to `primary` and `secondary`. #TINY-8304
- The `tabindex` attribute is now copied from the target element to the iframe. #TINY-8315

### Improved
- New default theme styling for TinyMCE 6 facelift with old skin available as `tinymce-5` and `tinymce-5-dark`. #TINY-8373
- The default height of editor has been increased from `200px` to `400px` to improve the usability of the editor. #TINY-6860
- The upload results returned from the `editor.uploadImages()` API now includes a `removed` flag, reflecting if the image was removed after a failed upload. #TINY-7735
- The `ScriptLoader`, `StyleSheetLoader`, `AddOnManager`, `PluginManager` and `ThemeManager` APIs will now return a `Promise` when loading resources instead of using callbacks. #TINY-8325
- A `ThemeLoadError` event is now fired if the theme fails to load. #TINY-8325
- The `BeforeSetContent` event will now include the actual serialized content when passing in an `AstNode` to the `editor.setContent` API. #TINY-7996
- Improved support for placing the caret before or after noneditable elements within the editor. #TINY-8169
- Calls to `editor.selection.setRng` now update the caret position bookmark used when focus is returned to the editor. #TINY-8450
- The `emoticon` plugin dialog, toolbar and menu item has been updated to use the more accurate `Emojis` term. #TINY-7631
- The dialog `redial` API will now only rerender the changed components instead of the whole dialog. #TINY-8334
- The dialog API `setData` method now uses a deep merge algorithm to support partial nested objects. #TINY-8333
- The dialog spec `initialData` type is now `Partial<T>` to match the underlying implementation details. #TINY-8334
- Notifications no longer require a timeout to disable the close button. #TINY-6679
- The editor theme is now fetched in parallel with the icons, language pack and plugins. #TINY-8453

### Changed
- TinyMCE is now MIT licensed. #TINY-2316
- Moved the `paste` plugin's functionality to TinyMCE core. #TINY-8310
- The `paste_data_images` option now defaults to `true`. #TINY-8310
- Moved the `noneditable` plugin to TinyMCE core. #TINY-8311
- Renamed the `noneditable_noneditable_class` option to `noneditable_class`. #TINY-8311
- Renamed the `noneditable_editable_class` option to `editable_class`. #TINY-8311
- Moved the `textpattern` plugin to TinyMCE core. #TINY-8312
- Renamed the `textpattern_patterns` option to `text_patterns`. #TINY-8312
- Moved the `hr` plugin's functionality to TinyMCE core. #TINY-8313
- Moved the `print` plugin's functionality to TinyMCE core. #TINY-8314
- Moved non-UI table functionality to core. #TINY-8273
- The `DomParser` API no longer uses a custom parser internally and instead uses the native `DOMParser` API. #TINY-4627
- The `editor.getContent()` API can provide custom content by preventing and overriding `content` in the `BeforeGetContent` event. This makes it consistent with the `editor.selection.getContent()` API. #TINY-8018
- The `editor.setContent()` API can now be prevented using the `BeforeSetContent` event. This makes it consistent with the `editor.selection.setContent()` API. #TINY-8018
- Add-ons such as plugins and themes are no longer constructed using the `new` operator. #TINY-8256
- A number of APIs that were not proper classes, are no longer constructed using the `new` operator. #TINY-8322
- The Editor commands APIs will no longer fallback to executing the browsers native command functionality. #TINY-7829
- The Editor query command APIs will now return `false` or an empty string on removed editors. #TINY-7829
- The `mceAddEditor` and `mceToggleEditor` commands now take an object as their value to specify the id and editor options. #TINY-8138
- The `mceInsertTable` command can no longer open the insert table dialog. Use the `mceInsertTableDialog` command instead. #TINY-8273
- The `plugins` option now returns a `string` array instead of a space separated string. #TINY-8455
- The `media` plugin no longer treats `iframe`, `video`, `audio` or `object` elements as "special" and will validate the contents against the schema. #TINY-8382
- The `images_upload_handler` option is no longer passed a `success` or `failure` callback and instead requires a `Promise` to be returned with the upload result. #TINY-8325
- The `tinymce.settings` global property is no longer set upon initialization. #TINY-7359
- The `change` event is no longer fired on first modification. #TINY-6920
- The `GetContent` event will now always pass a `string` for the `content` property. #TINY-7996
- Changed the default tag for the strikethrough format to the `s` tag when using a html 5 schema. #TINY-8262
- The `strike` tag is automatically converted to the `s` tag when using a html 5 schema. #TINY-8262
- Aligning a table to the left or right will now use margin styling instead of float styling. #TINY-6558
- The `:` control character has been changed to `~` for the schema `valid_elements` and `extended_valid_elements` options. #TINY-6726
- The `primary` property on dialog buttons has been deprecated. Use the new `buttonType` property instead. #TINY-8304
- Changed the default statusbar element path delimiter from `»` to `›`. #TINY-8372
- Replaced the `Powered by Tiny` branding text with the Tiny logo. #TINY-8371
- The default minimum height of editor has been changed to 100px to prevent the UI disappearing while resizing. #TINY-6860
- RGB colors are no longer converted to hex values when parsing or serializing content. #TINY-8163
- Replaced the `isDisabled()` function with an `isEnabled()` function for various APIs. #TINY-8101
- Replaced the `enable()` and `disable()` functions with a `setEnabled(state)` function in various APIs. #TINY-8101
- Replaced the `disabled` property with an `enabled` property in various APIs. #TINY-8101
- Replaced the `disable(name)` and `enable(name)` functions with a `setEnabled(name, state)` function in the Dialog APIs. #TINY-8101
- Renamed the `tinymce.Env.os.isOSX` API to `tinymce.Env.os.isMacOS`. #TINY-8175
- Renamed the `tinymce.Env.browser.isChrome` API to `tinymce.Env.browser.isChromium` to better reflect its functionality. #TINY-8300
- Renamed the `getShortEndedElements` Schema API to `getVoidElements`. #TINY-8344
- Renamed the `font_formats` option to `font_family_formats`. #TINY-8328
- Renamed the `fontselect` toolbar button and `fontformats` menu item to `fontfamily`. #TINY-8328
- Renamed the `fontsize_formats` option to `font_size_formats`. #TINY-8328
- Renamed the `fontsizeselect` toolbar button and `fontsizes` menu item to `fontsize`. #TINY-8328
- Renamed the `formatselect` toolbar button and `blockformats` menu item to `blocks`. #TINY-8328
- Renamed the `styleselect` toolbar button and `formats` menu item to `styles`. #TINY-8328
- Renamed the `lineheight_formats` option to `line_height_formats`. #TINY-8328
- Renamed the `getWhiteSpaceElements()` function to `getWhitespaceElements()` in the `Schema` API. #TINY-8102
- Renamed the `mceInsertClipboardContent` command `content` property to `html` to better reflect what data is passed. #TINY-8310
- Renamed the `default_link_target` option to `link_default_target` for both `link` and `autolink` plugins. #TINY-4603
- Renamed the `rel_list` option to `link_rel_list` for the `link` plugin. #TINY-4603
- Renamed the `target_list` option to `link_target_list` for the `link` plugin. #TINY-4603
- The default value for the `link_default_protocol` option has been changed to `https` instead of `http`. #TINY-7824
- The default value for the `element_format` option has been changed to `html`. #TINY-8263
- The default value for the `schema` option has been changed to `html5`. #TINY-8261
- The default value for the `table_style_by_css` option has been changed to `true`. #TINY-8259
- The default value for the `table_use_colgroups` option has been changed to `true`. #TINY-8259

### Fixed
- The object returned from the `editor.fire()` API was incorrect if the editor had been removed. #TINY-8018
- The `editor.selection.getContent()` API did not respect the `no_events` argument. #TINY-8018
- The `editor.annotator.remove` API did not keep selection when removing the annotation. #TINY-8195
- The `GetContent` event was not fired when getting `tree` or `text` formats using the `editor.selection.getContent()` API. #TINY-8018
- The `beforeinput` and `input` events would sometimes not fire as expected when deleting content. #TINY-8168 #TINY-8329
- The `table` plugin would sometimes not correctly handle headers in the `tfoot` section. #TINY-8104
- The `silver` theme UI was incorrectly rendered before plugins had initialized. #TINY-8288
- The aria labels for the color picker dialog were not translated. #TINY-8381
- Fixed sub-menu items not read by screen readers. Patch contributed by westonkd. #TINY-8417
- Dialog labels and other text-based UI properties did not escape HTML markup. #TINY-7524
- Anchor elements would render incorrectly when using the `allow_html_in_named_anchor` option. #TINY-3799
- The `AstNode` HTML serializer did not serialize `pre` or `textarea` elements correctly when they contained newlines. #TINY-8446
- Fixed sub-menu items not read by screen readers. Patch contributed by westonkd. #TINY-8417
- The Home or End keys would move out of a editable element contained within a noneditable element. #TINY-8201
- Dialogs could not be opened in inline mode before the editor had been rendered. #TINY-8397
- Clicking on menu items could cause an unexpected console warning if the `onAction` function caused the menu to close. #TINY-8513
- Fixed various color and contrast issues for the dark skins. #TINY-8527

### Removed
- Removed support for Microsoft Internet Explorer 11. #TINY-8194 #TINY-8241
- Removed support for Microsoft Word from the opensource paste functionality. #TINY-7493
- Removed support for the `plugins` option allowing a mixture of a string array and of space separated strings. #TINY-8399
- Removed support for the deprecated `false` value for the `forced_root_block` option. #TINY-8260
- Removed the jQuery integration. #TINY-4519
- Removed the `imagetools` plugin, which is now classified as a Premium plugin. #TINY-8209
- Removed the `imagetools` dialog component. #TINY-8333
- Removed the `toc` plugin, which is now classified as a Premium plugin. #TINY-8250
- Removed the `tabfocus` plugin. #TINY-8315
- Removed the `textpattern` plugin's API as part of moving it to core. #TINY-8312
- Removed the `table` plugin's API. #TINY-8273
- Removed the callback for the `EditorUpload` API. #TINY-8325
- Removed the legacy browser detection properties from the `Env` API. #TINY-8162
- Removed the `filterNode` method from the `DomParser` API. #TINY-8249
- Removed the `SaxParser` API. #TINY-8218
- Removed the `tinymce.utils.Promise` API. #TINY-8241
- Removed the `toHex` function for the `DOMUtils` and `Styles` APIs. #TINY-8163
- Removed the `execCommand` handler function from the plugin and theme interfaces. #TINY-7829
- Removed the `editor.settings` property as it has been replaced by the new Options API. #TINY-8236
- Removed the `shortEnded` and `fixed` properties on `tinymce.html.Node` class. #TINY-8205
- Removed the `mceInsertRawHTML` command. #TINY-8214
- Removed the style field from the `image` plugin dialog advanced tab. #TINY-3422
- Removed the `paste_filter_drop` option as native drag and drop handling is no longer supported. #TINY-8511
- Removed the legacy `mobile` theme. #TINY-7832
- Removed the deprecated `$`, `Class`, `DomQuery` and `Sizzle` APIs. #TINY-4520 #TINY-8326
- Removed the deprecated `Color`, `JSON`, `JSONP` and `JSONRequest`. #TINY-8162
- Removed the deprecated `XHR` API. #TINY-8164
- Removed the deprecated `setIconStroke` Split Toolbar Button API. #TINY-8162
- Removed the deprecated `editors` property from `EditorManager`. #TINY-8162
- Removed the deprecated `execCallback` and `setMode` APIs from `Editor`. #TINY-8162
- Removed the deprecated `addComponents` and `dependencies` APIs from `AddOnManager`. #TINY-8162
- Removed the deprecated `clearInterval`, `clearTimeout`, `debounce`, `requestAnimationFrame`, `setInterval`, `setTimeout` and `throttle` APIs from `Delay`. #TINY-8162
- Removed the deprecated `Schema` options. #TINY-7821
- Removed the deprecated `file_browser_callback_types`, `force_hex_style_colors` and `images_dataimg_filter` options. #TINY-7823
- Removed the deprecated `filepicker_validator_handler`, `force_p_newlines`, `gecko_spellcheck`, `tab_focus`, `table_responsive_width` and `toolbar_drawer` options. #TINY-7820
- Removed the deprecated `media_scripts` option in the `media` plugin. #TINY-8421
- Removed the deprecated `editor_deselector`, `editor_selector`, `elements`, `mode` and `types` legacy TinyMCE init options. #TINY-7822
- Removed the deprecated `content_editable_state` and `padd_empty_with_br` options. #TINY-8400
- Removed the deprecated `autoresize_on_init` option from the `autoresize` plugin. #TINY-8400
- Removed the deprecated `fullpage`, `spellchecker`, `bbcode`, `legacyoutput`, `colorpicker`, `contextmenu` and `textcolor` plugins. #TINY-8192
- Removed the undocumented `editor.editorCommands.hasCustomCommand` API. #TINY-7829
- Removed the undocumented `mceResetDesignMode`, `mceRepaint` and `mceBeginUndoLevel` commands. #TINY-7829

### Deprecated
- The dialog button component's `primary` property has been deprecated and will be removed in the next major release. Use the new `buttonType` property instead. #TINY-8304
- The `fire()` function of `tinymce.Editor`, `tinymce.dom.EventUtils`, `tinymce.dom.DOMUtils`, `tinymce.util.Observable` and `tinymce.util.EventDispatcher` has been deprecated and will be removed in the next major release. Use the `dispatch()` function instead. #TINY-8102
- The `content` property on the `SetContent` event has been deprecated and will be removed in the next major release. #TINY-8457
- The return value of the `editor.setContent` API has been deprecated and will be removed in the next major release. #TINY-8457

## 5.10.3 - 2022-02-09

### Fixed
- Alignment would sometimes be removed on parent elements when changing alignment on certain inline nodes, such as images. #TINY-8308
- The `fullscreen` plugin would reset the scroll position when exiting fullscreen mode. #TINY-8418

## 5.10.2 - 2021-11-17

### Fixed
- Internal selectors were appearing in the style list when using the `importcss` plugin. #TINY-8238

## 5.10.1 - 2021-11-03

### Fixed
- The iframe aria help text was not read by some screen readers. #TINY-8171
- Clicking the `forecolor` or `backcolor` toolbar buttons would do nothing until selecting a color. #TINY-7836
- Crop functionality did not work in the `imagetools` plugin when the editor was rendered in a shadow root. #TINY-6387
- Fixed an exception thrown on Safari when closing the `searchreplace` plugin dialog. #TINY-8166
- The `autolink` plugin did not convert URLs to links when starting with a bracket. #TINY-8091
- The `autolink` plugin incorrectly created nested links in some cases. #TINY-8091
- Tables could have an incorrect height set on rows when rendered outside of the editor. #TINY-7699
- In certain circumstances, the table of contents plugin would incorrectly add an extra empty list item. #TINY-4636
- The insert table grid menu displayed an incorrect size when re-opening the grid. #TINY-6532
- The word count plugin was treating the zero width space character (`&#8203;`) as a word. #TINY-7484

## 5.10.0 - 2021-10-11

### Added
- Added a new `URI.isDomSafe(uri)` API to check if a URI is considered safe to be inserted into the DOM. #TINY-7998
- Added the `ESC` key code constant to the `VK` API. #TINY-7917
- Added a new `deprecation_warnings` setting for turning off deprecation console warning messages. #TINY-8049

### Improved
- The `element` argument of the `editor.selection.scrollIntoView()` API is now optional, and if it is not provided the current selection will be scrolled into view. #TINY-7291

### Changed
- The deprecated `scope` attribute is no longer added to `td` cells when converting a row to a header row. #TINY-7731
- The number of `col` elements is normalized to match the number of columns in a table after a table action. #TINY-8011

### Fixed
- Fixed a regression that caused block wrapper formats to apply and remove incorrectly when using a collapsed selection with multiple words. #TINY-8036
- Resizing table columns in some scenarios would resize the column to an incorrect position. #TINY-7731
- Inserting a table where the parent element had padding would cause the table width to be incorrect. #TINY-7991
- The resize backdrop element did not have the `data-mce-bogus="all"` attribute set to prevent it being included in output. #TINY-7854
- Resize handles appeared on top of dialogs and menus when using an inline editor. #TINY-3263
- Fixed the `autoresize` plugin incorrectly scrolling to the top of the editor content in some cases when changing content. #TINY-7291
- Fixed the `editor.selection.scrollIntoView()` type signature, as it incorrectly required an `Element` instead of `HTMLElement`. #TINY-7291
- Table cells that were both row and column headers did not retain the correct state when converting back to a regular row or column. #TINY-7709
- Clicking beside a non-editable element could cause the editor to incorrectly scroll to the top of the content. #TINY-7062
- Clicking in a table cell, with a non-editable element in an adjacent cell, incorrectly caused the non-editable element to be selected. #TINY-7736
- Split toolbar buttons incorrectly had nested `tabindex="-1"` attributes. #TINY-7879
- Fixed notifications rendering in the wrong place initially and when the page was scrolled. #TINY-7894
- Fixed an exception getting thrown when the number of `col` elements didn't match the number of columns in a table. #TINY-7041 #TINY-8011
- The table selection state could become incorrect after selecting a noneditable table cell. #TINY-8053
- As of Mozilla Firefox 91, toggling fullscreen mode with `toolbar_sticky` enabled would cause the toolbar to disappear. #TINY-7873
- Fixed URLs not cleaned correctly in some cases in the `link` and `image` plugins. #TINY-7998
- Fixed the `image` and `media` toolbar buttons incorrectly appearing to be in an inactive state in some cases. #TINY-3463
- Fixed the `editor.selection.selectorChanged` API not firing if the selector matched the current selection when registered in some cases. #TINY-3463
- Inserting content into a `contenteditable="true"` element that was contained within a `contenteditable="false"` element would move the selection to an incorrect location. #TINY-7842
- Dragging and dropping `contenteditable="false"` elements could result in the element being placed in an unexpected location. #TINY-7917
- Pressing the Escape key would not cancel a drag action that started on a `contenteditable="false"` element within the editor. #TINY-7917
- `video` and `audio` elements were unable to be played when the `media` plugin live embeds were enabled in some cases. #TINY-7674
- Pasting images would throw an exception if the clipboard `items` were not files (for example, screenshots taken from gnome-software). Patch contributed by cedric-anne. #TINY-8079

### Deprecated
- Several APIs have been deprecated. See the release notes section for information. #TINY-8023 #TINY-8063
- Several Editor settings have been deprecated. See the release notes section for information. #TINY-8086
- The Table of Contents and Image Tools plugins will be classified as Premium plugins in the next major release. #TINY-8087
- Word support in the `paste` plugin has been deprecated and will be removed in the next major release. #TINY-8087

## 5.9.2 - 2021-09-08

### Fixed
- Fixed an exception getting thrown when disabling events and setting content. #TINY-7956
- Delete operations could behave incorrectly if the selection crossed a table boundary. #TINY-7596

## 5.9.1 - 2021-08-27

### Fixed
- Published TinyMCE types failed to compile in strict mode. #TINY-7915
- The `TableModified` event sometimes didn't fire when performing certain table actions. #TINY-7916

## 5.9.0 - 2021-08-26

### Added
- Added a new `mceFocus` command that focuses the editor. Equivalent to using `editor.focus()`. #TINY-7373
- Added a new `mceTableToggleClass` command which toggles the provided class on the currently selected table. #TINY-7476
- Added a new `mceTableCellToggleClass` command which toggles the provided class on the currently selected table cells. #TINY-7476
- Added a new `tablecellvalign` toolbar button and menu item for vertical table cell alignment. #TINY-7477
- Added a new `tablecellborderwidth` toolbar button and menu item to change table cell border width. #TINY-7478
- Added a new `tablecellborderstyle` toolbar button and menu item to change table cell border style. #TINY-7478
- Added a new `tablecaption` toolbar button and menu item to toggle captions on tables. #TINY-7479
- Added a new `mceTableToggleCaption` command that toggles captions on a selected table. #TINY-7479
- Added a new `tablerowheader` toolbar button and menu item to toggle the header state of row cells. #TINY-7478
- Added a new `tablecolheader` toolbar button and menu item to toggle the header state of column cells. #TINY-7482
- Added a new `tablecellbordercolor` toolbar button and menu item to select table cell border colors, with an accompanying setting `table_border_color_map` to customize the available values. #TINY-7480
- Added a new `tablecellbackgroundcolor` toolbar button and menu item to select table cell background colors, with an accompanying setting `table_background_color_map` to customize the available values. #TINY-7480
- Added a new `language` menu item and toolbar button to add `lang` attributes to content, with an accompanying `content_langs` setting to specify the languages available. #TINY-6149
- A new `lang` format is now available that can be used with `editor.formatter`, or applied with the `Lang` editor command. #TINY-6149
- Added a new `language` icon for the `language` toolbar button. #TINY-7670
- Added a new `table-row-numbering` icon. #TINY-7327
- Added new plugin commands: `mceEmoticons` (Emoticons), `mceWordCount` (Word Count), and `mceTemplate` (Template). #TINY-7619
- Added a new `iframe_aria_text` setting to set the iframe title attribute. #TINY-1264
- Added a new DomParser `Node.children()` API to return all the children of a `Node`. #TINY-7756

### Improved
- Sticky toolbars can now be offset from the top of the page using the new `toolbar_sticky_offset` setting. #TINY-7337
- Fancy menu items now accept an `initData` property to allow custom initialization data. #TINY-7480
- Improved the load time of the `fullpage` plugin by using the existing editor schema rather than creating a new one. #TINY-6504
- Improved the performance when UI components are rendered. #TINY-7572
- The context toolbar no longer unnecessarily repositions to the top of large elements when scrolling. #TINY-7545
- The context toolbar will now move out of the way when it overlaps with the selection, such as in table cells. #TINY-7192
- The context toolbar now uses a short animation when transitioning between different locations. #TINY-7740
- `Env.browser` now uses the User-Agent Client Hints API where it is available. #TINY-7785
- Icons with a `-rtl` suffix in their name will now automatically be used when the UI is rendered in right-to-left mode. #TINY-7782
- The `formatter.match` API now accepts an optional `similar` parameter to check if the format partially matches. #TINY-7712
- The `formatter.formatChanged` API now supports providing format variables when listening for changes. #TINY-7713
- The formatter will now fire `FormatApply` and `FormatRemove` events for the relevant actions. #TINY-7713
- The `autolink` plugin link detection now permits custom protocols. #TINY-7714
- The `autolink` plugin valid link detection has been improved. #TINY-7714

### Changed
- Changed the load order so content CSS is loaded before the editor is populated with content. #TINY-7249
- Changed the `emoticons`, `wordcount`, `code`, `codesample`, and `template` plugins to open dialogs using commands. #TINY-7619
- The context toolbar will no longer show an arrow when it overlaps the content, such as in table cells. #TINY-7665
- The context toolbar will no longer overlap the statusbar for toolbars using `node` or `selection` positions. #TINY-7666

### Fixed
- The `editor.fire` API was incorrectly mutating the original `args` provided. #TINY-3254
- Unbinding an event handler did not take effect immediately while the event was firing. #TINY-7436
- Binding an event handler incorrectly took effect immediately while the event was firing. #TINY-7436
- Unbinding a native event handler inside the `remove` event caused an exception that blocked editor removal. #TINY-7730
- The `SetContent` event contained the incorrect `content` when using the `editor.selection.setContent()` API. #TINY-3254
- The editor content could be edited after calling `setProgressState(true)` in iframe mode. #TINY-7373
- Tabbing out of the editor after calling `setProgressState(true)` behaved inconsistently in iframe mode. #TINY-7373
- Flash of unstyled content while loading the editor because the content CSS was loaded after the editor content was rendered. #TINY-7249
- Partially transparent RGBA values provided in the `color_map` setting were given the wrong hex value. #TINY-7163
- HTML comments with mismatched quotes were parsed incorrectly under certain circumstances. #TINY-7589
- The editor could crash when inserting certain HTML content. #TINY-7756
- Inserting certain HTML content into the editor could result in invalid HTML once parsed. #TINY-7756
- Links in notification text did not show the correct mouse pointer. #TINY-7661
- Using the Tab key to navigate into the editor on Microsoft Internet Explorer 11 would incorrectly focus the toolbar. #TINY-3707
- The editor selection could be placed in an incorrect location when undoing or redoing changes in a document containing `contenteditable="false"` elements. #TINY-7663
- Menus and context menus were not closed when clicking into a different editor. #TINY-7399
- Context menus on Android were not displayed when more than one HTML element was selected. #TINY-7688
- Disabled nested menu items could still be opened. #TINY-7700
- The nested menu item chevron icon was not fading when the menu item was disabled. #TINY-7700
- `imagetools` buttons were incorrectly enabled for remote images without `imagetools_proxy` set. #TINY-7772
- Only table content would be deleted when partially selecting a table and content outside the table. #TINY-6044
- The table cell selection handling was incorrect in some cases when dealing with nested tables. #TINY-6298
- Removing a table row or column could result in the cursor getting placed in an invalid location. #TINY-7695
- Pressing the Tab key to navigate through table cells did not skip noneditable cells. #TINY-7705
- Clicking on a noneditable table cell did not show a visual selection like other noneditable elements. #TINY-7724
- Some table operations would incorrectly cause table row attributes and styles to be lost. #TINY-6666
- The selection was incorrectly lost when using the `mceTableCellType` and `mceTableRowType` commands. #TINY-6666
- The `mceTableRowType` was reversing the order of the rows when converting multiple header rows back to body rows. #TINY-6666
- The table dialog did not always respect the `table_style_with_css` option. #TINY-4926
- Pasting into a table with multiple cells selected could cause the content to be pasted in the wrong location. #TINY-7485
- The `TableModified` event was not fired when pasting cells into a table. #TINY-6939
- The table paste column before and after icons were not flipped in RTL mode. #TINY-7851
- Fixed table corruption when deleting a `contenteditable="false"` cell. #TINY-7891
- The `dir` attribute was being incorrectly applied to list items. #TINY-4589
- Applying selector formats would sometimes not apply the format correctly to elements in a list. #TINY-7393
- For formats that specify an attribute or style that should be removed, the formatter `match` API incorrectly returned `false`. #TINY-6149
- The type signature on the `formatter.matchNode` API had the wrong return type (was `boolean` but should have been `Formatter | undefined`). #TINY-6149
- The `formatter.formatChanged` API would ignore the `similar` parameter if another callback had already been registered for the same format. #TINY-7713
- The `formatter.formatChanged` API would sometimes not run the callback the first time the format was removed. #TINY-7713
- Base64 encoded images with spaces or line breaks in the data URI were not displayed correctly. Patch contributed by RoboBurned.

### Deprecated
- The `bbcode`, `fullpage`, `legacyoutput`, and `spellchecker` plugins have been deprecated and marked for removal in the next major release. #TINY-7260

## 5.8.2 - 2021-06-23

### Fixed
- Fixed an issue when pasting cells from tables containing `colgroup`s into tables without `colgroup`s. #TINY-6675
- Fixed an issue that could cause an invalid toolbar button state when multiple inline editors were on a single page. #TINY-6297

## 5.8.1 - 2021-05-20

### Fixed
- An unexpected exception was thrown when switching to readonly mode and adjusting the editor width. #TINY-6383
- Content could be lost when the `pagebreak_split_block` setting was enabled. #TINY-3388
- The `list-style-type: none;` style on nested list items was incorrectly removed when clearing formatting. #TINY-6264
- URLs were not always detected when pasting over a selection. Patch contributed by jwcooper. #TINY-6997
- Properties on the `OpenNotification` event were incorrectly namespaced. #TINY-7486

## 5.8.0 - 2021-05-06

### Added
- Added the `PAGE_UP` and `PAGE_DOWN` key code constants to the `VK` API. #TINY-4612
- The editor resize handle can now be controlled using the keyboard. #TINY-4823
- Added a new `fixed_toolbar_container_target` setting which renders the toolbar in the specified `HTMLElement`. Patch contributed by pvrobays.

### Improved
- The `inline_boundaries` feature now supports the `home`, `end`, `pageup`, and `pagedown` keys. #TINY-4612
- Updated the `formatter.matchFormat` API to support matching formats with variables in the `classes` property. #TINY-7227
- Added HTML5 `audio` and `video` elements to the default alignment formats. #TINY-6633
- Added support for alpha list numbering to the list properties dialog. #TINY-6891

### Changed
- Updated the `image` dialog to display the class list dropdown as full-width if the caption checkbox is not present. #TINY-6400
- Renamed the "H Align" and "V Align" input labels in the Table Cell Properties dialog to "Horizontal align" and "Vertical align" respectively. #TINY-7285

### Deprecated
- The undocumented `setIconStroke` Split Toolbar Button API has been deprecated and will be removed in a future release. #TINY-3551

### Fixed
- Fixed a bug where it wasn't possible to align nested list items. #TINY-6567
- The RGB fields in the color picker dialog were not staying in sync with the color palette and hue slider. #TINY-6952
- The color preview box in the color picker dialog was not correctly displaying the saturation and value of the chosen color. #TINY-6952
- The color picker dialog will now show an alert if it is submitted with an invalid hex color code. #TINY-2814
- Fixed a bug where the `TableModified` event was not fired when adding a table row with the Tab key. #TINY-7006
- Added missing `images_file_types` setting to the exported TypeScript types. #GH-6607
- Fixed a bug where lists pasted from Word with Roman numeral markers were not displayed correctly. Patch contributed by aautio. #GH-6620
- The `editor.insertContent` API was incorrectly handling nested `span` elements with matching styles. #TINY-6263
- The HTML5 `small` element could not be removed when clearing text formatting. #TINY-6633
- The Oxide button text transform variable was incorrectly using `capitalize` instead of `none`. Patch contributed by dakur. #GH-6341
- Fix dialog button text that was using title-style capitalization. #TINY-6816
- Table plugin could perform operations on tables containing the inline editor. #TINY-6625
- Fixed Tab key navigation inside table cells with a ranged selection. #TINY-6638
- The foreground and background toolbar button color indicator is no longer blurry. #TINY-3551
- Fixed a regression in the `tinymce.create()` API that caused issues when multiple objects were created. #TINY-7358
- Fixed the `LineHeight` command causing the `change` event to be fired inconsistently. #TINY-7048

## 5.7.1 - 2021-03-17

### Fixed
- Fixed the `help` dialog incorrectly linking to the changelog of TinyMCE 4 instead of TinyMCE 5. #TINY-7031
- Fixed a bug where error messages were displayed incorrectly in the image dialog. #TINY-7099
- Fixed an issue where URLs were not correctly filtered in some cases. #TINY-7025
- Fixed a bug where context menu items with names that contained uppercase characters were not displayed. #TINY-7072
- Fixed context menu items lacking support for the `disabled` and `shortcut` properties. #TINY-7073
- Fixed a regression where the width and height were incorrectly set when embedding content using the `media` dialog. #TINY-7074

## 5.7.0 - 2021-02-10

### Added
- Added IPv6 address support to the URI API. Patch contributed by dev7355608. #GH-4409
- Added new `structure` and `style` properties to the `TableModified` event to indicate what kinds of modifications were made. #TINY-6643
- Added `video` and `audio` live embed support for the `media` plugin. #TINY-6229
- Added the ability to resize `video` and `iframe` media elements. #TINY-6229
- Added a new `font_css` setting for adding fonts to both the editor and the parent document. #TINY-6199
- Added a new `ImageUploader` API to simplify uploading image data to the configured `images_upload_url` or `images_upload_handler`. #TINY-4601
- Added an Oxide variable to define the container background color in fullscreen mode. #TINY-6903
- Added Oxide variables for setting the toolbar background colors for inline and sticky toolbars. #TINY-6009
- Added a new `AfterProgressState` event that is fired after `editor.setProgressState` calls complete. #TINY-6686
- Added support for `table_column_resizing` when inserting or deleting columns. #TINY-6711

### Changed
- Changed table and table column copy behavior to retain an appropriate width when pasted. #TINY-6664
- Changed the `lists` plugin to apply list styles to all text blocks within a selection. #TINY-3755
- Changed the `advlist` plugin to log a console error message when the `list` plugin isn't enabled. #TINY-6585
- Changed the z-index of the `setProgressState(true)` throbber so it does not hide notifications. #TINY-6686
- Changed the type signature for `editor.selection.getRng()` incorrectly returning `null`. #TINY-6843
- Changed some `SaxParser` regular expressions to improve performance. #TINY-6823
- Changed `editor.setProgressState(true)` to close any open popups. #TINY-6686

### Fixed
- Fixed `codesample` highlighting performance issues for some languages. #TINY-6996
- Fixed an issue where cell widths were lost when merging table cells. #TINY-6901
- Fixed `col` elements incorrectly transformed to `th` elements when converting columns to header columns. #TINY-6715
- Fixed a number of table operations not working when selecting 2 table cells on Mozilla Firefox. #TINY-3897
- Fixed a memory leak by backporting an upstream Sizzle fix. #TINY-6859
- Fixed table `width` style was removed when copying. #TINY-6664
- Fixed focus lost while typing in the `charmap` or `emoticons` dialogs when the editor is rendered in a shadow root. #TINY-6904
- Fixed corruption of base64 URLs used in style attributes when parsing HTML. #TINY-6828
- Fixed the order of CSS precedence of `content_style` and `content_css` in the `preview` and `template` plugins. `content_style` now has precedence. #TINY-6529
- Fixed an issue where the image dialog tried to calculate image dimensions for an empty image URL. #TINY-6611
- Fixed an issue where `scope` attributes on table cells would not change as expected when merging or unmerging cells. #TINY-6486
- Fixed the plugin documentation links in the `help` plugin. #DOC-703
- Fixed events bound using `DOMUtils` not returning the correct result for `isDefaultPrevented` in some cases. #TINY-6834
- Fixed the "Dropped file type is not supported" notification incorrectly showing when using an inline editor. #TINY-6834
- Fixed an issue with external styles bleeding into TinyMCE. #TINY-6735
- Fixed an issue where parsing malformed comments could cause an infinite loop. #TINY-6864
- Fixed incorrect return types on `editor.selection.moveToBookmark`. #TINY-6504
- Fixed the type signature for `editor.selection.setCursorLocation()` incorrectly allowing a node with no `offset`. #TINY-6843
- Fixed incorrect behavior when editor is destroyed while loading stylesheets. #INT-2282
- Fixed figure elements incorrectly splitting from a valid parent element when editing the image within. #TINY-6592
- Fixed inserting multiple rows or columns in a table cloning from the incorrect source row or column. #TINY-6906
- Fixed an issue where new lines were not scrolled into view when pressing Shift+Enter or Shift+Return. #TINY-6964
- Fixed an issue where list elements would not be removed when outdenting using the Enter or Return key. #TINY-5974
- Fixed an issue where file extensions with uppercase characters were treated as invalid. #TINY-6940
- Fixed dialog block messages were not passed through TinyMCE's translation system. #TINY-6971

## 5.6.2 - 2020-12-08

### Fixed
- Fixed a UI rendering regression when the document body is using `display: flex`. #TINY-6783

## 5.6.1 - 2020-11-25

### Fixed
- Fixed the `mceTableRowType` and `mceTableCellType` commands were not firing the `newCell` event. #TINY-6692
- Fixed the HTML5 `s` element was not recognized when editing or clearing text formatting. #TINY-6681
- Fixed an issue where copying and pasting table columns resulted in invalid HTML when using colgroups. #TINY-6684
- Fixed an issue where the toolbar would render with the wrong width for inline editors in some situations. #TINY-6683

## 5.6.0 - 2020-11-18

### Added
- Added new `BeforeOpenNotification` and `OpenNotification` events which allow internal notifications to be captured and modified before display. #TINY-6528
- Added support for `block` and `unblock` methods on inline dialogs. #TINY-6487
- Added new `TableModified` event which is fired whenever changes are made to a table. #TINY-6629
- Added new `images_file_types` setting to determine which image file formats will be automatically processed into `img` tags on paste when using the `paste` plugin. #TINY-6306
- Added support for `images_file_types` setting in the image file uploader to determine which image file extensions are valid for upload. #TINY-6224
- Added new `format_empty_lines` setting to control if empty lines are formatted in a ranged selection. #TINY-6483
- Added template support to the `autocompleter` for customizing the autocompleter items. #TINY-6505
- Added new user interface `enable`, `disable`, and `isDisabled` methods. #TINY-6397
- Added new `closest` formatter API to get the closest matching selection format from a set of formats. #TINY-6479
- Added new `emojiimages` emoticons database that uses the twemoji CDN by default. #TINY-6021
- Added new `emoticons_database` setting to configure which emoji database to use. #TINY-6021
- Added new `name` field to the `style_formats` setting object to enable specifying a name for the format. #TINY-4239

### Changed
- Changed `readonly` mode to allow hyperlinks to be clickable. #TINY-6248

### Fixed
- Fixed the `change` event not firing after a successful image upload. #TINY-6586
- Fixed the type signature for the `entity_encoding` setting not accepting delimited lists. #TINY-6648
- Fixed layout issues when empty `tr` elements were incorrectly removed from tables. #TINY-4679
- Fixed image file extensions lost when uploading an image with an alternative extension, such as `.jfif`. #TINY-6622
- Fixed a security issue where URLs in attributes weren't correctly sanitized. #TINY-6518
- Fixed `DOMUtils.getParents` incorrectly including the shadow root in the array of elements returned. #TINY-6540
- Fixed an issue where the root document could be scrolled while an editor dialog was open inside a shadow root. #TINY-6363
- Fixed `getContent` with text format returning a new line when the editor is empty. #TINY-6281
- Fixed table column and row resizers not respecting the `data-mce-resize` attribute. #TINY-6600
- Fixed inserting a table via the `mceInsertTable` command incorrectly creating 2 undo levels. #TINY-6656
- Fixed nested tables with `colgroup` elements incorrectly always resizing the inner table. #TINY-6623
- Fixed the `visualchars` plugin causing the editor to steal focus when initialized. #TINY-6282
- Fixed `fullpage` plugin altering text content in `editor.getContent()`. #TINY-6541
- Fixed `fullscreen` plugin not working correctly with multiple editors and shadow DOM. #TINY-6280
- Fixed font size keywords such as `medium` not displaying correctly in font size menus. #TINY-6291
- Fixed an issue where some attributes in table cells were not copied over to new rows or columns. #TINY-6485
- Fixed incorrectly removing formatting on adjacent spaces when removing formatting on a ranged selection. #TINY-6268
- Fixed the `Cut` menu item not working in the latest version of Mozilla Firefox. #TINY-6615
- Fixed some incorrect types in the new TypeScript declaration file. #TINY-6413
- Fixed a regression where a fake offscreen selection element was incorrectly created for the editor root node. #TINY-6555
- Fixed an issue where menus would incorrectly collapse in small containers. #TINY-3321
- Fixed an issue where only one table column at a time could be converted to a header. #TINY-6326
- Fixed some minor memory leaks that prevented garbage collection for editor instances. #TINY-6570
- Fixed resizing a `responsive` table not working when using the column resize handles. #TINY-6601
- Fixed incorrectly calculating table `col` widths when resizing responsive tables. #TINY-6646
- Fixed an issue where spaces were not preserved in pre-blocks when getting text content. #TINY-6448
- Fixed a regression that caused the selection to be difficult to see in tables with backgrounds. #TINY-6495
- Fixed content pasted multiple times in the editor when using Microsoft Internet Explorer 11. Patch contributed by mattford. #GH-4905

## 5.5.1 - 2020-10-01

### Fixed
- Fixed pressing the down key near the end of a document incorrectly raising an exception. #TINY-6471
- Fixed incorrect Typescript types for the `Tools` API. #TINY-6475

## 5.5.0 - 2020-09-29

### Added
- Added a TypeScript declaration file to the bundle output for TinyMCE core. #TINY-3785
- Added new `table_column_resizing` setting to control how table columns are resized when using the resize bars. #TINY-6001
- Added the ability to remove images on a failed upload using the `images_upload_handler` failure callback. #TINY-6011
- Added `hasPlugin` function to the editor API to determine if a plugin exists or not. #TINY-766
- Added new `ToggleToolbarDrawer` command and query state handler to allow the toolbar drawer to be programmatically toggled and the toggle state to be checked. #TINY-6032
- Added the ability to use `colgroup` elements in tables. #TINY-6050
- Added a new setting `table_use_colgroups` for toggling whether colgroups are used in new tables. #TINY-6050
- Added the ability to delete and navigate HTML media elements without the `media` plugin. #TINY-4211
- Added `fullscreen_native` setting to the `fullscreen` plugin to enable use of the entire monitor. #TINY-6284
- Added table related oxide variables to the Style API for more granular control over table cell selection appearance. #TINY-6311
- Added new `toolbar_persist` setting to control the visibility of the inline toolbar. #TINY-4847
- Added new APIs to allow for programmatic control of the inline toolbar visibility. #TINY-4847
- Added the `origin` property to the `ObjectResized` and `ObjectResizeStart` events, to specify which handle the resize was performed on. #TINY-6242
- Added new StyleSheetLoader `unload` and `unloadAll` APIs to allow loaded stylesheets to be removed. #TINY-3926
- Added the `LineHeight` query command and action to the editor. #TINY-4843
- Added the `lineheight` toolbar and menu items, and added `lineheight` to the default format menu. #TINY-4843
- Added a new `contextmenu_avoid_overlap` setting to allow context menus to avoid overlapping matched nodes. #TINY-6036
- Added new listbox dialog UI component for rendering a dropdown that allows nested options. #TINY-2236
- Added back the ability to use nested items in the `image_class_list`, `link_class_list`, `link_list`, `table_class_list`, `table_cell_class_list`, and `table_row_class_list` settings. #TINY-2236

### Changed
- Changed how CSS manipulates table cells when selecting multiple cells to achieve a semi-transparent selection. #TINY-6311
- Changed the `target` property on fired events to use the native event target. The original target for an open shadow root can be obtained using `event.getComposedPath()`. #TINY-6128
- Changed the editor to clean-up loaded CSS stylesheets when all editors using the stylesheet have been removed. #TINY-3926
- Changed `imagetools` context menu icon for accessing the `image` dialog to use the `image` icon. #TINY-4141
- Changed the `editor.insertContent()` and `editor.selection.setContent()` APIs to retain leading and trailing whitespace. #TINY-5966
- Changed the `table` plugin `Column` menu to include the cut, copy and paste column menu items. #TINY-6374
- Changed the default table styles in the content CSS files to better support the styling options available in the `table` dialog. #TINY-6179

### Deprecated
- Deprecated the `Env.experimentalShadowDom` flag. #TINY-6128

### Fixed
- Fixed tables with no borders displaying with the default border styles in the `preview` dialog. #TINY-6179
- Fixed loss of whitespace when inserting content after a non-breaking space. #TINY-5966
- Fixed the `event.getComposedPath()` function throwing an exception for events fired from the editor. #TINY-6128
- Fixed notifications not appearing when the editor is within a ShadowRoot. #TINY-6354
- Fixed focus issues with inline dialogs when the editor is within a ShadowRoot. #TINY-6360
- Fixed the `template` plugin previews missing some content styles. #TINY-6115
- Fixed the `media` plugin not saving the alternative source url in some situations. #TINY-4113
- Fixed an issue where column resizing using the resize bars was inconsistent between fixed and relative table widths. #TINY-6001
- Fixed an issue where dragging and dropping within a table would select table cells. #TINY-5950
- Fixed up and down keyboard navigation not working for inline `contenteditable="false"` elements. #TINY-6226
- Fixed dialog not retrieving `close` icon from icon pack. #TINY-6445
- Fixed the `unlink` toolbar button not working when selecting multiple links. #TINY-4867
- Fixed the `link` dialog not showing the "Text to display" field in some valid cases. #TINY-5205
- Fixed the `DOMUtils.split()` API incorrectly removing some content. #TINY-6294
- Fixed pressing the escape key not focusing the editor when using multiple toolbars. #TINY-6230
- Fixed the `dirty` flag not being correctly set during an `AddUndo` event. #TINY-4707
- Fixed `editor.selection.setCursorLocation` incorrectly placing the cursor outside `pre` elements in some circumstances. #TINY-4058
- Fixed an exception being thrown when pressing the enter key inside pre elements while `br_in_pre` setting is false. #TINY-4058

## 5.4.2 - 2020-08-17

### Fixed
- Fixed the editor not resizing when resizing the browser window in fullscreen mode. #TINY-3511
- Fixed clicking on notifications causing inline editors to hide. #TINY-6058
- Fixed an issue where link URLs could not be deleted or edited in the link dialog in some cases. #TINY-4706
- Fixed a regression where setting the `anchor_top` or `anchor_bottom` options to `false` was not working. #TINY-6256
- Fixed the `anchor` plugin not supporting the `allow_html_in_named_anchor` option. #TINY-6236
- Fixed an exception thrown when removing inline formats that contained additional styles or classes. #TINY-6288
- Fixed an exception thrown when positioning the context toolbar on Internet Explorer 11 in some edge cases. #TINY-6271
- Fixed inline formats not removed when more than one `removeformat` format rule existed. #TINY-6216
- Fixed an issue where spaces were sometimes removed when removing formating on nearby text. #TINY-6251
- Fixed the list toolbar buttons not showing as active when a list is selected. #TINY-6286
- Fixed an issue where the UI would sometimes not be shown or hidden when calling the show or hide API methods on the editor. #TINY-6048
- Fixed the list type style not retained when copying list items. #TINY-6289
- Fixed the Paste plugin converting tabs in plain text to a single space character. A `paste_tab_spaces` option has been included for setting the number of spaces used to replace a tab character. #TINY-6237

## 5.4.1 - 2020-07-08

### Fixed
- Fixed the Search and Replace plugin incorrectly including zero-width caret characters in search results. #TINY-4599
- Fixed dragging and dropping unsupported files navigating the browser away from the editor. #TINY-6027
- Fixed undo levels not created on browser handled drop or paste events. #TINY-6027
- Fixed content in an iframe element parsing as DOM elements instead of text content. #TINY-5943
- Fixed Oxide checklist styles not showing when printing. #TINY-5139
- Fixed bug with `scope` attribute not being added to the cells of header rows. #TINY-6206

## 5.4.0 - 2020-06-30

### Added
- Added keyboard navigation support to menus and toolbars when the editor is in a ShadowRoot. #TINY-6152
- Added the ability for menus to be clicked when the editor is in an open shadow root. #TINY-6091
- Added the `Editor.ui.styleSheetLoader` API for loading stylesheets within the Document or ShadowRoot containing the editor UI. #TINY-6089
- Added the `StyleSheetLoader` module to the public API. #TINY-6100
- Added Oxide variables for styling the `select` element and headings in dialog content. #TINY-6070
- Added icons for `table` column and row cut, copy, and paste toolbar buttons. #TINY-6062
- Added all `table` menu items to the UI registry, so they can be used by name in other menus. #TINY-4866
- Added new `mceTableApplyCellStyle` command to the `table` plugin. #TINY-6004
- Added new `table` cut, copy, and paste column editor commands and menu items. #TINY-6006
- Added font related Oxide variables for secondary buttons, allowing for custom styling. #TINY-6061
- Added new `table_header_type` setting to control how table header rows are structured. #TINY-6007
- Added new `table_sizing_mode` setting to replace the `table_responsive_width` setting, which has now been deprecated. #TINY-6051
- Added new `mceTableSizingMode` command for changing the sizing mode of a table. #TINY-6000
- Added new `mceTableRowType`, `mceTableColType`, and `mceTableCellType` commands and value queries. #TINY-6150

### Changed
- Changed `advlist` toolbar buttons to only show a dropdown list if there is more than one option. #TINY-3194
- Changed `mceInsertTable` command and `insertTable` API method to take optional header rows and columns arguments. #TINY-6012
- Changed stylesheet loading, so that UI skin stylesheets can load in a ShadowRoot if required. #TINY-6089
- Changed the DOM location of menus so that they display correctly when the editor is in a ShadowRoot. #TINY-6093
- Changed the table plugin to correctly detect all valid header row structures. #TINY-6007

### Fixed
- Fixed tables with no defined width being converted to a `fixed` width table when modifying the table. #TINY-6051
- Fixed the `autosave` `isEmpty` API incorrectly detecting non-empty content as empty. #TINY-5953
- Fixed table `Paste row after` and `Paste row before` menu items not disabled when nothing was available to paste. #TINY-6006
- Fixed a selection performance issue with large tables on Microsoft Internet Explorer and Edge. #TINY-6057
- Fixed filters for screening commands from the undo stack to be case-insensitive. #TINY-5946
- Fixed `fullscreen` plugin now removes all classes when the editor is closed. #TINY-4048
- Fixed handling of mixed-case icon identifiers (names) for UI elements. #TINY-3854
- Fixed leading and trailing spaces lost when using `editor.selection.getContent({ format: 'text' })`. #TINY-5986
- Fixed an issue where changing the URL with the quicklink toolbar caused unexpected undo behavior. #TINY-5952
- Fixed an issue where removing formatting within a table cell would cause Internet Explorer 11 to scroll to the end of the table. #TINY-6049
- Fixed an issue where the `allow_html_data_urls` setting was not correctly applied. #TINY-5951
- Fixed the `autolink` feature so that it no longer treats a string with multiple "@" characters as an email address. #TINY-4773
- Fixed an issue where removing the editor would leave unexpected attributes on the target element. #TINY-4001
- Fixed the `link` plugin now suggest `mailto:` when the text contains an '@' and no slashes (`/`). #TINY-5941
- Fixed the `valid_children` check of custom elements now allows a wider range of characters in names. #TINY-5971

## 5.3.2 - 2020-06-10

### Fixed
- Fixed a regression introduced in 5.3.0, where `images_dataimg_filter` was no-longer called. #TINY-6086

## 5.3.1 - 2020-05-27

### Fixed
- Fixed the image upload error alert also incorrectly closing the image dialog. #TINY-6020
- Fixed editor content scrolling incorrectly on focus in Firefox by reverting default content CSS html and body heights added in 5.3.0. #TINY-6019

## 5.3.0 - 2020-05-21

### Added
- Added html and body height styles to the default oxide content CSS. #TINY-5978
- Added `uploadUri` and `blobInfo` to the data returned by `editor.uploadImages()`. #TINY-4579
- Added a new function to the `BlobCache` API to lookup a blob based on the base64 data and mime type. #TINY-5988
- Added the ability to search and replace within a selection. #TINY-4549
- Added the ability to set the list start position for ordered lists and added new `lists` context menu item. #TINY-3915
- Added `icon` as an optional config option to the toggle menu item API. #TINY-3345
- Added `auto` mode for `toolbar_location` which positions the toolbar and menu bar at the bottom if there is no space at the top. #TINY-3161

### Changed
- Changed the default `toolbar_location` to `auto`. #TINY-3161
- Changed toggle menu items and choice menu items to have a dedicated icon with the checkmark displayed on the far right side of the menu item. #TINY-3345
- Changed the `link`, `image`, and `paste` plugins to use Promises to reduce the bundle size. #TINY-4710
- Changed the default icons to be lazy loaded during initialization. #TINY-4729
- Changed the parsing of content so base64 encoded urls are converted to blob urls. #TINY-4727
- Changed context toolbars so they concatenate when more than one is suitable for the current selection. #TINY-4495
- Changed inline style element formats (strong, b, em, i, u, strike) to convert to a span on format removal if a `style` or `class` attribute is present. #TINY-4741

### Fixed
- Fixed the `selection.setContent()` API not running parser filters. #TINY-4002
- Fixed formats incorrectly applied or removed when table cells were selected. #TINY-4709
- Fixed the `quickimage` button not restricting the file types to images. #TINY-4715
- Fixed search and replace ignoring text in nested contenteditable elements. #TINY-5967
- Fixed resize handlers displaying in the wrong location sometimes for remote images. #TINY-4732
- Fixed table picker breaking in Firefox on low zoom levels. #TINY-4728
- Fixed issue with loading or pasting contents with large base64 encoded images on Safari. #TINY-4715
- Fixed supplementary special characters being truncated when inserted into the editor. Patch contributed by mlitwin. #TINY-4791
- Fixed toolbar buttons not set to disabled when the editor is in readonly mode. #TINY-4592
- Fixed the editor selection incorrectly changing when removing caret format containers. #TINY-3438
- Fixed bug where title, width, and height would be set to empty string values when updating an image and removing those attributes using the image dialog. #TINY-4786
- Fixed `ObjectResized` event firing when an object wasn't resized. #TINY-4161
- Fixed `ObjectResized` and `ObjectResizeStart` events incorrectly fired when adding or removing table rows and columns. #TINY-4829
- Fixed the placeholder not hiding when pasting content into the editor. #TINY-4828
- Fixed an issue where the editor would fail to load if local storage was disabled. #TINY-5935
- Fixed an issue where an uploaded image would reuse a cached image with a different mime type. #TINY-5988
- Fixed bug where toolbars and dialogs would not show if the body element was replaced (e.g. with Turbolinks). Patch contributed by spohlenz. #GH-5653
- Fixed an issue where multiple formats would be removed when removing a single format at the end of lines or on empty lines. #TINY-1170
- Fixed zero-width spaces incorrectly included in the `wordcount` plugin character count. #TINY-5991
- Fixed a regression introduced in 5.2.0 whereby the desktop `toolbar_mode` setting would incorrectly override the mobile default setting. #TINY-5998
- Fixed an issue where deleting all content in a single cell table would delete the entire table. #TINY-1044

## 5.2.2 - 2020-04-23

### Fixed
- Fixed an issue where anchors could not be inserted on empty lines. #TINY-2788
- Fixed text decorations (underline, strikethrough) not consistently inheriting the text color. #TINY-4757
- Fixed `format` menu alignment buttons inconsistently applying to images. #TINY-4057
- Fixed the floating toolbar drawer height collapsing when the editor is rendered in modal dialogs or floating containers. #TINY-4837
- Fixed `media` embed content not processing safely in some cases. #TINY-4857

## 5.2.1 - 2020-03-25

### Fixed
- Fixed the "is decorative" checkbox in the image dialog clearing after certain dialog events. #FOAM-11
- Fixed possible uncaught exception when a `style` attribute is removed using a content filter on `setContent`. #TINY-4742
- Fixed the table selection not functioning correctly in Microsoft Edge 44 or higher. #TINY-3862
- Fixed the table resize handles not functioning correctly in Microsoft Edge 44 or higher. #TINY-4160
- Fixed the floating toolbar drawer disconnecting from the toolbar when adding content in inline mode. #TINY-4725 #TINY-4765
- Fixed `readonly` mode not returning the appropriate boolean value. #TINY-3948
- Fixed the `forced_root_block_attrs` setting not applying attributes to new blocks consistently. #TINY-4564
- Fixed the editor incorrectly stealing focus during initialization in Microsoft Internet Explorer. #TINY-4697
- Fixed dialogs stealing focus when opening an alert or confirm dialog using an `onAction` callback. #TINY-4014
- Fixed inline dialogs incorrectly closing when clicking on an opened alert or confirm dialog. #TINY-4012
- Fixed the context toolbar overlapping the menu bar and toolbar. #TINY-4586
- Fixed notification and inline dialog positioning issues when using `toolbar_location: 'bottom'`. #TINY-4586
- Fixed the `colorinput` popup appearing offscreen on mobile devices. #TINY-4711
- Fixed special characters not being found when searching by "whole words only". #TINY-4522
- Fixed an issue where dragging images could cause them to be duplicated. #TINY-4195
- Fixed context toolbars activating without the editor having focus. #TINY-4754
- Fixed an issue where removing the background color of text did not always work. #TINY-4770
- Fixed an issue where new rows and columns in a table did not retain the style of the previous row or column. #TINY-4788

## 5.2.0 - 2020-02-13

### Added
- Added the ability to apply formats to spaces. #TINY-4200
- Added new `toolbar_location` setting to allow for positioning the menu and toolbar at the bottom of the editor. #TINY-4210
- Added new `toolbar_groups` setting to allow a custom floating toolbar group to be added to the toolbar when using `floating` toolbar mode. #TINY-4229
- Added new `link_default_protocol` setting to `link` and `autolink` plugin to allow a protocol to be used by default. #TINY-3328
- Added new `placeholder` setting to allow a placeholder to be shown when the editor is empty. #TINY-3917
- Added new `tinymce.dom.TextSeeker` API to allow searching text across different DOM nodes. #TINY-4200
- Added a drop shadow below the toolbar while in sticky mode and introduced Oxide variables to customize it when creating a custom skin. #TINY-4343
- Added `quickbars_image_toolbar` setting to allow for the image quickbar to be turned off. #TINY-4398
- Added iframe and img `loading` attribute to the default schema. Patch contributed by ataylor32. #GH-5112
- Added new `getNodeFilters`/`getAttributeFilters` functions to the `editor.serializer` instance. #TINY-4344
- Added new `a11y_advanced_options` setting to allow additional accessibility options to be added. #FOAM-11
- Added new accessibility options and behaviours to the image dialog using `a11y_advanced_options`. #FOAM-11
- Added the ability to use the window `PrismJS` instance for the `codesample` plugin instead of the bundled version to allow for styling custom languages. #TINY-4504
- Added error message events that fire when a resource loading error occurs. #TINY-4509

### Changed
- Changed the default schema to disallow `onchange` for select elements. #TINY-4614
- Changed default `toolbar_mode` value from false to `wrap`. The value false has been deprecated. #TINY-4617
- Changed `toolbar_drawer` setting to `toolbar_mode`. `toolbar_drawer` has been deprecated. #TINY-4416
- Changed iframe mode to set selection on content init if selection doesn't exist. #TINY-4139
- Changed table related icons to align them with the visual style of the other icons. #TINY-4341
- Changed and improved the visual appearance of the color input field. #TINY-2917
- Changed fake caret container to use `forced_root_block` when possible. #TINY-4190
- Changed the `requireLangPack` API to wait until the plugin has been loaded before loading the language pack. #TINY-3716
- Changed the formatter so `style_formats` are registered before the initial content is loaded into the editor. #TINY-4238
- Changed media plugin to use https protocol for media urls by default. #TINY-4577
- Changed the parser to treat CDATA nodes as bogus HTML comments to match the HTML parsing spec. A new `preserve_cdata` setting has been added to preserve CDATA nodes if required. #TINY-4625

### Fixed
- Fixed incorrect parsing of malformed/bogus HTML comments. #TINY-4625
- Fixed `quickbars` selection toolbar appearing on non-editable elements. #TINY-4359
- Fixed bug with alignment toolbar buttons sometimes not changing state correctly. #TINY-4139
- Fixed the `codesample` toolbar button not toggling when selecting code samples other than HTML. #TINY-4504
- Fixed content incorrectly scrolling to the top or bottom when pressing enter if when the content was already in view. #TINY-4162
- Fixed `scrollIntoView` potentially hiding elements behind the toolbar. #TINY-4162
- Fixed editor not respecting the `resize_img_proportional` setting due to legacy code. #TINY-4236
- Fixed flickering floating toolbar drawer in inline mode. #TINY-4210
- Fixed an issue where the template plugin dialog would be indefinitely blocked on a failed template load. #TINY-2766
- Fixed the `mscontrolselect` event not being unbound on IE/Edge. #TINY-4196
- Fixed Confirm dialog footer buttons so only the "Yes" button is highlighted. #TINY-4310
- Fixed `file_picker_callback` functionality for Image, Link and Media plugins. #TINY-4163
- Fixed issue where floating toolbar drawer sometimes would break if the editor is resized while the drawer is open. #TINY-4439
- Fixed incorrect `external_plugins` loading error message. #TINY-4503
- Fixed resize handler was not hidden for ARIA purposes. Patch contributed by Parent5446. #GH-5195
- Fixed an issue where content could be lost if a misspelled word was selected and spellchecking was disabled. #TINY-3899
- Fixed validation errors in the CSS where certain properties had the wrong default value. #TINY-4491
- Fixed an issue where forced root block attributes were not applied when removing a list. #TINY-4272
- Fixed an issue where the element path isn't being cleared when there are no parents. #TINY-4412
- Fixed an issue where width and height in svg icons containing `rect` elements were overridden by the CSS reset. #TINY-4408
- Fixed an issue where uploading images with `images_reuse_filename` enabled and that included a query parameter would generate an invalid URL. #TINY-4638
- Fixed the `closeButton` property not working when opening notifications. #TINY-4674
- Fixed keyboard flicker when opening a context menu on mobile. #TINY-4540
- Fixed issue where plus icon svg contained strokes. #TINY-4681

## 5.1.6 - 2020-01-28

### Fixed
- Fixed `readonly` mode not blocking all clicked links. #TINY-4572
- Fixed legacy font sizes being calculated inconsistently for the `FontSize` query command value. #TINY-4555
- Fixed changing a tables row from `Header` to `Body` incorrectly moving the row to the bottom of the table. #TINY-4593
- Fixed the context menu not showing in certain cases with hybrid devices. #TINY-4569
- Fixed the context menu opening in the wrong location when the target is the editor body. #TINY-4568
- Fixed the `image` plugin not respecting the `automatic_uploads` setting when uploading local images. #TINY-4287
- Fixed security issue related to parsing HTML comments and CDATA. #TINY-4544

## 5.1.5 - 2019-12-19

### Fixed
- Fixed the UI not working with hybrid devices that accept both touch and mouse events. #TNY-4521
- Fixed the `charmap` dialog initially focusing the first tab of the dialog instead of the search input field. #TINY-4342
- Fixed an exception being raised when inserting content if the caret was directly before or after a `contenteditable="false"` element. #TINY-4528
- Fixed a bug with pasting image URLs when paste as text is enabled. #TINY-4523

## 5.1.4 - 2019-12-11

### Fixed
- Fixed dialog contents disappearing when clicking a checkbox for right-to-left languages. #TINY-4518
- Fixed the `legacyoutput` plugin registering legacy formats after editor initialization, causing legacy content to be stripped on the initial load. #TINY-4447
- Fixed search and replace not cycling through results when searching using special characters. #TINY-4506
- Fixed the `visualchars` plugin converting HTML-like text to DOM elements in certain cases. #TINY-4507
- Fixed an issue with the `paste` plugin not sanitizing content in some cases. #TINY-4510
- Fixed HTML comments incorrectly being parsed in certain cases. #TINY-4511

## 5.1.3 - 2019-12-04

### Fixed
- Fixed sticky toolbar not undocking when fullscreen mode is activated. #TINY-4390
- Fixed the "Current Window" target not applying when updating links using the link dialog. #TINY-4063
- Fixed disabled menu items not highlighting when focused. #TINY-4339
- Fixed touch events passing through dialog collection items to the content underneath on Android devices. #TINY-4431
- Fixed keyboard navigation of the Help dialog's Keyboard Navigation tab. #TINY-4391
- Fixed search and replace dialog disappearing when finding offscreen matches on iOS devices. #TINY-4350
- Fixed performance issues where sticky toolbar was jumping while scrolling on slower browsers. #TINY-4475

## 5.1.2 - 2019-11-19

### Fixed
- Fixed desktop touch devices using `mobile` configuration overrides. #TINY-4345
- Fixed unable to disable the new scrolling toolbar feature. #TINY-4345
- Fixed touch events passing through any pop-up items to the content underneath on Android devices. #TINY-4367
- Fixed the table selector handles throwing JavaScript exceptions for non-table selections. #TINY-4338
- Fixed `cut` operations not removing selected content on Android devices when the `paste` plugin is enabled. #TINY-4362
- Fixed inline toolbar not constrained to the window width by default. #TINY-4314
- Fixed context toolbar split button chevrons pointing right when they should be pointing down. #TINY-4257
- Fixed unable to access the dialog footer in tabbed dialogs on small screens. #TINY-4360
- Fixed mobile table selectors were hard to select with touch by increasing the size. #TINY-4366
- Fixed mobile table selectors moving when moving outside the editor. #TINY-4366
- Fixed inline toolbars collapsing when using sliding toolbars. #TINY-4389
- Fixed block textpatterns not treating NBSPs as spaces. #TINY-4378
- Fixed backspace not merging blocks when the last element in the preceding block was a `contenteditable="false"` element. #TINY-4235
- Fixed toolbar buttons that only contain text labels overlapping on mobile devices. #TINY-4395
- Fixed quickbars quickimage picker not working on mobile. #TINY-4377
- Fixed fullscreen not resizing in an iOS WKWebView component. #TINY-4413

## 5.1.1 - 2019-10-28

### Fixed
- Fixed font formats containing spaces being wrapped in `&quot;` entities instead of single quotes. #TINY-4275
- Fixed alert and confirm dialogs losing focus when clicked. #TINY-4248
- Fixed clicking outside a modal dialog focusing on the document body. #TINY-4249
- Fixed the context toolbar not hiding when scrolled out of view. #TINY-4265

## 5.1.0 - 2019-10-17

### Added
- Added touch selector handles for table selections on touch devices. #TINY-4097
- Added border width field to Table Cell dialog. #TINY-4028
- Added touch event listener to media plugin to make embeds playable. #TINY-4093
- Added oxide styling options to notifications and tweaked the default variables. #TINY-4153
- Added additional padding to split button chevrons on touch devices, to make them easier to interact with. #TINY-4223
- Added new platform detection functions to `Env` and deprecated older detection properties. #TINY-4184
- Added `inputMode` config field to specify inputmode attribute of `input` dialog components. #TINY-4062
- Added new `inputMode` property to relevant plugins/dialogs. #TINY-4102
- Added new `toolbar_sticky` setting to allow the iframe menubar/toolbar to stick to the top of the window when scrolling. #TINY-3982

### Changed
- Changed default setting for `toolbar_drawer` to `floating`. #TINY-3634
- Changed mobile phones to use the `silver` theme by default. #TINY-3634
- Changed some editor settings to default to `false` on touch devices:
  - `menubar`(phones only). #TINY-4077
  - `table_grid`. #TINY-4075
  - `resize`. #TINY-4157
  - `object_resizing`. #TINY-4157
- Changed toolbars and context toolbars to sidescroll on mobile. #TINY-3894 #TINY-4107
- Changed context menus to render as horizontal menus on touch devices. #TINY-4107
- Changed the editor to use the `VisualViewport` API of the browser where possible. #TINY-4078
- Changed visualblocks toolbar button icon and renamed `paragraph` icon to `visualchars`. #TINY-4074
- Changed Oxide default for `@toolbar-button-chevron-color` to follow toolbar button icon color. #TINY-4153
- Changed the `urlinput` dialog component to use the `url` type attribute. #TINY-4102

### Fixed
- Fixed Safari desktop visual viewport fires resize on fullscreen breaking the restore function. #TINY-3976
- Fixed scroll issues on mobile devices. #TINY-3976
- Fixed context toolbar unable to refresh position on iOS12. #TINY-4107
- Fixed ctrl+left click not opening links on readonly mode and the preview dialog. #TINY-4138
- Fixed Slider UI component not firing `onChange` event on touch devices. #TINY-4092
- Fixed notifications overlapping instead of stacking. #TINY-3478
- Fixed inline dialogs positioning incorrectly when the page is scrolled. #TINY-4018
- Fixed inline dialogs and menus not repositioning when resizing. #TINY-3227
- Fixed inline toolbar incorrectly stretching to the full width when a width value was provided. #TINY-4066
- Fixed menu chevrons color to follow the menu text color. #TINY-4153
- Fixed table menu selection grid from staying black when using dark skins, now follows border color. #TINY-4153
- Fixed Oxide using the wrong text color variable for menubar button focused state. #TINY-4146
- Fixed the autoresize plugin not keeping the selection in view when resizing. #TINY-4094
- Fixed textpattern plugin throwing exceptions when using `forced_root_block: false`. #TINY-4172
- Fixed missing CSS fill styles for toolbar button icon active state. #TINY-4147
- Fixed an issue where the editor selection could end up inside a short ended element (such as `br`). #TINY-3999
- Fixed browser selection being lost in inline mode when opening split dropdowns. #TINY-4197
- Fixed backspace throwing an exception when using `forced_root_block: false`. #TINY-4099
- Fixed floating toolbar drawer expanding outside the bounds of the editor. #TINY-3941
- Fixed the autocompleter not activating immediately after a `br` or `contenteditable=false` element. #TINY-4194
- Fixed an issue where the autocompleter would incorrectly close on IE 11 in certain edge cases. #TINY-4205

## 5.0.16 - 2019-09-24

### Added
- Added new `referrer_policy` setting to add the `referrerpolicy` attribute when loading scripts or stylesheets. #TINY-3978
- Added a slight background color to dialog tab links when focused to aid keyboard navigation. #TINY-3877

### Fixed
- Fixed media poster value not updating on change. #TINY-4013
- Fixed openlink was not registered as a toolbar button. #TINY-4024
- Fixed failing to initialize if a script tag was used inside a SVG. #TINY-4087
- Fixed double top border showing on toolbar without menubar when toolbar_drawer is enabled. #TINY-4118
- Fixed unable to drag inline dialogs to the bottom of the screen when scrolled. #TINY-4154
- Fixed notifications appearing on top of the toolbar when scrolled in inline mode. #TINY-4159
- Fixed notifications displaying incorrectly on IE 11. #TINY-4169

## 5.0.15 - 2019-09-02

### Added
- Added a dark `content_css` skin to go with the dark UI skin. #TINY-3743

### Changed
- Changed the enabled state on toolbar buttons so they don't get the hover effect. #TINY-3974

### Fixed
- Fixed missing CSS active state on toolbar buttons. #TINY-3966
- Fixed `onChange` callback not firing for the colorinput dialog component. #TINY-3968
- Fixed context toolbars not showing in fullscreen mode. #TINY-4023

## 5.0.14 - 2019-08-19

### Added
- Added an API to reload the autocompleter menu with additional fetch metadata #MENTIONS-17

### Fixed
- Fixed missing toolbar button border styling options. #TINY-3965
- Fixed image upload progress notification closing before the upload is complete. #TINY-3963
- Fixed inline dialogs not closing on escape when no dialog component is in focus. #TINY-3936
- Fixed plugins not being filtered when defaulting to mobile on phones. #TINY-3537
- Fixed toolbar more drawer showing the content behind it when transitioning between opened and closed states. #TINY-3878
- Fixed focus not returning to the dialog after pressing the "Replace all" button in the search and replace dialog. #TINY-3961

### Removed
- Removed Oxide variable `@menubar-select-disabled-border-color` and replaced it with `@menubar-select-disabled-border`. #TINY-3965

## 5.0.13 - 2019-08-06

### Changed
- Changed modal dialogs to prevent dragging by default and added new `draggable_modal` setting to restore dragging. #TINY-3873
- Changed the nonbreaking plugin to insert nbsp characters wrapped in spans to aid in filtering. This can be disabled using the `nonbreaking_wrap` setting. #TINY-3647
- Changed backspace behaviour in lists to outdent nested list items when the cursor is at the start of the list item. #TINY-3651

### Fixed
- Fixed sidebar growing beyond editor bounds in IE 11. #TINY-3937
- Fixed issue with being unable to keyboard navigate disabled toolbar buttons. #TINY-3350
- Fixed issues with backspace and delete in nested contenteditable true and false elements. #TINY-3868
- Fixed issue with losing keyboard navigation in dialogs due to disabled buttons. #TINY-3914
- Fixed `MouseEvent.mozPressure is deprecated` warning in Firefox. #TINY-3919
- Fixed `default_link_target` not being respected when `target_list` is disabled. #TINY-3757
- Fixed mobile plugin filter to only apply to the mobile theme, rather than all mobile platforms. #TINY-3405
- Fixed focus switching to another editor during mode changes. #TINY-3852
- Fixed an exception being thrown when clicking on an uninitialized inline editor. #TINY-3925
- Fixed unable to keyboard navigate to dialog menu buttons. #TINY-3933
- Fixed dialogs being able to be dragged outside the window viewport. #TINY-3787
- Fixed inline dialogs appearing above modal dialogs. #TINY-3932

## 5.0.12 - 2019-07-18

### Added
- Added ability to utilize UI dialog panels inside other panels. #TINY-3305
- Added help dialog tab explaining keyboard navigation of the editor. #TINY-3603

### Changed
- Changed the "Find and Replace" design to an inline dialog. #TINY-3054

### Fixed
- Fixed issue where autolink spacebar event was not being fired on Edge. #TINY-3891
- Fixed table selection missing the background color. #TINY-3892
- Fixed removing shortcuts not working for function keys. #TINY-3871
- Fixed non-descriptive UI component type names. #TINY-3349
- Fixed UI registry components rendering as the wrong type when manually specifying a different type. #TINY-3385
- Fixed an issue where dialog checkbox, input, selectbox, textarea and urlinput components couldn't be disabled. #TINY-3708
- Fixed the context toolbar not using viable screen space in inline/distraction free mode. #TINY-3717
- Fixed the context toolbar overlapping the toolbar in various conditions. #TINY-3205
- Fixed IE11 edge case where items were being inserted into the wrong location. #TINY-3884

## 5.0.11 - 2019-07-04

### Fixed
- Fixed packaging errors caused by a rollup treeshaking bug (https://github.com/rollup/rollup/issues/2970). #TINY-3866
- Fixed the customeditor component not able to get data from the dialog api. #TINY-3866
- Fixed collection component tooltips not being translated. #TINY-3855

## 5.0.10 - 2019-07-02

### Added
- Added support for all HTML color formats in `color_map` setting. #TINY-3837

### Changed
- Changed backspace key handling to outdent content in appropriate circumstances. #TINY-3685
- Changed default palette for forecolor and backcolor to include some lighter colors suitable for highlights. #TINY-2865
- Changed the search and replace plugin to cycle through results. #TINY-3800

### Fixed
- Fixed inconsistent types causing some properties to be unable to be used in dialog components. #TINY-3778
- Fixed an issue in the Oxide skin where dialog content like outlines and shadows were clipped because of overflow hidden. #TINY-3566
- Fixed the search and replace plugin not resetting state when changing the search query. #TINY-3800
- Fixed backspace in lists not creating an undo level. #TINY-3814
- Fixed the editor to cancel loading in quirks mode where the UI is not supported. #TINY-3391
- Fixed applying fonts not working when the name contained spaces and numbers. #TINY-3801
- Fixed so that initial content is retained when initializing on list items. #TINY-3796
- Fixed inefficient font name and font size current value lookup during rendering. #TINY-3813
- Fixed mobile font copied into the wrong folder for the oxide-dark skin. #TINY-3816
- Fixed an issue where resizing the width of tables would produce inaccurate results. #TINY-3827
- Fixed a memory leak in the Silver theme. #TINY-3797
- Fixed alert and confirm dialogs using incorrect markup causing inconsistent padding. #TINY-3835
- Fixed an issue in the Table plugin with `table_responsive_width` not enforcing units when resizing. #TINY-3790
- Fixed leading, trailing and sequential spaces being lost when pasting plain text. #TINY-3726
- Fixed exception being thrown when creating relative URIs. #TINY-3851
- Fixed focus is no longer set to the editor content during mode changes unless the editor already had focus. #TINY-3852

## 5.0.9 - 2019-06-26

### Fixed
- Fixed print plugin not working in Firefox. #TINY-3834

## 5.0.8 - 2019-06-18

### Added
- Added back support for multiple toolbars. #TINY-2195
- Added support for .m4a files to the media plugin. #TINY-3750
- Added new base_url and suffix editor init options. #TINY-3681

### Fixed
- Fixed incorrect padding for select boxes with visible values. #TINY-3780
- Fixed selection incorrectly changing when programmatically setting selection on contenteditable false elements. #TINY-3766
- Fixed sidebar background being transparent. #TINY-3727
- Fixed the build to remove duplicate iife wrappers. #TINY-3689
- Fixed bogus autocompleter span appearing in content when the autocompleter menu is shown. #TINY-3752
- Fixed toolbar font size select not working with legacyoutput plugin. #TINY-2921
- Fixed the legacyoutput plugin incorrectly aligning images. #TINY-3660
- Fixed remove color not working when using the legacyoutput plugin. #TINY-3756
- Fixed the font size menu applying incorrect sizes when using the legacyoutput plugin. #TINY-3773
- Fixed scrollIntoView not working when the parent window was out of view. #TINY-3663
- Fixed the print plugin printing from the wrong window in IE11. #TINY-3762
- Fixed content CSS loaded over CORS not loading in the preview plugin with content_css_cors enabled. #TINY-3769
- Fixed the link plugin missing the default "None" option for link list. #TINY-3738
- Fixed small dot visible with menubar and toolbar disabled in inline mode. #TINY-3623
- Fixed space key properly inserts a nbsp before/after block elements. #TINY-3745
- Fixed native context menu not showing with images in IE11. #TINY-3392
- Fixed inconsistent browser context menu image selection. #TINY-3789

## 5.0.7 - 2019-06-05

### Added
- Added new toolbar button and menu item for inserting tables via dialog. #TINY-3636
- Added new API for adding/removing/changing tabs in the Help dialog. #TINY-3535
- Added highlighting of matched text in autocompleter items. #TINY-3687
- Added the ability for autocompleters to work with matches that include spaces. #TINY-3704
- Added new `imagetools_fetch_image` callback to allow custom implementations for cors loading of images. #TINY-3658
- Added `'http'` and `https` options to `link_assume_external_targets` to prepend `http://` or `https://` prefixes when URL does not contain a protocol prefix. Patch contributed by francoisfreitag. #GH-4335

### Changed
- Changed annotations navigation to work the same as inline boundaries. #TINY-3396
- Changed tabpanel API by adding a `name` field and changing relevant methods to use it. #TINY-3535

### Fixed
- Fixed text color not updating all color buttons when choosing a color. #TINY-3602
- Fixed the autocompleter not working with fragmented text. #TINY-3459
- Fixed the autosave plugin no longer overwrites window.onbeforeunload. #TINY-3688
- Fixed infinite loop in the paste plugin when IE11 takes a long time to process paste events. Patch contributed by lRawd. #GH-4987
- Fixed image handle locations when using `fixed_toolbar_container`. Patch contributed by t00. #GH-4966
- Fixed the autoresize plugin not firing `ResizeEditor` events. #TINY-3587
- Fixed editor in fullscreen mode not extending to the bottom of the screen. #TINY-3701
- Fixed list removal when pressing backspace after the start of the list item. #TINY-3697
- Fixed autocomplete not triggering from compositionend events. #TINY-3711
- Fixed `file_picker_callback` could not set the caption field on the insert image dialog. #TINY-3172
- Fixed the autocompleter menu showing up after a selection had been made. #TINY-3718
- Fixed an exception being thrown when a file or number input has focus during initialization. Patch contributed by t00. #GH-2194

## 5.0.6 - 2019-05-22

### Added
- Added `icons_url` editor settings to enable icon packs to be loaded from a custom url. #TINY-3585
- Added `image_uploadtab` editor setting to control the visibility of the upload tab in the image dialog. #TINY-3606
- Added new api endpoints to the wordcount plugin and improved character count logic. #TINY-3578

### Changed
- Changed plugin, language and icon loading errors to log in the console instead of a notification. #TINY-3585

### Fixed
- Fixed the textpattern plugin not working with fragmented text. #TINY-3089
- Fixed various toolbar drawer accessibility issues and added an animation. #TINY-3554
- Fixed issues with selection and ui components when toggling readonly mode. #TINY-3592
- Fixed so readonly mode works with inline editors. #TINY-3592
- Fixed docked inline toolbar positioning when scrolled. #TINY-3621
- Fixed initial value not being set on bespoke select in quickbars and toolbar drawer. #TINY-3591
- Fixed so that nbsp entities aren't trimmed in white-space: pre-line elements. #TINY-3642
- Fixed `mceInsertLink` command inserting spaces instead of url encoded characters. #GH-4990
- Fixed text content floating on top of dialogs in IE11. #TINY-3640

## 5.0.5 - 2019-05-09

### Added
- Added menu items to match the forecolor/backcolor toolbar buttons. #TINY-2878
- Added default directionality based on the configured language. #TINY-2621
- Added styles, icons and tests for rtl mode. #TINY-2621

### Fixed
- Fixed autoresize not working with floating elements or when media elements finished loading. #TINY-3545
- Fixed incorrect vertical caret positioning in IE 11. #TINY-3188
- Fixed submenu anchoring hiding overflowed content. #TINY-3564

### Removed
- Removed unused and hidden validation icons to avoid displaying phantom tooltips. #TINY-2329

## 5.0.4 - 2019-04-23

### Added
- Added back URL dialog functionality, which is now available via `editor.windowManager.openUrl()`. #TINY-3382
- Added the missing throbber functionality when calling `editor.setProgressState(true)`. #TINY-3453
- Added function to reset the editor content and undo/dirty state via `editor.resetContent()`. #TINY-3435
- Added the ability to set menu buttons as active. #TINY-3274
- Added `editor.mode` API, featuring a custom editor mode API. #TINY-3406
- Added better styling to floating toolbar drawer. #TINY-3479
- Added the new premium plugins to the Help dialog plugins tab. #TINY-3496
- Added the linkchecker context menu items to the default configuration. #TINY-3543

### Fixed
- Fixed image context menu items showing on placeholder images. #TINY-3280
- Fixed dialog labels and text color contrast within notifications/alert banners to satisfy WCAG 4.5:1 contrast ratio for accessibility. #TINY-3351
- Fixed selectbox and colorpicker items not being translated. #TINY-3546
- Fixed toolbar drawer sliding mode to correctly focus the editor when tabbing via keyboard navigation. #TINY-3533
- Fixed positioning of the styleselect menu in iOS while using the mobile theme. #TINY-3505
- Fixed the menubutton `onSetup` callback to be correctly executed when rendering the menu buttons. #TINY-3547
- Fixed `default_link_target` setting to be correctly utilized when creating a link. #TINY-3508
- Fixed colorpicker floating marginally outside its container. #TINY-3026
- Fixed disabled menu items displaying as active when hovered. #TINY-3027

### Removed
- Removed redundant mobile wrapper. #TINY-3480

## 5.0.3 - 2019-03-19

### Changed
- Changed empty nested-menu items within the style formats menu to be disabled or hidden if the value of `style_formats_autohide` is `true`. #TINY-3310
- Changed the entire phrase 'Powered by Tiny' in the status bar to be a link instead of just the word 'Tiny'. #TINY-3366
- Changed `formatselect`, `styleselect` and `align` menus to use the `mceToggleFormat` command internally. #TINY-3428

### Fixed
- Fixed toolbar keyboard navigation to work as expected when `toolbar_drawer` is configured. #TINY-3432
- Fixed text direction buttons to display the correct pressed state in selections that have no explicit `dir` property. #TINY-3138
- Fixed the mobile editor to clean up properly when removed. #TINY-3445
- Fixed quickbar toolbars to add an empty box to the screen when it is set to `false`. #TINY-3439
- Fixed an issue where pressing the **Delete/Backspace** key at the edge of tables was creating incorrect selections. #TINY-3371
- Fixed an issue where dialog collection items (emoticon and special character dialogs) couldn't be selected with touch devices. #TINY-3444
- Fixed a type error introduced in TinyMCE version 5.0.2 when calling `editor.getContent()` with nested bookmarks. #TINY-3400
- Fixed an issue that prevented default icons from being overridden. #TINY-3449
- Fixed an issue where **Home/End** keys wouldn't move the caret correctly before or after `contenteditable=false` inline elements. #TINY-2995
- Fixed styles to be preserved in IE 11 when editing via the `fullpage` plugin. #TINY-3464
- Fixed the `link` plugin context toolbar missing the open link button. #TINY-3461
- Fixed inconsistent dialog component spacing. #TINY-3436

## 5.0.2 - 2019-03-05

### Added
- Added presentation and document presets to `htmlpanel` dialog component. #TINY-2694
- Added missing fixed_toolbar_container setting has been reimplemented in the Silver theme. #TINY-2712
- Added a new toolbar setting `toolbar_drawer` that moves toolbar groups which overflow the editor width into either a `sliding` or `floating` toolbar section. #TINY-2874

### Changed
- Updated the build process to include package lock files in the dev distribution archive. #TINY-2870

### Fixed
- Fixed inline dialogs did not have aria attributes. #TINY-2694
- Fixed default icons are now available in the UI registry, allowing use outside of toolbar buttons. #TINY-3307
- Fixed a memory leak related to select toolbar items. #TINY-2874
- Fixed a memory leak due to format changed listeners that were never unbound. #TINY-3191
- Fixed an issue where content may have been lost when using permanent bookmarks. #TINY-3400
- Fixed the quicklink toolbar button not rendering in the quickbars plugin. #TINY-3125
- Fixed an issue where menus were generating invalid HTML in some cases. #TINY-3323
- Fixed an issue that could cause the mobile theme to show a blank white screen when the editor was inside an `overflow:hidden` element. #TINY-3407
- Fixed mobile theme using a transparent background and not taking up the full width on iOS. #TINY-3414
- Fixed the template plugin dialog missing the description field. #TINY-3337
- Fixed input dialog components using an invalid default type attribute. #TINY-3424
- Fixed an issue where backspace/delete keys after/before pagebreak elements wouldn't move the caret. #TINY-3097
- Fixed an issue in the table plugin where menu items and toolbar buttons weren't showing correctly based on the selection. #TINY-3423
- Fixed inconsistent button focus styles in Firefox. #TINY-3377
- Fixed the resize icon floating left when all status bar elements were disabled. #TINY-3340
- Fixed the resize handle to not show in fullscreen mode. #TINY-3404

## 5.0.1 - 2019-02-21

### Added
- Added H1-H6 toggle button registration to the silver theme. #TINY-3070
- Added code sample toolbar button will now toggle on when the cursor is in a code section. #TINY-3040
- Added new settings to the emoticons plugin to allow additional emoticons to be added. #TINY-3088

### Fixed
- Fixed an issue where adding links to images would replace the image with text. #TINY-3356
- Fixed an issue where the inline editor could use fractional pixels for positioning. #TINY-3202
- Fixed an issue where uploading non-image files in the Image Plugin upload tab threw an error. #TINY-3244
- Fixed an issue in the media plugin that was causing the source url and height/width to be lost in certain circumstances. #TINY-2858
- Fixed an issue with the Context Toolbar not being removed when clicking outside of the editor. #TINY-2804
- Fixed an issue where clicking 'Remove link' wouldn't remove the link in certain circumstances. #TINY-3199
- Fixed an issue where the media plugin would fail when parsing dialog data. #TINY-3218
- Fixed an issue where retrieving the selected content as text didn't create newlines. #TINY-3197
- Fixed incorrect keyboard shortcuts in the Help dialog for Windows. #TINY-3292
- Fixed an issue where JSON serialization could produce invalid JSON. #TINY-3281
- Fixed production CSS including references to source maps. #TINY-3920
- Fixed development CSS was not included in the development zip. #TINY-3920
- Fixed the autocompleter matches predicate not matching on the start of words by default. #TINY-3306
- Fixed an issue where the page could be scrolled with modal dialogs open. #TINY-2252
- Fixed an issue where autocomplete menus would show an icon margin when no items had icons. #TINY-3329
- Fixed an issue in the quickbars plugin where images incorrectly showed the text selection toolbar. #TINY-3338
- Fixed an issue that caused the inline editor to fail to render when the target element already had focus. #TINY-3353

### Removed
- Removed paste as text notification banner and paste_plaintext_inform setting. #POW-102

## 5.0.0 - 2019-02-04

Full documentation for the version 5 features and changes is available at https://www.tiny.cloud/docs/tinymce/5/release-notes/release-notes50/

### Added
- Added links and registered names with * to denote premium plugins in Plugins tab of Help dialog. #TINY-3223

### Changed
- Changed Tiny 5 mobile skin to look more uniform with desktop. #TINY-2650
- Blacklisted table, th and td as inline editor target. #TINY-717

### Fixed
- Fixed an issue where tab panel heights weren't sizing properly on smaller screens and weren't updating on resize. #TINY-3242
- Fixed image tools not having any padding between the label and slider. #TINY-3220
- Fixed context toolbar toggle buttons not showing the correct state. #TINY-3022
- Fixed missing separators in the spellchecker context menu between the suggestions and actions. #TINY-3217
- Fixed notification icon positioning in alert banners. #TINY-2196
- Fixed a typo in the word count plugin name. #TINY-3062
- Fixed charmap and emoticons dialogs not having a primary button. #TINY-3233
- Fixed an issue where resizing wouldn't work correctly depending on the box-sizing model. #TINY-3278

## 5.0.0-rc-2 - 2019-01-22

### Added
- Added screen reader accessibility for sidebar and statusbar. #TINY-2699

### Changed
- Changed formatting menus so they are registered and made the align toolbar button use an icon instead of text. #TINY-2880
- Changed checkboxes to use a boolean for its state, instead of a string. #TINY-2848
- Updated the textpattern plugin to properly support nested patterns and to allow running a command with a value for a pattern with a start and an end. #TINY-2991
- Updated Emoticons and Charmap dialogs to be screen reader accessible. #TINY-2693

### Fixed
- Fixed the link dialog such that it will now retain class attributes when updating links. #TINY-2825
- Fixed "Find and replace" not showing in the "Edit" menu by default. #TINY-3061
- Fixed dropdown buttons missing the 'type' attribute, which could cause forms to be incorrectly submitted. #TINY-2826
- Fixed emoticon and charmap search not returning expected results in certain cases. #TINY-3084
- Fixed blank rel_list values throwing an exception in the link plugin. #TINY-3149

### Removed
- Removed unnecessary 'flex' and unused 'colspan' properties from the new dialog APIs. #TINY-2973

## 5.0.0-rc-1 - 2019-01-08

### Added
- Added editor settings functionality to specify title attributes for toolbar groups. #TINY-2690
- Added icons instead of button text to improve Search and Replace dialog footer appearance. #TINY-2654
- Added `tox-dialog__table` instead of `mce-table-striped` class to enhance Help dialog appearance. #TINY-2360
- Added title attribute to iframes so, screen readers can announce iframe labels. #TINY-2692
- Added a wordcount menu item, that defaults to appearing in the tools menu. #TINY-2877

### Changed
- Updated the font select dropdown logic to try to detect the system font stack and show "System Font" as the font name. #TINY-2710
- Updated the autocompleter to only show when it has matched items. #TINY-2350
- Updated SizeInput labels to "Height" and "Width" instead of Dimensions. #TINY-2833
- Updated the build process to minify and generate ASCII only output for the emoticons database. #TINY-2744

### Fixed
- Fixed readonly mode not fully disabling editing content. #TINY-2287
- Fixed accessibility issues with the font select, font size, style select and format select toolbar dropdowns. #TINY-2713
- Fixed accessibility issues with split dropdowns. #TINY-2697
- Fixed the legacyoutput plugin to be compatible with TinyMCE 5.0. #TINY-2301
- Fixed icons not showing correctly in the autocompleter popup. #TINY-3029
- Fixed an issue where preview wouldn't show anything in Edge under certain circumstances. #TINY-3035
- Fixed the height being incorrectly calculated for the autoresize plugin. #TINY-2807

## 5.0.0-beta-1 - 2018-11-30

### Added
- Added a new `addNestedMenuItem()` UI registry function and changed all nested menu items to use the new registry functions. #TINY-2230
- Added title attribute to color swatch colors. #TINY-2669
- Added anchorbar component to anchor inline toolbar dialogs to instead of the toolbar. #TINY-2040
- Added support for toolbar<n> and toolbar array config options to be squashed into a single toolbar and not create multiple toolbars. #TINY-2195
- Added error handling for when forced_root_block config option is set to true. #TINY-2261
- Added functionality for the removed_menuitems config option. #TINY-2184
- Added the ability to use a string to reference menu items in menu buttons and submenu items. #TINY-2253

### Changed
- Changed the name of the "inlite" plugin to "quickbars". #TINY-2831
- Changed the background color icon to highlight background icon. #TINY-2258
- Changed Help dialog to be accessible to screen readers. #TINY-2687
- Changed the color swatch to save selected custom colors to local storage for use across sessions. #TINY-2722
- Changed `WindowManager` API - methods `getParams`, `setParams` and `getWindows`, and the legacy `windows` property, have been removed. `alert` and `confirm` dialogs are no longer tracked in the window list. #TINY-2603

### Fixed
- Fixed an inline mode issue where the save plugin upon saving can cause content loss. #TINY-2659
- Fixed an issue in IE 11 where calling selection.getContent() would return an empty string when the editor didn't have focus. #TINY-2325

### Removed
- Removed compat3x plugin. #TINY-2815

## 5.0.0-preview-4 - 2018-11-12

### Added
- Added width and height placeholder text to image and media dialog dimensions input. #AP-296
- Added the ability to keyboard navigate through menus, toolbars, sidebar and the status bar sequentially. #AP-381
- Added translation capability back to the editor's UI. #AP-282
- Added `label` component type for dialogs to group components under a label.

### Changed
- Changed the editor resize handle so that it should be disabled when the autoresize plugin is turned on. #AP-424
- Changed UI text for microcopy improvements. #TINY-2281

### Fixed
- Fixed distraction free plugin. #AP-470
- Fixed contents of the input field being selected on focus instead of just recieving an outline highlight. #AP-464
- Fixed styling issues with dialogs and menus in IE 11. #AP-456
- Fixed custom style format control not honoring custom formats. #AP-393
- Fixed context menu not appearing when clicking an image with a caption. #AP-382
- Fixed directionality of UI when using an RTL language. #AP-423
- Fixed page responsiveness with multiple inline editors. #AP-430
- Fixed empty toolbar groups appearing through invalid configuration of the `toolbar` property. #AP-450
- Fixed text not being retained when updating links through the link dialog. #AP-293
- Fixed edit image context menu, context toolbar and toolbar items being incorrectly enabled when selecting invalid images. #AP-323
- Fixed emoji type ahead being shown when typing URLs. #AP-366
- Fixed toolbar configuration properties incorrectly expecting string arrays instead of strings. #AP-342
- Fixed the block formatting toolbar item not showing a "Formatting" title when there is no selection. #AP-321
- Fixed clicking disabled toolbar buttons hiding the toolbar in inline mode. #AP-380
- Fixed `EditorResize` event not being fired upon editor resize. #AP-327
- Fixed tables losing styles when updating through the dialog. #AP-368
- Fixed context toolbar positioning to be more consistent near the edges of the editor. #AP-318
- Fixed table of contents plugin now works with v5 toolbar APIs correctly. #AP-347
- Fixed the `link_context_toolbar` configuration not disabling the context toolbar. #AP-458
- Fixed the link context toolbar showing incorrect relative links. #AP-435
- Fixed the alignment of the icon in alert banner dialog components. #TINY-2220
- Fixed the visual blocks and visual char menu options not displaying their toggled state. #TINY-2238
- Fixed the editor not displaying as fullscreen when toggled. #TINY-2237

### Removed
- Removed the tox-custom-editor class that was added to the wrapping element of codemirror. #TINY-2211

## 5.0.0-preview-3 - 2018-10-18

### Changed
- Changed editor layout to use modern CSS properties over manually calculating dimensions. #AP-324
- Changed `autoresize_min_height` and `autoresize_max_height` configurations to `min_height` and `max_height`. #AP-324
- Changed `Whole word` label in Search and Replace dialog to `Find whole words only`. #AP-387

### Fixed
- Fixed bugs with editor width jumping when resizing and the iframe not resizing to smaller than 150px in height. #AP-324
- Fixed mobile theme bug that prevented the editor from loading. #AP-404
- Fixed long toolbar groups extending outside of the editor instead of wrapping.
- Fixed dialog titles so they are now proper case. #AP-384
- Fixed color picker default to be #000000 instead of #ff00ff. #AP-216
- Fixed "match case" option on the Find and Replace dialog is no longer selected by default. #AP-298
- Fixed vertical alignment of toolbar icons. #DES-134
- Fixed toolbar icons not appearing on IE11. #DES-133

## 5.0.0-preview-2 - 2018-10-10

### Added
- Added swatch is now shown for colorinput fields, instead of the colorpicker directly. #AP-328
- Added fontformats and fontsizes menu items. #AP-390

### Changed
- Changed configuration of color options has been simplified to `color_map`, `color_cols`, and `custom_colors`. #AP-328
- Changed `height` configuration to apply to the editor frame (including menubar, toolbar, status bar) instead of the content area. #AP-324

### Fixed
- Fixed styleselect not updating the displayed item as the cursor moved. #AP-388
- Fixed preview iframe not expanding to the dialog size. #AP-252
- Fixed 'meta' shortcuts not translated into platform-specific text. #AP-270
- Fixed tabbed dialogs (Charmap and Emoticons) shrinking when no search results returned.
- Fixed a bug where alert banner icons were not retrieved from icon pack. #AP-330
- Fixed component styles to flex so they fill large dialogs. #AP-252
- Fixed editor flashing unstyled during load (still in progress). #AP-349

### Removed
- Removed `colorpicker` plugin, it is now in the theme. #AP-328
- Removed `textcolor` plugin, it is now in the theme. #AP-328

## 5.0.0-preview-1 - 2018-10-01

Developer preview 1.

Initial list of features and changes is available at https://www.tiny.cloud/docs/tinymce/5/release-notes/release-notes50/.

## 4.9.11 - 2020-07-13

### Fixed
- Fixed the `selection.setContent()` API not running parser filters. #TINY-4002
- Fixed content in an iframe element parsing as DOM elements instead of text content. #TINY-5943
- Fixed up and down keyboard navigation not working for inline `contenteditable="false"` elements. #TINY-6226

## 4.9.10 - 2020-04-23

### Fixed
- Fixed an issue where the editor selection could end up inside a short ended element (eg br). #TINY-3999
- Fixed a security issue related to CDATA sanitization during parsing. #TINY-4669
- Fixed `media` embed content not processing safely in some cases. #TINY-4857

## 4.9.9 - 2020-03-25

### Fixed
- Fixed the table selection not functioning correctly in Microsoft Edge 44 or higher. #TINY-3862
- Fixed the table resize handles not functioning correctly in Microsoft Edge 44 or higher. #TINY-4160
- Fixed the `forced_root_block_attrs` setting not applying attributes to new blocks consistently. #TINY-4564
- Fixed the editor failing to initialize if a script tag was used inside an SVG. #TINY-4087

## 4.9.8 - 2020-01-28

### Fixed
- Fixed the `mobile` theme failing to load due to a bundling issue. #TINY-4613
- Fixed security issue related to parsing HTML comments and CDATA. #TINY-4544

## 4.9.7 - 2019-12-19

### Fixed
- Fixed the `visualchars` plugin converting HTML-like text to DOM elements in certain cases. #TINY-4507
- Fixed an issue with the `paste` plugin not sanitizing content in some cases. #TINY-4510
- Fixed HTML comments incorrectly being parsed in certain cases. #TINY-4511

## 4.9.6 - 2019-09-02

### Fixed
- Fixed image browse button sometimes displaying the browse window twice. #TINY-3959

## 4.9.5 - 2019-07-02

### Changed
- Changed annotations navigation to work the same as inline boundaries. #TINY-3396

### Fixed
- Fixed the print plugin printing from the wrong window in IE11. #TINY-3762
- Fixed an exception being thrown when a file or number input has focus during initialization. Patch contributed by t00. #GH-2194
- Fixed positioning of the styleselect menu in iOS while using the mobile theme. #TINY-3505
- Fixed native context menu not showing with images in IE11. #TINY-3392
- Fixed selection incorrectly changing when programmatically setting selection on contenteditable false elements. #TINY-3766
- Fixed image browse button not working on touch devices. #TINY-3751
- Fixed so that nbsp entities aren't trimmed in white-space: pre-line elements. #TINY-3642
- Fixed space key properly inserts a nbsp before/after block elements. #TINY-3745
- Fixed infinite loop in the paste plugin when IE11 takes a long time to process paste events. Patch contributed by lRawd. #GH-4987

## 4.9.4 - 2019-03-20

### Fixed
- Fixed an issue where **Home/End** keys wouldn't move the caret correctly before or after `contenteditable=false` inline elements. #TINY-2995
- Fixed an issue where content may have been lost when using permanent bookmarks. #TINY-3400
- Fixed the mobile editor to clean up properly when removed. #TINY-3445
- Fixed an issue where retrieving the selected content as text didn't create newlines. #TINY-3197
- Fixed an issue where typing space between images would cause issues with nbsp not being inserted. #TINY-3346

## 4.9.3 - 2019-01-31

### Added
- Added a visualchars_default_state setting to the Visualchars Plugin. Patch contributed by mat3e.

### Fixed
- Fixed a bug where scrolling on a page with more than one editor would cause a ResizeWindow event to fire. #TINY-3247
- Fixed a bug where if a plugin threw an error during initialisation the whole editor would fail to load. #TINY-3243
- Fixed a bug where getContent would include bogus elements when valid_elements setting was set up in a specific way. #TINY-3213
- Fixed a bug where only a few function key names could be used when creating keyboard shortcuts. #TINY-3146
- Fixed a bug where it wasn't possible to enter spaces into an editor after pressing shift+enter. #TINY-3099
- Fixed a bug where no caret would be rendered after backspacing to a contenteditable false element. #TINY-2998
- Fixed a bug where deletion to/from indented lists would leave list fragments in the editor. #TINY-2981

## 4.9.2 - 2018-12-17

### Fixed
- Fixed a bug with pressing the space key on IE 11 would result in nbsp characters being inserted between words at the end of a block. #TINY-2996
- Fixed a bug where character composition using quote and space on US International keyboards would produce a space instead of a quote. #TINY-2999
- Fixed a bug where remove format wouldn't remove the inner most inline element in some situations. #TINY-2982
- Fixed a bug where outdenting an list item would affect attributes on other list items within the same list. #TINY-2971
- Fixed a bug where the DomParser filters wouldn't be applied for elements created when parsing invalid html. #TINY-2978
- Fixed a bug where setProgressState wouldn't automatically close floating ui elements like menus. #TINY-2896
- Fixed a bug where it wasn't possible to navigate out of a figcaption element using the arrow keys. #TINY-2894
- Fixed a bug where enter key before an image inside a link would remove the image. #TINY-2780

## 4.9.1 - 2018-12-04

### Added
- Added functionality to insert html to the replacement feature of the Textpattern Plugin. #TINY-2839

### Fixed
- Fixed a bug where `editor.selection.getContent({format: 'text'})` didn't work as expected in IE11 on an unfocused editor. #TINY-2862
- Fixed a bug in the Textpattern Plugin where the editor would get an incorrect selection after inserting a text pattern on Safari. #TINY-2838
- Fixed a bug where the space bar didn't work correctly in editors with the forced_root_block setting set to false. #TINY-2816

## 4.9.0 - 2018-11-27

### Added
- Added a replace feature to the Textpattern Plugin. #TINY-1908
- Added functionality to the Lists Plugin that improves the indentation logic. #TINY-1790

### Fixed
- Fixed a bug where it wasn't possible to delete/backspace when the caret was between a contentEditable=false element and a BR. #TINY-2372
- Fixed a bug where copying table cells without a text selection would fail to copy anything. #TINY-1789
- Implemented missing `autosave_restore_when_empty` functionality in the Autosave Plugin. Patch contributed by gzzo. #GH-4447
- Reduced insertion of unnecessary nonbreaking spaces in the editor. #TINY-1879

## 4.8.5 - 2018-10-30

### Added
- Added a content_css_cors setting to the editor that adds the crossorigin="anonymous" attribute to link tags added by the StyleSheetLoader. #TINY-1909

### Fixed
- Fixed a bug where trying to remove formatting with a collapsed selection range would throw an exception. #GH-4636
- Fixed a bug in the image plugin that caused updating figures to split contenteditable elements. #GH-4563
- Fixed a bug that was causing incorrect viewport calculations for fixed position UI elements. #TINY-1897
- Fixed a bug where inline formatting would cause the delete key to do nothing. #TINY-1900

## 4.8.4 - 2018-10-23

### Added
- Added support for the HTML5 `main` element. #TINY-1877

### Changed
- Changed the keyboard shortcut to move focus to contextual toolbars to Ctrl+F9. #TINY-1812

### Fixed
- Fixed a bug where content css could not be loaded from another domain. #TINY-1891
- Fixed a bug on FireFox where the cursor would get stuck between two contenteditable false inline elements located inside of the same block element divided by a BR. #TINY-1878
- Fixed a bug with the insertContent method where nonbreaking spaces would be inserted incorrectly. #TINY-1868
- Fixed a bug where the toolbar of the inline editor would not be visible in some scenarios. #TINY-1862
- Fixed a bug where removing the editor while more than one notification was open would throw an error. #TINY-1845
- Fixed a bug where the menubutton would be rendered on top of the menu if the viewport didn't have enough height. #TINY-1678
- Fixed a bug with the annotations api where annotating collapsed selections caused problems. #TBS-2449
- Fixed a bug where wbr elements were being transformed into whitespace when using the Paste Plugin's paste as text setting. #GH-4638
- Fixed a bug where the Search and Replace didn't replace spaces correctly. #GH-4632
- Fixed a bug with sublist items not persisting selection. #GH-4628
- Fixed a bug with mceInsertRawHTML command not working as expected. #GH-4625

## 4.8.3 - 2018-09-13

### Fixed
- Fixed a bug where the Wordcount Plugin didn't correctly count words within tables on IE11. #TINY-1770
- Fixed a bug where it wasn't possible to move the caret out of a table on IE11 and Firefox. #TINY-1682
- Fixed a bug where merging empty blocks didn't work as expected, sometimes causing content to be deleted. #TINY-1781
- Fixed a bug where the Textcolor Plugin didn't show the correct current color. #TINY-1810
- Fixed a bug where clear formatting with a collapsed selection would sometimes clear formatting from more content than expected. #TINY-1813 #TINY-1821
- Fixed a bug with the Table Plugin where it wasn't possible to keyboard navigate to the caption. #TINY-1818

## 4.8.2 - 2018-08-09

### Changed
- Moved annotator from "experimental" to "annotator" object on editor. #TBS-2398
- Improved the multiclick normalization across browsers. #TINY-1788

### Fixed
- Fixed a bug where running getSelectedBlocks with a collapsed selection between block elements would produce incorrect results. #TINY-1787
- Fixed a bug where the ScriptLoaders loadScript method would not work as expected in FireFox when loaded on the same page as a ShadowDOM polyfill. #TINY-1786
- Removed reference to ShadowDOM event.path as Blink based browsers now support event.composedPath. #TINY-1785
- Fixed a bug where a reference to localStorage would throw an "access denied" error in IE11 with strict security settings. #TINY-1782
- Fixed a bug where pasting using the toolbar button on an inline editor in IE11 would cause a looping behaviour. #TINY-1768

## 4.8.1 - 2018-07-26

### Fixed
- Fixed a bug where the content of inline editors was being cleaned on every call of `editor.save()`. #TINY-1783
- Fixed a bug where the arrow of the Inlite Theme toolbar was being rendered incorrectly in RTL mode. #TINY-1776
- Fixed a bug with the Paste Plugin where pasting after inline contenteditable false elements moved the caret to the end of the line. #TINY-1758

## 4.8.0 - 2018-06-27

### Added
- Added new "experimental" object in editor, with initial Annotator API. #TBS-2374

### Fixed
- Fixed a bug where deleting paragraphs inside of table cells would delete the whole table cell. #TINY-1759
- Fixed a bug in the Table Plugin where removing row height set on the row properties dialog did not update the table. #TINY-1730
- Fixed a bug with the font select toolbar item didn't update correctly. #TINY-1683
- Fixed a bug where all bogus elements would not be deleted when removing an inline editor. #TINY-1669

## 4.7.13 - 2018-05-16

### Added
- Added missing code menu item from the default menu config. #TINY-1648
- Added new align button for combining the separate align buttons into a menu button. #TINY-1652

### Fixed
- Fixed a bug where Edge 17 wouldn't be able to select images or tables. #TINY-1679
- Fixed issue where whitespace wasn't preserved when the editor was initialized on pre elements. #TINY-1649
- Fixed a bug with the fontselect dropdowns throwing an error if the editor was hidden in Firefox. #TINY-1664
- Fixed a bug where it wasn't possible to merge table cells on IE 11. #TINY-1671
- Fixed a bug where textcolor wasn't applying properly on IE 11 in some situations. #TINY-1663
- Fixed a bug where the justifyfull command state wasn't working correctly. #TINY-1677
- Fixed a bug where the styles wasn't updated correctly when resizing some tables. #TINY-1668

## 4.7.12 - 2018-05-03

### Added
- Added an option to filter out image svg data urls.
- Added support for html5 details and summary elements.

### Changed
- Changed so the mce-abs-layout-item css rule targets html instead of body. Patch contributed by nazar-pc.

### Fixed
- Fixed a bug where the "read" step on the mobile theme was still present on android mobile browsers.
- Fixed a bug where all images in the editor document would reload on any editor change.
- Fixed a bug with the Table Plugin where ObjectResized event wasn't being triggered on column resize.
- Fixed so the selection is set to the first suitable caret position after editor.setContent called.
- Fixed so links with xlink:href attributes are filtered correctly to prevent XSS.
- Fixed a bug on IE11 where pasting content into an inline editor initialized on a heading element would create new editable elements.
- Fixed a bug where readonly mode would not work as expected when the editor contained contentEditable=true elements.
- Fixed a bug where the Link Plugin would throw an error when used together with the webcomponents polyfill. Patch contributed by 4esnog.
- Fixed a bug where the "Powered by TinyMCE" branding link would break on XHTML pages. Patch contributed by tistre.
- Fixed a bug where the same id would be used in the blobcache for all pasted images. Patch contributed by thorn0.

## 4.7.11 - 2018-04-11

### Added
- Added a new imagetools_credentials_hosts option to the Imagetools Plugin.

### Fixed
- Fixed a bug where toggling a list containing empty LIs would throw an error. Patch contributed by bradleyke.
- Fixed a bug where applying block styles to a text with the caret at the end of the paragraph would select all text in the paragraph.
- Fixed a bug where toggling on the Spellchecker Plugin would trigger isDirty on the editor.
- Fixed a bug where it was possible to enter content into selection bookmark spans.
- Fixed a bug where if a non paragraph block was configured in forced_root_block the editor.getContent method would return incorrect values with an empty editor.
- Fixed a bug where dropdown menu panels stayed open and fixed in position when dragging dialog windows.
- Fixed a bug where it wasn't possible to extend table cells with the space button in Safari.
- Fixed a bug where the setupeditor event would thrown an error when using the Compat3x Plugin.
- Fixed a bug where an error was thrown in FontInfo when called on a detached element.

## 4.7.10 - 2018-04-03

### Added
- Added normalization of triple clicks across browsers in the editor.
- Added a `hasFocus` method to the editor that checks if the editor has focus.
- Added correct icon to the Nonbreaking Plugin menu item.

### Fixed
- Fixed so the `getContent`/`setContent` methods work even if the editor is not initialized.
- Fixed a bug with the Media Plugin where query strings were being stripped from youtube links.
- Fixed a bug where image styles were changed/removed when opening and closing the Image Plugin dialog.
- Fixed a bug in the Table Plugin where some table cell styles were not correctly added to the content html.
- Fixed a bug in the Spellchecker Plugin where it wasn't possible to change the spellchecker language.
- Fixed so the the unlink action in the Link Plugin has a menu item and can be added to the contextmenu.
- Fixed a bug where it wasn't possible to keyboard navigate to the start of an inline element on a new line within the same block element.
- Fixed a bug with the Text Color Plugin where if used with an inline editor located at the bottom of the screen the colorpicker could appear off screen.
- Fixed a bug with the UndoManager where undo levels were being added for nbzwsp characters.
- Fixed a bug with the Table Plugin where the caret would sometimes be lost when keyboard navigating up through a table.
- Fixed a bug where FontInfo.getFontFamily would throw an error when called on a removed editor.
- Fixed a bug in Firefox where undo levels were not being added correctly for some specific operations.
- Fixed a bug where initializing an inline editor inside of a table would make the whole table resizeable.
- Fixed a bug where the fake cursor that appears next to tables on Firefox was positioned incorrectly when switching to fullscreen.
- Fixed a bug where zwsp's weren't trimmed from the output from `editor.getContent({ format: 'text' })`.
- Fixed a bug where the fontsizeselect/fontselect toolbar items showed the body info rather than the first possible caret position info on init.
- Fixed a bug where it wasn't possible to select all content if the editor only contained an inline boundary element.
- Fixed a bug where `content_css` urls with query strings wasn't working.
- Fixed a bug in the Table Plugin where some table row styles were removed when changing other styles in the row properties dialog.

### Removed
- Removed the "read" step from the mobile theme.

## 4.7.9 - 2018-02-27

### Fixed
- Fixed a bug where the editor target element didn't get the correct style when removing the editor.

## 4.7.8 - 2018-02-26

### Fixed
- Fixed an issue with the Help Plugin where the menuitem name wasn't lowercase.
- Fixed an issue on MacOS where text and bold text did not have the same line-height in the autocomplete dropdown in the Link Plugin dialog.
- Fixed a bug where the "paste as text" option in the Paste Plugin didn't work.
- Fixed a bug where dialog list boxes didn't get positioned correctly in documents with scroll.
- Fixed a bug where the Inlite Theme didn't use the Table Plugin api to insert correct tables.
- Fixed a bug where the Inlite Theme panel didn't hide on blur in a correct way.
- Fixed a bug where placing the cursor before a table in Firefox would scroll to the bottom of the table.
- Fixed a bug where selecting partial text in table cells with rowspans and deleting would produce faulty tables.
- Fixed a bug where the Preview Plugin didn't work on Safari due to sandbox security.
- Fixed a bug where table cell selection using the keyboard threw an error.
- Fixed so the font size and font family doesn't toggle the text but only sets the selected format on the selected text.
- Fixed so the built-in spellchecking on Chrome and Safari creates an undo level when replacing words.

## 4.7.7 - 2018-02-19

### Added
- Added a border style selector to the advanced tab of the Image Plugin.
- Added better controls for default table inserted by the Table Plugin.
- Added new `table_responsive_width` option to the Table Plugin that controls whether to use pixel or percentage widths.

### Fixed
- Fixed a bug where the Link Plugin text didn't update when a URL was pasted using the context menu.
- Fixed a bug with the Spellchecker Plugin where using "Add to dictionary" in the context menu threw an error.
- Fixed a bug in the Media Plugin where the preview node for iframes got default width and height attributes that interfered with width/height styles.
- Fixed a bug where backslashes were being added to some font family names in Firefox in the fontselect toolbar item.
- Fixed a bug where errors would be thrown when trying to remove an editor that had not yet been fully initialized.
- Fixed a bug where the Imagetools Plugin didn't update the images atomically.
- Fixed a bug where the Fullscreen Plugin was throwing errors when being used on an inline editor.
- Fixed a bug where drop down menus weren't positioned correctly in inline editors on scroll.
- Fixed a bug with a semicolon missing at the end of the bundled javascript files.
- Fixed a bug in the Table Plugin with cursor navigation inside of tables where the cursor would sometimes jump into an incorrect table cells.
- Fixed a bug where indenting a table that is a list item using the "Increase indent" button would create a nested table.
- Fixed a bug where text nodes containing only whitespace were being wrapped by paragraph elements.
- Fixed a bug where whitespace was being inserted after br tags inside of paragraph tags.
- Fixed a bug where converting an indented paragraph to a list item would cause the list item to have extra padding.
- Fixed a bug where Copy/Paste in an editor with a lot of content would cause the editor to scroll to the top of the content in IE11.
- Fixed a bug with a memory leak in the DragHelper. Path contributed by ben-mckernan.
- Fixed a bug where the advanced tab in the Media Plugin was being shown even if it didn't contain anything. Patch contributed by gabrieeel.
- Fixed an outdated eventname in the EventUtils. Patch contributed by nazar-pc.
- Fixed an issue where the Json.parse function would throw an error when being used on a page with strict CSP settings.
- Fixed so you can place the curser before and after table elements within the editor in Firefox and Edge/IE.

## 4.7.6 - 2018-01-29

### Fixed
- Fixed a bug in the jquery integration where it threw an error saying that "global is not defined".
- Fixed a bug where deleting a table cell whose previous sibling was set to contenteditable false would create a corrupted table.
- Fixed a bug where highlighting text in an unfocused editor did not work correctly in IE11/Edge.
- Fixed a bug where the table resize handles were not being repositioned when activating the Fullscreen Plugin.
- Fixed a bug where the Imagetools Plugin dialog didn't honor editor RTL settings.
- Fixed a bug where block elements weren't being merged correctly if you deleted from after a contenteditable false element to the beginning of another block element.
- Fixed a bug where TinyMCE didn't work with module loaders like webpack.

## 4.7.5 - 2018-01-22

### Fixed
- Fixed bug with the Codesample Plugin where it wasn't possible to edit codesamples when the editor was in inline mode.
- Fixed bug where focusing on the status bar broke the keyboard navigation functionality.
- Fixed bug where an error would be thrown on Edge by the Table Plugin when pasting using the PowerPaste Plugin.
- Fixed bug in the Table Plugin where selecting row border style from the dropdown menu in advanced row properties would throw an error.
- Fixed bug with icons being rendered incorrectly on Chrome on Mac OS.
- Fixed bug in the Textcolor Plugin where the font color and background color buttons wouldn't trigger an ExecCommand event.
- Fixed bug in the Link Plugin where the url field wasn't forced LTR.
- Fixed bug where the Nonbreaking Plugin incorrectly inserted spaces into tables.
- Fixed bug with the inline theme where the toolbar wasn't repositioned on window resize.

## 4.7.4 - 2017-12-05

### Fixed
- Fixed bug in the Nonbreaking Plugin where the nonbreaking_force_tab setting was being ignored.
- Fixed bug in the Table Plugin where changing row height incorrectly converted column widths to pixels.
- Fixed bug in the Table Plugin on Edge and IE11 where resizing the last column after resizing the table would cause invalid column heights.
- Fixed bug in the Table Plugin where keyboard navigation was not normalized between browsers.
- Fixed bug in the Table Plugin where the colorpicker button would show even without defining the colorpicker_callback.
- Fixed bug in the Table Plugin where it wasn't possible to set the cell background color.
- Fixed bug where Firefox would throw an error when intialising an editor on an element that is hidden or not yet added to the DOM.
- Fixed bug where Firefox would throw an error when intialising an editor inside of a hidden iframe.

## 4.7.3 - 2017-11-23

### Added
- Added functionality to open the Codesample Plugin dialog when double clicking on a codesample. Patch contributed by dakuzen.

### Fixed
- Fixed bug where undo/redo didn't work correctly with some formats and caret positions.
- Fixed bug where the color picker didn't show up in Table Plugin dialogs.
- Fixed bug where it wasn't possible to change the width of a table through the Table Plugin dialog.
- Fixed bug where the Charmap Plugin couldn't insert some special characters.
- Fixed bug where editing a newly inserted link would not actually edit the link but insert a new link next to it.
- Fixed bug where deleting all content in a table cell made it impossible to place the caret into it.
- Fixed bug where the vertical alignment field in the Table Plugin cell properties dialog didn't do anything.
- Fixed bug where an image with a caption showed two sets of resize handles in IE11.
- Fixed bug where pressing the enter button inside of an h1 with contenteditable set to true would sometimes produce a p tag.
- Fixed bug with backspace not working as expected before a noneditable element.
- Fixed bug where operating on tables with invalid rowspans would cause an error to be thrown.
- Fixed so a real base64 representation of the image is available on the blobInfo that the images_upload_handler gets called with.
- Fixed so the image upload tab is available when the images_upload_handler is defined (and not only when the images_upload_url is defined).

## 4.7.2 - 2017-11-07

### Added
- Added newly rewritten Table Plugin.
- Added support for attributes with colon in valid_elements and addValidElements.
- Added support for dailymotion short url in the Media Plugin. Patch contributed by maat8.
- Added support for converting to half pt when converting font size from px to pt. Patch contributed by danny6514.
- Added support for location hash to the Autosave plugin to make it work better with SPAs using hash routing.
- Added support for merging table cells when pasting a table into another table.

### Changed
- Changed so the language packs are only loaded once. Patch contributed by 0xor1.
- Simplified the css for inline boundaries selection by switching to an attribute selector.

### Fixed
- Fixed bug where an error would be thrown on editor initialization if the window.getSelection() returned null.
- Fixed bug where holding down control or alt keys made the keyboard navigation inside an inline boundary not work as expected.
- Fixed bug where applying formats in IE11 produced extra, empty paragraphs in the editor.
- Fixed bug where the Word Count Plugin didn't count some mathematical operators correctly.
- Fixed bug where removing an inline editor removed the element that the editor had been initialized on.
- Fixed bug where setting the selection to the end of an editable container caused some formatting problems.
- Fixed bug where an error would be thrown sometimes when an editor was removed because of the selection bookmark was being stored asynchronously.
- Fixed a bug where an editor initialized on an empty list did not contain any valid cursor positions.
- Fixed a bug with the Context Menu Plugin and webkit browsers on Mac where right-clicking inside a table would produce an incorrect selection.
- Fixed bug where the Image Plugin constrain proportions setting wasn't working as expected.
- Fixed bug where deleting the last character in a span with decorations produced an incorrect element when typing.
- Fixed bug where focusing on inline editors made the toolbar flicker when moving between elements quickly.
- Fixed bug where the selection would be stored incorrectly in inline editors when the mouseup event was fired outside the editor body.
- Fixed bug where toggling bold at the end of an inline boundary would toggle off the whole word.
- Fixed bug where setting the skin to false would not stop the loading of some skin css files.
- Fixed bug in mobile theme where pinch-to-zoom would break after exiting the editor.
- Fixed bug where sublists of a fully selected list would not be switched correctly when changing list style.
- Fixed bug where inserting media by source would break the UndoManager.
- Fixed bug where inserting some content into the editor with a specific selection would replace some content incorrectly.
- Fixed bug where selecting all content with ctrl+a in IE11 caused problems with untoggling some formatting.
- Fixed bug where the Search and Replace Plugin left some marker spans in the editor when undoing and redoing after replacing some content.
- Fixed bug where the editor would not get a scrollbar when using the Fullscreen and Autoresize plugins together.
- Fixed bug where the font selector would stop working correctly after selecting fonts three times.
- Fixed so pressing the enter key inside of an inline boundary inserts a br after the inline boundary element.
- Fixed a bug where it wasn't possible to use tab navigation inside of a table that was inside of a list.
- Fixed bug where end_container_on_empty_block would incorrectly remove elements.
- Fixed bug where content_styles weren't added to the Preview Plugin iframe.
- Fixed so the beforeSetContent/beforeGetContent events are preventable.
- Fixed bug where changing height value in Table Plugin advanced tab didn't do anything.
- Fixed bug where it wasn't possible to remove formatting from content in beginning of table cell.

## 4.7.1 - 2017-10-09

### Fixed
- Fixed bug where theme set to false on an inline editor produced an extra div element after the target element.
- Fixed bug where the editor drag icon was misaligned with the branding set to false.
- Fixed bug where doubled menu items were not being removed as expected with the removed_menuitems setting.
- Fixed bug where the Table of contents plugin threw an error when initialized.
- Fixed bug where it wasn't possible to add inline formats to text selected right to left.
- Fixed bug where the paste from plain text mode did not work as expected.
- Fixed so the style previews do not set color and background color when selected.
- Fixed bug where the Autolink plugin didn't work as expected with some formats applied on an empty editor.
- Fixed bug where the Textpattern plugin were throwing errors on some patterns.
- Fixed bug where the Save plugin saved all editors instead of only the active editor. Patch contributed by dannoe.

## 4.7.0 - 2017-10-03

### Added
- Added new mobile ui that is specifically designed for mobile devices.

### Changed
- Updated the default skin to be more modern and white since white is preferred by most implementations.
- Restructured the default menus to be more similar to common office suites like Google Docs.

### Fixed
- Fixed so theme can be set to false on both inline and iframe editor modes.
- Fixed bug where inline editor would add/remove the visualblocks css multiple times.
- Fixed bug where selection wouldn't be properly restored when editor lost focus and commands where invoked.
- Fixed bug where toc plugin would generate id:s for headers even though a toc wasn't inserted into the content.
- Fixed bug where is wasn't possible to drag/drop contents within the editor if paste_data_images where set to true.
- Fixed bug where getParam and close in WindowManager would get the first opened window instead of the last opened window.
- Fixed bug where delete would delete between cells inside a table in Firefox.

## 4.6.7 - 2017-09-18

### Added
- Added some missing translations to Image, Link and Help plugins.

### Fixed
- Fixed bug where paste wasn't working in IOS.
- Fixed bug where the Word Count Plugin didn't count some mathematical operators correctly.
- Fixed bug where inserting a list in a table caused the cell to expand in height.
- Fixed bug where pressing enter in a list located inside of a table deleted list items instead of inserting new list item.
- Fixed bug where copy and pasting table cells produced inconsistent results.
- Fixed bug where initializing an editor with an ID of 'length' would throw an exception.
- Fixed bug where it was possible to split a non merged table cell.
- Fixed bug where copy and pasting a list with a very specific selection into another list would produce a nested list.
- Fixed bug where copy and pasting ordered lists sometimes produced unordered lists.
- Fixed bug where padded elements inside other elements would be treated as empty.
- Fixed so you can resize images inside a figure element.
- Fixed bug where an inline TinyMCE editor initialized on a table did not set selection on load in Chrome.
- Fixed the positioning of the inlite toolbar when the target element wasn't big enough to fit the toolbar.

## 4.6.6 - 2017-08-30

### Fixed
- Fixed so that notifications wrap long text content instead of bleeding outside the notification element.
- Fixed so the content_style css is added after the skin and custom stylesheets.
- Fixed bug where it wasn't possible to remove a table with the Cut button.
- Fixed bug where the center format wasn't getting the same font size as the other formats in the format preview.
- Fixed bug where the wordcount plugin wasn't counting hyphenated words correctly.
- Fixed bug where all content pasted into the editor was added to the end of the editor.
- Fixed bug where enter keydown on list item selection only deleted content and didn't create a new line.
- Fixed bug where destroying the editor while the content css was still loading caused error notifications on Firefox.
- Fixed bug where undoing cut operation in IE11 left some unwanted html in the editor content.
- Fixed bug where enter keydown would throw an error in IE11.
- Fixed bug where duplicate instances of an editor were added to the editors array when using the createEditor API.
- Fixed bug where the formatter applied formats on the wrong content when spellchecker was activated.
- Fixed bug where switching formats would reset font size on child nodes.
- Fixed bug where the table caption element weren't always the first descendant to the table tag.
- Fixed bug where pasting some content into the editor on chrome some newlines were removed.
- Fixed bug where it wasn't possible to remove a list if a list item was a table element.
- Fixed bug where copy/pasting partial selections of tables wouldn't produce a proper table.
- Fixed bug where the searchreplace plugin could not find consecutive spaces.
- Fixed bug where background color wasn't applied correctly on some partially selected contents.

## 4.6.5 - 2017-08-02

### Added
- Added new inline_boundaries_selector that allows you to specify the elements that should have boundaries.
- Added new local upload feature this allows the user to upload images directly from the image dialog.
- Added a new api for providing meta data for plugins. It will show up in the help dialog if it's provided.

### Fixed
- Fixed so that the notifications created by the notification manager are more screen reader accessible.
- Fixed bug where changing the list format on multiple selected lists didn't change all of the lists.
- Fixed bug where the nonbreaking plugin would insert multiple undo levels when pressing the tab key.
- Fixed bug where delete/backspace wouldn't render a caret when all editor contents where deleted.
- Fixed bug where delete/backspace wouldn't render a caret if the deleted element was a single contentEditable false element.
- Fixed bug where the wordcount plugin wouldn't count words correctly if word where typed after applying a style format.
- Fixed bug where the wordcount plugin would count mathematical formulas as multiple words for example 1+1=2.
- Fixed bug where formatting of triple clicked blocks on Chrome/Safari would result in styles being added outside the visual selection.
- Fixed bug where paste would add the contents to the end of the editor area when inline mode was used.
- Fixed bug where toggling off bold formatting on text entered in a new paragraph would add an extra line break.
- Fixed bug where autolink plugin would only produce a link on every other consecutive link on Firefox.
- Fixed bug where it wasn't possible to select all contents if the content only had one pre element.
- Fixed bug where sizzle would produce lagging behavior on some sites due to repaints caused by feature detection.
- Fixed bug where toggling off inline formats wouldn't include the space on selected contents with leading or trailing spaces.
- Fixed bug where the cut operation in UI wouldn't work in Chrome.
- Fixed bug where some legacy editor initialization logic would throw exceptions about editor settings not being defined.
- Fixed bug where it wasn't possible to apply text color to links if they where part of a non collapsed selection.
- Fixed bug where an exception would be thrown if the user selected a video element and then moved the focus outside the editor.
- Fixed bug where list operations didn't work if there where block elements inside the list items.
- Fixed bug where applying block formats to lists wrapped in block elements would apply to all elements in that wrapped block.

## 4.6.4 - 2017-06-13

### Fixed
- Fixed bug where the editor would move the caret when clicking on the scrollbar next to a content editable false block.
- Fixed bug where the text color select dropdowns wasn't placed correctly when they didn't fit the width of the screen.
- Fixed bug where the default editor line height wasn't working for mixed font size contents.
- Fixed bug where the content css files for inline editors were loaded multiple times for multiple editor instances.
- Fixed bug where the initial value of the font size/font family dropdowns wasn't displayed.
- Fixed bug where the I18n api was not supporting arrays as the translation replacement values.
- Fixed bug where chrome would display "The given range isn't in document." errors for invalid ranges passed to setRng.
- Fixed bug where the compat3x plugin wasn't working since the global tinymce references wasn't resolved correctly.
- Fixed bug where the preview plugin wasn't encoding the base url passed into the iframe contents producing a xss bug.
- Fixed bug where the dom parser/serializer wasn't handling some special elements like noframes, title and xmp.
- Fixed bug where the dom parser/serializer wasn't handling cdata sections with comments inside.
- Fixed bug where the editor would scroll to the top of the editable area if a dialog was closed in inline mode.
- Fixed bug where the link dialog would not display the right rel value if rel_list was configured.
- Fixed bug where the context menu would select images on some platforms but not others.
- Fixed bug where the filenames of images were not retained on dragged and drop into the editor from the desktop.
- Fixed bug where the paste plugin would misrepresent newlines when pasting plain text and having forced_root_block configured.
- Fixed so that the error messages for the imagetools plugin is more human readable.
- Fixed so the internal validate setting for the parser/serializer can't be set from editor initialization settings.

## 4.6.3 - 2017-05-30

### Fixed
- Fixed bug where the arrow keys didn't work correctly when navigating on nested inline boundary elements.
- Fixed bug where delete/backspace didn't work correctly on nested inline boundary elements.
- Fixed bug where image editing didn't work on subsequent edits of the same image.
- Fixed bug where charmap descriptions wouldn't properly wrap if they exceeded the width of the box.
- Fixed bug where the default image upload handler only accepted 200 as a valid http status code.
- Fixed so rel on target=_blank links gets forced with only noopener instead of both noopener and noreferrer.

## 4.6.2 - 2017-05-23

### Fixed
- Fixed bug where the SaxParser would run out of memory on very large documents.
- Fixed bug with formatting like font size wasn't applied to del elements.
- Fixed bug where various api calls would be throwing exceptions if they where invoked on a removed editor instance.
- Fixed bug where the branding position would be incorrect if the editor was inside a hidden tab and then later showed.
- Fixed bug where the color levels feature in the imagetools dialog wasn't working properly.
- Fixed bug where imagetools dialog wouldn't pre-load images from CORS domains, before trying to prepare them for editing.
- Fixed bug where the tab key would move the caret to the next table cell if being pressed inside a list inside a table.
- Fixed bug where the cut/copy operations would loose parent context like the current format etc.
- Fixed bug with format preview not working on invalid elements excluded by valid_elements.
- Fixed bug where blocks would be merged in incorrect order on backspace/delete.
- Fixed bug where zero length text nodes would cause issues with the undo logic if there where iframes present.
- Fixed bug where the font size/family select lists would throw errors if the first node was a comment.
- Fixed bug with csp having to allow local script evaluation since it was used to detect global scope.
- Fixed bug where CSP required a relaxed option for javascript: URLs in unsupported legacy browsers.
- Fixed bug where a fake caret would be rendered for td with the contenteditable=false.
- Fixed bug where typing would be blocked on IE 11 when within a nested contenteditable=true/false structure.

## 4.6.1 - 2017-05-10

### Added
- Added configuration option to list plugin to disable tab indentation.

### Fixed
- Fixed bug where format change on very specific content could cause the selection to change.
- Fixed bug where TinyMCE could not be lazyloaded through jquery integration.
- Fixed bug where entities in style attributes weren't decoded correctly on paste in webkit.
- Fixed bug where fontsize_formats option had been renamed incorrectly.
- Fixed bug with broken backspace/delete behaviour between contenteditable=false blocks.
- Fixed bug where it wasn't possible to backspace to the previous line with the inline boundaries functionality turned on.
- Fixed bug where is wasn't possible to move caret left and right around a linked image with the inline boundaries functionality turned on.
- Fixed bug where pressing enter after/before hr element threw exception. Patch contributed bradleyke.
- Fixed so the CSS in the visualblocks plugin doesn't overwrite background color. Patch contributed by Christian Rank.
- Fixed bug where multibyte characters weren't encoded correctly. Patch contributed by James Tarkenton.
- Fixed bug where shift-click to select within contenteditable=true fields wasn't working.

## 4.6.0 - 2017-05-04

### Added
- Added an inline boundary caret position feature that makes it easier to type at the beginning/end of links/code elements.
- Added a help plugin that adds a button and a dialog showing the editor shortcuts and loaded plugins.
- Added an inline_boundaries option that allows you to disable the inline boundary feature if it's not desired.
- Added a new ScrollIntoView event that allows you to override the default scroll to element behavior.
- Added role and aria- attributes as valid elements in the default valid elements config.
- Added new internal flag for PastePreProcess/PastePostProcess this is useful to know if the paste was coming from an external source.
- Added new ignore function to UndoManager this works similar to transact except that it doesn't add an undo level by default.

### Fixed
- Fixed so that urls gets retained for images when being edited. This url is then passed on to the upload handler.
- Fixed so that the editors would be initialized on readyState interactive instead of complete.
- Fixed so that the init event of the editor gets fired once all contentCSS files have been properly loaded.
- Fixed so that width/height of the editor gets taken from the textarea element if it's explicitly specified in styles.
- Fixed so that keep_styles set to false no longer clones class/style from the previous paragraph on enter.
- Fixed so that the default line-height is 1.2em to avoid zwnbsp characters from producing text rendering glitches on Windows.
- Fixed so that loading errors of content css gets presented by a notification message.
- Fixed so figure image elements can be linked when selected this wraps the figure image in a anchor element.
- Fixed bug where it wasn't possible to copy/paste rows with colspans by using the table copy/paste feature.
- Fixed bug where the protect setting wasn't properly applied to header/footer parts when using the fullpage plugin.
- Fixed bug where custom formats that specified upper case element names where not applied correctly.
- Fixed bug where some screen readers weren't reading buttons due to an aria specific fix for IE 8.
- Fixed bug where cut wasn't working correctly on iOS due to it's clipboard API not working correctly.
- Fixed bug where Edge would paste div elements instead of paragraphs when pasting plain text.
- Fixed bug where the textpattern plugin wasn't dealing with trailing punctuations correctly.
- Fixed bug where image editing would some times change the image format from jpg to png.
- Fixed bug where some UI elements could be inserted into the toolbar even if they where not registered.
- Fixed bug where it was possible to click the TD instead of the character in the character map and that caused an exception.
- Fixed bug where the font size/font family dropdowns would sometimes show an incorrect value due to css not being loaded in time.
- Fixed bug with the media plugin inserting undefined instead of retaining size when media_dimensions was set to false.
- Fixed bug with deleting images when forced_root_blocks where set to false.
- Fixed bug where input focus wasn't properly handled on nested content editable elements.
- Fixed bug where Chrome/Firefox would throw an exception when selecting images due to recent change of setBaseAndExtent support.
- Fixed bug where malformed blobs would throw exceptions now they are simply ignored.
- Fixed bug where backspace/delete wouldn't work properly in some cases where all contents was selected in WebKit.
- Fixed bug with Angular producing errors since it was expecting events objects to be patched with their custom properties.
- Fixed bug where the formatter would apply formatting to spellchecker errors now all bogus elements are excluded.
- Fixed bug with backspace/delete inside table caption elements wouldn't behave properly on IE 11.
- Fixed bug where typing after a contenteditable false inline element could move the caret to the end of that element.
- Fixed bug where backspace before/after contenteditable false blocks wouldn't properly remove the right element.
- Fixed bug where backspace before/after contenteditable false inline elements wouldn't properly empty the current block element.
- Fixed bug where vertical caret navigation with a custom line-height would sometimes match incorrect positions.
- Fixed bug with paste on Edge where character encoding wasn't handled properly due to a browser bug.
- Fixed bug with paste on Edge where extra fragment data was inserted into the contents when pasting.
- Fixed bug with pasting contents when having a whole block element selected on WebKit could cause WebKit spans to appear.
- Fixed bug where the visualchars plugin wasn't working correctly showing invisible nbsp characters.
- Fixed bug where browsers would hang if you tried to load some malformed html contents.
- Fixed bug where the init call promise wouldn't resolve if the specified selector didn't find any matching elements.
- Fixed bug where the Schema isValidChild function was case sensitive.

### Removed
- Dropped support for IE 8-10 due to market share and lack of support from Microsoft. See tinymce docs for details.

## 4.5.3 - 2017-02-01

### Added
- Added keyboard navigation for menu buttons when the menu is in focus.
- Added api to the list plugin for setting custom classes/attributes on lists.
- Added validation for the anchor plugin input field according to W3C id naming specifications.

### Fixed
- Fixed bug where media placeholders were removed after resize with the forced_root_block setting set to false.
- Fixed bug where deleting selections with similar sibling nodes sometimes deleted the whole document.
- Fixed bug with inlite theme where several toolbars would appear scrolling when more than one instance of the editor was in use.
- Fixed bug where the editor would throw error with the fontselect plugin on hidden editor instances in Firefox.
- Fixed bug where the background color would not stretch to the font size.
- Fixed bug where font size would be removed when changing background color.
- Fixed bug where the undomanager trimmed away whitespace between nodes on undo/redo.
- Fixed bug where media_dimensions=false in media plugin caused the editor to throw an error.
- Fixed bug where IE was producing font/u elements within links on paste.
- Fixed bug where some button tooltips were broken when compat3x was in use.
- Fixed bug where backspace/delete/typeover would remove the caption element.
- Fixed bug where powerspell failed to function when compat3x was enabled.
- Fixed bug where it wasn't possible to apply sub/sup on text with large font size.
- Fixed bug where pre tags with spaces weren't treated as content.
- Fixed bug where Meta+A would select the entire document instead of all contents in nested ce=true elements.

## 4.5.2 - 2017-01-04

### Fixed
- Added missing keyboard shortcut description for the underline menu item in the format menu.
- Fixed bug where external blob urls wasn't properly handled by editor upload logic. Patch contributed by David Oviedo.
- Fixed bug where urls wasn't treated as a single word by the wordcount plugin.
- Fixed bug where nbsp characters wasn't treated as word delimiters by the wordcount plugin.
- Fixed bug where editor instance wasn't properly passed to the format preview logic. Patch contributed by NullQuery.
- Fixed bug where the fake caret wasn't hidden when you moved selection to a cE=false element.
- Fixed bug where it wasn't possible to edit existing code sample blocks.
- Fixed bug where it wasn't possible to delete editor contents if the selection included an empty block.
- Fixed bug where the formatter wasn't expanding words on some international characters. Patch contributed by Martin Larochelle.
- Fixed bug where the open link feature wasn't working correctly on IE 11.
- Fixed bug where enter before/after a cE=false block wouldn't properly padd the paragraph with an br element.
- Fixed so font size and font family select boxes always displays a value by using the runtime style as a fallback.
- Fixed so missing plugins will be logged to console as warnings rather than halting the initialization of the editor.
- Fixed so splitbuttons become normal buttons in advlist plugin if styles are empty. Patch contributed by René Schleusner.
- Fixed so you can multi insert rows/cols by selecting table cells and using insert rows/columns.

## 4.5.1 - 2016-12-07

### Fixed
- Fixed bug where the lists plugin wouldn't initialize without the advlist plugins if served from cdn.
- Fixed bug where selectors with "*" would cause the style format preview to throw an error.
- Fixed bug with toggling lists off on lists with empty list items would throw an error.
- Fixed bug where editing images would produce non existing blob uris.
- Fixed bug where the offscreen toc selection would be treated as the real toc element.
- Fixed bug where the aria level attribute for element path would have an incorrect start index.
- Fixed bug where the offscreen selection of cE=false that where very wide would be shown onscreen. Patch contributed by Steven Bufton.
- Fixed so the default_link_target gets applied to links created by the autolink plugin.
- Fixed so that the name attribute gets removed by the anchor plugin if editing anchors.

## 4.5.0 - 2016-11-23

### Added
- Added new toc plugin allows you to insert table of contents based on editor headings.
- Added new auto complete menu to all url fields. Adds history, link to anchors etc.
- Added new sidebar api that allows you to add custom sidebar panels and buttons to toggle these.
- Added new insert menu button that allows you to have multiple insert functions under the same menu button.
- Added new open link feature to ctrl+click, alt+enter and context menu.
- Added new media_embed_handler option to allow the media plugin to be populated with custom embeds.
- Added new support for editing transparent images using the image tools dialog.
- Added new images_reuse_filename option to allow filenames of images to be retained for upload.
- Added new security feature where links with target="_blank" will by default get rel="noopener noreferrer".
- Added new allow_unsafe_link_target to allow you to opt-out of the target="_blank" security feature.
- Added new style_formats_autohide option to automatically hide styles based on context.
- Added new codesample_content_css option to specify where the code sample prism css is loaded from.
- Added new support for Japanese/Chinese word count following the unicode standards on this.
- Added new fragmented undo levels this dramatically reduces flicker on contents with iframes.
- Added new live previews for complex elements like table or lists.

### Fixed
- Fixed bug where it wasn't possible to properly tab between controls in a dialog with a disabled form item control.
- Fixed bug where firefox would generate a rectangle on elements produced after/before a cE=false elements.
- Fixed bug with advlist plugin not switching list element format properly in some edge cases.
- Fixed bug where col/rowspans wasn't correctly computed by the table plugin in some cases.
- Fixed bug where the table plugin would thrown an error if object_resizing was disabled.
- Fixed bug where some invalid markup would cause issues when running in XHTML mode. Patch contributed by Charles Bourasseau.
- Fixed bug where the fullscreen class wouldn't be removed properly when closing dialogs.
- Fixed bug where the PastePlainTextToggle event wasn't fired by the paste plugin when the state changed.
- Fixed bug where table the row type wasn't properly updated in table row dialog. Patch contributed by Matthias Balmer.
- Fixed bug where select all and cut wouldn't place caret focus back to the editor in WebKit. Patch contributed by Daniel Jalkut.
- Fixed bug where applying cell/row properties to multiple cells/rows would reset other unchanged properties.
- Fixed bug where some elements in the schema would have redundant/incorrect children.
- Fixed bug where selector and target options would cause issues if used together.
- Fixed bug where drag/drop of images from desktop on chrome would thrown an error.
- Fixed bug where cut on WebKit/Blink wouldn't add an undo level.
- Fixed bug where IE 11 would scroll to the cE=false elements when they where selected.
- Fixed bug where keys like F5 wouldn't work when a cE=false element was selected.
- Fixed bug where the undo manager wouldn't stop the typing state when commands where executed.
- Fixed bug where unlink on wrapped links wouldn't work properly.
- Fixed bug with drag/drop of images on WebKit where the image would be deleted form the source editor.
- Fixed bug where the visual characters mode would be disabled when contents was extracted from the editor.
- Fixed bug where some browsers would toggle of formats applied to the caret when clicking in the editor toolbar.
- Fixed bug where the custom theme function wasn't working correctly.
- Fixed bug where image option for custom buttons required you to have icon specified as well.
- Fixed bug where the context menu and contextual toolbars would be visible at the same time and sometimes overlapping.
- Fixed bug where the noneditable plugin would double wrap elements when using the noneditable_regexp option.
- Fixed bug where tables would get padding instead of margin when you used the indent button.
- Fixed bug where the charmap plugin wouldn't properly insert non breaking spaces.
- Fixed bug where the color previews in color input boxes wasn't properly updated.
- Fixed bug where the list items of previous lists wasn't merged in the right order.
- Fixed bug where it wasn't possible to drag/drop inline-block cE=false elements on IE 11.
- Fixed bug where some table cell merges would produce incorrect rowspan/colspan.
- Fixed so the font size of the editor defaults to 14px instead of 11px this can be overridden by custom css.
- Fixed so wordcount is debounced to reduce cpu hogging on larger texts.
- Fixed so tinymce global gets properly exported as a module when used with some module bundlers.
- Fixed so it's possible to specify what css properties you want to preview on specific formats.
- Fixed so anchors are contentEditable=false while within the editor.
- Fixed so selected contents gets wrapped in a inline code element by the codesample plugin.
- Fixed so conditional comments gets properly stripped independent of case. Patch contributed by Georgii Dolzhykov.
- Fixed so some escaped css sequences gets properly handled. Patch contributed by Georgii Dolzhykov.
- Fixed so notifications with the same message doesn't get displayed at the same time.
- Fixed so F10 can be used as an alternative key to focus to the toolbar.
- Fixed various api documentation issues and typos.

### Removed
- Removed layer plugin since it wasn't really ported from 3.x and there doesn't seem to be much use for it.
- Removed moxieplayer.swf from the media plugin since it wasn't used by the media plugin.
- Removed format state from the advlist plugin to be more consistent with common word processors.

## 4.4.3 - 2016-09-01

### Fixed
- Fixed bug where copy would produce an exception on Chrome.
- Fixed bug where deleting lists on IE 11 would merge in correct text nodes.
- Fixed bug where deleting partial lists with indentation wouldn't cause proper normalization.

## 4.4.2 - 2016-08-25

### Added
- Added new importcss_exclusive option to disable unique selectors per group.
- Added new group specific selector_converter option to importcss plugin.
- Added new codesample_languages option to apply custom languages to codesample plugin.
- Added new codesample_dialog_width/codesample_dialog_height options.

### Fixed
- Fixed bug where fullscreen button had an incorrect keyboard shortcut.
- Fixed bug where backspace/delete wouldn't work correctly from a block to a cE=false element.
- Fixed bug where smartpaste wasn't detecting links with special characters in them like tilde.
- Fixed bug where the editor wouldn't get proper focus if you clicked on a cE=false element.
- Fixed bug where it wasn't possible to copy/paste table rows that had merged cells.
- Fixed bug where merging cells could some times produce invalid col/rowspan attibute values.
- Fixed bug where getBody would sometimes thrown an exception now it just returns null if the iframe is clobbered.
- Fixed bug where drag/drop of cE=false element wasn't properly constrained to viewport.
- Fixed bug where contextmenu on Mac would collapse any selection to a caret.
- Fixed bug where rtl mode wasn't rendered properly when loading a language pack with the rtl flag.
- Fixed bug where Kamer word bounderies would be stripped from contents.
- Fixed bug where lists would sometimes render two dots or numbers on the same line.
- Fixed bug where the skin_url wasn't used by the inlite theme.
- Fixed so data attributes are ignored when comparing formats in the formatter.
- Fixed so it's possible to disable inline toolbars in the inlite theme.
- Fixed so template dialog gets resized if it doesn't fit the window viewport.

## 4.4.1 - 2016-07-26

### Added
- Added smart_paste option to paste plugin to allow disabling the paste behavior if needed.

### Fixed
- Fixed bug where png urls wasn't properly detected by the smart paste logic.
- Fixed bug where the element path wasn't working properly when multiple editor instances where used.
- Fixed bug with creating lists out of multiple paragraphs would just create one list item instead of multiple.
- Fixed bug where scroll position wasn't properly handled by the inlite theme to place the toolbar properly.
- Fixed bug where multiple instances of the editor using the inlite theme didn't render the toolbar properly.
- Fixed bug where the shortcut label for fullscreen mode didn't match the actual shortcut key.
- Fixed bug where it wasn't possible to select cE=false blocks using touch devices on for example iOS.
- Fixed bug where it was possible to select the child image within a cE=false on IE 11.
- Fixed so inserts of html containing lists doesn't merge with any existing lists unless it's a paste operation.

## 4.4.0 - 2016-06-30

### Added
- Added new inlite theme this is a more lightweight inline UI.
- Added smarter paste logic that auto detects urls in the clipboard and inserts images/links based on that.
- Added a better image resize algorithm for better image quality in the imagetools plugin.

### Fixed
- Fixed bug where it wasn't possible to drag/dropping cE=false elements on FF.
- Fixed bug where backspace/delete before/after a cE=false block would produce a new paragraph.
- Fixed bug where list style type css property wasn't preserved when indenting lists.
- Fixed bug where merging of lists where done even if the list style type was different.
- Fixed bug where the image_dataimg_filter function wasn't used when pasting images.
- Fixed bug where nested editable within a non editable element would cause scroll on focus in Chrome.
- Fixed so invalid targets for inline mode is blocked on initialization. We only support elements that can have children.

## 4.3.13 - 2016-06-08

### Added
- Added characters with a diacritical mark to charmap plugin. Patch contributed by Dominik Schilling.
- Added better error handling if the image proxy service would produce errors.

### Fixed
- Fixed issue with pasting list items into list items would produce nested list rather than a merged list.
- Fixed bug where table selection could get stuck in selection mode for inline editors.
- Fixed bug where it was possible to place the caret inside the resize grid elements.
- Fixed bug where it wasn't possible to place in elements horizontally adjacent cE=false blocks.
- Fixed bug where multiple notifications wouldn't be properly placed on screen.
- Fixed bug where multiple editor instance of the same id could be produces in some specific integrations.

## 4.3.12 - 2016-05-10

### Fixed
- Fixed bug where focus calls couldn't be made inside the editors PostRender event handler.
- Fixed bug where some translations wouldn't work as expected due to a bug in editor.translate.
- Fixed bug where the node change event could fire with a node out side the root of the editor.
- Fixed bug where Chrome wouldn't properly present the keyboard paste clipboard details when paste was clicked.
- Fixed bug where merged cells in tables couldn't be selected from right to left.
- Fixed bug where insert row wouldn't properly update a merged cells rowspan property.
- Fixed bug where the color input boxes preview field wasn't properly set on initialization.
- Fixed bug where IME composition inside table cells wouldn't work as expected on IE 11.
- Fixed so all shadow dom support is under and experimental flag due to flaky browser support.

## 4.3.11 - 2016-04-25

### Fixed
- Fixed bug where it wasn't possible to insert empty blocks though the API unless they where padded.
- Fixed bug where you couldn't type the Euro character on Windows.
- Fixed bug where backspace/delete from a cE=false element to a text block didn't work properly.
- Fixed bug where the text color default grid would render incorrectly.
- Fixed bug where the codesample plugin wouldn't load the css in the editor for multiple editors.
- Fixed so the codesample plugin textarea gets focused by default.

## 4.3.10 - 2016-04-12

### Fixed
- Fixed bug where the key "y" on WebKit couldn't be entered due to conflict with keycode for F10 on keypress.

## 4.3.9 - 2016-04-12

### Added
- Added support for focusing the contextual toolbars using keyboard.
- Added keyboard support for slider UI controls. You can no increase/decrease using arrow keys.
- Added url pattern matching for Dailymotion to media plugin. Patch contributed by Bertrand Darbon.
- Added body_class to template plugin preview. Patch contributed by Milen Petrinski.
- Added options to better override textcolor pickers with custom colors. Patch contributed by Xavier Boubert.
- Added visual arrows to inline contextual toolbars so that they point to the element being active.

### Changed
- Changed the Meta+Shift+F shortcut to Ctrl+Shift+F since Czech, Slovak, Polish languages used the first one for input.

### Fixed
- Fixed so toolbars for tables or other larger elements get better positioned below the scrollable viewport.
- Fixed bug where it was possible to click links inside cE=false blocks.
- Fixed bug where event targets wasn't properly handled in Safari Technical Preview.
- Fixed bug where drag/drop text in FF 45 would make the editor caret invisible.
- Fixed bug where the remove state wasn't properly set on editor instances when detected as clobbered.
- Fixed bug where offscreen selection of some cE=false elements would render onscreen. Patch contributed by Steven Bufton
- Fixed bug where enter would clone styles out side the root on editors inside a span. Patch contributed by ChristophKaser.
- Fixed bug where drag/drop of images into the editor didn't work correctly in FF.
- Fixed so the first item in panels for the imagetools dialog gets proper keyboard focus.

## 4.3.8 - 2016-03-15

### Fixed
- Fixed bug where inserting HR at the end of a block element would produce an extra empty block.
- Fixed bug where links would be clickable when readonly mode was enabled.
- Fixed bug where the formatter would normalize to the wrong node on very specific content.
- Fixed bug where some nested list items couldn't be indented properly.
- Fixed bug where links where clickable in the preview dialog.
- Fixed so the alt attribute doesn't get padded with an empty value by default.
- Fixed so nested alignment works more correctly. You will now alter the alignment to the closest block parent.

## 4.3.7 - 2016-03-02

### Fixed
- Fixed bug where incorrect icons would be rendered for imagetools edit and color levels.
- Fixed bug where navigation using arrow keys inside a SelectBox didn't move up/down.
- Fixed bug where the visualblocks plugin would render borders round internal UI elements.

## 4.3.6 - 2016-03-01

### Added
- Added new paste_remember_plaintext_info option to allow a global disable of the plain text mode notification.
- Added new PastePlainTextToggle event that fires when plain text mode toggles on/off.

### Fixed
- Fixed bug where it wasn't possible to select media elements since the drag logic would snap it to mouse cursor.
- Fixed bug where it was hard to place the caret inside nested cE=true elements when the outer cE=false element was focused.
- Fixed bug where editors wouldn't properly initialize if both selector and mode where used.
- Fixed bug where IME input inside table cells would switch the IME off.
- Fixed bug where selection inside the first table cell would cause the whole table cell to get selected.
- Fixed bug where error handling of images being uploaded wouldn't properly handle faulty statuses.
- Fixed bug where inserting contents before a HR would cause an exception to be thrown.
- Fixed bug where copy/paste of Excel data would be inserted as an image.
- Fixed caret position issues with copy/paste of inline block cE=false elements.
- Fixed issues with various menu item focus bugs in Chrome. Where the focused menu bar item wasn't properly blurred.
- Fixed so the notifications have a solid background since it would be hard to read if there where text under it.
- Fixed so notifications gets animated similar to the ones used by dialogs.
- Fixed so larger images that gets pasted is handled better.
- Fixed so the window close button is more uniform on various platform and also increased it's hit area.

## 4.3.5 - 2016-02-11

Npm version bump due to package not being fully updated.

## 4.3.4 - 2016-02-11

### Added
- Added new OpenWindow/CloseWindow events that gets fired when windows open/close.
- Added new NewCell/NewRow events that gets fired when table cells/rows are created.
- Added new Promise return value to tinymce.init makes it easier to handle initialization.

### Fixed
- Fixed various bugs with drag/drop of contentEditable:false elements.
- Fixed bug where deleting of very specific nested list items would result in an odd list.
- Fixed bug where lists would get merged with adjacent lists outside the editable inline root.
- Fixed bug where MS Edge would crash when closing a dialog then clicking a menu item.
- Fixed bug where table cell selection would add undo levels.
- Fixed bug where table cell selection wasn't removed when inline editor where removed.
- Fixed bug where table cell selection wouldn't work properly on nested tables.
- Fixed bug where table merge menu would be available when merging between thead and tbody.
- Fixed bug where table row/column resize wouldn't get properly removed when the editor was removed.
- Fixed bug where Chrome would scroll to the editor if there where a empty hash value in document url.
- Fixed bug where the cache suffix wouldn't work correctly with the importcss plugin.
- Fixed bug where selection wouldn't work properly on MS Edge on Windows Phone 10.
- Fixed so adjacent pre blocks gets joined into one pre block since that seems like the user intent.
- Fixed so events gets properly dispatched in shadow dom. Patch provided by Nazar Mokrynskyi.

### Removed
- Removed the jQuery version the jQuery plugin is now moved into the main package.
- Removed jscs from build process since eslint can now handle code style checking.

## 4.3.3 - 2016-01-14

### Added
- Added new table_resize_bars configuration setting.  This setting allows you to disable the table resize bars.
- Added new beforeInitialize event to tinymce.util.XHR lets you modify XHR properties before open. Patch contributed by Brent Clintel.
- Added new autolink_pattern setting to autolink plugin. Enables you to override the default autolink formats. Patch contributed by Ben Tiedt.
- Added new charmap option that lets you override the default charmap of the charmap plugin.
- Added new charmap_append option that lets you add new characters to the default charmap of the charmap plugin.
- Added new insertCustomChar event that gets fired when a character is inserted by the charmap plugin.

### Fixed
- Fixed bug where table cells started with a superfluous &nbsp; in IE10+.
- Fixed bug where table plugin would retain all BR tags when cells were merged.
- Fixed bug where media plugin would strip underscores from youtube urls.
- Fixed bug where IME input would fail on IE 11 if you typed within a table.
- Fixed bug where double click selection of a word would remove the space before the word on insert contents.
- Fixed bug where table plugin would produce exceptions when hovering tables with invalid structure.
- Fixed bug where fullscreen wouldn't scroll back to it's original position when untoggled.
- Fixed so the template plugins templates setting can be a function that gets a callback that can provide templates.

## 4.3.2 - 2015-12-14

### Fixed
- Fixed bug where the resize bars for table cells were not affected by the object_resizing property.
- Fixed bug where the contextual table toolbar would appear incorrectly if TinyMCE was initialized inline inside a table.
- Fixed bug where resizing table cells did not fire a node change event or add an undo level.
- Fixed bug where double click selection of text on IE 11 wouldn't work properly.
- Fixed bug where codesample plugin would incorrectly produce br elements inside code elements.
- Fixed bug where media plugin would strip dashes from youtube urls.
- Fixed bug where it was possible to move the caret into the table resize bars.
- Fixed bug where drag/drop into a cE=false element was possible on IE.

## 4.3.1 - 2015-11-30

### Fixed
- Fixed so it's possible to disable the table inline toolbar by setting it to false or an empty string.
- Fixed bug where it wasn't possible to resize some tables using the drag handles.
- Fixed bug where unique id:s would clash for multiple editor instances and cE=false selections.
- Fixed bug where the same plugin could be initialized multiple times.
- Fixed bug where the table inline toolbars would be displayed at the same time as the image toolbars.
- Fixed bug where the table selection rect wouldn't be removed when selecting another control element.

## 4.3.0 - 2015-11-23

### Added
- Added new table column/row resize support. Makes it a lot more easy to resize the columns/rows in a table.
- Added new table inline toolbar. Makes it easier to for example add new rows or columns to a table.
- Added new notification API. Lets you display floating notifications to the end user.
- Added new codesample plugin that lets you insert syntax highlighted pre elements into the editor.
- Added new image_caption to images. Lets you create images with captions using a HTML5 figure/figcaption elements.
- Added new live previews of embeded videos. Lets you play the video right inside the editor.
- Added new setDirty method and "dirty" event to the editor. Makes it easier to track the dirty state change.
- Added new setMode method to Editor instances that lets you dynamically switch between design/readonly.
- Added new core support for contentEditable=false elements within the editor overrides the browsers broken behavior.

### Changed
- Rewrote the noneditable plugin to use the new contentEditable false core logic.

### Fixed
- Fixed so the dirty state doesn't set to false automatically when the undo index is set to 0.
- Fixed the Selection.placeCaretAt so it works better on IE when the coordinate is between paragraphs.
- Fixed bug where data-mce-bogus="all" element contents where counted by the word count plugin.
- Fixed bug where contentEditable=false elements would be indented by the indent buttons.
- Fixed bug where images within contentEditable=false would be selected in WebKit on mouse click.
- Fixed bug in DOMUntils split method where the replacement parameter wouldn't work on specific cases.
- Fixed bug where the importcss plugin would import classes from the skin content css file.
- Fixed so all button variants have a wrapping span for it's text to make it easier to skin.
- Fixed so it's easier to exit pre block using the arrow keys.
- Fixed bug where listboxes with fix widths didn't render correctly.

## 4.2.8 - 2015-11-13

### Fixed
- Fixed bug where it was possible to delete tables as the inline root element if all columns where selected.
- Fixed bug where the UI buttons active state wasn't properly updated due to recent refactoring of that logic.

## 4.2.7 - 2015-10-27

### Fixed
- Fixed bug where backspace/delete would remove all formats on the last paragraph character in WebKit/Blink.
- Fixed bug where backspace within a inline format element with a bogus caret container would move the caret.
- Fixed bug where backspace/delete on selected table cells wouldn't add an undo level.
- Fixed bug where script tags embedded within the editor could sometimes get a mce- prefix prepended to them
- Fixed bug where validate: false option could produce an error to be thrown from the Serialization step.
- Fixed bug where inline editing of a table as the root element could let the user delete that table.
- Fixed bug where inline editing of a table as the root element wouldn't properly handle enter key.
- Fixed bug where inline editing of a table as the root element would normalize the selection incorrectly.
- Fixed bug where inline editing of a list as the root element could let the user delete that list.
- Fixed bug where inline editing of a list as the root element could let the user split that list.
- Fixed bug where resize handles would be rendered on editable root elements such as table.

## 4.2.6 - 2015-09-28

### Added
- Added capability to set request headers when using XHRs.
- Added capability to upload local images automatically default delay is set to 30 seconds after editing images.
- Added commands ids mceEditImage, mceAchor and mceMedia to be avaiable from execCommand.
- Added Edge browser to saucelabs grunt task. Patch contributed by John-David Dalton.

### Fixed
- Fixed bug where blob uris not produced by tinymce would produce HTML invalid markup.
- Fixed bug where selection of contents of a nearly empty editor in Edge would sometimes fail.
- Fixed bug where color styles woudln't be retained on copy/paste in Blink/Webkit.
- Fixed bug where the table plugin would throw an error when inserting rows after a child table.
- Fixed bug where the template plugin wouldn't handle functions as variable replacements.
- Fixed bug where undo/redo sometimes wouldn't work properly when applying formatting collapsed ranges.
- Fixed bug where shift+delete wouldn't do a cut operation on Blink/WebKit.
- Fixed bug where cut action wouldn't properly store the before selection bookmark for the undo level.
- Fixed bug where backspace in side an empty list element on IE would loose editor focus.
- Fixed bug where the save plugin wouldn't enable the buttons when a change occurred.
- Fixed bug where Edge wouldn't initialize the editor if a document.domain was specified.
- Fixed bug where enter key before nested images would sometimes not properly expand the previous block.
- Fixed bug where the inline toolbars wouldn't get properly hidden when blurring the editor instance.
- Fixed bug where Edge would paste Chinese characters on some Windows 10 installations.
- Fixed bug where IME would loose focus on IE 11 due to the double trailing br bug fix.
- Fixed bug where the proxy url in imagetools was incorrect. Patch contributed by Wong Ho Wang.

## 4.2.5 - 2015-08-31

### Added
- Added fullscreen capability to embedded youtube and vimeo videos.

### Fixed
- Fixed bug where the uploadImages call didn't work on IE 10.
- Fixed bug where image place holders would be uploaded by uploadImages call.
- Fixed bug where images marked with bogus would be uploaded by the uploadImages call.
- Fixed bug where multiple calls to uploadImages would result in decreased performance.
- Fixed bug where pagebreaks were editable to imagetools patch contributed by Rasmus Wallin.
- Fixed bug where the element path could cause too much recursion exception.
- Fixed bug for domains containing ".min". Patch contributed by Loïc Février.
- Fixed so validation of external links to accept a number after www. Patch contributed by Victor Carvalho.
- Fixed so the charmap is exposed though execCommand. Patch contributed by Matthew Will.
- Fixed so that the image uploads are concurrent for improved performance.
- Fixed various grammar problems in inline documentation. Patches provided by nikolas.

## 4.2.4 - 2015-08-17

### Added
- Added picture as a valid element to the HTML 5 schema. Patch contributed by Adam Taylor.

### Fixed
- Fixed bug where contents would be duplicated on drag/drop within the same editor.
- Fixed bug where floating/alignment of images on Edge wouldn't work properly.
- Fixed bug where it wasn't possible to drag images on IE 11.
- Fixed bug where image selection on Edge would sometimes fail.
- Fixed bug where contextual toolbars icons wasn't rendered properly when using the toolbar_items_size.
- Fixed bug where searchreplace dialog doesn't get prefilled with the selected text.
- Fixed bug where fragmented matches wouldn't get properly replaced by the searchreplace plugin.
- Fixed bug where enter key wouldn't place the caret if was after a trailing space within an inline element.
- Fixed bug where the autolink plugin could produce multiple links for the same text on Gecko.
- Fixed bug where EditorUpload could sometimes throw an exception if the blob wasn't found.
- Fixed xss issues with media plugin not properly filtering out some script attributes.

## 4.2.3 - 2015-07-30

### Fixed
- Fixed bug where image selection wasn't possible on Edge due to incompatible setBaseAndExtend API.
- Fixed bug where image blobs urls where not properly destroyed by the imagetools plugin.
- Fixed bug where keyboard shortcuts wasn't working correctly on IE 8.
- Fixed skin issue where the borders of panels where not visible on IE 8.

## 4.2.2 - 2015-07-22

### Fixed
- Fixed bug where float panels were not being hidden on inline editor blur when fixed_toolbar_container config option was in use.
- Fixed bug where combobox states wasn't properly updated if contents where updated without keyboard.
- Fixed bug where pasting into textbox or combobox would move the caret to the end of text.
- Fixed bug where removal of bogus span elements before block elements would remove whitespace between nodes.
- Fixed bug where repositioning of inline toolbars where async and producing errors if the editor was removed from DOM to early. Patch by iseulde.
- Fixed bug where element path wasn't working correctly. Patch contributed by iseulde.
- Fixed bug where menus wasn't rendered correctly when custom images where added to a menu. Patch contributed by Naim Hammadi.

## 4.2.1 - 2015-06-29

### Fixed
- Fixed bug where back/forward buttons in the browser would render blob images as broken images.
- Fixed bug where Firefox would throw regexp to big error when replacing huge base64 chunks.
- Fixed bug rendering issues with resize and context toolbars not being placed properly until next animation frame.
- Fixed bug where the rendering of the image while cropping would some times not be centered correctly.
- Fixed bug where listbox items with submenus would me selected as active.
- Fixed bug where context menu where throwing an error when rendering.
- Fixed bug where resize both option wasn't working due to resent addClass API change. Patch contributed by Jogai.
- Fixed bug where a hideAll call for container rendered inline toolbars would throw an error.
- Fixed bug where onclick event handler on combobox could cause issues if element.id was a function by some polluting libraries.
- Fixed bug where listboxes wouldn't get proper selected sub menu item when using link_list or image_list.
- Fixed so the UI controls are as wide as 4.1.x to avoid wrapping controls in toolbars.
- Fixed so the imagetools dialog is adaptive for smaller screen sizes.

## 4.2.0 - 2015-06-25

### Added
- Added new flat default skin to make the UI more modern.
- Added new imagetools plugin, lets you crop/resize and apply filters to images.
- Added new contextual toolbars support to the API lets you add floating toolbars for specific CSS selectors.
- Added new promise feature fill as tinymce.util.Promise.
- Added new built in image upload feature lets you upload any base64 encoded image within the editor as files.

### Fixed
- Fixed bug where resize handles would appear in the right position in the wrong editor when switching between resizable content in different inline editors.
- Fixed bug where tables would not be inserted in inline mode due to previous float panel fix.
- Fixed bug where floating panels would remain open when focus was lost on inline editors.
- Fixed bug where cut command on Chrome would thrown a browser security exception.
- Fixed bug where IE 11 sometimes would report an incorrect size for images in the image dialog.
- Fixed bug where it wasn't possible to remove inline formatting at the end of block elements.
- Fixed bug where it wasn't possible to delete table cell contents when cell selection was vertical.
- Fixed bug where table cell wasn't emptied from block elements if delete/backspace where pressed in empty cell.
- Fixed bug where cmd+shift+arrow didn't work correctly on Firefox mac when selecting to start/end of line.
- Fixed bug where removal of bogus elements would sometimes remove whitespace between nodes.
- Fixed bug where the resize handles wasn't updated when the main window was resized.
- Fixed so script elements gets removed by default to prevent possible XSS issues in default config implementations.
- Fixed so the UI doesn't need manual reflows when using non native layout managers.
- Fixed so base64 encoded images doesn't slow down the editor on modern browsers while editing.
- Fixed so all UI elements uses touch events to improve mobile device support.
- Removed the touch click quirks patch for iOS since it did more harm than good.
- Removed the non proportional resize handles since. Unproportional resize can still be done by holding the shift key.

## 4.1.10 - 2015-05-05

### Fixed
- Fixed bug where plugins loaded with compat3x would sometimes throw errors when loading using the jQuery version.
- Fixed bug where extra empty paragraphs would get deleted in WebKit/Blink due to recent Quriks fix.
- Fixed bug where the editor wouldn't work properly on IE 12 due to some required browser sniffing.
- Fixed bug where formatting shortcut keys where interfering with Mac OS X screenshot keys.
- Fixed bug where the caret wouldn't move to the next/previous line boundary on Cmd+Left/Right on Gecko.
- Fixed bug where it wasn't possible to remove formats from very specific nested contents.
- Fixed bug where undo levels wasn't produced when typing letters using the shift or alt+ctrl modifiers.
- Fixed bug where the dirty state wasn't properly updated when typing using the shift or alt+ctrl modifiers.
- Fixed bug where an error would be thrown if an autofocused editor was destroyed quickly after its initialization. Patch provided by thorn0.
- Fixed issue with dirty state not being properly updated on redo operation.
- Fixed issue with entity decoder not handling incorrectly written numeric entities.
- Fixed issue where some PI element values wouldn't be properly encoded.

## 4.1.9 - 2015-03-10

### Fixed
- Fixed bug where indentation wouldn't work properly for non list elements.
- Fixed bug with image plugin not pulling the image dimensions out correctly if a custom document_base_url was used.
- Fixed bug where ctrl+alt+[1-9] would conflict with the AltGr+[1-9] on Windows. New shortcuts is ctrl+shift+[1-9].
- Fixed bug with removing formatting on nodes in inline mode would sometimes include nodes outside the editor body.
- Fixed bug where extra nbsp:s would be inserted when you replaced a word surrounded by spaces using insertContent.
- Fixed bug with pasting from Google Docs would produce extra strong elements and line feeds.

## 4.1.8 - 2015-03-05

### Added
- Added new html5 sizes attribute to img elements used together with srcset.
- Added new elementpath option that makes it possible to disable the element path but keep the statusbar.
- Added new option table_style_by_css for the table plugin to set table styling with css rather than table attributes.
- Added new link_assume_external_targets option to prompt the user to prepend http:// prefix if the supplied link does not contain a protocol prefix.
- Added new image_prepend_url option to allow a custom base path/url to be added to images.
- Added new table_appearance_options option to make it possible to disable some options.
- Added new image_title option to make it possible to alter the title of the image, disabled by default.

### Fixed
- Fixed bug where selection starting from out side of the body wouldn't produce a proper selection range on IE 11.
- Fixed bug where pressing enter twice before a table moves the cursor in the table and causes a javascript error.
- Fixed bug where advanced image styles were not respected.
- Fixed bug where the less common Shift+Delete didn't produce a proper cut operation on WebKit browsers.
- Fixed bug where image/media size constrain logic would produce NaN when handling non number values.
- Fixed bug where internal classes where removed by the removeformat command.
- Fixed bug with creating links table cell contents with a specific selection would throw a exceptions on WebKit/Blink.
- Fixed bug where valid_classes option didn't work as expected according to docs. Patch provided by thorn0.
- Fixed bug where jQuery plugin would patch the internal methods multiple times. Patch provided by Drew Martin.
- Fixed bug where backspace key wouldn't delete the current selection of newly formatted content.
- Fixed bug where type over of inline formatting elements wouldn't properly keep the format on WebKit/Blink.
- Fixed bug where selection needed to be properly normalized on modern IE versions.
- Fixed bug where Command+Backspace didn't properly delete the whole line of text but the previous word.
- Fixed bug where UI active states wheren't properly updated on IE if you placed caret within the current range.
- Fixed bug where delete/backspace on WebKit/Blink would remove span elements created by the user.
- Fixed bug where delete/backspace would produce incorrect results when deleting between two text blocks with br elements.
- Fixed bug where captions where removed when pasting from MS Office.
- Fixed bug where lists plugin wouldn't properly remove fully selected nested lists.
- Fixed bug where the ttf font used for icons would throw an warning message on Gecko on Mac OS X.
- Fixed a bug where applying a color to text did not update the undo/redo history.
- Fixed so shy entities gets displayed when using the visualchars plugin.
- Fixed so removeformat removes ins/del by default since these might be used for strikethough.
- Fixed so multiple language packs can be loaded and added to the global I18n data structure.
- Fixed so transparent color selection gets treated as a normal color selection. Patch contributed by Alexander Hofbauer.
- Fixed so it's possible to disable autoresize_overflow_padding, autoresize_bottom_margin options by setting them to false.
- Fixed so the charmap plugin shows the description of the character in the dialog. Patch contributed by Jelle Hissink.
- Removed address from the default list of block formats since it tends to be missused.
- Fixed so the pre block format is called preformatted to make it more verbose.
- Fixed so it's possible to context scope translation strings this isn't needed most of the time.
- Fixed so the max length of the width/height input fields of the media dialog is 5 instead of 3.
- Fixed so drag/dropped contents gets properly processed by paste plugin since it's basically a paste. Patch contributed by Greg Fairbanks.
- Fixed so shortcut keys for headers is ctrl+alt+[1-9] instead of ctrl+[1-9] since these are for switching tabs in the browsers.
- Fixed so "u" doesn't get converted into a span element by the legacy input filter. Since this is now a valid HTML5 element.
- Fixed font families in order to provide appropriate web-safe fonts.

## 4.1.7 - 2014-11-27

### Added
- Added HTML5 schema support for srcset, source and picture. Patch contributed by mattheu.
- Added new cache_suffix setting to enable cache busting by producing unique urls.
- Added new paste_convert_word_fake_lists option to enable users to disable the fake lists convert logic.

### Fixed
- Fixed so advlist style changes adds undo levels for each change.
- Fixed bug where WebKit would sometimes produce an exception when the autolink plugin where looking for URLs.
- Fixed bug where IE 7 wouldn't be rendered properly due to aggressive css compression.
- Fixed bug where DomQuery wouldn't accept window as constructor element.
- Fixed bug where the color picker in 3.x dialogs wouldn't work properly. Patch contributed by Callidior.
- Fixed bug where the image plugin wouldn't respect the document_base_url.
- Fixed bug where the jQuery plugin would fail to append to elements named array prototype names.

## 4.1.6 - 2014-10-08

### Changed
- Replaced jake with grunt since it is more mainstream and has better plugin support.

### Fixed
- Fixed bug with clicking on the scrollbar of the iframe would cause a JS error to be thrown.
- Fixed bug where null would produce an exception if you passed it to selection.setRng.
- Fixed bug where Ctrl/Cmd+Tab would indent the current list item if you switched tabs in the browser.
- Fixed bug where pasting empty cells from Excel would result in a broken table.
- Fixed bug where it wasn't possible to switch back to default list style type.
- Fixed issue where the select all quirk fix would fire for other modifiers than Ctrl/Cmd combinations.


## 4.1.5 - 2014-09-09

### Fixed
- Fixed bug where sometimes the resize rectangles wouldn't properly render on images on WebKit/Blink.
- Fixed bug in list plugin where delete/backspace would merge empty LI elements in lists incorrectly.
- Fixed bug where empty list elements would result in empty LI elements without it's parent container.
- Fixed bug where backspace in empty caret formatted element could produce an type error exception of Gecko.
- Fixed bug where lists pasted from word with a custom start index above 9 wouldn't be properly handled.
- Fixed bug where tabfocus plugin would tab out of the editor instance even if the default action was prevented.
- Fixed bug where tabfocus wouldn't tab properly to other adjacent editor instances.
- Fixed bug where the DOMUtils setStyles wouldn't properly removed or update the data-mce-style attribute.
- Fixed bug where dialog select boxes would be placed incorrectly if document.body wasn't statically positioned.
- Fixed bug where pasting would sometimes scroll to the top of page if the user was using the autoresize plugin.
- Fixed bug where caret wouldn't be properly rendered by Chrome when clicking on the iframes documentElement.
- Fixed so custom images for menubutton/splitbutton can be provided. Patch contributed by Naim Hammadi.
- Fixed so the default action of windows closing can be prevented by blocking the default action of the close event.
- Fixed so nodeChange and focus of the editor isn't automatically performed when opening sub dialogs.

## 4.1.4 - 2014-08-21

### Added
- Added new media_filter_html option to media plugin that blocks any conditional comments, scripts etc within a video element.
- Added new content_security_policy option allows you to set custom policy for iframe contents. Patch contributed by Francois Chagnon.

### Fixed
- Fixed bug where activate/deactivate events wasn't firing properly when switching between editors.
- Fixed bug where placing the caret on iOS was difficult due to a WebKit bug with touch events.
- Fixed bug where the resize helper wouldn't render properly on older IE versions.
- Fixed bug where resizing images inside tables on older IE versions would sometimes fail depending mouse position.
- Fixed bug where editor.insertContent would produce an exception when inserting select/option elements.
- Fixed bug where extra empty paragraphs would be produced if block elements where inserted inside span elements.
- Fixed bug where the spellchecker menu item wouldn't be properly checked if spell checking was started before it was rendered.
- Fixed bug where the DomQuery filter function wouldn't remove non elements from collection.
- Fixed bug where document with custom document.domain wouldn't properly render the editor.
- Fixed bug where IE 8 would throw exception when trying to enter invalid color values into colorboxes.
- Fixed bug where undo manager could incorrectly add an extra undo level when custom resize handles was removed.
- Fixed bug where it wouldn't be possible to alter cell properties properly on table cells on IE 8.
- Fixed so the color picker button in table dialog isn't shown unless you include the colorpicker plugin or add your own custom color picker.
- Fixed so activate/deactivate events fire when windowManager opens a window since.
- Fixed so the table advtab options isn't separated by an underscore to normalize naming with image_advtab option.
- Fixed so the table cell dialog has proper padding when the advanced tab in disabled.

## 4.1.3 - 2014-07-29

### Added
- Added event binding logic to tinymce.util.XHR making it possible to override headers and settings before any request is made.

### Fixed
- Fixed bug where drag events wasn't fireing properly on older IE versions since the event handlers where bound to document.
- Fixed bug where drag/dropping contents within the editor on IE would force the contents into plain text mode even if it was internal content.
- Fixed bug where IE 7 wouldn't open menus properly due to a resize bug in the browser auto closing them immediately.
- Fixed bug where the DOMUtils getPos logic wouldn't produce a valid coordinate inside the body if the body was positioned non static.
- Fixed bug where the element path and format state wasn't properly updated if you had the wordcount plugin enabled.
- Fixed bug where a comment at the beginning of source would produce an exception in the formatter logic.
- Fixed bug where setAttrib/getAttrib on null would throw exception together with any hooked attributes like style.
- Fixed bug where table sizes wasn't properly retained when copy/pasting on WebKit/Blink.
- Fixed bug where WebKit/Blink would produce colors in RGB format instead of the forced HEX format when deleting contents.
- Fixed bug where the width attribute wasn't updated on tables if you changed the size inside the table dialog.
- Fixed bug where control selection wasn't properly handled when the caret was placed directly after an image.
- Fixed bug where selecting the contents of table cells using the selection.select method wouldn't place the caret properly.
- Fixed bug where the selection state for images wasn't removed when placing the caret right after an image on WebKit/Blink.
- Fixed bug where all events wasn't properly unbound when and editor instance was removed or destroyed by some external innerHTML call.
- Fixed bug where it wasn't possible or very hard to select images on iOS when the onscreen keyboard was visible.
- Fixed so auto_focus can take a boolean argument this will auto focus the last initialized editor might be useful for single inits.
- Fixed so word auto detect lists logic works better for faked lists that doesn't have specific markup.
- Fixed so nodeChange gets fired on mouseup as it used to before 4.1.1 we optimized that event to fire less often.

### Removed
- Removed the finish menu item from spellchecker menu since it's redundant you can stop spellchecking by toggling menu item or button.

## 4.1.2 - 2014-07-15

### Added
- Added offset/grep to DomQuery class works basically the same as it's jQuery equivalent.

### Fixed
- Fixed bug where backspace/delete or setContent with an empty string would remove header data when using the fullpage plugin.
- Fixed bug where tinymce.remove with a selector not matching any editors would remove all editors.
- Fixed bug where resizing of the editor didn't work since the theme was calling setStyles instead of setStyle.
- Fixed bug where IE 7 would fail to append html fragments to iframe document when using DomQuery.
- Fixed bug where the getStyle DOMUtils method would produce an exception if it was called with null as it's element.
- Fixed bug where the paste plugin would remove the element if the none of the paste_webkit_styles rules matched the current style.
- Fixed bug where contextmenu table items wouldn't work properly on IE since it would some times fire an incorrect selection change.
- Fixed bug where the padding/border values wasn't used in the size calculation for the body size when using autoresize. Patch contributed by Matt Whelan.
- Fixed bug where conditional word comments wouldn't be properly removed when pasting plain text.
- Fixed bug where resizing would sometime fail on IE 11 when the mouseup occurred inside the resizable element.
- Fixed so the iframe gets initialized without any inline event handlers for better CSP support. Patch contributed by Matt Whelan.
- Fixed so the tinymce.dom.Sizzle is the latest version of sizzle this resolves the document context bug.

## 4.1.1 - 2014-07-08

### Fixed
- Fixed bug where pasting plain text on some WebKit versions would result in an empty line.
- Fixed bug where resizing images inside tables on IE 11 wouldn't work properly.
- Fixed bug where IE 11 would sometimes throw "Invalid argument" exception when editor contents was set to an empty string.
- Fixed bug where document.activeElement would throw exceptions on IE 9 when that element was hidden or removed from dom.
- Fixed bug where WebKit/Blink sometimes produced br elements with the Apple-interchange-newline class.
- Fixed bug where table cell selection wasn't properly removed when copy/pasting table cells.
- Fixed bug where pasting nested list items from Word wouldn't produce proper semantic nested lists.
- Fixed bug where right clicking using the contextmenu plugin on WebKit/Blink on Mac OS X would select the target current word or line.
- Fixed bug where it wasn't possible to alter table cell properties on IE 8 using the context menu.
- Fixed bug where the resize helper wouldn't be correctly positioned on older IE versions.
- Fixed bug where fullpage plugin would produce an error if you didn't specify a doctype encoding.
- Fixed bug where anchor plugin would get the name/id of the current element even if it wasn't anchor element.
- Fixed bug where visual aids for tables wouldn't be properly disabled when changing the border size.
- Fixed bug where some control selection events wasn't properly fired on older IE versions.
- Fixed bug where table cell selection on older IE versions would prevent resizing of images.
- Fixed bug with paste_data_images paste option not working properly on modern IE versions.
- Fixed bug where custom elements with underscores in the name wasn't properly parsed/serialized.
- Fixed bug where applying inline formats to nested list elements would produce an incorrect formatting result.
- Fixed so it's possible to hide items from elements path by using preventDefault/stopPropagation.
- Fixed so inline mode toolbar gets rendered right aligned if the editable element positioned to the documents right edge.
- Fixed so empty inline elements inside empty block elements doesn't get removed if configured to be kept intact.
- Fixed so DomQuery parentsUntil/prevUntil/nextUntil supports selectors/elements/filters etc.
- Fixed so legacyoutput plugin overrides fontselect and fontsizeselect controls and handles font elements properly.

## 4.1.0 - 2014-06-18

### Added
- Added new file_picker_callback option to replace the old file_browser_callback the latter will still work though.
- Added new custom colors to textcolor plugin will be displayed if a color picker is provided also shows the latest colors.
- Added new color_picker_callback option to enable you to add custom color pickers to the editor.
- Added new advanced tabs to table/cell/row dialogs to enable you to select colors for border/background.
- Added new colorpicker plugin that lets you select colors from a hsv color picker.
- Added new tinymce.util.Color class to handle color parsing and converting.
- Added new colorpicker UI widget element lets you add a hsv color picker to any form/window.
- Added new textpattern plugin that allows you to use markdown like text patterns to format contents.
- Added new resize helper element that shows the current width & height while resizing.
- Added new "once" method to Editor and EventDispatcher enables since callback execution events.
- Added new jQuery like class under tinymce.dom.DomQuery it's exposed on editor instances (editor.$) and globally under (tinymce.$).

### Fixed
- Fixed so the default resize method for images are proportional shift/ctrl can be used to make an unproportional size.
- Fixed bug where the image_dimensions option of the image plugin would cause exceptions when it tried to update the size.
- Fixed bug where table cell dialog class field wasn't properly updated when editing an a table cell with an existing class.
- Fixed bug where Safari on Mac would produce webkit-fake-url for pasted images so these are now removed.
- Fixed bug where the nodeChange event would get fired before the selection was changed when clicking inside the current selection range.
- Fixed bug where valid_classes option would cause exception when it removed internal prefixed classes like mce-item-.
- Fixed bug where backspace would cause navigation in IE 8 on an inline element and after a caret formatting was applied.
- Fixed so placeholder images produced by the media plugin gets selected when inserted/edited.
- Fixed so it's possible to drag in images when the paste_data_images option is enabled. Might be useful for mail clients.
- Fixed so images doesn't get a width/height applied if the image_dimensions option is set to false useful for responsive contents.
- Fixed so it's possible to pass in an optional arguments object for the nodeChanged function to be passed to all nodechange event listeners.
- Fixed bug where media plugin embed code didn't update correctly.
admin/assets/vendor/colorbox/colorbox.css000064400000011254151213255310014624 0ustar00/*
    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;}
#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;}
.cboxIframe{width:100%; height:100%; display:block; border: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:url(images/overlay.png) repeat 0 0;}
#colorbox{outline:0;}

    #cboxContent{background:#fff; overflow:hidden; padding: 10px;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:28px;}
        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
        #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}

        /* 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:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-25px -25px;}

/*
  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);
}

/*
  The following provides PNG transparency support for IE6
  Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
*/
.cboxIE6 #cboxTopLeft{background:url(images/ie6/borderTopLeft.png);}
.cboxIE6 #cboxTopCenter{background:url(images/ie6/borderTopCenter.png);}
.cboxIE6 #cboxTopRight{background:url(images/ie6/borderTopRight.png);}
.cboxIE6 #cboxBottomLeft{background:url(images/ie6/borderBottomLeft.png);}
.cboxIE6 #cboxBottomCenter{background:url(images/ie6/borderBottomCenter.png);}
.cboxIE6 #cboxBottomRight{background:url(images/ie6/borderBottomRight.png);}
.cboxIE6 #cboxMiddleLeft{background:url(images/ie6/borderMiddleLeft.png);}
.cboxIE6 #cboxMiddleRight{background:url(images/ie6/borderMiddleRight.png);}

.cboxIE6 #cboxTopLeft,
.cboxIE6 #cboxTopCenter,
.cboxIE6 #cboxTopRight,
.cboxIE6 #cboxBottomLeft,
.cboxIE6 #cboxBottomCenter,
.cboxIE6 #cboxBottomRight,
.cboxIE6 #cboxMiddleLeft,
.cboxIE6 #cboxMiddleRight {
    _behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
}
admin/assets/vendor/colorbox/jquery.colorbox-min.js000064400000065567151213255310016567 0ustar00/*!
	Colorbox v1.4.25 - 2013-06-28
	jQuery lightbox and modal window plugin
	(c) 2013 Jack Moore - http://www.jacklmoore.com/colorbox
	license: http://www.opensource.org/licenses/mit-license.php
*/
(function ($, document, window) {
	var
	// Default settings object.
	// See http://jacklmoore.com/colorbox for details.
	defaults = {
		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,
		inline: false,
		html: false,
		iframe: false,
		fastIframe: true,
		photo: false,
		href: false,
		title: false,
		rel: false,
		opacity: 0.9,
		preloading: true,
		className: false,

		// 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.",

		open: false,
		returnFocus: true,
		trapFocus: 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)((#|\?).*)?$/i,

		onOpen: false,
		onLoad: false,
		onComplete: false,
		onCleanup: false,
		onClosed: false,

		overlayClose: true,
		escKey: true,
		arrowKey: true,
		top: false,
		bottom: false,
		left: false,
		right: false,
		fixed: false,
		data: undefined,
		closeButton: true
	},
	
	// 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/>'),
	
	// Variables for cached values or use across multiple functions
	settings,
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	element,
	index,
	photo,
	open,
	active,
	closing,
	loadingTimer,
	publicMethod,
	div = "div",
	className,
	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();
	}

	// 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.photo || settings.photoRegex.test(url);
	}

	function retinaUrl(settings, url) {
		return settings.retinaUrl && window.devicePixelRatio > 1 ? url.replace(settings.photoRegex, settings.retinaSuffix) : url;
	}

	function trapFocus(e) {
		if ('contains' in $box[0] && !$box[0].contains(e.target)) {
			e.stopPropagation();
			$box.focus();
		}
	}

	// Assigns function results to their respective properties
	function makeSettings() {
		var i,
			data = $.data(element, colorbox);
		
		if (data == null) {
			settings = $.extend({}, defaults);
			if (console && console.log) {
				console.log('Error: cboxElement missing settings object');
			}
		} else {
			settings = $.extend({}, data);
		}
		
		for (i in settings) {
			if ($.isFunction(settings[i]) && i.slice(0, 2) !== 'on') { // checks to make sure the function isn't one of the callbacks, they will be handled at the appropriate time.
				settings[i] = settings[i].call(element);
			}
		}
		
		settings.rel = settings.rel || element.rel || $(element).data('rel') || 'nofollow';
		settings.href = settings.href || $(element).attr('href');
		settings.title = settings.title || element.title;
		
		if (typeof settings.href === "string") {
			settings.href = $.trim(settings.href);
		}
	}

	function trigger(event, callback) {
		// for external use
		$(document).trigger(event);

		// for internal use
		$events.trigger(event);

		if ($.isFunction(callback)) {
			callback.call(element);
		}
	}

	// Slideshow functionality
	function slideshow() {
		var
		timeOut,
		className = prefix + "Slideshow_",
		click = "click." + prefix,
		clear,
		set,
		start,
		stop;
		
		if (settings.slideshow && $related[1]) {
			clear = function () {
				clearTimeout(timeOut);
			};

			set = function () {
				if (settings.loop || $related[index + 1]) {
					timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
				}
			};

			start = function () {
				$slideshow
					.html(settings.slideshowStop)
					.unbind(click)
					.one(click, stop);

				$events
					.bind(event_complete, set)
					.bind(event_load, clear)
					.bind(event_cleanup, stop);

				$box.removeClass(className + "off").addClass(className + "on");
			};
			
			stop = function () {
				clear();
				
				$events
					.unbind(event_complete, set)
					.unbind(event_load, clear)
					.unbind(event_cleanup, stop);
				
				$slideshow
					.html(settings.slideshowStart)
					.unbind(click)
					.one(click, function () {
						publicMethod.next();
						start();
					});

				$box.removeClass(className + "on").addClass(className + "off");
			};
			
			if (settings.slideshowAuto) {
				start();
			} else {
				stop();
			}
		} else {
			$box.removeClass(className + "off " + className + "on");
		}
	}

	function launch(target) {
		if (!closing) {
			
			element = target;
			
			makeSettings();
			
			$related = $(element);
			
			index = 0;
			
			if (settings.rel !== 'nofollow') {
				$related = $('.' + boxElement).filter(function () {
					var data = $.data(this, colorbox),
						relRelated;

					if (data) {
						relRelated =  $(this).data('rel') || data.rel || this.rel;
					}
					
					return (relRelated === settings.rel);
				});
				index = $related.index(element);
				
				// Check direct calls to Colorbox.
				if (index === -1) {
					$related = $related.add(element);
					index = $related.length - 1;
				}
			}
			
			$overlay.css({
				opacity: parseFloat(settings.opacity),
				cursor: settings.overlayClose ? "pointer" : "auto",
				visibility: 'visible'
			}).show();
			

			if (className) {
				$box.add($overlay).removeClass(className);
			}
			if (settings.className) {
				$box.add($overlay).addClass(settings.className);
			}
			className = settings.className;

			if (settings.closeButton) {
				$close.html(settings.close).appendTo($content);
			} else {
				$close.appendTo('<div/>');
			}

			if (!open) {
				open = active = true; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.
				
				// Show colorbox so the sizes can be calculated in older versions of jQuery
				$box.css({visibility:'hidden', display:'block'});
				
				$loaded = $tag(div, 'LoadedContent', 'width:0; height:0; overflow:hidden').appendTo($content);

				// 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.
				settings.w = setSize(settings.initialWidth, 'x');
				settings.h = setSize(settings.initialHeight, 'y');
				publicMethod.position();

				slideshow();

				trigger(event_open, settings.onOpen);
				
				$groupControls.add($title).hide();

				$box.focus();
				

				if (settings.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.returnFocus) {
					$events.one(event_closed, function () {
						$(element).focus();
					});
				}
			}
			
			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 && document.body) {
			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');
			
			$groupControls = $next.add($prev).add($current).add($slideshow);

			$(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.overlayClose) {
						publicMethod.close();
					}
				});
				
				// Key Bindings
				$(document).bind('keydown.' + prefix, function (e) {
					var key = e.keyCode;
					if (open && settings.escKey && key === 27) {
						e.preventDefault();
						publicMethod.close();
					}
					if (open && settings.arrowKey && $related[1] && !e.altKey) {
						if (key === 37) {
							e.preventDefault();
							$prev.click();
						} else if (key === 39) {
							e.preventDefault();
							$next.click();
						}
					}
				});

                $(document).on('click.'+prefix, '.'+boxElement, 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 $this = this;
		
		options = options || {};
		
		appendHTML();

		if (addBindings()) {
			if ($.isFunction($this)) { // assume a call to $.colorbox
				$this = $('<a/>');
				options.open = true;
			} else if (!$this[0]) { // colorbox being applied to empty collection
				return $this;
			}
			
			if (callback) {
				options.onComplete = callback;
			}
			
			$this.each(function () {
				$.data(this, colorbox, $.extend({}, $.data(this, colorbox) || defaults, options));
			}).addClass(boxElement);
			
			if (($.isFunction(options.open) && options.open.call($this)) || options.open) {
				launch($this[0]);
			}
		}
		
		return $this;
	};

	publicMethod.position = function (speed, loadedCallback) {
		var
		css,
		top = 0,
		left = 0,
		offset = $box.offset(),
		scrollTop,
		scrollLeft;
		
		$window.unbind('cbResize.' + 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.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.right !== false) {
			left += Math.max($window.width() - settings.w - loadedWidth - interfaceWidth - setSize(settings.right, 'x'), 0);
		} else if (settings.left !== false) {
			left += setSize(settings.left, 'x');
		} else {
			left += Math.round(Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2);
		}
		
		if (settings.bottom !== false) {
			top += Math.max(winheight() - settings.h - loadedHeight - interfaceHeight - setSize(settings.bottom, 'y'), 0);
		} else if (settings.top !== false) {
			top += setSize(settings.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(that) {
			$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = (parseInt(that.style.width,10) - interfaceWidth)+'px';
			$content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = (parseInt(that.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;

		$box.dequeue().animate(css, {
			duration: speed || 0,
			complete: function () {
				modalDimensions(this);
				
				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.reposition) {
					setTimeout(function () {  // small delay before binding oncbResize due to an IE8 bug.
						$window.bind('cbResize.' + prefix, publicMethod.position);
					}, 1);
				}

				if (loadedCallback) {
					loadedCallback();
				}
			},
			step: function () {
				modalDimensions(this);
			}
		});
	};

	publicMethod.cbResize = 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.transition === "none" ? 0 : settings.speed);
		}
	};

	publicMethod.prep = function (object) {
		if (!open) {
			return;
		}
		
		var callback, speed = settings.transition === "none" ? 0 : settings.speed;

		$loaded.empty().remove(); // Using empty first may prevent some IE7 issues.

		$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.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'});

		callback = function () {
			var total = $related.length,
				iframe,
				frameBorder = 'frameBorder',
				allowTransparency = 'allowTransparency',
				complete;
			
			if (!open) {
				return;
			}
			
			function removeFilter() { // Needed for IE7 & 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.onComplete);
			};

			
			$title.html(settings.title).add($loaded).show();
			
			if (total > 1) { // handle grouping
				if (typeof settings.current === "string") {
					$current.html(settings.current.replace('{current}', index + 1).replace('{total}', total)).show();
				}
				
				$next[(settings.loop || index < total - 1) ? "show" : "hide"]().html(settings.next);
				$prev[(settings.loop || index) ? "show" : "hide"]().html(settings.previous);
				
				if (settings.slideshow) {
					$slideshow.show();
				}
				
				// Preloads images within a rel group
				if (settings.preloading) {
					$.each([getIndex(-1), getIndex(1)], function(){
						var src,
							img,
							i = $related[this],
							data = $.data(i, colorbox);

						if (data && data.href) {
							src = data.href;
							if ($.isFunction(src)) {
								src = src.call(i);
							}
						} else {
							src = $(i).attr('href');
						}

						if (src && isImage(data, src)) {
							src = retinaUrl(data, src);
							img = document.createElement('img');
							img.src = src;
						}
					});
				}
			} else {
				$groupControls.hide();
			}
			
			if (settings.iframe) {
				iframe = $tag('iframe')[0];
				
				if (frameBorder in iframe) {
					iframe[frameBorder] = 0;
				}
				
				if (allowTransparency in iframe) {
					iframe[allowTransparency] = "true";
				}

				if (!settings.scrolling) {
					iframe.scrolling = "no";
				}
				
				$(iframe)
					.attr({
						src: settings.href,
						name: (new Date()).getTime(), // give the iframe a unique name to prevent caching
						'class': prefix + 'Iframe',
						allowFullScreen : true, // allow HTML5 video to go fullscreen
						webkitAllowFullScreen : true,
						mozallowfullscreen : true
					})
					.one('load', complete)
					.appendTo($loaded);
				
				$events.one(event_purge, function () {
					iframe.src = "//about:blank";
				});

				if (settings.fastIframe) {
					$(iframe).trigger('load');
				}
			} else {
				complete();
			}
			
			if (settings.transition === 'fade') {
				$box.fadeTo(speed, 1, removeFilter);
			} else {
				removeFilter();
			}
		};
		
		if (settings.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;
		
		element = $related[index];
		
		makeSettings();
		
		trigger(event_purge);
		
		trigger(event_load, settings.onLoad);
		
		settings.h = settings.height ?
				setSize(settings.height, 'y') - loadedHeight - interfaceHeight :
				settings.innerHeight && setSize(settings.innerHeight, 'y');
		
		settings.w = settings.width ?
				setSize(settings.width, 'x') - loadedWidth - interfaceWidth :
				settings.innerWidth && setSize(settings.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.maxWidth) {
			settings.mw = setSize(settings.maxWidth, 'x') - loadedWidth - interfaceWidth;
			settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
		}
		if (settings.maxHeight) {
			settings.mh = setSize(settings.maxHeight, 'y') - loadedHeight - interfaceHeight;
			settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
		}
		
		href = settings.href;
		
		loadingTimer = setTimeout(function () {
			$loadingOverlay.show();
		}, 100);
		
		if (settings.inline) {
			// 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 = $tag(div).hide().insertBefore($(href)[0]);

			$events.one(event_purge, function () {
				$inline.replaceWith($loaded.children());
			});

			prep($(href));
		} else if (settings.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.html) {
			prep(settings.html);
		} else if (isImage(settings, href)) {

			href = retinaUrl(settings, href);

			photo = document.createElement('img');

			$(photo)
			.addClass(prefix + 'Photo')
			.bind('error',function () {
				settings.title = false;
				prep($tag(div, 'Error').html(settings.imgError));
			})
			.one('load', function () {
				var percent;

				if (request !== requests) {
					return;
				}

				photo.alt = $(element).attr('alt') || $(element).attr('data-alt') || '';

				if (settings.retinaImage && window.devicePixelRatio > 1) {
					photo.height = photo.height / window.devicePixelRatio;
					photo.width = photo.width / window.devicePixelRatio;
				}

				if (settings.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.loop || $related[index + 1])) {
					photo.style.cursor = 'pointer';
					photo.onclick = function () {
						publicMethod.next();
					};
				}

				photo.style.width = photo.width + 'px';
				photo.style.height = photo.height + 'px';

				setTimeout(function () { // A pause because Chrome will sometimes report a 0 by 0 size otherwise.
					prep(photo);
				}, 1);
			});
			
			setTimeout(function () { // A pause because Opera 10.6+ will sometimes not run the onload function otherwise.
				photo.src = href;
			}, 1);
		} else if (href) {
			$loadingBay.load(href, settings.data, function (data, status) {
				if (request === requests) {
					prep(status === 'error' ? $tag(div, 'Error').html(settings.xhrError) : $(this).contents());
				}
			});
		}
	}
		
	// Navigates to the next page/image in a set.
	publicMethod.next = function () {
		if (!active && $related[1] && (settings.loop || $related[index + 1])) {
			index = getIndex(1);
			launch($related[index]);
		}
	};
	
	publicMethod.prev = function () {
		if (!active && $related[1] && (settings.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.onCleanup);
			
			$window.unbind('.' + prefix);
			
			$overlay.fadeTo(settings.fadeOut || 0, 0);
			
			$box.stop().fadeTo(settings.fadeOut || 0, 0, function () {
			
				$box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
				
				trigger(event_purge);
				
				$loaded.empty().remove(); // Using empty first may prevent some IE7 issues.
				
				setTimeout(function () {
					closing = false;
					trigger(event_closed, settings.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().remove();
		$overlay.remove();
		closing = false;
		$box = null;
		$('.' + boxElement)
			.removeData(colorbox)
			.removeClass(boxElement);

		$(document).unbind('click.'+prefix);
	};

	// A method for fetching the current element Colorbox is referencing.
	// returns a jQuery object.
	publicMethod.element = function () {
		return $(element);
	};

	publicMethod.settings = defaults;

}(jQuery, document, window));admin/assets/vendor/colorbox/images/overlay.png000064400000000266151213255310015720 0ustar00�PNG


IHDR���0PLTE���njv�AIDATx��Ρ
 �ЮP6 ���
�'$���y���u���7$7ɓdI�dI��Ar���*s8�"�yIEND�B`�admin/assets/vendor/colorbox/images/loading.gif000064400000022323151213255310015633 0ustar00GIF89a  �����U�����������к�����������������~������p��R�������|����Ȯ�x6�{:�@��j�����z�æ������|<��l������x�Ӿ���w4�z8�Ǭ���������t0�̴�Ҽ�Ĩ���n����������`�_�l$�^�s.����������ʰ��������b��������F��L��P��D��J�������H��B������N����f�o(�v2�c�b�ϸ��Z��T�¤��r��X��^��d��\��V�k"�j �h�p*������h�ζ��f�r,�ƪ�d��`�g��t��v�˲�n&����~>����\!�NETSCAPE2.0!�Created with ajaxload.info!�	,  ��������������������964��!�5:;�
"�";=5���?�7@�)26<>(B(�.�*0���(�#"3�B/(8�$+1����
���$����"p�A&X("�["hD�B�hH�‡ �A ��D
����ED^:*�ŋi�H��[�	�@��N�"�^`:��G@=�IBTD�
"��nD�� �(��-$`�ܹx����wR !�	,  ������������������*X[��
VY\��1-�L�Q
� 
IJ3��ZQ ���$FJLP�
TVZ]�7@��GKMQLSUW<^B(�.�&KP�R��(�@KJ�B/(8�B12˄4� :�j�/Q"E������%�� �
'R�P�A�!BZ��H۶���$0 �Ep"q�����耈B�G��xѭ�z@2=P'�.8�d�aۋG�4�����/H"�-)dA^N8�ƶ �p�J�BHΆ���˷�߿�!�	,  ����������������$N?��<e��K<fJ ��B2(�4M<gL
� `cC�T�P��._ad`�d�\
3@�Dbc]],?>h6b-(.�$b\H!!�US((���1�@/(8�.'S�u��	�.F���bŔ��
@@^"C.���A	x(:*zr��	~������/�)*��@�3_=s���ς�W��> ��� Ƞ  �.
����T�#��ŀ$����A<x�전:L�'$n�\���˷�߽�!�	,  ����������������$U��X>G��
cXn] ��7A�dXhJ
��+_[�\���6_l F�F

n8�_km-oHZ=pS�.?b-i�m=eG4�D�'�GXDϛ!i	"�R�2��2�%E8օP�@	 9,��EBJ�T$Ǎ�A �E����u��M_AP�8Y��@6}�XD%2")T���R��Da���L
`������1�TNBT��=T`ѹx����Wo !�	,  ����������������BC��HQ"E��
kQq �� 
�b`��DNj��*c�.�	
	 #
)J�O6
(3PQCUrY:?�N9+RO�#�:�.�9,�6p;a�(/� ��Q�n�����)r��"
�HXt6��EEB66ġp�HA$6,h��CT>*��B$^��IcE���aQ&�	_`�y�RȊ7) 0�� y�Dh���:(,KHQ<[���l�ʝK��@!�	,  ����������������.+l
��%T3�� &M#��s�b � /�Ol(�
tPk�_nQR�^?Hi
It
_egrN�+ENu`l?v�Vu� So6[/�FfrpF�jo%��G�F$� A���Ƃ�Q�@P(Јhт@�EPhDAC��0n�HHFn܈��@.2b��Q2
Q���@/\"�Ȧ�Y��F��h|ё荋&5
}��h4
`�
 L+�pc젵5L�x0��$���˷�߿}!�	,  ������������������l#m2�� mc��
w�_ � 2C�$(��\t$)nG�
j1�Gm\
0hvc��!�382#F�)�<?�,+!7�#nve�� ,[�EWek$�$�(\��BT#8�1"A���E���``��(2�P���mP�¨Q6	X�`��ƍ��
� D����
�耈<J��xQ�	�@4���3Q�l� ㋍Go��h<7Ș@K π�AvP(��&d	�u���˷��@!�	,  ���������������� ��AE?@��_��?�	l�B4�D��BwQH�AO!85G 9x*)b��/(-S$!wt-3�)X�@(R!7��t)0_�� ��D)>B����u+\|jb�>FB��hB7d,
�~���ؘD�"�/*:ңd�ܸ�P�T���Y�.��@�S� (^,D�I$B��$GȞ�X|��UBB�G�5,U	���A7�2Ks���*@b�ܻx��݋7!�	,  ������������������
i!
��SH2��C�?�,2��H96.GM%�/BuHw� NTPL��7((//?/C]ML3�@�(�$��x�� �.�^Lx�.ц[u4��@L��H=h��	�E���Ȇ+V��Pq�"YBj\d�FBEĈX���9·�}���3D�
 �H�;	Bp8=p��_�����ǎ�
�8
`�
�"���砱.'8#�PT
�ʝK��ݹ�!�	,  ������������������$��C37��,C�/j
�  ��%4Dmc�$/B�iD%F\]
��((/@u�]K��8�(�4$�Nc]T9�� �/4�d��.̆
'[�ABƉ� 0a�T$��ϐ���c�"�+2��Lb!fB��c@�7
*z�!
&N�3T���G�: b1Dg� �\"��K����!@6)P@z�L[7t
і���HDЂ8�t�� ��&$�:�PH���˷�_��!�	,  ������������������ ��BO,$��i2,�@� �7i2�o&-�B/7B��[S+&k�((/B-j�b[�8�(�
4�_kFH
� �/ۅ[q6�.Ȇ ,'�@@��B�)�0�J&bP$0�Z�C9R��B�)D*��cG�\�!0J�P�C�b^d��!C�؄T �1�h�2�#�N��1 =(f�Z6����$#5Ȉ��2*�t���Y^.M(v+n�$���˷�߿�!�	,  ��������������������7
��((� ����/�
	D��477B��R2G9(�A�B(.R6

��8�(� �u�&^�� �/Åjt�.� O!皋$88�.�@cd�@���T'��0��P�EQ L�'�E�Q p���	ȀS�Y<B:tx�(�Bb�x�@��
1�"�HNG$�y!@P�Z����B/n�C��H 8���	
܈�8jЍ��=	`B'Zl �3�ݻx��!�	,  ��������������������
@@��@((�����S�77B��(A�O34�8�/BA+EU.��(� �,EGu� (/ąRUy
�.߅7埉B���y5mb
V%��BW�d�t�!�"�iB��{n�S���9h����]�s��mْ�Q� ݖ���ʆ��H8�#V��1�A/]$^�U�JP/�2���	�p1enЍ��L{����
�����۷p�6
!�	,  ��������������������
@8��8((�����$�77B��(A�@,!��/B�$!2ul���(� ��3��(/��8u	А.ۆ8Aៈ4$$ȉ�D&H@��(4}ذ��A$��L�`̘0m(�w��"G�|�c��B
�c4��!
o.�|T H6����2��#�,�(�4>�(x�,[@/�����+XN<A�	X(<�)��K��^"�t��hx��d�']���p�SF~�˷�߿�!�	,  ����������������������8((������.�7B��(A�/(8��/B��-/���� �(-j@�(/��B-S(��.ֆB����܈�B+EN6���(4�1
[�˗�—�c(Rw��"!D$ܹ�9B 2vs�ː�l:vB�"!440و�1�OJ)�E�"=ȕ�
4������G V��BŎ1@x�a��h�Z��A�>R���⊎"�؄�D�H���ʝK�.�@!�	,  ��������������������$$��8((�����
B��(A�//���/�BB����� ����(/���(8�.І4��
Nj�S++R��(ۉ,UEHH?��S�6\(w��7Hlaǭ���(e�F
"�L`�M" �LjįrZ�!F*y(6��l[9Xp BC*+� p�:�)BB�$&
@�
���a��� "�Om��D�FO���ٰ�۷p�F
!�	,  ��������������������$$��((����  �
B��(A�/4��/B7��(8��������(/��B���.҆��� ��/j	,̉�(݈7uC'���R�Q�p㜢f��q�[!⚹�e��5� ͅ!/c�T�ֈįs��K.q�(xT�,<D�@%�81� p�<V�l("��9":�(C�6�hܡ�卧Vx��!͔��&�p�֡۷p�ʕ!�	,  ��������������������$B��((���� �
��(A�/7��(/�B7B�(����������B/(8�.ц4�����@@Ȋ�(݉O-ii���A2�2�Q�pÜ"-N��›!p������IÈAPH	a�&:r���c!P;Ц�iz��'>�0$N�s<�B�؁a�X�0?@P;>� ���H�����U���1#QPb����.ࡒn�$���˗P !�	,  ��������������������$.��(($�����
B��(A� ��(/B7��(�����������B/(8�.І4�����@�Ջ�(܉ÿٟ����7�A/��F�Z�@���R�"X~������ 0���4/�9�p����fX�g�"�$``�<-���&��KR�c���@"�@	&)D|)���;R0=�Z㛀�0�h�"�	��<D}��Ђo0��K���@!�	,  ��������������������B.��(($�����
B��(A���(/B7��(���������˄B/(8�.Ѕ4��nj�@�ċ�(܉›���B��7�88�FH	�
	�㛣	Iz�)a(��i:��C�9<�!h��Z@2�#K��4��6�|x𨅆Nte���$��tB�D�r��-?��5��
�ny�A�����x����u���K���@!�	,  ��������������������B.��(($�����
B��(A�7A��(/B7��(���������˄B/(8�.Ѕ4��nj�@����(܉›����B��7�8p�׭'�"q)�%YxX0tC� ��#�L^�pbŖ)#y�c��^��x@��lԀx�
�"��b��)^V��H1.�t�s���	�ar�K�<����F�BG�8��l�ʝ !�	,  ��������������������B.��(($�����
B��(A�7@���(/B7��(���������ʃB/(8�.τ4�����@����(ۉ$�7ވj	1��B��-aM&��A �E���F�! ��)H3n���0e����jP����#!ݨX�B
	9���#	vܤ�#@��5&h��)ʑ�Q�ܢQc
�%�Q��8A4 ��C�!!
s�|�`���j
�� ���x��
!�	,  ��������������������B.��(($�����
B��(A�7@���(/B7��(���������ʃB/(8�.τ4�����7�@���B`J57�$��$)==;��L)5�
�A H�C\x�fh�� �8	�*���"�#!m|��9b�{��H(ul�P�G���"C@0h�䄠	�<b�A���$4�S��(�8����0$"�-c	8�$gZ����K�n !�	,  ��������������������B.��(($����
AB��(A�$@��(/B7��(���������ʃB/(8�.τ4�B��ƌ+0k��@�ۊB;�o�$��$YYp3콢�C�����P�<���Q��0����p��!�`=*UZ]Dأ*&�p1@͏!Ä��D&M��( �H�R=x��[#'M"�H�F�,uP��5\t(Rċ��|(bZB8
.$X�V�úx��
!�	,  ��������������������B.��(($����
AB��(A�$@��(/B7��(���������ʃB/(8�.τ4�.��ƌC"#��@؆BxVpp�$���BQffeo���btI�%�4���Q�\H ����&�Q…�!Ҁ@rQ�
�8^�P H/o�,!f�Rb��%��G ��\���!C�P�������i�b�C��#R�-���0$�V��X91� 7
~��K��]C�!�	,  ��������������������B.��(($����
AB��(A�$@�2-(/B7��(��9������@P_ÕB/(8�8Ň4�.$B�Ȋ$_"��@��^vv<<e羢�3��E�_����ʒ���x�`Q%G!"�&9C�9Zp N��HT��8����  ��5zcd�	Oy2��M�	���K�
����y�pʆ�5��8I���
�����'/
D�����ݻx�*
!�	,  ��������������������B.��(($�����iM?B��(A�$@��s=)B7��(��;=F���Î8I;eO�B/(8�8?l��4�4��߉,MLI_��@�� FX�00H�$��·!�A�		DQ�
dȌaQ�@,!D�8S�\$x�n�g�H8�s��!�>�P�΁<	��G���ؘ8���
0�Z�i�#" q	����x6R����Pnl�@IF��ڤ
$!^
�-dv�ݻx�
!�	,  ��������������������B.��(($��B���-M)E��(A�$@�Y:VB7��(��pZ;���Î8Tpg�B/(8�%[̅4�4B4��isdK��@� 5QQx�("�"t�(T8C��`@I1Ѧ���!�".\@3u�F��Q�ȅ�<?n"�-�#o�T��B�p���*^b<@s@���:�b��V�l.����ld(pc���)	 �a���(p���ݻx��]!�	,  ��������������������B.��(($��4B���-PU��(A�$@�fVe2B7��(��G<gV9���Îd<vu�B/(8�^2̅4�.4��Rbaq9�@
�]]KK.("��;c&�HHAE�0��<Dp��HL)����!
�Q���C$��|t�C�)���dzG$V�9�d\�!n���i^her��  �����M���d����0�۷p��E!�	,  ��������������������.���_MR$�SIx%�*JR�nWnDd(A�$@�N0nvhNm7B(�Ɏa0h<���(Ύ7�>�B/(8��4��؋�/GsN�@(H$ Ϛ6m�a���6 ��|�8�X�e� &�P'�*�c�E:PJ�BQ�D�O."QN�S����I8��tB�w<tP�Mg�P��@FAn��H��7��DvfZ0�ܻx��݋)!�	,  ��������������������E3
��B!�t;:G�"�x;=&�4\)*�D�$@�X26<X(B(��*0���(Џ#"3�B/(8�$+1�4�
����B9%�2��DCT��DE$�Q��E�,�IT䂍NtPTG/�(@�i�#Q��/\"�n"$n�&�G7��8{!�瀑͞A��6g>�P����n82(_K�(��4$�ڵp�ʝKWn ;admin/assets/vendor/colorbox/images/controls.png000064400000005515151213255320016105 0ustar00�PNG


IHDR�2��Q�tEXtSoftwareAdobe ImageReadyq�e<
�IDATx��][l���7���56��`.�nZ5m��.E\RZ��m��R!�S���[D�����p[���I�JSL#܄�!�֡�@\.���6��a7����w�3��������,�IG���7��o���3����LMM��<؁��S%��h�9|}!�\����L4����d?�
ce֬Y���?��^��#B�i!�[�n���0���L��������i�…3D�\���uA�oF����U*CT�իW�
.,*��,��{��	�eA,]����*GII��q���ittT��CCCI�H��"	���
-�"�;�H���_��D�
/)+���\�ɚӤCXw'�hdt��n�2@�K�,1Łc|>e��irL��P($�o���͛4��oڎy����-�'`��WS�sa��
%o4Gu?�J�ɧ��)
G"L,@<��ž��z�Of��ɱ�a�
s<�"�!EC��hn�K	4��ʇG�j�E���R�5\KNV�i�D�/�b����2z�t�f:mbE4��8��.
��xsjq ��fG�?����8l����Ǯ�Q��ν��uG�<y�ls�>s�}�������q��v�.]�D��F5�$��ǡ�C-����:vT�,t�j�,�م�@LeJM�+W�����773aA��hme���b���iq ֌w3z�O17�~���G������5��QI�Ge�	�o1)�u4�6nd۷oߦS�ҙӧ�˗/gE�̣�Wo��`�y�h��ơC���
cS�!��#�p��G��p:�B���g����moog����Ѻ�T�e����ܹ��o�Nk׮5�!��n���	�fljj�����.������Z#��#6�L�eZW�f
���
��蠕�V��  ����N���zj������/�����2�����Չ�Bg�>��崙+V��S�@�1��aU1�_��6F�+�"�oh�?:88�+SC��FD0�#G��m۶Qcc#Z]]]L�ˏ7ˁ�駟���p���3���M�rTUUQ �E\ZZé��0�a�u��◮�T,*��5�[���z�h�1A V<��޽{��e˘'�#y��J�Ad��oݺ5��4�Q��C
MY\�k׮i�D�������K�¡���
�ő�;�~CK�X��[�l	nڴ���8\&�=n,�Â��i��g�vu�}��������>���Y�ᨅ�ӵz�G��
v�h����8�vp`
7Fs�q��CώT�W�!���]Ď/�A�XY�Ž5��=j*8�9qX�@�7���y,�	�x�d
dǎ
	�5v/�q|���Kk&L�lj�ǡ6OXF9 �D��z��)\;���N���I�3j�����Qrm���+�k��ˎs�~�/SD%�#�XӪ�G|��?��?�`t���!.y���8Z��i(`^���#��S��T�χ�D/j6�9 N�!"Yv��!
̛at`��db%�CV�<��)�P��T^�v=1,r��i(`�R�p��L�'��	؃��9��F���'�kw"��vxH#+���GĎ�'IG0��t�����dp�a��40<"c&!P^^n�SM��g�D3�N��!��+�lB4�8�W�N$Oq�i&`4��ҭ&�񘲵;�H��&v�aX���8�7
! ф ���&N$O�����ɮ/;��Zk%9��v�w������7<�6������N;6��#���D�K&�C��qX[���9i)�p�t�(-�<��1��+G[�3��s�2����}�S@�KėF���o�{�i�����k}����Jl�����j}�S��8�OP$C�8��H�<��r���|.m��
:~�"��7��O�?c��-~���_=�S�\��H�xv~N��z��]ں��ͯ>a�Cm�^���d.�ߚ���HTā@ �=�iaV�j�o��]�1�<.����{��{_�cYc���]��Ӽ�Q����t��i�O�5̡fn� *n��}K��
|Jo�ʔ��Ry3�G!��a�@�߸�����Sgנ6̦G��3��~t��>�����c�։��o[��_���1�pa���]L�2��%6��}�����z��O�����}�42~��$q����yT��2���h�s���!�����A�y&���:��J/�����+G�=4i4鈈��l*��O�eE���T��+��+���b��Y�9?�槥e��r�~i墘bЎPh��"�	::u�?��!�?�~�����N��db�����Jґ��������a�M�����Y�p�_^UA;�����ڞuo
�%V�\��L�8��'O�!{߿~ {�_��<��m�?��QO����x�M�8��]X@��d��x�5��/o����ؐ��&6%���V}!,њAKVb�tZ��8�M���[Ӭ"|���$��`V2��<Z0�<EK�F���CK��h!�±kw|K|� �[`h-*}p�ON���ˉ�#�$w����;�]+`@�B�ԯ�P�;�	%6q"y�Mv`"�m/:tt�$�����iy��‹1˅���B�1 +���x�#�H���^5��	@+�t�˾�kg���zY=s��˾ŰA�e����S9\�l8�t$;�́�؟F�8�ut�y�Jփ;:�t�&;���]e
��z\G;kZ����3M��IEND�B`�admin/assets/vendor/colorbox/images/loading_background.png000064400000000235151213255320020050 0ustar00�PNG


IHDR((���mdIDATX��ٱ
�0�A#{C����E��A���u�$	P����c��p�ym�r�S[r��s��	(P�@�
(P�@�
(�U`��/&��#��7���Ɍ�z�IEND�B`�admin/assets/vendor/colorbox/images/ie6/borderMiddleLeft.png000064400000000154151213255320020126 0ustar00�PNG


IHDR�wXPLTE����ٟ�tRNS��^[FIDATx^��	@���5
l�i��IEND�B`�admin/assets/vendor/colorbox/images/ie6/borderTopLeft.png000064400000000330151213255320017466 0ustar00�PNG


IHDR[9��'PLTEeee��Ϸ�����;�e�tRNS�x0Xh8���: s�TIDATx^�ơ
�@Dё��@
45P%l	A[w	ٙ ��?t��P�>�^oH�F��wz�œx����"�}�]?>������IEND�B`�admin/assets/vendor/colorbox/images/ie6/borderBottomLeft.png000064400000000327151213255320020176 0ustar00�PNG


IHDR[9��'PLTEeee����������ȎtRNS�x��X0�8h�SIDATx^�ʱ
� a]�Y��0�#X0�[P93�C��W�x�W�{2�����v;<���/��U�
����qo6J�W�IEND�B`�admin/assets/vendor/colorbox/images/ie6/borderBottomRight.png000064400000000331151213255320020354 0ustar00�PNG


IHDR[9��'PLTEeee����������ȎtRNS�x��X0�8h�UIDATx^�Ʊ
� ��U�y�X�8�#8n`���lBayCAB�_(y�#U�T���'��=
Z�/s��O��ߥ}�J�vK~�t���IEND�B`�admin/assets/vendor/colorbox/images/ie6/borderMiddleRight.png000064400000000154151213255320020311 0ustar00�PNG


IHDR�wXPLTE����ٟ�tRNS��^[FIDATx^�	� �������IEND�B`�admin/assets/vendor/colorbox/images/ie6/borderTopRight.png000064400000000326151213255320017656 0ustar00�PNG


IHDR[9��'PLTEeee��Ϸ�������T<tRNS�xX8h�0��≫�RIDATx^�Ʊ
@`��.�n�Rc#��l��E-7���~�«����^6�U��z�J^^�k�����q�3����o��}ZIEND�B`�admin/assets/vendor/colorbox/images/ie6/borderTopCenter.png000064400000000157151213255320020023 0ustar00�PNG


IHDR��GPLTE����ٟ�tRNS��^[FIDATx^}�!��Gt,�m�����IEND�B`�admin/assets/vendor/colorbox/images/ie6/borderBottomCenter.png000064400000000157151213255320020525 0ustar00�PNG


IHDR��GPLTE����ٟ�tRNS��^[FIDATx^}�!��Gt4�m�z��3�ĐIEND�B`�admin/assets/vendor/colorbox/images/border.png000064400000000160151213255320015506 0ustar00�PNG


IHDR2�5#�PLTE����ٟ�tRNS��^[FIDATx^��
�0��l�3&��욙IEND�B`�admin/assets/vendor/wp-color-picker-alpha/wp-color-picker-alpha.min.js000064400000015622151213255320021760 0ustar00/**!
 * 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.3
 * https://github.com/kallookoo/wp-color-picker-alpha
 * Licensed under the GPLv2 license or later.
 */
(function(o,a){var t={version:302};if("wpColorPickerAlpha"in window&&"version"in window.wpColorPickerAlpha){var r=parseInt(window.wpColorPickerAlpha.version,10);if(!isNaN(r)&&r>=t.version)return}if(!Color.fn.hasOwnProperty("to_s")){Color.fn.to_s=function(o){o=o||"hex","hex"===o&&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=t;var i="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAAHnlligAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHJJREFUeNpi+P///4EDBxiAGMgCCCAGFB5AADGCRBgYDh48CCRZIJS9vT2QBAggFBkmBiSAogxFBiCAoHogAKIKAlBUYTELAiAmEtABEECk20G6BOmuIl0CIMBQ/IEMkO0myiSSraaaBhZcbkUOs0HuBwDplz5uFJ3Z4gAAAABJRU5ErkJggg==";o.widget("a8c.iris",o.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){}o.extend({},this.alphaOptions,{alphaEnabled:!1,alphaCustomWidth:130,alphaReset:!1,alphaColorType:"hex",alphaColorWithSpace:!1,alphaSkipDebounce:!1,alphaDebounceTimeout:100}),this._super()},_addInputListeners:function(o){var a=this,t=function(t){var r=o.val(),i=new Color(r),l=(r=r.replace(/^(#|(rgb|hsl)a?)/,""),a.alphaOptions.alphaColorType);o.removeClass("iris-error"),i.error?""!==r&&o.addClass("iris-error"):"hex"===l&&"keyup"===t.type&&r.match(/^[0-9a-fA-F]{3}$/)||i.toIEOctoHex()!==a._color.toIEOctoHex()&&a._setOption("color",a._getColor(i))};o.on("change",t),a.alphaOptions.alphaSkipDebounce||o.on("keyup",a._debounce(t,a.alphaOptions.alphaDebounceTimeout)),a.options.hide&&o.one("focus",function(){a.show()})},_initControls:function(){if(this._super(),this.alphaOptions.alphaEnabled){var a=this,t=a.controls.strip.clone(!1,!1),r=t.find(".iris-slider-offset"),i={stripAlpha:t,stripAlphaSlider:r};t.addClass("iris-strip-alpha"),r.addClass("iris-slider-offset-alpha"),t.appendTo(a.picker.find(".iris-picker-inner")),o.each(i,function(o,t){a.controls[o]=t}),a.controls.stripAlphaSlider.slider({orientation:"vertical",min:0,max:100,step:1,value:parseInt(100*a._color._alpha),slide:function(o,t){a.active="strip",a._color._alpha=parseFloat(t.value/100),a._change.apply(a,arguments)}})}},_dimensions:function(o){if(this._super(o),this.alphaOptions.alphaEnabled){var a,t,r,i,l,e=this,s=e.options,n=e.controls,p=n.square,h=e.picker.find(".iris-strip");for(a=Math.round(e.picker.outerWidth(!0)-(s.border?22:0)),t=Math.round(p.outerWidth()),r=Math.round((a-t)/2),i=Math.round(r/2),l=Math.round(t+2*r+2*i);l>a;)r=Math.round(r-2),i=Math.round(i-1),l=Math.round(t+2*r+2*i);p.css("margin","0"),h.width(r).css("margin-left",i+"px")}},_change:function(){var a=this,t=a.active;if(a._super(),a.alphaOptions.alphaEnabled){var r=a.controls,l=parseInt(100*a._color._alpha),e=a._color.toRgb(),s=["rgb("+e.r+","+e.g+","+e.b+") 0%","rgba("+e.r+","+e.g+","+e.b+", 0) 100%"];a.picker.closest(".wp-picker-container").find(".wp-color-result");a.options.color=a._getColor(),r.stripAlpha.css({background:"linear-gradient(to bottom, "+s.join(", ")+"), url("+i+")"}),t&&r.stripAlphaSlider.slider("value",l),a._color.error||a.element.removeClass("iris-error").val(a.options.color),a.picker.find(".iris-palette-container").on("click.palette",".iris-palette",function(){var t=o(this).data("color");a.alphaOptions.alphaReset&&(a._color._alpha=1,t=a._getColor()),a._setOption("color",t)})}},_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)}}),o.widget("wp.wpColorPicker",o.wp.wpColorPicker,{alphaOptions:{alphaEnabled:!1},_getAlphaOptions:function(){var a=this.element,t=a.data("type")||this.options.type,r=a.data("defaultColor")||a.val(),i={alphaEnabled:a.data("alphaEnabled")||!1,alphaCustomWidth:130,alphaReset:!1,alphaColorType:"rgb",alphaColorWithSpace:!1,alphaSkipDebounce:!!a.data("alphaSkipDebounce")||!1};return i.alphaEnabled&&(i.alphaEnabled=a.is("input")&&"full"===t),i.alphaEnabled?(i.alphaColorWithSpace=r&&r.match(/\s/),o.each(i,function(o,t){var l=a.data(o)||t;switch(o){case"alphaCustomWidth":l=l?parseInt(l,10):0,l=isNaN(l)?t:l;break;case"alphaColorType":l.match(/^(hex|(rgb|hsl)a?)$/)||(l=r&&r.match(/^#/)?"hex":r&&r.match(/^hsla?/)?"hsl":t);break;default:l=!!l}i[o]=l}),i):i},_create:function(){o.support.iris&&(this.alphaOptions=this._getAlphaOptions(),this._super())},_addListeners:function(){if(!this.alphaOptions.alphaEnabled)return this._super();var a=this,t=a.element,r=a.toggler.is("a");this.alphaOptions.defaultWidth=t.width(),this.alphaOptions.alphaCustomWidth&&t.width(parseInt(this.alphaOptions.defaultWidth+this.alphaOptions.alphaCustomWidth,10)),a.toggler.css({position:"relative","background-image":"url("+i+")"}),r?a.toggler.html('<span class="color-alpha" />'):a.toggler.append('<span class="color-alpha" />'),a.colorAlpha=a.toggler.find("span.color-alpha").css({width:"30px",height:"100%",position:"absolute",top:0,"background-color":t.val()}),"ltr"===a.colorAlpha.css("direction")?a.colorAlpha.css({"border-bottom-left-radius":"2px","border-top-left-radius":"2px",left:0}):a.colorAlpha.css({"border-bottom-right-radius":"2px","border-top-right-radius":"2px",right:0}),t.iris({change:function(o,t){a.colorAlpha.css({"background-color":t.color.to_s(a.alphaOptions.alphaColorType)}),"function"==typeof a.options.change&&a.options.change.call(this,o,t)}}),a.wrap.on("click.wpcolorpicker",function(o){o.stopPropagation()}),a.toggler.on("click",function(){a.toggler.hasClass("wp-picker-open")?a.close():a.open()}),t.on("change",function(i){var l=o(this).val();(t.hasClass("iris-error")||""===l||l.match(/^(#|(rgb|hsl)a?)$/))&&(r&&a.toggler.removeAttr("style"),a.colorAlpha.css("background-color",""),"function"==typeof a.options.clear&&a.options.clear.call(this,i))}),a.button.on("click",function(i){o(this).hasClass("wp-picker-default")?t.val(a.options.defaultColor).change():o(this).hasClass("wp-picker-clear")&&(t.val(""),r&&a.toggler.removeAttr("style"),a.colorAlpha.css("background-color",""),"function"==typeof a.options.clear&&a.options.clear.call(this,i),t.trigger("change"))})}})}})(jQuery);
admin/assets/metaslider.svg000064400000001072151213255320012007 0ustar00<?xml version="1.0" encoding="utf-8"?>
<svg fill="#aaaaaa" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 255.8 255.8" style="enable-background:new 0 0 255.8 255.8;" xml:space="preserve"><g><path d="M127.9,0C57.3,0,0,57.3,0,127.9c0,70.6,57.3,127.9,127.9,127.9c70.6,0,127.9-57.3,127.9-127.9C255.8,57.3,198.5,0,127.9,0z M16.4,177.1l92.5-117.5L124.2,79l-77.3,98.1H16.4z M170.5,177.1l-38.9-49.4l15.5-19.6l54.4,69H170.5z M208.5,177.1L146.9,99 l-61.6,78.2h-31l92.5-117.5l92.5,117.5H208.5z"/></g></svg>
admin/assets/images/hero-theme-editor.jpg000064400000174536151213255320014445 0ustar00���ExifII*��Ducky<���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 9.0-c001 79.c0204b2def, 2023/02/02-12:14:24        "> <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:0472c4a3-7572-4378-9add-afa4dbfe14d0" xmpMM:DocumentID="xmp.did:7534CD4A18F511EEB1E5D30B7960E824" xmpMM:InstanceID="xmp.iid:7534CD4918F511EEB1E5D30B7960E824" xmp:CreatorTool="Adobe Photoshop 2023 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:5a61ef52-c6c4-433d-927a-7d9968f49e76" stRef:documentID="adobe:docid:photoshop:8c40643f-cbb6-aa42-9b4b-1b1de6c0f722"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��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����		





���?���	
!1AQa"q�2���BR#��b��U��r��S$T�Ԃ�3s4�%��Cc��Dt�5�d�E�&6�V��euF!1AQaq"�2�B��?���1� j�5�@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A�PD� �� �� �� �<v�Ȝv�Ȝ �� �� �r	U�s肧�
p:�A��$�o�d�a�PLm�'�{G�PK��?�����/	A�~����Z�A��A[��~���� �.Gj
�N
�%PX�H0J
� גz ��,��.wr
����3��-��Ak�,m*֟��]� ԓ|E=�4��PP���7�>R�in�r���A�����h�A��n����ًz�v1ў�h|X�H/�Y]7St��ޔ���1�c{8��9�48 �ێj����	������������������������������������������������������������������������������������������
I����K���/��m�-��t
�1��e��
i�?��e�m%���_�PLZ��
���@�{��@�����u��@�����ژ����ߵܮXCnc.o�c�7%����px�փI�[w�a��

���]T������������������������������������������������������������������������������������J
�� Ӟj ͥ���e�����Y�Nj���X�N5q̔2$�4A�3�B �b:4�$��B�L8qo�y���"�+�Ә(4$���i8��.A��A��U�A�
I�
�`3ɭ��r�=�!��.e�;tN1�s�t͠,dzA�rq�
W}e��bۙ��	�����;�'����
|%v��I����Ǜ�1?���NOs=��ܸ�[Y���peէ
��h�K�9��EL5�A� Q�A�D�nb
_
<q<=���+�9�Pq�>Lo�d{Gj
ؤ�A�҃(0J
%}
j�Qsqϰ ߑ̶��,;J���lo-��l%����C]#��#Y�!�Uk:�����D�K��O�;V�owM���o��Iu�!~$�xDz3��{�o�����W����N��q?���\��@��7P4�q�W�^�2�(AV�ב�*�C��i�ù��h����i��5m�oF��yA�p�
	m�`�n����
�$�Ni�7�2�Ș�e�A`2���������B������Au�ă�n-� ָ��r@�_�o�A��A�҃(>Go��̂
vݞ�7�n���O�|��~��d�[��f�ʾO$�>��c��[��f��x!<�����hav߳xۨ�pNe�?Ҽ&�W���+ޫ�R�����[˸�SZx}�W��OO,�>�^b_���8�M�1����<қ~�`����n�'���K?�C��ݵ���3��+���iJ���.�kaݶ��Y
��x�#�O��r���?)ڗ�n.��kIF�4���P�	?�xަ�-@������T��^\�^Ci��"�AQ�A�S����,?�A?��S}�XJ����o���P>۟�M��a�*�s����,?�@�n�7�Ň�m��������T�Ҡ}�?����T��S}�XJ����o���P>۟�M��a�*��7�Ň�,��"����[[��_&p����St���dj
v��3_�}86w��`���f�	�,�e�^��� 1����bf���b.�S�t���RN����h�_x�W�g����u�l6�8�
��XW���<�H}��~�������͟����N����9T�s���6i��#�?���oڿ3s��?�?���.���8m�U)_�W����O<���]��j�����l��<�>�>`~�ڇ���Ÿ͖���_��ڿ3s��?�'�X�z.��_��f��6O4���=}O�?j�+�F�?�	��<����
�j̊rnr���?�?��,�������xO����K'�G�Xm8�����B6g�O����I���xO����H~�^`S�Oګ�f��6g�Ry��,��;@44�sSZ���T�l��4���^`a���3s��O���?ޏ��?�W�n�'���K?�E�	6H��nq����y������~��������y�`�������H�J���0�ϓ�(��_����C�cs��?�'�V����^C,v��
9�Ep��?�g�?�'�U����I�?j�8�M���|�i`��z��i�����?��)��_Q�~����6g�O���қv��7?����<����I۶�֟�ni\8��6g�F����XmT8"�΢��#*�l�ig��z��~�s��xO���G�o��?�m@��7��W�s�<������ՇM���\��4�ϼ�_��>�ګ@�\6���.i��z�������	����yg��z��_
U�?�	���m0>�]zO��)�b���͟��������m^�n�Ÿ͔�J����[��f8�/<�����	��_4��yξ����~j��6O4�߼�_U��;Pc�|��ҤTx�$�l�i���M,���y7?����ia�y��
k���C�\����!?�+��y����k�h>���6g�VE���J־�kdd�=���:��6k�N���i�j'�����l���)E�����lv�0��
ɧ��͟��[����ѷ�e�4rn?�)��_,���b_\a���$�k������n�F�)��O4���5�S:a��i�G*�?�	��_,���}J��j��&�!����ye[��}~	�ߵS����?��(��K�5v�r�7?�����/��y��?�EOM���A�]���
m�Oa�79�hS��P�z�0Èvߴq�����B�%����m�G��9�S��P?{/1@��v���yY����<��k����w�k;�=ב�l���㝯_2IkNP�(��
gV��ͱ��XH^�yihs�ө��:���dc
�T��{c̃�j�T/���G�4��f	����:7�<�ך��ʎ���f{��3l��
Qk9`
���W�y	����n�d��Y-���m#�%{J��5�����pu\��_=�F �^Q�߰��]ǁ��l�[#~�ob�Iln�����
/-���Ϻ�I6�{�D���VL�+GP����@h$�

�طI%�l�mo����-��R� ��z�o���GuH���58�14�@@@@@A��?��?����Tr��A��l�{�ݮjﭥ�}xkae}U����I��î��9��9s�^�XE(�8��_V=ڌ��V��Y���������)��s�M���`�w~U)�0���@*@qƀ�x%4��ܨx%#:xS�,5��Gb�hn5��<�� Ӏ#	��h�5��A8m�I
�L��G�iR)P�P`4+���KcA�Z28�;�Ⅴ�6�vV������I<EF	E��<
|ڃ��D�9$QďBP�X�IҜ(*3JKC�s��(�D`�F��”�a�Ux��%	D�i��]�U-���i1�k�����5���*k��I��H)��R��4���O�v!k"���aG
�aTa�AJ�YV�kLa�	.v55��ׂ*4�lm,x�����)m�kJ�;R�d�J�?�E�⁒����0b\�Ҟ�TXV!f�\�-.\|�
^j(hPG�ԅ��a�(���im)�p�,2�^��D���'�4�P'ik\E$���?b4�[�#��0�]e���jq���,{�D�
SIE�:1��D�gIp|�f�u;����?Qj��[SZ�@��Խ��s������|�q�%�l-���\�(�]�5���p�-5��CUf��c(�2G4���&�#�I�T�d[��ƶBh#��?����q�msR�}�?m?k�����}:q��\��k����y���%E�
F&���(�6�1�
v�j1�Z��jMY�aDekg�ZJX֊LU�ɡw�)�Xۃ����0[Cwt�9����OHw��e�wf�D}�k�,� ט��?��_��A�ז��tf�g��h��sK���]��I	/<������,w]�^���z}�L������dm��<E�x�ϝ�J-#������uwR^�A�1�DS��It&�s��:ck��҆�A��M�s�U��C4����m5�ٞ���������>��E�Rt�d��Ik��M��n��A���~kxhdr
�dtKn���{�ŷQ�B�+����0^>v7�WF�lHs����eTr�`��z�h�t���웳n�ˋ�$<˧�r�u����d�*(�I�]A���W���X�e�p��q�����as�n�K���1Ω#�4��.n�Ψ�.���C�]X�ZI3�m,�5�{5�\NY%a�Q]ꝿ��o[�}��Ke�dy�p�WFk�%�z�-���}��̾�hl[Lo&��j��0|�NOP�ܟ�U�O��*9����y���~��3�gsغ�tmի��no'��W2���/n�캁��+��j'0��f���(@�q]\V��֝]���EZ��ݰ��rKe��]���b�JK
L�|��Ja�k�w>��*���	�H�25��O��qջ�n-�$~�@�X����p�:�[I�]�ޘ��[Kd,qn��A�Vᙉk��^'2U�g,4���F�I*P��n��h7���{.��h>��.�6�A�Qd6sO/.�,�F6�z+6\�Z�ntOᖣ��ii��˕zE)��-��yr�kyf�X�8^�kr�tNist��p5�3c����(+¨����;�e����N?�J)kMg��^x*�"��c�����B�]Y_@��i!nA�c���	p�-p1�TAu���1��~mc\~T)�� ��4/��T�F����Z��tA��sMi��#�V(�a�on���I��B������K:=>�.K��C��p�]�M	�Gg�PE�9�!�58� �
̊�r�)`�B� ���Ң/cb�#e��H���MPVZ�%��> �(U[KE�����ˆ��
x`
�C!��#
9�4�VF$����M%�ӗuJ���=o T�Z5�)m�"x�skM+�
lq��k
��S�q8W,f��D�6F�KX�XkMcU
@�`{�ZS�������S|h�&�C�>6�զT�B���[SWjuA(���3I>�U1��KY��
�J-���8�5DgF8P�k���H"泖�H&�P�PE�L���ΐF������QU�2�`��a�ҧ1��:��TER�!�㦀8�p��`�Z%�%�i-q�q��*R�s(*6��(z������7?ӧ��@@@@@@@@@@@@@@A����A�'0��Ʊ��*/lMѫV&��i��`?�j��mh9�UF�q5 ^�hM��x�Qf��~mh�%�����a�/�.�٤���K��������=+�4� ��lg����ȹ��!
f�:֗*CM=6�����o�H8f��A	7N���d�vocH-k���FT�A�a��or�O����kx�^_4ng.�FQ���UG'��������*�7.����ug�ꐲH����Pa��M0<2�ɢS�@$�j=��v�����px����8�r���n����'s"��㇩�޶&�M���ji,b������?X[~z?��͓����P>��?X[~z?��͓����Ph�sowԢkYYqvNd�D�Ε�4��!�G*���'����cw�v���K
��;�9=�en�^����B����$�O��3���b���6K�}��kK�$�vE#�l��>/���.j^^N�,��c�޶��]\E�0�$xi>��V���x�}_acicg��M���E�˙�{�Y��ŷ�鑵��Z�#E#��zt|k��k������
�!�q16#$�<
@�85Uv��c��$����VE��6�d�;���;�˺�hf߾����K��q$w5�Kэ\8o=\���u����:p�q-��?��c�_K�vۋh. |34I��� ���E}h�kۋv�M�W��v����K���"�٭�I'c&��x����sʴ^}��f:1�{}���t��c���D�V��J&>MGG�XY��{sV�YY���
Μx.���\����(�6�(����;���[u��ִ6���y��-$Wѥt�cp�:/n������k
(�5���*�o�&#��\8���}g��k�C[;[1`�8�æ��:Î�\�}�����:`�S	ͭ
�өc�Z�;eͬSB�g�>)G1�6�G{h�/n-�u6_whk�^��zWKm�Zl�:v6I�Ĺ�NK�竮~ꍲ��b�t�y��bwZ+���LOU�ty��]��@٤��$p���ˌ=r��!e����������=a���`�����I�)�r���44
	��|\jsg]Z
A�����b�0�j}��D0+C:(qJE���dF>�����屯�=��Uh�rJT	/-�Z0Q����Y)L�E� ��xS�U��F�
:��K�����P�6jpɠ�b�֔�<�a�Аi�J���=���uj��A�?��R�XOځ‰Ikdup;�	$[V�����q��d�~�JVa�2H��NNq�}e(V �Ҋ��IĎ"b��0t5�D�L$���J����9�j�8�ĥ5l{��*�N�?��½�J"Pd6͓T�΅���Ox��M7��$�N�t�h�ƍhh�E��1���hI. `�I¼V��G�g�O�Y^n�^7�냨���������������󝱻Hp�uw���.k
+�X*6���WN�
�3KCF�+T�ch�	Hَ"�4�>'駫5�KZրp�x�IL�<�iV���6�Ϻ��z�,���P��^r>�[��3�t�H���Ί)Y�F5�.�������X��ߑ���_�oȁ�v�Z/�7�@�;o���� }���V����>���E�F��gm�բ�#~D������"���h��ߑ���_�oȁ�v�Z/�7�@�;o���� }���V����Y0��1F��q!�4WԂ/A�*6ᄇ� �~ayױt����,�G{��E[.#l����Y���κ�Ï'4g�|��g�}U{�;�ۥhub�����Ng�_C��3���s�����d��L�psp �PA])����B���lfu�LI��$#�i{����^-z�}%�ϱ�to0����!v��j`�'S����E1��w�ጹrr�:�ݸI���w��ͻ�jغj.��la�'�%3��*�:����������]Eywp�/ۛy0m���c/�>��H[�Rwے���e#���O��6��pE(bw�&|({�5�o2޿�[�Y��ۯ�0
"���i�D�?�N�#K�.&��ή�s�d�+���l}`v�vY��͉�E,ZC��4�h¹o���n��N�n�nl���h2�ᛚ�(p8�1K;�[���&:6�����V�ܻS�����-�����f�]����.3�u����)�����[�^\u������Ƶm
�q�m����VF`Z�Ng6DӸ��a����[�Ѫ��q�K}������y%��9�
{ 7к�i�z�z{�f��x�Ͷ����B��=�:ŵ�S���
�m��F�jio}uVc������s�{�/s�=��ӛ��g�}�l�"t��I�즶��m
��\v�wL�a�������C&>Jk cJ
��x����-�{�⍯��
<ѭ5δ�.�ø��
�6�	
�E5��%�\g���p�A�M�8V1�8���`19W�
�qL�V�()\����Jf�{4�
Ơi5�)Ym+R+Ţ��RRX#fY�Zl
s���$�CO��cQZ�1b�"Pp��t��&7F�C�\*�#�Zdo�[�
��B@�h��i9c�".d��
-a/�iSR(�7���@�
F����+
���'�1�cUH8��(#�\�V
��,q���T�0�O!��
6�`�J-�0:�)Lh��*h�
`J�[����s�Z(AJjҎ��bj�x���������"��d��^#�ƤW5��QUP�F;:��K#���@pp@2�!J���iVx�p$8�P=+-[ZXǹ�{M�,�T$mΕ��Z"Yac�R��_��j��޾�@��?�ey���x��B�;�����������������'�#Z�O��]��мi�!�濂�i�^�و��T��c�Hi.70b���C3+��R�;qj�L��2���)IkyZ�N™v���i��6�b�Oy�l���@?�y=��K��OY{���~��/��'A+��K8y�R�����c�;Pj�����"Ql����?�(������G�E��}=�z?��J,������"Qg�_O^���?j�w��Ȕ[v=��H�,s5ѼU�����_�	�<2�#xq�ނh0���Ք����HI�N?"����V�W�ճ��I�c�v��h��k1�����n���-i��:*�b���xt6��� \	
���Gv*���q#��F�x��P`��D�(hA�e��$,�k��E5=��8��ʙvQJjܤqݷ��4�(ˈ��CG~�I���!s��6� ���8]ڴ�R2���̌U��j٦���k�*���QF_#Z�����(C����u�J4hqi�ГBi܌�ZPH�(�O�pQ���XA-5c��W�$!�x�
��D4ҽ�3AS�,�����[N�k��ނF�ٵ�2{2A8�2�ό�O��{{�H
'y����y|��k\�Q��@S����{s'��ө�573BO�A��"��)� ��b
u�;i�Am5J�ZjI.
�W�E�!tҚ�%�cAB ���Q��R��;�� 5��b�Ĉ�-�����O�3U_��I�����A�J+��FLo�U�"�2�1�P&����j@2�hO�r<
q@��' 6-GHq4�z��0'�A��RPcH$.qpY�4�C�(A��D���Pp�����Kh��AMUvv)E�d{m�Ct��s��Z���E�K8v{��j�=� R�-$m�m��{d"u,���A?I�e�%4�_�x��)�������ӯ���v~w5��Wӧ����b1<V�&W1��p�*�2ۊJ�pqǁ�Z�7*��[�W��iv�U�IlڇsAi
'㏭������R�dy��N�R)�6��i��6�������]8uZ���0c�C�_!�D��~�Àpl/h8�д8w��z�rڀ&�fJ	h(���9�N�@�钴5�jnM�-���a�Xף-Zs�P۵������N5���8��d:�L*�R��H)�6���"₉

I��_�wf�]!�nE�ik#�?�`���-��Q�U/��jju R�}�|�]���*
�ތ�XC���	�Tg|-�Z�RO`��T��(1?
<<��S�T��kk��Zj�\����L����R�D2�LQ�`1�	'�����x�	�5i-p����t�ex���K�b먅cq�uK˼�/��N�-k����G4���!�w{N�V�a�[��Ǵz�Xdg]"�P���-���\x�6�Zʵ�$�
A��xО�Km!�`q4�p��Z�I�@��zl9�{�C��c�e�� I'5�Ɲ�e���(ENM�J�23�W8j8i� �
q%����D���$���`��VKEjEb�/hhy�4៥�j��hB*�A�BW��uis�	�*����h	�M
{�	��@�4�Ƙ"!k"-h$ji!��b1=)E�-�CEZ$19�&�?��E2�]À���ӂQL��4*Of	KLH��T4��EI���rAh-�h(1�b�QĪ6.�Y��KM,�RR��R�t֢ɐ�?��G�W�k�����C�rp9���j#$
��Ӑ¨#�&���U`�2��q4��i�����,67��
�����'ġ3���YR2�s���J�Dm�����Ꮱ�*�`�����P���*ڷP.�@�JU.a��mEA�<VimH�H׽�F��'
�L�Q�{��Pz�������?N�_o~^Wa�m_Q�lѤ���'02�-3k��Jc_��#m�� N?�3+��x�D2؍���]'�%��[�F�r�\h���P���Z-���l�$9����I�}wһ�]IҖ;��u2��fo�A�{J�|�����c]��'hs�6�W��?��_��A�y�'LDZE?QI#�"�o/n�M���s!� 뫝�6����+	.�k��5�1��U���=��F.��v܉Z����9�Ot��k*��
�м�����]�{��K�۷�e���	=�Ĺ񆸕%a�V�����?�XY�tֶH�+��u;�
�E��^�<=�+}Q���H�k�̣t::�Z�y�|
��!Ӱ9�{h[�aT��V�鎬u�n�myid.呖/�_��bkP�$���V��ux����H�q@��"es�k-6`���ו�)��ۆ��1w� �_�OQ}��`��]�Iϸ�0� �
B�
�zx������(j;Wӧ��7XŢ�˜��Д��v#,ҁ�����H�=J��[���
��4�Zּ(�����
SV��4φ#��Uء'�e��UM(xӼ`�A�{�Zb
���
�׼�V���գ���9N�X^�w�p'�5�-��M��[��wam!�����L����ne�ui=��r�cx��{T'
�LF]��cLNT��
�,4��m	Ҡ:�Ȃ�2��t��1�P�
����I�I�ֆ�I-hmk�iPV����@{Br�;{G�Ҫ��mp�@�q�8|uU@�b�%��q�f�%�%��+L�%����H�DL�T�4�F
��7�������W��ZZ]��HR���
$i�A�Ҵ�U�V�
��A� �Q�F�ݏ��U�`�֖H���{�QN�i-d���ձ�R?+�("	�?2O�� b�+.4�~"R1�?C���5�W1Q����a�����s$��:0qʸ��eު'F�uQ��	q�~�J��{^*(g�<=
��� �Up"�!Cc����ZF��;QU�����5�A-T�=�kB3�qDe��;(G�Pa�$���#= �%E��c�YUNh$�/����Z4�O_�EG��!��5�vV�¿�VF�da�i:�
�qYj�V��5�A�X^og�ߋ����               �����{O����<
�3*p�iP���`rZfe{)޴ͶB�-��>�>.+B�vq�f�5�=�Us$}	i���JV����>��X ��鋧ї��T��4}k�5A^w��s��o���/"������8�$~���m�Z;ΨM>Pr�f׹D�w8/bi���#d��*�A_��N:��yڬ̓�e�����+]b=:C�胓hkZ�@�A��v���!��A��H�;j/
�db�n4��V���--���;U2�Is�sȅѝ8<�|b����wʁs	]$������FD�>� �(){�j��6�;{g�3�_#�hƊԓ݊����dꞬ����O*ɮ�L��Z�q�+�p�f�/�}ڷ�S�3WVta���c\� ����#�Fm�i�ڥ4���%)@���#:I�I48�(E��{iTZcOn>�T�ieHv��Sj25���޲���Tg�*�֤c�(�K��M��q5T�`�ֻŞ��HY�O����"�x�ո$�'�*11��k�dx���L�3��;_&��L'�M���%��ԉ�s<FC�顦 �O���4�-Énh��"��3�im �j�$�e�V9m-T��.�tp\�+�ٙk�nK��� �T�U�e�7KG��U�*�B�lNs�E9�	�@�A���T��kOZPØu�N��R�5�L)NĢ��-c$ 4i���9�v�$�,`��qJ �a^4��T��x`K�G�B�d8�U��#Æg�b�@�Ơ�B��B� ��k�a-"���!�v�+B�)S���֘|jZ��t�ܖ��9�q��Q´�,+���7��5Z�wy�1[�@)�h����c�{e?؞�av����ԏt����ɟ�/d�{.�h����`<�d`�-F�~�s-�UVit|�H�&�X-�h�żh	���C�)�j��i€bq>,�@j��hq©KL�G;�h)J���(���
-x�wut��
$dz@mu�´‚�BH����AJ�A){��Ʈ&�ȨKk�Pj$e���T��H��)�

�ac�э8�����k�AJv���Jՠ~���u�A�|)�������ӿ��W��@@@@@@@@@@@@@@A��ƃ��9��=݋�S����f;�l�2<B�0؍�Zf�1А
@�й��V�d`���UK\�|T�V���I �F�d�\k�V�N���o�����+�i,2��j�bb�cU6�����ǫ:r�6G]���;G���-�_��q�}^>H�Z��{�Ȼ�Xa�MK\�k�C���n���������b�����f��q�D�`齣�����c?�[Gћ�M���f���7����%�����f��q�D����>���n?H�7���C4F��I�I�'���	A���5�m�3I������q�\��o�����e�k~�c���L��}+��p�K����v��{�ԧϵ�f��y���ġh��q g�ҩ`h#Ȁj\����B�s1"�?d�V�`�,M}H�·�W,pu1�+�Q�@��I�sH�4puXW�R��q�)�iJ��ڊA�(���6���Ca]8�?BQ2����)bVD�zqk�<r>�R��񼷸�F��#�"�"�n�_m���Gw��:D���d����c�ь�.o��*|UD�j�I�	�ճ�hKCMN��x��gڔZ��a�*�
�?SVA����H�C��A8��a��Q�R����S�-��R?S�\M\�$�U�ؒ��jZ�#T�Ц=�%M�s��k�c�B�tI� \G~a	K�5P)⦦�EFE�6���
z-&�K��ӝ8�䅢ZI�"�ֵ�`o�ЌuV�@1��F�p8�*������m�#t��Cc����=����3��^����@�ic�-�+��[qO�m!���:��˿k1���<?=���!�;[�m߹J�%�Κ��3C>�6�����<�l��靬i�����&�� \'S?.�ݼٌ���>RT~۵�|�A&�G2�[�U������"��������~�=Ej71�,�b]7}��/��폛j����s��d���x]��j>z��'��Q�Y�A��,��:Ү�7�>?��w�V=����)�DsƲ"���^�%��KKO�q�¸��3G�:�8��Tz��#��8�(�$�H$��%
L�e���'!�x�B6�5�Ǵ��B�i�N?�QZ��};�Z@4\M)L;{B��8��!�㮵�J-� ��īsH��fU�u����c���������e�v|���j��ى�Ҵ�-D$��pZ�1��5x��J���A�+R4�P�^ֹ��
f�����,���E��"<>�Y����Fj��]u��H�m�6ے#��9�'���\>+���۷/d��L��Xn�|7�S6ky��ȃ����f&��"bb�@/��^(�Q[��z	� �r�j�T� �r
���"
���i�8���m��6^i�%����Ҹ��I�t77Wۃ�y&���yc�����q����{���y|һ2���P�z��ܣ�~iw��ƷH"�짠�Ɣ1���傴*Ӎ�R�Q��E
N-v:��W)\p������f���U:��#C�8p5��:
5��2ZM5`q�-�6��A�らhr�N�!f��+��)F�Qa67�$�8�-��H`�eA�N���)Aquo |Os*)�\��Vg-F��+�.���n�k�}L�x�3�;�'�LF^���!��5[e��{XHmp����W��Hp��	���Bs��(��X�@q ��
P�JKD��� �N	J�V�ŵpo^
�j�ƚ0���N0�:�}���i�J{2�t���PHF��O�7�GnA
�pPe��Ċ�z�����pćV�#G�*+�t���T2;���v�Z���Y%�,?�����،�v���w�ޑ�^��ѷ[6�RK���O8�����Z�z���j}�W[�K~��?��E�i�eyy�(�1 ������R����

�}�`ۆ�?M�z��<��>��������Y��O�#r�zq��>��9�4���|��>���Eδ��o}&'�B~c�=�z����5���r�\c!�������N�@���C��jF>����P��.
��
\�x�R=�bp`Ӂ�.�JH����8�����s^���OQZwׂ45��0��t�I�rYV����fFX�J��S�H&���2!+��h
Gx��t�_�E�M�k��e\�qV���y}��~��/+�����������������Hھ�>sf0��V�Z�esk���8�B��U��P�*p*���\h�I9��V��4-�5�R�-a ��Ȫ���TgN4��FH��K��o�E�I݋k�W%ë5��Ѹ��E^=����n.>^�i����ӝMc�`���%�}�*(si�|�fs5/��D��M�7�B�?n��w)�?ʦ͋`�]m��|�-n��~����>D�h�Hۭ��^�DF�����~e�"a�nj�ۭ�9�q� ܆��hdc�������;�6���3�*g.;��44�H�8��� ��6�LC�᏷�� �ϭ�n�۵MIod�,X|o?I�E���Իp�O$�r��C�.��>��%ܷL�<
6�Z��c�݊�<|q��|��u7-ApIĊQt�6yF����$�x��)�@Æ]�6��+�PG����&F�G�U����# uQ
.eڀ[Rxw�E�b�ؔ[<�!���=�v֋*�a�@n�Xȥ+2�O8��2C���B���-�L)A�Ք�p�0ù�00�ڼ���

�6�X�@uH���r�X��SZ��0����k#�tO5�F�UlxQ�S�F���8�G��[!�;�b�2>Mn:��qD�e�/8U���[n��-n�#S�S
)Il��Թ⦴'��(����
4E�M��D�
4�d{��P�����47�u>$�Y��I�{�	B����O+|����
i��f3�vv3��^g�/_ܽ~�q��r-��(�YL��/��̕��8�ljAcc,A!	h@Ѓ`�h+tH1��?TN�kNG�rN�7y���M�-��A�������	1o�����$~�j�؜��N�>��G��~����qWX�y��&��c�:I?^�j�[����DZe����)��T�N�i���A�H�!
e����%��|܇is5+V�G���k�#�����ړ�j��1�\��
4pp��&�Z"�#W�Z4�E>%f1�萂���.i��
=���qq<�Q$�:G��9�y.%��*�O���ӿ��W��@@@@@@@@@@@@@@A�Dm�}x|����jsiZ��m���j$_ug
d�"؅O�
�+�&��ƌ{IZCB�,pn8P
���7Ø�'��AMhhiTXs�#֛�J�sv�5�HA����)�滱��.\��uv��OG�􏘝9�0�(�-�>�o�����O�{@_#���>~C��;�\�c	�����\�#4{KOz
-�_~������oh�����(�j�S��9+��V��m����~5�Wכ����w�S.#1�$-��q �:I�!%Ԯ���n_��\���bm��'��e���09�򸱀7��M*��N
�C����q��qಭ�E<��p�G�e����$�H���ĜPy�ZyǷ��K.��}{�]w���p�<=�%����z�<���GL�b��r���g�\�uI+�I���y�f*?S37*�m��r��1+��FycH�_,w��Y���g��	�r[��q�{k^�W��ª��x|��1����_Ơ�-����JɎ�É���f�U�}iB<��U�[�q�q�ÁJKa�F]��Mq�)J��O��,N�؊>&����2���G�֣�9|�������\i�=4Ec����Y#Q���X �`A{��kU�e]PZx�Ub���xkZ�7��Q5��:
*2
�[����KCH'���iUO���KA
5c�@�5i4�
s�QJQ�4����P�L���iX0�1$TQA���8�H�N9�(��}(
A�v�E���;�.L]M��N�����p���0qϱx=����pq}��;�6�WWϐp��n:8�O�Pl6��6}�;蟀����D�yo�'�(����蟀���O�PD��~���D�O��D��V8=��sq�������K[���m,�'��{(A�$H��͏-��]�^X4�b�q�yN=�@�z���������tFCF���5��8�!���j$E0�.k�<�Y�n$a�䚢��Z
2�B*.uZ3׉ �eZ�Z]$�dM%�!�cs$�d�J���ლk��
R���G�}��i��?���;�}��y^��L�S��*��j�\���
+��I� ⴋ�� �p�L�Ʒi�^���Z0����nO�����*JQl����
�l�p�x#C {$a-s
C��)0��}5�TmMd7�n��%$Lt�������V=�g��6_5�;t`l�o��TWcKj�YOIÿSy����5�v#g�n�h^�#>İ��Aj�LL|��ۈ=���z�Y���t"c�40i�ܮN�f|:��;U>m2���+���L7Z&����
��4ОU�v��s�~�Z�p�so�`�4�g�8��	��-���3��|˧�s�v���0I�L2�Ն��Y�/�z��O�G�~�c��z�����ݢ��h�#DY��w�D���|C��ϭ|�Z֤
���Ӛ�n(���.����<�-UD��A�Y�Ub�#��J62��0o���PȎ��ЎД�:)�`8��TiY�a��A�!o����������
g�"�a
q���p�Q��	m{s�H3=�XF��ռ	�4Q�n��8*���F��q>���S��s�ji�%F�1�P�)+c����F��4�i\{V$�����=�+Pj
k�Z�M�5�ѣ�ڇ��(ULu���]jm��#�n&����nj�Zr�TM֍1�P��9��
���Q-wy59��I�:!�+Lx�;Q-Yi&�D���R���C@i$��s��G@-�iD|
k5.„8׏pA�#�#��Q)�|��W�7P5�M?e��[��+ኽ�#��{������wO��mČ���@�ƴP5�@2�_!���������A*      QHA51���9�8b
	�{f��5�����9Y�Û�ZqiZΦ&�5�G�zn���띪��wV)�H�jǷ����}Ln5���lӊ���=�:���${qTP���A[�hi�$�:;�l�ǒ�� �VU�W7�ӆ ��ޣJ�h��$�W�_�,�_��Q^�[ϩ��?���;��y]��1�%�_5{+�v]�L�`¹�Y\���E��{V�]洒�1EY���
e���[I���• Ʃb��L�ZE��b1V��
Q
\ȃ�X]Bp��G�)�x ���?������N��R�e�ז�k��[y>�Os�����L�Ü��θ����?�-���=q�W�~�#�q���]�
W�ma��0.��n=��Q����a�i�
���z|��w�q�]]շ���.ne�G1���itϯ���s�mOۈ|/�W=��5.8�}%u�>��� vƒ"ރ�T����r�*Бh��p$|I@�P
f���ˈ�|5ASAθ�K+Z�Ui#%,Hç�p5�Ԗ1˭kZ��0��uF=�
��Qi.]I��3�A[��C�J�8`�"ZN�|%)Q埆�R1�4J���@��j�-���h=��h�d�!�
jC�f�a�V�թS�e�����W�h;I�����Ə\��ZM�,hf�(ZO��/���:�@=JUf?u7�E)�U>��tl�<$�j�^��pJ��:�V��2��hI�Cu+��)�&��GE��i�k��8%"m�W�M d��>2������
�p��U-i����E�O`{����;�Ĝ����wHlV������pp��M5-��h_���V�|X��O�ާ��?u|E�Qc"����/c�A�WF�L��^�u���<q]Ic��š�2�־3���au��TO˗,n�>��\�V�("B
���1P�ɛW�89B�ߣۺt�w�VV�i���j����R�۩�ˇ>.-�Ц|
�/~��)[�0
I
^k�|
�J\Ǽ�p��872�J�Os\�*�
��
�%dk�W�}�)�������~��~������+�j��W�N��[MuXZEI-�u�F4��ĭc�z�2��v����3+�h�+I�1��Z�t���zR��`�Bҭku�TM��OR"Ma8���pD]@9�+DXI���p�Ҫ��%A#nE=9.�'�pmh
sY �rjNcZ*b�*u���I�>�T�Xc�~��@�WA�(���n��U��-XA ��BE+Nꥌ��@t^�v\D�9@p�b<�W�9(դ��p<[�B�0@Ҟ�їF�܅{R�F3�EQ�	JkPG�-NH�,e�j!�&�L]�斈�G��HU�G�9C$�k���	ƃ ���҃.��9ALq8� �8׎H-lmax��4+#~3N���@�E��4�իH���
\�֢����p� ��@���*Ƒ^Ħ���*"Q��T��`	�U�F��	8wQB��G��/�UCA��A�YXA��<�J������RZ�f�ٻuu���]��7r�2����>��;q�����=��y��w����#3�|�}G�-�x�wM[6���lc7f:fV4{P���g�������<��Y������z��������[m����a��m��f�DA�ܶ��qqi^�u33�/n1����fa��E�25��A�!����v�#{]���8P��$H�/��)v.��6��}�bȜF&7x�w�L ���wf%󷚚q�ap����e�ƴ�I����p�YHk�1�G<ZRuH4$S�أJ��"�0�=���.�|)�����������e�w|&��}�|�^ƭ2،P��j^�d�����Zf�k&�g��fekOqZI���~w�{O�ѱ�	��-`�
��R��B�4�+�]��#AJ�P�A��po>/�K-��xS�,��:qTK��r	��2�bʬ10��SHĞ%��b1�%���ǽK�h~2�9�
�$�֊Qաw��0u*F8��Y�jH0a�����
G4-�ƚ�8�"�@q�k¹f��������Cqh:�䥪�'����ٯ�f#Z���G
Ҽ)���1�h��K(�A}Z�ˊ[����mI��-��n�WÖ'�,�L�ִ�=]�iA�k���T�ȊFƇU @8����h¾�i� �+
P֔3�ֵ��庢��E��k	
re��f�솷�F@�Vĝ&�i�RJ��8��E|����ƥ��P�H$Ӂ�9%�����"Za�M�I�%�x�xS�QS�FhP��k•��¥��av8xF@pE�{#eI{F�
(I�jJ��|��[o���$}e�Z������D~�[5�R;�;�´���=*�˴=�ﱷs�j�:&I�I7�,�m�Ymp0����Om
������������� ����A'��➱���m�~�H�#���-8�n�ϥ�4z��������G[yXN$��y�N�U[�I�P�nf���S�9�[�$yk�lb�ڟP<"�`y�v1�R��r�X^Og���{��>�d���T�jp컗ڇ̕�`-/i�j���<8���2ۍ�A-�ִ��G��-�G��U%�+OV}�l�j2��!̨$���Є�`�0Ȟ�2:p�r*�[3�A`���E�j%&�U�̫K{�N_Ȱ����
��d�la�bX�c�� �G�.d;I��5�p�5EHA�9zFZ�:��َ+B&6ҿ;����P&����aЊ�E-)!���G�K(sk��Ȕ���Ӵ�ؖS:�P�=Ȕ� PW#�Z� ��)@�iL1+6�%�v�X�(�_�D��9i�YL6 N5����4&�҈0��u�j*i=��3J�0 ��T�؀'MjAkN9z(��c5
C�JIFX�AJ
~%�Va#�1�3H|D� ȇH�]�U8cD0�9�[mN�^E�D':��P��F�9`*2��Ue��|�Vʠ�bpP`�mǏ���%��A�%��ri�Xe�E�d�+�+1ũ�҇6��E���@4Ph�[�H��IW��m���6�Wvc-e?�����_S�+0؊�T�ertTΡ��1���|�B�������R��h�����Y��O�����>T�����Vߝgʔ�}?����R�����Y[~u�*P~���+oγ�J�>��em��|�A�G����:ϕ(e�E�����ؒh5��ZP۹�����s3!�P$pkjrĠ����Vߝgʔ�}?����R�����Y[~u�*P���`�cm��|�C^N��?X�~u�*P��A���Ӹ[��P	Y�>��ռ����;;��O�H�0���O�?���G��~o��Zc�Nx,�����Om*3Â�j�Ӑ8gO��Ok���ԟ�/�������/#������������������0*jN/���s�:gu�-�-�l�]ćS�826��h�ة��b��gSP��ӥ�.-�ݑ�^\�0�pݜ�\Li�M�-kYB��g�z��펐�͎M5p!��]��e{A4�-3m�0洖�����ZF�ZF�8�����Av�� V�$���n�D�c��,X#ǵ-�"8Ta�[I�,BDd�2 ZI™(3��&�c������hq���ȏ�%
9b���1���,��ie$���K�q4����6��
X�Z溹8eUlc�=)c�g���F
K���A�֧3��P"��
%��1���K1
c��ʒEMM1K1����d;�`EC�p�>�%��<�a��V�FM$%��\B���Μ�I̥�h���R�ܔ����wà ㏡;�I�����;�I��F�4��j{T�@��@}�b�B��K�u0i�_�����h$Pg�Gʖ��O���V��'�	$�K�pC�=�����%�-',�X�Z4����xw����i ��Ɗ-4�h��J҃���Y��БF!��
�c�4�7/��*:~��O��R��ֵ�4�
0�X�(���AbEH�#4d�x�2�5�zew
k����-p ���bK���_���q�#�ӊ���y(�F8��X�\����xi��hi��42���\X��
�G4ӈ9��D� ��v��wۥ��`mŜ�	"uhhj
E ��Φ&�&"b��}g�f�a����AW'Ӟ�� �ҽ�^�OM<��2|3D�G+r1ůc�`A"�Q.,P��g™��8�#�3�n�,
̫�uGm��'�7IG#- hnﴸ�I�^/iu\��+__ho�bkN��L\<�OhҹWֻ�ok��
����/����}��y���2�/��V�Zu��Hn�����Y}^����'�7Q�#�\�]�o���]Ӭ��vk�k���}��mt�m���^�����9��>:�ϋ��1S������T�<��-�o~ݹ�	��-2F!��,ps|Lc]��^�z���GW�|��Tˁ���	�]�[mV�|lZQ��ո3Ax`�H�<�[.��(��4�M)�QrhOb	���R��{H
�I�7�cX�s�(�h��XZ$yKm1hKlt�ԥ��>�#�����X�ڀA&�z�g��5�֡L�~)��0�v�B�0��L���A�(䁂-7e���ʅ+1�R�=Ȕ�,)���`%�Sҥ���pœs�YH>�{
Ք��%,�ۚR�[4���D���?pTA�҇�*�"����>�
M��A�
H@*I�s�����a�=	e�_@��
%���E}�=$��˭\1Ήe ��
kD����EU��9a�PV��e$���"�(���8g��r�5�h#<RIj�=�4w�;@5�bZ�����cH��×Շ�?�?�e߁HW:ǰ��9�9�A���̶���?mz�
�������5�pE���ͦH�ZZ���1VҚ�au6��ۦ�c�
��n��,d�ѱ�ǹ�t��9��+v�Ymi��ZKK}�.��!�v�=���i��t-�l��s��2�s{���Z�U�\�Esi�[oNt���1ZM4��\��mv��u<�������
Jî��]1�oum����%���k�L��s��`u�VҀ���.m��֛��-�����������l=�:F6G��p��Tb�R�$=%EFQ#�{cpd��1�j�L+D�׫a�M͵�:ȝ6�t�e�����::����v���k.dl�
��J��k��pmM<*�������?��%Q��~�Zo��;m�9�y*�a�A+ϩ ��꼸�m3>B<Ξ�t����p2��u�?�y?��n��g��
�n�_
��S��˴r�0M�ma�[�2i�h�Ex�m��i���Menw��[[b�Ow��x�9�i$�}8�#�_�۶��^�=��t��+�I_f�bl��k���	5�2pIXz|�+�o�=:�Xy�ӽ4�C4�����c	���;&N=˷��9�2�>������0�i�6B��4d�i���E�8��1P��}�m=�yܶ��
��Q�
�P�:�3���g�oY���bf&�ϟ8��n����o�5�|~|���Q���=3���qf��w���d"�0�և�A㇫��(��G��k�s?/x$�[��>�m ��K��x���������               ��6�o�M�ے��#j���i�QVb���0Dl�����c��T��m�~���րh8���h=�"�3�U^㏣�R֓k+�"��H�)b�dža-Sl\T����q'��-)cZ*8��E��}J'j��)A�⭴�,�E�0h�L�j�R\�)c:	"�%�rHeڥ�
������c�YI6"0�)e3OFij��49%��# RĄ-i.U
s�5-)?w���,�L�X�':a\	Ku�}�Y@��a[(08����-R6����X%����N�,d@@�V�y4v�ۚ�����!��¹+e1�$
���'۸i�X%�!�<T����*Ie"��w�S-`�Lk�Š���׷$��B�.��@�A	-�*Rҕ��G=*��`��Unc���[I�)D����Ѧ�2k�2���oy��I��Z�^�W��Ծ�&�WP�߿�2�
9����>�{v2�큒�1���ˍ<Z5xAA����f��_ӦI$���_�\�0�qrn[u#���X�Ѐ2�[Js�1Ӗ�t�m��i�rI��d1�)�/`]���m^�j-6�Hl�A.����S���J	�m�����'>��ō&V4�IQ�h4�F����>-�o���ꑖ�2 �:�o� PV�PBo�/�	�:����	��1*��qo�[�F٠��9b�1�p���#0���/m�����lZYd�[uB�7C����pA	6m�H�K(�6�v:6�ۤ�W1x��8�AM����Ļ}��+�ytL:n\K�3p�B\Ivh5��ޟ�ܥ�-��hw)�νd,l���jx�x��A�����8O67�ͫ������SI1M���IU�!v��뫗6�/�(^��U�&�{�jNe}8xSњ�%��R�L���ZP�dVr]��%tV�,�K�QhØ�zjiڳm=���Rj����^_g���{R���b�o�m�2��Q��m5�L�45[ƘE���܉��[b02�S7pKa���\؎5K��ॶ���e�[+Y���3Q�C8qAkc>���,�I �A��b��60���e*uR��U���|<;��la,d5�����j*Ƴ�K�H$H̩a���6:%�rE���,gBX�,gޖ%ɮ$z��[E��T`����h(
���be�YC�f?Z a�d��h��g�P%�r�8z��q�X��R�ؖ�����h�R<��9*R&!Â2�'�|jZ��I	c NW.�D�T`DG�}����^�\���(�/��,V��V ��'
v�f1�BK�ꧩ�ж���I��B祭��W[����]Q�+��^�kr�<yn���	Z�U�c�AWUQlV`ٮ�wp�X�a�����H�aZ?w����aZ?w����aZ?w����aZ?w����aZ?w����aZ?w����aZ?w����aZ?w����`�p!��=�5�W�v_Bl\�w1G�-��tNtNe<ak���aZ?w����aZ?w����b��~�]��V�����w?�A�&�i������ ���l/b{e�%���gs|8��<�=(:W�{�vնc4Ϲx_O0�_���/7�="4�<��ب��~5
ThkU����s�F�=����۟Q���כ�zx>�ּ�@�������������������L�e�4���V��l��C���I�Bg2�c;FU�xQt��gY��asN�8�0�H�P��C�o��Rw���^��l�u���o
���>F�Jp������k��:��Ե���!�'�i\ei{�LZ�Z\
4�����)�2�s};�;V�����Ʃ#sH{[�{=|^�u��'���9�T��ND��]�q?3������U����sc'1ª[53�r��X�
�
4�	�
w��Y�$�cZk�PlF����֕m;R�e��'��1�k1��ԥ�
�D)&�(Rz3A=
9;�KCr५"3�K� ��
T���⥌�j2�▴�#�0K)�E�R�9j�L�q�{T��b*�&f��"p���0#�&�T��C�KZ`�AN��1�Պr�e�gF%�9��U�9"�R��ր�Ĭ��&3^�SsU0
v+`ci=�Z����–R�ZR�[DL<F	c�DZAIh�*����9�֊��k�]����OJ
I�PpP�k��p�^m�8J��o�������Ľ~�����.5p~>�+���l���@@@@@@@@@@A�PT�VW ��ʗ��?�g{�Z\���
�[h��L���w�_O��g�x9�zu&5���H�5����&����/Šv)2�\�J\�N
*����� x����nϨ��_����=\ok^W�@@@@@@@@@@@@@@A�s �/�:�|��q;�Zl�>��'>��c�I�8�`��!�S*��ӪٹJ���d&����I��!k������D��I�/�����G�׈Oe�謯Z曋m�#qu�H�9l�Kb��Qs��{�J����Brz��Su
�s\��l,k���VF�F9���W.̸ϵ��o��N��us���B�q��^}�, $����`?�V�:��?�M}�K�ȝn�5�G	LA��Ó�U�9v�\����:���bd��9����B��-����Ż.�m.��=�9!�s"8��ĝ��˃��W�1��kx��w݇���vF�����l�XH]����=1�]D��< ��^�.��t�{7�;䬂���w4��[˨ƚ��������//�_���C�sAk�pR����x�'	�R��)��V�b@
���RĀTf��r,�"�֚��4���T�XCZ,�	�UM��b���I�
=�
gIDH4 ���%�67ffD�M��c#xf�S�r�X�U�I��+����4�	e"c���%E["lc��H���h��y-�����%��(�������E�8(+-�Aj�LW��ZR���SN:Z*� Y��K1R�Ք�����Jw�����Na�XV��V٤�
�3K��E)��+|g�h(0K����-U�_I���_�1�๣
M88z�J�ɞ覱��z��+�6���Z$��H��_&b�J&�Wb뭣u����+��v�?o����Nj��xb+J�BQnj��v��K� �e�9%�!��؀8�s�TW&˻gN�v��p��C�xiȖ�
]Ǩvm�����6[Y��88�֔!�5�J�KѶX��#xc�Ai"A$%PS#�jHK��I4*�}��黭��/�:@���~�8�-��i���2�ϒG�#��y.{�e�Ԓ���$Q���%�?:")x�ZR�F(�\͍w���X��������C��^og���{R�?4�Ꞧ�:=�����;�"���e��6�0=��;���X�uc��
N�B��Խ�C�l�ݶ�.�7MB
�>�|������̈�>��F�b\-
�����K��_����F��n��a��f�Qce�۹ڃ��ّ�j�C����E�7�^�=�WNK���[����@����K#��_G9��!���t��\�s��h��
��.���-:�)�����vƦ�êl����I%���4�XC��=!ov��s6�ۆ����Rn%��@
�ē�22�8�"�q�z;������v�Ȳ8�k/!{❮��4������\0�g?�rj&\:x�6X��U�*+ɥs#c$��vf��ORι)�8✧P�w,R۞D��=��jǰj!Ď��U��|;G���%Ӷ˒�ja3۵�.�C
P���_k�+��O���\=�i᙮���3���O���	W��Hb�
\�NG�̭,9�eJ���%-ikF��NjYKX>-ikG
b�,kJ�R��Z�m&"ƜRă
h*ĥ&��Y�J�&�%�&�#T�[�J*��K�H�JXh�Z�Zp����1\��cԖQˢZ�XNih����VCJ�zh�Q�>�,�*��0��iL:23	e*s+�U)^x*S<��)kH��;���V�|\s�Z+sq�ūIVb�u0�PT������f+h�F�e�rQZ3�q�Q�|��9�;i��Hj�bx����~/B�{\u=����N+~���t�>��k����]��j��i�D^���$:�h�oE8M��7�,.��-����Y����d�xm��X�H�Nʊ�Som�]�>�}Ԍ�+�y}p��7Z��X�{�Mܔ���u4�
(�Rm�{��Z�kgMAc������3D�{���I��4��%	�jYOJڛ�m�g�{���=�h��c��f�h��i	APT� ֕�,�����C�A�~p�`�7�l�ϭ���p���A���{�~:�����w4��^�Nf�S��R��B�J^�5ReiCܳe)qKi�_w'�z��'�n���ӿ��D�y��A��@@@@@@@@@@@@A�H��]�Ge����[���k�&��[;��S��Iz���z[��y�?�g�s������06�-�H��j8����̷on��"��{�����3U�[m��F#J68e!���U��I�w���{��.�j�G����^�<�ǚ5|Y�0��6�����gs�wVζ�<�0|��I�
�Y�fe��>]t��{�;���{go%��p�s�9��H���R�(�w��:|��F��n��w6�-�c�g������̅��-ik�h'��R��v�վ�L���������.���j8��~69��l��ῶdWw���Y
0�[T1���^5�FbY���7ٶ�܆۶��ُ�bto����~-<�iq\y8���ݺp.����r8��=����gc���,f�-��Z�rNeu���z+{���g{�5������k��	
c��
Ex/���=z�o���ͬ��:)���nmp�hNw��َ\�:>N��ʜ���!����\�1�փ�)5nV��p9��:,�CS�\��0+ÂwCU+XYCW
�q�{�핬 �
���Kj*S*�Zz�Ӻ
��0>NP�*��4�<G���.[�9XbsM���Z΢Y�L,h��x��5��A{c��*L���nZiP�F+=�k(	e,lg�-S��YIh����h�S!�,��,/��8�+=�Rf*�,hVՐҖ I�,9yqK1�w��0�Q�KV9i`cKDKbX�bYH���j�LS�
@��
D���=�V+s({��W�
�֊���*-�ZDڐ�){Oj%*sI9�Ul�rF��v��k���NJYMV>���;�wh�'1ô,�.*Z��M�Ge��w��L�džx���'a_7��s4��tX�>4;�{B����A{^���j����T%�V�גD�N�#���k�޹gOm��d��H���e=���]�x���������bI.5'2q^�x�‚�bH)����|�Kj��\���QE-�A��cH�t�����)2S/�05I��徟�N姪��d1�k�i��Pp�}y���ۋ�썹�������`PZ�	� ��|����U��t�n�[$�C�6W[���.FFז��^H�w��������})=�"�ۋ���lH���ӡ�pZ�G�/�/<��˖_���6���Y۾Mı�|���
�9,��8�|��FI��G�ڴ�'%����5��j��G2z�o�h7;goww�����p#�I�s]##ܷ4��N	�����?������ȃt�6r>�6�
��ʾ2��R1]'r������d���dq2f�S_kC�x�:w��wo*��p鎶���w��SE5��Y��P��͌�s�Mfۛu����V�i~���}v���G2w�h�E�WHS,�io5��<���u�:s�����+�����{9z*�1�p�uSR���sួ,�S��w.6�"5����jκ�z9���n_)�Too-�5�"�iZ.��]�=�o��Ϋ����3f7��H`-�E4��ZA�.=�/��s�>o����ioMX��㛷��$�9dp' �_A�E}L��ΟU��mۦ�k��k$��-�����w�u���ϭ�r�<�&�x�u��P0��\�T�׳2��:zW���0Zƌ����K��N�8SEtކ����,�7�F$��#�7�=������[�D� h�L||��d5~�/�3u���ht�7
0օ����]9�Yg�0�g�����{-�o7����ڝ��m�x�ֹ��t̃���-�~Rl�޷���~��j�ض{)	qs�5���.�F�7g\�q�Y�BW�s�Z�T�n�d��$h�ƽ���x��Z=�8�*dz����N�k����ڦvƆ�9��#Si���{1�����s�Gc~]F[<��qi�E�zI�c�\�{G(��dx�ln�ӆ�Kk�\5�L��>�X�n��3۵��2�*����5��i\��]<p�P����7}���/m�O�u9����Q������_�:��b��oo��\��-��sZ>���^�{�o>\�:r�)���}�t�n
Y@e}J�A`<֍>E@�H�w+j΃LBX��gH��@�K(ЖS�-M)`Z(��Ø�`7Q�5Q�	kH���B��1�(��*"�%��0K���@N�Z+{ssZ��O�W�**tx�Y��,�B��<�k�*h�Zh�ƈ��{���z.m�i�X�����W>LF���ns6��
�ų��������;W��'3R�gQ1p�H�;rpȬ��%AsdA`z	�δ
H�D�K�V�R�P �|�{}8���}��v��.�+O�ك�
o�Lӏ�����-�t����S5���#��80{b**)����-Z)�JwW.=�Jk$�lq��H�F1��I�S���?��X��ݱ�U���s^iз�m+���s�2�=�Ȟ��
v�$����w&*�6:;�y\g�]c��ӥ�+jem��(4��r���C��N�~ی�6.��f��:��9�66d��(��^ܔ�lG�ؽ����x�(_�V���A�a=��\��?
���␎�bk��0�m�!�A8�*�e���r	�����������殆������w���w�]��07[�\��?5��L��W�a�y��Xu����6��>���o6��:XƴJ4�Ƕ��3Јh�y孭�~��͗B�V[>
"��6����„����zJ�G�)��[��kd�Iqo$̈�V���C��V���k�|��{w۽�pۮw�R�#6a�ya�Ku9�%�d����Y��0\�w���F"���0�c`>&�k�?�1+Q,Ne�]Y��-}Bm��tlgx�233��m�c��}�4��7����w����]���O!�Y�Zk!�ԥ!�K��I߬]�n7RϻX�91�ǢX���]��
qq5]x�N�yǞ�g{�=i%��x%ٶ�CZZ"t��$��x��OZ�ͻu�㮲󩦒�
�Y�J�N�6��k�&��	�T��G�Aon	��\��YG�T��)�+K؄[	X��.�s����i>�33	1�^[��6�]]{ӯlp�y��W8���"$7S��ҙ���$ˎ���鞳�v�� ���=���qon#�@ꘌp��F-2;��Ff^]m�~�u6��ȷ������m�f��;���(]���V�D�V��i�s�#�U[Iq��H�����3�Gq�A��Q�>����WT{���.m�+m��Sb�{�Q��T��RWֽ��<rY�b�6=��˸nV�7�dz��jip�I\N��
ZӍ��1�Nt���p��:=�6�=ܭ\LJ��֚�+�
gD�3�rK~��:��W��M�]�$����Dٴ�Ů�'�����N��E�y�y��Xl���v��u#mΘ�N�����4�:���Iɘ�k����}��ۍ���ʑΑ����j�z����M��Vb��h�{���[V���hm�41�IHZ��u@��)�����r�Py�s��3�ܾ)ol"k,�� dt2T�Yf.���ձ�Ӂ��7���w�������u��	��4�m��T���jO�n��(��%��m�\_[Y��{˭�\n7�D��15��6 k�=$H)O<ߪ�]�y�u}�B����t��6�h��MX5��;�E�P��?�R��7K���:���WDZ�_K��/�-O}0Ȏ�ŷ�zg��qu
��ei���6�Ƽ��ԊH�Q��iA $J|��������M�x�w��-�i����j��!v��|����g-�^VR�2�,cJX���c<��ҍ�K(ЖQ��,�B��h�K
[JcBYG/���f��S����1��)�L�٤V��ih���,@���)[�+E*1w%���,A�g��ôqK�5m)K�ܩ��-i�=�uq�LT��i���Gi9>7b׎���5[Ƨ3��;'Rm��\�H��g�}-?8/��/f9#K�m䷆I�c�iw%�/4�ڑR����5��P\�PLJ�\�j�L�+t�+��Kq�6����b~��փ����V]:�Xm�[��{��?�=t]1��c{����nW���׳:��cY$y�'�x@��*Y�qw]A�ڼ�%�t��d`�G�F�=jO"���w@��cIHf��f�<Α����Qu#̔[K�%��k�"��8g�Ry��8)��ItwE�	bc"��}������`\5��\�!|�q��"�o��
,�J�[4���=�_O�JP�������]4���Ȩ��`er>	>Df��,p{n@p��O������|�n/���kH�T���NO��Al/����7���8�ۊ�7a �{sXE'�#����d��H(xv1L

�>�,�
���ܾ[x[l�91���i�q�/E=v�v]>"��&�����ж{��˛,р(}�@׽��Eq'
՘���Nm�������1�#�![��|Ok�q�'
QNԳ�6ݮW2�`�+ki��	#�� ��U�9�>���莊��
ɑ\\��[Yw�^>0�KZ]N[���x��co{����w}��d�^�I̱�����൵������
B�!�n^E���Ō�a��&8���K��M��u0�[���]��%|мx�.��оc-ʵG2����c�M��6��v6�-��.55�M!:�X��a�I��[���ͮ>�{�Sswޫ��}̇�!<�,��Xa�ڸq*v�S�4�߾�{�ŷ͸˽Z�m.��7KN���I�$�IomLt��Ϫo.�;��ce�F��z2)�K�ƕ����<d��5��7K�vݟt��N����X؝n-s�G�i48z����K[d�R+��]��U�6�����<�.n���r��A;���x�9&����k5�U��nwf&���..
�0���q��t�b�j\�K7�۶\KP�͘�"���8�`��$:e���}bf�\�v�'���0�6�)�u�}��wv���wۼ��ST���1�d�S3o1�ރ�z��/gtp�f�FLw��s�����k����%�˫K�]I����w��v�l����뷊�g�F.S�cن����-Ս3?m�9�z���_�6�s�m�[[K]�(�ۺ�k#pn��#hp1��q���˧y��~X�u���cbo?U����&��&��-�.{�x̼b�E�n��scl˃,��y�=L���i�ǷQ����%ޞ���]���&�G���HM��q�ΎI#{KC�K�[R8j[�]��w�foW}Oq�l.��[湓VG�W[�!��ե�ƥҢ��n��]�Ӣ��M�pJow��k���Aq��Uk����ui�׽#i�� 3����q�ɦ=:":^�.8��,tt�D����~aڗo?dn�O��z]����v�L���#�6z������瘞_�ם.���oⷙ��� ��ƙև��Ss���u�w{{�����t�7-���>�����}>����V������I5�:i
y��:}?�k���n�P�o-����pm��q�8�L��\�1�"j�5��p�_1�~��8����l0h��ks4�+�c��W�y��^-�<��}ym47V�\[���;��é�c�k�h �ڽQ�Μ�,,Z�cN)a�+h���8 Q�D)�h4V�HK
%��%��{�`�Q[�U���?�J�­��/�[D)bbZR!LV��f<}�%�+s;��V���:���Kڭ�\�ENf5����4X���T��(KFHd��H�c�j�4�A�c_B�[��ɓm�
�͖ո�Mc�;�C]�/7'}=䟷t۷��y�����kh{Y�ɤ�]&���1N�1+�����8�����~n��PD��g��]����w�S�l�]�
��At{{28��+s�N��gu��%�As�-�����j#*�1�2�:�j32�^o��&�o�>;h��3y�46�<h���P�S��N�v��V:��-ߓec^=`�j9�0��;���Y=�h���������*mʾ�׏��x�7o��rHp?V;J�$C���_p����X0���}���<f$�pa�8`sK�y."�`�����k@�
��Yj�$��󨠱� ������hc��4�$>$�i`8b�-(7A��*^���%���3��A|3U�T���������R۪70�1d�p�21���<\�C]���W�N�v^��6I��o}�k�L3���W1�7O��.d�i��}r�Ď��a��tSN]�B��%����{+�{��&��˚m�w�'U5��V�;�8��o��V�2j��pl�G��	�M���jb�#O�|����
~�l;0�Z.!���%���w��ikZ��'���]�Q)����HX���Q�9���<���0�G���B���hQkr�1�g���6�m��k�c"'CI�˂#q�..,k�a�kU��į�>���ζ�hڣ��{�R���F����{�ɢ�����_x������{[o~����)�{�X�1�0�w-�
�ڝ����W���}��V]sG/��|�[+�0ыH����%�7��]a�G�l׾�l�֙m���s!qdo�K�T���S�BU�&]�s�X���h淈�	Y#��4�| �u@�=��w,��m��;�k��c�3�[#���*Ӫ�*��r�f�,��}�Ϲ/2����q��/e�z�`Y�����5�ܜ�Mq��F�\r��֝���Zn�`��_�>vj�\Z4Gp�V>�޶��g�{u�m��ى��p��ᦄ�q�mFx-BL;C>�M�����޷����#�@�k�
2��&E0��B$��Ӧ7��q�g�Y�8ecA�!�G<�ɛÍXZ����m�t�s�#mu�ӺGco�}����A-C�۸�5[�>�9�H�8y���ݬ�m�r��O�P/xo�u`hU���v�l���q�	�7��@�[��x�܆ �}*f%gP�[���Ӥ��$�ĭl�����3M��^%��&��C��w�<�ꎎ���Z�:E��
e�g��V��3�2�i��n���}?s%����>8[j]˸��@�[��KN��h�tY�/�_��>˷��'>M�9�d��I.!��7���<��i-������C�~���e=�:�,�`~�u��h%y�kuꨒ���Ƣ�t�<��6�:�`��V�9��� ���D�tt�&�eM���gR����]�q�t�33'/�2f����K^*�|9Ӝ�,e�]q=�a��xLp�چL\i\*Y�N\u�w�]˟i���\6ͬ1��D�s�&2�;Kt����m�8��m�>^���[��?��l�m�7{L�
�
�2�`Ѩ��J
@ָ�����ⷹ�1p?���x{)իDiܫ,��4��`�K
%��)L�‰c!��a�[Җ�K!,4�m-�؁b�"Yܖ+,�bZR.
�J\�j�����4��R�d�*wl�AK)]Jw�V1�s�t���q�S��aޖv����F\?i�i�m��%�2'b��-m�o;m��=��f���d���Ҵ���]��Q�<Wj]�!�J��n�ӻ~�s�:Ĺ�d,�̎;v̠�q=���v�!�{��f��ѻ
��H��]p��P�Q����p]cQ.S��
�z�]-�[�M��֮D�-c^#��D��{D+PE���3�}�r�yHkY�x$�{N�.�ʼn���]�hح�~ɹ����p[i�`�y�_ϒ�[�y������a�����#�N,��5�w���ۨ���j�b2�N�
��:�OZ��;^o�S��s�[��_-�[�`�h}Z#�e��
!�:RG��t�U���&�IX�Y���yt�D�Dy�rn�G�=1�\n���
L,i�m����d�����1�HK��{h?7�]�q\�.��l�L�h��nqx��=CPM�'Wa��+12�Iu=�h/zVG�9�nq��#F�{ӗj�����S��)!���z�� pl~�a �F�	�m���*W��k��r���s�;���㏵��b	����ҁ�J��b
���4��=��7b�;��\1��A�$o��I�r
�d�
��@@@@@@A�k#��A�g�(��np�j+�r"��P@�i.�'��$�3#��ȖS"9do���4���]ޕ#���x�k�|�cI-���'
:���D������E$���C�!&�15�^�u_y�o1��Z�i !ŗ�%	������ƞ�����͎9�-��h|A•�}jY�H��Hk�LJ
*�Rv��S7G���,ɨ4�d�`>�c%K0��:��hŠL����G��Wh<(�j	̧�
�<Zi����J��a{�汢��;
aߟiRabV�F22�ѩ��:���M�M�{��8��6x�ee�� ��փ�R�bm}����
��6H�&�����#��ʧ�+;^�o;�l��6�60��4r��h{1c��e��ڑ%×�v���w?g�[����t@���J�!��f���I�*5gT��+��(�v
�y�o�:selWl}Ŵ�R��*@���x$;3ÿ3�X��.���/�Wx��n�,zc�,�o���>~d�c���Y���ל��B%���um�Q?}��`3��:
�a�?����(�tt�`i§�ԙ������r�o-:�9��wHo�9Y$�V��r�Ɗк�1Z����Z�|����}�;�Iv�b.sbk�SA!����Λ��c����N�[.�n$�+'|o�๲��Ǝ�b�8wbT�5����-n�y�l��9��9�c���.k �������
�f]����zr�gܺj���; 1O%��k�A#�o�Z�7'4��9��>e|s.�?Mo�=��7��FE����k�n��CY���M3����_�=C��ӿ4�s{��v��qF�d�9�
�KI�B�GWp����������3]����e#.;��<U=�,��i�
�h��i
��L�@��If��	�_�<��[w�c6m��׶P�T2Ť�����s�@��W�������˵o{N�m�;e�wP��8U��/�]�B�F�Mb�T���]"\�B��«G�
f�f�(�)��@�!L�KZcJ�S!�e0X;��4%�0Xh�e"ZR�V�JV�R�<+h�@}J�J�rKI�lR�*'�Rс�	c���غOg�sݦ���`m�;�F��~!Ɗj[�m�Vy��=ez�O3��Ri��b-`��S�����c�]�1W���7�/�c-�f�Eq) ��Dl�����MM@h�ǓN��?�t�U�'TM����${����#~$s]%����]Zq�wM�=�Ζ�	������F�k�pˡ-6W9�,cMM(��FC�u�.�֛�:;m��~'*���
���d������I�.3kv��-��Y�,�e�otR�K[RX�4�qvXӵ��5�N;���;�k-�Dz��1��	{�u7*s""0�F�����-���^�Ԗ�,vúV��[G���ӧ�<�9��i���W?��-�a�
�����lmw��z����r�"x2�1Bu��
M2[�3��Zg���Jns�u1n��6R�w}���D�j��h���"w�?4����ß>|t5�!"�Ii/������K�'�C���k��5R�)�79�&�hm�]���<��./9��ĆҎ{d ���SR���Ǜ}Sok�X�2�&��!�ٷ��V��b�U�|@ŕ�u)�g�M]X�n'�i��pt����&���a��JƃZa��X�n4�ط/4:��^n�w���Oyn�����I�:C@s5#N�t��&���g�k-����Zk`(2]�]K��-�B�[K�m.%�B�+[5�Q���:����
����ۏ�Xހo������57ދ��c�n��M��[��4G߉����n��l鋙�oi��y��{;yf���&���Prh �+sPQ#QWE {s
�6;�~��x��B'9�,vi�7�}P\
�     ��s*��,4�X9o �rK���"0�N����d�V�\+�Rڦ�ӿY�[��i�L46M1:�����4Ӱ�R����M������cmm~fu�#8<K@C��������Po7���k���K��ycS=��5�jt�a‰B���yY�W���q�h
�Ǹ(��Hj}_#�s��q�
�
�1#X�L�U����8$Ql�ֽΠ�:\����I�AR����F��R�������[KLl��
@���^՞��]�nZt��΍�XHc����M>�O՟��]�-7]���%���2�KC�W8���ܸo��:�ՙr��}�.!ܝ%�m]�k��||(����\��]?���A�J./仵ykm�c��8��
���)�ԯ�0��/-`�/�y,�P�G l�F���[��P㪋�r�Ǘ3�лE����&�v�$�8�
-����[����8��_a�O�_��[s��^�@�췶���4sf1��O���r�r�]o��:���n.�]�����lm�2�&*�L�_
��/��J߬:
��+{��'�'�Hsk�<n,
̵��.z�/�x���z���gu��v��Ndp�紲�l�9���1�u{�^<r}�ɮ?�7[�n������a��I>�ڠ!�'�G��\I��x���út�Q�ߩv��B�<:�r�9�k��s5�4W����O��/?�Y��n۲G4�Ht���d��#�湱��@�*�@289wĹ�bN��[����l7��ܡ�\d
ӧS���t9R��\N�w
��k/��2{���{�19��f�C��ͦ}�P\�
����c���}��$��^1���{ʶCk�+󻫗-�3�i��u.�����&;s\9N�
��if?W��i@�ܸ�|þ6�U����u͝�ͬ�4��͵�\�j�� 8���,5��fs�3m웶�̵��_#_B�CK�I��s�]��unZ�q�֐���M�r6�4�"�M7
u�BQ��dM��WV�uZ�A��F+���6�ȿ�G�Y��s�gyl��a�Cw+\[#�C��V��
��"�{�7�������˹�Lt�u6ܱ�H���G�h�B��'�gN������SJ/}����:78�����3G�5�Ո<[Q�Xs��Н'�OK�����o#%M�k�h�|���%�����F��ѧa�VW�W�̺��;�i@tsD��"�k�s�b�*5������d��
�@F�0�l��T����cE�D����4V�@�+ܝ��ծ�[���؝�ک��?pN�{Z�7
+kMy)l�ZJTp���
�'kZJ�~��;U�E�J�kt1<���/��N彷�5�����w�_@Kt�7�[�U�c���{��N\$h���Xʚ3�Y�׻1-�1�I9Ѵ9���`��]�i�m(��=����N�{϶�������o�c{A<�x�4�����e�/h��/�� ��7H#�7�K�k�CWI+YZ�i�^-�8��ۧh޶�7;3�C=�˄Q�i.|�f��DGV�j0r�S�<�ߠ� ل�o�����;���JF�69�9����(��-�i����#,ח��l��n�e��If�4Ia���]�NA�L���p�K���z��!�M%���쌚�s�h��a&\�}~��R���sc�:R���-�9v�nl�@cjI,g,4�>�ҭZLӰ��w��D��߃N�8\
���潳G'��)--�������Υ�/�aszm�mo>Kw
'A�+�;��.�m[�FY>��r�'���2)���<9�6V?SMae3�8c�ۮ����X����O���$�:F�C�9F!��ƫ�'s�u�^o�K�6��A�Z�ohǽ�hs�;S�.{�<^�r��sLj\n���a�g�0�ڸ���[�Ob�	o�):נz�h�=���wYE	}Ԡk�`�؁t��7 �<Ʒ�^��C$�2KYP���[�R<��s�֓@*�`u��S�{���n_��Lu�����[��t=A�[=����$�ZOLV�W=�9���%b�h&�鍢	�c�++h�Žk�C�Gh(9D
 �+{PkJ����6��?��{�4�;x`��Pb	n0��˘��[��Vi��eX���Qi9�֑y4>�
��YP[��֢p��.�,�*c�U��	07�症�V��~E��h��0��G�1�����*L��Ļ�荆�'����
sm�V�J�qh��ixu\B�O6���8��ߴtS��p�ݦB�h�$��N��Yׂ����g_j��ͮ�O&�o�x��2w��$D��~��
�~.sߦ����e�L���٬���Jg�&T4����kK����Y��-yr���͒K(�崵}��A�l-�u|�(~�
jY�_W�+�Z��fR�L6��oo'�2]F���kiZpՙ�Ä�!��C�m�Qc=�1��_u��	���+N��gMg�`����j�x�r�C��q�˜W�V=x'�]wt�$��٤���k]QI`
�<45]���je���mo!�[�hql�c%5�t�=�B���e-��K����:G�,��*�=�:�k�����\L���ϻ��(��G>	�a�A.�GI�Q�pM�0��Թ):��de�tM�˄���	�t��矍g�[Qtf�Ci���:�VF����k�~�O��X���	��i��2᎚��,�\��0��}(�ܑ�l]em��{��m�0�2�4F�x��<M���f{��˟gU��]]nL��'�1.��
(��u����cm^?xf�shv;[w7U���y��9�j�������LJ�C����KV�G��w)�
�m��u��KW���������rv���t��PO��6��؝}�$p����g�s$n�_�*k��1y�Ź�<�;�Չ���W�e��(_#��db�����1.Q�,z����-�}��<h�Z���維�5���
W8��j&\\6W��R5��]t�� t�8�q\��l��餁�
t�a�Y-��\��J[m�?}�$���bغxd�88��Dۘc��y���-ךD��ܺ)���˺�.t������2�Z&ccΗ��ק��_�q��u
��cs&��͢Kw?T���崴�q}ofu��n�W=e���ŻX��v�6�e�-��$0������%ӎf�]
��뭛�`7)"��fe����s]#u1��m�t��WI]��.Y�Զ=��ޞض��t��˺��|1�h���֖�͋��W&�v�ݳ�r}K�=�R��ˍ�����L����A3�:[5���y�S����h<.�S�u19ntGޞA<��_lqԶv�͸��5���A��櫦ya�qy鎭�ަ���_G}mPז`�8��|mwqq.S�4u�ߺ�rD2Z�0˶�*�4���Im��qF5x�m{%�e���lm�7˖m3�=ы9�$��k��DZ�4v7�n��ͮ��/Y!�:m �륙�
1��Nq��z���mw{����]�l{�_11��LF��ŇШ�Y��rha�g������Tb�bH��.�J�'b�x��=�W�)kjG�rR�S}���|{��m �;�Gqs�
5N���ut����'}�q_`4��WIC��ZV�Q�%��[��d�)��pe��̵���p��bS�u�U�����m�������o��X��8�����!���˸6�$��;����n䱀xCIs$9�k��JO��b.�&���^�$82��n��X�;�W�s�{Y��Z�붍�c�IY�>�C�})��{���e��;��;_P>f����D�3��ט�iBKN�PS����D���[mw[�ܶs1�h��o�K�B�DH���5c��7)�x��u/�]3�l�ۥ��7��k�B^!m"f�ꮷ��4��{]���4��Fͻ��-��gޞƹ��$��͌=��mauu7`��_
�ȱƆ�������qj���ob�wES���6G��WS�����#r��y?��u��,ۺ=��YOX��{�ί�cs�4���˴C��<��߷m�����O}[߫]ԜN��h1��#��1jZ����b�ep���X�ΐT�&�X�k��;bR����V��O�H��>֚X*p�Ƒ���.Z�H�*��|����Y��L��,|�UYק��,jmc4�n�
��W7\\F5"G����P���uu�����o�6�c}��iI
��do������H�H�Uw��5n0���o��m��h$�q�� �����Fֺ�ӎ#���)ӏڡ�p�b�K���u#����3�_���u,w�o��9�9�dtqƭ��k�<Vjڙ�}Ss�ۮ��76��Y kH,WN4v`��=\t[������|u�t�2�Æ8��Y�S^��}�]#cn���Hh\�	�fmQ�!&�4S�i�9��N�䲒sMN?�Ez��{��^fE�\G�o����Zn+�پ���?��>ο����;�(!Pl��-�
8 �F�ԕ�7ap�����.�Є��,vm4>��N�Ap@@@@@A�zֱ�8�i�O�s�JN�W�S��R֕��$��59~Em���L����E�_A��՞Y�����X^��?�l��0EH~"G��S\���\E
M)@)OPX�b�ԣ�h�i�Z+�b�R��z����ڜ
OʑNu��i�9�̐�A�Jmm�n7��,� �Ʈ.��1��f�������s
C�uysu���5m[Od��ݕ��\nIs�p)�մ�o�,M�DP����֓�W�2Q��.l�:ә�#8eA}^�MFUY�[l���{ᱶ�n
���
��{��X�5���\��#\��/� �P
ve�X�$�����G)0��`�@H��C]^�g��}����]]�N�;啃���Vѭ���CL^��㏦�Kc�M�ٲ��X�N��9.$tB��0��I:}&ya��Pt^���w�Ky(�`=�pn�iqc������qJ���F"o./'�ѭ-ock&�?�.*V���y�{vI4�{�f{���s�4�ǠPWkGvW�����g��4��Y�4�����3�����nb"+�&�!
,{]�<��I���ƻ��Qs�ƽ��x��]���Z��DD�9�ӫ�*F�:�n�j��	��B袐\�H_M9����O��֢���~ݷv��t�P6X�#��f1��adb��ˉ&�%b{c�[6�nw̵��B�j�{���E�k25�s����I�?�j��n�=���q�ھ�錏�Y1�.la�u7Pw��\��^�/k��Wb{�:����rY���6�F�OoUp�E���u��C��su��&���o:f[�2&뮦����];��q�{���t�7�ե�{��{�a��xƼC�ҷ̹M��6�Xb����k��:g��4�u8��|"��i�bw��*w
����l��I���<��7���2G��c�~��2����[�<CˎwJ�s���[�w���o;�-m�],m�5)„��h��5�M��w�]���bg:Yy��y`�p`��ho�:��8�����7�o|�z>�=�n���n#`�1�>S?�K(�vLExwu�#��ލ��z�X���g���v�-�s��y��d~,����9a��|������:٥�V��.c[��ة%<D��:է�K�|˲غ����qv�	 ۭ���IX��7�C����w+�'{�<��m̺�;h�cn�#�(�V��\���A�(;�N���󏩛o-�����k�[�R��⒮���T�)C�Z��wx��[�6�{�$��Չ��х� b�xB�[wv�����&շ��{���۸f����M\���qx�7�K%�!��v��i��3x�o�Gü��_nVNa����X�sca{5Q�0�+�«=�k��y����i��]���Kycq�{WGy���w�
�O�@H.!���t����[w=�Y7M��]m�5�H3�k�5���:�a���9�VWq��V��밣���(uQ�5��N֧/�M˘"�Y3K��#�Et�ഴ�)c���#����Ң�ߗ�[f�p��#�\��P���Z���=��P�#�\u;Y$���U-i�zh��竧����j|U���?HmCH�Mi����29o����ݖ�i{�m�n���wpx��d�[�����n����Gj^iӴe��,:�y��}�K~S�8�3��_����H!�f�tĖ�����~�q��^E�.n`�NT����5��+Z�v��;���[���[���
�Ib�m�o-��@m�N�SN�q��*�gR�O�^���ZOy$�Q���'�v��@���}��f�gNŶ��ҐA���}���Ms�,h��4h%څ]���!��]����\���I{8�w���ӱ��4�-�z��.T2��mjZH�$�w.]�Z3��,��s-4��t�P(]اkQ�f�nn7Ya�_��F�cD��Υ��N��b��&��w>��nm���]�нΈ�)�l��|��u��N/�BYm���h�e�s�_j2)���yY�:V��֖;�L����>dos�`TF�WK��Ɲ�/Nu2��1:�pe��J�C�n�F#��t�s�b�p��!�������Hq��R �i�Z��G�V!-9�#�h�@;謢"3Zk�ʭloi:f`��\*;Uz�L=h>��t�پ[ͼ�.7˹$�`�&ǪA!����;�3��p�pPl��������DQ�����8C���U����F~ޓ�U���D���U��~���?U_�m��@�zO�W��g�>ޓ�U���D���U��~���?U_�m��@�zO�W��g�>ޓ�U���D���U��~���?U_�m��A�I����l�"
߾����l�Z
iw�?U�~m��Pl웫�.���m�n���ִ�iJ�;Pl�7Eޡ��>��_�A��@@@@A����ח|����ֿSK�i����H�ˌ�Ù��E�D\Ed�֚��&�����>��j�=��w�2���e��r5���ƼU�JUs�O{�ռ��ᢏ5$g�%cI9F-��r�"�#��\A�<�,����6���i��*
ո�*�C5-gt���u��#R�g�
T�2���KB�n�b15��Q�zhJ��I�j��f��������;��O�\cc��
h1��ih�Ԭ����;���
�����4O$Oi =�sh=E'+ެ�w�F����4$�q���F�7���Z�5��j
��$f �6#��
t`e\�5�i#V�{imL�JY♭���=B��X��e�{�\9��Ն��U���(��Ž�w*�7�PF�q�@?�e�z���q�B�mmm�-�A��$SS�sS��Y��z�V�{ɝ8�.GHHh:��C\��e|�ӟt���/y��]��=�[S���+q	�'-ұ�;Y$�4;t���Yιm�x������w���^�bK�ǷS-�5�#�R�����7=��0s4�	��ci�$@k�j1Gr��p�4�8%�2�5u1Rr��m��ب�<i�e�F㞣_ijؽ흟�7m�:+,��?S�4wojθ"~�9�ܽk�pA,�u� ��������@n�W��_͙t�J�������k˦݈y���t�QŦ�q'�A��>a��{�
�}�I���h�<��M�j=xI��Ԡ�|{Z��K#c-�;*-x!��5���Pn[w�^6&AQ$-�t�5��֗8��7xv�B�&]�/8�;�=�p�۷8�2H�	�mѥ�g�6����8N�Q��G�~ew&[(��0�ji��dɤ{uǷ����O_5�N��|������sV�Y!���]oө�M]R3%t�:g��/5��k�.۴Z�]ad4�΂MM-��C�50 �S���Kgo����35��g���N`c����;W�r�m�,��2���~������u��i��v �U�].a�Q�E�O��]{{\։�M ���i��S���9�/6:��c�Zn���ć�é�a�C��k4�֝=˾g��z��w���s�ݐ�Du-$A�Ww/Fyb\u��SAo��[�XdsjFt$��t��R��Qn6M6lc���[C�qp�sI4���n�K.hmm�"4��DfG5���٩dC���s��t�حdRLc�xe�L[G�V��j���j-�Zu�Z�_�n����VAɎv���*uG+��P��[�V'-F�u�g��H��j���g6��8d����C�s1��Z(xqJ[mG�oQYX\��[�i9��l�+���1�=�Xt<�k�6�SA�D$�O�'s��h�m��i�۶4��Cts�5�]#Lҹ��x�������H;V#�4ĸ+���=�Z�+w��R��8S��EmM�{ũ�3-�d�֝B����qN�)���[���.hd�j:# ��4yĬΊv��0:�q����8[�5ĿKZe�x����M}X.3��Ҳ�����sG����=� ��mAwj�e��Sum���Yy7�v�[[�67t�{�9���O��'M;�8�»�wI����	>*�ڗH��"��4ۍ�7����.��9�k����5�+q)=Z����Z����;X�lM&���q�3R���V[�ֵ�E�����X�.�糹,�`��=�On?*XȘ�­k}G�Y����<�=�ANc
X�(E2�5陧�l�i�N����ƚ>Rǀ{+����\0�gؔ�.���d�n�84��x���V����c�5�/$��gJ^��$��V���ێ�'$�.�y ?w�je���ܲ	-�G*b� �'Et��%����
X���
����C��"�c\�ʖ�:��փ�8�ib/�����c�� 
�Ա�'���6O-:{o�%��o�.k����qY�!�a�S�,�� ��b�9u������Kci��\^�^u�SF�YCC��%�Ǵ �A�9�is�
�p � �A�8�

�k�Q�s�Â�6�cc���A�s�A�̐I�{c.mď
�_N�0�h����I2��JT�Sk�FIҶ�9\���8��(�N�����keN>$���n�wQG�F3$�aE{t��
��I!s���Y�,i&_�|���8;����S#��}Y���]�.���,}[����J�E#RNa�6�o$�A!���5ڛ^�֮���8i
���A������-��=���om����4��+���������E���0�C�x�*�[WI^n=#����H�%�e՝�Ex�F���4��R���y�K}�w���� -�9:���ő�� �Ի��_�)m�z��^���m/ᵼ��.,,��Yk+m�u�-���A{50ɦ��{��zo� ��9���6ے��J�%'�������D���fۭ�f���s�L���hXd��k[��TW!g��POѳ��p�Kk�k)�UK���ag%��.qx��QT;�:�tt���@��m;[9��[b/h5vIRV�|��N[�����3#!t�14п@n�EpR��
������n�u=�s���	��� <�F�К�em;o/:����2���	��[(�l#N!�c44�Oi�ҬJL(���u�����_ͷ7�z�W�N����L���(s�O$���{W�������^[n�:V��Cs�i��k�R�f����X��G.��u���]N��Gd�=��h������Sw�i\�li��8�t`���.v�D|���{Y�In��}!�Wְn5ͤ״�:	�gq"���]!%�*��f\f����pmw����O0Ay��h5�5�`�,�6e���N�>��ֱ��2%hs�,����
G�z�`}�(�}h�
��񐽑�w(D��=��5����$j��g\��Ooe�nw��l��i;��c9�
a#\gX�m�%)mpغ��;_�6+�i�=�Ys�eg=��29�[���J���Ne�ZuF�vu��i+��2e>1�F��S<M�:�]%����.#�{m���`�x�dR��+�1F��O6���8�����Y�_Nm��+��n!�M�^�F��cqe�g�b.W�.�oMt�u��e;�/���-kI{�X�O/
��F�����d�m�{M�Z�����a�ۢ��Io�IKj�7�F�qW�-Ÿ͓�77�M{mcywi���!`i/����:�)��o�����K����������ֿ�x8��Ku�Ut�'�c�M�����7u��K�b��q�x
����K���vK�_ß�ʫ݋����+Οܭ_�����{YC�s� X�i��R��S�ʏ/��ӥ�M��;t�t�-�l�	!|�����e����uv���!7�]Ak�{�Qn�]m�����;�i"3��Jy�|�0g+�Mk���C��Q?��U�d����{�yq�j-�4�G+_����h��a��^Ebz{te��t�ۋI��dgL�c585Ƅ�E��H�m�嵵��n��*�Z�d�P�tH��Z���Ug�S{s4VU���E�m���=�Z�Y�5Ԉ�7^Y��Zu=�������ZJ潡�I'��n}#N��p�u�=kj�mw[U这�[ksm(���..��f��\�Q,�!���SO5��q{��.�w�t6Z<`Lr5���%�a��5�X��WMݰ�uly��]@:�5�P�j�B�=�l�e��cu��H�+ ��X^X1ա�i!s�p��K\Z�՛���\��\�ooc5cu�\�������i��C���b�^��v��x��o�΍��N�v��Q�db7c|r����s.�7Lu���w�^A��A�$�	��3��׸���͟d�
�i ���:fYC-či���ţ�%a.��m�����F��ܲ��1�Έ�i{�`�bs�*�g����Π�vݦ�s����/��<�${�3hf����ŔvEA��t�Q�m�n��U��sOv��	c�MB�D�hc�;
������~�S���\��������st�ܲyl���A�n�%��]ാ�����$��3i�SZ\�M8���ٷ�\�Z��s`�}��H�����g�՗��=B�.�>�4�{���1���<?�/��Yj��R���g�����R�m3;��6"�!<4�J"\��>�e�5ݫ'w.�K�%��<Z���օ��s�����cғ�.�iu�����o�l����ۈe�L�I��9:hk\�Hr�s�_m{mas�n_^��;Ymfd�*LLsC�A�B^��}�Ϥݽ_Ask�}���5����x�u�r�Tw�M�ֵA�Mѝcm�E��l[���t��Ik3g|l�{c-s@��b��-�-��f��t���XKo+.$i�"sC�<' ��9^���t�ݛd�oĐ]n̹|�}�.�Kcm9���u;X���S�HX�A�H�]�w1Z�C%�����&���8���{��*��[����:�Wm�F�f���x��l@�W���匊˕����(PkD�n4S��������VŹM���[e~ђ��z}�q���r�VJ��;���m�'m�E���il�/ �8H���YA�e2�]�h�:�MuwU����f�m�u�u��|e��x#s�˳���O�.ӊ�nF��w�|���}���nS6i���*:4�$����z������Z�ç�wg�ͺVKx��r�y����w^��wݺ��q��$nߵJ,-�s,�=մ�iT��-4����u@@@@@A �@�Q�=���{���^���Qnp7��	�    ��/ 3,SVƢ@����{��-s�c�@k��a�E]�|h3�I<3*F�Uͤf8,�ې�q���R�pX�o�����Z{�>�;�3p��8�;Z�/�y&�k5S�ĥRݵ����ҳ���9W�K�s������S�����z�;���S0��@������IG�#.`&65�?[o����V��&���&ݼ�c�[ޗ���������۶��an�-��0�U�p�h�Ϛ[T�WV��%v��n��l���f��e�N�SO�Q,v�󋣷��s�m�m����6[����wFK\���&2Z��5�ĕd�uζ�;f޿�I��u���z���� �NX��\U�0�N�~���mi�t7Vl�yu�^]�{�-��wf��N���k�ֵ���P']{{$J����.��w������喝��[x�3uo���I,�72@Dz0X[m���JY�$C���}�1���37�F�5M�F�4���?W��k��e���]3�?�߲��o۾�Cr�{n/���؇���H)G��d�t�����FA�[Jo�vI���r�t6�ӺF^N�19��1�����3��0�m����;y��6��������|��L�1��Hf�V9�ԥ�-|���O��ˮ�ѸGq����g��sq���ֿU�i������o�)٧�Gҗ�n}Cȓ�w�od�Z]�t�K���|P�$��s~ힽ��j�=3˹}ͦݻ��n�1	_���C��"���s�H��s;��];��w�61�˷�۷��r�%�T�s�ĺ\�@�P��K7�y�u�׮�N�<�l��fߺ7�Ia䔹��m�,u/�iE�;�s�˾u'T��w��S��e��ޏ��K%݀ld�Ow���$�e��,:��X�����6��m5;���2�.v�^˘أt��ӥ��M3P��V�����L��s�[��<S�Ż����Yo;�Z��|'���&V���^���M��p�%��e��_5�
��f��$l,%�c��q�SR��+v[Dd߮�����Yu��Z�����g�*L���/�}QrwkM��n��.�r�u�w/�	-�k4�1�F[p;�r"e�6��.��C�������.��b���yy��ƨ�EKK&�RƸ�b���mwC�V;/\�{�ԯVw��4tN�uim]�$/&3��]r�]���M��%žݽ�{��Dۘ�%���\�0:O3���B홞�~��}9M��N��--av�k�Oa�n3�x��&7\�:H����Cv��OP]�Zy�b�-��E��}�ue݆��}#�v��+���q�(��t����o�i���Wε/��ܭ��-9N
;F�y%ݰ����ͩMsDu��&x����>�۷I���So��{���qΝ�(%|�<s�%����W�������v���a�ݷ��^ܿ}�w1�s���w�5�y
�����ײ���7�֝m��]�j����q�w��+Kim�"A���t��484�*Wvrq��]9��e�wY_�o���Vn����F#��1��ic�d>�֤KS�a�_D_�Xn{�����G�c��ۛm_�$6h��s���3ږ���36[�]�N��	����n�v�[�Hml9S���ίsI��9_3�n�ߝ6�[5���q�m��-k�-�l�$d��4J��5�Tp�����J����g��[ķmx�I���C,�}@d�f/�B;Ե�+���L�S�6��r���[��c����GD�t��)4��kN�����?�������-�s5��KVEn38W�<m*O$h������k��%��������nm��m��Q�U��c^L@�u�r�Z�:orf�ޝ�M��,����~,g{KE�{�2�^�����9]��ݕ�c���û�l�5`�Kg��]����4�
ێ�;�U�o�at����GPm�;�n�Ή�� �]D�����^�3Yn���)=U�GH^Z�^�o�S�GԻT6=�.��'��=-�N�c$�^���y/�}����3��2��>\��o�EǕ�I��O��t�jH�^�؇����k���7�񬕄�6v�g��}��MOb���a�?�7;�s��ۗT?p|��x۽��o1�h,.�48�,0Dw��7��S�Os�J,��������g�c#ĺm�m�DF��uq��A�����L�:oxۯ�~���t�mf�of�=�M-���c.��$i��EU�[���Wnی��w���OoN�h��s嘣�&�~��X|4�Er�Ic��Töu��ܺM�rt�������tWsZ	u9��p�
{=���1}���ao����=�j�F��;mq
�u9�kG3�XX�Z9fe������W���u-��{۷{9 �h�`�����g����P֣�Kѱ�a��y��K��G�v����3ɲ��I�
1�F���[�S5i-8|�轋nۙqճu���e��$r[ݱ��6)X�4ܵ�25�k�C�ZS�E�ot�C��v�ewai�]n��ZX��X%���$���<���(�j5j���]t�{>�U�:��x�rn��,e�����+��zkD�p�W���e���/��!�ķp�za���6�L������1v����~et�{�i��A�}��m��l��b����B�5�i��KupY�q�u�=���5��7�ٶ���n�Y�?�pe2[����<Q�~@
��h���+��\q8�V^�x�:���A���#���[���#\D�i��Q_f���ѽ���[E�7��Q\��;�8�#0�����G�A�

� ��`N�9�.��4kfc�}@UX_l�׭�:ϕALW]5
ė1Me���fc�k�'S�@m�M�Yel�m�qI��9�Ƶ>�
�b�]ڂ��iG�~��,P�Y�2>����0��խZ2��vF����醴	#��U5�?l�׭�:ϕ흣����Y�}��^���>T�v����gʁ���z��P>��?�[�u�*�;G��γ�AoG��γ�AD���z��PjI�mE��	&�	Y���WzG�A�l�y� �͇�Y���!��N�v?��V��_���zku��]��R���;%�#1�%t�U~����7�PHt�T��o�?Ѧ�J�+'������o���f�JP��V�Ŀ �Y����7�z�������������`v=�k�%AtwXմ�L��O��E��� 4�[�>�I���۶��f�
��V��O_O��9j%k�W��^ݒ��Zi���
Ktd�a��L����ܚA�i8�|iܪN��cC��Mj�O������<��$kF�~�
��yZ1�2�u9(���9]&�p��D2j��W.��Kq����.7�iM�t�L�F����>s�
5��t�Nۥw�j�]қ��4��8L<��X�q�i�]9֮ca�;�!��#[a>���bY�$8�_0���9��TQ���eO��]{\�|=�N��K�;��5��"��e�k��/Iy��#�>��C��gpCk��G�Jv/z.�۬��ӻ�^�HW#�E��n��\FGM�.���HfŎ�5p�"����w"F
�����+��[�Hbn�빚���{��{-�#N�teN�|s�;�d}���kCS�W4�yx)��+~�2�le�Mn���R�Y\�Ȋ9�����|�6��1�ﷺ��i
�@�$�D碾���W�9�,:�D�����d
�?��]�x��
�.�~Z��p�~�޴1}��9bh������o�|��Wzm��Ϻŵ�զm嗙�$���p?�\ͥ��W��$iH�n`v!�U-8a�iKI�_��V��ޜ0�v��r�iR3��i� �����jݾ�8TPЈիKrV�/�����M�5Đ���ˆ����J��N���\��+[�S|,kCi�}��]�c���3e-|�%�HiG�ݚ
�X�V�r[/�~d���M���c{� �]1���ьa�X�%����yw慣=�ǧw�ew.9�}��}\[�x��1��I�~R��4��H?c���dm�]�k�|��F*OBy\f�����:cu|���sgpH�k�"���ڛ?�~e�n1�;�7����$ۮȭ0v��$L�9�r��@���[0�ޢ����v�r��	 �_,h��}+��z�qW~L���[n��e�XÞM��Z�C���Y�O�t�bbPyc�m���wm׀P�7��f.<�kp�M�;�o��Ql7��7D���m�W{��~ZQi��y�h���:\v�B��]R��{z?�V��7�#���u�yuR��w}���l]/���C_�ݐ=��Yma凙 ��\�}�?�չe��c�U1������i� �,�Ǯ='������ѫ�#�?1������_�N�E��_1Y�һ�K�V���8;��N�j�{���y,��/�cZY,.|$��U�u�%�,���[w��s�5�e6�u�n=-�W1���jX/|�>t����jZ���#��ݵk�;�:�MT�ҴK��WOLn�S�W5����t�ln�t��1�����D�_�`;����l���#��8;�7@;�?���<�뱏���}W�A(:��R���W�B
��dݽ���[�;���'�O����E��뚓�=����
�"z�8��O����G������c��
+�i��7/�!�}eLv��'�B�Лל=	�{�OY�V���7��i��,E�Of�G ���>��CtYϊ9���k�PS	A������;W�8?6ϑ읫���gȁ�N�N�3�@�'j���� }��S��L�>�ڿ����|�d�_���>D�v��p~i�"�;W�8?4ϑ읫���gȁ�N�N�3�@�'j���� }��S��L�A�V�Nͳ�A�&յ�S��l�k}���� �"6v�r������ی
�d�H5����t��itڰ��q��s�҂����N�-oI����(.oH�J[�#蠵�$>���M�-oI�蠵�*Ϡ���E��x���1����5��ؾ���}7a�蠛v8����A1�D>j	
�/��cl�|�t]�$,"�A!cb	8�dZ3��ٝ�2-�؃"� �%��3�ob,v �,v h3� �`��4���S{c���䷱9�A�wgbVv ����M�}�"l#�A���D�};\_E��A�D~j�/��آ?5g`�������(+wNE�PV蠩�1�AS�Z3�Pj�Ҍ�8랔f>�����#�2	�h�H!	A�A�҂Ho(5�(*�n���7�Af��&z\A�v�m��Eͨ�
9��
S�DO��#h�蠘ڢ�($6ȇ�A!�E؂B�>�1� ȳ����;gݙ؃"ݝ�3�ob�[؃<�� r�b��b��:��� �(����������������������������������D
 Q��4�
!HA�@�A�X�@�7�9M�A�K{A��<i\Z���1�C�u^gg.�Ã�Cւ؜��y���@o��#a�-"k��{�k�#YR�@pr��c��^þ�EA0vӵ.<��F+�H�a"�60W�N�޼��J�o��=�'>6=����k�G��{�כ&�w9{�he��A��:��Pn�       �()yA�+�Y���x�=H5�w6��|#��6�n6H2������D�f�@�`��7l&��;�Pn_E�1#q,�5�z��C��~.�[e�p�Oă���k�kspq.-!�zpA(7m���&���C�!Ƨ/(4n7&m���r�Z���a�ԃ��t���V���Prh0J8��G �y.pkq.47�p���6�7��6�⃐�� �                                                                                 �F� Ѹ��A�a6��N�����5�->ať���\��PJ�0J������Am�$�3��PSy/:a}��2��@�i��a����A�u�(����� DWP8�x��@D���Fh)oPl�%��-�f���(.oP�_��=�Lu�����)�Pl?��=�g��a�ek�����A�������@���YZ�~?� �
�o�c���)�i���p�$��o�Y�`�.m�C[+�@8.A[��^IF;�p�f{{�l�\��g�G

p�5m�A�hZA�A�4U5��W8ϴ�Ƃ��o�uۤ��h�	ejZ{�0(5E�V��Ɔ�4�Pv ����m��.lV�ͳ���V��3��%�F^bi�h�
Wn;{/�������x�h[ͤ�61�Ho�(_�֢a3ckd�P��4�Aa��k]��UX�t�)|�1��8F3=��s��a�/��1��<��ve�Q� �hA�V�U����-���X}���n��{�ZH#P�{	��?f�ק��7�%ş�]�������'O5�v��*���TU��w�F��`u��]���A$�B^�g��c	�f�<_�\�'��	m��S<ZG.g��I�����9�"��]��l_=��i^�/�ϔ��?�i��]N��G�P����˺tܛ����%�TNE�5k��u:`!?�c�{ԕ�8^�-��
+f|S~4��d^��2��A���#��u8�Pm�l5�$�������������������������������������������������������������������������������������B
�ʠג��tOc�0��dB
��<3���?A{�����4₇�H=��ÁA�skt�����Ǻ�8{����F�ț'(�eu;EE<'�ȭw
�{Yb����ߚ�”�K�7}S5;���c�ܨ�ccxx��-����Ե��Y�GyA��mm�0i�#PjKy<�[>2�[�ڎ ^֠�"Z���T�@

/c�0���`���]�G��Ă��c��G��� ��m�z��|�3����?A��[����|�Nܞ}��n?� ���ˁ~���a�ݨ6Y/l` �5P`�, �AS� m�bq؁��2-�b	��v ���60�a�%D
 Ɣ�c@@�;g@@҃4A�                                                                                                                   ��admin/assets/images/css-manager.gif000064400001224467151213255320013311 0ustar00GIF89aX��0Z�b�d�g��V�i�
`�UUzo�?S"~�"�*#$$))+**/++-,*,-./-3:/F00005��;:<?g�C�HDs�EEGEmFF��K�OLLMN��OOQO��P]UP�RP��SS�VTWW~XW��W�\X^�Z��[`\`��a\`a~aa�ca��cdcc��echgfgggiihji��i��kj�k��ls{mmnm�nm�sn�pn�po��o��o�ppCiq��q��rqsv8Tw��w��z��|py|�||��|�}|�~}��~}~�Q{���8x��ɇ�Έ����������މ�������ٍ_S����������h������������ՓA4��ԔN������������Ֆ����������q��ޛ����������������Ǡ�ޠʢ��������آj��C3��ɥ���������O���������ӫ����ய�����ű��R@������з�k����ܺ��ʻ����վ�����ÿ������?*���¨���������������������Ω����Г�������ӄ[��������������\H���ܘ����޲����������������������������������������������������������������������������������������U������������������������������������������������������������������������������������!�NETSCAPE2.0!�
!�-Created with ezgif.com video to GIF converter,X���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]�Ti��P�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷R�ɝKW^��u�⭻�/�v���L��a�}�����ǐ#K�L���˘3k�̹��ϠC�=��ӧ������M����]����{�kx����MܷjvP߭{��b�ȡF/N����سk�ν����Ë�O�����ӗǾ��~�-w�޹q���7.u�����S�C߁�%���f��O�3L6��T9��{.����5(�$�h�(���,���0�(�4�h�3䚅<D��<뜶N:�4qA5���;+�@�;�
�CH �1I��N`�#;`�3[9�xc!<]�en]B�%;r� �@	����8XD�@<p��%���'�hZS�6�裐>��.T^p�j�A5CXF��D"�����|p)s2�r�� 	|�I�jU��\lpF�ҏ�`G���*Xp�T��k��Vk�A�&rl4��	
M��C��X��DyFA���<X��8^��#r)�B8��/74��%@:҄���<\N-��;�ɒj����<\p�<M|���I�'�4�l��%��ϻ�4��S� AD��/T94����B��s�7|��If�A�H����*
�)D?1p����SE�zA��_?v`��[J�2�\!8P9R����<ƒ��G.�C��WK�NG�e�X�#J����$�j:z�����S� @����m.�qv�}�#IM�cK&�@�+�G?�K$���<�@�J����|k���a?��o���.�pDz�'< �Ȱ����¬8�]��i�\?��~��O)��a8	̠v����W��\�H��Ѐ_̃eyj����GW��W�!
@@"�$��.8̡w����@b�	�tl�OT��<�P���K��P��o19�(�'�5�L��h�>0	�zd�C,w�r����t���ƞ��N�B��W'p -
}�L�"��W @��08�>��sD�S�P�|�I�'��U�ca[E.�F`��j��5��G���<~��y� H�؀-�h@�!:����E:��d�.���%���nz�;y�r��	�}�lP��*cT*Z&@yp�}p˞���	L�O���>�%ʢ��G�
Հ��
K,@.���BW����$�K�!{�����^i,W3�JW�Ҕ�l��r��Y-�\����gv�Bv{h��+�Ҳ�1� OH�#�2a����CM�B�q�Ky��Z���WX��:6�BYb���7�Є&�uj�^��W�p�9r'U��>=�g7��r�����
7RlJ�Ά����b����.nc}
�hG+�6
D9^�X����7u� ��&?T����V i�M�reZӲ#�9-m�$��V��-lH���:��Ѝ�t�K��Z���ͮv�{!z���
�x�K��;�z�������|�K_�
���m�}�;���L��WN��|�/��F�',�
S���0�7��s��1�G,����&N1�W�����.�1�_|�۸�2��u�����:�E-d!d"Y�C�E��\�_��P����L�*[��Xβ����.{��`���L�2���hF1��_؂�鈳��L�:��xγ����>��π��sA�B����'d��Z�ѿȆ�'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W-�g#�X��g}^$�ɹp��[��p5�M�b���N�����f;��Ў���M�j[���ζ���mkX��F�퉣r����V��m�Q�a����!ln��η����~�����3�Q
q��q�
ɺ���\8��w-�
�[��ϸ�7�q��{�™G�?�pvC\����9���0�y�Np��o�#�Hɑ<�\bW�̇N����4�]�X�&09����-�����ij��{��`���N�����hO��������p����N��/�հ^�;H������y.d!�U�и�47���;��G�ҙ��
2�ٹ�w����p��GO�қ��O��W�ֻ������gO�����Ͻ�q���/� ��_����d�Pj�.���;���wF9���[���Ͼ����{�������O���O��������8ȡ.)�*'�j2�@b|�r�
a\��Q�5[���rX)n؀����BkX�x�k1��YZ����pC(�rqqr+VQ= %�rV�)�1>ɑXqu���p,�C��@�B8�ư�P�sJ��L؄N��P�R8�TX�Vx�X��Z��\؅^��`�b�!��3ȱ
l����|p	$�1/5��`�-a��a&�`~H��ޠ%���s�ـ���� �w������`9�҂��70CO�
�U3}�-D�	��Aq�
�q�������X��x����`H�������8��X��XwA���8ױ�Py�X�.�#R�
@8�!��qCT��$���{G$����f�'Q�Q5������@J7�N��!�0��<� �C$�!�Q�X�Y����:!e8>���l@?+�^5|cŎ0��	;�����1�c��7�n1�vsl𓭳���H�7 ��V�
#| ���H"11�'���0��4FDF�Ј�0�#JpR��3�O�,;�}���
|P%�B0Q��B�/4���"[a��i���٘3q�0ya�P=�DP@X0E�W�)�p
0�%P���pp� 
p VWW�4�%�4��O1�Гs��P��	������A�EX�@F�Q
��-g�
�=c�Xh�R��#�?s1�O��p�0� �1@P�``0p����À�����t����
�
 
%���x$A��
@ש'X�	A�D�s90���0�9��`Ir$&�
:�`�w�J�0U(3� 9��C:[�7�$��O7�t	��T=�0�,|p
�:M��"(��R42Rt�I:��p�{n��p��y�X�vz�v*�������(JV�2+p�����"
v��9�9Y#�ui�*14#p��I`��p7F���0��'J$����A�P�?��;�9�ˑ��*�p	5Q��PK���0�����䈒`z�R

��#zR��PL4t�f񟉹�Z���a!e��l����p�W vP6�
����	�"z�O���v�%�������0� 
�+`�7J
:J$�W��%t"I�2��<��G�sTF�$���j0�p�°�"(M��WP��
�pfz3��A"|ᭈ�2�H�-��G�	ȑ<��1�V_[sf���%6��x��MP:�#0ai�0�B$,S�=3p��t�
����A��>B��r�
�xa�@IJB���PQ%�@!D��<�6��5+0k�A1�����
�����D[��؋x����Գ'N7=��������g`0���5���(�'�<`0頓6��� 5r��~+Y�M�%���X�{g!� � W����k�;����y+����+p,$	3�X����;iFWPTyt�@M �p	�+���}ڭ���F�I��т��V���H���,hX���v+ѡ�qX �R�������12hX�����QF�X\Y�Q����
�V,zpBk��Z�Z��[�M`L\�e\��Z�Z�Zf�%h�ƫ�s��^<l<�Krƹ���SL��n�\Ȇ|Ȉ�Ȋ���"C���"�ln�ɖ\%H"�R"�| �#�Aȁ|�U|Ŧ�YL��z�1ʊ9Ȍ˲<˴\˶�n#� �|˼��-�ʵ���<�A����[L�̴�����e���\̜�\�ڌ�<���|�μ��\�̴�,r��̭K������>���
��|�[����s�����]���l�}�p�sZ�=��͔��̜�
���k?��۬�Z�����\��A�b�Q$}�&\�mlĥ������K��,�	��$���*�A����	�	!�����P���]�V
�t1����X���BG�1���A `r�����IL ��3eL�!
��b����^}	q�,����p	QぇI�iHI�i� (
H��-�q� �Ĭ�1��w�e�}�-L��Q7@3pQ&�!�U+Q<�\��,X��pwXۯb�(�^����K���%����ٰ7+,����+3���Eþ-
��RP����/�����0�W}��
�$(��X�M 	�<��{�
r�
�d�}`��%�X���
���c�^���| �R�}`^����P3X�
#0 ��.5�b9X��� 	��
� 
�06�@.�$�X���!��>���J�0��#�l��{���M
��8�|�Ԣ����Ɍˑ
����P0;	����b��P�w	�0��f �Sv��p	7�:��@�v��K"J5��04~�p�rP�-$���X^0Q��< 	� '% 	��	�0� 	g�bUH�%07����N����� �ް�ސ�>"��\���
���ހ{Ø��0�嬜ʫl��Oie�Rp	%��]��JSX0� �MP��`3�^PN�`����@����=6R�G�VY��v0u�����P��BP�.c�7`x:`�<����<���9`&(�[N��
��rPN��l�خ�9
r8��r�7�R��K^@�P<�����8��v(��f��-3�,+���NZ:�
�0�p�^0-�'�:V^�R��~0%���
� K�p��7+p�B X��p	�P�'�:�������<����p	]��p�X �c�v@M�3��G�B��l�	����
�;’3���<�������<�Ѕ^�m/:P�X �B\/%�90��p�3r8���+0+XpM���R1�u5+3�OŰO�㿐�<����ݺ&�	�戇;�맰��~���*��~fVI��eE9O%v	�R�J�����S�̗�ʵęS�N�=}�T�P�E�E�T�R�?�̓��8[�{:4�9~������ܰu�R��U��_����4�,�wb��n�s���M���0o�о{W�����+'˛߿���=�jʮ���Mg�O��,��յ�0b^S�{�v?j�J���ϙm���y,�0n��q�*��r�͝?7���by�_Ǟ]�v�ݽ^�x��͟G�^�z��ݻ�:��:y��W�ێ�<���Q��:���yء�/V�ǿD�	4к%�/��������@�!�a<��@ۑ�?�X��a�0?/l0�ţ)� m��)#�D2I%�d�I'��)*x�O����-%�XʒK��h�-��H/�Dӯ2�Z�ˁTh�1��,���;�SN��Ds(!��&נD4�QEe�QG�|jJ�����F
*O�0=2N���	T'	%��GOE5UUWeu�HߙT���IU��Dm��6y���e~6Xa���Ť0Ye�e�Yg��6Zi���Zk��6[m��[o����X�{�ڨ*��@d���/��m�]))[�]t�Ͼu�uW_ϭ�€�E6�s�s�_{��zl��x[b/�x:c�c�?9d�G&�d�OF9e�Wf�e�_�9f�g����S�@�#�Fu,�G��eǿ��ˆ$	�?�l��w~��c���B���~�n&��\�CPV�)h����A�1�]p��;o���o�������*y`�GZ���k�b��
Aol�y�Q��d��sv1�VV(��&��뗓*�G�ϑ��q��~�ɦ;X�g�_**ǘե*�\lOFd������kGG�e����wnV`�",.F��j�L�u�~F����{���̵~���?�#	�oJK?�(�D0FXx��|�M��*J�,��R��*$(Y�a�}��.Vpn8bB����u�@
1��0n��c+�B	��~xA7H8J���u4$b9V�,�&1��d�`�!Ӹ7!dCM��q�\b��l�0"�C_��'��G��U�Blp��	�H{�_ 9HB�JJ�����B��A.rp��	���
��D� �� 
!�C���W,�Q�cc��Zw�Dxa���<D���B
���ػ��3��ో�N;��(�a��w1�p����v`�]�d�#èE-�Jd��XءD�W\bԸA\�9���CJ�t@ҠEhB��?J-2(���q�xAM��(�&��<C�`Qx��r�F*���U�#~��(�b�K��z�d����&����_�I�]�uRp�#�p	!�a̴HL��G��v���7N!�F��H����O���PL3�A
�I"��cw
��h�W��կl`;X��LRU��<P� Ql��h�D�J!����>�sH���.��O��^`�TQ,ȃ����:�Y�@<����Wء	����q�\�]�1{FW��u���,,b���/�iY����"\OrQH�ɍ��`�w����g�y���\&P��Q��p��)Q�*��E�1��x�X'X����C��Gl#	x�b�uG��:��X(�E4؏K`u�0��8���l�6�Q��p����,�!�V���V��z��B��/C��0���Up�+�(�%~!aG���;�~I���w&�p��<�Br+���O�����uP���=0h{�qM��G�lO �R���엮�i \���"�"�`l�Q4���\�N��j�B���Y&��s�e=�S�pVq�>W�.��aӥ`�F�m��[0e�6�V����ͩ�F;�EB����K���զ��w�laW[��vv�w��V�&��+��=oz�]�J��Ti}��ߙbR]�ǒ�:��Ozn��߭�~�����J�P]�$No�R�ZblO�i�p�UÉ�)��*�
���r����/�y�e>s����7�y�u�s����?zЅ��� ������$iKÜN�����i�hzֵt�/�P�
\��>v����g�C��Pj�78��C��H�(l�5���`�E2Cw���>�A�о�j�<��z�%?y�W���|�~�wňw��/v��,��H���‡�7@�H��%�F�Z��:��Ǚ������"[�M�x���j�
ppʉ0K]Z̴K�b��CD{˜i�E2x�/�$^��
ݗv���=O������j�~����O��_Ёb���Q(�Z�dh/�-!X�0#�dz�U�n�IЭu(��/�؅>��0�?�C9X[����z�[��\ۿ]#~�����&Ї&�H�b!p,��Y�8��JW��8��bH%o�)���2G�/p�����?��24�X��w�3����rȧ�)�t���w�1�',(k�Vb��"�_x	GX���k��9"�=!��󽮫�c�L��M��N��fQ�Y��@�Z0�Z�&�`B�?V�bhk��ʡKȆ��b��/(��j"0��:κ��O\<��ƺq�i��j��k��4���(��]8��In�~�U�t��UP�l`o�1;��8�O�kwbw�ՙGs<w0�|�Ƴ�C9ÄTHT�mD��P4ը4P�P�
����U#��@	5�4JCȄ<HJ\Ȓ4ɤ���A$6�-�:6)O�#2qI��>Y�=���;Ñ<ɟJ%)�q���L��Ľ�Tʥdʦtʧ���SCñA��ʫ�:hīK,Ȯ�ʯK�KCL��4K��ʻ���d˶t˷t��;�y�˺�K���˽�Kg�k�n����4��D̢��[���,�1�Iǔ��T	[�?�$���͔�{#ʬ�����$M��L�*M�T8�3�t�ׄͽ��;��1��������Mk���A;� N��Я�R��d��t��N�M����Q��q��������
I���c��d���\;ބ�t��rvp�L�h�uȗ��<v`�-P�{��d�����q�q���?��G�DʙРI�_����XE��L�=I����	�������E4��(V+8��=��K���AC{5Y4G[:J#�ZHD;`�:�g�%��KX�؃/p � I���/U�1�7�����/@��u�;�
�H�Ux�\�����A�~X�Z�#>𶼨�7])I��l@>�Y�n��KH!Y���]���Y( �Јq�O�SxXn#o��t�ԓ�3(��@����!�>�P}�j���󕴼�t�_�`]�A�����y�`� ��D"6��u�&�+$�-���˧�`)���Z�D`�f"?2��J�dX��Ү��u}*�H� �,@�&p|�י��ɚ�U�](�>x������E�&�;^��΍�؎�؏��w8��T�H�h
/�!�y� r�Y���҆���(>���~XH�x�p�p�ex���]����D(��Yy�33`��y�V;(�𭢁G!�BB:�r�lz ��0jm��B+�t��L�U���%��5��E��U��e��u�Dž�ȕ�ɥ�ʵ��=<�#V�M�뉁ߡ� M!,�!pRQ`/ �8�~(Q�O0!0W��πp�x!��Gh,pI�E�]OpxH�eX��6@�p���Uۅrn�)
z.�م�X,����Z��,d>�z�&��l�Y�m�m�0%�5�P$:݉KS��3�o芸m���\H���_ �����";�MR�T�W�.:�cJ	�2�U����U��H؅�2�p�b�
�xa�U����Z�(�ӫ��R�E�_�U��)ʖ�g��+cn����>��\H��
��K���83څ�X�O���O���j�~����ڢ GY�G��Z�)΅ux�ޙY���X:Y�]���Y�6��]x�t(�\�lpI�6kA2\�Q�?�����H����H��B�IV+��j�G��N��Tv=U�ȊD�\�ȋ�4�C�%�
�fv�g��h~Ή[��X��$<���f��n>���lgяv�s�f�o��kgx�m	��gw�f���v�οmFa%肶˔�K��F�t���Ue��4��h���mt�ɖx��~q���qho)�g<L�h�����$&�~8ˤ
Q�HB�@��>ٷ�;���I��@�1�H@�U~:��Ia�=�[�۽O��.�am����Hn�E�O���8���K�/i6�S6(u�It���8d��")�w8�>�e;:)�
���H�3�a0�f�ɴ�j�pi���Y�f+��P����U�~��a�J����V�e��_�IM��2�ҋ4�GҺX�s��`��4�Gbٻ��R�@�Gk�4m�;�ќ��3����t�-=�w�+� "��W���pp��1`a���]#�kz+���*z���l�VX�"�;�_�)�88 ^�
�c�n�]!ac�ۺ-���Y8�&�3�+J����>+"o��"�xl��V�K�kQiAO�l�K�p��wM�](Âen(�a�_x%R�]�H���nPW���p1OH.��!�p��!X��>�Y`����61�vX@.�Q�u��>��o(c詨E�~؁�0��E�%%#�Q���i�	�;��H��I��J�<ΓJ���>0F~��֑3Ё8 ��@j0*j���=�~��8H��=B�x�m�U �t:/��I��z�Z�&�)�bc�&p�u�K6]�Eo����@¨����9�1ZUEҨ��,��ȋl�f��
>�$����Z�p�':�q>X��%�u�_�����j`
�t��T
�f�����ॠ-�S�0��B��p�"O��X�x�f�Z�8�-����?����~ �l(gxZ)����g�3��Z�j�:�#wGXt��G?�v��G����	�Ɖx�3(>؅Ƃ���/:O����~��R.RbYl���>$�QءK�x�ׇh1r���ep��G�8X��0H/؊9Z2�!ݾU���a@�rh�^���tp�8�ʆa
`�o7�s���}B�i��iF���FR��U�H���U�=Q�_�}RS��0`29$]��芰��ݟH����(n�o�JCm:yDOH�#�jQ���$m\�648���qc��46�I<�k=�j��u������u�2d�pB~�J\��"E�>�81��wEnL�ϕ9�.l��%̘/�Ѭi�&�dˌ���РB�-j�(ҤJ�2m��)ԨR�R�j�*V���gK�<x��U�Y�Y�Fժږ�[�i���ږkкX����/`��z��j�0�Ċ3n�qSya�����X���,�ԳO��@CN�Vh;v�HS����~2gӮm�6�ܺw���7��‡/N\�i�>%o�9��ҡ��nsp��ڷs��;����n�����'���^d{���
��>����q[�;�~
8 ��Z[U��<^@!�P���.X$�l���w�Y�I%�x"�)��"�-��"�1�8#�5�x#�9�#�h�� Xn�b?���'����'��#I�����9�8#K?���O9�%��a~)bu�"�i��&�ӑǕea�w�@�l`�fP��x|�2��A�
�����&��6�<�v)��j�)��>�&�he�g�������/#\�G	�4Q�9���x���������tί�{,��*Krb)'Y���J����Ȳ�(�x�NÀ�j2��,��[O���.��٬y�����n�G^�2�@B�aG��0�77�3�*3����;�L����k�1Ǿ%�W����@�z��:�8��$b�*��J1��,Ŭ"O{=��3�A=4яvL��8
ӓ�G;�4��~\��$�Tp�Ex��AqX!��E
S�7-���i�����>� �=�gQ| ��DU�E}��7�>8��U�c�]�N���8�K>9Qn�mi?��B�{�9衋>:�G�@��;����N��>;������iR�Md0<��<��+|+����M����[=����ș��MXP�>�髿>��gA�@��Q�'c&��뿿��ȼÕjd�4���
��t #(���l��g?����nȓ�gͩ;\�F+x:�Y p�a�@	T0�_��:/#l���Я�F<�r��h=�3��c 	Gl v�@">��bA.�@70��Q�9_2���5�|�a��!(A�#1z"�=�~�# )�A���<$"��E2���|$$#)�I�^a�d!9c��1�h�~�V�@���3 `��\���*Z��
2������
\�Z�0~�$2)9�Ɖ,A�|&4�)�iR��ּ&6���mr���&8�)�q���?��;ʉMM�/�
���l@#�ĝ\��&�f��W�
Id���E\8Q\��+D�	HB�X
�8Gur���[��@(ґ��<��
ܺ���P3H#�V�ȢX��!�Z�&��T�OX��ja�l�
Ё,rx��o�]JI��ը},T	��	YڀD�A�R���x������.[�
��(P'W��h��
�@�Ġ�fUm���}�\@���(<�>�>HB��*6p�K��|��0�ӆf@}�EN��\x���h�KG��i4 b�w� ��<.r����2���}�#D�y8�u�,�-7�,������|��+��ZT,�`�����4!%Ho}G`@������2-E�:���ʛ�%*&:�'�{��$йV �C�{���ZJ�vo�N'U����g����G�:�z~1�c�=:�r��ރ�W�86p���H>�0�:����d#Y��;�UC��)S�]SS���#g�p�^�2���B��o�X�2��l�+�,���W���0ӹ�`�@�X��Y�~���攪�}آ��E+:�����I'��+�s�>�%@s�����êZ��Ԧ>��q6������c�jXs#���2�(�]��g�lh2���dü��UVL�>{��ΖNd���\�"42�m7P�وY��
�4m�g���C�/Gh�\��~7��-�yӻ���;p�oػ����r�1��?�m��,ެ�~��3��
n�wx:���(�77�/���\�&7y2,~��,�ɫQ
����p��mNs��<�*�8Mn^������x�T�3��]U��qS򕗃��95�ፚ�&�Xy�W���W#�/w�c��sx�H���������:�^�#=R-�5�c�䤘k�:��x�;����2�yk<��XF6���
b<C�ˠ<�1�p8bX�U6��WxC���/.�g���_�3��*h(>�`��;�xn�	:��9\ф���Xx�,<ф�!�O��D��ާr(�{ɃwQ|�s���m��7�a
pL<�`���1񉃃�%��q�p�2x�9�
�Ǯ��7��
$B9�E�=�����^:�ԮT�5,oA�Cp�<����+�$�
�C�a߀y��}���˳��Q�78B���@t�L.��HB6�A	�A��7��
܀'$�@�B:4��ɂ4�/�����/4���B�+��qC9x�
����%�@�@�����#�^�C?�
`�/��7�8�J9T�I�5&"\��Tz̃�%��%7`�$Hmŀ��(�Ȕ,���dC��/�@"�U-��/�Lp5�+�78�
������f��'\B���B-C2H�
P�7��x�$̀7Ԃ+��.8C9ؓ+l�
�9�%��088���C2�\�A��e�?6��1����E�7��
x�
8)��%�A"��`�
���8�:xC$�i���$�9�7��7̀+��'�@:p���L�
����H�
�@$J:��$C:���b��*��*�_�A�AF&�:�C"�@9���i����|%X��X�%Y��Y�e����	�Z�(�d"�z)z�'x6zB9�B1�B���
4�$B6p�/���T9̜1��:xB	�l���*`Ay�+�b.؁8����:���C}b ΀#���70e6���A?��9�>z	Z���ՠ�&pn
�Y��1E�-�N�g�^�]��$�@��9x�
ta|��`z�\��$+xC6�
�B¬��1\B	x����˰�
�$��B	\�t�2f)�C��@����7���_%F��QJq��](�f��n(�vh���P�!�C:@4d�/C�>C������%�3X�(l�7H�5�4��%40�8�5@�.�B�(@��/�D-�C:��#$$H�h��+ L.��a���~`���+@C.@�*�3��hA7<�.Ð��2���R����:�3Q�W��:�0#5pC6dC5 *hV�Ɂ8|��62jֹ��Y]If�brC5�'��%P����9���:��I��U�ݹ�6�����ޡ��]ƹ�b�rZ��n4N�M��k��D1x���%6�g1�N��D1L�kܪ�M�*�V��]N	��9�+�����+�����k�̀�C-�C������ޫ�&��\b���c�������0��a=qeV婿6�V��`�'��n�H��B9Ȃ7��X��q_p��������ʮ,˶���2T��,�֬��l��(���!������l���-lX��zG�.����E�@>-�N���+�f�Ĉ����zDŽV���,ٖ-�d-��FO�Fq	-�ƭ��-��Xڒ_����fG���-���.��ߞ�y���..�6�7��F.DŽJ���FGo���nnV(���p.�0�厮Ƙ�yX.�6G�Ȃ���RpOq�.伬�l�D��-��n$��:,��s-��Ѯ�./P���� ��.��I���V�p��j���G��[��.�U�������~/��b���F�Zo�n��o���O������/���C��C�ί���57$��.W�_0g�2|
S�/�~�x�<D�n,0����^�p�H�)���ϰ��o
���t|���������#���2�/1q�/	3�Lܮ�l�>��^1g��0�j�K��	��Ȇ_��.����N�1p򠍕��q
+,�qml�yt"�D�1 �D��p�
��\���c 7�K���+�ȍLpEL��G��F? ��%����9�A/S��;$r�������1��QРq%-R�N�a��~1/��/k���lϲ�"��8`�;�2��B8�<Di�8�<��:��9\�#8�$ |ćd�;`4�J�;����jH�j��/�R�:2=��3�q!�D��P�Pf�LH�`��1 ��E�C�\��H��;��P@8����K�Y��<�3H_��[WX���<��
̃;�E"��;$�/|�H�%�74�'�A��C54���2l��#HAT�+<_.��.8;4�eB4PH�O��L��H12H2K�mE�x�<KD�|���D@�C$�<8�
�C(�,�5?�NP'�
H�<4A�y|� �,�A��86D�4@���U6�l@Óyt�pX�>�l��)�“�U0���C`8��#@�<��C�m{[�,ya\�0 ̃"�~n�X�5�9�@�<̀�\exB4�.�z�H��\�i׳O�mH�@\�B?�� 7�����vZ{�a��M�<�?�g,Cz�8�Pm�|�\�T3P�A��
�Y�Ax�\�QO�"C*M�(����|lO�������X��0�S?�
u"�:Dn��S9C?�B$�S8��M�<�@��- D{+�.��B"lxL���-DcW��7�A8B���M�Wq<�9��9%s"����@@t�<`�]�uxÛ{`a�8�"Ã�Â#��Õ�<����}�L��w �8�'���@4�@�Dy ��IJ�����3oE"���6�Z{f�P	��t����9��<HB�P��
��<���G�@�Y(m;�<x��}�\AO�����F���Z���:�� �*�x�X�C�9P0�s����׈D+?0�g�jh��Ey�J�X�P�{�ױ���oz��HL��LD:�D$%�|�K�}���o�ʣ<��D�:߇&cZap�θ��X���S� :ˆ)3ƨ��HƜ'���W���q.���z%
=؇�؏=ٯ�Zv����گ=�p/ۿ=�ǽ�������%��}؃��/1����/1��ߧmǯpS��/~�..3�cйW����_>��Qs���߮�w��~<o>�繾~�\��'~�A��g�b��Ͼb���0����F݌Db}���K�<L�<t�˷D��oh��>�e�1���K���������֎��Wșt?nL}�����/�S�D2��E��,��j�s�`	@�k׏`;v�;��~:<�N!��
����‹6�5�_Ǝ��U%B�C<�P"ʒ���	�U�~�Vv�IbC�G�&U�4YS�O�FmZ�\�w��fպ��kW�_��;�lY�gѦU��m[�o�%�ݼq���{G�lFG+��p5��79鎮j���~��^���C���ei�u�\�;��>G!_6�1����V�{���r��k��u{�d�W�T�ƇU�M�ys�ϡG�>�zu��׽��v�{��(֯��&�8��b\�ŎV�\�%Q�b���wS�8ެz�;$y�/j�H/v)G�r.q���1Ìd�AL3䨯�K�M�>��$D~�'�.Y�,>�/,V����H�GⰐ</�X,�U��b��~��~���~���)��
J��R�-���K���k�����	ڥ	gn8g�D�,$��dYA1>j�@13J�G�U��-��Hf=QfH��8i�!�� �DV`�	G��&3��Ut�eW�p��Ub�]����Co�hb�RT�V�D���n�1)Dq�d �e�V�������/����o�
.���g;r�!+#�9'�&��Q�r����4����!���[��Y�;f�d^�椆���dgp� /$�;n�cG���#O0�#�mCL/��ay���uA��K��]<�Y\ay��ċ~ʙ��(�ʖJ��Wꩩ��j���/��+#c��Xx��%~�YE!�����I
V��6��� �HKzG��V��O�������f��npE�_<IG�~��'ӰǓl��~�0���Xe��D�yx�>���F�K�8-9@lǓd}vŔ��֧MQ6+��r��e��ʨ����^�驯���^�����_|��)��s�)���0��b��f^/����\��g�����\ኺ�LH���@x�`%�������7���Gˈܷn�70��`a+)�%ұ� �#�+V�����r1���aa�7��6F �	�QM��h2�~(�8VB�հ�E-n�j�]�y�Ëf��0��j�����N�A�v�_���9�Ѯ<f��؆7��F�b4م,J�_�`���L.d��x���A�vIo���
?��n��xS\	5V��w\����G6dQ����R?��b�_���`��*J�yU��1��Le.���t�3�I�ok�+�����s�L��M�=;���R�q>/���fR���n:���6ř�w�o�R���P�����b��3�2���9ޕ��(If9
��D�bъfԡZDa��fԢ�s�*��Q�2m�5iKaZы�+.�V?��ς=�iY��0�#����G�*��T9Iu�S��Ńj-/u��Y>
Ю�t+ZŨX���,�JM�YњV.�i�
��Y� �v�r��cV)��p5�y��WՊ�e���5�aK������u�c!Y�N�����e1�Y�n�����gAZю��c�*v���~C3l ;�Eؖ/��X�4�W,z�#���Xl�Q@����ni���В�)�
�s�ݷ�k�E�N?�qnԂ��#d����c?�zǓ@*D�c<xP䰎�c�!Ɏ�%ݵ0w*w�~�`�f�\b$��v��8�Q��� �eDR��6@2��g�B�Џ
�@�b�.%��8�	M�B9�`�@	�,�M�Ni�cXL��X��]i�K�%p�r��\bːE�$��F5�M��/>��"���Bv��	ܰῐ�c��؊jv�J�1x,{�q?r��9	+t�Ɉ%,�Wn�hM���̰K,a�ّ�n�/̧	�ޅ'�8{��w��A�E�Q5!kDc�~�m+H�%D�69pX��
�����`�����
N��S~�,�آX�<�P��g4��mmo���������^Ca�d�4�ht2G��^ Ѯ҇e�M�O���
V�f���6!��(Vq�}~��J1��1�q�o��P�C�r����%7��Q��ςqΩ�l=���1嚿�A���k���;�ʁ.�N?f�E7z�P�P�b�7Ck�G]���hFD�MC%*��?]�q���<���e�RP�K��-�5���nv��]�-lE����:�,���ߛWq���7�ᗂP���܈w��W�?��1o�Q�;�������7��Q�zկ���w��a{�Ϟ�����q�{ݯ2;=V]z�{����7�;D|�/���w����s^�շ��U�w�v����c�������m�����w�Z_�4��������V����/p�o����0ŧڠ���!0����hLK1{�8�j��;���f�L�30�Up���J��|������/��恷��z���od	w��gI�	�N��F0,&c�!2n)@�'JŠ
y0L6��&�x�0�D
Ր�X���\d���A�a�A���a�� C!:���!���A�!>���2""b����p
1���]�;&g`��R�!��&p`1�g2��'֡�x�!�p`�!�����A�a>���ar&#�xΜ0�q��L�ޡ|:�&'p� p��	��4@` p	B��A�EB	�ap�B��!#��T�B���Zp
�`�R`��@�@���l��"ݬ
�J�‹�A*�Z@C�6!8��
R�T��
�	�@<�
B< lr<�#7Ap��	A� �a([�%�(��/��Ϭ,r+s,L@����aqƱBq� B�d����7�)�@�@ԡ��@��
*�e�	̲ؑ@��6!��	����
�'��ڌ+=3��}��+<Q@�܀(��RaR�	����d'߀�`��!�A8�'S>�H��
�	���)U�%q���6� �p3��>�;,;�k�qr�S�РZ��`�a��!�
Z`�:�T�?	BZ��p!$?A��	��TA��,�1�Rl�L�α#����ژ0DEtD��
��b�̍��	\�9_�	��9gTF]4Fa4Go�Fu�FmF	�Gm�S�@�kʍD"+�<�����+̧Z�J�4K�tK��K��K�ZAL[A�P���OIٴM1p�@К|�+΋�ԋb�PTI)�I�ԩ\P��ꭼ�oSJ���C�O�4RyJ
}�Q�b6d�+0�R�-fcS5�28�;��;%�Tw��TQU�8ӿZ5VJU��<�Se�+Lp���M}�W�DkuOS��H3�A���X��{ȨkT��W�.W�5�(�VG�J�I6�S�
S�,�*�h�JYK��W����/�u^���m[�";�A:���pa�!��@�����*+$6h"#�@�=;�
R��A�:���^=vj0�LƂ#�A-	b�1�	6��Cb/�!"���fVi�br.��ܔ�#�2
N�C^�c?�i��^�+,�q,q ֡���@L�'���`b�B�H!M@~����lC�	Z@��4�p@����A��.��6��(,^�jwK�j�ܪ<=�L@$��,�S%��<�`
��`!�a%c�'��q@���A)��sC�	6Av=�B���C��w}��-N�Tz�Cܬq>�1-a��2Bf�m���.#!/��A�6�`�@@���
"�\
fW4
��H��N��w�~��Dש#Os,Ԓ6�5��A���� q t�7r{I��R)��-���Av�@-�shZ���U7�����_�B,�� Q6�A�9ٳȠ���Q\�y���>A:�L��A��	�@�<A�0'օu�iU����Z�R3�̍@e@l�	d�F�n4��F���V�E�x����ݸ�Y�] 2]��CQ�i�x��"[9�,���~S$Y0���A�-Y*��A�Cy�GY�E&���.���Y�vU��/q9�)n�4z��ܨ��z��X�2�IT�	�b��.�uy�����u�LX)�]������9��y�s����9��y��9�z�q���y�a�I���y,�42�â��y�	z|U[{��-ϋ���ۂ�:,.1�)�,�uj+�8���Z�=���'�D�3�C;��Q�)��.0�+R3:��x��e��٥y��z�ԩ���o��eY�u7��Rڌڨ/:�3:��W�����:����`��+�󨩪���홫�:d������3�qDŽ<�(:��9�Z�&Z�eZj�,���6���U�ծ+���iJ����3$#�\
�R*6����I���:���B�!�.#��N.ۣ�j�4��Sj��Ȥ����YX{�z~vHM^1��i�y�(��'v����c)؀#��(bb.܉�x�r�zյ�
�V�9z�"�5,�%Xcj!>�]�.��A��.�j��<!(-��A<!#�����#�ҁ����r��Da��$�R��� V$��A��i�7:���ÁN�,���[Z��n�Q����@l1�>�\�����q̠��	r�b J�n����͵>h���(H�>�f@�`�a��XJ�$�>�ʡcx�Xa�`�AbT���Hb�/�	ۡ�;�+2�?~�
en@�`>i��F� ��x�f�@D#�A
��5�`Ah��@R�ig��f`f�D��$�\�H\�'��1�a����	8��D�� �`֕(��:�3����:+��F���F܅Y*�`���2��rt�vA
j�4e��#�Mؚe�A\2��QCu��n��J�h~�V!d(��H"���f@h�r��� cBï�ϙ=�iU/X��W�SF`^b
�b`��h}�"t��D�l��/�D� pJ��x��t�a|fc
}�@زa,�6te�:�h�U�`<�=$��������E�3�N\,���#��4">da�A��f�h�$A&�t�_��B�_�H���#j$�@2�f�$��R����a�A�!v����aNNcH�@4��"��D~�\av���>\���<�m�MGm�b�z�/p;��)����4�$��ۛ(�&��_� v�t��ҧ��{h��>_�ɾ����l�,�nh>J�3[�M;��_YF�����8�S*�,ʡ>��A���_��ߺw߽[�/�…:|1��d+Z���b�r;z�2�ȑ$K�<�2�ʕ,[����]�q���	�%K�:��aϡ'35��O�L�:}
5�ԩTὛY�&L��B=蕫ԣd+.3V�&еlۺ}7�ܹt�ڽ�7�޽|���8����Y�GS�<��;~9rܲ�7���9��͜5���&<��K��I��ٴ�%�~
;��ٴk�.Of⛅m��
�n�˒��<���̛?��]�Н[�x�Ѥ��{�>�S��/�*>���ڑ�]?�����#�y>'����gLH`����}�g`�M-�a�NH!�h��]�n�a�����a�xHb��]��%��b�.��[�!��ۋ6w�E��c�>�d�BId�F�d�J.�d�N>	e�RN9%L�f��Tn�e�^~d���`�f���X���n�Ta�q^x܍vމg�oAbVu�	(dbV4LZ��h�����U3��h�
JQ��*i��n��
j���R�⟁��j��)ZB�����Jk��Jch�S㭾�Ei2d�Jl��ƨ�<�i��r>+ᬿNKm�p�ƫy�Y;�m��6n�
�N�&J�ܮ��Ȗ�k��z�ѹ��;���2����^�o���Z����Rj��?̕�~�1}��O�o�y�-*���&�|�����2|�r�27D���͜^����s�y��(~4����-m�J/�a͊
�4��f�s�-�V���X
�\����2؝Mmv�{:#�jc6u�o�Ml�
�H�f^��7��i{sߗ�+x�:��ֆS�sԎ?��+Wy�h/���b���X��y�h���Q����(v~�3��R��N_�ӵF{O�W�{��I#�D�n#��t�ݞ0�,�|��a}{�ң����k��eo/��/�O�����I|��;�*h│��ĤՎ�������
p�,���*p�l��MWC��/��jPyq�?��p�$,�	��+��p�,la�d����p�vqZ�LEC
�
}<���Bt���#����x��&�C�>�:'J1%8��ľ7Ņd/�\$	�8�ņ4�9,�ǫ�Q�P4bߨ�w�dp\H��ľ5�񌆱��
����t�m� �un,$�vEGё�\�Y��6V��0Y��E�(����n�R:g��,�EJ.n��o�&�8HZ��i"ŧ�0b�nCs��CU*�q���2���gJSi����	V3�U��$�9�m��*�8 �s��l�;�%-%�l�=�$Jl�gL�5�Y�\�3�����Y�t�����1:��t��t(�a�"�(G?�ѐ��8FIOjҔ�t�*m)K_�Ҙ�t�2�)MojӜ�t�:�)O�Ӡu�B-*Q�jԤ�T$U�S�
էJ5�T5�:��լju�X]G:�
ְ�u�d-�Yϊִ�u�lm�[�
׸�u�t��]�װ�ëy�_�
��u��-lC0���*V/�m�c��Jv����e1���jv�@٠g?�Њv��-�iO���*p�X�:\���6����mk�[٦C��_��	��
w��-�q��%v0�V�y���Jw�ԭ�u����jw���w���w��-�yϋ���чLl�:�w��}��ҁ��E?�q�X^v��"�>�A�`�n���K��`�1��\x�~��>�!�`8@�Il��8�,F��W����@:�K#�_8��0F<Y�D���� +9�L^�I ýlڱ��}���#>����0�y�d>2��Le��v�ln����8�y�	���d!`�{��L�2�y�_��65�ʌ攝\dC?-�A��[ b# �����L�P�9��XG����T��F=���I�h�8L`ty�x�RLh'G:`��\�SC��̖T�!������-
X;ȷրr
d<���]@�3��C'�W�n��s�eH��~��`�lo;��q�Ђ\��>@�Mp��F�����#��x�v�eJ3���&���
�b���f@f��\3@���O-������IL�?�!�A�����������'�@���n!�Y�7e�u�P�˰ր��x�H@��m?�Z�& v����^ߚ��~��׭Ȭ�?[��ؙ��0�	��8�M@v|��8@�p����-0���Mu��}�Z�y0�}�^�{�N��/�M���3�=�yg✯�z��h#��@8��#]Ԡ���E��*�c��o>�����_؅�����|2:��gN]Mh@����O>�l����X!n|����x��7q�ё6)����r
2�f��������H���QE��
�e������a����1��a!�)��������%�1�[���7��9��;ȃ=�?X- (��^Eh�G��I��KȄM�O�Q(�SH�Uh�W��Y��[ȅ]�]!�
,@���H������O�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɉA��\ɲ�˗0cʜI��́�n��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J5���X�j�ʵj��]ÊK��P,�4˶�۷p1��K��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹�g���~M���ӨSW���k̻6�r���۸s#P<c��'�-,��
_�|o6jǓ7�Nn6ѕW��=����Ë��������'�f�;b���Z�8�d����I��:�(`K�� �>�\5�6��B�C�<Vh�f��v�!S9`%ڇ$.�N�(���,��V�(csX�4㍛��X8���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�CU#�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���`'�*�<�C��&���6���F+��Vk��Ka��v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���t�1f�Q����}�Z9ޔ�7#�\Z��a%��r�.w�E-�4��7��"K1��lY	}`�*3�CM9��D�(��JM\�E^��
8
j��
M���1B���(`�K6˘m1笲!����3��b�%��ݔQ��/:��'���L.���I9�P#����7f��O?�����`!
8��G�3��:A�wn�:<$B�|�q	��R:��nV?Ì�J:��š(*�e�d����E����3����G	3����e�r?�#϶�W6z����������H��L��:���'H�
Z�̠7�z� �GH���(L�
W����0��gH���8̡Ѥ���@���v#D�ԭ�HL����&:�P���H�*Z�X̢���.z�`��H�2��hL����6��p���H�:��x�����>��� I�B�L�"��F:򑐌�$'I�JZ��2��Nz��(GI�R��L�*W��V�򕰌�,gI�Z��̥.w��^���0�I�b��L�2���f:�Ќ�4�I�jZ��̦6���nz���8�I�r���L�:���v����9�x��̧>���~2H+	!�
,�,�w	H���	�JH���K��E`6	4�D@�D�=fh�@�������˗0cʜI��͛8s��ɳ�ϟ@�
J��ь�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯW=�9e;�!�
,�,	,wH����6xJ40V�D`����^,H��a��#ȏ`@!�
,�c93�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\!�
, q�!�
,�,8U	H���	�JH���K��E`6	4�D@�D�=fh�@�������˗0cʜI��͛8s��ɳ�ϟ@�
J��ь�\!�
,��	v����*L�p�ÆJ�Hq�Ŋ/j��q�ǎ ?�Ir�ɒ%�\ɲ�˗0cʜI��d.�:��ϟ@�
J��ѣH�*]ʴ�ӧPf�)�۳�X�j�ʵ�ׯ`Æ����3�hӪ]˶�۷O��=��ݻx���Ks.߿�LX��ˆ+^�8��Ɛ#K�L��5he�U�̹����V�����Ө�:��*�԰c˞�қ�_���ͻ����޶�ē+_μ���wA�N�zQYֳk�N �O���2�<V�_��7Sش�O��+�����ϙ�a�( cX�3��ŏJ!�
,�c93�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\!�
,>��	����*\Ȱ�Ç#&|G�"B�3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s"<&��Ha	{�:��P�>	$%t ҦOyl`U�X�j�ʵ�W���V��2��%�[�êY�X��en�ƭZ�j�%m\�a˸)V�M�aws��˙7r��5��m��ϠC�Mg��ܞ-s���.Μ-{�6ٳgЬ=��,��ڱC5��m��F׸As��ժr���&{-hϼ�J���rn�ry�{V��7Y�<m�+Ѯr�V�Z�L�Uv���j��K<�
x�[i&��6H@5Ġ#�$���8ޜ��9�0S�/v䓍~�Í5�3N0�l��9۔�5eA��(���
:���8��1�lJ=��M?i�R1�0S�!�02�5ph��9�(�#�L�р7��r�1�"K��C�H��x��&A#�'���(�4�J#�l3�!�x3J��r�*�LR7���8��q�=���8�h#M#���H�L��$v�S
7�hg�+�r��$JDS3�M>vh��;T�b�<�N/Y��1h���p��*�C`�v�)��{���0R�9[0�n,���9�‹9���+[D��=ixr�?�lY�.[�/Y���$�naN0��B�9�(�8�$/��K0Ā�ƣ̫�!-n3����/�@�M-�X3�Ü���|��Dm��81��*Y�ʲ��d�I����?��cH(���+��J��daN>�XJ�p�"�(�䳊8p��K>�p(�4�)
T�#�������s
��h=�>�@�Ͳ���+�К�
7�94Ҡ�.���b�@��#&#�DcȮ��Ǒ���
윓�$�81*�N�s��ܳ�6Y\C�!�(�&�l���v��
3�\3L1����=�dq�����/��J>�0��>T*�L��l�7�d����E1>��>r�9��D���Q\C���+Fዦ
,c#���	�Y�8��5iH�].�G��I�cĘ3���^lA�0
�1�(1C�V�F���X`P��3��j�[�h�*6Џo)�X̢ŕ�ml����6���`�C�0�6ı�U�C���=ȂF�@c�h�3�ь\$Cא8~!�f���HF1�2��@#�E/ i\�q�\_\�0����/V�h2ր�@��Y���p2 ':m��eits�e,�\5��
nhcƠ�7fx"a%F9fI0	�
hN��P3~y�t��Y���	�������1���i���x5ֲW�BB��%� ��~��(F<uIЂt&��Jv:���\eDڙ�B�3�hE#�Іp��	�C-*�q��1�G:�яs��BHFJӚ��i�@t�Ӟ��@E�<ؑy��HM�R��Ԧ:��P��T�JժZ��XͪV��ծz��`
�X�Jֲ���hM�Z��ֶ���p��\�J׺��xͫ^��׾����
�`K�����M�b���:�����d'K��Z���ͬf7���z���
�hGK�Қ���M�jW��ֺ�����lgK�����ͭnw������
�p�K�����M�r����:��Ѝ�t�K��Z���ͮv����z���
�x�K���M�z�������|�K����ͯ~��������L`-���N����;�����'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL���8α�w�����@���L�"��HN�����&;��P����L�*[��Xβ����.{��`���L�2��ְ���Z�=���\3\wa���^�3\k��&����@.$���Y��X�.2�/��vA
WZ�}�@:t�O8����9�Q�0v&��krPWx�+��J��s,�ψ
mR�lx�	0�,�!
yH"f8�1R)9����HG~�����G.jMjx���j2����D|pDV�Z�7�7X���~8�r0�'��~��C��9�!�\�t��$V!�8� ��x����~�b��#ᅄ��"��W|��`1�A2��~���"��N�
O��<vnԘ���07�����W$��җ��;��P��ԧN��[��XϺַ��{��`���N�����hO��������p����N����xϻ��������O����O����;�񐏼�'O��[��ϼ�7��{����GO�қ��O��W�ֻ������gO�����Ͻ�w�������O�����O����;��Џ��O��[���Ͼ����{�������O���O����������O�����Ͽ��������8�X�x���
��؀���8�X�x�����؁�� �"8�$X�&x�(��*��,؂.��0�28�4X�6x��7��>؃@ȃ��@�@��I}���o@R8�TH��G�� ��Ѕ^��_�|D�0�p��j���k�q8�@th�ux�z��|��~�yc�� 0�x�o���H��x�1v���X��x�����z�8�p���(P��(����@����8�������8���шr����X�0z�H���� �ˈ��0��`�8����H���]hvȍ�(z����� ����
���(�>�p�����h�P����`�H����8��W��X��Z��]�d��(P	o�����@�9��oP	����� 	�
d�@���z�h�i���>�2P	򐑒!�`pOP	�>`�2��	X���@��!��`-�Ў	`���������������a���
X)��������8��@��������0�y�
)��x��Z���0�0�	�@�L �	���Б�	�	0��x�@����������W����:���З#��2��������L�H��-���	O�
�C�b��X	�)�	��	�h������r� .�	0�	@��
d�o�	��m��`��
P�j��� �	� X���
�@����0�׹��O�Lp�@�zP�@�>j������v����Ԉ�i����*��(���a1�����x����ȏP��Ȑ�z�0UJ������I�و��e��>)��������1�!Q������
`��m��o�� ��*��:��������ک|�ymڦ	@�`x�]� �P�D���U8�t����y.��0�s�}q�?x�AتZ!�
,	C��	H��A���\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I�$EG&
Iɲ�˗0cʜI��M��.��xi^� 7�
J��ѣH���(���rK$�J��իX�>܉�M?��r���ٳhӪ��&"����K��ݻA���,Q~xL�p�>	\Hג�Ag�#K�Ly��_0f&��ۋ~/" ����ӨSk53�-`)4=�VM����5���ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O^#���ӫ_Ͼ������?[��`���'�M d��`��~h�$WC���C�Q0��3P1f�aP� �@Pm(�e�"#i���@�$c
�0�35c�H�0C�A�����3J#�H�
M���w�D�FńxP����X�GcF��(SY�)�d�i�h���l���p�)�C�p�BuB�I��+x��Q�0��H�PV�|6*�`Y��T��@�4�@�|��55�Eb���R�-c�g���K���iQv`�@�:S�BR�*lJ� 	UK���9�M��t���9Q;��$xV���;�;�k�覫������+���k������,���m���M�I���Gl�cWl��g���w��� �,��$�l��(����,�+U"-�<�y��l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l�Xs�p�M�r�m���ޭ�޶��+�7x�on��'���7�xP?����`䕃z0gΦ}x.�褗n�騧��ꬷ���.���n������/���o���'����7���SE.��Wo��v%�}A�'��{��/�C�o���c�c�X��%��=C7�T�7�V�7�E=��/��EDN�����R�(G�R@�؏ (���W�d��
MAb�_t�!��ȱ@��SQ�(���1�D4a���	��,V�&�D��@�q�a�/"��	OX�~`�^XA	� �8,*�7f �4\$�	🌔#@H� 8&%���$���Dܠ%X.A>l`+p�9vQ��]�~듈$
�F���v`�fp�r���+�@+ �%J������4�,����1c��=���
d���.|�
UNI��1�Q�KԂ�&4.e��H��1_y�w����7�9\BXH�3�qĂ@�|�:�Q
nP#�8�7�i��D.ğ(7i�pHb�8��`I`!�H�Aъ&���C�ɐI�BE
?��Z��vhcJr����.�	#C
!`���a?�8��45�:h9�`�3pF?f���9��A5
<�Qo$��J�S��կsQ����Ud�$���Zתְ�fz�iK����|uͫ^��׾����
�`K�����M�b���:�����d'K��Z���ͬ��:��rV����DŽҞ��-j	#Nj��"[mR�%[��� ��Vk[�	ld�Yf�O�!�i�B��D@�e��bˑq@w���u����z���
�x�K���M�z�������Y��;�x�7-ۼ�iʨ������L���N����;�����'L�
[��ΰ�7��ϧNI%8�$
%nI*R��0��0��������8α��t����Sy�@N䇠���_�\��c����	���H�9,��@�a�
1����ȉ@�!\�#iF2�=�J��xγ����>��π��M�B�ЈN���m4���p��_�6[&ȳX�_���5	���`��$���x-ȣ%�$
g�%������^������M�b���N�����f;��Ў���M�j[���ζ����n{������M�r����N�����v�����M�z��η����~�����N���O���/�!�{�U�@�? c���p��� ?��E򑛼�(�'��O���ú��2s� |�%2��_�~<&�02@]+�vos��꤯w�BAFC��_r��1i� � X�u|�J4���{�Q����.��E�N�YU�I�8��������l��||�.�H ��
��$_��x(�����v�;��A;ڃnz���r?}�)�w��� ��y�[O���>��
��W�r����'��
�T� �Ta.t�_�[�
��j�ˏ�c�lU�O��!�
,	J��	H������CȰ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɒAN�\ɲ�˗0cʜI�!���jlB`��@�
J��ѣw��DҧP�J�J�jK;
9.�ժׯ`Ê���
�Ȫ]˶�[���+�kס����˷�_�1��pn�7��*^̸��c�"`� ��:;�b,@@��ϠC��j��Xdv�<���װk��M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O������'�F0�0����&01�f���ϟ1#Fr9�Z81�E�6�	���F8�. 8�Sf�aX�d$��{�h�H�t�0Ŕ��A-�(�
�3�$��G��0�C�&#CVC�=<����aKF)�T�O�Xf�;Zv��`�)�d�i&y9�ՠD���&U�HС(tM��H�4�VA[���H}�#8B�=�O�6ZW�#P��	�=9��P�΀E�h�¦�Ɣ�Re�"J���)w�j�_�bԠf�����ϕ�k��&���6���F+��Vk��f���v���+��J��U#F����ve���k������,�l�'����t*�
Gl��Jl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L�g�PG-V9RWm��Xg�2�h��|�	��d�m��h����bI��p�-��t�m��x��|���߀.��n��'N�;�4��G.��S�xw�W���KN@׀���;���:�w���=(���]\��n����N��>���؁�������7�{g��K#���3�o����w�����.������9���c�#��Ν���>q*���y��;���=m;�H��:�� ׏tl`��ΰ6�z� �=Ⱦ~�A��N�V���/��c�+�����_vf�C�m�����b�b��ؑ������J���@.��%��ˢ�F�Z�Z���7ё�t1�Aw9�q�y\����q�u\��S;��n#�yA�G����""m'�Bv����#���JZr�X�5^�L�f��'��k�r$�H�(�c�g�#���5��
G�`3�%��A�dp� ,s��9���
��G`�f0�`I�N�?�HF9qCxB
��'�́<���5�qI���9��	���� 4����_c�x�?�y�	�I�؅*%����gr֡Ijd���$70jQKd���FD*Q㬣�ٴdJ/��sJĚ9&B`jN���/�ȩNwzS
Y��"�P�J:�B�y}4*�$�@�0U�r��JժZ��XͪV��ծz��`
�X�Jֲ���hM�Z��ֶ���p��\�J׺��gm*^��ý�u_R��K�׿�����b�#��T|h����yQ68����.��r���
�hGK�Қ���M�jW��ֺ��[ElgK�����ͭ�H������
�p�K�����M�r����:��Ѝ�t�K��Z���ͮv����z����.T��BERW0�T*���
|�-9���ͯ~��3�������@�Q�48�&�+��N�Cx�����i�Zߋ�`�a�T���Q0�!��5n�A䡐�|$�:���L�"��HN�����&;��P����L�*[�7�`#D>��]Ha�م>h5�(K�B�Z�.� ��������Gb��6H��!�Y��H�Z�H��\y"}=����F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z�ָε�w��^������M�b���N�����f;��Ў���M�j[���ζ����n{�gI����Mn���	��������OhA�[���ȷ@0�ޖ��!�
,�,w�	H����*\Ȱ�Ç#J�H��E��.j�ȱ�Ǐ C�$�j�ɓ(S�\9���K�XʜI��M���"��ϟ@����O`5�H�*]jPӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N| ��ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ������nݺ����\~�����
��@�g�}� �G?�(�;��Ih�q18�����C9�H�}� ��&��N?�|P�-���}:x�_�+��O�%��J���޴3dJJz!1NʳdJ>��'�g_�Xv�?`���H��x��V���GjZ��o^���y�	'�j�ّ<�*�������v�g�=
�E|�9)E�fz��)М�JT�@t�ڐ��!�
,�s�	Ȫ��@-��"���Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(C�Rʗ0cʜI��͛8s�Ԙ�� B�D��ٓ���H�*]ʴ�ӧP�r�'�)+Ӣj�ʵ�ׯ`e�t
-<�
6���۷p�ʍ��ԩCv��Ut�߿���[7Z�ל�հ؍��#K�L9$-Ĉ�A���ʠC�x�<D�@�p+Ұc˞�t׬o�gem���������p���ȓ+'���6lе1��l����I3#������Ë�O�����ӫ�)k����?F��)Q����7�ڎ���g�<A���F�6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰Ƴ*무�j뭸�뮼���X��:��<��뼳�;����/��I6�@��ʲB1�0L?�����0枛c:��!I?𺋣�f8";�ڋn?X�An�����9��?�<#����q�˘nr,�q�����7���q���#K��1��+��n�
�ls����h@!�
,~�V�	ȏ��*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\i��1�0cʜI��͛
�	�6,�O�p
J��ѣ0�U[�-ҧP�J�j4�7jЬQ�ʵ�ׯ`1�[挚ٰhӪ]{T҇a��neK��ݻ!���+�Y���0[ٿ�+^��7f�"3�L�rQ�ɵ̹�畫�%sF���ӨSkǚ��װc˞M�6�v����ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@>�[�Di�H&��L6��PF)�TVi�Xfy�:!�
,~�S��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S^���˗0cʜI��͛8s�����_�x
J��Q�ܶ���ӧP�J�J��իX��,�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËEO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh���N@!�
,�,8J	H���	�JH���K��E`6v�'�ZFr>�I��ɓ(S�\ɲ�˗0cʜI��͛8s���S ��!�
,�,wH����6xJ40V�4%o ��l!�
,~�V�	����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\iQ�0�0cʜI��͛
��k"��K�@�
J�(L~:�{f��ӧP����G�rΤj�ʵ�W����k֯hӪ];��
�ʞeK��ݻ#Wܸ:�߿�'ԗ���È�]��_Yf�#K�<�G�~V�R�̹�JQ�f (W,��ӨSk\�GH:o�c˞M�����K'����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)��C�H&��L6��PF)�TVi�Xf��\�N@!�
,��T�	&����*\Ȱ�Ç#J�H��ŋ3j�ȱ�DŽ�
z6�ɓ(S�\ɲ�˗/�Y{��͛8s���b��@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËAO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vx;!�
,	X��	H�����O�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��\ɲ�˗0cʜI�����4�@;6;�
J��ѣH5�)�h��P�J�J��ՙl��㸵c׫`ÊK�lP�C/x3˶�۷p��(lƬ_��˷�߿�eΘK�B��::̸���~�����2��`̋C�M����@�J��	t�װc�>�n��۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_�n5�Â��O�*7��InØ��������@k)��&H�|�7�T�A���
�
�J�d(�-�"#i��O2�$��0�35ccI����<�hQ=�4r���Ď�H"Ẏ
C��"�M�T:�KLER�̎'-c�}U���.��R&���@��)��x�3�`C@�u>�_6|fCM~~���I�1�Tt�<�6�H!>*餔Vj饘�u�[
M�I���%K��]S�4�;
HPW�J��h���AW(B�0�&�<���-t�O:r֪lP
`A���
\��`K�5��P�g�5�Plp%%tI�5��m�� IT^$v�,�is�*ն�lR�J0q�
��	/�0L3\�W��g��w\��,��$r�(��n�,og��-�,��4�l��8���I��s��,4��؁�����L#�X�P_zr�T�6u�X?�q�\�b;]�
��b�-��f���j�-��n�=բr�]�v�=��z��n"}��@�	n��t��⌋�v�G.��Wnyu|_��D/o�砟�y褗n�騧��Ex��y��.���n���{�w��/|�do��2��8�μ�?w�҇Yx��g����Q��؉o���o�Pv���sw=��o6��/�|���O��S�~���_U���ѯ�L�I�*�8�����	ƌ���wv�
��~�GH���(LaK:����0�!�4(C�Ѱ�c!���Pd:��*(�") <��h� 2q�O���H�*�ƉV|���.z�`#Ւ(�2��hL���Ƌl���*Ң��!4oT#��d�g�c`��8�!�h�
�� �"(��h*#��"9�y	��D
8�Q������'m�����&��o�hEIt%��@.Y�t�&~�\�D�A�_Li Р�r̚s4D�"7r4>�����{H�A5r%�$@8-��o:䕁��*E��ubHy�$-��y����qЩ��ٳ��&@y�ρ�|=(yکЀ6�G}(��(ъ���C3:��r<	��v<*R�(M�JY�ѕ�'�.]OHcJӚ��!'��N-7�/j�D0��vJT�a��.1ZQy���t�9��S9��0����(��r1�K��}F��$E�����Y�j���;^}�\�6չ���+^wԽZ�k~
,��*�����-θ��2e�}�p�*��&玖ea3+�rV��1�gGK�Қ���+j����6�����e�x�Җ8����t��������X�+\����f9.r����:7{�}nT�*�ꂊ��ͮvS���F��pl�z���Jp���a��T�k�5"|���q#���S��M��mW��?8!><p��`�\���`�"��� 7��k��c�<0��~D��u����D-�A�-�5���a"aD��1<�cg��O�o=�(�`w�P�2ΐ,�*[Y�Wβ�cF�-{6��L+�2k'�fN��׬Y6���T�2�G�
��J9h^�/�@����6�i�E�]J��B-�
>'���Y��:���'G�V�E�w	�V��m �W]Ѳ�(�}�P@-�<�ָε��E�\�:�޵A�-�Z�y.�E��l�5{��~��Mr�i���ʎ���m�n���������q#D۫�����n�t���N
��Mo�����7H�o~�ޫ����k�������;��_��#N�[���Ÿ�G2qvw|�W��?��ai8�U�f����9�g�LÜ�3Ϲ�w���@�ЇN�=���ї���A��te��	� �@R/��.�� R�:�p��!�
,	X��	H�����7O�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��\ɲ�˗0cʜI��C��4؄��3;�
J��ѣH5�ى(��P�J�J��ՙvrlؑ�կ`ÊK6(С��]˶�۷H�	WcV�C���˷�߿2c�%���Jo�^̸��džE�8A`uv0��X���ǠC��,��r�����װc}'���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν���m��Ϗ����˃_Ͼ�����F`�@a���������'`�h`��`�.�`�>(a�Nh!�exP0�$C@5�xR+ެr��h��be#�b$5c4�d�7�H!D+��J25�"�D#��E4�,SM����<C͕Ff��U�`$1��&���P��9�"b%Ԓ̕Xn)�6�B@�=3L&���HR#���t&�(K�d$��4,��0#T�M"x���ps袤��6]3L1%�i�5�x��%���J1�����3�$��G�5(Q
4ˠ�fr��1�R�봻&#NBVC�=��3O
���r(5Ԧ˛�01S4Ơt�A��̘ܬ�ŸH2�3�8#����.�9�A����7���.�x�
8�qH�
3�bC�6|*���'Sson����0�Y��i\:��s;1����@-��Dm�F9�G�(G7͗+4*J]S�4R�	�UW�8�5[�L��PuLb�O�@,�2�:�|m7R\Q7��5pl�d�/0}��P!@�:/#�@�5!������f�g��eC��ax��,P�[���An����.���n<ۮ����/���o���'����7���G/���Wo���g_���w�h5r`����o�����������/����o�����������n�4I�p��:���'H�
Z�̠7�z� �GH���(L�
W����0��gH���8̡w����@���H�">kFL�G�%:�P���H>���X�bmĤ�.z�`��H�2^gofL�ע'4�=�
����<x�"�Vq��yԟ]��@�O5�x�x<��Ñ�l�gٸH���$&����a���C�(�J�m���s$%�T�N����+wG@�r��4$.w��^���0�I�b��L�2���f:�Ќ�4�I�jZ��̦6���nz���8�ƍn���L�:���v�s�����I�z��̧>���~��
�@JЂ�M�B�І:���D'JъZ�ͨF7�юz� 
�H5"�A��8�8�J�'�K�$|+eKcz����7��oLJ�K��IPF��a���$R��Ԧ:��P��T�JժZ��XͪV��;�q��`
�X�Jֲ�]fM�Z��ֶ���p��\�J׺��xͫ^��׾����
�`K�����M�bC���EplP�v���ͬ[����z��C�#hGK�Қ���#%jW���a!�	��æ#��euKW����h� ��n1ii[ �p�"2x-A� ��Hm	 �t���.k��|���M�z�������|�K����ͯ~���.����.�`\���=	�{��.GL�	�4H���� 3��V�ԁ(� G��4��8!�������0���gL���8α�w�����@���L�"��HN�����&;��P����L�*[��Xβ����.{��`���L�2���hN�����6��O�p����L�:��xγ����>��πt�Y)�B���Ŏ�� ��x4Y���p��i�` ���k< % !�
,~xF�	#@����*\Ȱ�Ç#J�H��ŋ3j�ȑ#�� C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]:SӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�[���ʝ�ݻxe6�pIQ޿�O�"�������ԏ`5Ő#W�#���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë'O�����ӫ_Ͼ�����˟O��������Ͽ���6��P@!�
,�,wH����6xJ40V�4%o ��l!�
,�c93�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\!�
,XV�	H��A���\Ȱ�Ç#>T80�E�3j�ȱ�Ǐ C�9�ɓ(S�\ɲ�˗0cʜI��͛8s�<F��Ϟ@y
�IԠАG��)ӧM�2% ��ρQ�	��ӯ^Â+�,ٳfӢ]��-۷n�+�.܂U{��K�/߿~�;�����~
;���/p�"�S����˘3g��o��~�Ձ֜��ё��,��<��ε���:Πg����\?�IN����ȓ+_μ���Уc������˲kߞ��7W��i�Of��3c���ӗ�7~�ޱ�G�4�w��[G�ݺ��H"N?�]rO?���5����ȇ�<���%�P�O?�l�g�\�
gf�O9��ҋ>��"K.�|X�.M\Bۇ8��<���@)�Di�H&�����uPF�R2TVi�34�
7�$CM5`.SL9��ӏ9���n��4��ڇ��&P/�̣Ё��C@(�ə}mF��i��O;f`Ț��N>����?e������`N>�DxX��Y����꫰�*무�j뭸�뮼���F�O��#�Ȃd��d�#7x�M1X�b�3c�Ï,�0�E,� �$�6	8��G3�2	Z��>��
?�4bJ>f�C�"
��6�χ�L��>fJC@��Vf:42������$��#�q����O	��g��,����0�,��4�l��8���<��E��Gl�D�Ѳ�:���37��p�Τ������(s-�&�t͈/����;~�x�+\��
0‹������Í2�`�����r��N�Y���
���d�K?��|�`�?�.�褗n����C��!��0�0=m2�8b�0�S����9d/�b�k����$p�I-��bB\��@��-����c�!�X�F>
��ϣ�B@,�d�O>��=w��|;�P�Z:%��RG��L`�V7,��vt��u��]J�3�a
*��L���آ��X0B}��/�@ C���G>�6�4�h���<B�^���G#�B�y�#�8dž�!������F>ʁ�t��rX�4��)�94��6TItF�hL���F��c��>�:&�<x�#1�!�&� ��1ʳc$cLfz����<i���0�@&A18�o g{#�~Lb��=�A78l
��ё�
�B�G�Be��c�P�0�|�"
���5�02t$�B��,@C�f:�Ќ�4�I�jZ��̦6���nz���<�6�9��R�`���Qic�G;ls�}����b9�Q�i��^���=�!q̣���{�ďtl�G>T�iأ��|G��ǒ�c�?p�9�MT��>�!
9�C���9�1N�������Ӟ��#9[�΢V�HM�R�A
n85KEj2�#�
��3V��wpA���,�A�q7[�*��d���^�m�J׺��/��hԾ���
�`K�_ְ�=,7��s8���x�%.юr@ֲ�},f3���n���
�e7[��6����gE��ֺ�����lgK������-m�
���&��p�[�]�¸� �pa��l���@�Q�Z���ͮv����f��L�3�K���M�z�������Mc~Kߙ(w��Xn���&�ـ��,`c���1��;�����'L�
[��ΰ�7��{�� ����j��(~��V��\�B�`E	�0�ಸ��5v����;���"��HN�����&;��P����L�*[��Xβ��,`W#�H��Ur���b�(�(vq�3��p�s1ޱ�
�qγ����>��π��M�B�ЈN����F;�уޱ�OL:��� )�ps!�؁��%.�߬�9#Xx���W��V��հ���g��.?c��ƴ�=����B}NJ��>cu~G�i��f;��Ў��U-�Sz���H�o�>|@}Xs-Z�c��@0<8��v�����M�z�;ɶ>F0����z�h�� 	6�}N�7�/M�����'N�C���8Dz]�b�7s����S/��(�O��W��GW[��9C�MnY�|�f�o6�k�e����X��N���HO�җ��;��P��ԧN��[��XϺ֝���2�yc�
.�=1��g�}�҉���N����xϻ�>p�����*<A;�lp��p���W6�<:qc,�[~ ���*� ��g!r��6�����O��WO�a�F��Z�m�������Ͻ�w��a<� Cn#�({�O���|�Pc�X�%b�x��}���^5X��9�]�۸��X�����k|��V j� ���.F@�����%����%���@1�'���,�`Y��sA�-�2��� x�aH�$Qy!��*��6��ǂ0�28�4X�6x�8��:��<؃>��@�B8�DX�Fx�H��J��L؄N��P�R8�TX�Vx�X��Z��\؅^��`�b8�dX�fx�h��j��l؆n��p�r8�tX�vx�x��z��|؇~�����8��X��x��������؈�O�����8��X��x��������؉������8��X��x��������؊������8��X��x��������؋��,�p,!�
,!�C�	H��A��*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ �3�W�a!S�\ɲ�˗0cʜ	��X*m��ɳ�ϟ@�
��s�>���*]ʴ�ӧP
�8j��������ׯ`����ԏ[4m!p�a;�p�ʝKWa:��{��{�	ܗN^�È+^|�-�ǐ#K�L���˘3k�̹��ϠC�M��iĿN�^���ְc�v���%E�s��]q�U��N�x�N�V3μ�l9ΣK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��	9!�
,6$��m�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�Jqׯ`�Z�%��ٳA#l��۷p_�"�����x��
ij h{�
��!�
,3!�Q��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��M����ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËMO�����ӫ_Ͼ�����˟O��������Ͽ���(�r�N�&��6��F(�Vh�f��v���!�
,!T�	$ �X���
\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ�-3���˗0cʜI��͛8Q�V���j�f�I��ѣH�*]�t�a�N�qō�ʦX�j�ʵ�W��.�	w�0až�]˶�۷ls
:�Q܈-K��߿�l��C�N͙�L`Z#K�L�(�S�2w;E	c,wTM����3Ӣ�0f�\(����۸�c<_N){<p���ȓ+_nS�2lϕi+G��j̳k��}�4l��7��ս����s
T��������'�~�������/���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�	*무�N@!�
,
	N��	H����ƒ���Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ
��\ɲ�˗0cʜI�&��]WЎCI�N!Ў�ͣH�*]ʴ�ӌ9B�����rO�j�ʵ�ׯ�ed�/�F�т]˶�۷piUz�[ܻx����ta~/�U��*�È+^�r�<�ҭ�y��˘3k�P���`$|�ǜS�^�z���F�J��	u�۸s뮹n����N����ȓ+_μ���УK�N����سk�ν����Ë�O������c�gX������=&�����M�{� ~a�~��g�z�VQ:
�N;1��V��@�3C�`�A�
�F���D��PB���@�4#K/��`�Q���"��A�T�ψ�v{ɳN;&�0r��I�HQE�H�B@#�0��b`�a�3�$�H�/^��5�r�(�h�N?L��̕�jYE���("�bD�(�aCd�A�deA+J]�����@��И"
ԏa'
dKP��T?i��c���A��Z�c���i�nv*�y<p�@�'����@dJA�Թ(��J�&�8c�M��C�\K�!D!�ά�2�n���<q���G���KB���å&S��D�V:I���ĝʓ;���9��#�@��4��i�8�J@6�����O>���O�	���&�,N���3)A�̃��$M�r�.-�7:�4"?)Х��?�f=P�7"�����б
-L��-���ö�kK"�x/E�Z������=#�3�n��@��#�75Q�-�Sj'�Aj�3�期���	m �1��n�F/��A�{����+�RE�l��2ݠ��Zau;E��7��$K�{Xk�'�hR�%�MB+F����t��Y(B܍	�n����5ф#;>T���s��I�����Ҁ'$�@Rg����u�HNC>���hR.!A����Ho�u��Z�؊(s�qy��u���0v	|�cW
�o�8�\�r/���@���n�"�}FL����ܔÇM�b|Z(�*Z�X̢���.z�`DI�h:h�dL�G�ᓋPQ�p���H�9��x̣���>��� q��A�D���F:2=�|�$'9� ��dVP��Q���I9>�R��L�*W��V��$%,g	�H��̥.w��^��&kl)L_bŌ�L�2sY�e:�Ќ&%�)MXR�����#���nz���8�IN�\���<':�g�u����{�	OF���|$=��K�3�v�eAT�ς҄��K;�5ʄJr��#D#JъZ�ͥ@3�9Ng��·6R0��%�"��Җ��0�Hc�ř��8ͩNw�Ӟ��9&P�JԢ��HM�R��T�65�6}j*ժZ�)Q��	ρO�1�^
�X�Jֲb&\f�!X�
�����p��\�z�ҕsn��^�Z������
�`��f��:Oa
���:�����G%{��R6"�#4N2�]�T��hGK�Қ��]Y,jW��ֺv��}�l���ڶ����n����vDz��Ro�K������!r���:��Ѝ�t�K�R=ý�v����z���֮d��V��%B��6�75�|ox�:Y<O�™�G�@_��EA
�'.�X���� �J���`����"���T� }��m:4�֗�Bc�B�X�g
��5���6�{��g<���w*��S�C��>��,�"��U=/���d芸�P�"��ۣ(w��V>�����.{ٷ=������1�y%,=���|�)����p�d���Y5n����,Q>�f�~��
��A:<�>�L��<��{y4�'
�VP�/����9l1���=V&��ԨN�7�2^U�z��~��gMk� �ָε�L-��ΨEpAn\x%��u�Xa4���� ���q>�hЎ�Ad�k�0A·���@Q�@p����{�׉5[Y��t���η��'�}�;����~��O8Œ���E��v���"鉟�����I���V�9?�6H�q���	E���/z3��o<!XH�$J�!� �@�@p��A��+�YACD�N|��%"�K���/Q2ԧ~�S��X�Ndz��{%�^O��>���]"H?�Gʮ�����la;��.���}�voH���������R��~�O����0�񐏼�'O��~������_�ߟ������O���ֻ�����!���>��w�]�������/�����O����;��Џ��D�Q�������z�^گ�#�oq  �HB4�}��i?�}�^�wJ@!�
,	L��	H������CȰ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓAN�\ɲ�˗0cʜI����
�qxi��&杩I��ѣH�*]�t`'�B��״�իX�j�j�*F;
9�˵�ٳhӪ�9b����K��ݻHOW�kX���
L��a�1��pn�7��K�L���6Pg�a��Ac,@@��ӨS��ږ@g�X*2M��ոs������N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&����/i�
Vh!G9	�X=�r�?׈8�6� �C�Hc�hƸ�o�CP?�5�cD���Ў2i�9D6&�A�r�2L6Y��/EF��O"iey�d��\vi�5`���:�5h�I�H��&�pb��]4�&�qv�� J_��cX�b����t�#��@,�2�:6~$��Tt'5�^���F0�\���(&�BѦ�z����T�^�	�3=��ϴze:0���8�α����G��Ǐ��F;�;uJk��f���v���+��k�覫������+���k��5��U��E^�+��X�'���7���G,��Wl��g���w��� ��o�lrH����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��!J��hVN�l����y7�|@{s筷Z���߀.��nxr����\y�8��A2�Wn��g���w�砇.�褗n�騧��ꬷ���.���n������/���o���'����7��Г΍5�Wo���g����,�@�t/���o��觯������/����o���������H��L��:Pb�x����	Z�[R�L�u�������U#��fG
0�@�aB�8�`�A'�� � @_�5C�	G=���H�"�HL����&:�P,���H�*Z�X̢]©-z�`��H�2��&�9����6��p���H�:��x̣���>��\�*�Ax��*��ɒJ0�E�$'I�J��Yϲ�&7��Nz�B}��(Gi D��d��"�ee�vȲ��@y@J dd�I^D�$d�LD��i%�q����d�<���2���8�I�r���L�:���v���<�0��v��;��)�"�HP�i�LR
J
�
vф�D���E�� �t��V!+`��y$�K<a�xV��(M�JW�Җ��0��LgJӚ��8ͩNw�Ӟ��@
�P�JԢ��HM�R��Ԧ:��P��T�JժZ��XͪV��ծz��`
�X�Jֲ���hM�Z��ֶ���p��\�J׺��xͫ^�Ľ����e.R�� �<bM���@�a�)��
$f'��)!�
,"'�=�	(p��*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ �I��ɓ(S�\ɲ�ˎ�j�)���˛8s��ɳ�O�ϸ��K�a�~*]ʴ�ӧP!r��c�tf
�,�ׯ`Ê�]�����gd�ʝK�.�_�qC#�;�esf���È��,۰XVe0*�p�˘3k����%E��]�k夛S�^�Z�.��t�I#��	�������4�@5�ɤ�h�/ke�УK7,���t�gM6x������3���Qb�ë_���d�׵�O���~������:��(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x橧z�<!�
,&'��	$�o �f�WP�Ç#J�H��ŋ3j�ȱ�Ǐ C�Iң���2�+ɲ�˗0cʜI��M��r�,�N��w�:�I��ѣH�*]j1ٲ�ˊ�k��0�X�j�ʵ�׋��-����tV�#���۷p���vٹb��QX!��ܿ��r�C,��l؀eC�w�K�L��e�JX%���!_M���6xJ��L	~fx��|���۸5�"�����%������
�}s+_�\��������}eX��v����KOf#0j�ҥ;�O�
���˟��سgƌ
;�<��(�F�g^:�ȲKC6��-��`?)Ah�f��;��N� �(b@!�
,�c93�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\!�
,)'�K�	�m`��*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C���ɓ(S�\ɲ�˗0c�dx�f�t�;8��ϟ@�
J�3�˒.3nUI��J��իX��4&4c��9�tn�ֳhӪ]˖�.k���ŪY�m���˷/�&��lXa�n�d~+^̸��Uvq�d��˘3kN�O ��ɪ����Ө���ΥDv�qMM����W$���S�|H�N���s�w��h���K�N]s2c֒
�6�����Ë�ϛ�|�u�Vy[7����V��د>�����|�n {�(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f��K�!�
,'�=�	H�����7�_:�#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�,x��r�ޭr�p�ϟ@�
J���eH�qooƌJ�J��իX;r;��L9tB�c���ٳhӪ��V?,<���!��ڻx���K����`�5�Xg�*^̸�OWCy���$)
�!v̹���|��H��~qd�V3�װc��E`6B!�‚�����N�8�N�V�bեD�l��ڸ��ا���\�t޼��֯Ip���_�^��iת�Ҙ�eɒ[�A�e�(�"�"J'�(
+~��݃���:Vh!H7HnR��e\�
5,�c�@�$w�,�(P)��"���R6-�3�:����bI8�N7n��@���P^$$�\�.��QO0Qv�����!��3H)5bS���p�x���HAO7�hL0��矀
($-��B˘�\S�+����Yr���bLj�馜��� ����4j�E�6�t��{q��M7q��M���*���V1��j+l�*�W!%R�&�,��6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(��D!�
,,��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲ�EY.cʜI��͛8s:���S"�@�
J��ѓ��"`�ӧP�J��Ҕ<�Ђ6(G��ׯ`�2d��@�bӪ]˶��tn�ʝK��ٺx���{�
�2��
�,�È+�hi��ǐ#W�&����t�������i�����Ө��Kͺ��װc˞M���Ĝ���u@!�
,�c93�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\!�
,5'�K�	�N v
*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I2d�~%S�\ɲ�˗0cʜIS๛7	�K�j_��@�
J��ѣD�)}��[!�!�J��իX��<���Rn�`aGL�ٳhӪ]�r�/p�r����ۻx���{u׆U�>|��	�b|+^̸qG>�>`ɶ��t�k�̹3�
�~Y�F���v�=�^ͺuM)�Y���evv]��ͻ�FyM<���2�u�}+_�|w�w�x�Y��A}ɛk��=�b�<a��S�����ӫ_�5]��]��Ǿ������n]���(�,��A���6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*jF�!�
,	X��	H�����O�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��\ɲ�˗0cʜI�&�c���PR��A�cc��ѣH�*]ʴiAQ��3YΩիX�j��U㸌l���8�cٮhӪ]˶mQ�����ͭݻx��u�����Þ=:u��È+�9c���V�<�l��˘3k�(A`rr\��Eo^ͺ�k�f�*堣�%=�~ͻ���H�N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�6ɲ�6x�<���VhaW��[B���Ѕ G41��+��>��N�0Ƙ�9I�b]?�#
��9��cA��$�p�<��9�lh��H)�m�ςQH�T��O����(�+¹T�@��P�h�Ff����2�9���*蠃�@�
j(��:S��-�(�0�I�;�f��E���l*�~��Tm��*�zn�������7��kt�IP\�5���D�
������#a�A��Z��X(�]���I?�XiRM0ˑ%�&A�D{aX�&�/�^gK�Д�F�R䭺���N!p�Q��U2	e3�d���lu��
W�߭ҕA�!e26�c����6ېL�����K0 ���6�1�4�ܠ�:����@[�G=�m�����L7}�W��E$��X�j�\w��`�-��d�m�U������t��k�-��3L��x��|���߀.��n��'���7��Xn"�WnTa[���w�砇.�褗n�騧��ꬷ���.���n������/���o���'����7���G/��fN���'gw��w��]��v��J㧯�o֯���/����o��߯�����?�M;(��١L��:���'H�
Z�̠7�z� �GH���(L�
W����0��gH���8̡w����@���H�"B��2����&:�P�b��EhH�X̢���.z�`��H�2��hL����6��p���H�:��x̣���>��� I�É����"y6,D�%nc�Z�%I����&�0� Z���qa���7�A$"���:%o:)�y�R��̥.w��^���0�I�b��$�"���f:�Ќ�4���iZ��̦6���nz3=���8�I�r���L�:���v���<�I�z��_+�Y��Jp��5�Z�T�laB�І�H,�t�D'JъZ4oi��F7��
���p�a,��<Ɗy����l	$�
�Ad�Q�0A�O{*Qac �.p���T���GXҪZ��XͪV��ծz��`
�X�Jֲ���hͥ)Ǻ�K��h�����F�p/���B��AV!ׁ��!
���O:���J#2��%��AZ9���z���
�hGK�Қ���M�jW��ֺ�����lgK�ڈ���ͭnw������
�p�K�����M�r����:��Ѝ�t�K��Z���ͮv����z���
�x�K���M�z�������mc��K��t�@-N+��br�M&�@$���Y�`�(��oG+3% !�
,	X��	H�����7O�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��\ɲ�˗0cʜI�&Da����RC�M�;c��ѣH�*]ʴi�N��3	ΩիX�j��UcU�vr�9��ٳhӪ]��(�>,7pcK��ݻx�� �X�J��L����2cL%���Jo�!�L����'l��N�&d��X��b̨S�^��-�S�Tt�d�ڬs�������N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6� Z��"�&pH�����=lC�`�\�aA���؇��H�6� �C�Hc�h����CP?�	T�@=R�?����9L:��'�����"�2XJ�
�c�`��5�X��5��`��b��fA�X��9���B�$���93��qg3H�'��NIM�l0�(^�N1�"��]�E�h	���O	x�Y�~�H�
���;�-��%������6p�#��@,�2�::�$���d���J5�Z���!pE�3Wu�  
M��tC9���R��c�R
�j�'4�M6�,c<#D�����C�Zy��|餳����"K�W*/tnP�!��3���@<F,rs� T66��)�H9���a��0�
��M�JɃ���@�G�DHL�Hۧ-I7�ONGM_1�HmuyJ:��7(_�uy����d�m��h����l��6L�-���@m�Ws�ޕB��߀.��n��'���7��G.��Wn�嘗�pe�yM�$�礗n�騧��ꬷ���.���n������/���o���'����7���G/���Wo���g����w���އ/�qJ�o���ߞ'��������r�������lS�H���+4`��9�|p�'H�
Z�̠7�z� �GH���(L�
W����0��gH���8̡w����@���H�"�HL����&:Qxܰ��H�*Z�X̢�'�0c�`��H�2��hL����6��p���H�:��x̣���>��� I�B�L�"��FM	tds\&�J�M
����,y��q�9���p$ ���c#@�J	G�M 3`en ����d�#�����0�I�b��L�2���f:�ЬNܢI�jZ��̦6�C�mz���8�I�r�3<�9�:���v���<�I�z��̧>���~��՞*JAx��4��j�J0�h�D'Jъ*�D��F7�юzTn���HGz ,����A�c�r$/hL	�v̴��@yK ��hd��^D&%d�T���a)�����U�<���`
�X�Jֲ���hM�Z��ֶ���p��\���X���;6�)�"�hQP�z��T
V�
vф.D~���͈� ��̔V�.��$l%,L<aX����M�jW��ֺ�����lgK�ڗ���ͭnw������
�p�K�����M�r����:��Ѝ�t�K��Z���ͮv����z���
�x�K���M�z�������|�K����ͯ~��_�����?���&@�0'��g>�;m<��
��	�@��
�vhJ@!�
,�,8J	H���	�JH���K��E`6v�'�ZFr>�I��ɓ(S�\ɲ�˗0cʜI��͛8s���S ��!�
,='��	�����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C&l���ȓ(S�\ɲ�˗0c.<G�f�r}j�+'��ϟ@�
J�b�eH�eV�K:bE�J�J��ըܸ!�f�X6O��K��ٳw
�VN��l̰����ݻx�N��0�
o+>��w]1��+^,VVBO���w#G��k�̹��<%���f�%���L�̞c˞Ma.��Ix�OV�\fg�������'Zޒ�33�K�°�k�ν*�Ԩ9F������ӫ_/�ڳgƌ=c�]v�������u���;�h��Ï@�4��F��;
��f��z!�
,>'�K�	Hp�s�
*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C��(o�ɓ(S�\ɲ�˗0a��y�ܺ\}�L��ϟ@�
J�粣ˊ�cS`�dE�J�J��ի �Z�f,����=�J��ٳhӚ��Y2�`Ū�K��ݻS?8k�(]�&`�9�K���È%��"��)3�X����3k����sbx��g�G�F�����װc�t��X
��m�������ܪX����z����_�KG�[�r����ν�w�ƞ-�36�\��˾�_��*����Q[վ������ǿqB�(�H�#�:�
��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄�b;�&�袌6�裐F*餔Vj饘f�馜v�駠�*jD�!�
,H'�K�	L���<v�	\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��Ɇ
��\ɲ�˗0cʜI���s8�xw�<�@�
J��ѣ3�)U:l]�
��!�J��իX�j�f
�e�m᎘ֳhӪ]˶��gϬ���/Ycm���˷o�u3V�Q�ˆ���]̸����mX�!G�
F$�̹���X'���lE͊A�^ͺ5�U�}8
��۸s�~GV�\��d^�z�����K���duG�+�����g�{��X:�Q��N�����	|W+�����T'�$�����Ͽ���S�:�g�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f��q�!�
, '�=�	H�����'��;���)�H��ŋ3j�ȱ�Ǐ C�I��ɂ�N�'�eK�0cʜI��͛8sb,G�\�s@ϥ���D�H�*]ʴ�S�ɲX�0ٳg�R��ಯ˂ysU Q:bOӪ]˶�ۚϲ	�#���g��V͙�g�LuG/4R�%��bk
C3�M�������ϠC7�V
۳[`�	s���_�x���ܣ=��r�kٳe��e�k8g��xs[�M�+�3M���سk�N�A�ذ��sD9L`�"'�KX����ڽ0Dy��n�e�-I����-��9��A^t�t�݃F(�R��xQ�qKނI�"�#a��	9]`�jy�R&]��G!�F+]��!���f�=c݄Di�5�%�d�5�h�>�tq��`�(]��M:��9�D!�e��Q7�A)mb�-]�"L���,�)�N1H*蠁�B�*�!xRF��|?�E�D�	)�<rG�e�Ǝ����)`ЉI!�i���?f�(���j+v��DZi،��ۈ�I��g��B�9�Ї�]k��(9t
,�3�8\�R��
y�覻�NBv�1�ċ�l�j�Z��4��8� �e܀�o�p�p�h�M6�P�0�SKt�d���gl�W\�M2`}�U�$C
5#'c
(�`"L5h�V2���36��L1ܐ�fk,��D#��;��F�4Q9�p�P�TWm�J��3�FY�ԏKW�-��694�Qd����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧��ꬷ���.���n������/���o���'����7���G/���Wo���g����w��/��䗯<!�
,F*�
�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ��I��ɓ(S�\ɲ%Bh.cʜI��͛7w��ɳ�ϟ@�"�5�&���ʴ�ӧP�F��)�@D���4�ׯ`Ê���+v��t��.c�ʝKק)yax��)XA!�K���� ��F@�5m��D �˘3kF�L��gƜ 6���ӨS�
!�
,Q*�H��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\�Q˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë.O�����ӫ�n�����˟O��������Ͽ���(�h`q�!�
,O*�H�	&����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ ��I��ɓ(S�\ɲ��g���I��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë3O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��R�!�
,	X��	H�����O�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��\ɲ�˗0cʜI�&�c���PR��A�cc��ѣH�*]ʴiAQ��3YΩիX�j��U㸌l���8�cٮhӪ]˶mQ�����ͭݻx��u�����Þ=:u��È+�9c���V�<�l��˘3k�(A`rr\��Eo^ͺ�k�f�*堣�%=�~ͻ���H�N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�6�b�6��O�(�����@�<ԎLV�!pD##���=	�(:�|��I�u���8�3P6���Nd	���9���8�]��>�H�[B�	�=�O��#��ux?^
��d
H�SgpN�
	W�k\���/!%3���c�3|��|��}:�5���[28)Z4�$iD�4�A�:�i�� �Q��$�W��Zޥ%������
Q�H��H��B@�Ny^
M��
B
9�҅B��+{�D�
��;��&aHJ�t�@GT�1˺��X(�ݮ��I?�<�RM8�R�k
�T(�t"���RH��5��j�Rv�4�	M�������E!:SYArC���D����K.���ژN!�Q�̜��TC�6�$J�-㌲�$�'A���ޅ�lu���A����J]R�!aCM�0Y-�dgW
B�l��e�^=�C�n�M�5��B�(�k�����M��Ѣ7��S��GБW��WU}�
3�w�1��褗n�騧��ꬷ�ۮ�^f6�[T���{����/���o���'����7���G/���Wo����@@"�w�TaR{/���o��觯������/����o���������H��L��:���'H�
Z�̠7���q� lN�BH���
Wg�%D%+������8̡w����n.����h���������&:�P���H�*Z�X̢���.z�`��H�2��hL����6��p���H�:��x̣���>��� I�B�L�"=�
T-򑐌�$'I�JZ҄�"@�.��Nz��(GI�R��L�*W��V�򕰌�,gI�Z��̥.w��^���0�I�b��Lf�ƦL괨�Ќ����ES-ڻ&t��M�L��ǁ�@ ����8��]�������F@)��5�S>���~��
�@JЂ�M�B�P�<����D'JъZt:���F7�юz� 
�H�����(M�JW�Җ��0��LgJӚ��8ͩNw�Sڪ�4��ZjဨEIR��&0��P�����L�Z��XͪV���z���q�@6V���� 7.�n�4L��G��ЏH���h�@�*U�@b�dP 6�V����QQ,Z�Jժv$Neͬf7���z���
�hGK�Қ���M�jW�Z���8"_���&��f�Nmf+�|#�$J�!�� ���@v�Edr�>W�� n��0��ە\B�M�C�K���M�z�������|�K����ͯ~��������L���N����;�����'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL��Ư��uq���x|�x/�+�wsFn(�@$��j@e�H�r��+$3% !�
,	X��	H�����7O�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��\ɲ�˗0cʜI�&Da����RC�M�;c��ѣH�*]ʴi�N��3	ΩիX�j��UcU�vr�9��ٳhӪ]��(�>,7pcK��ݻx�� �X�J��L����2cL%���Jo�!�L����'l��N�&d��X��b̨S�^��-�S�Tt�d�ڬs�������N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6� Z��"�&pH�����=lC�`�\�I�<��4挖��CP?�)cD���Ќ,�x_9:���.]��dY��>&i_5$!��PFM�T��L�XfiU!�tmh�`v��"�8J�b��� �_���-`|I(u1�9Ŵ���t�#��@,�2�:.�$��Ȅ�.�0i�#��b
���'"�����F0�\���(4��7�d�A��d�hC3�
	ɔ����R
z�'*�E
B�se�%����s-����ƚ���[y��|�f�7v�{��ѹA@��+�6�K?6�+pt� T60�c�o�
6�o��7�+R�/w � 1"�l�.���r~<��2}��������� L���:�<-��Dm��H'���/����VӲE_Am��X�	Y�\w��`�-��d�m��h����l���p�-��t�]�
�e��5��#P�|.��n��'���7��G.��Wn��g���w�砇.�褗n�騧��ꬷ���.���n���y��������o|{�_4_ă��G����Wo���g����we�އ/>j_�?��l�}������/����o���������H��L��:���'H�
Z�̠7�z� �GH���(L�n�a
��0��gH��Na�
w����@���H�"�HL����&:�P���H�*Z�X̢���.z�`��H�2��h�<̗F欣�pD�.����,x��r��G�H��™Q��/@�[���|�q��.F�G0��&7��Nz��(GI�R��L�*��U�򕰌�,gIK�L���̥.w��^���g�I�b��L�2���f:�Ќ�4�I�jZ��̦6?��m�D��L\tq֤�L�Y���v����I�z��L����~R�gG�@d�|IB��P��
�D;A�'@���=[ ���"2(A� ����A	 �t�)u�=��x��ͩNw�Ӟ��@
�P�JԢ��HM�R��T!.���hD�A�]HA�م>�����ĵ�]4��U�<��"1�5�$�U,K l�ϴ�՗x�M5�K�����M�b���:�����d'K��Z���ͬf7���z���
�hGK�Қ���M�jW��ֺ�����lgK��d���ͭnw������
�p�K�����M�r����:��Ѝ�t�K��Z����$v�����
�Mc�]8���|B*� x��I�|�����=��!�
,N'�=�	���m�*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C��ȏ�ȓ(S�\ɲ�˗0cB<G��̛8s��ɳ�ω˖=Jt�ϣH�*]�T�3ka)w�ٳ�X�j��U+7`�	�v��ٳhӪ��+bnU��]K��ݻI]9��,4�����K��
+�ZY#K����*lv&,��ɠC�V۩��j
1a:V���װc7����7or�Q�+����9��
����)�)W�����K��N�����k�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6�!<!�
,Q)�	�	H�����*\Ȱ�Ç#J�H��ŋ3j�ȱ�LJ�.#�l$ɑ%Q��Ȳ�˗0cʜI��͛8s��ɳ�Ϟ�~
J��ѣ?w�B (ҧP�J�:U�Aa�X�ʵ�ׯ`-F��)QسhӪ���+v�ʝK�nNS�B�˷�߿�!�
,P%�M�	H�����KȰ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɒ�5�����I��͛8s�$Я��c�J��ѣHo�s$j_9��<���իX�j%@����=\F��٭hӪ]�V��e�"��G��ݻx��m���u�
L���q��ZW����K�L��Go����S1ˠC����s
��+���װ�)g놫t$41F�Y���W�k�*v64X孵��У�䖍[:n�$TR,�����s��ݚ�1��q[&����ٹ*���:�����������}h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x橧E���矀*蠄j衈&�袌6�裐F*餔Vj)G�!�
, q�!�
,U'�=�	(N`�t*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C6\Ǐ<�(S�\ɲ�˗0c�<G�\�d|���ɳ�ϟ@�

q��e��y*ੜ1�P�J�J�j�gв.+'���rˬ�K��Y�βe�����r��ʝK��݇�F ���K3IW��Èu5p�@n�*-`F�7g�3k��yc��%�䥵��̺��λ�"�&�,oˬm]��
����۩��jY]>]`E�rɆK�N���ά1_az������,v��v~�_Ͼ}ǃׁ����N����oȯ?�~��'��S�@���6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|�)�I!�
,['��	X�N �|�	�gN?�#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ!�A|H���y(cʜI��͛8s�y��O~��+���ѣH�*]�4㲧O��[� ��X�j�ʵ+Rh`�=�7#B�eϼ�]˶�ۮ��.+��\�疽�˷�߿wI��윜>���!N�d�#K�L�,�Ԋ��Ҡ��.��欲�ӨS����S"���I���]Yx� ��ͻ��\X�#К1yM��KW���rz}K�N}�)y�.�ȑ�u12�W��X����ce��3p��!�I�����ߏ�d�O��Mt�%�� -�鼳K-,1h��� ?�T� ���i(�(�!�
,!T�	$pLX���
\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ��Dɲ�˗0cʜI��͛(��ܹl!7�@�
J��ѣHG&[�4��I�J�J��իS�j�ʵ�ׯ`�zժ��@���]˶�۷p%�e*p�q���˷oйP���K���È'[̘11n��XD�l�˘3k�
jC�q��&0�4s�6�^ͺ��װ_p�s[ϼ���G w����E�x�]���[��@Y�K�N�c���/K�3ٳg����[������'��07nЖ�_��<b���G���_֔�\9x��1�%��t��A5�|0�%
��'�8��vU.:��MdЀ���
m���3���*
`�x!ϊ0���!5��1�l �+� ��x
�PF)eD��+�`G�`�hS�)&���5�xsN:  Zf�)�!�b��I�w�,S�2� �/� H硈^�Ң��Σ鬳+��sNt�f:�:sv��3`�o��󎦨��Pg�T�;�
�$����ꩆ�֪�yy*��֭���&{խɜ���"��0j
$K��f��L��ȶ��ҭ����⦫�G<��S2Š���^�Y���K�g����,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��T��N�Xg���\w��`�-��d�m��h����l���pǽ�:!�
,a-�E�	d#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ
yȒ��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë$O�����ӫ_Ͼ�����˟O��������Ͽ����!�
,R��	H��~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ$��Cɒa��0cʜI��͛8sޜ7�_�l��Y�ѣH�*]ʴ�S�˞B�9P�ԫX�j�ʵ��c���P�D�A�c㵭۷p��}ȓ*JQ��5Y���Lx&?v�qd���Y��^6Lȣ��˘3k��v�o�C�M:�P�+K���c�{K˞M���ʪ	4 W���(��xa�X��:�ͼ����e<�C	 �gD@ 8���Ë�iF������Г����˟�p�~�����v�(�h�&��6��F(�Vh�f��v�� �(�$���;%���,���x`�v�03�H�6��:���>	�BI�F&��5���PF)�H�Mi�Xf��\��v]�)�V��i����W��@�0�JS����WJ��%��8�Y�8�]��>�HÏ����*�ŏt9�?`��J������9���.|x#�@�(��@���*�w��UH��D�.��2����M29�\A��̮����
Dm��R���Nۭ��j��Ғ[.�碛���r;���.��{-��+����k�p�,���R�HД�4��B�Tc
A��M&45�� 7Rz�@�@C
hd�M�ެ�� P7դ,��
e
����T�24��.t%.� �9_4
A^d���<�ɨC3�U[.�$K.��b'���9Dt�	��@."w  ��#�X�pׄ�'�
�)3S�_��
'�u��FͿ$��Ņ(K��	kY�9�������b{E2I�|ԅX9D
�p[q�2���*�"����
Q�z�Ld�"���*��@�-t�O:��D�0��Gld�-k�@�Xc�2�PB	8�SKԁ��Q�H��3�W�`�;�˼�Zv3�E<A�d}�]Aڀ�q�#F̂�HF
�Y�ba4��
d��ָa?Q�D����
T��`P)#�l��\�g]�@p�
�MhΈ
���g� �2�3�al�W��9��_p�WC4�: ���0B��I:��Gxpc�@�}���p�S1�"	�HB:�9� �Ptr���1$&7��Nz�C���(GI�R��L�*W��V�@I|�,gI�Z���%�T��^��q�K(}��a:Ă�u*T>bb�R�!���d�,��[���N�g!øH8��nb�{H1�I�i�v���<�I�MDh��7���~��Q�@JЂ���G��΅2�Q'D'� �hV�rI�z� 
�HM)����(M�JW��u��0��LgJӶL��8ͩNFV��o	(P�J�WB3�7-�R��Ԧ:��P��T��ϤRu+G��V�$ԭz��`
�X��}���hM�Z��N�tu�p��\Q�U�,�/]r�\�Rנ�5�}��`�`U���z)b���:����Pa#K��ZV����.���Ҳ<�,+�Ї���w���D�`�H�6�o}�lg;�����ͭnw�������m�6iV��2��M�r���枩�΍�/3+����ͮv����,��
�x�K��7>��w����7u|�K_�����ͯ~���������Ko�L�P�XM��;������3N����H�������q�	aW�(N��W<T��0�1xN,�ۘ��x�k��xD>����L�"��HN����d�޷�P����L����Xβ����.{��`�3)�	�����@.`�?���=Fa�Pǚ`�r�v���@G4�����	`���Dx2C;)�U�:c@h�@� $���F���9E��/yRi�\���95���V��հ���-�Z�ָ~���t�\�׾���,�b;�>������J��Ў���M�j���ֶ̮��l{�$|���y�j�zT��n�!ł�����-�2���^�7���oB'�߁)7�N�!��;���׷��r�s�(��w�q�
.�Vp�#��H%8 �'�8��Jdq���#����7Ą���8_+BȜ����k����H�*�$p�\ U�G$���7,�;�8}�����!H�������2rx<!���M#A ��#@zo�B��&��Z ����O�O 0��I�U�!B�CQ�@�Q�cp�!��<�U���G"��A��Ed*��8A�~�����Ͻ�E���פ���O�����0�:��|���{o~A�/}ӾK}Q~��_�mh_��`�Ma����'��B���V�ځ��!
~�J�W �`�E{�}Pa�f�}-q	��~�|�pX�x�2|x؁�!��"�l�7�P�Z�{&��,��ׂ��08�4X�68!�w� �:؃>� ��B�<8�Fx
x�J��
��"�L�)E��2�Vx�X��Z�S����Z�^8���dx�fKh��хl��p�[f�t(%nx�wX�yX�|8�b�[؇�x�s8��x������؈pX����8��X��x��������؉��N����8��&{F�yop(t8��犤�~@vH-��h��(��H����� ��x�Șk�d	'(�8�	7�4�ۣ!�
,
N��	H� ?~*\Ȱ�Ç�!�H��ŋ3j�ȱ�Ǐ C�I��ɓ �MD�RỖ0cʜI��͛8s�tX��y;	rJ��ѣH�*]��ӋA�J�J��իX�  L㸂r^ʲ	�yg��]˶�۷3;]ҏ%8�x�����ݍv~B�ې�G�}+^̸1˴G7uL����YOx���>̠C�-R��a"|�H�b�-3�pY	�H��ͻ�•���P��</N�Yc�}K�N�zEȒ��2^�Nѭ��O�zr��Η_Ͼ=���˟O��������Ͽ���(�h�&��6��F(�V�|f��v�!i]p�0#�H�&���*���.��2�H�6��&~��@)�F�
i�H&��L6��PF)�TVi%N��"�&phy�`���=lC�g�\s�I��C�8�A�i��
�Ϝ�	�:�u�ᝄXN[��m��KLψ��I�Lڨn�^�RO�j�S��5Y����g��>��B1�E`k��z�\0Yc��	�"�*�r[FEҔ�(	ݰjC�<�h��d+�	~P'8�W?��F1�̳Ω"I!�$0%�&�p�iG�P�\�gÌzP�t�Ea�ĶT�I�(�E!�x�pB_/�$48������Q�ִ�E�[��		ӓ3eJ�2���3��\���C��y����,����!#9��H��zI7���PG-��TWm��Xg���\w��`�-��d�m��h����l��}E�-w�Մ�Q�s�-R1z��- �(1��n��'�xE�,ЋG.��Wn��g��朻%t����@����n�w���.���A�������/��īh��'o�,�����G/���Wo���g����w��/���o��觯����>�q�/���ȯ��y����)��H��L�	�:���'H����t��*n�A���4�M����(L�
W����0��gH���8̡w����@���H�"�HL����&:�P���H�*Z�X̢���.zq|ܸ�����l�hL����"���a�Q�r������>��� I�B�L�"��F:򑐌�$'I�JZ�̤&7��Nz��(GI�R����P9�l��]��%lb7X^�t�,��r���7|j�1�G�R7����|�	q�m���iO�̦6���nz���8�I�r���L�U��v���<����̧>���~���@JP(���Va'B�І:���D'JъZ���*�f�&���GGJW>N �$iVT�R��-�H4r�+�T#��H%n�S�@��@
�Pt��
��Hm�Fw�Ԏ���P��T3�j1�<6��p�
��M����F�U�����is��-���L� �PUy|�Gm�Z�S&��b�4V���1�
�eH�p!"��)�j?��������<�1��Z�����lgK�����ͭnw������
�p��j�6���VY�]��,�� R�𨝭`M��,�(
�d+!��@-�9�6ЄA���}�0�t[
ߑ����ͯ~��������L���N����;�����'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL���8α�w�����@���L�"��HN���<l2��PV��q�Y�&���r)��p>a�_���[���@�f2�wh�>��
�P�r�;e���	!�
,�,8J	H���	�JH���K��E`6v�'�ZFr>�I��ɓ(S�\ɲ�˗0cʜI��͛8s���S ��!�
,O*�}	0&����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G�?�I��ɓ(S�\��3�ZʜI��͛8s*ܥ��ϟ@�
*k�ѣH�*]a��DK�J�J���\X�c��ׯ`���'ZسhӪe�F`@!�
,O,�F��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë(O>t���ӫ_Ͼ�����˟O��������Ͽ�����:!�
,P*�H�	,#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ�I��ɓ(S�\ɲ�Jn.cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë/O�����ӫ_Ͼ�����˟O��������Ͽ���(�h��!�
,g$�@�	xo���*\Ȱ�Ç#J�H��ŋ3j�ȱc�y�<�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�<�����I��ѣHe�[Z�\ҧP�J��pY�j˲.�ʵ�ׯ/�Zt��5k`Ӫ]�v�7+V�K���ݻx��B�T y|,��K��a�����U"m�K�L�d�����7o�UM���]V`s�}�f0��մ�۸;�m0P:Q���-��q�]�A�@��У^F��7V��kߎ7ݺt��q�O>-?~�ӫ��n�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf�eE�<!�
,O'��	H�����!\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ�I��ɓ(S�\��$8>�ֵ�I��͛8s�4�1�]�#���ѣH�*���#4o�
����իX��|F��GcހN%���ٳh��R����t��ʝK�.JY$�	+�ݿ�^a��D&���;����es`E�N�ܢ�a���Ϡs�I�����]�,��װQ�)9#s_Ʊs�ލ�P��yN<�U��_μ9�~��K�N��:�ճk�!�
,O,�F��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë(O>t���ӫ_Ͼ�����˟O��������Ͽ�����:!�
,#!O�	H��Aن\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��(�J�L���˗0cʜI��͊�"ޣ��c;~��J��ѣH��N�yC)5��4��j�ʵ�ׯ5w=�GPh�s�%���<q(	�#����k+�޼����7/0qB�k׮ \}ɲ$;��<yk��	���ϠCLF��i��U�v�t1���6�@w+�}���;�@c�[G�g;��P~��<�Nʛw�9A��޵#�|`?�9c�h[����=�֭�ɇ���]�������u��;��[;��<����z���	��z��W�~��wׇz��:�
��e���;ܭ��0�(�4�h�8��<���@�H�����g�$���dSN]�$�d�Ɣ��wX��^?�s��v�N?j���*H���9�]ac�؏s���v�0�%�� ��� ��j衈&�袌6�裐F*餔Vj)�nI@lGr5��XSBx��3�LI�9���eS�(�B����t��)�Z��ߛ�}���:d?
�*�#���,��~�N��Pҏ�d:���v���+��k�覫��>���v�|�eS�$�I9Ř�L�
�'p]�C�:��3f:�3f9���#��j?����|�
��,���y2xs�*0<�ȳO?���� ��_�j��+����@-��Dm��H'���L7���I3��8����9��/+��M��ه,�p���`�N'�q)�,9{�ц:���"��A��qM;��w�srd�PK?��q ���@�̳�w�d `�A�n�騧��ꬷ�%��Z�֤U�u"�Ӛ}���;�"\��R`�C�;p�Ko�@N�J��	���6���<'�!9�x�,a�p7�N'"̲��r�e?����:���H���Vh��j��p|�a%�}�l����A���K��:�Ў���H�f�G܂cF�=��q{�Y(�![ݏ0Y'��9��;j� ���&:�˔��)%���#d����J��]�v�6l/
��AF�[�c{�37�a�����Mӻ�p�`c㇭p�0`��x���Q� @���&7��Nz��(Q�MMq^�*7D�,4��(�\c�.zyŬ�7�~Ȑ|€EJn���I���1!q��)ȑ�Nd���F	~Ѡ����:�!N(�D�_?d��]\��<��ā�Ô�T
튑��s����]_� ~�)?� ax�C~�à���#H!�,�IZ���B�4�lͬM�Y�ZƢy�C���wDq}�0��Lg��6�2�Z�"��3�T}�5+�F���}R��Pǁ��	�lD �*U�wa<�a ju��*?�t'�q���R�D�ֶ���p��[�4&M��E��.r�W��(�^�J�\���bˍl�C7xGbK��N�1ӆb-[��nֳ���h�qppV��M-jW��ֲ����-lg+������-nw�[�*�xUJ-�K�����E.�K�_P�Ѝ.t���
d��v��l`#�
�x�K^풦��M�z�������|�K��7I�PHp������:�\���.�����̚�n��`��l�
[��
��7��{�� ��GL����(N��W������x�1�!���w(�%�r�Q�\b�E�36\�wl`�(�����&;��P����L��x���QrL�]��9�E����}`��p����6����p�s�/��k�\�E.<�8��%3��d9�ЈN���bh@#�3�sQ�<�b�	X(F��1�	CG&��M�R��Ԩ���c�eI�y̎�xDh�
���8�>F��^�������Q�`���ͅ+�`�U�Zǵ�7��	'c�Vs����n{{�Î�mB�\�b6�v���n��M�z��η����~�����N���O8����q�d���!�W�N�����/�qvA�P����w��#�9�)��Ϯ��(w��gN���*���w����@z�.���8��g��p�8!� ���Q� ��XϺ�������CXt�؁re)O���v�ظ�3��f����e��@�������9̰)Ē!�s�|��;��߯1�q	!�B�0F�Ҙ_l�i�W�GO���><X�6 j/�'�^A�o����I�kb�c0�1��SD�����*�F9\~!���9|���[��Q��__�� <������P��������� �#��O����	����������8�X�x���
��؀���8�X�x�����؁�� �"8�$X�&x�(��*��,؂.��0�28�4X�6x�8��:��<؃>��@�B8�DX�Fx�H��J��L؄N��P�R8�TX�Vx�X��Z��\؅^��`�b8�dX�fx�h�u�!�
,
N��	H�`�~*\Ȱ�Ç�!�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��Cɒa��0cʜI��͛8s�t��#<x;	VJ��ѣH�*]�rӋB�J�J��իX� pL#��vJ��2�vl��]˶�۷3E]e9�x�����8�lB�琬G�}+^̸1ʴG/xsL����jWx��h]̠C���@a��x���0/�����H��ͻ��}�
�P�av%��ؾ�K�Nݢ�� �2�3DOЫ��O^�:����_Ͼ�e���˟O��������Ͽ���(�h�&��6��F(�V��;�X��v�ᇺuE�0ǐhb�(��b�,��b�0�(c�4�hc�8ިc�<��@)��D�H&��L6yR5�8)�X9�E�6�wJ�DP�T���]sQ/�<�N2�璘p"�#���%e���#�$dH	٣�!q&�$�
��9\�C�Is�@���ɓ�6�̃�8��s[
��5��<u�#8�
t�@������:_O
e�%!��Y�)�P��;���;���;��?�
$l�|Kr[��������n����m+��
��-|?]�nB�+�|��(F�����K@��t����%�����bZ�@���� ��(�g1�l�N�
�а#�;P�ݦ�s��1�Ͱi��Ύ��C���;7���
�����=bb�]��T�N���C3�eٕaB��-.Q�\P
��H;y,�DN�
9�P �R���Q�����M���\Bq�
?k ��,�B�'�eD�M䬒PgC�5Cj%:���TH��
�jR(*�3�:~�C�'�	ߪ�}Ld�"z��G�`t��I���tpI�?[��ݳ@���D'���5�l�2YV/���@�?�آ�(I2�A&��V�r�<��1�I[1�F~P�9/i�;£�{�/?x��r��(�"���N�#�:A����+����'��?�<I�ED�1�0r�&���7�H�j1!�H�(t�����8�2��f����F3���p|��H�9ڱ�x�����=������ )�ܬe��H�F�g8EqA�䄲�4�X�֠$%��բ���¢��P�!��*��p��L�"s�Zz(*���J��^n�pv�0�ɒ,�� �TH2�Ffs \|����jJ����f5��M,Rӛ�\fA�9�o"Ӝ�$�@ԹNtNS��g<���sR�v�̧>��ϫ ��
�@JЂJ�Mh���4P�5�0"J��%W��F7�юz� 
�}&bH��(M�JW�Җ��0��L5j����+7�iKJ@����HyP�JԢ��'�R��Ԧ:��P��hR)ժZ��X��Nd�ծzի�d�W�Jֲ���hM�Z��ֶ���p��\�J׺��xͫ^��׾����
�`[׌���M�bK���,�}�d'�K;p���ͬf7���z���
�eCK�Қ���M�jt������k!:�&�$�m�%fs������
�p�K�����M�r����:��Ѝ�t�K��Z���ͮv����z���
�x�K���M�z�������|�K�"������Uh���L�L����IZ"xH���'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL���8α�w��������c�!9�X0bMzd����-�w3�)W�u8%>�le�(��A�w��0y ���n�|������p����L�:��xγ����>��π�P�M�B�ЈN���S�E;�ѐ���'M�J[���δ�w�M��u���GM�R��ԨN��W��V�Z�	�;��$�ָv���\����I%8쐄@#i�A�?���b��v�M�j[;QŒ����ĺy�6���M�r�[I\8�G�-���#O��ҽ�r�[!ͦC$�`���Uw��F+D�H���-��`�>h�+�L�x�����	�9��r���h6��!*�ds�z3�����@�ЇN���HO�җ��;��P��6
��_ؖ��8w"+[sc���(�/��I�쫰�@��(5�`��+�����$vdar�RV{�%�u�O����O����;�񐏼�'O��[��ϼ�7��{����GO�қ��O��W�ֻ������gO�����Ͻ�w�������O�����O����;��Џ��O��[������_\�#}��?��}+������h@�O?��	@��W������d	�%{�t�32��=
!�
,
N��	H� ?~*\Ȱ�Ç�!�H��ŋ3j�ȱ�Ǐ C�I��ɓ �MD�RỖ0cʜI��͛8s�tX��y;	rJ��ѣH�*]��ӋA�J�J��իX�  L㸂r^ʲ	�yg��]˶�۷3;]ҏ%8�x�����ݍv~B�ې�G�}+^̸1˴G7uL����YOx���>̠C�-R��a"|�H�b�-3�pY	�H��ͻ�•���P��</N�Yc�}K�N�zEȒ��2^�Nѭ��O�zr��Η_Ͼ=���˟O��������Ͽ���(�h�&��6��F(�V�|f��v�!i]p�0#�H�&���*���.��2�H�6��&~��@)�F�
i�H&��L6��PF)� ���gTfy�(	���`���:���I�8���D۸9�K�$��a�`xY��zyW��硈&�(�/�裐���`�Vj饘�t����锎.�Y
�B����Sr�<� �"(��'��"�*�r[F�ʔ�(	�jC�<D�hy$�*`��r�~����Տ���Q�B�*�iU�\t+�"pŦ3V@�Vб���/��>��k��
a��������l�4-g�'�*%�;𼣒B���ev�WO��F[Ae�
73�L��6���3�<�Ska$5�l��Ps��L7���PG-��TWm��Xg���\w�׸
��d�mvA����l���	
��@V�F�ҭ�H���/���߄n��'���M��@3.��Wn��g���w�Vڞcx�;�▮�I�Ƽ���.���A�������/��ė�n��'?�,�����G/���Wo���g����w��/���o��觯����>�r�/���ȯ��
z���)��H��L��:���'HA��u��*n���m�4�M�����(L�
W����0��gH���8̡w����@���H�"�HL����&:�P���H�*Z�X̢���.z�|ܰ�t/�,c�hL���F%���a�Q�r�������>��� I�B�L�"��F:򑐌�$'I�JZ�̤&7��Nz��(GI�R����P9p��Y��%lr7X^�t�,O�r���7�j�1�G�R7����|�	q�m���8����6���nz���8�I�r���L�:��u���<�Iϼ<���̧>���~���vJЂB��J;�І:���D'JъZ�ͨ�T�x,T�5��@JR�:QeI�����Dp)GZ���\A�I�G*�ӞR
>
�P����`��HM*e8�K�nD�N��T���'PU#@�a�	$`�o�Geʅ��4t�jE`@�� 8(LO��s!��h� �`Uy�+�Hm�ZT&!��b�4v��2�� ��	.D$�c8�Am�O(%�B��(XB�z�ֺ�����lgK�����ͭnw������
.�aڤ�B
XeAvQB���I��.��	r��E�܁l%$1�E�#�U��(�r9�7��$���K���
���ͯ~��������L���N����;�����'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL���8α�w�����@���L�"��HN�����%;��l�m7���wP.��,�'���@��w+���<f���\����7V���Z�Y/n�l+��־	!�
,l%�?�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�^�ԏ`5�x��=(g�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËO�����ӫ_Ͼ�����˟O����
�=!�
,p(�
}�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�O��~
J��Q���*]ʴ��<%rJ��իs`E�֯`�*5%o 4�hӪ��f`@!�
,l%�M�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI����8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë1O�����ӫ_Ͼ=���˟O��������Ͽ���(�h�b�N@!�
,"(�J�	H����*\��Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٙ�Ϊ]˖lZx��ʝKw*7ow���˷oPg��L�pLj�^̸q�ĊK�L"dĕ3k�|���ϠwM�t�ѦS�.�z���[�ɞ
��m��r�ͻwS~�|n8��ȓ+_μ���УK�N����سk�ν����ËtO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<��c��!�
,l%�?�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�^�ԏ`5�x��=(g�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËO�����ӫ_Ͼ�����˟O����
�=!�
,p(�
}�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�O��~
J��Q���*]ʴ��<%rJ��իs`E�֯`�*5%o 4�hӪ��f`@!�
,l%�M�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI����8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë1O�����ӫ_Ͼ=���˟O��������Ͽ���(�h�b�N@!�
,"(�J�	H����*\��Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٙ�Ϊ]˖l?�޶kK��ݨ����.�7nw�sغ
�
#̸���o���˘C{�aûb�C�1ٻ�U&ͺ5�b�?��M�r1}����ͻ��ͨ��M�8��W_�|k1v�e7�N}*7vB��\��w�q���ot�:��ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��R�!�
,
N��	H�`�~*\Ȱ�Ç�!�H��ŋ3j�ȱ�Ǐ C�I��ɓ ��Cɒa��0cʜI��͛8s�t��#<x;	VJ��ѣH�*]�rӋB�J�J��իX� pL#��vJ��2�vl��]˶�۷3E]e9�x�����8�lB�琬G�}+^̸1ʴG/xsL����jWx��h]̠C���@a��x���0/�����H��ͻ��}�
�P�av%��ؾ�K�Nݢ�� �2�3DOЫ��O^�:����_Ͼ�e���˟O��������Ͽ���(�h�&��6��F(�V��;�X��v�ᇺuE�0ǐhb�(��b�,��b�0�(c�4�hc�8ިc�<��@)��D�H&��L6��PF)�T���F�T�e��$�Ζ`�y�9��&�9ޝ��6����z�\�P]�pb�Ia����I�	�硈&��u��裐2��@�Ej饘f
sS�©�T���f5�	�����R�7�!�-m$j���+x�YF+�D�*	�p�C�<T�h�R�,]- �|,�n0���5ϗ%��
�B@'��C(S�Y�(� 6�l�2YV/��б݋�-
x��:��<�6t-A�|�O��|<'�Qڤ�E�|JԤ�	��<�1�]<��� �^"��
7��
7�NA4���@�,t�A�,]nk���y=��PS��B�X��Xg��tLo��`�-��d�m��h����l����n�-��t�t�x��|��]��~�a6ait��4L�HJ 7.��Wn��gN�DH��标.�褗n�騧���z�鏿.�C% �츛�Y׹���/��o���'���	����G/��Oo����B+�w��/���o��觯������/����o������{y��뷈��q�;��(;T����'H�
Z���3�z� ��r�ۍ�l��	�6�&$�+���bH���8̡w����@���H�"�HL����&:�P���H�*Z�X̢���.z�`��H�2��hL����ynm\POl�8��x̣���=��W�#I��?��p4�"��F:򑐌�$'I�JZ�̤&7��Nz��(GI�R��L�*W��V�򕰌�,gI�Z��R�d�r�˰a�e5)\/�R�a�g�����[! g��2�IE�.���F ́Ȃ��a6-s�y�l��L�:���v���<�I�z��4�.���~��
�@�ҹ��M�B�І:44|x�D'*%/P�*ɺ�F7�юz� 
�HGJҒ���;�<��}��&z�L�Ӳ�˜3�J+rj�Jp��	�F���jI�Q�J&0��P�*��K�Z���Q�°:��r��`
넸 V�85P�G$���7�5dWe�B�J�H �" <�4�"�9v�V�c����s	$�3�Ad�T��a�	
&P6��h�1d��uHjQӮ��R-�A���
�Ҷ8-�V�������
�p�K�����M�r����:��е�6+�_�p��8w�«b��.+�/��=����p�@��Ϥ�H\�>x� %�#J!˒K��d�K�K���N����;�����'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL���8α�w�����@���L�"��HN�����&;��P����L�*[��G�-����涸�M0,�.�rf�'� �@.cV.��L�8 c.��@�4����pQ�	���]�@~B`p)$ !�
,
N��	H� ?~*\Ȱ�Ç�!�H��ŋ3j�ȱ�Ǐ C�I��ɓ �MD�RỖ0cʜI��͛8s�tX��y;	rJ��ѣH�*]��ӋA�J�J��իX�  L㸂r^ʲ	�yg��]˶�۷3;]ҏ%8�x�����ݍv~B�ې�G�}+^̸1˴G7uL����YOx���>̠C�-R��a"|�H�b�-3�pY	�H��ͻ�•���P��</N�Yc�}K�N�zEȒ��2^�Nѭ��O�zr��Η_Ͼ=���˟O��������Ͽ���(�h�&��6��F(�V�|f��v�!i]p�0#�H�&���*���.��2�H�6��&~��@)�F�
i�H&��L6��PF)� ���gTfy�(	���`���:���I�8���D۸9�K�$��a�`xY��zyW��硈&�(�/�裐���`�Vj饘�t����锎.�Y
�B����Sr�<� �"(��'��"�*�r[F�ʔ�(	�jC�<D�hy$�*`��r�~����Տ���Q�B�*�iU�\t+�"pŦ3V@�Vб���/��>��k��
a��������l�4-g�'�*%�;𼣒B���ev�WO��F[Ae�
73�L��6���3�<�Ska$5�l��Ps��L7���PG-��TWm��Xg���\w�׸
��d�mvA����l���	
��@V�F�ҭ�H���/���߄n��'���M��@3.��Wn��g���w�Vڞcx�;�▮�I�Ƽ���.���A�������/��ė�n��'?�,�����G/���Wo���g����w��/���o��觯����>�r�/���ȯ��
z���)��H��L��:���'HA��u��*n���m�4�M�����(L�
W����0��gH���8̡w����@���H�"�HL����&:�P���H�*Z�X̢���.z�|ܰ�t/�,c�hL���F%���a�Q�r�������>��� I�B�L�"��F:򑐌�$'I�JZ�̤&7��Nz��(GI�R����P9p��Y��%lr7X^�t�,O�r���7�j�1�G�R7����|�	q�m���8����6���nz���8�I�r���L�:��u���<�Iϼ<���̧>���~���vJЂB��J;�І:���D'JъZ�ͨ�T�x,T�5��@JR�:QeI�����Dp)GZ���\A�I�G*�ӞR
>
�P����`��HM*e8�K�nD�N��T���'PU#@�a�	$`�o�Geʅ��4t�jE`@�� 8(LO��s!��h� �`Uy�+�Hm�ZT&!��b�4v��2�� ��	.D$�c8�Am�O(%�B��(XB�z�ֺ�����lgK�����ͭnw������
.�aڤ�B
XeAvQB���I��.��	r��E�܁l%$1�E�#�U��(�r9�7��$���K���
���ͯ~��������L���N����;�����'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL���8α�w�����@���L�"��HN�����%;��l�m7���wP.��,�'���@��w+���<f���\����7V���Z�Y/n�l+��־	!�
,l%�?�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�^�ԏ`5�x��=(g�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËO�����ӫ_Ͼ�����˟O����
�=!�
,"(��	H����*\ȰÇ#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J�(�]F�*]ʴiLYN�J�J���<%�ʵ�ׯ7s`E�سhӪiJ�@hk�ʝK� �n���˗�[x��{ׯ�;��*^�&7o��ec�h�3Ș7�̹�Hg��%���K�_�<�^�:#5j��K��L�b�[���� �a�Da)�v6g��+W�,ۯF��S`���س�u��W�U�6`k1�\���j�#% �Cq���˟_���
1*x�S�:��.E
7�d��+��]�6(�3��P�7�67�8��8y�a9����y��(��?��0���@��8�!�
,&%�M�	H����*\X�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s�����ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK���uv���{��<x���cׯ�È[�ƍ��l�VH���7Ř3k�̙�b��5�n��Ө����Z�t�*�xW,���rkysfNj+%���M�8�
�J�(qcC��ƣK�Z.C�
�.�p.|���X�|��bw��ӫ_*闄rdX�������*�͕�b��F[~�S6��7�,��h��g��Ԙ7�X�NX�s�@�5fPc"�蘉%Db�*��"���!A!TcA7�H�A9Ҹ��.���)��AG�X��C
$#�?9�@=R����x%�I	��/"�$���3Pa���Je�^k�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�G*무�j뭸�뮼���+��k��&��C�6���F+��Vk��f���v���+��k��!�
,-(�J�	H����*\H�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx��ݛw�>��.�p���w#^̸��Ɛ#�]'���˘3k	o��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËJO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��F�N@!�
,*%�?�	H����*\H`Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛���ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�
����ׯ`1�
K��ٮ
>\Rt��۷IwXE�
ܻx����O`5��N)Ǡ>��+^̘�;���[G�_�Ƙ3k��s�t�,�:�M`�s�S��[,��d�dI* �\�g�V��]v�d�a���R�e��+���\-9x0�l���RWx��$:��Ű��413+�y�1�6�����!�I�ҩ��ϟf��4�BMLWNu�%��J���'�PsI{.h�yC�5�$�7�b�1�hbF�u�M9�d�
j'�(�D�\�ύ3�cB5
��:��(�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔V(<!�
,(�#�	H����*\Ȱ�Ã�J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�Jʴ�ӧP�ʊJ��իX1F��)Q֯`Êe��+vƪ]˶�LS�BsK��ݻ��쇷�߿�xG�@:�`�̸�c��ʕ�ƭZ?3#ܕ{̹���V��VlX��p�����/�`a��ߍ
�=�ͻ��v6��'���ޜ��ͼ�s�⸒ e��ϳk�
� �83���AB����Ö`��_���O�q>q"�� ����u���7���

l��57˜S���L�f��/���+yÍ�ٴcF	��
A"�xP�+�#��b�4�(c����A?��"�C
9"�G��K2i�@3��9>)�=��m�e�_&ɥ�V0%�;6	%��y� fx'!��v��"�@� �ៀZd�!���K)��Mi(�ɏ@�褔6t�%��i7�R�/�T*�3]�7��C��L��8�Ɔ*�J�X�F8�R���$J3��rTk���r(��C<+���j8��QO0�t!��kХ���ߊ��
rȻ�Z"	6����N��,���o-�Л��>�
7S�2�찴��[���T,��g\i@!�
,4%�M�	H����*�n�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8c��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L�)�ˆ+^̸q�XK�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËJO�����ӫ_Ͼ�����˟O��������Ͽ���
�P�h�&��6��F(�Vh�f���N@!�
,2(�J�	H����*<�n�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯTo�K��ه��O �y��ʝK�i;x��	$�V`�~�޵�K�����y�F��l���`�͠��.C�̙[g·C�mЙ�_����w#"�+F�����	,!��G粁+���
��^μ�C3<]���.Q���[Q!����K�  ���|��B���f��O��
G�r��*B�K3�'_}(�0xb\"�x�A?}�0C|�h�]�Ѐ'���*���
z��(F�K9���/��rI-ɸ��.���3)��#S�T��2�y�c���9���Cqv�gT�M;XĐfPv�N��u`_�ifMa"��ng���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�C*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+�I�!�
,X��	H������\Ȱ�Ç
�S��ŋ3j�ȱ�Ǐ C�I��ɓ(+�����v.cʜI��͛8s���0[Gx�x�&��ѣH�*]�4岦�@�J��իX�B�A�Fp�8�De��h]˶�۷pm���_�rq���˷/�q�$�8�aY���*^̸��j�^��˘߮�(8qQ��C�M�$��4 W�\��]^� ����ͻ�o������J�9#�K�N��F3/E& e$h���[�O��y��H�z�����ßO��������Ͽ���(�h�&��6��F(�Vh�S���v�� �(�Ws��(��b�,��b�0�(c�4�hc�8ިc�<��c�")�D)LF&��L6��PF)�TVieQ�i�ϕ\>�A�t)�.���k��Zm��x�'N�م�@�G��Y�
�)�$	J�|&�袌�i{�F*)D�"�ܤ�f��&]Jf-�r%��pօ��H;y�ꪘmp����҆@��:�,�B�'�eĒN�bP�>��C�Rw���tA����Ѱ���E(��<a~�F7`��Z�v��A���
`��P�L��,F�bdK��?��'z�*K�#��6�h�@�ٿ�Wt#��M�YtI�X�;�32��3Oa��2�u�߲#�C�$z� 8��
h
č7K/m����70-�X7���[k�4A^w-v�d�mv�h��v�l��v�p�-w�t�mw�x�-�Sk�ˡ3��L2�,�L5��RM�t��-����C�/x��0:w��5�d�
7��7�h�
6�H�9Ԥ)�tB�8�h�:4˜^6��N�O ����#�t��#�p�)]�B,�Dq)�S�0���1��)��N1Ʒ�_5լ~KaP�8m䟇0Q�q&�8��
PD�z��A€rt!a����d��}���=qt��� E!0�}<�����h��N�À����L<fH1����>��-��G=P��m(D!^G�.�B?�9��	u���D�r��8���8�
bc~y8)nх0<Ѐa�&��"9H����`�a2xH�B�&�t��@o����8Za\CklF2�1XC��/lA
X�8d�1.h�VV�ΐ"��b�N�3F6�A�jP���I2��
j8#~� �)��̥c�s�4�C5MiYZվ�ͫ��E:��H����	Aҹvĝ��A�Ny�Ӟ�g=�9�}����?�9�{�jE�A�yP2��	}�A'J�|JԢu�C/�N}�Q�5�A��� �{HBV�2�fC�Y�4g�7d��FX�S�Vdf
<^&�~����۞tA����(9C�T��p�4iS��}�Ch�xJUPSWaU�`�6_MkL�!���(� � 2�~�5���N������$h=I�RR
�� �_;�b�B�,������)��e7����"��<K�Қ���M�jW��ֺ�����bK[������I	0��*�I�o�K�����r����:��Ѝ.}�+��Z�����ZZ���z��i+�K���M�z�������|�K����ͯ~��������L�Ce�N����,7
�mX#L�
��ܵ��7��{�� ��������(N��W��
a��-V�(r��R�	yj��9����@���L�"��HN�����&;��P����L�*[��Xβ����.{��`���L�2���hN�����6����p����L�:��x&�7>��i�&=쳠M�B��)�+��+z$��Ţ�T
>O�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z�ָε�w��^�������ר�>>�����դ�ˎ�n�m�S[:��yr��j���vu��[:T�#K��ܽI�Q�M�z��η����~�����N��%��O����;�A�}��'N�[��ϸƻć�{������³����(�O��W���0���g>��C�88͍����|?>Ȱ�s����G��n�hdY8`:Ip�TH��aַ��o��^���c�]&�>����v>q��$��D�'`�
o��	b��P��@�E<@ x0h��}�r]!��w#A ��
��	 ��@�>h��+�L�<܅/e9�2�Ը������~����7*�̾�����O����;��Џ��O��[���Ͼ�����E�z�3a�и�X���J�!4�gx�*p<��dʽ�>W|��{%�hXW~1q	:pv��:�}���8�X�x�����؁�� �"8�$X�&x�(��*��,؂.��0�28�4X�6x�8��:��<؃>��@�B8�DX�Fx�H��J��L؄N��P�R8�TX�Vx�X��Z��\؅^��`�b��7�fx�UFt�7{(hxo���@��8�sH|H�p���t����b
hd	0,�}77@a��r!�
,X��	H������\Ȱ�Ç
�S��ŋ3j�ȱ�Ǐ C�I��ɓ(+����e�w.cʜI��͛8s��ɰZ�y�x�&��ѣH�*]�4屦�@�J��իX�B�A@��q�8�4e��h]˶�۷pmv�(�_Jpq���˷/S���h�aُ��*^̸�c�j�n ����˘ݞ�(8��}�C�M����D�\��[f�m����ͻ�o�,z�%� 9y`:�ҳ�b��N��u��%��e$����_�O����$�)?Ͼ���	�˟O��������Ͽ���(�h�&��6��F(�Vh!U�]��v�ᇿyE�1hb�(��b�,��b�0�(c�4�hc�8ިc�<��@)�"9G�H&��L6��PF)�T���F�U�%���Ζ`���:�3P:Y
d$A�\Fm��@0�#�8s��'��t�C��]I}螈&��b�T(��F�П
&饘f�iL�1�˚�B��B1�e!)�1O!��
f!���"��*y��+�B�(�e�L�b�
�6��C�V�A�ȣ
�A�#� ���y�#z���G}`���<�t��-�m�\�i�P�UP���E�a��楏<�B{�E�֏�Q:�}�N�FI<sy2,V��#2���Π�h&�y�4`m3y�oʻ��ZW��<�����"�@Omt����}��(KG� �Q�����4 ��)��
R{PQ�A����5cgA�d�ܿ�q��
�|�w�2���E��}'�72�|k ��oE3�A�$��P�|<��Sr�7���T����t����S7��7�@xl#y���+�T��R5bi�Rx���.�$;4���9~��%�A@)�T?�1ܧ�,��J.� ���687�_���Ϳ9�<E�A��L��:���a��	Z0#޻�Q��k� Tʠ����(L������0��g����8̡why��@�A���>!�HL����&:�P���H�*Z�X̢���.z�`��H�2����;����6�$�r#+(�:�l|�����>��� �4=�L�"��F>�
t$�VqI�S�)�,�6}p��(GI�R��L�*W��V�򕰌�,gI�Z��̥.w��^���0�I�b��L�2���f:�Ќ�4�I�jZ���fQ�a
mjH)Y�7�I�r���I��i���%)G-؉$jl���̧>���~��
�@JЂ�M�B�І:���D'JъZ�ͨF7�юz� 
�HGJRFɃ�%�ϸR�R�I�6I^K�����s6�NqrJ�B5}ٜxjGxoD�Mm>���7WK�o�J��XͪV��ծz��`
�X�Jֲ���ZJ#Z��ֶ���p���(׺��xͫ^��׾:i;~
�`Ce���E��M�b���:�����d'K��Z��'
<{Y��#M�
m}V��T�y�j�"��$-�r��ڑ���#���n�������TBP���=���qGr��:������; �0��0…7�����Bn	:L�"0 @`�
f��AF��v�To��<�eZ�W-�-�`]�Ƞ�a�]\T�@�!a��#"�S*�܇�R1dt:�0�(׿(N��W�����0���gL���8α�w�cWC�(ޅ�҂�“g�a%Q,���+�E�	Sw�b��JHb��*G��MSK;�"sd~��I<����#���L�:��xγ����>��π��M�B�ЈN����F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z�ָε�w��^������M�b�>U=���]�d�ÀN�����q}Bl�
P[� @�	�������ƍ�v���-��U3��ٸz���L��!�
,l%�?�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�^�ԏ`5�x��=(g�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËO�����ӫ_Ͼ�����˟O����
�=!�
,C(��	H�����KȰ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
�pѣH�*]�QӧP�Ja��DS�j�ʵd.���J��ٳM�
�۷p��)8o���x����N໾��K��a�ܼq˖�QgKVLY2�ʘ'��Yo�dΜ%�NN�]ْu^ͺu�r޴Q�V.����Avͻ7gS�~�[�g�iG����ͼ9�.����N�:�-wν;׺�q~�f�@�r۽�_�ܰ]�n���m7�����#����c_~�&��"�;�ű��F(!M�h�M:l��'�3� �t8�=��$0�M�,��e��S�`���8r$?2�B9)$F<i�
!�
,H%�M�	H����	�KȰ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛���ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʽ��`ݹx��}�n;��K��^o�{��.�~�K�ܶ���Ί���!�0ʠC�=G�4�d�2���͙�װ�f���t��D�s��o�ެ�F��D	3�^�(�gР�V�w���{���}��"g�O~fnЖM/�AH�b���Wy)[��3��X��� ��̀��Nx�7���%�b���D?�p�J�?��O?�th�	�3�@딈�0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*�B-D衈&�袌6�裐F*餔Vj饘f�馜v��s�!�
,S(�J�	H�����!\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^�-7g�#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë2O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&X;!�
,l%�?�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�^�ԏ`5�x��=(g�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËO�����ӫ_Ͼ�����˟O����
�=!�
,(�#�	H����*\Ȱ�Ã�J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�Jʴ�ӧP�ʊJ��իX1F��)Q֯`Êe��+vƪ]˶�LS�BsK��ݻ�,Ʒo1�����7o�
Sh�����#K��ԕ'O�0{�TkiYȔC�����eP'*[���װ]���v�Rx��#���7�w�R8Znr��lq��У'�M��P�Ja�F����ࣗ�t(��A�pO�e�R����>T>�z�I��X?���&߀�E�%��B�!x�W��e��UX���r�Yv�!V��� "�A�*��ˇ,��_�L2�h�E%�1}%�1�,��D�S��$�A�f�P”�TNI�Qf�%JUV�`��dNAC���u9e1��l�i�BnR��W�x�v�9�s�z��I䤡�j����F&��V:i�$�)��vzc@!�
,J%�M�	H�����!\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛���ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p��=�o���x��uX��w��Gx���r�y��\���U;����˕k�|ՙ�d�~asU ѹa�S��j�jش�Q��VHu[�����eՆQy�6�D��9�ͼ9�g��M�&�m3\y[��Рa�#F.����U������ժI�̿ۿ����_��g�,C�
*�P�
\R�~�5�I�<S�6�Ra�|�G:>��y��3�xsN-`a5,�0Zt�b�䲁(�p�e�!?@�ϐ��h�I�;���PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*�M)Dꩨ��ꪬ��꫰�*무�j뭸�뮼���q�!�
,(!J�	H����*\Ȱ�Ã�J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۳�x�6�[�go���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËVO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�F�!�
,X��	H������\Ȱ�Ç	���o]ċ3j�ȱ�Ǐ C�I��ɓ(S���"8�0
�I��͛8s��ɳ�υ,[F���O�Վ*]ʴ�ӧP��\FS�~�H�ʵ�ׯ`Ö�A�Ǘ�8���f;6b�ʝK��]�A#J�(*c~0�,q���È����&�~m�s١;�++�̹���J�B�c�7ШS�^��f;>ּ�5�۸s���C`�����8c2���6����УK��Cn�'��6A��0N�����۔rБ��z"�������ӴX�f�( g
�D�
��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4:(Ll5�c������Di�H&��F�C�PFY�-�dRf�eT�-tN>�
�ϖd�)P(�c�l���p��^c
m�ϓx	$N���@����C�)�
�I�@vd(��F*餔jX��f��E��ঠ�*�?�i-���%�
�Č���H;y�j��mp��҆@���,�B�'+pT%JjBD�*��e
��jX�$�m21��i?�tA���Ҳ�n�A[("�q8>4O� %�E7`��Σ4�4�0a�.�
`a����T�qkPc�4mFgdK� �?$f�D��k���|0���rHImD�0?��%�r��x47�PC�q��X��3�AO�L���C�URuB�d�C��O�t|�.��M�jv#y#IB�=��x߭w�|��w߀�-x�nx��x�/�x�?��@��+��L��9UR��穕R�9='���s�@�$�M��"��27뼣�G8�p�;I��n���XB�>
A��Mx�RH�yc
D�@s���)�J�B@�^Q!�B�����i}�"�sonnD�.?��&��( W�� �H`.�>�\�`��@�G�_Xn#� �낇Ag
��G�A
��Dq��8b�e�l�0�J3�Qlo�l1�64�l�g1��@E�b,c�pF2��
�m5y�;X�*��P���0W��Z��HF��B+^*㦸�����WX��8��~`���X夤S|� I�B�TQ[T�2�0��r�c"'I�JV�t�̤&7��N��'︨Q��$~<�*sB{��`y
�`I�Z�򖸬�r��^���0?4�a���	��̐����IŢ��Z��̦6���n�q���8�I�r���L�:{	�u���$<�I�z��̔$���~���a�	�"9��M��2�R��i'D'J�;��ͨF7�юz� 
i81*Ғ��(M)9{DR��ѕ.��Lc����8ͩNY$ѝ��@
�P�JԢⴧF=�>�F�2��P��T����R��X�j9��ծz���%X�Jֲ���h�g)��ֶ���p��\�z�<��xͫ^��׾������7�X"5'�+�b���:���k��Xc �9�A��@Ț��-W=K�Қ��Դ*jW��֢g����lg{�����ͭnw������
�p�K\�H���M�r���|��Ѝ�t�K��Z������>��Pz��ڽ�@��u�����z_ۿbkaOGԒ^���j�@ 8w��� ~3�|�QX�T[XV!nb�"��`s-��c��l�
u׀u��З � @s֫��y��q
�<\L�'!u�8�+�s�����@ҍ�L�"��H^�~�l3��/��Le�:�𭲖��SHr��`���L�2��fN3F��6u��w�B�4LW͹9�h����4�=��π����+1p>����A&��r���քT�Ѝ���Z?,kƙ.O+B��Jp�F�ul8R2�h��HRA�Z�	�ε�w�N�p����
^aw���N����M.$)хŵ@ŏH<A#op�xxJ�kD�t�0����AC(������
+���H�p���<�U-��}�i_�	&(� �v�D$�2������8� q���"d��g�����Wn�T���0��c�h��8Ϲ�O9�ׄ�>��1���.=?��3�/��~zH��R�;�5}�/,���@��Bg%Q�_��W#�WQӁ�e$3إΙG�8��6tܜ�M��[�#��ғI���O�)m�x�����I�#O��[���;�7�������GO��/�����S���d�=AV/����Ͻ�w�������O��� �?��a���;��`�"�w���[�����_������љ/���O���\���>��O�����Ͽ�������x$�X�I�r��q��'Xk�4�@�����HH��8|Ё�|p�\fxLA��i�x�J�"��G/!�
,V��	H������\Ȱ�Ç	��׏]ċ3j�ȱ�Ǐ C�I��ɓ(S�|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ9�A�d�իX�j��U#+��8�$(��%�4��ʶ�۷p㊌бSF!�`��˷�߿��34$ZÂ+^̸�͵���pԱ�˘37�{\���/ݧ���ӨO
8��؂�"��3�@o�}N�����!�axl]���h)��h��9 @;����3���堢�F��>����ݖ�ɜ$����˟�v]A���Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h"qa������0�7S�4�h�8��<���@f�zAi$N�0��;D@D�)���dߔXfI�:�3P:O
%A┳�Ggns�A-�#�8kj)�M&�~�7��g眀*蠄.G]��&
џ�裐F*iH�4�ܠ��9)���PM�H
{�SȦ�r��(�b!���"�r*q�
�+�B�(�m��H���p�#�A74ِEjV�,c�21�A?�m� ���v^�S
xB@Y�s�H�:�;�:����H�d���$"pťS�R�
T�T��A����ʥ�<o���@g��{P���t���A@0?M��'�r�
7;{��34]�RK�㎞)���V]1�dM岋�X��� �67�$M�l���!�+��?R��fS(�D�Cní7r����ހ+�7I��(�'��Q�����7 �x���~���"YL͸Y�*�Rz���^�*��6��Q����]�P�_�ܐ踣w7����K���7����hr��Wo���g/�يe�������H?��/��*���/����o?fg~hG-����H��L�q4�:�!�{�G�|n��x,��z� �� ���(L�
W����0��N�%C��8�a
��)��@���HD� ��HL����&:�P���H�*Z�X̢���.z�`$��8>g��h�O"���6�)2k���">��"�������� IȚܱ��L�"�H��荍��#I�J(�Ƴ�&7��.��ԃG;��R��L�*W��V�򕰌�,gI�Z��̥.w��^���0�I�b��L�2���f:�Ќ�4�I�jZ��̦6�
klsD��	�I�r���L�:_T70c#�;�1�Q�uވf��>���~��
�@JЂ�M�B�І:���D'JъZ�ͨF7�юz� 
�HGJҒ�Tz�<)h�ҖjO
��	�\�
��?9�	�n�	�=�i�1�6D�:+��O����"D������7�A<���a�E!�U�B�OnD�cM�Z��ֶ���p��\�J׺��x�+�ƨ׾����tDUKX#�����b���:�����d'ˣ8R�����2�r���
�hGK�Қ���M�jW��g�CCek���0����!g^�۾���I��{�pD9N#.IR�J(����t�K��*J?���v�۟�:��7�-x�K���	�-	r�yl	���Y�ra!̍�{�0H���F�ڏ+ڡTA���ȗ@R��Ƞ�e֋px L�A�͋�!c )2R̐�;�TXLޒ
廸:[?�����@���L�"��HN�����&;��P�������F��<���)`�م>�,� �R�#V��&�3���������e�VA��o�'1t�LO�y��.	K���F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z�ָε�w��^������M�b���N�����f;��Ў���M�j[���ζ����n{���V�Y�M�r�r�P~����{�x7b�`\z��n��o` �w�-=�~��?�D닔7�k��wv)��!�
,(��	H����*\Ȱ�Â�J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�Jʴ�ӧPʊJ��իX-F��)Q֯`ÊE��+vƪ]˶-L��Qѭݻx9�87�;��޽���������17nԜ�#@���~1#��1�����n~�F�v,����O�񫺌�_ْ�&P���u�`N<grش�[���~ŊK�N=e�{�<��R��I�8��N��y��r5�AʆŸ�O����rEp��U���'�坱�+`�
;
İ�3�(ᄰ����0N
TP7R(�xaҌ,�<SN�N�$�(#X�a�
5ɬ�$��7�@F��c�qC@:+xя�A6RkN�$�l���N�Xf9Ԕ��`�!�
,R%�M�	H��A��*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��M��n��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶(<�	�ʝKWd?�w�˷�_�w���_ο�����[�s�*�:׸2���k����dΒ
�橀'o�8�^
�jp�֕v���۸��J穉�U��N������`fC"��#~�����Ԫ%KH3���m����6����F�\�.��,�g���m�v@7B9��g�"�B@6ɀS�����܇�b�M6:�L2ܜ�Ni+��Z�(��7y�"7�@�A.�d��8:�ώ���;9)dA<��:@��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v*W\��*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�*�:!�
,p(�J��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë#O�����ӫ_Ͼ�����˟O��������Ͽ�hv!�
,%�?�	H����*\Ȱ�C��J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s�<�n�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j���诮`Ê�ٳhӪ����%Ek�ʝ;v�U���˷�����K���x≯�c�vz�6�[�g�3k��q�ϠC;��O��ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËRO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�c�4!�
,(�
�	H����*\Ȱ�Â�J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�Jʴ�ӧPʊJ��իX-F��)Q֯`ÊE��+vƪ]˶-L��qK��ݻ]
����߿~���07n�+^̘*�Ɛ#K&ʏ���!�
,l%�M�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI����8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë1O�����ӫ_Ͼ=���˟O��������Ͽ���(�h�b�N@!�
,p(�J��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë#O�����ӫ_Ͼ�����˟O��������Ͽ�hv!�
,%�?�	H����*\Ȱ�C��J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s�<�n�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j���诮`Ê�ٳhӪ����%Ek�ʝ;v�U���˷�����ί��R�
ܕ?x�!�L��޸e���Vy�zVMZ踮�5oN�zs�װS��'6�3g�l��ͻ��w�n�+�̷��Wy�&����+�� �ߌ�k�N7NG�4��N�<YW�����ͼ��Y��X�oŇs����X:;�'�H�S�2�`�26��NܨV~VhaM��s���a� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x�C!�
,V��	H������\Ȱ�Ç	���o]ċ3j�ȱ�Ǐ C�I��ɓ(S���"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӝ˞f"��իX�jݪq��c_��PR����p]˶�۷pEJ�(*c~0���˷�߿���wdᐇ+^̸�c�j!�y���˘3kn���'N�y��ӨS��!0XCr�E�1�慁b
RA������x�!�_s	���nd���oD@����س�vmS�AG�3��w�ɺ�����O�b�~-�˟O�B��/�Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h"C€u�,�gY�0Ƙ�12�h�8��<���@��9�	i�=5��9��7P>���+�bP:Tf�eML�&�9�I��6���Q|�(i^��>[�i���ِ�b��G��#矀*��'��&ʐ��裐F*iH�4$ݖ�\:i�f
$C3"& �N���Qx�Ȋmp�C��҆@����,�B�'�m�J��
dD�W�+D�4d��X�̵��tk�����RHH����Y�HS�B@d̓%I�.t��I?���L#	�ѡ���I�ˋI�*�Z�$�/�k�-
x��:�Xl�<�E;P�
��?�A�q��P��"��d���E�h�7���
7��d;�HI�;��а���ODž��(˧�L�:Hb�ᐊ0y��.��M�f7'����l�M6�`QB:n�LP�p����~��N��'���7��G��W�7Q�E0D���yC��@Ψ]�2�d;�:+4��T�~�oy#�1��m�e��3C�xC��ě&�H��"��
o�*�L��9����6�\��*�;���Ň��$��9�8�#��G,YD�[0���q�S�5ֈ�?c�I�@QRa�P�9�aC��[�&b�	^T ���o����G�,`�	�	���"L��(��Y�6���4����D,vX�
H�������� S/�	C�B���E7 �u��������+,R)�"_!�8z!fx���9~AGq� R�A;���-��)5�I5���P#(��E�an���F9��md��X� o|�I�R����5��@x&���Ln��V�p�-�la%�>�'b$*�C�;�A2��0E¥2ir�Ӽ#�����I�jZ���斦��i�8lj�@>�Q�L�cr�t���<�I�z�38�q^�������
�@JЂ�M�B����:�%�(JJ@�WI�G�41�юz� ͒BJҒ��(M�J��ѕ��0%�;cQ���8�i-��Ӟ��@
�P�*����HM�R��Ԧ:��P��T�JժZ��XͪV��ծz���)X�̱����Yo�jPn.ŋl��\cd�:�5sͫ^I׽����
�`�����M�b[���ʴ(d'KY5A&�ͬf7�ҡp���q�gGK�Қ���M�jW��ֺ�����lgK�����ͭnw������
�p�K�����M�r����:��Ѝ�t�K��Z��ؽ�'�K����
�x�K��<rx5b΃�D�K����ͯ~��������L���N����;�����'L�
[��ΰ�7��{�� ���7�H�&N16����$K�q�(��X��q�Z����,��s:���JP��E�F�;�u]F��F��|�7���8
��(k�^��rżL�2���hN�����6����p����L�)���xγ�+�>��T*+���A�ЈN����F;:K}}��'�)/P:.V���7��N{�Ӡ��GM�R���%L��qgT%!����XH�a�Y�}i��R	�%!�H�p�k��$�(��Äe;��ЖaJ�j[�?�.�kB�m{����m�f$O���4�qW��Y�A�M�H # <�X���!���Šy6t�qc�F[-�A�}�s_�	&(� qr#�P�@�Q�c��!'�X?N�c�j	�a�֏[D��ι�w���@�ЇN���HO�җ��?D�L�F���_\ְ���wܚ��c���(�/��Ӭ�쫸�@v@��T�$@\Q?@�'i�����K�`�Y�I��N����O����;�񐏼�'O��[��ϼ�7��{����GO�қ��O��W�ֻ������gO�����Ͻ�w�������O�����O����;��Џ��O��[����Ӳ�����K?�E�0yx��8���po$� �ӟ~ȟ ��/���?��6xGA�Pk�wI�4z��I7/!�
,V��	H������\Ȱ�Ç	��׏]ċ3j�ȱ�Ǐ C�I��ɓ(S�|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ9�A�d�իX�j��5�K�r^"Z�L׳hӪ]�Vd���2
�\�m���˷�ӯ�
I���È+^��,�>67eL����V�^W����K�aM���Bk� ��14��0���e����ͻ�o�l�ֵ<-E6m�9�d��N����6�T$�ˆ��[�O�|[�1���޼����+�"?~����Ͽ���(�h�&��6��F(�Vh�f��v�� �(�K#�(��]*��"|3�(�4�h�8��<���^Ѡ��D��C�#$�A�\�P�8�A�Ei�7��N:�Ӥ@O$N9�yT�6eԒ8��&�p����'�w�ɑxt��矀*�A--9衈�'A�%�裐Fj�/
'h.aJ:�x�0C�B����5�%��X�1��@��J���~�� Jge*�.��A�b�
�2dCG��U2�T�LLyď<��A@<�a�&��8�T�F�T9Ң�@,�γ��9�6�-�Z�\ai�L�T��%Us`GP�1����m�#��7Т�@�f���"@�:��pFv�Od䉰yÍ��d�M��Ԓ��gG�4��\�k�y�PP19�T.�`M�ZK�m'���`߹�o�{��졿][��t�H
F�psm�|���MI��"���͐/�Ȃ�*���Lߐ���I���n�3f8I��(]s/�����)�Љz���cM>iBP�S����y��
#�8�ʔ]�U�@S3l��@�`OiD���6F�#P=���==c���3��J�,��@??s5/k�
��\�4��F5�־2%kQ�H�V��To#:R���πY��m�bD7{S�<�ᶈ$GOLaJ�B���0��gH���m���
w����J��T�p�"*��(A����&:�P��yS��E�#-�����.z�`��H�2�1J/<�!��5�q$+ ���HǢ|�vụ���>�)~� I�B�|Q""��F�D^�̣�"I�JZ����%7��Nz�%R�&�R��L�*W��V�򕰌�,gI�Z��̥.w��^���,�3�I�b�'�2&���)��l&�=����̦6���nz����8�I�r���,b�9g8�u��JMA�z��$!>e��v\s�
�@JЂ�M�B�І:���D'JъZ�ͨF7�юz� 
�HGJҒ��(M�JW�Җ��0��LgJӚ:�ְ��.X���@
�P�JԢ�Hp`�F�wc���"�/�jT��UͪV��ծz��`
�X�Jֲ���hM�Z��ֶ���p��\�J׺��xͫ^��׾����
�`K��fN�4�~ ���P
����˖8R�?8��/�	p�=�i�17�� +��g����"D�������6�A:ՙ�a�E��m3�}nD��M�r����:��Ѝ�t�K��Z�������z���tDm�K�(�����"z�������|�k%g���͕������L���N���`�"v(�l�U��%	[8@��b/���qX)��Q��j#.I*@R��1Px��gLcI��>5α���`���$����L�A=��&�@
3�M A#\x�@��c.,dő�Ñ/���AC|�a� _�qE;T+�7Y��Hbu�� �L��1"�=�	24�qA8d�DA��h\�aǐʢ�\��(�V!�<61${�Ӡ��GM�R��ԨN��W��V��հ���m��XW#���w!�Z ��@���Z
js�
v��F���@x@��w�ɑ�*d��+����qMO{��.	cg��v�����M�z��η����~�����N���O����;�����'N�[��ϸ�7��{�� ��GN��(lO��W���0���gN���8Ϲ�w���@�'r�N�Ը�v4�����x:{�Pb��Nw��u` �z��=��K�c?�\���7�K�F:���!�
,(��	H����*\Ȱ�Â�J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�Jʴ�ӧPʊJ��իX-F��)Q֯`ÊE��+vƪ]˶-L��qK��ݻ]
����߿~���07n�+^̘*�Ɛ#K&ʏ��˘3k�̹��ϠC�M���ӨS�ƚm��װc˞M���۸s��ͻ7�u��/!�
,l%�M�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI����8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë1O�����ӫ_Ͼ=���˟O��������Ͽ���(�h�b�N@!�
,(!J�	H����*\Ȱ�Ã�J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳh�fMƶm2�p�ʝ{p�ݻw�6��߿���ڕk�a�����CkI�L��˘R�\k��C���s�ZŜ�^ͺ�Fӓ	xvM��m��'��ć��_��_�[2�b�#P+�jãKY����o.\��*�߳��o6�@��ȫ_�u�����3fO��U�m	��Ͽ?T���[�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀F�N@!�
,l%�?�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�Zl��x��-Ȗ�ݽ���#��a��+^̴_?Ɛ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë%O�����ӫ_Ͼ�����˟O��������Ͽ����<!�
,(���	H����*\Ȱ!�v#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ќ��*]ʴ�Ӝ��J�J��U�6xJt��ׯ`��"�����hӪ]��)l�ʝK�.CW�N�g��߿�X����}�I�ƍ�7Đ#��Ǐj�dΜK&����0����bШS���+�0o�W˞M�!�-��e��������E`T�|ܸ=μ9�Q���
���5kγk�kR�}���N�<�k�4��k����7O��SnǮ_�KJ-n�(`S�y��9&�`Q���΂F�eVh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰��*무�j뭸�뮼���+��k��&��0���s�9�8�,���7��w��<�H�tk�S�%lpN?렋a1�HR@��+���c�x���Bh1İ[
�ma+X}d�C��B�C�K-��R@�l�W�	:�K5�x�A����/�s�$:����J�3���N�5��L4��.�;M_@!�
,%��	H����*\Ȱ�v#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s���Qϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸�c�K�L����Dct���竓B	�����O/�#����F���ǃ�:ظs߬V
4���,MЛ��܌�o���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(�D*���0�(�4�h�8��<���@)�Did���L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈V?�^��#�2Ɣ�<�VG�/���2Ĝ#�O�J��0�8��7�,S���ľZjt�xsC�d3L2���?���/�`Q@�T��9����BM�7����B�i�V�@.��3���L�BT�A��N?�֛�n�f�
�
��S/���6�.�#I����:�v[0l��I6
��O��N�.����'�4Í��z�3�䲋+����.Y�ŜC�4�3��q�Mtn!�
,(��	H����*\Ȱ��w#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^�c�Ɛ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��|��� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��0-C�2b�	fmd�i晲%���`�m��f1t�f���ڞ��'?���;�iQ��SN?���O:����D�.c̣�L�7d#�^�P���Sjd^���r��jjD�
��;�6�h?�4�L?��zꞂ�d뤣��JDl���3C���
�0�+d��N�Vː���)��y��ࡸ��IY�ެ����N$��ܠO�����H
p��A$�ܰJ?�"Z�q8�O"v@,qi���Ơ��!;K!�
,l%���	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�Zl��x��-Ȗ�ݽ���#��a��+^̴_?Ɛ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ����'�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�0��Zb��<`��U�P�ccF�ؚf����p��fTqn9'Tqމg�z:��h��T�\
���Z����墌6:�]J���ZJԙ�j�駠�*ꨤ�jꩨ��ꪬ��꫰��*무�j뭸�뮼���+��k��&���6���F+��Vk��f�-O��ζ�s�:�����?�{�;�J����{�+���+��K�:�֔���Ϸ۞Cp`��7�m����I�x�;�^�7��M%��M:bK28���Mpp:٤#�#ɜ0A�S�/BoKr��x���u0�K7!�
,S��	H���w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S>��"8�0
�I��͛8s��ɳ�ώ�>��I�ѣH�*]ʴ�S�˞f"��իX�j�j�%A;%��Ɇ�ٳhӪ]�QBGQ��Y�`	�x����W�W�l��98dᾈ+^�fY�|l^�ָ��˘�νxlE���n�L����'y֐��sg̫ya�߂�Fp�����/�a��[��f�$tA������Y۔�����z�������l�ӬX�_K����g�������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$~$�1%���������4�h�8��<���[���D��r���z�cQ;FF�b(�#�X֤$l���
m�y�'�ͅ�@���$2)�
1	�@�}��<p��矀:�\y
j��9P~�6�裐��KC�]YK��I�@�04CbB"���E��'���7��!�-m�)���+x��F|����B�bP�B�NC��\���K`H!!�k�f�"M!`
�]4��$5��
�B@'��#�U�dT�$6�u��bR�
TV2
A��A��dK���?
$�}��mC�l��{wT1��0��"�Qd�t�E�`zu���C��#�`�(��C�$Va1���<�˰L���SWM5IܠD�7�|v���E	�}�2�/D��֩RQi�[2������

�3�ڄ��5MA���3���3p�c��H��"��!��K���*�;R��nҹ1m����A@1�X���q.Ҧ�d�B��K�
5�'ߗ��B������i�-���&���!IC�$�R��wM
�ʷ�V5y��Bm�	�5�
��?�@���6@�d<��K Qj��Z<āQ]G�����B �Ҏ@��n
$]��5�q����
2 �$�v
��V�jP�pA�FP���u�#�X�3��a
�0�k���
�YLN�P�I���l`c���D��P!Y$5����6QLK���/��$h�!���HG�c�u������>��� ���Dl�����"�DޮeRQ�#'Y4�D��̤&7��Nz�,�`�G��=D��J#C��V��G�y�,gI�Z�2���G�n9�]���$0�y������d�f��f:�Ќ�� �jZ��̦6��fr��g$�yM����L�BX,u���<qe�y�ȗ�̧>���~��
�V�)Ђ���<�B�І:�8Z%D'JъZ�7�DKB/�#7r� %�"t�#|�41�\JdN�Җ��u)4M)Ӛ��8ͩNw�Ϙ��@
�P�����u<&R���	5A&M��T��ϡ��T��{R�ծz��`
�X�jK���p=�7�ֶ���p����*׺���d+^��׾3�~
�`K����p<�b���:����,N'��Z���ͬf7���zQ�`�gU�ś@c��M�jW��֦1��-�i5Ʌ����@�1)��He\z�^}K����٤+r����^f�΍�t�k�R���ͮv����z���
�x�K�ٕ���M�z�;O�����|�K�������򫠌��u-���c�w1w9p��z��)/��o��ձ1�!S	, خV��F�;��\�L�F`�tJ7V�8
�3;��]�1�R�c�*���	M;�a��!HNErI��7IF2?�q�D��{�y���.s9!V�ArY�k�4^Ns:ց�X��X~���  �hB
P��̧���3+�y�
�T�hB�,��s>ЄEL��I󗧼�&$"��.~3c�1c�s���V{��8�9��#'�u.��Hqdq�l�^X���s]o���pE9�{���y(���$&U�Z�X1�~��J�傌ੲ�U�"�f[d�q#e��>s��X��7/2����<��Dl�>(��$��E27�s!��bA"󁁗��[�S	�/�1m�!i�ε��b{�?��J���f��3��1��{�0���gNs���8O�Js�s�^��^蓇!������FO��T��;��P���or著��VϺַ�!����Q��8���Y9�c����:�x;_*�aܵ!�ȳp"�C I��/!&��O�B��;�T^|Z�+��[���Œ�>Z��N���4��O�BL���x:D	���\��R��cA����b��@w8��B�ge��-�E�`���	��=I�QA(c �(�1���竂�'�O�	�ۋ�?����������K����X�x�3��J�z
؀� ���8�X]Bs��'b8�pT�׀��T��)��X@5�P�AHA�0q�$1Ԥ�%�0�VJ��Q[
�*q	:Ё�a��P�R�K8�"A�V��?фZ؅^��`�!��dX��Q�fX�f��l؆n�u��f��oX�vh\x�z�t��~�r���8��X���}H�jx��؈�����h��l���x����{hE����؉���8�
��ah�_�����h�������8��X�g�����
���؋������8��X��x�Ș��X#���0WzH~��(��x��
��@�`�����H�H`���p��H��3��DA�@���u�3xu�6!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�A�d�իX�j�ʵ�K�r^"Z�L׳hӪ]��c���2
�\�m���˷�ү�
I���È+^��,�>67eL����N�^W����K�aM��i�Bk� 9�14��0���e����ͻ�o�l�ֵ<-E6m�9�d��N�:��6�(T$cB���[�O�|Z�1���޼���ծ+�"?~����Ͽ���(�h�&��6��F(�Vh�f��v�� �(�#�(�ȟ]*��by3�(�4�h�8��<���UѠ��D��C�#$�A�\�Pz8�A�Ei�1��N:�Ӥ@O$N9�yT�6eԒ8��&�p~���'�w�ɑxt��矀hKK
j��I�`�6�裐��KC��K��)�+��Ć���<�dj*H
|p�""r�<� �"(��� �"�*���F�����P:�tC�U��Q���A�ȣ
�A�#�����y�#N5�	aa�O�#)�P�B�<�T��-�-�\Qi�L���%Us`G�1��@�i�#��7���@�f�ث�����P���A@0?M��'�ZU)K-�+�;x��"��Zu�@^8TL�Yf�Mޠ�so�{����nKWm��X��,���-bB`�����"Pqf�]^�Q����i��\C��n��=�1Mi5~^Z3l��@����I
�W^�1�h#�3<3�Q�x
C�|I7�X��e�$}�GJ+�t6��W�;��ݹ���/���o<�P'��̗7C���T�U�Go}^�����w��/��Y�I�@h�I������/����o���3�q���}���
�0'����:�2�'H�
Z��`O���z�%a�����P����0��E����8̡w����@���H�"�HL����&:�=�{"�R'�*Z�:���Ƿ?��l�`c��PB1�/}fL����6���+#�H�:��cQ�����Oj
B�@��_?Иȫ���l�$'I�JZ�̤&7��Nz��(GI�R��L�*W��V�򕰌�,gI�Z��̥.w��^���0�I�b��ܰ�1=��,c�Ќ�4�I�jZsC\#362)ҕ��"�/�yMQ��L�:���v���<�I�z��̧>���~��
�@JЂ�M�B�І:���D'Jъ�E{�h|D�юO
��I�<���T?1���Nz	�t<�i@�RHXD:+H�K���=�"D�~�����6�A8ՙ�a�E��Q�"�E�i�X��)U�"�f`��o�V��?h��}leֳ��>�c[)�U�ƒ5��e0��v��"z
_1ڏtx��G˗������b��2V1v-,;�P�O�#����[!��`.,	�bԺ%��ϳ�j�bՍ��"��@QX�,���20y����Z�S�a����C\�p�T��I�6V����q����ddc�0d�&ȕ�z�,���t�V1�@~1�Z����ň7�A�ʰ/�N����;����#L�
K�f�o3��{�� ��GL����(Nq51:�G��*�0݋g j�4���r�Ax��(iG��3 �$ �����(0��P�r��*�*[�?,��M��-{��`6��l �0��4…7D�����B�	:��"0 @`�
4D�9v2�W�C��x�!/�d��-�A�� �#2��@� N�^C�@NDd��!��v��:�
��^�cC�w��^������M�b���N�����f;���i��Qk�<:ʻ��=�]����
z-�9b�hB6C�MQh{ < I&���a�Qjt�}��A��*�ĸ�p���O����;�����'N�[��ϸ�7��{�� ��GN��(�O��W���0���gN���8Ϲ�w���@�ЇN���HO�җ��;��P��ԧN��[��XϺַ�uMݷ�`���lU_<�اz��#�	B�;<����w'@���]�Ȼۇ����s�HyC�nq�۪��>8!�
,f(���	H���*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@K�
J��ѣH�Jʴ�ӧ,#l��իX�F�E�;ZÊ�)lȪ]�v���i�ʝK�%��x��
	n�߿������È+^̸��ǐ#K�L���˘3k�̹#�ΠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪣ��*��#����J�<��뮪�C����ꫪ��?ﬓ,a����:�2�j2���8���	;𤺂+���ȑΰ��PL?�`1L�x��/����.M8s�9$"�縊�3X�"���B�/MP#�.1HKP:�z!P1MX+AլS�B�H���$�l��(����\��2�S�B�zɯ#���
�x�B.�J�B1�К�ȳ��EU��J���S,����Cн� �R �$\��qH����S�+���A"v|0�A�F���MC�1<��)!�
,l%���	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI����8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ=���˟O��������Ͽ���(�h�b�N�6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���3����-sM�*	��*J?���;�,X�;�f{k�����|����;��R�k��.��rˏ��4���K<�3<�F�8�Z���Ӈ+�����J�D�D<�;��Î4��A���<X�4���� �ǀ�r� �K+��q��x��2��Q2g8�D�r��"�(@B��� �'��3�;����CP$����Ot�	h����"K'���Nɷ�����T@!�
,p(����H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ�hv�(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+�@�cl? �*?�2�*<�;�<��3<��c,;�������/��<��^� K?��Ϻ80���� �/^�c,0�2��
C�!�$gp�� �ڂ�`q����0��Kl���ٜcK;�,�����h #�7���O1�#�'��.�B����|�QK"�A�
s���fx҄'�N����SK.�HqF��$����#�B�L@;��c�����M��@9+�@�X�<�c-AƢ�x�Ϟ+yT!�
,l%��	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�Zl��x��-Ȗ�ݽ���#��a��+^̴_?Ɛ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ����'�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+�}:�*?�Ï���O�ۢ`:���<�*-�p��Z	�ӎ0��	�"q�	c̣�'H�C�h�)	���1�<�x��ÞH���2��|�F"}�L�*!� ���W0P0��'1��,��c�<�`�0��:1B���*�S�0�x��@�� ;�T�E�����HaL?���;���'�$†v\��b�i���G2�/��K.1��֟:�N?��P�++�!������QBvĐ��*���8��sN���M�����:(!�
,Z(���	H��A�*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@���%��ѣH�F����ӧPgF��)QԫX�jŘ�+v��Kv,Sؔ]˶mQW��綮ݻ.�0���߿�9�3�[ao�+^|�?�ɒ9sV,�˘3s;
ڹ��C���+1ozG�^�v˫}�&�F����Oc��Ǎ�5�q�S��I���
���o�У�%0֤P�(4�\���,���j�kگu<n�#�����	<V�s5n���"������9��
��tXh�=��V�X�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm����<'��M_%#��1�Q2kM�"W��2���}�rC'��"HP|�-�@�f��EH����'8�'�x�Bt�J+��K�� J?�PN���q;��p	�UI�G:X��<�]�R��!���P����O�� �*����V�����^��:f�";���{����xA;����/��r�+à>ʩ�!�
,]%�M�	H� �v*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI�fKy6s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx����߿�L8f�ˆe$0��ǐy��tϛ�j�3kv9j���1�QM���_�v�g���٬1�����n��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë^O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F�BVh�f��v�� �(�$�h�(���,
�N@!�
,p(�J��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë#O�����ӫ_Ͼ�����˟O��������Ͽ�hv!�
,l%�?�	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0c�4�n�͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�k�իX���ʵ�ל
>\R�ٳ%wXE�
ڷp�Zl��x��-Ȗ�ݽ���#��a��+^̴_?Ɛ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë%O�����ӫ_Ͼ�����˟O��������Ͽ����<!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ˞f"��իX�j�Z�%A;%��Ɇ�ٳhӪ]�QBGQ��Y�`	�x����7�W�l��98dᾈ+^̘�E>6/xkL����N�^<��c��I5cM��i�<kHN�9�3�ռ0�oAj#8;ͻ����0��-�s�ٍ�`��N��uҫmJQ�HtF�=M��N�����iV,ٯ���MH�E�����Ͽ���(�h�&��6��F(�Vh�f��v�� �(�	s�(���d*��yƼ(�4�h�8��<���U��D��B���@�X�N�P��A�Di�4%��@�x�dC��3G�s�As�#8�`馈K
tfCK~9�}�'ϛ|��矀0��j�Bs�ߡ�6��"���sQ�B)�C�)�,�Ć��H;y`j�Gl�I""���`{�tKiz���D�
�t�ў*�B+��9�������d��F������RHH�ފ��Y�HS�B@Y�S%I�.t��I?��i�0��
`1����Ԯ���BO�bP�6�Ҁ'i����c��u��;��㞝Q��~H'�HFm�0?w�%�Z5;�<��;�Ѣ#��X��@f8tbLE_�
N�x�
<X��nϦ-�Y�Bd�Q�t0ì�B��D��42���#0�p�w)���/���H�|�hnL[0���qP�5��8|:���T�A>�PC�g^�*�Kk����$U��4�,M�嚷n]*�"P(���U<�뼓v
��"��&��K3�سBR�@_��_V
5K5AYO3u}�@�pS
1���������y�t�e�P�����
���>�X5M��[�`���4��:�� C���I��y7��I%Q�^l���(L�
W���p+���@��}��8̡w����@���� ��!!�������P̉f�*Z�X̢���.z�`���*��hLcJL��Ƭ�p��k1,9��x̣��Ǒ���� I�B�L�"��F:򑐌�$'I�JZ�|3	��q򓠤�"r�R�)�)�*W�!;���B�!,gI�Z����_��^��fY�KaB��L�2���,�Ќ&�"M����̦6���nz���8�I�r���L�:���v���<�I�z��̧>���~��
�@JЂ�M�B�ІF��s��hH�ͨF7�юn�`ՈBp���<���m��0��LgJӚ��8ͩNw�Ӟ��@
�P�JԢ��HM�R��Ԧ:��P��T�JժZ��XͪV��U���$X��?,-'�"+Z�V�&Wk�U& W�0��]!2����[Q�mb���E��`ײ��u ����,2��4n�Ui�<.kY�z���
�hGK�ɲ��M�jW��ֺ��d|�e�*�a��F-��S�[ʬ��!lo-º�m��Y
‡��m�1�I��(� `!%t���9��BC�Jam�"�ȭHdqڅL��0���l�-��d��������;Q��r�N�����*�${��'L�
[��ΰ�7��{���<���bd�!#�A���ϳ/�}��+Dt�f2�ۘ(TlŏwE�Ct��ĐO����1Ёx� M^�Fp��b Y�2M����p�0L �/����AƗ��&4

A3��g:����7.Q� ��$�X����t`�⬢&�h�XN9�C�q$� ����B�Յ�*��I?�+ꅬ�с�V���ņ���jV{X��<,�����ϥ��	���.� ��uA*�hwK����\p�[O_�@Š��`<麫	��1����sA�l+D0 @�0zk��m�a$��b`��&�B�L�p7�V� @�Rc7�B+����������WxD-����}��_�	2(`�rxxPF�rdp�����21�<;� 	�З��;��P��ԧN��[��XϺַ��{��V�׷��J����/*�lf��X0�$J�!�h��*�9��d\\2���
����xCF�e�����v�Ubb�[��ϼ�7��{����GO�қ��O��W�ֻ������gO�����Ͻ�w�������O�����O����;��Џ��O��[���Ͼ����{����a��O���O��oy���<��}~z�^���O_  �H-���y��P����'�Ww�T�Gd	,��u(&��ySc!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�A�d�իX�j�ʵ�K�r^"Z�L׳hӪ]��c���2
�\�m���˷�ү�
I���È+^��,�>67eL����N�^W����K�aM��i�Bk� 9�14��0���e����ͻ�o�l�ֵ<-E6m�9�d��N�:��6�(T$cB���[�O�|Z�1���޼���ծ+�"?~����Ͽ���(�h�&��6��F(�Vh�f��v�� �(�#�(�ȟ]*��by3�(�4�h�8��<���UѠ��D��C�#$�A�\�Pz8�A�Ei�1��N:�Ӥ@O$N9�yT�6eԒ8��&�p~���'�w�ɑxt��矀hKK
j��I�`�6�裐��KC��K��)�+��Ć���<�dj*H
|p�""r�<� �"(��� �"�*���F�����P:�tC�U��Q���A�ȣ
�A�#�����y�#N5�	aa�O�#)�P�B�<�T��-�-�\Qi�L���%Us`G�1��@�i�#��7���@�f�ث�����P���A@0?M��'�ZU)K-�+�;x��"��Zu�@^8TL�Yf�Mޠ�so�{����nKWm��X��,���-bB`�����"Pqf�]^�Q����i��\C��n��=�1Mi5~^Z3l��@����I
�W^�1�h#�3<3�Q�x
C�|I7�X��e�$}�GJ+�t6��W�;��ݹ���/���o<�P'��̗7C���T�U�Go}^�����w��/��Y�I�@h�I������/����o���3�q���}���
�0'����:�2�'H�
Z��`O���z�%a�����P����0��E����8̡w����@���H�"�HL����&:�=�{"�R'�*Z�:���Ƿ?��l�`c��PB1�/}fL����6���+#�H�:��cQ�����Oj
B�@��_?Иȫ���l�$'I�JZ�̤&7��Nz��(GI�R��L�*W��V�򕰌�,gI�Z��̥.w��^���0�I�b��ܰ�1=��,c�Ќ�4�I�jZsC\#362)ҕ��"�/�yMQ��L�:���v���<�I�z��̧>���~��
�@JЂ�M�B�І:���D'Jъ�E{�h|D�юO
��I�<���T?1���Nz	�t<�i@�RHXD:+H�K���=�"D�~�����6�A8ՙ�a�E��Q�"�E�i�XͪV��ծz��`
�X�Jֲ���h
P��ֶ�U��(�[�ʣg�u<컫^��׾����
�`7�����2bӲ��:�����d'K��Z���ͬf7;I�呜}�>L��nta��i��	�L
Y�jq�4���O��mIZ��>eT�I�C�ܤ�a����[(@D�(�:�68W L`�M<Q��i�&M�s��]��c�E�}����<���M���������� @Ha�	$d�o�/A���F����*�
�/g��y���Y'���C^ts�}[ �8�	@pF^K˘���2r"� ��
�����vl(��E�W�P����L�*[��Xβ����.{��`���ןz�K6�o��)`��م>�%��Rp�#V��&d3������Ġ��M�V!�F� p����x���4I8J�N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z�ָε�w��^������M�b���N�����f;��Ў���M�j[���ζ����n{������M�r����N�����v����&�U�M�zkr�^ƅ����{��w[��[�W��cN�G8��p�KY��gc��ni&�^��C��!�
,Z(���	H��A�*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@���%��ѣH�N����ӧPkF��)QԫX�j՘�+v��K�,Sؔ]˶�QW�.�'ϭݻx[�i�O ����N!7p�Vy�ƍ��#K�Ǐa�j�<9K&������c�)�Ө!�
�J��԰c��B�Q�j�Q�&��僧��
���ȍj8*N/Y���f-���7C	ռ�&�c�O��]�~5�$KH���OV�m�3o�$a!�mY��vT}���N9
�)=�ZeF(�F�Lh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@o+O]=�<
��1-�;PG-��TWm��Xg-���t
�<�����b�m��h����l�M�;�-���M�_��
,|���߀.��~�0�����}�<��s� T�`C�c~y�o��w�碗N��ml�<��Et�^��ܷ\��������8����:�.�?����Go���W����w�����"�0����_�v}���4��8��S���M?���O���%v��_��?��O��ݡv�b|�s�ƭ�͎y6X�0Tюv�� 	)�:�Ǝu��XP5���MhBN���e�u���_���BA�E0�ZD D�"bDa�B�qy<P�C�Z�,�V� �H��N�1.��
�P��ȭ�u�T�62Ǧy	�@\�c��C��ޘ�ܢ!!�ZpÅ��a$� t�C.iA�>�������%:
�$��� !@�$+G�� ��$:��
�� >x:pE��+�`�	�2~�/�4 ��5
Mq�tZInr� �4��!� H� �o��\h%;�O����`-�q��m�n��D$"�	���5�@����а�HT����A[�	�
"B�����v�b	pԂJ��ҕ���,��Xz� S�<�p���?
*KcJ������".�;��#���T�JժVu��"A�hΪ`
�崰	u����?�q�T�bn��[�V��B�u���AG�3��]�:X��t��-�Q�q�
Z݇d%����c���,�(+�w�C1�����nֲ��f/+F��k��@��1i�jX�A�����j����?��2��A�q\��ȝ �&\�W!!�
,l%���	�#@����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI����8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ=���˟O��������Ͽ���(�h�b�N�6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�\*무�j뭸�뮼���+��k��&���6���F+��n�|������G+����#�q�
\�K����Ϯ%c�>�3O��f!�
,!x�	H��@a�*,���„
	B|(P���^4�P�B�@Z�H����GB�h2�ėcœ)�&͛6s�ܩ�'ϟ>�*�(ѣ>7*]ʴ�ӧP�J�zq�~�Fp�ׯ����U��ҝk�o�y��
<�o�ҴcΛ'W`[�b��V�[�p��xpݳ�#K�L���˘1��̹����B�.Vg�	$[-�]����y;�oݻw���-�k����6+��*~l���ǯ�}��c��u�﷪�>x����M��,��2�{Y/Y�����~��<#����(�h���V�|0�7�$C@5�TcM2ά�:�(�(t���k6�Ėo�����S�+��NnY4ӟu��s�m�I�K?6�sO���a/�Ģ��a�&�A#��c#���r��J�x�؁h���l�馀	*��%v�M���R�.�$�N?��&p��J(�$B�5�\��?Y�R�7�2�$��3I��O���K#����([���$�ж�/q��\s�4R�<��s	��4��s��aN��9��O?�3�(��#�<�2�`�����v��řL1��r7Rc�
B��
1�0�&MF����M��ˈ&��ˆ�����9���L_��	#�E#��(��s/�����7��G,�8;���x����O�D�ć��2�*/���m�m`W��-��D�f��p#J�D���pc�2�����2J,�\/p��O��s���#�?�6R�6܃�<��\�䓆9[���+�
WL/ȡ�ҏ=J��~3�Kvv��l,����?d�Α��<v��gm�騧��T	���
��I5�8�L2���Ͽ���[o�5��'f�=P�[��9?��b�</#�߾�#���#�>��Cv��8�;�N>眳O/Y��!��Sr.J��J�xߛ�����VG���2�Ho8b#�+�A��-0w�&�_��k#������@�)Yl� �&~��M����|a�I�co��
<�p�^l��������Px��!�66B�b��;�1�i��x�bH�2�񌝉�3v!6bE\TSZ��e׸�>�R�R-�����4��w�v�7@�ť#d���>�a���� @>�!~\C�x<x�{�c���5�#_��i�<�Ŝ�E ��w��^�r#q�F6������O�M[��L��6�ɤ�!�<� �|�<�h5촅-�%?���7�d�%�ã�(�7�a�<��O`����>��O&�*_�����D����(mC��X'7��]�)��XҒ�Y�2*�:G��m*���fY����qΑ2S����I�IӚڴ[�	M2��C �a�Y�C�L�r0���@�ҁXm��s~��rNU�;F9���f��Yf[��-0m�<�Yǎn�ֶ�@9]1�ԄD��9��Y�9�������)��Tnj2��y�E�V�i�s��a�B�(�(��Q?�*Ktѳ�Qx��t�ϴ�[W����)A��'Dq����#:�w�c,�@�<ʑUƸ�5�P�<�p�~��5c�o�A�t��<��k�A�B���K!E	�s��N.�ԏYa�Ї��������`���F\?{�,+Y�!Qh�"��a��
m(9�@L b�0A�6 ��C8��y�$��@
w�a�9g�0t�� �ĠeT�F?J@����HNrA�5�r8��h��dP���p�	��
�h�-0Qv�Cn9�q�B��?�-�prt���En���!�&[OHW����5ؘ�(Z���7�����A1�<P�^�9�<H!	A���-�`L��
?�ĪюO{��:�@(��F��R`���P&��L~��0�2tV���x/:�e�j�N��oWr͠	���m	T���5.$)�@�?"�P�-@�\[�C�`�-��(`���Ljq�k��3(�k�`�jӚq
�Y`������w`��Y��g�Kq#}����gD��e���<ܡ� ""�a�a�)��������*�w��b��*�
q�B� ū�_�<�-�M	n�c����r�a
��G6M��?���Ѿs8C�@�`�y\x4'=7\��~���5��L;z�7M?}໤�`�pՎ�P�X�C���sk����W~Qc��U}�^���wH�1/�Yn�v��h.uf�z�8�G��>�;l#Y�.���_5+ʟ0Q'���l�}O���	��O5z�s�c�0�z�S��#��u\���j��+0%NS�'��1E��"�(����� �"8�$X�&x�(��*��,؂.肿BO�`�L�'.k�	��
��!�#�S?R#�Pj���p�@�1�;C8���
[U��[x[�>��A��dX�fx�h��j��l�j2X�6x�
�
v�3`�B�#|(S��Yڤ�c l!�U�M�"�1"a�XH��`�Ub4"�Y�և�؉������8��X��x��������؊�؇
u�0�J��$�HSO+����������
��
�1f`��P��@
4��`v�À	���p	�@���u*
��
�
%C����
����А�؆�x�����������`���	R
����0z؉��
/p	Wl�@���w������b)�P^@-ǵ*�
��	K$<�0	�<\����
>�@�B9�DY�Fy�H�3��Vp(���x�`70}ҋ�P���0���	�sv�!F�>���������+�5t��
�
�!
��7W�	�"E�ȏ���������{1J��K�7�\0A�� a(OX��j��m�I�q'�Ilq	�V�0���f�P�d��D$*`��\�[
�2	bi0I��ٜ���٘����y��xs^�B 貐V6t�
G���GYFgm�v���	�`�G ��EV�]�g*�� =��`�5�������
�ua���:����I��9e�H
����Uً�j�F
{p��� �@��0Iׄ���p�%��p��b��
���Ua�
�@��la(�ړ�0I��Y�Vz�X:�����8�`|�7"=�����Y��y�����py�8"�����?�d���� ���z���������ڨ������:��Z��ڨ��إqթq�;�05�Gb�"�0^��[�EU\G^�g���%J�P#h����]UT�/yJK]�?�M�x��z�Ț�ʺ��ڬ��|���]���Qސ
֩��gRXY�QNM���a��L	�D�6��:����:���
��
p�~�X0�A_�W~��RR�u;�۰�� ��
���ҋv�:P:��gѱ�"�&�B
�p+��Uj��M`q1�2;�W�X�l@��@��f!+�J�F{��".� @�Z���TM��׮H{�X�{�a��<`��[��'7�b��h��nR��������B�{j{�x�Z֚4հ qkq�fk�y[����Q~�̱
��.�L�PαV�+V���T��K��TQN?��c�;�����t���b���Q�UU�˹����[֑��˺��[�[��}@s�d��yTFm��N�U���M�C�=��M!�ڋVځ�������Jʽ���h���W���L|
�~AT�:ۛ�k��W�Kq��۹�;F�:��K@_�,[f�t���s��d]Q��4���z1K�@a�LarN���L����{���P!��[%^���9.4}�L��
aB�����9���P{�p�`z���a��2��I,��P�T���īP{E�%��ܰ��~�"��Z�E�=�R��T���'-�\8�D� %M@�pA
G�DS� �0�@��z�	����~@����0��,�&Ԃo�;K�S���p��S�
��
��"D�YJ1K�R50�@Mb d�{��s���:V�|I�@	�C����E�|���
V�@M� ����s@	��|*S���|��\Y��V��hy��z��	~(_Kl��z�l�=�
��
��ζ,]��<_2�0�0c|�:�pM��o'EMB	U@c�pT�X��b��� tAO�PC�ɢ�AO��
��ܠ
�����
Sӿ 
ڈ� 
ܠC�
�0�0]���7�H���@#}(�#,�
����
��%�
��
�
�
�PYU�	v���
�@L|%�@��^S-�,���t��@
�TAZ�@7�\�P���p�5��PU��� 
>l׮MM<r�-�P]�O��
��
���Z~�����\4��U�Ѝ��#^-�P��,C�h䂫�MV �_��?� �@=�ѩ��X��� e	r;e�Uݦ `θq#bP�0��	 �	�4`(�VP��R5PE�,P(0��S`@	�0V������]�"pڔ��5p�(�S-�"M�$2����, d܀_�V�EB6|�jPE`~ � 
��$��\j0>�j0�l�	(���!C��P4��TF����_P���_�
�q�@�	bC�
�����(�
���i-]%�
,��,0E�˔��F� �j@-.�2.
��#��->(���`Ր�b@R.�<R k��P0b�T
�p	M�#��f�z3�@	��������(@	�0��
=�ʳ���#�@���]��<��!u��z����, �V���T~�34��SP�~�B�����PQ���N��m�,`���S��H��,����P��!ͻ��'����!-����$��1�
C���)-��.� ����2mV�, �@-�S0�.��u0��	��u�����u�J>���0n��^'�wC�I��<�N	����1�c��R������nǻ
�cұ�
� ���;�rrm�+�c����@b 
P4@�� �
��
���XE��0C�����E ��1R
n�,���D���U �@-O� �#�%�M�`��,��?��
�0��ȵ �0�C�ǜ�`^�a�cE���ל�
���.��n
3�MiG`
%42%��UBN4�̚��*���R�����cG�O~����o������:U��X��E��!�N�/� P�2&�?t�h���%P`�t�N�JIй{�O^����$��>�m	�śW�^�}��X�`…
F�X�^cĸ�a#��6cƖ]^f,ٺv�p�w�sgS�)�ӯ��Wѕe�B�5��D�[Ǐ?55��Fݬ!�r��G	��8ՠ�G�JVj���Ŝ~�h���]�U�,��G��~��ڮl�����U��L!�i/�f��*P�I�}���@P)�Btj
�w܁��~������Y�a�:�Q�9N*�D
f��J�!�ӏ�:X&	Af�w��'�5�D�}Ġɦ~2��1����@a��s��t��t�#OH�C?jPC6�h�FL���-��)�oЙj1A%�PCE4�Q���F/�  ͒��Rg֑G�L�IK��J��~��`(�ŝYfy�J�vҚ
�LQƝ\�9gשj�$`�d1Q��e��V�A?��V9�@�4O�Gv���O�!JdTs�aQ
T��"	1��\�Y���B�v��Gw��#�^�e�`�4~�i�Xʅ�_�5�4J8a��y\�#td�#v�sG�d�b�A�t�y���e�"��!����f���ef'e�b&Y�څ��	��bС� i�!`�s����Z(�fF\�ӼR�����S4n�离n��*ƛs�!���*��&�!�/"qk���t���z��~|�$G�q������=`���w�̽��ǽ~�uG�Y����|��3iGq�r�p�+'</�9O�r�kGN��w<��r���w����yj�ܽu>�����|���y�-���S�秿~���{�_���eRz�:���[ma�|�v��[	�P���u�[�G;���d�\L�<(�~ȧ�x��e3^�#%�C�H����^5a�V�0v��p�:��_��{Ia�^�xL <���w|�R��s����%�"�8'���x��0��5^�\ll��üxq�̠m6,"o/U�_ 9HB��H8�8J!�����^���/�j^��=�X�.�C�'.��l���$� ���G~�t�9˸�Ғ��e.u9HbxCfp1�q��Y��T�$� �y�C�� P��]�#��`Zd��B����!/��+��
5�/Ȣ����$�Q�sxH�����~���X�;s�(%���:��D`�C‹�vq3q�i0�Q�vtP���%J�>�o�@)5���u!���0\'���=ixE;z!
��pI��%"��-��ᆔI�y��s�
���K�g�x�'E��HAMF��~�aM(AR37!d`K?ENx@��zԮw�k^�:�b�C��F9�q�U�b���1P(�t�a��#&3�Cih�=��	MlA�0�8�r�8"@n$ 
��M��n�c|��
��]8B��%� n.B�@��!\bM����/�����3t��`��7��P�Q���m�1!�p��u�:_��׾�,�
���&�-|��*��%Lp .��`sl�p�9�`F��n#b
8<h���n�рX`|�EVяU�Bh�mw�W���aO��0�VQ�`�Bh�(2� x���d?VP��`%HG:P�d�fh�
���D��Nc�wx��o��<g:�0?t�r�|�7���s��*x�
T��<�"��x��hLvqx;&�~HC	��G"w�~�a��
��'��ɢ!܀�԰�
>p��8i�ĩ� ���+`�+�G��=�A����������������p����Fw��=�s� �`��jT��
��s����/4���,���0�(��W������a�-�c�\�Z��xW���'�͇So+�D�!�T�8GN�,�g��5V�N�����;�%�C���
j>�l��ɸ&���[�W�z��z�۸�`��Bt!
���+^a�I��	6�?��M���Ȃ�5Mh���r> �~P��#�l`�h?$�x��|��P(�
��#��t���U�+���<��9p{���C�s-0�S�!��m�Xo���nZG~�_�e����3�vL=l�ȇ���-��#c�����O~�#wlyXB��wP��C]��x����.|���~�@�P/bL`�����k�$3��K�,P@��	,������@��/��>�ɍ���Z6��J‹@��I��hOp2��h�ӋRA��ɍ��?�������`�s�_�.g

�b���АO8���)����Z$���!�B5��*����x�/ �3�wh��@y�"8|�� �m4���)*�n��8�|ߩ��}X�R#���!����I��J܋l�L���P�
�����!���"��Lt�6%4�2�	C�$O��u�v��"��:�
������q�/��wڅ��+��$���i��<$;��Q��)�b�ĺ�|�s�;�i��Ux�׉�-0�~C0B!_h�At�Ple4F|0�{h��P�4�h�}C��y80�|0�4`��4��W�CH_8"w�
�h�ƒ4�)�W�\A�Ml$4�v8_x�Q�lHnؒm����б�f��-�Y(�شf
�m�>�8�Q0ۑ�s ���f��x�|�m��I��J(N�{�����4�i�q��3���#ɓ�˾L>k�30�s�D�KY:A�K�UX0Iӄ,`8�z`C��|`�-0^ �FX�I��M��P �{��;�XH0M �4�F�U�	ˋ�˂|@�v��-����C����h�ʚ8h�P� I��@~8
)�����ά�+I/��O�,�k�O���_�Lc^����k�	�_	N��4y��40�}�-������P�i��F��u��,��8 ��ʇ}���C �z�;��κ0�ݼ8� 6Ȁ\x�����l�5p�oX�_���ȋ*�͚;I��I0���h0M��h�~��IHs0��{Lk��Ѓ�}��Ix��CK;��y0ǵ��q����}�)����8h�|��hQ�H�I臎��yO���KE�D�(n����HnP��G3�W��h�SsX�Q��<͂X�K%��4�X�0s��4����Q�i�4'���W��'�P!|؂�
s�Xȇ���{P�Q�S�_�,0i�S�e����ͫ�CU�oWB���rH�N䋵�-s�-�q�z�u���^��}xM�Vq��\�y؅�k�l�~�Oi�K|��z��^P���|��P����{\�lʇW�Qx�|���l�C�}8��-��>��p�٘$jP$He�l�Ir�z��Y��j���;rC)�#nA����A8$Z�q6L��Yn�yx�h:Df�8�ٲ5ۻI�a �d�̠��ߑ�

�
 h�
����
 z!�O �=�����ܼ���"�B�wH�sH��nA�����۽�����cЛg`[pەR̽�¨���©XY���L��ž��]���U��D��l�ķ]]����\�u��t��U�nAv�*�^X0o�6�"�!í��I\O��'��"�y�\�]��\H��� %�҄����-5��tҠu����E�p͛`k���R�x:ϥ�qhR�^�M*v��.��p�`J���!tt��!):������Q��	בg̞��i���De79��\X�Md��	�I"�G�a �Nh[(�G�[x�UP�}x�O�wpLxX�pR�;�#�$�@N�Y��\��@�'N�E�)���T�؀3����s.O�Z�K�|r! �t��K��d�]@!�K�l�D�lx�l܅l�W��6eug�	��rx�#&IrQ��w�NP��[��5�P�ux���{D�qك;�.�0pP؃yH3QF�/� �X�@��m�c#X��Uq�`-g�X+�	�/��&��b����y@�P�>h��1,8���h�h�U��
�Փ�����S�h�p������e�v\؇1u�ahaP�?x�~@Lp�G��g^q@tp�B��Lr����Y+ "�Y�/@�/�fm o���'�ʆX!�,������5�pHpZs*�W������a�軮Fc����I������Zvu���q ia�Jw�(L 8;y��&}fw(h��= w蕔�
�P#��Y�c J �5X�y��F1ߵй��1{�U�Gh��_����p�
�Y�k���t�	p�XC:����W�?��nJ�%;�+!�� o�H��1��x�#8��݃.�q�;�[��#L(
Lxi؃0��=�0�~н�z�/1`P�Y����g��毉�����-!p��ۀ�|��(T�B!;؀X�&��+�hc���YC�:����[nXOXk�`�N���ZFqm�UpP�y �f`&DxuX��rhi�>�sx�*w��t�����,HtP�Y Z�������@��n0xp&�x�
x��o0�s����Q����ܤ�\op�L3��� �t���8���C
i�颯EZz�IRX` ��cRpf R�P�CԙnJ���	�2L���$�	�s�N�%ʁ��!�Q��K�*o��iG�b�B���q�?�B`W[�FZ�aC0n64A�8�L��`w7�Mb3��uө `����[��rvi����3F�r��eP��拝T��I�����4��(ğM��W7�p�&VԽc�tY��z�]�w���k��>X�<�)�h�{*������b��ZXw0���l�TQJ3e�����ț&h����Y�I�"C�����{�p�l�V���<׏V��(e����zc�V�9��1���y�𐦷(����G��P��pI�`�K��y�e����M���܄��8
ȗ��x���G�B���M"�r`
����b��Cz`�Ǭ��ҁ{���}�.�l�]�IG{ۏIYK��{����q���D�����
�r��v�3��\Ȇ��D��]���K���,�����ᗜ�_��Z8�@�b�\�o]?q�$��!Ĉ'R�h�"ƌ7r���#Ȑ"G�,i�$ʔ*W��5cת9$5�TN ��� ���C�B�-j�(ҤJ�2m:�7o7�y��$�Y�p�܉��t��9-k�,ڴjײm�&���sC�p���I ]?,@ӹ-l�0�Ċ�����*O��]��͙þɼ�Z!$(�ТG�.m��ԪW��8n��SM`u�v�4�v�7���+��7<��ʗ'��kدbΙ3?'�+��s��;���Ǔ/o�<���׳o�=����w\q������K�/����0��Q�,�8� �
:� �J8!�Zx!�j�!�z�!�!�8b��<�Z5{݇؀��"����K"��b.&R@.�8C
�A
9$�Ey$�I*�$�M:�$�QJ9%�UZy%�MB��):$ϊ�����.�|�*�ı���#�>f9'�u�y'�y�'�Lni�1*�)昵���
���n�K�����}Zz)��j�)�x��L��Vh�İJ.�HrÍF:����:+���z+��z)�[���k.�@:�+�#	�,��H�3�H;-��Z{-��j�-��z�-��;.��{.��������������
��o���<0�|0�	+�m������H��7H��w)�j�R�+�!�<2�xJۥ���/���:�K.�l�p~\2�9�3κ��rZ��'�~DZ LV�M;�4�QK=5�U[}�j���s�y�5�Ѕ��0�C#8霳6�m��6�q�=7�u�}7�y�7�}��7�>x��p�uZ&*����8�8�&.�<�[~9��y�i�;��<��~:ꩫ�:뭻�:��>;��~;��;��NV��Z�<����N�;�<�ѳļ��[=����T�=���j�t��髿�q��c���?�b�O?���������?Wҿ���H�@�2��t�#(A�
�{ś 3�>�i���?(�"/�$<!
�6����+��c(C�p�6�!bV���P-:�!���
��F`_vr�#2��"���(Ŏl�{S�"+�+f��]����D0���Bd?̨�"Bq�n�j̧�7��D�#Qx�<��{�# 1��@���,$"��D2Ҁ�x$$���I𐔼$�Ȉ�Mf2���$�����K`��g�Ub�}d%,���X��x�)k���Yr��|n���_�r�����L��2��|��f	�i���Լ&c���m�ϓ�&i	�q&F��<'Z���u.E��|�Q�	�yNϓK�'>�r�GJ2��4�(�)�xϙ=(J̉ЅrD�}�D
щJD���E��>�r#��B?
҃�t�-�I��Ҕ�Ӣ,��>�gЗbt�4}�Mo�Μ���eO!�Ӡ^�D-j�xԉJt���S��aF��1�gUz�e��Y=�=�zС��])+I����t��l�[�	׸b�tݥ]�Z˹�.��8�
XVnq���`[��*��|m�/YLjԫ���Z/+��j�g��f?Z�d��VM�̫V�Ĕ�k	��q���c[o[̿ꖖF��k�
\b�v��)�C6?�*����h�&~P��ֽ.v����r���=�m�{��=�w�YX�
G��q/|�+�ҷ����zQkA����/�<�Є��,A/��`��r�1y�C��h�/�v�c�c�;J'a�RX�%n�K<ay���@1<B�bSXʥ�r	��3F�1.��	��w�x.&u	@]"���LVr�+׏?��F.�q���2�J�qty,쾣����yH�ԝr�B�Q"~�hGq8���'����.W��-��Ic������#bُ�Cs�`�A�B�/�Ltb
�F��N92r���S�R�[�O��0֕�>�Q	&�� ����}�ӛ!�k]Q��8�R
$X��7�c4N�������0[��tF�1�M<�
���1�������D;8�$�Z1�7S�ݏg�"P@��	��>������UT���6��?�C��7���^�#��,�p?��H�Lhy�]?D��̡0�0A�L�9D^Nvc�	t�����\����m�n��ъ�S��V���w@�
�B"�:ح��V��0{+���[�u�a�u�wXPGDc�i�]��.�9nd��-���u���Ż�Ō�:rp	tk��G;�L�x*;��..2��\:����.|s�a��`���u���.����*�˧.gXQ�lN'�@F�#$�!����rva��ҋ����W�z~"�[�v���&@�W�ߊ�����O���Ƃ��_��?���
�ʐ`��&` ��=�F���jpOjU�-�b�ou��
Qq��R�	N���q Q3��	�U��`��
� 
�� >���ҠJ��"2��.!�ސF�� ���P��n�5���a'5���!B�B��a�!��Ρ��zP�a�!
�a� � !b9"��."}�#2�F�Y!%j�^b	�&P#v����bu!)��f�)'�"�|�+�O&�"��"-�-��Ø�.�O.�b4�"0�,�)�bk����2��$6�0#4�4Nc5	�5�6f��#7v�6~#�T�8V_8���#:2A�:��9��-ţ<v��:����#>^�"�#�đL���@�@��zUAZ/&�
�#C��=>�YD�D:!dE:�Bf��X"G&�F~�9�HE�$R�$J�7��H��Kf�JƤP�$M"L�$�T���d�O�#%��$Q�A%3�R�$I6eb\ �(TnM0�`U��/�Vn�0d%⨃X�X�F@!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲeAW.cʜI��͛8k6�pIQΈ�~
J��ѣ	wXE�
R�_�{J��իOx" ��~^ÊK�#S�]M�#�/hٷp��Uhg�ݻx��8n�߿���V��È+^̸��ǐ#K�L���˘s��̹�g��>�M����c���G`�6��c��e��ۘ�	T��ߍ��N����ȓ+_μ���УK�N����سk�ν�����
�'��y�ϫ/�����ŸO��������Ͽ���(�h�&���$_�F(�_��b�9�M��^n�a\���Nb�d·N��qm�K;,�8V?�#�8��;�
ģ�@��b?�i�H���I6��PF�R�RVi�Xf��\v��`2�c�d�i�h���f����#@��0Y�$���:糖Y:zޖg��j衈&�袌6�裐F*餔Vj饘f�馜v�a6��*�s�x3j��ps�XxSL1�~��L�(�C뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���pǝ��r�� ,2�:�;Iݻp��A��҂@�A;��2�-�#P'���T�4N�R������S@!�
,2,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��]C�I��ɓ(S�\�Q˗0cʜI��͒6xJt��ϟ@�
�0V��f໥P�J�J� S�P�W��ׯ`W��5�}aӪ]˶"��p�ʝ+ݻx��ɏ�޿�L���È+^̸��ǐ#K�L�f�ʘ3k�̹�g��>��8�Ө��%�.t�װ�s���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��}��^'����'`P��΀&��d��
ZF<�Hh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,�Č�#-h0\��4H@*�x�o� �h�����S��"C�o�
t��� #�@�¾�p�\�;�!�l �mB'��.�|B[�P0�	�qI	�|pL�M@�r�	WD@�0�$�ӏ,W�����;6B�c�*���/�x�K���/;��c���#�}�1����;��;��3�%8br\"D_��嗾O�2�.��"������N?���,+�ф��|`%� G|���c��N:�xC@9�T�o?�8E�k��n�;��>O%l��J>�+�/:@�!�
,C/���	H� �y*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳh	"&�۷p�ʝK�,Br����˗#¾�f�nr�+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ����G��O��������Ͽ���(�h����q��dG�,x�1���

J�ᆃ��� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫��+�;�N��:�P9���#�(���9��Q@-���	��!  K��2L9��Q@Ĺ$,�< ϓ/�C�q��@�,,0��v�<P�c�f @�/��s���3.7��Kf�ξ��G�l��	;�M1��S�6Go��|T�	Ȟ�
;ܸ�I6PgTI-��@H|���&HD…<�S�N1���E��A%Hpa�1�2d��D;h�����p���S�F>��<P�0:�t��'~����B@���|�
��B�P0τ���̗��B�d����[L@��/�@���N�积���3�/?��/�@�X,���{���ޓ�����_��W���#j�AF�?��s�S!�
,:!��	H����*\HpÇ#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0crwK�͛8s��ɳ�O��~
J��ѣHs�Kʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O����ݓHf,�z�����͚����{&��(j�(`~^��0��"�+���2FX7���)�#1�I�!T�r
��	7�@��Lax�!��2�4��,,���)����)�`��5OLrH�J���H-=�B�,¼G+� JK1�x&VP��@Ez�&N�h�
6��͜g�i�Nt�9͜w���{�3�{~j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h��"<�$��E��6B��
�OKL:����O�w�d7�X�M?�]�܁��O?���9v`1߄7��<�09x�O:�t��8��;���l/8�/ٽz��.z:o����Ӿ�R��G�`����-H�A-���N�=}J�/Վ7���I��K9�=D����OL9��
���7��H��Uc�H6���	p�+���1�
nρtɑ��b�~{_c��w�C�#���R�w8& !�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G�>�I��ɓ(S�\�򤫖0cʜI��͛3|���A~>�
J��Q���"���/�9�J��իx" ��~^ÊK��R�]�*�T�۷p��#��ݻxÎ�˷�߿)��L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M�4�.�S�F�N����c�����۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�x�\��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVien!]��X��y�3ؗ�%�3����%S
5p��fx�����i'5x~���}z�L6�Zh��%c���r�睍j����fW�g�Y�v�t�馠�:<�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,��Nk��rF���:��<3E5���`Ôӏ�;G��|��B��EOĎ`#�O?�D]��|8B@:ZW�sv�N��lG"f�-Q��l�@���P�^4����ͣ6�g��P[���G[�=$sAu��!8�l��%��C�H��`"��J��C-mS�!X��#�5�:��*�<�>fm��C���#<5׮:<�����n;�<��#|?��eN�;ʫ^=<�cOP��?�'.>�ӧ���v��Z���$�<����c_���=�{�#��c@�dL�;��M!�� C.Ǘ�!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ�h:�)�իX�j��c���8�$h')��hӪ]˶-RQK�,ᶮݻx�>ˑM�� ���C��È+�y"��-�L��� �(lEG���f�L����1y�r�f��-Hmg�s���{㙂z�%�cq�ABT>P�����M���ܬO�ibP�BG�5���i���������~-�˟OoB��S�Ȯ���(�h�&��6��F(�Vh�f��v�� �(�$�h�("vLX+�(��02t�Aa)4c�8���0QYԟI�(��E�079}�9C
4�{�9���T��øB�CF.�{�3�;��9�#f~�Ӌ@b �>�
D'�f�|�9�Q
5b�$�@�Џ&�
E�s�ўU�����~~v�4�G(��6�!�T�$��\A-���Y�I:�xA���
b:�@�!�|�B�ܙf�I��+�l@ЛA��^��r��@[$KAY�J@>���B�T��(�P*`��B@4�!j�*���rD
nqÐ���7t�cP>��#�h��N�5#�.uK�<��X���,ap�Px�y��1R���!sf7d?��b��@�H�@	��N|��p�#�6�ufPp�{{��\?t��n�h\Џm���dh�I4�`�͓�� �Ҧq�7�_|�&;i�-��35�mA����-��f`�*�<��eA�p��~l�5
.:��x�cFd��;��B�z�
����	}>���iF�iA�׾��S�@�ߩ<AA�&��+�LP#�I&�
)��A��㟫+��3Ds���1C�HſG���`�ѶB��`��}T�Ƶ��:[z����N!�5j�@&���.2��� ؀'!!w<G9�)ԡ�Bf@�'�?�� 4<���d�`y�3�]IrAV�,
!�
���9$u
y�Sn0�_`�"Là
�D� ��t��y���
�@�Q� �P�	�`,C� �h�E�ƛpqx��G:'�j<f 4^A��|�
� �
B�Dbq!��,�����ƹ��	"�
�
j^#�_8+)��Y=�� ����m�
�Nn���a�k�ʚ�$	�<dC�}����_@�����[:q�@:�	�4�a��8�DKR��_ÞiG��4e}�M�xG�V�y�%��G���2$L����V�*X�r#�ϙnK<�y�&>��JQz+���k�9���>���)\I��t��I�Hh�⽋~n�?�Ty����G` �����!�X/�c2�4(A���iTm_���X�j�OB��aHG&Gh�#lc��dT�JX���ܖrH�W�\��� 
��u�l�߼4;=��u ��PKڻ�Io���.�ƂBWH	����H�C6K���b ��@��#Da @?��<TJ:�P�W�:��Z�7�!� �[��a#9h6F�HNI5oP
���u盗�F ��&�S��=
O�����P��^�;��Ź#3A�F�-�!��t���+�x��)�ZG��z�ē��A�̄��f�_��%�MD�(�qnʡV�d氠���ej��x@>���L T2Y�6�2��&�"�|򇢜 .bŞ�Ӳ���8+���|S���6�g$"6�9E'-r`�|�py�|]�c2h�T�ψ&����o��]��������yΥ���N��jΉ�@��,X�بV�a�B{�'�>�2�#`�$���_���n�)v��1���E���g/��%�	Vd/��5	�p�! 	Q�0褚$	%ܵ�}�^F�	�6B'W9e?��B|/�1A3!�n��ԟ��T�!W�d��&	'����
.�J�
���.w�|ءpޤ��6H��r�f�#�����N
�4���s��\/uV1p�\��9�]��2e�;�"�pC�D*�(*&�|�n^�+�ֺ�(�s��@�n챸D�,���4Q�I� v�H:&��9���}������H^����>2х/"�w$3z�����3~Da&8��y���M,�`=Oz��"�0+Q��t���2	�����}�Z��W(d�x�y�~��C�E���$��Q�0	^�j��`��Ozȉ��9t����q��A<����l��X�}��O�����y=�E����!��cvF�S�i'��'y��Pm
�A�/�q
��y��
t$�Rr�aEA�j!� �r}���ԑX&��.8�����A�:h6��d��B8��b�G�Cy��H؄N��P�R�}28��s�V��%�Z؅^h@�/L����,X�HD�grj؆Z�&��
\�aQ�mR�vH4x�9{�)}x{x�x�����h�y��F(���Ȉ���~؈���X�����������؉����8��8�����(��艖(���S��r7�v���A:���e�����b����(G��|���X�Q�	1��@�H�;;|����h�X�����D��ܨ���ޘ�Ј�׸��H��(��XZs��'x�����b�u(=ȏ9���y�yb��ِ��!RfyyyB�7�WQ�&T���K��"�%"���iϐ
s�,ْ.��0�29�4Y�6y�8���:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�}f:T�G_��p�\ٕ^��`�b9��K[��`
A�o4I�(&)�vy�x��z��|ٗ~�����9��Y��y��������٘������9��Y��y��������ٙ������9��Y���~�w�'"��ٚN��P��qt�I"g��s����!��fu:���Q������QUAC`9H�eʩ3�9�bg7�e�x��aa�+�D�깞�ٞ����9��Y��y�������.ɚ������@wz�9���!����;U�����Z�j]���ڡ�ET��0�g���|�c案���3p	�0���~�¢-�z�Up	h�eӕ��E^��@��p��d��Q���� ���	R08J<-��V�X�
^ ��20����X�C�q,��z�^0v+��r���
!u��#hA��vA�৊4Z}x���z��B`�N���֨j$�P^�PM
W�):������P�>��8V�\q�Ѵ�:ꪭf�%�����*�):9
ժG!~���VE����Zl�l?��Ɋ�4���L�
�`�h�
! 2�N�Fd�� O����Q��ʐ/%��$�	�����@c�.갯�
������`J�
�
�:-�L@�@C-���A��&�=�q�L�
8 ��H�&�:�2�y�28�x6����\��;;��(@��F{����B��"ѴѴ:k7N�Xjd�4SQ�L�������Ƶ?�K��8`��Uj�1��H���-P�r[(�	�3a�t�.A[�[ D�p���E���A���7a�Ђ�ʸ���଍2�2p�>���@�ߚ�*!��q������ d�*�{sckus���0����;��[��{�؛�ڻ��۽�����;��[��{�J�W���V�P�aa���%	%�Bz��UыQ#1E��-�齨��`J�;�1�|�������� �"<�$\�&|�(��*��,��.��0�2<�4\�6|�8��:��<��>��@�B<�D\�F|�H��J��L��N��P�R<�T\�V|�X��Z��\��^��`�b<�d\�f|�h��j��l��nl��?#[�N;>|�t���p0{����i1�G��JxI��{��
�LC�ol��\��w�|��\�x�ȟL ɔ����E|���d	���"���XÀJ!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�єD3ԫX�j�ʵ+F�yx|IPN�yg��]˶�۷w���\�p���˷�_�v�B��lH�+^̸�ʹ���pԱ�˘3;%��3�#V�O��ӨS�"pX��cf�m�2��T��ͻ�E6%<6,B�	��.�\�u����]�<ú ���c�Lh��x��ӫo{�d{��Z��O�>\���?����(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,�8��0�(�4�h�8��<���;��8�@T$�H�T甦��$)劯(��Xf�R:봔���tTە#!��6i��G�&G���Psk�Y�v�%�F��H��ɐ�vj�@��Y;�6z�`�c��V
cmQj��Ґ���gG���}A���y�+�Є���KC�hZQ��n��(R!UQ���
��ЩN�#�"�*��Ft�t�@-p
�#�A7$�Ю
�j�-�8FA��B�<��џ�m�Pz�#O�'PP��G�e�x;�:�neKC�ХP�"�K�Qi� W��0�1%
?f-�Q�*K�
g�ː]����m�:A�^B���6�@��1��챁���"����ry�m^���qg<+��K�C5�4{���74HG����
Q
5���݀Ϙ���n8�����a(t&Q�� bH>�vq
���tAm��*G�Pn�z�"P�@AE#mл!�s����A����,C]4�-�ī'/9�D�@�d�;d9����B@m��=j�DL�t����F�����g;_C�γO�/�}}�����i�������)gL�f��"�X1�'�L��}������M� ĉ<�W��y�!L�i���t��oz�)t0����HKpH}�0�$,Tn�xR�E���#+�u����4d�!��a�e&�D?|(E^E�'AL�6R���hT���f�DU��`�4�G�9����+^�!�@ ¸����
����B��d�p)GG�����	�$��!$%x,;��H���lG�j�4N��6�H0�T���FCL%q�VB�`c�V@��-#�BG	��e�4!4SD�����D�3���nz󛧋�2��-/�L�O�ξ�H�Tʑ`��S%�>{�N8ݮ;'��>O��~r�%�e��#v�C��$!ъ�$�$i�B�Ї̣��EO��
����H1#�q�0��G�!K���8�)�T�ӞI>
�F4�ZD3�P̏죤1�@�)a.u��V���dm��`
�X�Jֆ���h5�Y7�
��4�Z��B�aϚls$C�CZ
W-�
{G(#��`+�k_m��w�N DiF�lŽ���e�`1�(�(�"��)�jՂ@5�mI\�N���V4�r-N�)��ڶ�|`�mw��)}���
�p�K��P��M�r��\�H��:�m��B�P����z(��8y�M����kZ�$�rB�x�[^��W��uo|�;_��o~ͻ_��׿��o��[_�X��5���B�2X��o���?��Ep�x��t CDM˄f��״�]Ȃ�d_	jh�-�~O��K�6�cl��7�
Y1�ۛcY�F�1��\���AN�y��)7y�R��o���.��^�]]S�v|6�hN�����6����p����L�:��xn�+���>��π��M�B�ЈN����F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��{(��Gϵ�O��V��հ���f"��Ս%1F9jQ�BQ#Ľ���M�b���N�����f;��Ў���M�j[���ζ����n{������M�r����N�����v���\!��DoxȠ
A;��Y{'(����|�uq�,G
1~��@*�IH�����#�MūӞXM !�@���o�1��p%/6Ķr99jj��V�ylF��H��p!`��y�����HO�җ��;��P��ԧN��[�$���ַ�fK��`?�î ���+B.�������n����+���]E�x�s��`ݘꡥw���bߝk��
r��],�2>�["���g�!���A�iJ�	�Pj��G}�@��u���0������r���\{��gB���K��%!+�U�So��Ƚ<��A�??)��}$��"���Z��tl`�`�F��}�"��@�0�\ ���g���r�s���bŷ9x��'�Ee��؀�6BCQf�� Ux�*B}�Bw��Ёy!�K�!)W@�I�
 Q	*��	08�4X�=�`6��:�#hr;F��B8�D�MOP�Ia�	H�\��uH�\�,	tp��0�
8�>8�ˁ
S$�@U!op���0�Uh- - �LJ�2Ї�2 �u��q�!�����x+wR�H>�4�QG}2�pex��8��X��x��������؊������8��X��x��V
�D���R0/�>4+H�R@q����|E�"�Z�"'��!�`}`s�]�8��	7Њ�����긎�؎����8��X��x��������؏����9�Y�y���
��ِ���9�Y�y�����ّ�� �"9�$Y�&y�(��*��,ْ.��0�29�4Y�6y�8~��:��<ٓ>��ƥs�9�A��P��S����9c�G9�T9I�����CQ�	��R	��wfY�O`�k	P����[t	�9[����|�tT�o�Ë�f=Ə�!�
,3,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP��'ZԫX�j�z�
ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_Μ$��УK�N����سk�ޗ*�����~�N����Ϋg�~˪}���o������ߏ7=��xW;�	h�&��6��F(�Vh�f��v��K��_LrH�J��Q�B	���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫�춻�;���	�C@?�����H/A��3L?�C����;�;��3�}|�H?�����ӏx�O;�ޫ�@���K�#��ލ,o?��@@�	�,ù1��6�/
�Bq�6��J�,r���r:�ܳ���po����:����Pl��,�$�41q��5�4�,�:��K@��!�
,c��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ#�vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷��u~L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ���w�
N��ي+',��Kק�,nɢk�;=Q�Zޜm�O�������5����k̓���b鼷f�?Y��yß~5]u�� W칷�VM��w�Ah!U��K"�s� �hZ;��h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰��*무�j뭸�뮼���+��k��&���6���F+��Vk���d��@�l{-\�X?�t��j�#�0��S�x�v�n���s�
}|�G?�;�Z�Cd�O;��Z��3��#O;�,��;��r���Z�ƻ@ܯ���N?^ ���\H��O�(�rY�,n�7���/+��o��?�2�q$C.�F�%�9M8���6\s�b�����r��;�H@��!�
,Qq���	H����*\Ȱ�Ç#J��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë$O�����ӫ_Ͼ�����˟O��������Ͽ��u�!�
,i,���	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]��S?�՘J�J��Նr�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O����~�_Ͼ�����˟O�������߯w%��O�dG����1���
��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰��*무�j뭸�뮼��k���N����$�,?����S�S�@�V�l���3���G.�.k���:�#���.Ҏk�����C�����`��:G?�`�<L�<�f�/��[j�fH.��6{o	t{���&L�#Y,�SϖLj�  �,*?���Ϯ��8㌭�B���
��Ρ���#I⑽%�����[s����R��l!�
,i,���	H����*\Ȱ�Ç#J�H��ŋ3j��pǏ C�I��ɓ(M�Jɲ�˗0cʜy0�O�h��ɳ�ϟ%s`E�УH�*]�Ӕ<�ИJ�J��Նl�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O������_��rH�J�Q�B	���6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰Ƶ*무�j뭸�뮼b����:�c,��N?�K@?��l?�H�l9�cl��.��%�`�9�h+-���'��#���C@:�4�;��K�S�.k/�ۢ��;��p	��N;LX �0���D-�-��F���Ϟ�ϲ�lp�$��-�+���9���P�zC�9�sq��:[n��[�ù!�
,�c93�H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\!�
, q�!�
,,�j�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G�>�I��ɓ(S�\�򤫖0cʜI��͛3|���ϟ@�
J�.��)ʴ�ӧP�v��O`5�X�j��է��`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O�������
o���(�h�&��6���R��U%��Ba|�0�*+X��$�h�(���,���0�(�4�h�8��<���@)�Di�'��$sf`͒ȭ���P��3�$3̕U�L5Ԅf��%#��d
g�Ԥܚg�	�2�Xc��r��̝w���h���c
�[1Yb������裌F*�H��7in!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ�h:�)�իX�j��c?�;<�$hi;6]Ӫ]˶�[�9L�ZZ�`��x���˷�@6��>��PpH�~+^̸�M��ؼ�ͱ�˘3;��0a+:F����ӨS�>�C`��3<Ǽ0p�Aj#8[ͻ�����0��/	�CB�`s���]D@@6��سk~}�L�R:�2���COֵ�_Ͼ����M�kپ���o��R�@v�(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,�����4�h�8��<���@)dM����s!9�8n�T>�
�E3LV�b,
Ei�\�Ď;-�c�>mC��!$�B�L��B"��E�A4'�x�7�F����<����:�=Th��&j��������X�F�X�h���X�G�f�@�4t'�]��6j��������A`x�g
�B�@��+Gl�I"*Ґy��#P�=9h��+��D�
���Q�%�C@.�B@Y
���A9�P��j�0�8EA��S�:�6$�B�L���Y`lS�xv�E�x��@�-t�O:�:KC�.��H�
P��`Xx&�/�1%1Z�(T�/Y7�:�
G�4�I[�Zǟ$�A��Mz�B�Ȇ�@5�L`�5=�QI6�O�]tI�k),�1�A��S��*�S���8���ji�G6�z3��n�$��έ{��:�Է��U㐯؅B�<�ёg.�#���mܲ�Ac�\"�pˑ&���)mt�-��lAQ�R>�����bP>�ypĵ�̣v�=�d�@�𾐩�����
/�����C�uy3� �%)5��3��;�j�������ɣzG��3��L��jfq�ٙ'( �Q�D��U��:F|(�G�(~�Ƅ7�	WheyE�!g��qeG![�aC[�E0�H�"� �x4<�������4���p�v�o+�@��h"e�F�3�
y ����"MG�� 	�Y稘9�"J\�Y���#~ ��@��
W���a��3I�uFA�~��C=��i.O�2�E�� �MБ��Tr#��"u�4NH�'�FT�N�� �@�\^�b����]fI����T�(��F��H3��*n���8(�S)w�:"�u�Ř=�T(�����!�t�J��'}��$���W��{��;(�?Q��B��L�ŏNDp�\(��9
j�41h�"��Ƥ��%HA�P�c~+�M-�Ӛ�t$��:�xӞ��@�Q5�J�.��H��$x�K_4G�Imf0?�B�ؐ�`�H�JB�r��`
�B7T����hM�Z/�ӵ��e}�E�Ƿ�i^A��nH�d�r����ڥG���_(���"$%l���r��h)G�aT(C��hjjV)<����f`�8:�:�e�Ҭkg�E�䆶A�*nw�۟�a��
�p�������M�r�KB�2��Ѝ�t���&5eε.!��o�‚فmFB�B���9�ԛ��ĽG�o|��^����E�|��_��׿�5/~�g��w��o�{`#�
N0%`
38���\`�D��yB	�DԔ�!n�}b�8!��B�{a�ј�1�/�	W`�X�3��]<���A��~���kY�C6H����3y�-r�a��"SĊimw�L���̭˧J�[4����p����L�:��xγ����>���s���M�B�ЈN����F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��Ԩ��7��U7'�h��gM�Z��x�(�W4�X���׮�T
V���N�����f;��Ў���M�j[���ζ����n{������M�r����N�����v�����M�z����Mk��!Y����o����4����I'�1$C��c` ���C��|�ǎ�0WVw|0�)AvC�E�/QָnK��姹�>Y�F�T,��.@q$>B�җ��;��P��ԧN��[��XϺַ��s��`;�.����fw���v��~y;�"���}Iq����S���Z�æ��63��GM[��;�����Cj�ϼ�7��{�&���;����<��_���(��^5�x�[*��#%�lO\�$���� ����6]-���{(�v>R�-��[������B�e	1O���_��$�
�="��x�@�.` *��� �WX1�TE�@@�q�d!- ��-�}�&P@�
h�!�C�%�P�Ё���=H�g���7��M���Gч�4X�6x�8��:��<؃>��@�B8�DX�Fx�H����
˳x9�ߑ*�P�ax>��&	%�B0Sq[UA�#1�d���Y�s�k(h�����<XwAzJ��|؇~�����8��X��x��������؈������8��X��x��������؉������8��X��x��������؊������8��X��x��������؋������8��X��x�Ș�ʸ��،��Ј{5��"[�M�7��W�(��p0���0�j���ӣ�I��g;������ǎ�({@�~H-���ȎI0���ᘏ�xuzxd	w6��?�#�~�5!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�єD3ԫX�j�ʵ+F�$_��t��hӪ]˶-�&;1Wp�ۻx����W����9�p�È+^l�,�>67eL����N?��_�J�aM��i�BKCs��-\V�@�Ӹs��m�MA	�
��q��&�&�n��\�N�:��'Ϥ.�E�"�Z��޺���ז?��$����˟��9A�)��O����(�h�&��6��F(�Vh�f��v�� �(�$�h�(��⊁���0�(�4�h�8��<��/?��DC�h��Y@u�h
ma͑P���BLFi�)��NK�0�OG�U9B�m3�h�X�Akr�O�-���a�Xpnԏ`���N�J砄�A��S�5��<)��.�摤�f:�/
A*avv����)���)���PMP���@�4
����F
|p�"RŐt�x�@��������+�B�(�m$�H� �o
�#�A7�P�
�J�-�8FA��B�<��Q����Hz�#N5�	da�A�Q���<���-
�#�B_�D/G�y/�\�i�L����%�AD��,A7�!.Ctm�߮5kt{	��Л�K��Hz��"@�:/�$rFv�O�a�ɵw��ś匬�X#-`:��y�PP�4HD�m��-��;>˭w��I�ހ��L��B�`΅7�!&��l��M�K�F+�r4�㠧�I!E
�$t��>�Ǟ^���@�2������;z�#�@1$ε� �C�3.�/���ԗ���Gwh?�hT�<�W/�e��5D�4���ӷ�H�/�|��o��������利��؟�H)V����R*9�'���i�&o��q"�%o��G8��q%�^�a�	�+E��<�D$�u�Ta4����X��ue�	[U�+��+3	'���%�J�<�aJ�!�"�V#bT�Ŏ0%�ꈫ0��?�	%@`�@�
9�ŕį$U�D�ޘ�>.&�H9:2�L\eM�#A�(`�u)�cA�q��$2$�pd;�B�A0Bn�I�F"����U�aK��"�G���#�B�	��e�42O$��#�0�����jZ�،]$$ɇDm)vɦ8"�q��>��R��J�Ϝ*i'<��t�)v�9	�y���ٓ#,!@+���c��'��@�:4&�$IK���>dHFZ��NH0���29jY`�$M�J=��U��0��L]4ҙ��GҸ�N7��W��"Ҩ��v�O]~d�O�G풨�T'T�JU���UͪV��ծ6^
�A���l��bŒ��wք�$�"`Ҵb�T؃84�	�`�X\�Z#u�#w!J3�g�hd� ���j�Ce�yǞ>�ԧ$��]��&�К֡���ic*�պ��6�CiaK��F	��ͭnw�������p�K����AHk�;B�0���ȁy��7Y�M׵�в�Y�$�p�v��]�~W��5oz��^��o|�;_��׾�Uo~��^��W��~�+B�X���o�<�����j���s =,��~����]Ȁ��^
h���|?<�+�.��S���7�
1��c�X�>n��t�����9�ww��%y�J�
n�K�*ȂV�[S�v`6�`���L�2���hN�����6����p��)�L�:��xγ����>��π��M�B�ЈN����F;�ѐ���'M�J[�Ҙδ�
'mZGO�	?M�R��ԨN���\�3������gM�Z�ָε�w��^������M�b���N�����f;��Ў���M�j[���ζ����n{���7I:(n���螧v����3�y��<��lɻ��V�zk�d���
�o�8��Q$��.�l>�ς��6��H̤;Ȉ_�=X�Hy����(�O��W���0���gN󚿜�6Ϲ�w�k����0�dá�D�=�a��t�0��P7�r�N��+�VϺ֟i����^���N�����hO��������<��P����c�u�;���ܩ�/���Z�����ߓT������ ��[���0�7�ɝ���CO�қ^�O8�O�0��cH�� ��� \X��#A��_hR�������A�†䊦BDoH�<���k�2h��cD��d0~�_'#2"�� ����Nv�����P��=�C�q|�7�X�x���
��؀���8�X�x�(\� O��z� ���C��370�R`o����uE��1Z �#Xw{�!�@rA]��t�	'��B疁J��L؄N��P�R8�TX�Vx�X��Z��\؅^��`�b8�dX�fx�h��j��l؆n��p�r8�tX�vx�x��z��|؇~�����8��X��x��������؈�������8��X��x��������؉�X���3\rz'a�<��� ���e^a�m7���JQ+��:�M�f��huP������@��X����00�����Ș�׸�g{=���8�XVcX�N!�
,3,�E�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP"0E�MԫX�j�Z��@�\ÊK��@>fӪ]˶'��p�ʝk�?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�4��سk�ν����Ëj?Y����G~�N�����ˇ˪}���o���(��G�&HX;�)��F(�Vh�f��v�� �(�$�H�K&�f`LrH�U��Q�B	��p��!�
,c3�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ#�vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷��u~L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ���w�
N��ي+',��Kק�,nɢk�;=Q�ZޜmUO�������5����k̓���b鼷f�?Y��yß~5]u�� W칷�VM��w�Ah!U��K"�s� �hZ;��h�R!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j��pǏ C�I��ɓ(M�Jɲ�˗0cʜy0�O�h��ɳ�ϟ%s`E�УH�*]J�)l�J�J��Յ�F�ʵ�ׯ;��K��Y��Ϊ]�v-?~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë>O�����ӫ_Ͼ�����˟O��������Ͽ���(�K+
H�<3�!AV
G�
%�\
B!�
,c!H�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Nj�>�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�[\'���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N���ʿ�+ߛ������&������	�Bx�]�{�x����%+6�X�a�ҧg�^?����c׮����3O;���߁&���`F�<��3<�D�}	���r�z(ρ������}���+���֨�<��<�7�8�agd1܀��z�xS���-�?����:��sc}��e?����T�I�h���dN8Ϛp���~�Ή�Q٦�@��e}9�9��7�)�p�Ϡ^�wg��"zh�b"��Av(������L�h���jꩨ�
������+}��7�H�M��<��:������+����(��+�LɎ��v�nHa}�Q)"��x��"S���7ޙ�N+,��,����H�O�c�m:ڤS�����J~��O�c�;��'O��#�	����Z�'�;
S��;�ȣ��P�N?�@K�f����0�"z̊6��J ?�yx����B�6�������j��Y��%�:
:�ċ;���a��ʓ!���-��gZ8^����LzR���:8�7MV������:����PK�C�C�(�jy-�����e�=ϟ�(SD�.��0���0C�2�eRD?�t�%���3���
���嗻���"��3����W�`:��e��z�g�~��#(�>��3D  pR�r�O&SpB (0nf��O���N�N?��@��'�;�d���w�Hl�F-\��ZPC��ݒ�	O\B���ɦ��~���DŽ����E��
o�a��?�սE$A
d�PT��`z ���t�A��C��7�"P�EL7�%:t̡E��8�P��b
,H½@�hT�z@�@�L�b�8���E�CC�\-���a�#L��A��sT��pG��!�!�`3�0�!���C��J�aV�怎0�!	 �:v/5J��7�1X��؅<�0�L\�@ڇ>�!+�@
j���"��,0'��=���b�0�Q�r��|�E?�C`�j\ X�(�Q�/Р��(���"�0ʰe�1�'���
�@JЂ���_ŶbT�3ȅ3��	x�V�H�
��l#\Ī�;Ё
#X!��03�`�㝳`'8��!Ď{/5
���$�1�E.'<-e��0B,��~Q$e�2�0�vK�SPyH�f"�W��Y(#�k�O���}�����,�zH`��Z~sd ji��SKA
D�:�9p� @%0 >eT�H�2Pq�c�����C���'@G �Pɾ3	�p���$�`�D�X�$���PC����LP�
�x'PQ�X+�ž�C�U`0���?�J�� �%�0ט֡V�@�P1d���1����rgs�b䃞dX#7�E6�!
!�C=��$rF�e�KC��;�����U'�A�
��_�G���Y����<G�$X�*uZ(AL���E�����/\��,�A����)*�����(��;�A�E�A���ǐ��E5Ta�-+�
�E\�?C�:�Pb
�8�醐	�}��k�i ��V!���<�a?y�~��Pn��'���
y@�е�2�P�t�-L�X8xp��D+���c�U�:�+|�d��A
��	�A�?�!�ɒ��`��pg+�°j�������GЎ���f@W�
1l��/V�Q����A.�ccd��60��p��hZ��G;~q:�Q"�H���7,;Ts�
߫���c��p1�D1����{sL�Q��C�C +�*��,��ζ`t������7@��PV��C��q좺 Pƙ��*h#��'f����W�>(Av�b\b��V�vPx�P8q9A蠝�`���\����4������`�Iz����~!����L����9D>~�\hn
�ȅr9g����`�I:��rC2Fʼn�}�_4��ӧ�M��c*H���b�
O�<�#n��&�bW�ٛ1�,mTA烒��f����u��@�/pNX^�,(Q�L�_XFֿ����Cz6��:���D~aIȄ;(Q�$t�JZ
��I8V��8�Ȑ�B��~�$�$=���dE�~�~0V=��
FP����D%�����L�`�Ѐ5�5,�d.���U��pBj�
�pHFp�=�0bO�O��`�E	G3-�,$�۴I����
�o���
��w��p\��I01����k�0�PהF��MV8}�@	��N_gD��^x@J�6�6��$���+��/�v(bR>a���S<x��	C`N��l�!=�!=x"<x�x�R;��%��R<��I�*�*��'":��yb(����8�x=c�4��-��!!�� ��a��)���7�����?�,b�k�r?�s)"<ӳ��%�b�'yx��R@|�����$�1�%Sh2k"#Tr%CE�Hh�ﰂ�X�
_�t��4���0�0S2�2� #�T��22- ����K3%�0O��"�!~�2�x�S�!�OT2 W2%��%S�2y&�Q=��%[�0��(���d�.B1��\R=)#^3)-��1�"�41�%<�.�Gj"�a9�s� ��2��&���rI@s���׎���PlS���4�'e�0��-����x#�V&�r#"'`9��>yR��I�f���g(@�4�X���(���y�f�?��<R�9L���'�Y���(��)Sɋ�@�r�i�<�d-�9�ę&ԶP�+�a
�
w���
�a$&�B��@B�Iސ��Dkɑ�`�I ABX��@����@$��'� @���Y۩�rm� p�� ���"�,�Qwe��>$A%i���0��yA�"�B@�-���3���w'ʞI#�m�
��k*i��q�֖��Y9�Q�k���5�ޠ�%�1��"j�3���`!��'"lj�0^��
v +����0���,E�J�;S���2��
V2(p��1��� karXb`U�ҝYr �
,P�ӏ�S���� �A_�?��'��:D	����(���`N�Py���D(b��^��`L0W5$�H�1O$&����d�'9�v^"�0O��)���h��jNޣF�'�X1,�4���jz��b6�a��+ ���
�0i�ogE $
�C%��k�@��B�� D� yƧ�
�
��Y2�5��
"��"��
��@����`��wB� 
�s��`������
��ް�U������P�Z�8�a�1b�FE�
������D� 
��a�I�@	�P�S�K��
Ġ��P��� 
8�� 
�P��
a�����I%� ,J�@}�J�
l[��
�W��B�c��}k����p�*ˢ��ږ�&z5��p�@
�P: �0
���S 0FZ>�$J(PC0u�H5S `Q�=)$��
TXV;�7�H�S��Y�U�G�I��0賃lF&��TV ���>:�
��V�Dcvg���S.�7VF(��f�E�_��PC  ���EPʐl�G��,X	(����c�ܤ?�'���7�$g���K[��'9�?��VPY� ��0�Pv\4"�pF�п#�r�$kv�5P8;LUr(�
� [4p��E��5�K�a��+�0����R�$a����4�k�L&�/�v,t:�4��!�
I��V�	�P.�!a�p?CVd�0�?%�>�EM�P}��f%T� �cDsJ	,�z@N��fDz��$s`�V�7�SU�Fser6���N�^5�9��:V�є
���G[��=L��SMU��uH��a4`.��s'YSLV���H��=���U��[H�BwY�:��=����`su���='�C�	5`.:&U��>(@f;l�W��
:@�`X���qm�(�9���S�RNt��0�@	l�IF�ZO�z\� ����1� ��=�FCF'9,��N�,ډ���z�]�@S�kL�@C�`]�zc^P�~0%g?/�o�P.Qy�<�#-Z,@	�$�x\�$;ڀ��PU>�	�#h�[�� v�T��T�,��1�0!��~y�C�4��4.M�E�ap��8̐>�y��W�C�~�w3�gԳ�
��0�L
��
����PB�f��`�02*�GW�<HM,�t�j�8�
���I`
[�6ܷ���.XW�;���%�f������cw��;up�ɦU~�>+�}0�s����	�F	MMS�<�RH0�
�`�@U�
�E[�R�u�|P%���\��j�\��ڠD�=SN�a,P�傫|hs���w��4۾U`WFv��a&��x�PB�%��@�F�G/8�VV�M�yT�2%e�У��
������
���P���ѧ��+m��0��(5~�y���P
�1A�RO'�@	S�CG��	�2�S]�0ƺ�
�n�T#
/8%n�G�P�
sj�p>g4�z~�%�Is�@�CS�	k�
ʰ�p��3T�I������^�04HY4x��@s���v���͔�	���>�	��
�
��
�0������x�7��uNl�{2���0v�*~>�}�K�Uw�4��4������ s�s�I
2�K���
�0��p��љ��}��2�E��%���%"R�Եͺ����aҙ��$��!�'R�� \��?���\ލ
� _r��� ?:����C?�#��
X���@/ڏZ������\��@� �p� 7 �`��q/�rr%i�7y%w�i�y����?�K�~����:���i��/���5zO�{�XS��_�{/���������������y�5���o���7���/������������}��r/�uW������ʿ�����П�{��P����P;���6��֟ː
�`�`n��
ܰ�
���P+ �`
��������AM�@�
$hM��rٜUCQ�D�-^ĘQ�F�ٲ)$mٶrܶ=��Q�J�>{Vm�h�ęS�N�=}�T�С��EZ�+G�vI��FV��Fs-{��\�U㒍[U��3g�~��P�1hmݾ�W�\�u�.��W�^�}��X0]fxF�X/�c3�>�Y�d�7s]ƌ��.O#6��e���&�je>]�5o���PL����;'fN�]\�p�ōG�\�r�͝?�]�t�խ_W��L�6+^<���7{�tcծ]��4f�2j��`�`E� i�����7b�C0Ad�A�0������.�0C��Jj�\bXO�2H�4Wk͈�Əje��$	�%w�G2H!��Q���NC%�T�C�r�e��.s�����J�r~��g�q�o��1ot��d�M7߄3N9�4�;&��s<'�ZeQrY�\���dJ��n���n�a�P����)fNM7�SO?��e(̳TS#�s��V��f�c��0��k`��-j�Qf�9�if4W�Xc�E6Y6_z��S������(O�<mګ>
NWj�٥�d�)P�d$D7]u�e�]w��αh�7U=�e�b��_~�Y&�j�-&�>xgf�a��8b�'��b�/�8c�7�c�?�a�GF�^�O��]R^Y�]f��[v��o�9�rֱ�t:h��&�h��F:i��f�i���:j��^�X��ᦻ��Ɠ,��;l��z�B����l��f�m���m�����o�Y����<p�'�p�G<q�g�q��<r�'G��y��|��!�
,�q,,�	H����*\Ȱ�Ç#J�H��ŋ�a�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L��Hw��D�Q��ǐuʋL�b;���\�3����yM���ӨS�^ͺ��װc��ov�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ�h:�)�իX�j��c��/	�AڎM׳hӪ]˖c����+X��ݻx���+�M���9�0�È+^l�,D>6/xcL����N�A�w�_�I5cM���<K9C0���6���Ӹs��m�L�	���Б8� �&�O�E\�N����'�41(E�#��?��$ݺ���يOY�d����˟�6!A�)�dG����(�h�&��6��F(�Vh�f��v�� �(�$�h�(������0�(�4�h�8��<��M����r��4n�T>�
�E3HF�b,
5)�X�Ď;-�#�>mC��!$�B�L��>i�EA�&�t�7�F����<����:�=h��j���v�����F�X�h���8�G�V��@�44'�]��&j����.���AP�8(�2t9���7���$2�"
�g�:E:ТQ�C&���(K���
�.��B��
J��
c)D�*��"D�:+e��P"Nt�ڐs�-�f�u"�7�)8v�<ۆ$lF��B@'���S�4t�B���_A���
6��k�2��#Ȏ ]w�
��I�E@2
E��A��ƺ}��-
x�V���7�$�A�=:�B�H��@H�,`ѵw�նP��d�d�E��V�a-����,<�� �TKD�U�$a1�c��Z{�߂;�1�`~��m�!?�̚��8���@��>�P�+U촧؅B�<�ֵ��#���m�¯Ac�\"�@͑&�G/)mt�-�C�M&R>҇/��bP�>�ypd�����=���@䀿P������+������r9���)�HA������>���	V�ԑ��:22�P>�;�
W����0��nZ�����wx��Y��<be�� 
��h�x��!�8q"Qޗ5*B�|�V�1$#��Z������	$�q�Ӈ�Z�Gwډ�@��|��j��bҼ��#R�@`�3��# �G���&JK�f��J*fأH��Uu�U �-��$,��U�@�$8D X�Ig�$�K���I1#�;��~S\��e4��!
:�t��"��0�H/
��j�IШSb�4�>�hvŜA��6sT���2#�r�.bL�̳�l��h*�Nx�����@JP�,DMJ]
�Уذ�|Ag�"�u�0}�3!
�����(DDJ��d�U�vP����I$}�Y 0&��4����s >�Pm��Ҕ@)�TR�:T�tB�`SySqM��X5I3���Gf��`
�Xutϱ��MA:�Z=2	^h����Z:ΏH�"�c?�UԹB�~
�`�Օ���M�b�؎x����a�FPF�M�Z:Bv�Q�����zv�,-*]�g�B��@18jimDw�Q3� �S7���B�]OK�Hi2$���=�����2@��n�Kݩ.Bm�5�\�����}��x�#�����M�z���J����|�K�
I �o�߀�B��ٖ+�&��bhQ+%HS��,� �5p��[�N$(~�b�녩(��C���)�8E�u�p�����E^�n4�b3A���_���D&əNvq\�n�2_`�8��ʈ��%� �}$�AfJ��+��l)�r���q#�8
�1ee|Y� ��(<(\O6�����E�	�2��Ejrd�������,��j1q�N��7ͩ�1�K�X6�w2�FQ�c���-~k�j���M`�?%thF��l2fJx⼼c� �1��H�G3�خ���O�`vGp}��$�E��DD�ll�Z9ӷ�Rd��
o�)j;Vk`_�i�I"=Dig�Վ�.h����L�&��G�\����Viǭ�p��
"u%8�MCD���y|�l]DŽ_�������T2V�r���	�
Z-:���^�	�9b�I3$U��|?0�AC�;
`���~�$��A�l�@$f��'����J�D���]<6+��ç��.t���LF~���K{F:IHZT�o�?�Q�U�j�C�Aw�^0�>�u�!���qR�ȷ�+�5<�y�&����G����!��:��L����+L1�gO{�����}����I����O���z7>���+��Џ��O��[߅=s�H�}��{�������O���O����������O�����Ͽ��������8�X�x���
��؀��}�*�nx��T�傁�P#�g��&h"�&b((wQ#�����,`؅F��-#Ё�*�!R��-;��4��"DÄR8�TX�Vx�X��Z��\؅^��`�b8�d8X�h��j��[��l�� u{p"k4�v�9�v�摇zX|؇��B
��X�������d^���rv���8��X��x��������؉����!B��ԁ�����,�6K����
�h���h!`n�����Ћ�8#L0��x��h}�5��،Έ:��yϨ8��x��H{\��lQ��2�	O�o��QÍ<1�
�t	H�@@�����4�� �_�
�P*�@@@�P�̄�8!- ��-��&P@���6!�\�q�!)*����i���F����"Ҙ�4Y�6y�8���:��<ٓ>��@�B9�DY�Fy�H��J�k��>�����Q*�P��:o���#	%�BPU�6
�b;@3�PH�/q�
~�A���v��Zigx�|ٗ~�����9��Y��y��������٘������9��Y��y��������ٙ������9��Y��y��������ٚ������9��Y��y��������ٛ������9��Y��y�ș�ʹ��ٜ�����9�_�Y��4�;F�p�����9` ���։Oȍ�p?НI�By?�����I����Y�@�H-����	�Jp��Y��ٟ�y��{�d	�v��Im�3��9y!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�єD3ԫX�j�ʵ+F�$_��t��hӪ]˶-�&;1Wp�ۻx����W����9�p�È+^l�,�>67eL����N?��_�J�aM��i�BKCs��-\V�@�Ӹs��m�MA	�
��q��&�&�n��\�N�:��'Ϥ.�E�"�Z��޺���ז?��$����˟��9A�)��O����(�h�&��6��F(�Vh�f��v�� �(�$�h�(��⊁���0�(�4�h�8��<��/?��DC�h��Y@u�h
ma͑P���BLFi�)��NK�0�OG�U9B�m3�h�X�Akr�O�-���a�Xpnԏ`���N�J砄�A��S�5��<)��.�摤�f:�/
A*avv����)���i�9�g�+�����KC�`ZѪ�n��(2!UI����
��ȩN�!�"�*�RB�,D��ɢ���P:�tá
�����C`��-��x�Y*�.����6t�<5�	da�A�Q��<�t��-
�#�B_��/G��/�\aqA�K��D�@dIeQ�*K�
g��]��@�k�A�^B@��6��@�$2�
=2��x2�UH�id��dF�ȉ�}���zj���c�#��2P�E]1��U�zK��4�Σ.HR��"<�$M��1��ᐟȒ@U>�3�w�b
��IC{n������]\�8{X]P����(��&�(l�tAR�>�'�^�;�@�2��������K�8�,�8f;O�Xq_�@� ��ط_�;K�g��hT�<M��?f�6D�x��G@��O$�(���:���'H�
^�u��7؟p�H)V0���R*��	W���&�c�q"����q��w8�q%�`^����	1�+E��<�%D<ܠ
�t�Ta49��XQ��ye��^U�+��63	'��1�J�<�"J�!�"�n�#bTǎ0%���0�?$�	%@`���
9!dž�#�%�'�wH�TR1���G�ё!e�*kB&	�E�cPSI"��]D� a�)�ѭ#N
�2�Ml7n�h��sJe��#�G���u#�B��"�e�58Q$�t\3#���y�v���L^$�ʇ|m)v��>���}�ŗF�eR�$L�xϟ*)(B���2y�9	z��94_-1��#v샔��DҒ�D�$�h�.��y�T /5i�P:!�����edA�A��@��6�Ԣ��HuQN��T#I��P݈&^AT�H�cN�*E���}�T UH;5M�vR�fM�ZӚ,����p��\��t����F�A��K�S�;Zv���v�O��%LRa�eb$��b�el����	�(��M�I�YC�
��eE��b�{�X�Z����v-���mo�ے&bk�=�:�K��&��5�r�%�2��Ѝ�t�K]&���ͮv����I ��#�s�"`�=�f":�*�W��}�|�;��׍�h�k)���ݗ��@+��_���&1-��`��$�UpZ��9(C‹��!�L�5�+D(�V�$��cה��bx7�X�C��m\�$�jH ��u}��!���:`��@���`!	<pG�\V��53��\���Ix�ÃD���M
�4^b����~�#���+�I0_���	0��v�V�p��kߔh�ؗ�R>�0]�D��w�
�NR[^f�!-S�`w\4#�~-���Lc��1�A��jaZ#�v��1�H?1#$>�����TA�<O�5Ғ\�T�
��h٨]����_P����H�L� V��\�9$��������y�I��G�Ubm6YDȈ��Eܑ�"���'A���1�-+�0���I���0�EZ
Y#�"2�7��U7
:'j�[�S�l�<Zi)s�B�;b<� � �B<�S��":��XZn:k��a��җ��<w:��]�XϺַ��{��w��+�r����hO�{�qu�/j�7���N����xϻ�%��?��{��O����O����;�񐏼�'O��[��ϼ�7��{����GO�қ��O��W�ֻ������g�T�D>���o+��$a��Og�o"�z����9��^ E���/�:��/B	������#�L� ���g-³��{��i�˧o�����Ͽ��������8�X�x��p䖀؀��A78�Q�^�!Nt�8(e���с� �$�8cW�(���uO*؂.H\f�鱀2X�6x�8��:��<؃>��@�B8��WCC�gDX$��L�(h^'؄��
RH��U�-���7Y����d"PP�h��jx_o"sk��pX{�d}q�W�x��z�]O��\A�	H�\�A�~�\�a�	tЇ�0�
8�t��qb� 1C�
c��}(^��- -p�L��20��2���x� 3�!����x+2sRQ��h�0��fH{2�P�،ؘ�ڸ��؍�����8��X��x�蘎긎�؎�!ՠPQ��� ��E��47�!�B�����E[��[��#,H��!�`AR�8�dӏ�{��"9�$Y�&y�(��*��,ْ.��0�29�4Y�6y�8Й�:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�"�~E�:��W�`��ӗE�@�C9@����9����“�M�K��xY�Й�[(�@�����9�0���9�0�����9�!��:��P:�/�>�P!�
,3,�c�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP"0E�MԫX�j�Z��@�\ÊK��@>fӪ]˶'��p�ʝk�?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�4��سk�ν����Ë�?Y����G~�N�����ˇ˪}���o���(��G�&HX;�)��F(�Vh�f��v�� �(�$�H�K&�f`LrH�U��Q�B	��p�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h�)<B!�
,(c�H�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx����w纾�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ������Or�������O�;�:d
�dS�5X�Q��@�0��f���0C
5�X0�P
4"�H�6Ƙ���q1�8��0B荍�|�c��lc
4
:�#y�~�d#�2�$#e2K>X�T	a~Z>��t9_@!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,i,�c�	H����*\Ȱ�Ç#J�H��ŋ3j��pǏ C�I��ɓ(M�Jɲ�˗0cʜy0�O�h��ɳ�ϟ%s`E�УH�*]J�)l�J�J��Յ�F�ʵ�ׯ;��K��Y��Ϊ]�v-?~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËzO�����ӫ_Ͼ�����˟O��������Ͽ���(�K+
H�<3�!AV
G�
%�\
Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�b�!�
,)c�H�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ#�vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷庾�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N���سk�ν����Ë�O�����ӫ_Ͼ������׋n�������?q�_v�<�6
�8�O+�cL�"�3�RA	��͑�
���)c��8"$�H���Q�9.�C�5�!7���:FXL� C
5A�L:'ʓL���%����?WF��u�?�q)�|!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ�h:�)�իX�j��c��/	�AڎM׳hӪ]˖c����+X��ݻx���+�M���9�0�È+^l�,D>6/xcL����N�A�w�_�I5cM���<K9C0���6���Ӹs��m�L�	���Б8� �&�O�E\�N����'�41(E�#��?��$ݺ���يOY�d����˟�6!A�)�dG����(�h�&��6��F(�Vh�f��v�� �(�$�h�(������0�(�4�h�8��<��M����r��4n�T>�
�E3HF�b,
5)�X�Ď;-�#�>mC��!$�B�L��>i�EA�&�t�7�F����<����:�=h��j���v�����F�X�h���8�G�V��@�44'�]��&j���i�7��,��� *C��3�;���Qx�Ȅ�4$�)��@�FA�`�
�,�B�'+ܠ�B�,tN��B+��9������Ь�	S�CQT�8ѩ.C�-4��n�U�
ycO�B�c��mH�fԪ-t�O:~:KC�.�mH��
L�`X�;P:r4��*Y��(�/�707�
G�4��Z�Fw�@���f��
�#:�l�D��mVHFm�0?w�%����@M��f-��W3��I��������1Z��G�]w�����e"?�Ժ��6��ۘ�8u>PT��~b�>Ԧ���#���m�үAc�\"�͑&��)mt�-�CP�M�R>�G���bPY>�yp�����=���@�@�Э����
/�����Zy�3� �)���G@������>������:2Z0=���7�z� �e �����!
W��Y��,�!c����htx����6�!Q���"�y�W�1$��J��Z�5�D�_�9OhD�i'b�M�B5X�܊1H��-�Hj��xT�C{ndTc�����I��"�HH�́i	0P������p`!�CB��U���e�`
F��I��/<N�'	Č(���qLqy�~��$1
�4 @%q���`Ĕ7�ī��A{4�7�ˌpb�هa�̳Ts!�G2qT���#�rG*BKČ��ٓ�h*�Mp���팧<�IO�,D�LJ]��ϟ���{���"�m�G u�/
��(���C-2Q� ��(J���>D%M�(Dx�LAQY�p�A(W̏��q�KgJ�bD3%-P=�ӝҴD"��:����b\EM�RG�~���K��T�JU���X�R���U�L�{�Er���xJ�#B����eٴ�2�)\�J׺*�qW��^��׾��"P��`�?�䑂eS�����D�&Y#� �%6K��C�Y�P`%Erz���0��5�T���<�PFi����,R����6�n����Z��u_3nUɪ��:��vx�s�K�ɵ��ͮv�����Q��
�x�K��'��y5Ȱ��s*to;�Q�|Q�?�-~������n|sW�x�s�a���>�Lr���"���X��Efx1��A;�B�)HcٰCl����!#[J:*�a�SQF�K���Mi++B�d��̰�����*�a�B��6�$�2�xӜ� `p#�$b#L\�$4��#�@�[5�N
��~��(y�C3Dd�)S�����
ɂ	(�EJ<���§ʨ�/��H�/򞤠�H�)�h�y�E?����f����6	���8�HgD3���ؼ�@�� d4�:�ZxY�5C���:�]�ȗ!"`\=e���=���VI
lDl�&����,���]���cȲ�Ѕ�!��ɝWڐLT�Ԇ	h�v�c�'�e4-���"����c��Q
{�3�c֋��1J090�E�~�F���w�kRL�Y���FR. Y/��:�k��7��Ϸ���� 9Ad��;��P���'ğgL��X?O3��uJ���KF�B;�p�&��������� ��5��|�xϻ������#���GB���O����;�񐏼�'O��[��ϼ�7��{����GO�қ��O��W�ֻ������gO������.�s"U���B�pb.��g��?�B��W8��`X�C�)��E�/IV��\ė����?Xզ��#�ѯ�żE9����������8�X�x���
����{���h�7��G_w�RE؁�m� ��1�$x��3m(��,x^�т0���2(�V�8��:��<؃>��@�B8�DX�F؃!A�v��:L����,�R5����
Vh��Y�! j�]���0�hX"L��l؆n�i��}o8�t�&Ihsu����|؇~8^\�]���2�	O�o�F#�6���
Q�t	H�@@����oF䀅_�
�P*�@@@��|��1!- k�-@��&P@���)!�#[�q���(*��P����P�!���pz��ڸ��؍�����8��X��x�蘎긎�؎���9ې67莿��������X�7�P� G%_S43;@3�O��/q�
��L��Fw���:7��"9�$Y�&y�(��*��,ْ.��0�29�4Y�6y�8ՙ�:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�x�>J�2�&�p�ӗF9 @�D����H��p>�Iq��x>�������mH��	�@P�H-��铁I��I���Y���My�)� Id	٘�49i��4	t!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�єD3ԫX�j�ʵ+F�$_��t��hӪ]˶-�&;1Wp�ۻx����W����9�p�È+^l�,�>67eL����N?��_�J�aM��i�BKCs��-\V�@�Ӹs��m�MA	�
��q��&�&�n��\�N�:��'Ϥ.�E�"�Z��޺���ז?��$����˟��9A�)��O����(�h�&��6��F(�Vh�f��v�� �(�$�h�(��⊁���0�(�4�h�8��<��/?��DC�h��Y@u�h
ma͑P���BLFi�)��NK�0�OG�U9B�m3�h�X�Akr�O�-���a�Xpnԏ`���N�J砄�A��S�5��<)��.�摤�f:�/
A*avv����)���i�9�g�+�����KC�`ZѪ�n��(2!UI����
��ȩN�!�"�*�RB�,D��ɢ���P:�tá
�����C`��-��x�Y*�.����6t�<5�	da�A�Q��<�t��-
�#�B_��/G��/�\aqA�K��D�@dIeQ�*K�
g��]��@�k�A�^B@��6��@�$2�
=2��x2�UH�id��dF�ȉ�}���zj���c�#��2P�E]1��U�zK��4�Σ.HR��"<�$M��1��ᐟȒ@U>�3�w�b
��IC{n������]\�8{X]P����(��&�(l�tAR�>�'�^�;�@�2��������K�8�,�8f;O�Xq_�@� ��ط_�;K�g��hT�<M��?f�6D�x��G@��O$�(���:���'H�
^�u��7؟p�H)V0���R*��	W���&�c�q"����q��w8�q%�`^����	1�+E��<�%D<ܠ
�t�Ta49��XQ��ye��^U�+��63	'��1�J�<�"J�!�"�n�#bTǎ0%���0�?$�	%@`���
9!dž�#�%�'�wH�TR1���G�ё!e�*kB&	�E�cPSI"��]D� a�)�ѭ#N
�2�Ml7n�h��sJe��#�G���u#�B��"�e�58Q$�t\3#���y�v���L^$�ʇ|m)v��>���}�ŗF�eR�$L�xϟ*)(B���2y�9	z��94_-1��#v샔��DҒ�D�$�h�.��y�T /5i�P:!�����edA�A��@��6�Ԣ��HuQN��T#I��P݈&^AT�H�cN�*E���}�T UH;5M�vR�fM�ZӚ,����p��\��t����F�A��K�S�;Zv���v�O��%LRa�eb$��b�el����	�(��M�I�YC�
��eE��b�{�X�Z����v-���mo�ے&bk�=�:�K��&��5�r�%�2��Ѝ�t�K]&���ͮv����I ��#�s�"`�=�f":�*�W��}�|�;��׍�h�k)���ݗ��@+��_���&1-��`��$�UpZ��9(C‹��!�L�5�+D(�V�$��cה��bx7�X�C��m\�$�jH ��u}��!���:`��@���`!	<pG�\V��53��\���Ix�ÃD���M
�4^b����~�#���+�I0_���	0��v�V�p��kߔh�ؗ�R>�0]�D��w�
�NR[^f�!-S�`w\4#�~-���Lc��1�A��jaZ#�v��1�H?1#$>�����TA�<O�5Ғ\�T�
��h٨]����_P����H�L� V��\�9$��������y�I��G�Ubm6YDȈ��Eܑ�"���'A���1�-+�0���I���0�EZ
Y#�"2�7��U7
:'j�[�S�l�<Zi)s�B�;b<� � �B<�S��":��XZn:k��a��җ��<w:��]�XϺַ��{��w��+�r����hO�{�qu�/j�7���N����xϻ�%��?��{��O����O����;�񐏼�'O��[��ϼ�7��{����GO�қ��O��W�ֻ������g�T�D>���o+��$a��Og�o"�z����9��^ E���/�:��/B	������#�L� ���g-³��{��i�˧o�����Ͽ��������8�X�x��p䖀؀��A78�Q�^�!Nt�8(e���с� �$�8cW�(���uO*؂.H\f�鱀2X�6x�8��:��<؃>��@�B8��WCC�gDX$��L�(h^'؄��
RH��U�-���7Y����d"PP�h��jx_o"sk��pX{�d}q�W�x��z�]O��\A�	H�\�A�~�\�a�	tЇ�0�
8�t��qb� 1C�
c��}(^��- -p�L��20��2���x� 3�!����x+2sRQ��h�0��fH{2�P�،ؘ�ڸ��؍�����8��X��x�蘎긎�؎�!ՠPQ��� ��E��47�!�B�����E[��[��#,H��!�`AR�8�dӏ�{��"9�$Y�&y�(��*��,ْ.��0�29�4Y�6y�8Й�:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�"�~E�:��W�`��ӗE�@�C9@����9����“�M�K��xY�Й�[(�@�����9�0���9�0�����9�!��:��P:�/�>�P!�
,3,�c�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP"0E�MԫX�j�Z��@�\ÊK��@>fӪ]˶'��p�ʝk�?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�4��سk�ν����Ë�?Y����G~�N�����ˇ˪}���o���(��G�&HX;�)��F(�Vh�f��v�� �(�$�H�K&�f`LrH�U��Q�B	��p�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h�)<B!�
,(c�H�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx����w纾�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ������Or�������O�;�:d
�dS�5X�Q��@�0��f���0C
5�X0�P
4"�H�6Ƙ���q1�8��0B荍�|�c��lc
4
:�#y�~�d#�2�$#e2K>X�T	a~Z>��t9_@!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲ�EY.cʜI��͛8s:���S"�@�
J��ѓ��"`�ӧP�J���)l�j�ʵ�ש�f�J��ٳhK�I˶�۷p��K��ݻ9���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v��F�"x��$�a�� +� J{�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d��<f���l���p�)�t�iQ�v�OWVh�
Ŵ��z
�,�!%$
���(B�04�L�C@��DJP:��ўk�0����Py���aEbh$OC�*D	�8TGB�#Fuh�k��jE�>4ŭ���:R�TԎ��
t�|�+�D3�#O-{Q?�Td�@�>t�6��:P��;P��dh�
1㎿���@��J��<�@�P?h��A��:��C�@��@x�AL����\���A3/ې���,�^++O���O�:C:��;'M@��3,A����㒋����,�A��
���������D
�%n�)�a��@OT7�6�=�;Y���<�Ƹ��H�6�A���}W2�G.9���0`>y2��;C�������N;Y=�����;��:��Ӻа녺<���:����;~��;ƣ�������:�6��ߺ�Bo���|�z!�}�_��=���E<�������c�]|󼟞s�_�^���H^ք�Jk|ݫ��|�7x�n9�H@�������v;y�p@;�%<�`�P ������0��gH��0kS#�ⲹ���pF2��q�r���X��@׏u�cCS�<��1yP�6̢ehE�m�`��H�2jq�N������6�qhS��8�C�,�x�#1��K���~����s�h_?���&�#�P�;�qQ�,t?ˤ&7��Nz���BI�R��L�*W��U��{e+gI�Z�2�s��]z9cpc%��.�чD��\䌁H~��: a*Q8RT���%���nz���8�I�r���L�:���v����K�\��-��7X�	�"�8�bHn�c�>��+|�s�'��!��w۔�F7�юz� 
�HC�I��h<�g1������$e���� �]�%@&�ȏm��HM�R��Ԧ:��f��$s��|B���A.X��K��G�\�>�(��j���F�*�ڴ"�J׺��xͫ^�(U9�Ū��,�Qp�b`��:��&�n�@�ƀѻ���ͬf7����,�7�I�x�; �#�a�ȑu����>��=��C�(�e;������
�g�b��
��HF1X�o�PlG:������˙nG���z���
�x;ZϾ8��M�y���q�PozaG=gv3|�ͯ~����7�T-LH%d� �7��
)X�y��1�8�������wX�F:�PY��(N��W�����0���gL���8^q��9��Xù�d��Z�	��ŏs!�D A����L�*[��Xβ����.{��`���L�2���hN���
h<��F_~��_8b#X���I|�M~r��L�B�ЈN����Fw��o>F��J[��F&�VAI��ƅ/]�b���P~�5V��V��հ���gM�Z�ָε�w��^�������kH�y�w!��s���#p���e���P5����n{������Mn[�r�˲1���b+h�Vp���ڂ�v����~���x���9��ȫ��� �_�� �}�����θ�7��{��6v5z�R|���B�p�J;B�(2ŝ|q���8Ϲ�w~�s#�.�pH�1%��F����`qo$��P��ԧN���y��˺/�aLo=ƨ8��������hO��������p����N����x��_}vX���h��?x���e'|6�~x�[��|!��'O��[���H�<�A��y����GO�қ��O��W�ֻ������gO�دc���"������O�����O����;��Џ��O��S���Ͼ����{������O~9���O����������O�����Ͽ��������8�X�x���
��؀���8�X�x�����؁�� �"8�$X�&x�(��*��,؂.��0�28�4X�6x�8��:{�B;H0�Q�@�B�B�2t�O)G�{JX��IO>8�G�BVx�U��E�(MȅF�^�C!|dX��w�@!�F3�j�X��:�Ex7�!�
,-c�P�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ#�vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���v߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�����سk�ν����Ë�O�����ӫ_Ͼ}�q���<7�?��	*�e��@�$ͲOH���C�t�.�x�`~m�s_E��O�7��v�� �(�$�h�a�hx�,���0�(�4�h�8��<���@)�Di�X�$�$AJ6�^@!�
,Nq�B�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G�>�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N|���w����9jt�~���1:~ӝs^Zu��Y�A�ǽ����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�O�Tha~!�
,i,���	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:h�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�p��ϔ��7:�P!�g�3E���e�e��h���p�)�t�i�x��|��矀*蠄j�of��-��m!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ˞f"��իX�jݚ�Ǘ�8�ԯf;6\Ӫ]˶�[�9J�(*c~0�,�߿��eӯ��y
�,�C��ǐ#K��"��M�̹�g�x!� �#a�JC^ͺ�k��	kHN�9�3Ӽ0�Aj#8{M�����0�k.�s�ٍ��`u��Fν��ճmJ�Q�HuF�=m�ξ����iV,ٯ���MH���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���6��4�h�8��<���@)�M����u
!9�9n�T:e��T��B�U��%��NK���OG��eJ�L��B*��o'�t�7�F����<����:�Ah������&�����F�X�h��Ψ�G�V��@�44'�]��&j���i�7�$#�0�4C*���R�@e\0E��'�\�HC晢�@�4i�9��%��+x��n��I��
b)D�*��*D�2���	S�CQT�8کSjC�04�nPV�
��P�E�@R��]Ԫ-t�O:~:m�;�tiC@>L`X����v;��ěI�
�V2
E��A�zˑ-
x�V���$�A��=j�B�l�N�&;X�v=C�,DFmt�0?9w�%���@L�(D�5��UG��H�-��MD,gMX�d�C���qY:��;v�!������%�P�#���gΣ:�$��+":AQ�nz�](��#`<}��$>��:���-�*4��!
�i��҆@W�B@����!�C���A(�!��GeS/�k�s�@�D���J���@��o���>խ�8C��F�ӏ����;���}�)D��#�yd� ~���z� �GH��|N0B+�
	D���(`�
_HC��%3��ŏ���&�ۡ�qD���iG�C����H9\�;��9�g T\H����.�N;�hR��[�V���$z�D�P� �,b����ƚt�&�H�=�1s �G���#�"!"xH�'�`A�2$�!���h9�$�_z�dO�Q�1$��Ș�@)#>c1h@�K�ߺH*9�2�1�q���;F�$�p�A�����3�3}���#�r+
r�o�$4�1�E�Q����<3(�S)|��>{���}�?�T(���"��gJ���*�;zd�ʒ�W8T%yCIj�,I�ESd?b�<v ����Ab�Җ��.�`bd�K���A;��:xS��B\=
�PA�~��CM�R��T���P�R��JU�L����ulZ�JR�#E����f���;L'Z��ֶ�sOu�\�J׺ڕ!H��]�@�$�z]S���Մ�(a#� ��vK��C����P`%E��X��3��5��я�c=�PFgt��d-R�	;�4��03w���(U������o������I��Y����I�΍�t�K��ZW�˽�v����z��8�Vv��������h�y�9����"n�K�&���}c}���¸3�K|ێ�
�A�'�-��`�K�d�Up`�#=4R‘	

ڡJLa;���˔���R��`s�Ę��2T\x�� �lJ;^Y��$ؤ�U���U"����|�3��Ӝ� `P#�$`�[O�$����@Ƌ���i������TP��.���w�6$&��)��%�qn�����#o�Uf�t"��f��^��30mGeqr�@�q$�>O/#$2��$��B�ISZ'�SY͐�A���ue��O�ȍc���D鲋ѡ�N�"�*�;��@`� �T+I
x��*�x$b�L��F79
Į	0��t �BY䁊��m4�Ez-o�#c^�D�C���2AF|��1x��D���<
�ӄE
�(��B��&���9�= 5w�2�a�)~?���/	�k8+D�~���ҹ���\rB"�d�8f�Mǁ"z��m��l�Ļ �swK�K,D���9vQ�^Mm&H�	��_�l�0���Qo����!��bo(c�`%+wLY���8�.���������
6D:��40P�t|˯
�)^�Ү�P��	^r�ot��Q�@���v����0�1J�������\7W�S=4��}d���x��|R��Ad�4�?�҄I������G�,N�͐~XP5��R�iRN�;�ozEv��6�E�'C��J-��':��MY�`qi�q}�6>�J��q9��E��9%x��l�dzd�
1E՗$�iq`Ԧ���m�g8�2dUGt��FY�vW֐�@
֡H�B��5x�����|�
�t��f(ހ��_�:S,�Vl��
yU���BL���
��S�s'�ó�
qg�`j~H%�!�u~@���%���^؈�8��x\�.����x�����P:�h2A��P��X?��Ԋ�Bi���$�p��H�������(�x��ȋ1��H<�1ʄ5���A���!�5��x�ؘ�ڸ��؍�����8��X���'dh�긎�؎����8��X��x��������؏����9�Y�y���
����j�"4���]X�49Q.y ���5ˆA1��+�.�z�8�lC%�$���?1��v \��
H#��+�QZ�7:� =j�iE��LٔN��P�R9�TY�Vy�X��Z��\ٕ��^�b9�d�Y�h���Ejٖn��p�r9�tY�v9"�q�z���p|) q���9��Y��y��������٘�����~Qdg��x��i2��<X���
������!�������К�9#L0��y�����咹ٛ�	0�����9��y�ȉa\��kQ�̂E����I�̉ҩ�I�����0�e��hA�Y�0�	t� �K�y2�2P�>��yL`L���I��>�G�P�Р���+	J�y�41~�%s�H)‰�":�$Z�&z�(��*��,ڢ.��0�2:�4Z�6z��4�8��>����7��1�,;
X���P� ��4��
�E;@3pO5�;q�
��Q�7^�H�?:��Iz7�iڦn��p�r:�tZ�vz�x��z��|ڧ~�����:��Z��z���������ڨ������:��Z��z��������ک������:��Z��z��������ڪ������:��Z��z��������ګ������:��Z��H�ƚ��:�j��������9��@�H-����j���:��*�z��z�Z�l�d	>W��J��b8!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�A�d�իX�j�ʵ�K�r^"Z�L׳hӪ]��c���2
�\�m���˷�ү�
I���È+^��,�>67eL����N�^W����K�aM��i�Bk� 9�14��0���e����ͻ�o�l�ֵ<-E6m�9�d��N�:��6�(T$cB���[�O�|Z�1���޼���ծ+�"?~����Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�6���,���0�(�4�h�8�#M��~��6f�9ma
�L���B�5)�*��NK�D�OG�EY�6Q)��BT�F�A�ܘlƇ]Fd��Q?t���;r2�g�|�9��i֎���8�F�A4h���h�G�6*�@�4�h�a�ّ"{>��@_ Ƥb��
C14a���(�V�D�5�%�<(IC�=���	F:k���"�*���FŎ���P:�t�
ɺ�Q�Rv�#�Q&� �;�ud�@� {��^�S
xB@X�3I�:�P;�:�beKC�ĥЖ"�yT�����F0�dJ1+PXR5G��qK�/d�V��]z	�v�P��K�,p�"`��"q����ym[��L�F-����<���Zu�@^8TL�����\��;C���#��p��Ι��m���ܭ7�a(�t&Q���bH>�vqM��alAm��iG�n�y�"P���@6�l��!�s����A@��t,C]�
-괗�.9�d�@�D�:�1����B�m�׮|i�$,���	�����_;�*z�:kg/�oЋ���wh�����/���1���������T1V����G��{L��W���M���<V��y�� f‡�t��my��$j�N0�W�'��
�����
u]o+� 
�XX"tX�Ep�I�8�}�pV;�	U�
��.~8��2�$v�(	UGNE�9Xp��`N(+X%�Al�90�%>��+I8A<0&ō��D�>R���'S:�H�
C]J�Xv 	#{	3�`5
nl�m29� p#�p��@�r7���@ƎI:nH`�����piv�1P��0�I�bV-"�C����;�4�I�i���4����|2�A	�7����#9Et�u��!؜K�4ρ��4	]��Z�2� �IЂBd�4�B�Іnȟ�荤!ъBD�H�E���Y����>�I���Z�G�X͕��
��7aJӚ��.ENw*�n$$(O�D:��C�)ډ���UJq�����H #X�
������Q��;��� �FW	TU��(\��;�I���Lk�L�EҼ����x�_	�˥0s��M,���W�24��m�L#K��Z����l����z���
�hw��Žv��<�jW˦pą���lgKۑ�4���G; �� �lGKW4\�g�7��q8�'���r���A�E̢X��db�A�I-R]�2%�(��t 5��aD!�̆h�&YWC��txkK�	%`F�ց�����59r=��ʰ����@��aH*$�=eHLkD�~��x�"�JFj���n�C���*MS�_t�����.r�v��0��J�z�$s�A�0ML��$O0�F^ߍ3s<��x!y$fH�K2��ȸuG;3�*'c��%Pf���l�O�� Un���ܓ8"D�qJ�p�*(#��4����y��>ݐ�}���Bh��8aT�U �
gM�`��!����=b�L!,��Iґ��$�
�>I�	�@b�&HF��9֑!+�MB�Zֵ�9jX��D����R]eLK �6� OŒ5�C�	DX���WЎ	��,D�ԧ�y���͐�f�����N���O����;����#N�g�����7n�Jq|p$�xV��$����6�ɡ�W���0���b>@�bQ#_�1�Q}�9�y�T�N���HO�җ��;��P��ԧN��[��XϺַ��{��`���N�����hO��������p����N��۽$n�;�֬���T
/�	��N�V~C�>ɷ_	0^B�i�1[XD:+H��M�L��"D����͓�6gANՙ�Z�7}_T�����Ͻ�w�������O�����n���/��w�����CH��Ͼ����{������+��?�f8�t2��������O�����Ͽ����	��G��lX�0rI��w����~!�S�q[#�N�
 Q	؁�"8�~uTF�(�������H��.�28�0�4�@0�1���o �w�����@6x0@-��
тDH΁���R!o`��P01gU�- -�L9�2І�2 �e�2�!�|��*!sR�u���JC!jj�� �A��8��X��x��������؉������8��X��x���y��D���R�.�F�*2s�8R�m����N�2N%
�8<@1@~��r�
��zQcԉ�����X��w�؍�����8��X��x�蘎긎�؎����8��X��x��������؏����9�Y�y���
��ِ���9�Y�y�����ّ�� �"9�$Y�&y�(��*��,ْ.��0�29�4��W�8N��iw���*�9:y0�.���@�B9�@OI00�Mɏ�Fi�W���7�;�� 8���
t��ȍ!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G�>�I��ɓ(S�\�򤬖0cʜI��͛3#l��ϟ@�
Jc.��)ʴ�ӧP�rD`��X�j�����W��K��Y�|Ϊ]˶mVpn�ʝK7%?~u���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�����=��ν����Ë�O������_Ͼ}�W��ˇ:o�������w���~��߀h�Շ�6Z;�9(�Vh�f��v�� �(�$�h�(���t/����1�!�W.RH�
%�^5���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l��曌��t�i�x��|��矀*��@衈&�袌6�裐F*餔VjiM��O?�����v*8�Z����L2���*h�TLCͬ���Y2��j�g�dcͯ����2�k���%cl��j�k��4�,��J����j-f��ͷ�l�;䊻�]�n�N��!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G�>�I��ɓ(S�\�򤬖0cʜI��͛3#l��ϟ@�
Jc.��)ʴ�ӧP�rD`��X�j�����W��K��Y�|Ϊ]˶mVpn�ʝK7%?~u���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vhᅠ���r��$�_m�+� Jx���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf�����`�)�d�i�h���l���p�)�t�i�x��|���_�C@;�x	�h��#P��~��:�Ha�9��6L:| �7�T�٥���7�x����j*gŤ�Ϭ>�Y��z���њꭸ^�j-��ꫫ[���]�G��$��e�;*4�Z&�9�T�Y?�j����R!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ�h:�)�իX�j��c���8�$h')��hӪ]˶-RQK�,ᶮݻx�>ˑM�� ���C��È+�y"��-�L��� �(lEG���f�L����1y�r�f��-Hmg�s���{㙂z�%�cq�ABT>P�����M���ܬO�ibP�BG�5���i���������~-�˟OoB��S�Ȯ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,n�^�0�(�4�h�8��<���M��7�)T$�H��S��7P�$)e��(��Xf�;�h�t�
W~��<
53��l&y���m�Y�L�_G�lV�F���vj(C{.4��6����c��V*�\Qj����v�G{�ʐ�V��u�(C3�a!����-����z��$R�"
�g�:I:�Q�Sf���(K��gizR.�B@Y
���A9�Ѯ�J�0�8EA��#�:�:��B�D���Y@,S�B@c͓O7`��ΟN�Ґ��*RiC@��2��I�dJU+�Y�($�/�7�>�
G�4�	[ښ��$�A�AJ�B�L��@1wL`�%M�Q=6�O�]tI�k<�%�A����"��UXd�C�`x����5�7��"���t����:�d�߄�Uሯ؅B�<�ЉG.�#���m�r�Acl\"�hˑ&��N)mt�-�C��NvR>��N��bP�=�yp�����&�=��@���@�>4&��B�K���i�(g�ܧ"�rNoo>e����F���O����<�w�����7T�����؛��fL����"ejV��'X��D�̠��1�n!N@H���Ʉ"L�a�ƕu	�kyg���f 3d�sn8ߩ�(L��v"?�.G#@��Q���4A�����A 9�*��C):*�5	MfF�$df^L�b�@�&�(YUG^EB�O�2`N��*\eet�2@��(��$I�W�ؓ��FII�8&�<e?�p�B@�7A�.�ȍ�b�!�,!0�$�%F8�>��#4p)eWt�2x��Gt#5�.w8R!�D�1?�;��"�̈;��hZ���&�@"n*�.��Q(�r@R��eJ�N��Ҝ�k'<�S&h����J^!�O�p%}��IdH��@='?&i��R�֩�=9�P�ZtN;��A
�?��gO��<EJ�#}"�M-��Җ�t$��:�Қ��8��2s�S6	��@��$x�K_0G�A��-?BB����PV?�*‰R��XͪA�S�z��`
�X/Bӱ���!�H�x�6�k!��M�x�'@0Y[�Ĩ<tt=VPQ�`�{�9�!��\��I:̃
e$�A5M�$�Ɛ��O��+7w�ɤ�R�-�j]�۬6�H%�c^K����S��K��FY���
�p�K��z1��M�r����:�($C�s(��Z����'A����z���IH�+ŏ��/�$o
Ŗ����?��Iz�+B=�S;�Eg鋗/�Hp�obFC�vȅS���>�_�l2%'�C4��t�W�ԉp�,�
��5��ҎHV��#����U��#5H�‚�<�k(I�eVA'PA ��1F"I��7�IS{�[HWQG�d�~$J���ڈ���o�zyGfA�^��k�Of�[��I�)O��F���l9Nm�ɒ��Ή���{�rR�43��#��i�ڎ��d��G$X�d��Q���Y��Le>Q��i�C��uCp�!CD�бz�l�	�$�T0X��A�'���H2�4"��H�gAR���)5F^l�d+$p�u�9�!P�TG��]�
�>I8��!� C�6G��H��0!���n���!�`\�]��������T�c���92�`)��%��$�g��x�E2_�$�����'�Z�#���gN���8Ϲ�w���@7ȃN�d�2�җΖf3�t�}zZ�q8�*(:���n��{��`��u����dZ��0��b�#��0�nvNA��uϻ��������O����O����;�񐏼�'O��[��ϼ�7��{����GO�қ��O��F�z_�������p.ا��'��!����&8�ߐ��֪�!�)��E�&AV��Z ���O��FP����6�]��}�Ĭ�y���������O�����Ͽ��������8�H�P��dW
�!<Ԁ�%���1��x��8������5[ 8�$xV^P��QV(��,؂.��0�28�4X�6x�8�����#f:X�BX'Ȳ,H�~Cx����Q	��Z�F8�X� �
V���\��`��%Z�'�fx���w��m�zl��p���r�^�,8	O�o@��Q�0��
��t	H�@@�����Jf䰄_�
�P/�@@@��{��'!- ^�-p��&P@���$!�bY�q����"����H,�^�AM���q����،�����8��X��x�ؘ�ڸ��؍������
&����Q/�P�a@9 ��I'	%�Bq�ZUA�E�13�M�x/q�
C�vڈr%q	:���9�Y�y�����ّ�� �"9�$Y�&y�(��*��,ْ.��0�29�4Y�6y�8���:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dY�fy�h�TrE�1#[Qrh84)Wn9��p0u��i��`��Cr���ˣ�L9��i9�������@���+)������2���y�P��?A��e��kf-�h!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�єD3ԫX�j�ʵ+F�$_��t��hӪ]˶-�&;1Wp�ۻx����W����9�p�È+^l�,�>67eL����N?��_�J�aM��i�BKCs��-\V�@�Ӹs��m�MA	�
��q��&�&�n��\�N�:��'Ϥ.�E�"�Z��޺���ז?��$����˟��9A�)��O����(�h�&��6��F(�Vh�f��v�� �(�$�h�(��⊁���0�(�4�h�8��<��/?��DC�h��Y@u�h
ma͑P���BLFi�)��NK�0�OG�U9B�m3�h�X�Akr�O�-���a�Xpnԏ`���N�J砄�A��S�5��<)��.�摤�f:�/
A*avv����)���)���PMP���@�4
����F
|p�"RŐt�x�@��������+�B�(�m$�H� �o
�#�A7�P�
�J�-�8FA��B�<��Q����Hz�#N5�	da�A�Q���<���-
�#�B_�D/G�y/�\�i�L����%�AD��,A7�!.Ctm�߮5kt{	��Л�K��Hz��"@�:/�$rFv�O�a�ɵw��ś匬�X#-`:��y�PP�4HD�m��-��;>˭w��I�ހ��L��B�`΅7�!&��l��M�K�F+�r4�㠧�I!E
�$t��>�Ǟ^���@�2������;z�#�@1$ε� �C�3.�/���ԗ���Gwh?�hT�<�W/�e��5D�4���ӷ�H�/�|��o��������利��؟�H)V����R*9�'���i�&o��q"�%o��G8��q%�^�a�	�+E��<�D$�u�Ta4����X��ue�	[U�+��+3	'���%�J�<�aJ�!�"�V#bT�Ŏ0%�ꈫ0��?�	%@`�@�
9�ŕį$U�D�ޘ�>.&�H9:2�L\eM�#A�(`�u)�cA�q��$2$�pd;�B�A0Bn�I�F"����U�aK��"�G���#�B�	��e�42O$��#�0�����jZ�،]$$ɇDm)vɦ8"�q��>��R��J�Ϝ*i'<��t�)v�9	�y���ٓ#,!@+���c��'��@�:4&�$IK���>dHFZ��NH0���29jY`�$M�J=��U��0��L]4ҙ��GҸ�N7��W��"Ҩ��v�O]~d�O�G풨�T'T�JU���UͪV��ծ6^
�A���l��bŒ��wք�$�"`Ҵb�T؃84�	�`�X\�Z#u�#w!J3�g�hd� ���j�Ce�yǞ>�ԧ$��]��&�К֡���ic*�պ��6�CiaK��F	��ͭnw�������p�K����AHk�;B�0����s���|���� n�����ǂ�
#<ځY��	!��a;��"���?ۭ�F߫�9�dy:�Ey�5�h���b$ł~�&Cp
:�
�:��)�a�����í�
;j�n6D6	��F���\_�pH(A�:ҷ(�G�`��A (XH��ˑW�˔f
Œ!CS!�p-A�\"�����	�m�N��S,H?�{��f�+��/_ƫ��Y�@�CvP���Y�f�g���H<��;e�z���2W�w��tr4M��c��f���L4��%I#f&�3�K{(����G��y KFI.Re��<��?D=ꅠ�����/h@�e)��uHZ2!4Z#S�H�QY���0���
��`
��:�G<8�@�@�	6D��g$�
�>ɷ	�Gb�,&H�}�@r!S&��U��9%D~�E�� 
Ӊ2Α�&ƿ�Ȗ@~]�H���Aǡ=�:����B��P��3�짖��D�e*Ay�gN���8Ϲ�w���@��%���$�E-���SN�ʢ�n<�ꃪ�M����c��`���Nv�L����Kb����p����N����xϻ��������O����O����;�񐏼�'O��[��ϼ�7��{��s�3�I�ћ��R�YNvz�t��"�,J${���ZO�.�Z�"�Y��q�G�Ҁ!�ؠ�������YW����t�
�괇�)O�ѻO���O����������O��+��Ͽ��_���]h!64�x%/w����
x؀�1��X���M��(Vf����"8�$X�&x�(��*��,؂.��x�ACAf0���o5��:�5�5�:H��! �[�)hc�X�
 Q	L�RX�Vx��&{��\؅r#���M!zbX�fx���h�@0�1���o  ���ᄑ@jx0@-��
�xs�
3$���T!o���0ʕ�'�2�T�@І!�8L ���$�'C�0°����X+'sR��8��KCm��� 偈�X��x�Ș�ʸ��،�����8��X��x�ؘ�ڸ�kQ
��ǸR�.�8+>s�hR q����uE��1Z`�#��!�0~�P���	ꈍ�������9�Y�y�����ّ�� �"9�$Y�&y�(��*��,ْ.��0�29�4Y�6y�8���:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dIT���3\~](0�<j��� qْ�b]��R���JQ+ɘ:`�M�5y�e�����H�@��I�n	�0���ْ������w�:���8�x�൅)�N!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G�>�I��ɓ(S�\�򤬖0cʜI��͛3#l��ϟ@�
Jc.��)ʴ�ӧP�rD`��X�j�����W��K��Y�|Ϊ]˶mVpn�ʝK7%?~u���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�����=��ν����Ë�O������_Ͼ}�W��ˇ:o�������w���~��߀h�Շ�6Z;�9(�Vh�f��v�� �(�$�h�(���t/����1�!�W.RH�
%�^5���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l��曌��t�i�x��|��矀*��@衈&�袌6�裐F*餔VjiM��O?�����v*8�Z����L2���*h�TLCͬ���Y2��j�g�dcͯ����2�k���%cl��j�k��4�,��J����j-f��ͷ�l�;䊻�]�n�N��!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
,qE�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�ǏفI��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_?v"��g�o�}�������9S7����9�N"�8b��$��U3�.+x1C�S�$B��/:T�|���%Ƹ�3�H"����;���#B��������$A�x�+�3�;0.�����r���3��KRS�7ܬ3�:_���2��Ί�T���p��<s��O?y�Y�Yb@!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\�R���0cʜI��͛6#l��ϟ@�
Jtc.��)ʴ�ӧP�~D`��X�j�����W��K��ي|Ϊ]˶-Wpn�ʝK�%?~u���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh���R���3�|��~�P�(1�5�,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\FO�`�)�d�i�h���l���p�)�t�i�x��|��矀�P?�#�A���_
Z��bA0����rP9���iA뜑�<pa1C3�0�4�8���2�N�3�2����5��s�/�H�F1�0+8ٜc�
��kd�sM��a��B3ޘ�K?��N1�X3�b���j3�l���Y�kH>���?��N1�@�nb�
�/�L�?N�/[D�&� ��/V1�4��=����rM+���#V�1ۈ�H4��c��H��9Y�2,�Ƽ�1�,�J/����%�\s�ΆLbNKktb��M6��7�<1ܜ3�<�ʃ��['�5�TCM2�X�L5�*�N1�cL�q3�����3�Z�cw!���3��@�����!�
,cP�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷/�u~L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�����k�ν����ËyO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F�W2A#�2f�a{��φ�U�$z�N�����|��3�^.2��7��Bv2���1�X��!�
,q!E�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ !�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����7o�~���ϟ��lf��3YC���#P?��`��-��b˄��!H�s8���.��"D,��C���1�8�L2�x�J��S�ZbI)��Bd)�L#r�7�PS�7��x�9�	�!���M���G/��7�h��/Vb�e\��)��"��$I����H��c5o�G����x��(�r�!�
�2�
����7FJ1
��dN��E#�H���a�)��q
-n��-�|�@��1�� p	8�� ��qy�iL#�fx4�9��9��&��¢%e���%x�K��s�6Ǡ��8�*(4�gK/��˾��RT0F�,�5�$�����/{�C�3�,�;��N:Ĥ����il�2(���G�<x��$�l�;�L�:2�!�
,-,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��_C�I��ɓ(S�\9�˗0cʜI��M�
>\Rt��ϟ@�

q�U�]ʴ�ӧP'6�D@NԫX�jݺ�@�\ÊK�,B;fӪ]�v踶p�ʝ˱_?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���~��h�&��6��F(�V8�K�v�LvD K��I����!�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀�FM��6h�=�V�F������e)d�L�3�T���!�
,X��	H������\Ȱ�Ç	���o]ċ3j�ȱ�Ǐ C�I��ɓ(S���"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�ӝ�h:�)�իX�j���c��/	�AڎM׳hӪ]�Vd����+X��ݻx��ݻ�M���9�0�È+^��,D>6/xcL����Z�A�w�_�I5cM��i�<K9C0���6���Ӹs����L�	���Б8� �&�O�E\�N�z��'�41(�#��?��$ݺ���OY�d����˟�W!A�)�dG����(�h�&��6��F(�Vh�f��v�� �(�$�h�(��⊈���0�(�4�h�8��<��cZ����r��:n�T>�
�E3HFc,5)�X�Ď;-�#�>mC��%$�A�P��WidDA�&�t�7�F����<����:�=h������v�����F�D�h���8�G�V��@�44��]��&j����.���Ah�8(�2t9���7���$��"
�g�:E:ТQ�C&���(K���
�.��B��
J��
cD�*��"D�:+i��P"Nt�ڐs�-�f�u"�7�)8v�<ۆ$lF��B@'���V�4t�B���_A���
6��k�2��#Ȏ ]w�
��I�
dV2E��A��ƺ}��-
x�W���7�$�A�=:�A�H��@H�,`ѵw�նP��d�d�E��{W�a-��I����|�} �TKD�U�$a1�á�Z{�N�7�1�`�����;�fn���;觋8T�E��1vqP:���5��&� B@��k�&�(Ps�I��HJ]q�u�ȇ�O��x��@�tD����u|�9e?9�/T+�>$��y^"��7�XA.�~"<Eb�'8~�CY���!A
z0=�h^GF���u&L�
W����0<�e��([6�aS�f��) J�|�"
��A�M*g�&���Dq_֤��*2fs\Yǐ���w`�B��
`�&�/2�9dD��HE,�i'b�M��5T�"܊1H��5�Hj��xT�#�~\Ui�:�(-	�YD"'y�9 �"JT�W���X��@��
W��e�`
m�I��/D��'č(��qLqy�~��$9
�4�R���r#��c#�(8!Vh�'1�FH�Nh� �0L\��r
��Q]&vˏ���<1�%�1F��H;�Y�*%��
�@�8�4)u�B�BÅ�Ŝ?�T(҉�P�!�t(L �&�V�������W\T%�AI<��&��!J�&���,~�� ��&K�ρ�p�@��I!(���SG=jPM���ÂK�M-�ժZ5'��:yծz��`�R=�J�U��h%�$x�M_$��iuh8?ň`��P�P�:ɞ�
�;2V����M�bm���:�!�MI<�XF�k!��MBi�=@�Ye��<t��VPQĠ���9��C�\�M�H:ʃ
e�vA:�M�"�ɐ��O���"��[�-Z�m�t���M��p��v��X;앻�
/��*���M�z�������|�˖����5t~�
�w��J)A��I2��N��}�'�l�l�CxD�E���j��z0I�t���~x1_`�4yb̈��%� �}$�1fJ��+��l)�q���cLED?.	<\N6�����E�	�r�Q��?RT�X ,X�s�VVfo�S�5c����,��)���}�}�t��ɋ����̈́�s�	��w7$����v@x�|�̄����"�Iʝ�dQ	'�{N�M�]��2CmGjm�hU�#�tF4V;��1y�M	B��h�r�J�Bc3��(q3D�3�'��s��5�}^,v�j�ho�$��
�ig$̳�@P����:#[6�������{2�(��s;�#����`�}�����Q�!ܻ#F�%D��s��7�A��`0��.�nu�
e�B_g��1U�����0����r�jpE�p��\�%�0!Er�1���}�}t�[��XϺַ��{��`���Nv�(�%��p�)�����0M"L?�����SwH��Nyg�s|9���Kx��u��3�Ah���d�\�$#�p�2����ː]�yT�8�Z�94O!{�؆7⠄�����4,��7$ipȷzAnl�i�B�q����@�A�%�m �G�_��Ȃ��E
�����/�b���X�!��F��iPB����� A���з~ �?��0J�p�� ~
�����"��0�| 
��ҧ	�@�p�@5�p�	���g
�"�p��`�1��3����`C��pr3h#�Pz�g� }�W2�P
/
#�x��Ѕ�p� �����*.���q��W
iD�e
��UX
�P� ���e?U(�`�P�(
�L�C:� ���Xf�3� "�Uj��\��lf�/��j׉�8��X��x��������؊������8��X��x��������؋������8��X��x�Ș�ʸ��،�����؋�8�&Bn֘��*�墍��P�"<8���("�JC����A%P���P@1��v`]�_���2�8�R e?�2kIH�k�"��y�����ّ�� �"9�$Y�&y���(��,ْ.���2P�5� �6����Bw:I<ٓ��@9��mDy�Hyb���Lٔ��N���TY�Vy�X��Z��\ٕ^��`�b9�8�!�hd�	��l�2Ȳ,`S�m��0��Q	`�k�F8��i� �
�Y�+�������Xw�����	CfYu���X������a\��i���2�	O�oЙQ�9Q�!�t	H�@@�����*��P�_�
�P*�@@@�~M��!- ��-��&P@�Ω�1!��[�q���)*� ��Q�J�O��is�Y��y��������ٟ����:�Z�z���
��@�
�3�J��������X�8�P� ��6U!��$1e���Pt���$q	:��!���8ڣ>��@�B:�DZ�Fz�H��J��LڤN��P�R:�TZ�Vz�X��Z��\ڥ^��`�b:�dZ�fz�h��j��lڦn��p�r:�tZ�vz�x��z��|ڧ~�����:��Z��z���������ڨ������:���$�U�H#[�t�9e�Y�J��p0�*��p�h1����C���	��c�Ljz������
��@���\ꩱj����cZ��ڦ�Xɣ?A��h�$���94
��G!�
,V��	H������\Ȱ�Ç	��׏]ċ3j�ȱ�Ǐ C�I��ɓ(S�|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ9�єD3ԫX�j�ʵ+G�$_��t��hӪ]˶-�&;1Wp�ۻx����נ���9�p�È+^��,�>67eL����X?��_�J�aM���BKCs��-\V�@�Ӹs�ޭ�MA	�
��qB�&�&�n��\�N����'Ϥ.��"�F��޺����?��$����˟��9A�)��O����(�h�&��6��F(�Vh�f��v�� �(�$�h�(���O���0�(�4�h�8��<��S��?��?f�9���5HF��+5)�XҔ�:-��d>�f�H	��
EY�����?n2���t��]F`ŹQ?���;z2h��z��i֎����F�D�h���(�G�V��@�4��a�ّ"�>4�@_ Ʀ%�A�0�Cf:.
���E���Q\�ȅT1$�#�~*�f`�3�:���� J	9��9�*��.T��A�b�
�2�kC�bv�#�Q&� �;�u�gA�D������1�Ԁ'��Q?�yYF1K���W�4��\�)Ҿ���"p���3.�{R��%�AD��,A7���Atm���ekt){	���42�M2��x3�UH�id��dF����Y��~j���c�#��2��E]1����zL��4�γ.HR#<�(M��6��ᐟȒ@	U~�3�w�b��ID{n����ϰ]\�8{X]P����(��N&�(p�4AR�>�'O_�;�@�2��������K�8�,�8f;O�Xq_�@� ��ط��;Kǧ��hT�<����i�6D���G@�O$�(���:���'H�
N�u�	�7�p�L)V0�*�R*��	WH��&�c�y"���q��wx��m%�`^���C	5�+F�A�x��(� ��a	mȨ��
��	�&�
{�-� ���#tX�E��I8я(��dc��M�!�"�o�#cVǎ0%��H�0�1@$�	%@`��1�
9AE��#�%�'�wH�T�2���G��"e�*lB&	�E�cPSI"��]D� a�)��#N
�2�Ml7n�p#A�a�S*/��<��G$u�a��ȧ��E���^�M�#��'��;>�(p���<���!_[�]��O�h��{���p�#	�#��J�І"E�oj�vN���d������� �E!D9��7a�J�Q]�!�x�@d����B�aG?�YS�Ȃ��P�j�m��HM�R�z#�2��t�T��M����ǖI՚R�#���@�:�v<��]�'A��ֶ�� �j�[�J׺��A^���n$$	*_�d���#�5q�H�h��t�t�$� �Y&F1�*V�X��H@����d��0<� ˒�ED�lD�'Q���+k��9V�v���i"�ܧ����MnZ��[�:��j�+t�K��Z���eas����z���
�Szv\��1捧(��xjf��b{y(����y!~	�v�ւp��~�؎����O}kB��p&!�Nr�_�E
,��2,\�I�����\��B�ieJ�A�JvM)�@,����B�
�ƆMr���)�X�dJ��3�~��!$k
��s�ɕa�S�Y�0���e.f,�g���E*KY��J�e�jX�~�7:��0�����*��A�!���>`�kgLg�(N��~�т
��5l���g���$��e��2e�3vGF1i��d�Q"u�7"h��� ��8�]�"�L���H�$\�
ʀ�y̼~���A��1�_���5R�
��B���82eT�V �2�vG�d��!�£��}f�L!,�6D��t|�"I�»O�o��)��	R�u�D��d��	E~����B�	�_�1t],��t��s�͂���2�%mD�'a�r�!j������m,��d�zNJ��"�����J���;��P��ԧN��[��XϺֻ�g׬cQ6޺��.���G��T����w�#"=G9�^R�����^'n�ly�1b8#��F����q��8� 
mp�h@�a��רo?H�K��,���p>�y��5��4{ǃ��J�G,�^h����H��	��c��=L��Xh
�;�!x���7	㊶�s4?�@����w뫉�B=|��0�p�9�	S��ԯ��Y��kd� U�q
�	�`
���`��{��RB
����
a�PDǀ�ː�@s��`
�'�%b�@ϐ
ְ��D�}��@
ԐːyX0}6�b�GF(�`��L�+��lV�XH��!p8:���&�������I�dX�fx�h��j��l؆n��p�r8�tX�vx�x��z��|؇~�����8��X��x��������؈�������8���u�V�,�j����%G�
����"��-�����!�
P��1ұ�Ȋ����AA��Up���!PQ+�!Z�3�t�Zх�Sg�x�ؘ�ڸ��؍�����8��X��x���ᖎ�؎�1A7�8��$_��!4x���[�� c؏��9���y�i^���ِ�e���Y�y�����ّ�� �"9��BM�h$��0q)ْt�6q�.�0��!�`�k��Dz��h�
 Q	@Y�)F��J��w�ɔP�$SC�&�y!�V��Z��	�\�@0�1���o ���!��@^y0@-��
q�lɁC$�`V!o��011ٗ5�2�H�@�!�9L �ɘ0�3C�0�P�0�a��23� �əKg��fH|2�P|隸������ٛ������9��Y��y�ș�ʹ��ٜ�@�P)�� ��E��47�!,�+��M@{[��[��#���!������	��������:�Z�z���
��ڠ���:�Z�z�����ڡ�� �":�$Z�&z�(��*��,ڢ.��0�2:�4Z�6z�8��:��<ڣ>��@�B:�DZ�Fz�H��J��LڤN��P�R:�TZ�Vz�X%̈��3\A�[))J>^��� ej��w_J�٦!�J�+�)<j�	�k��Qy~J�O���
Ч*�t$���&:t�/
��ڐk�o�3��BY8�!�
,3,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP"0E�MԫX�j�Z��@�\ÊK��@>fӪ]˶'��p�ʝk�?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�4��سk�ν����Ë�?Y����G~�N�����ˇ˪}���o���(��G�&HX;�)��F(�Vh�f��v�� �(�$�H�K&�f`LrH�U��Q�B	��p�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h�)<j���p�)�t�i�x��|>GC��*蠄j衈&�袌6�裐F*餔Vj饘&�O��!�
,8c�S�	H����*\Ȱ�Ç#J�H��ŋ3j��Qc�� C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx�ꍹn�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���Уwt'����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�hQ?���`:��^?����c!8��҄3�PH�2�$3L9��7��7�P��2�HR�,�8�bx�0�5��x�3��],�H�#N ��7�P#dw�l�����0��ڍB�+�d��<2���ܭB@������؈&w�\rM>���M2sbg�9�pÌ7�y"�}^w�3�8��92��3�j�Υ�CL:�n�τv��;�J@_�V!�
, q�!�
,>,���	H����*\Ȱ�Ç#J�H��ŋ3j��q㯎 C�I��ɓ(S���j�˗0cʜI���.)�ɳ�ϟ@�
=���*l�*]ʴ�ӧ	x" �իX�jyT`խ`Ê�ٳhӪ�9n�۷p�V��O�ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O�����������(�h�&��6����R���%��B�x�0�*+X��$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t2W]³N;�W�a"���@��YX9�&J8X��8��̤�,�L5��E:�D:�5�p
5�p�i�$�`լ�7�,�M1��N���!�C����cL���B�$�0�k�fK,`�p��2������+3�<�
��f����
.���e�2�Pc�3���i�{Y�ͽ�XÍ1��������DL9��?�
D��}�C�:�!�
,i,�c�	H����*\Ȱ�Ç#J�H��ŋ3j��pǏ C�I��ɓ(M�Jɲ�˗0cʜy0�O�h��ɳ�ϟ%s`E�УH�*]J�)l�J�J��Յ�F�ʵ�ׯ;��K��Y��Ϊ]�v-?~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËzO�����ӫ_Ͼ�����˟O��������Ͽ���(�K+
H�<3�!AV
G�
%�\
Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�b�!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
, q�!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲ%W.cʜI��͛8c6�pIQΟ@�
J���]V`c��ӧP�J��9S�j�ʵ+N��zK��ٳ�]˶�ۭ��ʝK���~����˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(��O�&��6��F(�Vh�f��n0m]^2��,(A#���%���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*�px�O?�sࠢ�H�;�èh�TZN?�`��9�~�L2�r��,^�K6�zF
5�x�JB���7Τ��.�"�4�$s�#G��j�Y��a�� E�I�|��,�c��<s�Y�܀�+��r1̴*�M�3��n[�/�Ȳ��(Q�7��0��ض�.Y��"�&Y�j:�l�ϵ���e�����b��Ô�7��୩�b\Y6$[�7�؁��"c�;��Sγ-cƏ��U3f����\!�
,V��	H������\Ȱ�Ç	���o]ċ3j�ȱ�Ǐ C�I��ɓ(S���"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӝ˞f"��իX�j���Ǘ�8�ԯf;6\Ӫ]˶�ی9J�(*c~0�,�߿�fӯ��y
�,�C��ǐ#Kމ"��M�̹�g�x!� �#a�JC^ͺ�k��	kH�่3Ӽ0�Aj#8{M�����0�k.�s�ٍ��`u��Fν��׳mJ�9�HuF�=m�ξ�{��iZ,ٯ���UH���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,��⋐��4�h�8��<���@)dU����u!9�=n�T:e��T��A�U��)��NK���OG��eJ�P��T*��o'�t�7�F����<����:�Ah��ꐞ�&�����F�D�h��ި�G�V��@�44'�]��&j���i�7�$#�0�4C*���R�@��+Gl�I"*Ґy��#P�M9g��+��D�
��pîAi[��B+�u9��ë�ʐf�~&L!EQP!�h�����,�>�AY�6�<!`
�]4�� ��E��B@'���U�Ж�#IW�6�q�6���#�@#��ҵ���A��b��i��-
x�W���$�A��=j�A�l�N�(7X�v2G�a��d�F�
�s]�o[/]���,<oW
�:g MP�
�vOX�d�C���wY:��;l˝a?�C'��;�*n���4.�㗟8	u~PT���b��O��`�"�q���QrA��BtG��.�~��!��0A�ǧ{H�/�~w�AaT9AG���Ӈ�Z��&����B���Ce�.�+����Ou�!�?��H|�����3�x�4��1壀� {��;��L����2�z� �G��9Fh$L��
��&ElR��g��D�4����p:�N��H�a��BL"k"��u	�ky-g�	d�����J�i'b�M�25\�Ԋ1Xc�.�Hj��xT�c{n�Tk���pC I��"�H��́i	0P���Ċ��`!	dœ�U����(kh��L���q�=Y�kDQƐ�o#c��S����Q Ġ*yt��"��0Ȩ9(V͆�#J��^b�
4�>PS�`v��P���"1Tn�]�P�Aj�͚�f>�̈;J��t���'_�"z&�/���OP���*R��fJ#P����(�&�
�P�R�A*K^�P�4!%}hhI�QIqY�xeA&gL�"Ǚ��IWJ���h���)LYj!�i	�iqj1.���%i?��G���HM��ĩԦ�HN�*G&�m��:(�j9��$B$r���\�U!���hM�Z�8����p��\犑���n��G�Ȼ��^A�l"ɓ��r��ʦI��(�c(���"�d��������hHұT(C�
*iqd�D��|bja��;�N�f��mw�Et��J�*p�Kܦځ��M�r�t��:��Ѝ�t�KH�R���ͮv��ݣ�̺�a�›�U�����E�E�&��|4��>aa�i�.�mGy�o����
��z0ɥv���1_����̈́���%���}$��eJp:�
�dKIǂ+�c*"�@qI�_�4�)�h�EV<�L �,VՍ?RT}X ,Ȣ�`�Iά"Ns*�@�!e��� }��nRQ��.�r2�V�$�@�Q�@^(�Hw���;T�P���y�M7�M�n��h���?���������jz�7θ���	�%-�;��O�<QNw�!"ș윢H�Z'�Y�����0�ܞ-��&�����T�hӿ^vAA_�I�,:%Tl-�D�A��ց$xk�ȫ�@	$[%�0L��`n�����Q�!�$F0�W�d�d���&�=�k��:�2v�EՁ��i�!rRsHJ�A9B	5����	�A,p�X~ �ItDpj~H���x�gN���8Ϲ�w��0(>�Ї�]%���@�E��.�;����݌>�A�QiC�8�;���G:�p��0����h[�k�m]N�r������8!1��w�x����,�n�{$xY_����(� ��"
|`�g���H#��/�ސlP#�og|F��^$~��H=0q`� �����᳴�c�+��C�p�"Έ~�
"����^�>��O�o_���~����u�����տ~뗟��w���x��\O�������?������G���)� { A
�P
ΐ
�0��Fq3ː
�e
h_�G(�`�P$(
|��l$A3ʗH�@"�EP1�],�r—�:��<؃>��@�B8�DX�Fx�H��J��L؄N��P�R8�TX�Vx�X��Z��\؅^��`�b8�dX�fx�h��j�l���*��n�Ѕv�y'��Ox#5x���1��"�{Ee'�mC%Ї����p?1��v�5���G#p�+��e�71�x ,j�i����؊������8��X��x��������؋����8�ĸuX�Ș�Z��،�����8��X����q�ڸ���ܨ&���8��X��x�蘎긎�؎���\�4g�X�s���)��,E�������Q	@�j�+8��\� �
9�+�y����6�ّ�A�qh	m8�&y�(�]\��\a�ˢj���+I�,i2�yI����0�)7��AY�0�	t����G�2�2`�>�.yL`L��W���>�%�P�Ж���+iIy�*�r��m�C�fhx��9��Y��y��������٘������9��Y��I)�x�&�
gc���U*�`�aBq���y#	%�B qH#q��^�$1������r�u��!q	:���s����ٜ�����9��Y��y�ؙ�ڹ��ٝ�����9��Y��y�虞깞�ٞ����9��Y��y��������ٟ����:�Z�z���
��ڠ���:�Z�z�����ڡ�� �":�$j 'W�(������	��	�)*��0��	>�@���Y�5J>J�2J��6J���۸�>A��f��"g�Yi!�
,V��	H������\Ȱ�Ç	��׏]ċ3j�ȱ�Ǐ C�I��ɓ(S�|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ9�A�d�իX�j��5�K�r^"Z�L׳hӪ]�Vd���2
�\�m���˷�ӯ�
I���È+^��,�>67eL����V�^W����K�aM���Bk� ��14��0���e����ͻ�o�l�ֵ<-E6m�9�d��N����6�T$�ˆ��[�O�|[�1���޼����+�"?~����Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h≉���,���0�(�4�h�8��S��~��:f�9ma
�L���A�5)�5��NK�D�OG�EY�6Q)&�BT�F�A�ܘl�]Fd��Q?t���;r2�g�|�y��i֎���8�F�A4h���h�G�6*�@�4�h�a�ّ"{>��@_ Ƥ!�p�x�0CF:.
���E�ֺQ\�Ȅ�4$�#�^�@`��&��ڡ+�B�(%��A�Q+�I��lp�#�A7���*f�<�ar��]Gv���~0��
sO
xB@X�3I�:�h;�:�neKC��uЖ"�yT����t�| .J�
�T���@'��߶��t�^B��6��@��1�&�1� ��du�d�A@0?M��'�u0��i�3̉f}���HAX�2д?]1��cԡ��GC�M�<�d4D1{�;=�m�����#�tЌ�L䔣�A�`Ű�w�!&��k�M���F+�v4��LJI!E
�]��솄O�Ǘ�.P�uq�Fb�t�#�@v
$N���C�s.�/������ε���P?�xm�<��/i�S��ɪ���W��H���s��L��N�t���'؟P�L)�U ��*�Q*��GȨ���&w#�
w"����pI�
gh��a%�\^�añ�����H�"NJ7<��"h"�E�^���2H�<#�V`A�fN�CV�Xy�B�hC E����FŌj�aJBՑT`0l#8�J��
V��r��
yGKRNxO�IAde2�8���#���T���Ed����>�l�H%A�M�CX[3#�G��n%$A�;�h&�h�����<�H�2��H��E������w�͍�C�0�f5���nz�sq��'"�����Ӊ�U&H��H��I�z�F�L
J�`��ʱG ���%�)�X�����y0T E�DSBv���,`njz���-AJҒ��#�(JW�$i����+Fzi`Lh0��0?����iǡ��SH���HM�K/�O�:��P��T
���Z� U�H6H�ѫ��wq�<m�M� �بWŴH*�A�L�b0�U���k��:ށ<��׳�5	2`�u@q%
���׈��N�*Q�tX�L�T>��f	��m���LJ9?K����5�J��>5�����lgK��^0��ͭnw���v)��o��������'A����:���U�	�kEx���
�OB�[�vE��n|^����W�s0�p��w+j@�����,���M&� t5"�u(S��”jJA�X�v�"�l�6�k�x5��NA���`�P��<o��� Y�@P����#(�+T*��6��*sQ_`�D�A�1Y��:�g��Tҏ�F�.�e0V�f޾XW%6H;��]��%�H�y���F���!3G������dn!��\@)O�.�G�b�TZ�,S�|^w4#�R3FZ�f&�΋n5
��Gk�ΐ.�"�f��8%I�H�1H�|:�J��<~A��n(˨VLKf!Bkd
a1*+�T���%)�ABݐH�^�IĦ�:%�H�E�Pb����&1R���NI#�#��&I���l���#�xbA �e�#¥K|��-������3ք?o$u`�"�l��݀���޵@��@�B&��C�� ��GN��(�O����r2��0�9i��q��h�¹@t��Jټ �����1�����H�I/|~�'�hx��Z�k�KzP/j�c�+�7���?��d����ة��~kd�p)�!�khD���کD��,�ޘ�X��tp����Cd�^��ٰ�2��r�D���3�x#� ��Eb��v"j%|F�nc��#�/X���L��/
��������O�����O����;��Џ��O��[���Ͼ����{�������O���O������V��ѡ�O��JAg9!X��c�������!�!���0�egF+�8�0KtD!l�4���a�O�*��W�`5ǁ��"�ր(؂.��0�28�4X�6x�8��:��<؃>hr���B8�DX��h�JHC����rN�R8�TX�Vx�X��Z����^��Ve`HA8�fx�h��j��l؆n��p�r8�t�|-4WV���榇~�#���ա
������-�L��6�x�����!Pp������[��q����'w����x������ZOЊXQ�	H�\�Q���\��	t��0�
8��؋-S��0��
B���(
#B��2���@ �!�8L ��%�,C�0�����+,sRq��H�0LC�k7� ��
��ِ���9�Y�y�����ّ��PQ� 	
Ս�R/�`�*=s#yR�o����j��3j%
)9<@1Ѕ�r�
��_c������ٔ11Y�Vy�X��Z��\ٕ^��`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�x��z��|ٗ~�����9��Y��y��������٘������9��Y��y��������ٙ������9��Y��y��������i}+ؚ�����d	+}�}9�I������@����@�I0��ʼn����i��9�Qȋ:���9&�'�{qI�!�
,3,�o�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP"0E�MԫX�j�Z��@�\ÊK��@>fӪ]˶'��p�ʝk�?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�4��سk�ν����Ë�?Y����G~�N�����ˇ˪}���o���(��G�&HX;�)��F(�Vh�f��v�� �(�$�H�K&�f`LrH�U��Q�B	��p�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h�)<j���p�)�t�i�x��|>GC�L!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
, q�!�
,G,���	H����*\Ȱ�Ç#J�H��ŋ3j��Q⯎ C�I��ɓ(S���j�˗0cʜI���.)�ɳ�ϟ@��E`6B�*]ʴ�Ӄ
<��իX�n4*��֯`Ê�jg�ٳh�����۷p#����ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6�WK�F�LvD K��I���0!� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�H�\�i?�T�����N9���ga�x2�3�$3(a�P�7�PC͢�E*)��m`�5�lj
���c������
�,C���#饬�/�M1�N�^��PB-�XZ+��ZW9�<��5�˗<찣�_x>��;��!�
,Y,���	H����*\Ȱ�Ç#J�H��ŋ3j��qǏ C�I��ɓ(S6����˗0cʜI�a�
���ɳ�ϟ@a�"�����H�*]�4)S�4�J��ի]
����ׯ`��	K��ٳ)��]˶�ۄ����K��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�},�<3�!�V
:G�
%��\f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di䑖���L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�P:C͞��3x�!�
,dc�O�	H����*\Ȱ�Ç#J�H��ŋ3jܨ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����7�!_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��VE̓���6�Z@!�
,q!Y�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ !�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫמl�{���]|��~�D��]F�p��P?�#�<�c�~N�̃F��3�P�7�#!�˰��;*��<��!<�$�� �����"�4�h�8��<���@)�D�@���؆3��<����#χ��O?
�<W�N?\�h�h���l���>~	�;�#��Ma9�Dا�vH&;��ӏ<��!?��(��$��·���%�d*8f9���!���*ꨤ�jj�d&ُ��� 5}4��5�P��*�Z��T�N?�H�J=��O;�3h��x��h��<��8�.��L?f����+n�r���bz��%3��K2��A�'�<ɍ7���k;��C�+���5��O-��C�.ۤ�O>���>������R�ņ��H	h9��$�l��7�['������	MxRN�����8|�(1B�0	<��O>i-�8M�/����BσN�cC��І-��d�m��h����l���p�-��t�m�����幊-��߀'c�/3��%M�1�x"�/��ˏ9���J>�a��pnH,�������p�>�3�,`�ϯw����/��I������
��������M2�xxBkbNk
��r�/��0~>�o��+�0-��(��0<q�����F<e�*1�ʆ,�@�8����$ʡ�bdC_��G?��(!����a�k�s��D�N7�^\s����25�_|�L(ˡw�C8�MU�BZ���Tn��v0�*�A�KȢL�?�ыk��a��G>Lя���/�aE�����
q+LS�#�&���x̣�Tv@ĸ*�8� ��od#P~c�����v��R���>��-�)o��<t(�++X5���R��'�!��8D=�I� �1^I&��W�X�:ؑ$e���e�t�v�R�\G��%'x8��pG3�I�jZ��̦6���nz���8�I�r���d&�Xi�\����E-r�wV���'<����~������/�t,�M�B�i��.���D'JъZ�ͨF7�юz� Uh6���`,�(M�Jk��]xb����$.!ϕ��V�ȩN)�\��(�N�JԢ��HM�R��j씉:e�T��ԩu�P��U��իvU�Y��V�*U��5�X�*Z�Jֳ6u�k��[�V�ҕ�q-�Y�׶�u�}�+T��g,��8�MS�Q����V�,�t��J+T{Z�>U��
�hGK�Қ���M�jW��ֺ�����lgK�g�<��],K/a���7HD�t�Y�:���-�l����:��Ѝ�t�K]�6Զ�U�n�Y�_�Bz���J�_`v���l!}�����|�K�����t����u�,�0Y\V���*r?[�;�����KK؆�[��'<癋TO�X�X!O}.#
M�u,8���0���gL���8α�w�����@���L�Vä���..q��@X�A	�`^��b��r���`bh��`���L�2���hN�����6����p����Lg4�6��Ѱ;��
Q�Y�p�*̫�dT��H����ޠ*�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R[:�M����y�s�̧�J�
��>�C:���^���Vj��*!bC���강��6��Ɇv�o=����v��mkm#{�����=nq׺���6����r�;��N���g��0-ͷ��Mϖҳ���.�p��O�7ʑ饃�	���'N�[��ϸ�7��{�� ��GN���_88�q'���0���
8�
/�˝j�v|�>o`�֘Y�� 7.���:0�6�>K��C X؀'n�,dI�]���N�����hO��������p����N����i��@��uyⱹH�d��%dLX�A����8�b:�5b�K�"W���Џ�7���7W��3�\BF�
��D��=F,X���Z�G&�j������eO|�n�#p�1�p���zYt�x���w��E�,4A���I%�A��8�;�|����dC����2��
c!^Ȁ$0��?!Q�$�2Q����
�d"}��a)�}!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲ�AW.cʜI��͛8o6�pIQΟ@�
J�h�]V`c��ӧP�J%�9S�j�ʵ�P��zK��ٳ�]˶�۲��ʝK���~����˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h`J���6��F(�Vh�f��VS���%��"��0�*+�x�0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐FJ?�VJ#5�f�馂9�)�r*ꨤ�j�g���ꪬ�:R��ja� �L��!�
,R��	H�`�w�*\Ȱ�Ç���ŋ3j�ȱ�Ǐ C�I��ɓ(S:��"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�Ӛ�h:�)�իX�j��c���8�$h')��hӪ]˶-RQK�,ᶮݻx�>ˑM�� ���C��È+�y"��-�L��� �(lEG���f�L����1y�r�f��-Hmg�s���{㙂z�%�cq�ABT>P�����M���ܬO�ibP�BG�5���i���������~-�˟OoB��S�Ȯ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,n�^�0�(�4�h�8��<���M��7�)T$�H��S��7P�$)e��(��Xf�;�h�t�
W~��<
53��l&y���m�Y�L�_G�lV�F���vj(C{.4��6����c��V*�\Qj����v�G{�ʐ�V��(�pҋ�0�4CJ���B�@��Gl�I"*��x��#��19e��눲D�
��pî
���9�~��P�B�bP/BԫC�R&L!EQP!�H�N�
=��,�:��W�6�<!`
�]4��;�j��ΟN��P�qRiC@�3�������J�
tV2
I��A����
qÑ-
x–���7�$�A��AJ�B�L��@<�,`ҹ����Q=6�O�]t	�jA,�%�A�����s�1�@j����@f8t�W:��;nӍa?�C��;�*n���4��0EB�U褯�E����t鬋�&� B@��k�#�(Ds�I��GJ]q�D�����O���w��@�tD����i|�9%?9σ5P����@���l���>ʙ������\��d��fida��@�ȣwY'H�Q�̠7�z�7�C��>HB��(<�ج"���2�;I_HCG�c47���j�C��(�kZ�{HD�D�+� ���#֊-�ٚ@�Ȑ�H{ED�������4���p�v@p+�0��X"e�F��IP!�챱Rk���b�3$!3��� 3�Q$�@ɪ:+b���OuT�*C�C��5lqr&I��I��4�cH�Ǒ0��)�Q���(bЀ��	:$�Rrb���C��$T�H.3�	d���/�2ͅ���]�UJ����T�,NbqF��H73�p�p��<�A��ȞI�=�y�����T(����!�(���I�$������W04%�AIz�&�$��D�G�Vdr��u�Q��T�0��N2�Y�S7�iL-䩋HTC� �N{Sr
��HI3���=&��P��TmTΩZ�MB��V92	^��Y�V�	͏��"Gd?�uѱ�n��\�j��U��xͫ^��׋8�����C�(�F�N�Z:<fH�$���bvX61*]�c
C��@1�iesDw�03� �OA��B�m�KM�2I��c}*�_�h��R�f�Z�o���Ex��S�Q���:��vh�s�*��V
��ͮv����z���x�K��L�ex��An�����TF	������/Nt�_6�G�)��;�[D��H��v}2�Q&��Nvq[��0�C"-���Рr���s��`�!�LIPy��-%�puV�)�(��%�Go
�Ȧ�C���H2A�K:xU=�H
Reb��`!�aJ�`�U�	TE0��Uİ	�CzV�UW ��Q�F�&���:2�@C�x2�o^�1[� ��j��Ɠ�k޹!}RJ�嘧~$�#u��iR��t"��f��4�L.�H��f���c�6����>:#��G�{��;�֤)ӟM��Ԛ��<v�)���0��1���.�:�C�扱�=���g��3��Y���A~}�$d�
i��n>d�@��p	�WE��ORNdd�(�ؽ#�"NLȶGrɁ� B~H0���t��:�2v�/4Ձ�(�@f}�YkEJGB;B	5�b�쩷A\~q�4�} �4Ff�h~8v���yϗ��;��P��ԧ�+
��:�٨�K�0S!@}�@o�#%��rß�=x�B���g�SyǴ�˴�u�<:�C��>��@�p���t���+��F0"���9�!M,���^�?��m�g���"$%�p H�r������GSG_��������b �{�@vL�m(��:b_αB�5$� @�WHc�9���B�0���/�����@Lq��
BG��v�N~8�Oi��A��3rwQ��Rp�zV��]��B��_J�1s�1���@y�pntE� E)8+Ȃ)؂.��V'�0x4X48�2��7H9�=�/�;H�Ch�:X�BX�?��(�Y�6x�K��T8�W��+�\h`smrBH:+4�fx�h�O7�~�ri�+�`xo�9`�
�{3��⥄Kh~�Y�����X�5(��x�H��Z�'��h�������h����H��h���8&8��`>��zzx��������؊������8��X��x��������؋������8��X��x�Ș������02����x��"��O�X#������"��ez��Q�8�����,`Džb��3#p�+�!\�S0r���2��/R�ِ���9�Y�y�����ّ��� 9�$Y�&���Q'��0Y,y"Z��2y9�6��Q�6�I8��<YB�ד@�N�\BY�F)c^p��wJٔN��P�R9�TY�Vy�X��Z��\�!XG"ٕ�ybY���,�B5i���
l���oy! j�sY����~�#L�9��9��Վ����I:_���ь���9�Q��Y��,�����Y4����{I����0�w�Y�An��0�	t�߈K��2�2�>��yL`Lp�É€+�%�Pǐ���a1*�I{�9�8at6��	�x�ٞ����9��Y��y��������ٟ����:���
�ÔJ�������	�X�7�P� n�5UAwW#1�4����uQ�Z�$q	r8��va	�4Z�6z�8��:��<ڣ>��@�B:�DZ�Fz�H��J��LڤN��P�R:�TZ�Vz�X��Z��\ڥ^��`�b:�dZ�fz�h��j��lڦn��p�r:�tZ�vz�x��z��|ڧ~�����:��Z��z��������r�X`�2�nמ��`: ��^����9��@����ٟ�өLfꩌ:���
��@��XZ��ʫ�
�_ʩ��p�[9�<A�`g���gYZ~!�
,R��	H�`Ax�*\Ȱ�Ç�����ŋ3j�ȱ�Ǐ C�I��ɓ(S:|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ5�єD3ԫX�j�ʵ+F�$_��t��hӪ]˶-�&;1Wp�ۻx����W����9�p�È+^l�,�>67eL����N?��_�J�aM��i�BKCs��-\V�@�Ӹs��m�MA	�
��q��&�&�n��\�N�:��'Ϥ.�E�"�Z��޺���ז?��$����˟��9A�)��O����(�h�&��6��F(�Vh�f��v�� �(�$�h�(��⊁���0�(�4�h�8��<��/?��DC�h��Y@u�h
ma͑P���BLFi�)��NK�0�OG�U9B�m3�h�X�Akr�O�-���a�Xpnԏ`���N�J砄�A��S�5��<)��.�摤�f:�/
A*avv����)���i�9�g�+�����KC�`ZѪ�n��(2!UI����
��ȩN�!�"�*�RB�,D��ɢ���P:�tá
�����C`��-��x�Y*�.����6t�<5�	da�A�Q��<�t��-
�#�B_��/G��/�\aqA�K��D�@dIeQ�*K�
g��]��@�k�A�^B@��6��@�$2�
=2��x2�UH�id��dF�ȉ�}���zj���c�#��2P�E]1��U�zK��4�Σ.HR��"<�$M��1��ᐟȒ@U>�3�w�b
��IC{n������]\�8{X]P����(��&�(l�tAR�>�'�^�;�@�2��������K�8�,�8f;O�Xq_�@� ��ط_�;K�g��hT�<M��?f�6D�x��G@��O$�(���:���'H�
^�u��7؟p�H)V0���R*��	W���&�c�q"����q��w8�q%�`^����	1�+E��<�%D<ܠ
�t�Ta49��XQ��ye��^U�+��63	'��1�J�<�"J�!�"�n�#bTǎ0%���0�?$�	%@`���
9!dž�#�%�'�wH�TR1���G�ё!e�*kB&	�E�cPSI"��]D� a�)�ѭ#N
�2�Ml7n�h��sJe��#�G���u#�B��"�e�58Q$�t\3#���y�v���L^$�ʇ|m)v��>���}�ŗF�eR�$L�xϟ*)(B���2y�9	z��94_-1��#v샔��DҒ�D�$�h�.��y�T /5i�P:!�����edA�A��@��6�Ԣ��HuQN��T#I��P݈&^AT�H�cN�*E���}�T UH;5M�vR�fM�ZӚ,����p��\��t����F�A��K�S�;Zv���v�O��%LRa�eb$��b�el����	�(��M�I�YC�
��eE��b�{�X�Z����v-���mo�ے&bk�=�:�K��&��5�r�%�2��Ѝ�t�K]&���ͮv����I ��#�s�"`�=�f":�*�W��}�|�;��׍�h�k)���ݗ��@+��_���&1-��`��$�UpZ��9(C‹��!�L�5�+D(�V�$��cה��bx7�X�C��m\�$�jH ��u}��!���:`��@���`!	<pG�\V��53��\���Ix�ÃD���M
�4^b����~�#���+�I0_���	0��v�V�p��kߔh�ؗ�R>�0]�D��w�
�NR[^f�!-S�`w\4#�~-���Lc��1�A��jaZ#�v��1�H?�&I�H���y#�ȵ���6�c���^?k�{�#�,�@j�L�#OF�i+àY$H6H��)<���b6��l;��I��*��*��$�&�N��"� E8�I4�I���PķH��o{��C�łTL'�8G.�+
+�[��vATyf,��H �
L��Ų�Mm�8�D_��;Ƭp娤�:O�җ��;��P��ԧN��[=�ʾ�ַ��{��`���ȍ'�}P+�	ԝΌD�?��0ޑh����{�&�w�C���E�~u���	�w��?������F
�N��ϼ�7�/s����GO�қ��O��W�ֻ������gO�����Ͻ�w�������O�����O�iR������g�����E=n���h�-��8���zy�����
�~�8��Q$��.�O�l>0т��6�e<0H����v�Q�؀���8�X�x�����؁X\���"8�$X�A7&��2dy*h!NԂ0�&E��1�4x6x�:85Y��>���uO@8�D�YfP���H��L؄N��P�R8�TX�Vx�X���WCC�gZ8���b8'h^=8���
h���k�-���7o���P�z�!P��~����]oRf�X��X9\�~��̷������]O�ZA�	H�\�����\�w	t0��0�
8���
�� 1C�
c���(^��- -ЇL��2���2�X� 3�!����x+2sR���H� MCan��� ������8��X��x��������؏����9�Y��Q
u��RP/�P4+Is�R�r�����E[��[�#B���!���AR����	9�0��W�8�:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�x��z��|ٗ~�����9��Y��y��������٘�yv���3\���([I>���� ����d]a�~8���Jq+�(<��	����kx��O��	0�O�����X9�y�]i��ق��o���A�B�H�!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲ�EY.cʜI��͛8s:���S"�@�
J��ѓ��"`�ӧP�J���)l�j�ʵ�ש�f�J��ٳhK�I˶�۷p��K��ݻ9���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν�w�쾋�O�����ӫ_Ͼ�����˟O��v�󣝧�W�[���R�<���6�w�=(���~f��v�� �(�$�h�(���,���0�(�f0�h^�1�!AX6�H�
%��^=i�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x	O�|��矀*蠄j衈&�袌�GC��F*餔Vj饘f�馜v�駠���2�P�@��j�2�<3P��œF6ì�K����k�,���B
����1����)�hC,1ƺf!��q
�lc̶Ѳ�� ��@�)~`C�1ݲ��)���͵�h�L1ܤ������)�ػ-x��-��0��*�4��7���¦i�
6c�
��@K�j�|�ZR�,rj&�<�ʨ!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
,&q�O�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ
فI��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ����'�<�#���76ȍ��9#��@X5fH���i�!��y�!��!��Y��֠40����Uc�������8@	��D9]; idz!�
,',���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�_C�I��ɓ(S�\��˗0cʜI��M�
>\Rt��ϟ@�
jq�U�]ʴ�ӧP36�D@NԫX�j�:�@�\ÊK��C;fӪ]�鸶p�ʝK�_?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ����O�h�&��6��F(�VhaM.]H�]2��,�'A#���!���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&���3���s�9�6M:� �2�FM2$SL:���0��L9ٜ�L?���O1��7����.�D��;��X2�vр��
�רX��Xd��>�:�W2��Q�'x�A	���_˔�I�|�Ǹ�s�_�@�0�s���:�&�mN����_���:R��N�Gl�<�#��z!�
,i,�c�	H����*\Ȱ�Ç#J�H��ŋ3j��pǏ C�I��ɓ(M�Jɲ�˗0cʜy0�O�h��ɳ�ϟ%s`E�УH�*]J�)l�J�J��Յ�F�ʵ�ׯ;��K��Y��Ϊ]�v-?~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËzO�����ӫ_Ͼ�����˟O��������Ͽ���(�K+
H�<3�!AV
G�
%�\
Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�b�!�
,+c�]�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��vC�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx����Ế�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v��> y�:邏�@礣���qÍ5�S�+�r�3,V�L1�xbG:�pI9��H]5ެ�J@
I���]"����EB)�
�PB?�8���΍@��8�B?W>I&tM�cG�\yΘo27i6�+B�CL��%�
5��b'��&G�3�8���HRN1�6�
8�xs�.+Ȓ�7��jj]���\@!�
,.q�O�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�ǏفI��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O�������������|��N:��^:�p��2�`aA9�(��$�L2��2�$c�zr��a:�PB�83�z����Ѐ�/��N9^l`G�7���y3��L��B	
�#���A@?�H�J"���3P�IR��D*�3�t)^5�7���MRC��㽙L2���
��'��y8�x�O"B$H裐����N:�D�]@!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲ�EW.cʜI��͛8s:l��"�@�
J��ѓ��"��ӧP�J�ڲ�'r�j�ʵ�שKf�J��ٳhK�I˶�۷p��K��ݻ9���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&� J�,��F(�Vh�f��v�� �hL"���LvD K�J���p"�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨfT˪������"��
kd��!����
5��ͭ�YrH)��l)rxS�@���!����%�ts� �`c�#�`ԆN(��r�c�@�$ʸ��b�����`SL5�B�a���+�(��/�psC��F�x-n��.@�LăQ����b��@R�J�pr_��A�%��a�)�
T�@̼X3����-��2�19@�σQ�M6�D��1�,c�2L!�
,W��	H��A���\Ȱ�Ç	���o]ċ3j�ȱ�Ǐ C�I��ɓ(S���"8�0
�I��͛8s��ɳ�ϐ�>��I�ѣH�*]ʴ�S��h:�)�իX�j�ʵc��/	�AڎM׳hӪ]�6d����+X��ݻx���{�M���9�0�È+^��,D>6/xcL����Y�A�w�_�I5cM���<K9C0���6���Ӹs�޽�L�	���Б8� �&�O�E\�N�:��'�41(�#��?��$ݺ����OY�d����˟�W!A�)�dG����(�h�&��6��F(�Vh�f��v�� �(�$�h�(���k���0�(�4�h�8��<���V����r��9n�T>�
�E3HF	c,5)�X�Ď;-�#�>mC��%$�A�P��RidDA�&�t�7�F����<����:�=h��ꐞ�v�����F�D�h���8�G�V��@�44g�]��&j���i�7��,�D�� *C��3�;���Qx���4$�)��@�FA�`�
�,�B�'+ܠ�A�,tN��B+�u9������Ь�	S�CQT�8ѩ.C�-4��n�U�
ycO�B�c��mH�fԪ-t�O:~fKC�.�mH��
L�`X�;P:r4��*Y+�Y��/�707�
G�4�	^�Fw�@���f���#:�l�D��mVHFm�0?w�%����@M��f����W��I��������1Z��G��]7�����e\"?�Ժ��;��ۘ�8	u�PT���b�>Ԧ�>�#���m�үAc�\"�͑&��)mt�-�CP�M�R>�G���bPY>�yp������=���@�@�Э����
/�����Zy�3� �)���G@������>����摇�:2Z�?���7�z� �u w����"
W��Y��,�!f����htx����;�!Q���!񈥑W�1$��J�����	$���MA����Jwډ�@��P��j��b�|��'R�@`�+���"+�F�l.&?#@4��=�2s �E���#�"!x��0'�`A�2A:D X�)g�$�K���IO#�3��|S\��e4��!
pɛ�c2A�F�a��9�j4d\hR�K�pb�هa�"L�T� �GuT����#�r�*bKČ��ٓ�h,�Mp���팧<�IO��D�LJ]��O����{�f�"�m�0�0
�F)���C���d�U�vP҇���I}�� (*��4��Q�s .l�Ls���tA�TNs:��C�8`OwS�q
��H�I3���?&��P��T}tΩZ�RA��VC2	^l��i�V�)͏"Jd?�Uӱv�n��\��U��xͫ^��W�8���-�]H�D2����B��1�P�$m$�$ 3��iQy�8�
�����M-�#r����9~��t�� ��X���Ej� ��9����ɖ15�kK\�.�k�ݪX������mu�t��%�R���ͮv���~F���-x����<(�y*�� ]�0����%bX<\FV_�2v��*T�_:����(A�X`C���2/�1�S��w�|��I.\����߄�`Y4bȺ?���S��\j'���)�顑3&�hhЎ�Pb
��Gj�\�$��b�Ȗ���X>H�TD���<� �lJ;\i'�$��
��,���@X��
�%I��*�4�"vƈ+	r�1#�$=+�$,���ț��~ J�Ќ�g�TP�yymCRb@�-~P�f�3§�H�/��Ȥ�\�Z9��h���QSQ��Uy+S�vp�&���A�8�TgD3�-�4$�!S�IT�4&˒��f��"bF��3��m��q;@�C��I��}����ȷ3��YtJ ���@�}3d�q\���o��h�@��ّo	�WE��ORNdd�(��#���QȼG�ɍO|!^~H0��؀ĵ:�2v�3Ձ�(�@�}es9�XhG(�W�q=
/��_n�Z(5,H���X�z�T���N�����hO���������+��N����xϻ��Uo���
�N���� ���� %��(�<F|1?*)��ғ&&��dr�<�v���2$�V��@"�k��H�Y�Kϑ�й%1�7���s���<`�w��$� �^d����5�
4A��=I�A��c����QHA־�撃
Ԃ�,̏~�kj~ˀ'JЀءM��g�rx���
#��@H�,�
�~!�6P����X�����^Q�
%�X`}�| #B\#xː�
��	��R�؂�"}�@��P ��+�|)�
���
�� J�� bz�Z����g�;b	 �}�f�,�v��`�z�0
aӆ�R�p|�&���Ux �C8��u��(:�A`��$��-�
dx�=�������}��$�G�w��؉������8��X��x��������؊����a��,o�x��y�悋�O�H#$���Ƙ"���w�QØ����c��,`ȅ�H��3#Ћ+��P�C0���2�Fj9Î�8��X��x��������؏����9��!�X���
��v����3��Y"V4�i:�v��In���tn 9�$ivV�(����*I �ג0�29�4Y�6y�8���:��<ٓ>����i@i�W�Hi:��,U��II��Q	 �y�F8`�w� �
\�9�bY�fy���[ӈ�lٖ�#�l�j1�rY�vy�i�xyd�,����zi4{��y^I����0�)��NAQ��0�	t���K��2�2@�>�}yL`L�����>�%�P�Л��r+�I^y�9�u&����C���9��Y��y�ؙ�ڹ��ٝ�����9��Y��y�虊ې6/����Q*�`�ABo��|#	%�B�_S`z;@3�O��/q�
Q�����v����yY���ڡ�� �":�$Z�&z�(��*��,ڢ.��0�2:�4Z�6z�8��:��<ڣ>��@�B:�DZ�Fz�H��J��LڤN��P�R:�TZ�Vz�X��Z��\ڥ^��`�b:�dZ�fz�h��j��lڦn��p�r��u�*#[�z�9H�1xz��p0Z��P�g����OC|��9��C�LMZ�s������	��@�`�?ʧ�J����F:��Z��?��?A�@i�Y���Kj��'!�
,W��	H��A���\Ȱ�Ç	��׏]ċ3j�ȱ�Ǐ C�I��ɓ(S�|���8�0
�I��͛8s��ɳ�ϐ�>Λ�� ��H�*]ʴ�ӧ:�єD3ԫX�j�ʵkG�$_��t��hӪ]˶m�&;1Wp�ۻx��������9�p�È+^��,�>67eL����Y?��_�J�aM��i�BKCs��-\V�@�Ӹs�޽�MA	�
��qB�&�&�n��\�N����'Ϥ.��"�F��޺����?��$����˟��9A�)��O����(�h�&��6��F(�Vh�f��v�� �(�$�h�(���i���0�(�4�h�8��<��cV��?��Gf�9���5HF	�+5)�X֔�:-��d>�f�H	��
EY�)����?n2���t�]F`ŹQ?���;z2h�����i֎����F�D�h���(�G�V��@�4�a�ّ"�>4�@_ Ʀ%�A�0�Cf:.
���E���Q\��T1$�#�~*�f`�3�:���� J	9��9�*��.T��A�b�
�2�kC��v�#�Q&� �;�u�gA�D������1�Ԁ'��Q?�yYF1K���-Z�4��\�)Ҿ���"p���3.�{R��%�AD��,A7���Atm���ekt){	����K��L:4�"@�:��Vm M���qy2g_���fE/���T���pW�@�u�@^8����1
�qc8Ϻ MX��t�ߘN��G~"K%d�B�l�at&Q���#bH>�vq���quAm�r*G���{�"P��m�M-oH��|yP/�A�P�o���SW/9�Գ@�<b9Խ��B�l�g�n�\,��b�Qy�8��������i��ƿ�~"q���G1���'H�
Z�:�CL�.�A͠� lJ1����p1�R	O�BM!�5\g�y��'��i�C��l+�G���J�a^15bă�d��GOx�F݆'UXM6)V�K^Yi�7���
,(��L‰~H��T##O��m����H�Uɱ#�@I�:+�!�|P	sB	X+jTcC΁�@б!�P`I��	�%R)��L&*�rt�H��
�СI�hQ �B�T�Ȃ�#o!%H���vx�TK��i�ۍd�A�;�4ä��x&D�!�?"�3�dG>�0M�7k"�q�H<�ЦG��e�S��<�Y�8\���R�B��~.e���O�t�#�#��J�І&E��|�vN���d�WK�	����0�E!T���8a(I6�!�=d.HLQZ"�bH0��9izY��<
�PQ�
c��HM�Rs�ӥ:�N�x�TA��W5"���Ӧ��j~d6�UҎGY���$(Z��ֶ.DYu�\�J׺ڕ#踫^�׍d�$@�k��ww$�&����
�N����Q��H #X�
�X���Q�>��� �FgT�Ҹ�(���;�Dʲ��� a]�Z:׫��<M׀��v���]+|���:�Nq}�t�K��Z��Sd.v����z���	$�A�
�g�
��3#�Q/RQDw ��|M(��D3��;���>`l�Ax�c������v��E�0�\��jx�s0I�t�X-j`��qb�L���M&��t�")v�+S����kJA�a[\v��!�l�6Xl�{5d�NAǺ�4�P��$2�@(dF����(��	seX��P�@� �x3Ft�-� I�CvX�"F�&7��A���Lٰ �xptcb;sE?拃U�d��C<��}���j�ДI,�@�	�0�3C@mCPwځ��J�Nb\^F�9-S<�ewd4#��HKL-%\�:#�&H:
2Ncw�q��!�Ʉ�z xFI.ReH�<��?�=m��q�
���d#%��>&f!^kd
)3*T+�XF�#�A�ݐL��^�ʦ�"�H:>e�$T��'q8��J���)�O�IO2$���b�C�m�?|!„�/�(:/�b:Q�9ra^��X����ʓ0c9�5GQVhr_	?��qB�F��$���ޑޑ�L%V����N�����hO��������&7��N����xϻ�Gn@���MĈ��tf$���q�D����=7	�g���<�����Gd]�ּ���w��C�Ff�lx�ڨ�_�G��s��x�9.��Zx��wwl Kb��D�X��!FY��P~2V!g@C��p�0�����W��G�1�=���6�L����8�p�[(� �H@�[��#�`
�
�p~�0� �@
 �
��Qp��
{�	��}�G7�:����@`
?�	ypm���]
G���wpA���
�
H�9R��P
�@��a]P�@
2x`*X`P�`����A�c�(�
uVgq��P��	?`�y@�P�H
? ��T8��ߗ�@�=�
�~Q���0�Qp��G�w{�w�`~cH�%���
�8{� �pԐ
�0��
��p�@��p�0����w`6�?	��H�|� ���
�G��ܐ
�H��ސ��:R�G"�==C���
�
+0��x&w�Hw���K�0q-vd�(~xP���������&�
߰�q	a7�)b	��W��R�73��%Ie`.�Љy%�`&i�P�X�7�WR
P�̰�-�6y�8���:��<ٓ>��@�B9�DY�Fy�H��J�]���6�kN��%G�
#�rxXI#��-[���)�
P|1`ұ])�����AA��Up�"P_+�Z�3��z��zji�y�������9��Y��y��������ٙ���� ���Y��y�jQ7���4U��)"P�y:^7��Q��i����9A�؛��ǦO�Y��igfp�2��ٜ�����9��Y��y�ؙ�ڹ��!64�֝��y�Y���6є�	 ����!�z�){#�w�
 Q	�ٟ9��:��'�F���4�m��j���:�n��@0�1���o �y�%����@z0@-��
Ѡ$�ɁC$�PV!o`��01�Y�<�2��@��!L:L QJ�9�3C�0�PȰ�᥸23�H^J�TWMC�o��� �A�f�r:�tZ�vz�x��z��|ڧ~�����:��Z��z��X
����R`/�RD+Js��Rt�����E\�!��:1@��
r�
�	&u����	�
�!�
�����ګ������:��Z��z�Ț�ʺ��ڬ�����:��Z��z�ؚ�ں��ڭ�����:��Z��z�蚮꺮�ڮ����:��Z��z��������گ����;�[�{���
��۰���;�}!��
;�����哱���:U�{�(;��2��S�M��=j�k�������@�8ۭ��0p�Ck��<K�K���9�9��`:��0t��
Q!�
,3,�o�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP"0E�MԫX�j�Z��@�\ÊK��@>fӪ]˶'��p�ʝk�?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�4��سk�ν����Ë�?Y����G~�N�����ˇ˪}���o���(��G�&HX;�)��F(�Vh�f��v�� �(�$�H�K&�f`LrH�U��Q�B	��p�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h�)<j���p�)�t�i�x��|>GC�L!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,<,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ㮎 C�I��ɓ(S�)k�˗0cʜI�&�<%�ɳ�ϟ@�
M��+v�*]ʴ�ӧ�"��իX�j�j`խ`Ê;�ٳhӪ�	n�۷p�^��O�ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6���!m��$�]M(+� Jui(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF�#<RVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*hJ�J]�Ϣ���^�D*)7�4`G:�<z�1�@c�3�p3L^�S��v�3N6�x�7��`G?àjW!���J���|x���q��;�l�Qΰĺ�{���;����…I����m�p�L�n��9�4�,X@�5ˠ��3�$3����@#$C
5�����@��5d3j�xsj�g��7{S73��7��N�i�c���C@�$�!�
,Gc�U�	H����*\Ȱ�Ç#J�H��ŋ3j��qa�� C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μykwΣK�N����سk�ν����ËOO�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v��w|H\@!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,X��	H������\Ȱ�Ç	���o]ċ3j�ȱ�Ǐ C�I��ɓ(S���"8�0
�I��͛8s��ɳ�O��>��I�ѣH�*]ʴ�ӝ˞f"��իX�j��Ǘ�8�ԯf;6\Ӫ]˶�ۍ9J�(*c~0�,�߿�&��_ه�Y���ǐ#K�|-D>6/x�̹���O�B<A�k�‹��ͺ���'֐�sg$�ya X��Fp�����/�a���\���$�A�؝����i��r����z�����o�ӴX�_K����𢡄���'�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0:�^�4�h�8��<���@)�J��7��$�L���S�0�E3MVc,�g�\�Ď;-�#�>mC��)5CQ�l6���I��m֩�L�_G�$��F����vjhC{.$�<�6�c����Vz�^Qj����v!H{���AV��(�pҌ���AxH�@�2t�m���E��'�t�HC癢�@�Di�I&�#��+x��
��m�z�� �A�bP�B�+C��ʚ0�8EA����:�2�C�P��e�ڐ7�)�e4Ϸ ��E��B@'���'V�Ԧ.�#MW�6䳱�6�E��#�@#������A��b��m��-
x����$�A��Az�A�p�N�(3X�v3G�ad�F�
��s]��[/]P���,<oW��:g MP�
�vOX�d�C���7xZ:��;lˍa?�C'��;�*n���4.�㗛8	u�PT���b��O��`�"�q˿�QrA��BtG��.�~��!��0A�˧{H�/�~w�AaT9AG���Ӈ�Z��&����B���Cf�.�+��æ�u�!�?�Ј|�����3�xG�4�2壀� x��;��L����2�z� �Gh�
Fh$L����&ElR��g�y��8D?D�Û.�@����>�1�HdM䲲$ɐ-�X���5�Hq!��b��)<�D~�I]�Fl���Z1k���)C
 0�O�
yl���bcM4n$	xY�9�#JV�Y�$d�L��@��
U��e�`
l��I��;J�'��(��m�Luy���!�0
�4 %o��]Ĕ�5�Ī�0CzD�5�K�p���Gj��δ��_$vJ����<-�I�Ї�q��z��v������V4Ϥ�%���	
��j6IR��fJ#P����'�g�
���R�B*K^�P�4!%}h(I��E�Y�peA&WL�"����IWJ���h���)LYZ!�	i	�)ljA.���&i?�G���HMj�©Ԧ�HN�*G&��l�;(�*9���#B$r��G�\�� ���hM�Z�8����p��\犑���n��G�Ȼ��^AG�lɓ��r���&J��(�`(���"�d�������(H�T(C�*)rd&)D��}b�a��;�J�f��mw��Et��J�*p�Kܦځ��M�r�t��:��Ѝ�t�;H�R�N��nE�]�
JA�n>�3�w��9/
�Q�����}'�.Z/Ɨ������_��%�������j�a��		��u�
j�O�A�$���.\[a�|FzPd�A#�C/��w4��;Ė)��@�*�-%1|d���(��%�G~
�Ȧ�����H2AL� �*�Gj���XTL8əUȉNE0ŒV��ORQ��.��s�	�"�(
���:�B�C�4�/`ޡZ�<X �ڜ�΃�k�#}�̜
��@h� �`�\�͏~������C�7)t�
bǑT=��p�̻ꂨ��s�Y�@]k���L<�C��2CD��r{��k���?
p�!U7;2x�
�|cg˳�@P��8E��6[r�q�#�%Ppm���0�*��}�:p"#CDA�@���_��Q�I~� J�:�]�����E�U�����@�!�#I�8(G(�W�1=�>H�n
�$�~�#�ɚ��~��ЇN���HO�җ��;��P���N��[��XϺַ��z�t]7Txs
�'$	�®�cr����Eb�vaF��G41	fֽEL�@p�r�v����n o�C/�PF9��
��'�f<HT: Q@��D"$�ȼ1�V�Y�7���\��)�A�C̾���y��d�^�!���s]�����4L�
��@
�	9����G�A7( h����=�WP��)�~�Q�F�"�Ӑ�.l
a��(����?C�}�p
��R�
�m�=�p��>�G"����wx�
3�Gs��:*�r}�W��pi���@0�^�J���<IC�@�B�b	n�~�w��P�UF��. ���{�
��K�`� b��1b[X'���`a8����f�j��ː
�E� �� Rx�
ۀ
�`��x)�x����΀
���Gl�u�b�@�hɐ�xyх8s@����#H_��MR�������7�d�U�����^�V"���
Ր6�	t��.���X���)#��@�X%�����WpQ��*#،=���H��(��H$ڈ��L����䘎긎�؎����8��X��x��������؏��k�#���_X`78q.� ���8����0�.�. �`W�mC%�	�p?hw�v�5��
�G#��!+¡[H5,� ,��js�<ٓ>��@�B9�DY�Fy�H��J��LٔNI"��R9�TY�o��V��Z�Z��^��`�b9�dY�fy�9�h��l�c^Ж2up9�tY�vy�x��z��|ٗ~�������AA�6��:����Ӄ!W4�Ƙ��
������!�M�����𙤙#LP�����iu������9`�pi�Y�����Is\��nq��2�	O�oЛ�=Q��t	H�@@�����5��@�e�
�`*��@@@� �9��!- ��-��&P@�7!�sZ�q�:*�Ÿ��y=�x�N�@@�‰Z�z�����ڡ�� �":�$Z�&z�(��*Z\%��0�
g��#�e*�`�aBq��y#	%�BrHr�@_�$1�������u��y.*� q	:���l�\�b:�dZ�fz�h��j��lڦn��p�r:�tZ�vz�x��z��|ڧ~�����:��Z��z���������ڨ������:��Z��z��������ک������:��Z��z��������ڪ������:��Z��z������6�����c��~:��
�*�����&
щ@�`�����J�J`���p��J��{	�DA�tXJ���y�Jj!�
,X��	H������\Ȱ�Ç	��׏]ċ3j�ȱ�Ǐ C�I��ɓ(S�|���8�0
�I��͛8s��ɳ�O��>Λ�� ��H�*]ʴ�ӧ;�A�d�իX�j��u�K�r^"Z�L׳hӪ]˖d���2
�\�m���˷/ԯ�
I���È+^��,�>67eL����X�^W����K�aM���Bk� ��14��0���e����ͻ�o�l�ֵ<-E6m�9�d��N����6�T$�ˆ��[�O��^�1���޼���+�"?~����Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�֡��,���0�(�4�h�8�cW��~��Cf�9ma
�L���A�5)�7��NK�D�OG�EY�6Q)��BT�F�A�ܘl��]Fd��Q?t���;r2�g�|�ɐ�i֎���8�F�A4h���h�G�6*�@�4��a�ّ"{>��@_ Ƥ!�p�x�0CF:.
���E�ֺQ\�H��4$�#�^�@`��&��ڡ+�B�(%��A�Q+�I��lp�#�A7���*i�<�ar��]Gv���~0��
sO
xB@X�3I�:�h;�:�veKC��uЖ"�yT����t�| .J�
�T���@'���ꕰt�^B��6��@��1�&�1� ��du�d�A@0?M��'�v0��i�3̉f}���HAX�2д?]1��c)��GC�M�<�d4D1��;=�m8����#�tЌ�L䔳�A�`Ű�w"&��k�M���F+�v4���I!E
�]��솄O���.P�uq�Fb�|u�#�@v
$N���C�s.�/�����ε��'&^$���<�ԫh��.���/�;� %��L���15k��3�	Z�)Ű�/�A�<J%��I�?���n#LaO�2��#(T�w�?����<j86 Q#Pw"��gHDe�'UXM�(V�~[Yi�W���
,(�L‰~裊c�"OZ�m�t��ȘQ��#�@I�:�*��l��sB	X�*Z�bC΁�@��!�`I��	��1)��L&�rt?����СH�(Q ��T�ǂ��m�$H���vkk����h�֑$�A�;�h&�d�����<�H�2��H��E������w�͎�#�0�f5���nzxq�P'"�����DJ��NU&H��H��I�z��"L
J�`�OϱG �؇%�)"X��g���y0T E�DaBv���,Pnjz�!ن-AJҒ��'�(JW*&i����+Fzi`Lh0%�0?����iǡ���h���HM*R/�O�:��P��T���Z� U�H6H�ѫ��wq�<m�M��بW٤H*�A�L�b0�U���k��:ށ<��׳�5	2`�u@q5
���׈��N�*Q�tX�L�V>��f��m֤�LJ9?K��"��5�K�ZB5�����lgK���0��ͭnw����*��o��������'A����:��н�	��Fx����OB�[�vE��~^{���W�s0�p�잷+j@���^�,���M&� t5"�u�'S��jJA�X�Kv�"�l�6�k�x5d�NA���`�P��o��� Y�@P���#(�+T��6ƈ*s�`3$�
R�vxɚ��)=se�XX�~\7:tqo���5�ź*��A���"� -aGb��d��6"e�O�92� ���&1dH�YXf1p�V��m�!�X��	�C˔1��͈�֌����I��sFpIM�43������Ȅ�� ?NI.Re�<��th��duCZV�bZ2!Z#S��QaX��
4g.I�
2�DJ��4�
2�@�@�*IG�,��*�$�&�2��"|� EvJ�H�Y _L5IF}mhD�9�1�(��.]⫌l	$�X�G��&tz#��+Ye�����N��=���?���2ٌL� ��GN��(�O��W���.���gN���8���$��	�7�b��c̑���>'�;
S�uI��$�>�t8<�+��>��J�\�҆6�aƥTz�9G:�s��'Ѓ@.�U�p���`G�o��j�cI�Q���O9F1�!c8���F:�P�]l��yF,�����5٠�蓑;��`.�%�c~���_D��l8��(}�p	p�~�*�A�03�ΰF�M?;��	�4��$]�)8b{k(_��HG����2D
ַ�
��XL#ϰ4�Az�_"��<�T
)Lc�p#�0aA`���
�
�0yP1�3�r� jE�p�@
�'rsԐ
֐
��B���{��2l�v@��+�~��
ԐB7?����x� �`
.h���
���P���
��	3p�t��v2��`�f����0��L!�atHux��J� m`�Yq(����8��X�rt�������؈�������8��X��x��������؉������h��"�V���[R�39A0��E��,�q�"��!�("��d(�ehF+@���� KtD!l�4pW�b�z�*��W�`��������8��X��x�蘎긎�؎����8�gqk�x�����X������!C4�y���
��ِ��2Z9��[X��a���ّ�� �"9�$Y�&y�(��*Ya�4X����u09��K�A�4������!��j�qn�g�
 Q	F��'L��P�wq&�Vy��B���{��\��`��b�@0�1���o Y� ����@dy0@-��
A�r΁
�� T!o@���0ч��- -�Lg�2���2����2�!����	+,�К�IQ-ygxD'� �!�������9��Y��y�ș�ʹ��ٜ�����9��	;�X�'Q
%�ȹ�Z��E���37����o����j�3j%
�7<@1 �ϙr�
��z_c�G���P��9z�X�
��ڠ���:�Z�z�����ڡ�� �":�$Z�&z�(��*��,ڢ.��0�2:�4Z�6z�8��:��<ڣ>��@�B:�DZ�Fz�H��J��LڤN��P�R:�TZ�Vz�X��Z��\ڥ^��`�b�W�8�fz��X�
+8�8:h����Bi�@�p��@}J0�{:��tj�����:���9ܙ�&T�+��!�
,3,�o�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\�Q˗0cʜI��M�6xJt��ϟ@�
�0V�]ʴ�ӧP"0E�MԫX�j�Z��@�\ÊK��@>fӪ]˶'��p�ʝk�?�x���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�4��سk�ν����Ë�?Y����G~�N�����ˇ˪}���o���(��G�&HX;�)��F(�Vh�f��v�� �(�$�H�K&�f`LrH�U��Q�B	��p�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h�)<j���p�)�t�i�x��|>GC�L!�
,�c),�	H����*\Ȱ�Ç#J�H�b�v3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯKׁK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC��nt�!�
, q�!�
,i,�E�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(M�Jɲ�˗0cʜy���K�h��ɳ�ϟ%wXE�
УH�*]J��'r�J�J��ՅDF�ʵ�ׯ;�K��Y��Ϊ]�vm�~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë@O�����ӫ_Ͼ�����O��������Ͽ���(��D`ep�dG�H�1���
	:Y@!�
,i,�c�	H����*\Ȱ�Ç#J�H��ŋ3j��pǏ C�I��ɓ(M�Jɲ�˗0cʜy0�O�h��ɳ�ϟ%s`E�УH�*]J�)l�J�J��Յ�F�ʵ�ׯ;��K��Y��Ϊ]�v-?~m�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËzO�����ӫ_Ͼ�����˟O��������Ͽ���(�K+
H�<3�!AV
G�
%�\
Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�b�!�
,Fc�]�	H����*\Ȱ�Ç#J�H��ŋ3j�ȑa�� C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ�rwΣK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(!{��3�t�\]9����A�
7$�"rΤhM2�Ps�q���L:�8�bq�丌7^HR�27
��@�8+ȑ�1AW$5μs�2���$pE:Í'��X�8�+�fp�X3cg�̛�X3��p�e�����7씃矀��Π��[@!�
,i,�F�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(S�t���˗0cʜI�e����ɳ�ϟ@�>�E`6B�*]ʴ�S�
<��իX��4*��֯`Ê;�ٳhӪ�9n�۷p�V��O�ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËTO�����ӫ_Ͼ�����˟O�����������(�h�&��6����R���%��B�x�0�*+X��$��N@!�
,)
�%�	A����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�D�� ��(S�\ɲ�˗0cʜ��[AQ4s��ɳ�ϟ@��<Ȧ_I�H�*]ʴ�ӑl�J�J��ի0��ʵ�ׯ`�ΘW�B��hӪ]������iK��ݻh����߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν���lw���Z��#l��{���"������3#0%/*��J�
���2&H�1
6�N^x���C�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄�y��FVNrH0`��Q�B	�����2�N��v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������;�*Fo����霅/`�,#a:�������2�<S6��"K;|��0'�V5�`��8c(`C>��O6�h�5�0sK!G��Ox��7)��V5�`�O?�s�+xRN2:�e�3ɜt?%ˣ
�I�e�5��F�4���MU��L���*��x�1a�EM5T#,��"�:���q{����M6��#A}$�t�j���:X�я7B��VX�9[�Î<��n�騧��ꬷ���.���n�������%<��<���y�<�˼PM</}c�ԏ#��A�wX��4N��o��觯������/����o���������H��L��:���'H�
Z�̠7�AĘ`�j ::h@&��(t��R����0�a��P.$Єi�:�	yD�	D=pAkxD���H<��>h� 
C��A�Q��C4
?�A�~�/���	8��!�
,i,�f�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(S�t���˗0cʜI�e����ɳ�ϟ@�>�E`6B�*]ʴ�ӈ��	����իX������ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�I��vRe"�Dp��;J��S!u�l�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��m��A�>K�&F���Cei�(�d@!�
,X��	H������\Ȱ�Ç
�S��ŋ3j�ȱ�Ǐ C�I��ɓ(#������bٹ�I��͛8s���S����:ƒ׳�ѣH�*]ʴi�d|����O�X�j�ʵ�W��,����ٳhӪ]��[�rK��K��ݻ]�]��"C��L����ts�<����ǐѮ{�W�
��#k�̹��7 �8��c#8�̺���$���Ҏ�g���G@D�&���ȓW\fP�� |B�#0����ʳk�ζ�̈́!��������虾+8��z�2�˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �T^�$�h�(���,�7b�0�(�4��M��MnMV�)V�͋i�9q#P.��Pnˍh2�w
�##�`Y�$HF)�����Pt&D��@gnC]A^�t�@���N�c�Y x"��W�J�<��������<c��%����f�馜v��4�觤.(�@�-4�H�04C���Щ�Q?9���	 E��'����@���,�B�'+�@�B�,tN�9��Q�L�B�m���A9ِ;�"Np�zP?�$iA�����m�P�yc�F�n��F��y;�f�c�.�M��@�}
`!n:r4��ق@��h�I?e
LГ֚��F
\��<�
���U4:�@����vԸ+PjU�Qt�|u�̓�9��al�8ק��2mF}��	W�fFVNƧ�Q��� A=���j�;��-7�꠽��%�7�1�GLi�,߄��#`�Y��""P3{4Z�4J��g�YP�s�-���>�tM嚧����P���F�]����B�=�4�w�n�����C���{:� ����Xu�(���GmC�}d����E���O�����G&�<C}_���7���������H��L��J���Ձ�L$�
�f}�q�7hre;��Z�G!�DŽ	� ��1.'b�}����PCsP�P��$�(�
�fC�P� �@HAHG�$�����w�!CD��RD�t�!��,z'5|���3�h2
dZY��߶he�`
-�C(1�0�E_d�AÁ�J�=25Pq+��E?�Aб&X�
5�`�"|�4�@)$�EIcE.iNH*!��&Mʑ�r!�^�����%Xq���!H�(��^a�I����*�q��(�jZ��6[S���+r���I�r�'�o��Φ0���A&Gn)!�d��DIN��5x�d:�̈�a����"	�Z��8�t�C/ď}�2}h��!�8*~�=K*Q$|!m�djA�G��0u	:�Ӛ���!(N�R̝��ST��P?2	^D�C�i���~+�I��3�JժZ�#=��V��ծz�$4
I��Ҭ"o � ��t,�&�Tk�h��.�#�%K B�:�%�(W(��"lG�ԎKau$-�Z�j���"�2�d7�Y�t���[�@�Te:�o)�iW�Z���ũbc�)����ͭnw�۔¶��
n�~+���C�"�qxs��[�U\"
�@�}�u�r�ۿ�r���HËM�s��
&<4����ל�,�v߫ =�e
�,}u��s�7"M�C��$D~�oSvX���c��!J�T�d���Y;"K�"�P�MpH2Y�$�� (�<(L��dĄ�X�B�h�/T�$�
\F��㢲"f��G��/���H ���g�F.�Ԁ{%��AL�B�"�<�A��=K��A)3�S�!��GE!a.�d~�%�;�D&�ɥ����e�$�	�TgȦwTo���:��f��JIp��0	���D�fK�3��$/D���I��H�vp&q��S�U��դ50J4�V�d��vLi��#�]�1�@�c�
((���-�#e�4a��KJT0
���__�D�@7D�i�h6�<C�D���`��oĵ@���!dy C�
�
Bb�!���?P����1ArQ�Ɯ�,=A�$a2�C�nI:��ml�j�p"W�]ȃ�roHLN��ѻ �6�D��F}��8��͇N���HO�җ��;��P�:Jd.��[��XϺַ������M��!t�C�U
)�3$Ġ ւ
J��s������f�UPC���&&qh�$|��9�!����!�x���~%<!�@6/�2$^b�!�I��^=����|!�vq{+� �7�Q
o�#�@�%���wp�H�b
���Or���^ ���6���B�\a�@��XF��U߷���"7�B�gB�/�P�T���(>����[1!���~�`��*�W������a	@�@x�q0Zm�l?a0%P�0���G� �7
��$���	�9] 	�w�`
�
�|-���
n�4h��� =�����*P{ 
&��I����L�0N�/3�#��� 
�
�0|cx�G�5� 	��~�
ӗH('A
Q� �p�Pv�x�v{��@�0���hw��!~ˀ���A�Њܰ��
ް
��v�������؋���H�ȋ�8�Q��'�(��x�Ϙ����Ȍ�h�ט�٨��h��X�ڸ��8������ȍ�x��(�丌�x���
�8����x����'#�Y9�Q��x�I�9�X�i�ِY�
��I��g��ɑ!)�y�$�%i�	��9�+������3y�4Y�-�)��R�@}��� �
�p�G)���Ay�(�zG�&m"��lOy�X�/��^��as`�+]9�����fY*:����9n�r9�tY�vy�x��z��|ٗ~�����9��Y��y����9��ӘX���z�7zy��"�w��U�m��N��"*$+�u7��1��š�"�(��b�1�d���$#�:�a�����akÙ��eZ�ٜ�����9��Y��y�ؙ�ڹ��U�ٝ���Й����=�� ���	���8���!,8��y�������^�kNɟxQ�:�5�Zz��t^���Au���:�Z�z�����ڡ:\��>{��$Z��&���S��*z2`~F.8@@>�/j�Po5!���AX� & �H��J��LڤN��P�ى�R��D�U�8�YzhP!Pq]�X�
��	:
g�\�_c�܀��@� �)7
�0�Z�6�
����1	t��6Ȝ�j2�2��2 -pL���GJ@���j���� �$a�J"Ȑa�a��:a!+� �b��pU��(����3ͦh��PT
��g���:��Z��z�ؚ�ں��ڭ�����:��
Z�Y�x�v�j�c��p�O����v[d]���z%�B�q�
�4; 3��Nq�
ݣ.��O3�t	m)�G���۱�� �";�$[�&{�(��*��,۲.��0�2;�4[�6�{�8��:��<۳>��@�B;�D[�F{�H��J��L۴N��P�R;�T[�V{�X��Z��\۵^��`�b;�d[�f{�h��j��l۶n��p�^٬r�?��� p��c�ѷF��P{@�I�� �����kdP=Z����G��~d�(�
�"�4!�:〸`�`>@6���ú�"��4�1aH��:�@���<���a��K�"���F|��Y���ݪ�A+�o�dp����Y:ܫ�jI�{��V!�
,W��	H��A���\Ȱ�Ç
�S��ŋ3j�ȱ�Ǐ C�I��ɓ(!�{G1�Kb߹�I��͛8s��ɳ�B�u�7ϧѣH�*]ʴ�S��.�Q�� O�j�ʵ�ׯ=�m�w�ٳhӪ]�qGHnN��ʶ�ݻx��% �dQ�E��L����ho������ǐ��{�o�OƑ3k�̹���m0ݲ�y^ͺ�k�džE�G#��׭#�	b��}M����
�T�EH���?�4�����V�I4$?��g�O�<����D?������˟O��������Ͽ���(�h�&��6��F(�Vh�f��(^� �(�$�h�(�]�,���0�KM�NK��%r�̇�n>Y#�.�$�L:�J4�2�>QI�&�X��(D6�e��#S>V��<�#���i)P�!�I���Β_��_B#)���ʒ��N���#�z�6J�hr9*餔Vj饘�KC�d�i���P"�2j��P;�x&����h�G
|p�"v:��V�� J	9��9����
�hd,����P:�t��j&����s�@�2�_�Z�����uB��jD�@BE�mE�]D*,��#�Ar��	�·��t��}��A�0n9�,sPQ͚iF�2�Z�4Ɯ��P;��3�	���l��_�y��Ev`X�Ќ�v�w�5ח��4dlF��T��y���{}�g�'Σ�GLGĴ� ���`��b:t���<7A�rG��{����I�nx��pM��sI� ��?�
H�D
A�Da7�"��O夗��.�NC]�����.�qݒ��@�.�8F�>�8���7��O5lϮ�c�4��h/�&�x��g_<�$m��9[�ڗ_��_w��GT���/����o���z������H#��/z�KI
�@ϐ#�k�9�@��j�� d���A
�`fBx)��
����2�;�H��`��t��Zh�@Ć	!	�gR�~L��)�,2BeLM��Y�S��v�!AE���9$�#Ơ�@�A�t��_1��s��F2�,�E��#a�aB�d�{ �H�2T|���0�@�5�đ�ˆ�>ŒL4�HH��I�@
��NrG��B����,�A�l$�t<��,�I��9�+t�� � eV 9�_vhE��%GءG�S�Ќ�4���iz&j�S��X��4O,%�p���LgStӧ�	�$US�H�A�ܐ����O3t��}R�*Ƌ������I>4�z�d�5�8�cF432Y��.�ю�f
�HGj���)=�J-%���T$�x��:R�����O��_�hSsN��@
�P9bҡ��HM�RGBF�H`�m*F�1�@�t+[�;FV�g^�tR���AL��Œp�ю��D^����~��&�:����r$�r��_WW��EQ�
�b;l2�}���c{�M�<c��ͬJ�pP�z���r+hGK�Қ����fgS���ʮ����Dc��H������m�bݚӱ�
�p�K\�ܲ�h�GYEX��!W��HlZ��\i:�0��n�搖*Q�\��1S��:M�,�P�9��N�aI����$�(�^S�>N���|:�:����M�+N�`A
�����D}e��E�`8"�Ж����v���Bb���P�@�Џ���:���A�Q���-F"ċ`�x���Q?(��
j�92R:+凜m\S�<��"��=�}�teIݍ0�"��	;��eo�X�;IH�6����.I�L
KyXx#:�c�|f2����;΋�ۤ�!4m
��6��Z�t|$��)����H�P�bG�x��/�T���1�C��������h���������T|����H�W��8�e�2�a�\/��uuC�ȕ"P� E{
��T���^�;21N_�m�'2�6F,jX"A
J�
����ꭟ]$u`���\��H*wF�8ok׹0r|Ge��tWd����GN��(�O��W���!q7�gN���8Ϲ�w~UnId�5�G��fu�}�w��8�g�ILn�S��#���ٻ��cL�/�r}�Q ���vt�b �!��A��� '�^�=�Y�n�
D��B������I�P��$$|��~n��(>%KIV�W�?߰�IȑU���	�I�q�cP��I!��:��'P� �
"$��5�q�����!���Sll��h���.�>|4!6�f��ſ����O���O���������O�����Ͽ��������8�X�x��9��e]���kQ7�0��
r( R0.!x� L�� �t��5�$(���T����$t'�^���g��!O;a}<x��6�HHZ��L؄N��P�R8�TX�Vx�X��Z�����\� �0(��g!��mdx���l؆��GnH!��tX�vx�x���I2��f!P~��z�X��^fp��ᅊ؈�������8��X��x���������)C�Չ�8����x�	S����&���)W@@2���R��`0�����-��x�Ș�ʸ��،��И�~��0ЋՈcPט�]�:� ����%\�����48�*t '�-�����0�
13��	�&o���ޒ�8�2�P@>P��x@�!@PL y��q
���H�(Qq� %H�p�!2)����U��
�>�P_C]�d�$]�e�:�a��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��_�`��4�(�<чT�R����*ɣfiR�I����G�Ж�[ ����!��+�T�!�f	��s�@�u��X��������ٙ������9��Y��y��������ٚ������9��Y��y��������ٛ������9��Y��y�ș�ʹ��ٜ�����9��Y��y�ؙ�ڹ��ٝ������9��Y��y�虞깞�ٞ�I[���hW��� gq\��*P������@*���i����F�*ZIJd�	��zW>�����1W��P�@��Z����)��S��Ib
�ȲOP�=
���	:P�1�3*�"q�`�f�y�"*�L��g6���O�� jي���F?כ�!�
,,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�G��>�I��ɓ(S�\ɲ�˗0cʜI��͛85��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ�������ȓ+_μ���УK�N������j��;�y����e�>����.������_
~�������Ͽ���(�h�&��6��F(�V��,�@D�p:�d�w�x#�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�X~�I���n_|�<b�O�e��^�l���p�)�t�igW4�Y�qz��矀*蠄j衈&�袌6�L2@���V�(��V*٥�F:��2�i����ب�&S����:*��-�#무�z���,c���&�k���k1�4��@��ӯ���Աx�lM�&c�R�C�:�s�<�֔˸䖛T6ް�6ٔsN?XP�k�2�b�֢T���+v�����3���R���$�*�u(��x��5+��:<CQ]p�/��-
���ll��,�lo.��b�;�!�*�aq˃�s�4�d��[�
@q
��1ϜtJ�v��&��@����"�7�l��ҵ�r�
#Ā&�@��`��3�,�6�^�[K.�$�H/�C�#�H�%d��5�~�I�]7�$�
7����ض�&���7�
8�s�#:����n�?Ck���R��K���E�<줣|��Wo���g����w��/���o��觯������/����o���������H��L��:���'H�
Z�̠7�z� �GH���(L�
W����0��gH���8̡w����@��H�"�Hd�V!�
,i-�b�	H����*\Ȱ�Ç#J�H��ŋ3j�PǏ C�I��ɓ(CF��)Qʗ0cʜI��͂��"`�ϟ@�
zҔ<�Ј*]ʴ�S�l�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËnO�����ӫ_Ͼ�����˟O������t��q&�.�M;��7[:�s��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8���!�
,6/�`��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËyO�����ӫ_Ͼ�����˟O��������Ͽ?�y2.��?����x�`m�<(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@�;:!�
,i,�f�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(S�t���˗0cʜI�e����ɳ�ϟ@�>�E`6B�*]ʴ�ӈ��	����իX������ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�I��vRe"�Dp��;J��S!u�l�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��m��A�>K�&F���Cei�(�d@!�
,6,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��]C�I��ɓ(S�\ɲ�˗0cʜI�e��8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O����e��H ���~��C@;���6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8Z�I�ܔ#e_��<BJ�πE&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p���#gYt��`��;��;�ȧW�pcM�Ƥ�
���̡\�a�9���0v�7�,��[E��2I��S�5֐���
��G(�p�$�<��X��	#[�J�qN2�[U?�C�!� K?�@��W!
#���D|���3�^eN��(4P�9Ƥ;,��r�4�8��(�ސN2�B�L1۔�
5�C�9���.�$�n�Oy�
8��
�+�N�K��%[����C@:򸜲K!�
,b-���	H����*\Ȱ�Ç#J�H��ŋ3j�hQǏ C�I��ɓ(QF��)Qʗ0cʜI��M���"`�ϟ@�
:Ӕ<�Ј*]ʴ�S�l�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O�������ӕ�ș�ܴ����C:� ��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��i����@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�I�2rr!�
,6/����H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ?�y2.��?����x�`m�<(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@�;Bi�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��g��IU@!�
,`,���	H����*\Ȱ�Ç#J�H��ŋ3j�X�Ǐ C�I��ɓ(S�L�j�˗0cʜI���.)�ɳ�ϟ@�
����*l�*]ʴ�ӧ;�X
�իX�j])g�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&� JS-�T��ܴ�إC:�`;�(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L69$'jP�����Ael�\��>
j��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐z�L��jWT�v!�
,R��	H��~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ#�IDɒ`���ZʜI��͛8s���s����:ƒ׳�ѣH�*]ʴ)�d|��H�O�X�j�ʵ�W��c�ٳhӪ՘#����
�XK��ݻx�-9�cByL�pڶ#�^̸�c���;�S��˘3k�<�DpA\wlg�S�^�ڣ�_@���oA}������ނ�~�N��q��&��OH~�?�$������J��0d?��g�O���w��DO0�����˟O��������Ͽ���(�h�&��6��F(�Vh�f���'^� �(�$�h�(��a�,���0f�M��mE�"V�͊i�;q#P.��LRˌh2�v
�##�PY�$D6�e����L4fD��#И�DW��!�#���x�םHa�ե_D��g��&8�z�֝�6�!ho9*餔Vj饘޷KC�fꩁ���B3�$C3��0�*����S�-R�Qx��K�*�!��+x��
�,��B�tJ@�h�,��0�B�bP@6�}���:�.ԏ$1Z0��}$4*C�X���l��){Y^H�^�-�e�P�6��»�5�E���1��2d莣Q'���/AKFk��5@�`��*�dzT�@�ӎ�/3�]�UGM���Q59�W��Lי!JQ�)m�|꜁.C�f�GH�p�hfd�4^w�4��|��ަ�n���3��p����I�=�;oǝ�KY�I�݀��#`���""P3y4V�4J��W�XP�s�-��<�tM䖗>���P���FDNn���B�=�4�v�n��[�C�ܙ{:�M���c�t�$����Gk3�}c����E����������7&�<C}�^��7���o������_G}��H��H4L`��!�ā
��j��2�I� dn�>��/B�NdA
��;z�N��#3(4��1�(IP�+�*��A�fq����&I�G A�)�"C:|(���&��C��Y�N j�!ȧf� _H�����Yq>��P�A�Pb\ċ2����:�֑4z$,jx�V���~�xcM�x�j���;�$U
�J!�BƊH�"�`B&�K���#q�B���E��,�K�ؘ����Q.�rʓh�Aҁ//⎗Ap�Ќ�4T�i�Fb:cW沑yY��4�,_
�&��玎���-�JH^�N�4�$Wk�I�'uVāÔ�0|G�v�Ði,���a����e:���	A'����WQ���hG
�Z@�#M�Je�m��0�iv0*ӥ��8��r�ӐL��GOkZ&������PM�̥:��P�M�JժZ��X��KC���t���%�:�(0�I)ɚ>W��XkI����@MGr���G�pG��%�#R�F�׺4�3r�D���Z����&f��m֩�t��>K����J5�jW[�Dz�����lgK۔�����",n1XM��v���ɀ�P�T�1 ��"�[�:��	Z�U��N�R���՞n�,����ܥ�wd�B4���GeϲU��)�{��LA ��/N�x��Bd���/HP����!��]�
Kr�tl�!-D���B�L�5kc	P&X2	%KBD�@E�DŽiB����\Hm򅊴cĹ��H�QV$�3��<���	�;r�c�����(�E�T���0�"�V�5#��x�Aحg)5#�dB�/�Y�P����>�
���FbZι"����h�ѓ�	��%��e��ȷz���l)yN����<�$M���I���Ę"��I�U3j�%�5�d"e��:�^tA"�w�V-�x��*��(�8���xeτYޔ@P�\�$d�&�}e-� ���&�7�^���^6CP��\��&����<�!I��L�@�\[���wM���-� ��bBU���g���!�R�$oq�66B	5�b��+�.�h�7$�'�p�=�V�� ��CB�����8Ϲ�w���@�ЇN�}&'?�җ��;��P��ԝ�ђ�b�ͧ~�S5��ȏ���|̜�%��MLb�[�;��u����6�zc���]?׊չ���X��n�푿A� ���6�a���������M��C����km~@%�#\z챬����-�0(�����ɏ��u���?vo�ha.$��	)
 ��Ŀ�$t@\��&*PH���x]$ۘ|�2/�6�$�H5P��R�c;#��0�{�,�H�G�B��2V�ِ�p�Xx�
���A���
��ȀH���ȁ����(�#�'h�!(����-Ȃ$؁&��0��1����%8�.x�c#mf�
XWCHBx�6��Dx�EȄI���K���MH�a�Ox�Xh�]��S(�[��\X�f�g�d8�h��Q(�Q�g!�P����}z��|؇~�����M�wy�x��������؈�������8��X��x��������؉�����bS�S����i�7u"w�X"�����S�c'��M�H"%<�s��y1��B���"����b�1��a$#`z:�a�h��ձj���Z�X��x�蘎긎�؎����8���K�X���P��xڈ=�h ��Y��yy!3��ِ���+iu'�vь��+�ّ�s^�t"Y�&y�(��*��,ْ.��0�29�4�!�>x�V�:��Υ<���#��@2`!�-8@@>�E��Pi5!���W� &��^��`�b9�dY�fy���h��D~ky8�ohP!�ps�S�
��	P�*�\�_y����@� �(M	�0P�M�#�0}���@@@�d�9!- L@L �
��YLЕ�ٚ*䈚!��G�*�`$€��*�*�q���*�#�I���ƙݱ'����3�h��6%j��ag晞깞�ٞ����9��Y��y���������?ٟy�\*�c$9�xO/��1vV�jX�I�P� �G�pO�"1�ǟ���=/Ñ�zz�"1L�@}+���4Z�6z�8��:��<ڣ>��@�B:�DZ�Fz�H��J��LڤN��P�R:�TZ�Vz�X��Z��\ڥ^��`�b:�dZ�fz�h��j��lڦn��p�r:�tZ�vz�x��z��|ڧ~�����:��Z��z�����Z帹�	Y�_:�!0f_�P����Z�@���0�*�dک@E1����JZp���G���*xI`��0�:�J��8���1�:Z `����GХ�j@�H-����1�*�JP��*�
�dT�Sz��J��3����XA��*�y��P�=1�詥�F!�
,P��	H� ~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ!ǽ����@b߹�I��͛8s��ɳ'�u�7ϧѣH�*]ʴ�ӛ�.�Q�� O�j�ʵ�ׯ6�m�w�ٳhӪ]�qGHnN��ʶ�ݻx�[�(Ȣn�
L���7H�≠���Z�=���bȘ3k�̹����6�nY	�:�^ͺ5�c�"���_������wM����
�L�EH���~C�4���ؿV�I4$?��g�O�|O���D?������˟O��������Ͽ���(�h�&��6��F(�Vh�f��'^� �(�$�h�(Z]�,���0r�KM�K��!r�̇��m>Y#�.�$�L&�J4�2�>QI�&�X��(D6�e��#S>V�C�<�#���i)P�!�yi�,��!4RB,�(�������gF�������\�F*餔Vj��Ґ<�v� p90�H��ڄ��8��@:�y��(V��Q\����d'��"�*�RB�,D���2t�0�$�l,��(ݰ�B�‡�-���E�\"Т)C������6t�uB��jD�@BQt-E�]4*,��#�Br��	�և��*tN�}�op�[�F��#�(T�&A��L�<
�1gG�>�N;�g��!@�:�)��i]v��'3�U��]�*��c�#
�m Q��h^he�Z��4��d���-�(�����l����b��!<-��LA w��r��
�9�D!�߄Sx+א]�7��	R.9cۀ$O�tKu+.�8�L.�xy��B�4�E�9���-9j
N��S���C@�y#^�T�v��7�N�+
z�B�`BP�m���z���e���E�X���F��5G~yD=�����/����ok�߯�����&
��繯%$�7#���o��L��p��.�����5,���`�R��*,">���@�!1��
(�aNL��LZ�IA
�"�I��1?��
�!5�%}O	"Ot�f�dC�G�p��C�AA�F'j�����90�22�{Ʉ��m�ύvI	����b �P�f�b��F.$n!	32�H I d�%'%@%�;��B@�T@� �%;��L�ĕ��<n��z�2�2#�����|�#g�K�H2��;�`&�Ќf|�(M��!@�t
]4�jz���H	N�t���\Jn�$:!��j�$�;�yʄ��i�X��@�3A�8QNٞs�sD���<�|�1�Z?�����$����F7j��q� 
)v*R�P��(œ4R�ҏh�n�H=Z��Y
�;�"M�	ɝ��@�I�JԢ��HՈQ"��>t���@��Tɩl!�YM�Y��A�
{�0i"J�D�F;��Ip��R�;��ӝH��HO9�L��e�ԉ_X�����&bǗ�-���t�3K��r���f7{)�r���
�hGK�f���Mm�"��ֺ�A��g")�����]P�r>�3��S,p�K��W5�<.�1V�mp�]`;
���FW�-�m��9��
?�nSrAe�T#�A[2�"d�/R`X���$9!J�S���j�+���0��B�g����aXP~��%�^���h�&�:�e&���=�A�p���#k�!X<�:�#}��+��f�@�~�	@^�8��đ���jD�92RN+凔�l&K�<�es�=�}
uciݍ8�"��	;��]�9F�|q�f��5���$I�L�Jy`x#:ʫcx�HB��͹�;�ےۤ�1ti	��6��Z��|$-�)�Dm��H�P�fG�xv�IЁj���?�sH� a��7���Q=2.��
�(��p�-�FG����B j�k��`��n�RJ��r�A�*@X֣��8}�:d����,����!�!�D��W�[#��k�|v�@ԁ��^.��
$�[#t����L8�#��6Jri2�j{�� ��GN��(�O��W�򂰻�0���gN���8�)7�2�:�&y�B���`����>�tI��3�$"u���ҏ�����$��1�7_�Z���(:�[B�=�(�[{�� ����x'I
AR�m�;��qU��j�85xN�|�R�h{
2��[��ϼ�7��{��=��tћ��O��W�ֻ������gO�����Ͻ�w���r������z tc��^�u������2r*�(������~@
#M�~��U�Ԏl ��χ��~��4�HD����V'���k�]L���|8�X�x���
��؀���x8����}��ٶ��1* 8�$�xnW�B
(��,؂.��0H>��r1�U�8(M@��<؃�e>X�DX�Fx�H��J��L؄N��P�R8��2K�\T��Z�UǷ�^H)�!�ka��t�r� O@�_U�pXՁ��w؇~�����8��X��x���P���Yt�Ȉj1ሐ���	�	o�]�o CX�a
K��BL6��0�
8 �F�#�3a�i��o(��-��- -�|؆
L`2�2 �
�>���Ht(Qq� �Ѝ!�(����U����(�E(D�%�SKb�e[Vw�!f9�Y�y���
��ِ���9�Y��7x�l�M)�c4X�� ����A��E�ё
!��+�M�o!
$9��1��	r�
v�L<I9���[�	+ɒ6хL��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�x��z��|ٗ~�����9��Y��y��������٘������9��Y��y��������ٙ������9��Y!XW�8HWt�� g�q��*P�	����@�9���ɛyy��F�*I�Id�	��qW>����1�Ȱ����ZZ`�!~Y) ����^ib��DzO���	�e�9����鉟"ћ�f����)���gF����O��08!I���ז�!�
,3,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\ɲ�˗0cʜI���~6s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸sf������N����ȓ+_μ��vͣ��'�:J�[V�Νd?x뺋�O��y��ϫ_Ͼ�����˟O��������Ͽ���(�h��ɂ�g�D���ς�A׎7f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di��eR$8!��NvO���3!�V���\v��`�)�dGC����l���p�)�t�i�x��|��矀*蠄*���h�k�ϔ��Ō7�@�ͥ��U�@���
1�X��3���i��9�$S�Y��Í��z�8���@��*�x��9�Xc��a�bH:����2� ��?dM;|�1�vՋ8���9^�����n�M2�c����L�\�㍽�C�X��ە��@��l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�ׯJ!�
,i-�b�	H����*\Ȱ�Ç#J�H��ŋ3j�PǏ C�I��ɓ(CF��)Qʗ0cʜI��͂��"`�ϟ@�
zҔ<�Ј*]ʴ�S�l�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËnO�����ӫ_Ͼ�����˟O������t��q&�.�M;��7[:�s��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8���!�
,6/�`��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËyO�����ӫ_Ͼ�����˟O��������Ͽ?�y2.��?����x�`m�<(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@�;:!�
,i,�f�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(S�t���˗0cʜI�e����ɳ�ϟ@�>�E`6B�*]ʴ�ӈ��	����իX������ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�I��vRe"�Dp��;J��S!u�l�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��m��A�>K�&F���Cei�(�d@!�
,6,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��]C�I��ɓ(S�\ɲ�˗0cʜI�e��8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O����e��H ���~��C@;���6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8Z�I�ܔ#e_��<BJ�πE&��L6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�I�;r��c�f�s;x�eL:� ��9����9
cG�xc�3����+�#)X��R�
�l�*l`�@ֈʕ!��J?�@V��[E�r���3��z�9�1J�p�1�^%�8�P#
3�p�2�Zu�1ĜsI+���2�Tk�7�ԲB1|��՝�Z%���n�.!�
,i-�b�	H����*\Ȱ�Ç#J�H��ŋ3j�PǏ C�I��ɓ(CF��)Qʗ0cʜI��͂��"`�ϟ@�
zҔ<�Ј*]ʴ�S�l�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËnO�����ӫ_Ͼ�����˟O������t��q&�.�M;��7[:�s��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8���!�
,6/�`��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËyO�����ӫ_Ͼ�����˟O��������Ͽ?�y2.��?����x�`m�<(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@�;:!�
,i,�f�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(S�t���˗0cʜI�e����ɳ�ϟ@�>�E`6B�*]ʴ�ӈ��	����իX������ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�I��vRe"�Dp��;J��S!u�l�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��m��A�>K�&F���Cei�(�d@!�
,P��	H� �~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ!�IDɒ`���ZʜI��͛8s��ɓ����:ƒ׳�ѣH�*]ʴ��d|`�өիX�j�ʕ�1��cӵ�ٳhӪŘ#����
�XK��ݻx���6c_�?&䑷��È�m;��ǐ#K�{���9O�̹�g��	sz"��)\wlg�c˞M�♙v4>�����M��qģe&��OAG�U�4������J��� ��B�������K��������˟O��������Ͽ���(�h�&��6��F(�Vh�f�ᆇ��� �(�$�h��y��,��⋞�B�z
y�G�����h��@��q�N���@�����"#���C��5S5ɐLv� ;��C�>�Q;�$�6d٦I�t�:���!4RX�qi�<~�)(����<a�9�����F*餔Vj�~�4襜(�@�-4�H�04C

�Ч�Q?4v��beE��'�X��@��*�,�B�'+�@�B�,tΦ9��Q�G�B@n
���A9�Ȑ;
=j]!�Φ�#�@�k���	�ʐ7lt�ldJ_�=��E��VQi�f�B��4����?�#�@#���-��WF��CV�)�I�b�uyͳ�@{���̓N;��ܰy�65�
�G�h�\r[]b�Zfd(E����sƹ%�Q!uB��`FQ_3�4]��	5��p��
��O���N�g��:j+m7���m�2��Q���m���<ƛ�7n!"5�@cP%I�@����;W�B(`���G��C�5�s�yw
C�tD�ZP�~,�s�@�LIN��*P��6�f6���6G�n�a��<	��6��Stח??�|�>b�36�m����#�P�O���
e?��H����:�dQ�"H��
]��+�A�dP0��
��F�SK�FH��� \N��ƹ���2�@��`d$A��px�v���@�c:�$�E�}�м�� "^h#�ċYHf1<���#�xF��D��Q �ҢYG.�G X�
K�J�A�xQ�wc� �@G�:�F��E
U�
0r�b�G��Ej�`��Yb
r$JM@	YdQ�;^��B�D>�I���(���@ԳAA�%`r����AH�(����v\�L��f�l�4�IM�X�����ڸ�hD^��8�SK��;��~��$0���雗��W��%M8	��Y�E�C�@��FDn��u\��a\����>n��{*�(	������$@�D��Q�t��dIW�ҍ8+��fKgJӚz�6eJ1s��;=��@��$xaQ��#�%%�S��]��(T�Jժ2d�VͪV��ծVD�!��W��ՇI ���t$�&�T��X��.�#�{"@ B�8=�%�(���)�H�Ԏ�i��1ha�"���eAd'��ήE��-�"~Z�2�!t,�jW�N;<�����*˒}�ʶ����nw���.�
�p-������bp��<���- Y�{�T�"v��EVN��2!�w�����M/k/�X��=X���h����2���)J<G|!��$�HBA�����|H:�{���NE!J&�	��C�(BH\��D�%Q"A.	�"��4�.Fj	��*�6�BEځb��e$�*+rF�
���	�߁��2}VaQ`�"J�A
�*�%���x2�m��/��"P5��e���!ѷQ��7�G���
��tr�� *)w�H{r�Θ�#��I�%�#	y�8�˭kN�4+4S�$0/�g��}t��™��RJK�E=�D�K�2E��XӚW'q���r�!�Ҳq��m$e�3af�)����K�6�	�_\����3��̷:C�
�Ml;��6��52��d72�AP,#(q��*�]?�Խ?&H.���O��ѝ�,\�s���-I�[ܡ��PB
�P$�
�yp�Y�
I�	pVZ?Z1����]1���ι�w���@�ЇN���)?�җ��;��P��ԫ�ԒıbΧN�R5�ϸ����|М�:%��MLb�[�;��u�s�����j�9$E<�b���ň?��dX}$�x�����C�}��#\����0q�ڀ�O���ߐ)R5\���P�F�x���&����"�������O�����O���|N��͏��O��[���Ͼ����{�������O���O��_N������i�:�=�8���ad� ���B�3��Apv��P/
��%v��]E2Բ ց�qYbS�F�*�U���.��0�28�4X�6x�8��:��<؃2>(!����Z1���F��T�L��P~��TX�Vx�X��Z؅`�M��dX���f�I��l؆n��p�r8�tX�vx�x��z��W���g|���Y�0���9�Q	p�t!��h܂��H��e��V��C��`�X��x��������؊��kJ��M�P�'�Z��`�t���J�E���p��Ro���DR��@� \8��0��G�#�0����@@@��č2!- L@L �
��XL@��8��)-�!�!H�*�P$€��*Ƞ*�ѐ]�*�#IfI5�'f#K�(:sl��hR�i{��.��0�29�4Y�6y�8���:��<ٓ>��@��!xBY�U�%A=„���3��c�E���
��$	%�Bq�q��O�"1�œ��0%��%03��wAY�X��|V�gy��|ٗ~�z�����t)�q԰��i��qް��ã���PP�И�Dq��`��)��p�p.�r��)%�y�
P��w���I/BP�P��
� O��������������
�P�P�T���P�P+�	����P��ր�Q��
�)�#���I�������:�Z�z���
��ڠ���:�Z�z�����ڡ�� �":�$Z�&z�(��*��,ڢ.��0�2:�4Z�6z�8��:��<ڣ>�Y*��B���e�0�H��Ox�`dP��Zp�d���
��4!=i>�rh�Zp`L:���@p�H-�U��0��U�$q��)|��z��	�VA��*���&�(ْ
�!�
,P��	H� ~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ!ǽ����@b߹�I��͛8s��ɳ'�u�7ϧѣH�*]ʴ�ӛ�.�4�ӫX�j�ʵ��~Z�xK��ٳhyrs
� մp�ʝK7-ؒEA�˷�߿��� �6��È+>Yx��ǐ#o"p���e�Ma�e%$�L��������^��-�k6�۸s�<3!!}
*��b'ۺ�+_^�L�DC�	�9��س#]W�����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��uF(�Vh�f�\qv�� �/5q�8,yĎ�,J�
3d#��d�@��F�-���+�4�@�@T$��r$R�������L��E�#�@Wv��@N�t�A���P��B#%�R�.����gF����|F�Y[}*蠄j��Ґ<�6��l90�H�H��~�8��@+by���R\2����&��"�*��RB�,D���2to՚#��y&�A7��P�5�&��%��s�@{2�_����F��1l�	���q	E��mJѤ��θ
�i'DhkW��9���.mL[�F��#�(T�I! �\��/dv�C�3O�a���\T��G�Zd�x�I�t!Wmu튜^:f8�P��Ұ^tF�F���hYǦ�΃�G�R�n�	��ΧPw}a:pN��lܵ3A�w���v|�`�lo�m��T]�%���	C�-�aۀ$O�tKf�͑_����c��.�NC]����T.:n͒��@�l.�84gN�8T�Ж�X7y>�p=��/�rb�P?�d�FL�|]�s�՛�l<�/o}]y>ݑ;�w�Q�{/���o���������/��F�o��‡ߒ���Y�ў��6%��Z\�G@�����hvR�E��fT��a�0	'�Aa�$� H�Ҥ����SYd��Z	�½���''�3�B���e�#s��G��C��� �h��2A�����<�dB
C��6ڷE�$c�Ʉ�@r0��e��
3f�`�VI"������#r$��A����_|�ŝ�p!��*zh�y<-��ȉ!�y�%!�{���3E��
f30Yʋp(��;�(�P����ui�8ȇ�Oy�F0��b�&�$2���f�2&�3���qjm��6MBJdJܦ8i2�w�ɜ�\�&�֏T�12����I�z.�2��=���~�E��d�;J�I��u�&^��#����S<�� Bt�}��F7�O�r� 
�H�D�H`��,)F�1I��m[�;������T؃8�X��. 7��Q�H��6%�:�a͔�����F2�X&5-T]R3��<e��`
kW|)��%beeM'0򌙼,�p�+�N�"t�v�QQE"ͼ2��~
�`KX�յ��M��֪��:�>�f(�>�����b��𡯚UYCK�Қ���M-/�F7�ޯ_5`]�At�Ʋ����R�V)� �2��u�Ǜ-�E
2�k��',�l�A\�X%���K��	5P"�AM	R�<� ͳ	rE‰���,�?�1P��A#Y�RC�h��RȺ�xA]�V!u�VH��5��	H����b��]3jp����3$@p]ސ�2���D��@�8#%K�!�E�Q,O�ȓ��{���*�u<fˑ�VdS2a�]k1�T!M~��KQ�$2��LV$��d�!���R���f���m㘔�j��b��N����:p�3C�|t���Z�u�|���-AP��J�&!���_��*�"V��e�)⽄f��5E��)�k>�
�
4$31�/o��T�"2�:�j�!A�9�����ֈ��ꬖY$u`���\��9r�F¸��N�/]|c)}�o���N�����v�����M�z��η����~���x.�q#�X@~�Hr}"h�N��]���G�9&��{͒�����둛�n��K�(�i`���1���d4]�P:`gsA�A��Ї��.�� ���tD�#�Mo�0�qj��z��A�d4� _׺��N�����hO������g0w���N����xϻ��������O����O��	e��xNj��R6vX^ۑ�O�3�)�#��<}$.zU| (��@��C��f\_Ō�!bCh��܃�3mN����9n.��E���;��Џ��O��[���Ͼ����ޯO�.����_�� ɳ��??G��/a���j���Ͽ�������iQ8�;�Vx�Wf�������8�X�x�����؁�g1D1d8�$xQ�W�(h(�!��fa�Pq�r� O�[�R�:�ȁ��Ax�H��J��L؄N��P�&�Q�'�N>h�e1��Z���	�	9�5�o ��a
��B�ԅ�0�
8��=��"��1a�g��9(}�,z�- -��Fx�
L`2�2��
�=䶈qk����Ǡ� Q!�(�0��)(Cu㵆��**E�4DQ#*J`�c9Vѱ�!�c�،�����8��X��x�ؘ�ڸ��؍���X�hAL��cJ�H� ����I��D���
!��+�M l�"l���Y ���!�0Bc�t�1����4�P��8'��ّ���!k ɋt#��(9�"�&(�&��
ђ)	�Q��W���E��#7��&y���BɌ:Y,)�2Y��ӓ������O��/��L��y�R�&[��Xٕ`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�x��z��|ٗ~�����9��Y��y��������٘������9��Y��y����{�i������oVyg"�o)�q��3Q�|d��p�Pr���zRY6�@�Pv�Y��Y�퐆ZrL(�i�X���Ɖ<�����+�����P��� �榃��P�0꩖�����
�@��ɖ���p����	��m�U��!�P��)ǀ�����"��0�	��ppK����ZAJ���Ry+v�s
�F��@��eY#:�)Н,빍7IJ�)JCڙq�l�yl�TO���Z���V���ml�h!�
,3,��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\ɲ�˗0cʜI��͛8s���o�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_�\-��УK�N����سk�ν�����W��N����Ϋ�~˪}��{�o���������b��(�h�&��6��F(�Vh�f��v�� ���,"��@D�p:���ay�x��4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d�i�r��IOgz�E��'w��8gf�ݩ�|��矀*蠄6IC�4>�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨig���ʪj�#竨1�M9�p�+���3P.�pC�2�<����A@��sN9� [�$�p�#Қ&N91x!5ن�+ޠsN2�X.h���(�x�4�v�YD���CL���"�6�xs�+�-��q���X�,;��f�x��:�\ڬsc;�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w��ށ�褗n�騧��ꬷ���.���n������/���o���'����7���G/���Wo���g����w��/���o��觯������/����o���������H��L��:�,��"�6~X�E��-H�	ڮ=aA�;y���G�p�����`�v'+Y�����0h�~b��j�y���p���Ot"�(�*F�TĢ��E��h�8�D@ N��H��w�X����ܭH@q7+}�m|��A�1 �X�t�@r  #�H�7� ܰ��(���c�C�H�	��@�xA
�@+p�Ɂ����

!>��ht"0-�K��!u,H-�i�&^���|�4�IMhZ�sG�!����_:ҡ�u��w�x��|��t O�K�02P��w� �9�� ����g�q���uG�e��	mG@!�
,i-���	H����*\Ȱ�Ç#J�H��ŋ3j�PǏ C�I��ɓ(S�\90�O�XʜI��͛8sꜘ�+vv
J��ѣHY��'ZҧP�J�J�&��X�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F8�<8�"�s��ܴ�΅��C:�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi��\��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n���i��⌓& y�@��?~��yD�;���\���<��\���o,,6X��0;�x������:���9�XP���N�#/A��O��,=�lP�<��|
`��?�����CL� �E?�,�<��p����2�P�g�c��_@!�
,6/���H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h��7�D���O�	�C@;�P��:v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��w��TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��&ʂ�(0���@�xP	�k�A-x�SP+L�q��cȢ��< % ��_<���0���4���o�8�x��t><��N1����J��#�;���0���o�����/�p�'�$��C�����C�0��@����@� xa���$q��(Da��q�8�X�/b�
���X:�1���J��u�ÈH<�/x�	fp�D�x����ƚh�&^�6�<�H�,~�#�רFL(dd�cE&G9$ !�
,i,���	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(S�\I�˗0cʜI��͛|���ϟ@�
Jt�.��)ʴ�ӧP����O`5�X�j�ʵ���`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(a�UM�_U��ܴ��C:瀘;&���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�3r�%�`Y�^"'O���S!�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'��⌷���B�@�@2�E�,��	�l2P�"�<��@ l�@8�7�! ���>�����
4��*����{��@W ��/��N.08@������p@���!J?�pӌ<!80��d�>��K�� �~HB}0�98����u��W���|��0�w��
����_d#G�p��P .$@f�#��C"�
d @=V��&��
tH����ap��XG?�x������Gס.�caW�"<�8E,6��A�¨HE�!�
,6,"��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��]C�I��ɓ(S�\ɲ�˗0cʜI��͛8s�,�o�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(aN�Lh^ ��9��ca��Ў7�h�(���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�X�I��%w_|	<bj���e���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�[;d�Î�����%Āz�'���3���(ܜ��*i�\2E"��Z3��@@:X��g���7�Z�\R7��lf�/�l �1�jF�@È�E�v�7�H�E-�b8xN6���ng^޻٧����,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧��ꬷ���.���n������/���o���'����7���G/���Wo���g����w��/���o����C&���������o���������O�H��;�G��L��@6m��;��
yU�+��n0���7�A
���h���W4�H�&����8̡w���Pw��:�^ȏ���P,��8q	6���H�)Z��X�����+:�m��<������� E���;�)x��8G9ұ�x���G;ʱ�z|�!dt�;Z2"�)��pXR��&7��MZ����$(9�dr ���#�b��c$ը�@  @.0�]겗���/y9L`�Ҙ�&1��L` ��wĒh�Cc$�Ȁ\:�'��4�pvXӈB�G#ݑ�5vs(����v��h�t�#S��gz3(�LE5�94u�2��J<�y{�P���d?�Y�Rě��;��4rӒ1|"Oz����\g;��M�`��	Fm@M2͠� G$��L`B�$8��-pˆS���59�M����?%�BB��p��B�yRt
�:u�EM2�H�5�M��Ϟ��$�FBZ��\n���$Ni����$� ���5�TF� �@F�U��;e�1K�3l��`�@�JK޵��d�_;�oNA
�&gq)������dy�]� �X�D�*Or�#�U�N�	h��A�7��\�2� r%�.>��o6ן�M�F�3����H�xMI���5%��	$0kz�k�UR����#{��JB2��&����/8�'p�V� 0���Q�.Tb���co�'���K�"�E*�8�+~��U�b���Q�	���&�x�9Fq�m�D�d|�� �Bw������L�)[��X������%�!�]�����9ȁ6�Wm����L�9۹�t��,gd�V}�@����>u�����>��F;�ѐV�Vi�YЋ�"�!΃�B+�;�N���ԨN�� (�!�
,]-���	H����*\Ȱ�Ç#J�H��ŋ3jܸQǏ C�I��ɓ(S�\Y1�O�XʜI��͛8s�<��+vv
J��ѣH���'ZҧP�J�J5*��X�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�VX�<8�b!w��ܴ�Ά�C:琨�,���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf��W���`�)�d�i�h���l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔V�5�f��7C
��qjg�85�d�0Ĝ:Y1�j��Q���j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn���6�Y��.?5{���`�@@
���駳�:C=�N�꩟>�@���@6!� ��0��_|��3����C�|��Oo=� �=�"��<��4~��O>��W���<A`���P�@��O@���@�w<�O��7@�/z�#���
/��}O!�p��@4���qof��;/>e	��XB��D/�@R�����qq,Ȳ�B���PÁ�C�c�E�7ŒaA�a"A�x�vXD�8";�:��P =$b�5A�����I�)*ha	Z�:6F\��~$ )H,VL���xx�C��<�!�
,!"7��	H��A�q�\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I�!_�Fq^ɗ0cʜI��͛8s�4�`�|�����|,1�ɴ�ӧP�J�������\?��e�E��ٳhӪ]K�1���K��ݻx�je�._�}��{ȯ];��Ή�x��>��J�L���/|w���ϠC�V�o��ӨS�^ͺ��װc˞M���۸s���-)�zN��Exیg�����M%px`p�سko�`!��ԙ��N�����șZH�`Z�˟O_�yC��D`�}�(�:�C�&�����@�1(�Vh�f�����%�4�+�h�(��"G����in	4
��h�7
&I�8]G�5\�(�N�!g2�H�L�t�8�i$�+�s�le�\v�~.���d�i�h���l���p�)�t.C�x�y�(���g��j衈&�袌6��C�#���"��k˰3�9�F��d
�yzz

*�;��f �n�G�u�Jĉ���%�:�ɨ6+y��E�
d79��Iu1	K�~$K��<�����P�Þ7�@��%�sP琴i#��sC�\iV0b2sP��3*�ᚇ�dC��Q2�����K����eB"<��@��:�b��\�qz�$m)����KC�����L�8����@-��D�8I�E'�J7�]�`G�0��X�M,��476�T�%��s�h��uT%8uv�>KʏK�$�ݻ��6�|���߀�ςn���G�fY����O����s�WR=0c�yH�PI�/{Gt�稇�L�D8]�C�oEb���R݇����/��G@��0����/��	�ǻ�@D�p:�C�|:�tX;�i�$�Е&��⧯������/����o���������H��L��:���'���df +Of�'��cv�
<�G�5�a�
�V�	YN7l!Z��=���"u`�8���<L#�h�!R(� z:�(C�|�U�A�x6D���1d
V�ɱTs�����A�cF1,$Y�H�EVF�\��yaD栆��a(�%����a�#�Ȉ	004„��C�` Y��" (��<bB�Q S;HC�D�cD^ʏ���$�,(���C b �BJHR 1�H ZY���2���+!2�$N4܈I�2B�>�*]A��/I=e�9��A�iG�xs���5F��s�B����M���A�R��Oܠ��X����x��!�t�3�"�S2��S�qP����(ET�E����̛���F���:%�9���f´,k�J%B���b
���vA��n$����RˊdK��.2J�t�*C�*5U)�Z�@)�V�M�4�����2v
��h�H	���Y�P�ͮ�I�ԑ~��.�:Bu���#�$��څJ���ܦL��D��#�6	�<��J��
""�9o�$B#�'?����Vĩ�,Rwڴ~����
�p�K��f-��%Zp���&h�}�Ϣ+��Z���ͮv�[��rQ�`h�v~�NNx�!,���‰i��EC�!��	(L�+�a:�J+�p�&&1��d8]��wIwTV?.x�釢;�ю�f�� ��2���'*�2�����F�C�[)&'xq�n!�p��%���w����BdkYH��@�@�ߴg �H���O�P6���+l�1��a$�F�"�q�n��e,C %~FA�\j$c�n�1�<��9O���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z�ָε�w��^������M�b���N�����f;��Ў���M�j[���ζ����n{������M�r����N�����v�����M�z��η����~�����N���O����;�����'N�[��ϸ�7��{�� ��GN��(�O��W���0���gN���8Ϲ�w���@�ЇN���HO�җ��;��P��ԧN��[��XϺַ��{��`���N�����hO��������p����N����xϻ��������O����O����;^�ě�'O��[��ϼ�5���{��}{�]@���O��W�ֻ��?��$Ŏu������s��������{�v�c��m��|�Џ��]ώ6_����g�/�~|������O���/?���}���w0�78}�c��������������Y�p��P	0p@8�q`�؁h�X�ȁ��#(����H����0p�Z�&H8� ��Ah���?x�>����O؄H(EH���2X���A��`"�Dx�B���[�� y�w.a�cX�V80DhWx�чQ��h��\�'p`�th����&� ��yh�8�X��D�������[�V󀃍�`�@x��p~h��h�C��ЌCx�h�h������5s3�u�D�Ћ@��g����!`���臝W(�!��X�-��&���yX�X�Ȑ��@��o�؈�8�`&�A(���H� �!@�@��-Љ����X��8�)��H��^�o`�����A(���(Љ����$9�&D)��(�����(����C��-)�w��8��8��H�x��(	����&>�l���H�	A�����h��W�pY��>��X�Ћ{�& �8�hi�h����� ����)���hwH����/�o�i�؋ވ�2���X�&P�Y�;	�y��y��@�-��(�p��FȆ������h��(�>�������8����
���@��ؕq���o7(�\ɍ4ɉ
�����Kȏ�(�q ɠ,0`�H�x�����V����X�8���)�qI��|8�R��2h>犰��U����Xdh��y�)��8���'؁9��7ʁe(�V�B����2��������9�T�S
� �V�����
�|Y��X� 鷦l
~o@d%BpW@mJ�����Ǡ�6y���0}��z�P�zO5}�
��z��w�����|38�J|�zw���z�'O�G�1Sz'����_���(�з��������w�ʫ�
�!�
,!"7��	8�K�*\(�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(��f�Yʗ0cʜI��͛8s�	G਄;�
J��ѣH���B��~<�SJ��իX�j�P�?�@��K��ٳe�
\wn�T��M���ݻx���+�T��L���È+^���~�K�L���˘3k�\S.�ϠC��%���Ө5�J����6�c˖���%E�z�ͻ7�]V`㻸��v;���Qp��##�N���~�J�ν����ؽ��������FϾ�����˟O����A�=�Ͽ����):�g�@�0��6x�\��TX�����d�ᇇ�s�� �h�(���,���0�(�4�h�8��<R��_=�#�Bi�H&��L6�����ӏkTfY8Zv�:^�)&���~5
�H$"��d�L$'�efjX�I�x�FDr�N������C(A��c蝦��7*����̲O�e�L��dgYtj4O�I��)k���[/�7��v$Ϣ������!:� �y�&+R��6���F+-Y�84�/��aN��v�ކ+��`�D���Q#�G�r.A��*Q�«�]��oD�b,������?���O9��'����B�\��w��� +�JR��l2D���O6G����0?�
#�Te�1��0�L�O�@��B���-H��4�,����P{ԯ�"5�t�XהnFWg��`�-��d�m��h����l��Q�� ��aC��@.�M;8�����\L����7���֦��7��G.��Wn��g���w�砇.�褗n�騧��ꬷ���.���n���/���sc0DƎ�7G�d/�
?Rɼ��J��ה�@���JM?�@s`ũG�PB��0�F�&�Hj��C4X:��
�/P�d�G1�*�*��.���@�ΧN��"�{����B���*�HF��2<�:,$T���0�y��"�x'�@	YA�/j1E��wh0\��L������E�1�(�"uI\I���~܍ ��b��D0D��"�"@2��	d���>�욘\$,8��OH\SD�%"砣�!D]�}!C�X�EPqV��!�(��=�/S�<9yDHSP�� ^�a퐋��B�$nk�j�˜e(}t퉜$�w�`�gPqehRȐ�S/�e���jZ3#�	 !eN&�׌�
�!`&6i��F����+�S�D�S�i��!�e6��	5I�-.�	��
d��	f�k�Fh�v�`3�$
H��]�C.u���	�~�3PQC-���|/N�8�<���4NR#��+*���.$���RBH)�~�R#�{�7���v�z
!*QkB$1�s>��3t�iM��`
�X�Jֲ���F�T�
����IN}k�H*׺��xͫ^����H~�k����a�@�Izb�d
(v [�@`��ݰ���ͬf5²�z��b	E�@K�Қ�I��1
O��,
��[��dn# 1j{�^���(owč5��å8����:��Ѝ�t�K��Z���ͮv����z���
�x�K���M�z�������|�K����ͯ~��������L���N����;�����'L�
[��ΰ�7��{�� ��GL����(N��W�����0���gL���8α�w�����@���L�"��HN�����&;��P����L�*[��Xβ����.{��`���L�2���hN�����6����p����L�:��xγ����>��π��M�B�ЈN����F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z�ָε�w��^������M�b���N���M:AZ�0����ci���L�*[� <���3�	`������B�=g ��0�t�DI�u
�@ �ζ�C��|y�
'7�	�y����	�L| ��0���|�,�!p8�������pt��y������8�;.�����- Hd.��<�G���h@����iN�iW|(�@6�-�=�WH�"�3�	m	 �Sy�`�H��qy���2�E��,��S�tN��W~��<��y�`C �av�ߠ�7gc�����J��!�
,P��	H� �~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ!�IDɒ`���ZʜI��͛8s��ɓ����:ƒ׳�ѣH�*]ʴ��d|��H�O�X�j�ʵ�W��,����ٳhӪ]��[�rK��K��ݻL�]�q"C��L����fs�<����ǐ��{�W�
��#k�̹��7 �8��c#8�̺������Ҏ�g���G@D�&���ȓ+\f0�� |B�#0����ʳk��M�!���������{�+8��z�1�˟O��������Ͽ���(�h�&��6��F(�Vh�f��R�Y� �Yy'Ŕ��(���x&��'��(�N�GR{Ir�<�hN��X�!��F��wy���A��j��Bp��4�#�&�-��F�C�<fhr�Cp�I�ʃ#�p%[K>
�����W�䍔�h"�@|�i���� fA3�t�@k�)PBR
��_�0�
�
�\�*P���KC���d�� �y�P>p1BMn�����
m�	�L䝱�����j-�������A�qK@;��,�tͦ�v+-i�1��;�w*��
��B$���B�I�N�	�<�3ј�U����x�3��w| s�	��^cQ,�t�!�����F�H�`�@JQ���l�D������C������з@7
��L��ESd��X�KC*k7�H��1�0yTT��AFdݡġ-4�H���|1T5���@.�,P�Y�@�0�	�*cQ/F���	 E��'��Hq�$��?`�Cm$�P��ڬvAf~*9�D �'+�@�B�tN�9��щ��B�m
���A9(��ގ}�
�N@�c\ݏ��:kt��m�P�yc�F�o��F��!e;�fVyc�N'�Y6��R�*��
�!�XP^:�0�(�!�@��ơ�N�,�Ș|g�e����P�W�y�/{ѓ��R2�$-j�O��j�:��H54�`|�]���"�[`��a�;�1��0a��x`Hvl-��Q���;��!$���h̐�&c�::Ǹ�9� h�
-�F,�'܈�R5�Q� �:�h�%
��
"�i�F&���V�J2DG��^Y{��/�l /�6�a�P4�!���*�34�����8Tثŭ�IZA`�D�6�Pu�D����C���f&(qo$1���
�#�0�
0��I�
��L9��Q�@�r��pF�ʌ�%���gk�#�M쁘�8ȑ�V`�"(C�B0�c�kȩ��^h�p�>7z����ǒ���ԏ����rd,���9JSϴ�b93��|�� �2�o�Ϛ�0~I+����Tr�C	i=oȏ�zNIm�V��$�!EݪX�Jֲ�Ց;�T������p��\T�����8�[mNJ�5'q�+dXtW�u$��TX2���U�ca���2�(kGr5v�G?U<ܑU��#L�EN{���s�,D��I����Sb�kt۔��O!��J?��=�u�+p�h����$��b3�Pb�	�EX�ڋ�J~�"
�Z_f:��f�[�c��k�6I`(1�1C�Ȋ�"F�� F<(�aTd"ѝ,R�:�@ L��BLr�@ b��*2��X����Pj�J*C
 H�E��VT
k�D�,"�Q��2	�@j a�t��U�R !t�f�`�)J�!���@�ދ�
��az�TU �uA�䆸�aA �)�K� H^5���(d"�Y/E�w�����
J���Bv�1L����ƞc������9t<�*H�����@�&S���'X�	Y0&+ :޻1���RC|�b��u�C�Pe@�<�6�5|R�5m�F.&z+ K�@������$�C�`N�
3H��k�(j{�@$�q�q!���9/Ba���1���o�NO^e��h��ofHR�E��H6�c�G`Lgu�2�N䛃����)�N)�ۂ��~A�JUlb\xN�`\�4L��FC�@�<�@+ć/?�3y�7F��(��=�C��,�h���t
a��5TW%����:g�~�!ޙ�ۉ�*�T!�n����OA���'�Ӫ��7��d�U
�M�������F���%s,k��6���ɼ7���L-<�
�v1��Ѓ�"w�T��S��CjK���#���A�!��=����j@bm�?��a�~��i���@5E�o�k�Ĉ�\2R�&�����2+V�6 �6���M��NˣS�df�tM��sS1�
�C�}�7��B~��_�1{�+Q`���R|!��C&��!�c��>�~���� �2���W1BG1��zB!����~/�2!��I'�%s0�3��&C�S#)R��G�#%@���uo"8���V��3��#1a{!����4H����%#΂���L��{�rB�1�U�G����z���W5WE�ѵp��v
a3v����T�v��"[���I���Y�-"��WcW4S��XV����H�؋gqz�qRa

aa
�������_h��U](
��.q"xfŨ�F�L#.�1	��H��(�1&'���L˒�p�q��Q1�wJ�@�iy�02�`4�@11�D�0��	(�
�-��1����� ��$�5,�%�|�RvS�L�#&�u)9�T%u�H��8���4�H�PI��|�Q� 	:��ՓFE���Ը
	�p����Bbi�q{Ȁ0��Wa)��q���?�6��� � e
�A�Bn�(i��T�p;��	IQ�NH/��_�Scv-Ǘ5�4���	]�u�\i�yT�2x����0�!��a�0c+=H�8��1���B�@
q"&#�CY�����{���S��0��	T�[�1\���1Ȝ��}�2r��]���ܙ���噞��Ahѡ����Y�8����y��ě�ٟ���ş:�CY�4��������@X��6"�T eA������g@��ɷWavИ!
�!M �&:޹{3ڟ
z���:zVV�<顃�X�E��z��A:*��Ë���tH�Q+�xV�K�_=*2i5<�o��D�0�5��2-~�ZY�ن�1�R���a
�r�c����Ѥ4�S�%Iڡ�}(�s�	� �FbQ ���\��J�&�@ZAz�F���᪙�aY���ma�5҃����
e�6�Q-��d�a@��}��8R�Ӧ�z�A	I %,r@t0	���:�f
1qF�CfqE��I�`f�U�9�@	 ����i��h��[Q5�e�j�s�k�ʮ��)��=4�&�0�W�8�&�k�|!$��A	�4���
��}g�r�	�JD	�<�
p���paҊ2:8�Vb�J蟭t�KQ�Fj3&�됇���0~0�
�]Re�e�\�a���:;C�	C0:E��Rs&}(., i1jK�*g9����B�ոQ��c�0V�aTM(۩ᮁ���xqK�Z�(K	ҳ�F�c];�u��6[�U׳�P4�� <VP��
�hVp��^���V�z)5�m�2�a&5p�k�����Ccٻ��g2 �,�12G14��5��#��c�#*�
NX���k�3���{`	Q+�Dq�S5q���<y�J�s�j�#!��DF�x�aH(�����s�A/N�G�5&i^0�C6�3���ŧ㒥j��w��4��	�+wK7e�G��WO&3T� �pľ�F�L]�È�WN�Ts1��0�rFl8�_ZWc�;_�.O��;��0H�Z��0S��1&�c��<V*'�!S��,!=<�x�����L�4c��'�^R���e��(0uDKS�z�Uz��!��
�:D
J1�[UWt�T��D.h1KK��s6U�p&6�e#���w2<#k�0��Wɐ���[��{��US�72w�k�����&\h��hjl0&c-	y'po6�Y��a���\ļ�9���@��F��BQ�R���U��[�2q����j2�D�P*j�0�Է!S������wA�]�Α���3e
N�����ȅ,��;~a��R��&��
��m�;�P't����1�6a�$!k��������&3��� �y�~�@��~1^Rχ$�3��
Q�8�6,�-�HE`պIPr�_QX6�<��>�&��g�Z���H�6�Aa�LM�0�8o�f���(փjUcn�Ŗɫ�Qҝ��1�ڀ�}�
;�2P7���n�f�0g��	W��|ӌ���t�����5k�O��R[k�Y��P��� m6�RR�i�i#��m�w�Fm[�QxX�SE��<1�xꍧoW/1D�ܕ�Iڠ���D��lߧ��R��=8��U��X��e�v�T�1&���1� ���K��rvn����^�&~�(��*~�f���+��Õ�6~�R�8�~�1j��@�s_CD.�,�H������[��ZU*�@�0�z�K�
�0~P��-0
�g���_!�Q�R@�y�(K�����)i �@Iv�Q�a
�1	�H��Pǃ���T��}K���!
���#��D�'���>%;���
ܐ
AQ�]����ܣ>o������� ˠ��|�p���
ɰ�P��_���~�,Q
�N �����Qv�~�P�n�oB
�:�����m[�S��k
�^�4�q���֢]�cM!���mHo��i�Y�P!]>���SN�n��°���)=�
���
�q<SA�+ؾ�P(Ǡ�ՐǠ��
���N*(��P�$�p�6�2þ��2�
_�
�0�?ώ�����
�0�ؠ�_.g��S/9:Wp�zQWް�s�~����?��_������Gq���������?��_�����������������?��_����������m�1���O#y�8�-��nS�_!Xp���O%
�XV5R�A�ğ�p>Ϳ!��ӏNv���?!�2ij�������$��/�������?��_�����������A@�@�
D�P�B�
>�Q�D�-dwQ�F�=~R�H�%M�D�R�J��~IbS�L�5m�ęS'�s ��T�P�E�E�pFR�M�>�U*�>S�^ŚU�V�]�~V�X��ȞE�V�گ�ؾ�W�\�u��śW�^�}��X�`…
F�X�bƍk�K���dʕ�&��Y�fΝ=
�OhҥM�F�Z�j֭]���Z����h�Ɲ[�n޽}�\�p�ōG�\�r�͝?�]�t�խ_Ǟ]�v�ݽ^�x�D���'�]���ݿ�_������ǟ_�y+q�/@�d�E2�lÁ�	
���1(/�
2���?1DG$�DOD1EWd�E_�1Fg��Fg��F���!hv�,p	�H��x(t�d�%Y�g�p�7���&����!"�J��\`�M���e V��g�_:�ӠH��w��G7�I�d`��&d����� &<$�E52A	��#a�!@���!n�c"RW-�PQ��T	ҲS]=������`�G�:{%@d�%��w��#x6��Zk��6[m��[o�7\q�%�\s�E7]u�e�]w߅7^y祷^{��7_}�5k_��_n���@����	`�e� �Z�r8�I,rH�~���VQx�<�A��[�G�8\y��
�aN~Qb�Zn�h.�=�:h��&�h��F:i��f�i���:j�����j���:k���k��;l��&�l��F;m��f�m�߆;n�离n���;o���o��<p�'�p�G<q�g�q��<r�'��r�/�<s�7�s�?=t�G'�t�OG=u�Wg�u�_�=v�g��v�o�=w�w�w�>x�'�x�G>�� �y��U>+�����9z�h�@��`,��7��8�y�8���ѧk�4H�� �4�ȏ ğ`�0` �_�R=�%�/��@B�����\�^�*�<�!�QH@�I�>������3���
$Y!��� ��
�2eЀ	��$� �!�� d-$����&�!`��`�*jp 2<��80
�' 
"�1BE��;�	B�=ʯ~�C �"�c+��敐(
����Q!��'�n�
���;P�p��e�b�JY֒��L�.\�<^^�p�mVYH1t�
V�7�A"�G��ɖSYdZ��K?l��t`ӛ"����`���/�H@!�
,P��	H� ~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ!ǽ����@b߹�I��͛8s��ɳ'�u�7ϧѣH�*]ʴ�ӛ�.�Q�� O�j�ʵ�ׯ6�m�w�ٳhӪ]�qGHnN��ʶ�ݻx�[�(Ȣn�
L���7H�≠���Z�=���bȘ3k�̹����6�nY	�:�^ͺ5�c�"���_������wM����
�L�EH���~C�4���ؿV�I4$?��g�O�|O���D?������˟O��������Ͽ���(�h�&��6��F(�Vh�f��'^� �(�$�h�(zu�!����0��F4�O�8��(:$�E����⎎H�W�YRtIF)%DN��ŔX��ύ�f�D��O�d�8\�!T�R�#�zl��ahr}�<�ȩ��!�m|*�@hj(M�4����H���j\� �+�61`;I�U�Q\������ J	9���9�.��
�h$�.���B�b�
L2�΃p���R��1l�	D�u	EQ�=w�������"p��
��@p��/\B@9�,�PQ��TgF���a~�3����d����T��_�yt�Ev`X��<pl��c�#
ɚm 	��h^h�c+2��3�G�V�s�l�G�8-��Fs�I�o�P7�E�Tox*����@�ؤIAW-vZAvT�@Q���8�D�6�@JҘc�m\=BPm�$7Hy�m��w�)K�C�]�P5�n�`�ȳt?��[�Bo{���4O�;�L�ꬷ���.���~���G�s��:��������ߙ��'��F�S���S
����WO3}�7���xfۻ.x���G
��T�"5�^����Ȃ�;U1�0v
V�t����I�7�()��
r�Y|�|4�6�A��L�I�^E�!�c{�H#��ԔD�=Q�A4���P?�K2L(�L�c��C �A���� H��N���D,��;�&��ON�OBpX�w4�K
���^Ș�x��`T�<�2.��2�$�bP`��C|�3�CpTD�3�HB�����鞎��?�Q#�$g���'�dVFG�EE.%7#a��$2%c���;F���2�ZGٲ�P"����ad��̓�1��,#Ȣ�C��܌LdA�%m�1G0�yX2�Ќ��ci����Axc�n��E��8�H��S#�'�Q�c�S��<�I�z���.�	����
���<����f�AP	C�p�91�K���I�FC�L�L�IA�<޹ђ�T)r<��Q1�vs�i�KgJSW�A�5ͩN��ϝ��@
�P��;���H�L��Ԧ��NKu�T�����eL)V��ծz53W�*��Q�����&Z��V
傤mEJ/94e�$pGY�*|A!V�DT��a� ��h@�0d�Q���Q�£�C&B�5��=JOْ��Lq��O�Zd�a�@�A1�|A�%�2��X�i�'�-F���X1�q�o�G(#�#1lȔ�"�<�e�`q�Y�*���!.#٤�c� Y�@���z�!x�Hy�4����GI����� �/~�O��U5�|�@^��$�E��9��D8)($��<��$a vȂ�‰�d9��B�0①#�u�A`��vtS1C��XW��Rʅ
�����"�Q�PP��E�K����!���d�db
V�H�iV�}�8�H�|p�v�#�ʮ�C��dy
�L��1�t^�/G����ЈN����F;�ѐ���'M�J[�Ҙδ�7��N{��z�F��)�Y!��}�@�D��\�}H�="�WW(?������:E��m�2.�#vF��?��#�x�3��l�P���5���n�����AU�Vt܆�F���Pt�i�C�\�1w_hˆJ3�1�d��Q��j@գ���T\�;�����'N�[���LL�1��{�� ��GN��(�O��W���0���gNsC	z�n�y��f�,�@G�����G
�ʈ�� W3]B��r��2�4!�Oό<��d}>��_ĆӀ#c/Oh>�2�d/�uu
���S�vϻ��������O�����	��\��w��CB����R�ϼ�7���'���GO�қ�M%����ջz�|��g�R3�:����w�������O�����g:��B��;����9�Ϧ���?�	vQ�<]� ������L�!�0ʯ��-`���O�����Ͽ���E�~��0�~hcPX�J�5� �@~�1\��{
���38�@2��0�
8p�;��VL�p��	)&o@~򐂪g��2�P@>�@�!@PL G�G�k6xpA��~�FǠ� Q!R(�Ѕ���q�P\h��&�E�<D�1���s#6Xg�
1^v��z��|؇~�����8��X��x�����������׈h���c5h�� K��8�R9�1�
!A�+�M�l!
�8W1{�r�
ŲT��X�L���	�(�3!}�X��x�Ș�ʸ��،�����8��X��x�ؘ�ڸ��؍�����8��X��x�蘎긎�؎����8��X��x��������؏����9�Y�y���
��ِ���9�Y�y�����)V@��Oad@�u�}') p�0 -��8)`&�>�;y�߈��@4y ���`6	�`��8)2i�0�a�8	�by�7y�!I��x�&��gy�G�Pه�qI6�/��y�����&� ��"y���/	�|�	������(�^�� �ᨖi��Aw�m��R�x����X�g���!�
,3,��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s�]g���M����i~Ɠ{榼y�:ΣK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O���y��;m�����(�h�&��6��F(�Vh�f�+v�����
���;蘨�@���0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�Xf�<�i��`�)�d��`Ę�j���p�)�t�i�q���C��'u��2P�6�g��&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,�x~�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧��Ap��4���N�����ű �H��?�д�>0��	��.4&hp�L@,�	���@�C0{��!0�	&/�0@{��Ӏ>�/~��?��As_�
`��C�Ђ�:��!�h�<�E#�g!�
,5-��	$��y*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�T(k�ɐ	�!�����0cʜI��͛8s����S"�@�C��S��H�*]ʴ�Ӥ��"`�i͕V�j�ʵ�כ�RB�
��*�hӪ]�6+���K��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�0?~�W�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�2���<�(Q	�Ā��
���H�s�QH6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�S��u�|��矀*蠄"gD0����6�裐F*餔Vj饘f�吚�w�.���{��jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧��ꬷ���.���n������/����� �<�7��;���W��4 �@�w����/~��o~��k?���|���~hp���o=�p�2`���=��&`��_��<��^�.�>�	 &0�7B�%�#�` 4
<�^ �p�L ���L��^
��l�"F!�7A�p	�ܷ�z��	.ȿ��:��FB0��%@-h��茉HȾ#N$|#�^�fx�ί�8��R(�V��c_=��g��F�H�JZ�j�Ӡ"Iɬ)�1L��ɬ�<e���V��tۢ�����C����fI�ZJ$ !�
,5-��	$@�~*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��v�h�N�ɗ0cʜI��͛8s��(�����J��ѣH�*]
�ӧP�J�J�*Tu��j�ʵ�ׯ\�K��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ�����ƒlj+_μ���У�D)����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,��d��p���5�<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�Z�H��s�l���R'~2�̜����|��矀*蠄j衈—\��6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧��ꬷ���w��>���~{�������α�t���E+O�<0=H_4��3 �k@�P>�h�@���20�`��;O4�0�;`�	4��Yy��0?�m/!����@ ���MF=�a���C�
��|h�	��
j$�P����c�+a������$?���x��!�
,:,��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��_C�I��ɓ(S�\ɲ�EW.cʜI��͛8s�l��"�@�
J��ѣwXE�
ҧP�J�J5j�~�U�ʵ�ׯ`#�	K��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+(o���~j�{N7�vճ놧�;lm�ï�V#�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,�������c�<XѨ�<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)�d&7�<e���l�9asn�w�@��9�;9ک�|��矀*蠄j�pp�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧����{����^;���n��|�G@ �ܼ@����'/t�0�&��=�	�`B��P{�����/��;/�������?�
�!P� �X� & ��n��O�������O0�0<��f�C8B�
�1Z���%/~�>�B�y@��
��B��Ox�+I@!�
,:,��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��]C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸so�3D��ߠQ�N<4���1sK�|r��УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(���J�f��@#��B?��:!f8�<%���,���0�(�4�h�8��<���@)�Di�H&��L6��PF)唆�3�Xf��\v���%A��YI�h���l���p�)��Cgr��2�w�v\��*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w���:��~駛��ꪷ���	 �@���P;̸�.����N�� C&��@�2P����h`���z.�������^��KO����*?`B��
@f��G�ow����;�1@�	`�$�!�f��h�����t�?	�lv�˝Ap׻���4�Yg!�
,5-��	$��y*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�T(k�I�	�!�����0cʜI��͛8s����S"�@	�C��S��H�*]ʴ�Ӥ��"`�)͕V�j�ʵ�כ�RB����*�hӪ]�6+���K��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N�-?~�W�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h����<�Q	�Ā��	���D�s�QH6��PF)�TVi�Xf��\v��`�)�d�i�h���l���p�)�t�i�H��u�|��矀*蠄gD0�
���6�裐F*餔Vj饘f�䐚�w�.�ԩ{��jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧��ꬷ���.���n������/����� �<�7?��;���W��30��ϋ�|@@�_��h/>���>�o���k=&hp�h�� � �h�8�ǀ�p}V�����@!� �� |�4x5�i@�����	�S_<���O|�3�@j���0��ѯ~dH��%2% !�
,5-���	$@�~*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�ɱ��0ڤG��˗0cʜI��͛8�sG�&y9�
J��ѣH�&좴�ӧP�J�JR]'�X�j�ʵ��y^ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��͛v?���N����ȓ�6�����УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(b��3bu�8��u�0�(�4�h�8��<���@)�Di�H&��L6��PF)�TVi�c-^	<�h��`�)fn̍���0c�u���p�)�t�i�x����矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn9�@��@�o�yB��|<���>����1��@$`�	x��:h��@d������؎��W/PȠA��������g�9�{~z��cL;�&�h�Ŵ'�� �@�>�.z��!�
,:,��	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��_C�I��ɓ(S�\ɲ%EW.cʜI��͛8s�l��"�@�
J��ѣwXE�
ҧP�J�J�i�~�U�ʵ�ׯ`�	K��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓc����n?5�9���E;��u�������W��	O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��F(�Vh�f��v�� �(�$�h�(���,���}�\��o��%V3��<���@)�Di�H&��L6��PF)�TVi�Xf��\v��`�)���3�h���lF�\���#�wp��u��|��矀*蠄�ۛ�&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�'���7���G,��Wl��g���w��� �,��$�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg���\w��`�-��d�m��h����l���p�-��t�m��x��|���߀.��n��'���7��G.��Wn��g���w�砇.�褗n�騧���
0����n{�Ӯ���>;Ʈ$��@��?��z�A?@ȠA��0��_���200�@��=?��P�>��=�������g<�=��˟����1��ϸg$ &���~<�eO`����.�dI@!�
,P��	H� �~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ!�IDɒ`���ZʜI��͛8s��ɓ����:ƒ׳�ѣH�*]ʴ��d|`�өիX�j�ʕ�1��cӵ�ٳhӪŘ#����
�XK��ݻx���6c_�?&䑷��È�m;��ǐ#K�{���9O�̹�g��	sz"��)\wlg�c˞M�♙v4>�����M��qģe&��OAG�U�4������J��� ��B�������K��������˟O��������Ͽ���(�h�&��6��F(�Vh�
���F�Iݑ��$���v$u�(����h�7�AB�0昣9q��]Iq��χ���GGꨤ���"R�#)��A�ҢCY@�����(�b��lA@>d6dN?��͏i��.�ŋA**�
�|�X�6�3�:�h�Di�M���Ӑ8�C�9�\A[pc�!���DS�)*�(�2	���@�2�#
�����(�U7	��:��C;����D�ȳ��uJ�67�
�(�ť�AW���ީJ�:�
�-3�D��yή;p	Su�ԮA�*$�D�^��
B��<a��Ѿ2�p�����P��o��R��;�(l�x������<�P��#„V_�P�&�Lb��'4K|��]i���Ґ��y��8�l'N�!�|��#M@i� �,�|! 0.�"�
!B��
i�����%�c�,Jc��`eE��'�(��f/t�#�M�:%$�AQ]���wy�D�
��p��
�j�92��FS�B+�9{�Ç����vi�a�̚�9~$�5C�X�ўl��)}i���[E��bU�ў�@P7�J�������r��5����1��3d��WF��Y�7�N��$��H�sl1d�q�%�8~	4���
't�fH��|
�P#sq�G���$g+x�
�ҩ@?d4���f}�o��׉0?�8C��>��!$� �TC3Ŋ�_RH��Ck��ǿ~�-.�Ld�����	�"83#�ޡ�ky�]������5��?�#{��C����"R��$�%��
��Yp����<�li�0E&Gٟ�	�8B�@���i��G(('(�钤��g�b�t(��q�nх�`�!�:�����5B]Z=�(�@�pLL�U9$A���k��@�IG�@�m ���-B�|l� ]�<`���+�<�@�3�h�CY��N�D&���)��(��>�x��A.�)Eʤc��#,1J�ψ|%M)�ĩ*�t�
A��R��;�A�)�x"���@
�P��H���HM�R��ԣR��PU���ȑ#W��O[�ŬƔ�*Ѷ��ȅ"�c���,�-�hy�5$Ir<��v����1~(aYdoB�D�Z�ZD<�iD�VȜ�&���]2p�&	d
L�I�Ց�"#m�+�5l���R�Q�8�"��r�����
aE�;y�ǝћ�h;�"M �@�X��:d�mdA��^RT ���2�Z�L!z���"��� ��.�09V�
QP�ܖ�A�A�&��HH&S#�W ���F�ːvT�"C�*�7��
�(\ެ,"���/
B�}�$#�,�Fy�a )�,�E���QCi�]�h#!I�$��_�;&��+��I!��2RTD
u ��~6��%�;����h�P�\K��d��"� �}�"�y!�H.�q�+UAk��B���W���B&@0K:��B.faX>*�0?,I��
d
@&�"8���E��`3}HA؈�YQWF.l�$d
�I�3�
�&H@��5���2:�]/dN�G�@d)kd���"4o���$��1�AQ�#��F��]��A
9qA��f�E
���	���UT��C²`��W����U��n�F�9�B�c;0mY���8�
̖
�c����z*�o<	d_Wک���� F��f��N�(,h
�@ڱG]L�;7��
rH�?�hآnK���+�����Jf���'�x�	�ܑ�N��;�2)�v��
:�[��0��v��'hS7�fqҼDw׏Y�su��s�${���5��L# �0*�y��>��4^aq��c
��A&��
T#����ҧ�L�%��rO҃��GK�;
'9$&>"H����x�H�nod@��7��Gt�PDCe�ʾ
!�y����/K=�!fA� �8`Ҏ��	
��WM�'4��XO�b�I2����Po�Es�G�P�`�{a
���ЁxF1�r^�rsHb�q)�23�i!J;d�	�w��223R`�}w%��V��@a/�@�0:1�/�((��"�B�e���V�!3�b4&8�W�Hf�H�t��Y8�?����$���1I�lQ
�T�0-�Iq�$v��i��te��Y��A5	��D�`���� ������p�

!
�
&(+����Q%o(u�����4��Z�@��#�-qS
�&a��2Mh��rq*-�
�F�؋?B^u+2�,�Q�p$
�C�hQ/��,�au��%v�4G#�u���C������V��)aAb�uy��
����<�����A
�8ЈK;!	��wF�C%��E�� {pL�N�����3u)$
I
a|��} �T��n������4.V�m�g��A�0�;�HQ�qn�q���{@:~A� n�Q;1v~!`iQiNZ��;߄	���N�4��A.p���
q	@�ym�G�@�09G�9��@��H�A>�0�E�Z�ix������C%y��`/(8o��0��0�XQ�(��G6t�P64�2��:�F�h�h��"Sӎ'��ƹ��~�9�"1�a�ԙ�ڹ�YaPɝ��@�H�!р�y�y���#ȷ�����9������Y�`l�Y"s�*�zV����G|��
��RОZ��Z�;ٌڡ��taj]��1�) �!� ��9�u��$c+�1�Bz:�S�`\��0۸7ֹ�ץ{EzV'Y�3�TZ%���'�}뒣'���U�s
֥FZ����Uu�_��c:ޥ+'u�l�l^�I�>�?�"�E��Z�f�����?��9L�	o��k!4F�_�c簋��*�8QjP�ph �[��((�h
�u��������’$��9Vz@c�	��Q��ء����ͪ�0eYFb@	G�,d2�x8��	CvĬ��1U�iK�*�j 5u � i��	#ŧBzkB����Kv4�4YVE�`��_����V@��A�
Q�l�Jb��"�eAd P�`��]��~KzP�v��p`��^�灏�^������*E�	x�t4��p+�/�Er�v� �����,�uWn4������(Ґb1��
�_z�V�_���"ao<ˢ���()v����Ar]KF@����9��bଫ����5��+�E��a��P�/����p�u��ZC?�p`��4�9%G��<F�4RA�B�
�S�v"A����%1�
�`�s��,b�gA�*�/�j���_�:	Ulr���tq%�SSz�db�C��$�(D����(��Y@D�~5,ċ�O(��.,%S�J���7��z�>'�8�{��/��L�y1G�̹�(K'F�F�q"�8hZ�������Aܐo1X��
Q�AV��E��"�1�/����=�L�A�&,1~�f<�t%�e�]-b�S���j"3��ʙ���v���F���5�"�PZ�|8"o
A��0���\`��
q�SPo](j}��n�j�=���4���Z��`�Ucl�!A+�u���	�{��q�A�ф������ƪ�k�15 
d��[���L�K��h
������T�]˳�%?��1w���1�ұ��{�8��FzL�vf+�r�`��&,#�2/ķ�0�����,��n�� �ⷋ�ʿV��!^@�S��	1V��6�\��*֦��&�"N[�4�]C@	4�M4�0�a��ZHa��i����c�ڌI�ʪ<k��YV�!_~�Z�Z`���e	q1�J�@dV)\��&�\�F�c�gj�k�F�z��lofV���,~p�'h�c
Ah��Fz�@��]�i4�R�5�4t�:�B	����|G���P�A�i�
e���/�p@��k㨴
�ЫSJ�&mV7ң#̍g�$B��`m�qZO�<؎�1
S'F�/C]�:�*�iT�a���P�����)c<Da.�3
M	Q���yI�V�uw��h1]Y�4�'h�9�ý1L!\m»p����������������.�]���������>���������������**�*��-��
�)�Y.J���|�y����!���fi��a��w⛃��uJ�P�����Ì��D:��	���d�F.Py�3ﰎ��5F��;����-��9ܠ)�@��Q�=,�`I2�n�Aq�	�V8!�&� o��
Т.�@���p>���*
��ދ�H�`
1Q$��
h�	!�f�M^�s�
!��M`
���P��k����	
7�0��iv�N�M��>0oH��L�]	�A��C�2�����%Q�)I�NcP�n����N*��@�����%ǰ
�`g�
*�
s���DՐ����^Z�>��A���n�qB��ơ��
�
ΐ�
�P�2��k�1���q��.O).:�>�3��(���:� :��@�B?�D_�F�?��G��L�7��P�R?�T_�V�X��Z��\�^��`�b?�d_�f�H������.R�C.��5S�t� X�D��w�#��5�wp3��A�ဏ��<�?!�㏏Iv��`��� �2�������ʭhŠ_�Dަ�������������?��_������\��"��z���X%��?���ʿ�̯'����?��_�w���O�������h?��o 	^���������?��_����bd���A@�@�
D�P�B�
>�Q�D�-^ĘQ�F�=~R�H�%M�D�Q]J�-]��S�L�5m�ęS�N�=}��<��8E�T�R�M�~�a��Cwp�@���]�~V,Jd�1V�Z�mݾU(��;a&��śW�^�}��X�`…
F�X�bƍ?�Y�dʕ-_ƜY�fΝ=Z�hҥM�F��0?խ]�	�!4ص�m��n޽q�y�o��7g�oׅr	��"��q��s[IF*�:o��\0��G?�������|���!�@��K�d`�&d������ &�"�4H���0Ý��e�\�!@d�(DdBDQDn:,1�M$h:
o�Ѧy���ꑾ���	���#	⇵��2&x.��J+��2K-��K/�3L1�$�L3�D3M5�d�M7߄3N9礳N;��3O=��O?�4PA%�PCE4�QE��F�1H'�l!��RM���	.M�u��*
�aSU��"�$)�!jy�Z	X�Ӂv�h9V�)}��'	�C�c?m����	6ڦN�hن.�AZm!cg[o�7\q�%�\s�E7]u�e�]w߅7^y祷^{��7_}��_�8`�&�`�F8a�f�a��8b�'��b�/�8c�7�c�?9d�G&�d�OF9e�Wf�e�_�9f�g��f�o�9g�w�g�:h��&�h��F:i��f�i���:j�����j���:k���k��;l��&�l��F;m��f�m�߆;n�离n���;o���o���{�v�Q�p�G�p�g|q�OG�t����/���)-��+�=t�-�ǝ~ly#�Np�sɚ�=v�Cק2pJ�w�t}��:`�?�x�W���gz�	�>w�x��w����>|�E�Ik�G�ݧtG�v�	�{��G1��}�᧾� 0<��|��@�@
����f����{�3 �uP�x݋_��@�0������Ʌ/��,�@&�.`�`0@~����0|��h�0 �+dac$;��0��2���C
h������$��{	8���)6I�[#3>�� ��9|@z8D
/&��L�H�p���������@� F f<c�C/
D;�%d�C^�u��b��G
�����G#&@�Z�#O���0x�	���ϖ���$?rɽ]��@��������	���0�^|��H/����q��Vox
� FS�QA0c2�hC������|:&�2�1�@!��~L��	�5τ9G�H�RV��� ��wA5H@���=���?�^P����Ш��:����0u|'�"QAsT�O�P�P	R˨6p�R��EAg� :/zg5��R�8��xlȨ2ֿP��;�[;�����ɦ&)��VĄq<�W�����<�e�)1v0vu�;��!$ !�
,P��	H� ~�*\Ȱ�Ç�%�H��ŋ3j�ȱ�Ǐ C�I��ɓ!ǽ����@b߹�I��͛8s��ɳ'�u�7ϧѣH�*]ʴ�ӛ�.�4�ӫX�j�ʵ��~Z�xK��ٳhyrs
� մp�ʝK7-ؒEA�˷�߿��� �6��È+>Yx��ǐ#o"p���e�Ma�e%$�L��������^��-�k6�۸s�<3!!}
*��b'ۺ�+_^�L�DC�	�9��س#]W�����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�&��6��uF(�Vh�f�\qv�� �/5q�8,yĎ�,J�
3d#��d�@��F�-���+�4�@�@T$��r$R�������L��E�#�@Wv��@N�t�A���P��B#%�R�.����gF����|F�Y[}*蠄j��Ґ<�6��l90�H�H��~�8��@+by���R\2����&��"�*��RB�,D���2to՚#��y&�A7��P�5�&��%��s�@{2�_����F��1l�	���q	E��mJѤ��θ
�i'DhkW��9���.mL[�F��#�(T�I! �\��/dv�C�3O�a���\T��G�Zd�x�I�t!Wmu튜^:f8�P��Ұ^tF�F���hYǦ�΃�G�R�n�	��ΧPw}a:pN��lܵ3A�w���v|�`�lo�m��T]�%���	C�-�aۀ$O�tKf�͑_����c��.�NC]����T.:n͒��@�l.�84gN�8T�Ж�X7y>�p=��/�rb�P?�d�FL�|]�s�՛�l<�/o}]y>ݑ;�w�Q�{/���o���������/��F�o��‡ߒ���Y�ў��6%��Z\�G@�����hvR�E��fT��a�0	'�Aa�$� H�Ҥ����SYd��Z	�½���''�3�B���e�#s��G��C��� �h��2A�����<�dB
C��6ڷE�$c�Ʉ�@r0��e��
3f�`�VI"������#r$��A����_|�ŝ�p!��*zh�y<-��ȉ!�y�%!�{���3E��
f30Yʋp(��;�(�P����ui�8ȇ�Oy�F0��b�&�$2���f�2&�3���qjm��6MBJdJܦ8i2�w�ɜ�\�&�֏T�12����I�z.�2��=���~�E��d�;J�I��u�&^��#����S<�� Bt�}��F7�O�r� 
�H�D�H`��,)F�1I��m[�;������T؃8�X��. 7��Q�H��6%�:�a͔�����F2�X&5-T]R3��<e��`
kW|)��%beeM'0򌙼,�p�+�N�"t�v�QQE"ͼ2��~
�`KX�յ��M��֪��:vA�b�c�G��.@��*k�����
�hGK���lt3���U�V�D'`$���,U`am��(��Ygx�ْY� s��n}����%�Q����{�P%2	tД 5��r�<�W$�(���5�4��,5�6�/EЁ�+}$��aRl��Y�
	P�ԡ��+vXAۅ0�Y<C�V��
�-H�~L$O�Ȁ3ⱴ"[���$�<�x�W9�l��Z���9oE6%vY�CL��������H�!��dERML�2K)+E���i^��6�I��V��e�L�4I�Hn���63�ȧA�;0le�@��I�Q����k�
��q����-bE	yQ�B �hY#Q�J(Q�"����G���>C2S��F�0O�*R ����	�ě�n��k��:��j�EQVl���E?��#Uo$������w0�G�M�r����N�����v����w`e-�z��η����~�72��g���'�z�@Q�d�5���-q�c����,].k�n�������0�d�����H	�
�IF�e
�v2�dq������B!@��(���E���$��`���ǠF�	���CmU�4������aO��������p����N����uϻ��������O����O����;��<�l�X�!4C�Ǝ�[��1��#�c�R����S���e����]�zȜ�#�L�����>Dl
8�{�t�}�I6�_W#G�̏�H?/��[���Ͼ����{�������O��P�����0d���,$un�������%D;��C������8�"s~��p�
�Co����qex8�x�����؁�� �"8�$(C?V�*���y,���b��0h&��(W@@2�5�*��`0�}��-��N��P�R8�TX�Vx�X(r�Y�0P�]XcP_�L�9� ��Q#\�Q�f���.8�)tPKdH-��s��/�
3��	l&o��@���(�2�P@>Є>�@�!@PL ���n�hǰ`HE(Qq� ��!�(��2X�]r���bb�POC5bb�7Vc�;��X��x�ؘ�ڸ��؍�����8��X��x�%���Ĵ� �;���R���t)J4�R@H�����6-�&
�8�1Ѐ�Hr�
�!4�L	�8���L�	�؏3� 9�$Y�&y�(��*��,ْ.��0�29�4Y�6y�8���:��<ٓ>��@�B9�DY�Fy�H��J��LٔN��P�R9�TY�Vy�X��Z��\ٕ^��`�b9�dY�fy�h��j��lٖn��p�r9�tY�vy�x��zIw�������9��Y��y��I �٘08K��ah1�!�
,3,���	H����*\Ȱ�Ç#J�H��ŋ3j�ȱc�]C�I��ɓ(S�\ɲ�˗0cʜI���~6s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸sf������N����ȓ+_μ��vͣ��'�:J�[V�Νd?x뺋�O��y��ϫ_Ͼ�����˟O��������Ͽ���(�h��ɂ�g�D���ς�A׎7f��v�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di��eR$8!��NvO���3!�V���\v��`�)�dGC����l���p�)�t�i�x��|��矀*蠄j衈&�袌6�裐F*餔Vj饘f�馜v�駠�*ꨤ�jꩨ��ꪬ��꫰�r*무�j뭸�뮼���+��k��&���6���F+��Vk��f���v���+��k�覫������+���k������,�l�M�R@!�
,i-�b�	H����*\Ȱ�Ç#J�H��ŋ3j�PǏ C�I��ɓ(CF��)Qʗ0cʜI��͂��"`�ϟ@�
zҔ<�Ј*]ʴ�S�l�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËnO�����ӫ_Ͼ�����˟O������t��q&�.�M;��7[:�s��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8���!�
,6/�`��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËyO�����ӫ_Ͼ�����˟O��������Ͽ?�y2.��?����x�`m�<(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@�;:!�
,i,�f�	H����*\Ȱ�Ç#J�H��ŋ3j���Ǐ C�I��ɓ(S�t���˗0cʜI�e����ɳ�ϟ@�>�E`6B�*]ʴ�ӈ��	����իX������ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë�O�����ӫ_Ͼ�����˟O��������Ͽ���(�h�I��vRe"�Dp��;J��S!u�l�� �(�$�h�(���,���0�(�4�h�8��<���@)�Di�H&��m��A�>K�&F���Cei�(�d@!�
,6,�f�	H����*\Ȱ�Ç#J�H��ŋ3j�ȱ��]C�I��ɓ(S�\ɲ�˗0cʜI�e��8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����Ë~O�����ӫ_Ͼ�����˟O����e��H ���~��C@;���6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8Z�I�ܔ#e_��<BJ�π�!�
,i-�b�	H����*\Ȱ�Ç#J�H��ŋ3j�PǏ C�I��ɓ(CF��)Qʗ0cʜI��͂��"`�ϟ@�
zҔ<�Ј*]ʴ�S�l�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËnO�����ӫ_Ͼ�����˟O������t��q&�.�M;��7[:�s��6��F(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8���!�
,6/�`��H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ�ϟ@�
J��ѣH�*]ʴ�ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]˶�۷p�ʝK��ݻx���˷�߿�L���È+^̸��ǐ#K�L���˘3k�̹��ϠC�M���ӨS�^ͺ��װc˞M���۸s��ͻ����N����ȓ+_μ���УK�N����سk�ν����ËyO�����ӫ_Ͼ�����˟O��������Ͽ?�y2.��?����x�`m�<(�Vh�f��v�� �(�$�h�(���,���0�(�4�h�8��<���@�;:;admin/assets/images/gutenberg-ms.png000064400000037761151213255330013526 0ustar00�PNG


IHDR�:��Z�sRGB��,	pHYs��?�IDATx���wPT����ڿ�j����6��nm��Vݻ��w�9�	ůy�8fu�9g�iL`$*IR��p8z�%6M7�N?�Խ�N��wN�n��=�����
p)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�P)F���2@a�����ONN>q�Ċ+&O�<p�nݺ�k׮s�ν{�3fLPPО={~����o���,���R0{����k۶m���g�����Fo8�2Z$77�����Ǐ�ҥ�+�lȐ!6l���+((0�qP)�M����oߞ<yr��fJ�v�w�޿���0�w��^L4h�Ν6���@I�7;v�gϞuӤW�^�W��v�ڳg�^�x�������o�>???���ך6m'�p)�[�n��"�۷�;w���߼y��

$k�����W��O��j�5�2�';;�n�=|��Y�#�#�ӱc�Zg����yi�X)������߽{w�sb.\����Ʃ��_�>v�؀�[k۶�ҥK�ּ��,����o�v>?�w���"q�%�"""���СCPPP^^�7���2\���5w�\�#(�7o���o�-GGG�������t�E�pUhh���W�ZՒ�1�DFF:�73j�(�p)�%6��S�Nzjz�.�m��|���]�R�K����kW�z��I�gl�򙙙�����e���)))��vVF�p�رc�Ș2e�+W9w�\s�r���i�v��]�|�e[
��HM����OdϞ=ϟ?�ʵ�H����q����
nن�>R@�BBB�9sf���s#e�Ν;�O����l���>R@^�~=a�=/�n����K�۷ow��Y�V�޽cbb��p>��Є��ā��ܼy��+��2			'Nt���&R@���z�衵E׮]�>}Z��$A|��_�S���A��s��f[�d�~EW^����2���u�����e�k�L������i�&�2�ׯ����6R@�߿��|iРAIII�^�S)#v�ء_fŊ�|p�G�h�Ç۷o����뽘�R���������P/?>j#e4�ѣG�K����W��֬Y��K��M�:�M��o߮]�V�֖-[������Є���޽{kaѩS')���+���Ӄ���+�:u��
�HM�����s�-�K��ϟ4ȍr�HMx��ݴi��8yŽ�	�O�i�S�!e4�ĉz��9��w�u#e����Tf�ԩR-�vG�hZnnn�.]���С�������q~ga�}���m8�#e�d��za���ϕ�(�F�<xP���'�h)�%���m��r`�ݻw��egg7y��w��'��������&�2\"U1r�H�3�=*((������N�:�]�v��w��Y��S7��H��~���Q�sDD�GnY:)$$���ƍ=r�,�����u��9ǜ9s\y�qyyy�O��С�~�ݺuKNN��6�<R@3�l���@�2dHK�	���
		џW}���x�����2���ӧ�'�h/5�{��+�i�%11qʔ)�7ձc�'Nxc�X)�y


����� ݻw�?��rrr��������؃:�y�=��q�F7��/#e�#&&�o߾m�$-p��ż������ѣ��к�gϞ�c4)�M���AAAm۶�%�;w�8q�e�6mڴcǎ�[����͙3��a]�޽9?�{H���˻z��Q��
WH�lذ!++��@U������^�r�aÜ_�Ԥ.]�̚5�ʕ+-97_F�h������'''�9s&88x�ȑ=z�7k:u�4t�ЩS��ݻ722��۷�n��@=��&��.������ٲe�ҥK�̙#�2cƌ�Y��R0��ٮ܎я�H�47Yd�
���2�o1:B���/0��fٔ1zw
���2{��)c�����=��@��Q)e��>���B�ff���N�����i�^q��_$�]�1]�������"����O0�j3Q�x�+n���<�0�a�����j���)��/��?!�ey�W�c��2՛�Ȕ�`S1:W���/`M��1)C���I����aF�+P%hH��,o�"_�F����͛�љ�rԚM�]Ѫ)㥂1�'P���H��y��u���܌���l����|�Oݝ�_6�
��4�Y��2������<Ro�xSC����܌��T[�تk&W+�7�Gi�=Z������<4���2����|�<��|M��h�S��dgg�g�h�MFV�'��F�5T�ղ1O�x=eZ1�
�Uͪ�Z�s��-+-3[+��E%��|�[���|z©�i4no��_<@U�j3Ԍ�)Ӓ�1��0���o\�E�de�٪;&=��tLU�NJ�ʜ�yZ�dڲ�2z͸r��xPF�3�^�x�4��2-9�‚�ƾ�*Wz•����ʴ��m�����L���5�Y}p��AӚ�XX��%�g����Ls#��Z�%����뒜���xLZ�k�x�3{YyF�����ΨS3�7����i�vl�[)�F�47b\�n�p�
���Uш�Z�ddfj��H���?֧�ܑ�S]3��9�36[#5���H�bZ7�
Cj�+)�Ո�Z�5���u�G���1��o���:㬰�TZ��x2�222�ډ�Z��Z��F�54�i<4ިϧ�G:�łq���}7�;r]#��ǓJ����?:�������|(J��LSVͱ�?�k��gc�
P��e�b�^3��2.vL����@quw���&��;�2� "���Y��J���UUU�j���gʍdf��ћ��ix[����Soִ�f<N��tL�vq%P�gp�d��#�!��`LZzj��Ǹ�1zͼ��f3�iշ�4�5�..DOݲ1O��2��·^^~YD�E��0[3d1���D�#�����y�����xL��]��QQ��uޫ����4�M�q���Hÿ�cи��5�����d�n�f�K�:�ӯ��e�N�ʭ=��Z��0L�L������8��j�l����;�o�֝V��_�񙩻��]�e�~���a
���Lˏ�H�g��[�1��q<�YY�C{A�0
�,��<�fZ;e�=?F{R)''GK������1�7�z�&���?�a\Y����%���_
��y3j��+#���U�Uh��ҕ/VK����d��eZkY���q�,`Rƽ������fgggf�2���2�d�­=ͤ�Tۨ�1&e��9F;$S����o�E�`R�R��w�hoխ���-g�OW��,��V�^[5�� e0!-ed��%[�I���=�ɚ�H�x e�>$����g�j�n�����%[n�9����u̴4eZ�1��25��%355�����%[nY�k�.cH��2���i'�|J�R���2��,��o�g͔i�c�<�7�իTR��SF�lY���u�f�H�f�!ePEC)��3F�L��]�u��s��l6R���2�/b��2�5��瘼�2�?�T+eRR^i�h��������:%�U�)c�sLN�fu��2���5o*��B�`b�)#�,߲�k)�šQ/e�|���)��՛2�o�v���R�޳d�C2_�L�+Ε��>�L�,��)S�L�g̘7e�<��K�[�~N��`RNGe�SF�_W�cj��_cR���.i)��?^ZO0`j�O0i��@{�_=ey���)��!R���2M��Bʼ��9el�&W'elz�4�9&3���'�8����WK��dR��SF�l=e���q�9&/�.㕔�{�LC�djR&;##����j��,߲��R��O�!e�w�2���͖%_���4R3sNY�e��E��)��2�
q1e\<]��)���y�YM��:�L
)�i9�L�S���)���z�EL��2�>��~sH�Po��R�P��}�ɼ)��%�]��2II�楧�,ٵR���j�IS�e�IO�h�yk�8��~}����r1�0��#�,g������ճV����ܔ���2F�LNNk�L�ǏW����J�W{��aW�0�Xfdi�N��*/-�
����2�O�C2��2E��%�s��^"�a����2'��,y�XIO�z_��)��i��ūW�^MIT���Cq���1�0�WG;Y�ql�9ed��[q_N�׭�2W��j��7c�|6������aFّ�L�3YԜ�8Y�d��b�hʼ&ejR&�[)�V��N�ܝ�o+qx�	EZ�,d��ɢ&K��J'����Sʤ�d����K���r��|囝_�ӼhM��9׌,|��y�.��2Z�X!e~%v�������+I�z��0Y�i��ϳ��F�4�]�O���d/�̐;����gm%��>f �,s��'˟go_O��%��)���^�p)E��~��1K�N�9}ɓ�ϳ�ߒ���
IW}��}�?{��0�.y�L=)���-_���tR��k͔��[qY�-�2��[K����C��YƦ�V3���s͐2�"e>��!eP)�ݔq�L�g��q�
�N��!e�,�Rƽ�]@ʸ���R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)�{YYI���񩬬l��x)CʸD��¢b�ǧ���`:�)�R�)$e�)Cʸ��a
I�Dʐ2.!e�BR�)�2��KH���`J�)�R�)$e�)Cʸ��a
I�Dʐ2.!e�BR�)�2��KH���`J�)�R�)$e�)Cʸ��a
I�Dʐ2.!e�BR�)�2��KH���`J�)�R�)$e�)Cʸ��a
I�Dʐ2.!e�BR�)�2��KH���`J�)�R�)$e�)Cʸ��a
I�Dʐ2.!e�BR�)�2��KH���`J�)�{Y����SYI�0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a��5S�K)������*��:� ܷN)#˟go��1,e���п�>�h+qx��0Y�d�ӗ<Y�<{���a)��Y��}�w��N�����`���2�/y��y��I�R&���_�ֿ��t�e~Y�g�c��&�����'˟g1,eD�+����_/$?�+�P^�y3��B&˙,j��9�t��y��H#S�jvѿ��=�7c�|6������aFّ�L�3YԜ�8Y�d��bJ��2�K���Cq��i�a����b'K�7�v e�LQ䨔om�c3�0c��eN;Y򼱒�2��ǚc3W����Jw>�a�a,0���'˜�N%e�O]zq����C�d�p)��9�a�푅L�3Y�<�z��H�h.R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHF��29o��f�aƧF�?Ϯ��)�0�0�7��uR���QZV�0�0>5��yv=%e8W��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(���N�dd�$��1n�|���D�X'e<~~��mƍ�/���=��HR�!e���L��n�V���!eR����~�g��7�}�)Ð2|��1��?���_�x�ћ�&R��aH�H�E
F:F�sȚuFo�;HR�!e���O����U��fT<6Cʐ2)��H���?����o�c��Q��O�kfϾj�Lʐ2)���gdj��h#��Ca�/�i=6Cʐ2)�WH��#�2cvPYY�|���"�
����^3��7zc]Eʐ2)�'<~�T^�?����)/w�+>x��~lFF��!eH��`}/]���Վ��b^�2k�n���:?�d��fHR�!eX\Ll���gΙ_�p�{I����v8׌��=��!eR������?����Ӑ�c3�6h�4ɵ�
0)C�0�듚3~�/�66�1���G��c�V+l[�2�C��	�5\����'�̆�!eRFʐ2)
#eH����2�C���HR�!e@a�)Ð2�0R��aHP)c����2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��|BUUUEEEyyyi�������ee�C���
�&R���L���$���	I������y��O�6o�Ose��]�v��S�b��3m�?J������!e�*w8$b·_]�bͰѓ�
�oh��<c���'_�L,�ۍ�p�@ʐ2�5�y���՛��l������m$ed���?yꬅGO�MNI����`��������^�y��Ѕ�!�͒�k�<�./��/���!e�)/w$$%��wx�i(�L��?�ؘI�C�߹������c\�|mШ	}���|,���5�Y)C���p8"?[:d��fE�A3l씙N�� �4�Z[Vv��L�t�6{3�1Y)C��QQQq������I����1�;v(.)�	��"�ﰱZ�l�u�gݛ�S�h7�xE�я��HR��ʪ�/���Z;x�v�>��ͻs�aa��}HL�K�������Y�݈������HR�����7o߅��:hD��:F;63{�2���i�
RF9�)XAqI����+��{��Û8/x�Ua���~�h%��rHR�\<x�]�i�.	��"!x��&�eȨ	Sg-:���`����N�1�ɚ;i��;�*++�~��<}q��Y�3��rHR�\H���n?|�t��d�X�i����]{�?u������#&��?�����n�.�G�(<���R��1Rnx�.o銰�~�ϑ��+?����ϣbW����p8
�=9�?���i����n�@�y���2���D���;�_̋�'��Ŀԧ�����(/w�O����w̌�KD<.--}���r�JQUMJh��#�Om���
[~�M󬇔�R���VTT~���ɍ�Ȱ1���_*,*���#�ܼs�n/Ӯ+������[����:��-}���F�X)C�j{�.���
i��dFL۲}�����1q/·_�]��KRJ�'��{X\RRV^�rf�҆N0l���AI)��~��0R�HRP[vNn��u
P4"@BG�iUUU���.�~󶲲�I�Sg/�_�q������
�����L���ST#�M���7����H eH@m�˚�hy���z��	��C_&&WTV�侾x�z��D����3.�:.�,[V��K�2lY����w�¯J��[3�G<ye�Å��<e*k�<)�jHR�\�.r��a�,�5+�8ϒ���/�mR�3�~p��ی�K�yJh��9���~YyyIII����F���J�D<~:m��CGO��PUU���r���9�_˂�]޺�ۇ��(��"?3����Z�2��=|��/�"eZ
)Cʘ/�Fsedf͚�sݣ2��_�q�������]	�Դ��+���]�y�n/sTT<�|R}�Lq��������}�J>���s�.<�Y)#��,kΟ��r̤�c&͈|R;sI�VCʐ2�Bʠ�d�t�Z��Jv�<sA2E�%��g.����n�]��u�?����f/��)///.)y#�R^E��-Y�G�g����G��p�a����-۰"l�^3���Sfk�7eVz���I�VCʐ2�"��4��ҍ~p��oޮۼ��H�v㶌L�t���._��<:V����N�pz����^���쨨�������/+++�l.\��?q�^3��g�HH2����\L��ٽ��ѓdv8*���6m��w�X���v���A�eR�Ր2�����??}~ؘ@�9�D�Ľ}����z����%w���?u~��Y����7nyȺW��r����WnĿH��/��l۹���~���E�mY9F?\x��)s��#�k��?�~?b�#F8��C�m)w8���2���!e����̌��^��o�;o��m�����n�܅��6o�(��L�1_¥�����e��{7��ky��a������
z!
1~����MF?\x�+)c/+�:{�s���2���qu���;l�~�)�jHRP[UU��f����W�4"`��x�������`[?�����˟�J�~���3��<[�U*P]�)�Ç���r���a���k��$eZ
)C��+**ޱ��^A�Y�>�3ǭ�Y�`jR�Ր2���8����0�gUVVޏx<}�b/u�p�ɧΆ���F?Px^ݔ�f�O�=~��=��yK�Y�<���hy�)c.��ӱ�g�
J-�����]�<)���^Q7e�R^
=�%��Z��Wc��2����2pOUUUjZƬ��O���d�i�I�S7eJK�+�6x�c��My�話���HR�\H���pܼ}7pzP#��6w��'�?|<��N����)#���>!�?����?{apRJj���	Dʐ2�¹2h�wy�{;i�Gjf���W�IM�p|~�XO�)���LBRJl�Hq/��s�z\>��!eK��/8z�l���-<of丩�C׿LL�x��5�2P)C����������[�|��	n���0uΎ�dOXQQa��w�2@ʐ2�UVV�LHZ�~뤟�~xF�g��IK��ݸ}�7�����.��i���|)C��UXT��y��m���]<x�F"f��x�I3B�n>~���w<��;f-���e�~@���!e˒")++OM��^����n�>o�
��Ӈ��8d����N��hE膽�]�|�EB҇�B:Ƨ�����sH��2��ǻ���WiO�E?�x|�f"?�����k��Q0����Rv��^�"lapH����HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2TU���4r]�l�/�2���I���d�P\\�]���49�͖UQQ��feg�ަ����
�	)C�4���������TTXm��5>����/�v{#����'O=y*;��_�����_���ٰi���]{�]�qKvn�Y#[�2d���W=��Ѷ��;S�Ϛ=oaZzFe�]F<Z�dفCG$���`̭��n�?4������?#-Eʐ2M e�:�K����U��t��{����1�
]L�g����<|ԃ����f݋쥤*��c��+��9!k��;�kϾ���nש{�.=;u�=qʴ�'��)��7zܠa#�~O�N�:}��a���z���x~�_�һ����>|���-�R��Cʐ2�G�xu��2%%%A���/o߹��G�zEbBv)S���_}#q�����ܙJ[N��.�4w�T=޾K�v���[����#]���CF�ءˈ1�>{�eJݔ�}�c'Ξ������O�!et��ɇ�!e�����X8e$S~�9'==��e$\.�_�ң�\����P(w8:%���]{�]�FvG�^@�(�)�[+8�NdG�����:r,��{
�c�x�0k���!d�:��ꦌ|��n/++��1��6�PM�)#L.��y��m�rI3#eL>�)c}��WǪ)#����g�A7nݮ������m����o�u��2����N�y���
�����ۏ��}��]z̚��ރ���I�+��E.�����y�?y����P/���GO�Nnj�����y��N�9'����윏��LqII�lPz�T���G�("����L�����ޔ�),,�[�
�x�eB�<R�'��l�,��ȵd������g�=F eL>�)c}��WǪ)�]��������v�W�I�Ժ�ÈG򷃆��ګ_��}�SFV��̝��M���������a�V�G�Ai�������������'�S�����G�F���kG�:u�q˯�1�Z�Ԥ����7!1)�Vf���ʾN�pee��P7e�>�6�?p�t�iW)w8�<}�v�<���}�f��	��8|�x����~���[z����}W��Z���H=~��d��hi��Qc9�q�]z�v��e7��W+ eL>�)c}��WǪ)#k�����w`\�����6����?�ܽ/𧙲��)#�r���.=���-޽���Ӿ�����?�x�RnG�?�N�Z�d����qw��w�BxBb�TNQQі_w�о��ǖm;���	�?}ۦ�O3��>�cM�ddf�͏��-�s���::��n�<~�t��&N�݈v���X��@I�IS���{�#�֬�(��3`�m;�)#7��yԈ1�k�I6^zKZg������I՝�xI��e-\Ҧc�n���4l��-{�;-*R�eP��ɇ�!e�����X5e���{!�����߷;{���,)�R�͚+s����9������P�e��-�#*-��.��#ƌ�֫�LYY�,�%%��Μ�Խ��+VI����j'˿q)��s��o埳�MVv��s:��ӻ��ظxm���w���Cױ��+C����cd�'7�5M�̇��}K�1�֝�e�XXT���!�ѡKϿ��;=ed)�ծs��S�I��劋����x��|[s�Z�������ٲ�+ _R�ߜ��1��2����2^���w�=��~"iƜ ��i��'�t��gU�/�S�9w��2r�I�|r�+��vƫ�š��;v�5o����K����U��ovvNq�گ�����>u��~��7���i�vjߥ��:w�ڳߠa��v�����s��p�L�	���-�ڳ�CG��4�k�>k�_����2ϞG�;a�W�ݐKjM6/&6�����F��~��2���Z�a��\+|�Z)c�!eH�#e�:N���ȿ����t���sځه,_*�p��{Y�s���n����e��u=))YɎN�z5V�yj���+�$S$�$h^���x� ��ӌ?����/;_L.w���7I�|צ�߾k+�8uFTtlC/Ʈ�2#I���4%��c�͐����ܑ��7�!L�:]����!�#u�ڍ��S�����w�U�2&R���>Rƫc픑�b��.=��_�TvR��?���5oAzzFEe�s�/[�Z;V��C�����|R�"5=];�So�H���m޺}���K�~���w���v��_�~!�R�M�^�\\\,{�G���صG��ݢ��YYY]H���/���MJN�u�'O��֫��2r/�Μmӡ�S�~���<�N�z������s���RF���^�&�.R��Cʐ2�G�xu��2�
�i�1������}��Öm;����_w�v��2e$)�W������iƖm��ܳ��>z�]^~C)#�O��7q�W_�й{�!~���ݽ���{G��2U���r{Yٞ�h�E("��(K�)s�Bx�}�-\���\�֎�<ݵg�Z)3x��5k7�}h��쏍�����2CG\�~Ëߤ�Eʘ|HR�H���SFeu�ڞ��ڳ�yT�P�1�F�?y��cM(8�LEE�M[�k�q���Y���%%�����ꔩ	�)}���+׮��߿3~��!;;�ÇB�RFf朠Ez���vɔ3�.�LH��岵���L�<MjFn�)������&�{��F�.k�m���	�7ow��w��yϞG�}h2�p��Cʐ2�G�xu,�2�O(���^
&t�zY݃W����^��)#�9!�w��Rq�/�2�?H�ȍD���ֆ_�ڵW?i�_i�����%Y��
���.,�G�q��G��S���lo׹���5�އW.,#!�p�a�GR&9�Ղ�?�����;���
�=��Ӝ_�$�!���������N�y��N?�2�Cʐ2�G�xu|!e�_\H��o~h߶c7	��7oiG ꦌ�|��_���f��U�i�v��ǘظ�!�#;w�����
.5s��u����ԅ�˒,�&L���>�SR�*d�߿k������{���t��g��i���xKR<���i朿�����\;WF��Бcm:v�;p��k7d�XT\,;�m;v�о�s�Ⱦp��ߵ�(I��ɇ��#F��9|��-	���GR�1bHR�H��/���˽����v�ٲ[�>_7e�3"�ЦCW	�Qc'HIH%�о��%�L:��-�����?u�l���d����ؾg߁#���@'O�?^O����B�
���CG���O�;���m:�'��8��1f��)��[�eeg��b�TZמ}%S�~����[[�le�~��9�'s�em;�&���K>�c�^r���s�jR�i�!eH�#e�:�K����U���{x���L�m���}9t丞#�e+VKg<�xT��h��/e�4x��E��]%��[�:�yTtQ��x+�t���y���3`఑�Μ����q��Y�*�R�W���x)tͺ�]z\�yK���=�~�5z�	��u���֫�lO��+�[��N�=oB�O���fG��J-�	Z��Íl�lۦ�ۤx�u�.w-iu�ȱk�oN�2m�_�_J ���y���
9�C��m:v�ң��A��\�_d.?$l�܅ēW�M���1��2����2^�L�н�V()-�?YQQ!��g�#k�f�f�*))u>g���<�SSӢccc�_��g�_��n�d��*5Uv\����!{�Ĥdi������dG�����raI.��蘻�ܾs���g/e��U���l�<�%�P�ο�[�Mn<#��B��JK���eG*w]�탋KJd��eLl\Rr��M����z..q��oF��ɇ�!e�����X/e<EVwɅ��ʺ���u��Ю������J�r��������te���1��2����2^R�Gʘ|HR�H�)�#eL>�)c}��W����2&R������	*/���-_Vsbcޱ�^��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)p��7o��8�������!e����w��>C��7��2���8y���v�7�Aʘ)CʘH~��U�l�9�����c�O�Ŀl�����X)cB�)cG������i�J���f�B�k�>r;F?D�#eL��!e�"/�`E��=B򫴏�\��ɘ��%ݾ
 )ӏ�1R��1����GN��qS
���"e�
�N�7��2&Dʐ2&Rs��&Ε�H��9~����
�E�)c.��	�!e�:b��
����2�`�]R��xʸq��M��	�2�`�ZG�R�tHR�R���1!R��1Ε�{H�RƄHR�D*++O���"l��G%h�����A� eL��!êw�EK�2hq/��2&Cʐ2f����%�Nj��Nj������L����<y��"eL��!e̢�Ծ��Q}��7E~�>�2pM#?'�C^�y�x�Ԛ�W�� �	?<���1!R��1����	���b��)�>�>ɻ��
uI�aco޹���T��>�UZ�ѓ��cY�|UEEE��g�w]���'ϣc�^��Oʘ
)CʘK�ݞ�*M;���.�2{ajZ�굛�e��U����Z�}�n�~�����W�*�qSf���1	R����k}�}Zx��5������k�^E�E����Ͽٴ���V�~�����6�k#I� eH�RJJJ�h+��E��R.����ɳd�V�*����Wy���Ȁ���,Z^QY��Ʋe�	���0iz��WΘ?pD)cB�)Xʵ[�k�M�a��O��}�x.�JUUUݫ�:pD[��'ϔ����ˇ��`,{YYp�:�g@�¥k����y����>v
)c6�)XGyy����w��~���L흊j�O����qSf�U�L��}8y����0VvN��ɳ���a����*/w���Jʘ
)Cʘ��wϙ�e߱��|���w��Nk���{�������{y����	��`����>?�t?�q���|�1R��1�k�~��;y_�L�$p�z���'�{H&%5}���^e������"!I�u����0>���J.#�4dQ)CʘE��!�8�%����\��i[�08�΄?s�ޫܾ����W_��V�~��� ����7��>PQQ����׮��N��\�턎�!e�B��y�A�w���_�f�����i��V���˚�9x)Cʘ��'���e1d̤�.i�|���g[>r;�>:�������쎖��;p�䊰
����o�G������!e��n��T��/o�
�H��E޹�Fo �@ʐ2�z?saܔٵ"f��YGN�5z��R��ԣ��23+�����t�/k7�8u><ÖU�@�)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��HR��2�
#eHFʐ2(��!eP)C��0R��@a�)��̙2��~I�Q�IEND�B`�admin/assets/dist/js/editor-block.js000064400000031344151213255330013436 0ustar00/*! For license information please see editor-block.js.LICENSE.txt */
(()=>{"use strict";var e={251:(e,t,r)=>{var i=r(196),n=60103;if(60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;n=o("react.element"),o("react.fragment")}var s=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,a={key:!0,ref:!0,__self:!0,__source:!0};function c(e,t,r){var i,o={},c=null,d=null;for(i in void 0!==r&&(c=""+r),void 0!==t.key&&(c=""+t.key),void 0!==t.ref&&(d=t.ref),t)l.call(t,i)&&!a.hasOwnProperty(i)&&(o[i]=t[i]);if(e&&e.defaultProps)for(i in t=e.defaultProps)void 0===o[i]&&(o[i]=t[i]);return{$$typeof:n,type:e,key:c,ref:d,props:o,_owner:s.current}}t.jsx=c,t.jsxs=c},893:(e,t,r)=>{e.exports=r(251)},196:e=>{e.exports=window.React}},t={};function r(i){var n=t[i];if(void 0!==n)return n.exports;var o=t[i]={exports:{}};return e[i](o,o.exports,r),o.exports}(()=>{var e=r(893);const t=(0,e.jsx)("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",x:"0px",y:"0px",viewBox:"0 0 255.8 255.8",xmlSpace:"preserve",children:(0,e.jsx)("g",{children:(0,e.jsx)("path",{d:"M127.9,0C57.3,0,0,57.3,0,127.9c0,70.6,57.3,127.9,127.9,127.9c70.6,0,127.9-57.3,127.9-127.9C255.8,57.3,198.5,0,127.9,0z M16.4,177.1l92.5-117.5L124.2,79l-77.3,98.1H16.4z M170.5,177.1l-38.9-49.4l15.5-19.6l54.4,69H170.5z M208.5,177.1L146.9,99 l-61.6,78.2h-31l92.5-117.5l92.5,117.5H208.5z"})})});function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function n(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,(o=n.key,s=void 0,s=function(e,t){if("object"!==i(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!==i(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(o,"string"),"symbol"===i(s)?s:String(s)),n)}var o,s}function o(e,t){return o=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},o(e,t)}function s(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=a(e);if(t){var o=a(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return function(e,t){if(t&&("object"===i(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return l(e)}(this,r)}}function l(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function a(e){return a=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},a(e)}var c=window.wp,d=window.React,u=c.components,p=u.Placeholder,h=u.Spinner,f=c.i18n.__,w=c.apiRequest;const m=function(r){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&o(e,t)}(m,r);var i,a,c,u=s(m);function m(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,m),(t=u.call(this,e)).state={height:200,previewIsLoading:!0,slideshowId:null,html:"",previewErrorMessage:""},t.handleOnLoad=t.handleOnLoad.bind(l(t)),t.setHeight=t.setHeight.bind(l(t)),t.getPreview=t.getPreview.bind(l(t)),t.handleResize=t.handleResize.bind(l(t)),t.iframe=d.createRef(),t}return i=m,(a=[{key:"componentDidMount",value:function(){this.getPreview(),window.addEventListener("resize",this.handleResize),this.props.componentDidMount&&this.props.componentDidMount(this)}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.handleResize),this.props.componentWillUnmount&&this.props.componentWillUnmount()}},{key:"componentDidUpdate",value:function(e){this.props.slideshowId===e.slideshowId&&this.props.refresh===e.refresh||(this.setHeight(200),this.getPreview(),this.iframe.current.contentDocument.location.reload(!0))}},{key:"handleOnLoad",value:function(e){var t=this;this.state.html&&(this.iframe.current.contentDocument.editor_block=this,setTimeout((function(){clearInterval(t.loadInterval),t.setHeight(t.iframe.current.contentDocument.body.clientHeight)}),50),this.setState({previewIsLoading:!1}))}},{key:"handleResize",value:function(e){this.setHeight(this.iframe.current.contentDocument.body.clientHeight)}},{key:"setHeight",value:function(e){this.setState({height:e>200?e:200})}},{key:"getPreview",value:function(){var e=this;try{this.setState({html:"",previewIsLoading:!0,previewErrorMessage:""}),w({path:"/metaslider/v1/slideshow/preview",data:{action:"ms_get_preview",slideshow_id:this.props.slideshowId,override_preview_style:!0}}).then((function(t){e.setState({html:t.data}),e.setHeight(e.iframe.current.contentDocument.body.clientHeight)})).fail((function(t){410===t.status?(e.setState({previewIsLoading:!1,previewErrorMessage:t.responseJSON.data.message}),console.error("MetaSlider (Gutenberg): Slideshow not found:",t)):console.error("MetaSlider (Gutenberg): Could not load the preview:",t)}))}catch(e){console.error("MetaSlider (Gutenberg): A general error occured:",e)}}},{key:"render",value:function(){return(0,e.jsxs)("div",{className:this.props.className+(this.state.previewIsLoading?"":" loading")+" ms-preview",children:[(0,e.jsx)("iframe",{height:this.state.height,srcDoc:this.state.html||"",onLoad:this.handleOnLoad,ref:this.iframe},"preview-iframe"),(0,e.jsx)("div",{className:"ms-preview__trigger"},"trigger"),this.state.previewIsLoading&&(0,e.jsxs)(p,{className:"ms-loader",label:[t," MetaSlider"],children:[(0,e.jsx)(h,{})," ",f("Loading slideshow","ml-slider")]},"ms-loader"),this.state.previewErrorMessage&&(0,e.jsx)(p,{className:"ms-loader",label:[t," MetaSlider"],children:this.state.previewErrorMessage},"ms-preview-empty")]})}}])&&n(i.prototype,a),c&&n(i,c),Object.defineProperty(i,"prototype",{writable:!1}),m}(d.Component);function v(e){return v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function b(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,i)}return r}function g(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?b(Object(r),!0).forEach((function(t){y(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):b(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function y(e,t,r){return(t=function(e){var t=function(e,t){if("object"!==v(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var i=r.call(e,t||"default");if("object"!==v(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===v(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var S=window.wp,j=S.i18n.__,x=S.components.Toolbar,_={normal:{icon:"align-center",title:j("Normal width","ml-slider")},wide:{icon:"align-wide",title:j("Wide width","ml-slider")},full:{icon:"align-full-width",title:j("Full width","ml-slider")}},O=["normal","wide","full"];function P(t){var r=t.value,i=t.onChange,n=t.controls;var o=void 0===n?O:n;return(0,e.jsx)(x,{controls:o.map((function(e){return g(g({},_[e]),{},{isActive:r===e,onClick:(t=e,function(){return i(r===t?void 0:t)})});var t}))})}var E=window.wp,C=E.i18n.__,k=E.components.SelectControl;function I(t){var r=t.props,i=r.attributes.slideshowId,n=r.slideshows;return(0,e.jsx)(k,{label:C("Select a slideshow","ml-slider"),value:i,options:[{label:"-- "+C("Select a slideshow","ml-slider")+" --",value:0}].concat(n.items.map((function(e){return{key:e.id,label:E.htmlEntities.decodeEntities(e.title)+" (#"+e.id+")",value:e.id}}))),onChange:function(e){e=parseInt(e),r.setAttributes({slideshowId:e})}})}var L=window.wp,M=L.i18n.__,R=L.components.Toolbar;function N(t){t.value,t.onChange;var r=t.onClick;return(0,e.jsx)(R,{controls:[{icon:"update",title:M("Update preview","ml-slider"),isActive:!1,onClick:r}]})}const D=window.wp.blockEditor;var T=window.wp,H=T.i18n.__,z=T.element.Fragment,A=T.data.withSelect,W=T.components,B=W.TextControl,U=W.Placeholder,q=W.Spinner,F=W.PanelBody,G=W.BaseControl,$=window.metaslider_block_config||{};const J=A((function(e){return{wideControlsEnabled:e("core/editor")&&"post"===e("core/editor").getCurrentPostType()&&e("core/editor").getEditorSettings().alignWide}}))((function(r){var i=r.slideshows,n=r.className,o=r.isSelected,s=r.wideControlsEnabled,l=void 0!==s&&s,a=r.attributes.slideshowId,c=r.attributes.stretch,d=r.attributes.containerClass,u=i.isLoading,p=i.items.length||!1,h=r.attributes.refreshPreview,f=o&&(0,e.jsxs)(z,{children:[(0,e.jsx)(D.InspectorControls,{children:(0,e.jsxs)(F,{title:H("Slideshow settings","ml-slider"),children:[p&&(0,e.jsx)(I,{props:r}),0!==a&&(0,e.jsx)("a",{href:$.plugin_page+"&id="+a,target:"_blank",className:"ms-edit-current-slideshow",children:H("Edit slideshow","ml-slider")}),l&&(0,e.jsx)(G,{label:H("Slideshow width","ml-slider"),children:(0,e.jsx)(P,{value:c,onChange:function(e){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),50),r.setAttributes({stretch:e})}})})]})},"inspector"),(0,e.jsx)(D.InspectorAdvancedControls,{children:(0,e.jsx)(G,{label:H("Additional CSS Class","ml-slider"),children:(0,e.jsx)(B,{value:d,onChange:function(e){r.setAttributes({containerClass:e})}})})}),(0,e.jsxs)(D.BlockControls,{children:[l&&(0,e.jsx)(P,{label:H("Slideshow width","ml-slider"),value:c,onChange:function(e){setTimeout((function(){window.dispatchEvent(new Event("resize"))}),50),r.setAttributes({stretch:e})}}),0!==a&&(0,e.jsx)(N,{label:H("Refresh preview","ml-slider"),onClick:function(){r.setAttributes({refreshPreview:!h})}},"refresh")]},"controls")]},"inspectorControls");return p||a||!u?p||a||u?[f,!!a&&(0,e.jsx)(m,{className:n,src:$.preview_url+"&slideshow_id="+a,slideshowId:a,isSelected:o,refresh:h},"preview"),!a&&(0,e.jsx)(U,{className:r.className,label:[t," MetaSlider"],children:(0,e.jsx)(I,{props:r},"slidehow-selector")},"instructions")]:(0,e.jsxs)(U,{className:n,label:[t," MetaSlider"],children:[H("No slideshows found.","ml-slider")," ",(0,e.jsx)("a",{target:"_blank",href:$.plugin_page,children:H("Create one now!","ml-slider")})]}):(0,e.jsxs)(U,{className:n,label:[t," MetaSlider"],children:[(0,e.jsx)(q,{},"spinner")," ",H("Loading slideshows list...","ml-slider")]})}));var X=window.wp.element.Fragment;const Y=function(t){var r=t.attributes,i=r.slideshowId,n=r.stretch,o=(r.containerClass,n?"align"+n:"");return!!i&&(0,e.jsx)(X,{children:(0,e.jsxs)("div",{class:o,children:['[metaslider id="',i,'"]']})})||""};var K=window.wp,Q=K.i18n.__,V=K.blocks.registerBlockType,Z=K.data,ee=Z.registerStore,te=Z.dispatch,re=Z.withSelect,ie=K.apiRequest,ne={items:[],isLoading:!0};ee("metaslider",{reducer:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:ne,t=arguments.length>1?arguments[1]:void 0;return"SET_SLIDESHOWS"===t.type?{items:t.items,isLoading:!1}:e},actions:{setSlideshows:function(e){return{type:"SET_SLIDESHOWS",items:e}}},selectors:{getSlideshows:function(e){return e}},resolvers:{getSlideshows:function(e,t){try{ie({path:"/metaslider/v1/slideshow/list"}).then((function(e){!0===e.success?te("metaslider").setSlideshows(e.data):(console.warn("MetaSlider: API Request error:",e.data.message),te("metaslider").setSlideshows([]))}))}catch(e){console.warn("MetaSlider: API Request error:",e),te("metaslider").setSlideshows([])}}}}),V("metaslider/slider",{title:"MetaSlider",description:Q("Use MetaSlider to insert slideshows and sliders in your page","ml-slider"),icon:t,category:"common",keywords:[Q("slider","ml-slider"),Q("slideshow","ml-slider"),Q("gallery","ml-slider")],attributes:{slideshowId:{type:"number",default:0},stretch:{type:"string",default:"normal"},containerClass:{type:"string",default:""}},supports:{customClassName:!1},edit:re((function(e,t){return{slideshows:(0,e("metaslider").getSlideshows)()}}))(J),save:function(e){return Y(e)},getEditWrapperProps:function(e){var t=e.stretch;if(-1!==["wide","full","normal"].indexOf(t))return{"data-align":t}}})})()})();admin/assets/dist/js/editor-block.js.LICENSE.txt000064400000000377151213255330015337 0ustar00/** @license React v16.14.0
 * react-jsx-runtime.production.min.js
 *
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
admin/assets/dist/js/app.js000064400002410361151213255330011642 0ustar00/*! For license information please see app.js.LICENSE.txt */
!function(){var t={9742:function(t,e){"use strict";e.byteLength=function(t){var e=l(t),n=e[0],r=e[1];return 3*(n+r)/4-r},e.toByteArray=function(t){var e,n,o=l(t),s=o[0],a=o[1],c=new i(function(t,e,n){return 3*(e+n)/4-n}(0,s,a)),u=0,d=a>0?s-4:s;for(n=0;n<d;n+=4)e=r[t.charCodeAt(n)]<<18|r[t.charCodeAt(n+1)]<<12|r[t.charCodeAt(n+2)]<<6|r[t.charCodeAt(n+3)],c[u++]=e>>16&255,c[u++]=e>>8&255,c[u++]=255&e;2===a&&(e=r[t.charCodeAt(n)]<<2|r[t.charCodeAt(n+1)]>>4,c[u++]=255&e);1===a&&(e=r[t.charCodeAt(n)]<<10|r[t.charCodeAt(n+1)]<<4|r[t.charCodeAt(n+2)]>>2,c[u++]=e>>8&255,c[u++]=255&e);return c},e.fromByteArray=function(t){for(var e,r=t.length,i=r%3,o=[],s=16383,a=0,l=r-i;a<l;a+=s)o.push(c(t,a,a+s>l?l:a+s));1===i?(e=t[r-1],o.push(n[e>>2]+n[e<<4&63]+"==")):2===i&&(e=(t[r-2]<<8)+t[r-1],o.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"="));return o.join("")};for(var n=[],r=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,a=o.length;s<a;++s)n[s]=o[s],r[o.charCodeAt(s)]=s;function l(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");return-1===n&&(n=e),[n,n===e?0:4-n%4]}function c(t,e,r){for(var i,o,s=[],a=e;a<r;a+=3)i=(t[a]<<16&16711680)+(t[a+1]<<8&65280)+(255&t[a+2]),s.push(n[(o=i)>>18&63]+n[o>>12&63]+n[o>>6&63]+n[63&o]);return s.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},8764:function(t,e,n){"use strict";var r=n(9742),i=n(645),o="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;e.lW=l,e.h2=50;var s=2147483647;function a(t){if(t>s)throw new RangeError('The value "'+t+'" is invalid for option "size"');var e=new Uint8Array(t);return Object.setPrototypeOf(e,l.prototype),e}function l(t,e,n){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return d(t)}return c(t,e,n)}function c(t,e,n){if("string"==typeof t)return function(t,e){"string"==typeof e&&""!==e||(e="utf8");if(!l.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var n=0|m(t,e),r=a(n),i=r.write(t,e);i!==n&&(r=r.slice(0,i));return r}(t,e);if(ArrayBuffer.isView(t))return function(t){if(z(t,Uint8Array)){var e=new Uint8Array(t);return p(e.buffer,e.byteOffset,e.byteLength)}return f(t)}(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(z(t,ArrayBuffer)||t&&z(t.buffer,ArrayBuffer))return p(t,e,n);if("undefined"!=typeof SharedArrayBuffer&&(z(t,SharedArrayBuffer)||t&&z(t.buffer,SharedArrayBuffer)))return p(t,e,n);if("number"==typeof t)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=t.valueOf&&t.valueOf();if(null!=r&&r!==t)return l.from(r,e,n);var i=function(t){if(l.isBuffer(t)){var e=0|h(t.length),n=a(e);return 0===n.length||t.copy(n,0,0,e),n}if(void 0!==t.length)return"number"!=typeof t.length||U(t.length)?a(0):f(t);if("Buffer"===t.type&&Array.isArray(t.data))return f(t.data)}(t);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof t[Symbol.toPrimitive])return l.from(t[Symbol.toPrimitive]("string"),e,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}function u(t){if("number"!=typeof t)throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function d(t){return u(t),a(t<0?0:0|h(t))}function f(t){for(var e=t.length<0?0:0|h(t.length),n=a(e),r=0;r<e;r+=1)n[r]=255&t[r];return n}function p(t,e,n){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(n||0))throw new RangeError('"length" is outside of buffer bounds');var r;return r=void 0===e&&void 0===n?new Uint8Array(t):void 0===n?new Uint8Array(t,e):new Uint8Array(t,e,n),Object.setPrototypeOf(r,l.prototype),r}function h(t){if(t>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return 0|t}function m(t,e){if(l.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||z(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var n=t.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return F(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return B(t).length;default:if(i)return r?-1:F(t).length;e=(""+e).toLowerCase(),i=!0}}function g(t,e,n){var r=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return A(this,e,n);case"utf8":case"utf-8":return O(this,e,n);case"ascii":return E(this,e,n);case"latin1":case"binary":return j(this,e,n);case"base64":return C(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return P(this,e,n);default:if(r)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),r=!0}}function v(t,e,n){var r=t[e];t[e]=t[n],t[n]=r}function w(t,e,n,r,i){if(0===t.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),U(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof e&&(e=l.from(e,r)),l.isBuffer(e))return 0===e.length?-1:y(t,e,n,r,i);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):y(t,[e],n,r,i);throw new TypeError("val must be string, number or Buffer")}function y(t,e,n,r,i){var o,s=1,a=t.length,l=e.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(t.length<2||e.length<2)return-1;s=2,a/=2,l/=2,n/=2}function c(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(i){var u=-1;for(o=n;o<a;o++)if(c(t,o)===c(e,-1===u?0:o-u)){if(-1===u&&(u=o),o-u+1===l)return u*s}else-1!==u&&(o-=o-u),u=-1}else for(n+l>a&&(n=a-l),o=n;o>=0;o--){for(var d=!0,f=0;f<l;f++)if(c(t,o+f)!==c(e,f)){d=!1;break}if(d)return o}return-1}function b(t,e,n,r){n=Number(n)||0;var i=t.length-n;r?(r=Number(r))>i&&(r=i):r=i;var o=e.length;r>o/2&&(r=o/2);for(var s=0;s<r;++s){var a=parseInt(e.substr(2*s,2),16);if(U(a))return s;t[n+s]=a}return s}function _(t,e,n,r){return R(F(e,t.length-n),t,n,r)}function x(t,e,n,r){return R(function(t){for(var e=[],n=0;n<t.length;++n)e.push(255&t.charCodeAt(n));return e}(e),t,n,r)}function k(t,e,n,r){return R(B(e),t,n,r)}function S(t,e,n,r){return R(function(t,e){for(var n,r,i,o=[],s=0;s<t.length&&!((e-=2)<0);++s)r=(n=t.charCodeAt(s))>>8,i=n%256,o.push(i),o.push(r);return o}(e,t.length-n),t,n,r)}function C(t,e,n){return 0===e&&n===t.length?r.fromByteArray(t):r.fromByteArray(t.slice(e,n))}function O(t,e,n){n=Math.min(t.length,n);for(var r=[],i=e;i<n;){var o,s,a,l,c=t[i],u=null,d=c>239?4:c>223?3:c>191?2:1;if(i+d<=n)switch(d){case 1:c<128&&(u=c);break;case 2:128==(192&(o=t[i+1]))&&(l=(31&c)<<6|63&o)>127&&(u=l);break;case 3:o=t[i+1],s=t[i+2],128==(192&o)&&128==(192&s)&&(l=(15&c)<<12|(63&o)<<6|63&s)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:o=t[i+1],s=t[i+2],a=t[i+3],128==(192&o)&&128==(192&s)&&128==(192&a)&&(l=(15&c)<<18|(63&o)<<12|(63&s)<<6|63&a)>65535&&l<1114112&&(u=l)}null===u?(u=65533,d=1):u>65535&&(u-=65536,r.push(u>>>10&1023|55296),u=56320|1023&u),r.push(u),i+=d}return function(t){var e=t.length;if(e<=T)return String.fromCharCode.apply(String,t);var n="",r=0;for(;r<e;)n+=String.fromCharCode.apply(String,t.slice(r,r+=T));return n}(r)}l.TYPED_ARRAY_SUPPORT=function(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),42===t.foo()}catch(t){return!1}}(),l.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(l.prototype,"parent",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.buffer}}),Object.defineProperty(l.prototype,"offset",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.byteOffset}}),l.poolSize=8192,l.from=function(t,e,n){return c(t,e,n)},Object.setPrototypeOf(l.prototype,Uint8Array.prototype),Object.setPrototypeOf(l,Uint8Array),l.alloc=function(t,e,n){return function(t,e,n){return u(t),t<=0?a(t):void 0!==e?"string"==typeof n?a(t).fill(e,n):a(t).fill(e):a(t)}(t,e,n)},l.allocUnsafe=function(t){return d(t)},l.allocUnsafeSlow=function(t){return d(t)},l.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==l.prototype},l.compare=function(t,e){if(z(t,Uint8Array)&&(t=l.from(t,t.offset,t.byteLength)),z(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),!l.isBuffer(t)||!l.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;for(var n=t.length,r=e.length,i=0,o=Math.min(n,r);i<o;++i)if(t[i]!==e[i]){n=t[i],r=e[i];break}return n<r?-1:r<n?1:0},l.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},l.concat=function(t,e){if(!Array.isArray(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return l.alloc(0);var n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;var r=l.allocUnsafe(e),i=0;for(n=0;n<t.length;++n){var o=t[n];if(z(o,Uint8Array))i+o.length>r.length?l.from(o).copy(r,i):Uint8Array.prototype.set.call(r,o,i);else{if(!l.isBuffer(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(r,i)}i+=o.length}return r},l.byteLength=m,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)v(this,e,e+1);return this},l.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)v(this,e,e+3),v(this,e+1,e+2);return this},l.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)v(this,e,e+7),v(this,e+1,e+6),v(this,e+2,e+5),v(this,e+3,e+4);return this},l.prototype.toString=function(){var t=this.length;return 0===t?"":0===arguments.length?O(this,0,t):g.apply(this,arguments)},l.prototype.toLocaleString=l.prototype.toString,l.prototype.equals=function(t){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===l.compare(this,t)},l.prototype.inspect=function(){var t="",n=e.h2;return t=this.toString("hex",0,n).replace(/(.{2})/g,"$1 ").trim(),this.length>n&&(t+=" ... "),"<Buffer "+t+">"},o&&(l.prototype[o]=l.prototype.inspect),l.prototype.compare=function(t,e,n,r,i){if(z(t,Uint8Array)&&(t=l.from(t,t.offset,t.byteLength)),!l.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),e<0||n>t.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&e>=n)return 0;if(r>=i)return-1;if(e>=n)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(r>>>=0),s=(n>>>=0)-(e>>>=0),a=Math.min(o,s),c=this.slice(r,i),u=t.slice(e,n),d=0;d<a;++d)if(c[d]!==u[d]){o=c[d],s=u[d];break}return o<s?-1:s<o?1:0},l.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},l.prototype.indexOf=function(t,e,n){return w(this,t,e,n,!0)},l.prototype.lastIndexOf=function(t,e,n){return w(this,t,e,n,!1)},l.prototype.write=function(t,e,n,r){if(void 0===e)r="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)r=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e>>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-e;if((void 0===n||n>i)&&(n=i),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return b(this,t,e,n);case"utf8":case"utf-8":return _(this,t,e,n);case"ascii":case"latin1":case"binary":return x(this,t,e,n);case"base64":return k(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var T=4096;function E(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(127&t[i]);return r}function j(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(t[i]);return r}function A(t,e,n){var r=t.length;(!e||e<0)&&(e=0),(!n||n<0||n>r)&&(n=r);for(var i="",o=e;o<n;++o)i+=V[t[o]];return i}function P(t,e,n){for(var r=t.slice(e,n),i="",o=0;o<r.length-1;o+=2)i+=String.fromCharCode(r[o]+256*r[o+1]);return i}function M(t,e,n){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function I(t,e,n,r,i,o){if(!l.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<o)throw new RangeError('"value" argument is out of bounds');if(n+r>t.length)throw new RangeError("Index out of range")}function L(t,e,n,r,i,o){if(n+r>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function $(t,e,n,r,o){return e=+e,n>>>=0,o||L(t,0,n,4),i.write(t,e,n,r,23,4),n+4}function D(t,e,n,r,o){return e=+e,n>>>=0,o||L(t,0,n,8),i.write(t,e,n,r,52,8),n+8}l.prototype.slice=function(t,e){var n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t);var r=this.subarray(t,e);return Object.setPrototypeOf(r,l.prototype),r},l.prototype.readUintLE=l.prototype.readUIntLE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=this[t],i=1,o=0;++o<e&&(i*=256);)r+=this[t+o]*i;return r},l.prototype.readUintBE=l.prototype.readUIntBE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=this[t+--e],i=1;e>0&&(i*=256);)r+=this[t+--e]*i;return r},l.prototype.readUint8=l.prototype.readUInt8=function(t,e){return t>>>=0,e||M(t,1,this.length),this[t]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(t,e){return t>>>=0,e||M(t,2,this.length),this[t]|this[t+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(t,e){return t>>>=0,e||M(t,2,this.length),this[t]<<8|this[t+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(t,e){return t>>>=0,e||M(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(t,e){return t>>>=0,e||M(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},l.prototype.readIntLE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=this[t],i=1,o=0;++o<e&&(i*=256);)r+=this[t+o]*i;return r>=(i*=128)&&(r-=Math.pow(2,8*e)),r},l.prototype.readIntBE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=e,i=1,o=this[t+--r];r>0&&(i*=256);)o+=this[t+--r]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*e)),o},l.prototype.readInt8=function(t,e){return t>>>=0,e||M(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},l.prototype.readInt16LE=function(t,e){t>>>=0,e||M(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(t,e){t>>>=0,e||M(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(t,e){return t>>>=0,e||M(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},l.prototype.readInt32BE=function(t,e){return t>>>=0,e||M(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},l.prototype.readFloatLE=function(t,e){return t>>>=0,e||M(t,4,this.length),i.read(this,t,!0,23,4)},l.prototype.readFloatBE=function(t,e){return t>>>=0,e||M(t,4,this.length),i.read(this,t,!1,23,4)},l.prototype.readDoubleLE=function(t,e){return t>>>=0,e||M(t,8,this.length),i.read(this,t,!0,52,8)},l.prototype.readDoubleBE=function(t,e){return t>>>=0,e||M(t,8,this.length),i.read(this,t,!1,52,8)},l.prototype.writeUintLE=l.prototype.writeUIntLE=function(t,e,n,r){(t=+t,e>>>=0,n>>>=0,r)||I(this,t,e,n,Math.pow(2,8*n)-1,0);var i=1,o=0;for(this[e]=255&t;++o<n&&(i*=256);)this[e+o]=t/i&255;return e+n},l.prototype.writeUintBE=l.prototype.writeUIntBE=function(t,e,n,r){(t=+t,e>>>=0,n>>>=0,r)||I(this,t,e,n,Math.pow(2,8*n)-1,0);var i=n-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+n},l.prototype.writeUint8=l.prototype.writeUInt8=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,1,255,0),this[e]=255&t,e+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},l.prototype.writeIntLE=function(t,e,n,r){if(t=+t,e>>>=0,!r){var i=Math.pow(2,8*n-1);I(this,t,e,n,i-1,-i)}var o=0,s=1,a=0;for(this[e]=255&t;++o<n&&(s*=256);)t<0&&0===a&&0!==this[e+o-1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeIntBE=function(t,e,n,r){if(t=+t,e>>>=0,!r){var i=Math.pow(2,8*n-1);I(this,t,e,n,i-1,-i)}var o=n-1,s=1,a=0;for(this[e+o]=255&t;--o>=0&&(s*=256);)t<0&&0===a&&0!==this[e+o+1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeInt8=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},l.prototype.writeInt16LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},l.prototype.writeInt16BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},l.prototype.writeInt32LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},l.prototype.writeInt32BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},l.prototype.writeFloatLE=function(t,e,n){return $(this,t,e,!0,n)},l.prototype.writeFloatBE=function(t,e,n){return $(this,t,e,!1,n)},l.prototype.writeDoubleLE=function(t,e,n){return D(this,t,e,!0,n)},l.prototype.writeDoubleBE=function(t,e,n){return D(this,t,e,!1,n)},l.prototype.copy=function(t,e,n,r){if(!l.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-e<r-n&&(r=t.length-e+n);var i=r-n;return this===t&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(e,n,r):Uint8Array.prototype.set.call(t,this.subarray(n,r),e),i},l.prototype.fill=function(t,e,n,r){if("string"==typeof t){if("string"==typeof e?(r=e,e=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!l.isEncoding(r))throw new TypeError("Unknown encoding: "+r);if(1===t.length){var i=t.charCodeAt(0);("utf8"===r&&i<128||"latin1"===r)&&(t=i)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;var o;if(e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(o=e;o<n;++o)this[o]=t;else{var s=l.isBuffer(t)?t:l.from(t,r),a=s.length;if(0===a)throw new TypeError('The value "'+t+'" is invalid for argument "value"');for(o=0;o<n-e;++o)this[o+e]=s[o%a]}return this};var N=/[^+/0-9A-Za-z-_]/g;function F(t,e){var n;e=e||1/0;for(var r=t.length,i=null,o=[],s=0;s<r;++s){if((n=t.charCodeAt(s))>55295&&n<57344){if(!i){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===r){(e-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function B(t){return r.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(N,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function R(t,e,n,r){for(var i=0;i<r&&!(i+n>=e.length||i>=t.length);++i)e[i+n]=t[i];return i}function z(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function U(t){return t!=t}var V=function(){for(var t="0123456789abcdef",e=new Array(256),n=0;n<16;++n)for(var r=16*n,i=0;i<16;++i)e[r+i]=t[n]+t[i];return e}()},1924:function(t,e,n){"use strict";var r=n(210),i=n(5559),o=i(r("String.prototype.indexOf"));t.exports=function(t,e){var n=r(t,!!e);return"function"==typeof n&&o(t,".prototype.")>-1?i(n):n}},5559:function(t,e,n){"use strict";var r=n(8612),i=n(210),o=i("%Function.prototype.apply%"),s=i("%Function.prototype.call%"),a=i("%Reflect.apply%",!0)||r.call(s,o),l=i("%Object.getOwnPropertyDescriptor%",!0),c=i("%Object.defineProperty%",!0),u=i("%Math.max%");if(c)try{c({},"a",{value:1})}catch(t){c=null}t.exports=function(t){var e=a(r,s,arguments);l&&c&&(l(e,"length").configurable&&c(e,"length",{value:1+u(0,t.length-(arguments.length-1))}));return e};var d=function(){return a(r,o,arguments)};c?c(t.exports,"apply",{value:d}):t.exports.apply=d},7953:function(t){var e="~",n="\\x"+("0"+e.charCodeAt(0).toString(16)).slice(-2),r="\\"+n,i=new RegExp(n,"g"),o=new RegExp(r,"g"),s=new RegExp("(?:^|([^\\\\]))"+r),a=[].indexOf||function(t){for(var e=this.length;e--&&this[e]!==t;);return e},l=String;function c(t,n,r){return n instanceof Array?function(t,e,n){for(var r=0,i=e.length;r<i;r++)e[r]=c(t,e[r],n);return e}(t,n,r):n instanceof l?n.length?r.hasOwnProperty(n)?r[n]:r[n]=function(t,n){for(var r=0,i=n.length;r<i;t=t[n[r++].replace(o,e)]);return t}(t,n.split(e)):t:n instanceof Object?function(t,e,n){for(var r in e)e.hasOwnProperty(r)&&(e[r]=c(t,e[r],n));return e}(t,n,r):n}var u={stringify:function(t,o,s,l){return u.parser.stringify(t,function(t,o,s){var l,c,u=!1,d=!!o,f=[],p=[t],h=[t],m=[s?e:"[Circular]"],g=t,v=1;return d&&(c="object"==typeof o?function(t,e){return""!==t&&o.indexOf(t)<0?void 0:e}:o),function(t,o){return d&&(o=c.call(this,t,o)),u?(g!==this&&(l=v-a.call(p,this)-1,v-=l,p.splice(v,p.length),f.splice(v-1,f.length),g=this),"object"==typeof o&&o?(a.call(p,o)<0&&p.push(g=o),v=p.length,(l=a.call(h,o))<0?(l=h.push(o)-1,s?(f.push((""+t).replace(i,n)),m[l]=e+f.join(e)):m[l]=m[0]):o=m[l]):"string"==typeof o&&s&&(o=o.replace(n,r).replace(e,n))):u=!0,o}}(t,o,!l),s)},parse:function(t,i){return u.parser.parse(t,function(t){return function(i,o){var a="string"==typeof o;return a&&o.charAt(0)===e?new l(o.slice(1)):(""===i&&(o=c(o,o,{})),a&&(o=o.replace(s,"$1"+e).replace(r,n)),t?t.call(this,i,o):o)}}(i))},parser:JSON};t.exports=u},7648:function(t){"use strict";var e=Array.prototype.slice,n=Object.prototype.toString;t.exports=function(t){var r=this;if("function"!=typeof r||"[object Function]"!==n.call(r))throw new TypeError("Function.prototype.bind called on incompatible "+r);for(var i,o=e.call(arguments,1),s=Math.max(0,r.length-o.length),a=[],l=0;l<s;l++)a.push("$"+l);if(i=Function("binder","return function ("+a.join(",")+"){ return binder.apply(this,arguments); }")((function(){if(this instanceof i){var n=r.apply(this,o.concat(e.call(arguments)));return Object(n)===n?n:this}return r.apply(t,o.concat(e.call(arguments)))})),r.prototype){var c=function(){};c.prototype=r.prototype,i.prototype=new c,c.prototype=null}return i}},8612:function(t,e,n){"use strict";var r=n(7648);t.exports=Function.prototype.bind||r},7220:function(t){"undefined"!=typeof window&&window,t.exports=function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/",n(n.s=0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n.r(e);var i=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,n,i;return e=t,i=[{key:"getDescendantProperty",value:function(e,n){var r,i,o,s,a,l,c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];if(n){if(-1===(o=n.indexOf("."))?r=n:(r=n.slice(0,o),i=n.slice(o+1)),null!=(s=e[r]))if(i||"string"!=typeof s&&"number"!=typeof s)if("[object Array]"===Object.prototype.toString.call(s))for(a=0,l=s.length;a<l;a++)t.getDescendantProperty(s[a],i,c);else i&&t.getDescendantProperty(s,i,c);else c.push(s)}else c.push(e);return c}}],(n=null)&&r(e.prototype,n),i&&r(e,i),t}();function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n.d(e,"default",(function(){return a}));var a=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};o(this,t),Array.isArray(n)||(r=n,n=[]),this.haystack=e,this.keys=n,this.options=Object.assign({caseSensitive:!1,sort:!1},r)}var e,n,r;return e=t,r=[{key:"isMatch",value:function(t,e,n){t=String(t),e=String(e),n||(t=t.toLocaleLowerCase(),e=e.toLocaleLowerCase());for(var r=e.split(""),i=[],o=0,s=0;s<r.length;s++){var a=r[s];if(-1===(o=t.indexOf(a,o)))return!1;i.push(o),o++}return t===e?1:i.length>1?i[i.length-1]-i[0]+2:2+i[0]}}],(n=[{key:"search",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(""===e)return this.haystack;for(var n=[],r=0;r<this.haystack.length;r++){var o=this.haystack[r];if(0===this.keys.length){var s=t.isMatch(o,e,this.options.caseSensitive);s&&n.push({item:o,score:s})}else for(var a=0;a<this.keys.length;a++){for(var l=i.getDescendantProperty(o,this.keys[a]),c=!1,u=0;u<l.length;u++){var d=t.isMatch(l[u],e,this.options.caseSensitive);if(d){c=!0,n.push({item:o,score:d});break}}if(c)break}}return this.options.sort&&n.sort((function(t,e){return t.score-e.score})),n.map((function(t){return t.item}))}}])&&s(e.prototype,n),r&&s(e,r),t}()}]).default},210:function(t,e,n){"use strict";var r,i=SyntaxError,o=Function,s=TypeError,a=function(t){try{return o('"use strict"; return ('+t+").constructor;")()}catch(t){}},l=Object.getOwnPropertyDescriptor;if(l)try{l({},"")}catch(t){l=null}var c=function(){throw new s},u=l?function(){try{return c}catch(t){try{return l(arguments,"callee").get}catch(t){return c}}}():c,d=n(1405)(),f=Object.getPrototypeOf||function(t){return t.__proto__},p={},h="undefined"==typeof Uint8Array?r:f(Uint8Array),m={"%AggregateError%":"undefined"==typeof AggregateError?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?r:ArrayBuffer,"%ArrayIteratorPrototype%":d?f([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":p,"%AsyncGenerator%":p,"%AsyncGeneratorFunction%":p,"%AsyncIteratorPrototype%":p,"%Atomics%":"undefined"==typeof Atomics?r:Atomics,"%BigInt%":"undefined"==typeof BigInt?r:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?r:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?r:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?r:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?r:FinalizationRegistry,"%Function%":o,"%GeneratorFunction%":p,"%Int8Array%":"undefined"==typeof Int8Array?r:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?r:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":d?f(f([][Symbol.iterator]())):r,"%JSON%":"object"==typeof JSON?JSON:r,"%Map%":"undefined"==typeof Map?r:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&d?f((new Map)[Symbol.iterator]()):r,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?r:Promise,"%Proxy%":"undefined"==typeof Proxy?r:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?r:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?r:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&d?f((new Set)[Symbol.iterator]()):r,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":d?f(""[Symbol.iterator]()):r,"%Symbol%":d?Symbol:r,"%SyntaxError%":i,"%ThrowTypeError%":u,"%TypedArray%":h,"%TypeError%":s,"%Uint8Array%":"undefined"==typeof Uint8Array?r:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?r:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?r:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?r:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?r:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?r:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?r:WeakSet};try{null.error}catch(t){var g=f(f(t));m["%Error.prototype%"]=g}var v=function t(e){var n;if("%AsyncFunction%"===e)n=a("async function () {}");else if("%GeneratorFunction%"===e)n=a("function* () {}");else if("%AsyncGeneratorFunction%"===e)n=a("async function* () {}");else if("%AsyncGenerator%"===e){var r=t("%AsyncGeneratorFunction%");r&&(n=r.prototype)}else if("%AsyncIteratorPrototype%"===e){var i=t("%AsyncGenerator%");i&&(n=f(i.prototype))}return m[e]=n,n},w={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},y=n(8612),b=n(7642),_=y.call(Function.call,Array.prototype.concat),x=y.call(Function.apply,Array.prototype.splice),k=y.call(Function.call,String.prototype.replace),S=y.call(Function.call,String.prototype.slice),C=y.call(Function.call,RegExp.prototype.exec),O=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,T=/\\(\\)?/g,E=function(t,e){var n,r=t;if(b(w,r)&&(r="%"+(n=w[r])[0]+"%"),b(m,r)){var o=m[r];if(o===p&&(o=v(r)),void 0===o&&!e)throw new s("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:n,name:r,value:o}}throw new i("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new s("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new s('"allowMissing" argument must be a boolean');if(null===C(/^%?[^%]*%?$/,t))throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=function(t){var e=S(t,0,1),n=S(t,-1);if("%"===e&&"%"!==n)throw new i("invalid intrinsic syntax, expected closing `%`");if("%"===n&&"%"!==e)throw new i("invalid intrinsic syntax, expected opening `%`");var r=[];return k(t,O,(function(t,e,n,i){r[r.length]=n?k(i,T,"$1"):e||t})),r}(t),r=n.length>0?n[0]:"",o=E("%"+r+"%",e),a=o.name,c=o.value,u=!1,d=o.alias;d&&(r=d[0],x(n,_([0,1],d)));for(var f=1,p=!0;f<n.length;f+=1){var h=n[f],g=S(h,0,1),v=S(h,-1);if(('"'===g||"'"===g||"`"===g||'"'===v||"'"===v||"`"===v)&&g!==v)throw new i("property names with quotes must have matching quotes");if("constructor"!==h&&p||(u=!0),b(m,a="%"+(r+="."+h)+"%"))c=m[a];else if(null!=c){if(!(h in c)){if(!e)throw new s("base intrinsic for "+t+" exists, but the property is not available.");return}if(l&&f+1>=n.length){var w=l(c,h);c=(p=!!w)&&"get"in w&&!("originalValue"in w.get)?w.get:c[h]}else p=b(c,h),c=c[h];p&&!u&&(m[a]=c)}}return c}},1405:function(t,e,n){"use strict";var r="undefined"!=typeof Symbol&&Symbol,i=n(5419);t.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&i())))}},5419:function(t){"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),n=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(e in t[e]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var r=Object.getOwnPropertySymbols(t);if(1!==r.length||r[0]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(t,e);if(42!==i.value||!0!==i.enumerable)return!1}return!0}},7642:function(t,e,n){"use strict";var r=n(8612);t.exports=r.call(Function.call,Object.prototype.hasOwnProperty)},645:function(t,e){e.read=function(t,e,n,r,i){var o,s,a=8*i-r-1,l=(1<<a)-1,c=l>>1,u=-7,d=n?i-1:0,f=n?-1:1,p=t[e+d];for(d+=f,o=p&(1<<-u)-1,p>>=-u,u+=a;u>0;o=256*o+t[e+d],d+=f,u-=8);for(s=o&(1<<-u)-1,o>>=-u,u+=r;u>0;s=256*s+t[e+d],d+=f,u-=8);if(0===o)o=1-c;else{if(o===l)return s?NaN:1/0*(p?-1:1);s+=Math.pow(2,r),o-=c}return(p?-1:1)*s*Math.pow(2,o-r)},e.write=function(t,e,n,r,i,o){var s,a,l,c=8*o-i-1,u=(1<<c)-1,d=u>>1,f=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=r?0:o-1,h=r?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=u):(s=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-s))<1&&(s--,l*=2),(e+=s+d>=1?f/l:f*Math.pow(2,1-d))*l>=2&&(s++,l/=2),s+d>=u?(a=0,s=u):s+d>=1?(a=(e*l-1)*Math.pow(2,i),s+=d):(a=e*Math.pow(2,d-1)*Math.pow(2,i),s=0));i>=8;t[n+p]=255&a,p+=h,a/=256,i-=8);for(s=s<<i|a,c+=i;c>0;t[n+p]=255&s,p+=h,s/=256,c-=8);t[n+p-h]|=128*m}},5823:function(t){t.exports=function(t,e,n,r){var i=new Blob(void 0!==r?[r,t]:[t],{type:n||"application/octet-stream"});if(void 0!==window.navigator.msSaveBlob)window.navigator.msSaveBlob(i,e);else{var o=window.URL&&window.URL.createObjectURL?window.URL.createObjectURL(i):window.webkitURL.createObjectURL(i),s=document.createElement("a");s.style.display="none",s.href=o,s.setAttribute("download",e),void 0===s.download&&s.setAttribute("target","_blank"),document.body.appendChild(s),s.click(),setTimeout((function(){document.body.removeChild(s),window.URL.revokeObjectURL(o)}),200)}}},3523:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,'@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUpTiny{0%{opacity:.7;transform:translate3d(0,5px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.swal2-popup.swal2-toast{align-items:center;background:#32373c;box-shadow:0 2px 4px rgba(0,0,0,.3);flex-direction:row;overflow-y:hidden;padding:16px 24px;width:auto}.swal2-popup.swal2-toast .swal2-header{flex-direction:row;padding:0}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;font-size:13px;justify-content:flex-start;margin:0 .6em}.swal2-popup.swal2-toast .swal2-footer{font-size:13px;margin:.5em 0 0;padding:.5em 0 0}.swal2-popup.swal2-toast .swal2-close{height:auto;line-height:16px;position:static;width:auto}.swal2-popup.swal2-toast .swal2-content{font-size:13px;justify-content:flex-start;padding:0}.swal2-popup.swal2-toast .swal2-icon{height:2em;margin:0;min-width:2em;width:2em}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{align-items:center;display:flex;font-size:1.8em;font-weight:700}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{height:2em;width:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex-basis:auto!important;height:auto;margin:0 .3125em;width:auto}.swal2-popup.swal2-toast .swal2-styled{font-size:13px;margin:0 .3125em;padding:.3125em .625em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#46b450}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{border-radius:50%;height:3em;position:absolute;transform:rotate(45deg);width:1.6em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{border-radius:4em 0 0 4em;left:-.5em;top:-.8em;transform:rotate(-45deg);transform-origin:2em 2em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{border-radius:0 4em 4em 0;left:.9375em;top:-.25em;transform-origin:0 1.5em}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{height:2em;width:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{height:2.6875em;left:.4375em;top:0;width:.4375em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{left:.1875em;top:1.125em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{right:.1875em;top:.9375em;width:1.375em}.swal2-popup.swal2-toast.swal2-show{animation:fadeInUpBig .65s}.swal2-popup.swal2-toast.swal2-hide{animation:fadeOut .5s}.swal2-container{-webkit-overflow-scrolling:touch;align-items:center;bottom:0;display:flex;flex-direction:row;justify-content:center;left:0;overflow-x:hidden;padding:16px;position:fixed;right:0;top:0;transition:background-color .1s;z-index:1060}.swal2-container.swal2-backdrop-show,.swal2-container.swal2-noanimation{background:hsla(0,0%,39%,.5)}.swal2-container.swal2-backdrop-hide{background:transparent!important}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{align-self:stretch;display:flex!important;flex:1;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{align-content:center;display:flex!important;flex:1;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{align-content:center;display:flex!important;flex:1;justify-content:center}.swal2-container.swal2-no-transition{transition:none!important}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-container .swal2-modal{margin:0!important}}.swal2-popup{background:#32373c;border:none;border-radius:.3125em;box-sizing:border-box;display:none;flex-direction:column;font-family:inherit;font-size:1rem;justify-content:center;max-width:100%;padding:1.25em;position:relative;width:32em}.swal2-popup:focus{outline:none}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{align-items:center;display:flex;flex-direction:column;padding:0 1.8em}.swal2-title{word-wrap:break-word;color:#fff;font-size:30px;font-weight:600;margin:0;max-width:100%;padding:0;position:relative;text-align:center;text-transform:none}.swal2-actions{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-end;margin:8px auto 0;width:100%;z-index:1}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:active,.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(transparent,transparent)}.swal2-actions.swal2-loading .swal2-styled.swal2-confirm{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;background-color:transparent!important;border:.25em solid transparent;border-radius:100%;box-sizing:border-box;color:transparent!important;cursor:default;height:2.5em;margin:.46875em;padding:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:2.5em}.swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff;content:"";display:inline-block;height:15px;margin-left:5px;width:15px}.swal2-styled{box-shadow:none;font-weight:500;margin:.3125em;padding:.625em 2em}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{background:initial;background-color:#007cba;border:0;border-radius:3px;color:#fff;font-size:13px}.swal2-styled.swal2-cancel{background:initial;background-color:#aaa;border:0;border-radius:.25em;color:#fff;font-size:13px}.swal2-styled:focus{box-shadow:0 0 1px 1px;outline:none}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{border-top:1px solid #555;color:#d9d9d9;font-size:1em;justify-content:center;margin:1.25em 0 0;padding:1em 0 0}.swal2-timer-progress-bar-container{border-bottom-left-radius:.3125em;border-bottom-right-radius:.3125em;bottom:0;height:.25em;left:0;overflow:hidden;position:absolute;right:0}.swal2-timer-progress-bar{background:#007cba;height:.25em;width:100%}.swal2-image{margin:1.25em auto;max-width:100%}.swal2-close{align-items:center;background:transparent;border:none;border-radius:0;color:#ccc;cursor:pointer;font-family:serif;font-size:2.5em;height:1.2em;justify-content:center;line-height:1.2;overflow:hidden;padding:0;position:absolute;right:0;top:0;transition:color .1s ease-out;width:1.2em;z-index:2}.swal2-close:hover{background:transparent;color:#f27474;transform:none}.swal2-close::-moz-focus-inner{border:0}.swal2-content{word-wrap:break-word;color:#fff;font-size:1.125em;font-weight:lighter;justify-content:flex-start;line-height:normal;margin:0;padding:0 1.6em;text-align:left;z-index:1}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{background:#3e444a;border:1px solid #7e8993;border-radius:4px;box-shadow:0 0 0 transparent;box-sizing:border-box;color:#fff;font-size:14px;transition:none;width:100%}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#ca4a1f!important;box-shadow:0 0 2px #ca4a1f!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #007cba;box-shadow:0 0 0 1px #007cba;outline:2px solid transparent}.swal2-file::-moz-placeholder,.swal2-input::-moz-placeholder,.swal2-textarea::-moz-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{background:#32373c;margin:1em auto}.swal2-range input{width:80%}.swal2-range output{color:#fff;font-weight:600;text-align:center;width:20%}.swal2-range input,.swal2-range output{font-size:14px;height:30px;line-height:30px;padding:0}.swal2-input{height:30px;padding:0 8px}.swal2-input[type=number]{max-width:10em}.swal2-file{background:#3e444a;font-size:14px}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{background:#3e444a;color:#fff;font-size:14px;max-width:100%;min-width:50%;padding:.375em .625em}.swal2-checkbox,.swal2-radio{align-items:center;background:#32373c;color:#fff;justify-content:center}.swal2-checkbox label,.swal2-radio label{font-size:14px;margin:0 .6em}.swal2-checkbox input,.swal2-radio input{margin:0 .4em}.swal2-validation-message{align-items:center;background:transparent;color:#fff;display:none;font-size:1em;font-weight:300;justify-content:flex-start;overflow:hidden;padding:4px 13px}.swal2-validation-message:before{zoom:.7;background-color:#ca4a1f;border-radius:50%;color:#fff;content:"!";display:inline-block;font-weight:600;height:1.5em;line-height:1.5em;margin:0 .625em;min-width:1.5em;text-align:center;width:1.5em}.swal2-icon{zoom:.7;border:.25em solid transparent;border-radius:50%;box-sizing:content-box;cursor:default;font-family:inherit;height:5em;justify-content:center;line-height:5em;margin:-36px -4px 0 -24px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:5em}.swal2-icon .swal2-icon-content{align-items:center;display:flex;font-size:3.75em}.swal2-icon.swal2-error{border-color:#ca4a1f;color:#ca4a1f}.swal2-icon.swal2-error .swal2-x-mark{flex-grow:1;position:relative}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#ca4a1f;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-warning{border-color:#ffc324;color:#ffb900}.swal2-icon.swal2-info,.swal2-icon.swal2-question{border-color:#21b5ff;color:#007cba}.swal2-icon.swal2-success{border-color:#46b450;color:#46b450}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{border-radius:50%;height:7.5em;position:absolute;transform:rotate(45deg);width:3.75em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{border-radius:7.5em 0 0 7.5em;left:-2.0635em;top:-.4375em;transform:rotate(-45deg);transform-origin:3.75em 3.75em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{border-radius:0 7.5em 7.5em 0;left:1.875em;top:-.6875em;transform:rotate(-45deg);transform-origin:0 3.75em}.swal2-icon.swal2-success .swal2-success-ring{border:.25em solid hsla(98,55%,69%,.3);border-radius:50%;box-sizing:content-box;height:100%;left:-.25em;position:absolute;top:-.25em;width:100%;z-index:2}.swal2-icon.swal2-success .swal2-success-fix{height:5.625em;left:1.625em;position:absolute;top:.5em;transform:rotate(-45deg);width:.4375em;z-index:1}.swal2-icon.swal2-success [class^=swal2-success-line]{background-color:#46b450;border-radius:.125em;display:block;height:.3125em;position:absolute;z-index:2}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{left:.8125em;top:2.875em;transform:rotate(45deg);width:1.5625em}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{right:.5em;top:2.375em;transform:rotate(-45deg);width:2.9375em}.swal2-progress-steps{background:inherit;font-weight:600;margin:0 0 1.25em;padding:0}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{background:#007cba;border-radius:2em;color:#fff;height:2em;line-height:2em;text-align:center;width:2em;z-index:20}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#007cba}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#fff;color:#333}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#fff}.swal2-progress-steps .swal2-progress-step-line{background:#007cba;height:.4em;margin:0 -1px;width:2.5em;z-index:10}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{animation:fadeInUpTiny .5s}.swal2-hide{animation:fadeOut .25s}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}.swal2-rtl .swal2-close{left:0;right:auto}.swal2-rtl .swal2-timer-progress-bar{left:auto;right:0}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(63,126,188,.4)}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotate(2deg)}33%{transform:translateY(0) rotate(-2deg)}66%{transform:translateY(.3125em) rotate(2deg)}to{transform:translateY(0) rotate(0deg)}}@keyframes swal2-toast-hide{to{opacity:0;transform:rotate(1deg)}}@keyframes swal2-toast-animate-success-line-tip{0%{left:.0625em;top:.5625em;width:0}54%{left:.125em;top:.125em;width:0}70%{left:-.25em;top:.625em;width:1.625em}84%{left:.75em;top:1.0625em;width:.5em}to{left:.1875em;top:1.125em;width:.75em}}@keyframes swal2-toast-animate-success-line-long{0%{right:1.375em;top:1.625em;width:0}65%{right:.9375em;top:1.25em;width:0}84%{right:0;top:.9375em;width:1.125em}to{right:.1875em;top:.9375em;width:1.375em}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}to{transform:scale(1)}}@keyframes swal2-hide{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.5)}}@keyframes swal2-animate-success-line-tip{0%{left:.0625em;top:1.1875em;width:0}54%{left:.125em;top:1.0625em;width:0}70%{left:-.375em;top:2.1875em;width:3.125em}84%{left:1.3125em;top:3em;width:1.0625em}to{left:.8125em;top:2.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-long{0%{right:2.875em;top:3.375em;width:0}65%{right:2.875em;top:3.375em;width:0}84%{right:0;top:2.1875em;width:3.4375em}to{right:.5em;top:2.375em;width:2.9375em}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;opacity:0;transform:scale(.4)}50%{margin-top:1.625em;opacity:0;transform:scale(.4)}80%{margin-top:-.375em;transform:scale(1.15)}to{margin-top:0;opacity:1;transform:scale(1)}}@keyframes swal2-animate-error-icon{0%{opacity:0;transform:rotateX(100deg)}to{opacity:1;transform:rotateX(0deg)}}@keyframes swal2-rotate-loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{background-color:transparent!important;bottom:auto;left:auto;max-width:calc(100% - 32px);right:auto;top:auto}body.swal2-no-backdrop .swal2-container>.swal2-modal{box-shadow:0 0 10px hsla(0,0%,39%,.5)}body.swal2-no-backdrop .swal2-container.swal2-top{left:50%;top:0;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-top-left,body.swal2-no-backdrop .swal2-container.swal2-top-start{left:0;top:0}body.swal2-no-backdrop .swal2-container.swal2-top-end,body.swal2-no-backdrop .swal2-container.swal2-top-right{right:0;top:0}body.swal2-no-backdrop .swal2-container.swal2-center{left:50%;top:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-left,body.swal2-no-backdrop .swal2-container.swal2-center-start{left:0;top:50%;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-end,body.swal2-no-backdrop .swal2-container.swal2-center-right{right:0;top:50%;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom-left,body.swal2-no-backdrop .swal2-container.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-bottom-end,body.swal2-no-backdrop .swal2-container.swal2-bottom-right{bottom:0;right:0}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{bottom:auto;left:50%;right:auto;top:0;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{bottom:auto;left:auto;right:0;top:0}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{bottom:auto;left:0;right:auto;top:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{bottom:auto;left:0;right:auto;top:50%;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{bottom:auto;left:50%;right:auto;top:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{bottom:auto;left:auto;right:0;top:50%;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{bottom:0;left:0;right:auto;top:auto}body.swal2-toast-shown .swal2-container.swal2-bottom{bottom:0;left:50%;right:auto;top:auto;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{bottom:0;left:auto;right:0;top:auto}body.swal2-toast-column .swal2-toast{align-items:stretch;flex-direction:column}body.swal2-toast-column .swal2-toast .swal2-actions{align-self:stretch;flex:1;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{font-size:13px;height:2em;margin:.3125em auto}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:13px}.swal2-header{flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-bottom:8px}.swal2-title{font-weight:300;line-height:30px}.swal2-success-ring{display:none}.swal2-toast .swal2-header{margin:0!important}.swal2-progress-steps{align-items:center;justify-content:center;width:100%}.swal2-toast .swal2-actions{margin:0!important}.swal2-toast .swal2-cancel,.swal2-toast .swal2-confirm{background:none;box-shadow:none!important;margin:0 0 0 16px!important;padding:0!important;text-decoration:underline}.swal2-toast .swal2-title{font-weight:400!important;line-height:13px}.swal2-icon{border:0;height:32px;transform:scale(.7) translateY(24px)}.swal2-icon.swal2-success{transform:scale(.7) translateY(4px)}.swal2-icon.swal2-error{transform:scale(.7) translateY(8px)}.swal2-success-circular-line-left{display:none!important}.swal2-popup.swal2-toast .swal2-icon *{animation:none!important}.swal2-toast .swal2-icon{transform:scale(.7) translateY(-2px)}.swal2-toast .swal2-icon.swal2-success{transform:scale(.7) translateY(-5px)}',""]),e.Z=i},2916:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"div#preview-component{float:left}div#preview-component>.sweet-modal-overlay{background:#fff}div#preview-component>.sweet-modal-overlay.theme-dark{background:#23292d}div#preview-component>.sweet-modal-overlay .sweet-modal{background:transparent;box-shadow:none;min-width:100%;padding:0}div#preview-component>.sweet-modal-overlay .sweet-modal .sweet-content,div#preview-component>.sweet-modal-overlay .sweet-modal .sweet-content-content,div#preview-component>.sweet-modal-overlay .sweet-modal iframe{align-items:center;display:flex;height:100%;justify-content:center;width:100%}",""]),e.Z=i},5036:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".external-media-importer ul.attachments li{max-width:175px}.ms-hero-status{align-items:center;display:flex;flex-direction:column;height:100%;width:100%}.ms-hero-status .ms-upload-progress{height:100%}.ms-hero-status .ms-progress{width:50%}.ms-hero-status .ms-progress span{line-height:24px}.ms-upload-image{border:2px solid hsla(0,0%,80%,.7);margin:1rem 0}.ms-upload-image img{display:block;width:100%}",""]),e.Z=i},8896:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".ms-load-more-api .ms-load-more-button{align-items:center;border:0;cursor:pointer;display:flex;flex-direction:column;font-size:1.1em;height:100%;justify-content:center;left:0;padding:0;position:absolute;top:0;width:100%}.ms-load-more-api .ms-load-more-button:hover{background:transparent}.ms-loading-more-images{align-items:center;background:#fff;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.external-api-error{color:#e82323;font-size:1.2em;padding:1rem}.ms-api-sidebar{display:flex;flex-direction:column;height:100%;justify-content:space-between}.ms-api-sidebar .details a{box-shadow:none}.ms-api-sidebar .ms-api-copyright p{color:#aaa;margin-bottom:0}.ms-api-sidebar .ms-api-copyright p a{color:#aaa}.ms-api-sidebar .ms-api-copyright p a:active,.ms-api-sidebar .ms-api-copyright p a:focus,.ms-api-sidebar .ms-api-copyright p a:hover{color:#0073aa}.ms-full-loading{align-items:center;display:flex;height:100%;justify-content:center;width:100%}",""]),e.Z=i},2354:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".ms-api-user{border-bottom:1px solid #ddd;clear:both;display:flex;justify-content:flex-start;margin-bottom:1rem;padding-bottom:1rem}.ms-api-user img{border-radius:50%;height:64px;margin-right:1rem;min-width:64px;width:64px}.ms-api-user h3{line-height:1.1;margin:0}.ms-api-user .ms-user-location{color:#aaa;font-size:.9em;line-height:1.3;margin:0}.ms-api-user .ms-user-bio{font-size:1em;line-height:1.1;margin-bottom:.4rem;margin-top:.3em}.ms-api-user .ms-profile-data{display:flex;flex-direction:column;justify-content:space-between}.ms-api-user .ms-profile-meta{display:flex;margin:0}.ms-api-user .ms-profile-meta li{margin-bottom:0;margin-right:.5em}",""]),e.Z=i},8720:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#ms-image-drag-drop>form[data-v-4f6cf952]{height:100px;margin:1rem auto auto;position:relative}#ms-image-drag-drop>form[data-v-4f6cf952],#ms-image-drag-drop>form>div[data-v-4f6cf952]{align-items:center;display:flex;justify-content:center}#ms-image-drag-drop>form>div[data-v-4f6cf952]{background:transparent;border:4px dashed #b4b9be;color:#a0a5aa;font-size:1.3em;height:100%;left:0;position:absolute;top:0;transition:all .2s ease-in-out;width:100%}#ms-image-drag-drop>form>div.ms-drag-hovering[data-v-4f6cf952]{background:#eee;border-color:#83b4d8;height:200%}#ms-image-drag-drop>form>div.has-error[data-v-4f6cf952]{border-color:#e82323!important}#ms-image-drag-drop>form>div.has-error~span[data-v-4f6cf952]{color:#e82323}",""]),e.Z=i},7630:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".ms-upload-progress{align-items:center;display:flex;flex-direction:column;justify-content:center;width:100%}.ms-upload-progress .ms-progress{background:#83b4d8;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px hsla(0,0%,100%,.08);padding:4px;position:relative;width:75%}.ms-upload-progress .ms-progress span{color:#000;position:absolute;text-align:center;top:0;width:100%}.ms-upload-progress .ms-progress-bar{background:hsla(0,0%,100%,.7);border-radius:0;height:18px;transition:.4s linear;transition-property:width,background-color;width:0}.metaslider .callout-box{background:#dd6923;display:block!important}.metaslider .callout-box p{color:#fff;margin:0;text-align:center}.metaslider .callout-box strong{display:block;font-size:1.3em;margin-bottom:.5rem;text-transform:uppercase}.metaslider .callout-box .ms-ghost-button{border:1px solid;color:#fff;display:inline-block;margin-top:.5rem;padding:.4rem 1rem;text-decoration:none;transition:all .3s ease-in-out}.metaslider .callout-box .ms-ghost-button:active,.metaslider .callout-box .ms-ghost-button:focus,.metaslider .callout-box .ms-ghost-button:hover{background:#b2541b}#metaslider-ui .close-x{cursor:pointer}#metaslider-ui .sweet-modal-overlay{align-items:center;display:flex;justify-content:center;z-index:999999}#metaslider-ui .sweet-modal-overlay .sweet-modal{height:100%;position:static;width:100%}#metaslider-ui .sweet-modal-overlay.theme-dark{background:rgba(0,0,0,.7)}#metaslider-ui .sweet-modal{box-shadow:0 5px 15px rgba(0,0,0,.7);transform:none}#metaslider-ui .sweet-modal *{box-sizing:border-box}#metaslider-ui .sweet-modal .sweet-title{background-color:#fcfcfc;border-bottom-color:#ddd;flex:0 0 auto;height:40px;line-height:40px;padding-left:40px}#metaslider-ui .sweet-modal ul li.sweet-modal-tab{margin:0}#metaslider-ui .sweet-modal ul li.sweet-modal-tab a{border-bottom:1px solid transparent;box-shadow:none;color:#999;font-size:.9em;font-weight:500;padding:5px 10px 0;text-transform:uppercase}#metaslider-ui .sweet-modal ul li.sweet-modal-tab a:active,#metaslider-ui .sweet-modal ul li.sweet-modal-tab a:focus,#metaslider-ui .sweet-modal ul li.sweet-modal-tab a:hover,#metaslider-ui .sweet-modal ul li.sweet-modal-tab.active a{border-bottom:1px solid #dd6923;color:#dd6923}#metaslider-ui .sweet-modal .sweet-buttons{background-color:#fcfcfc;border-top-color:#ddd;flex:0 0 auto;z-index:9}#metaslider-ui .sweet-modal .sweet-content{display:flex;flex:1 1 auto;height:100%;overflow-y:auto;padding:0;position:relative}#metaslider-ui .sweet-modal .sweet-content .sweet-content-content{align-items:center;border-radius:5px;display:flex;flex-direction:column;justify-content:space-between}#metaslider-ui .sweet-modal .sweet-box-actions{z-index:9}#metaslider-ui .sweet-modal .sweet-box-actions .sweet-action-close{border-radius:0;color:#fff;height:24px;line-height:24px;width:24px}#metaslider-ui .sweet-modal .sweet-box-actions .sweet-action-close:hover{background:transparent;color:#dd6923}",""]),e.Z=i},8929:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".highlighted-slideshow-nav .text-gray{color:#606f7b!important}.highlighted-slideshow-nav .border-gray-light{border-color:#b8c2cc!important}",""]),e.Z=i},2339:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#metaslider-ui .metaslider-theme-viewer p{color:#444;margin-top:0}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal{bottom:0;display:flex;flex-direction:column;height:100%;left:5%;max-height:90%;max-width:90%;overflow:visible;position:absolute;right:0;top:5%;width:100%}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal>.sweet-buttons{align-items:center;display:flex;justify-content:space-between}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal>.sweet-buttons button{margin-left:.5rem}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal>.sweet-buttons .metaslider-theme-title{font-size:1.3em;margin-top:.3em}#metaslider-ui .sweet-modal .columns{display:flex;flex-direction:row}#metaslider-ui .sweet-modal .columns .theme-list-column{bottom:0;left:0;overflow:auto;position:absolute;right:0;top:0;width:75%}#metaslider-ui .sweet-modal .columns .theme-details-column{background:#f3f3f3;border-left:1px solid #ddd;bottom:0;color:#666;display:flex;flex-direction:column;height:100%;justify-content:space-between;padding:0 1rem 1rem;position:absolute;right:0;text-align:left;top:0;width:25%}[dir=rtl] #metaslider-ui .sweet-modal .columns .theme-details-column{left:0;right:auto}#metaslider-ui .sweet-modal .columns .theme-details-column .metaslider-theme-title{background-color:#e8e8e8;color:#4a4a4a;font-size:1.5em;font-weight:500;margin:-1.5rem -1rem 1.5rem;padding:.5rem 1rem .4rem}#metaslider-ui .sweet-modal .columns .theme-details-column h2,#metaslider-ui .sweet-modal .columns .theme-details-column h3{color:#666;font-size:1em;font-weight:600;margin:1.5rem 0 .6em;padding:0;text-transform:uppercase}#metaslider-ui .sweet-modal .columns .theme-details-column h2:first-of-type{margin-top:0}#metaslider-ui .sweet-modal .columns .theme-details-column h3{font-size:.9em;text-transform:none}#metaslider-ui .sweet-modal .columns .theme-details-column p{font-size:.9em;line-height:1.4}#metaslider-ui .sweet-modal .columns .theme-details-column .ms-theme-description{margin-bottom:2rem}#metaslider-ui .sweet-modal .columns .theme-details-column ul.ms-theme-tags{margin:0}#metaslider-ui .sweet-modal .columns .theme-details-column ul.ms-theme-tags li{background:#d3d3d3;border-radius:.2em;color:#555;display:inline-block;font-size:13px;line-height:1;margin-right:.4em;padding:5px;white-space:nowrap}#metaslider-ui .free-themes-not-found{max-width:455px}#metaslider-ui .free-themes-not-found h1{color:#dd6923}#metaslider-ui .ms-image-selector{display:flex;flex-wrap:wrap;margin:0;padding:.5rem}#metaslider-ui .ms-image-selector li{background:#fafafa;cursor:pointer;margin:0;padding:2px;width:33.3%}@media screen and (min-width:1850px){#metaslider-ui .ms-image-selector li{width:25%}}@media screen and (max-width:1099px){#metaslider-ui .ms-image-selector li{width:50%}}@media screen and (max-width:899px){#metaslider-ui .ms-image-selector li{width:100%}}#metaslider-ui .ms-image-selector li img{display:block;max-width:100%;width:100%}#metaslider-ui .ms-image-selector li span{border:4px solid #fafafa;display:block;height:100%;padding:2px}#metaslider-ui .ms-image-selector li:hover span{border-color:#ccc}#metaslider-ui .ms-image-selector li.selected span{border-color:#0074a7}#metaslider-ui .ms-image-selector li.ms-theme-more{cursor:default}#metaslider-ui .ms-image-selector li.ms-theme-more span{background:#efefef;border-color:#fff!important;font-size:1.5em;height:100%;line-height:1.3;text-transform:uppercase}#metaslider-ui .ms-image-selector li.ms-theme-more span>div{align-items:center;border:4px solid #eaeaea;display:flex;flex-direction:column;height:100%;justify-content:space-around;padding:2rem}#metaslider-ui .ms-image-selector li.ms-theme-more span small{font-size:15px;text-transform:none}#metaslider-ui .theme-select-module{min-height:70px}#metaslider-ui .theme-select-module .button-info{margin-top:0}#metaslider-ui .metaslider-theme-viewer{position:relative;z-index:3}#metaslider-ui .metaslider-theme-viewer.ms-modal-open{z-index:999999}#metaslider-ui .theme-select-module .hndle{padding-bottom:0}#metaslider-ui .theme-select-module .hndle span{color:#dd6923}#metaslider-ui .theme-select-module .slider-not-supported-warning{margin-bottom:1em}#metaslider-ui .theme-select-module .slider-not-supported-warning svg{color:#e82323!important}#metaslider-ui .theme-select-module .sweet-buttons .slider-not-supported-warning{margin-bottom:0}#metaslider-ui .theme-select-module .change-theme-img-button img{display:block;max-width:100%;width:100%}#metaslider-ui .ms-current-theme .custom-theme-single{height:177px;min-height:0}#metaslider-ui .ms-current-theme .custom-theme-single .custom-subtitle{color:#d9d9d9;font-size:12px;font-weight:300;margin-bottom:.1em;text-transform:uppercase}#metaslider-ui .custom-theme-single{align-items:center;background-color:#2271b1;box-sizing:border-box;color:#fff;display:flex;flex-direction:column;font-size:24px;font-weight:600;height:100%;justify-content:center;line-height:normal;min-height:216px;padding:1rem;width:100%}.regular-themes .unlock-pro-theme-ad span{position:relative}.regular-themes .unlock-pro-theme-ad .custom-theme-single{position:absolute;z-index:2}.regular-themes .unlock-pro-theme-ad img{height:auto!important;width:calc(100% - 4px)!important;z-index:1}.regular-themes .unlock-pro-theme-ad .upgrade-pro-theme-ad{height:calc(100% - 4px)!important;width:calc(100% - 4px)!important}@media (max-width:1199px) and (min-width:1100px){.regular-themes .unlock-pro-custom-themes-ad .upgrade-pro-theme-ad h3,.regular-themes .unlock-pro-theme-ad .upgrade-pro-theme-ad h3{display:none}}#metaslider-ui .sweet-modal-tabs li.sweet-modal-tab{display:none!important}@media screen and (max-width:699px){#metaslider-ui .sweet-modal .sweet-content{display:block}#metaslider-ui .sweet-modal .columns{flex-direction:column}#metaslider-ui .sweet-modal .columns>div{position:static!important;width:100%!important}}",""]),e.Z=i},1250:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,'@keyframes animateSuccessTip{0%{left:1px;top:19px;width:0}54%{left:1px;top:19px;width:0}70%{left:-8px;top:37px;width:50px}84%{left:21px;top:48px;width:17px}to{left:14px;top:45px;width:25px}}@keyframes animateSuccessLong{0%{right:46px;top:54px;width:0}65%{right:46px;top:54px;width:0}84%{right:0;top:35px;width:55px}to{right:8px;top:38px;width:47px}}@keyframes rotatePlaceholder{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}.animateSuccessTip{animation:animateSuccessTip .75s}.animateSuccessLong{animation:animateSuccessLong .75s}.sweet-modal-icon.sweet-modal-success.animate:after{animation:rotatePlaceholder 4.25s ease-in}@keyframes animateErrorIcon{0%{opacity:0;transform:rotateX(100deg)}to{opacity:1;transform:rotateX(0deg)}}.animateErrorIcon{animation:animateErrorIcon .5s}@keyframes animateXMark{0%{margin-top:26px;opacity:0;transform:scale(.4)}50%{margin-top:26px;opacity:0;transform:scale(.4)}80%{margin-top:-6px;transform:scale(1.15)}to{margin-top:0;opacity:1;transform:scale(1)}}.animateXMark{animation:animateXMark .5s}@keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}.pulseWarning{animation:pulseWarning .75s infinite alternate}@keyframes pulseWarningIns{0%{background-color:#f8d486}to{background-color:#f8bb86}}.pulseWarningIns{animation:pulseWarningIns .75s infinite alternate}@keyframes rotate-loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.sweet-modal-icon{border:4px solid gray;border-radius:50%;box-sizing:content-box;height:80px;margin:auto;padding:0;position:relative;width:80px}.sweet-modal-icon.sweet-modal-error{border-color:#f44336}.sweet-modal-icon.sweet-modal-error .sweet-modal-x-mark{display:block;position:relative}.sweet-modal-icon.sweet-modal-error .sweet-modal-line{background-color:#f44336;border-radius:2px;display:block;height:5px;position:absolute;top:37px;width:47px}.sweet-modal-icon.sweet-modal-error .sweet-modal-line.sweet-modal-left{left:17px;transform:rotate(45deg)}.sweet-modal-icon.sweet-modal-error .sweet-modal-line.sweet-modal-right{right:16px;transform:rotate(-45deg)}.sweet-modal-icon.sweet-modal-warning{border-color:#ff9800}.sweet-modal-icon.sweet-modal-warning .sweet-modal-body{background-color:#ff9800;border-radius:2px;height:47px;left:50%;margin-left:-2px;position:absolute;top:10px;width:5px}.sweet-modal-icon.sweet-modal-warning .sweet-modal-dot{background-color:#ff9800;border-radius:50%;bottom:10px;height:7px;left:50%;margin-left:-3px;position:absolute;width:7px}.sweet-modal-icon.sweet-modal-info{border-color:#039be5}.sweet-modal-icon.sweet-modal-info:before{background-color:#039be5;border-radius:2px;bottom:17px;content:"";height:29px;left:50%;margin-left:-2px;position:absolute;width:5px}.sweet-modal-icon.sweet-modal-info:after{background-color:#039be5;border-radius:50%;content:"";height:7px;margin-left:-3px;position:absolute;top:19px;width:7px}.sweet-modal-icon.sweet-modal-success{border-color:#4caf50}.sweet-modal-icon.sweet-modal-success:after,.sweet-modal-icon.sweet-modal-success:before{background:#fff;border-radius:40px;content:"";height:120px;position:absolute;transform:rotate(45deg);width:60px}.sweet-modal-icon.sweet-modal-success:before{border-radius:120px 0 0 120px;left:-33px;top:-7px;transform:rotate(-45deg);transform-origin:60px 60px}.sweet-modal-icon.sweet-modal-success:after{border-radius:0 120px 120px 0;left:30px;top:-11px;transform:rotate(-45deg);transform-origin:0 60px}.sweet-modal-icon.sweet-modal-success .sweet-modal-placeholder{border:4px solid rgba(76,175,80,.2);border-radius:50%;box-sizing:content-box;height:80px;left:-4px;position:absolute;top:-4px;width:80px;z-index:2}.sweet-modal-icon.sweet-modal-success .sweet-modal-fix{background-color:#fff;height:90px;left:28px;position:absolute;top:8px;transform:rotate(-45deg);width:7px;z-index:1}.sweet-modal-icon.sweet-modal-success .sweet-modal-line{background-color:#4caf50;border-radius:2px;display:block;height:5px;position:absolute;z-index:2}.sweet-modal-icon.sweet-modal-success .sweet-modal-line.sweet-modal-tip{left:14px;top:46px;transform:rotate(45deg);width:25px}.sweet-modal-icon.sweet-modal-success .sweet-modal-line.sweet-modal-long{right:8px;top:38px;transform:rotate(-45deg);width:47px}.sweet-modal-icon.sweet-modal-custom{background-position:50%;background-repeat:no-repeat;background-size:contain;border:none;border-radius:0}.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success .sweet-modal-fix,.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success:after,.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success:before{background-color:#182028}.sweet-modal-overlay{-webkit-font-smoothing:antialiased;background:hsla(0,0%,100%,.9);font-size:14px;height:100vh;left:0;opacity:0;-webkit-perspective:500px;position:fixed;top:0;transform:translateZ(0);transition:opacity .3s;width:100vw;z-index:9001}.sweet-modal-overlay.theme-dark{background:rgba(24,32,40,.94)}.sweet-modal-overlay.is-visible{opacity:1}.sweet-modal{background:#fff;border-radius:2px;box-shadow:0 8px 46px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.03);box-sizing:border-box;left:50%;max-height:100vh;max-width:640px;opacity:0;overflow-y:auto;position:absolute;top:50%;transform:scale(.9) translate(calc(-50% - 32px),-50%);transition-delay:.05s;transition-duration:.3s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.52,.02,.19,1.02);width:80%}.sweet-modal .sweet-box-actions{position:absolute;right:12px;top:12px}.sweet-modal .sweet-box-actions .sweet-action-close{border-radius:50%;color:#222c38;cursor:pointer;display:inline-block;height:42px;line-height:42px;text-align:center;width:42px}.sweet-modal .sweet-box-actions .sweet-action-close svg{height:24px;margin-top:-2px;vertical-align:middle;width:24px}.sweet-modal .sweet-box-actions .sweet-action-close svg,.sweet-modal .sweet-box-actions .sweet-action-close svg circle,.sweet-modal .sweet-box-actions .sweet-action-close svg path,.sweet-modal .sweet-box-actions .sweet-action-close svg polygon,.sweet-modal .sweet-box-actions .sweet-action-close svg rect{fill:currentColor}.sweet-modal .sweet-box-actions .sweet-action-close:hover{background:#039be5;color:#fff}.sweet-modal .sweet-title{border-bottom:1px solid #eaeaea;height:64px;line-height:64px;padding-left:32px;padding-right:64px}.sweet-modal .sweet-title,.sweet-modal .sweet-title>h2{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sweet-modal .sweet-title>h2{font-size:22px;font-weight:500;margin:0;padding:0}.sweet-modal ul.sweet-modal-tabs{align-items:center;display:flex;height:100%;list-style-type:none;margin:0 0 0 -32px;overflow-x:auto;padding:0;width:calc(100% + 32px)}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab{display:block;height:100%}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a{align-items:center;color:#222c38;display:flex;height:100%;overflow:hidden;padding-left:20px;padding-right:20px;text-align:center;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-title{display:block}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon{display:block;line-height:1}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg{height:16px;width:16px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img circle,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img path,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img polygon,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img rect,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg circle,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg path,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg polygon,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg rect{fill:currentColor}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon+span.sweet-modal-tab-title{line-height:1;margin-top:8px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab:first-child a{padding-left:32px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab.active a{color:#039be5;font-weight:600}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab.disabled a{color:#999;cursor:default;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.sweet-modal.has-tabs:not(.has-title) .sweet-title{height:84px;line-height:84px}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs{border-bottom:1px solid #eaeaea;height:48px;margin:0;width:100%}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a{margin-top:-4px}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon{display:inline-block}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg{margin-right:8px;margin-top:-2px;vertical-align:middle}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-title{display:inline-block}.sweet-modal .sweet-content{align-items:center;display:flex;line-height:1.5;padding:24px 32px}.sweet-modal .sweet-content .sweet-content-content{flex-grow:1}.sweet-modal .sweet-content .sweet-modal-tab:not(.active){display:none}.sweet-modal .sweet-content .sweet-modal-icon{margin-bottom:36px}.sweet-modal .sweet-buttons{padding:12px 20px;text-align:right}.sweet-modal .sweet-content+.sweet-buttons{border-top:1px solid #eaeaea}.sweet-modal.is-alert .sweet-content{display:block;font-size:16px;padding-bottom:64px;padding-top:64px;text-align:center}.sweet-modal.has-tabs.has-icon .sweet-content{padding-bottom:32px;padding-top:32px}.sweet-modal.has-tabs.has-icon .sweet-content .sweet-content-content{padding-left:32px}.sweet-modal.has-tabs.has-icon .sweet-content .sweet-modal-icon,.sweet-modal:not(.has-content) .sweet-modal-icon{margin-bottom:0}.sweet-modal.theme-dark{background:#182028;color:#fff}.sweet-modal.theme-dark .sweet-box-actions .sweet-action-close{color:#fff}.sweet-modal.theme-dark .sweet-title{border-bottom-color:#090c0f;box-shadow:0 1px 0 #273442}.sweet-modal.theme-dark ul.sweet-modal-tabs li a{color:#fff}.sweet-modal.theme-dark ul.sweet-modal-tabs li.active a{color:#039be5}.sweet-modal.theme-dark ul.sweet-modal-tabs li.disabled a{color:#3e5368}.sweet-modal.theme-dark.has-tabs.has-title ul.sweet-modal-tabs{border-bottom-color:#090c0f;box-shadow:0 1px 0 #273442}.sweet-modal.theme-dark .sweet-content+.sweet-buttons{border-top-color:#273442;box-shadow:0 -1px 0 #090c0f}.sweet-modal .sweet-buttons,.sweet-modal .sweet-content{opacity:0;transition-delay:.09s;transition-duration:.3s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.52,.02,.19,1.02)}.sweet-modal .sweet-content{transform:translateY(-8px)}.sweet-modal .sweet-buttons{transform:translateY(16px)}.sweet-modal.is-visible{opacity:1;transform:translate(-50%,-50%)}.sweet-modal.is-visible .sweet-buttons,.sweet-modal.is-visible .sweet-content{opacity:1;transform:none}.sweet-modal.bounce{animation-direction:alternate;animation-duration:.3s;animation-iteration-count:2;animation-name:bounce}@media screen and (min-width:601px){@keyframes bounce{0%{transform:scale(1) translate(-50%,-50%)}50%{transform:scale(1.02) translate(calc(-50% + 8px),-50%)}to{transform:scale(1) translate(-50%,-50%)}}}@media screen and (max-width:600px){.sweet-modal.is-mobile-fullscreen{height:100vh;left:0;top:0;transform:scale(.9);width:100%}.sweet-modal.is-mobile-fullscreen.is-visible{transform:none}.sweet-modal.is-mobile-fullscreen .sweet-buttons{bottom:0;box-sizing:border-box;left:0;position:absolute;width:100%}}',""]),e.Z=i},5085:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-59da3806]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-59da3806;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-59da3806{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},4982:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-14128e16]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-14128e16;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-14128e16{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},7329:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-54e7a0bf]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-54e7a0bf;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-54e7a0bf{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},1989:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-36b0821f]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-36b0821f;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-36b0821f{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},2693:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-78d91dd4]{animation-duration:3s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-78d91dd4;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-78d91dd4{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},9184:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,'.top-arrow:before{background:#fff!important;border-radius:2px!important;border-right:1px solid #dae1e7!important;border-top:1px solid #dae1e7!important;content:""!important;display:block!important;height:14px!important;left:15px!important;position:absolute!important;top:-7px!important;transform:rotate(-45deg)!important;width:14px!important;z-index:1000!important}[dir=rtl] .top-arrow:before{left:auto!important;right:15px!important}',""]),e.Z=i},620:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#metaslider-current-title:focus~svg,#metaslider-current-title:hover~svg{opacity:1!important}",""]),e.Z=i},1519:function(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,r){"string"==typeof t&&(t=[[null,t,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var s=this[o][0];null!=s&&(i[s]=!0)}for(var a=0;a<t.length;a++){var l=[].concat(t[a]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),e.push(l))}},e}},2378:function(t,e,n){t=n.nmd(t);var r="__lodash_hash_undefined__",i=9007199254740991,o="[object Arguments]",s="[object AsyncFunction]",a="[object Function]",l="[object GeneratorFunction]",c="[object Null]",u="[object Object]",d="[object Proxy]",f="[object Undefined]",p=/^\[object .+?Constructor\]$/,h=/^(?:0|[1-9]\d*)$/,m={};m["[object Float32Array]"]=m["[object Float64Array]"]=m["[object Int8Array]"]=m["[object Int16Array]"]=m["[object Int32Array]"]=m["[object Uint8Array]"]=m["[object Uint8ClampedArray]"]=m["[object Uint16Array]"]=m["[object Uint32Array]"]=!0,m[o]=m["[object Array]"]=m["[object ArrayBuffer]"]=m["[object Boolean]"]=m["[object DataView]"]=m["[object Date]"]=m["[object Error]"]=m[a]=m["[object Map]"]=m["[object Number]"]=m[u]=m["[object RegExp]"]=m["[object Set]"]=m["[object String]"]=m["[object WeakMap]"]=!1;var g="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,v="object"==typeof self&&self&&self.Object===Object&&self,w=g||v||Function("return this")(),y=e&&!e.nodeType&&e,b=y&&t&&!t.nodeType&&t,_=b&&b.exports===y,x=_&&g.process,k=function(){try{var t=b&&b.require&&b.require("util").types;return t||x&&x.binding&&x.binding("util")}catch(t){}}(),S=k&&k.isTypedArray;var C,O,T,E=Array.prototype,j=Function.prototype,A=Object.prototype,P=w["__core-js_shared__"],M=j.toString,I=A.hasOwnProperty,L=(C=/[^.]+$/.exec(P&&P.keys&&P.keys.IE_PROTO||""))?"Symbol(src)_1."+C:"",$=A.toString,D=M.call(Object),N=RegExp("^"+M.call(I).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),F=_?w.Buffer:void 0,B=w.Symbol,R=w.Uint8Array,z=F?F.allocUnsafe:void 0,U=(O=Object.getPrototypeOf,T=Object,function(t){return O(T(t))}),V=Object.create,H=A.propertyIsEnumerable,q=E.splice,W=B?B.toStringTag:void 0,Z=function(){try{var t=yt(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),Y=F?F.isBuffer:void 0,G=Math.max,J=Date.now,K=yt(w,"Map"),X=yt(Object,"create"),Q=function(){function t(){}return function(e){if(!Pt(e))return{};if(V)return V(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();function tt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function et(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function nt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function rt(t){var e=this.__data__=new et(t);this.size=e.size}function it(t,e){var n=Ot(t),r=!n&&Ct(t),i=!n&&!r&&Et(t),o=!n&&!r&&!i&&It(t),s=n||r||i||o,a=s?function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}(t.length,String):[],l=a.length;for(var c in t)!e&&!I.call(t,c)||s&&("length"==c||i&&("offset"==c||"parent"==c)||o&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||bt(c,l))||a.push(c);return a}function ot(t,e,n){(void 0!==n&&!St(t[e],n)||void 0===n&&!(e in t))&&lt(t,e,n)}function st(t,e,n){var r=t[e];I.call(t,e)&&St(r,n)&&(void 0!==n||e in t)||lt(t,e,n)}function at(t,e){for(var n=t.length;n--;)if(St(t[n][0],e))return n;return-1}function lt(t,e,n){"__proto__"==e&&Z?Z(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}tt.prototype.clear=function(){this.__data__=X?X(null):{},this.size=0},tt.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},tt.prototype.get=function(t){var e=this.__data__;if(X){var n=e[t];return n===r?void 0:n}return I.call(e,t)?e[t]:void 0},tt.prototype.has=function(t){var e=this.__data__;return X?void 0!==e[t]:I.call(e,t)},tt.prototype.set=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=X&&void 0===e?r:e,this},et.prototype.clear=function(){this.__data__=[],this.size=0},et.prototype.delete=function(t){var e=this.__data__,n=at(e,t);return!(n<0)&&(n==e.length-1?e.pop():q.call(e,n,1),--this.size,!0)},et.prototype.get=function(t){var e=this.__data__,n=at(e,t);return n<0?void 0:e[n][1]},et.prototype.has=function(t){return at(this.__data__,t)>-1},et.prototype.set=function(t,e){var n=this.__data__,r=at(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this},nt.prototype.clear=function(){this.size=0,this.__data__={hash:new tt,map:new(K||et),string:new tt}},nt.prototype.delete=function(t){var e=wt(this,t).delete(t);return this.size-=e?1:0,e},nt.prototype.get=function(t){return wt(this,t).get(t)},nt.prototype.has=function(t){return wt(this,t).has(t)},nt.prototype.set=function(t,e){var n=wt(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this},rt.prototype.clear=function(){this.__data__=new et,this.size=0},rt.prototype.delete=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n},rt.prototype.get=function(t){return this.__data__.get(t)},rt.prototype.has=function(t){return this.__data__.has(t)},rt.prototype.set=function(t,e){var n=this.__data__;if(n instanceof et){var r=n.__data__;if(!K||r.length<199)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new nt(r)}return n.set(t,e),this.size=n.size,this};var ct,ut=function(t,e,n){for(var r=-1,i=Object(t),o=n(t),s=o.length;s--;){var a=o[ct?s:++r];if(!1===e(i[a],a,i))break}return t};function dt(t){return null==t?void 0===t?f:c:W&&W in Object(t)?function(t){var e=I.call(t,W),n=t[W];try{t[W]=void 0;var r=!0}catch(t){}var i=$.call(t);r&&(e?t[W]=n:delete t[W]);return i}(t):function(t){return $.call(t)}(t)}function ft(t){return Mt(t)&&dt(t)==o}function pt(t){return!(!Pt(t)||function(t){return!!L&&L in t}(t))&&(jt(t)?N:p).test(function(t){if(null!=t){try{return M.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}function ht(t){if(!Pt(t))return function(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e}(t);var e=_t(t),n=[];for(var r in t)("constructor"!=r||!e&&I.call(t,r))&&n.push(r);return n}function mt(t,e,n,r,i){t!==e&&ut(e,(function(o,s){if(i||(i=new rt),Pt(o))!function(t,e,n,r,i,o,s){var a=xt(t,n),l=xt(e,n),c=s.get(l);if(c)return void ot(t,n,c);var d=o?o(a,l,n+"",t,e,s):void 0,f=void 0===d;if(f){var p=Ot(l),h=!p&&Et(l),m=!p&&!h&&It(l);d=l,p||h||m?Ot(a)?d=a:Mt(b=a)&&Tt(b)?d=function(t,e){var n=-1,r=t.length;e||(e=Array(r));for(;++n<r;)e[n]=t[n];return e}(a):h?(f=!1,d=function(t,e){if(e)return t.slice();var n=t.length,r=z?z(n):new t.constructor(n);return t.copy(r),r}(l,!0)):m?(f=!1,g=l,v=!0?(w=g.buffer,y=new w.constructor(w.byteLength),new R(y).set(new R(w)),y):g.buffer,d=new g.constructor(v,g.byteOffset,g.length)):d=[]:function(t){if(!Mt(t)||dt(t)!=u)return!1;var e=U(t);if(null===e)return!0;var n=I.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&M.call(n)==D}(l)||Ct(l)?(d=a,Ct(a)?d=function(t){return function(t,e,n,r){var i=!n;n||(n={});var o=-1,s=e.length;for(;++o<s;){var a=e[o],l=r?r(n[a],t[a],a,n,t):void 0;void 0===l&&(l=t[a]),i?lt(n,a,l):st(n,a,l)}return n}(t,Lt(t))}(a):Pt(a)&&!jt(a)||(d=function(t){return"function"!=typeof t.constructor||_t(t)?{}:Q(U(t))}(l))):f=!1}var g,v,w,y;var b;f&&(s.set(l,d),i(d,l,r,o,s),s.delete(l));ot(t,n,d)}(t,e,s,n,mt,r,i);else{var a=r?r(xt(t,s),o,s+"",t,e,i):void 0;void 0===a&&(a=o),ot(t,s,a)}}),Lt)}function gt(t,e){return kt(function(t,e,n){return e=G(void 0===e?t.length-1:e,0),function(){for(var r=arguments,i=-1,o=G(r.length-e,0),s=Array(o);++i<o;)s[i]=r[e+i];i=-1;for(var a=Array(e+1);++i<e;)a[i]=r[i];return a[e]=n(s),function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}(t,this,a)}}(t,e,Nt),t+"")}var vt=Z?function(t,e){return Z(t,"toString",{configurable:!0,enumerable:!1,value:(n=e,function(){return n}),writable:!0});var n}:Nt;function wt(t,e){var n,r,i=t.__data__;return("string"==(r=typeof(n=e))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?i["string"==typeof e?"string":"hash"]:i.map}function yt(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return pt(n)?n:void 0}function bt(t,e){var n=typeof t;return!!(e=null==e?i:e)&&("number"==n||"symbol"!=n&&h.test(t))&&t>-1&&t%1==0&&t<e}function _t(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||A)}function xt(t,e){if(("constructor"!==e||"function"!=typeof t[e])&&"__proto__"!=e)return t[e]}var kt=function(t){var e=0,n=0;return function(){var r=J(),i=16-(r-n);if(n=r,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(vt);function St(t,e){return t===e||t!=t&&e!=e}var Ct=ft(function(){return arguments}())?ft:function(t){return Mt(t)&&I.call(t,"callee")&&!H.call(t,"callee")},Ot=Array.isArray;function Tt(t){return null!=t&&At(t.length)&&!jt(t)}var Et=Y||function(){return!1};function jt(t){if(!Pt(t))return!1;var e=dt(t);return e==a||e==l||e==s||e==d}function At(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=i}function Pt(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function Mt(t){return null!=t&&"object"==typeof t}var It=S?function(t){return function(e){return t(e)}}(S):function(t){return Mt(t)&&At(t.length)&&!!m[dt(t)]};function Lt(t){return Tt(t)?it(t,!0):ht(t)}var $t,Dt=($t=function(t,e,n){mt(t,e,n)},gt((function(t,e){var n=-1,r=e.length,i=r>1?e[r-1]:void 0,o=r>2?e[2]:void 0;for(i=$t.length>3&&"function"==typeof i?(r--,i):void 0,o&&function(t,e,n){if(!Pt(n))return!1;var r=typeof e;return!!("number"==r?Tt(n)&&bt(e,n.length):"string"==r&&e in n)&&St(n[e],t)}(e[0],e[1],o)&&(i=r<3?void 0:i,r=1),t=Object(t);++n<r;){var s=e[n];s&&$t(t,s,n,i)}return t})));function Nt(t){return t}t.exports=Dt},9490:function(t,e){"use strict";function n(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function r(t,e,r){return e&&n(t.prototype,e),r&&n(t,r),t}function i(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function o(t){return o=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},o(t)}function s(t,e){return s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},s(t,e)}function a(t,e,n){return a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}()?Reflect.construct:function(t,e,n){var r=[null];r.push.apply(r,e);var i=new(Function.bind.apply(t,r));return n&&s(i,n.prototype),i},a.apply(null,arguments)}function l(t){var e="function"==typeof Map?new Map:void 0;return l=function(t){if(null===t||(n=t,-1===Function.toString.call(n).indexOf("[native code]")))return t;var n;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,r)}function r(){return a(t,arguments,o(this).constructor)}return r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),s(r,t)},l(t)}function c(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function u(t){var e=0;if("undefined"==typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=function(t,e){if(t){if("string"==typeof t)return c(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(t,e):void 0}}(t)))return function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(e=t[Symbol.iterator]()).next.bind(e)}var d=function(t){function e(){return t.apply(this,arguments)||this}return i(e,t),e}(l(Error)),f=function(t){function e(e){return t.call(this,"Invalid DateTime: "+e.toMessage())||this}return i(e,t),e}(d),p=function(t){function e(e){return t.call(this,"Invalid Interval: "+e.toMessage())||this}return i(e,t),e}(d),h=function(t){function e(e){return t.call(this,"Invalid Duration: "+e.toMessage())||this}return i(e,t),e}(d),m=function(t){function e(){return t.apply(this,arguments)||this}return i(e,t),e}(d),g=function(t){function e(e){return t.call(this,"Invalid unit "+e)||this}return i(e,t),e}(d),v=function(t){function e(){return t.apply(this,arguments)||this}return i(e,t),e}(d),w=function(t){function e(){return t.call(this,"Zone is an abstract class")||this}return i(e,t),e}(d),y="numeric",b="short",_="long",x={year:y,month:y,day:y},k={year:y,month:b,day:y},S={year:y,month:b,day:y,weekday:b},C={year:y,month:_,day:y},O={year:y,month:_,day:y,weekday:_},T={hour:y,minute:y},E={hour:y,minute:y,second:y},j={hour:y,minute:y,second:y,timeZoneName:b},A={hour:y,minute:y,second:y,timeZoneName:_},P={hour:y,minute:y,hour12:!1},M={hour:y,minute:y,second:y,hour12:!1},I={hour:y,minute:y,second:y,hour12:!1,timeZoneName:b},L={hour:y,minute:y,second:y,hour12:!1,timeZoneName:_},$={year:y,month:y,day:y,hour:y,minute:y},D={year:y,month:y,day:y,hour:y,minute:y,second:y},N={year:y,month:b,day:y,hour:y,minute:y},F={year:y,month:b,day:y,hour:y,minute:y,second:y},B={year:y,month:b,day:y,weekday:b,hour:y,minute:y},R={year:y,month:_,day:y,hour:y,minute:y,timeZoneName:b},z={year:y,month:_,day:y,hour:y,minute:y,second:y,timeZoneName:b},U={year:y,month:_,day:y,weekday:_,hour:y,minute:y,timeZoneName:_},V={year:y,month:_,day:y,weekday:_,hour:y,minute:y,second:y,timeZoneName:_};function H(t){return void 0===t}function q(t){return"number"==typeof t}function W(t){return"number"==typeof t&&t%1==0}function Z(){try{return"undefined"!=typeof Intl&&Intl.DateTimeFormat}catch(t){return!1}}function Y(){return!H(Intl.DateTimeFormat.prototype.formatToParts)}function G(){try{return"undefined"!=typeof Intl&&!!Intl.RelativeTimeFormat}catch(t){return!1}}function J(t,e,n){if(0!==t.length)return t.reduce((function(t,r){var i=[e(r),r];return t&&n(t[0],i[0])===t[0]?t:i}),null)[1]}function K(t,e){return e.reduce((function(e,n){return e[n]=t[n],e}),{})}function X(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function Q(t,e,n){return W(t)&&t>=e&&t<=n}function tt(t,e){void 0===e&&(e=2);var n=t<0?"-":"",r=n?-1*t:t;return""+n+(r.toString().length<e?("0".repeat(e)+r).slice(-e):r.toString())}function et(t){return H(t)||null===t||""===t?void 0:parseInt(t,10)}function nt(t){if(!H(t)&&null!==t&&""!==t){var e=1e3*parseFloat("0."+t);return Math.floor(e)}}function rt(t,e,n){void 0===n&&(n=!1);var r=Math.pow(10,e);return(n?Math.trunc:Math.round)(t*r)/r}function it(t){return t%4==0&&(t%100!=0||t%400==0)}function ot(t){return it(t)?366:365}function st(t,e){var n=function(t,e){return t-e*Math.floor(t/e)}(e-1,12)+1;return 2===n?it(t+(e-n)/12)?29:28:[31,null,31,30,31,30,31,31,30,31,30,31][n-1]}function at(t){var e=Date.UTC(t.year,t.month-1,t.day,t.hour,t.minute,t.second,t.millisecond);return t.year<100&&t.year>=0&&(e=new Date(e)).setUTCFullYear(e.getUTCFullYear()-1900),+e}function lt(t){var e=(t+Math.floor(t/4)-Math.floor(t/100)+Math.floor(t/400))%7,n=t-1,r=(n+Math.floor(n/4)-Math.floor(n/100)+Math.floor(n/400))%7;return 4===e||3===r?53:52}function ct(t){return t>99?t:t>60?1900+t:2e3+t}function ut(t,e,n,r){void 0===r&&(r=null);var i=new Date(t),o={hour12:!1,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"};r&&(o.timeZone=r);var s=Object.assign({timeZoneName:e},o),a=Z();if(a&&Y()){var l=new Intl.DateTimeFormat(n,s).formatToParts(i).find((function(t){return"timezonename"===t.type.toLowerCase()}));return l?l.value:null}if(a){var c=new Intl.DateTimeFormat(n,o).format(i);return new Intl.DateTimeFormat(n,s).format(i).substring(c.length).replace(/^[, \u200e]+/,"")}return null}function dt(t,e){var n=parseInt(t,10);Number.isNaN(n)&&(n=0);var r=parseInt(e,10)||0;return 60*n+(n<0||Object.is(n,-0)?-r:r)}function ft(t){var e=Number(t);if("boolean"==typeof t||""===t||Number.isNaN(e))throw new v("Invalid unit value "+t);return e}function pt(t,e,n){var r={};for(var i in t)if(X(t,i)){if(n.indexOf(i)>=0)continue;var o=t[i];if(null==o)continue;r[e(i)]=ft(o)}return r}function ht(t,e){var n=Math.trunc(Math.abs(t/60)),r=Math.trunc(Math.abs(t%60)),i=t>=0?"+":"-";switch(e){case"short":return""+i+tt(n,2)+":"+tt(r,2);case"narrow":return""+i+n+(r>0?":"+r:"");case"techie":return""+i+tt(n,2)+tt(r,2);default:throw new RangeError("Value format "+e+" is out of range for property format")}}function mt(t){return K(t,["hour","minute","second","millisecond"])}var gt=/[A-Za-z_+-]{1,256}(:?\/[A-Za-z_+-]{1,256}(\/[A-Za-z_+-]{1,256})?)?/;function vt(t){return JSON.stringify(t,Object.keys(t).sort())}var wt=["January","February","March","April","May","June","July","August","September","October","November","December"],yt=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],bt=["J","F","M","A","M","J","J","A","S","O","N","D"];function _t(t){switch(t){case"narrow":return[].concat(bt);case"short":return[].concat(yt);case"long":return[].concat(wt);case"numeric":return["1","2","3","4","5","6","7","8","9","10","11","12"];case"2-digit":return["01","02","03","04","05","06","07","08","09","10","11","12"];default:return null}}var xt=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],kt=["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],St=["M","T","W","T","F","S","S"];function Ct(t){switch(t){case"narrow":return[].concat(St);case"short":return[].concat(kt);case"long":return[].concat(xt);case"numeric":return["1","2","3","4","5","6","7"];default:return null}}var Ot=["AM","PM"],Tt=["Before Christ","Anno Domini"],Et=["BC","AD"],jt=["B","A"];function At(t){switch(t){case"narrow":return[].concat(jt);case"short":return[].concat(Et);case"long":return[].concat(Tt);default:return null}}function Pt(t,e){for(var n,r="",i=u(t);!(n=i()).done;){var o=n.value;o.literal?r+=o.val:r+=e(o.val)}return r}var Mt={D:x,DD:k,DDD:C,DDDD:O,t:T,tt:E,ttt:j,tttt:A,T:P,TT:M,TTT:I,TTTT:L,f:$,ff:N,fff:R,ffff:U,F:D,FF:F,FFF:z,FFFF:V},It=function(){function t(t,e){this.opts=e,this.loc=t,this.systemLoc=null}t.create=function(e,n){return void 0===n&&(n={}),new t(e,n)},t.parseFormat=function(t){for(var e=null,n="",r=!1,i=[],o=0;o<t.length;o++){var s=t.charAt(o);"'"===s?(n.length>0&&i.push({literal:r,val:n}),e=null,n="",r=!r):r||s===e?n+=s:(n.length>0&&i.push({literal:!1,val:n}),n=s,e=s)}return n.length>0&&i.push({literal:r,val:n}),i},t.macroTokenToFormatOpts=function(t){return Mt[t]};var e=t.prototype;return e.formatWithSystemDefault=function(t,e){return null===this.systemLoc&&(this.systemLoc=this.loc.redefaultToSystem()),this.systemLoc.dtFormatter(t,Object.assign({},this.opts,e)).format()},e.formatDateTime=function(t,e){return void 0===e&&(e={}),this.loc.dtFormatter(t,Object.assign({},this.opts,e)).format()},e.formatDateTimeParts=function(t,e){return void 0===e&&(e={}),this.loc.dtFormatter(t,Object.assign({},this.opts,e)).formatToParts()},e.resolvedOptions=function(t,e){return void 0===e&&(e={}),this.loc.dtFormatter(t,Object.assign({},this.opts,e)).resolvedOptions()},e.num=function(t,e){if(void 0===e&&(e=0),this.opts.forceSimple)return tt(t,e);var n=Object.assign({},this.opts);return e>0&&(n.padTo=e),this.loc.numberFormatter(n).format(t)},e.formatDateTimeFromString=function(e,n){var r=this,i="en"===this.loc.listingMode(),o=this.loc.outputCalendar&&"gregory"!==this.loc.outputCalendar&&Y(),s=function(t,n){return r.loc.extract(e,t,n)},a=function(t){return e.isOffsetFixed&&0===e.offset&&t.allowZ?"Z":e.isValid?e.zone.formatOffset(e.ts,t.format):""},l=function(){return i?function(t){return Ot[t.hour<12?0:1]}(e):s({hour:"numeric",hour12:!0},"dayperiod")},c=function(t,n){return i?function(t,e){return _t(e)[t.month-1]}(e,t):s(n?{month:t}:{month:t,day:"numeric"},"month")},u=function(t,n){return i?function(t,e){return Ct(e)[t.weekday-1]}(e,t):s(n?{weekday:t}:{weekday:t,month:"long",day:"numeric"},"weekday")},d=function(t){return i?function(t,e){return At(e)[t.year<0?0:1]}(e,t):s({era:t},"era")};return Pt(t.parseFormat(n),(function(n){switch(n){case"S":return r.num(e.millisecond);case"u":case"SSS":return r.num(e.millisecond,3);case"s":return r.num(e.second);case"ss":return r.num(e.second,2);case"m":return r.num(e.minute);case"mm":return r.num(e.minute,2);case"h":return r.num(e.hour%12==0?12:e.hour%12);case"hh":return r.num(e.hour%12==0?12:e.hour%12,2);case"H":return r.num(e.hour);case"HH":return r.num(e.hour,2);case"Z":return a({format:"narrow",allowZ:r.opts.allowZ});case"ZZ":return a({format:"short",allowZ:r.opts.allowZ});case"ZZZ":return a({format:"techie",allowZ:r.opts.allowZ});case"ZZZZ":return e.zone.offsetName(e.ts,{format:"short",locale:r.loc.locale});case"ZZZZZ":return e.zone.offsetName(e.ts,{format:"long",locale:r.loc.locale});case"z":return e.zoneName;case"a":return l();case"d":return o?s({day:"numeric"},"day"):r.num(e.day);case"dd":return o?s({day:"2-digit"},"day"):r.num(e.day,2);case"c":case"E":return r.num(e.weekday);case"ccc":return u("short",!0);case"cccc":return u("long",!0);case"ccccc":return u("narrow",!0);case"EEE":return u("short",!1);case"EEEE":return u("long",!1);case"EEEEE":return u("narrow",!1);case"L":return o?s({month:"numeric",day:"numeric"},"month"):r.num(e.month);case"LL":return o?s({month:"2-digit",day:"numeric"},"month"):r.num(e.month,2);case"LLL":return c("short",!0);case"LLLL":return c("long",!0);case"LLLLL":return c("narrow",!0);case"M":return o?s({month:"numeric"},"month"):r.num(e.month);case"MM":return o?s({month:"2-digit"},"month"):r.num(e.month,2);case"MMM":return c("short",!1);case"MMMM":return c("long",!1);case"MMMMM":return c("narrow",!1);case"y":return o?s({year:"numeric"},"year"):r.num(e.year);case"yy":return o?s({year:"2-digit"},"year"):r.num(e.year.toString().slice(-2),2);case"yyyy":return o?s({year:"numeric"},"year"):r.num(e.year,4);case"yyyyyy":return o?s({year:"numeric"},"year"):r.num(e.year,6);case"G":return d("short");case"GG":return d("long");case"GGGGG":return d("narrow");case"kk":return r.num(e.weekYear.toString().slice(-2),2);case"kkkk":return r.num(e.weekYear,4);case"W":return r.num(e.weekNumber);case"WW":return r.num(e.weekNumber,2);case"o":return r.num(e.ordinal);case"ooo":return r.num(e.ordinal,3);case"q":return r.num(e.quarter);case"qq":return r.num(e.quarter,2);case"X":return r.num(Math.floor(e.ts/1e3));case"x":return r.num(e.ts);default:return function(n){var i=t.macroTokenToFormatOpts(n);return i?r.formatWithSystemDefault(e,i):n}(n)}}))},e.formatDurationFromString=function(e,n){var r,i=this,o=function(t){switch(t[0]){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":return"hour";case"d":return"day";case"M":return"month";case"y":return"year";default:return null}},s=t.parseFormat(n),a=s.reduce((function(t,e){var n=e.literal,r=e.val;return n?t:t.concat(r)}),[]),l=e.shiftTo.apply(e,a.map(o).filter((function(t){return t})));return Pt(s,(r=l,function(t){var e=o(t);return e?i.num(r.get(e),t.length):t}))},t}(),Lt=function(){function t(t,e){this.reason=t,this.explanation=e}return t.prototype.toMessage=function(){return this.explanation?this.reason+": "+this.explanation:this.reason},t}(),$t=function(){function t(){}var e=t.prototype;return e.offsetName=function(t,e){throw new w},e.formatOffset=function(t,e){throw new w},e.offset=function(t){throw new w},e.equals=function(t){throw new w},r(t,[{key:"type",get:function(){throw new w}},{key:"name",get:function(){throw new w}},{key:"universal",get:function(){throw new w}},{key:"isValid",get:function(){throw new w}}]),t}(),Dt=null,Nt=function(t){function e(){return t.apply(this,arguments)||this}i(e,t);var n=e.prototype;return n.offsetName=function(t,e){return ut(t,e.format,e.locale)},n.formatOffset=function(t,e){return ht(this.offset(t),e)},n.offset=function(t){return-new Date(t).getTimezoneOffset()},n.equals=function(t){return"local"===t.type},r(e,[{key:"type",get:function(){return"local"}},{key:"name",get:function(){return Z()?(new Intl.DateTimeFormat).resolvedOptions().timeZone:"local"}},{key:"universal",get:function(){return!1}},{key:"isValid",get:function(){return!0}}],[{key:"instance",get:function(){return null===Dt&&(Dt=new e),Dt}}]),e}($t),Ft=RegExp("^"+gt.source+"$"),Bt={};var Rt={year:0,month:1,day:2,hour:3,minute:4,second:5};var zt={},Ut=function(t){function e(n){var r;return(r=t.call(this)||this).zoneName=n,r.valid=e.isValidZone(n),r}i(e,t),e.create=function(t){return zt[t]||(zt[t]=new e(t)),zt[t]},e.resetCache=function(){zt={},Bt={}},e.isValidSpecifier=function(t){return!(!t||!t.match(Ft))},e.isValidZone=function(t){try{return new Intl.DateTimeFormat("en-US",{timeZone:t}).format(),!0}catch(t){return!1}},e.parseGMTOffset=function(t){if(t){var e=t.match(/^Etc\/GMT(0|[+-]\d{1,2})$/i);if(e)return-60*parseInt(e[1])}return null};var n=e.prototype;return n.offsetName=function(t,e){return ut(t,e.format,e.locale,this.name)},n.formatOffset=function(t,e){return ht(this.offset(t),e)},n.offset=function(t){var e=new Date(t);if(isNaN(e))return NaN;var n,r=(n=this.name,Bt[n]||(Bt[n]=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:n,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})),Bt[n]),i=r.formatToParts?function(t,e){for(var n=t.formatToParts(e),r=[],i=0;i<n.length;i++){var o=n[i],s=o.type,a=o.value,l=Rt[s];H(l)||(r[l]=parseInt(a,10))}return r}(r,e):function(t,e){var n=t.format(e).replace(/\u200E/g,""),r=/(\d+)\/(\d+)\/(\d+),? (\d+):(\d+):(\d+)/.exec(n),i=r[1],o=r[2];return[r[3],i,o,r[4],r[5],r[6]]}(r,e),o=i[0],s=i[1],a=i[2],l=i[3],c=+e,u=c%1e3;return(at({year:o,month:s,day:a,hour:24===l?0:l,minute:i[4],second:i[5],millisecond:0})-(c-=u>=0?u:1e3+u))/6e4},n.equals=function(t){return"iana"===t.type&&t.name===this.name},r(e,[{key:"type",get:function(){return"iana"}},{key:"name",get:function(){return this.zoneName}},{key:"universal",get:function(){return!1}},{key:"isValid",get:function(){return this.valid}}]),e}($t),Vt=null,Ht=function(t){function e(e){var n;return(n=t.call(this)||this).fixed=e,n}i(e,t),e.instance=function(t){return 0===t?e.utcInstance:new e(t)},e.parseSpecifier=function(t){if(t){var n=t.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);if(n)return new e(dt(n[1],n[2]))}return null},r(e,null,[{key:"utcInstance",get:function(){return null===Vt&&(Vt=new e(0)),Vt}}]);var n=e.prototype;return n.offsetName=function(){return this.name},n.formatOffset=function(t,e){return ht(this.fixed,e)},n.offset=function(){return this.fixed},n.equals=function(t){return"fixed"===t.type&&t.fixed===this.fixed},r(e,[{key:"type",get:function(){return"fixed"}},{key:"name",get:function(){return 0===this.fixed?"UTC":"UTC"+ht(this.fixed,"narrow")}},{key:"universal",get:function(){return!0}},{key:"isValid",get:function(){return!0}}]),e}($t),qt=function(t){function e(e){var n;return(n=t.call(this)||this).zoneName=e,n}i(e,t);var n=e.prototype;return n.offsetName=function(){return null},n.formatOffset=function(){return""},n.offset=function(){return NaN},n.equals=function(){return!1},r(e,[{key:"type",get:function(){return"invalid"}},{key:"name",get:function(){return this.zoneName}},{key:"universal",get:function(){return!1}},{key:"isValid",get:function(){return!1}}]),e}($t);function Wt(t,e){var n;if(H(t)||null===t)return e;if(t instanceof $t)return t;if("string"==typeof t){var r=t.toLowerCase();return"local"===r?e:"utc"===r||"gmt"===r?Ht.utcInstance:null!=(n=Ut.parseGMTOffset(t))?Ht.instance(n):Ut.isValidSpecifier(r)?Ut.create(t):Ht.parseSpecifier(r)||new qt(t)}return q(t)?Ht.instance(t):"object"==typeof t&&t.offset&&"number"==typeof t.offset?t:new qt(t)}var Zt=function(){return Date.now()},Yt=null,Gt=null,Jt=null,Kt=null,Xt=!1,Qt=function(){function t(){}return t.resetCaches=function(){ue.resetCache(),Ut.resetCache()},r(t,null,[{key:"now",get:function(){return Zt},set:function(t){Zt=t}},{key:"defaultZoneName",get:function(){return t.defaultZone.name},set:function(t){Yt=t?Wt(t):null}},{key:"defaultZone",get:function(){return Yt||Nt.instance}},{key:"defaultLocale",get:function(){return Gt},set:function(t){Gt=t}},{key:"defaultNumberingSystem",get:function(){return Jt},set:function(t){Jt=t}},{key:"defaultOutputCalendar",get:function(){return Kt},set:function(t){Kt=t}},{key:"throwOnInvalid",get:function(){return Xt},set:function(t){Xt=t}}]),t}(),te={};function ee(t,e){void 0===e&&(e={});var n=JSON.stringify([t,e]),r=te[n];return r||(r=new Intl.DateTimeFormat(t,e),te[n]=r),r}var ne={};var re={};function ie(t,e){void 0===e&&(e={});var n=e,r=(n.base,function(t,e){if(null==t)return{};var n,r,i={},o=Object.keys(t);for(r=0;r<o.length;r++)n=o[r],e.indexOf(n)>=0||(i[n]=t[n]);return i}(n,["base"])),i=JSON.stringify([t,r]),o=re[i];return o||(o=new Intl.RelativeTimeFormat(t,e),re[i]=o),o}var oe=null;function se(t,e,n,r,i){var o=t.listingMode(n);return"error"===o?null:"en"===o?r(e):i(e)}var ae=function(){function t(t,e,n){if(this.padTo=n.padTo||0,this.floor=n.floor||!1,!e&&Z()){var r={useGrouping:!1};n.padTo>0&&(r.minimumIntegerDigits=n.padTo),this.inf=function(t,e){void 0===e&&(e={});var n=JSON.stringify([t,e]),r=ne[n];return r||(r=new Intl.NumberFormat(t,e),ne[n]=r),r}(t,r)}}return t.prototype.format=function(t){if(this.inf){var e=this.floor?Math.floor(t):t;return this.inf.format(e)}return tt(this.floor?Math.floor(t):rt(t,3),this.padTo)},t}(),le=function(){function t(t,e,n){var r;if(this.opts=n,this.hasIntl=Z(),t.zone.universal&&this.hasIntl){var i=t.offset/60*-1,o=i>=0?"Etc/GMT+"+i:"Etc/GMT"+i,s=Ut.isValidZone(o);0!==t.offset&&s?(r=o,this.dt=t):(r="UTC",n.timeZoneName?this.dt=t:this.dt=0===t.offset?t:pr.fromMillis(t.ts+60*t.offset*1e3))}else"local"===t.zone.type?this.dt=t:(this.dt=t,r=t.zone.name);if(this.hasIntl){var a=Object.assign({},this.opts);r&&(a.timeZone=r),this.dtf=ee(e,a)}}var e=t.prototype;return e.format=function(){if(this.hasIntl)return this.dtf.format(this.dt.toJSDate());var t=function(t){var e="EEEE, LLLL d, yyyy, h:mm a";switch(vt(K(t,["weekday","era","year","month","day","hour","minute","second","timeZoneName","hour12"]))){case vt(x):return"M/d/yyyy";case vt(k):return"LLL d, yyyy";case vt(S):return"EEE, LLL d, yyyy";case vt(C):return"LLLL d, yyyy";case vt(O):return"EEEE, LLLL d, yyyy";case vt(T):return"h:mm a";case vt(E):return"h:mm:ss a";case vt(j):case vt(A):return"h:mm a";case vt(P):return"HH:mm";case vt(M):return"HH:mm:ss";case vt(I):case vt(L):return"HH:mm";case vt($):return"M/d/yyyy, h:mm a";case vt(N):return"LLL d, yyyy, h:mm a";case vt(R):return"LLLL d, yyyy, h:mm a";case vt(U):return e;case vt(D):return"M/d/yyyy, h:mm:ss a";case vt(F):return"LLL d, yyyy, h:mm:ss a";case vt(B):return"EEE, d LLL yyyy, h:mm a";case vt(z):return"LLLL d, yyyy, h:mm:ss a";case vt(V):return"EEEE, LLLL d, yyyy, h:mm:ss a";default:return e}}(this.opts),e=ue.create("en-US");return It.create(e).formatDateTimeFromString(this.dt,t)},e.formatToParts=function(){return this.hasIntl&&Y()?this.dtf.formatToParts(this.dt.toJSDate()):[]},e.resolvedOptions=function(){return this.hasIntl?this.dtf.resolvedOptions():{locale:"en-US",numberingSystem:"latn",outputCalendar:"gregory"}},t}(),ce=function(){function t(t,e,n){this.opts=Object.assign({style:"long"},n),!e&&G()&&(this.rtf=ie(t,n))}var e=t.prototype;return e.format=function(t,e){return this.rtf?this.rtf.format(t,e):function(t,e,n,r){void 0===n&&(n="always"),void 0===r&&(r=!1);var i={years:["year","yr."],quarters:["quarter","qtr."],months:["month","mo."],weeks:["week","wk."],days:["day","day","days"],hours:["hour","hr."],minutes:["minute","min."],seconds:["second","sec."]},o=-1===["hours","minutes","seconds"].indexOf(t);if("auto"===n&&o){var s="days"===t;switch(e){case 1:return s?"tomorrow":"next "+i[t][0];case-1:return s?"yesterday":"last "+i[t][0];case 0:return s?"today":"this "+i[t][0]}}var a=Object.is(e,-0)||e<0,l=Math.abs(e),c=1===l,u=i[t],d=r?c?u[1]:u[2]||u[1]:c?i[t][0]:t;return a?l+" "+d+" ago":"in "+l+" "+d}(e,t,this.opts.numeric,"long"!==this.opts.style)},e.formatToParts=function(t,e){return this.rtf?this.rtf.formatToParts(t,e):[]},t}(),ue=function(){function t(t,e,n,r){var i=function(t){var e=t.indexOf("-u-");if(-1===e)return[t];var n,r=t.substring(0,e);try{n=ee(t).resolvedOptions()}catch(t){n=ee(r).resolvedOptions()}var i=n;return[r,i.numberingSystem,i.calendar]}(t),o=i[0],s=i[1],a=i[2];this.locale=o,this.numberingSystem=e||s||null,this.outputCalendar=n||a||null,this.intl=function(t,e,n){return Z()?n||e?(t+="-u",n&&(t+="-ca-"+n),e&&(t+="-nu-"+e),t):t:[]}(this.locale,this.numberingSystem,this.outputCalendar),this.weekdaysCache={format:{},standalone:{}},this.monthsCache={format:{},standalone:{}},this.meridiemCache=null,this.eraCache={},this.specifiedLocale=r,this.fastNumbersCached=null}t.fromOpts=function(e){return t.create(e.locale,e.numberingSystem,e.outputCalendar,e.defaultToEN)},t.create=function(e,n,r,i){void 0===i&&(i=!1);var o=e||Qt.defaultLocale;return new t(o||(i?"en-US":function(){if(oe)return oe;if(Z()){var t=(new Intl.DateTimeFormat).resolvedOptions().locale;return oe=t&&"und"!==t?t:"en-US"}return oe="en-US"}()),n||Qt.defaultNumberingSystem,r||Qt.defaultOutputCalendar,o)},t.resetCache=function(){oe=null,te={},ne={},re={}},t.fromObject=function(e){var n=void 0===e?{}:e,r=n.locale,i=n.numberingSystem,o=n.outputCalendar;return t.create(r,i,o)};var e=t.prototype;return e.listingMode=function(t){void 0===t&&(t=!0);var e=Z()&&Y(),n=this.isEnglish(),r=!(null!==this.numberingSystem&&"latn"!==this.numberingSystem||null!==this.outputCalendar&&"gregory"!==this.outputCalendar);return e||n&&r||t?!e||n&&r?"en":"intl":"error"},e.clone=function(e){return e&&0!==Object.getOwnPropertyNames(e).length?t.create(e.locale||this.specifiedLocale,e.numberingSystem||this.numberingSystem,e.outputCalendar||this.outputCalendar,e.defaultToEN||!1):this},e.redefaultToEN=function(t){return void 0===t&&(t={}),this.clone(Object.assign({},t,{defaultToEN:!0}))},e.redefaultToSystem=function(t){return void 0===t&&(t={}),this.clone(Object.assign({},t,{defaultToEN:!1}))},e.months=function(t,e,n){var r=this;return void 0===e&&(e=!1),void 0===n&&(n=!0),se(this,t,n,_t,(function(){var n=e?{month:t,day:"numeric"}:{month:t},i=e?"format":"standalone";return r.monthsCache[i][t]||(r.monthsCache[i][t]=function(t){for(var e=[],n=1;n<=12;n++){var r=pr.utc(2016,n,1);e.push(t(r))}return e}((function(t){return r.extract(t,n,"month")}))),r.monthsCache[i][t]}))},e.weekdays=function(t,e,n){var r=this;return void 0===e&&(e=!1),void 0===n&&(n=!0),se(this,t,n,Ct,(function(){var n=e?{weekday:t,year:"numeric",month:"long",day:"numeric"}:{weekday:t},i=e?"format":"standalone";return r.weekdaysCache[i][t]||(r.weekdaysCache[i][t]=function(t){for(var e=[],n=1;n<=7;n++){var r=pr.utc(2016,11,13+n);e.push(t(r))}return e}((function(t){return r.extract(t,n,"weekday")}))),r.weekdaysCache[i][t]}))},e.meridiems=function(t){var e=this;return void 0===t&&(t=!0),se(this,void 0,t,(function(){return Ot}),(function(){if(!e.meridiemCache){var t={hour:"numeric",hour12:!0};e.meridiemCache=[pr.utc(2016,11,13,9),pr.utc(2016,11,13,19)].map((function(n){return e.extract(n,t,"dayperiod")}))}return e.meridiemCache}))},e.eras=function(t,e){var n=this;return void 0===e&&(e=!0),se(this,t,e,At,(function(){var e={era:t};return n.eraCache[t]||(n.eraCache[t]=[pr.utc(-40,1,1),pr.utc(2017,1,1)].map((function(t){return n.extract(t,e,"era")}))),n.eraCache[t]}))},e.extract=function(t,e,n){var r=this.dtFormatter(t,e).formatToParts().find((function(t){return t.type.toLowerCase()===n}));return r?r.value:null},e.numberFormatter=function(t){return void 0===t&&(t={}),new ae(this.intl,t.forceSimple||this.fastNumbers,t)},e.dtFormatter=function(t,e){return void 0===e&&(e={}),new le(t,this.intl,e)},e.relFormatter=function(t){return void 0===t&&(t={}),new ce(this.intl,this.isEnglish(),t)},e.isEnglish=function(){return"en"===this.locale||"en-us"===this.locale.toLowerCase()||Z()&&new Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith("en-us")},e.equals=function(t){return this.locale===t.locale&&this.numberingSystem===t.numberingSystem&&this.outputCalendar===t.outputCalendar},r(t,[{key:"fastNumbers",get:function(){var t;return null==this.fastNumbersCached&&(this.fastNumbersCached=(!(t=this).numberingSystem||"latn"===t.numberingSystem)&&("latn"===t.numberingSystem||!t.locale||t.locale.startsWith("en")||Z()&&"latn"===new Intl.DateTimeFormat(t.intl).resolvedOptions().numberingSystem)),this.fastNumbersCached}}]),t}();function de(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var r=e.reduce((function(t,e){return t+e.source}),"");return RegExp("^"+r+"$")}function fe(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce((function(e,n){var r=e[0],i=e[1],o=e[2],s=n(t,o),a=s[0],l=s[1],c=s[2];return[Object.assign(r,a),i||l,c]}),[{},null,1]).slice(0,2)}}function pe(t){if(null==t)return[null,null];for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];for(var i=0,o=n;i<o.length;i++){var s=o[i],a=s[0],l=s[1],c=a.exec(t);if(c)return l(c)}return[null,null]}function he(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t,n){var r,i={};for(r=0;r<e.length;r++)i[e[r]]=et(t[n+r]);return[i,null,n+r]}}var me=/(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/,ge=/(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/,ve=RegExp(""+ge.source+me.source+"?"),we=RegExp("(?:T"+ve.source+")?"),ye=he("weekYear","weekNumber","weekDay"),be=he("year","ordinal"),_e=RegExp(ge.source+" ?(?:"+me.source+"|("+gt.source+"))?"),xe=RegExp("(?: "+_e.source+")?");function ke(t,e,n){var r=t[e];return H(r)?n:et(r)}function Se(t,e){return[{year:ke(t,e),month:ke(t,e+1,1),day:ke(t,e+2,1)},null,e+3]}function Ce(t,e){return[{hours:ke(t,e,0),minutes:ke(t,e+1,0),seconds:ke(t,e+2,0),milliseconds:nt(t[e+3])},null,e+4]}function Oe(t,e){var n=!t[e]&&!t[e+1],r=dt(t[e+1],t[e+2]);return[{},n?null:Ht.instance(r),e+3]}function Te(t,e){return[{},t[e]?Ut.create(t[e]):null,e+1]}var Ee=RegExp("^T?"+ge.source+"$"),je=/^-?P(?:(?:(-?\d{1,9})Y)?(?:(-?\d{1,9})M)?(?:(-?\d{1,9})W)?(?:(-?\d{1,9})D)?(?:T(?:(-?\d{1,9})H)?(?:(-?\d{1,9})M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,9}))?S)?)?)$/;function Ae(t){var e=t[0],n=t[1],r=t[2],i=t[3],o=t[4],s=t[5],a=t[6],l=t[7],c=t[8],u="-"===e[0],d=l&&"-"===l[0],f=function(t,e){return void 0===e&&(e=!1),void 0!==t&&(e||t&&u)?-t:t};return[{years:f(et(n)),months:f(et(r)),weeks:f(et(i)),days:f(et(o)),hours:f(et(s)),minutes:f(et(a)),seconds:f(et(l),"-0"===l),milliseconds:f(nt(c),d)}]}var Pe={GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function Me(t,e,n,r,i,o,s){var a={year:2===e.length?ct(et(e)):et(e),month:yt.indexOf(n)+1,day:et(r),hour:et(i),minute:et(o)};return s&&(a.second=et(s)),t&&(a.weekday=t.length>3?xt.indexOf(t)+1:kt.indexOf(t)+1),a}var Ie=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;function Le(t){var e,n=t[1],r=t[2],i=t[3],o=t[4],s=t[5],a=t[6],l=t[7],c=t[8],u=t[9],d=t[10],f=t[11],p=Me(n,o,i,r,s,a,l);return e=c?Pe[c]:u?0:dt(d,f),[p,new Ht(e)]}var $e=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/,De=/^(Monday|Tuesday|Wedsday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/,Ne=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;function Fe(t){var e=t[1],n=t[2],r=t[3];return[Me(e,t[4],r,n,t[5],t[6],t[7]),Ht.utcInstance]}function Be(t){var e=t[1],n=t[2],r=t[3],i=t[4],o=t[5],s=t[6];return[Me(e,t[7],n,r,i,o,s),Ht.utcInstance]}var Re=de(/([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/,we),ze=de(/(\d{4})-?W(\d\d)(?:-?(\d))?/,we),Ue=de(/(\d{4})-?(\d{3})/,we),Ve=de(ve),He=fe(Se,Ce,Oe),qe=fe(ye,Ce,Oe),We=fe(be,Ce,Oe),Ze=fe(Ce,Oe);var Ye=fe(Ce);var Ge=de(/(\d{4})-(\d\d)-(\d\d)/,xe),Je=de(_e),Ke=fe(Se,Ce,Oe,Te),Xe=fe(Ce,Oe,Te);var Qe={weeks:{days:7,hours:168,minutes:10080,seconds:604800,milliseconds:6048e5},days:{hours:24,minutes:1440,seconds:86400,milliseconds:864e5},hours:{minutes:60,seconds:3600,milliseconds:36e5},minutes:{seconds:60,milliseconds:6e4},seconds:{milliseconds:1e3}},tn=Object.assign({years:{quarters:4,months:12,weeks:52,days:365,hours:8760,minutes:525600,seconds:31536e3,milliseconds:31536e6},quarters:{months:3,weeks:13,days:91,hours:2184,minutes:131040,seconds:7862400,milliseconds:78624e5},months:{weeks:4,days:30,hours:720,minutes:43200,seconds:2592e3,milliseconds:2592e6}},Qe),en=365.2425,nn=30.436875,rn=Object.assign({years:{quarters:4,months:12,weeks:52.1775,days:en,hours:8765.82,minutes:525949.2,seconds:525949.2*60,milliseconds:525949.2*60*1e3},quarters:{months:3,weeks:13.044375,days:91.310625,hours:2191.455,minutes:131487.3,seconds:525949.2*60/4,milliseconds:7889237999.999999},months:{weeks:4.3481250000000005,days:nn,hours:730.485,minutes:43829.1,seconds:2629746,milliseconds:2629746e3}},Qe),on=["years","quarters","months","weeks","days","hours","minutes","seconds","milliseconds"],sn=on.slice(0).reverse();function an(t,e,n){void 0===n&&(n=!1);var r={values:n?e.values:Object.assign({},t.values,e.values||{}),loc:t.loc.clone(e.loc),conversionAccuracy:e.conversionAccuracy||t.conversionAccuracy};return new cn(r)}function ln(t,e,n,r,i){var o=t[i][n],s=e[n]/o,a=!(Math.sign(s)===Math.sign(r[i]))&&0!==r[i]&&Math.abs(s)<=1?function(t){return t<0?Math.floor(t):Math.ceil(t)}(s):Math.trunc(s);r[i]+=a,e[n]-=a*o}var cn=function(){function t(t){var e="longterm"===t.conversionAccuracy||!1;this.values=t.values,this.loc=t.loc||ue.create(),this.conversionAccuracy=e?"longterm":"casual",this.invalid=t.invalid||null,this.matrix=e?rn:tn,this.isLuxonDuration=!0}t.fromMillis=function(e,n){return t.fromObject(Object.assign({milliseconds:e},n))},t.fromObject=function(e){if(null==e||"object"!=typeof e)throw new v("Duration.fromObject: argument expected to be an object, got "+(null===e?"null":typeof e));return new t({values:pt(e,t.normalizeUnit,["locale","numberingSystem","conversionAccuracy","zone"]),loc:ue.fromObject(e),conversionAccuracy:e.conversionAccuracy})},t.fromISO=function(e,n){var r=function(t){return pe(t,[je,Ae])}(e),i=r[0];if(i){var o=Object.assign(i,n);return t.fromObject(o)}return t.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},t.fromISOTime=function(e,n){var r=function(t){return pe(t,[Ee,Ye])}(e),i=r[0];if(i){var o=Object.assign(i,n);return t.fromObject(o)}return t.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},t.invalid=function(e,n){if(void 0===n&&(n=null),!e)throw new v("need to specify a reason the Duration is invalid");var r=e instanceof Lt?e:new Lt(e,n);if(Qt.throwOnInvalid)throw new h(r);return new t({invalid:r})},t.normalizeUnit=function(t){var e={year:"years",years:"years",quarter:"quarters",quarters:"quarters",month:"months",months:"months",week:"weeks",weeks:"weeks",day:"days",days:"days",hour:"hours",hours:"hours",minute:"minutes",minutes:"minutes",second:"seconds",seconds:"seconds",millisecond:"milliseconds",milliseconds:"milliseconds"}[t?t.toLowerCase():t];if(!e)throw new g(t);return e},t.isDuration=function(t){return t&&t.isLuxonDuration||!1};var e=t.prototype;return e.toFormat=function(t,e){void 0===e&&(e={});var n=Object.assign({},e,{floor:!1!==e.round&&!1!==e.floor});return this.isValid?It.create(this.loc,n).formatDurationFromString(this,t):"Invalid Duration"},e.toObject=function(t){if(void 0===t&&(t={}),!this.isValid)return{};var e=Object.assign({},this.values);return t.includeConfig&&(e.conversionAccuracy=this.conversionAccuracy,e.numberingSystem=this.loc.numberingSystem,e.locale=this.loc.locale),e},e.toISO=function(){if(!this.isValid)return null;var t="P";return 0!==this.years&&(t+=this.years+"Y"),0===this.months&&0===this.quarters||(t+=this.months+3*this.quarters+"M"),0!==this.weeks&&(t+=this.weeks+"W"),0!==this.days&&(t+=this.days+"D"),0===this.hours&&0===this.minutes&&0===this.seconds&&0===this.milliseconds||(t+="T"),0!==this.hours&&(t+=this.hours+"H"),0!==this.minutes&&(t+=this.minutes+"M"),0===this.seconds&&0===this.milliseconds||(t+=rt(this.seconds+this.milliseconds/1e3,3)+"S"),"P"===t&&(t+="T0S"),t},e.toISOTime=function(t){if(void 0===t&&(t={}),!this.isValid)return null;var e=this.toMillis();if(e<0||e>=864e5)return null;t=Object.assign({suppressMilliseconds:!1,suppressSeconds:!1,includePrefix:!1,format:"extended"},t);var n=this.shiftTo("hours","minutes","seconds","milliseconds"),r="basic"===t.format?"hhmm":"hh:mm";t.suppressSeconds&&0===n.seconds&&0===n.milliseconds||(r+="basic"===t.format?"ss":":ss",t.suppressMilliseconds&&0===n.milliseconds||(r+=".SSS"));var i=n.toFormat(r);return t.includePrefix&&(i="T"+i),i},e.toJSON=function(){return this.toISO()},e.toString=function(){return this.toISO()},e.toMillis=function(){return this.as("milliseconds")},e.valueOf=function(){return this.toMillis()},e.plus=function(t){if(!this.isValid)return this;for(var e,n=un(t),r={},i=u(on);!(e=i()).done;){var o=e.value;(X(n.values,o)||X(this.values,o))&&(r[o]=n.get(o)+this.get(o))}return an(this,{values:r},!0)},e.minus=function(t){if(!this.isValid)return this;var e=un(t);return this.plus(e.negate())},e.mapUnits=function(t){if(!this.isValid)return this;for(var e={},n=0,r=Object.keys(this.values);n<r.length;n++){var i=r[n];e[i]=ft(t(this.values[i],i))}return an(this,{values:e},!0)},e.get=function(e){return this[t.normalizeUnit(e)]},e.set=function(e){return this.isValid?an(this,{values:Object.assign(this.values,pt(e,t.normalizeUnit,[]))}):this},e.reconfigure=function(t){var e=void 0===t?{}:t,n=e.locale,r=e.numberingSystem,i=e.conversionAccuracy,o={loc:this.loc.clone({locale:n,numberingSystem:r})};return i&&(o.conversionAccuracy=i),an(this,o)},e.as=function(t){return this.isValid?this.shiftTo(t).get(t):NaN},e.normalize=function(){if(!this.isValid)return this;var t=this.toObject();return function(t,e){sn.reduce((function(n,r){return H(e[r])?n:(n&&ln(t,e,n,e,r),r)}),null)}(this.matrix,t),an(this,{values:t},!0)},e.shiftTo=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];if(!this.isValid)return this;if(0===n.length)return this;n=n.map((function(e){return t.normalizeUnit(e)}));for(var i,o,s={},a={},l=this.toObject(),c=u(on);!(o=c()).done;){var d=o.value;if(n.indexOf(d)>=0){i=d;var f=0;for(var p in a)f+=this.matrix[p][d]*a[p],a[p]=0;q(l[d])&&(f+=l[d]);var h=Math.trunc(f);for(var m in s[d]=h,a[d]=f-h,l)on.indexOf(m)>on.indexOf(d)&&ln(this.matrix,l,m,s,d)}else q(l[d])&&(a[d]=l[d])}for(var g in a)0!==a[g]&&(s[i]+=g===i?a[g]:a[g]/this.matrix[i][g]);return an(this,{values:s},!0).normalize()},e.negate=function(){if(!this.isValid)return this;for(var t={},e=0,n=Object.keys(this.values);e<n.length;e++){var r=n[e];t[r]=-this.values[r]}return an(this,{values:t},!0)},e.equals=function(t){if(!this.isValid||!t.isValid)return!1;if(!this.loc.equals(t.loc))return!1;for(var e,n=u(on);!(e=n()).done;){var r=e.value;if(i=this.values[r],o=t.values[r],!(void 0===i||0===i?void 0===o||0===o:i===o))return!1}var i,o;return!0},r(t,[{key:"locale",get:function(){return this.isValid?this.loc.locale:null}},{key:"numberingSystem",get:function(){return this.isValid?this.loc.numberingSystem:null}},{key:"years",get:function(){return this.isValid?this.values.years||0:NaN}},{key:"quarters",get:function(){return this.isValid?this.values.quarters||0:NaN}},{key:"months",get:function(){return this.isValid?this.values.months||0:NaN}},{key:"weeks",get:function(){return this.isValid?this.values.weeks||0:NaN}},{key:"days",get:function(){return this.isValid?this.values.days||0:NaN}},{key:"hours",get:function(){return this.isValid?this.values.hours||0:NaN}},{key:"minutes",get:function(){return this.isValid?this.values.minutes||0:NaN}},{key:"seconds",get:function(){return this.isValid?this.values.seconds||0:NaN}},{key:"milliseconds",get:function(){return this.isValid?this.values.milliseconds||0:NaN}},{key:"isValid",get:function(){return null===this.invalid}},{key:"invalidReason",get:function(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function(){return this.invalid?this.invalid.explanation:null}}]),t}();function un(t){if(q(t))return cn.fromMillis(t);if(cn.isDuration(t))return t;if("object"==typeof t)return cn.fromObject(t);throw new v("Unknown duration argument "+t+" of type "+typeof t)}var dn="Invalid Interval";function fn(t,e){return t&&t.isValid?e&&e.isValid?e<t?pn.invalid("end before start","The end of an interval must be after its start, but you had start="+t.toISO()+" and end="+e.toISO()):null:pn.invalid("missing or invalid end"):pn.invalid("missing or invalid start")}var pn=function(){function t(t){this.s=t.start,this.e=t.end,this.invalid=t.invalid||null,this.isLuxonInterval=!0}t.invalid=function(e,n){if(void 0===n&&(n=null),!e)throw new v("need to specify a reason the Interval is invalid");var r=e instanceof Lt?e:new Lt(e,n);if(Qt.throwOnInvalid)throw new p(r);return new t({invalid:r})},t.fromDateTimes=function(e,n){var r=hr(e),i=hr(n),o=fn(r,i);return null==o?new t({start:r,end:i}):o},t.after=function(e,n){var r=un(n),i=hr(e);return t.fromDateTimes(i,i.plus(r))},t.before=function(e,n){var r=un(n),i=hr(e);return t.fromDateTimes(i.minus(r),i)},t.fromISO=function(e,n){var r=(e||"").split("/",2),i=r[0],o=r[1];if(i&&o){var s,a,l,c;try{a=(s=pr.fromISO(i,n)).isValid}catch(o){a=!1}try{c=(l=pr.fromISO(o,n)).isValid}catch(o){c=!1}if(a&&c)return t.fromDateTimes(s,l);if(a){var u=cn.fromISO(o,n);if(u.isValid)return t.after(s,u)}else if(c){var d=cn.fromISO(i,n);if(d.isValid)return t.before(l,d)}}return t.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},t.isInterval=function(t){return t&&t.isLuxonInterval||!1};var e=t.prototype;return e.length=function(t){return void 0===t&&(t="milliseconds"),this.isValid?this.toDuration.apply(this,[t]).get(t):NaN},e.count=function(t){if(void 0===t&&(t="milliseconds"),!this.isValid)return NaN;var e=this.start.startOf(t),n=this.end.startOf(t);return Math.floor(n.diff(e,t).get(t))+1},e.hasSame=function(t){return!!this.isValid&&(this.isEmpty()||this.e.minus(1).hasSame(this.s,t))},e.isEmpty=function(){return this.s.valueOf()===this.e.valueOf()},e.isAfter=function(t){return!!this.isValid&&this.s>t},e.isBefore=function(t){return!!this.isValid&&this.e<=t},e.contains=function(t){return!!this.isValid&&(this.s<=t&&this.e>t)},e.set=function(e){var n=void 0===e?{}:e,r=n.start,i=n.end;return this.isValid?t.fromDateTimes(r||this.s,i||this.e):this},e.splitAt=function(){var e=this;if(!this.isValid)return[];for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];for(var o=r.map(hr).filter((function(t){return e.contains(t)})).sort(),s=[],a=this.s,l=0;a<this.e;){var c=o[l]||this.e,u=+c>+this.e?this.e:c;s.push(t.fromDateTimes(a,u)),a=u,l+=1}return s},e.splitBy=function(e){var n=un(e);if(!this.isValid||!n.isValid||0===n.as("milliseconds"))return[];for(var r,i=this.s,o=1,s=[];i<this.e;){var a=this.start.plus(n.mapUnits((function(t){return t*o})));r=+a>+this.e?this.e:a,s.push(t.fromDateTimes(i,r)),i=r,o+=1}return s},e.divideEqually=function(t){return this.isValid?this.splitBy(this.length()/t).slice(0,t):[]},e.overlaps=function(t){return this.e>t.s&&this.s<t.e},e.abutsStart=function(t){return!!this.isValid&&+this.e==+t.s},e.abutsEnd=function(t){return!!this.isValid&&+t.e==+this.s},e.engulfs=function(t){return!!this.isValid&&(this.s<=t.s&&this.e>=t.e)},e.equals=function(t){return!(!this.isValid||!t.isValid)&&(this.s.equals(t.s)&&this.e.equals(t.e))},e.intersection=function(e){if(!this.isValid)return this;var n=this.s>e.s?this.s:e.s,r=this.e<e.e?this.e:e.e;return n>=r?null:t.fromDateTimes(n,r)},e.union=function(e){if(!this.isValid)return this;var n=this.s<e.s?this.s:e.s,r=this.e>e.e?this.e:e.e;return t.fromDateTimes(n,r)},t.merge=function(t){var e=t.sort((function(t,e){return t.s-e.s})).reduce((function(t,e){var n=t[0],r=t[1];return r?r.overlaps(e)||r.abutsStart(e)?[n,r.union(e)]:[n.concat([r]),e]:[n,e]}),[[],null]),n=e[0],r=e[1];return r&&n.push(r),n},t.xor=function(e){for(var n,r,i=null,o=0,s=[],a=e.map((function(t){return[{time:t.s,type:"s"},{time:t.e,type:"e"}]})),l=u((n=Array.prototype).concat.apply(n,a).sort((function(t,e){return t.time-e.time})));!(r=l()).done;){var c=r.value;1===(o+="s"===c.type?1:-1)?i=c.time:(i&&+i!=+c.time&&s.push(t.fromDateTimes(i,c.time)),i=null)}return t.merge(s)},e.difference=function(){for(var e=this,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];return t.xor([this].concat(r)).map((function(t){return e.intersection(t)})).filter((function(t){return t&&!t.isEmpty()}))},e.toString=function(){return this.isValid?"["+this.s.toISO()+" – "+this.e.toISO()+")":dn},e.toISO=function(t){return this.isValid?this.s.toISO(t)+"/"+this.e.toISO(t):dn},e.toISODate=function(){return this.isValid?this.s.toISODate()+"/"+this.e.toISODate():dn},e.toISOTime=function(t){return this.isValid?this.s.toISOTime(t)+"/"+this.e.toISOTime(t):dn},e.toFormat=function(t,e){var n=(void 0===e?{}:e).separator,r=void 0===n?" – ":n;return this.isValid?""+this.s.toFormat(t)+r+this.e.toFormat(t):dn},e.toDuration=function(t,e){return this.isValid?this.e.diff(this.s,t,e):cn.invalid(this.invalidReason)},e.mapEndpoints=function(e){return t.fromDateTimes(e(this.s),e(this.e))},r(t,[{key:"start",get:function(){return this.isValid?this.s:null}},{key:"end",get:function(){return this.isValid?this.e:null}},{key:"isValid",get:function(){return null===this.invalidReason}},{key:"invalidReason",get:function(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function(){return this.invalid?this.invalid.explanation:null}}]),t}(),hn=function(){function t(){}return t.hasDST=function(t){void 0===t&&(t=Qt.defaultZone);var e=pr.now().setZone(t).set({month:12});return!t.universal&&e.offset!==e.set({month:6}).offset},t.isValidIANAZone=function(t){return Ut.isValidSpecifier(t)&&Ut.isValidZone(t)},t.normalizeZone=function(t){return Wt(t,Qt.defaultZone)},t.months=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj,l=void 0===a?null:a,c=n.outputCalendar,u=void 0===c?"gregory":c;return(l||ue.create(i,s,u)).months(t)},t.monthsFormat=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj,l=void 0===a?null:a,c=n.outputCalendar,u=void 0===c?"gregory":c;return(l||ue.create(i,s,u)).months(t,!0)},t.weekdays=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj;return((void 0===a?null:a)||ue.create(i,s,null)).weekdays(t)},t.weekdaysFormat=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj;return((void 0===a?null:a)||ue.create(i,s,null)).weekdays(t,!0)},t.meridiems=function(t){var e=(void 0===t?{}:t).locale,n=void 0===e?null:e;return ue.create(n).meridiems()},t.eras=function(t,e){void 0===t&&(t="short");var n=(void 0===e?{}:e).locale,r=void 0===n?null:n;return ue.create(r,null,"gregory").eras(t)},t.features=function(){var t=!1,e=!1,n=!1,r=!1;if(Z()){t=!0,e=Y(),r=G();try{n="America/New_York"===new Intl.DateTimeFormat("en",{timeZone:"America/New_York"}).resolvedOptions().timeZone}catch(t){n=!1}}return{intl:t,intlTokens:e,zones:n,relative:r}},t}();function mn(t,e){var n=function(t){return t.toUTC(0,{keepLocalTime:!0}).startOf("day").valueOf()},r=n(e)-n(t);return Math.floor(cn.fromMillis(r).as("days"))}function gn(t,e,n,r){var i=function(t,e,n){for(var r,i,o={},s=0,a=[["years",function(t,e){return e.year-t.year}],["quarters",function(t,e){return e.quarter-t.quarter}],["months",function(t,e){return e.month-t.month+12*(e.year-t.year)}],["weeks",function(t,e){var n=mn(t,e);return(n-n%7)/7}],["days",mn]];s<a.length;s++){var l=a[s],c=l[0],u=l[1];if(n.indexOf(c)>=0){var d;r=c;var f,p=u(t,e);(i=t.plus(((d={})[c]=p,d)))>e?(t=t.plus(((f={})[c]=p-1,f)),p-=1):t=i,o[c]=p}}return[t,o,i,r]}(t,e,n),o=i[0],s=i[1],a=i[2],l=i[3],c=e-o,u=n.filter((function(t){return["hours","minutes","seconds","milliseconds"].indexOf(t)>=0}));if(0===u.length){var d;if(a<e)a=o.plus(((d={})[l]=1,d));a!==o&&(s[l]=(s[l]||0)+c/(a-o))}var f,p=cn.fromObject(Object.assign(s,r));return u.length>0?(f=cn.fromMillis(c,r)).shiftTo.apply(f,u).plus(p):p}var vn={arab:"[٠-٩]",arabext:"[۰-۹]",bali:"[᭐-᭙]",beng:"[০-৯]",deva:"[०-९]",fullwide:"[0-9]",gujr:"[૦-૯]",hanidec:"[〇|一|二|三|四|五|六|七|八|九]",khmr:"[០-៩]",knda:"[೦-೯]",laoo:"[໐-໙]",limb:"[᥆-᥏]",mlym:"[൦-൯]",mong:"[᠐-᠙]",mymr:"[၀-၉]",orya:"[୦-୯]",tamldec:"[௦-௯]",telu:"[౦-౯]",thai:"[๐-๙]",tibt:"[༠-༩]",latn:"\\d"},wn={arab:[1632,1641],arabext:[1776,1785],bali:[6992,7001],beng:[2534,2543],deva:[2406,2415],fullwide:[65296,65303],gujr:[2790,2799],khmr:[6112,6121],knda:[3302,3311],laoo:[3792,3801],limb:[6470,6479],mlym:[3430,3439],mong:[6160,6169],mymr:[4160,4169],orya:[2918,2927],tamldec:[3046,3055],telu:[3174,3183],thai:[3664,3673],tibt:[3872,3881]},yn=vn.hanidec.replace(/[\[|\]]/g,"").split("");function bn(t,e){var n=t.numberingSystem;return void 0===e&&(e=""),new RegExp(""+vn[n||"latn"]+e)}var _n="missing Intl.DateTimeFormat.formatToParts support";function xn(t,e){return void 0===e&&(e=function(t){return t}),{regex:t,deser:function(t){var n=t[0];return e(function(t){var e=parseInt(t,10);if(isNaN(e)){e="";for(var n=0;n<t.length;n++){var r=t.charCodeAt(n);if(-1!==t[n].search(vn.hanidec))e+=yn.indexOf(t[n]);else for(var i in wn){var o=wn[i],s=o[0],a=o[1];r>=s&&r<=a&&(e+=r-s)}}return parseInt(e,10)}return e}(n))}}}var kn="( |"+String.fromCharCode(160)+")",Sn=new RegExp(kn,"g");function Cn(t){return t.replace(/\./g,"\\.?").replace(Sn,kn)}function On(t){return t.replace(/\./g,"").replace(Sn," ").toLowerCase()}function Tn(t,e){return null===t?null:{regex:RegExp(t.map(Cn).join("|")),deser:function(n){var r=n[0];return t.findIndex((function(t){return On(r)===On(t)}))+e}}}function En(t,e){return{regex:t,deser:function(t){return dt(t[1],t[2])},groups:e}}function jn(t){return{regex:t,deser:function(t){return t[0]}}}var An={year:{"2-digit":"yy",numeric:"yyyyy"},month:{numeric:"M","2-digit":"MM",short:"MMM",long:"MMMM"},day:{numeric:"d","2-digit":"dd"},weekday:{short:"EEE",long:"EEEE"},dayperiod:"a",dayPeriod:"a",hour:{numeric:"h","2-digit":"hh"},minute:{numeric:"m","2-digit":"mm"},second:{numeric:"s","2-digit":"ss"}};var Pn=null;function Mn(t,e){if(t.literal)return t;var n=It.macroTokenToFormatOpts(t.val);if(!n)return t;var r=It.create(e,n).formatDateTimeParts((Pn||(Pn=pr.fromMillis(1555555555555)),Pn)).map((function(t){return function(t,e,n){var r=t.type,i=t.value;if("literal"===r)return{literal:!0,val:i};var o=n[r],s=An[r];return"object"==typeof s&&(s=s[o]),s?{literal:!1,val:s}:void 0}(t,0,n)}));return r.includes(void 0)?t:r}function In(t,e,n){var r=function(t,e){var n;return(n=Array.prototype).concat.apply(n,t.map((function(t){return Mn(t,e)})))}(It.parseFormat(n),t),i=r.map((function(e){return n=e,i=bn(r=t),o=bn(r,"{2}"),s=bn(r,"{3}"),a=bn(r,"{4}"),l=bn(r,"{6}"),c=bn(r,"{1,2}"),u=bn(r,"{1,3}"),d=bn(r,"{1,6}"),f=bn(r,"{1,9}"),p=bn(r,"{2,4}"),h=bn(r,"{4,6}"),m=function(t){return{regex:RegExp((e=t.val,e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"))),deser:function(t){return t[0]},literal:!0};var e},g=function(t){if(n.literal)return m(t);switch(t.val){case"G":return Tn(r.eras("short",!1),0);case"GG":return Tn(r.eras("long",!1),0);case"y":return xn(d);case"yy":case"kk":return xn(p,ct);case"yyyy":case"kkkk":return xn(a);case"yyyyy":return xn(h);case"yyyyyy":return xn(l);case"M":case"L":case"d":case"H":case"h":case"m":case"q":case"s":case"W":return xn(c);case"MM":case"LL":case"dd":case"HH":case"hh":case"mm":case"qq":case"ss":case"WW":return xn(o);case"MMM":return Tn(r.months("short",!0,!1),1);case"MMMM":return Tn(r.months("long",!0,!1),1);case"LLL":return Tn(r.months("short",!1,!1),1);case"LLLL":return Tn(r.months("long",!1,!1),1);case"o":case"S":return xn(u);case"ooo":case"SSS":return xn(s);case"u":return jn(f);case"a":return Tn(r.meridiems(),0);case"E":case"c":return xn(i);case"EEE":return Tn(r.weekdays("short",!1,!1),1);case"EEEE":return Tn(r.weekdays("long",!1,!1),1);case"ccc":return Tn(r.weekdays("short",!0,!1),1);case"cccc":return Tn(r.weekdays("long",!0,!1),1);case"Z":case"ZZ":return En(new RegExp("([+-]"+c.source+")(?::("+o.source+"))?"),2);case"ZZZ":return En(new RegExp("([+-]"+c.source+")("+o.source+")?"),2);case"z":return jn(/[a-z_+-/]{1,256}?/i);default:return m(t)}}(n)||{invalidReason:_n},g.token=n,g;var n,r,i,o,s,a,l,c,u,d,f,p,h,m,g})),o=i.find((function(t){return t.invalidReason}));if(o)return{input:e,tokens:r,invalidReason:o.invalidReason};var s=function(t){return["^"+t.map((function(t){return t.regex})).reduce((function(t,e){return t+"("+e.source+")"}),"")+"$",t]}(i),a=s[0],l=s[1],c=RegExp(a,"i"),u=function(t,e,n){var r=t.match(e);if(r){var i={},o=1;for(var s in n)if(X(n,s)){var a=n[s],l=a.groups?a.groups+1:1;!a.literal&&a.token&&(i[a.token.val[0]]=a.deser(r.slice(o,o+l))),o+=l}return[r,i]}return[r,{}]}(e,c,l),d=u[0],f=u[1],p=f?function(t){var e;return e=H(t.Z)?H(t.z)?null:Ut.create(t.z):new Ht(t.Z),H(t.q)||(t.M=3*(t.q-1)+1),H(t.h)||(t.h<12&&1===t.a?t.h+=12:12===t.h&&0===t.a&&(t.h=0)),0===t.G&&t.y&&(t.y=-t.y),H(t.u)||(t.S=nt(t.u)),[Object.keys(t).reduce((function(e,n){var r=function(t){switch(t){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":case"H":return"hour";case"d":return"day";case"o":return"ordinal";case"L":case"M":return"month";case"y":return"year";case"E":case"c":return"weekday";case"W":return"weekNumber";case"k":return"weekYear";case"q":return"quarter";default:return null}}(n);return r&&(e[r]=t[n]),e}),{}),e]}(f):[null,null],h=p[0],g=p[1];if(X(f,"a")&&X(f,"H"))throw new m("Can't include meridiem when specifying 24-hour format");return{input:e,tokens:r,regex:c,rawMatches:d,matches:f,result:h,zone:g}}var Ln=[0,31,59,90,120,151,181,212,243,273,304,334],$n=[0,31,60,91,121,152,182,213,244,274,305,335];function Dn(t,e){return new Lt("unit out of range","you specified "+e+" (of type "+typeof e+") as a "+t+", which is invalid")}function Nn(t,e,n){var r=new Date(Date.UTC(t,e-1,n)).getUTCDay();return 0===r?7:r}function Fn(t,e,n){return n+(it(t)?$n:Ln)[e-1]}function Bn(t,e){var n=it(t)?$n:Ln,r=n.findIndex((function(t){return t<e}));return{month:r+1,day:e-n[r]}}function Rn(t){var e,n=t.year,r=t.month,i=t.day,o=Fn(n,r,i),s=Nn(n,r,i),a=Math.floor((o-s+10)/7);return a<1?a=lt(e=n-1):a>lt(n)?(e=n+1,a=1):e=n,Object.assign({weekYear:e,weekNumber:a,weekday:s},mt(t))}function zn(t){var e,n=t.weekYear,r=t.weekNumber,i=t.weekday,o=Nn(n,1,4),s=ot(n),a=7*r+i-o-3;a<1?a+=ot(e=n-1):a>s?(e=n+1,a-=ot(n)):e=n;var l=Bn(e,a),c=l.month,u=l.day;return Object.assign({year:e,month:c,day:u},mt(t))}function Un(t){var e=t.year,n=Fn(e,t.month,t.day);return Object.assign({year:e,ordinal:n},mt(t))}function Vn(t){var e=t.year,n=Bn(e,t.ordinal),r=n.month,i=n.day;return Object.assign({year:e,month:r,day:i},mt(t))}function Hn(t){var e=W(t.year),n=Q(t.month,1,12),r=Q(t.day,1,st(t.year,t.month));return e?n?!r&&Dn("day",t.day):Dn("month",t.month):Dn("year",t.year)}function qn(t){var e=t.hour,n=t.minute,r=t.second,i=t.millisecond,o=Q(e,0,23)||24===e&&0===n&&0===r&&0===i,s=Q(n,0,59),a=Q(r,0,59),l=Q(i,0,999);return o?s?a?!l&&Dn("millisecond",i):Dn("second",r):Dn("minute",n):Dn("hour",e)}var Wn="Invalid DateTime",Zn=864e13;function Yn(t){return new Lt("unsupported zone",'the zone "'+t.name+'" is not supported')}function Gn(t){return null===t.weekData&&(t.weekData=Rn(t.c)),t.weekData}function Jn(t,e){var n={ts:t.ts,zone:t.zone,c:t.c,o:t.o,loc:t.loc,invalid:t.invalid};return new pr(Object.assign({},n,e,{old:n}))}function Kn(t,e,n){var r=t-60*e*1e3,i=n.offset(r);if(e===i)return[r,e];r-=60*(i-e)*1e3;var o=n.offset(r);return i===o?[r,i]:[t-60*Math.min(i,o)*1e3,Math.max(i,o)]}function Xn(t,e){var n=new Date(t+=60*e*1e3);return{year:n.getUTCFullYear(),month:n.getUTCMonth()+1,day:n.getUTCDate(),hour:n.getUTCHours(),minute:n.getUTCMinutes(),second:n.getUTCSeconds(),millisecond:n.getUTCMilliseconds()}}function Qn(t,e,n){return Kn(at(t),e,n)}function tr(t,e){var n=t.o,r=t.c.year+Math.trunc(e.years),i=t.c.month+Math.trunc(e.months)+3*Math.trunc(e.quarters),o=Object.assign({},t.c,{year:r,month:i,day:Math.min(t.c.day,st(r,i))+Math.trunc(e.days)+7*Math.trunc(e.weeks)}),s=cn.fromObject({years:e.years-Math.trunc(e.years),quarters:e.quarters-Math.trunc(e.quarters),months:e.months-Math.trunc(e.months),weeks:e.weeks-Math.trunc(e.weeks),days:e.days-Math.trunc(e.days),hours:e.hours,minutes:e.minutes,seconds:e.seconds,milliseconds:e.milliseconds}).as("milliseconds"),a=Kn(at(o),n,t.zone),l=a[0],c=a[1];return 0!==s&&(l+=s,c=t.zone.offset(l)),{ts:l,o:c}}function er(t,e,n,r,i){var o=n.setZone,s=n.zone;if(t&&0!==Object.keys(t).length){var a=e||s,l=pr.fromObject(Object.assign(t,n,{zone:a,setZone:void 0}));return o?l:l.setZone(s)}return pr.invalid(new Lt("unparsable",'the input "'+i+"\" can't be parsed as "+r))}function nr(t,e,n){return void 0===n&&(n=!0),t.isValid?It.create(ue.create("en-US"),{allowZ:n,forceSimple:!0}).formatDateTimeFromString(t,e):null}function rr(t,e){var n=e.suppressSeconds,r=void 0!==n&&n,i=e.suppressMilliseconds,o=void 0!==i&&i,s=e.includeOffset,a=e.includePrefix,l=void 0!==a&&a,c=e.includeZone,u=void 0!==c&&c,d=e.spaceZone,f=void 0!==d&&d,p=e.format,h=void 0===p?"extended":p,m="basic"===h?"HHmm":"HH:mm";r&&0===t.second&&0===t.millisecond||(m+="basic"===h?"ss":":ss",o&&0===t.millisecond||(m+=".SSS")),(u||s)&&f&&(m+=" "),u?m+="z":s&&(m+="basic"===h?"ZZZ":"ZZ");var g=nr(t,m);return l&&(g="T"+g),g}var ir={month:1,day:1,hour:0,minute:0,second:0,millisecond:0},or={weekNumber:1,weekday:1,hour:0,minute:0,second:0,millisecond:0},sr={ordinal:1,hour:0,minute:0,second:0,millisecond:0},ar=["year","month","day","hour","minute","second","millisecond"],lr=["weekYear","weekNumber","weekday","hour","minute","second","millisecond"],cr=["year","ordinal","hour","minute","second","millisecond"];function ur(t){var e={year:"year",years:"year",month:"month",months:"month",day:"day",days:"day",hour:"hour",hours:"hour",minute:"minute",minutes:"minute",quarter:"quarter",quarters:"quarter",second:"second",seconds:"second",millisecond:"millisecond",milliseconds:"millisecond",weekday:"weekday",weekdays:"weekday",weeknumber:"weekNumber",weeksnumber:"weekNumber",weeknumbers:"weekNumber",weekyear:"weekYear",weekyears:"weekYear",ordinal:"ordinal"}[t.toLowerCase()];if(!e)throw new g(t);return e}function dr(t,e){for(var n,r=u(ar);!(n=r()).done;){var i=n.value;H(t[i])&&(t[i]=ir[i])}var o=Hn(t)||qn(t);if(o)return pr.invalid(o);var s=Qt.now(),a=Qn(t,e.offset(s),e),l=a[0],c=a[1];return new pr({ts:l,zone:e,o:c})}function fr(t,e,n){var r=!!H(n.round)||n.round,i=function(t,i){return t=rt(t,r||n.calendary?0:2,!0),e.loc.clone(n).relFormatter(n).format(t,i)},o=function(r){return n.calendary?e.hasSame(t,r)?0:e.startOf(r).diff(t.startOf(r),r).get(r):e.diff(t,r).get(r)};if(n.unit)return i(o(n.unit),n.unit);for(var s,a=u(n.units);!(s=a()).done;){var l=s.value,c=o(l);if(Math.abs(c)>=1)return i(c,l)}return i(t>e?-0:0,n.units[n.units.length-1])}var pr=function(){function t(t){var e=t.zone||Qt.defaultZone,n=t.invalid||(Number.isNaN(t.ts)?new Lt("invalid input"):null)||(e.isValid?null:Yn(e));this.ts=H(t.ts)?Qt.now():t.ts;var r=null,i=null;if(!n)if(t.old&&t.old.ts===this.ts&&t.old.zone.equals(e)){var o=[t.old.c,t.old.o];r=o[0],i=o[1]}else{var s=e.offset(this.ts);r=Xn(this.ts,s),r=(n=Number.isNaN(r.year)?new Lt("invalid input"):null)?null:r,i=n?null:s}this._zone=e,this.loc=t.loc||ue.create(),this.invalid=n,this.weekData=null,this.c=r,this.o=i,this.isLuxonDateTime=!0}t.now=function(){return new t({})},t.local=function(e,n,r,i,o,s,a){return H(e)?t.now():dr({year:e,month:n,day:r,hour:i,minute:o,second:s,millisecond:a},Qt.defaultZone)},t.utc=function(e,n,r,i,o,s,a){return H(e)?new t({ts:Qt.now(),zone:Ht.utcInstance}):dr({year:e,month:n,day:r,hour:i,minute:o,second:s,millisecond:a},Ht.utcInstance)},t.fromJSDate=function(e,n){void 0===n&&(n={});var r,i=(r=e,"[object Date]"===Object.prototype.toString.call(r)?e.valueOf():NaN);if(Number.isNaN(i))return t.invalid("invalid input");var o=Wt(n.zone,Qt.defaultZone);return o.isValid?new t({ts:i,zone:o,loc:ue.fromObject(n)}):t.invalid(Yn(o))},t.fromMillis=function(e,n){if(void 0===n&&(n={}),q(e))return e<-Zn||e>Zn?t.invalid("Timestamp out of range"):new t({ts:e,zone:Wt(n.zone,Qt.defaultZone),loc:ue.fromObject(n)});throw new v("fromMillis requires a numerical input, but received a "+typeof e+" with value "+e)},t.fromSeconds=function(e,n){if(void 0===n&&(n={}),q(e))return new t({ts:1e3*e,zone:Wt(n.zone,Qt.defaultZone),loc:ue.fromObject(n)});throw new v("fromSeconds requires a numerical input")},t.fromObject=function(e){var n=Wt(e.zone,Qt.defaultZone);if(!n.isValid)return t.invalid(Yn(n));var r=Qt.now(),i=n.offset(r),o=pt(e,ur,["zone","locale","outputCalendar","numberingSystem"]),s=!H(o.ordinal),a=!H(o.year),l=!H(o.month)||!H(o.day),c=a||l,d=o.weekYear||o.weekNumber,f=ue.fromObject(e);if((c||s)&&d)throw new m("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(l&&s)throw new m("Can't mix ordinal dates with month/day");var p,h,g=d||o.weekday&&!c,v=Xn(r,i);g?(p=lr,h=or,v=Rn(v)):s?(p=cr,h=sr,v=Un(v)):(p=ar,h=ir);for(var w,y=!1,b=u(p);!(w=b()).done;){var _=w.value;H(o[_])?o[_]=y?h[_]:v[_]:y=!0}var x=g?function(t){var e=W(t.weekYear),n=Q(t.weekNumber,1,lt(t.weekYear)),r=Q(t.weekday,1,7);return e?n?!r&&Dn("weekday",t.weekday):Dn("week",t.week):Dn("weekYear",t.weekYear)}(o):s?function(t){var e=W(t.year),n=Q(t.ordinal,1,ot(t.year));return e?!n&&Dn("ordinal",t.ordinal):Dn("year",t.year)}(o):Hn(o),k=x||qn(o);if(k)return t.invalid(k);var S=Qn(g?zn(o):s?Vn(o):o,i,n),C=new t({ts:S[0],zone:n,o:S[1],loc:f});return o.weekday&&c&&e.weekday!==C.weekday?t.invalid("mismatched weekday","you can't specify both a weekday of "+o.weekday+" and a date of "+C.toISO()):C},t.fromISO=function(t,e){void 0===e&&(e={});var n=function(t){return pe(t,[Re,He],[ze,qe],[Ue,We],[Ve,Ze])}(t);return er(n[0],n[1],e,"ISO 8601",t)},t.fromRFC2822=function(t,e){void 0===e&&(e={});var n=function(t){return pe(function(t){return t.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").trim()}(t),[Ie,Le])}(t);return er(n[0],n[1],e,"RFC 2822",t)},t.fromHTTP=function(t,e){void 0===e&&(e={});var n=function(t){return pe(t,[$e,Fe],[De,Fe],[Ne,Be])}(t);return er(n[0],n[1],e,"HTTP",e)},t.fromFormat=function(e,n,r){if(void 0===r&&(r={}),H(e)||H(n))throw new v("fromFormat requires an input string and a format");var i=r,o=i.locale,s=void 0===o?null:o,a=i.numberingSystem,l=void 0===a?null:a,c=function(t,e,n){var r=In(t,e,n);return[r.result,r.zone,r.invalidReason]}(ue.fromOpts({locale:s,numberingSystem:l,defaultToEN:!0}),e,n),u=c[0],d=c[1],f=c[2];return f?t.invalid(f):er(u,d,r,"format "+n,e)},t.fromString=function(e,n,r){return void 0===r&&(r={}),t.fromFormat(e,n,r)},t.fromSQL=function(t,e){void 0===e&&(e={});var n=function(t){return pe(t,[Ge,Ke],[Je,Xe])}(t);return er(n[0],n[1],e,"SQL",t)},t.invalid=function(e,n){if(void 0===n&&(n=null),!e)throw new v("need to specify a reason the DateTime is invalid");var r=e instanceof Lt?e:new Lt(e,n);if(Qt.throwOnInvalid)throw new f(r);return new t({invalid:r})},t.isDateTime=function(t){return t&&t.isLuxonDateTime||!1};var e=t.prototype;return e.get=function(t){return this[t]},e.resolvedLocaleOpts=function(t){void 0===t&&(t={});var e=It.create(this.loc.clone(t),t).resolvedOptions(this);return{locale:e.locale,numberingSystem:e.numberingSystem,outputCalendar:e.calendar}},e.toUTC=function(t,e){return void 0===t&&(t=0),void 0===e&&(e={}),this.setZone(Ht.instance(t),e)},e.toLocal=function(){return this.setZone(Qt.defaultZone)},e.setZone=function(e,n){var r=void 0===n?{}:n,i=r.keepLocalTime,o=void 0!==i&&i,s=r.keepCalendarTime,a=void 0!==s&&s;if((e=Wt(e,Qt.defaultZone)).equals(this.zone))return this;if(e.isValid){var l=this.ts;if(o||a){var c=e.offset(this.ts);l=Qn(this.toObject(),c,e)[0]}return Jn(this,{ts:l,zone:e})}return t.invalid(Yn(e))},e.reconfigure=function(t){var e=void 0===t?{}:t,n=e.locale,r=e.numberingSystem,i=e.outputCalendar;return Jn(this,{loc:this.loc.clone({locale:n,numberingSystem:r,outputCalendar:i})})},e.setLocale=function(t){return this.reconfigure({locale:t})},e.set=function(t){if(!this.isValid)return this;var e,n=pt(t,ur,[]),r=!H(n.weekYear)||!H(n.weekNumber)||!H(n.weekday),i=!H(n.ordinal),o=!H(n.year),s=!H(n.month)||!H(n.day),a=o||s,l=n.weekYear||n.weekNumber;if((a||i)&&l)throw new m("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(s&&i)throw new m("Can't mix ordinal dates with month/day");r?e=zn(Object.assign(Rn(this.c),n)):H(n.ordinal)?(e=Object.assign(this.toObject(),n),H(n.day)&&(e.day=Math.min(st(e.year,e.month),e.day))):e=Vn(Object.assign(Un(this.c),n));var c=Qn(e,this.o,this.zone);return Jn(this,{ts:c[0],o:c[1]})},e.plus=function(t){return this.isValid?Jn(this,tr(this,un(t))):this},e.minus=function(t){return this.isValid?Jn(this,tr(this,un(t).negate())):this},e.startOf=function(t){if(!this.isValid)return this;var e={},n=cn.normalizeUnit(t);switch(n){case"years":e.month=1;case"quarters":case"months":e.day=1;case"weeks":case"days":e.hour=0;case"hours":e.minute=0;case"minutes":e.second=0;case"seconds":e.millisecond=0}if("weeks"===n&&(e.weekday=1),"quarters"===n){var r=Math.ceil(this.month/3);e.month=3*(r-1)+1}return this.set(e)},e.endOf=function(t){var e;return this.isValid?this.plus((e={},e[t]=1,e)).startOf(t).minus(1):this},e.toFormat=function(t,e){return void 0===e&&(e={}),this.isValid?It.create(this.loc.redefaultToEN(e)).formatDateTimeFromString(this,t):Wn},e.toLocaleString=function(t){return void 0===t&&(t=x),this.isValid?It.create(this.loc.clone(t),t).formatDateTime(this):Wn},e.toLocaleParts=function(t){return void 0===t&&(t={}),this.isValid?It.create(this.loc.clone(t),t).formatDateTimeParts(this):[]},e.toISO=function(t){return void 0===t&&(t={}),this.isValid?this.toISODate(t)+"T"+this.toISOTime(t):null},e.toISODate=function(t){var e=(void 0===t?{}:t).format,n="basic"===(void 0===e?"extended":e)?"yyyyMMdd":"yyyy-MM-dd";return this.year>9999&&(n="+"+n),nr(this,n)},e.toISOWeekDate=function(){return nr(this,"kkkk-'W'WW-c")},e.toISOTime=function(t){var e=void 0===t?{}:t,n=e.suppressMilliseconds,r=void 0!==n&&n,i=e.suppressSeconds,o=void 0!==i&&i,s=e.includeOffset,a=void 0===s||s,l=e.includePrefix,c=void 0!==l&&l,u=e.format;return rr(this,{suppressSeconds:o,suppressMilliseconds:r,includeOffset:a,includePrefix:c,format:void 0===u?"extended":u})},e.toRFC2822=function(){return nr(this,"EEE, dd LLL yyyy HH:mm:ss ZZZ",!1)},e.toHTTP=function(){return nr(this.toUTC(),"EEE, dd LLL yyyy HH:mm:ss 'GMT'")},e.toSQLDate=function(){return nr(this,"yyyy-MM-dd")},e.toSQLTime=function(t){var e=void 0===t?{}:t,n=e.includeOffset,r=void 0===n||n,i=e.includeZone;return rr(this,{includeOffset:r,includeZone:void 0!==i&&i,spaceZone:!0})},e.toSQL=function(t){return void 0===t&&(t={}),this.isValid?this.toSQLDate()+" "+this.toSQLTime(t):null},e.toString=function(){return this.isValid?this.toISO():Wn},e.valueOf=function(){return this.toMillis()},e.toMillis=function(){return this.isValid?this.ts:NaN},e.toSeconds=function(){return this.isValid?this.ts/1e3:NaN},e.toJSON=function(){return this.toISO()},e.toBSON=function(){return this.toJSDate()},e.toObject=function(t){if(void 0===t&&(t={}),!this.isValid)return{};var e=Object.assign({},this.c);return t.includeConfig&&(e.outputCalendar=this.outputCalendar,e.numberingSystem=this.loc.numberingSystem,e.locale=this.loc.locale),e},e.toJSDate=function(){return new Date(this.isValid?this.ts:NaN)},e.diff=function(t,e,n){if(void 0===e&&(e="milliseconds"),void 0===n&&(n={}),!this.isValid||!t.isValid)return cn.invalid(this.invalid||t.invalid,"created by diffing an invalid DateTime");var r,i=Object.assign({locale:this.locale,numberingSystem:this.numberingSystem},n),o=(r=e,Array.isArray(r)?r:[r]).map(cn.normalizeUnit),s=t.valueOf()>this.valueOf(),a=gn(s?this:t,s?t:this,o,i);return s?a.negate():a},e.diffNow=function(e,n){return void 0===e&&(e="milliseconds"),void 0===n&&(n={}),this.diff(t.now(),e,n)},e.until=function(t){return this.isValid?pn.fromDateTimes(this,t):this},e.hasSame=function(t,e){if(!this.isValid)return!1;var n=t.valueOf(),r=this.setZone(t.zone,{keepLocalTime:!0});return r.startOf(e)<=n&&n<=r.endOf(e)},e.equals=function(t){return this.isValid&&t.isValid&&this.valueOf()===t.valueOf()&&this.zone.equals(t.zone)&&this.loc.equals(t.loc)},e.toRelative=function(e){if(void 0===e&&(e={}),!this.isValid)return null;var n=e.base||t.fromObject({zone:this.zone}),r=e.padding?this<n?-e.padding:e.padding:0,i=["years","months","days","hours","minutes","seconds"],o=e.unit;return Array.isArray(e.unit)&&(i=e.unit,o=void 0),fr(n,this.plus(r),Object.assign(e,{numeric:"always",units:i,unit:o}))},e.toRelativeCalendar=function(e){return void 0===e&&(e={}),this.isValid?fr(e.base||t.fromObject({zone:this.zone}),this,Object.assign(e,{numeric:"auto",units:["years","months","days"],calendary:!0})):null},t.min=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];if(!n.every(t.isDateTime))throw new v("min requires all arguments be DateTimes");return J(n,(function(t){return t.valueOf()}),Math.min)},t.max=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];if(!n.every(t.isDateTime))throw new v("max requires all arguments be DateTimes");return J(n,(function(t){return t.valueOf()}),Math.max)},t.fromFormatExplain=function(t,e,n){void 0===n&&(n={});var r=n,i=r.locale,o=void 0===i?null:i,s=r.numberingSystem,a=void 0===s?null:s;return In(ue.fromOpts({locale:o,numberingSystem:a,defaultToEN:!0}),t,e)},t.fromStringExplain=function(e,n,r){return void 0===r&&(r={}),t.fromFormatExplain(e,n,r)},r(t,[{key:"isValid",get:function(){return null===this.invalid}},{key:"invalidReason",get:function(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function(){return this.invalid?this.invalid.explanation:null}},{key:"locale",get:function(){return this.isValid?this.loc.locale:null}},{key:"numberingSystem",get:function(){return this.isValid?this.loc.numberingSystem:null}},{key:"outputCalendar",get:function(){return this.isValid?this.loc.outputCalendar:null}},{key:"zone",get:function(){return this._zone}},{key:"zoneName",get:function(){return this.isValid?this.zone.name:null}},{key:"year",get:function(){return this.isValid?this.c.year:NaN}},{key:"quarter",get:function(){return this.isValid?Math.ceil(this.c.month/3):NaN}},{key:"month",get:function(){return this.isValid?this.c.month:NaN}},{key:"day",get:function(){return this.isValid?this.c.day:NaN}},{key:"hour",get:function(){return this.isValid?this.c.hour:NaN}},{key:"minute",get:function(){return this.isValid?this.c.minute:NaN}},{key:"second",get:function(){return this.isValid?this.c.second:NaN}},{key:"millisecond",get:function(){return this.isValid?this.c.millisecond:NaN}},{key:"weekYear",get:function(){return this.isValid?Gn(this).weekYear:NaN}},{key:"weekNumber",get:function(){return this.isValid?Gn(this).weekNumber:NaN}},{key:"weekday",get:function(){return this.isValid?Gn(this).weekday:NaN}},{key:"ordinal",get:function(){return this.isValid?Un(this.c).ordinal:NaN}},{key:"monthShort",get:function(){return this.isValid?hn.months("short",{locObj:this.loc})[this.month-1]:null}},{key:"monthLong",get:function(){return this.isValid?hn.months("long",{locObj:this.loc})[this.month-1]:null}},{key:"weekdayShort",get:function(){return this.isValid?hn.weekdays("short",{locObj:this.loc})[this.weekday-1]:null}},{key:"weekdayLong",get:function(){return this.isValid?hn.weekdays("long",{locObj:this.loc})[this.weekday-1]:null}},{key:"offset",get:function(){return this.isValid?+this.o:NaN}},{key:"offsetNameShort",get:function(){return this.isValid?this.zone.offsetName(this.ts,{format:"short",locale:this.locale}):null}},{key:"offsetNameLong",get:function(){return this.isValid?this.zone.offsetName(this.ts,{format:"long",locale:this.locale}):null}},{key:"isOffsetFixed",get:function(){return this.isValid?this.zone.universal:null}},{key:"isInDST",get:function(){return!this.isOffsetFixed&&(this.offset>this.set({month:1}).offset||this.offset>this.set({month:5}).offset)}},{key:"isInLeapYear",get:function(){return it(this.year)}},{key:"daysInMonth",get:function(){return st(this.year,this.month)}},{key:"daysInYear",get:function(){return this.isValid?ot(this.year):NaN}},{key:"weeksInWeekYear",get:function(){return this.isValid?lt(this.weekYear):NaN}}],[{key:"DATE_SHORT",get:function(){return x}},{key:"DATE_MED",get:function(){return k}},{key:"DATE_MED_WITH_WEEKDAY",get:function(){return S}},{key:"DATE_FULL",get:function(){return C}},{key:"DATE_HUGE",get:function(){return O}},{key:"TIME_SIMPLE",get:function(){return T}},{key:"TIME_WITH_SECONDS",get:function(){return E}},{key:"TIME_WITH_SHORT_OFFSET",get:function(){return j}},{key:"TIME_WITH_LONG_OFFSET",get:function(){return A}},{key:"TIME_24_SIMPLE",get:function(){return P}},{key:"TIME_24_WITH_SECONDS",get:function(){return M}},{key:"TIME_24_WITH_SHORT_OFFSET",get:function(){return I}},{key:"TIME_24_WITH_LONG_OFFSET",get:function(){return L}},{key:"DATETIME_SHORT",get:function(){return $}},{key:"DATETIME_SHORT_WITH_SECONDS",get:function(){return D}},{key:"DATETIME_MED",get:function(){return N}},{key:"DATETIME_MED_WITH_SECONDS",get:function(){return F}},{key:"DATETIME_MED_WITH_WEEKDAY",get:function(){return B}},{key:"DATETIME_FULL",get:function(){return R}},{key:"DATETIME_FULL_WITH_SECONDS",get:function(){return z}},{key:"DATETIME_HUGE",get:function(){return U}},{key:"DATETIME_HUGE_WITH_SECONDS",get:function(){return V}}]),t}();function hr(t){if(pr.isDateTime(t))return t;if(t&&t.valueOf&&q(t.valueOf()))return pr.fromJSDate(t);if(t&&"object"==typeof t)return pr.fromObject(t);throw new v("Unknown datetime argument: "+t+", of type "+typeof t)}e.ou=pr},9588:function(t){t.exports=function(t,e){var n,r,i=0;function o(){var o,s,a=n,l=arguments.length;t:for(;a;){if(a.args.length===arguments.length){for(s=0;s<l;s++)if(a.args[s]!==arguments[s]){a=a.next;continue t}return a!==n&&(a===r&&(r=a.prev),a.prev.next=a.next,a.next&&(a.next.prev=a.prev),a.next=n,a.prev=null,n.prev=a,n=a),a.val}a=a.next}for(o=new Array(l),s=0;s<l;s++)o[s]=arguments[s];return a={args:o,val:t.apply(null,o)},n?(n.prev=a,a.next=n):r=a,i===e.maxSize?(r=r.prev).next=null:i++,n=a,a.val}return e=e||{},o.clear=function(){n=null,r=null,i=0},o}},631:function(t,e,n){var r="function"==typeof Map&&Map.prototype,i=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,o=r&&i&&"function"==typeof i.get?i.get:null,s=r&&Map.prototype.forEach,a="function"==typeof Set&&Set.prototype,l=Object.getOwnPropertyDescriptor&&a?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=a&&l&&"function"==typeof l.get?l.get:null,u=a&&Set.prototype.forEach,d="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,f="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,p="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,h=Boolean.prototype.valueOf,m=Object.prototype.toString,g=Function.prototype.toString,v=String.prototype.match,w=String.prototype.slice,y=String.prototype.replace,b=String.prototype.toUpperCase,_=String.prototype.toLowerCase,x=RegExp.prototype.test,k=Array.prototype.concat,S=Array.prototype.join,C=Array.prototype.slice,O=Math.floor,T="function"==typeof BigInt?BigInt.prototype.valueOf:null,E=Object.getOwnPropertySymbols,j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,A="function"==typeof Symbol&&"object"==typeof Symbol.iterator,P="function"==typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===A||"symbol")?Symbol.toStringTag:null,M=Object.prototype.propertyIsEnumerable,I=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(t){return t.__proto__}:null);function L(t,e){if(t===1/0||t===-1/0||t!=t||t&&t>-1e3&&t<1e3||x.call(/e/,e))return e;var n=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"==typeof t){var r=t<0?-O(-t):O(t);if(r!==t){var i=String(r),o=w.call(e,i.length+1);return y.call(i,n,"$&_")+"."+y.call(y.call(o,/([0-9]{3})/g,"$&_"),/_$/,"")}}return y.call(e,n,"$&_")}var $=n(4654),D=$.custom,N=U(D)?D:null;function F(t,e,n){var r="double"===(n.quoteStyle||e)?'"':"'";return r+t+r}function B(t){return y.call(String(t),/"/g,"&quot;")}function R(t){return!("[object Array]"!==q(t)||P&&"object"==typeof t&&P in t)}function z(t){return!("[object RegExp]"!==q(t)||P&&"object"==typeof t&&P in t)}function U(t){if(A)return t&&"object"==typeof t&&t instanceof Symbol;if("symbol"==typeof t)return!0;if(!t||"object"!=typeof t||!j)return!1;try{return j.call(t),!0}catch(t){}return!1}t.exports=function t(e,n,r,i){var a=n||{};if(H(a,"quoteStyle")&&"single"!==a.quoteStyle&&"double"!==a.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(H(a,"maxStringLength")&&("number"==typeof a.maxStringLength?a.maxStringLength<0&&a.maxStringLength!==1/0:null!==a.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var l=!H(a,"customInspect")||a.customInspect;if("boolean"!=typeof l&&"symbol"!==l)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(H(a,"indent")&&null!==a.indent&&"\t"!==a.indent&&!(parseInt(a.indent,10)===a.indent&&a.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(H(a,"numericSeparator")&&"boolean"!=typeof a.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var m=a.numericSeparator;if(void 0===e)return"undefined";if(null===e)return"null";if("boolean"==typeof e)return e?"true":"false";if("string"==typeof e)return Z(e,a);if("number"==typeof e){if(0===e)return 1/0/e>0?"0":"-0";var b=String(e);return m?L(e,b):b}if("bigint"==typeof e){var x=String(e)+"n";return m?L(e,x):x}var O=void 0===a.depth?5:a.depth;if(void 0===r&&(r=0),r>=O&&O>0&&"object"==typeof e)return R(e)?"[Array]":"[Object]";var E=function(t,e){var n;if("\t"===t.indent)n="\t";else{if(!("number"==typeof t.indent&&t.indent>0))return null;n=S.call(Array(t.indent+1)," ")}return{base:n,prev:S.call(Array(e+1),n)}}(a,r);if(void 0===i)i=[];else if(W(i,e)>=0)return"[Circular]";function D(e,n,o){if(n&&(i=C.call(i)).push(n),o){var s={depth:a.depth};return H(a,"quoteStyle")&&(s.quoteStyle=a.quoteStyle),t(e,s,r+1,i)}return t(e,a,r+1,i)}if("function"==typeof e&&!z(e)){var V=function(t){if(t.name)return t.name;var e=v.call(g.call(t),/^function\s*([\w$]+)/);if(e)return e[1];return null}(e),Y=Q(e,D);return"[Function"+(V?": "+V:" (anonymous)")+"]"+(Y.length>0?" { "+S.call(Y,", ")+" }":"")}if(U(e)){var tt=A?y.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):j.call(e);return"object"!=typeof e||A?tt:G(tt)}if(function(t){if(!t||"object"!=typeof t)return!1;if("undefined"!=typeof HTMLElement&&t instanceof HTMLElement)return!0;return"string"==typeof t.nodeName&&"function"==typeof t.getAttribute}(e)){for(var et="<"+_.call(String(e.nodeName)),nt=e.attributes||[],rt=0;rt<nt.length;rt++)et+=" "+nt[rt].name+"="+F(B(nt[rt].value),"double",a);return et+=">",e.childNodes&&e.childNodes.length&&(et+="..."),et+="</"+_.call(String(e.nodeName))+">"}if(R(e)){if(0===e.length)return"[]";var it=Q(e,D);return E&&!function(t){for(var e=0;e<t.length;e++)if(W(t[e],"\n")>=0)return!1;return!0}(it)?"["+X(it,E)+"]":"[ "+S.call(it,", ")+" ]"}if(function(t){return!("[object Error]"!==q(t)||P&&"object"==typeof t&&P in t)}(e)){var ot=Q(e,D);return"cause"in Error.prototype||!("cause"in e)||M.call(e,"cause")?0===ot.length?"["+String(e)+"]":"{ ["+String(e)+"] "+S.call(ot,", ")+" }":"{ ["+String(e)+"] "+S.call(k.call("[cause]: "+D(e.cause),ot),", ")+" }"}if("object"==typeof e&&l){if(N&&"function"==typeof e[N]&&$)return $(e,{depth:O-r});if("symbol"!==l&&"function"==typeof e.inspect)return e.inspect()}if(function(t){if(!o||!t||"object"!=typeof t)return!1;try{o.call(t);try{c.call(t)}catch(t){return!0}return t instanceof Map}catch(t){}return!1}(e)){var st=[];return s&&s.call(e,(function(t,n){st.push(D(n,e,!0)+" => "+D(t,e))})),K("Map",o.call(e),st,E)}if(function(t){if(!c||!t||"object"!=typeof t)return!1;try{c.call(t);try{o.call(t)}catch(t){return!0}return t instanceof Set}catch(t){}return!1}(e)){var at=[];return u&&u.call(e,(function(t){at.push(D(t,e))})),K("Set",c.call(e),at,E)}if(function(t){if(!d||!t||"object"!=typeof t)return!1;try{d.call(t,d);try{f.call(t,f)}catch(t){return!0}return t instanceof WeakMap}catch(t){}return!1}(e))return J("WeakMap");if(function(t){if(!f||!t||"object"!=typeof t)return!1;try{f.call(t,f);try{d.call(t,d)}catch(t){return!0}return t instanceof WeakSet}catch(t){}return!1}(e))return J("WeakSet");if(function(t){if(!p||!t||"object"!=typeof t)return!1;try{return p.call(t),!0}catch(t){}return!1}(e))return J("WeakRef");if(function(t){return!("[object Number]"!==q(t)||P&&"object"==typeof t&&P in t)}(e))return G(D(Number(e)));if(function(t){if(!t||"object"!=typeof t||!T)return!1;try{return T.call(t),!0}catch(t){}return!1}(e))return G(D(T.call(e)));if(function(t){return!("[object Boolean]"!==q(t)||P&&"object"==typeof t&&P in t)}(e))return G(h.call(e));if(function(t){return!("[object String]"!==q(t)||P&&"object"==typeof t&&P in t)}(e))return G(D(String(e)));if(!function(t){return!("[object Date]"!==q(t)||P&&"object"==typeof t&&P in t)}(e)&&!z(e)){var lt=Q(e,D),ct=I?I(e)===Object.prototype:e instanceof Object||e.constructor===Object,ut=e instanceof Object?"":"null prototype",dt=!ct&&P&&Object(e)===e&&P in e?w.call(q(e),8,-1):ut?"Object":"",ft=(ct||"function"!=typeof e.constructor?"":e.constructor.name?e.constructor.name+" ":"")+(dt||ut?"["+S.call(k.call([],dt||[],ut||[]),": ")+"] ":"");return 0===lt.length?ft+"{}":E?ft+"{"+X(lt,E)+"}":ft+"{ "+S.call(lt,", ")+" }"}return String(e)};var V=Object.prototype.hasOwnProperty||function(t){return t in this};function H(t,e){return V.call(t,e)}function q(t){return m.call(t)}function W(t,e){if(t.indexOf)return t.indexOf(e);for(var n=0,r=t.length;n<r;n++)if(t[n]===e)return n;return-1}function Z(t,e){if(t.length>e.maxStringLength){var n=t.length-e.maxStringLength,r="... "+n+" more character"+(n>1?"s":"");return Z(w.call(t,0,e.maxStringLength),e)+r}return F(y.call(y.call(t,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,Y),"single",e)}function Y(t){var e=t.charCodeAt(0),n={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return n?"\\"+n:"\\x"+(e<16?"0":"")+b.call(e.toString(16))}function G(t){return"Object("+t+")"}function J(t){return t+" { ? }"}function K(t,e,n,r){return t+" ("+e+") {"+(r?X(n,r):S.call(n,", "))+"}"}function X(t,e){if(0===t.length)return"";var n="\n"+e.prev+e.base;return n+S.call(t,","+n)+"\n"+e.prev}function Q(t,e){var n=R(t),r=[];if(n){r.length=t.length;for(var i=0;i<t.length;i++)r[i]=H(t,i)?e(t[i],t):""}var o,s="function"==typeof E?E(t):[];if(A){o={};for(var a=0;a<s.length;a++)o["$"+s[a]]=s[a]}for(var l in t)H(t,l)&&(n&&String(Number(l))===l&&l<t.length||A&&o["$"+l]instanceof Symbol||(x.call(/[^\w$]/,l)?r.push(e(l,t)+": "+e(t[l],t)):r.push(l+": "+e(t[l],t))));if("function"==typeof E)for(var c=0;c<s.length;c++)M.call(t,s[c])&&r.push("["+e(s[c])+"]: "+e(t[s[c]],t));return r}},5798:function(t){"use strict";var e=String.prototype.replace,n=/%20/g,r="RFC1738",i="RFC3986";t.exports={default:i,formatters:{RFC1738:function(t){return e.call(t,n,"+")},RFC3986:function(t){return String(t)}},RFC1738:r,RFC3986:i}},129:function(t,e,n){"use strict";var r=n(8261),i=n(5235),o=n(5798);t.exports={formats:o,parse:i,stringify:r}},5235:function(t,e,n){"use strict";var r=n(2769),i=Object.prototype.hasOwnProperty,o=Array.isArray,s={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},a=function(t){return t.replace(/&#(\d+);/g,(function(t,e){return String.fromCharCode(parseInt(e,10))}))},l=function(t,e){return t&&"string"==typeof t&&e.comma&&t.indexOf(",")>-1?t.split(","):t},c=function(t,e,n,r){if(t){var o=n.allowDots?t.replace(/\.([^.[]+)/g,"[$1]"):t,s=/(\[[^[\]]*])/g,a=n.depth>0&&/(\[[^[\]]*])/.exec(o),c=a?o.slice(0,a.index):o,u=[];if(c){if(!n.plainObjects&&i.call(Object.prototype,c)&&!n.allowPrototypes)return;u.push(c)}for(var d=0;n.depth>0&&null!==(a=s.exec(o))&&d<n.depth;){if(d+=1,!n.plainObjects&&i.call(Object.prototype,a[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(a[1])}return a&&u.push("["+o.slice(a.index)+"]"),function(t,e,n,r){for(var i=r?e:l(e,n),o=t.length-1;o>=0;--o){var s,a=t[o];if("[]"===a&&n.parseArrays)s=[].concat(i);else{s=n.plainObjects?Object.create(null):{};var c="["===a.charAt(0)&&"]"===a.charAt(a.length-1)?a.slice(1,-1):a,u=parseInt(c,10);n.parseArrays||""!==c?!isNaN(u)&&a!==c&&String(u)===c&&u>=0&&n.parseArrays&&u<=n.arrayLimit?(s=[])[u]=i:"__proto__"!==c&&(s[c]=i):s={0:i}}i=s}return i}(u,e,n,r)}};t.exports=function(t,e){var n=function(t){if(!t)return s;if(null!==t.decoder&&void 0!==t.decoder&&"function"!=typeof t.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var e=void 0===t.charset?s.charset:t.charset;return{allowDots:void 0===t.allowDots?s.allowDots:!!t.allowDots,allowPrototypes:"boolean"==typeof t.allowPrototypes?t.allowPrototypes:s.allowPrototypes,allowSparse:"boolean"==typeof t.allowSparse?t.allowSparse:s.allowSparse,arrayLimit:"number"==typeof t.arrayLimit?t.arrayLimit:s.arrayLimit,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:s.charsetSentinel,comma:"boolean"==typeof t.comma?t.comma:s.comma,decoder:"function"==typeof t.decoder?t.decoder:s.decoder,delimiter:"string"==typeof t.delimiter||r.isRegExp(t.delimiter)?t.delimiter:s.delimiter,depth:"number"==typeof t.depth||!1===t.depth?+t.depth:s.depth,ignoreQueryPrefix:!0===t.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof t.interpretNumericEntities?t.interpretNumericEntities:s.interpretNumericEntities,parameterLimit:"number"==typeof t.parameterLimit?t.parameterLimit:s.parameterLimit,parseArrays:!1!==t.parseArrays,plainObjects:"boolean"==typeof t.plainObjects?t.plainObjects:s.plainObjects,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:s.strictNullHandling}}(e);if(""===t||null==t)return n.plainObjects?Object.create(null):{};for(var u="string"==typeof t?function(t,e){var n,c={},u=e.ignoreQueryPrefix?t.replace(/^\?/,""):t,d=e.parameterLimit===1/0?void 0:e.parameterLimit,f=u.split(e.delimiter,d),p=-1,h=e.charset;if(e.charsetSentinel)for(n=0;n<f.length;++n)0===f[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===f[n]?h="utf-8":"utf8=%26%2310003%3B"===f[n]&&(h="iso-8859-1"),p=n,n=f.length);for(n=0;n<f.length;++n)if(n!==p){var m,g,v=f[n],w=v.indexOf("]="),y=-1===w?v.indexOf("="):w+1;-1===y?(m=e.decoder(v,s.decoder,h,"key"),g=e.strictNullHandling?null:""):(m=e.decoder(v.slice(0,y),s.decoder,h,"key"),g=r.maybeMap(l(v.slice(y+1),e),(function(t){return e.decoder(t,s.decoder,h,"value")}))),g&&e.interpretNumericEntities&&"iso-8859-1"===h&&(g=a(g)),v.indexOf("[]=")>-1&&(g=o(g)?[g]:g),i.call(c,m)?c[m]=r.combine(c[m],g):c[m]=g}return c}(t,n):t,d=n.plainObjects?Object.create(null):{},f=Object.keys(u),p=0;p<f.length;++p){var h=f[p],m=c(h,u[h],n,"string"==typeof t);d=r.merge(d,m,n)}return!0===n.allowSparse?d:r.compact(d)}},8261:function(t,e,n){"use strict";var r=n(7478),i=n(2769),o=n(5798),s=Object.prototype.hasOwnProperty,a={brackets:function(t){return t+"[]"},comma:"comma",indices:function(t,e){return t+"["+e+"]"},repeat:function(t){return t}},l=Array.isArray,c=Array.prototype.push,u=function(t,e){c.apply(t,l(e)?e:[e])},d=Date.prototype.toISOString,f=o.default,p={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:i.encode,encodeValuesOnly:!1,format:f,formatter:o.formatters[f],indices:!1,serializeDate:function(t){return d.call(t)},skipNulls:!1,strictNullHandling:!1},h={},m=function t(e,n,o,s,a,c,d,f,m,g,v,w,y,b,_,x){for(var k,S=e,C=x,O=0,T=!1;void 0!==(C=C.get(h))&&!T;){var E=C.get(e);if(O+=1,void 0!==E){if(E===O)throw new RangeError("Cyclic object value");T=!0}void 0===C.get(h)&&(O=0)}if("function"==typeof f?S=f(n,S):S instanceof Date?S=v(S):"comma"===o&&l(S)&&(S=i.maybeMap(S,(function(t){return t instanceof Date?v(t):t}))),null===S){if(a)return d&&!b?d(n,p.encoder,_,"key",w):n;S=""}if("string"==typeof(k=S)||"number"==typeof k||"boolean"==typeof k||"symbol"==typeof k||"bigint"==typeof k||i.isBuffer(S))return d?[y(b?n:d(n,p.encoder,_,"key",w))+"="+y(d(S,p.encoder,_,"value",w))]:[y(n)+"="+y(String(S))];var j,A=[];if(void 0===S)return A;if("comma"===o&&l(S))b&&d&&(S=i.maybeMap(S,d)),j=[{value:S.length>0?S.join(",")||null:void 0}];else if(l(f))j=f;else{var P=Object.keys(S);j=m?P.sort(m):P}for(var M=s&&l(S)&&1===S.length?n+"[]":n,I=0;I<j.length;++I){var L=j[I],$="object"==typeof L&&void 0!==L.value?L.value:S[L];if(!c||null!==$){var D=l(S)?"function"==typeof o?o(M,L):M:M+(g?"."+L:"["+L+"]");x.set(e,O);var N=r();N.set(h,x),u(A,t($,D,o,s,a,c,"comma"===o&&b&&l(S)?null:d,f,m,g,v,w,y,b,_,N))}}return A};t.exports=function(t,e){var n,i=t,c=function(t){if(!t)return p;if(null!==t.encoder&&void 0!==t.encoder&&"function"!=typeof t.encoder)throw new TypeError("Encoder has to be a function.");var e=t.charset||p.charset;if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=o.default;if(void 0!==t.format){if(!s.call(o.formatters,t.format))throw new TypeError("Unknown format option provided.");n=t.format}var r=o.formatters[n],i=p.filter;return("function"==typeof t.filter||l(t.filter))&&(i=t.filter),{addQueryPrefix:"boolean"==typeof t.addQueryPrefix?t.addQueryPrefix:p.addQueryPrefix,allowDots:void 0===t.allowDots?p.allowDots:!!t.allowDots,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:p.charsetSentinel,delimiter:void 0===t.delimiter?p.delimiter:t.delimiter,encode:"boolean"==typeof t.encode?t.encode:p.encode,encoder:"function"==typeof t.encoder?t.encoder:p.encoder,encodeValuesOnly:"boolean"==typeof t.encodeValuesOnly?t.encodeValuesOnly:p.encodeValuesOnly,filter:i,format:n,formatter:r,serializeDate:"function"==typeof t.serializeDate?t.serializeDate:p.serializeDate,skipNulls:"boolean"==typeof t.skipNulls?t.skipNulls:p.skipNulls,sort:"function"==typeof t.sort?t.sort:null,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:p.strictNullHandling}}(e);"function"==typeof c.filter?i=(0,c.filter)("",i):l(c.filter)&&(n=c.filter);var d,f=[];if("object"!=typeof i||null===i)return"";d=e&&e.arrayFormat in a?e.arrayFormat:e&&"indices"in e?e.indices?"indices":"repeat":"indices";var h=a[d];if(e&&"commaRoundTrip"in e&&"boolean"!=typeof e.commaRoundTrip)throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var g="comma"===h&&e&&e.commaRoundTrip;n||(n=Object.keys(i)),c.sort&&n.sort(c.sort);for(var v=r(),w=0;w<n.length;++w){var y=n[w];c.skipNulls&&null===i[y]||u(f,m(i[y],y,h,g,c.strictNullHandling,c.skipNulls,c.encode?c.encoder:null,c.filter,c.sort,c.allowDots,c.serializeDate,c.format,c.formatter,c.encodeValuesOnly,c.charset,v))}var b=f.join(c.delimiter),_=!0===c.addQueryPrefix?"?":"";return c.charsetSentinel&&("iso-8859-1"===c.charset?_+="utf8=%26%2310003%3B&":_+="utf8=%E2%9C%93&"),b.length>0?_+b:""}},2769:function(t,e,n){"use strict";var r=n(5798),i=Object.prototype.hasOwnProperty,o=Array.isArray,s=function(){for(var t=[],e=0;e<256;++e)t.push("%"+((e<16?"0":"")+e.toString(16)).toUpperCase());return t}(),a=function(t,e){for(var n=e&&e.plainObjects?Object.create(null):{},r=0;r<t.length;++r)void 0!==t[r]&&(n[r]=t[r]);return n};t.exports={arrayToObject:a,assign:function(t,e){return Object.keys(e).reduce((function(t,n){return t[n]=e[n],t}),t)},combine:function(t,e){return[].concat(t,e)},compact:function(t){for(var e=[{obj:{o:t},prop:"o"}],n=[],r=0;r<e.length;++r)for(var i=e[r],s=i.obj[i.prop],a=Object.keys(s),l=0;l<a.length;++l){var c=a[l],u=s[c];"object"==typeof u&&null!==u&&-1===n.indexOf(u)&&(e.push({obj:s,prop:c}),n.push(u))}return function(t){for(;t.length>1;){var e=t.pop(),n=e.obj[e.prop];if(o(n)){for(var r=[],i=0;i<n.length;++i)void 0!==n[i]&&r.push(n[i]);e.obj[e.prop]=r}}}(e),t},decode:function(t,e,n){var r=t.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(t){return r}},encode:function(t,e,n,i,o){if(0===t.length)return t;var a=t;if("symbol"==typeof t?a=Symbol.prototype.toString.call(t):"string"!=typeof t&&(a=String(t)),"iso-8859-1"===n)return escape(a).replace(/%u[0-9a-f]{4}/gi,(function(t){return"%26%23"+parseInt(t.slice(2),16)+"%3B"}));for(var l="",c=0;c<a.length;++c){var u=a.charCodeAt(c);45===u||46===u||95===u||126===u||u>=48&&u<=57||u>=65&&u<=90||u>=97&&u<=122||o===r.RFC1738&&(40===u||41===u)?l+=a.charAt(c):u<128?l+=s[u]:u<2048?l+=s[192|u>>6]+s[128|63&u]:u<55296||u>=57344?l+=s[224|u>>12]+s[128|u>>6&63]+s[128|63&u]:(c+=1,u=65536+((1023&u)<<10|1023&a.charCodeAt(c)),l+=s[240|u>>18]+s[128|u>>12&63]+s[128|u>>6&63]+s[128|63&u])}return l},isBuffer:function(t){return!(!t||"object"!=typeof t)&&!!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t))},isRegExp:function(t){return"[object RegExp]"===Object.prototype.toString.call(t)},maybeMap:function(t,e){if(o(t)){for(var n=[],r=0;r<t.length;r+=1)n.push(e(t[r]));return n}return e(t)},merge:function t(e,n,r){if(!n)return e;if("object"!=typeof n){if(o(e))e.push(n);else{if(!e||"object"!=typeof e)return[e,n];(r&&(r.plainObjects||r.allowPrototypes)||!i.call(Object.prototype,n))&&(e[n]=!0)}return e}if(!e||"object"!=typeof e)return[e].concat(n);var s=e;return o(e)&&!o(n)&&(s=a(e,r)),o(e)&&o(n)?(n.forEach((function(n,o){if(i.call(e,o)){var s=e[o];s&&"object"==typeof s&&n&&"object"==typeof n?e[o]=t(s,n,r):e.push(n)}else e[o]=n})),e):Object.keys(n).reduce((function(e,o){var s=n[o];return i.call(e,o)?e[o]=t(e[o],s,r):e[o]=s,e}),s)}}},7478:function(t,e,n){"use strict";var r=n(210),i=n(1924),o=n(631),s=r("%TypeError%"),a=r("%WeakMap%",!0),l=r("%Map%",!0),c=i("WeakMap.prototype.get",!0),u=i("WeakMap.prototype.set",!0),d=i("WeakMap.prototype.has",!0),f=i("Map.prototype.get",!0),p=i("Map.prototype.set",!0),h=i("Map.prototype.has",!0),m=function(t,e){for(var n,r=t;null!==(n=r.next);r=n)if(n.key===e)return r.next=n.next,n.next=t.next,t.next=n,n};t.exports=function(){var t,e,n,r={assert:function(t){if(!r.has(t))throw new s("Side channel does not contain "+o(t))},get:function(r){if(a&&r&&("object"==typeof r||"function"==typeof r)){if(t)return c(t,r)}else if(l){if(e)return f(e,r)}else if(n)return function(t,e){var n=m(t,e);return n&&n.value}(n,r)},has:function(r){if(a&&r&&("object"==typeof r||"function"==typeof r)){if(t)return d(t,r)}else if(l){if(e)return h(e,r)}else if(n)return function(t,e){return!!m(t,e)}(n,r);return!1},set:function(r,i){a&&r&&("object"==typeof r||"function"==typeof r)?(t||(t=new a),u(t,r,i)):l?(e||(e=new l),p(e,r,i)):(n||(n={key:{},next:null}),function(t,e,n){var r=m(t,e);r?r.value=n:t.next={key:e,next:t.next,value:n}}(n,r,i))}};return r}},8975:function(t,e,n){var r;!function(){"use strict";var i={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function o(t){return function(t,e){var n,r,s,a,l,c,u,d,f,p=1,h=t.length,m="";for(r=0;r<h;r++)if("string"==typeof t[r])m+=t[r];else if("object"==typeof t[r]){if((a=t[r]).keys)for(n=e[p],s=0;s<a.keys.length;s++){if(null==n)throw new Error(o('[sprintf] Cannot access property "%s" of undefined value "%s"',a.keys[s],a.keys[s-1]));n=n[a.keys[s]]}else n=a.param_no?e[a.param_no]:e[p++];if(i.not_type.test(a.type)&&i.not_primitive.test(a.type)&&n instanceof Function&&(n=n()),i.numeric_arg.test(a.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(i.number.test(a.type)&&(d=n>=0),a.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,a.width?parseInt(a.width):0);break;case"e":n=a.precision?parseFloat(n).toExponential(a.precision):parseFloat(n).toExponential();break;case"f":n=a.precision?parseFloat(n).toFixed(a.precision):parseFloat(n);break;case"g":n=a.precision?String(Number(n.toPrecision(a.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=a.precision?n.substring(0,a.precision):n;break;case"t":n=String(!!n),n=a.precision?n.substring(0,a.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=a.precision?n.substring(0,a.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=a.precision?n.substring(0,a.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}i.json.test(a.type)?m+=n:(!i.number.test(a.type)||d&&!a.sign?f="":(f=d?"+":"-",n=n.toString().replace(i.sign,"")),c=a.pad_char?"0"===a.pad_char?"0":a.pad_char.charAt(1):" ",u=a.width-(f+n).length,l=a.width&&u>0?c.repeat(u):"",m+=a.align?f+n+l:"0"===c?f+l+n:l+f+n)}return m}(function(t){if(a[t])return a[t];var e,n=t,r=[],o=0;for(;n;){if(null!==(e=i.text.exec(n)))r.push(e[0]);else if(null!==(e=i.modulo.exec(n)))r.push("%");else{if(null===(e=i.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(e[2]){o|=1;var s=[],l=e[2],c=[];if(null===(c=i.key.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(s.push(c[1]);""!==(l=l.substring(c[0].length));)if(null!==(c=i.key_access.exec(l)))s.push(c[1]);else{if(null===(c=i.index_access.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");s.push(c[1])}e[2]=s}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:e[0],param_no:e[1],keys:e[2],sign:e[3],pad_char:e[4],align:e[5],width:e[6],precision:e[7],type:e[8]})}n=n.substring(e[0].length)}return a[t]=r}(t),arguments)}function s(t,e){return o.apply(null,[t].concat(e||[]))}var a=Object.create(null);e.sprintf=o,e.vsprintf=s,"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=s,void 0===(r=function(){return{sprintf:o,vsprintf:s}}.call(e,n,e,t))||(t.exports=r))}()},9214:function(t,e){var n,r,i;r=this,i=window.srcDoc,n=function(t){!function(t,e){var n,r,i,o=!!("srcdoc"in document.createElement("iframe")),s="Polyfill may not function in the presence of the `sandbox` attribute. Consider using the `force` option.",a=/\ballow-same-origin\b/,l=function(t,e){var n=t.getAttribute("sandbox");"string"!=typeof n||a.test(n)||(e&&e.force?t.removeAttribute("sandbox"):e&&!1===e.force||(i(s),t.setAttribute("data-srcdoc-polyfill",s)))},c={compliant:function(t,e,n){e&&(l(t,n),t.setAttribute("srcdoc",e))},legacy:function(t,e,n){var r;t&&t.getAttribute&&(e?t.setAttribute("srcdoc",e):e=t.getAttribute("srcdoc"),e&&(l(t,n),r="javascript: window.frameElement.getAttribute('srcdoc');",t.contentWindow&&(t.contentWindow.location=r),t.setAttribute("src",r)))}},u=t;if(i=window.console&&window.console.error?function(t){window.console.error("[srcdoc-polyfill] "+t)}:function(){},u.set=c.compliant,u.noConflict=function(){return window.srcDoc=e,u},!o)for(u.set=c.legacy,r=document.getElementsByTagName("iframe"),n=r.length;n--;)u.set(r[n])}(t,i),r.srcDoc=t}.apply(e,[e]),void 0===n||(t.exports=n)},3379:function(t,e,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var t={};return function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}t[e]=n}return t[e]}}(),s=[];function a(t){for(var e=-1,n=0;n<s.length;n++)if(s[n].identifier===t){e=n;break}return e}function l(t,e){for(var n={},r=[],i=0;i<t.length;i++){var o=t[i],l=e.base?o[0]+e.base:o[0],c=n[l]||0,u="".concat(l," ").concat(c);n[l]=c+1;var d=a(u),f={css:o[1],media:o[2],sourceMap:o[3]};-1!==d?(s[d].references++,s[d].updater(f)):s.push({identifier:u,updater:g(f,e),references:1}),r.push(u)}return r}function c(t){var e=document.createElement("style"),r=t.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(t){e.setAttribute(t,r[t])})),"function"==typeof t.insert)t.insert(e);else{var s=o(t.insert||"head");if(!s)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");s.appendChild(e)}return e}var u,d=(u=[],function(t,e){return u[t]=e,u.filter(Boolean).join("\n")});function f(t,e,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(t.styleSheet)t.styleSheet.cssText=d(e,i);else{var o=document.createTextNode(i),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(o,s[e]):t.appendChild(o)}}function p(t,e,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?t.setAttribute("media",i):t.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),t.styleSheet)t.styleSheet.cssText=r;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(r))}}var h=null,m=0;function g(t,e){var n,r,i;if(e.singleton){var o=m++;n=h||(h=c(e)),r=f.bind(null,n,o,!1),i=f.bind(null,n,o,!0)}else n=c(e),r=p.bind(null,n,e),i=function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(n)};return r(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;r(t=e)}else i()}}t.exports=function(t,e){(e=e||{}).singleton||"boolean"==typeof e.singleton||(e.singleton=i());var n=l(t=t||[],e);return function(t){if(t=t||[],"[object Array]"===Object.prototype.toString.call(t)){for(var r=0;r<n.length;r++){var i=a(n[r]);s[i].references--}for(var o=l(t,e),c=0;c<n.length;c++){var u=a(n[c]);0===s[u].references&&(s[u].updater(),s.splice(u,1))}n=o}}}},6455:function(t){t.exports=function(){"use strict";function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t(e)}function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function n(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function r(t,e,r){return e&&n(t.prototype,e),r&&n(t,r),t}function i(){return i=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},i.apply(this,arguments)}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&a(t,e)}function s(t){return s=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},s(t)}function a(t,e){return a=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},a(t,e)}function l(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function c(t,e,n){return c=l()?Reflect.construct:function(t,e,n){var r=[null];r.push.apply(r,e);var i=new(Function.bind.apply(t,r));return n&&a(i,n.prototype),i},c.apply(null,arguments)}function u(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?u(t):e}function f(t){var e=l();return function(){var n,r=s(t);if(e){var i=s(this).constructor;n=Reflect.construct(r,arguments,i)}else n=r.apply(this,arguments);return d(this,n)}}function p(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=s(t)););return t}function h(t,e,n){return h="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var r=p(t,e);if(r){var i=Object.getOwnPropertyDescriptor(r,e);return i.get?i.get.call(n):i.value}},h(t,e,n||t)}var m="SweetAlert2:",g=function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e},v=function(t){return t.charAt(0).toUpperCase()+t.slice(1)},w=function(t){return Object.keys(t).map((function(e){return t[e]}))},y=function(t){return Array.prototype.slice.call(t)},b=function(t){console.warn("".concat(m," ").concat(t))},_=function(t){console.error("".concat(m," ").concat(t))},x=[],k=function(t){-1===x.indexOf(t)&&(x.push(t),b(t))},S=function(t,e){k('"'.concat(t,'" is deprecated and will be removed in the next major release. Please use "').concat(e,'" instead.'))},C=function(t){return"function"==typeof t?t():t},O=function(t){return t&&"function"==typeof t.toPromise},T=function(t){return O(t)?t.toPromise():Promise.resolve(t)},E=function(t){return t&&Promise.resolve(t)===t},j=Object.freeze({cancel:"cancel",backdrop:"backdrop",close:"close",esc:"esc",timer:"timer"}),A=function(e){return"object"===t(e)&&e.jquery},P=function(t){return t instanceof Element||A(t)},M=function(e){var n={};return"object"!==t(e[0])||P(e[0])?["title","html","icon"].forEach((function(r,i){var o=e[i];"string"==typeof o||P(o)?n[r]=o:void 0!==o&&_("Unexpected type of ".concat(r,'! Expected "string" or "Element", got ').concat(t(o)))})):i(n,e[0]),n},I="swal2-",L=function(t){var e={};for(var n in t)e[t[n]]=I+t[n];return e},$=L(["container","shown","height-auto","iosfix","popup","modal","no-backdrop","no-transition","toast","toast-shown","toast-column","show","hide","close","title","header","content","html-container","actions","confirm","cancel","footer","icon","icon-content","image","input","file","range","select","radio","checkbox","label","textarea","inputerror","validation-message","progress-steps","active-progress-step","progress-step","progress-step-line","loading","styled","top","top-start","top-end","top-left","top-right","center","center-start","center-end","center-left","center-right","bottom","bottom-start","bottom-end","bottom-left","bottom-right","grow-row","grow-column","grow-fullscreen","rtl","timer-progress-bar","timer-progress-bar-container","scrollbar-measure","icon-success","icon-warning","icon-info","icon-question","icon-error"]),D=L(["success","warning","info","question","error"]),N=function(){return document.body.querySelector(".".concat($.container))},F=function(t){var e=N();return e?e.querySelector(t):null},B=function(t){return F(".".concat(t))},R=function(){return B($.popup)},z=function(){var t=R();return y(t.querySelectorAll(".".concat($.icon)))},U=function(){var t=z().filter((function(t){return kt(t)}));return t.length?t[0]:null},V=function(){return B($.title)},H=function(){return B($.content)},q=function(){return B($["html-container"])},W=function(){return B($.image)},Z=function(){return B($["progress-steps"])},Y=function(){return B($["validation-message"])},G=function(){return F(".".concat($.actions," .").concat($.confirm))},J=function(){return F(".".concat($.actions," .").concat($.cancel))},K=function(){return B($.actions)},X=function(){return B($.header)},Q=function(){return B($.footer)},tt=function(){return B($["timer-progress-bar"])},et=function(){return B($.close)},nt='\n  a[href],\n  area[href],\n  input:not([disabled]),\n  select:not([disabled]),\n  textarea:not([disabled]),\n  button:not([disabled]),\n  iframe,\n  object,\n  embed,\n  [tabindex="0"],\n  [contenteditable],\n  audio[controls],\n  video[controls],\n  summary\n',rt=function(){var t=y(R().querySelectorAll('[tabindex]:not([tabindex="-1"]):not([tabindex="0"])')).sort((function(t,e){return(t=parseInt(t.getAttribute("tabindex")))>(e=parseInt(e.getAttribute("tabindex")))?1:t<e?-1:0})),e=y(R().querySelectorAll(nt)).filter((function(t){return"-1"!==t.getAttribute("tabindex")}));return g(t.concat(e)).filter((function(t){return kt(t)}))},it=function(){return!ot()&&!document.body.classList.contains($["no-backdrop"])},ot=function(){return document.body.classList.contains($["toast-shown"])},st=function(){return R().hasAttribute("data-loading")},at={previousBodyPadding:null},lt=function(t,e){if(t.textContent="",e){var n=(new DOMParser).parseFromString(e,"text/html");y(n.querySelector("head").childNodes).forEach((function(e){t.appendChild(e)})),y(n.querySelector("body").childNodes).forEach((function(e){t.appendChild(e)}))}},ct=function(t,e){if(!e)return!1;for(var n=e.split(/\s+/),r=0;r<n.length;r++)if(!t.classList.contains(n[r]))return!1;return!0},ut=function(t,e){y(t.classList).forEach((function(n){-1===w($).indexOf(n)&&-1===w(D).indexOf(n)&&-1===w(e.showClass).indexOf(n)&&t.classList.remove(n)}))},dt=function(e,n,r){if(ut(e,n),n.customClass&&n.customClass[r]){if("string"!=typeof n.customClass[r]&&!n.customClass[r].forEach)return b("Invalid type of customClass.".concat(r,'! Expected string or iterable object, got "').concat(t(n.customClass[r]),'"'));gt(e,n.customClass[r])}};function ft(t,e){if(!e)return null;switch(e){case"select":case"textarea":case"file":return wt(t,$[e]);case"checkbox":return t.querySelector(".".concat($.checkbox," input"));case"radio":return t.querySelector(".".concat($.radio," input:checked"))||t.querySelector(".".concat($.radio," input:first-child"));case"range":return t.querySelector(".".concat($.range," input"));default:return wt(t,$.input)}}var pt,ht=function(t){if(t.focus(),"file"!==t.type){var e=t.value;t.value="",t.value=e}},mt=function(t,e,n){t&&e&&("string"==typeof e&&(e=e.split(/\s+/).filter(Boolean)),e.forEach((function(e){t.forEach?t.forEach((function(t){n?t.classList.add(e):t.classList.remove(e)})):n?t.classList.add(e):t.classList.remove(e)})))},gt=function(t,e){mt(t,e,!0)},vt=function(t,e){mt(t,e,!1)},wt=function(t,e){for(var n=0;n<t.childNodes.length;n++)if(ct(t.childNodes[n],e))return t.childNodes[n]},yt=function(t,e,n){n||0===parseInt(n)?t.style[e]="number"==typeof n?"".concat(n,"px"):n:t.style.removeProperty(e)},bt=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"flex";t.style.opacity="",t.style.display=e},_t=function(t){t.style.opacity="",t.style.display="none"},xt=function(t,e,n){e?bt(t,n):_t(t)},kt=function(t){return!(!t||!(t.offsetWidth||t.offsetHeight||t.getClientRects().length))},St=function(t){return!!(t.scrollHeight>t.clientHeight)},Ct=function(t){var e=window.getComputedStyle(t),n=parseFloat(e.getPropertyValue("animation-duration")||"0"),r=parseFloat(e.getPropertyValue("transition-duration")||"0");return n>0||r>0},Ot=function(t,e){if("function"==typeof t.contains)return t.contains(e)},Tt=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=tt();kt(n)&&(e&&(n.style.transition="none",n.style.width="100%"),setTimeout((function(){n.style.transition="width ".concat(t/1e3,"s linear"),n.style.width="0%"}),10))},Et=function(){var t=tt(),e=parseInt(window.getComputedStyle(t).width);t.style.removeProperty("transition"),t.style.width="100%";var n=parseInt(window.getComputedStyle(t).width),r=parseInt(e/n*100);t.style.removeProperty("transition"),t.style.width="".concat(r,"%")},jt=function(){return"undefined"==typeof window||"undefined"==typeof document},At='\n <div aria-labelledby="'.concat($.title,'" aria-describedby="').concat($.content,'" class="').concat($.popup,'" tabindex="-1">\n   <div class="').concat($.header,'">\n     <ul class="').concat($["progress-steps"],'"></ul>\n     <div class="').concat($.icon," ").concat(D.error,'"></div>\n     <div class="').concat($.icon," ").concat(D.question,'"></div>\n     <div class="').concat($.icon," ").concat(D.warning,'"></div>\n     <div class="').concat($.icon," ").concat(D.info,'"></div>\n     <div class="').concat($.icon," ").concat(D.success,'"></div>\n     <img class="').concat($.image,'" />\n     <h2 class="').concat($.title,'" id="').concat($.title,'"></h2>\n     <button type="button" class="').concat($.close,'"></button>\n   </div>\n   <div class="').concat($.content,'">\n     <div id="').concat($.content,'" class="').concat($["html-container"],'"></div>\n     <input class="').concat($.input,'" />\n     <input type="file" class="').concat($.file,'" />\n     <div class="').concat($.range,'">\n       <input type="range" />\n       <output></output>\n     </div>\n     <select class="').concat($.select,'"></select>\n     <div class="').concat($.radio,'"></div>\n     <label for="').concat($.checkbox,'" class="').concat($.checkbox,'">\n       <input type="checkbox" />\n       <span class="').concat($.label,'"></span>\n     </label>\n     <textarea class="').concat($.textarea,'"></textarea>\n     <div class="').concat($["validation-message"],'" id="').concat($["validation-message"],'"></div>\n   </div>\n   <div class="').concat($.actions,'">\n     <button type="button" class="').concat($.confirm,'">OK</button>\n     <button type="button" class="').concat($.cancel,'">Cancel</button>\n   </div>\n   <div class="').concat($.footer,'"></div>\n   <div class="').concat($["timer-progress-bar-container"],'">\n     <div class="').concat($["timer-progress-bar"],'"></div>\n   </div>\n </div>\n').replace(/(^|\n)\s*/g,""),Pt=function(){var t=N();return!!t&&(t.parentNode.removeChild(t),vt([document.documentElement,document.body],[$["no-backdrop"],$["toast-shown"],$["has-column"]]),!0)},Mt=function(t){Ir.isVisible()&&pt!==t.target.value&&Ir.resetValidationMessage(),pt=t.target.value},It=function(){var t=H(),e=wt(t,$.input),n=wt(t,$.file),r=t.querySelector(".".concat($.range," input")),i=t.querySelector(".".concat($.range," output")),o=wt(t,$.select),s=t.querySelector(".".concat($.checkbox," input")),a=wt(t,$.textarea);e.oninput=Mt,n.onchange=Mt,o.onchange=Mt,s.onchange=Mt,a.oninput=Mt,r.oninput=function(t){Mt(t),i.value=r.value},r.onchange=function(t){Mt(t),r.nextSibling.value=r.value}},Lt=function(t){return"string"==typeof t?document.querySelector(t):t},$t=function(t){var e=R();e.setAttribute("role",t.toast?"alert":"dialog"),e.setAttribute("aria-live",t.toast?"polite":"assertive"),t.toast||e.setAttribute("aria-modal","true")},Dt=function(t){"rtl"===window.getComputedStyle(t).direction&&gt(N(),$.rtl)},Nt=function(t){var e=Pt();if(jt())_("SweetAlert2 requires document to initialize");else{var n=document.createElement("div");n.className=$.container,e&&gt(n,$["no-transition"]),lt(n,At);var r=Lt(t.target);r.appendChild(n),$t(t),Dt(r),It()}},Ft=function(e,n){e instanceof HTMLElement?n.appendChild(e):"object"===t(e)?Bt(e,n):e&&lt(n,e)},Bt=function(t,e){t.jquery?Rt(e,t):lt(e,t.toString())},Rt=function(t,e){if(t.textContent="",0 in e)for(var n=0;n in e;n++)t.appendChild(e[n].cloneNode(!0));else t.appendChild(e.cloneNode(!0))},zt=function(){if(jt())return!1;var t=document.createElement("div"),e={WebkitAnimation:"webkitAnimationEnd",OAnimation:"oAnimationEnd oanimationend",animation:"animationend"};for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)&&void 0!==t.style[n])return e[n];return!1}(),Ut=function(){var t=document.createElement("div");t.className=$["scrollbar-measure"],document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},Vt=function(t,e){var n=K(),r=G(),i=J();e.showConfirmButton||e.showCancelButton||_t(n),dt(n,e,"actions"),qt(r,"confirm",e),qt(i,"cancel",e),e.buttonsStyling?Ht(r,i,e):(vt([r,i],$.styled),r.style.backgroundColor=r.style.borderLeftColor=r.style.borderRightColor="",i.style.backgroundColor=i.style.borderLeftColor=i.style.borderRightColor=""),e.reverseButtons&&r.parentNode.insertBefore(i,r)};function Ht(t,e,n){if(gt([t,e],$.styled),n.confirmButtonColor&&(t.style.backgroundColor=n.confirmButtonColor),n.cancelButtonColor&&(e.style.backgroundColor=n.cancelButtonColor),!st()){var r=window.getComputedStyle(t).getPropertyValue("background-color");t.style.borderLeftColor=r,t.style.borderRightColor=r}}function qt(t,e,n){xt(t,n["show".concat(v(e),"Button")],"inline-block"),lt(t,n["".concat(e,"ButtonText")]),t.setAttribute("aria-label",n["".concat(e,"ButtonAriaLabel")]),t.className=$[e],dt(t,n,"".concat(e,"Button")),gt(t,n["".concat(e,"ButtonClass")])}function Wt(t,e){"string"==typeof e?t.style.background=e:e||gt([document.documentElement,document.body],$["no-backdrop"])}function Zt(t,e){e in $?gt(t,$[e]):(b('The "position" parameter is not valid, defaulting to "center"'),gt(t,$.center))}function Yt(t,e){if(e&&"string"==typeof e){var n="grow-".concat(e);n in $&&gt(t,$[n])}}var Gt=function(t,e){var n=N();if(n){Wt(n,e.backdrop),!e.backdrop&&e.allowOutsideClick&&b('"allowOutsideClick" parameter requires `backdrop` parameter to be set to `true`'),Zt(n,e.position),Yt(n,e.grow),dt(n,e,"container");var r=document.body.getAttribute("data-swal2-queue-step");r&&(n.setAttribute("data-queue-step",r),document.body.removeAttribute("data-swal2-queue-step"))}},Jt={promise:new WeakMap,innerParams:new WeakMap,domCache:new WeakMap},Kt=["input","file","range","select","radio","checkbox","textarea"],Xt=function(t,e){var n=H(),r=Jt.innerParams.get(t),i=!r||e.input!==r.input;Kt.forEach((function(t){var r=$[t],o=wt(n,r);ee(t,e.inputAttributes),o.className=r,i&&_t(o)})),e.input&&(i&&Qt(e),ne(e))},Qt=function(t){if(!oe[t.input])return _('Unexpected type of input! Expected "text", "email", "password", "number", "tel", "select", "radio", "checkbox", "textarea", "file" or "url", got "'.concat(t.input,'"'));var e=ie(t.input),n=oe[t.input](e,t);bt(n),setTimeout((function(){ht(n)}))},te=function(t){for(var e=0;e<t.attributes.length;e++){var n=t.attributes[e].name;-1===["type","value","style"].indexOf(n)&&t.removeAttribute(n)}},ee=function(t,e){var n=ft(H(),t);if(n)for(var r in te(n),e)"range"===t&&"placeholder"===r||n.setAttribute(r,e[r])},ne=function(t){var e=ie(t.input);t.customClass&&gt(e,t.customClass.input)},re=function(t,e){t.placeholder&&!e.inputPlaceholder||(t.placeholder=e.inputPlaceholder)},ie=function(t){var e=$[t]?$[t]:$.input;return wt(H(),e)},oe={};oe.text=oe.email=oe.password=oe.number=oe.tel=oe.url=function(e,n){return"string"==typeof n.inputValue||"number"==typeof n.inputValue?e.value=n.inputValue:E(n.inputValue)||b('Unexpected type of inputValue! Expected "string", "number" or "Promise", got "'.concat(t(n.inputValue),'"')),re(e,n),e.type=n.input,e},oe.file=function(t,e){return re(t,e),t},oe.range=function(t,e){var n=t.querySelector("input"),r=t.querySelector("output");return n.value=e.inputValue,n.type=e.input,r.value=e.inputValue,t},oe.select=function(t,e){if(t.textContent="",e.inputPlaceholder){var n=document.createElement("option");lt(n,e.inputPlaceholder),n.value="",n.disabled=!0,n.selected=!0,t.appendChild(n)}return t},oe.radio=function(t){return t.textContent="",t},oe.checkbox=function(t,e){var n=ft(H(),"checkbox");n.value=1,n.id=$.checkbox,n.checked=Boolean(e.inputValue);var r=t.querySelector("span");return lt(r,e.inputPlaceholder),t},oe.textarea=function(t,e){if(t.value=e.inputValue,re(t,e),"MutationObserver"in window){var n=parseInt(window.getComputedStyle(R()).width),r=parseInt(window.getComputedStyle(R()).paddingLeft)+parseInt(window.getComputedStyle(R()).paddingRight);new MutationObserver((function(){var e=t.offsetWidth+r;R().style.width=e>n?"".concat(e,"px"):null})).observe(t,{attributes:!0,attributeFilter:["style"]})}return t};var se=function(t,e){var n=H().querySelector("#".concat($.content));e.html?(Ft(e.html,n),bt(n,"block")):e.text?(n.textContent=e.text,bt(n,"block")):_t(n),Xt(t,e),dt(H(),e,"content")},ae=function(t,e){var n=Q();xt(n,e.footer),e.footer&&Ft(e.footer,n),dt(n,e,"footer")},le=function(t,e){var n=et();lt(n,e.closeButtonHtml),dt(n,e,"closeButton"),xt(n,e.showCloseButton),n.setAttribute("aria-label",e.closeButtonAriaLabel)},ce=function(t,e){var n=Jt.innerParams.get(t);if(n&&e.icon===n.icon&&U())dt(U(),e,"icon");else if(ue(),e.icon)if(-1!==Object.keys(D).indexOf(e.icon)){var r=F(".".concat($.icon,".").concat(D[e.icon]));bt(r),fe(r,e),de(),dt(r,e,"icon"),gt(r,e.showClass.icon)}else _('Unknown icon! Expected "success", "error", "warning", "info" or "question", got "'.concat(e.icon,'"'))},ue=function(){for(var t=z(),e=0;e<t.length;e++)_t(t[e])},de=function(){for(var t=R(),e=window.getComputedStyle(t).getPropertyValue("background-color"),n=t.querySelectorAll("[class^=swal2-success-circular-line], .swal2-success-fix"),r=0;r<n.length;r++)n[r].style.backgroundColor=e},fe=function(t,e){t.textContent="",e.iconHtml?lt(t,pe(e.iconHtml)):"success"===e.icon?lt(t,'\n      <div class="swal2-success-circular-line-left"></div>\n      <span class="swal2-success-line-tip"></span> <span class="swal2-success-line-long"></span>\n      <div class="swal2-success-ring"></div> <div class="swal2-success-fix"></div>\n      <div class="swal2-success-circular-line-right"></div>\n    '):"error"===e.icon?lt(t,'\n      <span class="swal2-x-mark">\n        <span class="swal2-x-mark-line-left"></span>\n        <span class="swal2-x-mark-line-right"></span>\n      </span>\n    '):lt(t,pe({question:"?",warning:"!",info:"i"}[e.icon]))},pe=function(t){return'<div class="'.concat($["icon-content"],'">').concat(t,"</div>")},he=function(t,e){var n=W();if(!e.imageUrl)return _t(n);bt(n,""),n.setAttribute("src",e.imageUrl),n.setAttribute("alt",e.imageAlt),yt(n,"width",e.imageWidth),yt(n,"height",e.imageHeight),n.className=$.image,dt(n,e,"image")},me=[],ge=function(t){var e=this;me=t;var n=function(t,e){me=[],t(e)},r=[];return new Promise((function(t){!function i(o,s){o<me.length?(document.body.setAttribute("data-swal2-queue-step",o),e.fire(me[o]).then((function(e){void 0!==e.value?(r.push(e.value),i(o+1,s)):n(t,{dismiss:e.dismiss})}))):n(t,{value:r})}(0)}))},ve=function(){return N()&&N().getAttribute("data-queue-step")},we=function(t,e){return e&&e<me.length?me.splice(e,0,t):me.push(t)},ye=function(t){void 0!==me[t]&&me.splice(t,1)},be=function(t){var e=document.createElement("li");return gt(e,$["progress-step"]),lt(e,t),e},_e=function(t){var e=document.createElement("li");return gt(e,$["progress-step-line"]),t.progressStepsDistance&&(e.style.width=t.progressStepsDistance),e},xe=function(t,e){var n=Z();if(!e.progressSteps||0===e.progressSteps.length)return _t(n);bt(n),n.textContent="";var r=parseInt(void 0===e.currentProgressStep?ve():e.currentProgressStep);r>=e.progressSteps.length&&b("Invalid currentProgressStep parameter, it should be less than progressSteps.length (currentProgressStep like JS arrays starts from 0)"),e.progressSteps.forEach((function(t,i){var o=be(t);if(n.appendChild(o),i===r&&gt(o,$["active-progress-step"]),i!==e.progressSteps.length-1){var s=_e(e);n.appendChild(s)}}))},ke=function(t,e){var n=V();xt(n,e.title||e.titleText),e.title&&Ft(e.title,n),e.titleText&&(n.innerText=e.titleText),dt(n,e,"title")},Se=function(t,e){var n=X();dt(n,e,"header"),xe(t,e),ce(t,e),he(t,e),ke(t,e),le(t,e)},Ce=function(t,e){var n=R();yt(n,"width",e.width),yt(n,"padding",e.padding),e.background&&(n.style.background=e.background),Oe(n,e)},Oe=function(t,e){t.className="".concat($.popup," ").concat(kt(t)?e.showClass.popup:""),e.toast?(gt([document.documentElement,document.body],$["toast-shown"]),gt(t,$.toast)):gt(t,$.modal),dt(t,e,"popup"),"string"==typeof e.customClass&&gt(t,e.customClass),e.icon&&gt(t,$["icon-".concat(e.icon)])},Te=function(t,e){Ce(t,e),Gt(t,e),Se(t,e),se(t,e),Vt(t,e),ae(t,e),"function"==typeof e.onRender&&e.onRender(R())},Ee=function(){return kt(R())},je=function(){return G()&&G().click()},Ae=function(){return J()&&J().click()};function Pe(){for(var t=this,e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return c(t,n)}function Me(t){var n=function(n){o(l,n);var a=f(l);function l(){return e(this,l),a.apply(this,arguments)}return r(l,[{key:"_main",value:function(e){return h(s(l.prototype),"_main",this).call(this,i({},t,e))}}]),l}(this);return n}var Ie=function(){var t=R();t||Ir.fire(),t=R();var e=K(),n=G();bt(e),bt(n,"inline-block"),gt([t,e],$.loading),n.disabled=!0,t.setAttribute("data-loading",!0),t.setAttribute("aria-busy",!0),t.focus()},Le=100,$e={},De=function(){$e.previousActiveElement&&$e.previousActiveElement.focus?($e.previousActiveElement.focus(),$e.previousActiveElement=null):document.body&&document.body.focus()},Ne=function(){return new Promise((function(t){var e=window.scrollX,n=window.scrollY;$e.restoreFocusTimeout=setTimeout((function(){De(),t()}),Le),void 0!==e&&void 0!==n&&window.scrollTo(e,n)}))},Fe=function(){return $e.timeout&&$e.timeout.getTimerLeft()},Be=function(){if($e.timeout)return Et(),$e.timeout.stop()},Re=function(){if($e.timeout){var t=$e.timeout.start();return Tt(t),t}},ze=function(){var t=$e.timeout;return t&&(t.running?Be():Re())},Ue=function(t){if($e.timeout){var e=$e.timeout.increase(t);return Tt(e,!0),e}},Ve=function(){return $e.timeout&&$e.timeout.isRunning()},He={title:"",titleText:"",text:"",html:"",footer:"",icon:void 0,iconHtml:void 0,toast:!1,animation:!0,showClass:{popup:"swal2-show",backdrop:"swal2-backdrop-show",icon:"swal2-icon-show"},hideClass:{popup:"swal2-hide",backdrop:"swal2-backdrop-hide",icon:"swal2-icon-hide"},customClass:void 0,target:"body",backdrop:!0,heightAuto:!0,allowOutsideClick:!0,allowEscapeKey:!0,allowEnterKey:!0,stopKeydownPropagation:!0,keydownListenerCapture:!1,showConfirmButton:!0,showCancelButton:!1,preConfirm:void 0,confirmButtonText:"OK",confirmButtonAriaLabel:"",confirmButtonColor:void 0,cancelButtonText:"Cancel",cancelButtonAriaLabel:"",cancelButtonColor:void 0,buttonsStyling:!0,reverseButtons:!1,focusConfirm:!0,focusCancel:!1,showCloseButton:!1,closeButtonHtml:"&times;",closeButtonAriaLabel:"Close this dialog",showLoaderOnConfirm:!1,imageUrl:void 0,imageWidth:void 0,imageHeight:void 0,imageAlt:"",timer:void 0,timerProgressBar:!1,width:void 0,padding:void 0,background:void 0,input:void 0,inputPlaceholder:"",inputValue:"",inputOptions:{},inputAutoTrim:!0,inputAttributes:{},inputValidator:void 0,validationMessage:void 0,grow:!1,position:"center",progressSteps:[],currentProgressStep:void 0,progressStepsDistance:void 0,onBeforeOpen:void 0,onOpen:void 0,onRender:void 0,onClose:void 0,onAfterClose:void 0,onDestroy:void 0,scrollbarPadding:!0},qe=["allowEscapeKey","allowOutsideClick","buttonsStyling","cancelButtonAriaLabel","cancelButtonColor","cancelButtonText","closeButtonAriaLabel","closeButtonHtml","confirmButtonAriaLabel","confirmButtonColor","confirmButtonText","currentProgressStep","customClass","footer","hideClass","html","icon","imageAlt","imageHeight","imageUrl","imageWidth","onAfterClose","onClose","onDestroy","progressSteps","reverseButtons","showCancelButton","showCloseButton","showConfirmButton","text","title","titleText"],We={animation:'showClass" and "hideClass'},Ze=["allowOutsideClick","allowEnterKey","backdrop","focusConfirm","focusCancel","heightAuto","keydownListenerCapture"],Ye=function(t){return Object.prototype.hasOwnProperty.call(He,t)},Ge=function(t){return-1!==qe.indexOf(t)},Je=function(t){return We[t]},Ke=function(t){Ye(t)||b('Unknown parameter "'.concat(t,'"'))},Xe=function(t){-1!==Ze.indexOf(t)&&b('The parameter "'.concat(t,'" is incompatible with toasts'))},Qe=function(t){Je(t)&&S(t,Je(t))},tn=function(t){for(var e in t)Ke(e),t.toast&&Xe(e),Qe(e)},en=Object.freeze({isValidParameter:Ye,isUpdatableParameter:Ge,isDeprecatedParameter:Je,argsToParams:M,isVisible:Ee,clickConfirm:je,clickCancel:Ae,getContainer:N,getPopup:R,getTitle:V,getContent:H,getHtmlContainer:q,getImage:W,getIcon:U,getIcons:z,getCloseButton:et,getActions:K,getConfirmButton:G,getCancelButton:J,getHeader:X,getFooter:Q,getTimerProgressBar:tt,getFocusableElements:rt,getValidationMessage:Y,isLoading:st,fire:Pe,mixin:Me,queue:ge,getQueueStep:ve,insertQueueStep:we,deleteQueueStep:ye,showLoading:Ie,enableLoading:Ie,getTimerLeft:Fe,stopTimer:Be,resumeTimer:Re,toggleTimer:ze,increaseTimer:Ue,isTimerRunning:Ve});function nn(){var t=Jt.innerParams.get(this);if(t){var e=Jt.domCache.get(this);t.showConfirmButton||(_t(e.confirmButton),t.showCancelButton||_t(e.actions)),vt([e.popup,e.actions],$.loading),e.popup.removeAttribute("aria-busy"),e.popup.removeAttribute("data-loading"),e.confirmButton.disabled=!1,e.cancelButton.disabled=!1}}function rn(t){var e=Jt.innerParams.get(t||this),n=Jt.domCache.get(t||this);return n?ft(n.content,e.input):null}var on=function(){null===at.previousBodyPadding&&document.body.scrollHeight>window.innerHeight&&(at.previousBodyPadding=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right")),document.body.style.paddingRight="".concat(at.previousBodyPadding+Ut(),"px"))},sn=function(){null!==at.previousBodyPadding&&(document.body.style.paddingRight="".concat(at.previousBodyPadding,"px"),at.previousBodyPadding=null)},an=function(){if((/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||"MacIntel"===navigator.platform&&navigator.maxTouchPoints>1)&&!ct(document.body,$.iosfix)){var t=document.body.scrollTop;document.body.style.top="".concat(-1*t,"px"),gt(document.body,$.iosfix),cn(),ln()}},ln=function(){if(!navigator.userAgent.match(/(CriOS|FxiOS|EdgiOS|YaBrowser|UCBrowser)/i)){var t=44;R().scrollHeight>window.innerHeight-t&&(N().style.paddingBottom="".concat(t,"px"))}},cn=function(){var t,e=N();e.ontouchstart=function(e){t=un(e.target)},e.ontouchmove=function(e){t&&(e.preventDefault(),e.stopPropagation())}},un=function(t){var e=N();return t===e||!(St(e)||"INPUT"===t.tagName||St(H())&&H().contains(t))},dn=function(){if(ct(document.body,$.iosfix)){var t=parseInt(document.body.style.top,10);vt(document.body,$.iosfix),document.body.style.top="",document.body.scrollTop=-1*t}},fn=function(){return!!window.MSInputMethodContext&&!!document.documentMode},pn=function(){var t=N(),e=R();t.style.removeProperty("align-items"),e.offsetTop<0&&(t.style.alignItems="flex-start")},hn=function(){"undefined"!=typeof window&&fn()&&(pn(),window.addEventListener("resize",pn))},mn=function(){"undefined"!=typeof window&&fn()&&window.removeEventListener("resize",pn)},gn=function(){y(document.body.children).forEach((function(t){t===N()||Ot(t,N())||(t.hasAttribute("aria-hidden")&&t.setAttribute("data-previous-aria-hidden",t.getAttribute("aria-hidden")),t.setAttribute("aria-hidden","true"))}))},vn=function(){y(document.body.children).forEach((function(t){t.hasAttribute("data-previous-aria-hidden")?(t.setAttribute("aria-hidden",t.getAttribute("data-previous-aria-hidden")),t.removeAttribute("data-previous-aria-hidden")):t.removeAttribute("aria-hidden")}))},wn={swalPromiseResolve:new WeakMap};function yn(t,e,n,r){n?Sn(t,r):(Ne().then((function(){return Sn(t,r)})),$e.keydownTarget.removeEventListener("keydown",$e.keydownHandler,{capture:$e.keydownListenerCapture}),$e.keydownHandlerAdded=!1),e.parentNode&&!document.body.getAttribute("data-swal2-queue-step")&&e.parentNode.removeChild(e),it()&&(sn(),dn(),mn(),vn()),bn()}function bn(){vt([document.documentElement,document.body],[$.shown,$["height-auto"],$["no-backdrop"],$["toast-shown"],$["toast-column"]])}function _n(t){var e=R();if(e){var n=Jt.innerParams.get(this);if(n&&!ct(e,n.hideClass.popup)){var r=wn.swalPromiseResolve.get(this);vt(e,n.showClass.popup),gt(e,n.hideClass.popup);var i=N();vt(i,n.showClass.backdrop),gt(i,n.hideClass.backdrop),xn(this,e,n),void 0!==t?(t.isDismissed=void 0!==t.dismiss,t.isConfirmed=void 0===t.dismiss):t={isDismissed:!0,isConfirmed:!1},r(t||{})}}}var xn=function(t,e,n){var r=N(),i=zt&&Ct(e),o=n.onClose,s=n.onAfterClose;null!==o&&"function"==typeof o&&o(e),i?kn(t,e,r,s):yn(t,r,ot(),s)},kn=function(t,e,n,r){$e.swalCloseEventFinishedCallback=yn.bind(null,t,n,ot(),r),e.addEventListener(zt,(function(t){t.target===e&&($e.swalCloseEventFinishedCallback(),delete $e.swalCloseEventFinishedCallback)}))},Sn=function(t,e){setTimeout((function(){"function"==typeof e&&e(),t._destroy()}))};function Cn(t,e,n){var r=Jt.domCache.get(t);e.forEach((function(t){r[t].disabled=n}))}function On(t,e){if(!t)return!1;if("radio"===t.type)for(var n=t.parentNode.parentNode.querySelectorAll("input"),r=0;r<n.length;r++)n[r].disabled=e;else t.disabled=e}function Tn(){Cn(this,["confirmButton","cancelButton"],!1)}function En(){Cn(this,["confirmButton","cancelButton"],!0)}function jn(){return On(this.getInput(),!1)}function An(){return On(this.getInput(),!0)}function Pn(t){var e=Jt.domCache.get(this);lt(e.validationMessage,t);var n=window.getComputedStyle(e.popup);e.validationMessage.style.marginLeft="-".concat(n.getPropertyValue("padding-left")),e.validationMessage.style.marginRight="-".concat(n.getPropertyValue("padding-right")),bt(e.validationMessage);var r=this.getInput();r&&(r.setAttribute("aria-invalid",!0),r.setAttribute("aria-describedBy",$["validation-message"]),ht(r),gt(r,$.inputerror))}function Mn(){var t=Jt.domCache.get(this);t.validationMessage&&_t(t.validationMessage);var e=this.getInput();e&&(e.removeAttribute("aria-invalid"),e.removeAttribute("aria-describedBy"),vt(e,$.inputerror))}function In(){return Jt.domCache.get(this).progressSteps}var Ln=function(){function t(n,r){e(this,t),this.callback=n,this.remaining=r,this.running=!1,this.start()}return r(t,[{key:"start",value:function(){return this.running||(this.running=!0,this.started=new Date,this.id=setTimeout(this.callback,this.remaining)),this.remaining}},{key:"stop",value:function(){return this.running&&(this.running=!1,clearTimeout(this.id),this.remaining-=new Date-this.started),this.remaining}},{key:"increase",value:function(t){var e=this.running;return e&&this.stop(),this.remaining+=t,e&&this.start(),this.remaining}},{key:"getTimerLeft",value:function(){return this.running&&(this.stop(),this.start()),this.remaining}},{key:"isRunning",value:function(){return this.running}}]),t}(),$n={email:function(t,e){return/^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9-]{2,24}$/.test(t)?Promise.resolve():Promise.resolve(e||"Invalid email address")},url:function(t,e){return/^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-z]{2,63}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)$/.test(t)?Promise.resolve():Promise.resolve(e||"Invalid URL")}};function Dn(t){t.inputValidator||Object.keys($n).forEach((function(e){t.input===e&&(t.inputValidator=$n[e])}))}function Nn(t){(!t.target||"string"==typeof t.target&&!document.querySelector(t.target)||"string"!=typeof t.target&&!t.target.appendChild)&&(b('Target parameter is not valid, defaulting to "body"'),t.target="body")}function Fn(t){Dn(t),t.showLoaderOnConfirm&&!t.preConfirm&&b("showLoaderOnConfirm is set to true, but preConfirm is not defined.\nshowLoaderOnConfirm should be used together with preConfirm, see usage example:\nhttps://sweetalert2.github.io/#ajax-request"),t.animation=C(t.animation),Nn(t),"string"==typeof t.title&&(t.title=t.title.split("\n").join("<br />")),Nt(t)}var Bn=function(t){var e=N(),n=R();"function"==typeof t.onBeforeOpen&&t.onBeforeOpen(n);var r=window.getComputedStyle(document.body).overflowY;Vn(e,n,t),zn(e,n),it()&&(Un(e,t.scrollbarPadding,r),gn()),ot()||$e.previousActiveElement||($e.previousActiveElement=document.activeElement),"function"==typeof t.onOpen&&setTimeout((function(){return t.onOpen(n)})),vt(e,$["no-transition"])};function Rn(t){var e=R();if(t.target===e){var n=N();e.removeEventListener(zt,Rn),n.style.overflowY="auto"}}var zn=function(t,e){zt&&Ct(e)?(t.style.overflowY="hidden",e.addEventListener(zt,Rn)):t.style.overflowY="auto"},Un=function(t,e,n){an(),hn(),e&&"hidden"!==n&&on(),setTimeout((function(){t.scrollTop=0}))},Vn=function(t,e,n){gt(t,n.showClass.backdrop),bt(e),gt(e,n.showClass.popup),gt([document.documentElement,document.body],$.shown),n.heightAuto&&n.backdrop&&!n.toast&&gt([document.documentElement,document.body],$["height-auto"])},Hn=function(t,e){"select"===e.input||"radio"===e.input?Gn(t,e):-1!==["text","email","number","tel","textarea"].indexOf(e.input)&&(O(e.inputValue)||E(e.inputValue))&&Jn(t,e)},qn=function(t,e){var n=t.getInput();if(!n)return null;switch(e.input){case"checkbox":return Wn(n);case"radio":return Zn(n);case"file":return Yn(n);default:return e.inputAutoTrim?n.value.trim():n.value}},Wn=function(t){return t.checked?1:0},Zn=function(t){return t.checked?t.value:null},Yn=function(t){return t.files.length?null!==t.getAttribute("multiple")?t.files:t.files[0]:null},Gn=function(e,n){var r=H(),i=function(t){return Kn[n.input](r,Xn(t),n)};O(n.inputOptions)||E(n.inputOptions)?(Ie(),T(n.inputOptions).then((function(t){e.hideLoading(),i(t)}))):"object"===t(n.inputOptions)?i(n.inputOptions):_("Unexpected type of inputOptions! Expected object, Map or Promise, got ".concat(t(n.inputOptions)))},Jn=function(t,e){var n=t.getInput();_t(n),T(e.inputValue).then((function(r){n.value="number"===e.input?parseFloat(r)||0:"".concat(r),bt(n),n.focus(),t.hideLoading()})).catch((function(e){_("Error in inputValue promise: ".concat(e)),n.value="",bt(n),n.focus(),t.hideLoading()}))},Kn={select:function(t,e,n){var r=wt(t,$.select),i=function(t,e,r){var i=document.createElement("option");i.value=r,lt(i,e),n.inputValue.toString()===r.toString()&&(i.selected=!0),t.appendChild(i)};e.forEach((function(t){var e=t[0],n=t[1];if(Array.isArray(n)){var o=document.createElement("optgroup");o.label=e,o.disabled=!1,r.appendChild(o),n.forEach((function(t){return i(o,t[1],t[0])}))}else i(r,n,e)})),r.focus()},radio:function(t,e,n){var r=wt(t,$.radio);e.forEach((function(t){var e=t[0],i=t[1],o=document.createElement("input"),s=document.createElement("label");o.type="radio",o.name=$.radio,o.value=e,n.inputValue.toString()===e.toString()&&(o.checked=!0);var a=document.createElement("span");lt(a,i),a.className=$.label,s.appendChild(o),s.appendChild(a),r.appendChild(s)}));var i=r.querySelectorAll("input");i.length&&i[0].focus()}},Xn=function e(n){var r=[];return"undefined"!=typeof Map&&n instanceof Map?n.forEach((function(n,i){var o=n;"object"===t(o)&&(o=e(o)),r.push([i,o])})):Object.keys(n).forEach((function(i){var o=n[i];"object"===t(o)&&(o=e(o)),r.push([i,o])})),r},Qn=function(t,e){t.disableButtons(),e.input?er(t,e):rr(t,e,!0)},tr=function(t,e){t.disableButtons(),e(j.cancel)},er=function(t,e){var n=qn(t,e);e.inputValidator?(t.disableInput(),Promise.resolve().then((function(){return T(e.inputValidator(n,e.validationMessage))})).then((function(r){t.enableButtons(),t.enableInput(),r?t.showValidationMessage(r):rr(t,e,n)}))):t.getInput().checkValidity()?rr(t,e,n):(t.enableButtons(),t.showValidationMessage(e.validationMessage))},nr=function(t,e){t.closePopup({value:e})},rr=function(t,e,n){e.showLoaderOnConfirm&&Ie(),e.preConfirm?(t.resetValidationMessage(),Promise.resolve().then((function(){return T(e.preConfirm(n,e.validationMessage))})).then((function(e){kt(Y())||!1===e?t.hideLoading():nr(t,void 0===e?n:e)}))):nr(t,n)},ir=function(t,e,n,r){e.keydownTarget&&e.keydownHandlerAdded&&(e.keydownTarget.removeEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!1),n.toast||(e.keydownHandler=function(e){return lr(t,e,r)},e.keydownTarget=n.keydownListenerCapture?window:R(),e.keydownListenerCapture=n.keydownListenerCapture,e.keydownTarget.addEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!0)},or=function(t,e,n){for(var r=rt(),i=0;i<r.length;i++)return(e+=n)===r.length?e=0:-1===e&&(e=r.length-1),r[e].focus();R().focus()},sr=["ArrowLeft","ArrowRight","ArrowUp","ArrowDown","Left","Right","Up","Down"],ar=["Escape","Esc"],lr=function(t,e,n){var r=Jt.innerParams.get(t);r.stopKeydownPropagation&&e.stopPropagation(),"Enter"===e.key?cr(t,e,r):"Tab"===e.key?ur(e,r):-1!==sr.indexOf(e.key)?dr():-1!==ar.indexOf(e.key)&&fr(e,r,n)},cr=function(t,e,n){if(!e.isComposing&&e.target&&t.getInput()&&e.target.outerHTML===t.getInput().outerHTML){if(-1!==["textarea","file"].indexOf(n.input))return;je(),e.preventDefault()}},ur=function(t,e){for(var n=t.target,r=rt(),i=-1,o=0;o<r.length;o++)if(n===r[o]){i=o;break}t.shiftKey?or(e,i,-1):or(e,i,1),t.stopPropagation(),t.preventDefault()},dr=function(){var t=G(),e=J();document.activeElement===t&&kt(e)?e.focus():document.activeElement===e&&kt(t)&&t.focus()},fr=function(t,e,n){C(e.allowEscapeKey)&&(t.preventDefault(),n(j.esc))},pr=function(t,e,n){Jt.innerParams.get(t).toast?hr(t,e,n):(gr(e),vr(e),wr(t,e,n))},hr=function(t,e,n){e.popup.onclick=function(){var e=Jt.innerParams.get(t);e.showConfirmButton||e.showCancelButton||e.showCloseButton||e.input||n(j.close)}},mr=!1,gr=function(t){t.popup.onmousedown=function(){t.container.onmouseup=function(e){t.container.onmouseup=void 0,e.target===t.container&&(mr=!0)}}},vr=function(t){t.container.onmousedown=function(){t.popup.onmouseup=function(e){t.popup.onmouseup=void 0,(e.target===t.popup||t.popup.contains(e.target))&&(mr=!0)}}},wr=function(t,e,n){e.container.onclick=function(r){var i=Jt.innerParams.get(t);mr?mr=!1:r.target===e.container&&C(i.allowOutsideClick)&&n(j.backdrop)}};function yr(t){tn(t),$e.currentInstance&&$e.currentInstance._destroy(),$e.currentInstance=this;var e=br(t);Fn(e),Object.freeze(e),$e.timeout&&($e.timeout.stop(),delete $e.timeout),clearTimeout($e.restoreFocusTimeout);var n=xr(this);return Te(this,e),Jt.innerParams.set(this,e),_r(this,n,e)}var br=function(t){var e=i({},He.showClass,t.showClass),n=i({},He.hideClass,t.hideClass),r=i({},He,t);return r.showClass=e,r.hideClass=n,!1===t.animation&&(r.showClass={popup:"swal2-noanimation",backdrop:"swal2-noanimation"},r.hideClass={}),r},_r=function(t,e,n){return new Promise((function(r){var i=function(e){t.closePopup({dismiss:e})};wn.swalPromiseResolve.set(t,r),e.confirmButton.onclick=function(){return Qn(t,n)},e.cancelButton.onclick=function(){return tr(t,i)},e.closeButton.onclick=function(){return i(j.close)},pr(t,e,i),ir(t,$e,n,i),n.toast&&(n.input||n.footer||n.showCloseButton)?gt(document.body,$["toast-column"]):vt(document.body,$["toast-column"]),Hn(t,n),Bn(n),kr($e,n,i),Sr(e,n),setTimeout((function(){e.container.scrollTop=0}))}))},xr=function(t){var e={popup:R(),container:N(),content:H(),actions:K(),confirmButton:G(),cancelButton:J(),closeButton:et(),validationMessage:Y(),progressSteps:Z()};return Jt.domCache.set(t,e),e},kr=function(t,e,n){var r=tt();_t(r),e.timer&&(t.timeout=new Ln((function(){n("timer"),delete t.timeout}),e.timer),e.timerProgressBar&&(bt(r),setTimeout((function(){t.timeout.running&&Tt(e.timer)}))))},Sr=function(t,e){if(!e.toast)return C(e.allowEnterKey)?e.focusCancel&&kt(t.cancelButton)?t.cancelButton.focus():e.focusConfirm&&kt(t.confirmButton)?t.confirmButton.focus():void or(e,-1,1):Cr()},Cr=function(){document.activeElement&&"function"==typeof document.activeElement.blur&&document.activeElement.blur()};function Or(t){var e=R(),n=Jt.innerParams.get(this);if(!e||ct(e,n.hideClass.popup))return b("You're trying to update the closed or closing popup, that won't work. Use the update() method in preConfirm parameter or show a new popup.");var r={};Object.keys(t).forEach((function(e){Ir.isUpdatableParameter(e)?r[e]=t[e]:b('Invalid parameter to update: "'.concat(e,'". Updatable params are listed here: https://github.com/sweetalert2/sweetalert2/blob/master/src/utils/params.js'))}));var o=i({},n,r);Te(this,o),Jt.innerParams.set(this,o),Object.defineProperties(this,{params:{value:i({},this.params,t),writable:!1,enumerable:!0}})}function Tr(){var t=Jt.domCache.get(this),e=Jt.innerParams.get(this);e&&(t.popup&&$e.swalCloseEventFinishedCallback&&($e.swalCloseEventFinishedCallback(),delete $e.swalCloseEventFinishedCallback),$e.deferDisposalTimer&&(clearTimeout($e.deferDisposalTimer),delete $e.deferDisposalTimer),"function"==typeof e.onDestroy&&e.onDestroy(),jr(this))}var Er,jr=function(t){delete t.params,delete $e.keydownHandler,delete $e.keydownTarget,Ar(Jt),Ar(wn)},Ar=function(t){for(var e in t)t[e]=new WeakMap},Pr=Object.freeze({hideLoading:nn,disableLoading:nn,getInput:rn,close:_n,closePopup:_n,closeModal:_n,closeToast:_n,enableButtons:Tn,disableButtons:En,enableInput:jn,disableInput:An,showValidationMessage:Pn,resetValidationMessage:Mn,getProgressSteps:In,_main:yr,update:Or,_destroy:Tr}),Mr=function(){function t(){if(e(this,t),"undefined"!=typeof window){"undefined"==typeof Promise&&_("This package requires a Promise library, please include a shim to enable it in this browser (See: https://github.com/sweetalert2/sweetalert2/wiki/Migration-from-SweetAlert-to-SweetAlert2#1-ie-support)"),Er=this;for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];var o=Object.freeze(this.constructor.argsToParams(r));Object.defineProperties(this,{params:{value:o,writable:!1,enumerable:!0,configurable:!0}});var s=this._main(this.params);Jt.promise.set(this,s)}}return r(t,[{key:"then",value:function(t){return Jt.promise.get(this).then(t)}},{key:"finally",value:function(t){return Jt.promise.get(this).finally(t)}}]),t}();i(Mr.prototype,Pr),i(Mr,en),Object.keys(Pr).forEach((function(t){Mr[t]=function(){var e;if(Er)return(e=Er)[t].apply(e,arguments)}})),Mr.DismissReason=j,Mr.version="9.17.2";var Ir=Mr;return Ir.default=Ir,Ir}(),void 0!==this&&this.Sweetalert2&&(this.swal=this.sweetAlert=this.Swal=this.SweetAlert=this.Sweetalert2),"undefined"!=typeof document&&function(t,e){var n=t.createElement("style");if(t.getElementsByTagName("head")[0].appendChild(n),n.styleSheet)n.styleSheet.disabled||(n.styleSheet.cssText=e);else try{n.innerHTML=e}catch(t){n.innerText=e}}(document,'.swal2-popup.swal2-toast{flex-direction:row;align-items:center;width:auto;padding:.625em;overflow-y:hidden;background:#fff;box-shadow:0 0 .625em #d9d9d9}.swal2-popup.swal2-toast .swal2-header{flex-direction:row;padding:0}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;justify-content:flex-start;margin:0 .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.swal2-popup.swal2-toast .swal2-content{justify-content:flex-start;padding:0;font-size:1em}.swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex-basis:auto!important;width:auto;height:auto;margin:0 .3125em}.swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-toast-animate-success-line-tip .75s;animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-toast-animate-success-line-long .75s;animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{-webkit-animation:swal2-toast-show .5s;animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{-webkit-animation:swal2-toast-hide .1s forwards;animation:swal2-toast-hide .1s forwards}.swal2-container{display:flex;position:fixed;z-index:1060;top:0;right:0;bottom:0;left:0;flex-direction:row;align-items:center;justify-content:center;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}.swal2-container.swal2-backdrop-show,.swal2-container.swal2-noanimation{background:rgba(0,0,0,.4)}.swal2-container.swal2-backdrop-hide{background:0 0!important}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{display:flex!important;flex:1;align-self:stretch;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-no-transition{transition:none!important}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-container .swal2-modal{margin:0!important}}.swal2-popup{display:none;position:relative;box-sizing:border-box;flex-direction:column;justify-content:center;width:32em;max-width:100%;padding:1.25em;border:none;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{display:flex;flex-direction:column;align-items:center;padding:0 1.8em}.swal2-title{position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;margin:1.25em auto 0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-actions.swal2-loading .swal2-styled.swal2-confirm{box-sizing:border-box;width:2.5em;height:2.5em;margin:.46875em;padding:0;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:.25em solid transparent;border-radius:100%;border-color:transparent;background-color:transparent!important;color:transparent!important;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after{content:"";display:inline-block;width:15px;height:15px;margin-left:5px;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff}.swal2-styled{margin:.3125em;padding:.625em 2em;box-shadow:none;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.swal2-styled:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;height:.25em;overflow:hidden;border-bottom-right-radius:.3125em;border-bottom-left-radius:.3125em}.swal2-timer-progress-bar{width:100%;height:.25em;background:rgba(0,0,0,.2)}.swal2-image{max-width:100%;margin:1.25em auto}.swal2-close{position:absolute;z-index:2;top:0;right:0;align-items:center;justify-content:center;width:1.2em;height:1.2em;padding:0;overflow:hidden;transition:color .1s ease-out;border:none;border-radius:0;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer}.swal2-close:hover{transform:none;background:0 0;color:#f27474}.swal2-close::-moz-focus-inner{border:0}.swal2-content{z-index:1;justify-content:center;margin:0;padding:0 1.6em;color:#545454;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:100%;transition:border-color .3s,box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;background:inherit;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:0 0 3px #c4e6f5}.swal2-file::-moz-placeholder,.swal2-input::-moz-placeholder,.swal2-textarea::-moz-placeholder{color:#ccc}.swal2-file:-ms-input-placeholder,.swal2-input:-ms-input-placeholder,.swal2-textarea:-ms-input-placeholder{color:#ccc}.swal2-file::-ms-input-placeholder,.swal2-input::-ms-input-placeholder,.swal2-textarea::-ms-input-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em auto;background:#fff}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-input[type=number]{max-width:10em}.swal2-file{background:inherit;font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:inherit;color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:#fff;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{margin:0 .4em}.swal2-validation-message{display:none;align-items:center;justify-content:center;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message::before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid transparent;border-radius:50%;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474;color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-error.swal2-icon-show{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-success{border-color:#a5dc86;color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.swal2-progress-steps{align-items:center;margin:0 0 1.25em;padding:0;background:inherit;font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:20;width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#3085d6}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:10;width:2.5em;height:.4em;margin:0 -1px;background:#3085d6}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{right:auto;left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}@-webkit-keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@-webkit-keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@-webkit-keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@-webkit-keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@-webkit-keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{top:auto;right:auto;bottom:auto;left:auto;max-width:calc(100% - .625em * 2);background-color:transparent!important}body.swal2-no-backdrop .swal2-container>.swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}body.swal2-no-backdrop .swal2-container.swal2-top{top:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-top-left,body.swal2-no-backdrop .swal2-container.swal2-top-start{top:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-top-end,body.swal2-no-backdrop .swal2-container.swal2-top-right{top:0;right:0}body.swal2-no-backdrop .swal2-container.swal2-center{top:50%;left:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-left,body.swal2-no-backdrop .swal2-container.swal2-center-start{top:50%;left:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-end,body.swal2-no-backdrop .swal2-container.swal2-center-right{top:50%;right:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom-left,body.swal2-no-backdrop .swal2-container.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-bottom-end,body.swal2-no-backdrop .swal2-container.swal2-bottom-right{right:0;bottom:0}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}body.swal2-toast-column .swal2-toast{flex-direction:column;align-items:stretch}body.swal2-toast-column .swal2-toast .swal2-actions{flex:1;align-self:stretch;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}')},6240:function(t,e,n){var r,i,o;i=[n(6076)],r=function(t){"use strict";var e=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),n=function(t,e,n){for(var r=!0;r;){var i=t,o=e,s=n;r=!1,null===i&&(i=Function.prototype);var a=Object.getOwnPropertyDescriptor(i,o);if(void 0!==a){if("value"in a)return a.value;var l=a.get;if(void 0===l)return;return l.call(s)}var c=Object.getPrototypeOf(i);if(null===c)return;t=c,e=o,n=s,r=!0,a=c=void 0}};function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var o=t.Utils,s=o.Evented,a=o.addClass,l=o.extend,c=o.hasClass,u=o.removeClass,d=o.uniqueId,f=new s;function p(t){return void 0===t}function h(t){return t&&t.constructor===Array}function m(t){return t&&t.constructor===Object}function g(t){return"object"==typeof t}var v={"top right":"bottom left","top left":"bottom right","top center":"bottom center","middle right":"middle left","middle left":"middle right","middle center":"middle center","bottom left":"top right","bottom right":"top left","bottom center":"top center",top:"bottom center",left:"middle right",right:"middle left",bottom:"top center",center:"middle center",middle:"middle center"};function w(t){var e=document.createElement("div");return e.innerHTML=t,e.children[0]}function y(t,e){var n=void 0;return p(t.matches)?p(t.matchesSelector)?p(t.msMatchesSelector)?p(t.webkitMatchesSelector)?p(t.mozMatchesSelector)?p(t.oMatchesSelector)||(n=t.oMatchesSelector):n=t.mozMatchesSelector:n=t.webkitMatchesSelector:n=t.msMatchesSelector:n=t.matchesSelector:n=t.matches,n.call(t,e)}var b=/^(.+) (top|left|right|bottom|center|\[[a-z ]+\])$/;function _(t){if(g(t))return t.hasOwnProperty("element")&&t.hasOwnProperty("on")?t:null;var e=b.exec(t);if(!e)return null;var n=e[2];return"["===n[0]&&(n=n.substring(1,n.length-1)),{element:e[1],on:n}}function x(t,e){if(null===t||p(t))return t;if(g(t))return t;for(var n=t.split(" "),r={},i=e.length-1,o=n.length-1;o>=0;o--){if(0===i){r[e[i]]=n.slice(0,o+1).join(" ");break}r[e[i]]=n[o],i--}return r}var k=function(o){function s(t,e){return r(this,s),n(Object.getPrototypeOf(s.prototype),"constructor",this).call(this,t,e),this.tour=t,this.bindMethods(),this.setOptions(e),this}return i(s,o),e(s,[{key:"bindMethods",value:function(){var t=this;["_show","show","hide","isOpen","cancel","complete","scrollTo","destroy","render"].map((function(e){t[e]=t[e].bind(t)}))}},{key:"setOptions",value:function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=t,this.destroy(),this.id=this.options.id||this.id||"step-"+d();var e=this.options.when;if(e)for(var n in e)if({}.hasOwnProperty.call(e,n)){var r=e[n];this.on(n,r,this)}var i=JSON.stringify(this.options.buttons),o=p(i)||"true"===i,s="{}"===i||"[]"===i||"null"===i||"false"===i,a=!o&&h(this.options.buttons),l=!o&&m(this.options.buttons);o?this.options.buttons=[{text:"Next",action:this.tour.next,classes:"btn"}]:!s&&l?this.options.buttons=[this.options.buttons]:!s&&a||(this.options.buttons=!1)}},{key:"getTour",value:function(){return this.tour}},{key:"bindAdvance",value:function(){var t=this,e=x(this.options.advanceOn,["selector","event"]),n=e.event,r=e.selector,i=function(e){t.isOpen()&&(p(r)?t.el&&e.target===t.el&&t.tour.next():y(e.target,r)&&t.tour.next())};document.body.addEventListener(n,i),this.on("destroy",(function(){return document.body.removeEventListener(n,i)}))}},{key:"getAttachTo",value:function(){var t=_(this.options.attachTo)||{},e=l({},t);return"string"==typeof t.element&&(e.element=document.querySelector(t.element),e.element||console.error("The element for this Shepherd step was not found "+t.element)),e}},{key:"setupTether",value:function(){if(p(t))throw new Error("Using the attachment feature of Shepherd requires the Tether library");var e=this.getAttachTo(),n=v[e.on]||v.right;p(e.element)&&(e.element="viewport",n="middle center");var r={classPrefix:"shepherd",element:this.el,constraints:[{to:"window",pin:!0,attachment:"together"}],target:e.element,offset:e.offset||"0 0",attachment:n};this.tether&&this.tether.destroy(),this.tether=new t(l(r,this.options.tetherOptions))}},{key:"show",value:function(){var t=this;if(!p(this.options.beforeShowPromise)){var e=this.options.beforeShowPromise();if(!p(e))return e.then((function(){return t._show()}))}this._show()}},{key:"_show",value:function(){var t=this;this.trigger("before-show"),this.el||this.render(),a(this.el,"shepherd-open"),document.body.setAttribute("data-shepherd-step",this.id),this.setupTether(),this.options.scrollTo&&setTimeout((function(){t.scrollTo()})),this.trigger("show")}},{key:"hide",value:function(){this.trigger("before-hide"),u(this.el,"shepherd-open"),document.body.removeAttribute("data-shepherd-step"),this.tether&&this.tether.destroy(),this.tether=null,this.trigger("hide")}},{key:"isOpen",value:function(){return this.el&&c(this.el,"shepherd-open")}},{key:"cancel",value:function(){this.tour.cancel(),this.trigger("cancel")}},{key:"complete",value:function(){this.tour.complete(),this.trigger("complete")}},{key:"scrollTo",value:function(){var t=this.getAttachTo().element;p(this.options.scrollToHandler)?p(t)||t.scrollIntoView():this.options.scrollToHandler(t)}},{key:"destroy",value:function(){!p(this.el)&&this.el.parentNode&&(this.el.parentNode.removeChild(this.el),delete this.el),this.tether&&this.tether.destroy(),this.tether=null,this.trigger("destroy")}},{key:"render",value:function(){var t=this;p(this.el)||this.destroy(),this.el=w("<div class='shepherd-step "+(this.options.classes||"")+"' data-id='"+this.id+"' "+(this.options.idAttribute?'id="'+this.options.idAttribute+'"':"")+"></div>");var e=document.createElement("div");e.className="shepherd-content",this.el.appendChild(e);var n,r,i,o,s=document.createElement("header");if(e.appendChild(s),this.options.title&&(s.innerHTML+="<h3 class='shepherd-title'>"+this.options.title+"</h3>",this.el.className+=" shepherd-has-title"),this.options.showCancelLink){var a=w("<a href class='shepherd-cancel-link'>✕</a>");s.appendChild(a),this.el.className+=" shepherd-has-cancel-link",this.bindCancelLink(a)}p(this.options.text)||(n=w("<div class='shepherd-text'></div>"),"function"==typeof(r=t.options.text)&&(r=r.call(t,n)),r instanceof HTMLElement?n.appendChild(r):("string"==typeof r&&(r=[r]),r.map((function(t){n.innerHTML+="<p>"+t+"</p>"}))),e.appendChild(n)),this.options.buttons&&(i=document.createElement("footer"),o=w("<ul class='shepherd-buttons'></ul>"),t.options.buttons.map((function(e){var n=w("<li><a class='shepherd-button "+(e.classes||"")+"'>"+e.text+"</a>");o.appendChild(n),t.bindButtonEvents(e,n.querySelector("a"))})),i.appendChild(o),e.appendChild(i)),document.body.appendChild(this.el),this.setupTether(),this.options.advanceOn&&this.bindAdvance()}},{key:"bindCancelLink",value:function(t){var e=this;t.addEventListener("click",(function(t){t.preventDefault(),e.cancel()}))}},{key:"bindButtonEvents",value:function(t,e){var n=this;for(var r in t.events=t.events||{},p(t.action)||(t.events.click=t.action),t.events)if({}.hasOwnProperty.call(t.events,r)){var i=t.events[r];"string"==typeof i&&function(){var t=i;i=function(){return n.tour.show(t)}}(),e.addEventListener(r,i)}this.on("destroy",(function(){for(var n in t.events)if({}.hasOwnProperty.call(t.events,n)){var r=t.events[n];e.removeEventListener(n,r)}}))}}]),s}(s),S=function(t){function o(){var t=this,e=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];return r(this,o),n(Object.getPrototypeOf(o.prototype),"constructor",this).call(this,e),this.bindMethods(),this.options=e,this.steps=this.options.steps||[],["complete","cancel","hide","start","show","active","inactive"].map((function(e){var n;n=e,t.on(n,(function(e){(e=e||{}).tour=t,f.trigger(n,e)}))})),this}return i(o,t),e(o,[{key:"bindMethods",value:function(){var t=this;["next","back","cancel","complete","hide"].map((function(e){t[e]=t[e].bind(t)}))}},{key:"addStep",value:function(t,e){return p(e)&&(e=t),e instanceof k?e.tour=this:("string"!=typeof t&&"number"!=typeof t||(e.id=t.toString()),e=l({},this.options.defaults,e),e=new k(this,e)),this.steps.push(e),this}},{key:"removeStep",value:function(t){for(var e=this.getCurrentStep(),n=0;n<this.steps.length;++n){var r=this.steps[n];if(r.id===t){r.isOpen()&&r.hide(),r.destroy(),this.steps.splice(n,1);break}}e&&e.id===t&&(this.currentStep=void 0,this.steps.length?this.show(0):this.hide())}},{key:"getById",value:function(t){for(var e=0;e<this.steps.length;++e){var n=this.steps[e];if(n.id===t)return n}}},{key:"getCurrentStep",value:function(){return this.currentStep}},{key:"next",value:function(){var t=this.steps.indexOf(this.currentStep);t===this.steps.length-1?(this.hide(t),this.trigger("complete"),this.done()):this.show(t+1,!0)}},{key:"back",value:function(){var t=this.steps.indexOf(this.currentStep);this.show(t-1,!1)}},{key:"cancel",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("cancel"),this.done()}},{key:"complete",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("complete"),this.done()}},{key:"hide",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("hide"),this.done()}},{key:"done",value:function(){f.activeTour=null,u(document.body,"shepherd-active"),this.trigger("inactive",{tour:this})}},{key:"show",value:function(){var t=arguments.length<=0||void 0===arguments[0]?0:arguments[0],e=arguments.length<=1||void 0===arguments[1]||arguments[1];this.currentStep?this.currentStep.hide():(a(document.body,"shepherd-active"),this.trigger("active",{tour:this})),f.activeTour=this;var n=void 0;if(n="string"==typeof t?this.getById(t):this.steps[t])if(p(n.options.showOn)||n.options.showOn())this.trigger("show",{step:n,previous:this.currentStep}),this.currentStep&&this.currentStep.hide(),this.currentStep=n,n.show();else{var r=this.steps.indexOf(n),i=e?r+1:r-1;this.show(i,e)}}},{key:"start",value:function(){this.trigger("start"),this.currentStep=null,this.next()}}]),o}(s);return l(f,{Tour:S,Step:k,Evented:s}),f},void 0===(o="function"==typeof r?r.apply(e,i):r)||(t.exports=o)},6076:function(t,e){var n,r,i;r=[],n=function(){"use strict";var t=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}();function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var n=void 0;void 0===n&&(n={modules:[]});var r=null;function i(t){var e=t.getBoundingClientRect(),n={};for(var r in e)n[r]=e[r];try{if(t.ownerDocument!==document){var o=t.ownerDocument.defaultView.frameElement;if(o){var s=i(o);n.top+=s.top,n.bottom+=s.top,n.left+=s.left,n.right+=s.left}}}catch(t){}return n}function o(t){var e=(getComputedStyle(t)||{}).position,n=[];if("fixed"===e)return[t];for(var r=t;(r=r.parentNode)&&r&&1===r.nodeType;){var i=void 0;try{i=getComputedStyle(r)}catch(t){}if(null==i)return n.push(r),n;var o=i,s=o.overflow,a=o.overflowX,l=o.overflowY;/(auto|scroll|overlay)/.test(s+l+a)&&("absolute"!==e||["relative","absolute","fixed"].indexOf(i.position)>=0)&&n.push(r)}return n.push(t.ownerDocument.body),t.ownerDocument!==document&&n.push(t.ownerDocument.defaultView),n}var s,a=(s=0,function(){return++s}),l={},c=function(){var t=r;t&&document.body.contains(t)||((t=document.createElement("div")).setAttribute("data-tether-id",a()),m(t.style,{top:0,left:0,position:"absolute"}),document.body.appendChild(t),r=t);var e=t.getAttribute("data-tether-id");return void 0===l[e]&&(l[e]=i(t),k((function(){delete l[e]}))),l[e]};function u(){r&&document.body.removeChild(r),r=null}function d(t){var e=void 0;t===document?(e=document,t=document.documentElement):e=t.ownerDocument;var n=e.documentElement,r=i(t),o=c();return r.top-=o.top,r.left-=o.left,void 0===r.width&&(r.width=document.body.scrollWidth-r.left-r.right),void 0===r.height&&(r.height=document.body.scrollHeight-r.top-r.bottom),r.top=r.top-n.clientTop,r.left=r.left-n.clientLeft,r.right=e.body.clientWidth-r.width-r.left,r.bottom=e.body.clientHeight-r.height-r.top,r}function f(t){return t.offsetParent||document.documentElement}var p=null;function h(){if(p)return p;var t=document.createElement("div");t.style.width="100%",t.style.height="200px";var e=document.createElement("div");m(e.style,{position:"absolute",top:0,left:0,pointerEvents:"none",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),e.appendChild(t),document.body.appendChild(e);var n=t.offsetWidth;e.style.overflow="scroll";var r=t.offsetWidth;n===r&&(r=e.clientWidth),document.body.removeChild(e);var i=n-r;return p={width:i,height:i}}function m(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],e=[];return Array.prototype.push.apply(e,arguments),e.slice(1).forEach((function(e){if(e)for(var n in e)({}).hasOwnProperty.call(e,n)&&(t[n]=e[n])})),t}function g(t,e){if(void 0!==t.classList)e.split(" ").forEach((function(e){e.trim()&&t.classList.remove(e)}));else{var n=new RegExp("(^| )"+e.split(" ").join("|")+"( |$)","gi"),r=y(t).replace(n," ");b(t,r)}}function v(t,e){if(void 0!==t.classList)e.split(" ").forEach((function(e){e.trim()&&t.classList.add(e)}));else{g(t,e);var n=y(t)+" "+e;b(t,n)}}function w(t,e){if(void 0!==t.classList)return t.classList.contains(e);var n=y(t);return new RegExp("(^| )"+e+"( |$)","gi").test(n)}function y(t){return t.className instanceof t.ownerDocument.defaultView.SVGAnimatedString?t.className.baseVal:t.className}function b(t,e){t.setAttribute("class",e)}function _(t,e,n){n.forEach((function(n){-1===e.indexOf(n)&&w(t,n)&&g(t,n)})),e.forEach((function(e){w(t,e)||v(t,e)}))}var x=[],k=function(t){x.push(t)},S=function(){for(var t=void 0;t=x.pop();)t()},C=function(){function n(){e(this,n)}return t(n,[{key:"on",value:function(t,e,n){var r=!(arguments.length<=3||void 0===arguments[3])&&arguments[3];void 0===this.bindings&&(this.bindings={}),void 0===this.bindings[t]&&(this.bindings[t]=[]),this.bindings[t].push({handler:e,ctx:n,once:r})}},{key:"once",value:function(t,e,n){this.on(t,e,n,!0)}},{key:"off",value:function(t,e){if(void 0!==this.bindings&&void 0!==this.bindings[t])if(void 0===e)delete this.bindings[t];else for(var n=0;n<this.bindings[t].length;)this.bindings[t][n].handler===e?this.bindings[t].splice(n,1):++n}},{key:"trigger",value:function(t){if(void 0!==this.bindings&&this.bindings[t]){for(var e=0,n=arguments.length,r=Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];for(;e<this.bindings[t].length;){var o=this.bindings[t][e],s=o.handler,a=o.ctx,l=o.once,c=a;void 0===c&&(c=this),s.apply(c,r),l?this.bindings[t].splice(e,1):++e}}}}]),n}();n.Utils={getActualBoundingClientRect:i,getScrollParents:o,getBounds:d,getOffsetParent:f,extend:m,addClass:v,removeClass:g,hasClass:w,updateClasses:_,defer:k,flush:S,uniqueId:a,Evented:C,getScrollBarSize:h,removeUtilElements:u};var O=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&a.return&&a.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),T=(t=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),function(t,e,n){for(var r=!0;r;){var i=t,o=e,s=n;r=!1,null===i&&(i=Function.prototype);var a=Object.getOwnPropertyDescriptor(i,o);if(void 0!==a){if("value"in a)return a.value;var l=a.get;if(void 0===l)return;return l.call(s)}var c=Object.getPrototypeOf(i);if(null===c)return;t=c,e=o,n=s,r=!0,a=c=void 0}});function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function E(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}if(void 0===n)throw new Error("You must include the utils.js file before tether.js");var o=(K=n.Utils).getScrollParents,f=(d=K.getBounds,K.getOffsetParent),v=(m=K.extend,K.addClass),g=K.removeClass,h=(_=K.updateClasses,k=K.defer,S=K.flush,K.getScrollBarSize),u=K.removeUtilElements;function j(t,e){var n=arguments.length<=2||void 0===arguments[2]?1:arguments[2];return t+n>=e&&e>=t-n}var A,P,M,I,L=function(){if("undefined"==typeof document)return"";for(var t=document.createElement("div"),e=["transform","WebkitTransform","OTransform","MozTransform","msTransform"],n=0;n<e.length;++n){var r=e[n];if(void 0!==t.style[r])return r}}(),$=[],D=function(){$.forEach((function(t){t.position(!1)})),S()};function N(){return"object"==typeof performance&&"function"==typeof performance.now?performance.now():+new Date}A=null,P=null,M=null,I=function t(){if(void 0!==P&&P>16)return P=Math.min(P-16,250),void(M=setTimeout(t,250));void 0!==A&&N()-A<10||(null!=M&&(clearTimeout(M),M=null),A=N(),D(),P=N()-A)},"undefined"!=typeof window&&void 0!==window.addEventListener&&["resize","scroll","touchmove"].forEach((function(t){window.addEventListener(t,I)}));var F={center:"center",left:"right",right:"left"},B={middle:"middle",top:"bottom",bottom:"top"},R={top:0,left:0,middle:"50%",center:"50%",bottom:"100%",right:"100%"},z=function(t,e){var n=t.left,r=t.top;return"auto"===n&&(n=F[e.left]),"auto"===r&&(r=B[e.top]),{left:n,top:r}},U=function(t){var e=t.left,n=t.top;return void 0!==R[t.left]&&(e=R[t.left]),void 0!==R[t.top]&&(n=R[t.top]),{left:e,top:n}};function V(){for(var t={top:0,left:0},e=arguments.length,n=Array(e),r=0;r<e;r++)n[r]=arguments[r];return n.forEach((function(e){var n=e.top,r=e.left;"string"==typeof n&&(n=parseFloat(n,10)),"string"==typeof r&&(r=parseFloat(r,10)),t.top+=n,t.left+=r})),t}function H(t,e){return"string"==typeof t.left&&-1!==t.left.indexOf("%")&&(t.left=parseFloat(t.left,10)/100*e.width),"string"==typeof t.top&&-1!==t.top.indexOf("%")&&(t.top=parseFloat(t.top,10)/100*e.height),t}var q=function(t){var e=t.split(" "),n=O(e,2);return{top:n[0],left:n[1]}},W=q,Z=function(r){function i(t){var r=this;e(this,i),T(Object.getPrototypeOf(i.prototype),"constructor",this).call(this),this.position=this.position.bind(this),$.push(this),this.history=[],this.setOptions(t,!1),n.modules.forEach((function(t){void 0!==t.initialize&&t.initialize.call(r)})),this.position()}return E(i,r),t(i,[{key:"getClass",value:function(){var t=arguments.length<=0||void 0===arguments[0]?"":arguments[0],e=this.options.classes;return void 0!==e&&e[t]?this.options.classes[t]:this.options.classPrefix?this.options.classPrefix+"-"+t:t}},{key:"setOptions",value:function(t){var e=this,n=arguments.length<=1||void 0===arguments[1]||arguments[1],r={offset:"0 0",targetOffset:"0 0",targetAttachment:"auto auto",classPrefix:"tether"};this.options=m(r,t);var i=this.options,s=i.element,a=i.target,l=i.targetModifier;if(this.element=s,this.target=a,this.targetModifier=l,"viewport"===this.target?(this.target=document.body,this.targetModifier="visible"):"scroll-handle"===this.target&&(this.target=document.body,this.targetModifier="scroll-handle"),["element","target"].forEach((function(t){if(void 0===e[t])throw new Error("Tether Error: Both element and target must be defined");void 0!==e[t].jquery?e[t]=e[t][0]:"string"==typeof e[t]&&(e[t]=document.querySelector(e[t]))})),v(this.element,this.getClass("element")),!1!==this.options.addTargetClasses&&v(this.target,this.getClass("target")),!this.options.attachment)throw new Error("Tether Error: You must provide an attachment");this.targetAttachment=W(this.options.targetAttachment),this.attachment=W(this.options.attachment),this.offset=q(this.options.offset),this.targetOffset=q(this.options.targetOffset),void 0!==this.scrollParents&&this.disable(),"scroll-handle"===this.targetModifier?this.scrollParents=[this.target]:this.scrollParents=o(this.target),!1!==this.options.enabled&&this.enable(n)}},{key:"getTargetBounds",value:function(){if(void 0===this.targetModifier)return d(this.target);if("visible"===this.targetModifier)return this.target===document.body?{top:pageYOffset,left:pageXOffset,height:innerHeight,width:innerWidth}:((o={height:(t=d(this.target)).height,width:t.width,top:t.top,left:t.left}).height=Math.min(o.height,t.height-(pageYOffset-t.top)),o.height=Math.min(o.height,t.height-(t.top+t.height-(pageYOffset+innerHeight))),o.height=Math.min(innerHeight,o.height),o.height-=2,o.width=Math.min(o.width,t.width-(pageXOffset-t.left)),o.width=Math.min(o.width,t.width-(t.left+t.width-(pageXOffset+innerWidth))),o.width=Math.min(innerWidth,o.width),o.width-=2,o.top<pageYOffset&&(o.top=pageYOffset),o.left<pageXOffset&&(o.left=pageXOffset),o);if("scroll-handle"===this.targetModifier){var t=void 0,e=this.target;e===document.body?(e=document.documentElement,t={left:pageXOffset,top:pageYOffset,height:innerHeight,width:innerWidth}):t=d(e);var n=getComputedStyle(e),r=0;(e.scrollWidth>e.clientWidth||[n.overflow,n.overflowX].indexOf("scroll")>=0||this.target!==document.body)&&(r=15);var i=t.height-parseFloat(n.borderTopWidth)-parseFloat(n.borderBottomWidth)-r,o={width:15,height:.975*i*(i/e.scrollHeight),left:t.left+t.width-parseFloat(n.borderLeftWidth)-15},s=0;i<408&&this.target===document.body&&(s=-11e-5*Math.pow(i,2)-.00727*i+22.58),this.target!==document.body&&(o.height=Math.max(o.height,24));var a=this.target.scrollTop/(e.scrollHeight-i);return o.top=a*(i-o.height-s)+t.top+parseFloat(n.borderTopWidth),this.target===document.body&&(o.height=Math.max(o.height,24)),o}}},{key:"clearCache",value:function(){this._cache={}}},{key:"cache",value:function(t,e){return void 0===this._cache&&(this._cache={}),void 0===this._cache[t]&&(this._cache[t]=e.call(this)),this._cache[t]}},{key:"enable",value:function(){var t=this,e=arguments.length<=0||void 0===arguments[0]||arguments[0];!1!==this.options.addTargetClasses&&v(this.target,this.getClass("enabled")),v(this.element,this.getClass("enabled")),this.enabled=!0,this.scrollParents.forEach((function(e){e!==t.target.ownerDocument&&e.addEventListener("scroll",t.position)})),e&&this.position()}},{key:"disable",value:function(){var t=this;g(this.target,this.getClass("enabled")),g(this.element,this.getClass("enabled")),this.enabled=!1,void 0!==this.scrollParents&&this.scrollParents.forEach((function(e){e.removeEventListener("scroll",t.position)}))}},{key:"destroy",value:function(){var t=this;this.disable(),$.forEach((function(e,n){e===t&&$.splice(n,1)})),0===$.length&&u()}},{key:"updateAttachClasses",value:function(t,e){var n=this;t=t||this.attachment,e=e||this.targetAttachment;var r=["left","top","bottom","right","middle","center"];void 0!==this._addAttachClasses&&this._addAttachClasses.length&&this._addAttachClasses.splice(0,this._addAttachClasses.length),void 0===this._addAttachClasses&&(this._addAttachClasses=[]);var i=this._addAttachClasses;t.top&&i.push(this.getClass("element-attached")+"-"+t.top),t.left&&i.push(this.getClass("element-attached")+"-"+t.left),e.top&&i.push(this.getClass("target-attached")+"-"+e.top),e.left&&i.push(this.getClass("target-attached")+"-"+e.left);var o=[];r.forEach((function(t){o.push(n.getClass("element-attached")+"-"+t),o.push(n.getClass("target-attached")+"-"+t)})),k((function(){void 0!==n._addAttachClasses&&(_(n.element,n._addAttachClasses,o),!1!==n.options.addTargetClasses&&_(n.target,n._addAttachClasses,o),delete n._addAttachClasses)}))}},{key:"position",value:function(){var t=this,e=arguments.length<=0||void 0===arguments[0]||arguments[0];if(this.enabled){this.clearCache();var r=z(this.targetAttachment,this.attachment);this.updateAttachClasses(this.attachment,r);var i=this.cache("element-bounds",(function(){return d(t.element)})),o=i.width,s=i.height;if(0===o&&0===s&&void 0!==this.lastSize){var a=this.lastSize;o=a.width,s=a.height}else this.lastSize={width:o,height:s};var l=this.cache("target-bounds",(function(){return t.getTargetBounds()})),c=l,u=H(U(this.attachment),{width:o,height:s}),p=H(U(r),c),m=H(this.offset,{width:o,height:s}),g=H(this.targetOffset,c);u=V(u,m),p=V(p,g);for(var v=l.left+p.left-u.left,w=l.top+p.top-u.top,y=0;y<n.modules.length;++y){var b=n.modules[y].position.call(this,{left:v,top:w,targetAttachment:r,targetPos:l,elementPos:i,offset:u,targetOffset:p,manualOffset:m,manualTargetOffset:g,scrollbarSize:C,attachment:this.attachment});if(!1===b)return!1;void 0!==b&&"object"==typeof b&&(w=b.top,v=b.left)}var _={page:{top:w,left:v},viewport:{top:w-pageYOffset,bottom:pageYOffset-w-s+innerHeight,left:v-pageXOffset,right:pageXOffset-v-o+innerWidth}},x=this.target.ownerDocument,k=x.defaultView,C=void 0;return k.innerHeight>x.documentElement.clientHeight&&(C=this.cache("scrollbar-size",h),_.viewport.bottom-=C.height),k.innerWidth>x.documentElement.clientWidth&&(C=this.cache("scrollbar-size",h),_.viewport.right-=C.width),-1!==["","static"].indexOf(x.body.style.position)&&-1!==["","static"].indexOf(x.body.parentElement.style.position)||(_.page.bottom=x.body.scrollHeight-w-s,_.page.right=x.body.scrollWidth-v-o),void 0!==this.options.optimizations&&!1!==this.options.optimizations.moveElement&&void 0===this.targetModifier&&function(){var e=t.cache("target-offsetparent",(function(){return f(t.target)})),n=t.cache("target-offsetparent-bounds",(function(){return d(e)})),r=getComputedStyle(e),i=n,o={};if(["Top","Left","Bottom","Right"].forEach((function(t){o[t.toLowerCase()]=parseFloat(r["border"+t+"Width"])})),n.right=x.body.scrollWidth-n.left-i.width+o.right,n.bottom=x.body.scrollHeight-n.top-i.height+o.bottom,_.page.top>=n.top+o.top&&_.page.bottom>=n.bottom&&_.page.left>=n.left+o.left&&_.page.right>=n.right){var s=e.scrollTop,a=e.scrollLeft;_.offset={top:_.page.top-n.top+s-o.top,left:_.page.left-n.left+a-o.left}}}(),this.move(_),this.history.unshift(_),this.history.length>3&&this.history.pop(),e&&S(),!0}}},{key:"move",value:function(t){var e=this;if(void 0!==this.element.parentNode){var n={};for(var r in t)for(var i in n[r]={},t[r]){for(var o=!1,s=0;s<this.history.length;++s){var a=this.history[s];if(void 0!==a[r]&&!j(a[r][i],t[r][i])){o=!0;break}}o||(n[r][i]=!0)}var l={top:"",left:"",right:"",bottom:""},c=function(t,n){if(!1!==(void 0!==e.options.optimizations?e.options.optimizations.gpu:null)){var r=void 0,i=void 0;t.top?(l.top=0,r=n.top):(l.bottom=0,r=-n.bottom),t.left?(l.left=0,i=n.left):(l.right=0,i=-n.right),"number"==typeof window.devicePixelRatio&&devicePixelRatio%1==0&&(i=Math.round(i*devicePixelRatio)/devicePixelRatio,r=Math.round(r*devicePixelRatio)/devicePixelRatio),l[L]="translateX("+i+"px) translateY("+r+"px)","msTransform"!==L&&(l[L]+=" translateZ(0)")}else t.top?l.top=n.top+"px":l.bottom=n.bottom+"px",t.left?l.left=n.left+"px":l.right=n.right+"px"},u=!1;if((n.page.top||n.page.bottom)&&(n.page.left||n.page.right)?(l.position="absolute",c(n.page,t.page)):(n.viewport.top||n.viewport.bottom)&&(n.viewport.left||n.viewport.right)?(l.position="fixed",c(n.viewport,t.viewport)):void 0!==n.offset&&n.offset.top&&n.offset.left?function(){l.position="absolute";var r=e.cache("target-offsetparent",(function(){return f(e.target)}));f(e.element)!==r&&k((function(){e.element.parentNode.removeChild(e.element),r.appendChild(e.element)})),c(n.offset,t.offset),u=!0}():(l.position="absolute",c({top:!0,left:!0},t.page)),!u)if(this.options.bodyElement)this.element.parentNode!==this.options.bodyElement&&this.options.bodyElement.appendChild(this.element);else{for(var d=function(t){var e=t.ownerDocument;return(e.fullscreenElement||e.webkitFullscreenElement||e.mozFullScreenElement||e.msFullscreenElement)===t},p=!0,h=this.element.parentNode;h&&1===h.nodeType&&"BODY"!==h.tagName&&!d(h);){if("static"!==getComputedStyle(h).position){p=!1;break}h=h.parentNode}p||(this.element.parentNode.removeChild(this.element),this.element.ownerDocument.body.appendChild(this.element))}var g={},v=!1;for(var i in l){var w=l[i];this.element.style[i]!==w&&(v=!0,g[i]=w)}v&&k((function(){m(e.element.style,g),e.trigger("repositioned")}))}}}]),i}(C);Z.modules=[],n.position=D;var Y=m(Z,n);O=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&a.return&&a.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=(K=n.Utils).getBounds;var m=K.extend,G=(_=K.updateClasses,k=K.defer,["left","top","right","bottom"]);function J(t,e){return"scrollParent"===e?e=t.scrollParents[0]:"window"===e&&(e=[pageXOffset,pageYOffset,innerWidth+pageXOffset,innerHeight+pageYOffset]),e===document&&(e=e.documentElement),void 0!==e.nodeType&&function(){var t=e,n=d(e),r=n,i=getComputedStyle(e);if(e=[r.left,r.top,n.width+r.left,n.height+r.top],t.ownerDocument!==document){var o=t.ownerDocument.defaultView;e[0]+=o.pageXOffset,e[1]+=o.pageYOffset,e[2]+=o.pageXOffset,e[3]+=o.pageYOffset}G.forEach((function(t,n){"Top"===(t=t[0].toUpperCase()+t.substr(1))||"Left"===t?e[n]+=parseFloat(i["border"+t+"Width"]):e[n]-=parseFloat(i["border"+t+"Width"])}))}(),e}n.modules.push({position:function(t){var e=this,n=t.top,r=t.left,i=t.targetAttachment;if(!this.options.constraints)return!0;var o=this.cache("element-bounds",(function(){return d(e.element)})),s=o.height,a=o.width;if(0===a&&0===s&&void 0!==this.lastSize){var l=this.lastSize;a=l.width,s=l.height}var c=this.cache("target-bounds",(function(){return e.getTargetBounds()})),u=c.height,f=c.width,p=[this.getClass("pinned"),this.getClass("out-of-bounds")];this.options.constraints.forEach((function(t){var e=t.outOfBoundsClass,n=t.pinnedClass;e&&p.push(e),n&&p.push(n)})),p.forEach((function(t){["left","top","right","bottom"].forEach((function(e){p.push(t+"-"+e)}))}));var h=[],g=m({},i),v=m({},this.attachment);return this.options.constraints.forEach((function(t){var o=t.to,l=t.attachment,c=t.pin;void 0===l&&(l="");var d=void 0,p=void 0;if(l.indexOf(" ")>=0){var m=l.split(" "),w=O(m,2);p=w[0],d=w[1]}else d=p=l;var y=J(e,o);"target"!==p&&"both"!==p||(n<y[1]&&"top"===g.top&&(n+=u,g.top="bottom"),n+s>y[3]&&"bottom"===g.top&&(n-=u,g.top="top")),"together"===p&&("top"===g.top&&("bottom"===v.top&&n<y[1]?(n+=u,g.top="bottom",n+=s,v.top="top"):"top"===v.top&&n+s>y[3]&&n-(s-u)>=y[1]&&(n-=s-u,g.top="bottom",v.top="bottom")),"bottom"===g.top&&("top"===v.top&&n+s>y[3]?(n-=u,g.top="top",n-=s,v.top="bottom"):"bottom"===v.top&&n<y[1]&&n+(2*s-u)<=y[3]&&(n+=s-u,g.top="top",v.top="top")),"middle"===g.top&&(n+s>y[3]&&"top"===v.top?(n-=s,v.top="bottom"):n<y[1]&&"bottom"===v.top&&(n+=s,v.top="top"))),"target"!==d&&"both"!==d||(r<y[0]&&"left"===g.left&&(r+=f,g.left="right"),r+a>y[2]&&"right"===g.left&&(r-=f,g.left="left")),"together"===d&&(r<y[0]&&"left"===g.left?"right"===v.left?(r+=f,g.left="right",r+=a,v.left="left"):"left"===v.left&&(r+=f,g.left="right",r-=a,v.left="right"):r+a>y[2]&&"right"===g.left?"left"===v.left?(r-=f,g.left="left",r-=a,v.left="right"):"right"===v.left&&(r-=f,g.left="left",r+=a,v.left="left"):"center"===g.left&&(r+a>y[2]&&"left"===v.left?(r-=a,v.left="right"):r<y[0]&&"right"===v.left&&(r+=a,v.left="left"))),"element"!==p&&"both"!==p||(n<y[1]&&"bottom"===v.top&&(n+=s,v.top="top"),n+s>y[3]&&"top"===v.top&&(n-=s,v.top="bottom")),"element"!==d&&"both"!==d||(r<y[0]&&("right"===v.left?(r+=a,v.left="left"):"center"===v.left&&(r+=a/2,v.left="left")),r+a>y[2]&&("left"===v.left?(r-=a,v.left="right"):"center"===v.left&&(r-=a/2,v.left="right"))),"string"==typeof c?c=c.split(",").map((function(t){return t.trim()})):!0===c&&(c=["top","left","right","bottom"]),c=c||[];var b,_,x=[],k=[];n<y[1]&&(c.indexOf("top")>=0?(n=y[1],x.push("top")):k.push("top")),n+s>y[3]&&(c.indexOf("bottom")>=0?(n=y[3]-s,x.push("bottom")):k.push("bottom")),r<y[0]&&(c.indexOf("left")>=0?(r=y[0],x.push("left")):k.push("left")),r+a>y[2]&&(c.indexOf("right")>=0?(r=y[2]-a,x.push("right")):k.push("right")),x.length&&(b=void 0,b=void 0!==e.options.pinnedClass?e.options.pinnedClass:e.getClass("pinned"),h.push(b),x.forEach((function(t){h.push(b+"-"+t)}))),k.length&&(_=void 0,_=void 0!==e.options.outOfBoundsClass?e.options.outOfBoundsClass:e.getClass("out-of-bounds"),h.push(_),k.forEach((function(t){h.push(_+"-"+t)}))),(x.indexOf("left")>=0||x.indexOf("right")>=0)&&(v.left=g.left=!1),(x.indexOf("top")>=0||x.indexOf("bottom")>=0)&&(v.top=g.top=!1),g.top===i.top&&g.left===i.left&&v.top===e.attachment.top&&v.left===e.attachment.left||(e.updateAttachClasses(v,g),e.trigger("update",{attachment:v,targetAttachment:g}))})),k((function(){!1!==e.options.addTargetClasses&&_(e.target,h,p),_(e.element,h,p)})),{top:n,left:r}}});var K,d=(K=n.Utils).getBounds,_=K.updateClasses;return k=K.defer,n.modules.push({position:function(t){var e=this,n=t.top,r=t.left,i=this.cache("element-bounds",(function(){return d(e.element)})),o=i.height,s=i.width,a=this.getTargetBounds(),l=n+o,c=r+s,u=[];n<=a.bottom&&l>=a.top&&["left","right"].forEach((function(t){var e=a[t];e!==r&&e!==c||u.push(t)})),r<=a.right&&c>=a.left&&["top","bottom"].forEach((function(t){var e=a[t];e!==n&&e!==l||u.push(t)}));var f=[],p=[],h=["left","top","right","bottom"];return f.push(this.getClass("abutted")),h.forEach((function(t){f.push(e.getClass("abutted")+"-"+t)})),u.length&&p.push(this.getClass("abutted")),u.forEach((function(t){p.push(e.getClass("abutted")+"-"+t)})),k((function(){!1!==e.options.addTargetClasses&&_(e.target,p,f),_(e.element,p,f)})),!0}}),O=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&a.return&&a.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),n.modules.push({position:function(t){var e=t.top,n=t.left;if(this.options.shift){var r=this.options.shift;"function"==typeof this.options.shift&&(r=this.options.shift.call(this,{top:e,left:n}));var i=void 0,o=void 0;if("string"==typeof r){(r=r.split(" "))[1]=r[1]||r[0];var s=O(r,2);i=s[0],o=s[1],i=parseFloat(i,10),o=parseFloat(o,10)}else i=r.top,o=r.left;return{top:e+=i,left:n+=o}}}}),Y},void 0===(i="function"==typeof n?n.apply(e,r):n)||(t.exports=i)},4266:function(t){t.exports=function(){"use strict";function t(t,e){return t.filter(e)[0]}function e(n,r){if(void 0===r&&(r=[]),null===n||"object"!=typeof n)return n;var i=t(r,(function(t){return t.original===n}));if(i)return i.copy;var o=Array.isArray(n)?[]:{};return r.push({original:n,copy:o}),Object.keys(n).forEach((function(t){o[t]=e(n[t],r)})),o}function n(t){void 0===t&&(t={});var n=t.collapsed;void 0===n&&(n=!0);var s=t.filter;void 0===s&&(s=function(t,e,n){return!0});var a=t.transformer;void 0===a&&(a=function(t){return t});var l=t.mutationTransformer;void 0===l&&(l=function(t){return t});var c=t.actionFilter;void 0===c&&(c=function(t,e){return!0});var u=t.actionTransformer;void 0===u&&(u=function(t){return t});var d=t.logMutations;void 0===d&&(d=!0);var f=t.logActions;void 0===f&&(f=!0);var p=t.logger;return void 0===p&&(p=console),function(t){var h=e(t.state);void 0!==p&&(d&&t.subscribe((function(t,c){var u=e(c);if(s(t,h,u)){var d=o(),f=l(t),m="mutation "+t.type+d;r(p,m,n),p.log("%c prev state","color: #9E9E9E; font-weight: bold",a(h)),p.log("%c mutation","color: #03A9F4; font-weight: bold",f),p.log("%c next state","color: #4CAF50; font-weight: bold",a(u)),i(p)}h=u})),f&&t.subscribeAction((function(t,e){if(c(t,e)){var s=o(),a=u(t),l="action "+t.type+s;r(p,l,n),p.log("%c action","color: #03A9F4; font-weight: bold",a),i(p)}})))}}function r(t,e,n){var r=n?t.groupCollapsed:t.group;try{r.call(t,e)}catch(n){t.log(e)}}function i(t){try{t.groupEnd()}catch(e){t.log("—— log end ——")}}function o(){var t=new Date;return" @ "+a(t.getHours(),2)+":"+a(t.getMinutes(),2)+":"+a(t.getSeconds(),2)+"."+a(t.getMilliseconds(),3)}function s(t,e){return new Array(e+1).join(t)}function a(t,e){return s("0",e-t.toString().length)+t}return n}()},4654:function(){}},e={};function n(r){var i=e[r];if(void 0!==i)return i.exports;var o=e[r]={id:r,loaded:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,{a:e}),e},n.d=function(t,e){for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.nmd=function(t){return t.paths=[],t.children||(t.children=[]),t},n.nc=void 0,function(){"use strict";var t={};n.r(t),n.d(t,{hasBrowserEnv:function(){return Ql},hasStandardBrowserEnv:function(){return tc},hasStandardBrowserWebWorkerEnv:function(){return nc}});var e=Object.freeze({}),r=Array.isArray;function i(t){return null==t}function o(t){return null!=t}function s(t){return!0===t}function a(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function l(t){return"function"==typeof t}function c(t){return null!==t&&"object"==typeof t}var u=Object.prototype.toString;function d(t){return"[object Object]"===u.call(t)}function f(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function h(t){return o(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function m(t){return null==t?"":Array.isArray(t)||d(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function g(t){var e=parseFloat(t);return isNaN(e)?t:e}function v(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i<r.length;i++)n[r[i]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}var w=v("slot,component",!0),y=v("key,ref,slot,slot-scope,is");function b(t,e){var n=t.length;if(n){if(e===t[n-1])return void(t.length=n-1);var r=t.indexOf(e);if(r>-1)return t.splice(r,1)}}var _=Object.prototype.hasOwnProperty;function x(t,e){return _.call(t,e)}function k(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var S=/-(\w)/g,C=k((function(t){return t.replace(S,(function(t,e){return e?e.toUpperCase():""}))})),O=k((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),T=/\B([A-Z])/g,E=k((function(t){return t.replace(T,"-$1").toLowerCase()}));var j=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function A(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function P(t,e){for(var n in e)t[n]=e[n];return t}function M(t){for(var e={},n=0;n<t.length;n++)t[n]&&P(e,t[n]);return e}function I(t,e,n){}var L=function(t,e,n){return!1},$=function(t){return t};function D(t,e){if(t===e)return!0;var n=c(t),r=c(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var i=Array.isArray(t),o=Array.isArray(e);if(i&&o)return t.length===e.length&&t.every((function(t,n){return D(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(i||o)return!1;var s=Object.keys(t),a=Object.keys(e);return s.length===a.length&&s.every((function(n){return D(t[n],e[n])}))}catch(t){return!1}}function N(t,e){for(var n=0;n<t.length;n++)if(D(t[n],e))return n;return-1}function F(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}function B(t,e){return t===e?0===t&&1/t!=1/e:t==t||e==e}var R="data-server-rendered",z=["component","directive","filter"],U=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],V={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:L,isReservedAttr:L,isUnknownElement:L,getTagNamespace:I,parsePlatformTagName:$,mustUseProp:L,async:!0,_lifecycleHooks:U},H=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function q(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function W(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var Z=new RegExp("[^".concat(H.source,".$_\\d]"));var Y="__proto__"in{},G="undefined"!=typeof window,J=G&&window.navigator.userAgent.toLowerCase(),K=J&&/msie|trident/.test(J),X=J&&J.indexOf("msie 9.0")>0,Q=J&&J.indexOf("edge/")>0;J&&J.indexOf("android");var tt=J&&/iphone|ipad|ipod|ios/.test(J);J&&/chrome\/\d+/.test(J),J&&/phantomjs/.test(J);var et,nt=J&&J.match(/firefox\/(\d+)/),rt={}.watch,it=!1;if(G)try{var ot={};Object.defineProperty(ot,"passive",{get:function(){it=!0}}),window.addEventListener("test-passive",null,ot)}catch(t){}var st=function(){return void 0===et&&(et=!G&&void 0!==n.g&&(n.g.process&&"server"===n.g.process.env.VUE_ENV)),et},at=G&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function lt(t){return"function"==typeof t&&/native code/.test(t.toString())}var ct,ut="undefined"!=typeof Symbol&&lt(Symbol)&&"undefined"!=typeof Reflect&&lt(Reflect.ownKeys);ct="undefined"!=typeof Set&&lt(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=null;function ft(t){void 0===t&&(t=null),t||dt&&dt._scope.off(),dt=t,t&&t._scope.on()}var pt=function(){function t(t,e,n,r,i,o,s,a){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=i,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=s,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=a,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(t.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),t}(),ht=function(t){void 0===t&&(t="");var e=new pt;return e.text=t,e.isComment=!0,e};function mt(t){return new pt(void 0,void 0,void 0,String(t))}function gt(t){var e=new pt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var vt=0,wt=[],yt=function(){for(var t=0;t<wt.length;t++){var e=wt[t];e.subs=e.subs.filter((function(t){return t})),e._pending=!1}wt.length=0},bt=function(){function t(){this._pending=!1,this.id=vt++,this.subs=[]}return t.prototype.addSub=function(t){this.subs.push(t)},t.prototype.removeSub=function(t){this.subs[this.subs.indexOf(t)]=null,this._pending||(this._pending=!0,wt.push(this))},t.prototype.depend=function(e){t.target&&t.target.addDep(this)},t.prototype.notify=function(t){var e=this.subs.filter((function(t){return t}));for(var n=0,r=e.length;n<r;n++){0,e[n].update()}},t}();bt.target=null;var _t=[];function xt(t){_t.push(t),bt.target=t}function kt(){_t.pop(),bt.target=_t[_t.length-1]}var St=Array.prototype,Ct=Object.create(St);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=St[t];W(Ct,t,(function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var i,o=e.apply(this,n),s=this.__ob__;switch(t){case"push":case"unshift":i=n;break;case"splice":i=n.slice(2)}return i&&s.observeArray(i),s.dep.notify(),o}))}));var Ot=Object.getOwnPropertyNames(Ct),Tt={},Et=!0;function jt(t){Et=t}var At={notify:I,depend:I,addSub:I,removeSub:I},Pt=function(){function t(t,e,n){if(void 0===e&&(e=!1),void 0===n&&(n=!1),this.value=t,this.shallow=e,this.mock=n,this.dep=n?At:new bt,this.vmCount=0,W(t,"__ob__",this),r(t)){if(!n)if(Y)t.__proto__=Ct;else for(var i=0,o=Ot.length;i<o;i++){W(t,a=Ot[i],Ct[a])}e||this.observeArray(t)}else{var s=Object.keys(t);for(i=0;i<s.length;i++){var a;It(t,a=s[i],Tt,void 0,e,n)}}}return t.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)Mt(t[e],!1,this.mock)},t}();function Mt(t,e,n){return t&&x(t,"__ob__")&&t.__ob__ instanceof Pt?t.__ob__:!Et||!n&&st()||!r(t)&&!d(t)||!Object.isExtensible(t)||t.__v_skip||Rt(t)||t instanceof pt?void 0:new Pt(t,e,n)}function It(t,e,n,i,o,s){var a=new bt,l=Object.getOwnPropertyDescriptor(t,e);if(!l||!1!==l.configurable){var c=l&&l.get,u=l&&l.set;c&&!u||n!==Tt&&2!==arguments.length||(n=t[e]);var d=!o&&Mt(n,!1,s);return Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=c?c.call(t):n;return bt.target&&(a.depend(),d&&(d.dep.depend(),r(e)&&Dt(e))),Rt(e)&&!o?e.value:e},set:function(e){var r=c?c.call(t):n;if(B(r,e)){if(u)u.call(t,e);else{if(c)return;if(!o&&Rt(r)&&!Rt(e))return void(r.value=e);n=e}d=!o&&Mt(e,!1,s),a.notify()}}}),a}}function Lt(t,e,n){if(!Bt(t)){var i=t.__ob__;return r(t)&&p(e)?(t.length=Math.max(t.length,e),t.splice(e,1,n),i&&!i.shallow&&i.mock&&Mt(n,!1,!0),n):e in t&&!(e in Object.prototype)?(t[e]=n,n):t._isVue||i&&i.vmCount?n:i?(It(i.value,e,n,void 0,i.shallow,i.mock),i.dep.notify(),n):(t[e]=n,n)}}function $t(t,e){if(r(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||Bt(t)||x(t,e)&&(delete t[e],n&&n.dep.notify())}}function Dt(t){for(var e=void 0,n=0,i=t.length;n<i;n++)(e=t[n])&&e.__ob__&&e.__ob__.dep.depend(),r(e)&&Dt(e)}function Nt(t){return Ft(t,!0),W(t,"__v_isShallow",!0),t}function Ft(t,e){if(!Bt(t)){Mt(t,e,st());0}}function Bt(t){return!(!t||!t.__v_isReadonly)}function Rt(t){return!(!t||!0!==t.__v_isRef)}function zt(t,e,n){Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:function(){var t=e[n];if(Rt(t))return t.value;var r=t&&t.__ob__;return r&&r.dep.depend(),t},set:function(t){var r=e[n];Rt(r)&&!Rt(t)?r.value=t:e[n]=t}})}var Ut=k((function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}}));function Vt(t,e){function n(){var t=n.fns;if(!r(t))return nn(t,null,arguments,e,"v-on handler");for(var i=t.slice(),o=0;o<i.length;o++)nn(i[o],null,arguments,e,"v-on handler")}return n.fns=t,n}function Ht(t,e,n,r,o,a){var l,c,u,d;for(l in t)c=t[l],u=e[l],d=Ut(l),i(c)||(i(u)?(i(c.fns)&&(c=t[l]=Vt(c,a)),s(d.once)&&(c=t[l]=o(d.name,c,d.capture)),n(d.name,c,d.capture,d.passive,d.params)):c!==u&&(u.fns=c,t[l]=u));for(l in e)i(t[l])&&r((d=Ut(l)).name,e[l],d.capture)}function qt(t,e,n){var r;t instanceof pt&&(t=t.data.hook||(t.data.hook={}));var a=t[e];function l(){n.apply(this,arguments),b(r.fns,l)}i(a)?r=Vt([l]):o(a.fns)&&s(a.merged)?(r=a).fns.push(l):r=Vt([a,l]),r.merged=!0,t[e]=r}function Wt(t,e,n,r,i){if(o(e)){if(x(e,n))return t[n]=e[n],i||delete e[n],!0;if(x(e,r))return t[n]=e[r],i||delete e[r],!0}return!1}function Zt(t){return a(t)?[mt(t)]:r(t)?Gt(t):void 0}function Yt(t){return o(t)&&o(t.text)&&!1===t.isComment}function Gt(t,e){var n,l,c,u,d=[];for(n=0;n<t.length;n++)i(l=t[n])||"boolean"==typeof l||(u=d[c=d.length-1],r(l)?l.length>0&&(Yt((l=Gt(l,"".concat(e||"","_").concat(n)))[0])&&Yt(u)&&(d[c]=mt(u.text+l[0].text),l.shift()),d.push.apply(d,l)):a(l)?Yt(u)?d[c]=mt(u.text+l):""!==l&&d.push(mt(l)):Yt(l)&&Yt(u)?d[c]=mt(u.text+l.text):(s(t._isVList)&&o(l.tag)&&i(l.key)&&o(e)&&(l.key="__vlist".concat(e,"_").concat(n,"__")),d.push(l)));return d}var Jt=1,Kt=2;function Xt(t,e,n,i,u,d){return(r(n)||a(n))&&(u=i,i=n,n=void 0),s(d)&&(u=Kt),function(t,e,n,i,s){if(o(n)&&o(n.__ob__))return ht();o(n)&&o(n.is)&&(e=n.is);if(!e)return ht();0;r(i)&&l(i[0])&&((n=n||{}).scopedSlots={default:i[0]},i.length=0);s===Kt?i=Zt(i):s===Jt&&(i=function(t){for(var e=0;e<t.length;e++)if(r(t[e]))return Array.prototype.concat.apply([],t);return t}(i));var a,u;if("string"==typeof e){var d=void 0;u=t.$vnode&&t.$vnode.ns||V.getTagNamespace(e),a=V.isReservedTag(e)?new pt(V.parsePlatformTagName(e),n,i,void 0,void 0,t):n&&n.pre||!o(d=Gn(t.$options,"components",e))?new pt(e,n,i,void 0,void 0,t):Bn(d,n,t,i,e)}else a=Bn(e,n,t,i);return r(a)?a:o(a)?(o(u)&&Qt(a,u),o(n)&&function(t){c(t.style)&&wn(t.style);c(t.class)&&wn(t.class)}(n),a):ht()}(t,e,n,i,u)}function Qt(t,e,n){if(t.ns=e,"foreignObject"===t.tag&&(e=void 0,n=!0),o(t.children))for(var r=0,a=t.children.length;r<a;r++){var l=t.children[r];o(l.tag)&&(i(l.ns)||s(n)&&"svg"!==l.tag)&&Qt(l,e,n)}}function te(t,e){var n,i,s,a,l=null;if(r(t)||"string"==typeof t)for(l=new Array(t.length),n=0,i=t.length;n<i;n++)l[n]=e(t[n],n);else if("number"==typeof t)for(l=new Array(t),n=0;n<t;n++)l[n]=e(n+1,n);else if(c(t))if(ut&&t[Symbol.iterator]){l=[];for(var u=t[Symbol.iterator](),d=u.next();!d.done;)l.push(e(d.value,l.length)),d=u.next()}else for(s=Object.keys(t),l=new Array(s.length),n=0,i=s.length;n<i;n++)a=s[n],l[n]=e(t[a],a,n);return o(l)||(l=[]),l._isVList=!0,l}function ee(t,e,n,r){var i,o=this.$scopedSlots[t];o?(n=n||{},r&&(n=P(P({},r),n)),i=o(n)||(l(e)?e():e)):i=this.$slots[t]||(l(e)?e():e);var s=n&&n.slot;return s?this.$createElement("template",{slot:s},i):i}function ne(t){return Gn(this.$options,"filters",t,!0)||$}function re(t,e){return r(t)?-1===t.indexOf(e):t!==e}function ie(t,e,n,r,i){var o=V.keyCodes[e]||n;return i&&r&&!V.keyCodes[e]?re(i,r):o?re(o,t):r?E(r)!==e:void 0===t}function oe(t,e,n,i,o){if(n)if(c(n)){r(n)&&(n=M(n));var s=void 0,a=function(r){if("class"===r||"style"===r||y(r))s=t;else{var a=t.attrs&&t.attrs.type;s=i||V.mustUseProp(e,a,r)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var l=C(r),c=E(r);l in s||c in s||(s[r]=n[r],o&&((t.on||(t.on={}))["update:".concat(r)]=function(t){n[r]=t}))};for(var l in n)a(l)}else;return t}function se(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e||le(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,this._c,this),"__static__".concat(t),!1),r}function ae(t,e,n){return le(t,"__once__".concat(e).concat(n?"_".concat(n):""),!0),t}function le(t,e,n){if(r(t))for(var i=0;i<t.length;i++)t[i]&&"string"!=typeof t[i]&&ce(t[i],"".concat(e,"_").concat(i),n);else ce(t,e,n)}function ce(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function ue(t,e){if(e)if(d(e)){var n=t.on=t.on?P({},t.on):{};for(var r in e){var i=n[r],o=e[r];n[r]=i?[].concat(i,o):o}}else;return t}function de(t,e,n,i){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var s=t[o];r(s)?de(s,e,n):s&&(s.proxy&&(s.fn.proxy=!0),e[s.key]=s.fn)}return i&&(e.$key=i),e}function fe(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"==typeof r&&r&&(t[e[n]]=e[n+1])}return t}function pe(t,e){return"string"==typeof t?e+t:t}function he(t){t._o=ae,t._n=g,t._s=m,t._l=te,t._t=ee,t._q=D,t._i=N,t._m=se,t._f=ne,t._k=ie,t._b=oe,t._v=mt,t._e=ht,t._u=de,t._g=ue,t._d=fe,t._p=pe}function me(t,e){if(!t||!t.length)return{};for(var n={},r=0,i=t.length;r<i;r++){var o=t[r],s=o.data;if(s&&s.attrs&&s.attrs.slot&&delete s.attrs.slot,o.context!==e&&o.fnContext!==e||!s||null==s.slot)(n.default||(n.default=[])).push(o);else{var a=s.slot,l=n[a]||(n[a]=[]);"template"===o.tag?l.push.apply(l,o.children||[]):l.push(o)}}for(var c in n)n[c].every(ge)&&delete n[c];return n}function ge(t){return t.isComment&&!t.asyncFactory||" "===t.text}function ve(t){return t.isComment&&t.asyncFactory}function we(t,n,r,i){var o,s=Object.keys(r).length>0,a=n?!!n.$stable:!s,l=n&&n.$key;if(n){if(n._normalized)return n._normalized;if(a&&i&&i!==e&&l===i.$key&&!s&&!i.$hasNormal)return i;for(var c in o={},n)n[c]&&"$"!==c[0]&&(o[c]=ye(t,r,c,n[c]))}else o={};for(var u in r)u in o||(o[u]=be(r,u));return n&&Object.isExtensible(n)&&(n._normalized=o),W(o,"$stable",a),W(o,"$key",l),W(o,"$hasNormal",s),o}function ye(t,e,n,i){var o=function(){var e=dt;ft(t);var n=arguments.length?i.apply(null,arguments):i({}),o=(n=n&&"object"==typeof n&&!r(n)?[n]:Zt(n))&&n[0];return ft(e),n&&(!o||1===n.length&&o.isComment&&!ve(o))?void 0:n};return i.proxy&&Object.defineProperty(e,n,{get:o,enumerable:!0,configurable:!0}),o}function be(t,e){return function(){return t[e]}}function _e(t){return{get attrs(){if(!t._attrsProxy){var n=t._attrsProxy={};W(n,"_v_attr_proxy",!0),xe(n,t.$attrs,e,t,"$attrs")}return t._attrsProxy},get listeners(){t._listenersProxy||xe(t._listenersProxy={},t.$listeners,e,t,"$listeners");return t._listenersProxy},get slots(){return function(t){t._slotsProxy||Se(t._slotsProxy={},t.$scopedSlots);return t._slotsProxy}(t)},emit:j(t.$emit,t),expose:function(e){e&&Object.keys(e).forEach((function(n){return zt(t,e,n)}))}}}function xe(t,e,n,r,i){var o=!1;for(var s in e)s in t?e[s]!==n[s]&&(o=!0):(o=!0,ke(t,s,r,i));for(var s in t)s in e||(o=!0,delete t[s]);return o}function ke(t,e,n,r){Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){return n[r][e]}})}function Se(t,e){for(var n in e)t[n]=e[n];for(var n in t)n in e||delete t[n]}var Ce,Oe=null;function Te(t,e){return(t.__esModule||ut&&"Module"===t[Symbol.toStringTag])&&(t=t.default),c(t)?e.extend(t):t}function Ee(t){if(r(t))for(var e=0;e<t.length;e++){var n=t[e];if(o(n)&&(o(n.componentOptions)||ve(n)))return n}}function je(t,e){Ce.$on(t,e)}function Ae(t,e){Ce.$off(t,e)}function Pe(t,e){var n=Ce;return function r(){null!==e.apply(null,arguments)&&n.$off(t,r)}}function Me(t,e,n){Ce=t,Ht(e,n||{},je,Ae,Pe,t),Ce=void 0}var Ie=null;function Le(t){var e=Ie;return Ie=t,function(){Ie=e}}function $e(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function De(t,e){if(e){if(t._directInactive=!1,$e(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)De(t.$children[n]);Fe(t,"activated")}}function Ne(t,e){if(!(e&&(t._directInactive=!0,$e(t))||t._inactive)){t._inactive=!0;for(var n=0;n<t.$children.length;n++)Ne(t.$children[n]);Fe(t,"deactivated")}}function Fe(t,e,n,r){void 0===r&&(r=!0),xt();var i=dt;r&&ft(t);var o=t.$options[e],s="".concat(e," hook");if(o)for(var a=0,l=o.length;a<l;a++)nn(o[a],t,n||null,t,s);t._hasHookEvent&&t.$emit("hook:"+e),r&&ft(i),kt()}var Be=[],Re=[],ze={},Ue=!1,Ve=!1,He=0;var qe=0,We=Date.now;if(G&&!K){var Ze=window.performance;Ze&&"function"==typeof Ze.now&&We()>document.createEvent("Event").timeStamp&&(We=function(){return Ze.now()})}var Ye=function(t,e){if(t.post){if(!e.post)return 1}else if(e.post)return-1;return t.id-e.id};function Ge(){var t,e;for(qe=We(),Ve=!0,Be.sort(Ye),He=0;He<Be.length;He++)(t=Be[He]).before&&t.before(),e=t.id,ze[e]=null,t.run();var n=Re.slice(),r=Be.slice();He=Be.length=Re.length=0,ze={},Ue=Ve=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,De(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r&&r._watcher===n&&r._isMounted&&!r._isDestroyed&&Fe(r,"updated")}}(r),yt(),at&&V.devtools&&at.emit("flush")}function Je(t){var e=t.id;if(null==ze[e]&&(t!==bt.target||!t.noRecurse)){if(ze[e]=!0,Ve){for(var n=Be.length-1;n>He&&Be[n].id>t.id;)n--;Be.splice(n+1,0,t)}else Be.push(t);Ue||(Ue=!0,mn(Ge))}}var Ke="watcher";"".concat(Ke," callback"),"".concat(Ke," getter"),"".concat(Ke," cleanup");var Xe;var Qe=function(){function t(t){void 0===t&&(t=!1),this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=Xe,!t&&Xe&&(this.index=(Xe.scopes||(Xe.scopes=[])).push(this)-1)}return t.prototype.run=function(t){if(this.active){var e=Xe;try{return Xe=this,t()}finally{Xe=e}}else 0},t.prototype.on=function(){Xe=this},t.prototype.off=function(){Xe=this.parent},t.prototype.stop=function(t){if(this.active){var e=void 0,n=void 0;for(e=0,n=this.effects.length;e<n;e++)this.effects[e].teardown();for(e=0,n=this.cleanups.length;e<n;e++)this.cleanups[e]();if(this.scopes)for(e=0,n=this.scopes.length;e<n;e++)this.scopes[e].stop(!0);if(!this.detached&&this.parent&&!t){var r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this.active=!1}},t}();function tn(t){var e=t._provided,n=t.$parent&&t.$parent._provided;return n===e?t._provided=Object.create(n):e}function en(t,e,n){xt();try{if(e)for(var r=e;r=r.$parent;){var i=r.$options.errorCaptured;if(i)for(var o=0;o<i.length;o++)try{if(!1===i[o].call(r,t,e,n))return}catch(t){rn(t,r,"errorCaptured hook")}}rn(t,e,n)}finally{kt()}}function nn(t,e,n,r,i){var o;try{(o=n?t.apply(e,n):t.call(e))&&!o._isVue&&h(o)&&!o._handled&&(o.catch((function(t){return en(t,r,i+" (Promise/async)")})),o._handled=!0)}catch(t){en(t,r,i)}return o}function rn(t,e,n){if(V.errorHandler)try{return V.errorHandler.call(null,t,e,n)}catch(e){e!==t&&on(e,null,"config.errorHandler")}on(t,e,n)}function on(t,e,n){if(!G||"undefined"==typeof console)throw t;console.error(t)}var sn,an=!1,ln=[],cn=!1;function un(){cn=!1;var t=ln.slice(0);ln.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&lt(Promise)){var dn=Promise.resolve();sn=function(){dn.then(un),tt&&setTimeout(I)},an=!0}else if(K||"undefined"==typeof MutationObserver||!lt(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())sn="undefined"!=typeof setImmediate&&lt(setImmediate)?function(){setImmediate(un)}:function(){setTimeout(un,0)};else{var fn=1,pn=new MutationObserver(un),hn=document.createTextNode(String(fn));pn.observe(hn,{characterData:!0}),sn=function(){fn=(fn+1)%2,hn.data=String(fn)},an=!0}function mn(t,e){var n;if(ln.push((function(){if(t)try{t.call(e)}catch(t){en(t,e,"nextTick")}else n&&n(e)})),cn||(cn=!0,sn()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){n=t}))}function gn(t){return function(e,n){if(void 0===n&&(n=dt),n)return function(t,e,n){var r=t.$options;r[e]=qn(r[e],n)}(n,t,e)}}gn("beforeMount"),gn("mounted"),gn("beforeUpdate"),gn("updated"),gn("beforeDestroy"),gn("destroyed"),gn("activated"),gn("deactivated"),gn("serverPrefetch"),gn("renderTracked"),gn("renderTriggered"),gn("errorCaptured");var vn=new ct;function wn(t){return yn(t,vn),vn.clear(),t}function yn(t,e){var n,i,o=r(t);if(!(!o&&!c(t)||t.__v_skip||Object.isFrozen(t)||t instanceof pt)){if(t.__ob__){var s=t.__ob__.dep.id;if(e.has(s))return;e.add(s)}if(o)for(n=t.length;n--;)yn(t[n],e);else if(Rt(t))yn(t.value,e);else for(n=(i=Object.keys(t)).length;n--;)yn(t[i[n]],e)}}var bn=0,_n=function(){function t(t,e,n,r,i){var o,s;o=this,void 0===(s=Xe&&!Xe._vm?Xe:t?t._scope:void 0)&&(s=Xe),s&&s.active&&s.effects.push(o),(this.vm=t)&&i&&(t._watcher=this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++bn,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ct,this.newDepIds=new ct,this.expression="",l(e)?this.getter=e:(this.getter=function(t){if(!Z.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=I)),this.value=this.lazy?void 0:this.get()}return t.prototype.get=function(){var t;xt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;en(t,e,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&wn(t),kt(),this.cleanupDeps()}return t},t.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},t.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},t.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():Je(this)},t.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'.concat(this.expression,'"');nn(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},t.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},t.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},t.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&b(this.vm._scope.effects,this),this.active){for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},t}(),xn={enumerable:!0,configurable:!0,get:I,set:I};function kn(t,e,n){xn.get=function(){return this[e][n]},xn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,xn)}function Sn(t){var e=t.$options;if(e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props=Nt({}),i=t.$options._propKeys=[],o=!t.$parent;o||jt(!1);var s=function(o){i.push(o);var s=Jn(o,e,n,t);It(r,o,s),o in t||kn(t,"_props",o)};for(var a in e)s(a);jt(!0)}(t,e.props),function(t){var e=t.$options,n=e.setup;if(n){var r=t._setupContext=_e(t);ft(t),xt();var i=nn(n,null,[t._props||Nt({}),r],t,"setup");if(kt(),ft(),l(i))e.render=i;else if(c(i))if(t._setupState=i,i.__sfc){var o=t._setupProxy={};for(var s in i)"__sfc"!==s&&zt(o,i,s)}else for(var s in i)q(s)||zt(t,i,s)}}(t),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?I:j(e[n],t)}(t,e.methods),e.data)!function(t){var e=t.$options.data;e=t._data=l(e)?function(t,e){xt();try{return t.call(e,e)}catch(t){return en(t,e,"data()"),{}}finally{kt()}}(e,t):e||{},d(e)||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);for(;i--;){var o=n[i];0,r&&x(r,o)||q(o)||kn(t,"_data",o)}var s=Mt(e);s&&s.vmCount++}(t);else{var n=Mt(t._data={});n&&n.vmCount++}e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=st();for(var i in e){var o=e[i],s=l(o)?o:o.get;0,r||(n[i]=new _n(t,s||I,I,Cn)),i in t||On(t,i,o)}}(t,e.computed),e.watch&&e.watch!==rt&&function(t,e){for(var n in e){var i=e[n];if(r(i))for(var o=0;o<i.length;o++)jn(t,n,i[o]);else jn(t,n,i)}}(t,e.watch)}var Cn={lazy:!0};function On(t,e,n){var r=!st();l(n)?(xn.get=r?Tn(e):En(n),xn.set=I):(xn.get=n.get?r&&!1!==n.cache?Tn(e):En(n.get):I,xn.set=n.set||I),Object.defineProperty(t,e,xn)}function Tn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),bt.target&&e.depend(),e.value}}function En(t){return function(){return t.call(this,this)}}function jn(t,e,n,r){return d(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}function An(t,e){if(t){for(var n=Object.create(null),r=ut?Reflect.ownKeys(t):Object.keys(t),i=0;i<r.length;i++){var o=r[i];if("__ob__"!==o){var s=t[o].from;if(s in e._provided)n[o]=e._provided[s];else if("default"in t[o]){var a=t[o].default;n[o]=l(a)?a.call(e):a}else 0}}return n}}var Pn=0;function Mn(t){var e=t.options;if(t.super){var n=Mn(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.sealedOptions;for(var i in n)n[i]!==r[i]&&(e||(e={}),e[i]=n[i]);return e}(t);r&&P(t.extendOptions,r),(e=t.options=Yn(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function In(t,n,i,o,a){var l,c=this,u=a.options;x(o,"_uid")?(l=Object.create(o))._original=o:(l=o,o=o._original);var d=s(u._compiled),f=!d;this.data=t,this.props=n,this.children=i,this.parent=o,this.listeners=t.on||e,this.injections=An(u.inject,o),this.slots=function(){return c.$slots||we(o,t.scopedSlots,c.$slots=me(i,o)),c.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return we(o,t.scopedSlots,this.slots())}}),d&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=we(o,t.scopedSlots,this.$slots)),u._scopeId?this._c=function(t,e,n,i){var s=Xt(l,t,e,n,i,f);return s&&!r(s)&&(s.fnScopeId=u._scopeId,s.fnContext=o),s}:this._c=function(t,e,n,r){return Xt(l,t,e,n,r,f)}}function Ln(t,e,n,r,i){var o=gt(t);return o.fnContext=n,o.fnOptions=r,e.slot&&((o.data||(o.data={})).slot=e.slot),o}function $n(t,e){for(var n in e)t[C(n)]=e[n]}function Dn(t){return t.name||t.__name||t._componentTag}he(In.prototype);var Nn={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;Nn.prepatch(n,n)}else{var r=t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;o(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,Ie);r.$mount(e?t.elm:void 0,e)}},prepatch:function(t,n){var r=n.componentOptions;!function(t,n,r,i,o){var s=i.data.scopedSlots,a=t.$scopedSlots,l=!!(s&&!s.$stable||a!==e&&!a.$stable||s&&t.$scopedSlots.$key!==s.$key||!s&&t.$scopedSlots.$key),c=!!(o||t.$options._renderChildren||l),u=t.$vnode;t.$options._parentVnode=i,t.$vnode=i,t._vnode&&(t._vnode.parent=i),t.$options._renderChildren=o;var d=i.data.attrs||e;t._attrsProxy&&xe(t._attrsProxy,d,u.data&&u.data.attrs||e,t,"$attrs")&&(c=!0),t.$attrs=d,r=r||e;var f=t.$options._parentListeners;if(t._listenersProxy&&xe(t._listenersProxy,r,f||e,t,"$listeners"),t.$listeners=t.$options._parentListeners=r,Me(t,r,f),n&&t.$options.props){jt(!1);for(var p=t._props,h=t.$options._propKeys||[],m=0;m<h.length;m++){var g=h[m],v=t.$options.props;p[g]=Jn(g,v,n,t)}jt(!0),t.$options.propsData=n}c&&(t.$slots=me(o,i.context),t.$forceUpdate())}(n.componentInstance=t.componentInstance,r.propsData,r.listeners,n,r.children)},insert:function(t){var e,n=t.context,r=t.componentInstance;r._isMounted||(r._isMounted=!0,Fe(r,"mounted")),t.data.keepAlive&&(n._isMounted?((e=r)._inactive=!1,Re.push(e)):De(r,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?Ne(e,!0):e.$destroy())}},Fn=Object.keys(Nn);function Bn(t,n,a,l,u){if(!i(t)){var d=a.$options._base;if(c(t)&&(t=d.extend(t)),"function"==typeof t){var f;if(i(t.cid)&&(t=function(t,e){if(s(t.error)&&o(t.errorComp))return t.errorComp;if(o(t.resolved))return t.resolved;var n=Oe;if(n&&o(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n),s(t.loading)&&o(t.loadingComp))return t.loadingComp;if(n&&!o(t.owners)){var r=t.owners=[n],a=!0,l=null,u=null;n.$on("hook:destroyed",(function(){return b(r,n)}));var d=function(t){for(var e=0,n=r.length;e<n;e++)r[e].$forceUpdate();t&&(r.length=0,null!==l&&(clearTimeout(l),l=null),null!==u&&(clearTimeout(u),u=null))},f=F((function(n){t.resolved=Te(n,e),a?r.length=0:d(!0)})),p=F((function(e){o(t.errorComp)&&(t.error=!0,d(!0))})),m=t(f,p);return c(m)&&(h(m)?i(t.resolved)&&m.then(f,p):h(m.component)&&(m.component.then(f,p),o(m.error)&&(t.errorComp=Te(m.error,e)),o(m.loading)&&(t.loadingComp=Te(m.loading,e),0===m.delay?t.loading=!0:l=setTimeout((function(){l=null,i(t.resolved)&&i(t.error)&&(t.loading=!0,d(!1))}),m.delay||200)),o(m.timeout)&&(u=setTimeout((function(){u=null,i(t.resolved)&&p(null)}),m.timeout)))),a=!1,t.loading?t.loadingComp:t.resolved}}(f=t,d),void 0===t))return function(t,e,n,r,i){var o=ht();return o.asyncFactory=t,o.asyncMeta={data:e,context:n,children:r,tag:i},o}(f,n,a,l,u);n=n||{},Mn(t),o(n.model)&&function(t,e){var n=t.model&&t.model.prop||"value",i=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var s=e.on||(e.on={}),a=s[i],l=e.model.callback;o(a)?(r(a)?-1===a.indexOf(l):a!==l)&&(s[i]=[l].concat(a)):s[i]=l}(t.options,n);var p=function(t,e,n){var r=e.options.props;if(!i(r)){var s={},a=t.attrs,l=t.props;if(o(a)||o(l))for(var c in r){var u=E(c);Wt(s,l,c,u,!0)||Wt(s,a,c,u,!1)}return s}}(n,t);if(s(t.options.functional))return function(t,n,i,s,a){var l=t.options,c={},u=l.props;if(o(u))for(var d in u)c[d]=Jn(d,u,n||e);else o(i.attrs)&&$n(c,i.attrs),o(i.props)&&$n(c,i.props);var f=new In(i,c,a,s,t),p=l.render.call(null,f._c,f);if(p instanceof pt)return Ln(p,i,f.parent,l);if(r(p)){for(var h=Zt(p)||[],m=new Array(h.length),g=0;g<h.length;g++)m[g]=Ln(h[g],i,f.parent,l);return m}}(t,p,n,a,l);var m=n.on;if(n.on=n.nativeOn,s(t.options.abstract)){var g=n.slot;n={},g&&(n.slot=g)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<Fn.length;n++){var r=Fn[n],i=e[r],o=Nn[r];i===o||i&&i._merged||(e[r]=i?Rn(o,i):o)}}(n);var v=Dn(t.options)||u;return new pt("vue-component-".concat(t.cid).concat(v?"-".concat(v):""),n,void 0,void 0,void 0,a,{Ctor:t,propsData:p,listeners:m,tag:u,children:l},f)}}}function Rn(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}var zn=I,Un=V.optionMergeStrategies;function Vn(t,e,n){if(void 0===n&&(n=!0),!e)return t;for(var r,i,o,s=ut?Reflect.ownKeys(e):Object.keys(e),a=0;a<s.length;a++)"__ob__"!==(r=s[a])&&(i=t[r],o=e[r],n&&x(t,r)?i!==o&&d(i)&&d(o)&&Vn(i,o):Lt(t,r,o));return t}function Hn(t,e,n){return n?function(){var r=l(e)?e.call(n,n):e,i=l(t)?t.call(n,n):t;return r?Vn(r,i):i}:e?t?function(){return Vn(l(e)?e.call(this,this):e,l(t)?t.call(this,this):t)}:e:t}function qn(t,e){var n=e?t?t.concat(e):r(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function Wn(t,e,n,r){var i=Object.create(t||null);return e?P(i,e):i}Un.data=function(t,e,n){return n?Hn(t,e,n):e&&"function"!=typeof e?t:Hn(t,e)},U.forEach((function(t){Un[t]=qn})),z.forEach((function(t){Un[t+"s"]=Wn})),Un.watch=function(t,e,n,i){if(t===rt&&(t=void 0),e===rt&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var s in P(o,t),e){var a=o[s],l=e[s];a&&!r(a)&&(a=[a]),o[s]=a?a.concat(l):r(l)?l:[l]}return o},Un.props=Un.methods=Un.inject=Un.computed=function(t,e,n,r){if(!t)return e;var i=Object.create(null);return P(i,t),e&&P(i,e),i},Un.provide=function(t,e){return t?function(){var n=Object.create(null);return Vn(n,l(t)?t.call(this):t),e&&Vn(n,l(e)?e.call(this):e,!1),n}:e};var Zn=function(t,e){return void 0===e?t:e};function Yn(t,e,n){if(l(e)&&(e=e.options),function(t,e){var n=t.props;if(n){var i,o,s={};if(r(n))for(i=n.length;i--;)"string"==typeof(o=n[i])&&(s[C(o)]={type:null});else if(d(n))for(var a in n)o=n[a],s[C(a)]=d(o)?o:{type:o};t.props=s}}(e),function(t,e){var n=t.inject;if(n){var i=t.inject={};if(r(n))for(var o=0;o<n.length;o++)i[n[o]]={from:n[o]};else if(d(n))for(var s in n){var a=n[s];i[s]=d(a)?P({from:s},a):{from:a}}}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];l(r)&&(e[n]={bind:r,update:r})}}(e),!e._base&&(e.extends&&(t=Yn(t,e.extends,n)),e.mixins))for(var i=0,o=e.mixins.length;i<o;i++)t=Yn(t,e.mixins[i],n);var s,a={};for(s in t)c(s);for(s in e)x(t,s)||c(s);function c(r){var i=Un[r]||Zn;a[r]=i(t[r],e[r],n,r)}return a}function Gn(t,e,n,r){if("string"==typeof n){var i=t[e];if(x(i,n))return i[n];var o=C(n);if(x(i,o))return i[o];var s=O(o);return x(i,s)?i[s]:i[n]||i[o]||i[s]}}function Jn(t,e,n,r){var i=e[t],o=!x(n,t),s=n[t],a=tr(Boolean,i.type);if(a>-1)if(o&&!x(i,"default"))s=!1;else if(""===s||s===E(t)){var c=tr(String,i.type);(c<0||a<c)&&(s=!0)}if(void 0===s){s=function(t,e,n){if(!x(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return l(r)&&"Function"!==Xn(e.type)?r.call(t):r}(r,i,t);var u=Et;jt(!0),Mt(s),jt(u)}return s}var Kn=/^\s*function (\w+)/;function Xn(t){var e=t&&t.toString().match(Kn);return e?e[1]:""}function Qn(t,e){return Xn(t)===Xn(e)}function tr(t,e){if(!r(e))return Qn(e,t)?0:-1;for(var n=0,i=e.length;n<i;n++)if(Qn(e[n],t))return n;return-1}function er(t){this._init(t)}function nr(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=Dn(t)||Dn(n.options);var s=function(t){this._init(t)};return(s.prototype=Object.create(n.prototype)).constructor=s,s.cid=e++,s.options=Yn(n.options,t),s.super=n,s.options.props&&function(t){var e=t.options.props;for(var n in e)kn(t.prototype,"_props",n)}(s),s.options.computed&&function(t){var e=t.options.computed;for(var n in e)On(t.prototype,n,e[n])}(s),s.extend=n.extend,s.mixin=n.mixin,s.use=n.use,z.forEach((function(t){s[t]=n[t]})),o&&(s.options.components[o]=s),s.superOptions=n.options,s.extendOptions=t,s.sealedOptions=P({},s.options),i[r]=s,s}}function rr(t){return t&&(Dn(t.Ctor.options)||t.tag)}function ir(t,e){return r(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function or(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var s=n[o];if(s){var a=s.name;a&&!e(a)&&sr(n,o,r,i)}}}function sr(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,b(n,e)}!function(t){t.prototype._init=function(t){var n=this;n._uid=Pn++,n._isVue=!0,n.__v_skip=!0,n._scope=new Qe(!0),n._scope._vm=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(n,t):n.$options=Yn(Mn(n.constructor),t||{},n),n._renderProxy=n,n._self=n,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._provided=n?n._provided:Object.create(null),t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(n),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Me(t,e)}(n),function(t){t._vnode=null,t._staticTrees=null;var n=t.$options,r=t.$vnode=n._parentVnode,i=r&&r.context;t.$slots=me(n._renderChildren,i),t.$scopedSlots=r?we(t.$parent,r.data.scopedSlots,t.$slots):e,t._c=function(e,n,r,i){return Xt(t,e,n,r,i,!1)},t.$createElement=function(e,n,r,i){return Xt(t,e,n,r,i,!0)};var o=r&&r.data;It(t,"$attrs",o&&o.attrs||e,null,!0),It(t,"$listeners",n._parentListeners||e,null,!0)}(n),Fe(n,"beforeCreate",void 0,!1),function(t){var e=An(t.$options.inject,t);e&&(jt(!1),Object.keys(e).forEach((function(n){It(t,n,e[n])})),jt(!0))}(n),Sn(n),function(t){var e=t.$options.provide;if(e){var n=l(e)?e.call(t):e;if(!c(n))return;for(var r=tn(t),i=ut?Reflect.ownKeys(n):Object.keys(n),o=0;o<i.length;o++){var s=i[o];Object.defineProperty(r,s,Object.getOwnPropertyDescriptor(n,s))}}}(n),Fe(n,"created"),n.$options.el&&n.$mount(n.$options.el)}}(er),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Lt,t.prototype.$delete=$t,t.prototype.$watch=function(t,e,n){var r=this;if(d(e))return jn(r,t,e,n);(n=n||{}).user=!0;var i=new _n(r,t,e,n);if(n.immediate){var o='callback for immediate watcher "'.concat(i.expression,'"');xt(),nn(e,r,[i.value],r,o),kt()}return function(){i.teardown()}}}(er),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var i=this;if(r(t))for(var o=0,s=t.length;o<s;o++)i.$on(t[o],n);else(i._events[t]||(i._events[t]=[])).push(n),e.test(t)&&(i._hasHookEvent=!0);return i},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(r(t)){for(var i=0,o=t.length;i<o;i++)n.$off(t[i],e);return n}var s,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;for(var l=a.length;l--;)if((s=a[l])===e||s.fn===e){a.splice(l,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?A(n):n;for(var r=A(arguments,1),i='event handler for "'.concat(t,'"'),o=0,s=n.length;o<s;o++)nn(n[o],e,r,e,i)}return e}}(er),function(t){t.prototype._update=function(t,e){var n=this,r=n.$el,i=n._vnode,o=Le(n);n._vnode=t,n.$el=i?n.__patch__(i,t):n.__patch__(n.$el,t,e,!1),o(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n);for(var s=n;s&&s.$vnode&&s.$parent&&s.$vnode===s.$parent._vnode;)s.$parent.$el=s.$el,s=s.$parent},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Fe(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||b(e.$children,t),t._scope.stop(),t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Fe(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(er),function(t){he(t.prototype),t.prototype.$nextTick=function(t){return mn(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,i=n.render,o=n._parentVnode;o&&e._isMounted&&(e.$scopedSlots=we(e.$parent,o.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&Se(e._slotsProxy,e.$scopedSlots)),e.$vnode=o;try{ft(e),Oe=e,t=i.call(e._renderProxy,e.$createElement)}catch(n){en(n,e,"render"),t=e._vnode}finally{Oe=null,ft()}return r(t)&&1===t.length&&(t=t[0]),t instanceof pt||(t=ht()),t.parent=o,t}}(er);var ar=[String,RegExp,Array],lr={name:"keep-alive",abstract:!0,props:{include:ar,exclude:ar,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,i=t.keyToCache;if(r){var o=r.tag,s=r.componentInstance,a=r.componentOptions;e[i]={name:rr(a),tag:o,componentInstance:s},n.push(i),this.max&&n.length>parseInt(this.max)&&sr(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)sr(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){or(t,(function(t){return ir(e,t)}))})),this.$watch("exclude",(function(e){or(t,(function(t){return!ir(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=Ee(t),n=e&&e.componentOptions;if(n){var r=rr(n),i=this.include,o=this.exclude;if(i&&(!r||!ir(i,r))||o&&r&&ir(o,r))return e;var s=this.cache,a=this.keys,l=null==e.key?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):e.key;s[l]?(e.componentInstance=s[l].componentInstance,b(a,l),a.push(l)):(this.vnodeToCache=e,this.keyToCache=l),e.data.keepAlive=!0}return e||t&&t[0]}},cr={KeepAlive:lr};!function(t){var e={get:function(){return V}};Object.defineProperty(t,"config",e),t.util={warn:zn,extend:P,mergeOptions:Yn,defineReactive:It},t.set=Lt,t.delete=$t,t.nextTick=mn,t.observable=function(t){return Mt(t),t},t.options=Object.create(null),z.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,P(t.options.components,cr),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=A(arguments,1);return n.unshift(this),l(t.install)?t.install.apply(t,n):l(t)&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Yn(this.options,t),this}}(t),nr(t),function(t){z.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&d(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&l(n)&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(er),Object.defineProperty(er.prototype,"$isServer",{get:st}),Object.defineProperty(er.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(er,"FunctionalRenderContext",{value:In}),er.version="2.7.14";var ur=v("style,class"),dr=v("input,textarea,option,select,progress"),fr=function(t,e,n){return"value"===n&&dr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},pr=v("contenteditable,draggable,spellcheck"),hr=v("events,caret,typing,plaintext-only"),mr=function(t,e){return br(e)||"false"===e?"false":"contenteditable"===t&&hr(e)?e:"true"},gr=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),vr="http://www.w3.org/1999/xlink",wr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},yr=function(t){return wr(t)?t.slice(6,t.length):""},br=function(t){return null==t||!1===t};function _r(t){for(var e=t.data,n=t,r=t;o(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=xr(r.data,e));for(;o(n=n.parent);)n&&n.data&&(e=xr(e,n.data));return function(t,e){if(o(t)||o(e))return kr(t,Sr(e));return""}(e.staticClass,e.class)}function xr(t,e){return{staticClass:kr(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function kr(t,e){return t?e?t+" "+e:t:e||""}function Sr(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,i=t.length;r<i;r++)o(e=Sr(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):c(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Cr={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Or=v("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Tr=v("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Er=function(t){return Or(t)||Tr(t)};function jr(t){return Tr(t)?"svg":"math"===t?"math":void 0}var Ar=Object.create(null);var Pr=v("text,number,password,search,email,tel,url");function Mr(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}var Ir=Object.freeze({__proto__:null,createElement:function(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(t,e){return document.createElementNS(Cr[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Lr={create:function(t,e){$r(e)},update:function(t,e){t.data.ref!==e.data.ref&&($r(t,!0),$r(e))},destroy:function(t){$r(t,!0)}};function $r(t,e){var n=t.data.ref;if(o(n)){var i=t.context,s=t.componentInstance||t.elm,a=e?null:s,c=e?void 0:s;if(l(n))nn(n,i,[a],i,"template ref function");else{var u=t.data.refInFor,d="string"==typeof n||"number"==typeof n,f=Rt(n),p=i.$refs;if(d||f)if(u){var h=d?p[n]:n.value;e?r(h)&&b(h,s):r(h)?h.includes(s)||h.push(s):d?(p[n]=[s],Dr(i,n,p[n])):n.value=[s]}else if(d){if(e&&p[n]!==s)return;p[n]=c,Dr(i,n,a)}else if(f){if(e&&n.value!==s)return;n.value=a}else 0}}}function Dr(t,e,n){var r=t._setupState;r&&x(r,e)&&(Rt(r[e])?r[e].value=n:r[e]=n)}var Nr=new pt("",{},[]),Fr=["create","activate","update","remove","destroy"];function Br(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&o(t.data)===o(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=o(n=t.data)&&o(n=n.attrs)&&n.type,i=o(n=e.data)&&o(n=n.attrs)&&n.type;return r===i||Pr(r)&&Pr(i)}(t,e)||s(t.isAsyncPlaceholder)&&i(e.asyncFactory.error))}function Rr(t,e,n){var r,i,s={};for(r=e;r<=n;++r)o(i=t[r].key)&&(s[i]=r);return s}var zr={create:Ur,update:Ur,destroy:function(t){Ur(t,Nr)}};function Ur(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,i,o=t===Nr,s=e===Nr,a=Hr(t.data.directives,t.context),l=Hr(e.data.directives,e.context),c=[],u=[];for(n in l)r=a[n],i=l[n],r?(i.oldValue=r.value,i.oldArg=r.arg,Wr(i,"update",e,t),i.def&&i.def.componentUpdated&&u.push(i)):(Wr(i,"bind",e,t),i.def&&i.def.inserted&&c.push(i));if(c.length){var d=function(){for(var n=0;n<c.length;n++)Wr(c[n],"inserted",e,t)};o?qt(e,"insert",d):d()}u.length&&qt(e,"postpatch",(function(){for(var n=0;n<u.length;n++)Wr(u[n],"componentUpdated",e,t)}));if(!o)for(n in a)l[n]||Wr(a[n],"unbind",t,t,s)}(t,e)}var Vr=Object.create(null);function Hr(t,e){var n,r,i=Object.create(null);if(!t)return i;for(n=0;n<t.length;n++){if((r=t[n]).modifiers||(r.modifiers=Vr),i[qr(r)]=r,e._setupState&&e._setupState.__sfc){var o=r.def||Gn(e,"_setupState","v-"+r.name);r.def="function"==typeof o?{bind:o,update:o}:o}r.def=r.def||Gn(e.$options,"directives",r.name)}return i}function qr(t){return t.rawName||"".concat(t.name,".").concat(Object.keys(t.modifiers||{}).join("."))}function Wr(t,e,n,r,i){var o=t.def&&t.def[e];if(o)try{o(n.elm,t,n,r,i)}catch(r){en(r,n.context,"directive ".concat(t.name," ").concat(e," hook"))}}var Zr=[Lr,zr];function Yr(t,e){var n=e.componentOptions;if(!(o(n)&&!1===n.Ctor.options.inheritAttrs||i(t.data.attrs)&&i(e.data.attrs))){var r,a,l=e.elm,c=t.data.attrs||{},u=e.data.attrs||{};for(r in(o(u.__ob__)||s(u._v_attr_proxy))&&(u=e.data.attrs=P({},u)),u)a=u[r],c[r]!==a&&Gr(l,r,a,e.data.pre);for(r in(K||Q)&&u.value!==c.value&&Gr(l,"value",u.value),c)i(u[r])&&(wr(r)?l.removeAttributeNS(vr,yr(r)):pr(r)||l.removeAttribute(r))}}function Gr(t,e,n,r){r||t.tagName.indexOf("-")>-1?Jr(t,e,n):gr(e)?br(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):pr(e)?t.setAttribute(e,mr(e,n)):wr(e)?br(n)?t.removeAttributeNS(vr,yr(e)):t.setAttributeNS(vr,e,n):Jr(t,e,n)}function Jr(t,e,n){if(br(n))t.removeAttribute(e);else{if(K&&!X&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Kr={create:Yr,update:Yr};function Xr(t,e){var n=e.elm,r=e.data,s=t.data;if(!(i(r.staticClass)&&i(r.class)&&(i(s)||i(s.staticClass)&&i(s.class)))){var a=_r(e),l=n._transitionClasses;o(l)&&(a=kr(a,Sr(l))),a!==n._prevClass&&(n.setAttribute("class",a),n._prevClass=a)}}var Qr,ti,ei,ni,ri,ii,oi={create:Xr,update:Xr},si=/[\w).+\-_$\]]/;function ai(t){var e,n,r,i,o,s=!1,a=!1,l=!1,c=!1,u=0,d=0,f=0,p=0;for(r=0;r<t.length;r++)if(n=e,e=t.charCodeAt(r),s)39===e&&92!==n&&(s=!1);else if(a)34===e&&92!==n&&(a=!1);else if(l)96===e&&92!==n&&(l=!1);else if(c)47===e&&92!==n&&(c=!1);else if(124!==e||124===t.charCodeAt(r+1)||124===t.charCodeAt(r-1)||u||d||f){switch(e){case 34:a=!0;break;case 39:s=!0;break;case 96:l=!0;break;case 40:f++;break;case 41:f--;break;case 91:d++;break;case 93:d--;break;case 123:u++;break;case 125:u--}if(47===e){for(var h=r-1,m=void 0;h>=0&&" "===(m=t.charAt(h));h--);m&&si.test(m)||(c=!0)}}else void 0===i?(p=r+1,i=t.slice(0,r).trim()):g();function g(){(o||(o=[])).push(t.slice(p,r).trim()),p=r+1}if(void 0===i?i=t.slice(0,r).trim():0!==p&&g(),o)for(r=0;r<o.length;r++)i=li(i,o[r]);return i}function li(t,e){var n=e.indexOf("(");if(n<0)return'_f("'.concat(e,'")(').concat(t,")");var r=e.slice(0,n),i=e.slice(n+1);return'_f("'.concat(r,'")(').concat(t).concat(")"!==i?","+i:i)}function ci(t,e){console.error("[Vue compiler]: ".concat(t))}function ui(t,e){return t?t.map((function(t){return t[e]})).filter((function(t){return t})):[]}function di(t,e,n,r,i){(t.props||(t.props=[])).push(bi({name:e,value:n,dynamic:i},r)),t.plain=!1}function fi(t,e,n,r,i){(i?t.dynamicAttrs||(t.dynamicAttrs=[]):t.attrs||(t.attrs=[])).push(bi({name:e,value:n,dynamic:i},r)),t.plain=!1}function pi(t,e,n,r){t.attrsMap[e]=n,t.attrsList.push(bi({name:e,value:n},r))}function hi(t,e,n,r,i,o,s,a){(t.directives||(t.directives=[])).push(bi({name:e,rawName:n,value:r,arg:i,isDynamicArg:o,modifiers:s},a)),t.plain=!1}function mi(t,e,n){return n?"_p(".concat(e,',"').concat(t,'")'):t+e}function gi(t,n,r,i,o,s,a,l){var c;(i=i||e).right?l?n="(".concat(n,")==='click'?'contextmenu':(").concat(n,")"):"click"===n&&(n="contextmenu",delete i.right):i.middle&&(l?n="(".concat(n,")==='click'?'mouseup':(").concat(n,")"):"click"===n&&(n="mouseup")),i.capture&&(delete i.capture,n=mi("!",n,l)),i.once&&(delete i.once,n=mi("~",n,l)),i.passive&&(delete i.passive,n=mi("&",n,l)),i.native?(delete i.native,c=t.nativeEvents||(t.nativeEvents={})):c=t.events||(t.events={});var u=bi({value:r.trim(),dynamic:l},a);i!==e&&(u.modifiers=i);var d=c[n];Array.isArray(d)?o?d.unshift(u):d.push(u):c[n]=d?o?[u,d]:[d,u]:u,t.plain=!1}function vi(t,e,n){var r=wi(t,":"+e)||wi(t,"v-bind:"+e);if(null!=r)return ai(r);if(!1!==n){var i=wi(t,e);if(null!=i)return JSON.stringify(i)}}function wi(t,e,n){var r;if(null!=(r=t.attrsMap[e]))for(var i=t.attrsList,o=0,s=i.length;o<s;o++)if(i[o].name===e){i.splice(o,1);break}return n&&delete t.attrsMap[e],r}function yi(t,e){for(var n=t.attrsList,r=0,i=n.length;r<i;r++){var o=n[r];if(e.test(o.name))return n.splice(r,1),o}}function bi(t,e){return e&&(null!=e.start&&(t.start=e.start),null!=e.end&&(t.end=e.end)),t}function _i(t,e,n){var r=n||{},i=r.number,o="$$v",s=o;r.trim&&(s="(typeof ".concat(o," === 'string'")+"? ".concat(o,".trim()")+": ".concat(o,")")),i&&(s="_n(".concat(s,")"));var a=xi(e,s);t.model={value:"(".concat(e,")"),expression:JSON.stringify(e),callback:"function (".concat(o,") {").concat(a,"}")}}function xi(t,e){var n=function(t){if(t=t.trim(),Qr=t.length,t.indexOf("[")<0||t.lastIndexOf("]")<Qr-1)return(ni=t.lastIndexOf("."))>-1?{exp:t.slice(0,ni),key:'"'+t.slice(ni+1)+'"'}:{exp:t,key:null};ti=t,ni=ri=ii=0;for(;!Si();)Ci(ei=ki())?Ti(ei):91===ei&&Oi(ei);return{exp:t.slice(0,ri),key:t.slice(ri+1,ii)}}(t);return null===n.key?"".concat(t,"=").concat(e):"$set(".concat(n.exp,", ").concat(n.key,", ").concat(e,")")}function ki(){return ti.charCodeAt(++ni)}function Si(){return ni>=Qr}function Ci(t){return 34===t||39===t}function Oi(t){var e=1;for(ri=ni;!Si();)if(Ci(t=ki()))Ti(t);else if(91===t&&e++,93===t&&e--,0===e){ii=ni;break}}function Ti(t){for(var e=t;!Si()&&(t=ki())!==e;);}var Ei,ji="__r",Ai="__c";function Pi(t,e,n){var r=Ei;return function i(){null!==e.apply(null,arguments)&&Li(t,i,n,r)}}var Mi=an&&!(nt&&Number(nt[1])<=53);function Ii(t,e,n,r){if(Mi){var i=qe,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}Ei.addEventListener(t,e,it?{capture:n,passive:r}:n)}function Li(t,e,n,r){(r||Ei).removeEventListener(t,e._wrapper||e,n)}function $i(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};Ei=e.elm||t.elm,function(t){if(o(t[ji])){var e=K?"change":"input";t[e]=[].concat(t[ji],t[e]||[]),delete t[ji]}o(t[Ai])&&(t.change=[].concat(t[Ai],t.change||[]),delete t[Ai])}(n),Ht(n,r,Ii,Li,Pi,e.context),Ei=void 0}}var Di,Ni={create:$i,update:$i,destroy:function(t){return $i(t,Nr)}};function Fi(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,r,a=e.elm,l=t.data.domProps||{},c=e.data.domProps||{};for(n in(o(c.__ob__)||s(c._v_attr_proxy))&&(c=e.data.domProps=P({},c)),l)n in c||(a[n]="");for(n in c){if(r=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===l[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var u=i(r)?"":String(r);Bi(a,u)&&(a.value=u)}else if("innerHTML"===n&&Tr(a.tagName)&&i(a.innerHTML)){(Di=Di||document.createElement("div")).innerHTML="<svg>".concat(r,"</svg>");for(var d=Di.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;d.firstChild;)a.appendChild(d.firstChild)}else if(r!==l[n])try{a[n]=r}catch(t){}}}}function Bi(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return g(n)!==g(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Ri={create:Fi,update:Fi},zi=k((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function Ui(t){var e=Vi(t.style);return t.staticStyle?P(t.staticStyle,e):e}function Vi(t){return Array.isArray(t)?M(t):"string"==typeof t?zi(t):t}var Hi,qi=/^--/,Wi=/\s*!important$/,Zi=function(t,e,n){if(qi.test(e))t.style.setProperty(e,n);else if(Wi.test(n))t.style.setProperty(E(e),n.replace(Wi,""),"important");else{var r=Gi(e);if(Array.isArray(n))for(var i=0,o=n.length;i<o;i++)t.style[r]=n[i];else t.style[r]=n}},Yi=["Webkit","Moz","ms"],Gi=k((function(t){if(Hi=Hi||document.createElement("div").style,"filter"!==(t=C(t))&&t in Hi)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<Yi.length;n++){var r=Yi[n]+e;if(r in Hi)return r}}));function Ji(t,e){var n=e.data,r=t.data;if(!(i(n.staticStyle)&&i(n.style)&&i(r.staticStyle)&&i(r.style))){var s,a,l=e.elm,c=r.staticStyle,u=r.normalizedStyle||r.style||{},d=c||u,f=Vi(e.data.style)||{};e.data.normalizedStyle=o(f.__ob__)?P({},f):f;var p=function(t,e){var n,r={};if(e)for(var i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=Ui(i.data))&&P(r,n);(n=Ui(t.data))&&P(r,n);for(var o=t;o=o.parent;)o.data&&(n=Ui(o.data))&&P(r,n);return r}(e,!0);for(a in d)i(p[a])&&Zi(l,a,"");for(a in p)(s=p[a])!==d[a]&&Zi(l,a,null==s?"":s)}}var Ki={create:Ji,update:Ji},Xi=/\s+/;function Qi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Xi).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" ".concat(t.getAttribute("class")||""," ");n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function to(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Xi).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" ".concat(t.getAttribute("class")||""," "),r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function eo(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&P(e,no(t.name||"v")),P(e,t),e}return"string"==typeof t?no(t):void 0}}var no=k((function(t){return{enterClass:"".concat(t,"-enter"),enterToClass:"".concat(t,"-enter-to"),enterActiveClass:"".concat(t,"-enter-active"),leaveClass:"".concat(t,"-leave"),leaveToClass:"".concat(t,"-leave-to"),leaveActiveClass:"".concat(t,"-leave-active")}})),ro=G&&!X,io="transition",oo="animation",so="transition",ao="transitionend",lo="animation",co="animationend";ro&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(so="WebkitTransition",ao="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(lo="WebkitAnimation",co="webkitAnimationEnd"));var uo=G?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function fo(t){uo((function(){uo(t)}))}function po(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Qi(t,e))}function ho(t,e){t._transitionClasses&&b(t._transitionClasses,e),to(t,e)}function mo(t,e,n){var r=vo(t,e),i=r.type,o=r.timeout,s=r.propCount;if(!i)return n();var a=i===io?ao:co,l=0,c=function(){t.removeEventListener(a,u),n()},u=function(e){e.target===t&&++l>=s&&c()};setTimeout((function(){l<s&&c()}),o+1),t.addEventListener(a,u)}var go=/\b(transform|all)(,|$)/;function vo(t,e){var n,r=window.getComputedStyle(t),i=(r[so+"Delay"]||"").split(", "),o=(r[so+"Duration"]||"").split(", "),s=wo(i,o),a=(r[lo+"Delay"]||"").split(", "),l=(r[lo+"Duration"]||"").split(", "),c=wo(a,l),u=0,d=0;return e===io?s>0&&(n=io,u=s,d=o.length):e===oo?c>0&&(n=oo,u=c,d=l.length):d=(n=(u=Math.max(s,c))>0?s>c?io:oo:null)?n===io?o.length:l.length:0,{type:n,timeout:u,propCount:d,hasTransform:n===io&&go.test(r[so+"Property"])}}function wo(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return yo(e)+yo(t[n])})))}function yo(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function bo(t,e){var n=t.elm;o(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=eo(t.data.transition);if(!i(r)&&!o(n._enterCb)&&1===n.nodeType){for(var s=r.css,a=r.type,u=r.enterClass,d=r.enterToClass,f=r.enterActiveClass,p=r.appearClass,h=r.appearToClass,m=r.appearActiveClass,v=r.beforeEnter,w=r.enter,y=r.afterEnter,b=r.enterCancelled,_=r.beforeAppear,x=r.appear,k=r.afterAppear,S=r.appearCancelled,C=r.duration,O=Ie,T=Ie.$vnode;T&&T.parent;)O=T.context,T=T.parent;var E=!O._isMounted||!t.isRootInsert;if(!E||x||""===x){var j=E&&p?p:u,A=E&&m?m:f,P=E&&h?h:d,M=E&&_||v,I=E&&l(x)?x:w,L=E&&k||y,$=E&&S||b,D=g(c(C)?C.enter:C);0;var N=!1!==s&&!X,B=ko(I),R=n._enterCb=F((function(){N&&(ho(n,P),ho(n,A)),R.cancelled?(N&&ho(n,j),$&&$(n)):L&&L(n),n._enterCb=null}));t.data.show||qt(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),I&&I(n,R)})),M&&M(n),N&&(po(n,j),po(n,A),fo((function(){ho(n,j),R.cancelled||(po(n,P),B||(xo(D)?setTimeout(R,D):mo(n,a,R)))}))),t.data.show&&(e&&e(),I&&I(n,R)),N||B||R()}}}function _o(t,e){var n=t.elm;o(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=eo(t.data.transition);if(i(r)||1!==n.nodeType)return e();if(!o(n._leaveCb)){var s=r.css,a=r.type,l=r.leaveClass,u=r.leaveToClass,d=r.leaveActiveClass,f=r.beforeLeave,p=r.leave,h=r.afterLeave,m=r.leaveCancelled,v=r.delayLeave,w=r.duration,y=!1!==s&&!X,b=ko(p),_=g(c(w)?w.leave:w);0;var x=n._leaveCb=F((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),y&&(ho(n,u),ho(n,d)),x.cancelled?(y&&ho(n,l),m&&m(n)):(e(),h&&h(n)),n._leaveCb=null}));v?v(k):k()}function k(){x.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),f&&f(n),y&&(po(n,l),po(n,d),fo((function(){ho(n,l),x.cancelled||(po(n,u),b||(xo(_)?setTimeout(x,_):mo(n,a,x)))}))),p&&p(n,x),y||b||x())}}function xo(t){return"number"==typeof t&&!isNaN(t)}function ko(t){if(i(t))return!1;var e=t.fns;return o(e)?ko(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function So(t,e){!0!==e.data.show&&bo(e)}var Co=function(t){var e,n,l={},c=t.modules,u=t.nodeOps;for(e=0;e<Fr.length;++e)for(l[Fr[e]]=[],n=0;n<c.length;++n)o(c[n][Fr[e]])&&l[Fr[e]].push(c[n][Fr[e]]);function d(t){var e=u.parentNode(t);o(e)&&u.removeChild(e,t)}function f(t,e,n,r,i,a,c){if(o(t.elm)&&o(a)&&(t=a[c]=gt(t)),t.isRootInsert=!i,!function(t,e,n,r){var i=t.data;if(o(i)){var a=o(t.componentInstance)&&i.keepAlive;if(o(i=i.hook)&&o(i=i.init)&&i(t,!1),o(t.componentInstance))return p(t,e),h(n,t.elm,r),s(a)&&function(t,e,n,r){var i,s=t;for(;s.componentInstance;)if(o(i=(s=s.componentInstance._vnode).data)&&o(i=i.transition)){for(i=0;i<l.activate.length;++i)l.activate[i](Nr,s);e.push(s);break}h(n,t.elm,r)}(t,e,n,r),!0}}(t,e,n,r)){var d=t.data,f=t.children,g=t.tag;o(g)?(t.elm=t.ns?u.createElementNS(t.ns,g):u.createElement(g,t),y(t),m(t,f,e),o(d)&&w(t,e),h(n,t.elm,r)):s(t.isComment)?(t.elm=u.createComment(t.text),h(n,t.elm,r)):(t.elm=u.createTextNode(t.text),h(n,t.elm,r))}}function p(t,e){o(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,g(t)?(w(t,e),y(t)):($r(t),e.push(t))}function h(t,e,n){o(t)&&(o(n)?u.parentNode(n)===t&&u.insertBefore(t,e,n):u.appendChild(t,e))}function m(t,e,n){if(r(e)){0;for(var i=0;i<e.length;++i)f(e[i],n,t.elm,null,!0,e,i)}else a(t.text)&&u.appendChild(t.elm,u.createTextNode(String(t.text)))}function g(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return o(t.tag)}function w(t,n){for(var r=0;r<l.create.length;++r)l.create[r](Nr,t);o(e=t.data.hook)&&(o(e.create)&&e.create(Nr,t),o(e.insert)&&n.push(t))}function y(t){var e;if(o(e=t.fnScopeId))u.setStyleScope(t.elm,e);else for(var n=t;n;)o(e=n.context)&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e),n=n.parent;o(e=Ie)&&e!==t.context&&e!==t.fnContext&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e)}function b(t,e,n,r,i,o){for(;r<=i;++r)f(n[r],o,t,e,!1,n,r)}function _(t){var e,n,r=t.data;if(o(r))for(o(e=r.hook)&&o(e=e.destroy)&&e(t),e=0;e<l.destroy.length;++e)l.destroy[e](t);if(o(e=t.children))for(n=0;n<t.children.length;++n)_(t.children[n])}function x(t,e,n){for(;e<=n;++e){var r=t[e];o(r)&&(o(r.tag)?(k(r),_(r)):d(r.elm))}}function k(t,e){if(o(e)||o(t.data)){var n,r=l.remove.length+1;for(o(e)?e.listeners+=r:e=function(t,e){function n(){0==--n.listeners&&d(t)}return n.listeners=e,n}(t.elm,r),o(n=t.componentInstance)&&o(n=n._vnode)&&o(n.data)&&k(n,e),n=0;n<l.remove.length;++n)l.remove[n](t,e);o(n=t.data.hook)&&o(n=n.remove)?n(t,e):e()}else d(t.elm)}function S(t,e,n,r){for(var i=n;i<r;i++){var s=e[i];if(o(s)&&Br(t,s))return i}}function C(t,e,n,r,a,c){if(t!==e){o(e.elm)&&o(r)&&(e=r[a]=gt(e));var d=e.elm=t.elm;if(s(t.isAsyncPlaceholder))o(e.asyncFactory.resolved)?E(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(s(e.isStatic)&&s(t.isStatic)&&e.key===t.key&&(s(e.isCloned)||s(e.isOnce)))e.componentInstance=t.componentInstance;else{var p,h=e.data;o(h)&&o(p=h.hook)&&o(p=p.prepatch)&&p(t,e);var m=t.children,v=e.children;if(o(h)&&g(e)){for(p=0;p<l.update.length;++p)l.update[p](t,e);o(p=h.hook)&&o(p=p.update)&&p(t,e)}i(e.text)?o(m)&&o(v)?m!==v&&function(t,e,n,r,s){var a,l,c,d=0,p=0,h=e.length-1,m=e[0],g=e[h],v=n.length-1,w=n[0],y=n[v],_=!s;for(;d<=h&&p<=v;)i(m)?m=e[++d]:i(g)?g=e[--h]:Br(m,w)?(C(m,w,r,n,p),m=e[++d],w=n[++p]):Br(g,y)?(C(g,y,r,n,v),g=e[--h],y=n[--v]):Br(m,y)?(C(m,y,r,n,v),_&&u.insertBefore(t,m.elm,u.nextSibling(g.elm)),m=e[++d],y=n[--v]):Br(g,w)?(C(g,w,r,n,p),_&&u.insertBefore(t,g.elm,m.elm),g=e[--h],w=n[++p]):(i(a)&&(a=Rr(e,d,h)),i(l=o(w.key)?a[w.key]:S(w,e,d,h))?f(w,r,t,m.elm,!1,n,p):Br(c=e[l],w)?(C(c,w,r,n,p),e[l]=void 0,_&&u.insertBefore(t,c.elm,m.elm)):f(w,r,t,m.elm,!1,n,p),w=n[++p]);d>h?b(t,i(n[v+1])?null:n[v+1].elm,n,p,v,r):p>v&&x(e,d,h)}(d,m,v,n,c):o(v)?(o(t.text)&&u.setTextContent(d,""),b(d,null,v,0,v.length-1,n)):o(m)?x(m,0,m.length-1):o(t.text)&&u.setTextContent(d,""):t.text!==e.text&&u.setTextContent(d,e.text),o(h)&&o(p=h.hook)&&o(p=p.postpatch)&&p(t,e)}}}function O(t,e,n){if(s(n)&&o(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var T=v("attrs,class,staticClass,staticStyle,key");function E(t,e,n,r){var i,a=e.tag,l=e.data,c=e.children;if(r=r||l&&l.pre,e.elm=t,s(e.isComment)&&o(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(o(l)&&(o(i=l.hook)&&o(i=i.init)&&i(e,!0),o(i=e.componentInstance)))return p(e,n),!0;if(o(a)){if(o(c))if(t.hasChildNodes())if(o(i=l)&&o(i=i.domProps)&&o(i=i.innerHTML)){if(i!==t.innerHTML)return!1}else{for(var u=!0,d=t.firstChild,f=0;f<c.length;f++){if(!d||!E(d,c[f],n,r)){u=!1;break}d=d.nextSibling}if(!u||d)return!1}else m(e,c,n);if(o(l)){var h=!1;for(var g in l)if(!T(g)){h=!0,w(e,n);break}!h&&l.class&&wn(l.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,r){if(!i(e)){var a,c=!1,d=[];if(i(t))c=!0,f(e,d);else{var p=o(t.nodeType);if(!p&&Br(t,e))C(t,e,d,null,null,r);else{if(p){if(1===t.nodeType&&t.hasAttribute(R)&&(t.removeAttribute(R),n=!0),s(n)&&E(t,e,d))return O(e,d,!0),t;a=t,t=new pt(u.tagName(a).toLowerCase(),{},[],void 0,a)}var h=t.elm,m=u.parentNode(h);if(f(e,d,h._leaveCb?null:m,u.nextSibling(h)),o(e.parent))for(var v=e.parent,w=g(e);v;){for(var y=0;y<l.destroy.length;++y)l.destroy[y](v);if(v.elm=e.elm,w){for(var b=0;b<l.create.length;++b)l.create[b](Nr,v);var k=v.data.hook.insert;if(k.merged)for(var S=1;S<k.fns.length;S++)k.fns[S]()}else $r(v);v=v.parent}o(m)?x([t],0,0):o(t.tag)&&_(t)}}return O(e,d,c),e.elm}o(t)&&_(t)}}({nodeOps:Ir,modules:[Kr,oi,Ni,Ri,Ki,G?{create:So,activate:So,remove:function(t,e){!0!==t.data.show?_o(t,e):e()}}:{}].concat(Zr)});X&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&Io(t,"input")}));var Oo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?qt(n,"postpatch",(function(){Oo.componentUpdated(t,e,n)})):To(t,e,n.context),t._vOptions=[].map.call(t.options,Ao)):("textarea"===n.tag||Pr(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",Po),t.addEventListener("compositionend",Mo),t.addEventListener("change",Mo),X&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){To(t,e,n.context);var r=t._vOptions,i=t._vOptions=[].map.call(t.options,Ao);if(i.some((function(t,e){return!D(t,r[e])})))(t.multiple?e.value.some((function(t){return jo(t,i)})):e.value!==e.oldValue&&jo(e.value,i))&&Io(t,"change")}}};function To(t,e,n){Eo(t,e,n),(K||Q)&&setTimeout((function(){Eo(t,e,n)}),0)}function Eo(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,s,a=0,l=t.options.length;a<l;a++)if(s=t.options[a],i)o=N(r,Ao(s))>-1,s.selected!==o&&(s.selected=o);else if(D(Ao(s),r))return void(t.selectedIndex!==a&&(t.selectedIndex=a));i||(t.selectedIndex=-1)}}function jo(t,e){return e.every((function(e){return!D(e,t)}))}function Ao(t){return"_value"in t?t._value:t.value}function Po(t){t.target.composing=!0}function Mo(t){t.target.composing&&(t.target.composing=!1,Io(t.target,"input"))}function Io(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Lo(t){return!t.componentInstance||t.data&&t.data.transition?t:Lo(t.componentInstance._vnode)}var $o={bind:function(t,e,n){var r=e.value,i=(n=Lo(n)).data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,bo(n,(function(){t.style.display=o}))):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=Lo(n)).data&&n.data.transition?(n.data.show=!0,r?bo(n,(function(){t.style.display=t.__vOriginalDisplay})):_o(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}},Do={model:Oo,show:$o},No={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Fo(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Fo(Ee(e.children)):t}function Bo(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var r in i)e[C(r)]=i[r];return e}function Ro(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var zo=function(t){return t.tag||ve(t)},Uo=function(t){return"show"===t.name},Vo={name:"transition",props:No,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(zo)).length){0;var r=this.mode;0;var i=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var o=Fo(i);if(!o)return i;if(this._leaving)return Ro(t,i);var s="__transition-".concat(this._uid,"-");o.key=null==o.key?o.isComment?s+"comment":s+o.tag:a(o.key)?0===String(o.key).indexOf(s)?o.key:s+o.key:o.key;var l=(o.data||(o.data={})).transition=Bo(this),c=this._vnode,u=Fo(c);if(o.data.directives&&o.data.directives.some(Uo)&&(o.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(o,u)&&!ve(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var d=u.data.transition=P({},l);if("out-in"===r)return this._leaving=!0,qt(d,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),Ro(t,i);if("in-out"===r){if(ve(o))return c;var f,p=function(){f()};qt(l,"afterEnter",p),qt(l,"enterCancelled",p),qt(d,"delayLeave",(function(t){f=t}))}}return i}}},Ho=P({tag:String,moveClass:String},No);delete Ho.mode;var qo={props:Ho,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var i=Le(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],s=Bo(this),a=0;a<i.length;a++){if((u=i[a]).tag)if(null!=u.key&&0!==String(u.key).indexOf("__vlist"))o.push(u),n[u.key]=u,(u.data||(u.data={})).transition=s;else;}if(r){var l=[],c=[];for(a=0;a<r.length;a++){var u;(u=r[a]).data.transition=s,u.data.pos=u.elm.getBoundingClientRect(),n[u.key]?l.push(u):c.push(u)}this.kept=t(e,null,l),this.removed=c}return t(e,null,o)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(Wo),t.forEach(Zo),t.forEach(Yo),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;po(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(ao,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(ao,t),n._moveCb=null,ho(n,e))})}})))},methods:{hasMove:function(t,e){if(!ro)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){to(n,t)})),Qi(n,e),n.style.display="none",this.$el.appendChild(n);var r=vo(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function Wo(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Zo(t){t.data.newPos=t.elm.getBoundingClientRect()}function Yo(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate(".concat(r,"px,").concat(i,"px)"),o.transitionDuration="0s"}}var Go={Transition:Vo,TransitionGroup:qo};er.config.mustUseProp=fr,er.config.isReservedTag=Er,er.config.isReservedAttr=ur,er.config.getTagNamespace=jr,er.config.isUnknownElement=function(t){if(!G)return!0;if(Er(t))return!1;if(t=t.toLowerCase(),null!=Ar[t])return Ar[t];var e=document.createElement(t);return t.indexOf("-")>-1?Ar[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Ar[t]=/HTMLUnknownElement/.test(e.toString())},P(er.options.directives,Do),P(er.options.components,Go),er.prototype.__patch__=G?Co:I,er.prototype.$mount=function(t,e){return function(t,e,n){var r;t.$el=e,t.$options.render||(t.$options.render=ht),Fe(t,"beforeMount"),r=function(){t._update(t._render(),n)},new _n(t,r,I,{before:function(){t._isMounted&&!t._isDestroyed&&Fe(t,"beforeUpdate")}},!0),n=!1;var i=t._preWatchers;if(i)for(var o=0;o<i.length;o++)i[o].run();return null==t.$vnode&&(t._isMounted=!0,Fe(t,"mounted")),t}(this,t=t&&G?Mr(t):void 0,e)},G&&setTimeout((function(){V.devtools&&at&&at.emit("init",er)}),0);var Jo=/\{\{((?:.|\r?\n)+?)\}\}/g,Ko=/[-.*+?^${}()|[\]\/\\]/g,Xo=k((function(t){var e=t[0].replace(Ko,"\\$&"),n=t[1].replace(Ko,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}));var Qo={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=wi(t,"class");n&&(t.staticClass=JSON.stringify(n.replace(/\s+/g," ").trim()));var r=vi(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:".concat(t.staticClass,",")),t.classBinding&&(e+="class:".concat(t.classBinding,",")),e}};var ts,es={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=wi(t,"style");n&&(t.staticStyle=JSON.stringify(zi(n)));var r=vi(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:".concat(t.staticStyle,",")),t.styleBinding&&(e+="style:(".concat(t.styleBinding,"),")),e}},ns=function(t){return(ts=ts||document.createElement("div")).innerHTML=t,ts.textContent},rs=v("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),is=v("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),os=v("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ss=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,as=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+?\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ls="[a-zA-Z_][\\-\\.0-9_a-zA-Z".concat(H.source,"]*"),cs="((?:".concat(ls,"\\:)?").concat(ls,")"),us=new RegExp("^<".concat(cs)),ds=/^\s*(\/?)>/,fs=new RegExp("^<\\/".concat(cs,"[^>]*>")),ps=/^<!DOCTYPE [^>]+>/i,hs=/^<!\--/,ms=/^<!\[/,gs=v("script,style,textarea",!0),vs={},ws={"&lt;":"<","&gt;":">","&quot;":'"',"&amp;":"&","&#10;":"\n","&#9;":"\t","&#39;":"'"},ys=/&(?:lt|gt|quot|amp|#39);/g,bs=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,_s=v("pre,textarea",!0),xs=function(t,e){return t&&_s(t)&&"\n"===e[0]};function ks(t,e){var n=e?bs:ys;return t.replace(n,(function(t){return ws[t]}))}function Ss(t,e){for(var n,r,i=[],o=e.expectHTML,s=e.isUnaryTag||L,a=e.canBeLeftOpenTag||L,l=0,c=function(){if(n=t,r&&gs(r)){var c=0,f=r.toLowerCase(),p=vs[f]||(vs[f]=new RegExp("([\\s\\S]*?)(</"+f+"[^>]*>)","i"));x=t.replace(p,(function(t,n,r){return c=r.length,gs(f)||"noscript"===f||(n=n.replace(/<!\--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),xs(f,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""}));l+=t.length-x.length,t=x,d(f,l-c,l)}else{var h=t.indexOf("<");if(0===h){if(hs.test(t)){var m=t.indexOf("--\x3e");if(m>=0)return e.shouldKeepComment&&e.comment&&e.comment(t.substring(4,m),l,l+m+3),u(m+3),"continue"}if(ms.test(t)){var g=t.indexOf("]>");if(g>=0)return u(g+2),"continue"}var v=t.match(ps);if(v)return u(v[0].length),"continue";var w=t.match(fs);if(w){var y=l;return u(w[0].length),d(w[1],y,l),"continue"}var b=function(){var e=t.match(us);if(e){var n={tagName:e[1],attrs:[],start:l};u(e[0].length);for(var r=void 0,i=void 0;!(r=t.match(ds))&&(i=t.match(as)||t.match(ss));)i.start=l,u(i[0].length),i.end=l,n.attrs.push(i);if(r)return n.unarySlash=r[1],u(r[0].length),n.end=l,n}}();if(b)return function(t){var n=t.tagName,l=t.unarySlash;o&&("p"===r&&os(n)&&d(r),a(n)&&r===n&&d(n));for(var c=s(n)||!!l,u=t.attrs.length,f=new Array(u),p=0;p<u;p++){var h=t.attrs[p],m=h[3]||h[4]||h[5]||"",g="a"===n&&"href"===h[1]?e.shouldDecodeNewlinesForHref:e.shouldDecodeNewlines;f[p]={name:h[1],value:ks(m,g)}}c||(i.push({tag:n,lowerCasedTag:n.toLowerCase(),attrs:f,start:t.start,end:t.end}),r=n);e.start&&e.start(n,f,c,t.start,t.end)}(b),xs(b.tagName,t)&&u(1),"continue"}var _=void 0,x=void 0,k=void 0;if(h>=0){for(x=t.slice(h);!(fs.test(x)||us.test(x)||hs.test(x)||ms.test(x)||(k=x.indexOf("<",1))<0);)h+=k,x=t.slice(h);_=t.substring(0,h)}h<0&&(_=t),_&&u(_.length),e.chars&&_&&e.chars(_,l-_.length,l)}if(t===n)return e.chars&&e.chars(t),"break"};t;){if("break"===c())break}function u(e){l+=e,t=t.substring(e)}function d(t,n,o){var s,a;if(null==n&&(n=l),null==o&&(o=l),t)for(a=t.toLowerCase(),s=i.length-1;s>=0&&i[s].lowerCasedTag!==a;s--);else s=0;if(s>=0){for(var c=i.length-1;c>=s;c--)e.end&&e.end(i[c].tag,n,o);i.length=s,r=s&&i[s-1].tag}else"br"===a?e.start&&e.start(t,[],!0,n,o):"p"===a&&(e.start&&e.start(t,[],!1,n,o),e.end&&e.end(t,n,o))}d()}var Cs,Os,Ts,Es,js,As,Ps,Ms,Is=/^@|^v-on:/,Ls=/^v-|^@|^:|^#/,$s=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Ds=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Ns=/^\(|\)$/g,Fs=/^\[.*\]$/,Bs=/:(.*)$/,Rs=/^:|^\.|^v-bind:/,zs=/\.[^.\]]+(?=[^\]]*$)/g,Us=/^v-slot(:|$)|^#/,Vs=/[\r\n]/,Hs=/[ \f\t\r\n]+/g,qs=k(ns),Ws="_empty_";function Zs(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:ta(e),rawAttrsMap:{},parent:n,children:[]}}function Ys(t,e){Cs=e.warn||ci,As=e.isPreTag||L,Ps=e.mustUseProp||L,Ms=e.getTagNamespace||L;var n=e.isReservedTag||L;(function(t){return!(!(t.component||t.attrsMap[":is"]||t.attrsMap["v-bind:is"])&&(t.attrsMap.is?n(t.attrsMap.is):n(t.tag)))}),Ts=ui(e.modules,"transformNode"),Es=ui(e.modules,"preTransformNode"),js=ui(e.modules,"postTransformNode"),Os=e.delimiters;var r,i,o=[],s=!1!==e.preserveWhitespace,a=e.whitespace,l=!1,c=!1;function u(t){if(d(t),l||t.processed||(t=Gs(t,e)),o.length||t===r||r.if&&(t.elseif||t.else)&&Ks(r,{exp:t.elseif,block:t}),i&&!t.forbidden)if(t.elseif||t.else)s=t,a=function(t){for(var e=t.length;e--;){if(1===t[e].type)return t[e];t.pop()}}(i.children),a&&a.if&&Ks(a,{exp:s.elseif,block:s});else{if(t.slotScope){var n=t.slotTarget||'"default"';(i.scopedSlots||(i.scopedSlots={}))[n]=t}i.children.push(t),t.parent=i}var s,a;t.children=t.children.filter((function(t){return!t.slotScope})),d(t),t.pre&&(l=!1),As(t.tag)&&(c=!1);for(var u=0;u<js.length;u++)js[u](t,e)}function d(t){if(!c)for(var e=void 0;(e=t.children[t.children.length-1])&&3===e.type&&" "===e.text;)t.children.pop()}return Ss(t,{warn:Cs,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,outputSourceRange:e.outputSourceRange,start:function(t,n,s,a,d){var f=i&&i.ns||Ms(t);K&&"svg"===f&&(n=function(t){for(var e=[],n=0;n<t.length;n++){var r=t[n];ea.test(r.name)||(r.name=r.name.replace(na,""),e.push(r))}return e}(n));var p,h=Zs(t,n,i);f&&(h.ns=f),"style"!==(p=h).tag&&("script"!==p.tag||p.attrsMap.type&&"text/javascript"!==p.attrsMap.type)||st()||(h.forbidden=!0);for(var m=0;m<Es.length;m++)h=Es[m](h,e)||h;l||(!function(t){null!=wi(t,"v-pre")&&(t.pre=!0)}(h),h.pre&&(l=!0)),As(h.tag)&&(c=!0),l?function(t){var e=t.attrsList,n=e.length;if(n)for(var r=t.attrs=new Array(n),i=0;i<n;i++)r[i]={name:e[i].name,value:JSON.stringify(e[i].value)},null!=e[i].start&&(r[i].start=e[i].start,r[i].end=e[i].end);else t.pre||(t.plain=!0)}(h):h.processed||(Js(h),function(t){var e=wi(t,"v-if");if(e)t.if=e,Ks(t,{exp:e,block:t});else{null!=wi(t,"v-else")&&(t.else=!0);var n=wi(t,"v-else-if");n&&(t.elseif=n)}}(h),function(t){var e=wi(t,"v-once");null!=e&&(t.once=!0)}(h)),r||(r=h),s?u(h):(i=h,o.push(h))},end:function(t,e,n){var r=o[o.length-1];o.length-=1,i=o[o.length-1],u(r)},chars:function(t,e,n){if(i&&(!K||"textarea"!==i.tag||i.attrsMap.placeholder!==t)){var r,o=i.children;if(t=c||t.trim()?"script"===(r=i).tag||"style"===r.tag?t:qs(t):o.length?a?"condense"===a&&Vs.test(t)?"":" ":s?" ":"":""){c||"condense"!==a||(t=t.replace(Hs," "));var u=void 0,d=void 0;!l&&" "!==t&&(u=function(t,e){var n=e?Xo(e):Jo;if(n.test(t)){for(var r,i,o,s=[],a=[],l=n.lastIndex=0;r=n.exec(t);){(i=r.index)>l&&(a.push(o=t.slice(l,i)),s.push(JSON.stringify(o)));var c=ai(r[1].trim());s.push("_s(".concat(c,")")),a.push({"@binding":c}),l=i+r[0].length}return l<t.length&&(a.push(o=t.slice(l)),s.push(JSON.stringify(o))),{expression:s.join("+"),tokens:a}}}(t,Os))?d={type:2,expression:u.expression,tokens:u.tokens,text:t}:" "===t&&o.length&&" "===o[o.length-1].text||(d={type:3,text:t}),d&&o.push(d)}}},comment:function(t,e,n){if(i){var r={type:3,text:t,isComment:!0};0,i.children.push(r)}}}),r}function Gs(t,e){var n;!function(t){var e=vi(t,"key");if(e){t.key=e}}(t),t.plain=!t.key&&!t.scopedSlots&&!t.attrsList.length,function(t){var e=vi(t,"ref");e&&(t.ref=e,t.refInFor=function(t){var e=t;for(;e;){if(void 0!==e.for)return!0;e=e.parent}return!1}(t))}(t),function(t){var e;"template"===t.tag?(e=wi(t,"scope"),t.slotScope=e||wi(t,"slot-scope")):(e=wi(t,"slot-scope"))&&(t.slotScope=e);var n=vi(t,"slot");n&&(t.slotTarget='""'===n?'"default"':n,t.slotTargetDynamic=!(!t.attrsMap[":slot"]&&!t.attrsMap["v-bind:slot"]),"template"===t.tag||t.slotScope||fi(t,"slot",n,function(t,e){return t.rawAttrsMap[":"+e]||t.rawAttrsMap["v-bind:"+e]||t.rawAttrsMap[e]}(t,"slot")));if("template"===t.tag){if(s=yi(t,Us)){0;var r=Xs(s),i=r.name,o=r.dynamic;t.slotTarget=i,t.slotTargetDynamic=o,t.slotScope=s.value||Ws}}else{var s;if(s=yi(t,Us)){0;var a=t.scopedSlots||(t.scopedSlots={}),l=Xs(s),c=l.name,u=(o=l.dynamic,a[c]=Zs("template",[],t));u.slotTarget=c,u.slotTargetDynamic=o,u.children=t.children.filter((function(t){if(!t.slotScope)return t.parent=u,!0})),u.slotScope=s.value||Ws,t.children=[],t.plain=!1}}}(t),"slot"===(n=t).tag&&(n.slotName=vi(n,"name")),function(t){var e;(e=vi(t,"is"))&&(t.component=e);null!=wi(t,"inline-template")&&(t.inlineTemplate=!0)}(t);for(var r=0;r<Ts.length;r++)t=Ts[r](t,e)||t;return function(t){var e,n,r,i,o,s,a,l,c=t.attrsList;for(e=0,n=c.length;e<n;e++){if(r=i=c[e].name,o=c[e].value,Ls.test(r))if(t.hasBindings=!0,(s=Qs(r.replace(Ls,"")))&&(r=r.replace(zs,"")),Rs.test(r))r=r.replace(Rs,""),o=ai(o),(l=Fs.test(r))&&(r=r.slice(1,-1)),s&&(s.prop&&!l&&"innerHtml"===(r=C(r))&&(r="innerHTML"),s.camel&&!l&&(r=C(r)),s.sync&&(a=xi(o,"$event"),l?gi(t,'"update:"+('.concat(r,")"),a,null,!1,0,c[e],!0):(gi(t,"update:".concat(C(r)),a,null,!1,0,c[e]),E(r)!==C(r)&&gi(t,"update:".concat(E(r)),a,null,!1,0,c[e])))),s&&s.prop||!t.component&&Ps(t.tag,t.attrsMap.type,r)?di(t,r,o,c[e],l):fi(t,r,o,c[e],l);else if(Is.test(r))r=r.replace(Is,""),(l=Fs.test(r))&&(r=r.slice(1,-1)),gi(t,r,o,s,!1,0,c[e],l);else{var u=(r=r.replace(Ls,"")).match(Bs),d=u&&u[1];l=!1,d&&(r=r.slice(0,-(d.length+1)),Fs.test(d)&&(d=d.slice(1,-1),l=!0)),hi(t,r,i,o,d,l,s,c[e])}else fi(t,r,JSON.stringify(o),c[e]),!t.component&&"muted"===r&&Ps(t.tag,t.attrsMap.type,r)&&di(t,r,"true",c[e])}}(t),t}function Js(t){var e;if(e=wi(t,"v-for")){var n=function(t){var e=t.match($s);if(!e)return;var n={};n.for=e[2].trim();var r=e[1].trim().replace(Ns,""),i=r.match(Ds);i?(n.alias=r.replace(Ds,"").trim(),n.iterator1=i[1].trim(),i[2]&&(n.iterator2=i[2].trim())):n.alias=r;return n}(e);n&&P(t,n)}}function Ks(t,e){t.ifConditions||(t.ifConditions=[]),t.ifConditions.push(e)}function Xs(t){var e=t.name.replace(Us,"");return e||"#"!==t.name[0]&&(e="default"),Fs.test(e)?{name:e.slice(1,-1),dynamic:!0}:{name:'"'.concat(e,'"'),dynamic:!1}}function Qs(t){var e=t.match(zs);if(e){var n={};return e.forEach((function(t){n[t.slice(1)]=!0})),n}}function ta(t){for(var e={},n=0,r=t.length;n<r;n++)e[t[n].name]=t[n].value;return e}var ea=/^xmlns:NS\d+/,na=/^NS\d+:/;function ra(t){return Zs(t.tag,t.attrsList.slice(),t.parent)}var ia={preTransformNode:function(t,e){if("input"===t.tag){var n=t.attrsMap;if(!n["v-model"])return;var r=void 0;if((n[":type"]||n["v-bind:type"])&&(r=vi(t,"type")),n.type||r||!n["v-bind"]||(r="(".concat(n["v-bind"],").type")),r){var i=wi(t,"v-if",!0),o=i?"&&(".concat(i,")"):"",s=null!=wi(t,"v-else",!0),a=wi(t,"v-else-if",!0),l=ra(t);Js(l),pi(l,"type","checkbox"),Gs(l,e),l.processed=!0,l.if="(".concat(r,")==='checkbox'")+o,Ks(l,{exp:l.if,block:l});var c=ra(t);wi(c,"v-for",!0),pi(c,"type","radio"),Gs(c,e),Ks(l,{exp:"(".concat(r,")==='radio'")+o,block:c});var u=ra(t);return wi(u,"v-for",!0),pi(u,":type",r),Gs(u,e),Ks(l,{exp:i,block:u}),s?l.else=!0:a&&(l.elseif=a),l}}}},oa=[Qo,es,ia];var sa,aa,la={model:function(t,e,n){n;var r=e.value,i=e.modifiers,o=t.tag,s=t.attrsMap.type;if(t.component)return _i(t,r,i),!1;if("select"===o)!function(t,e,n){var r=n&&n.number,i='Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;'+"return ".concat(r?"_n(val)":"val","})"),o="$event.target.multiple ? $$selectedVal : $$selectedVal[0]",s="var $$selectedVal = ".concat(i,";");s="".concat(s," ").concat(xi(e,o)),gi(t,"change",s,null,!0)}(t,r,i);else if("input"===o&&"checkbox"===s)!function(t,e,n){var r=n&&n.number,i=vi(t,"value")||"null",o=vi(t,"true-value")||"true",s=vi(t,"false-value")||"false";di(t,"checked","Array.isArray(".concat(e,")")+"?_i(".concat(e,",").concat(i,")>-1")+("true"===o?":(".concat(e,")"):":_q(".concat(e,",").concat(o,")"))),gi(t,"change","var $$a=".concat(e,",")+"$$el=$event.target,"+"$$c=$$el.checked?(".concat(o,"):(").concat(s,");")+"if(Array.isArray($$a)){"+"var $$v=".concat(r?"_n("+i+")":i,",")+"$$i=_i($$a,$$v);"+"if($$el.checked){$$i<0&&(".concat(xi(e,"$$a.concat([$$v])"),")}")+"else{$$i>-1&&(".concat(xi(e,"$$a.slice(0,$$i).concat($$a.slice($$i+1))"),")}")+"}else{".concat(xi(e,"$$c"),"}"),null,!0)}(t,r,i);else if("input"===o&&"radio"===s)!function(t,e,n){var r=n&&n.number,i=vi(t,"value")||"null";i=r?"_n(".concat(i,")"):i,di(t,"checked","_q(".concat(e,",").concat(i,")")),gi(t,"change",xi(e,i),null,!0)}(t,r,i);else if("input"===o||"textarea"===o)!function(t,e,n){var r=t.attrsMap.type;0;var i=n||{},o=i.lazy,s=i.number,a=i.trim,l=!o&&"range"!==r,c=o?"change":"range"===r?ji:"input",u="$event.target.value";a&&(u="$event.target.value.trim()");s&&(u="_n(".concat(u,")"));var d=xi(e,u);l&&(d="if($event.target.composing)return;".concat(d));di(t,"value","(".concat(e,")")),gi(t,c,d,null,!0),(a||s)&&gi(t,"blur","$forceUpdate()")}(t,r,i);else{if(!V.isReservedTag(o))return _i(t,r,i),!1}return!0},text:function(t,e){e.value&&di(t,"textContent","_s(".concat(e.value,")"),e)},html:function(t,e){e.value&&di(t,"innerHTML","_s(".concat(e.value,")"),e)}},ca={expectHTML:!0,modules:oa,directives:la,isPreTag:function(t){return"pre"===t},isUnaryTag:rs,mustUseProp:fr,canBeLeftOpenTag:is,isReservedTag:Er,getTagNamespace:jr,staticKeys:function(t){return t.reduce((function(t,e){return t.concat(e.staticKeys||[])}),[]).join(",")}(oa)},ua=k((function(t){return v("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(t?","+t:""))}));function da(t,e){t&&(sa=ua(e.staticKeys||""),aa=e.isReservedTag||L,fa(t),pa(t,!1))}function fa(t){if(t.static=function(t){if(2===t.type)return!1;if(3===t.type)return!0;return!(!t.pre&&(t.hasBindings||t.if||t.for||w(t.tag)||!aa(t.tag)||function(t){for(;t.parent;){if("template"!==(t=t.parent).tag)return!1;if(t.for)return!0}return!1}(t)||!Object.keys(t).every(sa)))}(t),1===t.type){if(!aa(t.tag)&&"slot"!==t.tag&&null==t.attrsMap["inline-template"])return;for(var e=0,n=t.children.length;e<n;e++){var r=t.children[e];fa(r),r.static||(t.static=!1)}if(t.ifConditions)for(e=1,n=t.ifConditions.length;e<n;e++){var i=t.ifConditions[e].block;fa(i),i.static||(t.static=!1)}}}function pa(t,e){if(1===t.type){if((t.static||t.once)&&(t.staticInFor=e),t.static&&t.children.length&&(1!==t.children.length||3!==t.children[0].type))return void(t.staticRoot=!0);if(t.staticRoot=!1,t.children)for(var n=0,r=t.children.length;n<r;n++)pa(t.children[n],e||!!t.for);if(t.ifConditions)for(n=1,r=t.ifConditions.length;n<r;n++)pa(t.ifConditions[n].block,e)}}var ha=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,ma=/\([^)]*?\);*$/,ga=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,va={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},wa={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},ya=function(t){return"if(".concat(t,")return null;")},ba={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:ya("$event.target !== $event.currentTarget"),ctrl:ya("!$event.ctrlKey"),shift:ya("!$event.shiftKey"),alt:ya("!$event.altKey"),meta:ya("!$event.metaKey"),left:ya("'button' in $event && $event.button !== 0"),middle:ya("'button' in $event && $event.button !== 1"),right:ya("'button' in $event && $event.button !== 2")};function _a(t,e){var n=e?"nativeOn:":"on:",r="",i="";for(var o in t){var s=xa(t[o]);t[o]&&t[o].dynamic?i+="".concat(o,",").concat(s,","):r+='"'.concat(o,'":').concat(s,",")}return r="{".concat(r.slice(0,-1),"}"),i?n+"_d(".concat(r,",[").concat(i.slice(0,-1),"])"):n+r}function xa(t){if(!t)return"function(){}";if(Array.isArray(t))return"[".concat(t.map((function(t){return xa(t)})).join(","),"]");var e=ga.test(t.value),n=ha.test(t.value),r=ga.test(t.value.replace(ma,""));if(t.modifiers){var i="",o="",s=[],a=function(e){if(ba[e])o+=ba[e],va[e]&&s.push(e);else if("exact"===e){var n=t.modifiers;o+=ya(["ctrl","shift","alt","meta"].filter((function(t){return!n[t]})).map((function(t){return"$event.".concat(t,"Key")})).join("||"))}else s.push(e)};for(var l in t.modifiers)a(l);s.length&&(i+=function(t){return"if(!$event.type.indexOf('key')&&"+"".concat(t.map(ka).join("&&"),")return null;")}(s)),o&&(i+=o);var c=e?"return ".concat(t.value,".apply(null, arguments)"):n?"return (".concat(t.value,").apply(null, arguments)"):r?"return ".concat(t.value):t.value;return"function($event){".concat(i).concat(c,"}")}return e||n?t.value:"function($event){".concat(r?"return ".concat(t.value):t.value,"}")}function ka(t){var e=parseInt(t,10);if(e)return"$event.keyCode!==".concat(e);var n=va[t],r=wa[t];return"_k($event.keyCode,"+"".concat(JSON.stringify(t),",")+"".concat(JSON.stringify(n),",")+"$event.key,"+"".concat(JSON.stringify(r))+")"}var Sa={on:function(t,e){t.wrapListeners=function(t){return"_g(".concat(t,",").concat(e.value,")")}},bind:function(t,e){t.wrapData=function(n){return"_b(".concat(n,",'").concat(t.tag,"',").concat(e.value,",").concat(e.modifiers&&e.modifiers.prop?"true":"false").concat(e.modifiers&&e.modifiers.sync?",true":"",")")}},cloak:I},Ca=function(t){this.options=t,this.warn=t.warn||ci,this.transforms=ui(t.modules,"transformCode"),this.dataGenFns=ui(t.modules,"genData"),this.directives=P(P({},Sa),t.directives);var e=t.isReservedTag||L;this.maybeComponent=function(t){return!!t.component||!e(t.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Oa(t,e){var n=new Ca(e),r=t?"script"===t.tag?"null":Ta(t,n):'_c("div")';return{render:"with(this){return ".concat(r,"}"),staticRenderFns:n.staticRenderFns}}function Ta(t,e){if(t.parent&&(t.pre=t.pre||t.parent.pre),t.staticRoot&&!t.staticProcessed)return Ea(t,e);if(t.once&&!t.onceProcessed)return ja(t,e);if(t.for&&!t.forProcessed)return Ma(t,e);if(t.if&&!t.ifProcessed)return Aa(t,e);if("template"!==t.tag||t.slotTarget||e.pre){if("slot"===t.tag)return function(t,e){var n=t.slotName||'"default"',r=Da(t,e),i="_t(".concat(n).concat(r?",function(){return ".concat(r,"}"):""),o=t.attrs||t.dynamicAttrs?Ba((t.attrs||[]).concat(t.dynamicAttrs||[]).map((function(t){return{name:C(t.name),value:t.value,dynamic:t.dynamic}}))):null,s=t.attrsMap["v-bind"];!o&&!s||r||(i+=",null");o&&(i+=",".concat(o));s&&(i+="".concat(o?"":",null",",").concat(s));return i+")"}(t,e);var n=void 0;if(t.component)n=function(t,e,n){var r=e.inlineTemplate?null:Da(e,n,!0);return"_c(".concat(t,",").concat(Ia(e,n)).concat(r?",".concat(r):"",")")}(t.component,t,e);else{var r=void 0,i=e.maybeComponent(t);(!t.plain||t.pre&&i)&&(r=Ia(t,e));var o=void 0,s=e.options.bindings;i&&s&&!1!==s.__isScriptSetup&&(o=function(t,e){var n=C(e),r=O(n),i=function(i){return t[e]===i?e:t[n]===i?n:t[r]===i?r:void 0},o=i("setup-const")||i("setup-reactive-const");if(o)return o;var s=i("setup-let")||i("setup-ref")||i("setup-maybe-ref");if(s)return s}(s,t.tag)),o||(o="'".concat(t.tag,"'"));var a=t.inlineTemplate?null:Da(t,e,!0);n="_c(".concat(o).concat(r?",".concat(r):"").concat(a?",".concat(a):"",")")}for(var l=0;l<e.transforms.length;l++)n=e.transforms[l](t,n);return n}return Da(t,e)||"void 0"}function Ea(t,e){t.staticProcessed=!0;var n=e.pre;return t.pre&&(e.pre=t.pre),e.staticRenderFns.push("with(this){return ".concat(Ta(t,e),"}")),e.pre=n,"_m(".concat(e.staticRenderFns.length-1).concat(t.staticInFor?",true":"",")")}function ja(t,e){if(t.onceProcessed=!0,t.if&&!t.ifProcessed)return Aa(t,e);if(t.staticInFor){for(var n="",r=t.parent;r;){if(r.for){n=r.key;break}r=r.parent}return n?"_o(".concat(Ta(t,e),",").concat(e.onceId++,",").concat(n,")"):Ta(t,e)}return Ea(t,e)}function Aa(t,e,n,r){return t.ifProcessed=!0,Pa(t.ifConditions.slice(),e,n,r)}function Pa(t,e,n,r){if(!t.length)return r||"_e()";var i=t.shift();return i.exp?"(".concat(i.exp,")?").concat(o(i.block),":").concat(Pa(t,e,n,r)):"".concat(o(i.block));function o(t){return n?n(t,e):t.once?ja(t,e):Ta(t,e)}}function Ma(t,e,n,r){var i=t.for,o=t.alias,s=t.iterator1?",".concat(t.iterator1):"",a=t.iterator2?",".concat(t.iterator2):"";return t.forProcessed=!0,"".concat(r||"_l","((").concat(i,"),")+"function(".concat(o).concat(s).concat(a,"){")+"return ".concat((n||Ta)(t,e))+"})"}function Ia(t,e){var n="{",r=function(t,e){var n=t.directives;if(!n)return;var r,i,o,s,a="directives:[",l=!1;for(r=0,i=n.length;r<i;r++){o=n[r],s=!0;var c=e.directives[o.name];c&&(s=!!c(t,o,e.warn)),s&&(l=!0,a+='{name:"'.concat(o.name,'",rawName:"').concat(o.rawName,'"').concat(o.value?",value:(".concat(o.value,"),expression:").concat(JSON.stringify(o.value)):"").concat(o.arg?",arg:".concat(o.isDynamicArg?o.arg:'"'.concat(o.arg,'"')):"").concat(o.modifiers?",modifiers:".concat(JSON.stringify(o.modifiers)):"","},"))}if(l)return a.slice(0,-1)+"]"}(t,e);r&&(n+=r+","),t.key&&(n+="key:".concat(t.key,",")),t.ref&&(n+="ref:".concat(t.ref,",")),t.refInFor&&(n+="refInFor:true,"),t.pre&&(n+="pre:true,"),t.component&&(n+='tag:"'.concat(t.tag,'",'));for(var i=0;i<e.dataGenFns.length;i++)n+=e.dataGenFns[i](t);if(t.attrs&&(n+="attrs:".concat(Ba(t.attrs),",")),t.props&&(n+="domProps:".concat(Ba(t.props),",")),t.events&&(n+="".concat(_a(t.events,!1),",")),t.nativeEvents&&(n+="".concat(_a(t.nativeEvents,!0),",")),t.slotTarget&&!t.slotScope&&(n+="slot:".concat(t.slotTarget,",")),t.scopedSlots&&(n+="".concat(function(t,e,n){var r=t.for||Object.keys(e).some((function(t){var n=e[t];return n.slotTargetDynamic||n.if||n.for||La(n)})),i=!!t.if;if(!r)for(var o=t.parent;o;){if(o.slotScope&&o.slotScope!==Ws||o.for){r=!0;break}o.if&&(i=!0),o=o.parent}var s=Object.keys(e).map((function(t){return $a(e[t],n)})).join(",");return"scopedSlots:_u([".concat(s,"]").concat(r?",null,true":"").concat(!r&&i?",null,false,".concat(function(t){var e=5381,n=t.length;for(;n;)e=33*e^t.charCodeAt(--n);return e>>>0}(s)):"",")")}(t,t.scopedSlots,e),",")),t.model&&(n+="model:{value:".concat(t.model.value,",callback:").concat(t.model.callback,",expression:").concat(t.model.expression,"},")),t.inlineTemplate){var o=function(t,e){var n=t.children[0];0;if(n&&1===n.type){var r=Oa(n,e.options);return"inlineTemplate:{render:function(){".concat(r.render,"},staticRenderFns:[").concat(r.staticRenderFns.map((function(t){return"function(){".concat(t,"}")})).join(","),"]}")}}(t,e);o&&(n+="".concat(o,","))}return n=n.replace(/,$/,"")+"}",t.dynamicAttrs&&(n="_b(".concat(n,',"').concat(t.tag,'",').concat(Ba(t.dynamicAttrs),")")),t.wrapData&&(n=t.wrapData(n)),t.wrapListeners&&(n=t.wrapListeners(n)),n}function La(t){return 1===t.type&&("slot"===t.tag||t.children.some(La))}function $a(t,e){var n=t.attrsMap["slot-scope"];if(t.if&&!t.ifProcessed&&!n)return Aa(t,e,$a,"null");if(t.for&&!t.forProcessed)return Ma(t,e,$a);var r=t.slotScope===Ws?"":String(t.slotScope),i="function(".concat(r,"){")+"return ".concat("template"===t.tag?t.if&&n?"(".concat(t.if,")?").concat(Da(t,e)||"undefined",":undefined"):Da(t,e)||"undefined":Ta(t,e),"}"),o=r?"":",proxy:true";return"{key:".concat(t.slotTarget||'"default"',",fn:").concat(i).concat(o,"}")}function Da(t,e,n,r,i){var o=t.children;if(o.length){var s=o[0];if(1===o.length&&s.for&&"template"!==s.tag&&"slot"!==s.tag){var a=n?e.maybeComponent(s)?",1":",0":"";return"".concat((r||Ta)(s,e)).concat(a)}var l=n?function(t,e){for(var n=0,r=0;r<t.length;r++){var i=t[r];if(1===i.type){if(Na(i)||i.ifConditions&&i.ifConditions.some((function(t){return Na(t.block)}))){n=2;break}(e(i)||i.ifConditions&&i.ifConditions.some((function(t){return e(t.block)})))&&(n=1)}}return n}(o,e.maybeComponent):0,c=i||Fa;return"[".concat(o.map((function(t){return c(t,e)})).join(","),"]").concat(l?",".concat(l):"")}}function Na(t){return void 0!==t.for||"template"===t.tag||"slot"===t.tag}function Fa(t,e){return 1===t.type?Ta(t,e):3===t.type&&t.isComment?function(t){return"_e(".concat(JSON.stringify(t.text),")")}(t):"_v(".concat(2===(n=t).type?n.expression:Ra(JSON.stringify(n.text)),")");var n}function Ba(t){for(var e="",n="",r=0;r<t.length;r++){var i=t[r],o=Ra(i.value);i.dynamic?n+="".concat(i.name,",").concat(o,","):e+='"'.concat(i.name,'":').concat(o,",")}return e="{".concat(e.slice(0,-1),"}"),n?"_d(".concat(e,",[").concat(n.slice(0,-1),"])"):e}function Ra(t){return t.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)");function za(t,e){try{return new Function(t)}catch(n){return e.push({err:n,code:t}),I}}function Ua(t){var e=Object.create(null);return function(n,r,i){(r=P({},r)).warn;delete r.warn;var o=r.delimiters?String(r.delimiters)+n:n;if(e[o])return e[o];var s=t(n,r);var a={},l=[];return a.render=za(s.render,l),a.staticRenderFns=s.staticRenderFns.map((function(t){return za(t,l)})),e[o]=a}}var Va,Ha,qa=(Va=function(t,e){var n=Ys(t.trim(),e);!1!==e.optimize&&da(n,e);var r=Oa(n,e);return{ast:n,render:r.render,staticRenderFns:r.staticRenderFns}},function(t){function e(e,n){var r=Object.create(t),i=[],o=[];if(n)for(var s in n.modules&&(r.modules=(t.modules||[]).concat(n.modules)),n.directives&&(r.directives=P(Object.create(t.directives||null),n.directives)),n)"modules"!==s&&"directives"!==s&&(r[s]=n[s]);r.warn=function(t,e,n){(n?o:i).push(t)};var a=Va(e.trim(),r);return a.errors=i,a.tips=o,a}return{compile:e,compileToFunctions:Ua(e)}}),Wa=qa(ca).compileToFunctions;function Za(t){return(Ha=Ha||document.createElement("div")).innerHTML=t?'<a href="\n"/>':'<div a="\n"/>',Ha.innerHTML.indexOf("&#10;")>0}var Ya=!!G&&Za(!1),Ga=!!G&&Za(!0),Ja=k((function(t){var e=Mr(t);return e&&e.innerHTML})),Ka=er.prototype.$mount;function Xa(t,e){return function(){return t.apply(e,arguments)}}er.prototype.$mount=function(t,e){if((t=t&&Mr(t))===document.body||t===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if("string"==typeof r)"#"===r.charAt(0)&&(r=Ja(r));else{if(!r.nodeType)return this;r=r.innerHTML}else t&&(r=function(t){if(t.outerHTML)return t.outerHTML;var e=document.createElement("div");return e.appendChild(t.cloneNode(!0)),e.innerHTML}(t));if(r){0;var i=Wa(r,{outputSourceRange:!1,shouldDecodeNewlines:Ya,shouldDecodeNewlinesForHref:Ga,delimiters:n.delimiters,comments:n.comments},this),o=i.render,s=i.staticRenderFns;n.render=o,n.staticRenderFns=s}}return Ka.call(this,t,e)},er.compile=Wa;const{toString:Qa}=Object.prototype,{getPrototypeOf:tl}=Object,el=(nl=Object.create(null),t=>{const e=Qa.call(t);return nl[e]||(nl[e]=e.slice(8,-1).toLowerCase())});var nl;const rl=t=>(t=t.toLowerCase(),e=>el(e)===t),il=t=>e=>typeof e===t,{isArray:ol}=Array,sl=il("undefined");const al=rl("ArrayBuffer");const ll=il("string"),cl=il("function"),ul=il("number"),dl=t=>null!==t&&"object"==typeof t,fl=t=>{if("object"!==el(t))return!1;const e=tl(t);return!(null!==e&&e!==Object.prototype&&null!==Object.getPrototypeOf(e)||Symbol.toStringTag in t||Symbol.iterator in t)},pl=rl("Date"),hl=rl("File"),ml=rl("Blob"),gl=rl("FileList"),vl=rl("URLSearchParams");function wl(t,e,{allOwnKeys:n=!1}={}){if(null==t)return;let r,i;if("object"!=typeof t&&(t=[t]),ol(t))for(r=0,i=t.length;r<i;r++)e.call(null,t[r],r,t);else{const i=n?Object.getOwnPropertyNames(t):Object.keys(t),o=i.length;let s;for(r=0;r<o;r++)s=i[r],e.call(null,t[s],s,t)}}function yl(t,e){e=e.toLowerCase();const n=Object.keys(t);let r,i=n.length;for(;i-- >0;)if(r=n[i],e===r.toLowerCase())return r;return null}const bl="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,_l=t=>!sl(t)&&t!==bl;const xl=(kl="undefined"!=typeof Uint8Array&&tl(Uint8Array),t=>kl&&t instanceof kl);var kl;const Sl=rl("HTMLFormElement"),Cl=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Ol=rl("RegExp"),Tl=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};wl(n,((n,i)=>{let o;!1!==(o=e(n,i,t))&&(r[i]=o||n)})),Object.defineProperties(t,r)},El="abcdefghijklmnopqrstuvwxyz",jl="0123456789",Al={DIGIT:jl,ALPHA:El,ALPHA_DIGIT:El+El.toUpperCase()+jl};const Pl=rl("AsyncFunction");var Ml={isArray:ol,isArrayBuffer:al,isBuffer:function(t){return null!==t&&!sl(t)&&null!==t.constructor&&!sl(t.constructor)&&cl(t.constructor.isBuffer)&&t.constructor.isBuffer(t)},isFormData:t=>{let e;return t&&("function"==typeof FormData&&t instanceof FormData||cl(t.append)&&("formdata"===(e=el(t))||"object"===e&&cl(t.toString)&&"[object FormData]"===t.toString()))},isArrayBufferView:function(t){let e;return e="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&al(t.buffer),e},isString:ll,isNumber:ul,isBoolean:t=>!0===t||!1===t,isObject:dl,isPlainObject:fl,isUndefined:sl,isDate:pl,isFile:hl,isBlob:ml,isRegExp:Ol,isFunction:cl,isStream:t=>dl(t)&&cl(t.pipe),isURLSearchParams:vl,isTypedArray:xl,isFileList:gl,forEach:wl,merge:function t(){const{caseless:e}=_l(this)&&this||{},n={},r=(r,i)=>{const o=e&&yl(n,i)||i;fl(n[o])&&fl(r)?n[o]=t(n[o],r):fl(r)?n[o]=t({},r):ol(r)?n[o]=r.slice():n[o]=r};for(let t=0,e=arguments.length;t<e;t++)arguments[t]&&wl(arguments[t],r);return n},extend:(t,e,n,{allOwnKeys:r}={})=>(wl(e,((e,r)=>{n&&cl(e)?t[r]=Xa(e,n):t[r]=e}),{allOwnKeys:r}),t),trim:t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:t=>(65279===t.charCodeAt(0)&&(t=t.slice(1)),t),inherits:(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},toFlatObject:(t,e,n,r)=>{let i,o,s;const a={};if(e=e||{},null==t)return e;do{for(i=Object.getOwnPropertyNames(t),o=i.length;o-- >0;)s=i[o],r&&!r(s,t,e)||a[s]||(e[s]=t[s],a[s]=!0);t=!1!==n&&tl(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},kindOf:el,kindOfTest:rl,endsWith:(t,e,n)=>{t=String(t),(void 0===n||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return-1!==r&&r===n},toArray:t=>{if(!t)return null;if(ol(t))return t;let e=t.length;if(!ul(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},forEachEntry:(t,e)=>{const n=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=n.next())&&!r.done;){const n=r.value;e.call(t,n[0],n[1])}},matchAll:(t,e)=>{let n;const r=[];for(;null!==(n=t.exec(e));)r.push(n);return r},isHTMLForm:Sl,hasOwnProperty:Cl,hasOwnProp:Cl,reduceDescriptors:Tl,freezeMethods:t=>{Tl(t,((e,n)=>{if(cl(t)&&-1!==["arguments","caller","callee"].indexOf(n))return!1;const r=t[n];cl(r)&&(e.enumerable=!1,"writable"in e?e.writable=!1:e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")}))}))},toObjectSet:(t,e)=>{const n={},r=t=>{t.forEach((t=>{n[t]=!0}))};return ol(t)?r(t):r(String(t).split(e)),n},toCamelCase:t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(t,e,n){return e.toUpperCase()+n})),noop:()=>{},toFiniteNumber:(t,e)=>(t=+t,Number.isFinite(t)?t:e),findKey:yl,global:bl,isContextDefined:_l,ALPHABET:Al,generateString:(t=16,e=Al.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n},isSpecCompliantForm:function(t){return!!(t&&cl(t.append)&&"FormData"===t[Symbol.toStringTag]&&t[Symbol.iterator])},toJSONObject:t=>{const e=new Array(10),n=(t,r)=>{if(dl(t)){if(e.indexOf(t)>=0)return;if(!("toJSON"in t)){e[r]=t;const i=ol(t)?[]:{};return wl(t,((t,e)=>{const o=n(t,r+1);!sl(o)&&(i[e]=o)})),e[r]=void 0,i}}return t};return n(t,0)},isAsyncFn:Pl,isThenable:t=>t&&(dl(t)||cl(t))&&cl(t.then)&&cl(t.catch)};function Il(t,e,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i)}Ml.inherits(Il,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:Ml.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ll=Il.prototype,$l={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((t=>{$l[t]={value:t}})),Object.defineProperties(Il,$l),Object.defineProperty(Ll,"isAxiosError",{value:!0}),Il.from=(t,e,n,r,i,o)=>{const s=Object.create(Ll);return Ml.toFlatObject(t,s,(function(t){return t!==Error.prototype}),(t=>"isAxiosError"!==t)),Il.call(s,t.message,e,n,r,i),s.cause=t,s.name=t.name,o&&Object.assign(s,o),s};var Dl=Il,Nl=null,Fl=n(8764).lW;function Bl(t){return Ml.isPlainObject(t)||Ml.isArray(t)}function Rl(t){return Ml.endsWith(t,"[]")?t.slice(0,-2):t}function zl(t,e,n){return t?t.concat(e).map((function(t,e){return t=Rl(t),!n&&e?"["+t+"]":t})).join(n?".":""):e}const Ul=Ml.toFlatObject(Ml,{},null,(function(t){return/^is[A-Z]/.test(t)}));var Vl=function(t,e,n){if(!Ml.isObject(t))throw new TypeError("target must be an object");e=e||new(Nl||FormData);const r=(n=Ml.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(t,e){return!Ml.isUndefined(e[t])}))).metaTokens,i=n.visitor||c,o=n.dots,s=n.indexes,a=(n.Blob||"undefined"!=typeof Blob&&Blob)&&Ml.isSpecCompliantForm(e);if(!Ml.isFunction(i))throw new TypeError("visitor must be a function");function l(t){if(null===t)return"";if(Ml.isDate(t))return t.toISOString();if(!a&&Ml.isBlob(t))throw new Dl("Blob is not supported. Use a Buffer instead.");return Ml.isArrayBuffer(t)||Ml.isTypedArray(t)?a&&"function"==typeof Blob?new Blob([t]):Fl.from(t):t}function c(t,n,i){let a=t;if(t&&!i&&"object"==typeof t)if(Ml.endsWith(n,"{}"))n=r?n:n.slice(0,-2),t=JSON.stringify(t);else if(Ml.isArray(t)&&function(t){return Ml.isArray(t)&&!t.some(Bl)}(t)||(Ml.isFileList(t)||Ml.endsWith(n,"[]"))&&(a=Ml.toArray(t)))return n=Rl(n),a.forEach((function(t,r){!Ml.isUndefined(t)&&null!==t&&e.append(!0===s?zl([n],r,o):null===s?n:n+"[]",l(t))})),!1;return!!Bl(t)||(e.append(zl(i,n,o),l(t)),!1)}const u=[],d=Object.assign(Ul,{defaultVisitor:c,convertValue:l,isVisitable:Bl});if(!Ml.isObject(t))throw new TypeError("data must be an object");return function t(n,r){if(!Ml.isUndefined(n)){if(-1!==u.indexOf(n))throw Error("Circular reference detected in "+r.join("."));u.push(n),Ml.forEach(n,(function(n,o){!0===(!(Ml.isUndefined(n)||null===n)&&i.call(e,n,Ml.isString(o)?o.trim():o,r,d))&&t(n,r?r.concat(o):[o])})),u.pop()}}(t),e};function Hl(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,(function(t){return e[t]}))}function ql(t,e){this._pairs=[],t&&Vl(t,this,e)}const Wl=ql.prototype;Wl.append=function(t,e){this._pairs.push([t,e])},Wl.toString=function(t){const e=t?function(e){return t.call(this,e,Hl)}:Hl;return this._pairs.map((function(t){return e(t[0])+"="+e(t[1])}),"").join("&")};var Zl=ql;function Yl(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Gl(t,e,n){if(!e)return t;const r=n&&n.encode||Yl,i=n&&n.serialize;let o;if(o=i?i(e,n):Ml.isURLSearchParams(e)?e.toString():new Zl(e,n).toString(r),o){const e=t.indexOf("#");-1!==e&&(t=t.slice(0,e)),t+=(-1===t.indexOf("?")?"?":"&")+o}return t}var Jl=class{constructor(){this.handlers=[]}use(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){Ml.forEach(this.handlers,(function(e){null!==e&&t(e)}))}},Kl={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Xl={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:Zl,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]};const Ql="undefined"!=typeof window&&"undefined"!=typeof document,tc=(ec="undefined"!=typeof navigator&&navigator.product,Ql&&["ReactNative","NativeScript","NS"].indexOf(ec)<0);var ec;const nc="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts;var rc={...t,...Xl};var ic=function(t){function e(t,n,r,i){let o=t[i++];if("__proto__"===o)return!0;const s=Number.isFinite(+o),a=i>=t.length;if(o=!o&&Ml.isArray(r)?r.length:o,a)return Ml.hasOwnProp(r,o)?r[o]=[r[o],n]:r[o]=n,!s;r[o]&&Ml.isObject(r[o])||(r[o]=[]);return e(t,n,r[o],i)&&Ml.isArray(r[o])&&(r[o]=function(t){const e={},n=Object.keys(t);let r;const i=n.length;let o;for(r=0;r<i;r++)o=n[r],e[o]=t[o];return e}(r[o])),!s}if(Ml.isFormData(t)&&Ml.isFunction(t.entries)){const n={};return Ml.forEachEntry(t,((t,r)=>{e(function(t){return Ml.matchAll(/\w+|\[(\w*)]/g,t).map((t=>"[]"===t[0]?"":t[1]||t[0]))}(t),r,n,0)})),n}return null};const oc={transitional:Kl,adapter:["xhr","http"],transformRequest:[function(t,e){const n=e.getContentType()||"",r=n.indexOf("application/json")>-1,i=Ml.isObject(t);i&&Ml.isHTMLForm(t)&&(t=new FormData(t));if(Ml.isFormData(t))return r?JSON.stringify(ic(t)):t;if(Ml.isArrayBuffer(t)||Ml.isBuffer(t)||Ml.isStream(t)||Ml.isFile(t)||Ml.isBlob(t))return t;if(Ml.isArrayBufferView(t))return t.buffer;if(Ml.isURLSearchParams(t))return e.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let o;if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return function(t,e){return Vl(t,new rc.classes.URLSearchParams,Object.assign({visitor:function(t,e,n,r){return rc.isNode&&Ml.isBuffer(t)?(this.append(e,t.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},e))}(t,this.formSerializer).toString();if((o=Ml.isFileList(t))||n.indexOf("multipart/form-data")>-1){const e=this.env&&this.env.FormData;return Vl(o?{"files[]":t}:t,e&&new e,this.formSerializer)}}return i||r?(e.setContentType("application/json",!1),function(t,e,n){if(Ml.isString(t))try{return(e||JSON.parse)(t),Ml.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(n||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){const e=this.transitional||oc.transitional,n=e&&e.forcedJSONParsing,r="json"===this.responseType;if(t&&Ml.isString(t)&&(n&&!this.responseType||r)){const n=!(e&&e.silentJSONParsing)&&r;try{return JSON.parse(t)}catch(t){if(n){if("SyntaxError"===t.name)throw Dl.from(t,Dl.ERR_BAD_RESPONSE,this,null,this.response);throw t}}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:rc.classes.FormData,Blob:rc.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};Ml.forEach(["delete","get","head","post","put","patch"],(t=>{oc.headers[t]={}}));var sc=oc;const ac=Ml.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]);const lc=Symbol("internals");function cc(t){return t&&String(t).trim().toLowerCase()}function uc(t){return!1===t||null==t?t:Ml.isArray(t)?t.map(uc):String(t)}function dc(t,e,n,r,i){return Ml.isFunction(r)?r.call(this,e,n):(i&&(e=n),Ml.isString(e)?Ml.isString(r)?-1!==e.indexOf(r):Ml.isRegExp(r)?r.test(e):void 0:void 0)}class fc{constructor(t){t&&this.set(t)}set(t,e,n){const r=this;function i(t,e,n){const i=cc(e);if(!i)throw new Error("header name must be a non-empty string");const o=Ml.findKey(r,i);(!o||void 0===r[o]||!0===n||void 0===n&&!1!==r[o])&&(r[o||e]=uc(t))}const o=(t,e)=>Ml.forEach(t,((t,n)=>i(t,n,e)));return Ml.isPlainObject(t)||t instanceof this.constructor?o(t,e):Ml.isString(t)&&(t=t.trim())&&!(t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim()))(t)?o((t=>{const e={};let n,r,i;return t&&t.split("\n").forEach((function(t){i=t.indexOf(":"),n=t.substring(0,i).trim().toLowerCase(),r=t.substring(i+1).trim(),!n||e[n]&&ac[n]||("set-cookie"===n?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)})),e})(t),e):null!=t&&i(e,t,n),this}get(t,e){if(t=cc(t)){const n=Ml.findKey(this,t);if(n){const t=this[n];if(!e)return t;if(!0===e)return function(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}(t);if(Ml.isFunction(e))return e.call(this,t,n);if(Ml.isRegExp(e))return e.exec(t);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,e){if(t=cc(t)){const n=Ml.findKey(this,t);return!(!n||void 0===this[n]||e&&!dc(0,this[n],n,e))}return!1}delete(t,e){const n=this;let r=!1;function i(t){if(t=cc(t)){const i=Ml.findKey(n,t);!i||e&&!dc(0,n[i],i,e)||(delete n[i],r=!0)}}return Ml.isArray(t)?t.forEach(i):i(t),r}clear(t){const e=Object.keys(this);let n=e.length,r=!1;for(;n--;){const i=e[n];t&&!dc(0,this[i],i,t,!0)||(delete this[i],r=!0)}return r}normalize(t){const e=this,n={};return Ml.forEach(this,((r,i)=>{const o=Ml.findKey(n,i);if(o)return e[o]=uc(r),void delete e[i];const s=t?function(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((t,e,n)=>e.toUpperCase()+n))}(i):String(i).trim();s!==i&&delete e[i],e[s]=uc(r),n[s]=!0})),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const e=Object.create(null);return Ml.forEach(this,((n,r)=>{null!=n&&!1!==n&&(e[r]=t&&Ml.isArray(n)?n.join(", "):n)})),e}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([t,e])=>t+": "+e)).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...e){const n=new this(t);return e.forEach((t=>n.set(t))),n}static accessor(t){const e=(this[lc]=this[lc]={accessors:{}}).accessors,n=this.prototype;function r(t){const r=cc(t);e[r]||(!function(t,e){const n=Ml.toCamelCase(" "+e);["get","set","has"].forEach((r=>{Object.defineProperty(t,r+n,{value:function(t,n,i){return this[r].call(this,e,t,n,i)},configurable:!0})}))}(n,t),e[r]=!0)}return Ml.isArray(t)?t.forEach(r):r(t),this}}fc.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),Ml.reduceDescriptors(fc.prototype,(({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(t){this[n]=t}}})),Ml.freezeMethods(fc);var pc=fc;function hc(t,e){const n=this||sc,r=e||n,i=pc.from(r.headers);let o=r.data;return Ml.forEach(t,(function(t){o=t.call(n,o,i.normalize(),e?e.status:void 0)})),i.normalize(),o}function mc(t){return!(!t||!t.__CANCEL__)}function gc(t,e,n){Dl.call(this,null==t?"canceled":t,Dl.ERR_CANCELED,e,n),this.name="CanceledError"}Ml.inherits(gc,Dl,{__CANCEL__:!0});var vc=gc;var wc=rc.hasStandardBrowserEnv?{write(t,e,n,r,i,o){const s=[t+"="+encodeURIComponent(e)];Ml.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),Ml.isString(r)&&s.push("path="+r),Ml.isString(i)&&s.push("domain="+i),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function yc(t,e){return t&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)?function(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}(t,e):e}var bc=rc.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");let n;function r(n){let r=n;return t&&(e.setAttribute("href",r),r=e.href),e.setAttribute("href",r),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:"/"===e.pathname.charAt(0)?e.pathname:"/"+e.pathname}}return n=r(window.location.href),function(t){const e=Ml.isString(t)?r(t):t;return e.protocol===n.protocol&&e.host===n.host}}():function(){return!0};var _c=function(t,e){t=t||10;const n=new Array(t),r=new Array(t);let i,o=0,s=0;return e=void 0!==e?e:1e3,function(a){const l=Date.now(),c=r[s];i||(i=l),n[o]=a,r[o]=l;let u=s,d=0;for(;u!==o;)d+=n[u++],u%=t;if(o=(o+1)%t,o===s&&(s=(s+1)%t),l-i<e)return;const f=c&&l-c;return f?Math.round(1e3*d/f):void 0}};function xc(t,e){let n=0;const r=_c(50,250);return i=>{const o=i.loaded,s=i.lengthComputable?i.total:void 0,a=o-n,l=r(a);n=o;const c={loaded:o,total:s,progress:s?o/s:void 0,bytes:a,rate:l||void 0,estimated:l&&s&&o<=s?(s-o)/l:void 0,event:i};c[e?"download":"upload"]=!0,t(c)}}var kc="undefined"!=typeof XMLHttpRequest&&function(t){return new Promise((function(e,n){let r=t.data;const i=pc.from(t.headers).normalize();let o,s,{responseType:a,withXSRFToken:l}=t;function c(){t.cancelToken&&t.cancelToken.unsubscribe(o),t.signal&&t.signal.removeEventListener("abort",o)}if(Ml.isFormData(r))if(rc.hasStandardBrowserEnv||rc.hasStandardBrowserWebWorkerEnv)i.setContentType(!1);else if(!1!==(s=i.getContentType())){const[t,...e]=s?s.split(";").map((t=>t.trim())).filter(Boolean):[];i.setContentType([t||"multipart/form-data",...e].join("; "))}let u=new XMLHttpRequest;if(t.auth){const e=t.auth.username||"",n=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(e+":"+n))}const d=yc(t.baseURL,t.url);function f(){if(!u)return;const r=pc.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders());!function(t,e,n){const r=n.config.validateStatus;n.status&&r&&!r(n.status)?e(new Dl("Request failed with status code "+n.status,[Dl.ERR_BAD_REQUEST,Dl.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n)):t(n)}((function(t){e(t),c()}),(function(t){n(t),c()}),{data:a&&"text"!==a&&"json"!==a?u.response:u.responseText,status:u.status,statusText:u.statusText,headers:r,config:t,request:u}),u=null}if(u.open(t.method.toUpperCase(),Gl(d,t.params,t.paramsSerializer),!0),u.timeout=t.timeout,"onloadend"in u?u.onloadend=f:u.onreadystatechange=function(){u&&4===u.readyState&&(0!==u.status||u.responseURL&&0===u.responseURL.indexOf("file:"))&&setTimeout(f)},u.onabort=function(){u&&(n(new Dl("Request aborted",Dl.ECONNABORTED,t,u)),u=null)},u.onerror=function(){n(new Dl("Network Error",Dl.ERR_NETWORK,t,u)),u=null},u.ontimeout=function(){let e=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const r=t.transitional||Kl;t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(new Dl(e,r.clarifyTimeoutError?Dl.ETIMEDOUT:Dl.ECONNABORTED,t,u)),u=null},rc.hasStandardBrowserEnv&&(l&&Ml.isFunction(l)&&(l=l(t)),l||!1!==l&&bc(d))){const e=t.xsrfHeaderName&&t.xsrfCookieName&&wc.read(t.xsrfCookieName);e&&i.set(t.xsrfHeaderName,e)}void 0===r&&i.setContentType(null),"setRequestHeader"in u&&Ml.forEach(i.toJSON(),(function(t,e){u.setRequestHeader(e,t)})),Ml.isUndefined(t.withCredentials)||(u.withCredentials=!!t.withCredentials),a&&"json"!==a&&(u.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&u.addEventListener("progress",xc(t.onDownloadProgress,!0)),"function"==typeof t.onUploadProgress&&u.upload&&u.upload.addEventListener("progress",xc(t.onUploadProgress)),(t.cancelToken||t.signal)&&(o=e=>{u&&(n(!e||e.type?new vc(null,t,u):e),u.abort(),u=null)},t.cancelToken&&t.cancelToken.subscribe(o),t.signal&&(t.signal.aborted?o():t.signal.addEventListener("abort",o)));const p=function(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}(d);p&&-1===rc.protocols.indexOf(p)?n(new Dl("Unsupported protocol "+p+":",Dl.ERR_BAD_REQUEST,t)):u.send(r||null)}))};const Sc={http:Nl,xhr:kc};Ml.forEach(Sc,((t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch(t){}Object.defineProperty(t,"adapterName",{value:e})}}));const Cc=t=>`- ${t}`,Oc=t=>Ml.isFunction(t)||null===t||!1===t;var Tc={getAdapter:t=>{t=Ml.isArray(t)?t:[t];const{length:e}=t;let n,r;const i={};for(let o=0;o<e;o++){let e;if(n=t[o],r=n,!Oc(n)&&(r=Sc[(e=String(n)).toLowerCase()],void 0===r))throw new Dl(`Unknown adapter '${e}'`);if(r)break;i[e||"#"+o]=r}if(!r){const t=Object.entries(i).map((([t,e])=>`adapter ${t} `+(!1===e?"is not supported by the environment":"is not available in the build")));let n=e?t.length>1?"since :\n"+t.map(Cc).join("\n"):" "+Cc(t[0]):"as no adapter specified";throw new Dl("There is no suitable adapter to dispatch the request "+n,"ERR_NOT_SUPPORT")}return r},adapters:Sc};function Ec(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new vc(null,t)}function jc(t){Ec(t),t.headers=pc.from(t.headers),t.data=hc.call(t,t.transformRequest),-1!==["post","put","patch"].indexOf(t.method)&&t.headers.setContentType("application/x-www-form-urlencoded",!1);return Tc.getAdapter(t.adapter||sc.adapter)(t).then((function(e){return Ec(t),e.data=hc.call(t,t.transformResponse,e),e.headers=pc.from(e.headers),e}),(function(e){return mc(e)||(Ec(t),e&&e.response&&(e.response.data=hc.call(t,t.transformResponse,e.response),e.response.headers=pc.from(e.response.headers))),Promise.reject(e)}))}const Ac=t=>t instanceof pc?t.toJSON():t;function Pc(t,e){e=e||{};const n={};function r(t,e,n){return Ml.isPlainObject(t)&&Ml.isPlainObject(e)?Ml.merge.call({caseless:n},t,e):Ml.isPlainObject(e)?Ml.merge({},e):Ml.isArray(e)?e.slice():e}function i(t,e,n){return Ml.isUndefined(e)?Ml.isUndefined(t)?void 0:r(void 0,t,n):r(t,e,n)}function o(t,e){if(!Ml.isUndefined(e))return r(void 0,e)}function s(t,e){return Ml.isUndefined(e)?Ml.isUndefined(t)?void 0:r(void 0,t):r(void 0,e)}function a(n,i,o){return o in e?r(n,i):o in t?r(void 0,n):void 0}const l={url:o,method:o,data:o,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,withXSRFToken:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:a,headers:(t,e)=>i(Ac(t),Ac(e),!0)};return Ml.forEach(Object.keys(Object.assign({},t,e)),(function(r){const o=l[r]||i,s=o(t[r],e[r],r);Ml.isUndefined(s)&&o!==a||(n[r]=s)})),n}const Mc="1.6.7",Ic={};["object","boolean","number","function","string","symbol"].forEach(((t,e)=>{Ic[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}}));const Lc={};Ic.transitional=function(t,e,n){function r(t,e){return"[Axios v1.6.7] Transitional option '"+t+"'"+e+(n?". "+n:"")}return(n,i,o)=>{if(!1===t)throw new Dl(r(i," has been removed"+(e?" in "+e:"")),Dl.ERR_DEPRECATED);return e&&!Lc[i]&&(Lc[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(n,i,o)}};var $c={assertOptions:function(t,e,n){if("object"!=typeof t)throw new Dl("options must be an object",Dl.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let i=r.length;for(;i-- >0;){const o=r[i],s=e[o];if(s){const e=t[o],n=void 0===e||s(e,o,t);if(!0!==n)throw new Dl("option "+o+" must be "+n,Dl.ERR_BAD_OPTION_VALUE)}else if(!0!==n)throw new Dl("Unknown option "+o,Dl.ERR_BAD_OPTION)}},validators:Ic};const Dc=$c.validators;class Nc{constructor(t){this.defaults=t,this.interceptors={request:new Jl,response:new Jl}}async request(t,e){try{return await this._request(t,e)}catch(t){if(t instanceof Error){let e;Error.captureStackTrace?Error.captureStackTrace(e={}):e=new Error;const n=e.stack?e.stack.replace(/^.+\n/,""):"";t.stack?n&&!String(t.stack).endsWith(n.replace(/^.+\n.+\n/,""))&&(t.stack+="\n"+n):t.stack=n}throw t}}_request(t,e){"string"==typeof t?(e=e||{}).url=t:e=t||{},e=Pc(this.defaults,e);const{transitional:n,paramsSerializer:r,headers:i}=e;void 0!==n&&$c.assertOptions(n,{silentJSONParsing:Dc.transitional(Dc.boolean),forcedJSONParsing:Dc.transitional(Dc.boolean),clarifyTimeoutError:Dc.transitional(Dc.boolean)},!1),null!=r&&(Ml.isFunction(r)?e.paramsSerializer={serialize:r}:$c.assertOptions(r,{encode:Dc.function,serialize:Dc.function},!0)),e.method=(e.method||this.defaults.method||"get").toLowerCase();let o=i&&Ml.merge(i.common,i[e.method]);i&&Ml.forEach(["delete","get","head","post","put","patch","common"],(t=>{delete i[t]})),e.headers=pc.concat(o,i);const s=[];let a=!0;this.interceptors.request.forEach((function(t){"function"==typeof t.runWhen&&!1===t.runWhen(e)||(a=a&&t.synchronous,s.unshift(t.fulfilled,t.rejected))}));const l=[];let c;this.interceptors.response.forEach((function(t){l.push(t.fulfilled,t.rejected)}));let u,d=0;if(!a){const t=[jc.bind(this),void 0];for(t.unshift.apply(t,s),t.push.apply(t,l),u=t.length,c=Promise.resolve(e);d<u;)c=c.then(t[d++],t[d++]);return c}u=s.length;let f=e;for(d=0;d<u;){const t=s[d++],e=s[d++];try{f=t(f)}catch(t){e.call(this,t);break}}try{c=jc.call(this,f)}catch(t){return Promise.reject(t)}for(d=0,u=l.length;d<u;)c=c.then(l[d++],l[d++]);return c}getUri(t){return Gl(yc((t=Pc(this.defaults,t)).baseURL,t.url),t.params,t.paramsSerializer)}}Ml.forEach(["delete","get","head","options"],(function(t){Nc.prototype[t]=function(e,n){return this.request(Pc(n||{},{method:t,url:e,data:(n||{}).data}))}})),Ml.forEach(["post","put","patch"],(function(t){function e(e){return function(n,r,i){return this.request(Pc(i||{},{method:t,headers:e?{"Content-Type":"multipart/form-data"}:{},url:n,data:r}))}}Nc.prototype[t]=e(),Nc.prototype[t+"Form"]=e(!0)}));var Fc=Nc;class Bc{constructor(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");let e;this.promise=new Promise((function(t){e=t}));const n=this;this.promise.then((t=>{if(!n._listeners)return;let e=n._listeners.length;for(;e-- >0;)n._listeners[e](t);n._listeners=null})),this.promise.then=t=>{let e;const r=new Promise((t=>{n.subscribe(t),e=t})).then(t);return r.cancel=function(){n.unsubscribe(e)},r},t((function(t,r,i){n.reason||(n.reason=new vc(t,r,i),e(n.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){this.reason?t(this.reason):this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const e=this._listeners.indexOf(t);-1!==e&&this._listeners.splice(e,1)}static source(){let t;return{token:new Bc((function(e){t=e})),cancel:t}}}var Rc=Bc;const zc={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(zc).forEach((([t,e])=>{zc[e]=t}));var Uc=zc;const Vc=function t(e){const n=new Fc(e),r=Xa(Fc.prototype.request,n);return Ml.extend(r,Fc.prototype,n,{allOwnKeys:!0}),Ml.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return t(Pc(e,n))},r}(sc);Vc.Axios=Fc,Vc.CanceledError=vc,Vc.CancelToken=Rc,Vc.isCancel=mc,Vc.VERSION=Mc,Vc.toFormData=Vl,Vc.AxiosError=Dl,Vc.Cancel=Vc.CanceledError,Vc.all=function(t){return Promise.all(t)},Vc.spread=function(t){return function(e){return t.apply(null,e)}},Vc.isAxiosError=function(t){return Ml.isObject(t)&&!0===t.isAxiosError},Vc.mergeConfig=Pc,Vc.AxiosHeaders=pc,Vc.formToJSON=t=>ic(Ml.isHTMLForm(t)?new FormData(t):t),Vc.getAdapter=Tc.getAdapter,Vc.HttpStatusCode=Uc,Vc.default=Vc;var Hc=Vc;const qc=Hc.create({baseURL:!!window.metaslider_api.supports_rest&&window.metaslider_api.root,headers:{"X-WP-Nonce":!!window.metaslider_api&&window.metaslider_api.nonce,"X-Requested-With":"XMLHttpRequest"}});qc.interceptors.request.use((t=>(t.baseURL||(t.url=window.metaslider_api.ajaxurl),t))),qc.interceptors.response.use(void 0,(t=>new Promise(((e,n)=>{if(t.config.url===window.metaslider_api.ajaxurl&&n(t),t.config&&"GET"===t.config.method.toUpperCase()){const n=window.metaslider.app?window.metaslider.app.MetaSlider:null;n&&n.notifyError("metaslider/rest-route-get-error",t.response),t.config.url=window.metaslider_api.ajaxurl,e(Hc.request(t.config))}t.config&&"POST"===t.config.method.toUpperCase()&&t.response&&404===t.response.status&&(t.config.url=window.metaslider_api.ajaxurl,e(Hc.request(t.config))),n(t)}))));var Wc,Zc,Yc,Gc,Jc=qc,Kc=new er,Xc={debounce(t,e){let n;return function(){clearTimeout(n),n=setTimeout((()=>t.apply(this,arguments)),e)}}},Qc=n(9588),tu=n.n(Qc),eu=n(8975),nu=n.n(eu),ru=tu()(console.error);function iu(t){try{for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return nu().sprintf.apply(nu(),[t].concat(n))}catch(e){return ru("sprintf error: \n\n"+e.toString()),t}}function ou(t){return ou="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ou(t)}function su(t){var e=function(t,e){if("object"!==ou(t)||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!==ou(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===ou(e)?e:String(e)}function au(t,e,n){return(e=su(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}Wc={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},Zc=["(","?"],Yc={")":["("],":":["?","?:"]},Gc=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var lu={"!":function(t){return!t},"*":function(t,e){return t*e},"/":function(t,e){return t/e},"%":function(t,e){return t%e},"+":function(t,e){return t+e},"-":function(t,e){return t-e},"<":function(t,e){return t<e},"<=":function(t,e){return t<=e},">":function(t,e){return t>e},">=":function(t,e){return t>=e},"==":function(t,e){return t===e},"!=":function(t,e){return t!==e},"&&":function(t,e){return t&&e},"||":function(t,e){return t||e},"?:":function(t,e,n){if(t)throw e;return n}};function cu(t){var e=function(t){for(var e,n,r,i,o=[],s=[];e=t.match(Gc);){for(n=e[0],(r=t.substr(0,e.index).trim())&&o.push(r);i=s.pop();){if(Yc[n]){if(Yc[n][0]===i){n=Yc[n][1]||n;break}}else if(Zc.indexOf(i)>=0||Wc[i]<Wc[n]){s.push(i);break}o.push(i)}Yc[n]||s.push(n),t=t.substr(e.index+n.length)}return(t=t.trim())&&o.push(t),o.concat(s.reverse())}(t);return function(t){return function(t,e){var n,r,i,o,s,a,l=[];for(n=0;n<t.length;n++){if(s=t[n],o=lu[s]){for(r=o.length,i=Array(r);r--;)i[r]=l.pop();try{a=o.apply(null,i)}catch(t){return t}}else a=e.hasOwnProperty(s)?e[s]:+s;l.push(a)}return l[0]}(e,t)}}var uu={contextDelimiter:"",onMissingKey:null};function du(t,e){var n;for(n in this.data=t,this.pluralForms={},this.options={},uu)this.options[n]=void 0!==e&&n in e?e[n]:uu[n]}function fu(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function pu(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?fu(Object(n),!0).forEach((function(e){au(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):fu(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}du.prototype.getPluralForm=function(t,e){var n,r,i,o=this.pluralForms[t];return o||("function"!=typeof(i=(n=this.data[t][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(t){var e,n,r;for(e=t.split(";"),n=0;n<e.length;n++)if(0===(r=e[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),i=function(t){var e=cu(t);return function(t){return+e({n:t})}}(r)),o=this.pluralForms[t]=i),o(e)},du.prototype.dcnpgettext=function(t,e,n,r,i){var o,s,a;return o=void 0===i?0:this.getPluralForm(t,i),s=n,e&&(s=e+this.options.contextDelimiter+n),(a=this.data[t][s])&&a[o]?a[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,t),0===o?n:r)};var hu={"":{plural_forms:function(t){return 1===t?0:1}}},mu=/^i18n\.(n?gettext|has_translation)(_|$)/;var gu=function(t){return"string"!=typeof t||""===t?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(t)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var vu=function(t){return"string"!=typeof t||""===t?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(t)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(t)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var wu=function(t,e){return function(n,r,i){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,s=t[e];if(vu(n)&&gu(r))if("function"==typeof i)if("number"==typeof o){var a={callback:i,priority:o,namespace:r};if(s[n]){var l,c=s[n].handlers;for(l=c.length;l>0&&!(o>=c[l-1].priority);l--);l===c.length?c[l]=a:c.splice(l,0,a),s.__current.forEach((function(t){t.name===n&&t.currentIndex>=l&&t.currentIndex++}))}else s[n]={handlers:[a],runs:0};"hookAdded"!==n&&t.doAction("hookAdded",n,r,i,o)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var yu=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r,i){var o=t[e];if(vu(r)&&(n||gu(i))){if(!o[r])return 0;var s=0;if(n)s=o[r].handlers.length,o[r]={runs:o[r].runs,handlers:[]};else for(var a=o[r].handlers,l=function(t){a[t].namespace===i&&(a.splice(t,1),s++,o.__current.forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},c=a.length-1;c>=0;c--)l(c);return"hookRemoved"!==r&&t.doAction("hookRemoved",r,i),s}}};var bu=function(t,e){return function(n,r){var i=t[e];return void 0!==r?n in i&&i[n].handlers.some((function(t){return t.namespace===r})):n in i}};var _u=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r){var i=t[e];i[r]||(i[r]={handlers:[],runs:0}),i[r].runs++;var o=i[r].handlers;for(var s=arguments.length,a=new Array(s>1?s-1:0),l=1;l<s;l++)a[l-1]=arguments[l];if(!o||!o.length)return n?a[0]:void 0;var c={name:r,currentIndex:0};for(i.__current.push(c);c.currentIndex<o.length;){var u=o[c.currentIndex].callback.apply(null,a);n&&(a[0]=u),c.currentIndex++}return i.__current.pop(),n?a[0]:void 0}};var xu=function(t,e){return function(){var n,r,i=t[e];return null!==(n=null===(r=i.__current[i.__current.length-1])||void 0===r?void 0:r.name)&&void 0!==n?n:null}};var ku=function(t,e){return function(n){var r=t[e];return void 0===n?void 0!==r.__current[0]:!!r.__current[0]&&n===r.__current[0].name}};var Su=function(t,e){return function(n){var r=t[e];if(vu(n))return r[n]&&r[n].runs?r[n].runs:0}},Cu=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=wu(this,"actions"),this.addFilter=wu(this,"filters"),this.removeAction=yu(this,"actions"),this.removeFilter=yu(this,"filters"),this.hasAction=bu(this,"actions"),this.hasFilter=bu(this,"filters"),this.removeAllActions=yu(this,"actions",!0),this.removeAllFilters=yu(this,"filters",!0),this.doAction=_u(this,"actions"),this.applyFilters=_u(this,"filters",!0),this.currentAction=xu(this,"actions"),this.currentFilter=xu(this,"filters"),this.doingAction=ku(this,"actions"),this.doingFilter=ku(this,"filters"),this.didAction=Su(this,"actions"),this.didFilter=Su(this,"filters")};var Ou=function(){return new Cu}(),Tu=(Ou.addAction,Ou.addFilter,Ou.removeAction,Ou.removeFilter,Ou.hasAction,Ou.hasFilter,Ou.removeAllActions,Ou.removeAllFilters,Ou.doAction,Ou.applyFilters,Ou.currentAction,Ou.currentFilter,Ou.doingAction,Ou.doingFilter,Ou.didAction,Ou.didFilter,Ou.actions,Ou.filters,function(t,e,n){var r=new du({}),i=new Set,o=function(){i.forEach((function(t){return t()}))},s=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"default";r.data[e]=pu(pu(pu({},hu),r.data[e]),t),r.data[e][""]=pu(pu({},hu[""]),r.data[e][""])},a=function(t,e){s(t,e),o()},l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default",e=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0,o=arguments.length>4?arguments[4]:void 0;return r.data[t]||s(void 0,t),r.dcnpgettext(t,e,n,i,o)},c=function(){return arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default"},u=function(t,e,r){var i=l(r,e,t);return n?(i=n.applyFilters("i18n.gettext_with_context",i,t,e,r),n.applyFilters("i18n.gettext_with_context_"+c(r),i,t,e,r)):i};if(t&&a(t,e),n){var d=function(t){mu.test(t)&&o()};n.addAction("hookAdded","core/i18n",d),n.addAction("hookRemoved","core/i18n",d)}return{getLocaleData:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default";return r.data[t]},setLocaleData:a,resetLocaleData:function(t,e){r.data={},r.pluralForms={},a(t,e)},subscribe:function(t){return i.add(t),function(){return i.delete(t)}},__:function(t,e){var r=l(e,void 0,t);return n?(r=n.applyFilters("i18n.gettext",r,t,e),n.applyFilters("i18n.gettext_"+c(e),r,t,e)):r},_x:u,_n:function(t,e,r,i){var o=l(i,void 0,t,e,r);return n?(o=n.applyFilters("i18n.ngettext",o,t,e,r,i),n.applyFilters("i18n.ngettext_"+c(i),o,t,e,r,i)):o},_nx:function(t,e,r,i,o){var s=l(o,i,t,e,r);return n?(s=n.applyFilters("i18n.ngettext_with_context",s,t,e,r,i,o),n.applyFilters("i18n.ngettext_with_context_"+c(o),s,t,e,r,i,o)):s},isRTL:function(){return"rtl"===u("ltr","text direction")},hasTranslation:function(t,e,i){var o,s,a=e?e+""+t:t,l=!(null===(o=r.data)||void 0===o||null===(s=o[null!=i?i:"default"])||void 0===s||!s[a]);return n&&(l=n.applyFilters("i18n.has_translation",l,t,e,i),l=n.applyFilters("i18n.has_translation_"+c(i),l,t,e,i)),l}}}(void 0,void 0,Ou)),Eu=(Tu.getLocaleData.bind(Tu),Tu.setLocaleData.bind(Tu)),ju=(Tu.resetLocaleData.bind(Tu),Tu.subscribe.bind(Tu),Tu.__.bind(Tu)),Au=Tu._x.bind(Tu),Pu=Tu._n.bind(Tu),Mu=Tu._nx.bind(Tu);Tu.isRTL.bind(Tu),Tu.hasTranslation.bind(Tu);window.metaslider.eventHooks&&Object.keys(window.metaslider.eventHooks).forEach((t=>{Kc.$on(t,window.metaslider.eventHooks[t])}));const Iu=Hc.create({baseURL:"https://www.metaslider.com/wp-json/unsplash/v1/"}),Lu={photos(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return e?this.searchPhotos(t,e):Iu.get("images/all",{params:{page:t,nocache:n}})},searchPhotos(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return Iu.post("images/search",{page:t,search:e})},async download(t,e){const n=await Hc.get(t,{responseType:"blob",onDownloadProgress:t=>{let e=parseInt(Math.round(100*t.loaded/t.total))-20;Kc.$emit("metaslider/external-api-percentage",{percentage:e>1?e:1})}});return Iu.post(`images/${e}/download`),n}};var $u=Lu;var Du=("undefined"!=typeof window?window:void 0!==n.g?n.g:{}).__VUE_DEVTOOLS_GLOBAL_HOOK__;function Nu(t,e){if(void 0===e&&(e=[]),null===t||"object"!=typeof t)return t;var n,r=(n=function(e){return e.original===t},e.filter(n)[0]);if(r)return r.copy;var i=Array.isArray(t)?[]:{};return e.push({original:t,copy:i}),Object.keys(t).forEach((function(n){i[n]=Nu(t[n],e)})),i}function Fu(t,e){Object.keys(t).forEach((function(n){return e(t[n],n)}))}function Bu(t){return null!==t&&"object"==typeof t}var Ru=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"==typeof n?n():n)||{}},zu={namespaced:{configurable:!0}};zu.namespaced.get=function(){return!!this._rawModule.namespaced},Ru.prototype.addChild=function(t,e){this._children[t]=e},Ru.prototype.removeChild=function(t){delete this._children[t]},Ru.prototype.getChild=function(t){return this._children[t]},Ru.prototype.hasChild=function(t){return t in this._children},Ru.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},Ru.prototype.forEachChild=function(t){Fu(this._children,t)},Ru.prototype.forEachGetter=function(t){this._rawModule.getters&&Fu(this._rawModule.getters,t)},Ru.prototype.forEachAction=function(t){this._rawModule.actions&&Fu(this._rawModule.actions,t)},Ru.prototype.forEachMutation=function(t){this._rawModule.mutations&&Fu(this._rawModule.mutations,t)},Object.defineProperties(Ru.prototype,zu);var Uu=function(t){this.register([],t,!1)};function Vu(t,e,n){if(e.update(n),n.modules)for(var r in n.modules){if(!e.getChild(r))return void 0;Vu(t.concat(r),e.getChild(r),n.modules[r])}}Uu.prototype.get=function(t){return t.reduce((function(t,e){return t.getChild(e)}),this.root)},Uu.prototype.getNamespace=function(t){var e=this.root;return t.reduce((function(t,n){return t+((e=e.getChild(n)).namespaced?n+"/":"")}),"")},Uu.prototype.update=function(t){Vu([],this.root,t)},Uu.prototype.register=function(t,e,n){var r=this;void 0===n&&(n=!0);var i=new Ru(e,n);0===t.length?this.root=i:this.get(t.slice(0,-1)).addChild(t[t.length-1],i);e.modules&&Fu(e.modules,(function(e,i){r.register(t.concat(i),e,n)}))},Uu.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1],r=e.getChild(n);r&&r.runtime&&e.removeChild(n)},Uu.prototype.isRegistered=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];return!!e&&e.hasChild(n)};var Hu;var qu=function(t){var e=this;void 0===t&&(t={}),!Hu&&"undefined"!=typeof window&&window.Vue&&Qu(window.Vue);var n=t.plugins;void 0===n&&(n=[]);var r=t.strict;void 0===r&&(r=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new Uu(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new Hu,this._makeLocalGettersCache=Object.create(null);var i=this,o=this.dispatch,s=this.commit;this.dispatch=function(t,e){return o.call(i,t,e)},this.commit=function(t,e,n){return s.call(i,t,e,n)},this.strict=r;var a=this._modules.root.state;Ju(this,a,[],this._modules.root),Gu(this,a),n.forEach((function(t){return t(e)})),(void 0!==t.devtools?t.devtools:Hu.config.devtools)&&function(t){Du&&(t._devtoolHook=Du,Du.emit("vuex:init",t),Du.on("vuex:travel-to-state",(function(e){t.replaceState(e)})),t.subscribe((function(t,e){Du.emit("vuex:mutation",t,e)}),{prepend:!0}),t.subscribeAction((function(t,e){Du.emit("vuex:action",t,e)}),{prepend:!0}))}(this)},Wu={state:{configurable:!0}};function Zu(t,e,n){return e.indexOf(t)<0&&(n&&n.prepend?e.unshift(t):e.push(t)),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function Yu(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;Ju(t,n,[],t._modules.root,!0),Gu(t,n,e)}function Gu(t,e,n){var r=t._vm;t.getters={},t._makeLocalGettersCache=Object.create(null);var i=t._wrappedGetters,o={};Fu(i,(function(e,n){o[n]=function(t,e){return function(){return t(e)}}(e,t),Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})}));var s=Hu.config.silent;Hu.config.silent=!0,t._vm=new Hu({data:{$$state:e},computed:o}),Hu.config.silent=s,t.strict&&function(t){t._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}(t),r&&(n&&t._withCommit((function(){r._data.$$state=null})),Hu.nextTick((function(){return r.$destroy()})))}function Ju(t,e,n,r,i){var o=!n.length,s=t._modules.getNamespace(n);if(r.namespaced&&(t._modulesNamespaceMap[s],t._modulesNamespaceMap[s]=r),!o&&!i){var a=Ku(e,n.slice(0,-1)),l=n[n.length-1];t._withCommit((function(){Hu.set(a,l,r.state)}))}var c=r.context=function(t,e,n){var r=""===e,i={dispatch:r?t.dispatch:function(n,r,i){var o=Xu(n,r,i),s=o.payload,a=o.options,l=o.type;return a&&a.root||(l=e+l),t.dispatch(l,s)},commit:r?t.commit:function(n,r,i){var o=Xu(n,r,i),s=o.payload,a=o.options,l=o.type;a&&a.root||(l=e+l),t.commit(l,s,a)}};return Object.defineProperties(i,{getters:{get:r?function(){return t.getters}:function(){return function(t,e){if(!t._makeLocalGettersCache[e]){var n={},r=e.length;Object.keys(t.getters).forEach((function(i){if(i.slice(0,r)===e){var o=i.slice(r);Object.defineProperty(n,o,{get:function(){return t.getters[i]},enumerable:!0})}})),t._makeLocalGettersCache[e]=n}return t._makeLocalGettersCache[e]}(t,e)}},state:{get:function(){return Ku(t.state,n)}}}),i}(t,s,n);r.forEachMutation((function(e,n){!function(t,e,n,r){var i=t._mutations[e]||(t._mutations[e]=[]);i.push((function(e){n.call(t,r.state,e)}))}(t,s+n,e,c)})),r.forEachAction((function(e,n){var r=e.root?n:s+n,i=e.handler||e;!function(t,e,n,r){var i=t._actions[e]||(t._actions[e]=[]);i.push((function(e){var i,o=n.call(t,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:t.getters,rootState:t.state},e);return(i=o)&&"function"==typeof i.then||(o=Promise.resolve(o)),t._devtoolHook?o.catch((function(e){throw t._devtoolHook.emit("vuex:error",e),e})):o}))}(t,r,i,c)})),r.forEachGetter((function(e,n){!function(t,e,n,r){if(t._wrappedGetters[e])return void 0;t._wrappedGetters[e]=function(t){return n(r.state,r.getters,t.state,t.getters)}}(t,s+n,e,c)})),r.forEachChild((function(r,o){Ju(t,e,n.concat(o),r,i)}))}function Ku(t,e){return e.reduce((function(t,e){return t[e]}),t)}function Xu(t,e,n){return Bu(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function Qu(t){Hu&&t===Hu||function(t){if(Number(t.version.split(".")[0])>=2)t.mixin({beforeCreate:n});else{var e=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[n].concat(t.init):n,e.call(this,t)}}function n(){var t=this.$options;t.store?this.$store="function"==typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}(Hu=t)}Wu.state.get=function(){return this._vm._data.$$state},Wu.state.set=function(t){0},qu.prototype.commit=function(t,e,n){var r=this,i=Xu(t,e,n),o=i.type,s=i.payload,a=(i.options,{type:o,payload:s}),l=this._mutations[o];l&&(this._withCommit((function(){l.forEach((function(t){t(s)}))})),this._subscribers.slice().forEach((function(t){return t(a,r.state)})))},qu.prototype.dispatch=function(t,e){var n=this,r=Xu(t,e),i=r.type,o=r.payload,s={type:i,payload:o},a=this._actions[i];if(a){try{this._actionSubscribers.slice().filter((function(t){return t.before})).forEach((function(t){return t.before(s,n.state)}))}catch(t){0}var l=a.length>1?Promise.all(a.map((function(t){return t(o)}))):a[0](o);return new Promise((function(t,e){l.then((function(e){try{n._actionSubscribers.filter((function(t){return t.after})).forEach((function(t){return t.after(s,n.state)}))}catch(t){0}t(e)}),(function(t){try{n._actionSubscribers.filter((function(t){return t.error})).forEach((function(e){return e.error(s,n.state,t)}))}catch(t){0}e(t)}))}))}},qu.prototype.subscribe=function(t,e){return Zu(t,this._subscribers,e)},qu.prototype.subscribeAction=function(t,e){return Zu("function"==typeof t?{before:t}:t,this._actionSubscribers,e)},qu.prototype.watch=function(t,e,n){var r=this;return this._watcherVM.$watch((function(){return t(r.state,r.getters)}),e,n)},qu.prototype.replaceState=function(t){var e=this;this._withCommit((function(){e._vm._data.$$state=t}))},qu.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"==typeof t&&(t=[t]),this._modules.register(t,e),Ju(this,this.state,t,this._modules.get(t),n.preserveState),Gu(this,this.state)},qu.prototype.unregisterModule=function(t){var e=this;"string"==typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit((function(){var n=Ku(e.state,t.slice(0,-1));Hu.delete(n,t[t.length-1])})),Yu(this)},qu.prototype.hasModule=function(t){return"string"==typeof t&&(t=[t]),this._modules.isRegistered(t)},qu.prototype.hotUpdate=function(t){this._modules.update(t),Yu(this,!0)},qu.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(qu.prototype,Wu);var td=od((function(t,e){var n={};return id(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var r=sd(this.$store,"mapState",t);if(!r)return;e=r.context.state,n=r.context.getters}return"function"==typeof i?i.call(this,e,n):e[i]},n[r].vuex=!0})),n})),ed=od((function(t,e){var n={};return id(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.commit;if(t){var o=sd(this.$store,"mapMutations",t);if(!o)return;r=o.context.commit}return"function"==typeof i?i.apply(this,[r].concat(e)):r.apply(this.$store,[i].concat(e))}})),n})),nd=od((function(t,e){var n={};return id(e).forEach((function(e){var r=e.key,i=e.val;i=t+i,n[r]=function(){if(!t||sd(this.$store,"mapGetters",t))return this.$store.getters[i]},n[r].vuex=!0})),n})),rd=od((function(t,e){var n={};return id(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.dispatch;if(t){var o=sd(this.$store,"mapActions",t);if(!o)return;r=o.context.dispatch}return"function"==typeof i?i.apply(this,[r].concat(e)):r.apply(this.$store,[i].concat(e))}})),n}));function id(t){return function(t){return Array.isArray(t)||Bu(t)}(t)?Array.isArray(t)?t.map((function(t){return{key:t,val:t}})):Object.keys(t).map((function(e){return{key:e,val:t[e]}})):[]}function od(t){return function(e,n){return"string"!=typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function sd(t,e,n){return t._modulesNamespaceMap[n]}function ad(t,e,n){var r=n?t.groupCollapsed:t.group;try{r.call(t,e)}catch(n){t.log(e)}}function ld(t){try{t.groupEnd()}catch(e){t.log("—— log end ——")}}function cd(){var t=new Date;return" @ "+ud(t.getHours(),2)+":"+ud(t.getMinutes(),2)+":"+ud(t.getSeconds(),2)+"."+ud(t.getMilliseconds(),3)}function ud(t,e){return function(t,e){return new Array(e+1).join(t)}("0",e-t.toString().length)+t}var dd={Store:qu,install:Qu,version:"3.6.2",mapState:td,mapMutations:ed,mapGetters:nd,mapActions:rd,createNamespacedHelpers:function(t){return{mapState:td.bind(null,t),mapGetters:nd.bind(null,t),mapMutations:ed.bind(null,t),mapActions:rd.bind(null,t)}},createLogger:function(t){void 0===t&&(t={});var e=t.collapsed;void 0===e&&(e=!0);var n=t.filter;void 0===n&&(n=function(t,e,n){return!0});var r=t.transformer;void 0===r&&(r=function(t){return t});var i=t.mutationTransformer;void 0===i&&(i=function(t){return t});var o=t.actionFilter;void 0===o&&(o=function(t,e){return!0});var s=t.actionTransformer;void 0===s&&(s=function(t){return t});var a=t.logMutations;void 0===a&&(a=!0);var l=t.logActions;void 0===l&&(l=!0);var c=t.logger;return void 0===c&&(c=console),function(t){var u=Nu(t.state);void 0!==c&&(a&&t.subscribe((function(t,o){var s=Nu(o);if(n(t,u,s)){var a=cd(),l=i(t),d="mutation "+t.type+a;ad(c,d,e),c.log("%c prev state","color: #9E9E9E; font-weight: bold",r(u)),c.log("%c mutation","color: #03A9F4; font-weight: bold",l),c.log("%c next state","color: #4CAF50; font-weight: bold",r(s)),ld(c)}u=s})),l&&t.subscribeAction((function(t,n){if(o(t,n)){var r=cd(),i=s(t),a="action "+t.type+r;ad(c,a,e),c.log("%c action","color: #03A9F4; font-weight: bold",i),ld(c)}})))}}},fd=dd,pd=n(2378),hd=n.n(pd);(function(){function t(){}Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this).length},enumerable:!0,configurable:!0}),t.prototype.key=function(t){return Object.keys(this)[t]},t.prototype.setItem=function(t,e){this[t]=e.toString()},t.prototype.getItem=function(t){return this[t]},t.prototype.removeItem=function(t){delete this[t]},t.prototype.clear=function(){for(var t=0,e=Object.keys(this);t<e.length;t++){delete this[e[t]]}}})();var md=function(){function t(){this._queue=[],this._flushing=!1}return t.prototype.enqueue=function(t){return this._queue.push(t),this._flushing?Promise.resolve():this.flushQueue()},t.prototype.flushQueue=function(){var t=this;this._flushing=!0;var e=function(){var n=t._queue.shift();if(n)return n.then(e);t._flushing=!1};return Promise.resolve(e())},t}();function gd(t,e){return hd()({},t,e)}var vd=JSON,wd=function(t){var e=this;this._mutex=new md,this.subscriber=function(t){return function(e){return t.subscribe(e)}},void 0===t&&(t={}),this.key=null!=t.key?t.key:"vuex",this.subscribed=!1,this.supportCircular=t.supportCircular||!1,this.supportCircular&&(vd=n(7953)),this.storage=t.storage||window.localStorage,this.reducer=null!=t.reducer?t.reducer:null==t.modules?function(t){return t}:function(e){return t.modules.reduce((function(t,n){var r;return gd(t,((r={})[n]=e[n],r))}),{})},this.filter=t.filter||function(t){return!0},this.strictMode=t.strictMode||!1,this.RESTORE_MUTATION=function(t,e){for(var n=gd(t,e||{}),r=0,i=Object.keys(n);r<i.length;r++){var o=i[r];this._vm.$set(t,o,n[o])}},this.asyncStorage=t.asyncStorage||!1;var r=this.storage&&this.storage._config;this.asyncStorage=this.asyncStorage||"localforage"===(r&&r.name),this.asyncStorage?(this.restoreState=null!=t.restoreState?t.restoreState:function(t,n){return n.getItem(t).then((function(t){return"string"==typeof t?e.supportCircular?vd.parse(t||"{}"):JSON.parse(t||"{}"):t||{}}))},this.saveState=null!=t.saveState?t.saveState:function(t,n,r){return r.setItem(t,"localforage"===(r&&r._config&&r._config.name)?gd({},n||{}):e.supportCircular?vd.stringify(n):JSON.stringify(n))},this.plugin=function(t){e.restoreState(e.key,e.storage).then((function(n){e.strictMode?t.commit("RESTORE_MUTATION",n):t.replaceState(gd(t.state,n||{})),e.subscriber(t)((function(t,n){e.filter(t)&&e._mutex.enqueue(e.saveState(e.key,e.reducer(n),e.storage))})),e.subscribed=!0}))}):(this.restoreState=null!=t.restoreState?t.restoreState:function(t,n){var r=n.getItem(t);return"string"==typeof r?e.supportCircular?vd.parse(r||"{}"):JSON.parse(r||"{}"):r||{}},this.saveState=null!=t.saveState?t.saveState:function(t,n,r){return r.setItem(t,e.supportCircular?vd.stringify(n):JSON.stringify(n))},this.plugin=function(t){var n=e.restoreState(e.key,e.storage);e.strictMode?t.commit("RESTORE_MUTATION",n):t.replaceState(gd(t.state,n||{})),e.subscriber(t)((function(t,n){e.filter(t)&&e.saveState(e.key,e.reducer(n),e.storage)})),e.subscribed=!0})},yd=wd,bd=(n(4266),n(129)),_d=n.n(bd);const xd={getCurrent:(t,e)=>{if(!t.all.length)return{title:"",theme:"",id:"",settings:{},slides:{}};const n=t.all.find((e=>e.id===t.currentId));return n||{title:"",theme:"",id:"",settings:{},slides:{}}}},kd={getSingleSlideshow(t,e){let{commit:n}=t;Ad.single(e).then((t=>{let{data:e}=t;n("addSlideshows",e.data)})).catch((t=>{window.metaslider.app.MetaSlider.notifyError("metaslider/fetching-single-slideshows-error",t,!0)}))},getRecentSlideshows(t){let{commit:e}=t;Ad.all(1).then((t=>{let{data:n}=t;n.data.hasOwnProperty("remaining_pages")&&(e("updateRemainingPagesCount",n.data.remaining_pages),delete n.data.remaining_pages,delete n.data.page),n.data.hasOwnProperty("totalSlideshows")&&(e("setTotalSlideshows",n.data.totalSlideshows),delete n.data.totalSlideshows),e("addSlideshows",n.data)})).catch((t=>{window.metaslider.app.MetaSlider.notifyError("metaslider/fetching-recent-slideshows-error",t,!0)}))},getAllSlideshows(t){let{commit:e}=t;return Sd(1,e).catch((t=>{window.metaslider.app.MetaSlider.notifyError("metaslider/fetching-all-slideshows-error",t,!0)}))}},Sd=(t,e)=>(e("setFetchingAll",!0),new Promise((n=>{Ad.all(t,200).then((t=>{let{data:r}=t,i=!1;r.data.hasOwnProperty("remaining_pages")?(i=r.data.page+1,e("updateRemainingPagesCount",r.data.remaining_pages),delete r.data.remaining_pages,delete r.data.page):e("updateRemainingPagesCount",0),r.data.hasOwnProperty("totalSlideshows")&&(e("setTotalSlideshows",r.data.totalSlideshows),delete r.data.totalSlideshows),e("addSlideshows",r.data);let o,s,a={};Object.keys(r.data).forEach((t=>{s=r.data[t];for(let t=0;t<s.slides.length;t++)o=s.slides[t],a[o.id]={id:o.id,thumbnail:o.thumbnail,meta:o.meta}})),e("addSlides",a),setTimeout((()=>{!i&&e("setFetchingAll",!1),n(i?Sd(i,e):r)}),2e3)}))}))),Cd={setCurrent(t,e){t.currentId=e},setTotalSlideshows(t,e){t.totalSlideshows=e},updateRemainingPagesCount(t,e){t.remainingPages=e},addSlideshows(t,e){e&&Object.keys(e).forEach((n=>{const r=t.all.findIndex((t=>t.id===e[n].id));if(r>-1)JSON.stringify(t.all[r])!==JSON.stringify(e[n])&&(Object.assign(t.all[r],e[n]),console.log("MetaSlider:","Updated slideshow id #"+e[n].id+" in local storage."));else if(t.all.push(e[n]),window.location.href.indexOf("metaslider_add_sample_slides")>-1){var i=new URLSearchParams(window.location.search).get("metaslider_add_sample_slides");document.getElementById("loading-add-sample-slides-notice").style.display="flex",metaslider.quickstart_slugs.includes(i)?Jc.post("import/others",_d().stringify({action:"ms_import_others",slideshow_id:e[n].id,slug:i})).then((t=>{window.location.href=window.location.href.replace("metaslider_add_sample_slides","metaslider_add_sample_slides_after")})).catch((t=>{console.log(t)})):Jc.post("import/images",_d().stringify({action:"ms_import_images",slideshow_id:e[n].id})).then((t=>{window.location.href=window.location.href.replace("metaslider_add_sample_slides","metaslider_add_sample_slides_after")})).catch((t=>{console.log(t)}))}}))},updateTheme(t,e){const n=t.all.findIndex((e=>e.id===t.currentId));t.all[n].theme=e},updateTitle(t,e){const n=t.all.findIndex((e=>e.id===t.currentId));t.all[n].title=e},setLocked(t,e){t.locked=e},setFetchingAll(t,e){t.fetchingAll=e}};var Od={namespaced:!0,state:{all:[],slides:{},locked:!1,remainingPages:1,totalSlideshows:0,fetchingAll:!1,currentId:null},getters:xd,actions:kd,mutations:Cd};const Td=new yd({key:"metaslider-vuex-"+window.metaslider_api.site_id,reducer:t=>({slideshows:{all:t.slideshows.all}})});er.use(fd);var Ed=new fd.Store({modules:{slideshows:Od},strict:false,plugins:[Td.plugin]});const jd={all(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:25;return Jc.get("slideshow/all",{params:{action:"ms_get_slideshows",page:t,count:e}})},single(t){return Jc.get("slideshow/single",{params:{action:"ms_get_single_slideshow",id:t}})},search(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:50;return Jc.get("slideshow/search",{params:{action:"ms_search_slideshows",term:t,count:e}})},legacy(){return Jc.get("slideshow/legacy",{params:{action:"ms_get_legacy_slideshows"}})},save(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;const n=new FormData;let r=0;n.append("slideshow_id",Ed.getters["slideshows/getCurrent"].id),n.append("action","ms_save_slideshow");for(let i=0;i<e;i++)t[i]&&(t[i].forEach((t=>{n.append(t.name,t.value)})),r++,delete t[i]);return t=t.filter((t=>t)),n.append("count",r),Jc.post("slideshow/save",n,{headers:{"Content-Type":"multipart/form-data"}}).then((e=>t.length?t:e.data))},duplicate(){let t=new FormData;return t.append("slideshow_id",Ed.getters["slideshows/getCurrent"].id),t.append("action","ms_duplicate_slideshow"),Jc.post("slideshow/duplicate",t,{headers:{"Content-Type":"multipart/form-data"}})},export(t){return Jc.get("slideshow/export",{responseType:"blob",params:{action:"ms_export_slideshows",slideshow_ids:JSON.stringify(t)}})},import(t){let e=new FormData;return e.append("slideshows",t),e.append("action","ms_import_slideshows"),Jc.post("slideshow/import",e,{headers:{"Content-Type":"multipart/form-data"}})}};var Ad=jd;const Pd={save(t){let e=new FormData;return e.append("slideshow_id",Ed.getters["slideshows/getCurrent"].id),e.append("action","ms_update_all_slideshow_settings"),t.forEach((t=>{e.append(t.name,t.value)})),Jc.post("settings/slideshow/save",e,{headers:{"Content-Type":"multipart/form-data"}})},saveSingleSlideshowSetting(t,e){let n=new FormData;return n.append("slideshow_id",Ed.getters["slideshows/getCurrent"].id),n.append("setting_key",t),n.append("setting_value",e),n.append("action","ms_update_single_slideshow_setting"),Jc.post("settings/slideshow/save-single",n,{headers:{"Content-Type":"multipart/form-data"}})},saveUserSetting(t,e){let n=new FormData;return n.append("setting_key",t),n.append("setting_value",e),n.append("action","ms_update_user_setting"),Jc.post("settings/user/save",n,{headers:{"Content-Type":"multipart/form-data"}})},getUserSetting(t){return Jc.get("settings/user/",{params:{action:"ms_get_user_details",setting:t}})},get(t){return Jc.get("settings/single",{params:{action:"ms_get_single_setting",setting:t}})},getSlideshowDefaults(){return Jc.get("settings/slideshow/defaults",{params:{action:"ms_get_default_slideshow_settings"}})},saveSlideshowDefaults(t){let e=new FormData;return e.append("action","ms_update_slideshow_default_settings"),e.append("settings",t),Jc.post("settings/slideshow/defaults/save",e,{headers:{"Content-Type":"multipart/form-data"}})},getGlobalSettings(){return Jc.get("settings/global",{params:{action:"ms_get_default_slideshow_settings"}})},getProSettings(){return Jc.get("settings/pro",{params:{action:"ms_get_pro_settings"}})},saveGlobalSettings(t){let e=new FormData;return e.append("action","ms_update_global_settings"),e.append("settings",t),Jc.post("settings/global/save",e,{headers:{"Content-Type":"multipart/form-data"}})},saveGlobalSettingsSingle(t,e){let n=new FormData;return n.append("action","ms_update_global_settings_single"),n.append("setting_key",t),n.append("setting_value",e),Jc.post("settings/global/single/save",n,{headers:{"Content-Type":"multipart/form-data"}})},saveProSettings(t){let e=new FormData;return e.append("action","ms_update_pro_settings"),e.append("settings",t),Jc.post("settings/pro/save",e,{headers:{"Content-Type":"multipart/form-data"}})}};var Md=Pd;var Id={findIdFromFilename(t){let e=new FormData;return e.append("filenames",t),e.append("action","ms_get_image_ids_from_filenames"),Jc.post("images/ids-from-filenames",e,{headers:{"Content-Type":"multipart/form-data"}})}};function Ld(t,e,n,r,i,o,s,a){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),s?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},c._ssrRegister=l):i&&(l=a?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}var $d=Ld({filename:"CSSManagerNotice",created(){this.$parent.classes="w-full max-w-6xl"},mounted(){this.notifyInfo("metaslider/add-slide-css-manager-notice-opened",this.__("CSS Manager notice opened","ml-slider"))},beforeDestroy(){this.notifyInfo("metaslider/add-slide-css-manager-notice-closed",this.__("CSS Manager notice closed","ml-slider"))}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"css-manager-ad-container flex flex-col-reverse lg:flex-row"},[e("div",{staticClass:"lg:w-1/2"},[e("img",{staticClass:"block",attrs:{alt:t.__("CSS manager module","ml-silder"),src:t.asset("images/css-manager.gif")}})]),t._v(" "),e("div",{staticClass:"p-8 lg:w-1/2"},[e("h1",[t._v(t._s(t.__("CSS Manager","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("Easily add custom CSS to your slideshows to create the perfect design for your sites.","ml-slider")))]),t._v(" "),e("ul",[e("li",{staticClass:"mb-1"},[e("svg",{staticClass:"inline text-orange w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z","clip-rule":"evenodd"}})]),t._v("\n                    "+t._s(t.__("Built-in text editor full of features.","ml-slider"))+"\n                ")]),t._v(" "),e("li",{staticClass:"mb-1"},[e("svg",{staticClass:"inline text-orange w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z","clip-rule":"evenodd"}})]),t._v("\n                    "+t._s(t.__("Loads only on the front-end where needed.","ml-slider"))+"\n                ")]),t._v(" "),e("li",{staticClass:"mb-1"},[e("svg",{staticClass:"inline text-orange w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z","clip-rule":"evenodd"}})]),t._v("\n                    "+t._s(t.__("Includes recipes to solve common scenarios.","ml-slider"))+"\n                ")])]),t._v(" "),e("a",{staticClass:"probutton button button-primary button-hero",attrs:{href:t.hoplink,target:"_blank"}},[t._v(t._s(t.__("Find out more about MetaSlider Pro","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external"})])])])}),[],!1,null,null,null).exports;function Dd(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Nd(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Fd={data(){return{optinEmail:""}},filename:"AnalyticsNotice",created(){this.$parent.classes="w-full max-w-lg rounded-lg",this.$parent.forceOpen=()=>{this.opt("no"),this.$parent.forceOpen=!1},Md.getUserSetting().then((t=>{let{data:e}=t;this.optinEmail=e.data})),Md.saveUserSetting("analytics_onboarding_status","no")},mounted(){this.notifyInfo("metaslider/add-slide-css-manager-notice-opened",this.__("Analytics notice opened","ml-slider"))},beforeDestroy(){this.notifyInfo("metaslider/add-slide-css-manager-notice-closed",this.__("Analytics notice closed","ml-slider"))},methods:{modalPrivacyPolicy(){return this.sprintf(this.__("We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.","ml-slider"),'<a target="_blank" class="underline" href="https://www.metaslider.com/privacy-policy">'+this.__("privacy policy","ml-slider")+"</a>","ml-slider")},async opt(t){this.$parent.forceOpen=!1,this.$parent.close(),await Md.saveUserSetting("analytics_onboarding_status",t),"yes"===t&&(await Md.saveGlobalSettingsSingle("optin_via","modal"),await Md.saveGlobalSettingsSingle("optin_email",this.optinEmail),Md.getGlobalSettings().then((t=>{let{data:e}=t;const n=e.data;n.optIn=!0,Md.saveGlobalSettings(JSON.stringify(function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Dd(Object(n),!0).forEach((function(e){Nd(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Dd(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},n)))}))),Kc.$emit("metaslider/start-tour")}}},Bd=Ld(Fd,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"rounded-md"},[e("div",{staticClass:"text-center"},[e("h3",{staticClass:"m-0 p-3 text-lg leading-6 font-medium text-white bg-orange rounded-top"},[t._v("\n            "+t._s(t.__("Thanks for using MetaSlider","ml-slider"))+"\n        ")]),t._v(" "),e("div",{staticClass:"p-5"},[e("p",{staticClass:"text-lg leading-5 text-gray-darker mb-0"},[t._v(" "+t._s(t.__("We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?","ml-slider"))+" ")])]),t._v(" "),e("div",{staticClass:"relative rounded-md shadow-sm px-5"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.optinEmail,expression:"optinEmail"}],staticClass:"form-input block w-full md:text-sm md:leading-5",attrs:{type:"email"},domProps:{value:t.optinEmail},on:{input:function(e){e.target.composing||(t.optinEmail=e.target.value)}}})]),t._v(" "),e("p",{staticClass:"p-3 mt-0 max-w-xl text-sm leading-5 text-gray-dark",domProps:{innerHTML:t._s(t.modalPrivacyPolicy())}})]),t._v(" "),e("div",{staticClass:"mt-6 sm:grid sm:gap-3 sm:grid-flow-row-dense px-4 pb-5"},[e("span",{staticClass:"flex w-full rounded-md shadow-sm sm:col-start-2"},[e("button",{staticClass:"inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-base leading-6 font-medium text-white shadow-sm bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 sm:text-sm sm:leading-5",attrs:{type:"button"},on:{click:function(e){return t.opt("yes")}}},[t._v("\n                "+t._s(t.__("Agree and continue","ml-slider"))+"\n            ")])]),t._v(" "),e("span",{staticClass:"mt-3 flex w-full rounded-md sm:mt-0 sm:col-start-1"},[e("button",{staticClass:"inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-base leading-6 font-medium text-black shadow-sm bg-gray hover:text-white hover:bg-gray-darker active:bg-gray-darkest transition ease-in-out duration-150 sm:text-sm sm:leading-5",attrs:{type:"button"},on:{click:function(e){return t.opt("no")}}},[t._v("\n                "+t._s(t.__("No thanks","ml-slider"))+"\n            ")])])])])}),[],!1,null,null,null).exports,Rd=n(6455),zd=n.n(Rd),Ud=n(6240);const Vd=new(n.n(Ud)().Tour);Vd.options.defaults={classes:"shepherd-theme-arrows metaslider-tour",showCancelLink:!0},Vd.addStep("add-slide",{title:ju("Add a slide","ml-slider"),text:ju('Thanks for using MetaSlider. To get started, click the "Add Slide" button to create your first slide.',"ml-slider"),attachTo:{element:"#add-new-slide",on:"bottom"},buttons:[]}),Vd.addStep("add-image",{title:ju("Select images","ml-slider"),text:ju("You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.","ml-slider"),attachTo:{element:".media-frame-router",on:"bottom left"},tetherOptions:{targetAttachment:"bottom left",attachment:"top center",offset:"0 -140px"},buttons:[{text:ju("Next step","ml-slider"),action:function(){Vd.show("create-slide")}}]}),Vd.addStep("search-unsplash",{title:ju("Search unsplash","ml-slider"),text:ju("Choose an image from the left, or search for any topic here to bring up more images.","ml-slider"),attachTo:{element:"#search-unsplash",on:"bottom"},tetherOptions:{attachment:"top center"},buttons:[{text:ju("Hide step","ml-slider"),action:function(){Vd.show("create-slide")}}]}),Vd.addStep("create-slide",{title:ju("Create your slide","ml-slider"),text:ju("After you have selected an image, press here to create your slide.","ml-slider"),attachTo:{element:".media-modal.wp-core-ui",on:"bottom"},tetherOptions:{targetAttachment:"bottom right",attachment:"bottom right",offset:"70px 90px"},buttons:[]}),Vd.addStep("preview",{title:ju("Preview Slideshow","ml-slider"),text:ju("Now that you have some slides set, you can preview your slideshow by pressing here.","ml-slider"),attachTo:{element:"#preview-slideshow",on:"bottom"},tetherOptions:{attachment:"top right",offset:"0 -90px"},buttons:[]}),Vd.setPosition=()=>Jc.post("tour/status",{action:"set_tour_status",current_step:Vd.getCurrentStep().id}),Kc.$on("metaslider/add-slide-opening-ui",(function(){this.$nextTick((()=>{this.tourEnabled&&Vd.show("add-image")}))})),Kc.$on("metaslider/unsplash-tab-opened",(function(){this.$nextTick((()=>{this.tourEnabled&&"add-image"===Vd.getCurrentStep().id&&Vd.show("search-unsplash")}))})),Kc.$on("metaslider/unsplash-tab-closed",(function(){this.$nextTick((()=>{this.tourEnabled&&Vd.show("create-slide")}))})),Kc.$on("metaslider/unsplash-search-focused",(function(){this.$nextTick((()=>{this.tourEnabled&&Vd.show("create-slide")}))})),Kc.$on("metaslider/add-slide-closing-ui",(function(){this.$nextTick((()=>{this.tourEnabled&&Vd.show("preview")}))})),Kc.$on("metaslider/preview-loaded",(function(){this.tourEnabled&&Vd.setPosition(),this.tourEnabled&&Vd.hide()}));var Hd=Vd;function qd(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Wd(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?qd(Object(n),!0).forEach((function(e){Zd(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):qd(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function Zd(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Yd={props:{id:{type:[Number],default:null},settings:{type:[Object,Boolean],default:!1},tourStatus:{type:[String,Boolean],default:!1},showOptIn:{type:[String,Boolean],default:!1}},data(){return{allowedElements:["metaslider-ui","updraft-ad-container","metaslider-admin-notice"],titleChanged:""}},computed:Wd(Wd({},nd({current:"slideshows/getCurrent"})),td({locked:t=>t.slideshows.locked})),created(){window.metaslider_slider_id=this.id,this.$store.commit("slideshows/setCurrent",this.id),this.$store.dispatch("slideshows/getSingleSlideshow",this.id),this.$store.dispatch("slideshows/getRecentSlideshows")},mounted(){document.querySelectorAll("#wpbody-content > *").forEach((t=>{let e=t.className.split(" ").concat(t.id);e&&this.allowedElements.filter((t=>e.indexOf(t)>-1)).length&&(t.style.display="block")})),Kc.$on("metaslider/save",(()=>{this.save()})),Kc.$on("metaslider/preview",(t=>{let e=t&&t.hasOwnProperty("slideshowId")?t.slideshowId:this.current.id,n=t&&t.hasOwnProperty("themeId")?t.themeId:this.current.theme.folder;this.save().then((()=>{this.preview(e,n)}))})),Kc.$on(["metaslider/creating-slides","metaslider/updating-slide"],(()=>{this.$store.commit("slideshows/setLocked",!0)})),Kc.$on(["metaslider/slides-created","metaslider/slide-create-failed","metaslider/slide-updated","metaslider/slide-update-failed","metaslider/slide-duplicated","metaslider/slide-duplicate-failed"],(()=>{this.$store.commit("slideshows/setLocked",!1)})),Kc.$on("metaslider/duplicate",(()=>{this.save().then((()=>{this.notifyInfo("metaslider/duplicate-pre",this.__("Duplicating...","ml-slider"),!0),this.duplicate()}))})),Kc.$on(["metaslider/save-success","metaslider/save-error"],(()=>{this.$store.commit("slideshows/setLocked",!1)})),Kc.$on("metaslider/start-tour",(()=>{!this.tourStatus&&this.id&&this.startTour()})),Kc.$on("metaslider/cant-edit-trashed-slide",(()=>{this.notifyError("metaslider/slide-edit-failed",this.__('To edit this slide, click "Restore" and then "Return to Published Slides"',"ml-slider"),!0)})),this.showOptIn||Kc.$emit("metaslider/start-tour"),this.showOptIn&&Kc.$emit("metaslider/open-utility-modal",Bd),window.addEventListener("load",(()=>{setTimeout((()=>{this.notifyInfo("metaslider/app-loaded",this.__("MetaSlider dashboard loaded","ml-slider"))}),1500)})),this.titleChanged=this.current.title},methods:{async save(){if(""==this.current.title)this.notifyError("metaslider/title-saved",this.__("Please add a slideshow title"),!0);else{if(this.locked)return;this.$store.commit("slideshows/setLocked",!0),this.notifyInfo("metaslider/saving",this.__("Saving...","ml-slider")),this.orderSlides();let t=window.jQuery("#ms-form-settings").serializeArray();await this.saveSettings(t).then((()=>{let e=this.prepareSlideData(t);return e.length>20&&this.notifyInfo("metaslider/saving-more-notice",this.sprintf(this.__("Saving %s slides. This may take a few moments.","ml-slider"),e.length),!0),this.showSlideSaveNotification=!1,setTimeout((()=>{this.showSlideSaveNotification=!0}),4e3),this.saveSlides(e).then((()=>{this.cropSlidesTheOldWay(),this.notifySuccess("metaslider/save-success",this.__("Slideshow saved","ml-slider"),!0)})).catch((t=>{throw(t.response.data.data&&t.response.data.data.current_input_vars||t.response.data.includes("max_input_vars"))&&window.location.replace(this.metasliderPage+"&id="+this.current.id+"&input_vars_error=true"),t}))})).catch((t=>{this.notifyError("metaslider/save-error",t.response,!0)}))}},preview(t,e){Kc.$emit("metaslider/open-preview",{slideshowId:t,themeId:e})},async duplicate(t,e){Ad.duplicate().then((t=>{this.notifySuccess("metaslider/duplicate-success",this.__("Duplicated successfully. Reloading...","ml-slider"),!0),setTimeout((()=>{localStorage.removeItem("metaslider-vuex-"+this.siteId),window.location.replace(this.metasliderPage+"&id="+t.data.data)}),1500)})).catch((t=>{this.notifyError("metaslider/duplicate-error",t,!0)}))},startTour(){Kc.tourEnabled=!0,setTimeout((()=>{Hd.start()}),750),Hd.on("cancel",(()=>{this.cancelTour()}))},saveSettings(t){let e=t.filter((t=>"title"===t.name||t.name.startsWith("settings")));return Md.save(e).then((()=>{this.notifySuccess("metaslider/save-setting-success",this.__("Settings saved","ml-slider"))}))},prepareSlideData(t){return[...new Set(t.filter((t=>t.name.startsWith("attachment"))).map((t=>t.name.match(/attachment\[([\s\S]*?)\]/)[1])))].map((e=>t.filter((t=>t.name.startsWith("attachment["+e+"]")))))},saveSlides(t){return new Promise(((e,n)=>{let r=this.proUser?20:50;Ad.save(t,r).then((t=>{Array.isArray(t)&&t.length?(this.showSlideSaveNotification&&t.length>=10&&(this.notifyInfo("metaslider/saving-more",this.sprintf(this.__("Still working... %s slides remaining...","ml-slider"),10*Math.floor(t.length/10)),!0),this.showSlideSaveNotification=!1,setTimeout((()=>{this.showSlideSaveNotification=!0}),4e3)),e(this.saveSlides(t))):e(t)})).catch((t=>{n(t)}))}))},orderSlides(){document.querySelectorAll("#metaslider-slides-list .slide input.menu_order").forEach(((t,e)=>{t.value=e}))},cropSlidesTheOldWay(){window.jQuery.when(window.jQuery(".metaslider table#metaslider-slides-list").trigger("resizeSlides")).done((function(){let t=window.jQuery;t("button[data-thumb]").each((function(){let e=t(this);t("button[data-editor_id="+e.attr("data-editor_id")+"]").attr("data-thumb",e.attr("data-thumb")).attr("data-width",e.attr("data-width")).attr("data-height",e.attr("data-height"))}))}))},cancelTour(){Kc.tourEnabled=!1,Hd.setPosition().then((()=>{this.notifySuccess("metaslider/tour-cancelled",this.__("Tour cancelled successfully","ml-slider"),!1)})).catch((()=>{this.notifySuccess("metaslider/tour-cancelled-failed",this.__("Tour cancelled unsuccessfully","ml-slider"),!1)}))},deleteSlideshow(){zd().queue([{icon:"warning",iconHtml:'<div class="dashicons dashicons-warning" style="transform: scale(3.5);"></div>',title:this.__("Are you sure?","ml-slider"),text:this.__('This slideshow will be moved to the "Trash" area.',"ml-slider"),confirmButtonText:this.__("Confirm","ml-slider"),showCancelButton:!0,confirmButtonColor:"#e82323",focusCancel:!0,showLoaderOnConfirm:!0,allowOutsideClick:()=>!zd().isLoading(),preConfirm:()=>Jc.post("slideshow/delete",_d().stringify({action:"ms_delete_slideshow",slideshow_id:this.current.id})).then((t=>{console.log("MetaSlider:",t.data.data)})).catch((t=>{let e=this.getErrorMessage(t.response);this.notifyError("metaslider/delete-error",t),zd().insertQueueStep({icon:"error",title:this.__("Something went wrong","ml-slider"),confirmButtonText:this.__("OK","ml-slider"),text:e})}))}]).then((t=>{localStorage.removeItem("metaslider-vuex-"+this.siteId),t.dismiss||window.location.replace(this.current.id?this.metasliderPage+"&action=delete&slideshows="+this.current.id:this.metasliderPage)}))}}},Gd=Yd,Jd=n(3379),Kd=n.n(Jd),Xd=n(7630),Qd={insert:"head",singleton:!1},tf=(Kd()(Xd.Z,Qd),Xd.Z.locals,Ld(Gd,undefined,undefined,!1,null,null,null).exports),ef={data(){return{duplicating:!1,scrolling:0}},computed:td({locked:t=>t.slideshows.locked}),mounted(){const t=function(){window.requestAnimationFrame((()=>{document.getElementById("ms-toolbar").style.top=document.getElementById("wpadminbar").clientHeight+"px"}))};t(),window.addEventListener("resize",t),window.addEventListener("scroll",(()=>{this.scrolling=window.scrollY>0}),{passive:!0})},methods:{save(){Kc.$emit("metaslider/save")},preview(){this.locked||Kc.$emit("metaslider/preview")},duplicate(){this.locked||(this.duplicating=!0,this.notifyInfo("metaslider/duplicate-preparing",this.__("Preparing slideshow for duplication...","ml-slider"),!0),setTimeout((()=>{Kc.$emit("metaslider/duplicate")}),1500))},showCSSManagerNotice(){Kc.$emit("metaslider/open-utility-modal",$d)},addSlide(){window.create_slides.open()}}},nf=Ld(ef,undefined,undefined,!1,null,null,null).exports,rf={name:"SweetModal",props:{title:{type:String,required:!1,default:""},overlayTheme:{type:String,required:!1,default:"light"},modalTheme:{type:String,required:!1,default:"light"},blocking:{type:Boolean,required:!1,default:!1},pulseOnBlock:{type:Boolean,required:!1,default:!0},icon:{type:String,required:!1,default:""},hideCloseButton:{type:Boolean,required:!1,default:!1},enableMobileFullscreen:{type:Boolean,required:!1,default:!0},width:{type:[Number,String],required:!1,default:null}},mounted(){this.tabs=this.$children.filter((t=>t.cmpName&&"tab"==t.cmpName)),this.has_tabs&&(this.currentTab=this._changeTab(this.tabs[0])),document.addEventListener("keyup",this._onDocumentKeyup)},beforeDestroy(){document.removeEventListener("keyup",this._onDocumentKeyup)},data(){return{visible:!1,is_open:!1,is_bouncing:!1,tabs:[],backups:{body:{height:null,overflow:null}}}},computed:{has_title(){return this.title||this.$slots.title},has_tabs(){return this.tabs.length>0},has_content(){return this.$slots.default},current_tab(){return this.tabs.filter((t=>!0===t.active))[0]},overlay_classes(){return["sweet-modal-overlay","theme-"+this.overlayTheme,"sweet-modal-clickable",{"is-visible":this.visible,blocking:this.blocking}]},modal_classes(){return["sweet-modal","theme-"+this.modalTheme,{"has-title":this.has_title,"has-tabs":this.has_tabs,"has-content":this.has_content,"has-icon":this.icon,"is-mobile-fullscreen":this.enableMobileFullscreen,"is-visible":this.visible,"is-alert":this.icon&&!this.has_tabs||!this.icon&&!this.title&&!this.$slots.title,bounce:this.is_bouncing}]},modal_style(){let t=this.width,e=null;return null!==t&&(Number(t)==t&&(t+="px"),e="none"),{width:t,maxWidth:e}}},methods:{open(t=null){if(t&&this.has_tabs){let e=this.tabs.filter((e=>e.id===t));if(e.length>0)this.currentTab=this._changeTab(e[0]);else{let e=this.tabs[t];e&&(this.currentTab=this._changeTab(e))}}this.is_open=!0,this._lockBody(),this._animateIcon(),setTimeout((()=>this.visible=!0),30),this.$emit("open")},close(){this.visible=!1,this._unlockBody(),setTimeout((()=>this.is_open=!1),300),this.$emit("close")},bounce(){this.is_bouncing=!0,setTimeout((()=>this.is_bouncing=!1),330)},_lockBody(){this.backups.body.height=document.body.style.height,this.backups.body.overflow=document.body.style.overflow,document.body.style.height="100%",document.body.style.overflow="hidden"},_unlockBody(){document.body.style.height=this.backups.body.height,document.body.style.overflow=this.backups.body.overflow},_onOverlayClick(t){t.target.classList&&!t.target.classList.contains("sweet-modal-clickable")||(this.blocking?this.pulseOnBlock&&this.bounce():this.close())},_onDocumentKeyup(t){27==t.keyCode&&(this.blocking?this.pulseOnBlock&&this.bounce():this.close())},_changeTab(t){this.tabs.map((e=>e.active=e==t)),this.currentTab=t},_getClassesForTab(t){return["sweet-modal-tab",{active:t.active,disabled:t.disabled}]},_animateIcon(){if(this.icon)switch(this.icon){case"success":setTimeout((()=>{this._applyClasses(this.$refs.icon_success,{"":["animate"],".sweet-modal-tip":["animateSuccessTip"],".sweet-modal-long":["animateSuccessLong"]})}),80);break;case"warning":this._applyClasses(this.$refs.icon_warning,{"":["pulseWarning"],".sweet-modal-body":["pulseWarningIns"],".sweet-modal-dot":["pulseWarningIns"]});break;case"error":setTimeout((()=>{this._applyClasses(this.$refs.icon_error,{"":["animateErrorIcon"],".sweet-modal-x-mark":["animateXMark"]})}),80)}},_applyClasses(t,e){for(let n in e){let r,i=e[n];r=""==n?t:t.querySelector(n),r.classList.remove(...i),r.classList.add(...i)}}}},of=n(1250),sf={insert:"head",singleton:!1},af=(Kd()(of.Z,sf),of.Z.locals,Ld(rf,(function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"show",rawName:"v-show",value:t.is_open,expression:"is_open"}],class:t.overlay_classes,on:{click:t._onOverlayClick}},[e("div",{class:t.modal_classes,style:t.modal_style},[e("div",{staticClass:"sweet-box-actions"},[t._t("box-action"),t._v(" "),t.hideCloseButton?t._e():e("div",{staticClass:"sweet-action-close",on:{click:t.close}},[e("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z",fill:"#292c34"}})])])],2),t._v(" "),t.has_title||t.has_tabs?e("div",{staticClass:"sweet-title"},[t.has_tabs&&!t.has_title?[e("ul",{staticClass:"sweet-modal-tabs"},t._l(t.tabs,(function(n){return e("li",{class:t._getClassesForTab(n)},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t._changeTab(n)}}},[e("div",{staticClass:"sweet-modal-valign"},[n.icon?e("span",{staticClass:"sweet-modal-tab-icon",domProps:{innerHTML:t._s(n.icon)}}):t._e(),t._v(" "),e("span",{staticClass:"sweet-modal-tab-title"},[t._v(t._s(n.title))])])])])})),0)]:t._e(),t._v(" "),t.has_title?[t.title?e("h2",{domProps:{innerHTML:t._s(t.title)}}):t._e(),t._v(" "),t._t("title")]:t._e()],2):t._e(),t._v(" "),t.has_title&&t.has_tabs?e("ul",{staticClass:"sweet-modal-tabs"},t._l(t.tabs,(function(n){return e("li",{class:t._getClassesForTab(n)},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t._changeTab(n)}}},[e("div",{staticClass:"sweet-modal-valign"},[n.icon?e("span",{staticClass:"sweet-modal-tab-icon",domProps:{innerHTML:t._s(n.icon)}}):t._e(),t._v(" "),e("span",{staticClass:"sweet-modal-tab-title"},[t._v(t._s(n.title))])])])])})),0):t._e(),t._v(" "),e("div",{ref:"content",staticClass:"sweet-content"},["error"==t.icon?e("div",{ref:"icon_error",staticClass:"sweet-modal-icon sweet-modal-error"},[t._m(0)]):t._e(),t._v(" "),"warning"==t.icon?e("div",{ref:"icon_warning",staticClass:"sweet-modal-icon sweet-modal-warning"},[e("span",{staticClass:"sweet-modal-body"}),t._v(" "),e("span",{staticClass:"sweet-modal-dot"})]):t._e(),t._v(" "),"info"==t.icon?e("div",{ref:"icon_info",staticClass:"sweet-modal-icon sweet-modal-info"}):t._e(),t._v(" "),"success"==t.icon?e("div",{ref:"icon_success",staticClass:"sweet-modal-icon sweet-modal-success"},[e("span",{staticClass:"sweet-modal-line sweet-modal-tip"}),t._v(" "),e("span",{staticClass:"sweet-modal-line sweet-modal-long"}),t._v(" "),e("div",{staticClass:"sweet-modal-placeholder"}),t._v(" "),e("div",{staticClass:"sweet-modal-fix"})]):t._e(),t._v(" "),t.$slots.default?e("div",{staticClass:"sweet-content-content"},[t._t("default")],2):t._e()]),t._v(" "),t.$slots.button?e("div",{staticClass:"sweet-buttons"},[t._t("button")],2):t._e()])])}),[function(){var t=this._self._c;return t("span",{staticClass:"sweet-modal-x-mark"},[t("span",{staticClass:"sweet-modal-line sweet-modal-left"}),this._v(" "),t("span",{staticClass:"sweet-modal-line sweet-modal-right"})])}],!1,null,null,null).exports),lf=Ld({props:{title:{type:String,required:!0},id:{type:String,required:!0},icon:{type:String,required:!1,default:null},disabled:{type:Boolean,required:!1,default:!1}},data(){return{active:!1}},computed:{cmpName(){return"tab"}}},(function(){var t=this;return(0,t._self._c)("div",{class:["sweet-modal-tab",{active:t.active}]},[t._t("default")],2)}),[],!1,null,null,null).exports,cf={install(t,e){t.component("SweetModal",af),t.component("SweetModalTab",lf)}},uf=n(3523),df={insert:"head",singleton:!1};Kd()(uf.Z,df),uf.Z.locals;function ff(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function pf(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}er.mixin({computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?ff(Object(n),!0).forEach((function(e){pf(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):ff(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},nd({current:"slideshows/getCurrent"})),created(){this.__=ju,this._x=Au,this._n=Pu,this._nx=Mu,this.sprintf=iu,Eu(window.metaslider_api.locale,"ml-slider"),this.siteId=window.metaslider_api.site_id,this.proUser=window.metaslider_api.proUser,this.hoplink=window.metaslider_api.hoplink,this.privacyLink=window.metaslider_api.privacy_link,this.themeEditorLink=window.metaslider_api.theme_editor_link,this.metasliderPage=window.metaslider_api.metaslider_page,this.production=!0,this.isIE11=!!window.MSInputMethodContext&&!!document.documentMode,this.notify=zd().mixin({toast:!0,position:"bottom-start",showConfirmButton:!1,timer:6e3,onOpen:t=>{t.addEventListener("mouseenter",zd().stopTimer),t.addEventListener("mouseleave",zd().resumeTimer)},onClose:t=>{t.removeEventListener("mouseenter",zd().stopTimer),t.removeEventListener("mouseleave",zd().resumeTimer)},onBeforeOpen:t=>{let e="rtl"===document.dir?"right":"left";t.parentElement.style[e]=document.getElementById("adminmenu").offsetWidth+"px"}}),window.onerror=(t,e,n,r,i)=>{console.log("message",t);let o="";try{o=e.split("/").pop().split("#")[0].split("?")[0]}catch(i){}this.notifyError("window/global-js-error",(t.length>100?t.substring(0,100)+"...":t)+(o.length?` (${o})`:""),!1)},er.config.errorHandler=function(t,e,n){e.notifyError(`vue/${n}-error`,t,!1)}},methods:{asset(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return window.metaslider_api.metaslider_admin_assets+t.replace(/^\/+/,"")},notifyInfo(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.log("MetaSlider:",e),Kc.$emit(t,e),n&&this.notify.fire({icon:"info",iconHtml:'<div class="dashicons dashicons-megaphone" style="transform: scale(2.5);"></div>',title:"string"==typeof e?e:this.__("Doing something...","ml-slider")})},notifyWarning(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.warn("MetaSlider:",e),Kc.$emit(t,e),n&&this.notify.fire({icon:"warning",title:"string"==typeof e?e:this.__("No error message provided.","ml-slider"),iconHtml:'<div class="dashicons dashicons-warning" style="transform: scale(2);"></div>'})},notifySuccess(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.log("MetaSlider:",e),Kc.$emit(t,e),n&&this.notify.fire({icon:"success",title:"string"==typeof e?e:this.__("Success","ml-slider"),iconHtml:'<div class="dashicons dashicons-yes" style="transform: scale(3);"></div>'})},notifyError(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.error(`MetaSlider (${t.replace("metaslider/","")}):`,e),e||(e=this.__("Undefined error occurred","ml-slider")),!e.hasOwnProperty("response")&&e.hasOwnProperty("message")&&(e=e.message),"string"==typeof e&&n&&this.notify.fire({showConfirmButton:!0,timer:null,icon:"error",iconHtml:'<div class="dashicons dashicons-no" style="transform: scale(3);"></div>',title:e}),e.hasOwnProperty("responseJSON")&&(e.response=e.responseJSON),e.hasOwnProperty("status")&&(e.response=e),e.hasOwnProperty("response")&&(Kc.$emit(t,e.response),console.error("MetaSlider:",this.getErrorMessage(e.response)),n&&this.notify.fire({showConfirmButton:!0,timer:null,icon:"error",iconHtml:'<div class="dashicons dashicons-no" style="transform: scale(3);"></div>',title:this.getErrorMessage(e.response)}))},getErrorMessage(t){try{if("string"==typeof t)return t;if(t.hasOwnProperty("message"))return t.message;if(!t.hasOwnProperty("data"))return t.statusText+" ("+t.status+")";if(t.data.hasOwnProperty("message"))return t.data.message;if(!t.data.hasOwnProperty("data"))return t.statusText+" ("+t.status+")";if(t.data.data.hasOwnProperty("message"))return t.data.data.message;if(t.statusText)return t.statusText+" ("+t.status+")"}catch(e){console.error("Error handling failed:",t,e)}return this.__("No error message reported.","ml-slider")},triggerEvent(t,e){Kc.$emit(t,e)},currentSlideshowId(){return this.current.id}}}),er.use(cf);let hf={computed:{modal_style(){return{"max-width":this.$parent.slideshow?this.$parent.slideshow.width:"90%","max-height":this.$parent.slideshow?this.$parent.slideshow.height:"90%"}}}},mf=er.options.components.SweetModal.options;er.options.components.SweetModal.options=er.util.mergeOptions(mf,hf);er.use(cf);function gf(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function vf(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var wf={props:{themeDirectoryUrl:{type:[String],default:""}},data(){return{loading:!0,loadingCustom:!0,unsupportedSliderType:!1,themes:{},customThemes:{},selectedTheme:{},hoveredTheme:{},is_open:!1,revealThemeAd:null}},watch:{currentThemeSupports(){this.updateSupportedStatus()},current:{immediate:!0,handler:function(t){this.current&&this.current.theme&&"none"!==this.current.theme?(this.selectedTheme=this.current.theme,this.hoveredTheme=this.current.theme):this.selectedTheme=this.hoveredTheme=this.themeStub()}}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?gf(Object(n),!0).forEach((function(e){vf(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):gf(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({showThemeDetails(){return this.hoveredTheme.description||this.selectedTheme.description&&!this.isCustomTheme},isCustomTheme(){return!!this.selectedTheme&&(!(!this.selectedTheme||!this.selectedTheme.folder)&&this.selectedTheme.folder.startsWith("_theme"))},sliderTypeNotSupported(){if(!this.hovererdTheme||!this.hoveredTheme.tags)return!1;let t=document.querySelector('input[name="settings[type]"]:checked');return!!t&&-1===parseInt(this.hoveredTheme.supports.indexOf(t.value),10)},supportLink(){return this.proUser?"https://www.metaslider.com/support/":"https://wordpress.org/support/plugin/ml-slider"},currentThemeSupports(){if(this.current.id)return this.current.theme?this.current.theme.supports:void 0},hasThemeSet(){return!(!this.current.id||!this.current.hasOwnProperty("theme"))&&(this.current.theme.hasOwnProperty("folder")&&this.current.theme.folder.length)}},nd({current:"slideshows/getCurrent"})),created(){},mounted(){this.fetchThemes(),document.querySelectorAll('input[name="settings[type]"]').forEach((t=>{t.addEventListener("click",(t=>{this.updateSupportedStatus(),this.hoveredTheme={},this.hoveredTheme=this.selectedTheme||this.current.theme}))})),this.updateSupportedStatus()},methods:{fetchThemes(){Jc.get("themes/all",{params:{action:"ms_get_all_free_themes"}}).then((t=>{this.themes=t.data.data,this.loading=!1})).catch((t=>{this.loading=!1,this.notifyError("metaslider/theme-error",t,!0)})),this.loadingCustom=this.proUser,this.proUser&&Jc.get("themes/custom",{params:{action:"ms_get_custom_themes"}}).then((t=>{this.customThemes="object"==typeof t.data.data?t.data.data:{},this.loadingCustom=!1})).catch((t=>{this.loadingCustom=!1,this.notifyError("metaslider/theme-error",t,!0)}))},selectTheme(t){this.selectedTheme=this.selectedTheme===t?{}:t},removeTheme(){this.selectedTheme={},this.setTheme()},setTheme(){this.notifyInfo("metaslider/theme-updating",this.__("Saving theme...","ml-slider")),this.$refs.themesModal.close(),Object.keys(this.selectedTheme).length&&Object.is(this.selectedTheme.folder,this.current.theme.folder)?this.notifySuccess("metaslider/theme-updated",this.__("Theme saved","ml-slider"),!0):(this.$store.commit("slideshows/updateTheme",this.selectedTheme),Jc.post("themes/set",_d().stringify({action:"ms_set_theme",slideshow_id:this.current.id,theme:this.selectedTheme})).then((t=>{this.notifySuccess("metaslider/theme-updated",this.__("Theme saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/theme-error",t,!0)})))},openModal(){this.hoveredTheme=this.selectedTheme||this.current.theme;this.is_open=!0,this.$refs.themesModal.open("all")},openPreview(){Kc.$emit("metaslider/preview",{slideshowId:this.current.id,themeId:this.selectedTheme?this.selectedTheme.folder:""})},updateSupportedStatus(){if(!this.current.id||void 0===this.currentThemeSupports)return!0;let t=document.querySelector('input[name="settings[type]"]:checked');this.unsupportedSliderType=!!this.currentThemeSupports&&-1===this.currentThemeSupports.indexOf(t.value)},themeStub(){return{description:null,folder:null,images:[],supports:[],tags:[],title:null,type:null}},showPremiumThemeAd(t,e){this.nonSelectablePremiumTheme(t)&&(this.revealThemeAd=e)},hidePremiumThemeAd(t){this.nonSelectablePremiumTheme(t)&&(this.revealThemeAd=null)},nonSelectablePremiumTheme(t){return!this.proUser&&"premium"===t}}},yf=wf,bf=n(2339),_f={insert:"head",singleton:!1},xf=(Kd()(bf.Z,_f),bf.Z.locals,Ld(yf,(function(){var t=this,e=t._self._c;return t.current.id?e("section",{staticClass:"theme-select-module",class:{unsupported:t.unsupportedSliderType}},[t.hasThemeSet?e("p",[t._v("\n\t\t\t"+t._s(t.__("Slideshow Theme","ml-slider"))),e("span",[t._v(": "+t._s(t.current.theme.title))])]):t._e(),t._v(" "),e("div",{staticClass:"inside wp-clearfix metaslider-theme-viewer",class:{"ms-modal-open":t.is_open}},[t.hasThemeSet&&t.unsupportedSliderType?e("p",{staticClass:"slider-not-supported-warning"},[e("svg",{staticClass:"inline w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"}})]),t._v("\n\t\t\t\t"+t._s(t.__("This theme is not officially supported by the slider you chose. Your results might vary.","ml-slider"))+"\n\t\t\t")]):t._e(),t._v(" "),t.hasThemeSet?e("div",{staticClass:"ms-current-theme"},[e("button",{staticClass:"button-link change-theme-img-button",staticStyle:{width:"100%","text-decoration":"none"},attrs:{type:"button"},on:{click:t.openModal}},["custom"==t.current.theme.type?e("div",{staticClass:"custom-theme-single"},[e("span",{staticClass:"custom-subtitle"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Custom theme","ml-slider"))+"\n\t\t\t\t\t\t")]),t._v("\n\t\t\t\t\t\t"+t._s(t.current.theme.title)+"\n\t\t\t\t\t")]):e("div",[t.current.theme.screenshot_dir?e("img",{attrs:{src:t.current.theme.screenshot_dir+"/screenshot.png",alt:t.current.theme.title}}):e("img",{attrs:{src:t.themeDirectoryUrl+t.current.theme.folder+"/screenshot.png",alt:t.current.theme.title}})])]),t._v(" "),e("button",{staticClass:"button-link remove-theme",attrs:{type:"button"},on:{click:t.removeTheme}},[t._v(t._s(t.__("Remove","ml-slider"))+"\n\t\t\t\t")]),t._v(" "),e("button",{staticClass:"button-link change-theme",attrs:{type:"button"},on:{click:t.openModal}},[t._v(t._s(t.__("Change","ml-slider"))+"\n\t\t\t\t")])]):e("div",[e("p",[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!","ml-slider"))+"\n\t\t\t\t")]),t._v(" "),Object.keys(t.themes).length||Object.keys(t.customThemes).length?e("button",{staticClass:"button",attrs:{type:"button"},on:{click:t.openModal}},[t._v(t._s(t.__("Select a custom theme","ml-slider"))+"\n\t\t\t\t")]):t._e()]),t._v(" "),e("sweet-modal",{ref:"themesModal",attrs:{"hide-close-button":!0,blocking:!0,"pulse-on-block":!1,"overlay-theme":"dark"},on:{close:function(e){t.is_open=!1}}},[e("button",{attrs:{slot:"box-action"},on:{click:function(e){return e.preventDefault(),t.$refs.themesModal.close()}},slot:"box-action"},[e("svg",{staticClass:"w-6 -mt-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])]),t._v(" "),e("sweet-modal-tab",{attrs:{id:"all",title:t.__("All themes","ml-slider")}},[t.loading||t.loadingCustom?e("div",[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Loading...","ml-slider"))+"\n\t\t\t\t\t")]):t._e(),t._v(" "),t.themes&&Object.keys(t.themes).length||Object.keys(t.customThemes).length&&t.proUser?[e("div",{staticClass:"columns"},[e("div",{staticClass:"theme-list-column"},[e("ul",{staticClass:"ms-image-selector regular-themes"},[t._l(t.themes,(function(n){return t.themes&&Object.keys(t.themes).length?e("li",{key:n.folder,class:{"a-theme":!0,selected:t.selectedTheme.folder===n.folder,"unlock-pro-theme-ad":t.nonSelectablePremiumTheme(n.type)},attrs:{role:"checkbox"},on:{mouseover:function(e){t.hoveredTheme=n,t.showPremiumThemeAd(n.type,n.folder)},mouseout:function(e){t.hoveredTheme=t.selectedTheme},mouseleave:function(e){return t.hidePremiumThemeAd(n.type)},click:function(e){!t.nonSelectablePremiumTheme(n.type)&&t.selectTheme(n)}}},[e("span",[t.revealThemeAd===n.folder?e("div",{staticClass:"custom-theme-single upgrade-pro-theme-ad"},[e("h3",{staticClass:"text-white mb-3"},[t._v(t._s(t.__("Get MetaSlider Pro!","ml-slider")))]),t._v(" "),e("p",{staticClass:"text-white font-normal text-sm mb-3"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Upgrade now to unlock this theme!","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t\t\t\t")]),t._v(" "),e("a",{staticClass:"w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base",attrs:{href:t.hoplink,target:"_blank"}},[t._v(t._s(t.__("Upgrade now","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external border-0"})])]):t._e(),t._v(" "),n.screenshot_dir?e("img",{attrs:{src:n.screenshot_dir+"/screenshot.png",alt:n.title}}):e("img",{attrs:{src:t.themeDirectoryUrl+n.folder+"/screenshot.png",alt:n.title}})])]):t._e()})),t._v(" "),Object.keys(t.customThemes).length&&t.proUser?t._l(t.customThemes,(function(n){return e("li",{key:n.folder,class:{"a-theme":!0,selected:t.selectedTheme.folder==n.folder},attrs:{role:"checkbox"},on:{mouseover:function(e){t.hoveredTheme=n},mouseout:function(e){t.hoveredTheme=t.selectedTheme},click:function(e){return t.selectTheme(n)}}},[e("span",[e("div",{staticClass:"custom-theme-single"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(n.title)+"\n\t\t\t\t\t\t\t\t\t\t\t\t")])])])})):Object.keys(t.customThemes).length||!t.proUser||t.loadingCustom?[e("li",{staticClass:"a-theme unlock-pro-custom-themes-ad"},[e("span",[e("div",{staticClass:"custom-theme-single upgrade-pro-theme-ad"},[e("h3",{staticClass:"text-white mb-3"},[t._v(t._s(t.__("Get MetaSlider Pro!","ml-slider")))]),t._v(" "),e("p",{staticClass:"text-white font-normal text-sm mb-3"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Upgrade now to build your own custom themes!","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t\t\t\t\t")]),t._v(" "),e("a",{staticClass:"w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base",attrs:{href:t.hoplink,target:"_blank"}},[t._v(t._s(t.__("Upgrade now","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external border-0"})])])])])]:[e("li",{staticClass:"a-theme"},[e("span",[e("div",{staticClass:"custom-theme-single upgrade-pro-theme-ad"},[e("h3",{staticClass:"text-white mb-3"},[t._v(t._s(t.__("MetaSlider Pro is installed!","ml-slider")))]),t._v(" "),e("p",{staticClass:"text-white font-normal text-sm mb-3"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("You can create your own themes with our theme editor","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t\t\t\t\t")]),t._v(" "),e("a",{staticClass:"w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base",attrs:{href:t.themeEditorLink}},[t._v(t._s(t.__("Get started","ml-slider")))])])])])]],2)]),t._v(" "),e("div",{staticClass:"theme-details-column"},[t.showThemeDetails&&"custom"!==t.hoveredTheme.type?[e("div",[e("h1",{staticClass:"metaslider-theme-title",attrs:{slot:"button"},domProps:{textContent:t._s(t.hoveredTheme.title)},slot:"button"}),t._v(" "),t.hoveredTheme.description?[e("div",{staticClass:"ms-theme-description"},[e("h2",[t._v(t._s(t.__("Theme Details","ml-slider")))]),t._v(" "),e("p",{domProps:{innerHTML:t._s(t.hoveredTheme.description)}})])]:t._e(),t._v(" "),t.hoveredTheme.instructions?[e("div",{staticClass:"ms-theme-instructions"},[e("h2",[t._v(t._s(t.__("Theme Instructions","ml-slider")))]),t._v(" "),e("p",{domProps:{innerHTML:t._s(t.hoveredTheme.instructions)}})])]:t._e()],2),t._v(" "),t.hoveredTheme&&t.hoveredTheme.tags&&t.hoveredTheme.tags.length?e("div",[e("h3",[t._v(t._s(t.__("Tags","ml-slider")))]),t._v(" "),e("ul",{staticClass:"ms-theme-tags"},t._l(t.hoveredTheme.tags,(function(n,r){return e("li",{key:r,domProps:{textContent:t._s(n)}})})),0)]):t._e()]:"custom"===t.hoveredTheme.type?[e("div",[e("h1",{staticClass:"metaslider-theme-title"},[t._v(t._s(t.hoveredTheme.title))]),t._v(" "),e("div",{staticClass:"ms-theme-description"},[e("h2",[t._v(t._s(t.__("Theme Details","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("This theme was created through the theme editor.","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("If no theme is selected we will use the default theme provided by the slider plugin","ml-slider")))])])])]:[e("div",[e("h1",{staticClass:"metaslider-theme-title"},[t._v(t._s(t.__("How To Use","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("Select a theme on the left to use on this slideshow. Click the theme for more details.","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("If no theme is selected we will use the default theme provided by the slider plugin","ml-slider")))])])]],2)])]:[e("div",{staticClass:"free-themes-not-found"},[e("h1",[t._v(t._s(t.__("Error: No themes were found.","ml-slider")))])])]],2),t._v(" "),e("template",{slot:"button"},[e("div",[t.sliderTypeNotSupported?e("span",{staticClass:"slider-not-supported-warning"},[e("svg",{staticClass:"inline w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"}})]),t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("This theme is not officially supported by the slider you chose. Your results might vary.","ml-slider")))]):t._e()]),t._v(" "),e("div",{staticClass:"flex items-center"},[e("button",{staticClass:"flex items-center m-0 mr-1 text-gray-darker",attrs:{title:t.__("Preview slideshow","ml-slider")},on:{click:function(e){return e.preventDefault(),t.openPreview.apply(null,arguments)}}},[e("svg",{staticClass:"w-6 inline mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"}})]),t._v("\n                            "+t._s(t.__("Preview","ml-slider"))+"\n\t\t\t\t\t\t")]),t._v(" "),e("button",{staticClass:"button button-primary",attrs:{disabled:!t.selectedTheme.folder},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.setTheme.apply(null,arguments)}}},[t._v(t._s(t.__("Select","ml-slider"))+"\n\t\t\t\t\t\t")])])])],2)],1)]):t._e()}),[],!1,null,null,null)),kf=xf.exports;er.use(cf);var Sf=n(9214),Cf=n.n(Sf),Of="undefined"!=typeof navigator&&navigator.userAgent.toLowerCase().indexOf("firefox")>0;function Tf(t,e,n,r){t.addEventListener?t.addEventListener(e,n,r):t.attachEvent&&t.attachEvent("on".concat(e),(function(){n(window.event)}))}function Ef(t,e){for(var n=e.slice(0,e.length-1),r=0;r<n.length;r++)n[r]=t[n[r].toLowerCase()];return n}function jf(t){"string"!=typeof t&&(t="");for(var e=(t=t.replace(/\s/g,"")).split(","),n=e.lastIndexOf("");n>=0;)e[n-1]+=",",e.splice(n,1),n=e.lastIndexOf("");return e}for(var Af={backspace:8,"⌫":8,tab:9,clear:12,enter:13,"↩":13,return:13,esc:27,escape:27,space:32,left:37,up:38,right:39,down:40,del:46,delete:46,ins:45,insert:45,home:36,end:35,pageup:33,pagedown:34,capslock:20,num_0:96,num_1:97,num_2:98,num_3:99,num_4:100,num_5:101,num_6:102,num_7:103,num_8:104,num_9:105,num_multiply:106,num_add:107,num_enter:108,num_subtract:109,num_decimal:110,num_divide:111,"⇪":20,",":188,".":190,"/":191,"`":192,"-":Of?173:189,"=":Of?61:187,";":Of?59:186,"'":222,"[":219,"]":221,"\\":220},Pf={"⇧":16,shift:16,"⌥":18,alt:18,option:18,"⌃":17,ctrl:17,control:17,"⌘":91,cmd:91,command:91},Mf={16:"shiftKey",18:"altKey",17:"ctrlKey",91:"metaKey",shiftKey:16,ctrlKey:17,altKey:18,metaKey:91},If={16:!1,18:!1,17:!1,91:!1},Lf={},$f=1;$f<20;$f++)Af["f".concat($f)]=111+$f;var Df=[],Nf=!1,Ff="all",Bf=[],Rf=function(t){return Af[t.toLowerCase()]||Pf[t.toLowerCase()]||t.toUpperCase().charCodeAt(0)};function zf(t){Ff=t||"all"}function Uf(){return Ff||"all"}var Vf=function(t){var e=t.key,n=t.scope,r=t.method,i=t.splitKey,o=void 0===i?"+":i;jf(e).forEach((function(t){var e=t.split(o),i=e.length,s=e[i-1],a="*"===s?"*":Rf(s);if(Lf[a]){n||(n=Uf());var l=i>1?Ef(Pf,e):[];Lf[a]=Lf[a].filter((function(t){return!((!r||t.method===r)&&t.scope===n&&function(t,e){for(var n=t.length>=e.length?t:e,r=t.length>=e.length?e:t,i=!0,o=0;o<n.length;o++)-1===r.indexOf(n[o])&&(i=!1);return i}(t.mods,l))}))}}))};function Hf(t,e,n,r){var i;if(e.element===r&&(e.scope===n||"all"===e.scope)){for(var o in i=e.mods.length>0,If)Object.prototype.hasOwnProperty.call(If,o)&&(!If[o]&&e.mods.indexOf(+o)>-1||If[o]&&-1===e.mods.indexOf(+o))&&(i=!1);(0!==e.mods.length||If[16]||If[18]||If[17]||If[91])&&!i&&"*"!==e.shortcut||!1===e.method(t,e)&&(t.preventDefault?t.preventDefault():t.returnValue=!1,t.stopPropagation&&t.stopPropagation(),t.cancelBubble&&(t.cancelBubble=!0))}}function qf(t,e){var n=Lf["*"],r=t.keyCode||t.which||t.charCode;if(Wf.filter.call(this,t)){if(93!==r&&224!==r||(r=91),-1===Df.indexOf(r)&&229!==r&&Df.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach((function(e){var n=Mf[e];t[e]&&-1===Df.indexOf(n)?Df.push(n):!t[e]&&Df.indexOf(n)>-1?Df.splice(Df.indexOf(n),1):"metaKey"===e&&t[e]&&3===Df.length&&(t.ctrlKey||t.shiftKey||t.altKey||(Df=Df.slice(Df.indexOf(n))))})),r in If){for(var i in If[r]=!0,Pf)Pf[i]===r&&(Wf[i]=!0);if(!n)return}for(var o in If)Object.prototype.hasOwnProperty.call(If,o)&&(If[o]=t[Mf[o]]);t.getModifierState&&(!t.altKey||t.ctrlKey)&&t.getModifierState("AltGraph")&&(-1===Df.indexOf(17)&&Df.push(17),-1===Df.indexOf(18)&&Df.push(18),If[17]=!0,If[18]=!0);var s=Uf();if(n)for(var a=0;a<n.length;a++)n[a].scope===s&&("keydown"===t.type&&n[a].keydown||"keyup"===t.type&&n[a].keyup)&&Hf(t,n[a],s,e);if(r in Lf)for(var l=0;l<Lf[r].length;l++)if(("keydown"===t.type&&Lf[r][l].keydown||"keyup"===t.type&&Lf[r][l].keyup)&&Lf[r][l].key){for(var c=Lf[r][l],u=c.splitKey,d=c.key.split(u),f=[],p=0;p<d.length;p++)f.push(Rf(d[p]));f.sort().join("")===Df.sort().join("")&&Hf(t,c,s,e)}}}function Wf(t,e,n){Df=[];var r=jf(t),i=[],o="all",s=document,a=0,l=!1,c=!0,u="+",d=!1;for(void 0===n&&"function"==typeof e&&(n=e),"[object Object]"===Object.prototype.toString.call(e)&&(e.scope&&(o=e.scope),e.element&&(s=e.element),e.keyup&&(l=e.keyup),void 0!==e.keydown&&(c=e.keydown),void 0!==e.capture&&(d=e.capture),"string"==typeof e.splitKey&&(u=e.splitKey)),"string"==typeof e&&(o=e);a<r.length;a++)i=[],(t=r[a].split(u)).length>1&&(i=Ef(Pf,t)),(t="*"===(t=t[t.length-1])?"*":Rf(t))in Lf||(Lf[t]=[]),Lf[t].push({keyup:l,keydown:c,scope:o,mods:i,shortcut:r[a],method:n,key:r[a],splitKey:u,element:s});void 0!==s&&!function(t){return Bf.indexOf(t)>-1}(s)&&window&&(Bf.push(s),Tf(s,"keydown",(function(t){qf(t,s)}),d),Nf||(Nf=!0,Tf(window,"focus",(function(){Df=[]}),d)),Tf(s,"keyup",(function(t){qf(t,s),function(t){var e=t.keyCode||t.which||t.charCode,n=Df.indexOf(e);if(n>=0&&Df.splice(n,1),t.key&&"meta"===t.key.toLowerCase()&&Df.splice(0,Df.length),93!==e&&224!==e||(e=91),e in If)for(var r in If[e]=!1,Pf)Pf[r]===e&&(Wf[r]=!1)}(t)}),d))}var Zf={getPressedKeyString:function(){return Df.map((function(t){return e=t,Object.keys(Af).find((function(t){return Af[t]===e}))||function(t){return Object.keys(Pf).find((function(e){return Pf[e]===t}))}(t)||String.fromCharCode(t);var e}))},setScope:zf,getScope:Uf,deleteScope:function(t,e){var n,r;for(var i in t||(t=Uf()),Lf)if(Object.prototype.hasOwnProperty.call(Lf,i))for(n=Lf[i],r=0;r<n.length;)n[r].scope===t?n.splice(r,1):r++;Uf()===t&&zf(e||"all")},getPressedKeyCodes:function(){return Df.slice(0)},isPressed:function(t){return"string"==typeof t&&(t=Rf(t)),-1!==Df.indexOf(t)},filter:function(t){var e=t.target||t.srcElement,n=e.tagName,r=!0;return!e.isContentEditable&&("INPUT"!==n&&"TEXTAREA"!==n&&"SELECT"!==n||e.readOnly)||(r=!1),r},trigger:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"all";Object.keys(Lf).forEach((function(n){Lf[n].filter((function(n){return n.scope===e&&n.shortcut===t})).forEach((function(t){t&&t.method&&t.method()}))}))},unbind:function(t){if(void 0===t)Object.keys(Lf).forEach((function(t){return delete Lf[t]}));else if(Array.isArray(t))t.forEach((function(t){t.key&&Vf(t)}));else if("object"==typeof t)t.key&&Vf(t);else if("string"==typeof t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];var i=n[0],o=n[1];"function"==typeof i&&(o=i,i=""),Vf({key:t,scope:i,method:o,splitKey:"+"})}},keyMap:Af,modifier:Pf,modifierMap:Mf};for(var Yf in Zf)Object.prototype.hasOwnProperty.call(Zf,Yf)&&(Wf[Yf]=Zf[Yf]);if("undefined"!=typeof window){var Gf=window.hotkeys;Wf.noConflict=function(t){return t&&window.hotkeys===Wf&&(window.hotkeys=Gf),Wf},window.hotkeys=Wf}function Jf(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Kf(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Xf={props:{},data(){return{html:"",slideshowId:"",theme_id:"",iframeLoaded:!1,errorMessage:"",previewIframe:{},overlayTheme:"dark",showFullwidth:!1,notFullySupported:!("srcdoc"in document.createElement("iframe")),resizeEvent:{}}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Jf(Object(n),!0).forEach((function(e){Kf(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Jf(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({lightsOn(){return"dark"!==this.overlayTheme},maxWidth(){let t=parseInt(document.getElementsByName("settings[width]")[0].value,10);return!this.showFullwidth&&t?t+"px":"100%"}},nd({current:"slideshows/getCurrent"})),mounted(){Kc.$on("metaslider/open-preview",(t=>{let{slideshowId:e,themeId:n}=t;this.openPreview(e,n)})),Wf("alt+p",(()=>this.handleOpeningPreviewByKeyboard()))},methods:{hasSlides(){return document.querySelector("tr.slide:not(.ms-deleted)")},openPreview(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!this.hasSlides())return Kc.$emit("import-notice",e||this.current.theme.folder),!1;document.addEventListener("keyup",this.handleKeyups),this.showFullwidth=!1,this.$refs.preview.open(),this.fetchIframe(t,e)},closePreview(){this.$refs.preview.close(),this.html="",this.iframeLoaded=!1,this.errorMessage="",document.removeEventListener("keyup",this.handleKeyups)},fetchIframe(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.errorMessage="",Jc.get("slideshow/preview",{params:{action:"ms_get_preview",theme_slug:e||this.current.theme.folder,slideshow_id:t||this.current.id,theme_id:e||this.current.theme.folder}}).then((t=>{this.html=t.data.data,this.$nextTick((()=>{Cf().set(document.getElementById("iframe-"+this._uid)),this.notFullySupported&&console.log(document.getElementById("iframe-"+this._uid))})),this.notifySuccess("metaslider/preview-loaded","Preview loaded")})).catch((t=>{this.iframeLoaded=!0,this.errorMessage=this.getErrorMessage(t.response),this.notifyError("metaslider/preview-error",t)}))},setupIframe(t){this.previewIframe={window:t.target.contentWindow,document:t.target.contentDocument,container:t.target.contentDocument.getElementById("preview-container"),slideshow:t.target.contentDocument.querySelector(".metaslider")},this.previewIframe.document.addEventListener("keyup",this.handleKeyups),this.previewIframe.slideshow.style.width="100%","function"!=typeof window.Event?(this.resizeEvent=this.previewIframe.window.document.createEvent("UIEvents"),this.resizeEvent.initUIEvent("resize",!0,!1,window,0)):this.resizeEvent=new Event("resize"),document.getElementsByName("settings[carouselMode]")[0].checked&&this.toggleFullwidth(),this.previewIframe.window.dispatchEvent(this.resizeEvent),this.iframeLoaded=!0},toggleFullwidth(){this.showFullwidth=!this.showFullwidth,this.previewIframe.container.style.maxWidth=this.maxWidth,this.previewIframe.slideshow.style.maxWidth=this.maxWidth,this.previewIframe.window.dispatchEvent(this.resizeEvent)},toggleLights(){this.overlayTheme="dark"===this.overlayTheme?"light":"dark"},handleKeyups(t){70===t.keyCode&&this.toggleFullwidth(),76===t.keyCode&&this.toggleLights(),27===t.keyCode&&this.closePreview()},handleOpeningPreviewByKeyboard(){return!this.$parent.saving&&(!document.getElementById("preview-component").length&&void Kc.$emit("metaslider/preview"))}}},Qf=Xf,tp=n(2916),ep={insert:"head",singleton:!1},np=(Kd()(tp.Z,ep),tp.Z.locals,Ld(Qf,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"h-full z-max relative",class:{"ms-has-error":t.errorMessage.length},attrs:{id:"preview-component"}},[e("sweet-modal",{ref:"preview",class:{"control-light":t.lightsOn},attrs:{"overlay-theme":t.overlayTheme,"modal-theme":t.overlayTheme,blocking:!0,"pulse-on-block":!1,"hide-close-button":""}},[e("div",{staticClass:"flex w-full bg-gray-light fixed top-0 left-0 right-0 h-8 items-center justify-between",attrs:{slot:"box-action"},slot:"box-action"},[e("div",{staticClass:"flex h-full"},[e("h2",{staticClass:"font-bold flex items-center h-full m-0 pl-6 pr-8 relative overflow-hidden uppercase leading-normal",class:{"bg-white text-black":"dark"!==t.overlayTheme,"bg-black text-white":"dark"===t.overlayTheme}},[t._v("\n                        "+t._s(t.__("Preview","ml-slider"))+"\n                    ")]),t._v(" "),e("button",{staticClass:"lightbulb w-10 px-2 hover:bg-black hover:text-white hover:p-px transition duration-200",class:{"bg-black text-white p-px":"dark"!==t.overlayTheme,"bg-transparent text-black":"dark"===t.overlayTheme},attrs:{title:t.__("Toggle overlay type","ml-slider")+" (L)"},on:{click:t.toggleLights}},[e("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})])]),t._v(" "),e("button",{staticClass:"w-10 px-2 hover:bg-black hover:text-white hover:p-px transition duration-200",class:{"bg-black text-white p-px":t.showFullwidth,"bg-transparent text-black":!t.showFullwidth},attrs:{title:t.__("Toggle full width","ml-slider")+" (F)"},on:{click:t.toggleFullwidth}},[t.showFullwidth?e("span",{staticClass:"dashicons dashicons-editor-contract w-full"}):e("span",{staticClass:"dashicons dashicons-editor-expand"})])]),t._v(" "),e("button",{staticClass:"mr-2 rtl:ml-2 rtl:mr-0 w-6 text-black",attrs:{title:t.__("Exit preview","ml-slider")+" (ESC)"},on:{click:t.closePreview}},[e("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])])]),t._v(" "),""!==t.html?e("iframe",{class:{invisible:!t.iframeLoaded},attrs:{id:"iframe-"+t._uid,srcdoc:t.html,frameborder:"0"},on:{load:t.setupIframe}}):e("div",[t.iframeLoaded||t.errorMessage.length?t._e():e("span",[t._v("\n                    "+t._s(t.__("Loading...","ml-slider"))+"\n                ")]),t._v(" "),t.errorMessage.length?e("p",{staticClass:"ms-error",domProps:{textContent:t._s(t.errorMessage)}}):t._e(),t._v(" "),t.notFullySupported?e("p",{staticClass:"ms-feature-not-supported"},[t._v("\n                    "+t._s(t.__("This feature is not fully supported in this browser.","ml-slider"))+"\n                ")]):t._e()])])],1)}),[],!1,null,null,null).exports);function rp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ip(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?rp(Object(n),!0).forEach((function(e){op(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):rp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function op(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var sp=Ld({props:{},data(){return{}},mounted(){let t=window.jQuery;t(".metaslider .ms-edit-slideshow--trashed-slides table#metaslider-slides-list td.col-2").on("click",(function(){Kc.$emit("metaslider/cant-edit-trashed-slide")})),t("#post-body").hasClass("ms-edit-slideshow--trashed-slides")||(t(".metaslider table#metaslider-slides-list > tbody").sortable({helper:function(e,n){return n.children().each((function(){t(this).width(t(this).width())})),n},handle:"td.col-1",start:(e,n)=>{t("#metaslider-slides-list").find("textarea.wysiwyg").each((function(){tinymce.get(t(this).attr("id")).destroy(),t(this).attr("disabled",!0)}))},stop:(e,n)=>{t("#metaslider-slides-list").find("textarea.wysiwyg").each((function(){const e=t(this).data("type"),n=t(this).attr("id");if(e.length&&n.length){const r=metaslider.tinymce.find((t=>t.type===e));void 0===r?console.error(`${e} was not found in metaslider.tinymce object!`):(t(this).attr("disabled",!1),tinymce.init(ip(ip({},{selector:`#${n}`}),r.configuration)))}})),Kc.$emit("metaslider/save")}}),t(".metaslider-ui").on("keypress","ul.tabs > li > a",(function(e){32===e.which&&(e.preventDefault(),t(":focus").trigger("click"))})),t(".metaslider-ui").on("click","ul.tabs > li > a",(function(e){e.preventDefault();var n=t(this);n.parents(".metaslider-ui-inner").children(".tabs-content").find("div.tab").hide(),n.parents(".metaslider-ui-inner").children(".tabs-content").find("div."+n.data("tab_id")).show(),n.parent().addClass("selected").siblings().removeClass("selected")}))),t(".metaslider-ui").on("change","input.width, input.height",(function(e){t(".metaslider table#metaslider-slides-list").trigger("metaslider/size-has-changed",{width:t("input.width").val(),height:t("input.height").val()})}))}},undefined,undefined,!1,null,null,null).exports,ap=Ld({props:{id:{type:[Number,String],default:null}},data(){return{}},mounted(){}},undefined,undefined,!1,null,null,null).exports;function lp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function cp(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?lp(Object(n),!0).forEach((function(e){up(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):lp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function up(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var dp={props:{imageCaption:{type:[String],default:""},imageDescription:{type:[String],default:""},override:{type:[String],default:""},captionSource:{type:[String],default:"image-caption"}},data(){return{sources:{"image-caption":this.cleanupQuotes(this.imageCaption),"image-description":this.cleanupQuotes(this.imageDescription),override:this.override},language:{},selectedSource:"",editorInstance:!1,editorContent:null,textareaContent:""}},created(){this.selectedSource=this.captionSource?this.captionSource:"image-caption"},mounted(){Kc.$on("metaslider/image-meta-updated",((t,e)=>this.updateMetadata(t,e))),window.jQuery(window).on("metaslider/image-meta-updated",((t,e,n)=>this.updateMetadata(e,n))),this.language={"image-caption":this.__("Media caption","ml-slider"),"image-description":this.__("Media description","ml-slider"),override:this.__("Manual entry","ml-slider")},this.textareaContent=this.convertStyleAttributes(this.sources.override)},methods:{maybeFocusTextarea(t){"override"===t.target.defaultValue&&setTimeout((()=>document.getElementById("caption_override_"+this.$parent.id).focus()),300)},updateMetadata(t,e){console.log(t),t.includes(this.$parent.id)&&(this.sources["image-caption"]=e.caption,this.sources["image-description"]=e.description)},initializeTinyMCE(){this.$nextTick((function(){if(!this.editorInstance){if("undefined"==typeof tinymce)return void console.error("TinyMCE is not defined!");const t=`caption_override_${this.$parent.id}`;void 0===metaslider.tinymce.find((t=>"image"===t.type))&&metaslider.tinymce.push({type:"image",configuration:{toolbar:["undo redo bold italic forecolor link unlink alignleft aligncenter alignright styles code"],menubar:!1,plugins:"code link",branding:!1,promotion:!1,height:240,preview_styles:!1,forced_root_block:"div",convert_urls:!1,setup:function(t){t.on("input",(function(){e(t)})),t.on("ExecCommand",(function(){e(t)}));const e=function(t){const e=document.getElementById(t.id);e&&(e.value=t.getContent())}}}}),tinymce.init(cp(cp({},{selector:`#${t}`,init_instance_callback:t=>{if(this.editorContent){const e=function(t){const e=document.getElementById(t.id);e&&(e.value=t.getContent())};t.setContent(this.editorContent),e(t)}}}),metaslider.tinymce.find((t=>"image"===t.type)).configuration)),this.editorInstance=!0}}))},destroyTinyMCE(){if(this.editorInstance){const t=`caption_override_${this.$parent.id}`;this.editorContent=tinymce.get(t).getContent(),tinymce.get(t).destroy(),this.editorInstance=!1}},convertStyleAttributes(t){return t.replace(/style=\\(".*?"|'.*?')/g,(t=>t.replace(/\\(?="|')/g,"")))},cleanupQuotes(t){return t.replace(/\\&#039;|\\'|\\\"/g,(t=>"\\&#039;"===t||"\\'"===t?"'":'\\"'===t?'"':void 0))}},watch:{selectedSource(t,e){"undefined"!=typeof tinymce?"override"===t&&"override"!==e?this.initializeTinyMCE():"override"!==t&&"override"===e&&this.destroyTinyMCE():console.error("TinyMCE is not defined!")}}},fp=Ld(dp,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"row caption mb-0"},[e("div",{staticClass:"flex justify-between"},[e("label",{staticClass:"mr-4 caption-label"},[t._v("\n\t\t\t"+t._s(t.__("Caption","ml-slider"))+"\n\t\t\t"),e("span",{staticClass:"dashicons dashicons-info tipsy-tooltip-top",staticStyle:{"line-height":"1.2em"},attrs:{title:t.__("Enter text that will appear with your image slide.","ml-slider")}})]),t._v(" "),e("div",{staticClass:"mb-1 mr-1",attrs:{"aria-labelledby":"caption_source_"+t.$parent.id,role:"radiogroup"}},t._l(t.sources,(function(n,r){return e("div",{key:r,staticClass:"whitespace-no-wrap inline-block mb-1 px-1"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.selectedSource,expression:"selectedSource"}],staticClass:"m-0",attrs:{id:r+"-"+t.$parent.id,name:"attachment["+t.$parent.id+"][caption_source]",type:"radio"},domProps:{value:r,checked:t._q(t.selectedSource,r)},on:{click:t.maybeFocusTextarea,change:function(e){t.selectedSource=r}}}),t._v(" "),e("label",{staticClass:"m-0 truncate",attrs:{for:r+"-"+t.$parent.id,title:t.language[r]}},[t._v("\n\t\t\t\t\t"+t._s(t.language[r])+"\n\t\t\t\t")])])})),0)]),t._v(" "),"override"!==t.selectedSource?e("textarea",{staticClass:"tipsy-tooltip-top",attrs:{title:t.__("Automatically updates directly from the WP Media Library","ml-slider"),readonly:""},domProps:{value:t.sources[t.selectedSource].length?t.sources[t.selectedSource]:t.__("No default was found","ml-slider")}}):t._e(),t._v(" "),"override"===t.selectedSource?e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.textareaContent,expression:"textareaContent"}],staticClass:"tipsy-tooltip-top wysiwyg",attrs:{title:t.__("You may use HTML here","ml-slider"),id:"caption_override_"+t.$parent.id,name:"attachment["+t.$parent.id+"][post_excerpt]","data-type":"image"},domProps:{value:t.textareaContent},on:{input:function(e){e.target.composing||(t.textareaContent=e.target.value)}}}):t._e()])}),[],!1,null,null,null).exports,pp={props:{},data(){return{}},computed:{loading(){return this.$parent.loadingFresh}},mounted(){if(!document.querySelector(".media-frame-content").dataset.columns){let t=document.querySelector(".attachments-browser .attachments").offsetWidth/150;document.querySelector(".media-frame-content").dataset.columns=Math.round(t)}},methods:{searchByTerm:Xc.debounce((function(){this.$parent.searchByTerm()}),500)}},hp=n(8896),mp={insert:"head",singleton:!1},gp=(Kd()(hp.Z,mp),hp.Z.locals,Ld(pp,(function(){var t=this,e=t._self._c;return e("div",{staticStyle:{height:"100%"}},[e("div",{staticClass:"media-toolbar"},[e("div",{staticClass:"media-toolbar-secondary"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"media-attachment-filters"}},[t._v(t._s(t.__("Filter by type","ml-slider")))]),t._v(" "),t.$parent.filters.length?e("select",{staticClass:"attachment-filters",staticStyle:{"min-width":"150px"}},[e("option",{attrs:{value:"all"}},[t._v(t._s(t.__("All media items","ml-slider")))]),t._v(" "),t._l(t.$parent.filters,(function(n,r){return e("option",{key:r,domProps:{value:r}},[t._v(t._s(n))])}))],2):t._e(),t._v(" "),e("span",{staticClass:"spinner"})]),t._v(" "),e("div",{staticClass:"media-toolbar-primary search-form"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"media-search-input"}},[t._v(t._s(t.__("Search Unsplash API","ml-slider")))]),t._v(" "),e("input",{directives:[{name:"model",rawName:"v-model",value:t.$parent.searchTerm,expression:"$parent.searchTerm"}],staticClass:"search",attrs:{id:"search-unsplash",placeholder:t.__("Search unsplash.com...","ml-slider"),type:"search"},domProps:{value:t.$parent.searchTerm},on:{focus:function(e){return t.notifyInfo("metaslider/unsplash-search-focused","Unsplash search was focused")},keyup:t.searchByTerm,search:t.searchByTerm,input:function(e){e.target.composing||t.$set(t.$parent,"searchTerm",e.target.value)}}})])]),t._v(" "),t.loading&&!t.$parent.errorMessage?e("div",{staticClass:"attachments ui-sortable ui-sortable-disabled"},[e("span",{staticClass:"ms-full-loading"},[e("svg",{staticClass:"w-6 ms-spin",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})])])]):t._e(),t._v(" "),t.$parent.errorMessage?e("div",{staticClass:"external-api-error"},[t._v(t._s(t.$parent.errorMessage)+"\n\t\t")]):t._e(),t._v(" "),t.loading||t.$parent.errorMessage?t._e():e("ul",{staticClass:"attachments ui-sortable ui-sortable-disabled",attrs:{tabindex:"-1"}},[t._t("media-list"),t._v(" "),t.$parent.canLoadMore?e("li",{staticClass:"attachment ms-load-more-api"},[e("div",{staticClass:"attachment-preview"},[t.$parent.loadingMore?e("span",{staticClass:"ms-loading-more-images"},[e("svg",{staticClass:"w-6 ms-spin",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})])]):e("button",{staticClass:"ms-load-more-button",on:{click:t.$parent.loadMore}},[e("svg",{staticClass:"w-6",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 6v6m0 0v6m0-6h6m-6 0H6"}})]),t._v(" "),e("span",[t._v(t._s(t.__("Load more","ml-slider")))])])])]):t._e()],2),t._v(" "),e("div",{staticClass:"media-sidebar"},[e("div",{staticClass:"ms-api-sidebar"},[e("div",{staticClass:"ms-api-photo-details"},[t._t("sidebar")],2),t._v(" "),e("div",{staticClass:"ms-api-copyright"},[t._t("copyright")],2)])])])}),[],!1,null,null,null)),vp={components:{MediaContainer:gp.exports},props:{},data(){return{errorMessage:"",canLoadMore:!1,loadingFresh:!0,loadingMore:!0,searchTerm:"",page:1,photos:[],selected:{id:null},filters:{},mediaButton:{},qualityOptions:["raw","full","regular"],upload:{title:"",caption:"",alt:"",description:"",quality:"full"}}},computed:{fileName(){return this.selected.id?this.selected.user.name.replace(" ","-").toLowerCase()+"-"+this.selected.id+"-unsplash.jpg":""}},watch:{selected(t){this.upload.caption=t.user?this.sprintf(this.__("Photo by %s on Unsplash","ml-slider"),t.user.name):this.__("Photo on Unsplash","ml-slider")}},mounted(){this.notifyInfo("metaslider/unsplash-tab-opened",this.__("Opening Unsplash tab...","ml-slider")),this.loadFreshImages()},destroyed(){this.notifyInfo("metaslider/unsplash-tab-closed",this.__("Unsplash tab closed","ml-slider"))},methods:{async getImages(){this.errorMessage="";const{data:t}=await $u.photos(this.page,this.searchTerm);if(!t.data.length)throw this.__("No photots found.","ml-slider");t.data.forEach((t=>{this.photos.some((e=>e.id===t.id))||this.photos.push(t)}))},loadFreshImages(){this.readyToLoad(!1),this.page=1,this.photos=[],this.selected={id:null},this.getImages().then((()=>this.readyToLoad())).catch((t=>{this.errorMessage=t,this.loadingFresh=!1,this.throwError(t)}))},async loadMore(){this.page++,this.loadingMore=!0,await new Promise((t=>setTimeout(t,1e3))),this.getImages().then((()=>this.readyToLoad())).catch((()=>{this.canLoadMore=!1}))},download(){return $u.download(this.selected.urls[this.upload.quality],this.selected.id)},fetchFilters(){this.filters={}},searchByTerm(){this.loadFreshImages()},readyToLoad(){let t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.canLoadMore=t,this.loadingMore=!t,this.loadingFresh=!t}}},wp=vp,yp=n(2354),bp={insert:"head",singleton:!1},_p=(Kd()(yp.Z,bp),yp.Z.locals,{components:{unsplash:Ld(wp,(function(){var t=this,e=t._self._c;return e("media-container",[e("template",{slot:"media-list"},t._l(t.photos,(function(n){return e("li",{key:n.id,staticClass:"attachment save-ready",class:{selected:t.selected===n,details:t.selected===n},attrs:{"aria-label":t.sprintf(t.__("Photo by %s","ml-slider"),n.user.name),tabindex:"0",role:"checkbox","aria-checked":"false"},on:{click:function(e){t.selected=t.selected===n?{}:n}}},[e("div",{staticClass:"attachment-preview js--select-attachment type-image subtype-jpeg",class:n.orientation},[e("div",{staticClass:"thumbnail"},[e("div",{staticClass:"centered"},[e("img",{attrs:{alt:t.sprintf(t.__("Photo by %s","ml-slider"),n.user.name),src:n.urls.thumb,draggable:"false"}})])])]),t._v(" "),e("button",{staticClass:"check",attrs:{type:"button",tabindex:"-1"}},[e("span",{staticClass:"media-modal-icon"}),t._v(" "),e("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.__("Deselect","ml-slider")))])])])})),0),t._v(" "),e("template",{slot:"sidebar"},[t.selected.id?e("div",[e("div",{staticClass:"attachment-details",attrs:{tabindex:"0"}},[e("h2",[t._v(t._s(t.__("Attachment Details","ml-slider")))]),t._v(" "),e("div",{staticClass:"attachment-info"},[e("div",{staticClass:"thumbnail thumbnail-image"},[e("img",{attrs:{src:t.selected.urls.small,alt:t.fileName,draggable:"false"}})]),t._v(" "),e("div",{staticClass:"details"},[e("div",{staticClass:"filename"},[t._v(t._s(t.fileName))]),t._v(" "),e("div",{staticClass:"dimensions"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.sprintf(t._x("%s by %s pixels","1000 by 1000 pixels","ml-slider"),t.selected.width,t.selected.height))+"\n\t\t\t\t\t\t")]),t._v(" "),e("a",{attrs:{href:t.selected.links.html,target:"_blank"}},[t._v(t._s(t.__("view original","ml-slider")))])])]),t._v(" "),e("div",{staticClass:"ms-api-user"},[e("img",{staticClass:"rtl:mr-0 rtl:ml-4",attrs:{src:t.selected.user.profile_image.medium}}),t._v(" "),e("div",{staticClass:"ms-profile-data"},[e("div",{staticClass:"ms-profile-details"},[e("h3",[t._v(t._s(t.selected.user.name))]),t._v(" "),e("p",{staticClass:"ms-user-location",domProps:{innerHTML:t._s(t.selected.user.location)}}),t._v(" "),t.selected.user.bio?e("div",{staticClass:"ms-user-bio",domProps:{innerHTML:t._s(t.selected.user.bio)}}):t._e()]),t._v(" "),e("ul",{staticClass:"ms-profile-meta"},[t.selected.user.username?e("li",[e("a",{staticClass:"ms-profile-username",attrs:{href:t.selected.user.links.html,title:t.selected.user.links.html,target:"_blank"}},[t._v(t._s(t.__("Profile","ml-slider"))+"\n\t\t\t\t\t\t\t\t")])]):t._e(),t._v(" "),t.selected.user.portfolio_url?e("li",{staticClass:"ms-user-portfolio-url"},[e("a",{attrs:{href:t.selected.user.portfolio_url,title:t.selected.user.portfolio_url,target:"_blank"}},[t._v(t._s(t.__("Portfolio","ml-slider"))+"\n\t\t\t\t\t\t\t\t")])]):t._e()])])]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Title","ml-slider")))]),t._v(" "),e("input",{directives:[{name:"model",rawName:"v-model",value:t.upload.title,expression:"upload.title"}],attrs:{type:"text"},domProps:{value:t.upload.title},on:{input:function(e){e.target.composing||t.$set(t.upload,"title",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Caption","ml-slider")))]),t._v(" "),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.upload.caption,expression:"upload.caption"}],domProps:{value:t.upload.caption},on:{input:function(e){e.target.composing||t.$set(t.upload,"caption",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Alt Text","ml-slider")))]),t._v(" "),e("input",{directives:[{name:"model",rawName:"v-model",value:t.upload.alt,expression:"upload.alt"}],attrs:{type:"text"},domProps:{value:t.upload.alt},on:{input:function(e){e.target.composing||t.$set(t.upload,"alt",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Description","ml-slider")))]),t._v(" "),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.upload.description,expression:"upload.description"}],domProps:{value:t.upload.description},on:{input:function(e){e.target.composing||t.$set(t.upload,"description",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"quality setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Quality","ml-slider")))]),t._v(" "),e("select",{directives:[{name:"model",rawName:"v-model",value:t.upload.quality,expression:"upload.quality"}],staticClass:"alignment",on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.$set(t.upload,"quality",e.target.multiple?n:n[0])}}},t._l(t.qualityOptions,(function(n){return e("option",{key:n,domProps:{value:n}},[t._v("\n\t\t\t\t\t\t\t"+t._s(n.charAt(0).toUpperCase()+n.slice(1))+"\n\t\t\t\t\t\t")])})),0)])])]):t._e()]),t._v(" "),e("template",{slot:"copyright"},[e("p",[t._v("\n\t\t\t"+t._s(t.__("All photos published on Unsplash can be used for free.","ml-slider"))+" "),e("a",{attrs:{target:"_blank",href:"https://unsplash.com/license"}},[t._v(t._s(t.__("view license","ml-slider")))])])])],2)}),[],!1,null,null,null).exports},props:{source:{type:[String],default:"unsplash"},slideshowId:{type:[String,Number],default:null},slideId:{type:[String,Number],default:null},slideType:{type:[String],default:"image"}},data(){return{page:1,component:null,mediaButton:{},ourMediaButton:{},downloading:!1,uploadPercentage:1,downloadingMessage:""}},watch:{downloading(){this.ourMediaButton.disabled=this.downloading,this.downloading&&(window.metaslider.about_to_reload=!0)}},created(){this.component=this.source},mounted(){Kc.$on("metaslider/external-api-percentage",(t=>{let{percentage:e}=t;this.uploadPercentage=e}));const t=document.querySelector(".external-media-importer");let e=t.closest(".media-modal-content");e=e.querySelector("button.clear-selection"),e&&e.click();const n=document.querySelectorAll(".attachment.save-ready.selected");n&&n.forEach((t=>{t.click()}));let r=t.closest(".media-modal-content");this.mediaButton=r.querySelector(".media-frame-toolbar .media-toolbar-primary button.media-button"),this.ourMediaButton=this.mediaButton.cloneNode(),this.ourMediaButton.classList.add("float-right","rtl:float-left"),this.ourMediaButton.innerHTML=this.mediaButton.innerHTML,this.mediaButton.parentNode.insertBefore(this.ourMediaButton,this.mediaButton),this.ourMediaButton.disabled=!1,this.mediaButton.style.visibility="hidden",this.ourMediaButton.addEventListener("click",this.interceptAddButton)},destroyed(){this.ourMediaButton.removeEventListener("click",this.interceptAddButton),this.ourMediaButton.parentNode.removeChild(this.ourMediaButton),this.mediaButton.style.visibility="visible";const t=document.getElementById("image-api-container");t&&t.parentNode.removeChild(t),window.metaslider.about_to_reload&&(delete window.metaslider.about_to_reload,window.create_slides&&window.create_slides.close(),window.update_slide_frame&&window.update_slide_frame.close())},methods:{async interceptAddButton(t){if(this.$refs["external-api"].selected.id){this.downloading=!0,this.downloadingMessage=this.__("Saving...","ml-slider");const{data:t}=await this.$refs["external-api"].download(),e=this.$refs["external-api"].upload,n=new FormData,r=this.$refs["external-api"].fileName;n.append("files["+r+"]",t,r),Object.keys(this.$refs["external-api"].upload).forEach((t=>{let i=e[t];n.append("image_data["+r+"]["+t+"]",i)})),n.append("slideshow_id",this.slideshowId),this.slideType&&n.append("slide_type",this.slideType),this.slideId&&n.append("slide_id",this.slideId),n.append("action","ms_import_images");const i=await Jc.post("import/images",n).catch((t=>{this.notifyError("metaslider/image-import-error",t,!0),this.slideId=!0,this.$destroy()}));if(this.uploadPercentage=100,this.downloadingMessage=this.__("Complete!","ml-slider"),await new Promise((t=>setTimeout(t,1500))),!this.slideId&&window.location.reload(!0),this.slideId){if(document.querySelector('[data-slide-id="'+this.slideId+'"] .thumb').style.backgroundImage="url("+i.data.data+")",this.proUser&&"local_video"===this.slideType){const t=document.querySelector("#slide-"+this.slideId+" .update-cover-image");t.style.backgroundImage="url("+i.data.data+")",t.innerHTML=""}Kc.$emit("metaslider/image-meta-updated",[""+this.slideId],this.$refs["external-api"].upload)}this.$destroy()}}}}),xp=_p,kp=n(5036),Sp={insert:"head",singleton:!1},Cp=(Kd()(kp.Z,Sp),kp.Z.locals,Ld(xp,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"attachments-browser external-media-importer"},[t.downloading?e("div",{staticClass:"ms-hero-status"},[t.uploadPercentage>0?e("div",{staticClass:"ms-upload-progress"},[e("div",{staticClass:"ms-upload-image"},[e("span",{staticClass:"attachment save-ready",staticStyle:{width:"150px",height:"150px"},attrs:{"aria-label":t.$refs["external-api"].fileName,tabindex:"0",role:"checkbox","aria-checked":"false"}},[e("div",{staticClass:"attachment-preview js--select-attachment type-image subtype-jpeg portrait"},[e("div",{staticClass:"thumbnail"},[e("div",{staticClass:"centered"},[e("img",{attrs:{src:t.$refs["external-api"].selected.urls.regular,alt:t.$refs["external-api"].fileName,draggable:"false"}})])])])])]),t._v(" "),e("div",{staticClass:"ms-progress"},[e("div",{staticClass:"ms-progress-bar",style:{width:t.uploadPercentage+"%"}}),t._v(" "),e("span",{staticClass:"text-lg"},[t._v(t._s(t.downloadingMessage?t.downloadingMessage:t.__("Crunching...","ml-slider")))])])]):t._e()]):t._e(),t._v(" "),e(t.component,{directives:[{name:"show",rawName:"v-show",value:!t.downloading,expression:"!downloading"}],ref:"external-api",tag:"component"},[e("template",{slot:"search-tools"},[t._t("search-tools")],2)],2)],1)}),[],!1,null,null,null).exports),Op=Ld({mounted(){Kc.$on("import-notice",(t=>{this.showNotice(t)}))},computed:nd({current:"slideshows/getCurrent"}),methods:{showNotice(t){zd().fire({title:this.__("Import Slides","ml-slider"),confirmButtonText:this.__("Import slides","ml-slider"),showCancelButton:!0,icon:"info",iconHtml:'<div class="dashicons dashicons-megaphone" style="transform: scale(3.5);"></div>',customClass:"shadow-lg",html:'<p class="text-base">'+this.__("You currently do not have any slides to preview. If you want, we can import some image slides for you.","ml-slider")+"</p>",showLoaderOnConfirm:!0,allowOutsideClick:()=>!zd().isLoading(),preConfirm:()=>Jc.post("import/images",_d().stringify({action:"ms_import_images",slideshow_id:this.current.id,theme_id:t})).catch((t=>{zd().showValidationMessage(t)}))}).then((t=>{t.dismiss||window.location.reload(!0)}))}},render:()=>!0},undefined,undefined,!1,null,null,null).exports,Tp={data(){return{dragAndDropCapable:!1,files:[],uploadPercentage:0,isDragHovering:!1,error:!1}},mounted(){const t=["drag","dragstart","dragend","dragover","dragenter","dragleave","drop"];this.dragAndDropCapable=this.determineDragAndDropCapable(),this.dragAndDropCapable&&(t.forEach((t=>{this.$refs.fileform.addEventListener(t,(t=>{t.preventDefault(),t.stopPropagation()}))})),this.$refs.fileform.addEventListener("drop",this.attachDropEvent))},methods:{attachDropEvent(t){this.isDragHovering=!0;for(let e=0;e<t.dataTransfer.files.length;e++)/\.(jpe?g|png|gif)$/i.test(t.dataTransfer.files[e].name)&&this.files.push(t.dataTransfer.files[e]);this.files.length||(this.isDragHovering=!1,this.error=this.__("No valid files found","ml-slider")),this.files.length&&this.submitFiles()},determineDragAndDropCapable(){let t=document.createElement("div");return("draggable"in t||"ondragstart"in t&&"ondrop"in t)&&"FormData"in window&&"FileReader"in window},submitFiles(){let t=new FormData;for(let e in this.files)t.append("files["+e+"]",this.files[e]);this.uploadPercentage=1,t.append("action","ms_import_images"),this.files.length&&Jc.post("import/images",t,{headers:{"Content-Type":"multipart/form-data"},onUploadProgress:t=>{let e=parseInt(Math.round(100*t.loaded/t.total))-20;this.uploadPercentage=e>1?e:1}}).then((t=>{console.info("MetaSlider: ",t),this.uploadPercentage=100,window.location.reload(!0)})).catch((t=>{this.uploadPercentage=0,this.isDragHovering=!1,this.$refs.fileform.removeEventListener("drop",this.attachDropEvent),this.error=this.getErrorMessage(t.response),this.notifyError("metaslider/drag-and-drop-error",t,!0)}))}}},Ep=Tp,jp=n(8720),Ap={insert:"head",singleton:!1},Pp=(Kd()(jp.Z,Ap),jp.Z.locals,Ld(Ep,(function(){var t=this,e=t._self._c;return e("div",{attrs:{id:"ms-image-drag-drop"}},[t.dragAndDropCapable?t._e():e("span",[t._v(t._s(t.__("Drag and drop interface not available.","ml-slider")))]),t._v(" "),e("form",{directives:[{name:"show",rawName:"v-show",value:t.dragAndDropCapable,expression:"dragAndDropCapable"}]},[e("div",{ref:"fileform",staticClass:"ms-drag-drop",class:{"ms-drag-hovering":t.isDragHovering||t.uploadPercentage>0,"has-error":t.error},on:{dragenter:function(e){t.isDragHovering=!0},dragleave:function(e){t.isDragHovering=!1}}},[t.uploadPercentage>0?e("div",{staticClass:"ms-upload-progress"},[e("div",{staticClass:"ms-progress"},[e("div",{staticClass:"ms-progress-bar",style:{width:t.uploadPercentage+"%"}}),t._v(" "),e("span",[t._v(t._s(t.__("Crunching...","ml-slider")))])])]):t._e()]),t._v(" "),0!==t.uploadPercentage||t.error?t._e():e("span",[t._v(t._s(t.__("Drop images here","ml-slider")))]),t._v(" "),t.error?e("span",{domProps:{textContent:t._s(t.error)}}):t._e()])])}),[],!1,null,"4f6cf952",null).exports),Mp={props:{},data(){return{}},mounted(){let t=window.jQuery;t(".useWithCaution").on("change",(function(){if(!this.checked)return alert(metaslider.useWithCaution)})),t(".metaslider-ui").on("click",".ms-toggle .hndle, .ms-toggle .handlediv",(function(){t(this).parent().toggleClass("closed")})),t(".metaslider-ui").on("keypress",".slider-lib-row label",(function(e){32===e.which&&(e.preventDefault(),t(".slider-lib-row #"+t(this).attr("for")).trigger("click"))}));var e=function(e,n,r){var i=e.is('input[type="checkbox"]')?"checkbox":"select",o="checkbox"===i&&e.is(":checked")===r,s=!("select"!==i||!(e.val()===r||Array.isArray(r)&&-1!==r.indexOf(e.val())));o||s?"#"===n.charAt(0)||"."===n.charAt(0)?t("#metaslider-slides-list").find(n).show():t(".ms-settings-table").find(`[name="settings[${n}]"]`).closest("tr").show():"#"===n.charAt(0)||"."===n.charAt(0)?t("#metaslider-slides-list").find(n).hide():t(".ms-settings-table").find(`[name="settings[${n}]"]`).closest("tr").hide()},n=function(n){t(n).each((function(){var n=t(this);JSON.parse(t(this).attr("data-dependencies")).forEach((function(r){e(n,r.show,r.when),t(document).on("change",".metaslider-ui",n,(function(){e(n,r.show,r.when)}))}))}))},r=function(e){t(".metaslider .option:not(."+e+")").attr("disabled","disabled").parents("tr").hide(),t(".metaslider .option."+e).removeAttr("disabled").parents("tr").show(),t(".metaslider input.radio:not(."+e+")").attr("disabled","disabled"),t(".metaslider input.radio."+e).removeAttr("disabled"),t(".metaslider .showNextWhenChecked:visible").closest("tr").next("tr").hide(),t(".metaslider .showNextWhenChecked:visible:checked").closest("tr").next("tr").show(),"disabled"===t(".effect option:selected").attr("disabled")&&t(".effect option:enabled:first").attr("selected","selected"),"disabled"===t(".theme option:selected").attr("disabled")&&t(".theme option:enabled:first").attr("selected","selected"),n(".ms-settings-table [data-dependencies], #metaslider-slides-list [data-dependencies]"),"flex"==e?t(".flex-setting").show():t(".flex-setting").hide()};Kc.$on(["metaslider/app-loaded","metaslider/slides-created","metaslider/slide-duplicated"],(()=>{n("#metaslider-slides-list [data-dependencies]")})),r(t(".metaslider .select-slider:checked").attr("rel"));var i=function(t){t.is(":checked")?t.closest("tr").next("tr").show():t.closest("tr").next("tr").hide()};i(t(".showNextWhenChecked")),Kc.$on("metaslider/app-loaded",(()=>{i(t(".showNextWhenChecked"))})),t(".metaslider-ui").on("change",".showNextWhenChecked",(function(){i(t(this))})),t(".metaslider-ui").on("change",".left tr.slide .crop_position",(function(){t(this).closest("tr").data("crop_changed",!0)})),t(".metaslider-ui").on("click",".select-slider",(function(){r(t(this).attr("rel"))}))}},Ip=Ld(Mp,undefined,undefined,!1,null,null,null).exports;function Lp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function $p(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Dp={props:{},data(){return{currentSavedTitle:""}},watch:{current:{immediate:!0,handler:function(t){this.currentSavedTitle=t.title}}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Lp(Object(n),!0).forEach((function(e){$p(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Lp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},nd({current:"slideshows/getCurrent"})),created(){},mounted(){},methods:{save(){if(""!=this.current.title){if(this.currentSavedTitle.trim()===this.current.title.trim())return;Md.saveSingleSlideshowSetting("title",this.current.title.trim()).then((()=>{this.notifySuccess("metaslider/title-saved",this.__("Slideshow title updated"),!0),this.currentSavedTitle=this.current.title}))}else this.notifyError("metaslider/title-saved",this.__("Please add a slideshow title"),!0)},bail(t){this.$store.commit("slideshows/updateTitle",this.currentSavedTitle),this.$nextTick((()=>{t.target.blur()}))}}},Np=Dp,Fp=n(620),Bp={insert:"head",singleton:!1},Rp=(Kd()(Fp.Z,Bp),Fp.Z.locals,Ld(Np,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-12"},[e("div",{staticClass:"relative"},[e("input",{staticClass:"h-16 text-2xl font-light rounded-none shadow-none bg-transparent border-0 border-l-4 border-transparent hover:border-gray-light hover:bg-white focus:bg-white focus:shadow-sm focus:border-gray-light rtl:border-l-0 rtl:border-r-0 rtl:ml-0 rtl:-mr-4 rtl:pl-12 rtl:pr-4",staticStyle:{width:"100%!important",transition:"background .3s ease,border-left .3s ease!important"},attrs:{id:"metaslider-current-title","data-lpignore":"true",type:"text",required:""},domProps:{value:t.current.title},on:{change:function(e){return t.$store.commit("slideshows/updateTitle",e.target.value)},keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"escape",void 0,e.key,void 0)?null:(e.preventDefault(),t.bail(e))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:e.target.blur()}],keyup:function(e){return t.$store.commit("slideshows/updateTitle",e.target.value)},blur:function(e){return t.save()}}}),t._v(" "),e("svg",{staticClass:"pointer-events-none opacity-0 transition-all duration-300 ease-in absolute m-2 w-6 top-0 right-0 text-gray rtl:left-0 rtl:right-auto",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.572L16.732 3.732z"}})])]),t._v(" "),e("transition",{attrs:{name:"pop-in-quick-top"}},[t.currentSavedTitle.trim()!==t.current.title.trim()?e("div",{staticClass:"absolute text-gray-dark -ml-4 mt-2 mb-0 text-xs",domProps:{innerHTML:t._s(t.sprintf(t.__("Press %s to save or %s to cancel.","ml-slider"),t.sprintf("<code>%s</code>",t._x("Enter","The ENTER key on a keyboard","ml-slider")),t.sprintf("<code>%s</code>",t._x("Escape","The ESCAPE key on a keyboard","ml-slider"))))}}):t._e()])],1)}),[],!1,null,null,null).exports);function zp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Up(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Vp={data(){return{useTitle:!1}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?zp(Object(n),!0).forEach((function(e){Up(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):zp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},nd({current:"slideshows/getCurrent"})),mounted(){this.$refs.shortcode.addEventListener("copy",(t=>{let e=window.getSelection().toString().split("'").map((function(t,e){return t.trim()})).join("'");t.clipboardData.setData("text/plain",e),t.preventDefault()}))},methods:{copyShortcode(t){this.selectText(t.target).copySelected()},copyAll(){this.selectText(this.$refs.shortcode).copySelected()},selectText(t){let e,n;return window.getSelection?(n=window.getSelection(),e=document.createRange(),e.selectNodeContents(t),n.removeAllRanges(),n.addRange(e)):document.body.createTextRange&&(e=document.body.createTextRange(),e.moveToElementText(t),e.select()),this},copySelected(){try{document.execCommand("copy")&&this.notifySuccess("metaslider/copy-success",this.__("Shortcode copied","ml-slider"),!0)}catch(t){this.notifySuccess("metaslider/copy-error",this.__("Shortcode unable to be copied automatically","ml-slider"),!0)}}}},Hp=Ld(Vp,undefined,undefined,!1,null,null,null).exports,qp={data(){return{component:null,filename:"",classes:"w-full max-h-screen",forceOpen:!1,showX:!0}},computed:{},mounted(){Kc.$on("metaslider/open-utility-modal",(t=>{if(!1=="render"in t)return this.notifyError("metaslider/utility-modal-opening-ui",this.__("Failed to open utility modal...","ml-slider")),!1;this.filename="filename"in t?t.filename:"Name not found",this.notifyInfo("metaslider/utility-modal-opening-ui",this.__("Opening utility modal...","ml-slider")+" ("+this.filename+")"),this.component=t,document.body.style.overflow="hidden"}))},methods:{close(){if(this.forceOpen)return this.forceOpen(),void this.$nextTick((()=>{this.forceOpen=!1}));this.notifyInfo("metaslider/utility-modal-closing-ui",this.__("Closing utility modal...","ml-slider")+" ("+this.filename+")"),this.filename="",this.component=null,document.body.style.overflow="initial"}}},Wp=Ld(qp,(function(){var t=this,e=t._self._c;return t.component?e("div",{staticClass:"fixed w-full h-full inset-0 bg-white-70 flex items-center justify-center p-8 md:p-16",staticStyle:{"z-index":"99999"},attrs:{role:"dialog","aria-modal":"true"}},[e("div",{staticClass:"relative bg-white shadow-xl mt-16 md:mt-0",class:t.classes},[e(t.component,{tag:"component"}),t._v(" "),t.showX?e("button",{staticClass:"close-pin-btn absolute top-0 right-0 rtl:right-auto rtl:left-0 text-gray-dark -mr-3 rtl:mr-0 rtl:-ml-3 -mt-3 p-1.5 bg-white rounded-full w-8 h-8 flex items-center justify-center shadow cursor-pointer border border-gray-lighter",attrs:{"aria-label":"Close Modal"},on:{click:t.close}},[e("svg",{staticClass:"w-full",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"}})])]):t._e()],1)]):t._e()}),[],!1,null,null,null).exports,Zp=n(9490);function Yp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Gp(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Jp={props:{slideshow:{type:Object,default:()=>{}},includeImages:{type:Boolean,default:!0}},data(){return{currentSlideImage:0,slideshowPaused:!0,slideshowTimer:0}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Yp(Object(n),!0).forEach((function(e){Gp(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Yp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({visibleSlides(){return this.slideshow?.slides?.length?this.slideshow.slides.filter((t=>t?.thumbnail)):[]}},nd({current:"slideshows/getCurrent"})),created(){this.currentSlideImage=Math.floor(Math.random()*this.visibleSlides.length)},mounted(){this.$refs["sl-meta"+this.slideshow.id].addEventListener("mouseenter",(()=>{clearTimeout(this.slideshowTimer),this.slideshowPaused&&this.startSlideshow(),this.slideshowPaused=!1})),this.$refs["sl-meta"+this.slideshow.id].addEventListener("mouseleave",(()=>{clearTimeout(this.slideshowTimer),this.slideshowPaused=!0}))},methods:{startSlideshow(){const t=()=>{this.slideshowPaused||(this.currentSlideImage=this.currentSlideImage===this.visibleSlides.length-1?0:this.currentSlideImage+1,this.slideshowTimer=setTimeout((()=>{requestAnimationFrame(t)}),1100))};requestAnimationFrame(t)},setting(t){return this.slideshow.settings&&this.slideshow.settings.hasOwnProperty(t)?this.slideshow.settings[t]:""},modifiedAt(){return Zp.ou.fromSQL(this.slideshow.modified_at_gmt,{zone:"utc"}).setLocale(metaslider.locale).toRelative()},loadSlideshow(){window.location.replace(this.metasliderPage+"&id="+this.slideshow.id)}}},Kp=Jp,Xp=n(8929),Qp={insert:"head",singleton:!1},th=(Kd()(Xp.Z,Qp),Xp.Z.locals,Ld(Kp,(function(){var t=this,e=t._self._c;return e("a",{ref:"sl-meta"+t.slideshow.id,staticClass:"shadow-none outline-none flex items-start p-4 px-2 group hover:bg-blue-highlight",attrs:{href:this.metasliderPage+"&id="+t.slideshow.id},on:{click:function(e){return e.preventDefault(),t.loadSlideshow()}}},[e("div",{staticClass:"mx-2 w-16 h-16 bg-gray-light"},[t.visibleSlides.length&&t.includeImages?e("div",{staticClass:"relative w-16 h-16"},t._l(t.visibleSlides,(function(n,r){return e("img",{key:n.id,staticClass:"absolute block inset-0 transition-all duration-1000 ease-linear",class:{"opacity-0":r!==t.currentSlideImage},attrs:{src:n.thumbnail}})})),0):t.includeImages?e("div",{staticClass:"border border-gray-dark flex w-16 h-16 items-center justify-center p-2 text-center text-red text-xs"},[t._v("\n\t\t\t"+t._s(t.__("No slides","ml-slider"))+"\n\t\t")]):t._e()]),t._v(" "),e("div",{staticClass:"px-2 flex-grow truncate"},[e("div",{staticClass:"flex pb-2 border-b border-gray-light group-hover:border-gray w-full truncate align-end"},[t.slideshow.id===t.current.id?e("span",{staticClass:"uppercase rounded bg-gray-darkest text-white text-xs px-1 mr-2 rtl:mr-0 rtl:ml-2"},[t._v(t._s(t.__("Current","ml-slider")))]):t._e(),t._v(" "),e("h4",{staticClass:"truncate text-base font-thin m-0 p-0 text-gray-darker group-hover:text-black"},[t._v("\n\t\t\t\t"+t._s(t.slideshow.title)+"\n\t\t\t")])]),t._v(" "),e("p",{staticClass:"text-gray group-hover:text-gray-darker text-xs m-0 mt-1 whitespace-normal"},[t._v("\n\t\t\tid: #"+t._s(t.slideshow.id)+" "),e("span",{staticClass:"text-black"},[t._v("·")]),t._v("\n\t\t\t"+t._s(t.setting("width"))+"x"+t._s(t.setting("height"))+" "),e("span",{staticClass:"text-blackest"},[t._v("·")]),t._v("\n\t\t\t"+t._s(t.sprintf(t._x("%s slides",'number of slides, ex "7 slides"',"ml-slider"),t.slideshow.slides.length))+" "),e("span",{staticClass:"text-blackest"},[t._v("·")]),t._v(" "),e("span",{attrs:{title:t.slideshow.modified_at_gmt}},[t._v(t._s(t.sprintf(t.__("last updated: %s","ml-slider"),t.modifiedAt())))])])])])}),[],!1,null,null,null).exports);function eh(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function nh(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var rh={components:{"slideshow-meta":th},props:{max:{type:Number|String,default:25}},data(){return{focused:!1,selectedSlideshow:-1,maybeAboutToClick:!1,searchTerm:"",searching:!0,slideshows:{}}},watch:{focused(){this.focused||!this.slideshows.length||this.maybeAboutToClick||this.resetSelectedPosition()},searchTerm(){this.searching=!0,this.slideshows={},this.resetSelectedPosition(),this.search()}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?eh(Object(n),!0).forEach((function(e){nh(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):eh(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({summaryText(){if(!this.slideshows.length)return"";const t=1==this.slideshows.length?this.__("Viewing 1 slideshow","ml-slider"):this.__("Viewing %s out of %s slideshows","ml-slider");return this.sprintf(t,this.slideshows.length,this.totalSlideshows)},highlighted(){return this.slideshows.length&&this.selectedSlideshow>-1?this.slideshows[this.selectedSlideshow].id:null},minHeight(){return this.slideshows.length>4?300:50*this.slideshows.length}},td({totalSlideshows:t=>t.slideshows.totalSlideshows})),created(){Kc.$on("metaslider/title-saved",(()=>{this.search()}))},mounted(){Wf("ctrl+/",(()=>this.focusInput())),Wf("escape",(()=>this.blurInput())),Wf("enter",(()=>this.loadSlideshow())),Wf("up,down",((t,e)=>this.navigateSlideshows(t,e))),Wf.filter=t=>!0,this.search()},methods:{focusInput(){this.$refs.switcher.focus()},blurInput(){this.maybeAboutToClick=!1,this.focused&&this.$refs.switcher.blur()},resetInput(){this.focusInput(),this.searchTerm=""},loadSlideshow(){this.focused&&(this.selectedSlideshow<0||this.slideshows.length&&(event.preventDefault(),window.location.replace(this.metasliderPage+"&id="+this.slideshows[this.selectedSlideshow].id)))},navigateSlideshows(t,e){if(this.focused)switch(t.preventDefault(),e.key){case"down":this.selectedSlideshow+1<this.slideshows.length&&(this.selectedSlideshow++,this.bringSelectedItemIntoFocus());break;case"up":this.selectedSlideshow>0&&(this.selectedSlideshow--,this.bringSelectedItemIntoFocus())}},bringSelectedItemIntoFocus(){this.$refs["switcher-view-area"]&&this.$refs["switcher-view-area"].children[this.selectedSlideshow].scrollIntoView({block:"nearest"})},resetSelectedPosition(){this.selectedSlideshow=0,this.bringSelectedItemIntoFocus(),this.selectedSlideshow=-1},search:Xc.debounce((function(){this.searching=!0,Ad.search(this.searchTerm,this.max).then((t=>{this.slideshows=t.data.data})).catch((t=>{this.notifyError("metaslider/search-error",t,!0)})).finally((()=>{this.searching=!1}))}),500)}},ih=rh,oh=n(9184),sh={insert:"head",singleton:!1},ah=(Kd()(oh.Z,sh),oh.Z.locals,Ld(ih,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"relative w-full h-full py-4"},[e("span",[e("input",{directives:[{name:"model",rawName:"v-model",value:t.searchTerm,expression:"searchTerm"}],ref:"switcher",staticClass:"h-full w-full border border-gray-light focus:bg-white focus:shadow bg-gray-lightest transition duration-300 ease-in shadow-none focus:outline-none border-transparent placeholder-gray-darker rounded m-0 px-8 block appearance-none leading-normal ds-input",attrs:{placeholder:t.__("Search slideshows (Press ctrl + / to focus)‎","ml-slider"),"data-lpignore":"true",type:"text",id:"ms-slideshow-switcher"},domProps:{value:t.searchTerm},on:{focus:function(e){t.focused=!0,e.target.select()},blur:function(e){t.focused=!1},input:function(e){e.target.composing||(t.searchTerm=e.target.value)}}}),t._v(" "),e("span",{staticClass:"top-arrow absolute z-50 w-full mt-3 shadow-md",class:{hidden:!t.maybeAboutToClick&&!t.focused},attrs:{role:"listbox"},on:{mouseover:function(e){t.maybeAboutToClick=!0},mouseout:function(e){t.maybeAboutToClick=!1}}},[e("div",{staticClass:"relative border border-gray-light bg-white rounded pb-2"},[t.searching?[e("span",{staticClass:"block text-sm font-hairline m-4 mb-2"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Searching slideshows...","ml-slider"))+"\n\t\t\t\t\t\t")])]:[e("div",{staticClass:"flex justify-between items-center pb-2 m-4 mb-2 border-b border-gray-lighter"},[e("h3",{staticClass:"text-sm text-gray-dark font-hairline m-0"},[t._v("\n\t\t\t\t\t\t\t\t"+t._s(t.summaryText)+"\n\t\t\t\t\t\t\t")])]),t._v(" "),t.slideshows.length?e("ul",{ref:"switcher-view-area",staticClass:"overflow-scroll overflow-x-hidden",staticStyle:{"max-height":"30vh"},style:"min-height:"+t.minHeight+"px",attrs:{role:"navigation","aria-label":"Slideshow search"}},t._l(t.slideshows,(function(n,r){return e("li",{key:n.id,ref:"switch-item-"+n.id,refInFor:!0,staticClass:"m-0",class:{"bg-blue-highlight highlighted-slideshow-nav":t.highlighted===n.id},on:{mouseover:function(e){t.selectedSlideshow=r}}},[e("slideshow-meta",{attrs:{slideshow:n}})],1)})),0):e("div",{staticClass:"py-2 px-4"},[t._v(t._s(t.__("No slideshows found","ml-slider")))])]],2)])]),t._v(" "),e("div",{staticClass:"absolute inset-y-0 left-0 pl-3 rtl:left-auto rtl:right-0 rtl:pr-3 rtl:pl-0 flex items-center text-gray-dark",class:{"pointer-events-none":t.focused},on:{click:function(e){return t.focusInput()}}},[t.searching?e("svg",{staticClass:"mt-px w-4 ms-spin",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})]):e("svg",{staticClass:"mt-px w-4 cursor-pointer",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 6h16M4 12h16M4 18h16"}})])]),t._v(" "),e("div",{staticClass:"absolute inset-y-0 right-0 rtl:right-auto rtl:left-0 pr-3 rtl:pl-3 rtl:pr-0 flex items-center text-gray-dark",class:{invisible:!t.searchTerm.length},on:{click:function(e){return t.resetInput()}}},[e("svg",{staticClass:"w-4 mt-px",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])])])}),[],!1,null,null,null).exports),lh=n(7220),ch=n.n(lh);function uh(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function dh(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?uh(Object(n),!0).forEach((function(e){fh(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):uh(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function fh(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var ph={components:{"slideshow-meta":th},props:{open:{type:Boolean,default:!1}},data(){return{opened:this.open,expanded:!1,slideshowsFiltered:[],sortType:"",searchTerm:"",slideshowCountdown:0,sorting:!1}},watch:{slideshows:{immediate:!0,handler:function(t){this.searcher=t.length?new(ch())(t,["title"],{sort:!1}):null,this.sort()}},searchTerm(){this.sorting=!0,Xc.debounce((()=>{this.sort()}),1500)()},opened(){this.opened||(this.$refs["drawer-container"].style.maxHeight="12rem",this.expanded=!1),this.saveNavPosition()},expanded(){this.$refs["drawer-container"].style.maxHeight="none"},slideshowsFiltered(){this.slideshowCountdown=this.totalSlideshows-this.slideshowsFiltered.length}},computed:dh(dh({drawerHeight(){return this.opened?"12rem":"0"},summaryText(){if(!this.slideshowsFiltered.length||!this.slideshows.length)return"";let t=this.slideshowsFiltered.length+1;if(this.slideshows.length==this.totalSlideshows){const e=1==t?this.__("1 slideshow","ml-slider"):this.__("Viewing %s out of %s slideshows","ml-slider");return this.sprintf(e,t,this.totalSlideshows)}const e=1==t?this.__("1 slideshow","ml-slider"):this.__("Viewing %s out of %s slideshows (%s loaded)","ml-slider");return this.sprintf(e,t,this.totalSlideshows,this.slideshows.length)}},td({slideshows:t=>t.slideshows.all,fetchingAllSlideshows:t=>t.slideshows.fetchingAll,totalSlideshows:t=>t.slideshows.totalSlideshows})),nd({currentSlideshow:"slideshows/getCurrent"})),created(){this.opened=this.open,Kc.$on("metaslider/open-drawer",(()=>{this.opened=!0})),Kc.$on("metaslider/close-drawer",(()=>{this.opened=!1})),Kc.$on("metaslider/title-saved",(()=>{this.sort()}))},mounted(){},methods:{toggleDrawer(){this.opened=!this.opened},saveNavPosition:Xc.debounce((function(){Md.saveUserSetting("metaslider_nav_drawer_opened",this.opened)}),3e3),sort(){let t=this.searchTerm.trim().length?this.searcher.search(this.searchTerm.replace(/\s/g,"")):[...this.slideshows];this.currentSlideshow&&(t=t.filter((t=>t.id!=this.currentSlideshow.id))),this.slideshowsFiltered=t.sort(this[this.sortType]),this.sorting=!1},sortByTitle(t,e){let n=t.title.toUpperCase(),r=e.title.toUpperCase();return n<r?-1:n>r?1:0},clearCache(){window.localStorage.removeItem("metaslider-vuex-"+this.siteId),window.location.reload(!0)},fetchAllSlideshows(){this.slideshowCountdown=this.totalSlideshows-this.slideshowsFiltered.length;const t=()=>{for(this.slideshowCountdown=this.slideshowCountdown-1;Math.random()>1e-7;);this.slideshowCountdown>0&&requestAnimationFrame(t)};requestAnimationFrame(t),this.notifyInfo("metaslider-loading-all-slideshows",this.sprintf(this.__("Indexing %s slideshows into local storage...","ml-slider"),this.totalSlideshows)),this.$store.dispatch("slideshows/getAllSlideshows").then((()=>{this.notifySuccess("metaslider/all-slideshows-loaded",this.__("All Slideshows loaded","ml-slider"),!0)}))},loadingSlideshowsText(){return this.totalSlideshows<200?this.__("Fetching slideshows...","ml-slider"):this.slideshowCountdown<=0?this.__("Finished","ml-slider"):sprintf(this.__("Indexing slideshows... %s remaining","ml-slider"),this.slideshowCountdown)}}},hh=Ld(ph,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"relative w-full"},[e("div",{ref:"drawer-container",staticClass:"w-full bg-gray-light transition-all duration-300 ease-in overflow-hidden border-b border-gray-lightest",style:{"max-height":t.drawerHeight}},[t.isIE11&&t.expanded&&t.totalSlideshows>25?e("div",{staticClass:"text-center p-2"},[t._v("\n\t\t\t"+t._s(t.__("This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.","ml-slider"))+"\n\t\t\t")]):t._e(),t._v(" "),t.expanded?e("div",{staticClass:"relative bg-gray border-b border-gray py-2 text-base text-black text-white w-full"},[e("div",{staticClass:"container px-6"},[e("div",{staticClass:"lg:flex items-center justify-between -mx-2"},[e("div",{staticClass:"flex lg:w-1/2 px-2 mb-2 lg:mb-0"},[e("div",{staticClass:"mr-2 rtl:mr-0 rtl:ml-2"},[e("select",{directives:[{name:"model",rawName:"v-model",value:t.sortType,expression:"sortType"}],staticClass:"text-black bg-gray-lightest block focus:bg-white h-full leading-normal m-0 rounded shadow-none",on:{change:[function(e){var n=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.sortType=e.target.multiple?n:n[0]},function(e){return t.sort()}]}},[e("option",{attrs:{value:"sortByTitle"}},[t._v(t._s(t.__("Sort by title","ml-slider")))]),t._v(" "),e("option",{attrs:{value:""}},[t._v(t._s(t.__("Sort by modified date","ml-slider")))])])]),t._v(" "),e("div",{staticClass:"flex-grow relative"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.searchTerm,expression:"searchTerm"}],staticClass:"appearance-none text-black bg-gray-lightest block focus:bg-white h-full leading-normal m-0 placeholder-gray-darker rounded shadow-none transition-all duration-300 ease-in w-full",attrs:{placeholder:t.__("Filter slideshows‎","ml-slider"),"data-lpignore":"true",type:"text"},domProps:{value:t.searchTerm},on:{input:function(e){e.target.composing||(t.searchTerm=e.target.value)}}}),t._v(" "),e("div",{staticClass:"absolute inset-y-0 right-0 rtl:right-auto rtl:left-0 pr-2 rtl:pl-2 rtl:pr-0 flex items-center text-gray-dark",class:{invisible:!t.searchTerm.length},on:{click:function(e){t.searchTerm=""}}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])])])]),t._v(" "),e("div",{staticClass:"lg:w-1/2 px-2"},[e("div",{staticClass:"flex items-center justify-between -mx-2"},[t.sorting?e("p",{staticClass:"m-0 text-center"},[e("svg",{staticClass:"inline w-5 ms-spin text-gray-darker",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})]),t._v("\n                                "+t._s(t.__("Searching...","ml-slider"))+"\n\t\t\t\t\t\t\t")]):e("p",{staticClass:"m-0 p-2 text-center"},[t._v(t._s(t.summaryText))]),t._v(" "),e("div",{staticClass:"p-2 flex"},[t.fetchingAllSlideshows?e("div",{staticClass:"flex items-center"},[e("svg",{staticClass:"w-4 ms-spin mr-1 rtl:mr-0 rtl:ml-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"}})]),t._v(" "),t.slideshows.length<t.totalSlideshows?e("p",{staticClass:"m-0"},[t._v(t._s(t.loadingSlideshowsText()))]):e("p",{staticClass:"m-0"},[t._v(t._s(t.__("Updating...","ml-slider")))])]):e("div",[t.slideshows.length<t.totalSlideshows?e("button",{staticClass:"bg-gray-lighter leading-none m-0 outline-none px-2 py-1 rounded shadow no-underline text-xs",class:{underline:!t.fetchingAllSlideshows},on:{click:function(e){return e.preventDefault(),t.fetchAllSlideshows()}}},[t._v("\n\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Load all","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t")]):e("button",{staticClass:"bg-gray-lighter leading-none m-0 outline-none px-2 py-1 rounded-lg shadow no-underline text-xs",on:{click:function(e){return e.preventDefault(),t.clearCache(t.event)}}},[t._v("\n\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Clear cache","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t")])]),t._v(" "),t.fetchingAllSlideshows?t._e():e("div",{staticClass:"tipsy-tooltip-bottom inline-flex ml-1 rtl:ml-0 rtl:mr-1",attrs:{title:t.slideshows.length<t.totalSlideshows?t.sprintf(t.__("Load remaining %s slideshows","ml-slider"),t.totalSlideshows-t.slideshows.length):t.__("Press to clear the slideshow cache from your web browser","ml-slider"),"original-title":t.slideshows.length<t.totalSlideshows?t.sprintf(t.__("Load remaining %s slideshows","ml-slider"),t.totalSlideshows-t.slideshows.length):t.__("Press to clear the slideshow cache from your web browser","ml-slider")}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"}})])])])])])])])]):t._e(),t._v(" "),t.slideshowsFiltered.length||t.currentSlideshow?[e("div",{staticClass:"relative"},[e("button",{staticClass:"absolute flex items-center mr-4 mt-5 right-0 rtl:left-0 rtl:ml-4 rtl:mr-0 rtl:right-auto top-0 text-gray-dark hover:text-black",class:{invisible:!t.expanded},on:{click:function(e){e.preventDefault(),t.toggleDrawer(),t.searchTerm=""}}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])]),t._v(" "),e("ul",{staticClass:"flex -mx-2 overflow-auto",class:{"flex-nowrap p-4":!t.expanded,"flex-wrap justify-lcenter p-10":t.expanded},staticStyle:{"-webkit-overflow-scrolling":"touch","-ms-overflow-style":"-ms-autohiding-scrollbar"},attrs:{role:"navigation","aria-label":"Recent slideshows"}},[e("li",{staticClass:"w-full px-4 my-2 max-w-md",class:{"md:w-1/2 lg:w-1/3 xl:w-1/4 3xl:w-1/5":t.expanded},staticStyle:{"min-width":"400px"}},[e("span",{staticClass:"block -mx-2 rounded bg-white shadow",class:{"whitespace-normal":t.expanded}},[e("slideshow-meta",{attrs:{slideshow:t.currentSlideshow,"include-images":!0}})],1)]),t._v(" "),t._l(t.slideshowsFiltered,(function(n){return e("li",{key:n.id,staticClass:"w-full px-4 my-2 max-w-md",class:{"md:w-1/2 lg:w-1/3 xl:w-1/4 3xl:w-1/5":t.expanded},staticStyle:{"min-width":"400px"}},[e("span",{staticClass:"block -mx-2 rounded bg-white shadow",class:{"whitespace-normal":t.expanded}},[e("slideshow-meta",{attrs:{slideshow:n,"include-images":n.slides.length>0}})],1)])})),t._v(" "),t.expanded?t._e():e("li",{staticStyle:{"min-width":"4rem"}})],2)])]:[e("span",{staticClass:"flex items-center font-normal container text-xl my-4 h-24"},[t._v("\n\t\t\t\t"+t._s(t.searchTerm.length?t.__("No slideshows found","ml-slider"):t.__("Loading slideshows...","ml-slider"))+"\n\t\t\t")])]],2),t._v(" "),e("div",{staticClass:"container mx-auto flex px-6"},[e("button",{staticClass:"block relative transition-all duration-300 ease-in text-xs text-gray-dark px-4 -mt-px border border-t-0 hover:bg-gray-light focus:bg-gray-light rounded-b shadow-none outline-none",class:{"bg-gray-light border-gray-light":t.opened,"bg-gray-lighter pt-1 border-transparent":!t.opened},on:{click:function(e){e.preventDefault(),t.toggleDrawer(),t.searchTerm=""}}},[t.opened?e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})]):[t._v("\n\t\t\t\t\t"+t._s(t.__("Browse slideshows","ml-slider"))+"\n\t\t\t")]],2),t._v(" "),t.opened&&t.slideshowsFiltered.length>4?e("button",{staticClass:"block relative transition-all duration-300 ease-in text-xs text-gray-dark px-4 -mt-px border border-t-0 bg-gray-lighter hover:bg-gray-light rounded-b shadow-none outline-none border-gray-light tipsy-tooltip-bottom-toolbar",attrs:{title:t.expanded?t.__("Collapse","ml-slider"):t.__("Press to expand","ml-slider")},on:{click:function(e){e.preventDefault(),t.expanded=!t.expanded,t.searchTerm=""}}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8 9l4-4 4 4m0 6l-4 4-4-4"}})])]):t._e()])])}),[],!1,null,null,null).exports,mh=Ld({props:{},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mt-6 md:mt-0"},[e("div",{staticClass:"md:grid md:grid-cols-3 md:gap-6"},[e("div",{staticClass:"md:col-span-1"},[e("div",{staticClass:"px-0"},[e("h3",{staticClass:"text-lg font-medium m-0 leading-6 text-gray-darkest"},[t._t("header")],2),t._v(" "),e("p",{staticClass:"m-0 mt-1 text-sm leading-5 text-gray-darker"},[t._t("description")],2),t._v(" "),this.$slots.description2?e("p",{staticClass:"m-0 font-bold mt-2 text-sm leading-5 text-gray-darker"},[t._t("description2")],2):t._e(),t._v(" "),this.$slots.description3?e("p",{staticClass:"m-0 italic mt-2 text-sm leading-5 text-gray-darker"},[t._t("description3")],2):t._e()])]),t._v(" "),e("div",{staticClass:"mt-5 md:mt-0 md:col-span-2"},[t._t("fields")],2)])])}),[],!1,null,null,null).exports,gh={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},vh=n(1989),wh={insert:"head",singleton:!1},yh=(Kd()(vh.Z,wh),vh.Z.locals,Ld(gh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-2",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-5",staticStyle:{width:"50%"}})])}),[],!1,null,"36b0821f",null).exports),bh=Ld({props:{value:String,name:String,wrapperClass:{type:String,default:"w-full"}},components:{"loading-element":yh},data(){return{}},created(){},mounted(){},methods:{save(){this.$emit("click")}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow mb-4 relative",attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 md:p-6"},[e("h3",{staticClass:"text-lg leading-6 m-0 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-dark"},[e("div",{staticClass:"m-0 pt-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 md:flex md:items-center"},[e("div",{class:[t.wrapperClass,"max-w-xs"]},[e("label",{staticClass:"sr-only",attrs:{for:t.name}},[t._t("input-label")],2),t._v(" "),e("div",{staticClass:"relative rounded-md shadow-sm"},[e("input",{staticClass:"form-input block w-full md:text-sm md:leading-5",attrs:{id:t.name,placeholder:t.value},domProps:{value:t.value},on:{input:function(e){return t.$emit("input",e.target.value)}}})])]),t._v(" "),e("span",{staticClass:"mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",attrs:{type:"button"},on:{click:t.save}},[t._v("\n\t\t"+t._s(t.__("Save","ml-slider"))+"\n\t\t")])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,_h={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},xh=n(7329),kh={insert:"head",singleton:!1},Sh=(Kd()(xh.Z,kh),xh.Z.locals,Ld(_h,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute flex flex-col bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"mt-2 sm:flex md:flex-grow sm:items-start sm:justify-between h-7"},[e("div",{staticClass:"rounded-lg gradient max-w-xl h-full",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"rounded-lg gradient mt-5 w-12 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex h-7 sm:items-center"})])])}),[],!1,null,"54e7a0bf",null).exports),Ch=Ld({props:{value:{},containerMargin:{type:String,default:"mb-4"}},components:{"loading-element":Sh},data(){return{}},created(){},mounted(){},methods:{toggle(){const t=!this.value;this.$emit("input",t),this.$emit("change",t)}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow relative",class:[t.containerMargin],attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-darkest",attrs:{id:"renew-headline"}},[t._t("header")],2),t._v(" "),this.$slots.subheader?e("p",{staticClass:"m-0 mb-2 text-gray-darker text-xs whitespace-normal"},[t._t("subheader")],2):t._e(),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between"},[e("div",{staticClass:"max-w-xl text-sm leading-5 text-gray-dark overflow-hidden"},[e("div",{staticClass:"m-0 p-0",attrs:{id:"renew-description"}},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center"},[e("span",{staticClass:"relative inline-block flex-no-shrink h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-50 focus:outline-none focus:shadow-outline",class:{"bg-gray-light":!t.value,"bg-orange":t.value},attrs:{"aria-checked":!!t.value&&t.value.toString(),role:"checkbox",tabindex:"0"},on:{click:t.toggle,keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:(e.preventDefault(),t.toggle.apply(null,arguments))}}},[e("span",{staticClass:"inline-block h-5 w-5 rounded-full bg-white shadow transform transition ease-in-out duration-150",class:{"translate-x-5":t.value,"translate-x-0":!t.value},attrs:{"aria-hidden":"true"}})])])]),t._v(" "),t._t("legacy-notices")],2),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null),Oh=Ch.exports,Th=Ld({props:{link:{type:String,default:""},newTab:{type:Boolean,default:!1}},components:{},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"bg-white shadow"},[e("div",{staticClass:"px-4 py-5 sm:p-6 flex justify-between items-start"},[e("div",[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-900"},[t._t("header")],2),t._v(" "),this.$slots.description?e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-500"},[e("p",[t._t("description")],2)]):t._e()]),t._v(" "),t.link?e("div",{staticClass:"mt-0 text-sm leading-5"},[e("a",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5 bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white",attrs:{href:t.link,target:t.newTab?"_blank":"_self"}},[t._t("link-text")],2)]):t._e()])])}),[],!1,null,null,null).exports,Eh={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},jh=n(4982),Ah={insert:"head",singleton:!1},Ph=(Kd()(jh.Z,Ah),jh.Z.locals,Ld(Eh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-2",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-5",staticStyle:{width:"50%"}})])}),[],!1,null,"14128e16",null).exports),Mh=Ld({props:{data:{type:Object,default:{}},canCopy:{type:Boolean,default:!0}},components:{"loading-element":Ph},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"bg-white shadow mb-4 relative"},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("div",{staticClass:"flex items-start justify-between"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-900"},[t._t("header")],2),t._v(" "),t.canCopy?e("button",{staticClass:"w-5 text-blue",attrs:{"aria-label":t.__("Copy all","ml-slider"),title:t.__("Copy all","ml-slider")}},[e("svg",{staticClass:"w-5 inline mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3"}})])]):t._e()]),t._v(" "),this.$slots.description?e("div",{staticClass:"mt-2 text-sm leading-5 text-gray-500"},[e("p",[t._t("description")],2),t._v(" "),t._t("data-extra")],2):t._e()]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null),Ih=Ld({components:{"data-box":Mh.exports,"split-layout":mh,"text-single-input":bh,"textbox-with-link":Th,"switch-single-input":Oh},props:{},data(){return{loading:!0,settings:{license:"",optIn:!1}}},computed:{},created(){},mounted(){},methods:{saveSettings(){const t=JSON.stringify(this.settings);Md.saveDefaults(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-setting-saved",this.__("All settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))}}},(function(){var t=this,e=t._self._c;return e("div",[e("split-layout",{attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Help Center","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("textbox-with-link",{staticClass:"mb-4",attrs:{link:"https://www.metaslider.com/documentation/","new-tab":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Documentation 📚","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Check out our documentation page for examples, and more information about what you can do with MetaSlider.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Visit documentation","ml-slider")))])],2),t._v(" "),e("textbox-with-link",{staticClass:"mb-4",attrs:{link:"https://wordpress.org/plugins/ml-slider","new-tab":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Free Basic Support 🚀","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Visit wordpress.org","ml-slider")))])],2),t._v(" "),e("textbox-with-link",{staticClass:"mb-4",attrs:{link:"https://www.metaslider.com/support","new-tab":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Paid Premium Support 🌟","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Visit metaslider.com","ml-slider")))])],2),t._v(" "),e("data-box",{staticClass:"lg:mt-10 hidden",attrs:{data:{foo:"bar"},"can-copy":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Site Information","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v("\n                    "+t._s(t.__("For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.","ml-slider"))+"\n                ")]),t._v(" "),e("template",{slot:"data-extra"},[e("div",{staticClass:"border-2 border-gray border-dashed h-64"})])],2)],1)],2)],1)}),[],!1,null,null,null).exports,Lh=Ld({props:["value","name"],components:{"loading-element":yh},data(){return{}},created(){},mounted(){},methods:{save(){this.$emit("click")}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"mobile-settings-form",attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"mt-5 md:flex md:items-center"},[e("div",{staticClass:"max-w-xs w-full"},[e("input",{staticClass:"form-input block w-full md:text-sm md:leading-5 relative rounded-md shadow-sm",attrs:{id:t.name,placeholder:t.value},domProps:{value:t.value},on:{input:function(e){return t.$emit("input",e.target.value)}}})]),t._v(" "),e("span",{staticClass:"mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto mobile-settings"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",attrs:{type:"button"},on:{click:t.save}},[t._v("\n        "+t._s(t.__("Save","ml-slider"))+"\n        ")])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,$h=Ld({props:["value","options"],components:{"loading-element":yh},data(){return{selectedValue:this.value}},watch:{value(t){this.selectedValue=t},selectedValue(t){this.$emit("input",t)}},created(){},mounted(){},methods:{save(){this.$emit("click")}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow mb-4 relative",attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 md:p-6"},[e("h3",{staticClass:"text-lg leading-6 m-0 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-dark"},[e("div",{staticClass:"m-0 pt-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 md:flex md:items-center"},[e("div",{staticClass:"max-w-xs w-full"},[e("label",{staticClass:"sr-only",attrs:{for:t.name}},[t._t("input-label")],2),t._v(" "),e("div",{staticClass:"relative rounded-md shadow-sm"},[e("select",{directives:[{name:"model",rawName:"v-model",value:t.selectedValue,expression:"selectedValue"}],staticClass:"form-select form-select--forced block w-full md:text-sm md:leading-5",attrs:{id:t.name},on:{input:function(e){return t.$emit("input",e.target.value)},change:function(e){var n=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.selectedValue=e.target.multiple?n:n[0]}}},t._l(t.options,(function(n){return e("option",{key:n.value,domProps:{value:n.value,selected:n.value===t.selectedValue}},[t._v("\n\t\t\t\t\t"+t._s(n.label)+"\n\t\t\t\t")])})),0)])]),t._v(" "),e("span",{staticClass:"mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",attrs:{type:"button"},on:{click:t.save}},[t._v("\n\t\t"+t._s(t.__("Save","ml-slider"))+"\n\t\t")])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,Dh=Ld({props:{link:{type:String,default:""},newTab:{type:Boolean,default:!1}},components:{},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"max-w-4xl mb-6"},[e("div",{staticClass:"bg-yellow-50 border-l-4 border-yellow-400 p-4"},[e("div",{staticClass:"flex"},[e("div",{staticClass:"flex-shrink-0"},[e("svg",{staticClass:"h-5 w-5 text-yellow-400",attrs:{fill:"currentColor",viewBox:"0 0 20 20"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z","clip-rule":"evenodd"}})])]),t._v(" "),e("div",{staticClass:"ml-3"},[e("p",{staticClass:"text-sm p-0 m-0 leading-5 text-yellow-700"},[t._t("description"),t._v(" "),t.link?e("a",{staticClass:"font-medium underline text-yellow-700 hover:text-yellow-600 transition ease-in-out duration-150",attrs:{href:t.link,target:t.newTab?"_blank":"_self"}},[t._t("link-text")],2):t._e()],2)])])])])}),[],!1,null,null,null).exports,Nh={components:{"split-layout":mh,"text-single-input":bh,"text-multiple-input":Lh,"switch-single-input":Oh,"select-field-input":$h,"alert-warning-small":Dh},props:{},data(){return{loading:!0,optinInfo:{},slideshowDefaults:{title:"",fullWidth:!1,width:0,height:0,smartphone:480,tablet:768,laptop:1024,desktop:1440},globalSettings:{license:"",optIn:!1,adminBar:!0,editLink:!1,legacy:!0,newSlideOrder:"last",mobileSettings:!0,legacyWidget:!0},proSettings:{postFeedFields:30},legacySlideshows:{}}},computed:{defaultTitleDescription(){return this.sprintf(this.__("Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.","ml-slider"),'<code class="bg-transparent p-0 font-bold">{id}</code>')},licenseDescription(){return this.sprintf(this.__("If you are a pro member, enter your license key here to receive updates. %s","ml-slider"),`<a target="_blank" href="${this.hoplink}">${this.__("Upgrade here","ml-slider")}</a>`)},optInDescription(){return this.sprintf(this.__("Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s","ml-slider"),`<a target="_blank" href="${this.privacyLink}">${this.__("View our detailed privacy policy","ml-slider")}</a>`)},isDisabled(){return legacySlideshows,this.form.validated}},created(){Md.getSlideshowDefaults().then((t=>{let{data:e}=t;Object.keys(e.data).forEach((t=>{this.slideshowDefaults.hasOwnProperty(t)&&(this.slideshowDefaults[t]=e.data[t])})),this.loading=!1})).catch((t=>{this.notifyError("metaslider/settings-load-error",t.response,!0)})),Md.getGlobalSettings().then((t=>{let{data:e}=t;Object.keys(e.data).forEach((t=>{this.globalSettings.hasOwnProperty(t)&&(this.globalSettings[t]=e.data[t])})),this.loading=!1})).catch((t=>{this.notifyError("metaslider/settings-load-error",t.response,!0)})),Md.getProSettings().then((t=>{let{data:e}=t;Object.keys(e.data).forEach((t=>{this.proSettings.hasOwnProperty(t)&&(this.proSettings[t]=e.data[t])})),this.loading=!1})).catch((t=>{this.notifyError("metaslider/settings-load-error",t.response,!0)})),Md.get("optin_user_extras").then((t=>{let{data:e}=t;this.optinInfo=e.data})),Ad.legacy().then((t=>{let{data:e}=t;this.legacySlideshows=e.data}))},mounted(){},methods:{saveSlideshowDefaultSettings(){const t=JSON.stringify(this.slideshowDefaults);Md.saveSlideshowDefaults(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-slideshow-settings-saved",this.__("Slideshow settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))},async saveGlobalSettings(){this.optinInfo={},this.globalSettings.optIn&&await Md.saveGlobalSettingsSingle("optin_via","manual");const t=JSON.stringify(this.globalSettings);Md.saveGlobalSettings(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-global-settings-saved",this.__("Global settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))},saveProSettings(){const t=JSON.stringify(this.proSettings);Md.saveProSettings(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-slideshow-settings-saved",this.__("Pro settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))},isPro(){return"undefined"!==metaslider_api.proUser&&1===Number(metaslider_api.proUser)}}},Fh=Ld(Nh,(function(){var t=this,e=t._self._c;return e("div",[e("split-layout",{attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Slideshow Defaults","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the default settings used when creating new slideshows.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("text-single-input",{attrs:{name:"default-slideshow-title"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.title,callback:function(e){t.$set(t.slideshowDefaults,"title",e)},expression:"slideshowDefaults.title"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Default Slideshow Title","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("span",{domProps:{innerHTML:t._s(t.defaultTitleDescription)}})]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the default title","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("text-single-input",{attrs:{name:"default-slideshow-width","wrapper-class":"w-24"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.width,callback:function(e){t.$set(t.slideshowDefaults,"width",e)},expression:"slideshowDefaults.width"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Base Image Width","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.","ml-slider")))]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the default width","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("text-single-input",{attrs:{name:"default-slideshow-height","wrapper-class":"w-24"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.height,callback:function(e){t.$set(t.slideshowDefaults,"height",e)},expression:"slideshowDefaults.height"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Base Image Height","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.","ml-slider")))]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the default width","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.fullWidth,callback:function(e){t.$set(t.slideshowDefaults,"fullWidth",e)},expression:"slideshowDefaults.fullWidth"}},[e("template",{slot:"header"},[t._v(t._s(t.__("100% Width","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.","ml-slider")))])],2)],1)],2),t._v(" "),e("split-layout",{staticClass:"lg:mt-6",attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Global Settings","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the settings used for all the slideshows on your site.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("text-single-input",{staticClass:"hidden",attrs:{name:"ms-license"},on:{click:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.license,callback:function(e){t.$set(t.globalSettings,"license",e)},expression:"globalSettings.license"}},[e("template",{slot:"header"},[t._v(t._s(t.__("License Key","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("span",{domProps:{innerHTML:t._s(t.licenseDescription)}})]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Update license key","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.optIn,callback:function(e){t.$set(t.globalSettings,"optIn",e)},expression:"globalSettings.optIn"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Help Improve MetaSlider","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("span",{domProps:{innerHTML:t._s(t.optInDescription)}}),t._v(" "),Object.prototype.hasOwnProperty.call(t.optinInfo,"id")?e("small",{staticClass:"italic"},[t._v("Activated by user id #"+t._s(t.optinInfo.id)+" ("+t._s(t.optinInfo.email)+") on "+t._s(new Date(1e3*t.optinInfo.time).toLocaleDateString()))]):t._e()])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.mobileSettings,callback:function(e){t.$set(t.globalSettings,"mobileSettings",e)},expression:"globalSettings.mobileSettings"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Enable Mobile Settings","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Add option to hide slides and captions per screen size.","ml-slider")))])],2),t._v(" "),t.globalSettings.mobileSettings?[e("div",{staticClass:"bg-white shadow mb-4 relative px-4 py-5 md:p-6",attrs:{id:"mobile-settings"}},[e("h3",{staticClass:"text-lg leading-6 m-0 font-medium text-gray-darkest"},[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Mobile Settings","ml-slider"))+"\n\t\t\t\t\t")]),t._v(" "),e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-dark"},[e("div",{staticClass:"m-0 pt-0"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Set breakpoints for different screen sizes","ml-slider"))+"\n\t\t\t\t\t\t")])]),t._v(" "),e("div",{staticClass:"row"},[e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-smartphone"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-smartphone"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.smartphone,callback:function(e){t.$set(t.slideshowDefaults,"smartphone",e)},expression:"slideshowDefaults.smartphone"}})],1),t._v(" "),e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-tablet"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-tablet"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.tablet,callback:function(e){t.$set(t.slideshowDefaults,"tablet",e)},expression:"slideshowDefaults.tablet"}})],1),t._v(" "),e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-laptop"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-laptop"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.laptop,callback:function(e){t.$set(t.slideshowDefaults,"laptop",e)},expression:"slideshowDefaults.laptop"}})],1),t._v(" "),e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-desktop"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-desktop"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.desktop,callback:function(e){t.$set(t.slideshowDefaults,"desktop",e)},expression:"slideshowDefaults.desktop"}})],1)])])]:t._e(),t._v(" "),e("switch-single-input",{class:{disableSwitch:0!==t.legacySlideshows},on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.legacy,callback:function(e){t.$set(t.globalSettings,"legacy",e)},expression:"globalSettings.legacy"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Disable Legacy Libraries","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive Slides","ml-slider")))]),t._v(" "),0===t.legacySlideshows?e("template",{slot:"legacy-notices"},[e("div",{staticClass:"notice notice-success ml-legacy-notice"},[e("p",[t._v(t._s(t.__("You can safely enable this setting. None of your slideshows use the legacy libraries.","ml-slider")))])])]):t._e(),t._v(" "),0!==t.legacySlideshows?e("template",{slot:"legacy-notices"},[e("div",{staticClass:"notice notice-warning ml-legacy-notice"},[e("p",[t._v(t._s(t.legacySlideshows>1?t.sprintf(t.__("You currently have %s slideshows that use legacy libraries.","ml-slider"),t.legacySlideshows):t.sprintf(t.__("You currently have %s slideshow that uses legacy libraries.","ml-slider"),t.legacySlideshows)))])])]):t._e()],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.adminBar,callback:function(e){t.$set(t.globalSettings,"adminBar",e)},expression:"globalSettings.adminBar"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Enable MetaSlider on Admin Bar","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Add and edit slideshows easier by showing MetaSlider on your admin bar.","ml-slider")))])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.editLink,callback:function(e){t.$set(t.globalSettings,"editLink",e)},expression:"globalSettings.editLink"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Enable Frontend Edit Links","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Edit slideshows easily by showing MetaSlider link under each slideshow.","ml-slider")))])],2),t._v(" "),e("select-field-input",{attrs:{options:[{value:"last",label:t.__("Last","ml-slider")},{value:"first",label:t.__("First","ml-slider")}]},on:{click:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.newSlideOrder,callback:function(e){t.$set(t.globalSettings,"newSlideOrder",e)},expression:"globalSettings.newSlideOrder"}},[e("template",{slot:"header"},[t._v(t._s(t.__("New slides order","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select the position for new added slides.","ml-slider")))])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.legacyWidget,callback:function(e){t.$set(t.globalSettings,"legacyWidget",e)},expression:"globalSettings.legacyWidget"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Disable Legacy Widget","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("This setting allows you to disable the legacy MetaSlider widget.","ml-slider")))])],2)],2)],2),t._v(" "),t.isPro()?e("split-layout",{staticClass:"lg:mt-6",attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Pro Settings","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the MetaSlider Pro settings.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("text-single-input",{attrs:{name:"default-slideshow-width","wrapper-class":"w-24"},on:{click:function(e){return t.saveProSettings()}},model:{value:t.proSettings.postFeedFields,callback:function(e){t.$set(t.proSettings,"postFeedFields",e)},expression:"proSettings.postFeedFields"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Maximum Number of Custom Field in Post Feed Sliders","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select how many custom fields will display in the dropdown menu when you are inserting tags.","ml-slider")))]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the maximum custom fields for Post Feed","ml-slider"))+"\n\t\t\t\t")])],2)],1)],2):t._e()],1)}),[],!1,null,null,null).exports,Bh={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},Rh=n(5085),zh={insert:"head",singleton:!1},Uh=(Kd()(Rh.Z,zh),Rh.Z.locals,Ld(Bh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between h-7"},[e("div",{staticClass:"rounded-lg gradient max-w-xl h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"rounded-lg gradient mt-5 w-12 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex h-7 sm:items-center"})])])}),[],!1,null,"59da3806",null).exports),Vh=Ld({props:{value:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},containerMargin:{type:String,default:"mb-4"}},components:{"loading-element":Uh},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow relative",class:[t.containerMargin],attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between"},[e("div",{staticClass:"max-w-xl text-sm leading-5 text-gray-500"},[e("div",{staticClass:"m-0 p-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center"},[e("span",{staticClass:"inline-flex rounded-md shadow-sm"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",class:{"bg-gray-darker text-gray-light":t.disabled,"bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white":!t.disabled},attrs:{type:"button",tabindex:"0",disabled:t.disabled},on:{click:function(e){return t.$emit("click")},keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),t.$emit("click"))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:(e.preventDefault(),t.$emit("click"))}]}},[t._t("button")],2)])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,Hh=Ld({props:{name:{type:String,default:""},value:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},accept:{type:String,default:""},containerMargin:{type:String,default:"mb-4"}},components:{"loading-element":Uh},data(){return{}},created(){},mounted(){},methods:{loadFile(t){if(this.disabled)return;if(!t.target.files[0])return;const e=new FileReader;e.onload=t=>this.$emit("loaded",t.target.result),e.readAsText(t.target.files[0]),t.target.value=""}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow relative",class:[t.containerMargin],attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between"},[e("div",{staticClass:"max-w-xl text-sm leading-5 text-gray-500"},[e("div",{staticClass:"m-0 p-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center"},[e("span",{staticClass:"inline-flex rounded-md shadow-sm"},[e("label",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",class:{"bg-gray-darker text-gray-light":t.disabled,"bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white":!t.disabled},attrs:{for:t.name,tabindex:"0",disabled:t.disabled}},[t._t("button")],2),t._v(" "),e("input",{staticClass:"hidden",attrs:{id:t.name,accept:t.accept,disabled:t.disabled,type:"file"},on:{change:t.loadFile}})])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,qh=n(5823),Wh=n.n(qh),Zh={components:{"split-layout":mh,"switch-single-input":Oh,"file-button":Hh,"action-button":Vh},computed:{slideshowsToImport(){if(!Object.keys(this.slideshowsListSelection).length)return[];let t=[];return Object.keys(this.slideshowsListSelection).forEach((e=>{this.slideshowsListSelection[e]&&t.push(e)})),t},missingImages(){return this.slideshowsToImport.filter((t=>{if(!this.slideshowsList[t]||!this.slideshowsList[t].slides)return!1;return this.slideshowsList[t].slides.filter((t=>!(["external","post_feed"].indexOf(t.meta["ml-slider_type"])>-1)&&!t.id)).length}))}},watch:{slideshowsList:{immediate:!1,handler:function(t){let e=[];Object.keys(t).forEach((t=>{if(this.slideshowsList[t].slides){let n=this.slideshowsList[t].slides.map((t=>[t.image,t.image_alt]));e.push(...n)}})),e.length&&(e=e.flat().filter((t=>t.length)),e=[...new Set(e)],e&&this.findImages(e))}}},props:{},data(){return{metadata:"",slideshowsList:{},slideshowsListSelection:{},imageThumbnails:{},processing:!1,procesingImages:!1,importing:!1,userSawProcessingImagesMessage:!1}},created(){},mounted(){},methods:{loadSlideshowsFromFile(t){this.slideshowsList={},this.slideshowsListSelection={},t||this.notifyWarning("metaslider-importing-slideshows-bad-data",this.__("The data in this file does not appear to be valid.","ml-slider"),!0),this.processing=!0;try{t=JSON.parse(t),this.metadata=t.metadata,delete t.metadata,this.slideshowsList=t;const e={};for(const[t,n]of Object.entries(this.slideshowsList))e[t]=!0;this.slideshowsListSelection=e,this.notifySuccess("metaslider/all-slideshows-from-file-loaded",this.sprintf(this.__("Found %s slideshows","ml-slider"),Object.keys(this.slideshowsList).length),!0)}catch(t){this.slideshowsList={},this.notifyError("metaslider/all-slideshows-from-file-error",t.message,!0)}this.processing=!1},findImages(t){this.procesingImages=!0,Id.findIdFromFilename(JSON.stringify(t)).then((t=>{const e=t.data.data;Object.keys(e).forEach((t=>{e[t]&&this.$set(this.imageThumbnails,e[t].id,e[t].thumbnail)})),Object.keys(this.slideshowsList).forEach((t=>{this.slideshowsList[t].slides&&Object.keys(this.slideshowsList[t].slides).forEach((n=>{let r=this.slideshowsList[t].slides[n].image,i=this.slideshowsList[t].slides[n].image_alt;e[r]?this.$set(this.slideshowsList[t].slides[n],"id",e[r].id):e[i]&&this.$set(this.slideshowsList[t].slides[n],"id",e[i].id)}))})),this.procesingImages=!1,this.userSawProcessingImagesMessage&&this.notifyInfo("metaslider-finding-images-success",this.__("Image search complete","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/import-from-file-error",t,!0)}))},async importSlideshows(){if(this.procesingImages)return this.userSawProcessingImagesMessage=!0,void this.notifyWarning("metaslider-importing-slideshows-still-processing-images",this.__("We are still searching for your images. Please wait.","ml-slider"),!0);this.slideshowsToImport.length||this.notifyWarning("metaslider-importing-slideshows-no-slideshows",this.__("You have no slideshows to import","ml-slider"),!0),this.importing=!0,this.processing=!0;const t=[];this.slideshowsToImport.forEach((e=>{t.push(this.slideshowsList[e])}));if(!(this.missingImages.length?await zd().fire({title:this.__("Some images are missing","ml-slider"),html:'<p class="text-base">'+this.__("When images are missing you will have to manually update or delete the slide after the import completes.","ml-slider")+"</p>",confirmButtonText:this.__("Continue","ml-slider"),showCancelButton:!0,icon:"warning",iconHtml:'<div class="dashicons dashicons-warning" style="transform: scale(3.5);"></div>',customClass:"shadow-lg"}):{value:!0}).value)return this.importing=!1,void(this.processing=!1);this.notifyInfo("metaslider-importing-slideshows",this.sprintf(this.__("Importing %s slideshows...","ml-slider"),this.slideshowsToImport.length),!0),Ad.import(JSON.stringify([...t])).then((t=>{this.notifySuccess("metaslider-importing-slideshows-success",this.__("Import successful","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/import-error",t,!0)})).finally((()=>{this.importing=!1,this.processing=!1}))},fileDate(){return Zp.ou.fromISO(new Date(this.metadata.date).toISOString()).toFormat("yyyy/MM/dd")},randomBgColor(){const t=["bg-gray-dark","bg-gray-light","bg-gray-lighter","bg-gray-lightest"];return t[Math.floor(Math.random()*t.length)]},slidesMissingImages(t){return this.slideshowsList[t].slides.filter((t=>!(["post_feed","external"].indexOf(t.meta["ml-slider_type"])>-1)&&!t.id))},toggleSlideshowsToImport(t){Object.keys(this.slideshowsListSelection).forEach((e=>this.slideshowsListSelection[e]=t))}}},Yh=Zh,Gh=n(2693),Jh={insert:"head",singleton:!1},Kh=(Kd()(Gh.Z,Jh),Gh.Z.locals,Ld(Yh,(function(){var t=this,e=t._self._c;return e("div",[e("split-layout",[e("template",{slot:"header"},[t._v(t._s(t.__("Import","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v("\n\t\t\t"+t._s(t.__("Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.","ml-slider"))+"\n\t\t")]),t._v(" "),e("template",{slot:"fields"},[e("file-button",{attrs:{name:"import",accept:".json",disabled:t.processing},on:{loaded:t.loadSlideshowsFromFile}},[e("template",{slot:"header"},[t._v(t._s(t.__("Load slideshows","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.sprintf(t.__("If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.","ml-slider"),t.slideshowsToImport)))]),t._v(" "),t.importing?e("template",{slot:"button"},[t._v(t._s(t.__("Importing...","ml-slider")))]):t.processing?e("template",{slot:"button"},[t._v(t._s(t.__("Processing...","ml-slider")))]):e("template",{slot:"button"},[e("svg",{staticClass:"w-5 -ml-1 pr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12"}})]),t._v("\n                    "+t._s(t.__("Upload file","ml-slider"))+"\n\t\t\t\t")])],2)],1)],2),t._v(" "),Object.keys(t.slideshowsList).length?e("split-layout",{attrs:{loading:t.importing||t.processing}},[e("template",{slot:"header"},[t._v(t._s(t.__("Slideshows","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("pre",[t._v(t._s(t.sprintf(t.__("Date: %s","ml-slider"),t.fileDate()))+"\n"+t._s(t.sprintf(t.__("Version: v%s","ml-slider"),t.metadata.version))+"\n\t\t\t")]),t._v(" "),t.procesingImages||t.missingImages.length?t._e():e("div",[t._v("\n\t\t\t\t\t"+t._s(t.__("All images required to import are accounted for.","ml-slider"))+"\n\t\t\t\t")]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[!t.procesingImages&&t.missingImages.length?e("div",[e("h4",[t._v(t._s(t.__("The following images were not found:","ml-slider")))]),t._v(" "),e("div",t._l(t.missingImages,(function(n){return e("div",{key:n},[e("p",{staticClass:"font-bold underline mb-1"},[t._v("\n\t\t\t\t\t\t\t\t"+t._s(t.slideshowsList[n].title)+"\n\t\t\t\t\t\t\t")]),t._v(" "),e("ul",{staticClass:"mb-4"},t._l(t.slidesMissingImages(n),(function(n){return e("li",{key:n.original_id,staticClass:"mb-0"},[t._v("\n\t\t\t\t\t\t\t\t\t"+t._s(n.image?n.image:t.__("No image name provided","ml-slider"))+"\n\t\t\t\t\t\t\t\t")])})),0)])})),0)]):t._e()])],1),t._v(" "),e("template",{slot:"description3"},[e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[!t.procesingImages&&t.missingImages.length?e("div",[t._v("\n\t\t\t\t\t"+t._s(t.__("Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.","ml-slider"))+"\n\t\t\t\t")]):t._e()])],1),t._v(" "),e("template",{slot:"fields"},[e("div",{staticClass:"mb-10"},[e("action-button",{attrs:{disabled:!t.slideshowsToImport.length},on:{click:t.importSlideshows}},[e("template",{slot:"header"},[t._v(t._s(t.sprintf(t.__("Import %s slideshows","ml-slider"),t.slideshowsToImport.length)))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select the slideshows you wish to import below, then press here to import them.","ml-slider")))]),t._v(" "),e("template",{slot:"button"},[t._v(t._s(t.__("Import","ml-slider")))])],2),t._v(" "),Object.keys(t.slideshowsList).length>10?e("switch-single-input",{attrs:{value:t.slideshowsToImport.length>0},on:{change:function(e){return t.toggleSlideshowsToImport(e)}}},[e("template",{slot:"header"},[t._v(t._s(t.__("Toggle all slideshows")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select or deselect all slideshows")))])],2):t._e()],1),t._v(" "),t._l(t.slideshowsList,(function(n,r){return[e("switch-single-input",{key:r,staticClass:"transition-all duration-150 ease-linear",style:{filter:t.slideshowsListSelection[r]?"none":"grayscale(1)"},model:{value:t.slideshowsListSelection[r],callback:function(e){t.$set(t.slideshowsListSelection,r,e)},expression:"slideshowsListSelection[index]"}},[e("template",{slot:"header"},[e("input",{staticClass:"-ml-2 hover:bg-gray-lighter hover:border border-gray-light px-2 py-1 text-lg",domProps:{value:n.title||"Title not found"},on:{change:function(e){t.slideshowsList[r].title=e.target.value}}})]),t._v(" "),e("template",{slot:"description"},[n.slides?e("div",{staticClass:"pl-3 inline-flex flex-row-reverse justify-end relative z-0 overflow-hidden"},[t._l(n.slides,(function(n){return e("div",{key:n.original_id,staticClass:"relative -ml-3 z-30 inline-block h-12 w-12 text-white border border-gray-light shadow-solid rounded-full"},["post_feed"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue border border-blue flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("Post Feed slide","ml-slider"),title:t.__("Post Feed slide","ml-slider")}},[t._v("\n\t\t\t\t\t\t\t\t\tP\n\t\t\t\t\t\t\t\t")]):"external"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue-light border border-blue-light flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("External slide","ml-slider"),title:t.__("External slide","ml-slider")}},[t._v("\n\t\t\t\t\t\t\t\t\tE\n\t\t\t\t\t\t\t\t")]):n.id||t.procesingImages?n.id?e("img",{staticClass:"gradient border border-white rounded-full h-full inline-block",attrs:{src:t.imageThumbnails[n.id],alt:""}}):e("div",{staticClass:"gradient border border-white text-white rounded-full h-full",style:{"animation-delay":[500*r*Math.random()+"ms"]}}):e("div",{staticClass:"gradient border border-white rounded-full h-full flex justify-center items-center text-red tipsy-tooltip-top",style:{"animation-delay":[500*r*Math.random()+"ms"]},attrs:{"original-title":t.sprintf(t.__("Image not found<br>%s","ml-slider"),n.image),title:t.sprintf(t.__("Image not found<br>%s","ml-slider"),n.image)}},[t._v("\n\t\t\t\t\t\t\t\t\tx\n\t\t\t\t\t\t\t\t")])])})),t._v(" "),e("div",{staticClass:"relative -ml-3 z-50 inline-block bg-gray-lighter flex items-center justify-center text-lg text-gray-dark h-12 w-12 rounded-full shadow-solid border border-gray-light"},[t._v("\n\t\t\t\t\t\t\t\t"+t._s(n.slides.length)+"\n\t\t\t\t\t\t\t")])],2):e("div",[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("No slides found","ml-slider"))+"\n\t\t\t\t\t\t")])])],2)]}))],2)],2):t._e()],1)}),[],!1,null,"78d91dd4",null)),Xh=Kh.exports;function Qh(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function tm(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Qh(Object(n),!0).forEach((function(e){em(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Qh(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function em(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var nm={components:{"split-layout":mh,"switch-single-input":Oh,"action-button":Vh,"textbox-with-link":Th,"alert-warning-small":Dh},computed:tm(tm({},td({slideshows:t=>t.slideshows.all,totalSlideshows:t=>t.slideshows.totalSlideshows})),{},{loading(){return this.totalSlideshows<1},slideshowsToExport(){if(!Object.keys(this.slideshowsList).length)return[];let t=[];return Object.keys(this.slideshowsList).forEach((e=>{this.slideshowsList[e]&&t.push(e)})),t}}),watch:{totalSlideshows:{immediate:!0,handler:function(t){this.$nextTick((()=>{t&&t<25&&this.fetchAllSlideshows()}))}}},props:{needsSlideshows:{type:Boolean,default:!1}},data(){return{slideshowsList:{},processing:!1,exporting:!1}},created(){},mounted(){},methods:{fetchAllSlideshows(){this.processing=!0,this.notifyInfo("metaslider-loading-all-slideshows",this.sprintf(this.__("Loading %s slideshows...","ml-slider"),this.totalSlideshows,!0)),this.$store.dispatch("slideshows/getAllSlideshows").then((()=>{this.slideshowsList={};const t={};this.slideshows.forEach((e=>{t[e.id]=!0})),this.slideshowsList=t,this.processing=!1,this.notifySuccess("metaslider/all-slideshows-loaded",this.__("All Slideshows loaded","ml-slider"),!0)}))},exportSlideshows(){this.slideshowsToExport.length||this.notifyWarning("metaslider-exporting-slideshows-no-slideshows",this.__("You have no slideshows to export","ml-slider"),!0),this.exporting=!0,this.processing=!0,this.notifyInfo("metaslider-exporting-slideshows",this.sprintf(this.__("Exporting %s slideshows...","ml-slider"),this.slideshowsToExport.length),!0),Ad.export(this.slideshowsToExport).then((t=>{const e=window.location.hostname.replace(".","-"),n=(new Date).toJSON();Wh()(t.data,`metaslider-export-${e}-${n}.json`),this.notifySuccess("metaslider-exporting-slideshows-success",this.__("Export successful","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/export-error",t,!0)})).finally((()=>{this.exporting=!1,this.processing=!1}))},modifiedAt(t){return Zp.ou.fromSQL(t.modified_at_gmt,{zone:"utc"}).setLocale(metaslider.locale).toRelative()},toggleSlideshowsToExport(t){Object.keys(this.slideshowsList).forEach((e=>this.slideshowsList[e]=t))}}},rm={components:{helpcenter:Ih,settings:Fh,import:Xh,export:Ld(nm,(function(){var t=this,e=t._self._c;return e("div",[t.needsSlideshows?e("div",[e("alert-warning-small",{attrs:{link:t.metasliderPage}},[e("template",{slot:"description"},[t._v(t._s(t.__("No slideshows found.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Create a new slideshow now","ml-slider")))])],2)],1):t._e(),t._v(" "),e("split-layout",{attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Export","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("ul",{staticClass:"export-instruction"},[e("li",[t._v(t._s(t.__('If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the "Load" button.',"ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__("Choose the slideshows you wish to export.","ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__('Click the "Export" button.',"ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__("A .json file will automatically be downloaded with all your slideshow data.","ml-slider")))])]),t._v(" "),e("b",[t._v(t._s(t.__("A few notes on exporting slideshow images:","ml-slider")))]),t._v(" "),e("ul",{staticClass:"export-instruction"},[e("li",[t._v(t._s(t.__("Your images need to be exported manually. Please upload them to the new website before importing these slideshows.","ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__("Images will need to keep the same file names on the new site.","ml-slider"))+" "),e("a",{attrs:{href:"https://www.metaslider.com/how-to-export-and-import-slideshows-from-one-website-to-another",target:"_blank"}},[t._v(t._s(this.__("Read our guide on exporting images.","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external"})])])])]),t._v(" "),e("template",{slot:"fields"},[t.needsSlideshows?e("div",[e("textbox-with-link",{attrs:{link:"","new-tab":!1}},[e("template",{slot:"header"},[t._v(t._s(t.__("No slideshows found","ml-slider")))])],2)],1):e("action-button",{attrs:{disabled:t.processing},on:{click:t.fetchAllSlideshows}},[e("template",{slot:"header"},[t._v(t._s(t.__("Load slideshows","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.sprintf(t.__("You have %s slideshows that can be exported. Information about each slideshow will be presented below.","ml-slider"),t.totalSlideshows))+"\n        ")]),t._v(" "),t.exporting?e("template",{slot:"button"},[t._v(t._s(t.__("Processing...","ml-slider")))]):Object.keys(t.slideshowsList).length?e("template",{slot:"button"},[t._v(t._s(t.__("Refresh","ml-slider"))+"\n        ")]):t.processing?e("template",{slot:"button"},[t._v(t._s(t.__("Loading...","ml-slider")))]):e("template",{slot:"button"},[t._v(t._s(t.__("Load","ml-slider")))])],2),t._v(" "),Object.keys(t.slideshowsList).length||t.processing?[e("action-button",{attrs:{disabled:!t.slideshowsToExport.length},on:{click:t.exportSlideshows}},[e("template",{slot:"header"},[t._v(t._s(t.sprintf(t.__("Export %s slideshows","ml-slider"),t.slideshowsToExport.length))+"\n          ")]),t._v(" "),e("template",{slot:"description"},[t._v("\n            "+t._s(t.__("Select the slideshows you wish to export below, then press here to export them.","ml-slider"))+"\n          ")]),t._v(" "),e("template",{slot:"button"},[t._v(t._s(t.__("Export","ml-slider")))])],2),t._v(" "),Object.keys(t.slideshows).length>10?e("switch-single-input",{attrs:{value:t.slideshowsToExport.length>0},on:{change:function(e){return t.toggleSlideshowsToExport(e)}}},[e("template",{slot:"header"},[t._v(t._s(t.__("Toggle all slideshows")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select or deselect all slideshows")))])],2):t._e(),t._v(" "),t._l(t.slideshows,(function(n){return e("div",{key:n.id},[e("switch-single-input",{model:{value:t.slideshowsList[n.id],callback:function(e){t.$set(t.slideshowsList,n.id,e)},expression:"slideshowsList[slideshow.id]"}},[e("template",{slot:"header"},[t._v(t._s(n.title))]),t._v(" "),e("template",{slot:"subheader"},[e("span",{attrs:{title:n.modified_at_gmt}},[t._v(t._s(t.sprintf(t.__("last updated: %s","ml-slider"),t.modifiedAt(n))))])]),t._v(" "),e("template",{slot:"description"},[e("div",{staticClass:"pl-3 inline-flex flex-row-reverse justify-end relative z-0 overflow-hidden"},[t._l(n.slides,(function(n){return e("div",{key:n.id,staticClass:"relative -ml-3 z-30 inline-block h-12 w-12 text-white border border-gray-light shadow-solid rounded-full"},["post_feed"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue border border-blue flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("Post Feed slide","ml-slider"),title:t.__("Post Feed slide","ml-slider")}},[t._v("\n                    P\n                  ")]):"external"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue-light border border-blue-light flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("External slide","ml-slider"),title:t.__("External slide","ml-slider")}},[t._v("\n                    E\n                  ")]):e("img",{staticClass:"gradient border border-white rounded-full h-full inline-block",attrs:{src:n.thumbnail,alt:""}})])})),t._v(" "),e("div",{staticClass:"relative -ml-3 z-50 inline-block bg-gray-lighter flex items-center justify-center text-lg text-gray-dark h-12 w-12 rounded-full shadow-solid border border-gray-light"},[t._v("\n                  "+t._s(n.slides.length)+"\n                ")])],2)])],2)],1)}))]:t._e()],2)],2)],1)}),[],!1,null,null,null).exports},props:{},data(){return{component:"settings",hasNotice:!1}},mounted(){this.hasNotice=!!document.querySelector(".updraft-ad-container");const t=()=>{window.requestAnimationFrame((()=>{const t=document.getElementById("wpadminbar"),e=document.getElementById("ms-toolbar"),n="absolute"!==window.getComputedStyle(t).position?e.clientHeight:t.clientHeight+e.clientHeight;this.hasNotice||document.getElementById("metaslider-settings-page").setAttribute("style",`padding-top:${n}px!important`),document.getElementById("metaslider-ui").setAttribute("style",`height:calc(100vh - ${t.clientHeight}px)!important`)}))};t(),window.addEventListener("resize",t),Kc.$on("metaslider/open-settings-page",(t=>{if(!1=="render"in t)return this.notifyError("metaslider/open-settings-page",this.__("Failed to open the settings page...","ml-slider")),!1;const e="filename"in t?t.filename:"Name not found";this.notifyInfo("metaslider/open-settings-page",this.__("Opening settings page...","ml-slider")+" ("+e+")"),this.component=t}))},methods:{loadPage(t){Object.keys(this.$options.components).includes(t)?this.component=t:this.notifyError("metaslider/open-settings-page",this.sprintf(this.__("Page not found: %s","ml-slider"),t))}},render(){return this.$scopedSlots.default({})}},im=Ld(rm,undefined,undefined,!1,null,null,null).exports;er.component("metaslider-settings-viewer",Ip),er.component("metaslider-slide-viewer",sp),er.component("metaslider-slide",ap),er.component("metaslider-caption",fp),er.component("metaslider-theme-viewer",kf),er.component("metaslider-preview",np),er.component("metaslider-external",Cp),er.component("metaslider-shortcode",Hp),er.component("metaslider-utility-modal",Wp),er.component("metaslider-dragdrop-import",Pp),er.component("metaslider-switcher",ah),er.component("metaslider-drawer",hh),er.component("metaslider-title",Rp),er.component("metaslider-settings-page",im),er.component("metaslider-import-module",Op),window.metaslider.components&&Object.keys(window.metaslider.components).forEach((t=>{er.component(t,window.metaslider.components[t])})),window.jQuery(window).on("metaslider/initialize_external_api",((t,e)=>{window.metaslider.externalVM=(new er).$mount(e.selector)})),window.jQuery(window).on("metaslider/destroy_external_api",(t=>{window.metaslider.externalVM&&window.metaslider.externalVM.$destroy()})),er.component("metaslider",tf),er.component("metaslider-toolbar",nf);const om=new er({store:Ed}).$mount("#metaslider-ui");window.metaslider||(window.metaslider={}),window.metaslider.app={Vue:er,MetaSlider:om,Slideshow:tf,EventManager:Kc,Axios:Jc,store:Ed}}()}();admin/assets/dist/js/editor-block.asset.php000064400000000151151213255330014717 0ustar00<?php return array('dependencies' => array('react', 'wp-block-editor'), 'version' => '933845dde2a98fc9');admin/assets/dist/js/admin.js000064400000050345151213255330012152 0ustar00window.jQuery((function(e){const t=window.metaslider.app?window.metaslider.app.MetaSlider:null;var i,s={loaded:!1,attach_event:function(e){var t=e.state().get("library");e.listenTo(t,"change",(function(e){s.update_slide_metadata({id:e.get("id"),caption:e.get("caption"),description:e.get("description"),title:e.get("title"),alt:e.get("alt")})}))},update_slide_metadata:function(t){var i=e(".slide").filter((function(i){return e(this).data("attachment-id")===t.id})),s=i.map((function(){return this.id.replace("slide-","")}));e(document).trigger("metaslider/image-meta-updated",[s.toArray(),t]),t.title?e(".title .default",i).html(t.title):e(".title .default",i).html("&nbsp;"),t.alt?e(".alt .default",i).html(t.alt):e(".alt .default",i).html("&nbsp;")}},a=window.create_slides=wp.media.frames.file_frame=wp.media({multiple:"add",frame:"post",library:{type:"image"}}),d=["insert","iframe"],l=a.states.models.filter((function(e){var t=e.id;return!d.filter((function(e){return t.includes(e)})).length}));a.states.remove(l),a.on("insert",(function(){var i=[];if(a.state().get("selection").map((function(e){i.push(e.toJSON().id)})),t){const e=1==i.length?t.__("Preparing 1 slide...","ml-slider"):t.__("Preparing %s slides...");t.notifyInfo("metaslider/creating-slides",t.sprintf(e,i.length),!0)}if(m(),window.location.href.indexOf("metaslider-start")>-1)var s="";else s=window.parent.metaslider_slider_id;var d={action:"create_image_slide",slider_id:s,selection:i,_wpnonce:metaslider.create_slide_nonce};e.ajax({url:metaslider.ajaxurl,data:d,type:"POST",error:function(e,i,s){var a=JSON.parse(e.responseText);t&&t.notifyError("metaslider/slide-create-failed",a.data.messages[1].errors.create_failed[0],!0)},success:function(s){if(window.location.href.indexOf("metaslider-start")>-1)window.location.href="admin.php?page=metaslider&id="+s.data;else{s.data.forEach((function(t){var i=window.metaslider.app.Vue.compile(t.html);const s=new window.metaslider.app.Vue({render:i.render,staticRenderFns:i.staticRenderFns}).$mount().$el;"last"===metaslider.newSlideOrder?e("#metaslider-slides-list > tbody").append(s):e("#metaslider-slides-list > tbody").prepend(s)}));var a=s.data[s.data.length-1].slide_id;e([document.documentElement,document.body]).animate({scrollTop:"last"===metaslider.newSlideOrder?e("#slide-"+a).offset().top:0},2e3),setTimeout((function(){if(t){const e=1==i.length?t.__("1 slide added successfully","ml-slider"):t.__("%s slides added successfully");t.notifySuccess("metaslider/slides-created",t.sprintf(e,i.length),!0)}setTimeout((function(){t&&t.triggerEvent("metaslider/save")}),1e3)}),1e3)}}})})),a.on("attach",(function(){s.loaded||s.attach_event(a)})),a.on("content:activate",(function(){e("#media-attachment-filters").remove()})),a.on("open activate uploader:ready",(function(){e('.media-menu a:contains("Media Library")').remove(),c(),l.forEach((function(t){e("#menu-item-"+t.id).remove()})),e("#media-attachment-filters").remove()})),t&&a.on("open",(function(){t.notifyInfo("metaslider/add-slide-opening-ui",t.__("Opening add slide UI...","ml-slider"))})),t&&a.on("deactivate close",(function(){t.notifyInfo("metaslider/add-slide-closing-ui",t.__("Closing add slide UI...","ml-slider")),m()})),e(".metaslider").on("change",".js-inherit-from-image",(function(t){var i=e(this),s=i.parents(".can-inherit"),a=s.children("textarea,input[type=text]"),d=s.children(".default");i.is(":checked")?s.addClass("inherit-from-image"):(s.removeClass("inherit-from-image"),a.focus(),""===a.val()&&0===d.find(".no-content").length&&a.val(d.html()))})),e(".metaslider").on("click",".update-image",(function(d){d.preventDefault();var l=e(this),n=l.data("attachment-id");(i=window.update_slide_frame=wp.media.frames.file_frame=wp.media({title:MetaSlider_Helpers.capitalize(metaslider.update_image),library:{type:"image"},button:{text:MetaSlider_Helpers.capitalize(l.attr("data-button-text"))}})).on("open",(function(){n&&(i.state().get("selection").reset([wp.media.attachment(n)]),c(l.data("slideType"),l.data("slideId")))})),i.on("attach",(function(){s.loaded||s.attach_event(i)})),i.open(),i.on("select",(function(){i.state().get("selection").map((function(e){e=e.toJSON(),new_image_id=e.id,selected_item=e})),t&&t.notifyInfo("metaslider/updating-slide",t.__("Updating slide...","ml-slider"),!0),m();var a={action:"update_slide_image",_wpnonce:metaslider.update_slide_image_nonce,slide_id:l.data("slideId"),slider_id:window.parent.metaslider_slider_id,image_id:new_image_id};e.ajax({url:metaslider.ajaxurl,data:a,type:"POST",error:function(e){var i=JSON.parse(e.responseText);t&&t.notifyError("metaslider/slide-update-failed",i.data.message,!0)},success:function(i){var a=e("#slide-"+l.data("slideId")+" .thumb").find("img");a.attr("srcset",`${i.data.thumbnail_url_large} 1024w, ${i.data.thumbnail_url_medium} 768w, ${i.data.thumbnail_url_small} 240w`),a.attr("src",i.data.thumbnail_url_small),e("#slide-"+l.data("slideId")+", #slide-"+l.data("slideId")+" .update-image").data("attachment-id",selected_item.id),i.data.thumbnail_url_small&&e("#slide-"+l.data("slideId")).trigger("metaslider/attachment/updated",i.data),s.update_slide_metadata({id:selected_item.id,caption:selected_item.caption,description:selected_item.description,title:selected_item.title,alt:selected_item.alt}),t&&t.notifySuccess("metaslider/slide-updated",t.__("Slide updated successfully","ml-slider"),!0),e(".metaslider table#metaslider-slides-list").trigger("resizeSlides")}})})),i.on("close",(function(){m()})),a.on("close",(function(){m()})),i.on("all",(function(){"library"===i.state().id&&(i.$el.addClass("hide-menu"),i.$el.find(".media-button-select").text(i.options.button.text).addClass("button-primary"))}))})),e(".metaslider").on("click",".duplicate-slide-image",(function(i){i.preventDefault();var s=e(this),a={action:"duplicate_slide",_wpnonce:metaslider.duplicate_slide_nonce,slide_id:s.data("slide-id"),slider_id:window.parent.metaslider_slider_id};e.ajax({url:metaslider.ajaxurl,data:a,type:"POST",error:function(e){t&&t.notifyError("metaslider/slide-duplicate-failed",e,!0)},success:function(i){var s=window.metaslider.app.Vue.compile(i.data.html);const a=new window.metaslider.app.Vue({render:s.render,staticRenderFns:s.staticRenderFns}).$mount().$el;"last"===metaslider.newSlideOrder?e("#metaslider-slides-list > tbody").append(a):e("#metaslider-slides-list > tbody").prepend(a),f("slide-"+i.data.slide_id),e([document.documentElement,document.body]).animate({scrollTop:"last"===metaslider.newSlideOrder?e("#slide-"+i.data.slide_id).offset().top:0},2e3),setTimeout((function(){setTimeout((function(){t&&t.triggerEvent("metaslider/save")}),1e3)}),1e3)}})})),e(".metaslider").on("change",'.ms-settings-table input[name="settings[autoPlay]"], .ms-settings-table input[name="settings[carouselMode]"], .ms-settings-table input[name="settings[infiniteLoop]"]',(function(){n()}));var n=function(){var t=e('.ms-settings-table input[name="settings[carouselMode]"]'),i=e('.ms-settings-table input[name="settings[infiniteLoop]"]'),s=e('.ms-settings-table input[name="settings[autoPlay]"]'),a=e('.ms-settings-table input[name="settings[pausePlay]"]');t.is(":checked")&&i.is(":checked")?(s.parents("tr").hide(),a.parents("tr").hide()):(s.parents("tr").show(),s.is(":checked")?a.parents("tr").show():a.parents("tr").hide())};n(),e(".metaslider").on("change",'.ms-settings-table input[name="settings[autoPlay]"], .ms-settings-table select[name="settings[loop]"]',(function(){r()}));var r=function(){var i=e('.ms-settings-table input[name="settings[autoPlay]"]'),s=e('.ms-settings-table select[name="settings[loop]"]');i.is(":checked")?0===s.find('option[value="stopOnFirst"]').length&&s.append(`<option value="stopOnFirst">${t.__("Stop on first slide","ml-slider")}</option>`):s.find('option[value="stopOnFirst"]').remove()};r();var o=function(t){t.preventDefault(),window.metaslider.about_to_reload||(e(this).addClass("active").siblings().removeClass("active"),e("#image-api-container").length||(e(this).parents(".media-frame-router").siblings(".media-frame-content").append('<div id="image-api-container"></div>'),e("#image-api-container").append('<metaslider-external source="unsplash" :slideshow-id="'+window.parent.metaslider_slider_id+'" :slide-id="'+window.metaslider.slide_id+'" slide-type="'+(window.metaslider.slide_type||"image")+'"></metaslider-external>'),e(window).trigger("metaslider/initialize_external_api",{selector:"#image-api-container"}),delete window.metaslider.slide_id,delete window.metaslider.slide_type))},c=window.metaslider.add_image_apis=function(t,i){e('.media-menu-item.active:contains("Layer")').length&&!window.metaslider.pro_supports_imports||(window.metaslider.slide_type="layer",t&&(window.metaslider.slide_type=t),window.metaslider.slide_id=i,e(".unsplash-tab").remove(),e(".media-frame-router .media-router").append('<a href="#" id="unsplash-tab" class="text-black hover:text-blue-dark unsplash-tab media-menu-item">Unsplash Library</a>'),e(".toplevel_page_metaslider").on("click",".unsplash-tab",o),e(".media-frame-router .media-router .media-menu-item").on("click",(function(){e(window).trigger("metaslider/destroy_external_api"),e(this).addClass("active").siblings().removeClass("active")})))},m=window.metaslider.remove_image_apis=function(){window.metaslider.about_to_reload||(e(window).trigger("metaslider/destroy_external_api"),e(".toplevel_page_metaslider").off("click",".unsplash-tab",o),e(".unsplash-tab").remove(),e(".media-frame-router .media-router > a").first().trigger("click"))};e(".metaslider").on("click",".delete-slide",(function(t){t.preventDefault();var i=e(this),s={action:"delete_slide",_wpnonce:metaslider.delete_slide_nonce,slide_id:i.data("slideId"),slider_id:window.parent.metaslider_slider_id};i.parents("#slide-"+i.data("slideId")).removeClass("ms-restored").addClass("ms-deleting").append('<div class="ms-delete-overlay"><i style="height:24px;width:24px"><svg class="ms-spin" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-loader"><line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/></svg></i></div>'),i.parents("#slide-"+i.data("slideId")).find(".ms-delete-status").remove(),e.ajax({url:metaslider.ajaxurl,data:s,type:"POST",error:function(e){alert(e.responseJSON.data.message),$slide=i.parents("#slide-"+i.data("slideId")),$slide.removeClass("ms-deleting"),$slide.find(".ms-delete-overlay").remove()},success:function(t){setTimeout((function(){$slide=i.parents("#slide-"+i.data("slideId")),$slide.addClass("ms-deleted").removeClass("ms-deleting").find(".metaslider-ui-controls").append('<button class="undo-delete-slide" title="'+metaslider.restore_language+'" data-slide-id="'+i.data("slideId")+'">'+metaslider.restore_language+"</button>");var t=$slide.find(".thumb").css("background-image").replace(/^url\(["']?/,"").replace(/["']?\)$/,"");t=window.location.href===t?"":t,"none"==e(".trashed-slides-cont").css("display")&&e(".trashed-slides-cont").css("display","")}),1e3)}})})),e(".metaslider").on("click",".undo-delete-slide, .trash-view-restore",(function(t){t.preventDefault();var i=e(this),s={action:"undelete_slide",_wpnonce:metaslider.undelete_slide_nonce,slide_id:i.data("slideId"),slider_id:window.parent.metaslider_slider_id};e("#slide-"+i.data("slideId")).find(".undo-delete-slide").html(""),i.parents("#slide-"+i.data("slideId")).removeClass("ms-deleted").addClass("ms-deleting").css("padding-top","31px").append('<div class="ms-delete-overlay"><i style="height:24px;width:24px"><svg class="ms-spin" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-loader"><line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/></svg></i></div>'),i.parents("#slide-"+i.data("slideId")).find(".ms-delete-status").remove(),i.parents("#slide-"+i.data("slideId")).find(".delete-slide").focus(),e.ajax({url:metaslider.ajaxurl,data:s,type:"POST",error:function(e){$slide=i.parents("#slide-"+i.data("slideId")),$slide.removeClass("ms-restoring").addClass("ms-deleted"),$slide.find(".ms-delete-overlay").remove(),e.responseJSON?alert(e.responseJSON.data.message):alert("There was an error with the server and the action could not be completed.")},success:function(t){$slide=i.parents("#slide-"+i.data("slideId")),$slide.addClass("ms-restored"),$slide.removeClass("ms-deleting").find(".undo-delete-slide, .trash-view-restore").remove(),$slide.find(".ms-delete-overlay").remove(),e("#slide-"+i.data("slideId")+" h4").after('<span class="ms-delete-status is-success">'+metaslider.restored_language+"</span>"),e("#slide-"+i.data("slideId")).find(".row-actions.trash-btns").html("");var s=$slide.find(".thumb").css("background-image").replace(/^url\(["']?/,"").replace(/["']?\)$/,"");s=window.location.href===s?"":s}})})),e(".metaslider").on("click",".trash-view-permanent",(function(t){t.preventDefault();var i=e(this),s={action:"permanent_delete_slide",_wpnonce:metaslider.permanent_delete_slide_nonce,slide_id:i.data("slideId")};i.parents("#slide-"+i.data("slideId")).removeClass("ms-restored").addClass("ms-deleting").append('<div class="ms-delete-overlay"><i style="height:24px;width:24px"><svg class="ms-spin" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-loader"><line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/></svg></i></div>'),i.parents("#slide-"+i.data("slideId")).find(".ms-delete-status").remove(),e.ajax({url:metaslider.ajaxurl,data:s,type:"POST",error:function(e){alert(e.responseJSON.data.message),$slide=i.parents("#slide-"+i.data("slideId")),$slide.removeClass("ms-deleting"),$slide.find(".ms-delete-overlay").remove()},success:function(t){setTimeout((function(){$slide=i.parents("#slide-"+i.data("slideId")),$slide.addClass("ms-deleted").removeClass("ms-deleting").find(".metaslider-ui-controls").append('<button class="undo-delete-slide" title="'+metaslider.restore_language+'" data-slide-id="'+i.data("slideId")+'">'+metaslider.restore_language+"</button>");var t=$slide.find(".thumb").css("background-image").replace(/^url\(["']?/,"").replace(/["']?\)$/,"");t=window.location.href===t?"":t,"none"==e(".restore-slide-link").css("display")&&e(".restore-slide-link").css("display","inline")}),1e3)}})})),e(".metaslider").on("resizeSlides","table#metaslider-slides-list",(function(t){var i=e("input.width").val(),s=e("input.height").val();e("tr.slide input[name='resize_slide_id']",this).each((function(){$this=e(this);var t=$this.attr("data-width"),a=$this.attr("data-height"),d=e(this).closest("tr"),l=d.data("crop_changed");if(t!=i||a!=s||l){$this.attr("data-width",i),$this.attr("data-height",s);var n={action:"resize_image_slide",slider_id:window.parent.metaslider_slider_id,slide_id:$this.attr("data-slide_id"),_wpnonce:metaslider.resize_nonce};e.ajax({type:"POST",data:n,async:!1,cache:!1,url:metaslider.ajaxurl,success:function(e){l&&d.data("crop_changed",!1),e.data.thumbnail_url_small&&$this.closest("tr.slide").trigger("metaslider/attachment/updated",e.data)}})}}))}));var p=function(){e(".tipsy-tooltip").tipsy({className:"msTipsy",live:!1,delayIn:500,html:!0,gravity:"e"}),e(".tipsy-tooltip-top").tipsy({live:!1,delayIn:500,html:!0,gravity:"s"}),e(".tipsy-tooltip-bottom").tipsy({live:!1,delayIn:500,html:!0,gravity:"n"}),e(".tipsy-tooltip-bottom-toolbar").tipsy({live:!1,delayIn:500,html:!0,gravity:"n",offset:2})};p();const u=e("#metaslider-slides-list");if(u.length){const t={childList:!0,subtree:!0};new MutationObserver((function(t,i){for(const i of t)"childList"===i.type&&i.addedNodes.length>0&&(p(),e("#add-first-slide-notice").hide())})).observe(u[0],t)}if(e("#sampleslider-btn").on("click",(function(){window.location.href=e("#sampleslider-options").val()})),window.location.href.indexOf("withcaption")>-1&&e("input[value='override']").attr("checked",!0).trigger("click"),e("#quickstart-browse-button").click((function(){window.create_slides.open()})),e("#slideshows-list").length&&e("#search_slideshow-search-input").length){var h=e("#search_slideshow-search-input").val();""!=h&&e("#slideshows-list .pagination-links a").each((function(){this.href=this.href+"&s="+h}))}"disabled"==e('select[name="settings[smartCrop]"]').val()?e('input[name="settings[smoothHeight]"]').closest("tr").show():e('input[name="settings[smoothHeight]"]').closest("tr").hide(),e('select[name="settings[smartCrop]"]').change((function(){"disabled"==e(this).val()?e('input[name="settings[smoothHeight]"]').closest("tr").show():(e('input[name="settings[smoothHeight]"]').closest("tr").hide(),e('input[name="settings[smoothHeight]"]').prop("checked",!1))})),e(document).on("click",".ml-legacy-notice .notice-dismiss",(function(){var t={action:"legacy_notification",notif_status:"hide",_wpnonce:metaslider.legacy_notification_nonce};e.ajax({url:metaslider.ajaxurl,data:t,type:"POST",error:function(e){console.log("Something went wrong:"+e)},success:function(e){console.log(e)}})})),e(".copy-shortcode").click((function(){var t=e(this).text();if(window.isSecureContext)navigator.clipboard.writeText(t);else{var i=e("<input>");e("body").append(i),i.val(t).select(),document.execCommand("Copy"),i.remove()}e(this).next(".copy-message").fadeIn().delay(1e3).fadeOut()}));window.metaslider.after_adding_slide_success=function(t){var i=e(".metaslider table#metaslider-slides-list");"last"===window.metaslider.newSlideOrder?i.append(t.html):i.prepend(t.html),e("html, body").animate({scrollTop:"last"===window.metaslider.newSlideOrder?e(e("#slide-"+t.slide_id)).offset().top:0},2e3);var s=window.metaslider.app.MetaSlider;e(".media-modal-close").click(),setTimeout((function(){s&&s.notifySuccess("metaslider/slides-created",s.__("1 slide added successfully","ml-slider"),!0),setTimeout((function(){s&&s.triggerEvent("metaslider/save")}),1e3)}),1e3)};var f=function(t){var i=e("#metaslider-slides-list #"+t+" .mobile-checkbox:checked"),s=e("#metaslider-slides-list #"+t+" .slide-details .mobile_setting_enabled");i.length>0?0==s.length&&e("#metaslider-slides-list #"+t+" .slide-details").append('<span class="mobile_setting_enabled float-left tipsy-tooltip-top" title="Mobile options enabled for this slide"><span class="inline-block mr-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-smartphone"><rect x="5" y="2" width="14" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line></svg></span></span>'):s.remove()};function g(){e('[name="settings[links]"]').is(":checked")||"false"!=e('[name="settings[navigation]"]').val()?e(".highlight.mobileOptions, .empty-row-spacing.mobileOptions").show():e(".highlight.mobileOptions, .empty-row-spacing.mobileOptions").hide()}e("#metaslider-slides-list > tbody  > tr").each((function(){var t=e(this).attr("id");f(t)})),e(".mobile-checkbox").click((function(){var t=e(this).attr("name").replace(/[^0-9]/g,"");f("slide-"+t)})),e('[name="settings[navigation]"], [name="settings[links]"]').on("change",(function(){g()})),g(),e(".slidethumb").each((function(){var t=1,i=e(this);setInterval((function(){t=i.find(":nth-child("+t+")").fadeOut().next().length?t+1:1,i.find(":nth-child("+t+")").fadeIn(),console.log(i.find(":nth-child("+t+")"))}),2e3)}));-1!==window.location.href.indexOf("metaslider_add_sample_slides_after")&&setTimeout((function(){t&&t.triggerEvent("metaslider/save")}),1e3)}));var MetaSlider_Helpers={capitalize:function(e){return e.replace(/\b\w/g,(function(e){return e.toUpperCase()}))}};
admin/assets/dist/js/app.js.LICENSE.txt000064400000002760151213255340013540 0ustar00/*!
 * The buffer module from node.js, for the browser.
 *
 * @author   Feross Aboukhadijeh <https://feross.org>
 * @license  MIT
 */

/*!
 * Vue.js v2.7.14
 * (c) 2014-2022 Evan You
 * Released under the MIT License.
 */

/*!
 * vuex v3.6.2
 * (c) 2021 Evan You
 * @license MIT
 */

/*!
Copyright (C) 2013-2017 by Andrea Giammarchi - @WebReflection

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

*/

/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */

/*! tether 1.4.7 */

/*! tether-shepherd 1.8.1 */
admin/assets/dist/js/app.min.js000064400002412253151213255340012427 0ustar00/*! For license information please see app.min.js.LICENSE.txt */
!function(){var t,e={6735:function(t,e,n){"use strict";var r={};n.r(r),n.d(r,{hasBrowserEnv:function(){return ec},hasStandardBrowserEnv:function(){return nc},hasStandardBrowserWebWorkerEnv:function(){return ic}});var i=Object.freeze({}),o=Array.isArray;function s(t){return null==t}function a(t){return null!=t}function l(t){return!0===t}function c(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function u(t){return"function"==typeof t}function d(t){return null!==t&&"object"==typeof t}var f=Object.prototype.toString;function p(t){return"[object Object]"===f.call(t)}function h(t){return"[object RegExp]"===f.call(t)}function m(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function g(t){return a(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function v(t){return null==t?"":Array.isArray(t)||p(t)&&t.toString===f?JSON.stringify(t,null,2):String(t)}function w(t){var e=parseFloat(t);return isNaN(e)?t:e}function y(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i<r.length;i++)n[r[i]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}var b=y("slot,component",!0),_=y("key,ref,slot,slot-scope,is");function x(t,e){var n=t.length;if(n){if(e===t[n-1])return void(t.length=n-1);var r=t.indexOf(e);if(r>-1)return t.splice(r,1)}}var k=Object.prototype.hasOwnProperty;function S(t,e){return k.call(t,e)}function C(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var O=/-(\w)/g,T=C((function(t){return t.replace(O,(function(t,e){return e?e.toUpperCase():""}))})),E=C((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),j=/\B([A-Z])/g,A=C((function(t){return t.replace(j,"-$1").toLowerCase()}));var P=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function M(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function I(t,e){for(var n in e)t[n]=e[n];return t}function L(t){for(var e={},n=0;n<t.length;n++)t[n]&&I(e,t[n]);return e}function $(t,e,n){}var D=function(t,e,n){return!1},N=function(t){return t};function F(t,e){if(t===e)return!0;var n=d(t),r=d(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var i=Array.isArray(t),o=Array.isArray(e);if(i&&o)return t.length===e.length&&t.every((function(t,n){return F(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(i||o)return!1;var s=Object.keys(t),a=Object.keys(e);return s.length===a.length&&s.every((function(n){return F(t[n],e[n])}))}catch(t){return!1}}function B(t,e){for(var n=0;n<t.length;n++)if(F(t[n],e))return n;return-1}function R(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}function z(t,e){return t===e?0===t&&1/t!=1/e:t==t||e==e}var U="data-server-rendered",V=["component","directive","filter"],H=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],q={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:D,isReservedAttr:D,isUnknownElement:D,getTagNamespace:$,parsePlatformTagName:N,mustUseProp:D,async:!0,_lifecycleHooks:H},W=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function Z(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function Y(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var G=new RegExp("[^".concat(W.source,".$_\\d]"));var J="__proto__"in{},K="undefined"!=typeof window,X=K&&window.navigator.userAgent.toLowerCase(),Q=X&&/msie|trident/.test(X),tt=X&&X.indexOf("msie 9.0")>0,et=X&&X.indexOf("edge/")>0;X&&X.indexOf("android");var nt=X&&/iphone|ipad|ipod|ios/.test(X);X&&/chrome\/\d+/.test(X),X&&/phantomjs/.test(X);var rt,it=X&&X.match(/firefox\/(\d+)/),ot={}.watch,st=!1;if(K)try{var at={};Object.defineProperty(at,"passive",{get:function(){st=!0}}),window.addEventListener("test-passive",null,at)}catch(t){}var lt=function(){return void 0===rt&&(rt=!K&&void 0!==n.g&&(n.g.process&&"server"===n.g.process.env.VUE_ENV)),rt},ct=K&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ut(t){return"function"==typeof t&&/native code/.test(t.toString())}var dt,ft="undefined"!=typeof Symbol&&ut(Symbol)&&"undefined"!=typeof Reflect&&ut(Reflect.ownKeys);dt="undefined"!=typeof Set&&ut(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var pt=null;function ht(t){void 0===t&&(t=null),t||pt&&pt._scope.off(),pt=t,t&&t._scope.on()}var mt=function(){function t(t,e,n,r,i,o,s,a){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=i,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=s,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=a,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(t.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),t}(),gt=function(t){void 0===t&&(t="");var e=new mt;return e.text=t,e.isComment=!0,e};function vt(t){return new mt(void 0,void 0,void 0,String(t))}function wt(t){var e=new mt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var yt=0,bt=[],_t=function(){for(var t=0;t<bt.length;t++){var e=bt[t];e.subs=e.subs.filter((function(t){return t})),e._pending=!1}bt.length=0},xt=function(){function t(){this._pending=!1,this.id=yt++,this.subs=[]}return t.prototype.addSub=function(t){this.subs.push(t)},t.prototype.removeSub=function(t){this.subs[this.subs.indexOf(t)]=null,this._pending||(this._pending=!0,bt.push(this))},t.prototype.depend=function(e){t.target&&t.target.addDep(this)},t.prototype.notify=function(t){var e=this.subs.filter((function(t){return t}));for(var n=0,r=e.length;n<r;n++){0,e[n].update()}},t}();xt.target=null;var kt=[];function St(t){kt.push(t),xt.target=t}function Ct(){kt.pop(),xt.target=kt[kt.length-1]}var Ot=Array.prototype,Tt=Object.create(Ot);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=Ot[t];Y(Tt,t,(function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var i,o=e.apply(this,n),s=this.__ob__;switch(t){case"push":case"unshift":i=n;break;case"splice":i=n.slice(2)}return i&&s.observeArray(i),s.dep.notify(),o}))}));var Et=Object.getOwnPropertyNames(Tt),jt={},At=!0;function Pt(t){At=t}var Mt={notify:$,depend:$,addSub:$,removeSub:$},It=function(){function t(t,e,n){if(void 0===e&&(e=!1),void 0===n&&(n=!1),this.value=t,this.shallow=e,this.mock=n,this.dep=n?Mt:new xt,this.vmCount=0,Y(t,"__ob__",this),o(t)){if(!n)if(J)t.__proto__=Tt;else for(var r=0,i=Et.length;r<i;r++){Y(t,a=Et[r],Tt[a])}e||this.observeArray(t)}else{var s=Object.keys(t);for(r=0;r<s.length;r++){var a;$t(t,a=s[r],jt,void 0,e,n)}}}return t.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)Lt(t[e],!1,this.mock)},t}();function Lt(t,e,n){return t&&S(t,"__ob__")&&t.__ob__ instanceof It?t.__ob__:!At||!n&&lt()||!o(t)&&!p(t)||!Object.isExtensible(t)||t.__v_skip||Ut(t)||t instanceof mt?void 0:new It(t,e,n)}function $t(t,e,n,r,i,s){var a=new xt,l=Object.getOwnPropertyDescriptor(t,e);if(!l||!1!==l.configurable){var c=l&&l.get,u=l&&l.set;c&&!u||n!==jt&&2!==arguments.length||(n=t[e]);var d=!i&&Lt(n,!1,s);return Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=c?c.call(t):n;return xt.target&&(a.depend(),d&&(d.dep.depend(),o(e)&&Ft(e))),Ut(e)&&!i?e.value:e},set:function(e){var r=c?c.call(t):n;if(z(r,e)){if(u)u.call(t,e);else{if(c)return;if(!i&&Ut(r)&&!Ut(e))return void(r.value=e);n=e}d=!i&&Lt(e,!1,s),a.notify()}}}),a}}function Dt(t,e,n){if(!zt(t)){var r=t.__ob__;return o(t)&&m(e)?(t.length=Math.max(t.length,e),t.splice(e,1,n),r&&!r.shallow&&r.mock&&Lt(n,!1,!0),n):e in t&&!(e in Object.prototype)?(t[e]=n,n):t._isVue||r&&r.vmCount?n:r?($t(r.value,e,n,void 0,r.shallow,r.mock),r.dep.notify(),n):(t[e]=n,n)}}function Nt(t,e){if(o(t)&&m(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||zt(t)||S(t,e)&&(delete t[e],n&&n.dep.notify())}}function Ft(t){for(var e=void 0,n=0,r=t.length;n<r;n++)(e=t[n])&&e.__ob__&&e.__ob__.dep.depend(),o(e)&&Ft(e)}function Bt(t){return Rt(t,!0),Y(t,"__v_isShallow",!0),t}function Rt(t,e){if(!zt(t)){Lt(t,e,lt());0}}function zt(t){return!(!t||!t.__v_isReadonly)}function Ut(t){return!(!t||!0!==t.__v_isRef)}function Vt(t,e,n){Object.defineProperty(t,n,{enumerable:!0,configurable:!0,get:function(){var t=e[n];if(Ut(t))return t.value;var r=t&&t.__ob__;return r&&r.dep.depend(),t},set:function(t){var r=e[n];Ut(r)&&!Ut(t)?r.value=t:e[n]=t}})}var Ht=C((function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}}));function qt(t,e){function n(){var t=n.fns;if(!o(t))return on(t,null,arguments,e,"v-on handler");for(var r=t.slice(),i=0;i<r.length;i++)on(r[i],null,arguments,e,"v-on handler")}return n.fns=t,n}function Wt(t,e,n,r,i,o){var a,c,u,d;for(a in t)c=t[a],u=e[a],d=Ht(a),s(c)||(s(u)?(s(c.fns)&&(c=t[a]=qt(c,o)),l(d.once)&&(c=t[a]=i(d.name,c,d.capture)),n(d.name,c,d.capture,d.passive,d.params)):c!==u&&(u.fns=c,t[a]=u));for(a in e)s(t[a])&&r((d=Ht(a)).name,e[a],d.capture)}function Zt(t,e,n){var r;t instanceof mt&&(t=t.data.hook||(t.data.hook={}));var i=t[e];function o(){n.apply(this,arguments),x(r.fns,o)}s(i)?r=qt([o]):a(i.fns)&&l(i.merged)?(r=i).fns.push(o):r=qt([i,o]),r.merged=!0,t[e]=r}function Yt(t,e,n,r,i){if(a(e)){if(S(e,n))return t[n]=e[n],i||delete e[n],!0;if(S(e,r))return t[n]=e[r],i||delete e[r],!0}return!1}function Gt(t){return c(t)?[vt(t)]:o(t)?Kt(t):void 0}function Jt(t){return a(t)&&a(t.text)&&!1===t.isComment}function Kt(t,e){var n,r,i,u,d=[];for(n=0;n<t.length;n++)s(r=t[n])||"boolean"==typeof r||(u=d[i=d.length-1],o(r)?r.length>0&&(Jt((r=Kt(r,"".concat(e||"","_").concat(n)))[0])&&Jt(u)&&(d[i]=vt(u.text+r[0].text),r.shift()),d.push.apply(d,r)):c(r)?Jt(u)?d[i]=vt(u.text+r):""!==r&&d.push(vt(r)):Jt(r)&&Jt(u)?d[i]=vt(u.text+r.text):(l(t._isVList)&&a(r.tag)&&s(r.key)&&a(e)&&(r.key="__vlist".concat(e,"_").concat(n,"__")),d.push(r)));return d}var Xt=1,Qt=2;function te(t,e,n,r,i,s){return(o(n)||c(n))&&(i=r,r=n,n=void 0),l(s)&&(i=Qt),function(t,e,n,r,i){if(a(n)&&a(n.__ob__))return gt();a(n)&&a(n.is)&&(e=n.is);if(!e)return gt();0;o(r)&&u(r[0])&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);i===Qt?r=Gt(r):i===Xt&&(r=function(t){for(var e=0;e<t.length;e++)if(o(t[e]))return Array.prototype.concat.apply([],t);return t}(r));var s,l;if("string"==typeof e){var c=void 0;l=t.$vnode&&t.$vnode.ns||q.getTagNamespace(e),s=q.isReservedTag(e)?new mt(q.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!a(c=Kn(t.$options,"components",e))?new mt(e,n,r,void 0,void 0,t):zn(c,n,t,r,e)}else s=zn(e,n,t,r);return o(s)?s:a(s)?(a(l)&&ee(s,l),a(n)&&function(t){d(t.style)&&bn(t.style);d(t.class)&&bn(t.class)}(n),s):gt()}(t,e,n,r,i)}function ee(t,e,n){if(t.ns=e,"foreignObject"===t.tag&&(e=void 0,n=!0),a(t.children))for(var r=0,i=t.children.length;r<i;r++){var o=t.children[r];a(o.tag)&&(s(o.ns)||l(n)&&"svg"!==o.tag)&&ee(o,e,n)}}function ne(t,e){var n,r,i,s,l=null;if(o(t)||"string"==typeof t)for(l=new Array(t.length),n=0,r=t.length;n<r;n++)l[n]=e(t[n],n);else if("number"==typeof t)for(l=new Array(t),n=0;n<t;n++)l[n]=e(n+1,n);else if(d(t))if(ft&&t[Symbol.iterator]){l=[];for(var c=t[Symbol.iterator](),u=c.next();!u.done;)l.push(e(u.value,l.length)),u=c.next()}else for(i=Object.keys(t),l=new Array(i.length),n=0,r=i.length;n<r;n++)s=i[n],l[n]=e(t[s],s,n);return a(l)||(l=[]),l._isVList=!0,l}function re(t,e,n,r){var i,o=this.$scopedSlots[t];o?(n=n||{},r&&(n=I(I({},r),n)),i=o(n)||(u(e)?e():e)):i=this.$slots[t]||(u(e)?e():e);var s=n&&n.slot;return s?this.$createElement("template",{slot:s},i):i}function ie(t){return Kn(this.$options,"filters",t,!0)||N}function oe(t,e){return o(t)?-1===t.indexOf(e):t!==e}function se(t,e,n,r,i){var o=q.keyCodes[e]||n;return i&&r&&!q.keyCodes[e]?oe(i,r):o?oe(o,t):r?A(r)!==e:void 0===t}function ae(t,e,n,r,i){if(n)if(d(n)){o(n)&&(n=L(n));var s=void 0,a=function(o){if("class"===o||"style"===o||_(o))s=t;else{var a=t.attrs&&t.attrs.type;s=r||q.mustUseProp(e,a,o)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var l=T(o),c=A(o);l in s||c in s||(s[o]=n[o],i&&((t.on||(t.on={}))["update:".concat(o)]=function(t){n[o]=t}))};for(var l in n)a(l)}else;return t}function le(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e||ue(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,this._c,this),"__static__".concat(t),!1),r}function ce(t,e,n){return ue(t,"__once__".concat(e).concat(n?"_".concat(n):""),!0),t}function ue(t,e,n){if(o(t))for(var r=0;r<t.length;r++)t[r]&&"string"!=typeof t[r]&&de(t[r],"".concat(e,"_").concat(r),n);else de(t,e,n)}function de(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function fe(t,e){if(e)if(p(e)){var n=t.on=t.on?I({},t.on):{};for(var r in e){var i=n[r],o=e[r];n[r]=i?[].concat(i,o):o}}else;return t}function pe(t,e,n,r){e=e||{$stable:!n};for(var i=0;i<t.length;i++){var s=t[i];o(s)?pe(s,e,n):s&&(s.proxy&&(s.fn.proxy=!0),e[s.key]=s.fn)}return r&&(e.$key=r),e}function he(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"==typeof r&&r&&(t[e[n]]=e[n+1])}return t}function me(t,e){return"string"==typeof t?e+t:t}function ge(t){t._o=ce,t._n=w,t._s=v,t._l=ne,t._t=re,t._q=F,t._i=B,t._m=le,t._f=ie,t._k=se,t._b=ae,t._v=vt,t._e=gt,t._u=pe,t._g=fe,t._d=he,t._p=me}function ve(t,e){if(!t||!t.length)return{};for(var n={},r=0,i=t.length;r<i;r++){var o=t[r],s=o.data;if(s&&s.attrs&&s.attrs.slot&&delete s.attrs.slot,o.context!==e&&o.fnContext!==e||!s||null==s.slot)(n.default||(n.default=[])).push(o);else{var a=s.slot,l=n[a]||(n[a]=[]);"template"===o.tag?l.push.apply(l,o.children||[]):l.push(o)}}for(var c in n)n[c].every(we)&&delete n[c];return n}function we(t){return t.isComment&&!t.asyncFactory||" "===t.text}function ye(t){return t.isComment&&t.asyncFactory}function be(t,e,n,r){var o,s=Object.keys(n).length>0,a=e?!!e.$stable:!s,l=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(a&&r&&r!==i&&l===r.$key&&!s&&!r.$hasNormal)return r;for(var c in o={},e)e[c]&&"$"!==c[0]&&(o[c]=_e(t,n,c,e[c]))}else o={};for(var u in n)u in o||(o[u]=xe(n,u));return e&&Object.isExtensible(e)&&(e._normalized=o),Y(o,"$stable",a),Y(o,"$key",l),Y(o,"$hasNormal",s),o}function _e(t,e,n,r){var i=function(){var e=pt;ht(t);var n=arguments.length?r.apply(null,arguments):r({}),i=(n=n&&"object"==typeof n&&!o(n)?[n]:Gt(n))&&n[0];return ht(e),n&&(!i||1===n.length&&i.isComment&&!ye(i))?void 0:n};return r.proxy&&Object.defineProperty(e,n,{get:i,enumerable:!0,configurable:!0}),i}function xe(t,e){return function(){return t[e]}}function ke(t){return{get attrs(){if(!t._attrsProxy){var e=t._attrsProxy={};Y(e,"_v_attr_proxy",!0),Se(e,t.$attrs,i,t,"$attrs")}return t._attrsProxy},get listeners(){t._listenersProxy||Se(t._listenersProxy={},t.$listeners,i,t,"$listeners");return t._listenersProxy},get slots(){return function(t){t._slotsProxy||Oe(t._slotsProxy={},t.$scopedSlots);return t._slotsProxy}(t)},emit:P(t.$emit,t),expose:function(e){e&&Object.keys(e).forEach((function(n){return Vt(t,e,n)}))}}}function Se(t,e,n,r,i){var o=!1;for(var s in e)s in t?e[s]!==n[s]&&(o=!0):(o=!0,Ce(t,s,r,i));for(var s in t)s in e||(o=!0,delete t[s]);return o}function Ce(t,e,n,r){Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){return n[r][e]}})}function Oe(t,e){for(var n in e)t[n]=e[n];for(var n in t)n in e||delete t[n]}var Te,Ee=null;function je(t,e){return(t.__esModule||ft&&"Module"===t[Symbol.toStringTag])&&(t=t.default),d(t)?e.extend(t):t}function Ae(t){if(o(t))for(var e=0;e<t.length;e++){var n=t[e];if(a(n)&&(a(n.componentOptions)||ye(n)))return n}}function Pe(t,e){Te.$on(t,e)}function Me(t,e){Te.$off(t,e)}function Ie(t,e){var n=Te;return function r(){null!==e.apply(null,arguments)&&n.$off(t,r)}}function Le(t,e,n){Te=t,Wt(e,n||{},Pe,Me,Ie,t),Te=void 0}var $e=null;function De(t){var e=$e;return $e=t,function(){$e=e}}function Ne(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function Fe(t,e){if(e){if(t._directInactive=!1,Ne(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)Fe(t.$children[n]);Re(t,"activated")}}function Be(t,e){if(!(e&&(t._directInactive=!0,Ne(t))||t._inactive)){t._inactive=!0;for(var n=0;n<t.$children.length;n++)Be(t.$children[n]);Re(t,"deactivated")}}function Re(t,e,n,r){void 0===r&&(r=!0),St();var i=pt;r&&ht(t);var o=t.$options[e],s="".concat(e," hook");if(o)for(var a=0,l=o.length;a<l;a++)on(o[a],t,n||null,t,s);t._hasHookEvent&&t.$emit("hook:"+e),r&&ht(i),Ct()}var ze=[],Ue=[],Ve={},He=!1,qe=!1,We=0;var Ze=0,Ye=Date.now;if(K&&!Q){var Ge=window.performance;Ge&&"function"==typeof Ge.now&&Ye()>document.createEvent("Event").timeStamp&&(Ye=function(){return Ge.now()})}var Je=function(t,e){if(t.post){if(!e.post)return 1}else if(e.post)return-1;return t.id-e.id};function Ke(){var t,e;for(Ze=Ye(),qe=!0,ze.sort(Je),We=0;We<ze.length;We++)(t=ze[We]).before&&t.before(),e=t.id,Ve[e]=null,t.run();var n=Ue.slice(),r=ze.slice();We=ze.length=Ue.length=0,Ve={},He=qe=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Fe(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r&&r._watcher===n&&r._isMounted&&!r._isDestroyed&&Re(r,"updated")}}(r),_t(),ct&&q.devtools&&ct.emit("flush")}function Xe(t){var e=t.id;if(null==Ve[e]&&(t!==xt.target||!t.noRecurse)){if(Ve[e]=!0,qe){for(var n=ze.length-1;n>We&&ze[n].id>t.id;)n--;ze.splice(n+1,0,t)}else ze.push(t);He||(He=!0,vn(Ke))}}var Qe="watcher";"".concat(Qe," callback"),"".concat(Qe," getter"),"".concat(Qe," cleanup");var tn;var en=function(){function t(t){void 0===t&&(t=!1),this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=tn,!t&&tn&&(this.index=(tn.scopes||(tn.scopes=[])).push(this)-1)}return t.prototype.run=function(t){if(this.active){var e=tn;try{return tn=this,t()}finally{tn=e}}else 0},t.prototype.on=function(){tn=this},t.prototype.off=function(){tn=this.parent},t.prototype.stop=function(t){if(this.active){var e=void 0,n=void 0;for(e=0,n=this.effects.length;e<n;e++)this.effects[e].teardown();for(e=0,n=this.cleanups.length;e<n;e++)this.cleanups[e]();if(this.scopes)for(e=0,n=this.scopes.length;e<n;e++)this.scopes[e].stop(!0);if(!this.detached&&this.parent&&!t){var r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this.active=!1}},t}();function nn(t){var e=t._provided,n=t.$parent&&t.$parent._provided;return n===e?t._provided=Object.create(n):e}function rn(t,e,n){St();try{if(e)for(var r=e;r=r.$parent;){var i=r.$options.errorCaptured;if(i)for(var o=0;o<i.length;o++)try{if(!1===i[o].call(r,t,e,n))return}catch(t){sn(t,r,"errorCaptured hook")}}sn(t,e,n)}finally{Ct()}}function on(t,e,n,r,i){var o;try{(o=n?t.apply(e,n):t.call(e))&&!o._isVue&&g(o)&&!o._handled&&(o.catch((function(t){return rn(t,r,i+" (Promise/async)")})),o._handled=!0)}catch(t){rn(t,r,i)}return o}function sn(t,e,n){if(q.errorHandler)try{return q.errorHandler.call(null,t,e,n)}catch(e){e!==t&&an(e,null,"config.errorHandler")}an(t,e,n)}function an(t,e,n){if(!K||"undefined"==typeof console)throw t;console.error(t)}var ln,cn=!1,un=[],dn=!1;function fn(){dn=!1;var t=un.slice(0);un.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&ut(Promise)){var pn=Promise.resolve();ln=function(){pn.then(fn),nt&&setTimeout($)},cn=!0}else if(Q||"undefined"==typeof MutationObserver||!ut(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())ln="undefined"!=typeof setImmediate&&ut(setImmediate)?function(){setImmediate(fn)}:function(){setTimeout(fn,0)};else{var hn=1,mn=new MutationObserver(fn),gn=document.createTextNode(String(hn));mn.observe(gn,{characterData:!0}),ln=function(){hn=(hn+1)%2,gn.data=String(hn)},cn=!0}function vn(t,e){var n;if(un.push((function(){if(t)try{t.call(e)}catch(t){rn(t,e,"nextTick")}else n&&n(e)})),dn||(dn=!0,ln()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){n=t}))}function wn(t){return function(e,n){if(void 0===n&&(n=pt),n)return function(t,e,n){var r=t.$options;r[e]=Zn(r[e],n)}(n,t,e)}}wn("beforeMount"),wn("mounted"),wn("beforeUpdate"),wn("updated"),wn("beforeDestroy"),wn("destroyed"),wn("activated"),wn("deactivated"),wn("serverPrefetch"),wn("renderTracked"),wn("renderTriggered"),wn("errorCaptured");var yn=new dt;function bn(t){return _n(t,yn),yn.clear(),t}function _n(t,e){var n,r,i=o(t);if(!(!i&&!d(t)||t.__v_skip||Object.isFrozen(t)||t instanceof mt)){if(t.__ob__){var s=t.__ob__.dep.id;if(e.has(s))return;e.add(s)}if(i)for(n=t.length;n--;)_n(t[n],e);else if(Ut(t))_n(t.value,e);else for(n=(r=Object.keys(t)).length;n--;)_n(t[r[n]],e)}}var xn=0,kn=function(){function t(t,e,n,r,i){var o,s;o=this,void 0===(s=tn&&!tn._vm?tn:t?t._scope:void 0)&&(s=tn),s&&s.active&&s.effects.push(o),(this.vm=t)&&i&&(t._watcher=this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++xn,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new dt,this.newDepIds=new dt,this.expression="",u(e)?this.getter=e:(this.getter=function(t){if(!G.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=$)),this.value=this.lazy?void 0:this.get()}return t.prototype.get=function(){var t;St(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;rn(t,e,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&bn(t),Ct(),this.cleanupDeps()}return t},t.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},t.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},t.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():Xe(this)},t.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||d(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher "'.concat(this.expression,'"');on(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},t.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},t.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},t.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&x(this.vm._scope.effects,this),this.active){for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},t}(),Sn={enumerable:!0,configurable:!0,get:$,set:$};function Cn(t,e,n){Sn.get=function(){return this[e][n]},Sn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,Sn)}function On(t){var e=t.$options;if(e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props=Bt({}),i=t.$options._propKeys=[],o=!t.$parent;o||Pt(!1);var s=function(o){i.push(o);var s=Xn(o,e,n,t);$t(r,o,s),o in t||Cn(t,"_props",o)};for(var a in e)s(a);Pt(!0)}(t,e.props),function(t){var e=t.$options,n=e.setup;if(n){var r=t._setupContext=ke(t);ht(t),St();var i=on(n,null,[t._props||Bt({}),r],t,"setup");if(Ct(),ht(),u(i))e.render=i;else if(d(i))if(t._setupState=i,i.__sfc){var o=t._setupProxy={};for(var s in i)"__sfc"!==s&&Vt(o,i,s)}else for(var s in i)Z(s)||Vt(t,i,s)}}(t),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?$:P(e[n],t)}(t,e.methods),e.data)!function(t){var e=t.$options.data;e=t._data=u(e)?function(t,e){St();try{return t.call(e,e)}catch(t){return rn(t,e,"data()"),{}}finally{Ct()}}(e,t):e||{},p(e)||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);for(;i--;){var o=n[i];0,r&&S(r,o)||Z(o)||Cn(t,"_data",o)}var s=Lt(e);s&&s.vmCount++}(t);else{var n=Lt(t._data={});n&&n.vmCount++}e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=lt();for(var i in e){var o=e[i],s=u(o)?o:o.get;0,r||(n[i]=new kn(t,s||$,$,Tn)),i in t||En(t,i,o)}}(t,e.computed),e.watch&&e.watch!==ot&&function(t,e){for(var n in e){var r=e[n];if(o(r))for(var i=0;i<r.length;i++)Pn(t,n,r[i]);else Pn(t,n,r)}}(t,e.watch)}var Tn={lazy:!0};function En(t,e,n){var r=!lt();u(n)?(Sn.get=r?jn(e):An(n),Sn.set=$):(Sn.get=n.get?r&&!1!==n.cache?jn(e):An(n.get):$,Sn.set=n.set||$),Object.defineProperty(t,e,Sn)}function jn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),xt.target&&e.depend(),e.value}}function An(t){return function(){return t.call(this,this)}}function Pn(t,e,n,r){return p(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}function Mn(t,e){if(t){for(var n=Object.create(null),r=ft?Reflect.ownKeys(t):Object.keys(t),i=0;i<r.length;i++){var o=r[i];if("__ob__"!==o){var s=t[o].from;if(s in e._provided)n[o]=e._provided[s];else if("default"in t[o]){var a=t[o].default;n[o]=u(a)?a.call(e):a}else 0}}return n}}var In=0;function Ln(t){var e=t.options;if(t.super){var n=Ln(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.sealedOptions;for(var i in n)n[i]!==r[i]&&(e||(e={}),e[i]=n[i]);return e}(t);r&&I(t.extendOptions,r),(e=t.options=Jn(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function $n(t,e,n,r,s){var a,c=this,u=s.options;S(r,"_uid")?(a=Object.create(r))._original=r:(a=r,r=r._original);var d=l(u._compiled),f=!d;this.data=t,this.props=e,this.children=n,this.parent=r,this.listeners=t.on||i,this.injections=Mn(u.inject,r),this.slots=function(){return c.$slots||be(r,t.scopedSlots,c.$slots=ve(n,r)),c.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return be(r,t.scopedSlots,this.slots())}}),d&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=be(r,t.scopedSlots,this.$slots)),u._scopeId?this._c=function(t,e,n,i){var s=te(a,t,e,n,i,f);return s&&!o(s)&&(s.fnScopeId=u._scopeId,s.fnContext=r),s}:this._c=function(t,e,n,r){return te(a,t,e,n,r,f)}}function Dn(t,e,n,r,i){var o=wt(t);return o.fnContext=n,o.fnOptions=r,e.slot&&((o.data||(o.data={})).slot=e.slot),o}function Nn(t,e){for(var n in e)t[T(n)]=e[n]}function Fn(t){return t.name||t.__name||t._componentTag}ge($n.prototype);var Bn={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;Bn.prepatch(n,n)}else{var r=t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;a(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,$e);r.$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,r,o){var s=r.data.scopedSlots,a=t.$scopedSlots,l=!!(s&&!s.$stable||a!==i&&!a.$stable||s&&t.$scopedSlots.$key!==s.$key||!s&&t.$scopedSlots.$key),c=!!(o||t.$options._renderChildren||l),u=t.$vnode;t.$options._parentVnode=r,t.$vnode=r,t._vnode&&(t._vnode.parent=r),t.$options._renderChildren=o;var d=r.data.attrs||i;t._attrsProxy&&Se(t._attrsProxy,d,u.data&&u.data.attrs||i,t,"$attrs")&&(c=!0),t.$attrs=d,n=n||i;var f=t.$options._parentListeners;if(t._listenersProxy&&Se(t._listenersProxy,n,f||i,t,"$listeners"),t.$listeners=t.$options._parentListeners=n,Le(t,n,f),e&&t.$options.props){Pt(!1);for(var p=t._props,h=t.$options._propKeys||[],m=0;m<h.length;m++){var g=h[m],v=t.$options.props;p[g]=Xn(g,v,e,t)}Pt(!0),t.$options.propsData=e}c&&(t.$slots=ve(o,r.context),t.$forceUpdate())}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e,n=t.context,r=t.componentInstance;r._isMounted||(r._isMounted=!0,Re(r,"mounted")),t.data.keepAlive&&(n._isMounted?((e=r)._inactive=!1,Ue.push(e)):Fe(r,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?Be(e,!0):e.$destroy())}},Rn=Object.keys(Bn);function zn(t,e,n,r,c){if(!s(t)){var u=n.$options._base;if(d(t)&&(t=u.extend(t)),"function"==typeof t){var f;if(s(t.cid)&&(t=function(t,e){if(l(t.error)&&a(t.errorComp))return t.errorComp;if(a(t.resolved))return t.resolved;var n=Ee;if(n&&a(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n),l(t.loading)&&a(t.loadingComp))return t.loadingComp;if(n&&!a(t.owners)){var r=t.owners=[n],i=!0,o=null,c=null;n.$on("hook:destroyed",(function(){return x(r,n)}));var u=function(t){for(var e=0,n=r.length;e<n;e++)r[e].$forceUpdate();t&&(r.length=0,null!==o&&(clearTimeout(o),o=null),null!==c&&(clearTimeout(c),c=null))},f=R((function(n){t.resolved=je(n,e),i?r.length=0:u(!0)})),p=R((function(e){a(t.errorComp)&&(t.error=!0,u(!0))})),h=t(f,p);return d(h)&&(g(h)?s(t.resolved)&&h.then(f,p):g(h.component)&&(h.component.then(f,p),a(h.error)&&(t.errorComp=je(h.error,e)),a(h.loading)&&(t.loadingComp=je(h.loading,e),0===h.delay?t.loading=!0:o=setTimeout((function(){o=null,s(t.resolved)&&s(t.error)&&(t.loading=!0,u(!1))}),h.delay||200)),a(h.timeout)&&(c=setTimeout((function(){c=null,s(t.resolved)&&p(null)}),h.timeout)))),i=!1,t.loading?t.loadingComp:t.resolved}}(f=t,u),void 0===t))return function(t,e,n,r,i){var o=gt();return o.asyncFactory=t,o.asyncMeta={data:e,context:n,children:r,tag:i},o}(f,e,n,r,c);e=e||{},Ln(t),a(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var i=e.on||(e.on={}),s=i[r],l=e.model.callback;a(s)?(o(s)?-1===s.indexOf(l):s!==l)&&(i[r]=[l].concat(s)):i[r]=l}(t.options,e);var p=function(t,e,n){var r=e.options.props;if(!s(r)){var i={},o=t.attrs,l=t.props;if(a(o)||a(l))for(var c in r){var u=A(c);Yt(i,l,c,u,!0)||Yt(i,o,c,u,!1)}return i}}(e,t);if(l(t.options.functional))return function(t,e,n,r,s){var l=t.options,c={},u=l.props;if(a(u))for(var d in u)c[d]=Xn(d,u,e||i);else a(n.attrs)&&Nn(c,n.attrs),a(n.props)&&Nn(c,n.props);var f=new $n(n,c,s,r,t),p=l.render.call(null,f._c,f);if(p instanceof mt)return Dn(p,n,f.parent,l);if(o(p)){for(var h=Gt(p)||[],m=new Array(h.length),g=0;g<h.length;g++)m[g]=Dn(h[g],n,f.parent,l);return m}}(t,p,e,n,r);var h=e.on;if(e.on=e.nativeOn,l(t.options.abstract)){var m=e.slot;e={},m&&(e.slot=m)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<Rn.length;n++){var r=Rn[n],i=e[r],o=Bn[r];i===o||i&&i._merged||(e[r]=i?Un(o,i):o)}}(e);var v=Fn(t.options)||c;return new mt("vue-component-".concat(t.cid).concat(v?"-".concat(v):""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:p,listeners:h,tag:c,children:r},f)}}}function Un(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}var Vn=$,Hn=q.optionMergeStrategies;function qn(t,e,n){if(void 0===n&&(n=!0),!e)return t;for(var r,i,o,s=ft?Reflect.ownKeys(e):Object.keys(e),a=0;a<s.length;a++)"__ob__"!==(r=s[a])&&(i=t[r],o=e[r],n&&S(t,r)?i!==o&&p(i)&&p(o)&&qn(i,o):Dt(t,r,o));return t}function Wn(t,e,n){return n?function(){var r=u(e)?e.call(n,n):e,i=u(t)?t.call(n,n):t;return r?qn(r,i):i}:e?t?function(){return qn(u(e)?e.call(this,this):e,u(t)?t.call(this,this):t)}:e:t}function Zn(t,e){var n=e?t?t.concat(e):o(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function Yn(t,e,n,r){var i=Object.create(t||null);return e?I(i,e):i}Hn.data=function(t,e,n){return n?Wn(t,e,n):e&&"function"!=typeof e?t:Wn(t,e)},H.forEach((function(t){Hn[t]=Zn})),V.forEach((function(t){Hn[t+"s"]=Yn})),Hn.watch=function(t,e,n,r){if(t===ot&&(t=void 0),e===ot&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var i={};for(var s in I(i,t),e){var a=i[s],l=e[s];a&&!o(a)&&(a=[a]),i[s]=a?a.concat(l):o(l)?l:[l]}return i},Hn.props=Hn.methods=Hn.inject=Hn.computed=function(t,e,n,r){if(!t)return e;var i=Object.create(null);return I(i,t),e&&I(i,e),i},Hn.provide=function(t,e){return t?function(){var n=Object.create(null);return qn(n,u(t)?t.call(this):t),e&&qn(n,u(e)?e.call(this):e,!1),n}:e};var Gn=function(t,e){return void 0===e?t:e};function Jn(t,e,n){if(u(e)&&(e=e.options),function(t,e){var n=t.props;if(n){var r,i,s={};if(o(n))for(r=n.length;r--;)"string"==typeof(i=n[r])&&(s[T(i)]={type:null});else if(p(n))for(var a in n)i=n[a],s[T(a)]=p(i)?i:{type:i};t.props=s}}(e),function(t,e){var n=t.inject;if(n){var r=t.inject={};if(o(n))for(var i=0;i<n.length;i++)r[n[i]]={from:n[i]};else if(p(n))for(var s in n){var a=n[s];r[s]=p(a)?I({from:s},a):{from:a}}}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];u(r)&&(e[n]={bind:r,update:r})}}(e),!e._base&&(e.extends&&(t=Jn(t,e.extends,n)),e.mixins))for(var r=0,i=e.mixins.length;r<i;r++)t=Jn(t,e.mixins[r],n);var s,a={};for(s in t)l(s);for(s in e)S(t,s)||l(s);function l(r){var i=Hn[r]||Gn;a[r]=i(t[r],e[r],n,r)}return a}function Kn(t,e,n,r){if("string"==typeof n){var i=t[e];if(S(i,n))return i[n];var o=T(n);if(S(i,o))return i[o];var s=E(o);return S(i,s)?i[s]:i[n]||i[o]||i[s]}}function Xn(t,e,n,r){var i=e[t],o=!S(n,t),s=n[t],a=nr(Boolean,i.type);if(a>-1)if(o&&!S(i,"default"))s=!1;else if(""===s||s===A(t)){var l=nr(String,i.type);(l<0||a<l)&&(s=!0)}if(void 0===s){s=function(t,e,n){if(!S(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return u(r)&&"Function"!==tr(e.type)?r.call(t):r}(r,i,t);var c=At;Pt(!0),Lt(s),Pt(c)}return s}var Qn=/^\s*function (\w+)/;function tr(t){var e=t&&t.toString().match(Qn);return e?e[1]:""}function er(t,e){return tr(t)===tr(e)}function nr(t,e){if(!o(e))return er(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(er(e[n],t))return n;return-1}function rr(t){this._init(t)}function ir(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=Fn(t)||Fn(n.options);var s=function(t){this._init(t)};return(s.prototype=Object.create(n.prototype)).constructor=s,s.cid=e++,s.options=Jn(n.options,t),s.super=n,s.options.props&&function(t){var e=t.options.props;for(var n in e)Cn(t.prototype,"_props",n)}(s),s.options.computed&&function(t){var e=t.options.computed;for(var n in e)En(t.prototype,n,e[n])}(s),s.extend=n.extend,s.mixin=n.mixin,s.use=n.use,V.forEach((function(t){s[t]=n[t]})),o&&(s.options.components[o]=s),s.superOptions=n.options,s.extendOptions=t,s.sealedOptions=I({},s.options),i[r]=s,s}}function or(t){return t&&(Fn(t.Ctor.options)||t.tag)}function sr(t,e){return o(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!h(t)&&t.test(e)}function ar(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var s=n[o];if(s){var a=s.name;a&&!e(a)&&lr(n,o,r,i)}}}function lr(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,x(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=In++,e._isVue=!0,e.__v_skip=!0,e._scope=new en(!0),e._scope._vm=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Jn(Ln(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._provided=n?n._provided:Object.create(null),t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Le(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,r=n&&n.context;t.$slots=ve(e._renderChildren,r),t.$scopedSlots=n?be(t.$parent,n.data.scopedSlots,t.$slots):i,t._c=function(e,n,r,i){return te(t,e,n,r,i,!1)},t.$createElement=function(e,n,r,i){return te(t,e,n,r,i,!0)};var o=n&&n.data;$t(t,"$attrs",o&&o.attrs||i,null,!0),$t(t,"$listeners",e._parentListeners||i,null,!0)}(e),Re(e,"beforeCreate",void 0,!1),function(t){var e=Mn(t.$options.inject,t);e&&(Pt(!1),Object.keys(e).forEach((function(n){$t(t,n,e[n])})),Pt(!0))}(e),On(e),function(t){var e=t.$options.provide;if(e){var n=u(e)?e.call(t):e;if(!d(n))return;for(var r=nn(t),i=ft?Reflect.ownKeys(n):Object.keys(n),o=0;o<i.length;o++){var s=i[o];Object.defineProperty(r,s,Object.getOwnPropertyDescriptor(n,s))}}}(e),Re(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(rr),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Dt,t.prototype.$delete=Nt,t.prototype.$watch=function(t,e,n){var r=this;if(p(e))return Pn(r,t,e,n);(n=n||{}).user=!0;var i=new kn(r,t,e,n);if(n.immediate){var o='callback for immediate watcher "'.concat(i.expression,'"');St(),on(e,r,[i.value],r,o),Ct()}return function(){i.teardown()}}}(rr),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(o(t))for(var i=0,s=t.length;i<s;i++)r.$on(t[i],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(o(t)){for(var r=0,i=t.length;r<i;r++)n.$off(t[r],e);return n}var s,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;for(var l=a.length;l--;)if((s=a[l])===e||s.fn===e){a.splice(l,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?M(n):n;for(var r=M(arguments,1),i='event handler for "'.concat(t,'"'),o=0,s=n.length;o<s;o++)on(n[o],e,r,e,i)}return e}}(rr),function(t){t.prototype._update=function(t,e){var n=this,r=n.$el,i=n._vnode,o=De(n);n._vnode=t,n.$el=i?n.__patch__(i,t):n.__patch__(n.$el,t,e,!1),o(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n);for(var s=n;s&&s.$vnode&&s.$parent&&s.$vnode===s.$parent._vnode;)s.$parent.$el=s.$el,s=s.$parent},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Re(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||x(e.$children,t),t._scope.stop(),t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Re(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(rr),function(t){ge(t.prototype),t.prototype.$nextTick=function(t){return vn(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,i=n._parentVnode;i&&e._isMounted&&(e.$scopedSlots=be(e.$parent,i.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&Oe(e._slotsProxy,e.$scopedSlots)),e.$vnode=i;try{ht(e),Ee=e,t=r.call(e._renderProxy,e.$createElement)}catch(n){rn(n,e,"render"),t=e._vnode}finally{Ee=null,ht()}return o(t)&&1===t.length&&(t=t[0]),t instanceof mt||(t=gt()),t.parent=i,t}}(rr);var cr=[String,RegExp,Array],ur={name:"keep-alive",abstract:!0,props:{include:cr,exclude:cr,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,i=t.keyToCache;if(r){var o=r.tag,s=r.componentInstance,a=r.componentOptions;e[i]={name:or(a),tag:o,componentInstance:s},n.push(i),this.max&&n.length>parseInt(this.max)&&lr(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)lr(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",(function(e){ar(t,(function(t){return sr(e,t)}))})),this.$watch("exclude",(function(e){ar(t,(function(t){return!sr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=Ae(t),n=e&&e.componentOptions;if(n){var r=or(n),i=this.include,o=this.exclude;if(i&&(!r||!sr(i,r))||o&&r&&sr(o,r))return e;var s=this.cache,a=this.keys,l=null==e.key?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):e.key;s[l]?(e.componentInstance=s[l].componentInstance,x(a,l),a.push(l)):(this.vnodeToCache=e,this.keyToCache=l),e.data.keepAlive=!0}return e||t&&t[0]}},dr={KeepAlive:ur};!function(t){var e={get:function(){return q}};Object.defineProperty(t,"config",e),t.util={warn:Vn,extend:I,mergeOptions:Jn,defineReactive:$t},t.set=Dt,t.delete=Nt,t.nextTick=vn,t.observable=function(t){return Lt(t),t},t.options=Object.create(null),V.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,I(t.options.components,dr),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=M(arguments,1);return n.unshift(this),u(t.install)?t.install.apply(t,n):u(t)&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Jn(this.options,t),this}}(t),ir(t),function(t){V.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&p(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&u(n)&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(rr),Object.defineProperty(rr.prototype,"$isServer",{get:lt}),Object.defineProperty(rr.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(rr,"FunctionalRenderContext",{value:$n}),rr.version="2.7.14";var fr=y("style,class"),pr=y("input,textarea,option,select,progress"),hr=function(t,e,n){return"value"===n&&pr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},mr=y("contenteditable,draggable,spellcheck"),gr=y("events,caret,typing,plaintext-only"),vr=function(t,e){return xr(e)||"false"===e?"false":"contenteditable"===t&&gr(e)?e:"true"},wr=y("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),yr="http://www.w3.org/1999/xlink",br=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},_r=function(t){return br(t)?t.slice(6,t.length):""},xr=function(t){return null==t||!1===t};function kr(t){for(var e=t.data,n=t,r=t;a(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Sr(r.data,e));for(;a(n=n.parent);)n&&n.data&&(e=Sr(e,n.data));return function(t,e){if(a(t)||a(e))return Cr(t,Or(e));return""}(e.staticClass,e.class)}function Sr(t,e){return{staticClass:Cr(t.staticClass,e.staticClass),class:a(t.class)?[t.class,e.class]:e.class}}function Cr(t,e){return t?e?t+" "+e:t:e||""}function Or(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,i=t.length;r<i;r++)a(e=Or(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):d(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Tr={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Er=y("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),jr=y("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Ar=function(t){return Er(t)||jr(t)};function Pr(t){return jr(t)?"svg":"math"===t?"math":void 0}var Mr=Object.create(null);var Ir=y("text,number,password,search,email,tel,url");function Lr(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}var $r=Object.freeze({__proto__:null,createElement:function(t,e){var n=document.createElement(t);return"select"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(t,e){return document.createElementNS(Tr[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Dr={create:function(t,e){Nr(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Nr(t,!0),Nr(e))},destroy:function(t){Nr(t,!0)}};function Nr(t,e){var n=t.data.ref;if(a(n)){var r=t.context,i=t.componentInstance||t.elm,s=e?null:i,l=e?void 0:i;if(u(n))on(n,r,[s],r,"template ref function");else{var c=t.data.refInFor,d="string"==typeof n||"number"==typeof n,f=Ut(n),p=r.$refs;if(d||f)if(c){var h=d?p[n]:n.value;e?o(h)&&x(h,i):o(h)?h.includes(i)||h.push(i):d?(p[n]=[i],Fr(r,n,p[n])):n.value=[i]}else if(d){if(e&&p[n]!==i)return;p[n]=l,Fr(r,n,s)}else if(f){if(e&&n.value!==i)return;n.value=s}else 0}}}function Fr(t,e,n){var r=t._setupState;r&&S(r,e)&&(Ut(r[e])?r[e].value=n:r[e]=n)}var Br=new mt("",{},[]),Rr=["create","activate","update","remove","destroy"];function zr(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&a(t.data)===a(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=a(n=t.data)&&a(n=n.attrs)&&n.type,i=a(n=e.data)&&a(n=n.attrs)&&n.type;return r===i||Ir(r)&&Ir(i)}(t,e)||l(t.isAsyncPlaceholder)&&s(e.asyncFactory.error))}function Ur(t,e,n){var r,i,o={};for(r=e;r<=n;++r)a(i=t[r].key)&&(o[i]=r);return o}var Vr={create:Hr,update:Hr,destroy:function(t){Hr(t,Br)}};function Hr(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,i,o=t===Br,s=e===Br,a=Wr(t.data.directives,t.context),l=Wr(e.data.directives,e.context),c=[],u=[];for(n in l)r=a[n],i=l[n],r?(i.oldValue=r.value,i.oldArg=r.arg,Yr(i,"update",e,t),i.def&&i.def.componentUpdated&&u.push(i)):(Yr(i,"bind",e,t),i.def&&i.def.inserted&&c.push(i));if(c.length){var d=function(){for(var n=0;n<c.length;n++)Yr(c[n],"inserted",e,t)};o?Zt(e,"insert",d):d()}u.length&&Zt(e,"postpatch",(function(){for(var n=0;n<u.length;n++)Yr(u[n],"componentUpdated",e,t)}));if(!o)for(n in a)l[n]||Yr(a[n],"unbind",t,t,s)}(t,e)}var qr=Object.create(null);function Wr(t,e){var n,r,i=Object.create(null);if(!t)return i;for(n=0;n<t.length;n++){if((r=t[n]).modifiers||(r.modifiers=qr),i[Zr(r)]=r,e._setupState&&e._setupState.__sfc){var o=r.def||Kn(e,"_setupState","v-"+r.name);r.def="function"==typeof o?{bind:o,update:o}:o}r.def=r.def||Kn(e.$options,"directives",r.name)}return i}function Zr(t){return t.rawName||"".concat(t.name,".").concat(Object.keys(t.modifiers||{}).join("."))}function Yr(t,e,n,r,i){var o=t.def&&t.def[e];if(o)try{o(n.elm,t,n,r,i)}catch(r){rn(r,n.context,"directive ".concat(t.name," ").concat(e," hook"))}}var Gr=[Dr,Vr];function Jr(t,e){var n=e.componentOptions;if(!(a(n)&&!1===n.Ctor.options.inheritAttrs||s(t.data.attrs)&&s(e.data.attrs))){var r,i,o=e.elm,c=t.data.attrs||{},u=e.data.attrs||{};for(r in(a(u.__ob__)||l(u._v_attr_proxy))&&(u=e.data.attrs=I({},u)),u)i=u[r],c[r]!==i&&Kr(o,r,i,e.data.pre);for(r in(Q||et)&&u.value!==c.value&&Kr(o,"value",u.value),c)s(u[r])&&(br(r)?o.removeAttributeNS(yr,_r(r)):mr(r)||o.removeAttribute(r))}}function Kr(t,e,n,r){r||t.tagName.indexOf("-")>-1?Xr(t,e,n):wr(e)?xr(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):mr(e)?t.setAttribute(e,vr(e,n)):br(e)?xr(n)?t.removeAttributeNS(yr,_r(e)):t.setAttributeNS(yr,e,n):Xr(t,e,n)}function Xr(t,e,n){if(xr(n))t.removeAttribute(e);else{if(Q&&!tt&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Qr={create:Jr,update:Jr};function ti(t,e){var n=e.elm,r=e.data,i=t.data;if(!(s(r.staticClass)&&s(r.class)&&(s(i)||s(i.staticClass)&&s(i.class)))){var o=kr(e),l=n._transitionClasses;a(l)&&(o=Cr(o,Or(l))),o!==n._prevClass&&(n.setAttribute("class",o),n._prevClass=o)}}var ei,ni,ri,ii,oi,si,ai={create:ti,update:ti},li=/[\w).+\-_$\]]/;function ci(t){var e,n,r,i,o,s=!1,a=!1,l=!1,c=!1,u=0,d=0,f=0,p=0;for(r=0;r<t.length;r++)if(n=e,e=t.charCodeAt(r),s)39===e&&92!==n&&(s=!1);else if(a)34===e&&92!==n&&(a=!1);else if(l)96===e&&92!==n&&(l=!1);else if(c)47===e&&92!==n&&(c=!1);else if(124!==e||124===t.charCodeAt(r+1)||124===t.charCodeAt(r-1)||u||d||f){switch(e){case 34:a=!0;break;case 39:s=!0;break;case 96:l=!0;break;case 40:f++;break;case 41:f--;break;case 91:d++;break;case 93:d--;break;case 123:u++;break;case 125:u--}if(47===e){for(var h=r-1,m=void 0;h>=0&&" "===(m=t.charAt(h));h--);m&&li.test(m)||(c=!0)}}else void 0===i?(p=r+1,i=t.slice(0,r).trim()):g();function g(){(o||(o=[])).push(t.slice(p,r).trim()),p=r+1}if(void 0===i?i=t.slice(0,r).trim():0!==p&&g(),o)for(r=0;r<o.length;r++)i=ui(i,o[r]);return i}function ui(t,e){var n=e.indexOf("(");if(n<0)return'_f("'.concat(e,'")(').concat(t,")");var r=e.slice(0,n),i=e.slice(n+1);return'_f("'.concat(r,'")(').concat(t).concat(")"!==i?","+i:i)}function di(t,e){console.error("[Vue compiler]: ".concat(t))}function fi(t,e){return t?t.map((function(t){return t[e]})).filter((function(t){return t})):[]}function pi(t,e,n,r,i){(t.props||(t.props=[])).push(xi({name:e,value:n,dynamic:i},r)),t.plain=!1}function hi(t,e,n,r,i){(i?t.dynamicAttrs||(t.dynamicAttrs=[]):t.attrs||(t.attrs=[])).push(xi({name:e,value:n,dynamic:i},r)),t.plain=!1}function mi(t,e,n,r){t.attrsMap[e]=n,t.attrsList.push(xi({name:e,value:n},r))}function gi(t,e,n,r,i,o,s,a){(t.directives||(t.directives=[])).push(xi({name:e,rawName:n,value:r,arg:i,isDynamicArg:o,modifiers:s},a)),t.plain=!1}function vi(t,e,n){return n?"_p(".concat(e,',"').concat(t,'")'):t+e}function wi(t,e,n,r,o,s,a,l){var c;(r=r||i).right?l?e="(".concat(e,")==='click'?'contextmenu':(").concat(e,")"):"click"===e&&(e="contextmenu",delete r.right):r.middle&&(l?e="(".concat(e,")==='click'?'mouseup':(").concat(e,")"):"click"===e&&(e="mouseup")),r.capture&&(delete r.capture,e=vi("!",e,l)),r.once&&(delete r.once,e=vi("~",e,l)),r.passive&&(delete r.passive,e=vi("&",e,l)),r.native?(delete r.native,c=t.nativeEvents||(t.nativeEvents={})):c=t.events||(t.events={});var u=xi({value:n.trim(),dynamic:l},a);r!==i&&(u.modifiers=r);var d=c[e];Array.isArray(d)?o?d.unshift(u):d.push(u):c[e]=d?o?[u,d]:[d,u]:u,t.plain=!1}function yi(t,e,n){var r=bi(t,":"+e)||bi(t,"v-bind:"+e);if(null!=r)return ci(r);if(!1!==n){var i=bi(t,e);if(null!=i)return JSON.stringify(i)}}function bi(t,e,n){var r;if(null!=(r=t.attrsMap[e]))for(var i=t.attrsList,o=0,s=i.length;o<s;o++)if(i[o].name===e){i.splice(o,1);break}return n&&delete t.attrsMap[e],r}function _i(t,e){for(var n=t.attrsList,r=0,i=n.length;r<i;r++){var o=n[r];if(e.test(o.name))return n.splice(r,1),o}}function xi(t,e){return e&&(null!=e.start&&(t.start=e.start),null!=e.end&&(t.end=e.end)),t}function ki(t,e,n){var r=n||{},i=r.number,o="$$v",s=o;r.trim&&(s="(typeof ".concat(o," === 'string'")+"? ".concat(o,".trim()")+": ".concat(o,")")),i&&(s="_n(".concat(s,")"));var a=Si(e,s);t.model={value:"(".concat(e,")"),expression:JSON.stringify(e),callback:"function (".concat(o,") {").concat(a,"}")}}function Si(t,e){var n=function(t){if(t=t.trim(),ei=t.length,t.indexOf("[")<0||t.lastIndexOf("]")<ei-1)return(ii=t.lastIndexOf("."))>-1?{exp:t.slice(0,ii),key:'"'+t.slice(ii+1)+'"'}:{exp:t,key:null};ni=t,ii=oi=si=0;for(;!Oi();)Ti(ri=Ci())?ji(ri):91===ri&&Ei(ri);return{exp:t.slice(0,oi),key:t.slice(oi+1,si)}}(t);return null===n.key?"".concat(t,"=").concat(e):"$set(".concat(n.exp,", ").concat(n.key,", ").concat(e,")")}function Ci(){return ni.charCodeAt(++ii)}function Oi(){return ii>=ei}function Ti(t){return 34===t||39===t}function Ei(t){var e=1;for(oi=ii;!Oi();)if(Ti(t=Ci()))ji(t);else if(91===t&&e++,93===t&&e--,0===e){si=ii;break}}function ji(t){for(var e=t;!Oi()&&(t=Ci())!==e;);}var Ai,Pi="__r",Mi="__c";function Ii(t,e,n){var r=Ai;return function i(){null!==e.apply(null,arguments)&&Di(t,i,n,r)}}var Li=cn&&!(it&&Number(it[1])<=53);function $i(t,e,n,r){if(Li){var i=Ze,o=e;e=o._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return o.apply(this,arguments)}}Ai.addEventListener(t,e,st?{capture:n,passive:r}:n)}function Di(t,e,n,r){(r||Ai).removeEventListener(t,e._wrapper||e,n)}function Ni(t,e){if(!s(t.data.on)||!s(e.data.on)){var n=e.data.on||{},r=t.data.on||{};Ai=e.elm||t.elm,function(t){if(a(t[Pi])){var e=Q?"change":"input";t[e]=[].concat(t[Pi],t[e]||[]),delete t[Pi]}a(t[Mi])&&(t.change=[].concat(t[Mi],t.change||[]),delete t[Mi])}(n),Wt(n,r,$i,Di,Ii,e.context),Ai=void 0}}var Fi,Bi={create:Ni,update:Ni,destroy:function(t){return Ni(t,Br)}};function Ri(t,e){if(!s(t.data.domProps)||!s(e.data.domProps)){var n,r,i=e.elm,o=t.data.domProps||{},c=e.data.domProps||{};for(n in(a(c.__ob__)||l(c._v_attr_proxy))&&(c=e.data.domProps=I({},c)),o)n in c||(i[n]="");for(n in c){if(r=c[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===o[n])continue;1===i.childNodes.length&&i.removeChild(i.childNodes[0])}if("value"===n&&"PROGRESS"!==i.tagName){i._value=r;var u=s(r)?"":String(r);zi(i,u)&&(i.value=u)}else if("innerHTML"===n&&jr(i.tagName)&&s(i.innerHTML)){(Fi=Fi||document.createElement("div")).innerHTML="<svg>".concat(r,"</svg>");for(var d=Fi.firstChild;i.firstChild;)i.removeChild(i.firstChild);for(;d.firstChild;)i.appendChild(d.firstChild)}else if(r!==o[n])try{i[n]=r}catch(t){}}}}function zi(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(a(r)){if(r.number)return w(n)!==w(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Ui={create:Ri,update:Ri},Vi=C((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function Hi(t){var e=qi(t.style);return t.staticStyle?I(t.staticStyle,e):e}function qi(t){return Array.isArray(t)?L(t):"string"==typeof t?Vi(t):t}var Wi,Zi=/^--/,Yi=/\s*!important$/,Gi=function(t,e,n){if(Zi.test(e))t.style.setProperty(e,n);else if(Yi.test(n))t.style.setProperty(A(e),n.replace(Yi,""),"important");else{var r=Ki(e);if(Array.isArray(n))for(var i=0,o=n.length;i<o;i++)t.style[r]=n[i];else t.style[r]=n}},Ji=["Webkit","Moz","ms"],Ki=C((function(t){if(Wi=Wi||document.createElement("div").style,"filter"!==(t=T(t))&&t in Wi)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<Ji.length;n++){var r=Ji[n]+e;if(r in Wi)return r}}));function Xi(t,e){var n=e.data,r=t.data;if(!(s(n.staticStyle)&&s(n.style)&&s(r.staticStyle)&&s(r.style))){var i,o,l=e.elm,c=r.staticStyle,u=r.normalizedStyle||r.style||{},d=c||u,f=qi(e.data.style)||{};e.data.normalizedStyle=a(f.__ob__)?I({},f):f;var p=function(t,e){var n,r={};if(e)for(var i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=Hi(i.data))&&I(r,n);(n=Hi(t.data))&&I(r,n);for(var o=t;o=o.parent;)o.data&&(n=Hi(o.data))&&I(r,n);return r}(e,!0);for(o in d)s(p[o])&&Gi(l,o,"");for(o in p)(i=p[o])!==d[o]&&Gi(l,o,null==i?"":i)}}var Qi={create:Xi,update:Xi},to=/\s+/;function eo(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(to).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" ".concat(t.getAttribute("class")||""," ");n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function no(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(to).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" ".concat(t.getAttribute("class")||""," "),r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function ro(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&I(e,io(t.name||"v")),I(e,t),e}return"string"==typeof t?io(t):void 0}}var io=C((function(t){return{enterClass:"".concat(t,"-enter"),enterToClass:"".concat(t,"-enter-to"),enterActiveClass:"".concat(t,"-enter-active"),leaveClass:"".concat(t,"-leave"),leaveToClass:"".concat(t,"-leave-to"),leaveActiveClass:"".concat(t,"-leave-active")}})),oo=K&&!tt,so="transition",ao="animation",lo="transition",co="transitionend",uo="animation",fo="animationend";oo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(lo="WebkitTransition",co="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(uo="WebkitAnimation",fo="webkitAnimationEnd"));var po=K?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function ho(t){po((function(){po(t)}))}function mo(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),eo(t,e))}function go(t,e){t._transitionClasses&&x(t._transitionClasses,e),no(t,e)}function vo(t,e,n){var r=yo(t,e),i=r.type,o=r.timeout,s=r.propCount;if(!i)return n();var a=i===so?co:fo,l=0,c=function(){t.removeEventListener(a,u),n()},u=function(e){e.target===t&&++l>=s&&c()};setTimeout((function(){l<s&&c()}),o+1),t.addEventListener(a,u)}var wo=/\b(transform|all)(,|$)/;function yo(t,e){var n,r=window.getComputedStyle(t),i=(r[lo+"Delay"]||"").split(", "),o=(r[lo+"Duration"]||"").split(", "),s=bo(i,o),a=(r[uo+"Delay"]||"").split(", "),l=(r[uo+"Duration"]||"").split(", "),c=bo(a,l),u=0,d=0;return e===so?s>0&&(n=so,u=s,d=o.length):e===ao?c>0&&(n=ao,u=c,d=l.length):d=(n=(u=Math.max(s,c))>0?s>c?so:ao:null)?n===so?o.length:l.length:0,{type:n,timeout:u,propCount:d,hasTransform:n===so&&wo.test(r[lo+"Property"])}}function bo(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return _o(e)+_o(t[n])})))}function _o(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function xo(t,e){var n=t.elm;a(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=ro(t.data.transition);if(!s(r)&&!a(n._enterCb)&&1===n.nodeType){for(var i=r.css,o=r.type,l=r.enterClass,c=r.enterToClass,f=r.enterActiveClass,p=r.appearClass,h=r.appearToClass,m=r.appearActiveClass,g=r.beforeEnter,v=r.enter,y=r.afterEnter,b=r.enterCancelled,_=r.beforeAppear,x=r.appear,k=r.afterAppear,S=r.appearCancelled,C=r.duration,O=$e,T=$e.$vnode;T&&T.parent;)O=T.context,T=T.parent;var E=!O._isMounted||!t.isRootInsert;if(!E||x||""===x){var j=E&&p?p:l,A=E&&m?m:f,P=E&&h?h:c,M=E&&_||g,I=E&&u(x)?x:v,L=E&&k||y,$=E&&S||b,D=w(d(C)?C.enter:C);0;var N=!1!==i&&!tt,F=Co(I),B=n._enterCb=R((function(){N&&(go(n,P),go(n,A)),B.cancelled?(N&&go(n,j),$&&$(n)):L&&L(n),n._enterCb=null}));t.data.show||Zt(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),I&&I(n,B)})),M&&M(n),N&&(mo(n,j),mo(n,A),ho((function(){go(n,j),B.cancelled||(mo(n,P),F||(So(D)?setTimeout(B,D):vo(n,o,B)))}))),t.data.show&&(e&&e(),I&&I(n,B)),N||F||B()}}}function ko(t,e){var n=t.elm;a(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=ro(t.data.transition);if(s(r)||1!==n.nodeType)return e();if(!a(n._leaveCb)){var i=r.css,o=r.type,l=r.leaveClass,c=r.leaveToClass,u=r.leaveActiveClass,f=r.beforeLeave,p=r.leave,h=r.afterLeave,m=r.leaveCancelled,g=r.delayLeave,v=r.duration,y=!1!==i&&!tt,b=Co(p),_=w(d(v)?v.leave:v);0;var x=n._leaveCb=R((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),y&&(go(n,c),go(n,u)),x.cancelled?(y&&go(n,l),m&&m(n)):(e(),h&&h(n)),n._leaveCb=null}));g?g(k):k()}function k(){x.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),f&&f(n),y&&(mo(n,l),mo(n,u),ho((function(){go(n,l),x.cancelled||(mo(n,c),b||(So(_)?setTimeout(x,_):vo(n,o,x)))}))),p&&p(n,x),y||b||x())}}function So(t){return"number"==typeof t&&!isNaN(t)}function Co(t){if(s(t))return!1;var e=t.fns;return a(e)?Co(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function Oo(t,e){!0!==e.data.show&&xo(e)}var To=function(t){var e,n,r={},i=t.modules,u=t.nodeOps;for(e=0;e<Rr.length;++e)for(r[Rr[e]]=[],n=0;n<i.length;++n)a(i[n][Rr[e]])&&r[Rr[e]].push(i[n][Rr[e]]);function d(t){var e=u.parentNode(t);a(e)&&u.removeChild(e,t)}function f(t,e,n,i,o,s,c){if(a(t.elm)&&a(s)&&(t=s[c]=wt(t)),t.isRootInsert=!o,!function(t,e,n,i){var o=t.data;if(a(o)){var s=a(t.componentInstance)&&o.keepAlive;if(a(o=o.hook)&&a(o=o.init)&&o(t,!1),a(t.componentInstance))return p(t,e),h(n,t.elm,i),l(s)&&function(t,e,n,i){var o,s=t;for(;s.componentInstance;)if(a(o=(s=s.componentInstance._vnode).data)&&a(o=o.transition)){for(o=0;o<r.activate.length;++o)r.activate[o](Br,s);e.push(s);break}h(n,t.elm,i)}(t,e,n,i),!0}}(t,e,n,i)){var d=t.data,f=t.children,g=t.tag;a(g)?(t.elm=t.ns?u.createElementNS(t.ns,g):u.createElement(g,t),w(t),m(t,f,e),a(d)&&v(t,e),h(n,t.elm,i)):l(t.isComment)?(t.elm=u.createComment(t.text),h(n,t.elm,i)):(t.elm=u.createTextNode(t.text),h(n,t.elm,i))}}function p(t,e){a(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,g(t)?(v(t,e),w(t)):(Nr(t),e.push(t))}function h(t,e,n){a(t)&&(a(n)?u.parentNode(n)===t&&u.insertBefore(t,e,n):u.appendChild(t,e))}function m(t,e,n){if(o(e)){0;for(var r=0;r<e.length;++r)f(e[r],n,t.elm,null,!0,e,r)}else c(t.text)&&u.appendChild(t.elm,u.createTextNode(String(t.text)))}function g(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return a(t.tag)}function v(t,n){for(var i=0;i<r.create.length;++i)r.create[i](Br,t);a(e=t.data.hook)&&(a(e.create)&&e.create(Br,t),a(e.insert)&&n.push(t))}function w(t){var e;if(a(e=t.fnScopeId))u.setStyleScope(t.elm,e);else for(var n=t;n;)a(e=n.context)&&a(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e),n=n.parent;a(e=$e)&&e!==t.context&&e!==t.fnContext&&a(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e)}function b(t,e,n,r,i,o){for(;r<=i;++r)f(n[r],o,t,e,!1,n,r)}function _(t){var e,n,i=t.data;if(a(i))for(a(e=i.hook)&&a(e=e.destroy)&&e(t),e=0;e<r.destroy.length;++e)r.destroy[e](t);if(a(e=t.children))for(n=0;n<t.children.length;++n)_(t.children[n])}function x(t,e,n){for(;e<=n;++e){var r=t[e];a(r)&&(a(r.tag)?(k(r),_(r)):d(r.elm))}}function k(t,e){if(a(e)||a(t.data)){var n,i=r.remove.length+1;for(a(e)?e.listeners+=i:e=function(t,e){function n(){0==--n.listeners&&d(t)}return n.listeners=e,n}(t.elm,i),a(n=t.componentInstance)&&a(n=n._vnode)&&a(n.data)&&k(n,e),n=0;n<r.remove.length;++n)r.remove[n](t,e);a(n=t.data.hook)&&a(n=n.remove)?n(t,e):e()}else d(t.elm)}function S(t,e,n,r){for(var i=n;i<r;i++){var o=e[i];if(a(o)&&zr(t,o))return i}}function C(t,e,n,i,o,c){if(t!==e){a(e.elm)&&a(i)&&(e=i[o]=wt(e));var d=e.elm=t.elm;if(l(t.isAsyncPlaceholder))a(e.asyncFactory.resolved)?E(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(l(e.isStatic)&&l(t.isStatic)&&e.key===t.key&&(l(e.isCloned)||l(e.isOnce)))e.componentInstance=t.componentInstance;else{var p,h=e.data;a(h)&&a(p=h.hook)&&a(p=p.prepatch)&&p(t,e);var m=t.children,v=e.children;if(a(h)&&g(e)){for(p=0;p<r.update.length;++p)r.update[p](t,e);a(p=h.hook)&&a(p=p.update)&&p(t,e)}s(e.text)?a(m)&&a(v)?m!==v&&function(t,e,n,r,i){var o,l,c,d=0,p=0,h=e.length-1,m=e[0],g=e[h],v=n.length-1,w=n[0],y=n[v],_=!i;for(;d<=h&&p<=v;)s(m)?m=e[++d]:s(g)?g=e[--h]:zr(m,w)?(C(m,w,r,n,p),m=e[++d],w=n[++p]):zr(g,y)?(C(g,y,r,n,v),g=e[--h],y=n[--v]):zr(m,y)?(C(m,y,r,n,v),_&&u.insertBefore(t,m.elm,u.nextSibling(g.elm)),m=e[++d],y=n[--v]):zr(g,w)?(C(g,w,r,n,p),_&&u.insertBefore(t,g.elm,m.elm),g=e[--h],w=n[++p]):(s(o)&&(o=Ur(e,d,h)),s(l=a(w.key)?o[w.key]:S(w,e,d,h))?f(w,r,t,m.elm,!1,n,p):zr(c=e[l],w)?(C(c,w,r,n,p),e[l]=void 0,_&&u.insertBefore(t,c.elm,m.elm)):f(w,r,t,m.elm,!1,n,p),w=n[++p]);d>h?b(t,s(n[v+1])?null:n[v+1].elm,n,p,v,r):p>v&&x(e,d,h)}(d,m,v,n,c):a(v)?(a(t.text)&&u.setTextContent(d,""),b(d,null,v,0,v.length-1,n)):a(m)?x(m,0,m.length-1):a(t.text)&&u.setTextContent(d,""):t.text!==e.text&&u.setTextContent(d,e.text),a(h)&&a(p=h.hook)&&a(p=p.postpatch)&&p(t,e)}}}function O(t,e,n){if(l(n)&&a(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var T=y("attrs,class,staticClass,staticStyle,key");function E(t,e,n,r){var i,o=e.tag,s=e.data,c=e.children;if(r=r||s&&s.pre,e.elm=t,l(e.isComment)&&a(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(a(s)&&(a(i=s.hook)&&a(i=i.init)&&i(e,!0),a(i=e.componentInstance)))return p(e,n),!0;if(a(o)){if(a(c))if(t.hasChildNodes())if(a(i=s)&&a(i=i.domProps)&&a(i=i.innerHTML)){if(i!==t.innerHTML)return!1}else{for(var u=!0,d=t.firstChild,f=0;f<c.length;f++){if(!d||!E(d,c[f],n,r)){u=!1;break}d=d.nextSibling}if(!u||d)return!1}else m(e,c,n);if(a(s)){var h=!1;for(var g in s)if(!T(g)){h=!0,v(e,n);break}!h&&s.class&&bn(s.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,i){if(!s(e)){var o,c=!1,d=[];if(s(t))c=!0,f(e,d);else{var p=a(t.nodeType);if(!p&&zr(t,e))C(t,e,d,null,null,i);else{if(p){if(1===t.nodeType&&t.hasAttribute(U)&&(t.removeAttribute(U),n=!0),l(n)&&E(t,e,d))return O(e,d,!0),t;o=t,t=new mt(u.tagName(o).toLowerCase(),{},[],void 0,o)}var h=t.elm,m=u.parentNode(h);if(f(e,d,h._leaveCb?null:m,u.nextSibling(h)),a(e.parent))for(var v=e.parent,w=g(e);v;){for(var y=0;y<r.destroy.length;++y)r.destroy[y](v);if(v.elm=e.elm,w){for(var b=0;b<r.create.length;++b)r.create[b](Br,v);var k=v.data.hook.insert;if(k.merged)for(var S=1;S<k.fns.length;S++)k.fns[S]()}else Nr(v);v=v.parent}a(m)?x([t],0,0):a(t.tag)&&_(t)}}return O(e,d,c),e.elm}a(t)&&_(t)}}({nodeOps:$r,modules:[Qr,ai,Bi,Ui,Qi,K?{create:Oo,activate:Oo,remove:function(t,e){!0!==t.data.show?ko(t,e):e()}}:{}].concat(Gr)});tt&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&$o(t,"input")}));var Eo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Zt(n,"postpatch",(function(){Eo.componentUpdated(t,e,n)})):jo(t,e,n.context),t._vOptions=[].map.call(t.options,Mo)):("textarea"===n.tag||Ir(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",Io),t.addEventListener("compositionend",Lo),t.addEventListener("change",Lo),tt&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){jo(t,e,n.context);var r=t._vOptions,i=t._vOptions=[].map.call(t.options,Mo);if(i.some((function(t,e){return!F(t,r[e])})))(t.multiple?e.value.some((function(t){return Po(t,i)})):e.value!==e.oldValue&&Po(e.value,i))&&$o(t,"change")}}};function jo(t,e,n){Ao(t,e,n),(Q||et)&&setTimeout((function(){Ao(t,e,n)}),0)}function Ao(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,s,a=0,l=t.options.length;a<l;a++)if(s=t.options[a],i)o=B(r,Mo(s))>-1,s.selected!==o&&(s.selected=o);else if(F(Mo(s),r))return void(t.selectedIndex!==a&&(t.selectedIndex=a));i||(t.selectedIndex=-1)}}function Po(t,e){return e.every((function(e){return!F(e,t)}))}function Mo(t){return"_value"in t?t._value:t.value}function Io(t){t.target.composing=!0}function Lo(t){t.target.composing&&(t.target.composing=!1,$o(t.target,"input"))}function $o(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Do(t){return!t.componentInstance||t.data&&t.data.transition?t:Do(t.componentInstance._vnode)}var No={bind:function(t,e,n){var r=e.value,i=(n=Do(n)).data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,xo(n,(function(){t.style.display=o}))):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=Do(n)).data&&n.data.transition?(n.data.show=!0,r?xo(n,(function(){t.style.display=t.__vOriginalDisplay})):ko(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}},Fo={model:Eo,show:No},Bo={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Ro(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ro(Ae(e.children)):t}function zo(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var r in i)e[T(r)]=i[r];return e}function Uo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Vo=function(t){return t.tag||ye(t)},Ho=function(t){return"show"===t.name},qo={name:"transition",props:Bo,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Vo)).length){0;var r=this.mode;0;var i=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var o=Ro(i);if(!o)return i;if(this._leaving)return Uo(t,i);var s="__transition-".concat(this._uid,"-");o.key=null==o.key?o.isComment?s+"comment":s+o.tag:c(o.key)?0===String(o.key).indexOf(s)?o.key:s+o.key:o.key;var a=(o.data||(o.data={})).transition=zo(this),l=this._vnode,u=Ro(l);if(o.data.directives&&o.data.directives.some(Ho)&&(o.data.show=!0),u&&u.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(o,u)&&!ye(u)&&(!u.componentInstance||!u.componentInstance._vnode.isComment)){var d=u.data.transition=I({},a);if("out-in"===r)return this._leaving=!0,Zt(d,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),Uo(t,i);if("in-out"===r){if(ye(o))return l;var f,p=function(){f()};Zt(a,"afterEnter",p),Zt(a,"enterCancelled",p),Zt(d,"delayLeave",(function(t){f=t}))}}return i}}},Wo=I({tag:String,moveClass:String},Bo);delete Wo.mode;var Zo={props:Wo,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var i=De(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],s=zo(this),a=0;a<i.length;a++){if((u=i[a]).tag)if(null!=u.key&&0!==String(u.key).indexOf("__vlist"))o.push(u),n[u.key]=u,(u.data||(u.data={})).transition=s;else;}if(r){var l=[],c=[];for(a=0;a<r.length;a++){var u;(u=r[a]).data.transition=s,u.data.pos=u.elm.getBoundingClientRect(),n[u.key]?l.push(u):c.push(u)}this.kept=t(e,null,l),this.removed=c}return t(e,null,o)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(Yo),t.forEach(Go),t.forEach(Jo),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;mo(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(co,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(co,t),n._moveCb=null,go(n,e))})}})))},methods:{hasMove:function(t,e){if(!oo)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){no(n,t)})),eo(n,e),n.style.display="none",this.$el.appendChild(n);var r=yo(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function Yo(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Go(t){t.data.newPos=t.elm.getBoundingClientRect()}function Jo(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate(".concat(r,"px,").concat(i,"px)"),o.transitionDuration="0s"}}var Ko={Transition:qo,TransitionGroup:Zo};rr.config.mustUseProp=hr,rr.config.isReservedTag=Ar,rr.config.isReservedAttr=fr,rr.config.getTagNamespace=Pr,rr.config.isUnknownElement=function(t){if(!K)return!0;if(Ar(t))return!1;if(t=t.toLowerCase(),null!=Mr[t])return Mr[t];var e=document.createElement(t);return t.indexOf("-")>-1?Mr[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Mr[t]=/HTMLUnknownElement/.test(e.toString())},I(rr.options.directives,Fo),I(rr.options.components,Ko),rr.prototype.__patch__=K?To:$,rr.prototype.$mount=function(t,e){return function(t,e,n){var r;t.$el=e,t.$options.render||(t.$options.render=gt),Re(t,"beforeMount"),r=function(){t._update(t._render(),n)},new kn(t,r,$,{before:function(){t._isMounted&&!t._isDestroyed&&Re(t,"beforeUpdate")}},!0),n=!1;var i=t._preWatchers;if(i)for(var o=0;o<i.length;o++)i[o].run();return null==t.$vnode&&(t._isMounted=!0,Re(t,"mounted")),t}(this,t=t&&K?Lr(t):void 0,e)},K&&setTimeout((function(){q.devtools&&ct&&ct.emit("init",rr)}),0);var Xo=/\{\{((?:.|\r?\n)+?)\}\}/g,Qo=/[-.*+?^${}()|[\]\/\\]/g,ts=C((function(t){var e=t[0].replace(Qo,"\\$&"),n=t[1].replace(Qo,"\\$&");return new RegExp(e+"((?:.|\\n)+?)"+n,"g")}));var es={staticKeys:["staticClass"],transformNode:function(t,e){e.warn;var n=bi(t,"class");n&&(t.staticClass=JSON.stringify(n.replace(/\s+/g," ").trim()));var r=yi(t,"class",!1);r&&(t.classBinding=r)},genData:function(t){var e="";return t.staticClass&&(e+="staticClass:".concat(t.staticClass,",")),t.classBinding&&(e+="class:".concat(t.classBinding,",")),e}};var ns,rs={staticKeys:["staticStyle"],transformNode:function(t,e){e.warn;var n=bi(t,"style");n&&(t.staticStyle=JSON.stringify(Vi(n)));var r=yi(t,"style",!1);r&&(t.styleBinding=r)},genData:function(t){var e="";return t.staticStyle&&(e+="staticStyle:".concat(t.staticStyle,",")),t.styleBinding&&(e+="style:(".concat(t.styleBinding,"),")),e}},is=function(t){return(ns=ns||document.createElement("div")).innerHTML=t,ns.textContent},os=y("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),ss=y("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),as=y("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),ls=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,cs=/^\s*((?:v-[\w-]+:|@|:|#)\[[^=]+?\][^\s"'<>\/=]*)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,us="[a-zA-Z_][\\-\\.0-9_a-zA-Z".concat(W.source,"]*"),ds="((?:".concat(us,"\\:)?").concat(us,")"),fs=new RegExp("^<".concat(ds)),ps=/^\s*(\/?)>/,hs=new RegExp("^<\\/".concat(ds,"[^>]*>")),ms=/^<!DOCTYPE [^>]+>/i,gs=/^<!\--/,vs=/^<!\[/,ws=y("script,style,textarea",!0),ys={},bs={"&lt;":"<","&gt;":">","&quot;":'"',"&amp;":"&","&#10;":"\n","&#9;":"\t","&#39;":"'"},_s=/&(?:lt|gt|quot|amp|#39);/g,xs=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,ks=y("pre,textarea",!0),Ss=function(t,e){return t&&ks(t)&&"\n"===e[0]};function Cs(t,e){var n=e?xs:_s;return t.replace(n,(function(t){return bs[t]}))}function Os(t,e){for(var n,r,i=[],o=e.expectHTML,s=e.isUnaryTag||D,a=e.canBeLeftOpenTag||D,l=0,c=function(){if(n=t,r&&ws(r)){var c=0,f=r.toLowerCase(),p=ys[f]||(ys[f]=new RegExp("([\\s\\S]*?)(</"+f+"[^>]*>)","i"));x=t.replace(p,(function(t,n,r){return c=r.length,ws(f)||"noscript"===f||(n=n.replace(/<!\--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),Ss(f,n)&&(n=n.slice(1)),e.chars&&e.chars(n),""}));l+=t.length-x.length,t=x,d(f,l-c,l)}else{var h=t.indexOf("<");if(0===h){if(gs.test(t)){var m=t.indexOf("--\x3e");if(m>=0)return e.shouldKeepComment&&e.comment&&e.comment(t.substring(4,m),l,l+m+3),u(m+3),"continue"}if(vs.test(t)){var g=t.indexOf("]>");if(g>=0)return u(g+2),"continue"}var v=t.match(ms);if(v)return u(v[0].length),"continue";var w=t.match(hs);if(w){var y=l;return u(w[0].length),d(w[1],y,l),"continue"}var b=function(){var e=t.match(fs);if(e){var n={tagName:e[1],attrs:[],start:l};u(e[0].length);for(var r=void 0,i=void 0;!(r=t.match(ps))&&(i=t.match(cs)||t.match(ls));)i.start=l,u(i[0].length),i.end=l,n.attrs.push(i);if(r)return n.unarySlash=r[1],u(r[0].length),n.end=l,n}}();if(b)return function(t){var n=t.tagName,l=t.unarySlash;o&&("p"===r&&as(n)&&d(r),a(n)&&r===n&&d(n));for(var c=s(n)||!!l,u=t.attrs.length,f=new Array(u),p=0;p<u;p++){var h=t.attrs[p],m=h[3]||h[4]||h[5]||"",g="a"===n&&"href"===h[1]?e.shouldDecodeNewlinesForHref:e.shouldDecodeNewlines;f[p]={name:h[1],value:Cs(m,g)}}c||(i.push({tag:n,lowerCasedTag:n.toLowerCase(),attrs:f,start:t.start,end:t.end}),r=n);e.start&&e.start(n,f,c,t.start,t.end)}(b),Ss(b.tagName,t)&&u(1),"continue"}var _=void 0,x=void 0,k=void 0;if(h>=0){for(x=t.slice(h);!(hs.test(x)||fs.test(x)||gs.test(x)||vs.test(x)||(k=x.indexOf("<",1))<0);)h+=k,x=t.slice(h);_=t.substring(0,h)}h<0&&(_=t),_&&u(_.length),e.chars&&_&&e.chars(_,l-_.length,l)}if(t===n)return e.chars&&e.chars(t),"break"};t;){if("break"===c())break}function u(e){l+=e,t=t.substring(e)}function d(t,n,o){var s,a;if(null==n&&(n=l),null==o&&(o=l),t)for(a=t.toLowerCase(),s=i.length-1;s>=0&&i[s].lowerCasedTag!==a;s--);else s=0;if(s>=0){for(var c=i.length-1;c>=s;c--)e.end&&e.end(i[c].tag,n,o);i.length=s,r=s&&i[s-1].tag}else"br"===a?e.start&&e.start(t,[],!0,n,o):"p"===a&&(e.start&&e.start(t,[],!1,n,o),e.end&&e.end(t,n,o))}d()}var Ts,Es,js,As,Ps,Ms,Is,Ls,$s=/^@|^v-on:/,Ds=/^v-|^@|^:|^#/,Ns=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Fs=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Bs=/^\(|\)$/g,Rs=/^\[.*\]$/,zs=/:(.*)$/,Us=/^:|^\.|^v-bind:/,Vs=/\.[^.\]]+(?=[^\]]*$)/g,Hs=/^v-slot(:|$)|^#/,qs=/[\r\n]/,Ws=/[ \f\t\r\n]+/g,Zs=C(is),Ys="_empty_";function Gs(t,e,n){return{type:1,tag:t,attrsList:e,attrsMap:na(e),rawAttrsMap:{},parent:n,children:[]}}function Js(t,e){Ts=e.warn||di,Ms=e.isPreTag||D,Is=e.mustUseProp||D,Ls=e.getTagNamespace||D;var n=e.isReservedTag||D;(function(t){return!(!(t.component||t.attrsMap[":is"]||t.attrsMap["v-bind:is"])&&(t.attrsMap.is?n(t.attrsMap.is):n(t.tag)))}),js=fi(e.modules,"transformNode"),As=fi(e.modules,"preTransformNode"),Ps=fi(e.modules,"postTransformNode"),Es=e.delimiters;var r,i,o=[],s=!1!==e.preserveWhitespace,a=e.whitespace,l=!1,c=!1;function u(t){if(d(t),l||t.processed||(t=Ks(t,e)),o.length||t===r||r.if&&(t.elseif||t.else)&&Qs(r,{exp:t.elseif,block:t}),i&&!t.forbidden)if(t.elseif||t.else)s=t,a=function(t){for(var e=t.length;e--;){if(1===t[e].type)return t[e];t.pop()}}(i.children),a&&a.if&&Qs(a,{exp:s.elseif,block:s});else{if(t.slotScope){var n=t.slotTarget||'"default"';(i.scopedSlots||(i.scopedSlots={}))[n]=t}i.children.push(t),t.parent=i}var s,a;t.children=t.children.filter((function(t){return!t.slotScope})),d(t),t.pre&&(l=!1),Ms(t.tag)&&(c=!1);for(var u=0;u<Ps.length;u++)Ps[u](t,e)}function d(t){if(!c)for(var e=void 0;(e=t.children[t.children.length-1])&&3===e.type&&" "===e.text;)t.children.pop()}return Os(t,{warn:Ts,expectHTML:e.expectHTML,isUnaryTag:e.isUnaryTag,canBeLeftOpenTag:e.canBeLeftOpenTag,shouldDecodeNewlines:e.shouldDecodeNewlines,shouldDecodeNewlinesForHref:e.shouldDecodeNewlinesForHref,shouldKeepComment:e.comments,outputSourceRange:e.outputSourceRange,start:function(t,n,s,a,d){var f=i&&i.ns||Ls(t);Q&&"svg"===f&&(n=function(t){for(var e=[],n=0;n<t.length;n++){var r=t[n];ra.test(r.name)||(r.name=r.name.replace(ia,""),e.push(r))}return e}(n));var p,h=Gs(t,n,i);f&&(h.ns=f),"style"!==(p=h).tag&&("script"!==p.tag||p.attrsMap.type&&"text/javascript"!==p.attrsMap.type)||lt()||(h.forbidden=!0);for(var m=0;m<As.length;m++)h=As[m](h,e)||h;l||(!function(t){null!=bi(t,"v-pre")&&(t.pre=!0)}(h),h.pre&&(l=!0)),Ms(h.tag)&&(c=!0),l?function(t){var e=t.attrsList,n=e.length;if(n)for(var r=t.attrs=new Array(n),i=0;i<n;i++)r[i]={name:e[i].name,value:JSON.stringify(e[i].value)},null!=e[i].start&&(r[i].start=e[i].start,r[i].end=e[i].end);else t.pre||(t.plain=!0)}(h):h.processed||(Xs(h),function(t){var e=bi(t,"v-if");if(e)t.if=e,Qs(t,{exp:e,block:t});else{null!=bi(t,"v-else")&&(t.else=!0);var n=bi(t,"v-else-if");n&&(t.elseif=n)}}(h),function(t){var e=bi(t,"v-once");null!=e&&(t.once=!0)}(h)),r||(r=h),s?u(h):(i=h,o.push(h))},end:function(t,e,n){var r=o[o.length-1];o.length-=1,i=o[o.length-1],u(r)},chars:function(t,e,n){if(i&&(!Q||"textarea"!==i.tag||i.attrsMap.placeholder!==t)){var r,o=i.children;if(t=c||t.trim()?"script"===(r=i).tag||"style"===r.tag?t:Zs(t):o.length?a?"condense"===a&&qs.test(t)?"":" ":s?" ":"":""){c||"condense"!==a||(t=t.replace(Ws," "));var u=void 0,d=void 0;!l&&" "!==t&&(u=function(t,e){var n=e?ts(e):Xo;if(n.test(t)){for(var r,i,o,s=[],a=[],l=n.lastIndex=0;r=n.exec(t);){(i=r.index)>l&&(a.push(o=t.slice(l,i)),s.push(JSON.stringify(o)));var c=ci(r[1].trim());s.push("_s(".concat(c,")")),a.push({"@binding":c}),l=i+r[0].length}return l<t.length&&(a.push(o=t.slice(l)),s.push(JSON.stringify(o))),{expression:s.join("+"),tokens:a}}}(t,Es))?d={type:2,expression:u.expression,tokens:u.tokens,text:t}:" "===t&&o.length&&" "===o[o.length-1].text||(d={type:3,text:t}),d&&o.push(d)}}},comment:function(t,e,n){if(i){var r={type:3,text:t,isComment:!0};0,i.children.push(r)}}}),r}function Ks(t,e){var n;!function(t){var e=yi(t,"key");if(e){t.key=e}}(t),t.plain=!t.key&&!t.scopedSlots&&!t.attrsList.length,function(t){var e=yi(t,"ref");e&&(t.ref=e,t.refInFor=function(t){var e=t;for(;e;){if(void 0!==e.for)return!0;e=e.parent}return!1}(t))}(t),function(t){var e;"template"===t.tag?(e=bi(t,"scope"),t.slotScope=e||bi(t,"slot-scope")):(e=bi(t,"slot-scope"))&&(t.slotScope=e);var n=yi(t,"slot");n&&(t.slotTarget='""'===n?'"default"':n,t.slotTargetDynamic=!(!t.attrsMap[":slot"]&&!t.attrsMap["v-bind:slot"]),"template"===t.tag||t.slotScope||hi(t,"slot",n,function(t,e){return t.rawAttrsMap[":"+e]||t.rawAttrsMap["v-bind:"+e]||t.rawAttrsMap[e]}(t,"slot")));if("template"===t.tag){if(s=_i(t,Hs)){0;var r=ta(s),i=r.name,o=r.dynamic;t.slotTarget=i,t.slotTargetDynamic=o,t.slotScope=s.value||Ys}}else{var s;if(s=_i(t,Hs)){0;var a=t.scopedSlots||(t.scopedSlots={}),l=ta(s),c=l.name,u=(o=l.dynamic,a[c]=Gs("template",[],t));u.slotTarget=c,u.slotTargetDynamic=o,u.children=t.children.filter((function(t){if(!t.slotScope)return t.parent=u,!0})),u.slotScope=s.value||Ys,t.children=[],t.plain=!1}}}(t),"slot"===(n=t).tag&&(n.slotName=yi(n,"name")),function(t){var e;(e=yi(t,"is"))&&(t.component=e);null!=bi(t,"inline-template")&&(t.inlineTemplate=!0)}(t);for(var r=0;r<js.length;r++)t=js[r](t,e)||t;return function(t){var e,n,r,i,o,s,a,l,c=t.attrsList;for(e=0,n=c.length;e<n;e++){if(r=i=c[e].name,o=c[e].value,Ds.test(r))if(t.hasBindings=!0,(s=ea(r.replace(Ds,"")))&&(r=r.replace(Vs,"")),Us.test(r))r=r.replace(Us,""),o=ci(o),(l=Rs.test(r))&&(r=r.slice(1,-1)),s&&(s.prop&&!l&&"innerHtml"===(r=T(r))&&(r="innerHTML"),s.camel&&!l&&(r=T(r)),s.sync&&(a=Si(o,"$event"),l?wi(t,'"update:"+('.concat(r,")"),a,null,!1,0,c[e],!0):(wi(t,"update:".concat(T(r)),a,null,!1,0,c[e]),A(r)!==T(r)&&wi(t,"update:".concat(A(r)),a,null,!1,0,c[e])))),s&&s.prop||!t.component&&Is(t.tag,t.attrsMap.type,r)?pi(t,r,o,c[e],l):hi(t,r,o,c[e],l);else if($s.test(r))r=r.replace($s,""),(l=Rs.test(r))&&(r=r.slice(1,-1)),wi(t,r,o,s,!1,0,c[e],l);else{var u=(r=r.replace(Ds,"")).match(zs),d=u&&u[1];l=!1,d&&(r=r.slice(0,-(d.length+1)),Rs.test(d)&&(d=d.slice(1,-1),l=!0)),gi(t,r,i,o,d,l,s,c[e])}else hi(t,r,JSON.stringify(o),c[e]),!t.component&&"muted"===r&&Is(t.tag,t.attrsMap.type,r)&&pi(t,r,"true",c[e])}}(t),t}function Xs(t){var e;if(e=bi(t,"v-for")){var n=function(t){var e=t.match(Ns);if(!e)return;var n={};n.for=e[2].trim();var r=e[1].trim().replace(Bs,""),i=r.match(Fs);i?(n.alias=r.replace(Fs,"").trim(),n.iterator1=i[1].trim(),i[2]&&(n.iterator2=i[2].trim())):n.alias=r;return n}(e);n&&I(t,n)}}function Qs(t,e){t.ifConditions||(t.ifConditions=[]),t.ifConditions.push(e)}function ta(t){var e=t.name.replace(Hs,"");return e||"#"!==t.name[0]&&(e="default"),Rs.test(e)?{name:e.slice(1,-1),dynamic:!0}:{name:'"'.concat(e,'"'),dynamic:!1}}function ea(t){var e=t.match(Vs);if(e){var n={};return e.forEach((function(t){n[t.slice(1)]=!0})),n}}function na(t){for(var e={},n=0,r=t.length;n<r;n++)e[t[n].name]=t[n].value;return e}var ra=/^xmlns:NS\d+/,ia=/^NS\d+:/;function oa(t){return Gs(t.tag,t.attrsList.slice(),t.parent)}var sa={preTransformNode:function(t,e){if("input"===t.tag){var n=t.attrsMap;if(!n["v-model"])return;var r=void 0;if((n[":type"]||n["v-bind:type"])&&(r=yi(t,"type")),n.type||r||!n["v-bind"]||(r="(".concat(n["v-bind"],").type")),r){var i=bi(t,"v-if",!0),o=i?"&&(".concat(i,")"):"",s=null!=bi(t,"v-else",!0),a=bi(t,"v-else-if",!0),l=oa(t);Xs(l),mi(l,"type","checkbox"),Ks(l,e),l.processed=!0,l.if="(".concat(r,")==='checkbox'")+o,Qs(l,{exp:l.if,block:l});var c=oa(t);bi(c,"v-for",!0),mi(c,"type","radio"),Ks(c,e),Qs(l,{exp:"(".concat(r,")==='radio'")+o,block:c});var u=oa(t);return bi(u,"v-for",!0),mi(u,":type",r),Ks(u,e),Qs(l,{exp:i,block:u}),s?l.else=!0:a&&(l.elseif=a),l}}}},aa=[es,rs,sa];var la,ca,ua={model:function(t,e,n){n;var r=e.value,i=e.modifiers,o=t.tag,s=t.attrsMap.type;if(t.component)return ki(t,r,i),!1;if("select"===o)!function(t,e,n){var r=n&&n.number,i='Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;'+"return ".concat(r?"_n(val)":"val","})"),o="$event.target.multiple ? $$selectedVal : $$selectedVal[0]",s="var $$selectedVal = ".concat(i,";");s="".concat(s," ").concat(Si(e,o)),wi(t,"change",s,null,!0)}(t,r,i);else if("input"===o&&"checkbox"===s)!function(t,e,n){var r=n&&n.number,i=yi(t,"value")||"null",o=yi(t,"true-value")||"true",s=yi(t,"false-value")||"false";pi(t,"checked","Array.isArray(".concat(e,")")+"?_i(".concat(e,",").concat(i,")>-1")+("true"===o?":(".concat(e,")"):":_q(".concat(e,",").concat(o,")"))),wi(t,"change","var $$a=".concat(e,",")+"$$el=$event.target,"+"$$c=$$el.checked?(".concat(o,"):(").concat(s,");")+"if(Array.isArray($$a)){"+"var $$v=".concat(r?"_n("+i+")":i,",")+"$$i=_i($$a,$$v);"+"if($$el.checked){$$i<0&&(".concat(Si(e,"$$a.concat([$$v])"),")}")+"else{$$i>-1&&(".concat(Si(e,"$$a.slice(0,$$i).concat($$a.slice($$i+1))"),")}")+"}else{".concat(Si(e,"$$c"),"}"),null,!0)}(t,r,i);else if("input"===o&&"radio"===s)!function(t,e,n){var r=n&&n.number,i=yi(t,"value")||"null";i=r?"_n(".concat(i,")"):i,pi(t,"checked","_q(".concat(e,",").concat(i,")")),wi(t,"change",Si(e,i),null,!0)}(t,r,i);else if("input"===o||"textarea"===o)!function(t,e,n){var r=t.attrsMap.type;0;var i=n||{},o=i.lazy,s=i.number,a=i.trim,l=!o&&"range"!==r,c=o?"change":"range"===r?Pi:"input",u="$event.target.value";a&&(u="$event.target.value.trim()");s&&(u="_n(".concat(u,")"));var d=Si(e,u);l&&(d="if($event.target.composing)return;".concat(d));pi(t,"value","(".concat(e,")")),wi(t,c,d,null,!0),(a||s)&&wi(t,"blur","$forceUpdate()")}(t,r,i);else{if(!q.isReservedTag(o))return ki(t,r,i),!1}return!0},text:function(t,e){e.value&&pi(t,"textContent","_s(".concat(e.value,")"),e)},html:function(t,e){e.value&&pi(t,"innerHTML","_s(".concat(e.value,")"),e)}},da={expectHTML:!0,modules:aa,directives:ua,isPreTag:function(t){return"pre"===t},isUnaryTag:os,mustUseProp:hr,canBeLeftOpenTag:ss,isReservedTag:Ar,getTagNamespace:Pr,staticKeys:function(t){return t.reduce((function(t,e){return t.concat(e.staticKeys||[])}),[]).join(",")}(aa)},fa=C((function(t){return y("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(t?","+t:""))}));function pa(t,e){t&&(la=fa(e.staticKeys||""),ca=e.isReservedTag||D,ha(t),ma(t,!1))}function ha(t){if(t.static=function(t){if(2===t.type)return!1;if(3===t.type)return!0;return!(!t.pre&&(t.hasBindings||t.if||t.for||b(t.tag)||!ca(t.tag)||function(t){for(;t.parent;){if("template"!==(t=t.parent).tag)return!1;if(t.for)return!0}return!1}(t)||!Object.keys(t).every(la)))}(t),1===t.type){if(!ca(t.tag)&&"slot"!==t.tag&&null==t.attrsMap["inline-template"])return;for(var e=0,n=t.children.length;e<n;e++){var r=t.children[e];ha(r),r.static||(t.static=!1)}if(t.ifConditions)for(e=1,n=t.ifConditions.length;e<n;e++){var i=t.ifConditions[e].block;ha(i),i.static||(t.static=!1)}}}function ma(t,e){if(1===t.type){if((t.static||t.once)&&(t.staticInFor=e),t.static&&t.children.length&&(1!==t.children.length||3!==t.children[0].type))return void(t.staticRoot=!0);if(t.staticRoot=!1,t.children)for(var n=0,r=t.children.length;n<r;n++)ma(t.children[n],e||!!t.for);if(t.ifConditions)for(n=1,r=t.ifConditions.length;n<r;n++)ma(t.ifConditions[n].block,e)}}var ga=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,va=/\([^)]*?\);*$/,wa=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,ya={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},ba={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},_a=function(t){return"if(".concat(t,")return null;")},xa={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:_a("$event.target !== $event.currentTarget"),ctrl:_a("!$event.ctrlKey"),shift:_a("!$event.shiftKey"),alt:_a("!$event.altKey"),meta:_a("!$event.metaKey"),left:_a("'button' in $event && $event.button !== 0"),middle:_a("'button' in $event && $event.button !== 1"),right:_a("'button' in $event && $event.button !== 2")};function ka(t,e){var n=e?"nativeOn:":"on:",r="",i="";for(var o in t){var s=Sa(t[o]);t[o]&&t[o].dynamic?i+="".concat(o,",").concat(s,","):r+='"'.concat(o,'":').concat(s,",")}return r="{".concat(r.slice(0,-1),"}"),i?n+"_d(".concat(r,",[").concat(i.slice(0,-1),"])"):n+r}function Sa(t){if(!t)return"function(){}";if(Array.isArray(t))return"[".concat(t.map((function(t){return Sa(t)})).join(","),"]");var e=wa.test(t.value),n=ga.test(t.value),r=wa.test(t.value.replace(va,""));if(t.modifiers){var i="",o="",s=[],a=function(e){if(xa[e])o+=xa[e],ya[e]&&s.push(e);else if("exact"===e){var n=t.modifiers;o+=_a(["ctrl","shift","alt","meta"].filter((function(t){return!n[t]})).map((function(t){return"$event.".concat(t,"Key")})).join("||"))}else s.push(e)};for(var l in t.modifiers)a(l);s.length&&(i+=function(t){return"if(!$event.type.indexOf('key')&&"+"".concat(t.map(Ca).join("&&"),")return null;")}(s)),o&&(i+=o);var c=e?"return ".concat(t.value,".apply(null, arguments)"):n?"return (".concat(t.value,").apply(null, arguments)"):r?"return ".concat(t.value):t.value;return"function($event){".concat(i).concat(c,"}")}return e||n?t.value:"function($event){".concat(r?"return ".concat(t.value):t.value,"}")}function Ca(t){var e=parseInt(t,10);if(e)return"$event.keyCode!==".concat(e);var n=ya[t],r=ba[t];return"_k($event.keyCode,"+"".concat(JSON.stringify(t),",")+"".concat(JSON.stringify(n),",")+"$event.key,"+"".concat(JSON.stringify(r))+")"}var Oa={on:function(t,e){t.wrapListeners=function(t){return"_g(".concat(t,",").concat(e.value,")")}},bind:function(t,e){t.wrapData=function(n){return"_b(".concat(n,",'").concat(t.tag,"',").concat(e.value,",").concat(e.modifiers&&e.modifiers.prop?"true":"false").concat(e.modifiers&&e.modifiers.sync?",true":"",")")}},cloak:$},Ta=function(t){this.options=t,this.warn=t.warn||di,this.transforms=fi(t.modules,"transformCode"),this.dataGenFns=fi(t.modules,"genData"),this.directives=I(I({},Oa),t.directives);var e=t.isReservedTag||D;this.maybeComponent=function(t){return!!t.component||!e(t.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function Ea(t,e){var n=new Ta(e),r=t?"script"===t.tag?"null":ja(t,n):'_c("div")';return{render:"with(this){return ".concat(r,"}"),staticRenderFns:n.staticRenderFns}}function ja(t,e){if(t.parent&&(t.pre=t.pre||t.parent.pre),t.staticRoot&&!t.staticProcessed)return Aa(t,e);if(t.once&&!t.onceProcessed)return Pa(t,e);if(t.for&&!t.forProcessed)return La(t,e);if(t.if&&!t.ifProcessed)return Ma(t,e);if("template"!==t.tag||t.slotTarget||e.pre){if("slot"===t.tag)return function(t,e){var n=t.slotName||'"default"',r=Fa(t,e),i="_t(".concat(n).concat(r?",function(){return ".concat(r,"}"):""),o=t.attrs||t.dynamicAttrs?za((t.attrs||[]).concat(t.dynamicAttrs||[]).map((function(t){return{name:T(t.name),value:t.value,dynamic:t.dynamic}}))):null,s=t.attrsMap["v-bind"];!o&&!s||r||(i+=",null");o&&(i+=",".concat(o));s&&(i+="".concat(o?"":",null",",").concat(s));return i+")"}(t,e);var n=void 0;if(t.component)n=function(t,e,n){var r=e.inlineTemplate?null:Fa(e,n,!0);return"_c(".concat(t,",").concat($a(e,n)).concat(r?",".concat(r):"",")")}(t.component,t,e);else{var r=void 0,i=e.maybeComponent(t);(!t.plain||t.pre&&i)&&(r=$a(t,e));var o=void 0,s=e.options.bindings;i&&s&&!1!==s.__isScriptSetup&&(o=function(t,e){var n=T(e),r=E(n),i=function(i){return t[e]===i?e:t[n]===i?n:t[r]===i?r:void 0},o=i("setup-const")||i("setup-reactive-const");if(o)return o;var s=i("setup-let")||i("setup-ref")||i("setup-maybe-ref");if(s)return s}(s,t.tag)),o||(o="'".concat(t.tag,"'"));var a=t.inlineTemplate?null:Fa(t,e,!0);n="_c(".concat(o).concat(r?",".concat(r):"").concat(a?",".concat(a):"",")")}for(var l=0;l<e.transforms.length;l++)n=e.transforms[l](t,n);return n}return Fa(t,e)||"void 0"}function Aa(t,e){t.staticProcessed=!0;var n=e.pre;return t.pre&&(e.pre=t.pre),e.staticRenderFns.push("with(this){return ".concat(ja(t,e),"}")),e.pre=n,"_m(".concat(e.staticRenderFns.length-1).concat(t.staticInFor?",true":"",")")}function Pa(t,e){if(t.onceProcessed=!0,t.if&&!t.ifProcessed)return Ma(t,e);if(t.staticInFor){for(var n="",r=t.parent;r;){if(r.for){n=r.key;break}r=r.parent}return n?"_o(".concat(ja(t,e),",").concat(e.onceId++,",").concat(n,")"):ja(t,e)}return Aa(t,e)}function Ma(t,e,n,r){return t.ifProcessed=!0,Ia(t.ifConditions.slice(),e,n,r)}function Ia(t,e,n,r){if(!t.length)return r||"_e()";var i=t.shift();return i.exp?"(".concat(i.exp,")?").concat(o(i.block),":").concat(Ia(t,e,n,r)):"".concat(o(i.block));function o(t){return n?n(t,e):t.once?Pa(t,e):ja(t,e)}}function La(t,e,n,r){var i=t.for,o=t.alias,s=t.iterator1?",".concat(t.iterator1):"",a=t.iterator2?",".concat(t.iterator2):"";return t.forProcessed=!0,"".concat(r||"_l","((").concat(i,"),")+"function(".concat(o).concat(s).concat(a,"){")+"return ".concat((n||ja)(t,e))+"})"}function $a(t,e){var n="{",r=function(t,e){var n=t.directives;if(!n)return;var r,i,o,s,a="directives:[",l=!1;for(r=0,i=n.length;r<i;r++){o=n[r],s=!0;var c=e.directives[o.name];c&&(s=!!c(t,o,e.warn)),s&&(l=!0,a+='{name:"'.concat(o.name,'",rawName:"').concat(o.rawName,'"').concat(o.value?",value:(".concat(o.value,"),expression:").concat(JSON.stringify(o.value)):"").concat(o.arg?",arg:".concat(o.isDynamicArg?o.arg:'"'.concat(o.arg,'"')):"").concat(o.modifiers?",modifiers:".concat(JSON.stringify(o.modifiers)):"","},"))}if(l)return a.slice(0,-1)+"]"}(t,e);r&&(n+=r+","),t.key&&(n+="key:".concat(t.key,",")),t.ref&&(n+="ref:".concat(t.ref,",")),t.refInFor&&(n+="refInFor:true,"),t.pre&&(n+="pre:true,"),t.component&&(n+='tag:"'.concat(t.tag,'",'));for(var i=0;i<e.dataGenFns.length;i++)n+=e.dataGenFns[i](t);if(t.attrs&&(n+="attrs:".concat(za(t.attrs),",")),t.props&&(n+="domProps:".concat(za(t.props),",")),t.events&&(n+="".concat(ka(t.events,!1),",")),t.nativeEvents&&(n+="".concat(ka(t.nativeEvents,!0),",")),t.slotTarget&&!t.slotScope&&(n+="slot:".concat(t.slotTarget,",")),t.scopedSlots&&(n+="".concat(function(t,e,n){var r=t.for||Object.keys(e).some((function(t){var n=e[t];return n.slotTargetDynamic||n.if||n.for||Da(n)})),i=!!t.if;if(!r)for(var o=t.parent;o;){if(o.slotScope&&o.slotScope!==Ys||o.for){r=!0;break}o.if&&(i=!0),o=o.parent}var s=Object.keys(e).map((function(t){return Na(e[t],n)})).join(",");return"scopedSlots:_u([".concat(s,"]").concat(r?",null,true":"").concat(!r&&i?",null,false,".concat(function(t){var e=5381,n=t.length;for(;n;)e=33*e^t.charCodeAt(--n);return e>>>0}(s)):"",")")}(t,t.scopedSlots,e),",")),t.model&&(n+="model:{value:".concat(t.model.value,",callback:").concat(t.model.callback,",expression:").concat(t.model.expression,"},")),t.inlineTemplate){var o=function(t,e){var n=t.children[0];0;if(n&&1===n.type){var r=Ea(n,e.options);return"inlineTemplate:{render:function(){".concat(r.render,"},staticRenderFns:[").concat(r.staticRenderFns.map((function(t){return"function(){".concat(t,"}")})).join(","),"]}")}}(t,e);o&&(n+="".concat(o,","))}return n=n.replace(/,$/,"")+"}",t.dynamicAttrs&&(n="_b(".concat(n,',"').concat(t.tag,'",').concat(za(t.dynamicAttrs),")")),t.wrapData&&(n=t.wrapData(n)),t.wrapListeners&&(n=t.wrapListeners(n)),n}function Da(t){return 1===t.type&&("slot"===t.tag||t.children.some(Da))}function Na(t,e){var n=t.attrsMap["slot-scope"];if(t.if&&!t.ifProcessed&&!n)return Ma(t,e,Na,"null");if(t.for&&!t.forProcessed)return La(t,e,Na);var r=t.slotScope===Ys?"":String(t.slotScope),i="function(".concat(r,"){")+"return ".concat("template"===t.tag?t.if&&n?"(".concat(t.if,")?").concat(Fa(t,e)||"undefined",":undefined"):Fa(t,e)||"undefined":ja(t,e),"}"),o=r?"":",proxy:true";return"{key:".concat(t.slotTarget||'"default"',",fn:").concat(i).concat(o,"}")}function Fa(t,e,n,r,i){var o=t.children;if(o.length){var s=o[0];if(1===o.length&&s.for&&"template"!==s.tag&&"slot"!==s.tag){var a=n?e.maybeComponent(s)?",1":",0":"";return"".concat((r||ja)(s,e)).concat(a)}var l=n?function(t,e){for(var n=0,r=0;r<t.length;r++){var i=t[r];if(1===i.type){if(Ba(i)||i.ifConditions&&i.ifConditions.some((function(t){return Ba(t.block)}))){n=2;break}(e(i)||i.ifConditions&&i.ifConditions.some((function(t){return e(t.block)})))&&(n=1)}}return n}(o,e.maybeComponent):0,c=i||Ra;return"[".concat(o.map((function(t){return c(t,e)})).join(","),"]").concat(l?",".concat(l):"")}}function Ba(t){return void 0!==t.for||"template"===t.tag||"slot"===t.tag}function Ra(t,e){return 1===t.type?ja(t,e):3===t.type&&t.isComment?function(t){return"_e(".concat(JSON.stringify(t.text),")")}(t):"_v(".concat(2===(n=t).type?n.expression:Ua(JSON.stringify(n.text)),")");var n}function za(t){for(var e="",n="",r=0;r<t.length;r++){var i=t[r],o=Ua(i.value);i.dynamic?n+="".concat(i.name,",").concat(o,","):e+='"'.concat(i.name,'":').concat(o,",")}return e="{".concat(e.slice(0,-1),"}"),n?"_d(".concat(e,",[").concat(n.slice(0,-1),"])"):e}function Ua(t){return t.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)");function Va(t,e){try{return new Function(t)}catch(n){return e.push({err:n,code:t}),$}}function Ha(t){var e=Object.create(null);return function(n,r,i){(r=I({},r)).warn;delete r.warn;var o=r.delimiters?String(r.delimiters)+n:n;if(e[o])return e[o];var s=t(n,r);var a={},l=[];return a.render=Va(s.render,l),a.staticRenderFns=s.staticRenderFns.map((function(t){return Va(t,l)})),e[o]=a}}var qa,Wa,Za=(qa=function(t,e){var n=Js(t.trim(),e);!1!==e.optimize&&pa(n,e);var r=Ea(n,e);return{ast:n,render:r.render,staticRenderFns:r.staticRenderFns}},function(t){function e(e,n){var r=Object.create(t),i=[],o=[];if(n)for(var s in n.modules&&(r.modules=(t.modules||[]).concat(n.modules)),n.directives&&(r.directives=I(Object.create(t.directives||null),n.directives)),n)"modules"!==s&&"directives"!==s&&(r[s]=n[s]);r.warn=function(t,e,n){(n?o:i).push(t)};var a=qa(e.trim(),r);return a.errors=i,a.tips=o,a}return{compile:e,compileToFunctions:Ha(e)}}),Ya=Za(da).compileToFunctions;function Ga(t){return(Wa=Wa||document.createElement("div")).innerHTML=t?'<a href="\n"/>':'<div a="\n"/>',Wa.innerHTML.indexOf("&#10;")>0}var Ja=!!K&&Ga(!1),Ka=!!K&&Ga(!0),Xa=C((function(t){var e=Lr(t);return e&&e.innerHTML})),Qa=rr.prototype.$mount;function tl(t,e){return function(){return t.apply(e,arguments)}}rr.prototype.$mount=function(t,e){if((t=t&&Lr(t))===document.body||t===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if("string"==typeof r)"#"===r.charAt(0)&&(r=Xa(r));else{if(!r.nodeType)return this;r=r.innerHTML}else t&&(r=function(t){if(t.outerHTML)return t.outerHTML;var e=document.createElement("div");return e.appendChild(t.cloneNode(!0)),e.innerHTML}(t));if(r){0;var i=Ya(r,{outputSourceRange:!1,shouldDecodeNewlines:Ja,shouldDecodeNewlinesForHref:Ka,delimiters:n.delimiters,comments:n.comments},this),o=i.render,s=i.staticRenderFns;n.render=o,n.staticRenderFns=s}}return Qa.call(this,t,e)},rr.compile=Ya;const{toString:el}=Object.prototype,{getPrototypeOf:nl}=Object,rl=(il=Object.create(null),t=>{const e=el.call(t);return il[e]||(il[e]=e.slice(8,-1).toLowerCase())});var il;const ol=t=>(t=t.toLowerCase(),e=>rl(e)===t),sl=t=>e=>typeof e===t,{isArray:al}=Array,ll=sl("undefined");const cl=ol("ArrayBuffer");const ul=sl("string"),dl=sl("function"),fl=sl("number"),pl=t=>null!==t&&"object"==typeof t,hl=t=>{if("object"!==rl(t))return!1;const e=nl(t);return!(null!==e&&e!==Object.prototype&&null!==Object.getPrototypeOf(e)||Symbol.toStringTag in t||Symbol.iterator in t)},ml=ol("Date"),gl=ol("File"),vl=ol("Blob"),wl=ol("FileList"),yl=ol("URLSearchParams");function bl(t,e,{allOwnKeys:n=!1}={}){if(null==t)return;let r,i;if("object"!=typeof t&&(t=[t]),al(t))for(r=0,i=t.length;r<i;r++)e.call(null,t[r],r,t);else{const i=n?Object.getOwnPropertyNames(t):Object.keys(t),o=i.length;let s;for(r=0;r<o;r++)s=i[r],e.call(null,t[s],s,t)}}function _l(t,e){e=e.toLowerCase();const n=Object.keys(t);let r,i=n.length;for(;i-- >0;)if(r=n[i],e===r.toLowerCase())return r;return null}const xl="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,kl=t=>!ll(t)&&t!==xl;const Sl=(Cl="undefined"!=typeof Uint8Array&&nl(Uint8Array),t=>Cl&&t instanceof Cl);var Cl;const Ol=ol("HTMLFormElement"),Tl=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),El=ol("RegExp"),jl=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};bl(n,((n,i)=>{let o;!1!==(o=e(n,i,t))&&(r[i]=o||n)})),Object.defineProperties(t,r)},Al="abcdefghijklmnopqrstuvwxyz",Pl="0123456789",Ml={DIGIT:Pl,ALPHA:Al,ALPHA_DIGIT:Al+Al.toUpperCase()+Pl};const Il=ol("AsyncFunction");var Ll={isArray:al,isArrayBuffer:cl,isBuffer:function(t){return null!==t&&!ll(t)&&null!==t.constructor&&!ll(t.constructor)&&dl(t.constructor.isBuffer)&&t.constructor.isBuffer(t)},isFormData:t=>{let e;return t&&("function"==typeof FormData&&t instanceof FormData||dl(t.append)&&("formdata"===(e=rl(t))||"object"===e&&dl(t.toString)&&"[object FormData]"===t.toString()))},isArrayBufferView:function(t){let e;return e="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&cl(t.buffer),e},isString:ul,isNumber:fl,isBoolean:t=>!0===t||!1===t,isObject:pl,isPlainObject:hl,isUndefined:ll,isDate:ml,isFile:gl,isBlob:vl,isRegExp:El,isFunction:dl,isStream:t=>pl(t)&&dl(t.pipe),isURLSearchParams:yl,isTypedArray:Sl,isFileList:wl,forEach:bl,merge:function t(){const{caseless:e}=kl(this)&&this||{},n={},r=(r,i)=>{const o=e&&_l(n,i)||i;hl(n[o])&&hl(r)?n[o]=t(n[o],r):hl(r)?n[o]=t({},r):al(r)?n[o]=r.slice():n[o]=r};for(let t=0,e=arguments.length;t<e;t++)arguments[t]&&bl(arguments[t],r);return n},extend:(t,e,n,{allOwnKeys:r}={})=>(bl(e,((e,r)=>{n&&dl(e)?t[r]=tl(e,n):t[r]=e}),{allOwnKeys:r}),t),trim:t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:t=>(65279===t.charCodeAt(0)&&(t=t.slice(1)),t),inherits:(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},toFlatObject:(t,e,n,r)=>{let i,o,s;const a={};if(e=e||{},null==t)return e;do{for(i=Object.getOwnPropertyNames(t),o=i.length;o-- >0;)s=i[o],r&&!r(s,t,e)||a[s]||(e[s]=t[s],a[s]=!0);t=!1!==n&&nl(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},kindOf:rl,kindOfTest:ol,endsWith:(t,e,n)=>{t=String(t),(void 0===n||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return-1!==r&&r===n},toArray:t=>{if(!t)return null;if(al(t))return t;let e=t.length;if(!fl(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},forEachEntry:(t,e)=>{const n=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=n.next())&&!r.done;){const n=r.value;e.call(t,n[0],n[1])}},matchAll:(t,e)=>{let n;const r=[];for(;null!==(n=t.exec(e));)r.push(n);return r},isHTMLForm:Ol,hasOwnProperty:Tl,hasOwnProp:Tl,reduceDescriptors:jl,freezeMethods:t=>{jl(t,((e,n)=>{if(dl(t)&&-1!==["arguments","caller","callee"].indexOf(n))return!1;const r=t[n];dl(r)&&(e.enumerable=!1,"writable"in e?e.writable=!1:e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")}))}))},toObjectSet:(t,e)=>{const n={},r=t=>{t.forEach((t=>{n[t]=!0}))};return al(t)?r(t):r(String(t).split(e)),n},toCamelCase:t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(t,e,n){return e.toUpperCase()+n})),noop:()=>{},toFiniteNumber:(t,e)=>(t=+t,Number.isFinite(t)?t:e),findKey:_l,global:xl,isContextDefined:kl,ALPHABET:Ml,generateString:(t=16,e=Ml.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n},isSpecCompliantForm:function(t){return!!(t&&dl(t.append)&&"FormData"===t[Symbol.toStringTag]&&t[Symbol.iterator])},toJSONObject:t=>{const e=new Array(10),n=(t,r)=>{if(pl(t)){if(e.indexOf(t)>=0)return;if(!("toJSON"in t)){e[r]=t;const i=al(t)?[]:{};return bl(t,((t,e)=>{const o=n(t,r+1);!ll(o)&&(i[e]=o)})),e[r]=void 0,i}}return t};return n(t,0)},isAsyncFn:Il,isThenable:t=>t&&(pl(t)||dl(t))&&dl(t.then)&&dl(t.catch)};function $l(t,e,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i)}Ll.inherits($l,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:Ll.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Dl=$l.prototype,Nl={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((t=>{Nl[t]={value:t}})),Object.defineProperties($l,Nl),Object.defineProperty(Dl,"isAxiosError",{value:!0}),$l.from=(t,e,n,r,i,o)=>{const s=Object.create(Dl);return Ll.toFlatObject(t,s,(function(t){return t!==Error.prototype}),(t=>"isAxiosError"!==t)),$l.call(s,t.message,e,n,r,i),s.cause=t,s.name=t.name,o&&Object.assign(s,o),s};var Fl=$l,Bl=null,Rl=n(8764).lW;function zl(t){return Ll.isPlainObject(t)||Ll.isArray(t)}function Ul(t){return Ll.endsWith(t,"[]")?t.slice(0,-2):t}function Vl(t,e,n){return t?t.concat(e).map((function(t,e){return t=Ul(t),!n&&e?"["+t+"]":t})).join(n?".":""):e}const Hl=Ll.toFlatObject(Ll,{},null,(function(t){return/^is[A-Z]/.test(t)}));var ql=function(t,e,n){if(!Ll.isObject(t))throw new TypeError("target must be an object");e=e||new(Bl||FormData);const r=(n=Ll.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(t,e){return!Ll.isUndefined(e[t])}))).metaTokens,i=n.visitor||c,o=n.dots,s=n.indexes,a=(n.Blob||"undefined"!=typeof Blob&&Blob)&&Ll.isSpecCompliantForm(e);if(!Ll.isFunction(i))throw new TypeError("visitor must be a function");function l(t){if(null===t)return"";if(Ll.isDate(t))return t.toISOString();if(!a&&Ll.isBlob(t))throw new Fl("Blob is not supported. Use a Buffer instead.");return Ll.isArrayBuffer(t)||Ll.isTypedArray(t)?a&&"function"==typeof Blob?new Blob([t]):Rl.from(t):t}function c(t,n,i){let a=t;if(t&&!i&&"object"==typeof t)if(Ll.endsWith(n,"{}"))n=r?n:n.slice(0,-2),t=JSON.stringify(t);else if(Ll.isArray(t)&&function(t){return Ll.isArray(t)&&!t.some(zl)}(t)||(Ll.isFileList(t)||Ll.endsWith(n,"[]"))&&(a=Ll.toArray(t)))return n=Ul(n),a.forEach((function(t,r){!Ll.isUndefined(t)&&null!==t&&e.append(!0===s?Vl([n],r,o):null===s?n:n+"[]",l(t))})),!1;return!!zl(t)||(e.append(Vl(i,n,o),l(t)),!1)}const u=[],d=Object.assign(Hl,{defaultVisitor:c,convertValue:l,isVisitable:zl});if(!Ll.isObject(t))throw new TypeError("data must be an object");return function t(n,r){if(!Ll.isUndefined(n)){if(-1!==u.indexOf(n))throw Error("Circular reference detected in "+r.join("."));u.push(n),Ll.forEach(n,(function(n,o){!0===(!(Ll.isUndefined(n)||null===n)&&i.call(e,n,Ll.isString(o)?o.trim():o,r,d))&&t(n,r?r.concat(o):[o])})),u.pop()}}(t),e};function Wl(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,(function(t){return e[t]}))}function Zl(t,e){this._pairs=[],t&&ql(t,this,e)}const Yl=Zl.prototype;Yl.append=function(t,e){this._pairs.push([t,e])},Yl.toString=function(t){const e=t?function(e){return t.call(this,e,Wl)}:Wl;return this._pairs.map((function(t){return e(t[0])+"="+e(t[1])}),"").join("&")};var Gl=Zl;function Jl(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Kl(t,e,n){if(!e)return t;const r=n&&n.encode||Jl,i=n&&n.serialize;let o;if(o=i?i(e,n):Ll.isURLSearchParams(e)?e.toString():new Gl(e,n).toString(r),o){const e=t.indexOf("#");-1!==e&&(t=t.slice(0,e)),t+=(-1===t.indexOf("?")?"?":"&")+o}return t}var Xl=class{constructor(){this.handlers=[]}use(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){Ll.forEach(this.handlers,(function(e){null!==e&&t(e)}))}},Ql={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},tc={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:Gl,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]};const ec="undefined"!=typeof window&&"undefined"!=typeof document,nc=(rc="undefined"!=typeof navigator&&navigator.product,ec&&["ReactNative","NativeScript","NS"].indexOf(rc)<0);var rc;const ic="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts;var oc={...r,...tc};var sc=function(t){function e(t,n,r,i){let o=t[i++];if("__proto__"===o)return!0;const s=Number.isFinite(+o),a=i>=t.length;if(o=!o&&Ll.isArray(r)?r.length:o,a)return Ll.hasOwnProp(r,o)?r[o]=[r[o],n]:r[o]=n,!s;r[o]&&Ll.isObject(r[o])||(r[o]=[]);return e(t,n,r[o],i)&&Ll.isArray(r[o])&&(r[o]=function(t){const e={},n=Object.keys(t);let r;const i=n.length;let o;for(r=0;r<i;r++)o=n[r],e[o]=t[o];return e}(r[o])),!s}if(Ll.isFormData(t)&&Ll.isFunction(t.entries)){const n={};return Ll.forEachEntry(t,((t,r)=>{e(function(t){return Ll.matchAll(/\w+|\[(\w*)]/g,t).map((t=>"[]"===t[0]?"":t[1]||t[0]))}(t),r,n,0)})),n}return null};const ac={transitional:Ql,adapter:["xhr","http"],transformRequest:[function(t,e){const n=e.getContentType()||"",r=n.indexOf("application/json")>-1,i=Ll.isObject(t);i&&Ll.isHTMLForm(t)&&(t=new FormData(t));if(Ll.isFormData(t))return r?JSON.stringify(sc(t)):t;if(Ll.isArrayBuffer(t)||Ll.isBuffer(t)||Ll.isStream(t)||Ll.isFile(t)||Ll.isBlob(t))return t;if(Ll.isArrayBufferView(t))return t.buffer;if(Ll.isURLSearchParams(t))return e.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let o;if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return function(t,e){return ql(t,new oc.classes.URLSearchParams,Object.assign({visitor:function(t,e,n,r){return oc.isNode&&Ll.isBuffer(t)?(this.append(e,t.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},e))}(t,this.formSerializer).toString();if((o=Ll.isFileList(t))||n.indexOf("multipart/form-data")>-1){const e=this.env&&this.env.FormData;return ql(o?{"files[]":t}:t,e&&new e,this.formSerializer)}}return i||r?(e.setContentType("application/json",!1),function(t,e,n){if(Ll.isString(t))try{return(e||JSON.parse)(t),Ll.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(n||JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){const e=this.transitional||ac.transitional,n=e&&e.forcedJSONParsing,r="json"===this.responseType;if(t&&Ll.isString(t)&&(n&&!this.responseType||r)){const n=!(e&&e.silentJSONParsing)&&r;try{return JSON.parse(t)}catch(t){if(n){if("SyntaxError"===t.name)throw Fl.from(t,Fl.ERR_BAD_RESPONSE,this,null,this.response);throw t}}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:oc.classes.FormData,Blob:oc.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};Ll.forEach(["delete","get","head","post","put","patch"],(t=>{ac.headers[t]={}}));var lc=ac;const cc=Ll.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]);const uc=Symbol("internals");function dc(t){return t&&String(t).trim().toLowerCase()}function fc(t){return!1===t||null==t?t:Ll.isArray(t)?t.map(fc):String(t)}function pc(t,e,n,r,i){return Ll.isFunction(r)?r.call(this,e,n):(i&&(e=n),Ll.isString(e)?Ll.isString(r)?-1!==e.indexOf(r):Ll.isRegExp(r)?r.test(e):void 0:void 0)}class hc{constructor(t){t&&this.set(t)}set(t,e,n){const r=this;function i(t,e,n){const i=dc(e);if(!i)throw new Error("header name must be a non-empty string");const o=Ll.findKey(r,i);(!o||void 0===r[o]||!0===n||void 0===n&&!1!==r[o])&&(r[o||e]=fc(t))}const o=(t,e)=>Ll.forEach(t,((t,n)=>i(t,n,e)));return Ll.isPlainObject(t)||t instanceof this.constructor?o(t,e):Ll.isString(t)&&(t=t.trim())&&!(t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim()))(t)?o((t=>{const e={};let n,r,i;return t&&t.split("\n").forEach((function(t){i=t.indexOf(":"),n=t.substring(0,i).trim().toLowerCase(),r=t.substring(i+1).trim(),!n||e[n]&&cc[n]||("set-cookie"===n?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)})),e})(t),e):null!=t&&i(e,t,n),this}get(t,e){if(t=dc(t)){const n=Ll.findKey(this,t);if(n){const t=this[n];if(!e)return t;if(!0===e)return function(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}(t);if(Ll.isFunction(e))return e.call(this,t,n);if(Ll.isRegExp(e))return e.exec(t);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,e){if(t=dc(t)){const n=Ll.findKey(this,t);return!(!n||void 0===this[n]||e&&!pc(0,this[n],n,e))}return!1}delete(t,e){const n=this;let r=!1;function i(t){if(t=dc(t)){const i=Ll.findKey(n,t);!i||e&&!pc(0,n[i],i,e)||(delete n[i],r=!0)}}return Ll.isArray(t)?t.forEach(i):i(t),r}clear(t){const e=Object.keys(this);let n=e.length,r=!1;for(;n--;){const i=e[n];t&&!pc(0,this[i],i,t,!0)||(delete this[i],r=!0)}return r}normalize(t){const e=this,n={};return Ll.forEach(this,((r,i)=>{const o=Ll.findKey(n,i);if(o)return e[o]=fc(r),void delete e[i];const s=t?function(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((t,e,n)=>e.toUpperCase()+n))}(i):String(i).trim();s!==i&&delete e[i],e[s]=fc(r),n[s]=!0})),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const e=Object.create(null);return Ll.forEach(this,((n,r)=>{null!=n&&!1!==n&&(e[r]=t&&Ll.isArray(n)?n.join(", "):n)})),e}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([t,e])=>t+": "+e)).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...e){const n=new this(t);return e.forEach((t=>n.set(t))),n}static accessor(t){const e=(this[uc]=this[uc]={accessors:{}}).accessors,n=this.prototype;function r(t){const r=dc(t);e[r]||(!function(t,e){const n=Ll.toCamelCase(" "+e);["get","set","has"].forEach((r=>{Object.defineProperty(t,r+n,{value:function(t,n,i){return this[r].call(this,e,t,n,i)},configurable:!0})}))}(n,t),e[r]=!0)}return Ll.isArray(t)?t.forEach(r):r(t),this}}hc.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),Ll.reduceDescriptors(hc.prototype,(({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(t){this[n]=t}}})),Ll.freezeMethods(hc);var mc=hc;function gc(t,e){const n=this||lc,r=e||n,i=mc.from(r.headers);let o=r.data;return Ll.forEach(t,(function(t){o=t.call(n,o,i.normalize(),e?e.status:void 0)})),i.normalize(),o}function vc(t){return!(!t||!t.__CANCEL__)}function wc(t,e,n){Fl.call(this,null==t?"canceled":t,Fl.ERR_CANCELED,e,n),this.name="CanceledError"}Ll.inherits(wc,Fl,{__CANCEL__:!0});var yc=wc;var bc=oc.hasStandardBrowserEnv?{write(t,e,n,r,i,o){const s=[t+"="+encodeURIComponent(e)];Ll.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),Ll.isString(r)&&s.push("path="+r),Ll.isString(i)&&s.push("domain="+i),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function _c(t,e){return t&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)?function(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}(t,e):e}var xc=oc.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");let n;function r(n){let r=n;return t&&(e.setAttribute("href",r),r=e.href),e.setAttribute("href",r),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:"/"===e.pathname.charAt(0)?e.pathname:"/"+e.pathname}}return n=r(window.location.href),function(t){const e=Ll.isString(t)?r(t):t;return e.protocol===n.protocol&&e.host===n.host}}():function(){return!0};var kc=function(t,e){t=t||10;const n=new Array(t),r=new Array(t);let i,o=0,s=0;return e=void 0!==e?e:1e3,function(a){const l=Date.now(),c=r[s];i||(i=l),n[o]=a,r[o]=l;let u=s,d=0;for(;u!==o;)d+=n[u++],u%=t;if(o=(o+1)%t,o===s&&(s=(s+1)%t),l-i<e)return;const f=c&&l-c;return f?Math.round(1e3*d/f):void 0}};function Sc(t,e){let n=0;const r=kc(50,250);return i=>{const o=i.loaded,s=i.lengthComputable?i.total:void 0,a=o-n,l=r(a);n=o;const c={loaded:o,total:s,progress:s?o/s:void 0,bytes:a,rate:l||void 0,estimated:l&&s&&o<=s?(s-o)/l:void 0,event:i};c[e?"download":"upload"]=!0,t(c)}}var Cc="undefined"!=typeof XMLHttpRequest&&function(t){return new Promise((function(e,n){let r=t.data;const i=mc.from(t.headers).normalize();let o,s,{responseType:a,withXSRFToken:l}=t;function c(){t.cancelToken&&t.cancelToken.unsubscribe(o),t.signal&&t.signal.removeEventListener("abort",o)}if(Ll.isFormData(r))if(oc.hasStandardBrowserEnv||oc.hasStandardBrowserWebWorkerEnv)i.setContentType(!1);else if(!1!==(s=i.getContentType())){const[t,...e]=s?s.split(";").map((t=>t.trim())).filter(Boolean):[];i.setContentType([t||"multipart/form-data",...e].join("; "))}let u=new XMLHttpRequest;if(t.auth){const e=t.auth.username||"",n=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(e+":"+n))}const d=_c(t.baseURL,t.url);function f(){if(!u)return;const r=mc.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders());!function(t,e,n){const r=n.config.validateStatus;n.status&&r&&!r(n.status)?e(new Fl("Request failed with status code "+n.status,[Fl.ERR_BAD_REQUEST,Fl.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n)):t(n)}((function(t){e(t),c()}),(function(t){n(t),c()}),{data:a&&"text"!==a&&"json"!==a?u.response:u.responseText,status:u.status,statusText:u.statusText,headers:r,config:t,request:u}),u=null}if(u.open(t.method.toUpperCase(),Kl(d,t.params,t.paramsSerializer),!0),u.timeout=t.timeout,"onloadend"in u?u.onloadend=f:u.onreadystatechange=function(){u&&4===u.readyState&&(0!==u.status||u.responseURL&&0===u.responseURL.indexOf("file:"))&&setTimeout(f)},u.onabort=function(){u&&(n(new Fl("Request aborted",Fl.ECONNABORTED,t,u)),u=null)},u.onerror=function(){n(new Fl("Network Error",Fl.ERR_NETWORK,t,u)),u=null},u.ontimeout=function(){let e=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const r=t.transitional||Ql;t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(new Fl(e,r.clarifyTimeoutError?Fl.ETIMEDOUT:Fl.ECONNABORTED,t,u)),u=null},oc.hasStandardBrowserEnv&&(l&&Ll.isFunction(l)&&(l=l(t)),l||!1!==l&&xc(d))){const e=t.xsrfHeaderName&&t.xsrfCookieName&&bc.read(t.xsrfCookieName);e&&i.set(t.xsrfHeaderName,e)}void 0===r&&i.setContentType(null),"setRequestHeader"in u&&Ll.forEach(i.toJSON(),(function(t,e){u.setRequestHeader(e,t)})),Ll.isUndefined(t.withCredentials)||(u.withCredentials=!!t.withCredentials),a&&"json"!==a&&(u.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&u.addEventListener("progress",Sc(t.onDownloadProgress,!0)),"function"==typeof t.onUploadProgress&&u.upload&&u.upload.addEventListener("progress",Sc(t.onUploadProgress)),(t.cancelToken||t.signal)&&(o=e=>{u&&(n(!e||e.type?new yc(null,t,u):e),u.abort(),u=null)},t.cancelToken&&t.cancelToken.subscribe(o),t.signal&&(t.signal.aborted?o():t.signal.addEventListener("abort",o)));const p=function(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}(d);p&&-1===oc.protocols.indexOf(p)?n(new Fl("Unsupported protocol "+p+":",Fl.ERR_BAD_REQUEST,t)):u.send(r||null)}))};const Oc={http:Bl,xhr:Cc};Ll.forEach(Oc,((t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch(t){}Object.defineProperty(t,"adapterName",{value:e})}}));const Tc=t=>`- ${t}`,Ec=t=>Ll.isFunction(t)||null===t||!1===t;var jc={getAdapter:t=>{t=Ll.isArray(t)?t:[t];const{length:e}=t;let n,r;const i={};for(let o=0;o<e;o++){let e;if(n=t[o],r=n,!Ec(n)&&(r=Oc[(e=String(n)).toLowerCase()],void 0===r))throw new Fl(`Unknown adapter '${e}'`);if(r)break;i[e||"#"+o]=r}if(!r){const t=Object.entries(i).map((([t,e])=>`adapter ${t} `+(!1===e?"is not supported by the environment":"is not available in the build")));let n=e?t.length>1?"since :\n"+t.map(Tc).join("\n"):" "+Tc(t[0]):"as no adapter specified";throw new Fl("There is no suitable adapter to dispatch the request "+n,"ERR_NOT_SUPPORT")}return r},adapters:Oc};function Ac(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new yc(null,t)}function Pc(t){Ac(t),t.headers=mc.from(t.headers),t.data=gc.call(t,t.transformRequest),-1!==["post","put","patch"].indexOf(t.method)&&t.headers.setContentType("application/x-www-form-urlencoded",!1);return jc.getAdapter(t.adapter||lc.adapter)(t).then((function(e){return Ac(t),e.data=gc.call(t,t.transformResponse,e),e.headers=mc.from(e.headers),e}),(function(e){return vc(e)||(Ac(t),e&&e.response&&(e.response.data=gc.call(t,t.transformResponse,e.response),e.response.headers=mc.from(e.response.headers))),Promise.reject(e)}))}const Mc=t=>t instanceof mc?t.toJSON():t;function Ic(t,e){e=e||{};const n={};function r(t,e,n){return Ll.isPlainObject(t)&&Ll.isPlainObject(e)?Ll.merge.call({caseless:n},t,e):Ll.isPlainObject(e)?Ll.merge({},e):Ll.isArray(e)?e.slice():e}function i(t,e,n){return Ll.isUndefined(e)?Ll.isUndefined(t)?void 0:r(void 0,t,n):r(t,e,n)}function o(t,e){if(!Ll.isUndefined(e))return r(void 0,e)}function s(t,e){return Ll.isUndefined(e)?Ll.isUndefined(t)?void 0:r(void 0,t):r(void 0,e)}function a(n,i,o){return o in e?r(n,i):o in t?r(void 0,n):void 0}const l={url:o,method:o,data:o,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,withXSRFToken:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:a,headers:(t,e)=>i(Mc(t),Mc(e),!0)};return Ll.forEach(Object.keys(Object.assign({},t,e)),(function(r){const o=l[r]||i,s=o(t[r],e[r],r);Ll.isUndefined(s)&&o!==a||(n[r]=s)})),n}const Lc="1.6.7",$c={};["object","boolean","number","function","string","symbol"].forEach(((t,e)=>{$c[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}}));const Dc={};$c.transitional=function(t,e,n){function r(t,e){return"[Axios v1.6.7] Transitional option '"+t+"'"+e+(n?". "+n:"")}return(n,i,o)=>{if(!1===t)throw new Fl(r(i," has been removed"+(e?" in "+e:"")),Fl.ERR_DEPRECATED);return e&&!Dc[i]&&(Dc[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(n,i,o)}};var Nc={assertOptions:function(t,e,n){if("object"!=typeof t)throw new Fl("options must be an object",Fl.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let i=r.length;for(;i-- >0;){const o=r[i],s=e[o];if(s){const e=t[o],n=void 0===e||s(e,o,t);if(!0!==n)throw new Fl("option "+o+" must be "+n,Fl.ERR_BAD_OPTION_VALUE)}else if(!0!==n)throw new Fl("Unknown option "+o,Fl.ERR_BAD_OPTION)}},validators:$c};const Fc=Nc.validators;class Bc{constructor(t){this.defaults=t,this.interceptors={request:new Xl,response:new Xl}}async request(t,e){try{return await this._request(t,e)}catch(t){if(t instanceof Error){let e;Error.captureStackTrace?Error.captureStackTrace(e={}):e=new Error;const n=e.stack?e.stack.replace(/^.+\n/,""):"";t.stack?n&&!String(t.stack).endsWith(n.replace(/^.+\n.+\n/,""))&&(t.stack+="\n"+n):t.stack=n}throw t}}_request(t,e){"string"==typeof t?(e=e||{}).url=t:e=t||{},e=Ic(this.defaults,e);const{transitional:n,paramsSerializer:r,headers:i}=e;void 0!==n&&Nc.assertOptions(n,{silentJSONParsing:Fc.transitional(Fc.boolean),forcedJSONParsing:Fc.transitional(Fc.boolean),clarifyTimeoutError:Fc.transitional(Fc.boolean)},!1),null!=r&&(Ll.isFunction(r)?e.paramsSerializer={serialize:r}:Nc.assertOptions(r,{encode:Fc.function,serialize:Fc.function},!0)),e.method=(e.method||this.defaults.method||"get").toLowerCase();let o=i&&Ll.merge(i.common,i[e.method]);i&&Ll.forEach(["delete","get","head","post","put","patch","common"],(t=>{delete i[t]})),e.headers=mc.concat(o,i);const s=[];let a=!0;this.interceptors.request.forEach((function(t){"function"==typeof t.runWhen&&!1===t.runWhen(e)||(a=a&&t.synchronous,s.unshift(t.fulfilled,t.rejected))}));const l=[];let c;this.interceptors.response.forEach((function(t){l.push(t.fulfilled,t.rejected)}));let u,d=0;if(!a){const t=[Pc.bind(this),void 0];for(t.unshift.apply(t,s),t.push.apply(t,l),u=t.length,c=Promise.resolve(e);d<u;)c=c.then(t[d++],t[d++]);return c}u=s.length;let f=e;for(d=0;d<u;){const t=s[d++],e=s[d++];try{f=t(f)}catch(t){e.call(this,t);break}}try{c=Pc.call(this,f)}catch(t){return Promise.reject(t)}for(d=0,u=l.length;d<u;)c=c.then(l[d++],l[d++]);return c}getUri(t){return Kl(_c((t=Ic(this.defaults,t)).baseURL,t.url),t.params,t.paramsSerializer)}}Ll.forEach(["delete","get","head","options"],(function(t){Bc.prototype[t]=function(e,n){return this.request(Ic(n||{},{method:t,url:e,data:(n||{}).data}))}})),Ll.forEach(["post","put","patch"],(function(t){function e(e){return function(n,r,i){return this.request(Ic(i||{},{method:t,headers:e?{"Content-Type":"multipart/form-data"}:{},url:n,data:r}))}}Bc.prototype[t]=e(),Bc.prototype[t+"Form"]=e(!0)}));var Rc=Bc;class zc{constructor(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");let e;this.promise=new Promise((function(t){e=t}));const n=this;this.promise.then((t=>{if(!n._listeners)return;let e=n._listeners.length;for(;e-- >0;)n._listeners[e](t);n._listeners=null})),this.promise.then=t=>{let e;const r=new Promise((t=>{n.subscribe(t),e=t})).then(t);return r.cancel=function(){n.unsubscribe(e)},r},t((function(t,r,i){n.reason||(n.reason=new yc(t,r,i),e(n.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){this.reason?t(this.reason):this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const e=this._listeners.indexOf(t);-1!==e&&this._listeners.splice(e,1)}static source(){let t;return{token:new zc((function(e){t=e})),cancel:t}}}var Uc=zc;const Vc={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Vc).forEach((([t,e])=>{Vc[e]=t}));var Hc=Vc;const qc=function t(e){const n=new Rc(e),r=tl(Rc.prototype.request,n);return Ll.extend(r,Rc.prototype,n,{allOwnKeys:!0}),Ll.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return t(Ic(e,n))},r}(lc);qc.Axios=Rc,qc.CanceledError=yc,qc.CancelToken=Uc,qc.isCancel=vc,qc.VERSION=Lc,qc.toFormData=ql,qc.AxiosError=Fl,qc.Cancel=qc.CanceledError,qc.all=function(t){return Promise.all(t)},qc.spread=function(t){return function(e){return t.apply(null,e)}},qc.isAxiosError=function(t){return Ll.isObject(t)&&!0===t.isAxiosError},qc.mergeConfig=Ic,qc.AxiosHeaders=mc,qc.formToJSON=t=>sc(Ll.isHTMLForm(t)?new FormData(t):t),qc.getAdapter=jc.getAdapter,qc.HttpStatusCode=Hc,qc.default=qc;var Wc=qc;const Zc=Wc.create({baseURL:!!window.metaslider_api.supports_rest&&window.metaslider_api.root,headers:{"X-WP-Nonce":!!window.metaslider_api&&window.metaslider_api.nonce,"X-Requested-With":"XMLHttpRequest"}});Zc.interceptors.request.use((t=>(t.baseURL||(t.url=window.metaslider_api.ajaxurl),t))),Zc.interceptors.response.use(void 0,(t=>new Promise(((e,n)=>{if(t.config.url===window.metaslider_api.ajaxurl&&n(t),t.config&&"GET"===t.config.method.toUpperCase()){const n=window.metaslider.app?window.metaslider.app.MetaSlider:null;n&&n.notifyError("metaslider/rest-route-get-error",t.response),t.config.url=window.metaslider_api.ajaxurl,e(Wc.request(t.config))}t.config&&"POST"===t.config.method.toUpperCase()&&t.response&&404===t.response.status&&(t.config.url=window.metaslider_api.ajaxurl,e(Wc.request(t.config))),n(t)}))));var Yc,Gc,Jc,Kc,Xc=Zc,Qc=new rr,tu={debounce(t,e){let n;return function(){clearTimeout(n),n=setTimeout((()=>t.apply(this,arguments)),e)}}},eu=n(9588),nu=n.n(eu),ru=n(8975),iu=n.n(ru),ou=nu()(console.error);function su(t){try{for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return iu().sprintf.apply(iu(),[t].concat(n))}catch(e){return ou("sprintf error: \n\n"+e.toString()),t}}function au(t){return au="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},au(t)}function lu(t){var e=function(t,e){if("object"!==au(t)||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!==au(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===au(e)?e:String(e)}function cu(t,e,n){return(e=lu(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}Yc={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},Gc=["(","?"],Jc={")":["("],":":["?","?:"]},Kc=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var uu={"!":function(t){return!t},"*":function(t,e){return t*e},"/":function(t,e){return t/e},"%":function(t,e){return t%e},"+":function(t,e){return t+e},"-":function(t,e){return t-e},"<":function(t,e){return t<e},"<=":function(t,e){return t<=e},">":function(t,e){return t>e},">=":function(t,e){return t>=e},"==":function(t,e){return t===e},"!=":function(t,e){return t!==e},"&&":function(t,e){return t&&e},"||":function(t,e){return t||e},"?:":function(t,e,n){if(t)throw e;return n}};function du(t){var e=function(t){for(var e,n,r,i,o=[],s=[];e=t.match(Kc);){for(n=e[0],(r=t.substr(0,e.index).trim())&&o.push(r);i=s.pop();){if(Jc[n]){if(Jc[n][0]===i){n=Jc[n][1]||n;break}}else if(Gc.indexOf(i)>=0||Yc[i]<Yc[n]){s.push(i);break}o.push(i)}Jc[n]||s.push(n),t=t.substr(e.index+n.length)}return(t=t.trim())&&o.push(t),o.concat(s.reverse())}(t);return function(t){return function(t,e){var n,r,i,o,s,a,l=[];for(n=0;n<t.length;n++){if(s=t[n],o=uu[s]){for(r=o.length,i=Array(r);r--;)i[r]=l.pop();try{a=o.apply(null,i)}catch(t){return t}}else a=e.hasOwnProperty(s)?e[s]:+s;l.push(a)}return l[0]}(e,t)}}var fu={contextDelimiter:"",onMissingKey:null};function pu(t,e){var n;for(n in this.data=t,this.pluralForms={},this.options={},fu)this.options[n]=void 0!==e&&n in e?e[n]:fu[n]}function hu(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function mu(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?hu(Object(n),!0).forEach((function(e){cu(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):hu(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}pu.prototype.getPluralForm=function(t,e){var n,r,i,o=this.pluralForms[t];return o||("function"!=typeof(i=(n=this.data[t][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(t){var e,n,r;for(e=t.split(";"),n=0;n<e.length;n++)if(0===(r=e[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),i=function(t){var e=du(t);return function(t){return+e({n:t})}}(r)),o=this.pluralForms[t]=i),o(e)},pu.prototype.dcnpgettext=function(t,e,n,r,i){var o,s,a;return o=void 0===i?0:this.getPluralForm(t,i),s=n,e&&(s=e+this.options.contextDelimiter+n),(a=this.data[t][s])&&a[o]?a[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,t),0===o?n:r)};var gu={"":{plural_forms:function(t){return 1===t?0:1}}},vu=/^i18n\.(n?gettext|has_translation)(_|$)/;var wu=function(t){return"string"!=typeof t||""===t?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(t)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var yu=function(t){return"string"!=typeof t||""===t?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(t)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(t)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var bu=function(t,e){return function(n,r,i){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,s=t[e];if(yu(n)&&wu(r))if("function"==typeof i)if("number"==typeof o){var a={callback:i,priority:o,namespace:r};if(s[n]){var l,c=s[n].handlers;for(l=c.length;l>0&&!(o>=c[l-1].priority);l--);l===c.length?c[l]=a:c.splice(l,0,a),s.__current.forEach((function(t){t.name===n&&t.currentIndex>=l&&t.currentIndex++}))}else s[n]={handlers:[a],runs:0};"hookAdded"!==n&&t.doAction("hookAdded",n,r,i,o)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var _u=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r,i){var o=t[e];if(yu(r)&&(n||wu(i))){if(!o[r])return 0;var s=0;if(n)s=o[r].handlers.length,o[r]={runs:o[r].runs,handlers:[]};else for(var a=o[r].handlers,l=function(t){a[t].namespace===i&&(a.splice(t,1),s++,o.__current.forEach((function(e){e.name===r&&e.currentIndex>=t&&e.currentIndex--})))},c=a.length-1;c>=0;c--)l(c);return"hookRemoved"!==r&&t.doAction("hookRemoved",r,i),s}}};var xu=function(t,e){return function(n,r){var i=t[e];return void 0!==r?n in i&&i[n].handlers.some((function(t){return t.namespace===r})):n in i}};var ku=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r){var i=t[e];i[r]||(i[r]={handlers:[],runs:0}),i[r].runs++;var o=i[r].handlers;for(var s=arguments.length,a=new Array(s>1?s-1:0),l=1;l<s;l++)a[l-1]=arguments[l];if(!o||!o.length)return n?a[0]:void 0;var c={name:r,currentIndex:0};for(i.__current.push(c);c.currentIndex<o.length;){var u=o[c.currentIndex].callback.apply(null,a);n&&(a[0]=u),c.currentIndex++}return i.__current.pop(),n?a[0]:void 0}};var Su=function(t,e){return function(){var n,r,i=t[e];return null!==(n=null===(r=i.__current[i.__current.length-1])||void 0===r?void 0:r.name)&&void 0!==n?n:null}};var Cu=function(t,e){return function(n){var r=t[e];return void 0===n?void 0!==r.__current[0]:!!r.__current[0]&&n===r.__current[0].name}};var Ou=function(t,e){return function(n){var r=t[e];if(yu(n))return r[n]&&r[n].runs?r[n].runs:0}},Tu=function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=bu(this,"actions"),this.addFilter=bu(this,"filters"),this.removeAction=_u(this,"actions"),this.removeFilter=_u(this,"filters"),this.hasAction=xu(this,"actions"),this.hasFilter=xu(this,"filters"),this.removeAllActions=_u(this,"actions",!0),this.removeAllFilters=_u(this,"filters",!0),this.doAction=ku(this,"actions"),this.applyFilters=ku(this,"filters",!0),this.currentAction=Su(this,"actions"),this.currentFilter=Su(this,"filters"),this.doingAction=Cu(this,"actions"),this.doingFilter=Cu(this,"filters"),this.didAction=Ou(this,"actions"),this.didFilter=Ou(this,"filters")};var Eu=function(){return new Tu}(),ju=(Eu.addAction,Eu.addFilter,Eu.removeAction,Eu.removeFilter,Eu.hasAction,Eu.hasFilter,Eu.removeAllActions,Eu.removeAllFilters,Eu.doAction,Eu.applyFilters,Eu.currentAction,Eu.currentFilter,Eu.doingAction,Eu.doingFilter,Eu.didAction,Eu.didFilter,Eu.actions,Eu.filters,function(t,e,n){var r=new pu({}),i=new Set,o=function(){i.forEach((function(t){return t()}))},s=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"default";r.data[e]=mu(mu(mu({},gu),r.data[e]),t),r.data[e][""]=mu(mu({},gu[""]),r.data[e][""])},a=function(t,e){s(t,e),o()},l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default",e=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0,o=arguments.length>4?arguments[4]:void 0;return r.data[t]||s(void 0,t),r.dcnpgettext(t,e,n,i,o)},c=function(){return arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default"},u=function(t,e,r){var i=l(r,e,t);return n?(i=n.applyFilters("i18n.gettext_with_context",i,t,e,r),n.applyFilters("i18n.gettext_with_context_"+c(r),i,t,e,r)):i};if(t&&a(t,e),n){var d=function(t){vu.test(t)&&o()};n.addAction("hookAdded","core/i18n",d),n.addAction("hookRemoved","core/i18n",d)}return{getLocaleData:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default";return r.data[t]},setLocaleData:a,resetLocaleData:function(t,e){r.data={},r.pluralForms={},a(t,e)},subscribe:function(t){return i.add(t),function(){return i.delete(t)}},__:function(t,e){var r=l(e,void 0,t);return n?(r=n.applyFilters("i18n.gettext",r,t,e),n.applyFilters("i18n.gettext_"+c(e),r,t,e)):r},_x:u,_n:function(t,e,r,i){var o=l(i,void 0,t,e,r);return n?(o=n.applyFilters("i18n.ngettext",o,t,e,r,i),n.applyFilters("i18n.ngettext_"+c(i),o,t,e,r,i)):o},_nx:function(t,e,r,i,o){var s=l(o,i,t,e,r);return n?(s=n.applyFilters("i18n.ngettext_with_context",s,t,e,r,i,o),n.applyFilters("i18n.ngettext_with_context_"+c(o),s,t,e,r,i,o)):s},isRTL:function(){return"rtl"===u("ltr","text direction")},hasTranslation:function(t,e,i){var o,s,a=e?e+""+t:t,l=!(null===(o=r.data)||void 0===o||null===(s=o[null!=i?i:"default"])||void 0===s||!s[a]);return n&&(l=n.applyFilters("i18n.has_translation",l,t,e,i),l=n.applyFilters("i18n.has_translation_"+c(i),l,t,e,i)),l}}}(void 0,void 0,Eu)),Au=(ju.getLocaleData.bind(ju),ju.setLocaleData.bind(ju)),Pu=(ju.resetLocaleData.bind(ju),ju.subscribe.bind(ju),ju.__.bind(ju)),Mu=ju._x.bind(ju),Iu=ju._n.bind(ju),Lu=ju._nx.bind(ju);ju.isRTL.bind(ju),ju.hasTranslation.bind(ju);window.metaslider.eventHooks&&Object.keys(window.metaslider.eventHooks).forEach((t=>{Qc.$on(t,window.metaslider.eventHooks[t])}));const $u=Wc.create({baseURL:"https://www.metaslider.com/wp-json/unsplash/v1/"}),Du={photos(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return e?this.searchPhotos(t,e):$u.get("images/all",{params:{page:t,nocache:n}})},searchPhotos(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return $u.post("images/search",{page:t,search:e})},async download(t,e){const n=await Wc.get(t,{responseType:"blob",onDownloadProgress:t=>{let e=parseInt(Math.round(100*t.loaded/t.total))-20;Qc.$emit("metaslider/external-api-percentage",{percentage:e>1?e:1})}});return $u.post(`images/${e}/download`),n}};var Nu=Du;var Fu=("undefined"!=typeof window?window:void 0!==n.g?n.g:{}).__VUE_DEVTOOLS_GLOBAL_HOOK__;function Bu(t,e){if(void 0===e&&(e=[]),null===t||"object"!=typeof t)return t;var n,r=(n=function(e){return e.original===t},e.filter(n)[0]);if(r)return r.copy;var i=Array.isArray(t)?[]:{};return e.push({original:t,copy:i}),Object.keys(t).forEach((function(n){i[n]=Bu(t[n],e)})),i}function Ru(t,e){Object.keys(t).forEach((function(n){return e(t[n],n)}))}function zu(t){return null!==t&&"object"==typeof t}var Uu=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"==typeof n?n():n)||{}},Vu={namespaced:{configurable:!0}};Vu.namespaced.get=function(){return!!this._rawModule.namespaced},Uu.prototype.addChild=function(t,e){this._children[t]=e},Uu.prototype.removeChild=function(t){delete this._children[t]},Uu.prototype.getChild=function(t){return this._children[t]},Uu.prototype.hasChild=function(t){return t in this._children},Uu.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},Uu.prototype.forEachChild=function(t){Ru(this._children,t)},Uu.prototype.forEachGetter=function(t){this._rawModule.getters&&Ru(this._rawModule.getters,t)},Uu.prototype.forEachAction=function(t){this._rawModule.actions&&Ru(this._rawModule.actions,t)},Uu.prototype.forEachMutation=function(t){this._rawModule.mutations&&Ru(this._rawModule.mutations,t)},Object.defineProperties(Uu.prototype,Vu);var Hu=function(t){this.register([],t,!1)};function qu(t,e,n){if(e.update(n),n.modules)for(var r in n.modules){if(!e.getChild(r))return void 0;qu(t.concat(r),e.getChild(r),n.modules[r])}}Hu.prototype.get=function(t){return t.reduce((function(t,e){return t.getChild(e)}),this.root)},Hu.prototype.getNamespace=function(t){var e=this.root;return t.reduce((function(t,n){return t+((e=e.getChild(n)).namespaced?n+"/":"")}),"")},Hu.prototype.update=function(t){qu([],this.root,t)},Hu.prototype.register=function(t,e,n){var r=this;void 0===n&&(n=!0);var i=new Uu(e,n);0===t.length?this.root=i:this.get(t.slice(0,-1)).addChild(t[t.length-1],i);e.modules&&Ru(e.modules,(function(e,i){r.register(t.concat(i),e,n)}))},Hu.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1],r=e.getChild(n);r&&r.runtime&&e.removeChild(n)},Hu.prototype.isRegistered=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];return!!e&&e.hasChild(n)};var Wu;var Zu=function(t){var e=this;void 0===t&&(t={}),!Wu&&"undefined"!=typeof window&&window.Vue&&ed(window.Vue);var n=t.plugins;void 0===n&&(n=[]);var r=t.strict;void 0===r&&(r=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new Hu(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new Wu,this._makeLocalGettersCache=Object.create(null);var i=this,o=this.dispatch,s=this.commit;this.dispatch=function(t,e){return o.call(i,t,e)},this.commit=function(t,e,n){return s.call(i,t,e,n)},this.strict=r;var a=this._modules.root.state;Xu(this,a,[],this._modules.root),Ku(this,a),n.forEach((function(t){return t(e)})),(void 0!==t.devtools?t.devtools:Wu.config.devtools)&&function(t){Fu&&(t._devtoolHook=Fu,Fu.emit("vuex:init",t),Fu.on("vuex:travel-to-state",(function(e){t.replaceState(e)})),t.subscribe((function(t,e){Fu.emit("vuex:mutation",t,e)}),{prepend:!0}),t.subscribeAction((function(t,e){Fu.emit("vuex:action",t,e)}),{prepend:!0}))}(this)},Yu={state:{configurable:!0}};function Gu(t,e,n){return e.indexOf(t)<0&&(n&&n.prepend?e.unshift(t):e.push(t)),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function Ju(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;Xu(t,n,[],t._modules.root,!0),Ku(t,n,e)}function Ku(t,e,n){var r=t._vm;t.getters={},t._makeLocalGettersCache=Object.create(null);var i=t._wrappedGetters,o={};Ru(i,(function(e,n){o[n]=function(t,e){return function(){return t(e)}}(e,t),Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})}));var s=Wu.config.silent;Wu.config.silent=!0,t._vm=new Wu({data:{$$state:e},computed:o}),Wu.config.silent=s,t.strict&&function(t){t._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}(t),r&&(n&&t._withCommit((function(){r._data.$$state=null})),Wu.nextTick((function(){return r.$destroy()})))}function Xu(t,e,n,r,i){var o=!n.length,s=t._modules.getNamespace(n);if(r.namespaced&&(t._modulesNamespaceMap[s],t._modulesNamespaceMap[s]=r),!o&&!i){var a=Qu(e,n.slice(0,-1)),l=n[n.length-1];t._withCommit((function(){Wu.set(a,l,r.state)}))}var c=r.context=function(t,e,n){var r=""===e,i={dispatch:r?t.dispatch:function(n,r,i){var o=td(n,r,i),s=o.payload,a=o.options,l=o.type;return a&&a.root||(l=e+l),t.dispatch(l,s)},commit:r?t.commit:function(n,r,i){var o=td(n,r,i),s=o.payload,a=o.options,l=o.type;a&&a.root||(l=e+l),t.commit(l,s,a)}};return Object.defineProperties(i,{getters:{get:r?function(){return t.getters}:function(){return function(t,e){if(!t._makeLocalGettersCache[e]){var n={},r=e.length;Object.keys(t.getters).forEach((function(i){if(i.slice(0,r)===e){var o=i.slice(r);Object.defineProperty(n,o,{get:function(){return t.getters[i]},enumerable:!0})}})),t._makeLocalGettersCache[e]=n}return t._makeLocalGettersCache[e]}(t,e)}},state:{get:function(){return Qu(t.state,n)}}}),i}(t,s,n);r.forEachMutation((function(e,n){!function(t,e,n,r){var i=t._mutations[e]||(t._mutations[e]=[]);i.push((function(e){n.call(t,r.state,e)}))}(t,s+n,e,c)})),r.forEachAction((function(e,n){var r=e.root?n:s+n,i=e.handler||e;!function(t,e,n,r){var i=t._actions[e]||(t._actions[e]=[]);i.push((function(e){var i,o=n.call(t,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:t.getters,rootState:t.state},e);return(i=o)&&"function"==typeof i.then||(o=Promise.resolve(o)),t._devtoolHook?o.catch((function(e){throw t._devtoolHook.emit("vuex:error",e),e})):o}))}(t,r,i,c)})),r.forEachGetter((function(e,n){!function(t,e,n,r){if(t._wrappedGetters[e])return void 0;t._wrappedGetters[e]=function(t){return n(r.state,r.getters,t.state,t.getters)}}(t,s+n,e,c)})),r.forEachChild((function(r,o){Xu(t,e,n.concat(o),r,i)}))}function Qu(t,e){return e.reduce((function(t,e){return t[e]}),t)}function td(t,e,n){return zu(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function ed(t){Wu&&t===Wu||function(t){if(Number(t.version.split(".")[0])>=2)t.mixin({beforeCreate:n});else{var e=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[n].concat(t.init):n,e.call(this,t)}}function n(){var t=this.$options;t.store?this.$store="function"==typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}(Wu=t)}Yu.state.get=function(){return this._vm._data.$$state},Yu.state.set=function(t){0},Zu.prototype.commit=function(t,e,n){var r=this,i=td(t,e,n),o=i.type,s=i.payload,a=(i.options,{type:o,payload:s}),l=this._mutations[o];l&&(this._withCommit((function(){l.forEach((function(t){t(s)}))})),this._subscribers.slice().forEach((function(t){return t(a,r.state)})))},Zu.prototype.dispatch=function(t,e){var n=this,r=td(t,e),i=r.type,o=r.payload,s={type:i,payload:o},a=this._actions[i];if(a){try{this._actionSubscribers.slice().filter((function(t){return t.before})).forEach((function(t){return t.before(s,n.state)}))}catch(t){0}var l=a.length>1?Promise.all(a.map((function(t){return t(o)}))):a[0](o);return new Promise((function(t,e){l.then((function(e){try{n._actionSubscribers.filter((function(t){return t.after})).forEach((function(t){return t.after(s,n.state)}))}catch(t){0}t(e)}),(function(t){try{n._actionSubscribers.filter((function(t){return t.error})).forEach((function(e){return e.error(s,n.state,t)}))}catch(t){0}e(t)}))}))}},Zu.prototype.subscribe=function(t,e){return Gu(t,this._subscribers,e)},Zu.prototype.subscribeAction=function(t,e){return Gu("function"==typeof t?{before:t}:t,this._actionSubscribers,e)},Zu.prototype.watch=function(t,e,n){var r=this;return this._watcherVM.$watch((function(){return t(r.state,r.getters)}),e,n)},Zu.prototype.replaceState=function(t){var e=this;this._withCommit((function(){e._vm._data.$$state=t}))},Zu.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"==typeof t&&(t=[t]),this._modules.register(t,e),Xu(this,this.state,t,this._modules.get(t),n.preserveState),Ku(this,this.state)},Zu.prototype.unregisterModule=function(t){var e=this;"string"==typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit((function(){var n=Qu(e.state,t.slice(0,-1));Wu.delete(n,t[t.length-1])})),Ju(this)},Zu.prototype.hasModule=function(t){return"string"==typeof t&&(t=[t]),this._modules.isRegistered(t)},Zu.prototype.hotUpdate=function(t){this._modules.update(t),Ju(this,!0)},Zu.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(Zu.prototype,Yu);var nd=ad((function(t,e){var n={};return sd(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var r=ld(this.$store,"mapState",t);if(!r)return;e=r.context.state,n=r.context.getters}return"function"==typeof i?i.call(this,e,n):e[i]},n[r].vuex=!0})),n})),rd=ad((function(t,e){var n={};return sd(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.commit;if(t){var o=ld(this.$store,"mapMutations",t);if(!o)return;r=o.context.commit}return"function"==typeof i?i.apply(this,[r].concat(e)):r.apply(this.$store,[i].concat(e))}})),n})),id=ad((function(t,e){var n={};return sd(e).forEach((function(e){var r=e.key,i=e.val;i=t+i,n[r]=function(){if(!t||ld(this.$store,"mapGetters",t))return this.$store.getters[i]},n[r].vuex=!0})),n})),od=ad((function(t,e){var n={};return sd(e).forEach((function(e){var r=e.key,i=e.val;n[r]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var r=this.$store.dispatch;if(t){var o=ld(this.$store,"mapActions",t);if(!o)return;r=o.context.dispatch}return"function"==typeof i?i.apply(this,[r].concat(e)):r.apply(this.$store,[i].concat(e))}})),n}));function sd(t){return function(t){return Array.isArray(t)||zu(t)}(t)?Array.isArray(t)?t.map((function(t){return{key:t,val:t}})):Object.keys(t).map((function(e){return{key:e,val:t[e]}})):[]}function ad(t){return function(e,n){return"string"!=typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function ld(t,e,n){return t._modulesNamespaceMap[n]}function cd(t,e,n){var r=n?t.groupCollapsed:t.group;try{r.call(t,e)}catch(n){t.log(e)}}function ud(t){try{t.groupEnd()}catch(e){t.log("—— log end ——")}}function dd(){var t=new Date;return" @ "+fd(t.getHours(),2)+":"+fd(t.getMinutes(),2)+":"+fd(t.getSeconds(),2)+"."+fd(t.getMilliseconds(),3)}function fd(t,e){return function(t,e){return new Array(e+1).join(t)}("0",e-t.toString().length)+t}var pd={Store:Zu,install:ed,version:"3.6.2",mapState:nd,mapMutations:rd,mapGetters:id,mapActions:od,createNamespacedHelpers:function(t){return{mapState:nd.bind(null,t),mapGetters:id.bind(null,t),mapMutations:rd.bind(null,t),mapActions:od.bind(null,t)}},createLogger:function(t){void 0===t&&(t={});var e=t.collapsed;void 0===e&&(e=!0);var n=t.filter;void 0===n&&(n=function(t,e,n){return!0});var r=t.transformer;void 0===r&&(r=function(t){return t});var i=t.mutationTransformer;void 0===i&&(i=function(t){return t});var o=t.actionFilter;void 0===o&&(o=function(t,e){return!0});var s=t.actionTransformer;void 0===s&&(s=function(t){return t});var a=t.logMutations;void 0===a&&(a=!0);var l=t.logActions;void 0===l&&(l=!0);var c=t.logger;return void 0===c&&(c=console),function(t){var u=Bu(t.state);void 0!==c&&(a&&t.subscribe((function(t,o){var s=Bu(o);if(n(t,u,s)){var a=dd(),l=i(t),d="mutation "+t.type+a;cd(c,d,e),c.log("%c prev state","color: #9E9E9E; font-weight: bold",r(u)),c.log("%c mutation","color: #03A9F4; font-weight: bold",l),c.log("%c next state","color: #4CAF50; font-weight: bold",r(s)),ud(c)}u=s})),l&&t.subscribeAction((function(t,n){if(o(t,n)){var r=dd(),i=s(t),a="action "+t.type+r;cd(c,a,e),c.log("%c action","color: #03A9F4; font-weight: bold",i),ud(c)}})))}}},hd=pd,md=n(2378),gd=n.n(md);(function(){function t(){}Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this).length},enumerable:!0,configurable:!0}),t.prototype.key=function(t){return Object.keys(this)[t]},t.prototype.setItem=function(t,e){this[t]=e.toString()},t.prototype.getItem=function(t){return this[t]},t.prototype.removeItem=function(t){delete this[t]},t.prototype.clear=function(){for(var t=0,e=Object.keys(this);t<e.length;t++){delete this[e[t]]}}})();var vd=function(){function t(){this._queue=[],this._flushing=!1}return t.prototype.enqueue=function(t){return this._queue.push(t),this._flushing?Promise.resolve():this.flushQueue()},t.prototype.flushQueue=function(){var t=this;this._flushing=!0;var e=function(){var n=t._queue.shift();if(n)return n.then(e);t._flushing=!1};return Promise.resolve(e())},t}();function wd(t,e){return gd()({},t,e)}var yd=JSON,bd=function(t){var e=this;this._mutex=new vd,this.subscriber=function(t){return function(e){return t.subscribe(e)}},void 0===t&&(t={}),this.key=null!=t.key?t.key:"vuex",this.subscribed=!1,this.supportCircular=t.supportCircular||!1,this.supportCircular&&(yd=n(7953)),this.storage=t.storage||window.localStorage,this.reducer=null!=t.reducer?t.reducer:null==t.modules?function(t){return t}:function(e){return t.modules.reduce((function(t,n){var r;return wd(t,((r={})[n]=e[n],r))}),{})},this.filter=t.filter||function(t){return!0},this.strictMode=t.strictMode||!1,this.RESTORE_MUTATION=function(t,e){for(var n=wd(t,e||{}),r=0,i=Object.keys(n);r<i.length;r++){var o=i[r];this._vm.$set(t,o,n[o])}},this.asyncStorage=t.asyncStorage||!1;var r=this.storage&&this.storage._config;this.asyncStorage=this.asyncStorage||"localforage"===(r&&r.name),this.asyncStorage?(this.restoreState=null!=t.restoreState?t.restoreState:function(t,n){return n.getItem(t).then((function(t){return"string"==typeof t?e.supportCircular?yd.parse(t||"{}"):JSON.parse(t||"{}"):t||{}}))},this.saveState=null!=t.saveState?t.saveState:function(t,n,r){return r.setItem(t,"localforage"===(r&&r._config&&r._config.name)?wd({},n||{}):e.supportCircular?yd.stringify(n):JSON.stringify(n))},this.plugin=function(t){e.restoreState(e.key,e.storage).then((function(n){e.strictMode?t.commit("RESTORE_MUTATION",n):t.replaceState(wd(t.state,n||{})),e.subscriber(t)((function(t,n){e.filter(t)&&e._mutex.enqueue(e.saveState(e.key,e.reducer(n),e.storage))})),e.subscribed=!0}))}):(this.restoreState=null!=t.restoreState?t.restoreState:function(t,n){var r=n.getItem(t);return"string"==typeof r?e.supportCircular?yd.parse(r||"{}"):JSON.parse(r||"{}"):r||{}},this.saveState=null!=t.saveState?t.saveState:function(t,n,r){return r.setItem(t,e.supportCircular?yd.stringify(n):JSON.stringify(n))},this.plugin=function(t){var n=e.restoreState(e.key,e.storage);e.strictMode?t.commit("RESTORE_MUTATION",n):t.replaceState(wd(t.state,n||{})),e.subscriber(t)((function(t,n){e.filter(t)&&e.saveState(e.key,e.reducer(n),e.storage)})),e.subscribed=!0})},_d=bd,xd=(n(4266),n(129)),kd=n.n(xd);const Sd={getCurrent:(t,e)=>{if(!t.all.length)return{title:"",theme:"",id:"",settings:{},slides:{}};const n=t.all.find((e=>e.id===t.currentId));return n||{title:"",theme:"",id:"",settings:{},slides:{}}}},Cd={getSingleSlideshow(t,e){let{commit:n}=t;Md.single(e).then((t=>{let{data:e}=t;n("addSlideshows",e.data)})).catch((t=>{window.metaslider.app.MetaSlider.notifyError("metaslider/fetching-single-slideshows-error",t,!0)}))},getRecentSlideshows(t){let{commit:e}=t;Md.all(1).then((t=>{let{data:n}=t;n.data.hasOwnProperty("remaining_pages")&&(e("updateRemainingPagesCount",n.data.remaining_pages),delete n.data.remaining_pages,delete n.data.page),n.data.hasOwnProperty("totalSlideshows")&&(e("setTotalSlideshows",n.data.totalSlideshows),delete n.data.totalSlideshows),e("addSlideshows",n.data)})).catch((t=>{window.metaslider.app.MetaSlider.notifyError("metaslider/fetching-recent-slideshows-error",t,!0)}))},getAllSlideshows(t){let{commit:e}=t;return Od(1,e).catch((t=>{window.metaslider.app.MetaSlider.notifyError("metaslider/fetching-all-slideshows-error",t,!0)}))}},Od=(t,e)=>(e("setFetchingAll",!0),new Promise((n=>{Md.all(t,200).then((t=>{let{data:r}=t,i=!1;r.data.hasOwnProperty("remaining_pages")?(i=r.data.page+1,e("updateRemainingPagesCount",r.data.remaining_pages),delete r.data.remaining_pages,delete r.data.page):e("updateRemainingPagesCount",0),r.data.hasOwnProperty("totalSlideshows")&&(e("setTotalSlideshows",r.data.totalSlideshows),delete r.data.totalSlideshows),e("addSlideshows",r.data);let o,s,a={};Object.keys(r.data).forEach((t=>{s=r.data[t];for(let t=0;t<s.slides.length;t++)o=s.slides[t],a[o.id]={id:o.id,thumbnail:o.thumbnail,meta:o.meta}})),e("addSlides",a),setTimeout((()=>{!i&&e("setFetchingAll",!1),n(i?Od(i,e):r)}),2e3)}))}))),Td={setCurrent(t,e){t.currentId=e},setTotalSlideshows(t,e){t.totalSlideshows=e},updateRemainingPagesCount(t,e){t.remainingPages=e},addSlideshows(t,e){e&&Object.keys(e).forEach((n=>{const r=t.all.findIndex((t=>t.id===e[n].id));if(r>-1)JSON.stringify(t.all[r])!==JSON.stringify(e[n])&&(Object.assign(t.all[r],e[n]),console.log("MetaSlider:","Updated slideshow id #"+e[n].id+" in local storage."));else if(t.all.push(e[n]),window.location.href.indexOf("metaslider_add_sample_slides")>-1){var i=new URLSearchParams(window.location.search).get("metaslider_add_sample_slides");document.getElementById("loading-add-sample-slides-notice").style.display="flex",metaslider.quickstart_slugs.includes(i)?Xc.post("import/others",kd().stringify({action:"ms_import_others",slideshow_id:e[n].id,slug:i})).then((t=>{window.location.href=window.location.href.replace("metaslider_add_sample_slides","metaslider_add_sample_slides_after")})).catch((t=>{console.log(t)})):Xc.post("import/images",kd().stringify({action:"ms_import_images",slideshow_id:e[n].id})).then((t=>{window.location.href=window.location.href.replace("metaslider_add_sample_slides","metaslider_add_sample_slides_after")})).catch((t=>{console.log(t)}))}}))},updateTheme(t,e){const n=t.all.findIndex((e=>e.id===t.currentId));t.all[n].theme=e},updateTitle(t,e){const n=t.all.findIndex((e=>e.id===t.currentId));t.all[n].title=e},setLocked(t,e){t.locked=e},setFetchingAll(t,e){t.fetchingAll=e}};var Ed={namespaced:!0,state:{all:[],slides:{},locked:!1,remainingPages:1,totalSlideshows:0,fetchingAll:!1,currentId:null},getters:Sd,actions:Cd,mutations:Td};const jd=new _d({key:"metaslider-vuex-"+window.metaslider_api.site_id,reducer:t=>({slideshows:{all:t.slideshows.all}})});rr.use(hd);var Ad=new hd.Store({modules:{slideshows:Ed},strict:false,plugins:[jd.plugin]});const Pd={all(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:25;return Xc.get("slideshow/all",{params:{action:"ms_get_slideshows",page:t,count:e}})},single(t){return Xc.get("slideshow/single",{params:{action:"ms_get_single_slideshow",id:t}})},search(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:50;return Xc.get("slideshow/search",{params:{action:"ms_search_slideshows",term:t,count:e}})},legacy(){return Xc.get("slideshow/legacy",{params:{action:"ms_get_legacy_slideshows"}})},save(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;const n=new FormData;let r=0;n.append("slideshow_id",Ad.getters["slideshows/getCurrent"].id),n.append("action","ms_save_slideshow");for(let i=0;i<e;i++)t[i]&&(t[i].forEach((t=>{n.append(t.name,t.value)})),r++,delete t[i]);return t=t.filter((t=>t)),n.append("count",r),Xc.post("slideshow/save",n,{headers:{"Content-Type":"multipart/form-data"}}).then((e=>t.length?t:e.data))},duplicate(){let t=new FormData;return t.append("slideshow_id",Ad.getters["slideshows/getCurrent"].id),t.append("action","ms_duplicate_slideshow"),Xc.post("slideshow/duplicate",t,{headers:{"Content-Type":"multipart/form-data"}})},export(t){return Xc.get("slideshow/export",{responseType:"blob",params:{action:"ms_export_slideshows",slideshow_ids:JSON.stringify(t)}})},import(t){let e=new FormData;return e.append("slideshows",t),e.append("action","ms_import_slideshows"),Xc.post("slideshow/import",e,{headers:{"Content-Type":"multipart/form-data"}})}};var Md=Pd;const Id={save(t){let e=new FormData;return e.append("slideshow_id",Ad.getters["slideshows/getCurrent"].id),e.append("action","ms_update_all_slideshow_settings"),t.forEach((t=>{e.append(t.name,t.value)})),Xc.post("settings/slideshow/save",e,{headers:{"Content-Type":"multipart/form-data"}})},saveSingleSlideshowSetting(t,e){let n=new FormData;return n.append("slideshow_id",Ad.getters["slideshows/getCurrent"].id),n.append("setting_key",t),n.append("setting_value",e),n.append("action","ms_update_single_slideshow_setting"),Xc.post("settings/slideshow/save-single",n,{headers:{"Content-Type":"multipart/form-data"}})},saveUserSetting(t,e){let n=new FormData;return n.append("setting_key",t),n.append("setting_value",e),n.append("action","ms_update_user_setting"),Xc.post("settings/user/save",n,{headers:{"Content-Type":"multipart/form-data"}})},getUserSetting(t){return Xc.get("settings/user/",{params:{action:"ms_get_user_details",setting:t}})},get(t){return Xc.get("settings/single",{params:{action:"ms_get_single_setting",setting:t}})},getSlideshowDefaults(){return Xc.get("settings/slideshow/defaults",{params:{action:"ms_get_default_slideshow_settings"}})},saveSlideshowDefaults(t){let e=new FormData;return e.append("action","ms_update_slideshow_default_settings"),e.append("settings",t),Xc.post("settings/slideshow/defaults/save",e,{headers:{"Content-Type":"multipart/form-data"}})},getGlobalSettings(){return Xc.get("settings/global",{params:{action:"ms_get_default_slideshow_settings"}})},getProSettings(){return Xc.get("settings/pro",{params:{action:"ms_get_pro_settings"}})},saveGlobalSettings(t){let e=new FormData;return e.append("action","ms_update_global_settings"),e.append("settings",t),Xc.post("settings/global/save",e,{headers:{"Content-Type":"multipart/form-data"}})},saveGlobalSettingsSingle(t,e){let n=new FormData;return n.append("action","ms_update_global_settings_single"),n.append("setting_key",t),n.append("setting_value",e),Xc.post("settings/global/single/save",n,{headers:{"Content-Type":"multipart/form-data"}})},saveProSettings(t){let e=new FormData;return e.append("action","ms_update_pro_settings"),e.append("settings",t),Xc.post("settings/pro/save",e,{headers:{"Content-Type":"multipart/form-data"}})}};var Ld=Id;var $d={findIdFromFilename(t){let e=new FormData;return e.append("filenames",t),e.append("action","ms_get_image_ids_from_filenames"),Xc.post("images/ids-from-filenames",e,{headers:{"Content-Type":"multipart/form-data"}})}};function Dd(t,e,n,r,i,o,s,a){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),s?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},c._ssrRegister=l):i&&(l=a?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(t,e){return l.call(e),u(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,l):[l]}return{exports:t,options:c}}var Nd=Dd({filename:"CSSManagerNotice",created(){this.$parent.classes="w-full max-w-6xl"},mounted(){this.notifyInfo("metaslider/add-slide-css-manager-notice-opened",this.__("CSS Manager notice opened","ml-slider"))},beforeDestroy(){this.notifyInfo("metaslider/add-slide-css-manager-notice-closed",this.__("CSS Manager notice closed","ml-slider"))}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"css-manager-ad-container flex flex-col-reverse lg:flex-row"},[e("div",{staticClass:"lg:w-1/2"},[e("img",{staticClass:"block",attrs:{alt:t.__("CSS manager module","ml-silder"),src:t.asset("images/css-manager.gif")}})]),t._v(" "),e("div",{staticClass:"p-8 lg:w-1/2"},[e("h1",[t._v(t._s(t.__("CSS Manager","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("Easily add custom CSS to your slideshows to create the perfect design for your sites.","ml-slider")))]),t._v(" "),e("ul",[e("li",{staticClass:"mb-1"},[e("svg",{staticClass:"inline text-orange w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z","clip-rule":"evenodd"}})]),t._v("\n                    "+t._s(t.__("Built-in text editor full of features.","ml-slider"))+"\n                ")]),t._v(" "),e("li",{staticClass:"mb-1"},[e("svg",{staticClass:"inline text-orange w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z","clip-rule":"evenodd"}})]),t._v("\n                    "+t._s(t.__("Loads only on the front-end where needed.","ml-slider"))+"\n                ")]),t._v(" "),e("li",{staticClass:"mb-1"},[e("svg",{staticClass:"inline text-orange w-5",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z","clip-rule":"evenodd"}})]),t._v("\n                    "+t._s(t.__("Includes recipes to solve common scenarios.","ml-slider"))+"\n                ")])]),t._v(" "),e("a",{staticClass:"probutton button button-primary button-hero",attrs:{href:t.hoplink,target:"_blank"}},[t._v(t._s(t.__("Find out more about MetaSlider Pro","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external"})])])])}),[],!1,null,null,null).exports;function Fd(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Bd(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Rd={data(){return{optinEmail:""}},filename:"AnalyticsNotice",created(){this.$parent.classes="w-full max-w-lg rounded-lg",this.$parent.forceOpen=()=>{this.opt("no"),this.$parent.forceOpen=!1},Ld.getUserSetting().then((t=>{let{data:e}=t;this.optinEmail=e.data})),Ld.saveUserSetting("analytics_onboarding_status","no")},mounted(){this.notifyInfo("metaslider/add-slide-css-manager-notice-opened",this.__("Analytics notice opened","ml-slider"))},beforeDestroy(){this.notifyInfo("metaslider/add-slide-css-manager-notice-closed",this.__("Analytics notice closed","ml-slider"))},methods:{modalPrivacyPolicy(){return this.sprintf(this.__("We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.","ml-slider"),'<a target="_blank" class="underline" href="https://www.metaslider.com/privacy-policy">'+this.__("privacy policy","ml-slider")+"</a>","ml-slider")},async opt(t){this.$parent.forceOpen=!1,this.$parent.close(),await Ld.saveUserSetting("analytics_onboarding_status",t),"yes"===t&&(await Ld.saveGlobalSettingsSingle("optin_via","modal"),await Ld.saveGlobalSettingsSingle("optin_email",this.optinEmail),Ld.getGlobalSettings().then((t=>{let{data:e}=t;const n=e.data;n.optIn=!0,Ld.saveGlobalSettings(JSON.stringify(function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Fd(Object(n),!0).forEach((function(e){Bd(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Fd(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},n)))}))),Qc.$emit("metaslider/start-tour")}}},zd=Dd(Rd,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"rounded-md"},[e("div",{staticClass:"text-center"},[e("h3",{staticClass:"m-0 p-3 text-lg leading-6 font-medium text-white bg-orange rounded-top"},[t._v("\n            "+t._s(t.__("Thanks for using MetaSlider","ml-slider"))+"\n        ")]),t._v(" "),e("div",{staticClass:"p-5"},[e("p",{staticClass:"text-lg leading-5 text-gray-darker mb-0"},[t._v(" "+t._s(t.__("We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?","ml-slider"))+" ")])]),t._v(" "),e("div",{staticClass:"relative rounded-md shadow-sm px-5"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.optinEmail,expression:"optinEmail"}],staticClass:"form-input block w-full md:text-sm md:leading-5",attrs:{type:"email"},domProps:{value:t.optinEmail},on:{input:function(e){e.target.composing||(t.optinEmail=e.target.value)}}})]),t._v(" "),e("p",{staticClass:"p-3 mt-0 max-w-xl text-sm leading-5 text-gray-dark",domProps:{innerHTML:t._s(t.modalPrivacyPolicy())}})]),t._v(" "),e("div",{staticClass:"mt-6 sm:grid sm:gap-3 sm:grid-flow-row-dense px-4 pb-5"},[e("span",{staticClass:"flex w-full rounded-md shadow-sm sm:col-start-2"},[e("button",{staticClass:"inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-base leading-6 font-medium text-white shadow-sm bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 sm:text-sm sm:leading-5",attrs:{type:"button"},on:{click:function(e){return t.opt("yes")}}},[t._v("\n                "+t._s(t.__("Agree and continue","ml-slider"))+"\n            ")])]),t._v(" "),e("span",{staticClass:"mt-3 flex w-full rounded-md sm:mt-0 sm:col-start-1"},[e("button",{staticClass:"inline-flex justify-center w-full rounded-md border border-transparent px-4 py-2 text-base leading-6 font-medium text-black shadow-sm bg-gray hover:text-white hover:bg-gray-darker active:bg-gray-darkest transition ease-in-out duration-150 sm:text-sm sm:leading-5",attrs:{type:"button"},on:{click:function(e){return t.opt("no")}}},[t._v("\n                "+t._s(t.__("No thanks","ml-slider"))+"\n            ")])])])])}),[],!1,null,null,null).exports,Ud=n(6455),Vd=n.n(Ud),Hd=n(6240);const qd=new(n.n(Hd)().Tour);qd.options.defaults={classes:"shepherd-theme-arrows metaslider-tour",showCancelLink:!0},qd.addStep("add-slide",{title:Pu("Add a slide","ml-slider"),text:Pu('Thanks for using MetaSlider. To get started, click the "Add Slide" button to create your first slide.',"ml-slider"),attachTo:{element:"#add-new-slide",on:"bottom"},buttons:[]}),qd.addStep("add-image",{title:Pu("Select images","ml-slider"),text:Pu("You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.","ml-slider"),attachTo:{element:".media-frame-router",on:"bottom left"},tetherOptions:{targetAttachment:"bottom left",attachment:"top center",offset:"0 -140px"},buttons:[{text:Pu("Next step","ml-slider"),action:function(){qd.show("create-slide")}}]}),qd.addStep("search-unsplash",{title:Pu("Search unsplash","ml-slider"),text:Pu("Choose an image from the left, or search for any topic here to bring up more images.","ml-slider"),attachTo:{element:"#search-unsplash",on:"bottom"},tetherOptions:{attachment:"top center"},buttons:[{text:Pu("Hide step","ml-slider"),action:function(){qd.show("create-slide")}}]}),qd.addStep("create-slide",{title:Pu("Create your slide","ml-slider"),text:Pu("After you have selected an image, press here to create your slide.","ml-slider"),attachTo:{element:".media-modal.wp-core-ui",on:"bottom"},tetherOptions:{targetAttachment:"bottom right",attachment:"bottom right",offset:"70px 90px"},buttons:[]}),qd.addStep("preview",{title:Pu("Preview Slideshow","ml-slider"),text:Pu("Now that you have some slides set, you can preview your slideshow by pressing here.","ml-slider"),attachTo:{element:"#preview-slideshow",on:"bottom"},tetherOptions:{attachment:"top right",offset:"0 -90px"},buttons:[]}),qd.setPosition=()=>Xc.post("tour/status",{action:"set_tour_status",current_step:qd.getCurrentStep().id}),Qc.$on("metaslider/add-slide-opening-ui",(function(){this.$nextTick((()=>{this.tourEnabled&&qd.show("add-image")}))})),Qc.$on("metaslider/unsplash-tab-opened",(function(){this.$nextTick((()=>{this.tourEnabled&&"add-image"===qd.getCurrentStep().id&&qd.show("search-unsplash")}))})),Qc.$on("metaslider/unsplash-tab-closed",(function(){this.$nextTick((()=>{this.tourEnabled&&qd.show("create-slide")}))})),Qc.$on("metaslider/unsplash-search-focused",(function(){this.$nextTick((()=>{this.tourEnabled&&qd.show("create-slide")}))})),Qc.$on("metaslider/add-slide-closing-ui",(function(){this.$nextTick((()=>{this.tourEnabled&&qd.show("preview")}))})),Qc.$on("metaslider/preview-loaded",(function(){this.tourEnabled&&qd.setPosition(),this.tourEnabled&&qd.hide()}));var Wd=qd;function Zd(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Yd(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Zd(Object(n),!0).forEach((function(e){Gd(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Zd(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function Gd(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Jd={props:{id:{type:[Number],default:null},settings:{type:[Object,Boolean],default:!1},tourStatus:{type:[String,Boolean],default:!1},showOptIn:{type:[String,Boolean],default:!1}},data(){return{allowedElements:["metaslider-ui","updraft-ad-container","metaslider-admin-notice"],titleChanged:""}},computed:Yd(Yd({},id({current:"slideshows/getCurrent"})),nd({locked:t=>t.slideshows.locked})),created(){window.metaslider_slider_id=this.id,this.$store.commit("slideshows/setCurrent",this.id),this.$store.dispatch("slideshows/getSingleSlideshow",this.id),this.$store.dispatch("slideshows/getRecentSlideshows")},mounted(){document.querySelectorAll("#wpbody-content > *").forEach((t=>{let e=t.className.split(" ").concat(t.id);e&&this.allowedElements.filter((t=>e.indexOf(t)>-1)).length&&(t.style.display="block")})),Qc.$on("metaslider/save",(()=>{this.save()})),Qc.$on("metaslider/preview",(t=>{let e=t&&t.hasOwnProperty("slideshowId")?t.slideshowId:this.current.id,n=t&&t.hasOwnProperty("themeId")?t.themeId:this.current.theme.folder;this.save().then((()=>{this.preview(e,n)}))})),Qc.$on(["metaslider/creating-slides","metaslider/updating-slide"],(()=>{this.$store.commit("slideshows/setLocked",!0)})),Qc.$on(["metaslider/slides-created","metaslider/slide-create-failed","metaslider/slide-updated","metaslider/slide-update-failed","metaslider/slide-duplicated","metaslider/slide-duplicate-failed"],(()=>{this.$store.commit("slideshows/setLocked",!1)})),Qc.$on("metaslider/duplicate",(()=>{this.save().then((()=>{this.notifyInfo("metaslider/duplicate-pre",this.__("Duplicating...","ml-slider"),!0),this.duplicate()}))})),Qc.$on(["metaslider/save-success","metaslider/save-error"],(()=>{this.$store.commit("slideshows/setLocked",!1)})),Qc.$on("metaslider/start-tour",(()=>{!this.tourStatus&&this.id&&this.startTour()})),Qc.$on("metaslider/cant-edit-trashed-slide",(()=>{this.notifyError("metaslider/slide-edit-failed",this.__('To edit this slide, click "Restore" and then "Return to Published Slides"',"ml-slider"),!0)})),this.showOptIn||Qc.$emit("metaslider/start-tour"),this.showOptIn&&Qc.$emit("metaslider/open-utility-modal",zd),window.addEventListener("load",(()=>{setTimeout((()=>{this.notifyInfo("metaslider/app-loaded",this.__("MetaSlider dashboard loaded","ml-slider"))}),1500)})),this.titleChanged=this.current.title},methods:{async save(){if(""==this.current.title)this.notifyError("metaslider/title-saved",this.__("Please add a slideshow title"),!0);else{if(this.locked)return;this.$store.commit("slideshows/setLocked",!0),this.notifyInfo("metaslider/saving",this.__("Saving...","ml-slider")),this.orderSlides();let t=window.jQuery("#ms-form-settings").serializeArray();await this.saveSettings(t).then((()=>{let e=this.prepareSlideData(t);return e.length>20&&this.notifyInfo("metaslider/saving-more-notice",this.sprintf(this.__("Saving %s slides. This may take a few moments.","ml-slider"),e.length),!0),this.showSlideSaveNotification=!1,setTimeout((()=>{this.showSlideSaveNotification=!0}),4e3),this.saveSlides(e).then((()=>{this.cropSlidesTheOldWay(),this.notifySuccess("metaslider/save-success",this.__("Slideshow saved","ml-slider"),!0)})).catch((t=>{throw(t.response.data.data&&t.response.data.data.current_input_vars||t.response.data.includes("max_input_vars"))&&window.location.replace(this.metasliderPage+"&id="+this.current.id+"&input_vars_error=true"),t}))})).catch((t=>{this.notifyError("metaslider/save-error",t.response,!0)}))}},preview(t,e){Qc.$emit("metaslider/open-preview",{slideshowId:t,themeId:e})},async duplicate(t,e){Md.duplicate().then((t=>{this.notifySuccess("metaslider/duplicate-success",this.__("Duplicated successfully. Reloading...","ml-slider"),!0),setTimeout((()=>{localStorage.removeItem("metaslider-vuex-"+this.siteId),window.location.replace(this.metasliderPage+"&id="+t.data.data)}),1500)})).catch((t=>{this.notifyError("metaslider/duplicate-error",t,!0)}))},startTour(){Qc.tourEnabled=!0,setTimeout((()=>{Wd.start()}),750),Wd.on("cancel",(()=>{this.cancelTour()}))},saveSettings(t){let e=t.filter((t=>"title"===t.name||t.name.startsWith("settings")));return Ld.save(e).then((()=>{this.notifySuccess("metaslider/save-setting-success",this.__("Settings saved","ml-slider"))}))},prepareSlideData(t){return[...new Set(t.filter((t=>t.name.startsWith("attachment"))).map((t=>t.name.match(/attachment\[([\s\S]*?)\]/)[1])))].map((e=>t.filter((t=>t.name.startsWith("attachment["+e+"]")))))},saveSlides(t){return new Promise(((e,n)=>{let r=this.proUser?20:50;Md.save(t,r).then((t=>{Array.isArray(t)&&t.length?(this.showSlideSaveNotification&&t.length>=10&&(this.notifyInfo("metaslider/saving-more",this.sprintf(this.__("Still working... %s slides remaining...","ml-slider"),10*Math.floor(t.length/10)),!0),this.showSlideSaveNotification=!1,setTimeout((()=>{this.showSlideSaveNotification=!0}),4e3)),e(this.saveSlides(t))):e(t)})).catch((t=>{n(t)}))}))},orderSlides(){document.querySelectorAll("#metaslider-slides-list .slide input.menu_order").forEach(((t,e)=>{t.value=e}))},cropSlidesTheOldWay(){window.jQuery.when(window.jQuery(".metaslider table#metaslider-slides-list").trigger("resizeSlides")).done((function(){let t=window.jQuery;t("button[data-thumb]").each((function(){let e=t(this);t("button[data-editor_id="+e.attr("data-editor_id")+"]").attr("data-thumb",e.attr("data-thumb")).attr("data-width",e.attr("data-width")).attr("data-height",e.attr("data-height"))}))}))},cancelTour(){Qc.tourEnabled=!1,Wd.setPosition().then((()=>{this.notifySuccess("metaslider/tour-cancelled",this.__("Tour cancelled successfully","ml-slider"),!1)})).catch((()=>{this.notifySuccess("metaslider/tour-cancelled-failed",this.__("Tour cancelled unsuccessfully","ml-slider"),!1)}))},deleteSlideshow(){Vd().queue([{icon:"warning",iconHtml:'<div class="dashicons dashicons-warning" style="transform: scale(3.5);"></div>',title:this.__("Are you sure?","ml-slider"),text:this.__('This slideshow will be moved to the "Trash" area.',"ml-slider"),confirmButtonText:this.__("Confirm","ml-slider"),showCancelButton:!0,confirmButtonColor:"#e82323",focusCancel:!0,showLoaderOnConfirm:!0,allowOutsideClick:()=>!Vd().isLoading(),preConfirm:()=>Xc.post("slideshow/delete",kd().stringify({action:"ms_delete_slideshow",slideshow_id:this.current.id})).then((t=>{console.log("MetaSlider:",t.data.data)})).catch((t=>{let e=this.getErrorMessage(t.response);this.notifyError("metaslider/delete-error",t),Vd().insertQueueStep({icon:"error",title:this.__("Something went wrong","ml-slider"),confirmButtonText:this.__("OK","ml-slider"),text:e})}))}]).then((t=>{localStorage.removeItem("metaslider-vuex-"+this.siteId),t.dismiss||window.location.replace(this.current.id?this.metasliderPage+"&action=delete&slideshows="+this.current.id:this.metasliderPage)}))}}},Kd=Jd,Xd=n(3379),Qd=n.n(Xd),tf=n(7630),ef={insert:"head",singleton:!1},nf=(Qd()(tf.Z,ef),tf.Z.locals,Dd(Kd,undefined,undefined,!1,null,null,null).exports),rf={data(){return{duplicating:!1,scrolling:0}},computed:nd({locked:t=>t.slideshows.locked}),mounted(){const t=function(){window.requestAnimationFrame((()=>{document.getElementById("ms-toolbar").style.top=document.getElementById("wpadminbar").clientHeight+"px"}))};t(),window.addEventListener("resize",t),window.addEventListener("scroll",(()=>{this.scrolling=window.scrollY>0}),{passive:!0})},methods:{save(){Qc.$emit("metaslider/save")},preview(){this.locked||Qc.$emit("metaslider/preview")},duplicate(){this.locked||(this.duplicating=!0,this.notifyInfo("metaslider/duplicate-preparing",this.__("Preparing slideshow for duplication...","ml-slider"),!0),setTimeout((()=>{Qc.$emit("metaslider/duplicate")}),1500))},showCSSManagerNotice(){Qc.$emit("metaslider/open-utility-modal",Nd)},addSlide(){window.create_slides.open()}}},of=Dd(rf,undefined,undefined,!1,null,null,null).exports,sf={name:"SweetModal",props:{title:{type:String,required:!1,default:""},overlayTheme:{type:String,required:!1,default:"light"},modalTheme:{type:String,required:!1,default:"light"},blocking:{type:Boolean,required:!1,default:!1},pulseOnBlock:{type:Boolean,required:!1,default:!0},icon:{type:String,required:!1,default:""},hideCloseButton:{type:Boolean,required:!1,default:!1},enableMobileFullscreen:{type:Boolean,required:!1,default:!0},width:{type:[Number,String],required:!1,default:null}},mounted(){this.tabs=this.$children.filter((t=>t.cmpName&&"tab"==t.cmpName)),this.has_tabs&&(this.currentTab=this._changeTab(this.tabs[0])),document.addEventListener("keyup",this._onDocumentKeyup)},beforeDestroy(){document.removeEventListener("keyup",this._onDocumentKeyup)},data(){return{visible:!1,is_open:!1,is_bouncing:!1,tabs:[],backups:{body:{height:null,overflow:null}}}},computed:{has_title(){return this.title||this.$slots.title},has_tabs(){return this.tabs.length>0},has_content(){return this.$slots.default},current_tab(){return this.tabs.filter((t=>!0===t.active))[0]},overlay_classes(){return["sweet-modal-overlay","theme-"+this.overlayTheme,"sweet-modal-clickable",{"is-visible":this.visible,blocking:this.blocking}]},modal_classes(){return["sweet-modal","theme-"+this.modalTheme,{"has-title":this.has_title,"has-tabs":this.has_tabs,"has-content":this.has_content,"has-icon":this.icon,"is-mobile-fullscreen":this.enableMobileFullscreen,"is-visible":this.visible,"is-alert":this.icon&&!this.has_tabs||!this.icon&&!this.title&&!this.$slots.title,bounce:this.is_bouncing}]},modal_style(){let t=this.width,e=null;return null!==t&&(Number(t)==t&&(t+="px"),e="none"),{width:t,maxWidth:e}}},methods:{open(t=null){if(t&&this.has_tabs){let e=this.tabs.filter((e=>e.id===t));if(e.length>0)this.currentTab=this._changeTab(e[0]);else{let e=this.tabs[t];e&&(this.currentTab=this._changeTab(e))}}this.is_open=!0,this._lockBody(),this._animateIcon(),setTimeout((()=>this.visible=!0),30),this.$emit("open")},close(){this.visible=!1,this._unlockBody(),setTimeout((()=>this.is_open=!1),300),this.$emit("close")},bounce(){this.is_bouncing=!0,setTimeout((()=>this.is_bouncing=!1),330)},_lockBody(){this.backups.body.height=document.body.style.height,this.backups.body.overflow=document.body.style.overflow,document.body.style.height="100%",document.body.style.overflow="hidden"},_unlockBody(){document.body.style.height=this.backups.body.height,document.body.style.overflow=this.backups.body.overflow},_onOverlayClick(t){t.target.classList&&!t.target.classList.contains("sweet-modal-clickable")||(this.blocking?this.pulseOnBlock&&this.bounce():this.close())},_onDocumentKeyup(t){27==t.keyCode&&(this.blocking?this.pulseOnBlock&&this.bounce():this.close())},_changeTab(t){this.tabs.map((e=>e.active=e==t)),this.currentTab=t},_getClassesForTab(t){return["sweet-modal-tab",{active:t.active,disabled:t.disabled}]},_animateIcon(){if(this.icon)switch(this.icon){case"success":setTimeout((()=>{this._applyClasses(this.$refs.icon_success,{"":["animate"],".sweet-modal-tip":["animateSuccessTip"],".sweet-modal-long":["animateSuccessLong"]})}),80);break;case"warning":this._applyClasses(this.$refs.icon_warning,{"":["pulseWarning"],".sweet-modal-body":["pulseWarningIns"],".sweet-modal-dot":["pulseWarningIns"]});break;case"error":setTimeout((()=>{this._applyClasses(this.$refs.icon_error,{"":["animateErrorIcon"],".sweet-modal-x-mark":["animateXMark"]})}),80)}},_applyClasses(t,e){for(let n in e){let r,i=e[n];r=""==n?t:t.querySelector(n),r.classList.remove(...i),r.classList.add(...i)}}}},af=n(1250),lf={insert:"head",singleton:!1},cf=(Qd()(af.Z,lf),af.Z.locals,Dd(sf,(function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"show",rawName:"v-show",value:t.is_open,expression:"is_open"}],class:t.overlay_classes,on:{click:t._onOverlayClick}},[e("div",{class:t.modal_classes,style:t.modal_style},[e("div",{staticClass:"sweet-box-actions"},[t._t("box-action"),t._v(" "),t.hideCloseButton?t._e():e("div",{staticClass:"sweet-action-close",on:{click:t.close}},[e("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z",fill:"#292c34"}})])])],2),t._v(" "),t.has_title||t.has_tabs?e("div",{staticClass:"sweet-title"},[t.has_tabs&&!t.has_title?[e("ul",{staticClass:"sweet-modal-tabs"},t._l(t.tabs,(function(n){return e("li",{class:t._getClassesForTab(n)},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t._changeTab(n)}}},[e("div",{staticClass:"sweet-modal-valign"},[n.icon?e("span",{staticClass:"sweet-modal-tab-icon",domProps:{innerHTML:t._s(n.icon)}}):t._e(),t._v(" "),e("span",{staticClass:"sweet-modal-tab-title"},[t._v(t._s(n.title))])])])])})),0)]:t._e(),t._v(" "),t.has_title?[t.title?e("h2",{domProps:{innerHTML:t._s(t.title)}}):t._e(),t._v(" "),t._t("title")]:t._e()],2):t._e(),t._v(" "),t.has_title&&t.has_tabs?e("ul",{staticClass:"sweet-modal-tabs"},t._l(t.tabs,(function(n){return e("li",{class:t._getClassesForTab(n)},[e("a",{attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t._changeTab(n)}}},[e("div",{staticClass:"sweet-modal-valign"},[n.icon?e("span",{staticClass:"sweet-modal-tab-icon",domProps:{innerHTML:t._s(n.icon)}}):t._e(),t._v(" "),e("span",{staticClass:"sweet-modal-tab-title"},[t._v(t._s(n.title))])])])])})),0):t._e(),t._v(" "),e("div",{ref:"content",staticClass:"sweet-content"},["error"==t.icon?e("div",{ref:"icon_error",staticClass:"sweet-modal-icon sweet-modal-error"},[t._m(0)]):t._e(),t._v(" "),"warning"==t.icon?e("div",{ref:"icon_warning",staticClass:"sweet-modal-icon sweet-modal-warning"},[e("span",{staticClass:"sweet-modal-body"}),t._v(" "),e("span",{staticClass:"sweet-modal-dot"})]):t._e(),t._v(" "),"info"==t.icon?e("div",{ref:"icon_info",staticClass:"sweet-modal-icon sweet-modal-info"}):t._e(),t._v(" "),"success"==t.icon?e("div",{ref:"icon_success",staticClass:"sweet-modal-icon sweet-modal-success"},[e("span",{staticClass:"sweet-modal-line sweet-modal-tip"}),t._v(" "),e("span",{staticClass:"sweet-modal-line sweet-modal-long"}),t._v(" "),e("div",{staticClass:"sweet-modal-placeholder"}),t._v(" "),e("div",{staticClass:"sweet-modal-fix"})]):t._e(),t._v(" "),t.$slots.default?e("div",{staticClass:"sweet-content-content"},[t._t("default")],2):t._e()]),t._v(" "),t.$slots.button?e("div",{staticClass:"sweet-buttons"},[t._t("button")],2):t._e()])])}),[function(){var t=this._self._c;return t("span",{staticClass:"sweet-modal-x-mark"},[t("span",{staticClass:"sweet-modal-line sweet-modal-left"}),this._v(" "),t("span",{staticClass:"sweet-modal-line sweet-modal-right"})])}],!1,null,null,null).exports),uf=Dd({props:{title:{type:String,required:!0},id:{type:String,required:!0},icon:{type:String,required:!1,default:null},disabled:{type:Boolean,required:!1,default:!1}},data(){return{active:!1}},computed:{cmpName(){return"tab"}}},(function(){var t=this;return(0,t._self._c)("div",{class:["sweet-modal-tab",{active:t.active}]},[t._t("default")],2)}),[],!1,null,null,null).exports,df={install(t,e){t.component("SweetModal",cf),t.component("SweetModalTab",uf)}},ff=n(3523),pf={insert:"head",singleton:!1};Qd()(ff.Z,pf),ff.Z.locals;function hf(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function mf(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}rr.mixin({computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?hf(Object(n),!0).forEach((function(e){mf(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):hf(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},id({current:"slideshows/getCurrent"})),created(){this.__=Pu,this._x=Mu,this._n=Iu,this._nx=Lu,this.sprintf=su,Au(window.metaslider_api.locale,"ml-slider"),this.siteId=window.metaslider_api.site_id,this.proUser=window.metaslider_api.proUser,this.hoplink=window.metaslider_api.hoplink,this.privacyLink=window.metaslider_api.privacy_link,this.themeEditorLink=window.metaslider_api.theme_editor_link,this.metasliderPage=window.metaslider_api.metaslider_page,this.production=!0,this.isIE11=!!window.MSInputMethodContext&&!!document.documentMode,this.notify=Vd().mixin({toast:!0,position:"bottom-start",showConfirmButton:!1,timer:6e3,onOpen:t=>{t.addEventListener("mouseenter",Vd().stopTimer),t.addEventListener("mouseleave",Vd().resumeTimer)},onClose:t=>{t.removeEventListener("mouseenter",Vd().stopTimer),t.removeEventListener("mouseleave",Vd().resumeTimer)},onBeforeOpen:t=>{let e="rtl"===document.dir?"right":"left";t.parentElement.style[e]=document.getElementById("adminmenu").offsetWidth+"px"}}),window.onerror=(t,e,n,r,i)=>{console.log("message",t);let o="";try{o=e.split("/").pop().split("#")[0].split("?")[0]}catch(i){}this.notifyError("window/global-js-error",(t.length>100?t.substring(0,100)+"...":t)+(o.length?` (${o})`:""),!1)},rr.config.errorHandler=function(t,e,n){e.notifyError(`vue/${n}-error`,t,!1)}},methods:{asset(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return window.metaslider_api.metaslider_admin_assets+t.replace(/^\/+/,"")},notifyInfo(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.log("MetaSlider:",e),Qc.$emit(t,e),n&&this.notify.fire({icon:"info",iconHtml:'<div class="dashicons dashicons-megaphone" style="transform: scale(2.5);"></div>',title:"string"==typeof e?e:this.__("Doing something...","ml-slider")})},notifyWarning(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.warn("MetaSlider:",e),Qc.$emit(t,e),n&&this.notify.fire({icon:"warning",title:"string"==typeof e?e:this.__("No error message provided.","ml-slider"),iconHtml:'<div class="dashicons dashicons-warning" style="transform: scale(2);"></div>'})},notifySuccess(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.log("MetaSlider:",e),Qc.$emit(t,e),n&&this.notify.fire({icon:"success",title:"string"==typeof e?e:this.__("Success","ml-slider"),iconHtml:'<div class="dashicons dashicons-yes" style="transform: scale(3);"></div>'})},notifyError(t,e){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];console.error(`MetaSlider (${t.replace("metaslider/","")}):`,e),e||(e=this.__("Undefined error occurred","ml-slider")),!e.hasOwnProperty("response")&&e.hasOwnProperty("message")&&(e=e.message),"string"==typeof e&&n&&this.notify.fire({showConfirmButton:!0,timer:null,icon:"error",iconHtml:'<div class="dashicons dashicons-no" style="transform: scale(3);"></div>',title:e}),e.hasOwnProperty("responseJSON")&&(e.response=e.responseJSON),e.hasOwnProperty("status")&&(e.response=e),e.hasOwnProperty("response")&&(Qc.$emit(t,e.response),console.error("MetaSlider:",this.getErrorMessage(e.response)),n&&this.notify.fire({showConfirmButton:!0,timer:null,icon:"error",iconHtml:'<div class="dashicons dashicons-no" style="transform: scale(3);"></div>',title:this.getErrorMessage(e.response)}))},getErrorMessage(t){try{if("string"==typeof t)return t;if(t.hasOwnProperty("message"))return t.message;if(!t.hasOwnProperty("data"))return t.statusText+" ("+t.status+")";if(t.data.hasOwnProperty("message"))return t.data.message;if(!t.data.hasOwnProperty("data"))return t.statusText+" ("+t.status+")";if(t.data.data.hasOwnProperty("message"))return t.data.data.message;if(t.statusText)return t.statusText+" ("+t.status+")"}catch(e){console.error("Error handling failed:",t,e)}return this.__("No error message reported.","ml-slider")},triggerEvent(t,e){Qc.$emit(t,e)},currentSlideshowId(){return this.current.id}}}),rr.use(df);let gf={computed:{modal_style(){return{"max-width":this.$parent.slideshow?this.$parent.slideshow.width:"90%","max-height":this.$parent.slideshow?this.$parent.slideshow.height:"90%"}}}},vf=rr.options.components.SweetModal.options;rr.options.components.SweetModal.options=rr.util.mergeOptions(vf,gf);rr.use(df);function wf(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function yf(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var bf={props:{themeDirectoryUrl:{type:[String],default:""}},data(){return{loading:!0,loadingCustom:!0,unsupportedSliderType:!1,themes:{},customThemes:{},selectedTheme:{},hoveredTheme:{},is_open:!1,revealThemeAd:null}},watch:{currentThemeSupports(){this.updateSupportedStatus()},current:{immediate:!0,handler:function(t){this.current&&this.current.theme&&"none"!==this.current.theme?(this.selectedTheme=this.current.theme,this.hoveredTheme=this.current.theme):this.selectedTheme=this.hoveredTheme=this.themeStub()}}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?wf(Object(n),!0).forEach((function(e){yf(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):wf(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({showThemeDetails(){return this.hoveredTheme.description||this.selectedTheme.description&&!this.isCustomTheme},isCustomTheme(){return!!this.selectedTheme&&(!(!this.selectedTheme||!this.selectedTheme.folder)&&this.selectedTheme.folder.startsWith("_theme"))},sliderTypeNotSupported(){if(!this.hovererdTheme||!this.hoveredTheme.tags)return!1;let t=document.querySelector('input[name="settings[type]"]:checked');return!!t&&-1===parseInt(this.hoveredTheme.supports.indexOf(t.value),10)},supportLink(){return this.proUser?"https://www.metaslider.com/support/":"https://wordpress.org/support/plugin/ml-slider"},currentThemeSupports(){if(this.current.id)return this.current.theme?this.current.theme.supports:void 0},hasThemeSet(){return!(!this.current.id||!this.current.hasOwnProperty("theme"))&&(this.current.theme.hasOwnProperty("folder")&&this.current.theme.folder.length)}},id({current:"slideshows/getCurrent"})),created(){},mounted(){this.fetchThemes(),document.querySelectorAll('input[name="settings[type]"]').forEach((t=>{t.addEventListener("click",(t=>{this.updateSupportedStatus(),this.hoveredTheme={},this.hoveredTheme=this.selectedTheme||this.current.theme}))})),this.updateSupportedStatus()},methods:{fetchThemes(){Xc.get("themes/all",{params:{action:"ms_get_all_free_themes"}}).then((t=>{this.themes=t.data.data,this.loading=!1})).catch((t=>{this.loading=!1,this.notifyError("metaslider/theme-error",t,!0)})),this.loadingCustom=this.proUser,this.proUser&&Xc.get("themes/custom",{params:{action:"ms_get_custom_themes"}}).then((t=>{this.customThemes="object"==typeof t.data.data?t.data.data:{},this.loadingCustom=!1})).catch((t=>{this.loadingCustom=!1,this.notifyError("metaslider/theme-error",t,!0)}))},selectTheme(t){this.selectedTheme=this.selectedTheme===t?{}:t},removeTheme(){this.selectedTheme={},this.setTheme()},setTheme(){this.notifyInfo("metaslider/theme-updating",this.__("Saving theme...","ml-slider")),this.$refs.themesModal.close(),Object.keys(this.selectedTheme).length&&Object.is(this.selectedTheme.folder,this.current.theme.folder)?this.notifySuccess("metaslider/theme-updated",this.__("Theme saved","ml-slider"),!0):(this.$store.commit("slideshows/updateTheme",this.selectedTheme),Xc.post("themes/set",kd().stringify({action:"ms_set_theme",slideshow_id:this.current.id,theme:this.selectedTheme})).then((t=>{this.notifySuccess("metaslider/theme-updated",this.__("Theme saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/theme-error",t,!0)})))},openModal(){this.hoveredTheme=this.selectedTheme||this.current.theme;this.is_open=!0,this.$refs.themesModal.open("all")},openPreview(){Qc.$emit("metaslider/preview",{slideshowId:this.current.id,themeId:this.selectedTheme?this.selectedTheme.folder:""})},updateSupportedStatus(){if(!this.current.id||void 0===this.currentThemeSupports)return!0;let t=document.querySelector('input[name="settings[type]"]:checked');this.unsupportedSliderType=!!this.currentThemeSupports&&-1===this.currentThemeSupports.indexOf(t.value)},themeStub(){return{description:null,folder:null,images:[],supports:[],tags:[],title:null,type:null}},showPremiumThemeAd(t,e){this.nonSelectablePremiumTheme(t)&&(this.revealThemeAd=e)},hidePremiumThemeAd(t){this.nonSelectablePremiumTheme(t)&&(this.revealThemeAd=null)},nonSelectablePremiumTheme(t){return!this.proUser&&"premium"===t}}},_f=bf,xf=n(2339),kf={insert:"head",singleton:!1},Sf=(Qd()(xf.Z,kf),xf.Z.locals,Dd(_f,(function(){var t=this,e=t._self._c;return t.current.id?e("section",{staticClass:"theme-select-module",class:{unsupported:t.unsupportedSliderType}},[t.hasThemeSet?e("p",[t._v("\n\t\t\t"+t._s(t.__("Slideshow Theme","ml-slider"))),e("span",[t._v(": "+t._s(t.current.theme.title))])]):t._e(),t._v(" "),e("div",{staticClass:"inside wp-clearfix metaslider-theme-viewer",class:{"ms-modal-open":t.is_open}},[t.hasThemeSet&&t.unsupportedSliderType?e("p",{staticClass:"slider-not-supported-warning"},[e("svg",{staticClass:"inline w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"}})]),t._v("\n\t\t\t\t"+t._s(t.__("This theme is not officially supported by the slider you chose. Your results might vary.","ml-slider"))+"\n\t\t\t")]):t._e(),t._v(" "),t.hasThemeSet?e("div",{staticClass:"ms-current-theme"},[e("button",{staticClass:"button-link change-theme-img-button",staticStyle:{width:"100%","text-decoration":"none"},attrs:{type:"button"},on:{click:t.openModal}},["custom"==t.current.theme.type?e("div",{staticClass:"custom-theme-single"},[e("span",{staticClass:"custom-subtitle"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Custom theme","ml-slider"))+"\n\t\t\t\t\t\t")]),t._v("\n\t\t\t\t\t\t"+t._s(t.current.theme.title)+"\n\t\t\t\t\t")]):e("div",[t.current.theme.screenshot_dir?e("img",{attrs:{src:t.current.theme.screenshot_dir+"/screenshot.png",alt:t.current.theme.title}}):e("img",{attrs:{src:t.themeDirectoryUrl+t.current.theme.folder+"/screenshot.png",alt:t.current.theme.title}})])]),t._v(" "),e("button",{staticClass:"button-link remove-theme",attrs:{type:"button"},on:{click:t.removeTheme}},[t._v(t._s(t.__("Remove","ml-slider"))+"\n\t\t\t\t")]),t._v(" "),e("button",{staticClass:"button-link change-theme",attrs:{type:"button"},on:{click:t.openModal}},[t._v(t._s(t.__("Change","ml-slider"))+"\n\t\t\t\t")])]):e("div",[e("p",[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!","ml-slider"))+"\n\t\t\t\t")]),t._v(" "),Object.keys(t.themes).length||Object.keys(t.customThemes).length?e("button",{staticClass:"button",attrs:{type:"button"},on:{click:t.openModal}},[t._v(t._s(t.__("Select a custom theme","ml-slider"))+"\n\t\t\t\t")]):t._e()]),t._v(" "),e("sweet-modal",{ref:"themesModal",attrs:{"hide-close-button":!0,blocking:!0,"pulse-on-block":!1,"overlay-theme":"dark"},on:{close:function(e){t.is_open=!1}}},[e("button",{attrs:{slot:"box-action"},on:{click:function(e){return e.preventDefault(),t.$refs.themesModal.close()}},slot:"box-action"},[e("svg",{staticClass:"w-6 -mt-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])]),t._v(" "),e("sweet-modal-tab",{attrs:{id:"all",title:t.__("All themes","ml-slider")}},[t.loading||t.loadingCustom?e("div",[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Loading...","ml-slider"))+"\n\t\t\t\t\t")]):t._e(),t._v(" "),t.themes&&Object.keys(t.themes).length||Object.keys(t.customThemes).length&&t.proUser?[e("div",{staticClass:"columns"},[e("div",{staticClass:"theme-list-column"},[e("ul",{staticClass:"ms-image-selector regular-themes"},[t._l(t.themes,(function(n){return t.themes&&Object.keys(t.themes).length?e("li",{key:n.folder,class:{"a-theme":!0,selected:t.selectedTheme.folder===n.folder,"unlock-pro-theme-ad":t.nonSelectablePremiumTheme(n.type)},attrs:{role:"checkbox"},on:{mouseover:function(e){t.hoveredTheme=n,t.showPremiumThemeAd(n.type,n.folder)},mouseout:function(e){t.hoveredTheme=t.selectedTheme},mouseleave:function(e){return t.hidePremiumThemeAd(n.type)},click:function(e){!t.nonSelectablePremiumTheme(n.type)&&t.selectTheme(n)}}},[e("span",[t.revealThemeAd===n.folder?e("div",{staticClass:"custom-theme-single upgrade-pro-theme-ad"},[e("h3",{staticClass:"text-white mb-3"},[t._v(t._s(t.__("Get MetaSlider Pro!","ml-slider")))]),t._v(" "),e("p",{staticClass:"text-white font-normal text-sm mb-3"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Upgrade now to unlock this theme!","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t\t\t\t")]),t._v(" "),e("a",{staticClass:"w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base",attrs:{href:t.hoplink,target:"_blank"}},[t._v(t._s(t.__("Upgrade now","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external border-0"})])]):t._e(),t._v(" "),n.screenshot_dir?e("img",{attrs:{src:n.screenshot_dir+"/screenshot.png",alt:n.title}}):e("img",{attrs:{src:t.themeDirectoryUrl+n.folder+"/screenshot.png",alt:n.title}})])]):t._e()})),t._v(" "),Object.keys(t.customThemes).length&&t.proUser?t._l(t.customThemes,(function(n){return e("li",{key:n.folder,class:{"a-theme":!0,selected:t.selectedTheme.folder==n.folder},attrs:{role:"checkbox"},on:{mouseover:function(e){t.hoveredTheme=n},mouseout:function(e){t.hoveredTheme=t.selectedTheme},click:function(e){return t.selectTheme(n)}}},[e("span",[e("div",{staticClass:"custom-theme-single"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(n.title)+"\n\t\t\t\t\t\t\t\t\t\t\t\t")])])])})):Object.keys(t.customThemes).length||!t.proUser||t.loadingCustom?[e("li",{staticClass:"a-theme unlock-pro-custom-themes-ad"},[e("span",[e("div",{staticClass:"custom-theme-single upgrade-pro-theme-ad"},[e("h3",{staticClass:"text-white mb-3"},[t._v(t._s(t.__("Get MetaSlider Pro!","ml-slider")))]),t._v(" "),e("p",{staticClass:"text-white font-normal text-sm mb-3"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Upgrade now to build your own custom themes!","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t\t\t\t\t")]),t._v(" "),e("a",{staticClass:"w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base",attrs:{href:t.hoplink,target:"_blank"}},[t._v(t._s(t.__("Upgrade now","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external border-0"})])])])])]:[e("li",{staticClass:"a-theme"},[e("span",[e("div",{staticClass:"custom-theme-single upgrade-pro-theme-ad"},[e("h3",{staticClass:"text-white mb-3"},[t._v(t._s(t.__("MetaSlider Pro is installed!","ml-slider")))]),t._v(" "),e("p",{staticClass:"text-white font-normal text-sm mb-3"},[t._v("\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("You can create your own themes with our theme editor","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t\t\t\t\t")]),t._v(" "),e("a",{staticClass:"w-full inline-flex items-center justify-center px-5 py-2 border border-transparent rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto text-base",attrs:{href:t.themeEditorLink}},[t._v(t._s(t.__("Get started","ml-slider")))])])])])]],2)]),t._v(" "),e("div",{staticClass:"theme-details-column"},[t.showThemeDetails&&"custom"!==t.hoveredTheme.type?[e("div",[e("h1",{staticClass:"metaslider-theme-title",attrs:{slot:"button"},domProps:{textContent:t._s(t.hoveredTheme.title)},slot:"button"}),t._v(" "),t.hoveredTheme.description?[e("div",{staticClass:"ms-theme-description"},[e("h2",[t._v(t._s(t.__("Theme Details","ml-slider")))]),t._v(" "),e("p",{domProps:{innerHTML:t._s(t.hoveredTheme.description)}})])]:t._e(),t._v(" "),t.hoveredTheme.instructions?[e("div",{staticClass:"ms-theme-instructions"},[e("h2",[t._v(t._s(t.__("Theme Instructions","ml-slider")))]),t._v(" "),e("p",{domProps:{innerHTML:t._s(t.hoveredTheme.instructions)}})])]:t._e()],2),t._v(" "),t.hoveredTheme&&t.hoveredTheme.tags&&t.hoveredTheme.tags.length?e("div",[e("h3",[t._v(t._s(t.__("Tags","ml-slider")))]),t._v(" "),e("ul",{staticClass:"ms-theme-tags"},t._l(t.hoveredTheme.tags,(function(n,r){return e("li",{key:r,domProps:{textContent:t._s(n)}})})),0)]):t._e()]:"custom"===t.hoveredTheme.type?[e("div",[e("h1",{staticClass:"metaslider-theme-title"},[t._v(t._s(t.hoveredTheme.title))]),t._v(" "),e("div",{staticClass:"ms-theme-description"},[e("h2",[t._v(t._s(t.__("Theme Details","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("This theme was created through the theme editor.","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("If no theme is selected we will use the default theme provided by the slider plugin","ml-slider")))])])])]:[e("div",[e("h1",{staticClass:"metaslider-theme-title"},[t._v(t._s(t.__("How To Use","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("Select a theme on the left to use on this slideshow. Click the theme for more details.","ml-slider")))]),t._v(" "),e("p",[t._v(t._s(t.__("If no theme is selected we will use the default theme provided by the slider plugin","ml-slider")))])])]],2)])]:[e("div",{staticClass:"free-themes-not-found"},[e("h1",[t._v(t._s(t.__("Error: No themes were found.","ml-slider")))])])]],2),t._v(" "),e("template",{slot:"button"},[e("div",[t.sliderTypeNotSupported?e("span",{staticClass:"slider-not-supported-warning"},[e("svg",{staticClass:"inline w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"}})]),t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("This theme is not officially supported by the slider you chose. Your results might vary.","ml-slider")))]):t._e()]),t._v(" "),e("div",{staticClass:"flex items-center"},[e("button",{staticClass:"flex items-center m-0 mr-1 text-gray-darker",attrs:{title:t.__("Preview slideshow","ml-slider")},on:{click:function(e){return e.preventDefault(),t.openPreview.apply(null,arguments)}}},[e("svg",{staticClass:"w-6 inline mr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"}})]),t._v("\n                            "+t._s(t.__("Preview","ml-slider"))+"\n\t\t\t\t\t\t")]),t._v(" "),e("button",{staticClass:"button button-primary",attrs:{disabled:!t.selectedTheme.folder},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.setTheme.apply(null,arguments)}}},[t._v(t._s(t.__("Select","ml-slider"))+"\n\t\t\t\t\t\t")])])])],2)],1)]):t._e()}),[],!1,null,null,null)),Cf=Sf.exports;rr.use(df);var Of=n(9214),Tf=n.n(Of),Ef="undefined"!=typeof navigator&&navigator.userAgent.toLowerCase().indexOf("firefox")>0;function jf(t,e,n,r){t.addEventListener?t.addEventListener(e,n,r):t.attachEvent&&t.attachEvent("on".concat(e),(function(){n(window.event)}))}function Af(t,e){for(var n=e.slice(0,e.length-1),r=0;r<n.length;r++)n[r]=t[n[r].toLowerCase()];return n}function Pf(t){"string"!=typeof t&&(t="");for(var e=(t=t.replace(/\s/g,"")).split(","),n=e.lastIndexOf("");n>=0;)e[n-1]+=",",e.splice(n,1),n=e.lastIndexOf("");return e}for(var Mf={backspace:8,"⌫":8,tab:9,clear:12,enter:13,"↩":13,return:13,esc:27,escape:27,space:32,left:37,up:38,right:39,down:40,del:46,delete:46,ins:45,insert:45,home:36,end:35,pageup:33,pagedown:34,capslock:20,num_0:96,num_1:97,num_2:98,num_3:99,num_4:100,num_5:101,num_6:102,num_7:103,num_8:104,num_9:105,num_multiply:106,num_add:107,num_enter:108,num_subtract:109,num_decimal:110,num_divide:111,"⇪":20,",":188,".":190,"/":191,"`":192,"-":Ef?173:189,"=":Ef?61:187,";":Ef?59:186,"'":222,"[":219,"]":221,"\\":220},If={"⇧":16,shift:16,"⌥":18,alt:18,option:18,"⌃":17,ctrl:17,control:17,"⌘":91,cmd:91,command:91},Lf={16:"shiftKey",18:"altKey",17:"ctrlKey",91:"metaKey",shiftKey:16,ctrlKey:17,altKey:18,metaKey:91},$f={16:!1,18:!1,17:!1,91:!1},Df={},Nf=1;Nf<20;Nf++)Mf["f".concat(Nf)]=111+Nf;var Ff=[],Bf=!1,Rf="all",zf=[],Uf=function(t){return Mf[t.toLowerCase()]||If[t.toLowerCase()]||t.toUpperCase().charCodeAt(0)};function Vf(t){Rf=t||"all"}function Hf(){return Rf||"all"}var qf=function(t){var e=t.key,n=t.scope,r=t.method,i=t.splitKey,o=void 0===i?"+":i;Pf(e).forEach((function(t){var e=t.split(o),i=e.length,s=e[i-1],a="*"===s?"*":Uf(s);if(Df[a]){n||(n=Hf());var l=i>1?Af(If,e):[];Df[a]=Df[a].filter((function(t){return!((!r||t.method===r)&&t.scope===n&&function(t,e){for(var n=t.length>=e.length?t:e,r=t.length>=e.length?e:t,i=!0,o=0;o<n.length;o++)-1===r.indexOf(n[o])&&(i=!1);return i}(t.mods,l))}))}}))};function Wf(t,e,n,r){var i;if(e.element===r&&(e.scope===n||"all"===e.scope)){for(var o in i=e.mods.length>0,$f)Object.prototype.hasOwnProperty.call($f,o)&&(!$f[o]&&e.mods.indexOf(+o)>-1||$f[o]&&-1===e.mods.indexOf(+o))&&(i=!1);(0!==e.mods.length||$f[16]||$f[18]||$f[17]||$f[91])&&!i&&"*"!==e.shortcut||!1===e.method(t,e)&&(t.preventDefault?t.preventDefault():t.returnValue=!1,t.stopPropagation&&t.stopPropagation(),t.cancelBubble&&(t.cancelBubble=!0))}}function Zf(t,e){var n=Df["*"],r=t.keyCode||t.which||t.charCode;if(Yf.filter.call(this,t)){if(93!==r&&224!==r||(r=91),-1===Ff.indexOf(r)&&229!==r&&Ff.push(r),["ctrlKey","altKey","shiftKey","metaKey"].forEach((function(e){var n=Lf[e];t[e]&&-1===Ff.indexOf(n)?Ff.push(n):!t[e]&&Ff.indexOf(n)>-1?Ff.splice(Ff.indexOf(n),1):"metaKey"===e&&t[e]&&3===Ff.length&&(t.ctrlKey||t.shiftKey||t.altKey||(Ff=Ff.slice(Ff.indexOf(n))))})),r in $f){for(var i in $f[r]=!0,If)If[i]===r&&(Yf[i]=!0);if(!n)return}for(var o in $f)Object.prototype.hasOwnProperty.call($f,o)&&($f[o]=t[Lf[o]]);t.getModifierState&&(!t.altKey||t.ctrlKey)&&t.getModifierState("AltGraph")&&(-1===Ff.indexOf(17)&&Ff.push(17),-1===Ff.indexOf(18)&&Ff.push(18),$f[17]=!0,$f[18]=!0);var s=Hf();if(n)for(var a=0;a<n.length;a++)n[a].scope===s&&("keydown"===t.type&&n[a].keydown||"keyup"===t.type&&n[a].keyup)&&Wf(t,n[a],s,e);if(r in Df)for(var l=0;l<Df[r].length;l++)if(("keydown"===t.type&&Df[r][l].keydown||"keyup"===t.type&&Df[r][l].keyup)&&Df[r][l].key){for(var c=Df[r][l],u=c.splitKey,d=c.key.split(u),f=[],p=0;p<d.length;p++)f.push(Uf(d[p]));f.sort().join("")===Ff.sort().join("")&&Wf(t,c,s,e)}}}function Yf(t,e,n){Ff=[];var r=Pf(t),i=[],o="all",s=document,a=0,l=!1,c=!0,u="+",d=!1;for(void 0===n&&"function"==typeof e&&(n=e),"[object Object]"===Object.prototype.toString.call(e)&&(e.scope&&(o=e.scope),e.element&&(s=e.element),e.keyup&&(l=e.keyup),void 0!==e.keydown&&(c=e.keydown),void 0!==e.capture&&(d=e.capture),"string"==typeof e.splitKey&&(u=e.splitKey)),"string"==typeof e&&(o=e);a<r.length;a++)i=[],(t=r[a].split(u)).length>1&&(i=Af(If,t)),(t="*"===(t=t[t.length-1])?"*":Uf(t))in Df||(Df[t]=[]),Df[t].push({keyup:l,keydown:c,scope:o,mods:i,shortcut:r[a],method:n,key:r[a],splitKey:u,element:s});void 0!==s&&!function(t){return zf.indexOf(t)>-1}(s)&&window&&(zf.push(s),jf(s,"keydown",(function(t){Zf(t,s)}),d),Bf||(Bf=!0,jf(window,"focus",(function(){Ff=[]}),d)),jf(s,"keyup",(function(t){Zf(t,s),function(t){var e=t.keyCode||t.which||t.charCode,n=Ff.indexOf(e);if(n>=0&&Ff.splice(n,1),t.key&&"meta"===t.key.toLowerCase()&&Ff.splice(0,Ff.length),93!==e&&224!==e||(e=91),e in $f)for(var r in $f[e]=!1,If)If[r]===e&&(Yf[r]=!1)}(t)}),d))}var Gf={getPressedKeyString:function(){return Ff.map((function(t){return e=t,Object.keys(Mf).find((function(t){return Mf[t]===e}))||function(t){return Object.keys(If).find((function(e){return If[e]===t}))}(t)||String.fromCharCode(t);var e}))},setScope:Vf,getScope:Hf,deleteScope:function(t,e){var n,r;for(var i in t||(t=Hf()),Df)if(Object.prototype.hasOwnProperty.call(Df,i))for(n=Df[i],r=0;r<n.length;)n[r].scope===t?n.splice(r,1):r++;Hf()===t&&Vf(e||"all")},getPressedKeyCodes:function(){return Ff.slice(0)},isPressed:function(t){return"string"==typeof t&&(t=Uf(t)),-1!==Ff.indexOf(t)},filter:function(t){var e=t.target||t.srcElement,n=e.tagName,r=!0;return!e.isContentEditable&&("INPUT"!==n&&"TEXTAREA"!==n&&"SELECT"!==n||e.readOnly)||(r=!1),r},trigger:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"all";Object.keys(Df).forEach((function(n){Df[n].filter((function(n){return n.scope===e&&n.shortcut===t})).forEach((function(t){t&&t.method&&t.method()}))}))},unbind:function(t){if(void 0===t)Object.keys(Df).forEach((function(t){return delete Df[t]}));else if(Array.isArray(t))t.forEach((function(t){t.key&&qf(t)}));else if("object"==typeof t)t.key&&qf(t);else if("string"==typeof t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];var i=n[0],o=n[1];"function"==typeof i&&(o=i,i=""),qf({key:t,scope:i,method:o,splitKey:"+"})}},keyMap:Mf,modifier:If,modifierMap:Lf};for(var Jf in Gf)Object.prototype.hasOwnProperty.call(Gf,Jf)&&(Yf[Jf]=Gf[Jf]);if("undefined"!=typeof window){var Kf=window.hotkeys;Yf.noConflict=function(t){return t&&window.hotkeys===Yf&&(window.hotkeys=Kf),Yf},window.hotkeys=Yf}function Xf(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Qf(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var tp={props:{},data(){return{html:"",slideshowId:"",theme_id:"",iframeLoaded:!1,errorMessage:"",previewIframe:{},overlayTheme:"dark",showFullwidth:!1,notFullySupported:!("srcdoc"in document.createElement("iframe")),resizeEvent:{}}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Xf(Object(n),!0).forEach((function(e){Qf(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Xf(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({lightsOn(){return"dark"!==this.overlayTheme},maxWidth(){let t=parseInt(document.getElementsByName("settings[width]")[0].value,10);return!this.showFullwidth&&t?t+"px":"100%"}},id({current:"slideshows/getCurrent"})),mounted(){Qc.$on("metaslider/open-preview",(t=>{let{slideshowId:e,themeId:n}=t;this.openPreview(e,n)})),Yf("alt+p",(()=>this.handleOpeningPreviewByKeyboard()))},methods:{hasSlides(){return document.querySelector("tr.slide:not(.ms-deleted)")},openPreview(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!this.hasSlides())return Qc.$emit("import-notice",e||this.current.theme.folder),!1;document.addEventListener("keyup",this.handleKeyups),this.showFullwidth=!1,this.$refs.preview.open(),this.fetchIframe(t,e)},closePreview(){this.$refs.preview.close(),this.html="",this.iframeLoaded=!1,this.errorMessage="",document.removeEventListener("keyup",this.handleKeyups)},fetchIframe(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.errorMessage="",Xc.get("slideshow/preview",{params:{action:"ms_get_preview",theme_slug:e||this.current.theme.folder,slideshow_id:t||this.current.id,theme_id:e||this.current.theme.folder}}).then((t=>{this.html=t.data.data,this.$nextTick((()=>{Tf().set(document.getElementById("iframe-"+this._uid)),this.notFullySupported&&console.log(document.getElementById("iframe-"+this._uid))})),this.notifySuccess("metaslider/preview-loaded","Preview loaded")})).catch((t=>{this.iframeLoaded=!0,this.errorMessage=this.getErrorMessage(t.response),this.notifyError("metaslider/preview-error",t)}))},setupIframe(t){this.previewIframe={window:t.target.contentWindow,document:t.target.contentDocument,container:t.target.contentDocument.getElementById("preview-container"),slideshow:t.target.contentDocument.querySelector(".metaslider")},this.previewIframe.document.addEventListener("keyup",this.handleKeyups),this.previewIframe.slideshow.style.width="100%","function"!=typeof window.Event?(this.resizeEvent=this.previewIframe.window.document.createEvent("UIEvents"),this.resizeEvent.initUIEvent("resize",!0,!1,window,0)):this.resizeEvent=new Event("resize"),document.getElementsByName("settings[carouselMode]")[0].checked&&this.toggleFullwidth(),this.previewIframe.window.dispatchEvent(this.resizeEvent),this.iframeLoaded=!0},toggleFullwidth(){this.showFullwidth=!this.showFullwidth,this.previewIframe.container.style.maxWidth=this.maxWidth,this.previewIframe.slideshow.style.maxWidth=this.maxWidth,this.previewIframe.window.dispatchEvent(this.resizeEvent)},toggleLights(){this.overlayTheme="dark"===this.overlayTheme?"light":"dark"},handleKeyups(t){70===t.keyCode&&this.toggleFullwidth(),76===t.keyCode&&this.toggleLights(),27===t.keyCode&&this.closePreview()},handleOpeningPreviewByKeyboard(){return!this.$parent.saving&&(!document.getElementById("preview-component").length&&void Qc.$emit("metaslider/preview"))}}},ep=tp,np=n(2916),rp={insert:"head",singleton:!1},ip=(Qd()(np.Z,rp),np.Z.locals,Dd(ep,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"h-full z-max relative",class:{"ms-has-error":t.errorMessage.length},attrs:{id:"preview-component"}},[e("sweet-modal",{ref:"preview",class:{"control-light":t.lightsOn},attrs:{"overlay-theme":t.overlayTheme,"modal-theme":t.overlayTheme,blocking:!0,"pulse-on-block":!1,"hide-close-button":""}},[e("div",{staticClass:"flex w-full bg-gray-light fixed top-0 left-0 right-0 h-8 items-center justify-between",attrs:{slot:"box-action"},slot:"box-action"},[e("div",{staticClass:"flex h-full"},[e("h2",{staticClass:"font-bold flex items-center h-full m-0 pl-6 pr-8 relative overflow-hidden uppercase leading-normal",class:{"bg-white text-black":"dark"!==t.overlayTheme,"bg-black text-white":"dark"===t.overlayTheme}},[t._v("\n                        "+t._s(t.__("Preview","ml-slider"))+"\n                    ")]),t._v(" "),e("button",{staticClass:"lightbulb w-10 px-2 hover:bg-black hover:text-white hover:p-px transition duration-200",class:{"bg-black text-white p-px":"dark"!==t.overlayTheme,"bg-transparent text-black":"dark"===t.overlayTheme},attrs:{title:t.__("Toggle overlay type","ml-slider")+" (L)"},on:{click:t.toggleLights}},[e("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})])]),t._v(" "),e("button",{staticClass:"w-10 px-2 hover:bg-black hover:text-white hover:p-px transition duration-200",class:{"bg-black text-white p-px":t.showFullwidth,"bg-transparent text-black":!t.showFullwidth},attrs:{title:t.__("Toggle full width","ml-slider")+" (F)"},on:{click:t.toggleFullwidth}},[t.showFullwidth?e("span",{staticClass:"dashicons dashicons-editor-contract w-full"}):e("span",{staticClass:"dashicons dashicons-editor-expand"})])]),t._v(" "),e("button",{staticClass:"mr-2 rtl:ml-2 rtl:mr-0 w-6 text-black",attrs:{title:t.__("Exit preview","ml-slider")+" (ESC)"},on:{click:t.closePreview}},[e("svg",{attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])])]),t._v(" "),""!==t.html?e("iframe",{class:{invisible:!t.iframeLoaded},attrs:{id:"iframe-"+t._uid,srcdoc:t.html,frameborder:"0"},on:{load:t.setupIframe}}):e("div",[t.iframeLoaded||t.errorMessage.length?t._e():e("span",[t._v("\n                    "+t._s(t.__("Loading...","ml-slider"))+"\n                ")]),t._v(" "),t.errorMessage.length?e("p",{staticClass:"ms-error",domProps:{textContent:t._s(t.errorMessage)}}):t._e(),t._v(" "),t.notFullySupported?e("p",{staticClass:"ms-feature-not-supported"},[t._v("\n                    "+t._s(t.__("This feature is not fully supported in this browser.","ml-slider"))+"\n                ")]):t._e()])])],1)}),[],!1,null,null,null).exports);function op(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function sp(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?op(Object(n),!0).forEach((function(e){ap(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):op(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function ap(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var lp=Dd({props:{},data(){return{}},mounted(){let t=window.jQuery;t(".metaslider .ms-edit-slideshow--trashed-slides table#metaslider-slides-list td.col-2").on("click",(function(){Qc.$emit("metaslider/cant-edit-trashed-slide")})),t("#post-body").hasClass("ms-edit-slideshow--trashed-slides")||(t(".metaslider table#metaslider-slides-list > tbody").sortable({helper:function(e,n){return n.children().each((function(){t(this).width(t(this).width())})),n},handle:"td.col-1",start:(e,n)=>{t("#metaslider-slides-list").find("textarea.wysiwyg").each((function(){tinymce.get(t(this).attr("id")).destroy(),t(this).attr("disabled",!0)}))},stop:(e,n)=>{t("#metaslider-slides-list").find("textarea.wysiwyg").each((function(){const e=t(this).data("type"),n=t(this).attr("id");if(e.length&&n.length){const r=metaslider.tinymce.find((t=>t.type===e));void 0===r?console.error(`${e} was not found in metaslider.tinymce object!`):(t(this).attr("disabled",!1),tinymce.init(sp(sp({},{selector:`#${n}`}),r.configuration)))}})),Qc.$emit("metaslider/save")}}),t(".metaslider-ui").on("keypress","ul.tabs > li > a",(function(e){32===e.which&&(e.preventDefault(),t(":focus").trigger("click"))})),t(".metaslider-ui").on("click","ul.tabs > li > a",(function(e){e.preventDefault();var n=t(this);n.parents(".metaslider-ui-inner").children(".tabs-content").find("div.tab").hide(),n.parents(".metaslider-ui-inner").children(".tabs-content").find("div."+n.data("tab_id")).show(),n.parent().addClass("selected").siblings().removeClass("selected")}))),t(".metaslider-ui").on("change","input.width, input.height",(function(e){t(".metaslider table#metaslider-slides-list").trigger("metaslider/size-has-changed",{width:t("input.width").val(),height:t("input.height").val()})}))}},undefined,undefined,!1,null,null,null).exports,cp=Dd({props:{id:{type:[Number,String],default:null}},data(){return{}},mounted(){}},undefined,undefined,!1,null,null,null).exports;function up(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function dp(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?up(Object(n),!0).forEach((function(e){fp(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):up(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function fp(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var pp={props:{imageCaption:{type:[String],default:""},imageDescription:{type:[String],default:""},override:{type:[String],default:""},captionSource:{type:[String],default:"image-caption"}},data(){return{sources:{"image-caption":this.cleanupQuotes(this.imageCaption),"image-description":this.cleanupQuotes(this.imageDescription),override:this.override},language:{},selectedSource:"",editorInstance:!1,editorContent:null,textareaContent:""}},created(){this.selectedSource=this.captionSource?this.captionSource:"image-caption"},mounted(){Qc.$on("metaslider/image-meta-updated",((t,e)=>this.updateMetadata(t,e))),window.jQuery(window).on("metaslider/image-meta-updated",((t,e,n)=>this.updateMetadata(e,n))),this.language={"image-caption":this.__("Media caption","ml-slider"),"image-description":this.__("Media description","ml-slider"),override:this.__("Manual entry","ml-slider")},this.textareaContent=this.convertStyleAttributes(this.sources.override)},methods:{maybeFocusTextarea(t){"override"===t.target.defaultValue&&setTimeout((()=>document.getElementById("caption_override_"+this.$parent.id).focus()),300)},updateMetadata(t,e){console.log(t),t.includes(this.$parent.id)&&(this.sources["image-caption"]=e.caption,this.sources["image-description"]=e.description)},initializeTinyMCE(){this.$nextTick((function(){if(!this.editorInstance){if("undefined"==typeof tinymce)return void console.error("TinyMCE is not defined!");const t=`caption_override_${this.$parent.id}`;void 0===metaslider.tinymce.find((t=>"image"===t.type))&&metaslider.tinymce.push({type:"image",configuration:{toolbar:["undo redo bold italic forecolor link unlink alignleft aligncenter alignright styles code"],menubar:!1,plugins:"code link",branding:!1,promotion:!1,height:240,preview_styles:!1,forced_root_block:"div",convert_urls:!1,setup:function(t){t.on("input",(function(){e(t)})),t.on("ExecCommand",(function(){e(t)}));const e=function(t){const e=document.getElementById(t.id);e&&(e.value=t.getContent())}}}}),tinymce.init(dp(dp({},{selector:`#${t}`,init_instance_callback:t=>{if(this.editorContent){const e=function(t){const e=document.getElementById(t.id);e&&(e.value=t.getContent())};t.setContent(this.editorContent),e(t)}}}),metaslider.tinymce.find((t=>"image"===t.type)).configuration)),this.editorInstance=!0}}))},destroyTinyMCE(){if(this.editorInstance){const t=`caption_override_${this.$parent.id}`;this.editorContent=tinymce.get(t).getContent(),tinymce.get(t).destroy(),this.editorInstance=!1}},convertStyleAttributes(t){return t.replace(/style=\\(".*?"|'.*?')/g,(t=>t.replace(/\\(?="|')/g,"")))},cleanupQuotes(t){return t.replace(/\\&#039;|\\'|\\\"/g,(t=>"\\&#039;"===t||"\\'"===t?"'":'\\"'===t?'"':void 0))}},watch:{selectedSource(t,e){"undefined"!=typeof tinymce?"override"===t&&"override"!==e?this.initializeTinyMCE():"override"!==t&&"override"===e&&this.destroyTinyMCE():console.error("TinyMCE is not defined!")}}},hp=Dd(pp,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"row caption mb-0"},[e("div",{staticClass:"flex justify-between"},[e("label",{staticClass:"mr-4 caption-label"},[t._v("\n\t\t\t"+t._s(t.__("Caption","ml-slider"))+"\n\t\t\t"),e("span",{staticClass:"dashicons dashicons-info tipsy-tooltip-top",staticStyle:{"line-height":"1.2em"},attrs:{title:t.__("Enter text that will appear with your image slide.","ml-slider")}})]),t._v(" "),e("div",{staticClass:"mb-1 mr-1",attrs:{"aria-labelledby":"caption_source_"+t.$parent.id,role:"radiogroup"}},t._l(t.sources,(function(n,r){return e("div",{key:r,staticClass:"whitespace-no-wrap inline-block mb-1 px-1"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.selectedSource,expression:"selectedSource"}],staticClass:"m-0",attrs:{id:r+"-"+t.$parent.id,name:"attachment["+t.$parent.id+"][caption_source]",type:"radio"},domProps:{value:r,checked:t._q(t.selectedSource,r)},on:{click:t.maybeFocusTextarea,change:function(e){t.selectedSource=r}}}),t._v(" "),e("label",{staticClass:"m-0 truncate",attrs:{for:r+"-"+t.$parent.id,title:t.language[r]}},[t._v("\n\t\t\t\t\t"+t._s(t.language[r])+"\n\t\t\t\t")])])})),0)]),t._v(" "),"override"!==t.selectedSource?e("textarea",{staticClass:"tipsy-tooltip-top",attrs:{title:t.__("Automatically updates directly from the WP Media Library","ml-slider"),readonly:""},domProps:{value:t.sources[t.selectedSource].length?t.sources[t.selectedSource]:t.__("No default was found","ml-slider")}}):t._e(),t._v(" "),"override"===t.selectedSource?e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.textareaContent,expression:"textareaContent"}],staticClass:"tipsy-tooltip-top wysiwyg",attrs:{title:t.__("You may use HTML here","ml-slider"),id:"caption_override_"+t.$parent.id,name:"attachment["+t.$parent.id+"][post_excerpt]","data-type":"image"},domProps:{value:t.textareaContent},on:{input:function(e){e.target.composing||(t.textareaContent=e.target.value)}}}):t._e()])}),[],!1,null,null,null).exports,mp={props:{},data(){return{}},computed:{loading(){return this.$parent.loadingFresh}},mounted(){if(!document.querySelector(".media-frame-content").dataset.columns){let t=document.querySelector(".attachments-browser .attachments").offsetWidth/150;document.querySelector(".media-frame-content").dataset.columns=Math.round(t)}},methods:{searchByTerm:tu.debounce((function(){this.$parent.searchByTerm()}),500)}},gp=n(8896),vp={insert:"head",singleton:!1},wp=(Qd()(gp.Z,vp),gp.Z.locals,Dd(mp,(function(){var t=this,e=t._self._c;return e("div",{staticStyle:{height:"100%"}},[e("div",{staticClass:"media-toolbar"},[e("div",{staticClass:"media-toolbar-secondary"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"media-attachment-filters"}},[t._v(t._s(t.__("Filter by type","ml-slider")))]),t._v(" "),t.$parent.filters.length?e("select",{staticClass:"attachment-filters",staticStyle:{"min-width":"150px"}},[e("option",{attrs:{value:"all"}},[t._v(t._s(t.__("All media items","ml-slider")))]),t._v(" "),t._l(t.$parent.filters,(function(n,r){return e("option",{key:r,domProps:{value:r}},[t._v(t._s(n))])}))],2):t._e(),t._v(" "),e("span",{staticClass:"spinner"})]),t._v(" "),e("div",{staticClass:"media-toolbar-primary search-form"},[e("label",{staticClass:"screen-reader-text",attrs:{for:"media-search-input"}},[t._v(t._s(t.__("Search Unsplash API","ml-slider")))]),t._v(" "),e("input",{directives:[{name:"model",rawName:"v-model",value:t.$parent.searchTerm,expression:"$parent.searchTerm"}],staticClass:"search",attrs:{id:"search-unsplash",placeholder:t.__("Search unsplash.com...","ml-slider"),type:"search"},domProps:{value:t.$parent.searchTerm},on:{focus:function(e){return t.notifyInfo("metaslider/unsplash-search-focused","Unsplash search was focused")},keyup:t.searchByTerm,search:t.searchByTerm,input:function(e){e.target.composing||t.$set(t.$parent,"searchTerm",e.target.value)}}})])]),t._v(" "),t.loading&&!t.$parent.errorMessage?e("div",{staticClass:"attachments ui-sortable ui-sortable-disabled"},[e("span",{staticClass:"ms-full-loading"},[e("svg",{staticClass:"w-6 ms-spin",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})])])]):t._e(),t._v(" "),t.$parent.errorMessage?e("div",{staticClass:"external-api-error"},[t._v(t._s(t.$parent.errorMessage)+"\n\t\t")]):t._e(),t._v(" "),t.loading||t.$parent.errorMessage?t._e():e("ul",{staticClass:"attachments ui-sortable ui-sortable-disabled",attrs:{tabindex:"-1"}},[t._t("media-list"),t._v(" "),t.$parent.canLoadMore?e("li",{staticClass:"attachment ms-load-more-api"},[e("div",{staticClass:"attachment-preview"},[t.$parent.loadingMore?e("span",{staticClass:"ms-loading-more-images"},[e("svg",{staticClass:"w-6 ms-spin",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})])]):e("button",{staticClass:"ms-load-more-button",on:{click:t.$parent.loadMore}},[e("svg",{staticClass:"w-6",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 6v6m0 0v6m0-6h6m-6 0H6"}})]),t._v(" "),e("span",[t._v(t._s(t.__("Load more","ml-slider")))])])])]):t._e()],2),t._v(" "),e("div",{staticClass:"media-sidebar"},[e("div",{staticClass:"ms-api-sidebar"},[e("div",{staticClass:"ms-api-photo-details"},[t._t("sidebar")],2),t._v(" "),e("div",{staticClass:"ms-api-copyright"},[t._t("copyright")],2)])])])}),[],!1,null,null,null)),yp={components:{MediaContainer:wp.exports},props:{},data(){return{errorMessage:"",canLoadMore:!1,loadingFresh:!0,loadingMore:!0,searchTerm:"",page:1,photos:[],selected:{id:null},filters:{},mediaButton:{},qualityOptions:["raw","full","regular"],upload:{title:"",caption:"",alt:"",description:"",quality:"full"}}},computed:{fileName(){return this.selected.id?this.selected.user.name.replace(" ","-").toLowerCase()+"-"+this.selected.id+"-unsplash.jpg":""}},watch:{selected(t){this.upload.caption=t.user?this.sprintf(this.__("Photo by %s on Unsplash","ml-slider"),t.user.name):this.__("Photo on Unsplash","ml-slider")}},mounted(){this.notifyInfo("metaslider/unsplash-tab-opened",this.__("Opening Unsplash tab...","ml-slider")),this.loadFreshImages()},destroyed(){this.notifyInfo("metaslider/unsplash-tab-closed",this.__("Unsplash tab closed","ml-slider"))},methods:{async getImages(){this.errorMessage="";const{data:t}=await Nu.photos(this.page,this.searchTerm);if(!t.data.length)throw this.__("No photots found.","ml-slider");t.data.forEach((t=>{this.photos.some((e=>e.id===t.id))||this.photos.push(t)}))},loadFreshImages(){this.readyToLoad(!1),this.page=1,this.photos=[],this.selected={id:null},this.getImages().then((()=>this.readyToLoad())).catch((t=>{this.errorMessage=t,this.loadingFresh=!1,this.throwError(t)}))},async loadMore(){this.page++,this.loadingMore=!0,await new Promise((t=>setTimeout(t,1e3))),this.getImages().then((()=>this.readyToLoad())).catch((()=>{this.canLoadMore=!1}))},download(){return Nu.download(this.selected.urls[this.upload.quality],this.selected.id)},fetchFilters(){this.filters={}},searchByTerm(){this.loadFreshImages()},readyToLoad(){let t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.canLoadMore=t,this.loadingMore=!t,this.loadingFresh=!t}}},bp=yp,_p=n(2354),xp={insert:"head",singleton:!1},kp=(Qd()(_p.Z,xp),_p.Z.locals,{components:{unsplash:Dd(bp,(function(){var t=this,e=t._self._c;return e("media-container",[e("template",{slot:"media-list"},t._l(t.photos,(function(n){return e("li",{key:n.id,staticClass:"attachment save-ready",class:{selected:t.selected===n,details:t.selected===n},attrs:{"aria-label":t.sprintf(t.__("Photo by %s","ml-slider"),n.user.name),tabindex:"0",role:"checkbox","aria-checked":"false"},on:{click:function(e){t.selected=t.selected===n?{}:n}}},[e("div",{staticClass:"attachment-preview js--select-attachment type-image subtype-jpeg",class:n.orientation},[e("div",{staticClass:"thumbnail"},[e("div",{staticClass:"centered"},[e("img",{attrs:{alt:t.sprintf(t.__("Photo by %s","ml-slider"),n.user.name),src:n.urls.thumb,draggable:"false"}})])])]),t._v(" "),e("button",{staticClass:"check",attrs:{type:"button",tabindex:"-1"}},[e("span",{staticClass:"media-modal-icon"}),t._v(" "),e("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.__("Deselect","ml-slider")))])])])})),0),t._v(" "),e("template",{slot:"sidebar"},[t.selected.id?e("div",[e("div",{staticClass:"attachment-details",attrs:{tabindex:"0"}},[e("h2",[t._v(t._s(t.__("Attachment Details","ml-slider")))]),t._v(" "),e("div",{staticClass:"attachment-info"},[e("div",{staticClass:"thumbnail thumbnail-image"},[e("img",{attrs:{src:t.selected.urls.small,alt:t.fileName,draggable:"false"}})]),t._v(" "),e("div",{staticClass:"details"},[e("div",{staticClass:"filename"},[t._v(t._s(t.fileName))]),t._v(" "),e("div",{staticClass:"dimensions"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.sprintf(t._x("%s by %s pixels","1000 by 1000 pixels","ml-slider"),t.selected.width,t.selected.height))+"\n\t\t\t\t\t\t")]),t._v(" "),e("a",{attrs:{href:t.selected.links.html,target:"_blank"}},[t._v(t._s(t.__("view original","ml-slider")))])])]),t._v(" "),e("div",{staticClass:"ms-api-user"},[e("img",{staticClass:"rtl:mr-0 rtl:ml-4",attrs:{src:t.selected.user.profile_image.medium}}),t._v(" "),e("div",{staticClass:"ms-profile-data"},[e("div",{staticClass:"ms-profile-details"},[e("h3",[t._v(t._s(t.selected.user.name))]),t._v(" "),e("p",{staticClass:"ms-user-location",domProps:{innerHTML:t._s(t.selected.user.location)}}),t._v(" "),t.selected.user.bio?e("div",{staticClass:"ms-user-bio",domProps:{innerHTML:t._s(t.selected.user.bio)}}):t._e()]),t._v(" "),e("ul",{staticClass:"ms-profile-meta"},[t.selected.user.username?e("li",[e("a",{staticClass:"ms-profile-username",attrs:{href:t.selected.user.links.html,title:t.selected.user.links.html,target:"_blank"}},[t._v(t._s(t.__("Profile","ml-slider"))+"\n\t\t\t\t\t\t\t\t")])]):t._e(),t._v(" "),t.selected.user.portfolio_url?e("li",{staticClass:"ms-user-portfolio-url"},[e("a",{attrs:{href:t.selected.user.portfolio_url,title:t.selected.user.portfolio_url,target:"_blank"}},[t._v(t._s(t.__("Portfolio","ml-slider"))+"\n\t\t\t\t\t\t\t\t")])]):t._e()])])]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Title","ml-slider")))]),t._v(" "),e("input",{directives:[{name:"model",rawName:"v-model",value:t.upload.title,expression:"upload.title"}],attrs:{type:"text"},domProps:{value:t.upload.title},on:{input:function(e){e.target.composing||t.$set(t.upload,"title",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Caption","ml-slider")))]),t._v(" "),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.upload.caption,expression:"upload.caption"}],domProps:{value:t.upload.caption},on:{input:function(e){e.target.composing||t.$set(t.upload,"caption",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Alt Text","ml-slider")))]),t._v(" "),e("input",{directives:[{name:"model",rawName:"v-model",value:t.upload.alt,expression:"upload.alt"}],attrs:{type:"text"},domProps:{value:t.upload.alt},on:{input:function(e){e.target.composing||t.$set(t.upload,"alt",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Description","ml-slider")))]),t._v(" "),e("textarea",{directives:[{name:"model",rawName:"v-model",value:t.upload.description,expression:"upload.description"}],domProps:{value:t.upload.description},on:{input:function(e){e.target.composing||t.$set(t.upload,"description",e.target.value)}}})]),t._v(" "),e("label",{staticClass:"quality setting"},[e("span",{staticClass:"name"},[t._v(t._s(t.__("Quality","ml-slider")))]),t._v(" "),e("select",{directives:[{name:"model",rawName:"v-model",value:t.upload.quality,expression:"upload.quality"}],staticClass:"alignment",on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.$set(t.upload,"quality",e.target.multiple?n:n[0])}}},t._l(t.qualityOptions,(function(n){return e("option",{key:n,domProps:{value:n}},[t._v("\n\t\t\t\t\t\t\t"+t._s(n.charAt(0).toUpperCase()+n.slice(1))+"\n\t\t\t\t\t\t")])})),0)])])]):t._e()]),t._v(" "),e("template",{slot:"copyright"},[e("p",[t._v("\n\t\t\t"+t._s(t.__("All photos published on Unsplash can be used for free.","ml-slider"))+" "),e("a",{attrs:{target:"_blank",href:"https://unsplash.com/license"}},[t._v(t._s(t.__("view license","ml-slider")))])])])],2)}),[],!1,null,null,null).exports},props:{source:{type:[String],default:"unsplash"},slideshowId:{type:[String,Number],default:null},slideId:{type:[String,Number],default:null},slideType:{type:[String],default:"image"}},data(){return{page:1,component:null,mediaButton:{},ourMediaButton:{},downloading:!1,uploadPercentage:1,downloadingMessage:""}},watch:{downloading(){this.ourMediaButton.disabled=this.downloading,this.downloading&&(window.metaslider.about_to_reload=!0)}},created(){this.component=this.source},mounted(){Qc.$on("metaslider/external-api-percentage",(t=>{let{percentage:e}=t;this.uploadPercentage=e}));const t=document.querySelector(".external-media-importer");let e=t.closest(".media-modal-content");e=e.querySelector("button.clear-selection"),e&&e.click();const n=document.querySelectorAll(".attachment.save-ready.selected");n&&n.forEach((t=>{t.click()}));let r=t.closest(".media-modal-content");this.mediaButton=r.querySelector(".media-frame-toolbar .media-toolbar-primary button.media-button"),this.ourMediaButton=this.mediaButton.cloneNode(),this.ourMediaButton.classList.add("float-right","rtl:float-left"),this.ourMediaButton.innerHTML=this.mediaButton.innerHTML,this.mediaButton.parentNode.insertBefore(this.ourMediaButton,this.mediaButton),this.ourMediaButton.disabled=!1,this.mediaButton.style.visibility="hidden",this.ourMediaButton.addEventListener("click",this.interceptAddButton)},destroyed(){this.ourMediaButton.removeEventListener("click",this.interceptAddButton),this.ourMediaButton.parentNode.removeChild(this.ourMediaButton),this.mediaButton.style.visibility="visible";const t=document.getElementById("image-api-container");t&&t.parentNode.removeChild(t),window.metaslider.about_to_reload&&(delete window.metaslider.about_to_reload,window.create_slides&&window.create_slides.close(),window.update_slide_frame&&window.update_slide_frame.close())},methods:{async interceptAddButton(t){if(this.$refs["external-api"].selected.id){this.downloading=!0,this.downloadingMessage=this.__("Saving...","ml-slider");const{data:t}=await this.$refs["external-api"].download(),e=this.$refs["external-api"].upload,n=new FormData,r=this.$refs["external-api"].fileName;n.append("files["+r+"]",t,r),Object.keys(this.$refs["external-api"].upload).forEach((t=>{let i=e[t];n.append("image_data["+r+"]["+t+"]",i)})),n.append("slideshow_id",this.slideshowId),this.slideType&&n.append("slide_type",this.slideType),this.slideId&&n.append("slide_id",this.slideId),n.append("action","ms_import_images");const i=await Xc.post("import/images",n).catch((t=>{this.notifyError("metaslider/image-import-error",t,!0),this.slideId=!0,this.$destroy()}));if(this.uploadPercentage=100,this.downloadingMessage=this.__("Complete!","ml-slider"),await new Promise((t=>setTimeout(t,1500))),!this.slideId&&window.location.reload(!0),this.slideId){if(document.querySelector('[data-slide-id="'+this.slideId+'"] .thumb').style.backgroundImage="url("+i.data.data+")",this.proUser&&"local_video"===this.slideType){const t=document.querySelector("#slide-"+this.slideId+" .update-cover-image");t.style.backgroundImage="url("+i.data.data+")",t.innerHTML=""}Qc.$emit("metaslider/image-meta-updated",[""+this.slideId],this.$refs["external-api"].upload)}this.$destroy()}}}}),Sp=kp,Cp=n(5036),Op={insert:"head",singleton:!1},Tp=(Qd()(Cp.Z,Op),Cp.Z.locals,Dd(Sp,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"attachments-browser external-media-importer"},[t.downloading?e("div",{staticClass:"ms-hero-status"},[t.uploadPercentage>0?e("div",{staticClass:"ms-upload-progress"},[e("div",{staticClass:"ms-upload-image"},[e("span",{staticClass:"attachment save-ready",staticStyle:{width:"150px",height:"150px"},attrs:{"aria-label":t.$refs["external-api"].fileName,tabindex:"0",role:"checkbox","aria-checked":"false"}},[e("div",{staticClass:"attachment-preview js--select-attachment type-image subtype-jpeg portrait"},[e("div",{staticClass:"thumbnail"},[e("div",{staticClass:"centered"},[e("img",{attrs:{src:t.$refs["external-api"].selected.urls.regular,alt:t.$refs["external-api"].fileName,draggable:"false"}})])])])])]),t._v(" "),e("div",{staticClass:"ms-progress"},[e("div",{staticClass:"ms-progress-bar",style:{width:t.uploadPercentage+"%"}}),t._v(" "),e("span",{staticClass:"text-lg"},[t._v(t._s(t.downloadingMessage?t.downloadingMessage:t.__("Crunching...","ml-slider")))])])]):t._e()]):t._e(),t._v(" "),e(t.component,{directives:[{name:"show",rawName:"v-show",value:!t.downloading,expression:"!downloading"}],ref:"external-api",tag:"component"},[e("template",{slot:"search-tools"},[t._t("search-tools")],2)],2)],1)}),[],!1,null,null,null).exports),Ep=Dd({mounted(){Qc.$on("import-notice",(t=>{this.showNotice(t)}))},computed:id({current:"slideshows/getCurrent"}),methods:{showNotice(t){Vd().fire({title:this.__("Import Slides","ml-slider"),confirmButtonText:this.__("Import slides","ml-slider"),showCancelButton:!0,icon:"info",iconHtml:'<div class="dashicons dashicons-megaphone" style="transform: scale(3.5);"></div>',customClass:"shadow-lg",html:'<p class="text-base">'+this.__("You currently do not have any slides to preview. If you want, we can import some image slides for you.","ml-slider")+"</p>",showLoaderOnConfirm:!0,allowOutsideClick:()=>!Vd().isLoading(),preConfirm:()=>Xc.post("import/images",kd().stringify({action:"ms_import_images",slideshow_id:this.current.id,theme_id:t})).catch((t=>{Vd().showValidationMessage(t)}))}).then((t=>{t.dismiss||window.location.reload(!0)}))}},render:()=>!0},undefined,undefined,!1,null,null,null).exports,jp={data(){return{dragAndDropCapable:!1,files:[],uploadPercentage:0,isDragHovering:!1,error:!1}},mounted(){const t=["drag","dragstart","dragend","dragover","dragenter","dragleave","drop"];this.dragAndDropCapable=this.determineDragAndDropCapable(),this.dragAndDropCapable&&(t.forEach((t=>{this.$refs.fileform.addEventListener(t,(t=>{t.preventDefault(),t.stopPropagation()}))})),this.$refs.fileform.addEventListener("drop",this.attachDropEvent))},methods:{attachDropEvent(t){this.isDragHovering=!0;for(let e=0;e<t.dataTransfer.files.length;e++)/\.(jpe?g|png|gif)$/i.test(t.dataTransfer.files[e].name)&&this.files.push(t.dataTransfer.files[e]);this.files.length||(this.isDragHovering=!1,this.error=this.__("No valid files found","ml-slider")),this.files.length&&this.submitFiles()},determineDragAndDropCapable(){let t=document.createElement("div");return("draggable"in t||"ondragstart"in t&&"ondrop"in t)&&"FormData"in window&&"FileReader"in window},submitFiles(){let t=new FormData;for(let e in this.files)t.append("files["+e+"]",this.files[e]);this.uploadPercentage=1,t.append("action","ms_import_images"),this.files.length&&Xc.post("import/images",t,{headers:{"Content-Type":"multipart/form-data"},onUploadProgress:t=>{let e=parseInt(Math.round(100*t.loaded/t.total))-20;this.uploadPercentage=e>1?e:1}}).then((t=>{console.info("MetaSlider: ",t),this.uploadPercentage=100,window.location.reload(!0)})).catch((t=>{this.uploadPercentage=0,this.isDragHovering=!1,this.$refs.fileform.removeEventListener("drop",this.attachDropEvent),this.error=this.getErrorMessage(t.response),this.notifyError("metaslider/drag-and-drop-error",t,!0)}))}}},Ap=jp,Pp=n(8720),Mp={insert:"head",singleton:!1},Ip=(Qd()(Pp.Z,Mp),Pp.Z.locals,Dd(Ap,(function(){var t=this,e=t._self._c;return e("div",{attrs:{id:"ms-image-drag-drop"}},[t.dragAndDropCapable?t._e():e("span",[t._v(t._s(t.__("Drag and drop interface not available.","ml-slider")))]),t._v(" "),e("form",{directives:[{name:"show",rawName:"v-show",value:t.dragAndDropCapable,expression:"dragAndDropCapable"}]},[e("div",{ref:"fileform",staticClass:"ms-drag-drop",class:{"ms-drag-hovering":t.isDragHovering||t.uploadPercentage>0,"has-error":t.error},on:{dragenter:function(e){t.isDragHovering=!0},dragleave:function(e){t.isDragHovering=!1}}},[t.uploadPercentage>0?e("div",{staticClass:"ms-upload-progress"},[e("div",{staticClass:"ms-progress"},[e("div",{staticClass:"ms-progress-bar",style:{width:t.uploadPercentage+"%"}}),t._v(" "),e("span",[t._v(t._s(t.__("Crunching...","ml-slider")))])])]):t._e()]),t._v(" "),0!==t.uploadPercentage||t.error?t._e():e("span",[t._v(t._s(t.__("Drop images here","ml-slider")))]),t._v(" "),t.error?e("span",{domProps:{textContent:t._s(t.error)}}):t._e()])])}),[],!1,null,"4f6cf952",null).exports),Lp={props:{},data(){return{}},mounted(){let t=window.jQuery;t(".useWithCaution").on("change",(function(){if(!this.checked)return alert(metaslider.useWithCaution)})),t(".metaslider-ui").on("click",".ms-toggle .hndle, .ms-toggle .handlediv",(function(){t(this).parent().toggleClass("closed")})),t(".metaslider-ui").on("keypress",".slider-lib-row label",(function(e){32===e.which&&(e.preventDefault(),t(".slider-lib-row #"+t(this).attr("for")).trigger("click"))}));var e=function(e,n,r){var i=e.is('input[type="checkbox"]')?"checkbox":"select",o="checkbox"===i&&e.is(":checked")===r,s=!("select"!==i||!(e.val()===r||Array.isArray(r)&&-1!==r.indexOf(e.val())));o||s?"#"===n.charAt(0)||"."===n.charAt(0)?t("#metaslider-slides-list").find(n).show():t(".ms-settings-table").find(`[name="settings[${n}]"]`).closest("tr").show():"#"===n.charAt(0)||"."===n.charAt(0)?t("#metaslider-slides-list").find(n).hide():t(".ms-settings-table").find(`[name="settings[${n}]"]`).closest("tr").hide()},n=function(n){t(n).each((function(){var n=t(this);JSON.parse(t(this).attr("data-dependencies")).forEach((function(r){e(n,r.show,r.when),t(document).on("change",".metaslider-ui",n,(function(){e(n,r.show,r.when)}))}))}))},r=function(e){t(".metaslider .option:not(."+e+")").attr("disabled","disabled").parents("tr").hide(),t(".metaslider .option."+e).removeAttr("disabled").parents("tr").show(),t(".metaslider input.radio:not(."+e+")").attr("disabled","disabled"),t(".metaslider input.radio."+e).removeAttr("disabled"),t(".metaslider .showNextWhenChecked:visible").closest("tr").next("tr").hide(),t(".metaslider .showNextWhenChecked:visible:checked").closest("tr").next("tr").show(),"disabled"===t(".effect option:selected").attr("disabled")&&t(".effect option:enabled:first").attr("selected","selected"),"disabled"===t(".theme option:selected").attr("disabled")&&t(".theme option:enabled:first").attr("selected","selected"),n(".ms-settings-table [data-dependencies], #metaslider-slides-list [data-dependencies]"),"flex"==e?t(".flex-setting").show():t(".flex-setting").hide()};Qc.$on(["metaslider/app-loaded","metaslider/slides-created","metaslider/slide-duplicated"],(()=>{n("#metaslider-slides-list [data-dependencies]")})),r(t(".metaslider .select-slider:checked").attr("rel"));var i=function(t){t.is(":checked")?t.closest("tr").next("tr").show():t.closest("tr").next("tr").hide()};i(t(".showNextWhenChecked")),Qc.$on("metaslider/app-loaded",(()=>{i(t(".showNextWhenChecked"))})),t(".metaslider-ui").on("change",".showNextWhenChecked",(function(){i(t(this))})),t(".metaslider-ui").on("change",".left tr.slide .crop_position",(function(){t(this).closest("tr").data("crop_changed",!0)})),t(".metaslider-ui").on("click",".select-slider",(function(){r(t(this).attr("rel"))}))}},$p=Dd(Lp,undefined,undefined,!1,null,null,null).exports;function Dp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Np(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Fp={props:{},data(){return{currentSavedTitle:""}},watch:{current:{immediate:!0,handler:function(t){this.currentSavedTitle=t.title}}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Dp(Object(n),!0).forEach((function(e){Np(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Dp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},id({current:"slideshows/getCurrent"})),created(){},mounted(){},methods:{save(){if(""!=this.current.title){if(this.currentSavedTitle.trim()===this.current.title.trim())return;Ld.saveSingleSlideshowSetting("title",this.current.title.trim()).then((()=>{this.notifySuccess("metaslider/title-saved",this.__("Slideshow title updated"),!0),this.currentSavedTitle=this.current.title}))}else this.notifyError("metaslider/title-saved",this.__("Please add a slideshow title"),!0)},bail(t){this.$store.commit("slideshows/updateTitle",this.currentSavedTitle),this.$nextTick((()=>{t.target.blur()}))}}},Bp=Fp,Rp=n(620),zp={insert:"head",singleton:!1},Up=(Qd()(Rp.Z,zp),Rp.Z.locals,Dd(Bp,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-12"},[e("div",{staticClass:"relative"},[e("input",{staticClass:"h-16 text-2xl font-light rounded-none shadow-none bg-transparent border-0 border-l-4 border-transparent hover:border-gray-light hover:bg-white focus:bg-white focus:shadow-sm focus:border-gray-light rtl:border-l-0 rtl:border-r-0 rtl:ml-0 rtl:-mr-4 rtl:pl-12 rtl:pr-4",staticStyle:{width:"100%!important",transition:"background .3s ease,border-left .3s ease!important"},attrs:{id:"metaslider-current-title","data-lpignore":"true",type:"text",required:""},domProps:{value:t.current.title},on:{change:function(e){return t.$store.commit("slideshows/updateTitle",e.target.value)},keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"escape",void 0,e.key,void 0)?null:(e.preventDefault(),t.bail(e))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:e.target.blur()}],keyup:function(e){return t.$store.commit("slideshows/updateTitle",e.target.value)},blur:function(e){return t.save()}}}),t._v(" "),e("svg",{staticClass:"pointer-events-none opacity-0 transition-all duration-300 ease-in absolute m-2 w-6 top-0 right-0 text-gray rtl:left-0 rtl:right-auto",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.572L16.732 3.732z"}})])]),t._v(" "),e("transition",{attrs:{name:"pop-in-quick-top"}},[t.currentSavedTitle.trim()!==t.current.title.trim()?e("div",{staticClass:"absolute text-gray-dark -ml-4 mt-2 mb-0 text-xs",domProps:{innerHTML:t._s(t.sprintf(t.__("Press %s to save or %s to cancel.","ml-slider"),t.sprintf("<code>%s</code>",t._x("Enter","The ENTER key on a keyboard","ml-slider")),t.sprintf("<code>%s</code>",t._x("Escape","The ESCAPE key on a keyboard","ml-slider"))))}}):t._e()])],1)}),[],!1,null,null,null).exports);function Vp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Hp(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var qp={data(){return{useTitle:!1}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Vp(Object(n),!0).forEach((function(e){Hp(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Vp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},id({current:"slideshows/getCurrent"})),mounted(){this.$refs.shortcode.addEventListener("copy",(t=>{let e=window.getSelection().toString().split("'").map((function(t,e){return t.trim()})).join("'");t.clipboardData.setData("text/plain",e),t.preventDefault()}))},methods:{copyShortcode(t){this.selectText(t.target).copySelected()},copyAll(){this.selectText(this.$refs.shortcode).copySelected()},selectText(t){let e,n;return window.getSelection?(n=window.getSelection(),e=document.createRange(),e.selectNodeContents(t),n.removeAllRanges(),n.addRange(e)):document.body.createTextRange&&(e=document.body.createTextRange(),e.moveToElementText(t),e.select()),this},copySelected(){try{document.execCommand("copy")&&this.notifySuccess("metaslider/copy-success",this.__("Shortcode copied","ml-slider"),!0)}catch(t){this.notifySuccess("metaslider/copy-error",this.__("Shortcode unable to be copied automatically","ml-slider"),!0)}}}},Wp=Dd(qp,undefined,undefined,!1,null,null,null).exports,Zp={data(){return{component:null,filename:"",classes:"w-full max-h-screen",forceOpen:!1,showX:!0}},computed:{},mounted(){Qc.$on("metaslider/open-utility-modal",(t=>{if(!1=="render"in t)return this.notifyError("metaslider/utility-modal-opening-ui",this.__("Failed to open utility modal...","ml-slider")),!1;this.filename="filename"in t?t.filename:"Name not found",this.notifyInfo("metaslider/utility-modal-opening-ui",this.__("Opening utility modal...","ml-slider")+" ("+this.filename+")"),this.component=t,document.body.style.overflow="hidden"}))},methods:{close(){if(this.forceOpen)return this.forceOpen(),void this.$nextTick((()=>{this.forceOpen=!1}));this.notifyInfo("metaslider/utility-modal-closing-ui",this.__("Closing utility modal...","ml-slider")+" ("+this.filename+")"),this.filename="",this.component=null,document.body.style.overflow="initial"}}},Yp=Dd(Zp,(function(){var t=this,e=t._self._c;return t.component?e("div",{staticClass:"fixed w-full h-full inset-0 bg-white-70 flex items-center justify-center p-8 md:p-16",staticStyle:{"z-index":"99999"},attrs:{role:"dialog","aria-modal":"true"}},[e("div",{staticClass:"relative bg-white shadow-xl mt-16 md:mt-0",class:t.classes},[e(t.component,{tag:"component"}),t._v(" "),t.showX?e("button",{staticClass:"close-pin-btn absolute top-0 right-0 rtl:right-auto rtl:left-0 text-gray-dark -mr-3 rtl:mr-0 rtl:-ml-3 -mt-3 p-1.5 bg-white rounded-full w-8 h-8 flex items-center justify-center shadow cursor-pointer border border-gray-lighter",attrs:{"aria-label":"Close Modal"},on:{click:t.close}},[e("svg",{staticClass:"w-full",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z","clip-rule":"evenodd"}})])]):t._e()],1)]):t._e()}),[],!1,null,null,null).exports,Gp=n(9490);function Jp(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Kp(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Xp={props:{slideshow:{type:Object,default:()=>{}},includeImages:{type:Boolean,default:!0}},data(){return{currentSlideImage:0,slideshowPaused:!0,slideshowTimer:0}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Jp(Object(n),!0).forEach((function(e){Kp(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Jp(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({visibleSlides(){return this.slideshow?.slides?.length?this.slideshow.slides.filter((t=>t?.thumbnail)):[]}},id({current:"slideshows/getCurrent"})),created(){this.currentSlideImage=Math.floor(Math.random()*this.visibleSlides.length)},mounted(){this.$refs["sl-meta"+this.slideshow.id].addEventListener("mouseenter",(()=>{clearTimeout(this.slideshowTimer),this.slideshowPaused&&this.startSlideshow(),this.slideshowPaused=!1})),this.$refs["sl-meta"+this.slideshow.id].addEventListener("mouseleave",(()=>{clearTimeout(this.slideshowTimer),this.slideshowPaused=!0}))},methods:{startSlideshow(){const t=()=>{this.slideshowPaused||(this.currentSlideImage=this.currentSlideImage===this.visibleSlides.length-1?0:this.currentSlideImage+1,this.slideshowTimer=setTimeout((()=>{requestAnimationFrame(t)}),1100))};requestAnimationFrame(t)},setting(t){return this.slideshow.settings&&this.slideshow.settings.hasOwnProperty(t)?this.slideshow.settings[t]:""},modifiedAt(){return Gp.ou.fromSQL(this.slideshow.modified_at_gmt,{zone:"utc"}).setLocale(metaslider.locale).toRelative()},loadSlideshow(){window.location.replace(this.metasliderPage+"&id="+this.slideshow.id)}}},Qp=Xp,th=n(8929),eh={insert:"head",singleton:!1},nh=(Qd()(th.Z,eh),th.Z.locals,Dd(Qp,(function(){var t=this,e=t._self._c;return e("a",{ref:"sl-meta"+t.slideshow.id,staticClass:"shadow-none outline-none flex items-start p-4 px-2 group hover:bg-blue-highlight",attrs:{href:this.metasliderPage+"&id="+t.slideshow.id},on:{click:function(e){return e.preventDefault(),t.loadSlideshow()}}},[e("div",{staticClass:"mx-2 w-16 h-16 bg-gray-light"},[t.visibleSlides.length&&t.includeImages?e("div",{staticClass:"relative w-16 h-16"},t._l(t.visibleSlides,(function(n,r){return e("img",{key:n.id,staticClass:"absolute block inset-0 transition-all duration-1000 ease-linear",class:{"opacity-0":r!==t.currentSlideImage},attrs:{src:n.thumbnail}})})),0):t.includeImages?e("div",{staticClass:"border border-gray-dark flex w-16 h-16 items-center justify-center p-2 text-center text-red text-xs"},[t._v("\n\t\t\t"+t._s(t.__("No slides","ml-slider"))+"\n\t\t")]):t._e()]),t._v(" "),e("div",{staticClass:"px-2 flex-grow truncate"},[e("div",{staticClass:"flex pb-2 border-b border-gray-light group-hover:border-gray w-full truncate align-end"},[t.slideshow.id===t.current.id?e("span",{staticClass:"uppercase rounded bg-gray-darkest text-white text-xs px-1 mr-2 rtl:mr-0 rtl:ml-2"},[t._v(t._s(t.__("Current","ml-slider")))]):t._e(),t._v(" "),e("h4",{staticClass:"truncate text-base font-thin m-0 p-0 text-gray-darker group-hover:text-black"},[t._v("\n\t\t\t\t"+t._s(t.slideshow.title)+"\n\t\t\t")])]),t._v(" "),e("p",{staticClass:"text-gray group-hover:text-gray-darker text-xs m-0 mt-1 whitespace-normal"},[t._v("\n\t\t\tid: #"+t._s(t.slideshow.id)+" "),e("span",{staticClass:"text-black"},[t._v("·")]),t._v("\n\t\t\t"+t._s(t.setting("width"))+"x"+t._s(t.setting("height"))+" "),e("span",{staticClass:"text-blackest"},[t._v("·")]),t._v("\n\t\t\t"+t._s(t.sprintf(t._x("%s slides",'number of slides, ex "7 slides"',"ml-slider"),t.slideshow.slides.length))+" "),e("span",{staticClass:"text-blackest"},[t._v("·")]),t._v(" "),e("span",{attrs:{title:t.slideshow.modified_at_gmt}},[t._v(t._s(t.sprintf(t.__("last updated: %s","ml-slider"),t.modifiedAt())))])])])])}),[],!1,null,null,null).exports);function rh(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ih(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var oh={components:{"slideshow-meta":nh},props:{max:{type:Number|String,default:25}},data(){return{focused:!1,selectedSlideshow:-1,maybeAboutToClick:!1,searchTerm:"",searching:!0,slideshows:{}}},watch:{focused(){this.focused||!this.slideshows.length||this.maybeAboutToClick||this.resetSelectedPosition()},searchTerm(){this.searching=!0,this.slideshows={},this.resetSelectedPosition(),this.search()}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?rh(Object(n),!0).forEach((function(e){ih(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):rh(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({summaryText(){if(!this.slideshows.length)return"";const t=1==this.slideshows.length?this.__("Viewing 1 slideshow","ml-slider"):this.__("Viewing %s out of %s slideshows","ml-slider");return this.sprintf(t,this.slideshows.length,this.totalSlideshows)},highlighted(){return this.slideshows.length&&this.selectedSlideshow>-1?this.slideshows[this.selectedSlideshow].id:null},minHeight(){return this.slideshows.length>4?300:50*this.slideshows.length}},nd({totalSlideshows:t=>t.slideshows.totalSlideshows})),created(){Qc.$on("metaslider/title-saved",(()=>{this.search()}))},mounted(){Yf("ctrl+/",(()=>this.focusInput())),Yf("escape",(()=>this.blurInput())),Yf("enter",(()=>this.loadSlideshow())),Yf("up,down",((t,e)=>this.navigateSlideshows(t,e))),Yf.filter=t=>!0,this.search()},methods:{focusInput(){this.$refs.switcher.focus()},blurInput(){this.maybeAboutToClick=!1,this.focused&&this.$refs.switcher.blur()},resetInput(){this.focusInput(),this.searchTerm=""},loadSlideshow(){this.focused&&(this.selectedSlideshow<0||this.slideshows.length&&(event.preventDefault(),window.location.replace(this.metasliderPage+"&id="+this.slideshows[this.selectedSlideshow].id)))},navigateSlideshows(t,e){if(this.focused)switch(t.preventDefault(),e.key){case"down":this.selectedSlideshow+1<this.slideshows.length&&(this.selectedSlideshow++,this.bringSelectedItemIntoFocus());break;case"up":this.selectedSlideshow>0&&(this.selectedSlideshow--,this.bringSelectedItemIntoFocus())}},bringSelectedItemIntoFocus(){this.$refs["switcher-view-area"]&&this.$refs["switcher-view-area"].children[this.selectedSlideshow].scrollIntoView({block:"nearest"})},resetSelectedPosition(){this.selectedSlideshow=0,this.bringSelectedItemIntoFocus(),this.selectedSlideshow=-1},search:tu.debounce((function(){this.searching=!0,Md.search(this.searchTerm,this.max).then((t=>{this.slideshows=t.data.data})).catch((t=>{this.notifyError("metaslider/search-error",t,!0)})).finally((()=>{this.searching=!1}))}),500)}},sh=oh,ah=n(9184),lh={insert:"head",singleton:!1},ch=(Qd()(ah.Z,lh),ah.Z.locals,Dd(sh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"relative w-full h-full py-4"},[e("span",[e("input",{directives:[{name:"model",rawName:"v-model",value:t.searchTerm,expression:"searchTerm"}],ref:"switcher",staticClass:"h-full w-full border border-gray-light focus:bg-white focus:shadow bg-gray-lightest transition duration-300 ease-in shadow-none focus:outline-none border-transparent placeholder-gray-darker rounded m-0 px-8 block appearance-none leading-normal ds-input",attrs:{placeholder:t.__("Search slideshows (Press ctrl + / to focus)‎","ml-slider"),"data-lpignore":"true",type:"text",id:"ms-slideshow-switcher"},domProps:{value:t.searchTerm},on:{focus:function(e){t.focused=!0,e.target.select()},blur:function(e){t.focused=!1},input:function(e){e.target.composing||(t.searchTerm=e.target.value)}}}),t._v(" "),e("span",{staticClass:"top-arrow absolute z-50 w-full mt-3 shadow-md",class:{hidden:!t.maybeAboutToClick&&!t.focused},attrs:{role:"listbox"},on:{mouseover:function(e){t.maybeAboutToClick=!0},mouseout:function(e){t.maybeAboutToClick=!1}}},[e("div",{staticClass:"relative border border-gray-light bg-white rounded pb-2"},[t.searching?[e("span",{staticClass:"block text-sm font-hairline m-4 mb-2"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Searching slideshows...","ml-slider"))+"\n\t\t\t\t\t\t")])]:[e("div",{staticClass:"flex justify-between items-center pb-2 m-4 mb-2 border-b border-gray-lighter"},[e("h3",{staticClass:"text-sm text-gray-dark font-hairline m-0"},[t._v("\n\t\t\t\t\t\t\t\t"+t._s(t.summaryText)+"\n\t\t\t\t\t\t\t")])]),t._v(" "),t.slideshows.length?e("ul",{ref:"switcher-view-area",staticClass:"overflow-scroll overflow-x-hidden",staticStyle:{"max-height":"30vh"},style:"min-height:"+t.minHeight+"px",attrs:{role:"navigation","aria-label":"Slideshow search"}},t._l(t.slideshows,(function(n,r){return e("li",{key:n.id,ref:"switch-item-"+n.id,refInFor:!0,staticClass:"m-0",class:{"bg-blue-highlight highlighted-slideshow-nav":t.highlighted===n.id},on:{mouseover:function(e){t.selectedSlideshow=r}}},[e("slideshow-meta",{attrs:{slideshow:n}})],1)})),0):e("div",{staticClass:"py-2 px-4"},[t._v(t._s(t.__("No slideshows found","ml-slider")))])]],2)])]),t._v(" "),e("div",{staticClass:"absolute inset-y-0 left-0 pl-3 rtl:left-auto rtl:right-0 rtl:pr-3 rtl:pl-0 flex items-center text-gray-dark",class:{"pointer-events-none":t.focused},on:{click:function(e){return t.focusInput()}}},[t.searching?e("svg",{staticClass:"mt-px w-4 ms-spin",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})]):e("svg",{staticClass:"mt-px w-4 cursor-pointer",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 6h16M4 12h16M4 18h16"}})])]),t._v(" "),e("div",{staticClass:"absolute inset-y-0 right-0 rtl:right-auto rtl:left-0 pr-3 rtl:pl-3 rtl:pr-0 flex items-center text-gray-dark",class:{invisible:!t.searchTerm.length},on:{click:function(e){return t.resetInput()}}},[e("svg",{staticClass:"w-4 mt-px",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])])])}),[],!1,null,null,null).exports),uh=n(7220),dh=n.n(uh);function fh(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function ph(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?fh(Object(n),!0).forEach((function(e){hh(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):fh(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function hh(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var mh={components:{"slideshow-meta":nh},props:{open:{type:Boolean,default:!1}},data(){return{opened:this.open,expanded:!1,slideshowsFiltered:[],sortType:"",searchTerm:"",slideshowCountdown:0,sorting:!1}},watch:{slideshows:{immediate:!0,handler:function(t){this.searcher=t.length?new(dh())(t,["title"],{sort:!1}):null,this.sort()}},searchTerm(){this.sorting=!0,tu.debounce((()=>{this.sort()}),1500)()},opened(){this.opened||(this.$refs["drawer-container"].style.maxHeight="12rem",this.expanded=!1),this.saveNavPosition()},expanded(){this.$refs["drawer-container"].style.maxHeight="none"},slideshowsFiltered(){this.slideshowCountdown=this.totalSlideshows-this.slideshowsFiltered.length}},computed:ph(ph({drawerHeight(){return this.opened?"12rem":"0"},summaryText(){if(!this.slideshowsFiltered.length||!this.slideshows.length)return"";let t=this.slideshowsFiltered.length+1;if(this.slideshows.length==this.totalSlideshows){const e=1==t?this.__("1 slideshow","ml-slider"):this.__("Viewing %s out of %s slideshows","ml-slider");return this.sprintf(e,t,this.totalSlideshows)}const e=1==t?this.__("1 slideshow","ml-slider"):this.__("Viewing %s out of %s slideshows (%s loaded)","ml-slider");return this.sprintf(e,t,this.totalSlideshows,this.slideshows.length)}},nd({slideshows:t=>t.slideshows.all,fetchingAllSlideshows:t=>t.slideshows.fetchingAll,totalSlideshows:t=>t.slideshows.totalSlideshows})),id({currentSlideshow:"slideshows/getCurrent"})),created(){this.opened=this.open,Qc.$on("metaslider/open-drawer",(()=>{this.opened=!0})),Qc.$on("metaslider/close-drawer",(()=>{this.opened=!1})),Qc.$on("metaslider/title-saved",(()=>{this.sort()}))},mounted(){},methods:{toggleDrawer(){this.opened=!this.opened},saveNavPosition:tu.debounce((function(){Ld.saveUserSetting("metaslider_nav_drawer_opened",this.opened)}),3e3),sort(){let t=this.searchTerm.trim().length?this.searcher.search(this.searchTerm.replace(/\s/g,"")):[...this.slideshows];this.currentSlideshow&&(t=t.filter((t=>t.id!=this.currentSlideshow.id))),this.slideshowsFiltered=t.sort(this[this.sortType]),this.sorting=!1},sortByTitle(t,e){let n=t.title.toUpperCase(),r=e.title.toUpperCase();return n<r?-1:n>r?1:0},clearCache(){window.localStorage.removeItem("metaslider-vuex-"+this.siteId),window.location.reload(!0)},fetchAllSlideshows(){this.slideshowCountdown=this.totalSlideshows-this.slideshowsFiltered.length;const t=()=>{for(this.slideshowCountdown=this.slideshowCountdown-1;Math.random()>1e-7;);this.slideshowCountdown>0&&requestAnimationFrame(t)};requestAnimationFrame(t),this.notifyInfo("metaslider-loading-all-slideshows",this.sprintf(this.__("Indexing %s slideshows into local storage...","ml-slider"),this.totalSlideshows)),this.$store.dispatch("slideshows/getAllSlideshows").then((()=>{this.notifySuccess("metaslider/all-slideshows-loaded",this.__("All Slideshows loaded","ml-slider"),!0)}))},loadingSlideshowsText(){return this.totalSlideshows<200?this.__("Fetching slideshows...","ml-slider"):this.slideshowCountdown<=0?this.__("Finished","ml-slider"):sprintf(this.__("Indexing slideshows... %s remaining","ml-slider"),this.slideshowCountdown)}}},gh=Dd(mh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"relative w-full"},[e("div",{ref:"drawer-container",staticClass:"w-full bg-gray-light transition-all duration-300 ease-in overflow-hidden border-b border-gray-lightest",style:{"max-height":t.drawerHeight}},[t.isIE11&&t.expanded&&t.totalSlideshows>25?e("div",{staticClass:"text-center p-2"},[t._v("\n\t\t\t"+t._s(t.__("This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.","ml-slider"))+"\n\t\t\t")]):t._e(),t._v(" "),t.expanded?e("div",{staticClass:"relative bg-gray border-b border-gray py-2 text-base text-black text-white w-full"},[e("div",{staticClass:"container px-6"},[e("div",{staticClass:"lg:flex items-center justify-between -mx-2"},[e("div",{staticClass:"flex lg:w-1/2 px-2 mb-2 lg:mb-0"},[e("div",{staticClass:"mr-2 rtl:mr-0 rtl:ml-2"},[e("select",{directives:[{name:"model",rawName:"v-model",value:t.sortType,expression:"sortType"}],staticClass:"text-black bg-gray-lightest block focus:bg-white h-full leading-normal m-0 rounded shadow-none",on:{change:[function(e){var n=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.sortType=e.target.multiple?n:n[0]},function(e){return t.sort()}]}},[e("option",{attrs:{value:"sortByTitle"}},[t._v(t._s(t.__("Sort by title","ml-slider")))]),t._v(" "),e("option",{attrs:{value:""}},[t._v(t._s(t.__("Sort by modified date","ml-slider")))])])]),t._v(" "),e("div",{staticClass:"flex-grow relative"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.searchTerm,expression:"searchTerm"}],staticClass:"appearance-none text-black bg-gray-lightest block focus:bg-white h-full leading-normal m-0 placeholder-gray-darker rounded shadow-none transition-all duration-300 ease-in w-full",attrs:{placeholder:t.__("Filter slideshows‎","ml-slider"),"data-lpignore":"true",type:"text"},domProps:{value:t.searchTerm},on:{input:function(e){e.target.composing||(t.searchTerm=e.target.value)}}}),t._v(" "),e("div",{staticClass:"absolute inset-y-0 right-0 rtl:right-auto rtl:left-0 pr-2 rtl:pl-2 rtl:pr-0 flex items-center text-gray-dark",class:{invisible:!t.searchTerm.length},on:{click:function(e){t.searchTerm=""}}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])])])]),t._v(" "),e("div",{staticClass:"lg:w-1/2 px-2"},[e("div",{staticClass:"flex items-center justify-between -mx-2"},[t.sorting?e("p",{staticClass:"m-0 text-center"},[e("svg",{staticClass:"inline w-5 ms-spin text-gray-darker",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"}})]),t._v("\n                                "+t._s(t.__("Searching...","ml-slider"))+"\n\t\t\t\t\t\t\t")]):e("p",{staticClass:"m-0 p-2 text-center"},[t._v(t._s(t.summaryText))]),t._v(" "),e("div",{staticClass:"p-2 flex"},[t.fetchingAllSlideshows?e("div",{staticClass:"flex items-center"},[e("svg",{staticClass:"w-4 ms-spin mr-1 rtl:mr-0 rtl:ml-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"}})]),t._v(" "),t.slideshows.length<t.totalSlideshows?e("p",{staticClass:"m-0"},[t._v(t._s(t.loadingSlideshowsText()))]):e("p",{staticClass:"m-0"},[t._v(t._s(t.__("Updating...","ml-slider")))])]):e("div",[t.slideshows.length<t.totalSlideshows?e("button",{staticClass:"bg-gray-lighter leading-none m-0 outline-none px-2 py-1 rounded shadow no-underline text-xs",class:{underline:!t.fetchingAllSlideshows},on:{click:function(e){return e.preventDefault(),t.fetchAllSlideshows()}}},[t._v("\n\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Load all","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t")]):e("button",{staticClass:"bg-gray-lighter leading-none m-0 outline-none px-2 py-1 rounded-lg shadow no-underline text-xs",on:{click:function(e){return e.preventDefault(),t.clearCache(t.event)}}},[t._v("\n\t\t\t\t\t\t\t\t\t\t"+t._s(t.__("Clear cache","ml-slider"))+"\n\t\t\t\t\t\t\t\t\t")])]),t._v(" "),t.fetchingAllSlideshows?t._e():e("div",{staticClass:"tipsy-tooltip-bottom inline-flex ml-1 rtl:ml-0 rtl:mr-1",attrs:{title:t.slideshows.length<t.totalSlideshows?t.sprintf(t.__("Load remaining %s slideshows","ml-slider"),t.totalSlideshows-t.slideshows.length):t.__("Press to clear the slideshow cache from your web browser","ml-slider"),"original-title":t.slideshows.length<t.totalSlideshows?t.sprintf(t.__("Load remaining %s slideshows","ml-slider"),t.totalSlideshows-t.slideshows.length):t.__("Press to clear the slideshow cache from your web browser","ml-slider")}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"}})])])])])])])])]):t._e(),t._v(" "),t.slideshowsFiltered.length||t.currentSlideshow?[e("div",{staticClass:"relative"},[e("button",{staticClass:"absolute flex items-center mr-4 mt-5 right-0 rtl:left-0 rtl:ml-4 rtl:mr-0 rtl:right-auto top-0 text-gray-dark hover:text-black",class:{invisible:!t.expanded},on:{click:function(e){e.preventDefault(),t.toggleDrawer(),t.searchTerm=""}}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})])]),t._v(" "),e("ul",{staticClass:"flex -mx-2 overflow-auto",class:{"flex-nowrap p-4":!t.expanded,"flex-wrap justify-lcenter p-10":t.expanded},staticStyle:{"-webkit-overflow-scrolling":"touch","-ms-overflow-style":"-ms-autohiding-scrollbar"},attrs:{role:"navigation","aria-label":"Recent slideshows"}},[e("li",{staticClass:"w-full px-4 my-2 max-w-md",class:{"md:w-1/2 lg:w-1/3 xl:w-1/4 3xl:w-1/5":t.expanded},staticStyle:{"min-width":"400px"}},[e("span",{staticClass:"block -mx-2 rounded bg-white shadow",class:{"whitespace-normal":t.expanded}},[e("slideshow-meta",{attrs:{slideshow:t.currentSlideshow,"include-images":!0}})],1)]),t._v(" "),t._l(t.slideshowsFiltered,(function(n){return e("li",{key:n.id,staticClass:"w-full px-4 my-2 max-w-md",class:{"md:w-1/2 lg:w-1/3 xl:w-1/4 3xl:w-1/5":t.expanded},staticStyle:{"min-width":"400px"}},[e("span",{staticClass:"block -mx-2 rounded bg-white shadow",class:{"whitespace-normal":t.expanded}},[e("slideshow-meta",{attrs:{slideshow:n,"include-images":n.slides.length>0}})],1)])})),t._v(" "),t.expanded?t._e():e("li",{staticStyle:{"min-width":"4rem"}})],2)])]:[e("span",{staticClass:"flex items-center font-normal container text-xl my-4 h-24"},[t._v("\n\t\t\t\t"+t._s(t.searchTerm.length?t.__("No slideshows found","ml-slider"):t.__("Loading slideshows...","ml-slider"))+"\n\t\t\t")])]],2),t._v(" "),e("div",{staticClass:"container mx-auto flex px-6"},[e("button",{staticClass:"block relative transition-all duration-300 ease-in text-xs text-gray-dark px-4 -mt-px border border-t-0 hover:bg-gray-light focus:bg-gray-light rounded-b shadow-none outline-none",class:{"bg-gray-light border-gray-light":t.opened,"bg-gray-lighter pt-1 border-transparent":!t.opened},on:{click:function(e){e.preventDefault(),t.toggleDrawer(),t.searchTerm=""}}},[t.opened?e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M6 18L18 6M6 6l12 12"}})]):[t._v("\n\t\t\t\t\t"+t._s(t.__("Browse slideshows","ml-slider"))+"\n\t\t\t")]],2),t._v(" "),t.opened&&t.slideshowsFiltered.length>4?e("button",{staticClass:"block relative transition-all duration-300 ease-in text-xs text-gray-dark px-4 -mt-px border border-t-0 bg-gray-lighter hover:bg-gray-light rounded-b shadow-none outline-none border-gray-light tipsy-tooltip-bottom-toolbar",attrs:{title:t.expanded?t.__("Collapse","ml-slider"):t.__("Press to expand","ml-slider")},on:{click:function(e){e.preventDefault(),t.expanded=!t.expanded,t.searchTerm=""}}},[e("svg",{staticClass:"w-4",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8 9l4-4 4 4m0 6l-4 4-4-4"}})])]):t._e()])])}),[],!1,null,null,null).exports,vh=Dd({props:{},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mt-6 md:mt-0"},[e("div",{staticClass:"md:grid md:grid-cols-3 md:gap-6"},[e("div",{staticClass:"md:col-span-1"},[e("div",{staticClass:"px-0"},[e("h3",{staticClass:"text-lg font-medium m-0 leading-6 text-gray-darkest"},[t._t("header")],2),t._v(" "),e("p",{staticClass:"m-0 mt-1 text-sm leading-5 text-gray-darker"},[t._t("description")],2),t._v(" "),this.$slots.description2?e("p",{staticClass:"m-0 font-bold mt-2 text-sm leading-5 text-gray-darker"},[t._t("description2")],2):t._e(),t._v(" "),this.$slots.description3?e("p",{staticClass:"m-0 italic mt-2 text-sm leading-5 text-gray-darker"},[t._t("description3")],2):t._e()])]),t._v(" "),e("div",{staticClass:"mt-5 md:mt-0 md:col-span-2"},[t._t("fields")],2)])])}),[],!1,null,null,null).exports,wh={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},yh=n(1989),bh={insert:"head",singleton:!1},_h=(Qd()(yh.Z,bh),yh.Z.locals,Dd(wh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-2",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-5",staticStyle:{width:"50%"}})])}),[],!1,null,"36b0821f",null).exports),xh=Dd({props:{value:String,name:String,wrapperClass:{type:String,default:"w-full"}},components:{"loading-element":_h},data(){return{}},created(){},mounted(){},methods:{save(){this.$emit("click")}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow mb-4 relative",attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 md:p-6"},[e("h3",{staticClass:"text-lg leading-6 m-0 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-dark"},[e("div",{staticClass:"m-0 pt-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 md:flex md:items-center"},[e("div",{class:[t.wrapperClass,"max-w-xs"]},[e("label",{staticClass:"sr-only",attrs:{for:t.name}},[t._t("input-label")],2),t._v(" "),e("div",{staticClass:"relative rounded-md shadow-sm"},[e("input",{staticClass:"form-input block w-full md:text-sm md:leading-5",attrs:{id:t.name,placeholder:t.value},domProps:{value:t.value},on:{input:function(e){return t.$emit("input",e.target.value)}}})])]),t._v(" "),e("span",{staticClass:"mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",attrs:{type:"button"},on:{click:t.save}},[t._v("\n\t\t"+t._s(t.__("Save","ml-slider"))+"\n\t\t")])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,kh={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},Sh=n(7329),Ch={insert:"head",singleton:!1},Oh=(Qd()(Sh.Z,Ch),Sh.Z.locals,Dd(kh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute flex flex-col bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"mt-2 sm:flex md:flex-grow sm:items-start sm:justify-between h-7"},[e("div",{staticClass:"rounded-lg gradient max-w-xl h-full",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"rounded-lg gradient mt-5 w-12 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex h-7 sm:items-center"})])])}),[],!1,null,"54e7a0bf",null).exports),Th=Dd({props:{value:{},containerMargin:{type:String,default:"mb-4"}},components:{"loading-element":Oh},data(){return{}},created(){},mounted(){},methods:{toggle(){const t=!this.value;this.$emit("input",t),this.$emit("change",t)}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow relative",class:[t.containerMargin],attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-darkest",attrs:{id:"renew-headline"}},[t._t("header")],2),t._v(" "),this.$slots.subheader?e("p",{staticClass:"m-0 mb-2 text-gray-darker text-xs whitespace-normal"},[t._t("subheader")],2):t._e(),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between"},[e("div",{staticClass:"max-w-xl text-sm leading-5 text-gray-dark overflow-hidden"},[e("div",{staticClass:"m-0 p-0",attrs:{id:"renew-description"}},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center"},[e("span",{staticClass:"relative inline-block flex-no-shrink h-6 w-11 border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-50 focus:outline-none focus:shadow-outline",class:{"bg-gray-light":!t.value,"bg-orange":t.value},attrs:{"aria-checked":!!t.value&&t.value.toString(),role:"checkbox",tabindex:"0"},on:{click:t.toggle,keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:(e.preventDefault(),t.toggle.apply(null,arguments))}}},[e("span",{staticClass:"inline-block h-5 w-5 rounded-full bg-white shadow transform transition ease-in-out duration-150",class:{"translate-x-5":t.value,"translate-x-0":!t.value},attrs:{"aria-hidden":"true"}})])])]),t._v(" "),t._t("legacy-notices")],2),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null),Eh=Th.exports,jh=Dd({props:{link:{type:String,default:""},newTab:{type:Boolean,default:!1}},components:{},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"bg-white shadow"},[e("div",{staticClass:"px-4 py-5 sm:p-6 flex justify-between items-start"},[e("div",[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-900"},[t._t("header")],2),t._v(" "),this.$slots.description?e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-500"},[e("p",[t._t("description")],2)]):t._e()]),t._v(" "),t.link?e("div",{staticClass:"mt-0 text-sm leading-5"},[e("a",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5 bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white",attrs:{href:t.link,target:t.newTab?"_blank":"_self"}},[t._t("link-text")],2)]):t._e()])])}),[],!1,null,null,null).exports,Ah={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},Ph=n(4982),Mh={insert:"head",singleton:!1},Ih=(Qd()(Ph.Z,Mh),Ph.Z.locals,Dd(Ah,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-2",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"gradient max-w-full rounded-lg h-7 mt-5",staticStyle:{width:"50%"}})])}),[],!1,null,"14128e16",null).exports),Lh=Dd({props:{data:{type:Object,default:{}},canCopy:{type:Boolean,default:!0}},components:{"loading-element":Ih},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"bg-white shadow mb-4 relative"},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("div",{staticClass:"flex items-start justify-between"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-900"},[t._t("header")],2),t._v(" "),t.canCopy?e("button",{staticClass:"w-5 text-blue",attrs:{"aria-label":t.__("Copy all","ml-slider"),title:t.__("Copy all","ml-slider")}},[e("svg",{staticClass:"w-5 inline mr-2",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3"}})])]):t._e()]),t._v(" "),this.$slots.description?e("div",{staticClass:"mt-2 text-sm leading-5 text-gray-500"},[e("p",[t._t("description")],2),t._v(" "),t._t("data-extra")],2):t._e()]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null),$h=Dd({components:{"data-box":Lh.exports,"split-layout":vh,"text-single-input":xh,"textbox-with-link":jh,"switch-single-input":Eh},props:{},data(){return{loading:!0,settings:{license:"",optIn:!1}}},computed:{},created(){},mounted(){},methods:{saveSettings(){const t=JSON.stringify(this.settings);Ld.saveDefaults(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-setting-saved",this.__("All settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))}}},(function(){var t=this,e=t._self._c;return e("div",[e("split-layout",{attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Help Center","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("textbox-with-link",{staticClass:"mb-4",attrs:{link:"https://www.metaslider.com/documentation/","new-tab":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Documentation 📚","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Check out our documentation page for examples, and more information about what you can do with MetaSlider.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Visit documentation","ml-slider")))])],2),t._v(" "),e("textbox-with-link",{staticClass:"mb-4",attrs:{link:"https://wordpress.org/plugins/ml-slider","new-tab":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Free Basic Support 🚀","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Visit wordpress.org","ml-slider")))])],2),t._v(" "),e("textbox-with-link",{staticClass:"mb-4",attrs:{link:"https://www.metaslider.com/support","new-tab":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Paid Premium Support 🌟","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Visit metaslider.com","ml-slider")))])],2),t._v(" "),e("data-box",{staticClass:"lg:mt-10 hidden",attrs:{data:{foo:"bar"},"can-copy":!0}},[e("template",{slot:"header"},[t._v(t._s(t.__("Site Information","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v("\n                    "+t._s(t.__("For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.","ml-slider"))+"\n                ")]),t._v(" "),e("template",{slot:"data-extra"},[e("div",{staticClass:"border-2 border-gray border-dashed h-64"})])],2)],1)],2)],1)}),[],!1,null,null,null).exports,Dh=Dd({props:["value","name"],components:{"loading-element":_h},data(){return{}},created(){},mounted(){},methods:{save(){this.$emit("click")}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"mobile-settings-form",attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"mt-5 md:flex md:items-center"},[e("div",{staticClass:"max-w-xs w-full"},[e("input",{staticClass:"form-input block w-full md:text-sm md:leading-5 relative rounded-md shadow-sm",attrs:{id:t.name,placeholder:t.value},domProps:{value:t.value},on:{input:function(e){return t.$emit("input",e.target.value)}}})]),t._v(" "),e("span",{staticClass:"mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto mobile-settings"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",attrs:{type:"button"},on:{click:t.save}},[t._v("\n        "+t._s(t.__("Save","ml-slider"))+"\n        ")])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,Nh=Dd({props:["value","options"],components:{"loading-element":_h},data(){return{selectedValue:this.value}},watch:{value(t){this.selectedValue=t},selectedValue(t){this.$emit("input",t)}},created(){},mounted(){},methods:{save(){this.$emit("click")}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow mb-4 relative",attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 md:p-6"},[e("h3",{staticClass:"text-lg leading-6 m-0 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-dark"},[e("div",{staticClass:"m-0 pt-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 md:flex md:items-center"},[e("div",{staticClass:"max-w-xs w-full"},[e("label",{staticClass:"sr-only",attrs:{for:t.name}},[t._t("input-label")],2),t._v(" "),e("div",{staticClass:"relative rounded-md shadow-sm"},[e("select",{directives:[{name:"model",rawName:"v-model",value:t.selectedValue,expression:"selectedValue"}],staticClass:"form-select form-select--forced block w-full md:text-sm md:leading-5",attrs:{id:t.name},on:{input:function(e){return t.$emit("input",e.target.value)},change:function(e){var n=Array.prototype.filter.call(e.target.options,(function(t){return t.selected})).map((function(t){return"_value"in t?t._value:t.value}));t.selectedValue=e.target.multiple?n:n[0]}}},t._l(t.options,(function(n){return e("option",{key:n.value,domProps:{value:n.value,selected:n.value===t.selectedValue}},[t._v("\n\t\t\t\t\t"+t._s(n.label)+"\n\t\t\t\t")])})),0)])]),t._v(" "),e("span",{staticClass:"mt-3 inline-flex rounded-md shadow-sm md:mt-0 md:ml-3 md:w-auto"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md text-white bg-orange hover:bg-orange-darker active:bg-orange-darkest transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",attrs:{type:"button"},on:{click:t.save}},[t._v("\n\t\t"+t._s(t.__("Save","ml-slider"))+"\n\t\t")])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,Fh=Dd({props:{link:{type:String,default:""},newTab:{type:Boolean,default:!1}},components:{},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("div",{staticClass:"max-w-4xl mb-6"},[e("div",{staticClass:"bg-yellow-50 border-l-4 border-yellow-400 p-4"},[e("div",{staticClass:"flex"},[e("div",{staticClass:"flex-shrink-0"},[e("svg",{staticClass:"h-5 w-5 text-yellow-400",attrs:{fill:"currentColor",viewBox:"0 0 20 20"}},[e("path",{attrs:{"fill-rule":"evenodd",d:"M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z","clip-rule":"evenodd"}})])]),t._v(" "),e("div",{staticClass:"ml-3"},[e("p",{staticClass:"text-sm p-0 m-0 leading-5 text-yellow-700"},[t._t("description"),t._v(" "),t.link?e("a",{staticClass:"font-medium underline text-yellow-700 hover:text-yellow-600 transition ease-in-out duration-150",attrs:{href:t.link,target:t.newTab?"_blank":"_self"}},[t._t("link-text")],2):t._e()],2)])])])])}),[],!1,null,null,null).exports,Bh={components:{"split-layout":vh,"text-single-input":xh,"text-multiple-input":Dh,"switch-single-input":Eh,"select-field-input":Nh,"alert-warning-small":Fh},props:{},data(){return{loading:!0,optinInfo:{},slideshowDefaults:{title:"",fullWidth:!1,width:0,height:0,smartphone:480,tablet:768,laptop:1024,desktop:1440},globalSettings:{license:"",optIn:!1,adminBar:!0,editLink:!1,legacy:!0,newSlideOrder:"last",mobileSettings:!0,legacyWidget:!0},proSettings:{postFeedFields:30},legacySlideshows:{}}},computed:{defaultTitleDescription(){return this.sprintf(this.__("Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.","ml-slider"),'<code class="bg-transparent p-0 font-bold">{id}</code>')},licenseDescription(){return this.sprintf(this.__("If you are a pro member, enter your license key here to receive updates. %s","ml-slider"),`<a target="_blank" href="${this.hoplink}">${this.__("Upgrade here","ml-slider")}</a>`)},optInDescription(){return this.sprintf(this.__("Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s","ml-slider"),`<a target="_blank" href="${this.privacyLink}">${this.__("View our detailed privacy policy","ml-slider")}</a>`)},isDisabled(){return legacySlideshows,this.form.validated}},created(){Ld.getSlideshowDefaults().then((t=>{let{data:e}=t;Object.keys(e.data).forEach((t=>{this.slideshowDefaults.hasOwnProperty(t)&&(this.slideshowDefaults[t]=e.data[t])})),this.loading=!1})).catch((t=>{this.notifyError("metaslider/settings-load-error",t.response,!0)})),Ld.getGlobalSettings().then((t=>{let{data:e}=t;Object.keys(e.data).forEach((t=>{this.globalSettings.hasOwnProperty(t)&&(this.globalSettings[t]=e.data[t])})),this.loading=!1})).catch((t=>{this.notifyError("metaslider/settings-load-error",t.response,!0)})),Ld.getProSettings().then((t=>{let{data:e}=t;Object.keys(e.data).forEach((t=>{this.proSettings.hasOwnProperty(t)&&(this.proSettings[t]=e.data[t])})),this.loading=!1})).catch((t=>{this.notifyError("metaslider/settings-load-error",t.response,!0)})),Ld.get("optin_user_extras").then((t=>{let{data:e}=t;this.optinInfo=e.data})),Md.legacy().then((t=>{let{data:e}=t;this.legacySlideshows=e.data}))},mounted(){},methods:{saveSlideshowDefaultSettings(){const t=JSON.stringify(this.slideshowDefaults);Ld.saveSlideshowDefaults(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-slideshow-settings-saved",this.__("Slideshow settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))},async saveGlobalSettings(){this.optinInfo={},this.globalSettings.optIn&&await Ld.saveGlobalSettingsSingle("optin_via","manual");const t=JSON.stringify(this.globalSettings);Ld.saveGlobalSettings(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-global-settings-saved",this.__("Global settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))},saveProSettings(){const t=JSON.stringify(this.proSettings);Ld.saveProSettings(t).then((t=>{let{data:e}=t;this.notifyInfo("metaslider/settings-page-slideshow-settings-saved",this.__("Pro settings saved","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/settings-save-error",t.response,!0)}))},isPro(){return"undefined"!==metaslider_api.proUser&&1===Number(metaslider_api.proUser)}}},Rh=Dd(Bh,(function(){var t=this,e=t._self._c;return e("div",[e("split-layout",{attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Slideshow Defaults","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the default settings used when creating new slideshows.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("text-single-input",{attrs:{name:"default-slideshow-title"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.title,callback:function(e){t.$set(t.slideshowDefaults,"title",e)},expression:"slideshowDefaults.title"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Default Slideshow Title","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("span",{domProps:{innerHTML:t._s(t.defaultTitleDescription)}})]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the default title","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("text-single-input",{attrs:{name:"default-slideshow-width","wrapper-class":"w-24"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.width,callback:function(e){t.$set(t.slideshowDefaults,"width",e)},expression:"slideshowDefaults.width"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Base Image Width","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.","ml-slider")))]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the default width","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("text-single-input",{attrs:{name:"default-slideshow-height","wrapper-class":"w-24"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.height,callback:function(e){t.$set(t.slideshowDefaults,"height",e)},expression:"slideshowDefaults.height"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Base Image Height","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.","ml-slider")))]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the default width","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.fullWidth,callback:function(e){t.$set(t.slideshowDefaults,"fullWidth",e)},expression:"slideshowDefaults.fullWidth"}},[e("template",{slot:"header"},[t._v(t._s(t.__("100% Width","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.","ml-slider")))])],2)],1)],2),t._v(" "),e("split-layout",{staticClass:"lg:mt-6",attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Global Settings","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the settings used for all the slideshows on your site.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("text-single-input",{staticClass:"hidden",attrs:{name:"ms-license"},on:{click:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.license,callback:function(e){t.$set(t.globalSettings,"license",e)},expression:"globalSettings.license"}},[e("template",{slot:"header"},[t._v(t._s(t.__("License Key","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("span",{domProps:{innerHTML:t._s(t.licenseDescription)}})]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Update license key","ml-slider"))+"\n\t\t\t\t")])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.optIn,callback:function(e){t.$set(t.globalSettings,"optIn",e)},expression:"globalSettings.optIn"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Help Improve MetaSlider","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("span",{domProps:{innerHTML:t._s(t.optInDescription)}}),t._v(" "),Object.prototype.hasOwnProperty.call(t.optinInfo,"id")?e("small",{staticClass:"italic"},[t._v("Activated by user id #"+t._s(t.optinInfo.id)+" ("+t._s(t.optinInfo.email)+") on "+t._s(new Date(1e3*t.optinInfo.time).toLocaleDateString()))]):t._e()])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.mobileSettings,callback:function(e){t.$set(t.globalSettings,"mobileSettings",e)},expression:"globalSettings.mobileSettings"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Enable Mobile Settings","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Add option to hide slides and captions per screen size.","ml-slider")))])],2),t._v(" "),t.globalSettings.mobileSettings?[e("div",{staticClass:"bg-white shadow mb-4 relative px-4 py-5 md:p-6",attrs:{id:"mobile-settings"}},[e("h3",{staticClass:"text-lg leading-6 m-0 font-medium text-gray-darkest"},[t._v("\n\t\t\t\t\t\t"+t._s(t.__("Mobile Settings","ml-slider"))+"\n\t\t\t\t\t")]),t._v(" "),e("div",{staticClass:"mt-2 max-w-xl text-sm leading-5 text-gray-dark"},[e("div",{staticClass:"m-0 pt-0"},[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("Set breakpoints for different screen sizes","ml-slider"))+"\n\t\t\t\t\t\t")])]),t._v(" "),e("div",{staticClass:"row"},[e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-smartphone"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-smartphone"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.smartphone,callback:function(e){t.$set(t.slideshowDefaults,"smartphone",e)},expression:"slideshowDefaults.smartphone"}})],1),t._v(" "),e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-tablet"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-tablet"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.tablet,callback:function(e){t.$set(t.slideshowDefaults,"tablet",e)},expression:"slideshowDefaults.tablet"}})],1),t._v(" "),e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-laptop"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-laptop"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.laptop,callback:function(e){t.$set(t.slideshowDefaults,"laptop",e)},expression:"slideshowDefaults.laptop"}})],1),t._v(" "),e("div",{staticClass:"col"},[e("span",{staticClass:"dashicons dashicons-desktop"}),t._v(" "),e("text-multiple-input",{attrs:{name:"default-slideshow-desktop"},on:{click:function(e){return t.saveSlideshowDefaultSettings()}},model:{value:t.slideshowDefaults.desktop,callback:function(e){t.$set(t.slideshowDefaults,"desktop",e)},expression:"slideshowDefaults.desktop"}})],1)])])]:t._e(),t._v(" "),e("switch-single-input",{class:{disableSwitch:0!==t.legacySlideshows},on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.legacy,callback:function(e){t.$set(t.globalSettings,"legacy",e)},expression:"globalSettings.legacy"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Disable Legacy Libraries","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive Slides","ml-slider")))]),t._v(" "),0===t.legacySlideshows?e("template",{slot:"legacy-notices"},[e("div",{staticClass:"notice notice-success ml-legacy-notice"},[e("p",[t._v(t._s(t.__("You can safely enable this setting. None of your slideshows use the legacy libraries.","ml-slider")))])])]):t._e(),t._v(" "),0!==t.legacySlideshows?e("template",{slot:"legacy-notices"},[e("div",{staticClass:"notice notice-warning ml-legacy-notice"},[e("p",[t._v(t._s(t.legacySlideshows>1?t.sprintf(t.__("You currently have %s slideshows that use legacy libraries.","ml-slider"),t.legacySlideshows):t.sprintf(t.__("You currently have %s slideshow that uses legacy libraries.","ml-slider"),t.legacySlideshows)))])])]):t._e()],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.adminBar,callback:function(e){t.$set(t.globalSettings,"adminBar",e)},expression:"globalSettings.adminBar"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Enable MetaSlider on Admin Bar","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Add and edit slideshows easier by showing MetaSlider on your admin bar.","ml-slider")))])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.editLink,callback:function(e){t.$set(t.globalSettings,"editLink",e)},expression:"globalSettings.editLink"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Enable Frontend Edit Links","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Edit slideshows easily by showing MetaSlider link under each slideshow.","ml-slider")))])],2),t._v(" "),e("select-field-input",{attrs:{options:[{value:"last",label:t.__("Last","ml-slider")},{value:"first",label:t.__("First","ml-slider")}]},on:{click:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.newSlideOrder,callback:function(e){t.$set(t.globalSettings,"newSlideOrder",e)},expression:"globalSettings.newSlideOrder"}},[e("template",{slot:"header"},[t._v(t._s(t.__("New slides order","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select the position for new added slides.","ml-slider")))])],2),t._v(" "),e("switch-single-input",{on:{change:function(e){return t.saveGlobalSettings()}},model:{value:t.globalSettings.legacyWidget,callback:function(e){t.$set(t.globalSettings,"legacyWidget",e)},expression:"globalSettings.legacyWidget"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Disable Legacy Widget","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("This setting allows you to disable the legacy MetaSlider widget.","ml-slider")))])],2)],2)],2),t._v(" "),t.isPro()?e("split-layout",{staticClass:"lg:mt-6",attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Pro Settings","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Update the MetaSlider Pro settings.","ml-slider")))]),t._v(" "),e("template",{slot:"fields"},[e("text-single-input",{attrs:{name:"default-slideshow-width","wrapper-class":"w-24"},on:{click:function(e){return t.saveProSettings()}},model:{value:t.proSettings.postFeedFields,callback:function(e){t.$set(t.proSettings,"postFeedFields",e)},expression:"proSettings.postFeedFields"}},[e("template",{slot:"header"},[t._v(t._s(t.__("Maximum Number of Custom Field in Post Feed Sliders","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select how many custom fields will display in the dropdown menu when you are inserting tags.","ml-slider")))]),t._v(" "),e("template",{slot:"input-label"},[t._v("\n\t\t\t\t\t"+t._s(t.__("Change the maximum custom fields for Post Feed","ml-slider"))+"\n\t\t\t\t")])],2)],1)],2):t._e()],1)}),[],!1,null,null,null).exports,zh={data(){return{}},created(){},mounted(){},methods:{variableWidth(){return"width:"+(Math.floor(75*Math.random())+30)+"%"}}},Uh=n(5085),Vh={insert:"head",singleton:!1},Hh=(Qd()(Uh.Z,Vh),Uh.Z.locals,Dd(zh,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"absolute bg-white inset-0 sm:p-6 px-4 py-5"},[e("div",{staticClass:"gradient max-w-full rounded-lg h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between h-7"},[e("div",{staticClass:"rounded-lg gradient max-w-xl h-7",style:t.variableWidth()}),t._v(" "),e("div",{staticClass:"rounded-lg gradient mt-5 w-12 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex h-7 sm:items-center"})])])}),[],!1,null,"59da3806",null).exports),qh=Dd({props:{value:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},containerMargin:{type:String,default:"mb-4"}},components:{"loading-element":Hh},data(){return{}},created(){},mounted(){},methods:{}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow relative",class:[t.containerMargin],attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between"},[e("div",{staticClass:"max-w-xl text-sm leading-5 text-gray-500"},[e("div",{staticClass:"m-0 p-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center"},[e("span",{staticClass:"inline-flex rounded-md shadow-sm"},[e("button",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",class:{"bg-gray-darker text-gray-light":t.disabled,"bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white":!t.disabled},attrs:{type:"button",tabindex:"0",disabled:t.disabled},on:{click:function(e){return t.$emit("click")},keydown:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),t.$emit("click"))},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:(e.preventDefault(),t.$emit("click"))}]}},[t._t("button")],2)])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,Wh=Dd({props:{name:{type:String,default:""},value:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},accept:{type:String,default:""},containerMargin:{type:String,default:"mb-4"}},components:{"loading-element":Hh},data(){return{}},created(){},mounted(){},methods:{loadFile(t){if(this.disabled)return;if(!t.target.files[0])return;const e=new FileReader;e.onload=t=>this.$emit("loaded",t.target.result),e.readAsText(t.target.files[0]),t.target.value=""}}},(function(){var t=this,e=t._self._c;return e("form",{staticClass:"bg-white shadow relative",class:[t.containerMargin],attrs:{autocomplete:"off",action:"#",method:"POST"},on:{keydown:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault()}}},[e("div",{staticClass:"px-4 py-5 sm:p-6"},[e("h3",{staticClass:"text-lg m-0 leading-6 font-medium text-gray-darkest"},[t._t("header")],2),t._v(" "),e("div",{staticClass:"mt-2 sm:flex sm:items-start sm:justify-between"},[e("div",{staticClass:"max-w-xl text-sm leading-5 text-gray-500"},[e("div",{staticClass:"m-0 p-0"},[t._t("description")],2)]),t._v(" "),e("div",{staticClass:"mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center"},[e("span",{staticClass:"inline-flex rounded-md shadow-sm"},[e("label",{staticClass:"w-full inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-md transition ease-in-out duration-150 md:w-auto md:text-sm md:leading-5",class:{"bg-gray-darker text-gray-light":t.disabled,"bg-orange hover:bg-orange-darker active:bg-orange-darkest text-white":!t.disabled},attrs:{for:t.name,tabindex:"0",disabled:t.disabled}},[t._t("button")],2),t._v(" "),e("input",{staticClass:"hidden",attrs:{id:t.name,accept:t.accept,disabled:t.disabled,type:"file"},on:{change:t.loadFile}})])])])]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[t.$parent.$attrs.loading?e("loading-element"):t._e()],1)],1)}),[],!1,null,null,null).exports,Zh=n(5823),Yh=n.n(Zh),Gh={components:{"split-layout":vh,"switch-single-input":Eh,"file-button":Wh,"action-button":qh},computed:{slideshowsToImport(){if(!Object.keys(this.slideshowsListSelection).length)return[];let t=[];return Object.keys(this.slideshowsListSelection).forEach((e=>{this.slideshowsListSelection[e]&&t.push(e)})),t},missingImages(){return this.slideshowsToImport.filter((t=>{if(!this.slideshowsList[t]||!this.slideshowsList[t].slides)return!1;return this.slideshowsList[t].slides.filter((t=>!(["external","post_feed"].indexOf(t.meta["ml-slider_type"])>-1)&&!t.id)).length}))}},watch:{slideshowsList:{immediate:!1,handler:function(t){let e=[];Object.keys(t).forEach((t=>{if(this.slideshowsList[t].slides){let n=this.slideshowsList[t].slides.map((t=>[t.image,t.image_alt]));e.push(...n)}})),e.length&&(e=e.flat().filter((t=>t.length)),e=[...new Set(e)],e&&this.findImages(e))}}},props:{},data(){return{metadata:"",slideshowsList:{},slideshowsListSelection:{},imageThumbnails:{},processing:!1,procesingImages:!1,importing:!1,userSawProcessingImagesMessage:!1}},created(){},mounted(){},methods:{loadSlideshowsFromFile(t){this.slideshowsList={},this.slideshowsListSelection={},t||this.notifyWarning("metaslider-importing-slideshows-bad-data",this.__("The data in this file does not appear to be valid.","ml-slider"),!0),this.processing=!0;try{t=JSON.parse(t),this.metadata=t.metadata,delete t.metadata,this.slideshowsList=t;const e={};for(const[t,n]of Object.entries(this.slideshowsList))e[t]=!0;this.slideshowsListSelection=e,this.notifySuccess("metaslider/all-slideshows-from-file-loaded",this.sprintf(this.__("Found %s slideshows","ml-slider"),Object.keys(this.slideshowsList).length),!0)}catch(t){this.slideshowsList={},this.notifyError("metaslider/all-slideshows-from-file-error",t.message,!0)}this.processing=!1},findImages(t){this.procesingImages=!0,$d.findIdFromFilename(JSON.stringify(t)).then((t=>{const e=t.data.data;Object.keys(e).forEach((t=>{e[t]&&this.$set(this.imageThumbnails,e[t].id,e[t].thumbnail)})),Object.keys(this.slideshowsList).forEach((t=>{this.slideshowsList[t].slides&&Object.keys(this.slideshowsList[t].slides).forEach((n=>{let r=this.slideshowsList[t].slides[n].image,i=this.slideshowsList[t].slides[n].image_alt;e[r]?this.$set(this.slideshowsList[t].slides[n],"id",e[r].id):e[i]&&this.$set(this.slideshowsList[t].slides[n],"id",e[i].id)}))})),this.procesingImages=!1,this.userSawProcessingImagesMessage&&this.notifyInfo("metaslider-finding-images-success",this.__("Image search complete","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/import-from-file-error",t,!0)}))},async importSlideshows(){if(this.procesingImages)return this.userSawProcessingImagesMessage=!0,void this.notifyWarning("metaslider-importing-slideshows-still-processing-images",this.__("We are still searching for your images. Please wait.","ml-slider"),!0);this.slideshowsToImport.length||this.notifyWarning("metaslider-importing-slideshows-no-slideshows",this.__("You have no slideshows to import","ml-slider"),!0),this.importing=!0,this.processing=!0;const t=[];this.slideshowsToImport.forEach((e=>{t.push(this.slideshowsList[e])}));if(!(this.missingImages.length?await Vd().fire({title:this.__("Some images are missing","ml-slider"),html:'<p class="text-base">'+this.__("When images are missing you will have to manually update or delete the slide after the import completes.","ml-slider")+"</p>",confirmButtonText:this.__("Continue","ml-slider"),showCancelButton:!0,icon:"warning",iconHtml:'<div class="dashicons dashicons-warning" style="transform: scale(3.5);"></div>',customClass:"shadow-lg"}):{value:!0}).value)return this.importing=!1,void(this.processing=!1);this.notifyInfo("metaslider-importing-slideshows",this.sprintf(this.__("Importing %s slideshows...","ml-slider"),this.slideshowsToImport.length),!0),Md.import(JSON.stringify([...t])).then((t=>{this.notifySuccess("metaslider-importing-slideshows-success",this.__("Import successful","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/import-error",t,!0)})).finally((()=>{this.importing=!1,this.processing=!1}))},fileDate(){return Gp.ou.fromISO(new Date(this.metadata.date).toISOString()).toFormat("yyyy/MM/dd")},randomBgColor(){const t=["bg-gray-dark","bg-gray-light","bg-gray-lighter","bg-gray-lightest"];return t[Math.floor(Math.random()*t.length)]},slidesMissingImages(t){return this.slideshowsList[t].slides.filter((t=>!(["post_feed","external"].indexOf(t.meta["ml-slider_type"])>-1)&&!t.id))},toggleSlideshowsToImport(t){Object.keys(this.slideshowsListSelection).forEach((e=>this.slideshowsListSelection[e]=t))}}},Jh=Gh,Kh=n(2693),Xh={insert:"head",singleton:!1},Qh=(Qd()(Kh.Z,Xh),Kh.Z.locals,Dd(Jh,(function(){var t=this,e=t._self._c;return e("div",[e("split-layout",[e("template",{slot:"header"},[t._v(t._s(t.__("Import","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v("\n\t\t\t"+t._s(t.__("Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.","ml-slider"))+"\n\t\t")]),t._v(" "),e("template",{slot:"fields"},[e("file-button",{attrs:{name:"import",accept:".json",disabled:t.processing},on:{loaded:t.loadSlideshowsFromFile}},[e("template",{slot:"header"},[t._v(t._s(t.__("Load slideshows","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.sprintf(t.__("If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.","ml-slider"),t.slideshowsToImport)))]),t._v(" "),t.importing?e("template",{slot:"button"},[t._v(t._s(t.__("Importing...","ml-slider")))]):t.processing?e("template",{slot:"button"},[t._v(t._s(t.__("Processing...","ml-slider")))]):e("template",{slot:"button"},[e("svg",{staticClass:"w-5 -ml-1 pr-1",attrs:{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor"}},[e("path",{attrs:{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12"}})]),t._v("\n                    "+t._s(t.__("Upload file","ml-slider"))+"\n\t\t\t\t")])],2)],1)],2),t._v(" "),Object.keys(t.slideshowsList).length?e("split-layout",{attrs:{loading:t.importing||t.processing}},[e("template",{slot:"header"},[t._v(t._s(t.__("Slideshows","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("pre",[t._v(t._s(t.sprintf(t.__("Date: %s","ml-slider"),t.fileDate()))+"\n"+t._s(t.sprintf(t.__("Version: v%s","ml-slider"),t.metadata.version))+"\n\t\t\t")]),t._v(" "),t.procesingImages||t.missingImages.length?t._e():e("div",[t._v("\n\t\t\t\t\t"+t._s(t.__("All images required to import are accounted for.","ml-slider"))+"\n\t\t\t\t")]),t._v(" "),e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[!t.procesingImages&&t.missingImages.length?e("div",[e("h4",[t._v(t._s(t.__("The following images were not found:","ml-slider")))]),t._v(" "),e("div",t._l(t.missingImages,(function(n){return e("div",{key:n},[e("p",{staticClass:"font-bold underline mb-1"},[t._v("\n\t\t\t\t\t\t\t\t"+t._s(t.slideshowsList[n].title)+"\n\t\t\t\t\t\t\t")]),t._v(" "),e("ul",{staticClass:"mb-4"},t._l(t.slidesMissingImages(n),(function(n){return e("li",{key:n.original_id,staticClass:"mb-0"},[t._v("\n\t\t\t\t\t\t\t\t\t"+t._s(n.image?n.image:t.__("No image name provided","ml-slider"))+"\n\t\t\t\t\t\t\t\t")])})),0)])})),0)]):t._e()])],1),t._v(" "),e("template",{slot:"description3"},[e("transition",{attrs:{name:"settings-fade",mode:"in-out"}},[!t.procesingImages&&t.missingImages.length?e("div",[t._v("\n\t\t\t\t\t"+t._s(t.__("Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.","ml-slider"))+"\n\t\t\t\t")]):t._e()])],1),t._v(" "),e("template",{slot:"fields"},[e("div",{staticClass:"mb-10"},[e("action-button",{attrs:{disabled:!t.slideshowsToImport.length},on:{click:t.importSlideshows}},[e("template",{slot:"header"},[t._v(t._s(t.sprintf(t.__("Import %s slideshows","ml-slider"),t.slideshowsToImport.length)))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select the slideshows you wish to import below, then press here to import them.","ml-slider")))]),t._v(" "),e("template",{slot:"button"},[t._v(t._s(t.__("Import","ml-slider")))])],2),t._v(" "),Object.keys(t.slideshowsList).length>10?e("switch-single-input",{attrs:{value:t.slideshowsToImport.length>0},on:{change:function(e){return t.toggleSlideshowsToImport(e)}}},[e("template",{slot:"header"},[t._v(t._s(t.__("Toggle all slideshows")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select or deselect all slideshows")))])],2):t._e()],1),t._v(" "),t._l(t.slideshowsList,(function(n,r){return[e("switch-single-input",{key:r,staticClass:"transition-all duration-150 ease-linear",style:{filter:t.slideshowsListSelection[r]?"none":"grayscale(1)"},model:{value:t.slideshowsListSelection[r],callback:function(e){t.$set(t.slideshowsListSelection,r,e)},expression:"slideshowsListSelection[index]"}},[e("template",{slot:"header"},[e("input",{staticClass:"-ml-2 hover:bg-gray-lighter hover:border border-gray-light px-2 py-1 text-lg",domProps:{value:n.title||"Title not found"},on:{change:function(e){t.slideshowsList[r].title=e.target.value}}})]),t._v(" "),e("template",{slot:"description"},[n.slides?e("div",{staticClass:"pl-3 inline-flex flex-row-reverse justify-end relative z-0 overflow-hidden"},[t._l(n.slides,(function(n){return e("div",{key:n.original_id,staticClass:"relative -ml-3 z-30 inline-block h-12 w-12 text-white border border-gray-light shadow-solid rounded-full"},["post_feed"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue border border-blue flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("Post Feed slide","ml-slider"),title:t.__("Post Feed slide","ml-slider")}},[t._v("\n\t\t\t\t\t\t\t\t\tP\n\t\t\t\t\t\t\t\t")]):"external"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue-light border border-blue-light flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("External slide","ml-slider"),title:t.__("External slide","ml-slider")}},[t._v("\n\t\t\t\t\t\t\t\t\tE\n\t\t\t\t\t\t\t\t")]):n.id||t.procesingImages?n.id?e("img",{staticClass:"gradient border border-white rounded-full h-full inline-block",attrs:{src:t.imageThumbnails[n.id],alt:""}}):e("div",{staticClass:"gradient border border-white text-white rounded-full h-full",style:{"animation-delay":[500*r*Math.random()+"ms"]}}):e("div",{staticClass:"gradient border border-white rounded-full h-full flex justify-center items-center text-red tipsy-tooltip-top",style:{"animation-delay":[500*r*Math.random()+"ms"]},attrs:{"original-title":t.sprintf(t.__("Image not found<br>%s","ml-slider"),n.image),title:t.sprintf(t.__("Image not found<br>%s","ml-slider"),n.image)}},[t._v("\n\t\t\t\t\t\t\t\t\tx\n\t\t\t\t\t\t\t\t")])])})),t._v(" "),e("div",{staticClass:"relative -ml-3 z-50 inline-block bg-gray-lighter flex items-center justify-center text-lg text-gray-dark h-12 w-12 rounded-full shadow-solid border border-gray-light"},[t._v("\n\t\t\t\t\t\t\t\t"+t._s(n.slides.length)+"\n\t\t\t\t\t\t\t")])],2):e("div",[t._v("\n\t\t\t\t\t\t\t"+t._s(t.__("No slides found","ml-slider"))+"\n\t\t\t\t\t\t")])])],2)]}))],2)],2):t._e()],1)}),[],!1,null,"78d91dd4",null)),tm=Qh.exports;function em(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function nm(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?em(Object(n),!0).forEach((function(e){rm(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):em(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function rm(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var im={components:{"split-layout":vh,"switch-single-input":Eh,"action-button":qh,"textbox-with-link":jh,"alert-warning-small":Fh},computed:nm(nm({},nd({slideshows:t=>t.slideshows.all,totalSlideshows:t=>t.slideshows.totalSlideshows})),{},{loading(){return this.totalSlideshows<1},slideshowsToExport(){if(!Object.keys(this.slideshowsList).length)return[];let t=[];return Object.keys(this.slideshowsList).forEach((e=>{this.slideshowsList[e]&&t.push(e)})),t}}),watch:{totalSlideshows:{immediate:!0,handler:function(t){this.$nextTick((()=>{t&&t<25&&this.fetchAllSlideshows()}))}}},props:{needsSlideshows:{type:Boolean,default:!1}},data(){return{slideshowsList:{},processing:!1,exporting:!1}},created(){},mounted(){},methods:{fetchAllSlideshows(){this.processing=!0,this.notifyInfo("metaslider-loading-all-slideshows",this.sprintf(this.__("Loading %s slideshows...","ml-slider"),this.totalSlideshows,!0)),this.$store.dispatch("slideshows/getAllSlideshows").then((()=>{this.slideshowsList={};const t={};this.slideshows.forEach((e=>{t[e.id]=!0})),this.slideshowsList=t,this.processing=!1,this.notifySuccess("metaslider/all-slideshows-loaded",this.__("All Slideshows loaded","ml-slider"),!0)}))},exportSlideshows(){this.slideshowsToExport.length||this.notifyWarning("metaslider-exporting-slideshows-no-slideshows",this.__("You have no slideshows to export","ml-slider"),!0),this.exporting=!0,this.processing=!0,this.notifyInfo("metaslider-exporting-slideshows",this.sprintf(this.__("Exporting %s slideshows...","ml-slider"),this.slideshowsToExport.length),!0),Md.export(this.slideshowsToExport).then((t=>{const e=window.location.hostname.replace(".","-"),n=(new Date).toJSON();Yh()(t.data,`metaslider-export-${e}-${n}.json`),this.notifySuccess("metaslider-exporting-slideshows-success",this.__("Export successful","ml-slider"),!0)})).catch((t=>{this.notifyError("metaslider/export-error",t,!0)})).finally((()=>{this.exporting=!1,this.processing=!1}))},modifiedAt(t){return Gp.ou.fromSQL(t.modified_at_gmt,{zone:"utc"}).setLocale(metaslider.locale).toRelative()},toggleSlideshowsToExport(t){Object.keys(this.slideshowsList).forEach((e=>this.slideshowsList[e]=t))}}},om={components:{helpcenter:$h,settings:Rh,import:tm,export:Dd(im,(function(){var t=this,e=t._self._c;return e("div",[t.needsSlideshows?e("div",[e("alert-warning-small",{attrs:{link:t.metasliderPage}},[e("template",{slot:"description"},[t._v(t._s(t.__("No slideshows found.","ml-slider")))]),t._v(" "),e("template",{slot:"link-text"},[t._v(t._s(t.__("Create a new slideshow now","ml-slider")))])],2)],1):t._e(),t._v(" "),e("split-layout",{attrs:{loading:t.loading}},[e("template",{slot:"header"},[t._v(t._s(t.__("Export","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[e("ul",{staticClass:"export-instruction"},[e("li",[t._v(t._s(t.__('If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the "Load" button.',"ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__("Choose the slideshows you wish to export.","ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__('Click the "Export" button.',"ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__("A .json file will automatically be downloaded with all your slideshow data.","ml-slider")))])]),t._v(" "),e("b",[t._v(t._s(t.__("A few notes on exporting slideshow images:","ml-slider")))]),t._v(" "),e("ul",{staticClass:"export-instruction"},[e("li",[t._v(t._s(t.__("Your images need to be exported manually. Please upload them to the new website before importing these slideshows.","ml-slider")))]),t._v(" "),e("li",[t._v(t._s(t.__("Images will need to keep the same file names on the new site.","ml-slider"))+" "),e("a",{attrs:{href:"https://www.metaslider.com/how-to-export-and-import-slideshows-from-one-website-to-another",target:"_blank"}},[t._v(t._s(this.__("Read our guide on exporting images.","ml-slider"))+" "),e("span",{staticClass:"dashicons dashicons-external"})])])])]),t._v(" "),e("template",{slot:"fields"},[t.needsSlideshows?e("div",[e("textbox-with-link",{attrs:{link:"","new-tab":!1}},[e("template",{slot:"header"},[t._v(t._s(t.__("No slideshows found","ml-slider")))])],2)],1):e("action-button",{attrs:{disabled:t.processing},on:{click:t.fetchAllSlideshows}},[e("template",{slot:"header"},[t._v(t._s(t.__("Load slideshows","ml-slider")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.sprintf(t.__("You have %s slideshows that can be exported. Information about each slideshow will be presented below.","ml-slider"),t.totalSlideshows))+"\n        ")]),t._v(" "),t.exporting?e("template",{slot:"button"},[t._v(t._s(t.__("Processing...","ml-slider")))]):Object.keys(t.slideshowsList).length?e("template",{slot:"button"},[t._v(t._s(t.__("Refresh","ml-slider"))+"\n        ")]):t.processing?e("template",{slot:"button"},[t._v(t._s(t.__("Loading...","ml-slider")))]):e("template",{slot:"button"},[t._v(t._s(t.__("Load","ml-slider")))])],2),t._v(" "),Object.keys(t.slideshowsList).length||t.processing?[e("action-button",{attrs:{disabled:!t.slideshowsToExport.length},on:{click:t.exportSlideshows}},[e("template",{slot:"header"},[t._v(t._s(t.sprintf(t.__("Export %s slideshows","ml-slider"),t.slideshowsToExport.length))+"\n          ")]),t._v(" "),e("template",{slot:"description"},[t._v("\n            "+t._s(t.__("Select the slideshows you wish to export below, then press here to export them.","ml-slider"))+"\n          ")]),t._v(" "),e("template",{slot:"button"},[t._v(t._s(t.__("Export","ml-slider")))])],2),t._v(" "),Object.keys(t.slideshows).length>10?e("switch-single-input",{attrs:{value:t.slideshowsToExport.length>0},on:{change:function(e){return t.toggleSlideshowsToExport(e)}}},[e("template",{slot:"header"},[t._v(t._s(t.__("Toggle all slideshows")))]),t._v(" "),e("template",{slot:"description"},[t._v(t._s(t.__("Select or deselect all slideshows")))])],2):t._e(),t._v(" "),t._l(t.slideshows,(function(n){return e("div",{key:n.id},[e("switch-single-input",{model:{value:t.slideshowsList[n.id],callback:function(e){t.$set(t.slideshowsList,n.id,e)},expression:"slideshowsList[slideshow.id]"}},[e("template",{slot:"header"},[t._v(t._s(n.title))]),t._v(" "),e("template",{slot:"subheader"},[e("span",{attrs:{title:n.modified_at_gmt}},[t._v(t._s(t.sprintf(t.__("last updated: %s","ml-slider"),t.modifiedAt(n))))])]),t._v(" "),e("template",{slot:"description"},[e("div",{staticClass:"pl-3 inline-flex flex-row-reverse justify-end relative z-0 overflow-hidden"},[t._l(n.slides,(function(n){return e("div",{key:n.id,staticClass:"relative -ml-3 z-30 inline-block h-12 w-12 text-white border border-gray-light shadow-solid rounded-full"},["post_feed"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue border border-blue flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("Post Feed slide","ml-slider"),title:t.__("Post Feed slide","ml-slider")}},[t._v("\n                    P\n                  ")]):"external"===n.meta["ml-slider_type"]?e("div",{staticClass:"bg-blue-light border border-blue-light flex items-center justify-center text-lg text-white rounded-full h-full tipsy-tooltip-top",attrs:{"original-title":t.__("External slide","ml-slider"),title:t.__("External slide","ml-slider")}},[t._v("\n                    E\n                  ")]):e("img",{staticClass:"gradient border border-white rounded-full h-full inline-block",attrs:{src:n.thumbnail,alt:""}})])})),t._v(" "),e("div",{staticClass:"relative -ml-3 z-50 inline-block bg-gray-lighter flex items-center justify-center text-lg text-gray-dark h-12 w-12 rounded-full shadow-solid border border-gray-light"},[t._v("\n                  "+t._s(n.slides.length)+"\n                ")])],2)])],2)],1)}))]:t._e()],2)],2)],1)}),[],!1,null,null,null).exports},props:{},data(){return{component:"settings",hasNotice:!1}},mounted(){this.hasNotice=!!document.querySelector(".updraft-ad-container");const t=()=>{window.requestAnimationFrame((()=>{const t=document.getElementById("wpadminbar"),e=document.getElementById("ms-toolbar"),n="absolute"!==window.getComputedStyle(t).position?e.clientHeight:t.clientHeight+e.clientHeight;this.hasNotice||document.getElementById("metaslider-settings-page").setAttribute("style",`padding-top:${n}px!important`),document.getElementById("metaslider-ui").setAttribute("style",`height:calc(100vh - ${t.clientHeight}px)!important`)}))};t(),window.addEventListener("resize",t),Qc.$on("metaslider/open-settings-page",(t=>{if(!1=="render"in t)return this.notifyError("metaslider/open-settings-page",this.__("Failed to open the settings page...","ml-slider")),!1;const e="filename"in t?t.filename:"Name not found";this.notifyInfo("metaslider/open-settings-page",this.__("Opening settings page...","ml-slider")+" ("+e+")"),this.component=t}))},methods:{loadPage(t){Object.keys(this.$options.components).includes(t)?this.component=t:this.notifyError("metaslider/open-settings-page",this.sprintf(this.__("Page not found: %s","ml-slider"),t))}},render(){return this.$scopedSlots.default({})}},sm=Dd(om,undefined,undefined,!1,null,null,null).exports;rr.component("metaslider-settings-viewer",$p),rr.component("metaslider-slide-viewer",lp),rr.component("metaslider-slide",cp),rr.component("metaslider-caption",hp),rr.component("metaslider-theme-viewer",Cf),rr.component("metaslider-preview",ip),rr.component("metaslider-external",Tp),rr.component("metaslider-shortcode",Wp),rr.component("metaslider-utility-modal",Yp),rr.component("metaslider-dragdrop-import",Ip),rr.component("metaslider-switcher",ch),rr.component("metaslider-drawer",gh),rr.component("metaslider-title",Up),rr.component("metaslider-settings-page",sm),rr.component("metaslider-import-module",Ep),window.metaslider.components&&Object.keys(window.metaslider.components).forEach((t=>{rr.component(t,window.metaslider.components[t])})),window.jQuery(window).on("metaslider/initialize_external_api",((t,e)=>{window.metaslider.externalVM=(new rr).$mount(e.selector)})),window.jQuery(window).on("metaslider/destroy_external_api",(t=>{window.metaslider.externalVM&&window.metaslider.externalVM.$destroy()})),rr.component("metaslider",nf),rr.component("metaslider-toolbar",of);const am=new rr({store:Ad}).$mount("#metaslider-ui");window.metaslider||(window.metaslider={}),window.metaslider.app={Vue:rr,MetaSlider:am,Slideshow:nf,EventManager:Qc,Axios:Xc,store:Ad}},9742:function(t,e){"use strict";e.byteLength=function(t){var e=l(t),n=e[0],r=e[1];return 3*(n+r)/4-r},e.toByteArray=function(t){var e,n,o=l(t),s=o[0],a=o[1],c=new i(function(t,e,n){return 3*(e+n)/4-n}(0,s,a)),u=0,d=a>0?s-4:s;for(n=0;n<d;n+=4)e=r[t.charCodeAt(n)]<<18|r[t.charCodeAt(n+1)]<<12|r[t.charCodeAt(n+2)]<<6|r[t.charCodeAt(n+3)],c[u++]=e>>16&255,c[u++]=e>>8&255,c[u++]=255&e;2===a&&(e=r[t.charCodeAt(n)]<<2|r[t.charCodeAt(n+1)]>>4,c[u++]=255&e);1===a&&(e=r[t.charCodeAt(n)]<<10|r[t.charCodeAt(n+1)]<<4|r[t.charCodeAt(n+2)]>>2,c[u++]=e>>8&255,c[u++]=255&e);return c},e.fromByteArray=function(t){for(var e,r=t.length,i=r%3,o=[],s=16383,a=0,l=r-i;a<l;a+=s)o.push(c(t,a,a+s>l?l:a+s));1===i?(e=t[r-1],o.push(n[e>>2]+n[e<<4&63]+"==")):2===i&&(e=(t[r-2]<<8)+t[r-1],o.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"="));return o.join("")};for(var n=[],r=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,a=o.length;s<a;++s)n[s]=o[s],r[o.charCodeAt(s)]=s;function l(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");return-1===n&&(n=e),[n,n===e?0:4-n%4]}function c(t,e,r){for(var i,o,s=[],a=e;a<r;a+=3)i=(t[a]<<16&16711680)+(t[a+1]<<8&65280)+(255&t[a+2]),s.push(n[(o=i)>>18&63]+n[o>>12&63]+n[o>>6&63]+n[63&o]);return s.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},8764:function(t,e,n){"use strict";var r=n(9742),i=n(645),o="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;e.lW=l,e.h2=50;var s=2147483647;function a(t){if(t>s)throw new RangeError('The value "'+t+'" is invalid for option "size"');var e=new Uint8Array(t);return Object.setPrototypeOf(e,l.prototype),e}function l(t,e,n){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return d(t)}return c(t,e,n)}function c(t,e,n){if("string"==typeof t)return function(t,e){"string"==typeof e&&""!==e||(e="utf8");if(!l.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var n=0|m(t,e),r=a(n),i=r.write(t,e);i!==n&&(r=r.slice(0,i));return r}(t,e);if(ArrayBuffer.isView(t))return function(t){if(z(t,Uint8Array)){var e=new Uint8Array(t);return p(e.buffer,e.byteOffset,e.byteLength)}return f(t)}(t);if(null==t)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(z(t,ArrayBuffer)||t&&z(t.buffer,ArrayBuffer))return p(t,e,n);if("undefined"!=typeof SharedArrayBuffer&&(z(t,SharedArrayBuffer)||t&&z(t.buffer,SharedArrayBuffer)))return p(t,e,n);if("number"==typeof t)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=t.valueOf&&t.valueOf();if(null!=r&&r!==t)return l.from(r,e,n);var i=function(t){if(l.isBuffer(t)){var e=0|h(t.length),n=a(e);return 0===n.length||t.copy(n,0,0,e),n}if(void 0!==t.length)return"number"!=typeof t.length||U(t.length)?a(0):f(t);if("Buffer"===t.type&&Array.isArray(t.data))return f(t.data)}(t);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof t[Symbol.toPrimitive])return l.from(t[Symbol.toPrimitive]("string"),e,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}function u(t){if("number"!=typeof t)throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function d(t){return u(t),a(t<0?0:0|h(t))}function f(t){for(var e=t.length<0?0:0|h(t.length),n=a(e),r=0;r<e;r+=1)n[r]=255&t[r];return n}function p(t,e,n){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(n||0))throw new RangeError('"length" is outside of buffer bounds');var r;return r=void 0===e&&void 0===n?new Uint8Array(t):void 0===n?new Uint8Array(t,e):new Uint8Array(t,e,n),Object.setPrototypeOf(r,l.prototype),r}function h(t){if(t>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return 0|t}function m(t,e){if(l.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||z(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var n=t.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return F(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return B(t).length;default:if(i)return r?-1:F(t).length;e=(""+e).toLowerCase(),i=!0}}function g(t,e,n){var r=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return A(this,e,n);case"utf8":case"utf-8":return O(this,e,n);case"ascii":return E(this,e,n);case"latin1":case"binary":return j(this,e,n);case"base64":return C(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return P(this,e,n);default:if(r)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),r=!0}}function v(t,e,n){var r=t[e];t[e]=t[n],t[n]=r}function w(t,e,n,r,i){if(0===t.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),U(n=+n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof e&&(e=l.from(e,r)),l.isBuffer(e))return 0===e.length?-1:y(t,e,n,r,i);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):y(t,[e],n,r,i);throw new TypeError("val must be string, number or Buffer")}function y(t,e,n,r,i){var o,s=1,a=t.length,l=e.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(t.length<2||e.length<2)return-1;s=2,a/=2,l/=2,n/=2}function c(t,e){return 1===s?t[e]:t.readUInt16BE(e*s)}if(i){var u=-1;for(o=n;o<a;o++)if(c(t,o)===c(e,-1===u?0:o-u)){if(-1===u&&(u=o),o-u+1===l)return u*s}else-1!==u&&(o-=o-u),u=-1}else for(n+l>a&&(n=a-l),o=n;o>=0;o--){for(var d=!0,f=0;f<l;f++)if(c(t,o+f)!==c(e,f)){d=!1;break}if(d)return o}return-1}function b(t,e,n,r){n=Number(n)||0;var i=t.length-n;r?(r=Number(r))>i&&(r=i):r=i;var o=e.length;r>o/2&&(r=o/2);for(var s=0;s<r;++s){var a=parseInt(e.substr(2*s,2),16);if(U(a))return s;t[n+s]=a}return s}function _(t,e,n,r){return R(F(e,t.length-n),t,n,r)}function x(t,e,n,r){return R(function(t){for(var e=[],n=0;n<t.length;++n)e.push(255&t.charCodeAt(n));return e}(e),t,n,r)}function k(t,e,n,r){return R(B(e),t,n,r)}function S(t,e,n,r){return R(function(t,e){for(var n,r,i,o=[],s=0;s<t.length&&!((e-=2)<0);++s)r=(n=t.charCodeAt(s))>>8,i=n%256,o.push(i),o.push(r);return o}(e,t.length-n),t,n,r)}function C(t,e,n){return 0===e&&n===t.length?r.fromByteArray(t):r.fromByteArray(t.slice(e,n))}function O(t,e,n){n=Math.min(t.length,n);for(var r=[],i=e;i<n;){var o,s,a,l,c=t[i],u=null,d=c>239?4:c>223?3:c>191?2:1;if(i+d<=n)switch(d){case 1:c<128&&(u=c);break;case 2:128==(192&(o=t[i+1]))&&(l=(31&c)<<6|63&o)>127&&(u=l);break;case 3:o=t[i+1],s=t[i+2],128==(192&o)&&128==(192&s)&&(l=(15&c)<<12|(63&o)<<6|63&s)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:o=t[i+1],s=t[i+2],a=t[i+3],128==(192&o)&&128==(192&s)&&128==(192&a)&&(l=(15&c)<<18|(63&o)<<12|(63&s)<<6|63&a)>65535&&l<1114112&&(u=l)}null===u?(u=65533,d=1):u>65535&&(u-=65536,r.push(u>>>10&1023|55296),u=56320|1023&u),r.push(u),i+=d}return function(t){var e=t.length;if(e<=T)return String.fromCharCode.apply(String,t);var n="",r=0;for(;r<e;)n+=String.fromCharCode.apply(String,t.slice(r,r+=T));return n}(r)}l.TYPED_ARRAY_SUPPORT=function(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),42===t.foo()}catch(t){return!1}}(),l.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(l.prototype,"parent",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.buffer}}),Object.defineProperty(l.prototype,"offset",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.byteOffset}}),l.poolSize=8192,l.from=function(t,e,n){return c(t,e,n)},Object.setPrototypeOf(l.prototype,Uint8Array.prototype),Object.setPrototypeOf(l,Uint8Array),l.alloc=function(t,e,n){return function(t,e,n){return u(t),t<=0?a(t):void 0!==e?"string"==typeof n?a(t).fill(e,n):a(t).fill(e):a(t)}(t,e,n)},l.allocUnsafe=function(t){return d(t)},l.allocUnsafeSlow=function(t){return d(t)},l.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==l.prototype},l.compare=function(t,e){if(z(t,Uint8Array)&&(t=l.from(t,t.offset,t.byteLength)),z(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),!l.isBuffer(t)||!l.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;for(var n=t.length,r=e.length,i=0,o=Math.min(n,r);i<o;++i)if(t[i]!==e[i]){n=t[i],r=e[i];break}return n<r?-1:r<n?1:0},l.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},l.concat=function(t,e){if(!Array.isArray(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return l.alloc(0);var n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;var r=l.allocUnsafe(e),i=0;for(n=0;n<t.length;++n){var o=t[n];if(z(o,Uint8Array))i+o.length>r.length?l.from(o).copy(r,i):Uint8Array.prototype.set.call(r,o,i);else{if(!l.isBuffer(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(r,i)}i+=o.length}return r},l.byteLength=m,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)v(this,e,e+1);return this},l.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)v(this,e,e+3),v(this,e+1,e+2);return this},l.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)v(this,e,e+7),v(this,e+1,e+6),v(this,e+2,e+5),v(this,e+3,e+4);return this},l.prototype.toString=function(){var t=this.length;return 0===t?"":0===arguments.length?O(this,0,t):g.apply(this,arguments)},l.prototype.toLocaleString=l.prototype.toString,l.prototype.equals=function(t){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===l.compare(this,t)},l.prototype.inspect=function(){var t="",n=e.h2;return t=this.toString("hex",0,n).replace(/(.{2})/g,"$1 ").trim(),this.length>n&&(t+=" ... "),"<Buffer "+t+">"},o&&(l.prototype[o]=l.prototype.inspect),l.prototype.compare=function(t,e,n,r,i){if(z(t,Uint8Array)&&(t=l.from(t,t.offset,t.byteLength)),!l.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),e<0||n>t.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&e>=n)return 0;if(r>=i)return-1;if(e>=n)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(r>>>=0),s=(n>>>=0)-(e>>>=0),a=Math.min(o,s),c=this.slice(r,i),u=t.slice(e,n),d=0;d<a;++d)if(c[d]!==u[d]){o=c[d],s=u[d];break}return o<s?-1:s<o?1:0},l.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},l.prototype.indexOf=function(t,e,n){return w(this,t,e,n,!0)},l.prototype.lastIndexOf=function(t,e,n){return w(this,t,e,n,!1)},l.prototype.write=function(t,e,n,r){if(void 0===e)r="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)r=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e>>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-e;if((void 0===n||n>i)&&(n=i),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return b(this,t,e,n);case"utf8":case"utf-8":return _(this,t,e,n);case"ascii":case"latin1":case"binary":return x(this,t,e,n);case"base64":return k(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,t,e,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var T=4096;function E(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(127&t[i]);return r}function j(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(t[i]);return r}function A(t,e,n){var r=t.length;(!e||e<0)&&(e=0),(!n||n<0||n>r)&&(n=r);for(var i="",o=e;o<n;++o)i+=V[t[o]];return i}function P(t,e,n){for(var r=t.slice(e,n),i="",o=0;o<r.length-1;o+=2)i+=String.fromCharCode(r[o]+256*r[o+1]);return i}function M(t,e,n){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function I(t,e,n,r,i,o){if(!l.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<o)throw new RangeError('"value" argument is out of bounds');if(n+r>t.length)throw new RangeError("Index out of range")}function L(t,e,n,r,i,o){if(n+r>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function $(t,e,n,r,o){return e=+e,n>>>=0,o||L(t,0,n,4),i.write(t,e,n,r,23,4),n+4}function D(t,e,n,r,o){return e=+e,n>>>=0,o||L(t,0,n,8),i.write(t,e,n,r,52,8),n+8}l.prototype.slice=function(t,e){var n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t);var r=this.subarray(t,e);return Object.setPrototypeOf(r,l.prototype),r},l.prototype.readUintLE=l.prototype.readUIntLE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=this[t],i=1,o=0;++o<e&&(i*=256);)r+=this[t+o]*i;return r},l.prototype.readUintBE=l.prototype.readUIntBE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=this[t+--e],i=1;e>0&&(i*=256);)r+=this[t+--e]*i;return r},l.prototype.readUint8=l.prototype.readUInt8=function(t,e){return t>>>=0,e||M(t,1,this.length),this[t]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(t,e){return t>>>=0,e||M(t,2,this.length),this[t]|this[t+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(t,e){return t>>>=0,e||M(t,2,this.length),this[t]<<8|this[t+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(t,e){return t>>>=0,e||M(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(t,e){return t>>>=0,e||M(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},l.prototype.readIntLE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=this[t],i=1,o=0;++o<e&&(i*=256);)r+=this[t+o]*i;return r>=(i*=128)&&(r-=Math.pow(2,8*e)),r},l.prototype.readIntBE=function(t,e,n){t>>>=0,e>>>=0,n||M(t,e,this.length);for(var r=e,i=1,o=this[t+--r];r>0&&(i*=256);)o+=this[t+--r]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*e)),o},l.prototype.readInt8=function(t,e){return t>>>=0,e||M(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},l.prototype.readInt16LE=function(t,e){t>>>=0,e||M(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(t,e){t>>>=0,e||M(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(t,e){return t>>>=0,e||M(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},l.prototype.readInt32BE=function(t,e){return t>>>=0,e||M(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},l.prototype.readFloatLE=function(t,e){return t>>>=0,e||M(t,4,this.length),i.read(this,t,!0,23,4)},l.prototype.readFloatBE=function(t,e){return t>>>=0,e||M(t,4,this.length),i.read(this,t,!1,23,4)},l.prototype.readDoubleLE=function(t,e){return t>>>=0,e||M(t,8,this.length),i.read(this,t,!0,52,8)},l.prototype.readDoubleBE=function(t,e){return t>>>=0,e||M(t,8,this.length),i.read(this,t,!1,52,8)},l.prototype.writeUintLE=l.prototype.writeUIntLE=function(t,e,n,r){(t=+t,e>>>=0,n>>>=0,r)||I(this,t,e,n,Math.pow(2,8*n)-1,0);var i=1,o=0;for(this[e]=255&t;++o<n&&(i*=256);)this[e+o]=t/i&255;return e+n},l.prototype.writeUintBE=l.prototype.writeUIntBE=function(t,e,n,r){(t=+t,e>>>=0,n>>>=0,r)||I(this,t,e,n,Math.pow(2,8*n)-1,0);var i=n-1,o=1;for(this[e+i]=255&t;--i>=0&&(o*=256);)this[e+i]=t/o&255;return e+n},l.prototype.writeUint8=l.prototype.writeUInt8=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,1,255,0),this[e]=255&t,e+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},l.prototype.writeIntLE=function(t,e,n,r){if(t=+t,e>>>=0,!r){var i=Math.pow(2,8*n-1);I(this,t,e,n,i-1,-i)}var o=0,s=1,a=0;for(this[e]=255&t;++o<n&&(s*=256);)t<0&&0===a&&0!==this[e+o-1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeIntBE=function(t,e,n,r){if(t=+t,e>>>=0,!r){var i=Math.pow(2,8*n-1);I(this,t,e,n,i-1,-i)}var o=n-1,s=1,a=0;for(this[e+o]=255&t;--o>=0&&(s*=256);)t<0&&0===a&&0!==this[e+o+1]&&(a=1),this[e+o]=(t/s>>0)-a&255;return e+n},l.prototype.writeInt8=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},l.prototype.writeInt16LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},l.prototype.writeInt16BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},l.prototype.writeInt32LE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},l.prototype.writeInt32BE=function(t,e,n){return t=+t,e>>>=0,n||I(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},l.prototype.writeFloatLE=function(t,e,n){return $(this,t,e,!0,n)},l.prototype.writeFloatBE=function(t,e,n){return $(this,t,e,!1,n)},l.prototype.writeDoubleLE=function(t,e,n){return D(this,t,e,!0,n)},l.prototype.writeDoubleBE=function(t,e,n){return D(this,t,e,!1,n)},l.prototype.copy=function(t,e,n,r){if(!l.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-e<r-n&&(r=t.length-e+n);var i=r-n;return this===t&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(e,n,r):Uint8Array.prototype.set.call(t,this.subarray(n,r),e),i},l.prototype.fill=function(t,e,n,r){if("string"==typeof t){if("string"==typeof e?(r=e,e=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!l.isEncoding(r))throw new TypeError("Unknown encoding: "+r);if(1===t.length){var i=t.charCodeAt(0);("utf8"===r&&i<128||"latin1"===r)&&(t=i)}}else"number"==typeof t?t&=255:"boolean"==typeof t&&(t=Number(t));if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;var o;if(e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(o=e;o<n;++o)this[o]=t;else{var s=l.isBuffer(t)?t:l.from(t,r),a=s.length;if(0===a)throw new TypeError('The value "'+t+'" is invalid for argument "value"');for(o=0;o<n-e;++o)this[o+e]=s[o%a]}return this};var N=/[^+/0-9A-Za-z-_]/g;function F(t,e){var n;e=e||1/0;for(var r=t.length,i=null,o=[],s=0;s<r;++s){if((n=t.charCodeAt(s))>55295&&n<57344){if(!i){if(n>56319){(e-=3)>-1&&o.push(239,191,189);continue}if(s+1===r){(e-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(e-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(e-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((e-=1)<0)break;o.push(n)}else if(n<2048){if((e-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((e-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function B(t){return r.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(N,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function R(t,e,n,r){for(var i=0;i<r&&!(i+n>=e.length||i>=t.length);++i)e[i+n]=t[i];return i}function z(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function U(t){return t!=t}var V=function(){for(var t="0123456789abcdef",e=new Array(256),n=0;n<16;++n)for(var r=16*n,i=0;i<16;++i)e[r+i]=t[n]+t[i];return e}()},1924:function(t,e,n){"use strict";var r=n(210),i=n(5559),o=i(r("String.prototype.indexOf"));t.exports=function(t,e){var n=r(t,!!e);return"function"==typeof n&&o(t,".prototype.")>-1?i(n):n}},5559:function(t,e,n){"use strict";var r=n(8612),i=n(210),o=i("%Function.prototype.apply%"),s=i("%Function.prototype.call%"),a=i("%Reflect.apply%",!0)||r.call(s,o),l=i("%Object.getOwnPropertyDescriptor%",!0),c=i("%Object.defineProperty%",!0),u=i("%Math.max%");if(c)try{c({},"a",{value:1})}catch(t){c=null}t.exports=function(t){var e=a(r,s,arguments);l&&c&&(l(e,"length").configurable&&c(e,"length",{value:1+u(0,t.length-(arguments.length-1))}));return e};var d=function(){return a(r,o,arguments)};c?c(t.exports,"apply",{value:d}):t.exports.apply=d},7953:function(t){var e="~",n="\\x"+("0"+e.charCodeAt(0).toString(16)).slice(-2),r="\\"+n,i=new RegExp(n,"g"),o=new RegExp(r,"g"),s=new RegExp("(?:^|([^\\\\]))"+r),a=[].indexOf||function(t){for(var e=this.length;e--&&this[e]!==t;);return e},l=String;function c(t,n,r){return n instanceof Array?function(t,e,n){for(var r=0,i=e.length;r<i;r++)e[r]=c(t,e[r],n);return e}(t,n,r):n instanceof l?n.length?r.hasOwnProperty(n)?r[n]:r[n]=function(t,n){for(var r=0,i=n.length;r<i;t=t[n[r++].replace(o,e)]);return t}(t,n.split(e)):t:n instanceof Object?function(t,e,n){for(var r in e)e.hasOwnProperty(r)&&(e[r]=c(t,e[r],n));return e}(t,n,r):n}var u={stringify:function(t,o,s,l){return u.parser.stringify(t,function(t,o,s){var l,c,u=!1,d=!!o,f=[],p=[t],h=[t],m=[s?e:"[Circular]"],g=t,v=1;return d&&(c="object"==typeof o?function(t,e){return""!==t&&o.indexOf(t)<0?void 0:e}:o),function(t,o){return d&&(o=c.call(this,t,o)),u?(g!==this&&(l=v-a.call(p,this)-1,v-=l,p.splice(v,p.length),f.splice(v-1,f.length),g=this),"object"==typeof o&&o?(a.call(p,o)<0&&p.push(g=o),v=p.length,(l=a.call(h,o))<0?(l=h.push(o)-1,s?(f.push((""+t).replace(i,n)),m[l]=e+f.join(e)):m[l]=m[0]):o=m[l]):"string"==typeof o&&s&&(o=o.replace(n,r).replace(e,n))):u=!0,o}}(t,o,!l),s)},parse:function(t,i){return u.parser.parse(t,function(t){return function(i,o){var a="string"==typeof o;return a&&o.charAt(0)===e?new l(o.slice(1)):(""===i&&(o=c(o,o,{})),a&&(o=o.replace(s,"$1"+e).replace(r,n)),t?t.call(this,i,o):o)}}(i))},parser:JSON};t.exports=u},7648:function(t){"use strict";var e=Array.prototype.slice,n=Object.prototype.toString;t.exports=function(t){var r=this;if("function"!=typeof r||"[object Function]"!==n.call(r))throw new TypeError("Function.prototype.bind called on incompatible "+r);for(var i,o=e.call(arguments,1),s=Math.max(0,r.length-o.length),a=[],l=0;l<s;l++)a.push("$"+l);if(i=Function("binder","return function ("+a.join(",")+"){ return binder.apply(this,arguments); }")((function(){if(this instanceof i){var n=r.apply(this,o.concat(e.call(arguments)));return Object(n)===n?n:this}return r.apply(t,o.concat(e.call(arguments)))})),r.prototype){var c=function(){};c.prototype=r.prototype,i.prototype=new c,c.prototype=null}return i}},8612:function(t,e,n){"use strict";var r=n(7648);t.exports=Function.prototype.bind||r},7220:function(t){"undefined"!=typeof window&&window,t.exports=function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/",n(n.s=0)}([function(t,e,n){t.exports=n(1)},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n.r(e);var i=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,n,i;return e=t,i=[{key:"getDescendantProperty",value:function(e,n){var r,i,o,s,a,l,c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];if(n){if(-1===(o=n.indexOf("."))?r=n:(r=n.slice(0,o),i=n.slice(o+1)),null!=(s=e[r]))if(i||"string"!=typeof s&&"number"!=typeof s)if("[object Array]"===Object.prototype.toString.call(s))for(a=0,l=s.length;a<l;a++)t.getDescendantProperty(s[a],i,c);else i&&t.getDescendantProperty(s,i,c);else c.push(s)}else c.push(e);return c}}],(n=null)&&r(e.prototype,n),i&&r(e,i),t}();function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n.d(e,"default",(function(){return a}));var a=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};o(this,t),Array.isArray(n)||(r=n,n=[]),this.haystack=e,this.keys=n,this.options=Object.assign({caseSensitive:!1,sort:!1},r)}var e,n,r;return e=t,r=[{key:"isMatch",value:function(t,e,n){t=String(t),e=String(e),n||(t=t.toLocaleLowerCase(),e=e.toLocaleLowerCase());for(var r=e.split(""),i=[],o=0,s=0;s<r.length;s++){var a=r[s];if(-1===(o=t.indexOf(a,o)))return!1;i.push(o),o++}return t===e?1:i.length>1?i[i.length-1]-i[0]+2:2+i[0]}}],(n=[{key:"search",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(""===e)return this.haystack;for(var n=[],r=0;r<this.haystack.length;r++){var o=this.haystack[r];if(0===this.keys.length){var s=t.isMatch(o,e,this.options.caseSensitive);s&&n.push({item:o,score:s})}else for(var a=0;a<this.keys.length;a++){for(var l=i.getDescendantProperty(o,this.keys[a]),c=!1,u=0;u<l.length;u++){var d=t.isMatch(l[u],e,this.options.caseSensitive);if(d){c=!0,n.push({item:o,score:d});break}}if(c)break}}return this.options.sort&&n.sort((function(t,e){return t.score-e.score})),n.map((function(t){return t.item}))}}])&&s(e.prototype,n),r&&s(e,r),t}()}]).default},210:function(t,e,n){"use strict";var r,i=SyntaxError,o=Function,s=TypeError,a=function(t){try{return o('"use strict"; return ('+t+").constructor;")()}catch(t){}},l=Object.getOwnPropertyDescriptor;if(l)try{l({},"")}catch(t){l=null}var c=function(){throw new s},u=l?function(){try{return c}catch(t){try{return l(arguments,"callee").get}catch(t){return c}}}():c,d=n(1405)(),f=Object.getPrototypeOf||function(t){return t.__proto__},p={},h="undefined"==typeof Uint8Array?r:f(Uint8Array),m={"%AggregateError%":"undefined"==typeof AggregateError?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?r:ArrayBuffer,"%ArrayIteratorPrototype%":d?f([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":p,"%AsyncGenerator%":p,"%AsyncGeneratorFunction%":p,"%AsyncIteratorPrototype%":p,"%Atomics%":"undefined"==typeof Atomics?r:Atomics,"%BigInt%":"undefined"==typeof BigInt?r:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?r:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?r:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?r:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?r:FinalizationRegistry,"%Function%":o,"%GeneratorFunction%":p,"%Int8Array%":"undefined"==typeof Int8Array?r:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?r:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":d?f(f([][Symbol.iterator]())):r,"%JSON%":"object"==typeof JSON?JSON:r,"%Map%":"undefined"==typeof Map?r:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&d?f((new Map)[Symbol.iterator]()):r,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?r:Promise,"%Proxy%":"undefined"==typeof Proxy?r:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?r:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?r:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&d?f((new Set)[Symbol.iterator]()):r,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":d?f(""[Symbol.iterator]()):r,"%Symbol%":d?Symbol:r,"%SyntaxError%":i,"%ThrowTypeError%":u,"%TypedArray%":h,"%TypeError%":s,"%Uint8Array%":"undefined"==typeof Uint8Array?r:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?r:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?r:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?r:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?r:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?r:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?r:WeakSet};try{null.error}catch(t){var g=f(f(t));m["%Error.prototype%"]=g}var v=function t(e){var n;if("%AsyncFunction%"===e)n=a("async function () {}");else if("%GeneratorFunction%"===e)n=a("function* () {}");else if("%AsyncGeneratorFunction%"===e)n=a("async function* () {}");else if("%AsyncGenerator%"===e){var r=t("%AsyncGeneratorFunction%");r&&(n=r.prototype)}else if("%AsyncIteratorPrototype%"===e){var i=t("%AsyncGenerator%");i&&(n=f(i.prototype))}return m[e]=n,n},w={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},y=n(8612),b=n(7642),_=y.call(Function.call,Array.prototype.concat),x=y.call(Function.apply,Array.prototype.splice),k=y.call(Function.call,String.prototype.replace),S=y.call(Function.call,String.prototype.slice),C=y.call(Function.call,RegExp.prototype.exec),O=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,T=/\\(\\)?/g,E=function(t,e){var n,r=t;if(b(w,r)&&(r="%"+(n=w[r])[0]+"%"),b(m,r)){var o=m[r];if(o===p&&(o=v(r)),void 0===o&&!e)throw new s("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:n,name:r,value:o}}throw new i("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new s("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new s('"allowMissing" argument must be a boolean');if(null===C(/^%?[^%]*%?$/,t))throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=function(t){var e=S(t,0,1),n=S(t,-1);if("%"===e&&"%"!==n)throw new i("invalid intrinsic syntax, expected closing `%`");if("%"===n&&"%"!==e)throw new i("invalid intrinsic syntax, expected opening `%`");var r=[];return k(t,O,(function(t,e,n,i){r[r.length]=n?k(i,T,"$1"):e||t})),r}(t),r=n.length>0?n[0]:"",o=E("%"+r+"%",e),a=o.name,c=o.value,u=!1,d=o.alias;d&&(r=d[0],x(n,_([0,1],d)));for(var f=1,p=!0;f<n.length;f+=1){var h=n[f],g=S(h,0,1),v=S(h,-1);if(('"'===g||"'"===g||"`"===g||'"'===v||"'"===v||"`"===v)&&g!==v)throw new i("property names with quotes must have matching quotes");if("constructor"!==h&&p||(u=!0),b(m,a="%"+(r+="."+h)+"%"))c=m[a];else if(null!=c){if(!(h in c)){if(!e)throw new s("base intrinsic for "+t+" exists, but the property is not available.");return}if(l&&f+1>=n.length){var w=l(c,h);c=(p=!!w)&&"get"in w&&!("originalValue"in w.get)?w.get:c[h]}else p=b(c,h),c=c[h];p&&!u&&(m[a]=c)}}return c}},1405:function(t,e,n){"use strict";var r="undefined"!=typeof Symbol&&Symbol,i=n(5419);t.exports=function(){return"function"==typeof r&&("function"==typeof Symbol&&("symbol"==typeof r("foo")&&("symbol"==typeof Symbol("bar")&&i())))}},5419:function(t){"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),n=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(e in t[e]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var r=Object.getOwnPropertySymbols(t);if(1!==r.length||r[0]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(t,e);if(42!==i.value||!0!==i.enumerable)return!1}return!0}},7642:function(t,e,n){"use strict";var r=n(8612);t.exports=r.call(Function.call,Object.prototype.hasOwnProperty)},645:function(t,e){e.read=function(t,e,n,r,i){var o,s,a=8*i-r-1,l=(1<<a)-1,c=l>>1,u=-7,d=n?i-1:0,f=n?-1:1,p=t[e+d];for(d+=f,o=p&(1<<-u)-1,p>>=-u,u+=a;u>0;o=256*o+t[e+d],d+=f,u-=8);for(s=o&(1<<-u)-1,o>>=-u,u+=r;u>0;s=256*s+t[e+d],d+=f,u-=8);if(0===o)o=1-c;else{if(o===l)return s?NaN:1/0*(p?-1:1);s+=Math.pow(2,r),o-=c}return(p?-1:1)*s*Math.pow(2,o-r)},e.write=function(t,e,n,r,i,o){var s,a,l,c=8*o-i-1,u=(1<<c)-1,d=u>>1,f=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=r?0:o-1,h=r?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(a=isNaN(e)?1:0,s=u):(s=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-s))<1&&(s--,l*=2),(e+=s+d>=1?f/l:f*Math.pow(2,1-d))*l>=2&&(s++,l/=2),s+d>=u?(a=0,s=u):s+d>=1?(a=(e*l-1)*Math.pow(2,i),s+=d):(a=e*Math.pow(2,d-1)*Math.pow(2,i),s=0));i>=8;t[n+p]=255&a,p+=h,a/=256,i-=8);for(s=s<<i|a,c+=i;c>0;t[n+p]=255&s,p+=h,s/=256,c-=8);t[n+p-h]|=128*m}},5823:function(t){t.exports=function(t,e,n,r){var i=new Blob(void 0!==r?[r,t]:[t],{type:n||"application/octet-stream"});if(void 0!==window.navigator.msSaveBlob)window.navigator.msSaveBlob(i,e);else{var o=window.URL&&window.URL.createObjectURL?window.URL.createObjectURL(i):window.webkitURL.createObjectURL(i),s=document.createElement("a");s.style.display="none",s.href=o,s.setAttribute("download",e),void 0===s.download&&s.setAttribute("target","_blank"),document.body.appendChild(s),s.click(),setTimeout((function(){document.body.removeChild(s),window.URL.revokeObjectURL(o)}),200)}}},3523:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,'@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUpTiny{0%{opacity:.7;transform:translate3d(0,5px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.swal2-popup.swal2-toast{align-items:center;background:#32373c;box-shadow:0 2px 4px rgba(0,0,0,.3);flex-direction:row;overflow-y:hidden;padding:16px 24px;width:auto}.swal2-popup.swal2-toast .swal2-header{flex-direction:row;padding:0}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;font-size:13px;justify-content:flex-start;margin:0 .6em}.swal2-popup.swal2-toast .swal2-footer{font-size:13px;margin:.5em 0 0;padding:.5em 0 0}.swal2-popup.swal2-toast .swal2-close{height:auto;line-height:16px;position:static;width:auto}.swal2-popup.swal2-toast .swal2-content{font-size:13px;justify-content:flex-start;padding:0}.swal2-popup.swal2-toast .swal2-icon{height:2em;margin:0;min-width:2em;width:2em}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{align-items:center;display:flex;font-size:1.8em;font-weight:700}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{height:2em;width:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex-basis:auto!important;height:auto;margin:0 .3125em;width:auto}.swal2-popup.swal2-toast .swal2-styled{font-size:13px;margin:0 .3125em;padding:.3125em .625em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#46b450}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{border-radius:50%;height:3em;position:absolute;transform:rotate(45deg);width:1.6em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{border-radius:4em 0 0 4em;left:-.5em;top:-.8em;transform:rotate(-45deg);transform-origin:2em 2em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{border-radius:0 4em 4em 0;left:.9375em;top:-.25em;transform-origin:0 1.5em}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{height:2em;width:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{height:2.6875em;left:.4375em;top:0;width:.4375em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{left:.1875em;top:1.125em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{right:.1875em;top:.9375em;width:1.375em}.swal2-popup.swal2-toast.swal2-show{animation:fadeInUpBig .65s}.swal2-popup.swal2-toast.swal2-hide{animation:fadeOut .5s}.swal2-container{-webkit-overflow-scrolling:touch;align-items:center;bottom:0;display:flex;flex-direction:row;justify-content:center;left:0;overflow-x:hidden;padding:16px;position:fixed;right:0;top:0;transition:background-color .1s;z-index:1060}.swal2-container.swal2-backdrop-show,.swal2-container.swal2-noanimation{background:hsla(0,0%,39%,.5)}.swal2-container.swal2-backdrop-hide{background:transparent!important}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{align-self:stretch;display:flex!important;flex:1;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{align-content:center;display:flex!important;flex:1;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{align-content:center;display:flex!important;flex:1;justify-content:center}.swal2-container.swal2-no-transition{transition:none!important}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-container .swal2-modal{margin:0!important}}.swal2-popup{background:#32373c;border:none;border-radius:.3125em;box-sizing:border-box;display:none;flex-direction:column;font-family:inherit;font-size:1rem;justify-content:center;max-width:100%;padding:1.25em;position:relative;width:32em}.swal2-popup:focus{outline:none}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{align-items:center;display:flex;flex-direction:column;padding:0 1.8em}.swal2-title{word-wrap:break-word;color:#fff;font-size:30px;font-weight:600;margin:0;max-width:100%;padding:0;position:relative;text-align:center;text-transform:none}.swal2-actions{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-end;margin:8px auto 0;width:100%;z-index:1}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:active,.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(transparent,transparent)}.swal2-actions.swal2-loading .swal2-styled.swal2-confirm{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;background-color:transparent!important;border:.25em solid transparent;border-radius:100%;box-sizing:border-box;color:transparent!important;cursor:default;height:2.5em;margin:.46875em;padding:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:2.5em}.swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff;content:"";display:inline-block;height:15px;margin-left:5px;width:15px}.swal2-styled{box-shadow:none;font-weight:500;margin:.3125em;padding:.625em 2em}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{background:initial;background-color:#007cba;border:0;border-radius:3px;color:#fff;font-size:13px}.swal2-styled.swal2-cancel{background:initial;background-color:#aaa;border:0;border-radius:.25em;color:#fff;font-size:13px}.swal2-styled:focus{box-shadow:0 0 1px 1px;outline:none}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{border-top:1px solid #555;color:#d9d9d9;font-size:1em;justify-content:center;margin:1.25em 0 0;padding:1em 0 0}.swal2-timer-progress-bar-container{border-bottom-left-radius:.3125em;border-bottom-right-radius:.3125em;bottom:0;height:.25em;left:0;overflow:hidden;position:absolute;right:0}.swal2-timer-progress-bar{background:#007cba;height:.25em;width:100%}.swal2-image{margin:1.25em auto;max-width:100%}.swal2-close{align-items:center;background:transparent;border:none;border-radius:0;color:#ccc;cursor:pointer;font-family:serif;font-size:2.5em;height:1.2em;justify-content:center;line-height:1.2;overflow:hidden;padding:0;position:absolute;right:0;top:0;transition:color .1s ease-out;width:1.2em;z-index:2}.swal2-close:hover{background:transparent;color:#f27474;transform:none}.swal2-close::-moz-focus-inner{border:0}.swal2-content{word-wrap:break-word;color:#fff;font-size:1.125em;font-weight:lighter;justify-content:flex-start;line-height:normal;margin:0;padding:0 1.6em;text-align:left;z-index:1}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{background:#3e444a;border:1px solid #7e8993;border-radius:4px;box-shadow:0 0 0 transparent;box-sizing:border-box;color:#fff;font-size:14px;transition:none;width:100%}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#ca4a1f!important;box-shadow:0 0 2px #ca4a1f!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #007cba;box-shadow:0 0 0 1px #007cba;outline:2px solid transparent}.swal2-file::-moz-placeholder,.swal2-input::-moz-placeholder,.swal2-textarea::-moz-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{background:#32373c;margin:1em auto}.swal2-range input{width:80%}.swal2-range output{color:#fff;font-weight:600;text-align:center;width:20%}.swal2-range input,.swal2-range output{font-size:14px;height:30px;line-height:30px;padding:0}.swal2-input{height:30px;padding:0 8px}.swal2-input[type=number]{max-width:10em}.swal2-file{background:#3e444a;font-size:14px}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{background:#3e444a;color:#fff;font-size:14px;max-width:100%;min-width:50%;padding:.375em .625em}.swal2-checkbox,.swal2-radio{align-items:center;background:#32373c;color:#fff;justify-content:center}.swal2-checkbox label,.swal2-radio label{font-size:14px;margin:0 .6em}.swal2-checkbox input,.swal2-radio input{margin:0 .4em}.swal2-validation-message{align-items:center;background:transparent;color:#fff;display:none;font-size:1em;font-weight:300;justify-content:flex-start;overflow:hidden;padding:4px 13px}.swal2-validation-message:before{zoom:.7;background-color:#ca4a1f;border-radius:50%;color:#fff;content:"!";display:inline-block;font-weight:600;height:1.5em;line-height:1.5em;margin:0 .625em;min-width:1.5em;text-align:center;width:1.5em}.swal2-icon{zoom:.7;border:.25em solid transparent;border-radius:50%;box-sizing:content-box;cursor:default;font-family:inherit;height:5em;justify-content:center;line-height:5em;margin:-36px -4px 0 -24px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:5em}.swal2-icon .swal2-icon-content{align-items:center;display:flex;font-size:3.75em}.swal2-icon.swal2-error{border-color:#ca4a1f;color:#ca4a1f}.swal2-icon.swal2-error .swal2-x-mark{flex-grow:1;position:relative}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#ca4a1f;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-warning{border-color:#ffc324;color:#ffb900}.swal2-icon.swal2-info,.swal2-icon.swal2-question{border-color:#21b5ff;color:#007cba}.swal2-icon.swal2-success{border-color:#46b450;color:#46b450}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{border-radius:50%;height:7.5em;position:absolute;transform:rotate(45deg);width:3.75em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{border-radius:7.5em 0 0 7.5em;left:-2.0635em;top:-.4375em;transform:rotate(-45deg);transform-origin:3.75em 3.75em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{border-radius:0 7.5em 7.5em 0;left:1.875em;top:-.6875em;transform:rotate(-45deg);transform-origin:0 3.75em}.swal2-icon.swal2-success .swal2-success-ring{border:.25em solid hsla(98,55%,69%,.3);border-radius:50%;box-sizing:content-box;height:100%;left:-.25em;position:absolute;top:-.25em;width:100%;z-index:2}.swal2-icon.swal2-success .swal2-success-fix{height:5.625em;left:1.625em;position:absolute;top:.5em;transform:rotate(-45deg);width:.4375em;z-index:1}.swal2-icon.swal2-success [class^=swal2-success-line]{background-color:#46b450;border-radius:.125em;display:block;height:.3125em;position:absolute;z-index:2}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{left:.8125em;top:2.875em;transform:rotate(45deg);width:1.5625em}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{right:.5em;top:2.375em;transform:rotate(-45deg);width:2.9375em}.swal2-progress-steps{background:inherit;font-weight:600;margin:0 0 1.25em;padding:0}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{background:#007cba;border-radius:2em;color:#fff;height:2em;line-height:2em;text-align:center;width:2em;z-index:20}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#007cba}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#fff;color:#333}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#fff}.swal2-progress-steps .swal2-progress-step-line{background:#007cba;height:.4em;margin:0 -1px;width:2.5em;z-index:10}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{animation:fadeInUpTiny .5s}.swal2-hide{animation:fadeOut .25s}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}.swal2-rtl .swal2-close{left:0;right:auto}.swal2-rtl .swal2-timer-progress-bar{left:auto;right:0}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(63,126,188,.4)}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotate(2deg)}33%{transform:translateY(0) rotate(-2deg)}66%{transform:translateY(.3125em) rotate(2deg)}to{transform:translateY(0) rotate(0deg)}}@keyframes swal2-toast-hide{to{opacity:0;transform:rotate(1deg)}}@keyframes swal2-toast-animate-success-line-tip{0%{left:.0625em;top:.5625em;width:0}54%{left:.125em;top:.125em;width:0}70%{left:-.25em;top:.625em;width:1.625em}84%{left:.75em;top:1.0625em;width:.5em}to{left:.1875em;top:1.125em;width:.75em}}@keyframes swal2-toast-animate-success-line-long{0%{right:1.375em;top:1.625em;width:0}65%{right:.9375em;top:1.25em;width:0}84%{right:0;top:.9375em;width:1.125em}to{right:.1875em;top:.9375em;width:1.375em}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}to{transform:scale(1)}}@keyframes swal2-hide{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.5)}}@keyframes swal2-animate-success-line-tip{0%{left:.0625em;top:1.1875em;width:0}54%{left:.125em;top:1.0625em;width:0}70%{left:-.375em;top:2.1875em;width:3.125em}84%{left:1.3125em;top:3em;width:1.0625em}to{left:.8125em;top:2.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-long{0%{right:2.875em;top:3.375em;width:0}65%{right:2.875em;top:3.375em;width:0}84%{right:0;top:2.1875em;width:3.4375em}to{right:.5em;top:2.375em;width:2.9375em}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;opacity:0;transform:scale(.4)}50%{margin-top:1.625em;opacity:0;transform:scale(.4)}80%{margin-top:-.375em;transform:scale(1.15)}to{margin-top:0;opacity:1;transform:scale(1)}}@keyframes swal2-animate-error-icon{0%{opacity:0;transform:rotateX(100deg)}to{opacity:1;transform:rotateX(0deg)}}@keyframes swal2-rotate-loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{background-color:transparent!important;bottom:auto;left:auto;max-width:calc(100% - 32px);right:auto;top:auto}body.swal2-no-backdrop .swal2-container>.swal2-modal{box-shadow:0 0 10px hsla(0,0%,39%,.5)}body.swal2-no-backdrop .swal2-container.swal2-top{left:50%;top:0;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-top-left,body.swal2-no-backdrop .swal2-container.swal2-top-start{left:0;top:0}body.swal2-no-backdrop .swal2-container.swal2-top-end,body.swal2-no-backdrop .swal2-container.swal2-top-right{right:0;top:0}body.swal2-no-backdrop .swal2-container.swal2-center{left:50%;top:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-left,body.swal2-no-backdrop .swal2-container.swal2-center-start{left:0;top:50%;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-end,body.swal2-no-backdrop .swal2-container.swal2-center-right{right:0;top:50%;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom-left,body.swal2-no-backdrop .swal2-container.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-bottom-end,body.swal2-no-backdrop .swal2-container.swal2-bottom-right{bottom:0;right:0}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{bottom:auto;left:50%;right:auto;top:0;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{bottom:auto;left:auto;right:0;top:0}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{bottom:auto;left:0;right:auto;top:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{bottom:auto;left:0;right:auto;top:50%;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{bottom:auto;left:50%;right:auto;top:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{bottom:auto;left:auto;right:0;top:50%;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{bottom:0;left:0;right:auto;top:auto}body.swal2-toast-shown .swal2-container.swal2-bottom{bottom:0;left:50%;right:auto;top:auto;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{bottom:0;left:auto;right:0;top:auto}body.swal2-toast-column .swal2-toast{align-items:stretch;flex-direction:column}body.swal2-toast-column .swal2-toast .swal2-actions{align-self:stretch;flex:1;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{font-size:13px;height:2em;margin:.3125em auto}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:13px}.swal2-header{flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-bottom:8px}.swal2-title{font-weight:300;line-height:30px}.swal2-success-ring{display:none}.swal2-toast .swal2-header{margin:0!important}.swal2-progress-steps{align-items:center;justify-content:center;width:100%}.swal2-toast .swal2-actions{margin:0!important}.swal2-toast .swal2-cancel,.swal2-toast .swal2-confirm{background:none;box-shadow:none!important;margin:0 0 0 16px!important;padding:0!important;text-decoration:underline}.swal2-toast .swal2-title{font-weight:400!important;line-height:13px}.swal2-icon{border:0;height:32px;transform:scale(.7) translateY(24px)}.swal2-icon.swal2-success{transform:scale(.7) translateY(4px)}.swal2-icon.swal2-error{transform:scale(.7) translateY(8px)}.swal2-success-circular-line-left{display:none!important}.swal2-popup.swal2-toast .swal2-icon *{animation:none!important}.swal2-toast .swal2-icon{transform:scale(.7) translateY(-2px)}.swal2-toast .swal2-icon.swal2-success{transform:scale(.7) translateY(-5px)}',""]),e.Z=i},2916:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"div#preview-component{float:left}div#preview-component>.sweet-modal-overlay{background:#fff}div#preview-component>.sweet-modal-overlay.theme-dark{background:#23292d}div#preview-component>.sweet-modal-overlay .sweet-modal{background:transparent;box-shadow:none;min-width:100%;padding:0}div#preview-component>.sweet-modal-overlay .sweet-modal .sweet-content,div#preview-component>.sweet-modal-overlay .sweet-modal .sweet-content-content,div#preview-component>.sweet-modal-overlay .sweet-modal iframe{align-items:center;display:flex;height:100%;justify-content:center;width:100%}",""]),e.Z=i},5036:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".external-media-importer ul.attachments li{max-width:175px}.ms-hero-status{align-items:center;display:flex;flex-direction:column;height:100%;width:100%}.ms-hero-status .ms-upload-progress{height:100%}.ms-hero-status .ms-progress{width:50%}.ms-hero-status .ms-progress span{line-height:24px}.ms-upload-image{border:2px solid hsla(0,0%,80%,.7);margin:1rem 0}.ms-upload-image img{display:block;width:100%}",""]),e.Z=i},8896:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".ms-load-more-api .ms-load-more-button{align-items:center;border:0;cursor:pointer;display:flex;flex-direction:column;font-size:1.1em;height:100%;justify-content:center;left:0;padding:0;position:absolute;top:0;width:100%}.ms-load-more-api .ms-load-more-button:hover{background:transparent}.ms-loading-more-images{align-items:center;background:#fff;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.external-api-error{color:#e82323;font-size:1.2em;padding:1rem}.ms-api-sidebar{display:flex;flex-direction:column;height:100%;justify-content:space-between}.ms-api-sidebar .details a{box-shadow:none}.ms-api-sidebar .ms-api-copyright p{color:#aaa;margin-bottom:0}.ms-api-sidebar .ms-api-copyright p a{color:#aaa}.ms-api-sidebar .ms-api-copyright p a:active,.ms-api-sidebar .ms-api-copyright p a:focus,.ms-api-sidebar .ms-api-copyright p a:hover{color:#0073aa}.ms-full-loading{align-items:center;display:flex;height:100%;justify-content:center;width:100%}",""]),e.Z=i},2354:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".ms-api-user{border-bottom:1px solid #ddd;clear:both;display:flex;justify-content:flex-start;margin-bottom:1rem;padding-bottom:1rem}.ms-api-user img{border-radius:50%;height:64px;margin-right:1rem;min-width:64px;width:64px}.ms-api-user h3{line-height:1.1;margin:0}.ms-api-user .ms-user-location{color:#aaa;font-size:.9em;line-height:1.3;margin:0}.ms-api-user .ms-user-bio{font-size:1em;line-height:1.1;margin-bottom:.4rem;margin-top:.3em}.ms-api-user .ms-profile-data{display:flex;flex-direction:column;justify-content:space-between}.ms-api-user .ms-profile-meta{display:flex;margin:0}.ms-api-user .ms-profile-meta li{margin-bottom:0;margin-right:.5em}",""]),e.Z=i},8720:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#ms-image-drag-drop>form[data-v-4f6cf952]{height:100px;margin:1rem auto auto;position:relative}#ms-image-drag-drop>form[data-v-4f6cf952],#ms-image-drag-drop>form>div[data-v-4f6cf952]{align-items:center;display:flex;justify-content:center}#ms-image-drag-drop>form>div[data-v-4f6cf952]{background:transparent;border:4px dashed #b4b9be;color:#a0a5aa;font-size:1.3em;height:100%;left:0;position:absolute;top:0;transition:all .2s ease-in-out;width:100%}#ms-image-drag-drop>form>div.ms-drag-hovering[data-v-4f6cf952]{background:#eee;border-color:#83b4d8;height:200%}#ms-image-drag-drop>form>div.has-error[data-v-4f6cf952]{border-color:#e82323!important}#ms-image-drag-drop>form>div.has-error~span[data-v-4f6cf952]{color:#e82323}",""]),e.Z=i},7630:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".ms-upload-progress{align-items:center;display:flex;flex-direction:column;justify-content:center;width:100%}.ms-upload-progress .ms-progress{background:#83b4d8;border-radius:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.25),0 1px hsla(0,0%,100%,.08);padding:4px;position:relative;width:75%}.ms-upload-progress .ms-progress span{color:#000;position:absolute;text-align:center;top:0;width:100%}.ms-upload-progress .ms-progress-bar{background:hsla(0,0%,100%,.7);border-radius:0;height:18px;transition:.4s linear;transition-property:width,background-color;width:0}.metaslider .callout-box{background:#dd6923;display:block!important}.metaslider .callout-box p{color:#fff;margin:0;text-align:center}.metaslider .callout-box strong{display:block;font-size:1.3em;margin-bottom:.5rem;text-transform:uppercase}.metaslider .callout-box .ms-ghost-button{border:1px solid;color:#fff;display:inline-block;margin-top:.5rem;padding:.4rem 1rem;text-decoration:none;transition:all .3s ease-in-out}.metaslider .callout-box .ms-ghost-button:active,.metaslider .callout-box .ms-ghost-button:focus,.metaslider .callout-box .ms-ghost-button:hover{background:#b2541b}#metaslider-ui .close-x{cursor:pointer}#metaslider-ui .sweet-modal-overlay{align-items:center;display:flex;justify-content:center;z-index:999999}#metaslider-ui .sweet-modal-overlay .sweet-modal{height:100%;position:static;width:100%}#metaslider-ui .sweet-modal-overlay.theme-dark{background:rgba(0,0,0,.7)}#metaslider-ui .sweet-modal{box-shadow:0 5px 15px rgba(0,0,0,.7);transform:none}#metaslider-ui .sweet-modal *{box-sizing:border-box}#metaslider-ui .sweet-modal .sweet-title{background-color:#fcfcfc;border-bottom-color:#ddd;flex:0 0 auto;height:40px;line-height:40px;padding-left:40px}#metaslider-ui .sweet-modal ul li.sweet-modal-tab{margin:0}#metaslider-ui .sweet-modal ul li.sweet-modal-tab a{border-bottom:1px solid transparent;box-shadow:none;color:#999;font-size:.9em;font-weight:500;padding:5px 10px 0;text-transform:uppercase}#metaslider-ui .sweet-modal ul li.sweet-modal-tab a:active,#metaslider-ui .sweet-modal ul li.sweet-modal-tab a:focus,#metaslider-ui .sweet-modal ul li.sweet-modal-tab a:hover,#metaslider-ui .sweet-modal ul li.sweet-modal-tab.active a{border-bottom:1px solid #dd6923;color:#dd6923}#metaslider-ui .sweet-modal .sweet-buttons{background-color:#fcfcfc;border-top-color:#ddd;flex:0 0 auto;z-index:9}#metaslider-ui .sweet-modal .sweet-content{display:flex;flex:1 1 auto;height:100%;overflow-y:auto;padding:0;position:relative}#metaslider-ui .sweet-modal .sweet-content .sweet-content-content{align-items:center;border-radius:5px;display:flex;flex-direction:column;justify-content:space-between}#metaslider-ui .sweet-modal .sweet-box-actions{z-index:9}#metaslider-ui .sweet-modal .sweet-box-actions .sweet-action-close{border-radius:0;color:#fff;height:24px;line-height:24px;width:24px}#metaslider-ui .sweet-modal .sweet-box-actions .sweet-action-close:hover{background:transparent;color:#dd6923}",""]),e.Z=i},8929:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".highlighted-slideshow-nav .text-gray{color:#606f7b!important}.highlighted-slideshow-nav .border-gray-light{border-color:#b8c2cc!important}",""]),e.Z=i},2339:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#metaslider-ui .metaslider-theme-viewer p{color:#444;margin-top:0}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal{bottom:0;display:flex;flex-direction:column;height:100%;left:5%;max-height:90%;max-width:90%;overflow:visible;position:absolute;right:0;top:5%;width:100%}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal>.sweet-buttons{align-items:center;display:flex;justify-content:space-between}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal>.sweet-buttons button{margin-left:.5rem}#metaslider-ui .metaslider-theme-viewer>.sweet-modal-overlay>.sweet-modal>.sweet-buttons .metaslider-theme-title{font-size:1.3em;margin-top:.3em}#metaslider-ui .sweet-modal .columns{display:flex;flex-direction:row}#metaslider-ui .sweet-modal .columns .theme-list-column{bottom:0;left:0;overflow:auto;position:absolute;right:0;top:0;width:75%}#metaslider-ui .sweet-modal .columns .theme-details-column{background:#f3f3f3;border-left:1px solid #ddd;bottom:0;color:#666;display:flex;flex-direction:column;height:100%;justify-content:space-between;padding:0 1rem 1rem;position:absolute;right:0;text-align:left;top:0;width:25%}[dir=rtl] #metaslider-ui .sweet-modal .columns .theme-details-column{left:0;right:auto}#metaslider-ui .sweet-modal .columns .theme-details-column .metaslider-theme-title{background-color:#e8e8e8;color:#4a4a4a;font-size:1.5em;font-weight:500;margin:-1.5rem -1rem 1.5rem;padding:.5rem 1rem .4rem}#metaslider-ui .sweet-modal .columns .theme-details-column h2,#metaslider-ui .sweet-modal .columns .theme-details-column h3{color:#666;font-size:1em;font-weight:600;margin:1.5rem 0 .6em;padding:0;text-transform:uppercase}#metaslider-ui .sweet-modal .columns .theme-details-column h2:first-of-type{margin-top:0}#metaslider-ui .sweet-modal .columns .theme-details-column h3{font-size:.9em;text-transform:none}#metaslider-ui .sweet-modal .columns .theme-details-column p{font-size:.9em;line-height:1.4}#metaslider-ui .sweet-modal .columns .theme-details-column .ms-theme-description{margin-bottom:2rem}#metaslider-ui .sweet-modal .columns .theme-details-column ul.ms-theme-tags{margin:0}#metaslider-ui .sweet-modal .columns .theme-details-column ul.ms-theme-tags li{background:#d3d3d3;border-radius:.2em;color:#555;display:inline-block;font-size:13px;line-height:1;margin-right:.4em;padding:5px;white-space:nowrap}#metaslider-ui .free-themes-not-found{max-width:455px}#metaslider-ui .free-themes-not-found h1{color:#dd6923}#metaslider-ui .ms-image-selector{display:flex;flex-wrap:wrap;margin:0;padding:.5rem}#metaslider-ui .ms-image-selector li{background:#fafafa;cursor:pointer;margin:0;padding:2px;width:33.3%}@media screen and (min-width:1850px){#metaslider-ui .ms-image-selector li{width:25%}}@media screen and (max-width:1099px){#metaslider-ui .ms-image-selector li{width:50%}}@media screen and (max-width:899px){#metaslider-ui .ms-image-selector li{width:100%}}#metaslider-ui .ms-image-selector li img{display:block;max-width:100%;width:100%}#metaslider-ui .ms-image-selector li span{border:4px solid #fafafa;display:block;height:100%;padding:2px}#metaslider-ui .ms-image-selector li:hover span{border-color:#ccc}#metaslider-ui .ms-image-selector li.selected span{border-color:#0074a7}#metaslider-ui .ms-image-selector li.ms-theme-more{cursor:default}#metaslider-ui .ms-image-selector li.ms-theme-more span{background:#efefef;border-color:#fff!important;font-size:1.5em;height:100%;line-height:1.3;text-transform:uppercase}#metaslider-ui .ms-image-selector li.ms-theme-more span>div{align-items:center;border:4px solid #eaeaea;display:flex;flex-direction:column;height:100%;justify-content:space-around;padding:2rem}#metaslider-ui .ms-image-selector li.ms-theme-more span small{font-size:15px;text-transform:none}#metaslider-ui .theme-select-module{min-height:70px}#metaslider-ui .theme-select-module .button-info{margin-top:0}#metaslider-ui .metaslider-theme-viewer{position:relative;z-index:3}#metaslider-ui .metaslider-theme-viewer.ms-modal-open{z-index:999999}#metaslider-ui .theme-select-module .hndle{padding-bottom:0}#metaslider-ui .theme-select-module .hndle span{color:#dd6923}#metaslider-ui .theme-select-module .slider-not-supported-warning{margin-bottom:1em}#metaslider-ui .theme-select-module .slider-not-supported-warning svg{color:#e82323!important}#metaslider-ui .theme-select-module .sweet-buttons .slider-not-supported-warning{margin-bottom:0}#metaslider-ui .theme-select-module .change-theme-img-button img{display:block;max-width:100%;width:100%}#metaslider-ui .ms-current-theme .custom-theme-single{height:177px;min-height:0}#metaslider-ui .ms-current-theme .custom-theme-single .custom-subtitle{color:#d9d9d9;font-size:12px;font-weight:300;margin-bottom:.1em;text-transform:uppercase}#metaslider-ui .custom-theme-single{align-items:center;background-color:#2271b1;box-sizing:border-box;color:#fff;display:flex;flex-direction:column;font-size:24px;font-weight:600;height:100%;justify-content:center;line-height:normal;min-height:216px;padding:1rem;width:100%}.regular-themes .unlock-pro-theme-ad span{position:relative}.regular-themes .unlock-pro-theme-ad .custom-theme-single{position:absolute;z-index:2}.regular-themes .unlock-pro-theme-ad img{height:auto!important;width:calc(100% - 4px)!important;z-index:1}.regular-themes .unlock-pro-theme-ad .upgrade-pro-theme-ad{height:calc(100% - 4px)!important;width:calc(100% - 4px)!important}@media (max-width:1199px) and (min-width:1100px){.regular-themes .unlock-pro-custom-themes-ad .upgrade-pro-theme-ad h3,.regular-themes .unlock-pro-theme-ad .upgrade-pro-theme-ad h3{display:none}}#metaslider-ui .sweet-modal-tabs li.sweet-modal-tab{display:none!important}@media screen and (max-width:699px){#metaslider-ui .sweet-modal .sweet-content{display:block}#metaslider-ui .sweet-modal .columns{flex-direction:column}#metaslider-ui .sweet-modal .columns>div{position:static!important;width:100%!important}}",""]),e.Z=i},1250:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,'@keyframes animateSuccessTip{0%{left:1px;top:19px;width:0}54%{left:1px;top:19px;width:0}70%{left:-8px;top:37px;width:50px}84%{left:21px;top:48px;width:17px}to{left:14px;top:45px;width:25px}}@keyframes animateSuccessLong{0%{right:46px;top:54px;width:0}65%{right:46px;top:54px;width:0}84%{right:0;top:35px;width:55px}to{right:8px;top:38px;width:47px}}@keyframes rotatePlaceholder{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}.animateSuccessTip{animation:animateSuccessTip .75s}.animateSuccessLong{animation:animateSuccessLong .75s}.sweet-modal-icon.sweet-modal-success.animate:after{animation:rotatePlaceholder 4.25s ease-in}@keyframes animateErrorIcon{0%{opacity:0;transform:rotateX(100deg)}to{opacity:1;transform:rotateX(0deg)}}.animateErrorIcon{animation:animateErrorIcon .5s}@keyframes animateXMark{0%{margin-top:26px;opacity:0;transform:scale(.4)}50%{margin-top:26px;opacity:0;transform:scale(.4)}80%{margin-top:-6px;transform:scale(1.15)}to{margin-top:0;opacity:1;transform:scale(1)}}.animateXMark{animation:animateXMark .5s}@keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}.pulseWarning{animation:pulseWarning .75s infinite alternate}@keyframes pulseWarningIns{0%{background-color:#f8d486}to{background-color:#f8bb86}}.pulseWarningIns{animation:pulseWarningIns .75s infinite alternate}@keyframes rotate-loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.sweet-modal-icon{border:4px solid gray;border-radius:50%;box-sizing:content-box;height:80px;margin:auto;padding:0;position:relative;width:80px}.sweet-modal-icon.sweet-modal-error{border-color:#f44336}.sweet-modal-icon.sweet-modal-error .sweet-modal-x-mark{display:block;position:relative}.sweet-modal-icon.sweet-modal-error .sweet-modal-line{background-color:#f44336;border-radius:2px;display:block;height:5px;position:absolute;top:37px;width:47px}.sweet-modal-icon.sweet-modal-error .sweet-modal-line.sweet-modal-left{left:17px;transform:rotate(45deg)}.sweet-modal-icon.sweet-modal-error .sweet-modal-line.sweet-modal-right{right:16px;transform:rotate(-45deg)}.sweet-modal-icon.sweet-modal-warning{border-color:#ff9800}.sweet-modal-icon.sweet-modal-warning .sweet-modal-body{background-color:#ff9800;border-radius:2px;height:47px;left:50%;margin-left:-2px;position:absolute;top:10px;width:5px}.sweet-modal-icon.sweet-modal-warning .sweet-modal-dot{background-color:#ff9800;border-radius:50%;bottom:10px;height:7px;left:50%;margin-left:-3px;position:absolute;width:7px}.sweet-modal-icon.sweet-modal-info{border-color:#039be5}.sweet-modal-icon.sweet-modal-info:before{background-color:#039be5;border-radius:2px;bottom:17px;content:"";height:29px;left:50%;margin-left:-2px;position:absolute;width:5px}.sweet-modal-icon.sweet-modal-info:after{background-color:#039be5;border-radius:50%;content:"";height:7px;margin-left:-3px;position:absolute;top:19px;width:7px}.sweet-modal-icon.sweet-modal-success{border-color:#4caf50}.sweet-modal-icon.sweet-modal-success:after,.sweet-modal-icon.sweet-modal-success:before{background:#fff;border-radius:40px;content:"";height:120px;position:absolute;transform:rotate(45deg);width:60px}.sweet-modal-icon.sweet-modal-success:before{border-radius:120px 0 0 120px;left:-33px;top:-7px;transform:rotate(-45deg);transform-origin:60px 60px}.sweet-modal-icon.sweet-modal-success:after{border-radius:0 120px 120px 0;left:30px;top:-11px;transform:rotate(-45deg);transform-origin:0 60px}.sweet-modal-icon.sweet-modal-success .sweet-modal-placeholder{border:4px solid rgba(76,175,80,.2);border-radius:50%;box-sizing:content-box;height:80px;left:-4px;position:absolute;top:-4px;width:80px;z-index:2}.sweet-modal-icon.sweet-modal-success .sweet-modal-fix{background-color:#fff;height:90px;left:28px;position:absolute;top:8px;transform:rotate(-45deg);width:7px;z-index:1}.sweet-modal-icon.sweet-modal-success .sweet-modal-line{background-color:#4caf50;border-radius:2px;display:block;height:5px;position:absolute;z-index:2}.sweet-modal-icon.sweet-modal-success .sweet-modal-line.sweet-modal-tip{left:14px;top:46px;transform:rotate(45deg);width:25px}.sweet-modal-icon.sweet-modal-success .sweet-modal-line.sweet-modal-long{right:8px;top:38px;transform:rotate(-45deg);width:47px}.sweet-modal-icon.sweet-modal-custom{background-position:50%;background-repeat:no-repeat;background-size:contain;border:none;border-radius:0}.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success .sweet-modal-fix,.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success:after,.sweet-modal.theme-dark .sweet-modal-icon.sweet-modal-success:before{background-color:#182028}.sweet-modal-overlay{-webkit-font-smoothing:antialiased;background:hsla(0,0%,100%,.9);font-size:14px;height:100vh;left:0;opacity:0;-webkit-perspective:500px;position:fixed;top:0;transform:translateZ(0);transition:opacity .3s;width:100vw;z-index:9001}.sweet-modal-overlay.theme-dark{background:rgba(24,32,40,.94)}.sweet-modal-overlay.is-visible{opacity:1}.sweet-modal{background:#fff;border-radius:2px;box-shadow:0 8px 46px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.03);box-sizing:border-box;left:50%;max-height:100vh;max-width:640px;opacity:0;overflow-y:auto;position:absolute;top:50%;transform:scale(.9) translate(calc(-50% - 32px),-50%);transition-delay:.05s;transition-duration:.3s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.52,.02,.19,1.02);width:80%}.sweet-modal .sweet-box-actions{position:absolute;right:12px;top:12px}.sweet-modal .sweet-box-actions .sweet-action-close{border-radius:50%;color:#222c38;cursor:pointer;display:inline-block;height:42px;line-height:42px;text-align:center;width:42px}.sweet-modal .sweet-box-actions .sweet-action-close svg{height:24px;margin-top:-2px;vertical-align:middle;width:24px}.sweet-modal .sweet-box-actions .sweet-action-close svg,.sweet-modal .sweet-box-actions .sweet-action-close svg circle,.sweet-modal .sweet-box-actions .sweet-action-close svg path,.sweet-modal .sweet-box-actions .sweet-action-close svg polygon,.sweet-modal .sweet-box-actions .sweet-action-close svg rect{fill:currentColor}.sweet-modal .sweet-box-actions .sweet-action-close:hover{background:#039be5;color:#fff}.sweet-modal .sweet-title{border-bottom:1px solid #eaeaea;height:64px;line-height:64px;padding-left:32px;padding-right:64px}.sweet-modal .sweet-title,.sweet-modal .sweet-title>h2{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sweet-modal .sweet-title>h2{font-size:22px;font-weight:500;margin:0;padding:0}.sweet-modal ul.sweet-modal-tabs{align-items:center;display:flex;height:100%;list-style-type:none;margin:0 0 0 -32px;overflow-x:auto;padding:0;width:calc(100% + 32px)}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab{display:block;height:100%}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a{align-items:center;color:#222c38;display:flex;height:100%;overflow:hidden;padding-left:20px;padding-right:20px;text-align:center;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-title{display:block}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon{display:block;line-height:1}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg{height:16px;width:16px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img circle,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img path,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img polygon,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img rect,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg circle,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg path,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg polygon,.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg rect{fill:currentColor}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon+span.sweet-modal-tab-title{line-height:1;margin-top:8px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab:first-child a{padding-left:32px}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab.active a{color:#039be5;font-weight:600}.sweet-modal ul.sweet-modal-tabs li.sweet-modal-tab.disabled a{color:#999;cursor:default;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.sweet-modal.has-tabs:not(.has-title) .sweet-title{height:84px;line-height:84px}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs{border-bottom:1px solid #eaeaea;height:48px;margin:0;width:100%}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a{margin-top:-4px}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon{display:inline-block}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon img,.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-icon svg{margin-right:8px;margin-top:-2px;vertical-align:middle}.sweet-modal.has-tabs.has-title ul.sweet-modal-tabs li.sweet-modal-tab a span.sweet-modal-tab-title{display:inline-block}.sweet-modal .sweet-content{align-items:center;display:flex;line-height:1.5;padding:24px 32px}.sweet-modal .sweet-content .sweet-content-content{flex-grow:1}.sweet-modal .sweet-content .sweet-modal-tab:not(.active){display:none}.sweet-modal .sweet-content .sweet-modal-icon{margin-bottom:36px}.sweet-modal .sweet-buttons{padding:12px 20px;text-align:right}.sweet-modal .sweet-content+.sweet-buttons{border-top:1px solid #eaeaea}.sweet-modal.is-alert .sweet-content{display:block;font-size:16px;padding-bottom:64px;padding-top:64px;text-align:center}.sweet-modal.has-tabs.has-icon .sweet-content{padding-bottom:32px;padding-top:32px}.sweet-modal.has-tabs.has-icon .sweet-content .sweet-content-content{padding-left:32px}.sweet-modal.has-tabs.has-icon .sweet-content .sweet-modal-icon,.sweet-modal:not(.has-content) .sweet-modal-icon{margin-bottom:0}.sweet-modal.theme-dark{background:#182028;color:#fff}.sweet-modal.theme-dark .sweet-box-actions .sweet-action-close{color:#fff}.sweet-modal.theme-dark .sweet-title{border-bottom-color:#090c0f;box-shadow:0 1px 0 #273442}.sweet-modal.theme-dark ul.sweet-modal-tabs li a{color:#fff}.sweet-modal.theme-dark ul.sweet-modal-tabs li.active a{color:#039be5}.sweet-modal.theme-dark ul.sweet-modal-tabs li.disabled a{color:#3e5368}.sweet-modal.theme-dark.has-tabs.has-title ul.sweet-modal-tabs{border-bottom-color:#090c0f;box-shadow:0 1px 0 #273442}.sweet-modal.theme-dark .sweet-content+.sweet-buttons{border-top-color:#273442;box-shadow:0 -1px 0 #090c0f}.sweet-modal .sweet-buttons,.sweet-modal .sweet-content{opacity:0;transition-delay:.09s;transition-duration:.3s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.52,.02,.19,1.02)}.sweet-modal .sweet-content{transform:translateY(-8px)}.sweet-modal .sweet-buttons{transform:translateY(16px)}.sweet-modal.is-visible{opacity:1;transform:translate(-50%,-50%)}.sweet-modal.is-visible .sweet-buttons,.sweet-modal.is-visible .sweet-content{opacity:1;transform:none}.sweet-modal.bounce{animation-direction:alternate;animation-duration:.3s;animation-iteration-count:2;animation-name:bounce}@media screen and (min-width:601px){@keyframes bounce{0%{transform:scale(1) translate(-50%,-50%)}50%{transform:scale(1.02) translate(calc(-50% + 8px),-50%)}to{transform:scale(1) translate(-50%,-50%)}}}@media screen and (max-width:600px){.sweet-modal.is-mobile-fullscreen{height:100vh;left:0;top:0;transform:scale(.9);width:100%}.sweet-modal.is-mobile-fullscreen.is-visible{transform:none}.sweet-modal.is-mobile-fullscreen .sweet-buttons{bottom:0;box-sizing:border-box;left:0;position:absolute;width:100%}}',""]),e.Z=i},5085:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-59da3806]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-59da3806;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-59da3806{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},4982:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-14128e16]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-14128e16;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-14128e16{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},7329:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-54e7a0bf]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-54e7a0bf;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-54e7a0bf{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},1989:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-36b0821f]{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-36b0821f;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-36b0821f{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},2693:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,".gradient[data-v-78d91dd4]{animation-duration:3s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-78d91dd4;animation-timing-function:linear;background:#f1f1f1;background:linear-gradient(90deg,#f1f1f1 8%,#f8fafc 38%,#f1f1f1 54%);background-size:1000px 640px;position:relative}@keyframes placeHolderShimmer-78d91dd4{0%{background-position:-468px 0}to{background-position:468px 0}}",""]),e.Z=i},9184:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,'.top-arrow:before{background:#fff!important;border-radius:2px!important;border-right:1px solid #dae1e7!important;border-top:1px solid #dae1e7!important;content:""!important;display:block!important;height:14px!important;left:15px!important;position:absolute!important;top:-7px!important;transform:rotate(-45deg)!important;width:14px!important;z-index:1000!important}[dir=rtl] .top-arrow:before{left:auto!important;right:15px!important}',""]),e.Z=i},620:function(t,e,n){"use strict";var r=n(1519),i=n.n(r)()((function(t){return t[1]}));i.push([t.id,"#metaslider-current-title:focus~svg,#metaslider-current-title:hover~svg{opacity:1!important}",""]),e.Z=i},1519:function(t){"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var n=t(e);return e[2]?"@media ".concat(e[2]," {").concat(n,"}"):n})).join("")},e.i=function(t,n,r){"string"==typeof t&&(t=[[null,t,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var s=this[o][0];null!=s&&(i[s]=!0)}for(var a=0;a<t.length;a++){var l=[].concat(t[a]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),e.push(l))}},e}},2378:function(t,e,n){t=n.nmd(t);var r="__lodash_hash_undefined__",i=9007199254740991,o="[object Arguments]",s="[object AsyncFunction]",a="[object Function]",l="[object GeneratorFunction]",c="[object Null]",u="[object Object]",d="[object Proxy]",f="[object Undefined]",p=/^\[object .+?Constructor\]$/,h=/^(?:0|[1-9]\d*)$/,m={};m["[object Float32Array]"]=m["[object Float64Array]"]=m["[object Int8Array]"]=m["[object Int16Array]"]=m["[object Int32Array]"]=m["[object Uint8Array]"]=m["[object Uint8ClampedArray]"]=m["[object Uint16Array]"]=m["[object Uint32Array]"]=!0,m[o]=m["[object Array]"]=m["[object ArrayBuffer]"]=m["[object Boolean]"]=m["[object DataView]"]=m["[object Date]"]=m["[object Error]"]=m[a]=m["[object Map]"]=m["[object Number]"]=m[u]=m["[object RegExp]"]=m["[object Set]"]=m["[object String]"]=m["[object WeakMap]"]=!1;var g="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,v="object"==typeof self&&self&&self.Object===Object&&self,w=g||v||Function("return this")(),y=e&&!e.nodeType&&e,b=y&&t&&!t.nodeType&&t,_=b&&b.exports===y,x=_&&g.process,k=function(){try{var t=b&&b.require&&b.require("util").types;return t||x&&x.binding&&x.binding("util")}catch(t){}}(),S=k&&k.isTypedArray;var C,O,T,E=Array.prototype,j=Function.prototype,A=Object.prototype,P=w["__core-js_shared__"],M=j.toString,I=A.hasOwnProperty,L=(C=/[^.]+$/.exec(P&&P.keys&&P.keys.IE_PROTO||""))?"Symbol(src)_1."+C:"",$=A.toString,D=M.call(Object),N=RegExp("^"+M.call(I).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),F=_?w.Buffer:void 0,B=w.Symbol,R=w.Uint8Array,z=F?F.allocUnsafe:void 0,U=(O=Object.getPrototypeOf,T=Object,function(t){return O(T(t))}),V=Object.create,H=A.propertyIsEnumerable,q=E.splice,W=B?B.toStringTag:void 0,Z=function(){try{var t=yt(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),Y=F?F.isBuffer:void 0,G=Math.max,J=Date.now,K=yt(w,"Map"),X=yt(Object,"create"),Q=function(){function t(){}return function(e){if(!Pt(e))return{};if(V)return V(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();function tt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function et(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function nt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function rt(t){var e=this.__data__=new et(t);this.size=e.size}function it(t,e){var n=Ot(t),r=!n&&Ct(t),i=!n&&!r&&Et(t),o=!n&&!r&&!i&&It(t),s=n||r||i||o,a=s?function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}(t.length,String):[],l=a.length;for(var c in t)!e&&!I.call(t,c)||s&&("length"==c||i&&("offset"==c||"parent"==c)||o&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||bt(c,l))||a.push(c);return a}function ot(t,e,n){(void 0!==n&&!St(t[e],n)||void 0===n&&!(e in t))&&lt(t,e,n)}function st(t,e,n){var r=t[e];I.call(t,e)&&St(r,n)&&(void 0!==n||e in t)||lt(t,e,n)}function at(t,e){for(var n=t.length;n--;)if(St(t[n][0],e))return n;return-1}function lt(t,e,n){"__proto__"==e&&Z?Z(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}tt.prototype.clear=function(){this.__data__=X?X(null):{},this.size=0},tt.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},tt.prototype.get=function(t){var e=this.__data__;if(X){var n=e[t];return n===r?void 0:n}return I.call(e,t)?e[t]:void 0},tt.prototype.has=function(t){var e=this.__data__;return X?void 0!==e[t]:I.call(e,t)},tt.prototype.set=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=X&&void 0===e?r:e,this},et.prototype.clear=function(){this.__data__=[],this.size=0},et.prototype.delete=function(t){var e=this.__data__,n=at(e,t);return!(n<0)&&(n==e.length-1?e.pop():q.call(e,n,1),--this.size,!0)},et.prototype.get=function(t){var e=this.__data__,n=at(e,t);return n<0?void 0:e[n][1]},et.prototype.has=function(t){return at(this.__data__,t)>-1},et.prototype.set=function(t,e){var n=this.__data__,r=at(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this},nt.prototype.clear=function(){this.size=0,this.__data__={hash:new tt,map:new(K||et),string:new tt}},nt.prototype.delete=function(t){var e=wt(this,t).delete(t);return this.size-=e?1:0,e},nt.prototype.get=function(t){return wt(this,t).get(t)},nt.prototype.has=function(t){return wt(this,t).has(t)},nt.prototype.set=function(t,e){var n=wt(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this},rt.prototype.clear=function(){this.__data__=new et,this.size=0},rt.prototype.delete=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n},rt.prototype.get=function(t){return this.__data__.get(t)},rt.prototype.has=function(t){return this.__data__.has(t)},rt.prototype.set=function(t,e){var n=this.__data__;if(n instanceof et){var r=n.__data__;if(!K||r.length<199)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new nt(r)}return n.set(t,e),this.size=n.size,this};var ct,ut=function(t,e,n){for(var r=-1,i=Object(t),o=n(t),s=o.length;s--;){var a=o[ct?s:++r];if(!1===e(i[a],a,i))break}return t};function dt(t){return null==t?void 0===t?f:c:W&&W in Object(t)?function(t){var e=I.call(t,W),n=t[W];try{t[W]=void 0;var r=!0}catch(t){}var i=$.call(t);r&&(e?t[W]=n:delete t[W]);return i}(t):function(t){return $.call(t)}(t)}function ft(t){return Mt(t)&&dt(t)==o}function pt(t){return!(!Pt(t)||function(t){return!!L&&L in t}(t))&&(jt(t)?N:p).test(function(t){if(null!=t){try{return M.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}function ht(t){if(!Pt(t))return function(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e}(t);var e=_t(t),n=[];for(var r in t)("constructor"!=r||!e&&I.call(t,r))&&n.push(r);return n}function mt(t,e,n,r,i){t!==e&&ut(e,(function(o,s){if(i||(i=new rt),Pt(o))!function(t,e,n,r,i,o,s){var a=xt(t,n),l=xt(e,n),c=s.get(l);if(c)return void ot(t,n,c);var d=o?o(a,l,n+"",t,e,s):void 0,f=void 0===d;if(f){var p=Ot(l),h=!p&&Et(l),m=!p&&!h&&It(l);d=l,p||h||m?Ot(a)?d=a:Mt(b=a)&&Tt(b)?d=function(t,e){var n=-1,r=t.length;e||(e=Array(r));for(;++n<r;)e[n]=t[n];return e}(a):h?(f=!1,d=function(t,e){if(e)return t.slice();var n=t.length,r=z?z(n):new t.constructor(n);return t.copy(r),r}(l,!0)):m?(f=!1,g=l,v=!0?(w=g.buffer,y=new w.constructor(w.byteLength),new R(y).set(new R(w)),y):g.buffer,d=new g.constructor(v,g.byteOffset,g.length)):d=[]:function(t){if(!Mt(t)||dt(t)!=u)return!1;var e=U(t);if(null===e)return!0;var n=I.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&M.call(n)==D}(l)||Ct(l)?(d=a,Ct(a)?d=function(t){return function(t,e,n,r){var i=!n;n||(n={});var o=-1,s=e.length;for(;++o<s;){var a=e[o],l=r?r(n[a],t[a],a,n,t):void 0;void 0===l&&(l=t[a]),i?lt(n,a,l):st(n,a,l)}return n}(t,Lt(t))}(a):Pt(a)&&!jt(a)||(d=function(t){return"function"!=typeof t.constructor||_t(t)?{}:Q(U(t))}(l))):f=!1}var g,v,w,y;var b;f&&(s.set(l,d),i(d,l,r,o,s),s.delete(l));ot(t,n,d)}(t,e,s,n,mt,r,i);else{var a=r?r(xt(t,s),o,s+"",t,e,i):void 0;void 0===a&&(a=o),ot(t,s,a)}}),Lt)}function gt(t,e){return kt(function(t,e,n){return e=G(void 0===e?t.length-1:e,0),function(){for(var r=arguments,i=-1,o=G(r.length-e,0),s=Array(o);++i<o;)s[i]=r[e+i];i=-1;for(var a=Array(e+1);++i<e;)a[i]=r[i];return a[e]=n(s),function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}(t,this,a)}}(t,e,Nt),t+"")}var vt=Z?function(t,e){return Z(t,"toString",{configurable:!0,enumerable:!1,value:(n=e,function(){return n}),writable:!0});var n}:Nt;function wt(t,e){var n,r,i=t.__data__;return("string"==(r=typeof(n=e))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?i["string"==typeof e?"string":"hash"]:i.map}function yt(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return pt(n)?n:void 0}function bt(t,e){var n=typeof t;return!!(e=null==e?i:e)&&("number"==n||"symbol"!=n&&h.test(t))&&t>-1&&t%1==0&&t<e}function _t(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||A)}function xt(t,e){if(("constructor"!==e||"function"!=typeof t[e])&&"__proto__"!=e)return t[e]}var kt=function(t){var e=0,n=0;return function(){var r=J(),i=16-(r-n);if(n=r,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(vt);function St(t,e){return t===e||t!=t&&e!=e}var Ct=ft(function(){return arguments}())?ft:function(t){return Mt(t)&&I.call(t,"callee")&&!H.call(t,"callee")},Ot=Array.isArray;function Tt(t){return null!=t&&At(t.length)&&!jt(t)}var Et=Y||function(){return!1};function jt(t){if(!Pt(t))return!1;var e=dt(t);return e==a||e==l||e==s||e==d}function At(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=i}function Pt(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function Mt(t){return null!=t&&"object"==typeof t}var It=S?function(t){return function(e){return t(e)}}(S):function(t){return Mt(t)&&At(t.length)&&!!m[dt(t)]};function Lt(t){return Tt(t)?it(t,!0):ht(t)}var $t,Dt=($t=function(t,e,n){mt(t,e,n)},gt((function(t,e){var n=-1,r=e.length,i=r>1?e[r-1]:void 0,o=r>2?e[2]:void 0;for(i=$t.length>3&&"function"==typeof i?(r--,i):void 0,o&&function(t,e,n){if(!Pt(n))return!1;var r=typeof e;return!!("number"==r?Tt(n)&&bt(e,n.length):"string"==r&&e in n)&&St(n[e],t)}(e[0],e[1],o)&&(i=r<3?void 0:i,r=1),t=Object(t);++n<r;){var s=e[n];s&&$t(t,s,n,i)}return t})));function Nt(t){return t}t.exports=Dt},9490:function(t,e){"use strict";function n(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function r(t,e,r){return e&&n(t.prototype,e),r&&n(t,r),t}function i(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function o(t){return o=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},o(t)}function s(t,e){return s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},s(t,e)}function a(t,e,n){return a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}()?Reflect.construct:function(t,e,n){var r=[null];r.push.apply(r,e);var i=new(Function.bind.apply(t,r));return n&&s(i,n.prototype),i},a.apply(null,arguments)}function l(t){var e="function"==typeof Map?new Map:void 0;return l=function(t){if(null===t||(n=t,-1===Function.toString.call(n).indexOf("[native code]")))return t;var n;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,r)}function r(){return a(t,arguments,o(this).constructor)}return r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),s(r,t)},l(t)}function c(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n<e;n++)r[n]=t[n];return r}function u(t){var e=0;if("undefined"==typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=function(t,e){if(t){if("string"==typeof t)return c(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(t,e):void 0}}(t)))return function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(e=t[Symbol.iterator]()).next.bind(e)}var d=function(t){function e(){return t.apply(this,arguments)||this}return i(e,t),e}(l(Error)),f=function(t){function e(e){return t.call(this,"Invalid DateTime: "+e.toMessage())||this}return i(e,t),e}(d),p=function(t){function e(e){return t.call(this,"Invalid Interval: "+e.toMessage())||this}return i(e,t),e}(d),h=function(t){function e(e){return t.call(this,"Invalid Duration: "+e.toMessage())||this}return i(e,t),e}(d),m=function(t){function e(){return t.apply(this,arguments)||this}return i(e,t),e}(d),g=function(t){function e(e){return t.call(this,"Invalid unit "+e)||this}return i(e,t),e}(d),v=function(t){function e(){return t.apply(this,arguments)||this}return i(e,t),e}(d),w=function(t){function e(){return t.call(this,"Zone is an abstract class")||this}return i(e,t),e}(d),y="numeric",b="short",_="long",x={year:y,month:y,day:y},k={year:y,month:b,day:y},S={year:y,month:b,day:y,weekday:b},C={year:y,month:_,day:y},O={year:y,month:_,day:y,weekday:_},T={hour:y,minute:y},E={hour:y,minute:y,second:y},j={hour:y,minute:y,second:y,timeZoneName:b},A={hour:y,minute:y,second:y,timeZoneName:_},P={hour:y,minute:y,hour12:!1},M={hour:y,minute:y,second:y,hour12:!1},I={hour:y,minute:y,second:y,hour12:!1,timeZoneName:b},L={hour:y,minute:y,second:y,hour12:!1,timeZoneName:_},$={year:y,month:y,day:y,hour:y,minute:y},D={year:y,month:y,day:y,hour:y,minute:y,second:y},N={year:y,month:b,day:y,hour:y,minute:y},F={year:y,month:b,day:y,hour:y,minute:y,second:y},B={year:y,month:b,day:y,weekday:b,hour:y,minute:y},R={year:y,month:_,day:y,hour:y,minute:y,timeZoneName:b},z={year:y,month:_,day:y,hour:y,minute:y,second:y,timeZoneName:b},U={year:y,month:_,day:y,weekday:_,hour:y,minute:y,timeZoneName:_},V={year:y,month:_,day:y,weekday:_,hour:y,minute:y,second:y,timeZoneName:_};function H(t){return void 0===t}function q(t){return"number"==typeof t}function W(t){return"number"==typeof t&&t%1==0}function Z(){try{return"undefined"!=typeof Intl&&Intl.DateTimeFormat}catch(t){return!1}}function Y(){return!H(Intl.DateTimeFormat.prototype.formatToParts)}function G(){try{return"undefined"!=typeof Intl&&!!Intl.RelativeTimeFormat}catch(t){return!1}}function J(t,e,n){if(0!==t.length)return t.reduce((function(t,r){var i=[e(r),r];return t&&n(t[0],i[0])===t[0]?t:i}),null)[1]}function K(t,e){return e.reduce((function(e,n){return e[n]=t[n],e}),{})}function X(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function Q(t,e,n){return W(t)&&t>=e&&t<=n}function tt(t,e){void 0===e&&(e=2);var n=t<0?"-":"",r=n?-1*t:t;return""+n+(r.toString().length<e?("0".repeat(e)+r).slice(-e):r.toString())}function et(t){return H(t)||null===t||""===t?void 0:parseInt(t,10)}function nt(t){if(!H(t)&&null!==t&&""!==t){var e=1e3*parseFloat("0."+t);return Math.floor(e)}}function rt(t,e,n){void 0===n&&(n=!1);var r=Math.pow(10,e);return(n?Math.trunc:Math.round)(t*r)/r}function it(t){return t%4==0&&(t%100!=0||t%400==0)}function ot(t){return it(t)?366:365}function st(t,e){var n=function(t,e){return t-e*Math.floor(t/e)}(e-1,12)+1;return 2===n?it(t+(e-n)/12)?29:28:[31,null,31,30,31,30,31,31,30,31,30,31][n-1]}function at(t){var e=Date.UTC(t.year,t.month-1,t.day,t.hour,t.minute,t.second,t.millisecond);return t.year<100&&t.year>=0&&(e=new Date(e)).setUTCFullYear(e.getUTCFullYear()-1900),+e}function lt(t){var e=(t+Math.floor(t/4)-Math.floor(t/100)+Math.floor(t/400))%7,n=t-1,r=(n+Math.floor(n/4)-Math.floor(n/100)+Math.floor(n/400))%7;return 4===e||3===r?53:52}function ct(t){return t>99?t:t>60?1900+t:2e3+t}function ut(t,e,n,r){void 0===r&&(r=null);var i=new Date(t),o={hour12:!1,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"};r&&(o.timeZone=r);var s=Object.assign({timeZoneName:e},o),a=Z();if(a&&Y()){var l=new Intl.DateTimeFormat(n,s).formatToParts(i).find((function(t){return"timezonename"===t.type.toLowerCase()}));return l?l.value:null}if(a){var c=new Intl.DateTimeFormat(n,o).format(i);return new Intl.DateTimeFormat(n,s).format(i).substring(c.length).replace(/^[, \u200e]+/,"")}return null}function dt(t,e){var n=parseInt(t,10);Number.isNaN(n)&&(n=0);var r=parseInt(e,10)||0;return 60*n+(n<0||Object.is(n,-0)?-r:r)}function ft(t){var e=Number(t);if("boolean"==typeof t||""===t||Number.isNaN(e))throw new v("Invalid unit value "+t);return e}function pt(t,e,n){var r={};for(var i in t)if(X(t,i)){if(n.indexOf(i)>=0)continue;var o=t[i];if(null==o)continue;r[e(i)]=ft(o)}return r}function ht(t,e){var n=Math.trunc(Math.abs(t/60)),r=Math.trunc(Math.abs(t%60)),i=t>=0?"+":"-";switch(e){case"short":return""+i+tt(n,2)+":"+tt(r,2);case"narrow":return""+i+n+(r>0?":"+r:"");case"techie":return""+i+tt(n,2)+tt(r,2);default:throw new RangeError("Value format "+e+" is out of range for property format")}}function mt(t){return K(t,["hour","minute","second","millisecond"])}var gt=/[A-Za-z_+-]{1,256}(:?\/[A-Za-z_+-]{1,256}(\/[A-Za-z_+-]{1,256})?)?/;function vt(t){return JSON.stringify(t,Object.keys(t).sort())}var wt=["January","February","March","April","May","June","July","August","September","October","November","December"],yt=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],bt=["J","F","M","A","M","J","J","A","S","O","N","D"];function _t(t){switch(t){case"narrow":return[].concat(bt);case"short":return[].concat(yt);case"long":return[].concat(wt);case"numeric":return["1","2","3","4","5","6","7","8","9","10","11","12"];case"2-digit":return["01","02","03","04","05","06","07","08","09","10","11","12"];default:return null}}var xt=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],kt=["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],St=["M","T","W","T","F","S","S"];function Ct(t){switch(t){case"narrow":return[].concat(St);case"short":return[].concat(kt);case"long":return[].concat(xt);case"numeric":return["1","2","3","4","5","6","7"];default:return null}}var Ot=["AM","PM"],Tt=["Before Christ","Anno Domini"],Et=["BC","AD"],jt=["B","A"];function At(t){switch(t){case"narrow":return[].concat(jt);case"short":return[].concat(Et);case"long":return[].concat(Tt);default:return null}}function Pt(t,e){for(var n,r="",i=u(t);!(n=i()).done;){var o=n.value;o.literal?r+=o.val:r+=e(o.val)}return r}var Mt={D:x,DD:k,DDD:C,DDDD:O,t:T,tt:E,ttt:j,tttt:A,T:P,TT:M,TTT:I,TTTT:L,f:$,ff:N,fff:R,ffff:U,F:D,FF:F,FFF:z,FFFF:V},It=function(){function t(t,e){this.opts=e,this.loc=t,this.systemLoc=null}t.create=function(e,n){return void 0===n&&(n={}),new t(e,n)},t.parseFormat=function(t){for(var e=null,n="",r=!1,i=[],o=0;o<t.length;o++){var s=t.charAt(o);"'"===s?(n.length>0&&i.push({literal:r,val:n}),e=null,n="",r=!r):r||s===e?n+=s:(n.length>0&&i.push({literal:!1,val:n}),n=s,e=s)}return n.length>0&&i.push({literal:r,val:n}),i},t.macroTokenToFormatOpts=function(t){return Mt[t]};var e=t.prototype;return e.formatWithSystemDefault=function(t,e){return null===this.systemLoc&&(this.systemLoc=this.loc.redefaultToSystem()),this.systemLoc.dtFormatter(t,Object.assign({},this.opts,e)).format()},e.formatDateTime=function(t,e){return void 0===e&&(e={}),this.loc.dtFormatter(t,Object.assign({},this.opts,e)).format()},e.formatDateTimeParts=function(t,e){return void 0===e&&(e={}),this.loc.dtFormatter(t,Object.assign({},this.opts,e)).formatToParts()},e.resolvedOptions=function(t,e){return void 0===e&&(e={}),this.loc.dtFormatter(t,Object.assign({},this.opts,e)).resolvedOptions()},e.num=function(t,e){if(void 0===e&&(e=0),this.opts.forceSimple)return tt(t,e);var n=Object.assign({},this.opts);return e>0&&(n.padTo=e),this.loc.numberFormatter(n).format(t)},e.formatDateTimeFromString=function(e,n){var r=this,i="en"===this.loc.listingMode(),o=this.loc.outputCalendar&&"gregory"!==this.loc.outputCalendar&&Y(),s=function(t,n){return r.loc.extract(e,t,n)},a=function(t){return e.isOffsetFixed&&0===e.offset&&t.allowZ?"Z":e.isValid?e.zone.formatOffset(e.ts,t.format):""},l=function(){return i?function(t){return Ot[t.hour<12?0:1]}(e):s({hour:"numeric",hour12:!0},"dayperiod")},c=function(t,n){return i?function(t,e){return _t(e)[t.month-1]}(e,t):s(n?{month:t}:{month:t,day:"numeric"},"month")},u=function(t,n){return i?function(t,e){return Ct(e)[t.weekday-1]}(e,t):s(n?{weekday:t}:{weekday:t,month:"long",day:"numeric"},"weekday")},d=function(t){return i?function(t,e){return At(e)[t.year<0?0:1]}(e,t):s({era:t},"era")};return Pt(t.parseFormat(n),(function(n){switch(n){case"S":return r.num(e.millisecond);case"u":case"SSS":return r.num(e.millisecond,3);case"s":return r.num(e.second);case"ss":return r.num(e.second,2);case"m":return r.num(e.minute);case"mm":return r.num(e.minute,2);case"h":return r.num(e.hour%12==0?12:e.hour%12);case"hh":return r.num(e.hour%12==0?12:e.hour%12,2);case"H":return r.num(e.hour);case"HH":return r.num(e.hour,2);case"Z":return a({format:"narrow",allowZ:r.opts.allowZ});case"ZZ":return a({format:"short",allowZ:r.opts.allowZ});case"ZZZ":return a({format:"techie",allowZ:r.opts.allowZ});case"ZZZZ":return e.zone.offsetName(e.ts,{format:"short",locale:r.loc.locale});case"ZZZZZ":return e.zone.offsetName(e.ts,{format:"long",locale:r.loc.locale});case"z":return e.zoneName;case"a":return l();case"d":return o?s({day:"numeric"},"day"):r.num(e.day);case"dd":return o?s({day:"2-digit"},"day"):r.num(e.day,2);case"c":case"E":return r.num(e.weekday);case"ccc":return u("short",!0);case"cccc":return u("long",!0);case"ccccc":return u("narrow",!0);case"EEE":return u("short",!1);case"EEEE":return u("long",!1);case"EEEEE":return u("narrow",!1);case"L":return o?s({month:"numeric",day:"numeric"},"month"):r.num(e.month);case"LL":return o?s({month:"2-digit",day:"numeric"},"month"):r.num(e.month,2);case"LLL":return c("short",!0);case"LLLL":return c("long",!0);case"LLLLL":return c("narrow",!0);case"M":return o?s({month:"numeric"},"month"):r.num(e.month);case"MM":return o?s({month:"2-digit"},"month"):r.num(e.month,2);case"MMM":return c("short",!1);case"MMMM":return c("long",!1);case"MMMMM":return c("narrow",!1);case"y":return o?s({year:"numeric"},"year"):r.num(e.year);case"yy":return o?s({year:"2-digit"},"year"):r.num(e.year.toString().slice(-2),2);case"yyyy":return o?s({year:"numeric"},"year"):r.num(e.year,4);case"yyyyyy":return o?s({year:"numeric"},"year"):r.num(e.year,6);case"G":return d("short");case"GG":return d("long");case"GGGGG":return d("narrow");case"kk":return r.num(e.weekYear.toString().slice(-2),2);case"kkkk":return r.num(e.weekYear,4);case"W":return r.num(e.weekNumber);case"WW":return r.num(e.weekNumber,2);case"o":return r.num(e.ordinal);case"ooo":return r.num(e.ordinal,3);case"q":return r.num(e.quarter);case"qq":return r.num(e.quarter,2);case"X":return r.num(Math.floor(e.ts/1e3));case"x":return r.num(e.ts);default:return function(n){var i=t.macroTokenToFormatOpts(n);return i?r.formatWithSystemDefault(e,i):n}(n)}}))},e.formatDurationFromString=function(e,n){var r,i=this,o=function(t){switch(t[0]){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":return"hour";case"d":return"day";case"M":return"month";case"y":return"year";default:return null}},s=t.parseFormat(n),a=s.reduce((function(t,e){var n=e.literal,r=e.val;return n?t:t.concat(r)}),[]),l=e.shiftTo.apply(e,a.map(o).filter((function(t){return t})));return Pt(s,(r=l,function(t){var e=o(t);return e?i.num(r.get(e),t.length):t}))},t}(),Lt=function(){function t(t,e){this.reason=t,this.explanation=e}return t.prototype.toMessage=function(){return this.explanation?this.reason+": "+this.explanation:this.reason},t}(),$t=function(){function t(){}var e=t.prototype;return e.offsetName=function(t,e){throw new w},e.formatOffset=function(t,e){throw new w},e.offset=function(t){throw new w},e.equals=function(t){throw new w},r(t,[{key:"type",get:function(){throw new w}},{key:"name",get:function(){throw new w}},{key:"universal",get:function(){throw new w}},{key:"isValid",get:function(){throw new w}}]),t}(),Dt=null,Nt=function(t){function e(){return t.apply(this,arguments)||this}i(e,t);var n=e.prototype;return n.offsetName=function(t,e){return ut(t,e.format,e.locale)},n.formatOffset=function(t,e){return ht(this.offset(t),e)},n.offset=function(t){return-new Date(t).getTimezoneOffset()},n.equals=function(t){return"local"===t.type},r(e,[{key:"type",get:function(){return"local"}},{key:"name",get:function(){return Z()?(new Intl.DateTimeFormat).resolvedOptions().timeZone:"local"}},{key:"universal",get:function(){return!1}},{key:"isValid",get:function(){return!0}}],[{key:"instance",get:function(){return null===Dt&&(Dt=new e),Dt}}]),e}($t),Ft=RegExp("^"+gt.source+"$"),Bt={};var Rt={year:0,month:1,day:2,hour:3,minute:4,second:5};var zt={},Ut=function(t){function e(n){var r;return(r=t.call(this)||this).zoneName=n,r.valid=e.isValidZone(n),r}i(e,t),e.create=function(t){return zt[t]||(zt[t]=new e(t)),zt[t]},e.resetCache=function(){zt={},Bt={}},e.isValidSpecifier=function(t){return!(!t||!t.match(Ft))},e.isValidZone=function(t){try{return new Intl.DateTimeFormat("en-US",{timeZone:t}).format(),!0}catch(t){return!1}},e.parseGMTOffset=function(t){if(t){var e=t.match(/^Etc\/GMT(0|[+-]\d{1,2})$/i);if(e)return-60*parseInt(e[1])}return null};var n=e.prototype;return n.offsetName=function(t,e){return ut(t,e.format,e.locale,this.name)},n.formatOffset=function(t,e){return ht(this.offset(t),e)},n.offset=function(t){var e=new Date(t);if(isNaN(e))return NaN;var n,r=(n=this.name,Bt[n]||(Bt[n]=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:n,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})),Bt[n]),i=r.formatToParts?function(t,e){for(var n=t.formatToParts(e),r=[],i=0;i<n.length;i++){var o=n[i],s=o.type,a=o.value,l=Rt[s];H(l)||(r[l]=parseInt(a,10))}return r}(r,e):function(t,e){var n=t.format(e).replace(/\u200E/g,""),r=/(\d+)\/(\d+)\/(\d+),? (\d+):(\d+):(\d+)/.exec(n),i=r[1],o=r[2];return[r[3],i,o,r[4],r[5],r[6]]}(r,e),o=i[0],s=i[1],a=i[2],l=i[3],c=+e,u=c%1e3;return(at({year:o,month:s,day:a,hour:24===l?0:l,minute:i[4],second:i[5],millisecond:0})-(c-=u>=0?u:1e3+u))/6e4},n.equals=function(t){return"iana"===t.type&&t.name===this.name},r(e,[{key:"type",get:function(){return"iana"}},{key:"name",get:function(){return this.zoneName}},{key:"universal",get:function(){return!1}},{key:"isValid",get:function(){return this.valid}}]),e}($t),Vt=null,Ht=function(t){function e(e){var n;return(n=t.call(this)||this).fixed=e,n}i(e,t),e.instance=function(t){return 0===t?e.utcInstance:new e(t)},e.parseSpecifier=function(t){if(t){var n=t.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);if(n)return new e(dt(n[1],n[2]))}return null},r(e,null,[{key:"utcInstance",get:function(){return null===Vt&&(Vt=new e(0)),Vt}}]);var n=e.prototype;return n.offsetName=function(){return this.name},n.formatOffset=function(t,e){return ht(this.fixed,e)},n.offset=function(){return this.fixed},n.equals=function(t){return"fixed"===t.type&&t.fixed===this.fixed},r(e,[{key:"type",get:function(){return"fixed"}},{key:"name",get:function(){return 0===this.fixed?"UTC":"UTC"+ht(this.fixed,"narrow")}},{key:"universal",get:function(){return!0}},{key:"isValid",get:function(){return!0}}]),e}($t),qt=function(t){function e(e){var n;return(n=t.call(this)||this).zoneName=e,n}i(e,t);var n=e.prototype;return n.offsetName=function(){return null},n.formatOffset=function(){return""},n.offset=function(){return NaN},n.equals=function(){return!1},r(e,[{key:"type",get:function(){return"invalid"}},{key:"name",get:function(){return this.zoneName}},{key:"universal",get:function(){return!1}},{key:"isValid",get:function(){return!1}}]),e}($t);function Wt(t,e){var n;if(H(t)||null===t)return e;if(t instanceof $t)return t;if("string"==typeof t){var r=t.toLowerCase();return"local"===r?e:"utc"===r||"gmt"===r?Ht.utcInstance:null!=(n=Ut.parseGMTOffset(t))?Ht.instance(n):Ut.isValidSpecifier(r)?Ut.create(t):Ht.parseSpecifier(r)||new qt(t)}return q(t)?Ht.instance(t):"object"==typeof t&&t.offset&&"number"==typeof t.offset?t:new qt(t)}var Zt=function(){return Date.now()},Yt=null,Gt=null,Jt=null,Kt=null,Xt=!1,Qt=function(){function t(){}return t.resetCaches=function(){ue.resetCache(),Ut.resetCache()},r(t,null,[{key:"now",get:function(){return Zt},set:function(t){Zt=t}},{key:"defaultZoneName",get:function(){return t.defaultZone.name},set:function(t){Yt=t?Wt(t):null}},{key:"defaultZone",get:function(){return Yt||Nt.instance}},{key:"defaultLocale",get:function(){return Gt},set:function(t){Gt=t}},{key:"defaultNumberingSystem",get:function(){return Jt},set:function(t){Jt=t}},{key:"defaultOutputCalendar",get:function(){return Kt},set:function(t){Kt=t}},{key:"throwOnInvalid",get:function(){return Xt},set:function(t){Xt=t}}]),t}(),te={};function ee(t,e){void 0===e&&(e={});var n=JSON.stringify([t,e]),r=te[n];return r||(r=new Intl.DateTimeFormat(t,e),te[n]=r),r}var ne={};var re={};function ie(t,e){void 0===e&&(e={});var n=e,r=(n.base,function(t,e){if(null==t)return{};var n,r,i={},o=Object.keys(t);for(r=0;r<o.length;r++)n=o[r],e.indexOf(n)>=0||(i[n]=t[n]);return i}(n,["base"])),i=JSON.stringify([t,r]),o=re[i];return o||(o=new Intl.RelativeTimeFormat(t,e),re[i]=o),o}var oe=null;function se(t,e,n,r,i){var o=t.listingMode(n);return"error"===o?null:"en"===o?r(e):i(e)}var ae=function(){function t(t,e,n){if(this.padTo=n.padTo||0,this.floor=n.floor||!1,!e&&Z()){var r={useGrouping:!1};n.padTo>0&&(r.minimumIntegerDigits=n.padTo),this.inf=function(t,e){void 0===e&&(e={});var n=JSON.stringify([t,e]),r=ne[n];return r||(r=new Intl.NumberFormat(t,e),ne[n]=r),r}(t,r)}}return t.prototype.format=function(t){if(this.inf){var e=this.floor?Math.floor(t):t;return this.inf.format(e)}return tt(this.floor?Math.floor(t):rt(t,3),this.padTo)},t}(),le=function(){function t(t,e,n){var r;if(this.opts=n,this.hasIntl=Z(),t.zone.universal&&this.hasIntl){var i=t.offset/60*-1,o=i>=0?"Etc/GMT+"+i:"Etc/GMT"+i,s=Ut.isValidZone(o);0!==t.offset&&s?(r=o,this.dt=t):(r="UTC",n.timeZoneName?this.dt=t:this.dt=0===t.offset?t:pr.fromMillis(t.ts+60*t.offset*1e3))}else"local"===t.zone.type?this.dt=t:(this.dt=t,r=t.zone.name);if(this.hasIntl){var a=Object.assign({},this.opts);r&&(a.timeZone=r),this.dtf=ee(e,a)}}var e=t.prototype;return e.format=function(){if(this.hasIntl)return this.dtf.format(this.dt.toJSDate());var t=function(t){var e="EEEE, LLLL d, yyyy, h:mm a";switch(vt(K(t,["weekday","era","year","month","day","hour","minute","second","timeZoneName","hour12"]))){case vt(x):return"M/d/yyyy";case vt(k):return"LLL d, yyyy";case vt(S):return"EEE, LLL d, yyyy";case vt(C):return"LLLL d, yyyy";case vt(O):return"EEEE, LLLL d, yyyy";case vt(T):return"h:mm a";case vt(E):return"h:mm:ss a";case vt(j):case vt(A):return"h:mm a";case vt(P):return"HH:mm";case vt(M):return"HH:mm:ss";case vt(I):case vt(L):return"HH:mm";case vt($):return"M/d/yyyy, h:mm a";case vt(N):return"LLL d, yyyy, h:mm a";case vt(R):return"LLLL d, yyyy, h:mm a";case vt(U):return e;case vt(D):return"M/d/yyyy, h:mm:ss a";case vt(F):return"LLL d, yyyy, h:mm:ss a";case vt(B):return"EEE, d LLL yyyy, h:mm a";case vt(z):return"LLLL d, yyyy, h:mm:ss a";case vt(V):return"EEEE, LLLL d, yyyy, h:mm:ss a";default:return e}}(this.opts),e=ue.create("en-US");return It.create(e).formatDateTimeFromString(this.dt,t)},e.formatToParts=function(){return this.hasIntl&&Y()?this.dtf.formatToParts(this.dt.toJSDate()):[]},e.resolvedOptions=function(){return this.hasIntl?this.dtf.resolvedOptions():{locale:"en-US",numberingSystem:"latn",outputCalendar:"gregory"}},t}(),ce=function(){function t(t,e,n){this.opts=Object.assign({style:"long"},n),!e&&G()&&(this.rtf=ie(t,n))}var e=t.prototype;return e.format=function(t,e){return this.rtf?this.rtf.format(t,e):function(t,e,n,r){void 0===n&&(n="always"),void 0===r&&(r=!1);var i={years:["year","yr."],quarters:["quarter","qtr."],months:["month","mo."],weeks:["week","wk."],days:["day","day","days"],hours:["hour","hr."],minutes:["minute","min."],seconds:["second","sec."]},o=-1===["hours","minutes","seconds"].indexOf(t);if("auto"===n&&o){var s="days"===t;switch(e){case 1:return s?"tomorrow":"next "+i[t][0];case-1:return s?"yesterday":"last "+i[t][0];case 0:return s?"today":"this "+i[t][0]}}var a=Object.is(e,-0)||e<0,l=Math.abs(e),c=1===l,u=i[t],d=r?c?u[1]:u[2]||u[1]:c?i[t][0]:t;return a?l+" "+d+" ago":"in "+l+" "+d}(e,t,this.opts.numeric,"long"!==this.opts.style)},e.formatToParts=function(t,e){return this.rtf?this.rtf.formatToParts(t,e):[]},t}(),ue=function(){function t(t,e,n,r){var i=function(t){var e=t.indexOf("-u-");if(-1===e)return[t];var n,r=t.substring(0,e);try{n=ee(t).resolvedOptions()}catch(t){n=ee(r).resolvedOptions()}var i=n;return[r,i.numberingSystem,i.calendar]}(t),o=i[0],s=i[1],a=i[2];this.locale=o,this.numberingSystem=e||s||null,this.outputCalendar=n||a||null,this.intl=function(t,e,n){return Z()?n||e?(t+="-u",n&&(t+="-ca-"+n),e&&(t+="-nu-"+e),t):t:[]}(this.locale,this.numberingSystem,this.outputCalendar),this.weekdaysCache={format:{},standalone:{}},this.monthsCache={format:{},standalone:{}},this.meridiemCache=null,this.eraCache={},this.specifiedLocale=r,this.fastNumbersCached=null}t.fromOpts=function(e){return t.create(e.locale,e.numberingSystem,e.outputCalendar,e.defaultToEN)},t.create=function(e,n,r,i){void 0===i&&(i=!1);var o=e||Qt.defaultLocale;return new t(o||(i?"en-US":function(){if(oe)return oe;if(Z()){var t=(new Intl.DateTimeFormat).resolvedOptions().locale;return oe=t&&"und"!==t?t:"en-US"}return oe="en-US"}()),n||Qt.defaultNumberingSystem,r||Qt.defaultOutputCalendar,o)},t.resetCache=function(){oe=null,te={},ne={},re={}},t.fromObject=function(e){var n=void 0===e?{}:e,r=n.locale,i=n.numberingSystem,o=n.outputCalendar;return t.create(r,i,o)};var e=t.prototype;return e.listingMode=function(t){void 0===t&&(t=!0);var e=Z()&&Y(),n=this.isEnglish(),r=!(null!==this.numberingSystem&&"latn"!==this.numberingSystem||null!==this.outputCalendar&&"gregory"!==this.outputCalendar);return e||n&&r||t?!e||n&&r?"en":"intl":"error"},e.clone=function(e){return e&&0!==Object.getOwnPropertyNames(e).length?t.create(e.locale||this.specifiedLocale,e.numberingSystem||this.numberingSystem,e.outputCalendar||this.outputCalendar,e.defaultToEN||!1):this},e.redefaultToEN=function(t){return void 0===t&&(t={}),this.clone(Object.assign({},t,{defaultToEN:!0}))},e.redefaultToSystem=function(t){return void 0===t&&(t={}),this.clone(Object.assign({},t,{defaultToEN:!1}))},e.months=function(t,e,n){var r=this;return void 0===e&&(e=!1),void 0===n&&(n=!0),se(this,t,n,_t,(function(){var n=e?{month:t,day:"numeric"}:{month:t},i=e?"format":"standalone";return r.monthsCache[i][t]||(r.monthsCache[i][t]=function(t){for(var e=[],n=1;n<=12;n++){var r=pr.utc(2016,n,1);e.push(t(r))}return e}((function(t){return r.extract(t,n,"month")}))),r.monthsCache[i][t]}))},e.weekdays=function(t,e,n){var r=this;return void 0===e&&(e=!1),void 0===n&&(n=!0),se(this,t,n,Ct,(function(){var n=e?{weekday:t,year:"numeric",month:"long",day:"numeric"}:{weekday:t},i=e?"format":"standalone";return r.weekdaysCache[i][t]||(r.weekdaysCache[i][t]=function(t){for(var e=[],n=1;n<=7;n++){var r=pr.utc(2016,11,13+n);e.push(t(r))}return e}((function(t){return r.extract(t,n,"weekday")}))),r.weekdaysCache[i][t]}))},e.meridiems=function(t){var e=this;return void 0===t&&(t=!0),se(this,void 0,t,(function(){return Ot}),(function(){if(!e.meridiemCache){var t={hour:"numeric",hour12:!0};e.meridiemCache=[pr.utc(2016,11,13,9),pr.utc(2016,11,13,19)].map((function(n){return e.extract(n,t,"dayperiod")}))}return e.meridiemCache}))},e.eras=function(t,e){var n=this;return void 0===e&&(e=!0),se(this,t,e,At,(function(){var e={era:t};return n.eraCache[t]||(n.eraCache[t]=[pr.utc(-40,1,1),pr.utc(2017,1,1)].map((function(t){return n.extract(t,e,"era")}))),n.eraCache[t]}))},e.extract=function(t,e,n){var r=this.dtFormatter(t,e).formatToParts().find((function(t){return t.type.toLowerCase()===n}));return r?r.value:null},e.numberFormatter=function(t){return void 0===t&&(t={}),new ae(this.intl,t.forceSimple||this.fastNumbers,t)},e.dtFormatter=function(t,e){return void 0===e&&(e={}),new le(t,this.intl,e)},e.relFormatter=function(t){return void 0===t&&(t={}),new ce(this.intl,this.isEnglish(),t)},e.isEnglish=function(){return"en"===this.locale||"en-us"===this.locale.toLowerCase()||Z()&&new Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith("en-us")},e.equals=function(t){return this.locale===t.locale&&this.numberingSystem===t.numberingSystem&&this.outputCalendar===t.outputCalendar},r(t,[{key:"fastNumbers",get:function(){var t;return null==this.fastNumbersCached&&(this.fastNumbersCached=(!(t=this).numberingSystem||"latn"===t.numberingSystem)&&("latn"===t.numberingSystem||!t.locale||t.locale.startsWith("en")||Z()&&"latn"===new Intl.DateTimeFormat(t.intl).resolvedOptions().numberingSystem)),this.fastNumbersCached}}]),t}();function de(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var r=e.reduce((function(t,e){return t+e.source}),"");return RegExp("^"+r+"$")}function fe(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce((function(e,n){var r=e[0],i=e[1],o=e[2],s=n(t,o),a=s[0],l=s[1],c=s[2];return[Object.assign(r,a),i||l,c]}),[{},null,1]).slice(0,2)}}function pe(t){if(null==t)return[null,null];for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];for(var i=0,o=n;i<o.length;i++){var s=o[i],a=s[0],l=s[1],c=a.exec(t);if(c)return l(c)}return[null,null]}function he(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t,n){var r,i={};for(r=0;r<e.length;r++)i[e[r]]=et(t[n+r]);return[i,null,n+r]}}var me=/(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/,ge=/(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/,ve=RegExp(""+ge.source+me.source+"?"),we=RegExp("(?:T"+ve.source+")?"),ye=he("weekYear","weekNumber","weekDay"),be=he("year","ordinal"),_e=RegExp(ge.source+" ?(?:"+me.source+"|("+gt.source+"))?"),xe=RegExp("(?: "+_e.source+")?");function ke(t,e,n){var r=t[e];return H(r)?n:et(r)}function Se(t,e){return[{year:ke(t,e),month:ke(t,e+1,1),day:ke(t,e+2,1)},null,e+3]}function Ce(t,e){return[{hours:ke(t,e,0),minutes:ke(t,e+1,0),seconds:ke(t,e+2,0),milliseconds:nt(t[e+3])},null,e+4]}function Oe(t,e){var n=!t[e]&&!t[e+1],r=dt(t[e+1],t[e+2]);return[{},n?null:Ht.instance(r),e+3]}function Te(t,e){return[{},t[e]?Ut.create(t[e]):null,e+1]}var Ee=RegExp("^T?"+ge.source+"$"),je=/^-?P(?:(?:(-?\d{1,9})Y)?(?:(-?\d{1,9})M)?(?:(-?\d{1,9})W)?(?:(-?\d{1,9})D)?(?:T(?:(-?\d{1,9})H)?(?:(-?\d{1,9})M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,9}))?S)?)?)$/;function Ae(t){var e=t[0],n=t[1],r=t[2],i=t[3],o=t[4],s=t[5],a=t[6],l=t[7],c=t[8],u="-"===e[0],d=l&&"-"===l[0],f=function(t,e){return void 0===e&&(e=!1),void 0!==t&&(e||t&&u)?-t:t};return[{years:f(et(n)),months:f(et(r)),weeks:f(et(i)),days:f(et(o)),hours:f(et(s)),minutes:f(et(a)),seconds:f(et(l),"-0"===l),milliseconds:f(nt(c),d)}]}var Pe={GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function Me(t,e,n,r,i,o,s){var a={year:2===e.length?ct(et(e)):et(e),month:yt.indexOf(n)+1,day:et(r),hour:et(i),minute:et(o)};return s&&(a.second=et(s)),t&&(a.weekday=t.length>3?xt.indexOf(t)+1:kt.indexOf(t)+1),a}var Ie=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;function Le(t){var e,n=t[1],r=t[2],i=t[3],o=t[4],s=t[5],a=t[6],l=t[7],c=t[8],u=t[9],d=t[10],f=t[11],p=Me(n,o,i,r,s,a,l);return e=c?Pe[c]:u?0:dt(d,f),[p,new Ht(e)]}var $e=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/,De=/^(Monday|Tuesday|Wedsday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/,Ne=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;function Fe(t){var e=t[1],n=t[2],r=t[3];return[Me(e,t[4],r,n,t[5],t[6],t[7]),Ht.utcInstance]}function Be(t){var e=t[1],n=t[2],r=t[3],i=t[4],o=t[5],s=t[6];return[Me(e,t[7],n,r,i,o,s),Ht.utcInstance]}var Re=de(/([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/,we),ze=de(/(\d{4})-?W(\d\d)(?:-?(\d))?/,we),Ue=de(/(\d{4})-?(\d{3})/,we),Ve=de(ve),He=fe(Se,Ce,Oe),qe=fe(ye,Ce,Oe),We=fe(be,Ce,Oe),Ze=fe(Ce,Oe);var Ye=fe(Ce);var Ge=de(/(\d{4})-(\d\d)-(\d\d)/,xe),Je=de(_e),Ke=fe(Se,Ce,Oe,Te),Xe=fe(Ce,Oe,Te);var Qe={weeks:{days:7,hours:168,minutes:10080,seconds:604800,milliseconds:6048e5},days:{hours:24,minutes:1440,seconds:86400,milliseconds:864e5},hours:{minutes:60,seconds:3600,milliseconds:36e5},minutes:{seconds:60,milliseconds:6e4},seconds:{milliseconds:1e3}},tn=Object.assign({years:{quarters:4,months:12,weeks:52,days:365,hours:8760,minutes:525600,seconds:31536e3,milliseconds:31536e6},quarters:{months:3,weeks:13,days:91,hours:2184,minutes:131040,seconds:7862400,milliseconds:78624e5},months:{weeks:4,days:30,hours:720,minutes:43200,seconds:2592e3,milliseconds:2592e6}},Qe),en=365.2425,nn=30.436875,rn=Object.assign({years:{quarters:4,months:12,weeks:52.1775,days:en,hours:8765.82,minutes:525949.2,seconds:525949.2*60,milliseconds:525949.2*60*1e3},quarters:{months:3,weeks:13.044375,days:91.310625,hours:2191.455,minutes:131487.3,seconds:525949.2*60/4,milliseconds:7889237999.999999},months:{weeks:4.3481250000000005,days:nn,hours:730.485,minutes:43829.1,seconds:2629746,milliseconds:2629746e3}},Qe),on=["years","quarters","months","weeks","days","hours","minutes","seconds","milliseconds"],sn=on.slice(0).reverse();function an(t,e,n){void 0===n&&(n=!1);var r={values:n?e.values:Object.assign({},t.values,e.values||{}),loc:t.loc.clone(e.loc),conversionAccuracy:e.conversionAccuracy||t.conversionAccuracy};return new cn(r)}function ln(t,e,n,r,i){var o=t[i][n],s=e[n]/o,a=!(Math.sign(s)===Math.sign(r[i]))&&0!==r[i]&&Math.abs(s)<=1?function(t){return t<0?Math.floor(t):Math.ceil(t)}(s):Math.trunc(s);r[i]+=a,e[n]-=a*o}var cn=function(){function t(t){var e="longterm"===t.conversionAccuracy||!1;this.values=t.values,this.loc=t.loc||ue.create(),this.conversionAccuracy=e?"longterm":"casual",this.invalid=t.invalid||null,this.matrix=e?rn:tn,this.isLuxonDuration=!0}t.fromMillis=function(e,n){return t.fromObject(Object.assign({milliseconds:e},n))},t.fromObject=function(e){if(null==e||"object"!=typeof e)throw new v("Duration.fromObject: argument expected to be an object, got "+(null===e?"null":typeof e));return new t({values:pt(e,t.normalizeUnit,["locale","numberingSystem","conversionAccuracy","zone"]),loc:ue.fromObject(e),conversionAccuracy:e.conversionAccuracy})},t.fromISO=function(e,n){var r=function(t){return pe(t,[je,Ae])}(e),i=r[0];if(i){var o=Object.assign(i,n);return t.fromObject(o)}return t.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},t.fromISOTime=function(e,n){var r=function(t){return pe(t,[Ee,Ye])}(e),i=r[0];if(i){var o=Object.assign(i,n);return t.fromObject(o)}return t.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},t.invalid=function(e,n){if(void 0===n&&(n=null),!e)throw new v("need to specify a reason the Duration is invalid");var r=e instanceof Lt?e:new Lt(e,n);if(Qt.throwOnInvalid)throw new h(r);return new t({invalid:r})},t.normalizeUnit=function(t){var e={year:"years",years:"years",quarter:"quarters",quarters:"quarters",month:"months",months:"months",week:"weeks",weeks:"weeks",day:"days",days:"days",hour:"hours",hours:"hours",minute:"minutes",minutes:"minutes",second:"seconds",seconds:"seconds",millisecond:"milliseconds",milliseconds:"milliseconds"}[t?t.toLowerCase():t];if(!e)throw new g(t);return e},t.isDuration=function(t){return t&&t.isLuxonDuration||!1};var e=t.prototype;return e.toFormat=function(t,e){void 0===e&&(e={});var n=Object.assign({},e,{floor:!1!==e.round&&!1!==e.floor});return this.isValid?It.create(this.loc,n).formatDurationFromString(this,t):"Invalid Duration"},e.toObject=function(t){if(void 0===t&&(t={}),!this.isValid)return{};var e=Object.assign({},this.values);return t.includeConfig&&(e.conversionAccuracy=this.conversionAccuracy,e.numberingSystem=this.loc.numberingSystem,e.locale=this.loc.locale),e},e.toISO=function(){if(!this.isValid)return null;var t="P";return 0!==this.years&&(t+=this.years+"Y"),0===this.months&&0===this.quarters||(t+=this.months+3*this.quarters+"M"),0!==this.weeks&&(t+=this.weeks+"W"),0!==this.days&&(t+=this.days+"D"),0===this.hours&&0===this.minutes&&0===this.seconds&&0===this.milliseconds||(t+="T"),0!==this.hours&&(t+=this.hours+"H"),0!==this.minutes&&(t+=this.minutes+"M"),0===this.seconds&&0===this.milliseconds||(t+=rt(this.seconds+this.milliseconds/1e3,3)+"S"),"P"===t&&(t+="T0S"),t},e.toISOTime=function(t){if(void 0===t&&(t={}),!this.isValid)return null;var e=this.toMillis();if(e<0||e>=864e5)return null;t=Object.assign({suppressMilliseconds:!1,suppressSeconds:!1,includePrefix:!1,format:"extended"},t);var n=this.shiftTo("hours","minutes","seconds","milliseconds"),r="basic"===t.format?"hhmm":"hh:mm";t.suppressSeconds&&0===n.seconds&&0===n.milliseconds||(r+="basic"===t.format?"ss":":ss",t.suppressMilliseconds&&0===n.milliseconds||(r+=".SSS"));var i=n.toFormat(r);return t.includePrefix&&(i="T"+i),i},e.toJSON=function(){return this.toISO()},e.toString=function(){return this.toISO()},e.toMillis=function(){return this.as("milliseconds")},e.valueOf=function(){return this.toMillis()},e.plus=function(t){if(!this.isValid)return this;for(var e,n=un(t),r={},i=u(on);!(e=i()).done;){var o=e.value;(X(n.values,o)||X(this.values,o))&&(r[o]=n.get(o)+this.get(o))}return an(this,{values:r},!0)},e.minus=function(t){if(!this.isValid)return this;var e=un(t);return this.plus(e.negate())},e.mapUnits=function(t){if(!this.isValid)return this;for(var e={},n=0,r=Object.keys(this.values);n<r.length;n++){var i=r[n];e[i]=ft(t(this.values[i],i))}return an(this,{values:e},!0)},e.get=function(e){return this[t.normalizeUnit(e)]},e.set=function(e){return this.isValid?an(this,{values:Object.assign(this.values,pt(e,t.normalizeUnit,[]))}):this},e.reconfigure=function(t){var e=void 0===t?{}:t,n=e.locale,r=e.numberingSystem,i=e.conversionAccuracy,o={loc:this.loc.clone({locale:n,numberingSystem:r})};return i&&(o.conversionAccuracy=i),an(this,o)},e.as=function(t){return this.isValid?this.shiftTo(t).get(t):NaN},e.normalize=function(){if(!this.isValid)return this;var t=this.toObject();return function(t,e){sn.reduce((function(n,r){return H(e[r])?n:(n&&ln(t,e,n,e,r),r)}),null)}(this.matrix,t),an(this,{values:t},!0)},e.shiftTo=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];if(!this.isValid)return this;if(0===n.length)return this;n=n.map((function(e){return t.normalizeUnit(e)}));for(var i,o,s={},a={},l=this.toObject(),c=u(on);!(o=c()).done;){var d=o.value;if(n.indexOf(d)>=0){i=d;var f=0;for(var p in a)f+=this.matrix[p][d]*a[p],a[p]=0;q(l[d])&&(f+=l[d]);var h=Math.trunc(f);for(var m in s[d]=h,a[d]=f-h,l)on.indexOf(m)>on.indexOf(d)&&ln(this.matrix,l,m,s,d)}else q(l[d])&&(a[d]=l[d])}for(var g in a)0!==a[g]&&(s[i]+=g===i?a[g]:a[g]/this.matrix[i][g]);return an(this,{values:s},!0).normalize()},e.negate=function(){if(!this.isValid)return this;for(var t={},e=0,n=Object.keys(this.values);e<n.length;e++){var r=n[e];t[r]=-this.values[r]}return an(this,{values:t},!0)},e.equals=function(t){if(!this.isValid||!t.isValid)return!1;if(!this.loc.equals(t.loc))return!1;for(var e,n=u(on);!(e=n()).done;){var r=e.value;if(i=this.values[r],o=t.values[r],!(void 0===i||0===i?void 0===o||0===o:i===o))return!1}var i,o;return!0},r(t,[{key:"locale",get:function(){return this.isValid?this.loc.locale:null}},{key:"numberingSystem",get:function(){return this.isValid?this.loc.numberingSystem:null}},{key:"years",get:function(){return this.isValid?this.values.years||0:NaN}},{key:"quarters",get:function(){return this.isValid?this.values.quarters||0:NaN}},{key:"months",get:function(){return this.isValid?this.values.months||0:NaN}},{key:"weeks",get:function(){return this.isValid?this.values.weeks||0:NaN}},{key:"days",get:function(){return this.isValid?this.values.days||0:NaN}},{key:"hours",get:function(){return this.isValid?this.values.hours||0:NaN}},{key:"minutes",get:function(){return this.isValid?this.values.minutes||0:NaN}},{key:"seconds",get:function(){return this.isValid?this.values.seconds||0:NaN}},{key:"milliseconds",get:function(){return this.isValid?this.values.milliseconds||0:NaN}},{key:"isValid",get:function(){return null===this.invalid}},{key:"invalidReason",get:function(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function(){return this.invalid?this.invalid.explanation:null}}]),t}();function un(t){if(q(t))return cn.fromMillis(t);if(cn.isDuration(t))return t;if("object"==typeof t)return cn.fromObject(t);throw new v("Unknown duration argument "+t+" of type "+typeof t)}var dn="Invalid Interval";function fn(t,e){return t&&t.isValid?e&&e.isValid?e<t?pn.invalid("end before start","The end of an interval must be after its start, but you had start="+t.toISO()+" and end="+e.toISO()):null:pn.invalid("missing or invalid end"):pn.invalid("missing or invalid start")}var pn=function(){function t(t){this.s=t.start,this.e=t.end,this.invalid=t.invalid||null,this.isLuxonInterval=!0}t.invalid=function(e,n){if(void 0===n&&(n=null),!e)throw new v("need to specify a reason the Interval is invalid");var r=e instanceof Lt?e:new Lt(e,n);if(Qt.throwOnInvalid)throw new p(r);return new t({invalid:r})},t.fromDateTimes=function(e,n){var r=hr(e),i=hr(n),o=fn(r,i);return null==o?new t({start:r,end:i}):o},t.after=function(e,n){var r=un(n),i=hr(e);return t.fromDateTimes(i,i.plus(r))},t.before=function(e,n){var r=un(n),i=hr(e);return t.fromDateTimes(i.minus(r),i)},t.fromISO=function(e,n){var r=(e||"").split("/",2),i=r[0],o=r[1];if(i&&o){var s,a,l,c;try{a=(s=pr.fromISO(i,n)).isValid}catch(o){a=!1}try{c=(l=pr.fromISO(o,n)).isValid}catch(o){c=!1}if(a&&c)return t.fromDateTimes(s,l);if(a){var u=cn.fromISO(o,n);if(u.isValid)return t.after(s,u)}else if(c){var d=cn.fromISO(i,n);if(d.isValid)return t.before(l,d)}}return t.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},t.isInterval=function(t){return t&&t.isLuxonInterval||!1};var e=t.prototype;return e.length=function(t){return void 0===t&&(t="milliseconds"),this.isValid?this.toDuration.apply(this,[t]).get(t):NaN},e.count=function(t){if(void 0===t&&(t="milliseconds"),!this.isValid)return NaN;var e=this.start.startOf(t),n=this.end.startOf(t);return Math.floor(n.diff(e,t).get(t))+1},e.hasSame=function(t){return!!this.isValid&&(this.isEmpty()||this.e.minus(1).hasSame(this.s,t))},e.isEmpty=function(){return this.s.valueOf()===this.e.valueOf()},e.isAfter=function(t){return!!this.isValid&&this.s>t},e.isBefore=function(t){return!!this.isValid&&this.e<=t},e.contains=function(t){return!!this.isValid&&(this.s<=t&&this.e>t)},e.set=function(e){var n=void 0===e?{}:e,r=n.start,i=n.end;return this.isValid?t.fromDateTimes(r||this.s,i||this.e):this},e.splitAt=function(){var e=this;if(!this.isValid)return[];for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];for(var o=r.map(hr).filter((function(t){return e.contains(t)})).sort(),s=[],a=this.s,l=0;a<this.e;){var c=o[l]||this.e,u=+c>+this.e?this.e:c;s.push(t.fromDateTimes(a,u)),a=u,l+=1}return s},e.splitBy=function(e){var n=un(e);if(!this.isValid||!n.isValid||0===n.as("milliseconds"))return[];for(var r,i=this.s,o=1,s=[];i<this.e;){var a=this.start.plus(n.mapUnits((function(t){return t*o})));r=+a>+this.e?this.e:a,s.push(t.fromDateTimes(i,r)),i=r,o+=1}return s},e.divideEqually=function(t){return this.isValid?this.splitBy(this.length()/t).slice(0,t):[]},e.overlaps=function(t){return this.e>t.s&&this.s<t.e},e.abutsStart=function(t){return!!this.isValid&&+this.e==+t.s},e.abutsEnd=function(t){return!!this.isValid&&+t.e==+this.s},e.engulfs=function(t){return!!this.isValid&&(this.s<=t.s&&this.e>=t.e)},e.equals=function(t){return!(!this.isValid||!t.isValid)&&(this.s.equals(t.s)&&this.e.equals(t.e))},e.intersection=function(e){if(!this.isValid)return this;var n=this.s>e.s?this.s:e.s,r=this.e<e.e?this.e:e.e;return n>=r?null:t.fromDateTimes(n,r)},e.union=function(e){if(!this.isValid)return this;var n=this.s<e.s?this.s:e.s,r=this.e>e.e?this.e:e.e;return t.fromDateTimes(n,r)},t.merge=function(t){var e=t.sort((function(t,e){return t.s-e.s})).reduce((function(t,e){var n=t[0],r=t[1];return r?r.overlaps(e)||r.abutsStart(e)?[n,r.union(e)]:[n.concat([r]),e]:[n,e]}),[[],null]),n=e[0],r=e[1];return r&&n.push(r),n},t.xor=function(e){for(var n,r,i=null,o=0,s=[],a=e.map((function(t){return[{time:t.s,type:"s"},{time:t.e,type:"e"}]})),l=u((n=Array.prototype).concat.apply(n,a).sort((function(t,e){return t.time-e.time})));!(r=l()).done;){var c=r.value;1===(o+="s"===c.type?1:-1)?i=c.time:(i&&+i!=+c.time&&s.push(t.fromDateTimes(i,c.time)),i=null)}return t.merge(s)},e.difference=function(){for(var e=this,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];return t.xor([this].concat(r)).map((function(t){return e.intersection(t)})).filter((function(t){return t&&!t.isEmpty()}))},e.toString=function(){return this.isValid?"["+this.s.toISO()+" – "+this.e.toISO()+")":dn},e.toISO=function(t){return this.isValid?this.s.toISO(t)+"/"+this.e.toISO(t):dn},e.toISODate=function(){return this.isValid?this.s.toISODate()+"/"+this.e.toISODate():dn},e.toISOTime=function(t){return this.isValid?this.s.toISOTime(t)+"/"+this.e.toISOTime(t):dn},e.toFormat=function(t,e){var n=(void 0===e?{}:e).separator,r=void 0===n?" – ":n;return this.isValid?""+this.s.toFormat(t)+r+this.e.toFormat(t):dn},e.toDuration=function(t,e){return this.isValid?this.e.diff(this.s,t,e):cn.invalid(this.invalidReason)},e.mapEndpoints=function(e){return t.fromDateTimes(e(this.s),e(this.e))},r(t,[{key:"start",get:function(){return this.isValid?this.s:null}},{key:"end",get:function(){return this.isValid?this.e:null}},{key:"isValid",get:function(){return null===this.invalidReason}},{key:"invalidReason",get:function(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function(){return this.invalid?this.invalid.explanation:null}}]),t}(),hn=function(){function t(){}return t.hasDST=function(t){void 0===t&&(t=Qt.defaultZone);var e=pr.now().setZone(t).set({month:12});return!t.universal&&e.offset!==e.set({month:6}).offset},t.isValidIANAZone=function(t){return Ut.isValidSpecifier(t)&&Ut.isValidZone(t)},t.normalizeZone=function(t){return Wt(t,Qt.defaultZone)},t.months=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj,l=void 0===a?null:a,c=n.outputCalendar,u=void 0===c?"gregory":c;return(l||ue.create(i,s,u)).months(t)},t.monthsFormat=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj,l=void 0===a?null:a,c=n.outputCalendar,u=void 0===c?"gregory":c;return(l||ue.create(i,s,u)).months(t,!0)},t.weekdays=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj;return((void 0===a?null:a)||ue.create(i,s,null)).weekdays(t)},t.weekdaysFormat=function(t,e){void 0===t&&(t="long");var n=void 0===e?{}:e,r=n.locale,i=void 0===r?null:r,o=n.numberingSystem,s=void 0===o?null:o,a=n.locObj;return((void 0===a?null:a)||ue.create(i,s,null)).weekdays(t,!0)},t.meridiems=function(t){var e=(void 0===t?{}:t).locale,n=void 0===e?null:e;return ue.create(n).meridiems()},t.eras=function(t,e){void 0===t&&(t="short");var n=(void 0===e?{}:e).locale,r=void 0===n?null:n;return ue.create(r,null,"gregory").eras(t)},t.features=function(){var t=!1,e=!1,n=!1,r=!1;if(Z()){t=!0,e=Y(),r=G();try{n="America/New_York"===new Intl.DateTimeFormat("en",{timeZone:"America/New_York"}).resolvedOptions().timeZone}catch(t){n=!1}}return{intl:t,intlTokens:e,zones:n,relative:r}},t}();function mn(t,e){var n=function(t){return t.toUTC(0,{keepLocalTime:!0}).startOf("day").valueOf()},r=n(e)-n(t);return Math.floor(cn.fromMillis(r).as("days"))}function gn(t,e,n,r){var i=function(t,e,n){for(var r,i,o={},s=0,a=[["years",function(t,e){return e.year-t.year}],["quarters",function(t,e){return e.quarter-t.quarter}],["months",function(t,e){return e.month-t.month+12*(e.year-t.year)}],["weeks",function(t,e){var n=mn(t,e);return(n-n%7)/7}],["days",mn]];s<a.length;s++){var l=a[s],c=l[0],u=l[1];if(n.indexOf(c)>=0){var d;r=c;var f,p=u(t,e);(i=t.plus(((d={})[c]=p,d)))>e?(t=t.plus(((f={})[c]=p-1,f)),p-=1):t=i,o[c]=p}}return[t,o,i,r]}(t,e,n),o=i[0],s=i[1],a=i[2],l=i[3],c=e-o,u=n.filter((function(t){return["hours","minutes","seconds","milliseconds"].indexOf(t)>=0}));if(0===u.length){var d;if(a<e)a=o.plus(((d={})[l]=1,d));a!==o&&(s[l]=(s[l]||0)+c/(a-o))}var f,p=cn.fromObject(Object.assign(s,r));return u.length>0?(f=cn.fromMillis(c,r)).shiftTo.apply(f,u).plus(p):p}var vn={arab:"[٠-٩]",arabext:"[۰-۹]",bali:"[᭐-᭙]",beng:"[০-৯]",deva:"[०-९]",fullwide:"[0-9]",gujr:"[૦-૯]",hanidec:"[〇|一|二|三|四|五|六|七|八|九]",khmr:"[០-៩]",knda:"[೦-೯]",laoo:"[໐-໙]",limb:"[᥆-᥏]",mlym:"[൦-൯]",mong:"[᠐-᠙]",mymr:"[၀-၉]",orya:"[୦-୯]",tamldec:"[௦-௯]",telu:"[౦-౯]",thai:"[๐-๙]",tibt:"[༠-༩]",latn:"\\d"},wn={arab:[1632,1641],arabext:[1776,1785],bali:[6992,7001],beng:[2534,2543],deva:[2406,2415],fullwide:[65296,65303],gujr:[2790,2799],khmr:[6112,6121],knda:[3302,3311],laoo:[3792,3801],limb:[6470,6479],mlym:[3430,3439],mong:[6160,6169],mymr:[4160,4169],orya:[2918,2927],tamldec:[3046,3055],telu:[3174,3183],thai:[3664,3673],tibt:[3872,3881]},yn=vn.hanidec.replace(/[\[|\]]/g,"").split("");function bn(t,e){var n=t.numberingSystem;return void 0===e&&(e=""),new RegExp(""+vn[n||"latn"]+e)}var _n="missing Intl.DateTimeFormat.formatToParts support";function xn(t,e){return void 0===e&&(e=function(t){return t}),{regex:t,deser:function(t){var n=t[0];return e(function(t){var e=parseInt(t,10);if(isNaN(e)){e="";for(var n=0;n<t.length;n++){var r=t.charCodeAt(n);if(-1!==t[n].search(vn.hanidec))e+=yn.indexOf(t[n]);else for(var i in wn){var o=wn[i],s=o[0],a=o[1];r>=s&&r<=a&&(e+=r-s)}}return parseInt(e,10)}return e}(n))}}}var kn="( |"+String.fromCharCode(160)+")",Sn=new RegExp(kn,"g");function Cn(t){return t.replace(/\./g,"\\.?").replace(Sn,kn)}function On(t){return t.replace(/\./g,"").replace(Sn," ").toLowerCase()}function Tn(t,e){return null===t?null:{regex:RegExp(t.map(Cn).join("|")),deser:function(n){var r=n[0];return t.findIndex((function(t){return On(r)===On(t)}))+e}}}function En(t,e){return{regex:t,deser:function(t){return dt(t[1],t[2])},groups:e}}function jn(t){return{regex:t,deser:function(t){return t[0]}}}var An={year:{"2-digit":"yy",numeric:"yyyyy"},month:{numeric:"M","2-digit":"MM",short:"MMM",long:"MMMM"},day:{numeric:"d","2-digit":"dd"},weekday:{short:"EEE",long:"EEEE"},dayperiod:"a",dayPeriod:"a",hour:{numeric:"h","2-digit":"hh"},minute:{numeric:"m","2-digit":"mm"},second:{numeric:"s","2-digit":"ss"}};var Pn=null;function Mn(t,e){if(t.literal)return t;var n=It.macroTokenToFormatOpts(t.val);if(!n)return t;var r=It.create(e,n).formatDateTimeParts((Pn||(Pn=pr.fromMillis(1555555555555)),Pn)).map((function(t){return function(t,e,n){var r=t.type,i=t.value;if("literal"===r)return{literal:!0,val:i};var o=n[r],s=An[r];return"object"==typeof s&&(s=s[o]),s?{literal:!1,val:s}:void 0}(t,0,n)}));return r.includes(void 0)?t:r}function In(t,e,n){var r=function(t,e){var n;return(n=Array.prototype).concat.apply(n,t.map((function(t){return Mn(t,e)})))}(It.parseFormat(n),t),i=r.map((function(e){return n=e,i=bn(r=t),o=bn(r,"{2}"),s=bn(r,"{3}"),a=bn(r,"{4}"),l=bn(r,"{6}"),c=bn(r,"{1,2}"),u=bn(r,"{1,3}"),d=bn(r,"{1,6}"),f=bn(r,"{1,9}"),p=bn(r,"{2,4}"),h=bn(r,"{4,6}"),m=function(t){return{regex:RegExp((e=t.val,e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"))),deser:function(t){return t[0]},literal:!0};var e},g=function(t){if(n.literal)return m(t);switch(t.val){case"G":return Tn(r.eras("short",!1),0);case"GG":return Tn(r.eras("long",!1),0);case"y":return xn(d);case"yy":case"kk":return xn(p,ct);case"yyyy":case"kkkk":return xn(a);case"yyyyy":return xn(h);case"yyyyyy":return xn(l);case"M":case"L":case"d":case"H":case"h":case"m":case"q":case"s":case"W":return xn(c);case"MM":case"LL":case"dd":case"HH":case"hh":case"mm":case"qq":case"ss":case"WW":return xn(o);case"MMM":return Tn(r.months("short",!0,!1),1);case"MMMM":return Tn(r.months("long",!0,!1),1);case"LLL":return Tn(r.months("short",!1,!1),1);case"LLLL":return Tn(r.months("long",!1,!1),1);case"o":case"S":return xn(u);case"ooo":case"SSS":return xn(s);case"u":return jn(f);case"a":return Tn(r.meridiems(),0);case"E":case"c":return xn(i);case"EEE":return Tn(r.weekdays("short",!1,!1),1);case"EEEE":return Tn(r.weekdays("long",!1,!1),1);case"ccc":return Tn(r.weekdays("short",!0,!1),1);case"cccc":return Tn(r.weekdays("long",!0,!1),1);case"Z":case"ZZ":return En(new RegExp("([+-]"+c.source+")(?::("+o.source+"))?"),2);case"ZZZ":return En(new RegExp("([+-]"+c.source+")("+o.source+")?"),2);case"z":return jn(/[a-z_+-/]{1,256}?/i);default:return m(t)}}(n)||{invalidReason:_n},g.token=n,g;var n,r,i,o,s,a,l,c,u,d,f,p,h,m,g})),o=i.find((function(t){return t.invalidReason}));if(o)return{input:e,tokens:r,invalidReason:o.invalidReason};var s=function(t){return["^"+t.map((function(t){return t.regex})).reduce((function(t,e){return t+"("+e.source+")"}),"")+"$",t]}(i),a=s[0],l=s[1],c=RegExp(a,"i"),u=function(t,e,n){var r=t.match(e);if(r){var i={},o=1;for(var s in n)if(X(n,s)){var a=n[s],l=a.groups?a.groups+1:1;!a.literal&&a.token&&(i[a.token.val[0]]=a.deser(r.slice(o,o+l))),o+=l}return[r,i]}return[r,{}]}(e,c,l),d=u[0],f=u[1],p=f?function(t){var e;return e=H(t.Z)?H(t.z)?null:Ut.create(t.z):new Ht(t.Z),H(t.q)||(t.M=3*(t.q-1)+1),H(t.h)||(t.h<12&&1===t.a?t.h+=12:12===t.h&&0===t.a&&(t.h=0)),0===t.G&&t.y&&(t.y=-t.y),H(t.u)||(t.S=nt(t.u)),[Object.keys(t).reduce((function(e,n){var r=function(t){switch(t){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":case"H":return"hour";case"d":return"day";case"o":return"ordinal";case"L":case"M":return"month";case"y":return"year";case"E":case"c":return"weekday";case"W":return"weekNumber";case"k":return"weekYear";case"q":return"quarter";default:return null}}(n);return r&&(e[r]=t[n]),e}),{}),e]}(f):[null,null],h=p[0],g=p[1];if(X(f,"a")&&X(f,"H"))throw new m("Can't include meridiem when specifying 24-hour format");return{input:e,tokens:r,regex:c,rawMatches:d,matches:f,result:h,zone:g}}var Ln=[0,31,59,90,120,151,181,212,243,273,304,334],$n=[0,31,60,91,121,152,182,213,244,274,305,335];function Dn(t,e){return new Lt("unit out of range","you specified "+e+" (of type "+typeof e+") as a "+t+", which is invalid")}function Nn(t,e,n){var r=new Date(Date.UTC(t,e-1,n)).getUTCDay();return 0===r?7:r}function Fn(t,e,n){return n+(it(t)?$n:Ln)[e-1]}function Bn(t,e){var n=it(t)?$n:Ln,r=n.findIndex((function(t){return t<e}));return{month:r+1,day:e-n[r]}}function Rn(t){var e,n=t.year,r=t.month,i=t.day,o=Fn(n,r,i),s=Nn(n,r,i),a=Math.floor((o-s+10)/7);return a<1?a=lt(e=n-1):a>lt(n)?(e=n+1,a=1):e=n,Object.assign({weekYear:e,weekNumber:a,weekday:s},mt(t))}function zn(t){var e,n=t.weekYear,r=t.weekNumber,i=t.weekday,o=Nn(n,1,4),s=ot(n),a=7*r+i-o-3;a<1?a+=ot(e=n-1):a>s?(e=n+1,a-=ot(n)):e=n;var l=Bn(e,a),c=l.month,u=l.day;return Object.assign({year:e,month:c,day:u},mt(t))}function Un(t){var e=t.year,n=Fn(e,t.month,t.day);return Object.assign({year:e,ordinal:n},mt(t))}function Vn(t){var e=t.year,n=Bn(e,t.ordinal),r=n.month,i=n.day;return Object.assign({year:e,month:r,day:i},mt(t))}function Hn(t){var e=W(t.year),n=Q(t.month,1,12),r=Q(t.day,1,st(t.year,t.month));return e?n?!r&&Dn("day",t.day):Dn("month",t.month):Dn("year",t.year)}function qn(t){var e=t.hour,n=t.minute,r=t.second,i=t.millisecond,o=Q(e,0,23)||24===e&&0===n&&0===r&&0===i,s=Q(n,0,59),a=Q(r,0,59),l=Q(i,0,999);return o?s?a?!l&&Dn("millisecond",i):Dn("second",r):Dn("minute",n):Dn("hour",e)}var Wn="Invalid DateTime",Zn=864e13;function Yn(t){return new Lt("unsupported zone",'the zone "'+t.name+'" is not supported')}function Gn(t){return null===t.weekData&&(t.weekData=Rn(t.c)),t.weekData}function Jn(t,e){var n={ts:t.ts,zone:t.zone,c:t.c,o:t.o,loc:t.loc,invalid:t.invalid};return new pr(Object.assign({},n,e,{old:n}))}function Kn(t,e,n){var r=t-60*e*1e3,i=n.offset(r);if(e===i)return[r,e];r-=60*(i-e)*1e3;var o=n.offset(r);return i===o?[r,i]:[t-60*Math.min(i,o)*1e3,Math.max(i,o)]}function Xn(t,e){var n=new Date(t+=60*e*1e3);return{year:n.getUTCFullYear(),month:n.getUTCMonth()+1,day:n.getUTCDate(),hour:n.getUTCHours(),minute:n.getUTCMinutes(),second:n.getUTCSeconds(),millisecond:n.getUTCMilliseconds()}}function Qn(t,e,n){return Kn(at(t),e,n)}function tr(t,e){var n=t.o,r=t.c.year+Math.trunc(e.years),i=t.c.month+Math.trunc(e.months)+3*Math.trunc(e.quarters),o=Object.assign({},t.c,{year:r,month:i,day:Math.min(t.c.day,st(r,i))+Math.trunc(e.days)+7*Math.trunc(e.weeks)}),s=cn.fromObject({years:e.years-Math.trunc(e.years),quarters:e.quarters-Math.trunc(e.quarters),months:e.months-Math.trunc(e.months),weeks:e.weeks-Math.trunc(e.weeks),days:e.days-Math.trunc(e.days),hours:e.hours,minutes:e.minutes,seconds:e.seconds,milliseconds:e.milliseconds}).as("milliseconds"),a=Kn(at(o),n,t.zone),l=a[0],c=a[1];return 0!==s&&(l+=s,c=t.zone.offset(l)),{ts:l,o:c}}function er(t,e,n,r,i){var o=n.setZone,s=n.zone;if(t&&0!==Object.keys(t).length){var a=e||s,l=pr.fromObject(Object.assign(t,n,{zone:a,setZone:void 0}));return o?l:l.setZone(s)}return pr.invalid(new Lt("unparsable",'the input "'+i+"\" can't be parsed as "+r))}function nr(t,e,n){return void 0===n&&(n=!0),t.isValid?It.create(ue.create("en-US"),{allowZ:n,forceSimple:!0}).formatDateTimeFromString(t,e):null}function rr(t,e){var n=e.suppressSeconds,r=void 0!==n&&n,i=e.suppressMilliseconds,o=void 0!==i&&i,s=e.includeOffset,a=e.includePrefix,l=void 0!==a&&a,c=e.includeZone,u=void 0!==c&&c,d=e.spaceZone,f=void 0!==d&&d,p=e.format,h=void 0===p?"extended":p,m="basic"===h?"HHmm":"HH:mm";r&&0===t.second&&0===t.millisecond||(m+="basic"===h?"ss":":ss",o&&0===t.millisecond||(m+=".SSS")),(u||s)&&f&&(m+=" "),u?m+="z":s&&(m+="basic"===h?"ZZZ":"ZZ");var g=nr(t,m);return l&&(g="T"+g),g}var ir={month:1,day:1,hour:0,minute:0,second:0,millisecond:0},or={weekNumber:1,weekday:1,hour:0,minute:0,second:0,millisecond:0},sr={ordinal:1,hour:0,minute:0,second:0,millisecond:0},ar=["year","month","day","hour","minute","second","millisecond"],lr=["weekYear","weekNumber","weekday","hour","minute","second","millisecond"],cr=["year","ordinal","hour","minute","second","millisecond"];function ur(t){var e={year:"year",years:"year",month:"month",months:"month",day:"day",days:"day",hour:"hour",hours:"hour",minute:"minute",minutes:"minute",quarter:"quarter",quarters:"quarter",second:"second",seconds:"second",millisecond:"millisecond",milliseconds:"millisecond",weekday:"weekday",weekdays:"weekday",weeknumber:"weekNumber",weeksnumber:"weekNumber",weeknumbers:"weekNumber",weekyear:"weekYear",weekyears:"weekYear",ordinal:"ordinal"}[t.toLowerCase()];if(!e)throw new g(t);return e}function dr(t,e){for(var n,r=u(ar);!(n=r()).done;){var i=n.value;H(t[i])&&(t[i]=ir[i])}var o=Hn(t)||qn(t);if(o)return pr.invalid(o);var s=Qt.now(),a=Qn(t,e.offset(s),e),l=a[0],c=a[1];return new pr({ts:l,zone:e,o:c})}function fr(t,e,n){var r=!!H(n.round)||n.round,i=function(t,i){return t=rt(t,r||n.calendary?0:2,!0),e.loc.clone(n).relFormatter(n).format(t,i)},o=function(r){return n.calendary?e.hasSame(t,r)?0:e.startOf(r).diff(t.startOf(r),r).get(r):e.diff(t,r).get(r)};if(n.unit)return i(o(n.unit),n.unit);for(var s,a=u(n.units);!(s=a()).done;){var l=s.value,c=o(l);if(Math.abs(c)>=1)return i(c,l)}return i(t>e?-0:0,n.units[n.units.length-1])}var pr=function(){function t(t){var e=t.zone||Qt.defaultZone,n=t.invalid||(Number.isNaN(t.ts)?new Lt("invalid input"):null)||(e.isValid?null:Yn(e));this.ts=H(t.ts)?Qt.now():t.ts;var r=null,i=null;if(!n)if(t.old&&t.old.ts===this.ts&&t.old.zone.equals(e)){var o=[t.old.c,t.old.o];r=o[0],i=o[1]}else{var s=e.offset(this.ts);r=Xn(this.ts,s),r=(n=Number.isNaN(r.year)?new Lt("invalid input"):null)?null:r,i=n?null:s}this._zone=e,this.loc=t.loc||ue.create(),this.invalid=n,this.weekData=null,this.c=r,this.o=i,this.isLuxonDateTime=!0}t.now=function(){return new t({})},t.local=function(e,n,r,i,o,s,a){return H(e)?t.now():dr({year:e,month:n,day:r,hour:i,minute:o,second:s,millisecond:a},Qt.defaultZone)},t.utc=function(e,n,r,i,o,s,a){return H(e)?new t({ts:Qt.now(),zone:Ht.utcInstance}):dr({year:e,month:n,day:r,hour:i,minute:o,second:s,millisecond:a},Ht.utcInstance)},t.fromJSDate=function(e,n){void 0===n&&(n={});var r,i=(r=e,"[object Date]"===Object.prototype.toString.call(r)?e.valueOf():NaN);if(Number.isNaN(i))return t.invalid("invalid input");var o=Wt(n.zone,Qt.defaultZone);return o.isValid?new t({ts:i,zone:o,loc:ue.fromObject(n)}):t.invalid(Yn(o))},t.fromMillis=function(e,n){if(void 0===n&&(n={}),q(e))return e<-Zn||e>Zn?t.invalid("Timestamp out of range"):new t({ts:e,zone:Wt(n.zone,Qt.defaultZone),loc:ue.fromObject(n)});throw new v("fromMillis requires a numerical input, but received a "+typeof e+" with value "+e)},t.fromSeconds=function(e,n){if(void 0===n&&(n={}),q(e))return new t({ts:1e3*e,zone:Wt(n.zone,Qt.defaultZone),loc:ue.fromObject(n)});throw new v("fromSeconds requires a numerical input")},t.fromObject=function(e){var n=Wt(e.zone,Qt.defaultZone);if(!n.isValid)return t.invalid(Yn(n));var r=Qt.now(),i=n.offset(r),o=pt(e,ur,["zone","locale","outputCalendar","numberingSystem"]),s=!H(o.ordinal),a=!H(o.year),l=!H(o.month)||!H(o.day),c=a||l,d=o.weekYear||o.weekNumber,f=ue.fromObject(e);if((c||s)&&d)throw new m("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(l&&s)throw new m("Can't mix ordinal dates with month/day");var p,h,g=d||o.weekday&&!c,v=Xn(r,i);g?(p=lr,h=or,v=Rn(v)):s?(p=cr,h=sr,v=Un(v)):(p=ar,h=ir);for(var w,y=!1,b=u(p);!(w=b()).done;){var _=w.value;H(o[_])?o[_]=y?h[_]:v[_]:y=!0}var x=g?function(t){var e=W(t.weekYear),n=Q(t.weekNumber,1,lt(t.weekYear)),r=Q(t.weekday,1,7);return e?n?!r&&Dn("weekday",t.weekday):Dn("week",t.week):Dn("weekYear",t.weekYear)}(o):s?function(t){var e=W(t.year),n=Q(t.ordinal,1,ot(t.year));return e?!n&&Dn("ordinal",t.ordinal):Dn("year",t.year)}(o):Hn(o),k=x||qn(o);if(k)return t.invalid(k);var S=Qn(g?zn(o):s?Vn(o):o,i,n),C=new t({ts:S[0],zone:n,o:S[1],loc:f});return o.weekday&&c&&e.weekday!==C.weekday?t.invalid("mismatched weekday","you can't specify both a weekday of "+o.weekday+" and a date of "+C.toISO()):C},t.fromISO=function(t,e){void 0===e&&(e={});var n=function(t){return pe(t,[Re,He],[ze,qe],[Ue,We],[Ve,Ze])}(t);return er(n[0],n[1],e,"ISO 8601",t)},t.fromRFC2822=function(t,e){void 0===e&&(e={});var n=function(t){return pe(function(t){return t.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").trim()}(t),[Ie,Le])}(t);return er(n[0],n[1],e,"RFC 2822",t)},t.fromHTTP=function(t,e){void 0===e&&(e={});var n=function(t){return pe(t,[$e,Fe],[De,Fe],[Ne,Be])}(t);return er(n[0],n[1],e,"HTTP",e)},t.fromFormat=function(e,n,r){if(void 0===r&&(r={}),H(e)||H(n))throw new v("fromFormat requires an input string and a format");var i=r,o=i.locale,s=void 0===o?null:o,a=i.numberingSystem,l=void 0===a?null:a,c=function(t,e,n){var r=In(t,e,n);return[r.result,r.zone,r.invalidReason]}(ue.fromOpts({locale:s,numberingSystem:l,defaultToEN:!0}),e,n),u=c[0],d=c[1],f=c[2];return f?t.invalid(f):er(u,d,r,"format "+n,e)},t.fromString=function(e,n,r){return void 0===r&&(r={}),t.fromFormat(e,n,r)},t.fromSQL=function(t,e){void 0===e&&(e={});var n=function(t){return pe(t,[Ge,Ke],[Je,Xe])}(t);return er(n[0],n[1],e,"SQL",t)},t.invalid=function(e,n){if(void 0===n&&(n=null),!e)throw new v("need to specify a reason the DateTime is invalid");var r=e instanceof Lt?e:new Lt(e,n);if(Qt.throwOnInvalid)throw new f(r);return new t({invalid:r})},t.isDateTime=function(t){return t&&t.isLuxonDateTime||!1};var e=t.prototype;return e.get=function(t){return this[t]},e.resolvedLocaleOpts=function(t){void 0===t&&(t={});var e=It.create(this.loc.clone(t),t).resolvedOptions(this);return{locale:e.locale,numberingSystem:e.numberingSystem,outputCalendar:e.calendar}},e.toUTC=function(t,e){return void 0===t&&(t=0),void 0===e&&(e={}),this.setZone(Ht.instance(t),e)},e.toLocal=function(){return this.setZone(Qt.defaultZone)},e.setZone=function(e,n){var r=void 0===n?{}:n,i=r.keepLocalTime,o=void 0!==i&&i,s=r.keepCalendarTime,a=void 0!==s&&s;if((e=Wt(e,Qt.defaultZone)).equals(this.zone))return this;if(e.isValid){var l=this.ts;if(o||a){var c=e.offset(this.ts);l=Qn(this.toObject(),c,e)[0]}return Jn(this,{ts:l,zone:e})}return t.invalid(Yn(e))},e.reconfigure=function(t){var e=void 0===t?{}:t,n=e.locale,r=e.numberingSystem,i=e.outputCalendar;return Jn(this,{loc:this.loc.clone({locale:n,numberingSystem:r,outputCalendar:i})})},e.setLocale=function(t){return this.reconfigure({locale:t})},e.set=function(t){if(!this.isValid)return this;var e,n=pt(t,ur,[]),r=!H(n.weekYear)||!H(n.weekNumber)||!H(n.weekday),i=!H(n.ordinal),o=!H(n.year),s=!H(n.month)||!H(n.day),a=o||s,l=n.weekYear||n.weekNumber;if((a||i)&&l)throw new m("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(s&&i)throw new m("Can't mix ordinal dates with month/day");r?e=zn(Object.assign(Rn(this.c),n)):H(n.ordinal)?(e=Object.assign(this.toObject(),n),H(n.day)&&(e.day=Math.min(st(e.year,e.month),e.day))):e=Vn(Object.assign(Un(this.c),n));var c=Qn(e,this.o,this.zone);return Jn(this,{ts:c[0],o:c[1]})},e.plus=function(t){return this.isValid?Jn(this,tr(this,un(t))):this},e.minus=function(t){return this.isValid?Jn(this,tr(this,un(t).negate())):this},e.startOf=function(t){if(!this.isValid)return this;var e={},n=cn.normalizeUnit(t);switch(n){case"years":e.month=1;case"quarters":case"months":e.day=1;case"weeks":case"days":e.hour=0;case"hours":e.minute=0;case"minutes":e.second=0;case"seconds":e.millisecond=0}if("weeks"===n&&(e.weekday=1),"quarters"===n){var r=Math.ceil(this.month/3);e.month=3*(r-1)+1}return this.set(e)},e.endOf=function(t){var e;return this.isValid?this.plus((e={},e[t]=1,e)).startOf(t).minus(1):this},e.toFormat=function(t,e){return void 0===e&&(e={}),this.isValid?It.create(this.loc.redefaultToEN(e)).formatDateTimeFromString(this,t):Wn},e.toLocaleString=function(t){return void 0===t&&(t=x),this.isValid?It.create(this.loc.clone(t),t).formatDateTime(this):Wn},e.toLocaleParts=function(t){return void 0===t&&(t={}),this.isValid?It.create(this.loc.clone(t),t).formatDateTimeParts(this):[]},e.toISO=function(t){return void 0===t&&(t={}),this.isValid?this.toISODate(t)+"T"+this.toISOTime(t):null},e.toISODate=function(t){var e=(void 0===t?{}:t).format,n="basic"===(void 0===e?"extended":e)?"yyyyMMdd":"yyyy-MM-dd";return this.year>9999&&(n="+"+n),nr(this,n)},e.toISOWeekDate=function(){return nr(this,"kkkk-'W'WW-c")},e.toISOTime=function(t){var e=void 0===t?{}:t,n=e.suppressMilliseconds,r=void 0!==n&&n,i=e.suppressSeconds,o=void 0!==i&&i,s=e.includeOffset,a=void 0===s||s,l=e.includePrefix,c=void 0!==l&&l,u=e.format;return rr(this,{suppressSeconds:o,suppressMilliseconds:r,includeOffset:a,includePrefix:c,format:void 0===u?"extended":u})},e.toRFC2822=function(){return nr(this,"EEE, dd LLL yyyy HH:mm:ss ZZZ",!1)},e.toHTTP=function(){return nr(this.toUTC(),"EEE, dd LLL yyyy HH:mm:ss 'GMT'")},e.toSQLDate=function(){return nr(this,"yyyy-MM-dd")},e.toSQLTime=function(t){var e=void 0===t?{}:t,n=e.includeOffset,r=void 0===n||n,i=e.includeZone;return rr(this,{includeOffset:r,includeZone:void 0!==i&&i,spaceZone:!0})},e.toSQL=function(t){return void 0===t&&(t={}),this.isValid?this.toSQLDate()+" "+this.toSQLTime(t):null},e.toString=function(){return this.isValid?this.toISO():Wn},e.valueOf=function(){return this.toMillis()},e.toMillis=function(){return this.isValid?this.ts:NaN},e.toSeconds=function(){return this.isValid?this.ts/1e3:NaN},e.toJSON=function(){return this.toISO()},e.toBSON=function(){return this.toJSDate()},e.toObject=function(t){if(void 0===t&&(t={}),!this.isValid)return{};var e=Object.assign({},this.c);return t.includeConfig&&(e.outputCalendar=this.outputCalendar,e.numberingSystem=this.loc.numberingSystem,e.locale=this.loc.locale),e},e.toJSDate=function(){return new Date(this.isValid?this.ts:NaN)},e.diff=function(t,e,n){if(void 0===e&&(e="milliseconds"),void 0===n&&(n={}),!this.isValid||!t.isValid)return cn.invalid(this.invalid||t.invalid,"created by diffing an invalid DateTime");var r,i=Object.assign({locale:this.locale,numberingSystem:this.numberingSystem},n),o=(r=e,Array.isArray(r)?r:[r]).map(cn.normalizeUnit),s=t.valueOf()>this.valueOf(),a=gn(s?this:t,s?t:this,o,i);return s?a.negate():a},e.diffNow=function(e,n){return void 0===e&&(e="milliseconds"),void 0===n&&(n={}),this.diff(t.now(),e,n)},e.until=function(t){return this.isValid?pn.fromDateTimes(this,t):this},e.hasSame=function(t,e){if(!this.isValid)return!1;var n=t.valueOf(),r=this.setZone(t.zone,{keepLocalTime:!0});return r.startOf(e)<=n&&n<=r.endOf(e)},e.equals=function(t){return this.isValid&&t.isValid&&this.valueOf()===t.valueOf()&&this.zone.equals(t.zone)&&this.loc.equals(t.loc)},e.toRelative=function(e){if(void 0===e&&(e={}),!this.isValid)return null;var n=e.base||t.fromObject({zone:this.zone}),r=e.padding?this<n?-e.padding:e.padding:0,i=["years","months","days","hours","minutes","seconds"],o=e.unit;return Array.isArray(e.unit)&&(i=e.unit,o=void 0),fr(n,this.plus(r),Object.assign(e,{numeric:"always",units:i,unit:o}))},e.toRelativeCalendar=function(e){return void 0===e&&(e={}),this.isValid?fr(e.base||t.fromObject({zone:this.zone}),this,Object.assign(e,{numeric:"auto",units:["years","months","days"],calendary:!0})):null},t.min=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];if(!n.every(t.isDateTime))throw new v("min requires all arguments be DateTimes");return J(n,(function(t){return t.valueOf()}),Math.min)},t.max=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];if(!n.every(t.isDateTime))throw new v("max requires all arguments be DateTimes");return J(n,(function(t){return t.valueOf()}),Math.max)},t.fromFormatExplain=function(t,e,n){void 0===n&&(n={});var r=n,i=r.locale,o=void 0===i?null:i,s=r.numberingSystem,a=void 0===s?null:s;return In(ue.fromOpts({locale:o,numberingSystem:a,defaultToEN:!0}),t,e)},t.fromStringExplain=function(e,n,r){return void 0===r&&(r={}),t.fromFormatExplain(e,n,r)},r(t,[{key:"isValid",get:function(){return null===this.invalid}},{key:"invalidReason",get:function(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function(){return this.invalid?this.invalid.explanation:null}},{key:"locale",get:function(){return this.isValid?this.loc.locale:null}},{key:"numberingSystem",get:function(){return this.isValid?this.loc.numberingSystem:null}},{key:"outputCalendar",get:function(){return this.isValid?this.loc.outputCalendar:null}},{key:"zone",get:function(){return this._zone}},{key:"zoneName",get:function(){return this.isValid?this.zone.name:null}},{key:"year",get:function(){return this.isValid?this.c.year:NaN}},{key:"quarter",get:function(){return this.isValid?Math.ceil(this.c.month/3):NaN}},{key:"month",get:function(){return this.isValid?this.c.month:NaN}},{key:"day",get:function(){return this.isValid?this.c.day:NaN}},{key:"hour",get:function(){return this.isValid?this.c.hour:NaN}},{key:"minute",get:function(){return this.isValid?this.c.minute:NaN}},{key:"second",get:function(){return this.isValid?this.c.second:NaN}},{key:"millisecond",get:function(){return this.isValid?this.c.millisecond:NaN}},{key:"weekYear",get:function(){return this.isValid?Gn(this).weekYear:NaN}},{key:"weekNumber",get:function(){return this.isValid?Gn(this).weekNumber:NaN}},{key:"weekday",get:function(){return this.isValid?Gn(this).weekday:NaN}},{key:"ordinal",get:function(){return this.isValid?Un(this.c).ordinal:NaN}},{key:"monthShort",get:function(){return this.isValid?hn.months("short",{locObj:this.loc})[this.month-1]:null}},{key:"monthLong",get:function(){return this.isValid?hn.months("long",{locObj:this.loc})[this.month-1]:null}},{key:"weekdayShort",get:function(){return this.isValid?hn.weekdays("short",{locObj:this.loc})[this.weekday-1]:null}},{key:"weekdayLong",get:function(){return this.isValid?hn.weekdays("long",{locObj:this.loc})[this.weekday-1]:null}},{key:"offset",get:function(){return this.isValid?+this.o:NaN}},{key:"offsetNameShort",get:function(){return this.isValid?this.zone.offsetName(this.ts,{format:"short",locale:this.locale}):null}},{key:"offsetNameLong",get:function(){return this.isValid?this.zone.offsetName(this.ts,{format:"long",locale:this.locale}):null}},{key:"isOffsetFixed",get:function(){return this.isValid?this.zone.universal:null}},{key:"isInDST",get:function(){return!this.isOffsetFixed&&(this.offset>this.set({month:1}).offset||this.offset>this.set({month:5}).offset)}},{key:"isInLeapYear",get:function(){return it(this.year)}},{key:"daysInMonth",get:function(){return st(this.year,this.month)}},{key:"daysInYear",get:function(){return this.isValid?ot(this.year):NaN}},{key:"weeksInWeekYear",get:function(){return this.isValid?lt(this.weekYear):NaN}}],[{key:"DATE_SHORT",get:function(){return x}},{key:"DATE_MED",get:function(){return k}},{key:"DATE_MED_WITH_WEEKDAY",get:function(){return S}},{key:"DATE_FULL",get:function(){return C}},{key:"DATE_HUGE",get:function(){return O}},{key:"TIME_SIMPLE",get:function(){return T}},{key:"TIME_WITH_SECONDS",get:function(){return E}},{key:"TIME_WITH_SHORT_OFFSET",get:function(){return j}},{key:"TIME_WITH_LONG_OFFSET",get:function(){return A}},{key:"TIME_24_SIMPLE",get:function(){return P}},{key:"TIME_24_WITH_SECONDS",get:function(){return M}},{key:"TIME_24_WITH_SHORT_OFFSET",get:function(){return I}},{key:"TIME_24_WITH_LONG_OFFSET",get:function(){return L}},{key:"DATETIME_SHORT",get:function(){return $}},{key:"DATETIME_SHORT_WITH_SECONDS",get:function(){return D}},{key:"DATETIME_MED",get:function(){return N}},{key:"DATETIME_MED_WITH_SECONDS",get:function(){return F}},{key:"DATETIME_MED_WITH_WEEKDAY",get:function(){return B}},{key:"DATETIME_FULL",get:function(){return R}},{key:"DATETIME_FULL_WITH_SECONDS",get:function(){return z}},{key:"DATETIME_HUGE",get:function(){return U}},{key:"DATETIME_HUGE_WITH_SECONDS",get:function(){return V}}]),t}();function hr(t){if(pr.isDateTime(t))return t;if(t&&t.valueOf&&q(t.valueOf()))return pr.fromJSDate(t);if(t&&"object"==typeof t)return pr.fromObject(t);throw new v("Unknown datetime argument: "+t+", of type "+typeof t)}e.ou=pr},9588:function(t){t.exports=function(t,e){var n,r,i=0;function o(){var o,s,a=n,l=arguments.length;t:for(;a;){if(a.args.length===arguments.length){for(s=0;s<l;s++)if(a.args[s]!==arguments[s]){a=a.next;continue t}return a!==n&&(a===r&&(r=a.prev),a.prev.next=a.next,a.next&&(a.next.prev=a.prev),a.next=n,a.prev=null,n.prev=a,n=a),a.val}a=a.next}for(o=new Array(l),s=0;s<l;s++)o[s]=arguments[s];return a={args:o,val:t.apply(null,o)},n?(n.prev=a,a.next=n):r=a,i===e.maxSize?(r=r.prev).next=null:i++,n=a,a.val}return e=e||{},o.clear=function(){n=null,r=null,i=0},o}},526:function(){},631:function(t,e,n){var r="function"==typeof Map&&Map.prototype,i=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,o=r&&i&&"function"==typeof i.get?i.get:null,s=r&&Map.prototype.forEach,a="function"==typeof Set&&Set.prototype,l=Object.getOwnPropertyDescriptor&&a?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=a&&l&&"function"==typeof l.get?l.get:null,u=a&&Set.prototype.forEach,d="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,f="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,p="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,h=Boolean.prototype.valueOf,m=Object.prototype.toString,g=Function.prototype.toString,v=String.prototype.match,w=String.prototype.slice,y=String.prototype.replace,b=String.prototype.toUpperCase,_=String.prototype.toLowerCase,x=RegExp.prototype.test,k=Array.prototype.concat,S=Array.prototype.join,C=Array.prototype.slice,O=Math.floor,T="function"==typeof BigInt?BigInt.prototype.valueOf:null,E=Object.getOwnPropertySymbols,j="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,A="function"==typeof Symbol&&"object"==typeof Symbol.iterator,P="function"==typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===A||"symbol")?Symbol.toStringTag:null,M=Object.prototype.propertyIsEnumerable,I=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(t){return t.__proto__}:null);function L(t,e){if(t===1/0||t===-1/0||t!=t||t&&t>-1e3&&t<1e3||x.call(/e/,e))return e;var n=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"==typeof t){var r=t<0?-O(-t):O(t);if(r!==t){var i=String(r),o=w.call(e,i.length+1);return y.call(i,n,"$&_")+"."+y.call(y.call(o,/([0-9]{3})/g,"$&_"),/_$/,"")}}return y.call(e,n,"$&_")}var $=n(4654),D=$.custom,N=U(D)?D:null;function F(t,e,n){var r="double"===(n.quoteStyle||e)?'"':"'";return r+t+r}function B(t){return y.call(String(t),/"/g,"&quot;")}function R(t){return!("[object Array]"!==q(t)||P&&"object"==typeof t&&P in t)}function z(t){return!("[object RegExp]"!==q(t)||P&&"object"==typeof t&&P in t)}function U(t){if(A)return t&&"object"==typeof t&&t instanceof Symbol;if("symbol"==typeof t)return!0;if(!t||"object"!=typeof t||!j)return!1;try{return j.call(t),!0}catch(t){}return!1}t.exports=function t(e,n,r,i){var a=n||{};if(H(a,"quoteStyle")&&"single"!==a.quoteStyle&&"double"!==a.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(H(a,"maxStringLength")&&("number"==typeof a.maxStringLength?a.maxStringLength<0&&a.maxStringLength!==1/0:null!==a.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var l=!H(a,"customInspect")||a.customInspect;if("boolean"!=typeof l&&"symbol"!==l)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(H(a,"indent")&&null!==a.indent&&"\t"!==a.indent&&!(parseInt(a.indent,10)===a.indent&&a.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(H(a,"numericSeparator")&&"boolean"!=typeof a.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var m=a.numericSeparator;if(void 0===e)return"undefined";if(null===e)return"null";if("boolean"==typeof e)return e?"true":"false";if("string"==typeof e)return Z(e,a);if("number"==typeof e){if(0===e)return 1/0/e>0?"0":"-0";var b=String(e);return m?L(e,b):b}if("bigint"==typeof e){var x=String(e)+"n";return m?L(e,x):x}var O=void 0===a.depth?5:a.depth;if(void 0===r&&(r=0),r>=O&&O>0&&"object"==typeof e)return R(e)?"[Array]":"[Object]";var E=function(t,e){var n;if("\t"===t.indent)n="\t";else{if(!("number"==typeof t.indent&&t.indent>0))return null;n=S.call(Array(t.indent+1)," ")}return{base:n,prev:S.call(Array(e+1),n)}}(a,r);if(void 0===i)i=[];else if(W(i,e)>=0)return"[Circular]";function D(e,n,o){if(n&&(i=C.call(i)).push(n),o){var s={depth:a.depth};return H(a,"quoteStyle")&&(s.quoteStyle=a.quoteStyle),t(e,s,r+1,i)}return t(e,a,r+1,i)}if("function"==typeof e&&!z(e)){var V=function(t){if(t.name)return t.name;var e=v.call(g.call(t),/^function\s*([\w$]+)/);if(e)return e[1];return null}(e),Y=Q(e,D);return"[Function"+(V?": "+V:" (anonymous)")+"]"+(Y.length>0?" { "+S.call(Y,", ")+" }":"")}if(U(e)){var tt=A?y.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):j.call(e);return"object"!=typeof e||A?tt:G(tt)}if(function(t){if(!t||"object"!=typeof t)return!1;if("undefined"!=typeof HTMLElement&&t instanceof HTMLElement)return!0;return"string"==typeof t.nodeName&&"function"==typeof t.getAttribute}(e)){for(var et="<"+_.call(String(e.nodeName)),nt=e.attributes||[],rt=0;rt<nt.length;rt++)et+=" "+nt[rt].name+"="+F(B(nt[rt].value),"double",a);return et+=">",e.childNodes&&e.childNodes.length&&(et+="..."),et+="</"+_.call(String(e.nodeName))+">"}if(R(e)){if(0===e.length)return"[]";var it=Q(e,D);return E&&!function(t){for(var e=0;e<t.length;e++)if(W(t[e],"\n")>=0)return!1;return!0}(it)?"["+X(it,E)+"]":"[ "+S.call(it,", ")+" ]"}if(function(t){return!("[object Error]"!==q(t)||P&&"object"==typeof t&&P in t)}(e)){var ot=Q(e,D);return"cause"in Error.prototype||!("cause"in e)||M.call(e,"cause")?0===ot.length?"["+String(e)+"]":"{ ["+String(e)+"] "+S.call(ot,", ")+" }":"{ ["+String(e)+"] "+S.call(k.call("[cause]: "+D(e.cause),ot),", ")+" }"}if("object"==typeof e&&l){if(N&&"function"==typeof e[N]&&$)return $(e,{depth:O-r});if("symbol"!==l&&"function"==typeof e.inspect)return e.inspect()}if(function(t){if(!o||!t||"object"!=typeof t)return!1;try{o.call(t);try{c.call(t)}catch(t){return!0}return t instanceof Map}catch(t){}return!1}(e)){var st=[];return s&&s.call(e,(function(t,n){st.push(D(n,e,!0)+" => "+D(t,e))})),K("Map",o.call(e),st,E)}if(function(t){if(!c||!t||"object"!=typeof t)return!1;try{c.call(t);try{o.call(t)}catch(t){return!0}return t instanceof Set}catch(t){}return!1}(e)){var at=[];return u&&u.call(e,(function(t){at.push(D(t,e))})),K("Set",c.call(e),at,E)}if(function(t){if(!d||!t||"object"!=typeof t)return!1;try{d.call(t,d);try{f.call(t,f)}catch(t){return!0}return t instanceof WeakMap}catch(t){}return!1}(e))return J("WeakMap");if(function(t){if(!f||!t||"object"!=typeof t)return!1;try{f.call(t,f);try{d.call(t,d)}catch(t){return!0}return t instanceof WeakSet}catch(t){}return!1}(e))return J("WeakSet");if(function(t){if(!p||!t||"object"!=typeof t)return!1;try{return p.call(t),!0}catch(t){}return!1}(e))return J("WeakRef");if(function(t){return!("[object Number]"!==q(t)||P&&"object"==typeof t&&P in t)}(e))return G(D(Number(e)));if(function(t){if(!t||"object"!=typeof t||!T)return!1;try{return T.call(t),!0}catch(t){}return!1}(e))return G(D(T.call(e)));if(function(t){return!("[object Boolean]"!==q(t)||P&&"object"==typeof t&&P in t)}(e))return G(h.call(e));if(function(t){return!("[object String]"!==q(t)||P&&"object"==typeof t&&P in t)}(e))return G(D(String(e)));if(!function(t){return!("[object Date]"!==q(t)||P&&"object"==typeof t&&P in t)}(e)&&!z(e)){var lt=Q(e,D),ct=I?I(e)===Object.prototype:e instanceof Object||e.constructor===Object,ut=e instanceof Object?"":"null prototype",dt=!ct&&P&&Object(e)===e&&P in e?w.call(q(e),8,-1):ut?"Object":"",ft=(ct||"function"!=typeof e.constructor?"":e.constructor.name?e.constructor.name+" ":"")+(dt||ut?"["+S.call(k.call([],dt||[],ut||[]),": ")+"] ":"");return 0===lt.length?ft+"{}":E?ft+"{"+X(lt,E)+"}":ft+"{ "+S.call(lt,", ")+" }"}return String(e)};var V=Object.prototype.hasOwnProperty||function(t){return t in this};function H(t,e){return V.call(t,e)}function q(t){return m.call(t)}function W(t,e){if(t.indexOf)return t.indexOf(e);for(var n=0,r=t.length;n<r;n++)if(t[n]===e)return n;return-1}function Z(t,e){if(t.length>e.maxStringLength){var n=t.length-e.maxStringLength,r="... "+n+" more character"+(n>1?"s":"");return Z(w.call(t,0,e.maxStringLength),e)+r}return F(y.call(y.call(t,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,Y),"single",e)}function Y(t){var e=t.charCodeAt(0),n={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return n?"\\"+n:"\\x"+(e<16?"0":"")+b.call(e.toString(16))}function G(t){return"Object("+t+")"}function J(t){return t+" { ? }"}function K(t,e,n,r){return t+" ("+e+") {"+(r?X(n,r):S.call(n,", "))+"}"}function X(t,e){if(0===t.length)return"";var n="\n"+e.prev+e.base;return n+S.call(t,","+n)+"\n"+e.prev}function Q(t,e){var n=R(t),r=[];if(n){r.length=t.length;for(var i=0;i<t.length;i++)r[i]=H(t,i)?e(t[i],t):""}var o,s="function"==typeof E?E(t):[];if(A){o={};for(var a=0;a<s.length;a++)o["$"+s[a]]=s[a]}for(var l in t)H(t,l)&&(n&&String(Number(l))===l&&l<t.length||A&&o["$"+l]instanceof Symbol||(x.call(/[^\w$]/,l)?r.push(e(l,t)+": "+e(t[l],t)):r.push(l+": "+e(t[l],t))));if("function"==typeof E)for(var c=0;c<s.length;c++)M.call(t,s[c])&&r.push("["+e(s[c])+"]: "+e(t[s[c]],t));return r}},5798:function(t){"use strict";var e=String.prototype.replace,n=/%20/g,r="RFC1738",i="RFC3986";t.exports={default:i,formatters:{RFC1738:function(t){return e.call(t,n,"+")},RFC3986:function(t){return String(t)}},RFC1738:r,RFC3986:i}},129:function(t,e,n){"use strict";var r=n(8261),i=n(5235),o=n(5798);t.exports={formats:o,parse:i,stringify:r}},5235:function(t,e,n){"use strict";var r=n(2769),i=Object.prototype.hasOwnProperty,o=Array.isArray,s={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:r.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},a=function(t){return t.replace(/&#(\d+);/g,(function(t,e){return String.fromCharCode(parseInt(e,10))}))},l=function(t,e){return t&&"string"==typeof t&&e.comma&&t.indexOf(",")>-1?t.split(","):t},c=function(t,e,n,r){if(t){var o=n.allowDots?t.replace(/\.([^.[]+)/g,"[$1]"):t,s=/(\[[^[\]]*])/g,a=n.depth>0&&/(\[[^[\]]*])/.exec(o),c=a?o.slice(0,a.index):o,u=[];if(c){if(!n.plainObjects&&i.call(Object.prototype,c)&&!n.allowPrototypes)return;u.push(c)}for(var d=0;n.depth>0&&null!==(a=s.exec(o))&&d<n.depth;){if(d+=1,!n.plainObjects&&i.call(Object.prototype,a[1].slice(1,-1))&&!n.allowPrototypes)return;u.push(a[1])}return a&&u.push("["+o.slice(a.index)+"]"),function(t,e,n,r){for(var i=r?e:l(e,n),o=t.length-1;o>=0;--o){var s,a=t[o];if("[]"===a&&n.parseArrays)s=[].concat(i);else{s=n.plainObjects?Object.create(null):{};var c="["===a.charAt(0)&&"]"===a.charAt(a.length-1)?a.slice(1,-1):a,u=parseInt(c,10);n.parseArrays||""!==c?!isNaN(u)&&a!==c&&String(u)===c&&u>=0&&n.parseArrays&&u<=n.arrayLimit?(s=[])[u]=i:"__proto__"!==c&&(s[c]=i):s={0:i}}i=s}return i}(u,e,n,r)}};t.exports=function(t,e){var n=function(t){if(!t)return s;if(null!==t.decoder&&void 0!==t.decoder&&"function"!=typeof t.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var e=void 0===t.charset?s.charset:t.charset;return{allowDots:void 0===t.allowDots?s.allowDots:!!t.allowDots,allowPrototypes:"boolean"==typeof t.allowPrototypes?t.allowPrototypes:s.allowPrototypes,allowSparse:"boolean"==typeof t.allowSparse?t.allowSparse:s.allowSparse,arrayLimit:"number"==typeof t.arrayLimit?t.arrayLimit:s.arrayLimit,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:s.charsetSentinel,comma:"boolean"==typeof t.comma?t.comma:s.comma,decoder:"function"==typeof t.decoder?t.decoder:s.decoder,delimiter:"string"==typeof t.delimiter||r.isRegExp(t.delimiter)?t.delimiter:s.delimiter,depth:"number"==typeof t.depth||!1===t.depth?+t.depth:s.depth,ignoreQueryPrefix:!0===t.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof t.interpretNumericEntities?t.interpretNumericEntities:s.interpretNumericEntities,parameterLimit:"number"==typeof t.parameterLimit?t.parameterLimit:s.parameterLimit,parseArrays:!1!==t.parseArrays,plainObjects:"boolean"==typeof t.plainObjects?t.plainObjects:s.plainObjects,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:s.strictNullHandling}}(e);if(""===t||null==t)return n.plainObjects?Object.create(null):{};for(var u="string"==typeof t?function(t,e){var n,c={},u=e.ignoreQueryPrefix?t.replace(/^\?/,""):t,d=e.parameterLimit===1/0?void 0:e.parameterLimit,f=u.split(e.delimiter,d),p=-1,h=e.charset;if(e.charsetSentinel)for(n=0;n<f.length;++n)0===f[n].indexOf("utf8=")&&("utf8=%E2%9C%93"===f[n]?h="utf-8":"utf8=%26%2310003%3B"===f[n]&&(h="iso-8859-1"),p=n,n=f.length);for(n=0;n<f.length;++n)if(n!==p){var m,g,v=f[n],w=v.indexOf("]="),y=-1===w?v.indexOf("="):w+1;-1===y?(m=e.decoder(v,s.decoder,h,"key"),g=e.strictNullHandling?null:""):(m=e.decoder(v.slice(0,y),s.decoder,h,"key"),g=r.maybeMap(l(v.slice(y+1),e),(function(t){return e.decoder(t,s.decoder,h,"value")}))),g&&e.interpretNumericEntities&&"iso-8859-1"===h&&(g=a(g)),v.indexOf("[]=")>-1&&(g=o(g)?[g]:g),i.call(c,m)?c[m]=r.combine(c[m],g):c[m]=g}return c}(t,n):t,d=n.plainObjects?Object.create(null):{},f=Object.keys(u),p=0;p<f.length;++p){var h=f[p],m=c(h,u[h],n,"string"==typeof t);d=r.merge(d,m,n)}return!0===n.allowSparse?d:r.compact(d)}},8261:function(t,e,n){"use strict";var r=n(7478),i=n(2769),o=n(5798),s=Object.prototype.hasOwnProperty,a={brackets:function(t){return t+"[]"},comma:"comma",indices:function(t,e){return t+"["+e+"]"},repeat:function(t){return t}},l=Array.isArray,c=Array.prototype.push,u=function(t,e){c.apply(t,l(e)?e:[e])},d=Date.prototype.toISOString,f=o.default,p={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:i.encode,encodeValuesOnly:!1,format:f,formatter:o.formatters[f],indices:!1,serializeDate:function(t){return d.call(t)},skipNulls:!1,strictNullHandling:!1},h={},m=function t(e,n,o,s,a,c,d,f,m,g,v,w,y,b,_,x){for(var k,S=e,C=x,O=0,T=!1;void 0!==(C=C.get(h))&&!T;){var E=C.get(e);if(O+=1,void 0!==E){if(E===O)throw new RangeError("Cyclic object value");T=!0}void 0===C.get(h)&&(O=0)}if("function"==typeof f?S=f(n,S):S instanceof Date?S=v(S):"comma"===o&&l(S)&&(S=i.maybeMap(S,(function(t){return t instanceof Date?v(t):t}))),null===S){if(a)return d&&!b?d(n,p.encoder,_,"key",w):n;S=""}if("string"==typeof(k=S)||"number"==typeof k||"boolean"==typeof k||"symbol"==typeof k||"bigint"==typeof k||i.isBuffer(S))return d?[y(b?n:d(n,p.encoder,_,"key",w))+"="+y(d(S,p.encoder,_,"value",w))]:[y(n)+"="+y(String(S))];var j,A=[];if(void 0===S)return A;if("comma"===o&&l(S))b&&d&&(S=i.maybeMap(S,d)),j=[{value:S.length>0?S.join(",")||null:void 0}];else if(l(f))j=f;else{var P=Object.keys(S);j=m?P.sort(m):P}for(var M=s&&l(S)&&1===S.length?n+"[]":n,I=0;I<j.length;++I){var L=j[I],$="object"==typeof L&&void 0!==L.value?L.value:S[L];if(!c||null!==$){var D=l(S)?"function"==typeof o?o(M,L):M:M+(g?"."+L:"["+L+"]");x.set(e,O);var N=r();N.set(h,x),u(A,t($,D,o,s,a,c,"comma"===o&&b&&l(S)?null:d,f,m,g,v,w,y,b,_,N))}}return A};t.exports=function(t,e){var n,i=t,c=function(t){if(!t)return p;if(null!==t.encoder&&void 0!==t.encoder&&"function"!=typeof t.encoder)throw new TypeError("Encoder has to be a function.");var e=t.charset||p.charset;if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var n=o.default;if(void 0!==t.format){if(!s.call(o.formatters,t.format))throw new TypeError("Unknown format option provided.");n=t.format}var r=o.formatters[n],i=p.filter;return("function"==typeof t.filter||l(t.filter))&&(i=t.filter),{addQueryPrefix:"boolean"==typeof t.addQueryPrefix?t.addQueryPrefix:p.addQueryPrefix,allowDots:void 0===t.allowDots?p.allowDots:!!t.allowDots,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:p.charsetSentinel,delimiter:void 0===t.delimiter?p.delimiter:t.delimiter,encode:"boolean"==typeof t.encode?t.encode:p.encode,encoder:"function"==typeof t.encoder?t.encoder:p.encoder,encodeValuesOnly:"boolean"==typeof t.encodeValuesOnly?t.encodeValuesOnly:p.encodeValuesOnly,filter:i,format:n,formatter:r,serializeDate:"function"==typeof t.serializeDate?t.serializeDate:p.serializeDate,skipNulls:"boolean"==typeof t.skipNulls?t.skipNulls:p.skipNulls,sort:"function"==typeof t.sort?t.sort:null,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:p.strictNullHandling}}(e);"function"==typeof c.filter?i=(0,c.filter)("",i):l(c.filter)&&(n=c.filter);var d,f=[];if("object"!=typeof i||null===i)return"";d=e&&e.arrayFormat in a?e.arrayFormat:e&&"indices"in e?e.indices?"indices":"repeat":"indices";var h=a[d];if(e&&"commaRoundTrip"in e&&"boolean"!=typeof e.commaRoundTrip)throw new TypeError("`commaRoundTrip` must be a boolean, or absent");var g="comma"===h&&e&&e.commaRoundTrip;n||(n=Object.keys(i)),c.sort&&n.sort(c.sort);for(var v=r(),w=0;w<n.length;++w){var y=n[w];c.skipNulls&&null===i[y]||u(f,m(i[y],y,h,g,c.strictNullHandling,c.skipNulls,c.encode?c.encoder:null,c.filter,c.sort,c.allowDots,c.serializeDate,c.format,c.formatter,c.encodeValuesOnly,c.charset,v))}var b=f.join(c.delimiter),_=!0===c.addQueryPrefix?"?":"";return c.charsetSentinel&&("iso-8859-1"===c.charset?_+="utf8=%26%2310003%3B&":_+="utf8=%E2%9C%93&"),b.length>0?_+b:""}},2769:function(t,e,n){"use strict";var r=n(5798),i=Object.prototype.hasOwnProperty,o=Array.isArray,s=function(){for(var t=[],e=0;e<256;++e)t.push("%"+((e<16?"0":"")+e.toString(16)).toUpperCase());return t}(),a=function(t,e){for(var n=e&&e.plainObjects?Object.create(null):{},r=0;r<t.length;++r)void 0!==t[r]&&(n[r]=t[r]);return n};t.exports={arrayToObject:a,assign:function(t,e){return Object.keys(e).reduce((function(t,n){return t[n]=e[n],t}),t)},combine:function(t,e){return[].concat(t,e)},compact:function(t){for(var e=[{obj:{o:t},prop:"o"}],n=[],r=0;r<e.length;++r)for(var i=e[r],s=i.obj[i.prop],a=Object.keys(s),l=0;l<a.length;++l){var c=a[l],u=s[c];"object"==typeof u&&null!==u&&-1===n.indexOf(u)&&(e.push({obj:s,prop:c}),n.push(u))}return function(t){for(;t.length>1;){var e=t.pop(),n=e.obj[e.prop];if(o(n)){for(var r=[],i=0;i<n.length;++i)void 0!==n[i]&&r.push(n[i]);e.obj[e.prop]=r}}}(e),t},decode:function(t,e,n){var r=t.replace(/\+/g," ");if("iso-8859-1"===n)return r.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(r)}catch(t){return r}},encode:function(t,e,n,i,o){if(0===t.length)return t;var a=t;if("symbol"==typeof t?a=Symbol.prototype.toString.call(t):"string"!=typeof t&&(a=String(t)),"iso-8859-1"===n)return escape(a).replace(/%u[0-9a-f]{4}/gi,(function(t){return"%26%23"+parseInt(t.slice(2),16)+"%3B"}));for(var l="",c=0;c<a.length;++c){var u=a.charCodeAt(c);45===u||46===u||95===u||126===u||u>=48&&u<=57||u>=65&&u<=90||u>=97&&u<=122||o===r.RFC1738&&(40===u||41===u)?l+=a.charAt(c):u<128?l+=s[u]:u<2048?l+=s[192|u>>6]+s[128|63&u]:u<55296||u>=57344?l+=s[224|u>>12]+s[128|u>>6&63]+s[128|63&u]:(c+=1,u=65536+((1023&u)<<10|1023&a.charCodeAt(c)),l+=s[240|u>>18]+s[128|u>>12&63]+s[128|u>>6&63]+s[128|63&u])}return l},isBuffer:function(t){return!(!t||"object"!=typeof t)&&!!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t))},isRegExp:function(t){return"[object RegExp]"===Object.prototype.toString.call(t)},maybeMap:function(t,e){if(o(t)){for(var n=[],r=0;r<t.length;r+=1)n.push(e(t[r]));return n}return e(t)},merge:function t(e,n,r){if(!n)return e;if("object"!=typeof n){if(o(e))e.push(n);else{if(!e||"object"!=typeof e)return[e,n];(r&&(r.plainObjects||r.allowPrototypes)||!i.call(Object.prototype,n))&&(e[n]=!0)}return e}if(!e||"object"!=typeof e)return[e].concat(n);var s=e;return o(e)&&!o(n)&&(s=a(e,r)),o(e)&&o(n)?(n.forEach((function(n,o){if(i.call(e,o)){var s=e[o];s&&"object"==typeof s&&n&&"object"==typeof n?e[o]=t(s,n,r):e.push(n)}else e[o]=n})),e):Object.keys(n).reduce((function(e,o){var s=n[o];return i.call(e,o)?e[o]=t(e[o],s,r):e[o]=s,e}),s)}}},7478:function(t,e,n){"use strict";var r=n(210),i=n(1924),o=n(631),s=r("%TypeError%"),a=r("%WeakMap%",!0),l=r("%Map%",!0),c=i("WeakMap.prototype.get",!0),u=i("WeakMap.prototype.set",!0),d=i("WeakMap.prototype.has",!0),f=i("Map.prototype.get",!0),p=i("Map.prototype.set",!0),h=i("Map.prototype.has",!0),m=function(t,e){for(var n,r=t;null!==(n=r.next);r=n)if(n.key===e)return r.next=n.next,n.next=t.next,t.next=n,n};t.exports=function(){var t,e,n,r={assert:function(t){if(!r.has(t))throw new s("Side channel does not contain "+o(t))},get:function(r){if(a&&r&&("object"==typeof r||"function"==typeof r)){if(t)return c(t,r)}else if(l){if(e)return f(e,r)}else if(n)return function(t,e){var n=m(t,e);return n&&n.value}(n,r)},has:function(r){if(a&&r&&("object"==typeof r||"function"==typeof r)){if(t)return d(t,r)}else if(l){if(e)return h(e,r)}else if(n)return function(t,e){return!!m(t,e)}(n,r);return!1},set:function(r,i){a&&r&&("object"==typeof r||"function"==typeof r)?(t||(t=new a),u(t,r,i)):l?(e||(e=new l),p(e,r,i)):(n||(n={key:{},next:null}),function(t,e,n){var r=m(t,e);r?r.value=n:t.next={key:e,next:t.next,value:n}}(n,r,i))}};return r}},8975:function(t,e,n){var r;!function(){"use strict";var i={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function o(t){return function(t,e){var n,r,s,a,l,c,u,d,f,p=1,h=t.length,m="";for(r=0;r<h;r++)if("string"==typeof t[r])m+=t[r];else if("object"==typeof t[r]){if((a=t[r]).keys)for(n=e[p],s=0;s<a.keys.length;s++){if(null==n)throw new Error(o('[sprintf] Cannot access property "%s" of undefined value "%s"',a.keys[s],a.keys[s-1]));n=n[a.keys[s]]}else n=a.param_no?e[a.param_no]:e[p++];if(i.not_type.test(a.type)&&i.not_primitive.test(a.type)&&n instanceof Function&&(n=n()),i.numeric_arg.test(a.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(i.number.test(a.type)&&(d=n>=0),a.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,a.width?parseInt(a.width):0);break;case"e":n=a.precision?parseFloat(n).toExponential(a.precision):parseFloat(n).toExponential();break;case"f":n=a.precision?parseFloat(n).toFixed(a.precision):parseFloat(n);break;case"g":n=a.precision?String(Number(n.toPrecision(a.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=a.precision?n.substring(0,a.precision):n;break;case"t":n=String(!!n),n=a.precision?n.substring(0,a.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=a.precision?n.substring(0,a.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=a.precision?n.substring(0,a.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}i.json.test(a.type)?m+=n:(!i.number.test(a.type)||d&&!a.sign?f="":(f=d?"+":"-",n=n.toString().replace(i.sign,"")),c=a.pad_char?"0"===a.pad_char?"0":a.pad_char.charAt(1):" ",u=a.width-(f+n).length,l=a.width&&u>0?c.repeat(u):"",m+=a.align?f+n+l:"0"===c?f+l+n:l+f+n)}return m}(function(t){if(a[t])return a[t];var e,n=t,r=[],o=0;for(;n;){if(null!==(e=i.text.exec(n)))r.push(e[0]);else if(null!==(e=i.modulo.exec(n)))r.push("%");else{if(null===(e=i.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(e[2]){o|=1;var s=[],l=e[2],c=[];if(null===(c=i.key.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(s.push(c[1]);""!==(l=l.substring(c[0].length));)if(null!==(c=i.key_access.exec(l)))s.push(c[1]);else{if(null===(c=i.index_access.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");s.push(c[1])}e[2]=s}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:e[0],param_no:e[1],keys:e[2],sign:e[3],pad_char:e[4],align:e[5],width:e[6],precision:e[7],type:e[8]})}n=n.substring(e[0].length)}return a[t]=r}(t),arguments)}function s(t,e){return o.apply(null,[t].concat(e||[]))}var a=Object.create(null);e.sprintf=o,e.vsprintf=s,"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=s,void 0===(r=function(){return{sprintf:o,vsprintf:s}}.call(e,n,e,t))||(t.exports=r))}()},9214:function(t,e){var n,r,i;r=this,i=window.srcDoc,n=function(t){!function(t,e){var n,r,i,o=!!("srcdoc"in document.createElement("iframe")),s="Polyfill may not function in the presence of the `sandbox` attribute. Consider using the `force` option.",a=/\ballow-same-origin\b/,l=function(t,e){var n=t.getAttribute("sandbox");"string"!=typeof n||a.test(n)||(e&&e.force?t.removeAttribute("sandbox"):e&&!1===e.force||(i(s),t.setAttribute("data-srcdoc-polyfill",s)))},c={compliant:function(t,e,n){e&&(l(t,n),t.setAttribute("srcdoc",e))},legacy:function(t,e,n){var r;t&&t.getAttribute&&(e?t.setAttribute("srcdoc",e):e=t.getAttribute("srcdoc"),e&&(l(t,n),r="javascript: window.frameElement.getAttribute('srcdoc');",t.contentWindow&&(t.contentWindow.location=r),t.setAttribute("src",r)))}},u=t;if(i=window.console&&window.console.error?function(t){window.console.error("[srcdoc-polyfill] "+t)}:function(){},u.set=c.compliant,u.noConflict=function(){return window.srcDoc=e,u},!o)for(u.set=c.legacy,r=document.getElementsByTagName("iframe"),n=r.length;n--;)u.set(r[n])}(t,i),r.srcDoc=t}.apply(e,[e]),void 0===n||(t.exports=n)},3379:function(t,e,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var t={};return function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(t){n=null}t[e]=n}return t[e]}}(),s=[];function a(t){for(var e=-1,n=0;n<s.length;n++)if(s[n].identifier===t){e=n;break}return e}function l(t,e){for(var n={},r=[],i=0;i<t.length;i++){var o=t[i],l=e.base?o[0]+e.base:o[0],c=n[l]||0,u="".concat(l," ").concat(c);n[l]=c+1;var d=a(u),f={css:o[1],media:o[2],sourceMap:o[3]};-1!==d?(s[d].references++,s[d].updater(f)):s.push({identifier:u,updater:g(f,e),references:1}),r.push(u)}return r}function c(t){var e=document.createElement("style"),r=t.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(t){e.setAttribute(t,r[t])})),"function"==typeof t.insert)t.insert(e);else{var s=o(t.insert||"head");if(!s)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");s.appendChild(e)}return e}var u,d=(u=[],function(t,e){return u[t]=e,u.filter(Boolean).join("\n")});function f(t,e,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(t.styleSheet)t.styleSheet.cssText=d(e,i);else{var o=document.createTextNode(i),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(o,s[e]):t.appendChild(o)}}function p(t,e,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?t.setAttribute("media",i):t.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),t.styleSheet)t.styleSheet.cssText=r;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(r))}}var h=null,m=0;function g(t,e){var n,r,i;if(e.singleton){var o=m++;n=h||(h=c(e)),r=f.bind(null,n,o,!1),i=f.bind(null,n,o,!0)}else n=c(e),r=p.bind(null,n,e),i=function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(n)};return r(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;r(t=e)}else i()}}t.exports=function(t,e){(e=e||{}).singleton||"boolean"==typeof e.singleton||(e.singleton=i());var n=l(t=t||[],e);return function(t){if(t=t||[],"[object Array]"===Object.prototype.toString.call(t)){for(var r=0;r<n.length;r++){var i=a(n[r]);s[i].references--}for(var o=l(t,e),c=0;c<n.length;c++){var u=a(n[c]);0===s[u].references&&(s[u].updater(),s.splice(u,1))}n=o}}}},6455:function(t){t.exports=function(){"use strict";function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t(e)}function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function n(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function r(t,e,r){return e&&n(t.prototype,e),r&&n(t,r),t}function i(){return i=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},i.apply(this,arguments)}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&a(t,e)}function s(t){return s=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)},s(t)}function a(t,e){return a=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t},a(t,e)}function l(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function c(t,e,n){return c=l()?Reflect.construct:function(t,e,n){var r=[null];r.push.apply(r,e);var i=new(Function.bind.apply(t,r));return n&&a(i,n.prototype),i},c.apply(null,arguments)}function u(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function d(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?u(t):e}function f(t){var e=l();return function(){var n,r=s(t);if(e){var i=s(this).constructor;n=Reflect.construct(r,arguments,i)}else n=r.apply(this,arguments);return d(this,n)}}function p(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=s(t)););return t}function h(t,e,n){return h="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var r=p(t,e);if(r){var i=Object.getOwnPropertyDescriptor(r,e);return i.get?i.get.call(n):i.value}},h(t,e,n||t)}var m="SweetAlert2:",g=function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e},v=function(t){return t.charAt(0).toUpperCase()+t.slice(1)},w=function(t){return Object.keys(t).map((function(e){return t[e]}))},y=function(t){return Array.prototype.slice.call(t)},b=function(t){console.warn("".concat(m," ").concat(t))},_=function(t){console.error("".concat(m," ").concat(t))},x=[],k=function(t){-1===x.indexOf(t)&&(x.push(t),b(t))},S=function(t,e){k('"'.concat(t,'" is deprecated and will be removed in the next major release. Please use "').concat(e,'" instead.'))},C=function(t){return"function"==typeof t?t():t},O=function(t){return t&&"function"==typeof t.toPromise},T=function(t){return O(t)?t.toPromise():Promise.resolve(t)},E=function(t){return t&&Promise.resolve(t)===t},j=Object.freeze({cancel:"cancel",backdrop:"backdrop",close:"close",esc:"esc",timer:"timer"}),A=function(e){return"object"===t(e)&&e.jquery},P=function(t){return t instanceof Element||A(t)},M=function(e){var n={};return"object"!==t(e[0])||P(e[0])?["title","html","icon"].forEach((function(r,i){var o=e[i];"string"==typeof o||P(o)?n[r]=o:void 0!==o&&_("Unexpected type of ".concat(r,'! Expected "string" or "Element", got ').concat(t(o)))})):i(n,e[0]),n},I="swal2-",L=function(t){var e={};for(var n in t)e[t[n]]=I+t[n];return e},$=L(["container","shown","height-auto","iosfix","popup","modal","no-backdrop","no-transition","toast","toast-shown","toast-column","show","hide","close","title","header","content","html-container","actions","confirm","cancel","footer","icon","icon-content","image","input","file","range","select","radio","checkbox","label","textarea","inputerror","validation-message","progress-steps","active-progress-step","progress-step","progress-step-line","loading","styled","top","top-start","top-end","top-left","top-right","center","center-start","center-end","center-left","center-right","bottom","bottom-start","bottom-end","bottom-left","bottom-right","grow-row","grow-column","grow-fullscreen","rtl","timer-progress-bar","timer-progress-bar-container","scrollbar-measure","icon-success","icon-warning","icon-info","icon-question","icon-error"]),D=L(["success","warning","info","question","error"]),N=function(){return document.body.querySelector(".".concat($.container))},F=function(t){var e=N();return e?e.querySelector(t):null},B=function(t){return F(".".concat(t))},R=function(){return B($.popup)},z=function(){var t=R();return y(t.querySelectorAll(".".concat($.icon)))},U=function(){var t=z().filter((function(t){return kt(t)}));return t.length?t[0]:null},V=function(){return B($.title)},H=function(){return B($.content)},q=function(){return B($["html-container"])},W=function(){return B($.image)},Z=function(){return B($["progress-steps"])},Y=function(){return B($["validation-message"])},G=function(){return F(".".concat($.actions," .").concat($.confirm))},J=function(){return F(".".concat($.actions," .").concat($.cancel))},K=function(){return B($.actions)},X=function(){return B($.header)},Q=function(){return B($.footer)},tt=function(){return B($["timer-progress-bar"])},et=function(){return B($.close)},nt='\n  a[href],\n  area[href],\n  input:not([disabled]),\n  select:not([disabled]),\n  textarea:not([disabled]),\n  button:not([disabled]),\n  iframe,\n  object,\n  embed,\n  [tabindex="0"],\n  [contenteditable],\n  audio[controls],\n  video[controls],\n  summary\n',rt=function(){var t=y(R().querySelectorAll('[tabindex]:not([tabindex="-1"]):not([tabindex="0"])')).sort((function(t,e){return(t=parseInt(t.getAttribute("tabindex")))>(e=parseInt(e.getAttribute("tabindex")))?1:t<e?-1:0})),e=y(R().querySelectorAll(nt)).filter((function(t){return"-1"!==t.getAttribute("tabindex")}));return g(t.concat(e)).filter((function(t){return kt(t)}))},it=function(){return!ot()&&!document.body.classList.contains($["no-backdrop"])},ot=function(){return document.body.classList.contains($["toast-shown"])},st=function(){return R().hasAttribute("data-loading")},at={previousBodyPadding:null},lt=function(t,e){if(t.textContent="",e){var n=(new DOMParser).parseFromString(e,"text/html");y(n.querySelector("head").childNodes).forEach((function(e){t.appendChild(e)})),y(n.querySelector("body").childNodes).forEach((function(e){t.appendChild(e)}))}},ct=function(t,e){if(!e)return!1;for(var n=e.split(/\s+/),r=0;r<n.length;r++)if(!t.classList.contains(n[r]))return!1;return!0},ut=function(t,e){y(t.classList).forEach((function(n){-1===w($).indexOf(n)&&-1===w(D).indexOf(n)&&-1===w(e.showClass).indexOf(n)&&t.classList.remove(n)}))},dt=function(e,n,r){if(ut(e,n),n.customClass&&n.customClass[r]){if("string"!=typeof n.customClass[r]&&!n.customClass[r].forEach)return b("Invalid type of customClass.".concat(r,'! Expected string or iterable object, got "').concat(t(n.customClass[r]),'"'));gt(e,n.customClass[r])}};function ft(t,e){if(!e)return null;switch(e){case"select":case"textarea":case"file":return wt(t,$[e]);case"checkbox":return t.querySelector(".".concat($.checkbox," input"));case"radio":return t.querySelector(".".concat($.radio," input:checked"))||t.querySelector(".".concat($.radio," input:first-child"));case"range":return t.querySelector(".".concat($.range," input"));default:return wt(t,$.input)}}var pt,ht=function(t){if(t.focus(),"file"!==t.type){var e=t.value;t.value="",t.value=e}},mt=function(t,e,n){t&&e&&("string"==typeof e&&(e=e.split(/\s+/).filter(Boolean)),e.forEach((function(e){t.forEach?t.forEach((function(t){n?t.classList.add(e):t.classList.remove(e)})):n?t.classList.add(e):t.classList.remove(e)})))},gt=function(t,e){mt(t,e,!0)},vt=function(t,e){mt(t,e,!1)},wt=function(t,e){for(var n=0;n<t.childNodes.length;n++)if(ct(t.childNodes[n],e))return t.childNodes[n]},yt=function(t,e,n){n||0===parseInt(n)?t.style[e]="number"==typeof n?"".concat(n,"px"):n:t.style.removeProperty(e)},bt=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"flex";t.style.opacity="",t.style.display=e},_t=function(t){t.style.opacity="",t.style.display="none"},xt=function(t,e,n){e?bt(t,n):_t(t)},kt=function(t){return!(!t||!(t.offsetWidth||t.offsetHeight||t.getClientRects().length))},St=function(t){return!!(t.scrollHeight>t.clientHeight)},Ct=function(t){var e=window.getComputedStyle(t),n=parseFloat(e.getPropertyValue("animation-duration")||"0"),r=parseFloat(e.getPropertyValue("transition-duration")||"0");return n>0||r>0},Ot=function(t,e){if("function"==typeof t.contains)return t.contains(e)},Tt=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=tt();kt(n)&&(e&&(n.style.transition="none",n.style.width="100%"),setTimeout((function(){n.style.transition="width ".concat(t/1e3,"s linear"),n.style.width="0%"}),10))},Et=function(){var t=tt(),e=parseInt(window.getComputedStyle(t).width);t.style.removeProperty("transition"),t.style.width="100%";var n=parseInt(window.getComputedStyle(t).width),r=parseInt(e/n*100);t.style.removeProperty("transition"),t.style.width="".concat(r,"%")},jt=function(){return"undefined"==typeof window||"undefined"==typeof document},At='\n <div aria-labelledby="'.concat($.title,'" aria-describedby="').concat($.content,'" class="').concat($.popup,'" tabindex="-1">\n   <div class="').concat($.header,'">\n     <ul class="').concat($["progress-steps"],'"></ul>\n     <div class="').concat($.icon," ").concat(D.error,'"></div>\n     <div class="').concat($.icon," ").concat(D.question,'"></div>\n     <div class="').concat($.icon," ").concat(D.warning,'"></div>\n     <div class="').concat($.icon," ").concat(D.info,'"></div>\n     <div class="').concat($.icon," ").concat(D.success,'"></div>\n     <img class="').concat($.image,'" />\n     <h2 class="').concat($.title,'" id="').concat($.title,'"></h2>\n     <button type="button" class="').concat($.close,'"></button>\n   </div>\n   <div class="').concat($.content,'">\n     <div id="').concat($.content,'" class="').concat($["html-container"],'"></div>\n     <input class="').concat($.input,'" />\n     <input type="file" class="').concat($.file,'" />\n     <div class="').concat($.range,'">\n       <input type="range" />\n       <output></output>\n     </div>\n     <select class="').concat($.select,'"></select>\n     <div class="').concat($.radio,'"></div>\n     <label for="').concat($.checkbox,'" class="').concat($.checkbox,'">\n       <input type="checkbox" />\n       <span class="').concat($.label,'"></span>\n     </label>\n     <textarea class="').concat($.textarea,'"></textarea>\n     <div class="').concat($["validation-message"],'" id="').concat($["validation-message"],'"></div>\n   </div>\n   <div class="').concat($.actions,'">\n     <button type="button" class="').concat($.confirm,'">OK</button>\n     <button type="button" class="').concat($.cancel,'">Cancel</button>\n   </div>\n   <div class="').concat($.footer,'"></div>\n   <div class="').concat($["timer-progress-bar-container"],'">\n     <div class="').concat($["timer-progress-bar"],'"></div>\n   </div>\n </div>\n').replace(/(^|\n)\s*/g,""),Pt=function(){var t=N();return!!t&&(t.parentNode.removeChild(t),vt([document.documentElement,document.body],[$["no-backdrop"],$["toast-shown"],$["has-column"]]),!0)},Mt=function(t){Ir.isVisible()&&pt!==t.target.value&&Ir.resetValidationMessage(),pt=t.target.value},It=function(){var t=H(),e=wt(t,$.input),n=wt(t,$.file),r=t.querySelector(".".concat($.range," input")),i=t.querySelector(".".concat($.range," output")),o=wt(t,$.select),s=t.querySelector(".".concat($.checkbox," input")),a=wt(t,$.textarea);e.oninput=Mt,n.onchange=Mt,o.onchange=Mt,s.onchange=Mt,a.oninput=Mt,r.oninput=function(t){Mt(t),i.value=r.value},r.onchange=function(t){Mt(t),r.nextSibling.value=r.value}},Lt=function(t){return"string"==typeof t?document.querySelector(t):t},$t=function(t){var e=R();e.setAttribute("role",t.toast?"alert":"dialog"),e.setAttribute("aria-live",t.toast?"polite":"assertive"),t.toast||e.setAttribute("aria-modal","true")},Dt=function(t){"rtl"===window.getComputedStyle(t).direction&&gt(N(),$.rtl)},Nt=function(t){var e=Pt();if(jt())_("SweetAlert2 requires document to initialize");else{var n=document.createElement("div");n.className=$.container,e&&gt(n,$["no-transition"]),lt(n,At);var r=Lt(t.target);r.appendChild(n),$t(t),Dt(r),It()}},Ft=function(e,n){e instanceof HTMLElement?n.appendChild(e):"object"===t(e)?Bt(e,n):e&&lt(n,e)},Bt=function(t,e){t.jquery?Rt(e,t):lt(e,t.toString())},Rt=function(t,e){if(t.textContent="",0 in e)for(var n=0;n in e;n++)t.appendChild(e[n].cloneNode(!0));else t.appendChild(e.cloneNode(!0))},zt=function(){if(jt())return!1;var t=document.createElement("div"),e={WebkitAnimation:"webkitAnimationEnd",OAnimation:"oAnimationEnd oanimationend",animation:"animationend"};for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)&&void 0!==t.style[n])return e[n];return!1}(),Ut=function(){var t=document.createElement("div");t.className=$["scrollbar-measure"],document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e},Vt=function(t,e){var n=K(),r=G(),i=J();e.showConfirmButton||e.showCancelButton||_t(n),dt(n,e,"actions"),qt(r,"confirm",e),qt(i,"cancel",e),e.buttonsStyling?Ht(r,i,e):(vt([r,i],$.styled),r.style.backgroundColor=r.style.borderLeftColor=r.style.borderRightColor="",i.style.backgroundColor=i.style.borderLeftColor=i.style.borderRightColor=""),e.reverseButtons&&r.parentNode.insertBefore(i,r)};function Ht(t,e,n){if(gt([t,e],$.styled),n.confirmButtonColor&&(t.style.backgroundColor=n.confirmButtonColor),n.cancelButtonColor&&(e.style.backgroundColor=n.cancelButtonColor),!st()){var r=window.getComputedStyle(t).getPropertyValue("background-color");t.style.borderLeftColor=r,t.style.borderRightColor=r}}function qt(t,e,n){xt(t,n["show".concat(v(e),"Button")],"inline-block"),lt(t,n["".concat(e,"ButtonText")]),t.setAttribute("aria-label",n["".concat(e,"ButtonAriaLabel")]),t.className=$[e],dt(t,n,"".concat(e,"Button")),gt(t,n["".concat(e,"ButtonClass")])}function Wt(t,e){"string"==typeof e?t.style.background=e:e||gt([document.documentElement,document.body],$["no-backdrop"])}function Zt(t,e){e in $?gt(t,$[e]):(b('The "position" parameter is not valid, defaulting to "center"'),gt(t,$.center))}function Yt(t,e){if(e&&"string"==typeof e){var n="grow-".concat(e);n in $&&gt(t,$[n])}}var Gt=function(t,e){var n=N();if(n){Wt(n,e.backdrop),!e.backdrop&&e.allowOutsideClick&&b('"allowOutsideClick" parameter requires `backdrop` parameter to be set to `true`'),Zt(n,e.position),Yt(n,e.grow),dt(n,e,"container");var r=document.body.getAttribute("data-swal2-queue-step");r&&(n.setAttribute("data-queue-step",r),document.body.removeAttribute("data-swal2-queue-step"))}},Jt={promise:new WeakMap,innerParams:new WeakMap,domCache:new WeakMap},Kt=["input","file","range","select","radio","checkbox","textarea"],Xt=function(t,e){var n=H(),r=Jt.innerParams.get(t),i=!r||e.input!==r.input;Kt.forEach((function(t){var r=$[t],o=wt(n,r);ee(t,e.inputAttributes),o.className=r,i&&_t(o)})),e.input&&(i&&Qt(e),ne(e))},Qt=function(t){if(!oe[t.input])return _('Unexpected type of input! Expected "text", "email", "password", "number", "tel", "select", "radio", "checkbox", "textarea", "file" or "url", got "'.concat(t.input,'"'));var e=ie(t.input),n=oe[t.input](e,t);bt(n),setTimeout((function(){ht(n)}))},te=function(t){for(var e=0;e<t.attributes.length;e++){var n=t.attributes[e].name;-1===["type","value","style"].indexOf(n)&&t.removeAttribute(n)}},ee=function(t,e){var n=ft(H(),t);if(n)for(var r in te(n),e)"range"===t&&"placeholder"===r||n.setAttribute(r,e[r])},ne=function(t){var e=ie(t.input);t.customClass&&gt(e,t.customClass.input)},re=function(t,e){t.placeholder&&!e.inputPlaceholder||(t.placeholder=e.inputPlaceholder)},ie=function(t){var e=$[t]?$[t]:$.input;return wt(H(),e)},oe={};oe.text=oe.email=oe.password=oe.number=oe.tel=oe.url=function(e,n){return"string"==typeof n.inputValue||"number"==typeof n.inputValue?e.value=n.inputValue:E(n.inputValue)||b('Unexpected type of inputValue! Expected "string", "number" or "Promise", got "'.concat(t(n.inputValue),'"')),re(e,n),e.type=n.input,e},oe.file=function(t,e){return re(t,e),t},oe.range=function(t,e){var n=t.querySelector("input"),r=t.querySelector("output");return n.value=e.inputValue,n.type=e.input,r.value=e.inputValue,t},oe.select=function(t,e){if(t.textContent="",e.inputPlaceholder){var n=document.createElement("option");lt(n,e.inputPlaceholder),n.value="",n.disabled=!0,n.selected=!0,t.appendChild(n)}return t},oe.radio=function(t){return t.textContent="",t},oe.checkbox=function(t,e){var n=ft(H(),"checkbox");n.value=1,n.id=$.checkbox,n.checked=Boolean(e.inputValue);var r=t.querySelector("span");return lt(r,e.inputPlaceholder),t},oe.textarea=function(t,e){if(t.value=e.inputValue,re(t,e),"MutationObserver"in window){var n=parseInt(window.getComputedStyle(R()).width),r=parseInt(window.getComputedStyle(R()).paddingLeft)+parseInt(window.getComputedStyle(R()).paddingRight);new MutationObserver((function(){var e=t.offsetWidth+r;R().style.width=e>n?"".concat(e,"px"):null})).observe(t,{attributes:!0,attributeFilter:["style"]})}return t};var se=function(t,e){var n=H().querySelector("#".concat($.content));e.html?(Ft(e.html,n),bt(n,"block")):e.text?(n.textContent=e.text,bt(n,"block")):_t(n),Xt(t,e),dt(H(),e,"content")},ae=function(t,e){var n=Q();xt(n,e.footer),e.footer&&Ft(e.footer,n),dt(n,e,"footer")},le=function(t,e){var n=et();lt(n,e.closeButtonHtml),dt(n,e,"closeButton"),xt(n,e.showCloseButton),n.setAttribute("aria-label",e.closeButtonAriaLabel)},ce=function(t,e){var n=Jt.innerParams.get(t);if(n&&e.icon===n.icon&&U())dt(U(),e,"icon");else if(ue(),e.icon)if(-1!==Object.keys(D).indexOf(e.icon)){var r=F(".".concat($.icon,".").concat(D[e.icon]));bt(r),fe(r,e),de(),dt(r,e,"icon"),gt(r,e.showClass.icon)}else _('Unknown icon! Expected "success", "error", "warning", "info" or "question", got "'.concat(e.icon,'"'))},ue=function(){for(var t=z(),e=0;e<t.length;e++)_t(t[e])},de=function(){for(var t=R(),e=window.getComputedStyle(t).getPropertyValue("background-color"),n=t.querySelectorAll("[class^=swal2-success-circular-line], .swal2-success-fix"),r=0;r<n.length;r++)n[r].style.backgroundColor=e},fe=function(t,e){t.textContent="",e.iconHtml?lt(t,pe(e.iconHtml)):"success"===e.icon?lt(t,'\n      <div class="swal2-success-circular-line-left"></div>\n      <span class="swal2-success-line-tip"></span> <span class="swal2-success-line-long"></span>\n      <div class="swal2-success-ring"></div> <div class="swal2-success-fix"></div>\n      <div class="swal2-success-circular-line-right"></div>\n    '):"error"===e.icon?lt(t,'\n      <span class="swal2-x-mark">\n        <span class="swal2-x-mark-line-left"></span>\n        <span class="swal2-x-mark-line-right"></span>\n      </span>\n    '):lt(t,pe({question:"?",warning:"!",info:"i"}[e.icon]))},pe=function(t){return'<div class="'.concat($["icon-content"],'">').concat(t,"</div>")},he=function(t,e){var n=W();if(!e.imageUrl)return _t(n);bt(n,""),n.setAttribute("src",e.imageUrl),n.setAttribute("alt",e.imageAlt),yt(n,"width",e.imageWidth),yt(n,"height",e.imageHeight),n.className=$.image,dt(n,e,"image")},me=[],ge=function(t){var e=this;me=t;var n=function(t,e){me=[],t(e)},r=[];return new Promise((function(t){!function i(o,s){o<me.length?(document.body.setAttribute("data-swal2-queue-step",o),e.fire(me[o]).then((function(e){void 0!==e.value?(r.push(e.value),i(o+1,s)):n(t,{dismiss:e.dismiss})}))):n(t,{value:r})}(0)}))},ve=function(){return N()&&N().getAttribute("data-queue-step")},we=function(t,e){return e&&e<me.length?me.splice(e,0,t):me.push(t)},ye=function(t){void 0!==me[t]&&me.splice(t,1)},be=function(t){var e=document.createElement("li");return gt(e,$["progress-step"]),lt(e,t),e},_e=function(t){var e=document.createElement("li");return gt(e,$["progress-step-line"]),t.progressStepsDistance&&(e.style.width=t.progressStepsDistance),e},xe=function(t,e){var n=Z();if(!e.progressSteps||0===e.progressSteps.length)return _t(n);bt(n),n.textContent="";var r=parseInt(void 0===e.currentProgressStep?ve():e.currentProgressStep);r>=e.progressSteps.length&&b("Invalid currentProgressStep parameter, it should be less than progressSteps.length (currentProgressStep like JS arrays starts from 0)"),e.progressSteps.forEach((function(t,i){var o=be(t);if(n.appendChild(o),i===r&&gt(o,$["active-progress-step"]),i!==e.progressSteps.length-1){var s=_e(e);n.appendChild(s)}}))},ke=function(t,e){var n=V();xt(n,e.title||e.titleText),e.title&&Ft(e.title,n),e.titleText&&(n.innerText=e.titleText),dt(n,e,"title")},Se=function(t,e){var n=X();dt(n,e,"header"),xe(t,e),ce(t,e),he(t,e),ke(t,e),le(t,e)},Ce=function(t,e){var n=R();yt(n,"width",e.width),yt(n,"padding",e.padding),e.background&&(n.style.background=e.background),Oe(n,e)},Oe=function(t,e){t.className="".concat($.popup," ").concat(kt(t)?e.showClass.popup:""),e.toast?(gt([document.documentElement,document.body],$["toast-shown"]),gt(t,$.toast)):gt(t,$.modal),dt(t,e,"popup"),"string"==typeof e.customClass&&gt(t,e.customClass),e.icon&&gt(t,$["icon-".concat(e.icon)])},Te=function(t,e){Ce(t,e),Gt(t,e),Se(t,e),se(t,e),Vt(t,e),ae(t,e),"function"==typeof e.onRender&&e.onRender(R())},Ee=function(){return kt(R())},je=function(){return G()&&G().click()},Ae=function(){return J()&&J().click()};function Pe(){for(var t=this,e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return c(t,n)}function Me(t){var n=function(n){o(l,n);var a=f(l);function l(){return e(this,l),a.apply(this,arguments)}return r(l,[{key:"_main",value:function(e){return h(s(l.prototype),"_main",this).call(this,i({},t,e))}}]),l}(this);return n}var Ie=function(){var t=R();t||Ir.fire(),t=R();var e=K(),n=G();bt(e),bt(n,"inline-block"),gt([t,e],$.loading),n.disabled=!0,t.setAttribute("data-loading",!0),t.setAttribute("aria-busy",!0),t.focus()},Le=100,$e={},De=function(){$e.previousActiveElement&&$e.previousActiveElement.focus?($e.previousActiveElement.focus(),$e.previousActiveElement=null):document.body&&document.body.focus()},Ne=function(){return new Promise((function(t){var e=window.scrollX,n=window.scrollY;$e.restoreFocusTimeout=setTimeout((function(){De(),t()}),Le),void 0!==e&&void 0!==n&&window.scrollTo(e,n)}))},Fe=function(){return $e.timeout&&$e.timeout.getTimerLeft()},Be=function(){if($e.timeout)return Et(),$e.timeout.stop()},Re=function(){if($e.timeout){var t=$e.timeout.start();return Tt(t),t}},ze=function(){var t=$e.timeout;return t&&(t.running?Be():Re())},Ue=function(t){if($e.timeout){var e=$e.timeout.increase(t);return Tt(e,!0),e}},Ve=function(){return $e.timeout&&$e.timeout.isRunning()},He={title:"",titleText:"",text:"",html:"",footer:"",icon:void 0,iconHtml:void 0,toast:!1,animation:!0,showClass:{popup:"swal2-show",backdrop:"swal2-backdrop-show",icon:"swal2-icon-show"},hideClass:{popup:"swal2-hide",backdrop:"swal2-backdrop-hide",icon:"swal2-icon-hide"},customClass:void 0,target:"body",backdrop:!0,heightAuto:!0,allowOutsideClick:!0,allowEscapeKey:!0,allowEnterKey:!0,stopKeydownPropagation:!0,keydownListenerCapture:!1,showConfirmButton:!0,showCancelButton:!1,preConfirm:void 0,confirmButtonText:"OK",confirmButtonAriaLabel:"",confirmButtonColor:void 0,cancelButtonText:"Cancel",cancelButtonAriaLabel:"",cancelButtonColor:void 0,buttonsStyling:!0,reverseButtons:!1,focusConfirm:!0,focusCancel:!1,showCloseButton:!1,closeButtonHtml:"&times;",closeButtonAriaLabel:"Close this dialog",showLoaderOnConfirm:!1,imageUrl:void 0,imageWidth:void 0,imageHeight:void 0,imageAlt:"",timer:void 0,timerProgressBar:!1,width:void 0,padding:void 0,background:void 0,input:void 0,inputPlaceholder:"",inputValue:"",inputOptions:{},inputAutoTrim:!0,inputAttributes:{},inputValidator:void 0,validationMessage:void 0,grow:!1,position:"center",progressSteps:[],currentProgressStep:void 0,progressStepsDistance:void 0,onBeforeOpen:void 0,onOpen:void 0,onRender:void 0,onClose:void 0,onAfterClose:void 0,onDestroy:void 0,scrollbarPadding:!0},qe=["allowEscapeKey","allowOutsideClick","buttonsStyling","cancelButtonAriaLabel","cancelButtonColor","cancelButtonText","closeButtonAriaLabel","closeButtonHtml","confirmButtonAriaLabel","confirmButtonColor","confirmButtonText","currentProgressStep","customClass","footer","hideClass","html","icon","imageAlt","imageHeight","imageUrl","imageWidth","onAfterClose","onClose","onDestroy","progressSteps","reverseButtons","showCancelButton","showCloseButton","showConfirmButton","text","title","titleText"],We={animation:'showClass" and "hideClass'},Ze=["allowOutsideClick","allowEnterKey","backdrop","focusConfirm","focusCancel","heightAuto","keydownListenerCapture"],Ye=function(t){return Object.prototype.hasOwnProperty.call(He,t)},Ge=function(t){return-1!==qe.indexOf(t)},Je=function(t){return We[t]},Ke=function(t){Ye(t)||b('Unknown parameter "'.concat(t,'"'))},Xe=function(t){-1!==Ze.indexOf(t)&&b('The parameter "'.concat(t,'" is incompatible with toasts'))},Qe=function(t){Je(t)&&S(t,Je(t))},tn=function(t){for(var e in t)Ke(e),t.toast&&Xe(e),Qe(e)},en=Object.freeze({isValidParameter:Ye,isUpdatableParameter:Ge,isDeprecatedParameter:Je,argsToParams:M,isVisible:Ee,clickConfirm:je,clickCancel:Ae,getContainer:N,getPopup:R,getTitle:V,getContent:H,getHtmlContainer:q,getImage:W,getIcon:U,getIcons:z,getCloseButton:et,getActions:K,getConfirmButton:G,getCancelButton:J,getHeader:X,getFooter:Q,getTimerProgressBar:tt,getFocusableElements:rt,getValidationMessage:Y,isLoading:st,fire:Pe,mixin:Me,queue:ge,getQueueStep:ve,insertQueueStep:we,deleteQueueStep:ye,showLoading:Ie,enableLoading:Ie,getTimerLeft:Fe,stopTimer:Be,resumeTimer:Re,toggleTimer:ze,increaseTimer:Ue,isTimerRunning:Ve});function nn(){var t=Jt.innerParams.get(this);if(t){var e=Jt.domCache.get(this);t.showConfirmButton||(_t(e.confirmButton),t.showCancelButton||_t(e.actions)),vt([e.popup,e.actions],$.loading),e.popup.removeAttribute("aria-busy"),e.popup.removeAttribute("data-loading"),e.confirmButton.disabled=!1,e.cancelButton.disabled=!1}}function rn(t){var e=Jt.innerParams.get(t||this),n=Jt.domCache.get(t||this);return n?ft(n.content,e.input):null}var on=function(){null===at.previousBodyPadding&&document.body.scrollHeight>window.innerHeight&&(at.previousBodyPadding=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right")),document.body.style.paddingRight="".concat(at.previousBodyPadding+Ut(),"px"))},sn=function(){null!==at.previousBodyPadding&&(document.body.style.paddingRight="".concat(at.previousBodyPadding,"px"),at.previousBodyPadding=null)},an=function(){if((/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||"MacIntel"===navigator.platform&&navigator.maxTouchPoints>1)&&!ct(document.body,$.iosfix)){var t=document.body.scrollTop;document.body.style.top="".concat(-1*t,"px"),gt(document.body,$.iosfix),cn(),ln()}},ln=function(){if(!navigator.userAgent.match(/(CriOS|FxiOS|EdgiOS|YaBrowser|UCBrowser)/i)){var t=44;R().scrollHeight>window.innerHeight-t&&(N().style.paddingBottom="".concat(t,"px"))}},cn=function(){var t,e=N();e.ontouchstart=function(e){t=un(e.target)},e.ontouchmove=function(e){t&&(e.preventDefault(),e.stopPropagation())}},un=function(t){var e=N();return t===e||!(St(e)||"INPUT"===t.tagName||St(H())&&H().contains(t))},dn=function(){if(ct(document.body,$.iosfix)){var t=parseInt(document.body.style.top,10);vt(document.body,$.iosfix),document.body.style.top="",document.body.scrollTop=-1*t}},fn=function(){return!!window.MSInputMethodContext&&!!document.documentMode},pn=function(){var t=N(),e=R();t.style.removeProperty("align-items"),e.offsetTop<0&&(t.style.alignItems="flex-start")},hn=function(){"undefined"!=typeof window&&fn()&&(pn(),window.addEventListener("resize",pn))},mn=function(){"undefined"!=typeof window&&fn()&&window.removeEventListener("resize",pn)},gn=function(){y(document.body.children).forEach((function(t){t===N()||Ot(t,N())||(t.hasAttribute("aria-hidden")&&t.setAttribute("data-previous-aria-hidden",t.getAttribute("aria-hidden")),t.setAttribute("aria-hidden","true"))}))},vn=function(){y(document.body.children).forEach((function(t){t.hasAttribute("data-previous-aria-hidden")?(t.setAttribute("aria-hidden",t.getAttribute("data-previous-aria-hidden")),t.removeAttribute("data-previous-aria-hidden")):t.removeAttribute("aria-hidden")}))},wn={swalPromiseResolve:new WeakMap};function yn(t,e,n,r){n?Sn(t,r):(Ne().then((function(){return Sn(t,r)})),$e.keydownTarget.removeEventListener("keydown",$e.keydownHandler,{capture:$e.keydownListenerCapture}),$e.keydownHandlerAdded=!1),e.parentNode&&!document.body.getAttribute("data-swal2-queue-step")&&e.parentNode.removeChild(e),it()&&(sn(),dn(),mn(),vn()),bn()}function bn(){vt([document.documentElement,document.body],[$.shown,$["height-auto"],$["no-backdrop"],$["toast-shown"],$["toast-column"]])}function _n(t){var e=R();if(e){var n=Jt.innerParams.get(this);if(n&&!ct(e,n.hideClass.popup)){var r=wn.swalPromiseResolve.get(this);vt(e,n.showClass.popup),gt(e,n.hideClass.popup);var i=N();vt(i,n.showClass.backdrop),gt(i,n.hideClass.backdrop),xn(this,e,n),void 0!==t?(t.isDismissed=void 0!==t.dismiss,t.isConfirmed=void 0===t.dismiss):t={isDismissed:!0,isConfirmed:!1},r(t||{})}}}var xn=function(t,e,n){var r=N(),i=zt&&Ct(e),o=n.onClose,s=n.onAfterClose;null!==o&&"function"==typeof o&&o(e),i?kn(t,e,r,s):yn(t,r,ot(),s)},kn=function(t,e,n,r){$e.swalCloseEventFinishedCallback=yn.bind(null,t,n,ot(),r),e.addEventListener(zt,(function(t){t.target===e&&($e.swalCloseEventFinishedCallback(),delete $e.swalCloseEventFinishedCallback)}))},Sn=function(t,e){setTimeout((function(){"function"==typeof e&&e(),t._destroy()}))};function Cn(t,e,n){var r=Jt.domCache.get(t);e.forEach((function(t){r[t].disabled=n}))}function On(t,e){if(!t)return!1;if("radio"===t.type)for(var n=t.parentNode.parentNode.querySelectorAll("input"),r=0;r<n.length;r++)n[r].disabled=e;else t.disabled=e}function Tn(){Cn(this,["confirmButton","cancelButton"],!1)}function En(){Cn(this,["confirmButton","cancelButton"],!0)}function jn(){return On(this.getInput(),!1)}function An(){return On(this.getInput(),!0)}function Pn(t){var e=Jt.domCache.get(this);lt(e.validationMessage,t);var n=window.getComputedStyle(e.popup);e.validationMessage.style.marginLeft="-".concat(n.getPropertyValue("padding-left")),e.validationMessage.style.marginRight="-".concat(n.getPropertyValue("padding-right")),bt(e.validationMessage);var r=this.getInput();r&&(r.setAttribute("aria-invalid",!0),r.setAttribute("aria-describedBy",$["validation-message"]),ht(r),gt(r,$.inputerror))}function Mn(){var t=Jt.domCache.get(this);t.validationMessage&&_t(t.validationMessage);var e=this.getInput();e&&(e.removeAttribute("aria-invalid"),e.removeAttribute("aria-describedBy"),vt(e,$.inputerror))}function In(){return Jt.domCache.get(this).progressSteps}var Ln=function(){function t(n,r){e(this,t),this.callback=n,this.remaining=r,this.running=!1,this.start()}return r(t,[{key:"start",value:function(){return this.running||(this.running=!0,this.started=new Date,this.id=setTimeout(this.callback,this.remaining)),this.remaining}},{key:"stop",value:function(){return this.running&&(this.running=!1,clearTimeout(this.id),this.remaining-=new Date-this.started),this.remaining}},{key:"increase",value:function(t){var e=this.running;return e&&this.stop(),this.remaining+=t,e&&this.start(),this.remaining}},{key:"getTimerLeft",value:function(){return this.running&&(this.stop(),this.start()),this.remaining}},{key:"isRunning",value:function(){return this.running}}]),t}(),$n={email:function(t,e){return/^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9-]{2,24}$/.test(t)?Promise.resolve():Promise.resolve(e||"Invalid email address")},url:function(t,e){return/^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-z]{2,63}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)$/.test(t)?Promise.resolve():Promise.resolve(e||"Invalid URL")}};function Dn(t){t.inputValidator||Object.keys($n).forEach((function(e){t.input===e&&(t.inputValidator=$n[e])}))}function Nn(t){(!t.target||"string"==typeof t.target&&!document.querySelector(t.target)||"string"!=typeof t.target&&!t.target.appendChild)&&(b('Target parameter is not valid, defaulting to "body"'),t.target="body")}function Fn(t){Dn(t),t.showLoaderOnConfirm&&!t.preConfirm&&b("showLoaderOnConfirm is set to true, but preConfirm is not defined.\nshowLoaderOnConfirm should be used together with preConfirm, see usage example:\nhttps://sweetalert2.github.io/#ajax-request"),t.animation=C(t.animation),Nn(t),"string"==typeof t.title&&(t.title=t.title.split("\n").join("<br />")),Nt(t)}var Bn=function(t){var e=N(),n=R();"function"==typeof t.onBeforeOpen&&t.onBeforeOpen(n);var r=window.getComputedStyle(document.body).overflowY;Vn(e,n,t),zn(e,n),it()&&(Un(e,t.scrollbarPadding,r),gn()),ot()||$e.previousActiveElement||($e.previousActiveElement=document.activeElement),"function"==typeof t.onOpen&&setTimeout((function(){return t.onOpen(n)})),vt(e,$["no-transition"])};function Rn(t){var e=R();if(t.target===e){var n=N();e.removeEventListener(zt,Rn),n.style.overflowY="auto"}}var zn=function(t,e){zt&&Ct(e)?(t.style.overflowY="hidden",e.addEventListener(zt,Rn)):t.style.overflowY="auto"},Un=function(t,e,n){an(),hn(),e&&"hidden"!==n&&on(),setTimeout((function(){t.scrollTop=0}))},Vn=function(t,e,n){gt(t,n.showClass.backdrop),bt(e),gt(e,n.showClass.popup),gt([document.documentElement,document.body],$.shown),n.heightAuto&&n.backdrop&&!n.toast&&gt([document.documentElement,document.body],$["height-auto"])},Hn=function(t,e){"select"===e.input||"radio"===e.input?Gn(t,e):-1!==["text","email","number","tel","textarea"].indexOf(e.input)&&(O(e.inputValue)||E(e.inputValue))&&Jn(t,e)},qn=function(t,e){var n=t.getInput();if(!n)return null;switch(e.input){case"checkbox":return Wn(n);case"radio":return Zn(n);case"file":return Yn(n);default:return e.inputAutoTrim?n.value.trim():n.value}},Wn=function(t){return t.checked?1:0},Zn=function(t){return t.checked?t.value:null},Yn=function(t){return t.files.length?null!==t.getAttribute("multiple")?t.files:t.files[0]:null},Gn=function(e,n){var r=H(),i=function(t){return Kn[n.input](r,Xn(t),n)};O(n.inputOptions)||E(n.inputOptions)?(Ie(),T(n.inputOptions).then((function(t){e.hideLoading(),i(t)}))):"object"===t(n.inputOptions)?i(n.inputOptions):_("Unexpected type of inputOptions! Expected object, Map or Promise, got ".concat(t(n.inputOptions)))},Jn=function(t,e){var n=t.getInput();_t(n),T(e.inputValue).then((function(r){n.value="number"===e.input?parseFloat(r)||0:"".concat(r),bt(n),n.focus(),t.hideLoading()})).catch((function(e){_("Error in inputValue promise: ".concat(e)),n.value="",bt(n),n.focus(),t.hideLoading()}))},Kn={select:function(t,e,n){var r=wt(t,$.select),i=function(t,e,r){var i=document.createElement("option");i.value=r,lt(i,e),n.inputValue.toString()===r.toString()&&(i.selected=!0),t.appendChild(i)};e.forEach((function(t){var e=t[0],n=t[1];if(Array.isArray(n)){var o=document.createElement("optgroup");o.label=e,o.disabled=!1,r.appendChild(o),n.forEach((function(t){return i(o,t[1],t[0])}))}else i(r,n,e)})),r.focus()},radio:function(t,e,n){var r=wt(t,$.radio);e.forEach((function(t){var e=t[0],i=t[1],o=document.createElement("input"),s=document.createElement("label");o.type="radio",o.name=$.radio,o.value=e,n.inputValue.toString()===e.toString()&&(o.checked=!0);var a=document.createElement("span");lt(a,i),a.className=$.label,s.appendChild(o),s.appendChild(a),r.appendChild(s)}));var i=r.querySelectorAll("input");i.length&&i[0].focus()}},Xn=function e(n){var r=[];return"undefined"!=typeof Map&&n instanceof Map?n.forEach((function(n,i){var o=n;"object"===t(o)&&(o=e(o)),r.push([i,o])})):Object.keys(n).forEach((function(i){var o=n[i];"object"===t(o)&&(o=e(o)),r.push([i,o])})),r},Qn=function(t,e){t.disableButtons(),e.input?er(t,e):rr(t,e,!0)},tr=function(t,e){t.disableButtons(),e(j.cancel)},er=function(t,e){var n=qn(t,e);e.inputValidator?(t.disableInput(),Promise.resolve().then((function(){return T(e.inputValidator(n,e.validationMessage))})).then((function(r){t.enableButtons(),t.enableInput(),r?t.showValidationMessage(r):rr(t,e,n)}))):t.getInput().checkValidity()?rr(t,e,n):(t.enableButtons(),t.showValidationMessage(e.validationMessage))},nr=function(t,e){t.closePopup({value:e})},rr=function(t,e,n){e.showLoaderOnConfirm&&Ie(),e.preConfirm?(t.resetValidationMessage(),Promise.resolve().then((function(){return T(e.preConfirm(n,e.validationMessage))})).then((function(e){kt(Y())||!1===e?t.hideLoading():nr(t,void 0===e?n:e)}))):nr(t,n)},ir=function(t,e,n,r){e.keydownTarget&&e.keydownHandlerAdded&&(e.keydownTarget.removeEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!1),n.toast||(e.keydownHandler=function(e){return lr(t,e,r)},e.keydownTarget=n.keydownListenerCapture?window:R(),e.keydownListenerCapture=n.keydownListenerCapture,e.keydownTarget.addEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!0)},or=function(t,e,n){for(var r=rt(),i=0;i<r.length;i++)return(e+=n)===r.length?e=0:-1===e&&(e=r.length-1),r[e].focus();R().focus()},sr=["ArrowLeft","ArrowRight","ArrowUp","ArrowDown","Left","Right","Up","Down"],ar=["Escape","Esc"],lr=function(t,e,n){var r=Jt.innerParams.get(t);r.stopKeydownPropagation&&e.stopPropagation(),"Enter"===e.key?cr(t,e,r):"Tab"===e.key?ur(e,r):-1!==sr.indexOf(e.key)?dr():-1!==ar.indexOf(e.key)&&fr(e,r,n)},cr=function(t,e,n){if(!e.isComposing&&e.target&&t.getInput()&&e.target.outerHTML===t.getInput().outerHTML){if(-1!==["textarea","file"].indexOf(n.input))return;je(),e.preventDefault()}},ur=function(t,e){for(var n=t.target,r=rt(),i=-1,o=0;o<r.length;o++)if(n===r[o]){i=o;break}t.shiftKey?or(e,i,-1):or(e,i,1),t.stopPropagation(),t.preventDefault()},dr=function(){var t=G(),e=J();document.activeElement===t&&kt(e)?e.focus():document.activeElement===e&&kt(t)&&t.focus()},fr=function(t,e,n){C(e.allowEscapeKey)&&(t.preventDefault(),n(j.esc))},pr=function(t,e,n){Jt.innerParams.get(t).toast?hr(t,e,n):(gr(e),vr(e),wr(t,e,n))},hr=function(t,e,n){e.popup.onclick=function(){var e=Jt.innerParams.get(t);e.showConfirmButton||e.showCancelButton||e.showCloseButton||e.input||n(j.close)}},mr=!1,gr=function(t){t.popup.onmousedown=function(){t.container.onmouseup=function(e){t.container.onmouseup=void 0,e.target===t.container&&(mr=!0)}}},vr=function(t){t.container.onmousedown=function(){t.popup.onmouseup=function(e){t.popup.onmouseup=void 0,(e.target===t.popup||t.popup.contains(e.target))&&(mr=!0)}}},wr=function(t,e,n){e.container.onclick=function(r){var i=Jt.innerParams.get(t);mr?mr=!1:r.target===e.container&&C(i.allowOutsideClick)&&n(j.backdrop)}};function yr(t){tn(t),$e.currentInstance&&$e.currentInstance._destroy(),$e.currentInstance=this;var e=br(t);Fn(e),Object.freeze(e),$e.timeout&&($e.timeout.stop(),delete $e.timeout),clearTimeout($e.restoreFocusTimeout);var n=xr(this);return Te(this,e),Jt.innerParams.set(this,e),_r(this,n,e)}var br=function(t){var e=i({},He.showClass,t.showClass),n=i({},He.hideClass,t.hideClass),r=i({},He,t);return r.showClass=e,r.hideClass=n,!1===t.animation&&(r.showClass={popup:"swal2-noanimation",backdrop:"swal2-noanimation"},r.hideClass={}),r},_r=function(t,e,n){return new Promise((function(r){var i=function(e){t.closePopup({dismiss:e})};wn.swalPromiseResolve.set(t,r),e.confirmButton.onclick=function(){return Qn(t,n)},e.cancelButton.onclick=function(){return tr(t,i)},e.closeButton.onclick=function(){return i(j.close)},pr(t,e,i),ir(t,$e,n,i),n.toast&&(n.input||n.footer||n.showCloseButton)?gt(document.body,$["toast-column"]):vt(document.body,$["toast-column"]),Hn(t,n),Bn(n),kr($e,n,i),Sr(e,n),setTimeout((function(){e.container.scrollTop=0}))}))},xr=function(t){var e={popup:R(),container:N(),content:H(),actions:K(),confirmButton:G(),cancelButton:J(),closeButton:et(),validationMessage:Y(),progressSteps:Z()};return Jt.domCache.set(t,e),e},kr=function(t,e,n){var r=tt();_t(r),e.timer&&(t.timeout=new Ln((function(){n("timer"),delete t.timeout}),e.timer),e.timerProgressBar&&(bt(r),setTimeout((function(){t.timeout.running&&Tt(e.timer)}))))},Sr=function(t,e){if(!e.toast)return C(e.allowEnterKey)?e.focusCancel&&kt(t.cancelButton)?t.cancelButton.focus():e.focusConfirm&&kt(t.confirmButton)?t.confirmButton.focus():void or(e,-1,1):Cr()},Cr=function(){document.activeElement&&"function"==typeof document.activeElement.blur&&document.activeElement.blur()};function Or(t){var e=R(),n=Jt.innerParams.get(this);if(!e||ct(e,n.hideClass.popup))return b("You're trying to update the closed or closing popup, that won't work. Use the update() method in preConfirm parameter or show a new popup.");var r={};Object.keys(t).forEach((function(e){Ir.isUpdatableParameter(e)?r[e]=t[e]:b('Invalid parameter to update: "'.concat(e,'". Updatable params are listed here: https://github.com/sweetalert2/sweetalert2/blob/master/src/utils/params.js'))}));var o=i({},n,r);Te(this,o),Jt.innerParams.set(this,o),Object.defineProperties(this,{params:{value:i({},this.params,t),writable:!1,enumerable:!0}})}function Tr(){var t=Jt.domCache.get(this),e=Jt.innerParams.get(this);e&&(t.popup&&$e.swalCloseEventFinishedCallback&&($e.swalCloseEventFinishedCallback(),delete $e.swalCloseEventFinishedCallback),$e.deferDisposalTimer&&(clearTimeout($e.deferDisposalTimer),delete $e.deferDisposalTimer),"function"==typeof e.onDestroy&&e.onDestroy(),jr(this))}var Er,jr=function(t){delete t.params,delete $e.keydownHandler,delete $e.keydownTarget,Ar(Jt),Ar(wn)},Ar=function(t){for(var e in t)t[e]=new WeakMap},Pr=Object.freeze({hideLoading:nn,disableLoading:nn,getInput:rn,close:_n,closePopup:_n,closeModal:_n,closeToast:_n,enableButtons:Tn,disableButtons:En,enableInput:jn,disableInput:An,showValidationMessage:Pn,resetValidationMessage:Mn,getProgressSteps:In,_main:yr,update:Or,_destroy:Tr}),Mr=function(){function t(){if(e(this,t),"undefined"!=typeof window){"undefined"==typeof Promise&&_("This package requires a Promise library, please include a shim to enable it in this browser (See: https://github.com/sweetalert2/sweetalert2/wiki/Migration-from-SweetAlert-to-SweetAlert2#1-ie-support)"),Er=this;for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];var o=Object.freeze(this.constructor.argsToParams(r));Object.defineProperties(this,{params:{value:o,writable:!1,enumerable:!0,configurable:!0}});var s=this._main(this.params);Jt.promise.set(this,s)}}return r(t,[{key:"then",value:function(t){return Jt.promise.get(this).then(t)}},{key:"finally",value:function(t){return Jt.promise.get(this).finally(t)}}]),t}();i(Mr.prototype,Pr),i(Mr,en),Object.keys(Pr).forEach((function(t){Mr[t]=function(){var e;if(Er)return(e=Er)[t].apply(e,arguments)}})),Mr.DismissReason=j,Mr.version="9.17.2";var Ir=Mr;return Ir.default=Ir,Ir}(),void 0!==this&&this.Sweetalert2&&(this.swal=this.sweetAlert=this.Swal=this.SweetAlert=this.Sweetalert2),"undefined"!=typeof document&&function(t,e){var n=t.createElement("style");if(t.getElementsByTagName("head")[0].appendChild(n),n.styleSheet)n.styleSheet.disabled||(n.styleSheet.cssText=e);else try{n.innerHTML=e}catch(t){n.innerText=e}}(document,'.swal2-popup.swal2-toast{flex-direction:row;align-items:center;width:auto;padding:.625em;overflow-y:hidden;background:#fff;box-shadow:0 0 .625em #d9d9d9}.swal2-popup.swal2-toast .swal2-header{flex-direction:row;padding:0}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;justify-content:flex-start;margin:0 .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.swal2-popup.swal2-toast .swal2-content{justify-content:flex-start;padding:0;font-size:1em}.swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex-basis:auto!important;width:auto;height:auto;margin:0 .3125em}.swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-toast-animate-success-line-tip .75s;animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-toast-animate-success-line-long .75s;animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{-webkit-animation:swal2-toast-show .5s;animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{-webkit-animation:swal2-toast-hide .1s forwards;animation:swal2-toast-hide .1s forwards}.swal2-container{display:flex;position:fixed;z-index:1060;top:0;right:0;bottom:0;left:0;flex-direction:row;align-items:center;justify-content:center;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}.swal2-container.swal2-backdrop-show,.swal2-container.swal2-noanimation{background:rgba(0,0,0,.4)}.swal2-container.swal2-backdrop-hide{background:0 0!important}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{display:flex!important;flex:1;align-self:stretch;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-no-transition{transition:none!important}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-container .swal2-modal{margin:0!important}}.swal2-popup{display:none;position:relative;box-sizing:border-box;flex-direction:column;justify-content:center;width:32em;max-width:100%;padding:1.25em;border:none;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{display:flex;flex-direction:column;align-items:center;padding:0 1.8em}.swal2-title{position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;margin:1.25em auto 0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-actions.swal2-loading .swal2-styled.swal2-confirm{box-sizing:border-box;width:2.5em;height:2.5em;margin:.46875em;padding:0;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:.25em solid transparent;border-radius:100%;border-color:transparent;background-color:transparent!important;color:transparent!important;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after{content:"";display:inline-block;width:15px;height:15px;margin-left:5px;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff}.swal2-styled{margin:.3125em;padding:.625em 2em;box-shadow:none;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.swal2-styled:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;height:.25em;overflow:hidden;border-bottom-right-radius:.3125em;border-bottom-left-radius:.3125em}.swal2-timer-progress-bar{width:100%;height:.25em;background:rgba(0,0,0,.2)}.swal2-image{max-width:100%;margin:1.25em auto}.swal2-close{position:absolute;z-index:2;top:0;right:0;align-items:center;justify-content:center;width:1.2em;height:1.2em;padding:0;overflow:hidden;transition:color .1s ease-out;border:none;border-radius:0;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer}.swal2-close:hover{transform:none;background:0 0;color:#f27474}.swal2-close::-moz-focus-inner{border:0}.swal2-content{z-index:1;justify-content:center;margin:0;padding:0 1.6em;color:#545454;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:100%;transition:border-color .3s,box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;background:inherit;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:0 0 3px #c4e6f5}.swal2-file::-moz-placeholder,.swal2-input::-moz-placeholder,.swal2-textarea::-moz-placeholder{color:#ccc}.swal2-file:-ms-input-placeholder,.swal2-input:-ms-input-placeholder,.swal2-textarea:-ms-input-placeholder{color:#ccc}.swal2-file::-ms-input-placeholder,.swal2-input::-ms-input-placeholder,.swal2-textarea::-ms-input-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em auto;background:#fff}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-input[type=number]{max-width:10em}.swal2-file{background:inherit;font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:inherit;color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:#fff;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{margin:0 .4em}.swal2-validation-message{display:none;align-items:center;justify-content:center;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message::before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid transparent;border-radius:50%;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474;color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-error.swal2-icon-show{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-success{border-color:#a5dc86;color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.swal2-progress-steps{align-items:center;margin:0 0 1.25em;padding:0;background:inherit;font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:20;width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#3085d6}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:10;width:2.5em;height:.4em;margin:0 -1px;background:#3085d6}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{right:auto;left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}@-webkit-keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@-webkit-keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@-webkit-keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@-webkit-keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@-webkit-keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{top:auto;right:auto;bottom:auto;left:auto;max-width:calc(100% - .625em * 2);background-color:transparent!important}body.swal2-no-backdrop .swal2-container>.swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}body.swal2-no-backdrop .swal2-container.swal2-top{top:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-top-left,body.swal2-no-backdrop .swal2-container.swal2-top-start{top:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-top-end,body.swal2-no-backdrop .swal2-container.swal2-top-right{top:0;right:0}body.swal2-no-backdrop .swal2-container.swal2-center{top:50%;left:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-left,body.swal2-no-backdrop .swal2-container.swal2-center-start{top:50%;left:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-end,body.swal2-no-backdrop .swal2-container.swal2-center-right{top:50%;right:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom-left,body.swal2-no-backdrop .swal2-container.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-bottom-end,body.swal2-no-backdrop .swal2-container.swal2-bottom-right{right:0;bottom:0}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}body.swal2-toast-column .swal2-toast{flex-direction:column;align-items:stretch}body.swal2-toast-column .swal2-toast .swal2-actions{flex:1;align-self:stretch;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}')},6240:function(t,e,n){var r,i,o;i=[n(6076)],r=function(t){"use strict";var e=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),n=function(t,e,n){for(var r=!0;r;){var i=t,o=e,s=n;r=!1,null===i&&(i=Function.prototype);var a=Object.getOwnPropertyDescriptor(i,o);if(void 0!==a){if("value"in a)return a.value;var l=a.get;if(void 0===l)return;return l.call(s)}var c=Object.getPrototypeOf(i);if(null===c)return;t=c,e=o,n=s,r=!0,a=c=void 0}};function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}var o=t.Utils,s=o.Evented,a=o.addClass,l=o.extend,c=o.hasClass,u=o.removeClass,d=o.uniqueId,f=new s;function p(t){return void 0===t}function h(t){return t&&t.constructor===Array}function m(t){return t&&t.constructor===Object}function g(t){return"object"==typeof t}var v={"top right":"bottom left","top left":"bottom right","top center":"bottom center","middle right":"middle left","middle left":"middle right","middle center":"middle center","bottom left":"top right","bottom right":"top left","bottom center":"top center",top:"bottom center",left:"middle right",right:"middle left",bottom:"top center",center:"middle center",middle:"middle center"};function w(t){var e=document.createElement("div");return e.innerHTML=t,e.children[0]}function y(t,e){var n=void 0;return p(t.matches)?p(t.matchesSelector)?p(t.msMatchesSelector)?p(t.webkitMatchesSelector)?p(t.mozMatchesSelector)?p(t.oMatchesSelector)||(n=t.oMatchesSelector):n=t.mozMatchesSelector:n=t.webkitMatchesSelector:n=t.msMatchesSelector:n=t.matchesSelector:n=t.matches,n.call(t,e)}var b=/^(.+) (top|left|right|bottom|center|\[[a-z ]+\])$/;function _(t){if(g(t))return t.hasOwnProperty("element")&&t.hasOwnProperty("on")?t:null;var e=b.exec(t);if(!e)return null;var n=e[2];return"["===n[0]&&(n=n.substring(1,n.length-1)),{element:e[1],on:n}}function x(t,e){if(null===t||p(t))return t;if(g(t))return t;for(var n=t.split(" "),r={},i=e.length-1,o=n.length-1;o>=0;o--){if(0===i){r[e[i]]=n.slice(0,o+1).join(" ");break}r[e[i]]=n[o],i--}return r}var k=function(o){function s(t,e){return r(this,s),n(Object.getPrototypeOf(s.prototype),"constructor",this).call(this,t,e),this.tour=t,this.bindMethods(),this.setOptions(e),this}return i(s,o),e(s,[{key:"bindMethods",value:function(){var t=this;["_show","show","hide","isOpen","cancel","complete","scrollTo","destroy","render"].map((function(e){t[e]=t[e].bind(t)}))}},{key:"setOptions",value:function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=t,this.destroy(),this.id=this.options.id||this.id||"step-"+d();var e=this.options.when;if(e)for(var n in e)if({}.hasOwnProperty.call(e,n)){var r=e[n];this.on(n,r,this)}var i=JSON.stringify(this.options.buttons),o=p(i)||"true"===i,s="{}"===i||"[]"===i||"null"===i||"false"===i,a=!o&&h(this.options.buttons),l=!o&&m(this.options.buttons);o?this.options.buttons=[{text:"Next",action:this.tour.next,classes:"btn"}]:!s&&l?this.options.buttons=[this.options.buttons]:!s&&a||(this.options.buttons=!1)}},{key:"getTour",value:function(){return this.tour}},{key:"bindAdvance",value:function(){var t=this,e=x(this.options.advanceOn,["selector","event"]),n=e.event,r=e.selector,i=function(e){t.isOpen()&&(p(r)?t.el&&e.target===t.el&&t.tour.next():y(e.target,r)&&t.tour.next())};document.body.addEventListener(n,i),this.on("destroy",(function(){return document.body.removeEventListener(n,i)}))}},{key:"getAttachTo",value:function(){var t=_(this.options.attachTo)||{},e=l({},t);return"string"==typeof t.element&&(e.element=document.querySelector(t.element),e.element||console.error("The element for this Shepherd step was not found "+t.element)),e}},{key:"setupTether",value:function(){if(p(t))throw new Error("Using the attachment feature of Shepherd requires the Tether library");var e=this.getAttachTo(),n=v[e.on]||v.right;p(e.element)&&(e.element="viewport",n="middle center");var r={classPrefix:"shepherd",element:this.el,constraints:[{to:"window",pin:!0,attachment:"together"}],target:e.element,offset:e.offset||"0 0",attachment:n};this.tether&&this.tether.destroy(),this.tether=new t(l(r,this.options.tetherOptions))}},{key:"show",value:function(){var t=this;if(!p(this.options.beforeShowPromise)){var e=this.options.beforeShowPromise();if(!p(e))return e.then((function(){return t._show()}))}this._show()}},{key:"_show",value:function(){var t=this;this.trigger("before-show"),this.el||this.render(),a(this.el,"shepherd-open"),document.body.setAttribute("data-shepherd-step",this.id),this.setupTether(),this.options.scrollTo&&setTimeout((function(){t.scrollTo()})),this.trigger("show")}},{key:"hide",value:function(){this.trigger("before-hide"),u(this.el,"shepherd-open"),document.body.removeAttribute("data-shepherd-step"),this.tether&&this.tether.destroy(),this.tether=null,this.trigger("hide")}},{key:"isOpen",value:function(){return this.el&&c(this.el,"shepherd-open")}},{key:"cancel",value:function(){this.tour.cancel(),this.trigger("cancel")}},{key:"complete",value:function(){this.tour.complete(),this.trigger("complete")}},{key:"scrollTo",value:function(){var t=this.getAttachTo().element;p(this.options.scrollToHandler)?p(t)||t.scrollIntoView():this.options.scrollToHandler(t)}},{key:"destroy",value:function(){!p(this.el)&&this.el.parentNode&&(this.el.parentNode.removeChild(this.el),delete this.el),this.tether&&this.tether.destroy(),this.tether=null,this.trigger("destroy")}},{key:"render",value:function(){var t=this;p(this.el)||this.destroy(),this.el=w("<div class='shepherd-step "+(this.options.classes||"")+"' data-id='"+this.id+"' "+(this.options.idAttribute?'id="'+this.options.idAttribute+'"':"")+"></div>");var e=document.createElement("div");e.className="shepherd-content",this.el.appendChild(e);var n,r,i,o,s=document.createElement("header");if(e.appendChild(s),this.options.title&&(s.innerHTML+="<h3 class='shepherd-title'>"+this.options.title+"</h3>",this.el.className+=" shepherd-has-title"),this.options.showCancelLink){var a=w("<a href class='shepherd-cancel-link'>✕</a>");s.appendChild(a),this.el.className+=" shepherd-has-cancel-link",this.bindCancelLink(a)}p(this.options.text)||(n=w("<div class='shepherd-text'></div>"),"function"==typeof(r=t.options.text)&&(r=r.call(t,n)),r instanceof HTMLElement?n.appendChild(r):("string"==typeof r&&(r=[r]),r.map((function(t){n.innerHTML+="<p>"+t+"</p>"}))),e.appendChild(n)),this.options.buttons&&(i=document.createElement("footer"),o=w("<ul class='shepherd-buttons'></ul>"),t.options.buttons.map((function(e){var n=w("<li><a class='shepherd-button "+(e.classes||"")+"'>"+e.text+"</a>");o.appendChild(n),t.bindButtonEvents(e,n.querySelector("a"))})),i.appendChild(o),e.appendChild(i)),document.body.appendChild(this.el),this.setupTether(),this.options.advanceOn&&this.bindAdvance()}},{key:"bindCancelLink",value:function(t){var e=this;t.addEventListener("click",(function(t){t.preventDefault(),e.cancel()}))}},{key:"bindButtonEvents",value:function(t,e){var n=this;for(var r in t.events=t.events||{},p(t.action)||(t.events.click=t.action),t.events)if({}.hasOwnProperty.call(t.events,r)){var i=t.events[r];"string"==typeof i&&function(){var t=i;i=function(){return n.tour.show(t)}}(),e.addEventListener(r,i)}this.on("destroy",(function(){for(var n in t.events)if({}.hasOwnProperty.call(t.events,n)){var r=t.events[n];e.removeEventListener(n,r)}}))}}]),s}(s),S=function(t){function o(){var t=this,e=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];return r(this,o),n(Object.getPrototypeOf(o.prototype),"constructor",this).call(this,e),this.bindMethods(),this.options=e,this.steps=this.options.steps||[],["complete","cancel","hide","start","show","active","inactive"].map((function(e){var n;n=e,t.on(n,(function(e){(e=e||{}).tour=t,f.trigger(n,e)}))})),this}return i(o,t),e(o,[{key:"bindMethods",value:function(){var t=this;["next","back","cancel","complete","hide"].map((function(e){t[e]=t[e].bind(t)}))}},{key:"addStep",value:function(t,e){return p(e)&&(e=t),e instanceof k?e.tour=this:("string"!=typeof t&&"number"!=typeof t||(e.id=t.toString()),e=l({},this.options.defaults,e),e=new k(this,e)),this.steps.push(e),this}},{key:"removeStep",value:function(t){for(var e=this.getCurrentStep(),n=0;n<this.steps.length;++n){var r=this.steps[n];if(r.id===t){r.isOpen()&&r.hide(),r.destroy(),this.steps.splice(n,1);break}}e&&e.id===t&&(this.currentStep=void 0,this.steps.length?this.show(0):this.hide())}},{key:"getById",value:function(t){for(var e=0;e<this.steps.length;++e){var n=this.steps[e];if(n.id===t)return n}}},{key:"getCurrentStep",value:function(){return this.currentStep}},{key:"next",value:function(){var t=this.steps.indexOf(this.currentStep);t===this.steps.length-1?(this.hide(t),this.trigger("complete"),this.done()):this.show(t+1,!0)}},{key:"back",value:function(){var t=this.steps.indexOf(this.currentStep);this.show(t-1,!1)}},{key:"cancel",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("cancel"),this.done()}},{key:"complete",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("complete"),this.done()}},{key:"hide",value:function(){this.currentStep&&this.currentStep.hide(),this.trigger("hide"),this.done()}},{key:"done",value:function(){f.activeTour=null,u(document.body,"shepherd-active"),this.trigger("inactive",{tour:this})}},{key:"show",value:function(){var t=arguments.length<=0||void 0===arguments[0]?0:arguments[0],e=arguments.length<=1||void 0===arguments[1]||arguments[1];this.currentStep?this.currentStep.hide():(a(document.body,"shepherd-active"),this.trigger("active",{tour:this})),f.activeTour=this;var n=void 0;if(n="string"==typeof t?this.getById(t):this.steps[t])if(p(n.options.showOn)||n.options.showOn())this.trigger("show",{step:n,previous:this.currentStep}),this.currentStep&&this.currentStep.hide(),this.currentStep=n,n.show();else{var r=this.steps.indexOf(n),i=e?r+1:r-1;this.show(i,e)}}},{key:"start",value:function(){this.trigger("start"),this.currentStep=null,this.next()}}]),o}(s);return l(f,{Tour:S,Step:k,Evented:s}),f},void 0===(o="function"==typeof r?r.apply(e,i):r)||(t.exports=o)},6076:function(t,e){var n,r,i;r=[],n=function(){"use strict";var t=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}();function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var n=void 0;void 0===n&&(n={modules:[]});var r=null;function i(t){var e=t.getBoundingClientRect(),n={};for(var r in e)n[r]=e[r];try{if(t.ownerDocument!==document){var o=t.ownerDocument.defaultView.frameElement;if(o){var s=i(o);n.top+=s.top,n.bottom+=s.top,n.left+=s.left,n.right+=s.left}}}catch(t){}return n}function o(t){var e=(getComputedStyle(t)||{}).position,n=[];if("fixed"===e)return[t];for(var r=t;(r=r.parentNode)&&r&&1===r.nodeType;){var i=void 0;try{i=getComputedStyle(r)}catch(t){}if(null==i)return n.push(r),n;var o=i,s=o.overflow,a=o.overflowX,l=o.overflowY;/(auto|scroll|overlay)/.test(s+l+a)&&("absolute"!==e||["relative","absolute","fixed"].indexOf(i.position)>=0)&&n.push(r)}return n.push(t.ownerDocument.body),t.ownerDocument!==document&&n.push(t.ownerDocument.defaultView),n}var s,a=(s=0,function(){return++s}),l={},c=function(){var t=r;t&&document.body.contains(t)||((t=document.createElement("div")).setAttribute("data-tether-id",a()),m(t.style,{top:0,left:0,position:"absolute"}),document.body.appendChild(t),r=t);var e=t.getAttribute("data-tether-id");return void 0===l[e]&&(l[e]=i(t),k((function(){delete l[e]}))),l[e]};function u(){r&&document.body.removeChild(r),r=null}function d(t){var e=void 0;t===document?(e=document,t=document.documentElement):e=t.ownerDocument;var n=e.documentElement,r=i(t),o=c();return r.top-=o.top,r.left-=o.left,void 0===r.width&&(r.width=document.body.scrollWidth-r.left-r.right),void 0===r.height&&(r.height=document.body.scrollHeight-r.top-r.bottom),r.top=r.top-n.clientTop,r.left=r.left-n.clientLeft,r.right=e.body.clientWidth-r.width-r.left,r.bottom=e.body.clientHeight-r.height-r.top,r}function f(t){return t.offsetParent||document.documentElement}var p=null;function h(){if(p)return p;var t=document.createElement("div");t.style.width="100%",t.style.height="200px";var e=document.createElement("div");m(e.style,{position:"absolute",top:0,left:0,pointerEvents:"none",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),e.appendChild(t),document.body.appendChild(e);var n=t.offsetWidth;e.style.overflow="scroll";var r=t.offsetWidth;n===r&&(r=e.clientWidth),document.body.removeChild(e);var i=n-r;return p={width:i,height:i}}function m(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],e=[];return Array.prototype.push.apply(e,arguments),e.slice(1).forEach((function(e){if(e)for(var n in e)({}).hasOwnProperty.call(e,n)&&(t[n]=e[n])})),t}function g(t,e){if(void 0!==t.classList)e.split(" ").forEach((function(e){e.trim()&&t.classList.remove(e)}));else{var n=new RegExp("(^| )"+e.split(" ").join("|")+"( |$)","gi"),r=y(t).replace(n," ");b(t,r)}}function v(t,e){if(void 0!==t.classList)e.split(" ").forEach((function(e){e.trim()&&t.classList.add(e)}));else{g(t,e);var n=y(t)+" "+e;b(t,n)}}function w(t,e){if(void 0!==t.classList)return t.classList.contains(e);var n=y(t);return new RegExp("(^| )"+e+"( |$)","gi").test(n)}function y(t){return t.className instanceof t.ownerDocument.defaultView.SVGAnimatedString?t.className.baseVal:t.className}function b(t,e){t.setAttribute("class",e)}function _(t,e,n){n.forEach((function(n){-1===e.indexOf(n)&&w(t,n)&&g(t,n)})),e.forEach((function(e){w(t,e)||v(t,e)}))}var x=[],k=function(t){x.push(t)},S=function(){for(var t=void 0;t=x.pop();)t()},C=function(){function n(){e(this,n)}return t(n,[{key:"on",value:function(t,e,n){var r=!(arguments.length<=3||void 0===arguments[3])&&arguments[3];void 0===this.bindings&&(this.bindings={}),void 0===this.bindings[t]&&(this.bindings[t]=[]),this.bindings[t].push({handler:e,ctx:n,once:r})}},{key:"once",value:function(t,e,n){this.on(t,e,n,!0)}},{key:"off",value:function(t,e){if(void 0!==this.bindings&&void 0!==this.bindings[t])if(void 0===e)delete this.bindings[t];else for(var n=0;n<this.bindings[t].length;)this.bindings[t][n].handler===e?this.bindings[t].splice(n,1):++n}},{key:"trigger",value:function(t){if(void 0!==this.bindings&&this.bindings[t]){for(var e=0,n=arguments.length,r=Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];for(;e<this.bindings[t].length;){var o=this.bindings[t][e],s=o.handler,a=o.ctx,l=o.once,c=a;void 0===c&&(c=this),s.apply(c,r),l?this.bindings[t].splice(e,1):++e}}}}]),n}();n.Utils={getActualBoundingClientRect:i,getScrollParents:o,getBounds:d,getOffsetParent:f,extend:m,addClass:v,removeClass:g,hasClass:w,updateClasses:_,defer:k,flush:S,uniqueId:a,Evented:C,getScrollBarSize:h,removeUtilElements:u};var O=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&a.return&&a.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),T=(t=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),function(t,e,n){for(var r=!0;r;){var i=t,o=e,s=n;r=!1,null===i&&(i=Function.prototype);var a=Object.getOwnPropertyDescriptor(i,o);if(void 0!==a){if("value"in a)return a.value;var l=a.get;if(void 0===l)return;return l.call(s)}var c=Object.getPrototypeOf(i);if(null===c)return;t=c,e=o,n=s,r=!0,a=c=void 0}});function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function E(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}if(void 0===n)throw new Error("You must include the utils.js file before tether.js");var o=(K=n.Utils).getScrollParents,f=(d=K.getBounds,K.getOffsetParent),v=(m=K.extend,K.addClass),g=K.removeClass,h=(_=K.updateClasses,k=K.defer,S=K.flush,K.getScrollBarSize),u=K.removeUtilElements;function j(t,e){var n=arguments.length<=2||void 0===arguments[2]?1:arguments[2];return t+n>=e&&e>=t-n}var A,P,M,I,L=function(){if("undefined"==typeof document)return"";for(var t=document.createElement("div"),e=["transform","WebkitTransform","OTransform","MozTransform","msTransform"],n=0;n<e.length;++n){var r=e[n];if(void 0!==t.style[r])return r}}(),$=[],D=function(){$.forEach((function(t){t.position(!1)})),S()};function N(){return"object"==typeof performance&&"function"==typeof performance.now?performance.now():+new Date}A=null,P=null,M=null,I=function t(){if(void 0!==P&&P>16)return P=Math.min(P-16,250),void(M=setTimeout(t,250));void 0!==A&&N()-A<10||(null!=M&&(clearTimeout(M),M=null),A=N(),D(),P=N()-A)},"undefined"!=typeof window&&void 0!==window.addEventListener&&["resize","scroll","touchmove"].forEach((function(t){window.addEventListener(t,I)}));var F={center:"center",left:"right",right:"left"},B={middle:"middle",top:"bottom",bottom:"top"},R={top:0,left:0,middle:"50%",center:"50%",bottom:"100%",right:"100%"},z=function(t,e){var n=t.left,r=t.top;return"auto"===n&&(n=F[e.left]),"auto"===r&&(r=B[e.top]),{left:n,top:r}},U=function(t){var e=t.left,n=t.top;return void 0!==R[t.left]&&(e=R[t.left]),void 0!==R[t.top]&&(n=R[t.top]),{left:e,top:n}};function V(){for(var t={top:0,left:0},e=arguments.length,n=Array(e),r=0;r<e;r++)n[r]=arguments[r];return n.forEach((function(e){var n=e.top,r=e.left;"string"==typeof n&&(n=parseFloat(n,10)),"string"==typeof r&&(r=parseFloat(r,10)),t.top+=n,t.left+=r})),t}function H(t,e){return"string"==typeof t.left&&-1!==t.left.indexOf("%")&&(t.left=parseFloat(t.left,10)/100*e.width),"string"==typeof t.top&&-1!==t.top.indexOf("%")&&(t.top=parseFloat(t.top,10)/100*e.height),t}var q=function(t){var e=t.split(" "),n=O(e,2);return{top:n[0],left:n[1]}},W=q,Z=function(r){function i(t){var r=this;e(this,i),T(Object.getPrototypeOf(i.prototype),"constructor",this).call(this),this.position=this.position.bind(this),$.push(this),this.history=[],this.setOptions(t,!1),n.modules.forEach((function(t){void 0!==t.initialize&&t.initialize.call(r)})),this.position()}return E(i,r),t(i,[{key:"getClass",value:function(){var t=arguments.length<=0||void 0===arguments[0]?"":arguments[0],e=this.options.classes;return void 0!==e&&e[t]?this.options.classes[t]:this.options.classPrefix?this.options.classPrefix+"-"+t:t}},{key:"setOptions",value:function(t){var e=this,n=arguments.length<=1||void 0===arguments[1]||arguments[1],r={offset:"0 0",targetOffset:"0 0",targetAttachment:"auto auto",classPrefix:"tether"};this.options=m(r,t);var i=this.options,s=i.element,a=i.target,l=i.targetModifier;if(this.element=s,this.target=a,this.targetModifier=l,"viewport"===this.target?(this.target=document.body,this.targetModifier="visible"):"scroll-handle"===this.target&&(this.target=document.body,this.targetModifier="scroll-handle"),["element","target"].forEach((function(t){if(void 0===e[t])throw new Error("Tether Error: Both element and target must be defined");void 0!==e[t].jquery?e[t]=e[t][0]:"string"==typeof e[t]&&(e[t]=document.querySelector(e[t]))})),v(this.element,this.getClass("element")),!1!==this.options.addTargetClasses&&v(this.target,this.getClass("target")),!this.options.attachment)throw new Error("Tether Error: You must provide an attachment");this.targetAttachment=W(this.options.targetAttachment),this.attachment=W(this.options.attachment),this.offset=q(this.options.offset),this.targetOffset=q(this.options.targetOffset),void 0!==this.scrollParents&&this.disable(),"scroll-handle"===this.targetModifier?this.scrollParents=[this.target]:this.scrollParents=o(this.target),!1!==this.options.enabled&&this.enable(n)}},{key:"getTargetBounds",value:function(){if(void 0===this.targetModifier)return d(this.target);if("visible"===this.targetModifier)return this.target===document.body?{top:pageYOffset,left:pageXOffset,height:innerHeight,width:innerWidth}:((o={height:(t=d(this.target)).height,width:t.width,top:t.top,left:t.left}).height=Math.min(o.height,t.height-(pageYOffset-t.top)),o.height=Math.min(o.height,t.height-(t.top+t.height-(pageYOffset+innerHeight))),o.height=Math.min(innerHeight,o.height),o.height-=2,o.width=Math.min(o.width,t.width-(pageXOffset-t.left)),o.width=Math.min(o.width,t.width-(t.left+t.width-(pageXOffset+innerWidth))),o.width=Math.min(innerWidth,o.width),o.width-=2,o.top<pageYOffset&&(o.top=pageYOffset),o.left<pageXOffset&&(o.left=pageXOffset),o);if("scroll-handle"===this.targetModifier){var t=void 0,e=this.target;e===document.body?(e=document.documentElement,t={left:pageXOffset,top:pageYOffset,height:innerHeight,width:innerWidth}):t=d(e);var n=getComputedStyle(e),r=0;(e.scrollWidth>e.clientWidth||[n.overflow,n.overflowX].indexOf("scroll")>=0||this.target!==document.body)&&(r=15);var i=t.height-parseFloat(n.borderTopWidth)-parseFloat(n.borderBottomWidth)-r,o={width:15,height:.975*i*(i/e.scrollHeight),left:t.left+t.width-parseFloat(n.borderLeftWidth)-15},s=0;i<408&&this.target===document.body&&(s=-11e-5*Math.pow(i,2)-.00727*i+22.58),this.target!==document.body&&(o.height=Math.max(o.height,24));var a=this.target.scrollTop/(e.scrollHeight-i);return o.top=a*(i-o.height-s)+t.top+parseFloat(n.borderTopWidth),this.target===document.body&&(o.height=Math.max(o.height,24)),o}}},{key:"clearCache",value:function(){this._cache={}}},{key:"cache",value:function(t,e){return void 0===this._cache&&(this._cache={}),void 0===this._cache[t]&&(this._cache[t]=e.call(this)),this._cache[t]}},{key:"enable",value:function(){var t=this,e=arguments.length<=0||void 0===arguments[0]||arguments[0];!1!==this.options.addTargetClasses&&v(this.target,this.getClass("enabled")),v(this.element,this.getClass("enabled")),this.enabled=!0,this.scrollParents.forEach((function(e){e!==t.target.ownerDocument&&e.addEventListener("scroll",t.position)})),e&&this.position()}},{key:"disable",value:function(){var t=this;g(this.target,this.getClass("enabled")),g(this.element,this.getClass("enabled")),this.enabled=!1,void 0!==this.scrollParents&&this.scrollParents.forEach((function(e){e.removeEventListener("scroll",t.position)}))}},{key:"destroy",value:function(){var t=this;this.disable(),$.forEach((function(e,n){e===t&&$.splice(n,1)})),0===$.length&&u()}},{key:"updateAttachClasses",value:function(t,e){var n=this;t=t||this.attachment,e=e||this.targetAttachment;var r=["left","top","bottom","right","middle","center"];void 0!==this._addAttachClasses&&this._addAttachClasses.length&&this._addAttachClasses.splice(0,this._addAttachClasses.length),void 0===this._addAttachClasses&&(this._addAttachClasses=[]);var i=this._addAttachClasses;t.top&&i.push(this.getClass("element-attached")+"-"+t.top),t.left&&i.push(this.getClass("element-attached")+"-"+t.left),e.top&&i.push(this.getClass("target-attached")+"-"+e.top),e.left&&i.push(this.getClass("target-attached")+"-"+e.left);var o=[];r.forEach((function(t){o.push(n.getClass("element-attached")+"-"+t),o.push(n.getClass("target-attached")+"-"+t)})),k((function(){void 0!==n._addAttachClasses&&(_(n.element,n._addAttachClasses,o),!1!==n.options.addTargetClasses&&_(n.target,n._addAttachClasses,o),delete n._addAttachClasses)}))}},{key:"position",value:function(){var t=this,e=arguments.length<=0||void 0===arguments[0]||arguments[0];if(this.enabled){this.clearCache();var r=z(this.targetAttachment,this.attachment);this.updateAttachClasses(this.attachment,r);var i=this.cache("element-bounds",(function(){return d(t.element)})),o=i.width,s=i.height;if(0===o&&0===s&&void 0!==this.lastSize){var a=this.lastSize;o=a.width,s=a.height}else this.lastSize={width:o,height:s};var l=this.cache("target-bounds",(function(){return t.getTargetBounds()})),c=l,u=H(U(this.attachment),{width:o,height:s}),p=H(U(r),c),m=H(this.offset,{width:o,height:s}),g=H(this.targetOffset,c);u=V(u,m),p=V(p,g);for(var v=l.left+p.left-u.left,w=l.top+p.top-u.top,y=0;y<n.modules.length;++y){var b=n.modules[y].position.call(this,{left:v,top:w,targetAttachment:r,targetPos:l,elementPos:i,offset:u,targetOffset:p,manualOffset:m,manualTargetOffset:g,scrollbarSize:C,attachment:this.attachment});if(!1===b)return!1;void 0!==b&&"object"==typeof b&&(w=b.top,v=b.left)}var _={page:{top:w,left:v},viewport:{top:w-pageYOffset,bottom:pageYOffset-w-s+innerHeight,left:v-pageXOffset,right:pageXOffset-v-o+innerWidth}},x=this.target.ownerDocument,k=x.defaultView,C=void 0;return k.innerHeight>x.documentElement.clientHeight&&(C=this.cache("scrollbar-size",h),_.viewport.bottom-=C.height),k.innerWidth>x.documentElement.clientWidth&&(C=this.cache("scrollbar-size",h),_.viewport.right-=C.width),-1!==["","static"].indexOf(x.body.style.position)&&-1!==["","static"].indexOf(x.body.parentElement.style.position)||(_.page.bottom=x.body.scrollHeight-w-s,_.page.right=x.body.scrollWidth-v-o),void 0!==this.options.optimizations&&!1!==this.options.optimizations.moveElement&&void 0===this.targetModifier&&function(){var e=t.cache("target-offsetparent",(function(){return f(t.target)})),n=t.cache("target-offsetparent-bounds",(function(){return d(e)})),r=getComputedStyle(e),i=n,o={};if(["Top","Left","Bottom","Right"].forEach((function(t){o[t.toLowerCase()]=parseFloat(r["border"+t+"Width"])})),n.right=x.body.scrollWidth-n.left-i.width+o.right,n.bottom=x.body.scrollHeight-n.top-i.height+o.bottom,_.page.top>=n.top+o.top&&_.page.bottom>=n.bottom&&_.page.left>=n.left+o.left&&_.page.right>=n.right){var s=e.scrollTop,a=e.scrollLeft;_.offset={top:_.page.top-n.top+s-o.top,left:_.page.left-n.left+a-o.left}}}(),this.move(_),this.history.unshift(_),this.history.length>3&&this.history.pop(),e&&S(),!0}}},{key:"move",value:function(t){var e=this;if(void 0!==this.element.parentNode){var n={};for(var r in t)for(var i in n[r]={},t[r]){for(var o=!1,s=0;s<this.history.length;++s){var a=this.history[s];if(void 0!==a[r]&&!j(a[r][i],t[r][i])){o=!0;break}}o||(n[r][i]=!0)}var l={top:"",left:"",right:"",bottom:""},c=function(t,n){if(!1!==(void 0!==e.options.optimizations?e.options.optimizations.gpu:null)){var r=void 0,i=void 0;t.top?(l.top=0,r=n.top):(l.bottom=0,r=-n.bottom),t.left?(l.left=0,i=n.left):(l.right=0,i=-n.right),"number"==typeof window.devicePixelRatio&&devicePixelRatio%1==0&&(i=Math.round(i*devicePixelRatio)/devicePixelRatio,r=Math.round(r*devicePixelRatio)/devicePixelRatio),l[L]="translateX("+i+"px) translateY("+r+"px)","msTransform"!==L&&(l[L]+=" translateZ(0)")}else t.top?l.top=n.top+"px":l.bottom=n.bottom+"px",t.left?l.left=n.left+"px":l.right=n.right+"px"},u=!1;if((n.page.top||n.page.bottom)&&(n.page.left||n.page.right)?(l.position="absolute",c(n.page,t.page)):(n.viewport.top||n.viewport.bottom)&&(n.viewport.left||n.viewport.right)?(l.position="fixed",c(n.viewport,t.viewport)):void 0!==n.offset&&n.offset.top&&n.offset.left?function(){l.position="absolute";var r=e.cache("target-offsetparent",(function(){return f(e.target)}));f(e.element)!==r&&k((function(){e.element.parentNode.removeChild(e.element),r.appendChild(e.element)})),c(n.offset,t.offset),u=!0}():(l.position="absolute",c({top:!0,left:!0},t.page)),!u)if(this.options.bodyElement)this.element.parentNode!==this.options.bodyElement&&this.options.bodyElement.appendChild(this.element);else{for(var d=function(t){var e=t.ownerDocument;return(e.fullscreenElement||e.webkitFullscreenElement||e.mozFullScreenElement||e.msFullscreenElement)===t},p=!0,h=this.element.parentNode;h&&1===h.nodeType&&"BODY"!==h.tagName&&!d(h);){if("static"!==getComputedStyle(h).position){p=!1;break}h=h.parentNode}p||(this.element.parentNode.removeChild(this.element),this.element.ownerDocument.body.appendChild(this.element))}var g={},v=!1;for(var i in l){var w=l[i];this.element.style[i]!==w&&(v=!0,g[i]=w)}v&&k((function(){m(e.element.style,g),e.trigger("repositioned")}))}}}]),i}(C);Z.modules=[],n.position=D;var Y=m(Z,n);O=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&a.return&&a.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=(K=n.Utils).getBounds;var m=K.extend,G=(_=K.updateClasses,k=K.defer,["left","top","right","bottom"]);function J(t,e){return"scrollParent"===e?e=t.scrollParents[0]:"window"===e&&(e=[pageXOffset,pageYOffset,innerWidth+pageXOffset,innerHeight+pageYOffset]),e===document&&(e=e.documentElement),void 0!==e.nodeType&&function(){var t=e,n=d(e),r=n,i=getComputedStyle(e);if(e=[r.left,r.top,n.width+r.left,n.height+r.top],t.ownerDocument!==document){var o=t.ownerDocument.defaultView;e[0]+=o.pageXOffset,e[1]+=o.pageYOffset,e[2]+=o.pageXOffset,e[3]+=o.pageYOffset}G.forEach((function(t,n){"Top"===(t=t[0].toUpperCase()+t.substr(1))||"Left"===t?e[n]+=parseFloat(i["border"+t+"Width"]):e[n]-=parseFloat(i["border"+t+"Width"])}))}(),e}n.modules.push({position:function(t){var e=this,n=t.top,r=t.left,i=t.targetAttachment;if(!this.options.constraints)return!0;var o=this.cache("element-bounds",(function(){return d(e.element)})),s=o.height,a=o.width;if(0===a&&0===s&&void 0!==this.lastSize){var l=this.lastSize;a=l.width,s=l.height}var c=this.cache("target-bounds",(function(){return e.getTargetBounds()})),u=c.height,f=c.width,p=[this.getClass("pinned"),this.getClass("out-of-bounds")];this.options.constraints.forEach((function(t){var e=t.outOfBoundsClass,n=t.pinnedClass;e&&p.push(e),n&&p.push(n)})),p.forEach((function(t){["left","top","right","bottom"].forEach((function(e){p.push(t+"-"+e)}))}));var h=[],g=m({},i),v=m({},this.attachment);return this.options.constraints.forEach((function(t){var o=t.to,l=t.attachment,c=t.pin;void 0===l&&(l="");var d=void 0,p=void 0;if(l.indexOf(" ")>=0){var m=l.split(" "),w=O(m,2);p=w[0],d=w[1]}else d=p=l;var y=J(e,o);"target"!==p&&"both"!==p||(n<y[1]&&"top"===g.top&&(n+=u,g.top="bottom"),n+s>y[3]&&"bottom"===g.top&&(n-=u,g.top="top")),"together"===p&&("top"===g.top&&("bottom"===v.top&&n<y[1]?(n+=u,g.top="bottom",n+=s,v.top="top"):"top"===v.top&&n+s>y[3]&&n-(s-u)>=y[1]&&(n-=s-u,g.top="bottom",v.top="bottom")),"bottom"===g.top&&("top"===v.top&&n+s>y[3]?(n-=u,g.top="top",n-=s,v.top="bottom"):"bottom"===v.top&&n<y[1]&&n+(2*s-u)<=y[3]&&(n+=s-u,g.top="top",v.top="top")),"middle"===g.top&&(n+s>y[3]&&"top"===v.top?(n-=s,v.top="bottom"):n<y[1]&&"bottom"===v.top&&(n+=s,v.top="top"))),"target"!==d&&"both"!==d||(r<y[0]&&"left"===g.left&&(r+=f,g.left="right"),r+a>y[2]&&"right"===g.left&&(r-=f,g.left="left")),"together"===d&&(r<y[0]&&"left"===g.left?"right"===v.left?(r+=f,g.left="right",r+=a,v.left="left"):"left"===v.left&&(r+=f,g.left="right",r-=a,v.left="right"):r+a>y[2]&&"right"===g.left?"left"===v.left?(r-=f,g.left="left",r-=a,v.left="right"):"right"===v.left&&(r-=f,g.left="left",r+=a,v.left="left"):"center"===g.left&&(r+a>y[2]&&"left"===v.left?(r-=a,v.left="right"):r<y[0]&&"right"===v.left&&(r+=a,v.left="left"))),"element"!==p&&"both"!==p||(n<y[1]&&"bottom"===v.top&&(n+=s,v.top="top"),n+s>y[3]&&"top"===v.top&&(n-=s,v.top="bottom")),"element"!==d&&"both"!==d||(r<y[0]&&("right"===v.left?(r+=a,v.left="left"):"center"===v.left&&(r+=a/2,v.left="left")),r+a>y[2]&&("left"===v.left?(r-=a,v.left="right"):"center"===v.left&&(r-=a/2,v.left="right"))),"string"==typeof c?c=c.split(",").map((function(t){return t.trim()})):!0===c&&(c=["top","left","right","bottom"]),c=c||[];var b,_,x=[],k=[];n<y[1]&&(c.indexOf("top")>=0?(n=y[1],x.push("top")):k.push("top")),n+s>y[3]&&(c.indexOf("bottom")>=0?(n=y[3]-s,x.push("bottom")):k.push("bottom")),r<y[0]&&(c.indexOf("left")>=0?(r=y[0],x.push("left")):k.push("left")),r+a>y[2]&&(c.indexOf("right")>=0?(r=y[2]-a,x.push("right")):k.push("right")),x.length&&(b=void 0,b=void 0!==e.options.pinnedClass?e.options.pinnedClass:e.getClass("pinned"),h.push(b),x.forEach((function(t){h.push(b+"-"+t)}))),k.length&&(_=void 0,_=void 0!==e.options.outOfBoundsClass?e.options.outOfBoundsClass:e.getClass("out-of-bounds"),h.push(_),k.forEach((function(t){h.push(_+"-"+t)}))),(x.indexOf("left")>=0||x.indexOf("right")>=0)&&(v.left=g.left=!1),(x.indexOf("top")>=0||x.indexOf("bottom")>=0)&&(v.top=g.top=!1),g.top===i.top&&g.left===i.left&&v.top===e.attachment.top&&v.left===e.attachment.left||(e.updateAttachClasses(v,g),e.trigger("update",{attachment:v,targetAttachment:g}))})),k((function(){!1!==e.options.addTargetClasses&&_(e.target,h,p),_(e.element,h,p)})),{top:n,left:r}}});var K,d=(K=n.Utils).getBounds,_=K.updateClasses;return k=K.defer,n.modules.push({position:function(t){var e=this,n=t.top,r=t.left,i=this.cache("element-bounds",(function(){return d(e.element)})),o=i.height,s=i.width,a=this.getTargetBounds(),l=n+o,c=r+s,u=[];n<=a.bottom&&l>=a.top&&["left","right"].forEach((function(t){var e=a[t];e!==r&&e!==c||u.push(t)})),r<=a.right&&c>=a.left&&["top","bottom"].forEach((function(t){var e=a[t];e!==n&&e!==l||u.push(t)}));var f=[],p=[],h=["left","top","right","bottom"];return f.push(this.getClass("abutted")),h.forEach((function(t){f.push(e.getClass("abutted")+"-"+t)})),u.length&&p.push(this.getClass("abutted")),u.forEach((function(t){p.push(e.getClass("abutted")+"-"+t)})),k((function(){!1!==e.options.addTargetClasses&&_(e.target,p,f),_(e.element,p,f)})),!0}}),O=function(){function t(t,e){var n=[],r=!0,i=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(r=(s=a.next()).done)&&(n.push(s.value),!e||n.length!==e);r=!0);}catch(t){i=!0,o=t}finally{try{!r&&a.return&&a.return()}finally{if(i)throw o}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),n.modules.push({position:function(t){var e=t.top,n=t.left;if(this.options.shift){var r=this.options.shift;"function"==typeof this.options.shift&&(r=this.options.shift.call(this,{top:e,left:n}));var i=void 0,o=void 0;if("string"==typeof r){(r=r.split(" "))[1]=r[1]||r[0];var s=O(r,2);i=s[0],o=s[1],i=parseFloat(i,10),o=parseFloat(o,10)}else i=r.top,o=r.left;return{top:e+=i,left:n+=o}}}}),Y},void 0===(i="function"==typeof n?n.apply(e,r):n)||(t.exports=i)},4266:function(t){t.exports=function(){"use strict";function t(t,e){return t.filter(e)[0]}function e(n,r){if(void 0===r&&(r=[]),null===n||"object"!=typeof n)return n;var i=t(r,(function(t){return t.original===n}));if(i)return i.copy;var o=Array.isArray(n)?[]:{};return r.push({original:n,copy:o}),Object.keys(n).forEach((function(t){o[t]=e(n[t],r)})),o}function n(t){void 0===t&&(t={});var n=t.collapsed;void 0===n&&(n=!0);var s=t.filter;void 0===s&&(s=function(t,e,n){return!0});var a=t.transformer;void 0===a&&(a=function(t){return t});var l=t.mutationTransformer;void 0===l&&(l=function(t){return t});var c=t.actionFilter;void 0===c&&(c=function(t,e){return!0});var u=t.actionTransformer;void 0===u&&(u=function(t){return t});var d=t.logMutations;void 0===d&&(d=!0);var f=t.logActions;void 0===f&&(f=!0);var p=t.logger;return void 0===p&&(p=console),function(t){var h=e(t.state);void 0!==p&&(d&&t.subscribe((function(t,c){var u=e(c);if(s(t,h,u)){var d=o(),f=l(t),m="mutation "+t.type+d;r(p,m,n),p.log("%c prev state","color: #9E9E9E; font-weight: bold",a(h)),p.log("%c mutation","color: #03A9F4; font-weight: bold",f),p.log("%c next state","color: #4CAF50; font-weight: bold",a(u)),i(p)}h=u})),f&&t.subscribeAction((function(t,e){if(c(t,e)){var s=o(),a=u(t),l="action "+t.type+s;r(p,l,n),p.log("%c action","color: #03A9F4; font-weight: bold",a),i(p)}})))}}function r(t,e,n){var r=n?t.groupCollapsed:t.group;try{r.call(t,e)}catch(n){t.log(e)}}function i(t){try{t.groupEnd()}catch(e){t.log("—— log end ——")}}function o(){var t=new Date;return" @ "+a(t.getHours(),2)+":"+a(t.getMinutes(),2)+":"+a(t.getSeconds(),2)+"."+a(t.getMilliseconds(),3)}function s(t,e){return new Array(e+1).join(t)}function a(t,e){return s("0",e-t.toString().length)+t}return n}()},4654:function(){}},n={};function r(t){var i=n[t];if(void 0!==i)return i.exports;var o=n[t]={id:t,loaded:!1,exports:{}};return e[t].call(o.exports,o,o.exports,r),o.loaded=!0,o.exports}r.m=e,t=[],r.O=function(e,n,i,o){if(!n){var s=1/0;for(u=0;u<t.length;u++){n=t[u][0],i=t[u][1],o=t[u][2];for(var a=!0,l=0;l<n.length;l++)(!1&o||s>=o)&&Object.keys(r.O).every((function(t){return r.O[t](n[l])}))?n.splice(l--,1):(a=!1,o<s&&(s=o));if(a){t.splice(u--,1);var c=i();void 0!==c&&(e=c)}}return e}o=o||0;for(var u=t.length;u>0&&t[u-1][2]>o;u--)t[u]=t[u-1];t[u]=[n,i,o]},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,{a:e}),e},r.d=function(t,e){for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=function(t){return t.paths=[],t.children||(t.children=[]),t},function(){var t={143:0,529:0,214:0};r.O.j=function(e){return 0===t[e]};var e=function(e,n){var i,o,s=n[0],a=n[1],l=n[2],c=0;if(s.some((function(e){return 0!==t[e]}))){for(i in a)r.o(a,i)&&(r.m[i]=a[i]);if(l)var u=l(r)}for(e&&e(n);c<s.length;c++)o=s[c],r.o(t,o)&&t[o]&&t[o][0](),t[o]=0;return r.O(u)},n=self.webpackChunkmeta_slider=self.webpackChunkmeta_slider||[];n.forEach(e.bind(null,0)),n.push=e.bind(null,n.push.bind(n))}(),r.nc=void 0,r.O(void 0,[214],(function(){return r(6735)}));var i=r.O(void 0,[214],(function(){return r(526)}));i=r.O(i)}();admin/assets/dist/js/app.min.js.LICENSE.txt000064400000002760151213255350014323 0ustar00/*!
 * The buffer module from node.js, for the browser.
 *
 * @author   Feross Aboukhadijeh <https://feross.org>
 * @license  MIT
 */

/*!
 * Vue.js v2.7.14
 * (c) 2014-2022 Evan You
 * Released under the MIT License.
 */

/*!
 * vuex v3.6.2
 * (c) 2021 Evan You
 * @license MIT
 */

/*!
Copyright (C) 2013-2017 by Andrea Giammarchi - @WebReflection

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

*/

/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */

/*! tether 1.4.7 */

/*! tether-shepherd 1.8.1 */
admin/assets/dist/css/admin.css000064400022644105151213255350012513 0ustar00/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-radius:.375rem;border-width:1px;font-size:1rem;line-height:1.5;padding:.5rem .75rem}.form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.form-input::placeholder{color:#9fa6b2;opacity:1}.form-input:focus{border-color:#a4cafe;box-shadow:0 0 0 3px rgba(164,202,254,.45);outline:none}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-radius:.375rem;border-width:1px;font-size:1rem;line-height:1.5;padding:.5rem .75rem}.form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.form-textarea::placeholder{color:#9fa6b2;opacity:1}.form-textarea:focus{border-color:#a4cafe;box-shadow:0 0 0 3px rgba(164,202,254,.45);outline:none}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-radius:.375rem;border-width:1px;font-size:1rem;line-height:1.5;padding:.5rem .75rem}.form-multiselect:focus{border-color:#a4cafe;box-shadow:0 0 0 3px rgba(164,202,254,.45);outline:none}.form-select{color-adjust:exact;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='m7 7 3-3 3 3m0 6-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;border-color:#d2d6dc;border-radius:.375rem;border-width:1px;font-size:1rem;line-height:1.5;padding:.5rem 2.5rem .5rem .75rem;-webkit-print-color-adjust:exact}.form-select::-ms-expand{border:none;color:#9fa6b2}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{border-color:#a4cafe;box-shadow:0 0 0 3px rgba(164,202,254,.45);outline:none}.form-checkbox:checked{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}@media not print{.form-checkbox::-ms-check{background:inherit;border-color:inherit;border-radius:inherit;border-width:1px;color:transparent}}.form-checkbox{color-adjust:exact;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#d2d6dc;border-radius:.25rem;border-width:1px;color:#3f83f8;display:inline-block;flex-shrink:0;height:1rem;-webkit-print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}.form-checkbox:focus{border-color:#a4cafe;box-shadow:0 0 0 3px rgba(164,202,254,.45);outline:none}.form-checkbox:checked:focus,.form-radio:checked{border-color:transparent}.form-radio:checked{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%}@media not print{.form-radio::-ms-check{background:inherit;border-color:inherit;border-radius:inherit;border-width:1px;color:transparent}}.form-radio{color-adjust:exact;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#d2d6dc;border-radius:100%;border-width:1px;color:#3f83f8;display:inline-block;flex-shrink:0;height:1rem;-webkit-print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}.form-radio:focus{border-color:#a4cafe;box-shadow:0 0 0 3px rgba(164,202,254,.45);outline:none}.form-radio:checked:focus{border-color:transparent}.ms-toolbar-button{--text-opacity:1!important;align-items:center!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important;display:flex!important;flex-direction:column!important;height:100%!important;justify-content:flex-end!important;line-height:1!important;padding-bottom:1rem!important;padding-left:.5rem!important;padding-right:.5rem!important;text-decoration:none!important;transition-duration:.3s!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important;transition-timing-function:cubic-bezier(.4,0,1,1)!important}.ms-toolbar-button:active,.ms-toolbar-button:hover{--bg-opacity:1!important;--text-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important;outline:2px solid transparent!important;outline-offset:2px!important}.ms-toolbar-button:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.ms-toolbar-button.disabled,.ms-toolbar-button.disabled *{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.metaslider-tour{max-width:20rem!important;z-index:2147483647!important}.metaslider-tour .shepherd-content{border-radius:.25rem!important;box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.metaslider-tour header{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important;border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important;padding:.75rem 1rem!important}.metaslider-tour header h3{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important;font-size:1.125rem!important;margin:0!important}.metaslider-tour .shepherd-text{--bg-opacity:1!important;--text-opacity:1!important;align-items:center!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important;display:flex!important;font-size:1.125rem!important;padding:1rem!important;text-align:left!important}.metaslider-tour .shepherd-text>*{font-size:1.125rem!important;margin:0!important}.shepherd-element.shepherd-has-title .shepherd-content header a.shepherd-cancel-link{--text-opacity:1;--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity));border-radius:9999px;border-width:1px;color:#fff;color:rgba(255,255,255,var(--text-opacity));float:none;font-size:.875rem;height:1.5rem;line-height:21px!important;opacity:.75;padding:0;position:absolute;right:11px!important;text-align:center;top:9px!important;width:1.5rem}.shepherd-element.shepherd-has-title .shepherd-content header a.shepherd-cancel-link:after{--text-opacity:1;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;color:#fff;color:rgba(255,255,255,var(--text-opacity));content:"\f335";font-family:dashicons!important;font-size:1.125rem;left:2px!important;position:absolute;top:1px!important}.metaslider-tour.shepherd-element-attached-top .shepherd-content:before{border-bottom-color:#dd6923!important}.metaslider-tour.shepherd-element-attached-bottom.shepherd-element-attached-right .shepherd-content:before{border-top-color:#fff;left:100%;margin-left:-50px;top:100%}.metaslider-tour.shepherd-element-attached-top.shepherd-element-attached-right .shepherd-content:before{border-color:transparent transparent #dd6923!important;left:auto!important;right:26px!important;top:auto!important}.shepherd-element-attached-bottom.shepherd-element-attached-left.shepherd-target-attached-top.shepherd-target-attached-right .shepherd-content:before,.shepherd-element-attached-bottom.shepherd-element-attached-right.shepherd-target-attached-top.shepherd-target-attached-left .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-left.shepherd-target-attached-bottom.shepherd-target-attached-right .shepherd-content:before,.shepherd-element-attached-top.shepherd-element-attached-right.shepherd-target-attached-bottom.shepherd-target-attached-left .shepherd-content:before{display:block}body.shepherd-active[data-shepherd-step=add-slide],body.shepherd-active[data-shepherd-step=preview]{position:fixed;width:100%}body.shepherd-active[data-shepherd-step=add-slide] #ms-form-settings>.container,body.shepherd-active[data-shepherd-step=preview] #ms-form-settings>.container{filter:blur(3px);pointer-events:none}.space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.divide-transparent>:not(template)~:not(template){border-color:transparent!important}.divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.divide-solid>:not(template)~:not(template){border-style:solid!important}.divide-dashed>:not(template)~:not(template){border-style:dashed!important}.divide-dotted>:not(template)~:not(template){border-style:dotted!important}.divide-double>:not(template)~:not(template){border-style:double!important}.divide-none>:not(template)~:not(template){border-style:none!important}.divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.bg-fixed{background-attachment:fixed!important}.bg-local{background-attachment:local!important}.bg-scroll{background-attachment:scroll!important}.bg-clip-border{background-clip:border-box!important}.bg-clip-padding{background-clip:padding-box!important}.bg-clip-content{background-clip:content-box!important}.bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.bg-transparent{background-color:transparent!important}.bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.bg-gray-dark{background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.bg-gray,.bg-gray-dark{--bg-opacity:1!important}.bg-gray{background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.bg-blue-dark{background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.bg-blue,.bg-blue-dark{--bg-opacity:1!important}.bg-blue{background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.bg-red{background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.bg-green,.bg-red{--bg-opacity:1!important}.bg-green{background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .group-hover\:bg-transparent{background-color:transparent!important}.group:hover .group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .group-focus\:bg-transparent{background-color:transparent!important}.group:focus .group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.hover\:bg-transparent:hover{background-color:transparent!important}.hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.focus\:bg-transparent:focus{background-color:transparent!important}.focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.active\:bg-transparent:active{background-color:transparent!important}.active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.bg-none{background-image:none!important}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.to-transparent{--gradient-to-color:transparent!important}.to-white{--gradient-to-color:#fff!important}.to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.to-blackest{--gradient-to-color:#000!important}.to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.to-black{--gradient-to-color:#23292d!important}.to-gray-darkest{--gradient-to-color:#3d4852!important}.to-gray-darker{--gradient-to-color:#606f7b!important}.to-gray-dark{--gradient-to-color:#9ea3a8!important}.to-gray{--gradient-to-color:#b8c2cc!important}.to-gray-light{--gradient-to-color:#dae1e7!important}.to-gray-lighter{--gradient-to-color:#f1f1f1!important}.to-gray-lightest{--gradient-to-color:#f8fafc!important}.to-blue-darkest{--gradient-to-color:#1673a7!important}.to-blue-dark{--gradient-to-color:#0073aa!important}.to-blue{--gradient-to-color:#3188e6!important}.to-blue-light{--gradient-to-color:#a4cafe!important}.to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.to-orange{--gradient-to-color:#dd6923!important}.to-orange-darker{--gradient-to-color:#d5551e!important}.to-orange-darkest{--gradient-to-color:#c9501c!important}.to-red{--gradient-to-color:#e82323!important}.to-green{--gradient-to-color:#46b450!important}.to-yellow-400{--gradient-to-color:#e3a008!important}.to-yellow-50{--gradient-to-color:#fdfdea!important}.hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.hover\:to-transparent:hover{--gradient-to-color:transparent!important}.hover\:to-white:hover{--gradient-to-color:#fff!important}.hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.hover\:to-blackest:hover{--gradient-to-color:#000!important}.hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.hover\:to-black:hover{--gradient-to-color:#23292d!important}.hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.hover\:to-red:hover{--gradient-to-color:#e82323!important}.hover\:to-green:hover{--gradient-to-color:#46b450!important}.hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.focus\:to-transparent:focus{--gradient-to-color:transparent!important}.focus\:to-white:focus{--gradient-to-color:#fff!important}.focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.focus\:to-blackest:focus{--gradient-to-color:#000!important}.focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.focus\:to-black:focus{--gradient-to-color:#23292d!important}.focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.focus\:to-red:focus{--gradient-to-color:#e82323!important}.focus\:to-green:focus{--gradient-to-color:#46b450!important}.focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.bg-opacity-0{--bg-opacity:0!important}.bg-opacity-25{--bg-opacity:0.25!important}.bg-opacity-50{--bg-opacity:0.5!important}.bg-opacity-75{--bg-opacity:0.75!important}.bg-opacity-100{--bg-opacity:1!important}.hover\:bg-opacity-0:hover{--bg-opacity:0!important}.hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.hover\:bg-opacity-100:hover{--bg-opacity:1!important}.focus\:bg-opacity-0:focus{--bg-opacity:0!important}.focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.focus\:bg-opacity-100:focus{--bg-opacity:1!important}.bg-bottom{background-position:bottom!important}.bg-center{background-position:50%!important}.bg-left{background-position:0!important}.bg-left-bottom{background-position:0 100%!important}.bg-left-top{background-position:0 0!important}.bg-right{background-position:100%!important}.bg-right-bottom{background-position:100% 100%!important}.bg-right-top{background-position:100% 0!important}.bg-top{background-position:top!important}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}.border-collapse{border-collapse:collapse!important}.border-separate{border-collapse:separate!important}.border-transparent{border-color:transparent!important}.border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.border-white-70{border-color:hsla(0,0%,100%,.7)!important}.border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.border-blackest-70{border-color:rgba(0,0,0,.7)!important}.border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.border-red{border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.border-green,.border-red{--border-opacity:1!important}.border-green{border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.hover\:border-transparent:hover{border-color:transparent!important}.hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.focus\:border-transparent:focus{border-color:transparent!important}.focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .group-hover\:border-transparent{border-color:transparent!important}.group:hover .group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.border-opacity-0{--border-opacity:0!important}.border-opacity-25{--border-opacity:0.25!important}.border-opacity-50{--border-opacity:0.5!important}.border-opacity-75{--border-opacity:0.75!important}.border-opacity-100{--border-opacity:1!important}.hover\:border-opacity-0:hover{--border-opacity:0!important}.hover\:border-opacity-25:hover{--border-opacity:0.25!important}.hover\:border-opacity-50:hover{--border-opacity:0.5!important}.hover\:border-opacity-75:hover{--border-opacity:0.75!important}.hover\:border-opacity-100:hover{--border-opacity:1!important}.focus\:border-opacity-0:focus{--border-opacity:0!important}.focus\:border-opacity-25:focus{--border-opacity:0.25!important}.focus\:border-opacity-50:focus{--border-opacity:0.5!important}.focus\:border-opacity-75:focus{--border-opacity:0.75!important}.focus\:border-opacity-100:focus{--border-opacity:1!important}.rounded-none{border-radius:0!important}.rounded-sm{border-radius:.125rem!important}.rounded{border-radius:.25rem!important}.rounded-md{border-radius:.375rem!important}.rounded-lg{border-radius:.5rem!important}.rounded-xl{border-radius:.75rem!important}.rounded-2xl{border-radius:1rem!important}.rounded-3xl{border-radius:1.5rem!important}.rounded-full{border-radius:9999px!important}.rounded-t-none{border-top-left-radius:0!important}.rounded-r-none,.rounded-t-none{border-top-right-radius:0!important}.rounded-b-none,.rounded-r-none{border-bottom-right-radius:0!important}.rounded-b-none,.rounded-l-none{border-bottom-left-radius:0!important}.rounded-l-none{border-top-left-radius:0!important}.rounded-t-sm{border-top-left-radius:.125rem!important}.rounded-r-sm,.rounded-t-sm{border-top-right-radius:.125rem!important}.rounded-b-sm,.rounded-r-sm{border-bottom-right-radius:.125rem!important}.rounded-b-sm,.rounded-l-sm{border-bottom-left-radius:.125rem!important}.rounded-l-sm{border-top-left-radius:.125rem!important}.rounded-t{border-top-left-radius:.25rem!important}.rounded-r,.rounded-t{border-top-right-radius:.25rem!important}.rounded-b,.rounded-r{border-bottom-right-radius:.25rem!important}.rounded-b,.rounded-l{border-bottom-left-radius:.25rem!important}.rounded-l{border-top-left-radius:.25rem!important}.rounded-t-md{border-top-left-radius:.375rem!important}.rounded-r-md,.rounded-t-md{border-top-right-radius:.375rem!important}.rounded-b-md,.rounded-r-md{border-bottom-right-radius:.375rem!important}.rounded-b-md,.rounded-l-md{border-bottom-left-radius:.375rem!important}.rounded-l-md{border-top-left-radius:.375rem!important}.rounded-t-lg{border-top-left-radius:.5rem!important}.rounded-r-lg,.rounded-t-lg{border-top-right-radius:.5rem!important}.rounded-b-lg,.rounded-r-lg{border-bottom-right-radius:.5rem!important}.rounded-b-lg,.rounded-l-lg{border-bottom-left-radius:.5rem!important}.rounded-l-lg{border-top-left-radius:.5rem!important}.rounded-t-xl{border-top-left-radius:.75rem!important}.rounded-r-xl,.rounded-t-xl{border-top-right-radius:.75rem!important}.rounded-b-xl,.rounded-r-xl{border-bottom-right-radius:.75rem!important}.rounded-b-xl,.rounded-l-xl{border-bottom-left-radius:.75rem!important}.rounded-l-xl{border-top-left-radius:.75rem!important}.rounded-t-2xl{border-top-left-radius:1rem!important}.rounded-r-2xl,.rounded-t-2xl{border-top-right-radius:1rem!important}.rounded-b-2xl,.rounded-r-2xl{border-bottom-right-radius:1rem!important}.rounded-b-2xl,.rounded-l-2xl{border-bottom-left-radius:1rem!important}.rounded-l-2xl{border-top-left-radius:1rem!important}.rounded-t-3xl{border-top-left-radius:1.5rem!important}.rounded-r-3xl,.rounded-t-3xl{border-top-right-radius:1.5rem!important}.rounded-b-3xl,.rounded-r-3xl{border-bottom-right-radius:1.5rem!important}.rounded-b-3xl,.rounded-l-3xl{border-bottom-left-radius:1.5rem!important}.rounded-l-3xl{border-top-left-radius:1.5rem!important}.rounded-t-full{border-top-left-radius:9999px!important}.rounded-r-full,.rounded-t-full{border-top-right-radius:9999px!important}.rounded-b-full,.rounded-r-full{border-bottom-right-radius:9999px!important}.rounded-b-full,.rounded-l-full{border-bottom-left-radius:9999px!important}.rounded-l-full{border-top-left-radius:9999px!important}.rounded-tl-none{border-top-left-radius:0!important}.rounded-tr-none{border-top-right-radius:0!important}.rounded-br-none{border-bottom-right-radius:0!important}.rounded-bl-none{border-bottom-left-radius:0!important}.rounded-tl-sm{border-top-left-radius:.125rem!important}.rounded-tr-sm{border-top-right-radius:.125rem!important}.rounded-br-sm{border-bottom-right-radius:.125rem!important}.rounded-bl-sm{border-bottom-left-radius:.125rem!important}.rounded-tl{border-top-left-radius:.25rem!important}.rounded-tr{border-top-right-radius:.25rem!important}.rounded-br{border-bottom-right-radius:.25rem!important}.rounded-bl{border-bottom-left-radius:.25rem!important}.rounded-tl-md{border-top-left-radius:.375rem!important}.rounded-tr-md{border-top-right-radius:.375rem!important}.rounded-br-md{border-bottom-right-radius:.375rem!important}.rounded-bl-md{border-bottom-left-radius:.375rem!important}.rounded-tl-lg{border-top-left-radius:.5rem!important}.rounded-tr-lg{border-top-right-radius:.5rem!important}.rounded-br-lg{border-bottom-right-radius:.5rem!important}.rounded-bl-lg{border-bottom-left-radius:.5rem!important}.rounded-tl-xl{border-top-left-radius:.75rem!important}.rounded-tr-xl{border-top-right-radius:.75rem!important}.rounded-br-xl{border-bottom-right-radius:.75rem!important}.rounded-bl-xl{border-bottom-left-radius:.75rem!important}.rounded-tl-2xl{border-top-left-radius:1rem!important}.rounded-tr-2xl{border-top-right-radius:1rem!important}.rounded-br-2xl{border-bottom-right-radius:1rem!important}.rounded-bl-2xl{border-bottom-left-radius:1rem!important}.rounded-tl-3xl{border-top-left-radius:1.5rem!important}.rounded-tr-3xl{border-top-right-radius:1.5rem!important}.rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.rounded-tl-full{border-top-left-radius:9999px!important}.rounded-tr-full{border-top-right-radius:9999px!important}.rounded-br-full{border-bottom-right-radius:9999px!important}.rounded-bl-full{border-bottom-left-radius:9999px!important}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}.border-none{border-style:none!important}.border-0{border-width:0!important}.border-2{border-width:2px!important}.border-4{border-width:4px!important}.border-8{border-width:8px!important}.border{border-width:1px!important}.border-t-0{border-top-width:0!important}.border-r-0{border-right-width:0!important}.border-b-0{border-bottom-width:0!important}.border-l-0{border-left-width:0!important}.border-t-2{border-top-width:2px!important}.border-r-2{border-right-width:2px!important}.border-b-2{border-bottom-width:2px!important}.border-l-2{border-left-width:2px!important}.border-t-4{border-top-width:4px!important}.border-r-4{border-right-width:4px!important}.border-b-4{border-bottom-width:4px!important}.border-l-4{border-left-width:4px!important}.border-t-8{border-top-width:8px!important}.border-r-8{border-right-width:8px!important}.border-b-8{border-bottom-width:8px!important}.border-l-8{border-left-width:8px!important}.border-t{border-top-width:1px!important}.border-r{border-right-width:1px!important}.border-b{border-bottom-width:1px!important}.border-l{border-left-width:1px!important}.box-border{box-sizing:border-box!important}.box-content{box-sizing:content-box!important}.cursor-auto{cursor:auto!important}.cursor-default{cursor:default!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-text{cursor:text!important}.cursor-move{cursor:move!important}.cursor-not-allowed{cursor:not-allowed!important}.block{display:block!important}.inline-block{display:inline-block!important}.inline{display:inline!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}.table{display:table!important}.table-caption{display:table-caption!important}.table-cell{display:table-cell!important}.table-column{display:table-column!important}.table-column-group{display:table-column-group!important}.table-footer-group{display:table-footer-group!important}.table-header-group{display:table-header-group!important}.table-row-group{display:table-row-group!important}.table-row{display:table-row!important}.flow-root{display:flow-root!important}.grid{display:grid!important}.inline-grid{display:inline-grid!important}.contents{display:contents!important}.hidden{display:none!important}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-col{flex-direction:column!important}.flex-col-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-no-wrap{flex-wrap:nowrap!important}.place-items-auto{place-items:auto!important}.place-items-start{place-items:start!important}.place-items-end{place-items:end!important}.place-items-center{place-items:center!important}.place-items-stretch{place-items:stretch!important}.place-content-center{place-content:center!important}.place-content-start{place-content:start!important}.place-content-end{place-content:end!important}.place-content-between{place-content:space-between!important}.place-content-around{place-content:space-around!important}.place-content-evenly{place-content:space-evenly!important}.place-content-stretch{place-content:stretch!important}.place-self-auto{place-self:auto!important}.place-self-start{place-self:start!important}.place-self-end{place-self:end!important}.place-self-center{place-self:center!important}.place-self-stretch{place-self:stretch!important}.items-start{align-items:flex-start!important}.items-end{align-items:flex-end!important}.items-center{align-items:center!important}.items-baseline{align-items:baseline!important}.items-stretch{align-items:stretch!important}.content-center{align-content:center!important}.content-start{align-content:flex-start!important}.content-end{align-content:flex-end!important}.content-between{align-content:space-between!important}.content-around{align-content:space-around!important}.content-evenly{align-content:space-evenly!important}.self-auto{align-self:auto!important}.self-start{align-self:flex-start!important}.self-end{align-self:flex-end!important}.self-center{align-self:center!important}.self-stretch{align-self:stretch!important}.justify-items-auto{justify-items:auto!important}.justify-items-start{justify-items:start!important}.justify-items-end{justify-items:end!important}.justify-items-center{justify-items:center!important}.justify-items-stretch{justify-items:stretch!important}.justify-start{justify-content:flex-start!important}.justify-end{justify-content:flex-end!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.justify-around{justify-content:space-around!important}.justify-evenly{justify-content:space-evenly!important}.justify-self-auto{justify-self:auto!important}.justify-self-start{justify-self:start!important}.justify-self-end{justify-self:end!important}.justify-self-center{justify-self:center!important}.justify-self-stretch{justify-self:stretch!important}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}.flex-grow-0{flex-grow:0!important}.flex-grow{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink{flex-shrink:1!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-6{order:6!important}.order-7{order:7!important}.order-8{order:8!important}.order-9{order:9!important}.order-10{order:10!important}.order-11{order:11!important}.order-12{order:12!important}.order-first{order:-9999!important}.order-last{order:9999!important}.order-none{order:0!important}.float-right{float:right!important}.float-left{float:left!important}.float-none{float:none!important}.clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .ltr\:float-right{float:right!important}[dir=ltr] .ltr\:float-left{float:left!important}[dir=ltr] .ltr\:float-none{float:none!important}[dir=ltr] .ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .rtl\:float-right{float:right!important}[dir=rtl] .rtl\:float-left{float:left!important}[dir=rtl] .rtl\:float-none{float:none!important}[dir=rtl] .rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.clear-left{clear:left!important}.clear-right{clear:right!important}.clear-both{clear:both!important}.clear-none{clear:none!important}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.font-hairline{font-weight:100!important}.font-thin{font-weight:200!important}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}.font-extrabold{font-weight:800!important}.font-black{font-weight:900!important}.hover\:font-hairline:hover{font-weight:100!important}.hover\:font-thin:hover{font-weight:200!important}.hover\:font-light:hover{font-weight:300!important}.hover\:font-normal:hover{font-weight:400!important}.hover\:font-medium:hover{font-weight:500!important}.hover\:font-semibold:hover{font-weight:600!important}.hover\:font-bold:hover{font-weight:700!important}.hover\:font-extrabold:hover{font-weight:800!important}.hover\:font-black:hover{font-weight:900!important}.focus\:font-hairline:focus{font-weight:100!important}.focus\:font-thin:focus{font-weight:200!important}.focus\:font-light:focus{font-weight:300!important}.focus\:font-normal:focus{font-weight:400!important}.focus\:font-medium:focus{font-weight:500!important}.focus\:font-semibold:focus{font-weight:600!important}.focus\:font-bold:focus{font-weight:700!important}.focus\:font-extrabold:focus{font-weight:800!important}.focus\:font-black:focus{font-weight:900!important}.h-0{height:0!important}.h-1{height:.25rem!important}.h-2{height:.5rem!important}.h-3{height:.75rem!important}.h-4{height:1rem!important}.h-5{height:1.25rem!important}.h-6{height:1.5rem!important}.h-7{height:1.75rem!important}.h-8{height:2rem!important}.h-9{height:2.25rem!important}.h-10{height:2.5rem!important}.h-11{height:2.75rem!important}.h-12{height:3rem!important}.h-13{height:3.25rem!important}.h-14{height:3.5rem!important}.h-15{height:3.75rem!important}.h-16{height:4rem!important}.h-20{height:5rem!important}.h-24{height:6rem!important}.h-28{height:7rem!important}.h-32{height:8rem!important}.h-36{height:9rem!important}.h-40{height:10rem!important}.h-48{height:12rem!important}.h-56{height:14rem!important}.h-60{height:15rem!important}.h-64{height:16rem!important}.h-72{height:18rem!important}.h-80{height:20rem!important}.h-96{height:24rem!important}.h-auto{height:auto!important}.h-px{height:1px!important}.h-0\.5{height:.125rem!important}.h-1\.5{height:.375rem!important}.h-2\.5{height:.625rem!important}.h-3\.5{height:.875rem!important}.h-1\/2{height:50%!important}.h-1\/3{height:33.333333%!important}.h-2\/3{height:66.666667%!important}.h-1\/4{height:25%!important}.h-2\/4{height:50%!important}.h-3\/4{height:75%!important}.h-1\/5{height:20%!important}.h-2\/5{height:40%!important}.h-3\/5{height:60%!important}.h-4\/5{height:80%!important}.h-1\/6{height:16.666667%!important}.h-2\/6{height:33.333333%!important}.h-3\/6{height:50%!important}.h-4\/6{height:66.666667%!important}.h-5\/6{height:83.333333%!important}.h-1\/12{height:8.333333%!important}.h-2\/12{height:16.666667%!important}.h-3\/12{height:25%!important}.h-4\/12{height:33.333333%!important}.h-5\/12{height:41.666667%!important}.h-6\/12{height:50%!important}.h-7\/12{height:58.333333%!important}.h-8\/12{height:66.666667%!important}.h-9\/12{height:75%!important}.h-10\/12{height:83.333333%!important}.h-11\/12{height:91.666667%!important}.h-full{height:100%!important}.h-screen{height:100vh!important}.text-xs{font-size:.7rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.875rem!important}.text-4xl{font-size:2.25rem!important}.text-5xl{font-size:3rem!important}.text-6xl{font-size:4rem!important}.leading-3{line-height:.75rem!important}.leading-4{line-height:1rem!important}.leading-5{line-height:1.25rem!important}.leading-6{line-height:1.5rem!important}.leading-7{line-height:1.75rem!important}.leading-8{line-height:2rem!important}.leading-9{line-height:2.25rem!important}.leading-10{line-height:2.5rem!important}.leading-none{line-height:1!important}.leading-tight{line-height:1.25!important}.leading-snug{line-height:1.375!important}.leading-normal{line-height:1.5!important}.leading-relaxed{line-height:1.625!important}.leading-loose{line-height:2!important}.list-inside{list-style-position:inside!important}.list-outside{list-style-position:outside!important}.list-none{list-style-type:none!important}.list-disc{list-style-type:disc!important}.list-decimal{list-style-type:decimal!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:.75rem!important}.m-4{margin:1rem!important}.m-5{margin:1.25rem!important}.m-6{margin:1.5rem!important}.m-7{margin:1.75rem!important}.m-8{margin:2rem!important}.m-9{margin:2.25rem!important}.m-10{margin:2.5rem!important}.m-11{margin:2.75rem!important}.m-12{margin:3rem!important}.m-13{margin:3.25rem!important}.m-14{margin:3.5rem!important}.m-15{margin:3.75rem!important}.m-16{margin:4rem!important}.m-20{margin:5rem!important}.m-24{margin:6rem!important}.m-28{margin:7rem!important}.m-32{margin:8rem!important}.m-36{margin:9rem!important}.m-40{margin:10rem!important}.m-48{margin:12rem!important}.m-56{margin:14rem!important}.m-60{margin:15rem!important}.m-64{margin:16rem!important}.m-72{margin:18rem!important}.m-80{margin:20rem!important}.m-96{margin:24rem!important}.m-auto{margin:auto!important}.m-px{margin:1px!important}.m-0\.5{margin:.125rem!important}.m-1\.5{margin:.375rem!important}.m-2\.5{margin:.625rem!important}.m-3\.5{margin:.875rem!important}.m-1\/2{margin:50%!important}.m-1\/3{margin:33.333333%!important}.m-2\/3{margin:66.666667%!important}.m-1\/4{margin:25%!important}.m-2\/4{margin:50%!important}.m-3\/4{margin:75%!important}.m-1\/5{margin:20%!important}.m-2\/5{margin:40%!important}.m-3\/5{margin:60%!important}.m-4\/5{margin:80%!important}.m-1\/6{margin:16.666667%!important}.m-2\/6{margin:33.333333%!important}.m-3\/6{margin:50%!important}.m-4\/6{margin:66.666667%!important}.m-5\/6{margin:83.333333%!important}.m-1\/12{margin:8.333333%!important}.m-2\/12{margin:16.666667%!important}.m-3\/12{margin:25%!important}.m-4\/12{margin:33.333333%!important}.m-5\/12{margin:41.666667%!important}.m-6\/12{margin:50%!important}.m-7\/12{margin:58.333333%!important}.m-8\/12{margin:66.666667%!important}.m-9\/12{margin:75%!important}.m-10\/12{margin:83.333333%!important}.m-11\/12{margin:91.666667%!important}.m-full{margin:100%!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-.75rem!important}.-m-4{margin:-1rem!important}.-m-5{margin:-1.25rem!important}.-m-6{margin:-1.5rem!important}.-m-7{margin:-1.75rem!important}.-m-8{margin:-2rem!important}.-m-9{margin:-2.25rem!important}.-m-10{margin:-2.5rem!important}.-m-11{margin:-2.75rem!important}.-m-12{margin:-3rem!important}.-m-13{margin:-3.25rem!important}.-m-14{margin:-3.5rem!important}.-m-15{margin:-3.75rem!important}.-m-16{margin:-4rem!important}.-m-20{margin:-5rem!important}.-m-24{margin:-6rem!important}.-m-28{margin:-7rem!important}.-m-32{margin:-8rem!important}.-m-36{margin:-9rem!important}.-m-40{margin:-10rem!important}.-m-48{margin:-12rem!important}.-m-56{margin:-14rem!important}.-m-60{margin:-15rem!important}.-m-64{margin:-16rem!important}.-m-72{margin:-18rem!important}.-m-80{margin:-20rem!important}.-m-96{margin:-24rem!important}.-m-px{margin:-1px!important}.-m-0\.5{margin:-.125rem!important}.-m-1\.5{margin:-.375rem!important}.-m-2\.5{margin:-.625rem!important}.-m-3\.5{margin:-.875rem!important}.-m-1\/2{margin:-50%!important}.-m-1\/3{margin:-33.33333%!important}.-m-2\/3{margin:-66.66667%!important}.-m-1\/4{margin:-25%!important}.-m-2\/4{margin:-50%!important}.-m-3\/4{margin:-75%!important}.-m-1\/5{margin:-20%!important}.-m-2\/5{margin:-40%!important}.-m-3\/5{margin:-60%!important}.-m-4\/5{margin:-80%!important}.-m-1\/6{margin:-16.66667%!important}.-m-2\/6{margin:-33.33333%!important}.-m-3\/6{margin:-50%!important}.-m-4\/6{margin:-66.66667%!important}.-m-5\/6{margin:-83.33333%!important}.-m-1\/12{margin:-8.33333%!important}.-m-2\/12{margin:-16.66667%!important}.-m-3\/12{margin:-25%!important}.-m-4\/12{margin:-33.33333%!important}.-m-5\/12{margin:-41.66667%!important}.-m-6\/12{margin:-50%!important}.-m-7\/12{margin:-58.33333%!important}.-m-8\/12{margin:-66.66667%!important}.-m-9\/12{margin:-75%!important}.-m-10\/12{margin:-83.33333%!important}.-m-11\/12{margin:-91.66667%!important}.-m-full{margin:-100%!important}.my-0{margin-bottom:0!important;margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.my-4{margin-bottom:1rem!important;margin-top:1rem!important}.mx-4{margin-left:1rem!important;margin-right:1rem!important}.my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.my-8{margin-bottom:2rem!important;margin-top:2rem!important}.mx-8{margin-left:2rem!important;margin-right:2rem!important}.my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.my-12{margin-bottom:3rem!important;margin-top:3rem!important}.mx-12{margin-left:3rem!important;margin-right:3rem!important}.my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.my-16{margin-bottom:4rem!important;margin-top:4rem!important}.mx-16{margin-left:4rem!important;margin-right:4rem!important}.my-20{margin-bottom:5rem!important;margin-top:5rem!important}.mx-20{margin-left:5rem!important;margin-right:5rem!important}.my-24{margin-bottom:6rem!important;margin-top:6rem!important}.mx-24{margin-left:6rem!important;margin-right:6rem!important}.my-28{margin-bottom:7rem!important;margin-top:7rem!important}.mx-28{margin-left:7rem!important;margin-right:7rem!important}.my-32{margin-bottom:8rem!important;margin-top:8rem!important}.mx-32{margin-left:8rem!important;margin-right:8rem!important}.my-36{margin-bottom:9rem!important;margin-top:9rem!important}.mx-36{margin-left:9rem!important;margin-right:9rem!important}.my-40{margin-bottom:10rem!important;margin-top:10rem!important}.mx-40{margin-left:10rem!important;margin-right:10rem!important}.my-48{margin-bottom:12rem!important;margin-top:12rem!important}.mx-48{margin-left:12rem!important;margin-right:12rem!important}.my-56{margin-bottom:14rem!important;margin-top:14rem!important}.mx-56{margin-left:14rem!important;margin-right:14rem!important}.my-60{margin-bottom:15rem!important;margin-top:15rem!important}.mx-60{margin-left:15rem!important;margin-right:15rem!important}.my-64{margin-bottom:16rem!important;margin-top:16rem!important}.mx-64{margin-left:16rem!important;margin-right:16rem!important}.my-72{margin-bottom:18rem!important;margin-top:18rem!important}.mx-72{margin-left:18rem!important;margin-right:18rem!important}.my-80{margin-bottom:20rem!important;margin-top:20rem!important}.mx-80{margin-left:20rem!important;margin-right:20rem!important}.my-96{margin-bottom:24rem!important;margin-top:24rem!important}.mx-96{margin-left:24rem!important;margin-right:24rem!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-px{margin-bottom:1px!important;margin-top:1px!important}.mx-px{margin-left:1px!important;margin-right:1px!important}.my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.mx-1\/2{margin-left:50%!important;margin-right:50%!important}.my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.mx-1\/4{margin-left:25%!important;margin-right:25%!important}.my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.mx-2\/4{margin-left:50%!important;margin-right:50%!important}.my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.mx-3\/4{margin-left:75%!important;margin-right:75%!important}.my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.mx-1\/5{margin-left:20%!important;margin-right:20%!important}.my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.mx-2\/5{margin-left:40%!important;margin-right:40%!important}.my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.mx-3\/5{margin-left:60%!important;margin-right:60%!important}.my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.mx-4\/5{margin-left:80%!important;margin-right:80%!important}.my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.mx-3\/6{margin-left:50%!important;margin-right:50%!important}.my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.mx-3\/12{margin-left:25%!important;margin-right:25%!important}.my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.mx-6\/12{margin-left:50%!important;margin-right:50%!important}.my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.mx-9\/12{margin-left:75%!important;margin-right:75%!important}.my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.my-full{margin-bottom:100%!important;margin-top:100%!important}.mx-full{margin-left:100%!important;margin-right:100%!important}.-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.-mx-px{margin-left:-1px!important;margin-right:-1px!important}.-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.-mx-full{margin-left:-100%!important;margin-right:-100%!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1{margin-left:.25rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mt-3{margin-top:.75rem!important}.mr-3{margin-right:.75rem!important}.mb-3{margin-bottom:.75rem!important}.ml-3{margin-left:.75rem!important}.mt-4{margin-top:1rem!important}.mr-4{margin-right:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4{margin-left:1rem!important}.mt-5{margin-top:1.25rem!important}.mr-5{margin-right:1.25rem!important}.mb-5{margin-bottom:1.25rem!important}.ml-5{margin-left:1.25rem!important}.mt-6{margin-top:1.5rem!important}.mr-6{margin-right:1.5rem!important}.mb-6{margin-bottom:1.5rem!important}.ml-6{margin-left:1.5rem!important}.mt-7{margin-top:1.75rem!important}.mr-7{margin-right:1.75rem!important}.mb-7{margin-bottom:1.75rem!important}.ml-7{margin-left:1.75rem!important}.mt-8{margin-top:2rem!important}.mr-8{margin-right:2rem!important}.mb-8{margin-bottom:2rem!important}.ml-8{margin-left:2rem!important}.mt-9{margin-top:2.25rem!important}.mr-9{margin-right:2.25rem!important}.mb-9{margin-bottom:2.25rem!important}.ml-9{margin-left:2.25rem!important}.mt-10{margin-top:2.5rem!important}.mr-10{margin-right:2.5rem!important}.mb-10{margin-bottom:2.5rem!important}.ml-10{margin-left:2.5rem!important}.mt-11{margin-top:2.75rem!important}.mr-11{margin-right:2.75rem!important}.mb-11{margin-bottom:2.75rem!important}.ml-11{margin-left:2.75rem!important}.mt-12{margin-top:3rem!important}.mr-12{margin-right:3rem!important}.mb-12{margin-bottom:3rem!important}.ml-12{margin-left:3rem!important}.mt-13{margin-top:3.25rem!important}.mr-13{margin-right:3.25rem!important}.mb-13{margin-bottom:3.25rem!important}.ml-13{margin-left:3.25rem!important}.mt-14{margin-top:3.5rem!important}.mr-14{margin-right:3.5rem!important}.mb-14{margin-bottom:3.5rem!important}.ml-14{margin-left:3.5rem!important}.mt-15{margin-top:3.75rem!important}.mr-15{margin-right:3.75rem!important}.mb-15{margin-bottom:3.75rem!important}.ml-15{margin-left:3.75rem!important}.mt-16{margin-top:4rem!important}.mr-16{margin-right:4rem!important}.mb-16{margin-bottom:4rem!important}.ml-16{margin-left:4rem!important}.mt-20{margin-top:5rem!important}.mr-20{margin-right:5rem!important}.mb-20{margin-bottom:5rem!important}.ml-20{margin-left:5rem!important}.mt-24{margin-top:6rem!important}.mr-24{margin-right:6rem!important}.mb-24{margin-bottom:6rem!important}.ml-24{margin-left:6rem!important}.mt-28{margin-top:7rem!important}.mr-28{margin-right:7rem!important}.mb-28{margin-bottom:7rem!important}.ml-28{margin-left:7rem!important}.mt-32{margin-top:8rem!important}.mr-32{margin-right:8rem!important}.mb-32{margin-bottom:8rem!important}.ml-32{margin-left:8rem!important}.mt-36{margin-top:9rem!important}.mr-36{margin-right:9rem!important}.mb-36{margin-bottom:9rem!important}.ml-36{margin-left:9rem!important}.mt-40{margin-top:10rem!important}.mr-40{margin-right:10rem!important}.mb-40{margin-bottom:10rem!important}.ml-40{margin-left:10rem!important}.mt-48{margin-top:12rem!important}.mr-48{margin-right:12rem!important}.mb-48{margin-bottom:12rem!important}.ml-48{margin-left:12rem!important}.mt-56{margin-top:14rem!important}.mr-56{margin-right:14rem!important}.mb-56{margin-bottom:14rem!important}.ml-56{margin-left:14rem!important}.mt-60{margin-top:15rem!important}.mr-60{margin-right:15rem!important}.mb-60{margin-bottom:15rem!important}.ml-60{margin-left:15rem!important}.mt-64{margin-top:16rem!important}.mr-64{margin-right:16rem!important}.mb-64{margin-bottom:16rem!important}.ml-64{margin-left:16rem!important}.mt-72{margin-top:18rem!important}.mr-72{margin-right:18rem!important}.mb-72{margin-bottom:18rem!important}.ml-72{margin-left:18rem!important}.mt-80{margin-top:20rem!important}.mr-80{margin-right:20rem!important}.mb-80{margin-bottom:20rem!important}.ml-80{margin-left:20rem!important}.mt-96{margin-top:24rem!important}.mr-96{margin-right:24rem!important}.mb-96{margin-bottom:24rem!important}.ml-96{margin-left:24rem!important}.mt-auto{margin-top:auto!important}.mr-auto{margin-right:auto!important}.mb-auto{margin-bottom:auto!important}.ml-auto{margin-left:auto!important}.mt-px{margin-top:1px!important}.mr-px{margin-right:1px!important}.mb-px{margin-bottom:1px!important}.ml-px{margin-left:1px!important}.mt-0\.5{margin-top:.125rem!important}.mr-0\.5{margin-right:.125rem!important}.mb-0\.5{margin-bottom:.125rem!important}.ml-0\.5{margin-left:.125rem!important}.mt-1\.5{margin-top:.375rem!important}.mr-1\.5{margin-right:.375rem!important}.mb-1\.5{margin-bottom:.375rem!important}.ml-1\.5{margin-left:.375rem!important}.mt-2\.5{margin-top:.625rem!important}.mr-2\.5{margin-right:.625rem!important}.mb-2\.5{margin-bottom:.625rem!important}.ml-2\.5{margin-left:.625rem!important}.mt-3\.5{margin-top:.875rem!important}.mr-3\.5{margin-right:.875rem!important}.mb-3\.5{margin-bottom:.875rem!important}.ml-3\.5{margin-left:.875rem!important}.mt-1\/2{margin-top:50%!important}.mr-1\/2{margin-right:50%!important}.mb-1\/2{margin-bottom:50%!important}.ml-1\/2{margin-left:50%!important}.mt-1\/3{margin-top:33.333333%!important}.mr-1\/3{margin-right:33.333333%!important}.mb-1\/3{margin-bottom:33.333333%!important}.ml-1\/3{margin-left:33.333333%!important}.mt-2\/3{margin-top:66.666667%!important}.mr-2\/3{margin-right:66.666667%!important}.mb-2\/3{margin-bottom:66.666667%!important}.ml-2\/3{margin-left:66.666667%!important}.mt-1\/4{margin-top:25%!important}.mr-1\/4{margin-right:25%!important}.mb-1\/4{margin-bottom:25%!important}.ml-1\/4{margin-left:25%!important}.mt-2\/4{margin-top:50%!important}.mr-2\/4{margin-right:50%!important}.mb-2\/4{margin-bottom:50%!important}.ml-2\/4{margin-left:50%!important}.mt-3\/4{margin-top:75%!important}.mr-3\/4{margin-right:75%!important}.mb-3\/4{margin-bottom:75%!important}.ml-3\/4{margin-left:75%!important}.mt-1\/5{margin-top:20%!important}.mr-1\/5{margin-right:20%!important}.mb-1\/5{margin-bottom:20%!important}.ml-1\/5{margin-left:20%!important}.mt-2\/5{margin-top:40%!important}.mr-2\/5{margin-right:40%!important}.mb-2\/5{margin-bottom:40%!important}.ml-2\/5{margin-left:40%!important}.mt-3\/5{margin-top:60%!important}.mr-3\/5{margin-right:60%!important}.mb-3\/5{margin-bottom:60%!important}.ml-3\/5{margin-left:60%!important}.mt-4\/5{margin-top:80%!important}.mr-4\/5{margin-right:80%!important}.mb-4\/5{margin-bottom:80%!important}.ml-4\/5{margin-left:80%!important}.mt-1\/6{margin-top:16.666667%!important}.mr-1\/6{margin-right:16.666667%!important}.mb-1\/6{margin-bottom:16.666667%!important}.ml-1\/6{margin-left:16.666667%!important}.mt-2\/6{margin-top:33.333333%!important}.mr-2\/6{margin-right:33.333333%!important}.mb-2\/6{margin-bottom:33.333333%!important}.ml-2\/6{margin-left:33.333333%!important}.mt-3\/6{margin-top:50%!important}.mr-3\/6{margin-right:50%!important}.mb-3\/6{margin-bottom:50%!important}.ml-3\/6{margin-left:50%!important}.mt-4\/6{margin-top:66.666667%!important}.mr-4\/6{margin-right:66.666667%!important}.mb-4\/6{margin-bottom:66.666667%!important}.ml-4\/6{margin-left:66.666667%!important}.mt-5\/6{margin-top:83.333333%!important}.mr-5\/6{margin-right:83.333333%!important}.mb-5\/6{margin-bottom:83.333333%!important}.ml-5\/6{margin-left:83.333333%!important}.mt-1\/12{margin-top:8.333333%!important}.mr-1\/12{margin-right:8.333333%!important}.mb-1\/12{margin-bottom:8.333333%!important}.ml-1\/12{margin-left:8.333333%!important}.mt-2\/12{margin-top:16.666667%!important}.mr-2\/12{margin-right:16.666667%!important}.mb-2\/12{margin-bottom:16.666667%!important}.ml-2\/12{margin-left:16.666667%!important}.mt-3\/12{margin-top:25%!important}.mr-3\/12{margin-right:25%!important}.mb-3\/12{margin-bottom:25%!important}.ml-3\/12{margin-left:25%!important}.mt-4\/12{margin-top:33.333333%!important}.mr-4\/12{margin-right:33.333333%!important}.mb-4\/12{margin-bottom:33.333333%!important}.ml-4\/12{margin-left:33.333333%!important}.mt-5\/12{margin-top:41.666667%!important}.mr-5\/12{margin-right:41.666667%!important}.mb-5\/12{margin-bottom:41.666667%!important}.ml-5\/12{margin-left:41.666667%!important}.mt-6\/12{margin-top:50%!important}.mr-6\/12{margin-right:50%!important}.mb-6\/12{margin-bottom:50%!important}.ml-6\/12{margin-left:50%!important}.mt-7\/12{margin-top:58.333333%!important}.mr-7\/12{margin-right:58.333333%!important}.mb-7\/12{margin-bottom:58.333333%!important}.ml-7\/12{margin-left:58.333333%!important}.mt-8\/12{margin-top:66.666667%!important}.mr-8\/12{margin-right:66.666667%!important}.mb-8\/12{margin-bottom:66.666667%!important}.ml-8\/12{margin-left:66.666667%!important}.mt-9\/12{margin-top:75%!important}.mr-9\/12{margin-right:75%!important}.mb-9\/12{margin-bottom:75%!important}.ml-9\/12{margin-left:75%!important}.mt-10\/12{margin-top:83.333333%!important}.mr-10\/12{margin-right:83.333333%!important}.mb-10\/12{margin-bottom:83.333333%!important}.ml-10\/12{margin-left:83.333333%!important}.mt-11\/12{margin-top:91.666667%!important}.mr-11\/12{margin-right:91.666667%!important}.mb-11\/12{margin-bottom:91.666667%!important}.ml-11\/12{margin-left:91.666667%!important}.mt-full{margin-top:100%!important}.mr-full{margin-right:100%!important}.mb-full{margin-bottom:100%!important}.ml-full{margin-left:100%!important}.-mt-1{margin-top:-.25rem!important}.-mr-1{margin-right:-.25rem!important}.-mb-1{margin-bottom:-.25rem!important}.-ml-1{margin-left:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mr-2{margin-right:-.5rem!important}.-mb-2{margin-bottom:-.5rem!important}.-ml-2{margin-left:-.5rem!important}.-mt-3{margin-top:-.75rem!important}.-mr-3{margin-right:-.75rem!important}.-mb-3{margin-bottom:-.75rem!important}.-ml-3{margin-left:-.75rem!important}.-mt-4{margin-top:-1rem!important}.-mr-4{margin-right:-1rem!important}.-mb-4{margin-bottom:-1rem!important}.-ml-4{margin-left:-1rem!important}.-mt-5{margin-top:-1.25rem!important}.-mr-5{margin-right:-1.25rem!important}.-mb-5{margin-bottom:-1.25rem!important}.-ml-5{margin-left:-1.25rem!important}.-mt-6{margin-top:-1.5rem!important}.-mr-6{margin-right:-1.5rem!important}.-mb-6{margin-bottom:-1.5rem!important}.-ml-6{margin-left:-1.5rem!important}.-mt-7{margin-top:-1.75rem!important}.-mr-7{margin-right:-1.75rem!important}.-mb-7{margin-bottom:-1.75rem!important}.-ml-7{margin-left:-1.75rem!important}.-mt-8{margin-top:-2rem!important}.-mr-8{margin-right:-2rem!important}.-mb-8{margin-bottom:-2rem!important}.-ml-8{margin-left:-2rem!important}.-mt-9{margin-top:-2.25rem!important}.-mr-9{margin-right:-2.25rem!important}.-mb-9{margin-bottom:-2.25rem!important}.-ml-9{margin-left:-2.25rem!important}.-mt-10{margin-top:-2.5rem!important}.-mr-10{margin-right:-2.5rem!important}.-mb-10{margin-bottom:-2.5rem!important}.-ml-10{margin-left:-2.5rem!important}.-mt-11{margin-top:-2.75rem!important}.-mr-11{margin-right:-2.75rem!important}.-mb-11{margin-bottom:-2.75rem!important}.-ml-11{margin-left:-2.75rem!important}.-mt-12{margin-top:-3rem!important}.-mr-12{margin-right:-3rem!important}.-mb-12{margin-bottom:-3rem!important}.-ml-12{margin-left:-3rem!important}.-mt-13{margin-top:-3.25rem!important}.-mr-13{margin-right:-3.25rem!important}.-mb-13{margin-bottom:-3.25rem!important}.-ml-13{margin-left:-3.25rem!important}.-mt-14{margin-top:-3.5rem!important}.-mr-14{margin-right:-3.5rem!important}.-mb-14{margin-bottom:-3.5rem!important}.-ml-14{margin-left:-3.5rem!important}.-mt-15{margin-top:-3.75rem!important}.-mr-15{margin-right:-3.75rem!important}.-mb-15{margin-bottom:-3.75rem!important}.-ml-15{margin-left:-3.75rem!important}.-mt-16{margin-top:-4rem!important}.-mr-16{margin-right:-4rem!important}.-mb-16{margin-bottom:-4rem!important}.-ml-16{margin-left:-4rem!important}.-mt-20{margin-top:-5rem!important}.-mr-20{margin-right:-5rem!important}.-mb-20{margin-bottom:-5rem!important}.-ml-20{margin-left:-5rem!important}.-mt-24{margin-top:-6rem!important}.-mr-24{margin-right:-6rem!important}.-mb-24{margin-bottom:-6rem!important}.-ml-24{margin-left:-6rem!important}.-mt-28{margin-top:-7rem!important}.-mr-28{margin-right:-7rem!important}.-mb-28{margin-bottom:-7rem!important}.-ml-28{margin-left:-7rem!important}.-mt-32{margin-top:-8rem!important}.-mr-32{margin-right:-8rem!important}.-mb-32{margin-bottom:-8rem!important}.-ml-32{margin-left:-8rem!important}.-mt-36{margin-top:-9rem!important}.-mr-36{margin-right:-9rem!important}.-mb-36{margin-bottom:-9rem!important}.-ml-36{margin-left:-9rem!important}.-mt-40{margin-top:-10rem!important}.-mr-40{margin-right:-10rem!important}.-mb-40{margin-bottom:-10rem!important}.-ml-40{margin-left:-10rem!important}.-mt-48{margin-top:-12rem!important}.-mr-48{margin-right:-12rem!important}.-mb-48{margin-bottom:-12rem!important}.-ml-48{margin-left:-12rem!important}.-mt-56{margin-top:-14rem!important}.-mr-56{margin-right:-14rem!important}.-mb-56{margin-bottom:-14rem!important}.-ml-56{margin-left:-14rem!important}.-mt-60{margin-top:-15rem!important}.-mr-60{margin-right:-15rem!important}.-mb-60{margin-bottom:-15rem!important}.-ml-60{margin-left:-15rem!important}.-mt-64{margin-top:-16rem!important}.-mr-64{margin-right:-16rem!important}.-mb-64{margin-bottom:-16rem!important}.-ml-64{margin-left:-16rem!important}.-mt-72{margin-top:-18rem!important}.-mr-72{margin-right:-18rem!important}.-mb-72{margin-bottom:-18rem!important}.-ml-72{margin-left:-18rem!important}.-mt-80{margin-top:-20rem!important}.-mr-80{margin-right:-20rem!important}.-mb-80{margin-bottom:-20rem!important}.-ml-80{margin-left:-20rem!important}.-mt-96{margin-top:-24rem!important}.-mr-96{margin-right:-24rem!important}.-mb-96{margin-bottom:-24rem!important}.-ml-96{margin-left:-24rem!important}.-mt-px{margin-top:-1px!important}.-mr-px{margin-right:-1px!important}.-mb-px{margin-bottom:-1px!important}.-ml-px{margin-left:-1px!important}.-mt-0\.5{margin-top:-.125rem!important}.-mr-0\.5{margin-right:-.125rem!important}.-mb-0\.5{margin-bottom:-.125rem!important}.-ml-0\.5{margin-left:-.125rem!important}.-mt-1\.5{margin-top:-.375rem!important}.-mr-1\.5{margin-right:-.375rem!important}.-mb-1\.5{margin-bottom:-.375rem!important}.-ml-1\.5{margin-left:-.375rem!important}.-mt-2\.5{margin-top:-.625rem!important}.-mr-2\.5{margin-right:-.625rem!important}.-mb-2\.5{margin-bottom:-.625rem!important}.-ml-2\.5{margin-left:-.625rem!important}.-mt-3\.5{margin-top:-.875rem!important}.-mr-3\.5{margin-right:-.875rem!important}.-mb-3\.5{margin-bottom:-.875rem!important}.-ml-3\.5{margin-left:-.875rem!important}.-mt-1\/2{margin-top:-50%!important}.-mr-1\/2{margin-right:-50%!important}.-mb-1\/2{margin-bottom:-50%!important}.-ml-1\/2{margin-left:-50%!important}.-mt-1\/3{margin-top:-33.33333%!important}.-mr-1\/3{margin-right:-33.33333%!important}.-mb-1\/3{margin-bottom:-33.33333%!important}.-ml-1\/3{margin-left:-33.33333%!important}.-mt-2\/3{margin-top:-66.66667%!important}.-mr-2\/3{margin-right:-66.66667%!important}.-mb-2\/3{margin-bottom:-66.66667%!important}.-ml-2\/3{margin-left:-66.66667%!important}.-mt-1\/4{margin-top:-25%!important}.-mr-1\/4{margin-right:-25%!important}.-mb-1\/4{margin-bottom:-25%!important}.-ml-1\/4{margin-left:-25%!important}.-mt-2\/4{margin-top:-50%!important}.-mr-2\/4{margin-right:-50%!important}.-mb-2\/4{margin-bottom:-50%!important}.-ml-2\/4{margin-left:-50%!important}.-mt-3\/4{margin-top:-75%!important}.-mr-3\/4{margin-right:-75%!important}.-mb-3\/4{margin-bottom:-75%!important}.-ml-3\/4{margin-left:-75%!important}.-mt-1\/5{margin-top:-20%!important}.-mr-1\/5{margin-right:-20%!important}.-mb-1\/5{margin-bottom:-20%!important}.-ml-1\/5{margin-left:-20%!important}.-mt-2\/5{margin-top:-40%!important}.-mr-2\/5{margin-right:-40%!important}.-mb-2\/5{margin-bottom:-40%!important}.-ml-2\/5{margin-left:-40%!important}.-mt-3\/5{margin-top:-60%!important}.-mr-3\/5{margin-right:-60%!important}.-mb-3\/5{margin-bottom:-60%!important}.-ml-3\/5{margin-left:-60%!important}.-mt-4\/5{margin-top:-80%!important}.-mr-4\/5{margin-right:-80%!important}.-mb-4\/5{margin-bottom:-80%!important}.-ml-4\/5{margin-left:-80%!important}.-mt-1\/6{margin-top:-16.66667%!important}.-mr-1\/6{margin-right:-16.66667%!important}.-mb-1\/6{margin-bottom:-16.66667%!important}.-ml-1\/6{margin-left:-16.66667%!important}.-mt-2\/6{margin-top:-33.33333%!important}.-mr-2\/6{margin-right:-33.33333%!important}.-mb-2\/6{margin-bottom:-33.33333%!important}.-ml-2\/6{margin-left:-33.33333%!important}.-mt-3\/6{margin-top:-50%!important}.-mr-3\/6{margin-right:-50%!important}.-mb-3\/6{margin-bottom:-50%!important}.-ml-3\/6{margin-left:-50%!important}.-mt-4\/6{margin-top:-66.66667%!important}.-mr-4\/6{margin-right:-66.66667%!important}.-mb-4\/6{margin-bottom:-66.66667%!important}.-ml-4\/6{margin-left:-66.66667%!important}.-mt-5\/6{margin-top:-83.33333%!important}.-mr-5\/6{margin-right:-83.33333%!important}.-mb-5\/6{margin-bottom:-83.33333%!important}.-ml-5\/6{margin-left:-83.33333%!important}.-mt-1\/12{margin-top:-8.33333%!important}.-mr-1\/12{margin-right:-8.33333%!important}.-mb-1\/12{margin-bottom:-8.33333%!important}.-ml-1\/12{margin-left:-8.33333%!important}.-mt-2\/12{margin-top:-16.66667%!important}.-mr-2\/12{margin-right:-16.66667%!important}.-mb-2\/12{margin-bottom:-16.66667%!important}.-ml-2\/12{margin-left:-16.66667%!important}.-mt-3\/12{margin-top:-25%!important}.-mr-3\/12{margin-right:-25%!important}.-mb-3\/12{margin-bottom:-25%!important}.-ml-3\/12{margin-left:-25%!important}.-mt-4\/12{margin-top:-33.33333%!important}.-mr-4\/12{margin-right:-33.33333%!important}.-mb-4\/12{margin-bottom:-33.33333%!important}.-ml-4\/12{margin-left:-33.33333%!important}.-mt-5\/12{margin-top:-41.66667%!important}.-mr-5\/12{margin-right:-41.66667%!important}.-mb-5\/12{margin-bottom:-41.66667%!important}.-ml-5\/12{margin-left:-41.66667%!important}.-mt-6\/12{margin-top:-50%!important}.-mr-6\/12{margin-right:-50%!important}.-mb-6\/12{margin-bottom:-50%!important}.-ml-6\/12{margin-left:-50%!important}.-mt-7\/12{margin-top:-58.33333%!important}.-mr-7\/12{margin-right:-58.33333%!important}.-mb-7\/12{margin-bottom:-58.33333%!important}.-ml-7\/12{margin-left:-58.33333%!important}.-mt-8\/12{margin-top:-66.66667%!important}.-mr-8\/12{margin-right:-66.66667%!important}.-mb-8\/12{margin-bottom:-66.66667%!important}.-ml-8\/12{margin-left:-66.66667%!important}.-mt-9\/12{margin-top:-75%!important}.-mr-9\/12{margin-right:-75%!important}.-mb-9\/12{margin-bottom:-75%!important}.-ml-9\/12{margin-left:-75%!important}.-mt-10\/12{margin-top:-83.33333%!important}.-mr-10\/12{margin-right:-83.33333%!important}.-mb-10\/12{margin-bottom:-83.33333%!important}.-ml-10\/12{margin-left:-83.33333%!important}.-mt-11\/12{margin-top:-91.66667%!important}.-mr-11\/12{margin-right:-91.66667%!important}.-mb-11\/12{margin-bottom:-91.66667%!important}.-ml-11\/12{margin-left:-91.66667%!important}.-mt-full{margin-top:-100%!important}.-mr-full{margin-right:-100%!important}.-mb-full{margin-bottom:-100%!important}.-ml-full{margin-left:-100%!important}[dir=ltr] .ltr\:m-0{margin:0!important}[dir=ltr] .ltr\:m-1{margin:.25rem!important}[dir=ltr] .ltr\:m-2{margin:.5rem!important}[dir=ltr] .ltr\:m-3{margin:.75rem!important}[dir=ltr] .ltr\:m-4{margin:1rem!important}[dir=ltr] .ltr\:m-5{margin:1.25rem!important}[dir=ltr] .ltr\:m-6{margin:1.5rem!important}[dir=ltr] .ltr\:m-7{margin:1.75rem!important}[dir=ltr] .ltr\:m-8{margin:2rem!important}[dir=ltr] .ltr\:m-9{margin:2.25rem!important}[dir=ltr] .ltr\:m-10{margin:2.5rem!important}[dir=ltr] .ltr\:m-11{margin:2.75rem!important}[dir=ltr] .ltr\:m-12{margin:3rem!important}[dir=ltr] .ltr\:m-13{margin:3.25rem!important}[dir=ltr] .ltr\:m-14{margin:3.5rem!important}[dir=ltr] .ltr\:m-15{margin:3.75rem!important}[dir=ltr] .ltr\:m-16{margin:4rem!important}[dir=ltr] .ltr\:m-20{margin:5rem!important}[dir=ltr] .ltr\:m-24{margin:6rem!important}[dir=ltr] .ltr\:m-28{margin:7rem!important}[dir=ltr] .ltr\:m-32{margin:8rem!important}[dir=ltr] .ltr\:m-36{margin:9rem!important}[dir=ltr] .ltr\:m-40{margin:10rem!important}[dir=ltr] .ltr\:m-48{margin:12rem!important}[dir=ltr] .ltr\:m-56{margin:14rem!important}[dir=ltr] .ltr\:m-60{margin:15rem!important}[dir=ltr] .ltr\:m-64{margin:16rem!important}[dir=ltr] .ltr\:m-72{margin:18rem!important}[dir=ltr] .ltr\:m-80{margin:20rem!important}[dir=ltr] .ltr\:m-96{margin:24rem!important}[dir=ltr] .ltr\:m-auto{margin:auto!important}[dir=ltr] .ltr\:m-px{margin:1px!important}[dir=ltr] .ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .ltr\:m-1\/2{margin:50%!important}[dir=ltr] .ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .ltr\:m-1\/4{margin:25%!important}[dir=ltr] .ltr\:m-2\/4{margin:50%!important}[dir=ltr] .ltr\:m-3\/4{margin:75%!important}[dir=ltr] .ltr\:m-1\/5{margin:20%!important}[dir=ltr] .ltr\:m-2\/5{margin:40%!important}[dir=ltr] .ltr\:m-3\/5{margin:60%!important}[dir=ltr] .ltr\:m-4\/5{margin:80%!important}[dir=ltr] .ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .ltr\:m-3\/6{margin:50%!important}[dir=ltr] .ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .ltr\:m-3\/12{margin:25%!important}[dir=ltr] .ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .ltr\:m-6\/12{margin:50%!important}[dir=ltr] .ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .ltr\:m-9\/12{margin:75%!important}[dir=ltr] .ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .ltr\:m-full{margin:100%!important}[dir=ltr] .ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .ltr\:-m-4{margin:-1rem!important}[dir=ltr] .ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .ltr\:-m-8{margin:-2rem!important}[dir=ltr] .ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .ltr\:-m-12{margin:-3rem!important}[dir=ltr] .ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .ltr\:-m-16{margin:-4rem!important}[dir=ltr] .ltr\:-m-20{margin:-5rem!important}[dir=ltr] .ltr\:-m-24{margin:-6rem!important}[dir=ltr] .ltr\:-m-28{margin:-7rem!important}[dir=ltr] .ltr\:-m-32{margin:-8rem!important}[dir=ltr] .ltr\:-m-36{margin:-9rem!important}[dir=ltr] .ltr\:-m-40{margin:-10rem!important}[dir=ltr] .ltr\:-m-48{margin:-12rem!important}[dir=ltr] .ltr\:-m-56{margin:-14rem!important}[dir=ltr] .ltr\:-m-60{margin:-15rem!important}[dir=ltr] .ltr\:-m-64{margin:-16rem!important}[dir=ltr] .ltr\:-m-72{margin:-18rem!important}[dir=ltr] .ltr\:-m-80{margin:-20rem!important}[dir=ltr] .ltr\:-m-96{margin:-24rem!important}[dir=ltr] .ltr\:-m-px{margin:-1px!important}[dir=ltr] .ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .ltr\:-m-full{margin:-100%!important}[dir=ltr] .ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .ltr\:mt-0{margin-top:0!important}[dir=ltr] .ltr\:mr-0{margin-right:0!important}[dir=ltr] .ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .ltr\:ml-0{margin-left:0!important}[dir=ltr] .ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .ltr\:mt-px{margin-top:1px!important}[dir=ltr] .ltr\:mr-px{margin-right:1px!important}[dir=ltr] .ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .ltr\:ml-px{margin-left:1px!important}[dir=ltr] .ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .ltr\:mt-full{margin-top:100%!important}[dir=ltr] .ltr\:mr-full{margin-right:100%!important}[dir=ltr] .ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .ltr\:ml-full{margin-left:100%!important}[dir=ltr] .ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .rtl\:m-0{margin:0!important}[dir=rtl] .rtl\:m-1{margin:.25rem!important}[dir=rtl] .rtl\:m-2{margin:.5rem!important}[dir=rtl] .rtl\:m-3{margin:.75rem!important}[dir=rtl] .rtl\:m-4{margin:1rem!important}[dir=rtl] .rtl\:m-5{margin:1.25rem!important}[dir=rtl] .rtl\:m-6{margin:1.5rem!important}[dir=rtl] .rtl\:m-7{margin:1.75rem!important}[dir=rtl] .rtl\:m-8{margin:2rem!important}[dir=rtl] .rtl\:m-9{margin:2.25rem!important}[dir=rtl] .rtl\:m-10{margin:2.5rem!important}[dir=rtl] .rtl\:m-11{margin:2.75rem!important}[dir=rtl] .rtl\:m-12{margin:3rem!important}[dir=rtl] .rtl\:m-13{margin:3.25rem!important}[dir=rtl] .rtl\:m-14{margin:3.5rem!important}[dir=rtl] .rtl\:m-15{margin:3.75rem!important}[dir=rtl] .rtl\:m-16{margin:4rem!important}[dir=rtl] .rtl\:m-20{margin:5rem!important}[dir=rtl] .rtl\:m-24{margin:6rem!important}[dir=rtl] .rtl\:m-28{margin:7rem!important}[dir=rtl] .rtl\:m-32{margin:8rem!important}[dir=rtl] .rtl\:m-36{margin:9rem!important}[dir=rtl] .rtl\:m-40{margin:10rem!important}[dir=rtl] .rtl\:m-48{margin:12rem!important}[dir=rtl] .rtl\:m-56{margin:14rem!important}[dir=rtl] .rtl\:m-60{margin:15rem!important}[dir=rtl] .rtl\:m-64{margin:16rem!important}[dir=rtl] .rtl\:m-72{margin:18rem!important}[dir=rtl] .rtl\:m-80{margin:20rem!important}[dir=rtl] .rtl\:m-96{margin:24rem!important}[dir=rtl] .rtl\:m-auto{margin:auto!important}[dir=rtl] .rtl\:m-px{margin:1px!important}[dir=rtl] .rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .rtl\:m-1\/2{margin:50%!important}[dir=rtl] .rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .rtl\:m-1\/4{margin:25%!important}[dir=rtl] .rtl\:m-2\/4{margin:50%!important}[dir=rtl] .rtl\:m-3\/4{margin:75%!important}[dir=rtl] .rtl\:m-1\/5{margin:20%!important}[dir=rtl] .rtl\:m-2\/5{margin:40%!important}[dir=rtl] .rtl\:m-3\/5{margin:60%!important}[dir=rtl] .rtl\:m-4\/5{margin:80%!important}[dir=rtl] .rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .rtl\:m-3\/6{margin:50%!important}[dir=rtl] .rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .rtl\:m-3\/12{margin:25%!important}[dir=rtl] .rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .rtl\:m-6\/12{margin:50%!important}[dir=rtl] .rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .rtl\:m-9\/12{margin:75%!important}[dir=rtl] .rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .rtl\:m-full{margin:100%!important}[dir=rtl] .rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .rtl\:-m-4{margin:-1rem!important}[dir=rtl] .rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .rtl\:-m-8{margin:-2rem!important}[dir=rtl] .rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .rtl\:-m-12{margin:-3rem!important}[dir=rtl] .rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .rtl\:-m-16{margin:-4rem!important}[dir=rtl] .rtl\:-m-20{margin:-5rem!important}[dir=rtl] .rtl\:-m-24{margin:-6rem!important}[dir=rtl] .rtl\:-m-28{margin:-7rem!important}[dir=rtl] .rtl\:-m-32{margin:-8rem!important}[dir=rtl] .rtl\:-m-36{margin:-9rem!important}[dir=rtl] .rtl\:-m-40{margin:-10rem!important}[dir=rtl] .rtl\:-m-48{margin:-12rem!important}[dir=rtl] .rtl\:-m-56{margin:-14rem!important}[dir=rtl] .rtl\:-m-60{margin:-15rem!important}[dir=rtl] .rtl\:-m-64{margin:-16rem!important}[dir=rtl] .rtl\:-m-72{margin:-18rem!important}[dir=rtl] .rtl\:-m-80{margin:-20rem!important}[dir=rtl] .rtl\:-m-96{margin:-24rem!important}[dir=rtl] .rtl\:-m-px{margin:-1px!important}[dir=rtl] .rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .rtl\:-m-full{margin:-100%!important}[dir=rtl] .rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .rtl\:mt-0{margin-top:0!important}[dir=rtl] .rtl\:mr-0{margin-right:0!important}[dir=rtl] .rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .rtl\:ml-0{margin-left:0!important}[dir=rtl] .rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .rtl\:mt-px{margin-top:1px!important}[dir=rtl] .rtl\:mr-px{margin-right:1px!important}[dir=rtl] .rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .rtl\:ml-px{margin-left:1px!important}[dir=rtl] .rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .rtl\:mt-full{margin-top:100%!important}[dir=rtl] .rtl\:mr-full{margin-right:100%!important}[dir=rtl] .rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .rtl\:ml-full{margin-left:100%!important}[dir=rtl] .rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .rtl\:-ml-full{margin-left:-100%!important}.max-h-0{max-height:0!important}.max-h-1{max-height:.25rem!important}.max-h-2{max-height:.5rem!important}.max-h-3{max-height:.75rem!important}.max-h-4{max-height:1rem!important}.max-h-5{max-height:1.25rem!important}.max-h-6{max-height:1.5rem!important}.max-h-7{max-height:1.75rem!important}.max-h-8{max-height:2rem!important}.max-h-9{max-height:2.25rem!important}.max-h-10{max-height:2.5rem!important}.max-h-11{max-height:2.75rem!important}.max-h-12{max-height:3rem!important}.max-h-13{max-height:3.25rem!important}.max-h-14{max-height:3.5rem!important}.max-h-15{max-height:3.75rem!important}.max-h-16{max-height:4rem!important}.max-h-20{max-height:5rem!important}.max-h-24{max-height:6rem!important}.max-h-28{max-height:7rem!important}.max-h-32{max-height:8rem!important}.max-h-36{max-height:9rem!important}.max-h-40{max-height:10rem!important}.max-h-48{max-height:12rem!important}.max-h-56{max-height:14rem!important}.max-h-60{max-height:15rem!important}.max-h-64{max-height:16rem!important}.max-h-72{max-height:18rem!important}.max-h-80{max-height:20rem!important}.max-h-96{max-height:24rem!important}.max-h-screen{max-height:100vh!important}.max-h-px{max-height:1px!important}.max-h-0\.5{max-height:.125rem!important}.max-h-1\.5{max-height:.375rem!important}.max-h-2\.5{max-height:.625rem!important}.max-h-3\.5{max-height:.875rem!important}.max-h-1\/2{max-height:50%!important}.max-h-1\/3{max-height:33.333333%!important}.max-h-2\/3{max-height:66.666667%!important}.max-h-1\/4{max-height:25%!important}.max-h-2\/4{max-height:50%!important}.max-h-3\/4{max-height:75%!important}.max-h-1\/5{max-height:20%!important}.max-h-2\/5{max-height:40%!important}.max-h-3\/5{max-height:60%!important}.max-h-4\/5{max-height:80%!important}.max-h-1\/6{max-height:16.666667%!important}.max-h-2\/6{max-height:33.333333%!important}.max-h-3\/6{max-height:50%!important}.max-h-4\/6{max-height:66.666667%!important}.max-h-5\/6{max-height:83.333333%!important}.max-h-1\/12{max-height:8.333333%!important}.max-h-2\/12{max-height:16.666667%!important}.max-h-3\/12{max-height:25%!important}.max-h-4\/12{max-height:33.333333%!important}.max-h-5\/12{max-height:41.666667%!important}.max-h-6\/12{max-height:50%!important}.max-h-7\/12{max-height:58.333333%!important}.max-h-8\/12{max-height:66.666667%!important}.max-h-9\/12{max-height:75%!important}.max-h-10\/12{max-height:83.333333%!important}.max-h-11\/12{max-height:91.666667%!important}.max-h-full{max-height:100%!important}.max-h-6xl{max-height:6rem!important}.max-w-none{max-width:none!important}.max-w-xs{max-width:20rem!important}.max-w-sm{max-width:24rem!important}.max-w-md{max-width:28rem!important}.max-w-lg{max-width:32rem!important}.max-w-xl{max-width:36rem!important}.max-w-2xl{max-width:42rem!important}.max-w-3xl{max-width:48rem!important}.max-w-4xl{max-width:56rem!important}.max-w-5xl{max-width:64rem!important}.max-w-6xl{max-width:72rem!important}.max-w-7xl{max-width:80rem!important}.max-w-full{max-width:100%!important}.max-w-screen-sm{max-width:600px!important}.max-w-screen-md{max-width:1024px!important}.max-w-screen-lg{max-width:1280px!important}.max-w-screen-xl{max-width:1536px!important}.max-w-screen-2xl{max-width:1400px!important}.max-w-screen-3xl{max-width:1800px!important}.max-w-screen-4xl{max-width:2200px!important}.min-h-0{min-height:0!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}.min-h-half{min-height:50vh!important}.min-w-0{min-width:0!important}.min-w-full{min-width:100%!important}.object-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-none{-o-object-fit:none!important;object-fit:none!important}.object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.object-center{-o-object-position:center!important;object-position:center!important}.object-left{-o-object-position:left!important;object-position:left!important}.object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.object-left-top{-o-object-position:left top!important;object-position:left top!important}.object-right{-o-object-position:right!important;object-position:right!important}.object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.object-right-top{-o-object-position:right top!important;object-position:right top!important}.object-top{-o-object-position:top!important;object-position:top!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.hover\:opacity-0:hover{opacity:0!important}.hover\:opacity-25:hover{opacity:.25!important}.hover\:opacity-50:hover{opacity:.5!important}.hover\:opacity-75:hover{opacity:.75!important}.hover\:opacity-100:hover{opacity:1!important}.focus\:opacity-0:focus{opacity:0!important}.focus\:opacity-25:focus{opacity:.25!important}.focus\:opacity-50:focus{opacity:.5!important}.focus\:opacity-75:focus{opacity:.75!important}.focus\:opacity-100:focus{opacity:1!important}.outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-y-auto{overflow-y:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-y-visible{overflow-y:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-scroll{overflow-y:scroll!important}.scrolling-touch{-webkit-overflow-scrolling:touch!important}.scrolling-auto{-webkit-overflow-scrolling:auto!important}.overscroll-auto{overscroll-behavior:auto!important}.overscroll-contain{overscroll-behavior:contain!important}.overscroll-none{overscroll-behavior:none!important}.overscroll-y-auto{overscroll-behavior-y:auto!important}.overscroll-y-contain{overscroll-behavior-y:contain!important}.overscroll-y-none{overscroll-behavior-y:none!important}.overscroll-x-auto{overscroll-behavior-x:auto!important}.overscroll-x-contain{overscroll-behavior-x:contain!important}.overscroll-x-none{overscroll-behavior-x:none!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:.75rem!important}.p-4{padding:1rem!important}.p-5{padding:1.25rem!important}.p-6{padding:1.5rem!important}.p-7{padding:1.75rem!important}.p-8{padding:2rem!important}.p-9{padding:2.25rem!important}.p-10{padding:2.5rem!important}.p-11{padding:2.75rem!important}.p-12{padding:3rem!important}.p-13{padding:3.25rem!important}.p-14{padding:3.5rem!important}.p-15{padding:3.75rem!important}.p-16{padding:4rem!important}.p-20{padding:5rem!important}.p-24{padding:6rem!important}.p-28{padding:7rem!important}.p-32{padding:8rem!important}.p-36{padding:9rem!important}.p-40{padding:10rem!important}.p-48{padding:12rem!important}.p-56{padding:14rem!important}.p-60{padding:15rem!important}.p-64{padding:16rem!important}.p-72{padding:18rem!important}.p-80{padding:20rem!important}.p-96{padding:24rem!important}.p-px{padding:1px!important}.p-0\.5{padding:.125rem!important}.p-1\.5{padding:.375rem!important}.p-2\.5{padding:.625rem!important}.p-3\.5{padding:.875rem!important}.p-1\/2{padding:50%!important}.p-1\/3{padding:33.333333%!important}.p-2\/3{padding:66.666667%!important}.p-1\/4{padding:25%!important}.p-2\/4{padding:50%!important}.p-3\/4{padding:75%!important}.p-1\/5{padding:20%!important}.p-2\/5{padding:40%!important}.p-3\/5{padding:60%!important}.p-4\/5{padding:80%!important}.p-1\/6{padding:16.666667%!important}.p-2\/6{padding:33.333333%!important}.p-3\/6{padding:50%!important}.p-4\/6{padding:66.666667%!important}.p-5\/6{padding:83.333333%!important}.p-1\/12{padding:8.333333%!important}.p-2\/12{padding:16.666667%!important}.p-3\/12{padding:25%!important}.p-4\/12{padding:33.333333%!important}.p-5\/12{padding:41.666667%!important}.p-6\/12{padding:50%!important}.p-7\/12{padding:58.333333%!important}.p-8\/12{padding:66.666667%!important}.p-9\/12{padding:75%!important}.p-10\/12{padding:83.333333%!important}.p-11\/12{padding:91.666667%!important}.p-full{padding:100%!important}.py-0{padding-bottom:0!important;padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-4{padding-bottom:1rem!important;padding-top:1rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.py-8{padding-bottom:2rem!important;padding-top:2rem!important}.px-8{padding-left:2rem!important;padding-right:2rem!important}.py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.py-12{padding-bottom:3rem!important;padding-top:3rem!important}.px-12{padding-left:3rem!important;padding-right:3rem!important}.py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.py-16{padding-bottom:4rem!important;padding-top:4rem!important}.px-16{padding-left:4rem!important;padding-right:4rem!important}.py-20{padding-bottom:5rem!important;padding-top:5rem!important}.px-20{padding-left:5rem!important;padding-right:5rem!important}.py-24{padding-bottom:6rem!important;padding-top:6rem!important}.px-24{padding-left:6rem!important;padding-right:6rem!important}.py-28{padding-bottom:7rem!important;padding-top:7rem!important}.px-28{padding-left:7rem!important;padding-right:7rem!important}.py-32{padding-bottom:8rem!important;padding-top:8rem!important}.px-32{padding-left:8rem!important;padding-right:8rem!important}.py-36{padding-bottom:9rem!important;padding-top:9rem!important}.px-36{padding-left:9rem!important;padding-right:9rem!important}.py-40{padding-bottom:10rem!important;padding-top:10rem!important}.px-40{padding-left:10rem!important;padding-right:10rem!important}.py-48{padding-bottom:12rem!important;padding-top:12rem!important}.px-48{padding-left:12rem!important;padding-right:12rem!important}.py-56{padding-bottom:14rem!important;padding-top:14rem!important}.px-56{padding-left:14rem!important;padding-right:14rem!important}.py-60{padding-bottom:15rem!important;padding-top:15rem!important}.px-60{padding-left:15rem!important;padding-right:15rem!important}.py-64{padding-bottom:16rem!important;padding-top:16rem!important}.px-64{padding-left:16rem!important;padding-right:16rem!important}.py-72{padding-bottom:18rem!important;padding-top:18rem!important}.px-72{padding-left:18rem!important;padding-right:18rem!important}.py-80{padding-bottom:20rem!important;padding-top:20rem!important}.px-80{padding-left:20rem!important;padding-right:20rem!important}.py-96{padding-bottom:24rem!important;padding-top:24rem!important}.px-96{padding-left:24rem!important;padding-right:24rem!important}.py-px{padding-bottom:1px!important;padding-top:1px!important}.px-px{padding-left:1px!important;padding-right:1px!important}.py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.px-1\/2{padding-left:50%!important;padding-right:50%!important}.py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.px-1\/4{padding-left:25%!important;padding-right:25%!important}.py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.px-2\/4{padding-left:50%!important;padding-right:50%!important}.py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.px-3\/4{padding-left:75%!important;padding-right:75%!important}.py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.px-1\/5{padding-left:20%!important;padding-right:20%!important}.py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.px-2\/5{padding-left:40%!important;padding-right:40%!important}.py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.px-3\/5{padding-left:60%!important;padding-right:60%!important}.py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.px-4\/5{padding-left:80%!important;padding-right:80%!important}.py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.px-3\/6{padding-left:50%!important;padding-right:50%!important}.py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.px-3\/12{padding-left:25%!important;padding-right:25%!important}.py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.px-6\/12{padding-left:50%!important;padding-right:50%!important}.py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.px-9\/12{padding-left:75%!important;padding-right:75%!important}.py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.py-full{padding-bottom:100%!important;padding-top:100%!important}.px-full{padding-left:100%!important;padding-right:100%!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2{padding-left:.5rem!important}.pt-3{padding-top:.75rem!important}.pr-3{padding-right:.75rem!important}.pb-3{padding-bottom:.75rem!important}.pl-3{padding-left:.75rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pl-4{padding-left:1rem!important}.pt-5{padding-top:1.25rem!important}.pr-5{padding-right:1.25rem!important}.pb-5{padding-bottom:1.25rem!important}.pl-5{padding-left:1.25rem!important}.pt-6{padding-top:1.5rem!important}.pr-6{padding-right:1.5rem!important}.pb-6{padding-bottom:1.5rem!important}.pl-6{padding-left:1.5rem!important}.pt-7{padding-top:1.75rem!important}.pr-7{padding-right:1.75rem!important}.pb-7{padding-bottom:1.75rem!important}.pl-7{padding-left:1.75rem!important}.pt-8{padding-top:2rem!important}.pr-8{padding-right:2rem!important}.pb-8{padding-bottom:2rem!important}.pl-8{padding-left:2rem!important}.pt-9{padding-top:2.25rem!important}.pr-9{padding-right:2.25rem!important}.pb-9{padding-bottom:2.25rem!important}.pl-9{padding-left:2.25rem!important}.pt-10{padding-top:2.5rem!important}.pr-10{padding-right:2.5rem!important}.pb-10{padding-bottom:2.5rem!important}.pl-10{padding-left:2.5rem!important}.pt-11{padding-top:2.75rem!important}.pr-11{padding-right:2.75rem!important}.pb-11{padding-bottom:2.75rem!important}.pl-11{padding-left:2.75rem!important}.pt-12{padding-top:3rem!important}.pr-12{padding-right:3rem!important}.pb-12{padding-bottom:3rem!important}.pl-12{padding-left:3rem!important}.pt-13{padding-top:3.25rem!important}.pr-13{padding-right:3.25rem!important}.pb-13{padding-bottom:3.25rem!important}.pl-13{padding-left:3.25rem!important}.pt-14{padding-top:3.5rem!important}.pr-14{padding-right:3.5rem!important}.pb-14{padding-bottom:3.5rem!important}.pl-14{padding-left:3.5rem!important}.pt-15{padding-top:3.75rem!important}.pr-15{padding-right:3.75rem!important}.pb-15{padding-bottom:3.75rem!important}.pl-15{padding-left:3.75rem!important}.pt-16{padding-top:4rem!important}.pr-16{padding-right:4rem!important}.pb-16{padding-bottom:4rem!important}.pl-16{padding-left:4rem!important}.pt-20{padding-top:5rem!important}.pr-20{padding-right:5rem!important}.pb-20{padding-bottom:5rem!important}.pl-20{padding-left:5rem!important}.pt-24{padding-top:6rem!important}.pr-24{padding-right:6rem!important}.pb-24{padding-bottom:6rem!important}.pl-24{padding-left:6rem!important}.pt-28{padding-top:7rem!important}.pr-28{padding-right:7rem!important}.pb-28{padding-bottom:7rem!important}.pl-28{padding-left:7rem!important}.pt-32{padding-top:8rem!important}.pr-32{padding-right:8rem!important}.pb-32{padding-bottom:8rem!important}.pl-32{padding-left:8rem!important}.pt-36{padding-top:9rem!important}.pr-36{padding-right:9rem!important}.pb-36{padding-bottom:9rem!important}.pl-36{padding-left:9rem!important}.pt-40{padding-top:10rem!important}.pr-40{padding-right:10rem!important}.pb-40{padding-bottom:10rem!important}.pl-40{padding-left:10rem!important}.pt-48{padding-top:12rem!important}.pr-48{padding-right:12rem!important}.pb-48{padding-bottom:12rem!important}.pl-48{padding-left:12rem!important}.pt-56{padding-top:14rem!important}.pr-56{padding-right:14rem!important}.pb-56{padding-bottom:14rem!important}.pl-56{padding-left:14rem!important}.pt-60{padding-top:15rem!important}.pr-60{padding-right:15rem!important}.pb-60{padding-bottom:15rem!important}.pl-60{padding-left:15rem!important}.pt-64{padding-top:16rem!important}.pr-64{padding-right:16rem!important}.pb-64{padding-bottom:16rem!important}.pl-64{padding-left:16rem!important}.pt-72{padding-top:18rem!important}.pr-72{padding-right:18rem!important}.pb-72{padding-bottom:18rem!important}.pl-72{padding-left:18rem!important}.pt-80{padding-top:20rem!important}.pr-80{padding-right:20rem!important}.pb-80{padding-bottom:20rem!important}.pl-80{padding-left:20rem!important}.pt-96{padding-top:24rem!important}.pr-96{padding-right:24rem!important}.pb-96{padding-bottom:24rem!important}.pl-96{padding-left:24rem!important}.pt-px{padding-top:1px!important}.pr-px{padding-right:1px!important}.pb-px{padding-bottom:1px!important}.pl-px{padding-left:1px!important}.pt-0\.5{padding-top:.125rem!important}.pr-0\.5{padding-right:.125rem!important}.pb-0\.5{padding-bottom:.125rem!important}.pl-0\.5{padding-left:.125rem!important}.pt-1\.5{padding-top:.375rem!important}.pr-1\.5{padding-right:.375rem!important}.pb-1\.5{padding-bottom:.375rem!important}.pl-1\.5{padding-left:.375rem!important}.pt-2\.5{padding-top:.625rem!important}.pr-2\.5{padding-right:.625rem!important}.pb-2\.5{padding-bottom:.625rem!important}.pl-2\.5{padding-left:.625rem!important}.pt-3\.5{padding-top:.875rem!important}.pr-3\.5{padding-right:.875rem!important}.pb-3\.5{padding-bottom:.875rem!important}.pl-3\.5{padding-left:.875rem!important}.pt-1\/2{padding-top:50%!important}.pr-1\/2{padding-right:50%!important}.pb-1\/2{padding-bottom:50%!important}.pl-1\/2{padding-left:50%!important}.pt-1\/3{padding-top:33.333333%!important}.pr-1\/3{padding-right:33.333333%!important}.pb-1\/3{padding-bottom:33.333333%!important}.pl-1\/3{padding-left:33.333333%!important}.pt-2\/3{padding-top:66.666667%!important}.pr-2\/3{padding-right:66.666667%!important}.pb-2\/3{padding-bottom:66.666667%!important}.pl-2\/3{padding-left:66.666667%!important}.pt-1\/4{padding-top:25%!important}.pr-1\/4{padding-right:25%!important}.pb-1\/4{padding-bottom:25%!important}.pl-1\/4{padding-left:25%!important}.pt-2\/4{padding-top:50%!important}.pr-2\/4{padding-right:50%!important}.pb-2\/4{padding-bottom:50%!important}.pl-2\/4{padding-left:50%!important}.pt-3\/4{padding-top:75%!important}.pr-3\/4{padding-right:75%!important}.pb-3\/4{padding-bottom:75%!important}.pl-3\/4{padding-left:75%!important}.pt-1\/5{padding-top:20%!important}.pr-1\/5{padding-right:20%!important}.pb-1\/5{padding-bottom:20%!important}.pl-1\/5{padding-left:20%!important}.pt-2\/5{padding-top:40%!important}.pr-2\/5{padding-right:40%!important}.pb-2\/5{padding-bottom:40%!important}.pl-2\/5{padding-left:40%!important}.pt-3\/5{padding-top:60%!important}.pr-3\/5{padding-right:60%!important}.pb-3\/5{padding-bottom:60%!important}.pl-3\/5{padding-left:60%!important}.pt-4\/5{padding-top:80%!important}.pr-4\/5{padding-right:80%!important}.pb-4\/5{padding-bottom:80%!important}.pl-4\/5{padding-left:80%!important}.pt-1\/6{padding-top:16.666667%!important}.pr-1\/6{padding-right:16.666667%!important}.pb-1\/6{padding-bottom:16.666667%!important}.pl-1\/6{padding-left:16.666667%!important}.pt-2\/6{padding-top:33.333333%!important}.pr-2\/6{padding-right:33.333333%!important}.pb-2\/6{padding-bottom:33.333333%!important}.pl-2\/6{padding-left:33.333333%!important}.pt-3\/6{padding-top:50%!important}.pr-3\/6{padding-right:50%!important}.pb-3\/6{padding-bottom:50%!important}.pl-3\/6{padding-left:50%!important}.pt-4\/6{padding-top:66.666667%!important}.pr-4\/6{padding-right:66.666667%!important}.pb-4\/6{padding-bottom:66.666667%!important}.pl-4\/6{padding-left:66.666667%!important}.pt-5\/6{padding-top:83.333333%!important}.pr-5\/6{padding-right:83.333333%!important}.pb-5\/6{padding-bottom:83.333333%!important}.pl-5\/6{padding-left:83.333333%!important}.pt-1\/12{padding-top:8.333333%!important}.pr-1\/12{padding-right:8.333333%!important}.pb-1\/12{padding-bottom:8.333333%!important}.pl-1\/12{padding-left:8.333333%!important}.pt-2\/12{padding-top:16.666667%!important}.pr-2\/12{padding-right:16.666667%!important}.pb-2\/12{padding-bottom:16.666667%!important}.pl-2\/12{padding-left:16.666667%!important}.pt-3\/12{padding-top:25%!important}.pr-3\/12{padding-right:25%!important}.pb-3\/12{padding-bottom:25%!important}.pl-3\/12{padding-left:25%!important}.pt-4\/12{padding-top:33.333333%!important}.pr-4\/12{padding-right:33.333333%!important}.pb-4\/12{padding-bottom:33.333333%!important}.pl-4\/12{padding-left:33.333333%!important}.pt-5\/12{padding-top:41.666667%!important}.pr-5\/12{padding-right:41.666667%!important}.pb-5\/12{padding-bottom:41.666667%!important}.pl-5\/12{padding-left:41.666667%!important}.pt-6\/12{padding-top:50%!important}.pr-6\/12{padding-right:50%!important}.pb-6\/12{padding-bottom:50%!important}.pl-6\/12{padding-left:50%!important}.pt-7\/12{padding-top:58.333333%!important}.pr-7\/12{padding-right:58.333333%!important}.pb-7\/12{padding-bottom:58.333333%!important}.pl-7\/12{padding-left:58.333333%!important}.pt-8\/12{padding-top:66.666667%!important}.pr-8\/12{padding-right:66.666667%!important}.pb-8\/12{padding-bottom:66.666667%!important}.pl-8\/12{padding-left:66.666667%!important}.pt-9\/12{padding-top:75%!important}.pr-9\/12{padding-right:75%!important}.pb-9\/12{padding-bottom:75%!important}.pl-9\/12{padding-left:75%!important}.pt-10\/12{padding-top:83.333333%!important}.pr-10\/12{padding-right:83.333333%!important}.pb-10\/12{padding-bottom:83.333333%!important}.pl-10\/12{padding-left:83.333333%!important}.pt-11\/12{padding-top:91.666667%!important}.pr-11\/12{padding-right:91.666667%!important}.pb-11\/12{padding-bottom:91.666667%!important}.pl-11\/12{padding-left:91.666667%!important}.pt-full{padding-top:100%!important}.pr-full{padding-right:100%!important}.pb-full{padding-bottom:100%!important}.pl-full{padding-left:100%!important}[dir=ltr] .ltr\:p-0{padding:0!important}[dir=ltr] .ltr\:p-1{padding:.25rem!important}[dir=ltr] .ltr\:p-2{padding:.5rem!important}[dir=ltr] .ltr\:p-3{padding:.75rem!important}[dir=ltr] .ltr\:p-4{padding:1rem!important}[dir=ltr] .ltr\:p-5{padding:1.25rem!important}[dir=ltr] .ltr\:p-6{padding:1.5rem!important}[dir=ltr] .ltr\:p-7{padding:1.75rem!important}[dir=ltr] .ltr\:p-8{padding:2rem!important}[dir=ltr] .ltr\:p-9{padding:2.25rem!important}[dir=ltr] .ltr\:p-10{padding:2.5rem!important}[dir=ltr] .ltr\:p-11{padding:2.75rem!important}[dir=ltr] .ltr\:p-12{padding:3rem!important}[dir=ltr] .ltr\:p-13{padding:3.25rem!important}[dir=ltr] .ltr\:p-14{padding:3.5rem!important}[dir=ltr] .ltr\:p-15{padding:3.75rem!important}[dir=ltr] .ltr\:p-16{padding:4rem!important}[dir=ltr] .ltr\:p-20{padding:5rem!important}[dir=ltr] .ltr\:p-24{padding:6rem!important}[dir=ltr] .ltr\:p-28{padding:7rem!important}[dir=ltr] .ltr\:p-32{padding:8rem!important}[dir=ltr] .ltr\:p-36{padding:9rem!important}[dir=ltr] .ltr\:p-40{padding:10rem!important}[dir=ltr] .ltr\:p-48{padding:12rem!important}[dir=ltr] .ltr\:p-56{padding:14rem!important}[dir=ltr] .ltr\:p-60{padding:15rem!important}[dir=ltr] .ltr\:p-64{padding:16rem!important}[dir=ltr] .ltr\:p-72{padding:18rem!important}[dir=ltr] .ltr\:p-80{padding:20rem!important}[dir=ltr] .ltr\:p-96{padding:24rem!important}[dir=ltr] .ltr\:p-px{padding:1px!important}[dir=ltr] .ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .ltr\:p-1\/2{padding:50%!important}[dir=ltr] .ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .ltr\:p-1\/4{padding:25%!important}[dir=ltr] .ltr\:p-2\/4{padding:50%!important}[dir=ltr] .ltr\:p-3\/4{padding:75%!important}[dir=ltr] .ltr\:p-1\/5{padding:20%!important}[dir=ltr] .ltr\:p-2\/5{padding:40%!important}[dir=ltr] .ltr\:p-3\/5{padding:60%!important}[dir=ltr] .ltr\:p-4\/5{padding:80%!important}[dir=ltr] .ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .ltr\:p-3\/6{padding:50%!important}[dir=ltr] .ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .ltr\:p-3\/12{padding:25%!important}[dir=ltr] .ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .ltr\:p-6\/12{padding:50%!important}[dir=ltr] .ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .ltr\:p-9\/12{padding:75%!important}[dir=ltr] .ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .ltr\:p-full{padding:100%!important}[dir=ltr] .ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .ltr\:pt-0{padding-top:0!important}[dir=ltr] .ltr\:pr-0{padding-right:0!important}[dir=ltr] .ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .ltr\:pl-0{padding-left:0!important}[dir=ltr] .ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .ltr\:pt-px{padding-top:1px!important}[dir=ltr] .ltr\:pr-px{padding-right:1px!important}[dir=ltr] .ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .ltr\:pl-px{padding-left:1px!important}[dir=ltr] .ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .ltr\:pt-full{padding-top:100%!important}[dir=ltr] .ltr\:pr-full{padding-right:100%!important}[dir=ltr] .ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .ltr\:pl-full{padding-left:100%!important}[dir=rtl] .rtl\:p-0{padding:0!important}[dir=rtl] .rtl\:p-1{padding:.25rem!important}[dir=rtl] .rtl\:p-2{padding:.5rem!important}[dir=rtl] .rtl\:p-3{padding:.75rem!important}[dir=rtl] .rtl\:p-4{padding:1rem!important}[dir=rtl] .rtl\:p-5{padding:1.25rem!important}[dir=rtl] .rtl\:p-6{padding:1.5rem!important}[dir=rtl] .rtl\:p-7{padding:1.75rem!important}[dir=rtl] .rtl\:p-8{padding:2rem!important}[dir=rtl] .rtl\:p-9{padding:2.25rem!important}[dir=rtl] .rtl\:p-10{padding:2.5rem!important}[dir=rtl] .rtl\:p-11{padding:2.75rem!important}[dir=rtl] .rtl\:p-12{padding:3rem!important}[dir=rtl] .rtl\:p-13{padding:3.25rem!important}[dir=rtl] .rtl\:p-14{padding:3.5rem!important}[dir=rtl] .rtl\:p-15{padding:3.75rem!important}[dir=rtl] .rtl\:p-16{padding:4rem!important}[dir=rtl] .rtl\:p-20{padding:5rem!important}[dir=rtl] .rtl\:p-24{padding:6rem!important}[dir=rtl] .rtl\:p-28{padding:7rem!important}[dir=rtl] .rtl\:p-32{padding:8rem!important}[dir=rtl] .rtl\:p-36{padding:9rem!important}[dir=rtl] .rtl\:p-40{padding:10rem!important}[dir=rtl] .rtl\:p-48{padding:12rem!important}[dir=rtl] .rtl\:p-56{padding:14rem!important}[dir=rtl] .rtl\:p-60{padding:15rem!important}[dir=rtl] .rtl\:p-64{padding:16rem!important}[dir=rtl] .rtl\:p-72{padding:18rem!important}[dir=rtl] .rtl\:p-80{padding:20rem!important}[dir=rtl] .rtl\:p-96{padding:24rem!important}[dir=rtl] .rtl\:p-px{padding:1px!important}[dir=rtl] .rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .rtl\:p-1\/2{padding:50%!important}[dir=rtl] .rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .rtl\:p-1\/4{padding:25%!important}[dir=rtl] .rtl\:p-2\/4{padding:50%!important}[dir=rtl] .rtl\:p-3\/4{padding:75%!important}[dir=rtl] .rtl\:p-1\/5{padding:20%!important}[dir=rtl] .rtl\:p-2\/5{padding:40%!important}[dir=rtl] .rtl\:p-3\/5{padding:60%!important}[dir=rtl] .rtl\:p-4\/5{padding:80%!important}[dir=rtl] .rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .rtl\:p-3\/6{padding:50%!important}[dir=rtl] .rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .rtl\:p-3\/12{padding:25%!important}[dir=rtl] .rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .rtl\:p-6\/12{padding:50%!important}[dir=rtl] .rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .rtl\:p-9\/12{padding:75%!important}[dir=rtl] .rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .rtl\:p-full{padding:100%!important}[dir=rtl] .rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .rtl\:pt-0{padding-top:0!important}[dir=rtl] .rtl\:pr-0{padding-right:0!important}[dir=rtl] .rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .rtl\:pl-0{padding-left:0!important}[dir=rtl] .rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .rtl\:pt-px{padding-top:1px!important}[dir=rtl] .rtl\:pr-px{padding-right:1px!important}[dir=rtl] .rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .rtl\:pl-px{padding-left:1px!important}[dir=rtl] .rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .rtl\:pt-full{padding-top:100%!important}[dir=rtl] .rtl\:pr-full{padding-right:100%!important}[dir=rtl] .rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .rtl\:pl-full{padding-left:100%!important}.placeholder-transparent::-moz-placeholder{color:transparent!important}.placeholder-transparent::placeholder{color:transparent!important}.placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}.inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.inset-y-0{bottom:0!important;top:0!important}.inset-x-0{left:0!important;right:0!important}.inset-y-1{bottom:.25rem!important;top:.25rem!important}.inset-x-1{left:.25rem!important;right:.25rem!important}.inset-y-2{bottom:.5rem!important;top:.5rem!important}.inset-x-2{left:.5rem!important;right:.5rem!important}.inset-y-3{bottom:.75rem!important;top:.75rem!important}.inset-x-3{left:.75rem!important;right:.75rem!important}.inset-y-4{bottom:1rem!important;top:1rem!important}.inset-x-4{left:1rem!important;right:1rem!important}.inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.inset-x-5{left:1.25rem!important;right:1.25rem!important}.inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.inset-x-6{left:1.5rem!important;right:1.5rem!important}.inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.inset-x-7{left:1.75rem!important;right:1.75rem!important}.inset-y-8{bottom:2rem!important;top:2rem!important}.inset-x-8{left:2rem!important;right:2rem!important}.inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.inset-x-9{left:2.25rem!important;right:2.25rem!important}.inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.inset-x-10{left:2.5rem!important;right:2.5rem!important}.inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.inset-x-11{left:2.75rem!important;right:2.75rem!important}.inset-y-12{bottom:3rem!important;top:3rem!important}.inset-x-12{left:3rem!important;right:3rem!important}.inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.inset-x-13{left:3.25rem!important;right:3.25rem!important}.inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.inset-x-14{left:3.5rem!important;right:3.5rem!important}.inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.inset-x-15{left:3.75rem!important;right:3.75rem!important}.inset-y-16{bottom:4rem!important;top:4rem!important}.inset-x-16{left:4rem!important;right:4rem!important}.inset-y-20{bottom:5rem!important;top:5rem!important}.inset-x-20{left:5rem!important;right:5rem!important}.inset-y-24{bottom:6rem!important;top:6rem!important}.inset-x-24{left:6rem!important;right:6rem!important}.inset-y-28{bottom:7rem!important;top:7rem!important}.inset-x-28{left:7rem!important;right:7rem!important}.inset-y-32{bottom:8rem!important;top:8rem!important}.inset-x-32{left:8rem!important;right:8rem!important}.inset-y-36{bottom:9rem!important;top:9rem!important}.inset-x-36{left:9rem!important;right:9rem!important}.inset-y-40{bottom:10rem!important;top:10rem!important}.inset-x-40{left:10rem!important;right:10rem!important}.inset-y-48{bottom:12rem!important;top:12rem!important}.inset-x-48{left:12rem!important;right:12rem!important}.inset-y-56{bottom:14rem!important;top:14rem!important}.inset-x-56{left:14rem!important;right:14rem!important}.inset-y-60{bottom:15rem!important;top:15rem!important}.inset-x-60{left:15rem!important;right:15rem!important}.inset-y-64{bottom:16rem!important;top:16rem!important}.inset-x-64{left:16rem!important;right:16rem!important}.inset-y-72{bottom:18rem!important;top:18rem!important}.inset-x-72{left:18rem!important;right:18rem!important}.inset-y-80{bottom:20rem!important;top:20rem!important}.inset-x-80{left:20rem!important;right:20rem!important}.inset-y-96{bottom:24rem!important;top:24rem!important}.inset-x-96{left:24rem!important;right:24rem!important}.inset-y-auto{bottom:auto!important;top:auto!important}.inset-x-auto{left:auto!important;right:auto!important}.inset-y-px{bottom:1px!important;top:1px!important}.inset-x-px{left:1px!important;right:1px!important}.inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.inset-x-0\.5{left:.125rem!important;right:.125rem!important}.inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.inset-x-1\.5{left:.375rem!important;right:.375rem!important}.inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.inset-x-2\.5{left:.625rem!important;right:.625rem!important}.inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.inset-x-3\.5{left:.875rem!important;right:.875rem!important}.inset-y-1\/2{bottom:50%!important;top:50%!important}.inset-x-1\/2{left:50%!important;right:50%!important}.inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.inset-y-1\/4{bottom:25%!important;top:25%!important}.inset-x-1\/4{left:25%!important;right:25%!important}.inset-y-2\/4{bottom:50%!important;top:50%!important}.inset-x-2\/4{left:50%!important;right:50%!important}.inset-y-3\/4{bottom:75%!important;top:75%!important}.inset-x-3\/4{left:75%!important;right:75%!important}.inset-y-1\/5{bottom:20%!important;top:20%!important}.inset-x-1\/5{left:20%!important;right:20%!important}.inset-y-2\/5{bottom:40%!important;top:40%!important}.inset-x-2\/5{left:40%!important;right:40%!important}.inset-y-3\/5{bottom:60%!important;top:60%!important}.inset-x-3\/5{left:60%!important;right:60%!important}.inset-y-4\/5{bottom:80%!important;top:80%!important}.inset-x-4\/5{left:80%!important;right:80%!important}.inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.inset-y-3\/6{bottom:50%!important;top:50%!important}.inset-x-3\/6{left:50%!important;right:50%!important}.inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.inset-y-3\/12{bottom:25%!important;top:25%!important}.inset-x-3\/12{left:25%!important;right:25%!important}.inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.inset-y-6\/12{bottom:50%!important;top:50%!important}.inset-x-6\/12{left:50%!important;right:50%!important}.inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.inset-y-9\/12{bottom:75%!important;top:75%!important}.inset-x-9\/12{left:75%!important;right:75%!important}.inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.inset-y-full{bottom:100%!important;top:100%!important}.inset-x-full{left:100%!important;right:100%!important}.top-0{top:0!important}.right-0{right:0!important}.bottom-0{bottom:0!important}.left-0{left:0!important}.top-1{top:.25rem!important}.right-1{right:.25rem!important}.bottom-1{bottom:.25rem!important}.left-1{left:.25rem!important}.top-2{top:.5rem!important}.right-2{right:.5rem!important}.bottom-2{bottom:.5rem!important}.left-2{left:.5rem!important}.top-3{top:.75rem!important}.right-3{right:.75rem!important}.bottom-3{bottom:.75rem!important}.left-3{left:.75rem!important}.top-4{top:1rem!important}.right-4{right:1rem!important}.bottom-4{bottom:1rem!important}.left-4{left:1rem!important}.top-5{top:1.25rem!important}.right-5{right:1.25rem!important}.bottom-5{bottom:1.25rem!important}.left-5{left:1.25rem!important}.top-6{top:1.5rem!important}.right-6{right:1.5rem!important}.bottom-6{bottom:1.5rem!important}.left-6{left:1.5rem!important}.top-7{top:1.75rem!important}.right-7{right:1.75rem!important}.bottom-7{bottom:1.75rem!important}.left-7{left:1.75rem!important}.top-8{top:2rem!important}.right-8{right:2rem!important}.bottom-8{bottom:2rem!important}.left-8{left:2rem!important}.top-9{top:2.25rem!important}.right-9{right:2.25rem!important}.bottom-9{bottom:2.25rem!important}.left-9{left:2.25rem!important}.top-10{top:2.5rem!important}.right-10{right:2.5rem!important}.bottom-10{bottom:2.5rem!important}.left-10{left:2.5rem!important}.top-11{top:2.75rem!important}.right-11{right:2.75rem!important}.bottom-11{bottom:2.75rem!important}.left-11{left:2.75rem!important}.top-12{top:3rem!important}.right-12{right:3rem!important}.bottom-12{bottom:3rem!important}.left-12{left:3rem!important}.top-13{top:3.25rem!important}.right-13{right:3.25rem!important}.bottom-13{bottom:3.25rem!important}.left-13{left:3.25rem!important}.top-14{top:3.5rem!important}.right-14{right:3.5rem!important}.bottom-14{bottom:3.5rem!important}.left-14{left:3.5rem!important}.top-15{top:3.75rem!important}.right-15{right:3.75rem!important}.bottom-15{bottom:3.75rem!important}.left-15{left:3.75rem!important}.top-16{top:4rem!important}.right-16{right:4rem!important}.bottom-16{bottom:4rem!important}.left-16{left:4rem!important}.top-20{top:5rem!important}.right-20{right:5rem!important}.bottom-20{bottom:5rem!important}.left-20{left:5rem!important}.top-24{top:6rem!important}.right-24{right:6rem!important}.bottom-24{bottom:6rem!important}.left-24{left:6rem!important}.top-28{top:7rem!important}.right-28{right:7rem!important}.bottom-28{bottom:7rem!important}.left-28{left:7rem!important}.top-32{top:8rem!important}.right-32{right:8rem!important}.bottom-32{bottom:8rem!important}.left-32{left:8rem!important}.top-36{top:9rem!important}.right-36{right:9rem!important}.bottom-36{bottom:9rem!important}.left-36{left:9rem!important}.top-40{top:10rem!important}.right-40{right:10rem!important}.bottom-40{bottom:10rem!important}.left-40{left:10rem!important}.top-48{top:12rem!important}.right-48{right:12rem!important}.bottom-48{bottom:12rem!important}.left-48{left:12rem!important}.top-56{top:14rem!important}.right-56{right:14rem!important}.bottom-56{bottom:14rem!important}.left-56{left:14rem!important}.top-60{top:15rem!important}.right-60{right:15rem!important}.bottom-60{bottom:15rem!important}.left-60{left:15rem!important}.top-64{top:16rem!important}.right-64{right:16rem!important}.bottom-64{bottom:16rem!important}.left-64{left:16rem!important}.top-72{top:18rem!important}.right-72{right:18rem!important}.bottom-72{bottom:18rem!important}.left-72{left:18rem!important}.top-80{top:20rem!important}.right-80{right:20rem!important}.bottom-80{bottom:20rem!important}.left-80{left:20rem!important}.top-96{top:24rem!important}.right-96{right:24rem!important}.bottom-96{bottom:24rem!important}.left-96{left:24rem!important}.top-auto{top:auto!important}.right-auto{right:auto!important}.bottom-auto{bottom:auto!important}.left-auto{left:auto!important}.top-px{top:1px!important}.right-px{right:1px!important}.bottom-px{bottom:1px!important}.left-px{left:1px!important}.top-0\.5{top:.125rem!important}.right-0\.5{right:.125rem!important}.bottom-0\.5{bottom:.125rem!important}.left-0\.5{left:.125rem!important}.top-1\.5{top:.375rem!important}.right-1\.5{right:.375rem!important}.bottom-1\.5{bottom:.375rem!important}.left-1\.5{left:.375rem!important}.top-2\.5{top:.625rem!important}.right-2\.5{right:.625rem!important}.bottom-2\.5{bottom:.625rem!important}.left-2\.5{left:.625rem!important}.top-3\.5{top:.875rem!important}.right-3\.5{right:.875rem!important}.bottom-3\.5{bottom:.875rem!important}.left-3\.5{left:.875rem!important}.top-1\/2{top:50%!important}.right-1\/2{right:50%!important}.bottom-1\/2{bottom:50%!important}.left-1\/2{left:50%!important}.top-1\/3{top:33.333333%!important}.right-1\/3{right:33.333333%!important}.bottom-1\/3{bottom:33.333333%!important}.left-1\/3{left:33.333333%!important}.top-2\/3{top:66.666667%!important}.right-2\/3{right:66.666667%!important}.bottom-2\/3{bottom:66.666667%!important}.left-2\/3{left:66.666667%!important}.top-1\/4{top:25%!important}.right-1\/4{right:25%!important}.bottom-1\/4{bottom:25%!important}.left-1\/4{left:25%!important}.top-2\/4{top:50%!important}.right-2\/4{right:50%!important}.bottom-2\/4{bottom:50%!important}.left-2\/4{left:50%!important}.top-3\/4{top:75%!important}.right-3\/4{right:75%!important}.bottom-3\/4{bottom:75%!important}.left-3\/4{left:75%!important}.top-1\/5{top:20%!important}.right-1\/5{right:20%!important}.bottom-1\/5{bottom:20%!important}.left-1\/5{left:20%!important}.top-2\/5{top:40%!important}.right-2\/5{right:40%!important}.bottom-2\/5{bottom:40%!important}.left-2\/5{left:40%!important}.top-3\/5{top:60%!important}.right-3\/5{right:60%!important}.bottom-3\/5{bottom:60%!important}.left-3\/5{left:60%!important}.top-4\/5{top:80%!important}.right-4\/5{right:80%!important}.bottom-4\/5{bottom:80%!important}.left-4\/5{left:80%!important}.top-1\/6{top:16.666667%!important}.right-1\/6{right:16.666667%!important}.bottom-1\/6{bottom:16.666667%!important}.left-1\/6{left:16.666667%!important}.top-2\/6{top:33.333333%!important}.right-2\/6{right:33.333333%!important}.bottom-2\/6{bottom:33.333333%!important}.left-2\/6{left:33.333333%!important}.top-3\/6{top:50%!important}.right-3\/6{right:50%!important}.bottom-3\/6{bottom:50%!important}.left-3\/6{left:50%!important}.top-4\/6{top:66.666667%!important}.right-4\/6{right:66.666667%!important}.bottom-4\/6{bottom:66.666667%!important}.left-4\/6{left:66.666667%!important}.top-5\/6{top:83.333333%!important}.right-5\/6{right:83.333333%!important}.bottom-5\/6{bottom:83.333333%!important}.left-5\/6{left:83.333333%!important}.top-1\/12{top:8.333333%!important}.right-1\/12{right:8.333333%!important}.bottom-1\/12{bottom:8.333333%!important}.left-1\/12{left:8.333333%!important}.top-2\/12{top:16.666667%!important}.right-2\/12{right:16.666667%!important}.bottom-2\/12{bottom:16.666667%!important}.left-2\/12{left:16.666667%!important}.top-3\/12{top:25%!important}.right-3\/12{right:25%!important}.bottom-3\/12{bottom:25%!important}.left-3\/12{left:25%!important}.top-4\/12{top:33.333333%!important}.right-4\/12{right:33.333333%!important}.bottom-4\/12{bottom:33.333333%!important}.left-4\/12{left:33.333333%!important}.top-5\/12{top:41.666667%!important}.right-5\/12{right:41.666667%!important}.bottom-5\/12{bottom:41.666667%!important}.left-5\/12{left:41.666667%!important}.top-6\/12{top:50%!important}.right-6\/12{right:50%!important}.bottom-6\/12{bottom:50%!important}.left-6\/12{left:50%!important}.top-7\/12{top:58.333333%!important}.right-7\/12{right:58.333333%!important}.bottom-7\/12{bottom:58.333333%!important}.left-7\/12{left:58.333333%!important}.top-8\/12{top:66.666667%!important}.right-8\/12{right:66.666667%!important}.bottom-8\/12{bottom:66.666667%!important}.left-8\/12{left:66.666667%!important}.top-9\/12{top:75%!important}.right-9\/12{right:75%!important}.bottom-9\/12{bottom:75%!important}.left-9\/12{left:75%!important}.top-10\/12{top:83.333333%!important}.right-10\/12{right:83.333333%!important}.bottom-10\/12{bottom:83.333333%!important}.left-10\/12{left:83.333333%!important}.top-11\/12{top:91.666667%!important}.right-11\/12{right:91.666667%!important}.bottom-11\/12{bottom:91.666667%!important}.left-11\/12{left:91.666667%!important}.top-full{top:100%!important}.right-full{right:100%!important}.bottom-full{bottom:100%!important}.left-full{left:100%!important}[dir=ltr] .ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .ltr\:top-0{top:0!important}[dir=ltr] .ltr\:right-0{right:0!important}[dir=ltr] .ltr\:bottom-0{bottom:0!important}[dir=ltr] .ltr\:left-0{left:0!important}[dir=ltr] .ltr\:top-1{top:.25rem!important}[dir=ltr] .ltr\:right-1{right:.25rem!important}[dir=ltr] .ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .ltr\:left-1{left:.25rem!important}[dir=ltr] .ltr\:top-2{top:.5rem!important}[dir=ltr] .ltr\:right-2{right:.5rem!important}[dir=ltr] .ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .ltr\:left-2{left:.5rem!important}[dir=ltr] .ltr\:top-3{top:.75rem!important}[dir=ltr] .ltr\:right-3{right:.75rem!important}[dir=ltr] .ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .ltr\:left-3{left:.75rem!important}[dir=ltr] .ltr\:top-4{top:1rem!important}[dir=ltr] .ltr\:right-4{right:1rem!important}[dir=ltr] .ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .ltr\:left-4{left:1rem!important}[dir=ltr] .ltr\:top-5{top:1.25rem!important}[dir=ltr] .ltr\:right-5{right:1.25rem!important}[dir=ltr] .ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .ltr\:left-5{left:1.25rem!important}[dir=ltr] .ltr\:top-6{top:1.5rem!important}[dir=ltr] .ltr\:right-6{right:1.5rem!important}[dir=ltr] .ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .ltr\:left-6{left:1.5rem!important}[dir=ltr] .ltr\:top-7{top:1.75rem!important}[dir=ltr] .ltr\:right-7{right:1.75rem!important}[dir=ltr] .ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .ltr\:left-7{left:1.75rem!important}[dir=ltr] .ltr\:top-8{top:2rem!important}[dir=ltr] .ltr\:right-8{right:2rem!important}[dir=ltr] .ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .ltr\:left-8{left:2rem!important}[dir=ltr] .ltr\:top-9{top:2.25rem!important}[dir=ltr] .ltr\:right-9{right:2.25rem!important}[dir=ltr] .ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .ltr\:left-9{left:2.25rem!important}[dir=ltr] .ltr\:top-10{top:2.5rem!important}[dir=ltr] .ltr\:right-10{right:2.5rem!important}[dir=ltr] .ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .ltr\:left-10{left:2.5rem!important}[dir=ltr] .ltr\:top-11{top:2.75rem!important}[dir=ltr] .ltr\:right-11{right:2.75rem!important}[dir=ltr] .ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .ltr\:left-11{left:2.75rem!important}[dir=ltr] .ltr\:top-12{top:3rem!important}[dir=ltr] .ltr\:right-12{right:3rem!important}[dir=ltr] .ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .ltr\:left-12{left:3rem!important}[dir=ltr] .ltr\:top-13{top:3.25rem!important}[dir=ltr] .ltr\:right-13{right:3.25rem!important}[dir=ltr] .ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .ltr\:left-13{left:3.25rem!important}[dir=ltr] .ltr\:top-14{top:3.5rem!important}[dir=ltr] .ltr\:right-14{right:3.5rem!important}[dir=ltr] .ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .ltr\:left-14{left:3.5rem!important}[dir=ltr] .ltr\:top-15{top:3.75rem!important}[dir=ltr] .ltr\:right-15{right:3.75rem!important}[dir=ltr] .ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .ltr\:left-15{left:3.75rem!important}[dir=ltr] .ltr\:top-16{top:4rem!important}[dir=ltr] .ltr\:right-16{right:4rem!important}[dir=ltr] .ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .ltr\:left-16{left:4rem!important}[dir=ltr] .ltr\:top-20{top:5rem!important}[dir=ltr] .ltr\:right-20{right:5rem!important}[dir=ltr] .ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .ltr\:left-20{left:5rem!important}[dir=ltr] .ltr\:top-24{top:6rem!important}[dir=ltr] .ltr\:right-24{right:6rem!important}[dir=ltr] .ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .ltr\:left-24{left:6rem!important}[dir=ltr] .ltr\:top-28{top:7rem!important}[dir=ltr] .ltr\:right-28{right:7rem!important}[dir=ltr] .ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .ltr\:left-28{left:7rem!important}[dir=ltr] .ltr\:top-32{top:8rem!important}[dir=ltr] .ltr\:right-32{right:8rem!important}[dir=ltr] .ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .ltr\:left-32{left:8rem!important}[dir=ltr] .ltr\:top-36{top:9rem!important}[dir=ltr] .ltr\:right-36{right:9rem!important}[dir=ltr] .ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .ltr\:left-36{left:9rem!important}[dir=ltr] .ltr\:top-40{top:10rem!important}[dir=ltr] .ltr\:right-40{right:10rem!important}[dir=ltr] .ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .ltr\:left-40{left:10rem!important}[dir=ltr] .ltr\:top-48{top:12rem!important}[dir=ltr] .ltr\:right-48{right:12rem!important}[dir=ltr] .ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .ltr\:left-48{left:12rem!important}[dir=ltr] .ltr\:top-56{top:14rem!important}[dir=ltr] .ltr\:right-56{right:14rem!important}[dir=ltr] .ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .ltr\:left-56{left:14rem!important}[dir=ltr] .ltr\:top-60{top:15rem!important}[dir=ltr] .ltr\:right-60{right:15rem!important}[dir=ltr] .ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .ltr\:left-60{left:15rem!important}[dir=ltr] .ltr\:top-64{top:16rem!important}[dir=ltr] .ltr\:right-64{right:16rem!important}[dir=ltr] .ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .ltr\:left-64{left:16rem!important}[dir=ltr] .ltr\:top-72{top:18rem!important}[dir=ltr] .ltr\:right-72{right:18rem!important}[dir=ltr] .ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .ltr\:left-72{left:18rem!important}[dir=ltr] .ltr\:top-80{top:20rem!important}[dir=ltr] .ltr\:right-80{right:20rem!important}[dir=ltr] .ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .ltr\:left-80{left:20rem!important}[dir=ltr] .ltr\:top-96{top:24rem!important}[dir=ltr] .ltr\:right-96{right:24rem!important}[dir=ltr] .ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .ltr\:left-96{left:24rem!important}[dir=ltr] .ltr\:top-auto{top:auto!important}[dir=ltr] .ltr\:right-auto{right:auto!important}[dir=ltr] .ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .ltr\:left-auto{left:auto!important}[dir=ltr] .ltr\:top-px{top:1px!important}[dir=ltr] .ltr\:right-px{right:1px!important}[dir=ltr] .ltr\:bottom-px{bottom:1px!important}[dir=ltr] .ltr\:left-px{left:1px!important}[dir=ltr] .ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .ltr\:top-1\/2{top:50%!important}[dir=ltr] .ltr\:right-1\/2{right:50%!important}[dir=ltr] .ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .ltr\:left-1\/2{left:50%!important}[dir=ltr] .ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .ltr\:top-1\/4{top:25%!important}[dir=ltr] .ltr\:right-1\/4{right:25%!important}[dir=ltr] .ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .ltr\:left-1\/4{left:25%!important}[dir=ltr] .ltr\:top-2\/4{top:50%!important}[dir=ltr] .ltr\:right-2\/4{right:50%!important}[dir=ltr] .ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .ltr\:left-2\/4{left:50%!important}[dir=ltr] .ltr\:top-3\/4{top:75%!important}[dir=ltr] .ltr\:right-3\/4{right:75%!important}[dir=ltr] .ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .ltr\:left-3\/4{left:75%!important}[dir=ltr] .ltr\:top-1\/5{top:20%!important}[dir=ltr] .ltr\:right-1\/5{right:20%!important}[dir=ltr] .ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .ltr\:left-1\/5{left:20%!important}[dir=ltr] .ltr\:top-2\/5{top:40%!important}[dir=ltr] .ltr\:right-2\/5{right:40%!important}[dir=ltr] .ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .ltr\:left-2\/5{left:40%!important}[dir=ltr] .ltr\:top-3\/5{top:60%!important}[dir=ltr] .ltr\:right-3\/5{right:60%!important}[dir=ltr] .ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .ltr\:left-3\/5{left:60%!important}[dir=ltr] .ltr\:top-4\/5{top:80%!important}[dir=ltr] .ltr\:right-4\/5{right:80%!important}[dir=ltr] .ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .ltr\:left-4\/5{left:80%!important}[dir=ltr] .ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .ltr\:top-3\/6{top:50%!important}[dir=ltr] .ltr\:right-3\/6{right:50%!important}[dir=ltr] .ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .ltr\:left-3\/6{left:50%!important}[dir=ltr] .ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .ltr\:top-3\/12{top:25%!important}[dir=ltr] .ltr\:right-3\/12{right:25%!important}[dir=ltr] .ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .ltr\:left-3\/12{left:25%!important}[dir=ltr] .ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .ltr\:top-6\/12{top:50%!important}[dir=ltr] .ltr\:right-6\/12{right:50%!important}[dir=ltr] .ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .ltr\:left-6\/12{left:50%!important}[dir=ltr] .ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .ltr\:top-9\/12{top:75%!important}[dir=ltr] .ltr\:right-9\/12{right:75%!important}[dir=ltr] .ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .ltr\:left-9\/12{left:75%!important}[dir=ltr] .ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .ltr\:top-full{top:100%!important}[dir=ltr] .ltr\:right-full{right:100%!important}[dir=ltr] .ltr\:bottom-full{bottom:100%!important}[dir=ltr] .ltr\:left-full{left:100%!important}[dir=rtl] .rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .rtl\:top-0{top:0!important}[dir=rtl] .rtl\:right-0{right:0!important}[dir=rtl] .rtl\:bottom-0{bottom:0!important}[dir=rtl] .rtl\:left-0{left:0!important}[dir=rtl] .rtl\:top-1{top:.25rem!important}[dir=rtl] .rtl\:right-1{right:.25rem!important}[dir=rtl] .rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .rtl\:left-1{left:.25rem!important}[dir=rtl] .rtl\:top-2{top:.5rem!important}[dir=rtl] .rtl\:right-2{right:.5rem!important}[dir=rtl] .rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .rtl\:left-2{left:.5rem!important}[dir=rtl] .rtl\:top-3{top:.75rem!important}[dir=rtl] .rtl\:right-3{right:.75rem!important}[dir=rtl] .rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .rtl\:left-3{left:.75rem!important}[dir=rtl] .rtl\:top-4{top:1rem!important}[dir=rtl] .rtl\:right-4{right:1rem!important}[dir=rtl] .rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .rtl\:left-4{left:1rem!important}[dir=rtl] .rtl\:top-5{top:1.25rem!important}[dir=rtl] .rtl\:right-5{right:1.25rem!important}[dir=rtl] .rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .rtl\:left-5{left:1.25rem!important}[dir=rtl] .rtl\:top-6{top:1.5rem!important}[dir=rtl] .rtl\:right-6{right:1.5rem!important}[dir=rtl] .rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .rtl\:left-6{left:1.5rem!important}[dir=rtl] .rtl\:top-7{top:1.75rem!important}[dir=rtl] .rtl\:right-7{right:1.75rem!important}[dir=rtl] .rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .rtl\:left-7{left:1.75rem!important}[dir=rtl] .rtl\:top-8{top:2rem!important}[dir=rtl] .rtl\:right-8{right:2rem!important}[dir=rtl] .rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .rtl\:left-8{left:2rem!important}[dir=rtl] .rtl\:top-9{top:2.25rem!important}[dir=rtl] .rtl\:right-9{right:2.25rem!important}[dir=rtl] .rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .rtl\:left-9{left:2.25rem!important}[dir=rtl] .rtl\:top-10{top:2.5rem!important}[dir=rtl] .rtl\:right-10{right:2.5rem!important}[dir=rtl] .rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .rtl\:left-10{left:2.5rem!important}[dir=rtl] .rtl\:top-11{top:2.75rem!important}[dir=rtl] .rtl\:right-11{right:2.75rem!important}[dir=rtl] .rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .rtl\:left-11{left:2.75rem!important}[dir=rtl] .rtl\:top-12{top:3rem!important}[dir=rtl] .rtl\:right-12{right:3rem!important}[dir=rtl] .rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .rtl\:left-12{left:3rem!important}[dir=rtl] .rtl\:top-13{top:3.25rem!important}[dir=rtl] .rtl\:right-13{right:3.25rem!important}[dir=rtl] .rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .rtl\:left-13{left:3.25rem!important}[dir=rtl] .rtl\:top-14{top:3.5rem!important}[dir=rtl] .rtl\:right-14{right:3.5rem!important}[dir=rtl] .rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .rtl\:left-14{left:3.5rem!important}[dir=rtl] .rtl\:top-15{top:3.75rem!important}[dir=rtl] .rtl\:right-15{right:3.75rem!important}[dir=rtl] .rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .rtl\:left-15{left:3.75rem!important}[dir=rtl] .rtl\:top-16{top:4rem!important}[dir=rtl] .rtl\:right-16{right:4rem!important}[dir=rtl] .rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .rtl\:left-16{left:4rem!important}[dir=rtl] .rtl\:top-20{top:5rem!important}[dir=rtl] .rtl\:right-20{right:5rem!important}[dir=rtl] .rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .rtl\:left-20{left:5rem!important}[dir=rtl] .rtl\:top-24{top:6rem!important}[dir=rtl] .rtl\:right-24{right:6rem!important}[dir=rtl] .rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .rtl\:left-24{left:6rem!important}[dir=rtl] .rtl\:top-28{top:7rem!important}[dir=rtl] .rtl\:right-28{right:7rem!important}[dir=rtl] .rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .rtl\:left-28{left:7rem!important}[dir=rtl] .rtl\:top-32{top:8rem!important}[dir=rtl] .rtl\:right-32{right:8rem!important}[dir=rtl] .rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .rtl\:left-32{left:8rem!important}[dir=rtl] .rtl\:top-36{top:9rem!important}[dir=rtl] .rtl\:right-36{right:9rem!important}[dir=rtl] .rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .rtl\:left-36{left:9rem!important}[dir=rtl] .rtl\:top-40{top:10rem!important}[dir=rtl] .rtl\:right-40{right:10rem!important}[dir=rtl] .rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .rtl\:left-40{left:10rem!important}[dir=rtl] .rtl\:top-48{top:12rem!important}[dir=rtl] .rtl\:right-48{right:12rem!important}[dir=rtl] .rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .rtl\:left-48{left:12rem!important}[dir=rtl] .rtl\:top-56{top:14rem!important}[dir=rtl] .rtl\:right-56{right:14rem!important}[dir=rtl] .rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .rtl\:left-56{left:14rem!important}[dir=rtl] .rtl\:top-60{top:15rem!important}[dir=rtl] .rtl\:right-60{right:15rem!important}[dir=rtl] .rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .rtl\:left-60{left:15rem!important}[dir=rtl] .rtl\:top-64{top:16rem!important}[dir=rtl] .rtl\:right-64{right:16rem!important}[dir=rtl] .rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .rtl\:left-64{left:16rem!important}[dir=rtl] .rtl\:top-72{top:18rem!important}[dir=rtl] .rtl\:right-72{right:18rem!important}[dir=rtl] .rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .rtl\:left-72{left:18rem!important}[dir=rtl] .rtl\:top-80{top:20rem!important}[dir=rtl] .rtl\:right-80{right:20rem!important}[dir=rtl] .rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .rtl\:left-80{left:20rem!important}[dir=rtl] .rtl\:top-96{top:24rem!important}[dir=rtl] .rtl\:right-96{right:24rem!important}[dir=rtl] .rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .rtl\:left-96{left:24rem!important}[dir=rtl] .rtl\:top-auto{top:auto!important}[dir=rtl] .rtl\:right-auto{right:auto!important}[dir=rtl] .rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .rtl\:left-auto{left:auto!important}[dir=rtl] .rtl\:top-px{top:1px!important}[dir=rtl] .rtl\:right-px{right:1px!important}[dir=rtl] .rtl\:bottom-px{bottom:1px!important}[dir=rtl] .rtl\:left-px{left:1px!important}[dir=rtl] .rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .rtl\:top-1\/2{top:50%!important}[dir=rtl] .rtl\:right-1\/2{right:50%!important}[dir=rtl] .rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .rtl\:left-1\/2{left:50%!important}[dir=rtl] .rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .rtl\:top-1\/4{top:25%!important}[dir=rtl] .rtl\:right-1\/4{right:25%!important}[dir=rtl] .rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .rtl\:left-1\/4{left:25%!important}[dir=rtl] .rtl\:top-2\/4{top:50%!important}[dir=rtl] .rtl\:right-2\/4{right:50%!important}[dir=rtl] .rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .rtl\:left-2\/4{left:50%!important}[dir=rtl] .rtl\:top-3\/4{top:75%!important}[dir=rtl] .rtl\:right-3\/4{right:75%!important}[dir=rtl] .rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .rtl\:left-3\/4{left:75%!important}[dir=rtl] .rtl\:top-1\/5{top:20%!important}[dir=rtl] .rtl\:right-1\/5{right:20%!important}[dir=rtl] .rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .rtl\:left-1\/5{left:20%!important}[dir=rtl] .rtl\:top-2\/5{top:40%!important}[dir=rtl] .rtl\:right-2\/5{right:40%!important}[dir=rtl] .rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .rtl\:left-2\/5{left:40%!important}[dir=rtl] .rtl\:top-3\/5{top:60%!important}[dir=rtl] .rtl\:right-3\/5{right:60%!important}[dir=rtl] .rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .rtl\:left-3\/5{left:60%!important}[dir=rtl] .rtl\:top-4\/5{top:80%!important}[dir=rtl] .rtl\:right-4\/5{right:80%!important}[dir=rtl] .rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .rtl\:left-4\/5{left:80%!important}[dir=rtl] .rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .rtl\:top-3\/6{top:50%!important}[dir=rtl] .rtl\:right-3\/6{right:50%!important}[dir=rtl] .rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .rtl\:left-3\/6{left:50%!important}[dir=rtl] .rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .rtl\:top-3\/12{top:25%!important}[dir=rtl] .rtl\:right-3\/12{right:25%!important}[dir=rtl] .rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .rtl\:left-3\/12{left:25%!important}[dir=rtl] .rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .rtl\:top-6\/12{top:50%!important}[dir=rtl] .rtl\:right-6\/12{right:50%!important}[dir=rtl] .rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .rtl\:left-6\/12{left:50%!important}[dir=rtl] .rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .rtl\:top-9\/12{top:75%!important}[dir=rtl] .rtl\:right-9\/12{right:75%!important}[dir=rtl] .rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .rtl\:left-9\/12{left:75%!important}[dir=rtl] .rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .rtl\:top-full{top:100%!important}[dir=rtl] .rtl\:right-full{right:100%!important}[dir=rtl] .rtl\:bottom-full{bottom:100%!important}[dir=rtl] .rtl\:left-full{left:100%!important}.resize-none{resize:none!important}.resize-y{resize:vertical!important}.resize-x{resize:horizontal!important}.resize{resize:both!important}.shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.shadow-none{box-shadow:none!important}.group:focus .group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .group-focus\:shadow-none{box-shadow:none!important}.hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.hover\:shadow-none:hover{box-shadow:none!important}.focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.focus\:shadow-none:focus{box-shadow:none!important}.fill-current{fill:currentColor!important}.stroke-current{stroke:currentColor!important}.stroke-0{stroke-width:0!important}.stroke-1{stroke-width:1!important}.stroke-2{stroke-width:2!important}.table-auto{table-layout:auto!important}.table-fixed{table-layout:fixed!important}.text-left{text-align:left!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-justify{text-align:justify!important}.text-transparent{color:transparent!important}.text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.text-white-70{color:hsla(0,0%,100%,.7)!important}.text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.text-blackest-70{color:rgba(0,0,0,.7)!important}.text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.text-blue-highlight{color:rgba(180,215,255,.6)!important}.text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.text-red{color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.text-green,.text-red{--text-opacity:1!important}.text-green{color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.hover\:text-transparent:hover{color:transparent!important}.hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.focus\:text-transparent:focus{color:transparent!important}.focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .group-hover\:text-transparent{color:transparent!important}.group:hover .group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.text-opacity-0{--text-opacity:0!important}.text-opacity-25{--text-opacity:0.25!important}.text-opacity-50{--text-opacity:0.5!important}.text-opacity-75{--text-opacity:0.75!important}.text-opacity-100{--text-opacity:1!important}.hover\:text-opacity-0:hover{--text-opacity:0!important}.hover\:text-opacity-25:hover{--text-opacity:0.25!important}.hover\:text-opacity-50:hover{--text-opacity:0.5!important}.hover\:text-opacity-75:hover{--text-opacity:0.75!important}.hover\:text-opacity-100:hover{--text-opacity:1!important}.focus\:text-opacity-0:focus{--text-opacity:0!important}.focus\:text-opacity-25:focus{--text-opacity:0.25!important}.focus\:text-opacity-50:focus{--text-opacity:0.5!important}.focus\:text-opacity-75:focus{--text-opacity:0.75!important}.focus\:text-opacity-100:focus{--text-opacity:1!important}.italic{font-style:italic!important}.not-italic{font-style:normal!important}.uppercase{text-transform:uppercase!important}.lowercase{text-transform:lowercase!important}.capitalize{text-transform:capitalize!important}.normal-case{text-transform:none!important}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.group:hover .group-hover\:underline{text-decoration:underline!important}.group:hover .group-hover\:line-through{text-decoration:line-through!important}.group:hover .group-hover\:no-underline{text-decoration:none!important}.group:focus .group-focus\:underline{text-decoration:underline!important}.group:focus .group-focus\:line-through{text-decoration:line-through!important}.group:focus .group-focus\:no-underline{text-decoration:none!important}.hover\:underline:hover{text-decoration:underline!important}.hover\:line-through:hover{text-decoration:line-through!important}.hover\:no-underline:hover{text-decoration:none!important}.focus\:underline:focus{text-decoration:underline!important}.focus\:line-through:focus{text-decoration:line-through!important}.focus\:no-underline:focus{text-decoration:none!important}.antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.diagonal-fractions,.lining-nums,.oldstyle-nums,.ordinal,.proportional-nums,.slashed-zero,.stacked-fractions,.tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.normal-nums{font-variant-numeric:normal!important}.ordinal{--font-variant-numeric-ordinal:ordinal!important}.slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.lining-nums{--font-variant-numeric-figure:lining-nums!important}.oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.tracking-tighter{letter-spacing:-.05em!important}.tracking-tight{letter-spacing:-.025em!important}.tracking-normal{letter-spacing:0!important}.tracking-wide{letter-spacing:.025em!important}.tracking-wider{letter-spacing:.05em!important}.tracking-widest{letter-spacing:.1em!important}.select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-top{vertical-align:text-top!important}.align-text-bottom{vertical-align:text-bottom!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.whitespace-normal{white-space:normal!important}.whitespace-no-wrap{white-space:nowrap!important}.whitespace-pre{white-space:pre!important}.whitespace-pre-line{white-space:pre-line!important}.whitespace-pre-wrap{white-space:pre-wrap!important}.break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.break-all{word-break:break-all!important}.truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.w-0{width:0!important}.w-1{width:.25rem!important}.w-2{width:.5rem!important}.w-3{width:.75rem!important}.w-4{width:1rem!important}.w-5{width:1.25rem!important}.w-6{width:1.5rem!important}.w-7{width:1.75rem!important}.w-8{width:2rem!important}.w-9{width:2.25rem!important}.w-10{width:2.5rem!important}.w-11{width:2.75rem!important}.w-12{width:3rem!important}.w-13{width:3.25rem!important}.w-14{width:3.5rem!important}.w-15{width:3.75rem!important}.w-16{width:4rem!important}.w-20{width:5rem!important}.w-24{width:6rem!important}.w-28{width:7rem!important}.w-32{width:8rem!important}.w-36{width:9rem!important}.w-40{width:10rem!important}.w-48{width:12rem!important}.w-56{width:14rem!important}.w-60{width:15rem!important}.w-64{width:16rem!important}.w-72{width:18rem!important}.w-80{width:20rem!important}.w-96{width:24rem!important}.w-auto{width:auto!important}.w-px{width:1px!important}.w-0\.5{width:.125rem!important}.w-1\.5{width:.375rem!important}.w-2\.5{width:.625rem!important}.w-3\.5{width:.875rem!important}.w-1\/2{width:50%!important}.w-1\/3{width:33.333333%!important}.w-2\/3{width:66.666667%!important}.w-1\/4{width:25%!important}.w-2\/4{width:50%!important}.w-3\/4{width:75%!important}.w-1\/5{width:20%!important}.w-2\/5{width:40%!important}.w-3\/5{width:60%!important}.w-4\/5{width:80%!important}.w-1\/6{width:16.666667%!important}.w-2\/6{width:33.333333%!important}.w-3\/6{width:50%!important}.w-4\/6{width:66.666667%!important}.w-5\/6{width:83.333333%!important}.w-1\/12{width:8.333333%!important}.w-2\/12{width:16.666667%!important}.w-3\/12{width:25%!important}.w-4\/12{width:33.333333%!important}.w-5\/12{width:41.666667%!important}.w-6\/12{width:50%!important}.w-7\/12{width:58.333333%!important}.w-8\/12{width:66.666667%!important}.w-9\/12{width:75%!important}.w-10\/12{width:83.333333%!important}.w-11\/12{width:91.666667%!important}.w-full{width:100%!important}.w-screen{width:100vw!important}.z-0{z-index:0!important}.z-10{z-index:10!important}.z-20{z-index:20!important}.z-30{z-index:30!important}.z-40{z-index:40!important}.z-50{z-index:50!important}.z-999{z-index:999!important}.z-auto{z-index:auto!important}.z-max{z-index:2147483647!important}.focus-within\:z-0:focus-within{z-index:0!important}.focus-within\:z-10:focus-within{z-index:10!important}.focus-within\:z-20:focus-within{z-index:20!important}.focus-within\:z-30:focus-within{z-index:30!important}.focus-within\:z-40:focus-within{z-index:40!important}.focus-within\:z-50:focus-within{z-index:50!important}.focus-within\:z-999:focus-within{z-index:999!important}.focus-within\:z-auto:focus-within{z-index:auto!important}.focus-within\:z-max:focus-within{z-index:2147483647!important}.focus\:z-0:focus{z-index:0!important}.focus\:z-10:focus{z-index:10!important}.focus\:z-20:focus{z-index:20!important}.focus\:z-30:focus{z-index:30!important}.focus\:z-40:focus{z-index:40!important}.focus\:z-50:focus{z-index:50!important}.focus\:z-999:focus{z-index:999!important}.focus\:z-auto:focus{z-index:auto!important}.focus\:z-max:focus{z-index:2147483647!important}.gap-0{grid-gap:0!important;gap:0!important}.gap-1{grid-gap:.25rem!important;gap:.25rem!important}.gap-2{grid-gap:.5rem!important;gap:.5rem!important}.gap-3{grid-gap:.75rem!important;gap:.75rem!important}.gap-4{grid-gap:1rem!important;gap:1rem!important}.gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.gap-8{grid-gap:2rem!important;gap:2rem!important}.gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.gap-12{grid-gap:3rem!important;gap:3rem!important}.gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.gap-16{grid-gap:4rem!important;gap:4rem!important}.gap-20{grid-gap:5rem!important;gap:5rem!important}.gap-24{grid-gap:6rem!important;gap:6rem!important}.gap-28{grid-gap:7rem!important;gap:7rem!important}.gap-32{grid-gap:8rem!important;gap:8rem!important}.gap-36{grid-gap:9rem!important;gap:9rem!important}.gap-40{grid-gap:10rem!important;gap:10rem!important}.gap-48{grid-gap:12rem!important;gap:12rem!important}.gap-56{grid-gap:14rem!important;gap:14rem!important}.gap-60{grid-gap:15rem!important;gap:15rem!important}.gap-64{grid-gap:16rem!important;gap:16rem!important}.gap-72{grid-gap:18rem!important;gap:18rem!important}.gap-80{grid-gap:20rem!important;gap:20rem!important}.gap-96{grid-gap:24rem!important;gap:24rem!important}.gap-px{grid-gap:1px!important;gap:1px!important}.gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.gap-1\/2{grid-gap:50%!important;gap:50%!important}.gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.gap-1\/4{grid-gap:25%!important;gap:25%!important}.gap-2\/4{grid-gap:50%!important;gap:50%!important}.gap-3\/4{grid-gap:75%!important;gap:75%!important}.gap-1\/5{grid-gap:20%!important;gap:20%!important}.gap-2\/5{grid-gap:40%!important;gap:40%!important}.gap-3\/5{grid-gap:60%!important;gap:60%!important}.gap-4\/5{grid-gap:80%!important;gap:80%!important}.gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.gap-3\/6{grid-gap:50%!important;gap:50%!important}.gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.gap-3\/12{grid-gap:25%!important;gap:25%!important}.gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.gap-6\/12{grid-gap:50%!important;gap:50%!important}.gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.gap-9\/12{grid-gap:75%!important;gap:75%!important}.gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.gap-full{grid-gap:100%!important;gap:100%!important}.gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.gap-y-0{grid-row-gap:0!important;row-gap:0!important}.gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.grid-flow-row{grid-auto-flow:row!important}.grid-flow-col{grid-auto-flow:column!important}.grid-flow-row-dense{grid-auto-flow:row dense!important}.grid-flow-col-dense{grid-auto-flow:column dense!important}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.grid-cols-none{grid-template-columns:none!important}.auto-cols-auto{grid-auto-columns:auto!important}.auto-cols-min{grid-auto-columns:min-content!important}.auto-cols-max{grid-auto-columns:max-content!important}.auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.col-auto{grid-column:auto!important}.col-span-1{grid-column:span 1/span 1!important}.col-span-2{grid-column:span 2/span 2!important}.col-span-3{grid-column:span 3/span 3!important}.col-span-4{grid-column:span 4/span 4!important}.col-span-5{grid-column:span 5/span 5!important}.col-span-6{grid-column:span 6/span 6!important}.col-span-7{grid-column:span 7/span 7!important}.col-span-8{grid-column:span 8/span 8!important}.col-span-9{grid-column:span 9/span 9!important}.col-span-10{grid-column:span 10/span 10!important}.col-span-11{grid-column:span 11/span 11!important}.col-span-12{grid-column:span 12/span 12!important}.col-span-full{grid-column:1/-1!important}.col-start-1{grid-column-start:1!important}.col-start-2{grid-column-start:2!important}.col-start-3{grid-column-start:3!important}.col-start-4{grid-column-start:4!important}.col-start-5{grid-column-start:5!important}.col-start-6{grid-column-start:6!important}.col-start-7{grid-column-start:7!important}.col-start-8{grid-column-start:8!important}.col-start-9{grid-column-start:9!important}.col-start-10{grid-column-start:10!important}.col-start-11{grid-column-start:11!important}.col-start-12{grid-column-start:12!important}.col-start-13{grid-column-start:13!important}.col-start-auto{grid-column-start:auto!important}.col-end-1{grid-column-end:1!important}.col-end-2{grid-column-end:2!important}.col-end-3{grid-column-end:3!important}.col-end-4{grid-column-end:4!important}.col-end-5{grid-column-end:5!important}.col-end-6{grid-column-end:6!important}.col-end-7{grid-column-end:7!important}.col-end-8{grid-column-end:8!important}.col-end-9{grid-column-end:9!important}.col-end-10{grid-column-end:10!important}.col-end-11{grid-column-end:11!important}.col-end-12{grid-column-end:12!important}.col-end-13{grid-column-end:13!important}.col-end-auto{grid-column-end:auto!important}.grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.grid-rows-none{grid-template-rows:none!important}.auto-rows-auto{grid-auto-rows:auto!important}.auto-rows-min{grid-auto-rows:min-content!important}.auto-rows-max{grid-auto-rows:max-content!important}.auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.row-auto{grid-row:auto!important}.row-span-1{grid-row:span 1/span 1!important}.row-span-2{grid-row:span 2/span 2!important}.row-span-3{grid-row:span 3/span 3!important}.row-span-4{grid-row:span 4/span 4!important}.row-span-5{grid-row:span 5/span 5!important}.row-span-6{grid-row:span 6/span 6!important}.row-span-full{grid-row:1/-1!important}.row-start-1{grid-row-start:1!important}.row-start-2{grid-row-start:2!important}.row-start-3{grid-row-start:3!important}.row-start-4{grid-row-start:4!important}.row-start-5{grid-row-start:5!important}.row-start-6{grid-row-start:6!important}.row-start-7{grid-row-start:7!important}.row-start-auto{grid-row-start:auto!important}.row-end-1{grid-row-end:1!important}.row-end-2{grid-row-end:2!important}.row-end-3{grid-row-end:3!important}.row-end-4{grid-row-end:4!important}.row-end-5{grid-row-end:5!important}.row-end-6{grid-row-end:6!important}.row-end-7{grid-row-end:7!important}.row-end-auto{grid-row-end:auto!important}.transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.transform-none{transform:none!important}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top left!important}.scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.scale-x-0{--transform-scale-x:0!important}.scale-x-50{--transform-scale-x:.5!important}.scale-x-75{--transform-scale-x:.75!important}.scale-x-90{--transform-scale-x:.9!important}.scale-x-95{--transform-scale-x:.95!important}.scale-x-100{--transform-scale-x:1!important}.scale-x-105{--transform-scale-x:1.05!important}.scale-x-110{--transform-scale-x:1.1!important}.scale-x-125{--transform-scale-x:1.25!important}.scale-x-150{--transform-scale-x:1.5!important}.scale-y-0{--transform-scale-y:0!important}.scale-y-50{--transform-scale-y:.5!important}.scale-y-75{--transform-scale-y:.75!important}.scale-y-90{--transform-scale-y:.9!important}.scale-y-95{--transform-scale-y:.95!important}.scale-y-100{--transform-scale-y:1!important}.scale-y-105{--transform-scale-y:1.05!important}.scale-y-110{--transform-scale-y:1.1!important}.scale-y-125{--transform-scale-y:1.25!important}.scale-y-150{--transform-scale-y:1.5!important}.hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.hover\:scale-x-0:hover{--transform-scale-x:0!important}.hover\:scale-x-50:hover{--transform-scale-x:.5!important}.hover\:scale-x-75:hover{--transform-scale-x:.75!important}.hover\:scale-x-90:hover{--transform-scale-x:.9!important}.hover\:scale-x-95:hover{--transform-scale-x:.95!important}.hover\:scale-x-100:hover{--transform-scale-x:1!important}.hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.hover\:scale-y-0:hover{--transform-scale-y:0!important}.hover\:scale-y-50:hover{--transform-scale-y:.5!important}.hover\:scale-y-75:hover{--transform-scale-y:.75!important}.hover\:scale-y-90:hover{--transform-scale-y:.9!important}.hover\:scale-y-95:hover{--transform-scale-y:.95!important}.hover\:scale-y-100:hover{--transform-scale-y:1!important}.hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.focus\:scale-x-0:focus{--transform-scale-x:0!important}.focus\:scale-x-50:focus{--transform-scale-x:.5!important}.focus\:scale-x-75:focus{--transform-scale-x:.75!important}.focus\:scale-x-90:focus{--transform-scale-x:.9!important}.focus\:scale-x-95:focus{--transform-scale-x:.95!important}.focus\:scale-x-100:focus{--transform-scale-x:1!important}.focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.focus\:scale-y-0:focus{--transform-scale-y:0!important}.focus\:scale-y-50:focus{--transform-scale-y:.5!important}.focus\:scale-y-75:focus{--transform-scale-y:.75!important}.focus\:scale-y-90:focus{--transform-scale-y:.9!important}.focus\:scale-y-95:focus{--transform-scale-y:.95!important}.focus\:scale-y-100:focus{--transform-scale-y:1!important}.focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.rotate-0{--transform-rotate:0!important}.rotate-1{--transform-rotate:1deg!important}.rotate-2{--transform-rotate:2deg!important}.rotate-3{--transform-rotate:3deg!important}.rotate-6{--transform-rotate:6deg!important}.rotate-12{--transform-rotate:12deg!important}.rotate-45{--transform-rotate:45deg!important}.rotate-90{--transform-rotate:90deg!important}.rotate-180{--transform-rotate:180deg!important}.-rotate-180{--transform-rotate:-180deg!important}.-rotate-90{--transform-rotate:-90deg!important}.-rotate-45{--transform-rotate:-45deg!important}.-rotate-12{--transform-rotate:-12deg!important}.-rotate-6{--transform-rotate:-6deg!important}.-rotate-3{--transform-rotate:-3deg!important}.-rotate-2{--transform-rotate:-2deg!important}.-rotate-1{--transform-rotate:-1deg!important}.hover\:rotate-0:hover{--transform-rotate:0!important}.hover\:rotate-1:hover{--transform-rotate:1deg!important}.hover\:rotate-2:hover{--transform-rotate:2deg!important}.hover\:rotate-3:hover{--transform-rotate:3deg!important}.hover\:rotate-6:hover{--transform-rotate:6deg!important}.hover\:rotate-12:hover{--transform-rotate:12deg!important}.hover\:rotate-45:hover{--transform-rotate:45deg!important}.hover\:rotate-90:hover{--transform-rotate:90deg!important}.hover\:rotate-180:hover{--transform-rotate:180deg!important}.hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.focus\:rotate-0:focus{--transform-rotate:0!important}.focus\:rotate-1:focus{--transform-rotate:1deg!important}.focus\:rotate-2:focus{--transform-rotate:2deg!important}.focus\:rotate-3:focus{--transform-rotate:3deg!important}.focus\:rotate-6:focus{--transform-rotate:6deg!important}.focus\:rotate-12:focus{--transform-rotate:12deg!important}.focus\:rotate-45:focus{--transform-rotate:45deg!important}.focus\:rotate-90:focus{--transform-rotate:90deg!important}.focus\:rotate-180:focus{--transform-rotate:180deg!important}.focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.translate-x-0{--transform-translate-x:0!important}.translate-x-1{--transform-translate-x:0.25rem!important}.translate-x-2{--transform-translate-x:0.5rem!important}.translate-x-3{--transform-translate-x:0.75rem!important}.translate-x-4{--transform-translate-x:1rem!important}.translate-x-5{--transform-translate-x:1.25rem!important}.translate-x-6{--transform-translate-x:1.5rem!important}.translate-x-7{--transform-translate-x:1.75rem!important}.translate-x-8{--transform-translate-x:2rem!important}.translate-x-9{--transform-translate-x:2.25rem!important}.translate-x-10{--transform-translate-x:2.5rem!important}.translate-x-11{--transform-translate-x:2.75rem!important}.translate-x-12{--transform-translate-x:3rem!important}.translate-x-13{--transform-translate-x:3.25rem!important}.translate-x-14{--transform-translate-x:3.5rem!important}.translate-x-15{--transform-translate-x:3.75rem!important}.translate-x-16{--transform-translate-x:4rem!important}.translate-x-20{--transform-translate-x:5rem!important}.translate-x-24{--transform-translate-x:6rem!important}.translate-x-28{--transform-translate-x:7rem!important}.translate-x-32{--transform-translate-x:8rem!important}.translate-x-36{--transform-translate-x:9rem!important}.translate-x-40{--transform-translate-x:10rem!important}.translate-x-48{--transform-translate-x:12rem!important}.translate-x-56{--transform-translate-x:14rem!important}.translate-x-60{--transform-translate-x:15rem!important}.translate-x-64{--transform-translate-x:16rem!important}.translate-x-72{--transform-translate-x:18rem!important}.translate-x-80{--transform-translate-x:20rem!important}.translate-x-96{--transform-translate-x:24rem!important}.translate-x-px{--transform-translate-x:1px!important}.translate-x-0\.5{--transform-translate-x:0.125rem!important}.translate-x-1\.5{--transform-translate-x:0.375rem!important}.translate-x-2\.5{--transform-translate-x:0.625rem!important}.translate-x-3\.5{--transform-translate-x:0.875rem!important}.translate-x-1\/2{--transform-translate-x:50%!important}.translate-x-1\/3{--transform-translate-x:33.333333%!important}.translate-x-2\/3{--transform-translate-x:66.666667%!important}.translate-x-1\/4{--transform-translate-x:25%!important}.translate-x-2\/4{--transform-translate-x:50%!important}.translate-x-3\/4{--transform-translate-x:75%!important}.translate-x-1\/5{--transform-translate-x:20%!important}.translate-x-2\/5{--transform-translate-x:40%!important}.translate-x-3\/5{--transform-translate-x:60%!important}.translate-x-4\/5{--transform-translate-x:80%!important}.translate-x-1\/6{--transform-translate-x:16.666667%!important}.translate-x-2\/6{--transform-translate-x:33.333333%!important}.translate-x-3\/6{--transform-translate-x:50%!important}.translate-x-4\/6{--transform-translate-x:66.666667%!important}.translate-x-5\/6{--transform-translate-x:83.333333%!important}.translate-x-1\/12{--transform-translate-x:8.333333%!important}.translate-x-2\/12{--transform-translate-x:16.666667%!important}.translate-x-3\/12{--transform-translate-x:25%!important}.translate-x-4\/12{--transform-translate-x:33.333333%!important}.translate-x-5\/12{--transform-translate-x:41.666667%!important}.translate-x-6\/12{--transform-translate-x:50%!important}.translate-x-7\/12{--transform-translate-x:58.333333%!important}.translate-x-8\/12{--transform-translate-x:66.666667%!important}.translate-x-9\/12{--transform-translate-x:75%!important}.translate-x-10\/12{--transform-translate-x:83.333333%!important}.translate-x-11\/12{--transform-translate-x:91.666667%!important}.translate-x-full{--transform-translate-x:100%!important}.-translate-x-1{--transform-translate-x:-0.25rem!important}.-translate-x-2{--transform-translate-x:-0.5rem!important}.-translate-x-3{--transform-translate-x:-0.75rem!important}.-translate-x-4{--transform-translate-x:-1rem!important}.-translate-x-5{--transform-translate-x:-1.25rem!important}.-translate-x-6{--transform-translate-x:-1.5rem!important}.-translate-x-7{--transform-translate-x:-1.75rem!important}.-translate-x-8{--transform-translate-x:-2rem!important}.-translate-x-9{--transform-translate-x:-2.25rem!important}.-translate-x-10{--transform-translate-x:-2.5rem!important}.-translate-x-11{--transform-translate-x:-2.75rem!important}.-translate-x-12{--transform-translate-x:-3rem!important}.-translate-x-13{--transform-translate-x:-3.25rem!important}.-translate-x-14{--transform-translate-x:-3.5rem!important}.-translate-x-15{--transform-translate-x:-3.75rem!important}.-translate-x-16{--transform-translate-x:-4rem!important}.-translate-x-20{--transform-translate-x:-5rem!important}.-translate-x-24{--transform-translate-x:-6rem!important}.-translate-x-28{--transform-translate-x:-7rem!important}.-translate-x-32{--transform-translate-x:-8rem!important}.-translate-x-36{--transform-translate-x:-9rem!important}.-translate-x-40{--transform-translate-x:-10rem!important}.-translate-x-48{--transform-translate-x:-12rem!important}.-translate-x-56{--transform-translate-x:-14rem!important}.-translate-x-60{--transform-translate-x:-15rem!important}.-translate-x-64{--transform-translate-x:-16rem!important}.-translate-x-72{--transform-translate-x:-18rem!important}.-translate-x-80{--transform-translate-x:-20rem!important}.-translate-x-96{--transform-translate-x:-24rem!important}.-translate-x-px{--transform-translate-x:-1px!important}.-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.-translate-x-1\/2{--transform-translate-x:-50%!important}.-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.-translate-x-1\/4{--transform-translate-x:-25%!important}.-translate-x-2\/4{--transform-translate-x:-50%!important}.-translate-x-3\/4{--transform-translate-x:-75%!important}.-translate-x-1\/5{--transform-translate-x:-20%!important}.-translate-x-2\/5{--transform-translate-x:-40%!important}.-translate-x-3\/5{--transform-translate-x:-60%!important}.-translate-x-4\/5{--transform-translate-x:-80%!important}.-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.-translate-x-3\/6{--transform-translate-x:-50%!important}.-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.-translate-x-3\/12{--transform-translate-x:-25%!important}.-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.-translate-x-6\/12{--transform-translate-x:-50%!important}.-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.-translate-x-9\/12{--transform-translate-x:-75%!important}.-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.-translate-x-full{--transform-translate-x:-100%!important}.translate-y-0{--transform-translate-y:0!important}.translate-y-1{--transform-translate-y:0.25rem!important}.translate-y-2{--transform-translate-y:0.5rem!important}.translate-y-3{--transform-translate-y:0.75rem!important}.translate-y-4{--transform-translate-y:1rem!important}.translate-y-5{--transform-translate-y:1.25rem!important}.translate-y-6{--transform-translate-y:1.5rem!important}.translate-y-7{--transform-translate-y:1.75rem!important}.translate-y-8{--transform-translate-y:2rem!important}.translate-y-9{--transform-translate-y:2.25rem!important}.translate-y-10{--transform-translate-y:2.5rem!important}.translate-y-11{--transform-translate-y:2.75rem!important}.translate-y-12{--transform-translate-y:3rem!important}.translate-y-13{--transform-translate-y:3.25rem!important}.translate-y-14{--transform-translate-y:3.5rem!important}.translate-y-15{--transform-translate-y:3.75rem!important}.translate-y-16{--transform-translate-y:4rem!important}.translate-y-20{--transform-translate-y:5rem!important}.translate-y-24{--transform-translate-y:6rem!important}.translate-y-28{--transform-translate-y:7rem!important}.translate-y-32{--transform-translate-y:8rem!important}.translate-y-36{--transform-translate-y:9rem!important}.translate-y-40{--transform-translate-y:10rem!important}.translate-y-48{--transform-translate-y:12rem!important}.translate-y-56{--transform-translate-y:14rem!important}.translate-y-60{--transform-translate-y:15rem!important}.translate-y-64{--transform-translate-y:16rem!important}.translate-y-72{--transform-translate-y:18rem!important}.translate-y-80{--transform-translate-y:20rem!important}.translate-y-96{--transform-translate-y:24rem!important}.translate-y-px{--transform-translate-y:1px!important}.translate-y-0\.5{--transform-translate-y:0.125rem!important}.translate-y-1\.5{--transform-translate-y:0.375rem!important}.translate-y-2\.5{--transform-translate-y:0.625rem!important}.translate-y-3\.5{--transform-translate-y:0.875rem!important}.translate-y-1\/2{--transform-translate-y:50%!important}.translate-y-1\/3{--transform-translate-y:33.333333%!important}.translate-y-2\/3{--transform-translate-y:66.666667%!important}.translate-y-1\/4{--transform-translate-y:25%!important}.translate-y-2\/4{--transform-translate-y:50%!important}.translate-y-3\/4{--transform-translate-y:75%!important}.translate-y-1\/5{--transform-translate-y:20%!important}.translate-y-2\/5{--transform-translate-y:40%!important}.translate-y-3\/5{--transform-translate-y:60%!important}.translate-y-4\/5{--transform-translate-y:80%!important}.translate-y-1\/6{--transform-translate-y:16.666667%!important}.translate-y-2\/6{--transform-translate-y:33.333333%!important}.translate-y-3\/6{--transform-translate-y:50%!important}.translate-y-4\/6{--transform-translate-y:66.666667%!important}.translate-y-5\/6{--transform-translate-y:83.333333%!important}.translate-y-1\/12{--transform-translate-y:8.333333%!important}.translate-y-2\/12{--transform-translate-y:16.666667%!important}.translate-y-3\/12{--transform-translate-y:25%!important}.translate-y-4\/12{--transform-translate-y:33.333333%!important}.translate-y-5\/12{--transform-translate-y:41.666667%!important}.translate-y-6\/12{--transform-translate-y:50%!important}.translate-y-7\/12{--transform-translate-y:58.333333%!important}.translate-y-8\/12{--transform-translate-y:66.666667%!important}.translate-y-9\/12{--transform-translate-y:75%!important}.translate-y-10\/12{--transform-translate-y:83.333333%!important}.translate-y-11\/12{--transform-translate-y:91.666667%!important}.translate-y-full{--transform-translate-y:100%!important}.-translate-y-1{--transform-translate-y:-0.25rem!important}.-translate-y-2{--transform-translate-y:-0.5rem!important}.-translate-y-3{--transform-translate-y:-0.75rem!important}.-translate-y-4{--transform-translate-y:-1rem!important}.-translate-y-5{--transform-translate-y:-1.25rem!important}.-translate-y-6{--transform-translate-y:-1.5rem!important}.-translate-y-7{--transform-translate-y:-1.75rem!important}.-translate-y-8{--transform-translate-y:-2rem!important}.-translate-y-9{--transform-translate-y:-2.25rem!important}.-translate-y-10{--transform-translate-y:-2.5rem!important}.-translate-y-11{--transform-translate-y:-2.75rem!important}.-translate-y-12{--transform-translate-y:-3rem!important}.-translate-y-13{--transform-translate-y:-3.25rem!important}.-translate-y-14{--transform-translate-y:-3.5rem!important}.-translate-y-15{--transform-translate-y:-3.75rem!important}.-translate-y-16{--transform-translate-y:-4rem!important}.-translate-y-20{--transform-translate-y:-5rem!important}.-translate-y-24{--transform-translate-y:-6rem!important}.-translate-y-28{--transform-translate-y:-7rem!important}.-translate-y-32{--transform-translate-y:-8rem!important}.-translate-y-36{--transform-translate-y:-9rem!important}.-translate-y-40{--transform-translate-y:-10rem!important}.-translate-y-48{--transform-translate-y:-12rem!important}.-translate-y-56{--transform-translate-y:-14rem!important}.-translate-y-60{--transform-translate-y:-15rem!important}.-translate-y-64{--transform-translate-y:-16rem!important}.-translate-y-72{--transform-translate-y:-18rem!important}.-translate-y-80{--transform-translate-y:-20rem!important}.-translate-y-96{--transform-translate-y:-24rem!important}.-translate-y-px{--transform-translate-y:-1px!important}.-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.-translate-y-1\/2{--transform-translate-y:-50%!important}.-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.-translate-y-1\/4{--transform-translate-y:-25%!important}.-translate-y-2\/4{--transform-translate-y:-50%!important}.-translate-y-3\/4{--transform-translate-y:-75%!important}.-translate-y-1\/5{--transform-translate-y:-20%!important}.-translate-y-2\/5{--transform-translate-y:-40%!important}.-translate-y-3\/5{--transform-translate-y:-60%!important}.-translate-y-4\/5{--transform-translate-y:-80%!important}.-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.-translate-y-3\/6{--transform-translate-y:-50%!important}.-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.-translate-y-3\/12{--transform-translate-y:-25%!important}.-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.-translate-y-6\/12{--transform-translate-y:-50%!important}.-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.-translate-y-9\/12{--transform-translate-y:-75%!important}.-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.-translate-y-full{--transform-translate-y:-100%!important}.hover\:translate-x-0:hover{--transform-translate-x:0!important}.hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.hover\:translate-x-px:hover{--transform-translate-x:1px!important}.hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.hover\:translate-x-full:hover{--transform-translate-x:100%!important}.hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.hover\:translate-y-0:hover{--transform-translate-y:0!important}.hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.hover\:translate-y-px:hover{--transform-translate-y:1px!important}.hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.hover\:translate-y-full:hover{--transform-translate-y:100%!important}.hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.focus\:translate-x-0:focus{--transform-translate-x:0!important}.focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.focus\:translate-x-px:focus{--transform-translate-x:1px!important}.focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.focus\:translate-x-full:focus{--transform-translate-x:100%!important}.focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.focus\:translate-y-0:focus{--transform-translate-y:0!important}.focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.focus\:translate-y-px:focus{--transform-translate-y:1px!important}.focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.focus\:translate-y-full:focus{--transform-translate-y:100%!important}.focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.skew-x-0{--transform-skew-x:0!important}.skew-x-1{--transform-skew-x:1deg!important}.skew-x-2{--transform-skew-x:2deg!important}.skew-x-3{--transform-skew-x:3deg!important}.skew-x-6{--transform-skew-x:6deg!important}.skew-x-12{--transform-skew-x:12deg!important}.-skew-x-12{--transform-skew-x:-12deg!important}.-skew-x-6{--transform-skew-x:-6deg!important}.-skew-x-3{--transform-skew-x:-3deg!important}.-skew-x-2{--transform-skew-x:-2deg!important}.-skew-x-1{--transform-skew-x:-1deg!important}.skew-y-0{--transform-skew-y:0!important}.skew-y-1{--transform-skew-y:1deg!important}.skew-y-2{--transform-skew-y:2deg!important}.skew-y-3{--transform-skew-y:3deg!important}.skew-y-6{--transform-skew-y:6deg!important}.skew-y-12{--transform-skew-y:12deg!important}.-skew-y-12{--transform-skew-y:-12deg!important}.-skew-y-6{--transform-skew-y:-6deg!important}.-skew-y-3{--transform-skew-y:-3deg!important}.-skew-y-2{--transform-skew-y:-2deg!important}.-skew-y-1{--transform-skew-y:-1deg!important}.hover\:skew-x-0:hover{--transform-skew-x:0!important}.hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.hover\:skew-y-0:hover{--transform-skew-y:0!important}.hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.focus\:skew-x-0:focus{--transform-skew-x:0!important}.focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.focus\:skew-y-0:focus{--transform-skew-y:0!important}.focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.transition-opacity{transition-property:opacity!important}.transition-shadow{transition-property:box-shadow!important}.transition-transform{transition-property:transform!important}.ease-linear{transition-timing-function:linear!important}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.duration-75{transition-duration:75ms!important}.duration-100{transition-duration:.1s!important}.duration-150{transition-duration:.15s!important}.duration-200{transition-duration:.2s!important}.duration-300{transition-duration:.3s!important}.duration-500{transition-duration:.5s!important}.duration-700{transition-duration:.7s!important}.duration-1000{transition-duration:1s!important}.duration-2000{transition-duration:2s!important}.delay-75{transition-delay:75ms!important}.delay-100{transition-delay:.1s!important}.delay-150{transition-delay:.15s!important}.delay-200{transition-delay:.2s!important}.delay-300{transition-delay:.3s!important}.delay-500{transition-delay:.5s!important}.delay-700{transition-delay:.7s!important}.delay-1000{transition-delay:1s!important}@keyframes spin{to{transform:rotate(1turn)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}.animate-none{animation:none!important}.animate-spin{animation:spin 1s linear infinite!important}.animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.animate-bounce{animation:bounce 1s infinite!important}h1{margin-bottom:1rem!important}h1,p{margin-top:0!important}p{margin-bottom:.75rem!important}code{font-size:inherit!important}.respect-ie11 .tabs-content{max-width:42rem}::-ms-clear{display:none}.metaslider_page_metaslider-settings #ms-toolbar{position:sticky}.metaslider_page_metaslider-settings #wpfooter{display:none}div#wpcontent{padding-left:0!important;padding-right:0!important}div#wpbody-content{--bg-opacity:1;background-color:#dae1e7;background-color:rgba(218,225,231,var(--bg-opacity));padding-bottom:0}div#wpbody-content>.notice{margin:1.5rem}img{border-style:none}#adminmenu .wp-menu-image img{border-width:0;box-sizing:initial;display:inline}.update-nag,div#wpfooter{display:none!important}.placeholder-gray-darker::-moz-placeholder{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.placeholder-gray-darker::placeholder{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.metaslider-ui option:disabled{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important;font-style:italic!important}.metaslider-ui select:not([class*=mr-]){margin:0!important}.swal2-container{z-index:99999999!important}.pop-in-quick-top-enter{opacity:0;transform:translateY(-8px)}.pop-in-quick-top-enter-active{transition:all .3s ease}.pop-in-quick-top-leave-active{opacity:0;transform:translateY(0);transition:none}.settings-fade-enter-active,.settings-fade-leave-active{transition:opacity .3s ease}.settings-fade-enter,.settings-fade-leave-to{opacity:0}#metaslider-ui,.container{margin-left:auto;margin-right:auto;min-width:1280px;padding-left:.5rem;padding-right:.5rem}.container{max-width:1280px}pre#shortcode ::-moz-selection,pre#shortcode::-moz-selection{--text-opacity:1;background-color:rgba(180,215,255,.6);color:#606f7b;color:rgba(96,111,123,var(--text-opacity))}pre#shortcode ::selection,pre#shortcode::selection{--text-opacity:1;background-color:rgba(180,215,255,.6);color:#606f7b;color:rgba(96,111,123,var(--text-opacity))}.metaslider.wrap div.error,.metaslider.wrap div.updated{clear:both}.metaslider .left input[type=text],.metaslider .left textarea{border:1px solid #8c8f94;border-radius:4px;box-shadow:inherit;resize:none}.metaslider .left select{line-height:28px}.media-frame-menu .separator{display:none}.msTipsy .tipsy-arrow-s{border-top-color:#555}.msTipsy .tipsy-arrow-w{border-right-color:#555}.msTipsy .tipsy-arrow-n{border-bottom-color:#555}.msTipsy .tipsy-inner{background-color:#555;color:#fff}.msTipsy .tipsy-arrow-e{border-left-color:#555}#cboxLoadedContent{overflow:hidden!important}#cboxLoadedContent iframe{border:0;display:block;height:100%;width:100%}.metaslider .ms-settings-table{border-bottom:1px solid #c3c4c7;border-collapse:collapse;box-shadow:0 1px 1px rgba(0,0,0,.04);width:100%}.metaslider .ms-settings-table tr{background:#fff;border-color:#c3c4c7;border-style:solid;border-width:0 1px}.metaslider .ms-settings-table tr.highlight{background:#f1f1f1;border-bottom-width:1px;border-top-width:1px}.metaslider .ms-settings-table tr.slider-lib{background:transparent;border-left-width:0;border-right-width:0}.metaslider .ms-settings-table tr.slider-lib td{height:30px;padding:0}.metaslider .ms-settings-table tr td{line-height:1.5em;padding:6px 20px;vertical-align:middle}.metaslider .ms-settings-table tr.highlight td{color:#50575e;font-size:1.2em;font-weight:700;line-height:2em;padding-left:20px;padding-right:20px}.metaslider .ms-settings-table tr:not(.highlight) td:first-of-type{width:40%}.metaslider .ms-settings-table tr:not(.highlight) td:nth-of-type(2){width:60%}.metaslider .ms-settings-table tr.empty-row-spacing td{height:22px}.metaslider .ms-switch-button{display:inline-block;height:24px;line-height:19.5px;margin:0 8px 0 0;position:relative;vertical-align:middle;width:44px}.metaslider .ms-switch-button label{margin:17px 0}.metaslider .ms-switch-button label input{display:none!important}.metaslider .ms-switch-button label input:checked+span{background-color:#dd6923}.metaslider .ms-switch-button label input:checked+span:before{transform:translateX(20px)}.metaslider .ms-switch-button label span{background-color:#ccc;border-radius:40px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.1s;width:auto}.metaslider .ms-switch-button label span:before{background-color:#fff;border-radius:50%;bottom:2px;content:"";height:20px;left:2px;position:absolute;transition:.1s;width:20px}.theme-select-module .change-theme-img-button{margin-bottom:7px;position:relative}.theme-select-module .button-link{text-decoration:none}.theme-select-module .remove-theme,.theme-select-module .remove-theme:active,.theme-select-module .remove-theme:focus,.theme-select-module .remove-theme:hover{color:#d63638}.theme-select-module .change-theme{float:right}.metaslider .right input[type=submit]{margin:0 3px}.metaslider #poststuff .right .configuration{box-sizing:border-box;float:left;line-height:27px;padding:7px 7px 7px 12px;width:100%}.metaslider .section{cursor:pointer}.metaslider .tipsy-tooltip{cursor:default}.metaslider .ui-sortable-helper{box-shadow:3px 3px 5px #ccc}.metaslider .left table tr.slide textarea{height:120px;margin:0;padding:2px 5px;width:100%}.metaslider .left table tr.slide input.url{min-width:200px;width:100%}.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window,.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window,.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window{bottom:20px;right:6px}.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window label,.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window label,.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window label{line-height:18px;vertical-align:top}.branch-3-5 .metaslider .left table tr.slide .tabs-content .new_window input,.branch-3-6 .metaslider .left table tr.slide .tabs-content .new_window input,.branch-3-7 .metaslider .left table tr.slide .tabs-content .new_window input{margin:-2px 0 0 4px}.metaslider .left table tr.slide .tabs-content .new_window{float:right;margin-right:0;padding:0 0 0 5px;position:relative;right:0;text-align:right;width:190px}.rtl .metaslider .left table tr.slide .tabs-content .new_window{float:left;position:relative}.metaslider .left table tr.slide .tabs-content .new_window input{margin-left:3px}.rtl .metaslider .left table tr.slide .tabs-content .new_window input{margin-right:0}.metaslider .left table tr.slide .tabs-content .new_window>label{line-height:30px;text-align:right}.metaslider .input-label.right{float:right}.metaslider .tabs-content .input-label.right input{margin-right:0}.metaslider .tabs-content .caption{position:relative}.metaslider .tabs-content .can-inherit:not(.inherit-from-image) input[type=text]{display:block}.metaslider .tabs-content .can-inherit.inherit-from-image input[type=text],.metaslider .tabs-content .can-inherit:not(.inherit-from-image) .default{display:none}.metaslider .tabs-content .can-inherit.inherit-from-image .default{display:block}.metaslider .tabs-content .image-alt-label,.metaslider .tabs-content .image-title-label,.metaslider .tabs-content .link-alt-label{line-height:30px}.metaslider .tabs-content .default{background:#eee;border:1px solid #8c8f94;border-radius:4px;line-height:24px;overflow:hidden;padding:2px 8px;width:100%}.metaslider .tabs-content .caption .default{border-radius:4px;height:60px;margin:0 0 5px;overflow:auto}.metaslider .tabs-content .caption.inherit-from-image textarea,.metaslider .tabs-content .inherit-from-image input[type=text]{display:none}.metaslider .tabs-content .inherit-from-image .default{display:block}.metaslider .tabs-content .default .no-content{font-style:italic;opacity:.3}.metaslider tr.radio{display:table-row}.metaslider .right .slider-lib-row input[type=radio]:checked+label{background-color:#d0d0d0}.metaslider .right .slider-lib-row input[type=radio]{display:none}.metaslider .right .slider-lib-row input[type=radio]+label{background-color:#f5f5f5;background-image:linear-gradient(180deg,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid rgba(0,0,0,.1);border-bottom-color:#b3b3b3;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.2),0 1px 2px rgba(0,0,0,.05);color:#333;cursor:pointer;display:inline-block;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffffff",endColorstr="#ffe6e6e6",GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);font-size:13px;line-height:20px;margin-bottom:0;padding:4px 0;text-align:center;vertical-align:middle;width:25%}.metaslider .right .slider-lib-row input[type=radio]:checked+label{background-color:#e0e0e0;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);outline:0}.metaslider .right #nivo+label:hover,.metaslider .right #nivo:checked+label{background:#b6e026;background:linear-gradient(180deg,#b6e026 0,#abdc28);color:#fff}.metaslider .right #responsive+label:hover,.metaslider .right #responsive:checked,.metaslider .right #responsive:checked+label{background:#ff5db1;background:linear-gradient(180deg,#ff5db1 0,#ef017c);color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff5db1",endColorstr="#ef017c",GradientType=0)}.metaslider .right #coin+label:hover,.metaslider .right #coin:checked+label{background:#ffd65e;background:linear-gradient(180deg,#ffd65e 0,#febf04);color:#fff}.metaslider .right #flex+label:hover,.metaslider .right #flex:checked+label{background:#00b7ea;background:linear-gradient(180deg,#00b7ea 0,#009ec3);color:#fff}.metaslider .right .slider-lib-row label:active,.metaslider .right .slider-lib-row label:focus{background:#acd7fd!important;box-shadow:none!important;outline:none}.metaslider .right .slider-lib-row{text-align:center}.metaslider .right .radio ul{margin:0}.metaslider .right .radio li{clear:both;margin:0 0 2px}.metaslider .right .radio input[type=radio]{margin-top:0}.rtl .metaslider .right .radio input[type=radio]{float:right}.metaslider #poststuff .right .ms-postbox .inside{background:#fff;margin:0;padding:1rem}.ms-postbox .handlediv{color:#aaa;cursor:pointer;float:right;height:30px;width:27px}.ms-postbox .handlediv:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f142";display:inline-block;font:400 20px/1 dashicons;padding:8px 10px;position:relative;right:12px;text-decoration:none!important;top:0}.ms-postbox.closed .handlediv:before{content:"\f140"}.metaslider .social .inside{padding:10px}.metaslider .social .inside ul.info{height:20px;margin:0;width:100%}.metaslider .right .ms-postbox table{border:0;width:100%}.metaslider .right .ms-postbox table textarea{background:#272822;color:#a6e22e;font-family:monospace;height:100px;width:100%}.metaslider .right .ms-postbox h3{cursor:inherit}.metaslider .right .ms-postbox.ms-toggle h3{cursor:pointer}.metaslider .right table{margin:0 0 22px}.metaslider select{display:inline-block;height:auto;white-space:-moz-pre-wrap;white-space:pre-wrap;width:180px}.metaslider .warning{background-color:#ffebe8;border:1px solid #c00;border-radius:3px;margin-bottom:5px;padding:5px 10px}.attachment-display-settings{display:none}.metaslider .tabs-content input:focus:not([readonly]),.metaslider .tabs-content select:focus:not([readonly]),.metaslider .tabs-content textarea:focus:not([readonly]){border-color:#acd7fd;color:#444}.metaslider .left .tabs-content{clear:both}.metaslider .tabs-content .row{clear:both;float:left;margin-bottom:10px;vertical-align:middle;width:100%}.metaslider .tabs-content .row.last{margin-bottom:0}.metaslider .tabs-content .row label{display:inline-block}.metaslider .slide .row.has-right-field>label{width:125px}.metaslider .tabs-content .row input{margin-bottom:0;margin-left:0;margin-right:5px}.metaslider .tabs-content .row input[type=text]{width:100%}.metaslider .tabs-content .row.has-right-checkbox{grid-gap:.5rem;align-items:center;display:flex;gap:.5rem}.metaslider .tabs-content .row.has-right-checkbox>div:first-child{flex-grow:1}.metaslider .tabs-content .row.has-right-checkbox>div:nth-child(2) [class*=tipsy-tooltip].dashicons{line-height:22px}.metaslider .tabs-content ul{margin:0}.metaslider .tabs-content li{margin:0 0 10px}.metaslider .tabs-content p{color:#999;font-style:italic}.metaslider ul.tabs{height:auto;line-height:normal;list-style:none;margin:0;padding:0;position:relative}.metaslider ul.tabs:after{border-top:1px solid #8c8f94;content:"";display:table;margin-top:-1px;position:relative;width:100%}.metaslider ul.tabs li{background:#fbfbfb;display:inline;line-height:normal;list-style:none}.metaslider ul.tabs li a{background:#fbfbfb;border:1px solid;border-color:#ccc #ccc #8c8f94;border-top-left-radius:4px;border-top-right-radius:4px;box-shadow:none;color:#50575e;display:inline-block;margin:0 0 0 5px;outline:0;padding:6px 7px;position:relative}.metaslider ul.tabs li a:hover,.metaslider ul.tabs li.selected a{background:#fff;color:#dd6923}.metaslider ul.tabs li.selected a{border-color:#8c8f94 #8c8f94 #fff}.metaslider ul.tabs li.selected a:after{border-top:2px solid #fff;bottom:-1px;content:"";display:table;margin-left:-7px;position:absolute;width:100%;z-index:1}.metaslider .tabs-content{padding-top:1rem}.metaslider .tabs-content .schedule_placeholder{padding-top:10px;text-align:center}.metaslider .tabs-content .schedule_placeholder h4{font-weight:400}.metaslider .dropdown_container{margin:40px 0 10px}#adminmenu .toplevel_page_metaslider .wp-menu-image img{opacity:1}.metaslider-ui,.metaslider-ui *{box-sizing:border-box}.metaslider-ui .slider-title{border-bottom:none;padding:10px 100px 13px 0;position:relative}.metaslider-ui .slider-title h3{font-weight:400;margin:0 .5rem 0 0}.metaslider-ui .metaslider-slides-container *{box-sizing:border-box}.metaslider-ui .metaslider-slides-container{background:none;border:0;border-collapse:separate;box-shadow:none}.metaslider-ui .metaslider-slides-container .slide{background:#fff;border:1px solid #c3c4c7;display:block;margin-bottom:22px;overflow:hidden;padding-top:31px;position:relative;transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out}.metaslider-ui .metaslider-slides-container .slide.post_feed .scroll{height:150px;overflow:auto}.metaslider-ui .metaslider-slides-container .slide>td{padding:0;transition:all .25s ease-in-out;-moz-transition:all .25s ease-in-out;-webkit-transition:all .25s ease-in-out}.metaslider-ui .metaslider-slides-container .slide .slide-details{color:#50575e;display:inline-block;font-size:.8em;font-weight:400;margin:6px 0 0}.metaslider-ui .metaslider-slides-container .slide .metaslider-ui-controls{background-color:#f1f1f1;border-bottom:1px solid #c3c4c7;cursor:move;font-size:1.2em;height:31px;left:0;padding-left:.5rem;position:absolute;top:0;width:100%}.metaslider-ui .metaslider-slides-container .metaslider-ui-inner{padding:1rem}.metaslider-ui .metaslider-slides-container .slide .thumb-col-settings{display:flex}.metaslider-ui .metaslider-slides-container .slide .thumb-col-settings>div:nth-child(2){flex-grow:1}.metaslider-ui .metaslider-slides-container .slide .col-2{width:100%}.metaslider-ui .metaslider-slides-container .metaslider-ui-inner.metaslider-slide-thumb{padding:0 1rem 0 0}.metaslider-ui .metaslider-slides-container .slide .thumb{align-items:center;background-position:50%;background-size:100% auto;border:1px solid #8c8f94;display:flex;height:150px;justify-content:center;overflow:hidden;position:relative;width:240px}.metaslider-ui .metaslider-slides-container .slide .thumb img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.metaslider-ui .metaslider-slides-container .delete-slide,.metaslider-ui .metaslider-slides-container .duplicate-slide,.metaslider-ui .metaslider-slides-container .toolbar-button,.metaslider-ui .metaslider-slides-container .undo-delete-slide,.metaslider-ui .metaslider-slides-container .update-image{background:none;border:0;box-shadow:none;color:#50575e;cursor:pointer;height:30px;outline:0;width:30px}.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .duplicate-slide,.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-image,.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-video{padding:0 0 0 6px}.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .duplicate-slide svg,.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-image svg,.metaslider-ui .metaslider-slides-container .metaslider-ui-controls .update-video svg{width:18px}.metaslider-ui .metaslider-slides-container .duplicate-slide.image-button,.metaslider-ui .metaslider-slides-container .update-image.image-button,.metaslider-ui .metaslider-slides-container .update-video.image-button{display:block;height:auto;margin:0;padding:0;width:auto}.metaslider-ui .metaslider-slides-container .toolbar-button:active,.metaslider-ui .metaslider-slides-container .toolbar-button:hover{background:#ededed;color:#1d8abf}.metaslider-ui .metaslider-slides-container .toolbar-button:focus{background-color:#acd7fd!important;color:#444!important}.metaslider-ui .metaslider-slides-container .toolbar-button:active{box-shadow:inset 0 2px 3px rgba(0,0,0,.1)}.metaslider-ui .metaslider-slides-container .update-image.image-button:active,.metaslider-ui .metaslider-slides-container .update-image.image-button:focus{box-shadow:0 0 3px 3px #acd7fd}.metaslider-ui .metaslider-slides-container .update-image.image-button:focus .thumb{background-color:#acd7fd}.metaslider-ui .metaslider-slides-container .delete-slide{padding:0 0 0 5px}.metaslider-ui .metaslider-slides-container .delete-slide:active,.metaslider-ui .metaslider-slides-container .delete-slide:hover{color:#e82323}.metaslider-ui .metaslider-slides-container .delete-slide svg,.metaslider-ui .metaslider-slides-container .update-image svg{display:block}.metaslider-ui button.hide-slide.toolbar-button{position:relative}.metaslider-ui button.hide-slide.toolbar-button input{opacity:0;position:absolute;top:0;visibility:hidden}.metaslider-ui button.hide-slide.toolbar-button input~svg{height:18px;left:6px;position:absolute;top:6px;width:18px}.metaslider-ui button.hide-slide.toolbar-button input~svg.feather-eye-off{display:none}.metaslider-ui button.hide-slide.toolbar-button input:checked~svg.feather-eye-off{display:block}.metaslider-ui button.hide-slide.toolbar-button input:checked~svg.feather-eye-off line{stroke:#c13f3f;color:#c13f3f}.metaslider-ui button.hide-slide.toolbar-button input:checked~svg.feather-eye{display:none}.metaslider-ui .metaslider-slides-container .ui-sortable-helper{box-shadow:0 3px 3px 0 rgba(0,0,0,.2)!important;transform:translateZ(0) rotate(2deg);transition:none;-moz-transition:none;-webkit-transition:none}.metaslider-ui .metaslider-slides-container .ui-sortable-placeholder{background:hsla(0,0%,80%,.33);border:3px dashed #e0e0e0;box-shadow:none;padding:4rem;visibility:visible!important}.metaslider .ms-postbox{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 1px rgba(0,0,0,.04);line-height:1;margin-bottom:20px;min-width:255px;padding:0;position:relative}input[type=radio]{margin-right:4px}.wp-clearfix:after{clear:both;content:"";display:table}.tox.tox-tinymce-aux{z-index:9999}.ms-spin{animation:ms-spin 2s linear infinite}@keyframes ms-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.ms-deleting>td div{-moz-filter:blur(2px);-o-filter:blur(2px);-ms-filter:blur(2px);filter:blur(2px)}.ms-deleting button{background:none!important;color:#aaa!important}.ms-deleted{background-color:transparent!important;border:0!important;box-shadow:none!important;margin-bottom:0!important;max-height:0!important;overflow:hidden;padding:0!important}.slide.hide-status .ms-delete-status{display:none}.slide:not(.hide-status) .ms-delete-status.is-error{color:#e82323;font-size:.8em;line-height:31px}.slide:not(.hide-status) .ms-delete-status.is-success{color:#46b450;float:right;font-size:.8em;margin-left:5px;padding:.5em}.ms-deleted .metaslider-ui-controls button,.ms-deleted .slide-details{display:none!important}.ms-deleted .metaslider-ui-inner{max-height:0!important;overflow:hidden;transition:all .75s ease-in-out;-moz-transition:all .75s ease-in-out;-webkit-transition:all .75s ease-in-out}.ms-deleted .metaslider-ui-controls{background-color:#f1f1f1!important;border:0!important;box-shadow:none!important;cursor:default!important}.ms-deleted .metaslider-ui-controls button.undo-delete-slide{display:inline-block;font-size:.7em;text-transform:lowercase;width:auto}.ms-deleted .metaslider-ui-controls button.undo-delete-slide i{margin-right:0;position:relative;top:1px}.ms-deleted .metaslider-ui-controls button.undo-delete-slide:focus{text-decoration:underline}.ms-deleted .metaslider-ui-controls button.undo-delete-slide:hover{color:#de6826}.ms-deleted .metaslider-ui-controls .countdown{color:#ccc;display:inline-block;margin-left:5px;text-shadow:1px 1px 1px #fff}.ms-delete-overlay{align-items:center;background:hsla(0,0%,100%,.5);color:#666;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.metaslider-ui .restore-slide-link{box-shadow:none;line-height:1.7em;text-decoration:none}.metaslider-ui .restore-slide-link svg{display:inline}.metaslider-ui .trashed-header{padding:0 0 .5rem}.metaslider-ui .trashed-header h3{color:#de6826;display:inline-block;font-weight:400;margin:0}.metaslider-ui .trashed-header small{color:#ccc}.metaslider-ui .trashed-header a{color:#666;text-decoration:underline}.metaslider-ui .trashed-header a:hover{color:#de6826}.metaslider-ui .trash-btns{float:right;padding:0;position:static}.metaslider-ui .trash-btns a{display:block;padding:.37rem}.metaslider-ui .trashed-notice{line-height:1.4}.metaslider-ui .trashed-notice .notice-info{background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1rem}.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .thumb-col-settings>div:nth-child(2){opacity:.7}.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .col-2,.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .thumb-col-settings,.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides ul.tabs li,.metaslider-ui .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .metaslider-slides-container .slide .metaslider-ui-controls{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;user-select:none}.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides .thumb-col-settings,.metaslider .ms-edit-slideshow.ms-edit-slideshow--trashed-slides ul.tabs li{pointer-events:none}input.no_last_pass{background-attachment:none!important;background-image:none!important}#__lpform_title{display:none}.ms-panel-container{display:flex;flex-direction:row;flex-wrap:wrap}.ms-panel-container>*{flex-basis:0;flex-grow:1;padding-right:1.5rem}.ms-delete-save{align-items:center;display:flex;justify-content:flex-end;position:relative}.ms-delete-save .ms-delete-slideshow{color:#aaa;font-weight:700;text-decoration:none;text-transform:uppercase}.ms-delete-save .ms-delete-slideshow:hover{text-decoration:underline}#image-api-container{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:99999999}.ms-heading{font-size:2em;margin:20px 0}.metaslider-start{margin:30px auto;max-width:80%}.metaslider-welcome .welcome-panel-content{background:#fff;border:1px solid #ddd;min-height:auto;padding:20px}.metaslider-welcome .welcome-panel-content+.welcome-panel-content{border-top:none}.metaslider-welcome .ms-panel-container>div:first-child{padding-right:1rem}.metaslider-welcome .ms-panel-container>div:nth-child(2){padding-left:1rem;padding-right:0}.metaslider-welcome .welcome-panel-content h2{font-size:1.5em;margin:20px 0}.toplevel_page_metaslider #wpbody-content{background-color:transparent}.toplevel_page_metaslider #ms-toolbar .container{margin:0}#slideshows-list{margin:10px 30px}#slideshows-list table a{color:#2271b1}#slideshows-list table a.submitdelete{color:#b32d2e}#ms-toolbar h2{font-size:21px}#slideshows-list #nds-wp-list-table-demo{margin-top:-50px}#slideshows-list table.fixed{position:relative!important}.column-slides .image-wrap .autoplay{animation:autoplaythumb 12s linear infinite}#slideshows-list #slides{width:105px}#slideshows-list .wp-heading-inline{margin-bottom:0!important}.thumb-logo{padding:10px}.default-thumb{margin:auto;width:70%}#metaslider-slides-list .delete,#metaslider-slides-list .untrash{display:inline-block}.trash-view-restore{color:#2271b1}#slideshows-list #message p{margin:10px 0!important}#metaslider-list-form .search-box{margin-bottom:10px!important;margin-top:10px!important}#slideshows-list table .copy-shortcode{display:inline;margin-right:10px}#slideshows-list table .dashicons-yes{color:green}.metaslider-pro_page_metaslider-start #wpbody-content,.metaslider_page_metaslider-start #wpbody-content{background-color:transparent}.metaslider-pro_page_metaslider-start #ms-toolbar .container,.metaslider_page_metaslider-start #ms-toolbar .container{margin:0}.metaslider-welcome #media-items #message p{margin:0!important;padding:10px 0}.metaslider-welcome #media-items #message,.metaslider_page_upgrade-metaslider #ms-toolbar .container{margin:0}.metaslider_upgrade{margin:30px auto;max-width:80%}.ml-upgrade-button{background:#dd6923;border:none;border-radius:5px;color:#fff;display:inline-block;padding:8px 15px;text-align:center;text-decoration:none;width:100%}.ml-upgrade-button:active,.ml-upgrade-button:focus,.ml-upgrade-button:hover{background:#29375b;border:none;color:#fff}#metaslider-settings-page{background-color:#f0f0f1}.export-instruction{list-style:disc;padding:10px 10px 10px 15px}.export-instruction a{font-weight:700}.export-instruction a .dashicons{font-size:16px;height:16px;margin-top:3px;width:16px}#metaslider-settings-page .notice{margin:0}#metaslider-settings-page .notice p{margin:0!important;padding:10px 0}.customtheme-list-h{font-size:38px}.customtheme-list-p{font-size:16px;margin-bottom:28px!important}.upgrade-icon{margin:3px 0 0 5px}.promo-wrapper{display:table-row}.promo-wrapper div{display:table-cell;vertical-align:middle}#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a:active,#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a:focus,#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a:hover,#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab.active a{background-color:#016fb9;border-bottom:none;color:#fff;font-size:16px}#metaslider-ui .metaslider-theme-viewer .sweet-modal ul li.sweet-modal-tab a{font-size:16px;padding:0 15px}#hide-legacy-settings{display:none}.disableSwitch span{pointer-events:none}.legacy-notif-success .bg-yellow-50{background-color:#dfffff!important;border-color:#016fb9!important}.legacy-notif-success svg{display:none}.legacy-notif-success .flex .ml-3{margin:0!important}.ml-legacy-notice{margin:15px 0 0!important}.ml-legacy-notice p{margin:10px 0!important}#metaslider-ui,.container{min-width:auto;width:100%}.metaslider-pro_page_metaslider-start .ms-heading,.metaslider_page_metaslider-start .ms-heading{font-size:1.5em;line-height:1.2}.metaslider-start{margin:20px!important;max-width:none}.metaslider-welcome .ms-panel-container>div:nth-child(2){padding-left:0}#slideshows-list{margin:10px}.metaslider [class*=tipsy-tooltip].dashicons{font-size:1rem;line-height:30px;opacity:.5}#metaslider-ui table input,#metaslider-ui table select,#metaslider-ui table textarea{font-size:13px}.slidethumb{height:150px;overflow:hidden;width:150px}.form-select--forced{background-color:#fff!important;border-color:#e2e8f0!important;border-radius:.25rem!important;font-size:1rem!important;line-height:1.5!important;padding:.5rem 2.5rem .5rem .75rem!important}.mobile-checkbox-wrap{background:transparent;border:1px solid #c3c4c7;border-radius:3px;cursor:pointer;display:inline-block;padding:5px 10px;position:relative}.mobile-checkbox{display:block!important;height:100%!important;left:0;opacity:0;position:absolute;top:0;width:100%!important;z-index:99999}.mobile-checkbox-wrap .dashicons{font-size:25px;height:25px;margin-top:2px;width:25px}.mobile-checkbox-wrap>input[type=checkbox]+span{color:#50575e}.mobile-checkbox-wrap>input[type=checkbox]:checked+span{color:#dd6923}.mobile_setting_enabled svg{color:#46b450;margin-top:-2px;width:18px}.ms-settings-table .mobile-checkbox-wrap{margin-right:5px;padding:5px 8px!important}#mobile-settings button{display:none!important}#mobile-settings div.col:last-child button{display:inline-block!important}#mobile-settings .row{display:flex}#mobile-settings .col{align-items:flex-start;display:flex;flex-direction:row}#mobile-settings .dashicons{color:#606060;font-size:25px;height:75px;padding:25px 10px;width:55px}#mobile-settings form input{width:80px!important}#comparison-chart{background-color:transparent;max-width:900px;width:100%}#comparison-chart th h1{color:#29375b;display:block;font-size:38px;height:25px;margin:10px 0;text-align:left}#comparison-chart th h3{font-size:16px;text-align:right;text-transform:uppercase}#comparison-chart td{background-color:#fff;border:5px solid #dae1e7;border-collapse:collapse}#comparison-chart td.ms-dark-blue{background-color:#29375b}#comparison-chart td.ms-orange{background-color:#dd6923;text-align:center}#comparison-chart td.ms-dark-blue,#comparison-chart td.ms-orange{font-size:18px;font-weight:700;padding:10px}#comparison-chart td{padding:10px}#comparison-chart td h4{font-size:16px;font-weight:700}#comparison-chart td p{font-size:16px;margin:5px 0!important;padding:0}td .dot{background:#d7d7d7;border-radius:60%;height:20px;margin:0 auto;width:20px}td .dot.available{background:#dd6923}.css-manager-ad-container{background-color:#f0f0f1;padding:30px 0}.css-manager-ad-container .probutton,.schedule_placeholder .probutton{background:#dd6923;border:none;border-radius:5px;color:#fff;display:inline-block;font-size:17px!important;line-height:1.8!important;margin-top:15px;min-height:46px!important;padding:12px 30px!important;text-decoration:none;white-space:unset}.schedule_placeholder .probutton{margin-bottom:15px;margin-top:0!important}.css-manager-ad-container .dashicons.dashicons-external,.schedule_placeholder .dashicons.dashicons-external{margin-top:5px}.css-manager-ad-container h1,.schedule_placeholder h1{color:#29375b;font-size:28px;font-weight:600!important;line-height:1.2}.schedule_placeholder h1{margin-bottom:5px!important}.css-manager-ad-container li,.css-manager-ad-container p,.schedule_placeholder p{color:#3c434a!important;font-size:16px!important;font-style:normal!important}.css-manager-ad-container img{box-shadow:0 5px 5px 0 silver;margin:5% auto;width:80%}#add-first-slide-notice,#loading-add-sample-slides-notice{align-items:center;background:#fff;border:1px solid #f1f1f1;font-size:1.2em;height:200px;justify-content:center;text-align:center;width:100%}#loading-add-sample-slides-notice span{background-repeat:no-repeat;background-size:contain;padding-left:30px}@media only screen and (min-width:320px){.toolbar-actions,.toolbar-separator{padding:0!important}.ms-toolbar-button{padding-left:4px!important;padding-right:4px!important}}@media (min-width:768px){.toolbar-actions,.toolbar-separator{padding-left:1rem!important;padding-right:1rem!important}.ms-toolbar-button{padding-left:.5rem!important;padding-right:.5rem!important}.metaslider-welcome .ms-panel-container>div:nth-child(2){padding-left:1rem}.metaslider-welcome .drag-drop .drag-drop-inside{width:400px}#slideshows-list{margin:10px 30px}}@media (min-width:990px){.metaslider-pro_page_metaslider-start .ms-heading,.metaslider_page_metaslider-start .ms-heading{font-size:2em}.metaslider-start{margin:30px auto!important;max-width:80%}}@media (min-width:1200px){.ms-edit-slideshow{display:flex;justify-content:space-between}.ms-edit-slideshow>.left{flex-grow:1}}@media (min-width:1300px){.ms-edit-slideshow>.right{min-width:400px;width:400px}}@media (max-width:768px),(min-width:990px) and (max-width:1024px){.metaslider-ui .metaslider-slides-container .slide .thumb-col-settings{flex-direction:column}.metaslider-ui .metaslider-slides-container .metaslider-ui-inner.metaslider-slide-thumb{padding-bottom:1rem;padding-right:0}.metaslider-ui .metaslider-slides-container .metaslider-ui-inner .thumb,.metaslider-ui .metaslider-slides-container .metaslider-ui-inner.metaslider-slide-thumb button{width:100%}}@media (min-width:990px) and (max-width:1024px){.metaslider-ui .metaslider-slides-container .metaslider-ui-inner .thumb{height:340px}}@media (max-width:768px){.metaslider-ui .metaslider-slides-container .metaslider-ui-inner .thumb{height:240px}}@media (max-width:782px){#metaslider-ui .tabs-content .default,#metaslider-ui table input,#metaslider-ui table select,#metaslider-ui table textarea{font-size:16px}#metaslider-ui .tabs-content .default{line-height:32px;min-height:40px;padding:3px 10px}}@media (min-width:600px){.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.sm\:space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.sm\:space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.sm\:space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.sm\:space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.sm\:space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.sm\:space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.sm\:space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.sm\:space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.sm\:space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.sm\:space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.sm\:space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.sm\:space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.sm\:space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.sm\:space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.sm\:space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.sm\:space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.sm\:space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.sm\:space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.sm\:space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.sm\:space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.sm\:space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.sm\:space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.sm\:space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.sm\:space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.sm\:space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.sm\:space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.sm\:space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.sm\:space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.sm\:space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.sm\:space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.sm\:space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.sm\:space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.sm\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.sm\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.sm\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.sm\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.sm\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.sm\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.sm\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.sm\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.sm\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.sm\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.sm\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.sm\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.sm\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.sm\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.sm\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.sm\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.sm\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.sm\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.sm\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.sm\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.sm\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.sm\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.sm\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.sm\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.sm\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.sm\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.sm\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.sm\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.sm\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.sm\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.sm\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.sm\:space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.sm\:space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.sm\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.sm\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.sm\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.sm\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.sm\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.sm\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.sm\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.sm\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.sm\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.sm\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.sm\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.sm\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.sm\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.sm\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.sm\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.sm\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.sm\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.sm\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.sm\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.sm\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.sm\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.sm\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.sm\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.sm\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.sm\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.sm\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.sm\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.sm\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.sm\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.sm\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.sm\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.sm\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.sm\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.sm\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.sm\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.sm\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.sm\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.sm\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.sm\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.sm\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.sm\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.sm\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.sm\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.sm\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.sm\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.sm\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.sm\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.sm\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.sm\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.sm\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.sm\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.sm\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.sm\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.sm\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.sm\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.sm\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.sm\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.sm\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.sm\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.sm\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.sm\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.sm\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.sm\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.sm\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.sm\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.sm\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.sm\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.sm\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.sm\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.sm\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.sm\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.sm\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.sm\:divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.sm\:divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.sm\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.sm\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.sm\:divide-transparent>:not(template)~:not(template){border-color:transparent!important}.sm\:divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.sm\:divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.sm\:divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.sm\:divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.sm\:divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.sm\:divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.sm\:divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.sm\:divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.sm\:divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.sm\:divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.sm\:divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.sm\:divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.sm\:divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.sm\:divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.sm\:divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.sm\:divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.sm\:divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.sm\:divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.sm\:divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.sm\:divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.sm\:divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.sm\:divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.sm\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.sm\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.sm\:divide-solid>:not(template)~:not(template){border-style:solid!important}.sm\:divide-dashed>:not(template)~:not(template){border-style:dashed!important}.sm\:divide-dotted>:not(template)~:not(template){border-style:dotted!important}.sm\:divide-double>:not(template)~:not(template){border-style:double!important}.sm\:divide-none>:not(template)~:not(template){border-style:none!important}.sm\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.sm\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.sm\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.sm\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.sm\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.sm\:sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sm\:not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.sm\:focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sm\:focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.sm\:appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.sm\:bg-fixed{background-attachment:fixed!important}.sm\:bg-local{background-attachment:local!important}.sm\:bg-scroll{background-attachment:scroll!important}.sm\:bg-clip-border{background-clip:border-box!important}.sm\:bg-clip-padding{background-clip:padding-box!important}.sm\:bg-clip-content{background-clip:content-box!important}.sm\:bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.sm\:bg-transparent{background-color:transparent!important}.sm\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.sm\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.sm\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.sm\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.sm\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.sm\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.sm\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.sm\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.sm\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.sm\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.sm\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.sm\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.sm\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.sm\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.sm\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.sm\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.sm\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.sm\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.sm\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.sm\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.sm\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.sm\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.sm\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.sm\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-transparent{background-color:transparent!important}.group:hover .sm\:group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .sm\:group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .sm\:group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .sm\:group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .sm\:group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-transparent{background-color:transparent!important}.group:focus .sm\:group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .sm\:group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .sm\:group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .sm\:group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .sm\:group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.sm\:hover\:bg-transparent:hover{background-color:transparent!important}.sm\:hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.sm\:hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.sm\:hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.sm\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.sm\:hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.sm\:hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.sm\:hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.sm\:hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.sm\:hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.sm\:hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.sm\:hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.sm\:hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.sm\:hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.sm\:hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.sm\:hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.sm\:hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.sm\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.sm\:hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.sm\:hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.sm\:hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.sm\:hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.sm\:hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.sm\:hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.sm\:hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.sm\:focus\:bg-transparent:focus{background-color:transparent!important}.sm\:focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.sm\:focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.sm\:focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.sm\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.sm\:focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.sm\:focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.sm\:focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.sm\:focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.sm\:focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.sm\:focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.sm\:focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.sm\:focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.sm\:focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.sm\:focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.sm\:focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.sm\:focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.sm\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.sm\:focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.sm\:focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.sm\:focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.sm\:focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.sm\:focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.sm\:focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.sm\:focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.sm\:active\:bg-transparent:active{background-color:transparent!important}.sm\:active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.sm\:active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.sm\:active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.sm\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.sm\:active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.sm\:active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.sm\:active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.sm\:active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.sm\:active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.sm\:active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.sm\:active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.sm\:active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.sm\:active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.sm\:active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.sm\:active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.sm\:active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.sm\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.sm\:active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.sm\:active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.sm\:active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.sm\:active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.sm\:active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.sm\:active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.sm\:active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.sm\:bg-none{background-image:none!important}.sm\:bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.sm\:bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.sm\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.sm\:bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.sm\:bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.sm\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.sm\:bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.sm\:bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.sm\:from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.sm\:from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.sm\:from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.sm\:from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.sm\:from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.sm\:from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.sm\:from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.sm\:from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.sm\:from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.sm\:from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.sm\:from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.sm\:from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.sm\:from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.sm\:from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.sm\:from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.sm\:from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.sm\:from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.sm\:from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.sm\:from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.sm\:from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.sm\:via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.sm\:via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.sm\:via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.sm\:via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.sm\:via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.sm\:via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.sm\:via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.sm\:via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.sm\:via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.sm\:via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.sm\:via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.sm\:via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.sm\:via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.sm\:via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.sm\:via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.sm\:via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.sm\:via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.sm\:via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.sm\:via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.sm\:via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.sm\:to-transparent{--gradient-to-color:transparent!important}.sm\:to-white{--gradient-to-color:#fff!important}.sm\:to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.sm\:to-blackest{--gradient-to-color:#000!important}.sm\:to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.sm\:to-black{--gradient-to-color:#23292d!important}.sm\:to-gray-darkest{--gradient-to-color:#3d4852!important}.sm\:to-gray-darker{--gradient-to-color:#606f7b!important}.sm\:to-gray-dark{--gradient-to-color:#9ea3a8!important}.sm\:to-gray{--gradient-to-color:#b8c2cc!important}.sm\:to-gray-light{--gradient-to-color:#dae1e7!important}.sm\:to-gray-lighter{--gradient-to-color:#f1f1f1!important}.sm\:to-gray-lightest{--gradient-to-color:#f8fafc!important}.sm\:to-blue-darkest{--gradient-to-color:#1673a7!important}.sm\:to-blue-dark{--gradient-to-color:#0073aa!important}.sm\:to-blue{--gradient-to-color:#3188e6!important}.sm\:to-blue-light{--gradient-to-color:#a4cafe!important}.sm\:to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.sm\:to-orange{--gradient-to-color:#dd6923!important}.sm\:to-orange-darker{--gradient-to-color:#d5551e!important}.sm\:to-orange-darkest{--gradient-to-color:#c9501c!important}.sm\:to-red{--gradient-to-color:#e82323!important}.sm\:to-green{--gradient-to-color:#46b450!important}.sm\:to-yellow-400{--gradient-to-color:#e3a008!important}.sm\:to-yellow-50{--gradient-to-color:#fdfdea!important}.sm\:hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.sm\:hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.sm\:hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.sm\:hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.sm\:hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.sm\:hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.sm\:hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.sm\:hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.sm\:hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.sm\:hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.sm\:hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.sm\:hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.sm\:hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.sm\:hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.sm\:hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.sm\:hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.sm\:hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.sm\:hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.sm\:hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.sm\:hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.sm\:hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.sm\:hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.sm\:hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.sm\:hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.sm\:hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.sm\:hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.sm\:hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.sm\:hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.sm\:hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.sm\:hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.sm\:hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.sm\:hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.sm\:hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.sm\:hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.sm\:hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.sm\:hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.sm\:hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.sm\:hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.sm\:hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.sm\:hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.sm\:hover\:to-transparent:hover{--gradient-to-color:transparent!important}.sm\:hover\:to-white:hover{--gradient-to-color:#fff!important}.sm\:hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.sm\:hover\:to-blackest:hover{--gradient-to-color:#000!important}.sm\:hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.sm\:hover\:to-black:hover{--gradient-to-color:#23292d!important}.sm\:hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.sm\:hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.sm\:hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.sm\:hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.sm\:hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.sm\:hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.sm\:hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.sm\:hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.sm\:hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.sm\:hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.sm\:hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.sm\:hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.sm\:hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.sm\:hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.sm\:hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.sm\:hover\:to-red:hover{--gradient-to-color:#e82323!important}.sm\:hover\:to-green:hover{--gradient-to-color:#46b450!important}.sm\:hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.sm\:hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.sm\:focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.sm\:focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.sm\:focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.sm\:focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.sm\:focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.sm\:focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.sm\:focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.sm\:focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.sm\:focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.sm\:focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.sm\:focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.sm\:focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.sm\:focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.sm\:focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.sm\:focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.sm\:focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.sm\:focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.sm\:focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.sm\:focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.sm\:focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.sm\:focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.sm\:focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.sm\:focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.sm\:focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.sm\:focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.sm\:focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.sm\:focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.sm\:focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.sm\:focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.sm\:focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.sm\:focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.sm\:focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.sm\:focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.sm\:focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.sm\:focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.sm\:focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.sm\:focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.sm\:focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.sm\:focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.sm\:focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.sm\:focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.sm\:focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.sm\:focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.sm\:focus\:to-transparent:focus{--gradient-to-color:transparent!important}.sm\:focus\:to-white:focus{--gradient-to-color:#fff!important}.sm\:focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.sm\:focus\:to-blackest:focus{--gradient-to-color:#000!important}.sm\:focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.sm\:focus\:to-black:focus{--gradient-to-color:#23292d!important}.sm\:focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.sm\:focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.sm\:focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.sm\:focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.sm\:focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.sm\:focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.sm\:focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.sm\:focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.sm\:focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.sm\:focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.sm\:focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.sm\:focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.sm\:focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.sm\:focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.sm\:focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.sm\:focus\:to-red:focus{--gradient-to-color:#e82323!important}.sm\:focus\:to-green:focus{--gradient-to-color:#46b450!important}.sm\:focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.sm\:focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.sm\:bg-opacity-0{--bg-opacity:0!important}.sm\:bg-opacity-25{--bg-opacity:0.25!important}.sm\:bg-opacity-50{--bg-opacity:0.5!important}.sm\:bg-opacity-75{--bg-opacity:0.75!important}.sm\:bg-opacity-100{--bg-opacity:1!important}.sm\:hover\:bg-opacity-0:hover{--bg-opacity:0!important}.sm\:hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.sm\:hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.sm\:hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.sm\:hover\:bg-opacity-100:hover{--bg-opacity:1!important}.sm\:focus\:bg-opacity-0:focus{--bg-opacity:0!important}.sm\:focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.sm\:focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.sm\:focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.sm\:focus\:bg-opacity-100:focus{--bg-opacity:1!important}.sm\:bg-bottom{background-position:bottom!important}.sm\:bg-center{background-position:50%!important}.sm\:bg-left{background-position:0!important}.sm\:bg-left-bottom{background-position:0 100%!important}.sm\:bg-left-top{background-position:0 0!important}.sm\:bg-right{background-position:100%!important}.sm\:bg-right-bottom{background-position:100% 100%!important}.sm\:bg-right-top{background-position:100% 0!important}.sm\:bg-top{background-position:top!important}.sm\:bg-repeat{background-repeat:repeat!important}.sm\:bg-no-repeat{background-repeat:no-repeat!important}.sm\:bg-repeat-x{background-repeat:repeat-x!important}.sm\:bg-repeat-y{background-repeat:repeat-y!important}.sm\:bg-repeat-round{background-repeat:round!important}.sm\:bg-repeat-space{background-repeat:space!important}.sm\:bg-auto{background-size:auto!important}.sm\:bg-cover{background-size:cover!important}.sm\:bg-contain{background-size:contain!important}.sm\:border-collapse{border-collapse:collapse!important}.sm\:border-separate{border-collapse:separate!important}.sm\:border-transparent{border-color:transparent!important}.sm\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.sm\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.sm\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.sm\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.sm\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.sm\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.sm\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.sm\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.sm\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.sm\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.sm\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.sm\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.sm\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.sm\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.sm\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.sm\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.sm\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.sm\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.sm\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.sm\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.sm\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.sm\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.sm\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.sm\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.sm\:hover\:border-transparent:hover{border-color:transparent!important}.sm\:hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.sm\:hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.sm\:hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.sm\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.sm\:hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.sm\:hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.sm\:hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.sm\:hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.sm\:hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.sm\:hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.sm\:hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.sm\:hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.sm\:hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.sm\:hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.sm\:hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.sm\:hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.sm\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.sm\:hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.sm\:hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.sm\:hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.sm\:hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.sm\:hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.sm\:hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.sm\:hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.sm\:focus\:border-transparent:focus{border-color:transparent!important}.sm\:focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.sm\:focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.sm\:focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.sm\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.sm\:focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.sm\:focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.sm\:focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.sm\:focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.sm\:focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.sm\:focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.sm\:focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.sm\:focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.sm\:focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.sm\:focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.sm\:focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.sm\:focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.sm\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.sm\:focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.sm\:focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.sm\:focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.sm\:focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.sm\:focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.sm\:focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.sm\:focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-transparent{border-color:transparent!important}.group:hover .sm\:group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .sm\:group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .sm\:group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .sm\:group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .sm\:group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.sm\:border-opacity-0{--border-opacity:0!important}.sm\:border-opacity-25{--border-opacity:0.25!important}.sm\:border-opacity-50{--border-opacity:0.5!important}.sm\:border-opacity-75{--border-opacity:0.75!important}.sm\:border-opacity-100{--border-opacity:1!important}.sm\:hover\:border-opacity-0:hover{--border-opacity:0!important}.sm\:hover\:border-opacity-25:hover{--border-opacity:0.25!important}.sm\:hover\:border-opacity-50:hover{--border-opacity:0.5!important}.sm\:hover\:border-opacity-75:hover{--border-opacity:0.75!important}.sm\:hover\:border-opacity-100:hover{--border-opacity:1!important}.sm\:focus\:border-opacity-0:focus{--border-opacity:0!important}.sm\:focus\:border-opacity-25:focus{--border-opacity:0.25!important}.sm\:focus\:border-opacity-50:focus{--border-opacity:0.5!important}.sm\:focus\:border-opacity-75:focus{--border-opacity:0.75!important}.sm\:focus\:border-opacity-100:focus{--border-opacity:1!important}.sm\:rounded-none{border-radius:0!important}.sm\:rounded-sm{border-radius:.125rem!important}.sm\:rounded{border-radius:.25rem!important}.sm\:rounded-md{border-radius:.375rem!important}.sm\:rounded-lg{border-radius:.5rem!important}.sm\:rounded-xl{border-radius:.75rem!important}.sm\:rounded-2xl{border-radius:1rem!important}.sm\:rounded-3xl{border-radius:1.5rem!important}.sm\:rounded-full{border-radius:9999px!important}.sm\:rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\:rounded-r-none{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.sm\:rounded-b-none{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\:rounded-l-none{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.sm\:rounded-t-sm{border-top-left-radius:.125rem!important}.sm\:rounded-r-sm,.sm\:rounded-t-sm{border-top-right-radius:.125rem!important}.sm\:rounded-b-sm,.sm\:rounded-r-sm{border-bottom-right-radius:.125rem!important}.sm\:rounded-b-sm,.sm\:rounded-l-sm{border-bottom-left-radius:.125rem!important}.sm\:rounded-l-sm{border-top-left-radius:.125rem!important}.sm\:rounded-t{border-top-left-radius:.25rem!important}.sm\:rounded-r,.sm\:rounded-t{border-top-right-radius:.25rem!important}.sm\:rounded-b,.sm\:rounded-r{border-bottom-right-radius:.25rem!important}.sm\:rounded-b,.sm\:rounded-l{border-bottom-left-radius:.25rem!important}.sm\:rounded-l{border-top-left-radius:.25rem!important}.sm\:rounded-t-md{border-top-left-radius:.375rem!important}.sm\:rounded-r-md,.sm\:rounded-t-md{border-top-right-radius:.375rem!important}.sm\:rounded-b-md,.sm\:rounded-r-md{border-bottom-right-radius:.375rem!important}.sm\:rounded-b-md,.sm\:rounded-l-md{border-bottom-left-radius:.375rem!important}.sm\:rounded-l-md{border-top-left-radius:.375rem!important}.sm\:rounded-t-lg{border-top-left-radius:.5rem!important}.sm\:rounded-r-lg,.sm\:rounded-t-lg{border-top-right-radius:.5rem!important}.sm\:rounded-b-lg,.sm\:rounded-r-lg{border-bottom-right-radius:.5rem!important}.sm\:rounded-b-lg,.sm\:rounded-l-lg{border-bottom-left-radius:.5rem!important}.sm\:rounded-l-lg{border-top-left-radius:.5rem!important}.sm\:rounded-t-xl{border-top-left-radius:.75rem!important}.sm\:rounded-r-xl,.sm\:rounded-t-xl{border-top-right-radius:.75rem!important}.sm\:rounded-b-xl,.sm\:rounded-r-xl{border-bottom-right-radius:.75rem!important}.sm\:rounded-b-xl,.sm\:rounded-l-xl{border-bottom-left-radius:.75rem!important}.sm\:rounded-l-xl{border-top-left-radius:.75rem!important}.sm\:rounded-t-2xl{border-top-left-radius:1rem!important}.sm\:rounded-r-2xl,.sm\:rounded-t-2xl{border-top-right-radius:1rem!important}.sm\:rounded-b-2xl,.sm\:rounded-r-2xl{border-bottom-right-radius:1rem!important}.sm\:rounded-b-2xl,.sm\:rounded-l-2xl{border-bottom-left-radius:1rem!important}.sm\:rounded-l-2xl{border-top-left-radius:1rem!important}.sm\:rounded-t-3xl{border-top-left-radius:1.5rem!important}.sm\:rounded-r-3xl,.sm\:rounded-t-3xl{border-top-right-radius:1.5rem!important}.sm\:rounded-b-3xl,.sm\:rounded-r-3xl{border-bottom-right-radius:1.5rem!important}.sm\:rounded-b-3xl,.sm\:rounded-l-3xl{border-bottom-left-radius:1.5rem!important}.sm\:rounded-l-3xl{border-top-left-radius:1.5rem!important}.sm\:rounded-t-full{border-top-left-radius:9999px!important}.sm\:rounded-r-full,.sm\:rounded-t-full{border-top-right-radius:9999px!important}.sm\:rounded-b-full,.sm\:rounded-r-full{border-bottom-right-radius:9999px!important}.sm\:rounded-b-full,.sm\:rounded-l-full{border-bottom-left-radius:9999px!important}.sm\:rounded-l-full{border-top-left-radius:9999px!important}.sm\:rounded-tl-none{border-top-left-radius:0!important}.sm\:rounded-tr-none{border-top-right-radius:0!important}.sm\:rounded-br-none{border-bottom-right-radius:0!important}.sm\:rounded-bl-none{border-bottom-left-radius:0!important}.sm\:rounded-tl-sm{border-top-left-radius:.125rem!important}.sm\:rounded-tr-sm{border-top-right-radius:.125rem!important}.sm\:rounded-br-sm{border-bottom-right-radius:.125rem!important}.sm\:rounded-bl-sm{border-bottom-left-radius:.125rem!important}.sm\:rounded-tl{border-top-left-radius:.25rem!important}.sm\:rounded-tr{border-top-right-radius:.25rem!important}.sm\:rounded-br{border-bottom-right-radius:.25rem!important}.sm\:rounded-bl{border-bottom-left-radius:.25rem!important}.sm\:rounded-tl-md{border-top-left-radius:.375rem!important}.sm\:rounded-tr-md{border-top-right-radius:.375rem!important}.sm\:rounded-br-md{border-bottom-right-radius:.375rem!important}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.sm\:rounded-tl-lg{border-top-left-radius:.5rem!important}.sm\:rounded-tr-lg{border-top-right-radius:.5rem!important}.sm\:rounded-br-lg{border-bottom-right-radius:.5rem!important}.sm\:rounded-bl-lg{border-bottom-left-radius:.5rem!important}.sm\:rounded-tl-xl{border-top-left-radius:.75rem!important}.sm\:rounded-tr-xl{border-top-right-radius:.75rem!important}.sm\:rounded-br-xl{border-bottom-right-radius:.75rem!important}.sm\:rounded-bl-xl{border-bottom-left-radius:.75rem!important}.sm\:rounded-tl-2xl{border-top-left-radius:1rem!important}.sm\:rounded-tr-2xl{border-top-right-radius:1rem!important}.sm\:rounded-br-2xl{border-bottom-right-radius:1rem!important}.sm\:rounded-bl-2xl{border-bottom-left-radius:1rem!important}.sm\:rounded-tl-3xl{border-top-left-radius:1.5rem!important}.sm\:rounded-tr-3xl{border-top-right-radius:1.5rem!important}.sm\:rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.sm\:rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.sm\:rounded-tl-full{border-top-left-radius:9999px!important}.sm\:rounded-tr-full{border-top-right-radius:9999px!important}.sm\:rounded-br-full{border-bottom-right-radius:9999px!important}.sm\:rounded-bl-full{border-bottom-left-radius:9999px!important}.sm\:border-solid{border-style:solid!important}.sm\:border-dashed{border-style:dashed!important}.sm\:border-dotted{border-style:dotted!important}.sm\:border-double{border-style:double!important}.sm\:border-none{border-style:none!important}.sm\:border-0{border-width:0!important}.sm\:border-2{border-width:2px!important}.sm\:border-4{border-width:4px!important}.sm\:border-8{border-width:8px!important}.sm\:border{border-width:1px!important}.sm\:border-t-0{border-top-width:0!important}.sm\:border-r-0{border-right-width:0!important}.sm\:border-b-0{border-bottom-width:0!important}.sm\:border-l-0{border-left-width:0!important}.sm\:border-t-2{border-top-width:2px!important}.sm\:border-r-2{border-right-width:2px!important}.sm\:border-b-2{border-bottom-width:2px!important}.sm\:border-l-2{border-left-width:2px!important}.sm\:border-t-4{border-top-width:4px!important}.sm\:border-r-4{border-right-width:4px!important}.sm\:border-b-4{border-bottom-width:4px!important}.sm\:border-l-4{border-left-width:4px!important}.sm\:border-t-8{border-top-width:8px!important}.sm\:border-r-8{border-right-width:8px!important}.sm\:border-b-8{border-bottom-width:8px!important}.sm\:border-l-8{border-left-width:8px!important}.sm\:border-t{border-top-width:1px!important}.sm\:border-r{border-right-width:1px!important}.sm\:border-b{border-bottom-width:1px!important}.sm\:border-l{border-left-width:1px!important}.sm\:box-border{box-sizing:border-box!important}.sm\:box-content{box-sizing:content-box!important}.sm\:cursor-auto{cursor:auto!important}.sm\:cursor-default{cursor:default!important}.sm\:cursor-pointer{cursor:pointer!important}.sm\:cursor-wait{cursor:wait!important}.sm\:cursor-text{cursor:text!important}.sm\:cursor-move{cursor:move!important}.sm\:cursor-not-allowed{cursor:not-allowed!important}.sm\:block{display:block!important}.sm\:inline-block{display:inline-block!important}.sm\:inline{display:inline!important}.sm\:flex{display:flex!important}.sm\:inline-flex{display:inline-flex!important}.sm\:table{display:table!important}.sm\:table-caption{display:table-caption!important}.sm\:table-cell{display:table-cell!important}.sm\:table-column{display:table-column!important}.sm\:table-column-group{display:table-column-group!important}.sm\:table-footer-group{display:table-footer-group!important}.sm\:table-header-group{display:table-header-group!important}.sm\:table-row-group{display:table-row-group!important}.sm\:table-row{display:table-row!important}.sm\:flow-root{display:flow-root!important}.sm\:grid{display:grid!important}.sm\:inline-grid{display:inline-grid!important}.sm\:contents{display:contents!important}.sm\:hidden{display:none!important}.sm\:flex-row{flex-direction:row!important}.sm\:flex-row-reverse{flex-direction:row-reverse!important}.sm\:flex-col{flex-direction:column!important}.sm\:flex-col-reverse{flex-direction:column-reverse!important}.sm\:flex-wrap{flex-wrap:wrap!important}.sm\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\:flex-no-wrap{flex-wrap:nowrap!important}.sm\:place-items-auto{place-items:auto!important}.sm\:place-items-start{place-items:start!important}.sm\:place-items-end{place-items:end!important}.sm\:place-items-center{place-items:center!important}.sm\:place-items-stretch{place-items:stretch!important}.sm\:place-content-center{place-content:center!important}.sm\:place-content-start{place-content:start!important}.sm\:place-content-end{place-content:end!important}.sm\:place-content-between{place-content:space-between!important}.sm\:place-content-around{place-content:space-around!important}.sm\:place-content-evenly{place-content:space-evenly!important}.sm\:place-content-stretch{place-content:stretch!important}.sm\:place-self-auto{place-self:auto!important}.sm\:place-self-start{place-self:start!important}.sm\:place-self-end{place-self:end!important}.sm\:place-self-center{place-self:center!important}.sm\:place-self-stretch{place-self:stretch!important}.sm\:items-start{align-items:flex-start!important}.sm\:items-end{align-items:flex-end!important}.sm\:items-center{align-items:center!important}.sm\:items-baseline{align-items:baseline!important}.sm\:items-stretch{align-items:stretch!important}.sm\:content-center{align-content:center!important}.sm\:content-start{align-content:flex-start!important}.sm\:content-end{align-content:flex-end!important}.sm\:content-between{align-content:space-between!important}.sm\:content-around{align-content:space-around!important}.sm\:content-evenly{align-content:space-evenly!important}.sm\:self-auto{align-self:auto!important}.sm\:self-start{align-self:flex-start!important}.sm\:self-end{align-self:flex-end!important}.sm\:self-center{align-self:center!important}.sm\:self-stretch{align-self:stretch!important}.sm\:justify-items-auto{justify-items:auto!important}.sm\:justify-items-start{justify-items:start!important}.sm\:justify-items-end{justify-items:end!important}.sm\:justify-items-center{justify-items:center!important}.sm\:justify-items-stretch{justify-items:stretch!important}.sm\:justify-start{justify-content:flex-start!important}.sm\:justify-end{justify-content:flex-end!important}.sm\:justify-center{justify-content:center!important}.sm\:justify-between{justify-content:space-between!important}.sm\:justify-around{justify-content:space-around!important}.sm\:justify-evenly{justify-content:space-evenly!important}.sm\:justify-self-auto{justify-self:auto!important}.sm\:justify-self-start{justify-self:start!important}.sm\:justify-self-end{justify-self:end!important}.sm\:justify-self-center{justify-self:center!important}.sm\:justify-self-stretch{justify-self:stretch!important}.sm\:flex-1{flex:1 1 0%!important}.sm\:flex-auto{flex:1 1 auto!important}.sm\:flex-initial{flex:0 1 auto!important}.sm\:flex-none{flex:none!important}.sm\:flex-grow-0{flex-grow:0!important}.sm\:flex-grow{flex-grow:1!important}.sm\:flex-shrink-0{flex-shrink:0!important}.sm\:flex-shrink{flex-shrink:1!important}.sm\:order-1{order:1!important}.sm\:order-2{order:2!important}.sm\:order-3{order:3!important}.sm\:order-4{order:4!important}.sm\:order-5{order:5!important}.sm\:order-6{order:6!important}.sm\:order-7{order:7!important}.sm\:order-8{order:8!important}.sm\:order-9{order:9!important}.sm\:order-10{order:10!important}.sm\:order-11{order:11!important}.sm\:order-12{order:12!important}.sm\:order-first{order:-9999!important}.sm\:order-last{order:9999!important}.sm\:order-none{order:0!important}.sm\:float-right{float:right!important}.sm\:float-left{float:left!important}.sm\:float-none{float:none!important}.sm\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .sm\:ltr\:float-right{float:right!important}[dir=ltr] .sm\:ltr\:float-left{float:left!important}[dir=ltr] .sm\:ltr\:float-none{float:none!important}[dir=ltr] .sm\:ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .sm\:rtl\:float-right{float:right!important}[dir=rtl] .sm\:rtl\:float-left{float:left!important}[dir=rtl] .sm\:rtl\:float-none{float:none!important}[dir=rtl] .sm\:rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.sm\:clear-left{clear:left!important}.sm\:clear-right{clear:right!important}.sm\:clear-both{clear:both!important}.sm\:clear-none{clear:none!important}.sm\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.sm\:font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.sm\:font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.sm\:font-hairline{font-weight:100!important}.sm\:font-thin{font-weight:200!important}.sm\:font-light{font-weight:300!important}.sm\:font-normal{font-weight:400!important}.sm\:font-medium{font-weight:500!important}.sm\:font-semibold{font-weight:600!important}.sm\:font-bold{font-weight:700!important}.sm\:font-extrabold{font-weight:800!important}.sm\:font-black{font-weight:900!important}.sm\:hover\:font-hairline:hover{font-weight:100!important}.sm\:hover\:font-thin:hover{font-weight:200!important}.sm\:hover\:font-light:hover{font-weight:300!important}.sm\:hover\:font-normal:hover{font-weight:400!important}.sm\:hover\:font-medium:hover{font-weight:500!important}.sm\:hover\:font-semibold:hover{font-weight:600!important}.sm\:hover\:font-bold:hover{font-weight:700!important}.sm\:hover\:font-extrabold:hover{font-weight:800!important}.sm\:hover\:font-black:hover{font-weight:900!important}.sm\:focus\:font-hairline:focus{font-weight:100!important}.sm\:focus\:font-thin:focus{font-weight:200!important}.sm\:focus\:font-light:focus{font-weight:300!important}.sm\:focus\:font-normal:focus{font-weight:400!important}.sm\:focus\:font-medium:focus{font-weight:500!important}.sm\:focus\:font-semibold:focus{font-weight:600!important}.sm\:focus\:font-bold:focus{font-weight:700!important}.sm\:focus\:font-extrabold:focus{font-weight:800!important}.sm\:focus\:font-black:focus{font-weight:900!important}.sm\:h-0{height:0!important}.sm\:h-1{height:.25rem!important}.sm\:h-2{height:.5rem!important}.sm\:h-3{height:.75rem!important}.sm\:h-4{height:1rem!important}.sm\:h-5{height:1.25rem!important}.sm\:h-6{height:1.5rem!important}.sm\:h-7{height:1.75rem!important}.sm\:h-8{height:2rem!important}.sm\:h-9{height:2.25rem!important}.sm\:h-10{height:2.5rem!important}.sm\:h-11{height:2.75rem!important}.sm\:h-12{height:3rem!important}.sm\:h-13{height:3.25rem!important}.sm\:h-14{height:3.5rem!important}.sm\:h-15{height:3.75rem!important}.sm\:h-16{height:4rem!important}.sm\:h-20{height:5rem!important}.sm\:h-24{height:6rem!important}.sm\:h-28{height:7rem!important}.sm\:h-32{height:8rem!important}.sm\:h-36{height:9rem!important}.sm\:h-40{height:10rem!important}.sm\:h-48{height:12rem!important}.sm\:h-56{height:14rem!important}.sm\:h-60{height:15rem!important}.sm\:h-64{height:16rem!important}.sm\:h-72{height:18rem!important}.sm\:h-80{height:20rem!important}.sm\:h-96{height:24rem!important}.sm\:h-auto{height:auto!important}.sm\:h-px{height:1px!important}.sm\:h-0\.5{height:.125rem!important}.sm\:h-1\.5{height:.375rem!important}.sm\:h-2\.5{height:.625rem!important}.sm\:h-3\.5{height:.875rem!important}.sm\:h-1\/2{height:50%!important}.sm\:h-1\/3{height:33.333333%!important}.sm\:h-2\/3{height:66.666667%!important}.sm\:h-1\/4{height:25%!important}.sm\:h-2\/4{height:50%!important}.sm\:h-3\/4{height:75%!important}.sm\:h-1\/5{height:20%!important}.sm\:h-2\/5{height:40%!important}.sm\:h-3\/5{height:60%!important}.sm\:h-4\/5{height:80%!important}.sm\:h-1\/6{height:16.666667%!important}.sm\:h-2\/6{height:33.333333%!important}.sm\:h-3\/6{height:50%!important}.sm\:h-4\/6{height:66.666667%!important}.sm\:h-5\/6{height:83.333333%!important}.sm\:h-1\/12{height:8.333333%!important}.sm\:h-2\/12{height:16.666667%!important}.sm\:h-3\/12{height:25%!important}.sm\:h-4\/12{height:33.333333%!important}.sm\:h-5\/12{height:41.666667%!important}.sm\:h-6\/12{height:50%!important}.sm\:h-7\/12{height:58.333333%!important}.sm\:h-8\/12{height:66.666667%!important}.sm\:h-9\/12{height:75%!important}.sm\:h-10\/12{height:83.333333%!important}.sm\:h-11\/12{height:91.666667%!important}.sm\:h-full{height:100%!important}.sm\:h-screen{height:100vh!important}.sm\:text-xs{font-size:.7rem!important}.sm\:text-sm{font-size:.875rem!important}.sm\:text-base{font-size:1rem!important}.sm\:text-lg{font-size:1.125rem!important}.sm\:text-xl{font-size:1.25rem!important}.sm\:text-2xl{font-size:1.5rem!important}.sm\:text-3xl{font-size:1.875rem!important}.sm\:text-4xl{font-size:2.25rem!important}.sm\:text-5xl{font-size:3rem!important}.sm\:text-6xl{font-size:4rem!important}.sm\:leading-3{line-height:.75rem!important}.sm\:leading-4{line-height:1rem!important}.sm\:leading-5{line-height:1.25rem!important}.sm\:leading-6{line-height:1.5rem!important}.sm\:leading-7{line-height:1.75rem!important}.sm\:leading-8{line-height:2rem!important}.sm\:leading-9{line-height:2.25rem!important}.sm\:leading-10{line-height:2.5rem!important}.sm\:leading-none{line-height:1!important}.sm\:leading-tight{line-height:1.25!important}.sm\:leading-snug{line-height:1.375!important}.sm\:leading-normal{line-height:1.5!important}.sm\:leading-relaxed{line-height:1.625!important}.sm\:leading-loose{line-height:2!important}.sm\:list-inside{list-style-position:inside!important}.sm\:list-outside{list-style-position:outside!important}.sm\:list-none{list-style-type:none!important}.sm\:list-disc{list-style-type:disc!important}.sm\:list-decimal{list-style-type:decimal!important}.sm\:m-0{margin:0!important}.sm\:m-1{margin:.25rem!important}.sm\:m-2{margin:.5rem!important}.sm\:m-3{margin:.75rem!important}.sm\:m-4{margin:1rem!important}.sm\:m-5{margin:1.25rem!important}.sm\:m-6{margin:1.5rem!important}.sm\:m-7{margin:1.75rem!important}.sm\:m-8{margin:2rem!important}.sm\:m-9{margin:2.25rem!important}.sm\:m-10{margin:2.5rem!important}.sm\:m-11{margin:2.75rem!important}.sm\:m-12{margin:3rem!important}.sm\:m-13{margin:3.25rem!important}.sm\:m-14{margin:3.5rem!important}.sm\:m-15{margin:3.75rem!important}.sm\:m-16{margin:4rem!important}.sm\:m-20{margin:5rem!important}.sm\:m-24{margin:6rem!important}.sm\:m-28{margin:7rem!important}.sm\:m-32{margin:8rem!important}.sm\:m-36{margin:9rem!important}.sm\:m-40{margin:10rem!important}.sm\:m-48{margin:12rem!important}.sm\:m-56{margin:14rem!important}.sm\:m-60{margin:15rem!important}.sm\:m-64{margin:16rem!important}.sm\:m-72{margin:18rem!important}.sm\:m-80{margin:20rem!important}.sm\:m-96{margin:24rem!important}.sm\:m-auto{margin:auto!important}.sm\:m-px{margin:1px!important}.sm\:m-0\.5{margin:.125rem!important}.sm\:m-1\.5{margin:.375rem!important}.sm\:m-2\.5{margin:.625rem!important}.sm\:m-3\.5{margin:.875rem!important}.sm\:m-1\/2{margin:50%!important}.sm\:m-1\/3{margin:33.333333%!important}.sm\:m-2\/3{margin:66.666667%!important}.sm\:m-1\/4{margin:25%!important}.sm\:m-2\/4{margin:50%!important}.sm\:m-3\/4{margin:75%!important}.sm\:m-1\/5{margin:20%!important}.sm\:m-2\/5{margin:40%!important}.sm\:m-3\/5{margin:60%!important}.sm\:m-4\/5{margin:80%!important}.sm\:m-1\/6{margin:16.666667%!important}.sm\:m-2\/6{margin:33.333333%!important}.sm\:m-3\/6{margin:50%!important}.sm\:m-4\/6{margin:66.666667%!important}.sm\:m-5\/6{margin:83.333333%!important}.sm\:m-1\/12{margin:8.333333%!important}.sm\:m-2\/12{margin:16.666667%!important}.sm\:m-3\/12{margin:25%!important}.sm\:m-4\/12{margin:33.333333%!important}.sm\:m-5\/12{margin:41.666667%!important}.sm\:m-6\/12{margin:50%!important}.sm\:m-7\/12{margin:58.333333%!important}.sm\:m-8\/12{margin:66.666667%!important}.sm\:m-9\/12{margin:75%!important}.sm\:m-10\/12{margin:83.333333%!important}.sm\:m-11\/12{margin:91.666667%!important}.sm\:m-full{margin:100%!important}.sm\:-m-1{margin:-.25rem!important}.sm\:-m-2{margin:-.5rem!important}.sm\:-m-3{margin:-.75rem!important}.sm\:-m-4{margin:-1rem!important}.sm\:-m-5{margin:-1.25rem!important}.sm\:-m-6{margin:-1.5rem!important}.sm\:-m-7{margin:-1.75rem!important}.sm\:-m-8{margin:-2rem!important}.sm\:-m-9{margin:-2.25rem!important}.sm\:-m-10{margin:-2.5rem!important}.sm\:-m-11{margin:-2.75rem!important}.sm\:-m-12{margin:-3rem!important}.sm\:-m-13{margin:-3.25rem!important}.sm\:-m-14{margin:-3.5rem!important}.sm\:-m-15{margin:-3.75rem!important}.sm\:-m-16{margin:-4rem!important}.sm\:-m-20{margin:-5rem!important}.sm\:-m-24{margin:-6rem!important}.sm\:-m-28{margin:-7rem!important}.sm\:-m-32{margin:-8rem!important}.sm\:-m-36{margin:-9rem!important}.sm\:-m-40{margin:-10rem!important}.sm\:-m-48{margin:-12rem!important}.sm\:-m-56{margin:-14rem!important}.sm\:-m-60{margin:-15rem!important}.sm\:-m-64{margin:-16rem!important}.sm\:-m-72{margin:-18rem!important}.sm\:-m-80{margin:-20rem!important}.sm\:-m-96{margin:-24rem!important}.sm\:-m-px{margin:-1px!important}.sm\:-m-0\.5{margin:-.125rem!important}.sm\:-m-1\.5{margin:-.375rem!important}.sm\:-m-2\.5{margin:-.625rem!important}.sm\:-m-3\.5{margin:-.875rem!important}.sm\:-m-1\/2{margin:-50%!important}.sm\:-m-1\/3{margin:-33.33333%!important}.sm\:-m-2\/3{margin:-66.66667%!important}.sm\:-m-1\/4{margin:-25%!important}.sm\:-m-2\/4{margin:-50%!important}.sm\:-m-3\/4{margin:-75%!important}.sm\:-m-1\/5{margin:-20%!important}.sm\:-m-2\/5{margin:-40%!important}.sm\:-m-3\/5{margin:-60%!important}.sm\:-m-4\/5{margin:-80%!important}.sm\:-m-1\/6{margin:-16.66667%!important}.sm\:-m-2\/6{margin:-33.33333%!important}.sm\:-m-3\/6{margin:-50%!important}.sm\:-m-4\/6{margin:-66.66667%!important}.sm\:-m-5\/6{margin:-83.33333%!important}.sm\:-m-1\/12{margin:-8.33333%!important}.sm\:-m-2\/12{margin:-16.66667%!important}.sm\:-m-3\/12{margin:-25%!important}.sm\:-m-4\/12{margin:-33.33333%!important}.sm\:-m-5\/12{margin:-41.66667%!important}.sm\:-m-6\/12{margin:-50%!important}.sm\:-m-7\/12{margin:-58.33333%!important}.sm\:-m-8\/12{margin:-66.66667%!important}.sm\:-m-9\/12{margin:-75%!important}.sm\:-m-10\/12{margin:-83.33333%!important}.sm\:-m-11\/12{margin:-91.66667%!important}.sm\:-m-full{margin:-100%!important}.sm\:my-0{margin-bottom:0!important;margin-top:0!important}.sm\:mx-0{margin-left:0!important;margin-right:0!important}.sm\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.sm\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.sm\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.sm\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.sm\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}.sm\:mx-4{margin-left:1rem!important;margin-right:1rem!important}.sm\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.sm\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.sm\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.sm\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.sm\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.sm\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}.sm\:mx-8{margin-left:2rem!important;margin-right:2rem!important}.sm\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.sm\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.sm\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.sm\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.sm\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.sm\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.sm\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}.sm\:mx-12{margin-left:3rem!important;margin-right:3rem!important}.sm\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.sm\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.sm\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.sm\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.sm\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.sm\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.sm\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}.sm\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.sm\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}.sm\:mx-20{margin-left:5rem!important;margin-right:5rem!important}.sm\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}.sm\:mx-24{margin-left:6rem!important;margin-right:6rem!important}.sm\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}.sm\:mx-28{margin-left:7rem!important;margin-right:7rem!important}.sm\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}.sm\:mx-32{margin-left:8rem!important;margin-right:8rem!important}.sm\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}.sm\:mx-36{margin-left:9rem!important;margin-right:9rem!important}.sm\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}.sm\:mx-40{margin-left:10rem!important;margin-right:10rem!important}.sm\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}.sm\:mx-48{margin-left:12rem!important;margin-right:12rem!important}.sm\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}.sm\:mx-56{margin-left:14rem!important;margin-right:14rem!important}.sm\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}.sm\:mx-60{margin-left:15rem!important;margin-right:15rem!important}.sm\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}.sm\:mx-64{margin-left:16rem!important;margin-right:16rem!important}.sm\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}.sm\:mx-72{margin-left:18rem!important;margin-right:18rem!important}.sm\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}.sm\:mx-80{margin-left:20rem!important;margin-right:20rem!important}.sm\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}.sm\:mx-96{margin-left:24rem!important;margin-right:24rem!important}.sm\:my-auto{margin-bottom:auto!important;margin-top:auto!important}.sm\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\:my-px{margin-bottom:1px!important;margin-top:1px!important}.sm\:mx-px{margin-left:1px!important;margin-right:1px!important}.sm\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.sm\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.sm\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.sm\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.sm\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.sm\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.sm\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.sm\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.sm\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.sm\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}.sm\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.sm\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.sm\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.sm\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.sm\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.sm\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}.sm\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.sm\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}.sm\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.sm\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}.sm\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.sm\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}.sm\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.sm\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}.sm\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.sm\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}.sm\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.sm\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}.sm\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.sm\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.sm\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.sm\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.sm\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.sm\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}.sm\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.sm\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.sm\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.sm\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.sm\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.sm\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.sm\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.sm\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.sm\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.sm\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}.sm\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.sm\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.sm\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.sm\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.sm\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.sm\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}.sm\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.sm\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.sm\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.sm\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.sm\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.sm\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}.sm\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.sm\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.sm\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.sm\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.sm\:my-full{margin-bottom:100%!important;margin-top:100%!important}.sm\:mx-full{margin-left:100%!important;margin-right:100%!important}.sm\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.sm\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.sm\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.sm\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.sm\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.sm\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.sm\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.sm\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.sm\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.sm\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.sm\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.sm\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.sm\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.sm\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.sm\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.sm\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.sm\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.sm\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.sm\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.sm\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.sm\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.sm\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.sm\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.sm\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.sm\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.sm\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.sm\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.sm\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.sm\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.sm\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.sm\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.sm\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.sm\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.sm\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.sm\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.sm\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.sm\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.sm\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.sm\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.sm\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.sm\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.sm\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.sm\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.sm\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.sm\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.sm\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.sm\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.sm\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.sm\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.sm\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.sm\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.sm\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.sm\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.sm\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.sm\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.sm\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.sm\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}.sm\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.sm\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.sm\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.sm\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.sm\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.sm\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.sm\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.sm\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.sm\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.sm\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.sm\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.sm\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.sm\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.sm\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.sm\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.sm\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.sm\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.sm\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.sm\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.sm\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.sm\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.sm\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.sm\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.sm\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.sm\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.sm\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.sm\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.sm\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.sm\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.sm\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.sm\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.sm\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.sm\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.sm\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.sm\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.sm\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.sm\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.sm\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.sm\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.sm\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.sm\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.sm\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.sm\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.sm\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.sm\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.sm\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.sm\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.sm\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.sm\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.sm\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.sm\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.sm\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.sm\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.sm\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.sm\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.sm\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.sm\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.sm\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.sm\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.sm\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.sm\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.sm\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}.sm\:mt-0{margin-top:0!important}.sm\:mr-0{margin-right:0!important}.sm\:mb-0{margin-bottom:0!important}.sm\:ml-0{margin-left:0!important}.sm\:mt-1{margin-top:.25rem!important}.sm\:mr-1{margin-right:.25rem!important}.sm\:mb-1{margin-bottom:.25rem!important}.sm\:ml-1{margin-left:.25rem!important}.sm\:mt-2{margin-top:.5rem!important}.sm\:mr-2{margin-right:.5rem!important}.sm\:mb-2{margin-bottom:.5rem!important}.sm\:ml-2{margin-left:.5rem!important}.sm\:mt-3{margin-top:.75rem!important}.sm\:mr-3{margin-right:.75rem!important}.sm\:mb-3{margin-bottom:.75rem!important}.sm\:ml-3{margin-left:.75rem!important}.sm\:mt-4{margin-top:1rem!important}.sm\:mr-4{margin-right:1rem!important}.sm\:mb-4{margin-bottom:1rem!important}.sm\:ml-4{margin-left:1rem!important}.sm\:mt-5{margin-top:1.25rem!important}.sm\:mr-5{margin-right:1.25rem!important}.sm\:mb-5{margin-bottom:1.25rem!important}.sm\:ml-5{margin-left:1.25rem!important}.sm\:mt-6{margin-top:1.5rem!important}.sm\:mr-6{margin-right:1.5rem!important}.sm\:mb-6{margin-bottom:1.5rem!important}.sm\:ml-6{margin-left:1.5rem!important}.sm\:mt-7{margin-top:1.75rem!important}.sm\:mr-7{margin-right:1.75rem!important}.sm\:mb-7{margin-bottom:1.75rem!important}.sm\:ml-7{margin-left:1.75rem!important}.sm\:mt-8{margin-top:2rem!important}.sm\:mr-8{margin-right:2rem!important}.sm\:mb-8{margin-bottom:2rem!important}.sm\:ml-8{margin-left:2rem!important}.sm\:mt-9{margin-top:2.25rem!important}.sm\:mr-9{margin-right:2.25rem!important}.sm\:mb-9{margin-bottom:2.25rem!important}.sm\:ml-9{margin-left:2.25rem!important}.sm\:mt-10{margin-top:2.5rem!important}.sm\:mr-10{margin-right:2.5rem!important}.sm\:mb-10{margin-bottom:2.5rem!important}.sm\:ml-10{margin-left:2.5rem!important}.sm\:mt-11{margin-top:2.75rem!important}.sm\:mr-11{margin-right:2.75rem!important}.sm\:mb-11{margin-bottom:2.75rem!important}.sm\:ml-11{margin-left:2.75rem!important}.sm\:mt-12{margin-top:3rem!important}.sm\:mr-12{margin-right:3rem!important}.sm\:mb-12{margin-bottom:3rem!important}.sm\:ml-12{margin-left:3rem!important}.sm\:mt-13{margin-top:3.25rem!important}.sm\:mr-13{margin-right:3.25rem!important}.sm\:mb-13{margin-bottom:3.25rem!important}.sm\:ml-13{margin-left:3.25rem!important}.sm\:mt-14{margin-top:3.5rem!important}.sm\:mr-14{margin-right:3.5rem!important}.sm\:mb-14{margin-bottom:3.5rem!important}.sm\:ml-14{margin-left:3.5rem!important}.sm\:mt-15{margin-top:3.75rem!important}.sm\:mr-15{margin-right:3.75rem!important}.sm\:mb-15{margin-bottom:3.75rem!important}.sm\:ml-15{margin-left:3.75rem!important}.sm\:mt-16{margin-top:4rem!important}.sm\:mr-16{margin-right:4rem!important}.sm\:mb-16{margin-bottom:4rem!important}.sm\:ml-16{margin-left:4rem!important}.sm\:mt-20{margin-top:5rem!important}.sm\:mr-20{margin-right:5rem!important}.sm\:mb-20{margin-bottom:5rem!important}.sm\:ml-20{margin-left:5rem!important}.sm\:mt-24{margin-top:6rem!important}.sm\:mr-24{margin-right:6rem!important}.sm\:mb-24{margin-bottom:6rem!important}.sm\:ml-24{margin-left:6rem!important}.sm\:mt-28{margin-top:7rem!important}.sm\:mr-28{margin-right:7rem!important}.sm\:mb-28{margin-bottom:7rem!important}.sm\:ml-28{margin-left:7rem!important}.sm\:mt-32{margin-top:8rem!important}.sm\:mr-32{margin-right:8rem!important}.sm\:mb-32{margin-bottom:8rem!important}.sm\:ml-32{margin-left:8rem!important}.sm\:mt-36{margin-top:9rem!important}.sm\:mr-36{margin-right:9rem!important}.sm\:mb-36{margin-bottom:9rem!important}.sm\:ml-36{margin-left:9rem!important}.sm\:mt-40{margin-top:10rem!important}.sm\:mr-40{margin-right:10rem!important}.sm\:mb-40{margin-bottom:10rem!important}.sm\:ml-40{margin-left:10rem!important}.sm\:mt-48{margin-top:12rem!important}.sm\:mr-48{margin-right:12rem!important}.sm\:mb-48{margin-bottom:12rem!important}.sm\:ml-48{margin-left:12rem!important}.sm\:mt-56{margin-top:14rem!important}.sm\:mr-56{margin-right:14rem!important}.sm\:mb-56{margin-bottom:14rem!important}.sm\:ml-56{margin-left:14rem!important}.sm\:mt-60{margin-top:15rem!important}.sm\:mr-60{margin-right:15rem!important}.sm\:mb-60{margin-bottom:15rem!important}.sm\:ml-60{margin-left:15rem!important}.sm\:mt-64{margin-top:16rem!important}.sm\:mr-64{margin-right:16rem!important}.sm\:mb-64{margin-bottom:16rem!important}.sm\:ml-64{margin-left:16rem!important}.sm\:mt-72{margin-top:18rem!important}.sm\:mr-72{margin-right:18rem!important}.sm\:mb-72{margin-bottom:18rem!important}.sm\:ml-72{margin-left:18rem!important}.sm\:mt-80{margin-top:20rem!important}.sm\:mr-80{margin-right:20rem!important}.sm\:mb-80{margin-bottom:20rem!important}.sm\:ml-80{margin-left:20rem!important}.sm\:mt-96{margin-top:24rem!important}.sm\:mr-96{margin-right:24rem!important}.sm\:mb-96{margin-bottom:24rem!important}.sm\:ml-96{margin-left:24rem!important}.sm\:mt-auto{margin-top:auto!important}.sm\:mr-auto{margin-right:auto!important}.sm\:mb-auto{margin-bottom:auto!important}.sm\:ml-auto{margin-left:auto!important}.sm\:mt-px{margin-top:1px!important}.sm\:mr-px{margin-right:1px!important}.sm\:mb-px{margin-bottom:1px!important}.sm\:ml-px{margin-left:1px!important}.sm\:mt-0\.5{margin-top:.125rem!important}.sm\:mr-0\.5{margin-right:.125rem!important}.sm\:mb-0\.5{margin-bottom:.125rem!important}.sm\:ml-0\.5{margin-left:.125rem!important}.sm\:mt-1\.5{margin-top:.375rem!important}.sm\:mr-1\.5{margin-right:.375rem!important}.sm\:mb-1\.5{margin-bottom:.375rem!important}.sm\:ml-1\.5{margin-left:.375rem!important}.sm\:mt-2\.5{margin-top:.625rem!important}.sm\:mr-2\.5{margin-right:.625rem!important}.sm\:mb-2\.5{margin-bottom:.625rem!important}.sm\:ml-2\.5{margin-left:.625rem!important}.sm\:mt-3\.5{margin-top:.875rem!important}.sm\:mr-3\.5{margin-right:.875rem!important}.sm\:mb-3\.5{margin-bottom:.875rem!important}.sm\:ml-3\.5{margin-left:.875rem!important}.sm\:mt-1\/2{margin-top:50%!important}.sm\:mr-1\/2{margin-right:50%!important}.sm\:mb-1\/2{margin-bottom:50%!important}.sm\:ml-1\/2{margin-left:50%!important}.sm\:mt-1\/3{margin-top:33.333333%!important}.sm\:mr-1\/3{margin-right:33.333333%!important}.sm\:mb-1\/3{margin-bottom:33.333333%!important}.sm\:ml-1\/3{margin-left:33.333333%!important}.sm\:mt-2\/3{margin-top:66.666667%!important}.sm\:mr-2\/3{margin-right:66.666667%!important}.sm\:mb-2\/3{margin-bottom:66.666667%!important}.sm\:ml-2\/3{margin-left:66.666667%!important}.sm\:mt-1\/4{margin-top:25%!important}.sm\:mr-1\/4{margin-right:25%!important}.sm\:mb-1\/4{margin-bottom:25%!important}.sm\:ml-1\/4{margin-left:25%!important}.sm\:mt-2\/4{margin-top:50%!important}.sm\:mr-2\/4{margin-right:50%!important}.sm\:mb-2\/4{margin-bottom:50%!important}.sm\:ml-2\/4{margin-left:50%!important}.sm\:mt-3\/4{margin-top:75%!important}.sm\:mr-3\/4{margin-right:75%!important}.sm\:mb-3\/4{margin-bottom:75%!important}.sm\:ml-3\/4{margin-left:75%!important}.sm\:mt-1\/5{margin-top:20%!important}.sm\:mr-1\/5{margin-right:20%!important}.sm\:mb-1\/5{margin-bottom:20%!important}.sm\:ml-1\/5{margin-left:20%!important}.sm\:mt-2\/5{margin-top:40%!important}.sm\:mr-2\/5{margin-right:40%!important}.sm\:mb-2\/5{margin-bottom:40%!important}.sm\:ml-2\/5{margin-left:40%!important}.sm\:mt-3\/5{margin-top:60%!important}.sm\:mr-3\/5{margin-right:60%!important}.sm\:mb-3\/5{margin-bottom:60%!important}.sm\:ml-3\/5{margin-left:60%!important}.sm\:mt-4\/5{margin-top:80%!important}.sm\:mr-4\/5{margin-right:80%!important}.sm\:mb-4\/5{margin-bottom:80%!important}.sm\:ml-4\/5{margin-left:80%!important}.sm\:mt-1\/6{margin-top:16.666667%!important}.sm\:mr-1\/6{margin-right:16.666667%!important}.sm\:mb-1\/6{margin-bottom:16.666667%!important}.sm\:ml-1\/6{margin-left:16.666667%!important}.sm\:mt-2\/6{margin-top:33.333333%!important}.sm\:mr-2\/6{margin-right:33.333333%!important}.sm\:mb-2\/6{margin-bottom:33.333333%!important}.sm\:ml-2\/6{margin-left:33.333333%!important}.sm\:mt-3\/6{margin-top:50%!important}.sm\:mr-3\/6{margin-right:50%!important}.sm\:mb-3\/6{margin-bottom:50%!important}.sm\:ml-3\/6{margin-left:50%!important}.sm\:mt-4\/6{margin-top:66.666667%!important}.sm\:mr-4\/6{margin-right:66.666667%!important}.sm\:mb-4\/6{margin-bottom:66.666667%!important}.sm\:ml-4\/6{margin-left:66.666667%!important}.sm\:mt-5\/6{margin-top:83.333333%!important}.sm\:mr-5\/6{margin-right:83.333333%!important}.sm\:mb-5\/6{margin-bottom:83.333333%!important}.sm\:ml-5\/6{margin-left:83.333333%!important}.sm\:mt-1\/12{margin-top:8.333333%!important}.sm\:mr-1\/12{margin-right:8.333333%!important}.sm\:mb-1\/12{margin-bottom:8.333333%!important}.sm\:ml-1\/12{margin-left:8.333333%!important}.sm\:mt-2\/12{margin-top:16.666667%!important}.sm\:mr-2\/12{margin-right:16.666667%!important}.sm\:mb-2\/12{margin-bottom:16.666667%!important}.sm\:ml-2\/12{margin-left:16.666667%!important}.sm\:mt-3\/12{margin-top:25%!important}.sm\:mr-3\/12{margin-right:25%!important}.sm\:mb-3\/12{margin-bottom:25%!important}.sm\:ml-3\/12{margin-left:25%!important}.sm\:mt-4\/12{margin-top:33.333333%!important}.sm\:mr-4\/12{margin-right:33.333333%!important}.sm\:mb-4\/12{margin-bottom:33.333333%!important}.sm\:ml-4\/12{margin-left:33.333333%!important}.sm\:mt-5\/12{margin-top:41.666667%!important}.sm\:mr-5\/12{margin-right:41.666667%!important}.sm\:mb-5\/12{margin-bottom:41.666667%!important}.sm\:ml-5\/12{margin-left:41.666667%!important}.sm\:mt-6\/12{margin-top:50%!important}.sm\:mr-6\/12{margin-right:50%!important}.sm\:mb-6\/12{margin-bottom:50%!important}.sm\:ml-6\/12{margin-left:50%!important}.sm\:mt-7\/12{margin-top:58.333333%!important}.sm\:mr-7\/12{margin-right:58.333333%!important}.sm\:mb-7\/12{margin-bottom:58.333333%!important}.sm\:ml-7\/12{margin-left:58.333333%!important}.sm\:mt-8\/12{margin-top:66.666667%!important}.sm\:mr-8\/12{margin-right:66.666667%!important}.sm\:mb-8\/12{margin-bottom:66.666667%!important}.sm\:ml-8\/12{margin-left:66.666667%!important}.sm\:mt-9\/12{margin-top:75%!important}.sm\:mr-9\/12{margin-right:75%!important}.sm\:mb-9\/12{margin-bottom:75%!important}.sm\:ml-9\/12{margin-left:75%!important}.sm\:mt-10\/12{margin-top:83.333333%!important}.sm\:mr-10\/12{margin-right:83.333333%!important}.sm\:mb-10\/12{margin-bottom:83.333333%!important}.sm\:ml-10\/12{margin-left:83.333333%!important}.sm\:mt-11\/12{margin-top:91.666667%!important}.sm\:mr-11\/12{margin-right:91.666667%!important}.sm\:mb-11\/12{margin-bottom:91.666667%!important}.sm\:ml-11\/12{margin-left:91.666667%!important}.sm\:mt-full{margin-top:100%!important}.sm\:mr-full{margin-right:100%!important}.sm\:mb-full{margin-bottom:100%!important}.sm\:ml-full{margin-left:100%!important}.sm\:-mt-1{margin-top:-.25rem!important}.sm\:-mr-1{margin-right:-.25rem!important}.sm\:-mb-1{margin-bottom:-.25rem!important}.sm\:-ml-1{margin-left:-.25rem!important}.sm\:-mt-2{margin-top:-.5rem!important}.sm\:-mr-2{margin-right:-.5rem!important}.sm\:-mb-2{margin-bottom:-.5rem!important}.sm\:-ml-2{margin-left:-.5rem!important}.sm\:-mt-3{margin-top:-.75rem!important}.sm\:-mr-3{margin-right:-.75rem!important}.sm\:-mb-3{margin-bottom:-.75rem!important}.sm\:-ml-3{margin-left:-.75rem!important}.sm\:-mt-4{margin-top:-1rem!important}.sm\:-mr-4{margin-right:-1rem!important}.sm\:-mb-4{margin-bottom:-1rem!important}.sm\:-ml-4{margin-left:-1rem!important}.sm\:-mt-5{margin-top:-1.25rem!important}.sm\:-mr-5{margin-right:-1.25rem!important}.sm\:-mb-5{margin-bottom:-1.25rem!important}.sm\:-ml-5{margin-left:-1.25rem!important}.sm\:-mt-6{margin-top:-1.5rem!important}.sm\:-mr-6{margin-right:-1.5rem!important}.sm\:-mb-6{margin-bottom:-1.5rem!important}.sm\:-ml-6{margin-left:-1.5rem!important}.sm\:-mt-7{margin-top:-1.75rem!important}.sm\:-mr-7{margin-right:-1.75rem!important}.sm\:-mb-7{margin-bottom:-1.75rem!important}.sm\:-ml-7{margin-left:-1.75rem!important}.sm\:-mt-8{margin-top:-2rem!important}.sm\:-mr-8{margin-right:-2rem!important}.sm\:-mb-8{margin-bottom:-2rem!important}.sm\:-ml-8{margin-left:-2rem!important}.sm\:-mt-9{margin-top:-2.25rem!important}.sm\:-mr-9{margin-right:-2.25rem!important}.sm\:-mb-9{margin-bottom:-2.25rem!important}.sm\:-ml-9{margin-left:-2.25rem!important}.sm\:-mt-10{margin-top:-2.5rem!important}.sm\:-mr-10{margin-right:-2.5rem!important}.sm\:-mb-10{margin-bottom:-2.5rem!important}.sm\:-ml-10{margin-left:-2.5rem!important}.sm\:-mt-11{margin-top:-2.75rem!important}.sm\:-mr-11{margin-right:-2.75rem!important}.sm\:-mb-11{margin-bottom:-2.75rem!important}.sm\:-ml-11{margin-left:-2.75rem!important}.sm\:-mt-12{margin-top:-3rem!important}.sm\:-mr-12{margin-right:-3rem!important}.sm\:-mb-12{margin-bottom:-3rem!important}.sm\:-ml-12{margin-left:-3rem!important}.sm\:-mt-13{margin-top:-3.25rem!important}.sm\:-mr-13{margin-right:-3.25rem!important}.sm\:-mb-13{margin-bottom:-3.25rem!important}.sm\:-ml-13{margin-left:-3.25rem!important}.sm\:-mt-14{margin-top:-3.5rem!important}.sm\:-mr-14{margin-right:-3.5rem!important}.sm\:-mb-14{margin-bottom:-3.5rem!important}.sm\:-ml-14{margin-left:-3.5rem!important}.sm\:-mt-15{margin-top:-3.75rem!important}.sm\:-mr-15{margin-right:-3.75rem!important}.sm\:-mb-15{margin-bottom:-3.75rem!important}.sm\:-ml-15{margin-left:-3.75rem!important}.sm\:-mt-16{margin-top:-4rem!important}.sm\:-mr-16{margin-right:-4rem!important}.sm\:-mb-16{margin-bottom:-4rem!important}.sm\:-ml-16{margin-left:-4rem!important}.sm\:-mt-20{margin-top:-5rem!important}.sm\:-mr-20{margin-right:-5rem!important}.sm\:-mb-20{margin-bottom:-5rem!important}.sm\:-ml-20{margin-left:-5rem!important}.sm\:-mt-24{margin-top:-6rem!important}.sm\:-mr-24{margin-right:-6rem!important}.sm\:-mb-24{margin-bottom:-6rem!important}.sm\:-ml-24{margin-left:-6rem!important}.sm\:-mt-28{margin-top:-7rem!important}.sm\:-mr-28{margin-right:-7rem!important}.sm\:-mb-28{margin-bottom:-7rem!important}.sm\:-ml-28{margin-left:-7rem!important}.sm\:-mt-32{margin-top:-8rem!important}.sm\:-mr-32{margin-right:-8rem!important}.sm\:-mb-32{margin-bottom:-8rem!important}.sm\:-ml-32{margin-left:-8rem!important}.sm\:-mt-36{margin-top:-9rem!important}.sm\:-mr-36{margin-right:-9rem!important}.sm\:-mb-36{margin-bottom:-9rem!important}.sm\:-ml-36{margin-left:-9rem!important}.sm\:-mt-40{margin-top:-10rem!important}.sm\:-mr-40{margin-right:-10rem!important}.sm\:-mb-40{margin-bottom:-10rem!important}.sm\:-ml-40{margin-left:-10rem!important}.sm\:-mt-48{margin-top:-12rem!important}.sm\:-mr-48{margin-right:-12rem!important}.sm\:-mb-48{margin-bottom:-12rem!important}.sm\:-ml-48{margin-left:-12rem!important}.sm\:-mt-56{margin-top:-14rem!important}.sm\:-mr-56{margin-right:-14rem!important}.sm\:-mb-56{margin-bottom:-14rem!important}.sm\:-ml-56{margin-left:-14rem!important}.sm\:-mt-60{margin-top:-15rem!important}.sm\:-mr-60{margin-right:-15rem!important}.sm\:-mb-60{margin-bottom:-15rem!important}.sm\:-ml-60{margin-left:-15rem!important}.sm\:-mt-64{margin-top:-16rem!important}.sm\:-mr-64{margin-right:-16rem!important}.sm\:-mb-64{margin-bottom:-16rem!important}.sm\:-ml-64{margin-left:-16rem!important}.sm\:-mt-72{margin-top:-18rem!important}.sm\:-mr-72{margin-right:-18rem!important}.sm\:-mb-72{margin-bottom:-18rem!important}.sm\:-ml-72{margin-left:-18rem!important}.sm\:-mt-80{margin-top:-20rem!important}.sm\:-mr-80{margin-right:-20rem!important}.sm\:-mb-80{margin-bottom:-20rem!important}.sm\:-ml-80{margin-left:-20rem!important}.sm\:-mt-96{margin-top:-24rem!important}.sm\:-mr-96{margin-right:-24rem!important}.sm\:-mb-96{margin-bottom:-24rem!important}.sm\:-ml-96{margin-left:-24rem!important}.sm\:-mt-px{margin-top:-1px!important}.sm\:-mr-px{margin-right:-1px!important}.sm\:-mb-px{margin-bottom:-1px!important}.sm\:-ml-px{margin-left:-1px!important}.sm\:-mt-0\.5{margin-top:-.125rem!important}.sm\:-mr-0\.5{margin-right:-.125rem!important}.sm\:-mb-0\.5{margin-bottom:-.125rem!important}.sm\:-ml-0\.5{margin-left:-.125rem!important}.sm\:-mt-1\.5{margin-top:-.375rem!important}.sm\:-mr-1\.5{margin-right:-.375rem!important}.sm\:-mb-1\.5{margin-bottom:-.375rem!important}.sm\:-ml-1\.5{margin-left:-.375rem!important}.sm\:-mt-2\.5{margin-top:-.625rem!important}.sm\:-mr-2\.5{margin-right:-.625rem!important}.sm\:-mb-2\.5{margin-bottom:-.625rem!important}.sm\:-ml-2\.5{margin-left:-.625rem!important}.sm\:-mt-3\.5{margin-top:-.875rem!important}.sm\:-mr-3\.5{margin-right:-.875rem!important}.sm\:-mb-3\.5{margin-bottom:-.875rem!important}.sm\:-ml-3\.5{margin-left:-.875rem!important}.sm\:-mt-1\/2{margin-top:-50%!important}.sm\:-mr-1\/2{margin-right:-50%!important}.sm\:-mb-1\/2{margin-bottom:-50%!important}.sm\:-ml-1\/2{margin-left:-50%!important}.sm\:-mt-1\/3{margin-top:-33.33333%!important}.sm\:-mr-1\/3{margin-right:-33.33333%!important}.sm\:-mb-1\/3{margin-bottom:-33.33333%!important}.sm\:-ml-1\/3{margin-left:-33.33333%!important}.sm\:-mt-2\/3{margin-top:-66.66667%!important}.sm\:-mr-2\/3{margin-right:-66.66667%!important}.sm\:-mb-2\/3{margin-bottom:-66.66667%!important}.sm\:-ml-2\/3{margin-left:-66.66667%!important}.sm\:-mt-1\/4{margin-top:-25%!important}.sm\:-mr-1\/4{margin-right:-25%!important}.sm\:-mb-1\/4{margin-bottom:-25%!important}.sm\:-ml-1\/4{margin-left:-25%!important}.sm\:-mt-2\/4{margin-top:-50%!important}.sm\:-mr-2\/4{margin-right:-50%!important}.sm\:-mb-2\/4{margin-bottom:-50%!important}.sm\:-ml-2\/4{margin-left:-50%!important}.sm\:-mt-3\/4{margin-top:-75%!important}.sm\:-mr-3\/4{margin-right:-75%!important}.sm\:-mb-3\/4{margin-bottom:-75%!important}.sm\:-ml-3\/4{margin-left:-75%!important}.sm\:-mt-1\/5{margin-top:-20%!important}.sm\:-mr-1\/5{margin-right:-20%!important}.sm\:-mb-1\/5{margin-bottom:-20%!important}.sm\:-ml-1\/5{margin-left:-20%!important}.sm\:-mt-2\/5{margin-top:-40%!important}.sm\:-mr-2\/5{margin-right:-40%!important}.sm\:-mb-2\/5{margin-bottom:-40%!important}.sm\:-ml-2\/5{margin-left:-40%!important}.sm\:-mt-3\/5{margin-top:-60%!important}.sm\:-mr-3\/5{margin-right:-60%!important}.sm\:-mb-3\/5{margin-bottom:-60%!important}.sm\:-ml-3\/5{margin-left:-60%!important}.sm\:-mt-4\/5{margin-top:-80%!important}.sm\:-mr-4\/5{margin-right:-80%!important}.sm\:-mb-4\/5{margin-bottom:-80%!important}.sm\:-ml-4\/5{margin-left:-80%!important}.sm\:-mt-1\/6{margin-top:-16.66667%!important}.sm\:-mr-1\/6{margin-right:-16.66667%!important}.sm\:-mb-1\/6{margin-bottom:-16.66667%!important}.sm\:-ml-1\/6{margin-left:-16.66667%!important}.sm\:-mt-2\/6{margin-top:-33.33333%!important}.sm\:-mr-2\/6{margin-right:-33.33333%!important}.sm\:-mb-2\/6{margin-bottom:-33.33333%!important}.sm\:-ml-2\/6{margin-left:-33.33333%!important}.sm\:-mt-3\/6{margin-top:-50%!important}.sm\:-mr-3\/6{margin-right:-50%!important}.sm\:-mb-3\/6{margin-bottom:-50%!important}.sm\:-ml-3\/6{margin-left:-50%!important}.sm\:-mt-4\/6{margin-top:-66.66667%!important}.sm\:-mr-4\/6{margin-right:-66.66667%!important}.sm\:-mb-4\/6{margin-bottom:-66.66667%!important}.sm\:-ml-4\/6{margin-left:-66.66667%!important}.sm\:-mt-5\/6{margin-top:-83.33333%!important}.sm\:-mr-5\/6{margin-right:-83.33333%!important}.sm\:-mb-5\/6{margin-bottom:-83.33333%!important}.sm\:-ml-5\/6{margin-left:-83.33333%!important}.sm\:-mt-1\/12{margin-top:-8.33333%!important}.sm\:-mr-1\/12{margin-right:-8.33333%!important}.sm\:-mb-1\/12{margin-bottom:-8.33333%!important}.sm\:-ml-1\/12{margin-left:-8.33333%!important}.sm\:-mt-2\/12{margin-top:-16.66667%!important}.sm\:-mr-2\/12{margin-right:-16.66667%!important}.sm\:-mb-2\/12{margin-bottom:-16.66667%!important}.sm\:-ml-2\/12{margin-left:-16.66667%!important}.sm\:-mt-3\/12{margin-top:-25%!important}.sm\:-mr-3\/12{margin-right:-25%!important}.sm\:-mb-3\/12{margin-bottom:-25%!important}.sm\:-ml-3\/12{margin-left:-25%!important}.sm\:-mt-4\/12{margin-top:-33.33333%!important}.sm\:-mr-4\/12{margin-right:-33.33333%!important}.sm\:-mb-4\/12{margin-bottom:-33.33333%!important}.sm\:-ml-4\/12{margin-left:-33.33333%!important}.sm\:-mt-5\/12{margin-top:-41.66667%!important}.sm\:-mr-5\/12{margin-right:-41.66667%!important}.sm\:-mb-5\/12{margin-bottom:-41.66667%!important}.sm\:-ml-5\/12{margin-left:-41.66667%!important}.sm\:-mt-6\/12{margin-top:-50%!important}.sm\:-mr-6\/12{margin-right:-50%!important}.sm\:-mb-6\/12{margin-bottom:-50%!important}.sm\:-ml-6\/12{margin-left:-50%!important}.sm\:-mt-7\/12{margin-top:-58.33333%!important}.sm\:-mr-7\/12{margin-right:-58.33333%!important}.sm\:-mb-7\/12{margin-bottom:-58.33333%!important}.sm\:-ml-7\/12{margin-left:-58.33333%!important}.sm\:-mt-8\/12{margin-top:-66.66667%!important}.sm\:-mr-8\/12{margin-right:-66.66667%!important}.sm\:-mb-8\/12{margin-bottom:-66.66667%!important}.sm\:-ml-8\/12{margin-left:-66.66667%!important}.sm\:-mt-9\/12{margin-top:-75%!important}.sm\:-mr-9\/12{margin-right:-75%!important}.sm\:-mb-9\/12{margin-bottom:-75%!important}.sm\:-ml-9\/12{margin-left:-75%!important}.sm\:-mt-10\/12{margin-top:-83.33333%!important}.sm\:-mr-10\/12{margin-right:-83.33333%!important}.sm\:-mb-10\/12{margin-bottom:-83.33333%!important}.sm\:-ml-10\/12{margin-left:-83.33333%!important}.sm\:-mt-11\/12{margin-top:-91.66667%!important}.sm\:-mr-11\/12{margin-right:-91.66667%!important}.sm\:-mb-11\/12{margin-bottom:-91.66667%!important}.sm\:-ml-11\/12{margin-left:-91.66667%!important}.sm\:-mt-full{margin-top:-100%!important}.sm\:-mr-full{margin-right:-100%!important}.sm\:-mb-full{margin-bottom:-100%!important}.sm\:-ml-full{margin-left:-100%!important}[dir=ltr] .sm\:ltr\:m-0{margin:0!important}[dir=ltr] .sm\:ltr\:m-1{margin:.25rem!important}[dir=ltr] .sm\:ltr\:m-2{margin:.5rem!important}[dir=ltr] .sm\:ltr\:m-3{margin:.75rem!important}[dir=ltr] .sm\:ltr\:m-4{margin:1rem!important}[dir=ltr] .sm\:ltr\:m-5{margin:1.25rem!important}[dir=ltr] .sm\:ltr\:m-6{margin:1.5rem!important}[dir=ltr] .sm\:ltr\:m-7{margin:1.75rem!important}[dir=ltr] .sm\:ltr\:m-8{margin:2rem!important}[dir=ltr] .sm\:ltr\:m-9{margin:2.25rem!important}[dir=ltr] .sm\:ltr\:m-10{margin:2.5rem!important}[dir=ltr] .sm\:ltr\:m-11{margin:2.75rem!important}[dir=ltr] .sm\:ltr\:m-12{margin:3rem!important}[dir=ltr] .sm\:ltr\:m-13{margin:3.25rem!important}[dir=ltr] .sm\:ltr\:m-14{margin:3.5rem!important}[dir=ltr] .sm\:ltr\:m-15{margin:3.75rem!important}[dir=ltr] .sm\:ltr\:m-16{margin:4rem!important}[dir=ltr] .sm\:ltr\:m-20{margin:5rem!important}[dir=ltr] .sm\:ltr\:m-24{margin:6rem!important}[dir=ltr] .sm\:ltr\:m-28{margin:7rem!important}[dir=ltr] .sm\:ltr\:m-32{margin:8rem!important}[dir=ltr] .sm\:ltr\:m-36{margin:9rem!important}[dir=ltr] .sm\:ltr\:m-40{margin:10rem!important}[dir=ltr] .sm\:ltr\:m-48{margin:12rem!important}[dir=ltr] .sm\:ltr\:m-56{margin:14rem!important}[dir=ltr] .sm\:ltr\:m-60{margin:15rem!important}[dir=ltr] .sm\:ltr\:m-64{margin:16rem!important}[dir=ltr] .sm\:ltr\:m-72{margin:18rem!important}[dir=ltr] .sm\:ltr\:m-80{margin:20rem!important}[dir=ltr] .sm\:ltr\:m-96{margin:24rem!important}[dir=ltr] .sm\:ltr\:m-auto{margin:auto!important}[dir=ltr] .sm\:ltr\:m-px{margin:1px!important}[dir=ltr] .sm\:ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .sm\:ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .sm\:ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .sm\:ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .sm\:ltr\:m-1\/2{margin:50%!important}[dir=ltr] .sm\:ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .sm\:ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .sm\:ltr\:m-1\/4{margin:25%!important}[dir=ltr] .sm\:ltr\:m-2\/4{margin:50%!important}[dir=ltr] .sm\:ltr\:m-3\/4{margin:75%!important}[dir=ltr] .sm\:ltr\:m-1\/5{margin:20%!important}[dir=ltr] .sm\:ltr\:m-2\/5{margin:40%!important}[dir=ltr] .sm\:ltr\:m-3\/5{margin:60%!important}[dir=ltr] .sm\:ltr\:m-4\/5{margin:80%!important}[dir=ltr] .sm\:ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .sm\:ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .sm\:ltr\:m-3\/6{margin:50%!important}[dir=ltr] .sm\:ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .sm\:ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .sm\:ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .sm\:ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .sm\:ltr\:m-3\/12{margin:25%!important}[dir=ltr] .sm\:ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .sm\:ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .sm\:ltr\:m-6\/12{margin:50%!important}[dir=ltr] .sm\:ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .sm\:ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .sm\:ltr\:m-9\/12{margin:75%!important}[dir=ltr] .sm\:ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .sm\:ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .sm\:ltr\:m-full{margin:100%!important}[dir=ltr] .sm\:ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .sm\:ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .sm\:ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .sm\:ltr\:-m-4{margin:-1rem!important}[dir=ltr] .sm\:ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .sm\:ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .sm\:ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .sm\:ltr\:-m-8{margin:-2rem!important}[dir=ltr] .sm\:ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .sm\:ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .sm\:ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .sm\:ltr\:-m-12{margin:-3rem!important}[dir=ltr] .sm\:ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .sm\:ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .sm\:ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .sm\:ltr\:-m-16{margin:-4rem!important}[dir=ltr] .sm\:ltr\:-m-20{margin:-5rem!important}[dir=ltr] .sm\:ltr\:-m-24{margin:-6rem!important}[dir=ltr] .sm\:ltr\:-m-28{margin:-7rem!important}[dir=ltr] .sm\:ltr\:-m-32{margin:-8rem!important}[dir=ltr] .sm\:ltr\:-m-36{margin:-9rem!important}[dir=ltr] .sm\:ltr\:-m-40{margin:-10rem!important}[dir=ltr] .sm\:ltr\:-m-48{margin:-12rem!important}[dir=ltr] .sm\:ltr\:-m-56{margin:-14rem!important}[dir=ltr] .sm\:ltr\:-m-60{margin:-15rem!important}[dir=ltr] .sm\:ltr\:-m-64{margin:-16rem!important}[dir=ltr] .sm\:ltr\:-m-72{margin:-18rem!important}[dir=ltr] .sm\:ltr\:-m-80{margin:-20rem!important}[dir=ltr] .sm\:ltr\:-m-96{margin:-24rem!important}[dir=ltr] .sm\:ltr\:-m-px{margin:-1px!important}[dir=ltr] .sm\:ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .sm\:ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .sm\:ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .sm\:ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .sm\:ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .sm\:ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .sm\:ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .sm\:ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .sm\:ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .sm\:ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .sm\:ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .sm\:ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .sm\:ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .sm\:ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .sm\:ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .sm\:ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .sm\:ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .sm\:ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .sm\:ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .sm\:ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .sm\:ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .sm\:ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .sm\:ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .sm\:ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .sm\:ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .sm\:ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .sm\:ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .sm\:ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .sm\:ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .sm\:ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .sm\:ltr\:-m-full{margin:-100%!important}[dir=ltr] .sm\:ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .sm\:ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .sm\:ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .sm\:ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .sm\:ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .sm\:ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .sm\:ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .sm\:ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .sm\:ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .sm\:ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .sm\:ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .sm\:ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .sm\:ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .sm\:ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .sm\:ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .sm\:ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .sm\:ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .sm\:ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .sm\:ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .sm\:ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .sm\:ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .sm\:ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .sm\:ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .sm\:ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .sm\:ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .sm\:ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .sm\:ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .sm\:ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .sm\:ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .sm\:ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .sm\:ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .sm\:ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .sm\:ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .sm\:ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .sm\:ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .sm\:ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .sm\:ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .sm\:ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .sm\:ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .sm\:ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .sm\:ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .sm\:ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .sm\:ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .sm\:ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .sm\:ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .sm\:ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .sm\:ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .sm\:ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .sm\:ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .sm\:ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .sm\:ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .sm\:ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .sm\:ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .sm\:ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .sm\:ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .sm\:ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .sm\:ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .sm\:ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .sm\:ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .sm\:ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .sm\:ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .sm\:ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .sm\:ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .sm\:ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .sm\:ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .sm\:ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .sm\:ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .sm\:ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .sm\:ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .sm\:ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .sm\:ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .sm\:ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .sm\:ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .sm\:ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .sm\:ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .sm\:ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .sm\:ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .sm\:ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .sm\:ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .sm\:ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .sm\:ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .sm\:ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .sm\:ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .sm\:ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .sm\:ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .sm\:ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .sm\:ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .sm\:ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .sm\:ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .sm\:ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .sm\:ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .sm\:ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .sm\:ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .sm\:ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .sm\:ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .sm\:ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .sm\:ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .sm\:ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .sm\:ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .sm\:ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .sm\:ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .sm\:ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .sm\:ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .sm\:ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .sm\:ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .sm\:ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .sm\:ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .sm\:ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .sm\:ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .sm\:ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .sm\:ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .sm\:ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .sm\:ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .sm\:ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .sm\:ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .sm\:ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .sm\:ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .sm\:ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .sm\:ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .sm\:ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .sm\:ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .sm\:ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .sm\:ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .sm\:ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .sm\:ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .sm\:ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .sm\:ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .sm\:ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .sm\:ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .sm\:ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .sm\:ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .sm\:ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .sm\:ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .sm\:ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .sm\:ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .sm\:ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .sm\:ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .sm\:ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .sm\:ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .sm\:ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .sm\:ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .sm\:ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .sm\:ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .sm\:ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .sm\:ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .sm\:ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .sm\:ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .sm\:ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .sm\:ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .sm\:ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .sm\:ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .sm\:ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .sm\:ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .sm\:ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .sm\:ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .sm\:ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .sm\:ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .sm\:ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .sm\:ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .sm\:ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .sm\:ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .sm\:ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .sm\:ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .sm\:ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .sm\:ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .sm\:ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .sm\:ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .sm\:ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .sm\:ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .sm\:ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .sm\:ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .sm\:ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .sm\:ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .sm\:ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .sm\:ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .sm\:ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .sm\:ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .sm\:ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .sm\:ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .sm\:ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .sm\:ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .sm\:ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .sm\:ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .sm\:ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .sm\:ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .sm\:ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .sm\:ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .sm\:ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .sm\:ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .sm\:ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .sm\:ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .sm\:ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .sm\:ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .sm\:ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .sm\:ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .sm\:ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .sm\:ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .sm\:ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .sm\:ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .sm\:ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .sm\:ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .sm\:ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .sm\:ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .sm\:ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .sm\:ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .sm\:ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .sm\:ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .sm\:ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .sm\:ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .sm\:ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .sm\:ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .sm\:ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .sm\:ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .sm\:ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .sm\:ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .sm\:ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .sm\:ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .sm\:ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .sm\:ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .sm\:ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .sm\:ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .sm\:ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .sm\:ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .sm\:ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .sm\:ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .sm\:ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .sm\:ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .sm\:ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .sm\:ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .sm\:ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .sm\:ltr\:mt-0{margin-top:0!important}[dir=ltr] .sm\:ltr\:mr-0{margin-right:0!important}[dir=ltr] .sm\:ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .sm\:ltr\:ml-0{margin-left:0!important}[dir=ltr] .sm\:ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .sm\:ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .sm\:ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .sm\:ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .sm\:ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .sm\:ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .sm\:ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .sm\:ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .sm\:ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .sm\:ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .sm\:ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .sm\:ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .sm\:ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .sm\:ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .sm\:ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .sm\:ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .sm\:ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .sm\:ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .sm\:ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .sm\:ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .sm\:ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .sm\:ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .sm\:ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .sm\:ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .sm\:ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .sm\:ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .sm\:ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .sm\:ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .sm\:ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .sm\:ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .sm\:ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .sm\:ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .sm\:ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .sm\:ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .sm\:ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .sm\:ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .sm\:ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .sm\:ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .sm\:ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .sm\:ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .sm\:ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .sm\:ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .sm\:ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .sm\:ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .sm\:ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .sm\:ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .sm\:ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .sm\:ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .sm\:ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .sm\:ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .sm\:ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .sm\:ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .sm\:ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .sm\:ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .sm\:ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .sm\:ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .sm\:ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .sm\:ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .sm\:ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .sm\:ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .sm\:ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .sm\:ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .sm\:ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .sm\:ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .sm\:ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .sm\:ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .sm\:ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .sm\:ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .sm\:ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .sm\:ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .sm\:ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .sm\:ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .sm\:ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .sm\:ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .sm\:ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .sm\:ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .sm\:ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .sm\:ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .sm\:ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .sm\:ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .sm\:ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .sm\:ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .sm\:ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .sm\:ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .sm\:ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .sm\:ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .sm\:ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .sm\:ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .sm\:ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .sm\:ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .sm\:ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .sm\:ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .sm\:ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .sm\:ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .sm\:ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .sm\:ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .sm\:ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .sm\:ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .sm\:ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .sm\:ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .sm\:ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .sm\:ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .sm\:ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .sm\:ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .sm\:ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .sm\:ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .sm\:ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .sm\:ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .sm\:ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .sm\:ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .sm\:ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .sm\:ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .sm\:ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .sm\:ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .sm\:ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .sm\:ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .sm\:ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .sm\:ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .sm\:ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .sm\:ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .sm\:ltr\:mt-px{margin-top:1px!important}[dir=ltr] .sm\:ltr\:mr-px{margin-right:1px!important}[dir=ltr] .sm\:ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .sm\:ltr\:ml-px{margin-left:1px!important}[dir=ltr] .sm\:ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .sm\:ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .sm\:ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .sm\:ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .sm\:ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .sm\:ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .sm\:ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .sm\:ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .sm\:ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .sm\:ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .sm\:ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .sm\:ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .sm\:ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .sm\:ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .sm\:ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .sm\:ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .sm\:ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .sm\:ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .sm\:ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .sm\:ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .sm\:ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .sm\:ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .sm\:ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .sm\:ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .sm\:ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .sm\:ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .sm\:ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .sm\:ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .sm\:ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .sm\:ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .sm\:ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .sm\:ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .sm\:ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .sm\:ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .sm\:ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .sm\:ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .sm\:ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .sm\:ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .sm\:ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .sm\:ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .sm\:ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .sm\:ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .sm\:ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .sm\:ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .sm\:ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .sm\:ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .sm\:ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .sm\:ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .sm\:ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .sm\:ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .sm\:ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .sm\:ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .sm\:ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .sm\:ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .sm\:ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .sm\:ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .sm\:ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .sm\:ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .sm\:ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .sm\:ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .sm\:ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .sm\:ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .sm\:ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .sm\:ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .sm\:ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .sm\:ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .sm\:ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .sm\:ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .sm\:ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .sm\:ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .sm\:ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .sm\:ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .sm\:ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .sm\:ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .sm\:ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .sm\:ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .sm\:ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .sm\:ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .sm\:ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .sm\:ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .sm\:ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .sm\:ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .sm\:ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .sm\:ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .sm\:ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .sm\:ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .sm\:ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .sm\:ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .sm\:ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .sm\:ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .sm\:ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .sm\:ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .sm\:ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .sm\:ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .sm\:ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .sm\:ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .sm\:ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .sm\:ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .sm\:ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .sm\:ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .sm\:ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .sm\:ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .sm\:ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .sm\:ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .sm\:ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .sm\:ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .sm\:ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .sm\:ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .sm\:ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .sm\:ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .sm\:ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .sm\:ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .sm\:ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .sm\:ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .sm\:ltr\:mt-full{margin-top:100%!important}[dir=ltr] .sm\:ltr\:mr-full{margin-right:100%!important}[dir=ltr] .sm\:ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .sm\:ltr\:ml-full{margin-left:100%!important}[dir=ltr] .sm\:ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .sm\:ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .sm\:ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .sm\:ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .sm\:ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .sm\:ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .sm\:ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .sm\:ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .sm\:ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .sm\:ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .sm\:ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .sm\:ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .sm\:ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .sm\:ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .sm\:ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .sm\:ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .sm\:ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .sm\:ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .sm\:ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .sm\:ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .sm\:ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .sm\:ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .sm\:ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .sm\:ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .sm\:ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .sm\:ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .sm\:ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .sm\:ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .sm\:ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .sm\:ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .sm\:ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .sm\:ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .sm\:ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .sm\:ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .sm\:ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .sm\:ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .sm\:ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .sm\:ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .sm\:ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .sm\:ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .sm\:ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .sm\:ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .sm\:ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .sm\:ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .sm\:ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .sm\:ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .sm\:ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .sm\:ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .sm\:ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .sm\:ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .sm\:ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .sm\:ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .sm\:ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .sm\:ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .sm\:ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .sm\:ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .sm\:ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .sm\:ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .sm\:ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .sm\:ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .sm\:ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .sm\:ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .sm\:ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .sm\:ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .sm\:ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .sm\:ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .sm\:ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .sm\:ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .sm\:ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .sm\:ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .sm\:ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .sm\:ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .sm\:ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .sm\:ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .sm\:ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .sm\:ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .sm\:ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .sm\:ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .sm\:ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .sm\:ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .sm\:ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .sm\:ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .sm\:ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .sm\:ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .sm\:ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .sm\:ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .sm\:ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .sm\:ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .sm\:ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .sm\:ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .sm\:ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .sm\:ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .sm\:ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .sm\:ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .sm\:ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .sm\:ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .sm\:ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .sm\:ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .sm\:ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .sm\:ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .sm\:ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .sm\:ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .sm\:ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .sm\:ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .sm\:ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .sm\:ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .sm\:ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .sm\:ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .sm\:ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .sm\:ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .sm\:ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .sm\:ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .sm\:ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .sm\:ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .sm\:ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .sm\:ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .sm\:ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .sm\:ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .sm\:ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .sm\:ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .sm\:ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .sm\:ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .sm\:ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .sm\:ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .sm\:ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .sm\:ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .sm\:ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .sm\:ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .sm\:ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .sm\:ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .sm\:ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .sm\:ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .sm\:ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .sm\:ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .sm\:ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .sm\:ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .sm\:ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .sm\:ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .sm\:ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .sm\:ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .sm\:ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .sm\:ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .sm\:ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .sm\:ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .sm\:ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .sm\:ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .sm\:ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .sm\:ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .sm\:ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .sm\:ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .sm\:ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .sm\:ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .sm\:ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .sm\:ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .sm\:ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .sm\:ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .sm\:ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .sm\:ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .sm\:ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .sm\:ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .sm\:ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .sm\:ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .sm\:ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .sm\:ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .sm\:ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .sm\:ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .sm\:ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .sm\:ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .sm\:ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .sm\:ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .sm\:ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .sm\:ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .sm\:ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .sm\:ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .sm\:ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .sm\:ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .sm\:ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .sm\:ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .sm\:ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .sm\:ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .sm\:ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .sm\:ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .sm\:ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .sm\:ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .sm\:ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .sm\:ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .sm\:ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .sm\:ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .sm\:ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .sm\:ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .sm\:ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .sm\:ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .sm\:ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .sm\:ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .sm\:ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .sm\:ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .sm\:ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .sm\:ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .sm\:ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .sm\:ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .sm\:ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .sm\:ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .sm\:ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .sm\:ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .sm\:ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .sm\:ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .sm\:ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .sm\:ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .sm\:ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .sm\:ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .sm\:ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .sm\:ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .sm\:rtl\:m-0{margin:0!important}[dir=rtl] .sm\:rtl\:m-1{margin:.25rem!important}[dir=rtl] .sm\:rtl\:m-2{margin:.5rem!important}[dir=rtl] .sm\:rtl\:m-3{margin:.75rem!important}[dir=rtl] .sm\:rtl\:m-4{margin:1rem!important}[dir=rtl] .sm\:rtl\:m-5{margin:1.25rem!important}[dir=rtl] .sm\:rtl\:m-6{margin:1.5rem!important}[dir=rtl] .sm\:rtl\:m-7{margin:1.75rem!important}[dir=rtl] .sm\:rtl\:m-8{margin:2rem!important}[dir=rtl] .sm\:rtl\:m-9{margin:2.25rem!important}[dir=rtl] .sm\:rtl\:m-10{margin:2.5rem!important}[dir=rtl] .sm\:rtl\:m-11{margin:2.75rem!important}[dir=rtl] .sm\:rtl\:m-12{margin:3rem!important}[dir=rtl] .sm\:rtl\:m-13{margin:3.25rem!important}[dir=rtl] .sm\:rtl\:m-14{margin:3.5rem!important}[dir=rtl] .sm\:rtl\:m-15{margin:3.75rem!important}[dir=rtl] .sm\:rtl\:m-16{margin:4rem!important}[dir=rtl] .sm\:rtl\:m-20{margin:5rem!important}[dir=rtl] .sm\:rtl\:m-24{margin:6rem!important}[dir=rtl] .sm\:rtl\:m-28{margin:7rem!important}[dir=rtl] .sm\:rtl\:m-32{margin:8rem!important}[dir=rtl] .sm\:rtl\:m-36{margin:9rem!important}[dir=rtl] .sm\:rtl\:m-40{margin:10rem!important}[dir=rtl] .sm\:rtl\:m-48{margin:12rem!important}[dir=rtl] .sm\:rtl\:m-56{margin:14rem!important}[dir=rtl] .sm\:rtl\:m-60{margin:15rem!important}[dir=rtl] .sm\:rtl\:m-64{margin:16rem!important}[dir=rtl] .sm\:rtl\:m-72{margin:18rem!important}[dir=rtl] .sm\:rtl\:m-80{margin:20rem!important}[dir=rtl] .sm\:rtl\:m-96{margin:24rem!important}[dir=rtl] .sm\:rtl\:m-auto{margin:auto!important}[dir=rtl] .sm\:rtl\:m-px{margin:1px!important}[dir=rtl] .sm\:rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .sm\:rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .sm\:rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .sm\:rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .sm\:rtl\:m-1\/2{margin:50%!important}[dir=rtl] .sm\:rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .sm\:rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .sm\:rtl\:m-1\/4{margin:25%!important}[dir=rtl] .sm\:rtl\:m-2\/4{margin:50%!important}[dir=rtl] .sm\:rtl\:m-3\/4{margin:75%!important}[dir=rtl] .sm\:rtl\:m-1\/5{margin:20%!important}[dir=rtl] .sm\:rtl\:m-2\/5{margin:40%!important}[dir=rtl] .sm\:rtl\:m-3\/5{margin:60%!important}[dir=rtl] .sm\:rtl\:m-4\/5{margin:80%!important}[dir=rtl] .sm\:rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .sm\:rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .sm\:rtl\:m-3\/6{margin:50%!important}[dir=rtl] .sm\:rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .sm\:rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .sm\:rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .sm\:rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .sm\:rtl\:m-3\/12{margin:25%!important}[dir=rtl] .sm\:rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .sm\:rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .sm\:rtl\:m-6\/12{margin:50%!important}[dir=rtl] .sm\:rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .sm\:rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .sm\:rtl\:m-9\/12{margin:75%!important}[dir=rtl] .sm\:rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .sm\:rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .sm\:rtl\:m-full{margin:100%!important}[dir=rtl] .sm\:rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .sm\:rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .sm\:rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .sm\:rtl\:-m-4{margin:-1rem!important}[dir=rtl] .sm\:rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .sm\:rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .sm\:rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .sm\:rtl\:-m-8{margin:-2rem!important}[dir=rtl] .sm\:rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .sm\:rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .sm\:rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .sm\:rtl\:-m-12{margin:-3rem!important}[dir=rtl] .sm\:rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .sm\:rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .sm\:rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .sm\:rtl\:-m-16{margin:-4rem!important}[dir=rtl] .sm\:rtl\:-m-20{margin:-5rem!important}[dir=rtl] .sm\:rtl\:-m-24{margin:-6rem!important}[dir=rtl] .sm\:rtl\:-m-28{margin:-7rem!important}[dir=rtl] .sm\:rtl\:-m-32{margin:-8rem!important}[dir=rtl] .sm\:rtl\:-m-36{margin:-9rem!important}[dir=rtl] .sm\:rtl\:-m-40{margin:-10rem!important}[dir=rtl] .sm\:rtl\:-m-48{margin:-12rem!important}[dir=rtl] .sm\:rtl\:-m-56{margin:-14rem!important}[dir=rtl] .sm\:rtl\:-m-60{margin:-15rem!important}[dir=rtl] .sm\:rtl\:-m-64{margin:-16rem!important}[dir=rtl] .sm\:rtl\:-m-72{margin:-18rem!important}[dir=rtl] .sm\:rtl\:-m-80{margin:-20rem!important}[dir=rtl] .sm\:rtl\:-m-96{margin:-24rem!important}[dir=rtl] .sm\:rtl\:-m-px{margin:-1px!important}[dir=rtl] .sm\:rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .sm\:rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .sm\:rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .sm\:rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .sm\:rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .sm\:rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .sm\:rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .sm\:rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .sm\:rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .sm\:rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .sm\:rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .sm\:rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .sm\:rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .sm\:rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .sm\:rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .sm\:rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .sm\:rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .sm\:rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .sm\:rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .sm\:rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .sm\:rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .sm\:rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .sm\:rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .sm\:rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .sm\:rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .sm\:rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .sm\:rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .sm\:rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .sm\:rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .sm\:rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .sm\:rtl\:-m-full{margin:-100%!important}[dir=rtl] .sm\:rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .sm\:rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .sm\:rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .sm\:rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .sm\:rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .sm\:rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .sm\:rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .sm\:rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .sm\:rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .sm\:rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .sm\:rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .sm\:rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .sm\:rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .sm\:rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .sm\:rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .sm\:rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .sm\:rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .sm\:rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .sm\:rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .sm\:rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .sm\:rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .sm\:rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .sm\:rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .sm\:rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .sm\:rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .sm\:rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .sm\:rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .sm\:rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .sm\:rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .sm\:rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .sm\:rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .sm\:rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .sm\:rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .sm\:rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .sm\:rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .sm\:rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .sm\:rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .sm\:rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .sm\:rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .sm\:rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .sm\:rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .sm\:rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .sm\:rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .sm\:rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .sm\:rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .sm\:rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .sm\:rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .sm\:rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .sm\:rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .sm\:rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .sm\:rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .sm\:rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .sm\:rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .sm\:rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .sm\:rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .sm\:rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .sm\:rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .sm\:rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .sm\:rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .sm\:rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .sm\:rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .sm\:rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .sm\:rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .sm\:rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .sm\:rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .sm\:rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .sm\:rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .sm\:rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .sm\:rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .sm\:rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .sm\:rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .sm\:rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .sm\:rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .sm\:rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .sm\:rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .sm\:rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .sm\:rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .sm\:rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .sm\:rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .sm\:rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .sm\:rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .sm\:rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .sm\:rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .sm\:rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .sm\:rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .sm\:rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .sm\:rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .sm\:rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .sm\:rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .sm\:rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .sm\:rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .sm\:rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .sm\:rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .sm\:rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .sm\:rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .sm\:rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .sm\:rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .sm\:rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .sm\:rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .sm\:rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .sm\:rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .sm\:rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .sm\:rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .sm\:rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .sm\:rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .sm\:rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .sm\:rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .sm\:rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .sm\:rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .sm\:rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .sm\:rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .sm\:rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .sm\:rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .sm\:rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .sm\:rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .sm\:rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .sm\:rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .sm\:rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .sm\:rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .sm\:rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .sm\:rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .sm\:rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .sm\:rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .sm\:rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .sm\:rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .sm\:rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .sm\:rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .sm\:rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .sm\:rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .sm\:rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .sm\:rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .sm\:rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .sm\:rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .sm\:rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .sm\:rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .sm\:rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .sm\:rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .sm\:rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .sm\:rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .sm\:rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .sm\:rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .sm\:rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .sm\:rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .sm\:rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .sm\:rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .sm\:rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .sm\:rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .sm\:rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .sm\:rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .sm\:rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .sm\:rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .sm\:rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .sm\:rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .sm\:rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .sm\:rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .sm\:rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .sm\:rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .sm\:rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .sm\:rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .sm\:rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .sm\:rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .sm\:rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .sm\:rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .sm\:rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .sm\:rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .sm\:rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .sm\:rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .sm\:rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .sm\:rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .sm\:rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .sm\:rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .sm\:rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .sm\:rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .sm\:rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .sm\:rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .sm\:rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .sm\:rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .sm\:rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .sm\:rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .sm\:rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .sm\:rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .sm\:rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .sm\:rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .sm\:rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .sm\:rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .sm\:rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .sm\:rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .sm\:rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .sm\:rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .sm\:rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .sm\:rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .sm\:rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .sm\:rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .sm\:rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .sm\:rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .sm\:rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .sm\:rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .sm\:rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .sm\:rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .sm\:rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .sm\:rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .sm\:rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .sm\:rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .sm\:rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .sm\:rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .sm\:rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .sm\:rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .sm\:rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .sm\:rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .sm\:rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .sm\:rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .sm\:rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .sm\:rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .sm\:rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .sm\:rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .sm\:rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .sm\:rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .sm\:rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .sm\:rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .sm\:rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .sm\:rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .sm\:rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .sm\:rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .sm\:rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .sm\:rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .sm\:rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .sm\:rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .sm\:rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .sm\:rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .sm\:rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .sm\:rtl\:mt-0{margin-top:0!important}[dir=rtl] .sm\:rtl\:mr-0{margin-right:0!important}[dir=rtl] .sm\:rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .sm\:rtl\:ml-0{margin-left:0!important}[dir=rtl] .sm\:rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .sm\:rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .sm\:rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .sm\:rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .sm\:rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .sm\:rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .sm\:rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .sm\:rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .sm\:rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .sm\:rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .sm\:rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .sm\:rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .sm\:rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .sm\:rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .sm\:rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .sm\:rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .sm\:rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .sm\:rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .sm\:rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .sm\:rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .sm\:rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .sm\:rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .sm\:rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .sm\:rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .sm\:rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .sm\:rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .sm\:rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .sm\:rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .sm\:rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .sm\:rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .sm\:rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .sm\:rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .sm\:rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .sm\:rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .sm\:rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .sm\:rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .sm\:rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .sm\:rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .sm\:rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .sm\:rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .sm\:rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .sm\:rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .sm\:rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .sm\:rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .sm\:rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .sm\:rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .sm\:rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .sm\:rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .sm\:rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .sm\:rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .sm\:rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .sm\:rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .sm\:rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .sm\:rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .sm\:rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .sm\:rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .sm\:rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .sm\:rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .sm\:rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .sm\:rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .sm\:rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .sm\:rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .sm\:rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .sm\:rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .sm\:rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .sm\:rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .sm\:rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .sm\:rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .sm\:rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .sm\:rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .sm\:rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .sm\:rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .sm\:rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .sm\:rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .sm\:rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .sm\:rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .sm\:rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .sm\:rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .sm\:rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .sm\:rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .sm\:rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .sm\:rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .sm\:rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .sm\:rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .sm\:rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .sm\:rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .sm\:rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .sm\:rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .sm\:rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .sm\:rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .sm\:rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .sm\:rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .sm\:rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .sm\:rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .sm\:rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .sm\:rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .sm\:rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .sm\:rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .sm\:rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .sm\:rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .sm\:rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .sm\:rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .sm\:rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .sm\:rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .sm\:rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .sm\:rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .sm\:rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .sm\:rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .sm\:rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .sm\:rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .sm\:rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .sm\:rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .sm\:rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .sm\:rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .sm\:rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .sm\:rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .sm\:rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .sm\:rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .sm\:rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .sm\:rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .sm\:rtl\:mt-px{margin-top:1px!important}[dir=rtl] .sm\:rtl\:mr-px{margin-right:1px!important}[dir=rtl] .sm\:rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .sm\:rtl\:ml-px{margin-left:1px!important}[dir=rtl] .sm\:rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .sm\:rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .sm\:rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .sm\:rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .sm\:rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .sm\:rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .sm\:rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .sm\:rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .sm\:rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .sm\:rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .sm\:rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .sm\:rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .sm\:rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .sm\:rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .sm\:rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .sm\:rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .sm\:rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .sm\:rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .sm\:rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .sm\:rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .sm\:rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .sm\:rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .sm\:rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .sm\:rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .sm\:rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .sm\:rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .sm\:rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .sm\:rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .sm\:rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .sm\:rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .sm\:rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .sm\:rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .sm\:rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .sm\:rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .sm\:rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .sm\:rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .sm\:rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .sm\:rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .sm\:rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .sm\:rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .sm\:rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .sm\:rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .sm\:rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .sm\:rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .sm\:rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .sm\:rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .sm\:rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .sm\:rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .sm\:rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .sm\:rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .sm\:rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .sm\:rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .sm\:rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .sm\:rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .sm\:rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .sm\:rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .sm\:rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .sm\:rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .sm\:rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .sm\:rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .sm\:rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .sm\:rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .sm\:rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .sm\:rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .sm\:rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .sm\:rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .sm\:rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .sm\:rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .sm\:rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .sm\:rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .sm\:rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .sm\:rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .sm\:rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .sm\:rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .sm\:rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .sm\:rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .sm\:rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .sm\:rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .sm\:rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .sm\:rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .sm\:rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .sm\:rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .sm\:rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .sm\:rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .sm\:rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .sm\:rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .sm\:rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .sm\:rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .sm\:rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .sm\:rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .sm\:rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .sm\:rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .sm\:rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .sm\:rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .sm\:rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .sm\:rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .sm\:rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .sm\:rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .sm\:rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .sm\:rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .sm\:rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .sm\:rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .sm\:rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .sm\:rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .sm\:rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .sm\:rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .sm\:rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .sm\:rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .sm\:rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .sm\:rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .sm\:rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .sm\:rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .sm\:rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .sm\:rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .sm\:rtl\:mt-full{margin-top:100%!important}[dir=rtl] .sm\:rtl\:mr-full{margin-right:100%!important}[dir=rtl] .sm\:rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .sm\:rtl\:ml-full{margin-left:100%!important}[dir=rtl] .sm\:rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .sm\:rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .sm\:rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .sm\:rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .sm\:rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .sm\:rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .sm\:rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .sm\:rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .sm\:rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .sm\:rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .sm\:rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .sm\:rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .sm\:rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .sm\:rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .sm\:rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .sm\:rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .sm\:rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .sm\:rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .sm\:rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .sm\:rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .sm\:rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .sm\:rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .sm\:rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .sm\:rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .sm\:rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .sm\:rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .sm\:rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .sm\:rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .sm\:rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .sm\:rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .sm\:rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .sm\:rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .sm\:rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .sm\:rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .sm\:rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .sm\:rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .sm\:rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .sm\:rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .sm\:rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .sm\:rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .sm\:rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .sm\:rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .sm\:rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .sm\:rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .sm\:rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .sm\:rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .sm\:rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .sm\:rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .sm\:rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .sm\:rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .sm\:rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .sm\:rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .sm\:rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .sm\:rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .sm\:rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .sm\:rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .sm\:rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .sm\:rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .sm\:rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .sm\:rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .sm\:rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .sm\:rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .sm\:rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .sm\:rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .sm\:rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .sm\:rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .sm\:rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .sm\:rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .sm\:rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .sm\:rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .sm\:rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .sm\:rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .sm\:rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .sm\:rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .sm\:rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .sm\:rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .sm\:rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .sm\:rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .sm\:rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .sm\:rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .sm\:rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .sm\:rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .sm\:rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .sm\:rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .sm\:rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .sm\:rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .sm\:rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .sm\:rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .sm\:rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .sm\:rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .sm\:rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .sm\:rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .sm\:rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .sm\:rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .sm\:rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .sm\:rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .sm\:rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .sm\:rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .sm\:rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .sm\:rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .sm\:rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .sm\:rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .sm\:rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .sm\:rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .sm\:rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .sm\:rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .sm\:rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .sm\:rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .sm\:rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .sm\:rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .sm\:rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .sm\:rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .sm\:rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .sm\:rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .sm\:rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .sm\:rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .sm\:rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .sm\:rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .sm\:rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .sm\:rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .sm\:rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .sm\:rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .sm\:rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .sm\:rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .sm\:rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .sm\:rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .sm\:rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .sm\:rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .sm\:rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .sm\:rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .sm\:rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .sm\:rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .sm\:rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .sm\:rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .sm\:rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .sm\:rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .sm\:rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .sm\:rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .sm\:rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .sm\:rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .sm\:rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .sm\:rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .sm\:rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .sm\:rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .sm\:rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .sm\:rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .sm\:rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .sm\:rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .sm\:rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .sm\:rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .sm\:rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .sm\:rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .sm\:rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .sm\:rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .sm\:rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .sm\:rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .sm\:rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .sm\:rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .sm\:rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .sm\:rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .sm\:rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .sm\:rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .sm\:rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .sm\:rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .sm\:rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .sm\:rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .sm\:rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .sm\:rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .sm\:rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .sm\:rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .sm\:rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .sm\:rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .sm\:rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .sm\:rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .sm\:rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .sm\:rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .sm\:rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .sm\:rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .sm\:rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .sm\:rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .sm\:rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .sm\:rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .sm\:rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .sm\:rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .sm\:rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .sm\:rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .sm\:rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .sm\:rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .sm\:rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .sm\:rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .sm\:rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .sm\:rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .sm\:rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .sm\:rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .sm\:rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .sm\:rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .sm\:rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .sm\:rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .sm\:rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .sm\:rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .sm\:rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .sm\:rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .sm\:rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .sm\:rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .sm\:rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .sm\:rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .sm\:rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .sm\:rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .sm\:rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .sm\:rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .sm\:rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .sm\:rtl\:-ml-full{margin-left:-100%!important}.sm\:max-h-0{max-height:0!important}.sm\:max-h-1{max-height:.25rem!important}.sm\:max-h-2{max-height:.5rem!important}.sm\:max-h-3{max-height:.75rem!important}.sm\:max-h-4{max-height:1rem!important}.sm\:max-h-5{max-height:1.25rem!important}.sm\:max-h-6{max-height:1.5rem!important}.sm\:max-h-7{max-height:1.75rem!important}.sm\:max-h-8{max-height:2rem!important}.sm\:max-h-9{max-height:2.25rem!important}.sm\:max-h-10{max-height:2.5rem!important}.sm\:max-h-11{max-height:2.75rem!important}.sm\:max-h-12{max-height:3rem!important}.sm\:max-h-13{max-height:3.25rem!important}.sm\:max-h-14{max-height:3.5rem!important}.sm\:max-h-15{max-height:3.75rem!important}.sm\:max-h-16{max-height:4rem!important}.sm\:max-h-20{max-height:5rem!important}.sm\:max-h-24{max-height:6rem!important}.sm\:max-h-28{max-height:7rem!important}.sm\:max-h-32{max-height:8rem!important}.sm\:max-h-36{max-height:9rem!important}.sm\:max-h-40{max-height:10rem!important}.sm\:max-h-48{max-height:12rem!important}.sm\:max-h-56{max-height:14rem!important}.sm\:max-h-60{max-height:15rem!important}.sm\:max-h-64{max-height:16rem!important}.sm\:max-h-72{max-height:18rem!important}.sm\:max-h-80{max-height:20rem!important}.sm\:max-h-96{max-height:24rem!important}.sm\:max-h-screen{max-height:100vh!important}.sm\:max-h-px{max-height:1px!important}.sm\:max-h-0\.5{max-height:.125rem!important}.sm\:max-h-1\.5{max-height:.375rem!important}.sm\:max-h-2\.5{max-height:.625rem!important}.sm\:max-h-3\.5{max-height:.875rem!important}.sm\:max-h-1\/2{max-height:50%!important}.sm\:max-h-1\/3{max-height:33.333333%!important}.sm\:max-h-2\/3{max-height:66.666667%!important}.sm\:max-h-1\/4{max-height:25%!important}.sm\:max-h-2\/4{max-height:50%!important}.sm\:max-h-3\/4{max-height:75%!important}.sm\:max-h-1\/5{max-height:20%!important}.sm\:max-h-2\/5{max-height:40%!important}.sm\:max-h-3\/5{max-height:60%!important}.sm\:max-h-4\/5{max-height:80%!important}.sm\:max-h-1\/6{max-height:16.666667%!important}.sm\:max-h-2\/6{max-height:33.333333%!important}.sm\:max-h-3\/6{max-height:50%!important}.sm\:max-h-4\/6{max-height:66.666667%!important}.sm\:max-h-5\/6{max-height:83.333333%!important}.sm\:max-h-1\/12{max-height:8.333333%!important}.sm\:max-h-2\/12{max-height:16.666667%!important}.sm\:max-h-3\/12{max-height:25%!important}.sm\:max-h-4\/12{max-height:33.333333%!important}.sm\:max-h-5\/12{max-height:41.666667%!important}.sm\:max-h-6\/12{max-height:50%!important}.sm\:max-h-7\/12{max-height:58.333333%!important}.sm\:max-h-8\/12{max-height:66.666667%!important}.sm\:max-h-9\/12{max-height:75%!important}.sm\:max-h-10\/12{max-height:83.333333%!important}.sm\:max-h-11\/12{max-height:91.666667%!important}.sm\:max-h-full{max-height:100%!important}.sm\:max-h-6xl{max-height:6rem!important}.sm\:max-w-none{max-width:none!important}.sm\:max-w-xs{max-width:20rem!important}.sm\:max-w-sm{max-width:24rem!important}.sm\:max-w-md{max-width:28rem!important}.sm\:max-w-lg{max-width:32rem!important}.sm\:max-w-xl{max-width:36rem!important}.sm\:max-w-2xl{max-width:42rem!important}.sm\:max-w-3xl{max-width:48rem!important}.sm\:max-w-4xl{max-width:56rem!important}.sm\:max-w-5xl{max-width:64rem!important}.sm\:max-w-6xl{max-width:72rem!important}.sm\:max-w-7xl{max-width:80rem!important}.sm\:max-w-full{max-width:100%!important}.sm\:max-w-screen-sm{max-width:600px!important}.sm\:max-w-screen-md{max-width:1024px!important}.sm\:max-w-screen-lg{max-width:1280px!important}.sm\:max-w-screen-xl{max-width:1536px!important}.sm\:max-w-screen-2xl{max-width:1400px!important}.sm\:max-w-screen-3xl{max-width:1800px!important}.sm\:max-w-screen-4xl{max-width:2200px!important}.sm\:min-h-0{min-height:0!important}.sm\:min-h-full{min-height:100%!important}.sm\:min-h-screen{min-height:100vh!important}.sm\:min-h-half{min-height:50vh!important}.sm\:min-w-0{min-width:0!important}.sm\:min-w-full{min-width:100%!important}.sm\:object-contain{-o-object-fit:contain!important;object-fit:contain!important}.sm\:object-cover{-o-object-fit:cover!important;object-fit:cover!important}.sm\:object-fill{-o-object-fit:fill!important;object-fit:fill!important}.sm\:object-none{-o-object-fit:none!important;object-fit:none!important}.sm\:object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.sm\:object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.sm\:object-center{-o-object-position:center!important;object-position:center!important}.sm\:object-left{-o-object-position:left!important;object-position:left!important}.sm\:object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.sm\:object-left-top{-o-object-position:left top!important;object-position:left top!important}.sm\:object-right{-o-object-position:right!important;object-position:right!important}.sm\:object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.sm\:object-right-top{-o-object-position:right top!important;object-position:right top!important}.sm\:object-top{-o-object-position:top!important;object-position:top!important}.sm\:opacity-0{opacity:0!important}.sm\:opacity-25{opacity:.25!important}.sm\:opacity-50{opacity:.5!important}.sm\:opacity-75{opacity:.75!important}.sm\:opacity-100{opacity:1!important}.sm\:hover\:opacity-0:hover{opacity:0!important}.sm\:hover\:opacity-25:hover{opacity:.25!important}.sm\:hover\:opacity-50:hover{opacity:.5!important}.sm\:hover\:opacity-75:hover{opacity:.75!important}.sm\:hover\:opacity-100:hover{opacity:1!important}.sm\:focus\:opacity-0:focus{opacity:0!important}.sm\:focus\:opacity-25:focus{opacity:.25!important}.sm\:focus\:opacity-50:focus{opacity:.5!important}.sm\:focus\:opacity-75:focus{opacity:.75!important}.sm\:focus\:opacity-100:focus{opacity:1!important}.sm\:outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.sm\:outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.sm\:outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.sm\:focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.sm\:focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.sm\:focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.sm\:overflow-auto{overflow:auto!important}.sm\:overflow-hidden{overflow:hidden!important}.sm\:overflow-visible{overflow:visible!important}.sm\:overflow-scroll{overflow:scroll!important}.sm\:overflow-x-auto{overflow-x:auto!important}.sm\:overflow-y-auto{overflow-y:auto!important}.sm\:overflow-x-hidden{overflow-x:hidden!important}.sm\:overflow-y-hidden{overflow-y:hidden!important}.sm\:overflow-x-visible{overflow-x:visible!important}.sm\:overflow-y-visible{overflow-y:visible!important}.sm\:overflow-x-scroll{overflow-x:scroll!important}.sm\:overflow-y-scroll{overflow-y:scroll!important}.sm\:scrolling-touch{-webkit-overflow-scrolling:touch!important}.sm\:scrolling-auto{-webkit-overflow-scrolling:auto!important}.sm\:overscroll-auto{overscroll-behavior:auto!important}.sm\:overscroll-contain{overscroll-behavior:contain!important}.sm\:overscroll-none{overscroll-behavior:none!important}.sm\:overscroll-y-auto{overscroll-behavior-y:auto!important}.sm\:overscroll-y-contain{overscroll-behavior-y:contain!important}.sm\:overscroll-y-none{overscroll-behavior-y:none!important}.sm\:overscroll-x-auto{overscroll-behavior-x:auto!important}.sm\:overscroll-x-contain{overscroll-behavior-x:contain!important}.sm\:overscroll-x-none{overscroll-behavior-x:none!important}.sm\:p-0{padding:0!important}.sm\:p-1{padding:.25rem!important}.sm\:p-2{padding:.5rem!important}.sm\:p-3{padding:.75rem!important}.sm\:p-4{padding:1rem!important}.sm\:p-5{padding:1.25rem!important}.sm\:p-6{padding:1.5rem!important}.sm\:p-7{padding:1.75rem!important}.sm\:p-8{padding:2rem!important}.sm\:p-9{padding:2.25rem!important}.sm\:p-10{padding:2.5rem!important}.sm\:p-11{padding:2.75rem!important}.sm\:p-12{padding:3rem!important}.sm\:p-13{padding:3.25rem!important}.sm\:p-14{padding:3.5rem!important}.sm\:p-15{padding:3.75rem!important}.sm\:p-16{padding:4rem!important}.sm\:p-20{padding:5rem!important}.sm\:p-24{padding:6rem!important}.sm\:p-28{padding:7rem!important}.sm\:p-32{padding:8rem!important}.sm\:p-36{padding:9rem!important}.sm\:p-40{padding:10rem!important}.sm\:p-48{padding:12rem!important}.sm\:p-56{padding:14rem!important}.sm\:p-60{padding:15rem!important}.sm\:p-64{padding:16rem!important}.sm\:p-72{padding:18rem!important}.sm\:p-80{padding:20rem!important}.sm\:p-96{padding:24rem!important}.sm\:p-px{padding:1px!important}.sm\:p-0\.5{padding:.125rem!important}.sm\:p-1\.5{padding:.375rem!important}.sm\:p-2\.5{padding:.625rem!important}.sm\:p-3\.5{padding:.875rem!important}.sm\:p-1\/2{padding:50%!important}.sm\:p-1\/3{padding:33.333333%!important}.sm\:p-2\/3{padding:66.666667%!important}.sm\:p-1\/4{padding:25%!important}.sm\:p-2\/4{padding:50%!important}.sm\:p-3\/4{padding:75%!important}.sm\:p-1\/5{padding:20%!important}.sm\:p-2\/5{padding:40%!important}.sm\:p-3\/5{padding:60%!important}.sm\:p-4\/5{padding:80%!important}.sm\:p-1\/6{padding:16.666667%!important}.sm\:p-2\/6{padding:33.333333%!important}.sm\:p-3\/6{padding:50%!important}.sm\:p-4\/6{padding:66.666667%!important}.sm\:p-5\/6{padding:83.333333%!important}.sm\:p-1\/12{padding:8.333333%!important}.sm\:p-2\/12{padding:16.666667%!important}.sm\:p-3\/12{padding:25%!important}.sm\:p-4\/12{padding:33.333333%!important}.sm\:p-5\/12{padding:41.666667%!important}.sm\:p-6\/12{padding:50%!important}.sm\:p-7\/12{padding:58.333333%!important}.sm\:p-8\/12{padding:66.666667%!important}.sm\:p-9\/12{padding:75%!important}.sm\:p-10\/12{padding:83.333333%!important}.sm\:p-11\/12{padding:91.666667%!important}.sm\:p-full{padding:100%!important}.sm\:py-0{padding-bottom:0!important;padding-top:0!important}.sm\:px-0{padding-left:0!important;padding-right:0!important}.sm\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.sm\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.sm\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.sm\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}.sm\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}.sm\:px-4{padding-left:1rem!important;padding-right:1rem!important}.sm\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.sm\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.sm\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.sm\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.sm\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.sm\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}.sm\:px-8{padding-left:2rem!important;padding-right:2rem!important}.sm\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.sm\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.sm\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.sm\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.sm\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.sm\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.sm\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}.sm\:px-12{padding-left:3rem!important;padding-right:3rem!important}.sm\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.sm\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.sm\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.sm\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.sm\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.sm\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.sm\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}.sm\:px-16{padding-left:4rem!important;padding-right:4rem!important}.sm\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}.sm\:px-20{padding-left:5rem!important;padding-right:5rem!important}.sm\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}.sm\:px-24{padding-left:6rem!important;padding-right:6rem!important}.sm\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}.sm\:px-28{padding-left:7rem!important;padding-right:7rem!important}.sm\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}.sm\:px-32{padding-left:8rem!important;padding-right:8rem!important}.sm\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}.sm\:px-36{padding-left:9rem!important;padding-right:9rem!important}.sm\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}.sm\:px-40{padding-left:10rem!important;padding-right:10rem!important}.sm\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}.sm\:px-48{padding-left:12rem!important;padding-right:12rem!important}.sm\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}.sm\:px-56{padding-left:14rem!important;padding-right:14rem!important}.sm\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}.sm\:px-60{padding-left:15rem!important;padding-right:15rem!important}.sm\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}.sm\:px-64{padding-left:16rem!important;padding-right:16rem!important}.sm\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}.sm\:px-72{padding-left:18rem!important;padding-right:18rem!important}.sm\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}.sm\:px-80{padding-left:20rem!important;padding-right:20rem!important}.sm\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}.sm\:px-96{padding-left:24rem!important;padding-right:24rem!important}.sm\:py-px{padding-bottom:1px!important;padding-top:1px!important}.sm\:px-px{padding-left:1px!important;padding-right:1px!important}.sm\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.sm\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.sm\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.sm\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.sm\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.sm\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.sm\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.sm\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.sm\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.sm\:px-1\/2{padding-left:50%!important;padding-right:50%!important}.sm\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.sm\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.sm\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.sm\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.sm\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.sm\:px-1\/4{padding-left:25%!important;padding-right:25%!important}.sm\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.sm\:px-2\/4{padding-left:50%!important;padding-right:50%!important}.sm\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.sm\:px-3\/4{padding-left:75%!important;padding-right:75%!important}.sm\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.sm\:px-1\/5{padding-left:20%!important;padding-right:20%!important}.sm\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.sm\:px-2\/5{padding-left:40%!important;padding-right:40%!important}.sm\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.sm\:px-3\/5{padding-left:60%!important;padding-right:60%!important}.sm\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.sm\:px-4\/5{padding-left:80%!important;padding-right:80%!important}.sm\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.sm\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.sm\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.sm\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.sm\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.sm\:px-3\/6{padding-left:50%!important;padding-right:50%!important}.sm\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.sm\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.sm\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.sm\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.sm\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.sm\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.sm\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.sm\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.sm\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.sm\:px-3\/12{padding-left:25%!important;padding-right:25%!important}.sm\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.sm\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.sm\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.sm\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.sm\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.sm\:px-6\/12{padding-left:50%!important;padding-right:50%!important}.sm\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.sm\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.sm\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.sm\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.sm\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.sm\:px-9\/12{padding-left:75%!important;padding-right:75%!important}.sm\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.sm\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.sm\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.sm\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.sm\:py-full{padding-bottom:100%!important;padding-top:100%!important}.sm\:px-full{padding-left:100%!important;padding-right:100%!important}.sm\:pt-0{padding-top:0!important}.sm\:pr-0{padding-right:0!important}.sm\:pb-0{padding-bottom:0!important}.sm\:pl-0{padding-left:0!important}.sm\:pt-1{padding-top:.25rem!important}.sm\:pr-1{padding-right:.25rem!important}.sm\:pb-1{padding-bottom:.25rem!important}.sm\:pl-1{padding-left:.25rem!important}.sm\:pt-2{padding-top:.5rem!important}.sm\:pr-2{padding-right:.5rem!important}.sm\:pb-2{padding-bottom:.5rem!important}.sm\:pl-2{padding-left:.5rem!important}.sm\:pt-3{padding-top:.75rem!important}.sm\:pr-3{padding-right:.75rem!important}.sm\:pb-3{padding-bottom:.75rem!important}.sm\:pl-3{padding-left:.75rem!important}.sm\:pt-4{padding-top:1rem!important}.sm\:pr-4{padding-right:1rem!important}.sm\:pb-4{padding-bottom:1rem!important}.sm\:pl-4{padding-left:1rem!important}.sm\:pt-5{padding-top:1.25rem!important}.sm\:pr-5{padding-right:1.25rem!important}.sm\:pb-5{padding-bottom:1.25rem!important}.sm\:pl-5{padding-left:1.25rem!important}.sm\:pt-6{padding-top:1.5rem!important}.sm\:pr-6{padding-right:1.5rem!important}.sm\:pb-6{padding-bottom:1.5rem!important}.sm\:pl-6{padding-left:1.5rem!important}.sm\:pt-7{padding-top:1.75rem!important}.sm\:pr-7{padding-right:1.75rem!important}.sm\:pb-7{padding-bottom:1.75rem!important}.sm\:pl-7{padding-left:1.75rem!important}.sm\:pt-8{padding-top:2rem!important}.sm\:pr-8{padding-right:2rem!important}.sm\:pb-8{padding-bottom:2rem!important}.sm\:pl-8{padding-left:2rem!important}.sm\:pt-9{padding-top:2.25rem!important}.sm\:pr-9{padding-right:2.25rem!important}.sm\:pb-9{padding-bottom:2.25rem!important}.sm\:pl-9{padding-left:2.25rem!important}.sm\:pt-10{padding-top:2.5rem!important}.sm\:pr-10{padding-right:2.5rem!important}.sm\:pb-10{padding-bottom:2.5rem!important}.sm\:pl-10{padding-left:2.5rem!important}.sm\:pt-11{padding-top:2.75rem!important}.sm\:pr-11{padding-right:2.75rem!important}.sm\:pb-11{padding-bottom:2.75rem!important}.sm\:pl-11{padding-left:2.75rem!important}.sm\:pt-12{padding-top:3rem!important}.sm\:pr-12{padding-right:3rem!important}.sm\:pb-12{padding-bottom:3rem!important}.sm\:pl-12{padding-left:3rem!important}.sm\:pt-13{padding-top:3.25rem!important}.sm\:pr-13{padding-right:3.25rem!important}.sm\:pb-13{padding-bottom:3.25rem!important}.sm\:pl-13{padding-left:3.25rem!important}.sm\:pt-14{padding-top:3.5rem!important}.sm\:pr-14{padding-right:3.5rem!important}.sm\:pb-14{padding-bottom:3.5rem!important}.sm\:pl-14{padding-left:3.5rem!important}.sm\:pt-15{padding-top:3.75rem!important}.sm\:pr-15{padding-right:3.75rem!important}.sm\:pb-15{padding-bottom:3.75rem!important}.sm\:pl-15{padding-left:3.75rem!important}.sm\:pt-16{padding-top:4rem!important}.sm\:pr-16{padding-right:4rem!important}.sm\:pb-16{padding-bottom:4rem!important}.sm\:pl-16{padding-left:4rem!important}.sm\:pt-20{padding-top:5rem!important}.sm\:pr-20{padding-right:5rem!important}.sm\:pb-20{padding-bottom:5rem!important}.sm\:pl-20{padding-left:5rem!important}.sm\:pt-24{padding-top:6rem!important}.sm\:pr-24{padding-right:6rem!important}.sm\:pb-24{padding-bottom:6rem!important}.sm\:pl-24{padding-left:6rem!important}.sm\:pt-28{padding-top:7rem!important}.sm\:pr-28{padding-right:7rem!important}.sm\:pb-28{padding-bottom:7rem!important}.sm\:pl-28{padding-left:7rem!important}.sm\:pt-32{padding-top:8rem!important}.sm\:pr-32{padding-right:8rem!important}.sm\:pb-32{padding-bottom:8rem!important}.sm\:pl-32{padding-left:8rem!important}.sm\:pt-36{padding-top:9rem!important}.sm\:pr-36{padding-right:9rem!important}.sm\:pb-36{padding-bottom:9rem!important}.sm\:pl-36{padding-left:9rem!important}.sm\:pt-40{padding-top:10rem!important}.sm\:pr-40{padding-right:10rem!important}.sm\:pb-40{padding-bottom:10rem!important}.sm\:pl-40{padding-left:10rem!important}.sm\:pt-48{padding-top:12rem!important}.sm\:pr-48{padding-right:12rem!important}.sm\:pb-48{padding-bottom:12rem!important}.sm\:pl-48{padding-left:12rem!important}.sm\:pt-56{padding-top:14rem!important}.sm\:pr-56{padding-right:14rem!important}.sm\:pb-56{padding-bottom:14rem!important}.sm\:pl-56{padding-left:14rem!important}.sm\:pt-60{padding-top:15rem!important}.sm\:pr-60{padding-right:15rem!important}.sm\:pb-60{padding-bottom:15rem!important}.sm\:pl-60{padding-left:15rem!important}.sm\:pt-64{padding-top:16rem!important}.sm\:pr-64{padding-right:16rem!important}.sm\:pb-64{padding-bottom:16rem!important}.sm\:pl-64{padding-left:16rem!important}.sm\:pt-72{padding-top:18rem!important}.sm\:pr-72{padding-right:18rem!important}.sm\:pb-72{padding-bottom:18rem!important}.sm\:pl-72{padding-left:18rem!important}.sm\:pt-80{padding-top:20rem!important}.sm\:pr-80{padding-right:20rem!important}.sm\:pb-80{padding-bottom:20rem!important}.sm\:pl-80{padding-left:20rem!important}.sm\:pt-96{padding-top:24rem!important}.sm\:pr-96{padding-right:24rem!important}.sm\:pb-96{padding-bottom:24rem!important}.sm\:pl-96{padding-left:24rem!important}.sm\:pt-px{padding-top:1px!important}.sm\:pr-px{padding-right:1px!important}.sm\:pb-px{padding-bottom:1px!important}.sm\:pl-px{padding-left:1px!important}.sm\:pt-0\.5{padding-top:.125rem!important}.sm\:pr-0\.5{padding-right:.125rem!important}.sm\:pb-0\.5{padding-bottom:.125rem!important}.sm\:pl-0\.5{padding-left:.125rem!important}.sm\:pt-1\.5{padding-top:.375rem!important}.sm\:pr-1\.5{padding-right:.375rem!important}.sm\:pb-1\.5{padding-bottom:.375rem!important}.sm\:pl-1\.5{padding-left:.375rem!important}.sm\:pt-2\.5{padding-top:.625rem!important}.sm\:pr-2\.5{padding-right:.625rem!important}.sm\:pb-2\.5{padding-bottom:.625rem!important}.sm\:pl-2\.5{padding-left:.625rem!important}.sm\:pt-3\.5{padding-top:.875rem!important}.sm\:pr-3\.5{padding-right:.875rem!important}.sm\:pb-3\.5{padding-bottom:.875rem!important}.sm\:pl-3\.5{padding-left:.875rem!important}.sm\:pt-1\/2{padding-top:50%!important}.sm\:pr-1\/2{padding-right:50%!important}.sm\:pb-1\/2{padding-bottom:50%!important}.sm\:pl-1\/2{padding-left:50%!important}.sm\:pt-1\/3{padding-top:33.333333%!important}.sm\:pr-1\/3{padding-right:33.333333%!important}.sm\:pb-1\/3{padding-bottom:33.333333%!important}.sm\:pl-1\/3{padding-left:33.333333%!important}.sm\:pt-2\/3{padding-top:66.666667%!important}.sm\:pr-2\/3{padding-right:66.666667%!important}.sm\:pb-2\/3{padding-bottom:66.666667%!important}.sm\:pl-2\/3{padding-left:66.666667%!important}.sm\:pt-1\/4{padding-top:25%!important}.sm\:pr-1\/4{padding-right:25%!important}.sm\:pb-1\/4{padding-bottom:25%!important}.sm\:pl-1\/4{padding-left:25%!important}.sm\:pt-2\/4{padding-top:50%!important}.sm\:pr-2\/4{padding-right:50%!important}.sm\:pb-2\/4{padding-bottom:50%!important}.sm\:pl-2\/4{padding-left:50%!important}.sm\:pt-3\/4{padding-top:75%!important}.sm\:pr-3\/4{padding-right:75%!important}.sm\:pb-3\/4{padding-bottom:75%!important}.sm\:pl-3\/4{padding-left:75%!important}.sm\:pt-1\/5{padding-top:20%!important}.sm\:pr-1\/5{padding-right:20%!important}.sm\:pb-1\/5{padding-bottom:20%!important}.sm\:pl-1\/5{padding-left:20%!important}.sm\:pt-2\/5{padding-top:40%!important}.sm\:pr-2\/5{padding-right:40%!important}.sm\:pb-2\/5{padding-bottom:40%!important}.sm\:pl-2\/5{padding-left:40%!important}.sm\:pt-3\/5{padding-top:60%!important}.sm\:pr-3\/5{padding-right:60%!important}.sm\:pb-3\/5{padding-bottom:60%!important}.sm\:pl-3\/5{padding-left:60%!important}.sm\:pt-4\/5{padding-top:80%!important}.sm\:pr-4\/5{padding-right:80%!important}.sm\:pb-4\/5{padding-bottom:80%!important}.sm\:pl-4\/5{padding-left:80%!important}.sm\:pt-1\/6{padding-top:16.666667%!important}.sm\:pr-1\/6{padding-right:16.666667%!important}.sm\:pb-1\/6{padding-bottom:16.666667%!important}.sm\:pl-1\/6{padding-left:16.666667%!important}.sm\:pt-2\/6{padding-top:33.333333%!important}.sm\:pr-2\/6{padding-right:33.333333%!important}.sm\:pb-2\/6{padding-bottom:33.333333%!important}.sm\:pl-2\/6{padding-left:33.333333%!important}.sm\:pt-3\/6{padding-top:50%!important}.sm\:pr-3\/6{padding-right:50%!important}.sm\:pb-3\/6{padding-bottom:50%!important}.sm\:pl-3\/6{padding-left:50%!important}.sm\:pt-4\/6{padding-top:66.666667%!important}.sm\:pr-4\/6{padding-right:66.666667%!important}.sm\:pb-4\/6{padding-bottom:66.666667%!important}.sm\:pl-4\/6{padding-left:66.666667%!important}.sm\:pt-5\/6{padding-top:83.333333%!important}.sm\:pr-5\/6{padding-right:83.333333%!important}.sm\:pb-5\/6{padding-bottom:83.333333%!important}.sm\:pl-5\/6{padding-left:83.333333%!important}.sm\:pt-1\/12{padding-top:8.333333%!important}.sm\:pr-1\/12{padding-right:8.333333%!important}.sm\:pb-1\/12{padding-bottom:8.333333%!important}.sm\:pl-1\/12{padding-left:8.333333%!important}.sm\:pt-2\/12{padding-top:16.666667%!important}.sm\:pr-2\/12{padding-right:16.666667%!important}.sm\:pb-2\/12{padding-bottom:16.666667%!important}.sm\:pl-2\/12{padding-left:16.666667%!important}.sm\:pt-3\/12{padding-top:25%!important}.sm\:pr-3\/12{padding-right:25%!important}.sm\:pb-3\/12{padding-bottom:25%!important}.sm\:pl-3\/12{padding-left:25%!important}.sm\:pt-4\/12{padding-top:33.333333%!important}.sm\:pr-4\/12{padding-right:33.333333%!important}.sm\:pb-4\/12{padding-bottom:33.333333%!important}.sm\:pl-4\/12{padding-left:33.333333%!important}.sm\:pt-5\/12{padding-top:41.666667%!important}.sm\:pr-5\/12{padding-right:41.666667%!important}.sm\:pb-5\/12{padding-bottom:41.666667%!important}.sm\:pl-5\/12{padding-left:41.666667%!important}.sm\:pt-6\/12{padding-top:50%!important}.sm\:pr-6\/12{padding-right:50%!important}.sm\:pb-6\/12{padding-bottom:50%!important}.sm\:pl-6\/12{padding-left:50%!important}.sm\:pt-7\/12{padding-top:58.333333%!important}.sm\:pr-7\/12{padding-right:58.333333%!important}.sm\:pb-7\/12{padding-bottom:58.333333%!important}.sm\:pl-7\/12{padding-left:58.333333%!important}.sm\:pt-8\/12{padding-top:66.666667%!important}.sm\:pr-8\/12{padding-right:66.666667%!important}.sm\:pb-8\/12{padding-bottom:66.666667%!important}.sm\:pl-8\/12{padding-left:66.666667%!important}.sm\:pt-9\/12{padding-top:75%!important}.sm\:pr-9\/12{padding-right:75%!important}.sm\:pb-9\/12{padding-bottom:75%!important}.sm\:pl-9\/12{padding-left:75%!important}.sm\:pt-10\/12{padding-top:83.333333%!important}.sm\:pr-10\/12{padding-right:83.333333%!important}.sm\:pb-10\/12{padding-bottom:83.333333%!important}.sm\:pl-10\/12{padding-left:83.333333%!important}.sm\:pt-11\/12{padding-top:91.666667%!important}.sm\:pr-11\/12{padding-right:91.666667%!important}.sm\:pb-11\/12{padding-bottom:91.666667%!important}.sm\:pl-11\/12{padding-left:91.666667%!important}.sm\:pt-full{padding-top:100%!important}.sm\:pr-full{padding-right:100%!important}.sm\:pb-full{padding-bottom:100%!important}.sm\:pl-full{padding-left:100%!important}[dir=ltr] .sm\:ltr\:p-0{padding:0!important}[dir=ltr] .sm\:ltr\:p-1{padding:.25rem!important}[dir=ltr] .sm\:ltr\:p-2{padding:.5rem!important}[dir=ltr] .sm\:ltr\:p-3{padding:.75rem!important}[dir=ltr] .sm\:ltr\:p-4{padding:1rem!important}[dir=ltr] .sm\:ltr\:p-5{padding:1.25rem!important}[dir=ltr] .sm\:ltr\:p-6{padding:1.5rem!important}[dir=ltr] .sm\:ltr\:p-7{padding:1.75rem!important}[dir=ltr] .sm\:ltr\:p-8{padding:2rem!important}[dir=ltr] .sm\:ltr\:p-9{padding:2.25rem!important}[dir=ltr] .sm\:ltr\:p-10{padding:2.5rem!important}[dir=ltr] .sm\:ltr\:p-11{padding:2.75rem!important}[dir=ltr] .sm\:ltr\:p-12{padding:3rem!important}[dir=ltr] .sm\:ltr\:p-13{padding:3.25rem!important}[dir=ltr] .sm\:ltr\:p-14{padding:3.5rem!important}[dir=ltr] .sm\:ltr\:p-15{padding:3.75rem!important}[dir=ltr] .sm\:ltr\:p-16{padding:4rem!important}[dir=ltr] .sm\:ltr\:p-20{padding:5rem!important}[dir=ltr] .sm\:ltr\:p-24{padding:6rem!important}[dir=ltr] .sm\:ltr\:p-28{padding:7rem!important}[dir=ltr] .sm\:ltr\:p-32{padding:8rem!important}[dir=ltr] .sm\:ltr\:p-36{padding:9rem!important}[dir=ltr] .sm\:ltr\:p-40{padding:10rem!important}[dir=ltr] .sm\:ltr\:p-48{padding:12rem!important}[dir=ltr] .sm\:ltr\:p-56{padding:14rem!important}[dir=ltr] .sm\:ltr\:p-60{padding:15rem!important}[dir=ltr] .sm\:ltr\:p-64{padding:16rem!important}[dir=ltr] .sm\:ltr\:p-72{padding:18rem!important}[dir=ltr] .sm\:ltr\:p-80{padding:20rem!important}[dir=ltr] .sm\:ltr\:p-96{padding:24rem!important}[dir=ltr] .sm\:ltr\:p-px{padding:1px!important}[dir=ltr] .sm\:ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .sm\:ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .sm\:ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .sm\:ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .sm\:ltr\:p-1\/2{padding:50%!important}[dir=ltr] .sm\:ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .sm\:ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .sm\:ltr\:p-1\/4{padding:25%!important}[dir=ltr] .sm\:ltr\:p-2\/4{padding:50%!important}[dir=ltr] .sm\:ltr\:p-3\/4{padding:75%!important}[dir=ltr] .sm\:ltr\:p-1\/5{padding:20%!important}[dir=ltr] .sm\:ltr\:p-2\/5{padding:40%!important}[dir=ltr] .sm\:ltr\:p-3\/5{padding:60%!important}[dir=ltr] .sm\:ltr\:p-4\/5{padding:80%!important}[dir=ltr] .sm\:ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .sm\:ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .sm\:ltr\:p-3\/6{padding:50%!important}[dir=ltr] .sm\:ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .sm\:ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .sm\:ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .sm\:ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .sm\:ltr\:p-3\/12{padding:25%!important}[dir=ltr] .sm\:ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .sm\:ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .sm\:ltr\:p-6\/12{padding:50%!important}[dir=ltr] .sm\:ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .sm\:ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .sm\:ltr\:p-9\/12{padding:75%!important}[dir=ltr] .sm\:ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .sm\:ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .sm\:ltr\:p-full{padding:100%!important}[dir=ltr] .sm\:ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .sm\:ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .sm\:ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .sm\:ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .sm\:ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .sm\:ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .sm\:ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .sm\:ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .sm\:ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .sm\:ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .sm\:ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .sm\:ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .sm\:ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .sm\:ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .sm\:ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .sm\:ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .sm\:ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .sm\:ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .sm\:ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .sm\:ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .sm\:ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .sm\:ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .sm\:ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .sm\:ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .sm\:ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .sm\:ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .sm\:ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .sm\:ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .sm\:ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .sm\:ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .sm\:ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .sm\:ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .sm\:ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .sm\:ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .sm\:ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .sm\:ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .sm\:ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .sm\:ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .sm\:ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .sm\:ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .sm\:ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .sm\:ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .sm\:ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .sm\:ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .sm\:ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .sm\:ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .sm\:ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .sm\:ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .sm\:ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .sm\:ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .sm\:ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .sm\:ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .sm\:ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .sm\:ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .sm\:ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .sm\:ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .sm\:ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .sm\:ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .sm\:ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .sm\:ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .sm\:ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .sm\:ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .sm\:ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .sm\:ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .sm\:ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .sm\:ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .sm\:ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .sm\:ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .sm\:ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .sm\:ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .sm\:ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .sm\:ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .sm\:ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .sm\:ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .sm\:ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .sm\:ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .sm\:ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .sm\:ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .sm\:ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .sm\:ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .sm\:ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .sm\:ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .sm\:ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .sm\:ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .sm\:ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .sm\:ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .sm\:ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .sm\:ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .sm\:ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .sm\:ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .sm\:ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .sm\:ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .sm\:ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .sm\:ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .sm\:ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .sm\:ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .sm\:ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .sm\:ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .sm\:ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .sm\:ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .sm\:ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .sm\:ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .sm\:ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .sm\:ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .sm\:ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .sm\:ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .sm\:ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .sm\:ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .sm\:ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .sm\:ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .sm\:ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .sm\:ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .sm\:ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .sm\:ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .sm\:ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .sm\:ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .sm\:ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .sm\:ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .sm\:ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .sm\:ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .sm\:ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .sm\:ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .sm\:ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .sm\:ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .sm\:ltr\:pt-0{padding-top:0!important}[dir=ltr] .sm\:ltr\:pr-0{padding-right:0!important}[dir=ltr] .sm\:ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .sm\:ltr\:pl-0{padding-left:0!important}[dir=ltr] .sm\:ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .sm\:ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .sm\:ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .sm\:ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .sm\:ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .sm\:ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .sm\:ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .sm\:ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .sm\:ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .sm\:ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .sm\:ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .sm\:ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .sm\:ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .sm\:ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .sm\:ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .sm\:ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .sm\:ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .sm\:ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .sm\:ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .sm\:ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .sm\:ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .sm\:ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .sm\:ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .sm\:ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .sm\:ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .sm\:ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .sm\:ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .sm\:ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .sm\:ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .sm\:ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .sm\:ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .sm\:ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .sm\:ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .sm\:ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .sm\:ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .sm\:ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .sm\:ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .sm\:ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .sm\:ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .sm\:ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .sm\:ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .sm\:ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .sm\:ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .sm\:ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .sm\:ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .sm\:ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .sm\:ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .sm\:ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .sm\:ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .sm\:ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .sm\:ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .sm\:ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .sm\:ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .sm\:ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .sm\:ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .sm\:ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .sm\:ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .sm\:ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .sm\:ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .sm\:ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .sm\:ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .sm\:ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .sm\:ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .sm\:ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .sm\:ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .sm\:ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .sm\:ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .sm\:ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .sm\:ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .sm\:ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .sm\:ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .sm\:ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .sm\:ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .sm\:ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .sm\:ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .sm\:ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .sm\:ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .sm\:ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .sm\:ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .sm\:ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .sm\:ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .sm\:ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .sm\:ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .sm\:ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .sm\:ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .sm\:ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .sm\:ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .sm\:ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .sm\:ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .sm\:ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .sm\:ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .sm\:ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .sm\:ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .sm\:ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .sm\:ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .sm\:ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .sm\:ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .sm\:ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .sm\:ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .sm\:ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .sm\:ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .sm\:ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .sm\:ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .sm\:ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .sm\:ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .sm\:ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .sm\:ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .sm\:ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .sm\:ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .sm\:ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .sm\:ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .sm\:ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .sm\:ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .sm\:ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .sm\:ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .sm\:ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .sm\:ltr\:pt-px{padding-top:1px!important}[dir=ltr] .sm\:ltr\:pr-px{padding-right:1px!important}[dir=ltr] .sm\:ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .sm\:ltr\:pl-px{padding-left:1px!important}[dir=ltr] .sm\:ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .sm\:ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .sm\:ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .sm\:ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .sm\:ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .sm\:ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .sm\:ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .sm\:ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .sm\:ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .sm\:ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .sm\:ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .sm\:ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .sm\:ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .sm\:ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .sm\:ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .sm\:ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .sm\:ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .sm\:ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .sm\:ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .sm\:ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .sm\:ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .sm\:ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .sm\:ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .sm\:ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .sm\:ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .sm\:ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .sm\:ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .sm\:ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .sm\:ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .sm\:ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .sm\:ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .sm\:ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .sm\:ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .sm\:ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .sm\:ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .sm\:ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .sm\:ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .sm\:ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .sm\:ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .sm\:ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .sm\:ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .sm\:ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .sm\:ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .sm\:ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .sm\:ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .sm\:ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .sm\:ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .sm\:ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .sm\:ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .sm\:ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .sm\:ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .sm\:ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .sm\:ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .sm\:ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .sm\:ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .sm\:ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .sm\:ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .sm\:ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .sm\:ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .sm\:ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .sm\:ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .sm\:ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .sm\:ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .sm\:ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .sm\:ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .sm\:ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .sm\:ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .sm\:ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .sm\:ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .sm\:ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .sm\:ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .sm\:ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .sm\:ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .sm\:ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .sm\:ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .sm\:ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .sm\:ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .sm\:ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .sm\:ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .sm\:ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .sm\:ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .sm\:ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .sm\:ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .sm\:ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .sm\:ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .sm\:ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .sm\:ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .sm\:ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .sm\:ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .sm\:ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .sm\:ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .sm\:ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .sm\:ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .sm\:ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .sm\:ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .sm\:ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .sm\:ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .sm\:ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .sm\:ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .sm\:ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .sm\:ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .sm\:ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .sm\:ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .sm\:ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .sm\:ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .sm\:ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .sm\:ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .sm\:ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .sm\:ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .sm\:ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .sm\:ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .sm\:ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .sm\:ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .sm\:ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .sm\:ltr\:pt-full{padding-top:100%!important}[dir=ltr] .sm\:ltr\:pr-full{padding-right:100%!important}[dir=ltr] .sm\:ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .sm\:ltr\:pl-full{padding-left:100%!important}[dir=rtl] .sm\:rtl\:p-0{padding:0!important}[dir=rtl] .sm\:rtl\:p-1{padding:.25rem!important}[dir=rtl] .sm\:rtl\:p-2{padding:.5rem!important}[dir=rtl] .sm\:rtl\:p-3{padding:.75rem!important}[dir=rtl] .sm\:rtl\:p-4{padding:1rem!important}[dir=rtl] .sm\:rtl\:p-5{padding:1.25rem!important}[dir=rtl] .sm\:rtl\:p-6{padding:1.5rem!important}[dir=rtl] .sm\:rtl\:p-7{padding:1.75rem!important}[dir=rtl] .sm\:rtl\:p-8{padding:2rem!important}[dir=rtl] .sm\:rtl\:p-9{padding:2.25rem!important}[dir=rtl] .sm\:rtl\:p-10{padding:2.5rem!important}[dir=rtl] .sm\:rtl\:p-11{padding:2.75rem!important}[dir=rtl] .sm\:rtl\:p-12{padding:3rem!important}[dir=rtl] .sm\:rtl\:p-13{padding:3.25rem!important}[dir=rtl] .sm\:rtl\:p-14{padding:3.5rem!important}[dir=rtl] .sm\:rtl\:p-15{padding:3.75rem!important}[dir=rtl] .sm\:rtl\:p-16{padding:4rem!important}[dir=rtl] .sm\:rtl\:p-20{padding:5rem!important}[dir=rtl] .sm\:rtl\:p-24{padding:6rem!important}[dir=rtl] .sm\:rtl\:p-28{padding:7rem!important}[dir=rtl] .sm\:rtl\:p-32{padding:8rem!important}[dir=rtl] .sm\:rtl\:p-36{padding:9rem!important}[dir=rtl] .sm\:rtl\:p-40{padding:10rem!important}[dir=rtl] .sm\:rtl\:p-48{padding:12rem!important}[dir=rtl] .sm\:rtl\:p-56{padding:14rem!important}[dir=rtl] .sm\:rtl\:p-60{padding:15rem!important}[dir=rtl] .sm\:rtl\:p-64{padding:16rem!important}[dir=rtl] .sm\:rtl\:p-72{padding:18rem!important}[dir=rtl] .sm\:rtl\:p-80{padding:20rem!important}[dir=rtl] .sm\:rtl\:p-96{padding:24rem!important}[dir=rtl] .sm\:rtl\:p-px{padding:1px!important}[dir=rtl] .sm\:rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .sm\:rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .sm\:rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .sm\:rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .sm\:rtl\:p-1\/2{padding:50%!important}[dir=rtl] .sm\:rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .sm\:rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .sm\:rtl\:p-1\/4{padding:25%!important}[dir=rtl] .sm\:rtl\:p-2\/4{padding:50%!important}[dir=rtl] .sm\:rtl\:p-3\/4{padding:75%!important}[dir=rtl] .sm\:rtl\:p-1\/5{padding:20%!important}[dir=rtl] .sm\:rtl\:p-2\/5{padding:40%!important}[dir=rtl] .sm\:rtl\:p-3\/5{padding:60%!important}[dir=rtl] .sm\:rtl\:p-4\/5{padding:80%!important}[dir=rtl] .sm\:rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .sm\:rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .sm\:rtl\:p-3\/6{padding:50%!important}[dir=rtl] .sm\:rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .sm\:rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .sm\:rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .sm\:rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .sm\:rtl\:p-3\/12{padding:25%!important}[dir=rtl] .sm\:rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .sm\:rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .sm\:rtl\:p-6\/12{padding:50%!important}[dir=rtl] .sm\:rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .sm\:rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .sm\:rtl\:p-9\/12{padding:75%!important}[dir=rtl] .sm\:rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .sm\:rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .sm\:rtl\:p-full{padding:100%!important}[dir=rtl] .sm\:rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .sm\:rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .sm\:rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .sm\:rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .sm\:rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .sm\:rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .sm\:rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .sm\:rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .sm\:rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .sm\:rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .sm\:rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .sm\:rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .sm\:rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .sm\:rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .sm\:rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .sm\:rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .sm\:rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .sm\:rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .sm\:rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .sm\:rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .sm\:rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .sm\:rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .sm\:rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .sm\:rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .sm\:rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .sm\:rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .sm\:rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .sm\:rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .sm\:rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .sm\:rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .sm\:rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .sm\:rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .sm\:rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .sm\:rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .sm\:rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .sm\:rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .sm\:rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .sm\:rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .sm\:rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .sm\:rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .sm\:rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .sm\:rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .sm\:rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .sm\:rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .sm\:rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .sm\:rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .sm\:rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .sm\:rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .sm\:rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .sm\:rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .sm\:rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .sm\:rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .sm\:rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .sm\:rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .sm\:rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .sm\:rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .sm\:rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .sm\:rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .sm\:rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .sm\:rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .sm\:rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .sm\:rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .sm\:rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .sm\:rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .sm\:rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .sm\:rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .sm\:rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .sm\:rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .sm\:rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .sm\:rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .sm\:rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .sm\:rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .sm\:rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .sm\:rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .sm\:rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .sm\:rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .sm\:rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .sm\:rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .sm\:rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .sm\:rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .sm\:rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .sm\:rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .sm\:rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .sm\:rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .sm\:rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .sm\:rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .sm\:rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .sm\:rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .sm\:rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .sm\:rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .sm\:rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .sm\:rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .sm\:rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .sm\:rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .sm\:rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .sm\:rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .sm\:rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .sm\:rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .sm\:rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .sm\:rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .sm\:rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .sm\:rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .sm\:rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .sm\:rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .sm\:rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .sm\:rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .sm\:rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .sm\:rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .sm\:rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .sm\:rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .sm\:rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .sm\:rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .sm\:rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .sm\:rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .sm\:rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .sm\:rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .sm\:rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .sm\:rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .sm\:rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .sm\:rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .sm\:rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .sm\:rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .sm\:rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .sm\:rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .sm\:rtl\:pt-0{padding-top:0!important}[dir=rtl] .sm\:rtl\:pr-0{padding-right:0!important}[dir=rtl] .sm\:rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .sm\:rtl\:pl-0{padding-left:0!important}[dir=rtl] .sm\:rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .sm\:rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .sm\:rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .sm\:rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .sm\:rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .sm\:rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .sm\:rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .sm\:rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .sm\:rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .sm\:rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .sm\:rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .sm\:rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .sm\:rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .sm\:rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .sm\:rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .sm\:rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .sm\:rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .sm\:rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .sm\:rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .sm\:rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .sm\:rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .sm\:rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .sm\:rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .sm\:rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .sm\:rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .sm\:rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .sm\:rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .sm\:rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .sm\:rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .sm\:rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .sm\:rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .sm\:rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .sm\:rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .sm\:rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .sm\:rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .sm\:rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .sm\:rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .sm\:rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .sm\:rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .sm\:rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .sm\:rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .sm\:rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .sm\:rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .sm\:rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .sm\:rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .sm\:rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .sm\:rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .sm\:rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .sm\:rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .sm\:rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .sm\:rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .sm\:rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .sm\:rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .sm\:rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .sm\:rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .sm\:rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .sm\:rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .sm\:rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .sm\:rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .sm\:rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .sm\:rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .sm\:rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .sm\:rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .sm\:rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .sm\:rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .sm\:rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .sm\:rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .sm\:rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .sm\:rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .sm\:rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .sm\:rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .sm\:rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .sm\:rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .sm\:rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .sm\:rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .sm\:rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .sm\:rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .sm\:rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .sm\:rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .sm\:rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .sm\:rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .sm\:rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .sm\:rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .sm\:rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .sm\:rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .sm\:rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .sm\:rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .sm\:rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .sm\:rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .sm\:rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .sm\:rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .sm\:rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .sm\:rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .sm\:rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .sm\:rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .sm\:rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .sm\:rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .sm\:rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .sm\:rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .sm\:rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .sm\:rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .sm\:rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .sm\:rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .sm\:rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .sm\:rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .sm\:rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .sm\:rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .sm\:rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .sm\:rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .sm\:rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .sm\:rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .sm\:rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .sm\:rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .sm\:rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .sm\:rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .sm\:rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .sm\:rtl\:pt-px{padding-top:1px!important}[dir=rtl] .sm\:rtl\:pr-px{padding-right:1px!important}[dir=rtl] .sm\:rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .sm\:rtl\:pl-px{padding-left:1px!important}[dir=rtl] .sm\:rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .sm\:rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .sm\:rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .sm\:rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .sm\:rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .sm\:rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .sm\:rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .sm\:rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .sm\:rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .sm\:rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .sm\:rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .sm\:rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .sm\:rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .sm\:rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .sm\:rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .sm\:rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .sm\:rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .sm\:rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .sm\:rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .sm\:rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .sm\:rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .sm\:rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .sm\:rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .sm\:rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .sm\:rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .sm\:rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .sm\:rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .sm\:rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .sm\:rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .sm\:rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .sm\:rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .sm\:rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .sm\:rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .sm\:rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .sm\:rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .sm\:rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .sm\:rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .sm\:rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .sm\:rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .sm\:rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .sm\:rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .sm\:rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .sm\:rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .sm\:rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .sm\:rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .sm\:rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .sm\:rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .sm\:rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .sm\:rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .sm\:rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .sm\:rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .sm\:rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .sm\:rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .sm\:rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .sm\:rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .sm\:rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .sm\:rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .sm\:rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .sm\:rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .sm\:rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .sm\:rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .sm\:rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .sm\:rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .sm\:rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .sm\:rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .sm\:rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .sm\:rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .sm\:rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .sm\:rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .sm\:rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .sm\:rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .sm\:rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .sm\:rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .sm\:rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .sm\:rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .sm\:rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .sm\:rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .sm\:rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .sm\:rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .sm\:rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .sm\:rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .sm\:rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .sm\:rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .sm\:rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .sm\:rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .sm\:rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .sm\:rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .sm\:rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .sm\:rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .sm\:rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .sm\:rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .sm\:rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .sm\:rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .sm\:rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .sm\:rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .sm\:rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .sm\:rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .sm\:rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .sm\:rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .sm\:rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .sm\:rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .sm\:rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .sm\:rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .sm\:rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .sm\:rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .sm\:rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .sm\:rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .sm\:rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .sm\:rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .sm\:rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .sm\:rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .sm\:rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .sm\:rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .sm\:rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .sm\:rtl\:pt-full{padding-top:100%!important}[dir=rtl] .sm\:rtl\:pr-full{padding-right:100%!important}[dir=rtl] .sm\:rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .sm\:rtl\:pl-full{padding-left:100%!important}.sm\:placeholder-transparent::-moz-placeholder{color:transparent!important}.sm\:placeholder-transparent::placeholder{color:transparent!important}.sm\:placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.sm\:placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.sm\:placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.sm\:placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.sm\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.sm\:placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.sm\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.sm\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.sm\:placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.sm\:placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.sm\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.sm\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.sm\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.sm\:placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.sm\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.sm\:placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.sm\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.sm\:placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.sm\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.sm\:placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.sm\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.sm\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.sm\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.sm\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.sm\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.sm\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.sm\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.sm\:placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.sm\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.sm\:placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.sm\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.sm\:placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.sm\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.sm\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.sm\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.sm\:placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.sm\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.sm\:placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.sm\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.sm\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.sm\:placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.sm\:placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.sm\:placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.sm\:placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.sm\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.sm\:placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.sm\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.sm\:placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.sm\:focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.sm\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.sm\:focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.sm\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.sm\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.sm\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.sm\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.sm\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.sm\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.sm\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.sm\:placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.sm\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.sm\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.sm\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.sm\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.sm\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.sm\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.sm\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.sm\:placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.sm\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.sm\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.sm\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.sm\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.sm\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.sm\:pointer-events-none{pointer-events:none!important}.sm\:pointer-events-auto{pointer-events:auto!important}.sm\:static{position:static!important}.sm\:fixed{position:fixed!important}.sm\:absolute{position:absolute!important}.sm\:relative{position:relative!important}.sm\:sticky{position:sticky!important}.sm\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.sm\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.sm\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.sm\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.sm\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.sm\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.sm\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.sm\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.sm\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.sm\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.sm\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.sm\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.sm\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.sm\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.sm\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.sm\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.sm\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.sm\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.sm\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.sm\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.sm\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.sm\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.sm\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.sm\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.sm\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.sm\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.sm\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.sm\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.sm\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.sm\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.sm\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.sm\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.sm\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.sm\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.sm\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.sm\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.sm\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.sm\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.sm\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.sm\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.sm\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.sm\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.sm\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.sm\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.sm\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.sm\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.sm\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.sm\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.sm\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.sm\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.sm\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.sm\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.sm\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.sm\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.sm\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.sm\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.sm\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.sm\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.sm\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.sm\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.sm\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.sm\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.sm\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.sm\:inset-y-0{bottom:0!important;top:0!important}.sm\:inset-x-0{left:0!important;right:0!important}.sm\:inset-y-1{bottom:.25rem!important;top:.25rem!important}.sm\:inset-x-1{left:.25rem!important;right:.25rem!important}.sm\:inset-y-2{bottom:.5rem!important;top:.5rem!important}.sm\:inset-x-2{left:.5rem!important;right:.5rem!important}.sm\:inset-y-3{bottom:.75rem!important;top:.75rem!important}.sm\:inset-x-3{left:.75rem!important;right:.75rem!important}.sm\:inset-y-4{bottom:1rem!important;top:1rem!important}.sm\:inset-x-4{left:1rem!important;right:1rem!important}.sm\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.sm\:inset-x-5{left:1.25rem!important;right:1.25rem!important}.sm\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.sm\:inset-x-6{left:1.5rem!important;right:1.5rem!important}.sm\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.sm\:inset-x-7{left:1.75rem!important;right:1.75rem!important}.sm\:inset-y-8{bottom:2rem!important;top:2rem!important}.sm\:inset-x-8{left:2rem!important;right:2rem!important}.sm\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.sm\:inset-x-9{left:2.25rem!important;right:2.25rem!important}.sm\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.sm\:inset-x-10{left:2.5rem!important;right:2.5rem!important}.sm\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.sm\:inset-x-11{left:2.75rem!important;right:2.75rem!important}.sm\:inset-y-12{bottom:3rem!important;top:3rem!important}.sm\:inset-x-12{left:3rem!important;right:3rem!important}.sm\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.sm\:inset-x-13{left:3.25rem!important;right:3.25rem!important}.sm\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.sm\:inset-x-14{left:3.5rem!important;right:3.5rem!important}.sm\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.sm\:inset-x-15{left:3.75rem!important;right:3.75rem!important}.sm\:inset-y-16{bottom:4rem!important;top:4rem!important}.sm\:inset-x-16{left:4rem!important;right:4rem!important}.sm\:inset-y-20{bottom:5rem!important;top:5rem!important}.sm\:inset-x-20{left:5rem!important;right:5rem!important}.sm\:inset-y-24{bottom:6rem!important;top:6rem!important}.sm\:inset-x-24{left:6rem!important;right:6rem!important}.sm\:inset-y-28{bottom:7rem!important;top:7rem!important}.sm\:inset-x-28{left:7rem!important;right:7rem!important}.sm\:inset-y-32{bottom:8rem!important;top:8rem!important}.sm\:inset-x-32{left:8rem!important;right:8rem!important}.sm\:inset-y-36{bottom:9rem!important;top:9rem!important}.sm\:inset-x-36{left:9rem!important;right:9rem!important}.sm\:inset-y-40{bottom:10rem!important;top:10rem!important}.sm\:inset-x-40{left:10rem!important;right:10rem!important}.sm\:inset-y-48{bottom:12rem!important;top:12rem!important}.sm\:inset-x-48{left:12rem!important;right:12rem!important}.sm\:inset-y-56{bottom:14rem!important;top:14rem!important}.sm\:inset-x-56{left:14rem!important;right:14rem!important}.sm\:inset-y-60{bottom:15rem!important;top:15rem!important}.sm\:inset-x-60{left:15rem!important;right:15rem!important}.sm\:inset-y-64{bottom:16rem!important;top:16rem!important}.sm\:inset-x-64{left:16rem!important;right:16rem!important}.sm\:inset-y-72{bottom:18rem!important;top:18rem!important}.sm\:inset-x-72{left:18rem!important;right:18rem!important}.sm\:inset-y-80{bottom:20rem!important;top:20rem!important}.sm\:inset-x-80{left:20rem!important;right:20rem!important}.sm\:inset-y-96{bottom:24rem!important;top:24rem!important}.sm\:inset-x-96{left:24rem!important;right:24rem!important}.sm\:inset-y-auto{bottom:auto!important;top:auto!important}.sm\:inset-x-auto{left:auto!important;right:auto!important}.sm\:inset-y-px{bottom:1px!important;top:1px!important}.sm\:inset-x-px{left:1px!important;right:1px!important}.sm\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.sm\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}.sm\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.sm\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}.sm\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.sm\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}.sm\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.sm\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}.sm\:inset-y-1\/2{bottom:50%!important;top:50%!important}.sm\:inset-x-1\/2{left:50%!important;right:50%!important}.sm\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.sm\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.sm\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.sm\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.sm\:inset-y-1\/4{bottom:25%!important;top:25%!important}.sm\:inset-x-1\/4{left:25%!important;right:25%!important}.sm\:inset-y-2\/4{bottom:50%!important;top:50%!important}.sm\:inset-x-2\/4{left:50%!important;right:50%!important}.sm\:inset-y-3\/4{bottom:75%!important;top:75%!important}.sm\:inset-x-3\/4{left:75%!important;right:75%!important}.sm\:inset-y-1\/5{bottom:20%!important;top:20%!important}.sm\:inset-x-1\/5{left:20%!important;right:20%!important}.sm\:inset-y-2\/5{bottom:40%!important;top:40%!important}.sm\:inset-x-2\/5{left:40%!important;right:40%!important}.sm\:inset-y-3\/5{bottom:60%!important;top:60%!important}.sm\:inset-x-3\/5{left:60%!important;right:60%!important}.sm\:inset-y-4\/5{bottom:80%!important;top:80%!important}.sm\:inset-x-4\/5{left:80%!important;right:80%!important}.sm\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.sm\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.sm\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.sm\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.sm\:inset-y-3\/6{bottom:50%!important;top:50%!important}.sm\:inset-x-3\/6{left:50%!important;right:50%!important}.sm\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.sm\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.sm\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.sm\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.sm\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.sm\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.sm\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.sm\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.sm\:inset-y-3\/12{bottom:25%!important;top:25%!important}.sm\:inset-x-3\/12{left:25%!important;right:25%!important}.sm\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.sm\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.sm\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.sm\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.sm\:inset-y-6\/12{bottom:50%!important;top:50%!important}.sm\:inset-x-6\/12{left:50%!important;right:50%!important}.sm\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.sm\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.sm\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.sm\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.sm\:inset-y-9\/12{bottom:75%!important;top:75%!important}.sm\:inset-x-9\/12{left:75%!important;right:75%!important}.sm\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.sm\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.sm\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.sm\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.sm\:inset-y-full{bottom:100%!important;top:100%!important}.sm\:inset-x-full{left:100%!important;right:100%!important}.sm\:top-0{top:0!important}.sm\:right-0{right:0!important}.sm\:bottom-0{bottom:0!important}.sm\:left-0{left:0!important}.sm\:top-1{top:.25rem!important}.sm\:right-1{right:.25rem!important}.sm\:bottom-1{bottom:.25rem!important}.sm\:left-1{left:.25rem!important}.sm\:top-2{top:.5rem!important}.sm\:right-2{right:.5rem!important}.sm\:bottom-2{bottom:.5rem!important}.sm\:left-2{left:.5rem!important}.sm\:top-3{top:.75rem!important}.sm\:right-3{right:.75rem!important}.sm\:bottom-3{bottom:.75rem!important}.sm\:left-3{left:.75rem!important}.sm\:top-4{top:1rem!important}.sm\:right-4{right:1rem!important}.sm\:bottom-4{bottom:1rem!important}.sm\:left-4{left:1rem!important}.sm\:top-5{top:1.25rem!important}.sm\:right-5{right:1.25rem!important}.sm\:bottom-5{bottom:1.25rem!important}.sm\:left-5{left:1.25rem!important}.sm\:top-6{top:1.5rem!important}.sm\:right-6{right:1.5rem!important}.sm\:bottom-6{bottom:1.5rem!important}.sm\:left-6{left:1.5rem!important}.sm\:top-7{top:1.75rem!important}.sm\:right-7{right:1.75rem!important}.sm\:bottom-7{bottom:1.75rem!important}.sm\:left-7{left:1.75rem!important}.sm\:top-8{top:2rem!important}.sm\:right-8{right:2rem!important}.sm\:bottom-8{bottom:2rem!important}.sm\:left-8{left:2rem!important}.sm\:top-9{top:2.25rem!important}.sm\:right-9{right:2.25rem!important}.sm\:bottom-9{bottom:2.25rem!important}.sm\:left-9{left:2.25rem!important}.sm\:top-10{top:2.5rem!important}.sm\:right-10{right:2.5rem!important}.sm\:bottom-10{bottom:2.5rem!important}.sm\:left-10{left:2.5rem!important}.sm\:top-11{top:2.75rem!important}.sm\:right-11{right:2.75rem!important}.sm\:bottom-11{bottom:2.75rem!important}.sm\:left-11{left:2.75rem!important}.sm\:top-12{top:3rem!important}.sm\:right-12{right:3rem!important}.sm\:bottom-12{bottom:3rem!important}.sm\:left-12{left:3rem!important}.sm\:top-13{top:3.25rem!important}.sm\:right-13{right:3.25rem!important}.sm\:bottom-13{bottom:3.25rem!important}.sm\:left-13{left:3.25rem!important}.sm\:top-14{top:3.5rem!important}.sm\:right-14{right:3.5rem!important}.sm\:bottom-14{bottom:3.5rem!important}.sm\:left-14{left:3.5rem!important}.sm\:top-15{top:3.75rem!important}.sm\:right-15{right:3.75rem!important}.sm\:bottom-15{bottom:3.75rem!important}.sm\:left-15{left:3.75rem!important}.sm\:top-16{top:4rem!important}.sm\:right-16{right:4rem!important}.sm\:bottom-16{bottom:4rem!important}.sm\:left-16{left:4rem!important}.sm\:top-20{top:5rem!important}.sm\:right-20{right:5rem!important}.sm\:bottom-20{bottom:5rem!important}.sm\:left-20{left:5rem!important}.sm\:top-24{top:6rem!important}.sm\:right-24{right:6rem!important}.sm\:bottom-24{bottom:6rem!important}.sm\:left-24{left:6rem!important}.sm\:top-28{top:7rem!important}.sm\:right-28{right:7rem!important}.sm\:bottom-28{bottom:7rem!important}.sm\:left-28{left:7rem!important}.sm\:top-32{top:8rem!important}.sm\:right-32{right:8rem!important}.sm\:bottom-32{bottom:8rem!important}.sm\:left-32{left:8rem!important}.sm\:top-36{top:9rem!important}.sm\:right-36{right:9rem!important}.sm\:bottom-36{bottom:9rem!important}.sm\:left-36{left:9rem!important}.sm\:top-40{top:10rem!important}.sm\:right-40{right:10rem!important}.sm\:bottom-40{bottom:10rem!important}.sm\:left-40{left:10rem!important}.sm\:top-48{top:12rem!important}.sm\:right-48{right:12rem!important}.sm\:bottom-48{bottom:12rem!important}.sm\:left-48{left:12rem!important}.sm\:top-56{top:14rem!important}.sm\:right-56{right:14rem!important}.sm\:bottom-56{bottom:14rem!important}.sm\:left-56{left:14rem!important}.sm\:top-60{top:15rem!important}.sm\:right-60{right:15rem!important}.sm\:bottom-60{bottom:15rem!important}.sm\:left-60{left:15rem!important}.sm\:top-64{top:16rem!important}.sm\:right-64{right:16rem!important}.sm\:bottom-64{bottom:16rem!important}.sm\:left-64{left:16rem!important}.sm\:top-72{top:18rem!important}.sm\:right-72{right:18rem!important}.sm\:bottom-72{bottom:18rem!important}.sm\:left-72{left:18rem!important}.sm\:top-80{top:20rem!important}.sm\:right-80{right:20rem!important}.sm\:bottom-80{bottom:20rem!important}.sm\:left-80{left:20rem!important}.sm\:top-96{top:24rem!important}.sm\:right-96{right:24rem!important}.sm\:bottom-96{bottom:24rem!important}.sm\:left-96{left:24rem!important}.sm\:top-auto{top:auto!important}.sm\:right-auto{right:auto!important}.sm\:bottom-auto{bottom:auto!important}.sm\:left-auto{left:auto!important}.sm\:top-px{top:1px!important}.sm\:right-px{right:1px!important}.sm\:bottom-px{bottom:1px!important}.sm\:left-px{left:1px!important}.sm\:top-0\.5{top:.125rem!important}.sm\:right-0\.5{right:.125rem!important}.sm\:bottom-0\.5{bottom:.125rem!important}.sm\:left-0\.5{left:.125rem!important}.sm\:top-1\.5{top:.375rem!important}.sm\:right-1\.5{right:.375rem!important}.sm\:bottom-1\.5{bottom:.375rem!important}.sm\:left-1\.5{left:.375rem!important}.sm\:top-2\.5{top:.625rem!important}.sm\:right-2\.5{right:.625rem!important}.sm\:bottom-2\.5{bottom:.625rem!important}.sm\:left-2\.5{left:.625rem!important}.sm\:top-3\.5{top:.875rem!important}.sm\:right-3\.5{right:.875rem!important}.sm\:bottom-3\.5{bottom:.875rem!important}.sm\:left-3\.5{left:.875rem!important}.sm\:top-1\/2{top:50%!important}.sm\:right-1\/2{right:50%!important}.sm\:bottom-1\/2{bottom:50%!important}.sm\:left-1\/2{left:50%!important}.sm\:top-1\/3{top:33.333333%!important}.sm\:right-1\/3{right:33.333333%!important}.sm\:bottom-1\/3{bottom:33.333333%!important}.sm\:left-1\/3{left:33.333333%!important}.sm\:top-2\/3{top:66.666667%!important}.sm\:right-2\/3{right:66.666667%!important}.sm\:bottom-2\/3{bottom:66.666667%!important}.sm\:left-2\/3{left:66.666667%!important}.sm\:top-1\/4{top:25%!important}.sm\:right-1\/4{right:25%!important}.sm\:bottom-1\/4{bottom:25%!important}.sm\:left-1\/4{left:25%!important}.sm\:top-2\/4{top:50%!important}.sm\:right-2\/4{right:50%!important}.sm\:bottom-2\/4{bottom:50%!important}.sm\:left-2\/4{left:50%!important}.sm\:top-3\/4{top:75%!important}.sm\:right-3\/4{right:75%!important}.sm\:bottom-3\/4{bottom:75%!important}.sm\:left-3\/4{left:75%!important}.sm\:top-1\/5{top:20%!important}.sm\:right-1\/5{right:20%!important}.sm\:bottom-1\/5{bottom:20%!important}.sm\:left-1\/5{left:20%!important}.sm\:top-2\/5{top:40%!important}.sm\:right-2\/5{right:40%!important}.sm\:bottom-2\/5{bottom:40%!important}.sm\:left-2\/5{left:40%!important}.sm\:top-3\/5{top:60%!important}.sm\:right-3\/5{right:60%!important}.sm\:bottom-3\/5{bottom:60%!important}.sm\:left-3\/5{left:60%!important}.sm\:top-4\/5{top:80%!important}.sm\:right-4\/5{right:80%!important}.sm\:bottom-4\/5{bottom:80%!important}.sm\:left-4\/5{left:80%!important}.sm\:top-1\/6{top:16.666667%!important}.sm\:right-1\/6{right:16.666667%!important}.sm\:bottom-1\/6{bottom:16.666667%!important}.sm\:left-1\/6{left:16.666667%!important}.sm\:top-2\/6{top:33.333333%!important}.sm\:right-2\/6{right:33.333333%!important}.sm\:bottom-2\/6{bottom:33.333333%!important}.sm\:left-2\/6{left:33.333333%!important}.sm\:top-3\/6{top:50%!important}.sm\:right-3\/6{right:50%!important}.sm\:bottom-3\/6{bottom:50%!important}.sm\:left-3\/6{left:50%!important}.sm\:top-4\/6{top:66.666667%!important}.sm\:right-4\/6{right:66.666667%!important}.sm\:bottom-4\/6{bottom:66.666667%!important}.sm\:left-4\/6{left:66.666667%!important}.sm\:top-5\/6{top:83.333333%!important}.sm\:right-5\/6{right:83.333333%!important}.sm\:bottom-5\/6{bottom:83.333333%!important}.sm\:left-5\/6{left:83.333333%!important}.sm\:top-1\/12{top:8.333333%!important}.sm\:right-1\/12{right:8.333333%!important}.sm\:bottom-1\/12{bottom:8.333333%!important}.sm\:left-1\/12{left:8.333333%!important}.sm\:top-2\/12{top:16.666667%!important}.sm\:right-2\/12{right:16.666667%!important}.sm\:bottom-2\/12{bottom:16.666667%!important}.sm\:left-2\/12{left:16.666667%!important}.sm\:top-3\/12{top:25%!important}.sm\:right-3\/12{right:25%!important}.sm\:bottom-3\/12{bottom:25%!important}.sm\:left-3\/12{left:25%!important}.sm\:top-4\/12{top:33.333333%!important}.sm\:right-4\/12{right:33.333333%!important}.sm\:bottom-4\/12{bottom:33.333333%!important}.sm\:left-4\/12{left:33.333333%!important}.sm\:top-5\/12{top:41.666667%!important}.sm\:right-5\/12{right:41.666667%!important}.sm\:bottom-5\/12{bottom:41.666667%!important}.sm\:left-5\/12{left:41.666667%!important}.sm\:top-6\/12{top:50%!important}.sm\:right-6\/12{right:50%!important}.sm\:bottom-6\/12{bottom:50%!important}.sm\:left-6\/12{left:50%!important}.sm\:top-7\/12{top:58.333333%!important}.sm\:right-7\/12{right:58.333333%!important}.sm\:bottom-7\/12{bottom:58.333333%!important}.sm\:left-7\/12{left:58.333333%!important}.sm\:top-8\/12{top:66.666667%!important}.sm\:right-8\/12{right:66.666667%!important}.sm\:bottom-8\/12{bottom:66.666667%!important}.sm\:left-8\/12{left:66.666667%!important}.sm\:top-9\/12{top:75%!important}.sm\:right-9\/12{right:75%!important}.sm\:bottom-9\/12{bottom:75%!important}.sm\:left-9\/12{left:75%!important}.sm\:top-10\/12{top:83.333333%!important}.sm\:right-10\/12{right:83.333333%!important}.sm\:bottom-10\/12{bottom:83.333333%!important}.sm\:left-10\/12{left:83.333333%!important}.sm\:top-11\/12{top:91.666667%!important}.sm\:right-11\/12{right:91.666667%!important}.sm\:bottom-11\/12{bottom:91.666667%!important}.sm\:left-11\/12{left:91.666667%!important}.sm\:top-full{top:100%!important}.sm\:right-full{right:100%!important}.sm\:bottom-full{bottom:100%!important}.sm\:left-full{left:100%!important}[dir=ltr] .sm\:ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .sm\:ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .sm\:ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .sm\:ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .sm\:ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .sm\:ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .sm\:ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .sm\:ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .sm\:ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .sm\:ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .sm\:ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .sm\:ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .sm\:ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .sm\:ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .sm\:ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .sm\:ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .sm\:ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .sm\:ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .sm\:ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .sm\:ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .sm\:ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .sm\:ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .sm\:ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .sm\:ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .sm\:ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .sm\:ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .sm\:ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .sm\:ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .sm\:ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .sm\:ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .sm\:ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .sm\:ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .sm\:ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .sm\:ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .sm\:ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .sm\:ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .sm\:ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .sm\:ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .sm\:ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .sm\:ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .sm\:ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .sm\:ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .sm\:ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .sm\:ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .sm\:ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .sm\:ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .sm\:ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .sm\:ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .sm\:ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .sm\:ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .sm\:ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .sm\:ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .sm\:ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .sm\:ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .sm\:ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .sm\:ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .sm\:ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .sm\:ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .sm\:ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .sm\:ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .sm\:ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .sm\:ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .sm\:ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .sm\:ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .sm\:ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .sm\:ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .sm\:ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .sm\:ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .sm\:ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .sm\:ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .sm\:ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .sm\:ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .sm\:ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .sm\:ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .sm\:ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .sm\:ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .sm\:ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .sm\:ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .sm\:ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .sm\:ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .sm\:ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .sm\:ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .sm\:ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .sm\:ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .sm\:ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .sm\:ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .sm\:ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .sm\:ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .sm\:ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .sm\:ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .sm\:ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .sm\:ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .sm\:ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .sm\:ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .sm\:ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .sm\:ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .sm\:ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .sm\:ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .sm\:ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .sm\:ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .sm\:ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .sm\:ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .sm\:ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .sm\:ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .sm\:ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .sm\:ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .sm\:ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .sm\:ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .sm\:ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .sm\:ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .sm\:ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .sm\:ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .sm\:ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .sm\:ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .sm\:ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .sm\:ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .sm\:ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .sm\:ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .sm\:ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .sm\:ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .sm\:ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .sm\:ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .sm\:ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .sm\:ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .sm\:ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .sm\:ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .sm\:ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .sm\:ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .sm\:ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .sm\:ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .sm\:ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .sm\:ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .sm\:ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .sm\:ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .sm\:ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .sm\:ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .sm\:ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .sm\:ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .sm\:ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .sm\:ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .sm\:ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .sm\:ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .sm\:ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .sm\:ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .sm\:ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .sm\:ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .sm\:ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .sm\:ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .sm\:ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .sm\:ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .sm\:ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .sm\:ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .sm\:ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .sm\:ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .sm\:ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .sm\:ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .sm\:ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .sm\:ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .sm\:ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .sm\:ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .sm\:ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .sm\:ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .sm\:ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .sm\:ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .sm\:ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .sm\:ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .sm\:ltr\:top-0{top:0!important}[dir=ltr] .sm\:ltr\:right-0{right:0!important}[dir=ltr] .sm\:ltr\:bottom-0{bottom:0!important}[dir=ltr] .sm\:ltr\:left-0{left:0!important}[dir=ltr] .sm\:ltr\:top-1{top:.25rem!important}[dir=ltr] .sm\:ltr\:right-1{right:.25rem!important}[dir=ltr] .sm\:ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .sm\:ltr\:left-1{left:.25rem!important}[dir=ltr] .sm\:ltr\:top-2{top:.5rem!important}[dir=ltr] .sm\:ltr\:right-2{right:.5rem!important}[dir=ltr] .sm\:ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .sm\:ltr\:left-2{left:.5rem!important}[dir=ltr] .sm\:ltr\:top-3{top:.75rem!important}[dir=ltr] .sm\:ltr\:right-3{right:.75rem!important}[dir=ltr] .sm\:ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .sm\:ltr\:left-3{left:.75rem!important}[dir=ltr] .sm\:ltr\:top-4{top:1rem!important}[dir=ltr] .sm\:ltr\:right-4{right:1rem!important}[dir=ltr] .sm\:ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .sm\:ltr\:left-4{left:1rem!important}[dir=ltr] .sm\:ltr\:top-5{top:1.25rem!important}[dir=ltr] .sm\:ltr\:right-5{right:1.25rem!important}[dir=ltr] .sm\:ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .sm\:ltr\:left-5{left:1.25rem!important}[dir=ltr] .sm\:ltr\:top-6{top:1.5rem!important}[dir=ltr] .sm\:ltr\:right-6{right:1.5rem!important}[dir=ltr] .sm\:ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .sm\:ltr\:left-6{left:1.5rem!important}[dir=ltr] .sm\:ltr\:top-7{top:1.75rem!important}[dir=ltr] .sm\:ltr\:right-7{right:1.75rem!important}[dir=ltr] .sm\:ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .sm\:ltr\:left-7{left:1.75rem!important}[dir=ltr] .sm\:ltr\:top-8{top:2rem!important}[dir=ltr] .sm\:ltr\:right-8{right:2rem!important}[dir=ltr] .sm\:ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .sm\:ltr\:left-8{left:2rem!important}[dir=ltr] .sm\:ltr\:top-9{top:2.25rem!important}[dir=ltr] .sm\:ltr\:right-9{right:2.25rem!important}[dir=ltr] .sm\:ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .sm\:ltr\:left-9{left:2.25rem!important}[dir=ltr] .sm\:ltr\:top-10{top:2.5rem!important}[dir=ltr] .sm\:ltr\:right-10{right:2.5rem!important}[dir=ltr] .sm\:ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .sm\:ltr\:left-10{left:2.5rem!important}[dir=ltr] .sm\:ltr\:top-11{top:2.75rem!important}[dir=ltr] .sm\:ltr\:right-11{right:2.75rem!important}[dir=ltr] .sm\:ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .sm\:ltr\:left-11{left:2.75rem!important}[dir=ltr] .sm\:ltr\:top-12{top:3rem!important}[dir=ltr] .sm\:ltr\:right-12{right:3rem!important}[dir=ltr] .sm\:ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .sm\:ltr\:left-12{left:3rem!important}[dir=ltr] .sm\:ltr\:top-13{top:3.25rem!important}[dir=ltr] .sm\:ltr\:right-13{right:3.25rem!important}[dir=ltr] .sm\:ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .sm\:ltr\:left-13{left:3.25rem!important}[dir=ltr] .sm\:ltr\:top-14{top:3.5rem!important}[dir=ltr] .sm\:ltr\:right-14{right:3.5rem!important}[dir=ltr] .sm\:ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .sm\:ltr\:left-14{left:3.5rem!important}[dir=ltr] .sm\:ltr\:top-15{top:3.75rem!important}[dir=ltr] .sm\:ltr\:right-15{right:3.75rem!important}[dir=ltr] .sm\:ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .sm\:ltr\:left-15{left:3.75rem!important}[dir=ltr] .sm\:ltr\:top-16{top:4rem!important}[dir=ltr] .sm\:ltr\:right-16{right:4rem!important}[dir=ltr] .sm\:ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .sm\:ltr\:left-16{left:4rem!important}[dir=ltr] .sm\:ltr\:top-20{top:5rem!important}[dir=ltr] .sm\:ltr\:right-20{right:5rem!important}[dir=ltr] .sm\:ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .sm\:ltr\:left-20{left:5rem!important}[dir=ltr] .sm\:ltr\:top-24{top:6rem!important}[dir=ltr] .sm\:ltr\:right-24{right:6rem!important}[dir=ltr] .sm\:ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .sm\:ltr\:left-24{left:6rem!important}[dir=ltr] .sm\:ltr\:top-28{top:7rem!important}[dir=ltr] .sm\:ltr\:right-28{right:7rem!important}[dir=ltr] .sm\:ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .sm\:ltr\:left-28{left:7rem!important}[dir=ltr] .sm\:ltr\:top-32{top:8rem!important}[dir=ltr] .sm\:ltr\:right-32{right:8rem!important}[dir=ltr] .sm\:ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .sm\:ltr\:left-32{left:8rem!important}[dir=ltr] .sm\:ltr\:top-36{top:9rem!important}[dir=ltr] .sm\:ltr\:right-36{right:9rem!important}[dir=ltr] .sm\:ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .sm\:ltr\:left-36{left:9rem!important}[dir=ltr] .sm\:ltr\:top-40{top:10rem!important}[dir=ltr] .sm\:ltr\:right-40{right:10rem!important}[dir=ltr] .sm\:ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .sm\:ltr\:left-40{left:10rem!important}[dir=ltr] .sm\:ltr\:top-48{top:12rem!important}[dir=ltr] .sm\:ltr\:right-48{right:12rem!important}[dir=ltr] .sm\:ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .sm\:ltr\:left-48{left:12rem!important}[dir=ltr] .sm\:ltr\:top-56{top:14rem!important}[dir=ltr] .sm\:ltr\:right-56{right:14rem!important}[dir=ltr] .sm\:ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .sm\:ltr\:left-56{left:14rem!important}[dir=ltr] .sm\:ltr\:top-60{top:15rem!important}[dir=ltr] .sm\:ltr\:right-60{right:15rem!important}[dir=ltr] .sm\:ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .sm\:ltr\:left-60{left:15rem!important}[dir=ltr] .sm\:ltr\:top-64{top:16rem!important}[dir=ltr] .sm\:ltr\:right-64{right:16rem!important}[dir=ltr] .sm\:ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .sm\:ltr\:left-64{left:16rem!important}[dir=ltr] .sm\:ltr\:top-72{top:18rem!important}[dir=ltr] .sm\:ltr\:right-72{right:18rem!important}[dir=ltr] .sm\:ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .sm\:ltr\:left-72{left:18rem!important}[dir=ltr] .sm\:ltr\:top-80{top:20rem!important}[dir=ltr] .sm\:ltr\:right-80{right:20rem!important}[dir=ltr] .sm\:ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .sm\:ltr\:left-80{left:20rem!important}[dir=ltr] .sm\:ltr\:top-96{top:24rem!important}[dir=ltr] .sm\:ltr\:right-96{right:24rem!important}[dir=ltr] .sm\:ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .sm\:ltr\:left-96{left:24rem!important}[dir=ltr] .sm\:ltr\:top-auto{top:auto!important}[dir=ltr] .sm\:ltr\:right-auto{right:auto!important}[dir=ltr] .sm\:ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .sm\:ltr\:left-auto{left:auto!important}[dir=ltr] .sm\:ltr\:top-px{top:1px!important}[dir=ltr] .sm\:ltr\:right-px{right:1px!important}[dir=ltr] .sm\:ltr\:bottom-px{bottom:1px!important}[dir=ltr] .sm\:ltr\:left-px{left:1px!important}[dir=ltr] .sm\:ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .sm\:ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .sm\:ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .sm\:ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .sm\:ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .sm\:ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .sm\:ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .sm\:ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .sm\:ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .sm\:ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .sm\:ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .sm\:ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .sm\:ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .sm\:ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .sm\:ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .sm\:ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .sm\:ltr\:top-1\/2{top:50%!important}[dir=ltr] .sm\:ltr\:right-1\/2{right:50%!important}[dir=ltr] .sm\:ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .sm\:ltr\:left-1\/2{left:50%!important}[dir=ltr] .sm\:ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .sm\:ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .sm\:ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .sm\:ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .sm\:ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .sm\:ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .sm\:ltr\:top-1\/4{top:25%!important}[dir=ltr] .sm\:ltr\:right-1\/4{right:25%!important}[dir=ltr] .sm\:ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .sm\:ltr\:left-1\/4{left:25%!important}[dir=ltr] .sm\:ltr\:top-2\/4{top:50%!important}[dir=ltr] .sm\:ltr\:right-2\/4{right:50%!important}[dir=ltr] .sm\:ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .sm\:ltr\:left-2\/4{left:50%!important}[dir=ltr] .sm\:ltr\:top-3\/4{top:75%!important}[dir=ltr] .sm\:ltr\:right-3\/4{right:75%!important}[dir=ltr] .sm\:ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .sm\:ltr\:left-3\/4{left:75%!important}[dir=ltr] .sm\:ltr\:top-1\/5{top:20%!important}[dir=ltr] .sm\:ltr\:right-1\/5{right:20%!important}[dir=ltr] .sm\:ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .sm\:ltr\:left-1\/5{left:20%!important}[dir=ltr] .sm\:ltr\:top-2\/5{top:40%!important}[dir=ltr] .sm\:ltr\:right-2\/5{right:40%!important}[dir=ltr] .sm\:ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .sm\:ltr\:left-2\/5{left:40%!important}[dir=ltr] .sm\:ltr\:top-3\/5{top:60%!important}[dir=ltr] .sm\:ltr\:right-3\/5{right:60%!important}[dir=ltr] .sm\:ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .sm\:ltr\:left-3\/5{left:60%!important}[dir=ltr] .sm\:ltr\:top-4\/5{top:80%!important}[dir=ltr] .sm\:ltr\:right-4\/5{right:80%!important}[dir=ltr] .sm\:ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .sm\:ltr\:left-4\/5{left:80%!important}[dir=ltr] .sm\:ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .sm\:ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .sm\:ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .sm\:ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .sm\:ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .sm\:ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .sm\:ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .sm\:ltr\:top-3\/6{top:50%!important}[dir=ltr] .sm\:ltr\:right-3\/6{right:50%!important}[dir=ltr] .sm\:ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .sm\:ltr\:left-3\/6{left:50%!important}[dir=ltr] .sm\:ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .sm\:ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .sm\:ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .sm\:ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .sm\:ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .sm\:ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .sm\:ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .sm\:ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .sm\:ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .sm\:ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .sm\:ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .sm\:ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .sm\:ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .sm\:ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .sm\:ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .sm\:ltr\:top-3\/12{top:25%!important}[dir=ltr] .sm\:ltr\:right-3\/12{right:25%!important}[dir=ltr] .sm\:ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .sm\:ltr\:left-3\/12{left:25%!important}[dir=ltr] .sm\:ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .sm\:ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .sm\:ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .sm\:ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .sm\:ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .sm\:ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .sm\:ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .sm\:ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .sm\:ltr\:top-6\/12{top:50%!important}[dir=ltr] .sm\:ltr\:right-6\/12{right:50%!important}[dir=ltr] .sm\:ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .sm\:ltr\:left-6\/12{left:50%!important}[dir=ltr] .sm\:ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .sm\:ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .sm\:ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .sm\:ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .sm\:ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .sm\:ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .sm\:ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .sm\:ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .sm\:ltr\:top-9\/12{top:75%!important}[dir=ltr] .sm\:ltr\:right-9\/12{right:75%!important}[dir=ltr] .sm\:ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .sm\:ltr\:left-9\/12{left:75%!important}[dir=ltr] .sm\:ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .sm\:ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .sm\:ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .sm\:ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .sm\:ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .sm\:ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .sm\:ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .sm\:ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .sm\:ltr\:top-full{top:100%!important}[dir=ltr] .sm\:ltr\:right-full{right:100%!important}[dir=ltr] .sm\:ltr\:bottom-full{bottom:100%!important}[dir=ltr] .sm\:ltr\:left-full{left:100%!important}[dir=rtl] .sm\:rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .sm\:rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .sm\:rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .sm\:rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .sm\:rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .sm\:rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .sm\:rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .sm\:rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .sm\:rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .sm\:rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .sm\:rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .sm\:rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .sm\:rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .sm\:rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .sm\:rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .sm\:rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .sm\:rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .sm\:rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .sm\:rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .sm\:rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .sm\:rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .sm\:rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .sm\:rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .sm\:rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .sm\:rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .sm\:rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .sm\:rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .sm\:rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .sm\:rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .sm\:rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .sm\:rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .sm\:rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .sm\:rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .sm\:rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .sm\:rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .sm\:rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .sm\:rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .sm\:rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .sm\:rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .sm\:rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .sm\:rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .sm\:rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .sm\:rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .sm\:rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .sm\:rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .sm\:rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .sm\:rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .sm\:rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .sm\:rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .sm\:rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .sm\:rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .sm\:rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .sm\:rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .sm\:rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .sm\:rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .sm\:rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .sm\:rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .sm\:rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .sm\:rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .sm\:rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .sm\:rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .sm\:rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .sm\:rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .sm\:rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .sm\:rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .sm\:rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .sm\:rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .sm\:rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .sm\:rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .sm\:rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .sm\:rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .sm\:rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .sm\:rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .sm\:rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .sm\:rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .sm\:rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .sm\:rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .sm\:rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .sm\:rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .sm\:rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .sm\:rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .sm\:rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .sm\:rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .sm\:rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .sm\:rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .sm\:rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .sm\:rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .sm\:rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .sm\:rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .sm\:rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .sm\:rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .sm\:rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .sm\:rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .sm\:rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .sm\:rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .sm\:rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .sm\:rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .sm\:rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .sm\:rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .sm\:rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .sm\:rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .sm\:rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .sm\:rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .sm\:rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .sm\:rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .sm\:rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .sm\:rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .sm\:rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .sm\:rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .sm\:rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .sm\:rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .sm\:rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .sm\:rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .sm\:rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .sm\:rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .sm\:rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .sm\:rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .sm\:rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .sm\:rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .sm\:rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .sm\:rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .sm\:rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .sm\:rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .sm\:rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .sm\:rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .sm\:rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .sm\:rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .sm\:rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .sm\:rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .sm\:rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .sm\:rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .sm\:rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .sm\:rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .sm\:rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .sm\:rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .sm\:rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .sm\:rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .sm\:rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .sm\:rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .sm\:rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .sm\:rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .sm\:rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .sm\:rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .sm\:rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .sm\:rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .sm\:rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .sm\:rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .sm\:rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .sm\:rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .sm\:rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .sm\:rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .sm\:rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .sm\:rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .sm\:rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .sm\:rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .sm\:rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .sm\:rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .sm\:rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .sm\:rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .sm\:rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .sm\:rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .sm\:rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .sm\:rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .sm\:rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .sm\:rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .sm\:rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .sm\:rtl\:top-0{top:0!important}[dir=rtl] .sm\:rtl\:right-0{right:0!important}[dir=rtl] .sm\:rtl\:bottom-0{bottom:0!important}[dir=rtl] .sm\:rtl\:left-0{left:0!important}[dir=rtl] .sm\:rtl\:top-1{top:.25rem!important}[dir=rtl] .sm\:rtl\:right-1{right:.25rem!important}[dir=rtl] .sm\:rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .sm\:rtl\:left-1{left:.25rem!important}[dir=rtl] .sm\:rtl\:top-2{top:.5rem!important}[dir=rtl] .sm\:rtl\:right-2{right:.5rem!important}[dir=rtl] .sm\:rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .sm\:rtl\:left-2{left:.5rem!important}[dir=rtl] .sm\:rtl\:top-3{top:.75rem!important}[dir=rtl] .sm\:rtl\:right-3{right:.75rem!important}[dir=rtl] .sm\:rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .sm\:rtl\:left-3{left:.75rem!important}[dir=rtl] .sm\:rtl\:top-4{top:1rem!important}[dir=rtl] .sm\:rtl\:right-4{right:1rem!important}[dir=rtl] .sm\:rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .sm\:rtl\:left-4{left:1rem!important}[dir=rtl] .sm\:rtl\:top-5{top:1.25rem!important}[dir=rtl] .sm\:rtl\:right-5{right:1.25rem!important}[dir=rtl] .sm\:rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .sm\:rtl\:left-5{left:1.25rem!important}[dir=rtl] .sm\:rtl\:top-6{top:1.5rem!important}[dir=rtl] .sm\:rtl\:right-6{right:1.5rem!important}[dir=rtl] .sm\:rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .sm\:rtl\:left-6{left:1.5rem!important}[dir=rtl] .sm\:rtl\:top-7{top:1.75rem!important}[dir=rtl] .sm\:rtl\:right-7{right:1.75rem!important}[dir=rtl] .sm\:rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .sm\:rtl\:left-7{left:1.75rem!important}[dir=rtl] .sm\:rtl\:top-8{top:2rem!important}[dir=rtl] .sm\:rtl\:right-8{right:2rem!important}[dir=rtl] .sm\:rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .sm\:rtl\:left-8{left:2rem!important}[dir=rtl] .sm\:rtl\:top-9{top:2.25rem!important}[dir=rtl] .sm\:rtl\:right-9{right:2.25rem!important}[dir=rtl] .sm\:rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .sm\:rtl\:left-9{left:2.25rem!important}[dir=rtl] .sm\:rtl\:top-10{top:2.5rem!important}[dir=rtl] .sm\:rtl\:right-10{right:2.5rem!important}[dir=rtl] .sm\:rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .sm\:rtl\:left-10{left:2.5rem!important}[dir=rtl] .sm\:rtl\:top-11{top:2.75rem!important}[dir=rtl] .sm\:rtl\:right-11{right:2.75rem!important}[dir=rtl] .sm\:rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .sm\:rtl\:left-11{left:2.75rem!important}[dir=rtl] .sm\:rtl\:top-12{top:3rem!important}[dir=rtl] .sm\:rtl\:right-12{right:3rem!important}[dir=rtl] .sm\:rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .sm\:rtl\:left-12{left:3rem!important}[dir=rtl] .sm\:rtl\:top-13{top:3.25rem!important}[dir=rtl] .sm\:rtl\:right-13{right:3.25rem!important}[dir=rtl] .sm\:rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .sm\:rtl\:left-13{left:3.25rem!important}[dir=rtl] .sm\:rtl\:top-14{top:3.5rem!important}[dir=rtl] .sm\:rtl\:right-14{right:3.5rem!important}[dir=rtl] .sm\:rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .sm\:rtl\:left-14{left:3.5rem!important}[dir=rtl] .sm\:rtl\:top-15{top:3.75rem!important}[dir=rtl] .sm\:rtl\:right-15{right:3.75rem!important}[dir=rtl] .sm\:rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .sm\:rtl\:left-15{left:3.75rem!important}[dir=rtl] .sm\:rtl\:top-16{top:4rem!important}[dir=rtl] .sm\:rtl\:right-16{right:4rem!important}[dir=rtl] .sm\:rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .sm\:rtl\:left-16{left:4rem!important}[dir=rtl] .sm\:rtl\:top-20{top:5rem!important}[dir=rtl] .sm\:rtl\:right-20{right:5rem!important}[dir=rtl] .sm\:rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .sm\:rtl\:left-20{left:5rem!important}[dir=rtl] .sm\:rtl\:top-24{top:6rem!important}[dir=rtl] .sm\:rtl\:right-24{right:6rem!important}[dir=rtl] .sm\:rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .sm\:rtl\:left-24{left:6rem!important}[dir=rtl] .sm\:rtl\:top-28{top:7rem!important}[dir=rtl] .sm\:rtl\:right-28{right:7rem!important}[dir=rtl] .sm\:rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .sm\:rtl\:left-28{left:7rem!important}[dir=rtl] .sm\:rtl\:top-32{top:8rem!important}[dir=rtl] .sm\:rtl\:right-32{right:8rem!important}[dir=rtl] .sm\:rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .sm\:rtl\:left-32{left:8rem!important}[dir=rtl] .sm\:rtl\:top-36{top:9rem!important}[dir=rtl] .sm\:rtl\:right-36{right:9rem!important}[dir=rtl] .sm\:rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .sm\:rtl\:left-36{left:9rem!important}[dir=rtl] .sm\:rtl\:top-40{top:10rem!important}[dir=rtl] .sm\:rtl\:right-40{right:10rem!important}[dir=rtl] .sm\:rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .sm\:rtl\:left-40{left:10rem!important}[dir=rtl] .sm\:rtl\:top-48{top:12rem!important}[dir=rtl] .sm\:rtl\:right-48{right:12rem!important}[dir=rtl] .sm\:rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .sm\:rtl\:left-48{left:12rem!important}[dir=rtl] .sm\:rtl\:top-56{top:14rem!important}[dir=rtl] .sm\:rtl\:right-56{right:14rem!important}[dir=rtl] .sm\:rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .sm\:rtl\:left-56{left:14rem!important}[dir=rtl] .sm\:rtl\:top-60{top:15rem!important}[dir=rtl] .sm\:rtl\:right-60{right:15rem!important}[dir=rtl] .sm\:rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .sm\:rtl\:left-60{left:15rem!important}[dir=rtl] .sm\:rtl\:top-64{top:16rem!important}[dir=rtl] .sm\:rtl\:right-64{right:16rem!important}[dir=rtl] .sm\:rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .sm\:rtl\:left-64{left:16rem!important}[dir=rtl] .sm\:rtl\:top-72{top:18rem!important}[dir=rtl] .sm\:rtl\:right-72{right:18rem!important}[dir=rtl] .sm\:rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .sm\:rtl\:left-72{left:18rem!important}[dir=rtl] .sm\:rtl\:top-80{top:20rem!important}[dir=rtl] .sm\:rtl\:right-80{right:20rem!important}[dir=rtl] .sm\:rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .sm\:rtl\:left-80{left:20rem!important}[dir=rtl] .sm\:rtl\:top-96{top:24rem!important}[dir=rtl] .sm\:rtl\:right-96{right:24rem!important}[dir=rtl] .sm\:rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .sm\:rtl\:left-96{left:24rem!important}[dir=rtl] .sm\:rtl\:top-auto{top:auto!important}[dir=rtl] .sm\:rtl\:right-auto{right:auto!important}[dir=rtl] .sm\:rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .sm\:rtl\:left-auto{left:auto!important}[dir=rtl] .sm\:rtl\:top-px{top:1px!important}[dir=rtl] .sm\:rtl\:right-px{right:1px!important}[dir=rtl] .sm\:rtl\:bottom-px{bottom:1px!important}[dir=rtl] .sm\:rtl\:left-px{left:1px!important}[dir=rtl] .sm\:rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .sm\:rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .sm\:rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .sm\:rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .sm\:rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .sm\:rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .sm\:rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .sm\:rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .sm\:rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .sm\:rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .sm\:rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .sm\:rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .sm\:rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .sm\:rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .sm\:rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .sm\:rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .sm\:rtl\:top-1\/2{top:50%!important}[dir=rtl] .sm\:rtl\:right-1\/2{right:50%!important}[dir=rtl] .sm\:rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .sm\:rtl\:left-1\/2{left:50%!important}[dir=rtl] .sm\:rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .sm\:rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .sm\:rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .sm\:rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .sm\:rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .sm\:rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .sm\:rtl\:top-1\/4{top:25%!important}[dir=rtl] .sm\:rtl\:right-1\/4{right:25%!important}[dir=rtl] .sm\:rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .sm\:rtl\:left-1\/4{left:25%!important}[dir=rtl] .sm\:rtl\:top-2\/4{top:50%!important}[dir=rtl] .sm\:rtl\:right-2\/4{right:50%!important}[dir=rtl] .sm\:rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .sm\:rtl\:left-2\/4{left:50%!important}[dir=rtl] .sm\:rtl\:top-3\/4{top:75%!important}[dir=rtl] .sm\:rtl\:right-3\/4{right:75%!important}[dir=rtl] .sm\:rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .sm\:rtl\:left-3\/4{left:75%!important}[dir=rtl] .sm\:rtl\:top-1\/5{top:20%!important}[dir=rtl] .sm\:rtl\:right-1\/5{right:20%!important}[dir=rtl] .sm\:rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .sm\:rtl\:left-1\/5{left:20%!important}[dir=rtl] .sm\:rtl\:top-2\/5{top:40%!important}[dir=rtl] .sm\:rtl\:right-2\/5{right:40%!important}[dir=rtl] .sm\:rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .sm\:rtl\:left-2\/5{left:40%!important}[dir=rtl] .sm\:rtl\:top-3\/5{top:60%!important}[dir=rtl] .sm\:rtl\:right-3\/5{right:60%!important}[dir=rtl] .sm\:rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .sm\:rtl\:left-3\/5{left:60%!important}[dir=rtl] .sm\:rtl\:top-4\/5{top:80%!important}[dir=rtl] .sm\:rtl\:right-4\/5{right:80%!important}[dir=rtl] .sm\:rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .sm\:rtl\:left-4\/5{left:80%!important}[dir=rtl] .sm\:rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .sm\:rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .sm\:rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .sm\:rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .sm\:rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .sm\:rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .sm\:rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .sm\:rtl\:top-3\/6{top:50%!important}[dir=rtl] .sm\:rtl\:right-3\/6{right:50%!important}[dir=rtl] .sm\:rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .sm\:rtl\:left-3\/6{left:50%!important}[dir=rtl] .sm\:rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .sm\:rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .sm\:rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .sm\:rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .sm\:rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .sm\:rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .sm\:rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .sm\:rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .sm\:rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .sm\:rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .sm\:rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .sm\:rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .sm\:rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .sm\:rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .sm\:rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .sm\:rtl\:top-3\/12{top:25%!important}[dir=rtl] .sm\:rtl\:right-3\/12{right:25%!important}[dir=rtl] .sm\:rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .sm\:rtl\:left-3\/12{left:25%!important}[dir=rtl] .sm\:rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .sm\:rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .sm\:rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .sm\:rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .sm\:rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .sm\:rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .sm\:rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .sm\:rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .sm\:rtl\:top-6\/12{top:50%!important}[dir=rtl] .sm\:rtl\:right-6\/12{right:50%!important}[dir=rtl] .sm\:rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .sm\:rtl\:left-6\/12{left:50%!important}[dir=rtl] .sm\:rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .sm\:rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .sm\:rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .sm\:rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .sm\:rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .sm\:rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .sm\:rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .sm\:rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .sm\:rtl\:top-9\/12{top:75%!important}[dir=rtl] .sm\:rtl\:right-9\/12{right:75%!important}[dir=rtl] .sm\:rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .sm\:rtl\:left-9\/12{left:75%!important}[dir=rtl] .sm\:rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .sm\:rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .sm\:rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .sm\:rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .sm\:rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .sm\:rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .sm\:rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .sm\:rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .sm\:rtl\:top-full{top:100%!important}[dir=rtl] .sm\:rtl\:right-full{right:100%!important}[dir=rtl] .sm\:rtl\:bottom-full{bottom:100%!important}[dir=rtl] .sm\:rtl\:left-full{left:100%!important}.sm\:resize-none{resize:none!important}.sm\:resize-y{resize:vertical!important}.sm\:resize-x{resize:horizontal!important}.sm\:resize{resize:both!important}.sm\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.sm\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.sm\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.sm\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.sm\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.sm\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.sm\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.sm\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.sm\:shadow-none{box-shadow:none!important}.group:focus .sm\:group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .sm\:group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .sm\:group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .sm\:group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .sm\:group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .sm\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .sm\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .sm\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .sm\:group-focus\:shadow-none{box-shadow:none!important}.sm\:hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.sm\:hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.sm\:hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.sm\:hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.sm\:hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.sm\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.sm\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.sm\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.sm\:hover\:shadow-none:hover{box-shadow:none!important}.sm\:focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.sm\:focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.sm\:focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.sm\:focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.sm\:focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.sm\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.sm\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.sm\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.sm\:focus\:shadow-none:focus{box-shadow:none!important}.sm\:fill-current{fill:currentColor!important}.sm\:stroke-current{stroke:currentColor!important}.sm\:stroke-0{stroke-width:0!important}.sm\:stroke-1{stroke-width:1!important}.sm\:stroke-2{stroke-width:2!important}.sm\:table-auto{table-layout:auto!important}.sm\:table-fixed{table-layout:fixed!important}.sm\:text-left{text-align:left!important}.sm\:text-center{text-align:center!important}.sm\:text-right{text-align:right!important}.sm\:text-justify{text-align:justify!important}.sm\:text-transparent{color:transparent!important}.sm\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.sm\:text-white-70{color:hsla(0,0%,100%,.7)!important}.sm\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.sm\:text-blackest-70{color:rgba(0,0,0,.7)!important}.sm\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.sm\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.sm\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.sm\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.sm\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.sm\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.sm\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.sm\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.sm\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.sm\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.sm\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.sm\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.sm\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.sm\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.sm\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.sm\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.sm\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.sm\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.sm\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.sm\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.sm\:hover\:text-transparent:hover{color:transparent!important}.sm\:hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.sm\:hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.sm\:hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.sm\:hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.sm\:hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.sm\:hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.sm\:hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.sm\:hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.sm\:hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.sm\:hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.sm\:hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.sm\:hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.sm\:hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.sm\:hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.sm\:hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.sm\:hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.sm\:hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.sm\:hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.sm\:hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.sm\:hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.sm\:hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.sm\:hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.sm\:hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.sm\:hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.sm\:focus\:text-transparent:focus{color:transparent!important}.sm\:focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.sm\:focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.sm\:focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.sm\:focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.sm\:focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.sm\:focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.sm\:focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.sm\:focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.sm\:focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.sm\:focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.sm\:focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.sm\:focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.sm\:focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.sm\:focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.sm\:focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.sm\:focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.sm\:focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.sm\:focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.sm\:focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.sm\:focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.sm\:focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.sm\:focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.sm\:focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.sm\:focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-transparent{color:transparent!important}.group:hover .sm\:group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .sm\:group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .sm\:group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .sm\:group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .sm\:group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.sm\:text-opacity-0{--text-opacity:0!important}.sm\:text-opacity-25{--text-opacity:0.25!important}.sm\:text-opacity-50{--text-opacity:0.5!important}.sm\:text-opacity-75{--text-opacity:0.75!important}.sm\:text-opacity-100{--text-opacity:1!important}.sm\:hover\:text-opacity-0:hover{--text-opacity:0!important}.sm\:hover\:text-opacity-25:hover{--text-opacity:0.25!important}.sm\:hover\:text-opacity-50:hover{--text-opacity:0.5!important}.sm\:hover\:text-opacity-75:hover{--text-opacity:0.75!important}.sm\:hover\:text-opacity-100:hover{--text-opacity:1!important}.sm\:focus\:text-opacity-0:focus{--text-opacity:0!important}.sm\:focus\:text-opacity-25:focus{--text-opacity:0.25!important}.sm\:focus\:text-opacity-50:focus{--text-opacity:0.5!important}.sm\:focus\:text-opacity-75:focus{--text-opacity:0.75!important}.sm\:focus\:text-opacity-100:focus{--text-opacity:1!important}.sm\:italic{font-style:italic!important}.sm\:not-italic{font-style:normal!important}.sm\:uppercase{text-transform:uppercase!important}.sm\:lowercase{text-transform:lowercase!important}.sm\:capitalize{text-transform:capitalize!important}.sm\:normal-case{text-transform:none!important}.sm\:underline{text-decoration:underline!important}.sm\:line-through{text-decoration:line-through!important}.sm\:no-underline{text-decoration:none!important}.group:hover .sm\:group-hover\:underline{text-decoration:underline!important}.group:hover .sm\:group-hover\:line-through{text-decoration:line-through!important}.group:hover .sm\:group-hover\:no-underline{text-decoration:none!important}.group:focus .sm\:group-focus\:underline{text-decoration:underline!important}.group:focus .sm\:group-focus\:line-through{text-decoration:line-through!important}.group:focus .sm\:group-focus\:no-underline{text-decoration:none!important}.sm\:hover\:underline:hover{text-decoration:underline!important}.sm\:hover\:line-through:hover{text-decoration:line-through!important}.sm\:hover\:no-underline:hover{text-decoration:none!important}.sm\:focus\:underline:focus{text-decoration:underline!important}.sm\:focus\:line-through:focus{text-decoration:line-through!important}.sm\:focus\:no-underline:focus{text-decoration:none!important}.sm\:antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.sm\:subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.sm\:diagonal-fractions,.sm\:lining-nums,.sm\:oldstyle-nums,.sm\:ordinal,.sm\:proportional-nums,.sm\:slashed-zero,.sm\:stacked-fractions,.sm\:tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.sm\:normal-nums{font-variant-numeric:normal!important}.sm\:ordinal{--font-variant-numeric-ordinal:ordinal!important}.sm\:slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.sm\:lining-nums{--font-variant-numeric-figure:lining-nums!important}.sm\:oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.sm\:proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.sm\:tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.sm\:diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.sm\:stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.sm\:tracking-tighter{letter-spacing:-.05em!important}.sm\:tracking-tight{letter-spacing:-.025em!important}.sm\:tracking-normal{letter-spacing:0!important}.sm\:tracking-wide{letter-spacing:.025em!important}.sm\:tracking-wider{letter-spacing:.05em!important}.sm\:tracking-widest{letter-spacing:.1em!important}.sm\:select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.sm\:select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.sm\:select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.sm\:select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.sm\:align-baseline{vertical-align:baseline!important}.sm\:align-top{vertical-align:top!important}.sm\:align-middle{vertical-align:middle!important}.sm\:align-bottom{vertical-align:bottom!important}.sm\:align-text-top{vertical-align:text-top!important}.sm\:align-text-bottom{vertical-align:text-bottom!important}.sm\:visible{visibility:visible!important}.sm\:invisible{visibility:hidden!important}.sm\:whitespace-normal{white-space:normal!important}.sm\:whitespace-no-wrap{white-space:nowrap!important}.sm\:whitespace-pre{white-space:pre!important}.sm\:whitespace-pre-line{white-space:pre-line!important}.sm\:whitespace-pre-wrap{white-space:pre-wrap!important}.sm\:break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.sm\:break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.sm\:break-all{word-break:break-all!important}.sm\:truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.sm\:w-0{width:0!important}.sm\:w-1{width:.25rem!important}.sm\:w-2{width:.5rem!important}.sm\:w-3{width:.75rem!important}.sm\:w-4{width:1rem!important}.sm\:w-5{width:1.25rem!important}.sm\:w-6{width:1.5rem!important}.sm\:w-7{width:1.75rem!important}.sm\:w-8{width:2rem!important}.sm\:w-9{width:2.25rem!important}.sm\:w-10{width:2.5rem!important}.sm\:w-11{width:2.75rem!important}.sm\:w-12{width:3rem!important}.sm\:w-13{width:3.25rem!important}.sm\:w-14{width:3.5rem!important}.sm\:w-15{width:3.75rem!important}.sm\:w-16{width:4rem!important}.sm\:w-20{width:5rem!important}.sm\:w-24{width:6rem!important}.sm\:w-28{width:7rem!important}.sm\:w-32{width:8rem!important}.sm\:w-36{width:9rem!important}.sm\:w-40{width:10rem!important}.sm\:w-48{width:12rem!important}.sm\:w-56{width:14rem!important}.sm\:w-60{width:15rem!important}.sm\:w-64{width:16rem!important}.sm\:w-72{width:18rem!important}.sm\:w-80{width:20rem!important}.sm\:w-96{width:24rem!important}.sm\:w-auto{width:auto!important}.sm\:w-px{width:1px!important}.sm\:w-0\.5{width:.125rem!important}.sm\:w-1\.5{width:.375rem!important}.sm\:w-2\.5{width:.625rem!important}.sm\:w-3\.5{width:.875rem!important}.sm\:w-1\/2{width:50%!important}.sm\:w-1\/3{width:33.333333%!important}.sm\:w-2\/3{width:66.666667%!important}.sm\:w-1\/4{width:25%!important}.sm\:w-2\/4{width:50%!important}.sm\:w-3\/4{width:75%!important}.sm\:w-1\/5{width:20%!important}.sm\:w-2\/5{width:40%!important}.sm\:w-3\/5{width:60%!important}.sm\:w-4\/5{width:80%!important}.sm\:w-1\/6{width:16.666667%!important}.sm\:w-2\/6{width:33.333333%!important}.sm\:w-3\/6{width:50%!important}.sm\:w-4\/6{width:66.666667%!important}.sm\:w-5\/6{width:83.333333%!important}.sm\:w-1\/12{width:8.333333%!important}.sm\:w-2\/12{width:16.666667%!important}.sm\:w-3\/12{width:25%!important}.sm\:w-4\/12{width:33.333333%!important}.sm\:w-5\/12{width:41.666667%!important}.sm\:w-6\/12{width:50%!important}.sm\:w-7\/12{width:58.333333%!important}.sm\:w-8\/12{width:66.666667%!important}.sm\:w-9\/12{width:75%!important}.sm\:w-10\/12{width:83.333333%!important}.sm\:w-11\/12{width:91.666667%!important}.sm\:w-full{width:100%!important}.sm\:w-screen{width:100vw!important}.sm\:z-0{z-index:0!important}.sm\:z-10{z-index:10!important}.sm\:z-20{z-index:20!important}.sm\:z-30{z-index:30!important}.sm\:z-40{z-index:40!important}.sm\:z-50{z-index:50!important}.sm\:z-999{z-index:999!important}.sm\:z-auto{z-index:auto!important}.sm\:z-max{z-index:2147483647!important}.sm\:focus-within\:z-0:focus-within{z-index:0!important}.sm\:focus-within\:z-10:focus-within{z-index:10!important}.sm\:focus-within\:z-20:focus-within{z-index:20!important}.sm\:focus-within\:z-30:focus-within{z-index:30!important}.sm\:focus-within\:z-40:focus-within{z-index:40!important}.sm\:focus-within\:z-50:focus-within{z-index:50!important}.sm\:focus-within\:z-999:focus-within{z-index:999!important}.sm\:focus-within\:z-auto:focus-within{z-index:auto!important}.sm\:focus-within\:z-max:focus-within{z-index:2147483647!important}.sm\:focus\:z-0:focus{z-index:0!important}.sm\:focus\:z-10:focus{z-index:10!important}.sm\:focus\:z-20:focus{z-index:20!important}.sm\:focus\:z-30:focus{z-index:30!important}.sm\:focus\:z-40:focus{z-index:40!important}.sm\:focus\:z-50:focus{z-index:50!important}.sm\:focus\:z-999:focus{z-index:999!important}.sm\:focus\:z-auto:focus{z-index:auto!important}.sm\:focus\:z-max:focus{z-index:2147483647!important}.sm\:gap-0{grid-gap:0!important;gap:0!important}.sm\:gap-1{grid-gap:.25rem!important;gap:.25rem!important}.sm\:gap-2{grid-gap:.5rem!important;gap:.5rem!important}.sm\:gap-3{grid-gap:.75rem!important;gap:.75rem!important}.sm\:gap-4{grid-gap:1rem!important;gap:1rem!important}.sm\:gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.sm\:gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.sm\:gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.sm\:gap-8{grid-gap:2rem!important;gap:2rem!important}.sm\:gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.sm\:gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.sm\:gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.sm\:gap-12{grid-gap:3rem!important;gap:3rem!important}.sm\:gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.sm\:gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.sm\:gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.sm\:gap-16{grid-gap:4rem!important;gap:4rem!important}.sm\:gap-20{grid-gap:5rem!important;gap:5rem!important}.sm\:gap-24{grid-gap:6rem!important;gap:6rem!important}.sm\:gap-28{grid-gap:7rem!important;gap:7rem!important}.sm\:gap-32{grid-gap:8rem!important;gap:8rem!important}.sm\:gap-36{grid-gap:9rem!important;gap:9rem!important}.sm\:gap-40{grid-gap:10rem!important;gap:10rem!important}.sm\:gap-48{grid-gap:12rem!important;gap:12rem!important}.sm\:gap-56{grid-gap:14rem!important;gap:14rem!important}.sm\:gap-60{grid-gap:15rem!important;gap:15rem!important}.sm\:gap-64{grid-gap:16rem!important;gap:16rem!important}.sm\:gap-72{grid-gap:18rem!important;gap:18rem!important}.sm\:gap-80{grid-gap:20rem!important;gap:20rem!important}.sm\:gap-96{grid-gap:24rem!important;gap:24rem!important}.sm\:gap-px{grid-gap:1px!important;gap:1px!important}.sm\:gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.sm\:gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.sm\:gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.sm\:gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.sm\:gap-1\/2{grid-gap:50%!important;gap:50%!important}.sm\:gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.sm\:gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.sm\:gap-1\/4{grid-gap:25%!important;gap:25%!important}.sm\:gap-2\/4{grid-gap:50%!important;gap:50%!important}.sm\:gap-3\/4{grid-gap:75%!important;gap:75%!important}.sm\:gap-1\/5{grid-gap:20%!important;gap:20%!important}.sm\:gap-2\/5{grid-gap:40%!important;gap:40%!important}.sm\:gap-3\/5{grid-gap:60%!important;gap:60%!important}.sm\:gap-4\/5{grid-gap:80%!important;gap:80%!important}.sm\:gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.sm\:gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.sm\:gap-3\/6{grid-gap:50%!important;gap:50%!important}.sm\:gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.sm\:gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.sm\:gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.sm\:gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.sm\:gap-3\/12{grid-gap:25%!important;gap:25%!important}.sm\:gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.sm\:gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.sm\:gap-6\/12{grid-gap:50%!important;gap:50%!important}.sm\:gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.sm\:gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.sm\:gap-9\/12{grid-gap:75%!important;gap:75%!important}.sm\:gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.sm\:gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.sm\:gap-full{grid-gap:100%!important;gap:100%!important}.sm\:gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.sm\:gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.sm\:gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.sm\:gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.sm\:gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.sm\:gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.sm\:gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.sm\:gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.sm\:gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.sm\:gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.sm\:gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.sm\:gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.sm\:gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.sm\:gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.sm\:gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.sm\:gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.sm\:gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.sm\:gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.sm\:gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.sm\:gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.sm\:gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.sm\:gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.sm\:gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.sm\:gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.sm\:gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.sm\:gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.sm\:gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.sm\:gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.sm\:gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.sm\:gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.sm\:gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.sm\:gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.sm\:gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.sm\:gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.sm\:gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.sm\:gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.sm\:gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.sm\:gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.sm\:gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.sm\:gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.sm\:gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.sm\:gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.sm\:gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.sm\:gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.sm\:gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.sm\:gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.sm\:gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.sm\:gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.sm\:gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.sm\:gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.sm\:gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.sm\:gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.sm\:gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.sm\:gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.sm\:gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.sm\:gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.sm\:gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.sm\:gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.sm\:gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.sm\:gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.sm\:gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.sm\:gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.sm\:gap-y-0{grid-row-gap:0!important;row-gap:0!important}.sm\:gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.sm\:gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.sm\:gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.sm\:gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.sm\:gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.sm\:gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.sm\:gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.sm\:gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.sm\:gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.sm\:gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.sm\:gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.sm\:gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.sm\:gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.sm\:gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.sm\:gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.sm\:gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.sm\:gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.sm\:gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.sm\:gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.sm\:gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.sm\:gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.sm\:gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.sm\:gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.sm\:gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.sm\:gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.sm\:gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.sm\:gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.sm\:gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.sm\:gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.sm\:gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.sm\:gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.sm\:gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.sm\:gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.sm\:gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.sm\:gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.sm\:gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.sm\:gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.sm\:gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.sm\:gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.sm\:gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.sm\:gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.sm\:gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.sm\:gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.sm\:gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.sm\:gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.sm\:gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.sm\:gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.sm\:gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.sm\:gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.sm\:gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.sm\:gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.sm\:gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.sm\:gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.sm\:gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.sm\:gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.sm\:gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.sm\:gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.sm\:gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.sm\:gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.sm\:gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.sm\:gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.sm\:grid-flow-row{grid-auto-flow:row!important}.sm\:grid-flow-col{grid-auto-flow:column!important}.sm\:grid-flow-row-dense{grid-auto-flow:row dense!important}.sm\:grid-flow-col-dense{grid-auto-flow:column dense!important}.sm\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.sm\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.sm\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.sm\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.sm\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.sm\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.sm\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.sm\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.sm\:grid-cols-none{grid-template-columns:none!important}.sm\:auto-cols-auto{grid-auto-columns:auto!important}.sm\:auto-cols-min{grid-auto-columns:min-content!important}.sm\:auto-cols-max{grid-auto-columns:max-content!important}.sm\:auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.sm\:col-auto{grid-column:auto!important}.sm\:col-span-1{grid-column:span 1/span 1!important}.sm\:col-span-2{grid-column:span 2/span 2!important}.sm\:col-span-3{grid-column:span 3/span 3!important}.sm\:col-span-4{grid-column:span 4/span 4!important}.sm\:col-span-5{grid-column:span 5/span 5!important}.sm\:col-span-6{grid-column:span 6/span 6!important}.sm\:col-span-7{grid-column:span 7/span 7!important}.sm\:col-span-8{grid-column:span 8/span 8!important}.sm\:col-span-9{grid-column:span 9/span 9!important}.sm\:col-span-10{grid-column:span 10/span 10!important}.sm\:col-span-11{grid-column:span 11/span 11!important}.sm\:col-span-12{grid-column:span 12/span 12!important}.sm\:col-span-full{grid-column:1/-1!important}.sm\:col-start-1{grid-column-start:1!important}.sm\:col-start-2{grid-column-start:2!important}.sm\:col-start-3{grid-column-start:3!important}.sm\:col-start-4{grid-column-start:4!important}.sm\:col-start-5{grid-column-start:5!important}.sm\:col-start-6{grid-column-start:6!important}.sm\:col-start-7{grid-column-start:7!important}.sm\:col-start-8{grid-column-start:8!important}.sm\:col-start-9{grid-column-start:9!important}.sm\:col-start-10{grid-column-start:10!important}.sm\:col-start-11{grid-column-start:11!important}.sm\:col-start-12{grid-column-start:12!important}.sm\:col-start-13{grid-column-start:13!important}.sm\:col-start-auto{grid-column-start:auto!important}.sm\:col-end-1{grid-column-end:1!important}.sm\:col-end-2{grid-column-end:2!important}.sm\:col-end-3{grid-column-end:3!important}.sm\:col-end-4{grid-column-end:4!important}.sm\:col-end-5{grid-column-end:5!important}.sm\:col-end-6{grid-column-end:6!important}.sm\:col-end-7{grid-column-end:7!important}.sm\:col-end-8{grid-column-end:8!important}.sm\:col-end-9{grid-column-end:9!important}.sm\:col-end-10{grid-column-end:10!important}.sm\:col-end-11{grid-column-end:11!important}.sm\:col-end-12{grid-column-end:12!important}.sm\:col-end-13{grid-column-end:13!important}.sm\:col-end-auto{grid-column-end:auto!important}.sm\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.sm\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.sm\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.sm\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.sm\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.sm\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.sm\:grid-rows-none{grid-template-rows:none!important}.sm\:auto-rows-auto{grid-auto-rows:auto!important}.sm\:auto-rows-min{grid-auto-rows:min-content!important}.sm\:auto-rows-max{grid-auto-rows:max-content!important}.sm\:auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.sm\:row-auto{grid-row:auto!important}.sm\:row-span-1{grid-row:span 1/span 1!important}.sm\:row-span-2{grid-row:span 2/span 2!important}.sm\:row-span-3{grid-row:span 3/span 3!important}.sm\:row-span-4{grid-row:span 4/span 4!important}.sm\:row-span-5{grid-row:span 5/span 5!important}.sm\:row-span-6{grid-row:span 6/span 6!important}.sm\:row-span-full{grid-row:1/-1!important}.sm\:row-start-1{grid-row-start:1!important}.sm\:row-start-2{grid-row-start:2!important}.sm\:row-start-3{grid-row-start:3!important}.sm\:row-start-4{grid-row-start:4!important}.sm\:row-start-5{grid-row-start:5!important}.sm\:row-start-6{grid-row-start:6!important}.sm\:row-start-7{grid-row-start:7!important}.sm\:row-start-auto{grid-row-start:auto!important}.sm\:row-end-1{grid-row-end:1!important}.sm\:row-end-2{grid-row-end:2!important}.sm\:row-end-3{grid-row-end:3!important}.sm\:row-end-4{grid-row-end:4!important}.sm\:row-end-5{grid-row-end:5!important}.sm\:row-end-6{grid-row-end:6!important}.sm\:row-end-7{grid-row-end:7!important}.sm\:row-end-auto{grid-row-end:auto!important}.sm\:transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.sm\:transform-none{transform:none!important}.sm\:origin-center{transform-origin:center!important}.sm\:origin-top{transform-origin:top!important}.sm\:origin-top-right{transform-origin:top right!important}.sm\:origin-right{transform-origin:right!important}.sm\:origin-bottom-right{transform-origin:bottom right!important}.sm\:origin-bottom{transform-origin:bottom!important}.sm\:origin-bottom-left{transform-origin:bottom left!important}.sm\:origin-left{transform-origin:left!important}.sm\:origin-top-left{transform-origin:top left!important}.sm\:scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.sm\:scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.sm\:scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.sm\:scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.sm\:scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.sm\:scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.sm\:scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.sm\:scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.sm\:scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.sm\:scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.sm\:scale-x-0{--transform-scale-x:0!important}.sm\:scale-x-50{--transform-scale-x:.5!important}.sm\:scale-x-75{--transform-scale-x:.75!important}.sm\:scale-x-90{--transform-scale-x:.9!important}.sm\:scale-x-95{--transform-scale-x:.95!important}.sm\:scale-x-100{--transform-scale-x:1!important}.sm\:scale-x-105{--transform-scale-x:1.05!important}.sm\:scale-x-110{--transform-scale-x:1.1!important}.sm\:scale-x-125{--transform-scale-x:1.25!important}.sm\:scale-x-150{--transform-scale-x:1.5!important}.sm\:scale-y-0{--transform-scale-y:0!important}.sm\:scale-y-50{--transform-scale-y:.5!important}.sm\:scale-y-75{--transform-scale-y:.75!important}.sm\:scale-y-90{--transform-scale-y:.9!important}.sm\:scale-y-95{--transform-scale-y:.95!important}.sm\:scale-y-100{--transform-scale-y:1!important}.sm\:scale-y-105{--transform-scale-y:1.05!important}.sm\:scale-y-110{--transform-scale-y:1.1!important}.sm\:scale-y-125{--transform-scale-y:1.25!important}.sm\:scale-y-150{--transform-scale-y:1.5!important}.sm\:hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.sm\:hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.sm\:hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.sm\:hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.sm\:hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.sm\:hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.sm\:hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.sm\:hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.sm\:hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.sm\:hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.sm\:hover\:scale-x-0:hover{--transform-scale-x:0!important}.sm\:hover\:scale-x-50:hover{--transform-scale-x:.5!important}.sm\:hover\:scale-x-75:hover{--transform-scale-x:.75!important}.sm\:hover\:scale-x-90:hover{--transform-scale-x:.9!important}.sm\:hover\:scale-x-95:hover{--transform-scale-x:.95!important}.sm\:hover\:scale-x-100:hover{--transform-scale-x:1!important}.sm\:hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.sm\:hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.sm\:hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.sm\:hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.sm\:hover\:scale-y-0:hover{--transform-scale-y:0!important}.sm\:hover\:scale-y-50:hover{--transform-scale-y:.5!important}.sm\:hover\:scale-y-75:hover{--transform-scale-y:.75!important}.sm\:hover\:scale-y-90:hover{--transform-scale-y:.9!important}.sm\:hover\:scale-y-95:hover{--transform-scale-y:.95!important}.sm\:hover\:scale-y-100:hover{--transform-scale-y:1!important}.sm\:hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.sm\:hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.sm\:hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.sm\:hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.sm\:focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.sm\:focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.sm\:focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.sm\:focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.sm\:focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.sm\:focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.sm\:focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.sm\:focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.sm\:focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.sm\:focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.sm\:focus\:scale-x-0:focus{--transform-scale-x:0!important}.sm\:focus\:scale-x-50:focus{--transform-scale-x:.5!important}.sm\:focus\:scale-x-75:focus{--transform-scale-x:.75!important}.sm\:focus\:scale-x-90:focus{--transform-scale-x:.9!important}.sm\:focus\:scale-x-95:focus{--transform-scale-x:.95!important}.sm\:focus\:scale-x-100:focus{--transform-scale-x:1!important}.sm\:focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.sm\:focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.sm\:focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.sm\:focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.sm\:focus\:scale-y-0:focus{--transform-scale-y:0!important}.sm\:focus\:scale-y-50:focus{--transform-scale-y:.5!important}.sm\:focus\:scale-y-75:focus{--transform-scale-y:.75!important}.sm\:focus\:scale-y-90:focus{--transform-scale-y:.9!important}.sm\:focus\:scale-y-95:focus{--transform-scale-y:.95!important}.sm\:focus\:scale-y-100:focus{--transform-scale-y:1!important}.sm\:focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.sm\:focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.sm\:focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.sm\:focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.sm\:rotate-0{--transform-rotate:0!important}.sm\:rotate-1{--transform-rotate:1deg!important}.sm\:rotate-2{--transform-rotate:2deg!important}.sm\:rotate-3{--transform-rotate:3deg!important}.sm\:rotate-6{--transform-rotate:6deg!important}.sm\:rotate-12{--transform-rotate:12deg!important}.sm\:rotate-45{--transform-rotate:45deg!important}.sm\:rotate-90{--transform-rotate:90deg!important}.sm\:rotate-180{--transform-rotate:180deg!important}.sm\:-rotate-180{--transform-rotate:-180deg!important}.sm\:-rotate-90{--transform-rotate:-90deg!important}.sm\:-rotate-45{--transform-rotate:-45deg!important}.sm\:-rotate-12{--transform-rotate:-12deg!important}.sm\:-rotate-6{--transform-rotate:-6deg!important}.sm\:-rotate-3{--transform-rotate:-3deg!important}.sm\:-rotate-2{--transform-rotate:-2deg!important}.sm\:-rotate-1{--transform-rotate:-1deg!important}.sm\:hover\:rotate-0:hover{--transform-rotate:0!important}.sm\:hover\:rotate-1:hover{--transform-rotate:1deg!important}.sm\:hover\:rotate-2:hover{--transform-rotate:2deg!important}.sm\:hover\:rotate-3:hover{--transform-rotate:3deg!important}.sm\:hover\:rotate-6:hover{--transform-rotate:6deg!important}.sm\:hover\:rotate-12:hover{--transform-rotate:12deg!important}.sm\:hover\:rotate-45:hover{--transform-rotate:45deg!important}.sm\:hover\:rotate-90:hover{--transform-rotate:90deg!important}.sm\:hover\:rotate-180:hover{--transform-rotate:180deg!important}.sm\:hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.sm\:hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.sm\:hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.sm\:hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.sm\:hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.sm\:hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.sm\:hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.sm\:hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.sm\:focus\:rotate-0:focus{--transform-rotate:0!important}.sm\:focus\:rotate-1:focus{--transform-rotate:1deg!important}.sm\:focus\:rotate-2:focus{--transform-rotate:2deg!important}.sm\:focus\:rotate-3:focus{--transform-rotate:3deg!important}.sm\:focus\:rotate-6:focus{--transform-rotate:6deg!important}.sm\:focus\:rotate-12:focus{--transform-rotate:12deg!important}.sm\:focus\:rotate-45:focus{--transform-rotate:45deg!important}.sm\:focus\:rotate-90:focus{--transform-rotate:90deg!important}.sm\:focus\:rotate-180:focus{--transform-rotate:180deg!important}.sm\:focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.sm\:focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.sm\:focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.sm\:focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.sm\:focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.sm\:focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.sm\:focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.sm\:focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.sm\:translate-x-0{--transform-translate-x:0!important}.sm\:translate-x-1{--transform-translate-x:0.25rem!important}.sm\:translate-x-2{--transform-translate-x:0.5rem!important}.sm\:translate-x-3{--transform-translate-x:0.75rem!important}.sm\:translate-x-4{--transform-translate-x:1rem!important}.sm\:translate-x-5{--transform-translate-x:1.25rem!important}.sm\:translate-x-6{--transform-translate-x:1.5rem!important}.sm\:translate-x-7{--transform-translate-x:1.75rem!important}.sm\:translate-x-8{--transform-translate-x:2rem!important}.sm\:translate-x-9{--transform-translate-x:2.25rem!important}.sm\:translate-x-10{--transform-translate-x:2.5rem!important}.sm\:translate-x-11{--transform-translate-x:2.75rem!important}.sm\:translate-x-12{--transform-translate-x:3rem!important}.sm\:translate-x-13{--transform-translate-x:3.25rem!important}.sm\:translate-x-14{--transform-translate-x:3.5rem!important}.sm\:translate-x-15{--transform-translate-x:3.75rem!important}.sm\:translate-x-16{--transform-translate-x:4rem!important}.sm\:translate-x-20{--transform-translate-x:5rem!important}.sm\:translate-x-24{--transform-translate-x:6rem!important}.sm\:translate-x-28{--transform-translate-x:7rem!important}.sm\:translate-x-32{--transform-translate-x:8rem!important}.sm\:translate-x-36{--transform-translate-x:9rem!important}.sm\:translate-x-40{--transform-translate-x:10rem!important}.sm\:translate-x-48{--transform-translate-x:12rem!important}.sm\:translate-x-56{--transform-translate-x:14rem!important}.sm\:translate-x-60{--transform-translate-x:15rem!important}.sm\:translate-x-64{--transform-translate-x:16rem!important}.sm\:translate-x-72{--transform-translate-x:18rem!important}.sm\:translate-x-80{--transform-translate-x:20rem!important}.sm\:translate-x-96{--transform-translate-x:24rem!important}.sm\:translate-x-px{--transform-translate-x:1px!important}.sm\:translate-x-0\.5{--transform-translate-x:0.125rem!important}.sm\:translate-x-1\.5{--transform-translate-x:0.375rem!important}.sm\:translate-x-2\.5{--transform-translate-x:0.625rem!important}.sm\:translate-x-3\.5{--transform-translate-x:0.875rem!important}.sm\:translate-x-1\/2{--transform-translate-x:50%!important}.sm\:translate-x-1\/3{--transform-translate-x:33.333333%!important}.sm\:translate-x-2\/3{--transform-translate-x:66.666667%!important}.sm\:translate-x-1\/4{--transform-translate-x:25%!important}.sm\:translate-x-2\/4{--transform-translate-x:50%!important}.sm\:translate-x-3\/4{--transform-translate-x:75%!important}.sm\:translate-x-1\/5{--transform-translate-x:20%!important}.sm\:translate-x-2\/5{--transform-translate-x:40%!important}.sm\:translate-x-3\/5{--transform-translate-x:60%!important}.sm\:translate-x-4\/5{--transform-translate-x:80%!important}.sm\:translate-x-1\/6{--transform-translate-x:16.666667%!important}.sm\:translate-x-2\/6{--transform-translate-x:33.333333%!important}.sm\:translate-x-3\/6{--transform-translate-x:50%!important}.sm\:translate-x-4\/6{--transform-translate-x:66.666667%!important}.sm\:translate-x-5\/6{--transform-translate-x:83.333333%!important}.sm\:translate-x-1\/12{--transform-translate-x:8.333333%!important}.sm\:translate-x-2\/12{--transform-translate-x:16.666667%!important}.sm\:translate-x-3\/12{--transform-translate-x:25%!important}.sm\:translate-x-4\/12{--transform-translate-x:33.333333%!important}.sm\:translate-x-5\/12{--transform-translate-x:41.666667%!important}.sm\:translate-x-6\/12{--transform-translate-x:50%!important}.sm\:translate-x-7\/12{--transform-translate-x:58.333333%!important}.sm\:translate-x-8\/12{--transform-translate-x:66.666667%!important}.sm\:translate-x-9\/12{--transform-translate-x:75%!important}.sm\:translate-x-10\/12{--transform-translate-x:83.333333%!important}.sm\:translate-x-11\/12{--transform-translate-x:91.666667%!important}.sm\:translate-x-full{--transform-translate-x:100%!important}.sm\:-translate-x-1{--transform-translate-x:-0.25rem!important}.sm\:-translate-x-2{--transform-translate-x:-0.5rem!important}.sm\:-translate-x-3{--transform-translate-x:-0.75rem!important}.sm\:-translate-x-4{--transform-translate-x:-1rem!important}.sm\:-translate-x-5{--transform-translate-x:-1.25rem!important}.sm\:-translate-x-6{--transform-translate-x:-1.5rem!important}.sm\:-translate-x-7{--transform-translate-x:-1.75rem!important}.sm\:-translate-x-8{--transform-translate-x:-2rem!important}.sm\:-translate-x-9{--transform-translate-x:-2.25rem!important}.sm\:-translate-x-10{--transform-translate-x:-2.5rem!important}.sm\:-translate-x-11{--transform-translate-x:-2.75rem!important}.sm\:-translate-x-12{--transform-translate-x:-3rem!important}.sm\:-translate-x-13{--transform-translate-x:-3.25rem!important}.sm\:-translate-x-14{--transform-translate-x:-3.5rem!important}.sm\:-translate-x-15{--transform-translate-x:-3.75rem!important}.sm\:-translate-x-16{--transform-translate-x:-4rem!important}.sm\:-translate-x-20{--transform-translate-x:-5rem!important}.sm\:-translate-x-24{--transform-translate-x:-6rem!important}.sm\:-translate-x-28{--transform-translate-x:-7rem!important}.sm\:-translate-x-32{--transform-translate-x:-8rem!important}.sm\:-translate-x-36{--transform-translate-x:-9rem!important}.sm\:-translate-x-40{--transform-translate-x:-10rem!important}.sm\:-translate-x-48{--transform-translate-x:-12rem!important}.sm\:-translate-x-56{--transform-translate-x:-14rem!important}.sm\:-translate-x-60{--transform-translate-x:-15rem!important}.sm\:-translate-x-64{--transform-translate-x:-16rem!important}.sm\:-translate-x-72{--transform-translate-x:-18rem!important}.sm\:-translate-x-80{--transform-translate-x:-20rem!important}.sm\:-translate-x-96{--transform-translate-x:-24rem!important}.sm\:-translate-x-px{--transform-translate-x:-1px!important}.sm\:-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.sm\:-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.sm\:-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.sm\:-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.sm\:-translate-x-1\/2{--transform-translate-x:-50%!important}.sm\:-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.sm\:-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.sm\:-translate-x-1\/4{--transform-translate-x:-25%!important}.sm\:-translate-x-2\/4{--transform-translate-x:-50%!important}.sm\:-translate-x-3\/4{--transform-translate-x:-75%!important}.sm\:-translate-x-1\/5{--transform-translate-x:-20%!important}.sm\:-translate-x-2\/5{--transform-translate-x:-40%!important}.sm\:-translate-x-3\/5{--transform-translate-x:-60%!important}.sm\:-translate-x-4\/5{--transform-translate-x:-80%!important}.sm\:-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.sm\:-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.sm\:-translate-x-3\/6{--transform-translate-x:-50%!important}.sm\:-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.sm\:-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.sm\:-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.sm\:-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.sm\:-translate-x-3\/12{--transform-translate-x:-25%!important}.sm\:-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.sm\:-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.sm\:-translate-x-6\/12{--transform-translate-x:-50%!important}.sm\:-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.sm\:-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.sm\:-translate-x-9\/12{--transform-translate-x:-75%!important}.sm\:-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.sm\:-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.sm\:-translate-x-full{--transform-translate-x:-100%!important}.sm\:translate-y-0{--transform-translate-y:0!important}.sm\:translate-y-1{--transform-translate-y:0.25rem!important}.sm\:translate-y-2{--transform-translate-y:0.5rem!important}.sm\:translate-y-3{--transform-translate-y:0.75rem!important}.sm\:translate-y-4{--transform-translate-y:1rem!important}.sm\:translate-y-5{--transform-translate-y:1.25rem!important}.sm\:translate-y-6{--transform-translate-y:1.5rem!important}.sm\:translate-y-7{--transform-translate-y:1.75rem!important}.sm\:translate-y-8{--transform-translate-y:2rem!important}.sm\:translate-y-9{--transform-translate-y:2.25rem!important}.sm\:translate-y-10{--transform-translate-y:2.5rem!important}.sm\:translate-y-11{--transform-translate-y:2.75rem!important}.sm\:translate-y-12{--transform-translate-y:3rem!important}.sm\:translate-y-13{--transform-translate-y:3.25rem!important}.sm\:translate-y-14{--transform-translate-y:3.5rem!important}.sm\:translate-y-15{--transform-translate-y:3.75rem!important}.sm\:translate-y-16{--transform-translate-y:4rem!important}.sm\:translate-y-20{--transform-translate-y:5rem!important}.sm\:translate-y-24{--transform-translate-y:6rem!important}.sm\:translate-y-28{--transform-translate-y:7rem!important}.sm\:translate-y-32{--transform-translate-y:8rem!important}.sm\:translate-y-36{--transform-translate-y:9rem!important}.sm\:translate-y-40{--transform-translate-y:10rem!important}.sm\:translate-y-48{--transform-translate-y:12rem!important}.sm\:translate-y-56{--transform-translate-y:14rem!important}.sm\:translate-y-60{--transform-translate-y:15rem!important}.sm\:translate-y-64{--transform-translate-y:16rem!important}.sm\:translate-y-72{--transform-translate-y:18rem!important}.sm\:translate-y-80{--transform-translate-y:20rem!important}.sm\:translate-y-96{--transform-translate-y:24rem!important}.sm\:translate-y-px{--transform-translate-y:1px!important}.sm\:translate-y-0\.5{--transform-translate-y:0.125rem!important}.sm\:translate-y-1\.5{--transform-translate-y:0.375rem!important}.sm\:translate-y-2\.5{--transform-translate-y:0.625rem!important}.sm\:translate-y-3\.5{--transform-translate-y:0.875rem!important}.sm\:translate-y-1\/2{--transform-translate-y:50%!important}.sm\:translate-y-1\/3{--transform-translate-y:33.333333%!important}.sm\:translate-y-2\/3{--transform-translate-y:66.666667%!important}.sm\:translate-y-1\/4{--transform-translate-y:25%!important}.sm\:translate-y-2\/4{--transform-translate-y:50%!important}.sm\:translate-y-3\/4{--transform-translate-y:75%!important}.sm\:translate-y-1\/5{--transform-translate-y:20%!important}.sm\:translate-y-2\/5{--transform-translate-y:40%!important}.sm\:translate-y-3\/5{--transform-translate-y:60%!important}.sm\:translate-y-4\/5{--transform-translate-y:80%!important}.sm\:translate-y-1\/6{--transform-translate-y:16.666667%!important}.sm\:translate-y-2\/6{--transform-translate-y:33.333333%!important}.sm\:translate-y-3\/6{--transform-translate-y:50%!important}.sm\:translate-y-4\/6{--transform-translate-y:66.666667%!important}.sm\:translate-y-5\/6{--transform-translate-y:83.333333%!important}.sm\:translate-y-1\/12{--transform-translate-y:8.333333%!important}.sm\:translate-y-2\/12{--transform-translate-y:16.666667%!important}.sm\:translate-y-3\/12{--transform-translate-y:25%!important}.sm\:translate-y-4\/12{--transform-translate-y:33.333333%!important}.sm\:translate-y-5\/12{--transform-translate-y:41.666667%!important}.sm\:translate-y-6\/12{--transform-translate-y:50%!important}.sm\:translate-y-7\/12{--transform-translate-y:58.333333%!important}.sm\:translate-y-8\/12{--transform-translate-y:66.666667%!important}.sm\:translate-y-9\/12{--transform-translate-y:75%!important}.sm\:translate-y-10\/12{--transform-translate-y:83.333333%!important}.sm\:translate-y-11\/12{--transform-translate-y:91.666667%!important}.sm\:translate-y-full{--transform-translate-y:100%!important}.sm\:-translate-y-1{--transform-translate-y:-0.25rem!important}.sm\:-translate-y-2{--transform-translate-y:-0.5rem!important}.sm\:-translate-y-3{--transform-translate-y:-0.75rem!important}.sm\:-translate-y-4{--transform-translate-y:-1rem!important}.sm\:-translate-y-5{--transform-translate-y:-1.25rem!important}.sm\:-translate-y-6{--transform-translate-y:-1.5rem!important}.sm\:-translate-y-7{--transform-translate-y:-1.75rem!important}.sm\:-translate-y-8{--transform-translate-y:-2rem!important}.sm\:-translate-y-9{--transform-translate-y:-2.25rem!important}.sm\:-translate-y-10{--transform-translate-y:-2.5rem!important}.sm\:-translate-y-11{--transform-translate-y:-2.75rem!important}.sm\:-translate-y-12{--transform-translate-y:-3rem!important}.sm\:-translate-y-13{--transform-translate-y:-3.25rem!important}.sm\:-translate-y-14{--transform-translate-y:-3.5rem!important}.sm\:-translate-y-15{--transform-translate-y:-3.75rem!important}.sm\:-translate-y-16{--transform-translate-y:-4rem!important}.sm\:-translate-y-20{--transform-translate-y:-5rem!important}.sm\:-translate-y-24{--transform-translate-y:-6rem!important}.sm\:-translate-y-28{--transform-translate-y:-7rem!important}.sm\:-translate-y-32{--transform-translate-y:-8rem!important}.sm\:-translate-y-36{--transform-translate-y:-9rem!important}.sm\:-translate-y-40{--transform-translate-y:-10rem!important}.sm\:-translate-y-48{--transform-translate-y:-12rem!important}.sm\:-translate-y-56{--transform-translate-y:-14rem!important}.sm\:-translate-y-60{--transform-translate-y:-15rem!important}.sm\:-translate-y-64{--transform-translate-y:-16rem!important}.sm\:-translate-y-72{--transform-translate-y:-18rem!important}.sm\:-translate-y-80{--transform-translate-y:-20rem!important}.sm\:-translate-y-96{--transform-translate-y:-24rem!important}.sm\:-translate-y-px{--transform-translate-y:-1px!important}.sm\:-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.sm\:-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.sm\:-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.sm\:-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.sm\:-translate-y-1\/2{--transform-translate-y:-50%!important}.sm\:-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.sm\:-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.sm\:-translate-y-1\/4{--transform-translate-y:-25%!important}.sm\:-translate-y-2\/4{--transform-translate-y:-50%!important}.sm\:-translate-y-3\/4{--transform-translate-y:-75%!important}.sm\:-translate-y-1\/5{--transform-translate-y:-20%!important}.sm\:-translate-y-2\/5{--transform-translate-y:-40%!important}.sm\:-translate-y-3\/5{--transform-translate-y:-60%!important}.sm\:-translate-y-4\/5{--transform-translate-y:-80%!important}.sm\:-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.sm\:-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.sm\:-translate-y-3\/6{--transform-translate-y:-50%!important}.sm\:-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.sm\:-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.sm\:-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.sm\:-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.sm\:-translate-y-3\/12{--transform-translate-y:-25%!important}.sm\:-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.sm\:-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.sm\:-translate-y-6\/12{--transform-translate-y:-50%!important}.sm\:-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.sm\:-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.sm\:-translate-y-9\/12{--transform-translate-y:-75%!important}.sm\:-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.sm\:-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.sm\:-translate-y-full{--transform-translate-y:-100%!important}.sm\:hover\:translate-x-0:hover{--transform-translate-x:0!important}.sm\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.sm\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.sm\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.sm\:hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.sm\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.sm\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.sm\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.sm\:hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.sm\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.sm\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.sm\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.sm\:hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.sm\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.sm\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.sm\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.sm\:hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.sm\:hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.sm\:hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.sm\:hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.sm\:hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.sm\:hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.sm\:hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.sm\:hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.sm\:hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.sm\:hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.sm\:hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.sm\:hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.sm\:hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.sm\:hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.sm\:hover\:translate-x-px:hover{--transform-translate-x:1px!important}.sm\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.sm\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.sm\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.sm\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.sm\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.sm\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.sm\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.sm\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.sm\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.sm\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.sm\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.sm\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.sm\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.sm\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.sm\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.sm\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.sm\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.sm\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.sm\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.sm\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.sm\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.sm\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.sm\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.sm\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.sm\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.sm\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.sm\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.sm\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.sm\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.sm\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.sm\:hover\:translate-x-full:hover{--transform-translate-x:100%!important}.sm\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.sm\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.sm\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.sm\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.sm\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.sm\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.sm\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.sm\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.sm\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.sm\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.sm\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.sm\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.sm\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.sm\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.sm\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.sm\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.sm\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.sm\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.sm\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.sm\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.sm\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.sm\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.sm\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.sm\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.sm\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.sm\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.sm\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.sm\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.sm\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.sm\:hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.sm\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.sm\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.sm\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.sm\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.sm\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.sm\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.sm\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.sm\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.sm\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.sm\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.sm\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.sm\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.sm\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.sm\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.sm\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.sm\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.sm\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.sm\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.sm\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.sm\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.sm\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.sm\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.sm\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.sm\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.sm\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.sm\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.sm\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.sm\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.sm\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.sm\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.sm\:hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.sm\:hover\:translate-y-0:hover{--transform-translate-y:0!important}.sm\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.sm\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.sm\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.sm\:hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.sm\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.sm\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.sm\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.sm\:hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.sm\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.sm\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.sm\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.sm\:hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.sm\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.sm\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.sm\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.sm\:hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.sm\:hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.sm\:hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.sm\:hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.sm\:hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.sm\:hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.sm\:hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.sm\:hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.sm\:hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.sm\:hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.sm\:hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.sm\:hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.sm\:hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.sm\:hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.sm\:hover\:translate-y-px:hover{--transform-translate-y:1px!important}.sm\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.sm\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.sm\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.sm\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.sm\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.sm\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.sm\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.sm\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.sm\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.sm\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.sm\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.sm\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.sm\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.sm\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.sm\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.sm\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.sm\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.sm\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.sm\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.sm\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.sm\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.sm\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.sm\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.sm\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.sm\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.sm\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.sm\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.sm\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.sm\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.sm\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.sm\:hover\:translate-y-full:hover{--transform-translate-y:100%!important}.sm\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.sm\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.sm\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.sm\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.sm\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.sm\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.sm\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.sm\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.sm\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.sm\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.sm\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.sm\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.sm\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.sm\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.sm\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.sm\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.sm\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.sm\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.sm\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.sm\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.sm\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.sm\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.sm\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.sm\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.sm\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.sm\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.sm\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.sm\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.sm\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.sm\:hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.sm\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.sm\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.sm\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.sm\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.sm\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.sm\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.sm\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.sm\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.sm\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.sm\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.sm\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.sm\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.sm\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.sm\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.sm\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.sm\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.sm\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.sm\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.sm\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.sm\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.sm\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.sm\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.sm\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.sm\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.sm\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.sm\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.sm\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.sm\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.sm\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.sm\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.sm\:hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.sm\:focus\:translate-x-0:focus{--transform-translate-x:0!important}.sm\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.sm\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.sm\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.sm\:focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.sm\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.sm\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.sm\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.sm\:focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.sm\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.sm\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.sm\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.sm\:focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.sm\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.sm\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.sm\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.sm\:focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.sm\:focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.sm\:focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.sm\:focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.sm\:focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.sm\:focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.sm\:focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.sm\:focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.sm\:focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.sm\:focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.sm\:focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.sm\:focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.sm\:focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.sm\:focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.sm\:focus\:translate-x-px:focus{--transform-translate-x:1px!important}.sm\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.sm\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.sm\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.sm\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.sm\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.sm\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.sm\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.sm\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.sm\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.sm\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.sm\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.sm\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.sm\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.sm\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.sm\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.sm\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.sm\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.sm\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.sm\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.sm\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.sm\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.sm\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.sm\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.sm\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.sm\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.sm\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.sm\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.sm\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.sm\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.sm\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.sm\:focus\:translate-x-full:focus{--transform-translate-x:100%!important}.sm\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.sm\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.sm\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.sm\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.sm\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.sm\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.sm\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.sm\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.sm\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.sm\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.sm\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.sm\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.sm\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.sm\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.sm\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.sm\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.sm\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.sm\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.sm\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.sm\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.sm\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.sm\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.sm\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.sm\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.sm\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.sm\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.sm\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.sm\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.sm\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.sm\:focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.sm\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.sm\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.sm\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.sm\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.sm\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.sm\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.sm\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.sm\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.sm\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.sm\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.sm\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.sm\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.sm\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.sm\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.sm\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.sm\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.sm\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.sm\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.sm\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.sm\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.sm\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.sm\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.sm\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.sm\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.sm\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.sm\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.sm\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.sm\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.sm\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.sm\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.sm\:focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.sm\:focus\:translate-y-0:focus{--transform-translate-y:0!important}.sm\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.sm\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.sm\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.sm\:focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.sm\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.sm\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.sm\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.sm\:focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.sm\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.sm\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.sm\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.sm\:focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.sm\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.sm\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.sm\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.sm\:focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.sm\:focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.sm\:focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.sm\:focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.sm\:focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.sm\:focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.sm\:focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.sm\:focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.sm\:focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.sm\:focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.sm\:focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.sm\:focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.sm\:focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.sm\:focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.sm\:focus\:translate-y-px:focus{--transform-translate-y:1px!important}.sm\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.sm\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.sm\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.sm\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.sm\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.sm\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.sm\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.sm\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.sm\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.sm\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.sm\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.sm\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.sm\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.sm\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.sm\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.sm\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.sm\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.sm\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.sm\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.sm\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.sm\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.sm\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.sm\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.sm\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.sm\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.sm\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.sm\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.sm\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.sm\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.sm\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.sm\:focus\:translate-y-full:focus{--transform-translate-y:100%!important}.sm\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.sm\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.sm\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.sm\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.sm\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.sm\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.sm\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.sm\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.sm\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.sm\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.sm\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.sm\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.sm\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.sm\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.sm\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.sm\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.sm\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.sm\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.sm\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.sm\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.sm\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.sm\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.sm\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.sm\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.sm\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.sm\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.sm\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.sm\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.sm\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.sm\:focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.sm\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.sm\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.sm\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.sm\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.sm\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.sm\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.sm\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.sm\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.sm\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.sm\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.sm\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.sm\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.sm\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.sm\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.sm\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.sm\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.sm\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.sm\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.sm\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.sm\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.sm\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.sm\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.sm\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.sm\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.sm\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.sm\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.sm\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.sm\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.sm\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.sm\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.sm\:focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.sm\:skew-x-0{--transform-skew-x:0!important}.sm\:skew-x-1{--transform-skew-x:1deg!important}.sm\:skew-x-2{--transform-skew-x:2deg!important}.sm\:skew-x-3{--transform-skew-x:3deg!important}.sm\:skew-x-6{--transform-skew-x:6deg!important}.sm\:skew-x-12{--transform-skew-x:12deg!important}.sm\:-skew-x-12{--transform-skew-x:-12deg!important}.sm\:-skew-x-6{--transform-skew-x:-6deg!important}.sm\:-skew-x-3{--transform-skew-x:-3deg!important}.sm\:-skew-x-2{--transform-skew-x:-2deg!important}.sm\:-skew-x-1{--transform-skew-x:-1deg!important}.sm\:skew-y-0{--transform-skew-y:0!important}.sm\:skew-y-1{--transform-skew-y:1deg!important}.sm\:skew-y-2{--transform-skew-y:2deg!important}.sm\:skew-y-3{--transform-skew-y:3deg!important}.sm\:skew-y-6{--transform-skew-y:6deg!important}.sm\:skew-y-12{--transform-skew-y:12deg!important}.sm\:-skew-y-12{--transform-skew-y:-12deg!important}.sm\:-skew-y-6{--transform-skew-y:-6deg!important}.sm\:-skew-y-3{--transform-skew-y:-3deg!important}.sm\:-skew-y-2{--transform-skew-y:-2deg!important}.sm\:-skew-y-1{--transform-skew-y:-1deg!important}.sm\:hover\:skew-x-0:hover{--transform-skew-x:0!important}.sm\:hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.sm\:hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.sm\:hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.sm\:hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.sm\:hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.sm\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.sm\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.sm\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.sm\:hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.sm\:hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.sm\:hover\:skew-y-0:hover{--transform-skew-y:0!important}.sm\:hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.sm\:hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.sm\:hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.sm\:hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.sm\:hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.sm\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.sm\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.sm\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.sm\:hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.sm\:hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.sm\:focus\:skew-x-0:focus{--transform-skew-x:0!important}.sm\:focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.sm\:focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.sm\:focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.sm\:focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.sm\:focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.sm\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.sm\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.sm\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.sm\:focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.sm\:focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.sm\:focus\:skew-y-0:focus{--transform-skew-y:0!important}.sm\:focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.sm\:focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.sm\:focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.sm\:focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.sm\:focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.sm\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.sm\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.sm\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.sm\:focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.sm\:focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.sm\:transition-none{transition-property:none!important}.sm\:transition-all{transition-property:all!important}.sm\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.sm\:transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.sm\:transition-opacity{transition-property:opacity!important}.sm\:transition-shadow{transition-property:box-shadow!important}.sm\:transition-transform{transition-property:transform!important}.sm\:ease-linear{transition-timing-function:linear!important}.sm\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.sm\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.sm\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.sm\:duration-75{transition-duration:75ms!important}.sm\:duration-100{transition-duration:.1s!important}.sm\:duration-150{transition-duration:.15s!important}.sm\:duration-200{transition-duration:.2s!important}.sm\:duration-300{transition-duration:.3s!important}.sm\:duration-500{transition-duration:.5s!important}.sm\:duration-700{transition-duration:.7s!important}.sm\:duration-1000{transition-duration:1s!important}.sm\:duration-2000{transition-duration:2s!important}.sm\:delay-75{transition-delay:75ms!important}.sm\:delay-100{transition-delay:.1s!important}.sm\:delay-150{transition-delay:.15s!important}.sm\:delay-200{transition-delay:.2s!important}.sm\:delay-300{transition-delay:.3s!important}.sm\:delay-500{transition-delay:.5s!important}.sm\:delay-700{transition-delay:.7s!important}.sm\:delay-1000{transition-delay:1s!important}.sm\:animate-none{animation:none!important}.sm\:animate-spin{animation:spin 1s linear infinite!important}.sm\:animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.sm\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.sm\:animate-bounce{animation:bounce 1s infinite!important}}@media (min-width:1024px){.md\:space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.md\:space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.md\:space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.md\:space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.md\:space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.md\:space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.md\:space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.md\:space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.md\:space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.md\:space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.md\:space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.md\:space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.md\:space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.md\:space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.md\:space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.md\:space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.md\:space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.md\:space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.md\:space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.md\:space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.md\:space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.md\:space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.md\:space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.md\:space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.md\:space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.md\:space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.md\:space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.md\:space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.md\:space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.md\:space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.md\:space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.md\:space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.md\:space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.md\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.md\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.md\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.md\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.md\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.md\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.md\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.md\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.md\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.md\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.md\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.md\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.md\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.md\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.md\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.md\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.md\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.md\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.md\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.md\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.md\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.md\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.md\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.md\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.md\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.md\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.md\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.md\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.md\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.md\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.md\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.md\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.md\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.md\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.md\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.md\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.md\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.md\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.md\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.md\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.md\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.md\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.md\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.md\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.md\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.md\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.md\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.md\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.md\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.md\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.md\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.md\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.md\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.md\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.md\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.md\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.md\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.md\:space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.md\:space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.md\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.md\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.md\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.md\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.md\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.md\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.md\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.md\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.md\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.md\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.md\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.md\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.md\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.md\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.md\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.md\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.md\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.md\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.md\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.md\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.md\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.md\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.md\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.md\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.md\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.md\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.md\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.md\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.md\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.md\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.md\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.md\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.md\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.md\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.md\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.md\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.md\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.md\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.md\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.md\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.md\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.md\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.md\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.md\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.md\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.md\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.md\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.md\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.md\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.md\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.md\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.md\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.md\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.md\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.md\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.md\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.md\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.md\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.md\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.md\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.md\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.md\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.md\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.md\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.md\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.md\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.md\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.md\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.md\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.md\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.md\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.md\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.md\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.md\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.md\:divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.md\:divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.md\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.md\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.md\:divide-transparent>:not(template)~:not(template){border-color:transparent!important}.md\:divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.md\:divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.md\:divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.md\:divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.md\:divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.md\:divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.md\:divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.md\:divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.md\:divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.md\:divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.md\:divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.md\:divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.md\:divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.md\:divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.md\:divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.md\:divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.md\:divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.md\:divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.md\:divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.md\:divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.md\:divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.md\:divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.md\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.md\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.md\:divide-solid>:not(template)~:not(template){border-style:solid!important}.md\:divide-dashed>:not(template)~:not(template){border-style:dashed!important}.md\:divide-dotted>:not(template)~:not(template){border-style:dotted!important}.md\:divide-double>:not(template)~:not(template){border-style:double!important}.md\:divide-none>:not(template)~:not(template){border-style:none!important}.md\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.md\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.md\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.md\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.md\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.md\:sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.md\:not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.md\:focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.md\:focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.md\:appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.md\:bg-fixed{background-attachment:fixed!important}.md\:bg-local{background-attachment:local!important}.md\:bg-scroll{background-attachment:scroll!important}.md\:bg-clip-border{background-clip:border-box!important}.md\:bg-clip-padding{background-clip:padding-box!important}.md\:bg-clip-content{background-clip:content-box!important}.md\:bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.md\:bg-transparent{background-color:transparent!important}.md\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.md\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.md\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.md\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.md\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.md\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.md\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.md\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.md\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.md\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.md\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.md\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.md\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.md\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.md\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.md\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.md\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.md\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.md\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.md\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.md\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.md\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.md\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.md\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-transparent{background-color:transparent!important}.group:hover .md\:group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .md\:group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .md\:group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .md\:group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .md\:group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-transparent{background-color:transparent!important}.group:focus .md\:group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .md\:group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .md\:group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .md\:group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .md\:group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.md\:hover\:bg-transparent:hover{background-color:transparent!important}.md\:hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.md\:hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.md\:hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.md\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.md\:hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.md\:hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.md\:hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.md\:hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.md\:hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.md\:hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.md\:hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.md\:hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.md\:hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.md\:hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.md\:hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.md\:hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.md\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.md\:hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.md\:hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.md\:hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.md\:hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.md\:hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.md\:hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.md\:hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.md\:focus\:bg-transparent:focus{background-color:transparent!important}.md\:focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.md\:focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.md\:focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.md\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.md\:focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.md\:focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.md\:focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.md\:focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.md\:focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.md\:focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.md\:focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.md\:focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.md\:focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.md\:focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.md\:focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.md\:focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.md\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.md\:focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.md\:focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.md\:focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.md\:focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.md\:focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.md\:focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.md\:focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.md\:active\:bg-transparent:active{background-color:transparent!important}.md\:active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.md\:active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.md\:active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.md\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.md\:active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.md\:active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.md\:active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.md\:active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.md\:active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.md\:active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.md\:active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.md\:active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.md\:active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.md\:active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.md\:active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.md\:active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.md\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.md\:active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.md\:active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.md\:active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.md\:active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.md\:active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.md\:active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.md\:active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.md\:bg-none{background-image:none!important}.md\:bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.md\:bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.md\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.md\:bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.md\:bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.md\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.md\:bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.md\:bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.md\:from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.md\:from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.md\:from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.md\:from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.md\:from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.md\:from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.md\:from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.md\:from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.md\:from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.md\:from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.md\:from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.md\:from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.md\:from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.md\:from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.md\:from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.md\:from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.md\:from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.md\:from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.md\:from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.md\:from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.md\:via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.md\:via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.md\:via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.md\:via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.md\:via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.md\:via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.md\:via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.md\:via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.md\:via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.md\:via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.md\:via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.md\:via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.md\:via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.md\:via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.md\:via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.md\:via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.md\:via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.md\:via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.md\:via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.md\:via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.md\:to-transparent{--gradient-to-color:transparent!important}.md\:to-white{--gradient-to-color:#fff!important}.md\:to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.md\:to-blackest{--gradient-to-color:#000!important}.md\:to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.md\:to-black{--gradient-to-color:#23292d!important}.md\:to-gray-darkest{--gradient-to-color:#3d4852!important}.md\:to-gray-darker{--gradient-to-color:#606f7b!important}.md\:to-gray-dark{--gradient-to-color:#9ea3a8!important}.md\:to-gray{--gradient-to-color:#b8c2cc!important}.md\:to-gray-light{--gradient-to-color:#dae1e7!important}.md\:to-gray-lighter{--gradient-to-color:#f1f1f1!important}.md\:to-gray-lightest{--gradient-to-color:#f8fafc!important}.md\:to-blue-darkest{--gradient-to-color:#1673a7!important}.md\:to-blue-dark{--gradient-to-color:#0073aa!important}.md\:to-blue{--gradient-to-color:#3188e6!important}.md\:to-blue-light{--gradient-to-color:#a4cafe!important}.md\:to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.md\:to-orange{--gradient-to-color:#dd6923!important}.md\:to-orange-darker{--gradient-to-color:#d5551e!important}.md\:to-orange-darkest{--gradient-to-color:#c9501c!important}.md\:to-red{--gradient-to-color:#e82323!important}.md\:to-green{--gradient-to-color:#46b450!important}.md\:to-yellow-400{--gradient-to-color:#e3a008!important}.md\:to-yellow-50{--gradient-to-color:#fdfdea!important}.md\:hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.md\:hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.md\:hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.md\:hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.md\:hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.md\:hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.md\:hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.md\:hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.md\:hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.md\:hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.md\:hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.md\:hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.md\:hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.md\:hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.md\:hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.md\:hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.md\:hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.md\:hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.md\:hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.md\:hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.md\:hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.md\:hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.md\:hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.md\:hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.md\:hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.md\:hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.md\:hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.md\:hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.md\:hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.md\:hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.md\:hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.md\:hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.md\:hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.md\:hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.md\:hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.md\:hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.md\:hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.md\:hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.md\:hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.md\:hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.md\:hover\:to-transparent:hover{--gradient-to-color:transparent!important}.md\:hover\:to-white:hover{--gradient-to-color:#fff!important}.md\:hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.md\:hover\:to-blackest:hover{--gradient-to-color:#000!important}.md\:hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.md\:hover\:to-black:hover{--gradient-to-color:#23292d!important}.md\:hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.md\:hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.md\:hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.md\:hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.md\:hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.md\:hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.md\:hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.md\:hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.md\:hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.md\:hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.md\:hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.md\:hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.md\:hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.md\:hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.md\:hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.md\:hover\:to-red:hover{--gradient-to-color:#e82323!important}.md\:hover\:to-green:hover{--gradient-to-color:#46b450!important}.md\:hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.md\:hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.md\:focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.md\:focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.md\:focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.md\:focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.md\:focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.md\:focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.md\:focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.md\:focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.md\:focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.md\:focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.md\:focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.md\:focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.md\:focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.md\:focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.md\:focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.md\:focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.md\:focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.md\:focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.md\:focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.md\:focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.md\:focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.md\:focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.md\:focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.md\:focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.md\:focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.md\:focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.md\:focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.md\:focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.md\:focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.md\:focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.md\:focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.md\:focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.md\:focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.md\:focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.md\:focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.md\:focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.md\:focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.md\:focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.md\:focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.md\:focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.md\:focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.md\:focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.md\:focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.md\:focus\:to-transparent:focus{--gradient-to-color:transparent!important}.md\:focus\:to-white:focus{--gradient-to-color:#fff!important}.md\:focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.md\:focus\:to-blackest:focus{--gradient-to-color:#000!important}.md\:focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.md\:focus\:to-black:focus{--gradient-to-color:#23292d!important}.md\:focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.md\:focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.md\:focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.md\:focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.md\:focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.md\:focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.md\:focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.md\:focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.md\:focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.md\:focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.md\:focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.md\:focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.md\:focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.md\:focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.md\:focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.md\:focus\:to-red:focus{--gradient-to-color:#e82323!important}.md\:focus\:to-green:focus{--gradient-to-color:#46b450!important}.md\:focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.md\:focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.md\:bg-opacity-0{--bg-opacity:0!important}.md\:bg-opacity-25{--bg-opacity:0.25!important}.md\:bg-opacity-50{--bg-opacity:0.5!important}.md\:bg-opacity-75{--bg-opacity:0.75!important}.md\:bg-opacity-100{--bg-opacity:1!important}.md\:hover\:bg-opacity-0:hover{--bg-opacity:0!important}.md\:hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.md\:hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.md\:hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.md\:hover\:bg-opacity-100:hover{--bg-opacity:1!important}.md\:focus\:bg-opacity-0:focus{--bg-opacity:0!important}.md\:focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.md\:focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.md\:focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.md\:focus\:bg-opacity-100:focus{--bg-opacity:1!important}.md\:bg-bottom{background-position:bottom!important}.md\:bg-center{background-position:50%!important}.md\:bg-left{background-position:0!important}.md\:bg-left-bottom{background-position:0 100%!important}.md\:bg-left-top{background-position:0 0!important}.md\:bg-right{background-position:100%!important}.md\:bg-right-bottom{background-position:100% 100%!important}.md\:bg-right-top{background-position:100% 0!important}.md\:bg-top{background-position:top!important}.md\:bg-repeat{background-repeat:repeat!important}.md\:bg-no-repeat{background-repeat:no-repeat!important}.md\:bg-repeat-x{background-repeat:repeat-x!important}.md\:bg-repeat-y{background-repeat:repeat-y!important}.md\:bg-repeat-round{background-repeat:round!important}.md\:bg-repeat-space{background-repeat:space!important}.md\:bg-auto{background-size:auto!important}.md\:bg-cover{background-size:cover!important}.md\:bg-contain{background-size:contain!important}.md\:border-collapse{border-collapse:collapse!important}.md\:border-separate{border-collapse:separate!important}.md\:border-transparent{border-color:transparent!important}.md\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.md\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.md\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.md\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.md\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.md\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.md\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.md\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.md\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.md\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.md\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.md\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.md\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.md\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.md\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.md\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.md\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.md\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.md\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.md\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.md\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.md\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.md\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.md\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.md\:hover\:border-transparent:hover{border-color:transparent!important}.md\:hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.md\:hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.md\:hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.md\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.md\:hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.md\:hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.md\:hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.md\:hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.md\:hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.md\:hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.md\:hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.md\:hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.md\:hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.md\:hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.md\:hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.md\:hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.md\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.md\:hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.md\:hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.md\:hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.md\:hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.md\:hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.md\:hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.md\:hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.md\:focus\:border-transparent:focus{border-color:transparent!important}.md\:focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.md\:focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.md\:focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.md\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.md\:focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.md\:focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.md\:focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.md\:focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.md\:focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.md\:focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.md\:focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.md\:focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.md\:focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.md\:focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.md\:focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.md\:focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.md\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.md\:focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.md\:focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.md\:focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.md\:focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.md\:focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.md\:focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.md\:focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-transparent{border-color:transparent!important}.group:hover .md\:group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .md\:group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .md\:group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .md\:group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .md\:group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.md\:border-opacity-0{--border-opacity:0!important}.md\:border-opacity-25{--border-opacity:0.25!important}.md\:border-opacity-50{--border-opacity:0.5!important}.md\:border-opacity-75{--border-opacity:0.75!important}.md\:border-opacity-100{--border-opacity:1!important}.md\:hover\:border-opacity-0:hover{--border-opacity:0!important}.md\:hover\:border-opacity-25:hover{--border-opacity:0.25!important}.md\:hover\:border-opacity-50:hover{--border-opacity:0.5!important}.md\:hover\:border-opacity-75:hover{--border-opacity:0.75!important}.md\:hover\:border-opacity-100:hover{--border-opacity:1!important}.md\:focus\:border-opacity-0:focus{--border-opacity:0!important}.md\:focus\:border-opacity-25:focus{--border-opacity:0.25!important}.md\:focus\:border-opacity-50:focus{--border-opacity:0.5!important}.md\:focus\:border-opacity-75:focus{--border-opacity:0.75!important}.md\:focus\:border-opacity-100:focus{--border-opacity:1!important}.md\:rounded-none{border-radius:0!important}.md\:rounded-sm{border-radius:.125rem!important}.md\:rounded{border-radius:.25rem!important}.md\:rounded-md{border-radius:.375rem!important}.md\:rounded-lg{border-radius:.5rem!important}.md\:rounded-xl{border-radius:.75rem!important}.md\:rounded-2xl{border-radius:1rem!important}.md\:rounded-3xl{border-radius:1.5rem!important}.md\:rounded-full{border-radius:9999px!important}.md\:rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\:rounded-r-none{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.md\:rounded-b-none{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\:rounded-l-none{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.md\:rounded-t-sm{border-top-left-radius:.125rem!important}.md\:rounded-r-sm,.md\:rounded-t-sm{border-top-right-radius:.125rem!important}.md\:rounded-b-sm,.md\:rounded-r-sm{border-bottom-right-radius:.125rem!important}.md\:rounded-b-sm,.md\:rounded-l-sm{border-bottom-left-radius:.125rem!important}.md\:rounded-l-sm{border-top-left-radius:.125rem!important}.md\:rounded-t{border-top-left-radius:.25rem!important}.md\:rounded-r,.md\:rounded-t{border-top-right-radius:.25rem!important}.md\:rounded-b,.md\:rounded-r{border-bottom-right-radius:.25rem!important}.md\:rounded-b,.md\:rounded-l{border-bottom-left-radius:.25rem!important}.md\:rounded-l{border-top-left-radius:.25rem!important}.md\:rounded-t-md{border-top-left-radius:.375rem!important}.md\:rounded-r-md,.md\:rounded-t-md{border-top-right-radius:.375rem!important}.md\:rounded-b-md,.md\:rounded-r-md{border-bottom-right-radius:.375rem!important}.md\:rounded-b-md,.md\:rounded-l-md{border-bottom-left-radius:.375rem!important}.md\:rounded-l-md{border-top-left-radius:.375rem!important}.md\:rounded-t-lg{border-top-left-radius:.5rem!important}.md\:rounded-r-lg,.md\:rounded-t-lg{border-top-right-radius:.5rem!important}.md\:rounded-b-lg,.md\:rounded-r-lg{border-bottom-right-radius:.5rem!important}.md\:rounded-b-lg,.md\:rounded-l-lg{border-bottom-left-radius:.5rem!important}.md\:rounded-l-lg{border-top-left-radius:.5rem!important}.md\:rounded-t-xl{border-top-left-radius:.75rem!important}.md\:rounded-r-xl,.md\:rounded-t-xl{border-top-right-radius:.75rem!important}.md\:rounded-b-xl,.md\:rounded-r-xl{border-bottom-right-radius:.75rem!important}.md\:rounded-b-xl,.md\:rounded-l-xl{border-bottom-left-radius:.75rem!important}.md\:rounded-l-xl{border-top-left-radius:.75rem!important}.md\:rounded-t-2xl{border-top-left-radius:1rem!important}.md\:rounded-r-2xl,.md\:rounded-t-2xl{border-top-right-radius:1rem!important}.md\:rounded-b-2xl,.md\:rounded-r-2xl{border-bottom-right-radius:1rem!important}.md\:rounded-b-2xl,.md\:rounded-l-2xl{border-bottom-left-radius:1rem!important}.md\:rounded-l-2xl{border-top-left-radius:1rem!important}.md\:rounded-t-3xl{border-top-left-radius:1.5rem!important}.md\:rounded-r-3xl,.md\:rounded-t-3xl{border-top-right-radius:1.5rem!important}.md\:rounded-b-3xl,.md\:rounded-r-3xl{border-bottom-right-radius:1.5rem!important}.md\:rounded-b-3xl,.md\:rounded-l-3xl{border-bottom-left-radius:1.5rem!important}.md\:rounded-l-3xl{border-top-left-radius:1.5rem!important}.md\:rounded-t-full{border-top-left-radius:9999px!important}.md\:rounded-r-full,.md\:rounded-t-full{border-top-right-radius:9999px!important}.md\:rounded-b-full,.md\:rounded-r-full{border-bottom-right-radius:9999px!important}.md\:rounded-b-full,.md\:rounded-l-full{border-bottom-left-radius:9999px!important}.md\:rounded-l-full{border-top-left-radius:9999px!important}.md\:rounded-tl-none{border-top-left-radius:0!important}.md\:rounded-tr-none{border-top-right-radius:0!important}.md\:rounded-br-none{border-bottom-right-radius:0!important}.md\:rounded-bl-none{border-bottom-left-radius:0!important}.md\:rounded-tl-sm{border-top-left-radius:.125rem!important}.md\:rounded-tr-sm{border-top-right-radius:.125rem!important}.md\:rounded-br-sm{border-bottom-right-radius:.125rem!important}.md\:rounded-bl-sm{border-bottom-left-radius:.125rem!important}.md\:rounded-tl{border-top-left-radius:.25rem!important}.md\:rounded-tr{border-top-right-radius:.25rem!important}.md\:rounded-br{border-bottom-right-radius:.25rem!important}.md\:rounded-bl{border-bottom-left-radius:.25rem!important}.md\:rounded-tl-md{border-top-left-radius:.375rem!important}.md\:rounded-tr-md{border-top-right-radius:.375rem!important}.md\:rounded-br-md{border-bottom-right-radius:.375rem!important}.md\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.md\:rounded-tl-lg{border-top-left-radius:.5rem!important}.md\:rounded-tr-lg{border-top-right-radius:.5rem!important}.md\:rounded-br-lg{border-bottom-right-radius:.5rem!important}.md\:rounded-bl-lg{border-bottom-left-radius:.5rem!important}.md\:rounded-tl-xl{border-top-left-radius:.75rem!important}.md\:rounded-tr-xl{border-top-right-radius:.75rem!important}.md\:rounded-br-xl{border-bottom-right-radius:.75rem!important}.md\:rounded-bl-xl{border-bottom-left-radius:.75rem!important}.md\:rounded-tl-2xl{border-top-left-radius:1rem!important}.md\:rounded-tr-2xl{border-top-right-radius:1rem!important}.md\:rounded-br-2xl{border-bottom-right-radius:1rem!important}.md\:rounded-bl-2xl{border-bottom-left-radius:1rem!important}.md\:rounded-tl-3xl{border-top-left-radius:1.5rem!important}.md\:rounded-tr-3xl{border-top-right-radius:1.5rem!important}.md\:rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.md\:rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.md\:rounded-tl-full{border-top-left-radius:9999px!important}.md\:rounded-tr-full{border-top-right-radius:9999px!important}.md\:rounded-br-full{border-bottom-right-radius:9999px!important}.md\:rounded-bl-full{border-bottom-left-radius:9999px!important}.md\:border-solid{border-style:solid!important}.md\:border-dashed{border-style:dashed!important}.md\:border-dotted{border-style:dotted!important}.md\:border-double{border-style:double!important}.md\:border-none{border-style:none!important}.md\:border-0{border-width:0!important}.md\:border-2{border-width:2px!important}.md\:border-4{border-width:4px!important}.md\:border-8{border-width:8px!important}.md\:border{border-width:1px!important}.md\:border-t-0{border-top-width:0!important}.md\:border-r-0{border-right-width:0!important}.md\:border-b-0{border-bottom-width:0!important}.md\:border-l-0{border-left-width:0!important}.md\:border-t-2{border-top-width:2px!important}.md\:border-r-2{border-right-width:2px!important}.md\:border-b-2{border-bottom-width:2px!important}.md\:border-l-2{border-left-width:2px!important}.md\:border-t-4{border-top-width:4px!important}.md\:border-r-4{border-right-width:4px!important}.md\:border-b-4{border-bottom-width:4px!important}.md\:border-l-4{border-left-width:4px!important}.md\:border-t-8{border-top-width:8px!important}.md\:border-r-8{border-right-width:8px!important}.md\:border-b-8{border-bottom-width:8px!important}.md\:border-l-8{border-left-width:8px!important}.md\:border-t{border-top-width:1px!important}.md\:border-r{border-right-width:1px!important}.md\:border-b{border-bottom-width:1px!important}.md\:border-l{border-left-width:1px!important}.md\:box-border{box-sizing:border-box!important}.md\:box-content{box-sizing:content-box!important}.md\:cursor-auto{cursor:auto!important}.md\:cursor-default{cursor:default!important}.md\:cursor-pointer{cursor:pointer!important}.md\:cursor-wait{cursor:wait!important}.md\:cursor-text{cursor:text!important}.md\:cursor-move{cursor:move!important}.md\:cursor-not-allowed{cursor:not-allowed!important}.md\:block{display:block!important}.md\:inline-block{display:inline-block!important}.md\:inline{display:inline!important}.md\:flex{display:flex!important}.md\:inline-flex{display:inline-flex!important}.md\:table{display:table!important}.md\:table-caption{display:table-caption!important}.md\:table-cell{display:table-cell!important}.md\:table-column{display:table-column!important}.md\:table-column-group{display:table-column-group!important}.md\:table-footer-group{display:table-footer-group!important}.md\:table-header-group{display:table-header-group!important}.md\:table-row-group{display:table-row-group!important}.md\:table-row{display:table-row!important}.md\:flow-root{display:flow-root!important}.md\:grid{display:grid!important}.md\:inline-grid{display:inline-grid!important}.md\:contents{display:contents!important}.md\:hidden{display:none!important}.md\:flex-row{flex-direction:row!important}.md\:flex-row-reverse{flex-direction:row-reverse!important}.md\:flex-col{flex-direction:column!important}.md\:flex-col-reverse{flex-direction:column-reverse!important}.md\:flex-wrap{flex-wrap:wrap!important}.md\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\:flex-no-wrap{flex-wrap:nowrap!important}.md\:place-items-auto{place-items:auto!important}.md\:place-items-start{place-items:start!important}.md\:place-items-end{place-items:end!important}.md\:place-items-center{place-items:center!important}.md\:place-items-stretch{place-items:stretch!important}.md\:place-content-center{place-content:center!important}.md\:place-content-start{place-content:start!important}.md\:place-content-end{place-content:end!important}.md\:place-content-between{place-content:space-between!important}.md\:place-content-around{place-content:space-around!important}.md\:place-content-evenly{place-content:space-evenly!important}.md\:place-content-stretch{place-content:stretch!important}.md\:place-self-auto{place-self:auto!important}.md\:place-self-start{place-self:start!important}.md\:place-self-end{place-self:end!important}.md\:place-self-center{place-self:center!important}.md\:place-self-stretch{place-self:stretch!important}.md\:items-start{align-items:flex-start!important}.md\:items-end{align-items:flex-end!important}.md\:items-center{align-items:center!important}.md\:items-baseline{align-items:baseline!important}.md\:items-stretch{align-items:stretch!important}.md\:content-center{align-content:center!important}.md\:content-start{align-content:flex-start!important}.md\:content-end{align-content:flex-end!important}.md\:content-between{align-content:space-between!important}.md\:content-around{align-content:space-around!important}.md\:content-evenly{align-content:space-evenly!important}.md\:self-auto{align-self:auto!important}.md\:self-start{align-self:flex-start!important}.md\:self-end{align-self:flex-end!important}.md\:self-center{align-self:center!important}.md\:self-stretch{align-self:stretch!important}.md\:justify-items-auto{justify-items:auto!important}.md\:justify-items-start{justify-items:start!important}.md\:justify-items-end{justify-items:end!important}.md\:justify-items-center{justify-items:center!important}.md\:justify-items-stretch{justify-items:stretch!important}.md\:justify-start{justify-content:flex-start!important}.md\:justify-end{justify-content:flex-end!important}.md\:justify-center{justify-content:center!important}.md\:justify-between{justify-content:space-between!important}.md\:justify-around{justify-content:space-around!important}.md\:justify-evenly{justify-content:space-evenly!important}.md\:justify-self-auto{justify-self:auto!important}.md\:justify-self-start{justify-self:start!important}.md\:justify-self-end{justify-self:end!important}.md\:justify-self-center{justify-self:center!important}.md\:justify-self-stretch{justify-self:stretch!important}.md\:flex-1{flex:1 1 0%!important}.md\:flex-auto{flex:1 1 auto!important}.md\:flex-initial{flex:0 1 auto!important}.md\:flex-none{flex:none!important}.md\:flex-grow-0{flex-grow:0!important}.md\:flex-grow{flex-grow:1!important}.md\:flex-shrink-0{flex-shrink:0!important}.md\:flex-shrink{flex-shrink:1!important}.md\:order-1{order:1!important}.md\:order-2{order:2!important}.md\:order-3{order:3!important}.md\:order-4{order:4!important}.md\:order-5{order:5!important}.md\:order-6{order:6!important}.md\:order-7{order:7!important}.md\:order-8{order:8!important}.md\:order-9{order:9!important}.md\:order-10{order:10!important}.md\:order-11{order:11!important}.md\:order-12{order:12!important}.md\:order-first{order:-9999!important}.md\:order-last{order:9999!important}.md\:order-none{order:0!important}.md\:float-right{float:right!important}.md\:float-left{float:left!important}.md\:float-none{float:none!important}.md\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .md\:ltr\:float-right{float:right!important}[dir=ltr] .md\:ltr\:float-left{float:left!important}[dir=ltr] .md\:ltr\:float-none{float:none!important}[dir=ltr] .md\:ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .md\:rtl\:float-right{float:right!important}[dir=rtl] .md\:rtl\:float-left{float:left!important}[dir=rtl] .md\:rtl\:float-none{float:none!important}[dir=rtl] .md\:rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.md\:clear-left{clear:left!important}.md\:clear-right{clear:right!important}.md\:clear-both{clear:both!important}.md\:clear-none{clear:none!important}.md\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.md\:font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.md\:font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.md\:font-hairline{font-weight:100!important}.md\:font-thin{font-weight:200!important}.md\:font-light{font-weight:300!important}.md\:font-normal{font-weight:400!important}.md\:font-medium{font-weight:500!important}.md\:font-semibold{font-weight:600!important}.md\:font-bold{font-weight:700!important}.md\:font-extrabold{font-weight:800!important}.md\:font-black{font-weight:900!important}.md\:hover\:font-hairline:hover{font-weight:100!important}.md\:hover\:font-thin:hover{font-weight:200!important}.md\:hover\:font-light:hover{font-weight:300!important}.md\:hover\:font-normal:hover{font-weight:400!important}.md\:hover\:font-medium:hover{font-weight:500!important}.md\:hover\:font-semibold:hover{font-weight:600!important}.md\:hover\:font-bold:hover{font-weight:700!important}.md\:hover\:font-extrabold:hover{font-weight:800!important}.md\:hover\:font-black:hover{font-weight:900!important}.md\:focus\:font-hairline:focus{font-weight:100!important}.md\:focus\:font-thin:focus{font-weight:200!important}.md\:focus\:font-light:focus{font-weight:300!important}.md\:focus\:font-normal:focus{font-weight:400!important}.md\:focus\:font-medium:focus{font-weight:500!important}.md\:focus\:font-semibold:focus{font-weight:600!important}.md\:focus\:font-bold:focus{font-weight:700!important}.md\:focus\:font-extrabold:focus{font-weight:800!important}.md\:focus\:font-black:focus{font-weight:900!important}.md\:h-0{height:0!important}.md\:h-1{height:.25rem!important}.md\:h-2{height:.5rem!important}.md\:h-3{height:.75rem!important}.md\:h-4{height:1rem!important}.md\:h-5{height:1.25rem!important}.md\:h-6{height:1.5rem!important}.md\:h-7{height:1.75rem!important}.md\:h-8{height:2rem!important}.md\:h-9{height:2.25rem!important}.md\:h-10{height:2.5rem!important}.md\:h-11{height:2.75rem!important}.md\:h-12{height:3rem!important}.md\:h-13{height:3.25rem!important}.md\:h-14{height:3.5rem!important}.md\:h-15{height:3.75rem!important}.md\:h-16{height:4rem!important}.md\:h-20{height:5rem!important}.md\:h-24{height:6rem!important}.md\:h-28{height:7rem!important}.md\:h-32{height:8rem!important}.md\:h-36{height:9rem!important}.md\:h-40{height:10rem!important}.md\:h-48{height:12rem!important}.md\:h-56{height:14rem!important}.md\:h-60{height:15rem!important}.md\:h-64{height:16rem!important}.md\:h-72{height:18rem!important}.md\:h-80{height:20rem!important}.md\:h-96{height:24rem!important}.md\:h-auto{height:auto!important}.md\:h-px{height:1px!important}.md\:h-0\.5{height:.125rem!important}.md\:h-1\.5{height:.375rem!important}.md\:h-2\.5{height:.625rem!important}.md\:h-3\.5{height:.875rem!important}.md\:h-1\/2{height:50%!important}.md\:h-1\/3{height:33.333333%!important}.md\:h-2\/3{height:66.666667%!important}.md\:h-1\/4{height:25%!important}.md\:h-2\/4{height:50%!important}.md\:h-3\/4{height:75%!important}.md\:h-1\/5{height:20%!important}.md\:h-2\/5{height:40%!important}.md\:h-3\/5{height:60%!important}.md\:h-4\/5{height:80%!important}.md\:h-1\/6{height:16.666667%!important}.md\:h-2\/6{height:33.333333%!important}.md\:h-3\/6{height:50%!important}.md\:h-4\/6{height:66.666667%!important}.md\:h-5\/6{height:83.333333%!important}.md\:h-1\/12{height:8.333333%!important}.md\:h-2\/12{height:16.666667%!important}.md\:h-3\/12{height:25%!important}.md\:h-4\/12{height:33.333333%!important}.md\:h-5\/12{height:41.666667%!important}.md\:h-6\/12{height:50%!important}.md\:h-7\/12{height:58.333333%!important}.md\:h-8\/12{height:66.666667%!important}.md\:h-9\/12{height:75%!important}.md\:h-10\/12{height:83.333333%!important}.md\:h-11\/12{height:91.666667%!important}.md\:h-full{height:100%!important}.md\:h-screen{height:100vh!important}.md\:text-xs{font-size:.7rem!important}.md\:text-sm{font-size:.875rem!important}.md\:text-base{font-size:1rem!important}.md\:text-lg{font-size:1.125rem!important}.md\:text-xl{font-size:1.25rem!important}.md\:text-2xl{font-size:1.5rem!important}.md\:text-3xl{font-size:1.875rem!important}.md\:text-4xl{font-size:2.25rem!important}.md\:text-5xl{font-size:3rem!important}.md\:text-6xl{font-size:4rem!important}.md\:leading-3{line-height:.75rem!important}.md\:leading-4{line-height:1rem!important}.md\:leading-5{line-height:1.25rem!important}.md\:leading-6{line-height:1.5rem!important}.md\:leading-7{line-height:1.75rem!important}.md\:leading-8{line-height:2rem!important}.md\:leading-9{line-height:2.25rem!important}.md\:leading-10{line-height:2.5rem!important}.md\:leading-none{line-height:1!important}.md\:leading-tight{line-height:1.25!important}.md\:leading-snug{line-height:1.375!important}.md\:leading-normal{line-height:1.5!important}.md\:leading-relaxed{line-height:1.625!important}.md\:leading-loose{line-height:2!important}.md\:list-inside{list-style-position:inside!important}.md\:list-outside{list-style-position:outside!important}.md\:list-none{list-style-type:none!important}.md\:list-disc{list-style-type:disc!important}.md\:list-decimal{list-style-type:decimal!important}.md\:m-0{margin:0!important}.md\:m-1{margin:.25rem!important}.md\:m-2{margin:.5rem!important}.md\:m-3{margin:.75rem!important}.md\:m-4{margin:1rem!important}.md\:m-5{margin:1.25rem!important}.md\:m-6{margin:1.5rem!important}.md\:m-7{margin:1.75rem!important}.md\:m-8{margin:2rem!important}.md\:m-9{margin:2.25rem!important}.md\:m-10{margin:2.5rem!important}.md\:m-11{margin:2.75rem!important}.md\:m-12{margin:3rem!important}.md\:m-13{margin:3.25rem!important}.md\:m-14{margin:3.5rem!important}.md\:m-15{margin:3.75rem!important}.md\:m-16{margin:4rem!important}.md\:m-20{margin:5rem!important}.md\:m-24{margin:6rem!important}.md\:m-28{margin:7rem!important}.md\:m-32{margin:8rem!important}.md\:m-36{margin:9rem!important}.md\:m-40{margin:10rem!important}.md\:m-48{margin:12rem!important}.md\:m-56{margin:14rem!important}.md\:m-60{margin:15rem!important}.md\:m-64{margin:16rem!important}.md\:m-72{margin:18rem!important}.md\:m-80{margin:20rem!important}.md\:m-96{margin:24rem!important}.md\:m-auto{margin:auto!important}.md\:m-px{margin:1px!important}.md\:m-0\.5{margin:.125rem!important}.md\:m-1\.5{margin:.375rem!important}.md\:m-2\.5{margin:.625rem!important}.md\:m-3\.5{margin:.875rem!important}.md\:m-1\/2{margin:50%!important}.md\:m-1\/3{margin:33.333333%!important}.md\:m-2\/3{margin:66.666667%!important}.md\:m-1\/4{margin:25%!important}.md\:m-2\/4{margin:50%!important}.md\:m-3\/4{margin:75%!important}.md\:m-1\/5{margin:20%!important}.md\:m-2\/5{margin:40%!important}.md\:m-3\/5{margin:60%!important}.md\:m-4\/5{margin:80%!important}.md\:m-1\/6{margin:16.666667%!important}.md\:m-2\/6{margin:33.333333%!important}.md\:m-3\/6{margin:50%!important}.md\:m-4\/6{margin:66.666667%!important}.md\:m-5\/6{margin:83.333333%!important}.md\:m-1\/12{margin:8.333333%!important}.md\:m-2\/12{margin:16.666667%!important}.md\:m-3\/12{margin:25%!important}.md\:m-4\/12{margin:33.333333%!important}.md\:m-5\/12{margin:41.666667%!important}.md\:m-6\/12{margin:50%!important}.md\:m-7\/12{margin:58.333333%!important}.md\:m-8\/12{margin:66.666667%!important}.md\:m-9\/12{margin:75%!important}.md\:m-10\/12{margin:83.333333%!important}.md\:m-11\/12{margin:91.666667%!important}.md\:m-full{margin:100%!important}.md\:-m-1{margin:-.25rem!important}.md\:-m-2{margin:-.5rem!important}.md\:-m-3{margin:-.75rem!important}.md\:-m-4{margin:-1rem!important}.md\:-m-5{margin:-1.25rem!important}.md\:-m-6{margin:-1.5rem!important}.md\:-m-7{margin:-1.75rem!important}.md\:-m-8{margin:-2rem!important}.md\:-m-9{margin:-2.25rem!important}.md\:-m-10{margin:-2.5rem!important}.md\:-m-11{margin:-2.75rem!important}.md\:-m-12{margin:-3rem!important}.md\:-m-13{margin:-3.25rem!important}.md\:-m-14{margin:-3.5rem!important}.md\:-m-15{margin:-3.75rem!important}.md\:-m-16{margin:-4rem!important}.md\:-m-20{margin:-5rem!important}.md\:-m-24{margin:-6rem!important}.md\:-m-28{margin:-7rem!important}.md\:-m-32{margin:-8rem!important}.md\:-m-36{margin:-9rem!important}.md\:-m-40{margin:-10rem!important}.md\:-m-48{margin:-12rem!important}.md\:-m-56{margin:-14rem!important}.md\:-m-60{margin:-15rem!important}.md\:-m-64{margin:-16rem!important}.md\:-m-72{margin:-18rem!important}.md\:-m-80{margin:-20rem!important}.md\:-m-96{margin:-24rem!important}.md\:-m-px{margin:-1px!important}.md\:-m-0\.5{margin:-.125rem!important}.md\:-m-1\.5{margin:-.375rem!important}.md\:-m-2\.5{margin:-.625rem!important}.md\:-m-3\.5{margin:-.875rem!important}.md\:-m-1\/2{margin:-50%!important}.md\:-m-1\/3{margin:-33.33333%!important}.md\:-m-2\/3{margin:-66.66667%!important}.md\:-m-1\/4{margin:-25%!important}.md\:-m-2\/4{margin:-50%!important}.md\:-m-3\/4{margin:-75%!important}.md\:-m-1\/5{margin:-20%!important}.md\:-m-2\/5{margin:-40%!important}.md\:-m-3\/5{margin:-60%!important}.md\:-m-4\/5{margin:-80%!important}.md\:-m-1\/6{margin:-16.66667%!important}.md\:-m-2\/6{margin:-33.33333%!important}.md\:-m-3\/6{margin:-50%!important}.md\:-m-4\/6{margin:-66.66667%!important}.md\:-m-5\/6{margin:-83.33333%!important}.md\:-m-1\/12{margin:-8.33333%!important}.md\:-m-2\/12{margin:-16.66667%!important}.md\:-m-3\/12{margin:-25%!important}.md\:-m-4\/12{margin:-33.33333%!important}.md\:-m-5\/12{margin:-41.66667%!important}.md\:-m-6\/12{margin:-50%!important}.md\:-m-7\/12{margin:-58.33333%!important}.md\:-m-8\/12{margin:-66.66667%!important}.md\:-m-9\/12{margin:-75%!important}.md\:-m-10\/12{margin:-83.33333%!important}.md\:-m-11\/12{margin:-91.66667%!important}.md\:-m-full{margin:-100%!important}.md\:my-0{margin-bottom:0!important;margin-top:0!important}.md\:mx-0{margin-left:0!important;margin-right:0!important}.md\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.md\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.md\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.md\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.md\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}.md\:mx-4{margin-left:1rem!important;margin-right:1rem!important}.md\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.md\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.md\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.md\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.md\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.md\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}.md\:mx-8{margin-left:2rem!important;margin-right:2rem!important}.md\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.md\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.md\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.md\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.md\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.md\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.md\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}.md\:mx-12{margin-left:3rem!important;margin-right:3rem!important}.md\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.md\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.md\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.md\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.md\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.md\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.md\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}.md\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.md\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}.md\:mx-20{margin-left:5rem!important;margin-right:5rem!important}.md\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}.md\:mx-24{margin-left:6rem!important;margin-right:6rem!important}.md\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}.md\:mx-28{margin-left:7rem!important;margin-right:7rem!important}.md\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}.md\:mx-32{margin-left:8rem!important;margin-right:8rem!important}.md\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}.md\:mx-36{margin-left:9rem!important;margin-right:9rem!important}.md\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}.md\:mx-40{margin-left:10rem!important;margin-right:10rem!important}.md\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}.md\:mx-48{margin-left:12rem!important;margin-right:12rem!important}.md\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}.md\:mx-56{margin-left:14rem!important;margin-right:14rem!important}.md\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}.md\:mx-60{margin-left:15rem!important;margin-right:15rem!important}.md\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}.md\:mx-64{margin-left:16rem!important;margin-right:16rem!important}.md\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}.md\:mx-72{margin-left:18rem!important;margin-right:18rem!important}.md\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}.md\:mx-80{margin-left:20rem!important;margin-right:20rem!important}.md\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}.md\:mx-96{margin-left:24rem!important;margin-right:24rem!important}.md\:my-auto{margin-bottom:auto!important;margin-top:auto!important}.md\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\:my-px{margin-bottom:1px!important;margin-top:1px!important}.md\:mx-px{margin-left:1px!important;margin-right:1px!important}.md\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.md\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.md\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.md\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.md\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.md\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.md\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.md\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.md\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.md\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}.md\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.md\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.md\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.md\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.md\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.md\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}.md\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.md\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}.md\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.md\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}.md\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.md\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}.md\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.md\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}.md\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.md\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}.md\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.md\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}.md\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.md\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.md\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.md\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.md\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.md\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}.md\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.md\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.md\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.md\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.md\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.md\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.md\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.md\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.md\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.md\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}.md\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.md\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.md\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.md\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.md\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.md\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}.md\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.md\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.md\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.md\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.md\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.md\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}.md\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.md\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.md\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.md\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.md\:my-full{margin-bottom:100%!important;margin-top:100%!important}.md\:mx-full{margin-left:100%!important;margin-right:100%!important}.md\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.md\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.md\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.md\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.md\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.md\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.md\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.md\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.md\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.md\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.md\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.md\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.md\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.md\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.md\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.md\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.md\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.md\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.md\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.md\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.md\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.md\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.md\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.md\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.md\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.md\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.md\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.md\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.md\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.md\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.md\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.md\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.md\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.md\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.md\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.md\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.md\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.md\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.md\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.md\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.md\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.md\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.md\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.md\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.md\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.md\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.md\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.md\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.md\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.md\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.md\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.md\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.md\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.md\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.md\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.md\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.md\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}.md\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.md\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.md\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.md\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.md\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.md\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.md\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.md\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.md\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.md\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.md\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.md\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.md\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.md\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.md\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.md\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.md\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.md\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.md\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.md\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.md\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.md\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.md\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.md\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.md\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.md\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.md\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.md\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.md\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.md\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.md\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.md\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.md\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.md\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.md\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.md\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.md\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.md\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.md\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.md\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.md\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.md\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.md\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.md\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.md\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.md\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.md\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.md\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.md\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.md\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.md\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.md\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.md\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.md\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.md\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.md\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.md\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.md\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.md\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.md\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.md\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.md\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}.md\:mt-0{margin-top:0!important}.md\:mr-0{margin-right:0!important}.md\:mb-0{margin-bottom:0!important}.md\:ml-0{margin-left:0!important}.md\:mt-1{margin-top:.25rem!important}.md\:mr-1{margin-right:.25rem!important}.md\:mb-1{margin-bottom:.25rem!important}.md\:ml-1{margin-left:.25rem!important}.md\:mt-2{margin-top:.5rem!important}.md\:mr-2{margin-right:.5rem!important}.md\:mb-2{margin-bottom:.5rem!important}.md\:ml-2{margin-left:.5rem!important}.md\:mt-3{margin-top:.75rem!important}.md\:mr-3{margin-right:.75rem!important}.md\:mb-3{margin-bottom:.75rem!important}.md\:ml-3{margin-left:.75rem!important}.md\:mt-4{margin-top:1rem!important}.md\:mr-4{margin-right:1rem!important}.md\:mb-4{margin-bottom:1rem!important}.md\:ml-4{margin-left:1rem!important}.md\:mt-5{margin-top:1.25rem!important}.md\:mr-5{margin-right:1.25rem!important}.md\:mb-5{margin-bottom:1.25rem!important}.md\:ml-5{margin-left:1.25rem!important}.md\:mt-6{margin-top:1.5rem!important}.md\:mr-6{margin-right:1.5rem!important}.md\:mb-6{margin-bottom:1.5rem!important}.md\:ml-6{margin-left:1.5rem!important}.md\:mt-7{margin-top:1.75rem!important}.md\:mr-7{margin-right:1.75rem!important}.md\:mb-7{margin-bottom:1.75rem!important}.md\:ml-7{margin-left:1.75rem!important}.md\:mt-8{margin-top:2rem!important}.md\:mr-8{margin-right:2rem!important}.md\:mb-8{margin-bottom:2rem!important}.md\:ml-8{margin-left:2rem!important}.md\:mt-9{margin-top:2.25rem!important}.md\:mr-9{margin-right:2.25rem!important}.md\:mb-9{margin-bottom:2.25rem!important}.md\:ml-9{margin-left:2.25rem!important}.md\:mt-10{margin-top:2.5rem!important}.md\:mr-10{margin-right:2.5rem!important}.md\:mb-10{margin-bottom:2.5rem!important}.md\:ml-10{margin-left:2.5rem!important}.md\:mt-11{margin-top:2.75rem!important}.md\:mr-11{margin-right:2.75rem!important}.md\:mb-11{margin-bottom:2.75rem!important}.md\:ml-11{margin-left:2.75rem!important}.md\:mt-12{margin-top:3rem!important}.md\:mr-12{margin-right:3rem!important}.md\:mb-12{margin-bottom:3rem!important}.md\:ml-12{margin-left:3rem!important}.md\:mt-13{margin-top:3.25rem!important}.md\:mr-13{margin-right:3.25rem!important}.md\:mb-13{margin-bottom:3.25rem!important}.md\:ml-13{margin-left:3.25rem!important}.md\:mt-14{margin-top:3.5rem!important}.md\:mr-14{margin-right:3.5rem!important}.md\:mb-14{margin-bottom:3.5rem!important}.md\:ml-14{margin-left:3.5rem!important}.md\:mt-15{margin-top:3.75rem!important}.md\:mr-15{margin-right:3.75rem!important}.md\:mb-15{margin-bottom:3.75rem!important}.md\:ml-15{margin-left:3.75rem!important}.md\:mt-16{margin-top:4rem!important}.md\:mr-16{margin-right:4rem!important}.md\:mb-16{margin-bottom:4rem!important}.md\:ml-16{margin-left:4rem!important}.md\:mt-20{margin-top:5rem!important}.md\:mr-20{margin-right:5rem!important}.md\:mb-20{margin-bottom:5rem!important}.md\:ml-20{margin-left:5rem!important}.md\:mt-24{margin-top:6rem!important}.md\:mr-24{margin-right:6rem!important}.md\:mb-24{margin-bottom:6rem!important}.md\:ml-24{margin-left:6rem!important}.md\:mt-28{margin-top:7rem!important}.md\:mr-28{margin-right:7rem!important}.md\:mb-28{margin-bottom:7rem!important}.md\:ml-28{margin-left:7rem!important}.md\:mt-32{margin-top:8rem!important}.md\:mr-32{margin-right:8rem!important}.md\:mb-32{margin-bottom:8rem!important}.md\:ml-32{margin-left:8rem!important}.md\:mt-36{margin-top:9rem!important}.md\:mr-36{margin-right:9rem!important}.md\:mb-36{margin-bottom:9rem!important}.md\:ml-36{margin-left:9rem!important}.md\:mt-40{margin-top:10rem!important}.md\:mr-40{margin-right:10rem!important}.md\:mb-40{margin-bottom:10rem!important}.md\:ml-40{margin-left:10rem!important}.md\:mt-48{margin-top:12rem!important}.md\:mr-48{margin-right:12rem!important}.md\:mb-48{margin-bottom:12rem!important}.md\:ml-48{margin-left:12rem!important}.md\:mt-56{margin-top:14rem!important}.md\:mr-56{margin-right:14rem!important}.md\:mb-56{margin-bottom:14rem!important}.md\:ml-56{margin-left:14rem!important}.md\:mt-60{margin-top:15rem!important}.md\:mr-60{margin-right:15rem!important}.md\:mb-60{margin-bottom:15rem!important}.md\:ml-60{margin-left:15rem!important}.md\:mt-64{margin-top:16rem!important}.md\:mr-64{margin-right:16rem!important}.md\:mb-64{margin-bottom:16rem!important}.md\:ml-64{margin-left:16rem!important}.md\:mt-72{margin-top:18rem!important}.md\:mr-72{margin-right:18rem!important}.md\:mb-72{margin-bottom:18rem!important}.md\:ml-72{margin-left:18rem!important}.md\:mt-80{margin-top:20rem!important}.md\:mr-80{margin-right:20rem!important}.md\:mb-80{margin-bottom:20rem!important}.md\:ml-80{margin-left:20rem!important}.md\:mt-96{margin-top:24rem!important}.md\:mr-96{margin-right:24rem!important}.md\:mb-96{margin-bottom:24rem!important}.md\:ml-96{margin-left:24rem!important}.md\:mt-auto{margin-top:auto!important}.md\:mr-auto{margin-right:auto!important}.md\:mb-auto{margin-bottom:auto!important}.md\:ml-auto{margin-left:auto!important}.md\:mt-px{margin-top:1px!important}.md\:mr-px{margin-right:1px!important}.md\:mb-px{margin-bottom:1px!important}.md\:ml-px{margin-left:1px!important}.md\:mt-0\.5{margin-top:.125rem!important}.md\:mr-0\.5{margin-right:.125rem!important}.md\:mb-0\.5{margin-bottom:.125rem!important}.md\:ml-0\.5{margin-left:.125rem!important}.md\:mt-1\.5{margin-top:.375rem!important}.md\:mr-1\.5{margin-right:.375rem!important}.md\:mb-1\.5{margin-bottom:.375rem!important}.md\:ml-1\.5{margin-left:.375rem!important}.md\:mt-2\.5{margin-top:.625rem!important}.md\:mr-2\.5{margin-right:.625rem!important}.md\:mb-2\.5{margin-bottom:.625rem!important}.md\:ml-2\.5{margin-left:.625rem!important}.md\:mt-3\.5{margin-top:.875rem!important}.md\:mr-3\.5{margin-right:.875rem!important}.md\:mb-3\.5{margin-bottom:.875rem!important}.md\:ml-3\.5{margin-left:.875rem!important}.md\:mt-1\/2{margin-top:50%!important}.md\:mr-1\/2{margin-right:50%!important}.md\:mb-1\/2{margin-bottom:50%!important}.md\:ml-1\/2{margin-left:50%!important}.md\:mt-1\/3{margin-top:33.333333%!important}.md\:mr-1\/3{margin-right:33.333333%!important}.md\:mb-1\/3{margin-bottom:33.333333%!important}.md\:ml-1\/3{margin-left:33.333333%!important}.md\:mt-2\/3{margin-top:66.666667%!important}.md\:mr-2\/3{margin-right:66.666667%!important}.md\:mb-2\/3{margin-bottom:66.666667%!important}.md\:ml-2\/3{margin-left:66.666667%!important}.md\:mt-1\/4{margin-top:25%!important}.md\:mr-1\/4{margin-right:25%!important}.md\:mb-1\/4{margin-bottom:25%!important}.md\:ml-1\/4{margin-left:25%!important}.md\:mt-2\/4{margin-top:50%!important}.md\:mr-2\/4{margin-right:50%!important}.md\:mb-2\/4{margin-bottom:50%!important}.md\:ml-2\/4{margin-left:50%!important}.md\:mt-3\/4{margin-top:75%!important}.md\:mr-3\/4{margin-right:75%!important}.md\:mb-3\/4{margin-bottom:75%!important}.md\:ml-3\/4{margin-left:75%!important}.md\:mt-1\/5{margin-top:20%!important}.md\:mr-1\/5{margin-right:20%!important}.md\:mb-1\/5{margin-bottom:20%!important}.md\:ml-1\/5{margin-left:20%!important}.md\:mt-2\/5{margin-top:40%!important}.md\:mr-2\/5{margin-right:40%!important}.md\:mb-2\/5{margin-bottom:40%!important}.md\:ml-2\/5{margin-left:40%!important}.md\:mt-3\/5{margin-top:60%!important}.md\:mr-3\/5{margin-right:60%!important}.md\:mb-3\/5{margin-bottom:60%!important}.md\:ml-3\/5{margin-left:60%!important}.md\:mt-4\/5{margin-top:80%!important}.md\:mr-4\/5{margin-right:80%!important}.md\:mb-4\/5{margin-bottom:80%!important}.md\:ml-4\/5{margin-left:80%!important}.md\:mt-1\/6{margin-top:16.666667%!important}.md\:mr-1\/6{margin-right:16.666667%!important}.md\:mb-1\/6{margin-bottom:16.666667%!important}.md\:ml-1\/6{margin-left:16.666667%!important}.md\:mt-2\/6{margin-top:33.333333%!important}.md\:mr-2\/6{margin-right:33.333333%!important}.md\:mb-2\/6{margin-bottom:33.333333%!important}.md\:ml-2\/6{margin-left:33.333333%!important}.md\:mt-3\/6{margin-top:50%!important}.md\:mr-3\/6{margin-right:50%!important}.md\:mb-3\/6{margin-bottom:50%!important}.md\:ml-3\/6{margin-left:50%!important}.md\:mt-4\/6{margin-top:66.666667%!important}.md\:mr-4\/6{margin-right:66.666667%!important}.md\:mb-4\/6{margin-bottom:66.666667%!important}.md\:ml-4\/6{margin-left:66.666667%!important}.md\:mt-5\/6{margin-top:83.333333%!important}.md\:mr-5\/6{margin-right:83.333333%!important}.md\:mb-5\/6{margin-bottom:83.333333%!important}.md\:ml-5\/6{margin-left:83.333333%!important}.md\:mt-1\/12{margin-top:8.333333%!important}.md\:mr-1\/12{margin-right:8.333333%!important}.md\:mb-1\/12{margin-bottom:8.333333%!important}.md\:ml-1\/12{margin-left:8.333333%!important}.md\:mt-2\/12{margin-top:16.666667%!important}.md\:mr-2\/12{margin-right:16.666667%!important}.md\:mb-2\/12{margin-bottom:16.666667%!important}.md\:ml-2\/12{margin-left:16.666667%!important}.md\:mt-3\/12{margin-top:25%!important}.md\:mr-3\/12{margin-right:25%!important}.md\:mb-3\/12{margin-bottom:25%!important}.md\:ml-3\/12{margin-left:25%!important}.md\:mt-4\/12{margin-top:33.333333%!important}.md\:mr-4\/12{margin-right:33.333333%!important}.md\:mb-4\/12{margin-bottom:33.333333%!important}.md\:ml-4\/12{margin-left:33.333333%!important}.md\:mt-5\/12{margin-top:41.666667%!important}.md\:mr-5\/12{margin-right:41.666667%!important}.md\:mb-5\/12{margin-bottom:41.666667%!important}.md\:ml-5\/12{margin-left:41.666667%!important}.md\:mt-6\/12{margin-top:50%!important}.md\:mr-6\/12{margin-right:50%!important}.md\:mb-6\/12{margin-bottom:50%!important}.md\:ml-6\/12{margin-left:50%!important}.md\:mt-7\/12{margin-top:58.333333%!important}.md\:mr-7\/12{margin-right:58.333333%!important}.md\:mb-7\/12{margin-bottom:58.333333%!important}.md\:ml-7\/12{margin-left:58.333333%!important}.md\:mt-8\/12{margin-top:66.666667%!important}.md\:mr-8\/12{margin-right:66.666667%!important}.md\:mb-8\/12{margin-bottom:66.666667%!important}.md\:ml-8\/12{margin-left:66.666667%!important}.md\:mt-9\/12{margin-top:75%!important}.md\:mr-9\/12{margin-right:75%!important}.md\:mb-9\/12{margin-bottom:75%!important}.md\:ml-9\/12{margin-left:75%!important}.md\:mt-10\/12{margin-top:83.333333%!important}.md\:mr-10\/12{margin-right:83.333333%!important}.md\:mb-10\/12{margin-bottom:83.333333%!important}.md\:ml-10\/12{margin-left:83.333333%!important}.md\:mt-11\/12{margin-top:91.666667%!important}.md\:mr-11\/12{margin-right:91.666667%!important}.md\:mb-11\/12{margin-bottom:91.666667%!important}.md\:ml-11\/12{margin-left:91.666667%!important}.md\:mt-full{margin-top:100%!important}.md\:mr-full{margin-right:100%!important}.md\:mb-full{margin-bottom:100%!important}.md\:ml-full{margin-left:100%!important}.md\:-mt-1{margin-top:-.25rem!important}.md\:-mr-1{margin-right:-.25rem!important}.md\:-mb-1{margin-bottom:-.25rem!important}.md\:-ml-1{margin-left:-.25rem!important}.md\:-mt-2{margin-top:-.5rem!important}.md\:-mr-2{margin-right:-.5rem!important}.md\:-mb-2{margin-bottom:-.5rem!important}.md\:-ml-2{margin-left:-.5rem!important}.md\:-mt-3{margin-top:-.75rem!important}.md\:-mr-3{margin-right:-.75rem!important}.md\:-mb-3{margin-bottom:-.75rem!important}.md\:-ml-3{margin-left:-.75rem!important}.md\:-mt-4{margin-top:-1rem!important}.md\:-mr-4{margin-right:-1rem!important}.md\:-mb-4{margin-bottom:-1rem!important}.md\:-ml-4{margin-left:-1rem!important}.md\:-mt-5{margin-top:-1.25rem!important}.md\:-mr-5{margin-right:-1.25rem!important}.md\:-mb-5{margin-bottom:-1.25rem!important}.md\:-ml-5{margin-left:-1.25rem!important}.md\:-mt-6{margin-top:-1.5rem!important}.md\:-mr-6{margin-right:-1.5rem!important}.md\:-mb-6{margin-bottom:-1.5rem!important}.md\:-ml-6{margin-left:-1.5rem!important}.md\:-mt-7{margin-top:-1.75rem!important}.md\:-mr-7{margin-right:-1.75rem!important}.md\:-mb-7{margin-bottom:-1.75rem!important}.md\:-ml-7{margin-left:-1.75rem!important}.md\:-mt-8{margin-top:-2rem!important}.md\:-mr-8{margin-right:-2rem!important}.md\:-mb-8{margin-bottom:-2rem!important}.md\:-ml-8{margin-left:-2rem!important}.md\:-mt-9{margin-top:-2.25rem!important}.md\:-mr-9{margin-right:-2.25rem!important}.md\:-mb-9{margin-bottom:-2.25rem!important}.md\:-ml-9{margin-left:-2.25rem!important}.md\:-mt-10{margin-top:-2.5rem!important}.md\:-mr-10{margin-right:-2.5rem!important}.md\:-mb-10{margin-bottom:-2.5rem!important}.md\:-ml-10{margin-left:-2.5rem!important}.md\:-mt-11{margin-top:-2.75rem!important}.md\:-mr-11{margin-right:-2.75rem!important}.md\:-mb-11{margin-bottom:-2.75rem!important}.md\:-ml-11{margin-left:-2.75rem!important}.md\:-mt-12{margin-top:-3rem!important}.md\:-mr-12{margin-right:-3rem!important}.md\:-mb-12{margin-bottom:-3rem!important}.md\:-ml-12{margin-left:-3rem!important}.md\:-mt-13{margin-top:-3.25rem!important}.md\:-mr-13{margin-right:-3.25rem!important}.md\:-mb-13{margin-bottom:-3.25rem!important}.md\:-ml-13{margin-left:-3.25rem!important}.md\:-mt-14{margin-top:-3.5rem!important}.md\:-mr-14{margin-right:-3.5rem!important}.md\:-mb-14{margin-bottom:-3.5rem!important}.md\:-ml-14{margin-left:-3.5rem!important}.md\:-mt-15{margin-top:-3.75rem!important}.md\:-mr-15{margin-right:-3.75rem!important}.md\:-mb-15{margin-bottom:-3.75rem!important}.md\:-ml-15{margin-left:-3.75rem!important}.md\:-mt-16{margin-top:-4rem!important}.md\:-mr-16{margin-right:-4rem!important}.md\:-mb-16{margin-bottom:-4rem!important}.md\:-ml-16{margin-left:-4rem!important}.md\:-mt-20{margin-top:-5rem!important}.md\:-mr-20{margin-right:-5rem!important}.md\:-mb-20{margin-bottom:-5rem!important}.md\:-ml-20{margin-left:-5rem!important}.md\:-mt-24{margin-top:-6rem!important}.md\:-mr-24{margin-right:-6rem!important}.md\:-mb-24{margin-bottom:-6rem!important}.md\:-ml-24{margin-left:-6rem!important}.md\:-mt-28{margin-top:-7rem!important}.md\:-mr-28{margin-right:-7rem!important}.md\:-mb-28{margin-bottom:-7rem!important}.md\:-ml-28{margin-left:-7rem!important}.md\:-mt-32{margin-top:-8rem!important}.md\:-mr-32{margin-right:-8rem!important}.md\:-mb-32{margin-bottom:-8rem!important}.md\:-ml-32{margin-left:-8rem!important}.md\:-mt-36{margin-top:-9rem!important}.md\:-mr-36{margin-right:-9rem!important}.md\:-mb-36{margin-bottom:-9rem!important}.md\:-ml-36{margin-left:-9rem!important}.md\:-mt-40{margin-top:-10rem!important}.md\:-mr-40{margin-right:-10rem!important}.md\:-mb-40{margin-bottom:-10rem!important}.md\:-ml-40{margin-left:-10rem!important}.md\:-mt-48{margin-top:-12rem!important}.md\:-mr-48{margin-right:-12rem!important}.md\:-mb-48{margin-bottom:-12rem!important}.md\:-ml-48{margin-left:-12rem!important}.md\:-mt-56{margin-top:-14rem!important}.md\:-mr-56{margin-right:-14rem!important}.md\:-mb-56{margin-bottom:-14rem!important}.md\:-ml-56{margin-left:-14rem!important}.md\:-mt-60{margin-top:-15rem!important}.md\:-mr-60{margin-right:-15rem!important}.md\:-mb-60{margin-bottom:-15rem!important}.md\:-ml-60{margin-left:-15rem!important}.md\:-mt-64{margin-top:-16rem!important}.md\:-mr-64{margin-right:-16rem!important}.md\:-mb-64{margin-bottom:-16rem!important}.md\:-ml-64{margin-left:-16rem!important}.md\:-mt-72{margin-top:-18rem!important}.md\:-mr-72{margin-right:-18rem!important}.md\:-mb-72{margin-bottom:-18rem!important}.md\:-ml-72{margin-left:-18rem!important}.md\:-mt-80{margin-top:-20rem!important}.md\:-mr-80{margin-right:-20rem!important}.md\:-mb-80{margin-bottom:-20rem!important}.md\:-ml-80{margin-left:-20rem!important}.md\:-mt-96{margin-top:-24rem!important}.md\:-mr-96{margin-right:-24rem!important}.md\:-mb-96{margin-bottom:-24rem!important}.md\:-ml-96{margin-left:-24rem!important}.md\:-mt-px{margin-top:-1px!important}.md\:-mr-px{margin-right:-1px!important}.md\:-mb-px{margin-bottom:-1px!important}.md\:-ml-px{margin-left:-1px!important}.md\:-mt-0\.5{margin-top:-.125rem!important}.md\:-mr-0\.5{margin-right:-.125rem!important}.md\:-mb-0\.5{margin-bottom:-.125rem!important}.md\:-ml-0\.5{margin-left:-.125rem!important}.md\:-mt-1\.5{margin-top:-.375rem!important}.md\:-mr-1\.5{margin-right:-.375rem!important}.md\:-mb-1\.5{margin-bottom:-.375rem!important}.md\:-ml-1\.5{margin-left:-.375rem!important}.md\:-mt-2\.5{margin-top:-.625rem!important}.md\:-mr-2\.5{margin-right:-.625rem!important}.md\:-mb-2\.5{margin-bottom:-.625rem!important}.md\:-ml-2\.5{margin-left:-.625rem!important}.md\:-mt-3\.5{margin-top:-.875rem!important}.md\:-mr-3\.5{margin-right:-.875rem!important}.md\:-mb-3\.5{margin-bottom:-.875rem!important}.md\:-ml-3\.5{margin-left:-.875rem!important}.md\:-mt-1\/2{margin-top:-50%!important}.md\:-mr-1\/2{margin-right:-50%!important}.md\:-mb-1\/2{margin-bottom:-50%!important}.md\:-ml-1\/2{margin-left:-50%!important}.md\:-mt-1\/3{margin-top:-33.33333%!important}.md\:-mr-1\/3{margin-right:-33.33333%!important}.md\:-mb-1\/3{margin-bottom:-33.33333%!important}.md\:-ml-1\/3{margin-left:-33.33333%!important}.md\:-mt-2\/3{margin-top:-66.66667%!important}.md\:-mr-2\/3{margin-right:-66.66667%!important}.md\:-mb-2\/3{margin-bottom:-66.66667%!important}.md\:-ml-2\/3{margin-left:-66.66667%!important}.md\:-mt-1\/4{margin-top:-25%!important}.md\:-mr-1\/4{margin-right:-25%!important}.md\:-mb-1\/4{margin-bottom:-25%!important}.md\:-ml-1\/4{margin-left:-25%!important}.md\:-mt-2\/4{margin-top:-50%!important}.md\:-mr-2\/4{margin-right:-50%!important}.md\:-mb-2\/4{margin-bottom:-50%!important}.md\:-ml-2\/4{margin-left:-50%!important}.md\:-mt-3\/4{margin-top:-75%!important}.md\:-mr-3\/4{margin-right:-75%!important}.md\:-mb-3\/4{margin-bottom:-75%!important}.md\:-ml-3\/4{margin-left:-75%!important}.md\:-mt-1\/5{margin-top:-20%!important}.md\:-mr-1\/5{margin-right:-20%!important}.md\:-mb-1\/5{margin-bottom:-20%!important}.md\:-ml-1\/5{margin-left:-20%!important}.md\:-mt-2\/5{margin-top:-40%!important}.md\:-mr-2\/5{margin-right:-40%!important}.md\:-mb-2\/5{margin-bottom:-40%!important}.md\:-ml-2\/5{margin-left:-40%!important}.md\:-mt-3\/5{margin-top:-60%!important}.md\:-mr-3\/5{margin-right:-60%!important}.md\:-mb-3\/5{margin-bottom:-60%!important}.md\:-ml-3\/5{margin-left:-60%!important}.md\:-mt-4\/5{margin-top:-80%!important}.md\:-mr-4\/5{margin-right:-80%!important}.md\:-mb-4\/5{margin-bottom:-80%!important}.md\:-ml-4\/5{margin-left:-80%!important}.md\:-mt-1\/6{margin-top:-16.66667%!important}.md\:-mr-1\/6{margin-right:-16.66667%!important}.md\:-mb-1\/6{margin-bottom:-16.66667%!important}.md\:-ml-1\/6{margin-left:-16.66667%!important}.md\:-mt-2\/6{margin-top:-33.33333%!important}.md\:-mr-2\/6{margin-right:-33.33333%!important}.md\:-mb-2\/6{margin-bottom:-33.33333%!important}.md\:-ml-2\/6{margin-left:-33.33333%!important}.md\:-mt-3\/6{margin-top:-50%!important}.md\:-mr-3\/6{margin-right:-50%!important}.md\:-mb-3\/6{margin-bottom:-50%!important}.md\:-ml-3\/6{margin-left:-50%!important}.md\:-mt-4\/6{margin-top:-66.66667%!important}.md\:-mr-4\/6{margin-right:-66.66667%!important}.md\:-mb-4\/6{margin-bottom:-66.66667%!important}.md\:-ml-4\/6{margin-left:-66.66667%!important}.md\:-mt-5\/6{margin-top:-83.33333%!important}.md\:-mr-5\/6{margin-right:-83.33333%!important}.md\:-mb-5\/6{margin-bottom:-83.33333%!important}.md\:-ml-5\/6{margin-left:-83.33333%!important}.md\:-mt-1\/12{margin-top:-8.33333%!important}.md\:-mr-1\/12{margin-right:-8.33333%!important}.md\:-mb-1\/12{margin-bottom:-8.33333%!important}.md\:-ml-1\/12{margin-left:-8.33333%!important}.md\:-mt-2\/12{margin-top:-16.66667%!important}.md\:-mr-2\/12{margin-right:-16.66667%!important}.md\:-mb-2\/12{margin-bottom:-16.66667%!important}.md\:-ml-2\/12{margin-left:-16.66667%!important}.md\:-mt-3\/12{margin-top:-25%!important}.md\:-mr-3\/12{margin-right:-25%!important}.md\:-mb-3\/12{margin-bottom:-25%!important}.md\:-ml-3\/12{margin-left:-25%!important}.md\:-mt-4\/12{margin-top:-33.33333%!important}.md\:-mr-4\/12{margin-right:-33.33333%!important}.md\:-mb-4\/12{margin-bottom:-33.33333%!important}.md\:-ml-4\/12{margin-left:-33.33333%!important}.md\:-mt-5\/12{margin-top:-41.66667%!important}.md\:-mr-5\/12{margin-right:-41.66667%!important}.md\:-mb-5\/12{margin-bottom:-41.66667%!important}.md\:-ml-5\/12{margin-left:-41.66667%!important}.md\:-mt-6\/12{margin-top:-50%!important}.md\:-mr-6\/12{margin-right:-50%!important}.md\:-mb-6\/12{margin-bottom:-50%!important}.md\:-ml-6\/12{margin-left:-50%!important}.md\:-mt-7\/12{margin-top:-58.33333%!important}.md\:-mr-7\/12{margin-right:-58.33333%!important}.md\:-mb-7\/12{margin-bottom:-58.33333%!important}.md\:-ml-7\/12{margin-left:-58.33333%!important}.md\:-mt-8\/12{margin-top:-66.66667%!important}.md\:-mr-8\/12{margin-right:-66.66667%!important}.md\:-mb-8\/12{margin-bottom:-66.66667%!important}.md\:-ml-8\/12{margin-left:-66.66667%!important}.md\:-mt-9\/12{margin-top:-75%!important}.md\:-mr-9\/12{margin-right:-75%!important}.md\:-mb-9\/12{margin-bottom:-75%!important}.md\:-ml-9\/12{margin-left:-75%!important}.md\:-mt-10\/12{margin-top:-83.33333%!important}.md\:-mr-10\/12{margin-right:-83.33333%!important}.md\:-mb-10\/12{margin-bottom:-83.33333%!important}.md\:-ml-10\/12{margin-left:-83.33333%!important}.md\:-mt-11\/12{margin-top:-91.66667%!important}.md\:-mr-11\/12{margin-right:-91.66667%!important}.md\:-mb-11\/12{margin-bottom:-91.66667%!important}.md\:-ml-11\/12{margin-left:-91.66667%!important}.md\:-mt-full{margin-top:-100%!important}.md\:-mr-full{margin-right:-100%!important}.md\:-mb-full{margin-bottom:-100%!important}.md\:-ml-full{margin-left:-100%!important}[dir=ltr] .md\:ltr\:m-0{margin:0!important}[dir=ltr] .md\:ltr\:m-1{margin:.25rem!important}[dir=ltr] .md\:ltr\:m-2{margin:.5rem!important}[dir=ltr] .md\:ltr\:m-3{margin:.75rem!important}[dir=ltr] .md\:ltr\:m-4{margin:1rem!important}[dir=ltr] .md\:ltr\:m-5{margin:1.25rem!important}[dir=ltr] .md\:ltr\:m-6{margin:1.5rem!important}[dir=ltr] .md\:ltr\:m-7{margin:1.75rem!important}[dir=ltr] .md\:ltr\:m-8{margin:2rem!important}[dir=ltr] .md\:ltr\:m-9{margin:2.25rem!important}[dir=ltr] .md\:ltr\:m-10{margin:2.5rem!important}[dir=ltr] .md\:ltr\:m-11{margin:2.75rem!important}[dir=ltr] .md\:ltr\:m-12{margin:3rem!important}[dir=ltr] .md\:ltr\:m-13{margin:3.25rem!important}[dir=ltr] .md\:ltr\:m-14{margin:3.5rem!important}[dir=ltr] .md\:ltr\:m-15{margin:3.75rem!important}[dir=ltr] .md\:ltr\:m-16{margin:4rem!important}[dir=ltr] .md\:ltr\:m-20{margin:5rem!important}[dir=ltr] .md\:ltr\:m-24{margin:6rem!important}[dir=ltr] .md\:ltr\:m-28{margin:7rem!important}[dir=ltr] .md\:ltr\:m-32{margin:8rem!important}[dir=ltr] .md\:ltr\:m-36{margin:9rem!important}[dir=ltr] .md\:ltr\:m-40{margin:10rem!important}[dir=ltr] .md\:ltr\:m-48{margin:12rem!important}[dir=ltr] .md\:ltr\:m-56{margin:14rem!important}[dir=ltr] .md\:ltr\:m-60{margin:15rem!important}[dir=ltr] .md\:ltr\:m-64{margin:16rem!important}[dir=ltr] .md\:ltr\:m-72{margin:18rem!important}[dir=ltr] .md\:ltr\:m-80{margin:20rem!important}[dir=ltr] .md\:ltr\:m-96{margin:24rem!important}[dir=ltr] .md\:ltr\:m-auto{margin:auto!important}[dir=ltr] .md\:ltr\:m-px{margin:1px!important}[dir=ltr] .md\:ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .md\:ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .md\:ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .md\:ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .md\:ltr\:m-1\/2{margin:50%!important}[dir=ltr] .md\:ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .md\:ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .md\:ltr\:m-1\/4{margin:25%!important}[dir=ltr] .md\:ltr\:m-2\/4{margin:50%!important}[dir=ltr] .md\:ltr\:m-3\/4{margin:75%!important}[dir=ltr] .md\:ltr\:m-1\/5{margin:20%!important}[dir=ltr] .md\:ltr\:m-2\/5{margin:40%!important}[dir=ltr] .md\:ltr\:m-3\/5{margin:60%!important}[dir=ltr] .md\:ltr\:m-4\/5{margin:80%!important}[dir=ltr] .md\:ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .md\:ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .md\:ltr\:m-3\/6{margin:50%!important}[dir=ltr] .md\:ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .md\:ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .md\:ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .md\:ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .md\:ltr\:m-3\/12{margin:25%!important}[dir=ltr] .md\:ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .md\:ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .md\:ltr\:m-6\/12{margin:50%!important}[dir=ltr] .md\:ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .md\:ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .md\:ltr\:m-9\/12{margin:75%!important}[dir=ltr] .md\:ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .md\:ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .md\:ltr\:m-full{margin:100%!important}[dir=ltr] .md\:ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .md\:ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .md\:ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .md\:ltr\:-m-4{margin:-1rem!important}[dir=ltr] .md\:ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .md\:ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .md\:ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .md\:ltr\:-m-8{margin:-2rem!important}[dir=ltr] .md\:ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .md\:ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .md\:ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .md\:ltr\:-m-12{margin:-3rem!important}[dir=ltr] .md\:ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .md\:ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .md\:ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .md\:ltr\:-m-16{margin:-4rem!important}[dir=ltr] .md\:ltr\:-m-20{margin:-5rem!important}[dir=ltr] .md\:ltr\:-m-24{margin:-6rem!important}[dir=ltr] .md\:ltr\:-m-28{margin:-7rem!important}[dir=ltr] .md\:ltr\:-m-32{margin:-8rem!important}[dir=ltr] .md\:ltr\:-m-36{margin:-9rem!important}[dir=ltr] .md\:ltr\:-m-40{margin:-10rem!important}[dir=ltr] .md\:ltr\:-m-48{margin:-12rem!important}[dir=ltr] .md\:ltr\:-m-56{margin:-14rem!important}[dir=ltr] .md\:ltr\:-m-60{margin:-15rem!important}[dir=ltr] .md\:ltr\:-m-64{margin:-16rem!important}[dir=ltr] .md\:ltr\:-m-72{margin:-18rem!important}[dir=ltr] .md\:ltr\:-m-80{margin:-20rem!important}[dir=ltr] .md\:ltr\:-m-96{margin:-24rem!important}[dir=ltr] .md\:ltr\:-m-px{margin:-1px!important}[dir=ltr] .md\:ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .md\:ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .md\:ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .md\:ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .md\:ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .md\:ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .md\:ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .md\:ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .md\:ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .md\:ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .md\:ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .md\:ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .md\:ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .md\:ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .md\:ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .md\:ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .md\:ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .md\:ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .md\:ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .md\:ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .md\:ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .md\:ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .md\:ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .md\:ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .md\:ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .md\:ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .md\:ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .md\:ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .md\:ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .md\:ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .md\:ltr\:-m-full{margin:-100%!important}[dir=ltr] .md\:ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .md\:ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .md\:ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .md\:ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .md\:ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .md\:ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .md\:ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .md\:ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .md\:ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .md\:ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .md\:ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .md\:ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .md\:ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .md\:ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .md\:ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .md\:ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .md\:ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .md\:ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .md\:ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .md\:ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .md\:ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .md\:ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .md\:ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .md\:ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .md\:ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .md\:ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .md\:ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .md\:ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .md\:ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .md\:ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .md\:ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .md\:ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .md\:ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .md\:ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .md\:ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .md\:ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .md\:ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .md\:ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .md\:ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .md\:ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .md\:ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .md\:ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .md\:ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .md\:ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .md\:ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .md\:ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .md\:ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .md\:ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .md\:ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .md\:ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .md\:ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .md\:ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .md\:ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .md\:ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .md\:ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .md\:ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .md\:ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .md\:ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .md\:ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .md\:ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .md\:ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .md\:ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .md\:ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .md\:ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .md\:ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .md\:ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .md\:ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .md\:ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .md\:ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .md\:ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .md\:ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .md\:ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .md\:ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .md\:ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .md\:ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .md\:ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .md\:ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .md\:ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .md\:ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .md\:ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .md\:ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .md\:ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .md\:ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .md\:ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .md\:ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .md\:ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .md\:ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .md\:ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .md\:ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .md\:ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .md\:ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .md\:ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .md\:ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .md\:ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .md\:ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .md\:ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .md\:ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .md\:ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .md\:ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .md\:ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .md\:ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .md\:ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .md\:ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .md\:ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .md\:ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .md\:ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .md\:ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .md\:ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .md\:ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .md\:ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .md\:ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .md\:ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .md\:ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .md\:ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .md\:ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .md\:ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .md\:ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .md\:ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .md\:ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .md\:ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .md\:ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .md\:ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .md\:ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .md\:ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .md\:ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .md\:ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .md\:ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .md\:ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .md\:ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .md\:ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .md\:ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .md\:ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .md\:ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .md\:ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .md\:ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .md\:ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .md\:ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .md\:ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .md\:ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .md\:ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .md\:ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .md\:ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .md\:ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .md\:ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .md\:ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .md\:ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .md\:ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .md\:ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .md\:ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .md\:ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .md\:ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .md\:ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .md\:ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .md\:ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .md\:ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .md\:ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .md\:ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .md\:ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .md\:ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .md\:ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .md\:ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .md\:ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .md\:ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .md\:ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .md\:ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .md\:ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .md\:ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .md\:ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .md\:ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .md\:ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .md\:ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .md\:ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .md\:ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .md\:ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .md\:ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .md\:ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .md\:ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .md\:ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .md\:ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .md\:ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .md\:ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .md\:ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .md\:ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .md\:ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .md\:ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .md\:ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .md\:ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .md\:ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .md\:ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .md\:ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .md\:ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .md\:ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .md\:ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .md\:ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .md\:ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .md\:ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .md\:ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .md\:ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .md\:ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .md\:ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .md\:ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .md\:ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .md\:ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .md\:ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .md\:ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .md\:ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .md\:ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .md\:ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .md\:ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .md\:ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .md\:ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .md\:ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .md\:ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .md\:ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .md\:ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .md\:ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .md\:ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .md\:ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .md\:ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .md\:ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .md\:ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .md\:ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .md\:ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .md\:ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .md\:ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .md\:ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .md\:ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .md\:ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .md\:ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .md\:ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .md\:ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .md\:ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .md\:ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .md\:ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .md\:ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .md\:ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .md\:ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .md\:ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .md\:ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .md\:ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .md\:ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .md\:ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .md\:ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .md\:ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .md\:ltr\:mt-0{margin-top:0!important}[dir=ltr] .md\:ltr\:mr-0{margin-right:0!important}[dir=ltr] .md\:ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .md\:ltr\:ml-0{margin-left:0!important}[dir=ltr] .md\:ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .md\:ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .md\:ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .md\:ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .md\:ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .md\:ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .md\:ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .md\:ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .md\:ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .md\:ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .md\:ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .md\:ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .md\:ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .md\:ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .md\:ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .md\:ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .md\:ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .md\:ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .md\:ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .md\:ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .md\:ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .md\:ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .md\:ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .md\:ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .md\:ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .md\:ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .md\:ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .md\:ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .md\:ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .md\:ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .md\:ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .md\:ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .md\:ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .md\:ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .md\:ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .md\:ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .md\:ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .md\:ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .md\:ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .md\:ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .md\:ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .md\:ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .md\:ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .md\:ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .md\:ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .md\:ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .md\:ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .md\:ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .md\:ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .md\:ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .md\:ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .md\:ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .md\:ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .md\:ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .md\:ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .md\:ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .md\:ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .md\:ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .md\:ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .md\:ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .md\:ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .md\:ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .md\:ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .md\:ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .md\:ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .md\:ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .md\:ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .md\:ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .md\:ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .md\:ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .md\:ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .md\:ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .md\:ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .md\:ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .md\:ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .md\:ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .md\:ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .md\:ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .md\:ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .md\:ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .md\:ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .md\:ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .md\:ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .md\:ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .md\:ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .md\:ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .md\:ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .md\:ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .md\:ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .md\:ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .md\:ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .md\:ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .md\:ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .md\:ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .md\:ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .md\:ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .md\:ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .md\:ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .md\:ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .md\:ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .md\:ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .md\:ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .md\:ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .md\:ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .md\:ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .md\:ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .md\:ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .md\:ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .md\:ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .md\:ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .md\:ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .md\:ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .md\:ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .md\:ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .md\:ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .md\:ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .md\:ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .md\:ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .md\:ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .md\:ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .md\:ltr\:mt-px{margin-top:1px!important}[dir=ltr] .md\:ltr\:mr-px{margin-right:1px!important}[dir=ltr] .md\:ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .md\:ltr\:ml-px{margin-left:1px!important}[dir=ltr] .md\:ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .md\:ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .md\:ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .md\:ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .md\:ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .md\:ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .md\:ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .md\:ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .md\:ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .md\:ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .md\:ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .md\:ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .md\:ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .md\:ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .md\:ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .md\:ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .md\:ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .md\:ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .md\:ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .md\:ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .md\:ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .md\:ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .md\:ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .md\:ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .md\:ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .md\:ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .md\:ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .md\:ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .md\:ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .md\:ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .md\:ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .md\:ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .md\:ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .md\:ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .md\:ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .md\:ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .md\:ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .md\:ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .md\:ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .md\:ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .md\:ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .md\:ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .md\:ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .md\:ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .md\:ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .md\:ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .md\:ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .md\:ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .md\:ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .md\:ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .md\:ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .md\:ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .md\:ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .md\:ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .md\:ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .md\:ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .md\:ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .md\:ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .md\:ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .md\:ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .md\:ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .md\:ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .md\:ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .md\:ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .md\:ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .md\:ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .md\:ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .md\:ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .md\:ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .md\:ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .md\:ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .md\:ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .md\:ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .md\:ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .md\:ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .md\:ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .md\:ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .md\:ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .md\:ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .md\:ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .md\:ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .md\:ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .md\:ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .md\:ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .md\:ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .md\:ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .md\:ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .md\:ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .md\:ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .md\:ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .md\:ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .md\:ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .md\:ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .md\:ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .md\:ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .md\:ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .md\:ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .md\:ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .md\:ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .md\:ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .md\:ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .md\:ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .md\:ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .md\:ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .md\:ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .md\:ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .md\:ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .md\:ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .md\:ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .md\:ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .md\:ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .md\:ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .md\:ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .md\:ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .md\:ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .md\:ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .md\:ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .md\:ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .md\:ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .md\:ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .md\:ltr\:mt-full{margin-top:100%!important}[dir=ltr] .md\:ltr\:mr-full{margin-right:100%!important}[dir=ltr] .md\:ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .md\:ltr\:ml-full{margin-left:100%!important}[dir=ltr] .md\:ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .md\:ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .md\:ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .md\:ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .md\:ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .md\:ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .md\:ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .md\:ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .md\:ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .md\:ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .md\:ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .md\:ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .md\:ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .md\:ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .md\:ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .md\:ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .md\:ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .md\:ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .md\:ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .md\:ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .md\:ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .md\:ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .md\:ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .md\:ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .md\:ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .md\:ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .md\:ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .md\:ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .md\:ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .md\:ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .md\:ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .md\:ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .md\:ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .md\:ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .md\:ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .md\:ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .md\:ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .md\:ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .md\:ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .md\:ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .md\:ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .md\:ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .md\:ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .md\:ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .md\:ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .md\:ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .md\:ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .md\:ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .md\:ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .md\:ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .md\:ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .md\:ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .md\:ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .md\:ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .md\:ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .md\:ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .md\:ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .md\:ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .md\:ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .md\:ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .md\:ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .md\:ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .md\:ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .md\:ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .md\:ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .md\:ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .md\:ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .md\:ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .md\:ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .md\:ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .md\:ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .md\:ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .md\:ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .md\:ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .md\:ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .md\:ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .md\:ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .md\:ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .md\:ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .md\:ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .md\:ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .md\:ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .md\:ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .md\:ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .md\:ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .md\:ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .md\:ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .md\:ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .md\:ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .md\:ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .md\:ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .md\:ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .md\:ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .md\:ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .md\:ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .md\:ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .md\:ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .md\:ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .md\:ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .md\:ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .md\:ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .md\:ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .md\:ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .md\:ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .md\:ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .md\:ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .md\:ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .md\:ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .md\:ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .md\:ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .md\:ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .md\:ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .md\:ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .md\:ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .md\:ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .md\:ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .md\:ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .md\:ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .md\:ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .md\:ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .md\:ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .md\:ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .md\:ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .md\:ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .md\:ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .md\:ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .md\:ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .md\:ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .md\:ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .md\:ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .md\:ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .md\:ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .md\:ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .md\:ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .md\:ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .md\:ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .md\:ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .md\:ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .md\:ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .md\:ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .md\:ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .md\:ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .md\:ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .md\:ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .md\:ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .md\:ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .md\:ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .md\:ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .md\:ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .md\:ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .md\:ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .md\:ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .md\:ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .md\:ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .md\:ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .md\:ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .md\:ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .md\:ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .md\:ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .md\:ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .md\:ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .md\:ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .md\:ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .md\:ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .md\:ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .md\:ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .md\:ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .md\:ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .md\:ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .md\:ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .md\:ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .md\:ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .md\:ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .md\:ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .md\:ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .md\:ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .md\:ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .md\:ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .md\:ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .md\:ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .md\:ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .md\:ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .md\:ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .md\:ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .md\:ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .md\:ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .md\:ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .md\:ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .md\:ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .md\:ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .md\:ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .md\:ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .md\:ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .md\:ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .md\:ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .md\:ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .md\:ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .md\:ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .md\:ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .md\:ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .md\:ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .md\:ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .md\:ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .md\:ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .md\:ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .md\:ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .md\:ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .md\:ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .md\:ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .md\:ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .md\:ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .md\:ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .md\:ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .md\:ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .md\:ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .md\:ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .md\:ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .md\:ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .md\:ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .md\:ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .md\:ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .md\:ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .md\:ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .md\:ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .md\:ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .md\:ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .md\:ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .md\:ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .md\:ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .md\:ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .md\:ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .md\:ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .md\:ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .md\:ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .md\:ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .md\:ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .md\:ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .md\:ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .md\:ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .md\:ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .md\:ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .md\:rtl\:m-0{margin:0!important}[dir=rtl] .md\:rtl\:m-1{margin:.25rem!important}[dir=rtl] .md\:rtl\:m-2{margin:.5rem!important}[dir=rtl] .md\:rtl\:m-3{margin:.75rem!important}[dir=rtl] .md\:rtl\:m-4{margin:1rem!important}[dir=rtl] .md\:rtl\:m-5{margin:1.25rem!important}[dir=rtl] .md\:rtl\:m-6{margin:1.5rem!important}[dir=rtl] .md\:rtl\:m-7{margin:1.75rem!important}[dir=rtl] .md\:rtl\:m-8{margin:2rem!important}[dir=rtl] .md\:rtl\:m-9{margin:2.25rem!important}[dir=rtl] .md\:rtl\:m-10{margin:2.5rem!important}[dir=rtl] .md\:rtl\:m-11{margin:2.75rem!important}[dir=rtl] .md\:rtl\:m-12{margin:3rem!important}[dir=rtl] .md\:rtl\:m-13{margin:3.25rem!important}[dir=rtl] .md\:rtl\:m-14{margin:3.5rem!important}[dir=rtl] .md\:rtl\:m-15{margin:3.75rem!important}[dir=rtl] .md\:rtl\:m-16{margin:4rem!important}[dir=rtl] .md\:rtl\:m-20{margin:5rem!important}[dir=rtl] .md\:rtl\:m-24{margin:6rem!important}[dir=rtl] .md\:rtl\:m-28{margin:7rem!important}[dir=rtl] .md\:rtl\:m-32{margin:8rem!important}[dir=rtl] .md\:rtl\:m-36{margin:9rem!important}[dir=rtl] .md\:rtl\:m-40{margin:10rem!important}[dir=rtl] .md\:rtl\:m-48{margin:12rem!important}[dir=rtl] .md\:rtl\:m-56{margin:14rem!important}[dir=rtl] .md\:rtl\:m-60{margin:15rem!important}[dir=rtl] .md\:rtl\:m-64{margin:16rem!important}[dir=rtl] .md\:rtl\:m-72{margin:18rem!important}[dir=rtl] .md\:rtl\:m-80{margin:20rem!important}[dir=rtl] .md\:rtl\:m-96{margin:24rem!important}[dir=rtl] .md\:rtl\:m-auto{margin:auto!important}[dir=rtl] .md\:rtl\:m-px{margin:1px!important}[dir=rtl] .md\:rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .md\:rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .md\:rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .md\:rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .md\:rtl\:m-1\/2{margin:50%!important}[dir=rtl] .md\:rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .md\:rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .md\:rtl\:m-1\/4{margin:25%!important}[dir=rtl] .md\:rtl\:m-2\/4{margin:50%!important}[dir=rtl] .md\:rtl\:m-3\/4{margin:75%!important}[dir=rtl] .md\:rtl\:m-1\/5{margin:20%!important}[dir=rtl] .md\:rtl\:m-2\/5{margin:40%!important}[dir=rtl] .md\:rtl\:m-3\/5{margin:60%!important}[dir=rtl] .md\:rtl\:m-4\/5{margin:80%!important}[dir=rtl] .md\:rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .md\:rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .md\:rtl\:m-3\/6{margin:50%!important}[dir=rtl] .md\:rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .md\:rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .md\:rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .md\:rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .md\:rtl\:m-3\/12{margin:25%!important}[dir=rtl] .md\:rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .md\:rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .md\:rtl\:m-6\/12{margin:50%!important}[dir=rtl] .md\:rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .md\:rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .md\:rtl\:m-9\/12{margin:75%!important}[dir=rtl] .md\:rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .md\:rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .md\:rtl\:m-full{margin:100%!important}[dir=rtl] .md\:rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .md\:rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .md\:rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .md\:rtl\:-m-4{margin:-1rem!important}[dir=rtl] .md\:rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .md\:rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .md\:rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .md\:rtl\:-m-8{margin:-2rem!important}[dir=rtl] .md\:rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .md\:rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .md\:rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .md\:rtl\:-m-12{margin:-3rem!important}[dir=rtl] .md\:rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .md\:rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .md\:rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .md\:rtl\:-m-16{margin:-4rem!important}[dir=rtl] .md\:rtl\:-m-20{margin:-5rem!important}[dir=rtl] .md\:rtl\:-m-24{margin:-6rem!important}[dir=rtl] .md\:rtl\:-m-28{margin:-7rem!important}[dir=rtl] .md\:rtl\:-m-32{margin:-8rem!important}[dir=rtl] .md\:rtl\:-m-36{margin:-9rem!important}[dir=rtl] .md\:rtl\:-m-40{margin:-10rem!important}[dir=rtl] .md\:rtl\:-m-48{margin:-12rem!important}[dir=rtl] .md\:rtl\:-m-56{margin:-14rem!important}[dir=rtl] .md\:rtl\:-m-60{margin:-15rem!important}[dir=rtl] .md\:rtl\:-m-64{margin:-16rem!important}[dir=rtl] .md\:rtl\:-m-72{margin:-18rem!important}[dir=rtl] .md\:rtl\:-m-80{margin:-20rem!important}[dir=rtl] .md\:rtl\:-m-96{margin:-24rem!important}[dir=rtl] .md\:rtl\:-m-px{margin:-1px!important}[dir=rtl] .md\:rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .md\:rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .md\:rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .md\:rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .md\:rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .md\:rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .md\:rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .md\:rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .md\:rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .md\:rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .md\:rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .md\:rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .md\:rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .md\:rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .md\:rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .md\:rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .md\:rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .md\:rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .md\:rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .md\:rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .md\:rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .md\:rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .md\:rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .md\:rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .md\:rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .md\:rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .md\:rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .md\:rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .md\:rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .md\:rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .md\:rtl\:-m-full{margin:-100%!important}[dir=rtl] .md\:rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .md\:rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .md\:rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .md\:rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .md\:rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .md\:rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .md\:rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .md\:rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .md\:rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .md\:rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .md\:rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .md\:rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .md\:rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .md\:rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .md\:rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .md\:rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .md\:rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .md\:rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .md\:rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .md\:rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .md\:rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .md\:rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .md\:rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .md\:rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .md\:rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .md\:rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .md\:rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .md\:rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .md\:rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .md\:rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .md\:rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .md\:rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .md\:rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .md\:rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .md\:rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .md\:rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .md\:rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .md\:rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .md\:rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .md\:rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .md\:rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .md\:rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .md\:rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .md\:rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .md\:rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .md\:rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .md\:rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .md\:rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .md\:rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .md\:rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .md\:rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .md\:rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .md\:rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .md\:rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .md\:rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .md\:rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .md\:rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .md\:rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .md\:rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .md\:rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .md\:rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .md\:rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .md\:rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .md\:rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .md\:rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .md\:rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .md\:rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .md\:rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .md\:rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .md\:rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .md\:rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .md\:rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .md\:rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .md\:rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .md\:rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .md\:rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .md\:rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .md\:rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .md\:rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .md\:rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .md\:rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .md\:rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .md\:rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .md\:rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .md\:rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .md\:rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .md\:rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .md\:rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .md\:rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .md\:rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .md\:rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .md\:rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .md\:rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .md\:rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .md\:rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .md\:rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .md\:rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .md\:rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .md\:rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .md\:rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .md\:rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .md\:rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .md\:rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .md\:rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .md\:rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .md\:rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .md\:rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .md\:rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .md\:rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .md\:rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .md\:rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .md\:rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .md\:rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .md\:rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .md\:rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .md\:rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .md\:rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .md\:rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .md\:rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .md\:rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .md\:rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .md\:rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .md\:rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .md\:rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .md\:rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .md\:rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .md\:rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .md\:rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .md\:rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .md\:rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .md\:rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .md\:rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .md\:rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .md\:rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .md\:rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .md\:rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .md\:rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .md\:rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .md\:rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .md\:rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .md\:rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .md\:rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .md\:rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .md\:rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .md\:rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .md\:rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .md\:rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .md\:rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .md\:rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .md\:rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .md\:rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .md\:rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .md\:rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .md\:rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .md\:rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .md\:rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .md\:rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .md\:rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .md\:rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .md\:rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .md\:rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .md\:rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .md\:rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .md\:rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .md\:rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .md\:rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .md\:rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .md\:rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .md\:rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .md\:rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .md\:rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .md\:rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .md\:rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .md\:rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .md\:rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .md\:rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .md\:rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .md\:rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .md\:rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .md\:rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .md\:rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .md\:rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .md\:rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .md\:rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .md\:rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .md\:rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .md\:rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .md\:rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .md\:rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .md\:rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .md\:rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .md\:rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .md\:rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .md\:rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .md\:rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .md\:rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .md\:rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .md\:rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .md\:rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .md\:rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .md\:rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .md\:rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .md\:rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .md\:rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .md\:rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .md\:rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .md\:rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .md\:rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .md\:rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .md\:rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .md\:rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .md\:rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .md\:rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .md\:rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .md\:rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .md\:rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .md\:rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .md\:rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .md\:rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .md\:rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .md\:rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .md\:rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .md\:rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .md\:rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .md\:rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .md\:rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .md\:rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .md\:rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .md\:rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .md\:rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .md\:rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .md\:rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .md\:rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .md\:rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .md\:rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .md\:rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .md\:rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .md\:rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .md\:rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .md\:rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .md\:rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .md\:rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .md\:rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .md\:rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .md\:rtl\:mt-0{margin-top:0!important}[dir=rtl] .md\:rtl\:mr-0{margin-right:0!important}[dir=rtl] .md\:rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .md\:rtl\:ml-0{margin-left:0!important}[dir=rtl] .md\:rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .md\:rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .md\:rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .md\:rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .md\:rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .md\:rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .md\:rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .md\:rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .md\:rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .md\:rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .md\:rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .md\:rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .md\:rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .md\:rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .md\:rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .md\:rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .md\:rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .md\:rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .md\:rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .md\:rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .md\:rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .md\:rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .md\:rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .md\:rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .md\:rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .md\:rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .md\:rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .md\:rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .md\:rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .md\:rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .md\:rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .md\:rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .md\:rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .md\:rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .md\:rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .md\:rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .md\:rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .md\:rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .md\:rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .md\:rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .md\:rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .md\:rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .md\:rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .md\:rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .md\:rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .md\:rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .md\:rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .md\:rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .md\:rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .md\:rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .md\:rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .md\:rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .md\:rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .md\:rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .md\:rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .md\:rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .md\:rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .md\:rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .md\:rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .md\:rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .md\:rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .md\:rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .md\:rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .md\:rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .md\:rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .md\:rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .md\:rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .md\:rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .md\:rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .md\:rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .md\:rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .md\:rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .md\:rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .md\:rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .md\:rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .md\:rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .md\:rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .md\:rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .md\:rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .md\:rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .md\:rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .md\:rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .md\:rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .md\:rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .md\:rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .md\:rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .md\:rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .md\:rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .md\:rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .md\:rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .md\:rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .md\:rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .md\:rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .md\:rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .md\:rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .md\:rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .md\:rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .md\:rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .md\:rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .md\:rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .md\:rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .md\:rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .md\:rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .md\:rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .md\:rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .md\:rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .md\:rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .md\:rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .md\:rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .md\:rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .md\:rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .md\:rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .md\:rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .md\:rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .md\:rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .md\:rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .md\:rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .md\:rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .md\:rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .md\:rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .md\:rtl\:mt-px{margin-top:1px!important}[dir=rtl] .md\:rtl\:mr-px{margin-right:1px!important}[dir=rtl] .md\:rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .md\:rtl\:ml-px{margin-left:1px!important}[dir=rtl] .md\:rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .md\:rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .md\:rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .md\:rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .md\:rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .md\:rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .md\:rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .md\:rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .md\:rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .md\:rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .md\:rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .md\:rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .md\:rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .md\:rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .md\:rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .md\:rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .md\:rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .md\:rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .md\:rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .md\:rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .md\:rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .md\:rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .md\:rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .md\:rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .md\:rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .md\:rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .md\:rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .md\:rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .md\:rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .md\:rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .md\:rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .md\:rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .md\:rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .md\:rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .md\:rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .md\:rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .md\:rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .md\:rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .md\:rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .md\:rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .md\:rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .md\:rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .md\:rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .md\:rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .md\:rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .md\:rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .md\:rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .md\:rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .md\:rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .md\:rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .md\:rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .md\:rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .md\:rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .md\:rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .md\:rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .md\:rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .md\:rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .md\:rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .md\:rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .md\:rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .md\:rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .md\:rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .md\:rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .md\:rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .md\:rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .md\:rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .md\:rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .md\:rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .md\:rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .md\:rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .md\:rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .md\:rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .md\:rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .md\:rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .md\:rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .md\:rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .md\:rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .md\:rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .md\:rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .md\:rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .md\:rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .md\:rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .md\:rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .md\:rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .md\:rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .md\:rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .md\:rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .md\:rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .md\:rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .md\:rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .md\:rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .md\:rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .md\:rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .md\:rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .md\:rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .md\:rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .md\:rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .md\:rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .md\:rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .md\:rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .md\:rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .md\:rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .md\:rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .md\:rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .md\:rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .md\:rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .md\:rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .md\:rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .md\:rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .md\:rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .md\:rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .md\:rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .md\:rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .md\:rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .md\:rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .md\:rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .md\:rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .md\:rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .md\:rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .md\:rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .md\:rtl\:mt-full{margin-top:100%!important}[dir=rtl] .md\:rtl\:mr-full{margin-right:100%!important}[dir=rtl] .md\:rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .md\:rtl\:ml-full{margin-left:100%!important}[dir=rtl] .md\:rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .md\:rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .md\:rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .md\:rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .md\:rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .md\:rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .md\:rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .md\:rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .md\:rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .md\:rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .md\:rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .md\:rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .md\:rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .md\:rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .md\:rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .md\:rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .md\:rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .md\:rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .md\:rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .md\:rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .md\:rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .md\:rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .md\:rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .md\:rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .md\:rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .md\:rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .md\:rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .md\:rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .md\:rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .md\:rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .md\:rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .md\:rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .md\:rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .md\:rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .md\:rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .md\:rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .md\:rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .md\:rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .md\:rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .md\:rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .md\:rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .md\:rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .md\:rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .md\:rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .md\:rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .md\:rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .md\:rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .md\:rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .md\:rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .md\:rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .md\:rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .md\:rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .md\:rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .md\:rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .md\:rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .md\:rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .md\:rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .md\:rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .md\:rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .md\:rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .md\:rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .md\:rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .md\:rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .md\:rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .md\:rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .md\:rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .md\:rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .md\:rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .md\:rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .md\:rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .md\:rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .md\:rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .md\:rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .md\:rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .md\:rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .md\:rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .md\:rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .md\:rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .md\:rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .md\:rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .md\:rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .md\:rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .md\:rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .md\:rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .md\:rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .md\:rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .md\:rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .md\:rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .md\:rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .md\:rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .md\:rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .md\:rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .md\:rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .md\:rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .md\:rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .md\:rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .md\:rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .md\:rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .md\:rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .md\:rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .md\:rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .md\:rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .md\:rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .md\:rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .md\:rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .md\:rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .md\:rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .md\:rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .md\:rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .md\:rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .md\:rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .md\:rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .md\:rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .md\:rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .md\:rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .md\:rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .md\:rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .md\:rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .md\:rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .md\:rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .md\:rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .md\:rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .md\:rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .md\:rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .md\:rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .md\:rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .md\:rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .md\:rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .md\:rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .md\:rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .md\:rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .md\:rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .md\:rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .md\:rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .md\:rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .md\:rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .md\:rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .md\:rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .md\:rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .md\:rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .md\:rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .md\:rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .md\:rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .md\:rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .md\:rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .md\:rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .md\:rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .md\:rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .md\:rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .md\:rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .md\:rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .md\:rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .md\:rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .md\:rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .md\:rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .md\:rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .md\:rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .md\:rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .md\:rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .md\:rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .md\:rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .md\:rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .md\:rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .md\:rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .md\:rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .md\:rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .md\:rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .md\:rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .md\:rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .md\:rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .md\:rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .md\:rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .md\:rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .md\:rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .md\:rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .md\:rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .md\:rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .md\:rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .md\:rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .md\:rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .md\:rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .md\:rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .md\:rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .md\:rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .md\:rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .md\:rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .md\:rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .md\:rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .md\:rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .md\:rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .md\:rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .md\:rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .md\:rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .md\:rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .md\:rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .md\:rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .md\:rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .md\:rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .md\:rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .md\:rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .md\:rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .md\:rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .md\:rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .md\:rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .md\:rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .md\:rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .md\:rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .md\:rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .md\:rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .md\:rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .md\:rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .md\:rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .md\:rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .md\:rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .md\:rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .md\:rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .md\:rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .md\:rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .md\:rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .md\:rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .md\:rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .md\:rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .md\:rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .md\:rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .md\:rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .md\:rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .md\:rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .md\:rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .md\:rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .md\:rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .md\:rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .md\:rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .md\:rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .md\:rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .md\:rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .md\:rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .md\:rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .md\:rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .md\:rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .md\:rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .md\:rtl\:-ml-full{margin-left:-100%!important}.md\:max-h-0{max-height:0!important}.md\:max-h-1{max-height:.25rem!important}.md\:max-h-2{max-height:.5rem!important}.md\:max-h-3{max-height:.75rem!important}.md\:max-h-4{max-height:1rem!important}.md\:max-h-5{max-height:1.25rem!important}.md\:max-h-6{max-height:1.5rem!important}.md\:max-h-7{max-height:1.75rem!important}.md\:max-h-8{max-height:2rem!important}.md\:max-h-9{max-height:2.25rem!important}.md\:max-h-10{max-height:2.5rem!important}.md\:max-h-11{max-height:2.75rem!important}.md\:max-h-12{max-height:3rem!important}.md\:max-h-13{max-height:3.25rem!important}.md\:max-h-14{max-height:3.5rem!important}.md\:max-h-15{max-height:3.75rem!important}.md\:max-h-16{max-height:4rem!important}.md\:max-h-20{max-height:5rem!important}.md\:max-h-24{max-height:6rem!important}.md\:max-h-28{max-height:7rem!important}.md\:max-h-32{max-height:8rem!important}.md\:max-h-36{max-height:9rem!important}.md\:max-h-40{max-height:10rem!important}.md\:max-h-48{max-height:12rem!important}.md\:max-h-56{max-height:14rem!important}.md\:max-h-60{max-height:15rem!important}.md\:max-h-64{max-height:16rem!important}.md\:max-h-72{max-height:18rem!important}.md\:max-h-80{max-height:20rem!important}.md\:max-h-96{max-height:24rem!important}.md\:max-h-screen{max-height:100vh!important}.md\:max-h-px{max-height:1px!important}.md\:max-h-0\.5{max-height:.125rem!important}.md\:max-h-1\.5{max-height:.375rem!important}.md\:max-h-2\.5{max-height:.625rem!important}.md\:max-h-3\.5{max-height:.875rem!important}.md\:max-h-1\/2{max-height:50%!important}.md\:max-h-1\/3{max-height:33.333333%!important}.md\:max-h-2\/3{max-height:66.666667%!important}.md\:max-h-1\/4{max-height:25%!important}.md\:max-h-2\/4{max-height:50%!important}.md\:max-h-3\/4{max-height:75%!important}.md\:max-h-1\/5{max-height:20%!important}.md\:max-h-2\/5{max-height:40%!important}.md\:max-h-3\/5{max-height:60%!important}.md\:max-h-4\/5{max-height:80%!important}.md\:max-h-1\/6{max-height:16.666667%!important}.md\:max-h-2\/6{max-height:33.333333%!important}.md\:max-h-3\/6{max-height:50%!important}.md\:max-h-4\/6{max-height:66.666667%!important}.md\:max-h-5\/6{max-height:83.333333%!important}.md\:max-h-1\/12{max-height:8.333333%!important}.md\:max-h-2\/12{max-height:16.666667%!important}.md\:max-h-3\/12{max-height:25%!important}.md\:max-h-4\/12{max-height:33.333333%!important}.md\:max-h-5\/12{max-height:41.666667%!important}.md\:max-h-6\/12{max-height:50%!important}.md\:max-h-7\/12{max-height:58.333333%!important}.md\:max-h-8\/12{max-height:66.666667%!important}.md\:max-h-9\/12{max-height:75%!important}.md\:max-h-10\/12{max-height:83.333333%!important}.md\:max-h-11\/12{max-height:91.666667%!important}.md\:max-h-full{max-height:100%!important}.md\:max-h-6xl{max-height:6rem!important}.md\:max-w-none{max-width:none!important}.md\:max-w-xs{max-width:20rem!important}.md\:max-w-sm{max-width:24rem!important}.md\:max-w-md{max-width:28rem!important}.md\:max-w-lg{max-width:32rem!important}.md\:max-w-xl{max-width:36rem!important}.md\:max-w-2xl{max-width:42rem!important}.md\:max-w-3xl{max-width:48rem!important}.md\:max-w-4xl{max-width:56rem!important}.md\:max-w-5xl{max-width:64rem!important}.md\:max-w-6xl{max-width:72rem!important}.md\:max-w-7xl{max-width:80rem!important}.md\:max-w-full{max-width:100%!important}.md\:max-w-screen-sm{max-width:600px!important}.md\:max-w-screen-md{max-width:1024px!important}.md\:max-w-screen-lg{max-width:1280px!important}.md\:max-w-screen-xl{max-width:1536px!important}.md\:max-w-screen-2xl{max-width:1400px!important}.md\:max-w-screen-3xl{max-width:1800px!important}.md\:max-w-screen-4xl{max-width:2200px!important}.md\:min-h-0{min-height:0!important}.md\:min-h-full{min-height:100%!important}.md\:min-h-screen{min-height:100vh!important}.md\:min-h-half{min-height:50vh!important}.md\:min-w-0{min-width:0!important}.md\:min-w-full{min-width:100%!important}.md\:object-contain{-o-object-fit:contain!important;object-fit:contain!important}.md\:object-cover{-o-object-fit:cover!important;object-fit:cover!important}.md\:object-fill{-o-object-fit:fill!important;object-fit:fill!important}.md\:object-none{-o-object-fit:none!important;object-fit:none!important}.md\:object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.md\:object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.md\:object-center{-o-object-position:center!important;object-position:center!important}.md\:object-left{-o-object-position:left!important;object-position:left!important}.md\:object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.md\:object-left-top{-o-object-position:left top!important;object-position:left top!important}.md\:object-right{-o-object-position:right!important;object-position:right!important}.md\:object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.md\:object-right-top{-o-object-position:right top!important;object-position:right top!important}.md\:object-top{-o-object-position:top!important;object-position:top!important}.md\:opacity-0{opacity:0!important}.md\:opacity-25{opacity:.25!important}.md\:opacity-50{opacity:.5!important}.md\:opacity-75{opacity:.75!important}.md\:opacity-100{opacity:1!important}.md\:hover\:opacity-0:hover{opacity:0!important}.md\:hover\:opacity-25:hover{opacity:.25!important}.md\:hover\:opacity-50:hover{opacity:.5!important}.md\:hover\:opacity-75:hover{opacity:.75!important}.md\:hover\:opacity-100:hover{opacity:1!important}.md\:focus\:opacity-0:focus{opacity:0!important}.md\:focus\:opacity-25:focus{opacity:.25!important}.md\:focus\:opacity-50:focus{opacity:.5!important}.md\:focus\:opacity-75:focus{opacity:.75!important}.md\:focus\:opacity-100:focus{opacity:1!important}.md\:outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.md\:outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.md\:outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.md\:focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.md\:focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.md\:focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.md\:overflow-auto{overflow:auto!important}.md\:overflow-hidden{overflow:hidden!important}.md\:overflow-visible{overflow:visible!important}.md\:overflow-scroll{overflow:scroll!important}.md\:overflow-x-auto{overflow-x:auto!important}.md\:overflow-y-auto{overflow-y:auto!important}.md\:overflow-x-hidden{overflow-x:hidden!important}.md\:overflow-y-hidden{overflow-y:hidden!important}.md\:overflow-x-visible{overflow-x:visible!important}.md\:overflow-y-visible{overflow-y:visible!important}.md\:overflow-x-scroll{overflow-x:scroll!important}.md\:overflow-y-scroll{overflow-y:scroll!important}.md\:scrolling-touch{-webkit-overflow-scrolling:touch!important}.md\:scrolling-auto{-webkit-overflow-scrolling:auto!important}.md\:overscroll-auto{overscroll-behavior:auto!important}.md\:overscroll-contain{overscroll-behavior:contain!important}.md\:overscroll-none{overscroll-behavior:none!important}.md\:overscroll-y-auto{overscroll-behavior-y:auto!important}.md\:overscroll-y-contain{overscroll-behavior-y:contain!important}.md\:overscroll-y-none{overscroll-behavior-y:none!important}.md\:overscroll-x-auto{overscroll-behavior-x:auto!important}.md\:overscroll-x-contain{overscroll-behavior-x:contain!important}.md\:overscroll-x-none{overscroll-behavior-x:none!important}.md\:p-0{padding:0!important}.md\:p-1{padding:.25rem!important}.md\:p-2{padding:.5rem!important}.md\:p-3{padding:.75rem!important}.md\:p-4{padding:1rem!important}.md\:p-5{padding:1.25rem!important}.md\:p-6{padding:1.5rem!important}.md\:p-7{padding:1.75rem!important}.md\:p-8{padding:2rem!important}.md\:p-9{padding:2.25rem!important}.md\:p-10{padding:2.5rem!important}.md\:p-11{padding:2.75rem!important}.md\:p-12{padding:3rem!important}.md\:p-13{padding:3.25rem!important}.md\:p-14{padding:3.5rem!important}.md\:p-15{padding:3.75rem!important}.md\:p-16{padding:4rem!important}.md\:p-20{padding:5rem!important}.md\:p-24{padding:6rem!important}.md\:p-28{padding:7rem!important}.md\:p-32{padding:8rem!important}.md\:p-36{padding:9rem!important}.md\:p-40{padding:10rem!important}.md\:p-48{padding:12rem!important}.md\:p-56{padding:14rem!important}.md\:p-60{padding:15rem!important}.md\:p-64{padding:16rem!important}.md\:p-72{padding:18rem!important}.md\:p-80{padding:20rem!important}.md\:p-96{padding:24rem!important}.md\:p-px{padding:1px!important}.md\:p-0\.5{padding:.125rem!important}.md\:p-1\.5{padding:.375rem!important}.md\:p-2\.5{padding:.625rem!important}.md\:p-3\.5{padding:.875rem!important}.md\:p-1\/2{padding:50%!important}.md\:p-1\/3{padding:33.333333%!important}.md\:p-2\/3{padding:66.666667%!important}.md\:p-1\/4{padding:25%!important}.md\:p-2\/4{padding:50%!important}.md\:p-3\/4{padding:75%!important}.md\:p-1\/5{padding:20%!important}.md\:p-2\/5{padding:40%!important}.md\:p-3\/5{padding:60%!important}.md\:p-4\/5{padding:80%!important}.md\:p-1\/6{padding:16.666667%!important}.md\:p-2\/6{padding:33.333333%!important}.md\:p-3\/6{padding:50%!important}.md\:p-4\/6{padding:66.666667%!important}.md\:p-5\/6{padding:83.333333%!important}.md\:p-1\/12{padding:8.333333%!important}.md\:p-2\/12{padding:16.666667%!important}.md\:p-3\/12{padding:25%!important}.md\:p-4\/12{padding:33.333333%!important}.md\:p-5\/12{padding:41.666667%!important}.md\:p-6\/12{padding:50%!important}.md\:p-7\/12{padding:58.333333%!important}.md\:p-8\/12{padding:66.666667%!important}.md\:p-9\/12{padding:75%!important}.md\:p-10\/12{padding:83.333333%!important}.md\:p-11\/12{padding:91.666667%!important}.md\:p-full{padding:100%!important}.md\:py-0{padding-bottom:0!important;padding-top:0!important}.md\:px-0{padding-left:0!important;padding-right:0!important}.md\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.md\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.md\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.md\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}.md\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}.md\:px-4{padding-left:1rem!important;padding-right:1rem!important}.md\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.md\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.md\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.md\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.md\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.md\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}.md\:px-8{padding-left:2rem!important;padding-right:2rem!important}.md\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.md\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.md\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.md\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.md\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.md\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.md\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}.md\:px-12{padding-left:3rem!important;padding-right:3rem!important}.md\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.md\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.md\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.md\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.md\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.md\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.md\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}.md\:px-16{padding-left:4rem!important;padding-right:4rem!important}.md\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}.md\:px-20{padding-left:5rem!important;padding-right:5rem!important}.md\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}.md\:px-24{padding-left:6rem!important;padding-right:6rem!important}.md\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}.md\:px-28{padding-left:7rem!important;padding-right:7rem!important}.md\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}.md\:px-32{padding-left:8rem!important;padding-right:8rem!important}.md\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}.md\:px-36{padding-left:9rem!important;padding-right:9rem!important}.md\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}.md\:px-40{padding-left:10rem!important;padding-right:10rem!important}.md\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}.md\:px-48{padding-left:12rem!important;padding-right:12rem!important}.md\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}.md\:px-56{padding-left:14rem!important;padding-right:14rem!important}.md\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}.md\:px-60{padding-left:15rem!important;padding-right:15rem!important}.md\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}.md\:px-64{padding-left:16rem!important;padding-right:16rem!important}.md\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}.md\:px-72{padding-left:18rem!important;padding-right:18rem!important}.md\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}.md\:px-80{padding-left:20rem!important;padding-right:20rem!important}.md\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}.md\:px-96{padding-left:24rem!important;padding-right:24rem!important}.md\:py-px{padding-bottom:1px!important;padding-top:1px!important}.md\:px-px{padding-left:1px!important;padding-right:1px!important}.md\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.md\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.md\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.md\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.md\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.md\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.md\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.md\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.md\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.md\:px-1\/2{padding-left:50%!important;padding-right:50%!important}.md\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.md\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.md\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.md\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.md\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.md\:px-1\/4{padding-left:25%!important;padding-right:25%!important}.md\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.md\:px-2\/4{padding-left:50%!important;padding-right:50%!important}.md\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.md\:px-3\/4{padding-left:75%!important;padding-right:75%!important}.md\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.md\:px-1\/5{padding-left:20%!important;padding-right:20%!important}.md\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.md\:px-2\/5{padding-left:40%!important;padding-right:40%!important}.md\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.md\:px-3\/5{padding-left:60%!important;padding-right:60%!important}.md\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.md\:px-4\/5{padding-left:80%!important;padding-right:80%!important}.md\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.md\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.md\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.md\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.md\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.md\:px-3\/6{padding-left:50%!important;padding-right:50%!important}.md\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.md\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.md\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.md\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.md\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.md\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.md\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.md\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.md\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.md\:px-3\/12{padding-left:25%!important;padding-right:25%!important}.md\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.md\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.md\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.md\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.md\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.md\:px-6\/12{padding-left:50%!important;padding-right:50%!important}.md\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.md\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.md\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.md\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.md\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.md\:px-9\/12{padding-left:75%!important;padding-right:75%!important}.md\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.md\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.md\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.md\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.md\:py-full{padding-bottom:100%!important;padding-top:100%!important}.md\:px-full{padding-left:100%!important;padding-right:100%!important}.md\:pt-0{padding-top:0!important}.md\:pr-0{padding-right:0!important}.md\:pb-0{padding-bottom:0!important}.md\:pl-0{padding-left:0!important}.md\:pt-1{padding-top:.25rem!important}.md\:pr-1{padding-right:.25rem!important}.md\:pb-1{padding-bottom:.25rem!important}.md\:pl-1{padding-left:.25rem!important}.md\:pt-2{padding-top:.5rem!important}.md\:pr-2{padding-right:.5rem!important}.md\:pb-2{padding-bottom:.5rem!important}.md\:pl-2{padding-left:.5rem!important}.md\:pt-3{padding-top:.75rem!important}.md\:pr-3{padding-right:.75rem!important}.md\:pb-3{padding-bottom:.75rem!important}.md\:pl-3{padding-left:.75rem!important}.md\:pt-4{padding-top:1rem!important}.md\:pr-4{padding-right:1rem!important}.md\:pb-4{padding-bottom:1rem!important}.md\:pl-4{padding-left:1rem!important}.md\:pt-5{padding-top:1.25rem!important}.md\:pr-5{padding-right:1.25rem!important}.md\:pb-5{padding-bottom:1.25rem!important}.md\:pl-5{padding-left:1.25rem!important}.md\:pt-6{padding-top:1.5rem!important}.md\:pr-6{padding-right:1.5rem!important}.md\:pb-6{padding-bottom:1.5rem!important}.md\:pl-6{padding-left:1.5rem!important}.md\:pt-7{padding-top:1.75rem!important}.md\:pr-7{padding-right:1.75rem!important}.md\:pb-7{padding-bottom:1.75rem!important}.md\:pl-7{padding-left:1.75rem!important}.md\:pt-8{padding-top:2rem!important}.md\:pr-8{padding-right:2rem!important}.md\:pb-8{padding-bottom:2rem!important}.md\:pl-8{padding-left:2rem!important}.md\:pt-9{padding-top:2.25rem!important}.md\:pr-9{padding-right:2.25rem!important}.md\:pb-9{padding-bottom:2.25rem!important}.md\:pl-9{padding-left:2.25rem!important}.md\:pt-10{padding-top:2.5rem!important}.md\:pr-10{padding-right:2.5rem!important}.md\:pb-10{padding-bottom:2.5rem!important}.md\:pl-10{padding-left:2.5rem!important}.md\:pt-11{padding-top:2.75rem!important}.md\:pr-11{padding-right:2.75rem!important}.md\:pb-11{padding-bottom:2.75rem!important}.md\:pl-11{padding-left:2.75rem!important}.md\:pt-12{padding-top:3rem!important}.md\:pr-12{padding-right:3rem!important}.md\:pb-12{padding-bottom:3rem!important}.md\:pl-12{padding-left:3rem!important}.md\:pt-13{padding-top:3.25rem!important}.md\:pr-13{padding-right:3.25rem!important}.md\:pb-13{padding-bottom:3.25rem!important}.md\:pl-13{padding-left:3.25rem!important}.md\:pt-14{padding-top:3.5rem!important}.md\:pr-14{padding-right:3.5rem!important}.md\:pb-14{padding-bottom:3.5rem!important}.md\:pl-14{padding-left:3.5rem!important}.md\:pt-15{padding-top:3.75rem!important}.md\:pr-15{padding-right:3.75rem!important}.md\:pb-15{padding-bottom:3.75rem!important}.md\:pl-15{padding-left:3.75rem!important}.md\:pt-16{padding-top:4rem!important}.md\:pr-16{padding-right:4rem!important}.md\:pb-16{padding-bottom:4rem!important}.md\:pl-16{padding-left:4rem!important}.md\:pt-20{padding-top:5rem!important}.md\:pr-20{padding-right:5rem!important}.md\:pb-20{padding-bottom:5rem!important}.md\:pl-20{padding-left:5rem!important}.md\:pt-24{padding-top:6rem!important}.md\:pr-24{padding-right:6rem!important}.md\:pb-24{padding-bottom:6rem!important}.md\:pl-24{padding-left:6rem!important}.md\:pt-28{padding-top:7rem!important}.md\:pr-28{padding-right:7rem!important}.md\:pb-28{padding-bottom:7rem!important}.md\:pl-28{padding-left:7rem!important}.md\:pt-32{padding-top:8rem!important}.md\:pr-32{padding-right:8rem!important}.md\:pb-32{padding-bottom:8rem!important}.md\:pl-32{padding-left:8rem!important}.md\:pt-36{padding-top:9rem!important}.md\:pr-36{padding-right:9rem!important}.md\:pb-36{padding-bottom:9rem!important}.md\:pl-36{padding-left:9rem!important}.md\:pt-40{padding-top:10rem!important}.md\:pr-40{padding-right:10rem!important}.md\:pb-40{padding-bottom:10rem!important}.md\:pl-40{padding-left:10rem!important}.md\:pt-48{padding-top:12rem!important}.md\:pr-48{padding-right:12rem!important}.md\:pb-48{padding-bottom:12rem!important}.md\:pl-48{padding-left:12rem!important}.md\:pt-56{padding-top:14rem!important}.md\:pr-56{padding-right:14rem!important}.md\:pb-56{padding-bottom:14rem!important}.md\:pl-56{padding-left:14rem!important}.md\:pt-60{padding-top:15rem!important}.md\:pr-60{padding-right:15rem!important}.md\:pb-60{padding-bottom:15rem!important}.md\:pl-60{padding-left:15rem!important}.md\:pt-64{padding-top:16rem!important}.md\:pr-64{padding-right:16rem!important}.md\:pb-64{padding-bottom:16rem!important}.md\:pl-64{padding-left:16rem!important}.md\:pt-72{padding-top:18rem!important}.md\:pr-72{padding-right:18rem!important}.md\:pb-72{padding-bottom:18rem!important}.md\:pl-72{padding-left:18rem!important}.md\:pt-80{padding-top:20rem!important}.md\:pr-80{padding-right:20rem!important}.md\:pb-80{padding-bottom:20rem!important}.md\:pl-80{padding-left:20rem!important}.md\:pt-96{padding-top:24rem!important}.md\:pr-96{padding-right:24rem!important}.md\:pb-96{padding-bottom:24rem!important}.md\:pl-96{padding-left:24rem!important}.md\:pt-px{padding-top:1px!important}.md\:pr-px{padding-right:1px!important}.md\:pb-px{padding-bottom:1px!important}.md\:pl-px{padding-left:1px!important}.md\:pt-0\.5{padding-top:.125rem!important}.md\:pr-0\.5{padding-right:.125rem!important}.md\:pb-0\.5{padding-bottom:.125rem!important}.md\:pl-0\.5{padding-left:.125rem!important}.md\:pt-1\.5{padding-top:.375rem!important}.md\:pr-1\.5{padding-right:.375rem!important}.md\:pb-1\.5{padding-bottom:.375rem!important}.md\:pl-1\.5{padding-left:.375rem!important}.md\:pt-2\.5{padding-top:.625rem!important}.md\:pr-2\.5{padding-right:.625rem!important}.md\:pb-2\.5{padding-bottom:.625rem!important}.md\:pl-2\.5{padding-left:.625rem!important}.md\:pt-3\.5{padding-top:.875rem!important}.md\:pr-3\.5{padding-right:.875rem!important}.md\:pb-3\.5{padding-bottom:.875rem!important}.md\:pl-3\.5{padding-left:.875rem!important}.md\:pt-1\/2{padding-top:50%!important}.md\:pr-1\/2{padding-right:50%!important}.md\:pb-1\/2{padding-bottom:50%!important}.md\:pl-1\/2{padding-left:50%!important}.md\:pt-1\/3{padding-top:33.333333%!important}.md\:pr-1\/3{padding-right:33.333333%!important}.md\:pb-1\/3{padding-bottom:33.333333%!important}.md\:pl-1\/3{padding-left:33.333333%!important}.md\:pt-2\/3{padding-top:66.666667%!important}.md\:pr-2\/3{padding-right:66.666667%!important}.md\:pb-2\/3{padding-bottom:66.666667%!important}.md\:pl-2\/3{padding-left:66.666667%!important}.md\:pt-1\/4{padding-top:25%!important}.md\:pr-1\/4{padding-right:25%!important}.md\:pb-1\/4{padding-bottom:25%!important}.md\:pl-1\/4{padding-left:25%!important}.md\:pt-2\/4{padding-top:50%!important}.md\:pr-2\/4{padding-right:50%!important}.md\:pb-2\/4{padding-bottom:50%!important}.md\:pl-2\/4{padding-left:50%!important}.md\:pt-3\/4{padding-top:75%!important}.md\:pr-3\/4{padding-right:75%!important}.md\:pb-3\/4{padding-bottom:75%!important}.md\:pl-3\/4{padding-left:75%!important}.md\:pt-1\/5{padding-top:20%!important}.md\:pr-1\/5{padding-right:20%!important}.md\:pb-1\/5{padding-bottom:20%!important}.md\:pl-1\/5{padding-left:20%!important}.md\:pt-2\/5{padding-top:40%!important}.md\:pr-2\/5{padding-right:40%!important}.md\:pb-2\/5{padding-bottom:40%!important}.md\:pl-2\/5{padding-left:40%!important}.md\:pt-3\/5{padding-top:60%!important}.md\:pr-3\/5{padding-right:60%!important}.md\:pb-3\/5{padding-bottom:60%!important}.md\:pl-3\/5{padding-left:60%!important}.md\:pt-4\/5{padding-top:80%!important}.md\:pr-4\/5{padding-right:80%!important}.md\:pb-4\/5{padding-bottom:80%!important}.md\:pl-4\/5{padding-left:80%!important}.md\:pt-1\/6{padding-top:16.666667%!important}.md\:pr-1\/6{padding-right:16.666667%!important}.md\:pb-1\/6{padding-bottom:16.666667%!important}.md\:pl-1\/6{padding-left:16.666667%!important}.md\:pt-2\/6{padding-top:33.333333%!important}.md\:pr-2\/6{padding-right:33.333333%!important}.md\:pb-2\/6{padding-bottom:33.333333%!important}.md\:pl-2\/6{padding-left:33.333333%!important}.md\:pt-3\/6{padding-top:50%!important}.md\:pr-3\/6{padding-right:50%!important}.md\:pb-3\/6{padding-bottom:50%!important}.md\:pl-3\/6{padding-left:50%!important}.md\:pt-4\/6{padding-top:66.666667%!important}.md\:pr-4\/6{padding-right:66.666667%!important}.md\:pb-4\/6{padding-bottom:66.666667%!important}.md\:pl-4\/6{padding-left:66.666667%!important}.md\:pt-5\/6{padding-top:83.333333%!important}.md\:pr-5\/6{padding-right:83.333333%!important}.md\:pb-5\/6{padding-bottom:83.333333%!important}.md\:pl-5\/6{padding-left:83.333333%!important}.md\:pt-1\/12{padding-top:8.333333%!important}.md\:pr-1\/12{padding-right:8.333333%!important}.md\:pb-1\/12{padding-bottom:8.333333%!important}.md\:pl-1\/12{padding-left:8.333333%!important}.md\:pt-2\/12{padding-top:16.666667%!important}.md\:pr-2\/12{padding-right:16.666667%!important}.md\:pb-2\/12{padding-bottom:16.666667%!important}.md\:pl-2\/12{padding-left:16.666667%!important}.md\:pt-3\/12{padding-top:25%!important}.md\:pr-3\/12{padding-right:25%!important}.md\:pb-3\/12{padding-bottom:25%!important}.md\:pl-3\/12{padding-left:25%!important}.md\:pt-4\/12{padding-top:33.333333%!important}.md\:pr-4\/12{padding-right:33.333333%!important}.md\:pb-4\/12{padding-bottom:33.333333%!important}.md\:pl-4\/12{padding-left:33.333333%!important}.md\:pt-5\/12{padding-top:41.666667%!important}.md\:pr-5\/12{padding-right:41.666667%!important}.md\:pb-5\/12{padding-bottom:41.666667%!important}.md\:pl-5\/12{padding-left:41.666667%!important}.md\:pt-6\/12{padding-top:50%!important}.md\:pr-6\/12{padding-right:50%!important}.md\:pb-6\/12{padding-bottom:50%!important}.md\:pl-6\/12{padding-left:50%!important}.md\:pt-7\/12{padding-top:58.333333%!important}.md\:pr-7\/12{padding-right:58.333333%!important}.md\:pb-7\/12{padding-bottom:58.333333%!important}.md\:pl-7\/12{padding-left:58.333333%!important}.md\:pt-8\/12{padding-top:66.666667%!important}.md\:pr-8\/12{padding-right:66.666667%!important}.md\:pb-8\/12{padding-bottom:66.666667%!important}.md\:pl-8\/12{padding-left:66.666667%!important}.md\:pt-9\/12{padding-top:75%!important}.md\:pr-9\/12{padding-right:75%!important}.md\:pb-9\/12{padding-bottom:75%!important}.md\:pl-9\/12{padding-left:75%!important}.md\:pt-10\/12{padding-top:83.333333%!important}.md\:pr-10\/12{padding-right:83.333333%!important}.md\:pb-10\/12{padding-bottom:83.333333%!important}.md\:pl-10\/12{padding-left:83.333333%!important}.md\:pt-11\/12{padding-top:91.666667%!important}.md\:pr-11\/12{padding-right:91.666667%!important}.md\:pb-11\/12{padding-bottom:91.666667%!important}.md\:pl-11\/12{padding-left:91.666667%!important}.md\:pt-full{padding-top:100%!important}.md\:pr-full{padding-right:100%!important}.md\:pb-full{padding-bottom:100%!important}.md\:pl-full{padding-left:100%!important}[dir=ltr] .md\:ltr\:p-0{padding:0!important}[dir=ltr] .md\:ltr\:p-1{padding:.25rem!important}[dir=ltr] .md\:ltr\:p-2{padding:.5rem!important}[dir=ltr] .md\:ltr\:p-3{padding:.75rem!important}[dir=ltr] .md\:ltr\:p-4{padding:1rem!important}[dir=ltr] .md\:ltr\:p-5{padding:1.25rem!important}[dir=ltr] .md\:ltr\:p-6{padding:1.5rem!important}[dir=ltr] .md\:ltr\:p-7{padding:1.75rem!important}[dir=ltr] .md\:ltr\:p-8{padding:2rem!important}[dir=ltr] .md\:ltr\:p-9{padding:2.25rem!important}[dir=ltr] .md\:ltr\:p-10{padding:2.5rem!important}[dir=ltr] .md\:ltr\:p-11{padding:2.75rem!important}[dir=ltr] .md\:ltr\:p-12{padding:3rem!important}[dir=ltr] .md\:ltr\:p-13{padding:3.25rem!important}[dir=ltr] .md\:ltr\:p-14{padding:3.5rem!important}[dir=ltr] .md\:ltr\:p-15{padding:3.75rem!important}[dir=ltr] .md\:ltr\:p-16{padding:4rem!important}[dir=ltr] .md\:ltr\:p-20{padding:5rem!important}[dir=ltr] .md\:ltr\:p-24{padding:6rem!important}[dir=ltr] .md\:ltr\:p-28{padding:7rem!important}[dir=ltr] .md\:ltr\:p-32{padding:8rem!important}[dir=ltr] .md\:ltr\:p-36{padding:9rem!important}[dir=ltr] .md\:ltr\:p-40{padding:10rem!important}[dir=ltr] .md\:ltr\:p-48{padding:12rem!important}[dir=ltr] .md\:ltr\:p-56{padding:14rem!important}[dir=ltr] .md\:ltr\:p-60{padding:15rem!important}[dir=ltr] .md\:ltr\:p-64{padding:16rem!important}[dir=ltr] .md\:ltr\:p-72{padding:18rem!important}[dir=ltr] .md\:ltr\:p-80{padding:20rem!important}[dir=ltr] .md\:ltr\:p-96{padding:24rem!important}[dir=ltr] .md\:ltr\:p-px{padding:1px!important}[dir=ltr] .md\:ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .md\:ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .md\:ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .md\:ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .md\:ltr\:p-1\/2{padding:50%!important}[dir=ltr] .md\:ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .md\:ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .md\:ltr\:p-1\/4{padding:25%!important}[dir=ltr] .md\:ltr\:p-2\/4{padding:50%!important}[dir=ltr] .md\:ltr\:p-3\/4{padding:75%!important}[dir=ltr] .md\:ltr\:p-1\/5{padding:20%!important}[dir=ltr] .md\:ltr\:p-2\/5{padding:40%!important}[dir=ltr] .md\:ltr\:p-3\/5{padding:60%!important}[dir=ltr] .md\:ltr\:p-4\/5{padding:80%!important}[dir=ltr] .md\:ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .md\:ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .md\:ltr\:p-3\/6{padding:50%!important}[dir=ltr] .md\:ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .md\:ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .md\:ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .md\:ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .md\:ltr\:p-3\/12{padding:25%!important}[dir=ltr] .md\:ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .md\:ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .md\:ltr\:p-6\/12{padding:50%!important}[dir=ltr] .md\:ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .md\:ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .md\:ltr\:p-9\/12{padding:75%!important}[dir=ltr] .md\:ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .md\:ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .md\:ltr\:p-full{padding:100%!important}[dir=ltr] .md\:ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .md\:ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .md\:ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .md\:ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .md\:ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .md\:ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .md\:ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .md\:ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .md\:ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .md\:ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .md\:ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .md\:ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .md\:ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .md\:ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .md\:ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .md\:ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .md\:ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .md\:ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .md\:ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .md\:ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .md\:ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .md\:ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .md\:ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .md\:ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .md\:ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .md\:ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .md\:ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .md\:ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .md\:ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .md\:ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .md\:ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .md\:ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .md\:ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .md\:ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .md\:ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .md\:ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .md\:ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .md\:ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .md\:ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .md\:ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .md\:ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .md\:ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .md\:ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .md\:ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .md\:ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .md\:ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .md\:ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .md\:ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .md\:ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .md\:ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .md\:ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .md\:ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .md\:ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .md\:ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .md\:ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .md\:ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .md\:ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .md\:ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .md\:ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .md\:ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .md\:ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .md\:ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .md\:ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .md\:ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .md\:ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .md\:ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .md\:ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .md\:ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .md\:ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .md\:ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .md\:ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .md\:ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .md\:ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .md\:ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .md\:ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .md\:ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .md\:ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .md\:ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .md\:ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .md\:ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .md\:ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .md\:ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .md\:ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .md\:ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .md\:ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .md\:ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .md\:ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .md\:ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .md\:ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .md\:ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .md\:ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .md\:ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .md\:ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .md\:ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .md\:ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .md\:ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .md\:ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .md\:ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .md\:ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .md\:ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .md\:ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .md\:ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .md\:ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .md\:ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .md\:ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .md\:ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .md\:ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .md\:ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .md\:ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .md\:ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .md\:ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .md\:ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .md\:ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .md\:ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .md\:ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .md\:ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .md\:ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .md\:ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .md\:ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .md\:ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .md\:ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .md\:ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .md\:ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .md\:ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .md\:ltr\:pt-0{padding-top:0!important}[dir=ltr] .md\:ltr\:pr-0{padding-right:0!important}[dir=ltr] .md\:ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .md\:ltr\:pl-0{padding-left:0!important}[dir=ltr] .md\:ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .md\:ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .md\:ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .md\:ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .md\:ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .md\:ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .md\:ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .md\:ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .md\:ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .md\:ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .md\:ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .md\:ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .md\:ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .md\:ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .md\:ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .md\:ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .md\:ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .md\:ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .md\:ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .md\:ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .md\:ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .md\:ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .md\:ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .md\:ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .md\:ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .md\:ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .md\:ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .md\:ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .md\:ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .md\:ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .md\:ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .md\:ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .md\:ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .md\:ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .md\:ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .md\:ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .md\:ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .md\:ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .md\:ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .md\:ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .md\:ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .md\:ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .md\:ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .md\:ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .md\:ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .md\:ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .md\:ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .md\:ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .md\:ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .md\:ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .md\:ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .md\:ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .md\:ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .md\:ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .md\:ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .md\:ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .md\:ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .md\:ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .md\:ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .md\:ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .md\:ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .md\:ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .md\:ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .md\:ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .md\:ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .md\:ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .md\:ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .md\:ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .md\:ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .md\:ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .md\:ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .md\:ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .md\:ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .md\:ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .md\:ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .md\:ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .md\:ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .md\:ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .md\:ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .md\:ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .md\:ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .md\:ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .md\:ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .md\:ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .md\:ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .md\:ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .md\:ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .md\:ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .md\:ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .md\:ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .md\:ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .md\:ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .md\:ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .md\:ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .md\:ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .md\:ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .md\:ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .md\:ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .md\:ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .md\:ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .md\:ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .md\:ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .md\:ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .md\:ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .md\:ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .md\:ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .md\:ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .md\:ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .md\:ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .md\:ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .md\:ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .md\:ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .md\:ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .md\:ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .md\:ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .md\:ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .md\:ltr\:pt-px{padding-top:1px!important}[dir=ltr] .md\:ltr\:pr-px{padding-right:1px!important}[dir=ltr] .md\:ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .md\:ltr\:pl-px{padding-left:1px!important}[dir=ltr] .md\:ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .md\:ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .md\:ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .md\:ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .md\:ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .md\:ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .md\:ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .md\:ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .md\:ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .md\:ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .md\:ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .md\:ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .md\:ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .md\:ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .md\:ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .md\:ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .md\:ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .md\:ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .md\:ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .md\:ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .md\:ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .md\:ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .md\:ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .md\:ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .md\:ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .md\:ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .md\:ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .md\:ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .md\:ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .md\:ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .md\:ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .md\:ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .md\:ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .md\:ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .md\:ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .md\:ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .md\:ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .md\:ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .md\:ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .md\:ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .md\:ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .md\:ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .md\:ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .md\:ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .md\:ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .md\:ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .md\:ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .md\:ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .md\:ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .md\:ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .md\:ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .md\:ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .md\:ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .md\:ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .md\:ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .md\:ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .md\:ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .md\:ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .md\:ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .md\:ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .md\:ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .md\:ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .md\:ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .md\:ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .md\:ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .md\:ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .md\:ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .md\:ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .md\:ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .md\:ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .md\:ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .md\:ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .md\:ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .md\:ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .md\:ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .md\:ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .md\:ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .md\:ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .md\:ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .md\:ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .md\:ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .md\:ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .md\:ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .md\:ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .md\:ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .md\:ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .md\:ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .md\:ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .md\:ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .md\:ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .md\:ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .md\:ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .md\:ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .md\:ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .md\:ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .md\:ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .md\:ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .md\:ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .md\:ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .md\:ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .md\:ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .md\:ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .md\:ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .md\:ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .md\:ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .md\:ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .md\:ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .md\:ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .md\:ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .md\:ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .md\:ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .md\:ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .md\:ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .md\:ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .md\:ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .md\:ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .md\:ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .md\:ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .md\:ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .md\:ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .md\:ltr\:pt-full{padding-top:100%!important}[dir=ltr] .md\:ltr\:pr-full{padding-right:100%!important}[dir=ltr] .md\:ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .md\:ltr\:pl-full{padding-left:100%!important}[dir=rtl] .md\:rtl\:p-0{padding:0!important}[dir=rtl] .md\:rtl\:p-1{padding:.25rem!important}[dir=rtl] .md\:rtl\:p-2{padding:.5rem!important}[dir=rtl] .md\:rtl\:p-3{padding:.75rem!important}[dir=rtl] .md\:rtl\:p-4{padding:1rem!important}[dir=rtl] .md\:rtl\:p-5{padding:1.25rem!important}[dir=rtl] .md\:rtl\:p-6{padding:1.5rem!important}[dir=rtl] .md\:rtl\:p-7{padding:1.75rem!important}[dir=rtl] .md\:rtl\:p-8{padding:2rem!important}[dir=rtl] .md\:rtl\:p-9{padding:2.25rem!important}[dir=rtl] .md\:rtl\:p-10{padding:2.5rem!important}[dir=rtl] .md\:rtl\:p-11{padding:2.75rem!important}[dir=rtl] .md\:rtl\:p-12{padding:3rem!important}[dir=rtl] .md\:rtl\:p-13{padding:3.25rem!important}[dir=rtl] .md\:rtl\:p-14{padding:3.5rem!important}[dir=rtl] .md\:rtl\:p-15{padding:3.75rem!important}[dir=rtl] .md\:rtl\:p-16{padding:4rem!important}[dir=rtl] .md\:rtl\:p-20{padding:5rem!important}[dir=rtl] .md\:rtl\:p-24{padding:6rem!important}[dir=rtl] .md\:rtl\:p-28{padding:7rem!important}[dir=rtl] .md\:rtl\:p-32{padding:8rem!important}[dir=rtl] .md\:rtl\:p-36{padding:9rem!important}[dir=rtl] .md\:rtl\:p-40{padding:10rem!important}[dir=rtl] .md\:rtl\:p-48{padding:12rem!important}[dir=rtl] .md\:rtl\:p-56{padding:14rem!important}[dir=rtl] .md\:rtl\:p-60{padding:15rem!important}[dir=rtl] .md\:rtl\:p-64{padding:16rem!important}[dir=rtl] .md\:rtl\:p-72{padding:18rem!important}[dir=rtl] .md\:rtl\:p-80{padding:20rem!important}[dir=rtl] .md\:rtl\:p-96{padding:24rem!important}[dir=rtl] .md\:rtl\:p-px{padding:1px!important}[dir=rtl] .md\:rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .md\:rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .md\:rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .md\:rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .md\:rtl\:p-1\/2{padding:50%!important}[dir=rtl] .md\:rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .md\:rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .md\:rtl\:p-1\/4{padding:25%!important}[dir=rtl] .md\:rtl\:p-2\/4{padding:50%!important}[dir=rtl] .md\:rtl\:p-3\/4{padding:75%!important}[dir=rtl] .md\:rtl\:p-1\/5{padding:20%!important}[dir=rtl] .md\:rtl\:p-2\/5{padding:40%!important}[dir=rtl] .md\:rtl\:p-3\/5{padding:60%!important}[dir=rtl] .md\:rtl\:p-4\/5{padding:80%!important}[dir=rtl] .md\:rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .md\:rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .md\:rtl\:p-3\/6{padding:50%!important}[dir=rtl] .md\:rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .md\:rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .md\:rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .md\:rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .md\:rtl\:p-3\/12{padding:25%!important}[dir=rtl] .md\:rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .md\:rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .md\:rtl\:p-6\/12{padding:50%!important}[dir=rtl] .md\:rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .md\:rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .md\:rtl\:p-9\/12{padding:75%!important}[dir=rtl] .md\:rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .md\:rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .md\:rtl\:p-full{padding:100%!important}[dir=rtl] .md\:rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .md\:rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .md\:rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .md\:rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .md\:rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .md\:rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .md\:rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .md\:rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .md\:rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .md\:rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .md\:rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .md\:rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .md\:rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .md\:rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .md\:rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .md\:rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .md\:rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .md\:rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .md\:rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .md\:rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .md\:rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .md\:rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .md\:rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .md\:rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .md\:rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .md\:rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .md\:rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .md\:rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .md\:rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .md\:rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .md\:rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .md\:rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .md\:rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .md\:rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .md\:rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .md\:rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .md\:rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .md\:rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .md\:rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .md\:rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .md\:rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .md\:rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .md\:rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .md\:rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .md\:rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .md\:rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .md\:rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .md\:rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .md\:rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .md\:rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .md\:rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .md\:rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .md\:rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .md\:rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .md\:rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .md\:rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .md\:rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .md\:rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .md\:rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .md\:rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .md\:rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .md\:rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .md\:rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .md\:rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .md\:rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .md\:rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .md\:rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .md\:rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .md\:rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .md\:rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .md\:rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .md\:rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .md\:rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .md\:rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .md\:rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .md\:rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .md\:rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .md\:rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .md\:rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .md\:rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .md\:rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .md\:rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .md\:rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .md\:rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .md\:rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .md\:rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .md\:rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .md\:rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .md\:rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .md\:rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .md\:rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .md\:rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .md\:rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .md\:rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .md\:rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .md\:rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .md\:rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .md\:rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .md\:rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .md\:rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .md\:rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .md\:rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .md\:rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .md\:rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .md\:rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .md\:rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .md\:rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .md\:rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .md\:rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .md\:rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .md\:rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .md\:rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .md\:rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .md\:rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .md\:rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .md\:rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .md\:rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .md\:rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .md\:rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .md\:rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .md\:rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .md\:rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .md\:rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .md\:rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .md\:rtl\:pt-0{padding-top:0!important}[dir=rtl] .md\:rtl\:pr-0{padding-right:0!important}[dir=rtl] .md\:rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .md\:rtl\:pl-0{padding-left:0!important}[dir=rtl] .md\:rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .md\:rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .md\:rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .md\:rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .md\:rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .md\:rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .md\:rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .md\:rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .md\:rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .md\:rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .md\:rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .md\:rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .md\:rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .md\:rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .md\:rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .md\:rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .md\:rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .md\:rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .md\:rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .md\:rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .md\:rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .md\:rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .md\:rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .md\:rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .md\:rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .md\:rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .md\:rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .md\:rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .md\:rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .md\:rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .md\:rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .md\:rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .md\:rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .md\:rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .md\:rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .md\:rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .md\:rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .md\:rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .md\:rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .md\:rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .md\:rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .md\:rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .md\:rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .md\:rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .md\:rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .md\:rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .md\:rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .md\:rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .md\:rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .md\:rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .md\:rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .md\:rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .md\:rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .md\:rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .md\:rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .md\:rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .md\:rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .md\:rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .md\:rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .md\:rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .md\:rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .md\:rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .md\:rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .md\:rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .md\:rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .md\:rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .md\:rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .md\:rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .md\:rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .md\:rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .md\:rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .md\:rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .md\:rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .md\:rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .md\:rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .md\:rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .md\:rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .md\:rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .md\:rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .md\:rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .md\:rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .md\:rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .md\:rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .md\:rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .md\:rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .md\:rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .md\:rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .md\:rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .md\:rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .md\:rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .md\:rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .md\:rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .md\:rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .md\:rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .md\:rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .md\:rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .md\:rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .md\:rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .md\:rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .md\:rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .md\:rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .md\:rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .md\:rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .md\:rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .md\:rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .md\:rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .md\:rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .md\:rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .md\:rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .md\:rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .md\:rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .md\:rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .md\:rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .md\:rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .md\:rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .md\:rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .md\:rtl\:pt-px{padding-top:1px!important}[dir=rtl] .md\:rtl\:pr-px{padding-right:1px!important}[dir=rtl] .md\:rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .md\:rtl\:pl-px{padding-left:1px!important}[dir=rtl] .md\:rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .md\:rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .md\:rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .md\:rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .md\:rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .md\:rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .md\:rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .md\:rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .md\:rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .md\:rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .md\:rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .md\:rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .md\:rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .md\:rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .md\:rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .md\:rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .md\:rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .md\:rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .md\:rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .md\:rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .md\:rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .md\:rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .md\:rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .md\:rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .md\:rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .md\:rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .md\:rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .md\:rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .md\:rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .md\:rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .md\:rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .md\:rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .md\:rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .md\:rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .md\:rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .md\:rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .md\:rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .md\:rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .md\:rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .md\:rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .md\:rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .md\:rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .md\:rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .md\:rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .md\:rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .md\:rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .md\:rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .md\:rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .md\:rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .md\:rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .md\:rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .md\:rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .md\:rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .md\:rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .md\:rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .md\:rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .md\:rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .md\:rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .md\:rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .md\:rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .md\:rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .md\:rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .md\:rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .md\:rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .md\:rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .md\:rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .md\:rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .md\:rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .md\:rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .md\:rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .md\:rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .md\:rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .md\:rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .md\:rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .md\:rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .md\:rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .md\:rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .md\:rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .md\:rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .md\:rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .md\:rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .md\:rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .md\:rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .md\:rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .md\:rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .md\:rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .md\:rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .md\:rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .md\:rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .md\:rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .md\:rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .md\:rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .md\:rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .md\:rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .md\:rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .md\:rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .md\:rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .md\:rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .md\:rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .md\:rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .md\:rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .md\:rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .md\:rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .md\:rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .md\:rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .md\:rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .md\:rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .md\:rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .md\:rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .md\:rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .md\:rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .md\:rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .md\:rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .md\:rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .md\:rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .md\:rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .md\:rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .md\:rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .md\:rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .md\:rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .md\:rtl\:pt-full{padding-top:100%!important}[dir=rtl] .md\:rtl\:pr-full{padding-right:100%!important}[dir=rtl] .md\:rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .md\:rtl\:pl-full{padding-left:100%!important}.md\:placeholder-transparent::-moz-placeholder{color:transparent!important}.md\:placeholder-transparent::placeholder{color:transparent!important}.md\:placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.md\:placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.md\:placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.md\:placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.md\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.md\:placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.md\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.md\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.md\:placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.md\:placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.md\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.md\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.md\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.md\:placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.md\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.md\:placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.md\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.md\:placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.md\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.md\:placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.md\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.md\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.md\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.md\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.md\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.md\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.md\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.md\:placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.md\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.md\:placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.md\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.md\:placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.md\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.md\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.md\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.md\:placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.md\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.md\:placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.md\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.md\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.md\:placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.md\:placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.md\:placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.md\:placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.md\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.md\:placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.md\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.md\:placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.md\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.md\:focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.md\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.md\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.md\:focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.md\:focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.md\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.md\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.md\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.md\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.md\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.md\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.md\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.md\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.md\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.md\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.md\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.md\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.md\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.md\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.md\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.md\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.md\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.md\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.md\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.md\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.md\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.md\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.md\:placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.md\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.md\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.md\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.md\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.md\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.md\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.md\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.md\:placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.md\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.md\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.md\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.md\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.md\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.md\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.md\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.md\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.md\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.md\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.md\:pointer-events-none{pointer-events:none!important}.md\:pointer-events-auto{pointer-events:auto!important}.md\:static{position:static!important}.md\:fixed{position:fixed!important}.md\:absolute{position:absolute!important}.md\:relative{position:relative!important}.md\:sticky{position:sticky!important}.md\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.md\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.md\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.md\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.md\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.md\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.md\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.md\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.md\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.md\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.md\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.md\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.md\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.md\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.md\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.md\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.md\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.md\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.md\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.md\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.md\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.md\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.md\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.md\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.md\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.md\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.md\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.md\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.md\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.md\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.md\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.md\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.md\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.md\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.md\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.md\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.md\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.md\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.md\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.md\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.md\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.md\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.md\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.md\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.md\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.md\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.md\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.md\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.md\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.md\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.md\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.md\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.md\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.md\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.md\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.md\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.md\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.md\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.md\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.md\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.md\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.md\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.md\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.md\:inset-y-0{bottom:0!important;top:0!important}.md\:inset-x-0{left:0!important;right:0!important}.md\:inset-y-1{bottom:.25rem!important;top:.25rem!important}.md\:inset-x-1{left:.25rem!important;right:.25rem!important}.md\:inset-y-2{bottom:.5rem!important;top:.5rem!important}.md\:inset-x-2{left:.5rem!important;right:.5rem!important}.md\:inset-y-3{bottom:.75rem!important;top:.75rem!important}.md\:inset-x-3{left:.75rem!important;right:.75rem!important}.md\:inset-y-4{bottom:1rem!important;top:1rem!important}.md\:inset-x-4{left:1rem!important;right:1rem!important}.md\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.md\:inset-x-5{left:1.25rem!important;right:1.25rem!important}.md\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.md\:inset-x-6{left:1.5rem!important;right:1.5rem!important}.md\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.md\:inset-x-7{left:1.75rem!important;right:1.75rem!important}.md\:inset-y-8{bottom:2rem!important;top:2rem!important}.md\:inset-x-8{left:2rem!important;right:2rem!important}.md\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.md\:inset-x-9{left:2.25rem!important;right:2.25rem!important}.md\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.md\:inset-x-10{left:2.5rem!important;right:2.5rem!important}.md\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.md\:inset-x-11{left:2.75rem!important;right:2.75rem!important}.md\:inset-y-12{bottom:3rem!important;top:3rem!important}.md\:inset-x-12{left:3rem!important;right:3rem!important}.md\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.md\:inset-x-13{left:3.25rem!important;right:3.25rem!important}.md\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.md\:inset-x-14{left:3.5rem!important;right:3.5rem!important}.md\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.md\:inset-x-15{left:3.75rem!important;right:3.75rem!important}.md\:inset-y-16{bottom:4rem!important;top:4rem!important}.md\:inset-x-16{left:4rem!important;right:4rem!important}.md\:inset-y-20{bottom:5rem!important;top:5rem!important}.md\:inset-x-20{left:5rem!important;right:5rem!important}.md\:inset-y-24{bottom:6rem!important;top:6rem!important}.md\:inset-x-24{left:6rem!important;right:6rem!important}.md\:inset-y-28{bottom:7rem!important;top:7rem!important}.md\:inset-x-28{left:7rem!important;right:7rem!important}.md\:inset-y-32{bottom:8rem!important;top:8rem!important}.md\:inset-x-32{left:8rem!important;right:8rem!important}.md\:inset-y-36{bottom:9rem!important;top:9rem!important}.md\:inset-x-36{left:9rem!important;right:9rem!important}.md\:inset-y-40{bottom:10rem!important;top:10rem!important}.md\:inset-x-40{left:10rem!important;right:10rem!important}.md\:inset-y-48{bottom:12rem!important;top:12rem!important}.md\:inset-x-48{left:12rem!important;right:12rem!important}.md\:inset-y-56{bottom:14rem!important;top:14rem!important}.md\:inset-x-56{left:14rem!important;right:14rem!important}.md\:inset-y-60{bottom:15rem!important;top:15rem!important}.md\:inset-x-60{left:15rem!important;right:15rem!important}.md\:inset-y-64{bottom:16rem!important;top:16rem!important}.md\:inset-x-64{left:16rem!important;right:16rem!important}.md\:inset-y-72{bottom:18rem!important;top:18rem!important}.md\:inset-x-72{left:18rem!important;right:18rem!important}.md\:inset-y-80{bottom:20rem!important;top:20rem!important}.md\:inset-x-80{left:20rem!important;right:20rem!important}.md\:inset-y-96{bottom:24rem!important;top:24rem!important}.md\:inset-x-96{left:24rem!important;right:24rem!important}.md\:inset-y-auto{bottom:auto!important;top:auto!important}.md\:inset-x-auto{left:auto!important;right:auto!important}.md\:inset-y-px{bottom:1px!important;top:1px!important}.md\:inset-x-px{left:1px!important;right:1px!important}.md\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.md\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}.md\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.md\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}.md\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.md\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}.md\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.md\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}.md\:inset-y-1\/2{bottom:50%!important;top:50%!important}.md\:inset-x-1\/2{left:50%!important;right:50%!important}.md\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.md\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.md\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.md\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.md\:inset-y-1\/4{bottom:25%!important;top:25%!important}.md\:inset-x-1\/4{left:25%!important;right:25%!important}.md\:inset-y-2\/4{bottom:50%!important;top:50%!important}.md\:inset-x-2\/4{left:50%!important;right:50%!important}.md\:inset-y-3\/4{bottom:75%!important;top:75%!important}.md\:inset-x-3\/4{left:75%!important;right:75%!important}.md\:inset-y-1\/5{bottom:20%!important;top:20%!important}.md\:inset-x-1\/5{left:20%!important;right:20%!important}.md\:inset-y-2\/5{bottom:40%!important;top:40%!important}.md\:inset-x-2\/5{left:40%!important;right:40%!important}.md\:inset-y-3\/5{bottom:60%!important;top:60%!important}.md\:inset-x-3\/5{left:60%!important;right:60%!important}.md\:inset-y-4\/5{bottom:80%!important;top:80%!important}.md\:inset-x-4\/5{left:80%!important;right:80%!important}.md\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.md\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.md\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.md\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.md\:inset-y-3\/6{bottom:50%!important;top:50%!important}.md\:inset-x-3\/6{left:50%!important;right:50%!important}.md\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.md\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.md\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.md\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.md\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.md\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.md\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.md\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.md\:inset-y-3\/12{bottom:25%!important;top:25%!important}.md\:inset-x-3\/12{left:25%!important;right:25%!important}.md\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.md\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.md\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.md\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.md\:inset-y-6\/12{bottom:50%!important;top:50%!important}.md\:inset-x-6\/12{left:50%!important;right:50%!important}.md\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.md\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.md\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.md\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.md\:inset-y-9\/12{bottom:75%!important;top:75%!important}.md\:inset-x-9\/12{left:75%!important;right:75%!important}.md\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.md\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.md\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.md\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.md\:inset-y-full{bottom:100%!important;top:100%!important}.md\:inset-x-full{left:100%!important;right:100%!important}.md\:top-0{top:0!important}.md\:right-0{right:0!important}.md\:bottom-0{bottom:0!important}.md\:left-0{left:0!important}.md\:top-1{top:.25rem!important}.md\:right-1{right:.25rem!important}.md\:bottom-1{bottom:.25rem!important}.md\:left-1{left:.25rem!important}.md\:top-2{top:.5rem!important}.md\:right-2{right:.5rem!important}.md\:bottom-2{bottom:.5rem!important}.md\:left-2{left:.5rem!important}.md\:top-3{top:.75rem!important}.md\:right-3{right:.75rem!important}.md\:bottom-3{bottom:.75rem!important}.md\:left-3{left:.75rem!important}.md\:top-4{top:1rem!important}.md\:right-4{right:1rem!important}.md\:bottom-4{bottom:1rem!important}.md\:left-4{left:1rem!important}.md\:top-5{top:1.25rem!important}.md\:right-5{right:1.25rem!important}.md\:bottom-5{bottom:1.25rem!important}.md\:left-5{left:1.25rem!important}.md\:top-6{top:1.5rem!important}.md\:right-6{right:1.5rem!important}.md\:bottom-6{bottom:1.5rem!important}.md\:left-6{left:1.5rem!important}.md\:top-7{top:1.75rem!important}.md\:right-7{right:1.75rem!important}.md\:bottom-7{bottom:1.75rem!important}.md\:left-7{left:1.75rem!important}.md\:top-8{top:2rem!important}.md\:right-8{right:2rem!important}.md\:bottom-8{bottom:2rem!important}.md\:left-8{left:2rem!important}.md\:top-9{top:2.25rem!important}.md\:right-9{right:2.25rem!important}.md\:bottom-9{bottom:2.25rem!important}.md\:left-9{left:2.25rem!important}.md\:top-10{top:2.5rem!important}.md\:right-10{right:2.5rem!important}.md\:bottom-10{bottom:2.5rem!important}.md\:left-10{left:2.5rem!important}.md\:top-11{top:2.75rem!important}.md\:right-11{right:2.75rem!important}.md\:bottom-11{bottom:2.75rem!important}.md\:left-11{left:2.75rem!important}.md\:top-12{top:3rem!important}.md\:right-12{right:3rem!important}.md\:bottom-12{bottom:3rem!important}.md\:left-12{left:3rem!important}.md\:top-13{top:3.25rem!important}.md\:right-13{right:3.25rem!important}.md\:bottom-13{bottom:3.25rem!important}.md\:left-13{left:3.25rem!important}.md\:top-14{top:3.5rem!important}.md\:right-14{right:3.5rem!important}.md\:bottom-14{bottom:3.5rem!important}.md\:left-14{left:3.5rem!important}.md\:top-15{top:3.75rem!important}.md\:right-15{right:3.75rem!important}.md\:bottom-15{bottom:3.75rem!important}.md\:left-15{left:3.75rem!important}.md\:top-16{top:4rem!important}.md\:right-16{right:4rem!important}.md\:bottom-16{bottom:4rem!important}.md\:left-16{left:4rem!important}.md\:top-20{top:5rem!important}.md\:right-20{right:5rem!important}.md\:bottom-20{bottom:5rem!important}.md\:left-20{left:5rem!important}.md\:top-24{top:6rem!important}.md\:right-24{right:6rem!important}.md\:bottom-24{bottom:6rem!important}.md\:left-24{left:6rem!important}.md\:top-28{top:7rem!important}.md\:right-28{right:7rem!important}.md\:bottom-28{bottom:7rem!important}.md\:left-28{left:7rem!important}.md\:top-32{top:8rem!important}.md\:right-32{right:8rem!important}.md\:bottom-32{bottom:8rem!important}.md\:left-32{left:8rem!important}.md\:top-36{top:9rem!important}.md\:right-36{right:9rem!important}.md\:bottom-36{bottom:9rem!important}.md\:left-36{left:9rem!important}.md\:top-40{top:10rem!important}.md\:right-40{right:10rem!important}.md\:bottom-40{bottom:10rem!important}.md\:left-40{left:10rem!important}.md\:top-48{top:12rem!important}.md\:right-48{right:12rem!important}.md\:bottom-48{bottom:12rem!important}.md\:left-48{left:12rem!important}.md\:top-56{top:14rem!important}.md\:right-56{right:14rem!important}.md\:bottom-56{bottom:14rem!important}.md\:left-56{left:14rem!important}.md\:top-60{top:15rem!important}.md\:right-60{right:15rem!important}.md\:bottom-60{bottom:15rem!important}.md\:left-60{left:15rem!important}.md\:top-64{top:16rem!important}.md\:right-64{right:16rem!important}.md\:bottom-64{bottom:16rem!important}.md\:left-64{left:16rem!important}.md\:top-72{top:18rem!important}.md\:right-72{right:18rem!important}.md\:bottom-72{bottom:18rem!important}.md\:left-72{left:18rem!important}.md\:top-80{top:20rem!important}.md\:right-80{right:20rem!important}.md\:bottom-80{bottom:20rem!important}.md\:left-80{left:20rem!important}.md\:top-96{top:24rem!important}.md\:right-96{right:24rem!important}.md\:bottom-96{bottom:24rem!important}.md\:left-96{left:24rem!important}.md\:top-auto{top:auto!important}.md\:right-auto{right:auto!important}.md\:bottom-auto{bottom:auto!important}.md\:left-auto{left:auto!important}.md\:top-px{top:1px!important}.md\:right-px{right:1px!important}.md\:bottom-px{bottom:1px!important}.md\:left-px{left:1px!important}.md\:top-0\.5{top:.125rem!important}.md\:right-0\.5{right:.125rem!important}.md\:bottom-0\.5{bottom:.125rem!important}.md\:left-0\.5{left:.125rem!important}.md\:top-1\.5{top:.375rem!important}.md\:right-1\.5{right:.375rem!important}.md\:bottom-1\.5{bottom:.375rem!important}.md\:left-1\.5{left:.375rem!important}.md\:top-2\.5{top:.625rem!important}.md\:right-2\.5{right:.625rem!important}.md\:bottom-2\.5{bottom:.625rem!important}.md\:left-2\.5{left:.625rem!important}.md\:top-3\.5{top:.875rem!important}.md\:right-3\.5{right:.875rem!important}.md\:bottom-3\.5{bottom:.875rem!important}.md\:left-3\.5{left:.875rem!important}.md\:top-1\/2{top:50%!important}.md\:right-1\/2{right:50%!important}.md\:bottom-1\/2{bottom:50%!important}.md\:left-1\/2{left:50%!important}.md\:top-1\/3{top:33.333333%!important}.md\:right-1\/3{right:33.333333%!important}.md\:bottom-1\/3{bottom:33.333333%!important}.md\:left-1\/3{left:33.333333%!important}.md\:top-2\/3{top:66.666667%!important}.md\:right-2\/3{right:66.666667%!important}.md\:bottom-2\/3{bottom:66.666667%!important}.md\:left-2\/3{left:66.666667%!important}.md\:top-1\/4{top:25%!important}.md\:right-1\/4{right:25%!important}.md\:bottom-1\/4{bottom:25%!important}.md\:left-1\/4{left:25%!important}.md\:top-2\/4{top:50%!important}.md\:right-2\/4{right:50%!important}.md\:bottom-2\/4{bottom:50%!important}.md\:left-2\/4{left:50%!important}.md\:top-3\/4{top:75%!important}.md\:right-3\/4{right:75%!important}.md\:bottom-3\/4{bottom:75%!important}.md\:left-3\/4{left:75%!important}.md\:top-1\/5{top:20%!important}.md\:right-1\/5{right:20%!important}.md\:bottom-1\/5{bottom:20%!important}.md\:left-1\/5{left:20%!important}.md\:top-2\/5{top:40%!important}.md\:right-2\/5{right:40%!important}.md\:bottom-2\/5{bottom:40%!important}.md\:left-2\/5{left:40%!important}.md\:top-3\/5{top:60%!important}.md\:right-3\/5{right:60%!important}.md\:bottom-3\/5{bottom:60%!important}.md\:left-3\/5{left:60%!important}.md\:top-4\/5{top:80%!important}.md\:right-4\/5{right:80%!important}.md\:bottom-4\/5{bottom:80%!important}.md\:left-4\/5{left:80%!important}.md\:top-1\/6{top:16.666667%!important}.md\:right-1\/6{right:16.666667%!important}.md\:bottom-1\/6{bottom:16.666667%!important}.md\:left-1\/6{left:16.666667%!important}.md\:top-2\/6{top:33.333333%!important}.md\:right-2\/6{right:33.333333%!important}.md\:bottom-2\/6{bottom:33.333333%!important}.md\:left-2\/6{left:33.333333%!important}.md\:top-3\/6{top:50%!important}.md\:right-3\/6{right:50%!important}.md\:bottom-3\/6{bottom:50%!important}.md\:left-3\/6{left:50%!important}.md\:top-4\/6{top:66.666667%!important}.md\:right-4\/6{right:66.666667%!important}.md\:bottom-4\/6{bottom:66.666667%!important}.md\:left-4\/6{left:66.666667%!important}.md\:top-5\/6{top:83.333333%!important}.md\:right-5\/6{right:83.333333%!important}.md\:bottom-5\/6{bottom:83.333333%!important}.md\:left-5\/6{left:83.333333%!important}.md\:top-1\/12{top:8.333333%!important}.md\:right-1\/12{right:8.333333%!important}.md\:bottom-1\/12{bottom:8.333333%!important}.md\:left-1\/12{left:8.333333%!important}.md\:top-2\/12{top:16.666667%!important}.md\:right-2\/12{right:16.666667%!important}.md\:bottom-2\/12{bottom:16.666667%!important}.md\:left-2\/12{left:16.666667%!important}.md\:top-3\/12{top:25%!important}.md\:right-3\/12{right:25%!important}.md\:bottom-3\/12{bottom:25%!important}.md\:left-3\/12{left:25%!important}.md\:top-4\/12{top:33.333333%!important}.md\:right-4\/12{right:33.333333%!important}.md\:bottom-4\/12{bottom:33.333333%!important}.md\:left-4\/12{left:33.333333%!important}.md\:top-5\/12{top:41.666667%!important}.md\:right-5\/12{right:41.666667%!important}.md\:bottom-5\/12{bottom:41.666667%!important}.md\:left-5\/12{left:41.666667%!important}.md\:top-6\/12{top:50%!important}.md\:right-6\/12{right:50%!important}.md\:bottom-6\/12{bottom:50%!important}.md\:left-6\/12{left:50%!important}.md\:top-7\/12{top:58.333333%!important}.md\:right-7\/12{right:58.333333%!important}.md\:bottom-7\/12{bottom:58.333333%!important}.md\:left-7\/12{left:58.333333%!important}.md\:top-8\/12{top:66.666667%!important}.md\:right-8\/12{right:66.666667%!important}.md\:bottom-8\/12{bottom:66.666667%!important}.md\:left-8\/12{left:66.666667%!important}.md\:top-9\/12{top:75%!important}.md\:right-9\/12{right:75%!important}.md\:bottom-9\/12{bottom:75%!important}.md\:left-9\/12{left:75%!important}.md\:top-10\/12{top:83.333333%!important}.md\:right-10\/12{right:83.333333%!important}.md\:bottom-10\/12{bottom:83.333333%!important}.md\:left-10\/12{left:83.333333%!important}.md\:top-11\/12{top:91.666667%!important}.md\:right-11\/12{right:91.666667%!important}.md\:bottom-11\/12{bottom:91.666667%!important}.md\:left-11\/12{left:91.666667%!important}.md\:top-full{top:100%!important}.md\:right-full{right:100%!important}.md\:bottom-full{bottom:100%!important}.md\:left-full{left:100%!important}[dir=ltr] .md\:ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .md\:ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .md\:ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .md\:ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .md\:ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .md\:ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .md\:ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .md\:ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .md\:ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .md\:ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .md\:ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .md\:ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .md\:ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .md\:ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .md\:ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .md\:ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .md\:ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .md\:ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .md\:ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .md\:ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .md\:ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .md\:ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .md\:ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .md\:ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .md\:ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .md\:ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .md\:ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .md\:ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .md\:ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .md\:ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .md\:ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .md\:ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .md\:ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .md\:ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .md\:ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .md\:ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .md\:ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .md\:ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .md\:ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .md\:ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .md\:ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .md\:ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .md\:ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .md\:ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .md\:ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .md\:ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .md\:ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .md\:ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .md\:ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .md\:ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .md\:ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .md\:ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .md\:ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .md\:ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .md\:ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .md\:ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .md\:ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .md\:ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .md\:ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .md\:ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .md\:ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .md\:ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .md\:ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .md\:ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .md\:ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .md\:ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .md\:ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .md\:ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .md\:ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .md\:ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .md\:ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .md\:ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .md\:ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .md\:ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .md\:ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .md\:ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .md\:ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .md\:ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .md\:ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .md\:ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .md\:ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .md\:ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .md\:ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .md\:ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .md\:ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .md\:ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .md\:ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .md\:ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .md\:ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .md\:ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .md\:ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .md\:ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .md\:ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .md\:ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .md\:ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .md\:ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .md\:ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .md\:ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .md\:ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .md\:ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .md\:ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .md\:ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .md\:ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .md\:ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .md\:ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .md\:ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .md\:ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .md\:ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .md\:ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .md\:ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .md\:ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .md\:ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .md\:ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .md\:ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .md\:ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .md\:ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .md\:ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .md\:ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .md\:ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .md\:ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .md\:ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .md\:ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .md\:ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .md\:ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .md\:ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .md\:ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .md\:ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .md\:ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .md\:ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .md\:ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .md\:ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .md\:ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .md\:ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .md\:ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .md\:ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .md\:ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .md\:ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .md\:ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .md\:ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .md\:ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .md\:ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .md\:ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .md\:ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .md\:ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .md\:ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .md\:ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .md\:ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .md\:ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .md\:ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .md\:ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .md\:ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .md\:ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .md\:ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .md\:ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .md\:ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .md\:ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .md\:ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .md\:ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .md\:ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .md\:ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .md\:ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .md\:ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .md\:ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .md\:ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .md\:ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .md\:ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .md\:ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .md\:ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .md\:ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .md\:ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .md\:ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .md\:ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .md\:ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .md\:ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .md\:ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .md\:ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .md\:ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .md\:ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .md\:ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .md\:ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .md\:ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .md\:ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .md\:ltr\:top-0{top:0!important}[dir=ltr] .md\:ltr\:right-0{right:0!important}[dir=ltr] .md\:ltr\:bottom-0{bottom:0!important}[dir=ltr] .md\:ltr\:left-0{left:0!important}[dir=ltr] .md\:ltr\:top-1{top:.25rem!important}[dir=ltr] .md\:ltr\:right-1{right:.25rem!important}[dir=ltr] .md\:ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .md\:ltr\:left-1{left:.25rem!important}[dir=ltr] .md\:ltr\:top-2{top:.5rem!important}[dir=ltr] .md\:ltr\:right-2{right:.5rem!important}[dir=ltr] .md\:ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .md\:ltr\:left-2{left:.5rem!important}[dir=ltr] .md\:ltr\:top-3{top:.75rem!important}[dir=ltr] .md\:ltr\:right-3{right:.75rem!important}[dir=ltr] .md\:ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .md\:ltr\:left-3{left:.75rem!important}[dir=ltr] .md\:ltr\:top-4{top:1rem!important}[dir=ltr] .md\:ltr\:right-4{right:1rem!important}[dir=ltr] .md\:ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .md\:ltr\:left-4{left:1rem!important}[dir=ltr] .md\:ltr\:top-5{top:1.25rem!important}[dir=ltr] .md\:ltr\:right-5{right:1.25rem!important}[dir=ltr] .md\:ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .md\:ltr\:left-5{left:1.25rem!important}[dir=ltr] .md\:ltr\:top-6{top:1.5rem!important}[dir=ltr] .md\:ltr\:right-6{right:1.5rem!important}[dir=ltr] .md\:ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .md\:ltr\:left-6{left:1.5rem!important}[dir=ltr] .md\:ltr\:top-7{top:1.75rem!important}[dir=ltr] .md\:ltr\:right-7{right:1.75rem!important}[dir=ltr] .md\:ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .md\:ltr\:left-7{left:1.75rem!important}[dir=ltr] .md\:ltr\:top-8{top:2rem!important}[dir=ltr] .md\:ltr\:right-8{right:2rem!important}[dir=ltr] .md\:ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .md\:ltr\:left-8{left:2rem!important}[dir=ltr] .md\:ltr\:top-9{top:2.25rem!important}[dir=ltr] .md\:ltr\:right-9{right:2.25rem!important}[dir=ltr] .md\:ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .md\:ltr\:left-9{left:2.25rem!important}[dir=ltr] .md\:ltr\:top-10{top:2.5rem!important}[dir=ltr] .md\:ltr\:right-10{right:2.5rem!important}[dir=ltr] .md\:ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .md\:ltr\:left-10{left:2.5rem!important}[dir=ltr] .md\:ltr\:top-11{top:2.75rem!important}[dir=ltr] .md\:ltr\:right-11{right:2.75rem!important}[dir=ltr] .md\:ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .md\:ltr\:left-11{left:2.75rem!important}[dir=ltr] .md\:ltr\:top-12{top:3rem!important}[dir=ltr] .md\:ltr\:right-12{right:3rem!important}[dir=ltr] .md\:ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .md\:ltr\:left-12{left:3rem!important}[dir=ltr] .md\:ltr\:top-13{top:3.25rem!important}[dir=ltr] .md\:ltr\:right-13{right:3.25rem!important}[dir=ltr] .md\:ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .md\:ltr\:left-13{left:3.25rem!important}[dir=ltr] .md\:ltr\:top-14{top:3.5rem!important}[dir=ltr] .md\:ltr\:right-14{right:3.5rem!important}[dir=ltr] .md\:ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .md\:ltr\:left-14{left:3.5rem!important}[dir=ltr] .md\:ltr\:top-15{top:3.75rem!important}[dir=ltr] .md\:ltr\:right-15{right:3.75rem!important}[dir=ltr] .md\:ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .md\:ltr\:left-15{left:3.75rem!important}[dir=ltr] .md\:ltr\:top-16{top:4rem!important}[dir=ltr] .md\:ltr\:right-16{right:4rem!important}[dir=ltr] .md\:ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .md\:ltr\:left-16{left:4rem!important}[dir=ltr] .md\:ltr\:top-20{top:5rem!important}[dir=ltr] .md\:ltr\:right-20{right:5rem!important}[dir=ltr] .md\:ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .md\:ltr\:left-20{left:5rem!important}[dir=ltr] .md\:ltr\:top-24{top:6rem!important}[dir=ltr] .md\:ltr\:right-24{right:6rem!important}[dir=ltr] .md\:ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .md\:ltr\:left-24{left:6rem!important}[dir=ltr] .md\:ltr\:top-28{top:7rem!important}[dir=ltr] .md\:ltr\:right-28{right:7rem!important}[dir=ltr] .md\:ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .md\:ltr\:left-28{left:7rem!important}[dir=ltr] .md\:ltr\:top-32{top:8rem!important}[dir=ltr] .md\:ltr\:right-32{right:8rem!important}[dir=ltr] .md\:ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .md\:ltr\:left-32{left:8rem!important}[dir=ltr] .md\:ltr\:top-36{top:9rem!important}[dir=ltr] .md\:ltr\:right-36{right:9rem!important}[dir=ltr] .md\:ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .md\:ltr\:left-36{left:9rem!important}[dir=ltr] .md\:ltr\:top-40{top:10rem!important}[dir=ltr] .md\:ltr\:right-40{right:10rem!important}[dir=ltr] .md\:ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .md\:ltr\:left-40{left:10rem!important}[dir=ltr] .md\:ltr\:top-48{top:12rem!important}[dir=ltr] .md\:ltr\:right-48{right:12rem!important}[dir=ltr] .md\:ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .md\:ltr\:left-48{left:12rem!important}[dir=ltr] .md\:ltr\:top-56{top:14rem!important}[dir=ltr] .md\:ltr\:right-56{right:14rem!important}[dir=ltr] .md\:ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .md\:ltr\:left-56{left:14rem!important}[dir=ltr] .md\:ltr\:top-60{top:15rem!important}[dir=ltr] .md\:ltr\:right-60{right:15rem!important}[dir=ltr] .md\:ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .md\:ltr\:left-60{left:15rem!important}[dir=ltr] .md\:ltr\:top-64{top:16rem!important}[dir=ltr] .md\:ltr\:right-64{right:16rem!important}[dir=ltr] .md\:ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .md\:ltr\:left-64{left:16rem!important}[dir=ltr] .md\:ltr\:top-72{top:18rem!important}[dir=ltr] .md\:ltr\:right-72{right:18rem!important}[dir=ltr] .md\:ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .md\:ltr\:left-72{left:18rem!important}[dir=ltr] .md\:ltr\:top-80{top:20rem!important}[dir=ltr] .md\:ltr\:right-80{right:20rem!important}[dir=ltr] .md\:ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .md\:ltr\:left-80{left:20rem!important}[dir=ltr] .md\:ltr\:top-96{top:24rem!important}[dir=ltr] .md\:ltr\:right-96{right:24rem!important}[dir=ltr] .md\:ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .md\:ltr\:left-96{left:24rem!important}[dir=ltr] .md\:ltr\:top-auto{top:auto!important}[dir=ltr] .md\:ltr\:right-auto{right:auto!important}[dir=ltr] .md\:ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .md\:ltr\:left-auto{left:auto!important}[dir=ltr] .md\:ltr\:top-px{top:1px!important}[dir=ltr] .md\:ltr\:right-px{right:1px!important}[dir=ltr] .md\:ltr\:bottom-px{bottom:1px!important}[dir=ltr] .md\:ltr\:left-px{left:1px!important}[dir=ltr] .md\:ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .md\:ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .md\:ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .md\:ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .md\:ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .md\:ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .md\:ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .md\:ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .md\:ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .md\:ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .md\:ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .md\:ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .md\:ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .md\:ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .md\:ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .md\:ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .md\:ltr\:top-1\/2{top:50%!important}[dir=ltr] .md\:ltr\:right-1\/2{right:50%!important}[dir=ltr] .md\:ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .md\:ltr\:left-1\/2{left:50%!important}[dir=ltr] .md\:ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .md\:ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .md\:ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .md\:ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .md\:ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .md\:ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .md\:ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .md\:ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .md\:ltr\:top-1\/4{top:25%!important}[dir=ltr] .md\:ltr\:right-1\/4{right:25%!important}[dir=ltr] .md\:ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .md\:ltr\:left-1\/4{left:25%!important}[dir=ltr] .md\:ltr\:top-2\/4{top:50%!important}[dir=ltr] .md\:ltr\:right-2\/4{right:50%!important}[dir=ltr] .md\:ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .md\:ltr\:left-2\/4{left:50%!important}[dir=ltr] .md\:ltr\:top-3\/4{top:75%!important}[dir=ltr] .md\:ltr\:right-3\/4{right:75%!important}[dir=ltr] .md\:ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .md\:ltr\:left-3\/4{left:75%!important}[dir=ltr] .md\:ltr\:top-1\/5{top:20%!important}[dir=ltr] .md\:ltr\:right-1\/5{right:20%!important}[dir=ltr] .md\:ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .md\:ltr\:left-1\/5{left:20%!important}[dir=ltr] .md\:ltr\:top-2\/5{top:40%!important}[dir=ltr] .md\:ltr\:right-2\/5{right:40%!important}[dir=ltr] .md\:ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .md\:ltr\:left-2\/5{left:40%!important}[dir=ltr] .md\:ltr\:top-3\/5{top:60%!important}[dir=ltr] .md\:ltr\:right-3\/5{right:60%!important}[dir=ltr] .md\:ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .md\:ltr\:left-3\/5{left:60%!important}[dir=ltr] .md\:ltr\:top-4\/5{top:80%!important}[dir=ltr] .md\:ltr\:right-4\/5{right:80%!important}[dir=ltr] .md\:ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .md\:ltr\:left-4\/5{left:80%!important}[dir=ltr] .md\:ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .md\:ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .md\:ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .md\:ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .md\:ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .md\:ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .md\:ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .md\:ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .md\:ltr\:top-3\/6{top:50%!important}[dir=ltr] .md\:ltr\:right-3\/6{right:50%!important}[dir=ltr] .md\:ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .md\:ltr\:left-3\/6{left:50%!important}[dir=ltr] .md\:ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .md\:ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .md\:ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .md\:ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .md\:ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .md\:ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .md\:ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .md\:ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .md\:ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .md\:ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .md\:ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .md\:ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .md\:ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .md\:ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .md\:ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .md\:ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .md\:ltr\:top-3\/12{top:25%!important}[dir=ltr] .md\:ltr\:right-3\/12{right:25%!important}[dir=ltr] .md\:ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .md\:ltr\:left-3\/12{left:25%!important}[dir=ltr] .md\:ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .md\:ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .md\:ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .md\:ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .md\:ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .md\:ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .md\:ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .md\:ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .md\:ltr\:top-6\/12{top:50%!important}[dir=ltr] .md\:ltr\:right-6\/12{right:50%!important}[dir=ltr] .md\:ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .md\:ltr\:left-6\/12{left:50%!important}[dir=ltr] .md\:ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .md\:ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .md\:ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .md\:ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .md\:ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .md\:ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .md\:ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .md\:ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .md\:ltr\:top-9\/12{top:75%!important}[dir=ltr] .md\:ltr\:right-9\/12{right:75%!important}[dir=ltr] .md\:ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .md\:ltr\:left-9\/12{left:75%!important}[dir=ltr] .md\:ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .md\:ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .md\:ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .md\:ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .md\:ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .md\:ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .md\:ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .md\:ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .md\:ltr\:top-full{top:100%!important}[dir=ltr] .md\:ltr\:right-full{right:100%!important}[dir=ltr] .md\:ltr\:bottom-full{bottom:100%!important}[dir=ltr] .md\:ltr\:left-full{left:100%!important}[dir=rtl] .md\:rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .md\:rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .md\:rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .md\:rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .md\:rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .md\:rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .md\:rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .md\:rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .md\:rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .md\:rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .md\:rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .md\:rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .md\:rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .md\:rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .md\:rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .md\:rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .md\:rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .md\:rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .md\:rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .md\:rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .md\:rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .md\:rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .md\:rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .md\:rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .md\:rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .md\:rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .md\:rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .md\:rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .md\:rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .md\:rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .md\:rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .md\:rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .md\:rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .md\:rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .md\:rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .md\:rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .md\:rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .md\:rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .md\:rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .md\:rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .md\:rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .md\:rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .md\:rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .md\:rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .md\:rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .md\:rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .md\:rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .md\:rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .md\:rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .md\:rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .md\:rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .md\:rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .md\:rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .md\:rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .md\:rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .md\:rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .md\:rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .md\:rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .md\:rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .md\:rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .md\:rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .md\:rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .md\:rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .md\:rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .md\:rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .md\:rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .md\:rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .md\:rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .md\:rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .md\:rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .md\:rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .md\:rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .md\:rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .md\:rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .md\:rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .md\:rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .md\:rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .md\:rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .md\:rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .md\:rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .md\:rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .md\:rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .md\:rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .md\:rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .md\:rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .md\:rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .md\:rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .md\:rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .md\:rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .md\:rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .md\:rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .md\:rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .md\:rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .md\:rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .md\:rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .md\:rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .md\:rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .md\:rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .md\:rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .md\:rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .md\:rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .md\:rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .md\:rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .md\:rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .md\:rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .md\:rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .md\:rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .md\:rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .md\:rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .md\:rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .md\:rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .md\:rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .md\:rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .md\:rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .md\:rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .md\:rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .md\:rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .md\:rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .md\:rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .md\:rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .md\:rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .md\:rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .md\:rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .md\:rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .md\:rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .md\:rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .md\:rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .md\:rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .md\:rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .md\:rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .md\:rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .md\:rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .md\:rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .md\:rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .md\:rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .md\:rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .md\:rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .md\:rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .md\:rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .md\:rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .md\:rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .md\:rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .md\:rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .md\:rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .md\:rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .md\:rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .md\:rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .md\:rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .md\:rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .md\:rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .md\:rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .md\:rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .md\:rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .md\:rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .md\:rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .md\:rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .md\:rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .md\:rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .md\:rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .md\:rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .md\:rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .md\:rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .md\:rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .md\:rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .md\:rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .md\:rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .md\:rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .md\:rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .md\:rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .md\:rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .md\:rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .md\:rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .md\:rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .md\:rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .md\:rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .md\:rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .md\:rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .md\:rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .md\:rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .md\:rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .md\:rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .md\:rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .md\:rtl\:top-0{top:0!important}[dir=rtl] .md\:rtl\:right-0{right:0!important}[dir=rtl] .md\:rtl\:bottom-0{bottom:0!important}[dir=rtl] .md\:rtl\:left-0{left:0!important}[dir=rtl] .md\:rtl\:top-1{top:.25rem!important}[dir=rtl] .md\:rtl\:right-1{right:.25rem!important}[dir=rtl] .md\:rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .md\:rtl\:left-1{left:.25rem!important}[dir=rtl] .md\:rtl\:top-2{top:.5rem!important}[dir=rtl] .md\:rtl\:right-2{right:.5rem!important}[dir=rtl] .md\:rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .md\:rtl\:left-2{left:.5rem!important}[dir=rtl] .md\:rtl\:top-3{top:.75rem!important}[dir=rtl] .md\:rtl\:right-3{right:.75rem!important}[dir=rtl] .md\:rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .md\:rtl\:left-3{left:.75rem!important}[dir=rtl] .md\:rtl\:top-4{top:1rem!important}[dir=rtl] .md\:rtl\:right-4{right:1rem!important}[dir=rtl] .md\:rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .md\:rtl\:left-4{left:1rem!important}[dir=rtl] .md\:rtl\:top-5{top:1.25rem!important}[dir=rtl] .md\:rtl\:right-5{right:1.25rem!important}[dir=rtl] .md\:rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .md\:rtl\:left-5{left:1.25rem!important}[dir=rtl] .md\:rtl\:top-6{top:1.5rem!important}[dir=rtl] .md\:rtl\:right-6{right:1.5rem!important}[dir=rtl] .md\:rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .md\:rtl\:left-6{left:1.5rem!important}[dir=rtl] .md\:rtl\:top-7{top:1.75rem!important}[dir=rtl] .md\:rtl\:right-7{right:1.75rem!important}[dir=rtl] .md\:rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .md\:rtl\:left-7{left:1.75rem!important}[dir=rtl] .md\:rtl\:top-8{top:2rem!important}[dir=rtl] .md\:rtl\:right-8{right:2rem!important}[dir=rtl] .md\:rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .md\:rtl\:left-8{left:2rem!important}[dir=rtl] .md\:rtl\:top-9{top:2.25rem!important}[dir=rtl] .md\:rtl\:right-9{right:2.25rem!important}[dir=rtl] .md\:rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .md\:rtl\:left-9{left:2.25rem!important}[dir=rtl] .md\:rtl\:top-10{top:2.5rem!important}[dir=rtl] .md\:rtl\:right-10{right:2.5rem!important}[dir=rtl] .md\:rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .md\:rtl\:left-10{left:2.5rem!important}[dir=rtl] .md\:rtl\:top-11{top:2.75rem!important}[dir=rtl] .md\:rtl\:right-11{right:2.75rem!important}[dir=rtl] .md\:rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .md\:rtl\:left-11{left:2.75rem!important}[dir=rtl] .md\:rtl\:top-12{top:3rem!important}[dir=rtl] .md\:rtl\:right-12{right:3rem!important}[dir=rtl] .md\:rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .md\:rtl\:left-12{left:3rem!important}[dir=rtl] .md\:rtl\:top-13{top:3.25rem!important}[dir=rtl] .md\:rtl\:right-13{right:3.25rem!important}[dir=rtl] .md\:rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .md\:rtl\:left-13{left:3.25rem!important}[dir=rtl] .md\:rtl\:top-14{top:3.5rem!important}[dir=rtl] .md\:rtl\:right-14{right:3.5rem!important}[dir=rtl] .md\:rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .md\:rtl\:left-14{left:3.5rem!important}[dir=rtl] .md\:rtl\:top-15{top:3.75rem!important}[dir=rtl] .md\:rtl\:right-15{right:3.75rem!important}[dir=rtl] .md\:rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .md\:rtl\:left-15{left:3.75rem!important}[dir=rtl] .md\:rtl\:top-16{top:4rem!important}[dir=rtl] .md\:rtl\:right-16{right:4rem!important}[dir=rtl] .md\:rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .md\:rtl\:left-16{left:4rem!important}[dir=rtl] .md\:rtl\:top-20{top:5rem!important}[dir=rtl] .md\:rtl\:right-20{right:5rem!important}[dir=rtl] .md\:rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .md\:rtl\:left-20{left:5rem!important}[dir=rtl] .md\:rtl\:top-24{top:6rem!important}[dir=rtl] .md\:rtl\:right-24{right:6rem!important}[dir=rtl] .md\:rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .md\:rtl\:left-24{left:6rem!important}[dir=rtl] .md\:rtl\:top-28{top:7rem!important}[dir=rtl] .md\:rtl\:right-28{right:7rem!important}[dir=rtl] .md\:rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .md\:rtl\:left-28{left:7rem!important}[dir=rtl] .md\:rtl\:top-32{top:8rem!important}[dir=rtl] .md\:rtl\:right-32{right:8rem!important}[dir=rtl] .md\:rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .md\:rtl\:left-32{left:8rem!important}[dir=rtl] .md\:rtl\:top-36{top:9rem!important}[dir=rtl] .md\:rtl\:right-36{right:9rem!important}[dir=rtl] .md\:rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .md\:rtl\:left-36{left:9rem!important}[dir=rtl] .md\:rtl\:top-40{top:10rem!important}[dir=rtl] .md\:rtl\:right-40{right:10rem!important}[dir=rtl] .md\:rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .md\:rtl\:left-40{left:10rem!important}[dir=rtl] .md\:rtl\:top-48{top:12rem!important}[dir=rtl] .md\:rtl\:right-48{right:12rem!important}[dir=rtl] .md\:rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .md\:rtl\:left-48{left:12rem!important}[dir=rtl] .md\:rtl\:top-56{top:14rem!important}[dir=rtl] .md\:rtl\:right-56{right:14rem!important}[dir=rtl] .md\:rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .md\:rtl\:left-56{left:14rem!important}[dir=rtl] .md\:rtl\:top-60{top:15rem!important}[dir=rtl] .md\:rtl\:right-60{right:15rem!important}[dir=rtl] .md\:rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .md\:rtl\:left-60{left:15rem!important}[dir=rtl] .md\:rtl\:top-64{top:16rem!important}[dir=rtl] .md\:rtl\:right-64{right:16rem!important}[dir=rtl] .md\:rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .md\:rtl\:left-64{left:16rem!important}[dir=rtl] .md\:rtl\:top-72{top:18rem!important}[dir=rtl] .md\:rtl\:right-72{right:18rem!important}[dir=rtl] .md\:rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .md\:rtl\:left-72{left:18rem!important}[dir=rtl] .md\:rtl\:top-80{top:20rem!important}[dir=rtl] .md\:rtl\:right-80{right:20rem!important}[dir=rtl] .md\:rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .md\:rtl\:left-80{left:20rem!important}[dir=rtl] .md\:rtl\:top-96{top:24rem!important}[dir=rtl] .md\:rtl\:right-96{right:24rem!important}[dir=rtl] .md\:rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .md\:rtl\:left-96{left:24rem!important}[dir=rtl] .md\:rtl\:top-auto{top:auto!important}[dir=rtl] .md\:rtl\:right-auto{right:auto!important}[dir=rtl] .md\:rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .md\:rtl\:left-auto{left:auto!important}[dir=rtl] .md\:rtl\:top-px{top:1px!important}[dir=rtl] .md\:rtl\:right-px{right:1px!important}[dir=rtl] .md\:rtl\:bottom-px{bottom:1px!important}[dir=rtl] .md\:rtl\:left-px{left:1px!important}[dir=rtl] .md\:rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .md\:rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .md\:rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .md\:rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .md\:rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .md\:rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .md\:rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .md\:rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .md\:rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .md\:rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .md\:rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .md\:rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .md\:rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .md\:rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .md\:rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .md\:rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .md\:rtl\:top-1\/2{top:50%!important}[dir=rtl] .md\:rtl\:right-1\/2{right:50%!important}[dir=rtl] .md\:rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .md\:rtl\:left-1\/2{left:50%!important}[dir=rtl] .md\:rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .md\:rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .md\:rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .md\:rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .md\:rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .md\:rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .md\:rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .md\:rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .md\:rtl\:top-1\/4{top:25%!important}[dir=rtl] .md\:rtl\:right-1\/4{right:25%!important}[dir=rtl] .md\:rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .md\:rtl\:left-1\/4{left:25%!important}[dir=rtl] .md\:rtl\:top-2\/4{top:50%!important}[dir=rtl] .md\:rtl\:right-2\/4{right:50%!important}[dir=rtl] .md\:rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .md\:rtl\:left-2\/4{left:50%!important}[dir=rtl] .md\:rtl\:top-3\/4{top:75%!important}[dir=rtl] .md\:rtl\:right-3\/4{right:75%!important}[dir=rtl] .md\:rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .md\:rtl\:left-3\/4{left:75%!important}[dir=rtl] .md\:rtl\:top-1\/5{top:20%!important}[dir=rtl] .md\:rtl\:right-1\/5{right:20%!important}[dir=rtl] .md\:rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .md\:rtl\:left-1\/5{left:20%!important}[dir=rtl] .md\:rtl\:top-2\/5{top:40%!important}[dir=rtl] .md\:rtl\:right-2\/5{right:40%!important}[dir=rtl] .md\:rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .md\:rtl\:left-2\/5{left:40%!important}[dir=rtl] .md\:rtl\:top-3\/5{top:60%!important}[dir=rtl] .md\:rtl\:right-3\/5{right:60%!important}[dir=rtl] .md\:rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .md\:rtl\:left-3\/5{left:60%!important}[dir=rtl] .md\:rtl\:top-4\/5{top:80%!important}[dir=rtl] .md\:rtl\:right-4\/5{right:80%!important}[dir=rtl] .md\:rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .md\:rtl\:left-4\/5{left:80%!important}[dir=rtl] .md\:rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .md\:rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .md\:rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .md\:rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .md\:rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .md\:rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .md\:rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .md\:rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .md\:rtl\:top-3\/6{top:50%!important}[dir=rtl] .md\:rtl\:right-3\/6{right:50%!important}[dir=rtl] .md\:rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .md\:rtl\:left-3\/6{left:50%!important}[dir=rtl] .md\:rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .md\:rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .md\:rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .md\:rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .md\:rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .md\:rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .md\:rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .md\:rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .md\:rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .md\:rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .md\:rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .md\:rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .md\:rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .md\:rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .md\:rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .md\:rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .md\:rtl\:top-3\/12{top:25%!important}[dir=rtl] .md\:rtl\:right-3\/12{right:25%!important}[dir=rtl] .md\:rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .md\:rtl\:left-3\/12{left:25%!important}[dir=rtl] .md\:rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .md\:rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .md\:rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .md\:rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .md\:rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .md\:rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .md\:rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .md\:rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .md\:rtl\:top-6\/12{top:50%!important}[dir=rtl] .md\:rtl\:right-6\/12{right:50%!important}[dir=rtl] .md\:rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .md\:rtl\:left-6\/12{left:50%!important}[dir=rtl] .md\:rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .md\:rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .md\:rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .md\:rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .md\:rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .md\:rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .md\:rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .md\:rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .md\:rtl\:top-9\/12{top:75%!important}[dir=rtl] .md\:rtl\:right-9\/12{right:75%!important}[dir=rtl] .md\:rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .md\:rtl\:left-9\/12{left:75%!important}[dir=rtl] .md\:rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .md\:rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .md\:rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .md\:rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .md\:rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .md\:rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .md\:rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .md\:rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .md\:rtl\:top-full{top:100%!important}[dir=rtl] .md\:rtl\:right-full{right:100%!important}[dir=rtl] .md\:rtl\:bottom-full{bottom:100%!important}[dir=rtl] .md\:rtl\:left-full{left:100%!important}.md\:resize-none{resize:none!important}.md\:resize-y{resize:vertical!important}.md\:resize-x{resize:horizontal!important}.md\:resize{resize:both!important}.md\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.md\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.md\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.md\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.md\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.md\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.md\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.md\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.md\:shadow-none{box-shadow:none!important}.group:focus .md\:group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .md\:group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .md\:group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .md\:group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .md\:group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .md\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .md\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .md\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .md\:group-focus\:shadow-none{box-shadow:none!important}.md\:hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.md\:hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.md\:hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.md\:hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.md\:hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.md\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.md\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.md\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.md\:hover\:shadow-none:hover{box-shadow:none!important}.md\:focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.md\:focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.md\:focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.md\:focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.md\:focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.md\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.md\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.md\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.md\:focus\:shadow-none:focus{box-shadow:none!important}.md\:fill-current{fill:currentColor!important}.md\:stroke-current{stroke:currentColor!important}.md\:stroke-0{stroke-width:0!important}.md\:stroke-1{stroke-width:1!important}.md\:stroke-2{stroke-width:2!important}.md\:table-auto{table-layout:auto!important}.md\:table-fixed{table-layout:fixed!important}.md\:text-left{text-align:left!important}.md\:text-center{text-align:center!important}.md\:text-right{text-align:right!important}.md\:text-justify{text-align:justify!important}.md\:text-transparent{color:transparent!important}.md\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.md\:text-white-70{color:hsla(0,0%,100%,.7)!important}.md\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.md\:text-blackest-70{color:rgba(0,0,0,.7)!important}.md\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.md\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.md\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.md\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.md\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.md\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.md\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.md\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.md\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.md\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.md\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.md\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.md\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.md\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.md\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.md\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.md\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.md\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.md\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.md\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.md\:hover\:text-transparent:hover{color:transparent!important}.md\:hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.md\:hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.md\:hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.md\:hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.md\:hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.md\:hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.md\:hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.md\:hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.md\:hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.md\:hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.md\:hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.md\:hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.md\:hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.md\:hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.md\:hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.md\:hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.md\:hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.md\:hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.md\:hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.md\:hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.md\:hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.md\:hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.md\:hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.md\:hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.md\:focus\:text-transparent:focus{color:transparent!important}.md\:focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.md\:focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.md\:focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.md\:focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.md\:focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.md\:focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.md\:focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.md\:focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.md\:focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.md\:focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.md\:focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.md\:focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.md\:focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.md\:focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.md\:focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.md\:focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.md\:focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.md\:focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.md\:focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.md\:focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.md\:focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.md\:focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.md\:focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.md\:focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-transparent{color:transparent!important}.group:hover .md\:group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .md\:group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .md\:group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .md\:group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .md\:group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.md\:text-opacity-0{--text-opacity:0!important}.md\:text-opacity-25{--text-opacity:0.25!important}.md\:text-opacity-50{--text-opacity:0.5!important}.md\:text-opacity-75{--text-opacity:0.75!important}.md\:text-opacity-100{--text-opacity:1!important}.md\:hover\:text-opacity-0:hover{--text-opacity:0!important}.md\:hover\:text-opacity-25:hover{--text-opacity:0.25!important}.md\:hover\:text-opacity-50:hover{--text-opacity:0.5!important}.md\:hover\:text-opacity-75:hover{--text-opacity:0.75!important}.md\:hover\:text-opacity-100:hover{--text-opacity:1!important}.md\:focus\:text-opacity-0:focus{--text-opacity:0!important}.md\:focus\:text-opacity-25:focus{--text-opacity:0.25!important}.md\:focus\:text-opacity-50:focus{--text-opacity:0.5!important}.md\:focus\:text-opacity-75:focus{--text-opacity:0.75!important}.md\:focus\:text-opacity-100:focus{--text-opacity:1!important}.md\:italic{font-style:italic!important}.md\:not-italic{font-style:normal!important}.md\:uppercase{text-transform:uppercase!important}.md\:lowercase{text-transform:lowercase!important}.md\:capitalize{text-transform:capitalize!important}.md\:normal-case{text-transform:none!important}.md\:underline{text-decoration:underline!important}.md\:line-through{text-decoration:line-through!important}.md\:no-underline{text-decoration:none!important}.group:hover .md\:group-hover\:underline{text-decoration:underline!important}.group:hover .md\:group-hover\:line-through{text-decoration:line-through!important}.group:hover .md\:group-hover\:no-underline{text-decoration:none!important}.group:focus .md\:group-focus\:underline{text-decoration:underline!important}.group:focus .md\:group-focus\:line-through{text-decoration:line-through!important}.group:focus .md\:group-focus\:no-underline{text-decoration:none!important}.md\:hover\:underline:hover{text-decoration:underline!important}.md\:hover\:line-through:hover{text-decoration:line-through!important}.md\:hover\:no-underline:hover{text-decoration:none!important}.md\:focus\:underline:focus{text-decoration:underline!important}.md\:focus\:line-through:focus{text-decoration:line-through!important}.md\:focus\:no-underline:focus{text-decoration:none!important}.md\:antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.md\:subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.md\:diagonal-fractions,.md\:lining-nums,.md\:oldstyle-nums,.md\:ordinal,.md\:proportional-nums,.md\:slashed-zero,.md\:stacked-fractions,.md\:tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.md\:normal-nums{font-variant-numeric:normal!important}.md\:ordinal{--font-variant-numeric-ordinal:ordinal!important}.md\:slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.md\:lining-nums{--font-variant-numeric-figure:lining-nums!important}.md\:oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.md\:proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.md\:tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.md\:diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.md\:stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.md\:tracking-tighter{letter-spacing:-.05em!important}.md\:tracking-tight{letter-spacing:-.025em!important}.md\:tracking-normal{letter-spacing:0!important}.md\:tracking-wide{letter-spacing:.025em!important}.md\:tracking-wider{letter-spacing:.05em!important}.md\:tracking-widest{letter-spacing:.1em!important}.md\:select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.md\:select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.md\:select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.md\:select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.md\:align-baseline{vertical-align:baseline!important}.md\:align-top{vertical-align:top!important}.md\:align-middle{vertical-align:middle!important}.md\:align-bottom{vertical-align:bottom!important}.md\:align-text-top{vertical-align:text-top!important}.md\:align-text-bottom{vertical-align:text-bottom!important}.md\:visible{visibility:visible!important}.md\:invisible{visibility:hidden!important}.md\:whitespace-normal{white-space:normal!important}.md\:whitespace-no-wrap{white-space:nowrap!important}.md\:whitespace-pre{white-space:pre!important}.md\:whitespace-pre-line{white-space:pre-line!important}.md\:whitespace-pre-wrap{white-space:pre-wrap!important}.md\:break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.md\:break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.md\:break-all{word-break:break-all!important}.md\:truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.md\:w-0{width:0!important}.md\:w-1{width:.25rem!important}.md\:w-2{width:.5rem!important}.md\:w-3{width:.75rem!important}.md\:w-4{width:1rem!important}.md\:w-5{width:1.25rem!important}.md\:w-6{width:1.5rem!important}.md\:w-7{width:1.75rem!important}.md\:w-8{width:2rem!important}.md\:w-9{width:2.25rem!important}.md\:w-10{width:2.5rem!important}.md\:w-11{width:2.75rem!important}.md\:w-12{width:3rem!important}.md\:w-13{width:3.25rem!important}.md\:w-14{width:3.5rem!important}.md\:w-15{width:3.75rem!important}.md\:w-16{width:4rem!important}.md\:w-20{width:5rem!important}.md\:w-24{width:6rem!important}.md\:w-28{width:7rem!important}.md\:w-32{width:8rem!important}.md\:w-36{width:9rem!important}.md\:w-40{width:10rem!important}.md\:w-48{width:12rem!important}.md\:w-56{width:14rem!important}.md\:w-60{width:15rem!important}.md\:w-64{width:16rem!important}.md\:w-72{width:18rem!important}.md\:w-80{width:20rem!important}.md\:w-96{width:24rem!important}.md\:w-auto{width:auto!important}.md\:w-px{width:1px!important}.md\:w-0\.5{width:.125rem!important}.md\:w-1\.5{width:.375rem!important}.md\:w-2\.5{width:.625rem!important}.md\:w-3\.5{width:.875rem!important}.md\:w-1\/2{width:50%!important}.md\:w-1\/3{width:33.333333%!important}.md\:w-2\/3{width:66.666667%!important}.md\:w-1\/4{width:25%!important}.md\:w-2\/4{width:50%!important}.md\:w-3\/4{width:75%!important}.md\:w-1\/5{width:20%!important}.md\:w-2\/5{width:40%!important}.md\:w-3\/5{width:60%!important}.md\:w-4\/5{width:80%!important}.md\:w-1\/6{width:16.666667%!important}.md\:w-2\/6{width:33.333333%!important}.md\:w-3\/6{width:50%!important}.md\:w-4\/6{width:66.666667%!important}.md\:w-5\/6{width:83.333333%!important}.md\:w-1\/12{width:8.333333%!important}.md\:w-2\/12{width:16.666667%!important}.md\:w-3\/12{width:25%!important}.md\:w-4\/12{width:33.333333%!important}.md\:w-5\/12{width:41.666667%!important}.md\:w-6\/12{width:50%!important}.md\:w-7\/12{width:58.333333%!important}.md\:w-8\/12{width:66.666667%!important}.md\:w-9\/12{width:75%!important}.md\:w-10\/12{width:83.333333%!important}.md\:w-11\/12{width:91.666667%!important}.md\:w-full{width:100%!important}.md\:w-screen{width:100vw!important}.md\:z-0{z-index:0!important}.md\:z-10{z-index:10!important}.md\:z-20{z-index:20!important}.md\:z-30{z-index:30!important}.md\:z-40{z-index:40!important}.md\:z-50{z-index:50!important}.md\:z-999{z-index:999!important}.md\:z-auto{z-index:auto!important}.md\:z-max{z-index:2147483647!important}.md\:focus-within\:z-0:focus-within{z-index:0!important}.md\:focus-within\:z-10:focus-within{z-index:10!important}.md\:focus-within\:z-20:focus-within{z-index:20!important}.md\:focus-within\:z-30:focus-within{z-index:30!important}.md\:focus-within\:z-40:focus-within{z-index:40!important}.md\:focus-within\:z-50:focus-within{z-index:50!important}.md\:focus-within\:z-999:focus-within{z-index:999!important}.md\:focus-within\:z-auto:focus-within{z-index:auto!important}.md\:focus-within\:z-max:focus-within{z-index:2147483647!important}.md\:focus\:z-0:focus{z-index:0!important}.md\:focus\:z-10:focus{z-index:10!important}.md\:focus\:z-20:focus{z-index:20!important}.md\:focus\:z-30:focus{z-index:30!important}.md\:focus\:z-40:focus{z-index:40!important}.md\:focus\:z-50:focus{z-index:50!important}.md\:focus\:z-999:focus{z-index:999!important}.md\:focus\:z-auto:focus{z-index:auto!important}.md\:focus\:z-max:focus{z-index:2147483647!important}.md\:gap-0{grid-gap:0!important;gap:0!important}.md\:gap-1{grid-gap:.25rem!important;gap:.25rem!important}.md\:gap-2{grid-gap:.5rem!important;gap:.5rem!important}.md\:gap-3{grid-gap:.75rem!important;gap:.75rem!important}.md\:gap-4{grid-gap:1rem!important;gap:1rem!important}.md\:gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.md\:gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.md\:gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.md\:gap-8{grid-gap:2rem!important;gap:2rem!important}.md\:gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.md\:gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.md\:gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.md\:gap-12{grid-gap:3rem!important;gap:3rem!important}.md\:gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.md\:gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.md\:gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.md\:gap-16{grid-gap:4rem!important;gap:4rem!important}.md\:gap-20{grid-gap:5rem!important;gap:5rem!important}.md\:gap-24{grid-gap:6rem!important;gap:6rem!important}.md\:gap-28{grid-gap:7rem!important;gap:7rem!important}.md\:gap-32{grid-gap:8rem!important;gap:8rem!important}.md\:gap-36{grid-gap:9rem!important;gap:9rem!important}.md\:gap-40{grid-gap:10rem!important;gap:10rem!important}.md\:gap-48{grid-gap:12rem!important;gap:12rem!important}.md\:gap-56{grid-gap:14rem!important;gap:14rem!important}.md\:gap-60{grid-gap:15rem!important;gap:15rem!important}.md\:gap-64{grid-gap:16rem!important;gap:16rem!important}.md\:gap-72{grid-gap:18rem!important;gap:18rem!important}.md\:gap-80{grid-gap:20rem!important;gap:20rem!important}.md\:gap-96{grid-gap:24rem!important;gap:24rem!important}.md\:gap-px{grid-gap:1px!important;gap:1px!important}.md\:gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.md\:gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.md\:gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.md\:gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.md\:gap-1\/2{grid-gap:50%!important;gap:50%!important}.md\:gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.md\:gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.md\:gap-1\/4{grid-gap:25%!important;gap:25%!important}.md\:gap-2\/4{grid-gap:50%!important;gap:50%!important}.md\:gap-3\/4{grid-gap:75%!important;gap:75%!important}.md\:gap-1\/5{grid-gap:20%!important;gap:20%!important}.md\:gap-2\/5{grid-gap:40%!important;gap:40%!important}.md\:gap-3\/5{grid-gap:60%!important;gap:60%!important}.md\:gap-4\/5{grid-gap:80%!important;gap:80%!important}.md\:gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.md\:gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.md\:gap-3\/6{grid-gap:50%!important;gap:50%!important}.md\:gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.md\:gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.md\:gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.md\:gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.md\:gap-3\/12{grid-gap:25%!important;gap:25%!important}.md\:gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.md\:gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.md\:gap-6\/12{grid-gap:50%!important;gap:50%!important}.md\:gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.md\:gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.md\:gap-9\/12{grid-gap:75%!important;gap:75%!important}.md\:gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.md\:gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.md\:gap-full{grid-gap:100%!important;gap:100%!important}.md\:gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.md\:gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.md\:gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.md\:gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.md\:gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.md\:gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.md\:gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.md\:gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.md\:gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.md\:gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.md\:gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.md\:gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.md\:gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.md\:gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.md\:gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.md\:gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.md\:gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.md\:gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.md\:gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.md\:gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.md\:gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.md\:gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.md\:gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.md\:gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.md\:gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.md\:gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.md\:gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.md\:gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.md\:gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.md\:gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.md\:gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.md\:gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.md\:gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.md\:gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.md\:gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.md\:gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.md\:gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.md\:gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.md\:gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.md\:gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.md\:gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.md\:gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.md\:gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.md\:gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.md\:gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.md\:gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.md\:gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.md\:gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.md\:gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.md\:gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.md\:gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.md\:gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.md\:gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.md\:gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.md\:gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.md\:gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.md\:gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.md\:gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.md\:gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.md\:gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.md\:gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.md\:gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.md\:gap-y-0{grid-row-gap:0!important;row-gap:0!important}.md\:gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.md\:gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.md\:gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.md\:gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.md\:gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.md\:gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.md\:gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.md\:gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.md\:gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.md\:gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.md\:gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.md\:gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.md\:gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.md\:gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.md\:gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.md\:gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.md\:gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.md\:gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.md\:gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.md\:gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.md\:gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.md\:gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.md\:gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.md\:gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.md\:gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.md\:gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.md\:gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.md\:gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.md\:gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.md\:gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.md\:gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.md\:gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.md\:gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.md\:gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.md\:gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.md\:gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.md\:gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.md\:gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.md\:gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.md\:gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.md\:gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.md\:gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.md\:gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.md\:gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.md\:gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.md\:gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.md\:gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.md\:gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.md\:gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.md\:gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.md\:gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.md\:gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.md\:gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.md\:gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.md\:gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.md\:gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.md\:gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.md\:gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.md\:gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.md\:gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.md\:gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.md\:grid-flow-row{grid-auto-flow:row!important}.md\:grid-flow-col{grid-auto-flow:column!important}.md\:grid-flow-row-dense{grid-auto-flow:row dense!important}.md\:grid-flow-col-dense{grid-auto-flow:column dense!important}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.md\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.md\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.md\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.md\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.md\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.md\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.md\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.md\:grid-cols-none{grid-template-columns:none!important}.md\:auto-cols-auto{grid-auto-columns:auto!important}.md\:auto-cols-min{grid-auto-columns:min-content!important}.md\:auto-cols-max{grid-auto-columns:max-content!important}.md\:auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.md\:col-auto{grid-column:auto!important}.md\:col-span-1{grid-column:span 1/span 1!important}.md\:col-span-2{grid-column:span 2/span 2!important}.md\:col-span-3{grid-column:span 3/span 3!important}.md\:col-span-4{grid-column:span 4/span 4!important}.md\:col-span-5{grid-column:span 5/span 5!important}.md\:col-span-6{grid-column:span 6/span 6!important}.md\:col-span-7{grid-column:span 7/span 7!important}.md\:col-span-8{grid-column:span 8/span 8!important}.md\:col-span-9{grid-column:span 9/span 9!important}.md\:col-span-10{grid-column:span 10/span 10!important}.md\:col-span-11{grid-column:span 11/span 11!important}.md\:col-span-12{grid-column:span 12/span 12!important}.md\:col-span-full{grid-column:1/-1!important}.md\:col-start-1{grid-column-start:1!important}.md\:col-start-2{grid-column-start:2!important}.md\:col-start-3{grid-column-start:3!important}.md\:col-start-4{grid-column-start:4!important}.md\:col-start-5{grid-column-start:5!important}.md\:col-start-6{grid-column-start:6!important}.md\:col-start-7{grid-column-start:7!important}.md\:col-start-8{grid-column-start:8!important}.md\:col-start-9{grid-column-start:9!important}.md\:col-start-10{grid-column-start:10!important}.md\:col-start-11{grid-column-start:11!important}.md\:col-start-12{grid-column-start:12!important}.md\:col-start-13{grid-column-start:13!important}.md\:col-start-auto{grid-column-start:auto!important}.md\:col-end-1{grid-column-end:1!important}.md\:col-end-2{grid-column-end:2!important}.md\:col-end-3{grid-column-end:3!important}.md\:col-end-4{grid-column-end:4!important}.md\:col-end-5{grid-column-end:5!important}.md\:col-end-6{grid-column-end:6!important}.md\:col-end-7{grid-column-end:7!important}.md\:col-end-8{grid-column-end:8!important}.md\:col-end-9{grid-column-end:9!important}.md\:col-end-10{grid-column-end:10!important}.md\:col-end-11{grid-column-end:11!important}.md\:col-end-12{grid-column-end:12!important}.md\:col-end-13{grid-column-end:13!important}.md\:col-end-auto{grid-column-end:auto!important}.md\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.md\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.md\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.md\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.md\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.md\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.md\:grid-rows-none{grid-template-rows:none!important}.md\:auto-rows-auto{grid-auto-rows:auto!important}.md\:auto-rows-min{grid-auto-rows:min-content!important}.md\:auto-rows-max{grid-auto-rows:max-content!important}.md\:auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.md\:row-auto{grid-row:auto!important}.md\:row-span-1{grid-row:span 1/span 1!important}.md\:row-span-2{grid-row:span 2/span 2!important}.md\:row-span-3{grid-row:span 3/span 3!important}.md\:row-span-4{grid-row:span 4/span 4!important}.md\:row-span-5{grid-row:span 5/span 5!important}.md\:row-span-6{grid-row:span 6/span 6!important}.md\:row-span-full{grid-row:1/-1!important}.md\:row-start-1{grid-row-start:1!important}.md\:row-start-2{grid-row-start:2!important}.md\:row-start-3{grid-row-start:3!important}.md\:row-start-4{grid-row-start:4!important}.md\:row-start-5{grid-row-start:5!important}.md\:row-start-6{grid-row-start:6!important}.md\:row-start-7{grid-row-start:7!important}.md\:row-start-auto{grid-row-start:auto!important}.md\:row-end-1{grid-row-end:1!important}.md\:row-end-2{grid-row-end:2!important}.md\:row-end-3{grid-row-end:3!important}.md\:row-end-4{grid-row-end:4!important}.md\:row-end-5{grid-row-end:5!important}.md\:row-end-6{grid-row-end:6!important}.md\:row-end-7{grid-row-end:7!important}.md\:row-end-auto{grid-row-end:auto!important}.md\:transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.md\:transform-none{transform:none!important}.md\:origin-center{transform-origin:center!important}.md\:origin-top{transform-origin:top!important}.md\:origin-top-right{transform-origin:top right!important}.md\:origin-right{transform-origin:right!important}.md\:origin-bottom-right{transform-origin:bottom right!important}.md\:origin-bottom{transform-origin:bottom!important}.md\:origin-bottom-left{transform-origin:bottom left!important}.md\:origin-left{transform-origin:left!important}.md\:origin-top-left{transform-origin:top left!important}.md\:scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.md\:scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.md\:scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.md\:scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.md\:scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.md\:scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.md\:scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.md\:scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.md\:scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.md\:scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.md\:scale-x-0{--transform-scale-x:0!important}.md\:scale-x-50{--transform-scale-x:.5!important}.md\:scale-x-75{--transform-scale-x:.75!important}.md\:scale-x-90{--transform-scale-x:.9!important}.md\:scale-x-95{--transform-scale-x:.95!important}.md\:scale-x-100{--transform-scale-x:1!important}.md\:scale-x-105{--transform-scale-x:1.05!important}.md\:scale-x-110{--transform-scale-x:1.1!important}.md\:scale-x-125{--transform-scale-x:1.25!important}.md\:scale-x-150{--transform-scale-x:1.5!important}.md\:scale-y-0{--transform-scale-y:0!important}.md\:scale-y-50{--transform-scale-y:.5!important}.md\:scale-y-75{--transform-scale-y:.75!important}.md\:scale-y-90{--transform-scale-y:.9!important}.md\:scale-y-95{--transform-scale-y:.95!important}.md\:scale-y-100{--transform-scale-y:1!important}.md\:scale-y-105{--transform-scale-y:1.05!important}.md\:scale-y-110{--transform-scale-y:1.1!important}.md\:scale-y-125{--transform-scale-y:1.25!important}.md\:scale-y-150{--transform-scale-y:1.5!important}.md\:hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.md\:hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.md\:hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.md\:hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.md\:hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.md\:hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.md\:hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.md\:hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.md\:hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.md\:hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.md\:hover\:scale-x-0:hover{--transform-scale-x:0!important}.md\:hover\:scale-x-50:hover{--transform-scale-x:.5!important}.md\:hover\:scale-x-75:hover{--transform-scale-x:.75!important}.md\:hover\:scale-x-90:hover{--transform-scale-x:.9!important}.md\:hover\:scale-x-95:hover{--transform-scale-x:.95!important}.md\:hover\:scale-x-100:hover{--transform-scale-x:1!important}.md\:hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.md\:hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.md\:hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.md\:hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.md\:hover\:scale-y-0:hover{--transform-scale-y:0!important}.md\:hover\:scale-y-50:hover{--transform-scale-y:.5!important}.md\:hover\:scale-y-75:hover{--transform-scale-y:.75!important}.md\:hover\:scale-y-90:hover{--transform-scale-y:.9!important}.md\:hover\:scale-y-95:hover{--transform-scale-y:.95!important}.md\:hover\:scale-y-100:hover{--transform-scale-y:1!important}.md\:hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.md\:hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.md\:hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.md\:hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.md\:focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.md\:focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.md\:focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.md\:focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.md\:focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.md\:focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.md\:focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.md\:focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.md\:focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.md\:focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.md\:focus\:scale-x-0:focus{--transform-scale-x:0!important}.md\:focus\:scale-x-50:focus{--transform-scale-x:.5!important}.md\:focus\:scale-x-75:focus{--transform-scale-x:.75!important}.md\:focus\:scale-x-90:focus{--transform-scale-x:.9!important}.md\:focus\:scale-x-95:focus{--transform-scale-x:.95!important}.md\:focus\:scale-x-100:focus{--transform-scale-x:1!important}.md\:focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.md\:focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.md\:focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.md\:focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.md\:focus\:scale-y-0:focus{--transform-scale-y:0!important}.md\:focus\:scale-y-50:focus{--transform-scale-y:.5!important}.md\:focus\:scale-y-75:focus{--transform-scale-y:.75!important}.md\:focus\:scale-y-90:focus{--transform-scale-y:.9!important}.md\:focus\:scale-y-95:focus{--transform-scale-y:.95!important}.md\:focus\:scale-y-100:focus{--transform-scale-y:1!important}.md\:focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.md\:focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.md\:focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.md\:focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.md\:rotate-0{--transform-rotate:0!important}.md\:rotate-1{--transform-rotate:1deg!important}.md\:rotate-2{--transform-rotate:2deg!important}.md\:rotate-3{--transform-rotate:3deg!important}.md\:rotate-6{--transform-rotate:6deg!important}.md\:rotate-12{--transform-rotate:12deg!important}.md\:rotate-45{--transform-rotate:45deg!important}.md\:rotate-90{--transform-rotate:90deg!important}.md\:rotate-180{--transform-rotate:180deg!important}.md\:-rotate-180{--transform-rotate:-180deg!important}.md\:-rotate-90{--transform-rotate:-90deg!important}.md\:-rotate-45{--transform-rotate:-45deg!important}.md\:-rotate-12{--transform-rotate:-12deg!important}.md\:-rotate-6{--transform-rotate:-6deg!important}.md\:-rotate-3{--transform-rotate:-3deg!important}.md\:-rotate-2{--transform-rotate:-2deg!important}.md\:-rotate-1{--transform-rotate:-1deg!important}.md\:hover\:rotate-0:hover{--transform-rotate:0!important}.md\:hover\:rotate-1:hover{--transform-rotate:1deg!important}.md\:hover\:rotate-2:hover{--transform-rotate:2deg!important}.md\:hover\:rotate-3:hover{--transform-rotate:3deg!important}.md\:hover\:rotate-6:hover{--transform-rotate:6deg!important}.md\:hover\:rotate-12:hover{--transform-rotate:12deg!important}.md\:hover\:rotate-45:hover{--transform-rotate:45deg!important}.md\:hover\:rotate-90:hover{--transform-rotate:90deg!important}.md\:hover\:rotate-180:hover{--transform-rotate:180deg!important}.md\:hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.md\:hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.md\:hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.md\:hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.md\:hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.md\:hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.md\:hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.md\:hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.md\:focus\:rotate-0:focus{--transform-rotate:0!important}.md\:focus\:rotate-1:focus{--transform-rotate:1deg!important}.md\:focus\:rotate-2:focus{--transform-rotate:2deg!important}.md\:focus\:rotate-3:focus{--transform-rotate:3deg!important}.md\:focus\:rotate-6:focus{--transform-rotate:6deg!important}.md\:focus\:rotate-12:focus{--transform-rotate:12deg!important}.md\:focus\:rotate-45:focus{--transform-rotate:45deg!important}.md\:focus\:rotate-90:focus{--transform-rotate:90deg!important}.md\:focus\:rotate-180:focus{--transform-rotate:180deg!important}.md\:focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.md\:focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.md\:focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.md\:focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.md\:focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.md\:focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.md\:focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.md\:focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.md\:translate-x-0{--transform-translate-x:0!important}.md\:translate-x-1{--transform-translate-x:0.25rem!important}.md\:translate-x-2{--transform-translate-x:0.5rem!important}.md\:translate-x-3{--transform-translate-x:0.75rem!important}.md\:translate-x-4{--transform-translate-x:1rem!important}.md\:translate-x-5{--transform-translate-x:1.25rem!important}.md\:translate-x-6{--transform-translate-x:1.5rem!important}.md\:translate-x-7{--transform-translate-x:1.75rem!important}.md\:translate-x-8{--transform-translate-x:2rem!important}.md\:translate-x-9{--transform-translate-x:2.25rem!important}.md\:translate-x-10{--transform-translate-x:2.5rem!important}.md\:translate-x-11{--transform-translate-x:2.75rem!important}.md\:translate-x-12{--transform-translate-x:3rem!important}.md\:translate-x-13{--transform-translate-x:3.25rem!important}.md\:translate-x-14{--transform-translate-x:3.5rem!important}.md\:translate-x-15{--transform-translate-x:3.75rem!important}.md\:translate-x-16{--transform-translate-x:4rem!important}.md\:translate-x-20{--transform-translate-x:5rem!important}.md\:translate-x-24{--transform-translate-x:6rem!important}.md\:translate-x-28{--transform-translate-x:7rem!important}.md\:translate-x-32{--transform-translate-x:8rem!important}.md\:translate-x-36{--transform-translate-x:9rem!important}.md\:translate-x-40{--transform-translate-x:10rem!important}.md\:translate-x-48{--transform-translate-x:12rem!important}.md\:translate-x-56{--transform-translate-x:14rem!important}.md\:translate-x-60{--transform-translate-x:15rem!important}.md\:translate-x-64{--transform-translate-x:16rem!important}.md\:translate-x-72{--transform-translate-x:18rem!important}.md\:translate-x-80{--transform-translate-x:20rem!important}.md\:translate-x-96{--transform-translate-x:24rem!important}.md\:translate-x-px{--transform-translate-x:1px!important}.md\:translate-x-0\.5{--transform-translate-x:0.125rem!important}.md\:translate-x-1\.5{--transform-translate-x:0.375rem!important}.md\:translate-x-2\.5{--transform-translate-x:0.625rem!important}.md\:translate-x-3\.5{--transform-translate-x:0.875rem!important}.md\:translate-x-1\/2{--transform-translate-x:50%!important}.md\:translate-x-1\/3{--transform-translate-x:33.333333%!important}.md\:translate-x-2\/3{--transform-translate-x:66.666667%!important}.md\:translate-x-1\/4{--transform-translate-x:25%!important}.md\:translate-x-2\/4{--transform-translate-x:50%!important}.md\:translate-x-3\/4{--transform-translate-x:75%!important}.md\:translate-x-1\/5{--transform-translate-x:20%!important}.md\:translate-x-2\/5{--transform-translate-x:40%!important}.md\:translate-x-3\/5{--transform-translate-x:60%!important}.md\:translate-x-4\/5{--transform-translate-x:80%!important}.md\:translate-x-1\/6{--transform-translate-x:16.666667%!important}.md\:translate-x-2\/6{--transform-translate-x:33.333333%!important}.md\:translate-x-3\/6{--transform-translate-x:50%!important}.md\:translate-x-4\/6{--transform-translate-x:66.666667%!important}.md\:translate-x-5\/6{--transform-translate-x:83.333333%!important}.md\:translate-x-1\/12{--transform-translate-x:8.333333%!important}.md\:translate-x-2\/12{--transform-translate-x:16.666667%!important}.md\:translate-x-3\/12{--transform-translate-x:25%!important}.md\:translate-x-4\/12{--transform-translate-x:33.333333%!important}.md\:translate-x-5\/12{--transform-translate-x:41.666667%!important}.md\:translate-x-6\/12{--transform-translate-x:50%!important}.md\:translate-x-7\/12{--transform-translate-x:58.333333%!important}.md\:translate-x-8\/12{--transform-translate-x:66.666667%!important}.md\:translate-x-9\/12{--transform-translate-x:75%!important}.md\:translate-x-10\/12{--transform-translate-x:83.333333%!important}.md\:translate-x-11\/12{--transform-translate-x:91.666667%!important}.md\:translate-x-full{--transform-translate-x:100%!important}.md\:-translate-x-1{--transform-translate-x:-0.25rem!important}.md\:-translate-x-2{--transform-translate-x:-0.5rem!important}.md\:-translate-x-3{--transform-translate-x:-0.75rem!important}.md\:-translate-x-4{--transform-translate-x:-1rem!important}.md\:-translate-x-5{--transform-translate-x:-1.25rem!important}.md\:-translate-x-6{--transform-translate-x:-1.5rem!important}.md\:-translate-x-7{--transform-translate-x:-1.75rem!important}.md\:-translate-x-8{--transform-translate-x:-2rem!important}.md\:-translate-x-9{--transform-translate-x:-2.25rem!important}.md\:-translate-x-10{--transform-translate-x:-2.5rem!important}.md\:-translate-x-11{--transform-translate-x:-2.75rem!important}.md\:-translate-x-12{--transform-translate-x:-3rem!important}.md\:-translate-x-13{--transform-translate-x:-3.25rem!important}.md\:-translate-x-14{--transform-translate-x:-3.5rem!important}.md\:-translate-x-15{--transform-translate-x:-3.75rem!important}.md\:-translate-x-16{--transform-translate-x:-4rem!important}.md\:-translate-x-20{--transform-translate-x:-5rem!important}.md\:-translate-x-24{--transform-translate-x:-6rem!important}.md\:-translate-x-28{--transform-translate-x:-7rem!important}.md\:-translate-x-32{--transform-translate-x:-8rem!important}.md\:-translate-x-36{--transform-translate-x:-9rem!important}.md\:-translate-x-40{--transform-translate-x:-10rem!important}.md\:-translate-x-48{--transform-translate-x:-12rem!important}.md\:-translate-x-56{--transform-translate-x:-14rem!important}.md\:-translate-x-60{--transform-translate-x:-15rem!important}.md\:-translate-x-64{--transform-translate-x:-16rem!important}.md\:-translate-x-72{--transform-translate-x:-18rem!important}.md\:-translate-x-80{--transform-translate-x:-20rem!important}.md\:-translate-x-96{--transform-translate-x:-24rem!important}.md\:-translate-x-px{--transform-translate-x:-1px!important}.md\:-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.md\:-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.md\:-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.md\:-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.md\:-translate-x-1\/2{--transform-translate-x:-50%!important}.md\:-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.md\:-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.md\:-translate-x-1\/4{--transform-translate-x:-25%!important}.md\:-translate-x-2\/4{--transform-translate-x:-50%!important}.md\:-translate-x-3\/4{--transform-translate-x:-75%!important}.md\:-translate-x-1\/5{--transform-translate-x:-20%!important}.md\:-translate-x-2\/5{--transform-translate-x:-40%!important}.md\:-translate-x-3\/5{--transform-translate-x:-60%!important}.md\:-translate-x-4\/5{--transform-translate-x:-80%!important}.md\:-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.md\:-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.md\:-translate-x-3\/6{--transform-translate-x:-50%!important}.md\:-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.md\:-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.md\:-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.md\:-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.md\:-translate-x-3\/12{--transform-translate-x:-25%!important}.md\:-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.md\:-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.md\:-translate-x-6\/12{--transform-translate-x:-50%!important}.md\:-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.md\:-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.md\:-translate-x-9\/12{--transform-translate-x:-75%!important}.md\:-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.md\:-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.md\:-translate-x-full{--transform-translate-x:-100%!important}.md\:translate-y-0{--transform-translate-y:0!important}.md\:translate-y-1{--transform-translate-y:0.25rem!important}.md\:translate-y-2{--transform-translate-y:0.5rem!important}.md\:translate-y-3{--transform-translate-y:0.75rem!important}.md\:translate-y-4{--transform-translate-y:1rem!important}.md\:translate-y-5{--transform-translate-y:1.25rem!important}.md\:translate-y-6{--transform-translate-y:1.5rem!important}.md\:translate-y-7{--transform-translate-y:1.75rem!important}.md\:translate-y-8{--transform-translate-y:2rem!important}.md\:translate-y-9{--transform-translate-y:2.25rem!important}.md\:translate-y-10{--transform-translate-y:2.5rem!important}.md\:translate-y-11{--transform-translate-y:2.75rem!important}.md\:translate-y-12{--transform-translate-y:3rem!important}.md\:translate-y-13{--transform-translate-y:3.25rem!important}.md\:translate-y-14{--transform-translate-y:3.5rem!important}.md\:translate-y-15{--transform-translate-y:3.75rem!important}.md\:translate-y-16{--transform-translate-y:4rem!important}.md\:translate-y-20{--transform-translate-y:5rem!important}.md\:translate-y-24{--transform-translate-y:6rem!important}.md\:translate-y-28{--transform-translate-y:7rem!important}.md\:translate-y-32{--transform-translate-y:8rem!important}.md\:translate-y-36{--transform-translate-y:9rem!important}.md\:translate-y-40{--transform-translate-y:10rem!important}.md\:translate-y-48{--transform-translate-y:12rem!important}.md\:translate-y-56{--transform-translate-y:14rem!important}.md\:translate-y-60{--transform-translate-y:15rem!important}.md\:translate-y-64{--transform-translate-y:16rem!important}.md\:translate-y-72{--transform-translate-y:18rem!important}.md\:translate-y-80{--transform-translate-y:20rem!important}.md\:translate-y-96{--transform-translate-y:24rem!important}.md\:translate-y-px{--transform-translate-y:1px!important}.md\:translate-y-0\.5{--transform-translate-y:0.125rem!important}.md\:translate-y-1\.5{--transform-translate-y:0.375rem!important}.md\:translate-y-2\.5{--transform-translate-y:0.625rem!important}.md\:translate-y-3\.5{--transform-translate-y:0.875rem!important}.md\:translate-y-1\/2{--transform-translate-y:50%!important}.md\:translate-y-1\/3{--transform-translate-y:33.333333%!important}.md\:translate-y-2\/3{--transform-translate-y:66.666667%!important}.md\:translate-y-1\/4{--transform-translate-y:25%!important}.md\:translate-y-2\/4{--transform-translate-y:50%!important}.md\:translate-y-3\/4{--transform-translate-y:75%!important}.md\:translate-y-1\/5{--transform-translate-y:20%!important}.md\:translate-y-2\/5{--transform-translate-y:40%!important}.md\:translate-y-3\/5{--transform-translate-y:60%!important}.md\:translate-y-4\/5{--transform-translate-y:80%!important}.md\:translate-y-1\/6{--transform-translate-y:16.666667%!important}.md\:translate-y-2\/6{--transform-translate-y:33.333333%!important}.md\:translate-y-3\/6{--transform-translate-y:50%!important}.md\:translate-y-4\/6{--transform-translate-y:66.666667%!important}.md\:translate-y-5\/6{--transform-translate-y:83.333333%!important}.md\:translate-y-1\/12{--transform-translate-y:8.333333%!important}.md\:translate-y-2\/12{--transform-translate-y:16.666667%!important}.md\:translate-y-3\/12{--transform-translate-y:25%!important}.md\:translate-y-4\/12{--transform-translate-y:33.333333%!important}.md\:translate-y-5\/12{--transform-translate-y:41.666667%!important}.md\:translate-y-6\/12{--transform-translate-y:50%!important}.md\:translate-y-7\/12{--transform-translate-y:58.333333%!important}.md\:translate-y-8\/12{--transform-translate-y:66.666667%!important}.md\:translate-y-9\/12{--transform-translate-y:75%!important}.md\:translate-y-10\/12{--transform-translate-y:83.333333%!important}.md\:translate-y-11\/12{--transform-translate-y:91.666667%!important}.md\:translate-y-full{--transform-translate-y:100%!important}.md\:-translate-y-1{--transform-translate-y:-0.25rem!important}.md\:-translate-y-2{--transform-translate-y:-0.5rem!important}.md\:-translate-y-3{--transform-translate-y:-0.75rem!important}.md\:-translate-y-4{--transform-translate-y:-1rem!important}.md\:-translate-y-5{--transform-translate-y:-1.25rem!important}.md\:-translate-y-6{--transform-translate-y:-1.5rem!important}.md\:-translate-y-7{--transform-translate-y:-1.75rem!important}.md\:-translate-y-8{--transform-translate-y:-2rem!important}.md\:-translate-y-9{--transform-translate-y:-2.25rem!important}.md\:-translate-y-10{--transform-translate-y:-2.5rem!important}.md\:-translate-y-11{--transform-translate-y:-2.75rem!important}.md\:-translate-y-12{--transform-translate-y:-3rem!important}.md\:-translate-y-13{--transform-translate-y:-3.25rem!important}.md\:-translate-y-14{--transform-translate-y:-3.5rem!important}.md\:-translate-y-15{--transform-translate-y:-3.75rem!important}.md\:-translate-y-16{--transform-translate-y:-4rem!important}.md\:-translate-y-20{--transform-translate-y:-5rem!important}.md\:-translate-y-24{--transform-translate-y:-6rem!important}.md\:-translate-y-28{--transform-translate-y:-7rem!important}.md\:-translate-y-32{--transform-translate-y:-8rem!important}.md\:-translate-y-36{--transform-translate-y:-9rem!important}.md\:-translate-y-40{--transform-translate-y:-10rem!important}.md\:-translate-y-48{--transform-translate-y:-12rem!important}.md\:-translate-y-56{--transform-translate-y:-14rem!important}.md\:-translate-y-60{--transform-translate-y:-15rem!important}.md\:-translate-y-64{--transform-translate-y:-16rem!important}.md\:-translate-y-72{--transform-translate-y:-18rem!important}.md\:-translate-y-80{--transform-translate-y:-20rem!important}.md\:-translate-y-96{--transform-translate-y:-24rem!important}.md\:-translate-y-px{--transform-translate-y:-1px!important}.md\:-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.md\:-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.md\:-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.md\:-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.md\:-translate-y-1\/2{--transform-translate-y:-50%!important}.md\:-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.md\:-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.md\:-translate-y-1\/4{--transform-translate-y:-25%!important}.md\:-translate-y-2\/4{--transform-translate-y:-50%!important}.md\:-translate-y-3\/4{--transform-translate-y:-75%!important}.md\:-translate-y-1\/5{--transform-translate-y:-20%!important}.md\:-translate-y-2\/5{--transform-translate-y:-40%!important}.md\:-translate-y-3\/5{--transform-translate-y:-60%!important}.md\:-translate-y-4\/5{--transform-translate-y:-80%!important}.md\:-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.md\:-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.md\:-translate-y-3\/6{--transform-translate-y:-50%!important}.md\:-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.md\:-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.md\:-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.md\:-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.md\:-translate-y-3\/12{--transform-translate-y:-25%!important}.md\:-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.md\:-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.md\:-translate-y-6\/12{--transform-translate-y:-50%!important}.md\:-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.md\:-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.md\:-translate-y-9\/12{--transform-translate-y:-75%!important}.md\:-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.md\:-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.md\:-translate-y-full{--transform-translate-y:-100%!important}.md\:hover\:translate-x-0:hover{--transform-translate-x:0!important}.md\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.md\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.md\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.md\:hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.md\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.md\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.md\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.md\:hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.md\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.md\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.md\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.md\:hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.md\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.md\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.md\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.md\:hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.md\:hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.md\:hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.md\:hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.md\:hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.md\:hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.md\:hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.md\:hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.md\:hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.md\:hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.md\:hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.md\:hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.md\:hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.md\:hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.md\:hover\:translate-x-px:hover{--transform-translate-x:1px!important}.md\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.md\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.md\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.md\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.md\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.md\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.md\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.md\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.md\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.md\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.md\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.md\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.md\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.md\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.md\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.md\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.md\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.md\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.md\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.md\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.md\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.md\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.md\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.md\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.md\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.md\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.md\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.md\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.md\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.md\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.md\:hover\:translate-x-full:hover{--transform-translate-x:100%!important}.md\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.md\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.md\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.md\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.md\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.md\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.md\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.md\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.md\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.md\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.md\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.md\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.md\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.md\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.md\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.md\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.md\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.md\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.md\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.md\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.md\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.md\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.md\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.md\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.md\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.md\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.md\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.md\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.md\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.md\:hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.md\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.md\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.md\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.md\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.md\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.md\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.md\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.md\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.md\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.md\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.md\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.md\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.md\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.md\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.md\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.md\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.md\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.md\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.md\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.md\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.md\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.md\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.md\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.md\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.md\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.md\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.md\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.md\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.md\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.md\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.md\:hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.md\:hover\:translate-y-0:hover{--transform-translate-y:0!important}.md\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.md\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.md\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.md\:hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.md\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.md\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.md\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.md\:hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.md\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.md\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.md\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.md\:hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.md\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.md\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.md\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.md\:hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.md\:hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.md\:hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.md\:hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.md\:hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.md\:hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.md\:hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.md\:hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.md\:hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.md\:hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.md\:hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.md\:hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.md\:hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.md\:hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.md\:hover\:translate-y-px:hover{--transform-translate-y:1px!important}.md\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.md\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.md\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.md\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.md\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.md\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.md\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.md\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.md\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.md\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.md\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.md\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.md\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.md\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.md\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.md\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.md\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.md\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.md\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.md\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.md\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.md\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.md\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.md\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.md\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.md\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.md\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.md\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.md\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.md\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.md\:hover\:translate-y-full:hover{--transform-translate-y:100%!important}.md\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.md\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.md\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.md\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.md\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.md\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.md\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.md\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.md\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.md\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.md\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.md\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.md\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.md\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.md\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.md\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.md\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.md\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.md\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.md\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.md\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.md\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.md\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.md\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.md\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.md\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.md\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.md\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.md\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.md\:hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.md\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.md\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.md\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.md\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.md\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.md\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.md\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.md\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.md\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.md\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.md\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.md\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.md\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.md\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.md\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.md\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.md\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.md\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.md\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.md\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.md\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.md\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.md\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.md\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.md\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.md\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.md\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.md\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.md\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.md\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.md\:hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.md\:focus\:translate-x-0:focus{--transform-translate-x:0!important}.md\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.md\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.md\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.md\:focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.md\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.md\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.md\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.md\:focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.md\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.md\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.md\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.md\:focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.md\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.md\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.md\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.md\:focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.md\:focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.md\:focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.md\:focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.md\:focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.md\:focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.md\:focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.md\:focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.md\:focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.md\:focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.md\:focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.md\:focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.md\:focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.md\:focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.md\:focus\:translate-x-px:focus{--transform-translate-x:1px!important}.md\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.md\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.md\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.md\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.md\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.md\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.md\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.md\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.md\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.md\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.md\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.md\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.md\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.md\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.md\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.md\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.md\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.md\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.md\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.md\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.md\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.md\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.md\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.md\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.md\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.md\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.md\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.md\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.md\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.md\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.md\:focus\:translate-x-full:focus{--transform-translate-x:100%!important}.md\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.md\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.md\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.md\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.md\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.md\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.md\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.md\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.md\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.md\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.md\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.md\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.md\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.md\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.md\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.md\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.md\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.md\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.md\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.md\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.md\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.md\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.md\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.md\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.md\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.md\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.md\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.md\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.md\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.md\:focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.md\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.md\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.md\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.md\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.md\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.md\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.md\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.md\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.md\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.md\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.md\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.md\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.md\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.md\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.md\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.md\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.md\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.md\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.md\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.md\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.md\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.md\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.md\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.md\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.md\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.md\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.md\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.md\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.md\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.md\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.md\:focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.md\:focus\:translate-y-0:focus{--transform-translate-y:0!important}.md\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.md\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.md\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.md\:focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.md\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.md\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.md\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.md\:focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.md\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.md\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.md\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.md\:focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.md\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.md\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.md\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.md\:focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.md\:focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.md\:focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.md\:focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.md\:focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.md\:focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.md\:focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.md\:focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.md\:focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.md\:focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.md\:focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.md\:focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.md\:focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.md\:focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.md\:focus\:translate-y-px:focus{--transform-translate-y:1px!important}.md\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.md\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.md\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.md\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.md\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.md\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.md\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.md\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.md\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.md\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.md\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.md\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.md\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.md\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.md\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.md\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.md\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.md\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.md\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.md\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.md\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.md\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.md\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.md\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.md\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.md\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.md\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.md\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.md\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.md\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.md\:focus\:translate-y-full:focus{--transform-translate-y:100%!important}.md\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.md\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.md\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.md\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.md\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.md\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.md\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.md\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.md\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.md\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.md\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.md\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.md\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.md\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.md\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.md\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.md\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.md\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.md\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.md\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.md\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.md\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.md\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.md\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.md\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.md\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.md\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.md\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.md\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.md\:focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.md\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.md\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.md\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.md\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.md\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.md\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.md\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.md\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.md\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.md\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.md\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.md\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.md\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.md\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.md\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.md\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.md\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.md\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.md\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.md\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.md\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.md\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.md\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.md\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.md\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.md\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.md\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.md\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.md\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.md\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.md\:focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.md\:skew-x-0{--transform-skew-x:0!important}.md\:skew-x-1{--transform-skew-x:1deg!important}.md\:skew-x-2{--transform-skew-x:2deg!important}.md\:skew-x-3{--transform-skew-x:3deg!important}.md\:skew-x-6{--transform-skew-x:6deg!important}.md\:skew-x-12{--transform-skew-x:12deg!important}.md\:-skew-x-12{--transform-skew-x:-12deg!important}.md\:-skew-x-6{--transform-skew-x:-6deg!important}.md\:-skew-x-3{--transform-skew-x:-3deg!important}.md\:-skew-x-2{--transform-skew-x:-2deg!important}.md\:-skew-x-1{--transform-skew-x:-1deg!important}.md\:skew-y-0{--transform-skew-y:0!important}.md\:skew-y-1{--transform-skew-y:1deg!important}.md\:skew-y-2{--transform-skew-y:2deg!important}.md\:skew-y-3{--transform-skew-y:3deg!important}.md\:skew-y-6{--transform-skew-y:6deg!important}.md\:skew-y-12{--transform-skew-y:12deg!important}.md\:-skew-y-12{--transform-skew-y:-12deg!important}.md\:-skew-y-6{--transform-skew-y:-6deg!important}.md\:-skew-y-3{--transform-skew-y:-3deg!important}.md\:-skew-y-2{--transform-skew-y:-2deg!important}.md\:-skew-y-1{--transform-skew-y:-1deg!important}.md\:hover\:skew-x-0:hover{--transform-skew-x:0!important}.md\:hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.md\:hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.md\:hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.md\:hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.md\:hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.md\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.md\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.md\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.md\:hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.md\:hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.md\:hover\:skew-y-0:hover{--transform-skew-y:0!important}.md\:hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.md\:hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.md\:hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.md\:hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.md\:hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.md\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.md\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.md\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.md\:hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.md\:hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.md\:focus\:skew-x-0:focus{--transform-skew-x:0!important}.md\:focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.md\:focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.md\:focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.md\:focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.md\:focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.md\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.md\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.md\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.md\:focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.md\:focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.md\:focus\:skew-y-0:focus{--transform-skew-y:0!important}.md\:focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.md\:focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.md\:focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.md\:focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.md\:focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.md\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.md\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.md\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.md\:focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.md\:focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.md\:transition-none{transition-property:none!important}.md\:transition-all{transition-property:all!important}.md\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.md\:transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.md\:transition-opacity{transition-property:opacity!important}.md\:transition-shadow{transition-property:box-shadow!important}.md\:transition-transform{transition-property:transform!important}.md\:ease-linear{transition-timing-function:linear!important}.md\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.md\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.md\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.md\:duration-75{transition-duration:75ms!important}.md\:duration-100{transition-duration:.1s!important}.md\:duration-150{transition-duration:.15s!important}.md\:duration-200{transition-duration:.2s!important}.md\:duration-300{transition-duration:.3s!important}.md\:duration-500{transition-duration:.5s!important}.md\:duration-700{transition-duration:.7s!important}.md\:duration-1000{transition-duration:1s!important}.md\:duration-2000{transition-duration:2s!important}.md\:delay-75{transition-delay:75ms!important}.md\:delay-100{transition-delay:.1s!important}.md\:delay-150{transition-delay:.15s!important}.md\:delay-200{transition-delay:.2s!important}.md\:delay-300{transition-delay:.3s!important}.md\:delay-500{transition-delay:.5s!important}.md\:delay-700{transition-delay:.7s!important}.md\:delay-1000{transition-delay:1s!important}.md\:animate-none{animation:none!important}.md\:animate-spin{animation:spin 1s linear infinite!important}.md\:animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.md\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.md\:animate-bounce{animation:bounce 1s infinite!important}}@media (min-width:1280px){.lg\:space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.lg\:space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.lg\:space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.lg\:space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.lg\:space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.lg\:space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.lg\:space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.lg\:space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.lg\:space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.lg\:space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.lg\:space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.lg\:space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.lg\:space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.lg\:space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.lg\:space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.lg\:space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.lg\:space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.lg\:space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.lg\:space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.lg\:space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.lg\:space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.lg\:space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.lg\:space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.lg\:space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.lg\:space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.lg\:space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.lg\:space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.lg\:space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.lg\:space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.lg\:space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.lg\:space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.lg\:space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.lg\:space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.lg\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.lg\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.lg\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.lg\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.lg\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.lg\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.lg\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.lg\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.lg\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.lg\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.lg\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.lg\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.lg\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.lg\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.lg\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.lg\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.lg\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.lg\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.lg\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.lg\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.lg\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.lg\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.lg\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.lg\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.lg\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.lg\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.lg\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.lg\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.lg\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.lg\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.lg\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.lg\:space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.lg\:space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.lg\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.lg\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.lg\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.lg\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.lg\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.lg\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.lg\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.lg\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.lg\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.lg\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.lg\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.lg\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.lg\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.lg\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.lg\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.lg\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.lg\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.lg\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.lg\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.lg\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.lg\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.lg\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.lg\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.lg\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.lg\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.lg\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.lg\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.lg\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.lg\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.lg\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.lg\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.lg\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.lg\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.lg\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.lg\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.lg\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.lg\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.lg\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.lg\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.lg\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.lg\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.lg\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.lg\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.lg\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.lg\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.lg\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.lg\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.lg\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.lg\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.lg\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.lg\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.lg\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.lg\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.lg\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.lg\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.lg\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.lg\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.lg\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.lg\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.lg\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.lg\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.lg\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.lg\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.lg\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.lg\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.lg\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.lg\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.lg\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.lg\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.lg\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.lg\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.lg\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.lg\:divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.lg\:divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.lg\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.lg\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.lg\:divide-transparent>:not(template)~:not(template){border-color:transparent!important}.lg\:divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.lg\:divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.lg\:divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.lg\:divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.lg\:divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.lg\:divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.lg\:divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.lg\:divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.lg\:divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.lg\:divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.lg\:divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.lg\:divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.lg\:divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.lg\:divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.lg\:divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.lg\:divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.lg\:divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.lg\:divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.lg\:divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.lg\:divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.lg\:divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.lg\:divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.lg\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.lg\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.lg\:divide-solid>:not(template)~:not(template){border-style:solid!important}.lg\:divide-dashed>:not(template)~:not(template){border-style:dashed!important}.lg\:divide-dotted>:not(template)~:not(template){border-style:dotted!important}.lg\:divide-double>:not(template)~:not(template){border-style:double!important}.lg\:divide-none>:not(template)~:not(template){border-style:none!important}.lg\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.lg\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.lg\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.lg\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.lg\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.lg\:sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.lg\:not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.lg\:focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.lg\:focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.lg\:appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.lg\:bg-fixed{background-attachment:fixed!important}.lg\:bg-local{background-attachment:local!important}.lg\:bg-scroll{background-attachment:scroll!important}.lg\:bg-clip-border{background-clip:border-box!important}.lg\:bg-clip-padding{background-clip:padding-box!important}.lg\:bg-clip-content{background-clip:content-box!important}.lg\:bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.lg\:bg-transparent{background-color:transparent!important}.lg\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.lg\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.lg\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.lg\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.lg\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.lg\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.lg\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.lg\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.lg\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.lg\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.lg\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.lg\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.lg\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.lg\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.lg\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.lg\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.lg\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.lg\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.lg\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.lg\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.lg\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.lg\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.lg\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.lg\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-transparent{background-color:transparent!important}.group:hover .lg\:group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .lg\:group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .lg\:group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .lg\:group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .lg\:group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-transparent{background-color:transparent!important}.group:focus .lg\:group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .lg\:group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .lg\:group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .lg\:group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .lg\:group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.lg\:hover\:bg-transparent:hover{background-color:transparent!important}.lg\:hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.lg\:hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.lg\:hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.lg\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.lg\:hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.lg\:hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.lg\:hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.lg\:hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.lg\:hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.lg\:hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.lg\:hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.lg\:hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.lg\:hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.lg\:hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.lg\:hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.lg\:hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.lg\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.lg\:hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.lg\:hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.lg\:hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.lg\:hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.lg\:hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.lg\:hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.lg\:hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.lg\:focus\:bg-transparent:focus{background-color:transparent!important}.lg\:focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.lg\:focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.lg\:focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.lg\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.lg\:focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.lg\:focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.lg\:focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.lg\:focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.lg\:focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.lg\:focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.lg\:focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.lg\:focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.lg\:focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.lg\:focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.lg\:focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.lg\:focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.lg\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.lg\:focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.lg\:focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.lg\:focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.lg\:focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.lg\:focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.lg\:focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.lg\:focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.lg\:active\:bg-transparent:active{background-color:transparent!important}.lg\:active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.lg\:active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.lg\:active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.lg\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.lg\:active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.lg\:active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.lg\:active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.lg\:active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.lg\:active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.lg\:active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.lg\:active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.lg\:active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.lg\:active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.lg\:active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.lg\:active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.lg\:active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.lg\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.lg\:active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.lg\:active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.lg\:active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.lg\:active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.lg\:active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.lg\:active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.lg\:active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.lg\:bg-none{background-image:none!important}.lg\:bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.lg\:bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.lg\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.lg\:bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.lg\:bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.lg\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.lg\:bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.lg\:bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.lg\:from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.lg\:from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.lg\:from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.lg\:from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.lg\:from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.lg\:from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.lg\:from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.lg\:from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.lg\:from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.lg\:from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.lg\:from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.lg\:from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.lg\:from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.lg\:from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.lg\:from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.lg\:from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.lg\:from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.lg\:from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.lg\:from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.lg\:from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.lg\:via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.lg\:via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.lg\:via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.lg\:via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.lg\:via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.lg\:via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.lg\:via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.lg\:via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.lg\:via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.lg\:via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.lg\:via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.lg\:via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.lg\:via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.lg\:via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.lg\:via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.lg\:via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.lg\:via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.lg\:via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.lg\:via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.lg\:via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.lg\:to-transparent{--gradient-to-color:transparent!important}.lg\:to-white{--gradient-to-color:#fff!important}.lg\:to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.lg\:to-blackest{--gradient-to-color:#000!important}.lg\:to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.lg\:to-black{--gradient-to-color:#23292d!important}.lg\:to-gray-darkest{--gradient-to-color:#3d4852!important}.lg\:to-gray-darker{--gradient-to-color:#606f7b!important}.lg\:to-gray-dark{--gradient-to-color:#9ea3a8!important}.lg\:to-gray{--gradient-to-color:#b8c2cc!important}.lg\:to-gray-light{--gradient-to-color:#dae1e7!important}.lg\:to-gray-lighter{--gradient-to-color:#f1f1f1!important}.lg\:to-gray-lightest{--gradient-to-color:#f8fafc!important}.lg\:to-blue-darkest{--gradient-to-color:#1673a7!important}.lg\:to-blue-dark{--gradient-to-color:#0073aa!important}.lg\:to-blue{--gradient-to-color:#3188e6!important}.lg\:to-blue-light{--gradient-to-color:#a4cafe!important}.lg\:to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.lg\:to-orange{--gradient-to-color:#dd6923!important}.lg\:to-orange-darker{--gradient-to-color:#d5551e!important}.lg\:to-orange-darkest{--gradient-to-color:#c9501c!important}.lg\:to-red{--gradient-to-color:#e82323!important}.lg\:to-green{--gradient-to-color:#46b450!important}.lg\:to-yellow-400{--gradient-to-color:#e3a008!important}.lg\:to-yellow-50{--gradient-to-color:#fdfdea!important}.lg\:hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.lg\:hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.lg\:hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.lg\:hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.lg\:hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.lg\:hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.lg\:hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.lg\:hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.lg\:hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.lg\:hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.lg\:hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.lg\:hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.lg\:hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.lg\:hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.lg\:hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.lg\:hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.lg\:hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.lg\:hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.lg\:hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.lg\:hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.lg\:hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.lg\:hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.lg\:hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.lg\:hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.lg\:hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.lg\:hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.lg\:hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.lg\:hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.lg\:hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.lg\:hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.lg\:hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.lg\:hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.lg\:hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.lg\:hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.lg\:hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.lg\:hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.lg\:hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.lg\:hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.lg\:hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.lg\:hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.lg\:hover\:to-transparent:hover{--gradient-to-color:transparent!important}.lg\:hover\:to-white:hover{--gradient-to-color:#fff!important}.lg\:hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.lg\:hover\:to-blackest:hover{--gradient-to-color:#000!important}.lg\:hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.lg\:hover\:to-black:hover{--gradient-to-color:#23292d!important}.lg\:hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.lg\:hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.lg\:hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.lg\:hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.lg\:hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.lg\:hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.lg\:hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.lg\:hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.lg\:hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.lg\:hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.lg\:hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.lg\:hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.lg\:hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.lg\:hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.lg\:hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.lg\:hover\:to-red:hover{--gradient-to-color:#e82323!important}.lg\:hover\:to-green:hover{--gradient-to-color:#46b450!important}.lg\:hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.lg\:hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.lg\:focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.lg\:focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.lg\:focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.lg\:focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.lg\:focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.lg\:focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.lg\:focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.lg\:focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.lg\:focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.lg\:focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.lg\:focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.lg\:focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.lg\:focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.lg\:focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.lg\:focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.lg\:focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.lg\:focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.lg\:focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.lg\:focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.lg\:focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.lg\:focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.lg\:focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.lg\:focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.lg\:focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.lg\:focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.lg\:focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.lg\:focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.lg\:focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.lg\:focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.lg\:focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.lg\:focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.lg\:focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.lg\:focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.lg\:focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.lg\:focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.lg\:focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.lg\:focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.lg\:focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.lg\:focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.lg\:focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.lg\:focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.lg\:focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.lg\:focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.lg\:focus\:to-transparent:focus{--gradient-to-color:transparent!important}.lg\:focus\:to-white:focus{--gradient-to-color:#fff!important}.lg\:focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.lg\:focus\:to-blackest:focus{--gradient-to-color:#000!important}.lg\:focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.lg\:focus\:to-black:focus{--gradient-to-color:#23292d!important}.lg\:focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.lg\:focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.lg\:focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.lg\:focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.lg\:focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.lg\:focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.lg\:focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.lg\:focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.lg\:focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.lg\:focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.lg\:focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.lg\:focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.lg\:focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.lg\:focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.lg\:focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.lg\:focus\:to-red:focus{--gradient-to-color:#e82323!important}.lg\:focus\:to-green:focus{--gradient-to-color:#46b450!important}.lg\:focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.lg\:focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.lg\:bg-opacity-0{--bg-opacity:0!important}.lg\:bg-opacity-25{--bg-opacity:0.25!important}.lg\:bg-opacity-50{--bg-opacity:0.5!important}.lg\:bg-opacity-75{--bg-opacity:0.75!important}.lg\:bg-opacity-100{--bg-opacity:1!important}.lg\:hover\:bg-opacity-0:hover{--bg-opacity:0!important}.lg\:hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.lg\:hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.lg\:hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.lg\:hover\:bg-opacity-100:hover{--bg-opacity:1!important}.lg\:focus\:bg-opacity-0:focus{--bg-opacity:0!important}.lg\:focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.lg\:focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.lg\:focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.lg\:focus\:bg-opacity-100:focus{--bg-opacity:1!important}.lg\:bg-bottom{background-position:bottom!important}.lg\:bg-center{background-position:50%!important}.lg\:bg-left{background-position:0!important}.lg\:bg-left-bottom{background-position:0 100%!important}.lg\:bg-left-top{background-position:0 0!important}.lg\:bg-right{background-position:100%!important}.lg\:bg-right-bottom{background-position:100% 100%!important}.lg\:bg-right-top{background-position:100% 0!important}.lg\:bg-top{background-position:top!important}.lg\:bg-repeat{background-repeat:repeat!important}.lg\:bg-no-repeat{background-repeat:no-repeat!important}.lg\:bg-repeat-x{background-repeat:repeat-x!important}.lg\:bg-repeat-y{background-repeat:repeat-y!important}.lg\:bg-repeat-round{background-repeat:round!important}.lg\:bg-repeat-space{background-repeat:space!important}.lg\:bg-auto{background-size:auto!important}.lg\:bg-cover{background-size:cover!important}.lg\:bg-contain{background-size:contain!important}.lg\:border-collapse{border-collapse:collapse!important}.lg\:border-separate{border-collapse:separate!important}.lg\:border-transparent{border-color:transparent!important}.lg\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.lg\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.lg\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.lg\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.lg\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.lg\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.lg\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.lg\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.lg\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.lg\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.lg\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.lg\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.lg\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.lg\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.lg\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.lg\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.lg\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.lg\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.lg\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.lg\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.lg\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.lg\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.lg\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.lg\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.lg\:hover\:border-transparent:hover{border-color:transparent!important}.lg\:hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.lg\:hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.lg\:hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.lg\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.lg\:hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.lg\:hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.lg\:hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.lg\:hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.lg\:hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.lg\:hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.lg\:hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.lg\:hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.lg\:hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.lg\:hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.lg\:hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.lg\:hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.lg\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.lg\:hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.lg\:hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.lg\:hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.lg\:hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.lg\:hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.lg\:hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.lg\:hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.lg\:focus\:border-transparent:focus{border-color:transparent!important}.lg\:focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.lg\:focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.lg\:focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.lg\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.lg\:focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.lg\:focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.lg\:focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.lg\:focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.lg\:focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.lg\:focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.lg\:focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.lg\:focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.lg\:focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.lg\:focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.lg\:focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.lg\:focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.lg\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.lg\:focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.lg\:focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.lg\:focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.lg\:focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.lg\:focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.lg\:focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.lg\:focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-transparent{border-color:transparent!important}.group:hover .lg\:group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .lg\:group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .lg\:group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .lg\:group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .lg\:group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.lg\:border-opacity-0{--border-opacity:0!important}.lg\:border-opacity-25{--border-opacity:0.25!important}.lg\:border-opacity-50{--border-opacity:0.5!important}.lg\:border-opacity-75{--border-opacity:0.75!important}.lg\:border-opacity-100{--border-opacity:1!important}.lg\:hover\:border-opacity-0:hover{--border-opacity:0!important}.lg\:hover\:border-opacity-25:hover{--border-opacity:0.25!important}.lg\:hover\:border-opacity-50:hover{--border-opacity:0.5!important}.lg\:hover\:border-opacity-75:hover{--border-opacity:0.75!important}.lg\:hover\:border-opacity-100:hover{--border-opacity:1!important}.lg\:focus\:border-opacity-0:focus{--border-opacity:0!important}.lg\:focus\:border-opacity-25:focus{--border-opacity:0.25!important}.lg\:focus\:border-opacity-50:focus{--border-opacity:0.5!important}.lg\:focus\:border-opacity-75:focus{--border-opacity:0.75!important}.lg\:focus\:border-opacity-100:focus{--border-opacity:1!important}.lg\:rounded-none{border-radius:0!important}.lg\:rounded-sm{border-radius:.125rem!important}.lg\:rounded{border-radius:.25rem!important}.lg\:rounded-md{border-radius:.375rem!important}.lg\:rounded-lg{border-radius:.5rem!important}.lg\:rounded-xl{border-radius:.75rem!important}.lg\:rounded-2xl{border-radius:1rem!important}.lg\:rounded-3xl{border-radius:1.5rem!important}.lg\:rounded-full{border-radius:9999px!important}.lg\:rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\:rounded-r-none{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.lg\:rounded-b-none{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\:rounded-l-none{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.lg\:rounded-t-sm{border-top-left-radius:.125rem!important}.lg\:rounded-r-sm,.lg\:rounded-t-sm{border-top-right-radius:.125rem!important}.lg\:rounded-b-sm,.lg\:rounded-r-sm{border-bottom-right-radius:.125rem!important}.lg\:rounded-b-sm,.lg\:rounded-l-sm{border-bottom-left-radius:.125rem!important}.lg\:rounded-l-sm{border-top-left-radius:.125rem!important}.lg\:rounded-t{border-top-left-radius:.25rem!important}.lg\:rounded-r,.lg\:rounded-t{border-top-right-radius:.25rem!important}.lg\:rounded-b,.lg\:rounded-r{border-bottom-right-radius:.25rem!important}.lg\:rounded-b,.lg\:rounded-l{border-bottom-left-radius:.25rem!important}.lg\:rounded-l{border-top-left-radius:.25rem!important}.lg\:rounded-t-md{border-top-left-radius:.375rem!important}.lg\:rounded-r-md,.lg\:rounded-t-md{border-top-right-radius:.375rem!important}.lg\:rounded-b-md,.lg\:rounded-r-md{border-bottom-right-radius:.375rem!important}.lg\:rounded-b-md,.lg\:rounded-l-md{border-bottom-left-radius:.375rem!important}.lg\:rounded-l-md{border-top-left-radius:.375rem!important}.lg\:rounded-t-lg{border-top-left-radius:.5rem!important}.lg\:rounded-r-lg,.lg\:rounded-t-lg{border-top-right-radius:.5rem!important}.lg\:rounded-b-lg,.lg\:rounded-r-lg{border-bottom-right-radius:.5rem!important}.lg\:rounded-b-lg,.lg\:rounded-l-lg{border-bottom-left-radius:.5rem!important}.lg\:rounded-l-lg{border-top-left-radius:.5rem!important}.lg\:rounded-t-xl{border-top-left-radius:.75rem!important}.lg\:rounded-r-xl,.lg\:rounded-t-xl{border-top-right-radius:.75rem!important}.lg\:rounded-b-xl,.lg\:rounded-r-xl{border-bottom-right-radius:.75rem!important}.lg\:rounded-b-xl,.lg\:rounded-l-xl{border-bottom-left-radius:.75rem!important}.lg\:rounded-l-xl{border-top-left-radius:.75rem!important}.lg\:rounded-t-2xl{border-top-left-radius:1rem!important}.lg\:rounded-r-2xl,.lg\:rounded-t-2xl{border-top-right-radius:1rem!important}.lg\:rounded-b-2xl,.lg\:rounded-r-2xl{border-bottom-right-radius:1rem!important}.lg\:rounded-b-2xl,.lg\:rounded-l-2xl{border-bottom-left-radius:1rem!important}.lg\:rounded-l-2xl{border-top-left-radius:1rem!important}.lg\:rounded-t-3xl{border-top-left-radius:1.5rem!important}.lg\:rounded-r-3xl,.lg\:rounded-t-3xl{border-top-right-radius:1.5rem!important}.lg\:rounded-b-3xl,.lg\:rounded-r-3xl{border-bottom-right-radius:1.5rem!important}.lg\:rounded-b-3xl,.lg\:rounded-l-3xl{border-bottom-left-radius:1.5rem!important}.lg\:rounded-l-3xl{border-top-left-radius:1.5rem!important}.lg\:rounded-t-full{border-top-left-radius:9999px!important}.lg\:rounded-r-full,.lg\:rounded-t-full{border-top-right-radius:9999px!important}.lg\:rounded-b-full,.lg\:rounded-r-full{border-bottom-right-radius:9999px!important}.lg\:rounded-b-full,.lg\:rounded-l-full{border-bottom-left-radius:9999px!important}.lg\:rounded-l-full{border-top-left-radius:9999px!important}.lg\:rounded-tl-none{border-top-left-radius:0!important}.lg\:rounded-tr-none{border-top-right-radius:0!important}.lg\:rounded-br-none{border-bottom-right-radius:0!important}.lg\:rounded-bl-none{border-bottom-left-radius:0!important}.lg\:rounded-tl-sm{border-top-left-radius:.125rem!important}.lg\:rounded-tr-sm{border-top-right-radius:.125rem!important}.lg\:rounded-br-sm{border-bottom-right-radius:.125rem!important}.lg\:rounded-bl-sm{border-bottom-left-radius:.125rem!important}.lg\:rounded-tl{border-top-left-radius:.25rem!important}.lg\:rounded-tr{border-top-right-radius:.25rem!important}.lg\:rounded-br{border-bottom-right-radius:.25rem!important}.lg\:rounded-bl{border-bottom-left-radius:.25rem!important}.lg\:rounded-tl-md{border-top-left-radius:.375rem!important}.lg\:rounded-tr-md{border-top-right-radius:.375rem!important}.lg\:rounded-br-md{border-bottom-right-radius:.375rem!important}.lg\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.lg\:rounded-tl-lg{border-top-left-radius:.5rem!important}.lg\:rounded-tr-lg{border-top-right-radius:.5rem!important}.lg\:rounded-br-lg{border-bottom-right-radius:.5rem!important}.lg\:rounded-bl-lg{border-bottom-left-radius:.5rem!important}.lg\:rounded-tl-xl{border-top-left-radius:.75rem!important}.lg\:rounded-tr-xl{border-top-right-radius:.75rem!important}.lg\:rounded-br-xl{border-bottom-right-radius:.75rem!important}.lg\:rounded-bl-xl{border-bottom-left-radius:.75rem!important}.lg\:rounded-tl-2xl{border-top-left-radius:1rem!important}.lg\:rounded-tr-2xl{border-top-right-radius:1rem!important}.lg\:rounded-br-2xl{border-bottom-right-radius:1rem!important}.lg\:rounded-bl-2xl{border-bottom-left-radius:1rem!important}.lg\:rounded-tl-3xl{border-top-left-radius:1.5rem!important}.lg\:rounded-tr-3xl{border-top-right-radius:1.5rem!important}.lg\:rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.lg\:rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.lg\:rounded-tl-full{border-top-left-radius:9999px!important}.lg\:rounded-tr-full{border-top-right-radius:9999px!important}.lg\:rounded-br-full{border-bottom-right-radius:9999px!important}.lg\:rounded-bl-full{border-bottom-left-radius:9999px!important}.lg\:border-solid{border-style:solid!important}.lg\:border-dashed{border-style:dashed!important}.lg\:border-dotted{border-style:dotted!important}.lg\:border-double{border-style:double!important}.lg\:border-none{border-style:none!important}.lg\:border-0{border-width:0!important}.lg\:border-2{border-width:2px!important}.lg\:border-4{border-width:4px!important}.lg\:border-8{border-width:8px!important}.lg\:border{border-width:1px!important}.lg\:border-t-0{border-top-width:0!important}.lg\:border-r-0{border-right-width:0!important}.lg\:border-b-0{border-bottom-width:0!important}.lg\:border-l-0{border-left-width:0!important}.lg\:border-t-2{border-top-width:2px!important}.lg\:border-r-2{border-right-width:2px!important}.lg\:border-b-2{border-bottom-width:2px!important}.lg\:border-l-2{border-left-width:2px!important}.lg\:border-t-4{border-top-width:4px!important}.lg\:border-r-4{border-right-width:4px!important}.lg\:border-b-4{border-bottom-width:4px!important}.lg\:border-l-4{border-left-width:4px!important}.lg\:border-t-8{border-top-width:8px!important}.lg\:border-r-8{border-right-width:8px!important}.lg\:border-b-8{border-bottom-width:8px!important}.lg\:border-l-8{border-left-width:8px!important}.lg\:border-t{border-top-width:1px!important}.lg\:border-r{border-right-width:1px!important}.lg\:border-b{border-bottom-width:1px!important}.lg\:border-l{border-left-width:1px!important}.lg\:box-border{box-sizing:border-box!important}.lg\:box-content{box-sizing:content-box!important}.lg\:cursor-auto{cursor:auto!important}.lg\:cursor-default{cursor:default!important}.lg\:cursor-pointer{cursor:pointer!important}.lg\:cursor-wait{cursor:wait!important}.lg\:cursor-text{cursor:text!important}.lg\:cursor-move{cursor:move!important}.lg\:cursor-not-allowed{cursor:not-allowed!important}.lg\:block{display:block!important}.lg\:inline-block{display:inline-block!important}.lg\:inline{display:inline!important}.lg\:flex{display:flex!important}.lg\:inline-flex{display:inline-flex!important}.lg\:table{display:table!important}.lg\:table-caption{display:table-caption!important}.lg\:table-cell{display:table-cell!important}.lg\:table-column{display:table-column!important}.lg\:table-column-group{display:table-column-group!important}.lg\:table-footer-group{display:table-footer-group!important}.lg\:table-header-group{display:table-header-group!important}.lg\:table-row-group{display:table-row-group!important}.lg\:table-row{display:table-row!important}.lg\:flow-root{display:flow-root!important}.lg\:grid{display:grid!important}.lg\:inline-grid{display:inline-grid!important}.lg\:contents{display:contents!important}.lg\:hidden{display:none!important}.lg\:flex-row{flex-direction:row!important}.lg\:flex-row-reverse{flex-direction:row-reverse!important}.lg\:flex-col{flex-direction:column!important}.lg\:flex-col-reverse{flex-direction:column-reverse!important}.lg\:flex-wrap{flex-wrap:wrap!important}.lg\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\:flex-no-wrap{flex-wrap:nowrap!important}.lg\:place-items-auto{place-items:auto!important}.lg\:place-items-start{place-items:start!important}.lg\:place-items-end{place-items:end!important}.lg\:place-items-center{place-items:center!important}.lg\:place-items-stretch{place-items:stretch!important}.lg\:place-content-center{place-content:center!important}.lg\:place-content-start{place-content:start!important}.lg\:place-content-end{place-content:end!important}.lg\:place-content-between{place-content:space-between!important}.lg\:place-content-around{place-content:space-around!important}.lg\:place-content-evenly{place-content:space-evenly!important}.lg\:place-content-stretch{place-content:stretch!important}.lg\:place-self-auto{place-self:auto!important}.lg\:place-self-start{place-self:start!important}.lg\:place-self-end{place-self:end!important}.lg\:place-self-center{place-self:center!important}.lg\:place-self-stretch{place-self:stretch!important}.lg\:items-start{align-items:flex-start!important}.lg\:items-end{align-items:flex-end!important}.lg\:items-center{align-items:center!important}.lg\:items-baseline{align-items:baseline!important}.lg\:items-stretch{align-items:stretch!important}.lg\:content-center{align-content:center!important}.lg\:content-start{align-content:flex-start!important}.lg\:content-end{align-content:flex-end!important}.lg\:content-between{align-content:space-between!important}.lg\:content-around{align-content:space-around!important}.lg\:content-evenly{align-content:space-evenly!important}.lg\:self-auto{align-self:auto!important}.lg\:self-start{align-self:flex-start!important}.lg\:self-end{align-self:flex-end!important}.lg\:self-center{align-self:center!important}.lg\:self-stretch{align-self:stretch!important}.lg\:justify-items-auto{justify-items:auto!important}.lg\:justify-items-start{justify-items:start!important}.lg\:justify-items-end{justify-items:end!important}.lg\:justify-items-center{justify-items:center!important}.lg\:justify-items-stretch{justify-items:stretch!important}.lg\:justify-start{justify-content:flex-start!important}.lg\:justify-end{justify-content:flex-end!important}.lg\:justify-center{justify-content:center!important}.lg\:justify-between{justify-content:space-between!important}.lg\:justify-around{justify-content:space-around!important}.lg\:justify-evenly{justify-content:space-evenly!important}.lg\:justify-self-auto{justify-self:auto!important}.lg\:justify-self-start{justify-self:start!important}.lg\:justify-self-end{justify-self:end!important}.lg\:justify-self-center{justify-self:center!important}.lg\:justify-self-stretch{justify-self:stretch!important}.lg\:flex-1{flex:1 1 0%!important}.lg\:flex-auto{flex:1 1 auto!important}.lg\:flex-initial{flex:0 1 auto!important}.lg\:flex-none{flex:none!important}.lg\:flex-grow-0{flex-grow:0!important}.lg\:flex-grow{flex-grow:1!important}.lg\:flex-shrink-0{flex-shrink:0!important}.lg\:flex-shrink{flex-shrink:1!important}.lg\:order-1{order:1!important}.lg\:order-2{order:2!important}.lg\:order-3{order:3!important}.lg\:order-4{order:4!important}.lg\:order-5{order:5!important}.lg\:order-6{order:6!important}.lg\:order-7{order:7!important}.lg\:order-8{order:8!important}.lg\:order-9{order:9!important}.lg\:order-10{order:10!important}.lg\:order-11{order:11!important}.lg\:order-12{order:12!important}.lg\:order-first{order:-9999!important}.lg\:order-last{order:9999!important}.lg\:order-none{order:0!important}.lg\:float-right{float:right!important}.lg\:float-left{float:left!important}.lg\:float-none{float:none!important}.lg\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .lg\:ltr\:float-right{float:right!important}[dir=ltr] .lg\:ltr\:float-left{float:left!important}[dir=ltr] .lg\:ltr\:float-none{float:none!important}[dir=ltr] .lg\:ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .lg\:rtl\:float-right{float:right!important}[dir=rtl] .lg\:rtl\:float-left{float:left!important}[dir=rtl] .lg\:rtl\:float-none{float:none!important}[dir=rtl] .lg\:rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.lg\:clear-left{clear:left!important}.lg\:clear-right{clear:right!important}.lg\:clear-both{clear:both!important}.lg\:clear-none{clear:none!important}.lg\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.lg\:font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.lg\:font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.lg\:font-hairline{font-weight:100!important}.lg\:font-thin{font-weight:200!important}.lg\:font-light{font-weight:300!important}.lg\:font-normal{font-weight:400!important}.lg\:font-medium{font-weight:500!important}.lg\:font-semibold{font-weight:600!important}.lg\:font-bold{font-weight:700!important}.lg\:font-extrabold{font-weight:800!important}.lg\:font-black{font-weight:900!important}.lg\:hover\:font-hairline:hover{font-weight:100!important}.lg\:hover\:font-thin:hover{font-weight:200!important}.lg\:hover\:font-light:hover{font-weight:300!important}.lg\:hover\:font-normal:hover{font-weight:400!important}.lg\:hover\:font-medium:hover{font-weight:500!important}.lg\:hover\:font-semibold:hover{font-weight:600!important}.lg\:hover\:font-bold:hover{font-weight:700!important}.lg\:hover\:font-extrabold:hover{font-weight:800!important}.lg\:hover\:font-black:hover{font-weight:900!important}.lg\:focus\:font-hairline:focus{font-weight:100!important}.lg\:focus\:font-thin:focus{font-weight:200!important}.lg\:focus\:font-light:focus{font-weight:300!important}.lg\:focus\:font-normal:focus{font-weight:400!important}.lg\:focus\:font-medium:focus{font-weight:500!important}.lg\:focus\:font-semibold:focus{font-weight:600!important}.lg\:focus\:font-bold:focus{font-weight:700!important}.lg\:focus\:font-extrabold:focus{font-weight:800!important}.lg\:focus\:font-black:focus{font-weight:900!important}.lg\:h-0{height:0!important}.lg\:h-1{height:.25rem!important}.lg\:h-2{height:.5rem!important}.lg\:h-3{height:.75rem!important}.lg\:h-4{height:1rem!important}.lg\:h-5{height:1.25rem!important}.lg\:h-6{height:1.5rem!important}.lg\:h-7{height:1.75rem!important}.lg\:h-8{height:2rem!important}.lg\:h-9{height:2.25rem!important}.lg\:h-10{height:2.5rem!important}.lg\:h-11{height:2.75rem!important}.lg\:h-12{height:3rem!important}.lg\:h-13{height:3.25rem!important}.lg\:h-14{height:3.5rem!important}.lg\:h-15{height:3.75rem!important}.lg\:h-16{height:4rem!important}.lg\:h-20{height:5rem!important}.lg\:h-24{height:6rem!important}.lg\:h-28{height:7rem!important}.lg\:h-32{height:8rem!important}.lg\:h-36{height:9rem!important}.lg\:h-40{height:10rem!important}.lg\:h-48{height:12rem!important}.lg\:h-56{height:14rem!important}.lg\:h-60{height:15rem!important}.lg\:h-64{height:16rem!important}.lg\:h-72{height:18rem!important}.lg\:h-80{height:20rem!important}.lg\:h-96{height:24rem!important}.lg\:h-auto{height:auto!important}.lg\:h-px{height:1px!important}.lg\:h-0\.5{height:.125rem!important}.lg\:h-1\.5{height:.375rem!important}.lg\:h-2\.5{height:.625rem!important}.lg\:h-3\.5{height:.875rem!important}.lg\:h-1\/2{height:50%!important}.lg\:h-1\/3{height:33.333333%!important}.lg\:h-2\/3{height:66.666667%!important}.lg\:h-1\/4{height:25%!important}.lg\:h-2\/4{height:50%!important}.lg\:h-3\/4{height:75%!important}.lg\:h-1\/5{height:20%!important}.lg\:h-2\/5{height:40%!important}.lg\:h-3\/5{height:60%!important}.lg\:h-4\/5{height:80%!important}.lg\:h-1\/6{height:16.666667%!important}.lg\:h-2\/6{height:33.333333%!important}.lg\:h-3\/6{height:50%!important}.lg\:h-4\/6{height:66.666667%!important}.lg\:h-5\/6{height:83.333333%!important}.lg\:h-1\/12{height:8.333333%!important}.lg\:h-2\/12{height:16.666667%!important}.lg\:h-3\/12{height:25%!important}.lg\:h-4\/12{height:33.333333%!important}.lg\:h-5\/12{height:41.666667%!important}.lg\:h-6\/12{height:50%!important}.lg\:h-7\/12{height:58.333333%!important}.lg\:h-8\/12{height:66.666667%!important}.lg\:h-9\/12{height:75%!important}.lg\:h-10\/12{height:83.333333%!important}.lg\:h-11\/12{height:91.666667%!important}.lg\:h-full{height:100%!important}.lg\:h-screen{height:100vh!important}.lg\:text-xs{font-size:.7rem!important}.lg\:text-sm{font-size:.875rem!important}.lg\:text-base{font-size:1rem!important}.lg\:text-lg{font-size:1.125rem!important}.lg\:text-xl{font-size:1.25rem!important}.lg\:text-2xl{font-size:1.5rem!important}.lg\:text-3xl{font-size:1.875rem!important}.lg\:text-4xl{font-size:2.25rem!important}.lg\:text-5xl{font-size:3rem!important}.lg\:text-6xl{font-size:4rem!important}.lg\:leading-3{line-height:.75rem!important}.lg\:leading-4{line-height:1rem!important}.lg\:leading-5{line-height:1.25rem!important}.lg\:leading-6{line-height:1.5rem!important}.lg\:leading-7{line-height:1.75rem!important}.lg\:leading-8{line-height:2rem!important}.lg\:leading-9{line-height:2.25rem!important}.lg\:leading-10{line-height:2.5rem!important}.lg\:leading-none{line-height:1!important}.lg\:leading-tight{line-height:1.25!important}.lg\:leading-snug{line-height:1.375!important}.lg\:leading-normal{line-height:1.5!important}.lg\:leading-relaxed{line-height:1.625!important}.lg\:leading-loose{line-height:2!important}.lg\:list-inside{list-style-position:inside!important}.lg\:list-outside{list-style-position:outside!important}.lg\:list-none{list-style-type:none!important}.lg\:list-disc{list-style-type:disc!important}.lg\:list-decimal{list-style-type:decimal!important}.lg\:m-0{margin:0!important}.lg\:m-1{margin:.25rem!important}.lg\:m-2{margin:.5rem!important}.lg\:m-3{margin:.75rem!important}.lg\:m-4{margin:1rem!important}.lg\:m-5{margin:1.25rem!important}.lg\:m-6{margin:1.5rem!important}.lg\:m-7{margin:1.75rem!important}.lg\:m-8{margin:2rem!important}.lg\:m-9{margin:2.25rem!important}.lg\:m-10{margin:2.5rem!important}.lg\:m-11{margin:2.75rem!important}.lg\:m-12{margin:3rem!important}.lg\:m-13{margin:3.25rem!important}.lg\:m-14{margin:3.5rem!important}.lg\:m-15{margin:3.75rem!important}.lg\:m-16{margin:4rem!important}.lg\:m-20{margin:5rem!important}.lg\:m-24{margin:6rem!important}.lg\:m-28{margin:7rem!important}.lg\:m-32{margin:8rem!important}.lg\:m-36{margin:9rem!important}.lg\:m-40{margin:10rem!important}.lg\:m-48{margin:12rem!important}.lg\:m-56{margin:14rem!important}.lg\:m-60{margin:15rem!important}.lg\:m-64{margin:16rem!important}.lg\:m-72{margin:18rem!important}.lg\:m-80{margin:20rem!important}.lg\:m-96{margin:24rem!important}.lg\:m-auto{margin:auto!important}.lg\:m-px{margin:1px!important}.lg\:m-0\.5{margin:.125rem!important}.lg\:m-1\.5{margin:.375rem!important}.lg\:m-2\.5{margin:.625rem!important}.lg\:m-3\.5{margin:.875rem!important}.lg\:m-1\/2{margin:50%!important}.lg\:m-1\/3{margin:33.333333%!important}.lg\:m-2\/3{margin:66.666667%!important}.lg\:m-1\/4{margin:25%!important}.lg\:m-2\/4{margin:50%!important}.lg\:m-3\/4{margin:75%!important}.lg\:m-1\/5{margin:20%!important}.lg\:m-2\/5{margin:40%!important}.lg\:m-3\/5{margin:60%!important}.lg\:m-4\/5{margin:80%!important}.lg\:m-1\/6{margin:16.666667%!important}.lg\:m-2\/6{margin:33.333333%!important}.lg\:m-3\/6{margin:50%!important}.lg\:m-4\/6{margin:66.666667%!important}.lg\:m-5\/6{margin:83.333333%!important}.lg\:m-1\/12{margin:8.333333%!important}.lg\:m-2\/12{margin:16.666667%!important}.lg\:m-3\/12{margin:25%!important}.lg\:m-4\/12{margin:33.333333%!important}.lg\:m-5\/12{margin:41.666667%!important}.lg\:m-6\/12{margin:50%!important}.lg\:m-7\/12{margin:58.333333%!important}.lg\:m-8\/12{margin:66.666667%!important}.lg\:m-9\/12{margin:75%!important}.lg\:m-10\/12{margin:83.333333%!important}.lg\:m-11\/12{margin:91.666667%!important}.lg\:m-full{margin:100%!important}.lg\:-m-1{margin:-.25rem!important}.lg\:-m-2{margin:-.5rem!important}.lg\:-m-3{margin:-.75rem!important}.lg\:-m-4{margin:-1rem!important}.lg\:-m-5{margin:-1.25rem!important}.lg\:-m-6{margin:-1.5rem!important}.lg\:-m-7{margin:-1.75rem!important}.lg\:-m-8{margin:-2rem!important}.lg\:-m-9{margin:-2.25rem!important}.lg\:-m-10{margin:-2.5rem!important}.lg\:-m-11{margin:-2.75rem!important}.lg\:-m-12{margin:-3rem!important}.lg\:-m-13{margin:-3.25rem!important}.lg\:-m-14{margin:-3.5rem!important}.lg\:-m-15{margin:-3.75rem!important}.lg\:-m-16{margin:-4rem!important}.lg\:-m-20{margin:-5rem!important}.lg\:-m-24{margin:-6rem!important}.lg\:-m-28{margin:-7rem!important}.lg\:-m-32{margin:-8rem!important}.lg\:-m-36{margin:-9rem!important}.lg\:-m-40{margin:-10rem!important}.lg\:-m-48{margin:-12rem!important}.lg\:-m-56{margin:-14rem!important}.lg\:-m-60{margin:-15rem!important}.lg\:-m-64{margin:-16rem!important}.lg\:-m-72{margin:-18rem!important}.lg\:-m-80{margin:-20rem!important}.lg\:-m-96{margin:-24rem!important}.lg\:-m-px{margin:-1px!important}.lg\:-m-0\.5{margin:-.125rem!important}.lg\:-m-1\.5{margin:-.375rem!important}.lg\:-m-2\.5{margin:-.625rem!important}.lg\:-m-3\.5{margin:-.875rem!important}.lg\:-m-1\/2{margin:-50%!important}.lg\:-m-1\/3{margin:-33.33333%!important}.lg\:-m-2\/3{margin:-66.66667%!important}.lg\:-m-1\/4{margin:-25%!important}.lg\:-m-2\/4{margin:-50%!important}.lg\:-m-3\/4{margin:-75%!important}.lg\:-m-1\/5{margin:-20%!important}.lg\:-m-2\/5{margin:-40%!important}.lg\:-m-3\/5{margin:-60%!important}.lg\:-m-4\/5{margin:-80%!important}.lg\:-m-1\/6{margin:-16.66667%!important}.lg\:-m-2\/6{margin:-33.33333%!important}.lg\:-m-3\/6{margin:-50%!important}.lg\:-m-4\/6{margin:-66.66667%!important}.lg\:-m-5\/6{margin:-83.33333%!important}.lg\:-m-1\/12{margin:-8.33333%!important}.lg\:-m-2\/12{margin:-16.66667%!important}.lg\:-m-3\/12{margin:-25%!important}.lg\:-m-4\/12{margin:-33.33333%!important}.lg\:-m-5\/12{margin:-41.66667%!important}.lg\:-m-6\/12{margin:-50%!important}.lg\:-m-7\/12{margin:-58.33333%!important}.lg\:-m-8\/12{margin:-66.66667%!important}.lg\:-m-9\/12{margin:-75%!important}.lg\:-m-10\/12{margin:-83.33333%!important}.lg\:-m-11\/12{margin:-91.66667%!important}.lg\:-m-full{margin:-100%!important}.lg\:my-0{margin-bottom:0!important;margin-top:0!important}.lg\:mx-0{margin-left:0!important;margin-right:0!important}.lg\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.lg\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.lg\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.lg\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.lg\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}.lg\:mx-4{margin-left:1rem!important;margin-right:1rem!important}.lg\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.lg\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.lg\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.lg\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.lg\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.lg\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}.lg\:mx-8{margin-left:2rem!important;margin-right:2rem!important}.lg\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.lg\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.lg\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.lg\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.lg\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.lg\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.lg\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}.lg\:mx-12{margin-left:3rem!important;margin-right:3rem!important}.lg\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.lg\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.lg\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.lg\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.lg\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.lg\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.lg\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}.lg\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.lg\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}.lg\:mx-20{margin-left:5rem!important;margin-right:5rem!important}.lg\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}.lg\:mx-24{margin-left:6rem!important;margin-right:6rem!important}.lg\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}.lg\:mx-28{margin-left:7rem!important;margin-right:7rem!important}.lg\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}.lg\:mx-32{margin-left:8rem!important;margin-right:8rem!important}.lg\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}.lg\:mx-36{margin-left:9rem!important;margin-right:9rem!important}.lg\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}.lg\:mx-40{margin-left:10rem!important;margin-right:10rem!important}.lg\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}.lg\:mx-48{margin-left:12rem!important;margin-right:12rem!important}.lg\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}.lg\:mx-56{margin-left:14rem!important;margin-right:14rem!important}.lg\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}.lg\:mx-60{margin-left:15rem!important;margin-right:15rem!important}.lg\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}.lg\:mx-64{margin-left:16rem!important;margin-right:16rem!important}.lg\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}.lg\:mx-72{margin-left:18rem!important;margin-right:18rem!important}.lg\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}.lg\:mx-80{margin-left:20rem!important;margin-right:20rem!important}.lg\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}.lg\:mx-96{margin-left:24rem!important;margin-right:24rem!important}.lg\:my-auto{margin-bottom:auto!important;margin-top:auto!important}.lg\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\:my-px{margin-bottom:1px!important;margin-top:1px!important}.lg\:mx-px{margin-left:1px!important;margin-right:1px!important}.lg\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.lg\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.lg\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.lg\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.lg\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.lg\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.lg\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.lg\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.lg\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.lg\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}.lg\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.lg\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.lg\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.lg\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.lg\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.lg\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}.lg\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.lg\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}.lg\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.lg\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}.lg\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.lg\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}.lg\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.lg\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}.lg\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.lg\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}.lg\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.lg\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}.lg\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.lg\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.lg\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.lg\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.lg\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.lg\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}.lg\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.lg\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.lg\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.lg\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.lg\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.lg\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.lg\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.lg\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.lg\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.lg\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}.lg\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.lg\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.lg\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.lg\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.lg\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.lg\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}.lg\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.lg\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.lg\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.lg\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.lg\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.lg\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}.lg\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.lg\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.lg\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.lg\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.lg\:my-full{margin-bottom:100%!important;margin-top:100%!important}.lg\:mx-full{margin-left:100%!important;margin-right:100%!important}.lg\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.lg\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.lg\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.lg\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.lg\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.lg\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.lg\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.lg\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.lg\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.lg\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.lg\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.lg\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.lg\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.lg\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.lg\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.lg\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.lg\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.lg\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.lg\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.lg\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.lg\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.lg\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.lg\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.lg\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.lg\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.lg\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.lg\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.lg\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.lg\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.lg\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.lg\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.lg\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.lg\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.lg\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.lg\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.lg\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.lg\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.lg\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.lg\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.lg\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.lg\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.lg\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.lg\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.lg\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.lg\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.lg\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.lg\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.lg\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.lg\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.lg\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.lg\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.lg\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.lg\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.lg\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.lg\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.lg\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.lg\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}.lg\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.lg\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.lg\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.lg\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.lg\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.lg\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.lg\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.lg\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.lg\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.lg\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.lg\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.lg\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.lg\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.lg\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.lg\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.lg\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.lg\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.lg\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.lg\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.lg\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.lg\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.lg\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.lg\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.lg\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.lg\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.lg\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.lg\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.lg\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.lg\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.lg\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.lg\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.lg\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.lg\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.lg\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.lg\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.lg\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.lg\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.lg\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.lg\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.lg\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.lg\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.lg\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.lg\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.lg\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.lg\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.lg\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.lg\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.lg\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.lg\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.lg\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.lg\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.lg\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.lg\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.lg\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.lg\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.lg\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.lg\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.lg\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.lg\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.lg\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.lg\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.lg\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}.lg\:mt-0{margin-top:0!important}.lg\:mr-0{margin-right:0!important}.lg\:mb-0{margin-bottom:0!important}.lg\:ml-0{margin-left:0!important}.lg\:mt-1{margin-top:.25rem!important}.lg\:mr-1{margin-right:.25rem!important}.lg\:mb-1{margin-bottom:.25rem!important}.lg\:ml-1{margin-left:.25rem!important}.lg\:mt-2{margin-top:.5rem!important}.lg\:mr-2{margin-right:.5rem!important}.lg\:mb-2{margin-bottom:.5rem!important}.lg\:ml-2{margin-left:.5rem!important}.lg\:mt-3{margin-top:.75rem!important}.lg\:mr-3{margin-right:.75rem!important}.lg\:mb-3{margin-bottom:.75rem!important}.lg\:ml-3{margin-left:.75rem!important}.lg\:mt-4{margin-top:1rem!important}.lg\:mr-4{margin-right:1rem!important}.lg\:mb-4{margin-bottom:1rem!important}.lg\:ml-4{margin-left:1rem!important}.lg\:mt-5{margin-top:1.25rem!important}.lg\:mr-5{margin-right:1.25rem!important}.lg\:mb-5{margin-bottom:1.25rem!important}.lg\:ml-5{margin-left:1.25rem!important}.lg\:mt-6{margin-top:1.5rem!important}.lg\:mr-6{margin-right:1.5rem!important}.lg\:mb-6{margin-bottom:1.5rem!important}.lg\:ml-6{margin-left:1.5rem!important}.lg\:mt-7{margin-top:1.75rem!important}.lg\:mr-7{margin-right:1.75rem!important}.lg\:mb-7{margin-bottom:1.75rem!important}.lg\:ml-7{margin-left:1.75rem!important}.lg\:mt-8{margin-top:2rem!important}.lg\:mr-8{margin-right:2rem!important}.lg\:mb-8{margin-bottom:2rem!important}.lg\:ml-8{margin-left:2rem!important}.lg\:mt-9{margin-top:2.25rem!important}.lg\:mr-9{margin-right:2.25rem!important}.lg\:mb-9{margin-bottom:2.25rem!important}.lg\:ml-9{margin-left:2.25rem!important}.lg\:mt-10{margin-top:2.5rem!important}.lg\:mr-10{margin-right:2.5rem!important}.lg\:mb-10{margin-bottom:2.5rem!important}.lg\:ml-10{margin-left:2.5rem!important}.lg\:mt-11{margin-top:2.75rem!important}.lg\:mr-11{margin-right:2.75rem!important}.lg\:mb-11{margin-bottom:2.75rem!important}.lg\:ml-11{margin-left:2.75rem!important}.lg\:mt-12{margin-top:3rem!important}.lg\:mr-12{margin-right:3rem!important}.lg\:mb-12{margin-bottom:3rem!important}.lg\:ml-12{margin-left:3rem!important}.lg\:mt-13{margin-top:3.25rem!important}.lg\:mr-13{margin-right:3.25rem!important}.lg\:mb-13{margin-bottom:3.25rem!important}.lg\:ml-13{margin-left:3.25rem!important}.lg\:mt-14{margin-top:3.5rem!important}.lg\:mr-14{margin-right:3.5rem!important}.lg\:mb-14{margin-bottom:3.5rem!important}.lg\:ml-14{margin-left:3.5rem!important}.lg\:mt-15{margin-top:3.75rem!important}.lg\:mr-15{margin-right:3.75rem!important}.lg\:mb-15{margin-bottom:3.75rem!important}.lg\:ml-15{margin-left:3.75rem!important}.lg\:mt-16{margin-top:4rem!important}.lg\:mr-16{margin-right:4rem!important}.lg\:mb-16{margin-bottom:4rem!important}.lg\:ml-16{margin-left:4rem!important}.lg\:mt-20{margin-top:5rem!important}.lg\:mr-20{margin-right:5rem!important}.lg\:mb-20{margin-bottom:5rem!important}.lg\:ml-20{margin-left:5rem!important}.lg\:mt-24{margin-top:6rem!important}.lg\:mr-24{margin-right:6rem!important}.lg\:mb-24{margin-bottom:6rem!important}.lg\:ml-24{margin-left:6rem!important}.lg\:mt-28{margin-top:7rem!important}.lg\:mr-28{margin-right:7rem!important}.lg\:mb-28{margin-bottom:7rem!important}.lg\:ml-28{margin-left:7rem!important}.lg\:mt-32{margin-top:8rem!important}.lg\:mr-32{margin-right:8rem!important}.lg\:mb-32{margin-bottom:8rem!important}.lg\:ml-32{margin-left:8rem!important}.lg\:mt-36{margin-top:9rem!important}.lg\:mr-36{margin-right:9rem!important}.lg\:mb-36{margin-bottom:9rem!important}.lg\:ml-36{margin-left:9rem!important}.lg\:mt-40{margin-top:10rem!important}.lg\:mr-40{margin-right:10rem!important}.lg\:mb-40{margin-bottom:10rem!important}.lg\:ml-40{margin-left:10rem!important}.lg\:mt-48{margin-top:12rem!important}.lg\:mr-48{margin-right:12rem!important}.lg\:mb-48{margin-bottom:12rem!important}.lg\:ml-48{margin-left:12rem!important}.lg\:mt-56{margin-top:14rem!important}.lg\:mr-56{margin-right:14rem!important}.lg\:mb-56{margin-bottom:14rem!important}.lg\:ml-56{margin-left:14rem!important}.lg\:mt-60{margin-top:15rem!important}.lg\:mr-60{margin-right:15rem!important}.lg\:mb-60{margin-bottom:15rem!important}.lg\:ml-60{margin-left:15rem!important}.lg\:mt-64{margin-top:16rem!important}.lg\:mr-64{margin-right:16rem!important}.lg\:mb-64{margin-bottom:16rem!important}.lg\:ml-64{margin-left:16rem!important}.lg\:mt-72{margin-top:18rem!important}.lg\:mr-72{margin-right:18rem!important}.lg\:mb-72{margin-bottom:18rem!important}.lg\:ml-72{margin-left:18rem!important}.lg\:mt-80{margin-top:20rem!important}.lg\:mr-80{margin-right:20rem!important}.lg\:mb-80{margin-bottom:20rem!important}.lg\:ml-80{margin-left:20rem!important}.lg\:mt-96{margin-top:24rem!important}.lg\:mr-96{margin-right:24rem!important}.lg\:mb-96{margin-bottom:24rem!important}.lg\:ml-96{margin-left:24rem!important}.lg\:mt-auto{margin-top:auto!important}.lg\:mr-auto{margin-right:auto!important}.lg\:mb-auto{margin-bottom:auto!important}.lg\:ml-auto{margin-left:auto!important}.lg\:mt-px{margin-top:1px!important}.lg\:mr-px{margin-right:1px!important}.lg\:mb-px{margin-bottom:1px!important}.lg\:ml-px{margin-left:1px!important}.lg\:mt-0\.5{margin-top:.125rem!important}.lg\:mr-0\.5{margin-right:.125rem!important}.lg\:mb-0\.5{margin-bottom:.125rem!important}.lg\:ml-0\.5{margin-left:.125rem!important}.lg\:mt-1\.5{margin-top:.375rem!important}.lg\:mr-1\.5{margin-right:.375rem!important}.lg\:mb-1\.5{margin-bottom:.375rem!important}.lg\:ml-1\.5{margin-left:.375rem!important}.lg\:mt-2\.5{margin-top:.625rem!important}.lg\:mr-2\.5{margin-right:.625rem!important}.lg\:mb-2\.5{margin-bottom:.625rem!important}.lg\:ml-2\.5{margin-left:.625rem!important}.lg\:mt-3\.5{margin-top:.875rem!important}.lg\:mr-3\.5{margin-right:.875rem!important}.lg\:mb-3\.5{margin-bottom:.875rem!important}.lg\:ml-3\.5{margin-left:.875rem!important}.lg\:mt-1\/2{margin-top:50%!important}.lg\:mr-1\/2{margin-right:50%!important}.lg\:mb-1\/2{margin-bottom:50%!important}.lg\:ml-1\/2{margin-left:50%!important}.lg\:mt-1\/3{margin-top:33.333333%!important}.lg\:mr-1\/3{margin-right:33.333333%!important}.lg\:mb-1\/3{margin-bottom:33.333333%!important}.lg\:ml-1\/3{margin-left:33.333333%!important}.lg\:mt-2\/3{margin-top:66.666667%!important}.lg\:mr-2\/3{margin-right:66.666667%!important}.lg\:mb-2\/3{margin-bottom:66.666667%!important}.lg\:ml-2\/3{margin-left:66.666667%!important}.lg\:mt-1\/4{margin-top:25%!important}.lg\:mr-1\/4{margin-right:25%!important}.lg\:mb-1\/4{margin-bottom:25%!important}.lg\:ml-1\/4{margin-left:25%!important}.lg\:mt-2\/4{margin-top:50%!important}.lg\:mr-2\/4{margin-right:50%!important}.lg\:mb-2\/4{margin-bottom:50%!important}.lg\:ml-2\/4{margin-left:50%!important}.lg\:mt-3\/4{margin-top:75%!important}.lg\:mr-3\/4{margin-right:75%!important}.lg\:mb-3\/4{margin-bottom:75%!important}.lg\:ml-3\/4{margin-left:75%!important}.lg\:mt-1\/5{margin-top:20%!important}.lg\:mr-1\/5{margin-right:20%!important}.lg\:mb-1\/5{margin-bottom:20%!important}.lg\:ml-1\/5{margin-left:20%!important}.lg\:mt-2\/5{margin-top:40%!important}.lg\:mr-2\/5{margin-right:40%!important}.lg\:mb-2\/5{margin-bottom:40%!important}.lg\:ml-2\/5{margin-left:40%!important}.lg\:mt-3\/5{margin-top:60%!important}.lg\:mr-3\/5{margin-right:60%!important}.lg\:mb-3\/5{margin-bottom:60%!important}.lg\:ml-3\/5{margin-left:60%!important}.lg\:mt-4\/5{margin-top:80%!important}.lg\:mr-4\/5{margin-right:80%!important}.lg\:mb-4\/5{margin-bottom:80%!important}.lg\:ml-4\/5{margin-left:80%!important}.lg\:mt-1\/6{margin-top:16.666667%!important}.lg\:mr-1\/6{margin-right:16.666667%!important}.lg\:mb-1\/6{margin-bottom:16.666667%!important}.lg\:ml-1\/6{margin-left:16.666667%!important}.lg\:mt-2\/6{margin-top:33.333333%!important}.lg\:mr-2\/6{margin-right:33.333333%!important}.lg\:mb-2\/6{margin-bottom:33.333333%!important}.lg\:ml-2\/6{margin-left:33.333333%!important}.lg\:mt-3\/6{margin-top:50%!important}.lg\:mr-3\/6{margin-right:50%!important}.lg\:mb-3\/6{margin-bottom:50%!important}.lg\:ml-3\/6{margin-left:50%!important}.lg\:mt-4\/6{margin-top:66.666667%!important}.lg\:mr-4\/6{margin-right:66.666667%!important}.lg\:mb-4\/6{margin-bottom:66.666667%!important}.lg\:ml-4\/6{margin-left:66.666667%!important}.lg\:mt-5\/6{margin-top:83.333333%!important}.lg\:mr-5\/6{margin-right:83.333333%!important}.lg\:mb-5\/6{margin-bottom:83.333333%!important}.lg\:ml-5\/6{margin-left:83.333333%!important}.lg\:mt-1\/12{margin-top:8.333333%!important}.lg\:mr-1\/12{margin-right:8.333333%!important}.lg\:mb-1\/12{margin-bottom:8.333333%!important}.lg\:ml-1\/12{margin-left:8.333333%!important}.lg\:mt-2\/12{margin-top:16.666667%!important}.lg\:mr-2\/12{margin-right:16.666667%!important}.lg\:mb-2\/12{margin-bottom:16.666667%!important}.lg\:ml-2\/12{margin-left:16.666667%!important}.lg\:mt-3\/12{margin-top:25%!important}.lg\:mr-3\/12{margin-right:25%!important}.lg\:mb-3\/12{margin-bottom:25%!important}.lg\:ml-3\/12{margin-left:25%!important}.lg\:mt-4\/12{margin-top:33.333333%!important}.lg\:mr-4\/12{margin-right:33.333333%!important}.lg\:mb-4\/12{margin-bottom:33.333333%!important}.lg\:ml-4\/12{margin-left:33.333333%!important}.lg\:mt-5\/12{margin-top:41.666667%!important}.lg\:mr-5\/12{margin-right:41.666667%!important}.lg\:mb-5\/12{margin-bottom:41.666667%!important}.lg\:ml-5\/12{margin-left:41.666667%!important}.lg\:mt-6\/12{margin-top:50%!important}.lg\:mr-6\/12{margin-right:50%!important}.lg\:mb-6\/12{margin-bottom:50%!important}.lg\:ml-6\/12{margin-left:50%!important}.lg\:mt-7\/12{margin-top:58.333333%!important}.lg\:mr-7\/12{margin-right:58.333333%!important}.lg\:mb-7\/12{margin-bottom:58.333333%!important}.lg\:ml-7\/12{margin-left:58.333333%!important}.lg\:mt-8\/12{margin-top:66.666667%!important}.lg\:mr-8\/12{margin-right:66.666667%!important}.lg\:mb-8\/12{margin-bottom:66.666667%!important}.lg\:ml-8\/12{margin-left:66.666667%!important}.lg\:mt-9\/12{margin-top:75%!important}.lg\:mr-9\/12{margin-right:75%!important}.lg\:mb-9\/12{margin-bottom:75%!important}.lg\:ml-9\/12{margin-left:75%!important}.lg\:mt-10\/12{margin-top:83.333333%!important}.lg\:mr-10\/12{margin-right:83.333333%!important}.lg\:mb-10\/12{margin-bottom:83.333333%!important}.lg\:ml-10\/12{margin-left:83.333333%!important}.lg\:mt-11\/12{margin-top:91.666667%!important}.lg\:mr-11\/12{margin-right:91.666667%!important}.lg\:mb-11\/12{margin-bottom:91.666667%!important}.lg\:ml-11\/12{margin-left:91.666667%!important}.lg\:mt-full{margin-top:100%!important}.lg\:mr-full{margin-right:100%!important}.lg\:mb-full{margin-bottom:100%!important}.lg\:ml-full{margin-left:100%!important}.lg\:-mt-1{margin-top:-.25rem!important}.lg\:-mr-1{margin-right:-.25rem!important}.lg\:-mb-1{margin-bottom:-.25rem!important}.lg\:-ml-1{margin-left:-.25rem!important}.lg\:-mt-2{margin-top:-.5rem!important}.lg\:-mr-2{margin-right:-.5rem!important}.lg\:-mb-2{margin-bottom:-.5rem!important}.lg\:-ml-2{margin-left:-.5rem!important}.lg\:-mt-3{margin-top:-.75rem!important}.lg\:-mr-3{margin-right:-.75rem!important}.lg\:-mb-3{margin-bottom:-.75rem!important}.lg\:-ml-3{margin-left:-.75rem!important}.lg\:-mt-4{margin-top:-1rem!important}.lg\:-mr-4{margin-right:-1rem!important}.lg\:-mb-4{margin-bottom:-1rem!important}.lg\:-ml-4{margin-left:-1rem!important}.lg\:-mt-5{margin-top:-1.25rem!important}.lg\:-mr-5{margin-right:-1.25rem!important}.lg\:-mb-5{margin-bottom:-1.25rem!important}.lg\:-ml-5{margin-left:-1.25rem!important}.lg\:-mt-6{margin-top:-1.5rem!important}.lg\:-mr-6{margin-right:-1.5rem!important}.lg\:-mb-6{margin-bottom:-1.5rem!important}.lg\:-ml-6{margin-left:-1.5rem!important}.lg\:-mt-7{margin-top:-1.75rem!important}.lg\:-mr-7{margin-right:-1.75rem!important}.lg\:-mb-7{margin-bottom:-1.75rem!important}.lg\:-ml-7{margin-left:-1.75rem!important}.lg\:-mt-8{margin-top:-2rem!important}.lg\:-mr-8{margin-right:-2rem!important}.lg\:-mb-8{margin-bottom:-2rem!important}.lg\:-ml-8{margin-left:-2rem!important}.lg\:-mt-9{margin-top:-2.25rem!important}.lg\:-mr-9{margin-right:-2.25rem!important}.lg\:-mb-9{margin-bottom:-2.25rem!important}.lg\:-ml-9{margin-left:-2.25rem!important}.lg\:-mt-10{margin-top:-2.5rem!important}.lg\:-mr-10{margin-right:-2.5rem!important}.lg\:-mb-10{margin-bottom:-2.5rem!important}.lg\:-ml-10{margin-left:-2.5rem!important}.lg\:-mt-11{margin-top:-2.75rem!important}.lg\:-mr-11{margin-right:-2.75rem!important}.lg\:-mb-11{margin-bottom:-2.75rem!important}.lg\:-ml-11{margin-left:-2.75rem!important}.lg\:-mt-12{margin-top:-3rem!important}.lg\:-mr-12{margin-right:-3rem!important}.lg\:-mb-12{margin-bottom:-3rem!important}.lg\:-ml-12{margin-left:-3rem!important}.lg\:-mt-13{margin-top:-3.25rem!important}.lg\:-mr-13{margin-right:-3.25rem!important}.lg\:-mb-13{margin-bottom:-3.25rem!important}.lg\:-ml-13{margin-left:-3.25rem!important}.lg\:-mt-14{margin-top:-3.5rem!important}.lg\:-mr-14{margin-right:-3.5rem!important}.lg\:-mb-14{margin-bottom:-3.5rem!important}.lg\:-ml-14{margin-left:-3.5rem!important}.lg\:-mt-15{margin-top:-3.75rem!important}.lg\:-mr-15{margin-right:-3.75rem!important}.lg\:-mb-15{margin-bottom:-3.75rem!important}.lg\:-ml-15{margin-left:-3.75rem!important}.lg\:-mt-16{margin-top:-4rem!important}.lg\:-mr-16{margin-right:-4rem!important}.lg\:-mb-16{margin-bottom:-4rem!important}.lg\:-ml-16{margin-left:-4rem!important}.lg\:-mt-20{margin-top:-5rem!important}.lg\:-mr-20{margin-right:-5rem!important}.lg\:-mb-20{margin-bottom:-5rem!important}.lg\:-ml-20{margin-left:-5rem!important}.lg\:-mt-24{margin-top:-6rem!important}.lg\:-mr-24{margin-right:-6rem!important}.lg\:-mb-24{margin-bottom:-6rem!important}.lg\:-ml-24{margin-left:-6rem!important}.lg\:-mt-28{margin-top:-7rem!important}.lg\:-mr-28{margin-right:-7rem!important}.lg\:-mb-28{margin-bottom:-7rem!important}.lg\:-ml-28{margin-left:-7rem!important}.lg\:-mt-32{margin-top:-8rem!important}.lg\:-mr-32{margin-right:-8rem!important}.lg\:-mb-32{margin-bottom:-8rem!important}.lg\:-ml-32{margin-left:-8rem!important}.lg\:-mt-36{margin-top:-9rem!important}.lg\:-mr-36{margin-right:-9rem!important}.lg\:-mb-36{margin-bottom:-9rem!important}.lg\:-ml-36{margin-left:-9rem!important}.lg\:-mt-40{margin-top:-10rem!important}.lg\:-mr-40{margin-right:-10rem!important}.lg\:-mb-40{margin-bottom:-10rem!important}.lg\:-ml-40{margin-left:-10rem!important}.lg\:-mt-48{margin-top:-12rem!important}.lg\:-mr-48{margin-right:-12rem!important}.lg\:-mb-48{margin-bottom:-12rem!important}.lg\:-ml-48{margin-left:-12rem!important}.lg\:-mt-56{margin-top:-14rem!important}.lg\:-mr-56{margin-right:-14rem!important}.lg\:-mb-56{margin-bottom:-14rem!important}.lg\:-ml-56{margin-left:-14rem!important}.lg\:-mt-60{margin-top:-15rem!important}.lg\:-mr-60{margin-right:-15rem!important}.lg\:-mb-60{margin-bottom:-15rem!important}.lg\:-ml-60{margin-left:-15rem!important}.lg\:-mt-64{margin-top:-16rem!important}.lg\:-mr-64{margin-right:-16rem!important}.lg\:-mb-64{margin-bottom:-16rem!important}.lg\:-ml-64{margin-left:-16rem!important}.lg\:-mt-72{margin-top:-18rem!important}.lg\:-mr-72{margin-right:-18rem!important}.lg\:-mb-72{margin-bottom:-18rem!important}.lg\:-ml-72{margin-left:-18rem!important}.lg\:-mt-80{margin-top:-20rem!important}.lg\:-mr-80{margin-right:-20rem!important}.lg\:-mb-80{margin-bottom:-20rem!important}.lg\:-ml-80{margin-left:-20rem!important}.lg\:-mt-96{margin-top:-24rem!important}.lg\:-mr-96{margin-right:-24rem!important}.lg\:-mb-96{margin-bottom:-24rem!important}.lg\:-ml-96{margin-left:-24rem!important}.lg\:-mt-px{margin-top:-1px!important}.lg\:-mr-px{margin-right:-1px!important}.lg\:-mb-px{margin-bottom:-1px!important}.lg\:-ml-px{margin-left:-1px!important}.lg\:-mt-0\.5{margin-top:-.125rem!important}.lg\:-mr-0\.5{margin-right:-.125rem!important}.lg\:-mb-0\.5{margin-bottom:-.125rem!important}.lg\:-ml-0\.5{margin-left:-.125rem!important}.lg\:-mt-1\.5{margin-top:-.375rem!important}.lg\:-mr-1\.5{margin-right:-.375rem!important}.lg\:-mb-1\.5{margin-bottom:-.375rem!important}.lg\:-ml-1\.5{margin-left:-.375rem!important}.lg\:-mt-2\.5{margin-top:-.625rem!important}.lg\:-mr-2\.5{margin-right:-.625rem!important}.lg\:-mb-2\.5{margin-bottom:-.625rem!important}.lg\:-ml-2\.5{margin-left:-.625rem!important}.lg\:-mt-3\.5{margin-top:-.875rem!important}.lg\:-mr-3\.5{margin-right:-.875rem!important}.lg\:-mb-3\.5{margin-bottom:-.875rem!important}.lg\:-ml-3\.5{margin-left:-.875rem!important}.lg\:-mt-1\/2{margin-top:-50%!important}.lg\:-mr-1\/2{margin-right:-50%!important}.lg\:-mb-1\/2{margin-bottom:-50%!important}.lg\:-ml-1\/2{margin-left:-50%!important}.lg\:-mt-1\/3{margin-top:-33.33333%!important}.lg\:-mr-1\/3{margin-right:-33.33333%!important}.lg\:-mb-1\/3{margin-bottom:-33.33333%!important}.lg\:-ml-1\/3{margin-left:-33.33333%!important}.lg\:-mt-2\/3{margin-top:-66.66667%!important}.lg\:-mr-2\/3{margin-right:-66.66667%!important}.lg\:-mb-2\/3{margin-bottom:-66.66667%!important}.lg\:-ml-2\/3{margin-left:-66.66667%!important}.lg\:-mt-1\/4{margin-top:-25%!important}.lg\:-mr-1\/4{margin-right:-25%!important}.lg\:-mb-1\/4{margin-bottom:-25%!important}.lg\:-ml-1\/4{margin-left:-25%!important}.lg\:-mt-2\/4{margin-top:-50%!important}.lg\:-mr-2\/4{margin-right:-50%!important}.lg\:-mb-2\/4{margin-bottom:-50%!important}.lg\:-ml-2\/4{margin-left:-50%!important}.lg\:-mt-3\/4{margin-top:-75%!important}.lg\:-mr-3\/4{margin-right:-75%!important}.lg\:-mb-3\/4{margin-bottom:-75%!important}.lg\:-ml-3\/4{margin-left:-75%!important}.lg\:-mt-1\/5{margin-top:-20%!important}.lg\:-mr-1\/5{margin-right:-20%!important}.lg\:-mb-1\/5{margin-bottom:-20%!important}.lg\:-ml-1\/5{margin-left:-20%!important}.lg\:-mt-2\/5{margin-top:-40%!important}.lg\:-mr-2\/5{margin-right:-40%!important}.lg\:-mb-2\/5{margin-bottom:-40%!important}.lg\:-ml-2\/5{margin-left:-40%!important}.lg\:-mt-3\/5{margin-top:-60%!important}.lg\:-mr-3\/5{margin-right:-60%!important}.lg\:-mb-3\/5{margin-bottom:-60%!important}.lg\:-ml-3\/5{margin-left:-60%!important}.lg\:-mt-4\/5{margin-top:-80%!important}.lg\:-mr-4\/5{margin-right:-80%!important}.lg\:-mb-4\/5{margin-bottom:-80%!important}.lg\:-ml-4\/5{margin-left:-80%!important}.lg\:-mt-1\/6{margin-top:-16.66667%!important}.lg\:-mr-1\/6{margin-right:-16.66667%!important}.lg\:-mb-1\/6{margin-bottom:-16.66667%!important}.lg\:-ml-1\/6{margin-left:-16.66667%!important}.lg\:-mt-2\/6{margin-top:-33.33333%!important}.lg\:-mr-2\/6{margin-right:-33.33333%!important}.lg\:-mb-2\/6{margin-bottom:-33.33333%!important}.lg\:-ml-2\/6{margin-left:-33.33333%!important}.lg\:-mt-3\/6{margin-top:-50%!important}.lg\:-mr-3\/6{margin-right:-50%!important}.lg\:-mb-3\/6{margin-bottom:-50%!important}.lg\:-ml-3\/6{margin-left:-50%!important}.lg\:-mt-4\/6{margin-top:-66.66667%!important}.lg\:-mr-4\/6{margin-right:-66.66667%!important}.lg\:-mb-4\/6{margin-bottom:-66.66667%!important}.lg\:-ml-4\/6{margin-left:-66.66667%!important}.lg\:-mt-5\/6{margin-top:-83.33333%!important}.lg\:-mr-5\/6{margin-right:-83.33333%!important}.lg\:-mb-5\/6{margin-bottom:-83.33333%!important}.lg\:-ml-5\/6{margin-left:-83.33333%!important}.lg\:-mt-1\/12{margin-top:-8.33333%!important}.lg\:-mr-1\/12{margin-right:-8.33333%!important}.lg\:-mb-1\/12{margin-bottom:-8.33333%!important}.lg\:-ml-1\/12{margin-left:-8.33333%!important}.lg\:-mt-2\/12{margin-top:-16.66667%!important}.lg\:-mr-2\/12{margin-right:-16.66667%!important}.lg\:-mb-2\/12{margin-bottom:-16.66667%!important}.lg\:-ml-2\/12{margin-left:-16.66667%!important}.lg\:-mt-3\/12{margin-top:-25%!important}.lg\:-mr-3\/12{margin-right:-25%!important}.lg\:-mb-3\/12{margin-bottom:-25%!important}.lg\:-ml-3\/12{margin-left:-25%!important}.lg\:-mt-4\/12{margin-top:-33.33333%!important}.lg\:-mr-4\/12{margin-right:-33.33333%!important}.lg\:-mb-4\/12{margin-bottom:-33.33333%!important}.lg\:-ml-4\/12{margin-left:-33.33333%!important}.lg\:-mt-5\/12{margin-top:-41.66667%!important}.lg\:-mr-5\/12{margin-right:-41.66667%!important}.lg\:-mb-5\/12{margin-bottom:-41.66667%!important}.lg\:-ml-5\/12{margin-left:-41.66667%!important}.lg\:-mt-6\/12{margin-top:-50%!important}.lg\:-mr-6\/12{margin-right:-50%!important}.lg\:-mb-6\/12{margin-bottom:-50%!important}.lg\:-ml-6\/12{margin-left:-50%!important}.lg\:-mt-7\/12{margin-top:-58.33333%!important}.lg\:-mr-7\/12{margin-right:-58.33333%!important}.lg\:-mb-7\/12{margin-bottom:-58.33333%!important}.lg\:-ml-7\/12{margin-left:-58.33333%!important}.lg\:-mt-8\/12{margin-top:-66.66667%!important}.lg\:-mr-8\/12{margin-right:-66.66667%!important}.lg\:-mb-8\/12{margin-bottom:-66.66667%!important}.lg\:-ml-8\/12{margin-left:-66.66667%!important}.lg\:-mt-9\/12{margin-top:-75%!important}.lg\:-mr-9\/12{margin-right:-75%!important}.lg\:-mb-9\/12{margin-bottom:-75%!important}.lg\:-ml-9\/12{margin-left:-75%!important}.lg\:-mt-10\/12{margin-top:-83.33333%!important}.lg\:-mr-10\/12{margin-right:-83.33333%!important}.lg\:-mb-10\/12{margin-bottom:-83.33333%!important}.lg\:-ml-10\/12{margin-left:-83.33333%!important}.lg\:-mt-11\/12{margin-top:-91.66667%!important}.lg\:-mr-11\/12{margin-right:-91.66667%!important}.lg\:-mb-11\/12{margin-bottom:-91.66667%!important}.lg\:-ml-11\/12{margin-left:-91.66667%!important}.lg\:-mt-full{margin-top:-100%!important}.lg\:-mr-full{margin-right:-100%!important}.lg\:-mb-full{margin-bottom:-100%!important}.lg\:-ml-full{margin-left:-100%!important}[dir=ltr] .lg\:ltr\:m-0{margin:0!important}[dir=ltr] .lg\:ltr\:m-1{margin:.25rem!important}[dir=ltr] .lg\:ltr\:m-2{margin:.5rem!important}[dir=ltr] .lg\:ltr\:m-3{margin:.75rem!important}[dir=ltr] .lg\:ltr\:m-4{margin:1rem!important}[dir=ltr] .lg\:ltr\:m-5{margin:1.25rem!important}[dir=ltr] .lg\:ltr\:m-6{margin:1.5rem!important}[dir=ltr] .lg\:ltr\:m-7{margin:1.75rem!important}[dir=ltr] .lg\:ltr\:m-8{margin:2rem!important}[dir=ltr] .lg\:ltr\:m-9{margin:2.25rem!important}[dir=ltr] .lg\:ltr\:m-10{margin:2.5rem!important}[dir=ltr] .lg\:ltr\:m-11{margin:2.75rem!important}[dir=ltr] .lg\:ltr\:m-12{margin:3rem!important}[dir=ltr] .lg\:ltr\:m-13{margin:3.25rem!important}[dir=ltr] .lg\:ltr\:m-14{margin:3.5rem!important}[dir=ltr] .lg\:ltr\:m-15{margin:3.75rem!important}[dir=ltr] .lg\:ltr\:m-16{margin:4rem!important}[dir=ltr] .lg\:ltr\:m-20{margin:5rem!important}[dir=ltr] .lg\:ltr\:m-24{margin:6rem!important}[dir=ltr] .lg\:ltr\:m-28{margin:7rem!important}[dir=ltr] .lg\:ltr\:m-32{margin:8rem!important}[dir=ltr] .lg\:ltr\:m-36{margin:9rem!important}[dir=ltr] .lg\:ltr\:m-40{margin:10rem!important}[dir=ltr] .lg\:ltr\:m-48{margin:12rem!important}[dir=ltr] .lg\:ltr\:m-56{margin:14rem!important}[dir=ltr] .lg\:ltr\:m-60{margin:15rem!important}[dir=ltr] .lg\:ltr\:m-64{margin:16rem!important}[dir=ltr] .lg\:ltr\:m-72{margin:18rem!important}[dir=ltr] .lg\:ltr\:m-80{margin:20rem!important}[dir=ltr] .lg\:ltr\:m-96{margin:24rem!important}[dir=ltr] .lg\:ltr\:m-auto{margin:auto!important}[dir=ltr] .lg\:ltr\:m-px{margin:1px!important}[dir=ltr] .lg\:ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .lg\:ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .lg\:ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .lg\:ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .lg\:ltr\:m-1\/2{margin:50%!important}[dir=ltr] .lg\:ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .lg\:ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .lg\:ltr\:m-1\/4{margin:25%!important}[dir=ltr] .lg\:ltr\:m-2\/4{margin:50%!important}[dir=ltr] .lg\:ltr\:m-3\/4{margin:75%!important}[dir=ltr] .lg\:ltr\:m-1\/5{margin:20%!important}[dir=ltr] .lg\:ltr\:m-2\/5{margin:40%!important}[dir=ltr] .lg\:ltr\:m-3\/5{margin:60%!important}[dir=ltr] .lg\:ltr\:m-4\/5{margin:80%!important}[dir=ltr] .lg\:ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .lg\:ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .lg\:ltr\:m-3\/6{margin:50%!important}[dir=ltr] .lg\:ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .lg\:ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .lg\:ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .lg\:ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .lg\:ltr\:m-3\/12{margin:25%!important}[dir=ltr] .lg\:ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .lg\:ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .lg\:ltr\:m-6\/12{margin:50%!important}[dir=ltr] .lg\:ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .lg\:ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .lg\:ltr\:m-9\/12{margin:75%!important}[dir=ltr] .lg\:ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .lg\:ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .lg\:ltr\:m-full{margin:100%!important}[dir=ltr] .lg\:ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .lg\:ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .lg\:ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .lg\:ltr\:-m-4{margin:-1rem!important}[dir=ltr] .lg\:ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .lg\:ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .lg\:ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .lg\:ltr\:-m-8{margin:-2rem!important}[dir=ltr] .lg\:ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .lg\:ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .lg\:ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .lg\:ltr\:-m-12{margin:-3rem!important}[dir=ltr] .lg\:ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .lg\:ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .lg\:ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .lg\:ltr\:-m-16{margin:-4rem!important}[dir=ltr] .lg\:ltr\:-m-20{margin:-5rem!important}[dir=ltr] .lg\:ltr\:-m-24{margin:-6rem!important}[dir=ltr] .lg\:ltr\:-m-28{margin:-7rem!important}[dir=ltr] .lg\:ltr\:-m-32{margin:-8rem!important}[dir=ltr] .lg\:ltr\:-m-36{margin:-9rem!important}[dir=ltr] .lg\:ltr\:-m-40{margin:-10rem!important}[dir=ltr] .lg\:ltr\:-m-48{margin:-12rem!important}[dir=ltr] .lg\:ltr\:-m-56{margin:-14rem!important}[dir=ltr] .lg\:ltr\:-m-60{margin:-15rem!important}[dir=ltr] .lg\:ltr\:-m-64{margin:-16rem!important}[dir=ltr] .lg\:ltr\:-m-72{margin:-18rem!important}[dir=ltr] .lg\:ltr\:-m-80{margin:-20rem!important}[dir=ltr] .lg\:ltr\:-m-96{margin:-24rem!important}[dir=ltr] .lg\:ltr\:-m-px{margin:-1px!important}[dir=ltr] .lg\:ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .lg\:ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .lg\:ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .lg\:ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .lg\:ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .lg\:ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .lg\:ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .lg\:ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .lg\:ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .lg\:ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .lg\:ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .lg\:ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .lg\:ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .lg\:ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .lg\:ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .lg\:ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .lg\:ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .lg\:ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .lg\:ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .lg\:ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .lg\:ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .lg\:ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .lg\:ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .lg\:ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .lg\:ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .lg\:ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .lg\:ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .lg\:ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .lg\:ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .lg\:ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .lg\:ltr\:-m-full{margin:-100%!important}[dir=ltr] .lg\:ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .lg\:ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .lg\:ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .lg\:ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .lg\:ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .lg\:ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .lg\:ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .lg\:ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .lg\:ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .lg\:ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .lg\:ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .lg\:ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .lg\:ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .lg\:ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .lg\:ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .lg\:ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .lg\:ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .lg\:ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .lg\:ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .lg\:ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .lg\:ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .lg\:ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .lg\:ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .lg\:ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .lg\:ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .lg\:ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .lg\:ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .lg\:ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .lg\:ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .lg\:ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .lg\:ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .lg\:ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .lg\:ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .lg\:ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .lg\:ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .lg\:ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .lg\:ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .lg\:ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .lg\:ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .lg\:ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .lg\:ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .lg\:ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .lg\:ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .lg\:ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .lg\:ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .lg\:ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .lg\:ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .lg\:ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .lg\:ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .lg\:ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .lg\:ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .lg\:ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .lg\:ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .lg\:ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .lg\:ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .lg\:ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .lg\:ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .lg\:ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .lg\:ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .lg\:ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .lg\:ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .lg\:ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .lg\:ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .lg\:ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .lg\:ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .lg\:ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .lg\:ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .lg\:ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .lg\:ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .lg\:ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .lg\:ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .lg\:ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .lg\:ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .lg\:ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .lg\:ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .lg\:ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .lg\:ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .lg\:ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .lg\:ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .lg\:ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .lg\:ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .lg\:ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .lg\:ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .lg\:ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .lg\:ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .lg\:ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .lg\:ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .lg\:ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .lg\:ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .lg\:ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .lg\:ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .lg\:ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .lg\:ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .lg\:ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .lg\:ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .lg\:ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .lg\:ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .lg\:ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .lg\:ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .lg\:ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .lg\:ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .lg\:ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .lg\:ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .lg\:ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .lg\:ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .lg\:ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .lg\:ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .lg\:ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .lg\:ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .lg\:ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .lg\:ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .lg\:ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .lg\:ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .lg\:ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .lg\:ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .lg\:ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .lg\:ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .lg\:ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .lg\:ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .lg\:ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .lg\:ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .lg\:ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .lg\:ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .lg\:ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .lg\:ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .lg\:ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .lg\:ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .lg\:ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .lg\:ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .lg\:ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .lg\:ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .lg\:ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .lg\:ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .lg\:ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .lg\:ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .lg\:ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .lg\:ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .lg\:ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .lg\:ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .lg\:ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .lg\:ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .lg\:ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .lg\:ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .lg\:ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .lg\:ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .lg\:ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .lg\:ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .lg\:ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .lg\:ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .lg\:ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .lg\:ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .lg\:ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .lg\:ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .lg\:ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .lg\:ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .lg\:ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .lg\:ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .lg\:ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .lg\:ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .lg\:ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .lg\:ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .lg\:ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .lg\:ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .lg\:ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .lg\:ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .lg\:ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .lg\:ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .lg\:ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .lg\:ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .lg\:ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .lg\:ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .lg\:ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .lg\:ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .lg\:ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .lg\:ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .lg\:ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .lg\:ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .lg\:ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .lg\:ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .lg\:ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .lg\:ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .lg\:ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .lg\:ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .lg\:ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .lg\:ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .lg\:ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .lg\:ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .lg\:ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .lg\:ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .lg\:ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .lg\:ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .lg\:ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .lg\:ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .lg\:ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .lg\:ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .lg\:ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .lg\:ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .lg\:ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .lg\:ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .lg\:ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .lg\:ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .lg\:ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .lg\:ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .lg\:ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .lg\:ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .lg\:ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .lg\:ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .lg\:ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .lg\:ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .lg\:ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .lg\:ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .lg\:ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .lg\:ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .lg\:ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .lg\:ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .lg\:ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .lg\:ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .lg\:ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .lg\:ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .lg\:ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .lg\:ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .lg\:ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .lg\:ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .lg\:ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .lg\:ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .lg\:ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .lg\:ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .lg\:ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .lg\:ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .lg\:ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .lg\:ltr\:mt-0{margin-top:0!important}[dir=ltr] .lg\:ltr\:mr-0{margin-right:0!important}[dir=ltr] .lg\:ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .lg\:ltr\:ml-0{margin-left:0!important}[dir=ltr] .lg\:ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .lg\:ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .lg\:ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .lg\:ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .lg\:ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .lg\:ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .lg\:ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .lg\:ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .lg\:ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .lg\:ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .lg\:ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .lg\:ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .lg\:ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .lg\:ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .lg\:ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .lg\:ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .lg\:ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .lg\:ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .lg\:ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .lg\:ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .lg\:ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .lg\:ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .lg\:ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .lg\:ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .lg\:ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .lg\:ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .lg\:ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .lg\:ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .lg\:ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .lg\:ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .lg\:ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .lg\:ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .lg\:ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .lg\:ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .lg\:ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .lg\:ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .lg\:ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .lg\:ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .lg\:ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .lg\:ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .lg\:ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .lg\:ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .lg\:ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .lg\:ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .lg\:ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .lg\:ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .lg\:ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .lg\:ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .lg\:ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .lg\:ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .lg\:ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .lg\:ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .lg\:ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .lg\:ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .lg\:ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .lg\:ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .lg\:ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .lg\:ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .lg\:ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .lg\:ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .lg\:ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .lg\:ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .lg\:ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .lg\:ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .lg\:ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .lg\:ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .lg\:ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .lg\:ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .lg\:ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .lg\:ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .lg\:ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .lg\:ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .lg\:ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .lg\:ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .lg\:ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .lg\:ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .lg\:ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .lg\:ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .lg\:ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .lg\:ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .lg\:ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .lg\:ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .lg\:ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .lg\:ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .lg\:ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .lg\:ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .lg\:ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .lg\:ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .lg\:ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .lg\:ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .lg\:ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .lg\:ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .lg\:ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .lg\:ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .lg\:ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .lg\:ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .lg\:ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .lg\:ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .lg\:ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .lg\:ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .lg\:ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .lg\:ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .lg\:ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .lg\:ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .lg\:ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .lg\:ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .lg\:ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .lg\:ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .lg\:ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .lg\:ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .lg\:ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .lg\:ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .lg\:ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .lg\:ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .lg\:ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .lg\:ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .lg\:ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .lg\:ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .lg\:ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .lg\:ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .lg\:ltr\:mt-px{margin-top:1px!important}[dir=ltr] .lg\:ltr\:mr-px{margin-right:1px!important}[dir=ltr] .lg\:ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .lg\:ltr\:ml-px{margin-left:1px!important}[dir=ltr] .lg\:ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .lg\:ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .lg\:ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .lg\:ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .lg\:ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .lg\:ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .lg\:ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .lg\:ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .lg\:ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .lg\:ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .lg\:ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .lg\:ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .lg\:ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .lg\:ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .lg\:ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .lg\:ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .lg\:ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .lg\:ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .lg\:ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .lg\:ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .lg\:ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .lg\:ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .lg\:ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .lg\:ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .lg\:ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .lg\:ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .lg\:ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .lg\:ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .lg\:ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .lg\:ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .lg\:ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .lg\:ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .lg\:ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .lg\:ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .lg\:ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .lg\:ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .lg\:ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .lg\:ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .lg\:ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .lg\:ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .lg\:ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .lg\:ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .lg\:ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .lg\:ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .lg\:ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .lg\:ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .lg\:ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .lg\:ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .lg\:ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .lg\:ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .lg\:ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .lg\:ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .lg\:ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .lg\:ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .lg\:ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .lg\:ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .lg\:ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .lg\:ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .lg\:ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .lg\:ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .lg\:ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .lg\:ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .lg\:ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .lg\:ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .lg\:ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .lg\:ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .lg\:ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .lg\:ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .lg\:ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .lg\:ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .lg\:ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .lg\:ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .lg\:ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .lg\:ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .lg\:ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .lg\:ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .lg\:ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .lg\:ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .lg\:ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .lg\:ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .lg\:ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .lg\:ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .lg\:ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .lg\:ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .lg\:ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .lg\:ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .lg\:ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .lg\:ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .lg\:ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .lg\:ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .lg\:ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .lg\:ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .lg\:ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .lg\:ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .lg\:ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .lg\:ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .lg\:ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .lg\:ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .lg\:ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .lg\:ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .lg\:ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .lg\:ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .lg\:ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .lg\:ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .lg\:ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .lg\:ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .lg\:ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .lg\:ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .lg\:ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .lg\:ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .lg\:ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .lg\:ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .lg\:ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .lg\:ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .lg\:ltr\:mt-full{margin-top:100%!important}[dir=ltr] .lg\:ltr\:mr-full{margin-right:100%!important}[dir=ltr] .lg\:ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .lg\:ltr\:ml-full{margin-left:100%!important}[dir=ltr] .lg\:ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .lg\:ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .lg\:ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .lg\:ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .lg\:ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .lg\:ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .lg\:ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .lg\:ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .lg\:ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .lg\:ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .lg\:ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .lg\:ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .lg\:ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .lg\:ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .lg\:ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .lg\:ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .lg\:ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .lg\:ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .lg\:ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .lg\:ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .lg\:ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .lg\:ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .lg\:ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .lg\:ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .lg\:ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .lg\:ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .lg\:ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .lg\:ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .lg\:ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .lg\:ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .lg\:ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .lg\:ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .lg\:ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .lg\:ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .lg\:ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .lg\:ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .lg\:ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .lg\:ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .lg\:ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .lg\:ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .lg\:ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .lg\:ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .lg\:ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .lg\:ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .lg\:ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .lg\:ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .lg\:ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .lg\:ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .lg\:ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .lg\:ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .lg\:ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .lg\:ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .lg\:ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .lg\:ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .lg\:ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .lg\:ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .lg\:ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .lg\:ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .lg\:ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .lg\:ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .lg\:ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .lg\:ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .lg\:ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .lg\:ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .lg\:ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .lg\:ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .lg\:ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .lg\:ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .lg\:ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .lg\:ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .lg\:ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .lg\:ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .lg\:ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .lg\:ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .lg\:ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .lg\:ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .lg\:ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .lg\:ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .lg\:ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .lg\:ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .lg\:ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .lg\:ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .lg\:ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .lg\:ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .lg\:ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .lg\:ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .lg\:ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .lg\:ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .lg\:ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .lg\:ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .lg\:ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .lg\:ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .lg\:ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .lg\:ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .lg\:ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .lg\:ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .lg\:ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .lg\:ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .lg\:ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .lg\:ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .lg\:ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .lg\:ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .lg\:ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .lg\:ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .lg\:ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .lg\:ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .lg\:ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .lg\:ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .lg\:ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .lg\:ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .lg\:ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .lg\:ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .lg\:ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .lg\:ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .lg\:ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .lg\:ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .lg\:ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .lg\:ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .lg\:ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .lg\:ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .lg\:ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .lg\:ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .lg\:ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .lg\:ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .lg\:ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .lg\:ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .lg\:ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .lg\:ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .lg\:ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .lg\:ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .lg\:ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .lg\:ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .lg\:ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .lg\:ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .lg\:ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .lg\:ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .lg\:ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .lg\:ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .lg\:ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .lg\:ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .lg\:ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .lg\:ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .lg\:ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .lg\:ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .lg\:ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .lg\:ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .lg\:ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .lg\:ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .lg\:ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .lg\:ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .lg\:ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .lg\:ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .lg\:ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .lg\:ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .lg\:ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .lg\:ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .lg\:ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .lg\:ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .lg\:ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .lg\:ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .lg\:ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .lg\:ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .lg\:ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .lg\:ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .lg\:ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .lg\:ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .lg\:ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .lg\:ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .lg\:ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .lg\:ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .lg\:ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .lg\:ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .lg\:ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .lg\:ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .lg\:ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .lg\:ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .lg\:ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .lg\:ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .lg\:ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .lg\:ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .lg\:ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .lg\:ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .lg\:ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .lg\:ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .lg\:ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .lg\:ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .lg\:ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .lg\:ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .lg\:ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .lg\:ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .lg\:ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .lg\:ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .lg\:ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .lg\:ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .lg\:ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .lg\:ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .lg\:ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .lg\:ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .lg\:ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .lg\:ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .lg\:ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .lg\:ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .lg\:ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .lg\:ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .lg\:ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .lg\:ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .lg\:ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .lg\:ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .lg\:ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .lg\:ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .lg\:ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .lg\:ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .lg\:rtl\:m-0{margin:0!important}[dir=rtl] .lg\:rtl\:m-1{margin:.25rem!important}[dir=rtl] .lg\:rtl\:m-2{margin:.5rem!important}[dir=rtl] .lg\:rtl\:m-3{margin:.75rem!important}[dir=rtl] .lg\:rtl\:m-4{margin:1rem!important}[dir=rtl] .lg\:rtl\:m-5{margin:1.25rem!important}[dir=rtl] .lg\:rtl\:m-6{margin:1.5rem!important}[dir=rtl] .lg\:rtl\:m-7{margin:1.75rem!important}[dir=rtl] .lg\:rtl\:m-8{margin:2rem!important}[dir=rtl] .lg\:rtl\:m-9{margin:2.25rem!important}[dir=rtl] .lg\:rtl\:m-10{margin:2.5rem!important}[dir=rtl] .lg\:rtl\:m-11{margin:2.75rem!important}[dir=rtl] .lg\:rtl\:m-12{margin:3rem!important}[dir=rtl] .lg\:rtl\:m-13{margin:3.25rem!important}[dir=rtl] .lg\:rtl\:m-14{margin:3.5rem!important}[dir=rtl] .lg\:rtl\:m-15{margin:3.75rem!important}[dir=rtl] .lg\:rtl\:m-16{margin:4rem!important}[dir=rtl] .lg\:rtl\:m-20{margin:5rem!important}[dir=rtl] .lg\:rtl\:m-24{margin:6rem!important}[dir=rtl] .lg\:rtl\:m-28{margin:7rem!important}[dir=rtl] .lg\:rtl\:m-32{margin:8rem!important}[dir=rtl] .lg\:rtl\:m-36{margin:9rem!important}[dir=rtl] .lg\:rtl\:m-40{margin:10rem!important}[dir=rtl] .lg\:rtl\:m-48{margin:12rem!important}[dir=rtl] .lg\:rtl\:m-56{margin:14rem!important}[dir=rtl] .lg\:rtl\:m-60{margin:15rem!important}[dir=rtl] .lg\:rtl\:m-64{margin:16rem!important}[dir=rtl] .lg\:rtl\:m-72{margin:18rem!important}[dir=rtl] .lg\:rtl\:m-80{margin:20rem!important}[dir=rtl] .lg\:rtl\:m-96{margin:24rem!important}[dir=rtl] .lg\:rtl\:m-auto{margin:auto!important}[dir=rtl] .lg\:rtl\:m-px{margin:1px!important}[dir=rtl] .lg\:rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .lg\:rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .lg\:rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .lg\:rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .lg\:rtl\:m-1\/2{margin:50%!important}[dir=rtl] .lg\:rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .lg\:rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .lg\:rtl\:m-1\/4{margin:25%!important}[dir=rtl] .lg\:rtl\:m-2\/4{margin:50%!important}[dir=rtl] .lg\:rtl\:m-3\/4{margin:75%!important}[dir=rtl] .lg\:rtl\:m-1\/5{margin:20%!important}[dir=rtl] .lg\:rtl\:m-2\/5{margin:40%!important}[dir=rtl] .lg\:rtl\:m-3\/5{margin:60%!important}[dir=rtl] .lg\:rtl\:m-4\/5{margin:80%!important}[dir=rtl] .lg\:rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .lg\:rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .lg\:rtl\:m-3\/6{margin:50%!important}[dir=rtl] .lg\:rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .lg\:rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .lg\:rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .lg\:rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .lg\:rtl\:m-3\/12{margin:25%!important}[dir=rtl] .lg\:rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .lg\:rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .lg\:rtl\:m-6\/12{margin:50%!important}[dir=rtl] .lg\:rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .lg\:rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .lg\:rtl\:m-9\/12{margin:75%!important}[dir=rtl] .lg\:rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .lg\:rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .lg\:rtl\:m-full{margin:100%!important}[dir=rtl] .lg\:rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .lg\:rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .lg\:rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .lg\:rtl\:-m-4{margin:-1rem!important}[dir=rtl] .lg\:rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .lg\:rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .lg\:rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .lg\:rtl\:-m-8{margin:-2rem!important}[dir=rtl] .lg\:rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .lg\:rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .lg\:rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .lg\:rtl\:-m-12{margin:-3rem!important}[dir=rtl] .lg\:rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .lg\:rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .lg\:rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .lg\:rtl\:-m-16{margin:-4rem!important}[dir=rtl] .lg\:rtl\:-m-20{margin:-5rem!important}[dir=rtl] .lg\:rtl\:-m-24{margin:-6rem!important}[dir=rtl] .lg\:rtl\:-m-28{margin:-7rem!important}[dir=rtl] .lg\:rtl\:-m-32{margin:-8rem!important}[dir=rtl] .lg\:rtl\:-m-36{margin:-9rem!important}[dir=rtl] .lg\:rtl\:-m-40{margin:-10rem!important}[dir=rtl] .lg\:rtl\:-m-48{margin:-12rem!important}[dir=rtl] .lg\:rtl\:-m-56{margin:-14rem!important}[dir=rtl] .lg\:rtl\:-m-60{margin:-15rem!important}[dir=rtl] .lg\:rtl\:-m-64{margin:-16rem!important}[dir=rtl] .lg\:rtl\:-m-72{margin:-18rem!important}[dir=rtl] .lg\:rtl\:-m-80{margin:-20rem!important}[dir=rtl] .lg\:rtl\:-m-96{margin:-24rem!important}[dir=rtl] .lg\:rtl\:-m-px{margin:-1px!important}[dir=rtl] .lg\:rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .lg\:rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .lg\:rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .lg\:rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .lg\:rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .lg\:rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .lg\:rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .lg\:rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .lg\:rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .lg\:rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .lg\:rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .lg\:rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .lg\:rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .lg\:rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .lg\:rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .lg\:rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .lg\:rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .lg\:rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .lg\:rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .lg\:rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .lg\:rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .lg\:rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .lg\:rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .lg\:rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .lg\:rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .lg\:rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .lg\:rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .lg\:rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .lg\:rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .lg\:rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .lg\:rtl\:-m-full{margin:-100%!important}[dir=rtl] .lg\:rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .lg\:rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .lg\:rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .lg\:rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .lg\:rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .lg\:rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .lg\:rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .lg\:rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .lg\:rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .lg\:rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .lg\:rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .lg\:rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .lg\:rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .lg\:rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .lg\:rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .lg\:rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .lg\:rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .lg\:rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .lg\:rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .lg\:rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .lg\:rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .lg\:rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .lg\:rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .lg\:rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .lg\:rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .lg\:rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .lg\:rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .lg\:rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .lg\:rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .lg\:rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .lg\:rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .lg\:rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .lg\:rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .lg\:rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .lg\:rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .lg\:rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .lg\:rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .lg\:rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .lg\:rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .lg\:rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .lg\:rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .lg\:rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .lg\:rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .lg\:rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .lg\:rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .lg\:rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .lg\:rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .lg\:rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .lg\:rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .lg\:rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .lg\:rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .lg\:rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .lg\:rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .lg\:rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .lg\:rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .lg\:rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .lg\:rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .lg\:rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .lg\:rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .lg\:rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .lg\:rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .lg\:rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .lg\:rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .lg\:rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .lg\:rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .lg\:rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .lg\:rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .lg\:rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .lg\:rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .lg\:rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .lg\:rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .lg\:rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .lg\:rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .lg\:rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .lg\:rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .lg\:rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .lg\:rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .lg\:rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .lg\:rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .lg\:rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .lg\:rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .lg\:rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .lg\:rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .lg\:rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .lg\:rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .lg\:rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .lg\:rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .lg\:rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .lg\:rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .lg\:rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .lg\:rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .lg\:rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .lg\:rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .lg\:rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .lg\:rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .lg\:rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .lg\:rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .lg\:rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .lg\:rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .lg\:rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .lg\:rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .lg\:rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .lg\:rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .lg\:rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .lg\:rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .lg\:rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .lg\:rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .lg\:rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .lg\:rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .lg\:rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .lg\:rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .lg\:rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .lg\:rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .lg\:rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .lg\:rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .lg\:rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .lg\:rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .lg\:rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .lg\:rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .lg\:rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .lg\:rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .lg\:rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .lg\:rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .lg\:rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .lg\:rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .lg\:rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .lg\:rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .lg\:rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .lg\:rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .lg\:rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .lg\:rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .lg\:rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .lg\:rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .lg\:rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .lg\:rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .lg\:rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .lg\:rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .lg\:rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .lg\:rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .lg\:rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .lg\:rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .lg\:rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .lg\:rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .lg\:rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .lg\:rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .lg\:rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .lg\:rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .lg\:rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .lg\:rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .lg\:rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .lg\:rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .lg\:rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .lg\:rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .lg\:rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .lg\:rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .lg\:rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .lg\:rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .lg\:rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .lg\:rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .lg\:rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .lg\:rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .lg\:rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .lg\:rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .lg\:rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .lg\:rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .lg\:rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .lg\:rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .lg\:rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .lg\:rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .lg\:rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .lg\:rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .lg\:rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .lg\:rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .lg\:rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .lg\:rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .lg\:rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .lg\:rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .lg\:rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .lg\:rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .lg\:rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .lg\:rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .lg\:rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .lg\:rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .lg\:rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .lg\:rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .lg\:rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .lg\:rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .lg\:rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .lg\:rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .lg\:rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .lg\:rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .lg\:rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .lg\:rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .lg\:rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .lg\:rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .lg\:rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .lg\:rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .lg\:rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .lg\:rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .lg\:rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .lg\:rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .lg\:rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .lg\:rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .lg\:rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .lg\:rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .lg\:rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .lg\:rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .lg\:rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .lg\:rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .lg\:rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .lg\:rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .lg\:rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .lg\:rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .lg\:rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .lg\:rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .lg\:rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .lg\:rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .lg\:rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .lg\:rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .lg\:rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .lg\:rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .lg\:rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .lg\:rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .lg\:rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .lg\:rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .lg\:rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .lg\:rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .lg\:rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .lg\:rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .lg\:rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .lg\:rtl\:mt-0{margin-top:0!important}[dir=rtl] .lg\:rtl\:mr-0{margin-right:0!important}[dir=rtl] .lg\:rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .lg\:rtl\:ml-0{margin-left:0!important}[dir=rtl] .lg\:rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .lg\:rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .lg\:rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .lg\:rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .lg\:rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .lg\:rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .lg\:rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .lg\:rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .lg\:rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .lg\:rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .lg\:rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .lg\:rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .lg\:rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .lg\:rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .lg\:rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .lg\:rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .lg\:rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .lg\:rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .lg\:rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .lg\:rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .lg\:rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .lg\:rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .lg\:rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .lg\:rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .lg\:rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .lg\:rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .lg\:rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .lg\:rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .lg\:rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .lg\:rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .lg\:rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .lg\:rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .lg\:rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .lg\:rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .lg\:rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .lg\:rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .lg\:rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .lg\:rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .lg\:rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .lg\:rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .lg\:rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .lg\:rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .lg\:rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .lg\:rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .lg\:rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .lg\:rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .lg\:rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .lg\:rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .lg\:rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .lg\:rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .lg\:rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .lg\:rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .lg\:rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .lg\:rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .lg\:rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .lg\:rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .lg\:rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .lg\:rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .lg\:rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .lg\:rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .lg\:rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .lg\:rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .lg\:rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .lg\:rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .lg\:rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .lg\:rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .lg\:rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .lg\:rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .lg\:rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .lg\:rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .lg\:rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .lg\:rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .lg\:rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .lg\:rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .lg\:rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .lg\:rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .lg\:rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .lg\:rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .lg\:rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .lg\:rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .lg\:rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .lg\:rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .lg\:rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .lg\:rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .lg\:rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .lg\:rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .lg\:rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .lg\:rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .lg\:rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .lg\:rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .lg\:rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .lg\:rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .lg\:rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .lg\:rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .lg\:rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .lg\:rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .lg\:rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .lg\:rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .lg\:rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .lg\:rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .lg\:rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .lg\:rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .lg\:rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .lg\:rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .lg\:rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .lg\:rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .lg\:rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .lg\:rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .lg\:rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .lg\:rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .lg\:rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .lg\:rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .lg\:rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .lg\:rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .lg\:rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .lg\:rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .lg\:rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .lg\:rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .lg\:rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .lg\:rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .lg\:rtl\:mt-px{margin-top:1px!important}[dir=rtl] .lg\:rtl\:mr-px{margin-right:1px!important}[dir=rtl] .lg\:rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .lg\:rtl\:ml-px{margin-left:1px!important}[dir=rtl] .lg\:rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .lg\:rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .lg\:rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .lg\:rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .lg\:rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .lg\:rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .lg\:rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .lg\:rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .lg\:rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .lg\:rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .lg\:rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .lg\:rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .lg\:rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .lg\:rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .lg\:rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .lg\:rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .lg\:rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .lg\:rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .lg\:rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .lg\:rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .lg\:rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .lg\:rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .lg\:rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .lg\:rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .lg\:rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .lg\:rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .lg\:rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .lg\:rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .lg\:rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .lg\:rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .lg\:rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .lg\:rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .lg\:rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .lg\:rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .lg\:rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .lg\:rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .lg\:rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .lg\:rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .lg\:rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .lg\:rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .lg\:rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .lg\:rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .lg\:rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .lg\:rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .lg\:rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .lg\:rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .lg\:rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .lg\:rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .lg\:rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .lg\:rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .lg\:rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .lg\:rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .lg\:rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .lg\:rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .lg\:rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .lg\:rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .lg\:rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .lg\:rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .lg\:rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .lg\:rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .lg\:rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .lg\:rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .lg\:rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .lg\:rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .lg\:rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .lg\:rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .lg\:rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .lg\:rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .lg\:rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .lg\:rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .lg\:rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .lg\:rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .lg\:rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .lg\:rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .lg\:rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .lg\:rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .lg\:rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .lg\:rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .lg\:rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .lg\:rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .lg\:rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .lg\:rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .lg\:rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .lg\:rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .lg\:rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .lg\:rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .lg\:rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .lg\:rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .lg\:rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .lg\:rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .lg\:rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .lg\:rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .lg\:rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .lg\:rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .lg\:rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .lg\:rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .lg\:rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .lg\:rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .lg\:rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .lg\:rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .lg\:rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .lg\:rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .lg\:rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .lg\:rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .lg\:rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .lg\:rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .lg\:rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .lg\:rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .lg\:rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .lg\:rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .lg\:rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .lg\:rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .lg\:rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .lg\:rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .lg\:rtl\:mt-full{margin-top:100%!important}[dir=rtl] .lg\:rtl\:mr-full{margin-right:100%!important}[dir=rtl] .lg\:rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .lg\:rtl\:ml-full{margin-left:100%!important}[dir=rtl] .lg\:rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .lg\:rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .lg\:rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .lg\:rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .lg\:rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .lg\:rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .lg\:rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .lg\:rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .lg\:rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .lg\:rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .lg\:rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .lg\:rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .lg\:rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .lg\:rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .lg\:rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .lg\:rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .lg\:rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .lg\:rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .lg\:rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .lg\:rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .lg\:rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .lg\:rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .lg\:rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .lg\:rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .lg\:rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .lg\:rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .lg\:rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .lg\:rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .lg\:rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .lg\:rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .lg\:rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .lg\:rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .lg\:rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .lg\:rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .lg\:rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .lg\:rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .lg\:rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .lg\:rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .lg\:rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .lg\:rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .lg\:rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .lg\:rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .lg\:rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .lg\:rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .lg\:rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .lg\:rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .lg\:rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .lg\:rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .lg\:rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .lg\:rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .lg\:rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .lg\:rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .lg\:rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .lg\:rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .lg\:rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .lg\:rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .lg\:rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .lg\:rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .lg\:rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .lg\:rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .lg\:rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .lg\:rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .lg\:rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .lg\:rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .lg\:rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .lg\:rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .lg\:rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .lg\:rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .lg\:rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .lg\:rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .lg\:rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .lg\:rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .lg\:rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .lg\:rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .lg\:rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .lg\:rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .lg\:rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .lg\:rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .lg\:rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .lg\:rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .lg\:rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .lg\:rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .lg\:rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .lg\:rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .lg\:rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .lg\:rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .lg\:rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .lg\:rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .lg\:rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .lg\:rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .lg\:rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .lg\:rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .lg\:rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .lg\:rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .lg\:rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .lg\:rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .lg\:rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .lg\:rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .lg\:rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .lg\:rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .lg\:rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .lg\:rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .lg\:rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .lg\:rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .lg\:rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .lg\:rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .lg\:rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .lg\:rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .lg\:rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .lg\:rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .lg\:rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .lg\:rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .lg\:rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .lg\:rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .lg\:rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .lg\:rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .lg\:rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .lg\:rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .lg\:rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .lg\:rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .lg\:rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .lg\:rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .lg\:rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .lg\:rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .lg\:rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .lg\:rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .lg\:rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .lg\:rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .lg\:rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .lg\:rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .lg\:rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .lg\:rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .lg\:rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .lg\:rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .lg\:rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .lg\:rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .lg\:rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .lg\:rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .lg\:rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .lg\:rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .lg\:rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .lg\:rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .lg\:rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .lg\:rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .lg\:rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .lg\:rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .lg\:rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .lg\:rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .lg\:rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .lg\:rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .lg\:rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .lg\:rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .lg\:rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .lg\:rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .lg\:rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .lg\:rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .lg\:rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .lg\:rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .lg\:rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .lg\:rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .lg\:rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .lg\:rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .lg\:rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .lg\:rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .lg\:rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .lg\:rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .lg\:rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .lg\:rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .lg\:rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .lg\:rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .lg\:rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .lg\:rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .lg\:rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .lg\:rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .lg\:rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .lg\:rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .lg\:rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .lg\:rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .lg\:rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .lg\:rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .lg\:rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .lg\:rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .lg\:rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .lg\:rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .lg\:rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .lg\:rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .lg\:rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .lg\:rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .lg\:rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .lg\:rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .lg\:rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .lg\:rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .lg\:rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .lg\:rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .lg\:rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .lg\:rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .lg\:rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .lg\:rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .lg\:rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .lg\:rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .lg\:rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .lg\:rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .lg\:rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .lg\:rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .lg\:rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .lg\:rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .lg\:rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .lg\:rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .lg\:rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .lg\:rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .lg\:rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .lg\:rtl\:-ml-full{margin-left:-100%!important}.lg\:max-h-0{max-height:0!important}.lg\:max-h-1{max-height:.25rem!important}.lg\:max-h-2{max-height:.5rem!important}.lg\:max-h-3{max-height:.75rem!important}.lg\:max-h-4{max-height:1rem!important}.lg\:max-h-5{max-height:1.25rem!important}.lg\:max-h-6{max-height:1.5rem!important}.lg\:max-h-7{max-height:1.75rem!important}.lg\:max-h-8{max-height:2rem!important}.lg\:max-h-9{max-height:2.25rem!important}.lg\:max-h-10{max-height:2.5rem!important}.lg\:max-h-11{max-height:2.75rem!important}.lg\:max-h-12{max-height:3rem!important}.lg\:max-h-13{max-height:3.25rem!important}.lg\:max-h-14{max-height:3.5rem!important}.lg\:max-h-15{max-height:3.75rem!important}.lg\:max-h-16{max-height:4rem!important}.lg\:max-h-20{max-height:5rem!important}.lg\:max-h-24{max-height:6rem!important}.lg\:max-h-28{max-height:7rem!important}.lg\:max-h-32{max-height:8rem!important}.lg\:max-h-36{max-height:9rem!important}.lg\:max-h-40{max-height:10rem!important}.lg\:max-h-48{max-height:12rem!important}.lg\:max-h-56{max-height:14rem!important}.lg\:max-h-60{max-height:15rem!important}.lg\:max-h-64{max-height:16rem!important}.lg\:max-h-72{max-height:18rem!important}.lg\:max-h-80{max-height:20rem!important}.lg\:max-h-96{max-height:24rem!important}.lg\:max-h-screen{max-height:100vh!important}.lg\:max-h-px{max-height:1px!important}.lg\:max-h-0\.5{max-height:.125rem!important}.lg\:max-h-1\.5{max-height:.375rem!important}.lg\:max-h-2\.5{max-height:.625rem!important}.lg\:max-h-3\.5{max-height:.875rem!important}.lg\:max-h-1\/2{max-height:50%!important}.lg\:max-h-1\/3{max-height:33.333333%!important}.lg\:max-h-2\/3{max-height:66.666667%!important}.lg\:max-h-1\/4{max-height:25%!important}.lg\:max-h-2\/4{max-height:50%!important}.lg\:max-h-3\/4{max-height:75%!important}.lg\:max-h-1\/5{max-height:20%!important}.lg\:max-h-2\/5{max-height:40%!important}.lg\:max-h-3\/5{max-height:60%!important}.lg\:max-h-4\/5{max-height:80%!important}.lg\:max-h-1\/6{max-height:16.666667%!important}.lg\:max-h-2\/6{max-height:33.333333%!important}.lg\:max-h-3\/6{max-height:50%!important}.lg\:max-h-4\/6{max-height:66.666667%!important}.lg\:max-h-5\/6{max-height:83.333333%!important}.lg\:max-h-1\/12{max-height:8.333333%!important}.lg\:max-h-2\/12{max-height:16.666667%!important}.lg\:max-h-3\/12{max-height:25%!important}.lg\:max-h-4\/12{max-height:33.333333%!important}.lg\:max-h-5\/12{max-height:41.666667%!important}.lg\:max-h-6\/12{max-height:50%!important}.lg\:max-h-7\/12{max-height:58.333333%!important}.lg\:max-h-8\/12{max-height:66.666667%!important}.lg\:max-h-9\/12{max-height:75%!important}.lg\:max-h-10\/12{max-height:83.333333%!important}.lg\:max-h-11\/12{max-height:91.666667%!important}.lg\:max-h-full{max-height:100%!important}.lg\:max-h-6xl{max-height:6rem!important}.lg\:max-w-none{max-width:none!important}.lg\:max-w-xs{max-width:20rem!important}.lg\:max-w-sm{max-width:24rem!important}.lg\:max-w-md{max-width:28rem!important}.lg\:max-w-lg{max-width:32rem!important}.lg\:max-w-xl{max-width:36rem!important}.lg\:max-w-2xl{max-width:42rem!important}.lg\:max-w-3xl{max-width:48rem!important}.lg\:max-w-4xl{max-width:56rem!important}.lg\:max-w-5xl{max-width:64rem!important}.lg\:max-w-6xl{max-width:72rem!important}.lg\:max-w-7xl{max-width:80rem!important}.lg\:max-w-full{max-width:100%!important}.lg\:max-w-screen-sm{max-width:600px!important}.lg\:max-w-screen-md{max-width:1024px!important}.lg\:max-w-screen-lg{max-width:1280px!important}.lg\:max-w-screen-xl{max-width:1536px!important}.lg\:max-w-screen-2xl{max-width:1400px!important}.lg\:max-w-screen-3xl{max-width:1800px!important}.lg\:max-w-screen-4xl{max-width:2200px!important}.lg\:min-h-0{min-height:0!important}.lg\:min-h-full{min-height:100%!important}.lg\:min-h-screen{min-height:100vh!important}.lg\:min-h-half{min-height:50vh!important}.lg\:min-w-0{min-width:0!important}.lg\:min-w-full{min-width:100%!important}.lg\:object-contain{-o-object-fit:contain!important;object-fit:contain!important}.lg\:object-cover{-o-object-fit:cover!important;object-fit:cover!important}.lg\:object-fill{-o-object-fit:fill!important;object-fit:fill!important}.lg\:object-none{-o-object-fit:none!important;object-fit:none!important}.lg\:object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.lg\:object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.lg\:object-center{-o-object-position:center!important;object-position:center!important}.lg\:object-left{-o-object-position:left!important;object-position:left!important}.lg\:object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.lg\:object-left-top{-o-object-position:left top!important;object-position:left top!important}.lg\:object-right{-o-object-position:right!important;object-position:right!important}.lg\:object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.lg\:object-right-top{-o-object-position:right top!important;object-position:right top!important}.lg\:object-top{-o-object-position:top!important;object-position:top!important}.lg\:opacity-0{opacity:0!important}.lg\:opacity-25{opacity:.25!important}.lg\:opacity-50{opacity:.5!important}.lg\:opacity-75{opacity:.75!important}.lg\:opacity-100{opacity:1!important}.lg\:hover\:opacity-0:hover{opacity:0!important}.lg\:hover\:opacity-25:hover{opacity:.25!important}.lg\:hover\:opacity-50:hover{opacity:.5!important}.lg\:hover\:opacity-75:hover{opacity:.75!important}.lg\:hover\:opacity-100:hover{opacity:1!important}.lg\:focus\:opacity-0:focus{opacity:0!important}.lg\:focus\:opacity-25:focus{opacity:.25!important}.lg\:focus\:opacity-50:focus{opacity:.5!important}.lg\:focus\:opacity-75:focus{opacity:.75!important}.lg\:focus\:opacity-100:focus{opacity:1!important}.lg\:outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.lg\:outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.lg\:outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.lg\:focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.lg\:focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.lg\:focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.lg\:overflow-auto{overflow:auto!important}.lg\:overflow-hidden{overflow:hidden!important}.lg\:overflow-visible{overflow:visible!important}.lg\:overflow-scroll{overflow:scroll!important}.lg\:overflow-x-auto{overflow-x:auto!important}.lg\:overflow-y-auto{overflow-y:auto!important}.lg\:overflow-x-hidden{overflow-x:hidden!important}.lg\:overflow-y-hidden{overflow-y:hidden!important}.lg\:overflow-x-visible{overflow-x:visible!important}.lg\:overflow-y-visible{overflow-y:visible!important}.lg\:overflow-x-scroll{overflow-x:scroll!important}.lg\:overflow-y-scroll{overflow-y:scroll!important}.lg\:scrolling-touch{-webkit-overflow-scrolling:touch!important}.lg\:scrolling-auto{-webkit-overflow-scrolling:auto!important}.lg\:overscroll-auto{overscroll-behavior:auto!important}.lg\:overscroll-contain{overscroll-behavior:contain!important}.lg\:overscroll-none{overscroll-behavior:none!important}.lg\:overscroll-y-auto{overscroll-behavior-y:auto!important}.lg\:overscroll-y-contain{overscroll-behavior-y:contain!important}.lg\:overscroll-y-none{overscroll-behavior-y:none!important}.lg\:overscroll-x-auto{overscroll-behavior-x:auto!important}.lg\:overscroll-x-contain{overscroll-behavior-x:contain!important}.lg\:overscroll-x-none{overscroll-behavior-x:none!important}.lg\:p-0{padding:0!important}.lg\:p-1{padding:.25rem!important}.lg\:p-2{padding:.5rem!important}.lg\:p-3{padding:.75rem!important}.lg\:p-4{padding:1rem!important}.lg\:p-5{padding:1.25rem!important}.lg\:p-6{padding:1.5rem!important}.lg\:p-7{padding:1.75rem!important}.lg\:p-8{padding:2rem!important}.lg\:p-9{padding:2.25rem!important}.lg\:p-10{padding:2.5rem!important}.lg\:p-11{padding:2.75rem!important}.lg\:p-12{padding:3rem!important}.lg\:p-13{padding:3.25rem!important}.lg\:p-14{padding:3.5rem!important}.lg\:p-15{padding:3.75rem!important}.lg\:p-16{padding:4rem!important}.lg\:p-20{padding:5rem!important}.lg\:p-24{padding:6rem!important}.lg\:p-28{padding:7rem!important}.lg\:p-32{padding:8rem!important}.lg\:p-36{padding:9rem!important}.lg\:p-40{padding:10rem!important}.lg\:p-48{padding:12rem!important}.lg\:p-56{padding:14rem!important}.lg\:p-60{padding:15rem!important}.lg\:p-64{padding:16rem!important}.lg\:p-72{padding:18rem!important}.lg\:p-80{padding:20rem!important}.lg\:p-96{padding:24rem!important}.lg\:p-px{padding:1px!important}.lg\:p-0\.5{padding:.125rem!important}.lg\:p-1\.5{padding:.375rem!important}.lg\:p-2\.5{padding:.625rem!important}.lg\:p-3\.5{padding:.875rem!important}.lg\:p-1\/2{padding:50%!important}.lg\:p-1\/3{padding:33.333333%!important}.lg\:p-2\/3{padding:66.666667%!important}.lg\:p-1\/4{padding:25%!important}.lg\:p-2\/4{padding:50%!important}.lg\:p-3\/4{padding:75%!important}.lg\:p-1\/5{padding:20%!important}.lg\:p-2\/5{padding:40%!important}.lg\:p-3\/5{padding:60%!important}.lg\:p-4\/5{padding:80%!important}.lg\:p-1\/6{padding:16.666667%!important}.lg\:p-2\/6{padding:33.333333%!important}.lg\:p-3\/6{padding:50%!important}.lg\:p-4\/6{padding:66.666667%!important}.lg\:p-5\/6{padding:83.333333%!important}.lg\:p-1\/12{padding:8.333333%!important}.lg\:p-2\/12{padding:16.666667%!important}.lg\:p-3\/12{padding:25%!important}.lg\:p-4\/12{padding:33.333333%!important}.lg\:p-5\/12{padding:41.666667%!important}.lg\:p-6\/12{padding:50%!important}.lg\:p-7\/12{padding:58.333333%!important}.lg\:p-8\/12{padding:66.666667%!important}.lg\:p-9\/12{padding:75%!important}.lg\:p-10\/12{padding:83.333333%!important}.lg\:p-11\/12{padding:91.666667%!important}.lg\:p-full{padding:100%!important}.lg\:py-0{padding-bottom:0!important;padding-top:0!important}.lg\:px-0{padding-left:0!important;padding-right:0!important}.lg\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.lg\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.lg\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.lg\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}.lg\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}.lg\:px-4{padding-left:1rem!important;padding-right:1rem!important}.lg\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.lg\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.lg\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.lg\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.lg\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.lg\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}.lg\:px-8{padding-left:2rem!important;padding-right:2rem!important}.lg\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.lg\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.lg\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.lg\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.lg\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.lg\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.lg\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}.lg\:px-12{padding-left:3rem!important;padding-right:3rem!important}.lg\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.lg\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.lg\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.lg\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.lg\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.lg\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.lg\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}.lg\:px-16{padding-left:4rem!important;padding-right:4rem!important}.lg\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}.lg\:px-20{padding-left:5rem!important;padding-right:5rem!important}.lg\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}.lg\:px-24{padding-left:6rem!important;padding-right:6rem!important}.lg\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}.lg\:px-28{padding-left:7rem!important;padding-right:7rem!important}.lg\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}.lg\:px-32{padding-left:8rem!important;padding-right:8rem!important}.lg\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}.lg\:px-36{padding-left:9rem!important;padding-right:9rem!important}.lg\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}.lg\:px-40{padding-left:10rem!important;padding-right:10rem!important}.lg\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}.lg\:px-48{padding-left:12rem!important;padding-right:12rem!important}.lg\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}.lg\:px-56{padding-left:14rem!important;padding-right:14rem!important}.lg\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}.lg\:px-60{padding-left:15rem!important;padding-right:15rem!important}.lg\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}.lg\:px-64{padding-left:16rem!important;padding-right:16rem!important}.lg\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}.lg\:px-72{padding-left:18rem!important;padding-right:18rem!important}.lg\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}.lg\:px-80{padding-left:20rem!important;padding-right:20rem!important}.lg\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}.lg\:px-96{padding-left:24rem!important;padding-right:24rem!important}.lg\:py-px{padding-bottom:1px!important;padding-top:1px!important}.lg\:px-px{padding-left:1px!important;padding-right:1px!important}.lg\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.lg\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.lg\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.lg\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.lg\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.lg\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.lg\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.lg\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.lg\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.lg\:px-1\/2{padding-left:50%!important;padding-right:50%!important}.lg\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.lg\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.lg\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.lg\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.lg\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.lg\:px-1\/4{padding-left:25%!important;padding-right:25%!important}.lg\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.lg\:px-2\/4{padding-left:50%!important;padding-right:50%!important}.lg\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.lg\:px-3\/4{padding-left:75%!important;padding-right:75%!important}.lg\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.lg\:px-1\/5{padding-left:20%!important;padding-right:20%!important}.lg\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.lg\:px-2\/5{padding-left:40%!important;padding-right:40%!important}.lg\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.lg\:px-3\/5{padding-left:60%!important;padding-right:60%!important}.lg\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.lg\:px-4\/5{padding-left:80%!important;padding-right:80%!important}.lg\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.lg\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.lg\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.lg\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.lg\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.lg\:px-3\/6{padding-left:50%!important;padding-right:50%!important}.lg\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.lg\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.lg\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.lg\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.lg\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.lg\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.lg\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.lg\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.lg\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.lg\:px-3\/12{padding-left:25%!important;padding-right:25%!important}.lg\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.lg\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.lg\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.lg\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.lg\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.lg\:px-6\/12{padding-left:50%!important;padding-right:50%!important}.lg\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.lg\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.lg\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.lg\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.lg\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.lg\:px-9\/12{padding-left:75%!important;padding-right:75%!important}.lg\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.lg\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.lg\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.lg\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.lg\:py-full{padding-bottom:100%!important;padding-top:100%!important}.lg\:px-full{padding-left:100%!important;padding-right:100%!important}.lg\:pt-0{padding-top:0!important}.lg\:pr-0{padding-right:0!important}.lg\:pb-0{padding-bottom:0!important}.lg\:pl-0{padding-left:0!important}.lg\:pt-1{padding-top:.25rem!important}.lg\:pr-1{padding-right:.25rem!important}.lg\:pb-1{padding-bottom:.25rem!important}.lg\:pl-1{padding-left:.25rem!important}.lg\:pt-2{padding-top:.5rem!important}.lg\:pr-2{padding-right:.5rem!important}.lg\:pb-2{padding-bottom:.5rem!important}.lg\:pl-2{padding-left:.5rem!important}.lg\:pt-3{padding-top:.75rem!important}.lg\:pr-3{padding-right:.75rem!important}.lg\:pb-3{padding-bottom:.75rem!important}.lg\:pl-3{padding-left:.75rem!important}.lg\:pt-4{padding-top:1rem!important}.lg\:pr-4{padding-right:1rem!important}.lg\:pb-4{padding-bottom:1rem!important}.lg\:pl-4{padding-left:1rem!important}.lg\:pt-5{padding-top:1.25rem!important}.lg\:pr-5{padding-right:1.25rem!important}.lg\:pb-5{padding-bottom:1.25rem!important}.lg\:pl-5{padding-left:1.25rem!important}.lg\:pt-6{padding-top:1.5rem!important}.lg\:pr-6{padding-right:1.5rem!important}.lg\:pb-6{padding-bottom:1.5rem!important}.lg\:pl-6{padding-left:1.5rem!important}.lg\:pt-7{padding-top:1.75rem!important}.lg\:pr-7{padding-right:1.75rem!important}.lg\:pb-7{padding-bottom:1.75rem!important}.lg\:pl-7{padding-left:1.75rem!important}.lg\:pt-8{padding-top:2rem!important}.lg\:pr-8{padding-right:2rem!important}.lg\:pb-8{padding-bottom:2rem!important}.lg\:pl-8{padding-left:2rem!important}.lg\:pt-9{padding-top:2.25rem!important}.lg\:pr-9{padding-right:2.25rem!important}.lg\:pb-9{padding-bottom:2.25rem!important}.lg\:pl-9{padding-left:2.25rem!important}.lg\:pt-10{padding-top:2.5rem!important}.lg\:pr-10{padding-right:2.5rem!important}.lg\:pb-10{padding-bottom:2.5rem!important}.lg\:pl-10{padding-left:2.5rem!important}.lg\:pt-11{padding-top:2.75rem!important}.lg\:pr-11{padding-right:2.75rem!important}.lg\:pb-11{padding-bottom:2.75rem!important}.lg\:pl-11{padding-left:2.75rem!important}.lg\:pt-12{padding-top:3rem!important}.lg\:pr-12{padding-right:3rem!important}.lg\:pb-12{padding-bottom:3rem!important}.lg\:pl-12{padding-left:3rem!important}.lg\:pt-13{padding-top:3.25rem!important}.lg\:pr-13{padding-right:3.25rem!important}.lg\:pb-13{padding-bottom:3.25rem!important}.lg\:pl-13{padding-left:3.25rem!important}.lg\:pt-14{padding-top:3.5rem!important}.lg\:pr-14{padding-right:3.5rem!important}.lg\:pb-14{padding-bottom:3.5rem!important}.lg\:pl-14{padding-left:3.5rem!important}.lg\:pt-15{padding-top:3.75rem!important}.lg\:pr-15{padding-right:3.75rem!important}.lg\:pb-15{padding-bottom:3.75rem!important}.lg\:pl-15{padding-left:3.75rem!important}.lg\:pt-16{padding-top:4rem!important}.lg\:pr-16{padding-right:4rem!important}.lg\:pb-16{padding-bottom:4rem!important}.lg\:pl-16{padding-left:4rem!important}.lg\:pt-20{padding-top:5rem!important}.lg\:pr-20{padding-right:5rem!important}.lg\:pb-20{padding-bottom:5rem!important}.lg\:pl-20{padding-left:5rem!important}.lg\:pt-24{padding-top:6rem!important}.lg\:pr-24{padding-right:6rem!important}.lg\:pb-24{padding-bottom:6rem!important}.lg\:pl-24{padding-left:6rem!important}.lg\:pt-28{padding-top:7rem!important}.lg\:pr-28{padding-right:7rem!important}.lg\:pb-28{padding-bottom:7rem!important}.lg\:pl-28{padding-left:7rem!important}.lg\:pt-32{padding-top:8rem!important}.lg\:pr-32{padding-right:8rem!important}.lg\:pb-32{padding-bottom:8rem!important}.lg\:pl-32{padding-left:8rem!important}.lg\:pt-36{padding-top:9rem!important}.lg\:pr-36{padding-right:9rem!important}.lg\:pb-36{padding-bottom:9rem!important}.lg\:pl-36{padding-left:9rem!important}.lg\:pt-40{padding-top:10rem!important}.lg\:pr-40{padding-right:10rem!important}.lg\:pb-40{padding-bottom:10rem!important}.lg\:pl-40{padding-left:10rem!important}.lg\:pt-48{padding-top:12rem!important}.lg\:pr-48{padding-right:12rem!important}.lg\:pb-48{padding-bottom:12rem!important}.lg\:pl-48{padding-left:12rem!important}.lg\:pt-56{padding-top:14rem!important}.lg\:pr-56{padding-right:14rem!important}.lg\:pb-56{padding-bottom:14rem!important}.lg\:pl-56{padding-left:14rem!important}.lg\:pt-60{padding-top:15rem!important}.lg\:pr-60{padding-right:15rem!important}.lg\:pb-60{padding-bottom:15rem!important}.lg\:pl-60{padding-left:15rem!important}.lg\:pt-64{padding-top:16rem!important}.lg\:pr-64{padding-right:16rem!important}.lg\:pb-64{padding-bottom:16rem!important}.lg\:pl-64{padding-left:16rem!important}.lg\:pt-72{padding-top:18rem!important}.lg\:pr-72{padding-right:18rem!important}.lg\:pb-72{padding-bottom:18rem!important}.lg\:pl-72{padding-left:18rem!important}.lg\:pt-80{padding-top:20rem!important}.lg\:pr-80{padding-right:20rem!important}.lg\:pb-80{padding-bottom:20rem!important}.lg\:pl-80{padding-left:20rem!important}.lg\:pt-96{padding-top:24rem!important}.lg\:pr-96{padding-right:24rem!important}.lg\:pb-96{padding-bottom:24rem!important}.lg\:pl-96{padding-left:24rem!important}.lg\:pt-px{padding-top:1px!important}.lg\:pr-px{padding-right:1px!important}.lg\:pb-px{padding-bottom:1px!important}.lg\:pl-px{padding-left:1px!important}.lg\:pt-0\.5{padding-top:.125rem!important}.lg\:pr-0\.5{padding-right:.125rem!important}.lg\:pb-0\.5{padding-bottom:.125rem!important}.lg\:pl-0\.5{padding-left:.125rem!important}.lg\:pt-1\.5{padding-top:.375rem!important}.lg\:pr-1\.5{padding-right:.375rem!important}.lg\:pb-1\.5{padding-bottom:.375rem!important}.lg\:pl-1\.5{padding-left:.375rem!important}.lg\:pt-2\.5{padding-top:.625rem!important}.lg\:pr-2\.5{padding-right:.625rem!important}.lg\:pb-2\.5{padding-bottom:.625rem!important}.lg\:pl-2\.5{padding-left:.625rem!important}.lg\:pt-3\.5{padding-top:.875rem!important}.lg\:pr-3\.5{padding-right:.875rem!important}.lg\:pb-3\.5{padding-bottom:.875rem!important}.lg\:pl-3\.5{padding-left:.875rem!important}.lg\:pt-1\/2{padding-top:50%!important}.lg\:pr-1\/2{padding-right:50%!important}.lg\:pb-1\/2{padding-bottom:50%!important}.lg\:pl-1\/2{padding-left:50%!important}.lg\:pt-1\/3{padding-top:33.333333%!important}.lg\:pr-1\/3{padding-right:33.333333%!important}.lg\:pb-1\/3{padding-bottom:33.333333%!important}.lg\:pl-1\/3{padding-left:33.333333%!important}.lg\:pt-2\/3{padding-top:66.666667%!important}.lg\:pr-2\/3{padding-right:66.666667%!important}.lg\:pb-2\/3{padding-bottom:66.666667%!important}.lg\:pl-2\/3{padding-left:66.666667%!important}.lg\:pt-1\/4{padding-top:25%!important}.lg\:pr-1\/4{padding-right:25%!important}.lg\:pb-1\/4{padding-bottom:25%!important}.lg\:pl-1\/4{padding-left:25%!important}.lg\:pt-2\/4{padding-top:50%!important}.lg\:pr-2\/4{padding-right:50%!important}.lg\:pb-2\/4{padding-bottom:50%!important}.lg\:pl-2\/4{padding-left:50%!important}.lg\:pt-3\/4{padding-top:75%!important}.lg\:pr-3\/4{padding-right:75%!important}.lg\:pb-3\/4{padding-bottom:75%!important}.lg\:pl-3\/4{padding-left:75%!important}.lg\:pt-1\/5{padding-top:20%!important}.lg\:pr-1\/5{padding-right:20%!important}.lg\:pb-1\/5{padding-bottom:20%!important}.lg\:pl-1\/5{padding-left:20%!important}.lg\:pt-2\/5{padding-top:40%!important}.lg\:pr-2\/5{padding-right:40%!important}.lg\:pb-2\/5{padding-bottom:40%!important}.lg\:pl-2\/5{padding-left:40%!important}.lg\:pt-3\/5{padding-top:60%!important}.lg\:pr-3\/5{padding-right:60%!important}.lg\:pb-3\/5{padding-bottom:60%!important}.lg\:pl-3\/5{padding-left:60%!important}.lg\:pt-4\/5{padding-top:80%!important}.lg\:pr-4\/5{padding-right:80%!important}.lg\:pb-4\/5{padding-bottom:80%!important}.lg\:pl-4\/5{padding-left:80%!important}.lg\:pt-1\/6{padding-top:16.666667%!important}.lg\:pr-1\/6{padding-right:16.666667%!important}.lg\:pb-1\/6{padding-bottom:16.666667%!important}.lg\:pl-1\/6{padding-left:16.666667%!important}.lg\:pt-2\/6{padding-top:33.333333%!important}.lg\:pr-2\/6{padding-right:33.333333%!important}.lg\:pb-2\/6{padding-bottom:33.333333%!important}.lg\:pl-2\/6{padding-left:33.333333%!important}.lg\:pt-3\/6{padding-top:50%!important}.lg\:pr-3\/6{padding-right:50%!important}.lg\:pb-3\/6{padding-bottom:50%!important}.lg\:pl-3\/6{padding-left:50%!important}.lg\:pt-4\/6{padding-top:66.666667%!important}.lg\:pr-4\/6{padding-right:66.666667%!important}.lg\:pb-4\/6{padding-bottom:66.666667%!important}.lg\:pl-4\/6{padding-left:66.666667%!important}.lg\:pt-5\/6{padding-top:83.333333%!important}.lg\:pr-5\/6{padding-right:83.333333%!important}.lg\:pb-5\/6{padding-bottom:83.333333%!important}.lg\:pl-5\/6{padding-left:83.333333%!important}.lg\:pt-1\/12{padding-top:8.333333%!important}.lg\:pr-1\/12{padding-right:8.333333%!important}.lg\:pb-1\/12{padding-bottom:8.333333%!important}.lg\:pl-1\/12{padding-left:8.333333%!important}.lg\:pt-2\/12{padding-top:16.666667%!important}.lg\:pr-2\/12{padding-right:16.666667%!important}.lg\:pb-2\/12{padding-bottom:16.666667%!important}.lg\:pl-2\/12{padding-left:16.666667%!important}.lg\:pt-3\/12{padding-top:25%!important}.lg\:pr-3\/12{padding-right:25%!important}.lg\:pb-3\/12{padding-bottom:25%!important}.lg\:pl-3\/12{padding-left:25%!important}.lg\:pt-4\/12{padding-top:33.333333%!important}.lg\:pr-4\/12{padding-right:33.333333%!important}.lg\:pb-4\/12{padding-bottom:33.333333%!important}.lg\:pl-4\/12{padding-left:33.333333%!important}.lg\:pt-5\/12{padding-top:41.666667%!important}.lg\:pr-5\/12{padding-right:41.666667%!important}.lg\:pb-5\/12{padding-bottom:41.666667%!important}.lg\:pl-5\/12{padding-left:41.666667%!important}.lg\:pt-6\/12{padding-top:50%!important}.lg\:pr-6\/12{padding-right:50%!important}.lg\:pb-6\/12{padding-bottom:50%!important}.lg\:pl-6\/12{padding-left:50%!important}.lg\:pt-7\/12{padding-top:58.333333%!important}.lg\:pr-7\/12{padding-right:58.333333%!important}.lg\:pb-7\/12{padding-bottom:58.333333%!important}.lg\:pl-7\/12{padding-left:58.333333%!important}.lg\:pt-8\/12{padding-top:66.666667%!important}.lg\:pr-8\/12{padding-right:66.666667%!important}.lg\:pb-8\/12{padding-bottom:66.666667%!important}.lg\:pl-8\/12{padding-left:66.666667%!important}.lg\:pt-9\/12{padding-top:75%!important}.lg\:pr-9\/12{padding-right:75%!important}.lg\:pb-9\/12{padding-bottom:75%!important}.lg\:pl-9\/12{padding-left:75%!important}.lg\:pt-10\/12{padding-top:83.333333%!important}.lg\:pr-10\/12{padding-right:83.333333%!important}.lg\:pb-10\/12{padding-bottom:83.333333%!important}.lg\:pl-10\/12{padding-left:83.333333%!important}.lg\:pt-11\/12{padding-top:91.666667%!important}.lg\:pr-11\/12{padding-right:91.666667%!important}.lg\:pb-11\/12{padding-bottom:91.666667%!important}.lg\:pl-11\/12{padding-left:91.666667%!important}.lg\:pt-full{padding-top:100%!important}.lg\:pr-full{padding-right:100%!important}.lg\:pb-full{padding-bottom:100%!important}.lg\:pl-full{padding-left:100%!important}[dir=ltr] .lg\:ltr\:p-0{padding:0!important}[dir=ltr] .lg\:ltr\:p-1{padding:.25rem!important}[dir=ltr] .lg\:ltr\:p-2{padding:.5rem!important}[dir=ltr] .lg\:ltr\:p-3{padding:.75rem!important}[dir=ltr] .lg\:ltr\:p-4{padding:1rem!important}[dir=ltr] .lg\:ltr\:p-5{padding:1.25rem!important}[dir=ltr] .lg\:ltr\:p-6{padding:1.5rem!important}[dir=ltr] .lg\:ltr\:p-7{padding:1.75rem!important}[dir=ltr] .lg\:ltr\:p-8{padding:2rem!important}[dir=ltr] .lg\:ltr\:p-9{padding:2.25rem!important}[dir=ltr] .lg\:ltr\:p-10{padding:2.5rem!important}[dir=ltr] .lg\:ltr\:p-11{padding:2.75rem!important}[dir=ltr] .lg\:ltr\:p-12{padding:3rem!important}[dir=ltr] .lg\:ltr\:p-13{padding:3.25rem!important}[dir=ltr] .lg\:ltr\:p-14{padding:3.5rem!important}[dir=ltr] .lg\:ltr\:p-15{padding:3.75rem!important}[dir=ltr] .lg\:ltr\:p-16{padding:4rem!important}[dir=ltr] .lg\:ltr\:p-20{padding:5rem!important}[dir=ltr] .lg\:ltr\:p-24{padding:6rem!important}[dir=ltr] .lg\:ltr\:p-28{padding:7rem!important}[dir=ltr] .lg\:ltr\:p-32{padding:8rem!important}[dir=ltr] .lg\:ltr\:p-36{padding:9rem!important}[dir=ltr] .lg\:ltr\:p-40{padding:10rem!important}[dir=ltr] .lg\:ltr\:p-48{padding:12rem!important}[dir=ltr] .lg\:ltr\:p-56{padding:14rem!important}[dir=ltr] .lg\:ltr\:p-60{padding:15rem!important}[dir=ltr] .lg\:ltr\:p-64{padding:16rem!important}[dir=ltr] .lg\:ltr\:p-72{padding:18rem!important}[dir=ltr] .lg\:ltr\:p-80{padding:20rem!important}[dir=ltr] .lg\:ltr\:p-96{padding:24rem!important}[dir=ltr] .lg\:ltr\:p-px{padding:1px!important}[dir=ltr] .lg\:ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .lg\:ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .lg\:ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .lg\:ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .lg\:ltr\:p-1\/2{padding:50%!important}[dir=ltr] .lg\:ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .lg\:ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .lg\:ltr\:p-1\/4{padding:25%!important}[dir=ltr] .lg\:ltr\:p-2\/4{padding:50%!important}[dir=ltr] .lg\:ltr\:p-3\/4{padding:75%!important}[dir=ltr] .lg\:ltr\:p-1\/5{padding:20%!important}[dir=ltr] .lg\:ltr\:p-2\/5{padding:40%!important}[dir=ltr] .lg\:ltr\:p-3\/5{padding:60%!important}[dir=ltr] .lg\:ltr\:p-4\/5{padding:80%!important}[dir=ltr] .lg\:ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .lg\:ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .lg\:ltr\:p-3\/6{padding:50%!important}[dir=ltr] .lg\:ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .lg\:ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .lg\:ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .lg\:ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .lg\:ltr\:p-3\/12{padding:25%!important}[dir=ltr] .lg\:ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .lg\:ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .lg\:ltr\:p-6\/12{padding:50%!important}[dir=ltr] .lg\:ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .lg\:ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .lg\:ltr\:p-9\/12{padding:75%!important}[dir=ltr] .lg\:ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .lg\:ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .lg\:ltr\:p-full{padding:100%!important}[dir=ltr] .lg\:ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .lg\:ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .lg\:ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .lg\:ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .lg\:ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .lg\:ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .lg\:ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .lg\:ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .lg\:ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .lg\:ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .lg\:ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .lg\:ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .lg\:ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .lg\:ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .lg\:ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .lg\:ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .lg\:ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .lg\:ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .lg\:ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .lg\:ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .lg\:ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .lg\:ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .lg\:ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .lg\:ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .lg\:ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .lg\:ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .lg\:ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .lg\:ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .lg\:ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .lg\:ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .lg\:ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .lg\:ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .lg\:ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .lg\:ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .lg\:ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .lg\:ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .lg\:ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .lg\:ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .lg\:ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .lg\:ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .lg\:ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .lg\:ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .lg\:ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .lg\:ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .lg\:ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .lg\:ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .lg\:ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .lg\:ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .lg\:ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .lg\:ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .lg\:ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .lg\:ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .lg\:ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .lg\:ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .lg\:ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .lg\:ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .lg\:ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .lg\:ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .lg\:ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .lg\:ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .lg\:ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .lg\:ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .lg\:ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .lg\:ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .lg\:ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .lg\:ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .lg\:ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .lg\:ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .lg\:ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .lg\:ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .lg\:ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .lg\:ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .lg\:ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .lg\:ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .lg\:ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .lg\:ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .lg\:ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .lg\:ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .lg\:ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .lg\:ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .lg\:ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .lg\:ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .lg\:ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .lg\:ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .lg\:ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .lg\:ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .lg\:ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .lg\:ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .lg\:ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .lg\:ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .lg\:ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .lg\:ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .lg\:ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .lg\:ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .lg\:ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .lg\:ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .lg\:ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .lg\:ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .lg\:ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .lg\:ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .lg\:ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .lg\:ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .lg\:ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .lg\:ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .lg\:ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .lg\:ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .lg\:ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .lg\:ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .lg\:ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .lg\:ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .lg\:ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .lg\:ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .lg\:ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .lg\:ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .lg\:ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .lg\:ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .lg\:ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .lg\:ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .lg\:ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .lg\:ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .lg\:ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .lg\:ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .lg\:ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .lg\:ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .lg\:ltr\:pt-0{padding-top:0!important}[dir=ltr] .lg\:ltr\:pr-0{padding-right:0!important}[dir=ltr] .lg\:ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .lg\:ltr\:pl-0{padding-left:0!important}[dir=ltr] .lg\:ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .lg\:ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .lg\:ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .lg\:ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .lg\:ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .lg\:ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .lg\:ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .lg\:ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .lg\:ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .lg\:ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .lg\:ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .lg\:ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .lg\:ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .lg\:ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .lg\:ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .lg\:ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .lg\:ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .lg\:ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .lg\:ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .lg\:ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .lg\:ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .lg\:ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .lg\:ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .lg\:ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .lg\:ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .lg\:ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .lg\:ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .lg\:ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .lg\:ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .lg\:ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .lg\:ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .lg\:ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .lg\:ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .lg\:ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .lg\:ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .lg\:ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .lg\:ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .lg\:ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .lg\:ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .lg\:ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .lg\:ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .lg\:ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .lg\:ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .lg\:ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .lg\:ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .lg\:ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .lg\:ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .lg\:ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .lg\:ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .lg\:ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .lg\:ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .lg\:ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .lg\:ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .lg\:ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .lg\:ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .lg\:ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .lg\:ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .lg\:ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .lg\:ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .lg\:ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .lg\:ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .lg\:ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .lg\:ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .lg\:ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .lg\:ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .lg\:ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .lg\:ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .lg\:ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .lg\:ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .lg\:ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .lg\:ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .lg\:ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .lg\:ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .lg\:ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .lg\:ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .lg\:ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .lg\:ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .lg\:ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .lg\:ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .lg\:ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .lg\:ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .lg\:ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .lg\:ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .lg\:ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .lg\:ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .lg\:ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .lg\:ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .lg\:ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .lg\:ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .lg\:ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .lg\:ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .lg\:ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .lg\:ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .lg\:ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .lg\:ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .lg\:ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .lg\:ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .lg\:ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .lg\:ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .lg\:ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .lg\:ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .lg\:ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .lg\:ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .lg\:ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .lg\:ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .lg\:ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .lg\:ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .lg\:ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .lg\:ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .lg\:ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .lg\:ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .lg\:ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .lg\:ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .lg\:ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .lg\:ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .lg\:ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .lg\:ltr\:pt-px{padding-top:1px!important}[dir=ltr] .lg\:ltr\:pr-px{padding-right:1px!important}[dir=ltr] .lg\:ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .lg\:ltr\:pl-px{padding-left:1px!important}[dir=ltr] .lg\:ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .lg\:ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .lg\:ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .lg\:ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .lg\:ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .lg\:ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .lg\:ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .lg\:ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .lg\:ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .lg\:ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .lg\:ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .lg\:ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .lg\:ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .lg\:ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .lg\:ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .lg\:ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .lg\:ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .lg\:ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .lg\:ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .lg\:ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .lg\:ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .lg\:ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .lg\:ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .lg\:ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .lg\:ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .lg\:ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .lg\:ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .lg\:ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .lg\:ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .lg\:ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .lg\:ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .lg\:ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .lg\:ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .lg\:ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .lg\:ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .lg\:ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .lg\:ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .lg\:ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .lg\:ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .lg\:ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .lg\:ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .lg\:ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .lg\:ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .lg\:ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .lg\:ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .lg\:ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .lg\:ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .lg\:ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .lg\:ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .lg\:ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .lg\:ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .lg\:ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .lg\:ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .lg\:ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .lg\:ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .lg\:ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .lg\:ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .lg\:ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .lg\:ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .lg\:ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .lg\:ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .lg\:ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .lg\:ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .lg\:ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .lg\:ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .lg\:ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .lg\:ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .lg\:ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .lg\:ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .lg\:ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .lg\:ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .lg\:ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .lg\:ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .lg\:ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .lg\:ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .lg\:ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .lg\:ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .lg\:ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .lg\:ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .lg\:ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .lg\:ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .lg\:ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .lg\:ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .lg\:ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .lg\:ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .lg\:ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .lg\:ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .lg\:ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .lg\:ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .lg\:ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .lg\:ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .lg\:ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .lg\:ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .lg\:ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .lg\:ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .lg\:ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .lg\:ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .lg\:ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .lg\:ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .lg\:ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .lg\:ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .lg\:ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .lg\:ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .lg\:ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .lg\:ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .lg\:ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .lg\:ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .lg\:ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .lg\:ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .lg\:ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .lg\:ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .lg\:ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .lg\:ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .lg\:ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .lg\:ltr\:pt-full{padding-top:100%!important}[dir=ltr] .lg\:ltr\:pr-full{padding-right:100%!important}[dir=ltr] .lg\:ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .lg\:ltr\:pl-full{padding-left:100%!important}[dir=rtl] .lg\:rtl\:p-0{padding:0!important}[dir=rtl] .lg\:rtl\:p-1{padding:.25rem!important}[dir=rtl] .lg\:rtl\:p-2{padding:.5rem!important}[dir=rtl] .lg\:rtl\:p-3{padding:.75rem!important}[dir=rtl] .lg\:rtl\:p-4{padding:1rem!important}[dir=rtl] .lg\:rtl\:p-5{padding:1.25rem!important}[dir=rtl] .lg\:rtl\:p-6{padding:1.5rem!important}[dir=rtl] .lg\:rtl\:p-7{padding:1.75rem!important}[dir=rtl] .lg\:rtl\:p-8{padding:2rem!important}[dir=rtl] .lg\:rtl\:p-9{padding:2.25rem!important}[dir=rtl] .lg\:rtl\:p-10{padding:2.5rem!important}[dir=rtl] .lg\:rtl\:p-11{padding:2.75rem!important}[dir=rtl] .lg\:rtl\:p-12{padding:3rem!important}[dir=rtl] .lg\:rtl\:p-13{padding:3.25rem!important}[dir=rtl] .lg\:rtl\:p-14{padding:3.5rem!important}[dir=rtl] .lg\:rtl\:p-15{padding:3.75rem!important}[dir=rtl] .lg\:rtl\:p-16{padding:4rem!important}[dir=rtl] .lg\:rtl\:p-20{padding:5rem!important}[dir=rtl] .lg\:rtl\:p-24{padding:6rem!important}[dir=rtl] .lg\:rtl\:p-28{padding:7rem!important}[dir=rtl] .lg\:rtl\:p-32{padding:8rem!important}[dir=rtl] .lg\:rtl\:p-36{padding:9rem!important}[dir=rtl] .lg\:rtl\:p-40{padding:10rem!important}[dir=rtl] .lg\:rtl\:p-48{padding:12rem!important}[dir=rtl] .lg\:rtl\:p-56{padding:14rem!important}[dir=rtl] .lg\:rtl\:p-60{padding:15rem!important}[dir=rtl] .lg\:rtl\:p-64{padding:16rem!important}[dir=rtl] .lg\:rtl\:p-72{padding:18rem!important}[dir=rtl] .lg\:rtl\:p-80{padding:20rem!important}[dir=rtl] .lg\:rtl\:p-96{padding:24rem!important}[dir=rtl] .lg\:rtl\:p-px{padding:1px!important}[dir=rtl] .lg\:rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .lg\:rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .lg\:rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .lg\:rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .lg\:rtl\:p-1\/2{padding:50%!important}[dir=rtl] .lg\:rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .lg\:rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .lg\:rtl\:p-1\/4{padding:25%!important}[dir=rtl] .lg\:rtl\:p-2\/4{padding:50%!important}[dir=rtl] .lg\:rtl\:p-3\/4{padding:75%!important}[dir=rtl] .lg\:rtl\:p-1\/5{padding:20%!important}[dir=rtl] .lg\:rtl\:p-2\/5{padding:40%!important}[dir=rtl] .lg\:rtl\:p-3\/5{padding:60%!important}[dir=rtl] .lg\:rtl\:p-4\/5{padding:80%!important}[dir=rtl] .lg\:rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .lg\:rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .lg\:rtl\:p-3\/6{padding:50%!important}[dir=rtl] .lg\:rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .lg\:rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .lg\:rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .lg\:rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .lg\:rtl\:p-3\/12{padding:25%!important}[dir=rtl] .lg\:rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .lg\:rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .lg\:rtl\:p-6\/12{padding:50%!important}[dir=rtl] .lg\:rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .lg\:rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .lg\:rtl\:p-9\/12{padding:75%!important}[dir=rtl] .lg\:rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .lg\:rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .lg\:rtl\:p-full{padding:100%!important}[dir=rtl] .lg\:rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .lg\:rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .lg\:rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .lg\:rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .lg\:rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .lg\:rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .lg\:rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .lg\:rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .lg\:rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .lg\:rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .lg\:rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .lg\:rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .lg\:rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .lg\:rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .lg\:rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .lg\:rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .lg\:rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .lg\:rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .lg\:rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .lg\:rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .lg\:rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .lg\:rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .lg\:rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .lg\:rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .lg\:rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .lg\:rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .lg\:rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .lg\:rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .lg\:rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .lg\:rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .lg\:rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .lg\:rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .lg\:rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .lg\:rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .lg\:rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .lg\:rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .lg\:rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .lg\:rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .lg\:rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .lg\:rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .lg\:rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .lg\:rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .lg\:rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .lg\:rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .lg\:rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .lg\:rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .lg\:rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .lg\:rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .lg\:rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .lg\:rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .lg\:rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .lg\:rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .lg\:rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .lg\:rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .lg\:rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .lg\:rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .lg\:rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .lg\:rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .lg\:rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .lg\:rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .lg\:rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .lg\:rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .lg\:rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .lg\:rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .lg\:rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .lg\:rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .lg\:rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .lg\:rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .lg\:rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .lg\:rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .lg\:rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .lg\:rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .lg\:rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .lg\:rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .lg\:rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .lg\:rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .lg\:rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .lg\:rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .lg\:rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .lg\:rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .lg\:rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .lg\:rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .lg\:rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .lg\:rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .lg\:rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .lg\:rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .lg\:rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .lg\:rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .lg\:rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .lg\:rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .lg\:rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .lg\:rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .lg\:rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .lg\:rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .lg\:rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .lg\:rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .lg\:rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .lg\:rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .lg\:rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .lg\:rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .lg\:rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .lg\:rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .lg\:rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .lg\:rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .lg\:rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .lg\:rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .lg\:rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .lg\:rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .lg\:rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .lg\:rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .lg\:rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .lg\:rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .lg\:rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .lg\:rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .lg\:rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .lg\:rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .lg\:rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .lg\:rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .lg\:rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .lg\:rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .lg\:rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .lg\:rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .lg\:rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .lg\:rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .lg\:rtl\:pt-0{padding-top:0!important}[dir=rtl] .lg\:rtl\:pr-0{padding-right:0!important}[dir=rtl] .lg\:rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .lg\:rtl\:pl-0{padding-left:0!important}[dir=rtl] .lg\:rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .lg\:rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .lg\:rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .lg\:rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .lg\:rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .lg\:rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .lg\:rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .lg\:rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .lg\:rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .lg\:rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .lg\:rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .lg\:rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .lg\:rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .lg\:rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .lg\:rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .lg\:rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .lg\:rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .lg\:rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .lg\:rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .lg\:rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .lg\:rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .lg\:rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .lg\:rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .lg\:rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .lg\:rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .lg\:rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .lg\:rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .lg\:rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .lg\:rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .lg\:rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .lg\:rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .lg\:rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .lg\:rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .lg\:rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .lg\:rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .lg\:rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .lg\:rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .lg\:rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .lg\:rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .lg\:rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .lg\:rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .lg\:rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .lg\:rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .lg\:rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .lg\:rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .lg\:rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .lg\:rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .lg\:rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .lg\:rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .lg\:rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .lg\:rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .lg\:rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .lg\:rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .lg\:rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .lg\:rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .lg\:rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .lg\:rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .lg\:rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .lg\:rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .lg\:rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .lg\:rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .lg\:rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .lg\:rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .lg\:rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .lg\:rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .lg\:rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .lg\:rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .lg\:rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .lg\:rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .lg\:rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .lg\:rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .lg\:rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .lg\:rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .lg\:rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .lg\:rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .lg\:rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .lg\:rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .lg\:rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .lg\:rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .lg\:rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .lg\:rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .lg\:rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .lg\:rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .lg\:rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .lg\:rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .lg\:rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .lg\:rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .lg\:rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .lg\:rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .lg\:rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .lg\:rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .lg\:rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .lg\:rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .lg\:rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .lg\:rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .lg\:rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .lg\:rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .lg\:rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .lg\:rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .lg\:rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .lg\:rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .lg\:rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .lg\:rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .lg\:rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .lg\:rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .lg\:rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .lg\:rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .lg\:rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .lg\:rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .lg\:rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .lg\:rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .lg\:rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .lg\:rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .lg\:rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .lg\:rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .lg\:rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .lg\:rtl\:pt-px{padding-top:1px!important}[dir=rtl] .lg\:rtl\:pr-px{padding-right:1px!important}[dir=rtl] .lg\:rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .lg\:rtl\:pl-px{padding-left:1px!important}[dir=rtl] .lg\:rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .lg\:rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .lg\:rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .lg\:rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .lg\:rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .lg\:rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .lg\:rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .lg\:rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .lg\:rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .lg\:rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .lg\:rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .lg\:rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .lg\:rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .lg\:rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .lg\:rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .lg\:rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .lg\:rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .lg\:rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .lg\:rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .lg\:rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .lg\:rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .lg\:rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .lg\:rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .lg\:rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .lg\:rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .lg\:rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .lg\:rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .lg\:rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .lg\:rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .lg\:rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .lg\:rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .lg\:rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .lg\:rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .lg\:rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .lg\:rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .lg\:rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .lg\:rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .lg\:rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .lg\:rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .lg\:rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .lg\:rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .lg\:rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .lg\:rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .lg\:rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .lg\:rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .lg\:rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .lg\:rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .lg\:rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .lg\:rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .lg\:rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .lg\:rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .lg\:rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .lg\:rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .lg\:rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .lg\:rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .lg\:rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .lg\:rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .lg\:rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .lg\:rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .lg\:rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .lg\:rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .lg\:rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .lg\:rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .lg\:rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .lg\:rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .lg\:rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .lg\:rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .lg\:rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .lg\:rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .lg\:rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .lg\:rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .lg\:rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .lg\:rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .lg\:rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .lg\:rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .lg\:rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .lg\:rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .lg\:rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .lg\:rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .lg\:rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .lg\:rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .lg\:rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .lg\:rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .lg\:rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .lg\:rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .lg\:rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .lg\:rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .lg\:rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .lg\:rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .lg\:rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .lg\:rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .lg\:rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .lg\:rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .lg\:rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .lg\:rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .lg\:rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .lg\:rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .lg\:rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .lg\:rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .lg\:rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .lg\:rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .lg\:rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .lg\:rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .lg\:rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .lg\:rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .lg\:rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .lg\:rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .lg\:rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .lg\:rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .lg\:rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .lg\:rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .lg\:rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .lg\:rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .lg\:rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .lg\:rtl\:pt-full{padding-top:100%!important}[dir=rtl] .lg\:rtl\:pr-full{padding-right:100%!important}[dir=rtl] .lg\:rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .lg\:rtl\:pl-full{padding-left:100%!important}.lg\:placeholder-transparent::-moz-placeholder{color:transparent!important}.lg\:placeholder-transparent::placeholder{color:transparent!important}.lg\:placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.lg\:placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.lg\:placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.lg\:placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.lg\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.lg\:placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.lg\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.lg\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.lg\:placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.lg\:placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.lg\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.lg\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.lg\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.lg\:placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.lg\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.lg\:placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.lg\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.lg\:placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.lg\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.lg\:placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.lg\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.lg\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.lg\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.lg\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.lg\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.lg\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.lg\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.lg\:placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.lg\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.lg\:placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.lg\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.lg\:placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.lg\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.lg\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.lg\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.lg\:placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.lg\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.lg\:placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.lg\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.lg\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.lg\:placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.lg\:placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.lg\:placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.lg\:placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.lg\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.lg\:placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.lg\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.lg\:placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.lg\:focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.lg\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.lg\:focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.lg\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.lg\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.lg\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.lg\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.lg\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.lg\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.lg\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.lg\:placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.lg\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.lg\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.lg\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.lg\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.lg\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.lg\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.lg\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.lg\:placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.lg\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.lg\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.lg\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.lg\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.lg\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.lg\:pointer-events-none{pointer-events:none!important}.lg\:pointer-events-auto{pointer-events:auto!important}.lg\:static{position:static!important}.lg\:fixed{position:fixed!important}.lg\:absolute{position:absolute!important}.lg\:relative{position:relative!important}.lg\:sticky{position:sticky!important}.lg\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.lg\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.lg\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.lg\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.lg\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.lg\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.lg\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.lg\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.lg\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.lg\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.lg\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.lg\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.lg\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.lg\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.lg\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.lg\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.lg\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.lg\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.lg\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.lg\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.lg\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.lg\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.lg\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.lg\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.lg\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.lg\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.lg\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.lg\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.lg\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.lg\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.lg\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.lg\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.lg\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.lg\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.lg\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.lg\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.lg\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.lg\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.lg\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.lg\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.lg\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.lg\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.lg\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.lg\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.lg\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.lg\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.lg\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.lg\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.lg\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.lg\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.lg\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.lg\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.lg\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.lg\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.lg\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.lg\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.lg\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.lg\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.lg\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.lg\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.lg\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.lg\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.lg\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.lg\:inset-y-0{bottom:0!important;top:0!important}.lg\:inset-x-0{left:0!important;right:0!important}.lg\:inset-y-1{bottom:.25rem!important;top:.25rem!important}.lg\:inset-x-1{left:.25rem!important;right:.25rem!important}.lg\:inset-y-2{bottom:.5rem!important;top:.5rem!important}.lg\:inset-x-2{left:.5rem!important;right:.5rem!important}.lg\:inset-y-3{bottom:.75rem!important;top:.75rem!important}.lg\:inset-x-3{left:.75rem!important;right:.75rem!important}.lg\:inset-y-4{bottom:1rem!important;top:1rem!important}.lg\:inset-x-4{left:1rem!important;right:1rem!important}.lg\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.lg\:inset-x-5{left:1.25rem!important;right:1.25rem!important}.lg\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.lg\:inset-x-6{left:1.5rem!important;right:1.5rem!important}.lg\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.lg\:inset-x-7{left:1.75rem!important;right:1.75rem!important}.lg\:inset-y-8{bottom:2rem!important;top:2rem!important}.lg\:inset-x-8{left:2rem!important;right:2rem!important}.lg\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.lg\:inset-x-9{left:2.25rem!important;right:2.25rem!important}.lg\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.lg\:inset-x-10{left:2.5rem!important;right:2.5rem!important}.lg\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.lg\:inset-x-11{left:2.75rem!important;right:2.75rem!important}.lg\:inset-y-12{bottom:3rem!important;top:3rem!important}.lg\:inset-x-12{left:3rem!important;right:3rem!important}.lg\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.lg\:inset-x-13{left:3.25rem!important;right:3.25rem!important}.lg\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.lg\:inset-x-14{left:3.5rem!important;right:3.5rem!important}.lg\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.lg\:inset-x-15{left:3.75rem!important;right:3.75rem!important}.lg\:inset-y-16{bottom:4rem!important;top:4rem!important}.lg\:inset-x-16{left:4rem!important;right:4rem!important}.lg\:inset-y-20{bottom:5rem!important;top:5rem!important}.lg\:inset-x-20{left:5rem!important;right:5rem!important}.lg\:inset-y-24{bottom:6rem!important;top:6rem!important}.lg\:inset-x-24{left:6rem!important;right:6rem!important}.lg\:inset-y-28{bottom:7rem!important;top:7rem!important}.lg\:inset-x-28{left:7rem!important;right:7rem!important}.lg\:inset-y-32{bottom:8rem!important;top:8rem!important}.lg\:inset-x-32{left:8rem!important;right:8rem!important}.lg\:inset-y-36{bottom:9rem!important;top:9rem!important}.lg\:inset-x-36{left:9rem!important;right:9rem!important}.lg\:inset-y-40{bottom:10rem!important;top:10rem!important}.lg\:inset-x-40{left:10rem!important;right:10rem!important}.lg\:inset-y-48{bottom:12rem!important;top:12rem!important}.lg\:inset-x-48{left:12rem!important;right:12rem!important}.lg\:inset-y-56{bottom:14rem!important;top:14rem!important}.lg\:inset-x-56{left:14rem!important;right:14rem!important}.lg\:inset-y-60{bottom:15rem!important;top:15rem!important}.lg\:inset-x-60{left:15rem!important;right:15rem!important}.lg\:inset-y-64{bottom:16rem!important;top:16rem!important}.lg\:inset-x-64{left:16rem!important;right:16rem!important}.lg\:inset-y-72{bottom:18rem!important;top:18rem!important}.lg\:inset-x-72{left:18rem!important;right:18rem!important}.lg\:inset-y-80{bottom:20rem!important;top:20rem!important}.lg\:inset-x-80{left:20rem!important;right:20rem!important}.lg\:inset-y-96{bottom:24rem!important;top:24rem!important}.lg\:inset-x-96{left:24rem!important;right:24rem!important}.lg\:inset-y-auto{bottom:auto!important;top:auto!important}.lg\:inset-x-auto{left:auto!important;right:auto!important}.lg\:inset-y-px{bottom:1px!important;top:1px!important}.lg\:inset-x-px{left:1px!important;right:1px!important}.lg\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.lg\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}.lg\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.lg\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}.lg\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.lg\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}.lg\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.lg\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}.lg\:inset-y-1\/2{bottom:50%!important;top:50%!important}.lg\:inset-x-1\/2{left:50%!important;right:50%!important}.lg\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.lg\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.lg\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.lg\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.lg\:inset-y-1\/4{bottom:25%!important;top:25%!important}.lg\:inset-x-1\/4{left:25%!important;right:25%!important}.lg\:inset-y-2\/4{bottom:50%!important;top:50%!important}.lg\:inset-x-2\/4{left:50%!important;right:50%!important}.lg\:inset-y-3\/4{bottom:75%!important;top:75%!important}.lg\:inset-x-3\/4{left:75%!important;right:75%!important}.lg\:inset-y-1\/5{bottom:20%!important;top:20%!important}.lg\:inset-x-1\/5{left:20%!important;right:20%!important}.lg\:inset-y-2\/5{bottom:40%!important;top:40%!important}.lg\:inset-x-2\/5{left:40%!important;right:40%!important}.lg\:inset-y-3\/5{bottom:60%!important;top:60%!important}.lg\:inset-x-3\/5{left:60%!important;right:60%!important}.lg\:inset-y-4\/5{bottom:80%!important;top:80%!important}.lg\:inset-x-4\/5{left:80%!important;right:80%!important}.lg\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.lg\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.lg\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.lg\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.lg\:inset-y-3\/6{bottom:50%!important;top:50%!important}.lg\:inset-x-3\/6{left:50%!important;right:50%!important}.lg\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.lg\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.lg\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.lg\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.lg\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.lg\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.lg\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.lg\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.lg\:inset-y-3\/12{bottom:25%!important;top:25%!important}.lg\:inset-x-3\/12{left:25%!important;right:25%!important}.lg\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.lg\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.lg\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.lg\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.lg\:inset-y-6\/12{bottom:50%!important;top:50%!important}.lg\:inset-x-6\/12{left:50%!important;right:50%!important}.lg\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.lg\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.lg\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.lg\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.lg\:inset-y-9\/12{bottom:75%!important;top:75%!important}.lg\:inset-x-9\/12{left:75%!important;right:75%!important}.lg\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.lg\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.lg\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.lg\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.lg\:inset-y-full{bottom:100%!important;top:100%!important}.lg\:inset-x-full{left:100%!important;right:100%!important}.lg\:top-0{top:0!important}.lg\:right-0{right:0!important}.lg\:bottom-0{bottom:0!important}.lg\:left-0{left:0!important}.lg\:top-1{top:.25rem!important}.lg\:right-1{right:.25rem!important}.lg\:bottom-1{bottom:.25rem!important}.lg\:left-1{left:.25rem!important}.lg\:top-2{top:.5rem!important}.lg\:right-2{right:.5rem!important}.lg\:bottom-2{bottom:.5rem!important}.lg\:left-2{left:.5rem!important}.lg\:top-3{top:.75rem!important}.lg\:right-3{right:.75rem!important}.lg\:bottom-3{bottom:.75rem!important}.lg\:left-3{left:.75rem!important}.lg\:top-4{top:1rem!important}.lg\:right-4{right:1rem!important}.lg\:bottom-4{bottom:1rem!important}.lg\:left-4{left:1rem!important}.lg\:top-5{top:1.25rem!important}.lg\:right-5{right:1.25rem!important}.lg\:bottom-5{bottom:1.25rem!important}.lg\:left-5{left:1.25rem!important}.lg\:top-6{top:1.5rem!important}.lg\:right-6{right:1.5rem!important}.lg\:bottom-6{bottom:1.5rem!important}.lg\:left-6{left:1.5rem!important}.lg\:top-7{top:1.75rem!important}.lg\:right-7{right:1.75rem!important}.lg\:bottom-7{bottom:1.75rem!important}.lg\:left-7{left:1.75rem!important}.lg\:top-8{top:2rem!important}.lg\:right-8{right:2rem!important}.lg\:bottom-8{bottom:2rem!important}.lg\:left-8{left:2rem!important}.lg\:top-9{top:2.25rem!important}.lg\:right-9{right:2.25rem!important}.lg\:bottom-9{bottom:2.25rem!important}.lg\:left-9{left:2.25rem!important}.lg\:top-10{top:2.5rem!important}.lg\:right-10{right:2.5rem!important}.lg\:bottom-10{bottom:2.5rem!important}.lg\:left-10{left:2.5rem!important}.lg\:top-11{top:2.75rem!important}.lg\:right-11{right:2.75rem!important}.lg\:bottom-11{bottom:2.75rem!important}.lg\:left-11{left:2.75rem!important}.lg\:top-12{top:3rem!important}.lg\:right-12{right:3rem!important}.lg\:bottom-12{bottom:3rem!important}.lg\:left-12{left:3rem!important}.lg\:top-13{top:3.25rem!important}.lg\:right-13{right:3.25rem!important}.lg\:bottom-13{bottom:3.25rem!important}.lg\:left-13{left:3.25rem!important}.lg\:top-14{top:3.5rem!important}.lg\:right-14{right:3.5rem!important}.lg\:bottom-14{bottom:3.5rem!important}.lg\:left-14{left:3.5rem!important}.lg\:top-15{top:3.75rem!important}.lg\:right-15{right:3.75rem!important}.lg\:bottom-15{bottom:3.75rem!important}.lg\:left-15{left:3.75rem!important}.lg\:top-16{top:4rem!important}.lg\:right-16{right:4rem!important}.lg\:bottom-16{bottom:4rem!important}.lg\:left-16{left:4rem!important}.lg\:top-20{top:5rem!important}.lg\:right-20{right:5rem!important}.lg\:bottom-20{bottom:5rem!important}.lg\:left-20{left:5rem!important}.lg\:top-24{top:6rem!important}.lg\:right-24{right:6rem!important}.lg\:bottom-24{bottom:6rem!important}.lg\:left-24{left:6rem!important}.lg\:top-28{top:7rem!important}.lg\:right-28{right:7rem!important}.lg\:bottom-28{bottom:7rem!important}.lg\:left-28{left:7rem!important}.lg\:top-32{top:8rem!important}.lg\:right-32{right:8rem!important}.lg\:bottom-32{bottom:8rem!important}.lg\:left-32{left:8rem!important}.lg\:top-36{top:9rem!important}.lg\:right-36{right:9rem!important}.lg\:bottom-36{bottom:9rem!important}.lg\:left-36{left:9rem!important}.lg\:top-40{top:10rem!important}.lg\:right-40{right:10rem!important}.lg\:bottom-40{bottom:10rem!important}.lg\:left-40{left:10rem!important}.lg\:top-48{top:12rem!important}.lg\:right-48{right:12rem!important}.lg\:bottom-48{bottom:12rem!important}.lg\:left-48{left:12rem!important}.lg\:top-56{top:14rem!important}.lg\:right-56{right:14rem!important}.lg\:bottom-56{bottom:14rem!important}.lg\:left-56{left:14rem!important}.lg\:top-60{top:15rem!important}.lg\:right-60{right:15rem!important}.lg\:bottom-60{bottom:15rem!important}.lg\:left-60{left:15rem!important}.lg\:top-64{top:16rem!important}.lg\:right-64{right:16rem!important}.lg\:bottom-64{bottom:16rem!important}.lg\:left-64{left:16rem!important}.lg\:top-72{top:18rem!important}.lg\:right-72{right:18rem!important}.lg\:bottom-72{bottom:18rem!important}.lg\:left-72{left:18rem!important}.lg\:top-80{top:20rem!important}.lg\:right-80{right:20rem!important}.lg\:bottom-80{bottom:20rem!important}.lg\:left-80{left:20rem!important}.lg\:top-96{top:24rem!important}.lg\:right-96{right:24rem!important}.lg\:bottom-96{bottom:24rem!important}.lg\:left-96{left:24rem!important}.lg\:top-auto{top:auto!important}.lg\:right-auto{right:auto!important}.lg\:bottom-auto{bottom:auto!important}.lg\:left-auto{left:auto!important}.lg\:top-px{top:1px!important}.lg\:right-px{right:1px!important}.lg\:bottom-px{bottom:1px!important}.lg\:left-px{left:1px!important}.lg\:top-0\.5{top:.125rem!important}.lg\:right-0\.5{right:.125rem!important}.lg\:bottom-0\.5{bottom:.125rem!important}.lg\:left-0\.5{left:.125rem!important}.lg\:top-1\.5{top:.375rem!important}.lg\:right-1\.5{right:.375rem!important}.lg\:bottom-1\.5{bottom:.375rem!important}.lg\:left-1\.5{left:.375rem!important}.lg\:top-2\.5{top:.625rem!important}.lg\:right-2\.5{right:.625rem!important}.lg\:bottom-2\.5{bottom:.625rem!important}.lg\:left-2\.5{left:.625rem!important}.lg\:top-3\.5{top:.875rem!important}.lg\:right-3\.5{right:.875rem!important}.lg\:bottom-3\.5{bottom:.875rem!important}.lg\:left-3\.5{left:.875rem!important}.lg\:top-1\/2{top:50%!important}.lg\:right-1\/2{right:50%!important}.lg\:bottom-1\/2{bottom:50%!important}.lg\:left-1\/2{left:50%!important}.lg\:top-1\/3{top:33.333333%!important}.lg\:right-1\/3{right:33.333333%!important}.lg\:bottom-1\/3{bottom:33.333333%!important}.lg\:left-1\/3{left:33.333333%!important}.lg\:top-2\/3{top:66.666667%!important}.lg\:right-2\/3{right:66.666667%!important}.lg\:bottom-2\/3{bottom:66.666667%!important}.lg\:left-2\/3{left:66.666667%!important}.lg\:top-1\/4{top:25%!important}.lg\:right-1\/4{right:25%!important}.lg\:bottom-1\/4{bottom:25%!important}.lg\:left-1\/4{left:25%!important}.lg\:top-2\/4{top:50%!important}.lg\:right-2\/4{right:50%!important}.lg\:bottom-2\/4{bottom:50%!important}.lg\:left-2\/4{left:50%!important}.lg\:top-3\/4{top:75%!important}.lg\:right-3\/4{right:75%!important}.lg\:bottom-3\/4{bottom:75%!important}.lg\:left-3\/4{left:75%!important}.lg\:top-1\/5{top:20%!important}.lg\:right-1\/5{right:20%!important}.lg\:bottom-1\/5{bottom:20%!important}.lg\:left-1\/5{left:20%!important}.lg\:top-2\/5{top:40%!important}.lg\:right-2\/5{right:40%!important}.lg\:bottom-2\/5{bottom:40%!important}.lg\:left-2\/5{left:40%!important}.lg\:top-3\/5{top:60%!important}.lg\:right-3\/5{right:60%!important}.lg\:bottom-3\/5{bottom:60%!important}.lg\:left-3\/5{left:60%!important}.lg\:top-4\/5{top:80%!important}.lg\:right-4\/5{right:80%!important}.lg\:bottom-4\/5{bottom:80%!important}.lg\:left-4\/5{left:80%!important}.lg\:top-1\/6{top:16.666667%!important}.lg\:right-1\/6{right:16.666667%!important}.lg\:bottom-1\/6{bottom:16.666667%!important}.lg\:left-1\/6{left:16.666667%!important}.lg\:top-2\/6{top:33.333333%!important}.lg\:right-2\/6{right:33.333333%!important}.lg\:bottom-2\/6{bottom:33.333333%!important}.lg\:left-2\/6{left:33.333333%!important}.lg\:top-3\/6{top:50%!important}.lg\:right-3\/6{right:50%!important}.lg\:bottom-3\/6{bottom:50%!important}.lg\:left-3\/6{left:50%!important}.lg\:top-4\/6{top:66.666667%!important}.lg\:right-4\/6{right:66.666667%!important}.lg\:bottom-4\/6{bottom:66.666667%!important}.lg\:left-4\/6{left:66.666667%!important}.lg\:top-5\/6{top:83.333333%!important}.lg\:right-5\/6{right:83.333333%!important}.lg\:bottom-5\/6{bottom:83.333333%!important}.lg\:left-5\/6{left:83.333333%!important}.lg\:top-1\/12{top:8.333333%!important}.lg\:right-1\/12{right:8.333333%!important}.lg\:bottom-1\/12{bottom:8.333333%!important}.lg\:left-1\/12{left:8.333333%!important}.lg\:top-2\/12{top:16.666667%!important}.lg\:right-2\/12{right:16.666667%!important}.lg\:bottom-2\/12{bottom:16.666667%!important}.lg\:left-2\/12{left:16.666667%!important}.lg\:top-3\/12{top:25%!important}.lg\:right-3\/12{right:25%!important}.lg\:bottom-3\/12{bottom:25%!important}.lg\:left-3\/12{left:25%!important}.lg\:top-4\/12{top:33.333333%!important}.lg\:right-4\/12{right:33.333333%!important}.lg\:bottom-4\/12{bottom:33.333333%!important}.lg\:left-4\/12{left:33.333333%!important}.lg\:top-5\/12{top:41.666667%!important}.lg\:right-5\/12{right:41.666667%!important}.lg\:bottom-5\/12{bottom:41.666667%!important}.lg\:left-5\/12{left:41.666667%!important}.lg\:top-6\/12{top:50%!important}.lg\:right-6\/12{right:50%!important}.lg\:bottom-6\/12{bottom:50%!important}.lg\:left-6\/12{left:50%!important}.lg\:top-7\/12{top:58.333333%!important}.lg\:right-7\/12{right:58.333333%!important}.lg\:bottom-7\/12{bottom:58.333333%!important}.lg\:left-7\/12{left:58.333333%!important}.lg\:top-8\/12{top:66.666667%!important}.lg\:right-8\/12{right:66.666667%!important}.lg\:bottom-8\/12{bottom:66.666667%!important}.lg\:left-8\/12{left:66.666667%!important}.lg\:top-9\/12{top:75%!important}.lg\:right-9\/12{right:75%!important}.lg\:bottom-9\/12{bottom:75%!important}.lg\:left-9\/12{left:75%!important}.lg\:top-10\/12{top:83.333333%!important}.lg\:right-10\/12{right:83.333333%!important}.lg\:bottom-10\/12{bottom:83.333333%!important}.lg\:left-10\/12{left:83.333333%!important}.lg\:top-11\/12{top:91.666667%!important}.lg\:right-11\/12{right:91.666667%!important}.lg\:bottom-11\/12{bottom:91.666667%!important}.lg\:left-11\/12{left:91.666667%!important}.lg\:top-full{top:100%!important}.lg\:right-full{right:100%!important}.lg\:bottom-full{bottom:100%!important}.lg\:left-full{left:100%!important}[dir=ltr] .lg\:ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .lg\:ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .lg\:ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .lg\:ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .lg\:ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .lg\:ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .lg\:ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .lg\:ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .lg\:ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .lg\:ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .lg\:ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .lg\:ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .lg\:ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .lg\:ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .lg\:ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .lg\:ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .lg\:ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .lg\:ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .lg\:ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .lg\:ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .lg\:ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .lg\:ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .lg\:ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .lg\:ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .lg\:ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .lg\:ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .lg\:ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .lg\:ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .lg\:ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .lg\:ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .lg\:ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .lg\:ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .lg\:ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .lg\:ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .lg\:ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .lg\:ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .lg\:ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .lg\:ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .lg\:ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .lg\:ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .lg\:ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .lg\:ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .lg\:ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .lg\:ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .lg\:ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .lg\:ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .lg\:ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .lg\:ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .lg\:ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .lg\:ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .lg\:ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .lg\:ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .lg\:ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .lg\:ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .lg\:ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .lg\:ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .lg\:ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .lg\:ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .lg\:ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .lg\:ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .lg\:ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .lg\:ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .lg\:ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .lg\:ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .lg\:ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .lg\:ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .lg\:ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .lg\:ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .lg\:ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .lg\:ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .lg\:ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .lg\:ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .lg\:ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .lg\:ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .lg\:ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .lg\:ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .lg\:ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .lg\:ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .lg\:ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .lg\:ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .lg\:ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .lg\:ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .lg\:ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .lg\:ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .lg\:ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .lg\:ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .lg\:ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .lg\:ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .lg\:ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .lg\:ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .lg\:ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .lg\:ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .lg\:ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .lg\:ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .lg\:ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .lg\:ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .lg\:ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .lg\:ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .lg\:ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .lg\:ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .lg\:ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .lg\:ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .lg\:ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .lg\:ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .lg\:ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .lg\:ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .lg\:ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .lg\:ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .lg\:ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .lg\:ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .lg\:ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .lg\:ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .lg\:ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .lg\:ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .lg\:ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .lg\:ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .lg\:ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .lg\:ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .lg\:ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .lg\:ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .lg\:ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .lg\:ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .lg\:ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .lg\:ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .lg\:ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .lg\:ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .lg\:ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .lg\:ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .lg\:ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .lg\:ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .lg\:ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .lg\:ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .lg\:ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .lg\:ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .lg\:ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .lg\:ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .lg\:ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .lg\:ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .lg\:ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .lg\:ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .lg\:ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .lg\:ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .lg\:ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .lg\:ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .lg\:ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .lg\:ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .lg\:ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .lg\:ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .lg\:ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .lg\:ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .lg\:ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .lg\:ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .lg\:ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .lg\:ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .lg\:ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .lg\:ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .lg\:ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .lg\:ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .lg\:ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .lg\:ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .lg\:ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .lg\:ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .lg\:ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .lg\:ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .lg\:ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .lg\:ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .lg\:ltr\:top-0{top:0!important}[dir=ltr] .lg\:ltr\:right-0{right:0!important}[dir=ltr] .lg\:ltr\:bottom-0{bottom:0!important}[dir=ltr] .lg\:ltr\:left-0{left:0!important}[dir=ltr] .lg\:ltr\:top-1{top:.25rem!important}[dir=ltr] .lg\:ltr\:right-1{right:.25rem!important}[dir=ltr] .lg\:ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .lg\:ltr\:left-1{left:.25rem!important}[dir=ltr] .lg\:ltr\:top-2{top:.5rem!important}[dir=ltr] .lg\:ltr\:right-2{right:.5rem!important}[dir=ltr] .lg\:ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .lg\:ltr\:left-2{left:.5rem!important}[dir=ltr] .lg\:ltr\:top-3{top:.75rem!important}[dir=ltr] .lg\:ltr\:right-3{right:.75rem!important}[dir=ltr] .lg\:ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .lg\:ltr\:left-3{left:.75rem!important}[dir=ltr] .lg\:ltr\:top-4{top:1rem!important}[dir=ltr] .lg\:ltr\:right-4{right:1rem!important}[dir=ltr] .lg\:ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .lg\:ltr\:left-4{left:1rem!important}[dir=ltr] .lg\:ltr\:top-5{top:1.25rem!important}[dir=ltr] .lg\:ltr\:right-5{right:1.25rem!important}[dir=ltr] .lg\:ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .lg\:ltr\:left-5{left:1.25rem!important}[dir=ltr] .lg\:ltr\:top-6{top:1.5rem!important}[dir=ltr] .lg\:ltr\:right-6{right:1.5rem!important}[dir=ltr] .lg\:ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .lg\:ltr\:left-6{left:1.5rem!important}[dir=ltr] .lg\:ltr\:top-7{top:1.75rem!important}[dir=ltr] .lg\:ltr\:right-7{right:1.75rem!important}[dir=ltr] .lg\:ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .lg\:ltr\:left-7{left:1.75rem!important}[dir=ltr] .lg\:ltr\:top-8{top:2rem!important}[dir=ltr] .lg\:ltr\:right-8{right:2rem!important}[dir=ltr] .lg\:ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .lg\:ltr\:left-8{left:2rem!important}[dir=ltr] .lg\:ltr\:top-9{top:2.25rem!important}[dir=ltr] .lg\:ltr\:right-9{right:2.25rem!important}[dir=ltr] .lg\:ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .lg\:ltr\:left-9{left:2.25rem!important}[dir=ltr] .lg\:ltr\:top-10{top:2.5rem!important}[dir=ltr] .lg\:ltr\:right-10{right:2.5rem!important}[dir=ltr] .lg\:ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .lg\:ltr\:left-10{left:2.5rem!important}[dir=ltr] .lg\:ltr\:top-11{top:2.75rem!important}[dir=ltr] .lg\:ltr\:right-11{right:2.75rem!important}[dir=ltr] .lg\:ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .lg\:ltr\:left-11{left:2.75rem!important}[dir=ltr] .lg\:ltr\:top-12{top:3rem!important}[dir=ltr] .lg\:ltr\:right-12{right:3rem!important}[dir=ltr] .lg\:ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .lg\:ltr\:left-12{left:3rem!important}[dir=ltr] .lg\:ltr\:top-13{top:3.25rem!important}[dir=ltr] .lg\:ltr\:right-13{right:3.25rem!important}[dir=ltr] .lg\:ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .lg\:ltr\:left-13{left:3.25rem!important}[dir=ltr] .lg\:ltr\:top-14{top:3.5rem!important}[dir=ltr] .lg\:ltr\:right-14{right:3.5rem!important}[dir=ltr] .lg\:ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .lg\:ltr\:left-14{left:3.5rem!important}[dir=ltr] .lg\:ltr\:top-15{top:3.75rem!important}[dir=ltr] .lg\:ltr\:right-15{right:3.75rem!important}[dir=ltr] .lg\:ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .lg\:ltr\:left-15{left:3.75rem!important}[dir=ltr] .lg\:ltr\:top-16{top:4rem!important}[dir=ltr] .lg\:ltr\:right-16{right:4rem!important}[dir=ltr] .lg\:ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .lg\:ltr\:left-16{left:4rem!important}[dir=ltr] .lg\:ltr\:top-20{top:5rem!important}[dir=ltr] .lg\:ltr\:right-20{right:5rem!important}[dir=ltr] .lg\:ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .lg\:ltr\:left-20{left:5rem!important}[dir=ltr] .lg\:ltr\:top-24{top:6rem!important}[dir=ltr] .lg\:ltr\:right-24{right:6rem!important}[dir=ltr] .lg\:ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .lg\:ltr\:left-24{left:6rem!important}[dir=ltr] .lg\:ltr\:top-28{top:7rem!important}[dir=ltr] .lg\:ltr\:right-28{right:7rem!important}[dir=ltr] .lg\:ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .lg\:ltr\:left-28{left:7rem!important}[dir=ltr] .lg\:ltr\:top-32{top:8rem!important}[dir=ltr] .lg\:ltr\:right-32{right:8rem!important}[dir=ltr] .lg\:ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .lg\:ltr\:left-32{left:8rem!important}[dir=ltr] .lg\:ltr\:top-36{top:9rem!important}[dir=ltr] .lg\:ltr\:right-36{right:9rem!important}[dir=ltr] .lg\:ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .lg\:ltr\:left-36{left:9rem!important}[dir=ltr] .lg\:ltr\:top-40{top:10rem!important}[dir=ltr] .lg\:ltr\:right-40{right:10rem!important}[dir=ltr] .lg\:ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .lg\:ltr\:left-40{left:10rem!important}[dir=ltr] .lg\:ltr\:top-48{top:12rem!important}[dir=ltr] .lg\:ltr\:right-48{right:12rem!important}[dir=ltr] .lg\:ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .lg\:ltr\:left-48{left:12rem!important}[dir=ltr] .lg\:ltr\:top-56{top:14rem!important}[dir=ltr] .lg\:ltr\:right-56{right:14rem!important}[dir=ltr] .lg\:ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .lg\:ltr\:left-56{left:14rem!important}[dir=ltr] .lg\:ltr\:top-60{top:15rem!important}[dir=ltr] .lg\:ltr\:right-60{right:15rem!important}[dir=ltr] .lg\:ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .lg\:ltr\:left-60{left:15rem!important}[dir=ltr] .lg\:ltr\:top-64{top:16rem!important}[dir=ltr] .lg\:ltr\:right-64{right:16rem!important}[dir=ltr] .lg\:ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .lg\:ltr\:left-64{left:16rem!important}[dir=ltr] .lg\:ltr\:top-72{top:18rem!important}[dir=ltr] .lg\:ltr\:right-72{right:18rem!important}[dir=ltr] .lg\:ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .lg\:ltr\:left-72{left:18rem!important}[dir=ltr] .lg\:ltr\:top-80{top:20rem!important}[dir=ltr] .lg\:ltr\:right-80{right:20rem!important}[dir=ltr] .lg\:ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .lg\:ltr\:left-80{left:20rem!important}[dir=ltr] .lg\:ltr\:top-96{top:24rem!important}[dir=ltr] .lg\:ltr\:right-96{right:24rem!important}[dir=ltr] .lg\:ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .lg\:ltr\:left-96{left:24rem!important}[dir=ltr] .lg\:ltr\:top-auto{top:auto!important}[dir=ltr] .lg\:ltr\:right-auto{right:auto!important}[dir=ltr] .lg\:ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .lg\:ltr\:left-auto{left:auto!important}[dir=ltr] .lg\:ltr\:top-px{top:1px!important}[dir=ltr] .lg\:ltr\:right-px{right:1px!important}[dir=ltr] .lg\:ltr\:bottom-px{bottom:1px!important}[dir=ltr] .lg\:ltr\:left-px{left:1px!important}[dir=ltr] .lg\:ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .lg\:ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .lg\:ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .lg\:ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .lg\:ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .lg\:ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .lg\:ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .lg\:ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .lg\:ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .lg\:ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .lg\:ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .lg\:ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .lg\:ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .lg\:ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .lg\:ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .lg\:ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .lg\:ltr\:top-1\/2{top:50%!important}[dir=ltr] .lg\:ltr\:right-1\/2{right:50%!important}[dir=ltr] .lg\:ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .lg\:ltr\:left-1\/2{left:50%!important}[dir=ltr] .lg\:ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .lg\:ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .lg\:ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .lg\:ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .lg\:ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .lg\:ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .lg\:ltr\:top-1\/4{top:25%!important}[dir=ltr] .lg\:ltr\:right-1\/4{right:25%!important}[dir=ltr] .lg\:ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .lg\:ltr\:left-1\/4{left:25%!important}[dir=ltr] .lg\:ltr\:top-2\/4{top:50%!important}[dir=ltr] .lg\:ltr\:right-2\/4{right:50%!important}[dir=ltr] .lg\:ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .lg\:ltr\:left-2\/4{left:50%!important}[dir=ltr] .lg\:ltr\:top-3\/4{top:75%!important}[dir=ltr] .lg\:ltr\:right-3\/4{right:75%!important}[dir=ltr] .lg\:ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .lg\:ltr\:left-3\/4{left:75%!important}[dir=ltr] .lg\:ltr\:top-1\/5{top:20%!important}[dir=ltr] .lg\:ltr\:right-1\/5{right:20%!important}[dir=ltr] .lg\:ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .lg\:ltr\:left-1\/5{left:20%!important}[dir=ltr] .lg\:ltr\:top-2\/5{top:40%!important}[dir=ltr] .lg\:ltr\:right-2\/5{right:40%!important}[dir=ltr] .lg\:ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .lg\:ltr\:left-2\/5{left:40%!important}[dir=ltr] .lg\:ltr\:top-3\/5{top:60%!important}[dir=ltr] .lg\:ltr\:right-3\/5{right:60%!important}[dir=ltr] .lg\:ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .lg\:ltr\:left-3\/5{left:60%!important}[dir=ltr] .lg\:ltr\:top-4\/5{top:80%!important}[dir=ltr] .lg\:ltr\:right-4\/5{right:80%!important}[dir=ltr] .lg\:ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .lg\:ltr\:left-4\/5{left:80%!important}[dir=ltr] .lg\:ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .lg\:ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .lg\:ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .lg\:ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .lg\:ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .lg\:ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .lg\:ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .lg\:ltr\:top-3\/6{top:50%!important}[dir=ltr] .lg\:ltr\:right-3\/6{right:50%!important}[dir=ltr] .lg\:ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .lg\:ltr\:left-3\/6{left:50%!important}[dir=ltr] .lg\:ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .lg\:ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .lg\:ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .lg\:ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .lg\:ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .lg\:ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .lg\:ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .lg\:ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .lg\:ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .lg\:ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .lg\:ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .lg\:ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .lg\:ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .lg\:ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .lg\:ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .lg\:ltr\:top-3\/12{top:25%!important}[dir=ltr] .lg\:ltr\:right-3\/12{right:25%!important}[dir=ltr] .lg\:ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .lg\:ltr\:left-3\/12{left:25%!important}[dir=ltr] .lg\:ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .lg\:ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .lg\:ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .lg\:ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .lg\:ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .lg\:ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .lg\:ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .lg\:ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .lg\:ltr\:top-6\/12{top:50%!important}[dir=ltr] .lg\:ltr\:right-6\/12{right:50%!important}[dir=ltr] .lg\:ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .lg\:ltr\:left-6\/12{left:50%!important}[dir=ltr] .lg\:ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .lg\:ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .lg\:ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .lg\:ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .lg\:ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .lg\:ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .lg\:ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .lg\:ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .lg\:ltr\:top-9\/12{top:75%!important}[dir=ltr] .lg\:ltr\:right-9\/12{right:75%!important}[dir=ltr] .lg\:ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .lg\:ltr\:left-9\/12{left:75%!important}[dir=ltr] .lg\:ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .lg\:ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .lg\:ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .lg\:ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .lg\:ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .lg\:ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .lg\:ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .lg\:ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .lg\:ltr\:top-full{top:100%!important}[dir=ltr] .lg\:ltr\:right-full{right:100%!important}[dir=ltr] .lg\:ltr\:bottom-full{bottom:100%!important}[dir=ltr] .lg\:ltr\:left-full{left:100%!important}[dir=rtl] .lg\:rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .lg\:rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .lg\:rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .lg\:rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .lg\:rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .lg\:rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .lg\:rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .lg\:rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .lg\:rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .lg\:rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .lg\:rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .lg\:rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .lg\:rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .lg\:rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .lg\:rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .lg\:rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .lg\:rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .lg\:rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .lg\:rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .lg\:rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .lg\:rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .lg\:rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .lg\:rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .lg\:rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .lg\:rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .lg\:rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .lg\:rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .lg\:rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .lg\:rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .lg\:rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .lg\:rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .lg\:rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .lg\:rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .lg\:rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .lg\:rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .lg\:rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .lg\:rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .lg\:rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .lg\:rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .lg\:rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .lg\:rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .lg\:rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .lg\:rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .lg\:rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .lg\:rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .lg\:rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .lg\:rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .lg\:rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .lg\:rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .lg\:rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .lg\:rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .lg\:rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .lg\:rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .lg\:rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .lg\:rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .lg\:rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .lg\:rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .lg\:rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .lg\:rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .lg\:rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .lg\:rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .lg\:rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .lg\:rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .lg\:rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .lg\:rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .lg\:rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .lg\:rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .lg\:rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .lg\:rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .lg\:rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .lg\:rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .lg\:rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .lg\:rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .lg\:rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .lg\:rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .lg\:rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .lg\:rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .lg\:rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .lg\:rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .lg\:rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .lg\:rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .lg\:rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .lg\:rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .lg\:rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .lg\:rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .lg\:rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .lg\:rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .lg\:rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .lg\:rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .lg\:rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .lg\:rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .lg\:rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .lg\:rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .lg\:rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .lg\:rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .lg\:rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .lg\:rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .lg\:rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .lg\:rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .lg\:rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .lg\:rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .lg\:rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .lg\:rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .lg\:rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .lg\:rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .lg\:rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .lg\:rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .lg\:rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .lg\:rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .lg\:rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .lg\:rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .lg\:rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .lg\:rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .lg\:rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .lg\:rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .lg\:rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .lg\:rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .lg\:rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .lg\:rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .lg\:rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .lg\:rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .lg\:rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .lg\:rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .lg\:rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .lg\:rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .lg\:rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .lg\:rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .lg\:rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .lg\:rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .lg\:rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .lg\:rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .lg\:rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .lg\:rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .lg\:rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .lg\:rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .lg\:rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .lg\:rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .lg\:rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .lg\:rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .lg\:rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .lg\:rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .lg\:rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .lg\:rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .lg\:rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .lg\:rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .lg\:rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .lg\:rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .lg\:rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .lg\:rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .lg\:rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .lg\:rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .lg\:rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .lg\:rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .lg\:rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .lg\:rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .lg\:rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .lg\:rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .lg\:rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .lg\:rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .lg\:rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .lg\:rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .lg\:rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .lg\:rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .lg\:rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .lg\:rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .lg\:rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .lg\:rtl\:top-0{top:0!important}[dir=rtl] .lg\:rtl\:right-0{right:0!important}[dir=rtl] .lg\:rtl\:bottom-0{bottom:0!important}[dir=rtl] .lg\:rtl\:left-0{left:0!important}[dir=rtl] .lg\:rtl\:top-1{top:.25rem!important}[dir=rtl] .lg\:rtl\:right-1{right:.25rem!important}[dir=rtl] .lg\:rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .lg\:rtl\:left-1{left:.25rem!important}[dir=rtl] .lg\:rtl\:top-2{top:.5rem!important}[dir=rtl] .lg\:rtl\:right-2{right:.5rem!important}[dir=rtl] .lg\:rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .lg\:rtl\:left-2{left:.5rem!important}[dir=rtl] .lg\:rtl\:top-3{top:.75rem!important}[dir=rtl] .lg\:rtl\:right-3{right:.75rem!important}[dir=rtl] .lg\:rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .lg\:rtl\:left-3{left:.75rem!important}[dir=rtl] .lg\:rtl\:top-4{top:1rem!important}[dir=rtl] .lg\:rtl\:right-4{right:1rem!important}[dir=rtl] .lg\:rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .lg\:rtl\:left-4{left:1rem!important}[dir=rtl] .lg\:rtl\:top-5{top:1.25rem!important}[dir=rtl] .lg\:rtl\:right-5{right:1.25rem!important}[dir=rtl] .lg\:rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .lg\:rtl\:left-5{left:1.25rem!important}[dir=rtl] .lg\:rtl\:top-6{top:1.5rem!important}[dir=rtl] .lg\:rtl\:right-6{right:1.5rem!important}[dir=rtl] .lg\:rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .lg\:rtl\:left-6{left:1.5rem!important}[dir=rtl] .lg\:rtl\:top-7{top:1.75rem!important}[dir=rtl] .lg\:rtl\:right-7{right:1.75rem!important}[dir=rtl] .lg\:rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .lg\:rtl\:left-7{left:1.75rem!important}[dir=rtl] .lg\:rtl\:top-8{top:2rem!important}[dir=rtl] .lg\:rtl\:right-8{right:2rem!important}[dir=rtl] .lg\:rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .lg\:rtl\:left-8{left:2rem!important}[dir=rtl] .lg\:rtl\:top-9{top:2.25rem!important}[dir=rtl] .lg\:rtl\:right-9{right:2.25rem!important}[dir=rtl] .lg\:rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .lg\:rtl\:left-9{left:2.25rem!important}[dir=rtl] .lg\:rtl\:top-10{top:2.5rem!important}[dir=rtl] .lg\:rtl\:right-10{right:2.5rem!important}[dir=rtl] .lg\:rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .lg\:rtl\:left-10{left:2.5rem!important}[dir=rtl] .lg\:rtl\:top-11{top:2.75rem!important}[dir=rtl] .lg\:rtl\:right-11{right:2.75rem!important}[dir=rtl] .lg\:rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .lg\:rtl\:left-11{left:2.75rem!important}[dir=rtl] .lg\:rtl\:top-12{top:3rem!important}[dir=rtl] .lg\:rtl\:right-12{right:3rem!important}[dir=rtl] .lg\:rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .lg\:rtl\:left-12{left:3rem!important}[dir=rtl] .lg\:rtl\:top-13{top:3.25rem!important}[dir=rtl] .lg\:rtl\:right-13{right:3.25rem!important}[dir=rtl] .lg\:rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .lg\:rtl\:left-13{left:3.25rem!important}[dir=rtl] .lg\:rtl\:top-14{top:3.5rem!important}[dir=rtl] .lg\:rtl\:right-14{right:3.5rem!important}[dir=rtl] .lg\:rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .lg\:rtl\:left-14{left:3.5rem!important}[dir=rtl] .lg\:rtl\:top-15{top:3.75rem!important}[dir=rtl] .lg\:rtl\:right-15{right:3.75rem!important}[dir=rtl] .lg\:rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .lg\:rtl\:left-15{left:3.75rem!important}[dir=rtl] .lg\:rtl\:top-16{top:4rem!important}[dir=rtl] .lg\:rtl\:right-16{right:4rem!important}[dir=rtl] .lg\:rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .lg\:rtl\:left-16{left:4rem!important}[dir=rtl] .lg\:rtl\:top-20{top:5rem!important}[dir=rtl] .lg\:rtl\:right-20{right:5rem!important}[dir=rtl] .lg\:rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .lg\:rtl\:left-20{left:5rem!important}[dir=rtl] .lg\:rtl\:top-24{top:6rem!important}[dir=rtl] .lg\:rtl\:right-24{right:6rem!important}[dir=rtl] .lg\:rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .lg\:rtl\:left-24{left:6rem!important}[dir=rtl] .lg\:rtl\:top-28{top:7rem!important}[dir=rtl] .lg\:rtl\:right-28{right:7rem!important}[dir=rtl] .lg\:rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .lg\:rtl\:left-28{left:7rem!important}[dir=rtl] .lg\:rtl\:top-32{top:8rem!important}[dir=rtl] .lg\:rtl\:right-32{right:8rem!important}[dir=rtl] .lg\:rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .lg\:rtl\:left-32{left:8rem!important}[dir=rtl] .lg\:rtl\:top-36{top:9rem!important}[dir=rtl] .lg\:rtl\:right-36{right:9rem!important}[dir=rtl] .lg\:rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .lg\:rtl\:left-36{left:9rem!important}[dir=rtl] .lg\:rtl\:top-40{top:10rem!important}[dir=rtl] .lg\:rtl\:right-40{right:10rem!important}[dir=rtl] .lg\:rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .lg\:rtl\:left-40{left:10rem!important}[dir=rtl] .lg\:rtl\:top-48{top:12rem!important}[dir=rtl] .lg\:rtl\:right-48{right:12rem!important}[dir=rtl] .lg\:rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .lg\:rtl\:left-48{left:12rem!important}[dir=rtl] .lg\:rtl\:top-56{top:14rem!important}[dir=rtl] .lg\:rtl\:right-56{right:14rem!important}[dir=rtl] .lg\:rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .lg\:rtl\:left-56{left:14rem!important}[dir=rtl] .lg\:rtl\:top-60{top:15rem!important}[dir=rtl] .lg\:rtl\:right-60{right:15rem!important}[dir=rtl] .lg\:rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .lg\:rtl\:left-60{left:15rem!important}[dir=rtl] .lg\:rtl\:top-64{top:16rem!important}[dir=rtl] .lg\:rtl\:right-64{right:16rem!important}[dir=rtl] .lg\:rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .lg\:rtl\:left-64{left:16rem!important}[dir=rtl] .lg\:rtl\:top-72{top:18rem!important}[dir=rtl] .lg\:rtl\:right-72{right:18rem!important}[dir=rtl] .lg\:rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .lg\:rtl\:left-72{left:18rem!important}[dir=rtl] .lg\:rtl\:top-80{top:20rem!important}[dir=rtl] .lg\:rtl\:right-80{right:20rem!important}[dir=rtl] .lg\:rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .lg\:rtl\:left-80{left:20rem!important}[dir=rtl] .lg\:rtl\:top-96{top:24rem!important}[dir=rtl] .lg\:rtl\:right-96{right:24rem!important}[dir=rtl] .lg\:rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .lg\:rtl\:left-96{left:24rem!important}[dir=rtl] .lg\:rtl\:top-auto{top:auto!important}[dir=rtl] .lg\:rtl\:right-auto{right:auto!important}[dir=rtl] .lg\:rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .lg\:rtl\:left-auto{left:auto!important}[dir=rtl] .lg\:rtl\:top-px{top:1px!important}[dir=rtl] .lg\:rtl\:right-px{right:1px!important}[dir=rtl] .lg\:rtl\:bottom-px{bottom:1px!important}[dir=rtl] .lg\:rtl\:left-px{left:1px!important}[dir=rtl] .lg\:rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .lg\:rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .lg\:rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .lg\:rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .lg\:rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .lg\:rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .lg\:rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .lg\:rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .lg\:rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .lg\:rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .lg\:rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .lg\:rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .lg\:rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .lg\:rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .lg\:rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .lg\:rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .lg\:rtl\:top-1\/2{top:50%!important}[dir=rtl] .lg\:rtl\:right-1\/2{right:50%!important}[dir=rtl] .lg\:rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .lg\:rtl\:left-1\/2{left:50%!important}[dir=rtl] .lg\:rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .lg\:rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .lg\:rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .lg\:rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .lg\:rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .lg\:rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .lg\:rtl\:top-1\/4{top:25%!important}[dir=rtl] .lg\:rtl\:right-1\/4{right:25%!important}[dir=rtl] .lg\:rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .lg\:rtl\:left-1\/4{left:25%!important}[dir=rtl] .lg\:rtl\:top-2\/4{top:50%!important}[dir=rtl] .lg\:rtl\:right-2\/4{right:50%!important}[dir=rtl] .lg\:rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .lg\:rtl\:left-2\/4{left:50%!important}[dir=rtl] .lg\:rtl\:top-3\/4{top:75%!important}[dir=rtl] .lg\:rtl\:right-3\/4{right:75%!important}[dir=rtl] .lg\:rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .lg\:rtl\:left-3\/4{left:75%!important}[dir=rtl] .lg\:rtl\:top-1\/5{top:20%!important}[dir=rtl] .lg\:rtl\:right-1\/5{right:20%!important}[dir=rtl] .lg\:rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .lg\:rtl\:left-1\/5{left:20%!important}[dir=rtl] .lg\:rtl\:top-2\/5{top:40%!important}[dir=rtl] .lg\:rtl\:right-2\/5{right:40%!important}[dir=rtl] .lg\:rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .lg\:rtl\:left-2\/5{left:40%!important}[dir=rtl] .lg\:rtl\:top-3\/5{top:60%!important}[dir=rtl] .lg\:rtl\:right-3\/5{right:60%!important}[dir=rtl] .lg\:rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .lg\:rtl\:left-3\/5{left:60%!important}[dir=rtl] .lg\:rtl\:top-4\/5{top:80%!important}[dir=rtl] .lg\:rtl\:right-4\/5{right:80%!important}[dir=rtl] .lg\:rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .lg\:rtl\:left-4\/5{left:80%!important}[dir=rtl] .lg\:rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .lg\:rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .lg\:rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .lg\:rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .lg\:rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .lg\:rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .lg\:rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .lg\:rtl\:top-3\/6{top:50%!important}[dir=rtl] .lg\:rtl\:right-3\/6{right:50%!important}[dir=rtl] .lg\:rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .lg\:rtl\:left-3\/6{left:50%!important}[dir=rtl] .lg\:rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .lg\:rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .lg\:rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .lg\:rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .lg\:rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .lg\:rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .lg\:rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .lg\:rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .lg\:rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .lg\:rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .lg\:rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .lg\:rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .lg\:rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .lg\:rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .lg\:rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .lg\:rtl\:top-3\/12{top:25%!important}[dir=rtl] .lg\:rtl\:right-3\/12{right:25%!important}[dir=rtl] .lg\:rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .lg\:rtl\:left-3\/12{left:25%!important}[dir=rtl] .lg\:rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .lg\:rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .lg\:rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .lg\:rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .lg\:rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .lg\:rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .lg\:rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .lg\:rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .lg\:rtl\:top-6\/12{top:50%!important}[dir=rtl] .lg\:rtl\:right-6\/12{right:50%!important}[dir=rtl] .lg\:rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .lg\:rtl\:left-6\/12{left:50%!important}[dir=rtl] .lg\:rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .lg\:rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .lg\:rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .lg\:rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .lg\:rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .lg\:rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .lg\:rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .lg\:rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .lg\:rtl\:top-9\/12{top:75%!important}[dir=rtl] .lg\:rtl\:right-9\/12{right:75%!important}[dir=rtl] .lg\:rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .lg\:rtl\:left-9\/12{left:75%!important}[dir=rtl] .lg\:rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .lg\:rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .lg\:rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .lg\:rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .lg\:rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .lg\:rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .lg\:rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .lg\:rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .lg\:rtl\:top-full{top:100%!important}[dir=rtl] .lg\:rtl\:right-full{right:100%!important}[dir=rtl] .lg\:rtl\:bottom-full{bottom:100%!important}[dir=rtl] .lg\:rtl\:left-full{left:100%!important}.lg\:resize-none{resize:none!important}.lg\:resize-y{resize:vertical!important}.lg\:resize-x{resize:horizontal!important}.lg\:resize{resize:both!important}.lg\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.lg\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.lg\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.lg\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.lg\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.lg\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.lg\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.lg\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.lg\:shadow-none{box-shadow:none!important}.group:focus .lg\:group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .lg\:group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .lg\:group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .lg\:group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .lg\:group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .lg\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .lg\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .lg\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .lg\:group-focus\:shadow-none{box-shadow:none!important}.lg\:hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.lg\:hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.lg\:hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.lg\:hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.lg\:hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.lg\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.lg\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.lg\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.lg\:hover\:shadow-none:hover{box-shadow:none!important}.lg\:focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.lg\:focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.lg\:focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.lg\:focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.lg\:focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.lg\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.lg\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.lg\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.lg\:focus\:shadow-none:focus{box-shadow:none!important}.lg\:fill-current{fill:currentColor!important}.lg\:stroke-current{stroke:currentColor!important}.lg\:stroke-0{stroke-width:0!important}.lg\:stroke-1{stroke-width:1!important}.lg\:stroke-2{stroke-width:2!important}.lg\:table-auto{table-layout:auto!important}.lg\:table-fixed{table-layout:fixed!important}.lg\:text-left{text-align:left!important}.lg\:text-center{text-align:center!important}.lg\:text-right{text-align:right!important}.lg\:text-justify{text-align:justify!important}.lg\:text-transparent{color:transparent!important}.lg\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.lg\:text-white-70{color:hsla(0,0%,100%,.7)!important}.lg\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.lg\:text-blackest-70{color:rgba(0,0,0,.7)!important}.lg\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.lg\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.lg\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.lg\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.lg\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.lg\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.lg\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.lg\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.lg\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.lg\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.lg\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.lg\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.lg\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.lg\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.lg\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.lg\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.lg\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.lg\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.lg\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.lg\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.lg\:hover\:text-transparent:hover{color:transparent!important}.lg\:hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.lg\:hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.lg\:hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.lg\:hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.lg\:hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.lg\:hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.lg\:hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.lg\:hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.lg\:hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.lg\:hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.lg\:hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.lg\:hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.lg\:hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.lg\:hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.lg\:hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.lg\:hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.lg\:hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.lg\:hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.lg\:hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.lg\:hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.lg\:hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.lg\:hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.lg\:hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.lg\:hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.lg\:focus\:text-transparent:focus{color:transparent!important}.lg\:focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.lg\:focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.lg\:focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.lg\:focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.lg\:focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.lg\:focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.lg\:focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.lg\:focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.lg\:focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.lg\:focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.lg\:focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.lg\:focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.lg\:focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.lg\:focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.lg\:focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.lg\:focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.lg\:focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.lg\:focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.lg\:focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.lg\:focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.lg\:focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.lg\:focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.lg\:focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.lg\:focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-transparent{color:transparent!important}.group:hover .lg\:group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .lg\:group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .lg\:group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .lg\:group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .lg\:group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.lg\:text-opacity-0{--text-opacity:0!important}.lg\:text-opacity-25{--text-opacity:0.25!important}.lg\:text-opacity-50{--text-opacity:0.5!important}.lg\:text-opacity-75{--text-opacity:0.75!important}.lg\:text-opacity-100{--text-opacity:1!important}.lg\:hover\:text-opacity-0:hover{--text-opacity:0!important}.lg\:hover\:text-opacity-25:hover{--text-opacity:0.25!important}.lg\:hover\:text-opacity-50:hover{--text-opacity:0.5!important}.lg\:hover\:text-opacity-75:hover{--text-opacity:0.75!important}.lg\:hover\:text-opacity-100:hover{--text-opacity:1!important}.lg\:focus\:text-opacity-0:focus{--text-opacity:0!important}.lg\:focus\:text-opacity-25:focus{--text-opacity:0.25!important}.lg\:focus\:text-opacity-50:focus{--text-opacity:0.5!important}.lg\:focus\:text-opacity-75:focus{--text-opacity:0.75!important}.lg\:focus\:text-opacity-100:focus{--text-opacity:1!important}.lg\:italic{font-style:italic!important}.lg\:not-italic{font-style:normal!important}.lg\:uppercase{text-transform:uppercase!important}.lg\:lowercase{text-transform:lowercase!important}.lg\:capitalize{text-transform:capitalize!important}.lg\:normal-case{text-transform:none!important}.lg\:underline{text-decoration:underline!important}.lg\:line-through{text-decoration:line-through!important}.lg\:no-underline{text-decoration:none!important}.group:hover .lg\:group-hover\:underline{text-decoration:underline!important}.group:hover .lg\:group-hover\:line-through{text-decoration:line-through!important}.group:hover .lg\:group-hover\:no-underline{text-decoration:none!important}.group:focus .lg\:group-focus\:underline{text-decoration:underline!important}.group:focus .lg\:group-focus\:line-through{text-decoration:line-through!important}.group:focus .lg\:group-focus\:no-underline{text-decoration:none!important}.lg\:hover\:underline:hover{text-decoration:underline!important}.lg\:hover\:line-through:hover{text-decoration:line-through!important}.lg\:hover\:no-underline:hover{text-decoration:none!important}.lg\:focus\:underline:focus{text-decoration:underline!important}.lg\:focus\:line-through:focus{text-decoration:line-through!important}.lg\:focus\:no-underline:focus{text-decoration:none!important}.lg\:antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.lg\:subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.lg\:diagonal-fractions,.lg\:lining-nums,.lg\:oldstyle-nums,.lg\:ordinal,.lg\:proportional-nums,.lg\:slashed-zero,.lg\:stacked-fractions,.lg\:tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.lg\:normal-nums{font-variant-numeric:normal!important}.lg\:ordinal{--font-variant-numeric-ordinal:ordinal!important}.lg\:slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.lg\:lining-nums{--font-variant-numeric-figure:lining-nums!important}.lg\:oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.lg\:proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.lg\:tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.lg\:diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.lg\:stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.lg\:tracking-tighter{letter-spacing:-.05em!important}.lg\:tracking-tight{letter-spacing:-.025em!important}.lg\:tracking-normal{letter-spacing:0!important}.lg\:tracking-wide{letter-spacing:.025em!important}.lg\:tracking-wider{letter-spacing:.05em!important}.lg\:tracking-widest{letter-spacing:.1em!important}.lg\:select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.lg\:select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.lg\:select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.lg\:select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.lg\:align-baseline{vertical-align:baseline!important}.lg\:align-top{vertical-align:top!important}.lg\:align-middle{vertical-align:middle!important}.lg\:align-bottom{vertical-align:bottom!important}.lg\:align-text-top{vertical-align:text-top!important}.lg\:align-text-bottom{vertical-align:text-bottom!important}.lg\:visible{visibility:visible!important}.lg\:invisible{visibility:hidden!important}.lg\:whitespace-normal{white-space:normal!important}.lg\:whitespace-no-wrap{white-space:nowrap!important}.lg\:whitespace-pre{white-space:pre!important}.lg\:whitespace-pre-line{white-space:pre-line!important}.lg\:whitespace-pre-wrap{white-space:pre-wrap!important}.lg\:break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.lg\:break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.lg\:break-all{word-break:break-all!important}.lg\:truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.lg\:w-0{width:0!important}.lg\:w-1{width:.25rem!important}.lg\:w-2{width:.5rem!important}.lg\:w-3{width:.75rem!important}.lg\:w-4{width:1rem!important}.lg\:w-5{width:1.25rem!important}.lg\:w-6{width:1.5rem!important}.lg\:w-7{width:1.75rem!important}.lg\:w-8{width:2rem!important}.lg\:w-9{width:2.25rem!important}.lg\:w-10{width:2.5rem!important}.lg\:w-11{width:2.75rem!important}.lg\:w-12{width:3rem!important}.lg\:w-13{width:3.25rem!important}.lg\:w-14{width:3.5rem!important}.lg\:w-15{width:3.75rem!important}.lg\:w-16{width:4rem!important}.lg\:w-20{width:5rem!important}.lg\:w-24{width:6rem!important}.lg\:w-28{width:7rem!important}.lg\:w-32{width:8rem!important}.lg\:w-36{width:9rem!important}.lg\:w-40{width:10rem!important}.lg\:w-48{width:12rem!important}.lg\:w-56{width:14rem!important}.lg\:w-60{width:15rem!important}.lg\:w-64{width:16rem!important}.lg\:w-72{width:18rem!important}.lg\:w-80{width:20rem!important}.lg\:w-96{width:24rem!important}.lg\:w-auto{width:auto!important}.lg\:w-px{width:1px!important}.lg\:w-0\.5{width:.125rem!important}.lg\:w-1\.5{width:.375rem!important}.lg\:w-2\.5{width:.625rem!important}.lg\:w-3\.5{width:.875rem!important}.lg\:w-1\/2{width:50%!important}.lg\:w-1\/3{width:33.333333%!important}.lg\:w-2\/3{width:66.666667%!important}.lg\:w-1\/4{width:25%!important}.lg\:w-2\/4{width:50%!important}.lg\:w-3\/4{width:75%!important}.lg\:w-1\/5{width:20%!important}.lg\:w-2\/5{width:40%!important}.lg\:w-3\/5{width:60%!important}.lg\:w-4\/5{width:80%!important}.lg\:w-1\/6{width:16.666667%!important}.lg\:w-2\/6{width:33.333333%!important}.lg\:w-3\/6{width:50%!important}.lg\:w-4\/6{width:66.666667%!important}.lg\:w-5\/6{width:83.333333%!important}.lg\:w-1\/12{width:8.333333%!important}.lg\:w-2\/12{width:16.666667%!important}.lg\:w-3\/12{width:25%!important}.lg\:w-4\/12{width:33.333333%!important}.lg\:w-5\/12{width:41.666667%!important}.lg\:w-6\/12{width:50%!important}.lg\:w-7\/12{width:58.333333%!important}.lg\:w-8\/12{width:66.666667%!important}.lg\:w-9\/12{width:75%!important}.lg\:w-10\/12{width:83.333333%!important}.lg\:w-11\/12{width:91.666667%!important}.lg\:w-full{width:100%!important}.lg\:w-screen{width:100vw!important}.lg\:z-0{z-index:0!important}.lg\:z-10{z-index:10!important}.lg\:z-20{z-index:20!important}.lg\:z-30{z-index:30!important}.lg\:z-40{z-index:40!important}.lg\:z-50{z-index:50!important}.lg\:z-999{z-index:999!important}.lg\:z-auto{z-index:auto!important}.lg\:z-max{z-index:2147483647!important}.lg\:focus-within\:z-0:focus-within{z-index:0!important}.lg\:focus-within\:z-10:focus-within{z-index:10!important}.lg\:focus-within\:z-20:focus-within{z-index:20!important}.lg\:focus-within\:z-30:focus-within{z-index:30!important}.lg\:focus-within\:z-40:focus-within{z-index:40!important}.lg\:focus-within\:z-50:focus-within{z-index:50!important}.lg\:focus-within\:z-999:focus-within{z-index:999!important}.lg\:focus-within\:z-auto:focus-within{z-index:auto!important}.lg\:focus-within\:z-max:focus-within{z-index:2147483647!important}.lg\:focus\:z-0:focus{z-index:0!important}.lg\:focus\:z-10:focus{z-index:10!important}.lg\:focus\:z-20:focus{z-index:20!important}.lg\:focus\:z-30:focus{z-index:30!important}.lg\:focus\:z-40:focus{z-index:40!important}.lg\:focus\:z-50:focus{z-index:50!important}.lg\:focus\:z-999:focus{z-index:999!important}.lg\:focus\:z-auto:focus{z-index:auto!important}.lg\:focus\:z-max:focus{z-index:2147483647!important}.lg\:gap-0{grid-gap:0!important;gap:0!important}.lg\:gap-1{grid-gap:.25rem!important;gap:.25rem!important}.lg\:gap-2{grid-gap:.5rem!important;gap:.5rem!important}.lg\:gap-3{grid-gap:.75rem!important;gap:.75rem!important}.lg\:gap-4{grid-gap:1rem!important;gap:1rem!important}.lg\:gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.lg\:gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.lg\:gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.lg\:gap-8{grid-gap:2rem!important;gap:2rem!important}.lg\:gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.lg\:gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.lg\:gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.lg\:gap-12{grid-gap:3rem!important;gap:3rem!important}.lg\:gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.lg\:gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.lg\:gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.lg\:gap-16{grid-gap:4rem!important;gap:4rem!important}.lg\:gap-20{grid-gap:5rem!important;gap:5rem!important}.lg\:gap-24{grid-gap:6rem!important;gap:6rem!important}.lg\:gap-28{grid-gap:7rem!important;gap:7rem!important}.lg\:gap-32{grid-gap:8rem!important;gap:8rem!important}.lg\:gap-36{grid-gap:9rem!important;gap:9rem!important}.lg\:gap-40{grid-gap:10rem!important;gap:10rem!important}.lg\:gap-48{grid-gap:12rem!important;gap:12rem!important}.lg\:gap-56{grid-gap:14rem!important;gap:14rem!important}.lg\:gap-60{grid-gap:15rem!important;gap:15rem!important}.lg\:gap-64{grid-gap:16rem!important;gap:16rem!important}.lg\:gap-72{grid-gap:18rem!important;gap:18rem!important}.lg\:gap-80{grid-gap:20rem!important;gap:20rem!important}.lg\:gap-96{grid-gap:24rem!important;gap:24rem!important}.lg\:gap-px{grid-gap:1px!important;gap:1px!important}.lg\:gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.lg\:gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.lg\:gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.lg\:gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.lg\:gap-1\/2{grid-gap:50%!important;gap:50%!important}.lg\:gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.lg\:gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.lg\:gap-1\/4{grid-gap:25%!important;gap:25%!important}.lg\:gap-2\/4{grid-gap:50%!important;gap:50%!important}.lg\:gap-3\/4{grid-gap:75%!important;gap:75%!important}.lg\:gap-1\/5{grid-gap:20%!important;gap:20%!important}.lg\:gap-2\/5{grid-gap:40%!important;gap:40%!important}.lg\:gap-3\/5{grid-gap:60%!important;gap:60%!important}.lg\:gap-4\/5{grid-gap:80%!important;gap:80%!important}.lg\:gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.lg\:gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.lg\:gap-3\/6{grid-gap:50%!important;gap:50%!important}.lg\:gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.lg\:gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.lg\:gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.lg\:gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.lg\:gap-3\/12{grid-gap:25%!important;gap:25%!important}.lg\:gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.lg\:gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.lg\:gap-6\/12{grid-gap:50%!important;gap:50%!important}.lg\:gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.lg\:gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.lg\:gap-9\/12{grid-gap:75%!important;gap:75%!important}.lg\:gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.lg\:gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.lg\:gap-full{grid-gap:100%!important;gap:100%!important}.lg\:gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.lg\:gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.lg\:gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.lg\:gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.lg\:gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.lg\:gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.lg\:gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.lg\:gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.lg\:gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.lg\:gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.lg\:gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.lg\:gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.lg\:gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.lg\:gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.lg\:gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.lg\:gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.lg\:gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.lg\:gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.lg\:gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.lg\:gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.lg\:gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.lg\:gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.lg\:gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.lg\:gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.lg\:gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.lg\:gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.lg\:gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.lg\:gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.lg\:gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.lg\:gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.lg\:gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.lg\:gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.lg\:gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.lg\:gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.lg\:gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.lg\:gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.lg\:gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.lg\:gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.lg\:gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.lg\:gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.lg\:gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.lg\:gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.lg\:gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.lg\:gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.lg\:gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.lg\:gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.lg\:gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.lg\:gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.lg\:gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.lg\:gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.lg\:gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.lg\:gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.lg\:gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.lg\:gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.lg\:gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.lg\:gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.lg\:gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.lg\:gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.lg\:gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.lg\:gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.lg\:gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.lg\:gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.lg\:gap-y-0{grid-row-gap:0!important;row-gap:0!important}.lg\:gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.lg\:gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.lg\:gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.lg\:gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.lg\:gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.lg\:gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.lg\:gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.lg\:gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.lg\:gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.lg\:gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.lg\:gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.lg\:gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.lg\:gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.lg\:gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.lg\:gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.lg\:gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.lg\:gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.lg\:gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.lg\:gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.lg\:gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.lg\:gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.lg\:gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.lg\:gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.lg\:gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.lg\:gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.lg\:gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.lg\:gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.lg\:gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.lg\:gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.lg\:gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.lg\:gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.lg\:gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.lg\:gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.lg\:gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.lg\:gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.lg\:gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.lg\:gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.lg\:gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.lg\:gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.lg\:gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.lg\:gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.lg\:gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.lg\:gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.lg\:gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.lg\:gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.lg\:gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.lg\:gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.lg\:gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.lg\:gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.lg\:gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.lg\:gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.lg\:gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.lg\:gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.lg\:gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.lg\:gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.lg\:gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.lg\:gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.lg\:gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.lg\:gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.lg\:gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.lg\:gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.lg\:grid-flow-row{grid-auto-flow:row!important}.lg\:grid-flow-col{grid-auto-flow:column!important}.lg\:grid-flow-row-dense{grid-auto-flow:row dense!important}.lg\:grid-flow-col-dense{grid-auto-flow:column dense!important}.lg\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.lg\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.lg\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.lg\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.lg\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.lg\:grid-cols-none{grid-template-columns:none!important}.lg\:auto-cols-auto{grid-auto-columns:auto!important}.lg\:auto-cols-min{grid-auto-columns:min-content!important}.lg\:auto-cols-max{grid-auto-columns:max-content!important}.lg\:auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.lg\:col-auto{grid-column:auto!important}.lg\:col-span-1{grid-column:span 1/span 1!important}.lg\:col-span-2{grid-column:span 2/span 2!important}.lg\:col-span-3{grid-column:span 3/span 3!important}.lg\:col-span-4{grid-column:span 4/span 4!important}.lg\:col-span-5{grid-column:span 5/span 5!important}.lg\:col-span-6{grid-column:span 6/span 6!important}.lg\:col-span-7{grid-column:span 7/span 7!important}.lg\:col-span-8{grid-column:span 8/span 8!important}.lg\:col-span-9{grid-column:span 9/span 9!important}.lg\:col-span-10{grid-column:span 10/span 10!important}.lg\:col-span-11{grid-column:span 11/span 11!important}.lg\:col-span-12{grid-column:span 12/span 12!important}.lg\:col-span-full{grid-column:1/-1!important}.lg\:col-start-1{grid-column-start:1!important}.lg\:col-start-2{grid-column-start:2!important}.lg\:col-start-3{grid-column-start:3!important}.lg\:col-start-4{grid-column-start:4!important}.lg\:col-start-5{grid-column-start:5!important}.lg\:col-start-6{grid-column-start:6!important}.lg\:col-start-7{grid-column-start:7!important}.lg\:col-start-8{grid-column-start:8!important}.lg\:col-start-9{grid-column-start:9!important}.lg\:col-start-10{grid-column-start:10!important}.lg\:col-start-11{grid-column-start:11!important}.lg\:col-start-12{grid-column-start:12!important}.lg\:col-start-13{grid-column-start:13!important}.lg\:col-start-auto{grid-column-start:auto!important}.lg\:col-end-1{grid-column-end:1!important}.lg\:col-end-2{grid-column-end:2!important}.lg\:col-end-3{grid-column-end:3!important}.lg\:col-end-4{grid-column-end:4!important}.lg\:col-end-5{grid-column-end:5!important}.lg\:col-end-6{grid-column-end:6!important}.lg\:col-end-7{grid-column-end:7!important}.lg\:col-end-8{grid-column-end:8!important}.lg\:col-end-9{grid-column-end:9!important}.lg\:col-end-10{grid-column-end:10!important}.lg\:col-end-11{grid-column-end:11!important}.lg\:col-end-12{grid-column-end:12!important}.lg\:col-end-13{grid-column-end:13!important}.lg\:col-end-auto{grid-column-end:auto!important}.lg\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.lg\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.lg\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.lg\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.lg\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.lg\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.lg\:grid-rows-none{grid-template-rows:none!important}.lg\:auto-rows-auto{grid-auto-rows:auto!important}.lg\:auto-rows-min{grid-auto-rows:min-content!important}.lg\:auto-rows-max{grid-auto-rows:max-content!important}.lg\:auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.lg\:row-auto{grid-row:auto!important}.lg\:row-span-1{grid-row:span 1/span 1!important}.lg\:row-span-2{grid-row:span 2/span 2!important}.lg\:row-span-3{grid-row:span 3/span 3!important}.lg\:row-span-4{grid-row:span 4/span 4!important}.lg\:row-span-5{grid-row:span 5/span 5!important}.lg\:row-span-6{grid-row:span 6/span 6!important}.lg\:row-span-full{grid-row:1/-1!important}.lg\:row-start-1{grid-row-start:1!important}.lg\:row-start-2{grid-row-start:2!important}.lg\:row-start-3{grid-row-start:3!important}.lg\:row-start-4{grid-row-start:4!important}.lg\:row-start-5{grid-row-start:5!important}.lg\:row-start-6{grid-row-start:6!important}.lg\:row-start-7{grid-row-start:7!important}.lg\:row-start-auto{grid-row-start:auto!important}.lg\:row-end-1{grid-row-end:1!important}.lg\:row-end-2{grid-row-end:2!important}.lg\:row-end-3{grid-row-end:3!important}.lg\:row-end-4{grid-row-end:4!important}.lg\:row-end-5{grid-row-end:5!important}.lg\:row-end-6{grid-row-end:6!important}.lg\:row-end-7{grid-row-end:7!important}.lg\:row-end-auto{grid-row-end:auto!important}.lg\:transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.lg\:transform-none{transform:none!important}.lg\:origin-center{transform-origin:center!important}.lg\:origin-top{transform-origin:top!important}.lg\:origin-top-right{transform-origin:top right!important}.lg\:origin-right{transform-origin:right!important}.lg\:origin-bottom-right{transform-origin:bottom right!important}.lg\:origin-bottom{transform-origin:bottom!important}.lg\:origin-bottom-left{transform-origin:bottom left!important}.lg\:origin-left{transform-origin:left!important}.lg\:origin-top-left{transform-origin:top left!important}.lg\:scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.lg\:scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.lg\:scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.lg\:scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.lg\:scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.lg\:scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.lg\:scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.lg\:scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.lg\:scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.lg\:scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.lg\:scale-x-0{--transform-scale-x:0!important}.lg\:scale-x-50{--transform-scale-x:.5!important}.lg\:scale-x-75{--transform-scale-x:.75!important}.lg\:scale-x-90{--transform-scale-x:.9!important}.lg\:scale-x-95{--transform-scale-x:.95!important}.lg\:scale-x-100{--transform-scale-x:1!important}.lg\:scale-x-105{--transform-scale-x:1.05!important}.lg\:scale-x-110{--transform-scale-x:1.1!important}.lg\:scale-x-125{--transform-scale-x:1.25!important}.lg\:scale-x-150{--transform-scale-x:1.5!important}.lg\:scale-y-0{--transform-scale-y:0!important}.lg\:scale-y-50{--transform-scale-y:.5!important}.lg\:scale-y-75{--transform-scale-y:.75!important}.lg\:scale-y-90{--transform-scale-y:.9!important}.lg\:scale-y-95{--transform-scale-y:.95!important}.lg\:scale-y-100{--transform-scale-y:1!important}.lg\:scale-y-105{--transform-scale-y:1.05!important}.lg\:scale-y-110{--transform-scale-y:1.1!important}.lg\:scale-y-125{--transform-scale-y:1.25!important}.lg\:scale-y-150{--transform-scale-y:1.5!important}.lg\:hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.lg\:hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.lg\:hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.lg\:hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.lg\:hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.lg\:hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.lg\:hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.lg\:hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.lg\:hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.lg\:hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.lg\:hover\:scale-x-0:hover{--transform-scale-x:0!important}.lg\:hover\:scale-x-50:hover{--transform-scale-x:.5!important}.lg\:hover\:scale-x-75:hover{--transform-scale-x:.75!important}.lg\:hover\:scale-x-90:hover{--transform-scale-x:.9!important}.lg\:hover\:scale-x-95:hover{--transform-scale-x:.95!important}.lg\:hover\:scale-x-100:hover{--transform-scale-x:1!important}.lg\:hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.lg\:hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.lg\:hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.lg\:hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.lg\:hover\:scale-y-0:hover{--transform-scale-y:0!important}.lg\:hover\:scale-y-50:hover{--transform-scale-y:.5!important}.lg\:hover\:scale-y-75:hover{--transform-scale-y:.75!important}.lg\:hover\:scale-y-90:hover{--transform-scale-y:.9!important}.lg\:hover\:scale-y-95:hover{--transform-scale-y:.95!important}.lg\:hover\:scale-y-100:hover{--transform-scale-y:1!important}.lg\:hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.lg\:hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.lg\:hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.lg\:hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.lg\:focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.lg\:focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.lg\:focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.lg\:focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.lg\:focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.lg\:focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.lg\:focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.lg\:focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.lg\:focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.lg\:focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.lg\:focus\:scale-x-0:focus{--transform-scale-x:0!important}.lg\:focus\:scale-x-50:focus{--transform-scale-x:.5!important}.lg\:focus\:scale-x-75:focus{--transform-scale-x:.75!important}.lg\:focus\:scale-x-90:focus{--transform-scale-x:.9!important}.lg\:focus\:scale-x-95:focus{--transform-scale-x:.95!important}.lg\:focus\:scale-x-100:focus{--transform-scale-x:1!important}.lg\:focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.lg\:focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.lg\:focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.lg\:focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.lg\:focus\:scale-y-0:focus{--transform-scale-y:0!important}.lg\:focus\:scale-y-50:focus{--transform-scale-y:.5!important}.lg\:focus\:scale-y-75:focus{--transform-scale-y:.75!important}.lg\:focus\:scale-y-90:focus{--transform-scale-y:.9!important}.lg\:focus\:scale-y-95:focus{--transform-scale-y:.95!important}.lg\:focus\:scale-y-100:focus{--transform-scale-y:1!important}.lg\:focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.lg\:focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.lg\:focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.lg\:focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.lg\:rotate-0{--transform-rotate:0!important}.lg\:rotate-1{--transform-rotate:1deg!important}.lg\:rotate-2{--transform-rotate:2deg!important}.lg\:rotate-3{--transform-rotate:3deg!important}.lg\:rotate-6{--transform-rotate:6deg!important}.lg\:rotate-12{--transform-rotate:12deg!important}.lg\:rotate-45{--transform-rotate:45deg!important}.lg\:rotate-90{--transform-rotate:90deg!important}.lg\:rotate-180{--transform-rotate:180deg!important}.lg\:-rotate-180{--transform-rotate:-180deg!important}.lg\:-rotate-90{--transform-rotate:-90deg!important}.lg\:-rotate-45{--transform-rotate:-45deg!important}.lg\:-rotate-12{--transform-rotate:-12deg!important}.lg\:-rotate-6{--transform-rotate:-6deg!important}.lg\:-rotate-3{--transform-rotate:-3deg!important}.lg\:-rotate-2{--transform-rotate:-2deg!important}.lg\:-rotate-1{--transform-rotate:-1deg!important}.lg\:hover\:rotate-0:hover{--transform-rotate:0!important}.lg\:hover\:rotate-1:hover{--transform-rotate:1deg!important}.lg\:hover\:rotate-2:hover{--transform-rotate:2deg!important}.lg\:hover\:rotate-3:hover{--transform-rotate:3deg!important}.lg\:hover\:rotate-6:hover{--transform-rotate:6deg!important}.lg\:hover\:rotate-12:hover{--transform-rotate:12deg!important}.lg\:hover\:rotate-45:hover{--transform-rotate:45deg!important}.lg\:hover\:rotate-90:hover{--transform-rotate:90deg!important}.lg\:hover\:rotate-180:hover{--transform-rotate:180deg!important}.lg\:hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.lg\:hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.lg\:hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.lg\:hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.lg\:hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.lg\:hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.lg\:hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.lg\:hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.lg\:focus\:rotate-0:focus{--transform-rotate:0!important}.lg\:focus\:rotate-1:focus{--transform-rotate:1deg!important}.lg\:focus\:rotate-2:focus{--transform-rotate:2deg!important}.lg\:focus\:rotate-3:focus{--transform-rotate:3deg!important}.lg\:focus\:rotate-6:focus{--transform-rotate:6deg!important}.lg\:focus\:rotate-12:focus{--transform-rotate:12deg!important}.lg\:focus\:rotate-45:focus{--transform-rotate:45deg!important}.lg\:focus\:rotate-90:focus{--transform-rotate:90deg!important}.lg\:focus\:rotate-180:focus{--transform-rotate:180deg!important}.lg\:focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.lg\:focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.lg\:focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.lg\:focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.lg\:focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.lg\:focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.lg\:focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.lg\:focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.lg\:translate-x-0{--transform-translate-x:0!important}.lg\:translate-x-1{--transform-translate-x:0.25rem!important}.lg\:translate-x-2{--transform-translate-x:0.5rem!important}.lg\:translate-x-3{--transform-translate-x:0.75rem!important}.lg\:translate-x-4{--transform-translate-x:1rem!important}.lg\:translate-x-5{--transform-translate-x:1.25rem!important}.lg\:translate-x-6{--transform-translate-x:1.5rem!important}.lg\:translate-x-7{--transform-translate-x:1.75rem!important}.lg\:translate-x-8{--transform-translate-x:2rem!important}.lg\:translate-x-9{--transform-translate-x:2.25rem!important}.lg\:translate-x-10{--transform-translate-x:2.5rem!important}.lg\:translate-x-11{--transform-translate-x:2.75rem!important}.lg\:translate-x-12{--transform-translate-x:3rem!important}.lg\:translate-x-13{--transform-translate-x:3.25rem!important}.lg\:translate-x-14{--transform-translate-x:3.5rem!important}.lg\:translate-x-15{--transform-translate-x:3.75rem!important}.lg\:translate-x-16{--transform-translate-x:4rem!important}.lg\:translate-x-20{--transform-translate-x:5rem!important}.lg\:translate-x-24{--transform-translate-x:6rem!important}.lg\:translate-x-28{--transform-translate-x:7rem!important}.lg\:translate-x-32{--transform-translate-x:8rem!important}.lg\:translate-x-36{--transform-translate-x:9rem!important}.lg\:translate-x-40{--transform-translate-x:10rem!important}.lg\:translate-x-48{--transform-translate-x:12rem!important}.lg\:translate-x-56{--transform-translate-x:14rem!important}.lg\:translate-x-60{--transform-translate-x:15rem!important}.lg\:translate-x-64{--transform-translate-x:16rem!important}.lg\:translate-x-72{--transform-translate-x:18rem!important}.lg\:translate-x-80{--transform-translate-x:20rem!important}.lg\:translate-x-96{--transform-translate-x:24rem!important}.lg\:translate-x-px{--transform-translate-x:1px!important}.lg\:translate-x-0\.5{--transform-translate-x:0.125rem!important}.lg\:translate-x-1\.5{--transform-translate-x:0.375rem!important}.lg\:translate-x-2\.5{--transform-translate-x:0.625rem!important}.lg\:translate-x-3\.5{--transform-translate-x:0.875rem!important}.lg\:translate-x-1\/2{--transform-translate-x:50%!important}.lg\:translate-x-1\/3{--transform-translate-x:33.333333%!important}.lg\:translate-x-2\/3{--transform-translate-x:66.666667%!important}.lg\:translate-x-1\/4{--transform-translate-x:25%!important}.lg\:translate-x-2\/4{--transform-translate-x:50%!important}.lg\:translate-x-3\/4{--transform-translate-x:75%!important}.lg\:translate-x-1\/5{--transform-translate-x:20%!important}.lg\:translate-x-2\/5{--transform-translate-x:40%!important}.lg\:translate-x-3\/5{--transform-translate-x:60%!important}.lg\:translate-x-4\/5{--transform-translate-x:80%!important}.lg\:translate-x-1\/6{--transform-translate-x:16.666667%!important}.lg\:translate-x-2\/6{--transform-translate-x:33.333333%!important}.lg\:translate-x-3\/6{--transform-translate-x:50%!important}.lg\:translate-x-4\/6{--transform-translate-x:66.666667%!important}.lg\:translate-x-5\/6{--transform-translate-x:83.333333%!important}.lg\:translate-x-1\/12{--transform-translate-x:8.333333%!important}.lg\:translate-x-2\/12{--transform-translate-x:16.666667%!important}.lg\:translate-x-3\/12{--transform-translate-x:25%!important}.lg\:translate-x-4\/12{--transform-translate-x:33.333333%!important}.lg\:translate-x-5\/12{--transform-translate-x:41.666667%!important}.lg\:translate-x-6\/12{--transform-translate-x:50%!important}.lg\:translate-x-7\/12{--transform-translate-x:58.333333%!important}.lg\:translate-x-8\/12{--transform-translate-x:66.666667%!important}.lg\:translate-x-9\/12{--transform-translate-x:75%!important}.lg\:translate-x-10\/12{--transform-translate-x:83.333333%!important}.lg\:translate-x-11\/12{--transform-translate-x:91.666667%!important}.lg\:translate-x-full{--transform-translate-x:100%!important}.lg\:-translate-x-1{--transform-translate-x:-0.25rem!important}.lg\:-translate-x-2{--transform-translate-x:-0.5rem!important}.lg\:-translate-x-3{--transform-translate-x:-0.75rem!important}.lg\:-translate-x-4{--transform-translate-x:-1rem!important}.lg\:-translate-x-5{--transform-translate-x:-1.25rem!important}.lg\:-translate-x-6{--transform-translate-x:-1.5rem!important}.lg\:-translate-x-7{--transform-translate-x:-1.75rem!important}.lg\:-translate-x-8{--transform-translate-x:-2rem!important}.lg\:-translate-x-9{--transform-translate-x:-2.25rem!important}.lg\:-translate-x-10{--transform-translate-x:-2.5rem!important}.lg\:-translate-x-11{--transform-translate-x:-2.75rem!important}.lg\:-translate-x-12{--transform-translate-x:-3rem!important}.lg\:-translate-x-13{--transform-translate-x:-3.25rem!important}.lg\:-translate-x-14{--transform-translate-x:-3.5rem!important}.lg\:-translate-x-15{--transform-translate-x:-3.75rem!important}.lg\:-translate-x-16{--transform-translate-x:-4rem!important}.lg\:-translate-x-20{--transform-translate-x:-5rem!important}.lg\:-translate-x-24{--transform-translate-x:-6rem!important}.lg\:-translate-x-28{--transform-translate-x:-7rem!important}.lg\:-translate-x-32{--transform-translate-x:-8rem!important}.lg\:-translate-x-36{--transform-translate-x:-9rem!important}.lg\:-translate-x-40{--transform-translate-x:-10rem!important}.lg\:-translate-x-48{--transform-translate-x:-12rem!important}.lg\:-translate-x-56{--transform-translate-x:-14rem!important}.lg\:-translate-x-60{--transform-translate-x:-15rem!important}.lg\:-translate-x-64{--transform-translate-x:-16rem!important}.lg\:-translate-x-72{--transform-translate-x:-18rem!important}.lg\:-translate-x-80{--transform-translate-x:-20rem!important}.lg\:-translate-x-96{--transform-translate-x:-24rem!important}.lg\:-translate-x-px{--transform-translate-x:-1px!important}.lg\:-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.lg\:-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.lg\:-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.lg\:-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.lg\:-translate-x-1\/2{--transform-translate-x:-50%!important}.lg\:-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.lg\:-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.lg\:-translate-x-1\/4{--transform-translate-x:-25%!important}.lg\:-translate-x-2\/4{--transform-translate-x:-50%!important}.lg\:-translate-x-3\/4{--transform-translate-x:-75%!important}.lg\:-translate-x-1\/5{--transform-translate-x:-20%!important}.lg\:-translate-x-2\/5{--transform-translate-x:-40%!important}.lg\:-translate-x-3\/5{--transform-translate-x:-60%!important}.lg\:-translate-x-4\/5{--transform-translate-x:-80%!important}.lg\:-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.lg\:-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.lg\:-translate-x-3\/6{--transform-translate-x:-50%!important}.lg\:-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.lg\:-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.lg\:-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.lg\:-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.lg\:-translate-x-3\/12{--transform-translate-x:-25%!important}.lg\:-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.lg\:-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.lg\:-translate-x-6\/12{--transform-translate-x:-50%!important}.lg\:-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.lg\:-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.lg\:-translate-x-9\/12{--transform-translate-x:-75%!important}.lg\:-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.lg\:-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.lg\:-translate-x-full{--transform-translate-x:-100%!important}.lg\:translate-y-0{--transform-translate-y:0!important}.lg\:translate-y-1{--transform-translate-y:0.25rem!important}.lg\:translate-y-2{--transform-translate-y:0.5rem!important}.lg\:translate-y-3{--transform-translate-y:0.75rem!important}.lg\:translate-y-4{--transform-translate-y:1rem!important}.lg\:translate-y-5{--transform-translate-y:1.25rem!important}.lg\:translate-y-6{--transform-translate-y:1.5rem!important}.lg\:translate-y-7{--transform-translate-y:1.75rem!important}.lg\:translate-y-8{--transform-translate-y:2rem!important}.lg\:translate-y-9{--transform-translate-y:2.25rem!important}.lg\:translate-y-10{--transform-translate-y:2.5rem!important}.lg\:translate-y-11{--transform-translate-y:2.75rem!important}.lg\:translate-y-12{--transform-translate-y:3rem!important}.lg\:translate-y-13{--transform-translate-y:3.25rem!important}.lg\:translate-y-14{--transform-translate-y:3.5rem!important}.lg\:translate-y-15{--transform-translate-y:3.75rem!important}.lg\:translate-y-16{--transform-translate-y:4rem!important}.lg\:translate-y-20{--transform-translate-y:5rem!important}.lg\:translate-y-24{--transform-translate-y:6rem!important}.lg\:translate-y-28{--transform-translate-y:7rem!important}.lg\:translate-y-32{--transform-translate-y:8rem!important}.lg\:translate-y-36{--transform-translate-y:9rem!important}.lg\:translate-y-40{--transform-translate-y:10rem!important}.lg\:translate-y-48{--transform-translate-y:12rem!important}.lg\:translate-y-56{--transform-translate-y:14rem!important}.lg\:translate-y-60{--transform-translate-y:15rem!important}.lg\:translate-y-64{--transform-translate-y:16rem!important}.lg\:translate-y-72{--transform-translate-y:18rem!important}.lg\:translate-y-80{--transform-translate-y:20rem!important}.lg\:translate-y-96{--transform-translate-y:24rem!important}.lg\:translate-y-px{--transform-translate-y:1px!important}.lg\:translate-y-0\.5{--transform-translate-y:0.125rem!important}.lg\:translate-y-1\.5{--transform-translate-y:0.375rem!important}.lg\:translate-y-2\.5{--transform-translate-y:0.625rem!important}.lg\:translate-y-3\.5{--transform-translate-y:0.875rem!important}.lg\:translate-y-1\/2{--transform-translate-y:50%!important}.lg\:translate-y-1\/3{--transform-translate-y:33.333333%!important}.lg\:translate-y-2\/3{--transform-translate-y:66.666667%!important}.lg\:translate-y-1\/4{--transform-translate-y:25%!important}.lg\:translate-y-2\/4{--transform-translate-y:50%!important}.lg\:translate-y-3\/4{--transform-translate-y:75%!important}.lg\:translate-y-1\/5{--transform-translate-y:20%!important}.lg\:translate-y-2\/5{--transform-translate-y:40%!important}.lg\:translate-y-3\/5{--transform-translate-y:60%!important}.lg\:translate-y-4\/5{--transform-translate-y:80%!important}.lg\:translate-y-1\/6{--transform-translate-y:16.666667%!important}.lg\:translate-y-2\/6{--transform-translate-y:33.333333%!important}.lg\:translate-y-3\/6{--transform-translate-y:50%!important}.lg\:translate-y-4\/6{--transform-translate-y:66.666667%!important}.lg\:translate-y-5\/6{--transform-translate-y:83.333333%!important}.lg\:translate-y-1\/12{--transform-translate-y:8.333333%!important}.lg\:translate-y-2\/12{--transform-translate-y:16.666667%!important}.lg\:translate-y-3\/12{--transform-translate-y:25%!important}.lg\:translate-y-4\/12{--transform-translate-y:33.333333%!important}.lg\:translate-y-5\/12{--transform-translate-y:41.666667%!important}.lg\:translate-y-6\/12{--transform-translate-y:50%!important}.lg\:translate-y-7\/12{--transform-translate-y:58.333333%!important}.lg\:translate-y-8\/12{--transform-translate-y:66.666667%!important}.lg\:translate-y-9\/12{--transform-translate-y:75%!important}.lg\:translate-y-10\/12{--transform-translate-y:83.333333%!important}.lg\:translate-y-11\/12{--transform-translate-y:91.666667%!important}.lg\:translate-y-full{--transform-translate-y:100%!important}.lg\:-translate-y-1{--transform-translate-y:-0.25rem!important}.lg\:-translate-y-2{--transform-translate-y:-0.5rem!important}.lg\:-translate-y-3{--transform-translate-y:-0.75rem!important}.lg\:-translate-y-4{--transform-translate-y:-1rem!important}.lg\:-translate-y-5{--transform-translate-y:-1.25rem!important}.lg\:-translate-y-6{--transform-translate-y:-1.5rem!important}.lg\:-translate-y-7{--transform-translate-y:-1.75rem!important}.lg\:-translate-y-8{--transform-translate-y:-2rem!important}.lg\:-translate-y-9{--transform-translate-y:-2.25rem!important}.lg\:-translate-y-10{--transform-translate-y:-2.5rem!important}.lg\:-translate-y-11{--transform-translate-y:-2.75rem!important}.lg\:-translate-y-12{--transform-translate-y:-3rem!important}.lg\:-translate-y-13{--transform-translate-y:-3.25rem!important}.lg\:-translate-y-14{--transform-translate-y:-3.5rem!important}.lg\:-translate-y-15{--transform-translate-y:-3.75rem!important}.lg\:-translate-y-16{--transform-translate-y:-4rem!important}.lg\:-translate-y-20{--transform-translate-y:-5rem!important}.lg\:-translate-y-24{--transform-translate-y:-6rem!important}.lg\:-translate-y-28{--transform-translate-y:-7rem!important}.lg\:-translate-y-32{--transform-translate-y:-8rem!important}.lg\:-translate-y-36{--transform-translate-y:-9rem!important}.lg\:-translate-y-40{--transform-translate-y:-10rem!important}.lg\:-translate-y-48{--transform-translate-y:-12rem!important}.lg\:-translate-y-56{--transform-translate-y:-14rem!important}.lg\:-translate-y-60{--transform-translate-y:-15rem!important}.lg\:-translate-y-64{--transform-translate-y:-16rem!important}.lg\:-translate-y-72{--transform-translate-y:-18rem!important}.lg\:-translate-y-80{--transform-translate-y:-20rem!important}.lg\:-translate-y-96{--transform-translate-y:-24rem!important}.lg\:-translate-y-px{--transform-translate-y:-1px!important}.lg\:-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.lg\:-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.lg\:-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.lg\:-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.lg\:-translate-y-1\/2{--transform-translate-y:-50%!important}.lg\:-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.lg\:-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.lg\:-translate-y-1\/4{--transform-translate-y:-25%!important}.lg\:-translate-y-2\/4{--transform-translate-y:-50%!important}.lg\:-translate-y-3\/4{--transform-translate-y:-75%!important}.lg\:-translate-y-1\/5{--transform-translate-y:-20%!important}.lg\:-translate-y-2\/5{--transform-translate-y:-40%!important}.lg\:-translate-y-3\/5{--transform-translate-y:-60%!important}.lg\:-translate-y-4\/5{--transform-translate-y:-80%!important}.lg\:-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.lg\:-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.lg\:-translate-y-3\/6{--transform-translate-y:-50%!important}.lg\:-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.lg\:-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.lg\:-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.lg\:-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.lg\:-translate-y-3\/12{--transform-translate-y:-25%!important}.lg\:-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.lg\:-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.lg\:-translate-y-6\/12{--transform-translate-y:-50%!important}.lg\:-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.lg\:-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.lg\:-translate-y-9\/12{--transform-translate-y:-75%!important}.lg\:-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.lg\:-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.lg\:-translate-y-full{--transform-translate-y:-100%!important}.lg\:hover\:translate-x-0:hover{--transform-translate-x:0!important}.lg\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.lg\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.lg\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.lg\:hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.lg\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.lg\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.lg\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.lg\:hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.lg\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.lg\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.lg\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.lg\:hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.lg\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.lg\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.lg\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.lg\:hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.lg\:hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.lg\:hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.lg\:hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.lg\:hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.lg\:hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.lg\:hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.lg\:hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.lg\:hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.lg\:hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.lg\:hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.lg\:hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.lg\:hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.lg\:hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.lg\:hover\:translate-x-px:hover{--transform-translate-x:1px!important}.lg\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.lg\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.lg\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.lg\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.lg\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.lg\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.lg\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.lg\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.lg\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.lg\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.lg\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.lg\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.lg\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.lg\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.lg\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.lg\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.lg\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.lg\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.lg\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.lg\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.lg\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.lg\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.lg\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.lg\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.lg\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.lg\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.lg\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.lg\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.lg\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.lg\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.lg\:hover\:translate-x-full:hover{--transform-translate-x:100%!important}.lg\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.lg\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.lg\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.lg\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.lg\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.lg\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.lg\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.lg\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.lg\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.lg\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.lg\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.lg\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.lg\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.lg\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.lg\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.lg\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.lg\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.lg\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.lg\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.lg\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.lg\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.lg\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.lg\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.lg\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.lg\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.lg\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.lg\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.lg\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.lg\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.lg\:hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.lg\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.lg\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.lg\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.lg\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.lg\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.lg\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.lg\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.lg\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.lg\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.lg\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.lg\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.lg\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.lg\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.lg\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.lg\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.lg\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.lg\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.lg\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.lg\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.lg\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.lg\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.lg\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.lg\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.lg\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.lg\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.lg\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.lg\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.lg\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.lg\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.lg\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.lg\:hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.lg\:hover\:translate-y-0:hover{--transform-translate-y:0!important}.lg\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.lg\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.lg\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.lg\:hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.lg\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.lg\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.lg\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.lg\:hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.lg\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.lg\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.lg\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.lg\:hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.lg\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.lg\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.lg\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.lg\:hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.lg\:hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.lg\:hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.lg\:hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.lg\:hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.lg\:hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.lg\:hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.lg\:hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.lg\:hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.lg\:hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.lg\:hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.lg\:hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.lg\:hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.lg\:hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.lg\:hover\:translate-y-px:hover{--transform-translate-y:1px!important}.lg\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.lg\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.lg\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.lg\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.lg\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.lg\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.lg\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.lg\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.lg\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.lg\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.lg\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.lg\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.lg\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.lg\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.lg\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.lg\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.lg\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.lg\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.lg\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.lg\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.lg\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.lg\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.lg\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.lg\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.lg\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.lg\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.lg\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.lg\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.lg\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.lg\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.lg\:hover\:translate-y-full:hover{--transform-translate-y:100%!important}.lg\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.lg\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.lg\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.lg\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.lg\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.lg\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.lg\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.lg\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.lg\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.lg\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.lg\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.lg\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.lg\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.lg\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.lg\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.lg\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.lg\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.lg\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.lg\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.lg\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.lg\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.lg\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.lg\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.lg\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.lg\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.lg\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.lg\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.lg\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.lg\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.lg\:hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.lg\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.lg\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.lg\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.lg\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.lg\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.lg\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.lg\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.lg\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.lg\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.lg\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.lg\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.lg\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.lg\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.lg\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.lg\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.lg\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.lg\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.lg\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.lg\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.lg\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.lg\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.lg\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.lg\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.lg\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.lg\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.lg\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.lg\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.lg\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.lg\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.lg\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.lg\:hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.lg\:focus\:translate-x-0:focus{--transform-translate-x:0!important}.lg\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.lg\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.lg\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.lg\:focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.lg\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.lg\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.lg\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.lg\:focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.lg\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.lg\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.lg\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.lg\:focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.lg\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.lg\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.lg\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.lg\:focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.lg\:focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.lg\:focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.lg\:focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.lg\:focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.lg\:focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.lg\:focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.lg\:focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.lg\:focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.lg\:focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.lg\:focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.lg\:focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.lg\:focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.lg\:focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.lg\:focus\:translate-x-px:focus{--transform-translate-x:1px!important}.lg\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.lg\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.lg\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.lg\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.lg\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.lg\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.lg\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.lg\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.lg\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.lg\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.lg\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.lg\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.lg\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.lg\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.lg\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.lg\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.lg\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.lg\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.lg\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.lg\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.lg\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.lg\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.lg\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.lg\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.lg\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.lg\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.lg\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.lg\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.lg\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.lg\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.lg\:focus\:translate-x-full:focus{--transform-translate-x:100%!important}.lg\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.lg\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.lg\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.lg\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.lg\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.lg\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.lg\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.lg\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.lg\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.lg\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.lg\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.lg\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.lg\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.lg\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.lg\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.lg\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.lg\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.lg\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.lg\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.lg\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.lg\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.lg\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.lg\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.lg\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.lg\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.lg\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.lg\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.lg\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.lg\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.lg\:focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.lg\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.lg\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.lg\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.lg\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.lg\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.lg\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.lg\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.lg\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.lg\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.lg\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.lg\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.lg\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.lg\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.lg\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.lg\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.lg\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.lg\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.lg\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.lg\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.lg\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.lg\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.lg\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.lg\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.lg\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.lg\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.lg\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.lg\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.lg\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.lg\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.lg\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.lg\:focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.lg\:focus\:translate-y-0:focus{--transform-translate-y:0!important}.lg\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.lg\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.lg\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.lg\:focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.lg\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.lg\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.lg\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.lg\:focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.lg\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.lg\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.lg\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.lg\:focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.lg\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.lg\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.lg\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.lg\:focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.lg\:focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.lg\:focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.lg\:focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.lg\:focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.lg\:focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.lg\:focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.lg\:focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.lg\:focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.lg\:focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.lg\:focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.lg\:focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.lg\:focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.lg\:focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.lg\:focus\:translate-y-px:focus{--transform-translate-y:1px!important}.lg\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.lg\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.lg\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.lg\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.lg\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.lg\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.lg\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.lg\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.lg\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.lg\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.lg\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.lg\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.lg\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.lg\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.lg\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.lg\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.lg\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.lg\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.lg\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.lg\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.lg\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.lg\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.lg\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.lg\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.lg\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.lg\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.lg\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.lg\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.lg\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.lg\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.lg\:focus\:translate-y-full:focus{--transform-translate-y:100%!important}.lg\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.lg\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.lg\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.lg\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.lg\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.lg\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.lg\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.lg\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.lg\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.lg\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.lg\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.lg\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.lg\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.lg\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.lg\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.lg\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.lg\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.lg\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.lg\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.lg\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.lg\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.lg\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.lg\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.lg\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.lg\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.lg\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.lg\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.lg\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.lg\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.lg\:focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.lg\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.lg\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.lg\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.lg\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.lg\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.lg\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.lg\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.lg\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.lg\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.lg\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.lg\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.lg\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.lg\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.lg\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.lg\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.lg\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.lg\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.lg\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.lg\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.lg\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.lg\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.lg\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.lg\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.lg\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.lg\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.lg\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.lg\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.lg\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.lg\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.lg\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.lg\:focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.lg\:skew-x-0{--transform-skew-x:0!important}.lg\:skew-x-1{--transform-skew-x:1deg!important}.lg\:skew-x-2{--transform-skew-x:2deg!important}.lg\:skew-x-3{--transform-skew-x:3deg!important}.lg\:skew-x-6{--transform-skew-x:6deg!important}.lg\:skew-x-12{--transform-skew-x:12deg!important}.lg\:-skew-x-12{--transform-skew-x:-12deg!important}.lg\:-skew-x-6{--transform-skew-x:-6deg!important}.lg\:-skew-x-3{--transform-skew-x:-3deg!important}.lg\:-skew-x-2{--transform-skew-x:-2deg!important}.lg\:-skew-x-1{--transform-skew-x:-1deg!important}.lg\:skew-y-0{--transform-skew-y:0!important}.lg\:skew-y-1{--transform-skew-y:1deg!important}.lg\:skew-y-2{--transform-skew-y:2deg!important}.lg\:skew-y-3{--transform-skew-y:3deg!important}.lg\:skew-y-6{--transform-skew-y:6deg!important}.lg\:skew-y-12{--transform-skew-y:12deg!important}.lg\:-skew-y-12{--transform-skew-y:-12deg!important}.lg\:-skew-y-6{--transform-skew-y:-6deg!important}.lg\:-skew-y-3{--transform-skew-y:-3deg!important}.lg\:-skew-y-2{--transform-skew-y:-2deg!important}.lg\:-skew-y-1{--transform-skew-y:-1deg!important}.lg\:hover\:skew-x-0:hover{--transform-skew-x:0!important}.lg\:hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.lg\:hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.lg\:hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.lg\:hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.lg\:hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.lg\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.lg\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.lg\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.lg\:hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.lg\:hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.lg\:hover\:skew-y-0:hover{--transform-skew-y:0!important}.lg\:hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.lg\:hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.lg\:hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.lg\:hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.lg\:hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.lg\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.lg\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.lg\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.lg\:hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.lg\:hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.lg\:focus\:skew-x-0:focus{--transform-skew-x:0!important}.lg\:focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.lg\:focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.lg\:focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.lg\:focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.lg\:focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.lg\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.lg\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.lg\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.lg\:focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.lg\:focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.lg\:focus\:skew-y-0:focus{--transform-skew-y:0!important}.lg\:focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.lg\:focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.lg\:focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.lg\:focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.lg\:focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.lg\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.lg\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.lg\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.lg\:focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.lg\:focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.lg\:transition-none{transition-property:none!important}.lg\:transition-all{transition-property:all!important}.lg\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.lg\:transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.lg\:transition-opacity{transition-property:opacity!important}.lg\:transition-shadow{transition-property:box-shadow!important}.lg\:transition-transform{transition-property:transform!important}.lg\:ease-linear{transition-timing-function:linear!important}.lg\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.lg\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.lg\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.lg\:duration-75{transition-duration:75ms!important}.lg\:duration-100{transition-duration:.1s!important}.lg\:duration-150{transition-duration:.15s!important}.lg\:duration-200{transition-duration:.2s!important}.lg\:duration-300{transition-duration:.3s!important}.lg\:duration-500{transition-duration:.5s!important}.lg\:duration-700{transition-duration:.7s!important}.lg\:duration-1000{transition-duration:1s!important}.lg\:duration-2000{transition-duration:2s!important}.lg\:delay-75{transition-delay:75ms!important}.lg\:delay-100{transition-delay:.1s!important}.lg\:delay-150{transition-delay:.15s!important}.lg\:delay-200{transition-delay:.2s!important}.lg\:delay-300{transition-delay:.3s!important}.lg\:delay-500{transition-delay:.5s!important}.lg\:delay-700{transition-delay:.7s!important}.lg\:delay-1000{transition-delay:1s!important}.lg\:animate-none{animation:none!important}.lg\:animate-spin{animation:spin 1s linear infinite!important}.lg\:animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.lg\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.lg\:animate-bounce{animation:bounce 1s infinite!important}}@media (min-width:1536px){.xl\:space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.xl\:space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.xl\:space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.xl\:space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.xl\:space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.xl\:space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.xl\:space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.xl\:space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.xl\:space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.xl\:space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.xl\:space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.xl\:space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.xl\:space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.xl\:space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.xl\:space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.xl\:space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.xl\:space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.xl\:space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.xl\:space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.xl\:space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.xl\:space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.xl\:space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.xl\:space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.xl\:space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.xl\:space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.xl\:space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.xl\:space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.xl\:space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.xl\:space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.xl\:space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.xl\:space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.xl\:space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.xl\:space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.xl\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.xl\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.xl\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.xl\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.xl\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.xl\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.xl\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.xl\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.xl\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.xl\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.xl\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.xl\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.xl\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.xl\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.xl\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.xl\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.xl\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.xl\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.xl\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.xl\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.xl\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.xl\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.xl\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.xl\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.xl\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.xl\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.xl\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.xl\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.xl\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.xl\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.xl\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.xl\:space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.xl\:space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.xl\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.xl\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.xl\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.xl\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.xl\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.xl\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.xl\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.xl\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.xl\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.xl\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.xl\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.xl\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.xl\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.xl\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.xl\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.xl\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.xl\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.xl\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.xl\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.xl\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.xl\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.xl\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.xl\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.xl\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.xl\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.xl\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.xl\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.xl\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.xl\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.xl\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.xl\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.xl\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.xl\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.xl\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.xl\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.xl\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.xl\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.xl\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.xl\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.xl\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.xl\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.xl\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.xl\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.xl\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.xl\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.xl\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.xl\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.xl\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.xl\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.xl\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.xl\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.xl\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.xl\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.xl\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.xl\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.xl\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.xl\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.xl\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.xl\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.xl\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.xl\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.xl\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.xl\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.xl\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.xl\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.xl\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.xl\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.xl\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.xl\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.xl\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.xl\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.xl\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.xl\:divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.xl\:divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.xl\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.xl\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.xl\:divide-transparent>:not(template)~:not(template){border-color:transparent!important}.xl\:divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.xl\:divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.xl\:divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.xl\:divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.xl\:divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.xl\:divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.xl\:divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.xl\:divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.xl\:divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.xl\:divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.xl\:divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.xl\:divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.xl\:divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.xl\:divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.xl\:divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.xl\:divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.xl\:divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.xl\:divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.xl\:divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.xl\:divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.xl\:divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.xl\:divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.xl\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.xl\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.xl\:divide-solid>:not(template)~:not(template){border-style:solid!important}.xl\:divide-dashed>:not(template)~:not(template){border-style:dashed!important}.xl\:divide-dotted>:not(template)~:not(template){border-style:dotted!important}.xl\:divide-double>:not(template)~:not(template){border-style:double!important}.xl\:divide-none>:not(template)~:not(template){border-style:none!important}.xl\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.xl\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.xl\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.xl\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.xl\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.xl\:sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.xl\:not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.xl\:focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.xl\:focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.xl\:appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.xl\:bg-fixed{background-attachment:fixed!important}.xl\:bg-local{background-attachment:local!important}.xl\:bg-scroll{background-attachment:scroll!important}.xl\:bg-clip-border{background-clip:border-box!important}.xl\:bg-clip-padding{background-clip:padding-box!important}.xl\:bg-clip-content{background-clip:content-box!important}.xl\:bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.xl\:bg-transparent{background-color:transparent!important}.xl\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.xl\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.xl\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.xl\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.xl\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.xl\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.xl\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.xl\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.xl\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.xl\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.xl\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.xl\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.xl\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.xl\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.xl\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.xl\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.xl\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.xl\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.xl\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.xl\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.xl\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.xl\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.xl\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.xl\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-transparent{background-color:transparent!important}.group:hover .xl\:group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .xl\:group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .xl\:group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .xl\:group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .xl\:group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-transparent{background-color:transparent!important}.group:focus .xl\:group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .xl\:group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .xl\:group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .xl\:group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .xl\:group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.xl\:hover\:bg-transparent:hover{background-color:transparent!important}.xl\:hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.xl\:hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.xl\:hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.xl\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.xl\:hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.xl\:hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.xl\:hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.xl\:hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.xl\:hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.xl\:hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.xl\:hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.xl\:hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.xl\:hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.xl\:hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.xl\:hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.xl\:hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.xl\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.xl\:hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.xl\:hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.xl\:hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.xl\:hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.xl\:hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.xl\:hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.xl\:hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.xl\:focus\:bg-transparent:focus{background-color:transparent!important}.xl\:focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.xl\:focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.xl\:focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.xl\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.xl\:focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.xl\:focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.xl\:focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.xl\:focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.xl\:focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.xl\:focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.xl\:focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.xl\:focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.xl\:focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.xl\:focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.xl\:focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.xl\:focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.xl\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.xl\:focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.xl\:focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.xl\:focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.xl\:focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.xl\:focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.xl\:focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.xl\:focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.xl\:active\:bg-transparent:active{background-color:transparent!important}.xl\:active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.xl\:active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.xl\:active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.xl\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.xl\:active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.xl\:active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.xl\:active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.xl\:active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.xl\:active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.xl\:active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.xl\:active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.xl\:active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.xl\:active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.xl\:active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.xl\:active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.xl\:active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.xl\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.xl\:active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.xl\:active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.xl\:active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.xl\:active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.xl\:active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.xl\:active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.xl\:active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.xl\:bg-none{background-image:none!important}.xl\:bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.xl\:bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.xl\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.xl\:bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.xl\:bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.xl\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.xl\:bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.xl\:bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.xl\:from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.xl\:from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.xl\:from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.xl\:from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.xl\:from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.xl\:from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.xl\:from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.xl\:from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.xl\:from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.xl\:from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.xl\:from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.xl\:from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.xl\:from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.xl\:from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.xl\:from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.xl\:from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.xl\:from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.xl\:from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.xl\:from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.xl\:from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.xl\:via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.xl\:via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.xl\:via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.xl\:via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.xl\:via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.xl\:via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.xl\:via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.xl\:via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.xl\:via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.xl\:via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.xl\:via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.xl\:via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.xl\:via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.xl\:via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.xl\:via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.xl\:via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.xl\:via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.xl\:via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.xl\:via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.xl\:via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.xl\:to-transparent{--gradient-to-color:transparent!important}.xl\:to-white{--gradient-to-color:#fff!important}.xl\:to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.xl\:to-blackest{--gradient-to-color:#000!important}.xl\:to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.xl\:to-black{--gradient-to-color:#23292d!important}.xl\:to-gray-darkest{--gradient-to-color:#3d4852!important}.xl\:to-gray-darker{--gradient-to-color:#606f7b!important}.xl\:to-gray-dark{--gradient-to-color:#9ea3a8!important}.xl\:to-gray{--gradient-to-color:#b8c2cc!important}.xl\:to-gray-light{--gradient-to-color:#dae1e7!important}.xl\:to-gray-lighter{--gradient-to-color:#f1f1f1!important}.xl\:to-gray-lightest{--gradient-to-color:#f8fafc!important}.xl\:to-blue-darkest{--gradient-to-color:#1673a7!important}.xl\:to-blue-dark{--gradient-to-color:#0073aa!important}.xl\:to-blue{--gradient-to-color:#3188e6!important}.xl\:to-blue-light{--gradient-to-color:#a4cafe!important}.xl\:to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.xl\:to-orange{--gradient-to-color:#dd6923!important}.xl\:to-orange-darker{--gradient-to-color:#d5551e!important}.xl\:to-orange-darkest{--gradient-to-color:#c9501c!important}.xl\:to-red{--gradient-to-color:#e82323!important}.xl\:to-green{--gradient-to-color:#46b450!important}.xl\:to-yellow-400{--gradient-to-color:#e3a008!important}.xl\:to-yellow-50{--gradient-to-color:#fdfdea!important}.xl\:hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.xl\:hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.xl\:hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.xl\:hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.xl\:hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.xl\:hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.xl\:hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.xl\:hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.xl\:hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.xl\:hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.xl\:hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.xl\:hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.xl\:hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.xl\:hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.xl\:hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.xl\:hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.xl\:hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.xl\:hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.xl\:hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.xl\:hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.xl\:hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.xl\:hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.xl\:hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.xl\:hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.xl\:hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.xl\:hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.xl\:hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.xl\:hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.xl\:hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.xl\:hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.xl\:hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.xl\:hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.xl\:hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.xl\:hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.xl\:hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.xl\:hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.xl\:hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.xl\:hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.xl\:hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.xl\:hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.xl\:hover\:to-transparent:hover{--gradient-to-color:transparent!important}.xl\:hover\:to-white:hover{--gradient-to-color:#fff!important}.xl\:hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.xl\:hover\:to-blackest:hover{--gradient-to-color:#000!important}.xl\:hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.xl\:hover\:to-black:hover{--gradient-to-color:#23292d!important}.xl\:hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.xl\:hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.xl\:hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.xl\:hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.xl\:hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.xl\:hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.xl\:hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.xl\:hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.xl\:hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.xl\:hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.xl\:hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.xl\:hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.xl\:hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.xl\:hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.xl\:hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.xl\:hover\:to-red:hover{--gradient-to-color:#e82323!important}.xl\:hover\:to-green:hover{--gradient-to-color:#46b450!important}.xl\:hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.xl\:hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.xl\:focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.xl\:focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.xl\:focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.xl\:focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.xl\:focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.xl\:focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.xl\:focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.xl\:focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.xl\:focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.xl\:focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.xl\:focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.xl\:focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.xl\:focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.xl\:focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.xl\:focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.xl\:focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.xl\:focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.xl\:focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.xl\:focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.xl\:focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.xl\:focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.xl\:focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.xl\:focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.xl\:focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.xl\:focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.xl\:focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.xl\:focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.xl\:focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.xl\:focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.xl\:focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.xl\:focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.xl\:focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.xl\:focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.xl\:focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.xl\:focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.xl\:focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.xl\:focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.xl\:focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.xl\:focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.xl\:focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.xl\:focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.xl\:focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.xl\:focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.xl\:focus\:to-transparent:focus{--gradient-to-color:transparent!important}.xl\:focus\:to-white:focus{--gradient-to-color:#fff!important}.xl\:focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.xl\:focus\:to-blackest:focus{--gradient-to-color:#000!important}.xl\:focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.xl\:focus\:to-black:focus{--gradient-to-color:#23292d!important}.xl\:focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.xl\:focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.xl\:focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.xl\:focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.xl\:focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.xl\:focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.xl\:focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.xl\:focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.xl\:focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.xl\:focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.xl\:focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.xl\:focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.xl\:focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.xl\:focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.xl\:focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.xl\:focus\:to-red:focus{--gradient-to-color:#e82323!important}.xl\:focus\:to-green:focus{--gradient-to-color:#46b450!important}.xl\:focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.xl\:focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.xl\:bg-opacity-0{--bg-opacity:0!important}.xl\:bg-opacity-25{--bg-opacity:0.25!important}.xl\:bg-opacity-50{--bg-opacity:0.5!important}.xl\:bg-opacity-75{--bg-opacity:0.75!important}.xl\:bg-opacity-100{--bg-opacity:1!important}.xl\:hover\:bg-opacity-0:hover{--bg-opacity:0!important}.xl\:hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.xl\:hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.xl\:hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.xl\:hover\:bg-opacity-100:hover{--bg-opacity:1!important}.xl\:focus\:bg-opacity-0:focus{--bg-opacity:0!important}.xl\:focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.xl\:focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.xl\:focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.xl\:focus\:bg-opacity-100:focus{--bg-opacity:1!important}.xl\:bg-bottom{background-position:bottom!important}.xl\:bg-center{background-position:50%!important}.xl\:bg-left{background-position:0!important}.xl\:bg-left-bottom{background-position:0 100%!important}.xl\:bg-left-top{background-position:0 0!important}.xl\:bg-right{background-position:100%!important}.xl\:bg-right-bottom{background-position:100% 100%!important}.xl\:bg-right-top{background-position:100% 0!important}.xl\:bg-top{background-position:top!important}.xl\:bg-repeat{background-repeat:repeat!important}.xl\:bg-no-repeat{background-repeat:no-repeat!important}.xl\:bg-repeat-x{background-repeat:repeat-x!important}.xl\:bg-repeat-y{background-repeat:repeat-y!important}.xl\:bg-repeat-round{background-repeat:round!important}.xl\:bg-repeat-space{background-repeat:space!important}.xl\:bg-auto{background-size:auto!important}.xl\:bg-cover{background-size:cover!important}.xl\:bg-contain{background-size:contain!important}.xl\:border-collapse{border-collapse:collapse!important}.xl\:border-separate{border-collapse:separate!important}.xl\:border-transparent{border-color:transparent!important}.xl\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.xl\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.xl\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.xl\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.xl\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.xl\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.xl\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.xl\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.xl\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.xl\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.xl\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.xl\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.xl\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.xl\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.xl\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.xl\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.xl\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.xl\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.xl\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.xl\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.xl\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.xl\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.xl\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.xl\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.xl\:hover\:border-transparent:hover{border-color:transparent!important}.xl\:hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.xl\:hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.xl\:hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.xl\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.xl\:hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.xl\:hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.xl\:hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.xl\:hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.xl\:hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.xl\:hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.xl\:hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.xl\:hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.xl\:hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.xl\:hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.xl\:hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.xl\:hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.xl\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.xl\:hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.xl\:hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.xl\:hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.xl\:hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.xl\:hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.xl\:hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.xl\:hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.xl\:focus\:border-transparent:focus{border-color:transparent!important}.xl\:focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.xl\:focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.xl\:focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.xl\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.xl\:focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.xl\:focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.xl\:focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.xl\:focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.xl\:focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.xl\:focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.xl\:focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.xl\:focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.xl\:focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.xl\:focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.xl\:focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.xl\:focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.xl\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.xl\:focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.xl\:focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.xl\:focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.xl\:focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.xl\:focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.xl\:focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.xl\:focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-transparent{border-color:transparent!important}.group:hover .xl\:group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .xl\:group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .xl\:group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .xl\:group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .xl\:group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.xl\:border-opacity-0{--border-opacity:0!important}.xl\:border-opacity-25{--border-opacity:0.25!important}.xl\:border-opacity-50{--border-opacity:0.5!important}.xl\:border-opacity-75{--border-opacity:0.75!important}.xl\:border-opacity-100{--border-opacity:1!important}.xl\:hover\:border-opacity-0:hover{--border-opacity:0!important}.xl\:hover\:border-opacity-25:hover{--border-opacity:0.25!important}.xl\:hover\:border-opacity-50:hover{--border-opacity:0.5!important}.xl\:hover\:border-opacity-75:hover{--border-opacity:0.75!important}.xl\:hover\:border-opacity-100:hover{--border-opacity:1!important}.xl\:focus\:border-opacity-0:focus{--border-opacity:0!important}.xl\:focus\:border-opacity-25:focus{--border-opacity:0.25!important}.xl\:focus\:border-opacity-50:focus{--border-opacity:0.5!important}.xl\:focus\:border-opacity-75:focus{--border-opacity:0.75!important}.xl\:focus\:border-opacity-100:focus{--border-opacity:1!important}.xl\:rounded-none{border-radius:0!important}.xl\:rounded-sm{border-radius:.125rem!important}.xl\:rounded{border-radius:.25rem!important}.xl\:rounded-md{border-radius:.375rem!important}.xl\:rounded-lg{border-radius:.5rem!important}.xl\:rounded-xl{border-radius:.75rem!important}.xl\:rounded-2xl{border-radius:1rem!important}.xl\:rounded-3xl{border-radius:1.5rem!important}.xl\:rounded-full{border-radius:9999px!important}.xl\:rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\:rounded-r-none{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.xl\:rounded-b-none{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\:rounded-l-none{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.xl\:rounded-t-sm{border-top-left-radius:.125rem!important}.xl\:rounded-r-sm,.xl\:rounded-t-sm{border-top-right-radius:.125rem!important}.xl\:rounded-b-sm,.xl\:rounded-r-sm{border-bottom-right-radius:.125rem!important}.xl\:rounded-b-sm,.xl\:rounded-l-sm{border-bottom-left-radius:.125rem!important}.xl\:rounded-l-sm{border-top-left-radius:.125rem!important}.xl\:rounded-t{border-top-left-radius:.25rem!important}.xl\:rounded-r,.xl\:rounded-t{border-top-right-radius:.25rem!important}.xl\:rounded-b,.xl\:rounded-r{border-bottom-right-radius:.25rem!important}.xl\:rounded-b,.xl\:rounded-l{border-bottom-left-radius:.25rem!important}.xl\:rounded-l{border-top-left-radius:.25rem!important}.xl\:rounded-t-md{border-top-left-radius:.375rem!important}.xl\:rounded-r-md,.xl\:rounded-t-md{border-top-right-radius:.375rem!important}.xl\:rounded-b-md,.xl\:rounded-r-md{border-bottom-right-radius:.375rem!important}.xl\:rounded-b-md,.xl\:rounded-l-md{border-bottom-left-radius:.375rem!important}.xl\:rounded-l-md{border-top-left-radius:.375rem!important}.xl\:rounded-t-lg{border-top-left-radius:.5rem!important}.xl\:rounded-r-lg,.xl\:rounded-t-lg{border-top-right-radius:.5rem!important}.xl\:rounded-b-lg,.xl\:rounded-r-lg{border-bottom-right-radius:.5rem!important}.xl\:rounded-b-lg,.xl\:rounded-l-lg{border-bottom-left-radius:.5rem!important}.xl\:rounded-l-lg{border-top-left-radius:.5rem!important}.xl\:rounded-t-xl{border-top-left-radius:.75rem!important}.xl\:rounded-r-xl,.xl\:rounded-t-xl{border-top-right-radius:.75rem!important}.xl\:rounded-b-xl,.xl\:rounded-r-xl{border-bottom-right-radius:.75rem!important}.xl\:rounded-b-xl,.xl\:rounded-l-xl{border-bottom-left-radius:.75rem!important}.xl\:rounded-l-xl{border-top-left-radius:.75rem!important}.xl\:rounded-t-2xl{border-top-left-radius:1rem!important}.xl\:rounded-r-2xl,.xl\:rounded-t-2xl{border-top-right-radius:1rem!important}.xl\:rounded-b-2xl,.xl\:rounded-r-2xl{border-bottom-right-radius:1rem!important}.xl\:rounded-b-2xl,.xl\:rounded-l-2xl{border-bottom-left-radius:1rem!important}.xl\:rounded-l-2xl{border-top-left-radius:1rem!important}.xl\:rounded-t-3xl{border-top-left-radius:1.5rem!important}.xl\:rounded-r-3xl,.xl\:rounded-t-3xl{border-top-right-radius:1.5rem!important}.xl\:rounded-b-3xl,.xl\:rounded-r-3xl{border-bottom-right-radius:1.5rem!important}.xl\:rounded-b-3xl,.xl\:rounded-l-3xl{border-bottom-left-radius:1.5rem!important}.xl\:rounded-l-3xl{border-top-left-radius:1.5rem!important}.xl\:rounded-t-full{border-top-left-radius:9999px!important}.xl\:rounded-r-full,.xl\:rounded-t-full{border-top-right-radius:9999px!important}.xl\:rounded-b-full,.xl\:rounded-r-full{border-bottom-right-radius:9999px!important}.xl\:rounded-b-full,.xl\:rounded-l-full{border-bottom-left-radius:9999px!important}.xl\:rounded-l-full{border-top-left-radius:9999px!important}.xl\:rounded-tl-none{border-top-left-radius:0!important}.xl\:rounded-tr-none{border-top-right-radius:0!important}.xl\:rounded-br-none{border-bottom-right-radius:0!important}.xl\:rounded-bl-none{border-bottom-left-radius:0!important}.xl\:rounded-tl-sm{border-top-left-radius:.125rem!important}.xl\:rounded-tr-sm{border-top-right-radius:.125rem!important}.xl\:rounded-br-sm{border-bottom-right-radius:.125rem!important}.xl\:rounded-bl-sm{border-bottom-left-radius:.125rem!important}.xl\:rounded-tl{border-top-left-radius:.25rem!important}.xl\:rounded-tr{border-top-right-radius:.25rem!important}.xl\:rounded-br{border-bottom-right-radius:.25rem!important}.xl\:rounded-bl{border-bottom-left-radius:.25rem!important}.xl\:rounded-tl-md{border-top-left-radius:.375rem!important}.xl\:rounded-tr-md{border-top-right-radius:.375rem!important}.xl\:rounded-br-md{border-bottom-right-radius:.375rem!important}.xl\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.xl\:rounded-tl-lg{border-top-left-radius:.5rem!important}.xl\:rounded-tr-lg{border-top-right-radius:.5rem!important}.xl\:rounded-br-lg{border-bottom-right-radius:.5rem!important}.xl\:rounded-bl-lg{border-bottom-left-radius:.5rem!important}.xl\:rounded-tl-xl{border-top-left-radius:.75rem!important}.xl\:rounded-tr-xl{border-top-right-radius:.75rem!important}.xl\:rounded-br-xl{border-bottom-right-radius:.75rem!important}.xl\:rounded-bl-xl{border-bottom-left-radius:.75rem!important}.xl\:rounded-tl-2xl{border-top-left-radius:1rem!important}.xl\:rounded-tr-2xl{border-top-right-radius:1rem!important}.xl\:rounded-br-2xl{border-bottom-right-radius:1rem!important}.xl\:rounded-bl-2xl{border-bottom-left-radius:1rem!important}.xl\:rounded-tl-3xl{border-top-left-radius:1.5rem!important}.xl\:rounded-tr-3xl{border-top-right-radius:1.5rem!important}.xl\:rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.xl\:rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.xl\:rounded-tl-full{border-top-left-radius:9999px!important}.xl\:rounded-tr-full{border-top-right-radius:9999px!important}.xl\:rounded-br-full{border-bottom-right-radius:9999px!important}.xl\:rounded-bl-full{border-bottom-left-radius:9999px!important}.xl\:border-solid{border-style:solid!important}.xl\:border-dashed{border-style:dashed!important}.xl\:border-dotted{border-style:dotted!important}.xl\:border-double{border-style:double!important}.xl\:border-none{border-style:none!important}.xl\:border-0{border-width:0!important}.xl\:border-2{border-width:2px!important}.xl\:border-4{border-width:4px!important}.xl\:border-8{border-width:8px!important}.xl\:border{border-width:1px!important}.xl\:border-t-0{border-top-width:0!important}.xl\:border-r-0{border-right-width:0!important}.xl\:border-b-0{border-bottom-width:0!important}.xl\:border-l-0{border-left-width:0!important}.xl\:border-t-2{border-top-width:2px!important}.xl\:border-r-2{border-right-width:2px!important}.xl\:border-b-2{border-bottom-width:2px!important}.xl\:border-l-2{border-left-width:2px!important}.xl\:border-t-4{border-top-width:4px!important}.xl\:border-r-4{border-right-width:4px!important}.xl\:border-b-4{border-bottom-width:4px!important}.xl\:border-l-4{border-left-width:4px!important}.xl\:border-t-8{border-top-width:8px!important}.xl\:border-r-8{border-right-width:8px!important}.xl\:border-b-8{border-bottom-width:8px!important}.xl\:border-l-8{border-left-width:8px!important}.xl\:border-t{border-top-width:1px!important}.xl\:border-r{border-right-width:1px!important}.xl\:border-b{border-bottom-width:1px!important}.xl\:border-l{border-left-width:1px!important}.xl\:box-border{box-sizing:border-box!important}.xl\:box-content{box-sizing:content-box!important}.xl\:cursor-auto{cursor:auto!important}.xl\:cursor-default{cursor:default!important}.xl\:cursor-pointer{cursor:pointer!important}.xl\:cursor-wait{cursor:wait!important}.xl\:cursor-text{cursor:text!important}.xl\:cursor-move{cursor:move!important}.xl\:cursor-not-allowed{cursor:not-allowed!important}.xl\:block{display:block!important}.xl\:inline-block{display:inline-block!important}.xl\:inline{display:inline!important}.xl\:flex{display:flex!important}.xl\:inline-flex{display:inline-flex!important}.xl\:table{display:table!important}.xl\:table-caption{display:table-caption!important}.xl\:table-cell{display:table-cell!important}.xl\:table-column{display:table-column!important}.xl\:table-column-group{display:table-column-group!important}.xl\:table-footer-group{display:table-footer-group!important}.xl\:table-header-group{display:table-header-group!important}.xl\:table-row-group{display:table-row-group!important}.xl\:table-row{display:table-row!important}.xl\:flow-root{display:flow-root!important}.xl\:grid{display:grid!important}.xl\:inline-grid{display:inline-grid!important}.xl\:contents{display:contents!important}.xl\:hidden{display:none!important}.xl\:flex-row{flex-direction:row!important}.xl\:flex-row-reverse{flex-direction:row-reverse!important}.xl\:flex-col{flex-direction:column!important}.xl\:flex-col-reverse{flex-direction:column-reverse!important}.xl\:flex-wrap{flex-wrap:wrap!important}.xl\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\:flex-no-wrap{flex-wrap:nowrap!important}.xl\:place-items-auto{place-items:auto!important}.xl\:place-items-start{place-items:start!important}.xl\:place-items-end{place-items:end!important}.xl\:place-items-center{place-items:center!important}.xl\:place-items-stretch{place-items:stretch!important}.xl\:place-content-center{place-content:center!important}.xl\:place-content-start{place-content:start!important}.xl\:place-content-end{place-content:end!important}.xl\:place-content-between{place-content:space-between!important}.xl\:place-content-around{place-content:space-around!important}.xl\:place-content-evenly{place-content:space-evenly!important}.xl\:place-content-stretch{place-content:stretch!important}.xl\:place-self-auto{place-self:auto!important}.xl\:place-self-start{place-self:start!important}.xl\:place-self-end{place-self:end!important}.xl\:place-self-center{place-self:center!important}.xl\:place-self-stretch{place-self:stretch!important}.xl\:items-start{align-items:flex-start!important}.xl\:items-end{align-items:flex-end!important}.xl\:items-center{align-items:center!important}.xl\:items-baseline{align-items:baseline!important}.xl\:items-stretch{align-items:stretch!important}.xl\:content-center{align-content:center!important}.xl\:content-start{align-content:flex-start!important}.xl\:content-end{align-content:flex-end!important}.xl\:content-between{align-content:space-between!important}.xl\:content-around{align-content:space-around!important}.xl\:content-evenly{align-content:space-evenly!important}.xl\:self-auto{align-self:auto!important}.xl\:self-start{align-self:flex-start!important}.xl\:self-end{align-self:flex-end!important}.xl\:self-center{align-self:center!important}.xl\:self-stretch{align-self:stretch!important}.xl\:justify-items-auto{justify-items:auto!important}.xl\:justify-items-start{justify-items:start!important}.xl\:justify-items-end{justify-items:end!important}.xl\:justify-items-center{justify-items:center!important}.xl\:justify-items-stretch{justify-items:stretch!important}.xl\:justify-start{justify-content:flex-start!important}.xl\:justify-end{justify-content:flex-end!important}.xl\:justify-center{justify-content:center!important}.xl\:justify-between{justify-content:space-between!important}.xl\:justify-around{justify-content:space-around!important}.xl\:justify-evenly{justify-content:space-evenly!important}.xl\:justify-self-auto{justify-self:auto!important}.xl\:justify-self-start{justify-self:start!important}.xl\:justify-self-end{justify-self:end!important}.xl\:justify-self-center{justify-self:center!important}.xl\:justify-self-stretch{justify-self:stretch!important}.xl\:flex-1{flex:1 1 0%!important}.xl\:flex-auto{flex:1 1 auto!important}.xl\:flex-initial{flex:0 1 auto!important}.xl\:flex-none{flex:none!important}.xl\:flex-grow-0{flex-grow:0!important}.xl\:flex-grow{flex-grow:1!important}.xl\:flex-shrink-0{flex-shrink:0!important}.xl\:flex-shrink{flex-shrink:1!important}.xl\:order-1{order:1!important}.xl\:order-2{order:2!important}.xl\:order-3{order:3!important}.xl\:order-4{order:4!important}.xl\:order-5{order:5!important}.xl\:order-6{order:6!important}.xl\:order-7{order:7!important}.xl\:order-8{order:8!important}.xl\:order-9{order:9!important}.xl\:order-10{order:10!important}.xl\:order-11{order:11!important}.xl\:order-12{order:12!important}.xl\:order-first{order:-9999!important}.xl\:order-last{order:9999!important}.xl\:order-none{order:0!important}.xl\:float-right{float:right!important}.xl\:float-left{float:left!important}.xl\:float-none{float:none!important}.xl\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .xl\:ltr\:float-right{float:right!important}[dir=ltr] .xl\:ltr\:float-left{float:left!important}[dir=ltr] .xl\:ltr\:float-none{float:none!important}[dir=ltr] .xl\:ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .xl\:rtl\:float-right{float:right!important}[dir=rtl] .xl\:rtl\:float-left{float:left!important}[dir=rtl] .xl\:rtl\:float-none{float:none!important}[dir=rtl] .xl\:rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.xl\:clear-left{clear:left!important}.xl\:clear-right{clear:right!important}.xl\:clear-both{clear:both!important}.xl\:clear-none{clear:none!important}.xl\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.xl\:font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.xl\:font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.xl\:font-hairline{font-weight:100!important}.xl\:font-thin{font-weight:200!important}.xl\:font-light{font-weight:300!important}.xl\:font-normal{font-weight:400!important}.xl\:font-medium{font-weight:500!important}.xl\:font-semibold{font-weight:600!important}.xl\:font-bold{font-weight:700!important}.xl\:font-extrabold{font-weight:800!important}.xl\:font-black{font-weight:900!important}.xl\:hover\:font-hairline:hover{font-weight:100!important}.xl\:hover\:font-thin:hover{font-weight:200!important}.xl\:hover\:font-light:hover{font-weight:300!important}.xl\:hover\:font-normal:hover{font-weight:400!important}.xl\:hover\:font-medium:hover{font-weight:500!important}.xl\:hover\:font-semibold:hover{font-weight:600!important}.xl\:hover\:font-bold:hover{font-weight:700!important}.xl\:hover\:font-extrabold:hover{font-weight:800!important}.xl\:hover\:font-black:hover{font-weight:900!important}.xl\:focus\:font-hairline:focus{font-weight:100!important}.xl\:focus\:font-thin:focus{font-weight:200!important}.xl\:focus\:font-light:focus{font-weight:300!important}.xl\:focus\:font-normal:focus{font-weight:400!important}.xl\:focus\:font-medium:focus{font-weight:500!important}.xl\:focus\:font-semibold:focus{font-weight:600!important}.xl\:focus\:font-bold:focus{font-weight:700!important}.xl\:focus\:font-extrabold:focus{font-weight:800!important}.xl\:focus\:font-black:focus{font-weight:900!important}.xl\:h-0{height:0!important}.xl\:h-1{height:.25rem!important}.xl\:h-2{height:.5rem!important}.xl\:h-3{height:.75rem!important}.xl\:h-4{height:1rem!important}.xl\:h-5{height:1.25rem!important}.xl\:h-6{height:1.5rem!important}.xl\:h-7{height:1.75rem!important}.xl\:h-8{height:2rem!important}.xl\:h-9{height:2.25rem!important}.xl\:h-10{height:2.5rem!important}.xl\:h-11{height:2.75rem!important}.xl\:h-12{height:3rem!important}.xl\:h-13{height:3.25rem!important}.xl\:h-14{height:3.5rem!important}.xl\:h-15{height:3.75rem!important}.xl\:h-16{height:4rem!important}.xl\:h-20{height:5rem!important}.xl\:h-24{height:6rem!important}.xl\:h-28{height:7rem!important}.xl\:h-32{height:8rem!important}.xl\:h-36{height:9rem!important}.xl\:h-40{height:10rem!important}.xl\:h-48{height:12rem!important}.xl\:h-56{height:14rem!important}.xl\:h-60{height:15rem!important}.xl\:h-64{height:16rem!important}.xl\:h-72{height:18rem!important}.xl\:h-80{height:20rem!important}.xl\:h-96{height:24rem!important}.xl\:h-auto{height:auto!important}.xl\:h-px{height:1px!important}.xl\:h-0\.5{height:.125rem!important}.xl\:h-1\.5{height:.375rem!important}.xl\:h-2\.5{height:.625rem!important}.xl\:h-3\.5{height:.875rem!important}.xl\:h-1\/2{height:50%!important}.xl\:h-1\/3{height:33.333333%!important}.xl\:h-2\/3{height:66.666667%!important}.xl\:h-1\/4{height:25%!important}.xl\:h-2\/4{height:50%!important}.xl\:h-3\/4{height:75%!important}.xl\:h-1\/5{height:20%!important}.xl\:h-2\/5{height:40%!important}.xl\:h-3\/5{height:60%!important}.xl\:h-4\/5{height:80%!important}.xl\:h-1\/6{height:16.666667%!important}.xl\:h-2\/6{height:33.333333%!important}.xl\:h-3\/6{height:50%!important}.xl\:h-4\/6{height:66.666667%!important}.xl\:h-5\/6{height:83.333333%!important}.xl\:h-1\/12{height:8.333333%!important}.xl\:h-2\/12{height:16.666667%!important}.xl\:h-3\/12{height:25%!important}.xl\:h-4\/12{height:33.333333%!important}.xl\:h-5\/12{height:41.666667%!important}.xl\:h-6\/12{height:50%!important}.xl\:h-7\/12{height:58.333333%!important}.xl\:h-8\/12{height:66.666667%!important}.xl\:h-9\/12{height:75%!important}.xl\:h-10\/12{height:83.333333%!important}.xl\:h-11\/12{height:91.666667%!important}.xl\:h-full{height:100%!important}.xl\:h-screen{height:100vh!important}.xl\:text-xs{font-size:.7rem!important}.xl\:text-sm{font-size:.875rem!important}.xl\:text-base{font-size:1rem!important}.xl\:text-lg{font-size:1.125rem!important}.xl\:text-xl{font-size:1.25rem!important}.xl\:text-2xl{font-size:1.5rem!important}.xl\:text-3xl{font-size:1.875rem!important}.xl\:text-4xl{font-size:2.25rem!important}.xl\:text-5xl{font-size:3rem!important}.xl\:text-6xl{font-size:4rem!important}.xl\:leading-3{line-height:.75rem!important}.xl\:leading-4{line-height:1rem!important}.xl\:leading-5{line-height:1.25rem!important}.xl\:leading-6{line-height:1.5rem!important}.xl\:leading-7{line-height:1.75rem!important}.xl\:leading-8{line-height:2rem!important}.xl\:leading-9{line-height:2.25rem!important}.xl\:leading-10{line-height:2.5rem!important}.xl\:leading-none{line-height:1!important}.xl\:leading-tight{line-height:1.25!important}.xl\:leading-snug{line-height:1.375!important}.xl\:leading-normal{line-height:1.5!important}.xl\:leading-relaxed{line-height:1.625!important}.xl\:leading-loose{line-height:2!important}.xl\:list-inside{list-style-position:inside!important}.xl\:list-outside{list-style-position:outside!important}.xl\:list-none{list-style-type:none!important}.xl\:list-disc{list-style-type:disc!important}.xl\:list-decimal{list-style-type:decimal!important}.xl\:m-0{margin:0!important}.xl\:m-1{margin:.25rem!important}.xl\:m-2{margin:.5rem!important}.xl\:m-3{margin:.75rem!important}.xl\:m-4{margin:1rem!important}.xl\:m-5{margin:1.25rem!important}.xl\:m-6{margin:1.5rem!important}.xl\:m-7{margin:1.75rem!important}.xl\:m-8{margin:2rem!important}.xl\:m-9{margin:2.25rem!important}.xl\:m-10{margin:2.5rem!important}.xl\:m-11{margin:2.75rem!important}.xl\:m-12{margin:3rem!important}.xl\:m-13{margin:3.25rem!important}.xl\:m-14{margin:3.5rem!important}.xl\:m-15{margin:3.75rem!important}.xl\:m-16{margin:4rem!important}.xl\:m-20{margin:5rem!important}.xl\:m-24{margin:6rem!important}.xl\:m-28{margin:7rem!important}.xl\:m-32{margin:8rem!important}.xl\:m-36{margin:9rem!important}.xl\:m-40{margin:10rem!important}.xl\:m-48{margin:12rem!important}.xl\:m-56{margin:14rem!important}.xl\:m-60{margin:15rem!important}.xl\:m-64{margin:16rem!important}.xl\:m-72{margin:18rem!important}.xl\:m-80{margin:20rem!important}.xl\:m-96{margin:24rem!important}.xl\:m-auto{margin:auto!important}.xl\:m-px{margin:1px!important}.xl\:m-0\.5{margin:.125rem!important}.xl\:m-1\.5{margin:.375rem!important}.xl\:m-2\.5{margin:.625rem!important}.xl\:m-3\.5{margin:.875rem!important}.xl\:m-1\/2{margin:50%!important}.xl\:m-1\/3{margin:33.333333%!important}.xl\:m-2\/3{margin:66.666667%!important}.xl\:m-1\/4{margin:25%!important}.xl\:m-2\/4{margin:50%!important}.xl\:m-3\/4{margin:75%!important}.xl\:m-1\/5{margin:20%!important}.xl\:m-2\/5{margin:40%!important}.xl\:m-3\/5{margin:60%!important}.xl\:m-4\/5{margin:80%!important}.xl\:m-1\/6{margin:16.666667%!important}.xl\:m-2\/6{margin:33.333333%!important}.xl\:m-3\/6{margin:50%!important}.xl\:m-4\/6{margin:66.666667%!important}.xl\:m-5\/6{margin:83.333333%!important}.xl\:m-1\/12{margin:8.333333%!important}.xl\:m-2\/12{margin:16.666667%!important}.xl\:m-3\/12{margin:25%!important}.xl\:m-4\/12{margin:33.333333%!important}.xl\:m-5\/12{margin:41.666667%!important}.xl\:m-6\/12{margin:50%!important}.xl\:m-7\/12{margin:58.333333%!important}.xl\:m-8\/12{margin:66.666667%!important}.xl\:m-9\/12{margin:75%!important}.xl\:m-10\/12{margin:83.333333%!important}.xl\:m-11\/12{margin:91.666667%!important}.xl\:m-full{margin:100%!important}.xl\:-m-1{margin:-.25rem!important}.xl\:-m-2{margin:-.5rem!important}.xl\:-m-3{margin:-.75rem!important}.xl\:-m-4{margin:-1rem!important}.xl\:-m-5{margin:-1.25rem!important}.xl\:-m-6{margin:-1.5rem!important}.xl\:-m-7{margin:-1.75rem!important}.xl\:-m-8{margin:-2rem!important}.xl\:-m-9{margin:-2.25rem!important}.xl\:-m-10{margin:-2.5rem!important}.xl\:-m-11{margin:-2.75rem!important}.xl\:-m-12{margin:-3rem!important}.xl\:-m-13{margin:-3.25rem!important}.xl\:-m-14{margin:-3.5rem!important}.xl\:-m-15{margin:-3.75rem!important}.xl\:-m-16{margin:-4rem!important}.xl\:-m-20{margin:-5rem!important}.xl\:-m-24{margin:-6rem!important}.xl\:-m-28{margin:-7rem!important}.xl\:-m-32{margin:-8rem!important}.xl\:-m-36{margin:-9rem!important}.xl\:-m-40{margin:-10rem!important}.xl\:-m-48{margin:-12rem!important}.xl\:-m-56{margin:-14rem!important}.xl\:-m-60{margin:-15rem!important}.xl\:-m-64{margin:-16rem!important}.xl\:-m-72{margin:-18rem!important}.xl\:-m-80{margin:-20rem!important}.xl\:-m-96{margin:-24rem!important}.xl\:-m-px{margin:-1px!important}.xl\:-m-0\.5{margin:-.125rem!important}.xl\:-m-1\.5{margin:-.375rem!important}.xl\:-m-2\.5{margin:-.625rem!important}.xl\:-m-3\.5{margin:-.875rem!important}.xl\:-m-1\/2{margin:-50%!important}.xl\:-m-1\/3{margin:-33.33333%!important}.xl\:-m-2\/3{margin:-66.66667%!important}.xl\:-m-1\/4{margin:-25%!important}.xl\:-m-2\/4{margin:-50%!important}.xl\:-m-3\/4{margin:-75%!important}.xl\:-m-1\/5{margin:-20%!important}.xl\:-m-2\/5{margin:-40%!important}.xl\:-m-3\/5{margin:-60%!important}.xl\:-m-4\/5{margin:-80%!important}.xl\:-m-1\/6{margin:-16.66667%!important}.xl\:-m-2\/6{margin:-33.33333%!important}.xl\:-m-3\/6{margin:-50%!important}.xl\:-m-4\/6{margin:-66.66667%!important}.xl\:-m-5\/6{margin:-83.33333%!important}.xl\:-m-1\/12{margin:-8.33333%!important}.xl\:-m-2\/12{margin:-16.66667%!important}.xl\:-m-3\/12{margin:-25%!important}.xl\:-m-4\/12{margin:-33.33333%!important}.xl\:-m-5\/12{margin:-41.66667%!important}.xl\:-m-6\/12{margin:-50%!important}.xl\:-m-7\/12{margin:-58.33333%!important}.xl\:-m-8\/12{margin:-66.66667%!important}.xl\:-m-9\/12{margin:-75%!important}.xl\:-m-10\/12{margin:-83.33333%!important}.xl\:-m-11\/12{margin:-91.66667%!important}.xl\:-m-full{margin:-100%!important}.xl\:my-0{margin-bottom:0!important;margin-top:0!important}.xl\:mx-0{margin-left:0!important;margin-right:0!important}.xl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.xl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.xl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.xl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.xl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}.xl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}.xl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.xl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.xl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.xl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.xl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.xl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}.xl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}.xl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.xl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.xl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.xl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.xl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.xl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.xl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}.xl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}.xl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.xl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.xl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.xl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.xl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.xl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.xl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}.xl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.xl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}.xl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}.xl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}.xl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}.xl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}.xl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}.xl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}.xl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}.xl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}.xl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}.xl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}.xl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}.xl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}.xl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}.xl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}.xl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}.xl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}.xl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}.xl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}.xl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}.xl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}.xl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}.xl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}.xl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}.xl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}.xl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}.xl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}.xl\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\:my-px{margin-bottom:1px!important;margin-top:1px!important}.xl\:mx-px{margin-left:1px!important;margin-right:1px!important}.xl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.xl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.xl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.xl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.xl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.xl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.xl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.xl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.xl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.xl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}.xl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.xl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.xl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.xl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.xl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.xl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}.xl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.xl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}.xl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.xl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}.xl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.xl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}.xl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.xl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}.xl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.xl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}.xl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.xl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}.xl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.xl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.xl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.xl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.xl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.xl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}.xl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.xl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.xl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.xl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.xl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.xl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.xl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.xl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.xl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.xl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}.xl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.xl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.xl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.xl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.xl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.xl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}.xl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.xl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.xl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.xl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.xl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.xl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}.xl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.xl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.xl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.xl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.xl\:my-full{margin-bottom:100%!important;margin-top:100%!important}.xl\:mx-full{margin-left:100%!important;margin-right:100%!important}.xl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.xl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.xl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.xl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.xl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.xl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.xl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.xl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.xl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.xl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.xl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.xl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.xl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.xl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.xl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.xl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.xl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.xl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.xl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.xl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.xl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.xl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.xl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.xl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.xl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.xl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.xl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.xl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.xl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.xl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.xl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.xl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.xl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.xl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.xl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.xl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.xl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.xl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.xl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.xl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.xl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.xl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.xl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.xl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.xl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.xl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.xl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.xl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.xl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.xl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.xl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.xl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.xl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.xl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.xl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.xl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.xl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}.xl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.xl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.xl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.xl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.xl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.xl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.xl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.xl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.xl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.xl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.xl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.xl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.xl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.xl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.xl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.xl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.xl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.xl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.xl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.xl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.xl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.xl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.xl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.xl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.xl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.xl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.xl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.xl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.xl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.xl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.xl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.xl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.xl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.xl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.xl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.xl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.xl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.xl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.xl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.xl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.xl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.xl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.xl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.xl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.xl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.xl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.xl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.xl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.xl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.xl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.xl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.xl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.xl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.xl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.xl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.xl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.xl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.xl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.xl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.xl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.xl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.xl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}.xl\:mt-0{margin-top:0!important}.xl\:mr-0{margin-right:0!important}.xl\:mb-0{margin-bottom:0!important}.xl\:ml-0{margin-left:0!important}.xl\:mt-1{margin-top:.25rem!important}.xl\:mr-1{margin-right:.25rem!important}.xl\:mb-1{margin-bottom:.25rem!important}.xl\:ml-1{margin-left:.25rem!important}.xl\:mt-2{margin-top:.5rem!important}.xl\:mr-2{margin-right:.5rem!important}.xl\:mb-2{margin-bottom:.5rem!important}.xl\:ml-2{margin-left:.5rem!important}.xl\:mt-3{margin-top:.75rem!important}.xl\:mr-3{margin-right:.75rem!important}.xl\:mb-3{margin-bottom:.75rem!important}.xl\:ml-3{margin-left:.75rem!important}.xl\:mt-4{margin-top:1rem!important}.xl\:mr-4{margin-right:1rem!important}.xl\:mb-4{margin-bottom:1rem!important}.xl\:ml-4{margin-left:1rem!important}.xl\:mt-5{margin-top:1.25rem!important}.xl\:mr-5{margin-right:1.25rem!important}.xl\:mb-5{margin-bottom:1.25rem!important}.xl\:ml-5{margin-left:1.25rem!important}.xl\:mt-6{margin-top:1.5rem!important}.xl\:mr-6{margin-right:1.5rem!important}.xl\:mb-6{margin-bottom:1.5rem!important}.xl\:ml-6{margin-left:1.5rem!important}.xl\:mt-7{margin-top:1.75rem!important}.xl\:mr-7{margin-right:1.75rem!important}.xl\:mb-7{margin-bottom:1.75rem!important}.xl\:ml-7{margin-left:1.75rem!important}.xl\:mt-8{margin-top:2rem!important}.xl\:mr-8{margin-right:2rem!important}.xl\:mb-8{margin-bottom:2rem!important}.xl\:ml-8{margin-left:2rem!important}.xl\:mt-9{margin-top:2.25rem!important}.xl\:mr-9{margin-right:2.25rem!important}.xl\:mb-9{margin-bottom:2.25rem!important}.xl\:ml-9{margin-left:2.25rem!important}.xl\:mt-10{margin-top:2.5rem!important}.xl\:mr-10{margin-right:2.5rem!important}.xl\:mb-10{margin-bottom:2.5rem!important}.xl\:ml-10{margin-left:2.5rem!important}.xl\:mt-11{margin-top:2.75rem!important}.xl\:mr-11{margin-right:2.75rem!important}.xl\:mb-11{margin-bottom:2.75rem!important}.xl\:ml-11{margin-left:2.75rem!important}.xl\:mt-12{margin-top:3rem!important}.xl\:mr-12{margin-right:3rem!important}.xl\:mb-12{margin-bottom:3rem!important}.xl\:ml-12{margin-left:3rem!important}.xl\:mt-13{margin-top:3.25rem!important}.xl\:mr-13{margin-right:3.25rem!important}.xl\:mb-13{margin-bottom:3.25rem!important}.xl\:ml-13{margin-left:3.25rem!important}.xl\:mt-14{margin-top:3.5rem!important}.xl\:mr-14{margin-right:3.5rem!important}.xl\:mb-14{margin-bottom:3.5rem!important}.xl\:ml-14{margin-left:3.5rem!important}.xl\:mt-15{margin-top:3.75rem!important}.xl\:mr-15{margin-right:3.75rem!important}.xl\:mb-15{margin-bottom:3.75rem!important}.xl\:ml-15{margin-left:3.75rem!important}.xl\:mt-16{margin-top:4rem!important}.xl\:mr-16{margin-right:4rem!important}.xl\:mb-16{margin-bottom:4rem!important}.xl\:ml-16{margin-left:4rem!important}.xl\:mt-20{margin-top:5rem!important}.xl\:mr-20{margin-right:5rem!important}.xl\:mb-20{margin-bottom:5rem!important}.xl\:ml-20{margin-left:5rem!important}.xl\:mt-24{margin-top:6rem!important}.xl\:mr-24{margin-right:6rem!important}.xl\:mb-24{margin-bottom:6rem!important}.xl\:ml-24{margin-left:6rem!important}.xl\:mt-28{margin-top:7rem!important}.xl\:mr-28{margin-right:7rem!important}.xl\:mb-28{margin-bottom:7rem!important}.xl\:ml-28{margin-left:7rem!important}.xl\:mt-32{margin-top:8rem!important}.xl\:mr-32{margin-right:8rem!important}.xl\:mb-32{margin-bottom:8rem!important}.xl\:ml-32{margin-left:8rem!important}.xl\:mt-36{margin-top:9rem!important}.xl\:mr-36{margin-right:9rem!important}.xl\:mb-36{margin-bottom:9rem!important}.xl\:ml-36{margin-left:9rem!important}.xl\:mt-40{margin-top:10rem!important}.xl\:mr-40{margin-right:10rem!important}.xl\:mb-40{margin-bottom:10rem!important}.xl\:ml-40{margin-left:10rem!important}.xl\:mt-48{margin-top:12rem!important}.xl\:mr-48{margin-right:12rem!important}.xl\:mb-48{margin-bottom:12rem!important}.xl\:ml-48{margin-left:12rem!important}.xl\:mt-56{margin-top:14rem!important}.xl\:mr-56{margin-right:14rem!important}.xl\:mb-56{margin-bottom:14rem!important}.xl\:ml-56{margin-left:14rem!important}.xl\:mt-60{margin-top:15rem!important}.xl\:mr-60{margin-right:15rem!important}.xl\:mb-60{margin-bottom:15rem!important}.xl\:ml-60{margin-left:15rem!important}.xl\:mt-64{margin-top:16rem!important}.xl\:mr-64{margin-right:16rem!important}.xl\:mb-64{margin-bottom:16rem!important}.xl\:ml-64{margin-left:16rem!important}.xl\:mt-72{margin-top:18rem!important}.xl\:mr-72{margin-right:18rem!important}.xl\:mb-72{margin-bottom:18rem!important}.xl\:ml-72{margin-left:18rem!important}.xl\:mt-80{margin-top:20rem!important}.xl\:mr-80{margin-right:20rem!important}.xl\:mb-80{margin-bottom:20rem!important}.xl\:ml-80{margin-left:20rem!important}.xl\:mt-96{margin-top:24rem!important}.xl\:mr-96{margin-right:24rem!important}.xl\:mb-96{margin-bottom:24rem!important}.xl\:ml-96{margin-left:24rem!important}.xl\:mt-auto{margin-top:auto!important}.xl\:mr-auto{margin-right:auto!important}.xl\:mb-auto{margin-bottom:auto!important}.xl\:ml-auto{margin-left:auto!important}.xl\:mt-px{margin-top:1px!important}.xl\:mr-px{margin-right:1px!important}.xl\:mb-px{margin-bottom:1px!important}.xl\:ml-px{margin-left:1px!important}.xl\:mt-0\.5{margin-top:.125rem!important}.xl\:mr-0\.5{margin-right:.125rem!important}.xl\:mb-0\.5{margin-bottom:.125rem!important}.xl\:ml-0\.5{margin-left:.125rem!important}.xl\:mt-1\.5{margin-top:.375rem!important}.xl\:mr-1\.5{margin-right:.375rem!important}.xl\:mb-1\.5{margin-bottom:.375rem!important}.xl\:ml-1\.5{margin-left:.375rem!important}.xl\:mt-2\.5{margin-top:.625rem!important}.xl\:mr-2\.5{margin-right:.625rem!important}.xl\:mb-2\.5{margin-bottom:.625rem!important}.xl\:ml-2\.5{margin-left:.625rem!important}.xl\:mt-3\.5{margin-top:.875rem!important}.xl\:mr-3\.5{margin-right:.875rem!important}.xl\:mb-3\.5{margin-bottom:.875rem!important}.xl\:ml-3\.5{margin-left:.875rem!important}.xl\:mt-1\/2{margin-top:50%!important}.xl\:mr-1\/2{margin-right:50%!important}.xl\:mb-1\/2{margin-bottom:50%!important}.xl\:ml-1\/2{margin-left:50%!important}.xl\:mt-1\/3{margin-top:33.333333%!important}.xl\:mr-1\/3{margin-right:33.333333%!important}.xl\:mb-1\/3{margin-bottom:33.333333%!important}.xl\:ml-1\/3{margin-left:33.333333%!important}.xl\:mt-2\/3{margin-top:66.666667%!important}.xl\:mr-2\/3{margin-right:66.666667%!important}.xl\:mb-2\/3{margin-bottom:66.666667%!important}.xl\:ml-2\/3{margin-left:66.666667%!important}.xl\:mt-1\/4{margin-top:25%!important}.xl\:mr-1\/4{margin-right:25%!important}.xl\:mb-1\/4{margin-bottom:25%!important}.xl\:ml-1\/4{margin-left:25%!important}.xl\:mt-2\/4{margin-top:50%!important}.xl\:mr-2\/4{margin-right:50%!important}.xl\:mb-2\/4{margin-bottom:50%!important}.xl\:ml-2\/4{margin-left:50%!important}.xl\:mt-3\/4{margin-top:75%!important}.xl\:mr-3\/4{margin-right:75%!important}.xl\:mb-3\/4{margin-bottom:75%!important}.xl\:ml-3\/4{margin-left:75%!important}.xl\:mt-1\/5{margin-top:20%!important}.xl\:mr-1\/5{margin-right:20%!important}.xl\:mb-1\/5{margin-bottom:20%!important}.xl\:ml-1\/5{margin-left:20%!important}.xl\:mt-2\/5{margin-top:40%!important}.xl\:mr-2\/5{margin-right:40%!important}.xl\:mb-2\/5{margin-bottom:40%!important}.xl\:ml-2\/5{margin-left:40%!important}.xl\:mt-3\/5{margin-top:60%!important}.xl\:mr-3\/5{margin-right:60%!important}.xl\:mb-3\/5{margin-bottom:60%!important}.xl\:ml-3\/5{margin-left:60%!important}.xl\:mt-4\/5{margin-top:80%!important}.xl\:mr-4\/5{margin-right:80%!important}.xl\:mb-4\/5{margin-bottom:80%!important}.xl\:ml-4\/5{margin-left:80%!important}.xl\:mt-1\/6{margin-top:16.666667%!important}.xl\:mr-1\/6{margin-right:16.666667%!important}.xl\:mb-1\/6{margin-bottom:16.666667%!important}.xl\:ml-1\/6{margin-left:16.666667%!important}.xl\:mt-2\/6{margin-top:33.333333%!important}.xl\:mr-2\/6{margin-right:33.333333%!important}.xl\:mb-2\/6{margin-bottom:33.333333%!important}.xl\:ml-2\/6{margin-left:33.333333%!important}.xl\:mt-3\/6{margin-top:50%!important}.xl\:mr-3\/6{margin-right:50%!important}.xl\:mb-3\/6{margin-bottom:50%!important}.xl\:ml-3\/6{margin-left:50%!important}.xl\:mt-4\/6{margin-top:66.666667%!important}.xl\:mr-4\/6{margin-right:66.666667%!important}.xl\:mb-4\/6{margin-bottom:66.666667%!important}.xl\:ml-4\/6{margin-left:66.666667%!important}.xl\:mt-5\/6{margin-top:83.333333%!important}.xl\:mr-5\/6{margin-right:83.333333%!important}.xl\:mb-5\/6{margin-bottom:83.333333%!important}.xl\:ml-5\/6{margin-left:83.333333%!important}.xl\:mt-1\/12{margin-top:8.333333%!important}.xl\:mr-1\/12{margin-right:8.333333%!important}.xl\:mb-1\/12{margin-bottom:8.333333%!important}.xl\:ml-1\/12{margin-left:8.333333%!important}.xl\:mt-2\/12{margin-top:16.666667%!important}.xl\:mr-2\/12{margin-right:16.666667%!important}.xl\:mb-2\/12{margin-bottom:16.666667%!important}.xl\:ml-2\/12{margin-left:16.666667%!important}.xl\:mt-3\/12{margin-top:25%!important}.xl\:mr-3\/12{margin-right:25%!important}.xl\:mb-3\/12{margin-bottom:25%!important}.xl\:ml-3\/12{margin-left:25%!important}.xl\:mt-4\/12{margin-top:33.333333%!important}.xl\:mr-4\/12{margin-right:33.333333%!important}.xl\:mb-4\/12{margin-bottom:33.333333%!important}.xl\:ml-4\/12{margin-left:33.333333%!important}.xl\:mt-5\/12{margin-top:41.666667%!important}.xl\:mr-5\/12{margin-right:41.666667%!important}.xl\:mb-5\/12{margin-bottom:41.666667%!important}.xl\:ml-5\/12{margin-left:41.666667%!important}.xl\:mt-6\/12{margin-top:50%!important}.xl\:mr-6\/12{margin-right:50%!important}.xl\:mb-6\/12{margin-bottom:50%!important}.xl\:ml-6\/12{margin-left:50%!important}.xl\:mt-7\/12{margin-top:58.333333%!important}.xl\:mr-7\/12{margin-right:58.333333%!important}.xl\:mb-7\/12{margin-bottom:58.333333%!important}.xl\:ml-7\/12{margin-left:58.333333%!important}.xl\:mt-8\/12{margin-top:66.666667%!important}.xl\:mr-8\/12{margin-right:66.666667%!important}.xl\:mb-8\/12{margin-bottom:66.666667%!important}.xl\:ml-8\/12{margin-left:66.666667%!important}.xl\:mt-9\/12{margin-top:75%!important}.xl\:mr-9\/12{margin-right:75%!important}.xl\:mb-9\/12{margin-bottom:75%!important}.xl\:ml-9\/12{margin-left:75%!important}.xl\:mt-10\/12{margin-top:83.333333%!important}.xl\:mr-10\/12{margin-right:83.333333%!important}.xl\:mb-10\/12{margin-bottom:83.333333%!important}.xl\:ml-10\/12{margin-left:83.333333%!important}.xl\:mt-11\/12{margin-top:91.666667%!important}.xl\:mr-11\/12{margin-right:91.666667%!important}.xl\:mb-11\/12{margin-bottom:91.666667%!important}.xl\:ml-11\/12{margin-left:91.666667%!important}.xl\:mt-full{margin-top:100%!important}.xl\:mr-full{margin-right:100%!important}.xl\:mb-full{margin-bottom:100%!important}.xl\:ml-full{margin-left:100%!important}.xl\:-mt-1{margin-top:-.25rem!important}.xl\:-mr-1{margin-right:-.25rem!important}.xl\:-mb-1{margin-bottom:-.25rem!important}.xl\:-ml-1{margin-left:-.25rem!important}.xl\:-mt-2{margin-top:-.5rem!important}.xl\:-mr-2{margin-right:-.5rem!important}.xl\:-mb-2{margin-bottom:-.5rem!important}.xl\:-ml-2{margin-left:-.5rem!important}.xl\:-mt-3{margin-top:-.75rem!important}.xl\:-mr-3{margin-right:-.75rem!important}.xl\:-mb-3{margin-bottom:-.75rem!important}.xl\:-ml-3{margin-left:-.75rem!important}.xl\:-mt-4{margin-top:-1rem!important}.xl\:-mr-4{margin-right:-1rem!important}.xl\:-mb-4{margin-bottom:-1rem!important}.xl\:-ml-4{margin-left:-1rem!important}.xl\:-mt-5{margin-top:-1.25rem!important}.xl\:-mr-5{margin-right:-1.25rem!important}.xl\:-mb-5{margin-bottom:-1.25rem!important}.xl\:-ml-5{margin-left:-1.25rem!important}.xl\:-mt-6{margin-top:-1.5rem!important}.xl\:-mr-6{margin-right:-1.5rem!important}.xl\:-mb-6{margin-bottom:-1.5rem!important}.xl\:-ml-6{margin-left:-1.5rem!important}.xl\:-mt-7{margin-top:-1.75rem!important}.xl\:-mr-7{margin-right:-1.75rem!important}.xl\:-mb-7{margin-bottom:-1.75rem!important}.xl\:-ml-7{margin-left:-1.75rem!important}.xl\:-mt-8{margin-top:-2rem!important}.xl\:-mr-8{margin-right:-2rem!important}.xl\:-mb-8{margin-bottom:-2rem!important}.xl\:-ml-8{margin-left:-2rem!important}.xl\:-mt-9{margin-top:-2.25rem!important}.xl\:-mr-9{margin-right:-2.25rem!important}.xl\:-mb-9{margin-bottom:-2.25rem!important}.xl\:-ml-9{margin-left:-2.25rem!important}.xl\:-mt-10{margin-top:-2.5rem!important}.xl\:-mr-10{margin-right:-2.5rem!important}.xl\:-mb-10{margin-bottom:-2.5rem!important}.xl\:-ml-10{margin-left:-2.5rem!important}.xl\:-mt-11{margin-top:-2.75rem!important}.xl\:-mr-11{margin-right:-2.75rem!important}.xl\:-mb-11{margin-bottom:-2.75rem!important}.xl\:-ml-11{margin-left:-2.75rem!important}.xl\:-mt-12{margin-top:-3rem!important}.xl\:-mr-12{margin-right:-3rem!important}.xl\:-mb-12{margin-bottom:-3rem!important}.xl\:-ml-12{margin-left:-3rem!important}.xl\:-mt-13{margin-top:-3.25rem!important}.xl\:-mr-13{margin-right:-3.25rem!important}.xl\:-mb-13{margin-bottom:-3.25rem!important}.xl\:-ml-13{margin-left:-3.25rem!important}.xl\:-mt-14{margin-top:-3.5rem!important}.xl\:-mr-14{margin-right:-3.5rem!important}.xl\:-mb-14{margin-bottom:-3.5rem!important}.xl\:-ml-14{margin-left:-3.5rem!important}.xl\:-mt-15{margin-top:-3.75rem!important}.xl\:-mr-15{margin-right:-3.75rem!important}.xl\:-mb-15{margin-bottom:-3.75rem!important}.xl\:-ml-15{margin-left:-3.75rem!important}.xl\:-mt-16{margin-top:-4rem!important}.xl\:-mr-16{margin-right:-4rem!important}.xl\:-mb-16{margin-bottom:-4rem!important}.xl\:-ml-16{margin-left:-4rem!important}.xl\:-mt-20{margin-top:-5rem!important}.xl\:-mr-20{margin-right:-5rem!important}.xl\:-mb-20{margin-bottom:-5rem!important}.xl\:-ml-20{margin-left:-5rem!important}.xl\:-mt-24{margin-top:-6rem!important}.xl\:-mr-24{margin-right:-6rem!important}.xl\:-mb-24{margin-bottom:-6rem!important}.xl\:-ml-24{margin-left:-6rem!important}.xl\:-mt-28{margin-top:-7rem!important}.xl\:-mr-28{margin-right:-7rem!important}.xl\:-mb-28{margin-bottom:-7rem!important}.xl\:-ml-28{margin-left:-7rem!important}.xl\:-mt-32{margin-top:-8rem!important}.xl\:-mr-32{margin-right:-8rem!important}.xl\:-mb-32{margin-bottom:-8rem!important}.xl\:-ml-32{margin-left:-8rem!important}.xl\:-mt-36{margin-top:-9rem!important}.xl\:-mr-36{margin-right:-9rem!important}.xl\:-mb-36{margin-bottom:-9rem!important}.xl\:-ml-36{margin-left:-9rem!important}.xl\:-mt-40{margin-top:-10rem!important}.xl\:-mr-40{margin-right:-10rem!important}.xl\:-mb-40{margin-bottom:-10rem!important}.xl\:-ml-40{margin-left:-10rem!important}.xl\:-mt-48{margin-top:-12rem!important}.xl\:-mr-48{margin-right:-12rem!important}.xl\:-mb-48{margin-bottom:-12rem!important}.xl\:-ml-48{margin-left:-12rem!important}.xl\:-mt-56{margin-top:-14rem!important}.xl\:-mr-56{margin-right:-14rem!important}.xl\:-mb-56{margin-bottom:-14rem!important}.xl\:-ml-56{margin-left:-14rem!important}.xl\:-mt-60{margin-top:-15rem!important}.xl\:-mr-60{margin-right:-15rem!important}.xl\:-mb-60{margin-bottom:-15rem!important}.xl\:-ml-60{margin-left:-15rem!important}.xl\:-mt-64{margin-top:-16rem!important}.xl\:-mr-64{margin-right:-16rem!important}.xl\:-mb-64{margin-bottom:-16rem!important}.xl\:-ml-64{margin-left:-16rem!important}.xl\:-mt-72{margin-top:-18rem!important}.xl\:-mr-72{margin-right:-18rem!important}.xl\:-mb-72{margin-bottom:-18rem!important}.xl\:-ml-72{margin-left:-18rem!important}.xl\:-mt-80{margin-top:-20rem!important}.xl\:-mr-80{margin-right:-20rem!important}.xl\:-mb-80{margin-bottom:-20rem!important}.xl\:-ml-80{margin-left:-20rem!important}.xl\:-mt-96{margin-top:-24rem!important}.xl\:-mr-96{margin-right:-24rem!important}.xl\:-mb-96{margin-bottom:-24rem!important}.xl\:-ml-96{margin-left:-24rem!important}.xl\:-mt-px{margin-top:-1px!important}.xl\:-mr-px{margin-right:-1px!important}.xl\:-mb-px{margin-bottom:-1px!important}.xl\:-ml-px{margin-left:-1px!important}.xl\:-mt-0\.5{margin-top:-.125rem!important}.xl\:-mr-0\.5{margin-right:-.125rem!important}.xl\:-mb-0\.5{margin-bottom:-.125rem!important}.xl\:-ml-0\.5{margin-left:-.125rem!important}.xl\:-mt-1\.5{margin-top:-.375rem!important}.xl\:-mr-1\.5{margin-right:-.375rem!important}.xl\:-mb-1\.5{margin-bottom:-.375rem!important}.xl\:-ml-1\.5{margin-left:-.375rem!important}.xl\:-mt-2\.5{margin-top:-.625rem!important}.xl\:-mr-2\.5{margin-right:-.625rem!important}.xl\:-mb-2\.5{margin-bottom:-.625rem!important}.xl\:-ml-2\.5{margin-left:-.625rem!important}.xl\:-mt-3\.5{margin-top:-.875rem!important}.xl\:-mr-3\.5{margin-right:-.875rem!important}.xl\:-mb-3\.5{margin-bottom:-.875rem!important}.xl\:-ml-3\.5{margin-left:-.875rem!important}.xl\:-mt-1\/2{margin-top:-50%!important}.xl\:-mr-1\/2{margin-right:-50%!important}.xl\:-mb-1\/2{margin-bottom:-50%!important}.xl\:-ml-1\/2{margin-left:-50%!important}.xl\:-mt-1\/3{margin-top:-33.33333%!important}.xl\:-mr-1\/3{margin-right:-33.33333%!important}.xl\:-mb-1\/3{margin-bottom:-33.33333%!important}.xl\:-ml-1\/3{margin-left:-33.33333%!important}.xl\:-mt-2\/3{margin-top:-66.66667%!important}.xl\:-mr-2\/3{margin-right:-66.66667%!important}.xl\:-mb-2\/3{margin-bottom:-66.66667%!important}.xl\:-ml-2\/3{margin-left:-66.66667%!important}.xl\:-mt-1\/4{margin-top:-25%!important}.xl\:-mr-1\/4{margin-right:-25%!important}.xl\:-mb-1\/4{margin-bottom:-25%!important}.xl\:-ml-1\/4{margin-left:-25%!important}.xl\:-mt-2\/4{margin-top:-50%!important}.xl\:-mr-2\/4{margin-right:-50%!important}.xl\:-mb-2\/4{margin-bottom:-50%!important}.xl\:-ml-2\/4{margin-left:-50%!important}.xl\:-mt-3\/4{margin-top:-75%!important}.xl\:-mr-3\/4{margin-right:-75%!important}.xl\:-mb-3\/4{margin-bottom:-75%!important}.xl\:-ml-3\/4{margin-left:-75%!important}.xl\:-mt-1\/5{margin-top:-20%!important}.xl\:-mr-1\/5{margin-right:-20%!important}.xl\:-mb-1\/5{margin-bottom:-20%!important}.xl\:-ml-1\/5{margin-left:-20%!important}.xl\:-mt-2\/5{margin-top:-40%!important}.xl\:-mr-2\/5{margin-right:-40%!important}.xl\:-mb-2\/5{margin-bottom:-40%!important}.xl\:-ml-2\/5{margin-left:-40%!important}.xl\:-mt-3\/5{margin-top:-60%!important}.xl\:-mr-3\/5{margin-right:-60%!important}.xl\:-mb-3\/5{margin-bottom:-60%!important}.xl\:-ml-3\/5{margin-left:-60%!important}.xl\:-mt-4\/5{margin-top:-80%!important}.xl\:-mr-4\/5{margin-right:-80%!important}.xl\:-mb-4\/5{margin-bottom:-80%!important}.xl\:-ml-4\/5{margin-left:-80%!important}.xl\:-mt-1\/6{margin-top:-16.66667%!important}.xl\:-mr-1\/6{margin-right:-16.66667%!important}.xl\:-mb-1\/6{margin-bottom:-16.66667%!important}.xl\:-ml-1\/6{margin-left:-16.66667%!important}.xl\:-mt-2\/6{margin-top:-33.33333%!important}.xl\:-mr-2\/6{margin-right:-33.33333%!important}.xl\:-mb-2\/6{margin-bottom:-33.33333%!important}.xl\:-ml-2\/6{margin-left:-33.33333%!important}.xl\:-mt-3\/6{margin-top:-50%!important}.xl\:-mr-3\/6{margin-right:-50%!important}.xl\:-mb-3\/6{margin-bottom:-50%!important}.xl\:-ml-3\/6{margin-left:-50%!important}.xl\:-mt-4\/6{margin-top:-66.66667%!important}.xl\:-mr-4\/6{margin-right:-66.66667%!important}.xl\:-mb-4\/6{margin-bottom:-66.66667%!important}.xl\:-ml-4\/6{margin-left:-66.66667%!important}.xl\:-mt-5\/6{margin-top:-83.33333%!important}.xl\:-mr-5\/6{margin-right:-83.33333%!important}.xl\:-mb-5\/6{margin-bottom:-83.33333%!important}.xl\:-ml-5\/6{margin-left:-83.33333%!important}.xl\:-mt-1\/12{margin-top:-8.33333%!important}.xl\:-mr-1\/12{margin-right:-8.33333%!important}.xl\:-mb-1\/12{margin-bottom:-8.33333%!important}.xl\:-ml-1\/12{margin-left:-8.33333%!important}.xl\:-mt-2\/12{margin-top:-16.66667%!important}.xl\:-mr-2\/12{margin-right:-16.66667%!important}.xl\:-mb-2\/12{margin-bottom:-16.66667%!important}.xl\:-ml-2\/12{margin-left:-16.66667%!important}.xl\:-mt-3\/12{margin-top:-25%!important}.xl\:-mr-3\/12{margin-right:-25%!important}.xl\:-mb-3\/12{margin-bottom:-25%!important}.xl\:-ml-3\/12{margin-left:-25%!important}.xl\:-mt-4\/12{margin-top:-33.33333%!important}.xl\:-mr-4\/12{margin-right:-33.33333%!important}.xl\:-mb-4\/12{margin-bottom:-33.33333%!important}.xl\:-ml-4\/12{margin-left:-33.33333%!important}.xl\:-mt-5\/12{margin-top:-41.66667%!important}.xl\:-mr-5\/12{margin-right:-41.66667%!important}.xl\:-mb-5\/12{margin-bottom:-41.66667%!important}.xl\:-ml-5\/12{margin-left:-41.66667%!important}.xl\:-mt-6\/12{margin-top:-50%!important}.xl\:-mr-6\/12{margin-right:-50%!important}.xl\:-mb-6\/12{margin-bottom:-50%!important}.xl\:-ml-6\/12{margin-left:-50%!important}.xl\:-mt-7\/12{margin-top:-58.33333%!important}.xl\:-mr-7\/12{margin-right:-58.33333%!important}.xl\:-mb-7\/12{margin-bottom:-58.33333%!important}.xl\:-ml-7\/12{margin-left:-58.33333%!important}.xl\:-mt-8\/12{margin-top:-66.66667%!important}.xl\:-mr-8\/12{margin-right:-66.66667%!important}.xl\:-mb-8\/12{margin-bottom:-66.66667%!important}.xl\:-ml-8\/12{margin-left:-66.66667%!important}.xl\:-mt-9\/12{margin-top:-75%!important}.xl\:-mr-9\/12{margin-right:-75%!important}.xl\:-mb-9\/12{margin-bottom:-75%!important}.xl\:-ml-9\/12{margin-left:-75%!important}.xl\:-mt-10\/12{margin-top:-83.33333%!important}.xl\:-mr-10\/12{margin-right:-83.33333%!important}.xl\:-mb-10\/12{margin-bottom:-83.33333%!important}.xl\:-ml-10\/12{margin-left:-83.33333%!important}.xl\:-mt-11\/12{margin-top:-91.66667%!important}.xl\:-mr-11\/12{margin-right:-91.66667%!important}.xl\:-mb-11\/12{margin-bottom:-91.66667%!important}.xl\:-ml-11\/12{margin-left:-91.66667%!important}.xl\:-mt-full{margin-top:-100%!important}.xl\:-mr-full{margin-right:-100%!important}.xl\:-mb-full{margin-bottom:-100%!important}.xl\:-ml-full{margin-left:-100%!important}[dir=ltr] .xl\:ltr\:m-0{margin:0!important}[dir=ltr] .xl\:ltr\:m-1{margin:.25rem!important}[dir=ltr] .xl\:ltr\:m-2{margin:.5rem!important}[dir=ltr] .xl\:ltr\:m-3{margin:.75rem!important}[dir=ltr] .xl\:ltr\:m-4{margin:1rem!important}[dir=ltr] .xl\:ltr\:m-5{margin:1.25rem!important}[dir=ltr] .xl\:ltr\:m-6{margin:1.5rem!important}[dir=ltr] .xl\:ltr\:m-7{margin:1.75rem!important}[dir=ltr] .xl\:ltr\:m-8{margin:2rem!important}[dir=ltr] .xl\:ltr\:m-9{margin:2.25rem!important}[dir=ltr] .xl\:ltr\:m-10{margin:2.5rem!important}[dir=ltr] .xl\:ltr\:m-11{margin:2.75rem!important}[dir=ltr] .xl\:ltr\:m-12{margin:3rem!important}[dir=ltr] .xl\:ltr\:m-13{margin:3.25rem!important}[dir=ltr] .xl\:ltr\:m-14{margin:3.5rem!important}[dir=ltr] .xl\:ltr\:m-15{margin:3.75rem!important}[dir=ltr] .xl\:ltr\:m-16{margin:4rem!important}[dir=ltr] .xl\:ltr\:m-20{margin:5rem!important}[dir=ltr] .xl\:ltr\:m-24{margin:6rem!important}[dir=ltr] .xl\:ltr\:m-28{margin:7rem!important}[dir=ltr] .xl\:ltr\:m-32{margin:8rem!important}[dir=ltr] .xl\:ltr\:m-36{margin:9rem!important}[dir=ltr] .xl\:ltr\:m-40{margin:10rem!important}[dir=ltr] .xl\:ltr\:m-48{margin:12rem!important}[dir=ltr] .xl\:ltr\:m-56{margin:14rem!important}[dir=ltr] .xl\:ltr\:m-60{margin:15rem!important}[dir=ltr] .xl\:ltr\:m-64{margin:16rem!important}[dir=ltr] .xl\:ltr\:m-72{margin:18rem!important}[dir=ltr] .xl\:ltr\:m-80{margin:20rem!important}[dir=ltr] .xl\:ltr\:m-96{margin:24rem!important}[dir=ltr] .xl\:ltr\:m-auto{margin:auto!important}[dir=ltr] .xl\:ltr\:m-px{margin:1px!important}[dir=ltr] .xl\:ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .xl\:ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .xl\:ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .xl\:ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .xl\:ltr\:m-1\/2{margin:50%!important}[dir=ltr] .xl\:ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .xl\:ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .xl\:ltr\:m-1\/4{margin:25%!important}[dir=ltr] .xl\:ltr\:m-2\/4{margin:50%!important}[dir=ltr] .xl\:ltr\:m-3\/4{margin:75%!important}[dir=ltr] .xl\:ltr\:m-1\/5{margin:20%!important}[dir=ltr] .xl\:ltr\:m-2\/5{margin:40%!important}[dir=ltr] .xl\:ltr\:m-3\/5{margin:60%!important}[dir=ltr] .xl\:ltr\:m-4\/5{margin:80%!important}[dir=ltr] .xl\:ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .xl\:ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .xl\:ltr\:m-3\/6{margin:50%!important}[dir=ltr] .xl\:ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .xl\:ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .xl\:ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .xl\:ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .xl\:ltr\:m-3\/12{margin:25%!important}[dir=ltr] .xl\:ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .xl\:ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .xl\:ltr\:m-6\/12{margin:50%!important}[dir=ltr] .xl\:ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .xl\:ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .xl\:ltr\:m-9\/12{margin:75%!important}[dir=ltr] .xl\:ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .xl\:ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .xl\:ltr\:m-full{margin:100%!important}[dir=ltr] .xl\:ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .xl\:ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .xl\:ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .xl\:ltr\:-m-4{margin:-1rem!important}[dir=ltr] .xl\:ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .xl\:ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .xl\:ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .xl\:ltr\:-m-8{margin:-2rem!important}[dir=ltr] .xl\:ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .xl\:ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .xl\:ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .xl\:ltr\:-m-12{margin:-3rem!important}[dir=ltr] .xl\:ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .xl\:ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .xl\:ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .xl\:ltr\:-m-16{margin:-4rem!important}[dir=ltr] .xl\:ltr\:-m-20{margin:-5rem!important}[dir=ltr] .xl\:ltr\:-m-24{margin:-6rem!important}[dir=ltr] .xl\:ltr\:-m-28{margin:-7rem!important}[dir=ltr] .xl\:ltr\:-m-32{margin:-8rem!important}[dir=ltr] .xl\:ltr\:-m-36{margin:-9rem!important}[dir=ltr] .xl\:ltr\:-m-40{margin:-10rem!important}[dir=ltr] .xl\:ltr\:-m-48{margin:-12rem!important}[dir=ltr] .xl\:ltr\:-m-56{margin:-14rem!important}[dir=ltr] .xl\:ltr\:-m-60{margin:-15rem!important}[dir=ltr] .xl\:ltr\:-m-64{margin:-16rem!important}[dir=ltr] .xl\:ltr\:-m-72{margin:-18rem!important}[dir=ltr] .xl\:ltr\:-m-80{margin:-20rem!important}[dir=ltr] .xl\:ltr\:-m-96{margin:-24rem!important}[dir=ltr] .xl\:ltr\:-m-px{margin:-1px!important}[dir=ltr] .xl\:ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .xl\:ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .xl\:ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .xl\:ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .xl\:ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .xl\:ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .xl\:ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .xl\:ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .xl\:ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .xl\:ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .xl\:ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .xl\:ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .xl\:ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .xl\:ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .xl\:ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .xl\:ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .xl\:ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .xl\:ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .xl\:ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .xl\:ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .xl\:ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .xl\:ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .xl\:ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .xl\:ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .xl\:ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .xl\:ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .xl\:ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .xl\:ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .xl\:ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .xl\:ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .xl\:ltr\:-m-full{margin:-100%!important}[dir=ltr] .xl\:ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .xl\:ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .xl\:ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .xl\:ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .xl\:ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .xl\:ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .xl\:ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .xl\:ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .xl\:ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .xl\:ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .xl\:ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .xl\:ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .xl\:ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .xl\:ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .xl\:ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .xl\:ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .xl\:ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .xl\:ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .xl\:ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .xl\:ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .xl\:ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .xl\:ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .xl\:ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .xl\:ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .xl\:ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .xl\:ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .xl\:ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .xl\:ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .xl\:ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .xl\:ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .xl\:ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .xl\:ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .xl\:ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .xl\:ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .xl\:ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .xl\:ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .xl\:ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .xl\:ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .xl\:ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .xl\:ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .xl\:ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .xl\:ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .xl\:ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .xl\:ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .xl\:ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .xl\:ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .xl\:ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .xl\:ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .xl\:ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .xl\:ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .xl\:ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .xl\:ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .xl\:ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .xl\:ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .xl\:ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .xl\:ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .xl\:ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .xl\:ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .xl\:ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .xl\:ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .xl\:ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .xl\:ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .xl\:ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .xl\:ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .xl\:ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .xl\:ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .xl\:ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .xl\:ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .xl\:ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .xl\:ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .xl\:ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .xl\:ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .xl\:ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .xl\:ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .xl\:ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .xl\:ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .xl\:ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .xl\:ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .xl\:ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .xl\:ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .xl\:ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .xl\:ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .xl\:ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .xl\:ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .xl\:ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .xl\:ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .xl\:ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .xl\:ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .xl\:ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .xl\:ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .xl\:ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .xl\:ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .xl\:ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .xl\:ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .xl\:ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .xl\:ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .xl\:ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .xl\:ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .xl\:ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .xl\:ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .xl\:ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .xl\:ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .xl\:ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .xl\:ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .xl\:ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .xl\:ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .xl\:ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .xl\:ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .xl\:ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .xl\:ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .xl\:ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .xl\:ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .xl\:ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .xl\:ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .xl\:ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .xl\:ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .xl\:ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .xl\:ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .xl\:ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .xl\:ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .xl\:ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .xl\:ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .xl\:ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .xl\:ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .xl\:ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .xl\:ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .xl\:ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .xl\:ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .xl\:ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .xl\:ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .xl\:ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .xl\:ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .xl\:ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .xl\:ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .xl\:ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .xl\:ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .xl\:ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .xl\:ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .xl\:ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .xl\:ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .xl\:ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .xl\:ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .xl\:ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .xl\:ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .xl\:ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .xl\:ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .xl\:ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .xl\:ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .xl\:ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .xl\:ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .xl\:ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .xl\:ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .xl\:ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .xl\:ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .xl\:ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .xl\:ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .xl\:ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .xl\:ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .xl\:ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .xl\:ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .xl\:ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .xl\:ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .xl\:ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .xl\:ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .xl\:ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .xl\:ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .xl\:ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .xl\:ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .xl\:ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .xl\:ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .xl\:ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .xl\:ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .xl\:ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .xl\:ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .xl\:ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .xl\:ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .xl\:ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .xl\:ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .xl\:ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .xl\:ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .xl\:ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .xl\:ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .xl\:ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .xl\:ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .xl\:ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .xl\:ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .xl\:ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .xl\:ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .xl\:ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .xl\:ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .xl\:ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .xl\:ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .xl\:ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .xl\:ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .xl\:ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .xl\:ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .xl\:ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .xl\:ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .xl\:ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .xl\:ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .xl\:ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .xl\:ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .xl\:ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .xl\:ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .xl\:ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .xl\:ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .xl\:ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .xl\:ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .xl\:ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .xl\:ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .xl\:ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .xl\:ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .xl\:ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .xl\:ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .xl\:ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .xl\:ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .xl\:ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .xl\:ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .xl\:ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .xl\:ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .xl\:ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .xl\:ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .xl\:ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .xl\:ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .xl\:ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .xl\:ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .xl\:ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .xl\:ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .xl\:ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .xl\:ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .xl\:ltr\:mt-0{margin-top:0!important}[dir=ltr] .xl\:ltr\:mr-0{margin-right:0!important}[dir=ltr] .xl\:ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .xl\:ltr\:ml-0{margin-left:0!important}[dir=ltr] .xl\:ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .xl\:ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .xl\:ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .xl\:ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .xl\:ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .xl\:ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .xl\:ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .xl\:ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .xl\:ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .xl\:ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .xl\:ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .xl\:ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .xl\:ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .xl\:ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .xl\:ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .xl\:ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .xl\:ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .xl\:ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .xl\:ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .xl\:ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .xl\:ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .xl\:ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .xl\:ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .xl\:ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .xl\:ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .xl\:ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .xl\:ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .xl\:ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .xl\:ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .xl\:ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .xl\:ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .xl\:ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .xl\:ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .xl\:ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .xl\:ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .xl\:ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .xl\:ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .xl\:ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .xl\:ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .xl\:ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .xl\:ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .xl\:ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .xl\:ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .xl\:ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .xl\:ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .xl\:ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .xl\:ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .xl\:ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .xl\:ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .xl\:ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .xl\:ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .xl\:ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .xl\:ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .xl\:ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .xl\:ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .xl\:ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .xl\:ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .xl\:ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .xl\:ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .xl\:ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .xl\:ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .xl\:ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .xl\:ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .xl\:ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .xl\:ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .xl\:ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .xl\:ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .xl\:ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .xl\:ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .xl\:ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .xl\:ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .xl\:ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .xl\:ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .xl\:ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .xl\:ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .xl\:ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .xl\:ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .xl\:ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .xl\:ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .xl\:ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .xl\:ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .xl\:ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .xl\:ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .xl\:ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .xl\:ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .xl\:ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .xl\:ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .xl\:ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .xl\:ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .xl\:ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .xl\:ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .xl\:ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .xl\:ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .xl\:ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .xl\:ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .xl\:ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .xl\:ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .xl\:ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .xl\:ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .xl\:ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .xl\:ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .xl\:ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .xl\:ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .xl\:ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .xl\:ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .xl\:ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .xl\:ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .xl\:ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .xl\:ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .xl\:ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .xl\:ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .xl\:ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .xl\:ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .xl\:ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .xl\:ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .xl\:ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .xl\:ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .xl\:ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .xl\:ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .xl\:ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .xl\:ltr\:mt-px{margin-top:1px!important}[dir=ltr] .xl\:ltr\:mr-px{margin-right:1px!important}[dir=ltr] .xl\:ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .xl\:ltr\:ml-px{margin-left:1px!important}[dir=ltr] .xl\:ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .xl\:ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .xl\:ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .xl\:ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .xl\:ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .xl\:ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .xl\:ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .xl\:ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .xl\:ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .xl\:ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .xl\:ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .xl\:ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .xl\:ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .xl\:ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .xl\:ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .xl\:ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .xl\:ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .xl\:ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .xl\:ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .xl\:ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .xl\:ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .xl\:ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .xl\:ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .xl\:ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .xl\:ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .xl\:ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .xl\:ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .xl\:ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .xl\:ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .xl\:ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .xl\:ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .xl\:ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .xl\:ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .xl\:ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .xl\:ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .xl\:ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .xl\:ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .xl\:ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .xl\:ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .xl\:ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .xl\:ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .xl\:ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .xl\:ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .xl\:ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .xl\:ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .xl\:ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .xl\:ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .xl\:ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .xl\:ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .xl\:ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .xl\:ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .xl\:ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .xl\:ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .xl\:ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .xl\:ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .xl\:ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .xl\:ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .xl\:ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .xl\:ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .xl\:ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .xl\:ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .xl\:ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .xl\:ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .xl\:ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .xl\:ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .xl\:ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .xl\:ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .xl\:ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .xl\:ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .xl\:ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .xl\:ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .xl\:ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .xl\:ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .xl\:ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .xl\:ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .xl\:ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .xl\:ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .xl\:ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .xl\:ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .xl\:ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .xl\:ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .xl\:ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .xl\:ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .xl\:ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .xl\:ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .xl\:ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .xl\:ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .xl\:ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .xl\:ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .xl\:ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .xl\:ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .xl\:ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .xl\:ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .xl\:ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .xl\:ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .xl\:ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .xl\:ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .xl\:ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .xl\:ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .xl\:ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .xl\:ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .xl\:ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .xl\:ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .xl\:ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .xl\:ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .xl\:ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .xl\:ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .xl\:ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .xl\:ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .xl\:ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .xl\:ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .xl\:ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .xl\:ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .xl\:ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .xl\:ltr\:mt-full{margin-top:100%!important}[dir=ltr] .xl\:ltr\:mr-full{margin-right:100%!important}[dir=ltr] .xl\:ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .xl\:ltr\:ml-full{margin-left:100%!important}[dir=ltr] .xl\:ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .xl\:ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .xl\:ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .xl\:ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .xl\:ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .xl\:ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .xl\:ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .xl\:ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .xl\:ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .xl\:ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .xl\:ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .xl\:ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .xl\:ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .xl\:ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .xl\:ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .xl\:ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .xl\:ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .xl\:ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .xl\:ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .xl\:ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .xl\:ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .xl\:ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .xl\:ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .xl\:ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .xl\:ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .xl\:ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .xl\:ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .xl\:ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .xl\:ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .xl\:ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .xl\:ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .xl\:ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .xl\:ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .xl\:ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .xl\:ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .xl\:ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .xl\:ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .xl\:ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .xl\:ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .xl\:ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .xl\:ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .xl\:ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .xl\:ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .xl\:ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .xl\:ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .xl\:ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .xl\:ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .xl\:ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .xl\:ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .xl\:ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .xl\:ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .xl\:ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .xl\:ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .xl\:ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .xl\:ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .xl\:ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .xl\:ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .xl\:ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .xl\:ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .xl\:ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .xl\:ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .xl\:ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .xl\:ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .xl\:ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .xl\:ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .xl\:ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .xl\:ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .xl\:ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .xl\:ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .xl\:ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .xl\:ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .xl\:ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .xl\:ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .xl\:ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .xl\:ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .xl\:ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .xl\:ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .xl\:ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .xl\:ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .xl\:ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .xl\:ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .xl\:ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .xl\:ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .xl\:ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .xl\:ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .xl\:ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .xl\:ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .xl\:ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .xl\:ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .xl\:ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .xl\:ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .xl\:ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .xl\:ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .xl\:ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .xl\:ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .xl\:ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .xl\:ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .xl\:ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .xl\:ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .xl\:ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .xl\:ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .xl\:ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .xl\:ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .xl\:ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .xl\:ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .xl\:ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .xl\:ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .xl\:ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .xl\:ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .xl\:ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .xl\:ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .xl\:ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .xl\:ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .xl\:ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .xl\:ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .xl\:ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .xl\:ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .xl\:ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .xl\:ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .xl\:ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .xl\:ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .xl\:ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .xl\:ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .xl\:ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .xl\:ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .xl\:ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .xl\:ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .xl\:ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .xl\:ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .xl\:ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .xl\:ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .xl\:ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .xl\:ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .xl\:ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .xl\:ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .xl\:ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .xl\:ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .xl\:ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .xl\:ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .xl\:ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .xl\:ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .xl\:ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .xl\:ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .xl\:ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .xl\:ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .xl\:ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .xl\:ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .xl\:ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .xl\:ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .xl\:ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .xl\:ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .xl\:ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .xl\:ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .xl\:ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .xl\:ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .xl\:ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .xl\:ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .xl\:ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .xl\:ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .xl\:ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .xl\:ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .xl\:ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .xl\:ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .xl\:ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .xl\:ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .xl\:ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .xl\:ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .xl\:ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .xl\:ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .xl\:ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .xl\:ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .xl\:ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .xl\:ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .xl\:ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .xl\:ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .xl\:ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .xl\:ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .xl\:ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .xl\:ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .xl\:ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .xl\:ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .xl\:ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .xl\:ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .xl\:ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .xl\:ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .xl\:ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .xl\:ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .xl\:ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .xl\:ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .xl\:ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .xl\:ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .xl\:ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .xl\:ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .xl\:ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .xl\:ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .xl\:ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .xl\:ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .xl\:ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .xl\:ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .xl\:ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .xl\:ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .xl\:ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .xl\:ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .xl\:ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .xl\:ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .xl\:ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .xl\:ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .xl\:ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .xl\:ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .xl\:ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .xl\:ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .xl\:ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .xl\:rtl\:m-0{margin:0!important}[dir=rtl] .xl\:rtl\:m-1{margin:.25rem!important}[dir=rtl] .xl\:rtl\:m-2{margin:.5rem!important}[dir=rtl] .xl\:rtl\:m-3{margin:.75rem!important}[dir=rtl] .xl\:rtl\:m-4{margin:1rem!important}[dir=rtl] .xl\:rtl\:m-5{margin:1.25rem!important}[dir=rtl] .xl\:rtl\:m-6{margin:1.5rem!important}[dir=rtl] .xl\:rtl\:m-7{margin:1.75rem!important}[dir=rtl] .xl\:rtl\:m-8{margin:2rem!important}[dir=rtl] .xl\:rtl\:m-9{margin:2.25rem!important}[dir=rtl] .xl\:rtl\:m-10{margin:2.5rem!important}[dir=rtl] .xl\:rtl\:m-11{margin:2.75rem!important}[dir=rtl] .xl\:rtl\:m-12{margin:3rem!important}[dir=rtl] .xl\:rtl\:m-13{margin:3.25rem!important}[dir=rtl] .xl\:rtl\:m-14{margin:3.5rem!important}[dir=rtl] .xl\:rtl\:m-15{margin:3.75rem!important}[dir=rtl] .xl\:rtl\:m-16{margin:4rem!important}[dir=rtl] .xl\:rtl\:m-20{margin:5rem!important}[dir=rtl] .xl\:rtl\:m-24{margin:6rem!important}[dir=rtl] .xl\:rtl\:m-28{margin:7rem!important}[dir=rtl] .xl\:rtl\:m-32{margin:8rem!important}[dir=rtl] .xl\:rtl\:m-36{margin:9rem!important}[dir=rtl] .xl\:rtl\:m-40{margin:10rem!important}[dir=rtl] .xl\:rtl\:m-48{margin:12rem!important}[dir=rtl] .xl\:rtl\:m-56{margin:14rem!important}[dir=rtl] .xl\:rtl\:m-60{margin:15rem!important}[dir=rtl] .xl\:rtl\:m-64{margin:16rem!important}[dir=rtl] .xl\:rtl\:m-72{margin:18rem!important}[dir=rtl] .xl\:rtl\:m-80{margin:20rem!important}[dir=rtl] .xl\:rtl\:m-96{margin:24rem!important}[dir=rtl] .xl\:rtl\:m-auto{margin:auto!important}[dir=rtl] .xl\:rtl\:m-px{margin:1px!important}[dir=rtl] .xl\:rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .xl\:rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .xl\:rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .xl\:rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .xl\:rtl\:m-1\/2{margin:50%!important}[dir=rtl] .xl\:rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .xl\:rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .xl\:rtl\:m-1\/4{margin:25%!important}[dir=rtl] .xl\:rtl\:m-2\/4{margin:50%!important}[dir=rtl] .xl\:rtl\:m-3\/4{margin:75%!important}[dir=rtl] .xl\:rtl\:m-1\/5{margin:20%!important}[dir=rtl] .xl\:rtl\:m-2\/5{margin:40%!important}[dir=rtl] .xl\:rtl\:m-3\/5{margin:60%!important}[dir=rtl] .xl\:rtl\:m-4\/5{margin:80%!important}[dir=rtl] .xl\:rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .xl\:rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .xl\:rtl\:m-3\/6{margin:50%!important}[dir=rtl] .xl\:rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .xl\:rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .xl\:rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .xl\:rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .xl\:rtl\:m-3\/12{margin:25%!important}[dir=rtl] .xl\:rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .xl\:rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .xl\:rtl\:m-6\/12{margin:50%!important}[dir=rtl] .xl\:rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .xl\:rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .xl\:rtl\:m-9\/12{margin:75%!important}[dir=rtl] .xl\:rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .xl\:rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .xl\:rtl\:m-full{margin:100%!important}[dir=rtl] .xl\:rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .xl\:rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .xl\:rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .xl\:rtl\:-m-4{margin:-1rem!important}[dir=rtl] .xl\:rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .xl\:rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .xl\:rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .xl\:rtl\:-m-8{margin:-2rem!important}[dir=rtl] .xl\:rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .xl\:rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .xl\:rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .xl\:rtl\:-m-12{margin:-3rem!important}[dir=rtl] .xl\:rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .xl\:rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .xl\:rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .xl\:rtl\:-m-16{margin:-4rem!important}[dir=rtl] .xl\:rtl\:-m-20{margin:-5rem!important}[dir=rtl] .xl\:rtl\:-m-24{margin:-6rem!important}[dir=rtl] .xl\:rtl\:-m-28{margin:-7rem!important}[dir=rtl] .xl\:rtl\:-m-32{margin:-8rem!important}[dir=rtl] .xl\:rtl\:-m-36{margin:-9rem!important}[dir=rtl] .xl\:rtl\:-m-40{margin:-10rem!important}[dir=rtl] .xl\:rtl\:-m-48{margin:-12rem!important}[dir=rtl] .xl\:rtl\:-m-56{margin:-14rem!important}[dir=rtl] .xl\:rtl\:-m-60{margin:-15rem!important}[dir=rtl] .xl\:rtl\:-m-64{margin:-16rem!important}[dir=rtl] .xl\:rtl\:-m-72{margin:-18rem!important}[dir=rtl] .xl\:rtl\:-m-80{margin:-20rem!important}[dir=rtl] .xl\:rtl\:-m-96{margin:-24rem!important}[dir=rtl] .xl\:rtl\:-m-px{margin:-1px!important}[dir=rtl] .xl\:rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .xl\:rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .xl\:rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .xl\:rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .xl\:rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .xl\:rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .xl\:rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .xl\:rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .xl\:rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .xl\:rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .xl\:rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .xl\:rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .xl\:rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .xl\:rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .xl\:rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .xl\:rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .xl\:rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .xl\:rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .xl\:rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .xl\:rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .xl\:rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .xl\:rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .xl\:rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .xl\:rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .xl\:rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .xl\:rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .xl\:rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .xl\:rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .xl\:rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .xl\:rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .xl\:rtl\:-m-full{margin:-100%!important}[dir=rtl] .xl\:rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .xl\:rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .xl\:rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .xl\:rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .xl\:rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .xl\:rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .xl\:rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .xl\:rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .xl\:rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .xl\:rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .xl\:rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .xl\:rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .xl\:rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .xl\:rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .xl\:rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .xl\:rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .xl\:rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .xl\:rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .xl\:rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .xl\:rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .xl\:rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .xl\:rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .xl\:rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .xl\:rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .xl\:rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .xl\:rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .xl\:rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .xl\:rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .xl\:rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .xl\:rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .xl\:rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .xl\:rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .xl\:rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .xl\:rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .xl\:rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .xl\:rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .xl\:rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .xl\:rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .xl\:rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .xl\:rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .xl\:rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .xl\:rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .xl\:rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .xl\:rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .xl\:rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .xl\:rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .xl\:rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .xl\:rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .xl\:rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .xl\:rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .xl\:rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .xl\:rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .xl\:rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .xl\:rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .xl\:rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .xl\:rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .xl\:rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .xl\:rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .xl\:rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .xl\:rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .xl\:rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .xl\:rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .xl\:rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .xl\:rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .xl\:rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .xl\:rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .xl\:rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .xl\:rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .xl\:rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .xl\:rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .xl\:rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .xl\:rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .xl\:rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .xl\:rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .xl\:rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .xl\:rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .xl\:rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .xl\:rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .xl\:rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .xl\:rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .xl\:rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .xl\:rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .xl\:rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .xl\:rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .xl\:rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .xl\:rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .xl\:rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .xl\:rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .xl\:rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .xl\:rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .xl\:rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .xl\:rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .xl\:rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .xl\:rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .xl\:rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .xl\:rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .xl\:rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .xl\:rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .xl\:rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .xl\:rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .xl\:rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .xl\:rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .xl\:rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .xl\:rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .xl\:rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .xl\:rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .xl\:rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .xl\:rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .xl\:rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .xl\:rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .xl\:rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .xl\:rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .xl\:rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .xl\:rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .xl\:rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .xl\:rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .xl\:rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .xl\:rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .xl\:rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .xl\:rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .xl\:rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .xl\:rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .xl\:rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .xl\:rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .xl\:rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .xl\:rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .xl\:rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .xl\:rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .xl\:rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .xl\:rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .xl\:rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .xl\:rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .xl\:rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .xl\:rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .xl\:rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .xl\:rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .xl\:rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .xl\:rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .xl\:rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .xl\:rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .xl\:rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .xl\:rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .xl\:rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .xl\:rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .xl\:rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .xl\:rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .xl\:rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .xl\:rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .xl\:rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .xl\:rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .xl\:rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .xl\:rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .xl\:rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .xl\:rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .xl\:rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .xl\:rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .xl\:rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .xl\:rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .xl\:rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .xl\:rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .xl\:rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .xl\:rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .xl\:rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .xl\:rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .xl\:rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .xl\:rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .xl\:rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .xl\:rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .xl\:rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .xl\:rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .xl\:rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .xl\:rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .xl\:rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .xl\:rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .xl\:rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .xl\:rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .xl\:rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .xl\:rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .xl\:rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .xl\:rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .xl\:rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .xl\:rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .xl\:rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .xl\:rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .xl\:rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .xl\:rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .xl\:rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .xl\:rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .xl\:rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .xl\:rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .xl\:rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .xl\:rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .xl\:rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .xl\:rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .xl\:rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .xl\:rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .xl\:rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .xl\:rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .xl\:rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .xl\:rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .xl\:rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .xl\:rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .xl\:rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .xl\:rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .xl\:rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .xl\:rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .xl\:rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .xl\:rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .xl\:rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .xl\:rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .xl\:rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .xl\:rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .xl\:rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .xl\:rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .xl\:rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .xl\:rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .xl\:rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .xl\:rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .xl\:rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .xl\:rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .xl\:rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .xl\:rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .xl\:rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .xl\:rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .xl\:rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .xl\:rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .xl\:rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .xl\:rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .xl\:rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .xl\:rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .xl\:rtl\:mt-0{margin-top:0!important}[dir=rtl] .xl\:rtl\:mr-0{margin-right:0!important}[dir=rtl] .xl\:rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .xl\:rtl\:ml-0{margin-left:0!important}[dir=rtl] .xl\:rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .xl\:rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .xl\:rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .xl\:rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .xl\:rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .xl\:rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .xl\:rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .xl\:rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .xl\:rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .xl\:rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .xl\:rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .xl\:rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .xl\:rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .xl\:rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .xl\:rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .xl\:rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .xl\:rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .xl\:rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .xl\:rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .xl\:rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .xl\:rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .xl\:rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .xl\:rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .xl\:rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .xl\:rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .xl\:rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .xl\:rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .xl\:rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .xl\:rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .xl\:rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .xl\:rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .xl\:rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .xl\:rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .xl\:rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .xl\:rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .xl\:rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .xl\:rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .xl\:rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .xl\:rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .xl\:rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .xl\:rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .xl\:rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .xl\:rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .xl\:rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .xl\:rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .xl\:rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .xl\:rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .xl\:rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .xl\:rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .xl\:rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .xl\:rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .xl\:rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .xl\:rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .xl\:rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .xl\:rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .xl\:rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .xl\:rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .xl\:rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .xl\:rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .xl\:rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .xl\:rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .xl\:rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .xl\:rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .xl\:rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .xl\:rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .xl\:rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .xl\:rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .xl\:rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .xl\:rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .xl\:rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .xl\:rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .xl\:rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .xl\:rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .xl\:rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .xl\:rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .xl\:rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .xl\:rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .xl\:rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .xl\:rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .xl\:rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .xl\:rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .xl\:rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .xl\:rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .xl\:rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .xl\:rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .xl\:rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .xl\:rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .xl\:rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .xl\:rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .xl\:rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .xl\:rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .xl\:rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .xl\:rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .xl\:rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .xl\:rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .xl\:rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .xl\:rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .xl\:rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .xl\:rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .xl\:rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .xl\:rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .xl\:rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .xl\:rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .xl\:rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .xl\:rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .xl\:rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .xl\:rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .xl\:rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .xl\:rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .xl\:rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .xl\:rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .xl\:rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .xl\:rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .xl\:rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .xl\:rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .xl\:rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .xl\:rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .xl\:rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .xl\:rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .xl\:rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .xl\:rtl\:mt-px{margin-top:1px!important}[dir=rtl] .xl\:rtl\:mr-px{margin-right:1px!important}[dir=rtl] .xl\:rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .xl\:rtl\:ml-px{margin-left:1px!important}[dir=rtl] .xl\:rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .xl\:rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .xl\:rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .xl\:rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .xl\:rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .xl\:rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .xl\:rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .xl\:rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .xl\:rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .xl\:rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .xl\:rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .xl\:rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .xl\:rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .xl\:rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .xl\:rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .xl\:rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .xl\:rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .xl\:rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .xl\:rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .xl\:rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .xl\:rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .xl\:rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .xl\:rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .xl\:rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .xl\:rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .xl\:rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .xl\:rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .xl\:rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .xl\:rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .xl\:rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .xl\:rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .xl\:rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .xl\:rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .xl\:rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .xl\:rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .xl\:rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .xl\:rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .xl\:rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .xl\:rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .xl\:rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .xl\:rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .xl\:rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .xl\:rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .xl\:rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .xl\:rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .xl\:rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .xl\:rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .xl\:rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .xl\:rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .xl\:rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .xl\:rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .xl\:rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .xl\:rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .xl\:rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .xl\:rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .xl\:rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .xl\:rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .xl\:rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .xl\:rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .xl\:rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .xl\:rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .xl\:rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .xl\:rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .xl\:rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .xl\:rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .xl\:rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .xl\:rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .xl\:rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .xl\:rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .xl\:rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .xl\:rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .xl\:rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .xl\:rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .xl\:rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .xl\:rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .xl\:rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .xl\:rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .xl\:rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .xl\:rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .xl\:rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .xl\:rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .xl\:rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .xl\:rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .xl\:rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .xl\:rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .xl\:rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .xl\:rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .xl\:rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .xl\:rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .xl\:rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .xl\:rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .xl\:rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .xl\:rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .xl\:rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .xl\:rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .xl\:rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .xl\:rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .xl\:rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .xl\:rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .xl\:rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .xl\:rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .xl\:rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .xl\:rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .xl\:rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .xl\:rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .xl\:rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .xl\:rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .xl\:rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .xl\:rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .xl\:rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .xl\:rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .xl\:rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .xl\:rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .xl\:rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .xl\:rtl\:mt-full{margin-top:100%!important}[dir=rtl] .xl\:rtl\:mr-full{margin-right:100%!important}[dir=rtl] .xl\:rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .xl\:rtl\:ml-full{margin-left:100%!important}[dir=rtl] .xl\:rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .xl\:rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .xl\:rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .xl\:rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .xl\:rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .xl\:rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .xl\:rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .xl\:rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .xl\:rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .xl\:rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .xl\:rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .xl\:rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .xl\:rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .xl\:rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .xl\:rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .xl\:rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .xl\:rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .xl\:rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .xl\:rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .xl\:rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .xl\:rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .xl\:rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .xl\:rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .xl\:rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .xl\:rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .xl\:rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .xl\:rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .xl\:rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .xl\:rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .xl\:rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .xl\:rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .xl\:rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .xl\:rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .xl\:rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .xl\:rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .xl\:rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .xl\:rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .xl\:rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .xl\:rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .xl\:rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .xl\:rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .xl\:rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .xl\:rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .xl\:rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .xl\:rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .xl\:rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .xl\:rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .xl\:rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .xl\:rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .xl\:rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .xl\:rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .xl\:rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .xl\:rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .xl\:rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .xl\:rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .xl\:rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .xl\:rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .xl\:rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .xl\:rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .xl\:rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .xl\:rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .xl\:rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .xl\:rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .xl\:rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .xl\:rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .xl\:rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .xl\:rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .xl\:rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .xl\:rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .xl\:rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .xl\:rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .xl\:rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .xl\:rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .xl\:rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .xl\:rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .xl\:rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .xl\:rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .xl\:rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .xl\:rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .xl\:rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .xl\:rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .xl\:rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .xl\:rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .xl\:rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .xl\:rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .xl\:rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .xl\:rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .xl\:rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .xl\:rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .xl\:rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .xl\:rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .xl\:rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .xl\:rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .xl\:rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .xl\:rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .xl\:rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .xl\:rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .xl\:rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .xl\:rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .xl\:rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .xl\:rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .xl\:rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .xl\:rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .xl\:rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .xl\:rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .xl\:rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .xl\:rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .xl\:rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .xl\:rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .xl\:rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .xl\:rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .xl\:rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .xl\:rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .xl\:rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .xl\:rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .xl\:rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .xl\:rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .xl\:rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .xl\:rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .xl\:rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .xl\:rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .xl\:rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .xl\:rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .xl\:rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .xl\:rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .xl\:rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .xl\:rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .xl\:rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .xl\:rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .xl\:rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .xl\:rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .xl\:rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .xl\:rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .xl\:rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .xl\:rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .xl\:rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .xl\:rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .xl\:rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .xl\:rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .xl\:rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .xl\:rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .xl\:rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .xl\:rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .xl\:rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .xl\:rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .xl\:rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .xl\:rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .xl\:rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .xl\:rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .xl\:rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .xl\:rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .xl\:rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .xl\:rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .xl\:rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .xl\:rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .xl\:rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .xl\:rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .xl\:rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .xl\:rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .xl\:rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .xl\:rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .xl\:rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .xl\:rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .xl\:rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .xl\:rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .xl\:rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .xl\:rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .xl\:rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .xl\:rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .xl\:rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .xl\:rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .xl\:rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .xl\:rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .xl\:rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .xl\:rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .xl\:rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .xl\:rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .xl\:rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .xl\:rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .xl\:rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .xl\:rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .xl\:rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .xl\:rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .xl\:rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .xl\:rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .xl\:rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .xl\:rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .xl\:rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .xl\:rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .xl\:rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .xl\:rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .xl\:rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .xl\:rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .xl\:rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .xl\:rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .xl\:rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .xl\:rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .xl\:rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .xl\:rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .xl\:rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .xl\:rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .xl\:rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .xl\:rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .xl\:rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .xl\:rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .xl\:rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .xl\:rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .xl\:rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .xl\:rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .xl\:rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .xl\:rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .xl\:rtl\:-ml-full{margin-left:-100%!important}.xl\:max-h-0{max-height:0!important}.xl\:max-h-1{max-height:.25rem!important}.xl\:max-h-2{max-height:.5rem!important}.xl\:max-h-3{max-height:.75rem!important}.xl\:max-h-4{max-height:1rem!important}.xl\:max-h-5{max-height:1.25rem!important}.xl\:max-h-6{max-height:1.5rem!important}.xl\:max-h-7{max-height:1.75rem!important}.xl\:max-h-8{max-height:2rem!important}.xl\:max-h-9{max-height:2.25rem!important}.xl\:max-h-10{max-height:2.5rem!important}.xl\:max-h-11{max-height:2.75rem!important}.xl\:max-h-12{max-height:3rem!important}.xl\:max-h-13{max-height:3.25rem!important}.xl\:max-h-14{max-height:3.5rem!important}.xl\:max-h-15{max-height:3.75rem!important}.xl\:max-h-16{max-height:4rem!important}.xl\:max-h-20{max-height:5rem!important}.xl\:max-h-24{max-height:6rem!important}.xl\:max-h-28{max-height:7rem!important}.xl\:max-h-32{max-height:8rem!important}.xl\:max-h-36{max-height:9rem!important}.xl\:max-h-40{max-height:10rem!important}.xl\:max-h-48{max-height:12rem!important}.xl\:max-h-56{max-height:14rem!important}.xl\:max-h-60{max-height:15rem!important}.xl\:max-h-64{max-height:16rem!important}.xl\:max-h-72{max-height:18rem!important}.xl\:max-h-80{max-height:20rem!important}.xl\:max-h-96{max-height:24rem!important}.xl\:max-h-screen{max-height:100vh!important}.xl\:max-h-px{max-height:1px!important}.xl\:max-h-0\.5{max-height:.125rem!important}.xl\:max-h-1\.5{max-height:.375rem!important}.xl\:max-h-2\.5{max-height:.625rem!important}.xl\:max-h-3\.5{max-height:.875rem!important}.xl\:max-h-1\/2{max-height:50%!important}.xl\:max-h-1\/3{max-height:33.333333%!important}.xl\:max-h-2\/3{max-height:66.666667%!important}.xl\:max-h-1\/4{max-height:25%!important}.xl\:max-h-2\/4{max-height:50%!important}.xl\:max-h-3\/4{max-height:75%!important}.xl\:max-h-1\/5{max-height:20%!important}.xl\:max-h-2\/5{max-height:40%!important}.xl\:max-h-3\/5{max-height:60%!important}.xl\:max-h-4\/5{max-height:80%!important}.xl\:max-h-1\/6{max-height:16.666667%!important}.xl\:max-h-2\/6{max-height:33.333333%!important}.xl\:max-h-3\/6{max-height:50%!important}.xl\:max-h-4\/6{max-height:66.666667%!important}.xl\:max-h-5\/6{max-height:83.333333%!important}.xl\:max-h-1\/12{max-height:8.333333%!important}.xl\:max-h-2\/12{max-height:16.666667%!important}.xl\:max-h-3\/12{max-height:25%!important}.xl\:max-h-4\/12{max-height:33.333333%!important}.xl\:max-h-5\/12{max-height:41.666667%!important}.xl\:max-h-6\/12{max-height:50%!important}.xl\:max-h-7\/12{max-height:58.333333%!important}.xl\:max-h-8\/12{max-height:66.666667%!important}.xl\:max-h-9\/12{max-height:75%!important}.xl\:max-h-10\/12{max-height:83.333333%!important}.xl\:max-h-11\/12{max-height:91.666667%!important}.xl\:max-h-full{max-height:100%!important}.xl\:max-h-6xl{max-height:6rem!important}.xl\:max-w-none{max-width:none!important}.xl\:max-w-xs{max-width:20rem!important}.xl\:max-w-sm{max-width:24rem!important}.xl\:max-w-md{max-width:28rem!important}.xl\:max-w-lg{max-width:32rem!important}.xl\:max-w-xl{max-width:36rem!important}.xl\:max-w-2xl{max-width:42rem!important}.xl\:max-w-3xl{max-width:48rem!important}.xl\:max-w-4xl{max-width:56rem!important}.xl\:max-w-5xl{max-width:64rem!important}.xl\:max-w-6xl{max-width:72rem!important}.xl\:max-w-7xl{max-width:80rem!important}.xl\:max-w-full{max-width:100%!important}.xl\:max-w-screen-sm{max-width:600px!important}.xl\:max-w-screen-md{max-width:1024px!important}.xl\:max-w-screen-lg{max-width:1280px!important}.xl\:max-w-screen-xl{max-width:1536px!important}.xl\:max-w-screen-2xl{max-width:1400px!important}.xl\:max-w-screen-3xl{max-width:1800px!important}.xl\:max-w-screen-4xl{max-width:2200px!important}.xl\:min-h-0{min-height:0!important}.xl\:min-h-full{min-height:100%!important}.xl\:min-h-screen{min-height:100vh!important}.xl\:min-h-half{min-height:50vh!important}.xl\:min-w-0{min-width:0!important}.xl\:min-w-full{min-width:100%!important}.xl\:object-contain{-o-object-fit:contain!important;object-fit:contain!important}.xl\:object-cover{-o-object-fit:cover!important;object-fit:cover!important}.xl\:object-fill{-o-object-fit:fill!important;object-fit:fill!important}.xl\:object-none{-o-object-fit:none!important;object-fit:none!important}.xl\:object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.xl\:object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.xl\:object-center{-o-object-position:center!important;object-position:center!important}.xl\:object-left{-o-object-position:left!important;object-position:left!important}.xl\:object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.xl\:object-left-top{-o-object-position:left top!important;object-position:left top!important}.xl\:object-right{-o-object-position:right!important;object-position:right!important}.xl\:object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.xl\:object-right-top{-o-object-position:right top!important;object-position:right top!important}.xl\:object-top{-o-object-position:top!important;object-position:top!important}.xl\:opacity-0{opacity:0!important}.xl\:opacity-25{opacity:.25!important}.xl\:opacity-50{opacity:.5!important}.xl\:opacity-75{opacity:.75!important}.xl\:opacity-100{opacity:1!important}.xl\:hover\:opacity-0:hover{opacity:0!important}.xl\:hover\:opacity-25:hover{opacity:.25!important}.xl\:hover\:opacity-50:hover{opacity:.5!important}.xl\:hover\:opacity-75:hover{opacity:.75!important}.xl\:hover\:opacity-100:hover{opacity:1!important}.xl\:focus\:opacity-0:focus{opacity:0!important}.xl\:focus\:opacity-25:focus{opacity:.25!important}.xl\:focus\:opacity-50:focus{opacity:.5!important}.xl\:focus\:opacity-75:focus{opacity:.75!important}.xl\:focus\:opacity-100:focus{opacity:1!important}.xl\:outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.xl\:outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.xl\:outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.xl\:focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.xl\:focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.xl\:focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.xl\:overflow-auto{overflow:auto!important}.xl\:overflow-hidden{overflow:hidden!important}.xl\:overflow-visible{overflow:visible!important}.xl\:overflow-scroll{overflow:scroll!important}.xl\:overflow-x-auto{overflow-x:auto!important}.xl\:overflow-y-auto{overflow-y:auto!important}.xl\:overflow-x-hidden{overflow-x:hidden!important}.xl\:overflow-y-hidden{overflow-y:hidden!important}.xl\:overflow-x-visible{overflow-x:visible!important}.xl\:overflow-y-visible{overflow-y:visible!important}.xl\:overflow-x-scroll{overflow-x:scroll!important}.xl\:overflow-y-scroll{overflow-y:scroll!important}.xl\:scrolling-touch{-webkit-overflow-scrolling:touch!important}.xl\:scrolling-auto{-webkit-overflow-scrolling:auto!important}.xl\:overscroll-auto{overscroll-behavior:auto!important}.xl\:overscroll-contain{overscroll-behavior:contain!important}.xl\:overscroll-none{overscroll-behavior:none!important}.xl\:overscroll-y-auto{overscroll-behavior-y:auto!important}.xl\:overscroll-y-contain{overscroll-behavior-y:contain!important}.xl\:overscroll-y-none{overscroll-behavior-y:none!important}.xl\:overscroll-x-auto{overscroll-behavior-x:auto!important}.xl\:overscroll-x-contain{overscroll-behavior-x:contain!important}.xl\:overscroll-x-none{overscroll-behavior-x:none!important}.xl\:p-0{padding:0!important}.xl\:p-1{padding:.25rem!important}.xl\:p-2{padding:.5rem!important}.xl\:p-3{padding:.75rem!important}.xl\:p-4{padding:1rem!important}.xl\:p-5{padding:1.25rem!important}.xl\:p-6{padding:1.5rem!important}.xl\:p-7{padding:1.75rem!important}.xl\:p-8{padding:2rem!important}.xl\:p-9{padding:2.25rem!important}.xl\:p-10{padding:2.5rem!important}.xl\:p-11{padding:2.75rem!important}.xl\:p-12{padding:3rem!important}.xl\:p-13{padding:3.25rem!important}.xl\:p-14{padding:3.5rem!important}.xl\:p-15{padding:3.75rem!important}.xl\:p-16{padding:4rem!important}.xl\:p-20{padding:5rem!important}.xl\:p-24{padding:6rem!important}.xl\:p-28{padding:7rem!important}.xl\:p-32{padding:8rem!important}.xl\:p-36{padding:9rem!important}.xl\:p-40{padding:10rem!important}.xl\:p-48{padding:12rem!important}.xl\:p-56{padding:14rem!important}.xl\:p-60{padding:15rem!important}.xl\:p-64{padding:16rem!important}.xl\:p-72{padding:18rem!important}.xl\:p-80{padding:20rem!important}.xl\:p-96{padding:24rem!important}.xl\:p-px{padding:1px!important}.xl\:p-0\.5{padding:.125rem!important}.xl\:p-1\.5{padding:.375rem!important}.xl\:p-2\.5{padding:.625rem!important}.xl\:p-3\.5{padding:.875rem!important}.xl\:p-1\/2{padding:50%!important}.xl\:p-1\/3{padding:33.333333%!important}.xl\:p-2\/3{padding:66.666667%!important}.xl\:p-1\/4{padding:25%!important}.xl\:p-2\/4{padding:50%!important}.xl\:p-3\/4{padding:75%!important}.xl\:p-1\/5{padding:20%!important}.xl\:p-2\/5{padding:40%!important}.xl\:p-3\/5{padding:60%!important}.xl\:p-4\/5{padding:80%!important}.xl\:p-1\/6{padding:16.666667%!important}.xl\:p-2\/6{padding:33.333333%!important}.xl\:p-3\/6{padding:50%!important}.xl\:p-4\/6{padding:66.666667%!important}.xl\:p-5\/6{padding:83.333333%!important}.xl\:p-1\/12{padding:8.333333%!important}.xl\:p-2\/12{padding:16.666667%!important}.xl\:p-3\/12{padding:25%!important}.xl\:p-4\/12{padding:33.333333%!important}.xl\:p-5\/12{padding:41.666667%!important}.xl\:p-6\/12{padding:50%!important}.xl\:p-7\/12{padding:58.333333%!important}.xl\:p-8\/12{padding:66.666667%!important}.xl\:p-9\/12{padding:75%!important}.xl\:p-10\/12{padding:83.333333%!important}.xl\:p-11\/12{padding:91.666667%!important}.xl\:p-full{padding:100%!important}.xl\:py-0{padding-bottom:0!important;padding-top:0!important}.xl\:px-0{padding-left:0!important;padding-right:0!important}.xl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.xl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.xl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.xl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}.xl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}.xl\:px-4{padding-left:1rem!important;padding-right:1rem!important}.xl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.xl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.xl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.xl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.xl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.xl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}.xl\:px-8{padding-left:2rem!important;padding-right:2rem!important}.xl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.xl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.xl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.xl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.xl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.xl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.xl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}.xl\:px-12{padding-left:3rem!important;padding-right:3rem!important}.xl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.xl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.xl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.xl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.xl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.xl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.xl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}.xl\:px-16{padding-left:4rem!important;padding-right:4rem!important}.xl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}.xl\:px-20{padding-left:5rem!important;padding-right:5rem!important}.xl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}.xl\:px-24{padding-left:6rem!important;padding-right:6rem!important}.xl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}.xl\:px-28{padding-left:7rem!important;padding-right:7rem!important}.xl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}.xl\:px-32{padding-left:8rem!important;padding-right:8rem!important}.xl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}.xl\:px-36{padding-left:9rem!important;padding-right:9rem!important}.xl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}.xl\:px-40{padding-left:10rem!important;padding-right:10rem!important}.xl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}.xl\:px-48{padding-left:12rem!important;padding-right:12rem!important}.xl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}.xl\:px-56{padding-left:14rem!important;padding-right:14rem!important}.xl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}.xl\:px-60{padding-left:15rem!important;padding-right:15rem!important}.xl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}.xl\:px-64{padding-left:16rem!important;padding-right:16rem!important}.xl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}.xl\:px-72{padding-left:18rem!important;padding-right:18rem!important}.xl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}.xl\:px-80{padding-left:20rem!important;padding-right:20rem!important}.xl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}.xl\:px-96{padding-left:24rem!important;padding-right:24rem!important}.xl\:py-px{padding-bottom:1px!important;padding-top:1px!important}.xl\:px-px{padding-left:1px!important;padding-right:1px!important}.xl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.xl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.xl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.xl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.xl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.xl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.xl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.xl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.xl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.xl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}.xl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.xl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.xl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.xl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.xl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.xl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}.xl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.xl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}.xl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.xl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}.xl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.xl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}.xl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.xl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}.xl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.xl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}.xl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.xl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}.xl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.xl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.xl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.xl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.xl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.xl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}.xl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.xl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.xl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.xl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.xl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.xl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.xl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.xl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.xl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.xl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}.xl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.xl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.xl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.xl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.xl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.xl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}.xl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.xl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.xl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.xl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.xl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.xl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}.xl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.xl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.xl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.xl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.xl\:py-full{padding-bottom:100%!important;padding-top:100%!important}.xl\:px-full{padding-left:100%!important;padding-right:100%!important}.xl\:pt-0{padding-top:0!important}.xl\:pr-0{padding-right:0!important}.xl\:pb-0{padding-bottom:0!important}.xl\:pl-0{padding-left:0!important}.xl\:pt-1{padding-top:.25rem!important}.xl\:pr-1{padding-right:.25rem!important}.xl\:pb-1{padding-bottom:.25rem!important}.xl\:pl-1{padding-left:.25rem!important}.xl\:pt-2{padding-top:.5rem!important}.xl\:pr-2{padding-right:.5rem!important}.xl\:pb-2{padding-bottom:.5rem!important}.xl\:pl-2{padding-left:.5rem!important}.xl\:pt-3{padding-top:.75rem!important}.xl\:pr-3{padding-right:.75rem!important}.xl\:pb-3{padding-bottom:.75rem!important}.xl\:pl-3{padding-left:.75rem!important}.xl\:pt-4{padding-top:1rem!important}.xl\:pr-4{padding-right:1rem!important}.xl\:pb-4{padding-bottom:1rem!important}.xl\:pl-4{padding-left:1rem!important}.xl\:pt-5{padding-top:1.25rem!important}.xl\:pr-5{padding-right:1.25rem!important}.xl\:pb-5{padding-bottom:1.25rem!important}.xl\:pl-5{padding-left:1.25rem!important}.xl\:pt-6{padding-top:1.5rem!important}.xl\:pr-6{padding-right:1.5rem!important}.xl\:pb-6{padding-bottom:1.5rem!important}.xl\:pl-6{padding-left:1.5rem!important}.xl\:pt-7{padding-top:1.75rem!important}.xl\:pr-7{padding-right:1.75rem!important}.xl\:pb-7{padding-bottom:1.75rem!important}.xl\:pl-7{padding-left:1.75rem!important}.xl\:pt-8{padding-top:2rem!important}.xl\:pr-8{padding-right:2rem!important}.xl\:pb-8{padding-bottom:2rem!important}.xl\:pl-8{padding-left:2rem!important}.xl\:pt-9{padding-top:2.25rem!important}.xl\:pr-9{padding-right:2.25rem!important}.xl\:pb-9{padding-bottom:2.25rem!important}.xl\:pl-9{padding-left:2.25rem!important}.xl\:pt-10{padding-top:2.5rem!important}.xl\:pr-10{padding-right:2.5rem!important}.xl\:pb-10{padding-bottom:2.5rem!important}.xl\:pl-10{padding-left:2.5rem!important}.xl\:pt-11{padding-top:2.75rem!important}.xl\:pr-11{padding-right:2.75rem!important}.xl\:pb-11{padding-bottom:2.75rem!important}.xl\:pl-11{padding-left:2.75rem!important}.xl\:pt-12{padding-top:3rem!important}.xl\:pr-12{padding-right:3rem!important}.xl\:pb-12{padding-bottom:3rem!important}.xl\:pl-12{padding-left:3rem!important}.xl\:pt-13{padding-top:3.25rem!important}.xl\:pr-13{padding-right:3.25rem!important}.xl\:pb-13{padding-bottom:3.25rem!important}.xl\:pl-13{padding-left:3.25rem!important}.xl\:pt-14{padding-top:3.5rem!important}.xl\:pr-14{padding-right:3.5rem!important}.xl\:pb-14{padding-bottom:3.5rem!important}.xl\:pl-14{padding-left:3.5rem!important}.xl\:pt-15{padding-top:3.75rem!important}.xl\:pr-15{padding-right:3.75rem!important}.xl\:pb-15{padding-bottom:3.75rem!important}.xl\:pl-15{padding-left:3.75rem!important}.xl\:pt-16{padding-top:4rem!important}.xl\:pr-16{padding-right:4rem!important}.xl\:pb-16{padding-bottom:4rem!important}.xl\:pl-16{padding-left:4rem!important}.xl\:pt-20{padding-top:5rem!important}.xl\:pr-20{padding-right:5rem!important}.xl\:pb-20{padding-bottom:5rem!important}.xl\:pl-20{padding-left:5rem!important}.xl\:pt-24{padding-top:6rem!important}.xl\:pr-24{padding-right:6rem!important}.xl\:pb-24{padding-bottom:6rem!important}.xl\:pl-24{padding-left:6rem!important}.xl\:pt-28{padding-top:7rem!important}.xl\:pr-28{padding-right:7rem!important}.xl\:pb-28{padding-bottom:7rem!important}.xl\:pl-28{padding-left:7rem!important}.xl\:pt-32{padding-top:8rem!important}.xl\:pr-32{padding-right:8rem!important}.xl\:pb-32{padding-bottom:8rem!important}.xl\:pl-32{padding-left:8rem!important}.xl\:pt-36{padding-top:9rem!important}.xl\:pr-36{padding-right:9rem!important}.xl\:pb-36{padding-bottom:9rem!important}.xl\:pl-36{padding-left:9rem!important}.xl\:pt-40{padding-top:10rem!important}.xl\:pr-40{padding-right:10rem!important}.xl\:pb-40{padding-bottom:10rem!important}.xl\:pl-40{padding-left:10rem!important}.xl\:pt-48{padding-top:12rem!important}.xl\:pr-48{padding-right:12rem!important}.xl\:pb-48{padding-bottom:12rem!important}.xl\:pl-48{padding-left:12rem!important}.xl\:pt-56{padding-top:14rem!important}.xl\:pr-56{padding-right:14rem!important}.xl\:pb-56{padding-bottom:14rem!important}.xl\:pl-56{padding-left:14rem!important}.xl\:pt-60{padding-top:15rem!important}.xl\:pr-60{padding-right:15rem!important}.xl\:pb-60{padding-bottom:15rem!important}.xl\:pl-60{padding-left:15rem!important}.xl\:pt-64{padding-top:16rem!important}.xl\:pr-64{padding-right:16rem!important}.xl\:pb-64{padding-bottom:16rem!important}.xl\:pl-64{padding-left:16rem!important}.xl\:pt-72{padding-top:18rem!important}.xl\:pr-72{padding-right:18rem!important}.xl\:pb-72{padding-bottom:18rem!important}.xl\:pl-72{padding-left:18rem!important}.xl\:pt-80{padding-top:20rem!important}.xl\:pr-80{padding-right:20rem!important}.xl\:pb-80{padding-bottom:20rem!important}.xl\:pl-80{padding-left:20rem!important}.xl\:pt-96{padding-top:24rem!important}.xl\:pr-96{padding-right:24rem!important}.xl\:pb-96{padding-bottom:24rem!important}.xl\:pl-96{padding-left:24rem!important}.xl\:pt-px{padding-top:1px!important}.xl\:pr-px{padding-right:1px!important}.xl\:pb-px{padding-bottom:1px!important}.xl\:pl-px{padding-left:1px!important}.xl\:pt-0\.5{padding-top:.125rem!important}.xl\:pr-0\.5{padding-right:.125rem!important}.xl\:pb-0\.5{padding-bottom:.125rem!important}.xl\:pl-0\.5{padding-left:.125rem!important}.xl\:pt-1\.5{padding-top:.375rem!important}.xl\:pr-1\.5{padding-right:.375rem!important}.xl\:pb-1\.5{padding-bottom:.375rem!important}.xl\:pl-1\.5{padding-left:.375rem!important}.xl\:pt-2\.5{padding-top:.625rem!important}.xl\:pr-2\.5{padding-right:.625rem!important}.xl\:pb-2\.5{padding-bottom:.625rem!important}.xl\:pl-2\.5{padding-left:.625rem!important}.xl\:pt-3\.5{padding-top:.875rem!important}.xl\:pr-3\.5{padding-right:.875rem!important}.xl\:pb-3\.5{padding-bottom:.875rem!important}.xl\:pl-3\.5{padding-left:.875rem!important}.xl\:pt-1\/2{padding-top:50%!important}.xl\:pr-1\/2{padding-right:50%!important}.xl\:pb-1\/2{padding-bottom:50%!important}.xl\:pl-1\/2{padding-left:50%!important}.xl\:pt-1\/3{padding-top:33.333333%!important}.xl\:pr-1\/3{padding-right:33.333333%!important}.xl\:pb-1\/3{padding-bottom:33.333333%!important}.xl\:pl-1\/3{padding-left:33.333333%!important}.xl\:pt-2\/3{padding-top:66.666667%!important}.xl\:pr-2\/3{padding-right:66.666667%!important}.xl\:pb-2\/3{padding-bottom:66.666667%!important}.xl\:pl-2\/3{padding-left:66.666667%!important}.xl\:pt-1\/4{padding-top:25%!important}.xl\:pr-1\/4{padding-right:25%!important}.xl\:pb-1\/4{padding-bottom:25%!important}.xl\:pl-1\/4{padding-left:25%!important}.xl\:pt-2\/4{padding-top:50%!important}.xl\:pr-2\/4{padding-right:50%!important}.xl\:pb-2\/4{padding-bottom:50%!important}.xl\:pl-2\/4{padding-left:50%!important}.xl\:pt-3\/4{padding-top:75%!important}.xl\:pr-3\/4{padding-right:75%!important}.xl\:pb-3\/4{padding-bottom:75%!important}.xl\:pl-3\/4{padding-left:75%!important}.xl\:pt-1\/5{padding-top:20%!important}.xl\:pr-1\/5{padding-right:20%!important}.xl\:pb-1\/5{padding-bottom:20%!important}.xl\:pl-1\/5{padding-left:20%!important}.xl\:pt-2\/5{padding-top:40%!important}.xl\:pr-2\/5{padding-right:40%!important}.xl\:pb-2\/5{padding-bottom:40%!important}.xl\:pl-2\/5{padding-left:40%!important}.xl\:pt-3\/5{padding-top:60%!important}.xl\:pr-3\/5{padding-right:60%!important}.xl\:pb-3\/5{padding-bottom:60%!important}.xl\:pl-3\/5{padding-left:60%!important}.xl\:pt-4\/5{padding-top:80%!important}.xl\:pr-4\/5{padding-right:80%!important}.xl\:pb-4\/5{padding-bottom:80%!important}.xl\:pl-4\/5{padding-left:80%!important}.xl\:pt-1\/6{padding-top:16.666667%!important}.xl\:pr-1\/6{padding-right:16.666667%!important}.xl\:pb-1\/6{padding-bottom:16.666667%!important}.xl\:pl-1\/6{padding-left:16.666667%!important}.xl\:pt-2\/6{padding-top:33.333333%!important}.xl\:pr-2\/6{padding-right:33.333333%!important}.xl\:pb-2\/6{padding-bottom:33.333333%!important}.xl\:pl-2\/6{padding-left:33.333333%!important}.xl\:pt-3\/6{padding-top:50%!important}.xl\:pr-3\/6{padding-right:50%!important}.xl\:pb-3\/6{padding-bottom:50%!important}.xl\:pl-3\/6{padding-left:50%!important}.xl\:pt-4\/6{padding-top:66.666667%!important}.xl\:pr-4\/6{padding-right:66.666667%!important}.xl\:pb-4\/6{padding-bottom:66.666667%!important}.xl\:pl-4\/6{padding-left:66.666667%!important}.xl\:pt-5\/6{padding-top:83.333333%!important}.xl\:pr-5\/6{padding-right:83.333333%!important}.xl\:pb-5\/6{padding-bottom:83.333333%!important}.xl\:pl-5\/6{padding-left:83.333333%!important}.xl\:pt-1\/12{padding-top:8.333333%!important}.xl\:pr-1\/12{padding-right:8.333333%!important}.xl\:pb-1\/12{padding-bottom:8.333333%!important}.xl\:pl-1\/12{padding-left:8.333333%!important}.xl\:pt-2\/12{padding-top:16.666667%!important}.xl\:pr-2\/12{padding-right:16.666667%!important}.xl\:pb-2\/12{padding-bottom:16.666667%!important}.xl\:pl-2\/12{padding-left:16.666667%!important}.xl\:pt-3\/12{padding-top:25%!important}.xl\:pr-3\/12{padding-right:25%!important}.xl\:pb-3\/12{padding-bottom:25%!important}.xl\:pl-3\/12{padding-left:25%!important}.xl\:pt-4\/12{padding-top:33.333333%!important}.xl\:pr-4\/12{padding-right:33.333333%!important}.xl\:pb-4\/12{padding-bottom:33.333333%!important}.xl\:pl-4\/12{padding-left:33.333333%!important}.xl\:pt-5\/12{padding-top:41.666667%!important}.xl\:pr-5\/12{padding-right:41.666667%!important}.xl\:pb-5\/12{padding-bottom:41.666667%!important}.xl\:pl-5\/12{padding-left:41.666667%!important}.xl\:pt-6\/12{padding-top:50%!important}.xl\:pr-6\/12{padding-right:50%!important}.xl\:pb-6\/12{padding-bottom:50%!important}.xl\:pl-6\/12{padding-left:50%!important}.xl\:pt-7\/12{padding-top:58.333333%!important}.xl\:pr-7\/12{padding-right:58.333333%!important}.xl\:pb-7\/12{padding-bottom:58.333333%!important}.xl\:pl-7\/12{padding-left:58.333333%!important}.xl\:pt-8\/12{padding-top:66.666667%!important}.xl\:pr-8\/12{padding-right:66.666667%!important}.xl\:pb-8\/12{padding-bottom:66.666667%!important}.xl\:pl-8\/12{padding-left:66.666667%!important}.xl\:pt-9\/12{padding-top:75%!important}.xl\:pr-9\/12{padding-right:75%!important}.xl\:pb-9\/12{padding-bottom:75%!important}.xl\:pl-9\/12{padding-left:75%!important}.xl\:pt-10\/12{padding-top:83.333333%!important}.xl\:pr-10\/12{padding-right:83.333333%!important}.xl\:pb-10\/12{padding-bottom:83.333333%!important}.xl\:pl-10\/12{padding-left:83.333333%!important}.xl\:pt-11\/12{padding-top:91.666667%!important}.xl\:pr-11\/12{padding-right:91.666667%!important}.xl\:pb-11\/12{padding-bottom:91.666667%!important}.xl\:pl-11\/12{padding-left:91.666667%!important}.xl\:pt-full{padding-top:100%!important}.xl\:pr-full{padding-right:100%!important}.xl\:pb-full{padding-bottom:100%!important}.xl\:pl-full{padding-left:100%!important}[dir=ltr] .xl\:ltr\:p-0{padding:0!important}[dir=ltr] .xl\:ltr\:p-1{padding:.25rem!important}[dir=ltr] .xl\:ltr\:p-2{padding:.5rem!important}[dir=ltr] .xl\:ltr\:p-3{padding:.75rem!important}[dir=ltr] .xl\:ltr\:p-4{padding:1rem!important}[dir=ltr] .xl\:ltr\:p-5{padding:1.25rem!important}[dir=ltr] .xl\:ltr\:p-6{padding:1.5rem!important}[dir=ltr] .xl\:ltr\:p-7{padding:1.75rem!important}[dir=ltr] .xl\:ltr\:p-8{padding:2rem!important}[dir=ltr] .xl\:ltr\:p-9{padding:2.25rem!important}[dir=ltr] .xl\:ltr\:p-10{padding:2.5rem!important}[dir=ltr] .xl\:ltr\:p-11{padding:2.75rem!important}[dir=ltr] .xl\:ltr\:p-12{padding:3rem!important}[dir=ltr] .xl\:ltr\:p-13{padding:3.25rem!important}[dir=ltr] .xl\:ltr\:p-14{padding:3.5rem!important}[dir=ltr] .xl\:ltr\:p-15{padding:3.75rem!important}[dir=ltr] .xl\:ltr\:p-16{padding:4rem!important}[dir=ltr] .xl\:ltr\:p-20{padding:5rem!important}[dir=ltr] .xl\:ltr\:p-24{padding:6rem!important}[dir=ltr] .xl\:ltr\:p-28{padding:7rem!important}[dir=ltr] .xl\:ltr\:p-32{padding:8rem!important}[dir=ltr] .xl\:ltr\:p-36{padding:9rem!important}[dir=ltr] .xl\:ltr\:p-40{padding:10rem!important}[dir=ltr] .xl\:ltr\:p-48{padding:12rem!important}[dir=ltr] .xl\:ltr\:p-56{padding:14rem!important}[dir=ltr] .xl\:ltr\:p-60{padding:15rem!important}[dir=ltr] .xl\:ltr\:p-64{padding:16rem!important}[dir=ltr] .xl\:ltr\:p-72{padding:18rem!important}[dir=ltr] .xl\:ltr\:p-80{padding:20rem!important}[dir=ltr] .xl\:ltr\:p-96{padding:24rem!important}[dir=ltr] .xl\:ltr\:p-px{padding:1px!important}[dir=ltr] .xl\:ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .xl\:ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .xl\:ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .xl\:ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .xl\:ltr\:p-1\/2{padding:50%!important}[dir=ltr] .xl\:ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .xl\:ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .xl\:ltr\:p-1\/4{padding:25%!important}[dir=ltr] .xl\:ltr\:p-2\/4{padding:50%!important}[dir=ltr] .xl\:ltr\:p-3\/4{padding:75%!important}[dir=ltr] .xl\:ltr\:p-1\/5{padding:20%!important}[dir=ltr] .xl\:ltr\:p-2\/5{padding:40%!important}[dir=ltr] .xl\:ltr\:p-3\/5{padding:60%!important}[dir=ltr] .xl\:ltr\:p-4\/5{padding:80%!important}[dir=ltr] .xl\:ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .xl\:ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .xl\:ltr\:p-3\/6{padding:50%!important}[dir=ltr] .xl\:ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .xl\:ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .xl\:ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .xl\:ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .xl\:ltr\:p-3\/12{padding:25%!important}[dir=ltr] .xl\:ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .xl\:ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .xl\:ltr\:p-6\/12{padding:50%!important}[dir=ltr] .xl\:ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .xl\:ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .xl\:ltr\:p-9\/12{padding:75%!important}[dir=ltr] .xl\:ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .xl\:ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .xl\:ltr\:p-full{padding:100%!important}[dir=ltr] .xl\:ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .xl\:ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .xl\:ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .xl\:ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .xl\:ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .xl\:ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .xl\:ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .xl\:ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .xl\:ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .xl\:ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .xl\:ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .xl\:ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .xl\:ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .xl\:ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .xl\:ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .xl\:ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .xl\:ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .xl\:ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .xl\:ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .xl\:ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .xl\:ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .xl\:ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .xl\:ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .xl\:ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .xl\:ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .xl\:ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .xl\:ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .xl\:ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .xl\:ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .xl\:ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .xl\:ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .xl\:ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .xl\:ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .xl\:ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .xl\:ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .xl\:ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .xl\:ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .xl\:ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .xl\:ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .xl\:ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .xl\:ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .xl\:ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .xl\:ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .xl\:ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .xl\:ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .xl\:ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .xl\:ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .xl\:ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .xl\:ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .xl\:ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .xl\:ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .xl\:ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .xl\:ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .xl\:ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .xl\:ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .xl\:ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .xl\:ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .xl\:ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .xl\:ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .xl\:ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .xl\:ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .xl\:ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .xl\:ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .xl\:ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .xl\:ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .xl\:ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .xl\:ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .xl\:ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .xl\:ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .xl\:ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .xl\:ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .xl\:ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .xl\:ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .xl\:ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .xl\:ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .xl\:ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .xl\:ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .xl\:ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .xl\:ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .xl\:ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .xl\:ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .xl\:ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .xl\:ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .xl\:ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .xl\:ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .xl\:ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .xl\:ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .xl\:ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .xl\:ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .xl\:ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .xl\:ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .xl\:ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .xl\:ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .xl\:ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .xl\:ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .xl\:ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .xl\:ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .xl\:ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .xl\:ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .xl\:ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .xl\:ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .xl\:ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .xl\:ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .xl\:ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .xl\:ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .xl\:ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .xl\:ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .xl\:ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .xl\:ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .xl\:ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .xl\:ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .xl\:ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .xl\:ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .xl\:ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .xl\:ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .xl\:ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .xl\:ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .xl\:ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .xl\:ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .xl\:ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .xl\:ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .xl\:ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .xl\:ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .xl\:ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .xl\:ltr\:pt-0{padding-top:0!important}[dir=ltr] .xl\:ltr\:pr-0{padding-right:0!important}[dir=ltr] .xl\:ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .xl\:ltr\:pl-0{padding-left:0!important}[dir=ltr] .xl\:ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .xl\:ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .xl\:ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .xl\:ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .xl\:ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .xl\:ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .xl\:ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .xl\:ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .xl\:ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .xl\:ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .xl\:ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .xl\:ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .xl\:ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .xl\:ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .xl\:ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .xl\:ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .xl\:ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .xl\:ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .xl\:ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .xl\:ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .xl\:ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .xl\:ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .xl\:ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .xl\:ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .xl\:ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .xl\:ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .xl\:ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .xl\:ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .xl\:ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .xl\:ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .xl\:ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .xl\:ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .xl\:ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .xl\:ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .xl\:ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .xl\:ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .xl\:ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .xl\:ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .xl\:ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .xl\:ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .xl\:ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .xl\:ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .xl\:ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .xl\:ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .xl\:ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .xl\:ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .xl\:ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .xl\:ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .xl\:ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .xl\:ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .xl\:ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .xl\:ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .xl\:ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .xl\:ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .xl\:ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .xl\:ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .xl\:ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .xl\:ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .xl\:ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .xl\:ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .xl\:ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .xl\:ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .xl\:ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .xl\:ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .xl\:ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .xl\:ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .xl\:ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .xl\:ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .xl\:ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .xl\:ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .xl\:ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .xl\:ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .xl\:ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .xl\:ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .xl\:ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .xl\:ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .xl\:ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .xl\:ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .xl\:ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .xl\:ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .xl\:ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .xl\:ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .xl\:ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .xl\:ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .xl\:ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .xl\:ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .xl\:ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .xl\:ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .xl\:ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .xl\:ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .xl\:ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .xl\:ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .xl\:ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .xl\:ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .xl\:ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .xl\:ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .xl\:ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .xl\:ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .xl\:ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .xl\:ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .xl\:ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .xl\:ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .xl\:ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .xl\:ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .xl\:ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .xl\:ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .xl\:ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .xl\:ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .xl\:ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .xl\:ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .xl\:ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .xl\:ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .xl\:ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .xl\:ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .xl\:ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .xl\:ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .xl\:ltr\:pt-px{padding-top:1px!important}[dir=ltr] .xl\:ltr\:pr-px{padding-right:1px!important}[dir=ltr] .xl\:ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .xl\:ltr\:pl-px{padding-left:1px!important}[dir=ltr] .xl\:ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .xl\:ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .xl\:ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .xl\:ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .xl\:ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .xl\:ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .xl\:ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .xl\:ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .xl\:ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .xl\:ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .xl\:ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .xl\:ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .xl\:ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .xl\:ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .xl\:ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .xl\:ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .xl\:ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .xl\:ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .xl\:ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .xl\:ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .xl\:ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .xl\:ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .xl\:ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .xl\:ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .xl\:ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .xl\:ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .xl\:ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .xl\:ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .xl\:ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .xl\:ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .xl\:ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .xl\:ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .xl\:ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .xl\:ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .xl\:ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .xl\:ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .xl\:ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .xl\:ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .xl\:ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .xl\:ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .xl\:ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .xl\:ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .xl\:ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .xl\:ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .xl\:ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .xl\:ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .xl\:ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .xl\:ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .xl\:ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .xl\:ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .xl\:ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .xl\:ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .xl\:ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .xl\:ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .xl\:ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .xl\:ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .xl\:ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .xl\:ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .xl\:ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .xl\:ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .xl\:ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .xl\:ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .xl\:ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .xl\:ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .xl\:ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .xl\:ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .xl\:ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .xl\:ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .xl\:ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .xl\:ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .xl\:ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .xl\:ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .xl\:ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .xl\:ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .xl\:ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .xl\:ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .xl\:ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .xl\:ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .xl\:ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .xl\:ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .xl\:ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .xl\:ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .xl\:ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .xl\:ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .xl\:ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .xl\:ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .xl\:ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .xl\:ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .xl\:ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .xl\:ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .xl\:ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .xl\:ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .xl\:ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .xl\:ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .xl\:ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .xl\:ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .xl\:ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .xl\:ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .xl\:ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .xl\:ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .xl\:ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .xl\:ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .xl\:ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .xl\:ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .xl\:ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .xl\:ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .xl\:ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .xl\:ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .xl\:ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .xl\:ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .xl\:ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .xl\:ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .xl\:ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .xl\:ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .xl\:ltr\:pt-full{padding-top:100%!important}[dir=ltr] .xl\:ltr\:pr-full{padding-right:100%!important}[dir=ltr] .xl\:ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .xl\:ltr\:pl-full{padding-left:100%!important}[dir=rtl] .xl\:rtl\:p-0{padding:0!important}[dir=rtl] .xl\:rtl\:p-1{padding:.25rem!important}[dir=rtl] .xl\:rtl\:p-2{padding:.5rem!important}[dir=rtl] .xl\:rtl\:p-3{padding:.75rem!important}[dir=rtl] .xl\:rtl\:p-4{padding:1rem!important}[dir=rtl] .xl\:rtl\:p-5{padding:1.25rem!important}[dir=rtl] .xl\:rtl\:p-6{padding:1.5rem!important}[dir=rtl] .xl\:rtl\:p-7{padding:1.75rem!important}[dir=rtl] .xl\:rtl\:p-8{padding:2rem!important}[dir=rtl] .xl\:rtl\:p-9{padding:2.25rem!important}[dir=rtl] .xl\:rtl\:p-10{padding:2.5rem!important}[dir=rtl] .xl\:rtl\:p-11{padding:2.75rem!important}[dir=rtl] .xl\:rtl\:p-12{padding:3rem!important}[dir=rtl] .xl\:rtl\:p-13{padding:3.25rem!important}[dir=rtl] .xl\:rtl\:p-14{padding:3.5rem!important}[dir=rtl] .xl\:rtl\:p-15{padding:3.75rem!important}[dir=rtl] .xl\:rtl\:p-16{padding:4rem!important}[dir=rtl] .xl\:rtl\:p-20{padding:5rem!important}[dir=rtl] .xl\:rtl\:p-24{padding:6rem!important}[dir=rtl] .xl\:rtl\:p-28{padding:7rem!important}[dir=rtl] .xl\:rtl\:p-32{padding:8rem!important}[dir=rtl] .xl\:rtl\:p-36{padding:9rem!important}[dir=rtl] .xl\:rtl\:p-40{padding:10rem!important}[dir=rtl] .xl\:rtl\:p-48{padding:12rem!important}[dir=rtl] .xl\:rtl\:p-56{padding:14rem!important}[dir=rtl] .xl\:rtl\:p-60{padding:15rem!important}[dir=rtl] .xl\:rtl\:p-64{padding:16rem!important}[dir=rtl] .xl\:rtl\:p-72{padding:18rem!important}[dir=rtl] .xl\:rtl\:p-80{padding:20rem!important}[dir=rtl] .xl\:rtl\:p-96{padding:24rem!important}[dir=rtl] .xl\:rtl\:p-px{padding:1px!important}[dir=rtl] .xl\:rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .xl\:rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .xl\:rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .xl\:rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .xl\:rtl\:p-1\/2{padding:50%!important}[dir=rtl] .xl\:rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .xl\:rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .xl\:rtl\:p-1\/4{padding:25%!important}[dir=rtl] .xl\:rtl\:p-2\/4{padding:50%!important}[dir=rtl] .xl\:rtl\:p-3\/4{padding:75%!important}[dir=rtl] .xl\:rtl\:p-1\/5{padding:20%!important}[dir=rtl] .xl\:rtl\:p-2\/5{padding:40%!important}[dir=rtl] .xl\:rtl\:p-3\/5{padding:60%!important}[dir=rtl] .xl\:rtl\:p-4\/5{padding:80%!important}[dir=rtl] .xl\:rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .xl\:rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .xl\:rtl\:p-3\/6{padding:50%!important}[dir=rtl] .xl\:rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .xl\:rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .xl\:rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .xl\:rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .xl\:rtl\:p-3\/12{padding:25%!important}[dir=rtl] .xl\:rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .xl\:rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .xl\:rtl\:p-6\/12{padding:50%!important}[dir=rtl] .xl\:rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .xl\:rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .xl\:rtl\:p-9\/12{padding:75%!important}[dir=rtl] .xl\:rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .xl\:rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .xl\:rtl\:p-full{padding:100%!important}[dir=rtl] .xl\:rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .xl\:rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .xl\:rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .xl\:rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .xl\:rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .xl\:rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .xl\:rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .xl\:rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .xl\:rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .xl\:rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .xl\:rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .xl\:rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .xl\:rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .xl\:rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .xl\:rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .xl\:rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .xl\:rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .xl\:rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .xl\:rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .xl\:rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .xl\:rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .xl\:rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .xl\:rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .xl\:rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .xl\:rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .xl\:rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .xl\:rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .xl\:rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .xl\:rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .xl\:rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .xl\:rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .xl\:rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .xl\:rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .xl\:rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .xl\:rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .xl\:rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .xl\:rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .xl\:rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .xl\:rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .xl\:rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .xl\:rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .xl\:rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .xl\:rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .xl\:rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .xl\:rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .xl\:rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .xl\:rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .xl\:rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .xl\:rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .xl\:rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .xl\:rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .xl\:rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .xl\:rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .xl\:rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .xl\:rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .xl\:rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .xl\:rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .xl\:rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .xl\:rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .xl\:rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .xl\:rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .xl\:rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .xl\:rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .xl\:rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .xl\:rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .xl\:rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .xl\:rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .xl\:rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .xl\:rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .xl\:rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .xl\:rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .xl\:rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .xl\:rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .xl\:rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .xl\:rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .xl\:rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .xl\:rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .xl\:rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .xl\:rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .xl\:rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .xl\:rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .xl\:rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .xl\:rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .xl\:rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .xl\:rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .xl\:rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .xl\:rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .xl\:rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .xl\:rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .xl\:rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .xl\:rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .xl\:rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .xl\:rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .xl\:rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .xl\:rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .xl\:rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .xl\:rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .xl\:rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .xl\:rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .xl\:rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .xl\:rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .xl\:rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .xl\:rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .xl\:rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .xl\:rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .xl\:rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .xl\:rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .xl\:rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .xl\:rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .xl\:rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .xl\:rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .xl\:rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .xl\:rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .xl\:rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .xl\:rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .xl\:rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .xl\:rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .xl\:rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .xl\:rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .xl\:rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .xl\:rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .xl\:rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .xl\:rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .xl\:rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .xl\:rtl\:pt-0{padding-top:0!important}[dir=rtl] .xl\:rtl\:pr-0{padding-right:0!important}[dir=rtl] .xl\:rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .xl\:rtl\:pl-0{padding-left:0!important}[dir=rtl] .xl\:rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .xl\:rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .xl\:rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .xl\:rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .xl\:rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .xl\:rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .xl\:rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .xl\:rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .xl\:rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .xl\:rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .xl\:rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .xl\:rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .xl\:rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .xl\:rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .xl\:rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .xl\:rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .xl\:rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .xl\:rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .xl\:rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .xl\:rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .xl\:rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .xl\:rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .xl\:rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .xl\:rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .xl\:rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .xl\:rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .xl\:rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .xl\:rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .xl\:rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .xl\:rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .xl\:rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .xl\:rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .xl\:rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .xl\:rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .xl\:rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .xl\:rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .xl\:rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .xl\:rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .xl\:rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .xl\:rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .xl\:rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .xl\:rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .xl\:rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .xl\:rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .xl\:rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .xl\:rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .xl\:rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .xl\:rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .xl\:rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .xl\:rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .xl\:rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .xl\:rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .xl\:rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .xl\:rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .xl\:rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .xl\:rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .xl\:rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .xl\:rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .xl\:rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .xl\:rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .xl\:rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .xl\:rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .xl\:rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .xl\:rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .xl\:rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .xl\:rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .xl\:rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .xl\:rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .xl\:rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .xl\:rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .xl\:rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .xl\:rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .xl\:rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .xl\:rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .xl\:rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .xl\:rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .xl\:rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .xl\:rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .xl\:rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .xl\:rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .xl\:rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .xl\:rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .xl\:rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .xl\:rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .xl\:rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .xl\:rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .xl\:rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .xl\:rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .xl\:rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .xl\:rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .xl\:rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .xl\:rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .xl\:rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .xl\:rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .xl\:rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .xl\:rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .xl\:rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .xl\:rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .xl\:rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .xl\:rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .xl\:rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .xl\:rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .xl\:rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .xl\:rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .xl\:rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .xl\:rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .xl\:rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .xl\:rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .xl\:rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .xl\:rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .xl\:rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .xl\:rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .xl\:rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .xl\:rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .xl\:rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .xl\:rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .xl\:rtl\:pt-px{padding-top:1px!important}[dir=rtl] .xl\:rtl\:pr-px{padding-right:1px!important}[dir=rtl] .xl\:rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .xl\:rtl\:pl-px{padding-left:1px!important}[dir=rtl] .xl\:rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .xl\:rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .xl\:rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .xl\:rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .xl\:rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .xl\:rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .xl\:rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .xl\:rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .xl\:rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .xl\:rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .xl\:rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .xl\:rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .xl\:rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .xl\:rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .xl\:rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .xl\:rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .xl\:rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .xl\:rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .xl\:rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .xl\:rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .xl\:rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .xl\:rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .xl\:rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .xl\:rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .xl\:rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .xl\:rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .xl\:rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .xl\:rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .xl\:rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .xl\:rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .xl\:rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .xl\:rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .xl\:rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .xl\:rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .xl\:rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .xl\:rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .xl\:rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .xl\:rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .xl\:rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .xl\:rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .xl\:rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .xl\:rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .xl\:rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .xl\:rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .xl\:rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .xl\:rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .xl\:rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .xl\:rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .xl\:rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .xl\:rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .xl\:rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .xl\:rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .xl\:rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .xl\:rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .xl\:rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .xl\:rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .xl\:rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .xl\:rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .xl\:rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .xl\:rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .xl\:rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .xl\:rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .xl\:rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .xl\:rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .xl\:rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .xl\:rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .xl\:rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .xl\:rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .xl\:rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .xl\:rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .xl\:rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .xl\:rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .xl\:rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .xl\:rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .xl\:rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .xl\:rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .xl\:rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .xl\:rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .xl\:rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .xl\:rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .xl\:rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .xl\:rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .xl\:rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .xl\:rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .xl\:rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .xl\:rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .xl\:rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .xl\:rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .xl\:rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .xl\:rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .xl\:rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .xl\:rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .xl\:rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .xl\:rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .xl\:rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .xl\:rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .xl\:rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .xl\:rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .xl\:rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .xl\:rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .xl\:rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .xl\:rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .xl\:rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .xl\:rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .xl\:rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .xl\:rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .xl\:rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .xl\:rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .xl\:rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .xl\:rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .xl\:rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .xl\:rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .xl\:rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .xl\:rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .xl\:rtl\:pt-full{padding-top:100%!important}[dir=rtl] .xl\:rtl\:pr-full{padding-right:100%!important}[dir=rtl] .xl\:rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .xl\:rtl\:pl-full{padding-left:100%!important}.xl\:placeholder-transparent::-moz-placeholder{color:transparent!important}.xl\:placeholder-transparent::placeholder{color:transparent!important}.xl\:placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.xl\:placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.xl\:placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.xl\:placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.xl\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.xl\:placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.xl\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.xl\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.xl\:placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.xl\:placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.xl\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.xl\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.xl\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.xl\:placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.xl\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.xl\:placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.xl\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.xl\:placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.xl\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.xl\:placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.xl\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.xl\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.xl\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.xl\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.xl\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.xl\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.xl\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.xl\:placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.xl\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.xl\:placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.xl\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.xl\:placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.xl\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.xl\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.xl\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.xl\:placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.xl\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.xl\:placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.xl\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.xl\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.xl\:placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.xl\:placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.xl\:placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.xl\:placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.xl\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.xl\:placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.xl\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.xl\:placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.xl\:focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.xl\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.xl\:focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.xl\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.xl\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.xl\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.xl\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.xl\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.xl\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.xl\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.xl\:placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.xl\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.xl\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.xl\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.xl\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.xl\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.xl\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.xl\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.xl\:placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.xl\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.xl\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.xl\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.xl\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.xl\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.xl\:pointer-events-none{pointer-events:none!important}.xl\:pointer-events-auto{pointer-events:auto!important}.xl\:static{position:static!important}.xl\:fixed{position:fixed!important}.xl\:absolute{position:absolute!important}.xl\:relative{position:relative!important}.xl\:sticky{position:sticky!important}.xl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.xl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.xl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.xl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.xl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.xl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.xl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.xl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.xl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.xl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.xl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.xl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.xl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.xl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.xl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.xl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.xl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.xl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.xl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.xl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.xl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.xl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.xl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.xl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.xl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.xl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.xl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.xl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.xl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.xl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.xl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.xl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.xl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.xl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.xl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.xl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.xl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.xl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.xl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.xl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.xl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.xl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.xl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.xl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.xl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.xl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.xl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.xl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.xl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.xl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.xl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.xl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.xl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.xl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.xl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.xl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.xl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.xl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.xl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.xl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.xl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.xl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.xl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.xl\:inset-y-0{bottom:0!important;top:0!important}.xl\:inset-x-0{left:0!important;right:0!important}.xl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}.xl\:inset-x-1{left:.25rem!important;right:.25rem!important}.xl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}.xl\:inset-x-2{left:.5rem!important;right:.5rem!important}.xl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}.xl\:inset-x-3{left:.75rem!important;right:.75rem!important}.xl\:inset-y-4{bottom:1rem!important;top:1rem!important}.xl\:inset-x-4{left:1rem!important;right:1rem!important}.xl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.xl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}.xl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.xl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}.xl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.xl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}.xl\:inset-y-8{bottom:2rem!important;top:2rem!important}.xl\:inset-x-8{left:2rem!important;right:2rem!important}.xl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.xl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}.xl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.xl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}.xl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.xl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}.xl\:inset-y-12{bottom:3rem!important;top:3rem!important}.xl\:inset-x-12{left:3rem!important;right:3rem!important}.xl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.xl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}.xl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.xl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}.xl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.xl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}.xl\:inset-y-16{bottom:4rem!important;top:4rem!important}.xl\:inset-x-16{left:4rem!important;right:4rem!important}.xl\:inset-y-20{bottom:5rem!important;top:5rem!important}.xl\:inset-x-20{left:5rem!important;right:5rem!important}.xl\:inset-y-24{bottom:6rem!important;top:6rem!important}.xl\:inset-x-24{left:6rem!important;right:6rem!important}.xl\:inset-y-28{bottom:7rem!important;top:7rem!important}.xl\:inset-x-28{left:7rem!important;right:7rem!important}.xl\:inset-y-32{bottom:8rem!important;top:8rem!important}.xl\:inset-x-32{left:8rem!important;right:8rem!important}.xl\:inset-y-36{bottom:9rem!important;top:9rem!important}.xl\:inset-x-36{left:9rem!important;right:9rem!important}.xl\:inset-y-40{bottom:10rem!important;top:10rem!important}.xl\:inset-x-40{left:10rem!important;right:10rem!important}.xl\:inset-y-48{bottom:12rem!important;top:12rem!important}.xl\:inset-x-48{left:12rem!important;right:12rem!important}.xl\:inset-y-56{bottom:14rem!important;top:14rem!important}.xl\:inset-x-56{left:14rem!important;right:14rem!important}.xl\:inset-y-60{bottom:15rem!important;top:15rem!important}.xl\:inset-x-60{left:15rem!important;right:15rem!important}.xl\:inset-y-64{bottom:16rem!important;top:16rem!important}.xl\:inset-x-64{left:16rem!important;right:16rem!important}.xl\:inset-y-72{bottom:18rem!important;top:18rem!important}.xl\:inset-x-72{left:18rem!important;right:18rem!important}.xl\:inset-y-80{bottom:20rem!important;top:20rem!important}.xl\:inset-x-80{left:20rem!important;right:20rem!important}.xl\:inset-y-96{bottom:24rem!important;top:24rem!important}.xl\:inset-x-96{left:24rem!important;right:24rem!important}.xl\:inset-y-auto{bottom:auto!important;top:auto!important}.xl\:inset-x-auto{left:auto!important;right:auto!important}.xl\:inset-y-px{bottom:1px!important;top:1px!important}.xl\:inset-x-px{left:1px!important;right:1px!important}.xl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.xl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}.xl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.xl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}.xl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.xl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}.xl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.xl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}.xl\:inset-y-1\/2{bottom:50%!important;top:50%!important}.xl\:inset-x-1\/2{left:50%!important;right:50%!important}.xl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.xl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.xl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.xl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.xl\:inset-y-1\/4{bottom:25%!important;top:25%!important}.xl\:inset-x-1\/4{left:25%!important;right:25%!important}.xl\:inset-y-2\/4{bottom:50%!important;top:50%!important}.xl\:inset-x-2\/4{left:50%!important;right:50%!important}.xl\:inset-y-3\/4{bottom:75%!important;top:75%!important}.xl\:inset-x-3\/4{left:75%!important;right:75%!important}.xl\:inset-y-1\/5{bottom:20%!important;top:20%!important}.xl\:inset-x-1\/5{left:20%!important;right:20%!important}.xl\:inset-y-2\/5{bottom:40%!important;top:40%!important}.xl\:inset-x-2\/5{left:40%!important;right:40%!important}.xl\:inset-y-3\/5{bottom:60%!important;top:60%!important}.xl\:inset-x-3\/5{left:60%!important;right:60%!important}.xl\:inset-y-4\/5{bottom:80%!important;top:80%!important}.xl\:inset-x-4\/5{left:80%!important;right:80%!important}.xl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.xl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.xl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.xl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.xl\:inset-y-3\/6{bottom:50%!important;top:50%!important}.xl\:inset-x-3\/6{left:50%!important;right:50%!important}.xl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.xl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.xl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.xl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.xl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.xl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.xl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.xl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.xl\:inset-y-3\/12{bottom:25%!important;top:25%!important}.xl\:inset-x-3\/12{left:25%!important;right:25%!important}.xl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.xl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.xl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.xl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.xl\:inset-y-6\/12{bottom:50%!important;top:50%!important}.xl\:inset-x-6\/12{left:50%!important;right:50%!important}.xl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.xl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.xl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.xl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.xl\:inset-y-9\/12{bottom:75%!important;top:75%!important}.xl\:inset-x-9\/12{left:75%!important;right:75%!important}.xl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.xl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.xl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.xl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.xl\:inset-y-full{bottom:100%!important;top:100%!important}.xl\:inset-x-full{left:100%!important;right:100%!important}.xl\:top-0{top:0!important}.xl\:right-0{right:0!important}.xl\:bottom-0{bottom:0!important}.xl\:left-0{left:0!important}.xl\:top-1{top:.25rem!important}.xl\:right-1{right:.25rem!important}.xl\:bottom-1{bottom:.25rem!important}.xl\:left-1{left:.25rem!important}.xl\:top-2{top:.5rem!important}.xl\:right-2{right:.5rem!important}.xl\:bottom-2{bottom:.5rem!important}.xl\:left-2{left:.5rem!important}.xl\:top-3{top:.75rem!important}.xl\:right-3{right:.75rem!important}.xl\:bottom-3{bottom:.75rem!important}.xl\:left-3{left:.75rem!important}.xl\:top-4{top:1rem!important}.xl\:right-4{right:1rem!important}.xl\:bottom-4{bottom:1rem!important}.xl\:left-4{left:1rem!important}.xl\:top-5{top:1.25rem!important}.xl\:right-5{right:1.25rem!important}.xl\:bottom-5{bottom:1.25rem!important}.xl\:left-5{left:1.25rem!important}.xl\:top-6{top:1.5rem!important}.xl\:right-6{right:1.5rem!important}.xl\:bottom-6{bottom:1.5rem!important}.xl\:left-6{left:1.5rem!important}.xl\:top-7{top:1.75rem!important}.xl\:right-7{right:1.75rem!important}.xl\:bottom-7{bottom:1.75rem!important}.xl\:left-7{left:1.75rem!important}.xl\:top-8{top:2rem!important}.xl\:right-8{right:2rem!important}.xl\:bottom-8{bottom:2rem!important}.xl\:left-8{left:2rem!important}.xl\:top-9{top:2.25rem!important}.xl\:right-9{right:2.25rem!important}.xl\:bottom-9{bottom:2.25rem!important}.xl\:left-9{left:2.25rem!important}.xl\:top-10{top:2.5rem!important}.xl\:right-10{right:2.5rem!important}.xl\:bottom-10{bottom:2.5rem!important}.xl\:left-10{left:2.5rem!important}.xl\:top-11{top:2.75rem!important}.xl\:right-11{right:2.75rem!important}.xl\:bottom-11{bottom:2.75rem!important}.xl\:left-11{left:2.75rem!important}.xl\:top-12{top:3rem!important}.xl\:right-12{right:3rem!important}.xl\:bottom-12{bottom:3rem!important}.xl\:left-12{left:3rem!important}.xl\:top-13{top:3.25rem!important}.xl\:right-13{right:3.25rem!important}.xl\:bottom-13{bottom:3.25rem!important}.xl\:left-13{left:3.25rem!important}.xl\:top-14{top:3.5rem!important}.xl\:right-14{right:3.5rem!important}.xl\:bottom-14{bottom:3.5rem!important}.xl\:left-14{left:3.5rem!important}.xl\:top-15{top:3.75rem!important}.xl\:right-15{right:3.75rem!important}.xl\:bottom-15{bottom:3.75rem!important}.xl\:left-15{left:3.75rem!important}.xl\:top-16{top:4rem!important}.xl\:right-16{right:4rem!important}.xl\:bottom-16{bottom:4rem!important}.xl\:left-16{left:4rem!important}.xl\:top-20{top:5rem!important}.xl\:right-20{right:5rem!important}.xl\:bottom-20{bottom:5rem!important}.xl\:left-20{left:5rem!important}.xl\:top-24{top:6rem!important}.xl\:right-24{right:6rem!important}.xl\:bottom-24{bottom:6rem!important}.xl\:left-24{left:6rem!important}.xl\:top-28{top:7rem!important}.xl\:right-28{right:7rem!important}.xl\:bottom-28{bottom:7rem!important}.xl\:left-28{left:7rem!important}.xl\:top-32{top:8rem!important}.xl\:right-32{right:8rem!important}.xl\:bottom-32{bottom:8rem!important}.xl\:left-32{left:8rem!important}.xl\:top-36{top:9rem!important}.xl\:right-36{right:9rem!important}.xl\:bottom-36{bottom:9rem!important}.xl\:left-36{left:9rem!important}.xl\:top-40{top:10rem!important}.xl\:right-40{right:10rem!important}.xl\:bottom-40{bottom:10rem!important}.xl\:left-40{left:10rem!important}.xl\:top-48{top:12rem!important}.xl\:right-48{right:12rem!important}.xl\:bottom-48{bottom:12rem!important}.xl\:left-48{left:12rem!important}.xl\:top-56{top:14rem!important}.xl\:right-56{right:14rem!important}.xl\:bottom-56{bottom:14rem!important}.xl\:left-56{left:14rem!important}.xl\:top-60{top:15rem!important}.xl\:right-60{right:15rem!important}.xl\:bottom-60{bottom:15rem!important}.xl\:left-60{left:15rem!important}.xl\:top-64{top:16rem!important}.xl\:right-64{right:16rem!important}.xl\:bottom-64{bottom:16rem!important}.xl\:left-64{left:16rem!important}.xl\:top-72{top:18rem!important}.xl\:right-72{right:18rem!important}.xl\:bottom-72{bottom:18rem!important}.xl\:left-72{left:18rem!important}.xl\:top-80{top:20rem!important}.xl\:right-80{right:20rem!important}.xl\:bottom-80{bottom:20rem!important}.xl\:left-80{left:20rem!important}.xl\:top-96{top:24rem!important}.xl\:right-96{right:24rem!important}.xl\:bottom-96{bottom:24rem!important}.xl\:left-96{left:24rem!important}.xl\:top-auto{top:auto!important}.xl\:right-auto{right:auto!important}.xl\:bottom-auto{bottom:auto!important}.xl\:left-auto{left:auto!important}.xl\:top-px{top:1px!important}.xl\:right-px{right:1px!important}.xl\:bottom-px{bottom:1px!important}.xl\:left-px{left:1px!important}.xl\:top-0\.5{top:.125rem!important}.xl\:right-0\.5{right:.125rem!important}.xl\:bottom-0\.5{bottom:.125rem!important}.xl\:left-0\.5{left:.125rem!important}.xl\:top-1\.5{top:.375rem!important}.xl\:right-1\.5{right:.375rem!important}.xl\:bottom-1\.5{bottom:.375rem!important}.xl\:left-1\.5{left:.375rem!important}.xl\:top-2\.5{top:.625rem!important}.xl\:right-2\.5{right:.625rem!important}.xl\:bottom-2\.5{bottom:.625rem!important}.xl\:left-2\.5{left:.625rem!important}.xl\:top-3\.5{top:.875rem!important}.xl\:right-3\.5{right:.875rem!important}.xl\:bottom-3\.5{bottom:.875rem!important}.xl\:left-3\.5{left:.875rem!important}.xl\:top-1\/2{top:50%!important}.xl\:right-1\/2{right:50%!important}.xl\:bottom-1\/2{bottom:50%!important}.xl\:left-1\/2{left:50%!important}.xl\:top-1\/3{top:33.333333%!important}.xl\:right-1\/3{right:33.333333%!important}.xl\:bottom-1\/3{bottom:33.333333%!important}.xl\:left-1\/3{left:33.333333%!important}.xl\:top-2\/3{top:66.666667%!important}.xl\:right-2\/3{right:66.666667%!important}.xl\:bottom-2\/3{bottom:66.666667%!important}.xl\:left-2\/3{left:66.666667%!important}.xl\:top-1\/4{top:25%!important}.xl\:right-1\/4{right:25%!important}.xl\:bottom-1\/4{bottom:25%!important}.xl\:left-1\/4{left:25%!important}.xl\:top-2\/4{top:50%!important}.xl\:right-2\/4{right:50%!important}.xl\:bottom-2\/4{bottom:50%!important}.xl\:left-2\/4{left:50%!important}.xl\:top-3\/4{top:75%!important}.xl\:right-3\/4{right:75%!important}.xl\:bottom-3\/4{bottom:75%!important}.xl\:left-3\/4{left:75%!important}.xl\:top-1\/5{top:20%!important}.xl\:right-1\/5{right:20%!important}.xl\:bottom-1\/5{bottom:20%!important}.xl\:left-1\/5{left:20%!important}.xl\:top-2\/5{top:40%!important}.xl\:right-2\/5{right:40%!important}.xl\:bottom-2\/5{bottom:40%!important}.xl\:left-2\/5{left:40%!important}.xl\:top-3\/5{top:60%!important}.xl\:right-3\/5{right:60%!important}.xl\:bottom-3\/5{bottom:60%!important}.xl\:left-3\/5{left:60%!important}.xl\:top-4\/5{top:80%!important}.xl\:right-4\/5{right:80%!important}.xl\:bottom-4\/5{bottom:80%!important}.xl\:left-4\/5{left:80%!important}.xl\:top-1\/6{top:16.666667%!important}.xl\:right-1\/6{right:16.666667%!important}.xl\:bottom-1\/6{bottom:16.666667%!important}.xl\:left-1\/6{left:16.666667%!important}.xl\:top-2\/6{top:33.333333%!important}.xl\:right-2\/6{right:33.333333%!important}.xl\:bottom-2\/6{bottom:33.333333%!important}.xl\:left-2\/6{left:33.333333%!important}.xl\:top-3\/6{top:50%!important}.xl\:right-3\/6{right:50%!important}.xl\:bottom-3\/6{bottom:50%!important}.xl\:left-3\/6{left:50%!important}.xl\:top-4\/6{top:66.666667%!important}.xl\:right-4\/6{right:66.666667%!important}.xl\:bottom-4\/6{bottom:66.666667%!important}.xl\:left-4\/6{left:66.666667%!important}.xl\:top-5\/6{top:83.333333%!important}.xl\:right-5\/6{right:83.333333%!important}.xl\:bottom-5\/6{bottom:83.333333%!important}.xl\:left-5\/6{left:83.333333%!important}.xl\:top-1\/12{top:8.333333%!important}.xl\:right-1\/12{right:8.333333%!important}.xl\:bottom-1\/12{bottom:8.333333%!important}.xl\:left-1\/12{left:8.333333%!important}.xl\:top-2\/12{top:16.666667%!important}.xl\:right-2\/12{right:16.666667%!important}.xl\:bottom-2\/12{bottom:16.666667%!important}.xl\:left-2\/12{left:16.666667%!important}.xl\:top-3\/12{top:25%!important}.xl\:right-3\/12{right:25%!important}.xl\:bottom-3\/12{bottom:25%!important}.xl\:left-3\/12{left:25%!important}.xl\:top-4\/12{top:33.333333%!important}.xl\:right-4\/12{right:33.333333%!important}.xl\:bottom-4\/12{bottom:33.333333%!important}.xl\:left-4\/12{left:33.333333%!important}.xl\:top-5\/12{top:41.666667%!important}.xl\:right-5\/12{right:41.666667%!important}.xl\:bottom-5\/12{bottom:41.666667%!important}.xl\:left-5\/12{left:41.666667%!important}.xl\:top-6\/12{top:50%!important}.xl\:right-6\/12{right:50%!important}.xl\:bottom-6\/12{bottom:50%!important}.xl\:left-6\/12{left:50%!important}.xl\:top-7\/12{top:58.333333%!important}.xl\:right-7\/12{right:58.333333%!important}.xl\:bottom-7\/12{bottom:58.333333%!important}.xl\:left-7\/12{left:58.333333%!important}.xl\:top-8\/12{top:66.666667%!important}.xl\:right-8\/12{right:66.666667%!important}.xl\:bottom-8\/12{bottom:66.666667%!important}.xl\:left-8\/12{left:66.666667%!important}.xl\:top-9\/12{top:75%!important}.xl\:right-9\/12{right:75%!important}.xl\:bottom-9\/12{bottom:75%!important}.xl\:left-9\/12{left:75%!important}.xl\:top-10\/12{top:83.333333%!important}.xl\:right-10\/12{right:83.333333%!important}.xl\:bottom-10\/12{bottom:83.333333%!important}.xl\:left-10\/12{left:83.333333%!important}.xl\:top-11\/12{top:91.666667%!important}.xl\:right-11\/12{right:91.666667%!important}.xl\:bottom-11\/12{bottom:91.666667%!important}.xl\:left-11\/12{left:91.666667%!important}.xl\:top-full{top:100%!important}.xl\:right-full{right:100%!important}.xl\:bottom-full{bottom:100%!important}.xl\:left-full{left:100%!important}[dir=ltr] .xl\:ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .xl\:ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .xl\:ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .xl\:ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .xl\:ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .xl\:ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .xl\:ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .xl\:ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .xl\:ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .xl\:ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .xl\:ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .xl\:ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .xl\:ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .xl\:ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .xl\:ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .xl\:ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .xl\:ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .xl\:ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .xl\:ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .xl\:ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .xl\:ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .xl\:ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .xl\:ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .xl\:ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .xl\:ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .xl\:ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .xl\:ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .xl\:ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .xl\:ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .xl\:ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .xl\:ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .xl\:ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .xl\:ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .xl\:ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .xl\:ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .xl\:ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .xl\:ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .xl\:ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .xl\:ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .xl\:ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .xl\:ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .xl\:ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .xl\:ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .xl\:ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .xl\:ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .xl\:ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .xl\:ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .xl\:ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .xl\:ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .xl\:ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .xl\:ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .xl\:ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .xl\:ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .xl\:ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .xl\:ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .xl\:ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .xl\:ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .xl\:ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .xl\:ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .xl\:ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .xl\:ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .xl\:ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .xl\:ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .xl\:ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .xl\:ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .xl\:ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .xl\:ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .xl\:ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .xl\:ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .xl\:ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .xl\:ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .xl\:ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .xl\:ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .xl\:ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .xl\:ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .xl\:ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .xl\:ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .xl\:ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .xl\:ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .xl\:ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .xl\:ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .xl\:ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .xl\:ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .xl\:ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .xl\:ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .xl\:ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .xl\:ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .xl\:ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .xl\:ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .xl\:ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .xl\:ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .xl\:ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .xl\:ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .xl\:ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .xl\:ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .xl\:ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .xl\:ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .xl\:ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .xl\:ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .xl\:ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .xl\:ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .xl\:ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .xl\:ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .xl\:ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .xl\:ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .xl\:ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .xl\:ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .xl\:ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .xl\:ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .xl\:ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .xl\:ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .xl\:ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .xl\:ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .xl\:ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .xl\:ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .xl\:ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .xl\:ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .xl\:ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .xl\:ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .xl\:ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .xl\:ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .xl\:ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .xl\:ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .xl\:ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .xl\:ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .xl\:ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .xl\:ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .xl\:ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .xl\:ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .xl\:ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .xl\:ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .xl\:ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .xl\:ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .xl\:ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .xl\:ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .xl\:ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .xl\:ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .xl\:ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .xl\:ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .xl\:ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .xl\:ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .xl\:ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .xl\:ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .xl\:ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .xl\:ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .xl\:ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .xl\:ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .xl\:ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .xl\:ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .xl\:ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .xl\:ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .xl\:ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .xl\:ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .xl\:ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .xl\:ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .xl\:ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .xl\:ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .xl\:ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .xl\:ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .xl\:ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .xl\:ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .xl\:ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .xl\:ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .xl\:ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .xl\:ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .xl\:ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .xl\:ltr\:top-0{top:0!important}[dir=ltr] .xl\:ltr\:right-0{right:0!important}[dir=ltr] .xl\:ltr\:bottom-0{bottom:0!important}[dir=ltr] .xl\:ltr\:left-0{left:0!important}[dir=ltr] .xl\:ltr\:top-1{top:.25rem!important}[dir=ltr] .xl\:ltr\:right-1{right:.25rem!important}[dir=ltr] .xl\:ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .xl\:ltr\:left-1{left:.25rem!important}[dir=ltr] .xl\:ltr\:top-2{top:.5rem!important}[dir=ltr] .xl\:ltr\:right-2{right:.5rem!important}[dir=ltr] .xl\:ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .xl\:ltr\:left-2{left:.5rem!important}[dir=ltr] .xl\:ltr\:top-3{top:.75rem!important}[dir=ltr] .xl\:ltr\:right-3{right:.75rem!important}[dir=ltr] .xl\:ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .xl\:ltr\:left-3{left:.75rem!important}[dir=ltr] .xl\:ltr\:top-4{top:1rem!important}[dir=ltr] .xl\:ltr\:right-4{right:1rem!important}[dir=ltr] .xl\:ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .xl\:ltr\:left-4{left:1rem!important}[dir=ltr] .xl\:ltr\:top-5{top:1.25rem!important}[dir=ltr] .xl\:ltr\:right-5{right:1.25rem!important}[dir=ltr] .xl\:ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .xl\:ltr\:left-5{left:1.25rem!important}[dir=ltr] .xl\:ltr\:top-6{top:1.5rem!important}[dir=ltr] .xl\:ltr\:right-6{right:1.5rem!important}[dir=ltr] .xl\:ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .xl\:ltr\:left-6{left:1.5rem!important}[dir=ltr] .xl\:ltr\:top-7{top:1.75rem!important}[dir=ltr] .xl\:ltr\:right-7{right:1.75rem!important}[dir=ltr] .xl\:ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .xl\:ltr\:left-7{left:1.75rem!important}[dir=ltr] .xl\:ltr\:top-8{top:2rem!important}[dir=ltr] .xl\:ltr\:right-8{right:2rem!important}[dir=ltr] .xl\:ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .xl\:ltr\:left-8{left:2rem!important}[dir=ltr] .xl\:ltr\:top-9{top:2.25rem!important}[dir=ltr] .xl\:ltr\:right-9{right:2.25rem!important}[dir=ltr] .xl\:ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .xl\:ltr\:left-9{left:2.25rem!important}[dir=ltr] .xl\:ltr\:top-10{top:2.5rem!important}[dir=ltr] .xl\:ltr\:right-10{right:2.5rem!important}[dir=ltr] .xl\:ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .xl\:ltr\:left-10{left:2.5rem!important}[dir=ltr] .xl\:ltr\:top-11{top:2.75rem!important}[dir=ltr] .xl\:ltr\:right-11{right:2.75rem!important}[dir=ltr] .xl\:ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .xl\:ltr\:left-11{left:2.75rem!important}[dir=ltr] .xl\:ltr\:top-12{top:3rem!important}[dir=ltr] .xl\:ltr\:right-12{right:3rem!important}[dir=ltr] .xl\:ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .xl\:ltr\:left-12{left:3rem!important}[dir=ltr] .xl\:ltr\:top-13{top:3.25rem!important}[dir=ltr] .xl\:ltr\:right-13{right:3.25rem!important}[dir=ltr] .xl\:ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .xl\:ltr\:left-13{left:3.25rem!important}[dir=ltr] .xl\:ltr\:top-14{top:3.5rem!important}[dir=ltr] .xl\:ltr\:right-14{right:3.5rem!important}[dir=ltr] .xl\:ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .xl\:ltr\:left-14{left:3.5rem!important}[dir=ltr] .xl\:ltr\:top-15{top:3.75rem!important}[dir=ltr] .xl\:ltr\:right-15{right:3.75rem!important}[dir=ltr] .xl\:ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .xl\:ltr\:left-15{left:3.75rem!important}[dir=ltr] .xl\:ltr\:top-16{top:4rem!important}[dir=ltr] .xl\:ltr\:right-16{right:4rem!important}[dir=ltr] .xl\:ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .xl\:ltr\:left-16{left:4rem!important}[dir=ltr] .xl\:ltr\:top-20{top:5rem!important}[dir=ltr] .xl\:ltr\:right-20{right:5rem!important}[dir=ltr] .xl\:ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .xl\:ltr\:left-20{left:5rem!important}[dir=ltr] .xl\:ltr\:top-24{top:6rem!important}[dir=ltr] .xl\:ltr\:right-24{right:6rem!important}[dir=ltr] .xl\:ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .xl\:ltr\:left-24{left:6rem!important}[dir=ltr] .xl\:ltr\:top-28{top:7rem!important}[dir=ltr] .xl\:ltr\:right-28{right:7rem!important}[dir=ltr] .xl\:ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .xl\:ltr\:left-28{left:7rem!important}[dir=ltr] .xl\:ltr\:top-32{top:8rem!important}[dir=ltr] .xl\:ltr\:right-32{right:8rem!important}[dir=ltr] .xl\:ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .xl\:ltr\:left-32{left:8rem!important}[dir=ltr] .xl\:ltr\:top-36{top:9rem!important}[dir=ltr] .xl\:ltr\:right-36{right:9rem!important}[dir=ltr] .xl\:ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .xl\:ltr\:left-36{left:9rem!important}[dir=ltr] .xl\:ltr\:top-40{top:10rem!important}[dir=ltr] .xl\:ltr\:right-40{right:10rem!important}[dir=ltr] .xl\:ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .xl\:ltr\:left-40{left:10rem!important}[dir=ltr] .xl\:ltr\:top-48{top:12rem!important}[dir=ltr] .xl\:ltr\:right-48{right:12rem!important}[dir=ltr] .xl\:ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .xl\:ltr\:left-48{left:12rem!important}[dir=ltr] .xl\:ltr\:top-56{top:14rem!important}[dir=ltr] .xl\:ltr\:right-56{right:14rem!important}[dir=ltr] .xl\:ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .xl\:ltr\:left-56{left:14rem!important}[dir=ltr] .xl\:ltr\:top-60{top:15rem!important}[dir=ltr] .xl\:ltr\:right-60{right:15rem!important}[dir=ltr] .xl\:ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .xl\:ltr\:left-60{left:15rem!important}[dir=ltr] .xl\:ltr\:top-64{top:16rem!important}[dir=ltr] .xl\:ltr\:right-64{right:16rem!important}[dir=ltr] .xl\:ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .xl\:ltr\:left-64{left:16rem!important}[dir=ltr] .xl\:ltr\:top-72{top:18rem!important}[dir=ltr] .xl\:ltr\:right-72{right:18rem!important}[dir=ltr] .xl\:ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .xl\:ltr\:left-72{left:18rem!important}[dir=ltr] .xl\:ltr\:top-80{top:20rem!important}[dir=ltr] .xl\:ltr\:right-80{right:20rem!important}[dir=ltr] .xl\:ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .xl\:ltr\:left-80{left:20rem!important}[dir=ltr] .xl\:ltr\:top-96{top:24rem!important}[dir=ltr] .xl\:ltr\:right-96{right:24rem!important}[dir=ltr] .xl\:ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .xl\:ltr\:left-96{left:24rem!important}[dir=ltr] .xl\:ltr\:top-auto{top:auto!important}[dir=ltr] .xl\:ltr\:right-auto{right:auto!important}[dir=ltr] .xl\:ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .xl\:ltr\:left-auto{left:auto!important}[dir=ltr] .xl\:ltr\:top-px{top:1px!important}[dir=ltr] .xl\:ltr\:right-px{right:1px!important}[dir=ltr] .xl\:ltr\:bottom-px{bottom:1px!important}[dir=ltr] .xl\:ltr\:left-px{left:1px!important}[dir=ltr] .xl\:ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .xl\:ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .xl\:ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .xl\:ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .xl\:ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .xl\:ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .xl\:ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .xl\:ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .xl\:ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .xl\:ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .xl\:ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .xl\:ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .xl\:ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .xl\:ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .xl\:ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .xl\:ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .xl\:ltr\:top-1\/2{top:50%!important}[dir=ltr] .xl\:ltr\:right-1\/2{right:50%!important}[dir=ltr] .xl\:ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .xl\:ltr\:left-1\/2{left:50%!important}[dir=ltr] .xl\:ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .xl\:ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .xl\:ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .xl\:ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .xl\:ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .xl\:ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .xl\:ltr\:top-1\/4{top:25%!important}[dir=ltr] .xl\:ltr\:right-1\/4{right:25%!important}[dir=ltr] .xl\:ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .xl\:ltr\:left-1\/4{left:25%!important}[dir=ltr] .xl\:ltr\:top-2\/4{top:50%!important}[dir=ltr] .xl\:ltr\:right-2\/4{right:50%!important}[dir=ltr] .xl\:ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .xl\:ltr\:left-2\/4{left:50%!important}[dir=ltr] .xl\:ltr\:top-3\/4{top:75%!important}[dir=ltr] .xl\:ltr\:right-3\/4{right:75%!important}[dir=ltr] .xl\:ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .xl\:ltr\:left-3\/4{left:75%!important}[dir=ltr] .xl\:ltr\:top-1\/5{top:20%!important}[dir=ltr] .xl\:ltr\:right-1\/5{right:20%!important}[dir=ltr] .xl\:ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .xl\:ltr\:left-1\/5{left:20%!important}[dir=ltr] .xl\:ltr\:top-2\/5{top:40%!important}[dir=ltr] .xl\:ltr\:right-2\/5{right:40%!important}[dir=ltr] .xl\:ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .xl\:ltr\:left-2\/5{left:40%!important}[dir=ltr] .xl\:ltr\:top-3\/5{top:60%!important}[dir=ltr] .xl\:ltr\:right-3\/5{right:60%!important}[dir=ltr] .xl\:ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .xl\:ltr\:left-3\/5{left:60%!important}[dir=ltr] .xl\:ltr\:top-4\/5{top:80%!important}[dir=ltr] .xl\:ltr\:right-4\/5{right:80%!important}[dir=ltr] .xl\:ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .xl\:ltr\:left-4\/5{left:80%!important}[dir=ltr] .xl\:ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .xl\:ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .xl\:ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .xl\:ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .xl\:ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .xl\:ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .xl\:ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .xl\:ltr\:top-3\/6{top:50%!important}[dir=ltr] .xl\:ltr\:right-3\/6{right:50%!important}[dir=ltr] .xl\:ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .xl\:ltr\:left-3\/6{left:50%!important}[dir=ltr] .xl\:ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .xl\:ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .xl\:ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .xl\:ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .xl\:ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .xl\:ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .xl\:ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .xl\:ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .xl\:ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .xl\:ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .xl\:ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .xl\:ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .xl\:ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .xl\:ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .xl\:ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .xl\:ltr\:top-3\/12{top:25%!important}[dir=ltr] .xl\:ltr\:right-3\/12{right:25%!important}[dir=ltr] .xl\:ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .xl\:ltr\:left-3\/12{left:25%!important}[dir=ltr] .xl\:ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .xl\:ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .xl\:ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .xl\:ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .xl\:ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .xl\:ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .xl\:ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .xl\:ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .xl\:ltr\:top-6\/12{top:50%!important}[dir=ltr] .xl\:ltr\:right-6\/12{right:50%!important}[dir=ltr] .xl\:ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .xl\:ltr\:left-6\/12{left:50%!important}[dir=ltr] .xl\:ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .xl\:ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .xl\:ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .xl\:ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .xl\:ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .xl\:ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .xl\:ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .xl\:ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .xl\:ltr\:top-9\/12{top:75%!important}[dir=ltr] .xl\:ltr\:right-9\/12{right:75%!important}[dir=ltr] .xl\:ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .xl\:ltr\:left-9\/12{left:75%!important}[dir=ltr] .xl\:ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .xl\:ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .xl\:ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .xl\:ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .xl\:ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .xl\:ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .xl\:ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .xl\:ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .xl\:ltr\:top-full{top:100%!important}[dir=ltr] .xl\:ltr\:right-full{right:100%!important}[dir=ltr] .xl\:ltr\:bottom-full{bottom:100%!important}[dir=ltr] .xl\:ltr\:left-full{left:100%!important}[dir=rtl] .xl\:rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .xl\:rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .xl\:rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .xl\:rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .xl\:rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .xl\:rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .xl\:rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .xl\:rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .xl\:rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .xl\:rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .xl\:rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .xl\:rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .xl\:rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .xl\:rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .xl\:rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .xl\:rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .xl\:rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .xl\:rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .xl\:rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .xl\:rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .xl\:rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .xl\:rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .xl\:rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .xl\:rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .xl\:rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .xl\:rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .xl\:rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .xl\:rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .xl\:rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .xl\:rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .xl\:rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .xl\:rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .xl\:rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .xl\:rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .xl\:rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .xl\:rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .xl\:rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .xl\:rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .xl\:rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .xl\:rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .xl\:rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .xl\:rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .xl\:rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .xl\:rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .xl\:rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .xl\:rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .xl\:rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .xl\:rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .xl\:rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .xl\:rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .xl\:rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .xl\:rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .xl\:rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .xl\:rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .xl\:rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .xl\:rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .xl\:rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .xl\:rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .xl\:rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .xl\:rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .xl\:rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .xl\:rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .xl\:rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .xl\:rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .xl\:rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .xl\:rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .xl\:rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .xl\:rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .xl\:rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .xl\:rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .xl\:rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .xl\:rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .xl\:rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .xl\:rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .xl\:rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .xl\:rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .xl\:rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .xl\:rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .xl\:rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .xl\:rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .xl\:rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .xl\:rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .xl\:rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .xl\:rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .xl\:rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .xl\:rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .xl\:rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .xl\:rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .xl\:rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .xl\:rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .xl\:rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .xl\:rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .xl\:rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .xl\:rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .xl\:rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .xl\:rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .xl\:rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .xl\:rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .xl\:rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .xl\:rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .xl\:rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .xl\:rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .xl\:rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .xl\:rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .xl\:rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .xl\:rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .xl\:rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .xl\:rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .xl\:rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .xl\:rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .xl\:rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .xl\:rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .xl\:rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .xl\:rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .xl\:rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .xl\:rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .xl\:rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .xl\:rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .xl\:rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .xl\:rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .xl\:rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .xl\:rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .xl\:rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .xl\:rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .xl\:rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .xl\:rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .xl\:rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .xl\:rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .xl\:rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .xl\:rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .xl\:rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .xl\:rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .xl\:rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .xl\:rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .xl\:rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .xl\:rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .xl\:rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .xl\:rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .xl\:rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .xl\:rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .xl\:rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .xl\:rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .xl\:rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .xl\:rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .xl\:rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .xl\:rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .xl\:rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .xl\:rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .xl\:rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .xl\:rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .xl\:rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .xl\:rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .xl\:rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .xl\:rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .xl\:rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .xl\:rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .xl\:rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .xl\:rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .xl\:rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .xl\:rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .xl\:rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .xl\:rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .xl\:rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .xl\:rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .xl\:rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .xl\:rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .xl\:rtl\:top-0{top:0!important}[dir=rtl] .xl\:rtl\:right-0{right:0!important}[dir=rtl] .xl\:rtl\:bottom-0{bottom:0!important}[dir=rtl] .xl\:rtl\:left-0{left:0!important}[dir=rtl] .xl\:rtl\:top-1{top:.25rem!important}[dir=rtl] .xl\:rtl\:right-1{right:.25rem!important}[dir=rtl] .xl\:rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .xl\:rtl\:left-1{left:.25rem!important}[dir=rtl] .xl\:rtl\:top-2{top:.5rem!important}[dir=rtl] .xl\:rtl\:right-2{right:.5rem!important}[dir=rtl] .xl\:rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .xl\:rtl\:left-2{left:.5rem!important}[dir=rtl] .xl\:rtl\:top-3{top:.75rem!important}[dir=rtl] .xl\:rtl\:right-3{right:.75rem!important}[dir=rtl] .xl\:rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .xl\:rtl\:left-3{left:.75rem!important}[dir=rtl] .xl\:rtl\:top-4{top:1rem!important}[dir=rtl] .xl\:rtl\:right-4{right:1rem!important}[dir=rtl] .xl\:rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .xl\:rtl\:left-4{left:1rem!important}[dir=rtl] .xl\:rtl\:top-5{top:1.25rem!important}[dir=rtl] .xl\:rtl\:right-5{right:1.25rem!important}[dir=rtl] .xl\:rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .xl\:rtl\:left-5{left:1.25rem!important}[dir=rtl] .xl\:rtl\:top-6{top:1.5rem!important}[dir=rtl] .xl\:rtl\:right-6{right:1.5rem!important}[dir=rtl] .xl\:rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .xl\:rtl\:left-6{left:1.5rem!important}[dir=rtl] .xl\:rtl\:top-7{top:1.75rem!important}[dir=rtl] .xl\:rtl\:right-7{right:1.75rem!important}[dir=rtl] .xl\:rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .xl\:rtl\:left-7{left:1.75rem!important}[dir=rtl] .xl\:rtl\:top-8{top:2rem!important}[dir=rtl] .xl\:rtl\:right-8{right:2rem!important}[dir=rtl] .xl\:rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .xl\:rtl\:left-8{left:2rem!important}[dir=rtl] .xl\:rtl\:top-9{top:2.25rem!important}[dir=rtl] .xl\:rtl\:right-9{right:2.25rem!important}[dir=rtl] .xl\:rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .xl\:rtl\:left-9{left:2.25rem!important}[dir=rtl] .xl\:rtl\:top-10{top:2.5rem!important}[dir=rtl] .xl\:rtl\:right-10{right:2.5rem!important}[dir=rtl] .xl\:rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .xl\:rtl\:left-10{left:2.5rem!important}[dir=rtl] .xl\:rtl\:top-11{top:2.75rem!important}[dir=rtl] .xl\:rtl\:right-11{right:2.75rem!important}[dir=rtl] .xl\:rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .xl\:rtl\:left-11{left:2.75rem!important}[dir=rtl] .xl\:rtl\:top-12{top:3rem!important}[dir=rtl] .xl\:rtl\:right-12{right:3rem!important}[dir=rtl] .xl\:rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .xl\:rtl\:left-12{left:3rem!important}[dir=rtl] .xl\:rtl\:top-13{top:3.25rem!important}[dir=rtl] .xl\:rtl\:right-13{right:3.25rem!important}[dir=rtl] .xl\:rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .xl\:rtl\:left-13{left:3.25rem!important}[dir=rtl] .xl\:rtl\:top-14{top:3.5rem!important}[dir=rtl] .xl\:rtl\:right-14{right:3.5rem!important}[dir=rtl] .xl\:rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .xl\:rtl\:left-14{left:3.5rem!important}[dir=rtl] .xl\:rtl\:top-15{top:3.75rem!important}[dir=rtl] .xl\:rtl\:right-15{right:3.75rem!important}[dir=rtl] .xl\:rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .xl\:rtl\:left-15{left:3.75rem!important}[dir=rtl] .xl\:rtl\:top-16{top:4rem!important}[dir=rtl] .xl\:rtl\:right-16{right:4rem!important}[dir=rtl] .xl\:rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .xl\:rtl\:left-16{left:4rem!important}[dir=rtl] .xl\:rtl\:top-20{top:5rem!important}[dir=rtl] .xl\:rtl\:right-20{right:5rem!important}[dir=rtl] .xl\:rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .xl\:rtl\:left-20{left:5rem!important}[dir=rtl] .xl\:rtl\:top-24{top:6rem!important}[dir=rtl] .xl\:rtl\:right-24{right:6rem!important}[dir=rtl] .xl\:rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .xl\:rtl\:left-24{left:6rem!important}[dir=rtl] .xl\:rtl\:top-28{top:7rem!important}[dir=rtl] .xl\:rtl\:right-28{right:7rem!important}[dir=rtl] .xl\:rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .xl\:rtl\:left-28{left:7rem!important}[dir=rtl] .xl\:rtl\:top-32{top:8rem!important}[dir=rtl] .xl\:rtl\:right-32{right:8rem!important}[dir=rtl] .xl\:rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .xl\:rtl\:left-32{left:8rem!important}[dir=rtl] .xl\:rtl\:top-36{top:9rem!important}[dir=rtl] .xl\:rtl\:right-36{right:9rem!important}[dir=rtl] .xl\:rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .xl\:rtl\:left-36{left:9rem!important}[dir=rtl] .xl\:rtl\:top-40{top:10rem!important}[dir=rtl] .xl\:rtl\:right-40{right:10rem!important}[dir=rtl] .xl\:rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .xl\:rtl\:left-40{left:10rem!important}[dir=rtl] .xl\:rtl\:top-48{top:12rem!important}[dir=rtl] .xl\:rtl\:right-48{right:12rem!important}[dir=rtl] .xl\:rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .xl\:rtl\:left-48{left:12rem!important}[dir=rtl] .xl\:rtl\:top-56{top:14rem!important}[dir=rtl] .xl\:rtl\:right-56{right:14rem!important}[dir=rtl] .xl\:rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .xl\:rtl\:left-56{left:14rem!important}[dir=rtl] .xl\:rtl\:top-60{top:15rem!important}[dir=rtl] .xl\:rtl\:right-60{right:15rem!important}[dir=rtl] .xl\:rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .xl\:rtl\:left-60{left:15rem!important}[dir=rtl] .xl\:rtl\:top-64{top:16rem!important}[dir=rtl] .xl\:rtl\:right-64{right:16rem!important}[dir=rtl] .xl\:rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .xl\:rtl\:left-64{left:16rem!important}[dir=rtl] .xl\:rtl\:top-72{top:18rem!important}[dir=rtl] .xl\:rtl\:right-72{right:18rem!important}[dir=rtl] .xl\:rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .xl\:rtl\:left-72{left:18rem!important}[dir=rtl] .xl\:rtl\:top-80{top:20rem!important}[dir=rtl] .xl\:rtl\:right-80{right:20rem!important}[dir=rtl] .xl\:rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .xl\:rtl\:left-80{left:20rem!important}[dir=rtl] .xl\:rtl\:top-96{top:24rem!important}[dir=rtl] .xl\:rtl\:right-96{right:24rem!important}[dir=rtl] .xl\:rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .xl\:rtl\:left-96{left:24rem!important}[dir=rtl] .xl\:rtl\:top-auto{top:auto!important}[dir=rtl] .xl\:rtl\:right-auto{right:auto!important}[dir=rtl] .xl\:rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .xl\:rtl\:left-auto{left:auto!important}[dir=rtl] .xl\:rtl\:top-px{top:1px!important}[dir=rtl] .xl\:rtl\:right-px{right:1px!important}[dir=rtl] .xl\:rtl\:bottom-px{bottom:1px!important}[dir=rtl] .xl\:rtl\:left-px{left:1px!important}[dir=rtl] .xl\:rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .xl\:rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .xl\:rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .xl\:rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .xl\:rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .xl\:rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .xl\:rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .xl\:rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .xl\:rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .xl\:rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .xl\:rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .xl\:rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .xl\:rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .xl\:rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .xl\:rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .xl\:rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .xl\:rtl\:top-1\/2{top:50%!important}[dir=rtl] .xl\:rtl\:right-1\/2{right:50%!important}[dir=rtl] .xl\:rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .xl\:rtl\:left-1\/2{left:50%!important}[dir=rtl] .xl\:rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .xl\:rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .xl\:rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .xl\:rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .xl\:rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .xl\:rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .xl\:rtl\:top-1\/4{top:25%!important}[dir=rtl] .xl\:rtl\:right-1\/4{right:25%!important}[dir=rtl] .xl\:rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .xl\:rtl\:left-1\/4{left:25%!important}[dir=rtl] .xl\:rtl\:top-2\/4{top:50%!important}[dir=rtl] .xl\:rtl\:right-2\/4{right:50%!important}[dir=rtl] .xl\:rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .xl\:rtl\:left-2\/4{left:50%!important}[dir=rtl] .xl\:rtl\:top-3\/4{top:75%!important}[dir=rtl] .xl\:rtl\:right-3\/4{right:75%!important}[dir=rtl] .xl\:rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .xl\:rtl\:left-3\/4{left:75%!important}[dir=rtl] .xl\:rtl\:top-1\/5{top:20%!important}[dir=rtl] .xl\:rtl\:right-1\/5{right:20%!important}[dir=rtl] .xl\:rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .xl\:rtl\:left-1\/5{left:20%!important}[dir=rtl] .xl\:rtl\:top-2\/5{top:40%!important}[dir=rtl] .xl\:rtl\:right-2\/5{right:40%!important}[dir=rtl] .xl\:rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .xl\:rtl\:left-2\/5{left:40%!important}[dir=rtl] .xl\:rtl\:top-3\/5{top:60%!important}[dir=rtl] .xl\:rtl\:right-3\/5{right:60%!important}[dir=rtl] .xl\:rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .xl\:rtl\:left-3\/5{left:60%!important}[dir=rtl] .xl\:rtl\:top-4\/5{top:80%!important}[dir=rtl] .xl\:rtl\:right-4\/5{right:80%!important}[dir=rtl] .xl\:rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .xl\:rtl\:left-4\/5{left:80%!important}[dir=rtl] .xl\:rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .xl\:rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .xl\:rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .xl\:rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .xl\:rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .xl\:rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .xl\:rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .xl\:rtl\:top-3\/6{top:50%!important}[dir=rtl] .xl\:rtl\:right-3\/6{right:50%!important}[dir=rtl] .xl\:rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .xl\:rtl\:left-3\/6{left:50%!important}[dir=rtl] .xl\:rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .xl\:rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .xl\:rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .xl\:rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .xl\:rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .xl\:rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .xl\:rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .xl\:rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .xl\:rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .xl\:rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .xl\:rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .xl\:rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .xl\:rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .xl\:rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .xl\:rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .xl\:rtl\:top-3\/12{top:25%!important}[dir=rtl] .xl\:rtl\:right-3\/12{right:25%!important}[dir=rtl] .xl\:rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .xl\:rtl\:left-3\/12{left:25%!important}[dir=rtl] .xl\:rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .xl\:rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .xl\:rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .xl\:rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .xl\:rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .xl\:rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .xl\:rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .xl\:rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .xl\:rtl\:top-6\/12{top:50%!important}[dir=rtl] .xl\:rtl\:right-6\/12{right:50%!important}[dir=rtl] .xl\:rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .xl\:rtl\:left-6\/12{left:50%!important}[dir=rtl] .xl\:rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .xl\:rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .xl\:rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .xl\:rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .xl\:rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .xl\:rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .xl\:rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .xl\:rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .xl\:rtl\:top-9\/12{top:75%!important}[dir=rtl] .xl\:rtl\:right-9\/12{right:75%!important}[dir=rtl] .xl\:rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .xl\:rtl\:left-9\/12{left:75%!important}[dir=rtl] .xl\:rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .xl\:rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .xl\:rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .xl\:rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .xl\:rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .xl\:rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .xl\:rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .xl\:rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .xl\:rtl\:top-full{top:100%!important}[dir=rtl] .xl\:rtl\:right-full{right:100%!important}[dir=rtl] .xl\:rtl\:bottom-full{bottom:100%!important}[dir=rtl] .xl\:rtl\:left-full{left:100%!important}.xl\:resize-none{resize:none!important}.xl\:resize-y{resize:vertical!important}.xl\:resize-x{resize:horizontal!important}.xl\:resize{resize:both!important}.xl\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.xl\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.xl\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.xl\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.xl\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.xl\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.xl\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.xl\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.xl\:shadow-none{box-shadow:none!important}.group:focus .xl\:group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .xl\:group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .xl\:group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .xl\:group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .xl\:group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .xl\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .xl\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .xl\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .xl\:group-focus\:shadow-none{box-shadow:none!important}.xl\:hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.xl\:hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.xl\:hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.xl\:hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.xl\:hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.xl\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.xl\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.xl\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.xl\:hover\:shadow-none:hover{box-shadow:none!important}.xl\:focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.xl\:focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.xl\:focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.xl\:focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.xl\:focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.xl\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.xl\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.xl\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.xl\:focus\:shadow-none:focus{box-shadow:none!important}.xl\:fill-current{fill:currentColor!important}.xl\:stroke-current{stroke:currentColor!important}.xl\:stroke-0{stroke-width:0!important}.xl\:stroke-1{stroke-width:1!important}.xl\:stroke-2{stroke-width:2!important}.xl\:table-auto{table-layout:auto!important}.xl\:table-fixed{table-layout:fixed!important}.xl\:text-left{text-align:left!important}.xl\:text-center{text-align:center!important}.xl\:text-right{text-align:right!important}.xl\:text-justify{text-align:justify!important}.xl\:text-transparent{color:transparent!important}.xl\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.xl\:text-white-70{color:hsla(0,0%,100%,.7)!important}.xl\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.xl\:text-blackest-70{color:rgba(0,0,0,.7)!important}.xl\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.xl\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.xl\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.xl\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.xl\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.xl\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.xl\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.xl\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.xl\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.xl\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.xl\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.xl\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.xl\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.xl\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.xl\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.xl\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.xl\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.xl\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.xl\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.xl\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.xl\:hover\:text-transparent:hover{color:transparent!important}.xl\:hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.xl\:hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.xl\:hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.xl\:hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.xl\:hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.xl\:hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.xl\:hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.xl\:hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.xl\:hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.xl\:hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.xl\:hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.xl\:hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.xl\:hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.xl\:hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.xl\:hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.xl\:hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.xl\:hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.xl\:hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.xl\:hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.xl\:hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.xl\:hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.xl\:hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.xl\:hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.xl\:hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.xl\:focus\:text-transparent:focus{color:transparent!important}.xl\:focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.xl\:focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.xl\:focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.xl\:focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.xl\:focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.xl\:focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.xl\:focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.xl\:focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.xl\:focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.xl\:focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.xl\:focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.xl\:focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.xl\:focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.xl\:focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.xl\:focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.xl\:focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.xl\:focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.xl\:focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.xl\:focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.xl\:focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.xl\:focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.xl\:focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.xl\:focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.xl\:focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-transparent{color:transparent!important}.group:hover .xl\:group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .xl\:group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .xl\:group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .xl\:group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .xl\:group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.xl\:text-opacity-0{--text-opacity:0!important}.xl\:text-opacity-25{--text-opacity:0.25!important}.xl\:text-opacity-50{--text-opacity:0.5!important}.xl\:text-opacity-75{--text-opacity:0.75!important}.xl\:text-opacity-100{--text-opacity:1!important}.xl\:hover\:text-opacity-0:hover{--text-opacity:0!important}.xl\:hover\:text-opacity-25:hover{--text-opacity:0.25!important}.xl\:hover\:text-opacity-50:hover{--text-opacity:0.5!important}.xl\:hover\:text-opacity-75:hover{--text-opacity:0.75!important}.xl\:hover\:text-opacity-100:hover{--text-opacity:1!important}.xl\:focus\:text-opacity-0:focus{--text-opacity:0!important}.xl\:focus\:text-opacity-25:focus{--text-opacity:0.25!important}.xl\:focus\:text-opacity-50:focus{--text-opacity:0.5!important}.xl\:focus\:text-opacity-75:focus{--text-opacity:0.75!important}.xl\:focus\:text-opacity-100:focus{--text-opacity:1!important}.xl\:italic{font-style:italic!important}.xl\:not-italic{font-style:normal!important}.xl\:uppercase{text-transform:uppercase!important}.xl\:lowercase{text-transform:lowercase!important}.xl\:capitalize{text-transform:capitalize!important}.xl\:normal-case{text-transform:none!important}.xl\:underline{text-decoration:underline!important}.xl\:line-through{text-decoration:line-through!important}.xl\:no-underline{text-decoration:none!important}.group:hover .xl\:group-hover\:underline{text-decoration:underline!important}.group:hover .xl\:group-hover\:line-through{text-decoration:line-through!important}.group:hover .xl\:group-hover\:no-underline{text-decoration:none!important}.group:focus .xl\:group-focus\:underline{text-decoration:underline!important}.group:focus .xl\:group-focus\:line-through{text-decoration:line-through!important}.group:focus .xl\:group-focus\:no-underline{text-decoration:none!important}.xl\:hover\:underline:hover{text-decoration:underline!important}.xl\:hover\:line-through:hover{text-decoration:line-through!important}.xl\:hover\:no-underline:hover{text-decoration:none!important}.xl\:focus\:underline:focus{text-decoration:underline!important}.xl\:focus\:line-through:focus{text-decoration:line-through!important}.xl\:focus\:no-underline:focus{text-decoration:none!important}.xl\:antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.xl\:subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.xl\:diagonal-fractions,.xl\:lining-nums,.xl\:oldstyle-nums,.xl\:ordinal,.xl\:proportional-nums,.xl\:slashed-zero,.xl\:stacked-fractions,.xl\:tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.xl\:normal-nums{font-variant-numeric:normal!important}.xl\:ordinal{--font-variant-numeric-ordinal:ordinal!important}.xl\:slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.xl\:lining-nums{--font-variant-numeric-figure:lining-nums!important}.xl\:oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.xl\:proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.xl\:tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.xl\:diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.xl\:stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.xl\:tracking-tighter{letter-spacing:-.05em!important}.xl\:tracking-tight{letter-spacing:-.025em!important}.xl\:tracking-normal{letter-spacing:0!important}.xl\:tracking-wide{letter-spacing:.025em!important}.xl\:tracking-wider{letter-spacing:.05em!important}.xl\:tracking-widest{letter-spacing:.1em!important}.xl\:select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.xl\:select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.xl\:select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.xl\:select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.xl\:align-baseline{vertical-align:baseline!important}.xl\:align-top{vertical-align:top!important}.xl\:align-middle{vertical-align:middle!important}.xl\:align-bottom{vertical-align:bottom!important}.xl\:align-text-top{vertical-align:text-top!important}.xl\:align-text-bottom{vertical-align:text-bottom!important}.xl\:visible{visibility:visible!important}.xl\:invisible{visibility:hidden!important}.xl\:whitespace-normal{white-space:normal!important}.xl\:whitespace-no-wrap{white-space:nowrap!important}.xl\:whitespace-pre{white-space:pre!important}.xl\:whitespace-pre-line{white-space:pre-line!important}.xl\:whitespace-pre-wrap{white-space:pre-wrap!important}.xl\:break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.xl\:break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.xl\:break-all{word-break:break-all!important}.xl\:truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.xl\:w-0{width:0!important}.xl\:w-1{width:.25rem!important}.xl\:w-2{width:.5rem!important}.xl\:w-3{width:.75rem!important}.xl\:w-4{width:1rem!important}.xl\:w-5{width:1.25rem!important}.xl\:w-6{width:1.5rem!important}.xl\:w-7{width:1.75rem!important}.xl\:w-8{width:2rem!important}.xl\:w-9{width:2.25rem!important}.xl\:w-10{width:2.5rem!important}.xl\:w-11{width:2.75rem!important}.xl\:w-12{width:3rem!important}.xl\:w-13{width:3.25rem!important}.xl\:w-14{width:3.5rem!important}.xl\:w-15{width:3.75rem!important}.xl\:w-16{width:4rem!important}.xl\:w-20{width:5rem!important}.xl\:w-24{width:6rem!important}.xl\:w-28{width:7rem!important}.xl\:w-32{width:8rem!important}.xl\:w-36{width:9rem!important}.xl\:w-40{width:10rem!important}.xl\:w-48{width:12rem!important}.xl\:w-56{width:14rem!important}.xl\:w-60{width:15rem!important}.xl\:w-64{width:16rem!important}.xl\:w-72{width:18rem!important}.xl\:w-80{width:20rem!important}.xl\:w-96{width:24rem!important}.xl\:w-auto{width:auto!important}.xl\:w-px{width:1px!important}.xl\:w-0\.5{width:.125rem!important}.xl\:w-1\.5{width:.375rem!important}.xl\:w-2\.5{width:.625rem!important}.xl\:w-3\.5{width:.875rem!important}.xl\:w-1\/2{width:50%!important}.xl\:w-1\/3{width:33.333333%!important}.xl\:w-2\/3{width:66.666667%!important}.xl\:w-1\/4{width:25%!important}.xl\:w-2\/4{width:50%!important}.xl\:w-3\/4{width:75%!important}.xl\:w-1\/5{width:20%!important}.xl\:w-2\/5{width:40%!important}.xl\:w-3\/5{width:60%!important}.xl\:w-4\/5{width:80%!important}.xl\:w-1\/6{width:16.666667%!important}.xl\:w-2\/6{width:33.333333%!important}.xl\:w-3\/6{width:50%!important}.xl\:w-4\/6{width:66.666667%!important}.xl\:w-5\/6{width:83.333333%!important}.xl\:w-1\/12{width:8.333333%!important}.xl\:w-2\/12{width:16.666667%!important}.xl\:w-3\/12{width:25%!important}.xl\:w-4\/12{width:33.333333%!important}.xl\:w-5\/12{width:41.666667%!important}.xl\:w-6\/12{width:50%!important}.xl\:w-7\/12{width:58.333333%!important}.xl\:w-8\/12{width:66.666667%!important}.xl\:w-9\/12{width:75%!important}.xl\:w-10\/12{width:83.333333%!important}.xl\:w-11\/12{width:91.666667%!important}.xl\:w-full{width:100%!important}.xl\:w-screen{width:100vw!important}.xl\:z-0{z-index:0!important}.xl\:z-10{z-index:10!important}.xl\:z-20{z-index:20!important}.xl\:z-30{z-index:30!important}.xl\:z-40{z-index:40!important}.xl\:z-50{z-index:50!important}.xl\:z-999{z-index:999!important}.xl\:z-auto{z-index:auto!important}.xl\:z-max{z-index:2147483647!important}.xl\:focus-within\:z-0:focus-within{z-index:0!important}.xl\:focus-within\:z-10:focus-within{z-index:10!important}.xl\:focus-within\:z-20:focus-within{z-index:20!important}.xl\:focus-within\:z-30:focus-within{z-index:30!important}.xl\:focus-within\:z-40:focus-within{z-index:40!important}.xl\:focus-within\:z-50:focus-within{z-index:50!important}.xl\:focus-within\:z-999:focus-within{z-index:999!important}.xl\:focus-within\:z-auto:focus-within{z-index:auto!important}.xl\:focus-within\:z-max:focus-within{z-index:2147483647!important}.xl\:focus\:z-0:focus{z-index:0!important}.xl\:focus\:z-10:focus{z-index:10!important}.xl\:focus\:z-20:focus{z-index:20!important}.xl\:focus\:z-30:focus{z-index:30!important}.xl\:focus\:z-40:focus{z-index:40!important}.xl\:focus\:z-50:focus{z-index:50!important}.xl\:focus\:z-999:focus{z-index:999!important}.xl\:focus\:z-auto:focus{z-index:auto!important}.xl\:focus\:z-max:focus{z-index:2147483647!important}.xl\:gap-0{grid-gap:0!important;gap:0!important}.xl\:gap-1{grid-gap:.25rem!important;gap:.25rem!important}.xl\:gap-2{grid-gap:.5rem!important;gap:.5rem!important}.xl\:gap-3{grid-gap:.75rem!important;gap:.75rem!important}.xl\:gap-4{grid-gap:1rem!important;gap:1rem!important}.xl\:gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.xl\:gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.xl\:gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.xl\:gap-8{grid-gap:2rem!important;gap:2rem!important}.xl\:gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.xl\:gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.xl\:gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.xl\:gap-12{grid-gap:3rem!important;gap:3rem!important}.xl\:gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.xl\:gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.xl\:gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.xl\:gap-16{grid-gap:4rem!important;gap:4rem!important}.xl\:gap-20{grid-gap:5rem!important;gap:5rem!important}.xl\:gap-24{grid-gap:6rem!important;gap:6rem!important}.xl\:gap-28{grid-gap:7rem!important;gap:7rem!important}.xl\:gap-32{grid-gap:8rem!important;gap:8rem!important}.xl\:gap-36{grid-gap:9rem!important;gap:9rem!important}.xl\:gap-40{grid-gap:10rem!important;gap:10rem!important}.xl\:gap-48{grid-gap:12rem!important;gap:12rem!important}.xl\:gap-56{grid-gap:14rem!important;gap:14rem!important}.xl\:gap-60{grid-gap:15rem!important;gap:15rem!important}.xl\:gap-64{grid-gap:16rem!important;gap:16rem!important}.xl\:gap-72{grid-gap:18rem!important;gap:18rem!important}.xl\:gap-80{grid-gap:20rem!important;gap:20rem!important}.xl\:gap-96{grid-gap:24rem!important;gap:24rem!important}.xl\:gap-px{grid-gap:1px!important;gap:1px!important}.xl\:gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.xl\:gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.xl\:gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.xl\:gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.xl\:gap-1\/2{grid-gap:50%!important;gap:50%!important}.xl\:gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.xl\:gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.xl\:gap-1\/4{grid-gap:25%!important;gap:25%!important}.xl\:gap-2\/4{grid-gap:50%!important;gap:50%!important}.xl\:gap-3\/4{grid-gap:75%!important;gap:75%!important}.xl\:gap-1\/5{grid-gap:20%!important;gap:20%!important}.xl\:gap-2\/5{grid-gap:40%!important;gap:40%!important}.xl\:gap-3\/5{grid-gap:60%!important;gap:60%!important}.xl\:gap-4\/5{grid-gap:80%!important;gap:80%!important}.xl\:gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.xl\:gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.xl\:gap-3\/6{grid-gap:50%!important;gap:50%!important}.xl\:gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.xl\:gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.xl\:gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.xl\:gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.xl\:gap-3\/12{grid-gap:25%!important;gap:25%!important}.xl\:gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.xl\:gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.xl\:gap-6\/12{grid-gap:50%!important;gap:50%!important}.xl\:gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.xl\:gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.xl\:gap-9\/12{grid-gap:75%!important;gap:75%!important}.xl\:gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.xl\:gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.xl\:gap-full{grid-gap:100%!important;gap:100%!important}.xl\:gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.xl\:gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.xl\:gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.xl\:gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.xl\:gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.xl\:gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.xl\:gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.xl\:gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.xl\:gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.xl\:gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.xl\:gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.xl\:gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.xl\:gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.xl\:gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.xl\:gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.xl\:gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.xl\:gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.xl\:gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.xl\:gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.xl\:gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.xl\:gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.xl\:gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.xl\:gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.xl\:gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.xl\:gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.xl\:gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.xl\:gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.xl\:gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.xl\:gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.xl\:gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.xl\:gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.xl\:gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.xl\:gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.xl\:gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.xl\:gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.xl\:gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.xl\:gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.xl\:gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.xl\:gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.xl\:gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.xl\:gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.xl\:gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.xl\:gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.xl\:gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.xl\:gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.xl\:gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.xl\:gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.xl\:gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.xl\:gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.xl\:gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.xl\:gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.xl\:gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.xl\:gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.xl\:gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.xl\:gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.xl\:gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.xl\:gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.xl\:gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.xl\:gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.xl\:gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.xl\:gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.xl\:gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.xl\:gap-y-0{grid-row-gap:0!important;row-gap:0!important}.xl\:gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.xl\:gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.xl\:gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.xl\:gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.xl\:gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.xl\:gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.xl\:gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.xl\:gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.xl\:gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.xl\:gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.xl\:gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.xl\:gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.xl\:gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.xl\:gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.xl\:gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.xl\:gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.xl\:gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.xl\:gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.xl\:gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.xl\:gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.xl\:gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.xl\:gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.xl\:gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.xl\:gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.xl\:gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.xl\:gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.xl\:gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.xl\:gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.xl\:gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.xl\:gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.xl\:gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.xl\:gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.xl\:gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.xl\:gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.xl\:gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.xl\:gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.xl\:gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.xl\:gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.xl\:gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.xl\:gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.xl\:gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.xl\:gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.xl\:gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.xl\:gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.xl\:gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.xl\:gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.xl\:gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.xl\:gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.xl\:gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.xl\:gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.xl\:gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.xl\:gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.xl\:gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.xl\:gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.xl\:gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.xl\:gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.xl\:gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.xl\:gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.xl\:gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.xl\:gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.xl\:gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.xl\:grid-flow-row{grid-auto-flow:row!important}.xl\:grid-flow-col{grid-auto-flow:column!important}.xl\:grid-flow-row-dense{grid-auto-flow:row dense!important}.xl\:grid-flow-col-dense{grid-auto-flow:column dense!important}.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.xl\:grid-cols-none{grid-template-columns:none!important}.xl\:auto-cols-auto{grid-auto-columns:auto!important}.xl\:auto-cols-min{grid-auto-columns:min-content!important}.xl\:auto-cols-max{grid-auto-columns:max-content!important}.xl\:auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.xl\:col-auto{grid-column:auto!important}.xl\:col-span-1{grid-column:span 1/span 1!important}.xl\:col-span-2{grid-column:span 2/span 2!important}.xl\:col-span-3{grid-column:span 3/span 3!important}.xl\:col-span-4{grid-column:span 4/span 4!important}.xl\:col-span-5{grid-column:span 5/span 5!important}.xl\:col-span-6{grid-column:span 6/span 6!important}.xl\:col-span-7{grid-column:span 7/span 7!important}.xl\:col-span-8{grid-column:span 8/span 8!important}.xl\:col-span-9{grid-column:span 9/span 9!important}.xl\:col-span-10{grid-column:span 10/span 10!important}.xl\:col-span-11{grid-column:span 11/span 11!important}.xl\:col-span-12{grid-column:span 12/span 12!important}.xl\:col-span-full{grid-column:1/-1!important}.xl\:col-start-1{grid-column-start:1!important}.xl\:col-start-2{grid-column-start:2!important}.xl\:col-start-3{grid-column-start:3!important}.xl\:col-start-4{grid-column-start:4!important}.xl\:col-start-5{grid-column-start:5!important}.xl\:col-start-6{grid-column-start:6!important}.xl\:col-start-7{grid-column-start:7!important}.xl\:col-start-8{grid-column-start:8!important}.xl\:col-start-9{grid-column-start:9!important}.xl\:col-start-10{grid-column-start:10!important}.xl\:col-start-11{grid-column-start:11!important}.xl\:col-start-12{grid-column-start:12!important}.xl\:col-start-13{grid-column-start:13!important}.xl\:col-start-auto{grid-column-start:auto!important}.xl\:col-end-1{grid-column-end:1!important}.xl\:col-end-2{grid-column-end:2!important}.xl\:col-end-3{grid-column-end:3!important}.xl\:col-end-4{grid-column-end:4!important}.xl\:col-end-5{grid-column-end:5!important}.xl\:col-end-6{grid-column-end:6!important}.xl\:col-end-7{grid-column-end:7!important}.xl\:col-end-8{grid-column-end:8!important}.xl\:col-end-9{grid-column-end:9!important}.xl\:col-end-10{grid-column-end:10!important}.xl\:col-end-11{grid-column-end:11!important}.xl\:col-end-12{grid-column-end:12!important}.xl\:col-end-13{grid-column-end:13!important}.xl\:col-end-auto{grid-column-end:auto!important}.xl\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.xl\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.xl\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.xl\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.xl\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.xl\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.xl\:grid-rows-none{grid-template-rows:none!important}.xl\:auto-rows-auto{grid-auto-rows:auto!important}.xl\:auto-rows-min{grid-auto-rows:min-content!important}.xl\:auto-rows-max{grid-auto-rows:max-content!important}.xl\:auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.xl\:row-auto{grid-row:auto!important}.xl\:row-span-1{grid-row:span 1/span 1!important}.xl\:row-span-2{grid-row:span 2/span 2!important}.xl\:row-span-3{grid-row:span 3/span 3!important}.xl\:row-span-4{grid-row:span 4/span 4!important}.xl\:row-span-5{grid-row:span 5/span 5!important}.xl\:row-span-6{grid-row:span 6/span 6!important}.xl\:row-span-full{grid-row:1/-1!important}.xl\:row-start-1{grid-row-start:1!important}.xl\:row-start-2{grid-row-start:2!important}.xl\:row-start-3{grid-row-start:3!important}.xl\:row-start-4{grid-row-start:4!important}.xl\:row-start-5{grid-row-start:5!important}.xl\:row-start-6{grid-row-start:6!important}.xl\:row-start-7{grid-row-start:7!important}.xl\:row-start-auto{grid-row-start:auto!important}.xl\:row-end-1{grid-row-end:1!important}.xl\:row-end-2{grid-row-end:2!important}.xl\:row-end-3{grid-row-end:3!important}.xl\:row-end-4{grid-row-end:4!important}.xl\:row-end-5{grid-row-end:5!important}.xl\:row-end-6{grid-row-end:6!important}.xl\:row-end-7{grid-row-end:7!important}.xl\:row-end-auto{grid-row-end:auto!important}.xl\:transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.xl\:transform-none{transform:none!important}.xl\:origin-center{transform-origin:center!important}.xl\:origin-top{transform-origin:top!important}.xl\:origin-top-right{transform-origin:top right!important}.xl\:origin-right{transform-origin:right!important}.xl\:origin-bottom-right{transform-origin:bottom right!important}.xl\:origin-bottom{transform-origin:bottom!important}.xl\:origin-bottom-left{transform-origin:bottom left!important}.xl\:origin-left{transform-origin:left!important}.xl\:origin-top-left{transform-origin:top left!important}.xl\:scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.xl\:scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.xl\:scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.xl\:scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.xl\:scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.xl\:scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.xl\:scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.xl\:scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.xl\:scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.xl\:scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.xl\:scale-x-0{--transform-scale-x:0!important}.xl\:scale-x-50{--transform-scale-x:.5!important}.xl\:scale-x-75{--transform-scale-x:.75!important}.xl\:scale-x-90{--transform-scale-x:.9!important}.xl\:scale-x-95{--transform-scale-x:.95!important}.xl\:scale-x-100{--transform-scale-x:1!important}.xl\:scale-x-105{--transform-scale-x:1.05!important}.xl\:scale-x-110{--transform-scale-x:1.1!important}.xl\:scale-x-125{--transform-scale-x:1.25!important}.xl\:scale-x-150{--transform-scale-x:1.5!important}.xl\:scale-y-0{--transform-scale-y:0!important}.xl\:scale-y-50{--transform-scale-y:.5!important}.xl\:scale-y-75{--transform-scale-y:.75!important}.xl\:scale-y-90{--transform-scale-y:.9!important}.xl\:scale-y-95{--transform-scale-y:.95!important}.xl\:scale-y-100{--transform-scale-y:1!important}.xl\:scale-y-105{--transform-scale-y:1.05!important}.xl\:scale-y-110{--transform-scale-y:1.1!important}.xl\:scale-y-125{--transform-scale-y:1.25!important}.xl\:scale-y-150{--transform-scale-y:1.5!important}.xl\:hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.xl\:hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.xl\:hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.xl\:hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.xl\:hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.xl\:hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.xl\:hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.xl\:hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.xl\:hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.xl\:hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.xl\:hover\:scale-x-0:hover{--transform-scale-x:0!important}.xl\:hover\:scale-x-50:hover{--transform-scale-x:.5!important}.xl\:hover\:scale-x-75:hover{--transform-scale-x:.75!important}.xl\:hover\:scale-x-90:hover{--transform-scale-x:.9!important}.xl\:hover\:scale-x-95:hover{--transform-scale-x:.95!important}.xl\:hover\:scale-x-100:hover{--transform-scale-x:1!important}.xl\:hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.xl\:hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.xl\:hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.xl\:hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.xl\:hover\:scale-y-0:hover{--transform-scale-y:0!important}.xl\:hover\:scale-y-50:hover{--transform-scale-y:.5!important}.xl\:hover\:scale-y-75:hover{--transform-scale-y:.75!important}.xl\:hover\:scale-y-90:hover{--transform-scale-y:.9!important}.xl\:hover\:scale-y-95:hover{--transform-scale-y:.95!important}.xl\:hover\:scale-y-100:hover{--transform-scale-y:1!important}.xl\:hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.xl\:hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.xl\:hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.xl\:hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.xl\:focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.xl\:focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.xl\:focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.xl\:focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.xl\:focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.xl\:focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.xl\:focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.xl\:focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.xl\:focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.xl\:focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.xl\:focus\:scale-x-0:focus{--transform-scale-x:0!important}.xl\:focus\:scale-x-50:focus{--transform-scale-x:.5!important}.xl\:focus\:scale-x-75:focus{--transform-scale-x:.75!important}.xl\:focus\:scale-x-90:focus{--transform-scale-x:.9!important}.xl\:focus\:scale-x-95:focus{--transform-scale-x:.95!important}.xl\:focus\:scale-x-100:focus{--transform-scale-x:1!important}.xl\:focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.xl\:focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.xl\:focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.xl\:focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.xl\:focus\:scale-y-0:focus{--transform-scale-y:0!important}.xl\:focus\:scale-y-50:focus{--transform-scale-y:.5!important}.xl\:focus\:scale-y-75:focus{--transform-scale-y:.75!important}.xl\:focus\:scale-y-90:focus{--transform-scale-y:.9!important}.xl\:focus\:scale-y-95:focus{--transform-scale-y:.95!important}.xl\:focus\:scale-y-100:focus{--transform-scale-y:1!important}.xl\:focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.xl\:focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.xl\:focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.xl\:focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.xl\:rotate-0{--transform-rotate:0!important}.xl\:rotate-1{--transform-rotate:1deg!important}.xl\:rotate-2{--transform-rotate:2deg!important}.xl\:rotate-3{--transform-rotate:3deg!important}.xl\:rotate-6{--transform-rotate:6deg!important}.xl\:rotate-12{--transform-rotate:12deg!important}.xl\:rotate-45{--transform-rotate:45deg!important}.xl\:rotate-90{--transform-rotate:90deg!important}.xl\:rotate-180{--transform-rotate:180deg!important}.xl\:-rotate-180{--transform-rotate:-180deg!important}.xl\:-rotate-90{--transform-rotate:-90deg!important}.xl\:-rotate-45{--transform-rotate:-45deg!important}.xl\:-rotate-12{--transform-rotate:-12deg!important}.xl\:-rotate-6{--transform-rotate:-6deg!important}.xl\:-rotate-3{--transform-rotate:-3deg!important}.xl\:-rotate-2{--transform-rotate:-2deg!important}.xl\:-rotate-1{--transform-rotate:-1deg!important}.xl\:hover\:rotate-0:hover{--transform-rotate:0!important}.xl\:hover\:rotate-1:hover{--transform-rotate:1deg!important}.xl\:hover\:rotate-2:hover{--transform-rotate:2deg!important}.xl\:hover\:rotate-3:hover{--transform-rotate:3deg!important}.xl\:hover\:rotate-6:hover{--transform-rotate:6deg!important}.xl\:hover\:rotate-12:hover{--transform-rotate:12deg!important}.xl\:hover\:rotate-45:hover{--transform-rotate:45deg!important}.xl\:hover\:rotate-90:hover{--transform-rotate:90deg!important}.xl\:hover\:rotate-180:hover{--transform-rotate:180deg!important}.xl\:hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.xl\:hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.xl\:hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.xl\:hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.xl\:hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.xl\:hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.xl\:hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.xl\:hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.xl\:focus\:rotate-0:focus{--transform-rotate:0!important}.xl\:focus\:rotate-1:focus{--transform-rotate:1deg!important}.xl\:focus\:rotate-2:focus{--transform-rotate:2deg!important}.xl\:focus\:rotate-3:focus{--transform-rotate:3deg!important}.xl\:focus\:rotate-6:focus{--transform-rotate:6deg!important}.xl\:focus\:rotate-12:focus{--transform-rotate:12deg!important}.xl\:focus\:rotate-45:focus{--transform-rotate:45deg!important}.xl\:focus\:rotate-90:focus{--transform-rotate:90deg!important}.xl\:focus\:rotate-180:focus{--transform-rotate:180deg!important}.xl\:focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.xl\:focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.xl\:focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.xl\:focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.xl\:focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.xl\:focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.xl\:focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.xl\:focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.xl\:translate-x-0{--transform-translate-x:0!important}.xl\:translate-x-1{--transform-translate-x:0.25rem!important}.xl\:translate-x-2{--transform-translate-x:0.5rem!important}.xl\:translate-x-3{--transform-translate-x:0.75rem!important}.xl\:translate-x-4{--transform-translate-x:1rem!important}.xl\:translate-x-5{--transform-translate-x:1.25rem!important}.xl\:translate-x-6{--transform-translate-x:1.5rem!important}.xl\:translate-x-7{--transform-translate-x:1.75rem!important}.xl\:translate-x-8{--transform-translate-x:2rem!important}.xl\:translate-x-9{--transform-translate-x:2.25rem!important}.xl\:translate-x-10{--transform-translate-x:2.5rem!important}.xl\:translate-x-11{--transform-translate-x:2.75rem!important}.xl\:translate-x-12{--transform-translate-x:3rem!important}.xl\:translate-x-13{--transform-translate-x:3.25rem!important}.xl\:translate-x-14{--transform-translate-x:3.5rem!important}.xl\:translate-x-15{--transform-translate-x:3.75rem!important}.xl\:translate-x-16{--transform-translate-x:4rem!important}.xl\:translate-x-20{--transform-translate-x:5rem!important}.xl\:translate-x-24{--transform-translate-x:6rem!important}.xl\:translate-x-28{--transform-translate-x:7rem!important}.xl\:translate-x-32{--transform-translate-x:8rem!important}.xl\:translate-x-36{--transform-translate-x:9rem!important}.xl\:translate-x-40{--transform-translate-x:10rem!important}.xl\:translate-x-48{--transform-translate-x:12rem!important}.xl\:translate-x-56{--transform-translate-x:14rem!important}.xl\:translate-x-60{--transform-translate-x:15rem!important}.xl\:translate-x-64{--transform-translate-x:16rem!important}.xl\:translate-x-72{--transform-translate-x:18rem!important}.xl\:translate-x-80{--transform-translate-x:20rem!important}.xl\:translate-x-96{--transform-translate-x:24rem!important}.xl\:translate-x-px{--transform-translate-x:1px!important}.xl\:translate-x-0\.5{--transform-translate-x:0.125rem!important}.xl\:translate-x-1\.5{--transform-translate-x:0.375rem!important}.xl\:translate-x-2\.5{--transform-translate-x:0.625rem!important}.xl\:translate-x-3\.5{--transform-translate-x:0.875rem!important}.xl\:translate-x-1\/2{--transform-translate-x:50%!important}.xl\:translate-x-1\/3{--transform-translate-x:33.333333%!important}.xl\:translate-x-2\/3{--transform-translate-x:66.666667%!important}.xl\:translate-x-1\/4{--transform-translate-x:25%!important}.xl\:translate-x-2\/4{--transform-translate-x:50%!important}.xl\:translate-x-3\/4{--transform-translate-x:75%!important}.xl\:translate-x-1\/5{--transform-translate-x:20%!important}.xl\:translate-x-2\/5{--transform-translate-x:40%!important}.xl\:translate-x-3\/5{--transform-translate-x:60%!important}.xl\:translate-x-4\/5{--transform-translate-x:80%!important}.xl\:translate-x-1\/6{--transform-translate-x:16.666667%!important}.xl\:translate-x-2\/6{--transform-translate-x:33.333333%!important}.xl\:translate-x-3\/6{--transform-translate-x:50%!important}.xl\:translate-x-4\/6{--transform-translate-x:66.666667%!important}.xl\:translate-x-5\/6{--transform-translate-x:83.333333%!important}.xl\:translate-x-1\/12{--transform-translate-x:8.333333%!important}.xl\:translate-x-2\/12{--transform-translate-x:16.666667%!important}.xl\:translate-x-3\/12{--transform-translate-x:25%!important}.xl\:translate-x-4\/12{--transform-translate-x:33.333333%!important}.xl\:translate-x-5\/12{--transform-translate-x:41.666667%!important}.xl\:translate-x-6\/12{--transform-translate-x:50%!important}.xl\:translate-x-7\/12{--transform-translate-x:58.333333%!important}.xl\:translate-x-8\/12{--transform-translate-x:66.666667%!important}.xl\:translate-x-9\/12{--transform-translate-x:75%!important}.xl\:translate-x-10\/12{--transform-translate-x:83.333333%!important}.xl\:translate-x-11\/12{--transform-translate-x:91.666667%!important}.xl\:translate-x-full{--transform-translate-x:100%!important}.xl\:-translate-x-1{--transform-translate-x:-0.25rem!important}.xl\:-translate-x-2{--transform-translate-x:-0.5rem!important}.xl\:-translate-x-3{--transform-translate-x:-0.75rem!important}.xl\:-translate-x-4{--transform-translate-x:-1rem!important}.xl\:-translate-x-5{--transform-translate-x:-1.25rem!important}.xl\:-translate-x-6{--transform-translate-x:-1.5rem!important}.xl\:-translate-x-7{--transform-translate-x:-1.75rem!important}.xl\:-translate-x-8{--transform-translate-x:-2rem!important}.xl\:-translate-x-9{--transform-translate-x:-2.25rem!important}.xl\:-translate-x-10{--transform-translate-x:-2.5rem!important}.xl\:-translate-x-11{--transform-translate-x:-2.75rem!important}.xl\:-translate-x-12{--transform-translate-x:-3rem!important}.xl\:-translate-x-13{--transform-translate-x:-3.25rem!important}.xl\:-translate-x-14{--transform-translate-x:-3.5rem!important}.xl\:-translate-x-15{--transform-translate-x:-3.75rem!important}.xl\:-translate-x-16{--transform-translate-x:-4rem!important}.xl\:-translate-x-20{--transform-translate-x:-5rem!important}.xl\:-translate-x-24{--transform-translate-x:-6rem!important}.xl\:-translate-x-28{--transform-translate-x:-7rem!important}.xl\:-translate-x-32{--transform-translate-x:-8rem!important}.xl\:-translate-x-36{--transform-translate-x:-9rem!important}.xl\:-translate-x-40{--transform-translate-x:-10rem!important}.xl\:-translate-x-48{--transform-translate-x:-12rem!important}.xl\:-translate-x-56{--transform-translate-x:-14rem!important}.xl\:-translate-x-60{--transform-translate-x:-15rem!important}.xl\:-translate-x-64{--transform-translate-x:-16rem!important}.xl\:-translate-x-72{--transform-translate-x:-18rem!important}.xl\:-translate-x-80{--transform-translate-x:-20rem!important}.xl\:-translate-x-96{--transform-translate-x:-24rem!important}.xl\:-translate-x-px{--transform-translate-x:-1px!important}.xl\:-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.xl\:-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.xl\:-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.xl\:-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.xl\:-translate-x-1\/2{--transform-translate-x:-50%!important}.xl\:-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.xl\:-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.xl\:-translate-x-1\/4{--transform-translate-x:-25%!important}.xl\:-translate-x-2\/4{--transform-translate-x:-50%!important}.xl\:-translate-x-3\/4{--transform-translate-x:-75%!important}.xl\:-translate-x-1\/5{--transform-translate-x:-20%!important}.xl\:-translate-x-2\/5{--transform-translate-x:-40%!important}.xl\:-translate-x-3\/5{--transform-translate-x:-60%!important}.xl\:-translate-x-4\/5{--transform-translate-x:-80%!important}.xl\:-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.xl\:-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.xl\:-translate-x-3\/6{--transform-translate-x:-50%!important}.xl\:-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.xl\:-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.xl\:-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.xl\:-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.xl\:-translate-x-3\/12{--transform-translate-x:-25%!important}.xl\:-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.xl\:-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.xl\:-translate-x-6\/12{--transform-translate-x:-50%!important}.xl\:-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.xl\:-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.xl\:-translate-x-9\/12{--transform-translate-x:-75%!important}.xl\:-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.xl\:-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.xl\:-translate-x-full{--transform-translate-x:-100%!important}.xl\:translate-y-0{--transform-translate-y:0!important}.xl\:translate-y-1{--transform-translate-y:0.25rem!important}.xl\:translate-y-2{--transform-translate-y:0.5rem!important}.xl\:translate-y-3{--transform-translate-y:0.75rem!important}.xl\:translate-y-4{--transform-translate-y:1rem!important}.xl\:translate-y-5{--transform-translate-y:1.25rem!important}.xl\:translate-y-6{--transform-translate-y:1.5rem!important}.xl\:translate-y-7{--transform-translate-y:1.75rem!important}.xl\:translate-y-8{--transform-translate-y:2rem!important}.xl\:translate-y-9{--transform-translate-y:2.25rem!important}.xl\:translate-y-10{--transform-translate-y:2.5rem!important}.xl\:translate-y-11{--transform-translate-y:2.75rem!important}.xl\:translate-y-12{--transform-translate-y:3rem!important}.xl\:translate-y-13{--transform-translate-y:3.25rem!important}.xl\:translate-y-14{--transform-translate-y:3.5rem!important}.xl\:translate-y-15{--transform-translate-y:3.75rem!important}.xl\:translate-y-16{--transform-translate-y:4rem!important}.xl\:translate-y-20{--transform-translate-y:5rem!important}.xl\:translate-y-24{--transform-translate-y:6rem!important}.xl\:translate-y-28{--transform-translate-y:7rem!important}.xl\:translate-y-32{--transform-translate-y:8rem!important}.xl\:translate-y-36{--transform-translate-y:9rem!important}.xl\:translate-y-40{--transform-translate-y:10rem!important}.xl\:translate-y-48{--transform-translate-y:12rem!important}.xl\:translate-y-56{--transform-translate-y:14rem!important}.xl\:translate-y-60{--transform-translate-y:15rem!important}.xl\:translate-y-64{--transform-translate-y:16rem!important}.xl\:translate-y-72{--transform-translate-y:18rem!important}.xl\:translate-y-80{--transform-translate-y:20rem!important}.xl\:translate-y-96{--transform-translate-y:24rem!important}.xl\:translate-y-px{--transform-translate-y:1px!important}.xl\:translate-y-0\.5{--transform-translate-y:0.125rem!important}.xl\:translate-y-1\.5{--transform-translate-y:0.375rem!important}.xl\:translate-y-2\.5{--transform-translate-y:0.625rem!important}.xl\:translate-y-3\.5{--transform-translate-y:0.875rem!important}.xl\:translate-y-1\/2{--transform-translate-y:50%!important}.xl\:translate-y-1\/3{--transform-translate-y:33.333333%!important}.xl\:translate-y-2\/3{--transform-translate-y:66.666667%!important}.xl\:translate-y-1\/4{--transform-translate-y:25%!important}.xl\:translate-y-2\/4{--transform-translate-y:50%!important}.xl\:translate-y-3\/4{--transform-translate-y:75%!important}.xl\:translate-y-1\/5{--transform-translate-y:20%!important}.xl\:translate-y-2\/5{--transform-translate-y:40%!important}.xl\:translate-y-3\/5{--transform-translate-y:60%!important}.xl\:translate-y-4\/5{--transform-translate-y:80%!important}.xl\:translate-y-1\/6{--transform-translate-y:16.666667%!important}.xl\:translate-y-2\/6{--transform-translate-y:33.333333%!important}.xl\:translate-y-3\/6{--transform-translate-y:50%!important}.xl\:translate-y-4\/6{--transform-translate-y:66.666667%!important}.xl\:translate-y-5\/6{--transform-translate-y:83.333333%!important}.xl\:translate-y-1\/12{--transform-translate-y:8.333333%!important}.xl\:translate-y-2\/12{--transform-translate-y:16.666667%!important}.xl\:translate-y-3\/12{--transform-translate-y:25%!important}.xl\:translate-y-4\/12{--transform-translate-y:33.333333%!important}.xl\:translate-y-5\/12{--transform-translate-y:41.666667%!important}.xl\:translate-y-6\/12{--transform-translate-y:50%!important}.xl\:translate-y-7\/12{--transform-translate-y:58.333333%!important}.xl\:translate-y-8\/12{--transform-translate-y:66.666667%!important}.xl\:translate-y-9\/12{--transform-translate-y:75%!important}.xl\:translate-y-10\/12{--transform-translate-y:83.333333%!important}.xl\:translate-y-11\/12{--transform-translate-y:91.666667%!important}.xl\:translate-y-full{--transform-translate-y:100%!important}.xl\:-translate-y-1{--transform-translate-y:-0.25rem!important}.xl\:-translate-y-2{--transform-translate-y:-0.5rem!important}.xl\:-translate-y-3{--transform-translate-y:-0.75rem!important}.xl\:-translate-y-4{--transform-translate-y:-1rem!important}.xl\:-translate-y-5{--transform-translate-y:-1.25rem!important}.xl\:-translate-y-6{--transform-translate-y:-1.5rem!important}.xl\:-translate-y-7{--transform-translate-y:-1.75rem!important}.xl\:-translate-y-8{--transform-translate-y:-2rem!important}.xl\:-translate-y-9{--transform-translate-y:-2.25rem!important}.xl\:-translate-y-10{--transform-translate-y:-2.5rem!important}.xl\:-translate-y-11{--transform-translate-y:-2.75rem!important}.xl\:-translate-y-12{--transform-translate-y:-3rem!important}.xl\:-translate-y-13{--transform-translate-y:-3.25rem!important}.xl\:-translate-y-14{--transform-translate-y:-3.5rem!important}.xl\:-translate-y-15{--transform-translate-y:-3.75rem!important}.xl\:-translate-y-16{--transform-translate-y:-4rem!important}.xl\:-translate-y-20{--transform-translate-y:-5rem!important}.xl\:-translate-y-24{--transform-translate-y:-6rem!important}.xl\:-translate-y-28{--transform-translate-y:-7rem!important}.xl\:-translate-y-32{--transform-translate-y:-8rem!important}.xl\:-translate-y-36{--transform-translate-y:-9rem!important}.xl\:-translate-y-40{--transform-translate-y:-10rem!important}.xl\:-translate-y-48{--transform-translate-y:-12rem!important}.xl\:-translate-y-56{--transform-translate-y:-14rem!important}.xl\:-translate-y-60{--transform-translate-y:-15rem!important}.xl\:-translate-y-64{--transform-translate-y:-16rem!important}.xl\:-translate-y-72{--transform-translate-y:-18rem!important}.xl\:-translate-y-80{--transform-translate-y:-20rem!important}.xl\:-translate-y-96{--transform-translate-y:-24rem!important}.xl\:-translate-y-px{--transform-translate-y:-1px!important}.xl\:-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.xl\:-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.xl\:-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.xl\:-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.xl\:-translate-y-1\/2{--transform-translate-y:-50%!important}.xl\:-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.xl\:-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.xl\:-translate-y-1\/4{--transform-translate-y:-25%!important}.xl\:-translate-y-2\/4{--transform-translate-y:-50%!important}.xl\:-translate-y-3\/4{--transform-translate-y:-75%!important}.xl\:-translate-y-1\/5{--transform-translate-y:-20%!important}.xl\:-translate-y-2\/5{--transform-translate-y:-40%!important}.xl\:-translate-y-3\/5{--transform-translate-y:-60%!important}.xl\:-translate-y-4\/5{--transform-translate-y:-80%!important}.xl\:-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.xl\:-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.xl\:-translate-y-3\/6{--transform-translate-y:-50%!important}.xl\:-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.xl\:-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.xl\:-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.xl\:-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.xl\:-translate-y-3\/12{--transform-translate-y:-25%!important}.xl\:-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.xl\:-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.xl\:-translate-y-6\/12{--transform-translate-y:-50%!important}.xl\:-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.xl\:-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.xl\:-translate-y-9\/12{--transform-translate-y:-75%!important}.xl\:-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.xl\:-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.xl\:-translate-y-full{--transform-translate-y:-100%!important}.xl\:hover\:translate-x-0:hover{--transform-translate-x:0!important}.xl\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.xl\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.xl\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.xl\:hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.xl\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.xl\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.xl\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.xl\:hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.xl\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.xl\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.xl\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.xl\:hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.xl\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.xl\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.xl\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.xl\:hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.xl\:hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.xl\:hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.xl\:hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.xl\:hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.xl\:hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.xl\:hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.xl\:hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.xl\:hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.xl\:hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.xl\:hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.xl\:hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.xl\:hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.xl\:hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.xl\:hover\:translate-x-px:hover{--transform-translate-x:1px!important}.xl\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.xl\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.xl\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.xl\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.xl\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.xl\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.xl\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.xl\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.xl\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.xl\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.xl\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.xl\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.xl\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.xl\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.xl\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.xl\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.xl\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.xl\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.xl\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.xl\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.xl\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.xl\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.xl\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.xl\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.xl\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.xl\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.xl\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.xl\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.xl\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.xl\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.xl\:hover\:translate-x-full:hover{--transform-translate-x:100%!important}.xl\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.xl\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.xl\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.xl\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.xl\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.xl\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.xl\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.xl\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.xl\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.xl\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.xl\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.xl\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.xl\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.xl\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.xl\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.xl\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.xl\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.xl\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.xl\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.xl\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.xl\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.xl\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.xl\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.xl\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.xl\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.xl\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.xl\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.xl\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.xl\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.xl\:hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.xl\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.xl\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.xl\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.xl\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.xl\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.xl\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.xl\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.xl\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.xl\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.xl\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.xl\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.xl\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.xl\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.xl\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.xl\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.xl\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.xl\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.xl\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.xl\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.xl\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.xl\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.xl\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.xl\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.xl\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.xl\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.xl\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.xl\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.xl\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.xl\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.xl\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.xl\:hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.xl\:hover\:translate-y-0:hover{--transform-translate-y:0!important}.xl\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.xl\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.xl\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.xl\:hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.xl\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.xl\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.xl\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.xl\:hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.xl\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.xl\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.xl\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.xl\:hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.xl\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.xl\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.xl\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.xl\:hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.xl\:hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.xl\:hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.xl\:hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.xl\:hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.xl\:hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.xl\:hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.xl\:hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.xl\:hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.xl\:hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.xl\:hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.xl\:hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.xl\:hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.xl\:hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.xl\:hover\:translate-y-px:hover{--transform-translate-y:1px!important}.xl\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.xl\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.xl\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.xl\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.xl\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.xl\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.xl\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.xl\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.xl\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.xl\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.xl\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.xl\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.xl\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.xl\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.xl\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.xl\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.xl\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.xl\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.xl\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.xl\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.xl\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.xl\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.xl\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.xl\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.xl\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.xl\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.xl\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.xl\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.xl\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.xl\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.xl\:hover\:translate-y-full:hover{--transform-translate-y:100%!important}.xl\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.xl\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.xl\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.xl\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.xl\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.xl\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.xl\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.xl\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.xl\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.xl\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.xl\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.xl\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.xl\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.xl\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.xl\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.xl\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.xl\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.xl\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.xl\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.xl\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.xl\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.xl\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.xl\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.xl\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.xl\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.xl\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.xl\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.xl\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.xl\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.xl\:hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.xl\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.xl\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.xl\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.xl\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.xl\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.xl\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.xl\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.xl\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.xl\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.xl\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.xl\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.xl\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.xl\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.xl\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.xl\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.xl\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.xl\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.xl\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.xl\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.xl\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.xl\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.xl\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.xl\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.xl\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.xl\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.xl\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.xl\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.xl\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.xl\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.xl\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.xl\:hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.xl\:focus\:translate-x-0:focus{--transform-translate-x:0!important}.xl\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.xl\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.xl\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.xl\:focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.xl\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.xl\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.xl\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.xl\:focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.xl\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.xl\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.xl\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.xl\:focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.xl\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.xl\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.xl\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.xl\:focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.xl\:focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.xl\:focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.xl\:focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.xl\:focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.xl\:focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.xl\:focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.xl\:focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.xl\:focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.xl\:focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.xl\:focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.xl\:focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.xl\:focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.xl\:focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.xl\:focus\:translate-x-px:focus{--transform-translate-x:1px!important}.xl\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.xl\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.xl\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.xl\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.xl\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.xl\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.xl\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.xl\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.xl\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.xl\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.xl\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.xl\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.xl\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.xl\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.xl\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.xl\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.xl\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.xl\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.xl\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.xl\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.xl\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.xl\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.xl\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.xl\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.xl\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.xl\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.xl\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.xl\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.xl\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.xl\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.xl\:focus\:translate-x-full:focus{--transform-translate-x:100%!important}.xl\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.xl\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.xl\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.xl\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.xl\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.xl\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.xl\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.xl\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.xl\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.xl\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.xl\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.xl\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.xl\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.xl\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.xl\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.xl\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.xl\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.xl\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.xl\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.xl\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.xl\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.xl\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.xl\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.xl\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.xl\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.xl\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.xl\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.xl\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.xl\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.xl\:focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.xl\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.xl\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.xl\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.xl\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.xl\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.xl\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.xl\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.xl\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.xl\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.xl\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.xl\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.xl\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.xl\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.xl\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.xl\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.xl\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.xl\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.xl\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.xl\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.xl\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.xl\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.xl\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.xl\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.xl\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.xl\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.xl\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.xl\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.xl\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.xl\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.xl\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.xl\:focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.xl\:focus\:translate-y-0:focus{--transform-translate-y:0!important}.xl\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.xl\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.xl\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.xl\:focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.xl\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.xl\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.xl\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.xl\:focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.xl\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.xl\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.xl\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.xl\:focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.xl\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.xl\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.xl\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.xl\:focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.xl\:focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.xl\:focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.xl\:focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.xl\:focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.xl\:focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.xl\:focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.xl\:focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.xl\:focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.xl\:focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.xl\:focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.xl\:focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.xl\:focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.xl\:focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.xl\:focus\:translate-y-px:focus{--transform-translate-y:1px!important}.xl\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.xl\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.xl\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.xl\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.xl\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.xl\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.xl\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.xl\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.xl\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.xl\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.xl\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.xl\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.xl\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.xl\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.xl\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.xl\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.xl\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.xl\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.xl\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.xl\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.xl\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.xl\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.xl\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.xl\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.xl\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.xl\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.xl\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.xl\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.xl\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.xl\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.xl\:focus\:translate-y-full:focus{--transform-translate-y:100%!important}.xl\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.xl\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.xl\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.xl\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.xl\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.xl\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.xl\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.xl\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.xl\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.xl\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.xl\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.xl\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.xl\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.xl\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.xl\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.xl\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.xl\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.xl\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.xl\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.xl\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.xl\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.xl\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.xl\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.xl\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.xl\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.xl\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.xl\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.xl\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.xl\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.xl\:focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.xl\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.xl\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.xl\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.xl\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.xl\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.xl\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.xl\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.xl\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.xl\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.xl\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.xl\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.xl\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.xl\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.xl\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.xl\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.xl\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.xl\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.xl\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.xl\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.xl\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.xl\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.xl\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.xl\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.xl\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.xl\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.xl\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.xl\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.xl\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.xl\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.xl\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.xl\:focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.xl\:skew-x-0{--transform-skew-x:0!important}.xl\:skew-x-1{--transform-skew-x:1deg!important}.xl\:skew-x-2{--transform-skew-x:2deg!important}.xl\:skew-x-3{--transform-skew-x:3deg!important}.xl\:skew-x-6{--transform-skew-x:6deg!important}.xl\:skew-x-12{--transform-skew-x:12deg!important}.xl\:-skew-x-12{--transform-skew-x:-12deg!important}.xl\:-skew-x-6{--transform-skew-x:-6deg!important}.xl\:-skew-x-3{--transform-skew-x:-3deg!important}.xl\:-skew-x-2{--transform-skew-x:-2deg!important}.xl\:-skew-x-1{--transform-skew-x:-1deg!important}.xl\:skew-y-0{--transform-skew-y:0!important}.xl\:skew-y-1{--transform-skew-y:1deg!important}.xl\:skew-y-2{--transform-skew-y:2deg!important}.xl\:skew-y-3{--transform-skew-y:3deg!important}.xl\:skew-y-6{--transform-skew-y:6deg!important}.xl\:skew-y-12{--transform-skew-y:12deg!important}.xl\:-skew-y-12{--transform-skew-y:-12deg!important}.xl\:-skew-y-6{--transform-skew-y:-6deg!important}.xl\:-skew-y-3{--transform-skew-y:-3deg!important}.xl\:-skew-y-2{--transform-skew-y:-2deg!important}.xl\:-skew-y-1{--transform-skew-y:-1deg!important}.xl\:hover\:skew-x-0:hover{--transform-skew-x:0!important}.xl\:hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.xl\:hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.xl\:hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.xl\:hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.xl\:hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.xl\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.xl\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.xl\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.xl\:hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.xl\:hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.xl\:hover\:skew-y-0:hover{--transform-skew-y:0!important}.xl\:hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.xl\:hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.xl\:hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.xl\:hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.xl\:hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.xl\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.xl\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.xl\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.xl\:hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.xl\:hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.xl\:focus\:skew-x-0:focus{--transform-skew-x:0!important}.xl\:focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.xl\:focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.xl\:focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.xl\:focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.xl\:focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.xl\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.xl\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.xl\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.xl\:focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.xl\:focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.xl\:focus\:skew-y-0:focus{--transform-skew-y:0!important}.xl\:focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.xl\:focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.xl\:focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.xl\:focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.xl\:focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.xl\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.xl\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.xl\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.xl\:focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.xl\:focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.xl\:transition-none{transition-property:none!important}.xl\:transition-all{transition-property:all!important}.xl\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.xl\:transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.xl\:transition-opacity{transition-property:opacity!important}.xl\:transition-shadow{transition-property:box-shadow!important}.xl\:transition-transform{transition-property:transform!important}.xl\:ease-linear{transition-timing-function:linear!important}.xl\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.xl\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.xl\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.xl\:duration-75{transition-duration:75ms!important}.xl\:duration-100{transition-duration:.1s!important}.xl\:duration-150{transition-duration:.15s!important}.xl\:duration-200{transition-duration:.2s!important}.xl\:duration-300{transition-duration:.3s!important}.xl\:duration-500{transition-duration:.5s!important}.xl\:duration-700{transition-duration:.7s!important}.xl\:duration-1000{transition-duration:1s!important}.xl\:duration-2000{transition-duration:2s!important}.xl\:delay-75{transition-delay:75ms!important}.xl\:delay-100{transition-delay:.1s!important}.xl\:delay-150{transition-delay:.15s!important}.xl\:delay-200{transition-delay:.2s!important}.xl\:delay-300{transition-delay:.3s!important}.xl\:delay-500{transition-delay:.5s!important}.xl\:delay-700{transition-delay:.7s!important}.xl\:delay-1000{transition-delay:1s!important}.xl\:animate-none{animation:none!important}.xl\:animate-spin{animation:spin 1s linear infinite!important}.xl\:animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.xl\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.xl\:animate-bounce{animation:bounce 1s infinite!important}}@media (min-width:1400px){.\32xl\:space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.\32xl\:space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.\32xl\:space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.\32xl\:space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.\32xl\:space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.\32xl\:space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.\32xl\:space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.\32xl\:space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.\32xl\:space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.\32xl\:space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.\32xl\:space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.\32xl\:space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.\32xl\:space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.\32xl\:space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.\32xl\:space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.\32xl\:space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.\32xl\:space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.\32xl\:space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.\32xl\:space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.\32xl\:space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.\32xl\:space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.\32xl\:space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.\32xl\:space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.\32xl\:space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.\32xl\:space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.\32xl\:space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.\32xl\:space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.\32xl\:space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.\32xl\:space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.\32xl\:space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.\32xl\:space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.\32xl\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.\32xl\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.\32xl\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.\32xl\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.\32xl\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\32xl\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\32xl\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\32xl\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.\32xl\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\32xl\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.\32xl\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.\32xl\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.\32xl\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.\32xl\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.\32xl\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.\32xl\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\32xl\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\32xl\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\32xl\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.\32xl\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.\32xl\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.\32xl\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.\32xl\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\32xl\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.\32xl\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\32xl\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.\32xl\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\32xl\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.\32xl\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.\32xl\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.\32xl\:space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.\32xl\:space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.\32xl\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.\32xl\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.\32xl\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.\32xl\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.\32xl\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.\32xl\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.\32xl\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.\32xl\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.\32xl\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.\32xl\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.\32xl\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.\32xl\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.\32xl\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.\32xl\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.\32xl\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.\32xl\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.\32xl\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.\32xl\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.\32xl\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.\32xl\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.\32xl\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.\32xl\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.\32xl\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.\32xl\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.\32xl\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.\32xl\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.\32xl\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.\32xl\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.\32xl\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.\32xl\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.\32xl\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.\32xl\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.\32xl\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.\32xl\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.\32xl\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\32xl\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\32xl\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\32xl\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.\32xl\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\32xl\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.\32xl\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.\32xl\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.\32xl\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.\32xl\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.\32xl\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.\32xl\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\32xl\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\32xl\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\32xl\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.\32xl\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.\32xl\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.\32xl\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.\32xl\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\32xl\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.\32xl\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\32xl\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.\32xl\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\32xl\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.\32xl\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.\32xl\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.\32xl\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.\32xl\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.\32xl\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.\32xl\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.\32xl\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.\32xl\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.\32xl\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.\32xl\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.\32xl\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.\32xl\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.\32xl\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.\32xl\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.\32xl\:divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.\32xl\:divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.\32xl\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.\32xl\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.\32xl\:divide-transparent>:not(template)~:not(template){border-color:transparent!important}.\32xl\:divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.\32xl\:divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.\32xl\:divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.\32xl\:divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.\32xl\:divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.\32xl\:divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.\32xl\:divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.\32xl\:divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.\32xl\:divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.\32xl\:divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.\32xl\:divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.\32xl\:divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.\32xl\:divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.\32xl\:divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.\32xl\:divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.\32xl\:divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.\32xl\:divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.\32xl\:divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.\32xl\:divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.\32xl\:divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.\32xl\:divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.\32xl\:divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.\32xl\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.\32xl\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.\32xl\:divide-solid>:not(template)~:not(template){border-style:solid!important}.\32xl\:divide-dashed>:not(template)~:not(template){border-style:dashed!important}.\32xl\:divide-dotted>:not(template)~:not(template){border-style:dotted!important}.\32xl\:divide-double>:not(template)~:not(template){border-style:double!important}.\32xl\:divide-none>:not(template)~:not(template){border-style:none!important}.\32xl\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.\32xl\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.\32xl\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.\32xl\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.\32xl\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.\32xl\:sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.\32xl\:not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.\32xl\:focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.\32xl\:focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.\32xl\:appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.\32xl\:bg-fixed{background-attachment:fixed!important}.\32xl\:bg-local{background-attachment:local!important}.\32xl\:bg-scroll{background-attachment:scroll!important}.\32xl\:bg-clip-border{background-clip:border-box!important}.\32xl\:bg-clip-padding{background-clip:padding-box!important}.\32xl\:bg-clip-content{background-clip:content-box!important}.\32xl\:bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.\32xl\:bg-transparent{background-color:transparent!important}.\32xl\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\32xl\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.\32xl\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\32xl\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.\32xl\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\32xl\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\32xl\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\32xl\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\32xl\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\32xl\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\32xl\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\32xl\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\32xl\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\32xl\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\32xl\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\32xl\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\32xl\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.\32xl\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\32xl\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\32xl\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\32xl\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\32xl\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\32xl\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\32xl\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-transparent{background-color:transparent!important}.group:hover .\32xl\:group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .\32xl\:group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .\32xl\:group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .\32xl\:group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .\32xl\:group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-transparent{background-color:transparent!important}.group:focus .\32xl\:group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .\32xl\:group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .\32xl\:group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .\32xl\:group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .\32xl\:group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\32xl\:hover\:bg-transparent:hover{background-color:transparent!important}.\32xl\:hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\32xl\:hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.\32xl\:hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\32xl\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.\32xl\:hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\32xl\:hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\32xl\:hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\32xl\:hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\32xl\:hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\32xl\:hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\32xl\:hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\32xl\:hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\32xl\:hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\32xl\:hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\32xl\:hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\32xl\:hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\32xl\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.\32xl\:hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\32xl\:hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\32xl\:hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\32xl\:hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\32xl\:hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\32xl\:hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\32xl\:hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\32xl\:focus\:bg-transparent:focus{background-color:transparent!important}.\32xl\:focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\32xl\:focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.\32xl\:focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\32xl\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.\32xl\:focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\32xl\:focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\32xl\:focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\32xl\:focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\32xl\:focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\32xl\:focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\32xl\:focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\32xl\:focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\32xl\:focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\32xl\:focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\32xl\:focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\32xl\:focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\32xl\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.\32xl\:focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\32xl\:focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\32xl\:focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\32xl\:focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\32xl\:focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\32xl\:focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\32xl\:focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\32xl\:active\:bg-transparent:active{background-color:transparent!important}.\32xl\:active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\32xl\:active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.\32xl\:active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\32xl\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.\32xl\:active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\32xl\:active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\32xl\:active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\32xl\:active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\32xl\:active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\32xl\:active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\32xl\:active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\32xl\:active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\32xl\:active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\32xl\:active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\32xl\:active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\32xl\:active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\32xl\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.\32xl\:active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\32xl\:active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\32xl\:active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\32xl\:active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\32xl\:active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\32xl\:active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\32xl\:active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\32xl\:bg-none{background-image:none!important}.\32xl\:bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.\32xl\:bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.\32xl\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.\32xl\:bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.\32xl\:bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.\32xl\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.\32xl\:bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.\32xl\:bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.\32xl\:from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\32xl\:from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\32xl\:from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\32xl\:from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\32xl\:from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\32xl\:from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\32xl\:from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\32xl\:from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\32xl\:from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\32xl\:from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\32xl\:from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\32xl\:from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\32xl\:from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\32xl\:from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\32xl\:from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\32xl\:from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\32xl\:from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\32xl\:from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\32xl\:from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\32xl\:from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\32xl\:via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\32xl\:via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\32xl\:via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\32xl\:via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\32xl\:via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\32xl\:via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\32xl\:via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\32xl\:via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\32xl\:via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\32xl\:via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\32xl\:via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\32xl\:via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\32xl\:via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\32xl\:via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\32xl\:via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\32xl\:via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\32xl\:via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\32xl\:via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\32xl\:via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\32xl\:via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\32xl\:to-transparent{--gradient-to-color:transparent!important}.\32xl\:to-white{--gradient-to-color:#fff!important}.\32xl\:to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\32xl\:to-blackest{--gradient-to-color:#000!important}.\32xl\:to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.\32xl\:to-black{--gradient-to-color:#23292d!important}.\32xl\:to-gray-darkest{--gradient-to-color:#3d4852!important}.\32xl\:to-gray-darker{--gradient-to-color:#606f7b!important}.\32xl\:to-gray-dark{--gradient-to-color:#9ea3a8!important}.\32xl\:to-gray{--gradient-to-color:#b8c2cc!important}.\32xl\:to-gray-light{--gradient-to-color:#dae1e7!important}.\32xl\:to-gray-lighter{--gradient-to-color:#f1f1f1!important}.\32xl\:to-gray-lightest{--gradient-to-color:#f8fafc!important}.\32xl\:to-blue-darkest{--gradient-to-color:#1673a7!important}.\32xl\:to-blue-dark{--gradient-to-color:#0073aa!important}.\32xl\:to-blue{--gradient-to-color:#3188e6!important}.\32xl\:to-blue-light{--gradient-to-color:#a4cafe!important}.\32xl\:to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.\32xl\:to-orange{--gradient-to-color:#dd6923!important}.\32xl\:to-orange-darker{--gradient-to-color:#d5551e!important}.\32xl\:to-orange-darkest{--gradient-to-color:#c9501c!important}.\32xl\:to-red{--gradient-to-color:#e82323!important}.\32xl\:to-green{--gradient-to-color:#46b450!important}.\32xl\:to-yellow-400{--gradient-to-color:#e3a008!important}.\32xl\:to-yellow-50{--gradient-to-color:#fdfdea!important}.\32xl\:hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\32xl\:hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\32xl\:hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\32xl\:hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\32xl\:hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\32xl\:hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\32xl\:hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\32xl\:hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\32xl\:hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\32xl\:hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\32xl\:hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\32xl\:hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\32xl\:hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\32xl\:hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\32xl\:hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\32xl\:hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\32xl\:hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\32xl\:hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\32xl\:hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\32xl\:hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\32xl\:hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\32xl\:hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\32xl\:hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\32xl\:hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\32xl\:hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\32xl\:hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\32xl\:hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\32xl\:hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\32xl\:hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\32xl\:hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\32xl\:hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\32xl\:hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\32xl\:hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\32xl\:hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\32xl\:hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\32xl\:hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\32xl\:hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\32xl\:hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\32xl\:hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\32xl\:hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\32xl\:hover\:to-transparent:hover{--gradient-to-color:transparent!important}.\32xl\:hover\:to-white:hover{--gradient-to-color:#fff!important}.\32xl\:hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\32xl\:hover\:to-blackest:hover{--gradient-to-color:#000!important}.\32xl\:hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.\32xl\:hover\:to-black:hover{--gradient-to-color:#23292d!important}.\32xl\:hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.\32xl\:hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.\32xl\:hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.\32xl\:hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.\32xl\:hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.\32xl\:hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.\32xl\:hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.\32xl\:hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.\32xl\:hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.\32xl\:hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.\32xl\:hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.\32xl\:hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.\32xl\:hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.\32xl\:hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.\32xl\:hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.\32xl\:hover\:to-red:hover{--gradient-to-color:#e82323!important}.\32xl\:hover\:to-green:hover{--gradient-to-color:#46b450!important}.\32xl\:hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.\32xl\:hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.\32xl\:focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\32xl\:focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\32xl\:focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\32xl\:focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\32xl\:focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\32xl\:focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\32xl\:focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\32xl\:focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\32xl\:focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\32xl\:focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\32xl\:focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\32xl\:focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\32xl\:focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\32xl\:focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\32xl\:focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\32xl\:focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\32xl\:focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\32xl\:focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\32xl\:focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\32xl\:focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\32xl\:focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\32xl\:focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\32xl\:focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\32xl\:focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\32xl\:focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\32xl\:focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\32xl\:focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\32xl\:focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\32xl\:focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\32xl\:focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\32xl\:focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\32xl\:focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\32xl\:focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\32xl\:focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\32xl\:focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\32xl\:focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\32xl\:focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\32xl\:focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\32xl\:focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\32xl\:focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\32xl\:focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\32xl\:focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\32xl\:focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\32xl\:focus\:to-transparent:focus{--gradient-to-color:transparent!important}.\32xl\:focus\:to-white:focus{--gradient-to-color:#fff!important}.\32xl\:focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\32xl\:focus\:to-blackest:focus{--gradient-to-color:#000!important}.\32xl\:focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.\32xl\:focus\:to-black:focus{--gradient-to-color:#23292d!important}.\32xl\:focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.\32xl\:focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.\32xl\:focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.\32xl\:focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.\32xl\:focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.\32xl\:focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.\32xl\:focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.\32xl\:focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.\32xl\:focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.\32xl\:focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.\32xl\:focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.\32xl\:focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.\32xl\:focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.\32xl\:focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.\32xl\:focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.\32xl\:focus\:to-red:focus{--gradient-to-color:#e82323!important}.\32xl\:focus\:to-green:focus{--gradient-to-color:#46b450!important}.\32xl\:focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.\32xl\:focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.\32xl\:bg-opacity-0{--bg-opacity:0!important}.\32xl\:bg-opacity-25{--bg-opacity:0.25!important}.\32xl\:bg-opacity-50{--bg-opacity:0.5!important}.\32xl\:bg-opacity-75{--bg-opacity:0.75!important}.\32xl\:bg-opacity-100{--bg-opacity:1!important}.\32xl\:hover\:bg-opacity-0:hover{--bg-opacity:0!important}.\32xl\:hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.\32xl\:hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.\32xl\:hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.\32xl\:hover\:bg-opacity-100:hover{--bg-opacity:1!important}.\32xl\:focus\:bg-opacity-0:focus{--bg-opacity:0!important}.\32xl\:focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.\32xl\:focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.\32xl\:focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.\32xl\:focus\:bg-opacity-100:focus{--bg-opacity:1!important}.\32xl\:bg-bottom{background-position:bottom!important}.\32xl\:bg-center{background-position:50%!important}.\32xl\:bg-left{background-position:0!important}.\32xl\:bg-left-bottom{background-position:0 100%!important}.\32xl\:bg-left-top{background-position:0 0!important}.\32xl\:bg-right{background-position:100%!important}.\32xl\:bg-right-bottom{background-position:100% 100%!important}.\32xl\:bg-right-top{background-position:100% 0!important}.\32xl\:bg-top{background-position:top!important}.\32xl\:bg-repeat{background-repeat:repeat!important}.\32xl\:bg-no-repeat{background-repeat:no-repeat!important}.\32xl\:bg-repeat-x{background-repeat:repeat-x!important}.\32xl\:bg-repeat-y{background-repeat:repeat-y!important}.\32xl\:bg-repeat-round{background-repeat:round!important}.\32xl\:bg-repeat-space{background-repeat:space!important}.\32xl\:bg-auto{background-size:auto!important}.\32xl\:bg-cover{background-size:cover!important}.\32xl\:bg-contain{background-size:contain!important}.\32xl\:border-collapse{border-collapse:collapse!important}.\32xl\:border-separate{border-collapse:separate!important}.\32xl\:border-transparent{border-color:transparent!important}.\32xl\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\32xl\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.\32xl\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\32xl\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.\32xl\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\32xl\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\32xl\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\32xl\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\32xl\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\32xl\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\32xl\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\32xl\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\32xl\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\32xl\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\32xl\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\32xl\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\32xl\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.\32xl\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\32xl\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\32xl\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\32xl\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\32xl\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\32xl\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\32xl\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\32xl\:hover\:border-transparent:hover{border-color:transparent!important}.\32xl\:hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\32xl\:hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.\32xl\:hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\32xl\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.\32xl\:hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\32xl\:hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\32xl\:hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\32xl\:hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\32xl\:hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\32xl\:hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\32xl\:hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\32xl\:hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\32xl\:hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\32xl\:hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\32xl\:hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\32xl\:hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\32xl\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.\32xl\:hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\32xl\:hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\32xl\:hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\32xl\:hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\32xl\:hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\32xl\:hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\32xl\:hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\32xl\:focus\:border-transparent:focus{border-color:transparent!important}.\32xl\:focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\32xl\:focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.\32xl\:focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\32xl\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.\32xl\:focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\32xl\:focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\32xl\:focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\32xl\:focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\32xl\:focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\32xl\:focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\32xl\:focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\32xl\:focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\32xl\:focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\32xl\:focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\32xl\:focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\32xl\:focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\32xl\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.\32xl\:focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\32xl\:focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\32xl\:focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\32xl\:focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\32xl\:focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\32xl\:focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\32xl\:focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-transparent{border-color:transparent!important}.group:hover .\32xl\:group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .\32xl\:group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .\32xl\:group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .\32xl\:group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .\32xl\:group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\32xl\:border-opacity-0{--border-opacity:0!important}.\32xl\:border-opacity-25{--border-opacity:0.25!important}.\32xl\:border-opacity-50{--border-opacity:0.5!important}.\32xl\:border-opacity-75{--border-opacity:0.75!important}.\32xl\:border-opacity-100{--border-opacity:1!important}.\32xl\:hover\:border-opacity-0:hover{--border-opacity:0!important}.\32xl\:hover\:border-opacity-25:hover{--border-opacity:0.25!important}.\32xl\:hover\:border-opacity-50:hover{--border-opacity:0.5!important}.\32xl\:hover\:border-opacity-75:hover{--border-opacity:0.75!important}.\32xl\:hover\:border-opacity-100:hover{--border-opacity:1!important}.\32xl\:focus\:border-opacity-0:focus{--border-opacity:0!important}.\32xl\:focus\:border-opacity-25:focus{--border-opacity:0.25!important}.\32xl\:focus\:border-opacity-50:focus{--border-opacity:0.5!important}.\32xl\:focus\:border-opacity-75:focus{--border-opacity:0.75!important}.\32xl\:focus\:border-opacity-100:focus{--border-opacity:1!important}.\32xl\:rounded-none{border-radius:0!important}.\32xl\:rounded-sm{border-radius:.125rem!important}.\32xl\:rounded{border-radius:.25rem!important}.\32xl\:rounded-md{border-radius:.375rem!important}.\32xl\:rounded-lg{border-radius:.5rem!important}.\32xl\:rounded-xl{border-radius:.75rem!important}.\32xl\:rounded-2xl{border-radius:1rem!important}.\32xl\:rounded-3xl{border-radius:1.5rem!important}.\32xl\:rounded-full{border-radius:9999px!important}.\32xl\:rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.\32xl\:rounded-r-none{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.\32xl\:rounded-b-none{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.\32xl\:rounded-l-none{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.\32xl\:rounded-t-sm{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.\32xl\:rounded-r-sm{border-top-right-radius:.125rem!important}.\32xl\:rounded-b-sm,.\32xl\:rounded-r-sm{border-bottom-right-radius:.125rem!important}.\32xl\:rounded-b-sm,.\32xl\:rounded-l-sm{border-bottom-left-radius:.125rem!important}.\32xl\:rounded-l-sm{border-top-left-radius:.125rem!important}.\32xl\:rounded-t{border-top-left-radius:.25rem!important}.\32xl\:rounded-r,.\32xl\:rounded-t{border-top-right-radius:.25rem!important}.\32xl\:rounded-b,.\32xl\:rounded-r{border-bottom-right-radius:.25rem!important}.\32xl\:rounded-b,.\32xl\:rounded-l{border-bottom-left-radius:.25rem!important}.\32xl\:rounded-l{border-top-left-radius:.25rem!important}.\32xl\:rounded-t-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.\32xl\:rounded-r-md{border-top-right-radius:.375rem!important}.\32xl\:rounded-b-md,.\32xl\:rounded-r-md{border-bottom-right-radius:.375rem!important}.\32xl\:rounded-b-md,.\32xl\:rounded-l-md{border-bottom-left-radius:.375rem!important}.\32xl\:rounded-l-md{border-top-left-radius:.375rem!important}.\32xl\:rounded-t-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.\32xl\:rounded-r-lg{border-top-right-radius:.5rem!important}.\32xl\:rounded-b-lg,.\32xl\:rounded-r-lg{border-bottom-right-radius:.5rem!important}.\32xl\:rounded-b-lg,.\32xl\:rounded-l-lg{border-bottom-left-radius:.5rem!important}.\32xl\:rounded-l-lg{border-top-left-radius:.5rem!important}.\32xl\:rounded-t-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.\32xl\:rounded-r-xl{border-top-right-radius:.75rem!important}.\32xl\:rounded-b-xl,.\32xl\:rounded-r-xl{border-bottom-right-radius:.75rem!important}.\32xl\:rounded-b-xl,.\32xl\:rounded-l-xl{border-bottom-left-radius:.75rem!important}.\32xl\:rounded-l-xl{border-top-left-radius:.75rem!important}.\32xl\:rounded-t-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.\32xl\:rounded-r-2xl{border-bottom-right-radius:1rem!important;border-top-right-radius:1rem!important}.\32xl\:rounded-b-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.\32xl\:rounded-l-2xl{border-bottom-left-radius:1rem!important;border-top-left-radius:1rem!important}.\32xl\:rounded-t-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.\32xl\:rounded-r-3xl{border-bottom-right-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.\32xl\:rounded-b-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.\32xl\:rounded-l-3xl{border-bottom-left-radius:1.5rem!important;border-top-left-radius:1.5rem!important}.\32xl\:rounded-t-full{border-top-left-radius:9999px!important;border-top-right-radius:9999px!important}.\32xl\:rounded-r-full{border-bottom-right-radius:9999px!important;border-top-right-radius:9999px!important}.\32xl\:rounded-b-full{border-bottom-left-radius:9999px!important;border-bottom-right-radius:9999px!important}.\32xl\:rounded-l-full{border-bottom-left-radius:9999px!important;border-top-left-radius:9999px!important}.\32xl\:rounded-tl-none{border-top-left-radius:0!important}.\32xl\:rounded-tr-none{border-top-right-radius:0!important}.\32xl\:rounded-br-none{border-bottom-right-radius:0!important}.\32xl\:rounded-bl-none{border-bottom-left-radius:0!important}.\32xl\:rounded-tl-sm{border-top-left-radius:.125rem!important}.\32xl\:rounded-tr-sm{border-top-right-radius:.125rem!important}.\32xl\:rounded-br-sm{border-bottom-right-radius:.125rem!important}.\32xl\:rounded-bl-sm{border-bottom-left-radius:.125rem!important}.\32xl\:rounded-tl{border-top-left-radius:.25rem!important}.\32xl\:rounded-tr{border-top-right-radius:.25rem!important}.\32xl\:rounded-br{border-bottom-right-radius:.25rem!important}.\32xl\:rounded-bl{border-bottom-left-radius:.25rem!important}.\32xl\:rounded-tl-md{border-top-left-radius:.375rem!important}.\32xl\:rounded-tr-md{border-top-right-radius:.375rem!important}.\32xl\:rounded-br-md{border-bottom-right-radius:.375rem!important}.\32xl\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.\32xl\:rounded-tl-lg{border-top-left-radius:.5rem!important}.\32xl\:rounded-tr-lg{border-top-right-radius:.5rem!important}.\32xl\:rounded-br-lg{border-bottom-right-radius:.5rem!important}.\32xl\:rounded-bl-lg{border-bottom-left-radius:.5rem!important}.\32xl\:rounded-tl-xl{border-top-left-radius:.75rem!important}.\32xl\:rounded-tr-xl{border-top-right-radius:.75rem!important}.\32xl\:rounded-br-xl{border-bottom-right-radius:.75rem!important}.\32xl\:rounded-bl-xl{border-bottom-left-radius:.75rem!important}.\32xl\:rounded-tl-2xl{border-top-left-radius:1rem!important}.\32xl\:rounded-tr-2xl{border-top-right-radius:1rem!important}.\32xl\:rounded-br-2xl{border-bottom-right-radius:1rem!important}.\32xl\:rounded-bl-2xl{border-bottom-left-radius:1rem!important}.\32xl\:rounded-tl-3xl{border-top-left-radius:1.5rem!important}.\32xl\:rounded-tr-3xl{border-top-right-radius:1.5rem!important}.\32xl\:rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.\32xl\:rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.\32xl\:rounded-tl-full{border-top-left-radius:9999px!important}.\32xl\:rounded-tr-full{border-top-right-radius:9999px!important}.\32xl\:rounded-br-full{border-bottom-right-radius:9999px!important}.\32xl\:rounded-bl-full{border-bottom-left-radius:9999px!important}.\32xl\:border-solid{border-style:solid!important}.\32xl\:border-dashed{border-style:dashed!important}.\32xl\:border-dotted{border-style:dotted!important}.\32xl\:border-double{border-style:double!important}.\32xl\:border-none{border-style:none!important}.\32xl\:border-0{border-width:0!important}.\32xl\:border-2{border-width:2px!important}.\32xl\:border-4{border-width:4px!important}.\32xl\:border-8{border-width:8px!important}.\32xl\:border{border-width:1px!important}.\32xl\:border-t-0{border-top-width:0!important}.\32xl\:border-r-0{border-right-width:0!important}.\32xl\:border-b-0{border-bottom-width:0!important}.\32xl\:border-l-0{border-left-width:0!important}.\32xl\:border-t-2{border-top-width:2px!important}.\32xl\:border-r-2{border-right-width:2px!important}.\32xl\:border-b-2{border-bottom-width:2px!important}.\32xl\:border-l-2{border-left-width:2px!important}.\32xl\:border-t-4{border-top-width:4px!important}.\32xl\:border-r-4{border-right-width:4px!important}.\32xl\:border-b-4{border-bottom-width:4px!important}.\32xl\:border-l-4{border-left-width:4px!important}.\32xl\:border-t-8{border-top-width:8px!important}.\32xl\:border-r-8{border-right-width:8px!important}.\32xl\:border-b-8{border-bottom-width:8px!important}.\32xl\:border-l-8{border-left-width:8px!important}.\32xl\:border-t{border-top-width:1px!important}.\32xl\:border-r{border-right-width:1px!important}.\32xl\:border-b{border-bottom-width:1px!important}.\32xl\:border-l{border-left-width:1px!important}.\32xl\:box-border{box-sizing:border-box!important}.\32xl\:box-content{box-sizing:content-box!important}.\32xl\:cursor-auto{cursor:auto!important}.\32xl\:cursor-default{cursor:default!important}.\32xl\:cursor-pointer{cursor:pointer!important}.\32xl\:cursor-wait{cursor:wait!important}.\32xl\:cursor-text{cursor:text!important}.\32xl\:cursor-move{cursor:move!important}.\32xl\:cursor-not-allowed{cursor:not-allowed!important}.\32xl\:block{display:block!important}.\32xl\:inline-block{display:inline-block!important}.\32xl\:inline{display:inline!important}.\32xl\:flex{display:flex!important}.\32xl\:inline-flex{display:inline-flex!important}.\32xl\:table{display:table!important}.\32xl\:table-caption{display:table-caption!important}.\32xl\:table-cell{display:table-cell!important}.\32xl\:table-column{display:table-column!important}.\32xl\:table-column-group{display:table-column-group!important}.\32xl\:table-footer-group{display:table-footer-group!important}.\32xl\:table-header-group{display:table-header-group!important}.\32xl\:table-row-group{display:table-row-group!important}.\32xl\:table-row{display:table-row!important}.\32xl\:flow-root{display:flow-root!important}.\32xl\:grid{display:grid!important}.\32xl\:inline-grid{display:inline-grid!important}.\32xl\:contents{display:contents!important}.\32xl\:hidden{display:none!important}.\32xl\:flex-row{flex-direction:row!important}.\32xl\:flex-row-reverse{flex-direction:row-reverse!important}.\32xl\:flex-col{flex-direction:column!important}.\32xl\:flex-col-reverse{flex-direction:column-reverse!important}.\32xl\:flex-wrap{flex-wrap:wrap!important}.\32xl\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.\32xl\:flex-no-wrap{flex-wrap:nowrap!important}.\32xl\:place-items-auto{place-items:auto!important}.\32xl\:place-items-start{place-items:start!important}.\32xl\:place-items-end{place-items:end!important}.\32xl\:place-items-center{place-items:center!important}.\32xl\:place-items-stretch{place-items:stretch!important}.\32xl\:place-content-center{place-content:center!important}.\32xl\:place-content-start{place-content:start!important}.\32xl\:place-content-end{place-content:end!important}.\32xl\:place-content-between{place-content:space-between!important}.\32xl\:place-content-around{place-content:space-around!important}.\32xl\:place-content-evenly{place-content:space-evenly!important}.\32xl\:place-content-stretch{place-content:stretch!important}.\32xl\:place-self-auto{place-self:auto!important}.\32xl\:place-self-start{place-self:start!important}.\32xl\:place-self-end{place-self:end!important}.\32xl\:place-self-center{place-self:center!important}.\32xl\:place-self-stretch{place-self:stretch!important}.\32xl\:items-start{align-items:flex-start!important}.\32xl\:items-end{align-items:flex-end!important}.\32xl\:items-center{align-items:center!important}.\32xl\:items-baseline{align-items:baseline!important}.\32xl\:items-stretch{align-items:stretch!important}.\32xl\:content-center{align-content:center!important}.\32xl\:content-start{align-content:flex-start!important}.\32xl\:content-end{align-content:flex-end!important}.\32xl\:content-between{align-content:space-between!important}.\32xl\:content-around{align-content:space-around!important}.\32xl\:content-evenly{align-content:space-evenly!important}.\32xl\:self-auto{align-self:auto!important}.\32xl\:self-start{align-self:flex-start!important}.\32xl\:self-end{align-self:flex-end!important}.\32xl\:self-center{align-self:center!important}.\32xl\:self-stretch{align-self:stretch!important}.\32xl\:justify-items-auto{justify-items:auto!important}.\32xl\:justify-items-start{justify-items:start!important}.\32xl\:justify-items-end{justify-items:end!important}.\32xl\:justify-items-center{justify-items:center!important}.\32xl\:justify-items-stretch{justify-items:stretch!important}.\32xl\:justify-start{justify-content:flex-start!important}.\32xl\:justify-end{justify-content:flex-end!important}.\32xl\:justify-center{justify-content:center!important}.\32xl\:justify-between{justify-content:space-between!important}.\32xl\:justify-around{justify-content:space-around!important}.\32xl\:justify-evenly{justify-content:space-evenly!important}.\32xl\:justify-self-auto{justify-self:auto!important}.\32xl\:justify-self-start{justify-self:start!important}.\32xl\:justify-self-end{justify-self:end!important}.\32xl\:justify-self-center{justify-self:center!important}.\32xl\:justify-self-stretch{justify-self:stretch!important}.\32xl\:flex-1{flex:1 1 0%!important}.\32xl\:flex-auto{flex:1 1 auto!important}.\32xl\:flex-initial{flex:0 1 auto!important}.\32xl\:flex-none{flex:none!important}.\32xl\:flex-grow-0{flex-grow:0!important}.\32xl\:flex-grow{flex-grow:1!important}.\32xl\:flex-shrink-0{flex-shrink:0!important}.\32xl\:flex-shrink{flex-shrink:1!important}.\32xl\:order-1{order:1!important}.\32xl\:order-2{order:2!important}.\32xl\:order-3{order:3!important}.\32xl\:order-4{order:4!important}.\32xl\:order-5{order:5!important}.\32xl\:order-6{order:6!important}.\32xl\:order-7{order:7!important}.\32xl\:order-8{order:8!important}.\32xl\:order-9{order:9!important}.\32xl\:order-10{order:10!important}.\32xl\:order-11{order:11!important}.\32xl\:order-12{order:12!important}.\32xl\:order-first{order:-9999!important}.\32xl\:order-last{order:9999!important}.\32xl\:order-none{order:0!important}.\32xl\:float-right{float:right!important}.\32xl\:float-left{float:left!important}.\32xl\:float-none{float:none!important}.\32xl\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .\32xl\:ltr\:float-right{float:right!important}[dir=ltr] .\32xl\:ltr\:float-left{float:left!important}[dir=ltr] .\32xl\:ltr\:float-none{float:none!important}[dir=ltr] .\32xl\:ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .\32xl\:rtl\:float-right{float:right!important}[dir=rtl] .\32xl\:rtl\:float-left{float:left!important}[dir=rtl] .\32xl\:rtl\:float-none{float:none!important}[dir=rtl] .\32xl\:rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.\32xl\:clear-left{clear:left!important}.\32xl\:clear-right{clear:right!important}.\32xl\:clear-both{clear:both!important}.\32xl\:clear-none{clear:none!important}.\32xl\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.\32xl\:font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.\32xl\:font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.\32xl\:font-hairline{font-weight:100!important}.\32xl\:font-thin{font-weight:200!important}.\32xl\:font-light{font-weight:300!important}.\32xl\:font-normal{font-weight:400!important}.\32xl\:font-medium{font-weight:500!important}.\32xl\:font-semibold{font-weight:600!important}.\32xl\:font-bold{font-weight:700!important}.\32xl\:font-extrabold{font-weight:800!important}.\32xl\:font-black{font-weight:900!important}.\32xl\:hover\:font-hairline:hover{font-weight:100!important}.\32xl\:hover\:font-thin:hover{font-weight:200!important}.\32xl\:hover\:font-light:hover{font-weight:300!important}.\32xl\:hover\:font-normal:hover{font-weight:400!important}.\32xl\:hover\:font-medium:hover{font-weight:500!important}.\32xl\:hover\:font-semibold:hover{font-weight:600!important}.\32xl\:hover\:font-bold:hover{font-weight:700!important}.\32xl\:hover\:font-extrabold:hover{font-weight:800!important}.\32xl\:hover\:font-black:hover{font-weight:900!important}.\32xl\:focus\:font-hairline:focus{font-weight:100!important}.\32xl\:focus\:font-thin:focus{font-weight:200!important}.\32xl\:focus\:font-light:focus{font-weight:300!important}.\32xl\:focus\:font-normal:focus{font-weight:400!important}.\32xl\:focus\:font-medium:focus{font-weight:500!important}.\32xl\:focus\:font-semibold:focus{font-weight:600!important}.\32xl\:focus\:font-bold:focus{font-weight:700!important}.\32xl\:focus\:font-extrabold:focus{font-weight:800!important}.\32xl\:focus\:font-black:focus{font-weight:900!important}.\32xl\:h-0{height:0!important}.\32xl\:h-1{height:.25rem!important}.\32xl\:h-2{height:.5rem!important}.\32xl\:h-3{height:.75rem!important}.\32xl\:h-4{height:1rem!important}.\32xl\:h-5{height:1.25rem!important}.\32xl\:h-6{height:1.5rem!important}.\32xl\:h-7{height:1.75rem!important}.\32xl\:h-8{height:2rem!important}.\32xl\:h-9{height:2.25rem!important}.\32xl\:h-10{height:2.5rem!important}.\32xl\:h-11{height:2.75rem!important}.\32xl\:h-12{height:3rem!important}.\32xl\:h-13{height:3.25rem!important}.\32xl\:h-14{height:3.5rem!important}.\32xl\:h-15{height:3.75rem!important}.\32xl\:h-16{height:4rem!important}.\32xl\:h-20{height:5rem!important}.\32xl\:h-24{height:6rem!important}.\32xl\:h-28{height:7rem!important}.\32xl\:h-32{height:8rem!important}.\32xl\:h-36{height:9rem!important}.\32xl\:h-40{height:10rem!important}.\32xl\:h-48{height:12rem!important}.\32xl\:h-56{height:14rem!important}.\32xl\:h-60{height:15rem!important}.\32xl\:h-64{height:16rem!important}.\32xl\:h-72{height:18rem!important}.\32xl\:h-80{height:20rem!important}.\32xl\:h-96{height:24rem!important}.\32xl\:h-auto{height:auto!important}.\32xl\:h-px{height:1px!important}.\32xl\:h-0\.5{height:.125rem!important}.\32xl\:h-1\.5{height:.375rem!important}.\32xl\:h-2\.5{height:.625rem!important}.\32xl\:h-3\.5{height:.875rem!important}.\32xl\:h-1\/2{height:50%!important}.\32xl\:h-1\/3{height:33.333333%!important}.\32xl\:h-2\/3{height:66.666667%!important}.\32xl\:h-1\/4{height:25%!important}.\32xl\:h-2\/4{height:50%!important}.\32xl\:h-3\/4{height:75%!important}.\32xl\:h-1\/5{height:20%!important}.\32xl\:h-2\/5{height:40%!important}.\32xl\:h-3\/5{height:60%!important}.\32xl\:h-4\/5{height:80%!important}.\32xl\:h-1\/6{height:16.666667%!important}.\32xl\:h-2\/6{height:33.333333%!important}.\32xl\:h-3\/6{height:50%!important}.\32xl\:h-4\/6{height:66.666667%!important}.\32xl\:h-5\/6{height:83.333333%!important}.\32xl\:h-1\/12{height:8.333333%!important}.\32xl\:h-2\/12{height:16.666667%!important}.\32xl\:h-3\/12{height:25%!important}.\32xl\:h-4\/12{height:33.333333%!important}.\32xl\:h-5\/12{height:41.666667%!important}.\32xl\:h-6\/12{height:50%!important}.\32xl\:h-7\/12{height:58.333333%!important}.\32xl\:h-8\/12{height:66.666667%!important}.\32xl\:h-9\/12{height:75%!important}.\32xl\:h-10\/12{height:83.333333%!important}.\32xl\:h-11\/12{height:91.666667%!important}.\32xl\:h-full{height:100%!important}.\32xl\:h-screen{height:100vh!important}.\32xl\:text-xs{font-size:.7rem!important}.\32xl\:text-sm{font-size:.875rem!important}.\32xl\:text-base{font-size:1rem!important}.\32xl\:text-lg{font-size:1.125rem!important}.\32xl\:text-xl{font-size:1.25rem!important}.\32xl\:text-2xl{font-size:1.5rem!important}.\32xl\:text-3xl{font-size:1.875rem!important}.\32xl\:text-4xl{font-size:2.25rem!important}.\32xl\:text-5xl{font-size:3rem!important}.\32xl\:text-6xl{font-size:4rem!important}.\32xl\:leading-3{line-height:.75rem!important}.\32xl\:leading-4{line-height:1rem!important}.\32xl\:leading-5{line-height:1.25rem!important}.\32xl\:leading-6{line-height:1.5rem!important}.\32xl\:leading-7{line-height:1.75rem!important}.\32xl\:leading-8{line-height:2rem!important}.\32xl\:leading-9{line-height:2.25rem!important}.\32xl\:leading-10{line-height:2.5rem!important}.\32xl\:leading-none{line-height:1!important}.\32xl\:leading-tight{line-height:1.25!important}.\32xl\:leading-snug{line-height:1.375!important}.\32xl\:leading-normal{line-height:1.5!important}.\32xl\:leading-relaxed{line-height:1.625!important}.\32xl\:leading-loose{line-height:2!important}.\32xl\:list-inside{list-style-position:inside!important}.\32xl\:list-outside{list-style-position:outside!important}.\32xl\:list-none{list-style-type:none!important}.\32xl\:list-disc{list-style-type:disc!important}.\32xl\:list-decimal{list-style-type:decimal!important}.\32xl\:m-0{margin:0!important}.\32xl\:m-1{margin:.25rem!important}.\32xl\:m-2{margin:.5rem!important}.\32xl\:m-3{margin:.75rem!important}.\32xl\:m-4{margin:1rem!important}.\32xl\:m-5{margin:1.25rem!important}.\32xl\:m-6{margin:1.5rem!important}.\32xl\:m-7{margin:1.75rem!important}.\32xl\:m-8{margin:2rem!important}.\32xl\:m-9{margin:2.25rem!important}.\32xl\:m-10{margin:2.5rem!important}.\32xl\:m-11{margin:2.75rem!important}.\32xl\:m-12{margin:3rem!important}.\32xl\:m-13{margin:3.25rem!important}.\32xl\:m-14{margin:3.5rem!important}.\32xl\:m-15{margin:3.75rem!important}.\32xl\:m-16{margin:4rem!important}.\32xl\:m-20{margin:5rem!important}.\32xl\:m-24{margin:6rem!important}.\32xl\:m-28{margin:7rem!important}.\32xl\:m-32{margin:8rem!important}.\32xl\:m-36{margin:9rem!important}.\32xl\:m-40{margin:10rem!important}.\32xl\:m-48{margin:12rem!important}.\32xl\:m-56{margin:14rem!important}.\32xl\:m-60{margin:15rem!important}.\32xl\:m-64{margin:16rem!important}.\32xl\:m-72{margin:18rem!important}.\32xl\:m-80{margin:20rem!important}.\32xl\:m-96{margin:24rem!important}.\32xl\:m-auto{margin:auto!important}.\32xl\:m-px{margin:1px!important}.\32xl\:m-0\.5{margin:.125rem!important}.\32xl\:m-1\.5{margin:.375rem!important}.\32xl\:m-2\.5{margin:.625rem!important}.\32xl\:m-3\.5{margin:.875rem!important}.\32xl\:m-1\/2{margin:50%!important}.\32xl\:m-1\/3{margin:33.333333%!important}.\32xl\:m-2\/3{margin:66.666667%!important}.\32xl\:m-1\/4{margin:25%!important}.\32xl\:m-2\/4{margin:50%!important}.\32xl\:m-3\/4{margin:75%!important}.\32xl\:m-1\/5{margin:20%!important}.\32xl\:m-2\/5{margin:40%!important}.\32xl\:m-3\/5{margin:60%!important}.\32xl\:m-4\/5{margin:80%!important}.\32xl\:m-1\/6{margin:16.666667%!important}.\32xl\:m-2\/6{margin:33.333333%!important}.\32xl\:m-3\/6{margin:50%!important}.\32xl\:m-4\/6{margin:66.666667%!important}.\32xl\:m-5\/6{margin:83.333333%!important}.\32xl\:m-1\/12{margin:8.333333%!important}.\32xl\:m-2\/12{margin:16.666667%!important}.\32xl\:m-3\/12{margin:25%!important}.\32xl\:m-4\/12{margin:33.333333%!important}.\32xl\:m-5\/12{margin:41.666667%!important}.\32xl\:m-6\/12{margin:50%!important}.\32xl\:m-7\/12{margin:58.333333%!important}.\32xl\:m-8\/12{margin:66.666667%!important}.\32xl\:m-9\/12{margin:75%!important}.\32xl\:m-10\/12{margin:83.333333%!important}.\32xl\:m-11\/12{margin:91.666667%!important}.\32xl\:m-full{margin:100%!important}.\32xl\:-m-1{margin:-.25rem!important}.\32xl\:-m-2{margin:-.5rem!important}.\32xl\:-m-3{margin:-.75rem!important}.\32xl\:-m-4{margin:-1rem!important}.\32xl\:-m-5{margin:-1.25rem!important}.\32xl\:-m-6{margin:-1.5rem!important}.\32xl\:-m-7{margin:-1.75rem!important}.\32xl\:-m-8{margin:-2rem!important}.\32xl\:-m-9{margin:-2.25rem!important}.\32xl\:-m-10{margin:-2.5rem!important}.\32xl\:-m-11{margin:-2.75rem!important}.\32xl\:-m-12{margin:-3rem!important}.\32xl\:-m-13{margin:-3.25rem!important}.\32xl\:-m-14{margin:-3.5rem!important}.\32xl\:-m-15{margin:-3.75rem!important}.\32xl\:-m-16{margin:-4rem!important}.\32xl\:-m-20{margin:-5rem!important}.\32xl\:-m-24{margin:-6rem!important}.\32xl\:-m-28{margin:-7rem!important}.\32xl\:-m-32{margin:-8rem!important}.\32xl\:-m-36{margin:-9rem!important}.\32xl\:-m-40{margin:-10rem!important}.\32xl\:-m-48{margin:-12rem!important}.\32xl\:-m-56{margin:-14rem!important}.\32xl\:-m-60{margin:-15rem!important}.\32xl\:-m-64{margin:-16rem!important}.\32xl\:-m-72{margin:-18rem!important}.\32xl\:-m-80{margin:-20rem!important}.\32xl\:-m-96{margin:-24rem!important}.\32xl\:-m-px{margin:-1px!important}.\32xl\:-m-0\.5{margin:-.125rem!important}.\32xl\:-m-1\.5{margin:-.375rem!important}.\32xl\:-m-2\.5{margin:-.625rem!important}.\32xl\:-m-3\.5{margin:-.875rem!important}.\32xl\:-m-1\/2{margin:-50%!important}.\32xl\:-m-1\/3{margin:-33.33333%!important}.\32xl\:-m-2\/3{margin:-66.66667%!important}.\32xl\:-m-1\/4{margin:-25%!important}.\32xl\:-m-2\/4{margin:-50%!important}.\32xl\:-m-3\/4{margin:-75%!important}.\32xl\:-m-1\/5{margin:-20%!important}.\32xl\:-m-2\/5{margin:-40%!important}.\32xl\:-m-3\/5{margin:-60%!important}.\32xl\:-m-4\/5{margin:-80%!important}.\32xl\:-m-1\/6{margin:-16.66667%!important}.\32xl\:-m-2\/6{margin:-33.33333%!important}.\32xl\:-m-3\/6{margin:-50%!important}.\32xl\:-m-4\/6{margin:-66.66667%!important}.\32xl\:-m-5\/6{margin:-83.33333%!important}.\32xl\:-m-1\/12{margin:-8.33333%!important}.\32xl\:-m-2\/12{margin:-16.66667%!important}.\32xl\:-m-3\/12{margin:-25%!important}.\32xl\:-m-4\/12{margin:-33.33333%!important}.\32xl\:-m-5\/12{margin:-41.66667%!important}.\32xl\:-m-6\/12{margin:-50%!important}.\32xl\:-m-7\/12{margin:-58.33333%!important}.\32xl\:-m-8\/12{margin:-66.66667%!important}.\32xl\:-m-9\/12{margin:-75%!important}.\32xl\:-m-10\/12{margin:-83.33333%!important}.\32xl\:-m-11\/12{margin:-91.66667%!important}.\32xl\:-m-full{margin:-100%!important}.\32xl\:my-0{margin-bottom:0!important;margin-top:0!important}.\32xl\:mx-0{margin-left:0!important;margin-right:0!important}.\32xl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.\32xl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.\32xl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.\32xl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.\32xl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.\32xl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.\32xl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}.\32xl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}.\32xl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.\32xl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.\32xl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.\32xl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.\32xl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.\32xl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.\32xl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}.\32xl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}.\32xl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.\32xl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.\32xl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.\32xl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.\32xl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.\32xl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.\32xl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}.\32xl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}.\32xl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.\32xl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.\32xl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.\32xl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.\32xl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.\32xl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.\32xl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}.\32xl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.\32xl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}.\32xl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}.\32xl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}.\32xl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}.\32xl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}.\32xl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}.\32xl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}.\32xl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}.\32xl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}.\32xl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}.\32xl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}.\32xl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}.\32xl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}.\32xl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}.\32xl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}.\32xl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}.\32xl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}.\32xl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}.\32xl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}.\32xl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}.\32xl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}.\32xl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}.\32xl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}.\32xl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}.\32xl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}.\32xl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}.\32xl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}.\32xl\:mx-auto{margin-left:auto!important;margin-right:auto!important}.\32xl\:my-px{margin-bottom:1px!important;margin-top:1px!important}.\32xl\:mx-px{margin-left:1px!important;margin-right:1px!important}.\32xl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.\32xl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.\32xl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.\32xl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.\32xl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.\32xl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.\32xl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.\32xl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.\32xl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.\32xl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}.\32xl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\32xl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.\32xl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\32xl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.\32xl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.\32xl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}.\32xl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.\32xl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}.\32xl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.\32xl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}.\32xl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.\32xl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}.\32xl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.\32xl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}.\32xl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.\32xl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}.\32xl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.\32xl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}.\32xl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.\32xl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.\32xl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\32xl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.\32xl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.\32xl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}.\32xl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\32xl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.\32xl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.\32xl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.\32xl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.\32xl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.\32xl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.\32xl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.\32xl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.\32xl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}.\32xl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\32xl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.\32xl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.\32xl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.\32xl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.\32xl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}.\32xl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.\32xl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.\32xl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\32xl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.\32xl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.\32xl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}.\32xl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.\32xl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.\32xl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.\32xl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.\32xl\:my-full{margin-bottom:100%!important;margin-top:100%!important}.\32xl\:mx-full{margin-left:100%!important;margin-right:100%!important}.\32xl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.\32xl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.\32xl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.\32xl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.\32xl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.\32xl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.\32xl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.\32xl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.\32xl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.\32xl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.\32xl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.\32xl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.\32xl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.\32xl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.\32xl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.\32xl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.\32xl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.\32xl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.\32xl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.\32xl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.\32xl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.\32xl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.\32xl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.\32xl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.\32xl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.\32xl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.\32xl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.\32xl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.\32xl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.\32xl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.\32xl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.\32xl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.\32xl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.\32xl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.\32xl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.\32xl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.\32xl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.\32xl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.\32xl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.\32xl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.\32xl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.\32xl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.\32xl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.\32xl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.\32xl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.\32xl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.\32xl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.\32xl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.\32xl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.\32xl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.\32xl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.\32xl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.\32xl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.\32xl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.\32xl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.\32xl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.\32xl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.\32xl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.\32xl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.\32xl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}.\32xl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.\32xl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.\32xl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.\32xl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.\32xl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.\32xl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.\32xl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.\32xl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.\32xl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.\32xl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.\32xl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\32xl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\32xl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\32xl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\32xl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.\32xl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.\32xl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.\32xl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.\32xl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.\32xl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.\32xl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.\32xl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.\32xl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.\32xl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.\32xl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.\32xl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.\32xl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.\32xl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.\32xl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.\32xl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.\32xl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\32xl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\32xl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.\32xl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.\32xl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\32xl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\32xl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.\32xl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.\32xl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.\32xl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.\32xl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.\32xl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.\32xl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.\32xl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.\32xl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\32xl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\32xl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.\32xl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.\32xl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.\32xl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.\32xl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.\32xl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.\32xl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\32xl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\32xl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.\32xl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.\32xl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.\32xl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.\32xl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.\32xl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.\32xl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.\32xl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}.\32xl\:mt-0{margin-top:0!important}.\32xl\:mr-0{margin-right:0!important}.\32xl\:mb-0{margin-bottom:0!important}.\32xl\:ml-0{margin-left:0!important}.\32xl\:mt-1{margin-top:.25rem!important}.\32xl\:mr-1{margin-right:.25rem!important}.\32xl\:mb-1{margin-bottom:.25rem!important}.\32xl\:ml-1{margin-left:.25rem!important}.\32xl\:mt-2{margin-top:.5rem!important}.\32xl\:mr-2{margin-right:.5rem!important}.\32xl\:mb-2{margin-bottom:.5rem!important}.\32xl\:ml-2{margin-left:.5rem!important}.\32xl\:mt-3{margin-top:.75rem!important}.\32xl\:mr-3{margin-right:.75rem!important}.\32xl\:mb-3{margin-bottom:.75rem!important}.\32xl\:ml-3{margin-left:.75rem!important}.\32xl\:mt-4{margin-top:1rem!important}.\32xl\:mr-4{margin-right:1rem!important}.\32xl\:mb-4{margin-bottom:1rem!important}.\32xl\:ml-4{margin-left:1rem!important}.\32xl\:mt-5{margin-top:1.25rem!important}.\32xl\:mr-5{margin-right:1.25rem!important}.\32xl\:mb-5{margin-bottom:1.25rem!important}.\32xl\:ml-5{margin-left:1.25rem!important}.\32xl\:mt-6{margin-top:1.5rem!important}.\32xl\:mr-6{margin-right:1.5rem!important}.\32xl\:mb-6{margin-bottom:1.5rem!important}.\32xl\:ml-6{margin-left:1.5rem!important}.\32xl\:mt-7{margin-top:1.75rem!important}.\32xl\:mr-7{margin-right:1.75rem!important}.\32xl\:mb-7{margin-bottom:1.75rem!important}.\32xl\:ml-7{margin-left:1.75rem!important}.\32xl\:mt-8{margin-top:2rem!important}.\32xl\:mr-8{margin-right:2rem!important}.\32xl\:mb-8{margin-bottom:2rem!important}.\32xl\:ml-8{margin-left:2rem!important}.\32xl\:mt-9{margin-top:2.25rem!important}.\32xl\:mr-9{margin-right:2.25rem!important}.\32xl\:mb-9{margin-bottom:2.25rem!important}.\32xl\:ml-9{margin-left:2.25rem!important}.\32xl\:mt-10{margin-top:2.5rem!important}.\32xl\:mr-10{margin-right:2.5rem!important}.\32xl\:mb-10{margin-bottom:2.5rem!important}.\32xl\:ml-10{margin-left:2.5rem!important}.\32xl\:mt-11{margin-top:2.75rem!important}.\32xl\:mr-11{margin-right:2.75rem!important}.\32xl\:mb-11{margin-bottom:2.75rem!important}.\32xl\:ml-11{margin-left:2.75rem!important}.\32xl\:mt-12{margin-top:3rem!important}.\32xl\:mr-12{margin-right:3rem!important}.\32xl\:mb-12{margin-bottom:3rem!important}.\32xl\:ml-12{margin-left:3rem!important}.\32xl\:mt-13{margin-top:3.25rem!important}.\32xl\:mr-13{margin-right:3.25rem!important}.\32xl\:mb-13{margin-bottom:3.25rem!important}.\32xl\:ml-13{margin-left:3.25rem!important}.\32xl\:mt-14{margin-top:3.5rem!important}.\32xl\:mr-14{margin-right:3.5rem!important}.\32xl\:mb-14{margin-bottom:3.5rem!important}.\32xl\:ml-14{margin-left:3.5rem!important}.\32xl\:mt-15{margin-top:3.75rem!important}.\32xl\:mr-15{margin-right:3.75rem!important}.\32xl\:mb-15{margin-bottom:3.75rem!important}.\32xl\:ml-15{margin-left:3.75rem!important}.\32xl\:mt-16{margin-top:4rem!important}.\32xl\:mr-16{margin-right:4rem!important}.\32xl\:mb-16{margin-bottom:4rem!important}.\32xl\:ml-16{margin-left:4rem!important}.\32xl\:mt-20{margin-top:5rem!important}.\32xl\:mr-20{margin-right:5rem!important}.\32xl\:mb-20{margin-bottom:5rem!important}.\32xl\:ml-20{margin-left:5rem!important}.\32xl\:mt-24{margin-top:6rem!important}.\32xl\:mr-24{margin-right:6rem!important}.\32xl\:mb-24{margin-bottom:6rem!important}.\32xl\:ml-24{margin-left:6rem!important}.\32xl\:mt-28{margin-top:7rem!important}.\32xl\:mr-28{margin-right:7rem!important}.\32xl\:mb-28{margin-bottom:7rem!important}.\32xl\:ml-28{margin-left:7rem!important}.\32xl\:mt-32{margin-top:8rem!important}.\32xl\:mr-32{margin-right:8rem!important}.\32xl\:mb-32{margin-bottom:8rem!important}.\32xl\:ml-32{margin-left:8rem!important}.\32xl\:mt-36{margin-top:9rem!important}.\32xl\:mr-36{margin-right:9rem!important}.\32xl\:mb-36{margin-bottom:9rem!important}.\32xl\:ml-36{margin-left:9rem!important}.\32xl\:mt-40{margin-top:10rem!important}.\32xl\:mr-40{margin-right:10rem!important}.\32xl\:mb-40{margin-bottom:10rem!important}.\32xl\:ml-40{margin-left:10rem!important}.\32xl\:mt-48{margin-top:12rem!important}.\32xl\:mr-48{margin-right:12rem!important}.\32xl\:mb-48{margin-bottom:12rem!important}.\32xl\:ml-48{margin-left:12rem!important}.\32xl\:mt-56{margin-top:14rem!important}.\32xl\:mr-56{margin-right:14rem!important}.\32xl\:mb-56{margin-bottom:14rem!important}.\32xl\:ml-56{margin-left:14rem!important}.\32xl\:mt-60{margin-top:15rem!important}.\32xl\:mr-60{margin-right:15rem!important}.\32xl\:mb-60{margin-bottom:15rem!important}.\32xl\:ml-60{margin-left:15rem!important}.\32xl\:mt-64{margin-top:16rem!important}.\32xl\:mr-64{margin-right:16rem!important}.\32xl\:mb-64{margin-bottom:16rem!important}.\32xl\:ml-64{margin-left:16rem!important}.\32xl\:mt-72{margin-top:18rem!important}.\32xl\:mr-72{margin-right:18rem!important}.\32xl\:mb-72{margin-bottom:18rem!important}.\32xl\:ml-72{margin-left:18rem!important}.\32xl\:mt-80{margin-top:20rem!important}.\32xl\:mr-80{margin-right:20rem!important}.\32xl\:mb-80{margin-bottom:20rem!important}.\32xl\:ml-80{margin-left:20rem!important}.\32xl\:mt-96{margin-top:24rem!important}.\32xl\:mr-96{margin-right:24rem!important}.\32xl\:mb-96{margin-bottom:24rem!important}.\32xl\:ml-96{margin-left:24rem!important}.\32xl\:mt-auto{margin-top:auto!important}.\32xl\:mr-auto{margin-right:auto!important}.\32xl\:mb-auto{margin-bottom:auto!important}.\32xl\:ml-auto{margin-left:auto!important}.\32xl\:mt-px{margin-top:1px!important}.\32xl\:mr-px{margin-right:1px!important}.\32xl\:mb-px{margin-bottom:1px!important}.\32xl\:ml-px{margin-left:1px!important}.\32xl\:mt-0\.5{margin-top:.125rem!important}.\32xl\:mr-0\.5{margin-right:.125rem!important}.\32xl\:mb-0\.5{margin-bottom:.125rem!important}.\32xl\:ml-0\.5{margin-left:.125rem!important}.\32xl\:mt-1\.5{margin-top:.375rem!important}.\32xl\:mr-1\.5{margin-right:.375rem!important}.\32xl\:mb-1\.5{margin-bottom:.375rem!important}.\32xl\:ml-1\.5{margin-left:.375rem!important}.\32xl\:mt-2\.5{margin-top:.625rem!important}.\32xl\:mr-2\.5{margin-right:.625rem!important}.\32xl\:mb-2\.5{margin-bottom:.625rem!important}.\32xl\:ml-2\.5{margin-left:.625rem!important}.\32xl\:mt-3\.5{margin-top:.875rem!important}.\32xl\:mr-3\.5{margin-right:.875rem!important}.\32xl\:mb-3\.5{margin-bottom:.875rem!important}.\32xl\:ml-3\.5{margin-left:.875rem!important}.\32xl\:mt-1\/2{margin-top:50%!important}.\32xl\:mr-1\/2{margin-right:50%!important}.\32xl\:mb-1\/2{margin-bottom:50%!important}.\32xl\:ml-1\/2{margin-left:50%!important}.\32xl\:mt-1\/3{margin-top:33.333333%!important}.\32xl\:mr-1\/3{margin-right:33.333333%!important}.\32xl\:mb-1\/3{margin-bottom:33.333333%!important}.\32xl\:ml-1\/3{margin-left:33.333333%!important}.\32xl\:mt-2\/3{margin-top:66.666667%!important}.\32xl\:mr-2\/3{margin-right:66.666667%!important}.\32xl\:mb-2\/3{margin-bottom:66.666667%!important}.\32xl\:ml-2\/3{margin-left:66.666667%!important}.\32xl\:mt-1\/4{margin-top:25%!important}.\32xl\:mr-1\/4{margin-right:25%!important}.\32xl\:mb-1\/4{margin-bottom:25%!important}.\32xl\:ml-1\/4{margin-left:25%!important}.\32xl\:mt-2\/4{margin-top:50%!important}.\32xl\:mr-2\/4{margin-right:50%!important}.\32xl\:mb-2\/4{margin-bottom:50%!important}.\32xl\:ml-2\/4{margin-left:50%!important}.\32xl\:mt-3\/4{margin-top:75%!important}.\32xl\:mr-3\/4{margin-right:75%!important}.\32xl\:mb-3\/4{margin-bottom:75%!important}.\32xl\:ml-3\/4{margin-left:75%!important}.\32xl\:mt-1\/5{margin-top:20%!important}.\32xl\:mr-1\/5{margin-right:20%!important}.\32xl\:mb-1\/5{margin-bottom:20%!important}.\32xl\:ml-1\/5{margin-left:20%!important}.\32xl\:mt-2\/5{margin-top:40%!important}.\32xl\:mr-2\/5{margin-right:40%!important}.\32xl\:mb-2\/5{margin-bottom:40%!important}.\32xl\:ml-2\/5{margin-left:40%!important}.\32xl\:mt-3\/5{margin-top:60%!important}.\32xl\:mr-3\/5{margin-right:60%!important}.\32xl\:mb-3\/5{margin-bottom:60%!important}.\32xl\:ml-3\/5{margin-left:60%!important}.\32xl\:mt-4\/5{margin-top:80%!important}.\32xl\:mr-4\/5{margin-right:80%!important}.\32xl\:mb-4\/5{margin-bottom:80%!important}.\32xl\:ml-4\/5{margin-left:80%!important}.\32xl\:mt-1\/6{margin-top:16.666667%!important}.\32xl\:mr-1\/6{margin-right:16.666667%!important}.\32xl\:mb-1\/6{margin-bottom:16.666667%!important}.\32xl\:ml-1\/6{margin-left:16.666667%!important}.\32xl\:mt-2\/6{margin-top:33.333333%!important}.\32xl\:mr-2\/6{margin-right:33.333333%!important}.\32xl\:mb-2\/6{margin-bottom:33.333333%!important}.\32xl\:ml-2\/6{margin-left:33.333333%!important}.\32xl\:mt-3\/6{margin-top:50%!important}.\32xl\:mr-3\/6{margin-right:50%!important}.\32xl\:mb-3\/6{margin-bottom:50%!important}.\32xl\:ml-3\/6{margin-left:50%!important}.\32xl\:mt-4\/6{margin-top:66.666667%!important}.\32xl\:mr-4\/6{margin-right:66.666667%!important}.\32xl\:mb-4\/6{margin-bottom:66.666667%!important}.\32xl\:ml-4\/6{margin-left:66.666667%!important}.\32xl\:mt-5\/6{margin-top:83.333333%!important}.\32xl\:mr-5\/6{margin-right:83.333333%!important}.\32xl\:mb-5\/6{margin-bottom:83.333333%!important}.\32xl\:ml-5\/6{margin-left:83.333333%!important}.\32xl\:mt-1\/12{margin-top:8.333333%!important}.\32xl\:mr-1\/12{margin-right:8.333333%!important}.\32xl\:mb-1\/12{margin-bottom:8.333333%!important}.\32xl\:ml-1\/12{margin-left:8.333333%!important}.\32xl\:mt-2\/12{margin-top:16.666667%!important}.\32xl\:mr-2\/12{margin-right:16.666667%!important}.\32xl\:mb-2\/12{margin-bottom:16.666667%!important}.\32xl\:ml-2\/12{margin-left:16.666667%!important}.\32xl\:mt-3\/12{margin-top:25%!important}.\32xl\:mr-3\/12{margin-right:25%!important}.\32xl\:mb-3\/12{margin-bottom:25%!important}.\32xl\:ml-3\/12{margin-left:25%!important}.\32xl\:mt-4\/12{margin-top:33.333333%!important}.\32xl\:mr-4\/12{margin-right:33.333333%!important}.\32xl\:mb-4\/12{margin-bottom:33.333333%!important}.\32xl\:ml-4\/12{margin-left:33.333333%!important}.\32xl\:mt-5\/12{margin-top:41.666667%!important}.\32xl\:mr-5\/12{margin-right:41.666667%!important}.\32xl\:mb-5\/12{margin-bottom:41.666667%!important}.\32xl\:ml-5\/12{margin-left:41.666667%!important}.\32xl\:mt-6\/12{margin-top:50%!important}.\32xl\:mr-6\/12{margin-right:50%!important}.\32xl\:mb-6\/12{margin-bottom:50%!important}.\32xl\:ml-6\/12{margin-left:50%!important}.\32xl\:mt-7\/12{margin-top:58.333333%!important}.\32xl\:mr-7\/12{margin-right:58.333333%!important}.\32xl\:mb-7\/12{margin-bottom:58.333333%!important}.\32xl\:ml-7\/12{margin-left:58.333333%!important}.\32xl\:mt-8\/12{margin-top:66.666667%!important}.\32xl\:mr-8\/12{margin-right:66.666667%!important}.\32xl\:mb-8\/12{margin-bottom:66.666667%!important}.\32xl\:ml-8\/12{margin-left:66.666667%!important}.\32xl\:mt-9\/12{margin-top:75%!important}.\32xl\:mr-9\/12{margin-right:75%!important}.\32xl\:mb-9\/12{margin-bottom:75%!important}.\32xl\:ml-9\/12{margin-left:75%!important}.\32xl\:mt-10\/12{margin-top:83.333333%!important}.\32xl\:mr-10\/12{margin-right:83.333333%!important}.\32xl\:mb-10\/12{margin-bottom:83.333333%!important}.\32xl\:ml-10\/12{margin-left:83.333333%!important}.\32xl\:mt-11\/12{margin-top:91.666667%!important}.\32xl\:mr-11\/12{margin-right:91.666667%!important}.\32xl\:mb-11\/12{margin-bottom:91.666667%!important}.\32xl\:ml-11\/12{margin-left:91.666667%!important}.\32xl\:mt-full{margin-top:100%!important}.\32xl\:mr-full{margin-right:100%!important}.\32xl\:mb-full{margin-bottom:100%!important}.\32xl\:ml-full{margin-left:100%!important}.\32xl\:-mt-1{margin-top:-.25rem!important}.\32xl\:-mr-1{margin-right:-.25rem!important}.\32xl\:-mb-1{margin-bottom:-.25rem!important}.\32xl\:-ml-1{margin-left:-.25rem!important}.\32xl\:-mt-2{margin-top:-.5rem!important}.\32xl\:-mr-2{margin-right:-.5rem!important}.\32xl\:-mb-2{margin-bottom:-.5rem!important}.\32xl\:-ml-2{margin-left:-.5rem!important}.\32xl\:-mt-3{margin-top:-.75rem!important}.\32xl\:-mr-3{margin-right:-.75rem!important}.\32xl\:-mb-3{margin-bottom:-.75rem!important}.\32xl\:-ml-3{margin-left:-.75rem!important}.\32xl\:-mt-4{margin-top:-1rem!important}.\32xl\:-mr-4{margin-right:-1rem!important}.\32xl\:-mb-4{margin-bottom:-1rem!important}.\32xl\:-ml-4{margin-left:-1rem!important}.\32xl\:-mt-5{margin-top:-1.25rem!important}.\32xl\:-mr-5{margin-right:-1.25rem!important}.\32xl\:-mb-5{margin-bottom:-1.25rem!important}.\32xl\:-ml-5{margin-left:-1.25rem!important}.\32xl\:-mt-6{margin-top:-1.5rem!important}.\32xl\:-mr-6{margin-right:-1.5rem!important}.\32xl\:-mb-6{margin-bottom:-1.5rem!important}.\32xl\:-ml-6{margin-left:-1.5rem!important}.\32xl\:-mt-7{margin-top:-1.75rem!important}.\32xl\:-mr-7{margin-right:-1.75rem!important}.\32xl\:-mb-7{margin-bottom:-1.75rem!important}.\32xl\:-ml-7{margin-left:-1.75rem!important}.\32xl\:-mt-8{margin-top:-2rem!important}.\32xl\:-mr-8{margin-right:-2rem!important}.\32xl\:-mb-8{margin-bottom:-2rem!important}.\32xl\:-ml-8{margin-left:-2rem!important}.\32xl\:-mt-9{margin-top:-2.25rem!important}.\32xl\:-mr-9{margin-right:-2.25rem!important}.\32xl\:-mb-9{margin-bottom:-2.25rem!important}.\32xl\:-ml-9{margin-left:-2.25rem!important}.\32xl\:-mt-10{margin-top:-2.5rem!important}.\32xl\:-mr-10{margin-right:-2.5rem!important}.\32xl\:-mb-10{margin-bottom:-2.5rem!important}.\32xl\:-ml-10{margin-left:-2.5rem!important}.\32xl\:-mt-11{margin-top:-2.75rem!important}.\32xl\:-mr-11{margin-right:-2.75rem!important}.\32xl\:-mb-11{margin-bottom:-2.75rem!important}.\32xl\:-ml-11{margin-left:-2.75rem!important}.\32xl\:-mt-12{margin-top:-3rem!important}.\32xl\:-mr-12{margin-right:-3rem!important}.\32xl\:-mb-12{margin-bottom:-3rem!important}.\32xl\:-ml-12{margin-left:-3rem!important}.\32xl\:-mt-13{margin-top:-3.25rem!important}.\32xl\:-mr-13{margin-right:-3.25rem!important}.\32xl\:-mb-13{margin-bottom:-3.25rem!important}.\32xl\:-ml-13{margin-left:-3.25rem!important}.\32xl\:-mt-14{margin-top:-3.5rem!important}.\32xl\:-mr-14{margin-right:-3.5rem!important}.\32xl\:-mb-14{margin-bottom:-3.5rem!important}.\32xl\:-ml-14{margin-left:-3.5rem!important}.\32xl\:-mt-15{margin-top:-3.75rem!important}.\32xl\:-mr-15{margin-right:-3.75rem!important}.\32xl\:-mb-15{margin-bottom:-3.75rem!important}.\32xl\:-ml-15{margin-left:-3.75rem!important}.\32xl\:-mt-16{margin-top:-4rem!important}.\32xl\:-mr-16{margin-right:-4rem!important}.\32xl\:-mb-16{margin-bottom:-4rem!important}.\32xl\:-ml-16{margin-left:-4rem!important}.\32xl\:-mt-20{margin-top:-5rem!important}.\32xl\:-mr-20{margin-right:-5rem!important}.\32xl\:-mb-20{margin-bottom:-5rem!important}.\32xl\:-ml-20{margin-left:-5rem!important}.\32xl\:-mt-24{margin-top:-6rem!important}.\32xl\:-mr-24{margin-right:-6rem!important}.\32xl\:-mb-24{margin-bottom:-6rem!important}.\32xl\:-ml-24{margin-left:-6rem!important}.\32xl\:-mt-28{margin-top:-7rem!important}.\32xl\:-mr-28{margin-right:-7rem!important}.\32xl\:-mb-28{margin-bottom:-7rem!important}.\32xl\:-ml-28{margin-left:-7rem!important}.\32xl\:-mt-32{margin-top:-8rem!important}.\32xl\:-mr-32{margin-right:-8rem!important}.\32xl\:-mb-32{margin-bottom:-8rem!important}.\32xl\:-ml-32{margin-left:-8rem!important}.\32xl\:-mt-36{margin-top:-9rem!important}.\32xl\:-mr-36{margin-right:-9rem!important}.\32xl\:-mb-36{margin-bottom:-9rem!important}.\32xl\:-ml-36{margin-left:-9rem!important}.\32xl\:-mt-40{margin-top:-10rem!important}.\32xl\:-mr-40{margin-right:-10rem!important}.\32xl\:-mb-40{margin-bottom:-10rem!important}.\32xl\:-ml-40{margin-left:-10rem!important}.\32xl\:-mt-48{margin-top:-12rem!important}.\32xl\:-mr-48{margin-right:-12rem!important}.\32xl\:-mb-48{margin-bottom:-12rem!important}.\32xl\:-ml-48{margin-left:-12rem!important}.\32xl\:-mt-56{margin-top:-14rem!important}.\32xl\:-mr-56{margin-right:-14rem!important}.\32xl\:-mb-56{margin-bottom:-14rem!important}.\32xl\:-ml-56{margin-left:-14rem!important}.\32xl\:-mt-60{margin-top:-15rem!important}.\32xl\:-mr-60{margin-right:-15rem!important}.\32xl\:-mb-60{margin-bottom:-15rem!important}.\32xl\:-ml-60{margin-left:-15rem!important}.\32xl\:-mt-64{margin-top:-16rem!important}.\32xl\:-mr-64{margin-right:-16rem!important}.\32xl\:-mb-64{margin-bottom:-16rem!important}.\32xl\:-ml-64{margin-left:-16rem!important}.\32xl\:-mt-72{margin-top:-18rem!important}.\32xl\:-mr-72{margin-right:-18rem!important}.\32xl\:-mb-72{margin-bottom:-18rem!important}.\32xl\:-ml-72{margin-left:-18rem!important}.\32xl\:-mt-80{margin-top:-20rem!important}.\32xl\:-mr-80{margin-right:-20rem!important}.\32xl\:-mb-80{margin-bottom:-20rem!important}.\32xl\:-ml-80{margin-left:-20rem!important}.\32xl\:-mt-96{margin-top:-24rem!important}.\32xl\:-mr-96{margin-right:-24rem!important}.\32xl\:-mb-96{margin-bottom:-24rem!important}.\32xl\:-ml-96{margin-left:-24rem!important}.\32xl\:-mt-px{margin-top:-1px!important}.\32xl\:-mr-px{margin-right:-1px!important}.\32xl\:-mb-px{margin-bottom:-1px!important}.\32xl\:-ml-px{margin-left:-1px!important}.\32xl\:-mt-0\.5{margin-top:-.125rem!important}.\32xl\:-mr-0\.5{margin-right:-.125rem!important}.\32xl\:-mb-0\.5{margin-bottom:-.125rem!important}.\32xl\:-ml-0\.5{margin-left:-.125rem!important}.\32xl\:-mt-1\.5{margin-top:-.375rem!important}.\32xl\:-mr-1\.5{margin-right:-.375rem!important}.\32xl\:-mb-1\.5{margin-bottom:-.375rem!important}.\32xl\:-ml-1\.5{margin-left:-.375rem!important}.\32xl\:-mt-2\.5{margin-top:-.625rem!important}.\32xl\:-mr-2\.5{margin-right:-.625rem!important}.\32xl\:-mb-2\.5{margin-bottom:-.625rem!important}.\32xl\:-ml-2\.5{margin-left:-.625rem!important}.\32xl\:-mt-3\.5{margin-top:-.875rem!important}.\32xl\:-mr-3\.5{margin-right:-.875rem!important}.\32xl\:-mb-3\.5{margin-bottom:-.875rem!important}.\32xl\:-ml-3\.5{margin-left:-.875rem!important}.\32xl\:-mt-1\/2{margin-top:-50%!important}.\32xl\:-mr-1\/2{margin-right:-50%!important}.\32xl\:-mb-1\/2{margin-bottom:-50%!important}.\32xl\:-ml-1\/2{margin-left:-50%!important}.\32xl\:-mt-1\/3{margin-top:-33.33333%!important}.\32xl\:-mr-1\/3{margin-right:-33.33333%!important}.\32xl\:-mb-1\/3{margin-bottom:-33.33333%!important}.\32xl\:-ml-1\/3{margin-left:-33.33333%!important}.\32xl\:-mt-2\/3{margin-top:-66.66667%!important}.\32xl\:-mr-2\/3{margin-right:-66.66667%!important}.\32xl\:-mb-2\/3{margin-bottom:-66.66667%!important}.\32xl\:-ml-2\/3{margin-left:-66.66667%!important}.\32xl\:-mt-1\/4{margin-top:-25%!important}.\32xl\:-mr-1\/4{margin-right:-25%!important}.\32xl\:-mb-1\/4{margin-bottom:-25%!important}.\32xl\:-ml-1\/4{margin-left:-25%!important}.\32xl\:-mt-2\/4{margin-top:-50%!important}.\32xl\:-mr-2\/4{margin-right:-50%!important}.\32xl\:-mb-2\/4{margin-bottom:-50%!important}.\32xl\:-ml-2\/4{margin-left:-50%!important}.\32xl\:-mt-3\/4{margin-top:-75%!important}.\32xl\:-mr-3\/4{margin-right:-75%!important}.\32xl\:-mb-3\/4{margin-bottom:-75%!important}.\32xl\:-ml-3\/4{margin-left:-75%!important}.\32xl\:-mt-1\/5{margin-top:-20%!important}.\32xl\:-mr-1\/5{margin-right:-20%!important}.\32xl\:-mb-1\/5{margin-bottom:-20%!important}.\32xl\:-ml-1\/5{margin-left:-20%!important}.\32xl\:-mt-2\/5{margin-top:-40%!important}.\32xl\:-mr-2\/5{margin-right:-40%!important}.\32xl\:-mb-2\/5{margin-bottom:-40%!important}.\32xl\:-ml-2\/5{margin-left:-40%!important}.\32xl\:-mt-3\/5{margin-top:-60%!important}.\32xl\:-mr-3\/5{margin-right:-60%!important}.\32xl\:-mb-3\/5{margin-bottom:-60%!important}.\32xl\:-ml-3\/5{margin-left:-60%!important}.\32xl\:-mt-4\/5{margin-top:-80%!important}.\32xl\:-mr-4\/5{margin-right:-80%!important}.\32xl\:-mb-4\/5{margin-bottom:-80%!important}.\32xl\:-ml-4\/5{margin-left:-80%!important}.\32xl\:-mt-1\/6{margin-top:-16.66667%!important}.\32xl\:-mr-1\/6{margin-right:-16.66667%!important}.\32xl\:-mb-1\/6{margin-bottom:-16.66667%!important}.\32xl\:-ml-1\/6{margin-left:-16.66667%!important}.\32xl\:-mt-2\/6{margin-top:-33.33333%!important}.\32xl\:-mr-2\/6{margin-right:-33.33333%!important}.\32xl\:-mb-2\/6{margin-bottom:-33.33333%!important}.\32xl\:-ml-2\/6{margin-left:-33.33333%!important}.\32xl\:-mt-3\/6{margin-top:-50%!important}.\32xl\:-mr-3\/6{margin-right:-50%!important}.\32xl\:-mb-3\/6{margin-bottom:-50%!important}.\32xl\:-ml-3\/6{margin-left:-50%!important}.\32xl\:-mt-4\/6{margin-top:-66.66667%!important}.\32xl\:-mr-4\/6{margin-right:-66.66667%!important}.\32xl\:-mb-4\/6{margin-bottom:-66.66667%!important}.\32xl\:-ml-4\/6{margin-left:-66.66667%!important}.\32xl\:-mt-5\/6{margin-top:-83.33333%!important}.\32xl\:-mr-5\/6{margin-right:-83.33333%!important}.\32xl\:-mb-5\/6{margin-bottom:-83.33333%!important}.\32xl\:-ml-5\/6{margin-left:-83.33333%!important}.\32xl\:-mt-1\/12{margin-top:-8.33333%!important}.\32xl\:-mr-1\/12{margin-right:-8.33333%!important}.\32xl\:-mb-1\/12{margin-bottom:-8.33333%!important}.\32xl\:-ml-1\/12{margin-left:-8.33333%!important}.\32xl\:-mt-2\/12{margin-top:-16.66667%!important}.\32xl\:-mr-2\/12{margin-right:-16.66667%!important}.\32xl\:-mb-2\/12{margin-bottom:-16.66667%!important}.\32xl\:-ml-2\/12{margin-left:-16.66667%!important}.\32xl\:-mt-3\/12{margin-top:-25%!important}.\32xl\:-mr-3\/12{margin-right:-25%!important}.\32xl\:-mb-3\/12{margin-bottom:-25%!important}.\32xl\:-ml-3\/12{margin-left:-25%!important}.\32xl\:-mt-4\/12{margin-top:-33.33333%!important}.\32xl\:-mr-4\/12{margin-right:-33.33333%!important}.\32xl\:-mb-4\/12{margin-bottom:-33.33333%!important}.\32xl\:-ml-4\/12{margin-left:-33.33333%!important}.\32xl\:-mt-5\/12{margin-top:-41.66667%!important}.\32xl\:-mr-5\/12{margin-right:-41.66667%!important}.\32xl\:-mb-5\/12{margin-bottom:-41.66667%!important}.\32xl\:-ml-5\/12{margin-left:-41.66667%!important}.\32xl\:-mt-6\/12{margin-top:-50%!important}.\32xl\:-mr-6\/12{margin-right:-50%!important}.\32xl\:-mb-6\/12{margin-bottom:-50%!important}.\32xl\:-ml-6\/12{margin-left:-50%!important}.\32xl\:-mt-7\/12{margin-top:-58.33333%!important}.\32xl\:-mr-7\/12{margin-right:-58.33333%!important}.\32xl\:-mb-7\/12{margin-bottom:-58.33333%!important}.\32xl\:-ml-7\/12{margin-left:-58.33333%!important}.\32xl\:-mt-8\/12{margin-top:-66.66667%!important}.\32xl\:-mr-8\/12{margin-right:-66.66667%!important}.\32xl\:-mb-8\/12{margin-bottom:-66.66667%!important}.\32xl\:-ml-8\/12{margin-left:-66.66667%!important}.\32xl\:-mt-9\/12{margin-top:-75%!important}.\32xl\:-mr-9\/12{margin-right:-75%!important}.\32xl\:-mb-9\/12{margin-bottom:-75%!important}.\32xl\:-ml-9\/12{margin-left:-75%!important}.\32xl\:-mt-10\/12{margin-top:-83.33333%!important}.\32xl\:-mr-10\/12{margin-right:-83.33333%!important}.\32xl\:-mb-10\/12{margin-bottom:-83.33333%!important}.\32xl\:-ml-10\/12{margin-left:-83.33333%!important}.\32xl\:-mt-11\/12{margin-top:-91.66667%!important}.\32xl\:-mr-11\/12{margin-right:-91.66667%!important}.\32xl\:-mb-11\/12{margin-bottom:-91.66667%!important}.\32xl\:-ml-11\/12{margin-left:-91.66667%!important}.\32xl\:-mt-full{margin-top:-100%!important}.\32xl\:-mr-full{margin-right:-100%!important}.\32xl\:-mb-full{margin-bottom:-100%!important}.\32xl\:-ml-full{margin-left:-100%!important}[dir=ltr] .\32xl\:ltr\:m-0{margin:0!important}[dir=ltr] .\32xl\:ltr\:m-1{margin:.25rem!important}[dir=ltr] .\32xl\:ltr\:m-2{margin:.5rem!important}[dir=ltr] .\32xl\:ltr\:m-3{margin:.75rem!important}[dir=ltr] .\32xl\:ltr\:m-4{margin:1rem!important}[dir=ltr] .\32xl\:ltr\:m-5{margin:1.25rem!important}[dir=ltr] .\32xl\:ltr\:m-6{margin:1.5rem!important}[dir=ltr] .\32xl\:ltr\:m-7{margin:1.75rem!important}[dir=ltr] .\32xl\:ltr\:m-8{margin:2rem!important}[dir=ltr] .\32xl\:ltr\:m-9{margin:2.25rem!important}[dir=ltr] .\32xl\:ltr\:m-10{margin:2.5rem!important}[dir=ltr] .\32xl\:ltr\:m-11{margin:2.75rem!important}[dir=ltr] .\32xl\:ltr\:m-12{margin:3rem!important}[dir=ltr] .\32xl\:ltr\:m-13{margin:3.25rem!important}[dir=ltr] .\32xl\:ltr\:m-14{margin:3.5rem!important}[dir=ltr] .\32xl\:ltr\:m-15{margin:3.75rem!important}[dir=ltr] .\32xl\:ltr\:m-16{margin:4rem!important}[dir=ltr] .\32xl\:ltr\:m-20{margin:5rem!important}[dir=ltr] .\32xl\:ltr\:m-24{margin:6rem!important}[dir=ltr] .\32xl\:ltr\:m-28{margin:7rem!important}[dir=ltr] .\32xl\:ltr\:m-32{margin:8rem!important}[dir=ltr] .\32xl\:ltr\:m-36{margin:9rem!important}[dir=ltr] .\32xl\:ltr\:m-40{margin:10rem!important}[dir=ltr] .\32xl\:ltr\:m-48{margin:12rem!important}[dir=ltr] .\32xl\:ltr\:m-56{margin:14rem!important}[dir=ltr] .\32xl\:ltr\:m-60{margin:15rem!important}[dir=ltr] .\32xl\:ltr\:m-64{margin:16rem!important}[dir=ltr] .\32xl\:ltr\:m-72{margin:18rem!important}[dir=ltr] .\32xl\:ltr\:m-80{margin:20rem!important}[dir=ltr] .\32xl\:ltr\:m-96{margin:24rem!important}[dir=ltr] .\32xl\:ltr\:m-auto{margin:auto!important}[dir=ltr] .\32xl\:ltr\:m-px{margin:1px!important}[dir=ltr] .\32xl\:ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .\32xl\:ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .\32xl\:ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .\32xl\:ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .\32xl\:ltr\:m-1\/2{margin:50%!important}[dir=ltr] .\32xl\:ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .\32xl\:ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .\32xl\:ltr\:m-1\/4{margin:25%!important}[dir=ltr] .\32xl\:ltr\:m-2\/4{margin:50%!important}[dir=ltr] .\32xl\:ltr\:m-3\/4{margin:75%!important}[dir=ltr] .\32xl\:ltr\:m-1\/5{margin:20%!important}[dir=ltr] .\32xl\:ltr\:m-2\/5{margin:40%!important}[dir=ltr] .\32xl\:ltr\:m-3\/5{margin:60%!important}[dir=ltr] .\32xl\:ltr\:m-4\/5{margin:80%!important}[dir=ltr] .\32xl\:ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .\32xl\:ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .\32xl\:ltr\:m-3\/6{margin:50%!important}[dir=ltr] .\32xl\:ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .\32xl\:ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .\32xl\:ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .\32xl\:ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .\32xl\:ltr\:m-3\/12{margin:25%!important}[dir=ltr] .\32xl\:ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .\32xl\:ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .\32xl\:ltr\:m-6\/12{margin:50%!important}[dir=ltr] .\32xl\:ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .\32xl\:ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .\32xl\:ltr\:m-9\/12{margin:75%!important}[dir=ltr] .\32xl\:ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .\32xl\:ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .\32xl\:ltr\:m-full{margin:100%!important}[dir=ltr] .\32xl\:ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .\32xl\:ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .\32xl\:ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .\32xl\:ltr\:-m-4{margin:-1rem!important}[dir=ltr] .\32xl\:ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .\32xl\:ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .\32xl\:ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .\32xl\:ltr\:-m-8{margin:-2rem!important}[dir=ltr] .\32xl\:ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .\32xl\:ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .\32xl\:ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .\32xl\:ltr\:-m-12{margin:-3rem!important}[dir=ltr] .\32xl\:ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .\32xl\:ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .\32xl\:ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .\32xl\:ltr\:-m-16{margin:-4rem!important}[dir=ltr] .\32xl\:ltr\:-m-20{margin:-5rem!important}[dir=ltr] .\32xl\:ltr\:-m-24{margin:-6rem!important}[dir=ltr] .\32xl\:ltr\:-m-28{margin:-7rem!important}[dir=ltr] .\32xl\:ltr\:-m-32{margin:-8rem!important}[dir=ltr] .\32xl\:ltr\:-m-36{margin:-9rem!important}[dir=ltr] .\32xl\:ltr\:-m-40{margin:-10rem!important}[dir=ltr] .\32xl\:ltr\:-m-48{margin:-12rem!important}[dir=ltr] .\32xl\:ltr\:-m-56{margin:-14rem!important}[dir=ltr] .\32xl\:ltr\:-m-60{margin:-15rem!important}[dir=ltr] .\32xl\:ltr\:-m-64{margin:-16rem!important}[dir=ltr] .\32xl\:ltr\:-m-72{margin:-18rem!important}[dir=ltr] .\32xl\:ltr\:-m-80{margin:-20rem!important}[dir=ltr] .\32xl\:ltr\:-m-96{margin:-24rem!important}[dir=ltr] .\32xl\:ltr\:-m-px{margin:-1px!important}[dir=ltr] .\32xl\:ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .\32xl\:ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .\32xl\:ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .\32xl\:ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .\32xl\:ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .\32xl\:ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .\32xl\:ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .\32xl\:ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .\32xl\:ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .\32xl\:ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .\32xl\:ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .\32xl\:ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .\32xl\:ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .\32xl\:ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .\32xl\:ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .\32xl\:ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .\32xl\:ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .\32xl\:ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .\32xl\:ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .\32xl\:ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .\32xl\:ltr\:-m-full{margin:-100%!important}[dir=ltr] .\32xl\:ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .\32xl\:ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .\32xl\:ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .\32xl\:ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .\32xl\:ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .\32xl\:ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .\32xl\:ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .\32xl\:ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .\32xl\:ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .\32xl\:ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .\32xl\:ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .\32xl\:ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .\32xl\:ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .\32xl\:ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .\32xl\:ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .\32xl\:ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .\32xl\:ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .\32xl\:ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .\32xl\:ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .\32xl\:ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .\32xl\:ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .\32xl\:ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .\32xl\:ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .\32xl\:ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .\32xl\:ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .\32xl\:ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .\32xl\:ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .\32xl\:ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .\32xl\:ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .\32xl\:ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .\32xl\:ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .\32xl\:ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .\32xl\:ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .\32xl\:ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .\32xl\:ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .\32xl\:ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .\32xl\:ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .\32xl\:ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .\32xl\:ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .\32xl\:ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .\32xl\:ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .\32xl\:ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .\32xl\:ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .\32xl\:ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .\32xl\:ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .\32xl\:ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .\32xl\:ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .\32xl\:ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .\32xl\:ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .\32xl\:ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .\32xl\:ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .\32xl\:ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .\32xl\:ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .\32xl\:ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .\32xl\:ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .\32xl\:ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .\32xl\:ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .\32xl\:ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .\32xl\:ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .\32xl\:ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .\32xl\:ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .\32xl\:ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .\32xl\:ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .\32xl\:ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .\32xl\:ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .\32xl\:ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .\32xl\:ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .\32xl\:ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .\32xl\:ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .\32xl\:ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .\32xl\:ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .\32xl\:ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .\32xl\:ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .\32xl\:ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .\32xl\:ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .\32xl\:ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .\32xl\:ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .\32xl\:ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .\32xl\:ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .\32xl\:ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .\32xl\:ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .\32xl\:ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .\32xl\:ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .\32xl\:ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .\32xl\:ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .\32xl\:ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .\32xl\:ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .\32xl\:ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .\32xl\:ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .\32xl\:ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .\32xl\:ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .\32xl\:ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .\32xl\:ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .\32xl\:ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .\32xl\:ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .\32xl\:ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .\32xl\:ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .\32xl\:ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .\32xl\:ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .\32xl\:ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .\32xl\:ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .\32xl\:ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .\32xl\:ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .\32xl\:ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .\32xl\:ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .\32xl\:ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .\32xl\:ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .\32xl\:ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .\32xl\:ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .\32xl\:ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .\32xl\:ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .\32xl\:ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .\32xl\:ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .\32xl\:ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .\32xl\:ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .\32xl\:ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .\32xl\:ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .\32xl\:ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .\32xl\:ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .\32xl\:ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .\32xl\:ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .\32xl\:ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .\32xl\:ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .\32xl\:ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .\32xl\:ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .\32xl\:ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .\32xl\:ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .\32xl\:ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .\32xl\:ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .\32xl\:ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .\32xl\:ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .\32xl\:ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .\32xl\:ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .\32xl\:ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .\32xl\:ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .\32xl\:ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .\32xl\:ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .\32xl\:ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .\32xl\:ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .\32xl\:ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .\32xl\:ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .\32xl\:ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .\32xl\:ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .\32xl\:ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .\32xl\:ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .\32xl\:ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .\32xl\:ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .\32xl\:ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .\32xl\:ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .\32xl\:ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .\32xl\:ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .\32xl\:ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .\32xl\:ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .\32xl\:ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .\32xl\:ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .\32xl\:ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .\32xl\:ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .\32xl\:ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .\32xl\:ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .\32xl\:ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .\32xl\:ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .\32xl\:ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .\32xl\:ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .\32xl\:ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .\32xl\:ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .\32xl\:ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .\32xl\:ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .\32xl\:ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .\32xl\:ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .\32xl\:ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .\32xl\:ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .\32xl\:ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .\32xl\:ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .\32xl\:ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .\32xl\:ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .\32xl\:ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .\32xl\:ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .\32xl\:ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .\32xl\:ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .\32xl\:ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .\32xl\:ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .\32xl\:ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .\32xl\:ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .\32xl\:ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .\32xl\:ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .\32xl\:ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .\32xl\:ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .\32xl\:ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .\32xl\:ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .\32xl\:ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .\32xl\:ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .\32xl\:ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .\32xl\:ltr\:mt-0{margin-top:0!important}[dir=ltr] .\32xl\:ltr\:mr-0{margin-right:0!important}[dir=ltr] .\32xl\:ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .\32xl\:ltr\:ml-0{margin-left:0!important}[dir=ltr] .\32xl\:ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .\32xl\:ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .\32xl\:ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .\32xl\:ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .\32xl\:ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .\32xl\:ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .\32xl\:ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .\32xl\:ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .\32xl\:ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .\32xl\:ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .\32xl\:ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .\32xl\:ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .\32xl\:ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .\32xl\:ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .\32xl\:ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .\32xl\:ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .\32xl\:ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .\32xl\:ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .\32xl\:ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .\32xl\:ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .\32xl\:ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .\32xl\:ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .\32xl\:ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .\32xl\:ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .\32xl\:ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .\32xl\:ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .\32xl\:ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .\32xl\:ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .\32xl\:ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .\32xl\:ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .\32xl\:ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .\32xl\:ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .\32xl\:ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .\32xl\:ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .\32xl\:ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .\32xl\:ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .\32xl\:ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .\32xl\:ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .\32xl\:ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .\32xl\:ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .\32xl\:ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .\32xl\:ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .\32xl\:ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .\32xl\:ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .\32xl\:ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .\32xl\:ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .\32xl\:ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .\32xl\:ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .\32xl\:ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .\32xl\:ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .\32xl\:ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .\32xl\:ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .\32xl\:ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .\32xl\:ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .\32xl\:ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .\32xl\:ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .\32xl\:ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .\32xl\:ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .\32xl\:ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .\32xl\:ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .\32xl\:ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .\32xl\:ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .\32xl\:ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .\32xl\:ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .\32xl\:ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .\32xl\:ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .\32xl\:ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .\32xl\:ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .\32xl\:ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .\32xl\:ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .\32xl\:ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .\32xl\:ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .\32xl\:ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .\32xl\:ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .\32xl\:ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .\32xl\:ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .\32xl\:ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .\32xl\:ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .\32xl\:ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .\32xl\:ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .\32xl\:ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .\32xl\:ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .\32xl\:ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .\32xl\:ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .\32xl\:ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .\32xl\:ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .\32xl\:ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .\32xl\:ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .\32xl\:ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .\32xl\:ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .\32xl\:ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .\32xl\:ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .\32xl\:ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .\32xl\:ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .\32xl\:ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .\32xl\:ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .\32xl\:ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .\32xl\:ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .\32xl\:ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .\32xl\:ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .\32xl\:ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .\32xl\:ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .\32xl\:ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .\32xl\:ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .\32xl\:ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .\32xl\:ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .\32xl\:ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .\32xl\:ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .\32xl\:ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .\32xl\:ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .\32xl\:ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .\32xl\:ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .\32xl\:ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .\32xl\:ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .\32xl\:ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .\32xl\:ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .\32xl\:ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .\32xl\:ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .\32xl\:ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .\32xl\:ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .\32xl\:ltr\:mt-px{margin-top:1px!important}[dir=ltr] .\32xl\:ltr\:mr-px{margin-right:1px!important}[dir=ltr] .\32xl\:ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .\32xl\:ltr\:ml-px{margin-left:1px!important}[dir=ltr] .\32xl\:ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .\32xl\:ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .\32xl\:ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .\32xl\:ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .\32xl\:ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .\32xl\:ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .\32xl\:ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .\32xl\:ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .\32xl\:ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .\32xl\:ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .\32xl\:ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .\32xl\:ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .\32xl\:ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .\32xl\:ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .\32xl\:ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .\32xl\:ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .\32xl\:ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .\32xl\:ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .\32xl\:ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .\32xl\:ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .\32xl\:ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .\32xl\:ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .\32xl\:ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .\32xl\:ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .\32xl\:ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .\32xl\:ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .\32xl\:ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .\32xl\:ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .\32xl\:ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .\32xl\:ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .\32xl\:ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .\32xl\:ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .\32xl\:ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .\32xl\:ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .\32xl\:ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .\32xl\:ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .\32xl\:ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .\32xl\:ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .\32xl\:ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .\32xl\:ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .\32xl\:ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .\32xl\:ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .\32xl\:ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .\32xl\:ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .\32xl\:ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .\32xl\:ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .\32xl\:ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .\32xl\:ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .\32xl\:ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .\32xl\:ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .\32xl\:ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .\32xl\:ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .\32xl\:ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .\32xl\:ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .\32xl\:ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .\32xl\:ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .\32xl\:ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .\32xl\:ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .\32xl\:ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .\32xl\:ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .\32xl\:ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .\32xl\:ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .\32xl\:ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .\32xl\:ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .\32xl\:ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .\32xl\:ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .\32xl\:ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .\32xl\:ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .\32xl\:ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .\32xl\:ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .\32xl\:ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .\32xl\:ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .\32xl\:ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .\32xl\:ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .\32xl\:ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .\32xl\:ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .\32xl\:ltr\:mt-full{margin-top:100%!important}[dir=ltr] .\32xl\:ltr\:mr-full{margin-right:100%!important}[dir=ltr] .\32xl\:ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .\32xl\:ltr\:ml-full{margin-left:100%!important}[dir=ltr] .\32xl\:ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .\32xl\:ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .\32xl\:ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .\32xl\:ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .\32xl\:ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .\32xl\:ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .\32xl\:ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .\32xl\:ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .\32xl\:ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .\32xl\:ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .\32xl\:ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .\32xl\:ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .\32xl\:ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .\32xl\:ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .\32xl\:ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .\32xl\:ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .\32xl\:ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .\32xl\:ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .\32xl\:ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .\32xl\:ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .\32xl\:ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .\32xl\:ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .\32xl\:ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .\32xl\:ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .\32xl\:ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .\32xl\:ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .\32xl\:ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .\32xl\:ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .\32xl\:ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .\32xl\:ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .\32xl\:ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .\32xl\:ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .\32xl\:ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .\32xl\:ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .\32xl\:ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .\32xl\:ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .\32xl\:ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .\32xl\:ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .\32xl\:ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .\32xl\:ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .\32xl\:ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .\32xl\:ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .\32xl\:ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .\32xl\:ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .\32xl\:ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .\32xl\:ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .\32xl\:ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .\32xl\:ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .\32xl\:ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .\32xl\:ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .\32xl\:ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .\32xl\:ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .\32xl\:ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .\32xl\:ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .\32xl\:ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .\32xl\:ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .\32xl\:ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .\32xl\:ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .\32xl\:ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .\32xl\:ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .\32xl\:ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .\32xl\:ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .\32xl\:ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .\32xl\:ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .\32xl\:ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .\32xl\:ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .\32xl\:ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .\32xl\:ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .\32xl\:ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .\32xl\:ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .\32xl\:ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .\32xl\:ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .\32xl\:ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .\32xl\:ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .\32xl\:ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .\32xl\:ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .\32xl\:ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .\32xl\:ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .\32xl\:ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .\32xl\:ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .\32xl\:ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .\32xl\:ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .\32xl\:ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .\32xl\:ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .\32xl\:ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .\32xl\:ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .\32xl\:ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .\32xl\:ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .\32xl\:ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .\32xl\:ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .\32xl\:ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .\32xl\:ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .\32xl\:ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .\32xl\:ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .\32xl\:ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .\32xl\:ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .\32xl\:ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .\32xl\:ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .\32xl\:ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .\32xl\:ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .\32xl\:ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .\32xl\:ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .\32xl\:ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .\32xl\:ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .\32xl\:ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .\32xl\:ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .\32xl\:ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .\32xl\:ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .\32xl\:ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .\32xl\:ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .\32xl\:ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .\32xl\:ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .\32xl\:ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .\32xl\:ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .\32xl\:ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .\32xl\:ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .\32xl\:ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .\32xl\:ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .\32xl\:ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .\32xl\:ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .\32xl\:ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .\32xl\:ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .\32xl\:ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .\32xl\:ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .\32xl\:ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .\32xl\:ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .\32xl\:ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .\32xl\:ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .\32xl\:ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .\32xl\:ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .\32xl\:ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .\32xl\:ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .\32xl\:ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .\32xl\:ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .\32xl\:ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .\32xl\:ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .\32xl\:ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .\32xl\:ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .\32xl\:ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .\32xl\:ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .\32xl\:ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .\32xl\:ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .\32xl\:ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .\32xl\:ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .\32xl\:ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .\32xl\:ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .\32xl\:ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .\32xl\:ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .\32xl\:ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .\32xl\:ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .\32xl\:ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .\32xl\:ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .\32xl\:ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .\32xl\:ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .\32xl\:ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .\32xl\:ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .\32xl\:ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .\32xl\:ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .\32xl\:ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .\32xl\:ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .\32xl\:ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .\32xl\:ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .\32xl\:ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .\32xl\:ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .\32xl\:ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .\32xl\:ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .\32xl\:ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .\32xl\:ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .\32xl\:ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .\32xl\:ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .\32xl\:ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .\32xl\:ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .\32xl\:ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .\32xl\:ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .\32xl\:ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .\32xl\:ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .\32xl\:ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .\32xl\:ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .\32xl\:ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .\32xl\:ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .\32xl\:ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .\32xl\:ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .\32xl\:ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .\32xl\:ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .\32xl\:ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .\32xl\:ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .\32xl\:ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .\32xl\:ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .\32xl\:ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .\32xl\:ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .\32xl\:ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .\32xl\:ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .\32xl\:ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .\32xl\:ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .\32xl\:ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .\32xl\:ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .\32xl\:ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .\32xl\:ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .\32xl\:ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .\32xl\:ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .\32xl\:ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .\32xl\:ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .\32xl\:rtl\:m-0{margin:0!important}[dir=rtl] .\32xl\:rtl\:m-1{margin:.25rem!important}[dir=rtl] .\32xl\:rtl\:m-2{margin:.5rem!important}[dir=rtl] .\32xl\:rtl\:m-3{margin:.75rem!important}[dir=rtl] .\32xl\:rtl\:m-4{margin:1rem!important}[dir=rtl] .\32xl\:rtl\:m-5{margin:1.25rem!important}[dir=rtl] .\32xl\:rtl\:m-6{margin:1.5rem!important}[dir=rtl] .\32xl\:rtl\:m-7{margin:1.75rem!important}[dir=rtl] .\32xl\:rtl\:m-8{margin:2rem!important}[dir=rtl] .\32xl\:rtl\:m-9{margin:2.25rem!important}[dir=rtl] .\32xl\:rtl\:m-10{margin:2.5rem!important}[dir=rtl] .\32xl\:rtl\:m-11{margin:2.75rem!important}[dir=rtl] .\32xl\:rtl\:m-12{margin:3rem!important}[dir=rtl] .\32xl\:rtl\:m-13{margin:3.25rem!important}[dir=rtl] .\32xl\:rtl\:m-14{margin:3.5rem!important}[dir=rtl] .\32xl\:rtl\:m-15{margin:3.75rem!important}[dir=rtl] .\32xl\:rtl\:m-16{margin:4rem!important}[dir=rtl] .\32xl\:rtl\:m-20{margin:5rem!important}[dir=rtl] .\32xl\:rtl\:m-24{margin:6rem!important}[dir=rtl] .\32xl\:rtl\:m-28{margin:7rem!important}[dir=rtl] .\32xl\:rtl\:m-32{margin:8rem!important}[dir=rtl] .\32xl\:rtl\:m-36{margin:9rem!important}[dir=rtl] .\32xl\:rtl\:m-40{margin:10rem!important}[dir=rtl] .\32xl\:rtl\:m-48{margin:12rem!important}[dir=rtl] .\32xl\:rtl\:m-56{margin:14rem!important}[dir=rtl] .\32xl\:rtl\:m-60{margin:15rem!important}[dir=rtl] .\32xl\:rtl\:m-64{margin:16rem!important}[dir=rtl] .\32xl\:rtl\:m-72{margin:18rem!important}[dir=rtl] .\32xl\:rtl\:m-80{margin:20rem!important}[dir=rtl] .\32xl\:rtl\:m-96{margin:24rem!important}[dir=rtl] .\32xl\:rtl\:m-auto{margin:auto!important}[dir=rtl] .\32xl\:rtl\:m-px{margin:1px!important}[dir=rtl] .\32xl\:rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .\32xl\:rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .\32xl\:rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .\32xl\:rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .\32xl\:rtl\:m-1\/2{margin:50%!important}[dir=rtl] .\32xl\:rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .\32xl\:rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .\32xl\:rtl\:m-1\/4{margin:25%!important}[dir=rtl] .\32xl\:rtl\:m-2\/4{margin:50%!important}[dir=rtl] .\32xl\:rtl\:m-3\/4{margin:75%!important}[dir=rtl] .\32xl\:rtl\:m-1\/5{margin:20%!important}[dir=rtl] .\32xl\:rtl\:m-2\/5{margin:40%!important}[dir=rtl] .\32xl\:rtl\:m-3\/5{margin:60%!important}[dir=rtl] .\32xl\:rtl\:m-4\/5{margin:80%!important}[dir=rtl] .\32xl\:rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .\32xl\:rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .\32xl\:rtl\:m-3\/6{margin:50%!important}[dir=rtl] .\32xl\:rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .\32xl\:rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .\32xl\:rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .\32xl\:rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .\32xl\:rtl\:m-3\/12{margin:25%!important}[dir=rtl] .\32xl\:rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .\32xl\:rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .\32xl\:rtl\:m-6\/12{margin:50%!important}[dir=rtl] .\32xl\:rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .\32xl\:rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .\32xl\:rtl\:m-9\/12{margin:75%!important}[dir=rtl] .\32xl\:rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .\32xl\:rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .\32xl\:rtl\:m-full{margin:100%!important}[dir=rtl] .\32xl\:rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .\32xl\:rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .\32xl\:rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .\32xl\:rtl\:-m-4{margin:-1rem!important}[dir=rtl] .\32xl\:rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .\32xl\:rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .\32xl\:rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .\32xl\:rtl\:-m-8{margin:-2rem!important}[dir=rtl] .\32xl\:rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .\32xl\:rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .\32xl\:rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .\32xl\:rtl\:-m-12{margin:-3rem!important}[dir=rtl] .\32xl\:rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .\32xl\:rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .\32xl\:rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .\32xl\:rtl\:-m-16{margin:-4rem!important}[dir=rtl] .\32xl\:rtl\:-m-20{margin:-5rem!important}[dir=rtl] .\32xl\:rtl\:-m-24{margin:-6rem!important}[dir=rtl] .\32xl\:rtl\:-m-28{margin:-7rem!important}[dir=rtl] .\32xl\:rtl\:-m-32{margin:-8rem!important}[dir=rtl] .\32xl\:rtl\:-m-36{margin:-9rem!important}[dir=rtl] .\32xl\:rtl\:-m-40{margin:-10rem!important}[dir=rtl] .\32xl\:rtl\:-m-48{margin:-12rem!important}[dir=rtl] .\32xl\:rtl\:-m-56{margin:-14rem!important}[dir=rtl] .\32xl\:rtl\:-m-60{margin:-15rem!important}[dir=rtl] .\32xl\:rtl\:-m-64{margin:-16rem!important}[dir=rtl] .\32xl\:rtl\:-m-72{margin:-18rem!important}[dir=rtl] .\32xl\:rtl\:-m-80{margin:-20rem!important}[dir=rtl] .\32xl\:rtl\:-m-96{margin:-24rem!important}[dir=rtl] .\32xl\:rtl\:-m-px{margin:-1px!important}[dir=rtl] .\32xl\:rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .\32xl\:rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .\32xl\:rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .\32xl\:rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .\32xl\:rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .\32xl\:rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .\32xl\:rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .\32xl\:rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .\32xl\:rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .\32xl\:rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .\32xl\:rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .\32xl\:rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .\32xl\:rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .\32xl\:rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .\32xl\:rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .\32xl\:rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .\32xl\:rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .\32xl\:rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .\32xl\:rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .\32xl\:rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .\32xl\:rtl\:-m-full{margin:-100%!important}[dir=rtl] .\32xl\:rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .\32xl\:rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .\32xl\:rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .\32xl\:rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .\32xl\:rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .\32xl\:rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .\32xl\:rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .\32xl\:rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .\32xl\:rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .\32xl\:rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .\32xl\:rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .\32xl\:rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .\32xl\:rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .\32xl\:rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .\32xl\:rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .\32xl\:rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .\32xl\:rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .\32xl\:rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .\32xl\:rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .\32xl\:rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .\32xl\:rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .\32xl\:rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .\32xl\:rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .\32xl\:rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .\32xl\:rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .\32xl\:rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .\32xl\:rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .\32xl\:rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .\32xl\:rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .\32xl\:rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .\32xl\:rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .\32xl\:rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .\32xl\:rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .\32xl\:rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .\32xl\:rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .\32xl\:rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .\32xl\:rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .\32xl\:rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .\32xl\:rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .\32xl\:rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .\32xl\:rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .\32xl\:rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .\32xl\:rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .\32xl\:rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .\32xl\:rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .\32xl\:rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .\32xl\:rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .\32xl\:rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .\32xl\:rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .\32xl\:rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .\32xl\:rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .\32xl\:rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .\32xl\:rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .\32xl\:rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .\32xl\:rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .\32xl\:rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .\32xl\:rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .\32xl\:rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .\32xl\:rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .\32xl\:rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .\32xl\:rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .\32xl\:rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .\32xl\:rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .\32xl\:rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .\32xl\:rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .\32xl\:rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .\32xl\:rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .\32xl\:rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .\32xl\:rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .\32xl\:rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .\32xl\:rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .\32xl\:rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .\32xl\:rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .\32xl\:rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .\32xl\:rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .\32xl\:rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .\32xl\:rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .\32xl\:rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .\32xl\:rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .\32xl\:rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .\32xl\:rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .\32xl\:rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .\32xl\:rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .\32xl\:rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .\32xl\:rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .\32xl\:rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .\32xl\:rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .\32xl\:rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .\32xl\:rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .\32xl\:rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .\32xl\:rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .\32xl\:rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .\32xl\:rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .\32xl\:rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .\32xl\:rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .\32xl\:rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .\32xl\:rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .\32xl\:rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .\32xl\:rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .\32xl\:rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .\32xl\:rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .\32xl\:rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .\32xl\:rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .\32xl\:rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .\32xl\:rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .\32xl\:rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .\32xl\:rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .\32xl\:rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .\32xl\:rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .\32xl\:rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .\32xl\:rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .\32xl\:rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .\32xl\:rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .\32xl\:rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .\32xl\:rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .\32xl\:rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .\32xl\:rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .\32xl\:rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .\32xl\:rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .\32xl\:rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .\32xl\:rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .\32xl\:rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .\32xl\:rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .\32xl\:rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .\32xl\:rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .\32xl\:rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .\32xl\:rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .\32xl\:rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .\32xl\:rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .\32xl\:rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .\32xl\:rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .\32xl\:rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .\32xl\:rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .\32xl\:rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .\32xl\:rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .\32xl\:rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .\32xl\:rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .\32xl\:rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .\32xl\:rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .\32xl\:rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .\32xl\:rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .\32xl\:rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .\32xl\:rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .\32xl\:rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .\32xl\:rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .\32xl\:rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .\32xl\:rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .\32xl\:rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .\32xl\:rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .\32xl\:rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .\32xl\:rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .\32xl\:rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .\32xl\:rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .\32xl\:rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .\32xl\:rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .\32xl\:rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .\32xl\:rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .\32xl\:rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .\32xl\:rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .\32xl\:rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .\32xl\:rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .\32xl\:rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .\32xl\:rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .\32xl\:rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .\32xl\:rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .\32xl\:rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .\32xl\:rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .\32xl\:rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .\32xl\:rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .\32xl\:rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .\32xl\:rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .\32xl\:rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .\32xl\:rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .\32xl\:rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .\32xl\:rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .\32xl\:rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .\32xl\:rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .\32xl\:rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .\32xl\:rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .\32xl\:rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .\32xl\:rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .\32xl\:rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .\32xl\:rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .\32xl\:rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .\32xl\:rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .\32xl\:rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .\32xl\:rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .\32xl\:rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .\32xl\:rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .\32xl\:rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .\32xl\:rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .\32xl\:rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .\32xl\:rtl\:mt-0{margin-top:0!important}[dir=rtl] .\32xl\:rtl\:mr-0{margin-right:0!important}[dir=rtl] .\32xl\:rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .\32xl\:rtl\:ml-0{margin-left:0!important}[dir=rtl] .\32xl\:rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .\32xl\:rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .\32xl\:rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .\32xl\:rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .\32xl\:rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .\32xl\:rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .\32xl\:rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .\32xl\:rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .\32xl\:rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .\32xl\:rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .\32xl\:rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .\32xl\:rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .\32xl\:rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .\32xl\:rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .\32xl\:rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .\32xl\:rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .\32xl\:rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .\32xl\:rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .\32xl\:rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .\32xl\:rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .\32xl\:rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .\32xl\:rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .\32xl\:rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .\32xl\:rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .\32xl\:rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .\32xl\:rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .\32xl\:rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .\32xl\:rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .\32xl\:rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .\32xl\:rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .\32xl\:rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .\32xl\:rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .\32xl\:rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .\32xl\:rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .\32xl\:rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .\32xl\:rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .\32xl\:rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .\32xl\:rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .\32xl\:rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .\32xl\:rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .\32xl\:rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .\32xl\:rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .\32xl\:rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .\32xl\:rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .\32xl\:rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .\32xl\:rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .\32xl\:rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .\32xl\:rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .\32xl\:rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .\32xl\:rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .\32xl\:rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .\32xl\:rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .\32xl\:rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .\32xl\:rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .\32xl\:rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .\32xl\:rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .\32xl\:rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .\32xl\:rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .\32xl\:rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .\32xl\:rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .\32xl\:rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .\32xl\:rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .\32xl\:rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .\32xl\:rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .\32xl\:rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .\32xl\:rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .\32xl\:rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .\32xl\:rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .\32xl\:rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .\32xl\:rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .\32xl\:rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .\32xl\:rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .\32xl\:rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .\32xl\:rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .\32xl\:rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .\32xl\:rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .\32xl\:rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .\32xl\:rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .\32xl\:rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .\32xl\:rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .\32xl\:rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .\32xl\:rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .\32xl\:rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .\32xl\:rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .\32xl\:rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .\32xl\:rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .\32xl\:rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .\32xl\:rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .\32xl\:rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .\32xl\:rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .\32xl\:rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .\32xl\:rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .\32xl\:rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .\32xl\:rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .\32xl\:rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .\32xl\:rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .\32xl\:rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .\32xl\:rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .\32xl\:rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .\32xl\:rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .\32xl\:rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .\32xl\:rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .\32xl\:rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .\32xl\:rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .\32xl\:rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .\32xl\:rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .\32xl\:rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .\32xl\:rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .\32xl\:rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .\32xl\:rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .\32xl\:rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .\32xl\:rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .\32xl\:rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .\32xl\:rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .\32xl\:rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .\32xl\:rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .\32xl\:rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .\32xl\:rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .\32xl\:rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .\32xl\:rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .\32xl\:rtl\:mt-px{margin-top:1px!important}[dir=rtl] .\32xl\:rtl\:mr-px{margin-right:1px!important}[dir=rtl] .\32xl\:rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .\32xl\:rtl\:ml-px{margin-left:1px!important}[dir=rtl] .\32xl\:rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .\32xl\:rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .\32xl\:rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .\32xl\:rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .\32xl\:rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .\32xl\:rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .\32xl\:rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .\32xl\:rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .\32xl\:rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .\32xl\:rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .\32xl\:rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .\32xl\:rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .\32xl\:rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .\32xl\:rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .\32xl\:rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .\32xl\:rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .\32xl\:rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .\32xl\:rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .\32xl\:rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .\32xl\:rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .\32xl\:rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .\32xl\:rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .\32xl\:rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .\32xl\:rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .\32xl\:rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .\32xl\:rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .\32xl\:rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .\32xl\:rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .\32xl\:rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .\32xl\:rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .\32xl\:rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .\32xl\:rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .\32xl\:rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .\32xl\:rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .\32xl\:rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .\32xl\:rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .\32xl\:rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .\32xl\:rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .\32xl\:rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .\32xl\:rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .\32xl\:rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .\32xl\:rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .\32xl\:rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .\32xl\:rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .\32xl\:rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .\32xl\:rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .\32xl\:rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .\32xl\:rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .\32xl\:rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .\32xl\:rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .\32xl\:rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .\32xl\:rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .\32xl\:rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .\32xl\:rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .\32xl\:rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .\32xl\:rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .\32xl\:rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .\32xl\:rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .\32xl\:rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .\32xl\:rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .\32xl\:rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .\32xl\:rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .\32xl\:rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .\32xl\:rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .\32xl\:rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .\32xl\:rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .\32xl\:rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .\32xl\:rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .\32xl\:rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .\32xl\:rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .\32xl\:rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .\32xl\:rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .\32xl\:rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .\32xl\:rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .\32xl\:rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .\32xl\:rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .\32xl\:rtl\:mt-full{margin-top:100%!important}[dir=rtl] .\32xl\:rtl\:mr-full{margin-right:100%!important}[dir=rtl] .\32xl\:rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .\32xl\:rtl\:ml-full{margin-left:100%!important}[dir=rtl] .\32xl\:rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .\32xl\:rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .\32xl\:rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .\32xl\:rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .\32xl\:rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .\32xl\:rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .\32xl\:rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .\32xl\:rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .\32xl\:rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .\32xl\:rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .\32xl\:rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .\32xl\:rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .\32xl\:rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .\32xl\:rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .\32xl\:rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .\32xl\:rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .\32xl\:rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .\32xl\:rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .\32xl\:rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .\32xl\:rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .\32xl\:rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .\32xl\:rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .\32xl\:rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .\32xl\:rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .\32xl\:rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .\32xl\:rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .\32xl\:rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .\32xl\:rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .\32xl\:rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .\32xl\:rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .\32xl\:rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .\32xl\:rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .\32xl\:rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .\32xl\:rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .\32xl\:rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .\32xl\:rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .\32xl\:rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .\32xl\:rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .\32xl\:rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .\32xl\:rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .\32xl\:rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .\32xl\:rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .\32xl\:rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .\32xl\:rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .\32xl\:rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .\32xl\:rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .\32xl\:rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .\32xl\:rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .\32xl\:rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .\32xl\:rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .\32xl\:rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .\32xl\:rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .\32xl\:rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .\32xl\:rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .\32xl\:rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .\32xl\:rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .\32xl\:rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .\32xl\:rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .\32xl\:rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .\32xl\:rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .\32xl\:rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .\32xl\:rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .\32xl\:rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .\32xl\:rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .\32xl\:rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .\32xl\:rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .\32xl\:rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .\32xl\:rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .\32xl\:rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .\32xl\:rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .\32xl\:rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .\32xl\:rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .\32xl\:rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .\32xl\:rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .\32xl\:rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .\32xl\:rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .\32xl\:rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .\32xl\:rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .\32xl\:rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .\32xl\:rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .\32xl\:rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .\32xl\:rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .\32xl\:rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .\32xl\:rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .\32xl\:rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .\32xl\:rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .\32xl\:rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .\32xl\:rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .\32xl\:rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .\32xl\:rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .\32xl\:rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .\32xl\:rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .\32xl\:rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .\32xl\:rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .\32xl\:rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .\32xl\:rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .\32xl\:rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .\32xl\:rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .\32xl\:rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .\32xl\:rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .\32xl\:rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .\32xl\:rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .\32xl\:rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .\32xl\:rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .\32xl\:rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .\32xl\:rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .\32xl\:rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .\32xl\:rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .\32xl\:rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .\32xl\:rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .\32xl\:rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .\32xl\:rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .\32xl\:rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .\32xl\:rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .\32xl\:rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .\32xl\:rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .\32xl\:rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .\32xl\:rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .\32xl\:rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .\32xl\:rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .\32xl\:rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .\32xl\:rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .\32xl\:rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .\32xl\:rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .\32xl\:rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .\32xl\:rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .\32xl\:rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .\32xl\:rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .\32xl\:rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .\32xl\:rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .\32xl\:rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .\32xl\:rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .\32xl\:rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .\32xl\:rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .\32xl\:rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .\32xl\:rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .\32xl\:rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .\32xl\:rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .\32xl\:rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .\32xl\:rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .\32xl\:rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .\32xl\:rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .\32xl\:rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .\32xl\:rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .\32xl\:rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .\32xl\:rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .\32xl\:rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .\32xl\:rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .\32xl\:rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .\32xl\:rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .\32xl\:rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .\32xl\:rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .\32xl\:rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .\32xl\:rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .\32xl\:rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .\32xl\:rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .\32xl\:rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .\32xl\:rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .\32xl\:rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .\32xl\:rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .\32xl\:rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .\32xl\:rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .\32xl\:rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .\32xl\:rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .\32xl\:rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .\32xl\:rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .\32xl\:rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .\32xl\:rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .\32xl\:rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .\32xl\:rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .\32xl\:rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .\32xl\:rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .\32xl\:rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .\32xl\:rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .\32xl\:rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .\32xl\:rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .\32xl\:rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .\32xl\:rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .\32xl\:rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .\32xl\:rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .\32xl\:rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .\32xl\:rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .\32xl\:rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .\32xl\:rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .\32xl\:rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .\32xl\:rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .\32xl\:rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .\32xl\:rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .\32xl\:rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .\32xl\:rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .\32xl\:rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .\32xl\:rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .\32xl\:rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .\32xl\:rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .\32xl\:rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .\32xl\:rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .\32xl\:rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .\32xl\:rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .\32xl\:rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .\32xl\:rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .\32xl\:rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .\32xl\:rtl\:-ml-full{margin-left:-100%!important}.\32xl\:max-h-0{max-height:0!important}.\32xl\:max-h-1{max-height:.25rem!important}.\32xl\:max-h-2{max-height:.5rem!important}.\32xl\:max-h-3{max-height:.75rem!important}.\32xl\:max-h-4{max-height:1rem!important}.\32xl\:max-h-5{max-height:1.25rem!important}.\32xl\:max-h-6{max-height:1.5rem!important}.\32xl\:max-h-7{max-height:1.75rem!important}.\32xl\:max-h-8{max-height:2rem!important}.\32xl\:max-h-9{max-height:2.25rem!important}.\32xl\:max-h-10{max-height:2.5rem!important}.\32xl\:max-h-11{max-height:2.75rem!important}.\32xl\:max-h-12{max-height:3rem!important}.\32xl\:max-h-13{max-height:3.25rem!important}.\32xl\:max-h-14{max-height:3.5rem!important}.\32xl\:max-h-15{max-height:3.75rem!important}.\32xl\:max-h-16{max-height:4rem!important}.\32xl\:max-h-20{max-height:5rem!important}.\32xl\:max-h-24{max-height:6rem!important}.\32xl\:max-h-28{max-height:7rem!important}.\32xl\:max-h-32{max-height:8rem!important}.\32xl\:max-h-36{max-height:9rem!important}.\32xl\:max-h-40{max-height:10rem!important}.\32xl\:max-h-48{max-height:12rem!important}.\32xl\:max-h-56{max-height:14rem!important}.\32xl\:max-h-60{max-height:15rem!important}.\32xl\:max-h-64{max-height:16rem!important}.\32xl\:max-h-72{max-height:18rem!important}.\32xl\:max-h-80{max-height:20rem!important}.\32xl\:max-h-96{max-height:24rem!important}.\32xl\:max-h-screen{max-height:100vh!important}.\32xl\:max-h-px{max-height:1px!important}.\32xl\:max-h-0\.5{max-height:.125rem!important}.\32xl\:max-h-1\.5{max-height:.375rem!important}.\32xl\:max-h-2\.5{max-height:.625rem!important}.\32xl\:max-h-3\.5{max-height:.875rem!important}.\32xl\:max-h-1\/2{max-height:50%!important}.\32xl\:max-h-1\/3{max-height:33.333333%!important}.\32xl\:max-h-2\/3{max-height:66.666667%!important}.\32xl\:max-h-1\/4{max-height:25%!important}.\32xl\:max-h-2\/4{max-height:50%!important}.\32xl\:max-h-3\/4{max-height:75%!important}.\32xl\:max-h-1\/5{max-height:20%!important}.\32xl\:max-h-2\/5{max-height:40%!important}.\32xl\:max-h-3\/5{max-height:60%!important}.\32xl\:max-h-4\/5{max-height:80%!important}.\32xl\:max-h-1\/6{max-height:16.666667%!important}.\32xl\:max-h-2\/6{max-height:33.333333%!important}.\32xl\:max-h-3\/6{max-height:50%!important}.\32xl\:max-h-4\/6{max-height:66.666667%!important}.\32xl\:max-h-5\/6{max-height:83.333333%!important}.\32xl\:max-h-1\/12{max-height:8.333333%!important}.\32xl\:max-h-2\/12{max-height:16.666667%!important}.\32xl\:max-h-3\/12{max-height:25%!important}.\32xl\:max-h-4\/12{max-height:33.333333%!important}.\32xl\:max-h-5\/12{max-height:41.666667%!important}.\32xl\:max-h-6\/12{max-height:50%!important}.\32xl\:max-h-7\/12{max-height:58.333333%!important}.\32xl\:max-h-8\/12{max-height:66.666667%!important}.\32xl\:max-h-9\/12{max-height:75%!important}.\32xl\:max-h-10\/12{max-height:83.333333%!important}.\32xl\:max-h-11\/12{max-height:91.666667%!important}.\32xl\:max-h-full{max-height:100%!important}.\32xl\:max-h-6xl{max-height:6rem!important}.\32xl\:max-w-none{max-width:none!important}.\32xl\:max-w-xs{max-width:20rem!important}.\32xl\:max-w-sm{max-width:24rem!important}.\32xl\:max-w-md{max-width:28rem!important}.\32xl\:max-w-lg{max-width:32rem!important}.\32xl\:max-w-xl{max-width:36rem!important}.\32xl\:max-w-2xl{max-width:42rem!important}.\32xl\:max-w-3xl{max-width:48rem!important}.\32xl\:max-w-4xl{max-width:56rem!important}.\32xl\:max-w-5xl{max-width:64rem!important}.\32xl\:max-w-6xl{max-width:72rem!important}.\32xl\:max-w-7xl{max-width:80rem!important}.\32xl\:max-w-full{max-width:100%!important}.\32xl\:max-w-screen-sm{max-width:600px!important}.\32xl\:max-w-screen-md{max-width:1024px!important}.\32xl\:max-w-screen-lg{max-width:1280px!important}.\32xl\:max-w-screen-xl{max-width:1536px!important}.\32xl\:max-w-screen-2xl{max-width:1400px!important}.\32xl\:max-w-screen-3xl{max-width:1800px!important}.\32xl\:max-w-screen-4xl{max-width:2200px!important}.\32xl\:min-h-0{min-height:0!important}.\32xl\:min-h-full{min-height:100%!important}.\32xl\:min-h-screen{min-height:100vh!important}.\32xl\:min-h-half{min-height:50vh!important}.\32xl\:min-w-0{min-width:0!important}.\32xl\:min-w-full{min-width:100%!important}.\32xl\:object-contain{-o-object-fit:contain!important;object-fit:contain!important}.\32xl\:object-cover{-o-object-fit:cover!important;object-fit:cover!important}.\32xl\:object-fill{-o-object-fit:fill!important;object-fit:fill!important}.\32xl\:object-none{-o-object-fit:none!important;object-fit:none!important}.\32xl\:object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.\32xl\:object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.\32xl\:object-center{-o-object-position:center!important;object-position:center!important}.\32xl\:object-left{-o-object-position:left!important;object-position:left!important}.\32xl\:object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.\32xl\:object-left-top{-o-object-position:left top!important;object-position:left top!important}.\32xl\:object-right{-o-object-position:right!important;object-position:right!important}.\32xl\:object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.\32xl\:object-right-top{-o-object-position:right top!important;object-position:right top!important}.\32xl\:object-top{-o-object-position:top!important;object-position:top!important}.\32xl\:opacity-0{opacity:0!important}.\32xl\:opacity-25{opacity:.25!important}.\32xl\:opacity-50{opacity:.5!important}.\32xl\:opacity-75{opacity:.75!important}.\32xl\:opacity-100{opacity:1!important}.\32xl\:hover\:opacity-0:hover{opacity:0!important}.\32xl\:hover\:opacity-25:hover{opacity:.25!important}.\32xl\:hover\:opacity-50:hover{opacity:.5!important}.\32xl\:hover\:opacity-75:hover{opacity:.75!important}.\32xl\:hover\:opacity-100:hover{opacity:1!important}.\32xl\:focus\:opacity-0:focus{opacity:0!important}.\32xl\:focus\:opacity-25:focus{opacity:.25!important}.\32xl\:focus\:opacity-50:focus{opacity:.5!important}.\32xl\:focus\:opacity-75:focus{opacity:.75!important}.\32xl\:focus\:opacity-100:focus{opacity:1!important}.\32xl\:outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.\32xl\:outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.\32xl\:outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.\32xl\:focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.\32xl\:focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.\32xl\:focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.\32xl\:overflow-auto{overflow:auto!important}.\32xl\:overflow-hidden{overflow:hidden!important}.\32xl\:overflow-visible{overflow:visible!important}.\32xl\:overflow-scroll{overflow:scroll!important}.\32xl\:overflow-x-auto{overflow-x:auto!important}.\32xl\:overflow-y-auto{overflow-y:auto!important}.\32xl\:overflow-x-hidden{overflow-x:hidden!important}.\32xl\:overflow-y-hidden{overflow-y:hidden!important}.\32xl\:overflow-x-visible{overflow-x:visible!important}.\32xl\:overflow-y-visible{overflow-y:visible!important}.\32xl\:overflow-x-scroll{overflow-x:scroll!important}.\32xl\:overflow-y-scroll{overflow-y:scroll!important}.\32xl\:scrolling-touch{-webkit-overflow-scrolling:touch!important}.\32xl\:scrolling-auto{-webkit-overflow-scrolling:auto!important}.\32xl\:overscroll-auto{overscroll-behavior:auto!important}.\32xl\:overscroll-contain{overscroll-behavior:contain!important}.\32xl\:overscroll-none{overscroll-behavior:none!important}.\32xl\:overscroll-y-auto{overscroll-behavior-y:auto!important}.\32xl\:overscroll-y-contain{overscroll-behavior-y:contain!important}.\32xl\:overscroll-y-none{overscroll-behavior-y:none!important}.\32xl\:overscroll-x-auto{overscroll-behavior-x:auto!important}.\32xl\:overscroll-x-contain{overscroll-behavior-x:contain!important}.\32xl\:overscroll-x-none{overscroll-behavior-x:none!important}.\32xl\:p-0{padding:0!important}.\32xl\:p-1{padding:.25rem!important}.\32xl\:p-2{padding:.5rem!important}.\32xl\:p-3{padding:.75rem!important}.\32xl\:p-4{padding:1rem!important}.\32xl\:p-5{padding:1.25rem!important}.\32xl\:p-6{padding:1.5rem!important}.\32xl\:p-7{padding:1.75rem!important}.\32xl\:p-8{padding:2rem!important}.\32xl\:p-9{padding:2.25rem!important}.\32xl\:p-10{padding:2.5rem!important}.\32xl\:p-11{padding:2.75rem!important}.\32xl\:p-12{padding:3rem!important}.\32xl\:p-13{padding:3.25rem!important}.\32xl\:p-14{padding:3.5rem!important}.\32xl\:p-15{padding:3.75rem!important}.\32xl\:p-16{padding:4rem!important}.\32xl\:p-20{padding:5rem!important}.\32xl\:p-24{padding:6rem!important}.\32xl\:p-28{padding:7rem!important}.\32xl\:p-32{padding:8rem!important}.\32xl\:p-36{padding:9rem!important}.\32xl\:p-40{padding:10rem!important}.\32xl\:p-48{padding:12rem!important}.\32xl\:p-56{padding:14rem!important}.\32xl\:p-60{padding:15rem!important}.\32xl\:p-64{padding:16rem!important}.\32xl\:p-72{padding:18rem!important}.\32xl\:p-80{padding:20rem!important}.\32xl\:p-96{padding:24rem!important}.\32xl\:p-px{padding:1px!important}.\32xl\:p-0\.5{padding:.125rem!important}.\32xl\:p-1\.5{padding:.375rem!important}.\32xl\:p-2\.5{padding:.625rem!important}.\32xl\:p-3\.5{padding:.875rem!important}.\32xl\:p-1\/2{padding:50%!important}.\32xl\:p-1\/3{padding:33.333333%!important}.\32xl\:p-2\/3{padding:66.666667%!important}.\32xl\:p-1\/4{padding:25%!important}.\32xl\:p-2\/4{padding:50%!important}.\32xl\:p-3\/4{padding:75%!important}.\32xl\:p-1\/5{padding:20%!important}.\32xl\:p-2\/5{padding:40%!important}.\32xl\:p-3\/5{padding:60%!important}.\32xl\:p-4\/5{padding:80%!important}.\32xl\:p-1\/6{padding:16.666667%!important}.\32xl\:p-2\/6{padding:33.333333%!important}.\32xl\:p-3\/6{padding:50%!important}.\32xl\:p-4\/6{padding:66.666667%!important}.\32xl\:p-5\/6{padding:83.333333%!important}.\32xl\:p-1\/12{padding:8.333333%!important}.\32xl\:p-2\/12{padding:16.666667%!important}.\32xl\:p-3\/12{padding:25%!important}.\32xl\:p-4\/12{padding:33.333333%!important}.\32xl\:p-5\/12{padding:41.666667%!important}.\32xl\:p-6\/12{padding:50%!important}.\32xl\:p-7\/12{padding:58.333333%!important}.\32xl\:p-8\/12{padding:66.666667%!important}.\32xl\:p-9\/12{padding:75%!important}.\32xl\:p-10\/12{padding:83.333333%!important}.\32xl\:p-11\/12{padding:91.666667%!important}.\32xl\:p-full{padding:100%!important}.\32xl\:py-0{padding-bottom:0!important;padding-top:0!important}.\32xl\:px-0{padding-left:0!important;padding-right:0!important}.\32xl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.\32xl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.\32xl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.\32xl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.\32xl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.\32xl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}.\32xl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}.\32xl\:px-4{padding-left:1rem!important;padding-right:1rem!important}.\32xl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.\32xl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.\32xl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.\32xl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.\32xl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.\32xl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.\32xl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}.\32xl\:px-8{padding-left:2rem!important;padding-right:2rem!important}.\32xl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.\32xl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.\32xl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.\32xl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.\32xl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.\32xl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.\32xl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}.\32xl\:px-12{padding-left:3rem!important;padding-right:3rem!important}.\32xl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.\32xl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.\32xl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.\32xl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.\32xl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.\32xl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.\32xl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}.\32xl\:px-16{padding-left:4rem!important;padding-right:4rem!important}.\32xl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}.\32xl\:px-20{padding-left:5rem!important;padding-right:5rem!important}.\32xl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}.\32xl\:px-24{padding-left:6rem!important;padding-right:6rem!important}.\32xl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}.\32xl\:px-28{padding-left:7rem!important;padding-right:7rem!important}.\32xl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}.\32xl\:px-32{padding-left:8rem!important;padding-right:8rem!important}.\32xl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}.\32xl\:px-36{padding-left:9rem!important;padding-right:9rem!important}.\32xl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}.\32xl\:px-40{padding-left:10rem!important;padding-right:10rem!important}.\32xl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}.\32xl\:px-48{padding-left:12rem!important;padding-right:12rem!important}.\32xl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}.\32xl\:px-56{padding-left:14rem!important;padding-right:14rem!important}.\32xl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}.\32xl\:px-60{padding-left:15rem!important;padding-right:15rem!important}.\32xl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}.\32xl\:px-64{padding-left:16rem!important;padding-right:16rem!important}.\32xl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}.\32xl\:px-72{padding-left:18rem!important;padding-right:18rem!important}.\32xl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}.\32xl\:px-80{padding-left:20rem!important;padding-right:20rem!important}.\32xl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}.\32xl\:px-96{padding-left:24rem!important;padding-right:24rem!important}.\32xl\:py-px{padding-bottom:1px!important;padding-top:1px!important}.\32xl\:px-px{padding-left:1px!important;padding-right:1px!important}.\32xl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.\32xl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.\32xl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.\32xl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.\32xl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.\32xl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.\32xl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.\32xl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.\32xl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.\32xl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}.\32xl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\32xl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.\32xl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\32xl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.\32xl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.\32xl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}.\32xl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.\32xl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}.\32xl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.\32xl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}.\32xl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.\32xl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}.\32xl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.\32xl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}.\32xl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.\32xl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}.\32xl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.\32xl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}.\32xl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.\32xl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.\32xl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\32xl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.\32xl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.\32xl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}.\32xl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\32xl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.\32xl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.\32xl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.\32xl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.\32xl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.\32xl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.\32xl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.\32xl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.\32xl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}.\32xl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\32xl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.\32xl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.\32xl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.\32xl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.\32xl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}.\32xl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.\32xl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.\32xl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\32xl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.\32xl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.\32xl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}.\32xl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.\32xl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.\32xl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.\32xl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.\32xl\:py-full{padding-bottom:100%!important;padding-top:100%!important}.\32xl\:px-full{padding-left:100%!important;padding-right:100%!important}.\32xl\:pt-0{padding-top:0!important}.\32xl\:pr-0{padding-right:0!important}.\32xl\:pb-0{padding-bottom:0!important}.\32xl\:pl-0{padding-left:0!important}.\32xl\:pt-1{padding-top:.25rem!important}.\32xl\:pr-1{padding-right:.25rem!important}.\32xl\:pb-1{padding-bottom:.25rem!important}.\32xl\:pl-1{padding-left:.25rem!important}.\32xl\:pt-2{padding-top:.5rem!important}.\32xl\:pr-2{padding-right:.5rem!important}.\32xl\:pb-2{padding-bottom:.5rem!important}.\32xl\:pl-2{padding-left:.5rem!important}.\32xl\:pt-3{padding-top:.75rem!important}.\32xl\:pr-3{padding-right:.75rem!important}.\32xl\:pb-3{padding-bottom:.75rem!important}.\32xl\:pl-3{padding-left:.75rem!important}.\32xl\:pt-4{padding-top:1rem!important}.\32xl\:pr-4{padding-right:1rem!important}.\32xl\:pb-4{padding-bottom:1rem!important}.\32xl\:pl-4{padding-left:1rem!important}.\32xl\:pt-5{padding-top:1.25rem!important}.\32xl\:pr-5{padding-right:1.25rem!important}.\32xl\:pb-5{padding-bottom:1.25rem!important}.\32xl\:pl-5{padding-left:1.25rem!important}.\32xl\:pt-6{padding-top:1.5rem!important}.\32xl\:pr-6{padding-right:1.5rem!important}.\32xl\:pb-6{padding-bottom:1.5rem!important}.\32xl\:pl-6{padding-left:1.5rem!important}.\32xl\:pt-7{padding-top:1.75rem!important}.\32xl\:pr-7{padding-right:1.75rem!important}.\32xl\:pb-7{padding-bottom:1.75rem!important}.\32xl\:pl-7{padding-left:1.75rem!important}.\32xl\:pt-8{padding-top:2rem!important}.\32xl\:pr-8{padding-right:2rem!important}.\32xl\:pb-8{padding-bottom:2rem!important}.\32xl\:pl-8{padding-left:2rem!important}.\32xl\:pt-9{padding-top:2.25rem!important}.\32xl\:pr-9{padding-right:2.25rem!important}.\32xl\:pb-9{padding-bottom:2.25rem!important}.\32xl\:pl-9{padding-left:2.25rem!important}.\32xl\:pt-10{padding-top:2.5rem!important}.\32xl\:pr-10{padding-right:2.5rem!important}.\32xl\:pb-10{padding-bottom:2.5rem!important}.\32xl\:pl-10{padding-left:2.5rem!important}.\32xl\:pt-11{padding-top:2.75rem!important}.\32xl\:pr-11{padding-right:2.75rem!important}.\32xl\:pb-11{padding-bottom:2.75rem!important}.\32xl\:pl-11{padding-left:2.75rem!important}.\32xl\:pt-12{padding-top:3rem!important}.\32xl\:pr-12{padding-right:3rem!important}.\32xl\:pb-12{padding-bottom:3rem!important}.\32xl\:pl-12{padding-left:3rem!important}.\32xl\:pt-13{padding-top:3.25rem!important}.\32xl\:pr-13{padding-right:3.25rem!important}.\32xl\:pb-13{padding-bottom:3.25rem!important}.\32xl\:pl-13{padding-left:3.25rem!important}.\32xl\:pt-14{padding-top:3.5rem!important}.\32xl\:pr-14{padding-right:3.5rem!important}.\32xl\:pb-14{padding-bottom:3.5rem!important}.\32xl\:pl-14{padding-left:3.5rem!important}.\32xl\:pt-15{padding-top:3.75rem!important}.\32xl\:pr-15{padding-right:3.75rem!important}.\32xl\:pb-15{padding-bottom:3.75rem!important}.\32xl\:pl-15{padding-left:3.75rem!important}.\32xl\:pt-16{padding-top:4rem!important}.\32xl\:pr-16{padding-right:4rem!important}.\32xl\:pb-16{padding-bottom:4rem!important}.\32xl\:pl-16{padding-left:4rem!important}.\32xl\:pt-20{padding-top:5rem!important}.\32xl\:pr-20{padding-right:5rem!important}.\32xl\:pb-20{padding-bottom:5rem!important}.\32xl\:pl-20{padding-left:5rem!important}.\32xl\:pt-24{padding-top:6rem!important}.\32xl\:pr-24{padding-right:6rem!important}.\32xl\:pb-24{padding-bottom:6rem!important}.\32xl\:pl-24{padding-left:6rem!important}.\32xl\:pt-28{padding-top:7rem!important}.\32xl\:pr-28{padding-right:7rem!important}.\32xl\:pb-28{padding-bottom:7rem!important}.\32xl\:pl-28{padding-left:7rem!important}.\32xl\:pt-32{padding-top:8rem!important}.\32xl\:pr-32{padding-right:8rem!important}.\32xl\:pb-32{padding-bottom:8rem!important}.\32xl\:pl-32{padding-left:8rem!important}.\32xl\:pt-36{padding-top:9rem!important}.\32xl\:pr-36{padding-right:9rem!important}.\32xl\:pb-36{padding-bottom:9rem!important}.\32xl\:pl-36{padding-left:9rem!important}.\32xl\:pt-40{padding-top:10rem!important}.\32xl\:pr-40{padding-right:10rem!important}.\32xl\:pb-40{padding-bottom:10rem!important}.\32xl\:pl-40{padding-left:10rem!important}.\32xl\:pt-48{padding-top:12rem!important}.\32xl\:pr-48{padding-right:12rem!important}.\32xl\:pb-48{padding-bottom:12rem!important}.\32xl\:pl-48{padding-left:12rem!important}.\32xl\:pt-56{padding-top:14rem!important}.\32xl\:pr-56{padding-right:14rem!important}.\32xl\:pb-56{padding-bottom:14rem!important}.\32xl\:pl-56{padding-left:14rem!important}.\32xl\:pt-60{padding-top:15rem!important}.\32xl\:pr-60{padding-right:15rem!important}.\32xl\:pb-60{padding-bottom:15rem!important}.\32xl\:pl-60{padding-left:15rem!important}.\32xl\:pt-64{padding-top:16rem!important}.\32xl\:pr-64{padding-right:16rem!important}.\32xl\:pb-64{padding-bottom:16rem!important}.\32xl\:pl-64{padding-left:16rem!important}.\32xl\:pt-72{padding-top:18rem!important}.\32xl\:pr-72{padding-right:18rem!important}.\32xl\:pb-72{padding-bottom:18rem!important}.\32xl\:pl-72{padding-left:18rem!important}.\32xl\:pt-80{padding-top:20rem!important}.\32xl\:pr-80{padding-right:20rem!important}.\32xl\:pb-80{padding-bottom:20rem!important}.\32xl\:pl-80{padding-left:20rem!important}.\32xl\:pt-96{padding-top:24rem!important}.\32xl\:pr-96{padding-right:24rem!important}.\32xl\:pb-96{padding-bottom:24rem!important}.\32xl\:pl-96{padding-left:24rem!important}.\32xl\:pt-px{padding-top:1px!important}.\32xl\:pr-px{padding-right:1px!important}.\32xl\:pb-px{padding-bottom:1px!important}.\32xl\:pl-px{padding-left:1px!important}.\32xl\:pt-0\.5{padding-top:.125rem!important}.\32xl\:pr-0\.5{padding-right:.125rem!important}.\32xl\:pb-0\.5{padding-bottom:.125rem!important}.\32xl\:pl-0\.5{padding-left:.125rem!important}.\32xl\:pt-1\.5{padding-top:.375rem!important}.\32xl\:pr-1\.5{padding-right:.375rem!important}.\32xl\:pb-1\.5{padding-bottom:.375rem!important}.\32xl\:pl-1\.5{padding-left:.375rem!important}.\32xl\:pt-2\.5{padding-top:.625rem!important}.\32xl\:pr-2\.5{padding-right:.625rem!important}.\32xl\:pb-2\.5{padding-bottom:.625rem!important}.\32xl\:pl-2\.5{padding-left:.625rem!important}.\32xl\:pt-3\.5{padding-top:.875rem!important}.\32xl\:pr-3\.5{padding-right:.875rem!important}.\32xl\:pb-3\.5{padding-bottom:.875rem!important}.\32xl\:pl-3\.5{padding-left:.875rem!important}.\32xl\:pt-1\/2{padding-top:50%!important}.\32xl\:pr-1\/2{padding-right:50%!important}.\32xl\:pb-1\/2{padding-bottom:50%!important}.\32xl\:pl-1\/2{padding-left:50%!important}.\32xl\:pt-1\/3{padding-top:33.333333%!important}.\32xl\:pr-1\/3{padding-right:33.333333%!important}.\32xl\:pb-1\/3{padding-bottom:33.333333%!important}.\32xl\:pl-1\/3{padding-left:33.333333%!important}.\32xl\:pt-2\/3{padding-top:66.666667%!important}.\32xl\:pr-2\/3{padding-right:66.666667%!important}.\32xl\:pb-2\/3{padding-bottom:66.666667%!important}.\32xl\:pl-2\/3{padding-left:66.666667%!important}.\32xl\:pt-1\/4{padding-top:25%!important}.\32xl\:pr-1\/4{padding-right:25%!important}.\32xl\:pb-1\/4{padding-bottom:25%!important}.\32xl\:pl-1\/4{padding-left:25%!important}.\32xl\:pt-2\/4{padding-top:50%!important}.\32xl\:pr-2\/4{padding-right:50%!important}.\32xl\:pb-2\/4{padding-bottom:50%!important}.\32xl\:pl-2\/4{padding-left:50%!important}.\32xl\:pt-3\/4{padding-top:75%!important}.\32xl\:pr-3\/4{padding-right:75%!important}.\32xl\:pb-3\/4{padding-bottom:75%!important}.\32xl\:pl-3\/4{padding-left:75%!important}.\32xl\:pt-1\/5{padding-top:20%!important}.\32xl\:pr-1\/5{padding-right:20%!important}.\32xl\:pb-1\/5{padding-bottom:20%!important}.\32xl\:pl-1\/5{padding-left:20%!important}.\32xl\:pt-2\/5{padding-top:40%!important}.\32xl\:pr-2\/5{padding-right:40%!important}.\32xl\:pb-2\/5{padding-bottom:40%!important}.\32xl\:pl-2\/5{padding-left:40%!important}.\32xl\:pt-3\/5{padding-top:60%!important}.\32xl\:pr-3\/5{padding-right:60%!important}.\32xl\:pb-3\/5{padding-bottom:60%!important}.\32xl\:pl-3\/5{padding-left:60%!important}.\32xl\:pt-4\/5{padding-top:80%!important}.\32xl\:pr-4\/5{padding-right:80%!important}.\32xl\:pb-4\/5{padding-bottom:80%!important}.\32xl\:pl-4\/5{padding-left:80%!important}.\32xl\:pt-1\/6{padding-top:16.666667%!important}.\32xl\:pr-1\/6{padding-right:16.666667%!important}.\32xl\:pb-1\/6{padding-bottom:16.666667%!important}.\32xl\:pl-1\/6{padding-left:16.666667%!important}.\32xl\:pt-2\/6{padding-top:33.333333%!important}.\32xl\:pr-2\/6{padding-right:33.333333%!important}.\32xl\:pb-2\/6{padding-bottom:33.333333%!important}.\32xl\:pl-2\/6{padding-left:33.333333%!important}.\32xl\:pt-3\/6{padding-top:50%!important}.\32xl\:pr-3\/6{padding-right:50%!important}.\32xl\:pb-3\/6{padding-bottom:50%!important}.\32xl\:pl-3\/6{padding-left:50%!important}.\32xl\:pt-4\/6{padding-top:66.666667%!important}.\32xl\:pr-4\/6{padding-right:66.666667%!important}.\32xl\:pb-4\/6{padding-bottom:66.666667%!important}.\32xl\:pl-4\/6{padding-left:66.666667%!important}.\32xl\:pt-5\/6{padding-top:83.333333%!important}.\32xl\:pr-5\/6{padding-right:83.333333%!important}.\32xl\:pb-5\/6{padding-bottom:83.333333%!important}.\32xl\:pl-5\/6{padding-left:83.333333%!important}.\32xl\:pt-1\/12{padding-top:8.333333%!important}.\32xl\:pr-1\/12{padding-right:8.333333%!important}.\32xl\:pb-1\/12{padding-bottom:8.333333%!important}.\32xl\:pl-1\/12{padding-left:8.333333%!important}.\32xl\:pt-2\/12{padding-top:16.666667%!important}.\32xl\:pr-2\/12{padding-right:16.666667%!important}.\32xl\:pb-2\/12{padding-bottom:16.666667%!important}.\32xl\:pl-2\/12{padding-left:16.666667%!important}.\32xl\:pt-3\/12{padding-top:25%!important}.\32xl\:pr-3\/12{padding-right:25%!important}.\32xl\:pb-3\/12{padding-bottom:25%!important}.\32xl\:pl-3\/12{padding-left:25%!important}.\32xl\:pt-4\/12{padding-top:33.333333%!important}.\32xl\:pr-4\/12{padding-right:33.333333%!important}.\32xl\:pb-4\/12{padding-bottom:33.333333%!important}.\32xl\:pl-4\/12{padding-left:33.333333%!important}.\32xl\:pt-5\/12{padding-top:41.666667%!important}.\32xl\:pr-5\/12{padding-right:41.666667%!important}.\32xl\:pb-5\/12{padding-bottom:41.666667%!important}.\32xl\:pl-5\/12{padding-left:41.666667%!important}.\32xl\:pt-6\/12{padding-top:50%!important}.\32xl\:pr-6\/12{padding-right:50%!important}.\32xl\:pb-6\/12{padding-bottom:50%!important}.\32xl\:pl-6\/12{padding-left:50%!important}.\32xl\:pt-7\/12{padding-top:58.333333%!important}.\32xl\:pr-7\/12{padding-right:58.333333%!important}.\32xl\:pb-7\/12{padding-bottom:58.333333%!important}.\32xl\:pl-7\/12{padding-left:58.333333%!important}.\32xl\:pt-8\/12{padding-top:66.666667%!important}.\32xl\:pr-8\/12{padding-right:66.666667%!important}.\32xl\:pb-8\/12{padding-bottom:66.666667%!important}.\32xl\:pl-8\/12{padding-left:66.666667%!important}.\32xl\:pt-9\/12{padding-top:75%!important}.\32xl\:pr-9\/12{padding-right:75%!important}.\32xl\:pb-9\/12{padding-bottom:75%!important}.\32xl\:pl-9\/12{padding-left:75%!important}.\32xl\:pt-10\/12{padding-top:83.333333%!important}.\32xl\:pr-10\/12{padding-right:83.333333%!important}.\32xl\:pb-10\/12{padding-bottom:83.333333%!important}.\32xl\:pl-10\/12{padding-left:83.333333%!important}.\32xl\:pt-11\/12{padding-top:91.666667%!important}.\32xl\:pr-11\/12{padding-right:91.666667%!important}.\32xl\:pb-11\/12{padding-bottom:91.666667%!important}.\32xl\:pl-11\/12{padding-left:91.666667%!important}.\32xl\:pt-full{padding-top:100%!important}.\32xl\:pr-full{padding-right:100%!important}.\32xl\:pb-full{padding-bottom:100%!important}.\32xl\:pl-full{padding-left:100%!important}[dir=ltr] .\32xl\:ltr\:p-0{padding:0!important}[dir=ltr] .\32xl\:ltr\:p-1{padding:.25rem!important}[dir=ltr] .\32xl\:ltr\:p-2{padding:.5rem!important}[dir=ltr] .\32xl\:ltr\:p-3{padding:.75rem!important}[dir=ltr] .\32xl\:ltr\:p-4{padding:1rem!important}[dir=ltr] .\32xl\:ltr\:p-5{padding:1.25rem!important}[dir=ltr] .\32xl\:ltr\:p-6{padding:1.5rem!important}[dir=ltr] .\32xl\:ltr\:p-7{padding:1.75rem!important}[dir=ltr] .\32xl\:ltr\:p-8{padding:2rem!important}[dir=ltr] .\32xl\:ltr\:p-9{padding:2.25rem!important}[dir=ltr] .\32xl\:ltr\:p-10{padding:2.5rem!important}[dir=ltr] .\32xl\:ltr\:p-11{padding:2.75rem!important}[dir=ltr] .\32xl\:ltr\:p-12{padding:3rem!important}[dir=ltr] .\32xl\:ltr\:p-13{padding:3.25rem!important}[dir=ltr] .\32xl\:ltr\:p-14{padding:3.5rem!important}[dir=ltr] .\32xl\:ltr\:p-15{padding:3.75rem!important}[dir=ltr] .\32xl\:ltr\:p-16{padding:4rem!important}[dir=ltr] .\32xl\:ltr\:p-20{padding:5rem!important}[dir=ltr] .\32xl\:ltr\:p-24{padding:6rem!important}[dir=ltr] .\32xl\:ltr\:p-28{padding:7rem!important}[dir=ltr] .\32xl\:ltr\:p-32{padding:8rem!important}[dir=ltr] .\32xl\:ltr\:p-36{padding:9rem!important}[dir=ltr] .\32xl\:ltr\:p-40{padding:10rem!important}[dir=ltr] .\32xl\:ltr\:p-48{padding:12rem!important}[dir=ltr] .\32xl\:ltr\:p-56{padding:14rem!important}[dir=ltr] .\32xl\:ltr\:p-60{padding:15rem!important}[dir=ltr] .\32xl\:ltr\:p-64{padding:16rem!important}[dir=ltr] .\32xl\:ltr\:p-72{padding:18rem!important}[dir=ltr] .\32xl\:ltr\:p-80{padding:20rem!important}[dir=ltr] .\32xl\:ltr\:p-96{padding:24rem!important}[dir=ltr] .\32xl\:ltr\:p-px{padding:1px!important}[dir=ltr] .\32xl\:ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .\32xl\:ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .\32xl\:ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .\32xl\:ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .\32xl\:ltr\:p-1\/2{padding:50%!important}[dir=ltr] .\32xl\:ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .\32xl\:ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .\32xl\:ltr\:p-1\/4{padding:25%!important}[dir=ltr] .\32xl\:ltr\:p-2\/4{padding:50%!important}[dir=ltr] .\32xl\:ltr\:p-3\/4{padding:75%!important}[dir=ltr] .\32xl\:ltr\:p-1\/5{padding:20%!important}[dir=ltr] .\32xl\:ltr\:p-2\/5{padding:40%!important}[dir=ltr] .\32xl\:ltr\:p-3\/5{padding:60%!important}[dir=ltr] .\32xl\:ltr\:p-4\/5{padding:80%!important}[dir=ltr] .\32xl\:ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .\32xl\:ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .\32xl\:ltr\:p-3\/6{padding:50%!important}[dir=ltr] .\32xl\:ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .\32xl\:ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .\32xl\:ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .\32xl\:ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .\32xl\:ltr\:p-3\/12{padding:25%!important}[dir=ltr] .\32xl\:ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .\32xl\:ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .\32xl\:ltr\:p-6\/12{padding:50%!important}[dir=ltr] .\32xl\:ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .\32xl\:ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .\32xl\:ltr\:p-9\/12{padding:75%!important}[dir=ltr] .\32xl\:ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .\32xl\:ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .\32xl\:ltr\:p-full{padding:100%!important}[dir=ltr] .\32xl\:ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .\32xl\:ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .\32xl\:ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .\32xl\:ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .\32xl\:ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .\32xl\:ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .\32xl\:ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .\32xl\:ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .\32xl\:ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .\32xl\:ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .\32xl\:ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .\32xl\:ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .\32xl\:ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .\32xl\:ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .\32xl\:ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .\32xl\:ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .\32xl\:ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .\32xl\:ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .\32xl\:ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .\32xl\:ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .\32xl\:ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .\32xl\:ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .\32xl\:ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .\32xl\:ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .\32xl\:ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .\32xl\:ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .\32xl\:ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .\32xl\:ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .\32xl\:ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .\32xl\:ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .\32xl\:ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .\32xl\:ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .\32xl\:ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .\32xl\:ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .\32xl\:ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .\32xl\:ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .\32xl\:ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .\32xl\:ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .\32xl\:ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .\32xl\:ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .\32xl\:ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .\32xl\:ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .\32xl\:ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .\32xl\:ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .\32xl\:ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .\32xl\:ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .\32xl\:ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .\32xl\:ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .\32xl\:ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .\32xl\:ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .\32xl\:ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .\32xl\:ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .\32xl\:ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .\32xl\:ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .\32xl\:ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .\32xl\:ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .\32xl\:ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .\32xl\:ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .\32xl\:ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .\32xl\:ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .\32xl\:ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .\32xl\:ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .\32xl\:ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .\32xl\:ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .\32xl\:ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .\32xl\:ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .\32xl\:ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .\32xl\:ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .\32xl\:ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .\32xl\:ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .\32xl\:ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .\32xl\:ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .\32xl\:ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .\32xl\:ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .\32xl\:ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .\32xl\:ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .\32xl\:ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .\32xl\:ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .\32xl\:ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .\32xl\:ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .\32xl\:ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .\32xl\:ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .\32xl\:ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .\32xl\:ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .\32xl\:ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .\32xl\:ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .\32xl\:ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .\32xl\:ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .\32xl\:ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .\32xl\:ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .\32xl\:ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .\32xl\:ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .\32xl\:ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .\32xl\:ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .\32xl\:ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .\32xl\:ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .\32xl\:ltr\:pt-0{padding-top:0!important}[dir=ltr] .\32xl\:ltr\:pr-0{padding-right:0!important}[dir=ltr] .\32xl\:ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .\32xl\:ltr\:pl-0{padding-left:0!important}[dir=ltr] .\32xl\:ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .\32xl\:ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .\32xl\:ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .\32xl\:ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .\32xl\:ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .\32xl\:ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .\32xl\:ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .\32xl\:ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .\32xl\:ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .\32xl\:ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .\32xl\:ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .\32xl\:ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .\32xl\:ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .\32xl\:ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .\32xl\:ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .\32xl\:ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .\32xl\:ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .\32xl\:ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .\32xl\:ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .\32xl\:ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .\32xl\:ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .\32xl\:ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .\32xl\:ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .\32xl\:ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .\32xl\:ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .\32xl\:ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .\32xl\:ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .\32xl\:ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .\32xl\:ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .\32xl\:ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .\32xl\:ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .\32xl\:ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .\32xl\:ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .\32xl\:ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .\32xl\:ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .\32xl\:ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .\32xl\:ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .\32xl\:ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .\32xl\:ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .\32xl\:ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .\32xl\:ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .\32xl\:ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .\32xl\:ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .\32xl\:ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .\32xl\:ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .\32xl\:ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .\32xl\:ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .\32xl\:ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .\32xl\:ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .\32xl\:ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .\32xl\:ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .\32xl\:ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .\32xl\:ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .\32xl\:ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .\32xl\:ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .\32xl\:ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .\32xl\:ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .\32xl\:ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .\32xl\:ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .\32xl\:ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .\32xl\:ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .\32xl\:ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .\32xl\:ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .\32xl\:ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .\32xl\:ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .\32xl\:ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .\32xl\:ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .\32xl\:ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .\32xl\:ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .\32xl\:ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .\32xl\:ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .\32xl\:ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .\32xl\:ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .\32xl\:ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .\32xl\:ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .\32xl\:ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .\32xl\:ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .\32xl\:ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .\32xl\:ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .\32xl\:ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .\32xl\:ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .\32xl\:ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .\32xl\:ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .\32xl\:ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .\32xl\:ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .\32xl\:ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .\32xl\:ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .\32xl\:ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .\32xl\:ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .\32xl\:ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .\32xl\:ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .\32xl\:ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .\32xl\:ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .\32xl\:ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .\32xl\:ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .\32xl\:ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .\32xl\:ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .\32xl\:ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .\32xl\:ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .\32xl\:ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .\32xl\:ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .\32xl\:ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .\32xl\:ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .\32xl\:ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .\32xl\:ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .\32xl\:ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .\32xl\:ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .\32xl\:ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .\32xl\:ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .\32xl\:ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .\32xl\:ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .\32xl\:ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .\32xl\:ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .\32xl\:ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .\32xl\:ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .\32xl\:ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .\32xl\:ltr\:pt-px{padding-top:1px!important}[dir=ltr] .\32xl\:ltr\:pr-px{padding-right:1px!important}[dir=ltr] .\32xl\:ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .\32xl\:ltr\:pl-px{padding-left:1px!important}[dir=ltr] .\32xl\:ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .\32xl\:ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .\32xl\:ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .\32xl\:ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .\32xl\:ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .\32xl\:ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .\32xl\:ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .\32xl\:ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .\32xl\:ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .\32xl\:ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .\32xl\:ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .\32xl\:ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .\32xl\:ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .\32xl\:ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .\32xl\:ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .\32xl\:ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .\32xl\:ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .\32xl\:ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .\32xl\:ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .\32xl\:ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .\32xl\:ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .\32xl\:ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .\32xl\:ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .\32xl\:ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .\32xl\:ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .\32xl\:ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .\32xl\:ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .\32xl\:ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .\32xl\:ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .\32xl\:ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .\32xl\:ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .\32xl\:ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .\32xl\:ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .\32xl\:ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .\32xl\:ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .\32xl\:ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .\32xl\:ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .\32xl\:ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .\32xl\:ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .\32xl\:ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .\32xl\:ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .\32xl\:ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .\32xl\:ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .\32xl\:ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .\32xl\:ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .\32xl\:ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .\32xl\:ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .\32xl\:ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .\32xl\:ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .\32xl\:ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .\32xl\:ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .\32xl\:ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .\32xl\:ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .\32xl\:ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .\32xl\:ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .\32xl\:ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .\32xl\:ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .\32xl\:ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .\32xl\:ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .\32xl\:ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .\32xl\:ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .\32xl\:ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .\32xl\:ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .\32xl\:ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .\32xl\:ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .\32xl\:ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .\32xl\:ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .\32xl\:ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .\32xl\:ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .\32xl\:ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .\32xl\:ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .\32xl\:ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .\32xl\:ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .\32xl\:ltr\:pt-full{padding-top:100%!important}[dir=ltr] .\32xl\:ltr\:pr-full{padding-right:100%!important}[dir=ltr] .\32xl\:ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .\32xl\:ltr\:pl-full{padding-left:100%!important}[dir=rtl] .\32xl\:rtl\:p-0{padding:0!important}[dir=rtl] .\32xl\:rtl\:p-1{padding:.25rem!important}[dir=rtl] .\32xl\:rtl\:p-2{padding:.5rem!important}[dir=rtl] .\32xl\:rtl\:p-3{padding:.75rem!important}[dir=rtl] .\32xl\:rtl\:p-4{padding:1rem!important}[dir=rtl] .\32xl\:rtl\:p-5{padding:1.25rem!important}[dir=rtl] .\32xl\:rtl\:p-6{padding:1.5rem!important}[dir=rtl] .\32xl\:rtl\:p-7{padding:1.75rem!important}[dir=rtl] .\32xl\:rtl\:p-8{padding:2rem!important}[dir=rtl] .\32xl\:rtl\:p-9{padding:2.25rem!important}[dir=rtl] .\32xl\:rtl\:p-10{padding:2.5rem!important}[dir=rtl] .\32xl\:rtl\:p-11{padding:2.75rem!important}[dir=rtl] .\32xl\:rtl\:p-12{padding:3rem!important}[dir=rtl] .\32xl\:rtl\:p-13{padding:3.25rem!important}[dir=rtl] .\32xl\:rtl\:p-14{padding:3.5rem!important}[dir=rtl] .\32xl\:rtl\:p-15{padding:3.75rem!important}[dir=rtl] .\32xl\:rtl\:p-16{padding:4rem!important}[dir=rtl] .\32xl\:rtl\:p-20{padding:5rem!important}[dir=rtl] .\32xl\:rtl\:p-24{padding:6rem!important}[dir=rtl] .\32xl\:rtl\:p-28{padding:7rem!important}[dir=rtl] .\32xl\:rtl\:p-32{padding:8rem!important}[dir=rtl] .\32xl\:rtl\:p-36{padding:9rem!important}[dir=rtl] .\32xl\:rtl\:p-40{padding:10rem!important}[dir=rtl] .\32xl\:rtl\:p-48{padding:12rem!important}[dir=rtl] .\32xl\:rtl\:p-56{padding:14rem!important}[dir=rtl] .\32xl\:rtl\:p-60{padding:15rem!important}[dir=rtl] .\32xl\:rtl\:p-64{padding:16rem!important}[dir=rtl] .\32xl\:rtl\:p-72{padding:18rem!important}[dir=rtl] .\32xl\:rtl\:p-80{padding:20rem!important}[dir=rtl] .\32xl\:rtl\:p-96{padding:24rem!important}[dir=rtl] .\32xl\:rtl\:p-px{padding:1px!important}[dir=rtl] .\32xl\:rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .\32xl\:rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .\32xl\:rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .\32xl\:rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .\32xl\:rtl\:p-1\/2{padding:50%!important}[dir=rtl] .\32xl\:rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .\32xl\:rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .\32xl\:rtl\:p-1\/4{padding:25%!important}[dir=rtl] .\32xl\:rtl\:p-2\/4{padding:50%!important}[dir=rtl] .\32xl\:rtl\:p-3\/4{padding:75%!important}[dir=rtl] .\32xl\:rtl\:p-1\/5{padding:20%!important}[dir=rtl] .\32xl\:rtl\:p-2\/5{padding:40%!important}[dir=rtl] .\32xl\:rtl\:p-3\/5{padding:60%!important}[dir=rtl] .\32xl\:rtl\:p-4\/5{padding:80%!important}[dir=rtl] .\32xl\:rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .\32xl\:rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .\32xl\:rtl\:p-3\/6{padding:50%!important}[dir=rtl] .\32xl\:rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .\32xl\:rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .\32xl\:rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .\32xl\:rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .\32xl\:rtl\:p-3\/12{padding:25%!important}[dir=rtl] .\32xl\:rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .\32xl\:rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .\32xl\:rtl\:p-6\/12{padding:50%!important}[dir=rtl] .\32xl\:rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .\32xl\:rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .\32xl\:rtl\:p-9\/12{padding:75%!important}[dir=rtl] .\32xl\:rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .\32xl\:rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .\32xl\:rtl\:p-full{padding:100%!important}[dir=rtl] .\32xl\:rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .\32xl\:rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .\32xl\:rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .\32xl\:rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .\32xl\:rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .\32xl\:rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .\32xl\:rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .\32xl\:rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .\32xl\:rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .\32xl\:rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .\32xl\:rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .\32xl\:rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .\32xl\:rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .\32xl\:rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .\32xl\:rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .\32xl\:rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .\32xl\:rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .\32xl\:rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .\32xl\:rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .\32xl\:rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .\32xl\:rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .\32xl\:rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .\32xl\:rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .\32xl\:rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .\32xl\:rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .\32xl\:rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .\32xl\:rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .\32xl\:rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .\32xl\:rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .\32xl\:rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .\32xl\:rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .\32xl\:rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .\32xl\:rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .\32xl\:rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .\32xl\:rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .\32xl\:rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .\32xl\:rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .\32xl\:rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .\32xl\:rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .\32xl\:rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .\32xl\:rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .\32xl\:rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .\32xl\:rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .\32xl\:rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .\32xl\:rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .\32xl\:rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .\32xl\:rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .\32xl\:rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .\32xl\:rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .\32xl\:rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .\32xl\:rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .\32xl\:rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .\32xl\:rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .\32xl\:rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .\32xl\:rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .\32xl\:rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .\32xl\:rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .\32xl\:rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .\32xl\:rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .\32xl\:rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .\32xl\:rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .\32xl\:rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .\32xl\:rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .\32xl\:rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .\32xl\:rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .\32xl\:rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .\32xl\:rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .\32xl\:rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .\32xl\:rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .\32xl\:rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .\32xl\:rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .\32xl\:rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .\32xl\:rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .\32xl\:rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .\32xl\:rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .\32xl\:rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .\32xl\:rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .\32xl\:rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .\32xl\:rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .\32xl\:rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .\32xl\:rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .\32xl\:rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .\32xl\:rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .\32xl\:rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .\32xl\:rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .\32xl\:rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .\32xl\:rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .\32xl\:rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .\32xl\:rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .\32xl\:rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .\32xl\:rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .\32xl\:rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .\32xl\:rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .\32xl\:rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .\32xl\:rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .\32xl\:rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .\32xl\:rtl\:pt-0{padding-top:0!important}[dir=rtl] .\32xl\:rtl\:pr-0{padding-right:0!important}[dir=rtl] .\32xl\:rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .\32xl\:rtl\:pl-0{padding-left:0!important}[dir=rtl] .\32xl\:rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .\32xl\:rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .\32xl\:rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .\32xl\:rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .\32xl\:rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .\32xl\:rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .\32xl\:rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .\32xl\:rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .\32xl\:rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .\32xl\:rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .\32xl\:rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .\32xl\:rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .\32xl\:rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .\32xl\:rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .\32xl\:rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .\32xl\:rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .\32xl\:rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .\32xl\:rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .\32xl\:rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .\32xl\:rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .\32xl\:rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .\32xl\:rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .\32xl\:rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .\32xl\:rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .\32xl\:rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .\32xl\:rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .\32xl\:rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .\32xl\:rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .\32xl\:rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .\32xl\:rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .\32xl\:rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .\32xl\:rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .\32xl\:rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .\32xl\:rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .\32xl\:rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .\32xl\:rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .\32xl\:rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .\32xl\:rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .\32xl\:rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .\32xl\:rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .\32xl\:rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .\32xl\:rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .\32xl\:rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .\32xl\:rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .\32xl\:rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .\32xl\:rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .\32xl\:rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .\32xl\:rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .\32xl\:rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .\32xl\:rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .\32xl\:rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .\32xl\:rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .\32xl\:rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .\32xl\:rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .\32xl\:rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .\32xl\:rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .\32xl\:rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .\32xl\:rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .\32xl\:rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .\32xl\:rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .\32xl\:rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .\32xl\:rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .\32xl\:rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .\32xl\:rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .\32xl\:rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .\32xl\:rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .\32xl\:rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .\32xl\:rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .\32xl\:rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .\32xl\:rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .\32xl\:rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .\32xl\:rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .\32xl\:rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .\32xl\:rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .\32xl\:rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .\32xl\:rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .\32xl\:rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .\32xl\:rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .\32xl\:rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .\32xl\:rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .\32xl\:rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .\32xl\:rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .\32xl\:rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .\32xl\:rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .\32xl\:rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .\32xl\:rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .\32xl\:rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .\32xl\:rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .\32xl\:rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .\32xl\:rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .\32xl\:rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .\32xl\:rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .\32xl\:rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .\32xl\:rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .\32xl\:rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .\32xl\:rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .\32xl\:rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .\32xl\:rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .\32xl\:rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .\32xl\:rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .\32xl\:rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .\32xl\:rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .\32xl\:rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .\32xl\:rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .\32xl\:rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .\32xl\:rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .\32xl\:rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .\32xl\:rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .\32xl\:rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .\32xl\:rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .\32xl\:rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .\32xl\:rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .\32xl\:rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .\32xl\:rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .\32xl\:rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .\32xl\:rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .\32xl\:rtl\:pt-px{padding-top:1px!important}[dir=rtl] .\32xl\:rtl\:pr-px{padding-right:1px!important}[dir=rtl] .\32xl\:rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .\32xl\:rtl\:pl-px{padding-left:1px!important}[dir=rtl] .\32xl\:rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .\32xl\:rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .\32xl\:rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .\32xl\:rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .\32xl\:rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .\32xl\:rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .\32xl\:rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .\32xl\:rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .\32xl\:rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .\32xl\:rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .\32xl\:rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .\32xl\:rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .\32xl\:rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .\32xl\:rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .\32xl\:rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .\32xl\:rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .\32xl\:rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .\32xl\:rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .\32xl\:rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .\32xl\:rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .\32xl\:rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .\32xl\:rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .\32xl\:rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .\32xl\:rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .\32xl\:rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .\32xl\:rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .\32xl\:rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .\32xl\:rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .\32xl\:rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .\32xl\:rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .\32xl\:rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .\32xl\:rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .\32xl\:rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .\32xl\:rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .\32xl\:rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .\32xl\:rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .\32xl\:rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .\32xl\:rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .\32xl\:rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .\32xl\:rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .\32xl\:rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .\32xl\:rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .\32xl\:rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .\32xl\:rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .\32xl\:rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .\32xl\:rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .\32xl\:rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .\32xl\:rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .\32xl\:rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .\32xl\:rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .\32xl\:rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .\32xl\:rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .\32xl\:rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .\32xl\:rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .\32xl\:rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .\32xl\:rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .\32xl\:rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .\32xl\:rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .\32xl\:rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .\32xl\:rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .\32xl\:rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .\32xl\:rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .\32xl\:rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .\32xl\:rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .\32xl\:rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .\32xl\:rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .\32xl\:rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .\32xl\:rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .\32xl\:rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .\32xl\:rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .\32xl\:rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .\32xl\:rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .\32xl\:rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .\32xl\:rtl\:pt-full{padding-top:100%!important}[dir=rtl] .\32xl\:rtl\:pr-full{padding-right:100%!important}[dir=rtl] .\32xl\:rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .\32xl\:rtl\:pl-full{padding-left:100%!important}.\32xl\:placeholder-transparent::-moz-placeholder{color:transparent!important}.\32xl\:placeholder-transparent::placeholder{color:transparent!important}.\32xl\:placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\32xl\:placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\32xl\:placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.\32xl\:placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.\32xl\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\32xl\:placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\32xl\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.\32xl\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.\32xl\:placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\32xl\:placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\32xl\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\32xl\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.\32xl\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.\32xl\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\32xl\:placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\32xl\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\32xl\:placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\32xl\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\32xl\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\32xl\:placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\32xl\:placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\32xl\:placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\32xl\:placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\32xl\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\32xl\:placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\32xl\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\32xl\:placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.\32xl\:focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.\32xl\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.\32xl\:focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.\32xl\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.\32xl\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.\32xl\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.\32xl\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.\32xl\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\32xl\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\32xl\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.\32xl\:placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.\32xl\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.\32xl\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.\32xl\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.\32xl\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.\32xl\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.\32xl\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.\32xl\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.\32xl\:placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.\32xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.\32xl\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.\32xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.\32xl\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.\32xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.\32xl\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.\32xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.\32xl\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.\32xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.\32xl\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.\32xl\:pointer-events-none{pointer-events:none!important}.\32xl\:pointer-events-auto{pointer-events:auto!important}.\32xl\:static{position:static!important}.\32xl\:fixed{position:fixed!important}.\32xl\:absolute{position:absolute!important}.\32xl\:relative{position:relative!important}.\32xl\:sticky{position:sticky!important}.\32xl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.\32xl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.\32xl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.\32xl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.\32xl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.\32xl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.\32xl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.\32xl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.\32xl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.\32xl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.\32xl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.\32xl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.\32xl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.\32xl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.\32xl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.\32xl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.\32xl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.\32xl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.\32xl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.\32xl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.\32xl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.\32xl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.\32xl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.\32xl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.\32xl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.\32xl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.\32xl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.\32xl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.\32xl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.\32xl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.\32xl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.\32xl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.\32xl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.\32xl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.\32xl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.\32xl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.\32xl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\32xl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\32xl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\32xl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.\32xl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\32xl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.\32xl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.\32xl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.\32xl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.\32xl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.\32xl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.\32xl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\32xl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\32xl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\32xl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.\32xl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.\32xl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.\32xl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.\32xl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\32xl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.\32xl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\32xl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.\32xl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\32xl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.\32xl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.\32xl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.\32xl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.\32xl\:inset-y-0{bottom:0!important;top:0!important}.\32xl\:inset-x-0{left:0!important;right:0!important}.\32xl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}.\32xl\:inset-x-1{left:.25rem!important;right:.25rem!important}.\32xl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}.\32xl\:inset-x-2{left:.5rem!important;right:.5rem!important}.\32xl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}.\32xl\:inset-x-3{left:.75rem!important;right:.75rem!important}.\32xl\:inset-y-4{bottom:1rem!important;top:1rem!important}.\32xl\:inset-x-4{left:1rem!important;right:1rem!important}.\32xl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.\32xl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}.\32xl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.\32xl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}.\32xl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.\32xl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}.\32xl\:inset-y-8{bottom:2rem!important;top:2rem!important}.\32xl\:inset-x-8{left:2rem!important;right:2rem!important}.\32xl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.\32xl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}.\32xl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.\32xl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}.\32xl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.\32xl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}.\32xl\:inset-y-12{bottom:3rem!important;top:3rem!important}.\32xl\:inset-x-12{left:3rem!important;right:3rem!important}.\32xl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.\32xl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}.\32xl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.\32xl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}.\32xl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.\32xl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}.\32xl\:inset-y-16{bottom:4rem!important;top:4rem!important}.\32xl\:inset-x-16{left:4rem!important;right:4rem!important}.\32xl\:inset-y-20{bottom:5rem!important;top:5rem!important}.\32xl\:inset-x-20{left:5rem!important;right:5rem!important}.\32xl\:inset-y-24{bottom:6rem!important;top:6rem!important}.\32xl\:inset-x-24{left:6rem!important;right:6rem!important}.\32xl\:inset-y-28{bottom:7rem!important;top:7rem!important}.\32xl\:inset-x-28{left:7rem!important;right:7rem!important}.\32xl\:inset-y-32{bottom:8rem!important;top:8rem!important}.\32xl\:inset-x-32{left:8rem!important;right:8rem!important}.\32xl\:inset-y-36{bottom:9rem!important;top:9rem!important}.\32xl\:inset-x-36{left:9rem!important;right:9rem!important}.\32xl\:inset-y-40{bottom:10rem!important;top:10rem!important}.\32xl\:inset-x-40{left:10rem!important;right:10rem!important}.\32xl\:inset-y-48{bottom:12rem!important;top:12rem!important}.\32xl\:inset-x-48{left:12rem!important;right:12rem!important}.\32xl\:inset-y-56{bottom:14rem!important;top:14rem!important}.\32xl\:inset-x-56{left:14rem!important;right:14rem!important}.\32xl\:inset-y-60{bottom:15rem!important;top:15rem!important}.\32xl\:inset-x-60{left:15rem!important;right:15rem!important}.\32xl\:inset-y-64{bottom:16rem!important;top:16rem!important}.\32xl\:inset-x-64{left:16rem!important;right:16rem!important}.\32xl\:inset-y-72{bottom:18rem!important;top:18rem!important}.\32xl\:inset-x-72{left:18rem!important;right:18rem!important}.\32xl\:inset-y-80{bottom:20rem!important;top:20rem!important}.\32xl\:inset-x-80{left:20rem!important;right:20rem!important}.\32xl\:inset-y-96{bottom:24rem!important;top:24rem!important}.\32xl\:inset-x-96{left:24rem!important;right:24rem!important}.\32xl\:inset-y-auto{bottom:auto!important;top:auto!important}.\32xl\:inset-x-auto{left:auto!important;right:auto!important}.\32xl\:inset-y-px{bottom:1px!important;top:1px!important}.\32xl\:inset-x-px{left:1px!important;right:1px!important}.\32xl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.\32xl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}.\32xl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.\32xl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}.\32xl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.\32xl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}.\32xl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.\32xl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}.\32xl\:inset-y-1\/2{bottom:50%!important;top:50%!important}.\32xl\:inset-x-1\/2{left:50%!important;right:50%!important}.\32xl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.\32xl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.\32xl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.\32xl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.\32xl\:inset-y-1\/4{bottom:25%!important;top:25%!important}.\32xl\:inset-x-1\/4{left:25%!important;right:25%!important}.\32xl\:inset-y-2\/4{bottom:50%!important;top:50%!important}.\32xl\:inset-x-2\/4{left:50%!important;right:50%!important}.\32xl\:inset-y-3\/4{bottom:75%!important;top:75%!important}.\32xl\:inset-x-3\/4{left:75%!important;right:75%!important}.\32xl\:inset-y-1\/5{bottom:20%!important;top:20%!important}.\32xl\:inset-x-1\/5{left:20%!important;right:20%!important}.\32xl\:inset-y-2\/5{bottom:40%!important;top:40%!important}.\32xl\:inset-x-2\/5{left:40%!important;right:40%!important}.\32xl\:inset-y-3\/5{bottom:60%!important;top:60%!important}.\32xl\:inset-x-3\/5{left:60%!important;right:60%!important}.\32xl\:inset-y-4\/5{bottom:80%!important;top:80%!important}.\32xl\:inset-x-4\/5{left:80%!important;right:80%!important}.\32xl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.\32xl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.\32xl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.\32xl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.\32xl\:inset-y-3\/6{bottom:50%!important;top:50%!important}.\32xl\:inset-x-3\/6{left:50%!important;right:50%!important}.\32xl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.\32xl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.\32xl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.\32xl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.\32xl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.\32xl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.\32xl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.\32xl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.\32xl\:inset-y-3\/12{bottom:25%!important;top:25%!important}.\32xl\:inset-x-3\/12{left:25%!important;right:25%!important}.\32xl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.\32xl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.\32xl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.\32xl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.\32xl\:inset-y-6\/12{bottom:50%!important;top:50%!important}.\32xl\:inset-x-6\/12{left:50%!important;right:50%!important}.\32xl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.\32xl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.\32xl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.\32xl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.\32xl\:inset-y-9\/12{bottom:75%!important;top:75%!important}.\32xl\:inset-x-9\/12{left:75%!important;right:75%!important}.\32xl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.\32xl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.\32xl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.\32xl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.\32xl\:inset-y-full{bottom:100%!important;top:100%!important}.\32xl\:inset-x-full{left:100%!important;right:100%!important}.\32xl\:top-0{top:0!important}.\32xl\:right-0{right:0!important}.\32xl\:bottom-0{bottom:0!important}.\32xl\:left-0{left:0!important}.\32xl\:top-1{top:.25rem!important}.\32xl\:right-1{right:.25rem!important}.\32xl\:bottom-1{bottom:.25rem!important}.\32xl\:left-1{left:.25rem!important}.\32xl\:top-2{top:.5rem!important}.\32xl\:right-2{right:.5rem!important}.\32xl\:bottom-2{bottom:.5rem!important}.\32xl\:left-2{left:.5rem!important}.\32xl\:top-3{top:.75rem!important}.\32xl\:right-3{right:.75rem!important}.\32xl\:bottom-3{bottom:.75rem!important}.\32xl\:left-3{left:.75rem!important}.\32xl\:top-4{top:1rem!important}.\32xl\:right-4{right:1rem!important}.\32xl\:bottom-4{bottom:1rem!important}.\32xl\:left-4{left:1rem!important}.\32xl\:top-5{top:1.25rem!important}.\32xl\:right-5{right:1.25rem!important}.\32xl\:bottom-5{bottom:1.25rem!important}.\32xl\:left-5{left:1.25rem!important}.\32xl\:top-6{top:1.5rem!important}.\32xl\:right-6{right:1.5rem!important}.\32xl\:bottom-6{bottom:1.5rem!important}.\32xl\:left-6{left:1.5rem!important}.\32xl\:top-7{top:1.75rem!important}.\32xl\:right-7{right:1.75rem!important}.\32xl\:bottom-7{bottom:1.75rem!important}.\32xl\:left-7{left:1.75rem!important}.\32xl\:top-8{top:2rem!important}.\32xl\:right-8{right:2rem!important}.\32xl\:bottom-8{bottom:2rem!important}.\32xl\:left-8{left:2rem!important}.\32xl\:top-9{top:2.25rem!important}.\32xl\:right-9{right:2.25rem!important}.\32xl\:bottom-9{bottom:2.25rem!important}.\32xl\:left-9{left:2.25rem!important}.\32xl\:top-10{top:2.5rem!important}.\32xl\:right-10{right:2.5rem!important}.\32xl\:bottom-10{bottom:2.5rem!important}.\32xl\:left-10{left:2.5rem!important}.\32xl\:top-11{top:2.75rem!important}.\32xl\:right-11{right:2.75rem!important}.\32xl\:bottom-11{bottom:2.75rem!important}.\32xl\:left-11{left:2.75rem!important}.\32xl\:top-12{top:3rem!important}.\32xl\:right-12{right:3rem!important}.\32xl\:bottom-12{bottom:3rem!important}.\32xl\:left-12{left:3rem!important}.\32xl\:top-13{top:3.25rem!important}.\32xl\:right-13{right:3.25rem!important}.\32xl\:bottom-13{bottom:3.25rem!important}.\32xl\:left-13{left:3.25rem!important}.\32xl\:top-14{top:3.5rem!important}.\32xl\:right-14{right:3.5rem!important}.\32xl\:bottom-14{bottom:3.5rem!important}.\32xl\:left-14{left:3.5rem!important}.\32xl\:top-15{top:3.75rem!important}.\32xl\:right-15{right:3.75rem!important}.\32xl\:bottom-15{bottom:3.75rem!important}.\32xl\:left-15{left:3.75rem!important}.\32xl\:top-16{top:4rem!important}.\32xl\:right-16{right:4rem!important}.\32xl\:bottom-16{bottom:4rem!important}.\32xl\:left-16{left:4rem!important}.\32xl\:top-20{top:5rem!important}.\32xl\:right-20{right:5rem!important}.\32xl\:bottom-20{bottom:5rem!important}.\32xl\:left-20{left:5rem!important}.\32xl\:top-24{top:6rem!important}.\32xl\:right-24{right:6rem!important}.\32xl\:bottom-24{bottom:6rem!important}.\32xl\:left-24{left:6rem!important}.\32xl\:top-28{top:7rem!important}.\32xl\:right-28{right:7rem!important}.\32xl\:bottom-28{bottom:7rem!important}.\32xl\:left-28{left:7rem!important}.\32xl\:top-32{top:8rem!important}.\32xl\:right-32{right:8rem!important}.\32xl\:bottom-32{bottom:8rem!important}.\32xl\:left-32{left:8rem!important}.\32xl\:top-36{top:9rem!important}.\32xl\:right-36{right:9rem!important}.\32xl\:bottom-36{bottom:9rem!important}.\32xl\:left-36{left:9rem!important}.\32xl\:top-40{top:10rem!important}.\32xl\:right-40{right:10rem!important}.\32xl\:bottom-40{bottom:10rem!important}.\32xl\:left-40{left:10rem!important}.\32xl\:top-48{top:12rem!important}.\32xl\:right-48{right:12rem!important}.\32xl\:bottom-48{bottom:12rem!important}.\32xl\:left-48{left:12rem!important}.\32xl\:top-56{top:14rem!important}.\32xl\:right-56{right:14rem!important}.\32xl\:bottom-56{bottom:14rem!important}.\32xl\:left-56{left:14rem!important}.\32xl\:top-60{top:15rem!important}.\32xl\:right-60{right:15rem!important}.\32xl\:bottom-60{bottom:15rem!important}.\32xl\:left-60{left:15rem!important}.\32xl\:top-64{top:16rem!important}.\32xl\:right-64{right:16rem!important}.\32xl\:bottom-64{bottom:16rem!important}.\32xl\:left-64{left:16rem!important}.\32xl\:top-72{top:18rem!important}.\32xl\:right-72{right:18rem!important}.\32xl\:bottom-72{bottom:18rem!important}.\32xl\:left-72{left:18rem!important}.\32xl\:top-80{top:20rem!important}.\32xl\:right-80{right:20rem!important}.\32xl\:bottom-80{bottom:20rem!important}.\32xl\:left-80{left:20rem!important}.\32xl\:top-96{top:24rem!important}.\32xl\:right-96{right:24rem!important}.\32xl\:bottom-96{bottom:24rem!important}.\32xl\:left-96{left:24rem!important}.\32xl\:top-auto{top:auto!important}.\32xl\:right-auto{right:auto!important}.\32xl\:bottom-auto{bottom:auto!important}.\32xl\:left-auto{left:auto!important}.\32xl\:top-px{top:1px!important}.\32xl\:right-px{right:1px!important}.\32xl\:bottom-px{bottom:1px!important}.\32xl\:left-px{left:1px!important}.\32xl\:top-0\.5{top:.125rem!important}.\32xl\:right-0\.5{right:.125rem!important}.\32xl\:bottom-0\.5{bottom:.125rem!important}.\32xl\:left-0\.5{left:.125rem!important}.\32xl\:top-1\.5{top:.375rem!important}.\32xl\:right-1\.5{right:.375rem!important}.\32xl\:bottom-1\.5{bottom:.375rem!important}.\32xl\:left-1\.5{left:.375rem!important}.\32xl\:top-2\.5{top:.625rem!important}.\32xl\:right-2\.5{right:.625rem!important}.\32xl\:bottom-2\.5{bottom:.625rem!important}.\32xl\:left-2\.5{left:.625rem!important}.\32xl\:top-3\.5{top:.875rem!important}.\32xl\:right-3\.5{right:.875rem!important}.\32xl\:bottom-3\.5{bottom:.875rem!important}.\32xl\:left-3\.5{left:.875rem!important}.\32xl\:top-1\/2{top:50%!important}.\32xl\:right-1\/2{right:50%!important}.\32xl\:bottom-1\/2{bottom:50%!important}.\32xl\:left-1\/2{left:50%!important}.\32xl\:top-1\/3{top:33.333333%!important}.\32xl\:right-1\/3{right:33.333333%!important}.\32xl\:bottom-1\/3{bottom:33.333333%!important}.\32xl\:left-1\/3{left:33.333333%!important}.\32xl\:top-2\/3{top:66.666667%!important}.\32xl\:right-2\/3{right:66.666667%!important}.\32xl\:bottom-2\/3{bottom:66.666667%!important}.\32xl\:left-2\/3{left:66.666667%!important}.\32xl\:top-1\/4{top:25%!important}.\32xl\:right-1\/4{right:25%!important}.\32xl\:bottom-1\/4{bottom:25%!important}.\32xl\:left-1\/4{left:25%!important}.\32xl\:top-2\/4{top:50%!important}.\32xl\:right-2\/4{right:50%!important}.\32xl\:bottom-2\/4{bottom:50%!important}.\32xl\:left-2\/4{left:50%!important}.\32xl\:top-3\/4{top:75%!important}.\32xl\:right-3\/4{right:75%!important}.\32xl\:bottom-3\/4{bottom:75%!important}.\32xl\:left-3\/4{left:75%!important}.\32xl\:top-1\/5{top:20%!important}.\32xl\:right-1\/5{right:20%!important}.\32xl\:bottom-1\/5{bottom:20%!important}.\32xl\:left-1\/5{left:20%!important}.\32xl\:top-2\/5{top:40%!important}.\32xl\:right-2\/5{right:40%!important}.\32xl\:bottom-2\/5{bottom:40%!important}.\32xl\:left-2\/5{left:40%!important}.\32xl\:top-3\/5{top:60%!important}.\32xl\:right-3\/5{right:60%!important}.\32xl\:bottom-3\/5{bottom:60%!important}.\32xl\:left-3\/5{left:60%!important}.\32xl\:top-4\/5{top:80%!important}.\32xl\:right-4\/5{right:80%!important}.\32xl\:bottom-4\/5{bottom:80%!important}.\32xl\:left-4\/5{left:80%!important}.\32xl\:top-1\/6{top:16.666667%!important}.\32xl\:right-1\/6{right:16.666667%!important}.\32xl\:bottom-1\/6{bottom:16.666667%!important}.\32xl\:left-1\/6{left:16.666667%!important}.\32xl\:top-2\/6{top:33.333333%!important}.\32xl\:right-2\/6{right:33.333333%!important}.\32xl\:bottom-2\/6{bottom:33.333333%!important}.\32xl\:left-2\/6{left:33.333333%!important}.\32xl\:top-3\/6{top:50%!important}.\32xl\:right-3\/6{right:50%!important}.\32xl\:bottom-3\/6{bottom:50%!important}.\32xl\:left-3\/6{left:50%!important}.\32xl\:top-4\/6{top:66.666667%!important}.\32xl\:right-4\/6{right:66.666667%!important}.\32xl\:bottom-4\/6{bottom:66.666667%!important}.\32xl\:left-4\/6{left:66.666667%!important}.\32xl\:top-5\/6{top:83.333333%!important}.\32xl\:right-5\/6{right:83.333333%!important}.\32xl\:bottom-5\/6{bottom:83.333333%!important}.\32xl\:left-5\/6{left:83.333333%!important}.\32xl\:top-1\/12{top:8.333333%!important}.\32xl\:right-1\/12{right:8.333333%!important}.\32xl\:bottom-1\/12{bottom:8.333333%!important}.\32xl\:left-1\/12{left:8.333333%!important}.\32xl\:top-2\/12{top:16.666667%!important}.\32xl\:right-2\/12{right:16.666667%!important}.\32xl\:bottom-2\/12{bottom:16.666667%!important}.\32xl\:left-2\/12{left:16.666667%!important}.\32xl\:top-3\/12{top:25%!important}.\32xl\:right-3\/12{right:25%!important}.\32xl\:bottom-3\/12{bottom:25%!important}.\32xl\:left-3\/12{left:25%!important}.\32xl\:top-4\/12{top:33.333333%!important}.\32xl\:right-4\/12{right:33.333333%!important}.\32xl\:bottom-4\/12{bottom:33.333333%!important}.\32xl\:left-4\/12{left:33.333333%!important}.\32xl\:top-5\/12{top:41.666667%!important}.\32xl\:right-5\/12{right:41.666667%!important}.\32xl\:bottom-5\/12{bottom:41.666667%!important}.\32xl\:left-5\/12{left:41.666667%!important}.\32xl\:top-6\/12{top:50%!important}.\32xl\:right-6\/12{right:50%!important}.\32xl\:bottom-6\/12{bottom:50%!important}.\32xl\:left-6\/12{left:50%!important}.\32xl\:top-7\/12{top:58.333333%!important}.\32xl\:right-7\/12{right:58.333333%!important}.\32xl\:bottom-7\/12{bottom:58.333333%!important}.\32xl\:left-7\/12{left:58.333333%!important}.\32xl\:top-8\/12{top:66.666667%!important}.\32xl\:right-8\/12{right:66.666667%!important}.\32xl\:bottom-8\/12{bottom:66.666667%!important}.\32xl\:left-8\/12{left:66.666667%!important}.\32xl\:top-9\/12{top:75%!important}.\32xl\:right-9\/12{right:75%!important}.\32xl\:bottom-9\/12{bottom:75%!important}.\32xl\:left-9\/12{left:75%!important}.\32xl\:top-10\/12{top:83.333333%!important}.\32xl\:right-10\/12{right:83.333333%!important}.\32xl\:bottom-10\/12{bottom:83.333333%!important}.\32xl\:left-10\/12{left:83.333333%!important}.\32xl\:top-11\/12{top:91.666667%!important}.\32xl\:right-11\/12{right:91.666667%!important}.\32xl\:bottom-11\/12{bottom:91.666667%!important}.\32xl\:left-11\/12{left:91.666667%!important}.\32xl\:top-full{top:100%!important}.\32xl\:right-full{right:100%!important}.\32xl\:bottom-full{bottom:100%!important}.\32xl\:left-full{left:100%!important}[dir=ltr] .\32xl\:ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .\32xl\:ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .\32xl\:ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .\32xl\:ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .\32xl\:ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .\32xl\:ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .\32xl\:ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .\32xl\:ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .\32xl\:ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .\32xl\:ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .\32xl\:ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .\32xl\:ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .\32xl\:ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .\32xl\:ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .\32xl\:ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .\32xl\:ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .\32xl\:ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .\32xl\:ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .\32xl\:ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .\32xl\:ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .\32xl\:ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .\32xl\:ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .\32xl\:ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .\32xl\:ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .\32xl\:ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .\32xl\:ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .\32xl\:ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .\32xl\:ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .\32xl\:ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .\32xl\:ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .\32xl\:ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .\32xl\:ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .\32xl\:ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .\32xl\:ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .\32xl\:ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .\32xl\:ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .\32xl\:ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .\32xl\:ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .\32xl\:ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .\32xl\:ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .\32xl\:ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .\32xl\:ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .\32xl\:ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .\32xl\:ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .\32xl\:ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .\32xl\:ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .\32xl\:ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .\32xl\:ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .\32xl\:ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .\32xl\:ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .\32xl\:ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .\32xl\:ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .\32xl\:ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .\32xl\:ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .\32xl\:ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .\32xl\:ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .\32xl\:ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .\32xl\:ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .\32xl\:ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .\32xl\:ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .\32xl\:ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .\32xl\:ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .\32xl\:ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .\32xl\:ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .\32xl\:ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .\32xl\:ltr\:top-0{top:0!important}[dir=ltr] .\32xl\:ltr\:right-0{right:0!important}[dir=ltr] .\32xl\:ltr\:bottom-0{bottom:0!important}[dir=ltr] .\32xl\:ltr\:left-0{left:0!important}[dir=ltr] .\32xl\:ltr\:top-1{top:.25rem!important}[dir=ltr] .\32xl\:ltr\:right-1{right:.25rem!important}[dir=ltr] .\32xl\:ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .\32xl\:ltr\:left-1{left:.25rem!important}[dir=ltr] .\32xl\:ltr\:top-2{top:.5rem!important}[dir=ltr] .\32xl\:ltr\:right-2{right:.5rem!important}[dir=ltr] .\32xl\:ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .\32xl\:ltr\:left-2{left:.5rem!important}[dir=ltr] .\32xl\:ltr\:top-3{top:.75rem!important}[dir=ltr] .\32xl\:ltr\:right-3{right:.75rem!important}[dir=ltr] .\32xl\:ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .\32xl\:ltr\:left-3{left:.75rem!important}[dir=ltr] .\32xl\:ltr\:top-4{top:1rem!important}[dir=ltr] .\32xl\:ltr\:right-4{right:1rem!important}[dir=ltr] .\32xl\:ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .\32xl\:ltr\:left-4{left:1rem!important}[dir=ltr] .\32xl\:ltr\:top-5{top:1.25rem!important}[dir=ltr] .\32xl\:ltr\:right-5{right:1.25rem!important}[dir=ltr] .\32xl\:ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .\32xl\:ltr\:left-5{left:1.25rem!important}[dir=ltr] .\32xl\:ltr\:top-6{top:1.5rem!important}[dir=ltr] .\32xl\:ltr\:right-6{right:1.5rem!important}[dir=ltr] .\32xl\:ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .\32xl\:ltr\:left-6{left:1.5rem!important}[dir=ltr] .\32xl\:ltr\:top-7{top:1.75rem!important}[dir=ltr] .\32xl\:ltr\:right-7{right:1.75rem!important}[dir=ltr] .\32xl\:ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .\32xl\:ltr\:left-7{left:1.75rem!important}[dir=ltr] .\32xl\:ltr\:top-8{top:2rem!important}[dir=ltr] .\32xl\:ltr\:right-8{right:2rem!important}[dir=ltr] .\32xl\:ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .\32xl\:ltr\:left-8{left:2rem!important}[dir=ltr] .\32xl\:ltr\:top-9{top:2.25rem!important}[dir=ltr] .\32xl\:ltr\:right-9{right:2.25rem!important}[dir=ltr] .\32xl\:ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .\32xl\:ltr\:left-9{left:2.25rem!important}[dir=ltr] .\32xl\:ltr\:top-10{top:2.5rem!important}[dir=ltr] .\32xl\:ltr\:right-10{right:2.5rem!important}[dir=ltr] .\32xl\:ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .\32xl\:ltr\:left-10{left:2.5rem!important}[dir=ltr] .\32xl\:ltr\:top-11{top:2.75rem!important}[dir=ltr] .\32xl\:ltr\:right-11{right:2.75rem!important}[dir=ltr] .\32xl\:ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .\32xl\:ltr\:left-11{left:2.75rem!important}[dir=ltr] .\32xl\:ltr\:top-12{top:3rem!important}[dir=ltr] .\32xl\:ltr\:right-12{right:3rem!important}[dir=ltr] .\32xl\:ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .\32xl\:ltr\:left-12{left:3rem!important}[dir=ltr] .\32xl\:ltr\:top-13{top:3.25rem!important}[dir=ltr] .\32xl\:ltr\:right-13{right:3.25rem!important}[dir=ltr] .\32xl\:ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .\32xl\:ltr\:left-13{left:3.25rem!important}[dir=ltr] .\32xl\:ltr\:top-14{top:3.5rem!important}[dir=ltr] .\32xl\:ltr\:right-14{right:3.5rem!important}[dir=ltr] .\32xl\:ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .\32xl\:ltr\:left-14{left:3.5rem!important}[dir=ltr] .\32xl\:ltr\:top-15{top:3.75rem!important}[dir=ltr] .\32xl\:ltr\:right-15{right:3.75rem!important}[dir=ltr] .\32xl\:ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .\32xl\:ltr\:left-15{left:3.75rem!important}[dir=ltr] .\32xl\:ltr\:top-16{top:4rem!important}[dir=ltr] .\32xl\:ltr\:right-16{right:4rem!important}[dir=ltr] .\32xl\:ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .\32xl\:ltr\:left-16{left:4rem!important}[dir=ltr] .\32xl\:ltr\:top-20{top:5rem!important}[dir=ltr] .\32xl\:ltr\:right-20{right:5rem!important}[dir=ltr] .\32xl\:ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .\32xl\:ltr\:left-20{left:5rem!important}[dir=ltr] .\32xl\:ltr\:top-24{top:6rem!important}[dir=ltr] .\32xl\:ltr\:right-24{right:6rem!important}[dir=ltr] .\32xl\:ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .\32xl\:ltr\:left-24{left:6rem!important}[dir=ltr] .\32xl\:ltr\:top-28{top:7rem!important}[dir=ltr] .\32xl\:ltr\:right-28{right:7rem!important}[dir=ltr] .\32xl\:ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .\32xl\:ltr\:left-28{left:7rem!important}[dir=ltr] .\32xl\:ltr\:top-32{top:8rem!important}[dir=ltr] .\32xl\:ltr\:right-32{right:8rem!important}[dir=ltr] .\32xl\:ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .\32xl\:ltr\:left-32{left:8rem!important}[dir=ltr] .\32xl\:ltr\:top-36{top:9rem!important}[dir=ltr] .\32xl\:ltr\:right-36{right:9rem!important}[dir=ltr] .\32xl\:ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .\32xl\:ltr\:left-36{left:9rem!important}[dir=ltr] .\32xl\:ltr\:top-40{top:10rem!important}[dir=ltr] .\32xl\:ltr\:right-40{right:10rem!important}[dir=ltr] .\32xl\:ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .\32xl\:ltr\:left-40{left:10rem!important}[dir=ltr] .\32xl\:ltr\:top-48{top:12rem!important}[dir=ltr] .\32xl\:ltr\:right-48{right:12rem!important}[dir=ltr] .\32xl\:ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .\32xl\:ltr\:left-48{left:12rem!important}[dir=ltr] .\32xl\:ltr\:top-56{top:14rem!important}[dir=ltr] .\32xl\:ltr\:right-56{right:14rem!important}[dir=ltr] .\32xl\:ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .\32xl\:ltr\:left-56{left:14rem!important}[dir=ltr] .\32xl\:ltr\:top-60{top:15rem!important}[dir=ltr] .\32xl\:ltr\:right-60{right:15rem!important}[dir=ltr] .\32xl\:ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .\32xl\:ltr\:left-60{left:15rem!important}[dir=ltr] .\32xl\:ltr\:top-64{top:16rem!important}[dir=ltr] .\32xl\:ltr\:right-64{right:16rem!important}[dir=ltr] .\32xl\:ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .\32xl\:ltr\:left-64{left:16rem!important}[dir=ltr] .\32xl\:ltr\:top-72{top:18rem!important}[dir=ltr] .\32xl\:ltr\:right-72{right:18rem!important}[dir=ltr] .\32xl\:ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .\32xl\:ltr\:left-72{left:18rem!important}[dir=ltr] .\32xl\:ltr\:top-80{top:20rem!important}[dir=ltr] .\32xl\:ltr\:right-80{right:20rem!important}[dir=ltr] .\32xl\:ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .\32xl\:ltr\:left-80{left:20rem!important}[dir=ltr] .\32xl\:ltr\:top-96{top:24rem!important}[dir=ltr] .\32xl\:ltr\:right-96{right:24rem!important}[dir=ltr] .\32xl\:ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .\32xl\:ltr\:left-96{left:24rem!important}[dir=ltr] .\32xl\:ltr\:top-auto{top:auto!important}[dir=ltr] .\32xl\:ltr\:right-auto{right:auto!important}[dir=ltr] .\32xl\:ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .\32xl\:ltr\:left-auto{left:auto!important}[dir=ltr] .\32xl\:ltr\:top-px{top:1px!important}[dir=ltr] .\32xl\:ltr\:right-px{right:1px!important}[dir=ltr] .\32xl\:ltr\:bottom-px{bottom:1px!important}[dir=ltr] .\32xl\:ltr\:left-px{left:1px!important}[dir=ltr] .\32xl\:ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .\32xl\:ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .\32xl\:ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .\32xl\:ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .\32xl\:ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .\32xl\:ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .\32xl\:ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .\32xl\:ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .\32xl\:ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .\32xl\:ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .\32xl\:ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .\32xl\:ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .\32xl\:ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .\32xl\:ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .\32xl\:ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .\32xl\:ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .\32xl\:ltr\:top-1\/2{top:50%!important}[dir=ltr] .\32xl\:ltr\:right-1\/2{right:50%!important}[dir=ltr] .\32xl\:ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .\32xl\:ltr\:left-1\/2{left:50%!important}[dir=ltr] .\32xl\:ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:top-1\/4{top:25%!important}[dir=ltr] .\32xl\:ltr\:right-1\/4{right:25%!important}[dir=ltr] .\32xl\:ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .\32xl\:ltr\:left-1\/4{left:25%!important}[dir=ltr] .\32xl\:ltr\:top-2\/4{top:50%!important}[dir=ltr] .\32xl\:ltr\:right-2\/4{right:50%!important}[dir=ltr] .\32xl\:ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .\32xl\:ltr\:left-2\/4{left:50%!important}[dir=ltr] .\32xl\:ltr\:top-3\/4{top:75%!important}[dir=ltr] .\32xl\:ltr\:right-3\/4{right:75%!important}[dir=ltr] .\32xl\:ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .\32xl\:ltr\:left-3\/4{left:75%!important}[dir=ltr] .\32xl\:ltr\:top-1\/5{top:20%!important}[dir=ltr] .\32xl\:ltr\:right-1\/5{right:20%!important}[dir=ltr] .\32xl\:ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .\32xl\:ltr\:left-1\/5{left:20%!important}[dir=ltr] .\32xl\:ltr\:top-2\/5{top:40%!important}[dir=ltr] .\32xl\:ltr\:right-2\/5{right:40%!important}[dir=ltr] .\32xl\:ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .\32xl\:ltr\:left-2\/5{left:40%!important}[dir=ltr] .\32xl\:ltr\:top-3\/5{top:60%!important}[dir=ltr] .\32xl\:ltr\:right-3\/5{right:60%!important}[dir=ltr] .\32xl\:ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .\32xl\:ltr\:left-3\/5{left:60%!important}[dir=ltr] .\32xl\:ltr\:top-4\/5{top:80%!important}[dir=ltr] .\32xl\:ltr\:right-4\/5{right:80%!important}[dir=ltr] .\32xl\:ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .\32xl\:ltr\:left-4\/5{left:80%!important}[dir=ltr] .\32xl\:ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .\32xl\:ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .\32xl\:ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:top-3\/6{top:50%!important}[dir=ltr] .\32xl\:ltr\:right-3\/6{right:50%!important}[dir=ltr] .\32xl\:ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .\32xl\:ltr\:left-3\/6{left:50%!important}[dir=ltr] .\32xl\:ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .\32xl\:ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .\32xl\:ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .\32xl\:ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .\32xl\:ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .\32xl\:ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .\32xl\:ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .\32xl\:ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .\32xl\:ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .\32xl\:ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .\32xl\:ltr\:top-3\/12{top:25%!important}[dir=ltr] .\32xl\:ltr\:right-3\/12{right:25%!important}[dir=ltr] .\32xl\:ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .\32xl\:ltr\:left-3\/12{left:25%!important}[dir=ltr] .\32xl\:ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .\32xl\:ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .\32xl\:ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .\32xl\:ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .\32xl\:ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .\32xl\:ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .\32xl\:ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .\32xl\:ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .\32xl\:ltr\:top-6\/12{top:50%!important}[dir=ltr] .\32xl\:ltr\:right-6\/12{right:50%!important}[dir=ltr] .\32xl\:ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .\32xl\:ltr\:left-6\/12{left:50%!important}[dir=ltr] .\32xl\:ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .\32xl\:ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .\32xl\:ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .\32xl\:ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .\32xl\:ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .\32xl\:ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .\32xl\:ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .\32xl\:ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .\32xl\:ltr\:top-9\/12{top:75%!important}[dir=ltr] .\32xl\:ltr\:right-9\/12{right:75%!important}[dir=ltr] .\32xl\:ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .\32xl\:ltr\:left-9\/12{left:75%!important}[dir=ltr] .\32xl\:ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .\32xl\:ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .\32xl\:ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .\32xl\:ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .\32xl\:ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .\32xl\:ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .\32xl\:ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .\32xl\:ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .\32xl\:ltr\:top-full{top:100%!important}[dir=ltr] .\32xl\:ltr\:right-full{right:100%!important}[dir=ltr] .\32xl\:ltr\:bottom-full{bottom:100%!important}[dir=ltr] .\32xl\:ltr\:left-full{left:100%!important}[dir=rtl] .\32xl\:rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .\32xl\:rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .\32xl\:rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .\32xl\:rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .\32xl\:rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .\32xl\:rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .\32xl\:rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .\32xl\:rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .\32xl\:rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .\32xl\:rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .\32xl\:rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .\32xl\:rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .\32xl\:rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .\32xl\:rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .\32xl\:rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .\32xl\:rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .\32xl\:rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .\32xl\:rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .\32xl\:rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .\32xl\:rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .\32xl\:rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .\32xl\:rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .\32xl\:rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .\32xl\:rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .\32xl\:rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .\32xl\:rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .\32xl\:rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .\32xl\:rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .\32xl\:rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .\32xl\:rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .\32xl\:rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .\32xl\:rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .\32xl\:rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .\32xl\:rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .\32xl\:rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .\32xl\:rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .\32xl\:rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .\32xl\:rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .\32xl\:rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .\32xl\:rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .\32xl\:rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .\32xl\:rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .\32xl\:rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .\32xl\:rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .\32xl\:rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .\32xl\:rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .\32xl\:rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .\32xl\:rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .\32xl\:rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .\32xl\:rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .\32xl\:rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .\32xl\:rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .\32xl\:rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .\32xl\:rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .\32xl\:rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .\32xl\:rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .\32xl\:rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .\32xl\:rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .\32xl\:rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .\32xl\:rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .\32xl\:rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .\32xl\:rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .\32xl\:rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .\32xl\:rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .\32xl\:rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .\32xl\:rtl\:top-0{top:0!important}[dir=rtl] .\32xl\:rtl\:right-0{right:0!important}[dir=rtl] .\32xl\:rtl\:bottom-0{bottom:0!important}[dir=rtl] .\32xl\:rtl\:left-0{left:0!important}[dir=rtl] .\32xl\:rtl\:top-1{top:.25rem!important}[dir=rtl] .\32xl\:rtl\:right-1{right:.25rem!important}[dir=rtl] .\32xl\:rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .\32xl\:rtl\:left-1{left:.25rem!important}[dir=rtl] .\32xl\:rtl\:top-2{top:.5rem!important}[dir=rtl] .\32xl\:rtl\:right-2{right:.5rem!important}[dir=rtl] .\32xl\:rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .\32xl\:rtl\:left-2{left:.5rem!important}[dir=rtl] .\32xl\:rtl\:top-3{top:.75rem!important}[dir=rtl] .\32xl\:rtl\:right-3{right:.75rem!important}[dir=rtl] .\32xl\:rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .\32xl\:rtl\:left-3{left:.75rem!important}[dir=rtl] .\32xl\:rtl\:top-4{top:1rem!important}[dir=rtl] .\32xl\:rtl\:right-4{right:1rem!important}[dir=rtl] .\32xl\:rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .\32xl\:rtl\:left-4{left:1rem!important}[dir=rtl] .\32xl\:rtl\:top-5{top:1.25rem!important}[dir=rtl] .\32xl\:rtl\:right-5{right:1.25rem!important}[dir=rtl] .\32xl\:rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .\32xl\:rtl\:left-5{left:1.25rem!important}[dir=rtl] .\32xl\:rtl\:top-6{top:1.5rem!important}[dir=rtl] .\32xl\:rtl\:right-6{right:1.5rem!important}[dir=rtl] .\32xl\:rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .\32xl\:rtl\:left-6{left:1.5rem!important}[dir=rtl] .\32xl\:rtl\:top-7{top:1.75rem!important}[dir=rtl] .\32xl\:rtl\:right-7{right:1.75rem!important}[dir=rtl] .\32xl\:rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .\32xl\:rtl\:left-7{left:1.75rem!important}[dir=rtl] .\32xl\:rtl\:top-8{top:2rem!important}[dir=rtl] .\32xl\:rtl\:right-8{right:2rem!important}[dir=rtl] .\32xl\:rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .\32xl\:rtl\:left-8{left:2rem!important}[dir=rtl] .\32xl\:rtl\:top-9{top:2.25rem!important}[dir=rtl] .\32xl\:rtl\:right-9{right:2.25rem!important}[dir=rtl] .\32xl\:rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .\32xl\:rtl\:left-9{left:2.25rem!important}[dir=rtl] .\32xl\:rtl\:top-10{top:2.5rem!important}[dir=rtl] .\32xl\:rtl\:right-10{right:2.5rem!important}[dir=rtl] .\32xl\:rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .\32xl\:rtl\:left-10{left:2.5rem!important}[dir=rtl] .\32xl\:rtl\:top-11{top:2.75rem!important}[dir=rtl] .\32xl\:rtl\:right-11{right:2.75rem!important}[dir=rtl] .\32xl\:rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .\32xl\:rtl\:left-11{left:2.75rem!important}[dir=rtl] .\32xl\:rtl\:top-12{top:3rem!important}[dir=rtl] .\32xl\:rtl\:right-12{right:3rem!important}[dir=rtl] .\32xl\:rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .\32xl\:rtl\:left-12{left:3rem!important}[dir=rtl] .\32xl\:rtl\:top-13{top:3.25rem!important}[dir=rtl] .\32xl\:rtl\:right-13{right:3.25rem!important}[dir=rtl] .\32xl\:rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .\32xl\:rtl\:left-13{left:3.25rem!important}[dir=rtl] .\32xl\:rtl\:top-14{top:3.5rem!important}[dir=rtl] .\32xl\:rtl\:right-14{right:3.5rem!important}[dir=rtl] .\32xl\:rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .\32xl\:rtl\:left-14{left:3.5rem!important}[dir=rtl] .\32xl\:rtl\:top-15{top:3.75rem!important}[dir=rtl] .\32xl\:rtl\:right-15{right:3.75rem!important}[dir=rtl] .\32xl\:rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .\32xl\:rtl\:left-15{left:3.75rem!important}[dir=rtl] .\32xl\:rtl\:top-16{top:4rem!important}[dir=rtl] .\32xl\:rtl\:right-16{right:4rem!important}[dir=rtl] .\32xl\:rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .\32xl\:rtl\:left-16{left:4rem!important}[dir=rtl] .\32xl\:rtl\:top-20{top:5rem!important}[dir=rtl] .\32xl\:rtl\:right-20{right:5rem!important}[dir=rtl] .\32xl\:rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .\32xl\:rtl\:left-20{left:5rem!important}[dir=rtl] .\32xl\:rtl\:top-24{top:6rem!important}[dir=rtl] .\32xl\:rtl\:right-24{right:6rem!important}[dir=rtl] .\32xl\:rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .\32xl\:rtl\:left-24{left:6rem!important}[dir=rtl] .\32xl\:rtl\:top-28{top:7rem!important}[dir=rtl] .\32xl\:rtl\:right-28{right:7rem!important}[dir=rtl] .\32xl\:rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .\32xl\:rtl\:left-28{left:7rem!important}[dir=rtl] .\32xl\:rtl\:top-32{top:8rem!important}[dir=rtl] .\32xl\:rtl\:right-32{right:8rem!important}[dir=rtl] .\32xl\:rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .\32xl\:rtl\:left-32{left:8rem!important}[dir=rtl] .\32xl\:rtl\:top-36{top:9rem!important}[dir=rtl] .\32xl\:rtl\:right-36{right:9rem!important}[dir=rtl] .\32xl\:rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .\32xl\:rtl\:left-36{left:9rem!important}[dir=rtl] .\32xl\:rtl\:top-40{top:10rem!important}[dir=rtl] .\32xl\:rtl\:right-40{right:10rem!important}[dir=rtl] .\32xl\:rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .\32xl\:rtl\:left-40{left:10rem!important}[dir=rtl] .\32xl\:rtl\:top-48{top:12rem!important}[dir=rtl] .\32xl\:rtl\:right-48{right:12rem!important}[dir=rtl] .\32xl\:rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .\32xl\:rtl\:left-48{left:12rem!important}[dir=rtl] .\32xl\:rtl\:top-56{top:14rem!important}[dir=rtl] .\32xl\:rtl\:right-56{right:14rem!important}[dir=rtl] .\32xl\:rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .\32xl\:rtl\:left-56{left:14rem!important}[dir=rtl] .\32xl\:rtl\:top-60{top:15rem!important}[dir=rtl] .\32xl\:rtl\:right-60{right:15rem!important}[dir=rtl] .\32xl\:rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .\32xl\:rtl\:left-60{left:15rem!important}[dir=rtl] .\32xl\:rtl\:top-64{top:16rem!important}[dir=rtl] .\32xl\:rtl\:right-64{right:16rem!important}[dir=rtl] .\32xl\:rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .\32xl\:rtl\:left-64{left:16rem!important}[dir=rtl] .\32xl\:rtl\:top-72{top:18rem!important}[dir=rtl] .\32xl\:rtl\:right-72{right:18rem!important}[dir=rtl] .\32xl\:rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .\32xl\:rtl\:left-72{left:18rem!important}[dir=rtl] .\32xl\:rtl\:top-80{top:20rem!important}[dir=rtl] .\32xl\:rtl\:right-80{right:20rem!important}[dir=rtl] .\32xl\:rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .\32xl\:rtl\:left-80{left:20rem!important}[dir=rtl] .\32xl\:rtl\:top-96{top:24rem!important}[dir=rtl] .\32xl\:rtl\:right-96{right:24rem!important}[dir=rtl] .\32xl\:rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .\32xl\:rtl\:left-96{left:24rem!important}[dir=rtl] .\32xl\:rtl\:top-auto{top:auto!important}[dir=rtl] .\32xl\:rtl\:right-auto{right:auto!important}[dir=rtl] .\32xl\:rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .\32xl\:rtl\:left-auto{left:auto!important}[dir=rtl] .\32xl\:rtl\:top-px{top:1px!important}[dir=rtl] .\32xl\:rtl\:right-px{right:1px!important}[dir=rtl] .\32xl\:rtl\:bottom-px{bottom:1px!important}[dir=rtl] .\32xl\:rtl\:left-px{left:1px!important}[dir=rtl] .\32xl\:rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .\32xl\:rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .\32xl\:rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .\32xl\:rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .\32xl\:rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .\32xl\:rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .\32xl\:rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .\32xl\:rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .\32xl\:rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .\32xl\:rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .\32xl\:rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .\32xl\:rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .\32xl\:rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .\32xl\:rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .\32xl\:rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .\32xl\:rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .\32xl\:rtl\:top-1\/2{top:50%!important}[dir=rtl] .\32xl\:rtl\:right-1\/2{right:50%!important}[dir=rtl] .\32xl\:rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .\32xl\:rtl\:left-1\/2{left:50%!important}[dir=rtl] .\32xl\:rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:top-1\/4{top:25%!important}[dir=rtl] .\32xl\:rtl\:right-1\/4{right:25%!important}[dir=rtl] .\32xl\:rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .\32xl\:rtl\:left-1\/4{left:25%!important}[dir=rtl] .\32xl\:rtl\:top-2\/4{top:50%!important}[dir=rtl] .\32xl\:rtl\:right-2\/4{right:50%!important}[dir=rtl] .\32xl\:rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .\32xl\:rtl\:left-2\/4{left:50%!important}[dir=rtl] .\32xl\:rtl\:top-3\/4{top:75%!important}[dir=rtl] .\32xl\:rtl\:right-3\/4{right:75%!important}[dir=rtl] .\32xl\:rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .\32xl\:rtl\:left-3\/4{left:75%!important}[dir=rtl] .\32xl\:rtl\:top-1\/5{top:20%!important}[dir=rtl] .\32xl\:rtl\:right-1\/5{right:20%!important}[dir=rtl] .\32xl\:rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .\32xl\:rtl\:left-1\/5{left:20%!important}[dir=rtl] .\32xl\:rtl\:top-2\/5{top:40%!important}[dir=rtl] .\32xl\:rtl\:right-2\/5{right:40%!important}[dir=rtl] .\32xl\:rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .\32xl\:rtl\:left-2\/5{left:40%!important}[dir=rtl] .\32xl\:rtl\:top-3\/5{top:60%!important}[dir=rtl] .\32xl\:rtl\:right-3\/5{right:60%!important}[dir=rtl] .\32xl\:rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .\32xl\:rtl\:left-3\/5{left:60%!important}[dir=rtl] .\32xl\:rtl\:top-4\/5{top:80%!important}[dir=rtl] .\32xl\:rtl\:right-4\/5{right:80%!important}[dir=rtl] .\32xl\:rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .\32xl\:rtl\:left-4\/5{left:80%!important}[dir=rtl] .\32xl\:rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .\32xl\:rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .\32xl\:rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:top-3\/6{top:50%!important}[dir=rtl] .\32xl\:rtl\:right-3\/6{right:50%!important}[dir=rtl] .\32xl\:rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .\32xl\:rtl\:left-3\/6{left:50%!important}[dir=rtl] .\32xl\:rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .\32xl\:rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .\32xl\:rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .\32xl\:rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .\32xl\:rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .\32xl\:rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .\32xl\:rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .\32xl\:rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .\32xl\:rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .\32xl\:rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .\32xl\:rtl\:top-3\/12{top:25%!important}[dir=rtl] .\32xl\:rtl\:right-3\/12{right:25%!important}[dir=rtl] .\32xl\:rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .\32xl\:rtl\:left-3\/12{left:25%!important}[dir=rtl] .\32xl\:rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .\32xl\:rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .\32xl\:rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .\32xl\:rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .\32xl\:rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .\32xl\:rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .\32xl\:rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .\32xl\:rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .\32xl\:rtl\:top-6\/12{top:50%!important}[dir=rtl] .\32xl\:rtl\:right-6\/12{right:50%!important}[dir=rtl] .\32xl\:rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .\32xl\:rtl\:left-6\/12{left:50%!important}[dir=rtl] .\32xl\:rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .\32xl\:rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .\32xl\:rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .\32xl\:rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .\32xl\:rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .\32xl\:rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .\32xl\:rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .\32xl\:rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .\32xl\:rtl\:top-9\/12{top:75%!important}[dir=rtl] .\32xl\:rtl\:right-9\/12{right:75%!important}[dir=rtl] .\32xl\:rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .\32xl\:rtl\:left-9\/12{left:75%!important}[dir=rtl] .\32xl\:rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .\32xl\:rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .\32xl\:rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .\32xl\:rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .\32xl\:rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .\32xl\:rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .\32xl\:rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .\32xl\:rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .\32xl\:rtl\:top-full{top:100%!important}[dir=rtl] .\32xl\:rtl\:right-full{right:100%!important}[dir=rtl] .\32xl\:rtl\:bottom-full{bottom:100%!important}[dir=rtl] .\32xl\:rtl\:left-full{left:100%!important}.\32xl\:resize-none{resize:none!important}.\32xl\:resize-y{resize:vertical!important}.\32xl\:resize-x{resize:horizontal!important}.\32xl\:resize{resize:both!important}.\32xl\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\32xl\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\32xl\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\32xl\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\32xl\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\32xl\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\32xl\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\32xl\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\32xl\:shadow-none{box-shadow:none!important}.group:focus .\32xl\:group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .\32xl\:group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .\32xl\:group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .\32xl\:group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .\32xl\:group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .\32xl\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .\32xl\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .\32xl\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .\32xl\:group-focus\:shadow-none{box-shadow:none!important}.\32xl\:hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\32xl\:hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\32xl\:hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\32xl\:hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\32xl\:hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\32xl\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\32xl\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\32xl\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\32xl\:hover\:shadow-none:hover{box-shadow:none!important}.\32xl\:focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\32xl\:focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\32xl\:focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\32xl\:focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\32xl\:focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\32xl\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\32xl\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\32xl\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\32xl\:focus\:shadow-none:focus{box-shadow:none!important}.\32xl\:fill-current{fill:currentColor!important}.\32xl\:stroke-current{stroke:currentColor!important}.\32xl\:stroke-0{stroke-width:0!important}.\32xl\:stroke-1{stroke-width:1!important}.\32xl\:stroke-2{stroke-width:2!important}.\32xl\:table-auto{table-layout:auto!important}.\32xl\:table-fixed{table-layout:fixed!important}.\32xl\:text-left{text-align:left!important}.\32xl\:text-center{text-align:center!important}.\32xl\:text-right{text-align:right!important}.\32xl\:text-justify{text-align:justify!important}.\32xl\:text-transparent{color:transparent!important}.\32xl\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\32xl\:text-white-70{color:hsla(0,0%,100%,.7)!important}.\32xl\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\32xl\:text-blackest-70{color:rgba(0,0,0,.7)!important}.\32xl\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\32xl\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\32xl\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\32xl\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\32xl\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\32xl\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\32xl\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\32xl\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\32xl\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\32xl\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\32xl\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\32xl\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\32xl\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.\32xl\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\32xl\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\32xl\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\32xl\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\32xl\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\32xl\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\32xl\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\32xl\:hover\:text-transparent:hover{color:transparent!important}.\32xl\:hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\32xl\:hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.\32xl\:hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\32xl\:hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.\32xl\:hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\32xl\:hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\32xl\:hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\32xl\:hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\32xl\:hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\32xl\:hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\32xl\:hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\32xl\:hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\32xl\:hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\32xl\:hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\32xl\:hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\32xl\:hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\32xl\:hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.\32xl\:hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\32xl\:hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\32xl\:hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\32xl\:hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\32xl\:hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\32xl\:hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\32xl\:hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\32xl\:focus\:text-transparent:focus{color:transparent!important}.\32xl\:focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\32xl\:focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.\32xl\:focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\32xl\:focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.\32xl\:focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\32xl\:focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\32xl\:focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\32xl\:focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\32xl\:focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\32xl\:focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\32xl\:focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\32xl\:focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\32xl\:focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\32xl\:focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\32xl\:focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\32xl\:focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\32xl\:focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.\32xl\:focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\32xl\:focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\32xl\:focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\32xl\:focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\32xl\:focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\32xl\:focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\32xl\:focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-transparent{color:transparent!important}.group:hover .\32xl\:group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .\32xl\:group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .\32xl\:group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .\32xl\:group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .\32xl\:group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\32xl\:text-opacity-0{--text-opacity:0!important}.\32xl\:text-opacity-25{--text-opacity:0.25!important}.\32xl\:text-opacity-50{--text-opacity:0.5!important}.\32xl\:text-opacity-75{--text-opacity:0.75!important}.\32xl\:text-opacity-100{--text-opacity:1!important}.\32xl\:hover\:text-opacity-0:hover{--text-opacity:0!important}.\32xl\:hover\:text-opacity-25:hover{--text-opacity:0.25!important}.\32xl\:hover\:text-opacity-50:hover{--text-opacity:0.5!important}.\32xl\:hover\:text-opacity-75:hover{--text-opacity:0.75!important}.\32xl\:hover\:text-opacity-100:hover{--text-opacity:1!important}.\32xl\:focus\:text-opacity-0:focus{--text-opacity:0!important}.\32xl\:focus\:text-opacity-25:focus{--text-opacity:0.25!important}.\32xl\:focus\:text-opacity-50:focus{--text-opacity:0.5!important}.\32xl\:focus\:text-opacity-75:focus{--text-opacity:0.75!important}.\32xl\:focus\:text-opacity-100:focus{--text-opacity:1!important}.\32xl\:italic{font-style:italic!important}.\32xl\:not-italic{font-style:normal!important}.\32xl\:uppercase{text-transform:uppercase!important}.\32xl\:lowercase{text-transform:lowercase!important}.\32xl\:capitalize{text-transform:capitalize!important}.\32xl\:normal-case{text-transform:none!important}.\32xl\:underline{text-decoration:underline!important}.\32xl\:line-through{text-decoration:line-through!important}.\32xl\:no-underline{text-decoration:none!important}.group:hover .\32xl\:group-hover\:underline{text-decoration:underline!important}.group:hover .\32xl\:group-hover\:line-through{text-decoration:line-through!important}.group:hover .\32xl\:group-hover\:no-underline{text-decoration:none!important}.group:focus .\32xl\:group-focus\:underline{text-decoration:underline!important}.group:focus .\32xl\:group-focus\:line-through{text-decoration:line-through!important}.group:focus .\32xl\:group-focus\:no-underline{text-decoration:none!important}.\32xl\:hover\:underline:hover{text-decoration:underline!important}.\32xl\:hover\:line-through:hover{text-decoration:line-through!important}.\32xl\:hover\:no-underline:hover{text-decoration:none!important}.\32xl\:focus\:underline:focus{text-decoration:underline!important}.\32xl\:focus\:line-through:focus{text-decoration:line-through!important}.\32xl\:focus\:no-underline:focus{text-decoration:none!important}.\32xl\:antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.\32xl\:subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.\32xl\:diagonal-fractions,.\32xl\:lining-nums,.\32xl\:oldstyle-nums,.\32xl\:ordinal,.\32xl\:proportional-nums,.\32xl\:slashed-zero,.\32xl\:stacked-fractions,.\32xl\:tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.\32xl\:normal-nums{font-variant-numeric:normal!important}.\32xl\:ordinal{--font-variant-numeric-ordinal:ordinal!important}.\32xl\:slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.\32xl\:lining-nums{--font-variant-numeric-figure:lining-nums!important}.\32xl\:oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.\32xl\:proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.\32xl\:tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.\32xl\:diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.\32xl\:stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.\32xl\:tracking-tighter{letter-spacing:-.05em!important}.\32xl\:tracking-tight{letter-spacing:-.025em!important}.\32xl\:tracking-normal{letter-spacing:0!important}.\32xl\:tracking-wide{letter-spacing:.025em!important}.\32xl\:tracking-wider{letter-spacing:.05em!important}.\32xl\:tracking-widest{letter-spacing:.1em!important}.\32xl\:select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.\32xl\:select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.\32xl\:select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.\32xl\:select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.\32xl\:align-baseline{vertical-align:baseline!important}.\32xl\:align-top{vertical-align:top!important}.\32xl\:align-middle{vertical-align:middle!important}.\32xl\:align-bottom{vertical-align:bottom!important}.\32xl\:align-text-top{vertical-align:text-top!important}.\32xl\:align-text-bottom{vertical-align:text-bottom!important}.\32xl\:visible{visibility:visible!important}.\32xl\:invisible{visibility:hidden!important}.\32xl\:whitespace-normal{white-space:normal!important}.\32xl\:whitespace-no-wrap{white-space:nowrap!important}.\32xl\:whitespace-pre{white-space:pre!important}.\32xl\:whitespace-pre-line{white-space:pre-line!important}.\32xl\:whitespace-pre-wrap{white-space:pre-wrap!important}.\32xl\:break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.\32xl\:break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.\32xl\:break-all{word-break:break-all!important}.\32xl\:truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.\32xl\:w-0{width:0!important}.\32xl\:w-1{width:.25rem!important}.\32xl\:w-2{width:.5rem!important}.\32xl\:w-3{width:.75rem!important}.\32xl\:w-4{width:1rem!important}.\32xl\:w-5{width:1.25rem!important}.\32xl\:w-6{width:1.5rem!important}.\32xl\:w-7{width:1.75rem!important}.\32xl\:w-8{width:2rem!important}.\32xl\:w-9{width:2.25rem!important}.\32xl\:w-10{width:2.5rem!important}.\32xl\:w-11{width:2.75rem!important}.\32xl\:w-12{width:3rem!important}.\32xl\:w-13{width:3.25rem!important}.\32xl\:w-14{width:3.5rem!important}.\32xl\:w-15{width:3.75rem!important}.\32xl\:w-16{width:4rem!important}.\32xl\:w-20{width:5rem!important}.\32xl\:w-24{width:6rem!important}.\32xl\:w-28{width:7rem!important}.\32xl\:w-32{width:8rem!important}.\32xl\:w-36{width:9rem!important}.\32xl\:w-40{width:10rem!important}.\32xl\:w-48{width:12rem!important}.\32xl\:w-56{width:14rem!important}.\32xl\:w-60{width:15rem!important}.\32xl\:w-64{width:16rem!important}.\32xl\:w-72{width:18rem!important}.\32xl\:w-80{width:20rem!important}.\32xl\:w-96{width:24rem!important}.\32xl\:w-auto{width:auto!important}.\32xl\:w-px{width:1px!important}.\32xl\:w-0\.5{width:.125rem!important}.\32xl\:w-1\.5{width:.375rem!important}.\32xl\:w-2\.5{width:.625rem!important}.\32xl\:w-3\.5{width:.875rem!important}.\32xl\:w-1\/2{width:50%!important}.\32xl\:w-1\/3{width:33.333333%!important}.\32xl\:w-2\/3{width:66.666667%!important}.\32xl\:w-1\/4{width:25%!important}.\32xl\:w-2\/4{width:50%!important}.\32xl\:w-3\/4{width:75%!important}.\32xl\:w-1\/5{width:20%!important}.\32xl\:w-2\/5{width:40%!important}.\32xl\:w-3\/5{width:60%!important}.\32xl\:w-4\/5{width:80%!important}.\32xl\:w-1\/6{width:16.666667%!important}.\32xl\:w-2\/6{width:33.333333%!important}.\32xl\:w-3\/6{width:50%!important}.\32xl\:w-4\/6{width:66.666667%!important}.\32xl\:w-5\/6{width:83.333333%!important}.\32xl\:w-1\/12{width:8.333333%!important}.\32xl\:w-2\/12{width:16.666667%!important}.\32xl\:w-3\/12{width:25%!important}.\32xl\:w-4\/12{width:33.333333%!important}.\32xl\:w-5\/12{width:41.666667%!important}.\32xl\:w-6\/12{width:50%!important}.\32xl\:w-7\/12{width:58.333333%!important}.\32xl\:w-8\/12{width:66.666667%!important}.\32xl\:w-9\/12{width:75%!important}.\32xl\:w-10\/12{width:83.333333%!important}.\32xl\:w-11\/12{width:91.666667%!important}.\32xl\:w-full{width:100%!important}.\32xl\:w-screen{width:100vw!important}.\32xl\:z-0{z-index:0!important}.\32xl\:z-10{z-index:10!important}.\32xl\:z-20{z-index:20!important}.\32xl\:z-30{z-index:30!important}.\32xl\:z-40{z-index:40!important}.\32xl\:z-50{z-index:50!important}.\32xl\:z-999{z-index:999!important}.\32xl\:z-auto{z-index:auto!important}.\32xl\:z-max{z-index:2147483647!important}.\32xl\:focus-within\:z-0:focus-within{z-index:0!important}.\32xl\:focus-within\:z-10:focus-within{z-index:10!important}.\32xl\:focus-within\:z-20:focus-within{z-index:20!important}.\32xl\:focus-within\:z-30:focus-within{z-index:30!important}.\32xl\:focus-within\:z-40:focus-within{z-index:40!important}.\32xl\:focus-within\:z-50:focus-within{z-index:50!important}.\32xl\:focus-within\:z-999:focus-within{z-index:999!important}.\32xl\:focus-within\:z-auto:focus-within{z-index:auto!important}.\32xl\:focus-within\:z-max:focus-within{z-index:2147483647!important}.\32xl\:focus\:z-0:focus{z-index:0!important}.\32xl\:focus\:z-10:focus{z-index:10!important}.\32xl\:focus\:z-20:focus{z-index:20!important}.\32xl\:focus\:z-30:focus{z-index:30!important}.\32xl\:focus\:z-40:focus{z-index:40!important}.\32xl\:focus\:z-50:focus{z-index:50!important}.\32xl\:focus\:z-999:focus{z-index:999!important}.\32xl\:focus\:z-auto:focus{z-index:auto!important}.\32xl\:focus\:z-max:focus{z-index:2147483647!important}.\32xl\:gap-0{grid-gap:0!important;gap:0!important}.\32xl\:gap-1{grid-gap:.25rem!important;gap:.25rem!important}.\32xl\:gap-2{grid-gap:.5rem!important;gap:.5rem!important}.\32xl\:gap-3{grid-gap:.75rem!important;gap:.75rem!important}.\32xl\:gap-4{grid-gap:1rem!important;gap:1rem!important}.\32xl\:gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.\32xl\:gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.\32xl\:gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.\32xl\:gap-8{grid-gap:2rem!important;gap:2rem!important}.\32xl\:gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.\32xl\:gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.\32xl\:gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.\32xl\:gap-12{grid-gap:3rem!important;gap:3rem!important}.\32xl\:gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.\32xl\:gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.\32xl\:gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.\32xl\:gap-16{grid-gap:4rem!important;gap:4rem!important}.\32xl\:gap-20{grid-gap:5rem!important;gap:5rem!important}.\32xl\:gap-24{grid-gap:6rem!important;gap:6rem!important}.\32xl\:gap-28{grid-gap:7rem!important;gap:7rem!important}.\32xl\:gap-32{grid-gap:8rem!important;gap:8rem!important}.\32xl\:gap-36{grid-gap:9rem!important;gap:9rem!important}.\32xl\:gap-40{grid-gap:10rem!important;gap:10rem!important}.\32xl\:gap-48{grid-gap:12rem!important;gap:12rem!important}.\32xl\:gap-56{grid-gap:14rem!important;gap:14rem!important}.\32xl\:gap-60{grid-gap:15rem!important;gap:15rem!important}.\32xl\:gap-64{grid-gap:16rem!important;gap:16rem!important}.\32xl\:gap-72{grid-gap:18rem!important;gap:18rem!important}.\32xl\:gap-80{grid-gap:20rem!important;gap:20rem!important}.\32xl\:gap-96{grid-gap:24rem!important;gap:24rem!important}.\32xl\:gap-px{grid-gap:1px!important;gap:1px!important}.\32xl\:gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.\32xl\:gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.\32xl\:gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.\32xl\:gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.\32xl\:gap-1\/2{grid-gap:50%!important;gap:50%!important}.\32xl\:gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.\32xl\:gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.\32xl\:gap-1\/4{grid-gap:25%!important;gap:25%!important}.\32xl\:gap-2\/4{grid-gap:50%!important;gap:50%!important}.\32xl\:gap-3\/4{grid-gap:75%!important;gap:75%!important}.\32xl\:gap-1\/5{grid-gap:20%!important;gap:20%!important}.\32xl\:gap-2\/5{grid-gap:40%!important;gap:40%!important}.\32xl\:gap-3\/5{grid-gap:60%!important;gap:60%!important}.\32xl\:gap-4\/5{grid-gap:80%!important;gap:80%!important}.\32xl\:gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.\32xl\:gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.\32xl\:gap-3\/6{grid-gap:50%!important;gap:50%!important}.\32xl\:gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.\32xl\:gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.\32xl\:gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.\32xl\:gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.\32xl\:gap-3\/12{grid-gap:25%!important;gap:25%!important}.\32xl\:gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.\32xl\:gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.\32xl\:gap-6\/12{grid-gap:50%!important;gap:50%!important}.\32xl\:gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.\32xl\:gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.\32xl\:gap-9\/12{grid-gap:75%!important;gap:75%!important}.\32xl\:gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.\32xl\:gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.\32xl\:gap-full{grid-gap:100%!important;gap:100%!important}.\32xl\:gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.\32xl\:gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.\32xl\:gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.\32xl\:gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.\32xl\:gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.\32xl\:gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.\32xl\:gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.\32xl\:gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.\32xl\:gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.\32xl\:gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.\32xl\:gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.\32xl\:gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.\32xl\:gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.\32xl\:gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.\32xl\:gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.\32xl\:gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.\32xl\:gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.\32xl\:gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.\32xl\:gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.\32xl\:gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.\32xl\:gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.\32xl\:gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.\32xl\:gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.\32xl\:gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.\32xl\:gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.\32xl\:gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.\32xl\:gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.\32xl\:gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.\32xl\:gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.\32xl\:gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.\32xl\:gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.\32xl\:gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.\32xl\:gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.\32xl\:gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.\32xl\:gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.\32xl\:gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\32xl\:gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\32xl\:gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\32xl\:gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.\32xl\:gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\32xl\:gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.\32xl\:gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.\32xl\:gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.\32xl\:gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.\32xl\:gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.\32xl\:gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.\32xl\:gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\32xl\:gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\32xl\:gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\32xl\:gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.\32xl\:gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.\32xl\:gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.\32xl\:gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.\32xl\:gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\32xl\:gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.\32xl\:gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\32xl\:gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.\32xl\:gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\32xl\:gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.\32xl\:gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.\32xl\:gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.\32xl\:gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.\32xl\:gap-y-0{grid-row-gap:0!important;row-gap:0!important}.\32xl\:gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.\32xl\:gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.\32xl\:gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.\32xl\:gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.\32xl\:gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.\32xl\:gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.\32xl\:gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.\32xl\:gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.\32xl\:gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.\32xl\:gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.\32xl\:gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.\32xl\:gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.\32xl\:gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.\32xl\:gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.\32xl\:gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.\32xl\:gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.\32xl\:gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.\32xl\:gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.\32xl\:gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.\32xl\:gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.\32xl\:gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.\32xl\:gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.\32xl\:gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.\32xl\:gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.\32xl\:gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.\32xl\:gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.\32xl\:gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.\32xl\:gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.\32xl\:gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.\32xl\:gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.\32xl\:gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.\32xl\:gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.\32xl\:gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.\32xl\:gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.\32xl\:gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.\32xl\:gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\32xl\:gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\32xl\:gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.\32xl\:gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.\32xl\:gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.\32xl\:gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.\32xl\:gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.\32xl\:gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.\32xl\:gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.\32xl\:gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.\32xl\:gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\32xl\:gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.\32xl\:gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\32xl\:gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.\32xl\:gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.\32xl\:gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.\32xl\:gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.\32xl\:gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\32xl\:gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.\32xl\:gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.\32xl\:gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.\32xl\:gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\32xl\:gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.\32xl\:gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.\32xl\:gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.\32xl\:gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.\32xl\:grid-flow-row{grid-auto-flow:row!important}.\32xl\:grid-flow-col{grid-auto-flow:column!important}.\32xl\:grid-flow-row-dense{grid-auto-flow:row dense!important}.\32xl\:grid-flow-col-dense{grid-auto-flow:column dense!important}.\32xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.\32xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.\32xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.\32xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.\32xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.\32xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.\32xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.\32xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.\32xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.\32xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.\32xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.\32xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.\32xl\:grid-cols-none{grid-template-columns:none!important}.\32xl\:auto-cols-auto{grid-auto-columns:auto!important}.\32xl\:auto-cols-min{grid-auto-columns:min-content!important}.\32xl\:auto-cols-max{grid-auto-columns:max-content!important}.\32xl\:auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.\32xl\:col-auto{grid-column:auto!important}.\32xl\:col-span-1{grid-column:span 1/span 1!important}.\32xl\:col-span-2{grid-column:span 2/span 2!important}.\32xl\:col-span-3{grid-column:span 3/span 3!important}.\32xl\:col-span-4{grid-column:span 4/span 4!important}.\32xl\:col-span-5{grid-column:span 5/span 5!important}.\32xl\:col-span-6{grid-column:span 6/span 6!important}.\32xl\:col-span-7{grid-column:span 7/span 7!important}.\32xl\:col-span-8{grid-column:span 8/span 8!important}.\32xl\:col-span-9{grid-column:span 9/span 9!important}.\32xl\:col-span-10{grid-column:span 10/span 10!important}.\32xl\:col-span-11{grid-column:span 11/span 11!important}.\32xl\:col-span-12{grid-column:span 12/span 12!important}.\32xl\:col-span-full{grid-column:1/-1!important}.\32xl\:col-start-1{grid-column-start:1!important}.\32xl\:col-start-2{grid-column-start:2!important}.\32xl\:col-start-3{grid-column-start:3!important}.\32xl\:col-start-4{grid-column-start:4!important}.\32xl\:col-start-5{grid-column-start:5!important}.\32xl\:col-start-6{grid-column-start:6!important}.\32xl\:col-start-7{grid-column-start:7!important}.\32xl\:col-start-8{grid-column-start:8!important}.\32xl\:col-start-9{grid-column-start:9!important}.\32xl\:col-start-10{grid-column-start:10!important}.\32xl\:col-start-11{grid-column-start:11!important}.\32xl\:col-start-12{grid-column-start:12!important}.\32xl\:col-start-13{grid-column-start:13!important}.\32xl\:col-start-auto{grid-column-start:auto!important}.\32xl\:col-end-1{grid-column-end:1!important}.\32xl\:col-end-2{grid-column-end:2!important}.\32xl\:col-end-3{grid-column-end:3!important}.\32xl\:col-end-4{grid-column-end:4!important}.\32xl\:col-end-5{grid-column-end:5!important}.\32xl\:col-end-6{grid-column-end:6!important}.\32xl\:col-end-7{grid-column-end:7!important}.\32xl\:col-end-8{grid-column-end:8!important}.\32xl\:col-end-9{grid-column-end:9!important}.\32xl\:col-end-10{grid-column-end:10!important}.\32xl\:col-end-11{grid-column-end:11!important}.\32xl\:col-end-12{grid-column-end:12!important}.\32xl\:col-end-13{grid-column-end:13!important}.\32xl\:col-end-auto{grid-column-end:auto!important}.\32xl\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.\32xl\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.\32xl\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.\32xl\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.\32xl\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.\32xl\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.\32xl\:grid-rows-none{grid-template-rows:none!important}.\32xl\:auto-rows-auto{grid-auto-rows:auto!important}.\32xl\:auto-rows-min{grid-auto-rows:min-content!important}.\32xl\:auto-rows-max{grid-auto-rows:max-content!important}.\32xl\:auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.\32xl\:row-auto{grid-row:auto!important}.\32xl\:row-span-1{grid-row:span 1/span 1!important}.\32xl\:row-span-2{grid-row:span 2/span 2!important}.\32xl\:row-span-3{grid-row:span 3/span 3!important}.\32xl\:row-span-4{grid-row:span 4/span 4!important}.\32xl\:row-span-5{grid-row:span 5/span 5!important}.\32xl\:row-span-6{grid-row:span 6/span 6!important}.\32xl\:row-span-full{grid-row:1/-1!important}.\32xl\:row-start-1{grid-row-start:1!important}.\32xl\:row-start-2{grid-row-start:2!important}.\32xl\:row-start-3{grid-row-start:3!important}.\32xl\:row-start-4{grid-row-start:4!important}.\32xl\:row-start-5{grid-row-start:5!important}.\32xl\:row-start-6{grid-row-start:6!important}.\32xl\:row-start-7{grid-row-start:7!important}.\32xl\:row-start-auto{grid-row-start:auto!important}.\32xl\:row-end-1{grid-row-end:1!important}.\32xl\:row-end-2{grid-row-end:2!important}.\32xl\:row-end-3{grid-row-end:3!important}.\32xl\:row-end-4{grid-row-end:4!important}.\32xl\:row-end-5{grid-row-end:5!important}.\32xl\:row-end-6{grid-row-end:6!important}.\32xl\:row-end-7{grid-row-end:7!important}.\32xl\:row-end-auto{grid-row-end:auto!important}.\32xl\:transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.\32xl\:transform-none{transform:none!important}.\32xl\:origin-center{transform-origin:center!important}.\32xl\:origin-top{transform-origin:top!important}.\32xl\:origin-top-right{transform-origin:top right!important}.\32xl\:origin-right{transform-origin:right!important}.\32xl\:origin-bottom-right{transform-origin:bottom right!important}.\32xl\:origin-bottom{transform-origin:bottom!important}.\32xl\:origin-bottom-left{transform-origin:bottom left!important}.\32xl\:origin-left{transform-origin:left!important}.\32xl\:origin-top-left{transform-origin:top left!important}.\32xl\:scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.\32xl\:scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\32xl\:scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\32xl\:scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\32xl\:scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\32xl\:scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.\32xl\:scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\32xl\:scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\32xl\:scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\32xl\:scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\32xl\:scale-x-0{--transform-scale-x:0!important}.\32xl\:scale-x-50{--transform-scale-x:.5!important}.\32xl\:scale-x-75{--transform-scale-x:.75!important}.\32xl\:scale-x-90{--transform-scale-x:.9!important}.\32xl\:scale-x-95{--transform-scale-x:.95!important}.\32xl\:scale-x-100{--transform-scale-x:1!important}.\32xl\:scale-x-105{--transform-scale-x:1.05!important}.\32xl\:scale-x-110{--transform-scale-x:1.1!important}.\32xl\:scale-x-125{--transform-scale-x:1.25!important}.\32xl\:scale-x-150{--transform-scale-x:1.5!important}.\32xl\:scale-y-0{--transform-scale-y:0!important}.\32xl\:scale-y-50{--transform-scale-y:.5!important}.\32xl\:scale-y-75{--transform-scale-y:.75!important}.\32xl\:scale-y-90{--transform-scale-y:.9!important}.\32xl\:scale-y-95{--transform-scale-y:.95!important}.\32xl\:scale-y-100{--transform-scale-y:1!important}.\32xl\:scale-y-105{--transform-scale-y:1.05!important}.\32xl\:scale-y-110{--transform-scale-y:1.1!important}.\32xl\:scale-y-125{--transform-scale-y:1.25!important}.\32xl\:scale-y-150{--transform-scale-y:1.5!important}.\32xl\:hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.\32xl\:hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\32xl\:hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\32xl\:hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\32xl\:hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\32xl\:hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.\32xl\:hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\32xl\:hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\32xl\:hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\32xl\:hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\32xl\:hover\:scale-x-0:hover{--transform-scale-x:0!important}.\32xl\:hover\:scale-x-50:hover{--transform-scale-x:.5!important}.\32xl\:hover\:scale-x-75:hover{--transform-scale-x:.75!important}.\32xl\:hover\:scale-x-90:hover{--transform-scale-x:.9!important}.\32xl\:hover\:scale-x-95:hover{--transform-scale-x:.95!important}.\32xl\:hover\:scale-x-100:hover{--transform-scale-x:1!important}.\32xl\:hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.\32xl\:hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.\32xl\:hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.\32xl\:hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.\32xl\:hover\:scale-y-0:hover{--transform-scale-y:0!important}.\32xl\:hover\:scale-y-50:hover{--transform-scale-y:.5!important}.\32xl\:hover\:scale-y-75:hover{--transform-scale-y:.75!important}.\32xl\:hover\:scale-y-90:hover{--transform-scale-y:.9!important}.\32xl\:hover\:scale-y-95:hover{--transform-scale-y:.95!important}.\32xl\:hover\:scale-y-100:hover{--transform-scale-y:1!important}.\32xl\:hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.\32xl\:hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.\32xl\:hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.\32xl\:hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.\32xl\:focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.\32xl\:focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\32xl\:focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\32xl\:focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\32xl\:focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\32xl\:focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.\32xl\:focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\32xl\:focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\32xl\:focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\32xl\:focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\32xl\:focus\:scale-x-0:focus{--transform-scale-x:0!important}.\32xl\:focus\:scale-x-50:focus{--transform-scale-x:.5!important}.\32xl\:focus\:scale-x-75:focus{--transform-scale-x:.75!important}.\32xl\:focus\:scale-x-90:focus{--transform-scale-x:.9!important}.\32xl\:focus\:scale-x-95:focus{--transform-scale-x:.95!important}.\32xl\:focus\:scale-x-100:focus{--transform-scale-x:1!important}.\32xl\:focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.\32xl\:focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.\32xl\:focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.\32xl\:focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.\32xl\:focus\:scale-y-0:focus{--transform-scale-y:0!important}.\32xl\:focus\:scale-y-50:focus{--transform-scale-y:.5!important}.\32xl\:focus\:scale-y-75:focus{--transform-scale-y:.75!important}.\32xl\:focus\:scale-y-90:focus{--transform-scale-y:.9!important}.\32xl\:focus\:scale-y-95:focus{--transform-scale-y:.95!important}.\32xl\:focus\:scale-y-100:focus{--transform-scale-y:1!important}.\32xl\:focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.\32xl\:focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.\32xl\:focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.\32xl\:focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.\32xl\:rotate-0{--transform-rotate:0!important}.\32xl\:rotate-1{--transform-rotate:1deg!important}.\32xl\:rotate-2{--transform-rotate:2deg!important}.\32xl\:rotate-3{--transform-rotate:3deg!important}.\32xl\:rotate-6{--transform-rotate:6deg!important}.\32xl\:rotate-12{--transform-rotate:12deg!important}.\32xl\:rotate-45{--transform-rotate:45deg!important}.\32xl\:rotate-90{--transform-rotate:90deg!important}.\32xl\:rotate-180{--transform-rotate:180deg!important}.\32xl\:-rotate-180{--transform-rotate:-180deg!important}.\32xl\:-rotate-90{--transform-rotate:-90deg!important}.\32xl\:-rotate-45{--transform-rotate:-45deg!important}.\32xl\:-rotate-12{--transform-rotate:-12deg!important}.\32xl\:-rotate-6{--transform-rotate:-6deg!important}.\32xl\:-rotate-3{--transform-rotate:-3deg!important}.\32xl\:-rotate-2{--transform-rotate:-2deg!important}.\32xl\:-rotate-1{--transform-rotate:-1deg!important}.\32xl\:hover\:rotate-0:hover{--transform-rotate:0!important}.\32xl\:hover\:rotate-1:hover{--transform-rotate:1deg!important}.\32xl\:hover\:rotate-2:hover{--transform-rotate:2deg!important}.\32xl\:hover\:rotate-3:hover{--transform-rotate:3deg!important}.\32xl\:hover\:rotate-6:hover{--transform-rotate:6deg!important}.\32xl\:hover\:rotate-12:hover{--transform-rotate:12deg!important}.\32xl\:hover\:rotate-45:hover{--transform-rotate:45deg!important}.\32xl\:hover\:rotate-90:hover{--transform-rotate:90deg!important}.\32xl\:hover\:rotate-180:hover{--transform-rotate:180deg!important}.\32xl\:hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.\32xl\:hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.\32xl\:hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.\32xl\:hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.\32xl\:hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.\32xl\:hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.\32xl\:hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.\32xl\:hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.\32xl\:focus\:rotate-0:focus{--transform-rotate:0!important}.\32xl\:focus\:rotate-1:focus{--transform-rotate:1deg!important}.\32xl\:focus\:rotate-2:focus{--transform-rotate:2deg!important}.\32xl\:focus\:rotate-3:focus{--transform-rotate:3deg!important}.\32xl\:focus\:rotate-6:focus{--transform-rotate:6deg!important}.\32xl\:focus\:rotate-12:focus{--transform-rotate:12deg!important}.\32xl\:focus\:rotate-45:focus{--transform-rotate:45deg!important}.\32xl\:focus\:rotate-90:focus{--transform-rotate:90deg!important}.\32xl\:focus\:rotate-180:focus{--transform-rotate:180deg!important}.\32xl\:focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.\32xl\:focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.\32xl\:focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.\32xl\:focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.\32xl\:focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.\32xl\:focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.\32xl\:focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.\32xl\:focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.\32xl\:translate-x-0{--transform-translate-x:0!important}.\32xl\:translate-x-1{--transform-translate-x:0.25rem!important}.\32xl\:translate-x-2{--transform-translate-x:0.5rem!important}.\32xl\:translate-x-3{--transform-translate-x:0.75rem!important}.\32xl\:translate-x-4{--transform-translate-x:1rem!important}.\32xl\:translate-x-5{--transform-translate-x:1.25rem!important}.\32xl\:translate-x-6{--transform-translate-x:1.5rem!important}.\32xl\:translate-x-7{--transform-translate-x:1.75rem!important}.\32xl\:translate-x-8{--transform-translate-x:2rem!important}.\32xl\:translate-x-9{--transform-translate-x:2.25rem!important}.\32xl\:translate-x-10{--transform-translate-x:2.5rem!important}.\32xl\:translate-x-11{--transform-translate-x:2.75rem!important}.\32xl\:translate-x-12{--transform-translate-x:3rem!important}.\32xl\:translate-x-13{--transform-translate-x:3.25rem!important}.\32xl\:translate-x-14{--transform-translate-x:3.5rem!important}.\32xl\:translate-x-15{--transform-translate-x:3.75rem!important}.\32xl\:translate-x-16{--transform-translate-x:4rem!important}.\32xl\:translate-x-20{--transform-translate-x:5rem!important}.\32xl\:translate-x-24{--transform-translate-x:6rem!important}.\32xl\:translate-x-28{--transform-translate-x:7rem!important}.\32xl\:translate-x-32{--transform-translate-x:8rem!important}.\32xl\:translate-x-36{--transform-translate-x:9rem!important}.\32xl\:translate-x-40{--transform-translate-x:10rem!important}.\32xl\:translate-x-48{--transform-translate-x:12rem!important}.\32xl\:translate-x-56{--transform-translate-x:14rem!important}.\32xl\:translate-x-60{--transform-translate-x:15rem!important}.\32xl\:translate-x-64{--transform-translate-x:16rem!important}.\32xl\:translate-x-72{--transform-translate-x:18rem!important}.\32xl\:translate-x-80{--transform-translate-x:20rem!important}.\32xl\:translate-x-96{--transform-translate-x:24rem!important}.\32xl\:translate-x-px{--transform-translate-x:1px!important}.\32xl\:translate-x-0\.5{--transform-translate-x:0.125rem!important}.\32xl\:translate-x-1\.5{--transform-translate-x:0.375rem!important}.\32xl\:translate-x-2\.5{--transform-translate-x:0.625rem!important}.\32xl\:translate-x-3\.5{--transform-translate-x:0.875rem!important}.\32xl\:translate-x-1\/2{--transform-translate-x:50%!important}.\32xl\:translate-x-1\/3{--transform-translate-x:33.333333%!important}.\32xl\:translate-x-2\/3{--transform-translate-x:66.666667%!important}.\32xl\:translate-x-1\/4{--transform-translate-x:25%!important}.\32xl\:translate-x-2\/4{--transform-translate-x:50%!important}.\32xl\:translate-x-3\/4{--transform-translate-x:75%!important}.\32xl\:translate-x-1\/5{--transform-translate-x:20%!important}.\32xl\:translate-x-2\/5{--transform-translate-x:40%!important}.\32xl\:translate-x-3\/5{--transform-translate-x:60%!important}.\32xl\:translate-x-4\/5{--transform-translate-x:80%!important}.\32xl\:translate-x-1\/6{--transform-translate-x:16.666667%!important}.\32xl\:translate-x-2\/6{--transform-translate-x:33.333333%!important}.\32xl\:translate-x-3\/6{--transform-translate-x:50%!important}.\32xl\:translate-x-4\/6{--transform-translate-x:66.666667%!important}.\32xl\:translate-x-5\/6{--transform-translate-x:83.333333%!important}.\32xl\:translate-x-1\/12{--transform-translate-x:8.333333%!important}.\32xl\:translate-x-2\/12{--transform-translate-x:16.666667%!important}.\32xl\:translate-x-3\/12{--transform-translate-x:25%!important}.\32xl\:translate-x-4\/12{--transform-translate-x:33.333333%!important}.\32xl\:translate-x-5\/12{--transform-translate-x:41.666667%!important}.\32xl\:translate-x-6\/12{--transform-translate-x:50%!important}.\32xl\:translate-x-7\/12{--transform-translate-x:58.333333%!important}.\32xl\:translate-x-8\/12{--transform-translate-x:66.666667%!important}.\32xl\:translate-x-9\/12{--transform-translate-x:75%!important}.\32xl\:translate-x-10\/12{--transform-translate-x:83.333333%!important}.\32xl\:translate-x-11\/12{--transform-translate-x:91.666667%!important}.\32xl\:translate-x-full{--transform-translate-x:100%!important}.\32xl\:-translate-x-1{--transform-translate-x:-0.25rem!important}.\32xl\:-translate-x-2{--transform-translate-x:-0.5rem!important}.\32xl\:-translate-x-3{--transform-translate-x:-0.75rem!important}.\32xl\:-translate-x-4{--transform-translate-x:-1rem!important}.\32xl\:-translate-x-5{--transform-translate-x:-1.25rem!important}.\32xl\:-translate-x-6{--transform-translate-x:-1.5rem!important}.\32xl\:-translate-x-7{--transform-translate-x:-1.75rem!important}.\32xl\:-translate-x-8{--transform-translate-x:-2rem!important}.\32xl\:-translate-x-9{--transform-translate-x:-2.25rem!important}.\32xl\:-translate-x-10{--transform-translate-x:-2.5rem!important}.\32xl\:-translate-x-11{--transform-translate-x:-2.75rem!important}.\32xl\:-translate-x-12{--transform-translate-x:-3rem!important}.\32xl\:-translate-x-13{--transform-translate-x:-3.25rem!important}.\32xl\:-translate-x-14{--transform-translate-x:-3.5rem!important}.\32xl\:-translate-x-15{--transform-translate-x:-3.75rem!important}.\32xl\:-translate-x-16{--transform-translate-x:-4rem!important}.\32xl\:-translate-x-20{--transform-translate-x:-5rem!important}.\32xl\:-translate-x-24{--transform-translate-x:-6rem!important}.\32xl\:-translate-x-28{--transform-translate-x:-7rem!important}.\32xl\:-translate-x-32{--transform-translate-x:-8rem!important}.\32xl\:-translate-x-36{--transform-translate-x:-9rem!important}.\32xl\:-translate-x-40{--transform-translate-x:-10rem!important}.\32xl\:-translate-x-48{--transform-translate-x:-12rem!important}.\32xl\:-translate-x-56{--transform-translate-x:-14rem!important}.\32xl\:-translate-x-60{--transform-translate-x:-15rem!important}.\32xl\:-translate-x-64{--transform-translate-x:-16rem!important}.\32xl\:-translate-x-72{--transform-translate-x:-18rem!important}.\32xl\:-translate-x-80{--transform-translate-x:-20rem!important}.\32xl\:-translate-x-96{--transform-translate-x:-24rem!important}.\32xl\:-translate-x-px{--transform-translate-x:-1px!important}.\32xl\:-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.\32xl\:-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.\32xl\:-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.\32xl\:-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.\32xl\:-translate-x-1\/2{--transform-translate-x:-50%!important}.\32xl\:-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.\32xl\:-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.\32xl\:-translate-x-1\/4{--transform-translate-x:-25%!important}.\32xl\:-translate-x-2\/4{--transform-translate-x:-50%!important}.\32xl\:-translate-x-3\/4{--transform-translate-x:-75%!important}.\32xl\:-translate-x-1\/5{--transform-translate-x:-20%!important}.\32xl\:-translate-x-2\/5{--transform-translate-x:-40%!important}.\32xl\:-translate-x-3\/5{--transform-translate-x:-60%!important}.\32xl\:-translate-x-4\/5{--transform-translate-x:-80%!important}.\32xl\:-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.\32xl\:-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.\32xl\:-translate-x-3\/6{--transform-translate-x:-50%!important}.\32xl\:-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.\32xl\:-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.\32xl\:-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.\32xl\:-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.\32xl\:-translate-x-3\/12{--transform-translate-x:-25%!important}.\32xl\:-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.\32xl\:-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.\32xl\:-translate-x-6\/12{--transform-translate-x:-50%!important}.\32xl\:-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.\32xl\:-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.\32xl\:-translate-x-9\/12{--transform-translate-x:-75%!important}.\32xl\:-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.\32xl\:-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.\32xl\:-translate-x-full{--transform-translate-x:-100%!important}.\32xl\:translate-y-0{--transform-translate-y:0!important}.\32xl\:translate-y-1{--transform-translate-y:0.25rem!important}.\32xl\:translate-y-2{--transform-translate-y:0.5rem!important}.\32xl\:translate-y-3{--transform-translate-y:0.75rem!important}.\32xl\:translate-y-4{--transform-translate-y:1rem!important}.\32xl\:translate-y-5{--transform-translate-y:1.25rem!important}.\32xl\:translate-y-6{--transform-translate-y:1.5rem!important}.\32xl\:translate-y-7{--transform-translate-y:1.75rem!important}.\32xl\:translate-y-8{--transform-translate-y:2rem!important}.\32xl\:translate-y-9{--transform-translate-y:2.25rem!important}.\32xl\:translate-y-10{--transform-translate-y:2.5rem!important}.\32xl\:translate-y-11{--transform-translate-y:2.75rem!important}.\32xl\:translate-y-12{--transform-translate-y:3rem!important}.\32xl\:translate-y-13{--transform-translate-y:3.25rem!important}.\32xl\:translate-y-14{--transform-translate-y:3.5rem!important}.\32xl\:translate-y-15{--transform-translate-y:3.75rem!important}.\32xl\:translate-y-16{--transform-translate-y:4rem!important}.\32xl\:translate-y-20{--transform-translate-y:5rem!important}.\32xl\:translate-y-24{--transform-translate-y:6rem!important}.\32xl\:translate-y-28{--transform-translate-y:7rem!important}.\32xl\:translate-y-32{--transform-translate-y:8rem!important}.\32xl\:translate-y-36{--transform-translate-y:9rem!important}.\32xl\:translate-y-40{--transform-translate-y:10rem!important}.\32xl\:translate-y-48{--transform-translate-y:12rem!important}.\32xl\:translate-y-56{--transform-translate-y:14rem!important}.\32xl\:translate-y-60{--transform-translate-y:15rem!important}.\32xl\:translate-y-64{--transform-translate-y:16rem!important}.\32xl\:translate-y-72{--transform-translate-y:18rem!important}.\32xl\:translate-y-80{--transform-translate-y:20rem!important}.\32xl\:translate-y-96{--transform-translate-y:24rem!important}.\32xl\:translate-y-px{--transform-translate-y:1px!important}.\32xl\:translate-y-0\.5{--transform-translate-y:0.125rem!important}.\32xl\:translate-y-1\.5{--transform-translate-y:0.375rem!important}.\32xl\:translate-y-2\.5{--transform-translate-y:0.625rem!important}.\32xl\:translate-y-3\.5{--transform-translate-y:0.875rem!important}.\32xl\:translate-y-1\/2{--transform-translate-y:50%!important}.\32xl\:translate-y-1\/3{--transform-translate-y:33.333333%!important}.\32xl\:translate-y-2\/3{--transform-translate-y:66.666667%!important}.\32xl\:translate-y-1\/4{--transform-translate-y:25%!important}.\32xl\:translate-y-2\/4{--transform-translate-y:50%!important}.\32xl\:translate-y-3\/4{--transform-translate-y:75%!important}.\32xl\:translate-y-1\/5{--transform-translate-y:20%!important}.\32xl\:translate-y-2\/5{--transform-translate-y:40%!important}.\32xl\:translate-y-3\/5{--transform-translate-y:60%!important}.\32xl\:translate-y-4\/5{--transform-translate-y:80%!important}.\32xl\:translate-y-1\/6{--transform-translate-y:16.666667%!important}.\32xl\:translate-y-2\/6{--transform-translate-y:33.333333%!important}.\32xl\:translate-y-3\/6{--transform-translate-y:50%!important}.\32xl\:translate-y-4\/6{--transform-translate-y:66.666667%!important}.\32xl\:translate-y-5\/6{--transform-translate-y:83.333333%!important}.\32xl\:translate-y-1\/12{--transform-translate-y:8.333333%!important}.\32xl\:translate-y-2\/12{--transform-translate-y:16.666667%!important}.\32xl\:translate-y-3\/12{--transform-translate-y:25%!important}.\32xl\:translate-y-4\/12{--transform-translate-y:33.333333%!important}.\32xl\:translate-y-5\/12{--transform-translate-y:41.666667%!important}.\32xl\:translate-y-6\/12{--transform-translate-y:50%!important}.\32xl\:translate-y-7\/12{--transform-translate-y:58.333333%!important}.\32xl\:translate-y-8\/12{--transform-translate-y:66.666667%!important}.\32xl\:translate-y-9\/12{--transform-translate-y:75%!important}.\32xl\:translate-y-10\/12{--transform-translate-y:83.333333%!important}.\32xl\:translate-y-11\/12{--transform-translate-y:91.666667%!important}.\32xl\:translate-y-full{--transform-translate-y:100%!important}.\32xl\:-translate-y-1{--transform-translate-y:-0.25rem!important}.\32xl\:-translate-y-2{--transform-translate-y:-0.5rem!important}.\32xl\:-translate-y-3{--transform-translate-y:-0.75rem!important}.\32xl\:-translate-y-4{--transform-translate-y:-1rem!important}.\32xl\:-translate-y-5{--transform-translate-y:-1.25rem!important}.\32xl\:-translate-y-6{--transform-translate-y:-1.5rem!important}.\32xl\:-translate-y-7{--transform-translate-y:-1.75rem!important}.\32xl\:-translate-y-8{--transform-translate-y:-2rem!important}.\32xl\:-translate-y-9{--transform-translate-y:-2.25rem!important}.\32xl\:-translate-y-10{--transform-translate-y:-2.5rem!important}.\32xl\:-translate-y-11{--transform-translate-y:-2.75rem!important}.\32xl\:-translate-y-12{--transform-translate-y:-3rem!important}.\32xl\:-translate-y-13{--transform-translate-y:-3.25rem!important}.\32xl\:-translate-y-14{--transform-translate-y:-3.5rem!important}.\32xl\:-translate-y-15{--transform-translate-y:-3.75rem!important}.\32xl\:-translate-y-16{--transform-translate-y:-4rem!important}.\32xl\:-translate-y-20{--transform-translate-y:-5rem!important}.\32xl\:-translate-y-24{--transform-translate-y:-6rem!important}.\32xl\:-translate-y-28{--transform-translate-y:-7rem!important}.\32xl\:-translate-y-32{--transform-translate-y:-8rem!important}.\32xl\:-translate-y-36{--transform-translate-y:-9rem!important}.\32xl\:-translate-y-40{--transform-translate-y:-10rem!important}.\32xl\:-translate-y-48{--transform-translate-y:-12rem!important}.\32xl\:-translate-y-56{--transform-translate-y:-14rem!important}.\32xl\:-translate-y-60{--transform-translate-y:-15rem!important}.\32xl\:-translate-y-64{--transform-translate-y:-16rem!important}.\32xl\:-translate-y-72{--transform-translate-y:-18rem!important}.\32xl\:-translate-y-80{--transform-translate-y:-20rem!important}.\32xl\:-translate-y-96{--transform-translate-y:-24rem!important}.\32xl\:-translate-y-px{--transform-translate-y:-1px!important}.\32xl\:-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.\32xl\:-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.\32xl\:-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.\32xl\:-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.\32xl\:-translate-y-1\/2{--transform-translate-y:-50%!important}.\32xl\:-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.\32xl\:-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.\32xl\:-translate-y-1\/4{--transform-translate-y:-25%!important}.\32xl\:-translate-y-2\/4{--transform-translate-y:-50%!important}.\32xl\:-translate-y-3\/4{--transform-translate-y:-75%!important}.\32xl\:-translate-y-1\/5{--transform-translate-y:-20%!important}.\32xl\:-translate-y-2\/5{--transform-translate-y:-40%!important}.\32xl\:-translate-y-3\/5{--transform-translate-y:-60%!important}.\32xl\:-translate-y-4\/5{--transform-translate-y:-80%!important}.\32xl\:-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.\32xl\:-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.\32xl\:-translate-y-3\/6{--transform-translate-y:-50%!important}.\32xl\:-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.\32xl\:-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.\32xl\:-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.\32xl\:-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.\32xl\:-translate-y-3\/12{--transform-translate-y:-25%!important}.\32xl\:-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.\32xl\:-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.\32xl\:-translate-y-6\/12{--transform-translate-y:-50%!important}.\32xl\:-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.\32xl\:-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.\32xl\:-translate-y-9\/12{--transform-translate-y:-75%!important}.\32xl\:-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.\32xl\:-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.\32xl\:-translate-y-full{--transform-translate-y:-100%!important}.\32xl\:hover\:translate-x-0:hover{--transform-translate-x:0!important}.\32xl\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.\32xl\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.\32xl\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.\32xl\:hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.\32xl\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.\32xl\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.\32xl\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.\32xl\:hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.\32xl\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.\32xl\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.\32xl\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.\32xl\:hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.\32xl\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.\32xl\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.\32xl\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.\32xl\:hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.\32xl\:hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.\32xl\:hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.\32xl\:hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.\32xl\:hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.\32xl\:hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.\32xl\:hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.\32xl\:hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.\32xl\:hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.\32xl\:hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.\32xl\:hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.\32xl\:hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.\32xl\:hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.\32xl\:hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.\32xl\:hover\:translate-x-px:hover{--transform-translate-x:1px!important}.\32xl\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.\32xl\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.\32xl\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.\32xl\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.\32xl\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.\32xl\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.\32xl\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.\32xl\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.\32xl\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.\32xl\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.\32xl\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.\32xl\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.\32xl\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.\32xl\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.\32xl\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.\32xl\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.\32xl\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.\32xl\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.\32xl\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.\32xl\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.\32xl\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.\32xl\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.\32xl\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.\32xl\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.\32xl\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.\32xl\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.\32xl\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.\32xl\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.\32xl\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.\32xl\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.\32xl\:hover\:translate-x-full:hover{--transform-translate-x:100%!important}.\32xl\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.\32xl\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.\32xl\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.\32xl\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.\32xl\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.\32xl\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.\32xl\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.\32xl\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.\32xl\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.\32xl\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.\32xl\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.\32xl\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.\32xl\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.\32xl\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.\32xl\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.\32xl\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.\32xl\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.\32xl\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.\32xl\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.\32xl\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.\32xl\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.\32xl\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.\32xl\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.\32xl\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.\32xl\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.\32xl\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.\32xl\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.\32xl\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.\32xl\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.\32xl\:hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.\32xl\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.\32xl\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.\32xl\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.\32xl\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.\32xl\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.\32xl\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.\32xl\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.\32xl\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.\32xl\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.\32xl\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.\32xl\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.\32xl\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.\32xl\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.\32xl\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.\32xl\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.\32xl\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.\32xl\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.\32xl\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.\32xl\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.\32xl\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.\32xl\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.\32xl\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.\32xl\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.\32xl\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.\32xl\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.\32xl\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.\32xl\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.\32xl\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.\32xl\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.\32xl\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.\32xl\:hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.\32xl\:hover\:translate-y-0:hover{--transform-translate-y:0!important}.\32xl\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.\32xl\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.\32xl\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.\32xl\:hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.\32xl\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.\32xl\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.\32xl\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.\32xl\:hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.\32xl\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.\32xl\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.\32xl\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.\32xl\:hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.\32xl\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.\32xl\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.\32xl\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.\32xl\:hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.\32xl\:hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.\32xl\:hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.\32xl\:hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.\32xl\:hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.\32xl\:hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.\32xl\:hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.\32xl\:hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.\32xl\:hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.\32xl\:hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.\32xl\:hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.\32xl\:hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.\32xl\:hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.\32xl\:hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.\32xl\:hover\:translate-y-px:hover{--transform-translate-y:1px!important}.\32xl\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.\32xl\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.\32xl\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.\32xl\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.\32xl\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.\32xl\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.\32xl\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.\32xl\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.\32xl\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.\32xl\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.\32xl\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.\32xl\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.\32xl\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.\32xl\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.\32xl\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.\32xl\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.\32xl\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.\32xl\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.\32xl\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.\32xl\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.\32xl\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.\32xl\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.\32xl\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.\32xl\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.\32xl\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.\32xl\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.\32xl\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.\32xl\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.\32xl\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.\32xl\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.\32xl\:hover\:translate-y-full:hover{--transform-translate-y:100%!important}.\32xl\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.\32xl\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.\32xl\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.\32xl\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.\32xl\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.\32xl\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.\32xl\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.\32xl\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.\32xl\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.\32xl\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.\32xl\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.\32xl\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.\32xl\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.\32xl\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.\32xl\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.\32xl\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.\32xl\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.\32xl\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.\32xl\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.\32xl\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.\32xl\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.\32xl\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.\32xl\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.\32xl\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.\32xl\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.\32xl\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.\32xl\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.\32xl\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.\32xl\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.\32xl\:hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.\32xl\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.\32xl\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.\32xl\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.\32xl\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.\32xl\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.\32xl\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.\32xl\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.\32xl\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.\32xl\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.\32xl\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.\32xl\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.\32xl\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.\32xl\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.\32xl\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.\32xl\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.\32xl\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.\32xl\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.\32xl\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.\32xl\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.\32xl\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.\32xl\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.\32xl\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.\32xl\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.\32xl\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.\32xl\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.\32xl\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.\32xl\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.\32xl\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.\32xl\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.\32xl\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.\32xl\:hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.\32xl\:focus\:translate-x-0:focus{--transform-translate-x:0!important}.\32xl\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.\32xl\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.\32xl\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.\32xl\:focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.\32xl\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.\32xl\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.\32xl\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.\32xl\:focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.\32xl\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.\32xl\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.\32xl\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.\32xl\:focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.\32xl\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.\32xl\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.\32xl\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.\32xl\:focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.\32xl\:focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.\32xl\:focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.\32xl\:focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.\32xl\:focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.\32xl\:focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.\32xl\:focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.\32xl\:focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.\32xl\:focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.\32xl\:focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.\32xl\:focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.\32xl\:focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.\32xl\:focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.\32xl\:focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.\32xl\:focus\:translate-x-px:focus{--transform-translate-x:1px!important}.\32xl\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.\32xl\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.\32xl\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.\32xl\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.\32xl\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.\32xl\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.\32xl\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.\32xl\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.\32xl\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.\32xl\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.\32xl\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.\32xl\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.\32xl\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.\32xl\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.\32xl\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.\32xl\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.\32xl\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.\32xl\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.\32xl\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.\32xl\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.\32xl\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.\32xl\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.\32xl\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.\32xl\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.\32xl\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.\32xl\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.\32xl\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.\32xl\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.\32xl\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.\32xl\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.\32xl\:focus\:translate-x-full:focus{--transform-translate-x:100%!important}.\32xl\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.\32xl\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.\32xl\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.\32xl\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.\32xl\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.\32xl\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.\32xl\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.\32xl\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.\32xl\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.\32xl\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.\32xl\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.\32xl\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.\32xl\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.\32xl\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.\32xl\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.\32xl\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.\32xl\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.\32xl\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.\32xl\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.\32xl\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.\32xl\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.\32xl\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.\32xl\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.\32xl\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.\32xl\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.\32xl\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.\32xl\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.\32xl\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.\32xl\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.\32xl\:focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.\32xl\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.\32xl\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.\32xl\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.\32xl\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.\32xl\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.\32xl\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.\32xl\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.\32xl\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.\32xl\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.\32xl\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.\32xl\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.\32xl\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.\32xl\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.\32xl\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.\32xl\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.\32xl\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.\32xl\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.\32xl\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.\32xl\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.\32xl\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.\32xl\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.\32xl\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.\32xl\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.\32xl\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.\32xl\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.\32xl\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.\32xl\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.\32xl\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.\32xl\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.\32xl\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.\32xl\:focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.\32xl\:focus\:translate-y-0:focus{--transform-translate-y:0!important}.\32xl\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.\32xl\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.\32xl\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.\32xl\:focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.\32xl\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.\32xl\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.\32xl\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.\32xl\:focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.\32xl\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.\32xl\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.\32xl\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.\32xl\:focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.\32xl\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.\32xl\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.\32xl\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.\32xl\:focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.\32xl\:focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.\32xl\:focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.\32xl\:focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.\32xl\:focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.\32xl\:focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.\32xl\:focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.\32xl\:focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.\32xl\:focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.\32xl\:focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.\32xl\:focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.\32xl\:focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.\32xl\:focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.\32xl\:focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.\32xl\:focus\:translate-y-px:focus{--transform-translate-y:1px!important}.\32xl\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.\32xl\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.\32xl\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.\32xl\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.\32xl\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.\32xl\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.\32xl\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.\32xl\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.\32xl\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.\32xl\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.\32xl\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.\32xl\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.\32xl\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.\32xl\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.\32xl\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.\32xl\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.\32xl\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.\32xl\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.\32xl\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.\32xl\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.\32xl\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.\32xl\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.\32xl\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.\32xl\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.\32xl\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.\32xl\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.\32xl\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.\32xl\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.\32xl\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.\32xl\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.\32xl\:focus\:translate-y-full:focus{--transform-translate-y:100%!important}.\32xl\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.\32xl\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.\32xl\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.\32xl\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.\32xl\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.\32xl\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.\32xl\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.\32xl\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.\32xl\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.\32xl\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.\32xl\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.\32xl\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.\32xl\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.\32xl\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.\32xl\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.\32xl\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.\32xl\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.\32xl\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.\32xl\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.\32xl\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.\32xl\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.\32xl\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.\32xl\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.\32xl\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.\32xl\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.\32xl\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.\32xl\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.\32xl\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.\32xl\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.\32xl\:focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.\32xl\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.\32xl\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.\32xl\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.\32xl\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.\32xl\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.\32xl\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.\32xl\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.\32xl\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.\32xl\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.\32xl\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.\32xl\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.\32xl\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.\32xl\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.\32xl\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.\32xl\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.\32xl\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.\32xl\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.\32xl\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.\32xl\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.\32xl\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.\32xl\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.\32xl\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.\32xl\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.\32xl\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.\32xl\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.\32xl\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.\32xl\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.\32xl\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.\32xl\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.\32xl\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.\32xl\:focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.\32xl\:skew-x-0{--transform-skew-x:0!important}.\32xl\:skew-x-1{--transform-skew-x:1deg!important}.\32xl\:skew-x-2{--transform-skew-x:2deg!important}.\32xl\:skew-x-3{--transform-skew-x:3deg!important}.\32xl\:skew-x-6{--transform-skew-x:6deg!important}.\32xl\:skew-x-12{--transform-skew-x:12deg!important}.\32xl\:-skew-x-12{--transform-skew-x:-12deg!important}.\32xl\:-skew-x-6{--transform-skew-x:-6deg!important}.\32xl\:-skew-x-3{--transform-skew-x:-3deg!important}.\32xl\:-skew-x-2{--transform-skew-x:-2deg!important}.\32xl\:-skew-x-1{--transform-skew-x:-1deg!important}.\32xl\:skew-y-0{--transform-skew-y:0!important}.\32xl\:skew-y-1{--transform-skew-y:1deg!important}.\32xl\:skew-y-2{--transform-skew-y:2deg!important}.\32xl\:skew-y-3{--transform-skew-y:3deg!important}.\32xl\:skew-y-6{--transform-skew-y:6deg!important}.\32xl\:skew-y-12{--transform-skew-y:12deg!important}.\32xl\:-skew-y-12{--transform-skew-y:-12deg!important}.\32xl\:-skew-y-6{--transform-skew-y:-6deg!important}.\32xl\:-skew-y-3{--transform-skew-y:-3deg!important}.\32xl\:-skew-y-2{--transform-skew-y:-2deg!important}.\32xl\:-skew-y-1{--transform-skew-y:-1deg!important}.\32xl\:hover\:skew-x-0:hover{--transform-skew-x:0!important}.\32xl\:hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.\32xl\:hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.\32xl\:hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.\32xl\:hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.\32xl\:hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.\32xl\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.\32xl\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.\32xl\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.\32xl\:hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.\32xl\:hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.\32xl\:hover\:skew-y-0:hover{--transform-skew-y:0!important}.\32xl\:hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.\32xl\:hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.\32xl\:hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.\32xl\:hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.\32xl\:hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.\32xl\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.\32xl\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.\32xl\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.\32xl\:hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.\32xl\:hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.\32xl\:focus\:skew-x-0:focus{--transform-skew-x:0!important}.\32xl\:focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.\32xl\:focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.\32xl\:focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.\32xl\:focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.\32xl\:focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.\32xl\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.\32xl\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.\32xl\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.\32xl\:focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.\32xl\:focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.\32xl\:focus\:skew-y-0:focus{--transform-skew-y:0!important}.\32xl\:focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.\32xl\:focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.\32xl\:focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.\32xl\:focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.\32xl\:focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.\32xl\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.\32xl\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.\32xl\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.\32xl\:focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.\32xl\:focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.\32xl\:transition-none{transition-property:none!important}.\32xl\:transition-all{transition-property:all!important}.\32xl\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.\32xl\:transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.\32xl\:transition-opacity{transition-property:opacity!important}.\32xl\:transition-shadow{transition-property:box-shadow!important}.\32xl\:transition-transform{transition-property:transform!important}.\32xl\:ease-linear{transition-timing-function:linear!important}.\32xl\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.\32xl\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.\32xl\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.\32xl\:duration-75{transition-duration:75ms!important}.\32xl\:duration-100{transition-duration:.1s!important}.\32xl\:duration-150{transition-duration:.15s!important}.\32xl\:duration-200{transition-duration:.2s!important}.\32xl\:duration-300{transition-duration:.3s!important}.\32xl\:duration-500{transition-duration:.5s!important}.\32xl\:duration-700{transition-duration:.7s!important}.\32xl\:duration-1000{transition-duration:1s!important}.\32xl\:duration-2000{transition-duration:2s!important}.\32xl\:delay-75{transition-delay:75ms!important}.\32xl\:delay-100{transition-delay:.1s!important}.\32xl\:delay-150{transition-delay:.15s!important}.\32xl\:delay-200{transition-delay:.2s!important}.\32xl\:delay-300{transition-delay:.3s!important}.\32xl\:delay-500{transition-delay:.5s!important}.\32xl\:delay-700{transition-delay:.7s!important}.\32xl\:delay-1000{transition-delay:1s!important}.\32xl\:animate-none{animation:none!important}.\32xl\:animate-spin{animation:spin 1s linear infinite!important}.\32xl\:animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.\32xl\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.\32xl\:animate-bounce{animation:bounce 1s infinite!important}}@media (min-width:1800px){.\33xl\:space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.\33xl\:space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.\33xl\:space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.\33xl\:space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.\33xl\:space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.\33xl\:space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.\33xl\:space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.\33xl\:space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.\33xl\:space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.\33xl\:space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.\33xl\:space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.\33xl\:space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.\33xl\:space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.\33xl\:space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.\33xl\:space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.\33xl\:space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.\33xl\:space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.\33xl\:space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.\33xl\:space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.\33xl\:space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.\33xl\:space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.\33xl\:space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.\33xl\:space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.\33xl\:space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.\33xl\:space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.\33xl\:space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.\33xl\:space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.\33xl\:space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.\33xl\:space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.\33xl\:space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.\33xl\:space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.\33xl\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.\33xl\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.\33xl\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.\33xl\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.\33xl\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\33xl\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\33xl\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\33xl\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.\33xl\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\33xl\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.\33xl\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.\33xl\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.\33xl\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.\33xl\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.\33xl\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.\33xl\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\33xl\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\33xl\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\33xl\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.\33xl\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.\33xl\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.\33xl\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.\33xl\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\33xl\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.\33xl\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\33xl\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.\33xl\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\33xl\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.\33xl\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.\33xl\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.\33xl\:space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.\33xl\:space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.\33xl\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.\33xl\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.\33xl\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.\33xl\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.\33xl\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.\33xl\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.\33xl\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.\33xl\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.\33xl\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.\33xl\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.\33xl\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.\33xl\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.\33xl\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.\33xl\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.\33xl\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.\33xl\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.\33xl\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.\33xl\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.\33xl\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.\33xl\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.\33xl\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.\33xl\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.\33xl\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.\33xl\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.\33xl\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.\33xl\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.\33xl\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.\33xl\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.\33xl\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.\33xl\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.\33xl\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.\33xl\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.\33xl\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.\33xl\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.\33xl\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\33xl\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\33xl\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\33xl\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.\33xl\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\33xl\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.\33xl\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.\33xl\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.\33xl\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.\33xl\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.\33xl\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.\33xl\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\33xl\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\33xl\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\33xl\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.\33xl\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.\33xl\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.\33xl\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.\33xl\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\33xl\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.\33xl\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\33xl\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.\33xl\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\33xl\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.\33xl\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.\33xl\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.\33xl\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.\33xl\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.\33xl\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.\33xl\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.\33xl\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.\33xl\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.\33xl\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.\33xl\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.\33xl\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.\33xl\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.\33xl\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.\33xl\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.\33xl\:divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.\33xl\:divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.\33xl\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.\33xl\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.\33xl\:divide-transparent>:not(template)~:not(template){border-color:transparent!important}.\33xl\:divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.\33xl\:divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.\33xl\:divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.\33xl\:divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.\33xl\:divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.\33xl\:divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.\33xl\:divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.\33xl\:divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.\33xl\:divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.\33xl\:divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.\33xl\:divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.\33xl\:divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.\33xl\:divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.\33xl\:divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.\33xl\:divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.\33xl\:divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.\33xl\:divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.\33xl\:divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.\33xl\:divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.\33xl\:divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.\33xl\:divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.\33xl\:divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.\33xl\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.\33xl\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.\33xl\:divide-solid>:not(template)~:not(template){border-style:solid!important}.\33xl\:divide-dashed>:not(template)~:not(template){border-style:dashed!important}.\33xl\:divide-dotted>:not(template)~:not(template){border-style:dotted!important}.\33xl\:divide-double>:not(template)~:not(template){border-style:double!important}.\33xl\:divide-none>:not(template)~:not(template){border-style:none!important}.\33xl\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.\33xl\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.\33xl\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.\33xl\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.\33xl\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.\33xl\:sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.\33xl\:not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.\33xl\:focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.\33xl\:focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.\33xl\:appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.\33xl\:bg-fixed{background-attachment:fixed!important}.\33xl\:bg-local{background-attachment:local!important}.\33xl\:bg-scroll{background-attachment:scroll!important}.\33xl\:bg-clip-border{background-clip:border-box!important}.\33xl\:bg-clip-padding{background-clip:padding-box!important}.\33xl\:bg-clip-content{background-clip:content-box!important}.\33xl\:bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.\33xl\:bg-transparent{background-color:transparent!important}.\33xl\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\33xl\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.\33xl\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\33xl\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.\33xl\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\33xl\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\33xl\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\33xl\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\33xl\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\33xl\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\33xl\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\33xl\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\33xl\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\33xl\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\33xl\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\33xl\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\33xl\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.\33xl\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\33xl\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\33xl\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\33xl\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\33xl\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\33xl\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\33xl\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-transparent{background-color:transparent!important}.group:hover .\33xl\:group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .\33xl\:group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .\33xl\:group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .\33xl\:group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .\33xl\:group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-transparent{background-color:transparent!important}.group:focus .\33xl\:group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .\33xl\:group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .\33xl\:group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .\33xl\:group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .\33xl\:group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\33xl\:hover\:bg-transparent:hover{background-color:transparent!important}.\33xl\:hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\33xl\:hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.\33xl\:hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\33xl\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.\33xl\:hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\33xl\:hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\33xl\:hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\33xl\:hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\33xl\:hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\33xl\:hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\33xl\:hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\33xl\:hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\33xl\:hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\33xl\:hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\33xl\:hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\33xl\:hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\33xl\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.\33xl\:hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\33xl\:hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\33xl\:hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\33xl\:hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\33xl\:hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\33xl\:hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\33xl\:hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\33xl\:focus\:bg-transparent:focus{background-color:transparent!important}.\33xl\:focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\33xl\:focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.\33xl\:focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\33xl\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.\33xl\:focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\33xl\:focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\33xl\:focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\33xl\:focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\33xl\:focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\33xl\:focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\33xl\:focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\33xl\:focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\33xl\:focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\33xl\:focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\33xl\:focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\33xl\:focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\33xl\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.\33xl\:focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\33xl\:focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\33xl\:focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\33xl\:focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\33xl\:focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\33xl\:focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\33xl\:focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\33xl\:active\:bg-transparent:active{background-color:transparent!important}.\33xl\:active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\33xl\:active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.\33xl\:active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\33xl\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.\33xl\:active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\33xl\:active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\33xl\:active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\33xl\:active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\33xl\:active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\33xl\:active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\33xl\:active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\33xl\:active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\33xl\:active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\33xl\:active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\33xl\:active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\33xl\:active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\33xl\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.\33xl\:active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\33xl\:active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\33xl\:active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\33xl\:active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\33xl\:active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\33xl\:active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\33xl\:active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\33xl\:bg-none{background-image:none!important}.\33xl\:bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.\33xl\:bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.\33xl\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.\33xl\:bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.\33xl\:bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.\33xl\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.\33xl\:bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.\33xl\:bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.\33xl\:from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\33xl\:from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\33xl\:from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\33xl\:from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\33xl\:from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\33xl\:from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\33xl\:from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\33xl\:from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\33xl\:from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\33xl\:from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\33xl\:from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\33xl\:from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\33xl\:from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\33xl\:from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\33xl\:from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\33xl\:from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\33xl\:from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\33xl\:from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\33xl\:from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\33xl\:from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\33xl\:via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\33xl\:via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\33xl\:via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\33xl\:via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\33xl\:via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\33xl\:via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\33xl\:via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\33xl\:via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\33xl\:via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\33xl\:via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\33xl\:via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\33xl\:via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\33xl\:via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\33xl\:via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\33xl\:via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\33xl\:via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\33xl\:via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\33xl\:via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\33xl\:via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\33xl\:via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\33xl\:to-transparent{--gradient-to-color:transparent!important}.\33xl\:to-white{--gradient-to-color:#fff!important}.\33xl\:to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\33xl\:to-blackest{--gradient-to-color:#000!important}.\33xl\:to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.\33xl\:to-black{--gradient-to-color:#23292d!important}.\33xl\:to-gray-darkest{--gradient-to-color:#3d4852!important}.\33xl\:to-gray-darker{--gradient-to-color:#606f7b!important}.\33xl\:to-gray-dark{--gradient-to-color:#9ea3a8!important}.\33xl\:to-gray{--gradient-to-color:#b8c2cc!important}.\33xl\:to-gray-light{--gradient-to-color:#dae1e7!important}.\33xl\:to-gray-lighter{--gradient-to-color:#f1f1f1!important}.\33xl\:to-gray-lightest{--gradient-to-color:#f8fafc!important}.\33xl\:to-blue-darkest{--gradient-to-color:#1673a7!important}.\33xl\:to-blue-dark{--gradient-to-color:#0073aa!important}.\33xl\:to-blue{--gradient-to-color:#3188e6!important}.\33xl\:to-blue-light{--gradient-to-color:#a4cafe!important}.\33xl\:to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.\33xl\:to-orange{--gradient-to-color:#dd6923!important}.\33xl\:to-orange-darker{--gradient-to-color:#d5551e!important}.\33xl\:to-orange-darkest{--gradient-to-color:#c9501c!important}.\33xl\:to-red{--gradient-to-color:#e82323!important}.\33xl\:to-green{--gradient-to-color:#46b450!important}.\33xl\:to-yellow-400{--gradient-to-color:#e3a008!important}.\33xl\:to-yellow-50{--gradient-to-color:#fdfdea!important}.\33xl\:hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\33xl\:hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\33xl\:hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\33xl\:hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\33xl\:hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\33xl\:hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\33xl\:hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\33xl\:hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\33xl\:hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\33xl\:hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\33xl\:hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\33xl\:hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\33xl\:hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\33xl\:hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\33xl\:hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\33xl\:hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\33xl\:hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\33xl\:hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\33xl\:hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\33xl\:hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\33xl\:hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\33xl\:hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\33xl\:hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\33xl\:hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\33xl\:hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\33xl\:hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\33xl\:hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\33xl\:hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\33xl\:hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\33xl\:hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\33xl\:hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\33xl\:hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\33xl\:hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\33xl\:hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\33xl\:hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\33xl\:hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\33xl\:hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\33xl\:hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\33xl\:hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\33xl\:hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\33xl\:hover\:to-transparent:hover{--gradient-to-color:transparent!important}.\33xl\:hover\:to-white:hover{--gradient-to-color:#fff!important}.\33xl\:hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\33xl\:hover\:to-blackest:hover{--gradient-to-color:#000!important}.\33xl\:hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.\33xl\:hover\:to-black:hover{--gradient-to-color:#23292d!important}.\33xl\:hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.\33xl\:hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.\33xl\:hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.\33xl\:hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.\33xl\:hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.\33xl\:hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.\33xl\:hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.\33xl\:hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.\33xl\:hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.\33xl\:hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.\33xl\:hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.\33xl\:hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.\33xl\:hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.\33xl\:hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.\33xl\:hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.\33xl\:hover\:to-red:hover{--gradient-to-color:#e82323!important}.\33xl\:hover\:to-green:hover{--gradient-to-color:#46b450!important}.\33xl\:hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.\33xl\:hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.\33xl\:focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\33xl\:focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\33xl\:focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\33xl\:focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\33xl\:focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\33xl\:focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\33xl\:focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\33xl\:focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\33xl\:focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\33xl\:focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\33xl\:focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\33xl\:focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\33xl\:focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\33xl\:focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\33xl\:focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\33xl\:focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\33xl\:focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\33xl\:focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\33xl\:focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\33xl\:focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\33xl\:focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\33xl\:focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\33xl\:focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\33xl\:focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\33xl\:focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\33xl\:focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\33xl\:focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\33xl\:focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\33xl\:focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\33xl\:focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\33xl\:focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\33xl\:focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\33xl\:focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\33xl\:focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\33xl\:focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\33xl\:focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\33xl\:focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\33xl\:focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\33xl\:focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\33xl\:focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\33xl\:focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\33xl\:focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\33xl\:focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\33xl\:focus\:to-transparent:focus{--gradient-to-color:transparent!important}.\33xl\:focus\:to-white:focus{--gradient-to-color:#fff!important}.\33xl\:focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\33xl\:focus\:to-blackest:focus{--gradient-to-color:#000!important}.\33xl\:focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.\33xl\:focus\:to-black:focus{--gradient-to-color:#23292d!important}.\33xl\:focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.\33xl\:focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.\33xl\:focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.\33xl\:focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.\33xl\:focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.\33xl\:focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.\33xl\:focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.\33xl\:focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.\33xl\:focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.\33xl\:focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.\33xl\:focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.\33xl\:focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.\33xl\:focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.\33xl\:focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.\33xl\:focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.\33xl\:focus\:to-red:focus{--gradient-to-color:#e82323!important}.\33xl\:focus\:to-green:focus{--gradient-to-color:#46b450!important}.\33xl\:focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.\33xl\:focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.\33xl\:bg-opacity-0{--bg-opacity:0!important}.\33xl\:bg-opacity-25{--bg-opacity:0.25!important}.\33xl\:bg-opacity-50{--bg-opacity:0.5!important}.\33xl\:bg-opacity-75{--bg-opacity:0.75!important}.\33xl\:bg-opacity-100{--bg-opacity:1!important}.\33xl\:hover\:bg-opacity-0:hover{--bg-opacity:0!important}.\33xl\:hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.\33xl\:hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.\33xl\:hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.\33xl\:hover\:bg-opacity-100:hover{--bg-opacity:1!important}.\33xl\:focus\:bg-opacity-0:focus{--bg-opacity:0!important}.\33xl\:focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.\33xl\:focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.\33xl\:focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.\33xl\:focus\:bg-opacity-100:focus{--bg-opacity:1!important}.\33xl\:bg-bottom{background-position:bottom!important}.\33xl\:bg-center{background-position:50%!important}.\33xl\:bg-left{background-position:0!important}.\33xl\:bg-left-bottom{background-position:0 100%!important}.\33xl\:bg-left-top{background-position:0 0!important}.\33xl\:bg-right{background-position:100%!important}.\33xl\:bg-right-bottom{background-position:100% 100%!important}.\33xl\:bg-right-top{background-position:100% 0!important}.\33xl\:bg-top{background-position:top!important}.\33xl\:bg-repeat{background-repeat:repeat!important}.\33xl\:bg-no-repeat{background-repeat:no-repeat!important}.\33xl\:bg-repeat-x{background-repeat:repeat-x!important}.\33xl\:bg-repeat-y{background-repeat:repeat-y!important}.\33xl\:bg-repeat-round{background-repeat:round!important}.\33xl\:bg-repeat-space{background-repeat:space!important}.\33xl\:bg-auto{background-size:auto!important}.\33xl\:bg-cover{background-size:cover!important}.\33xl\:bg-contain{background-size:contain!important}.\33xl\:border-collapse{border-collapse:collapse!important}.\33xl\:border-separate{border-collapse:separate!important}.\33xl\:border-transparent{border-color:transparent!important}.\33xl\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\33xl\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.\33xl\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\33xl\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.\33xl\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\33xl\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\33xl\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\33xl\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\33xl\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\33xl\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\33xl\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\33xl\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\33xl\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\33xl\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\33xl\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\33xl\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\33xl\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.\33xl\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\33xl\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\33xl\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\33xl\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\33xl\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\33xl\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\33xl\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\33xl\:hover\:border-transparent:hover{border-color:transparent!important}.\33xl\:hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\33xl\:hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.\33xl\:hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\33xl\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.\33xl\:hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\33xl\:hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\33xl\:hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\33xl\:hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\33xl\:hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\33xl\:hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\33xl\:hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\33xl\:hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\33xl\:hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\33xl\:hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\33xl\:hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\33xl\:hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\33xl\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.\33xl\:hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\33xl\:hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\33xl\:hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\33xl\:hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\33xl\:hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\33xl\:hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\33xl\:hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\33xl\:focus\:border-transparent:focus{border-color:transparent!important}.\33xl\:focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\33xl\:focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.\33xl\:focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\33xl\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.\33xl\:focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\33xl\:focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\33xl\:focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\33xl\:focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\33xl\:focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\33xl\:focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\33xl\:focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\33xl\:focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\33xl\:focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\33xl\:focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\33xl\:focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\33xl\:focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\33xl\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.\33xl\:focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\33xl\:focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\33xl\:focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\33xl\:focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\33xl\:focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\33xl\:focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\33xl\:focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-transparent{border-color:transparent!important}.group:hover .\33xl\:group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .\33xl\:group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .\33xl\:group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .\33xl\:group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .\33xl\:group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\33xl\:border-opacity-0{--border-opacity:0!important}.\33xl\:border-opacity-25{--border-opacity:0.25!important}.\33xl\:border-opacity-50{--border-opacity:0.5!important}.\33xl\:border-opacity-75{--border-opacity:0.75!important}.\33xl\:border-opacity-100{--border-opacity:1!important}.\33xl\:hover\:border-opacity-0:hover{--border-opacity:0!important}.\33xl\:hover\:border-opacity-25:hover{--border-opacity:0.25!important}.\33xl\:hover\:border-opacity-50:hover{--border-opacity:0.5!important}.\33xl\:hover\:border-opacity-75:hover{--border-opacity:0.75!important}.\33xl\:hover\:border-opacity-100:hover{--border-opacity:1!important}.\33xl\:focus\:border-opacity-0:focus{--border-opacity:0!important}.\33xl\:focus\:border-opacity-25:focus{--border-opacity:0.25!important}.\33xl\:focus\:border-opacity-50:focus{--border-opacity:0.5!important}.\33xl\:focus\:border-opacity-75:focus{--border-opacity:0.75!important}.\33xl\:focus\:border-opacity-100:focus{--border-opacity:1!important}.\33xl\:rounded-none{border-radius:0!important}.\33xl\:rounded-sm{border-radius:.125rem!important}.\33xl\:rounded{border-radius:.25rem!important}.\33xl\:rounded-md{border-radius:.375rem!important}.\33xl\:rounded-lg{border-radius:.5rem!important}.\33xl\:rounded-xl{border-radius:.75rem!important}.\33xl\:rounded-2xl{border-radius:1rem!important}.\33xl\:rounded-3xl{border-radius:1.5rem!important}.\33xl\:rounded-full{border-radius:9999px!important}.\33xl\:rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.\33xl\:rounded-r-none{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.\33xl\:rounded-b-none{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.\33xl\:rounded-l-none{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.\33xl\:rounded-t-sm{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.\33xl\:rounded-r-sm{border-top-right-radius:.125rem!important}.\33xl\:rounded-b-sm,.\33xl\:rounded-r-sm{border-bottom-right-radius:.125rem!important}.\33xl\:rounded-b-sm,.\33xl\:rounded-l-sm{border-bottom-left-radius:.125rem!important}.\33xl\:rounded-l-sm{border-top-left-radius:.125rem!important}.\33xl\:rounded-t{border-top-left-radius:.25rem!important}.\33xl\:rounded-r,.\33xl\:rounded-t{border-top-right-radius:.25rem!important}.\33xl\:rounded-b,.\33xl\:rounded-r{border-bottom-right-radius:.25rem!important}.\33xl\:rounded-b,.\33xl\:rounded-l{border-bottom-left-radius:.25rem!important}.\33xl\:rounded-l{border-top-left-radius:.25rem!important}.\33xl\:rounded-t-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.\33xl\:rounded-r-md{border-top-right-radius:.375rem!important}.\33xl\:rounded-b-md,.\33xl\:rounded-r-md{border-bottom-right-radius:.375rem!important}.\33xl\:rounded-b-md,.\33xl\:rounded-l-md{border-bottom-left-radius:.375rem!important}.\33xl\:rounded-l-md{border-top-left-radius:.375rem!important}.\33xl\:rounded-t-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.\33xl\:rounded-r-lg{border-top-right-radius:.5rem!important}.\33xl\:rounded-b-lg,.\33xl\:rounded-r-lg{border-bottom-right-radius:.5rem!important}.\33xl\:rounded-b-lg,.\33xl\:rounded-l-lg{border-bottom-left-radius:.5rem!important}.\33xl\:rounded-l-lg{border-top-left-radius:.5rem!important}.\33xl\:rounded-t-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.\33xl\:rounded-r-xl{border-top-right-radius:.75rem!important}.\33xl\:rounded-b-xl,.\33xl\:rounded-r-xl{border-bottom-right-radius:.75rem!important}.\33xl\:rounded-b-xl,.\33xl\:rounded-l-xl{border-bottom-left-radius:.75rem!important}.\33xl\:rounded-l-xl{border-top-left-radius:.75rem!important}.\33xl\:rounded-t-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.\33xl\:rounded-r-2xl{border-bottom-right-radius:1rem!important;border-top-right-radius:1rem!important}.\33xl\:rounded-b-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.\33xl\:rounded-l-2xl{border-bottom-left-radius:1rem!important;border-top-left-radius:1rem!important}.\33xl\:rounded-t-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.\33xl\:rounded-r-3xl{border-bottom-right-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.\33xl\:rounded-b-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.\33xl\:rounded-l-3xl{border-bottom-left-radius:1.5rem!important;border-top-left-radius:1.5rem!important}.\33xl\:rounded-t-full{border-top-left-radius:9999px!important;border-top-right-radius:9999px!important}.\33xl\:rounded-r-full{border-bottom-right-radius:9999px!important;border-top-right-radius:9999px!important}.\33xl\:rounded-b-full{border-bottom-left-radius:9999px!important;border-bottom-right-radius:9999px!important}.\33xl\:rounded-l-full{border-bottom-left-radius:9999px!important;border-top-left-radius:9999px!important}.\33xl\:rounded-tl-none{border-top-left-radius:0!important}.\33xl\:rounded-tr-none{border-top-right-radius:0!important}.\33xl\:rounded-br-none{border-bottom-right-radius:0!important}.\33xl\:rounded-bl-none{border-bottom-left-radius:0!important}.\33xl\:rounded-tl-sm{border-top-left-radius:.125rem!important}.\33xl\:rounded-tr-sm{border-top-right-radius:.125rem!important}.\33xl\:rounded-br-sm{border-bottom-right-radius:.125rem!important}.\33xl\:rounded-bl-sm{border-bottom-left-radius:.125rem!important}.\33xl\:rounded-tl{border-top-left-radius:.25rem!important}.\33xl\:rounded-tr{border-top-right-radius:.25rem!important}.\33xl\:rounded-br{border-bottom-right-radius:.25rem!important}.\33xl\:rounded-bl{border-bottom-left-radius:.25rem!important}.\33xl\:rounded-tl-md{border-top-left-radius:.375rem!important}.\33xl\:rounded-tr-md{border-top-right-radius:.375rem!important}.\33xl\:rounded-br-md{border-bottom-right-radius:.375rem!important}.\33xl\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.\33xl\:rounded-tl-lg{border-top-left-radius:.5rem!important}.\33xl\:rounded-tr-lg{border-top-right-radius:.5rem!important}.\33xl\:rounded-br-lg{border-bottom-right-radius:.5rem!important}.\33xl\:rounded-bl-lg{border-bottom-left-radius:.5rem!important}.\33xl\:rounded-tl-xl{border-top-left-radius:.75rem!important}.\33xl\:rounded-tr-xl{border-top-right-radius:.75rem!important}.\33xl\:rounded-br-xl{border-bottom-right-radius:.75rem!important}.\33xl\:rounded-bl-xl{border-bottom-left-radius:.75rem!important}.\33xl\:rounded-tl-2xl{border-top-left-radius:1rem!important}.\33xl\:rounded-tr-2xl{border-top-right-radius:1rem!important}.\33xl\:rounded-br-2xl{border-bottom-right-radius:1rem!important}.\33xl\:rounded-bl-2xl{border-bottom-left-radius:1rem!important}.\33xl\:rounded-tl-3xl{border-top-left-radius:1.5rem!important}.\33xl\:rounded-tr-3xl{border-top-right-radius:1.5rem!important}.\33xl\:rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.\33xl\:rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.\33xl\:rounded-tl-full{border-top-left-radius:9999px!important}.\33xl\:rounded-tr-full{border-top-right-radius:9999px!important}.\33xl\:rounded-br-full{border-bottom-right-radius:9999px!important}.\33xl\:rounded-bl-full{border-bottom-left-radius:9999px!important}.\33xl\:border-solid{border-style:solid!important}.\33xl\:border-dashed{border-style:dashed!important}.\33xl\:border-dotted{border-style:dotted!important}.\33xl\:border-double{border-style:double!important}.\33xl\:border-none{border-style:none!important}.\33xl\:border-0{border-width:0!important}.\33xl\:border-2{border-width:2px!important}.\33xl\:border-4{border-width:4px!important}.\33xl\:border-8{border-width:8px!important}.\33xl\:border{border-width:1px!important}.\33xl\:border-t-0{border-top-width:0!important}.\33xl\:border-r-0{border-right-width:0!important}.\33xl\:border-b-0{border-bottom-width:0!important}.\33xl\:border-l-0{border-left-width:0!important}.\33xl\:border-t-2{border-top-width:2px!important}.\33xl\:border-r-2{border-right-width:2px!important}.\33xl\:border-b-2{border-bottom-width:2px!important}.\33xl\:border-l-2{border-left-width:2px!important}.\33xl\:border-t-4{border-top-width:4px!important}.\33xl\:border-r-4{border-right-width:4px!important}.\33xl\:border-b-4{border-bottom-width:4px!important}.\33xl\:border-l-4{border-left-width:4px!important}.\33xl\:border-t-8{border-top-width:8px!important}.\33xl\:border-r-8{border-right-width:8px!important}.\33xl\:border-b-8{border-bottom-width:8px!important}.\33xl\:border-l-8{border-left-width:8px!important}.\33xl\:border-t{border-top-width:1px!important}.\33xl\:border-r{border-right-width:1px!important}.\33xl\:border-b{border-bottom-width:1px!important}.\33xl\:border-l{border-left-width:1px!important}.\33xl\:box-border{box-sizing:border-box!important}.\33xl\:box-content{box-sizing:content-box!important}.\33xl\:cursor-auto{cursor:auto!important}.\33xl\:cursor-default{cursor:default!important}.\33xl\:cursor-pointer{cursor:pointer!important}.\33xl\:cursor-wait{cursor:wait!important}.\33xl\:cursor-text{cursor:text!important}.\33xl\:cursor-move{cursor:move!important}.\33xl\:cursor-not-allowed{cursor:not-allowed!important}.\33xl\:block{display:block!important}.\33xl\:inline-block{display:inline-block!important}.\33xl\:inline{display:inline!important}.\33xl\:flex{display:flex!important}.\33xl\:inline-flex{display:inline-flex!important}.\33xl\:table{display:table!important}.\33xl\:table-caption{display:table-caption!important}.\33xl\:table-cell{display:table-cell!important}.\33xl\:table-column{display:table-column!important}.\33xl\:table-column-group{display:table-column-group!important}.\33xl\:table-footer-group{display:table-footer-group!important}.\33xl\:table-header-group{display:table-header-group!important}.\33xl\:table-row-group{display:table-row-group!important}.\33xl\:table-row{display:table-row!important}.\33xl\:flow-root{display:flow-root!important}.\33xl\:grid{display:grid!important}.\33xl\:inline-grid{display:inline-grid!important}.\33xl\:contents{display:contents!important}.\33xl\:hidden{display:none!important}.\33xl\:flex-row{flex-direction:row!important}.\33xl\:flex-row-reverse{flex-direction:row-reverse!important}.\33xl\:flex-col{flex-direction:column!important}.\33xl\:flex-col-reverse{flex-direction:column-reverse!important}.\33xl\:flex-wrap{flex-wrap:wrap!important}.\33xl\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.\33xl\:flex-no-wrap{flex-wrap:nowrap!important}.\33xl\:place-items-auto{place-items:auto!important}.\33xl\:place-items-start{place-items:start!important}.\33xl\:place-items-end{place-items:end!important}.\33xl\:place-items-center{place-items:center!important}.\33xl\:place-items-stretch{place-items:stretch!important}.\33xl\:place-content-center{place-content:center!important}.\33xl\:place-content-start{place-content:start!important}.\33xl\:place-content-end{place-content:end!important}.\33xl\:place-content-between{place-content:space-between!important}.\33xl\:place-content-around{place-content:space-around!important}.\33xl\:place-content-evenly{place-content:space-evenly!important}.\33xl\:place-content-stretch{place-content:stretch!important}.\33xl\:place-self-auto{place-self:auto!important}.\33xl\:place-self-start{place-self:start!important}.\33xl\:place-self-end{place-self:end!important}.\33xl\:place-self-center{place-self:center!important}.\33xl\:place-self-stretch{place-self:stretch!important}.\33xl\:items-start{align-items:flex-start!important}.\33xl\:items-end{align-items:flex-end!important}.\33xl\:items-center{align-items:center!important}.\33xl\:items-baseline{align-items:baseline!important}.\33xl\:items-stretch{align-items:stretch!important}.\33xl\:content-center{align-content:center!important}.\33xl\:content-start{align-content:flex-start!important}.\33xl\:content-end{align-content:flex-end!important}.\33xl\:content-between{align-content:space-between!important}.\33xl\:content-around{align-content:space-around!important}.\33xl\:content-evenly{align-content:space-evenly!important}.\33xl\:self-auto{align-self:auto!important}.\33xl\:self-start{align-self:flex-start!important}.\33xl\:self-end{align-self:flex-end!important}.\33xl\:self-center{align-self:center!important}.\33xl\:self-stretch{align-self:stretch!important}.\33xl\:justify-items-auto{justify-items:auto!important}.\33xl\:justify-items-start{justify-items:start!important}.\33xl\:justify-items-end{justify-items:end!important}.\33xl\:justify-items-center{justify-items:center!important}.\33xl\:justify-items-stretch{justify-items:stretch!important}.\33xl\:justify-start{justify-content:flex-start!important}.\33xl\:justify-end{justify-content:flex-end!important}.\33xl\:justify-center{justify-content:center!important}.\33xl\:justify-between{justify-content:space-between!important}.\33xl\:justify-around{justify-content:space-around!important}.\33xl\:justify-evenly{justify-content:space-evenly!important}.\33xl\:justify-self-auto{justify-self:auto!important}.\33xl\:justify-self-start{justify-self:start!important}.\33xl\:justify-self-end{justify-self:end!important}.\33xl\:justify-self-center{justify-self:center!important}.\33xl\:justify-self-stretch{justify-self:stretch!important}.\33xl\:flex-1{flex:1 1 0%!important}.\33xl\:flex-auto{flex:1 1 auto!important}.\33xl\:flex-initial{flex:0 1 auto!important}.\33xl\:flex-none{flex:none!important}.\33xl\:flex-grow-0{flex-grow:0!important}.\33xl\:flex-grow{flex-grow:1!important}.\33xl\:flex-shrink-0{flex-shrink:0!important}.\33xl\:flex-shrink{flex-shrink:1!important}.\33xl\:order-1{order:1!important}.\33xl\:order-2{order:2!important}.\33xl\:order-3{order:3!important}.\33xl\:order-4{order:4!important}.\33xl\:order-5{order:5!important}.\33xl\:order-6{order:6!important}.\33xl\:order-7{order:7!important}.\33xl\:order-8{order:8!important}.\33xl\:order-9{order:9!important}.\33xl\:order-10{order:10!important}.\33xl\:order-11{order:11!important}.\33xl\:order-12{order:12!important}.\33xl\:order-first{order:-9999!important}.\33xl\:order-last{order:9999!important}.\33xl\:order-none{order:0!important}.\33xl\:float-right{float:right!important}.\33xl\:float-left{float:left!important}.\33xl\:float-none{float:none!important}.\33xl\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .\33xl\:ltr\:float-right{float:right!important}[dir=ltr] .\33xl\:ltr\:float-left{float:left!important}[dir=ltr] .\33xl\:ltr\:float-none{float:none!important}[dir=ltr] .\33xl\:ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .\33xl\:rtl\:float-right{float:right!important}[dir=rtl] .\33xl\:rtl\:float-left{float:left!important}[dir=rtl] .\33xl\:rtl\:float-none{float:none!important}[dir=rtl] .\33xl\:rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.\33xl\:clear-left{clear:left!important}.\33xl\:clear-right{clear:right!important}.\33xl\:clear-both{clear:both!important}.\33xl\:clear-none{clear:none!important}.\33xl\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.\33xl\:font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.\33xl\:font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.\33xl\:font-hairline{font-weight:100!important}.\33xl\:font-thin{font-weight:200!important}.\33xl\:font-light{font-weight:300!important}.\33xl\:font-normal{font-weight:400!important}.\33xl\:font-medium{font-weight:500!important}.\33xl\:font-semibold{font-weight:600!important}.\33xl\:font-bold{font-weight:700!important}.\33xl\:font-extrabold{font-weight:800!important}.\33xl\:font-black{font-weight:900!important}.\33xl\:hover\:font-hairline:hover{font-weight:100!important}.\33xl\:hover\:font-thin:hover{font-weight:200!important}.\33xl\:hover\:font-light:hover{font-weight:300!important}.\33xl\:hover\:font-normal:hover{font-weight:400!important}.\33xl\:hover\:font-medium:hover{font-weight:500!important}.\33xl\:hover\:font-semibold:hover{font-weight:600!important}.\33xl\:hover\:font-bold:hover{font-weight:700!important}.\33xl\:hover\:font-extrabold:hover{font-weight:800!important}.\33xl\:hover\:font-black:hover{font-weight:900!important}.\33xl\:focus\:font-hairline:focus{font-weight:100!important}.\33xl\:focus\:font-thin:focus{font-weight:200!important}.\33xl\:focus\:font-light:focus{font-weight:300!important}.\33xl\:focus\:font-normal:focus{font-weight:400!important}.\33xl\:focus\:font-medium:focus{font-weight:500!important}.\33xl\:focus\:font-semibold:focus{font-weight:600!important}.\33xl\:focus\:font-bold:focus{font-weight:700!important}.\33xl\:focus\:font-extrabold:focus{font-weight:800!important}.\33xl\:focus\:font-black:focus{font-weight:900!important}.\33xl\:h-0{height:0!important}.\33xl\:h-1{height:.25rem!important}.\33xl\:h-2{height:.5rem!important}.\33xl\:h-3{height:.75rem!important}.\33xl\:h-4{height:1rem!important}.\33xl\:h-5{height:1.25rem!important}.\33xl\:h-6{height:1.5rem!important}.\33xl\:h-7{height:1.75rem!important}.\33xl\:h-8{height:2rem!important}.\33xl\:h-9{height:2.25rem!important}.\33xl\:h-10{height:2.5rem!important}.\33xl\:h-11{height:2.75rem!important}.\33xl\:h-12{height:3rem!important}.\33xl\:h-13{height:3.25rem!important}.\33xl\:h-14{height:3.5rem!important}.\33xl\:h-15{height:3.75rem!important}.\33xl\:h-16{height:4rem!important}.\33xl\:h-20{height:5rem!important}.\33xl\:h-24{height:6rem!important}.\33xl\:h-28{height:7rem!important}.\33xl\:h-32{height:8rem!important}.\33xl\:h-36{height:9rem!important}.\33xl\:h-40{height:10rem!important}.\33xl\:h-48{height:12rem!important}.\33xl\:h-56{height:14rem!important}.\33xl\:h-60{height:15rem!important}.\33xl\:h-64{height:16rem!important}.\33xl\:h-72{height:18rem!important}.\33xl\:h-80{height:20rem!important}.\33xl\:h-96{height:24rem!important}.\33xl\:h-auto{height:auto!important}.\33xl\:h-px{height:1px!important}.\33xl\:h-0\.5{height:.125rem!important}.\33xl\:h-1\.5{height:.375rem!important}.\33xl\:h-2\.5{height:.625rem!important}.\33xl\:h-3\.5{height:.875rem!important}.\33xl\:h-1\/2{height:50%!important}.\33xl\:h-1\/3{height:33.333333%!important}.\33xl\:h-2\/3{height:66.666667%!important}.\33xl\:h-1\/4{height:25%!important}.\33xl\:h-2\/4{height:50%!important}.\33xl\:h-3\/4{height:75%!important}.\33xl\:h-1\/5{height:20%!important}.\33xl\:h-2\/5{height:40%!important}.\33xl\:h-3\/5{height:60%!important}.\33xl\:h-4\/5{height:80%!important}.\33xl\:h-1\/6{height:16.666667%!important}.\33xl\:h-2\/6{height:33.333333%!important}.\33xl\:h-3\/6{height:50%!important}.\33xl\:h-4\/6{height:66.666667%!important}.\33xl\:h-5\/6{height:83.333333%!important}.\33xl\:h-1\/12{height:8.333333%!important}.\33xl\:h-2\/12{height:16.666667%!important}.\33xl\:h-3\/12{height:25%!important}.\33xl\:h-4\/12{height:33.333333%!important}.\33xl\:h-5\/12{height:41.666667%!important}.\33xl\:h-6\/12{height:50%!important}.\33xl\:h-7\/12{height:58.333333%!important}.\33xl\:h-8\/12{height:66.666667%!important}.\33xl\:h-9\/12{height:75%!important}.\33xl\:h-10\/12{height:83.333333%!important}.\33xl\:h-11\/12{height:91.666667%!important}.\33xl\:h-full{height:100%!important}.\33xl\:h-screen{height:100vh!important}.\33xl\:text-xs{font-size:.7rem!important}.\33xl\:text-sm{font-size:.875rem!important}.\33xl\:text-base{font-size:1rem!important}.\33xl\:text-lg{font-size:1.125rem!important}.\33xl\:text-xl{font-size:1.25rem!important}.\33xl\:text-2xl{font-size:1.5rem!important}.\33xl\:text-3xl{font-size:1.875rem!important}.\33xl\:text-4xl{font-size:2.25rem!important}.\33xl\:text-5xl{font-size:3rem!important}.\33xl\:text-6xl{font-size:4rem!important}.\33xl\:leading-3{line-height:.75rem!important}.\33xl\:leading-4{line-height:1rem!important}.\33xl\:leading-5{line-height:1.25rem!important}.\33xl\:leading-6{line-height:1.5rem!important}.\33xl\:leading-7{line-height:1.75rem!important}.\33xl\:leading-8{line-height:2rem!important}.\33xl\:leading-9{line-height:2.25rem!important}.\33xl\:leading-10{line-height:2.5rem!important}.\33xl\:leading-none{line-height:1!important}.\33xl\:leading-tight{line-height:1.25!important}.\33xl\:leading-snug{line-height:1.375!important}.\33xl\:leading-normal{line-height:1.5!important}.\33xl\:leading-relaxed{line-height:1.625!important}.\33xl\:leading-loose{line-height:2!important}.\33xl\:list-inside{list-style-position:inside!important}.\33xl\:list-outside{list-style-position:outside!important}.\33xl\:list-none{list-style-type:none!important}.\33xl\:list-disc{list-style-type:disc!important}.\33xl\:list-decimal{list-style-type:decimal!important}.\33xl\:m-0{margin:0!important}.\33xl\:m-1{margin:.25rem!important}.\33xl\:m-2{margin:.5rem!important}.\33xl\:m-3{margin:.75rem!important}.\33xl\:m-4{margin:1rem!important}.\33xl\:m-5{margin:1.25rem!important}.\33xl\:m-6{margin:1.5rem!important}.\33xl\:m-7{margin:1.75rem!important}.\33xl\:m-8{margin:2rem!important}.\33xl\:m-9{margin:2.25rem!important}.\33xl\:m-10{margin:2.5rem!important}.\33xl\:m-11{margin:2.75rem!important}.\33xl\:m-12{margin:3rem!important}.\33xl\:m-13{margin:3.25rem!important}.\33xl\:m-14{margin:3.5rem!important}.\33xl\:m-15{margin:3.75rem!important}.\33xl\:m-16{margin:4rem!important}.\33xl\:m-20{margin:5rem!important}.\33xl\:m-24{margin:6rem!important}.\33xl\:m-28{margin:7rem!important}.\33xl\:m-32{margin:8rem!important}.\33xl\:m-36{margin:9rem!important}.\33xl\:m-40{margin:10rem!important}.\33xl\:m-48{margin:12rem!important}.\33xl\:m-56{margin:14rem!important}.\33xl\:m-60{margin:15rem!important}.\33xl\:m-64{margin:16rem!important}.\33xl\:m-72{margin:18rem!important}.\33xl\:m-80{margin:20rem!important}.\33xl\:m-96{margin:24rem!important}.\33xl\:m-auto{margin:auto!important}.\33xl\:m-px{margin:1px!important}.\33xl\:m-0\.5{margin:.125rem!important}.\33xl\:m-1\.5{margin:.375rem!important}.\33xl\:m-2\.5{margin:.625rem!important}.\33xl\:m-3\.5{margin:.875rem!important}.\33xl\:m-1\/2{margin:50%!important}.\33xl\:m-1\/3{margin:33.333333%!important}.\33xl\:m-2\/3{margin:66.666667%!important}.\33xl\:m-1\/4{margin:25%!important}.\33xl\:m-2\/4{margin:50%!important}.\33xl\:m-3\/4{margin:75%!important}.\33xl\:m-1\/5{margin:20%!important}.\33xl\:m-2\/5{margin:40%!important}.\33xl\:m-3\/5{margin:60%!important}.\33xl\:m-4\/5{margin:80%!important}.\33xl\:m-1\/6{margin:16.666667%!important}.\33xl\:m-2\/6{margin:33.333333%!important}.\33xl\:m-3\/6{margin:50%!important}.\33xl\:m-4\/6{margin:66.666667%!important}.\33xl\:m-5\/6{margin:83.333333%!important}.\33xl\:m-1\/12{margin:8.333333%!important}.\33xl\:m-2\/12{margin:16.666667%!important}.\33xl\:m-3\/12{margin:25%!important}.\33xl\:m-4\/12{margin:33.333333%!important}.\33xl\:m-5\/12{margin:41.666667%!important}.\33xl\:m-6\/12{margin:50%!important}.\33xl\:m-7\/12{margin:58.333333%!important}.\33xl\:m-8\/12{margin:66.666667%!important}.\33xl\:m-9\/12{margin:75%!important}.\33xl\:m-10\/12{margin:83.333333%!important}.\33xl\:m-11\/12{margin:91.666667%!important}.\33xl\:m-full{margin:100%!important}.\33xl\:-m-1{margin:-.25rem!important}.\33xl\:-m-2{margin:-.5rem!important}.\33xl\:-m-3{margin:-.75rem!important}.\33xl\:-m-4{margin:-1rem!important}.\33xl\:-m-5{margin:-1.25rem!important}.\33xl\:-m-6{margin:-1.5rem!important}.\33xl\:-m-7{margin:-1.75rem!important}.\33xl\:-m-8{margin:-2rem!important}.\33xl\:-m-9{margin:-2.25rem!important}.\33xl\:-m-10{margin:-2.5rem!important}.\33xl\:-m-11{margin:-2.75rem!important}.\33xl\:-m-12{margin:-3rem!important}.\33xl\:-m-13{margin:-3.25rem!important}.\33xl\:-m-14{margin:-3.5rem!important}.\33xl\:-m-15{margin:-3.75rem!important}.\33xl\:-m-16{margin:-4rem!important}.\33xl\:-m-20{margin:-5rem!important}.\33xl\:-m-24{margin:-6rem!important}.\33xl\:-m-28{margin:-7rem!important}.\33xl\:-m-32{margin:-8rem!important}.\33xl\:-m-36{margin:-9rem!important}.\33xl\:-m-40{margin:-10rem!important}.\33xl\:-m-48{margin:-12rem!important}.\33xl\:-m-56{margin:-14rem!important}.\33xl\:-m-60{margin:-15rem!important}.\33xl\:-m-64{margin:-16rem!important}.\33xl\:-m-72{margin:-18rem!important}.\33xl\:-m-80{margin:-20rem!important}.\33xl\:-m-96{margin:-24rem!important}.\33xl\:-m-px{margin:-1px!important}.\33xl\:-m-0\.5{margin:-.125rem!important}.\33xl\:-m-1\.5{margin:-.375rem!important}.\33xl\:-m-2\.5{margin:-.625rem!important}.\33xl\:-m-3\.5{margin:-.875rem!important}.\33xl\:-m-1\/2{margin:-50%!important}.\33xl\:-m-1\/3{margin:-33.33333%!important}.\33xl\:-m-2\/3{margin:-66.66667%!important}.\33xl\:-m-1\/4{margin:-25%!important}.\33xl\:-m-2\/4{margin:-50%!important}.\33xl\:-m-3\/4{margin:-75%!important}.\33xl\:-m-1\/5{margin:-20%!important}.\33xl\:-m-2\/5{margin:-40%!important}.\33xl\:-m-3\/5{margin:-60%!important}.\33xl\:-m-4\/5{margin:-80%!important}.\33xl\:-m-1\/6{margin:-16.66667%!important}.\33xl\:-m-2\/6{margin:-33.33333%!important}.\33xl\:-m-3\/6{margin:-50%!important}.\33xl\:-m-4\/6{margin:-66.66667%!important}.\33xl\:-m-5\/6{margin:-83.33333%!important}.\33xl\:-m-1\/12{margin:-8.33333%!important}.\33xl\:-m-2\/12{margin:-16.66667%!important}.\33xl\:-m-3\/12{margin:-25%!important}.\33xl\:-m-4\/12{margin:-33.33333%!important}.\33xl\:-m-5\/12{margin:-41.66667%!important}.\33xl\:-m-6\/12{margin:-50%!important}.\33xl\:-m-7\/12{margin:-58.33333%!important}.\33xl\:-m-8\/12{margin:-66.66667%!important}.\33xl\:-m-9\/12{margin:-75%!important}.\33xl\:-m-10\/12{margin:-83.33333%!important}.\33xl\:-m-11\/12{margin:-91.66667%!important}.\33xl\:-m-full{margin:-100%!important}.\33xl\:my-0{margin-bottom:0!important;margin-top:0!important}.\33xl\:mx-0{margin-left:0!important;margin-right:0!important}.\33xl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.\33xl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.\33xl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.\33xl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.\33xl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.\33xl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.\33xl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}.\33xl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}.\33xl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.\33xl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.\33xl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.\33xl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.\33xl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.\33xl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.\33xl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}.\33xl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}.\33xl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.\33xl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.\33xl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.\33xl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.\33xl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.\33xl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.\33xl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}.\33xl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}.\33xl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.\33xl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.\33xl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.\33xl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.\33xl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.\33xl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.\33xl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}.\33xl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.\33xl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}.\33xl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}.\33xl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}.\33xl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}.\33xl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}.\33xl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}.\33xl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}.\33xl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}.\33xl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}.\33xl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}.\33xl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}.\33xl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}.\33xl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}.\33xl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}.\33xl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}.\33xl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}.\33xl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}.\33xl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}.\33xl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}.\33xl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}.\33xl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}.\33xl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}.\33xl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}.\33xl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}.\33xl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}.\33xl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}.\33xl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}.\33xl\:mx-auto{margin-left:auto!important;margin-right:auto!important}.\33xl\:my-px{margin-bottom:1px!important;margin-top:1px!important}.\33xl\:mx-px{margin-left:1px!important;margin-right:1px!important}.\33xl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.\33xl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.\33xl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.\33xl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.\33xl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.\33xl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.\33xl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.\33xl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.\33xl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.\33xl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}.\33xl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\33xl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.\33xl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\33xl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.\33xl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.\33xl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}.\33xl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.\33xl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}.\33xl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.\33xl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}.\33xl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.\33xl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}.\33xl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.\33xl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}.\33xl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.\33xl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}.\33xl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.\33xl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}.\33xl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.\33xl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.\33xl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\33xl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.\33xl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.\33xl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}.\33xl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\33xl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.\33xl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.\33xl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.\33xl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.\33xl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.\33xl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.\33xl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.\33xl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.\33xl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}.\33xl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\33xl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.\33xl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.\33xl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.\33xl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.\33xl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}.\33xl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.\33xl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.\33xl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\33xl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.\33xl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.\33xl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}.\33xl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.\33xl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.\33xl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.\33xl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.\33xl\:my-full{margin-bottom:100%!important;margin-top:100%!important}.\33xl\:mx-full{margin-left:100%!important;margin-right:100%!important}.\33xl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.\33xl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.\33xl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.\33xl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.\33xl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.\33xl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.\33xl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.\33xl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.\33xl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.\33xl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.\33xl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.\33xl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.\33xl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.\33xl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.\33xl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.\33xl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.\33xl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.\33xl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.\33xl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.\33xl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.\33xl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.\33xl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.\33xl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.\33xl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.\33xl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.\33xl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.\33xl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.\33xl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.\33xl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.\33xl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.\33xl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.\33xl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.\33xl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.\33xl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.\33xl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.\33xl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.\33xl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.\33xl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.\33xl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.\33xl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.\33xl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.\33xl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.\33xl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.\33xl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.\33xl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.\33xl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.\33xl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.\33xl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.\33xl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.\33xl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.\33xl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.\33xl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.\33xl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.\33xl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.\33xl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.\33xl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.\33xl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.\33xl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.\33xl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.\33xl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}.\33xl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.\33xl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.\33xl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.\33xl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.\33xl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.\33xl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.\33xl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.\33xl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.\33xl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.\33xl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.\33xl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\33xl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\33xl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\33xl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\33xl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.\33xl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.\33xl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.\33xl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.\33xl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.\33xl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.\33xl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.\33xl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.\33xl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.\33xl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.\33xl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.\33xl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.\33xl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.\33xl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.\33xl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.\33xl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.\33xl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\33xl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\33xl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.\33xl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.\33xl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\33xl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\33xl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.\33xl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.\33xl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.\33xl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.\33xl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.\33xl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.\33xl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.\33xl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.\33xl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\33xl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\33xl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.\33xl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.\33xl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.\33xl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.\33xl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.\33xl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.\33xl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\33xl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\33xl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.\33xl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.\33xl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.\33xl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.\33xl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.\33xl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.\33xl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.\33xl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}.\33xl\:mt-0{margin-top:0!important}.\33xl\:mr-0{margin-right:0!important}.\33xl\:mb-0{margin-bottom:0!important}.\33xl\:ml-0{margin-left:0!important}.\33xl\:mt-1{margin-top:.25rem!important}.\33xl\:mr-1{margin-right:.25rem!important}.\33xl\:mb-1{margin-bottom:.25rem!important}.\33xl\:ml-1{margin-left:.25rem!important}.\33xl\:mt-2{margin-top:.5rem!important}.\33xl\:mr-2{margin-right:.5rem!important}.\33xl\:mb-2{margin-bottom:.5rem!important}.\33xl\:ml-2{margin-left:.5rem!important}.\33xl\:mt-3{margin-top:.75rem!important}.\33xl\:mr-3{margin-right:.75rem!important}.\33xl\:mb-3{margin-bottom:.75rem!important}.\33xl\:ml-3{margin-left:.75rem!important}.\33xl\:mt-4{margin-top:1rem!important}.\33xl\:mr-4{margin-right:1rem!important}.\33xl\:mb-4{margin-bottom:1rem!important}.\33xl\:ml-4{margin-left:1rem!important}.\33xl\:mt-5{margin-top:1.25rem!important}.\33xl\:mr-5{margin-right:1.25rem!important}.\33xl\:mb-5{margin-bottom:1.25rem!important}.\33xl\:ml-5{margin-left:1.25rem!important}.\33xl\:mt-6{margin-top:1.5rem!important}.\33xl\:mr-6{margin-right:1.5rem!important}.\33xl\:mb-6{margin-bottom:1.5rem!important}.\33xl\:ml-6{margin-left:1.5rem!important}.\33xl\:mt-7{margin-top:1.75rem!important}.\33xl\:mr-7{margin-right:1.75rem!important}.\33xl\:mb-7{margin-bottom:1.75rem!important}.\33xl\:ml-7{margin-left:1.75rem!important}.\33xl\:mt-8{margin-top:2rem!important}.\33xl\:mr-8{margin-right:2rem!important}.\33xl\:mb-8{margin-bottom:2rem!important}.\33xl\:ml-8{margin-left:2rem!important}.\33xl\:mt-9{margin-top:2.25rem!important}.\33xl\:mr-9{margin-right:2.25rem!important}.\33xl\:mb-9{margin-bottom:2.25rem!important}.\33xl\:ml-9{margin-left:2.25rem!important}.\33xl\:mt-10{margin-top:2.5rem!important}.\33xl\:mr-10{margin-right:2.5rem!important}.\33xl\:mb-10{margin-bottom:2.5rem!important}.\33xl\:ml-10{margin-left:2.5rem!important}.\33xl\:mt-11{margin-top:2.75rem!important}.\33xl\:mr-11{margin-right:2.75rem!important}.\33xl\:mb-11{margin-bottom:2.75rem!important}.\33xl\:ml-11{margin-left:2.75rem!important}.\33xl\:mt-12{margin-top:3rem!important}.\33xl\:mr-12{margin-right:3rem!important}.\33xl\:mb-12{margin-bottom:3rem!important}.\33xl\:ml-12{margin-left:3rem!important}.\33xl\:mt-13{margin-top:3.25rem!important}.\33xl\:mr-13{margin-right:3.25rem!important}.\33xl\:mb-13{margin-bottom:3.25rem!important}.\33xl\:ml-13{margin-left:3.25rem!important}.\33xl\:mt-14{margin-top:3.5rem!important}.\33xl\:mr-14{margin-right:3.5rem!important}.\33xl\:mb-14{margin-bottom:3.5rem!important}.\33xl\:ml-14{margin-left:3.5rem!important}.\33xl\:mt-15{margin-top:3.75rem!important}.\33xl\:mr-15{margin-right:3.75rem!important}.\33xl\:mb-15{margin-bottom:3.75rem!important}.\33xl\:ml-15{margin-left:3.75rem!important}.\33xl\:mt-16{margin-top:4rem!important}.\33xl\:mr-16{margin-right:4rem!important}.\33xl\:mb-16{margin-bottom:4rem!important}.\33xl\:ml-16{margin-left:4rem!important}.\33xl\:mt-20{margin-top:5rem!important}.\33xl\:mr-20{margin-right:5rem!important}.\33xl\:mb-20{margin-bottom:5rem!important}.\33xl\:ml-20{margin-left:5rem!important}.\33xl\:mt-24{margin-top:6rem!important}.\33xl\:mr-24{margin-right:6rem!important}.\33xl\:mb-24{margin-bottom:6rem!important}.\33xl\:ml-24{margin-left:6rem!important}.\33xl\:mt-28{margin-top:7rem!important}.\33xl\:mr-28{margin-right:7rem!important}.\33xl\:mb-28{margin-bottom:7rem!important}.\33xl\:ml-28{margin-left:7rem!important}.\33xl\:mt-32{margin-top:8rem!important}.\33xl\:mr-32{margin-right:8rem!important}.\33xl\:mb-32{margin-bottom:8rem!important}.\33xl\:ml-32{margin-left:8rem!important}.\33xl\:mt-36{margin-top:9rem!important}.\33xl\:mr-36{margin-right:9rem!important}.\33xl\:mb-36{margin-bottom:9rem!important}.\33xl\:ml-36{margin-left:9rem!important}.\33xl\:mt-40{margin-top:10rem!important}.\33xl\:mr-40{margin-right:10rem!important}.\33xl\:mb-40{margin-bottom:10rem!important}.\33xl\:ml-40{margin-left:10rem!important}.\33xl\:mt-48{margin-top:12rem!important}.\33xl\:mr-48{margin-right:12rem!important}.\33xl\:mb-48{margin-bottom:12rem!important}.\33xl\:ml-48{margin-left:12rem!important}.\33xl\:mt-56{margin-top:14rem!important}.\33xl\:mr-56{margin-right:14rem!important}.\33xl\:mb-56{margin-bottom:14rem!important}.\33xl\:ml-56{margin-left:14rem!important}.\33xl\:mt-60{margin-top:15rem!important}.\33xl\:mr-60{margin-right:15rem!important}.\33xl\:mb-60{margin-bottom:15rem!important}.\33xl\:ml-60{margin-left:15rem!important}.\33xl\:mt-64{margin-top:16rem!important}.\33xl\:mr-64{margin-right:16rem!important}.\33xl\:mb-64{margin-bottom:16rem!important}.\33xl\:ml-64{margin-left:16rem!important}.\33xl\:mt-72{margin-top:18rem!important}.\33xl\:mr-72{margin-right:18rem!important}.\33xl\:mb-72{margin-bottom:18rem!important}.\33xl\:ml-72{margin-left:18rem!important}.\33xl\:mt-80{margin-top:20rem!important}.\33xl\:mr-80{margin-right:20rem!important}.\33xl\:mb-80{margin-bottom:20rem!important}.\33xl\:ml-80{margin-left:20rem!important}.\33xl\:mt-96{margin-top:24rem!important}.\33xl\:mr-96{margin-right:24rem!important}.\33xl\:mb-96{margin-bottom:24rem!important}.\33xl\:ml-96{margin-left:24rem!important}.\33xl\:mt-auto{margin-top:auto!important}.\33xl\:mr-auto{margin-right:auto!important}.\33xl\:mb-auto{margin-bottom:auto!important}.\33xl\:ml-auto{margin-left:auto!important}.\33xl\:mt-px{margin-top:1px!important}.\33xl\:mr-px{margin-right:1px!important}.\33xl\:mb-px{margin-bottom:1px!important}.\33xl\:ml-px{margin-left:1px!important}.\33xl\:mt-0\.5{margin-top:.125rem!important}.\33xl\:mr-0\.5{margin-right:.125rem!important}.\33xl\:mb-0\.5{margin-bottom:.125rem!important}.\33xl\:ml-0\.5{margin-left:.125rem!important}.\33xl\:mt-1\.5{margin-top:.375rem!important}.\33xl\:mr-1\.5{margin-right:.375rem!important}.\33xl\:mb-1\.5{margin-bottom:.375rem!important}.\33xl\:ml-1\.5{margin-left:.375rem!important}.\33xl\:mt-2\.5{margin-top:.625rem!important}.\33xl\:mr-2\.5{margin-right:.625rem!important}.\33xl\:mb-2\.5{margin-bottom:.625rem!important}.\33xl\:ml-2\.5{margin-left:.625rem!important}.\33xl\:mt-3\.5{margin-top:.875rem!important}.\33xl\:mr-3\.5{margin-right:.875rem!important}.\33xl\:mb-3\.5{margin-bottom:.875rem!important}.\33xl\:ml-3\.5{margin-left:.875rem!important}.\33xl\:mt-1\/2{margin-top:50%!important}.\33xl\:mr-1\/2{margin-right:50%!important}.\33xl\:mb-1\/2{margin-bottom:50%!important}.\33xl\:ml-1\/2{margin-left:50%!important}.\33xl\:mt-1\/3{margin-top:33.333333%!important}.\33xl\:mr-1\/3{margin-right:33.333333%!important}.\33xl\:mb-1\/3{margin-bottom:33.333333%!important}.\33xl\:ml-1\/3{margin-left:33.333333%!important}.\33xl\:mt-2\/3{margin-top:66.666667%!important}.\33xl\:mr-2\/3{margin-right:66.666667%!important}.\33xl\:mb-2\/3{margin-bottom:66.666667%!important}.\33xl\:ml-2\/3{margin-left:66.666667%!important}.\33xl\:mt-1\/4{margin-top:25%!important}.\33xl\:mr-1\/4{margin-right:25%!important}.\33xl\:mb-1\/4{margin-bottom:25%!important}.\33xl\:ml-1\/4{margin-left:25%!important}.\33xl\:mt-2\/4{margin-top:50%!important}.\33xl\:mr-2\/4{margin-right:50%!important}.\33xl\:mb-2\/4{margin-bottom:50%!important}.\33xl\:ml-2\/4{margin-left:50%!important}.\33xl\:mt-3\/4{margin-top:75%!important}.\33xl\:mr-3\/4{margin-right:75%!important}.\33xl\:mb-3\/4{margin-bottom:75%!important}.\33xl\:ml-3\/4{margin-left:75%!important}.\33xl\:mt-1\/5{margin-top:20%!important}.\33xl\:mr-1\/5{margin-right:20%!important}.\33xl\:mb-1\/5{margin-bottom:20%!important}.\33xl\:ml-1\/5{margin-left:20%!important}.\33xl\:mt-2\/5{margin-top:40%!important}.\33xl\:mr-2\/5{margin-right:40%!important}.\33xl\:mb-2\/5{margin-bottom:40%!important}.\33xl\:ml-2\/5{margin-left:40%!important}.\33xl\:mt-3\/5{margin-top:60%!important}.\33xl\:mr-3\/5{margin-right:60%!important}.\33xl\:mb-3\/5{margin-bottom:60%!important}.\33xl\:ml-3\/5{margin-left:60%!important}.\33xl\:mt-4\/5{margin-top:80%!important}.\33xl\:mr-4\/5{margin-right:80%!important}.\33xl\:mb-4\/5{margin-bottom:80%!important}.\33xl\:ml-4\/5{margin-left:80%!important}.\33xl\:mt-1\/6{margin-top:16.666667%!important}.\33xl\:mr-1\/6{margin-right:16.666667%!important}.\33xl\:mb-1\/6{margin-bottom:16.666667%!important}.\33xl\:ml-1\/6{margin-left:16.666667%!important}.\33xl\:mt-2\/6{margin-top:33.333333%!important}.\33xl\:mr-2\/6{margin-right:33.333333%!important}.\33xl\:mb-2\/6{margin-bottom:33.333333%!important}.\33xl\:ml-2\/6{margin-left:33.333333%!important}.\33xl\:mt-3\/6{margin-top:50%!important}.\33xl\:mr-3\/6{margin-right:50%!important}.\33xl\:mb-3\/6{margin-bottom:50%!important}.\33xl\:ml-3\/6{margin-left:50%!important}.\33xl\:mt-4\/6{margin-top:66.666667%!important}.\33xl\:mr-4\/6{margin-right:66.666667%!important}.\33xl\:mb-4\/6{margin-bottom:66.666667%!important}.\33xl\:ml-4\/6{margin-left:66.666667%!important}.\33xl\:mt-5\/6{margin-top:83.333333%!important}.\33xl\:mr-5\/6{margin-right:83.333333%!important}.\33xl\:mb-5\/6{margin-bottom:83.333333%!important}.\33xl\:ml-5\/6{margin-left:83.333333%!important}.\33xl\:mt-1\/12{margin-top:8.333333%!important}.\33xl\:mr-1\/12{margin-right:8.333333%!important}.\33xl\:mb-1\/12{margin-bottom:8.333333%!important}.\33xl\:ml-1\/12{margin-left:8.333333%!important}.\33xl\:mt-2\/12{margin-top:16.666667%!important}.\33xl\:mr-2\/12{margin-right:16.666667%!important}.\33xl\:mb-2\/12{margin-bottom:16.666667%!important}.\33xl\:ml-2\/12{margin-left:16.666667%!important}.\33xl\:mt-3\/12{margin-top:25%!important}.\33xl\:mr-3\/12{margin-right:25%!important}.\33xl\:mb-3\/12{margin-bottom:25%!important}.\33xl\:ml-3\/12{margin-left:25%!important}.\33xl\:mt-4\/12{margin-top:33.333333%!important}.\33xl\:mr-4\/12{margin-right:33.333333%!important}.\33xl\:mb-4\/12{margin-bottom:33.333333%!important}.\33xl\:ml-4\/12{margin-left:33.333333%!important}.\33xl\:mt-5\/12{margin-top:41.666667%!important}.\33xl\:mr-5\/12{margin-right:41.666667%!important}.\33xl\:mb-5\/12{margin-bottom:41.666667%!important}.\33xl\:ml-5\/12{margin-left:41.666667%!important}.\33xl\:mt-6\/12{margin-top:50%!important}.\33xl\:mr-6\/12{margin-right:50%!important}.\33xl\:mb-6\/12{margin-bottom:50%!important}.\33xl\:ml-6\/12{margin-left:50%!important}.\33xl\:mt-7\/12{margin-top:58.333333%!important}.\33xl\:mr-7\/12{margin-right:58.333333%!important}.\33xl\:mb-7\/12{margin-bottom:58.333333%!important}.\33xl\:ml-7\/12{margin-left:58.333333%!important}.\33xl\:mt-8\/12{margin-top:66.666667%!important}.\33xl\:mr-8\/12{margin-right:66.666667%!important}.\33xl\:mb-8\/12{margin-bottom:66.666667%!important}.\33xl\:ml-8\/12{margin-left:66.666667%!important}.\33xl\:mt-9\/12{margin-top:75%!important}.\33xl\:mr-9\/12{margin-right:75%!important}.\33xl\:mb-9\/12{margin-bottom:75%!important}.\33xl\:ml-9\/12{margin-left:75%!important}.\33xl\:mt-10\/12{margin-top:83.333333%!important}.\33xl\:mr-10\/12{margin-right:83.333333%!important}.\33xl\:mb-10\/12{margin-bottom:83.333333%!important}.\33xl\:ml-10\/12{margin-left:83.333333%!important}.\33xl\:mt-11\/12{margin-top:91.666667%!important}.\33xl\:mr-11\/12{margin-right:91.666667%!important}.\33xl\:mb-11\/12{margin-bottom:91.666667%!important}.\33xl\:ml-11\/12{margin-left:91.666667%!important}.\33xl\:mt-full{margin-top:100%!important}.\33xl\:mr-full{margin-right:100%!important}.\33xl\:mb-full{margin-bottom:100%!important}.\33xl\:ml-full{margin-left:100%!important}.\33xl\:-mt-1{margin-top:-.25rem!important}.\33xl\:-mr-1{margin-right:-.25rem!important}.\33xl\:-mb-1{margin-bottom:-.25rem!important}.\33xl\:-ml-1{margin-left:-.25rem!important}.\33xl\:-mt-2{margin-top:-.5rem!important}.\33xl\:-mr-2{margin-right:-.5rem!important}.\33xl\:-mb-2{margin-bottom:-.5rem!important}.\33xl\:-ml-2{margin-left:-.5rem!important}.\33xl\:-mt-3{margin-top:-.75rem!important}.\33xl\:-mr-3{margin-right:-.75rem!important}.\33xl\:-mb-3{margin-bottom:-.75rem!important}.\33xl\:-ml-3{margin-left:-.75rem!important}.\33xl\:-mt-4{margin-top:-1rem!important}.\33xl\:-mr-4{margin-right:-1rem!important}.\33xl\:-mb-4{margin-bottom:-1rem!important}.\33xl\:-ml-4{margin-left:-1rem!important}.\33xl\:-mt-5{margin-top:-1.25rem!important}.\33xl\:-mr-5{margin-right:-1.25rem!important}.\33xl\:-mb-5{margin-bottom:-1.25rem!important}.\33xl\:-ml-5{margin-left:-1.25rem!important}.\33xl\:-mt-6{margin-top:-1.5rem!important}.\33xl\:-mr-6{margin-right:-1.5rem!important}.\33xl\:-mb-6{margin-bottom:-1.5rem!important}.\33xl\:-ml-6{margin-left:-1.5rem!important}.\33xl\:-mt-7{margin-top:-1.75rem!important}.\33xl\:-mr-7{margin-right:-1.75rem!important}.\33xl\:-mb-7{margin-bottom:-1.75rem!important}.\33xl\:-ml-7{margin-left:-1.75rem!important}.\33xl\:-mt-8{margin-top:-2rem!important}.\33xl\:-mr-8{margin-right:-2rem!important}.\33xl\:-mb-8{margin-bottom:-2rem!important}.\33xl\:-ml-8{margin-left:-2rem!important}.\33xl\:-mt-9{margin-top:-2.25rem!important}.\33xl\:-mr-9{margin-right:-2.25rem!important}.\33xl\:-mb-9{margin-bottom:-2.25rem!important}.\33xl\:-ml-9{margin-left:-2.25rem!important}.\33xl\:-mt-10{margin-top:-2.5rem!important}.\33xl\:-mr-10{margin-right:-2.5rem!important}.\33xl\:-mb-10{margin-bottom:-2.5rem!important}.\33xl\:-ml-10{margin-left:-2.5rem!important}.\33xl\:-mt-11{margin-top:-2.75rem!important}.\33xl\:-mr-11{margin-right:-2.75rem!important}.\33xl\:-mb-11{margin-bottom:-2.75rem!important}.\33xl\:-ml-11{margin-left:-2.75rem!important}.\33xl\:-mt-12{margin-top:-3rem!important}.\33xl\:-mr-12{margin-right:-3rem!important}.\33xl\:-mb-12{margin-bottom:-3rem!important}.\33xl\:-ml-12{margin-left:-3rem!important}.\33xl\:-mt-13{margin-top:-3.25rem!important}.\33xl\:-mr-13{margin-right:-3.25rem!important}.\33xl\:-mb-13{margin-bottom:-3.25rem!important}.\33xl\:-ml-13{margin-left:-3.25rem!important}.\33xl\:-mt-14{margin-top:-3.5rem!important}.\33xl\:-mr-14{margin-right:-3.5rem!important}.\33xl\:-mb-14{margin-bottom:-3.5rem!important}.\33xl\:-ml-14{margin-left:-3.5rem!important}.\33xl\:-mt-15{margin-top:-3.75rem!important}.\33xl\:-mr-15{margin-right:-3.75rem!important}.\33xl\:-mb-15{margin-bottom:-3.75rem!important}.\33xl\:-ml-15{margin-left:-3.75rem!important}.\33xl\:-mt-16{margin-top:-4rem!important}.\33xl\:-mr-16{margin-right:-4rem!important}.\33xl\:-mb-16{margin-bottom:-4rem!important}.\33xl\:-ml-16{margin-left:-4rem!important}.\33xl\:-mt-20{margin-top:-5rem!important}.\33xl\:-mr-20{margin-right:-5rem!important}.\33xl\:-mb-20{margin-bottom:-5rem!important}.\33xl\:-ml-20{margin-left:-5rem!important}.\33xl\:-mt-24{margin-top:-6rem!important}.\33xl\:-mr-24{margin-right:-6rem!important}.\33xl\:-mb-24{margin-bottom:-6rem!important}.\33xl\:-ml-24{margin-left:-6rem!important}.\33xl\:-mt-28{margin-top:-7rem!important}.\33xl\:-mr-28{margin-right:-7rem!important}.\33xl\:-mb-28{margin-bottom:-7rem!important}.\33xl\:-ml-28{margin-left:-7rem!important}.\33xl\:-mt-32{margin-top:-8rem!important}.\33xl\:-mr-32{margin-right:-8rem!important}.\33xl\:-mb-32{margin-bottom:-8rem!important}.\33xl\:-ml-32{margin-left:-8rem!important}.\33xl\:-mt-36{margin-top:-9rem!important}.\33xl\:-mr-36{margin-right:-9rem!important}.\33xl\:-mb-36{margin-bottom:-9rem!important}.\33xl\:-ml-36{margin-left:-9rem!important}.\33xl\:-mt-40{margin-top:-10rem!important}.\33xl\:-mr-40{margin-right:-10rem!important}.\33xl\:-mb-40{margin-bottom:-10rem!important}.\33xl\:-ml-40{margin-left:-10rem!important}.\33xl\:-mt-48{margin-top:-12rem!important}.\33xl\:-mr-48{margin-right:-12rem!important}.\33xl\:-mb-48{margin-bottom:-12rem!important}.\33xl\:-ml-48{margin-left:-12rem!important}.\33xl\:-mt-56{margin-top:-14rem!important}.\33xl\:-mr-56{margin-right:-14rem!important}.\33xl\:-mb-56{margin-bottom:-14rem!important}.\33xl\:-ml-56{margin-left:-14rem!important}.\33xl\:-mt-60{margin-top:-15rem!important}.\33xl\:-mr-60{margin-right:-15rem!important}.\33xl\:-mb-60{margin-bottom:-15rem!important}.\33xl\:-ml-60{margin-left:-15rem!important}.\33xl\:-mt-64{margin-top:-16rem!important}.\33xl\:-mr-64{margin-right:-16rem!important}.\33xl\:-mb-64{margin-bottom:-16rem!important}.\33xl\:-ml-64{margin-left:-16rem!important}.\33xl\:-mt-72{margin-top:-18rem!important}.\33xl\:-mr-72{margin-right:-18rem!important}.\33xl\:-mb-72{margin-bottom:-18rem!important}.\33xl\:-ml-72{margin-left:-18rem!important}.\33xl\:-mt-80{margin-top:-20rem!important}.\33xl\:-mr-80{margin-right:-20rem!important}.\33xl\:-mb-80{margin-bottom:-20rem!important}.\33xl\:-ml-80{margin-left:-20rem!important}.\33xl\:-mt-96{margin-top:-24rem!important}.\33xl\:-mr-96{margin-right:-24rem!important}.\33xl\:-mb-96{margin-bottom:-24rem!important}.\33xl\:-ml-96{margin-left:-24rem!important}.\33xl\:-mt-px{margin-top:-1px!important}.\33xl\:-mr-px{margin-right:-1px!important}.\33xl\:-mb-px{margin-bottom:-1px!important}.\33xl\:-ml-px{margin-left:-1px!important}.\33xl\:-mt-0\.5{margin-top:-.125rem!important}.\33xl\:-mr-0\.5{margin-right:-.125rem!important}.\33xl\:-mb-0\.5{margin-bottom:-.125rem!important}.\33xl\:-ml-0\.5{margin-left:-.125rem!important}.\33xl\:-mt-1\.5{margin-top:-.375rem!important}.\33xl\:-mr-1\.5{margin-right:-.375rem!important}.\33xl\:-mb-1\.5{margin-bottom:-.375rem!important}.\33xl\:-ml-1\.5{margin-left:-.375rem!important}.\33xl\:-mt-2\.5{margin-top:-.625rem!important}.\33xl\:-mr-2\.5{margin-right:-.625rem!important}.\33xl\:-mb-2\.5{margin-bottom:-.625rem!important}.\33xl\:-ml-2\.5{margin-left:-.625rem!important}.\33xl\:-mt-3\.5{margin-top:-.875rem!important}.\33xl\:-mr-3\.5{margin-right:-.875rem!important}.\33xl\:-mb-3\.5{margin-bottom:-.875rem!important}.\33xl\:-ml-3\.5{margin-left:-.875rem!important}.\33xl\:-mt-1\/2{margin-top:-50%!important}.\33xl\:-mr-1\/2{margin-right:-50%!important}.\33xl\:-mb-1\/2{margin-bottom:-50%!important}.\33xl\:-ml-1\/2{margin-left:-50%!important}.\33xl\:-mt-1\/3{margin-top:-33.33333%!important}.\33xl\:-mr-1\/3{margin-right:-33.33333%!important}.\33xl\:-mb-1\/3{margin-bottom:-33.33333%!important}.\33xl\:-ml-1\/3{margin-left:-33.33333%!important}.\33xl\:-mt-2\/3{margin-top:-66.66667%!important}.\33xl\:-mr-2\/3{margin-right:-66.66667%!important}.\33xl\:-mb-2\/3{margin-bottom:-66.66667%!important}.\33xl\:-ml-2\/3{margin-left:-66.66667%!important}.\33xl\:-mt-1\/4{margin-top:-25%!important}.\33xl\:-mr-1\/4{margin-right:-25%!important}.\33xl\:-mb-1\/4{margin-bottom:-25%!important}.\33xl\:-ml-1\/4{margin-left:-25%!important}.\33xl\:-mt-2\/4{margin-top:-50%!important}.\33xl\:-mr-2\/4{margin-right:-50%!important}.\33xl\:-mb-2\/4{margin-bottom:-50%!important}.\33xl\:-ml-2\/4{margin-left:-50%!important}.\33xl\:-mt-3\/4{margin-top:-75%!important}.\33xl\:-mr-3\/4{margin-right:-75%!important}.\33xl\:-mb-3\/4{margin-bottom:-75%!important}.\33xl\:-ml-3\/4{margin-left:-75%!important}.\33xl\:-mt-1\/5{margin-top:-20%!important}.\33xl\:-mr-1\/5{margin-right:-20%!important}.\33xl\:-mb-1\/5{margin-bottom:-20%!important}.\33xl\:-ml-1\/5{margin-left:-20%!important}.\33xl\:-mt-2\/5{margin-top:-40%!important}.\33xl\:-mr-2\/5{margin-right:-40%!important}.\33xl\:-mb-2\/5{margin-bottom:-40%!important}.\33xl\:-ml-2\/5{margin-left:-40%!important}.\33xl\:-mt-3\/5{margin-top:-60%!important}.\33xl\:-mr-3\/5{margin-right:-60%!important}.\33xl\:-mb-3\/5{margin-bottom:-60%!important}.\33xl\:-ml-3\/5{margin-left:-60%!important}.\33xl\:-mt-4\/5{margin-top:-80%!important}.\33xl\:-mr-4\/5{margin-right:-80%!important}.\33xl\:-mb-4\/5{margin-bottom:-80%!important}.\33xl\:-ml-4\/5{margin-left:-80%!important}.\33xl\:-mt-1\/6{margin-top:-16.66667%!important}.\33xl\:-mr-1\/6{margin-right:-16.66667%!important}.\33xl\:-mb-1\/6{margin-bottom:-16.66667%!important}.\33xl\:-ml-1\/6{margin-left:-16.66667%!important}.\33xl\:-mt-2\/6{margin-top:-33.33333%!important}.\33xl\:-mr-2\/6{margin-right:-33.33333%!important}.\33xl\:-mb-2\/6{margin-bottom:-33.33333%!important}.\33xl\:-ml-2\/6{margin-left:-33.33333%!important}.\33xl\:-mt-3\/6{margin-top:-50%!important}.\33xl\:-mr-3\/6{margin-right:-50%!important}.\33xl\:-mb-3\/6{margin-bottom:-50%!important}.\33xl\:-ml-3\/6{margin-left:-50%!important}.\33xl\:-mt-4\/6{margin-top:-66.66667%!important}.\33xl\:-mr-4\/6{margin-right:-66.66667%!important}.\33xl\:-mb-4\/6{margin-bottom:-66.66667%!important}.\33xl\:-ml-4\/6{margin-left:-66.66667%!important}.\33xl\:-mt-5\/6{margin-top:-83.33333%!important}.\33xl\:-mr-5\/6{margin-right:-83.33333%!important}.\33xl\:-mb-5\/6{margin-bottom:-83.33333%!important}.\33xl\:-ml-5\/6{margin-left:-83.33333%!important}.\33xl\:-mt-1\/12{margin-top:-8.33333%!important}.\33xl\:-mr-1\/12{margin-right:-8.33333%!important}.\33xl\:-mb-1\/12{margin-bottom:-8.33333%!important}.\33xl\:-ml-1\/12{margin-left:-8.33333%!important}.\33xl\:-mt-2\/12{margin-top:-16.66667%!important}.\33xl\:-mr-2\/12{margin-right:-16.66667%!important}.\33xl\:-mb-2\/12{margin-bottom:-16.66667%!important}.\33xl\:-ml-2\/12{margin-left:-16.66667%!important}.\33xl\:-mt-3\/12{margin-top:-25%!important}.\33xl\:-mr-3\/12{margin-right:-25%!important}.\33xl\:-mb-3\/12{margin-bottom:-25%!important}.\33xl\:-ml-3\/12{margin-left:-25%!important}.\33xl\:-mt-4\/12{margin-top:-33.33333%!important}.\33xl\:-mr-4\/12{margin-right:-33.33333%!important}.\33xl\:-mb-4\/12{margin-bottom:-33.33333%!important}.\33xl\:-ml-4\/12{margin-left:-33.33333%!important}.\33xl\:-mt-5\/12{margin-top:-41.66667%!important}.\33xl\:-mr-5\/12{margin-right:-41.66667%!important}.\33xl\:-mb-5\/12{margin-bottom:-41.66667%!important}.\33xl\:-ml-5\/12{margin-left:-41.66667%!important}.\33xl\:-mt-6\/12{margin-top:-50%!important}.\33xl\:-mr-6\/12{margin-right:-50%!important}.\33xl\:-mb-6\/12{margin-bottom:-50%!important}.\33xl\:-ml-6\/12{margin-left:-50%!important}.\33xl\:-mt-7\/12{margin-top:-58.33333%!important}.\33xl\:-mr-7\/12{margin-right:-58.33333%!important}.\33xl\:-mb-7\/12{margin-bottom:-58.33333%!important}.\33xl\:-ml-7\/12{margin-left:-58.33333%!important}.\33xl\:-mt-8\/12{margin-top:-66.66667%!important}.\33xl\:-mr-8\/12{margin-right:-66.66667%!important}.\33xl\:-mb-8\/12{margin-bottom:-66.66667%!important}.\33xl\:-ml-8\/12{margin-left:-66.66667%!important}.\33xl\:-mt-9\/12{margin-top:-75%!important}.\33xl\:-mr-9\/12{margin-right:-75%!important}.\33xl\:-mb-9\/12{margin-bottom:-75%!important}.\33xl\:-ml-9\/12{margin-left:-75%!important}.\33xl\:-mt-10\/12{margin-top:-83.33333%!important}.\33xl\:-mr-10\/12{margin-right:-83.33333%!important}.\33xl\:-mb-10\/12{margin-bottom:-83.33333%!important}.\33xl\:-ml-10\/12{margin-left:-83.33333%!important}.\33xl\:-mt-11\/12{margin-top:-91.66667%!important}.\33xl\:-mr-11\/12{margin-right:-91.66667%!important}.\33xl\:-mb-11\/12{margin-bottom:-91.66667%!important}.\33xl\:-ml-11\/12{margin-left:-91.66667%!important}.\33xl\:-mt-full{margin-top:-100%!important}.\33xl\:-mr-full{margin-right:-100%!important}.\33xl\:-mb-full{margin-bottom:-100%!important}.\33xl\:-ml-full{margin-left:-100%!important}[dir=ltr] .\33xl\:ltr\:m-0{margin:0!important}[dir=ltr] .\33xl\:ltr\:m-1{margin:.25rem!important}[dir=ltr] .\33xl\:ltr\:m-2{margin:.5rem!important}[dir=ltr] .\33xl\:ltr\:m-3{margin:.75rem!important}[dir=ltr] .\33xl\:ltr\:m-4{margin:1rem!important}[dir=ltr] .\33xl\:ltr\:m-5{margin:1.25rem!important}[dir=ltr] .\33xl\:ltr\:m-6{margin:1.5rem!important}[dir=ltr] .\33xl\:ltr\:m-7{margin:1.75rem!important}[dir=ltr] .\33xl\:ltr\:m-8{margin:2rem!important}[dir=ltr] .\33xl\:ltr\:m-9{margin:2.25rem!important}[dir=ltr] .\33xl\:ltr\:m-10{margin:2.5rem!important}[dir=ltr] .\33xl\:ltr\:m-11{margin:2.75rem!important}[dir=ltr] .\33xl\:ltr\:m-12{margin:3rem!important}[dir=ltr] .\33xl\:ltr\:m-13{margin:3.25rem!important}[dir=ltr] .\33xl\:ltr\:m-14{margin:3.5rem!important}[dir=ltr] .\33xl\:ltr\:m-15{margin:3.75rem!important}[dir=ltr] .\33xl\:ltr\:m-16{margin:4rem!important}[dir=ltr] .\33xl\:ltr\:m-20{margin:5rem!important}[dir=ltr] .\33xl\:ltr\:m-24{margin:6rem!important}[dir=ltr] .\33xl\:ltr\:m-28{margin:7rem!important}[dir=ltr] .\33xl\:ltr\:m-32{margin:8rem!important}[dir=ltr] .\33xl\:ltr\:m-36{margin:9rem!important}[dir=ltr] .\33xl\:ltr\:m-40{margin:10rem!important}[dir=ltr] .\33xl\:ltr\:m-48{margin:12rem!important}[dir=ltr] .\33xl\:ltr\:m-56{margin:14rem!important}[dir=ltr] .\33xl\:ltr\:m-60{margin:15rem!important}[dir=ltr] .\33xl\:ltr\:m-64{margin:16rem!important}[dir=ltr] .\33xl\:ltr\:m-72{margin:18rem!important}[dir=ltr] .\33xl\:ltr\:m-80{margin:20rem!important}[dir=ltr] .\33xl\:ltr\:m-96{margin:24rem!important}[dir=ltr] .\33xl\:ltr\:m-auto{margin:auto!important}[dir=ltr] .\33xl\:ltr\:m-px{margin:1px!important}[dir=ltr] .\33xl\:ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .\33xl\:ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .\33xl\:ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .\33xl\:ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .\33xl\:ltr\:m-1\/2{margin:50%!important}[dir=ltr] .\33xl\:ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .\33xl\:ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .\33xl\:ltr\:m-1\/4{margin:25%!important}[dir=ltr] .\33xl\:ltr\:m-2\/4{margin:50%!important}[dir=ltr] .\33xl\:ltr\:m-3\/4{margin:75%!important}[dir=ltr] .\33xl\:ltr\:m-1\/5{margin:20%!important}[dir=ltr] .\33xl\:ltr\:m-2\/5{margin:40%!important}[dir=ltr] .\33xl\:ltr\:m-3\/5{margin:60%!important}[dir=ltr] .\33xl\:ltr\:m-4\/5{margin:80%!important}[dir=ltr] .\33xl\:ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .\33xl\:ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .\33xl\:ltr\:m-3\/6{margin:50%!important}[dir=ltr] .\33xl\:ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .\33xl\:ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .\33xl\:ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .\33xl\:ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .\33xl\:ltr\:m-3\/12{margin:25%!important}[dir=ltr] .\33xl\:ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .\33xl\:ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .\33xl\:ltr\:m-6\/12{margin:50%!important}[dir=ltr] .\33xl\:ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .\33xl\:ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .\33xl\:ltr\:m-9\/12{margin:75%!important}[dir=ltr] .\33xl\:ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .\33xl\:ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .\33xl\:ltr\:m-full{margin:100%!important}[dir=ltr] .\33xl\:ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .\33xl\:ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .\33xl\:ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .\33xl\:ltr\:-m-4{margin:-1rem!important}[dir=ltr] .\33xl\:ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .\33xl\:ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .\33xl\:ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .\33xl\:ltr\:-m-8{margin:-2rem!important}[dir=ltr] .\33xl\:ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .\33xl\:ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .\33xl\:ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .\33xl\:ltr\:-m-12{margin:-3rem!important}[dir=ltr] .\33xl\:ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .\33xl\:ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .\33xl\:ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .\33xl\:ltr\:-m-16{margin:-4rem!important}[dir=ltr] .\33xl\:ltr\:-m-20{margin:-5rem!important}[dir=ltr] .\33xl\:ltr\:-m-24{margin:-6rem!important}[dir=ltr] .\33xl\:ltr\:-m-28{margin:-7rem!important}[dir=ltr] .\33xl\:ltr\:-m-32{margin:-8rem!important}[dir=ltr] .\33xl\:ltr\:-m-36{margin:-9rem!important}[dir=ltr] .\33xl\:ltr\:-m-40{margin:-10rem!important}[dir=ltr] .\33xl\:ltr\:-m-48{margin:-12rem!important}[dir=ltr] .\33xl\:ltr\:-m-56{margin:-14rem!important}[dir=ltr] .\33xl\:ltr\:-m-60{margin:-15rem!important}[dir=ltr] .\33xl\:ltr\:-m-64{margin:-16rem!important}[dir=ltr] .\33xl\:ltr\:-m-72{margin:-18rem!important}[dir=ltr] .\33xl\:ltr\:-m-80{margin:-20rem!important}[dir=ltr] .\33xl\:ltr\:-m-96{margin:-24rem!important}[dir=ltr] .\33xl\:ltr\:-m-px{margin:-1px!important}[dir=ltr] .\33xl\:ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .\33xl\:ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .\33xl\:ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .\33xl\:ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .\33xl\:ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .\33xl\:ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .\33xl\:ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .\33xl\:ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .\33xl\:ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .\33xl\:ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .\33xl\:ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .\33xl\:ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .\33xl\:ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .\33xl\:ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .\33xl\:ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .\33xl\:ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .\33xl\:ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .\33xl\:ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .\33xl\:ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .\33xl\:ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .\33xl\:ltr\:-m-full{margin:-100%!important}[dir=ltr] .\33xl\:ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .\33xl\:ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .\33xl\:ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .\33xl\:ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .\33xl\:ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .\33xl\:ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .\33xl\:ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .\33xl\:ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .\33xl\:ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .\33xl\:ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .\33xl\:ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .\33xl\:ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .\33xl\:ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .\33xl\:ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .\33xl\:ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .\33xl\:ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .\33xl\:ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .\33xl\:ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .\33xl\:ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .\33xl\:ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .\33xl\:ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .\33xl\:ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .\33xl\:ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .\33xl\:ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .\33xl\:ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .\33xl\:ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .\33xl\:ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .\33xl\:ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .\33xl\:ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .\33xl\:ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .\33xl\:ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .\33xl\:ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .\33xl\:ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .\33xl\:ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .\33xl\:ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .\33xl\:ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .\33xl\:ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .\33xl\:ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .\33xl\:ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .\33xl\:ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .\33xl\:ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .\33xl\:ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .\33xl\:ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .\33xl\:ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .\33xl\:ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .\33xl\:ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .\33xl\:ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .\33xl\:ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .\33xl\:ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .\33xl\:ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .\33xl\:ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .\33xl\:ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .\33xl\:ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .\33xl\:ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .\33xl\:ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .\33xl\:ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .\33xl\:ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .\33xl\:ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .\33xl\:ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .\33xl\:ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .\33xl\:ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .\33xl\:ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .\33xl\:ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .\33xl\:ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .\33xl\:ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .\33xl\:ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .\33xl\:ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .\33xl\:ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .\33xl\:ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .\33xl\:ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .\33xl\:ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .\33xl\:ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .\33xl\:ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .\33xl\:ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .\33xl\:ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .\33xl\:ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .\33xl\:ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .\33xl\:ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .\33xl\:ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .\33xl\:ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .\33xl\:ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .\33xl\:ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .\33xl\:ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .\33xl\:ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .\33xl\:ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .\33xl\:ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .\33xl\:ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .\33xl\:ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .\33xl\:ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .\33xl\:ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .\33xl\:ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .\33xl\:ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .\33xl\:ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .\33xl\:ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .\33xl\:ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .\33xl\:ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .\33xl\:ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .\33xl\:ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .\33xl\:ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .\33xl\:ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .\33xl\:ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .\33xl\:ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .\33xl\:ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .\33xl\:ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .\33xl\:ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .\33xl\:ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .\33xl\:ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .\33xl\:ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .\33xl\:ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .\33xl\:ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .\33xl\:ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .\33xl\:ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .\33xl\:ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .\33xl\:ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .\33xl\:ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .\33xl\:ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .\33xl\:ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .\33xl\:ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .\33xl\:ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .\33xl\:ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .\33xl\:ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .\33xl\:ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .\33xl\:ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .\33xl\:ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .\33xl\:ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .\33xl\:ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .\33xl\:ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .\33xl\:ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .\33xl\:ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .\33xl\:ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .\33xl\:ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .\33xl\:ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .\33xl\:ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .\33xl\:ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .\33xl\:ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .\33xl\:ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .\33xl\:ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .\33xl\:ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .\33xl\:ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .\33xl\:ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .\33xl\:ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .\33xl\:ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .\33xl\:ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .\33xl\:ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .\33xl\:ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .\33xl\:ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .\33xl\:ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .\33xl\:ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .\33xl\:ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .\33xl\:ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .\33xl\:ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .\33xl\:ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .\33xl\:ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .\33xl\:ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .\33xl\:ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .\33xl\:ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .\33xl\:ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .\33xl\:ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .\33xl\:ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .\33xl\:ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .\33xl\:ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .\33xl\:ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .\33xl\:ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .\33xl\:ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .\33xl\:ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .\33xl\:ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .\33xl\:ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .\33xl\:ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .\33xl\:ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .\33xl\:ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .\33xl\:ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .\33xl\:ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .\33xl\:ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .\33xl\:ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .\33xl\:ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .\33xl\:ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .\33xl\:ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .\33xl\:ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .\33xl\:ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .\33xl\:ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .\33xl\:ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .\33xl\:ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .\33xl\:ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .\33xl\:ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .\33xl\:ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .\33xl\:ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .\33xl\:ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .\33xl\:ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .\33xl\:ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .\33xl\:ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .\33xl\:ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .\33xl\:ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .\33xl\:ltr\:mt-0{margin-top:0!important}[dir=ltr] .\33xl\:ltr\:mr-0{margin-right:0!important}[dir=ltr] .\33xl\:ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .\33xl\:ltr\:ml-0{margin-left:0!important}[dir=ltr] .\33xl\:ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .\33xl\:ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .\33xl\:ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .\33xl\:ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .\33xl\:ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .\33xl\:ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .\33xl\:ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .\33xl\:ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .\33xl\:ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .\33xl\:ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .\33xl\:ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .\33xl\:ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .\33xl\:ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .\33xl\:ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .\33xl\:ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .\33xl\:ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .\33xl\:ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .\33xl\:ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .\33xl\:ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .\33xl\:ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .\33xl\:ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .\33xl\:ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .\33xl\:ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .\33xl\:ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .\33xl\:ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .\33xl\:ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .\33xl\:ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .\33xl\:ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .\33xl\:ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .\33xl\:ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .\33xl\:ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .\33xl\:ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .\33xl\:ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .\33xl\:ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .\33xl\:ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .\33xl\:ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .\33xl\:ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .\33xl\:ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .\33xl\:ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .\33xl\:ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .\33xl\:ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .\33xl\:ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .\33xl\:ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .\33xl\:ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .\33xl\:ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .\33xl\:ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .\33xl\:ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .\33xl\:ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .\33xl\:ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .\33xl\:ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .\33xl\:ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .\33xl\:ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .\33xl\:ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .\33xl\:ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .\33xl\:ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .\33xl\:ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .\33xl\:ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .\33xl\:ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .\33xl\:ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .\33xl\:ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .\33xl\:ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .\33xl\:ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .\33xl\:ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .\33xl\:ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .\33xl\:ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .\33xl\:ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .\33xl\:ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .\33xl\:ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .\33xl\:ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .\33xl\:ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .\33xl\:ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .\33xl\:ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .\33xl\:ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .\33xl\:ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .\33xl\:ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .\33xl\:ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .\33xl\:ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .\33xl\:ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .\33xl\:ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .\33xl\:ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .\33xl\:ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .\33xl\:ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .\33xl\:ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .\33xl\:ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .\33xl\:ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .\33xl\:ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .\33xl\:ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .\33xl\:ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .\33xl\:ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .\33xl\:ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .\33xl\:ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .\33xl\:ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .\33xl\:ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .\33xl\:ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .\33xl\:ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .\33xl\:ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .\33xl\:ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .\33xl\:ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .\33xl\:ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .\33xl\:ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .\33xl\:ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .\33xl\:ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .\33xl\:ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .\33xl\:ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .\33xl\:ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .\33xl\:ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .\33xl\:ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .\33xl\:ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .\33xl\:ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .\33xl\:ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .\33xl\:ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .\33xl\:ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .\33xl\:ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .\33xl\:ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .\33xl\:ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .\33xl\:ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .\33xl\:ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .\33xl\:ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .\33xl\:ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .\33xl\:ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .\33xl\:ltr\:mt-px{margin-top:1px!important}[dir=ltr] .\33xl\:ltr\:mr-px{margin-right:1px!important}[dir=ltr] .\33xl\:ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .\33xl\:ltr\:ml-px{margin-left:1px!important}[dir=ltr] .\33xl\:ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .\33xl\:ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .\33xl\:ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .\33xl\:ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .\33xl\:ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .\33xl\:ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .\33xl\:ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .\33xl\:ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .\33xl\:ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .\33xl\:ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .\33xl\:ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .\33xl\:ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .\33xl\:ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .\33xl\:ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .\33xl\:ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .\33xl\:ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .\33xl\:ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .\33xl\:ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .\33xl\:ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .\33xl\:ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .\33xl\:ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .\33xl\:ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .\33xl\:ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .\33xl\:ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .\33xl\:ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .\33xl\:ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .\33xl\:ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .\33xl\:ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .\33xl\:ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .\33xl\:ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .\33xl\:ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .\33xl\:ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .\33xl\:ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .\33xl\:ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .\33xl\:ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .\33xl\:ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .\33xl\:ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .\33xl\:ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .\33xl\:ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .\33xl\:ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .\33xl\:ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .\33xl\:ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .\33xl\:ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .\33xl\:ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .\33xl\:ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .\33xl\:ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .\33xl\:ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .\33xl\:ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .\33xl\:ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .\33xl\:ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .\33xl\:ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .\33xl\:ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .\33xl\:ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .\33xl\:ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .\33xl\:ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .\33xl\:ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .\33xl\:ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .\33xl\:ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .\33xl\:ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .\33xl\:ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .\33xl\:ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .\33xl\:ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .\33xl\:ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .\33xl\:ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .\33xl\:ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .\33xl\:ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .\33xl\:ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .\33xl\:ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .\33xl\:ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .\33xl\:ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .\33xl\:ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .\33xl\:ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .\33xl\:ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .\33xl\:ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .\33xl\:ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .\33xl\:ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .\33xl\:ltr\:mt-full{margin-top:100%!important}[dir=ltr] .\33xl\:ltr\:mr-full{margin-right:100%!important}[dir=ltr] .\33xl\:ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .\33xl\:ltr\:ml-full{margin-left:100%!important}[dir=ltr] .\33xl\:ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .\33xl\:ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .\33xl\:ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .\33xl\:ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .\33xl\:ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .\33xl\:ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .\33xl\:ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .\33xl\:ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .\33xl\:ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .\33xl\:ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .\33xl\:ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .\33xl\:ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .\33xl\:ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .\33xl\:ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .\33xl\:ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .\33xl\:ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .\33xl\:ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .\33xl\:ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .\33xl\:ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .\33xl\:ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .\33xl\:ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .\33xl\:ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .\33xl\:ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .\33xl\:ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .\33xl\:ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .\33xl\:ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .\33xl\:ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .\33xl\:ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .\33xl\:ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .\33xl\:ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .\33xl\:ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .\33xl\:ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .\33xl\:ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .\33xl\:ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .\33xl\:ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .\33xl\:ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .\33xl\:ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .\33xl\:ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .\33xl\:ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .\33xl\:ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .\33xl\:ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .\33xl\:ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .\33xl\:ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .\33xl\:ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .\33xl\:ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .\33xl\:ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .\33xl\:ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .\33xl\:ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .\33xl\:ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .\33xl\:ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .\33xl\:ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .\33xl\:ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .\33xl\:ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .\33xl\:ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .\33xl\:ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .\33xl\:ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .\33xl\:ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .\33xl\:ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .\33xl\:ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .\33xl\:ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .\33xl\:ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .\33xl\:ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .\33xl\:ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .\33xl\:ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .\33xl\:ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .\33xl\:ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .\33xl\:ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .\33xl\:ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .\33xl\:ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .\33xl\:ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .\33xl\:ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .\33xl\:ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .\33xl\:ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .\33xl\:ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .\33xl\:ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .\33xl\:ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .\33xl\:ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .\33xl\:ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .\33xl\:ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .\33xl\:ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .\33xl\:ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .\33xl\:ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .\33xl\:ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .\33xl\:ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .\33xl\:ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .\33xl\:ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .\33xl\:ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .\33xl\:ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .\33xl\:ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .\33xl\:ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .\33xl\:ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .\33xl\:ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .\33xl\:ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .\33xl\:ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .\33xl\:ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .\33xl\:ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .\33xl\:ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .\33xl\:ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .\33xl\:ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .\33xl\:ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .\33xl\:ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .\33xl\:ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .\33xl\:ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .\33xl\:ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .\33xl\:ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .\33xl\:ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .\33xl\:ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .\33xl\:ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .\33xl\:ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .\33xl\:ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .\33xl\:ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .\33xl\:ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .\33xl\:ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .\33xl\:ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .\33xl\:ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .\33xl\:ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .\33xl\:ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .\33xl\:ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .\33xl\:ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .\33xl\:ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .\33xl\:ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .\33xl\:ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .\33xl\:ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .\33xl\:ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .\33xl\:ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .\33xl\:ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .\33xl\:ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .\33xl\:ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .\33xl\:ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .\33xl\:ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .\33xl\:ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .\33xl\:ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .\33xl\:ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .\33xl\:ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .\33xl\:ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .\33xl\:ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .\33xl\:ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .\33xl\:ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .\33xl\:ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .\33xl\:ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .\33xl\:ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .\33xl\:ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .\33xl\:ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .\33xl\:ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .\33xl\:ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .\33xl\:ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .\33xl\:ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .\33xl\:ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .\33xl\:ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .\33xl\:ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .\33xl\:ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .\33xl\:ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .\33xl\:ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .\33xl\:ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .\33xl\:ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .\33xl\:ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .\33xl\:ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .\33xl\:ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .\33xl\:ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .\33xl\:ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .\33xl\:ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .\33xl\:ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .\33xl\:ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .\33xl\:ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .\33xl\:ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .\33xl\:ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .\33xl\:ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .\33xl\:ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .\33xl\:ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .\33xl\:ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .\33xl\:ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .\33xl\:ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .\33xl\:ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .\33xl\:ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .\33xl\:ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .\33xl\:ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .\33xl\:ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .\33xl\:ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .\33xl\:ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .\33xl\:ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .\33xl\:ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .\33xl\:ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .\33xl\:ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .\33xl\:ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .\33xl\:ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .\33xl\:ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .\33xl\:ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .\33xl\:ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .\33xl\:ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .\33xl\:ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .\33xl\:ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .\33xl\:ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .\33xl\:ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .\33xl\:ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .\33xl\:ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .\33xl\:ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .\33xl\:ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .\33xl\:ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .\33xl\:ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .\33xl\:ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .\33xl\:ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .\33xl\:ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .\33xl\:rtl\:m-0{margin:0!important}[dir=rtl] .\33xl\:rtl\:m-1{margin:.25rem!important}[dir=rtl] .\33xl\:rtl\:m-2{margin:.5rem!important}[dir=rtl] .\33xl\:rtl\:m-3{margin:.75rem!important}[dir=rtl] .\33xl\:rtl\:m-4{margin:1rem!important}[dir=rtl] .\33xl\:rtl\:m-5{margin:1.25rem!important}[dir=rtl] .\33xl\:rtl\:m-6{margin:1.5rem!important}[dir=rtl] .\33xl\:rtl\:m-7{margin:1.75rem!important}[dir=rtl] .\33xl\:rtl\:m-8{margin:2rem!important}[dir=rtl] .\33xl\:rtl\:m-9{margin:2.25rem!important}[dir=rtl] .\33xl\:rtl\:m-10{margin:2.5rem!important}[dir=rtl] .\33xl\:rtl\:m-11{margin:2.75rem!important}[dir=rtl] .\33xl\:rtl\:m-12{margin:3rem!important}[dir=rtl] .\33xl\:rtl\:m-13{margin:3.25rem!important}[dir=rtl] .\33xl\:rtl\:m-14{margin:3.5rem!important}[dir=rtl] .\33xl\:rtl\:m-15{margin:3.75rem!important}[dir=rtl] .\33xl\:rtl\:m-16{margin:4rem!important}[dir=rtl] .\33xl\:rtl\:m-20{margin:5rem!important}[dir=rtl] .\33xl\:rtl\:m-24{margin:6rem!important}[dir=rtl] .\33xl\:rtl\:m-28{margin:7rem!important}[dir=rtl] .\33xl\:rtl\:m-32{margin:8rem!important}[dir=rtl] .\33xl\:rtl\:m-36{margin:9rem!important}[dir=rtl] .\33xl\:rtl\:m-40{margin:10rem!important}[dir=rtl] .\33xl\:rtl\:m-48{margin:12rem!important}[dir=rtl] .\33xl\:rtl\:m-56{margin:14rem!important}[dir=rtl] .\33xl\:rtl\:m-60{margin:15rem!important}[dir=rtl] .\33xl\:rtl\:m-64{margin:16rem!important}[dir=rtl] .\33xl\:rtl\:m-72{margin:18rem!important}[dir=rtl] .\33xl\:rtl\:m-80{margin:20rem!important}[dir=rtl] .\33xl\:rtl\:m-96{margin:24rem!important}[dir=rtl] .\33xl\:rtl\:m-auto{margin:auto!important}[dir=rtl] .\33xl\:rtl\:m-px{margin:1px!important}[dir=rtl] .\33xl\:rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .\33xl\:rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .\33xl\:rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .\33xl\:rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .\33xl\:rtl\:m-1\/2{margin:50%!important}[dir=rtl] .\33xl\:rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .\33xl\:rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .\33xl\:rtl\:m-1\/4{margin:25%!important}[dir=rtl] .\33xl\:rtl\:m-2\/4{margin:50%!important}[dir=rtl] .\33xl\:rtl\:m-3\/4{margin:75%!important}[dir=rtl] .\33xl\:rtl\:m-1\/5{margin:20%!important}[dir=rtl] .\33xl\:rtl\:m-2\/5{margin:40%!important}[dir=rtl] .\33xl\:rtl\:m-3\/5{margin:60%!important}[dir=rtl] .\33xl\:rtl\:m-4\/5{margin:80%!important}[dir=rtl] .\33xl\:rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .\33xl\:rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .\33xl\:rtl\:m-3\/6{margin:50%!important}[dir=rtl] .\33xl\:rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .\33xl\:rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .\33xl\:rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .\33xl\:rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .\33xl\:rtl\:m-3\/12{margin:25%!important}[dir=rtl] .\33xl\:rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .\33xl\:rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .\33xl\:rtl\:m-6\/12{margin:50%!important}[dir=rtl] .\33xl\:rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .\33xl\:rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .\33xl\:rtl\:m-9\/12{margin:75%!important}[dir=rtl] .\33xl\:rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .\33xl\:rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .\33xl\:rtl\:m-full{margin:100%!important}[dir=rtl] .\33xl\:rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .\33xl\:rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .\33xl\:rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .\33xl\:rtl\:-m-4{margin:-1rem!important}[dir=rtl] .\33xl\:rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .\33xl\:rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .\33xl\:rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .\33xl\:rtl\:-m-8{margin:-2rem!important}[dir=rtl] .\33xl\:rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .\33xl\:rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .\33xl\:rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .\33xl\:rtl\:-m-12{margin:-3rem!important}[dir=rtl] .\33xl\:rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .\33xl\:rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .\33xl\:rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .\33xl\:rtl\:-m-16{margin:-4rem!important}[dir=rtl] .\33xl\:rtl\:-m-20{margin:-5rem!important}[dir=rtl] .\33xl\:rtl\:-m-24{margin:-6rem!important}[dir=rtl] .\33xl\:rtl\:-m-28{margin:-7rem!important}[dir=rtl] .\33xl\:rtl\:-m-32{margin:-8rem!important}[dir=rtl] .\33xl\:rtl\:-m-36{margin:-9rem!important}[dir=rtl] .\33xl\:rtl\:-m-40{margin:-10rem!important}[dir=rtl] .\33xl\:rtl\:-m-48{margin:-12rem!important}[dir=rtl] .\33xl\:rtl\:-m-56{margin:-14rem!important}[dir=rtl] .\33xl\:rtl\:-m-60{margin:-15rem!important}[dir=rtl] .\33xl\:rtl\:-m-64{margin:-16rem!important}[dir=rtl] .\33xl\:rtl\:-m-72{margin:-18rem!important}[dir=rtl] .\33xl\:rtl\:-m-80{margin:-20rem!important}[dir=rtl] .\33xl\:rtl\:-m-96{margin:-24rem!important}[dir=rtl] .\33xl\:rtl\:-m-px{margin:-1px!important}[dir=rtl] .\33xl\:rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .\33xl\:rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .\33xl\:rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .\33xl\:rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .\33xl\:rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .\33xl\:rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .\33xl\:rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .\33xl\:rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .\33xl\:rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .\33xl\:rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .\33xl\:rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .\33xl\:rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .\33xl\:rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .\33xl\:rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .\33xl\:rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .\33xl\:rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .\33xl\:rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .\33xl\:rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .\33xl\:rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .\33xl\:rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .\33xl\:rtl\:-m-full{margin:-100%!important}[dir=rtl] .\33xl\:rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .\33xl\:rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .\33xl\:rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .\33xl\:rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .\33xl\:rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .\33xl\:rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .\33xl\:rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .\33xl\:rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .\33xl\:rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .\33xl\:rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .\33xl\:rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .\33xl\:rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .\33xl\:rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .\33xl\:rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .\33xl\:rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .\33xl\:rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .\33xl\:rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .\33xl\:rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .\33xl\:rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .\33xl\:rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .\33xl\:rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .\33xl\:rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .\33xl\:rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .\33xl\:rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .\33xl\:rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .\33xl\:rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .\33xl\:rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .\33xl\:rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .\33xl\:rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .\33xl\:rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .\33xl\:rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .\33xl\:rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .\33xl\:rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .\33xl\:rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .\33xl\:rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .\33xl\:rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .\33xl\:rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .\33xl\:rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .\33xl\:rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .\33xl\:rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .\33xl\:rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .\33xl\:rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .\33xl\:rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .\33xl\:rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .\33xl\:rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .\33xl\:rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .\33xl\:rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .\33xl\:rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .\33xl\:rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .\33xl\:rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .\33xl\:rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .\33xl\:rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .\33xl\:rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .\33xl\:rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .\33xl\:rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .\33xl\:rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .\33xl\:rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .\33xl\:rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .\33xl\:rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .\33xl\:rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .\33xl\:rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .\33xl\:rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .\33xl\:rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .\33xl\:rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .\33xl\:rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .\33xl\:rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .\33xl\:rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .\33xl\:rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .\33xl\:rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .\33xl\:rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .\33xl\:rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .\33xl\:rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .\33xl\:rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .\33xl\:rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .\33xl\:rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .\33xl\:rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .\33xl\:rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .\33xl\:rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .\33xl\:rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .\33xl\:rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .\33xl\:rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .\33xl\:rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .\33xl\:rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .\33xl\:rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .\33xl\:rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .\33xl\:rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .\33xl\:rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .\33xl\:rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .\33xl\:rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .\33xl\:rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .\33xl\:rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .\33xl\:rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .\33xl\:rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .\33xl\:rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .\33xl\:rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .\33xl\:rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .\33xl\:rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .\33xl\:rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .\33xl\:rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .\33xl\:rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .\33xl\:rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .\33xl\:rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .\33xl\:rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .\33xl\:rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .\33xl\:rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .\33xl\:rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .\33xl\:rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .\33xl\:rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .\33xl\:rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .\33xl\:rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .\33xl\:rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .\33xl\:rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .\33xl\:rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .\33xl\:rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .\33xl\:rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .\33xl\:rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .\33xl\:rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .\33xl\:rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .\33xl\:rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .\33xl\:rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .\33xl\:rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .\33xl\:rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .\33xl\:rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .\33xl\:rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .\33xl\:rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .\33xl\:rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .\33xl\:rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .\33xl\:rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .\33xl\:rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .\33xl\:rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .\33xl\:rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .\33xl\:rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .\33xl\:rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .\33xl\:rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .\33xl\:rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .\33xl\:rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .\33xl\:rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .\33xl\:rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .\33xl\:rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .\33xl\:rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .\33xl\:rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .\33xl\:rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .\33xl\:rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .\33xl\:rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .\33xl\:rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .\33xl\:rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .\33xl\:rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .\33xl\:rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .\33xl\:rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .\33xl\:rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .\33xl\:rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .\33xl\:rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .\33xl\:rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .\33xl\:rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .\33xl\:rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .\33xl\:rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .\33xl\:rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .\33xl\:rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .\33xl\:rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .\33xl\:rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .\33xl\:rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .\33xl\:rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .\33xl\:rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .\33xl\:rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .\33xl\:rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .\33xl\:rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .\33xl\:rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .\33xl\:rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .\33xl\:rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .\33xl\:rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .\33xl\:rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .\33xl\:rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .\33xl\:rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .\33xl\:rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .\33xl\:rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .\33xl\:rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .\33xl\:rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .\33xl\:rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .\33xl\:rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .\33xl\:rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .\33xl\:rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .\33xl\:rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .\33xl\:rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .\33xl\:rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .\33xl\:rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .\33xl\:rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .\33xl\:rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .\33xl\:rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .\33xl\:rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .\33xl\:rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .\33xl\:rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .\33xl\:rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .\33xl\:rtl\:mt-0{margin-top:0!important}[dir=rtl] .\33xl\:rtl\:mr-0{margin-right:0!important}[dir=rtl] .\33xl\:rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .\33xl\:rtl\:ml-0{margin-left:0!important}[dir=rtl] .\33xl\:rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .\33xl\:rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .\33xl\:rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .\33xl\:rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .\33xl\:rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .\33xl\:rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .\33xl\:rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .\33xl\:rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .\33xl\:rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .\33xl\:rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .\33xl\:rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .\33xl\:rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .\33xl\:rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .\33xl\:rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .\33xl\:rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .\33xl\:rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .\33xl\:rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .\33xl\:rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .\33xl\:rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .\33xl\:rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .\33xl\:rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .\33xl\:rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .\33xl\:rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .\33xl\:rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .\33xl\:rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .\33xl\:rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .\33xl\:rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .\33xl\:rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .\33xl\:rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .\33xl\:rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .\33xl\:rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .\33xl\:rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .\33xl\:rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .\33xl\:rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .\33xl\:rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .\33xl\:rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .\33xl\:rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .\33xl\:rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .\33xl\:rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .\33xl\:rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .\33xl\:rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .\33xl\:rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .\33xl\:rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .\33xl\:rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .\33xl\:rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .\33xl\:rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .\33xl\:rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .\33xl\:rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .\33xl\:rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .\33xl\:rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .\33xl\:rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .\33xl\:rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .\33xl\:rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .\33xl\:rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .\33xl\:rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .\33xl\:rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .\33xl\:rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .\33xl\:rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .\33xl\:rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .\33xl\:rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .\33xl\:rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .\33xl\:rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .\33xl\:rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .\33xl\:rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .\33xl\:rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .\33xl\:rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .\33xl\:rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .\33xl\:rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .\33xl\:rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .\33xl\:rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .\33xl\:rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .\33xl\:rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .\33xl\:rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .\33xl\:rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .\33xl\:rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .\33xl\:rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .\33xl\:rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .\33xl\:rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .\33xl\:rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .\33xl\:rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .\33xl\:rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .\33xl\:rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .\33xl\:rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .\33xl\:rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .\33xl\:rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .\33xl\:rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .\33xl\:rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .\33xl\:rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .\33xl\:rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .\33xl\:rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .\33xl\:rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .\33xl\:rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .\33xl\:rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .\33xl\:rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .\33xl\:rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .\33xl\:rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .\33xl\:rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .\33xl\:rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .\33xl\:rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .\33xl\:rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .\33xl\:rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .\33xl\:rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .\33xl\:rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .\33xl\:rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .\33xl\:rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .\33xl\:rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .\33xl\:rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .\33xl\:rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .\33xl\:rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .\33xl\:rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .\33xl\:rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .\33xl\:rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .\33xl\:rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .\33xl\:rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .\33xl\:rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .\33xl\:rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .\33xl\:rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .\33xl\:rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .\33xl\:rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .\33xl\:rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .\33xl\:rtl\:mt-px{margin-top:1px!important}[dir=rtl] .\33xl\:rtl\:mr-px{margin-right:1px!important}[dir=rtl] .\33xl\:rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .\33xl\:rtl\:ml-px{margin-left:1px!important}[dir=rtl] .\33xl\:rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .\33xl\:rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .\33xl\:rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .\33xl\:rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .\33xl\:rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .\33xl\:rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .\33xl\:rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .\33xl\:rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .\33xl\:rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .\33xl\:rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .\33xl\:rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .\33xl\:rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .\33xl\:rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .\33xl\:rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .\33xl\:rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .\33xl\:rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .\33xl\:rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .\33xl\:rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .\33xl\:rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .\33xl\:rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .\33xl\:rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .\33xl\:rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .\33xl\:rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .\33xl\:rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .\33xl\:rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .\33xl\:rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .\33xl\:rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .\33xl\:rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .\33xl\:rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .\33xl\:rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .\33xl\:rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .\33xl\:rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .\33xl\:rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .\33xl\:rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .\33xl\:rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .\33xl\:rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .\33xl\:rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .\33xl\:rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .\33xl\:rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .\33xl\:rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .\33xl\:rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .\33xl\:rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .\33xl\:rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .\33xl\:rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .\33xl\:rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .\33xl\:rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .\33xl\:rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .\33xl\:rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .\33xl\:rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .\33xl\:rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .\33xl\:rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .\33xl\:rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .\33xl\:rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .\33xl\:rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .\33xl\:rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .\33xl\:rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .\33xl\:rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .\33xl\:rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .\33xl\:rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .\33xl\:rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .\33xl\:rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .\33xl\:rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .\33xl\:rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .\33xl\:rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .\33xl\:rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .\33xl\:rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .\33xl\:rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .\33xl\:rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .\33xl\:rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .\33xl\:rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .\33xl\:rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .\33xl\:rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .\33xl\:rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .\33xl\:rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .\33xl\:rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .\33xl\:rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .\33xl\:rtl\:mt-full{margin-top:100%!important}[dir=rtl] .\33xl\:rtl\:mr-full{margin-right:100%!important}[dir=rtl] .\33xl\:rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .\33xl\:rtl\:ml-full{margin-left:100%!important}[dir=rtl] .\33xl\:rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .\33xl\:rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .\33xl\:rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .\33xl\:rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .\33xl\:rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .\33xl\:rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .\33xl\:rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .\33xl\:rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .\33xl\:rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .\33xl\:rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .\33xl\:rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .\33xl\:rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .\33xl\:rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .\33xl\:rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .\33xl\:rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .\33xl\:rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .\33xl\:rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .\33xl\:rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .\33xl\:rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .\33xl\:rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .\33xl\:rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .\33xl\:rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .\33xl\:rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .\33xl\:rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .\33xl\:rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .\33xl\:rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .\33xl\:rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .\33xl\:rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .\33xl\:rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .\33xl\:rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .\33xl\:rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .\33xl\:rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .\33xl\:rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .\33xl\:rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .\33xl\:rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .\33xl\:rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .\33xl\:rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .\33xl\:rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .\33xl\:rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .\33xl\:rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .\33xl\:rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .\33xl\:rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .\33xl\:rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .\33xl\:rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .\33xl\:rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .\33xl\:rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .\33xl\:rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .\33xl\:rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .\33xl\:rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .\33xl\:rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .\33xl\:rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .\33xl\:rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .\33xl\:rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .\33xl\:rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .\33xl\:rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .\33xl\:rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .\33xl\:rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .\33xl\:rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .\33xl\:rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .\33xl\:rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .\33xl\:rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .\33xl\:rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .\33xl\:rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .\33xl\:rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .\33xl\:rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .\33xl\:rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .\33xl\:rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .\33xl\:rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .\33xl\:rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .\33xl\:rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .\33xl\:rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .\33xl\:rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .\33xl\:rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .\33xl\:rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .\33xl\:rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .\33xl\:rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .\33xl\:rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .\33xl\:rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .\33xl\:rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .\33xl\:rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .\33xl\:rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .\33xl\:rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .\33xl\:rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .\33xl\:rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .\33xl\:rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .\33xl\:rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .\33xl\:rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .\33xl\:rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .\33xl\:rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .\33xl\:rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .\33xl\:rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .\33xl\:rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .\33xl\:rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .\33xl\:rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .\33xl\:rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .\33xl\:rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .\33xl\:rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .\33xl\:rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .\33xl\:rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .\33xl\:rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .\33xl\:rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .\33xl\:rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .\33xl\:rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .\33xl\:rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .\33xl\:rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .\33xl\:rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .\33xl\:rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .\33xl\:rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .\33xl\:rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .\33xl\:rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .\33xl\:rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .\33xl\:rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .\33xl\:rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .\33xl\:rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .\33xl\:rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .\33xl\:rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .\33xl\:rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .\33xl\:rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .\33xl\:rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .\33xl\:rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .\33xl\:rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .\33xl\:rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .\33xl\:rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .\33xl\:rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .\33xl\:rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .\33xl\:rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .\33xl\:rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .\33xl\:rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .\33xl\:rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .\33xl\:rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .\33xl\:rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .\33xl\:rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .\33xl\:rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .\33xl\:rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .\33xl\:rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .\33xl\:rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .\33xl\:rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .\33xl\:rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .\33xl\:rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .\33xl\:rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .\33xl\:rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .\33xl\:rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .\33xl\:rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .\33xl\:rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .\33xl\:rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .\33xl\:rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .\33xl\:rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .\33xl\:rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .\33xl\:rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .\33xl\:rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .\33xl\:rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .\33xl\:rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .\33xl\:rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .\33xl\:rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .\33xl\:rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .\33xl\:rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .\33xl\:rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .\33xl\:rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .\33xl\:rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .\33xl\:rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .\33xl\:rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .\33xl\:rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .\33xl\:rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .\33xl\:rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .\33xl\:rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .\33xl\:rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .\33xl\:rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .\33xl\:rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .\33xl\:rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .\33xl\:rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .\33xl\:rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .\33xl\:rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .\33xl\:rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .\33xl\:rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .\33xl\:rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .\33xl\:rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .\33xl\:rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .\33xl\:rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .\33xl\:rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .\33xl\:rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .\33xl\:rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .\33xl\:rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .\33xl\:rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .\33xl\:rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .\33xl\:rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .\33xl\:rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .\33xl\:rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .\33xl\:rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .\33xl\:rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .\33xl\:rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .\33xl\:rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .\33xl\:rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .\33xl\:rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .\33xl\:rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .\33xl\:rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .\33xl\:rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .\33xl\:rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .\33xl\:rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .\33xl\:rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .\33xl\:rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .\33xl\:rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .\33xl\:rtl\:-ml-full{margin-left:-100%!important}.\33xl\:max-h-0{max-height:0!important}.\33xl\:max-h-1{max-height:.25rem!important}.\33xl\:max-h-2{max-height:.5rem!important}.\33xl\:max-h-3{max-height:.75rem!important}.\33xl\:max-h-4{max-height:1rem!important}.\33xl\:max-h-5{max-height:1.25rem!important}.\33xl\:max-h-6{max-height:1.5rem!important}.\33xl\:max-h-7{max-height:1.75rem!important}.\33xl\:max-h-8{max-height:2rem!important}.\33xl\:max-h-9{max-height:2.25rem!important}.\33xl\:max-h-10{max-height:2.5rem!important}.\33xl\:max-h-11{max-height:2.75rem!important}.\33xl\:max-h-12{max-height:3rem!important}.\33xl\:max-h-13{max-height:3.25rem!important}.\33xl\:max-h-14{max-height:3.5rem!important}.\33xl\:max-h-15{max-height:3.75rem!important}.\33xl\:max-h-16{max-height:4rem!important}.\33xl\:max-h-20{max-height:5rem!important}.\33xl\:max-h-24{max-height:6rem!important}.\33xl\:max-h-28{max-height:7rem!important}.\33xl\:max-h-32{max-height:8rem!important}.\33xl\:max-h-36{max-height:9rem!important}.\33xl\:max-h-40{max-height:10rem!important}.\33xl\:max-h-48{max-height:12rem!important}.\33xl\:max-h-56{max-height:14rem!important}.\33xl\:max-h-60{max-height:15rem!important}.\33xl\:max-h-64{max-height:16rem!important}.\33xl\:max-h-72{max-height:18rem!important}.\33xl\:max-h-80{max-height:20rem!important}.\33xl\:max-h-96{max-height:24rem!important}.\33xl\:max-h-screen{max-height:100vh!important}.\33xl\:max-h-px{max-height:1px!important}.\33xl\:max-h-0\.5{max-height:.125rem!important}.\33xl\:max-h-1\.5{max-height:.375rem!important}.\33xl\:max-h-2\.5{max-height:.625rem!important}.\33xl\:max-h-3\.5{max-height:.875rem!important}.\33xl\:max-h-1\/2{max-height:50%!important}.\33xl\:max-h-1\/3{max-height:33.333333%!important}.\33xl\:max-h-2\/3{max-height:66.666667%!important}.\33xl\:max-h-1\/4{max-height:25%!important}.\33xl\:max-h-2\/4{max-height:50%!important}.\33xl\:max-h-3\/4{max-height:75%!important}.\33xl\:max-h-1\/5{max-height:20%!important}.\33xl\:max-h-2\/5{max-height:40%!important}.\33xl\:max-h-3\/5{max-height:60%!important}.\33xl\:max-h-4\/5{max-height:80%!important}.\33xl\:max-h-1\/6{max-height:16.666667%!important}.\33xl\:max-h-2\/6{max-height:33.333333%!important}.\33xl\:max-h-3\/6{max-height:50%!important}.\33xl\:max-h-4\/6{max-height:66.666667%!important}.\33xl\:max-h-5\/6{max-height:83.333333%!important}.\33xl\:max-h-1\/12{max-height:8.333333%!important}.\33xl\:max-h-2\/12{max-height:16.666667%!important}.\33xl\:max-h-3\/12{max-height:25%!important}.\33xl\:max-h-4\/12{max-height:33.333333%!important}.\33xl\:max-h-5\/12{max-height:41.666667%!important}.\33xl\:max-h-6\/12{max-height:50%!important}.\33xl\:max-h-7\/12{max-height:58.333333%!important}.\33xl\:max-h-8\/12{max-height:66.666667%!important}.\33xl\:max-h-9\/12{max-height:75%!important}.\33xl\:max-h-10\/12{max-height:83.333333%!important}.\33xl\:max-h-11\/12{max-height:91.666667%!important}.\33xl\:max-h-full{max-height:100%!important}.\33xl\:max-h-6xl{max-height:6rem!important}.\33xl\:max-w-none{max-width:none!important}.\33xl\:max-w-xs{max-width:20rem!important}.\33xl\:max-w-sm{max-width:24rem!important}.\33xl\:max-w-md{max-width:28rem!important}.\33xl\:max-w-lg{max-width:32rem!important}.\33xl\:max-w-xl{max-width:36rem!important}.\33xl\:max-w-2xl{max-width:42rem!important}.\33xl\:max-w-3xl{max-width:48rem!important}.\33xl\:max-w-4xl{max-width:56rem!important}.\33xl\:max-w-5xl{max-width:64rem!important}.\33xl\:max-w-6xl{max-width:72rem!important}.\33xl\:max-w-7xl{max-width:80rem!important}.\33xl\:max-w-full{max-width:100%!important}.\33xl\:max-w-screen-sm{max-width:600px!important}.\33xl\:max-w-screen-md{max-width:1024px!important}.\33xl\:max-w-screen-lg{max-width:1280px!important}.\33xl\:max-w-screen-xl{max-width:1536px!important}.\33xl\:max-w-screen-2xl{max-width:1400px!important}.\33xl\:max-w-screen-3xl{max-width:1800px!important}.\33xl\:max-w-screen-4xl{max-width:2200px!important}.\33xl\:min-h-0{min-height:0!important}.\33xl\:min-h-full{min-height:100%!important}.\33xl\:min-h-screen{min-height:100vh!important}.\33xl\:min-h-half{min-height:50vh!important}.\33xl\:min-w-0{min-width:0!important}.\33xl\:min-w-full{min-width:100%!important}.\33xl\:object-contain{-o-object-fit:contain!important;object-fit:contain!important}.\33xl\:object-cover{-o-object-fit:cover!important;object-fit:cover!important}.\33xl\:object-fill{-o-object-fit:fill!important;object-fit:fill!important}.\33xl\:object-none{-o-object-fit:none!important;object-fit:none!important}.\33xl\:object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.\33xl\:object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.\33xl\:object-center{-o-object-position:center!important;object-position:center!important}.\33xl\:object-left{-o-object-position:left!important;object-position:left!important}.\33xl\:object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.\33xl\:object-left-top{-o-object-position:left top!important;object-position:left top!important}.\33xl\:object-right{-o-object-position:right!important;object-position:right!important}.\33xl\:object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.\33xl\:object-right-top{-o-object-position:right top!important;object-position:right top!important}.\33xl\:object-top{-o-object-position:top!important;object-position:top!important}.\33xl\:opacity-0{opacity:0!important}.\33xl\:opacity-25{opacity:.25!important}.\33xl\:opacity-50{opacity:.5!important}.\33xl\:opacity-75{opacity:.75!important}.\33xl\:opacity-100{opacity:1!important}.\33xl\:hover\:opacity-0:hover{opacity:0!important}.\33xl\:hover\:opacity-25:hover{opacity:.25!important}.\33xl\:hover\:opacity-50:hover{opacity:.5!important}.\33xl\:hover\:opacity-75:hover{opacity:.75!important}.\33xl\:hover\:opacity-100:hover{opacity:1!important}.\33xl\:focus\:opacity-0:focus{opacity:0!important}.\33xl\:focus\:opacity-25:focus{opacity:.25!important}.\33xl\:focus\:opacity-50:focus{opacity:.5!important}.\33xl\:focus\:opacity-75:focus{opacity:.75!important}.\33xl\:focus\:opacity-100:focus{opacity:1!important}.\33xl\:outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.\33xl\:outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.\33xl\:outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.\33xl\:focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.\33xl\:focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.\33xl\:focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.\33xl\:overflow-auto{overflow:auto!important}.\33xl\:overflow-hidden{overflow:hidden!important}.\33xl\:overflow-visible{overflow:visible!important}.\33xl\:overflow-scroll{overflow:scroll!important}.\33xl\:overflow-x-auto{overflow-x:auto!important}.\33xl\:overflow-y-auto{overflow-y:auto!important}.\33xl\:overflow-x-hidden{overflow-x:hidden!important}.\33xl\:overflow-y-hidden{overflow-y:hidden!important}.\33xl\:overflow-x-visible{overflow-x:visible!important}.\33xl\:overflow-y-visible{overflow-y:visible!important}.\33xl\:overflow-x-scroll{overflow-x:scroll!important}.\33xl\:overflow-y-scroll{overflow-y:scroll!important}.\33xl\:scrolling-touch{-webkit-overflow-scrolling:touch!important}.\33xl\:scrolling-auto{-webkit-overflow-scrolling:auto!important}.\33xl\:overscroll-auto{overscroll-behavior:auto!important}.\33xl\:overscroll-contain{overscroll-behavior:contain!important}.\33xl\:overscroll-none{overscroll-behavior:none!important}.\33xl\:overscroll-y-auto{overscroll-behavior-y:auto!important}.\33xl\:overscroll-y-contain{overscroll-behavior-y:contain!important}.\33xl\:overscroll-y-none{overscroll-behavior-y:none!important}.\33xl\:overscroll-x-auto{overscroll-behavior-x:auto!important}.\33xl\:overscroll-x-contain{overscroll-behavior-x:contain!important}.\33xl\:overscroll-x-none{overscroll-behavior-x:none!important}.\33xl\:p-0{padding:0!important}.\33xl\:p-1{padding:.25rem!important}.\33xl\:p-2{padding:.5rem!important}.\33xl\:p-3{padding:.75rem!important}.\33xl\:p-4{padding:1rem!important}.\33xl\:p-5{padding:1.25rem!important}.\33xl\:p-6{padding:1.5rem!important}.\33xl\:p-7{padding:1.75rem!important}.\33xl\:p-8{padding:2rem!important}.\33xl\:p-9{padding:2.25rem!important}.\33xl\:p-10{padding:2.5rem!important}.\33xl\:p-11{padding:2.75rem!important}.\33xl\:p-12{padding:3rem!important}.\33xl\:p-13{padding:3.25rem!important}.\33xl\:p-14{padding:3.5rem!important}.\33xl\:p-15{padding:3.75rem!important}.\33xl\:p-16{padding:4rem!important}.\33xl\:p-20{padding:5rem!important}.\33xl\:p-24{padding:6rem!important}.\33xl\:p-28{padding:7rem!important}.\33xl\:p-32{padding:8rem!important}.\33xl\:p-36{padding:9rem!important}.\33xl\:p-40{padding:10rem!important}.\33xl\:p-48{padding:12rem!important}.\33xl\:p-56{padding:14rem!important}.\33xl\:p-60{padding:15rem!important}.\33xl\:p-64{padding:16rem!important}.\33xl\:p-72{padding:18rem!important}.\33xl\:p-80{padding:20rem!important}.\33xl\:p-96{padding:24rem!important}.\33xl\:p-px{padding:1px!important}.\33xl\:p-0\.5{padding:.125rem!important}.\33xl\:p-1\.5{padding:.375rem!important}.\33xl\:p-2\.5{padding:.625rem!important}.\33xl\:p-3\.5{padding:.875rem!important}.\33xl\:p-1\/2{padding:50%!important}.\33xl\:p-1\/3{padding:33.333333%!important}.\33xl\:p-2\/3{padding:66.666667%!important}.\33xl\:p-1\/4{padding:25%!important}.\33xl\:p-2\/4{padding:50%!important}.\33xl\:p-3\/4{padding:75%!important}.\33xl\:p-1\/5{padding:20%!important}.\33xl\:p-2\/5{padding:40%!important}.\33xl\:p-3\/5{padding:60%!important}.\33xl\:p-4\/5{padding:80%!important}.\33xl\:p-1\/6{padding:16.666667%!important}.\33xl\:p-2\/6{padding:33.333333%!important}.\33xl\:p-3\/6{padding:50%!important}.\33xl\:p-4\/6{padding:66.666667%!important}.\33xl\:p-5\/6{padding:83.333333%!important}.\33xl\:p-1\/12{padding:8.333333%!important}.\33xl\:p-2\/12{padding:16.666667%!important}.\33xl\:p-3\/12{padding:25%!important}.\33xl\:p-4\/12{padding:33.333333%!important}.\33xl\:p-5\/12{padding:41.666667%!important}.\33xl\:p-6\/12{padding:50%!important}.\33xl\:p-7\/12{padding:58.333333%!important}.\33xl\:p-8\/12{padding:66.666667%!important}.\33xl\:p-9\/12{padding:75%!important}.\33xl\:p-10\/12{padding:83.333333%!important}.\33xl\:p-11\/12{padding:91.666667%!important}.\33xl\:p-full{padding:100%!important}.\33xl\:py-0{padding-bottom:0!important;padding-top:0!important}.\33xl\:px-0{padding-left:0!important;padding-right:0!important}.\33xl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.\33xl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.\33xl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.\33xl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.\33xl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.\33xl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}.\33xl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}.\33xl\:px-4{padding-left:1rem!important;padding-right:1rem!important}.\33xl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.\33xl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.\33xl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.\33xl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.\33xl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.\33xl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.\33xl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}.\33xl\:px-8{padding-left:2rem!important;padding-right:2rem!important}.\33xl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.\33xl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.\33xl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.\33xl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.\33xl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.\33xl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.\33xl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}.\33xl\:px-12{padding-left:3rem!important;padding-right:3rem!important}.\33xl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.\33xl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.\33xl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.\33xl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.\33xl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.\33xl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.\33xl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}.\33xl\:px-16{padding-left:4rem!important;padding-right:4rem!important}.\33xl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}.\33xl\:px-20{padding-left:5rem!important;padding-right:5rem!important}.\33xl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}.\33xl\:px-24{padding-left:6rem!important;padding-right:6rem!important}.\33xl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}.\33xl\:px-28{padding-left:7rem!important;padding-right:7rem!important}.\33xl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}.\33xl\:px-32{padding-left:8rem!important;padding-right:8rem!important}.\33xl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}.\33xl\:px-36{padding-left:9rem!important;padding-right:9rem!important}.\33xl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}.\33xl\:px-40{padding-left:10rem!important;padding-right:10rem!important}.\33xl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}.\33xl\:px-48{padding-left:12rem!important;padding-right:12rem!important}.\33xl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}.\33xl\:px-56{padding-left:14rem!important;padding-right:14rem!important}.\33xl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}.\33xl\:px-60{padding-left:15rem!important;padding-right:15rem!important}.\33xl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}.\33xl\:px-64{padding-left:16rem!important;padding-right:16rem!important}.\33xl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}.\33xl\:px-72{padding-left:18rem!important;padding-right:18rem!important}.\33xl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}.\33xl\:px-80{padding-left:20rem!important;padding-right:20rem!important}.\33xl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}.\33xl\:px-96{padding-left:24rem!important;padding-right:24rem!important}.\33xl\:py-px{padding-bottom:1px!important;padding-top:1px!important}.\33xl\:px-px{padding-left:1px!important;padding-right:1px!important}.\33xl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.\33xl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.\33xl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.\33xl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.\33xl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.\33xl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.\33xl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.\33xl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.\33xl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.\33xl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}.\33xl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\33xl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.\33xl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\33xl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.\33xl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.\33xl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}.\33xl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.\33xl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}.\33xl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.\33xl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}.\33xl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.\33xl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}.\33xl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.\33xl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}.\33xl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.\33xl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}.\33xl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.\33xl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}.\33xl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.\33xl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.\33xl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\33xl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.\33xl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.\33xl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}.\33xl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\33xl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.\33xl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.\33xl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.\33xl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.\33xl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.\33xl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.\33xl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.\33xl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.\33xl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}.\33xl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\33xl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.\33xl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.\33xl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.\33xl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.\33xl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}.\33xl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.\33xl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.\33xl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\33xl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.\33xl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.\33xl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}.\33xl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.\33xl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.\33xl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.\33xl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.\33xl\:py-full{padding-bottom:100%!important;padding-top:100%!important}.\33xl\:px-full{padding-left:100%!important;padding-right:100%!important}.\33xl\:pt-0{padding-top:0!important}.\33xl\:pr-0{padding-right:0!important}.\33xl\:pb-0{padding-bottom:0!important}.\33xl\:pl-0{padding-left:0!important}.\33xl\:pt-1{padding-top:.25rem!important}.\33xl\:pr-1{padding-right:.25rem!important}.\33xl\:pb-1{padding-bottom:.25rem!important}.\33xl\:pl-1{padding-left:.25rem!important}.\33xl\:pt-2{padding-top:.5rem!important}.\33xl\:pr-2{padding-right:.5rem!important}.\33xl\:pb-2{padding-bottom:.5rem!important}.\33xl\:pl-2{padding-left:.5rem!important}.\33xl\:pt-3{padding-top:.75rem!important}.\33xl\:pr-3{padding-right:.75rem!important}.\33xl\:pb-3{padding-bottom:.75rem!important}.\33xl\:pl-3{padding-left:.75rem!important}.\33xl\:pt-4{padding-top:1rem!important}.\33xl\:pr-4{padding-right:1rem!important}.\33xl\:pb-4{padding-bottom:1rem!important}.\33xl\:pl-4{padding-left:1rem!important}.\33xl\:pt-5{padding-top:1.25rem!important}.\33xl\:pr-5{padding-right:1.25rem!important}.\33xl\:pb-5{padding-bottom:1.25rem!important}.\33xl\:pl-5{padding-left:1.25rem!important}.\33xl\:pt-6{padding-top:1.5rem!important}.\33xl\:pr-6{padding-right:1.5rem!important}.\33xl\:pb-6{padding-bottom:1.5rem!important}.\33xl\:pl-6{padding-left:1.5rem!important}.\33xl\:pt-7{padding-top:1.75rem!important}.\33xl\:pr-7{padding-right:1.75rem!important}.\33xl\:pb-7{padding-bottom:1.75rem!important}.\33xl\:pl-7{padding-left:1.75rem!important}.\33xl\:pt-8{padding-top:2rem!important}.\33xl\:pr-8{padding-right:2rem!important}.\33xl\:pb-8{padding-bottom:2rem!important}.\33xl\:pl-8{padding-left:2rem!important}.\33xl\:pt-9{padding-top:2.25rem!important}.\33xl\:pr-9{padding-right:2.25rem!important}.\33xl\:pb-9{padding-bottom:2.25rem!important}.\33xl\:pl-9{padding-left:2.25rem!important}.\33xl\:pt-10{padding-top:2.5rem!important}.\33xl\:pr-10{padding-right:2.5rem!important}.\33xl\:pb-10{padding-bottom:2.5rem!important}.\33xl\:pl-10{padding-left:2.5rem!important}.\33xl\:pt-11{padding-top:2.75rem!important}.\33xl\:pr-11{padding-right:2.75rem!important}.\33xl\:pb-11{padding-bottom:2.75rem!important}.\33xl\:pl-11{padding-left:2.75rem!important}.\33xl\:pt-12{padding-top:3rem!important}.\33xl\:pr-12{padding-right:3rem!important}.\33xl\:pb-12{padding-bottom:3rem!important}.\33xl\:pl-12{padding-left:3rem!important}.\33xl\:pt-13{padding-top:3.25rem!important}.\33xl\:pr-13{padding-right:3.25rem!important}.\33xl\:pb-13{padding-bottom:3.25rem!important}.\33xl\:pl-13{padding-left:3.25rem!important}.\33xl\:pt-14{padding-top:3.5rem!important}.\33xl\:pr-14{padding-right:3.5rem!important}.\33xl\:pb-14{padding-bottom:3.5rem!important}.\33xl\:pl-14{padding-left:3.5rem!important}.\33xl\:pt-15{padding-top:3.75rem!important}.\33xl\:pr-15{padding-right:3.75rem!important}.\33xl\:pb-15{padding-bottom:3.75rem!important}.\33xl\:pl-15{padding-left:3.75rem!important}.\33xl\:pt-16{padding-top:4rem!important}.\33xl\:pr-16{padding-right:4rem!important}.\33xl\:pb-16{padding-bottom:4rem!important}.\33xl\:pl-16{padding-left:4rem!important}.\33xl\:pt-20{padding-top:5rem!important}.\33xl\:pr-20{padding-right:5rem!important}.\33xl\:pb-20{padding-bottom:5rem!important}.\33xl\:pl-20{padding-left:5rem!important}.\33xl\:pt-24{padding-top:6rem!important}.\33xl\:pr-24{padding-right:6rem!important}.\33xl\:pb-24{padding-bottom:6rem!important}.\33xl\:pl-24{padding-left:6rem!important}.\33xl\:pt-28{padding-top:7rem!important}.\33xl\:pr-28{padding-right:7rem!important}.\33xl\:pb-28{padding-bottom:7rem!important}.\33xl\:pl-28{padding-left:7rem!important}.\33xl\:pt-32{padding-top:8rem!important}.\33xl\:pr-32{padding-right:8rem!important}.\33xl\:pb-32{padding-bottom:8rem!important}.\33xl\:pl-32{padding-left:8rem!important}.\33xl\:pt-36{padding-top:9rem!important}.\33xl\:pr-36{padding-right:9rem!important}.\33xl\:pb-36{padding-bottom:9rem!important}.\33xl\:pl-36{padding-left:9rem!important}.\33xl\:pt-40{padding-top:10rem!important}.\33xl\:pr-40{padding-right:10rem!important}.\33xl\:pb-40{padding-bottom:10rem!important}.\33xl\:pl-40{padding-left:10rem!important}.\33xl\:pt-48{padding-top:12rem!important}.\33xl\:pr-48{padding-right:12rem!important}.\33xl\:pb-48{padding-bottom:12rem!important}.\33xl\:pl-48{padding-left:12rem!important}.\33xl\:pt-56{padding-top:14rem!important}.\33xl\:pr-56{padding-right:14rem!important}.\33xl\:pb-56{padding-bottom:14rem!important}.\33xl\:pl-56{padding-left:14rem!important}.\33xl\:pt-60{padding-top:15rem!important}.\33xl\:pr-60{padding-right:15rem!important}.\33xl\:pb-60{padding-bottom:15rem!important}.\33xl\:pl-60{padding-left:15rem!important}.\33xl\:pt-64{padding-top:16rem!important}.\33xl\:pr-64{padding-right:16rem!important}.\33xl\:pb-64{padding-bottom:16rem!important}.\33xl\:pl-64{padding-left:16rem!important}.\33xl\:pt-72{padding-top:18rem!important}.\33xl\:pr-72{padding-right:18rem!important}.\33xl\:pb-72{padding-bottom:18rem!important}.\33xl\:pl-72{padding-left:18rem!important}.\33xl\:pt-80{padding-top:20rem!important}.\33xl\:pr-80{padding-right:20rem!important}.\33xl\:pb-80{padding-bottom:20rem!important}.\33xl\:pl-80{padding-left:20rem!important}.\33xl\:pt-96{padding-top:24rem!important}.\33xl\:pr-96{padding-right:24rem!important}.\33xl\:pb-96{padding-bottom:24rem!important}.\33xl\:pl-96{padding-left:24rem!important}.\33xl\:pt-px{padding-top:1px!important}.\33xl\:pr-px{padding-right:1px!important}.\33xl\:pb-px{padding-bottom:1px!important}.\33xl\:pl-px{padding-left:1px!important}.\33xl\:pt-0\.5{padding-top:.125rem!important}.\33xl\:pr-0\.5{padding-right:.125rem!important}.\33xl\:pb-0\.5{padding-bottom:.125rem!important}.\33xl\:pl-0\.5{padding-left:.125rem!important}.\33xl\:pt-1\.5{padding-top:.375rem!important}.\33xl\:pr-1\.5{padding-right:.375rem!important}.\33xl\:pb-1\.5{padding-bottom:.375rem!important}.\33xl\:pl-1\.5{padding-left:.375rem!important}.\33xl\:pt-2\.5{padding-top:.625rem!important}.\33xl\:pr-2\.5{padding-right:.625rem!important}.\33xl\:pb-2\.5{padding-bottom:.625rem!important}.\33xl\:pl-2\.5{padding-left:.625rem!important}.\33xl\:pt-3\.5{padding-top:.875rem!important}.\33xl\:pr-3\.5{padding-right:.875rem!important}.\33xl\:pb-3\.5{padding-bottom:.875rem!important}.\33xl\:pl-3\.5{padding-left:.875rem!important}.\33xl\:pt-1\/2{padding-top:50%!important}.\33xl\:pr-1\/2{padding-right:50%!important}.\33xl\:pb-1\/2{padding-bottom:50%!important}.\33xl\:pl-1\/2{padding-left:50%!important}.\33xl\:pt-1\/3{padding-top:33.333333%!important}.\33xl\:pr-1\/3{padding-right:33.333333%!important}.\33xl\:pb-1\/3{padding-bottom:33.333333%!important}.\33xl\:pl-1\/3{padding-left:33.333333%!important}.\33xl\:pt-2\/3{padding-top:66.666667%!important}.\33xl\:pr-2\/3{padding-right:66.666667%!important}.\33xl\:pb-2\/3{padding-bottom:66.666667%!important}.\33xl\:pl-2\/3{padding-left:66.666667%!important}.\33xl\:pt-1\/4{padding-top:25%!important}.\33xl\:pr-1\/4{padding-right:25%!important}.\33xl\:pb-1\/4{padding-bottom:25%!important}.\33xl\:pl-1\/4{padding-left:25%!important}.\33xl\:pt-2\/4{padding-top:50%!important}.\33xl\:pr-2\/4{padding-right:50%!important}.\33xl\:pb-2\/4{padding-bottom:50%!important}.\33xl\:pl-2\/4{padding-left:50%!important}.\33xl\:pt-3\/4{padding-top:75%!important}.\33xl\:pr-3\/4{padding-right:75%!important}.\33xl\:pb-3\/4{padding-bottom:75%!important}.\33xl\:pl-3\/4{padding-left:75%!important}.\33xl\:pt-1\/5{padding-top:20%!important}.\33xl\:pr-1\/5{padding-right:20%!important}.\33xl\:pb-1\/5{padding-bottom:20%!important}.\33xl\:pl-1\/5{padding-left:20%!important}.\33xl\:pt-2\/5{padding-top:40%!important}.\33xl\:pr-2\/5{padding-right:40%!important}.\33xl\:pb-2\/5{padding-bottom:40%!important}.\33xl\:pl-2\/5{padding-left:40%!important}.\33xl\:pt-3\/5{padding-top:60%!important}.\33xl\:pr-3\/5{padding-right:60%!important}.\33xl\:pb-3\/5{padding-bottom:60%!important}.\33xl\:pl-3\/5{padding-left:60%!important}.\33xl\:pt-4\/5{padding-top:80%!important}.\33xl\:pr-4\/5{padding-right:80%!important}.\33xl\:pb-4\/5{padding-bottom:80%!important}.\33xl\:pl-4\/5{padding-left:80%!important}.\33xl\:pt-1\/6{padding-top:16.666667%!important}.\33xl\:pr-1\/6{padding-right:16.666667%!important}.\33xl\:pb-1\/6{padding-bottom:16.666667%!important}.\33xl\:pl-1\/6{padding-left:16.666667%!important}.\33xl\:pt-2\/6{padding-top:33.333333%!important}.\33xl\:pr-2\/6{padding-right:33.333333%!important}.\33xl\:pb-2\/6{padding-bottom:33.333333%!important}.\33xl\:pl-2\/6{padding-left:33.333333%!important}.\33xl\:pt-3\/6{padding-top:50%!important}.\33xl\:pr-3\/6{padding-right:50%!important}.\33xl\:pb-3\/6{padding-bottom:50%!important}.\33xl\:pl-3\/6{padding-left:50%!important}.\33xl\:pt-4\/6{padding-top:66.666667%!important}.\33xl\:pr-4\/6{padding-right:66.666667%!important}.\33xl\:pb-4\/6{padding-bottom:66.666667%!important}.\33xl\:pl-4\/6{padding-left:66.666667%!important}.\33xl\:pt-5\/6{padding-top:83.333333%!important}.\33xl\:pr-5\/6{padding-right:83.333333%!important}.\33xl\:pb-5\/6{padding-bottom:83.333333%!important}.\33xl\:pl-5\/6{padding-left:83.333333%!important}.\33xl\:pt-1\/12{padding-top:8.333333%!important}.\33xl\:pr-1\/12{padding-right:8.333333%!important}.\33xl\:pb-1\/12{padding-bottom:8.333333%!important}.\33xl\:pl-1\/12{padding-left:8.333333%!important}.\33xl\:pt-2\/12{padding-top:16.666667%!important}.\33xl\:pr-2\/12{padding-right:16.666667%!important}.\33xl\:pb-2\/12{padding-bottom:16.666667%!important}.\33xl\:pl-2\/12{padding-left:16.666667%!important}.\33xl\:pt-3\/12{padding-top:25%!important}.\33xl\:pr-3\/12{padding-right:25%!important}.\33xl\:pb-3\/12{padding-bottom:25%!important}.\33xl\:pl-3\/12{padding-left:25%!important}.\33xl\:pt-4\/12{padding-top:33.333333%!important}.\33xl\:pr-4\/12{padding-right:33.333333%!important}.\33xl\:pb-4\/12{padding-bottom:33.333333%!important}.\33xl\:pl-4\/12{padding-left:33.333333%!important}.\33xl\:pt-5\/12{padding-top:41.666667%!important}.\33xl\:pr-5\/12{padding-right:41.666667%!important}.\33xl\:pb-5\/12{padding-bottom:41.666667%!important}.\33xl\:pl-5\/12{padding-left:41.666667%!important}.\33xl\:pt-6\/12{padding-top:50%!important}.\33xl\:pr-6\/12{padding-right:50%!important}.\33xl\:pb-6\/12{padding-bottom:50%!important}.\33xl\:pl-6\/12{padding-left:50%!important}.\33xl\:pt-7\/12{padding-top:58.333333%!important}.\33xl\:pr-7\/12{padding-right:58.333333%!important}.\33xl\:pb-7\/12{padding-bottom:58.333333%!important}.\33xl\:pl-7\/12{padding-left:58.333333%!important}.\33xl\:pt-8\/12{padding-top:66.666667%!important}.\33xl\:pr-8\/12{padding-right:66.666667%!important}.\33xl\:pb-8\/12{padding-bottom:66.666667%!important}.\33xl\:pl-8\/12{padding-left:66.666667%!important}.\33xl\:pt-9\/12{padding-top:75%!important}.\33xl\:pr-9\/12{padding-right:75%!important}.\33xl\:pb-9\/12{padding-bottom:75%!important}.\33xl\:pl-9\/12{padding-left:75%!important}.\33xl\:pt-10\/12{padding-top:83.333333%!important}.\33xl\:pr-10\/12{padding-right:83.333333%!important}.\33xl\:pb-10\/12{padding-bottom:83.333333%!important}.\33xl\:pl-10\/12{padding-left:83.333333%!important}.\33xl\:pt-11\/12{padding-top:91.666667%!important}.\33xl\:pr-11\/12{padding-right:91.666667%!important}.\33xl\:pb-11\/12{padding-bottom:91.666667%!important}.\33xl\:pl-11\/12{padding-left:91.666667%!important}.\33xl\:pt-full{padding-top:100%!important}.\33xl\:pr-full{padding-right:100%!important}.\33xl\:pb-full{padding-bottom:100%!important}.\33xl\:pl-full{padding-left:100%!important}[dir=ltr] .\33xl\:ltr\:p-0{padding:0!important}[dir=ltr] .\33xl\:ltr\:p-1{padding:.25rem!important}[dir=ltr] .\33xl\:ltr\:p-2{padding:.5rem!important}[dir=ltr] .\33xl\:ltr\:p-3{padding:.75rem!important}[dir=ltr] .\33xl\:ltr\:p-4{padding:1rem!important}[dir=ltr] .\33xl\:ltr\:p-5{padding:1.25rem!important}[dir=ltr] .\33xl\:ltr\:p-6{padding:1.5rem!important}[dir=ltr] .\33xl\:ltr\:p-7{padding:1.75rem!important}[dir=ltr] .\33xl\:ltr\:p-8{padding:2rem!important}[dir=ltr] .\33xl\:ltr\:p-9{padding:2.25rem!important}[dir=ltr] .\33xl\:ltr\:p-10{padding:2.5rem!important}[dir=ltr] .\33xl\:ltr\:p-11{padding:2.75rem!important}[dir=ltr] .\33xl\:ltr\:p-12{padding:3rem!important}[dir=ltr] .\33xl\:ltr\:p-13{padding:3.25rem!important}[dir=ltr] .\33xl\:ltr\:p-14{padding:3.5rem!important}[dir=ltr] .\33xl\:ltr\:p-15{padding:3.75rem!important}[dir=ltr] .\33xl\:ltr\:p-16{padding:4rem!important}[dir=ltr] .\33xl\:ltr\:p-20{padding:5rem!important}[dir=ltr] .\33xl\:ltr\:p-24{padding:6rem!important}[dir=ltr] .\33xl\:ltr\:p-28{padding:7rem!important}[dir=ltr] .\33xl\:ltr\:p-32{padding:8rem!important}[dir=ltr] .\33xl\:ltr\:p-36{padding:9rem!important}[dir=ltr] .\33xl\:ltr\:p-40{padding:10rem!important}[dir=ltr] .\33xl\:ltr\:p-48{padding:12rem!important}[dir=ltr] .\33xl\:ltr\:p-56{padding:14rem!important}[dir=ltr] .\33xl\:ltr\:p-60{padding:15rem!important}[dir=ltr] .\33xl\:ltr\:p-64{padding:16rem!important}[dir=ltr] .\33xl\:ltr\:p-72{padding:18rem!important}[dir=ltr] .\33xl\:ltr\:p-80{padding:20rem!important}[dir=ltr] .\33xl\:ltr\:p-96{padding:24rem!important}[dir=ltr] .\33xl\:ltr\:p-px{padding:1px!important}[dir=ltr] .\33xl\:ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .\33xl\:ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .\33xl\:ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .\33xl\:ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .\33xl\:ltr\:p-1\/2{padding:50%!important}[dir=ltr] .\33xl\:ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .\33xl\:ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .\33xl\:ltr\:p-1\/4{padding:25%!important}[dir=ltr] .\33xl\:ltr\:p-2\/4{padding:50%!important}[dir=ltr] .\33xl\:ltr\:p-3\/4{padding:75%!important}[dir=ltr] .\33xl\:ltr\:p-1\/5{padding:20%!important}[dir=ltr] .\33xl\:ltr\:p-2\/5{padding:40%!important}[dir=ltr] .\33xl\:ltr\:p-3\/5{padding:60%!important}[dir=ltr] .\33xl\:ltr\:p-4\/5{padding:80%!important}[dir=ltr] .\33xl\:ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .\33xl\:ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .\33xl\:ltr\:p-3\/6{padding:50%!important}[dir=ltr] .\33xl\:ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .\33xl\:ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .\33xl\:ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .\33xl\:ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .\33xl\:ltr\:p-3\/12{padding:25%!important}[dir=ltr] .\33xl\:ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .\33xl\:ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .\33xl\:ltr\:p-6\/12{padding:50%!important}[dir=ltr] .\33xl\:ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .\33xl\:ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .\33xl\:ltr\:p-9\/12{padding:75%!important}[dir=ltr] .\33xl\:ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .\33xl\:ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .\33xl\:ltr\:p-full{padding:100%!important}[dir=ltr] .\33xl\:ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .\33xl\:ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .\33xl\:ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .\33xl\:ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .\33xl\:ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .\33xl\:ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .\33xl\:ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .\33xl\:ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .\33xl\:ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .\33xl\:ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .\33xl\:ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .\33xl\:ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .\33xl\:ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .\33xl\:ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .\33xl\:ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .\33xl\:ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .\33xl\:ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .\33xl\:ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .\33xl\:ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .\33xl\:ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .\33xl\:ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .\33xl\:ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .\33xl\:ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .\33xl\:ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .\33xl\:ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .\33xl\:ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .\33xl\:ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .\33xl\:ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .\33xl\:ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .\33xl\:ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .\33xl\:ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .\33xl\:ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .\33xl\:ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .\33xl\:ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .\33xl\:ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .\33xl\:ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .\33xl\:ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .\33xl\:ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .\33xl\:ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .\33xl\:ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .\33xl\:ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .\33xl\:ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .\33xl\:ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .\33xl\:ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .\33xl\:ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .\33xl\:ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .\33xl\:ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .\33xl\:ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .\33xl\:ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .\33xl\:ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .\33xl\:ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .\33xl\:ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .\33xl\:ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .\33xl\:ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .\33xl\:ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .\33xl\:ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .\33xl\:ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .\33xl\:ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .\33xl\:ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .\33xl\:ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .\33xl\:ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .\33xl\:ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .\33xl\:ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .\33xl\:ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .\33xl\:ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .\33xl\:ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .\33xl\:ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .\33xl\:ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .\33xl\:ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .\33xl\:ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .\33xl\:ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .\33xl\:ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .\33xl\:ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .\33xl\:ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .\33xl\:ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .\33xl\:ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .\33xl\:ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .\33xl\:ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .\33xl\:ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .\33xl\:ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .\33xl\:ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .\33xl\:ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .\33xl\:ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .\33xl\:ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .\33xl\:ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .\33xl\:ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .\33xl\:ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .\33xl\:ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .\33xl\:ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .\33xl\:ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .\33xl\:ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .\33xl\:ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .\33xl\:ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .\33xl\:ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .\33xl\:ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .\33xl\:ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .\33xl\:ltr\:pt-0{padding-top:0!important}[dir=ltr] .\33xl\:ltr\:pr-0{padding-right:0!important}[dir=ltr] .\33xl\:ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .\33xl\:ltr\:pl-0{padding-left:0!important}[dir=ltr] .\33xl\:ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .\33xl\:ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .\33xl\:ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .\33xl\:ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .\33xl\:ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .\33xl\:ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .\33xl\:ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .\33xl\:ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .\33xl\:ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .\33xl\:ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .\33xl\:ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .\33xl\:ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .\33xl\:ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .\33xl\:ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .\33xl\:ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .\33xl\:ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .\33xl\:ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .\33xl\:ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .\33xl\:ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .\33xl\:ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .\33xl\:ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .\33xl\:ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .\33xl\:ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .\33xl\:ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .\33xl\:ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .\33xl\:ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .\33xl\:ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .\33xl\:ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .\33xl\:ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .\33xl\:ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .\33xl\:ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .\33xl\:ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .\33xl\:ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .\33xl\:ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .\33xl\:ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .\33xl\:ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .\33xl\:ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .\33xl\:ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .\33xl\:ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .\33xl\:ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .\33xl\:ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .\33xl\:ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .\33xl\:ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .\33xl\:ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .\33xl\:ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .\33xl\:ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .\33xl\:ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .\33xl\:ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .\33xl\:ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .\33xl\:ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .\33xl\:ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .\33xl\:ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .\33xl\:ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .\33xl\:ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .\33xl\:ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .\33xl\:ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .\33xl\:ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .\33xl\:ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .\33xl\:ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .\33xl\:ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .\33xl\:ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .\33xl\:ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .\33xl\:ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .\33xl\:ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .\33xl\:ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .\33xl\:ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .\33xl\:ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .\33xl\:ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .\33xl\:ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .\33xl\:ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .\33xl\:ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .\33xl\:ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .\33xl\:ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .\33xl\:ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .\33xl\:ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .\33xl\:ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .\33xl\:ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .\33xl\:ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .\33xl\:ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .\33xl\:ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .\33xl\:ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .\33xl\:ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .\33xl\:ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .\33xl\:ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .\33xl\:ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .\33xl\:ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .\33xl\:ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .\33xl\:ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .\33xl\:ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .\33xl\:ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .\33xl\:ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .\33xl\:ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .\33xl\:ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .\33xl\:ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .\33xl\:ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .\33xl\:ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .\33xl\:ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .\33xl\:ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .\33xl\:ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .\33xl\:ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .\33xl\:ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .\33xl\:ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .\33xl\:ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .\33xl\:ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .\33xl\:ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .\33xl\:ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .\33xl\:ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .\33xl\:ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .\33xl\:ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .\33xl\:ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .\33xl\:ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .\33xl\:ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .\33xl\:ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .\33xl\:ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .\33xl\:ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .\33xl\:ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .\33xl\:ltr\:pt-px{padding-top:1px!important}[dir=ltr] .\33xl\:ltr\:pr-px{padding-right:1px!important}[dir=ltr] .\33xl\:ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .\33xl\:ltr\:pl-px{padding-left:1px!important}[dir=ltr] .\33xl\:ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .\33xl\:ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .\33xl\:ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .\33xl\:ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .\33xl\:ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .\33xl\:ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .\33xl\:ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .\33xl\:ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .\33xl\:ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .\33xl\:ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .\33xl\:ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .\33xl\:ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .\33xl\:ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .\33xl\:ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .\33xl\:ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .\33xl\:ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .\33xl\:ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .\33xl\:ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .\33xl\:ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .\33xl\:ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .\33xl\:ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .\33xl\:ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .\33xl\:ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .\33xl\:ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .\33xl\:ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .\33xl\:ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .\33xl\:ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .\33xl\:ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .\33xl\:ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .\33xl\:ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .\33xl\:ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .\33xl\:ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .\33xl\:ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .\33xl\:ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .\33xl\:ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .\33xl\:ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .\33xl\:ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .\33xl\:ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .\33xl\:ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .\33xl\:ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .\33xl\:ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .\33xl\:ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .\33xl\:ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .\33xl\:ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .\33xl\:ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .\33xl\:ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .\33xl\:ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .\33xl\:ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .\33xl\:ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .\33xl\:ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .\33xl\:ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .\33xl\:ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .\33xl\:ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .\33xl\:ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .\33xl\:ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .\33xl\:ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .\33xl\:ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .\33xl\:ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .\33xl\:ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .\33xl\:ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .\33xl\:ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .\33xl\:ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .\33xl\:ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .\33xl\:ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .\33xl\:ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .\33xl\:ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .\33xl\:ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .\33xl\:ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .\33xl\:ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .\33xl\:ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .\33xl\:ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .\33xl\:ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .\33xl\:ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .\33xl\:ltr\:pt-full{padding-top:100%!important}[dir=ltr] .\33xl\:ltr\:pr-full{padding-right:100%!important}[dir=ltr] .\33xl\:ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .\33xl\:ltr\:pl-full{padding-left:100%!important}[dir=rtl] .\33xl\:rtl\:p-0{padding:0!important}[dir=rtl] .\33xl\:rtl\:p-1{padding:.25rem!important}[dir=rtl] .\33xl\:rtl\:p-2{padding:.5rem!important}[dir=rtl] .\33xl\:rtl\:p-3{padding:.75rem!important}[dir=rtl] .\33xl\:rtl\:p-4{padding:1rem!important}[dir=rtl] .\33xl\:rtl\:p-5{padding:1.25rem!important}[dir=rtl] .\33xl\:rtl\:p-6{padding:1.5rem!important}[dir=rtl] .\33xl\:rtl\:p-7{padding:1.75rem!important}[dir=rtl] .\33xl\:rtl\:p-8{padding:2rem!important}[dir=rtl] .\33xl\:rtl\:p-9{padding:2.25rem!important}[dir=rtl] .\33xl\:rtl\:p-10{padding:2.5rem!important}[dir=rtl] .\33xl\:rtl\:p-11{padding:2.75rem!important}[dir=rtl] .\33xl\:rtl\:p-12{padding:3rem!important}[dir=rtl] .\33xl\:rtl\:p-13{padding:3.25rem!important}[dir=rtl] .\33xl\:rtl\:p-14{padding:3.5rem!important}[dir=rtl] .\33xl\:rtl\:p-15{padding:3.75rem!important}[dir=rtl] .\33xl\:rtl\:p-16{padding:4rem!important}[dir=rtl] .\33xl\:rtl\:p-20{padding:5rem!important}[dir=rtl] .\33xl\:rtl\:p-24{padding:6rem!important}[dir=rtl] .\33xl\:rtl\:p-28{padding:7rem!important}[dir=rtl] .\33xl\:rtl\:p-32{padding:8rem!important}[dir=rtl] .\33xl\:rtl\:p-36{padding:9rem!important}[dir=rtl] .\33xl\:rtl\:p-40{padding:10rem!important}[dir=rtl] .\33xl\:rtl\:p-48{padding:12rem!important}[dir=rtl] .\33xl\:rtl\:p-56{padding:14rem!important}[dir=rtl] .\33xl\:rtl\:p-60{padding:15rem!important}[dir=rtl] .\33xl\:rtl\:p-64{padding:16rem!important}[dir=rtl] .\33xl\:rtl\:p-72{padding:18rem!important}[dir=rtl] .\33xl\:rtl\:p-80{padding:20rem!important}[dir=rtl] .\33xl\:rtl\:p-96{padding:24rem!important}[dir=rtl] .\33xl\:rtl\:p-px{padding:1px!important}[dir=rtl] .\33xl\:rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .\33xl\:rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .\33xl\:rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .\33xl\:rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .\33xl\:rtl\:p-1\/2{padding:50%!important}[dir=rtl] .\33xl\:rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .\33xl\:rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .\33xl\:rtl\:p-1\/4{padding:25%!important}[dir=rtl] .\33xl\:rtl\:p-2\/4{padding:50%!important}[dir=rtl] .\33xl\:rtl\:p-3\/4{padding:75%!important}[dir=rtl] .\33xl\:rtl\:p-1\/5{padding:20%!important}[dir=rtl] .\33xl\:rtl\:p-2\/5{padding:40%!important}[dir=rtl] .\33xl\:rtl\:p-3\/5{padding:60%!important}[dir=rtl] .\33xl\:rtl\:p-4\/5{padding:80%!important}[dir=rtl] .\33xl\:rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .\33xl\:rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .\33xl\:rtl\:p-3\/6{padding:50%!important}[dir=rtl] .\33xl\:rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .\33xl\:rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .\33xl\:rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .\33xl\:rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .\33xl\:rtl\:p-3\/12{padding:25%!important}[dir=rtl] .\33xl\:rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .\33xl\:rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .\33xl\:rtl\:p-6\/12{padding:50%!important}[dir=rtl] .\33xl\:rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .\33xl\:rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .\33xl\:rtl\:p-9\/12{padding:75%!important}[dir=rtl] .\33xl\:rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .\33xl\:rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .\33xl\:rtl\:p-full{padding:100%!important}[dir=rtl] .\33xl\:rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .\33xl\:rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .\33xl\:rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .\33xl\:rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .\33xl\:rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .\33xl\:rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .\33xl\:rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .\33xl\:rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .\33xl\:rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .\33xl\:rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .\33xl\:rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .\33xl\:rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .\33xl\:rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .\33xl\:rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .\33xl\:rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .\33xl\:rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .\33xl\:rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .\33xl\:rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .\33xl\:rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .\33xl\:rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .\33xl\:rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .\33xl\:rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .\33xl\:rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .\33xl\:rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .\33xl\:rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .\33xl\:rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .\33xl\:rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .\33xl\:rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .\33xl\:rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .\33xl\:rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .\33xl\:rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .\33xl\:rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .\33xl\:rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .\33xl\:rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .\33xl\:rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .\33xl\:rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .\33xl\:rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .\33xl\:rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .\33xl\:rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .\33xl\:rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .\33xl\:rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .\33xl\:rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .\33xl\:rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .\33xl\:rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .\33xl\:rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .\33xl\:rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .\33xl\:rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .\33xl\:rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .\33xl\:rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .\33xl\:rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .\33xl\:rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .\33xl\:rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .\33xl\:rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .\33xl\:rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .\33xl\:rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .\33xl\:rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .\33xl\:rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .\33xl\:rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .\33xl\:rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .\33xl\:rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .\33xl\:rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .\33xl\:rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .\33xl\:rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .\33xl\:rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .\33xl\:rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .\33xl\:rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .\33xl\:rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .\33xl\:rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .\33xl\:rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .\33xl\:rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .\33xl\:rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .\33xl\:rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .\33xl\:rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .\33xl\:rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .\33xl\:rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .\33xl\:rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .\33xl\:rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .\33xl\:rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .\33xl\:rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .\33xl\:rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .\33xl\:rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .\33xl\:rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .\33xl\:rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .\33xl\:rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .\33xl\:rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .\33xl\:rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .\33xl\:rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .\33xl\:rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .\33xl\:rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .\33xl\:rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .\33xl\:rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .\33xl\:rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .\33xl\:rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .\33xl\:rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .\33xl\:rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .\33xl\:rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .\33xl\:rtl\:pt-0{padding-top:0!important}[dir=rtl] .\33xl\:rtl\:pr-0{padding-right:0!important}[dir=rtl] .\33xl\:rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .\33xl\:rtl\:pl-0{padding-left:0!important}[dir=rtl] .\33xl\:rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .\33xl\:rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .\33xl\:rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .\33xl\:rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .\33xl\:rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .\33xl\:rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .\33xl\:rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .\33xl\:rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .\33xl\:rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .\33xl\:rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .\33xl\:rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .\33xl\:rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .\33xl\:rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .\33xl\:rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .\33xl\:rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .\33xl\:rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .\33xl\:rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .\33xl\:rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .\33xl\:rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .\33xl\:rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .\33xl\:rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .\33xl\:rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .\33xl\:rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .\33xl\:rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .\33xl\:rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .\33xl\:rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .\33xl\:rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .\33xl\:rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .\33xl\:rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .\33xl\:rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .\33xl\:rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .\33xl\:rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .\33xl\:rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .\33xl\:rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .\33xl\:rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .\33xl\:rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .\33xl\:rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .\33xl\:rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .\33xl\:rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .\33xl\:rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .\33xl\:rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .\33xl\:rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .\33xl\:rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .\33xl\:rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .\33xl\:rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .\33xl\:rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .\33xl\:rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .\33xl\:rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .\33xl\:rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .\33xl\:rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .\33xl\:rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .\33xl\:rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .\33xl\:rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .\33xl\:rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .\33xl\:rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .\33xl\:rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .\33xl\:rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .\33xl\:rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .\33xl\:rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .\33xl\:rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .\33xl\:rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .\33xl\:rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .\33xl\:rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .\33xl\:rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .\33xl\:rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .\33xl\:rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .\33xl\:rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .\33xl\:rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .\33xl\:rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .\33xl\:rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .\33xl\:rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .\33xl\:rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .\33xl\:rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .\33xl\:rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .\33xl\:rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .\33xl\:rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .\33xl\:rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .\33xl\:rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .\33xl\:rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .\33xl\:rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .\33xl\:rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .\33xl\:rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .\33xl\:rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .\33xl\:rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .\33xl\:rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .\33xl\:rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .\33xl\:rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .\33xl\:rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .\33xl\:rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .\33xl\:rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .\33xl\:rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .\33xl\:rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .\33xl\:rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .\33xl\:rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .\33xl\:rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .\33xl\:rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .\33xl\:rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .\33xl\:rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .\33xl\:rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .\33xl\:rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .\33xl\:rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .\33xl\:rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .\33xl\:rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .\33xl\:rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .\33xl\:rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .\33xl\:rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .\33xl\:rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .\33xl\:rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .\33xl\:rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .\33xl\:rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .\33xl\:rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .\33xl\:rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .\33xl\:rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .\33xl\:rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .\33xl\:rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .\33xl\:rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .\33xl\:rtl\:pt-px{padding-top:1px!important}[dir=rtl] .\33xl\:rtl\:pr-px{padding-right:1px!important}[dir=rtl] .\33xl\:rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .\33xl\:rtl\:pl-px{padding-left:1px!important}[dir=rtl] .\33xl\:rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .\33xl\:rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .\33xl\:rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .\33xl\:rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .\33xl\:rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .\33xl\:rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .\33xl\:rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .\33xl\:rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .\33xl\:rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .\33xl\:rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .\33xl\:rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .\33xl\:rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .\33xl\:rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .\33xl\:rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .\33xl\:rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .\33xl\:rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .\33xl\:rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .\33xl\:rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .\33xl\:rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .\33xl\:rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .\33xl\:rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .\33xl\:rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .\33xl\:rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .\33xl\:rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .\33xl\:rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .\33xl\:rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .\33xl\:rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .\33xl\:rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .\33xl\:rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .\33xl\:rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .\33xl\:rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .\33xl\:rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .\33xl\:rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .\33xl\:rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .\33xl\:rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .\33xl\:rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .\33xl\:rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .\33xl\:rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .\33xl\:rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .\33xl\:rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .\33xl\:rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .\33xl\:rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .\33xl\:rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .\33xl\:rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .\33xl\:rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .\33xl\:rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .\33xl\:rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .\33xl\:rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .\33xl\:rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .\33xl\:rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .\33xl\:rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .\33xl\:rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .\33xl\:rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .\33xl\:rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .\33xl\:rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .\33xl\:rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .\33xl\:rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .\33xl\:rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .\33xl\:rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .\33xl\:rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .\33xl\:rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .\33xl\:rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .\33xl\:rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .\33xl\:rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .\33xl\:rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .\33xl\:rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .\33xl\:rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .\33xl\:rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .\33xl\:rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .\33xl\:rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .\33xl\:rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .\33xl\:rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .\33xl\:rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .\33xl\:rtl\:pt-full{padding-top:100%!important}[dir=rtl] .\33xl\:rtl\:pr-full{padding-right:100%!important}[dir=rtl] .\33xl\:rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .\33xl\:rtl\:pl-full{padding-left:100%!important}.\33xl\:placeholder-transparent::-moz-placeholder{color:transparent!important}.\33xl\:placeholder-transparent::placeholder{color:transparent!important}.\33xl\:placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\33xl\:placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\33xl\:placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.\33xl\:placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.\33xl\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\33xl\:placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\33xl\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.\33xl\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.\33xl\:placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\33xl\:placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\33xl\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\33xl\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.\33xl\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.\33xl\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\33xl\:placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\33xl\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\33xl\:placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\33xl\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\33xl\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\33xl\:placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\33xl\:placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\33xl\:placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\33xl\:placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\33xl\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\33xl\:placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\33xl\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\33xl\:placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.\33xl\:focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.\33xl\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.\33xl\:focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.\33xl\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.\33xl\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.\33xl\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.\33xl\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.\33xl\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\33xl\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\33xl\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.\33xl\:placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.\33xl\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.\33xl\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.\33xl\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.\33xl\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.\33xl\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.\33xl\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.\33xl\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.\33xl\:placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.\33xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.\33xl\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.\33xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.\33xl\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.\33xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.\33xl\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.\33xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.\33xl\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.\33xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.\33xl\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.\33xl\:pointer-events-none{pointer-events:none!important}.\33xl\:pointer-events-auto{pointer-events:auto!important}.\33xl\:static{position:static!important}.\33xl\:fixed{position:fixed!important}.\33xl\:absolute{position:absolute!important}.\33xl\:relative{position:relative!important}.\33xl\:sticky{position:sticky!important}.\33xl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.\33xl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.\33xl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.\33xl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.\33xl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.\33xl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.\33xl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.\33xl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.\33xl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.\33xl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.\33xl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.\33xl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.\33xl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.\33xl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.\33xl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.\33xl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.\33xl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.\33xl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.\33xl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.\33xl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.\33xl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.\33xl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.\33xl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.\33xl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.\33xl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.\33xl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.\33xl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.\33xl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.\33xl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.\33xl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.\33xl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.\33xl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.\33xl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.\33xl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.\33xl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.\33xl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.\33xl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\33xl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\33xl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\33xl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.\33xl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\33xl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.\33xl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.\33xl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.\33xl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.\33xl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.\33xl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.\33xl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\33xl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\33xl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\33xl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.\33xl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.\33xl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.\33xl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.\33xl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\33xl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.\33xl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\33xl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.\33xl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\33xl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.\33xl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.\33xl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.\33xl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.\33xl\:inset-y-0{bottom:0!important;top:0!important}.\33xl\:inset-x-0{left:0!important;right:0!important}.\33xl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}.\33xl\:inset-x-1{left:.25rem!important;right:.25rem!important}.\33xl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}.\33xl\:inset-x-2{left:.5rem!important;right:.5rem!important}.\33xl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}.\33xl\:inset-x-3{left:.75rem!important;right:.75rem!important}.\33xl\:inset-y-4{bottom:1rem!important;top:1rem!important}.\33xl\:inset-x-4{left:1rem!important;right:1rem!important}.\33xl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.\33xl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}.\33xl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.\33xl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}.\33xl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.\33xl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}.\33xl\:inset-y-8{bottom:2rem!important;top:2rem!important}.\33xl\:inset-x-8{left:2rem!important;right:2rem!important}.\33xl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.\33xl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}.\33xl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.\33xl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}.\33xl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.\33xl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}.\33xl\:inset-y-12{bottom:3rem!important;top:3rem!important}.\33xl\:inset-x-12{left:3rem!important;right:3rem!important}.\33xl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.\33xl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}.\33xl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.\33xl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}.\33xl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.\33xl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}.\33xl\:inset-y-16{bottom:4rem!important;top:4rem!important}.\33xl\:inset-x-16{left:4rem!important;right:4rem!important}.\33xl\:inset-y-20{bottom:5rem!important;top:5rem!important}.\33xl\:inset-x-20{left:5rem!important;right:5rem!important}.\33xl\:inset-y-24{bottom:6rem!important;top:6rem!important}.\33xl\:inset-x-24{left:6rem!important;right:6rem!important}.\33xl\:inset-y-28{bottom:7rem!important;top:7rem!important}.\33xl\:inset-x-28{left:7rem!important;right:7rem!important}.\33xl\:inset-y-32{bottom:8rem!important;top:8rem!important}.\33xl\:inset-x-32{left:8rem!important;right:8rem!important}.\33xl\:inset-y-36{bottom:9rem!important;top:9rem!important}.\33xl\:inset-x-36{left:9rem!important;right:9rem!important}.\33xl\:inset-y-40{bottom:10rem!important;top:10rem!important}.\33xl\:inset-x-40{left:10rem!important;right:10rem!important}.\33xl\:inset-y-48{bottom:12rem!important;top:12rem!important}.\33xl\:inset-x-48{left:12rem!important;right:12rem!important}.\33xl\:inset-y-56{bottom:14rem!important;top:14rem!important}.\33xl\:inset-x-56{left:14rem!important;right:14rem!important}.\33xl\:inset-y-60{bottom:15rem!important;top:15rem!important}.\33xl\:inset-x-60{left:15rem!important;right:15rem!important}.\33xl\:inset-y-64{bottom:16rem!important;top:16rem!important}.\33xl\:inset-x-64{left:16rem!important;right:16rem!important}.\33xl\:inset-y-72{bottom:18rem!important;top:18rem!important}.\33xl\:inset-x-72{left:18rem!important;right:18rem!important}.\33xl\:inset-y-80{bottom:20rem!important;top:20rem!important}.\33xl\:inset-x-80{left:20rem!important;right:20rem!important}.\33xl\:inset-y-96{bottom:24rem!important;top:24rem!important}.\33xl\:inset-x-96{left:24rem!important;right:24rem!important}.\33xl\:inset-y-auto{bottom:auto!important;top:auto!important}.\33xl\:inset-x-auto{left:auto!important;right:auto!important}.\33xl\:inset-y-px{bottom:1px!important;top:1px!important}.\33xl\:inset-x-px{left:1px!important;right:1px!important}.\33xl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.\33xl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}.\33xl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.\33xl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}.\33xl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.\33xl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}.\33xl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.\33xl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}.\33xl\:inset-y-1\/2{bottom:50%!important;top:50%!important}.\33xl\:inset-x-1\/2{left:50%!important;right:50%!important}.\33xl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.\33xl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.\33xl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.\33xl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.\33xl\:inset-y-1\/4{bottom:25%!important;top:25%!important}.\33xl\:inset-x-1\/4{left:25%!important;right:25%!important}.\33xl\:inset-y-2\/4{bottom:50%!important;top:50%!important}.\33xl\:inset-x-2\/4{left:50%!important;right:50%!important}.\33xl\:inset-y-3\/4{bottom:75%!important;top:75%!important}.\33xl\:inset-x-3\/4{left:75%!important;right:75%!important}.\33xl\:inset-y-1\/5{bottom:20%!important;top:20%!important}.\33xl\:inset-x-1\/5{left:20%!important;right:20%!important}.\33xl\:inset-y-2\/5{bottom:40%!important;top:40%!important}.\33xl\:inset-x-2\/5{left:40%!important;right:40%!important}.\33xl\:inset-y-3\/5{bottom:60%!important;top:60%!important}.\33xl\:inset-x-3\/5{left:60%!important;right:60%!important}.\33xl\:inset-y-4\/5{bottom:80%!important;top:80%!important}.\33xl\:inset-x-4\/5{left:80%!important;right:80%!important}.\33xl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.\33xl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.\33xl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.\33xl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.\33xl\:inset-y-3\/6{bottom:50%!important;top:50%!important}.\33xl\:inset-x-3\/6{left:50%!important;right:50%!important}.\33xl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.\33xl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.\33xl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.\33xl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.\33xl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.\33xl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.\33xl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.\33xl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.\33xl\:inset-y-3\/12{bottom:25%!important;top:25%!important}.\33xl\:inset-x-3\/12{left:25%!important;right:25%!important}.\33xl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.\33xl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.\33xl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.\33xl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.\33xl\:inset-y-6\/12{bottom:50%!important;top:50%!important}.\33xl\:inset-x-6\/12{left:50%!important;right:50%!important}.\33xl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.\33xl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.\33xl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.\33xl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.\33xl\:inset-y-9\/12{bottom:75%!important;top:75%!important}.\33xl\:inset-x-9\/12{left:75%!important;right:75%!important}.\33xl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.\33xl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.\33xl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.\33xl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.\33xl\:inset-y-full{bottom:100%!important;top:100%!important}.\33xl\:inset-x-full{left:100%!important;right:100%!important}.\33xl\:top-0{top:0!important}.\33xl\:right-0{right:0!important}.\33xl\:bottom-0{bottom:0!important}.\33xl\:left-0{left:0!important}.\33xl\:top-1{top:.25rem!important}.\33xl\:right-1{right:.25rem!important}.\33xl\:bottom-1{bottom:.25rem!important}.\33xl\:left-1{left:.25rem!important}.\33xl\:top-2{top:.5rem!important}.\33xl\:right-2{right:.5rem!important}.\33xl\:bottom-2{bottom:.5rem!important}.\33xl\:left-2{left:.5rem!important}.\33xl\:top-3{top:.75rem!important}.\33xl\:right-3{right:.75rem!important}.\33xl\:bottom-3{bottom:.75rem!important}.\33xl\:left-3{left:.75rem!important}.\33xl\:top-4{top:1rem!important}.\33xl\:right-4{right:1rem!important}.\33xl\:bottom-4{bottom:1rem!important}.\33xl\:left-4{left:1rem!important}.\33xl\:top-5{top:1.25rem!important}.\33xl\:right-5{right:1.25rem!important}.\33xl\:bottom-5{bottom:1.25rem!important}.\33xl\:left-5{left:1.25rem!important}.\33xl\:top-6{top:1.5rem!important}.\33xl\:right-6{right:1.5rem!important}.\33xl\:bottom-6{bottom:1.5rem!important}.\33xl\:left-6{left:1.5rem!important}.\33xl\:top-7{top:1.75rem!important}.\33xl\:right-7{right:1.75rem!important}.\33xl\:bottom-7{bottom:1.75rem!important}.\33xl\:left-7{left:1.75rem!important}.\33xl\:top-8{top:2rem!important}.\33xl\:right-8{right:2rem!important}.\33xl\:bottom-8{bottom:2rem!important}.\33xl\:left-8{left:2rem!important}.\33xl\:top-9{top:2.25rem!important}.\33xl\:right-9{right:2.25rem!important}.\33xl\:bottom-9{bottom:2.25rem!important}.\33xl\:left-9{left:2.25rem!important}.\33xl\:top-10{top:2.5rem!important}.\33xl\:right-10{right:2.5rem!important}.\33xl\:bottom-10{bottom:2.5rem!important}.\33xl\:left-10{left:2.5rem!important}.\33xl\:top-11{top:2.75rem!important}.\33xl\:right-11{right:2.75rem!important}.\33xl\:bottom-11{bottom:2.75rem!important}.\33xl\:left-11{left:2.75rem!important}.\33xl\:top-12{top:3rem!important}.\33xl\:right-12{right:3rem!important}.\33xl\:bottom-12{bottom:3rem!important}.\33xl\:left-12{left:3rem!important}.\33xl\:top-13{top:3.25rem!important}.\33xl\:right-13{right:3.25rem!important}.\33xl\:bottom-13{bottom:3.25rem!important}.\33xl\:left-13{left:3.25rem!important}.\33xl\:top-14{top:3.5rem!important}.\33xl\:right-14{right:3.5rem!important}.\33xl\:bottom-14{bottom:3.5rem!important}.\33xl\:left-14{left:3.5rem!important}.\33xl\:top-15{top:3.75rem!important}.\33xl\:right-15{right:3.75rem!important}.\33xl\:bottom-15{bottom:3.75rem!important}.\33xl\:left-15{left:3.75rem!important}.\33xl\:top-16{top:4rem!important}.\33xl\:right-16{right:4rem!important}.\33xl\:bottom-16{bottom:4rem!important}.\33xl\:left-16{left:4rem!important}.\33xl\:top-20{top:5rem!important}.\33xl\:right-20{right:5rem!important}.\33xl\:bottom-20{bottom:5rem!important}.\33xl\:left-20{left:5rem!important}.\33xl\:top-24{top:6rem!important}.\33xl\:right-24{right:6rem!important}.\33xl\:bottom-24{bottom:6rem!important}.\33xl\:left-24{left:6rem!important}.\33xl\:top-28{top:7rem!important}.\33xl\:right-28{right:7rem!important}.\33xl\:bottom-28{bottom:7rem!important}.\33xl\:left-28{left:7rem!important}.\33xl\:top-32{top:8rem!important}.\33xl\:right-32{right:8rem!important}.\33xl\:bottom-32{bottom:8rem!important}.\33xl\:left-32{left:8rem!important}.\33xl\:top-36{top:9rem!important}.\33xl\:right-36{right:9rem!important}.\33xl\:bottom-36{bottom:9rem!important}.\33xl\:left-36{left:9rem!important}.\33xl\:top-40{top:10rem!important}.\33xl\:right-40{right:10rem!important}.\33xl\:bottom-40{bottom:10rem!important}.\33xl\:left-40{left:10rem!important}.\33xl\:top-48{top:12rem!important}.\33xl\:right-48{right:12rem!important}.\33xl\:bottom-48{bottom:12rem!important}.\33xl\:left-48{left:12rem!important}.\33xl\:top-56{top:14rem!important}.\33xl\:right-56{right:14rem!important}.\33xl\:bottom-56{bottom:14rem!important}.\33xl\:left-56{left:14rem!important}.\33xl\:top-60{top:15rem!important}.\33xl\:right-60{right:15rem!important}.\33xl\:bottom-60{bottom:15rem!important}.\33xl\:left-60{left:15rem!important}.\33xl\:top-64{top:16rem!important}.\33xl\:right-64{right:16rem!important}.\33xl\:bottom-64{bottom:16rem!important}.\33xl\:left-64{left:16rem!important}.\33xl\:top-72{top:18rem!important}.\33xl\:right-72{right:18rem!important}.\33xl\:bottom-72{bottom:18rem!important}.\33xl\:left-72{left:18rem!important}.\33xl\:top-80{top:20rem!important}.\33xl\:right-80{right:20rem!important}.\33xl\:bottom-80{bottom:20rem!important}.\33xl\:left-80{left:20rem!important}.\33xl\:top-96{top:24rem!important}.\33xl\:right-96{right:24rem!important}.\33xl\:bottom-96{bottom:24rem!important}.\33xl\:left-96{left:24rem!important}.\33xl\:top-auto{top:auto!important}.\33xl\:right-auto{right:auto!important}.\33xl\:bottom-auto{bottom:auto!important}.\33xl\:left-auto{left:auto!important}.\33xl\:top-px{top:1px!important}.\33xl\:right-px{right:1px!important}.\33xl\:bottom-px{bottom:1px!important}.\33xl\:left-px{left:1px!important}.\33xl\:top-0\.5{top:.125rem!important}.\33xl\:right-0\.5{right:.125rem!important}.\33xl\:bottom-0\.5{bottom:.125rem!important}.\33xl\:left-0\.5{left:.125rem!important}.\33xl\:top-1\.5{top:.375rem!important}.\33xl\:right-1\.5{right:.375rem!important}.\33xl\:bottom-1\.5{bottom:.375rem!important}.\33xl\:left-1\.5{left:.375rem!important}.\33xl\:top-2\.5{top:.625rem!important}.\33xl\:right-2\.5{right:.625rem!important}.\33xl\:bottom-2\.5{bottom:.625rem!important}.\33xl\:left-2\.5{left:.625rem!important}.\33xl\:top-3\.5{top:.875rem!important}.\33xl\:right-3\.5{right:.875rem!important}.\33xl\:bottom-3\.5{bottom:.875rem!important}.\33xl\:left-3\.5{left:.875rem!important}.\33xl\:top-1\/2{top:50%!important}.\33xl\:right-1\/2{right:50%!important}.\33xl\:bottom-1\/2{bottom:50%!important}.\33xl\:left-1\/2{left:50%!important}.\33xl\:top-1\/3{top:33.333333%!important}.\33xl\:right-1\/3{right:33.333333%!important}.\33xl\:bottom-1\/3{bottom:33.333333%!important}.\33xl\:left-1\/3{left:33.333333%!important}.\33xl\:top-2\/3{top:66.666667%!important}.\33xl\:right-2\/3{right:66.666667%!important}.\33xl\:bottom-2\/3{bottom:66.666667%!important}.\33xl\:left-2\/3{left:66.666667%!important}.\33xl\:top-1\/4{top:25%!important}.\33xl\:right-1\/4{right:25%!important}.\33xl\:bottom-1\/4{bottom:25%!important}.\33xl\:left-1\/4{left:25%!important}.\33xl\:top-2\/4{top:50%!important}.\33xl\:right-2\/4{right:50%!important}.\33xl\:bottom-2\/4{bottom:50%!important}.\33xl\:left-2\/4{left:50%!important}.\33xl\:top-3\/4{top:75%!important}.\33xl\:right-3\/4{right:75%!important}.\33xl\:bottom-3\/4{bottom:75%!important}.\33xl\:left-3\/4{left:75%!important}.\33xl\:top-1\/5{top:20%!important}.\33xl\:right-1\/5{right:20%!important}.\33xl\:bottom-1\/5{bottom:20%!important}.\33xl\:left-1\/5{left:20%!important}.\33xl\:top-2\/5{top:40%!important}.\33xl\:right-2\/5{right:40%!important}.\33xl\:bottom-2\/5{bottom:40%!important}.\33xl\:left-2\/5{left:40%!important}.\33xl\:top-3\/5{top:60%!important}.\33xl\:right-3\/5{right:60%!important}.\33xl\:bottom-3\/5{bottom:60%!important}.\33xl\:left-3\/5{left:60%!important}.\33xl\:top-4\/5{top:80%!important}.\33xl\:right-4\/5{right:80%!important}.\33xl\:bottom-4\/5{bottom:80%!important}.\33xl\:left-4\/5{left:80%!important}.\33xl\:top-1\/6{top:16.666667%!important}.\33xl\:right-1\/6{right:16.666667%!important}.\33xl\:bottom-1\/6{bottom:16.666667%!important}.\33xl\:left-1\/6{left:16.666667%!important}.\33xl\:top-2\/6{top:33.333333%!important}.\33xl\:right-2\/6{right:33.333333%!important}.\33xl\:bottom-2\/6{bottom:33.333333%!important}.\33xl\:left-2\/6{left:33.333333%!important}.\33xl\:top-3\/6{top:50%!important}.\33xl\:right-3\/6{right:50%!important}.\33xl\:bottom-3\/6{bottom:50%!important}.\33xl\:left-3\/6{left:50%!important}.\33xl\:top-4\/6{top:66.666667%!important}.\33xl\:right-4\/6{right:66.666667%!important}.\33xl\:bottom-4\/6{bottom:66.666667%!important}.\33xl\:left-4\/6{left:66.666667%!important}.\33xl\:top-5\/6{top:83.333333%!important}.\33xl\:right-5\/6{right:83.333333%!important}.\33xl\:bottom-5\/6{bottom:83.333333%!important}.\33xl\:left-5\/6{left:83.333333%!important}.\33xl\:top-1\/12{top:8.333333%!important}.\33xl\:right-1\/12{right:8.333333%!important}.\33xl\:bottom-1\/12{bottom:8.333333%!important}.\33xl\:left-1\/12{left:8.333333%!important}.\33xl\:top-2\/12{top:16.666667%!important}.\33xl\:right-2\/12{right:16.666667%!important}.\33xl\:bottom-2\/12{bottom:16.666667%!important}.\33xl\:left-2\/12{left:16.666667%!important}.\33xl\:top-3\/12{top:25%!important}.\33xl\:right-3\/12{right:25%!important}.\33xl\:bottom-3\/12{bottom:25%!important}.\33xl\:left-3\/12{left:25%!important}.\33xl\:top-4\/12{top:33.333333%!important}.\33xl\:right-4\/12{right:33.333333%!important}.\33xl\:bottom-4\/12{bottom:33.333333%!important}.\33xl\:left-4\/12{left:33.333333%!important}.\33xl\:top-5\/12{top:41.666667%!important}.\33xl\:right-5\/12{right:41.666667%!important}.\33xl\:bottom-5\/12{bottom:41.666667%!important}.\33xl\:left-5\/12{left:41.666667%!important}.\33xl\:top-6\/12{top:50%!important}.\33xl\:right-6\/12{right:50%!important}.\33xl\:bottom-6\/12{bottom:50%!important}.\33xl\:left-6\/12{left:50%!important}.\33xl\:top-7\/12{top:58.333333%!important}.\33xl\:right-7\/12{right:58.333333%!important}.\33xl\:bottom-7\/12{bottom:58.333333%!important}.\33xl\:left-7\/12{left:58.333333%!important}.\33xl\:top-8\/12{top:66.666667%!important}.\33xl\:right-8\/12{right:66.666667%!important}.\33xl\:bottom-8\/12{bottom:66.666667%!important}.\33xl\:left-8\/12{left:66.666667%!important}.\33xl\:top-9\/12{top:75%!important}.\33xl\:right-9\/12{right:75%!important}.\33xl\:bottom-9\/12{bottom:75%!important}.\33xl\:left-9\/12{left:75%!important}.\33xl\:top-10\/12{top:83.333333%!important}.\33xl\:right-10\/12{right:83.333333%!important}.\33xl\:bottom-10\/12{bottom:83.333333%!important}.\33xl\:left-10\/12{left:83.333333%!important}.\33xl\:top-11\/12{top:91.666667%!important}.\33xl\:right-11\/12{right:91.666667%!important}.\33xl\:bottom-11\/12{bottom:91.666667%!important}.\33xl\:left-11\/12{left:91.666667%!important}.\33xl\:top-full{top:100%!important}.\33xl\:right-full{right:100%!important}.\33xl\:bottom-full{bottom:100%!important}.\33xl\:left-full{left:100%!important}[dir=ltr] .\33xl\:ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .\33xl\:ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .\33xl\:ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .\33xl\:ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .\33xl\:ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .\33xl\:ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .\33xl\:ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .\33xl\:ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .\33xl\:ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .\33xl\:ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .\33xl\:ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .\33xl\:ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .\33xl\:ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .\33xl\:ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .\33xl\:ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .\33xl\:ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .\33xl\:ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .\33xl\:ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .\33xl\:ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .\33xl\:ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .\33xl\:ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .\33xl\:ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .\33xl\:ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .\33xl\:ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .\33xl\:ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .\33xl\:ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .\33xl\:ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .\33xl\:ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .\33xl\:ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .\33xl\:ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .\33xl\:ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .\33xl\:ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .\33xl\:ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .\33xl\:ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .\33xl\:ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .\33xl\:ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .\33xl\:ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .\33xl\:ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .\33xl\:ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .\33xl\:ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .\33xl\:ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .\33xl\:ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .\33xl\:ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .\33xl\:ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .\33xl\:ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .\33xl\:ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .\33xl\:ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .\33xl\:ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .\33xl\:ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .\33xl\:ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .\33xl\:ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .\33xl\:ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .\33xl\:ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .\33xl\:ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .\33xl\:ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .\33xl\:ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .\33xl\:ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .\33xl\:ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .\33xl\:ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .\33xl\:ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .\33xl\:ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .\33xl\:ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .\33xl\:ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .\33xl\:ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .\33xl\:ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .\33xl\:ltr\:top-0{top:0!important}[dir=ltr] .\33xl\:ltr\:right-0{right:0!important}[dir=ltr] .\33xl\:ltr\:bottom-0{bottom:0!important}[dir=ltr] .\33xl\:ltr\:left-0{left:0!important}[dir=ltr] .\33xl\:ltr\:top-1{top:.25rem!important}[dir=ltr] .\33xl\:ltr\:right-1{right:.25rem!important}[dir=ltr] .\33xl\:ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .\33xl\:ltr\:left-1{left:.25rem!important}[dir=ltr] .\33xl\:ltr\:top-2{top:.5rem!important}[dir=ltr] .\33xl\:ltr\:right-2{right:.5rem!important}[dir=ltr] .\33xl\:ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .\33xl\:ltr\:left-2{left:.5rem!important}[dir=ltr] .\33xl\:ltr\:top-3{top:.75rem!important}[dir=ltr] .\33xl\:ltr\:right-3{right:.75rem!important}[dir=ltr] .\33xl\:ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .\33xl\:ltr\:left-3{left:.75rem!important}[dir=ltr] .\33xl\:ltr\:top-4{top:1rem!important}[dir=ltr] .\33xl\:ltr\:right-4{right:1rem!important}[dir=ltr] .\33xl\:ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .\33xl\:ltr\:left-4{left:1rem!important}[dir=ltr] .\33xl\:ltr\:top-5{top:1.25rem!important}[dir=ltr] .\33xl\:ltr\:right-5{right:1.25rem!important}[dir=ltr] .\33xl\:ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .\33xl\:ltr\:left-5{left:1.25rem!important}[dir=ltr] .\33xl\:ltr\:top-6{top:1.5rem!important}[dir=ltr] .\33xl\:ltr\:right-6{right:1.5rem!important}[dir=ltr] .\33xl\:ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .\33xl\:ltr\:left-6{left:1.5rem!important}[dir=ltr] .\33xl\:ltr\:top-7{top:1.75rem!important}[dir=ltr] .\33xl\:ltr\:right-7{right:1.75rem!important}[dir=ltr] .\33xl\:ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .\33xl\:ltr\:left-7{left:1.75rem!important}[dir=ltr] .\33xl\:ltr\:top-8{top:2rem!important}[dir=ltr] .\33xl\:ltr\:right-8{right:2rem!important}[dir=ltr] .\33xl\:ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .\33xl\:ltr\:left-8{left:2rem!important}[dir=ltr] .\33xl\:ltr\:top-9{top:2.25rem!important}[dir=ltr] .\33xl\:ltr\:right-9{right:2.25rem!important}[dir=ltr] .\33xl\:ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .\33xl\:ltr\:left-9{left:2.25rem!important}[dir=ltr] .\33xl\:ltr\:top-10{top:2.5rem!important}[dir=ltr] .\33xl\:ltr\:right-10{right:2.5rem!important}[dir=ltr] .\33xl\:ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .\33xl\:ltr\:left-10{left:2.5rem!important}[dir=ltr] .\33xl\:ltr\:top-11{top:2.75rem!important}[dir=ltr] .\33xl\:ltr\:right-11{right:2.75rem!important}[dir=ltr] .\33xl\:ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .\33xl\:ltr\:left-11{left:2.75rem!important}[dir=ltr] .\33xl\:ltr\:top-12{top:3rem!important}[dir=ltr] .\33xl\:ltr\:right-12{right:3rem!important}[dir=ltr] .\33xl\:ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .\33xl\:ltr\:left-12{left:3rem!important}[dir=ltr] .\33xl\:ltr\:top-13{top:3.25rem!important}[dir=ltr] .\33xl\:ltr\:right-13{right:3.25rem!important}[dir=ltr] .\33xl\:ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .\33xl\:ltr\:left-13{left:3.25rem!important}[dir=ltr] .\33xl\:ltr\:top-14{top:3.5rem!important}[dir=ltr] .\33xl\:ltr\:right-14{right:3.5rem!important}[dir=ltr] .\33xl\:ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .\33xl\:ltr\:left-14{left:3.5rem!important}[dir=ltr] .\33xl\:ltr\:top-15{top:3.75rem!important}[dir=ltr] .\33xl\:ltr\:right-15{right:3.75rem!important}[dir=ltr] .\33xl\:ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .\33xl\:ltr\:left-15{left:3.75rem!important}[dir=ltr] .\33xl\:ltr\:top-16{top:4rem!important}[dir=ltr] .\33xl\:ltr\:right-16{right:4rem!important}[dir=ltr] .\33xl\:ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .\33xl\:ltr\:left-16{left:4rem!important}[dir=ltr] .\33xl\:ltr\:top-20{top:5rem!important}[dir=ltr] .\33xl\:ltr\:right-20{right:5rem!important}[dir=ltr] .\33xl\:ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .\33xl\:ltr\:left-20{left:5rem!important}[dir=ltr] .\33xl\:ltr\:top-24{top:6rem!important}[dir=ltr] .\33xl\:ltr\:right-24{right:6rem!important}[dir=ltr] .\33xl\:ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .\33xl\:ltr\:left-24{left:6rem!important}[dir=ltr] .\33xl\:ltr\:top-28{top:7rem!important}[dir=ltr] .\33xl\:ltr\:right-28{right:7rem!important}[dir=ltr] .\33xl\:ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .\33xl\:ltr\:left-28{left:7rem!important}[dir=ltr] .\33xl\:ltr\:top-32{top:8rem!important}[dir=ltr] .\33xl\:ltr\:right-32{right:8rem!important}[dir=ltr] .\33xl\:ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .\33xl\:ltr\:left-32{left:8rem!important}[dir=ltr] .\33xl\:ltr\:top-36{top:9rem!important}[dir=ltr] .\33xl\:ltr\:right-36{right:9rem!important}[dir=ltr] .\33xl\:ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .\33xl\:ltr\:left-36{left:9rem!important}[dir=ltr] .\33xl\:ltr\:top-40{top:10rem!important}[dir=ltr] .\33xl\:ltr\:right-40{right:10rem!important}[dir=ltr] .\33xl\:ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .\33xl\:ltr\:left-40{left:10rem!important}[dir=ltr] .\33xl\:ltr\:top-48{top:12rem!important}[dir=ltr] .\33xl\:ltr\:right-48{right:12rem!important}[dir=ltr] .\33xl\:ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .\33xl\:ltr\:left-48{left:12rem!important}[dir=ltr] .\33xl\:ltr\:top-56{top:14rem!important}[dir=ltr] .\33xl\:ltr\:right-56{right:14rem!important}[dir=ltr] .\33xl\:ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .\33xl\:ltr\:left-56{left:14rem!important}[dir=ltr] .\33xl\:ltr\:top-60{top:15rem!important}[dir=ltr] .\33xl\:ltr\:right-60{right:15rem!important}[dir=ltr] .\33xl\:ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .\33xl\:ltr\:left-60{left:15rem!important}[dir=ltr] .\33xl\:ltr\:top-64{top:16rem!important}[dir=ltr] .\33xl\:ltr\:right-64{right:16rem!important}[dir=ltr] .\33xl\:ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .\33xl\:ltr\:left-64{left:16rem!important}[dir=ltr] .\33xl\:ltr\:top-72{top:18rem!important}[dir=ltr] .\33xl\:ltr\:right-72{right:18rem!important}[dir=ltr] .\33xl\:ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .\33xl\:ltr\:left-72{left:18rem!important}[dir=ltr] .\33xl\:ltr\:top-80{top:20rem!important}[dir=ltr] .\33xl\:ltr\:right-80{right:20rem!important}[dir=ltr] .\33xl\:ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .\33xl\:ltr\:left-80{left:20rem!important}[dir=ltr] .\33xl\:ltr\:top-96{top:24rem!important}[dir=ltr] .\33xl\:ltr\:right-96{right:24rem!important}[dir=ltr] .\33xl\:ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .\33xl\:ltr\:left-96{left:24rem!important}[dir=ltr] .\33xl\:ltr\:top-auto{top:auto!important}[dir=ltr] .\33xl\:ltr\:right-auto{right:auto!important}[dir=ltr] .\33xl\:ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .\33xl\:ltr\:left-auto{left:auto!important}[dir=ltr] .\33xl\:ltr\:top-px{top:1px!important}[dir=ltr] .\33xl\:ltr\:right-px{right:1px!important}[dir=ltr] .\33xl\:ltr\:bottom-px{bottom:1px!important}[dir=ltr] .\33xl\:ltr\:left-px{left:1px!important}[dir=ltr] .\33xl\:ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .\33xl\:ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .\33xl\:ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .\33xl\:ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .\33xl\:ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .\33xl\:ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .\33xl\:ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .\33xl\:ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .\33xl\:ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .\33xl\:ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .\33xl\:ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .\33xl\:ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .\33xl\:ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .\33xl\:ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .\33xl\:ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .\33xl\:ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .\33xl\:ltr\:top-1\/2{top:50%!important}[dir=ltr] .\33xl\:ltr\:right-1\/2{right:50%!important}[dir=ltr] .\33xl\:ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .\33xl\:ltr\:left-1\/2{left:50%!important}[dir=ltr] .\33xl\:ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:top-1\/4{top:25%!important}[dir=ltr] .\33xl\:ltr\:right-1\/4{right:25%!important}[dir=ltr] .\33xl\:ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .\33xl\:ltr\:left-1\/4{left:25%!important}[dir=ltr] .\33xl\:ltr\:top-2\/4{top:50%!important}[dir=ltr] .\33xl\:ltr\:right-2\/4{right:50%!important}[dir=ltr] .\33xl\:ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .\33xl\:ltr\:left-2\/4{left:50%!important}[dir=ltr] .\33xl\:ltr\:top-3\/4{top:75%!important}[dir=ltr] .\33xl\:ltr\:right-3\/4{right:75%!important}[dir=ltr] .\33xl\:ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .\33xl\:ltr\:left-3\/4{left:75%!important}[dir=ltr] .\33xl\:ltr\:top-1\/5{top:20%!important}[dir=ltr] .\33xl\:ltr\:right-1\/5{right:20%!important}[dir=ltr] .\33xl\:ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .\33xl\:ltr\:left-1\/5{left:20%!important}[dir=ltr] .\33xl\:ltr\:top-2\/5{top:40%!important}[dir=ltr] .\33xl\:ltr\:right-2\/5{right:40%!important}[dir=ltr] .\33xl\:ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .\33xl\:ltr\:left-2\/5{left:40%!important}[dir=ltr] .\33xl\:ltr\:top-3\/5{top:60%!important}[dir=ltr] .\33xl\:ltr\:right-3\/5{right:60%!important}[dir=ltr] .\33xl\:ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .\33xl\:ltr\:left-3\/5{left:60%!important}[dir=ltr] .\33xl\:ltr\:top-4\/5{top:80%!important}[dir=ltr] .\33xl\:ltr\:right-4\/5{right:80%!important}[dir=ltr] .\33xl\:ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .\33xl\:ltr\:left-4\/5{left:80%!important}[dir=ltr] .\33xl\:ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .\33xl\:ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .\33xl\:ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:top-3\/6{top:50%!important}[dir=ltr] .\33xl\:ltr\:right-3\/6{right:50%!important}[dir=ltr] .\33xl\:ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .\33xl\:ltr\:left-3\/6{left:50%!important}[dir=ltr] .\33xl\:ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .\33xl\:ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .\33xl\:ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .\33xl\:ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .\33xl\:ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .\33xl\:ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .\33xl\:ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .\33xl\:ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .\33xl\:ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .\33xl\:ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .\33xl\:ltr\:top-3\/12{top:25%!important}[dir=ltr] .\33xl\:ltr\:right-3\/12{right:25%!important}[dir=ltr] .\33xl\:ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .\33xl\:ltr\:left-3\/12{left:25%!important}[dir=ltr] .\33xl\:ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .\33xl\:ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .\33xl\:ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .\33xl\:ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .\33xl\:ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .\33xl\:ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .\33xl\:ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .\33xl\:ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .\33xl\:ltr\:top-6\/12{top:50%!important}[dir=ltr] .\33xl\:ltr\:right-6\/12{right:50%!important}[dir=ltr] .\33xl\:ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .\33xl\:ltr\:left-6\/12{left:50%!important}[dir=ltr] .\33xl\:ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .\33xl\:ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .\33xl\:ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .\33xl\:ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .\33xl\:ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .\33xl\:ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .\33xl\:ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .\33xl\:ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .\33xl\:ltr\:top-9\/12{top:75%!important}[dir=ltr] .\33xl\:ltr\:right-9\/12{right:75%!important}[dir=ltr] .\33xl\:ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .\33xl\:ltr\:left-9\/12{left:75%!important}[dir=ltr] .\33xl\:ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .\33xl\:ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .\33xl\:ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .\33xl\:ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .\33xl\:ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .\33xl\:ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .\33xl\:ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .\33xl\:ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .\33xl\:ltr\:top-full{top:100%!important}[dir=ltr] .\33xl\:ltr\:right-full{right:100%!important}[dir=ltr] .\33xl\:ltr\:bottom-full{bottom:100%!important}[dir=ltr] .\33xl\:ltr\:left-full{left:100%!important}[dir=rtl] .\33xl\:rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .\33xl\:rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .\33xl\:rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .\33xl\:rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .\33xl\:rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .\33xl\:rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .\33xl\:rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .\33xl\:rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .\33xl\:rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .\33xl\:rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .\33xl\:rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .\33xl\:rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .\33xl\:rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .\33xl\:rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .\33xl\:rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .\33xl\:rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .\33xl\:rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .\33xl\:rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .\33xl\:rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .\33xl\:rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .\33xl\:rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .\33xl\:rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .\33xl\:rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .\33xl\:rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .\33xl\:rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .\33xl\:rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .\33xl\:rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .\33xl\:rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .\33xl\:rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .\33xl\:rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .\33xl\:rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .\33xl\:rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .\33xl\:rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .\33xl\:rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .\33xl\:rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .\33xl\:rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .\33xl\:rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .\33xl\:rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .\33xl\:rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .\33xl\:rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .\33xl\:rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .\33xl\:rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .\33xl\:rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .\33xl\:rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .\33xl\:rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .\33xl\:rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .\33xl\:rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .\33xl\:rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .\33xl\:rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .\33xl\:rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .\33xl\:rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .\33xl\:rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .\33xl\:rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .\33xl\:rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .\33xl\:rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .\33xl\:rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .\33xl\:rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .\33xl\:rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .\33xl\:rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .\33xl\:rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .\33xl\:rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .\33xl\:rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .\33xl\:rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .\33xl\:rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .\33xl\:rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .\33xl\:rtl\:top-0{top:0!important}[dir=rtl] .\33xl\:rtl\:right-0{right:0!important}[dir=rtl] .\33xl\:rtl\:bottom-0{bottom:0!important}[dir=rtl] .\33xl\:rtl\:left-0{left:0!important}[dir=rtl] .\33xl\:rtl\:top-1{top:.25rem!important}[dir=rtl] .\33xl\:rtl\:right-1{right:.25rem!important}[dir=rtl] .\33xl\:rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .\33xl\:rtl\:left-1{left:.25rem!important}[dir=rtl] .\33xl\:rtl\:top-2{top:.5rem!important}[dir=rtl] .\33xl\:rtl\:right-2{right:.5rem!important}[dir=rtl] .\33xl\:rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .\33xl\:rtl\:left-2{left:.5rem!important}[dir=rtl] .\33xl\:rtl\:top-3{top:.75rem!important}[dir=rtl] .\33xl\:rtl\:right-3{right:.75rem!important}[dir=rtl] .\33xl\:rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .\33xl\:rtl\:left-3{left:.75rem!important}[dir=rtl] .\33xl\:rtl\:top-4{top:1rem!important}[dir=rtl] .\33xl\:rtl\:right-4{right:1rem!important}[dir=rtl] .\33xl\:rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .\33xl\:rtl\:left-4{left:1rem!important}[dir=rtl] .\33xl\:rtl\:top-5{top:1.25rem!important}[dir=rtl] .\33xl\:rtl\:right-5{right:1.25rem!important}[dir=rtl] .\33xl\:rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .\33xl\:rtl\:left-5{left:1.25rem!important}[dir=rtl] .\33xl\:rtl\:top-6{top:1.5rem!important}[dir=rtl] .\33xl\:rtl\:right-6{right:1.5rem!important}[dir=rtl] .\33xl\:rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .\33xl\:rtl\:left-6{left:1.5rem!important}[dir=rtl] .\33xl\:rtl\:top-7{top:1.75rem!important}[dir=rtl] .\33xl\:rtl\:right-7{right:1.75rem!important}[dir=rtl] .\33xl\:rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .\33xl\:rtl\:left-7{left:1.75rem!important}[dir=rtl] .\33xl\:rtl\:top-8{top:2rem!important}[dir=rtl] .\33xl\:rtl\:right-8{right:2rem!important}[dir=rtl] .\33xl\:rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .\33xl\:rtl\:left-8{left:2rem!important}[dir=rtl] .\33xl\:rtl\:top-9{top:2.25rem!important}[dir=rtl] .\33xl\:rtl\:right-9{right:2.25rem!important}[dir=rtl] .\33xl\:rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .\33xl\:rtl\:left-9{left:2.25rem!important}[dir=rtl] .\33xl\:rtl\:top-10{top:2.5rem!important}[dir=rtl] .\33xl\:rtl\:right-10{right:2.5rem!important}[dir=rtl] .\33xl\:rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .\33xl\:rtl\:left-10{left:2.5rem!important}[dir=rtl] .\33xl\:rtl\:top-11{top:2.75rem!important}[dir=rtl] .\33xl\:rtl\:right-11{right:2.75rem!important}[dir=rtl] .\33xl\:rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .\33xl\:rtl\:left-11{left:2.75rem!important}[dir=rtl] .\33xl\:rtl\:top-12{top:3rem!important}[dir=rtl] .\33xl\:rtl\:right-12{right:3rem!important}[dir=rtl] .\33xl\:rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .\33xl\:rtl\:left-12{left:3rem!important}[dir=rtl] .\33xl\:rtl\:top-13{top:3.25rem!important}[dir=rtl] .\33xl\:rtl\:right-13{right:3.25rem!important}[dir=rtl] .\33xl\:rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .\33xl\:rtl\:left-13{left:3.25rem!important}[dir=rtl] .\33xl\:rtl\:top-14{top:3.5rem!important}[dir=rtl] .\33xl\:rtl\:right-14{right:3.5rem!important}[dir=rtl] .\33xl\:rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .\33xl\:rtl\:left-14{left:3.5rem!important}[dir=rtl] .\33xl\:rtl\:top-15{top:3.75rem!important}[dir=rtl] .\33xl\:rtl\:right-15{right:3.75rem!important}[dir=rtl] .\33xl\:rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .\33xl\:rtl\:left-15{left:3.75rem!important}[dir=rtl] .\33xl\:rtl\:top-16{top:4rem!important}[dir=rtl] .\33xl\:rtl\:right-16{right:4rem!important}[dir=rtl] .\33xl\:rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .\33xl\:rtl\:left-16{left:4rem!important}[dir=rtl] .\33xl\:rtl\:top-20{top:5rem!important}[dir=rtl] .\33xl\:rtl\:right-20{right:5rem!important}[dir=rtl] .\33xl\:rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .\33xl\:rtl\:left-20{left:5rem!important}[dir=rtl] .\33xl\:rtl\:top-24{top:6rem!important}[dir=rtl] .\33xl\:rtl\:right-24{right:6rem!important}[dir=rtl] .\33xl\:rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .\33xl\:rtl\:left-24{left:6rem!important}[dir=rtl] .\33xl\:rtl\:top-28{top:7rem!important}[dir=rtl] .\33xl\:rtl\:right-28{right:7rem!important}[dir=rtl] .\33xl\:rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .\33xl\:rtl\:left-28{left:7rem!important}[dir=rtl] .\33xl\:rtl\:top-32{top:8rem!important}[dir=rtl] .\33xl\:rtl\:right-32{right:8rem!important}[dir=rtl] .\33xl\:rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .\33xl\:rtl\:left-32{left:8rem!important}[dir=rtl] .\33xl\:rtl\:top-36{top:9rem!important}[dir=rtl] .\33xl\:rtl\:right-36{right:9rem!important}[dir=rtl] .\33xl\:rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .\33xl\:rtl\:left-36{left:9rem!important}[dir=rtl] .\33xl\:rtl\:top-40{top:10rem!important}[dir=rtl] .\33xl\:rtl\:right-40{right:10rem!important}[dir=rtl] .\33xl\:rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .\33xl\:rtl\:left-40{left:10rem!important}[dir=rtl] .\33xl\:rtl\:top-48{top:12rem!important}[dir=rtl] .\33xl\:rtl\:right-48{right:12rem!important}[dir=rtl] .\33xl\:rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .\33xl\:rtl\:left-48{left:12rem!important}[dir=rtl] .\33xl\:rtl\:top-56{top:14rem!important}[dir=rtl] .\33xl\:rtl\:right-56{right:14rem!important}[dir=rtl] .\33xl\:rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .\33xl\:rtl\:left-56{left:14rem!important}[dir=rtl] .\33xl\:rtl\:top-60{top:15rem!important}[dir=rtl] .\33xl\:rtl\:right-60{right:15rem!important}[dir=rtl] .\33xl\:rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .\33xl\:rtl\:left-60{left:15rem!important}[dir=rtl] .\33xl\:rtl\:top-64{top:16rem!important}[dir=rtl] .\33xl\:rtl\:right-64{right:16rem!important}[dir=rtl] .\33xl\:rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .\33xl\:rtl\:left-64{left:16rem!important}[dir=rtl] .\33xl\:rtl\:top-72{top:18rem!important}[dir=rtl] .\33xl\:rtl\:right-72{right:18rem!important}[dir=rtl] .\33xl\:rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .\33xl\:rtl\:left-72{left:18rem!important}[dir=rtl] .\33xl\:rtl\:top-80{top:20rem!important}[dir=rtl] .\33xl\:rtl\:right-80{right:20rem!important}[dir=rtl] .\33xl\:rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .\33xl\:rtl\:left-80{left:20rem!important}[dir=rtl] .\33xl\:rtl\:top-96{top:24rem!important}[dir=rtl] .\33xl\:rtl\:right-96{right:24rem!important}[dir=rtl] .\33xl\:rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .\33xl\:rtl\:left-96{left:24rem!important}[dir=rtl] .\33xl\:rtl\:top-auto{top:auto!important}[dir=rtl] .\33xl\:rtl\:right-auto{right:auto!important}[dir=rtl] .\33xl\:rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .\33xl\:rtl\:left-auto{left:auto!important}[dir=rtl] .\33xl\:rtl\:top-px{top:1px!important}[dir=rtl] .\33xl\:rtl\:right-px{right:1px!important}[dir=rtl] .\33xl\:rtl\:bottom-px{bottom:1px!important}[dir=rtl] .\33xl\:rtl\:left-px{left:1px!important}[dir=rtl] .\33xl\:rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .\33xl\:rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .\33xl\:rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .\33xl\:rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .\33xl\:rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .\33xl\:rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .\33xl\:rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .\33xl\:rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .\33xl\:rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .\33xl\:rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .\33xl\:rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .\33xl\:rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .\33xl\:rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .\33xl\:rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .\33xl\:rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .\33xl\:rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .\33xl\:rtl\:top-1\/2{top:50%!important}[dir=rtl] .\33xl\:rtl\:right-1\/2{right:50%!important}[dir=rtl] .\33xl\:rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .\33xl\:rtl\:left-1\/2{left:50%!important}[dir=rtl] .\33xl\:rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:top-1\/4{top:25%!important}[dir=rtl] .\33xl\:rtl\:right-1\/4{right:25%!important}[dir=rtl] .\33xl\:rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .\33xl\:rtl\:left-1\/4{left:25%!important}[dir=rtl] .\33xl\:rtl\:top-2\/4{top:50%!important}[dir=rtl] .\33xl\:rtl\:right-2\/4{right:50%!important}[dir=rtl] .\33xl\:rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .\33xl\:rtl\:left-2\/4{left:50%!important}[dir=rtl] .\33xl\:rtl\:top-3\/4{top:75%!important}[dir=rtl] .\33xl\:rtl\:right-3\/4{right:75%!important}[dir=rtl] .\33xl\:rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .\33xl\:rtl\:left-3\/4{left:75%!important}[dir=rtl] .\33xl\:rtl\:top-1\/5{top:20%!important}[dir=rtl] .\33xl\:rtl\:right-1\/5{right:20%!important}[dir=rtl] .\33xl\:rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .\33xl\:rtl\:left-1\/5{left:20%!important}[dir=rtl] .\33xl\:rtl\:top-2\/5{top:40%!important}[dir=rtl] .\33xl\:rtl\:right-2\/5{right:40%!important}[dir=rtl] .\33xl\:rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .\33xl\:rtl\:left-2\/5{left:40%!important}[dir=rtl] .\33xl\:rtl\:top-3\/5{top:60%!important}[dir=rtl] .\33xl\:rtl\:right-3\/5{right:60%!important}[dir=rtl] .\33xl\:rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .\33xl\:rtl\:left-3\/5{left:60%!important}[dir=rtl] .\33xl\:rtl\:top-4\/5{top:80%!important}[dir=rtl] .\33xl\:rtl\:right-4\/5{right:80%!important}[dir=rtl] .\33xl\:rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .\33xl\:rtl\:left-4\/5{left:80%!important}[dir=rtl] .\33xl\:rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .\33xl\:rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .\33xl\:rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:top-3\/6{top:50%!important}[dir=rtl] .\33xl\:rtl\:right-3\/6{right:50%!important}[dir=rtl] .\33xl\:rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .\33xl\:rtl\:left-3\/6{left:50%!important}[dir=rtl] .\33xl\:rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .\33xl\:rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .\33xl\:rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .\33xl\:rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .\33xl\:rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .\33xl\:rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .\33xl\:rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .\33xl\:rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .\33xl\:rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .\33xl\:rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .\33xl\:rtl\:top-3\/12{top:25%!important}[dir=rtl] .\33xl\:rtl\:right-3\/12{right:25%!important}[dir=rtl] .\33xl\:rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .\33xl\:rtl\:left-3\/12{left:25%!important}[dir=rtl] .\33xl\:rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .\33xl\:rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .\33xl\:rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .\33xl\:rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .\33xl\:rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .\33xl\:rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .\33xl\:rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .\33xl\:rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .\33xl\:rtl\:top-6\/12{top:50%!important}[dir=rtl] .\33xl\:rtl\:right-6\/12{right:50%!important}[dir=rtl] .\33xl\:rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .\33xl\:rtl\:left-6\/12{left:50%!important}[dir=rtl] .\33xl\:rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .\33xl\:rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .\33xl\:rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .\33xl\:rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .\33xl\:rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .\33xl\:rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .\33xl\:rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .\33xl\:rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .\33xl\:rtl\:top-9\/12{top:75%!important}[dir=rtl] .\33xl\:rtl\:right-9\/12{right:75%!important}[dir=rtl] .\33xl\:rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .\33xl\:rtl\:left-9\/12{left:75%!important}[dir=rtl] .\33xl\:rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .\33xl\:rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .\33xl\:rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .\33xl\:rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .\33xl\:rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .\33xl\:rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .\33xl\:rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .\33xl\:rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .\33xl\:rtl\:top-full{top:100%!important}[dir=rtl] .\33xl\:rtl\:right-full{right:100%!important}[dir=rtl] .\33xl\:rtl\:bottom-full{bottom:100%!important}[dir=rtl] .\33xl\:rtl\:left-full{left:100%!important}.\33xl\:resize-none{resize:none!important}.\33xl\:resize-y{resize:vertical!important}.\33xl\:resize-x{resize:horizontal!important}.\33xl\:resize{resize:both!important}.\33xl\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\33xl\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\33xl\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\33xl\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\33xl\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\33xl\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\33xl\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\33xl\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\33xl\:shadow-none{box-shadow:none!important}.group:focus .\33xl\:group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .\33xl\:group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .\33xl\:group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .\33xl\:group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .\33xl\:group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .\33xl\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .\33xl\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .\33xl\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .\33xl\:group-focus\:shadow-none{box-shadow:none!important}.\33xl\:hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\33xl\:hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\33xl\:hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\33xl\:hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\33xl\:hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\33xl\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\33xl\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\33xl\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\33xl\:hover\:shadow-none:hover{box-shadow:none!important}.\33xl\:focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\33xl\:focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\33xl\:focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\33xl\:focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\33xl\:focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\33xl\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\33xl\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\33xl\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\33xl\:focus\:shadow-none:focus{box-shadow:none!important}.\33xl\:fill-current{fill:currentColor!important}.\33xl\:stroke-current{stroke:currentColor!important}.\33xl\:stroke-0{stroke-width:0!important}.\33xl\:stroke-1{stroke-width:1!important}.\33xl\:stroke-2{stroke-width:2!important}.\33xl\:table-auto{table-layout:auto!important}.\33xl\:table-fixed{table-layout:fixed!important}.\33xl\:text-left{text-align:left!important}.\33xl\:text-center{text-align:center!important}.\33xl\:text-right{text-align:right!important}.\33xl\:text-justify{text-align:justify!important}.\33xl\:text-transparent{color:transparent!important}.\33xl\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\33xl\:text-white-70{color:hsla(0,0%,100%,.7)!important}.\33xl\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\33xl\:text-blackest-70{color:rgba(0,0,0,.7)!important}.\33xl\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\33xl\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\33xl\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\33xl\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\33xl\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\33xl\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\33xl\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\33xl\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\33xl\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\33xl\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\33xl\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\33xl\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\33xl\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.\33xl\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\33xl\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\33xl\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\33xl\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\33xl\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\33xl\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\33xl\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\33xl\:hover\:text-transparent:hover{color:transparent!important}.\33xl\:hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\33xl\:hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.\33xl\:hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\33xl\:hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.\33xl\:hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\33xl\:hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\33xl\:hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\33xl\:hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\33xl\:hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\33xl\:hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\33xl\:hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\33xl\:hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\33xl\:hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\33xl\:hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\33xl\:hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\33xl\:hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\33xl\:hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.\33xl\:hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\33xl\:hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\33xl\:hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\33xl\:hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\33xl\:hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\33xl\:hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\33xl\:hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\33xl\:focus\:text-transparent:focus{color:transparent!important}.\33xl\:focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\33xl\:focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.\33xl\:focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\33xl\:focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.\33xl\:focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\33xl\:focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\33xl\:focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\33xl\:focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\33xl\:focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\33xl\:focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\33xl\:focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\33xl\:focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\33xl\:focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\33xl\:focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\33xl\:focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\33xl\:focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\33xl\:focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.\33xl\:focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\33xl\:focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\33xl\:focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\33xl\:focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\33xl\:focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\33xl\:focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\33xl\:focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-transparent{color:transparent!important}.group:hover .\33xl\:group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .\33xl\:group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .\33xl\:group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .\33xl\:group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .\33xl\:group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\33xl\:text-opacity-0{--text-opacity:0!important}.\33xl\:text-opacity-25{--text-opacity:0.25!important}.\33xl\:text-opacity-50{--text-opacity:0.5!important}.\33xl\:text-opacity-75{--text-opacity:0.75!important}.\33xl\:text-opacity-100{--text-opacity:1!important}.\33xl\:hover\:text-opacity-0:hover{--text-opacity:0!important}.\33xl\:hover\:text-opacity-25:hover{--text-opacity:0.25!important}.\33xl\:hover\:text-opacity-50:hover{--text-opacity:0.5!important}.\33xl\:hover\:text-opacity-75:hover{--text-opacity:0.75!important}.\33xl\:hover\:text-opacity-100:hover{--text-opacity:1!important}.\33xl\:focus\:text-opacity-0:focus{--text-opacity:0!important}.\33xl\:focus\:text-opacity-25:focus{--text-opacity:0.25!important}.\33xl\:focus\:text-opacity-50:focus{--text-opacity:0.5!important}.\33xl\:focus\:text-opacity-75:focus{--text-opacity:0.75!important}.\33xl\:focus\:text-opacity-100:focus{--text-opacity:1!important}.\33xl\:italic{font-style:italic!important}.\33xl\:not-italic{font-style:normal!important}.\33xl\:uppercase{text-transform:uppercase!important}.\33xl\:lowercase{text-transform:lowercase!important}.\33xl\:capitalize{text-transform:capitalize!important}.\33xl\:normal-case{text-transform:none!important}.\33xl\:underline{text-decoration:underline!important}.\33xl\:line-through{text-decoration:line-through!important}.\33xl\:no-underline{text-decoration:none!important}.group:hover .\33xl\:group-hover\:underline{text-decoration:underline!important}.group:hover .\33xl\:group-hover\:line-through{text-decoration:line-through!important}.group:hover .\33xl\:group-hover\:no-underline{text-decoration:none!important}.group:focus .\33xl\:group-focus\:underline{text-decoration:underline!important}.group:focus .\33xl\:group-focus\:line-through{text-decoration:line-through!important}.group:focus .\33xl\:group-focus\:no-underline{text-decoration:none!important}.\33xl\:hover\:underline:hover{text-decoration:underline!important}.\33xl\:hover\:line-through:hover{text-decoration:line-through!important}.\33xl\:hover\:no-underline:hover{text-decoration:none!important}.\33xl\:focus\:underline:focus{text-decoration:underline!important}.\33xl\:focus\:line-through:focus{text-decoration:line-through!important}.\33xl\:focus\:no-underline:focus{text-decoration:none!important}.\33xl\:antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.\33xl\:subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.\33xl\:diagonal-fractions,.\33xl\:lining-nums,.\33xl\:oldstyle-nums,.\33xl\:ordinal,.\33xl\:proportional-nums,.\33xl\:slashed-zero,.\33xl\:stacked-fractions,.\33xl\:tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.\33xl\:normal-nums{font-variant-numeric:normal!important}.\33xl\:ordinal{--font-variant-numeric-ordinal:ordinal!important}.\33xl\:slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.\33xl\:lining-nums{--font-variant-numeric-figure:lining-nums!important}.\33xl\:oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.\33xl\:proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.\33xl\:tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.\33xl\:diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.\33xl\:stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.\33xl\:tracking-tighter{letter-spacing:-.05em!important}.\33xl\:tracking-tight{letter-spacing:-.025em!important}.\33xl\:tracking-normal{letter-spacing:0!important}.\33xl\:tracking-wide{letter-spacing:.025em!important}.\33xl\:tracking-wider{letter-spacing:.05em!important}.\33xl\:tracking-widest{letter-spacing:.1em!important}.\33xl\:select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.\33xl\:select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.\33xl\:select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.\33xl\:select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.\33xl\:align-baseline{vertical-align:baseline!important}.\33xl\:align-top{vertical-align:top!important}.\33xl\:align-middle{vertical-align:middle!important}.\33xl\:align-bottom{vertical-align:bottom!important}.\33xl\:align-text-top{vertical-align:text-top!important}.\33xl\:align-text-bottom{vertical-align:text-bottom!important}.\33xl\:visible{visibility:visible!important}.\33xl\:invisible{visibility:hidden!important}.\33xl\:whitespace-normal{white-space:normal!important}.\33xl\:whitespace-no-wrap{white-space:nowrap!important}.\33xl\:whitespace-pre{white-space:pre!important}.\33xl\:whitespace-pre-line{white-space:pre-line!important}.\33xl\:whitespace-pre-wrap{white-space:pre-wrap!important}.\33xl\:break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.\33xl\:break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.\33xl\:break-all{word-break:break-all!important}.\33xl\:truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.\33xl\:w-0{width:0!important}.\33xl\:w-1{width:.25rem!important}.\33xl\:w-2{width:.5rem!important}.\33xl\:w-3{width:.75rem!important}.\33xl\:w-4{width:1rem!important}.\33xl\:w-5{width:1.25rem!important}.\33xl\:w-6{width:1.5rem!important}.\33xl\:w-7{width:1.75rem!important}.\33xl\:w-8{width:2rem!important}.\33xl\:w-9{width:2.25rem!important}.\33xl\:w-10{width:2.5rem!important}.\33xl\:w-11{width:2.75rem!important}.\33xl\:w-12{width:3rem!important}.\33xl\:w-13{width:3.25rem!important}.\33xl\:w-14{width:3.5rem!important}.\33xl\:w-15{width:3.75rem!important}.\33xl\:w-16{width:4rem!important}.\33xl\:w-20{width:5rem!important}.\33xl\:w-24{width:6rem!important}.\33xl\:w-28{width:7rem!important}.\33xl\:w-32{width:8rem!important}.\33xl\:w-36{width:9rem!important}.\33xl\:w-40{width:10rem!important}.\33xl\:w-48{width:12rem!important}.\33xl\:w-56{width:14rem!important}.\33xl\:w-60{width:15rem!important}.\33xl\:w-64{width:16rem!important}.\33xl\:w-72{width:18rem!important}.\33xl\:w-80{width:20rem!important}.\33xl\:w-96{width:24rem!important}.\33xl\:w-auto{width:auto!important}.\33xl\:w-px{width:1px!important}.\33xl\:w-0\.5{width:.125rem!important}.\33xl\:w-1\.5{width:.375rem!important}.\33xl\:w-2\.5{width:.625rem!important}.\33xl\:w-3\.5{width:.875rem!important}.\33xl\:w-1\/2{width:50%!important}.\33xl\:w-1\/3{width:33.333333%!important}.\33xl\:w-2\/3{width:66.666667%!important}.\33xl\:w-1\/4{width:25%!important}.\33xl\:w-2\/4{width:50%!important}.\33xl\:w-3\/4{width:75%!important}.\33xl\:w-1\/5{width:20%!important}.\33xl\:w-2\/5{width:40%!important}.\33xl\:w-3\/5{width:60%!important}.\33xl\:w-4\/5{width:80%!important}.\33xl\:w-1\/6{width:16.666667%!important}.\33xl\:w-2\/6{width:33.333333%!important}.\33xl\:w-3\/6{width:50%!important}.\33xl\:w-4\/6{width:66.666667%!important}.\33xl\:w-5\/6{width:83.333333%!important}.\33xl\:w-1\/12{width:8.333333%!important}.\33xl\:w-2\/12{width:16.666667%!important}.\33xl\:w-3\/12{width:25%!important}.\33xl\:w-4\/12{width:33.333333%!important}.\33xl\:w-5\/12{width:41.666667%!important}.\33xl\:w-6\/12{width:50%!important}.\33xl\:w-7\/12{width:58.333333%!important}.\33xl\:w-8\/12{width:66.666667%!important}.\33xl\:w-9\/12{width:75%!important}.\33xl\:w-10\/12{width:83.333333%!important}.\33xl\:w-11\/12{width:91.666667%!important}.\33xl\:w-full{width:100%!important}.\33xl\:w-screen{width:100vw!important}.\33xl\:z-0{z-index:0!important}.\33xl\:z-10{z-index:10!important}.\33xl\:z-20{z-index:20!important}.\33xl\:z-30{z-index:30!important}.\33xl\:z-40{z-index:40!important}.\33xl\:z-50{z-index:50!important}.\33xl\:z-999{z-index:999!important}.\33xl\:z-auto{z-index:auto!important}.\33xl\:z-max{z-index:2147483647!important}.\33xl\:focus-within\:z-0:focus-within{z-index:0!important}.\33xl\:focus-within\:z-10:focus-within{z-index:10!important}.\33xl\:focus-within\:z-20:focus-within{z-index:20!important}.\33xl\:focus-within\:z-30:focus-within{z-index:30!important}.\33xl\:focus-within\:z-40:focus-within{z-index:40!important}.\33xl\:focus-within\:z-50:focus-within{z-index:50!important}.\33xl\:focus-within\:z-999:focus-within{z-index:999!important}.\33xl\:focus-within\:z-auto:focus-within{z-index:auto!important}.\33xl\:focus-within\:z-max:focus-within{z-index:2147483647!important}.\33xl\:focus\:z-0:focus{z-index:0!important}.\33xl\:focus\:z-10:focus{z-index:10!important}.\33xl\:focus\:z-20:focus{z-index:20!important}.\33xl\:focus\:z-30:focus{z-index:30!important}.\33xl\:focus\:z-40:focus{z-index:40!important}.\33xl\:focus\:z-50:focus{z-index:50!important}.\33xl\:focus\:z-999:focus{z-index:999!important}.\33xl\:focus\:z-auto:focus{z-index:auto!important}.\33xl\:focus\:z-max:focus{z-index:2147483647!important}.\33xl\:gap-0{grid-gap:0!important;gap:0!important}.\33xl\:gap-1{grid-gap:.25rem!important;gap:.25rem!important}.\33xl\:gap-2{grid-gap:.5rem!important;gap:.5rem!important}.\33xl\:gap-3{grid-gap:.75rem!important;gap:.75rem!important}.\33xl\:gap-4{grid-gap:1rem!important;gap:1rem!important}.\33xl\:gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.\33xl\:gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.\33xl\:gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.\33xl\:gap-8{grid-gap:2rem!important;gap:2rem!important}.\33xl\:gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.\33xl\:gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.\33xl\:gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.\33xl\:gap-12{grid-gap:3rem!important;gap:3rem!important}.\33xl\:gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.\33xl\:gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.\33xl\:gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.\33xl\:gap-16{grid-gap:4rem!important;gap:4rem!important}.\33xl\:gap-20{grid-gap:5rem!important;gap:5rem!important}.\33xl\:gap-24{grid-gap:6rem!important;gap:6rem!important}.\33xl\:gap-28{grid-gap:7rem!important;gap:7rem!important}.\33xl\:gap-32{grid-gap:8rem!important;gap:8rem!important}.\33xl\:gap-36{grid-gap:9rem!important;gap:9rem!important}.\33xl\:gap-40{grid-gap:10rem!important;gap:10rem!important}.\33xl\:gap-48{grid-gap:12rem!important;gap:12rem!important}.\33xl\:gap-56{grid-gap:14rem!important;gap:14rem!important}.\33xl\:gap-60{grid-gap:15rem!important;gap:15rem!important}.\33xl\:gap-64{grid-gap:16rem!important;gap:16rem!important}.\33xl\:gap-72{grid-gap:18rem!important;gap:18rem!important}.\33xl\:gap-80{grid-gap:20rem!important;gap:20rem!important}.\33xl\:gap-96{grid-gap:24rem!important;gap:24rem!important}.\33xl\:gap-px{grid-gap:1px!important;gap:1px!important}.\33xl\:gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.\33xl\:gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.\33xl\:gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.\33xl\:gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.\33xl\:gap-1\/2{grid-gap:50%!important;gap:50%!important}.\33xl\:gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.\33xl\:gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.\33xl\:gap-1\/4{grid-gap:25%!important;gap:25%!important}.\33xl\:gap-2\/4{grid-gap:50%!important;gap:50%!important}.\33xl\:gap-3\/4{grid-gap:75%!important;gap:75%!important}.\33xl\:gap-1\/5{grid-gap:20%!important;gap:20%!important}.\33xl\:gap-2\/5{grid-gap:40%!important;gap:40%!important}.\33xl\:gap-3\/5{grid-gap:60%!important;gap:60%!important}.\33xl\:gap-4\/5{grid-gap:80%!important;gap:80%!important}.\33xl\:gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.\33xl\:gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.\33xl\:gap-3\/6{grid-gap:50%!important;gap:50%!important}.\33xl\:gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.\33xl\:gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.\33xl\:gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.\33xl\:gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.\33xl\:gap-3\/12{grid-gap:25%!important;gap:25%!important}.\33xl\:gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.\33xl\:gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.\33xl\:gap-6\/12{grid-gap:50%!important;gap:50%!important}.\33xl\:gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.\33xl\:gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.\33xl\:gap-9\/12{grid-gap:75%!important;gap:75%!important}.\33xl\:gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.\33xl\:gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.\33xl\:gap-full{grid-gap:100%!important;gap:100%!important}.\33xl\:gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.\33xl\:gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.\33xl\:gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.\33xl\:gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.\33xl\:gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.\33xl\:gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.\33xl\:gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.\33xl\:gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.\33xl\:gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.\33xl\:gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.\33xl\:gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.\33xl\:gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.\33xl\:gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.\33xl\:gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.\33xl\:gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.\33xl\:gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.\33xl\:gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.\33xl\:gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.\33xl\:gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.\33xl\:gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.\33xl\:gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.\33xl\:gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.\33xl\:gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.\33xl\:gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.\33xl\:gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.\33xl\:gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.\33xl\:gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.\33xl\:gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.\33xl\:gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.\33xl\:gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.\33xl\:gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.\33xl\:gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.\33xl\:gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.\33xl\:gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.\33xl\:gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.\33xl\:gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\33xl\:gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\33xl\:gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\33xl\:gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.\33xl\:gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\33xl\:gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.\33xl\:gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.\33xl\:gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.\33xl\:gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.\33xl\:gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.\33xl\:gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.\33xl\:gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\33xl\:gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\33xl\:gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\33xl\:gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.\33xl\:gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.\33xl\:gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.\33xl\:gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.\33xl\:gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\33xl\:gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.\33xl\:gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\33xl\:gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.\33xl\:gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\33xl\:gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.\33xl\:gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.\33xl\:gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.\33xl\:gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.\33xl\:gap-y-0{grid-row-gap:0!important;row-gap:0!important}.\33xl\:gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.\33xl\:gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.\33xl\:gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.\33xl\:gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.\33xl\:gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.\33xl\:gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.\33xl\:gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.\33xl\:gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.\33xl\:gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.\33xl\:gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.\33xl\:gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.\33xl\:gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.\33xl\:gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.\33xl\:gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.\33xl\:gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.\33xl\:gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.\33xl\:gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.\33xl\:gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.\33xl\:gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.\33xl\:gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.\33xl\:gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.\33xl\:gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.\33xl\:gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.\33xl\:gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.\33xl\:gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.\33xl\:gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.\33xl\:gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.\33xl\:gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.\33xl\:gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.\33xl\:gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.\33xl\:gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.\33xl\:gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.\33xl\:gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.\33xl\:gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.\33xl\:gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.\33xl\:gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\33xl\:gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\33xl\:gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.\33xl\:gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.\33xl\:gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.\33xl\:gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.\33xl\:gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.\33xl\:gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.\33xl\:gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.\33xl\:gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.\33xl\:gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\33xl\:gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.\33xl\:gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\33xl\:gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.\33xl\:gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.\33xl\:gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.\33xl\:gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.\33xl\:gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\33xl\:gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.\33xl\:gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.\33xl\:gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.\33xl\:gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\33xl\:gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.\33xl\:gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.\33xl\:gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.\33xl\:gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.\33xl\:grid-flow-row{grid-auto-flow:row!important}.\33xl\:grid-flow-col{grid-auto-flow:column!important}.\33xl\:grid-flow-row-dense{grid-auto-flow:row dense!important}.\33xl\:grid-flow-col-dense{grid-auto-flow:column dense!important}.\33xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.\33xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.\33xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.\33xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.\33xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.\33xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.\33xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.\33xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.\33xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.\33xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.\33xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.\33xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.\33xl\:grid-cols-none{grid-template-columns:none!important}.\33xl\:auto-cols-auto{grid-auto-columns:auto!important}.\33xl\:auto-cols-min{grid-auto-columns:min-content!important}.\33xl\:auto-cols-max{grid-auto-columns:max-content!important}.\33xl\:auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.\33xl\:col-auto{grid-column:auto!important}.\33xl\:col-span-1{grid-column:span 1/span 1!important}.\33xl\:col-span-2{grid-column:span 2/span 2!important}.\33xl\:col-span-3{grid-column:span 3/span 3!important}.\33xl\:col-span-4{grid-column:span 4/span 4!important}.\33xl\:col-span-5{grid-column:span 5/span 5!important}.\33xl\:col-span-6{grid-column:span 6/span 6!important}.\33xl\:col-span-7{grid-column:span 7/span 7!important}.\33xl\:col-span-8{grid-column:span 8/span 8!important}.\33xl\:col-span-9{grid-column:span 9/span 9!important}.\33xl\:col-span-10{grid-column:span 10/span 10!important}.\33xl\:col-span-11{grid-column:span 11/span 11!important}.\33xl\:col-span-12{grid-column:span 12/span 12!important}.\33xl\:col-span-full{grid-column:1/-1!important}.\33xl\:col-start-1{grid-column-start:1!important}.\33xl\:col-start-2{grid-column-start:2!important}.\33xl\:col-start-3{grid-column-start:3!important}.\33xl\:col-start-4{grid-column-start:4!important}.\33xl\:col-start-5{grid-column-start:5!important}.\33xl\:col-start-6{grid-column-start:6!important}.\33xl\:col-start-7{grid-column-start:7!important}.\33xl\:col-start-8{grid-column-start:8!important}.\33xl\:col-start-9{grid-column-start:9!important}.\33xl\:col-start-10{grid-column-start:10!important}.\33xl\:col-start-11{grid-column-start:11!important}.\33xl\:col-start-12{grid-column-start:12!important}.\33xl\:col-start-13{grid-column-start:13!important}.\33xl\:col-start-auto{grid-column-start:auto!important}.\33xl\:col-end-1{grid-column-end:1!important}.\33xl\:col-end-2{grid-column-end:2!important}.\33xl\:col-end-3{grid-column-end:3!important}.\33xl\:col-end-4{grid-column-end:4!important}.\33xl\:col-end-5{grid-column-end:5!important}.\33xl\:col-end-6{grid-column-end:6!important}.\33xl\:col-end-7{grid-column-end:7!important}.\33xl\:col-end-8{grid-column-end:8!important}.\33xl\:col-end-9{grid-column-end:9!important}.\33xl\:col-end-10{grid-column-end:10!important}.\33xl\:col-end-11{grid-column-end:11!important}.\33xl\:col-end-12{grid-column-end:12!important}.\33xl\:col-end-13{grid-column-end:13!important}.\33xl\:col-end-auto{grid-column-end:auto!important}.\33xl\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.\33xl\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.\33xl\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.\33xl\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.\33xl\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.\33xl\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.\33xl\:grid-rows-none{grid-template-rows:none!important}.\33xl\:auto-rows-auto{grid-auto-rows:auto!important}.\33xl\:auto-rows-min{grid-auto-rows:min-content!important}.\33xl\:auto-rows-max{grid-auto-rows:max-content!important}.\33xl\:auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.\33xl\:row-auto{grid-row:auto!important}.\33xl\:row-span-1{grid-row:span 1/span 1!important}.\33xl\:row-span-2{grid-row:span 2/span 2!important}.\33xl\:row-span-3{grid-row:span 3/span 3!important}.\33xl\:row-span-4{grid-row:span 4/span 4!important}.\33xl\:row-span-5{grid-row:span 5/span 5!important}.\33xl\:row-span-6{grid-row:span 6/span 6!important}.\33xl\:row-span-full{grid-row:1/-1!important}.\33xl\:row-start-1{grid-row-start:1!important}.\33xl\:row-start-2{grid-row-start:2!important}.\33xl\:row-start-3{grid-row-start:3!important}.\33xl\:row-start-4{grid-row-start:4!important}.\33xl\:row-start-5{grid-row-start:5!important}.\33xl\:row-start-6{grid-row-start:6!important}.\33xl\:row-start-7{grid-row-start:7!important}.\33xl\:row-start-auto{grid-row-start:auto!important}.\33xl\:row-end-1{grid-row-end:1!important}.\33xl\:row-end-2{grid-row-end:2!important}.\33xl\:row-end-3{grid-row-end:3!important}.\33xl\:row-end-4{grid-row-end:4!important}.\33xl\:row-end-5{grid-row-end:5!important}.\33xl\:row-end-6{grid-row-end:6!important}.\33xl\:row-end-7{grid-row-end:7!important}.\33xl\:row-end-auto{grid-row-end:auto!important}.\33xl\:transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.\33xl\:transform-none{transform:none!important}.\33xl\:origin-center{transform-origin:center!important}.\33xl\:origin-top{transform-origin:top!important}.\33xl\:origin-top-right{transform-origin:top right!important}.\33xl\:origin-right{transform-origin:right!important}.\33xl\:origin-bottom-right{transform-origin:bottom right!important}.\33xl\:origin-bottom{transform-origin:bottom!important}.\33xl\:origin-bottom-left{transform-origin:bottom left!important}.\33xl\:origin-left{transform-origin:left!important}.\33xl\:origin-top-left{transform-origin:top left!important}.\33xl\:scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.\33xl\:scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\33xl\:scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\33xl\:scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\33xl\:scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\33xl\:scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.\33xl\:scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\33xl\:scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\33xl\:scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\33xl\:scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\33xl\:scale-x-0{--transform-scale-x:0!important}.\33xl\:scale-x-50{--transform-scale-x:.5!important}.\33xl\:scale-x-75{--transform-scale-x:.75!important}.\33xl\:scale-x-90{--transform-scale-x:.9!important}.\33xl\:scale-x-95{--transform-scale-x:.95!important}.\33xl\:scale-x-100{--transform-scale-x:1!important}.\33xl\:scale-x-105{--transform-scale-x:1.05!important}.\33xl\:scale-x-110{--transform-scale-x:1.1!important}.\33xl\:scale-x-125{--transform-scale-x:1.25!important}.\33xl\:scale-x-150{--transform-scale-x:1.5!important}.\33xl\:scale-y-0{--transform-scale-y:0!important}.\33xl\:scale-y-50{--transform-scale-y:.5!important}.\33xl\:scale-y-75{--transform-scale-y:.75!important}.\33xl\:scale-y-90{--transform-scale-y:.9!important}.\33xl\:scale-y-95{--transform-scale-y:.95!important}.\33xl\:scale-y-100{--transform-scale-y:1!important}.\33xl\:scale-y-105{--transform-scale-y:1.05!important}.\33xl\:scale-y-110{--transform-scale-y:1.1!important}.\33xl\:scale-y-125{--transform-scale-y:1.25!important}.\33xl\:scale-y-150{--transform-scale-y:1.5!important}.\33xl\:hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.\33xl\:hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\33xl\:hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\33xl\:hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\33xl\:hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\33xl\:hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.\33xl\:hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\33xl\:hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\33xl\:hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\33xl\:hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\33xl\:hover\:scale-x-0:hover{--transform-scale-x:0!important}.\33xl\:hover\:scale-x-50:hover{--transform-scale-x:.5!important}.\33xl\:hover\:scale-x-75:hover{--transform-scale-x:.75!important}.\33xl\:hover\:scale-x-90:hover{--transform-scale-x:.9!important}.\33xl\:hover\:scale-x-95:hover{--transform-scale-x:.95!important}.\33xl\:hover\:scale-x-100:hover{--transform-scale-x:1!important}.\33xl\:hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.\33xl\:hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.\33xl\:hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.\33xl\:hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.\33xl\:hover\:scale-y-0:hover{--transform-scale-y:0!important}.\33xl\:hover\:scale-y-50:hover{--transform-scale-y:.5!important}.\33xl\:hover\:scale-y-75:hover{--transform-scale-y:.75!important}.\33xl\:hover\:scale-y-90:hover{--transform-scale-y:.9!important}.\33xl\:hover\:scale-y-95:hover{--transform-scale-y:.95!important}.\33xl\:hover\:scale-y-100:hover{--transform-scale-y:1!important}.\33xl\:hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.\33xl\:hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.\33xl\:hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.\33xl\:hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.\33xl\:focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.\33xl\:focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\33xl\:focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\33xl\:focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\33xl\:focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\33xl\:focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.\33xl\:focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\33xl\:focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\33xl\:focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\33xl\:focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\33xl\:focus\:scale-x-0:focus{--transform-scale-x:0!important}.\33xl\:focus\:scale-x-50:focus{--transform-scale-x:.5!important}.\33xl\:focus\:scale-x-75:focus{--transform-scale-x:.75!important}.\33xl\:focus\:scale-x-90:focus{--transform-scale-x:.9!important}.\33xl\:focus\:scale-x-95:focus{--transform-scale-x:.95!important}.\33xl\:focus\:scale-x-100:focus{--transform-scale-x:1!important}.\33xl\:focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.\33xl\:focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.\33xl\:focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.\33xl\:focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.\33xl\:focus\:scale-y-0:focus{--transform-scale-y:0!important}.\33xl\:focus\:scale-y-50:focus{--transform-scale-y:.5!important}.\33xl\:focus\:scale-y-75:focus{--transform-scale-y:.75!important}.\33xl\:focus\:scale-y-90:focus{--transform-scale-y:.9!important}.\33xl\:focus\:scale-y-95:focus{--transform-scale-y:.95!important}.\33xl\:focus\:scale-y-100:focus{--transform-scale-y:1!important}.\33xl\:focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.\33xl\:focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.\33xl\:focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.\33xl\:focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.\33xl\:rotate-0{--transform-rotate:0!important}.\33xl\:rotate-1{--transform-rotate:1deg!important}.\33xl\:rotate-2{--transform-rotate:2deg!important}.\33xl\:rotate-3{--transform-rotate:3deg!important}.\33xl\:rotate-6{--transform-rotate:6deg!important}.\33xl\:rotate-12{--transform-rotate:12deg!important}.\33xl\:rotate-45{--transform-rotate:45deg!important}.\33xl\:rotate-90{--transform-rotate:90deg!important}.\33xl\:rotate-180{--transform-rotate:180deg!important}.\33xl\:-rotate-180{--transform-rotate:-180deg!important}.\33xl\:-rotate-90{--transform-rotate:-90deg!important}.\33xl\:-rotate-45{--transform-rotate:-45deg!important}.\33xl\:-rotate-12{--transform-rotate:-12deg!important}.\33xl\:-rotate-6{--transform-rotate:-6deg!important}.\33xl\:-rotate-3{--transform-rotate:-3deg!important}.\33xl\:-rotate-2{--transform-rotate:-2deg!important}.\33xl\:-rotate-1{--transform-rotate:-1deg!important}.\33xl\:hover\:rotate-0:hover{--transform-rotate:0!important}.\33xl\:hover\:rotate-1:hover{--transform-rotate:1deg!important}.\33xl\:hover\:rotate-2:hover{--transform-rotate:2deg!important}.\33xl\:hover\:rotate-3:hover{--transform-rotate:3deg!important}.\33xl\:hover\:rotate-6:hover{--transform-rotate:6deg!important}.\33xl\:hover\:rotate-12:hover{--transform-rotate:12deg!important}.\33xl\:hover\:rotate-45:hover{--transform-rotate:45deg!important}.\33xl\:hover\:rotate-90:hover{--transform-rotate:90deg!important}.\33xl\:hover\:rotate-180:hover{--transform-rotate:180deg!important}.\33xl\:hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.\33xl\:hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.\33xl\:hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.\33xl\:hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.\33xl\:hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.\33xl\:hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.\33xl\:hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.\33xl\:hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.\33xl\:focus\:rotate-0:focus{--transform-rotate:0!important}.\33xl\:focus\:rotate-1:focus{--transform-rotate:1deg!important}.\33xl\:focus\:rotate-2:focus{--transform-rotate:2deg!important}.\33xl\:focus\:rotate-3:focus{--transform-rotate:3deg!important}.\33xl\:focus\:rotate-6:focus{--transform-rotate:6deg!important}.\33xl\:focus\:rotate-12:focus{--transform-rotate:12deg!important}.\33xl\:focus\:rotate-45:focus{--transform-rotate:45deg!important}.\33xl\:focus\:rotate-90:focus{--transform-rotate:90deg!important}.\33xl\:focus\:rotate-180:focus{--transform-rotate:180deg!important}.\33xl\:focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.\33xl\:focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.\33xl\:focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.\33xl\:focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.\33xl\:focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.\33xl\:focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.\33xl\:focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.\33xl\:focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.\33xl\:translate-x-0{--transform-translate-x:0!important}.\33xl\:translate-x-1{--transform-translate-x:0.25rem!important}.\33xl\:translate-x-2{--transform-translate-x:0.5rem!important}.\33xl\:translate-x-3{--transform-translate-x:0.75rem!important}.\33xl\:translate-x-4{--transform-translate-x:1rem!important}.\33xl\:translate-x-5{--transform-translate-x:1.25rem!important}.\33xl\:translate-x-6{--transform-translate-x:1.5rem!important}.\33xl\:translate-x-7{--transform-translate-x:1.75rem!important}.\33xl\:translate-x-8{--transform-translate-x:2rem!important}.\33xl\:translate-x-9{--transform-translate-x:2.25rem!important}.\33xl\:translate-x-10{--transform-translate-x:2.5rem!important}.\33xl\:translate-x-11{--transform-translate-x:2.75rem!important}.\33xl\:translate-x-12{--transform-translate-x:3rem!important}.\33xl\:translate-x-13{--transform-translate-x:3.25rem!important}.\33xl\:translate-x-14{--transform-translate-x:3.5rem!important}.\33xl\:translate-x-15{--transform-translate-x:3.75rem!important}.\33xl\:translate-x-16{--transform-translate-x:4rem!important}.\33xl\:translate-x-20{--transform-translate-x:5rem!important}.\33xl\:translate-x-24{--transform-translate-x:6rem!important}.\33xl\:translate-x-28{--transform-translate-x:7rem!important}.\33xl\:translate-x-32{--transform-translate-x:8rem!important}.\33xl\:translate-x-36{--transform-translate-x:9rem!important}.\33xl\:translate-x-40{--transform-translate-x:10rem!important}.\33xl\:translate-x-48{--transform-translate-x:12rem!important}.\33xl\:translate-x-56{--transform-translate-x:14rem!important}.\33xl\:translate-x-60{--transform-translate-x:15rem!important}.\33xl\:translate-x-64{--transform-translate-x:16rem!important}.\33xl\:translate-x-72{--transform-translate-x:18rem!important}.\33xl\:translate-x-80{--transform-translate-x:20rem!important}.\33xl\:translate-x-96{--transform-translate-x:24rem!important}.\33xl\:translate-x-px{--transform-translate-x:1px!important}.\33xl\:translate-x-0\.5{--transform-translate-x:0.125rem!important}.\33xl\:translate-x-1\.5{--transform-translate-x:0.375rem!important}.\33xl\:translate-x-2\.5{--transform-translate-x:0.625rem!important}.\33xl\:translate-x-3\.5{--transform-translate-x:0.875rem!important}.\33xl\:translate-x-1\/2{--transform-translate-x:50%!important}.\33xl\:translate-x-1\/3{--transform-translate-x:33.333333%!important}.\33xl\:translate-x-2\/3{--transform-translate-x:66.666667%!important}.\33xl\:translate-x-1\/4{--transform-translate-x:25%!important}.\33xl\:translate-x-2\/4{--transform-translate-x:50%!important}.\33xl\:translate-x-3\/4{--transform-translate-x:75%!important}.\33xl\:translate-x-1\/5{--transform-translate-x:20%!important}.\33xl\:translate-x-2\/5{--transform-translate-x:40%!important}.\33xl\:translate-x-3\/5{--transform-translate-x:60%!important}.\33xl\:translate-x-4\/5{--transform-translate-x:80%!important}.\33xl\:translate-x-1\/6{--transform-translate-x:16.666667%!important}.\33xl\:translate-x-2\/6{--transform-translate-x:33.333333%!important}.\33xl\:translate-x-3\/6{--transform-translate-x:50%!important}.\33xl\:translate-x-4\/6{--transform-translate-x:66.666667%!important}.\33xl\:translate-x-5\/6{--transform-translate-x:83.333333%!important}.\33xl\:translate-x-1\/12{--transform-translate-x:8.333333%!important}.\33xl\:translate-x-2\/12{--transform-translate-x:16.666667%!important}.\33xl\:translate-x-3\/12{--transform-translate-x:25%!important}.\33xl\:translate-x-4\/12{--transform-translate-x:33.333333%!important}.\33xl\:translate-x-5\/12{--transform-translate-x:41.666667%!important}.\33xl\:translate-x-6\/12{--transform-translate-x:50%!important}.\33xl\:translate-x-7\/12{--transform-translate-x:58.333333%!important}.\33xl\:translate-x-8\/12{--transform-translate-x:66.666667%!important}.\33xl\:translate-x-9\/12{--transform-translate-x:75%!important}.\33xl\:translate-x-10\/12{--transform-translate-x:83.333333%!important}.\33xl\:translate-x-11\/12{--transform-translate-x:91.666667%!important}.\33xl\:translate-x-full{--transform-translate-x:100%!important}.\33xl\:-translate-x-1{--transform-translate-x:-0.25rem!important}.\33xl\:-translate-x-2{--transform-translate-x:-0.5rem!important}.\33xl\:-translate-x-3{--transform-translate-x:-0.75rem!important}.\33xl\:-translate-x-4{--transform-translate-x:-1rem!important}.\33xl\:-translate-x-5{--transform-translate-x:-1.25rem!important}.\33xl\:-translate-x-6{--transform-translate-x:-1.5rem!important}.\33xl\:-translate-x-7{--transform-translate-x:-1.75rem!important}.\33xl\:-translate-x-8{--transform-translate-x:-2rem!important}.\33xl\:-translate-x-9{--transform-translate-x:-2.25rem!important}.\33xl\:-translate-x-10{--transform-translate-x:-2.5rem!important}.\33xl\:-translate-x-11{--transform-translate-x:-2.75rem!important}.\33xl\:-translate-x-12{--transform-translate-x:-3rem!important}.\33xl\:-translate-x-13{--transform-translate-x:-3.25rem!important}.\33xl\:-translate-x-14{--transform-translate-x:-3.5rem!important}.\33xl\:-translate-x-15{--transform-translate-x:-3.75rem!important}.\33xl\:-translate-x-16{--transform-translate-x:-4rem!important}.\33xl\:-translate-x-20{--transform-translate-x:-5rem!important}.\33xl\:-translate-x-24{--transform-translate-x:-6rem!important}.\33xl\:-translate-x-28{--transform-translate-x:-7rem!important}.\33xl\:-translate-x-32{--transform-translate-x:-8rem!important}.\33xl\:-translate-x-36{--transform-translate-x:-9rem!important}.\33xl\:-translate-x-40{--transform-translate-x:-10rem!important}.\33xl\:-translate-x-48{--transform-translate-x:-12rem!important}.\33xl\:-translate-x-56{--transform-translate-x:-14rem!important}.\33xl\:-translate-x-60{--transform-translate-x:-15rem!important}.\33xl\:-translate-x-64{--transform-translate-x:-16rem!important}.\33xl\:-translate-x-72{--transform-translate-x:-18rem!important}.\33xl\:-translate-x-80{--transform-translate-x:-20rem!important}.\33xl\:-translate-x-96{--transform-translate-x:-24rem!important}.\33xl\:-translate-x-px{--transform-translate-x:-1px!important}.\33xl\:-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.\33xl\:-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.\33xl\:-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.\33xl\:-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.\33xl\:-translate-x-1\/2{--transform-translate-x:-50%!important}.\33xl\:-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.\33xl\:-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.\33xl\:-translate-x-1\/4{--transform-translate-x:-25%!important}.\33xl\:-translate-x-2\/4{--transform-translate-x:-50%!important}.\33xl\:-translate-x-3\/4{--transform-translate-x:-75%!important}.\33xl\:-translate-x-1\/5{--transform-translate-x:-20%!important}.\33xl\:-translate-x-2\/5{--transform-translate-x:-40%!important}.\33xl\:-translate-x-3\/5{--transform-translate-x:-60%!important}.\33xl\:-translate-x-4\/5{--transform-translate-x:-80%!important}.\33xl\:-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.\33xl\:-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.\33xl\:-translate-x-3\/6{--transform-translate-x:-50%!important}.\33xl\:-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.\33xl\:-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.\33xl\:-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.\33xl\:-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.\33xl\:-translate-x-3\/12{--transform-translate-x:-25%!important}.\33xl\:-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.\33xl\:-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.\33xl\:-translate-x-6\/12{--transform-translate-x:-50%!important}.\33xl\:-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.\33xl\:-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.\33xl\:-translate-x-9\/12{--transform-translate-x:-75%!important}.\33xl\:-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.\33xl\:-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.\33xl\:-translate-x-full{--transform-translate-x:-100%!important}.\33xl\:translate-y-0{--transform-translate-y:0!important}.\33xl\:translate-y-1{--transform-translate-y:0.25rem!important}.\33xl\:translate-y-2{--transform-translate-y:0.5rem!important}.\33xl\:translate-y-3{--transform-translate-y:0.75rem!important}.\33xl\:translate-y-4{--transform-translate-y:1rem!important}.\33xl\:translate-y-5{--transform-translate-y:1.25rem!important}.\33xl\:translate-y-6{--transform-translate-y:1.5rem!important}.\33xl\:translate-y-7{--transform-translate-y:1.75rem!important}.\33xl\:translate-y-8{--transform-translate-y:2rem!important}.\33xl\:translate-y-9{--transform-translate-y:2.25rem!important}.\33xl\:translate-y-10{--transform-translate-y:2.5rem!important}.\33xl\:translate-y-11{--transform-translate-y:2.75rem!important}.\33xl\:translate-y-12{--transform-translate-y:3rem!important}.\33xl\:translate-y-13{--transform-translate-y:3.25rem!important}.\33xl\:translate-y-14{--transform-translate-y:3.5rem!important}.\33xl\:translate-y-15{--transform-translate-y:3.75rem!important}.\33xl\:translate-y-16{--transform-translate-y:4rem!important}.\33xl\:translate-y-20{--transform-translate-y:5rem!important}.\33xl\:translate-y-24{--transform-translate-y:6rem!important}.\33xl\:translate-y-28{--transform-translate-y:7rem!important}.\33xl\:translate-y-32{--transform-translate-y:8rem!important}.\33xl\:translate-y-36{--transform-translate-y:9rem!important}.\33xl\:translate-y-40{--transform-translate-y:10rem!important}.\33xl\:translate-y-48{--transform-translate-y:12rem!important}.\33xl\:translate-y-56{--transform-translate-y:14rem!important}.\33xl\:translate-y-60{--transform-translate-y:15rem!important}.\33xl\:translate-y-64{--transform-translate-y:16rem!important}.\33xl\:translate-y-72{--transform-translate-y:18rem!important}.\33xl\:translate-y-80{--transform-translate-y:20rem!important}.\33xl\:translate-y-96{--transform-translate-y:24rem!important}.\33xl\:translate-y-px{--transform-translate-y:1px!important}.\33xl\:translate-y-0\.5{--transform-translate-y:0.125rem!important}.\33xl\:translate-y-1\.5{--transform-translate-y:0.375rem!important}.\33xl\:translate-y-2\.5{--transform-translate-y:0.625rem!important}.\33xl\:translate-y-3\.5{--transform-translate-y:0.875rem!important}.\33xl\:translate-y-1\/2{--transform-translate-y:50%!important}.\33xl\:translate-y-1\/3{--transform-translate-y:33.333333%!important}.\33xl\:translate-y-2\/3{--transform-translate-y:66.666667%!important}.\33xl\:translate-y-1\/4{--transform-translate-y:25%!important}.\33xl\:translate-y-2\/4{--transform-translate-y:50%!important}.\33xl\:translate-y-3\/4{--transform-translate-y:75%!important}.\33xl\:translate-y-1\/5{--transform-translate-y:20%!important}.\33xl\:translate-y-2\/5{--transform-translate-y:40%!important}.\33xl\:translate-y-3\/5{--transform-translate-y:60%!important}.\33xl\:translate-y-4\/5{--transform-translate-y:80%!important}.\33xl\:translate-y-1\/6{--transform-translate-y:16.666667%!important}.\33xl\:translate-y-2\/6{--transform-translate-y:33.333333%!important}.\33xl\:translate-y-3\/6{--transform-translate-y:50%!important}.\33xl\:translate-y-4\/6{--transform-translate-y:66.666667%!important}.\33xl\:translate-y-5\/6{--transform-translate-y:83.333333%!important}.\33xl\:translate-y-1\/12{--transform-translate-y:8.333333%!important}.\33xl\:translate-y-2\/12{--transform-translate-y:16.666667%!important}.\33xl\:translate-y-3\/12{--transform-translate-y:25%!important}.\33xl\:translate-y-4\/12{--transform-translate-y:33.333333%!important}.\33xl\:translate-y-5\/12{--transform-translate-y:41.666667%!important}.\33xl\:translate-y-6\/12{--transform-translate-y:50%!important}.\33xl\:translate-y-7\/12{--transform-translate-y:58.333333%!important}.\33xl\:translate-y-8\/12{--transform-translate-y:66.666667%!important}.\33xl\:translate-y-9\/12{--transform-translate-y:75%!important}.\33xl\:translate-y-10\/12{--transform-translate-y:83.333333%!important}.\33xl\:translate-y-11\/12{--transform-translate-y:91.666667%!important}.\33xl\:translate-y-full{--transform-translate-y:100%!important}.\33xl\:-translate-y-1{--transform-translate-y:-0.25rem!important}.\33xl\:-translate-y-2{--transform-translate-y:-0.5rem!important}.\33xl\:-translate-y-3{--transform-translate-y:-0.75rem!important}.\33xl\:-translate-y-4{--transform-translate-y:-1rem!important}.\33xl\:-translate-y-5{--transform-translate-y:-1.25rem!important}.\33xl\:-translate-y-6{--transform-translate-y:-1.5rem!important}.\33xl\:-translate-y-7{--transform-translate-y:-1.75rem!important}.\33xl\:-translate-y-8{--transform-translate-y:-2rem!important}.\33xl\:-translate-y-9{--transform-translate-y:-2.25rem!important}.\33xl\:-translate-y-10{--transform-translate-y:-2.5rem!important}.\33xl\:-translate-y-11{--transform-translate-y:-2.75rem!important}.\33xl\:-translate-y-12{--transform-translate-y:-3rem!important}.\33xl\:-translate-y-13{--transform-translate-y:-3.25rem!important}.\33xl\:-translate-y-14{--transform-translate-y:-3.5rem!important}.\33xl\:-translate-y-15{--transform-translate-y:-3.75rem!important}.\33xl\:-translate-y-16{--transform-translate-y:-4rem!important}.\33xl\:-translate-y-20{--transform-translate-y:-5rem!important}.\33xl\:-translate-y-24{--transform-translate-y:-6rem!important}.\33xl\:-translate-y-28{--transform-translate-y:-7rem!important}.\33xl\:-translate-y-32{--transform-translate-y:-8rem!important}.\33xl\:-translate-y-36{--transform-translate-y:-9rem!important}.\33xl\:-translate-y-40{--transform-translate-y:-10rem!important}.\33xl\:-translate-y-48{--transform-translate-y:-12rem!important}.\33xl\:-translate-y-56{--transform-translate-y:-14rem!important}.\33xl\:-translate-y-60{--transform-translate-y:-15rem!important}.\33xl\:-translate-y-64{--transform-translate-y:-16rem!important}.\33xl\:-translate-y-72{--transform-translate-y:-18rem!important}.\33xl\:-translate-y-80{--transform-translate-y:-20rem!important}.\33xl\:-translate-y-96{--transform-translate-y:-24rem!important}.\33xl\:-translate-y-px{--transform-translate-y:-1px!important}.\33xl\:-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.\33xl\:-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.\33xl\:-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.\33xl\:-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.\33xl\:-translate-y-1\/2{--transform-translate-y:-50%!important}.\33xl\:-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.\33xl\:-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.\33xl\:-translate-y-1\/4{--transform-translate-y:-25%!important}.\33xl\:-translate-y-2\/4{--transform-translate-y:-50%!important}.\33xl\:-translate-y-3\/4{--transform-translate-y:-75%!important}.\33xl\:-translate-y-1\/5{--transform-translate-y:-20%!important}.\33xl\:-translate-y-2\/5{--transform-translate-y:-40%!important}.\33xl\:-translate-y-3\/5{--transform-translate-y:-60%!important}.\33xl\:-translate-y-4\/5{--transform-translate-y:-80%!important}.\33xl\:-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.\33xl\:-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.\33xl\:-translate-y-3\/6{--transform-translate-y:-50%!important}.\33xl\:-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.\33xl\:-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.\33xl\:-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.\33xl\:-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.\33xl\:-translate-y-3\/12{--transform-translate-y:-25%!important}.\33xl\:-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.\33xl\:-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.\33xl\:-translate-y-6\/12{--transform-translate-y:-50%!important}.\33xl\:-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.\33xl\:-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.\33xl\:-translate-y-9\/12{--transform-translate-y:-75%!important}.\33xl\:-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.\33xl\:-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.\33xl\:-translate-y-full{--transform-translate-y:-100%!important}.\33xl\:hover\:translate-x-0:hover{--transform-translate-x:0!important}.\33xl\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.\33xl\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.\33xl\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.\33xl\:hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.\33xl\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.\33xl\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.\33xl\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.\33xl\:hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.\33xl\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.\33xl\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.\33xl\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.\33xl\:hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.\33xl\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.\33xl\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.\33xl\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.\33xl\:hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.\33xl\:hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.\33xl\:hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.\33xl\:hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.\33xl\:hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.\33xl\:hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.\33xl\:hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.\33xl\:hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.\33xl\:hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.\33xl\:hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.\33xl\:hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.\33xl\:hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.\33xl\:hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.\33xl\:hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.\33xl\:hover\:translate-x-px:hover{--transform-translate-x:1px!important}.\33xl\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.\33xl\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.\33xl\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.\33xl\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.\33xl\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.\33xl\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.\33xl\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.\33xl\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.\33xl\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.\33xl\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.\33xl\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.\33xl\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.\33xl\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.\33xl\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.\33xl\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.\33xl\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.\33xl\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.\33xl\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.\33xl\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.\33xl\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.\33xl\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.\33xl\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.\33xl\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.\33xl\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.\33xl\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.\33xl\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.\33xl\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.\33xl\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.\33xl\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.\33xl\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.\33xl\:hover\:translate-x-full:hover{--transform-translate-x:100%!important}.\33xl\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.\33xl\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.\33xl\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.\33xl\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.\33xl\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.\33xl\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.\33xl\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.\33xl\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.\33xl\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.\33xl\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.\33xl\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.\33xl\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.\33xl\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.\33xl\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.\33xl\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.\33xl\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.\33xl\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.\33xl\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.\33xl\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.\33xl\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.\33xl\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.\33xl\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.\33xl\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.\33xl\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.\33xl\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.\33xl\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.\33xl\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.\33xl\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.\33xl\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.\33xl\:hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.\33xl\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.\33xl\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.\33xl\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.\33xl\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.\33xl\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.\33xl\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.\33xl\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.\33xl\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.\33xl\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.\33xl\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.\33xl\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.\33xl\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.\33xl\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.\33xl\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.\33xl\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.\33xl\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.\33xl\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.\33xl\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.\33xl\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.\33xl\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.\33xl\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.\33xl\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.\33xl\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.\33xl\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.\33xl\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.\33xl\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.\33xl\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.\33xl\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.\33xl\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.\33xl\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.\33xl\:hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.\33xl\:hover\:translate-y-0:hover{--transform-translate-y:0!important}.\33xl\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.\33xl\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.\33xl\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.\33xl\:hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.\33xl\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.\33xl\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.\33xl\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.\33xl\:hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.\33xl\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.\33xl\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.\33xl\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.\33xl\:hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.\33xl\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.\33xl\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.\33xl\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.\33xl\:hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.\33xl\:hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.\33xl\:hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.\33xl\:hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.\33xl\:hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.\33xl\:hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.\33xl\:hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.\33xl\:hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.\33xl\:hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.\33xl\:hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.\33xl\:hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.\33xl\:hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.\33xl\:hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.\33xl\:hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.\33xl\:hover\:translate-y-px:hover{--transform-translate-y:1px!important}.\33xl\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.\33xl\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.\33xl\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.\33xl\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.\33xl\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.\33xl\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.\33xl\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.\33xl\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.\33xl\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.\33xl\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.\33xl\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.\33xl\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.\33xl\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.\33xl\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.\33xl\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.\33xl\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.\33xl\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.\33xl\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.\33xl\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.\33xl\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.\33xl\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.\33xl\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.\33xl\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.\33xl\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.\33xl\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.\33xl\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.\33xl\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.\33xl\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.\33xl\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.\33xl\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.\33xl\:hover\:translate-y-full:hover{--transform-translate-y:100%!important}.\33xl\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.\33xl\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.\33xl\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.\33xl\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.\33xl\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.\33xl\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.\33xl\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.\33xl\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.\33xl\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.\33xl\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.\33xl\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.\33xl\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.\33xl\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.\33xl\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.\33xl\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.\33xl\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.\33xl\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.\33xl\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.\33xl\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.\33xl\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.\33xl\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.\33xl\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.\33xl\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.\33xl\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.\33xl\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.\33xl\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.\33xl\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.\33xl\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.\33xl\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.\33xl\:hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.\33xl\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.\33xl\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.\33xl\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.\33xl\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.\33xl\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.\33xl\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.\33xl\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.\33xl\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.\33xl\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.\33xl\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.\33xl\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.\33xl\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.\33xl\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.\33xl\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.\33xl\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.\33xl\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.\33xl\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.\33xl\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.\33xl\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.\33xl\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.\33xl\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.\33xl\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.\33xl\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.\33xl\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.\33xl\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.\33xl\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.\33xl\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.\33xl\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.\33xl\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.\33xl\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.\33xl\:hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.\33xl\:focus\:translate-x-0:focus{--transform-translate-x:0!important}.\33xl\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.\33xl\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.\33xl\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.\33xl\:focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.\33xl\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.\33xl\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.\33xl\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.\33xl\:focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.\33xl\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.\33xl\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.\33xl\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.\33xl\:focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.\33xl\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.\33xl\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.\33xl\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.\33xl\:focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.\33xl\:focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.\33xl\:focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.\33xl\:focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.\33xl\:focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.\33xl\:focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.\33xl\:focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.\33xl\:focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.\33xl\:focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.\33xl\:focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.\33xl\:focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.\33xl\:focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.\33xl\:focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.\33xl\:focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.\33xl\:focus\:translate-x-px:focus{--transform-translate-x:1px!important}.\33xl\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.\33xl\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.\33xl\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.\33xl\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.\33xl\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.\33xl\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.\33xl\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.\33xl\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.\33xl\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.\33xl\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.\33xl\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.\33xl\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.\33xl\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.\33xl\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.\33xl\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.\33xl\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.\33xl\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.\33xl\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.\33xl\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.\33xl\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.\33xl\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.\33xl\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.\33xl\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.\33xl\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.\33xl\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.\33xl\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.\33xl\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.\33xl\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.\33xl\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.\33xl\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.\33xl\:focus\:translate-x-full:focus{--transform-translate-x:100%!important}.\33xl\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.\33xl\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.\33xl\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.\33xl\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.\33xl\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.\33xl\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.\33xl\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.\33xl\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.\33xl\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.\33xl\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.\33xl\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.\33xl\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.\33xl\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.\33xl\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.\33xl\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.\33xl\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.\33xl\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.\33xl\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.\33xl\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.\33xl\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.\33xl\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.\33xl\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.\33xl\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.\33xl\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.\33xl\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.\33xl\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.\33xl\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.\33xl\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.\33xl\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.\33xl\:focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.\33xl\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.\33xl\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.\33xl\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.\33xl\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.\33xl\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.\33xl\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.\33xl\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.\33xl\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.\33xl\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.\33xl\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.\33xl\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.\33xl\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.\33xl\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.\33xl\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.\33xl\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.\33xl\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.\33xl\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.\33xl\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.\33xl\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.\33xl\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.\33xl\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.\33xl\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.\33xl\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.\33xl\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.\33xl\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.\33xl\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.\33xl\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.\33xl\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.\33xl\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.\33xl\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.\33xl\:focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.\33xl\:focus\:translate-y-0:focus{--transform-translate-y:0!important}.\33xl\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.\33xl\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.\33xl\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.\33xl\:focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.\33xl\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.\33xl\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.\33xl\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.\33xl\:focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.\33xl\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.\33xl\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.\33xl\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.\33xl\:focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.\33xl\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.\33xl\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.\33xl\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.\33xl\:focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.\33xl\:focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.\33xl\:focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.\33xl\:focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.\33xl\:focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.\33xl\:focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.\33xl\:focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.\33xl\:focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.\33xl\:focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.\33xl\:focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.\33xl\:focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.\33xl\:focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.\33xl\:focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.\33xl\:focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.\33xl\:focus\:translate-y-px:focus{--transform-translate-y:1px!important}.\33xl\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.\33xl\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.\33xl\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.\33xl\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.\33xl\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.\33xl\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.\33xl\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.\33xl\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.\33xl\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.\33xl\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.\33xl\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.\33xl\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.\33xl\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.\33xl\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.\33xl\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.\33xl\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.\33xl\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.\33xl\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.\33xl\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.\33xl\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.\33xl\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.\33xl\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.\33xl\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.\33xl\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.\33xl\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.\33xl\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.\33xl\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.\33xl\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.\33xl\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.\33xl\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.\33xl\:focus\:translate-y-full:focus{--transform-translate-y:100%!important}.\33xl\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.\33xl\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.\33xl\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.\33xl\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.\33xl\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.\33xl\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.\33xl\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.\33xl\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.\33xl\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.\33xl\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.\33xl\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.\33xl\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.\33xl\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.\33xl\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.\33xl\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.\33xl\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.\33xl\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.\33xl\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.\33xl\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.\33xl\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.\33xl\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.\33xl\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.\33xl\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.\33xl\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.\33xl\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.\33xl\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.\33xl\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.\33xl\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.\33xl\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.\33xl\:focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.\33xl\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.\33xl\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.\33xl\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.\33xl\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.\33xl\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.\33xl\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.\33xl\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.\33xl\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.\33xl\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.\33xl\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.\33xl\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.\33xl\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.\33xl\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.\33xl\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.\33xl\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.\33xl\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.\33xl\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.\33xl\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.\33xl\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.\33xl\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.\33xl\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.\33xl\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.\33xl\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.\33xl\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.\33xl\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.\33xl\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.\33xl\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.\33xl\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.\33xl\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.\33xl\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.\33xl\:focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.\33xl\:skew-x-0{--transform-skew-x:0!important}.\33xl\:skew-x-1{--transform-skew-x:1deg!important}.\33xl\:skew-x-2{--transform-skew-x:2deg!important}.\33xl\:skew-x-3{--transform-skew-x:3deg!important}.\33xl\:skew-x-6{--transform-skew-x:6deg!important}.\33xl\:skew-x-12{--transform-skew-x:12deg!important}.\33xl\:-skew-x-12{--transform-skew-x:-12deg!important}.\33xl\:-skew-x-6{--transform-skew-x:-6deg!important}.\33xl\:-skew-x-3{--transform-skew-x:-3deg!important}.\33xl\:-skew-x-2{--transform-skew-x:-2deg!important}.\33xl\:-skew-x-1{--transform-skew-x:-1deg!important}.\33xl\:skew-y-0{--transform-skew-y:0!important}.\33xl\:skew-y-1{--transform-skew-y:1deg!important}.\33xl\:skew-y-2{--transform-skew-y:2deg!important}.\33xl\:skew-y-3{--transform-skew-y:3deg!important}.\33xl\:skew-y-6{--transform-skew-y:6deg!important}.\33xl\:skew-y-12{--transform-skew-y:12deg!important}.\33xl\:-skew-y-12{--transform-skew-y:-12deg!important}.\33xl\:-skew-y-6{--transform-skew-y:-6deg!important}.\33xl\:-skew-y-3{--transform-skew-y:-3deg!important}.\33xl\:-skew-y-2{--transform-skew-y:-2deg!important}.\33xl\:-skew-y-1{--transform-skew-y:-1deg!important}.\33xl\:hover\:skew-x-0:hover{--transform-skew-x:0!important}.\33xl\:hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.\33xl\:hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.\33xl\:hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.\33xl\:hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.\33xl\:hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.\33xl\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.\33xl\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.\33xl\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.\33xl\:hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.\33xl\:hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.\33xl\:hover\:skew-y-0:hover{--transform-skew-y:0!important}.\33xl\:hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.\33xl\:hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.\33xl\:hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.\33xl\:hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.\33xl\:hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.\33xl\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.\33xl\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.\33xl\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.\33xl\:hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.\33xl\:hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.\33xl\:focus\:skew-x-0:focus{--transform-skew-x:0!important}.\33xl\:focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.\33xl\:focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.\33xl\:focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.\33xl\:focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.\33xl\:focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.\33xl\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.\33xl\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.\33xl\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.\33xl\:focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.\33xl\:focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.\33xl\:focus\:skew-y-0:focus{--transform-skew-y:0!important}.\33xl\:focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.\33xl\:focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.\33xl\:focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.\33xl\:focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.\33xl\:focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.\33xl\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.\33xl\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.\33xl\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.\33xl\:focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.\33xl\:focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.\33xl\:transition-none{transition-property:none!important}.\33xl\:transition-all{transition-property:all!important}.\33xl\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.\33xl\:transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.\33xl\:transition-opacity{transition-property:opacity!important}.\33xl\:transition-shadow{transition-property:box-shadow!important}.\33xl\:transition-transform{transition-property:transform!important}.\33xl\:ease-linear{transition-timing-function:linear!important}.\33xl\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.\33xl\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.\33xl\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.\33xl\:duration-75{transition-duration:75ms!important}.\33xl\:duration-100{transition-duration:.1s!important}.\33xl\:duration-150{transition-duration:.15s!important}.\33xl\:duration-200{transition-duration:.2s!important}.\33xl\:duration-300{transition-duration:.3s!important}.\33xl\:duration-500{transition-duration:.5s!important}.\33xl\:duration-700{transition-duration:.7s!important}.\33xl\:duration-1000{transition-duration:1s!important}.\33xl\:duration-2000{transition-duration:2s!important}.\33xl\:delay-75{transition-delay:75ms!important}.\33xl\:delay-100{transition-delay:.1s!important}.\33xl\:delay-150{transition-delay:.15s!important}.\33xl\:delay-200{transition-delay:.2s!important}.\33xl\:delay-300{transition-delay:.3s!important}.\33xl\:delay-500{transition-delay:.5s!important}.\33xl\:delay-700{transition-delay:.7s!important}.\33xl\:delay-1000{transition-delay:1s!important}.\33xl\:animate-none{animation:none!important}.\33xl\:animate-spin{animation:spin 1s linear infinite!important}.\33xl\:animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.\33xl\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.\33xl\:animate-bounce{animation:bounce 1s infinite!important}}@media (min-width:2200px){.\34xl\:space-y-0>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(0px*var(--space-y-reverse))!important;margin-top:calc(0px*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-0>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(0px*(1 - var(--space-x-reverse)))!important;margin-right:calc(0px*var(--space-x-reverse))!important}.\34xl\:space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.25rem*var(--space-y-reverse))!important;margin-top:calc(.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.25rem*var(--space-x-reverse))!important}.\34xl\:space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.5rem*var(--space-x-reverse))!important}.\34xl\:space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.75rem*var(--space-y-reverse))!important;margin-top:calc(.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.75rem*var(--space-x-reverse))!important}.\34xl\:space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1rem*var(--space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1rem*var(--space-x-reverse))!important}.\34xl\:space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.25rem*var(--space-y-reverse))!important;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.25rem*var(--space-x-reverse))!important}.\34xl\:space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.5rem*var(--space-x-reverse))!important}.\34xl\:space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1.75rem*var(--space-y-reverse))!important;margin-top:calc(1.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(1.75rem*var(--space-x-reverse))!important}.\34xl\:space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2rem*var(--space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2rem*var(--space-x-reverse))!important}.\34xl\:space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.25rem*var(--space-y-reverse))!important;margin-top:calc(2.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.25rem*var(--space-x-reverse))!important}.\34xl\:space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.5rem*var(--space-y-reverse))!important;margin-top:calc(2.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.5rem*var(--space-x-reverse))!important}.\34xl\:space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(2.75rem*var(--space-y-reverse))!important;margin-top:calc(2.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(2.75rem*var(--space-x-reverse))!important}.\34xl\:space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3rem*var(--space-y-reverse))!important;margin-top:calc(3rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3rem*var(--space-x-reverse))!important}.\34xl\:space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.25rem*var(--space-y-reverse))!important;margin-top:calc(3.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.25rem*var(--space-x-reverse))!important}.\34xl\:space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.5rem*var(--space-y-reverse))!important;margin-top:calc(3.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.5rem*var(--space-x-reverse))!important}.\34xl\:space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(3.75rem*var(--space-y-reverse))!important;margin-top:calc(3.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(3.75rem*var(--space-x-reverse))!important}.\34xl\:space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(4rem*var(--space-y-reverse))!important;margin-top:calc(4rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(4rem*var(--space-x-reverse))!important}.\34xl\:space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(5rem*var(--space-y-reverse))!important;margin-top:calc(5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(5rem*var(--space-x-reverse))!important}.\34xl\:space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(6rem*var(--space-y-reverse))!important;margin-top:calc(6rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(6rem*var(--space-x-reverse))!important}.\34xl\:space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(7rem*var(--space-y-reverse))!important;margin-top:calc(7rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(7rem*var(--space-x-reverse))!important}.\34xl\:space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8rem*var(--space-y-reverse))!important;margin-top:calc(8rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(8rem*var(--space-x-reverse))!important}.\34xl\:space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(9rem*var(--space-y-reverse))!important;margin-top:calc(9rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(9rem*var(--space-x-reverse))!important}.\34xl\:space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(10rem*var(--space-y-reverse))!important;margin-top:calc(10rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(10rem*var(--space-x-reverse))!important}.\34xl\:space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(12rem*var(--space-y-reverse))!important;margin-top:calc(12rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(12rem*var(--space-x-reverse))!important}.\34xl\:space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(14rem*var(--space-y-reverse))!important;margin-top:calc(14rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(14rem*var(--space-x-reverse))!important}.\34xl\:space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(15rem*var(--space-y-reverse))!important;margin-top:calc(15rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(15rem*var(--space-x-reverse))!important}.\34xl\:space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16rem*var(--space-y-reverse))!important;margin-top:calc(16rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(16rem*var(--space-x-reverse))!important}.\34xl\:space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(18rem*var(--space-y-reverse))!important;margin-top:calc(18rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(18rem*var(--space-x-reverse))!important}.\34xl\:space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20rem*var(--space-y-reverse))!important;margin-top:calc(20rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(20rem*var(--space-x-reverse))!important}.\34xl\:space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(24rem*var(--space-y-reverse))!important;margin-top:calc(24rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(24rem*var(--space-x-reverse))!important}.\34xl\:space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(1px*var(--space-y-reverse))!important;margin-top:calc(1px*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(1px*var(--space-x-reverse))!important}.\34xl\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.125rem*var(--space-y-reverse))!important;margin-top:calc(.125rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.125rem*var(--space-x-reverse))!important}.\34xl\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.375rem*var(--space-y-reverse))!important;margin-top:calc(.375rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.375rem*var(--space-x-reverse))!important}.\34xl\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.625rem*var(--space-y-reverse))!important;margin-top:calc(.625rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.625rem*var(--space-x-reverse))!important}.\34xl\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(.875rem*var(--space-y-reverse))!important;margin-top:calc(.875rem*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(.875rem*var(--space-x-reverse))!important}.\34xl\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\34xl\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\34xl\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\34xl\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.\34xl\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\34xl\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.\34xl\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(20%*var(--space-y-reverse))!important;margin-top:calc(20%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(20%*var(--space-x-reverse))!important}.\34xl\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(40%*var(--space-y-reverse))!important;margin-top:calc(40%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(40%*var(--space-x-reverse))!important}.\34xl\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(60%*var(--space-y-reverse))!important;margin-top:calc(60%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(60%*var(--space-x-reverse))!important}.\34xl\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(80%*var(--space-y-reverse))!important;margin-top:calc(80%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(80%*var(--space-x-reverse))!important}.\34xl\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.\34xl\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\34xl\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\34xl\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\34xl\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.\34xl\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(8.33333%*var(--space-y-reverse))!important;margin-top:calc(8.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(8.33333%*var(--space-x-reverse))!important}.\34xl\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(16.66667%*var(--space-y-reverse))!important;margin-top:calc(16.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(16.66667%*var(--space-x-reverse))!important}.\34xl\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(25%*var(--space-y-reverse))!important;margin-top:calc(25%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(25%*var(--space-x-reverse))!important}.\34xl\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(33.33333%*var(--space-y-reverse))!important;margin-top:calc(33.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(33.33333%*var(--space-x-reverse))!important}.\34xl\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(41.66667%*var(--space-y-reverse))!important;margin-top:calc(41.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(41.66667%*var(--space-x-reverse))!important}.\34xl\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(50%*var(--space-y-reverse))!important;margin-top:calc(50%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(50%*var(--space-x-reverse))!important}.\34xl\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(58.33333%*var(--space-y-reverse))!important;margin-top:calc(58.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(58.33333%*var(--space-x-reverse))!important}.\34xl\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(66.66667%*var(--space-y-reverse))!important;margin-top:calc(66.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(66.66667%*var(--space-x-reverse))!important}.\34xl\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(75%*var(--space-y-reverse))!important;margin-top:calc(75%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(75%*var(--space-x-reverse))!important}.\34xl\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(83.33333%*var(--space-y-reverse))!important;margin-top:calc(83.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(83.33333%*var(--space-x-reverse))!important}.\34xl\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(91.66667%*var(--space-y-reverse))!important;margin-top:calc(91.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(91.66667%*var(--space-x-reverse))!important}.\34xl\:space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(100%*var(--space-y-reverse))!important;margin-top:calc(100%*(1 - var(--space-y-reverse)))!important}.\34xl\:space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(100%*var(--space-x-reverse))!important}.\34xl\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.25rem*var(--space-y-reverse))!important;margin-top:calc(-.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.25rem*var(--space-x-reverse))!important}.\34xl\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.5rem*var(--space-y-reverse))!important;margin-top:calc(-.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.5rem*var(--space-x-reverse))!important}.\34xl\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.75rem*var(--space-y-reverse))!important;margin-top:calc(-.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.75rem*var(--space-x-reverse))!important}.\34xl\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1rem*var(--space-y-reverse))!important;margin-top:calc(-1rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1rem*var(--space-x-reverse))!important}.\34xl\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.25rem*var(--space-y-reverse))!important;margin-top:calc(-1.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.25rem*var(--space-x-reverse))!important}.\34xl\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.5rem*var(--space-y-reverse))!important;margin-top:calc(-1.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.5rem*var(--space-x-reverse))!important}.\34xl\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1.75rem*var(--space-y-reverse))!important;margin-top:calc(-1.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1.75rem*var(--space-x-reverse))!important}.\34xl\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2rem*var(--space-y-reverse))!important;margin-top:calc(-2rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2rem*var(--space-x-reverse))!important}.\34xl\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.25rem*var(--space-y-reverse))!important;margin-top:calc(-2.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.25rem*var(--space-x-reverse))!important}.\34xl\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.5rem*var(--space-y-reverse))!important;margin-top:calc(-2.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.5rem*var(--space-x-reverse))!important}.\34xl\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-2.75rem*var(--space-y-reverse))!important;margin-top:calc(-2.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-2.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-2.75rem*var(--space-x-reverse))!important}.\34xl\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3rem*var(--space-y-reverse))!important;margin-top:calc(-3rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3rem*var(--space-x-reverse))!important}.\34xl\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.25rem*var(--space-y-reverse))!important;margin-top:calc(-3.25rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.25rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.25rem*var(--space-x-reverse))!important}.\34xl\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.5rem*var(--space-y-reverse))!important;margin-top:calc(-3.5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.5rem*var(--space-x-reverse))!important}.\34xl\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-3.75rem*var(--space-y-reverse))!important;margin-top:calc(-3.75rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-3.75rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-3.75rem*var(--space-x-reverse))!important}.\34xl\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-4rem*var(--space-y-reverse))!important;margin-top:calc(-4rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-4rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-4rem*var(--space-x-reverse))!important}.\34xl\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-5rem*var(--space-y-reverse))!important;margin-top:calc(-5rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-5rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-5rem*var(--space-x-reverse))!important}.\34xl\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-6rem*var(--space-y-reverse))!important;margin-top:calc(-6rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-6rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-6rem*var(--space-x-reverse))!important}.\34xl\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-7rem*var(--space-y-reverse))!important;margin-top:calc(-7rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-7rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-7rem*var(--space-x-reverse))!important}.\34xl\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8rem*var(--space-y-reverse))!important;margin-top:calc(-8rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8rem*var(--space-x-reverse))!important}.\34xl\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-9rem*var(--space-y-reverse))!important;margin-top:calc(-9rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-9rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-9rem*var(--space-x-reverse))!important}.\34xl\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-10rem*var(--space-y-reverse))!important;margin-top:calc(-10rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-10rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-10rem*var(--space-x-reverse))!important}.\34xl\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-12rem*var(--space-y-reverse))!important;margin-top:calc(-12rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-12rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-12rem*var(--space-x-reverse))!important}.\34xl\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-14rem*var(--space-y-reverse))!important;margin-top:calc(-14rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-14rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-14rem*var(--space-x-reverse))!important}.\34xl\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-15rem*var(--space-y-reverse))!important;margin-top:calc(-15rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-15rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-15rem*var(--space-x-reverse))!important}.\34xl\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16rem*var(--space-y-reverse))!important;margin-top:calc(-16rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16rem*var(--space-x-reverse))!important}.\34xl\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-18rem*var(--space-y-reverse))!important;margin-top:calc(-18rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-18rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-18rem*var(--space-x-reverse))!important}.\34xl\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20rem*var(--space-y-reverse))!important;margin-top:calc(-20rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20rem*var(--space-x-reverse))!important}.\34xl\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-24rem*var(--space-y-reverse))!important;margin-top:calc(-24rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-24rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-24rem*var(--space-x-reverse))!important}.\34xl\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-1px*var(--space-y-reverse))!important;margin-top:calc(-1px*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-1px*(1 - var(--space-x-reverse)))!important;margin-right:calc(-1px*var(--space-x-reverse))!important}.\34xl\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.125rem*var(--space-y-reverse))!important;margin-top:calc(-.125rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.125rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.125rem*var(--space-x-reverse))!important}.\34xl\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.375rem*var(--space-y-reverse))!important;margin-top:calc(-.375rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.375rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.375rem*var(--space-x-reverse))!important}.\34xl\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.625rem*var(--space-y-reverse))!important;margin-top:calc(-.625rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.625rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.625rem*var(--space-x-reverse))!important}.\34xl\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-.875rem*var(--space-y-reverse))!important;margin-top:calc(-.875rem*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-.875rem*(1 - var(--space-x-reverse)))!important;margin-right:calc(-.875rem*var(--space-x-reverse))!important}.\34xl\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\34xl\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\34xl\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\34xl\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.\34xl\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\34xl\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.\34xl\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-20%*var(--space-y-reverse))!important;margin-top:calc(-20%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-20%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-20%*var(--space-x-reverse))!important}.\34xl\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-40%*var(--space-y-reverse))!important;margin-top:calc(-40%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-40%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-40%*var(--space-x-reverse))!important}.\34xl\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-60%*var(--space-y-reverse))!important;margin-top:calc(-60%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-60%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-60%*var(--space-x-reverse))!important}.\34xl\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-80%*var(--space-y-reverse))!important;margin-top:calc(-80%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-80%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-80%*var(--space-x-reverse))!important}.\34xl\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.\34xl\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\34xl\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\34xl\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\34xl\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.\34xl\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-8.33333%*var(--space-y-reverse))!important;margin-top:calc(-8.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-8.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-8.33333%*var(--space-x-reverse))!important}.\34xl\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-16.66667%*var(--space-y-reverse))!important;margin-top:calc(-16.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-16.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-16.66667%*var(--space-x-reverse))!important}.\34xl\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-25%*var(--space-y-reverse))!important;margin-top:calc(-25%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-25%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-25%*var(--space-x-reverse))!important}.\34xl\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-33.33333%*var(--space-y-reverse))!important;margin-top:calc(-33.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-33.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-33.33333%*var(--space-x-reverse))!important}.\34xl\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-41.66667%*var(--space-y-reverse))!important;margin-top:calc(-41.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-41.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-41.66667%*var(--space-x-reverse))!important}.\34xl\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-50%*var(--space-y-reverse))!important;margin-top:calc(-50%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-50%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-50%*var(--space-x-reverse))!important}.\34xl\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-58.33333%*var(--space-y-reverse))!important;margin-top:calc(-58.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-58.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-58.33333%*var(--space-x-reverse))!important}.\34xl\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-66.66667%*var(--space-y-reverse))!important;margin-top:calc(-66.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-66.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-66.66667%*var(--space-x-reverse))!important}.\34xl\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-75%*var(--space-y-reverse))!important;margin-top:calc(-75%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-75%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-75%*var(--space-x-reverse))!important}.\34xl\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-83.33333%*var(--space-y-reverse))!important;margin-top:calc(-83.33333%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-83.33333%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-83.33333%*var(--space-x-reverse))!important}.\34xl\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-91.66667%*var(--space-y-reverse))!important;margin-top:calc(-91.66667%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-91.66667%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-91.66667%*var(--space-x-reverse))!important}.\34xl\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0!important;margin-bottom:calc(-100%*var(--space-y-reverse))!important;margin-top:calc(-100%*(1 - var(--space-y-reverse)))!important}.\34xl\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0!important;margin-left:calc(-100%*(1 - var(--space-x-reverse)))!important;margin-right:calc(-100%*var(--space-x-reverse))!important}.\34xl\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1!important}.\34xl\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1!important}.\34xl\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(0px*var(--divide-y-reverse))!important;border-top-width:calc(0px*(1 - var(--divide-y-reverse)))!important}.\34xl\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(0px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(0px*var(--divide-x-reverse))!important}.\34xl\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(2px*var(--divide-y-reverse))!important;border-top-width:calc(2px*(1 - var(--divide-y-reverse)))!important}.\34xl\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(2px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(2px*var(--divide-x-reverse))!important}.\34xl\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(4px*var(--divide-y-reverse))!important;border-top-width:calc(4px*(1 - var(--divide-y-reverse)))!important}.\34xl\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(4px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(4px*var(--divide-x-reverse))!important}.\34xl\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(8px*var(--divide-y-reverse))!important;border-top-width:calc(8px*(1 - var(--divide-y-reverse)))!important}.\34xl\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(8px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(8px*var(--divide-x-reverse))!important}.\34xl\:divide-y>:not(template)~:not(template){--divide-y-reverse:0!important;border-bottom-width:calc(1px*var(--divide-y-reverse))!important;border-top-width:calc(1px*(1 - var(--divide-y-reverse)))!important}.\34xl\:divide-x>:not(template)~:not(template){--divide-x-reverse:0!important;border-left-width:calc(1px*(1 - var(--divide-x-reverse)))!important;border-right-width:calc(1px*var(--divide-x-reverse))!important}.\34xl\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1!important}.\34xl\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1!important}.\34xl\:divide-transparent>:not(template)~:not(template){border-color:transparent!important}.\34xl\:divide-white>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--divide-opacity))!important}.\34xl\:divide-white-70>:not(template)~:not(template){border-color:hsla(0,0%,100%,.7)!important}.\34xl\:divide-blackest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--divide-opacity))!important}.\34xl\:divide-blackest-70>:not(template)~:not(template){border-color:rgba(0,0,0,.7)!important}.\34xl\:divide-black>:not(template)~:not(template){--divide-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--divide-opacity))!important}.\34xl\:divide-gray-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--divide-opacity))!important}.\34xl\:divide-gray-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--divide-opacity))!important}.\34xl\:divide-gray-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--divide-opacity))!important}.\34xl\:divide-gray>:not(template)~:not(template){--divide-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--divide-opacity))!important}.\34xl\:divide-gray-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--divide-opacity))!important}.\34xl\:divide-gray-lighter>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--divide-opacity))!important}.\34xl\:divide-gray-lightest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--divide-opacity))!important}.\34xl\:divide-blue-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--divide-opacity))!important}.\34xl\:divide-blue-dark>:not(template)~:not(template){--divide-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--divide-opacity))!important}.\34xl\:divide-blue>:not(template)~:not(template){--divide-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--divide-opacity))!important}.\34xl\:divide-blue-light>:not(template)~:not(template){--divide-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--divide-opacity))!important}.\34xl\:divide-blue-highlight>:not(template)~:not(template){border-color:rgba(180,215,255,.6)!important}.\34xl\:divide-orange>:not(template)~:not(template){--divide-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--divide-opacity))!important}.\34xl\:divide-orange-darker>:not(template)~:not(template){--divide-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--divide-opacity))!important}.\34xl\:divide-orange-darkest>:not(template)~:not(template){--divide-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--divide-opacity))!important}.\34xl\:divide-red>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--divide-opacity))!important}.\34xl\:divide-green>:not(template)~:not(template){--divide-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--divide-opacity))!important}.\34xl\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--divide-opacity))!important}.\34xl\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--divide-opacity))!important}.\34xl\:divide-solid>:not(template)~:not(template){border-style:solid!important}.\34xl\:divide-dashed>:not(template)~:not(template){border-style:dashed!important}.\34xl\:divide-dotted>:not(template)~:not(template){border-style:dotted!important}.\34xl\:divide-double>:not(template)~:not(template){border-style:double!important}.\34xl\:divide-none>:not(template)~:not(template){border-style:none!important}.\34xl\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0!important}.\34xl\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25!important}.\34xl\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5!important}.\34xl\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75!important}.\34xl\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1!important}.\34xl\:sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.\34xl\:not-sr-only{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.\34xl\:focus\:sr-only:focus{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.\34xl\:focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}.\34xl\:appearance-none{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}.\34xl\:bg-fixed{background-attachment:fixed!important}.\34xl\:bg-local{background-attachment:local!important}.\34xl\:bg-scroll{background-attachment:scroll!important}.\34xl\:bg-clip-border{background-clip:border-box!important}.\34xl\:bg-clip-padding{background-clip:padding-box!important}.\34xl\:bg-clip-content{background-clip:content-box!important}.\34xl\:bg-clip-text{-webkit-background-clip:text!important;background-clip:text!important}.\34xl\:bg-transparent{background-color:transparent!important}.\34xl\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\34xl\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.\34xl\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\34xl\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.\34xl\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\34xl\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\34xl\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\34xl\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\34xl\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\34xl\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\34xl\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\34xl\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\34xl\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\34xl\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\34xl\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\34xl\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\34xl\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.\34xl\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\34xl\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\34xl\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\34xl\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\34xl\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\34xl\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\34xl\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-transparent{background-color:transparent!important}.group:hover .\34xl\:group-hover\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:hover .\34xl\:group-hover\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:hover .\34xl\:group-hover\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:hover .\34xl\:group-hover\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:hover .\34xl\:group-hover\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-transparent{background-color:transparent!important}.group:focus .\34xl\:group-focus\:bg-white{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-white-70{background-color:hsla(0,0%,100%,.7)!important}.group:focus .\34xl\:group-focus\:bg-blackest{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-blackest-70{background-color:rgba(0,0,0,.7)!important}.group:focus .\34xl\:group-focus\:bg-black{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-gray-darkest{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-gray-darker{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-gray-dark{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-gray{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-gray-light{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-gray-lighter{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-gray-lightest{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-blue-darkest{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-blue-dark{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-blue{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-blue-light{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-blue-highlight{background-color:rgba(180,215,255,.6)!important}.group:focus .\34xl\:group-focus\:bg-orange{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-orange-darker{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-orange-darkest{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-red{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-green{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-yellow-400{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.group:focus .\34xl\:group-focus\:bg-yellow-50{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\34xl\:hover\:bg-transparent:hover{background-color:transparent!important}.\34xl\:hover\:bg-white:hover{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\34xl\:hover\:bg-white-70:hover{background-color:hsla(0,0%,100%,.7)!important}.\34xl\:hover\:bg-blackest:hover{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\34xl\:hover\:bg-blackest-70:hover{background-color:rgba(0,0,0,.7)!important}.\34xl\:hover\:bg-black:hover{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\34xl\:hover\:bg-gray-darkest:hover{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\34xl\:hover\:bg-gray-darker:hover{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\34xl\:hover\:bg-gray-dark:hover{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\34xl\:hover\:bg-gray:hover{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\34xl\:hover\:bg-gray-light:hover{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\34xl\:hover\:bg-gray-lighter:hover{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\34xl\:hover\:bg-gray-lightest:hover{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\34xl\:hover\:bg-blue-darkest:hover{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\34xl\:hover\:bg-blue-dark:hover{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\34xl\:hover\:bg-blue:hover{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\34xl\:hover\:bg-blue-light:hover{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\34xl\:hover\:bg-blue-highlight:hover{background-color:rgba(180,215,255,.6)!important}.\34xl\:hover\:bg-orange:hover{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\34xl\:hover\:bg-orange-darker:hover{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\34xl\:hover\:bg-orange-darkest:hover{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\34xl\:hover\:bg-red:hover{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\34xl\:hover\:bg-green:hover{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\34xl\:hover\:bg-yellow-400:hover{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\34xl\:hover\:bg-yellow-50:hover{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\34xl\:focus\:bg-transparent:focus{background-color:transparent!important}.\34xl\:focus\:bg-white:focus{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\34xl\:focus\:bg-white-70:focus{background-color:hsla(0,0%,100%,.7)!important}.\34xl\:focus\:bg-blackest:focus{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\34xl\:focus\:bg-blackest-70:focus{background-color:rgba(0,0,0,.7)!important}.\34xl\:focus\:bg-black:focus{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\34xl\:focus\:bg-gray-darkest:focus{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\34xl\:focus\:bg-gray-darker:focus{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\34xl\:focus\:bg-gray-dark:focus{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\34xl\:focus\:bg-gray:focus{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\34xl\:focus\:bg-gray-light:focus{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\34xl\:focus\:bg-gray-lighter:focus{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\34xl\:focus\:bg-gray-lightest:focus{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\34xl\:focus\:bg-blue-darkest:focus{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\34xl\:focus\:bg-blue-dark:focus{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\34xl\:focus\:bg-blue:focus{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\34xl\:focus\:bg-blue-light:focus{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\34xl\:focus\:bg-blue-highlight:focus{background-color:rgba(180,215,255,.6)!important}.\34xl\:focus\:bg-orange:focus{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\34xl\:focus\:bg-orange-darker:focus{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\34xl\:focus\:bg-orange-darkest:focus{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\34xl\:focus\:bg-red:focus{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\34xl\:focus\:bg-green:focus{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\34xl\:focus\:bg-yellow-400:focus{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\34xl\:focus\:bg-yellow-50:focus{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\34xl\:active\:bg-transparent:active{background-color:transparent!important}.\34xl\:active\:bg-white:active{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important}.\34xl\:active\:bg-white-70:active{background-color:hsla(0,0%,100%,.7)!important}.\34xl\:active\:bg-blackest:active{--bg-opacity:1!important;background-color:#000!important;background-color:rgba(0,0,0,var(--bg-opacity))!important}.\34xl\:active\:bg-blackest-70:active{background-color:rgba(0,0,0,.7)!important}.\34xl\:active\:bg-black:active{--bg-opacity:1!important;background-color:#23292d!important;background-color:rgba(35,41,45,var(--bg-opacity))!important}.\34xl\:active\:bg-gray-darkest:active{--bg-opacity:1!important;background-color:#3d4852!important;background-color:rgba(61,72,82,var(--bg-opacity))!important}.\34xl\:active\:bg-gray-darker:active{--bg-opacity:1!important;background-color:#606f7b!important;background-color:rgba(96,111,123,var(--bg-opacity))!important}.\34xl\:active\:bg-gray-dark:active{--bg-opacity:1!important;background-color:#9ea3a8!important;background-color:rgba(158,163,168,var(--bg-opacity))!important}.\34xl\:active\:bg-gray:active{--bg-opacity:1!important;background-color:#b8c2cc!important;background-color:rgba(184,194,204,var(--bg-opacity))!important}.\34xl\:active\:bg-gray-light:active{--bg-opacity:1!important;background-color:#dae1e7!important;background-color:rgba(218,225,231,var(--bg-opacity))!important}.\34xl\:active\:bg-gray-lighter:active{--bg-opacity:1!important;background-color:#f1f1f1!important;background-color:rgba(241,241,241,var(--bg-opacity))!important}.\34xl\:active\:bg-gray-lightest:active{--bg-opacity:1!important;background-color:#f8fafc!important;background-color:rgba(248,250,252,var(--bg-opacity))!important}.\34xl\:active\:bg-blue-darkest:active{--bg-opacity:1!important;background-color:#1673a7!important;background-color:rgba(22,115,167,var(--bg-opacity))!important}.\34xl\:active\:bg-blue-dark:active{--bg-opacity:1!important;background-color:#0073aa!important;background-color:rgba(0,115,170,var(--bg-opacity))!important}.\34xl\:active\:bg-blue:active{--bg-opacity:1!important;background-color:#3188e6!important;background-color:rgba(49,136,230,var(--bg-opacity))!important}.\34xl\:active\:bg-blue-light:active{--bg-opacity:1!important;background-color:#a4cafe!important;background-color:rgba(164,202,254,var(--bg-opacity))!important}.\34xl\:active\:bg-blue-highlight:active{background-color:rgba(180,215,255,.6)!important}.\34xl\:active\:bg-orange:active{--bg-opacity:1!important;background-color:#dd6923!important;background-color:rgba(221,105,35,var(--bg-opacity))!important}.\34xl\:active\:bg-orange-darker:active{--bg-opacity:1!important;background-color:#d5551e!important;background-color:rgba(213,85,30,var(--bg-opacity))!important}.\34xl\:active\:bg-orange-darkest:active{--bg-opacity:1!important;background-color:#c9501c!important;background-color:rgba(201,80,28,var(--bg-opacity))!important}.\34xl\:active\:bg-red:active{--bg-opacity:1!important;background-color:#e82323!important;background-color:rgba(232,35,35,var(--bg-opacity))!important}.\34xl\:active\:bg-green:active{--bg-opacity:1!important;background-color:#46b450!important;background-color:rgba(70,180,80,var(--bg-opacity))!important}.\34xl\:active\:bg-yellow-400:active{--bg-opacity:1!important;background-color:#e3a008!important;background-color:rgba(227,160,8,var(--bg-opacity))!important}.\34xl\:active\:bg-yellow-50:active{--bg-opacity:1!important;background-color:#fdfdea!important;background-color:rgba(253,253,234,var(--bg-opacity))!important}.\34xl\:bg-none{background-image:none!important}.\34xl\:bg-gradient-to-t{background-image:linear-gradient(to top,var(--gradient-color-stops))!important}.\34xl\:bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--gradient-color-stops))!important}.\34xl\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--gradient-color-stops))!important}.\34xl\:bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--gradient-color-stops))!important}.\34xl\:bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--gradient-color-stops))!important}.\34xl\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--gradient-color-stops))!important}.\34xl\:bg-gradient-to-l{background-image:linear-gradient(to left,var(--gradient-color-stops))!important}.\34xl\:bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--gradient-color-stops))!important}.\34xl\:from-transparent{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:from-white{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:from-white-70{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:from-blackest{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:from-blackest-70{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:from-black{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\34xl\:from-gray-darkest{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\34xl\:from-gray-darker{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\34xl\:from-gray-dark{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\34xl\:from-gray{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\34xl\:from-gray-light{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\34xl\:from-gray-lighter{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\34xl\:from-gray-lightest{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\34xl\:from-blue-darkest{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\34xl\:from-blue-dark{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\34xl\:from-blue{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\34xl\:from-blue-light{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\34xl\:from-blue-highlight{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\34xl\:from-orange{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\34xl\:from-orange-darker{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\34xl\:from-orange-darkest{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\34xl\:from-red{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\34xl\:from-green{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\34xl\:from-yellow-400{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\34xl\:from-yellow-50{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\34xl\:via-transparent{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:via-white{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:via-white-70{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:via-blackest{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:via-blackest-70{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:via-black{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\34xl\:via-gray-darkest{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\34xl\:via-gray-darker{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\34xl\:via-gray-dark{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\34xl\:via-gray{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\34xl\:via-gray-light{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\34xl\:via-gray-lighter{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\34xl\:via-gray-lightest{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\34xl\:via-blue-darkest{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\34xl\:via-blue-dark{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\34xl\:via-blue{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\34xl\:via-blue-light{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\34xl\:via-blue-highlight{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\34xl\:via-orange{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\34xl\:via-orange-darker{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\34xl\:via-orange-darkest{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\34xl\:via-red{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\34xl\:via-green{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\34xl\:via-yellow-400{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\34xl\:via-yellow-50{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\34xl\:to-transparent{--gradient-to-color:transparent!important}.\34xl\:to-white{--gradient-to-color:#fff!important}.\34xl\:to-white-70{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\34xl\:to-blackest{--gradient-to-color:#000!important}.\34xl\:to-blackest-70{--gradient-to-color:rgba(0,0,0,.7)!important}.\34xl\:to-black{--gradient-to-color:#23292d!important}.\34xl\:to-gray-darkest{--gradient-to-color:#3d4852!important}.\34xl\:to-gray-darker{--gradient-to-color:#606f7b!important}.\34xl\:to-gray-dark{--gradient-to-color:#9ea3a8!important}.\34xl\:to-gray{--gradient-to-color:#b8c2cc!important}.\34xl\:to-gray-light{--gradient-to-color:#dae1e7!important}.\34xl\:to-gray-lighter{--gradient-to-color:#f1f1f1!important}.\34xl\:to-gray-lightest{--gradient-to-color:#f8fafc!important}.\34xl\:to-blue-darkest{--gradient-to-color:#1673a7!important}.\34xl\:to-blue-dark{--gradient-to-color:#0073aa!important}.\34xl\:to-blue{--gradient-to-color:#3188e6!important}.\34xl\:to-blue-light{--gradient-to-color:#a4cafe!important}.\34xl\:to-blue-highlight{--gradient-to-color:rgba(180,215,255,.6)!important}.\34xl\:to-orange{--gradient-to-color:#dd6923!important}.\34xl\:to-orange-darker{--gradient-to-color:#d5551e!important}.\34xl\:to-orange-darkest{--gradient-to-color:#c9501c!important}.\34xl\:to-red{--gradient-to-color:#e82323!important}.\34xl\:to-green{--gradient-to-color:#46b450!important}.\34xl\:to-yellow-400{--gradient-to-color:#e3a008!important}.\34xl\:to-yellow-50{--gradient-to-color:#fdfdea!important}.\34xl\:hover\:from-transparent:hover{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:hover\:from-white:hover{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:hover\:from-white-70:hover{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:hover\:from-blackest:hover{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:hover\:from-blackest-70:hover{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:hover\:from-black:hover{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\34xl\:hover\:from-gray-darkest:hover{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\34xl\:hover\:from-gray-darker:hover{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\34xl\:hover\:from-gray-dark:hover{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\34xl\:hover\:from-gray:hover{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\34xl\:hover\:from-gray-light:hover{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\34xl\:hover\:from-gray-lighter:hover{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\34xl\:hover\:from-gray-lightest:hover{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\34xl\:hover\:from-blue-darkest:hover{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\34xl\:hover\:from-blue-dark:hover{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\34xl\:hover\:from-blue:hover{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\34xl\:hover\:from-blue-light:hover{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\34xl\:hover\:from-blue-highlight:hover{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\34xl\:hover\:from-orange:hover{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\34xl\:hover\:from-orange-darker:hover{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\34xl\:hover\:from-orange-darkest:hover{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\34xl\:hover\:from-red:hover{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\34xl\:hover\:from-green:hover{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\34xl\:hover\:from-yellow-400:hover{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\34xl\:hover\:from-yellow-50:hover{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\34xl\:hover\:via-transparent:hover{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:hover\:via-white:hover{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:hover\:via-white-70:hover{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:hover\:via-blackest:hover{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:hover\:via-blackest-70:hover{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:hover\:via-black:hover{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\34xl\:hover\:via-gray-darkest:hover{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\34xl\:hover\:via-gray-darker:hover{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\34xl\:hover\:via-gray-dark:hover{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\34xl\:hover\:via-gray:hover{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\34xl\:hover\:via-gray-light:hover{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\34xl\:hover\:via-gray-lighter:hover{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\34xl\:hover\:via-gray-lightest:hover{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\34xl\:hover\:via-blue-darkest:hover{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\34xl\:hover\:via-blue-dark:hover{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\34xl\:hover\:via-blue:hover{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\34xl\:hover\:via-blue-light:hover{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\34xl\:hover\:via-blue-highlight:hover{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\34xl\:hover\:via-orange:hover{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\34xl\:hover\:via-orange-darker:hover{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\34xl\:hover\:via-orange-darkest:hover{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\34xl\:hover\:via-red:hover{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\34xl\:hover\:via-green:hover{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\34xl\:hover\:via-yellow-400:hover{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\34xl\:hover\:via-yellow-50:hover{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\34xl\:hover\:to-transparent:hover{--gradient-to-color:transparent!important}.\34xl\:hover\:to-white:hover{--gradient-to-color:#fff!important}.\34xl\:hover\:to-white-70:hover{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\34xl\:hover\:to-blackest:hover{--gradient-to-color:#000!important}.\34xl\:hover\:to-blackest-70:hover{--gradient-to-color:rgba(0,0,0,.7)!important}.\34xl\:hover\:to-black:hover{--gradient-to-color:#23292d!important}.\34xl\:hover\:to-gray-darkest:hover{--gradient-to-color:#3d4852!important}.\34xl\:hover\:to-gray-darker:hover{--gradient-to-color:#606f7b!important}.\34xl\:hover\:to-gray-dark:hover{--gradient-to-color:#9ea3a8!important}.\34xl\:hover\:to-gray:hover{--gradient-to-color:#b8c2cc!important}.\34xl\:hover\:to-gray-light:hover{--gradient-to-color:#dae1e7!important}.\34xl\:hover\:to-gray-lighter:hover{--gradient-to-color:#f1f1f1!important}.\34xl\:hover\:to-gray-lightest:hover{--gradient-to-color:#f8fafc!important}.\34xl\:hover\:to-blue-darkest:hover{--gradient-to-color:#1673a7!important}.\34xl\:hover\:to-blue-dark:hover{--gradient-to-color:#0073aa!important}.\34xl\:hover\:to-blue:hover{--gradient-to-color:#3188e6!important}.\34xl\:hover\:to-blue-light:hover{--gradient-to-color:#a4cafe!important}.\34xl\:hover\:to-blue-highlight:hover{--gradient-to-color:rgba(180,215,255,.6)!important}.\34xl\:hover\:to-orange:hover{--gradient-to-color:#dd6923!important}.\34xl\:hover\:to-orange-darker:hover{--gradient-to-color:#d5551e!important}.\34xl\:hover\:to-orange-darkest:hover{--gradient-to-color:#c9501c!important}.\34xl\:hover\:to-red:hover{--gradient-to-color:#e82323!important}.\34xl\:hover\:to-green:hover{--gradient-to-color:#46b450!important}.\34xl\:hover\:to-yellow-400:hover{--gradient-to-color:#e3a008!important}.\34xl\:hover\:to-yellow-50:hover{--gradient-to-color:#fdfdea!important}.\34xl\:focus\:from-transparent:focus{--gradient-from-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:focus\:from-white:focus{--gradient-from-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:focus\:from-white-70:focus{--gradient-from-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:focus\:from-blackest:focus{--gradient-from-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:focus\:from-blackest-70:focus{--gradient-from-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,transparent)!important}.\34xl\:focus\:from-black:focus{--gradient-from-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\34xl\:focus\:from-gray-darkest:focus{--gradient-from-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\34xl\:focus\:from-gray-darker:focus{--gradient-from-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\34xl\:focus\:from-gray-dark:focus{--gradient-from-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\34xl\:focus\:from-gray:focus{--gradient-from-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\34xl\:focus\:from-gray-light:focus{--gradient-from-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\34xl\:focus\:from-gray-lighter:focus{--gradient-from-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\34xl\:focus\:from-gray-lightest:focus{--gradient-from-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\34xl\:focus\:from-blue-darkest:focus{--gradient-from-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\34xl\:focus\:from-blue-dark:focus{--gradient-from-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\34xl\:focus\:from-blue:focus{--gradient-from-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\34xl\:focus\:from-blue-light:focus{--gradient-from-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\34xl\:focus\:from-blue-highlight:focus{--gradient-from-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\34xl\:focus\:from-orange:focus{--gradient-from-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\34xl\:focus\:from-orange-darker:focus{--gradient-from-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\34xl\:focus\:from-orange-darkest:focus{--gradient-from-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\34xl\:focus\:from-red:focus{--gradient-from-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\34xl\:focus\:from-green:focus{--gradient-from-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\34xl\:focus\:from-yellow-400:focus{--gradient-from-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\34xl\:focus\:from-yellow-50:focus{--gradient-from-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\34xl\:focus\:via-transparent:focus{--gradient-via-color:transparent!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:focus\:via-white:focus{--gradient-via-color:#fff!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:focus\:via-white-70:focus{--gradient-via-color:hsla(0,0%,100%,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,100%,0))!important}.\34xl\:focus\:via-blackest:focus{--gradient-via-color:#000!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:focus\:via-blackest-70:focus{--gradient-via-color:rgba(0,0,0,.7)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,transparent)!important}.\34xl\:focus\:via-black:focus{--gradient-via-color:#23292d!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(35,41,45,0))!important}.\34xl\:focus\:via-gray-darkest:focus{--gradient-via-color:#3d4852!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(61,72,82,0))!important}.\34xl\:focus\:via-gray-darker:focus{--gradient-via-color:#606f7b!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(96,111,123,0))!important}.\34xl\:focus\:via-gray-dark:focus{--gradient-via-color:#9ea3a8!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(210,5%,64%,0))!important}.\34xl\:focus\:via-gray:focus{--gradient-via-color:#b8c2cc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(184,194,204,0))!important}.\34xl\:focus\:via-gray-light:focus{--gradient-via-color:#dae1e7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(218,225,231,0))!important}.\34xl\:focus\:via-gray-lighter:focus{--gradient-via-color:#f1f1f1!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(0,0%,95%,0))!important}.\34xl\:focus\:via-gray-lightest:focus{--gradient-via-color:#f8fafc!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(248,250,252,0))!important}.\34xl\:focus\:via-blue-darkest:focus{--gradient-via-color:#1673a7!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(22,115,167,0))!important}.\34xl\:focus\:via-blue-dark:focus{--gradient-via-color:#0073aa!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(0,115,170,0))!important}.\34xl\:focus\:via-blue:focus{--gradient-via-color:#3188e6!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(49,136,230,0))!important}.\34xl\:focus\:via-blue-light:focus{--gradient-via-color:#a4cafe!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(164,202,254,0))!important}.\34xl\:focus\:via-blue-highlight:focus{--gradient-via-color:rgba(180,215,255,.6)!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(180,215,255,0))!important}.\34xl\:focus\:via-orange:focus{--gradient-via-color:#dd6923!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(221,105,35,0))!important}.\34xl\:focus\:via-orange-darker:focus{--gradient-via-color:#d5551e!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(213,85,30,0))!important}.\34xl\:focus\:via-orange-darkest:focus{--gradient-via-color:#c9501c!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(201,80,28,0))!important}.\34xl\:focus\:via-red:focus{--gradient-via-color:#e82323!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(232,35,35,0))!important}.\34xl\:focus\:via-green:focus{--gradient-via-color:#46b450!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(70,180,80,0))!important}.\34xl\:focus\:via-yellow-400:focus{--gradient-via-color:#e3a008!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,rgba(227,160,8,0))!important}.\34xl\:focus\:via-yellow-50:focus{--gradient-via-color:#fdfdea!important;--gradient-color-stops:var(--gradient-from-color),var(--gradient-via-color),var(--gradient-to-color,hsla(60,83%,95%,0))!important}.\34xl\:focus\:to-transparent:focus{--gradient-to-color:transparent!important}.\34xl\:focus\:to-white:focus{--gradient-to-color:#fff!important}.\34xl\:focus\:to-white-70:focus{--gradient-to-color:hsla(0,0%,100%,.7)!important}.\34xl\:focus\:to-blackest:focus{--gradient-to-color:#000!important}.\34xl\:focus\:to-blackest-70:focus{--gradient-to-color:rgba(0,0,0,.7)!important}.\34xl\:focus\:to-black:focus{--gradient-to-color:#23292d!important}.\34xl\:focus\:to-gray-darkest:focus{--gradient-to-color:#3d4852!important}.\34xl\:focus\:to-gray-darker:focus{--gradient-to-color:#606f7b!important}.\34xl\:focus\:to-gray-dark:focus{--gradient-to-color:#9ea3a8!important}.\34xl\:focus\:to-gray:focus{--gradient-to-color:#b8c2cc!important}.\34xl\:focus\:to-gray-light:focus{--gradient-to-color:#dae1e7!important}.\34xl\:focus\:to-gray-lighter:focus{--gradient-to-color:#f1f1f1!important}.\34xl\:focus\:to-gray-lightest:focus{--gradient-to-color:#f8fafc!important}.\34xl\:focus\:to-blue-darkest:focus{--gradient-to-color:#1673a7!important}.\34xl\:focus\:to-blue-dark:focus{--gradient-to-color:#0073aa!important}.\34xl\:focus\:to-blue:focus{--gradient-to-color:#3188e6!important}.\34xl\:focus\:to-blue-light:focus{--gradient-to-color:#a4cafe!important}.\34xl\:focus\:to-blue-highlight:focus{--gradient-to-color:rgba(180,215,255,.6)!important}.\34xl\:focus\:to-orange:focus{--gradient-to-color:#dd6923!important}.\34xl\:focus\:to-orange-darker:focus{--gradient-to-color:#d5551e!important}.\34xl\:focus\:to-orange-darkest:focus{--gradient-to-color:#c9501c!important}.\34xl\:focus\:to-red:focus{--gradient-to-color:#e82323!important}.\34xl\:focus\:to-green:focus{--gradient-to-color:#46b450!important}.\34xl\:focus\:to-yellow-400:focus{--gradient-to-color:#e3a008!important}.\34xl\:focus\:to-yellow-50:focus{--gradient-to-color:#fdfdea!important}.\34xl\:bg-opacity-0{--bg-opacity:0!important}.\34xl\:bg-opacity-25{--bg-opacity:0.25!important}.\34xl\:bg-opacity-50{--bg-opacity:0.5!important}.\34xl\:bg-opacity-75{--bg-opacity:0.75!important}.\34xl\:bg-opacity-100{--bg-opacity:1!important}.\34xl\:hover\:bg-opacity-0:hover{--bg-opacity:0!important}.\34xl\:hover\:bg-opacity-25:hover{--bg-opacity:0.25!important}.\34xl\:hover\:bg-opacity-50:hover{--bg-opacity:0.5!important}.\34xl\:hover\:bg-opacity-75:hover{--bg-opacity:0.75!important}.\34xl\:hover\:bg-opacity-100:hover{--bg-opacity:1!important}.\34xl\:focus\:bg-opacity-0:focus{--bg-opacity:0!important}.\34xl\:focus\:bg-opacity-25:focus{--bg-opacity:0.25!important}.\34xl\:focus\:bg-opacity-50:focus{--bg-opacity:0.5!important}.\34xl\:focus\:bg-opacity-75:focus{--bg-opacity:0.75!important}.\34xl\:focus\:bg-opacity-100:focus{--bg-opacity:1!important}.\34xl\:bg-bottom{background-position:bottom!important}.\34xl\:bg-center{background-position:50%!important}.\34xl\:bg-left{background-position:0!important}.\34xl\:bg-left-bottom{background-position:0 100%!important}.\34xl\:bg-left-top{background-position:0 0!important}.\34xl\:bg-right{background-position:100%!important}.\34xl\:bg-right-bottom{background-position:100% 100%!important}.\34xl\:bg-right-top{background-position:100% 0!important}.\34xl\:bg-top{background-position:top!important}.\34xl\:bg-repeat{background-repeat:repeat!important}.\34xl\:bg-no-repeat{background-repeat:no-repeat!important}.\34xl\:bg-repeat-x{background-repeat:repeat-x!important}.\34xl\:bg-repeat-y{background-repeat:repeat-y!important}.\34xl\:bg-repeat-round{background-repeat:round!important}.\34xl\:bg-repeat-space{background-repeat:space!important}.\34xl\:bg-auto{background-size:auto!important}.\34xl\:bg-cover{background-size:cover!important}.\34xl\:bg-contain{background-size:contain!important}.\34xl\:border-collapse{border-collapse:collapse!important}.\34xl\:border-separate{border-collapse:separate!important}.\34xl\:border-transparent{border-color:transparent!important}.\34xl\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\34xl\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.\34xl\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\34xl\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.\34xl\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\34xl\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\34xl\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\34xl\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\34xl\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\34xl\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\34xl\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\34xl\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\34xl\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\34xl\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\34xl\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\34xl\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\34xl\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.\34xl\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\34xl\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\34xl\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\34xl\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\34xl\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\34xl\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\34xl\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\34xl\:hover\:border-transparent:hover{border-color:transparent!important}.\34xl\:hover\:border-white:hover{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\34xl\:hover\:border-white-70:hover{border-color:hsla(0,0%,100%,.7)!important}.\34xl\:hover\:border-blackest:hover{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\34xl\:hover\:border-blackest-70:hover{border-color:rgba(0,0,0,.7)!important}.\34xl\:hover\:border-black:hover{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\34xl\:hover\:border-gray-darkest:hover{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\34xl\:hover\:border-gray-darker:hover{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\34xl\:hover\:border-gray-dark:hover{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\34xl\:hover\:border-gray:hover{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\34xl\:hover\:border-gray-light:hover{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\34xl\:hover\:border-gray-lighter:hover{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\34xl\:hover\:border-gray-lightest:hover{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\34xl\:hover\:border-blue-darkest:hover{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\34xl\:hover\:border-blue-dark:hover{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\34xl\:hover\:border-blue:hover{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\34xl\:hover\:border-blue-light:hover{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\34xl\:hover\:border-blue-highlight:hover{border-color:rgba(180,215,255,.6)!important}.\34xl\:hover\:border-orange:hover{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\34xl\:hover\:border-orange-darker:hover{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\34xl\:hover\:border-orange-darkest:hover{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\34xl\:hover\:border-red:hover{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\34xl\:hover\:border-green:hover{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\34xl\:hover\:border-yellow-400:hover{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\34xl\:hover\:border-yellow-50:hover{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\34xl\:focus\:border-transparent:focus{border-color:transparent!important}.\34xl\:focus\:border-white:focus{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.\34xl\:focus\:border-white-70:focus{border-color:hsla(0,0%,100%,.7)!important}.\34xl\:focus\:border-blackest:focus{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.\34xl\:focus\:border-blackest-70:focus{border-color:rgba(0,0,0,.7)!important}.\34xl\:focus\:border-black:focus{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.\34xl\:focus\:border-gray-darkest:focus{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.\34xl\:focus\:border-gray-darker:focus{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.\34xl\:focus\:border-gray-dark:focus{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.\34xl\:focus\:border-gray:focus{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.\34xl\:focus\:border-gray-light:focus{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.\34xl\:focus\:border-gray-lighter:focus{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.\34xl\:focus\:border-gray-lightest:focus{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.\34xl\:focus\:border-blue-darkest:focus{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.\34xl\:focus\:border-blue-dark:focus{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.\34xl\:focus\:border-blue:focus{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.\34xl\:focus\:border-blue-light:focus{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.\34xl\:focus\:border-blue-highlight:focus{border-color:rgba(180,215,255,.6)!important}.\34xl\:focus\:border-orange:focus{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.\34xl\:focus\:border-orange-darker:focus{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.\34xl\:focus\:border-orange-darkest:focus{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.\34xl\:focus\:border-red:focus{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.\34xl\:focus\:border-green:focus{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.\34xl\:focus\:border-yellow-400:focus{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.\34xl\:focus\:border-yellow-50:focus{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-transparent{border-color:transparent!important}.group:hover .\34xl\:group-hover\:border-white{--border-opacity:1!important;border-color:#fff!important;border-color:rgba(255,255,255,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-white-70{border-color:hsla(0,0%,100%,.7)!important}.group:hover .\34xl\:group-hover\:border-blackest{--border-opacity:1!important;border-color:#000!important;border-color:rgba(0,0,0,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-blackest-70{border-color:rgba(0,0,0,.7)!important}.group:hover .\34xl\:group-hover\:border-black{--border-opacity:1!important;border-color:#23292d!important;border-color:rgba(35,41,45,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-gray-darkest{--border-opacity:1!important;border-color:#3d4852!important;border-color:rgba(61,72,82,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-gray-darker{--border-opacity:1!important;border-color:#606f7b!important;border-color:rgba(96,111,123,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-gray-dark{--border-opacity:1!important;border-color:#9ea3a8!important;border-color:rgba(158,163,168,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-gray{--border-opacity:1!important;border-color:#b8c2cc!important;border-color:rgba(184,194,204,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-gray-light{--border-opacity:1!important;border-color:#dae1e7!important;border-color:rgba(218,225,231,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-gray-lighter{--border-opacity:1!important;border-color:#f1f1f1!important;border-color:rgba(241,241,241,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-gray-lightest{--border-opacity:1!important;border-color:#f8fafc!important;border-color:rgba(248,250,252,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-blue-darkest{--border-opacity:1!important;border-color:#1673a7!important;border-color:rgba(22,115,167,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-blue-dark{--border-opacity:1!important;border-color:#0073aa!important;border-color:rgba(0,115,170,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-blue{--border-opacity:1!important;border-color:#3188e6!important;border-color:rgba(49,136,230,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-blue-light{--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-blue-highlight{border-color:rgba(180,215,255,.6)!important}.group:hover .\34xl\:group-hover\:border-orange{--border-opacity:1!important;border-color:#dd6923!important;border-color:rgba(221,105,35,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-orange-darker{--border-opacity:1!important;border-color:#d5551e!important;border-color:rgba(213,85,30,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-orange-darkest{--border-opacity:1!important;border-color:#c9501c!important;border-color:rgba(201,80,28,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-red{--border-opacity:1!important;border-color:#e82323!important;border-color:rgba(232,35,35,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-green{--border-opacity:1!important;border-color:#46b450!important;border-color:rgba(70,180,80,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-yellow-400{--border-opacity:1!important;border-color:#e3a008!important;border-color:rgba(227,160,8,var(--border-opacity))!important}.group:hover .\34xl\:group-hover\:border-yellow-50{--border-opacity:1!important;border-color:#fdfdea!important;border-color:rgba(253,253,234,var(--border-opacity))!important}.\34xl\:border-opacity-0{--border-opacity:0!important}.\34xl\:border-opacity-25{--border-opacity:0.25!important}.\34xl\:border-opacity-50{--border-opacity:0.5!important}.\34xl\:border-opacity-75{--border-opacity:0.75!important}.\34xl\:border-opacity-100{--border-opacity:1!important}.\34xl\:hover\:border-opacity-0:hover{--border-opacity:0!important}.\34xl\:hover\:border-opacity-25:hover{--border-opacity:0.25!important}.\34xl\:hover\:border-opacity-50:hover{--border-opacity:0.5!important}.\34xl\:hover\:border-opacity-75:hover{--border-opacity:0.75!important}.\34xl\:hover\:border-opacity-100:hover{--border-opacity:1!important}.\34xl\:focus\:border-opacity-0:focus{--border-opacity:0!important}.\34xl\:focus\:border-opacity-25:focus{--border-opacity:0.25!important}.\34xl\:focus\:border-opacity-50:focus{--border-opacity:0.5!important}.\34xl\:focus\:border-opacity-75:focus{--border-opacity:0.75!important}.\34xl\:focus\:border-opacity-100:focus{--border-opacity:1!important}.\34xl\:rounded-none{border-radius:0!important}.\34xl\:rounded-sm{border-radius:.125rem!important}.\34xl\:rounded{border-radius:.25rem!important}.\34xl\:rounded-md{border-radius:.375rem!important}.\34xl\:rounded-lg{border-radius:.5rem!important}.\34xl\:rounded-xl{border-radius:.75rem!important}.\34xl\:rounded-2xl{border-radius:1rem!important}.\34xl\:rounded-3xl{border-radius:1.5rem!important}.\34xl\:rounded-full{border-radius:9999px!important}.\34xl\:rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.\34xl\:rounded-r-none{border-bottom-right-radius:0!important;border-top-right-radius:0!important}.\34xl\:rounded-b-none{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.\34xl\:rounded-l-none{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.\34xl\:rounded-t-sm{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.\34xl\:rounded-r-sm{border-top-right-radius:.125rem!important}.\34xl\:rounded-b-sm,.\34xl\:rounded-r-sm{border-bottom-right-radius:.125rem!important}.\34xl\:rounded-b-sm,.\34xl\:rounded-l-sm{border-bottom-left-radius:.125rem!important}.\34xl\:rounded-l-sm{border-top-left-radius:.125rem!important}.\34xl\:rounded-t{border-top-left-radius:.25rem!important}.\34xl\:rounded-r,.\34xl\:rounded-t{border-top-right-radius:.25rem!important}.\34xl\:rounded-b,.\34xl\:rounded-r{border-bottom-right-radius:.25rem!important}.\34xl\:rounded-b,.\34xl\:rounded-l{border-bottom-left-radius:.25rem!important}.\34xl\:rounded-l{border-top-left-radius:.25rem!important}.\34xl\:rounded-t-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.\34xl\:rounded-r-md{border-top-right-radius:.375rem!important}.\34xl\:rounded-b-md,.\34xl\:rounded-r-md{border-bottom-right-radius:.375rem!important}.\34xl\:rounded-b-md,.\34xl\:rounded-l-md{border-bottom-left-radius:.375rem!important}.\34xl\:rounded-l-md{border-top-left-radius:.375rem!important}.\34xl\:rounded-t-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.\34xl\:rounded-r-lg{border-top-right-radius:.5rem!important}.\34xl\:rounded-b-lg,.\34xl\:rounded-r-lg{border-bottom-right-radius:.5rem!important}.\34xl\:rounded-b-lg,.\34xl\:rounded-l-lg{border-bottom-left-radius:.5rem!important}.\34xl\:rounded-l-lg{border-top-left-radius:.5rem!important}.\34xl\:rounded-t-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.\34xl\:rounded-r-xl{border-top-right-radius:.75rem!important}.\34xl\:rounded-b-xl,.\34xl\:rounded-r-xl{border-bottom-right-radius:.75rem!important}.\34xl\:rounded-b-xl,.\34xl\:rounded-l-xl{border-bottom-left-radius:.75rem!important}.\34xl\:rounded-l-xl{border-top-left-radius:.75rem!important}.\34xl\:rounded-t-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.\34xl\:rounded-r-2xl{border-bottom-right-radius:1rem!important;border-top-right-radius:1rem!important}.\34xl\:rounded-b-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.\34xl\:rounded-l-2xl{border-bottom-left-radius:1rem!important;border-top-left-radius:1rem!important}.\34xl\:rounded-t-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.\34xl\:rounded-r-3xl{border-bottom-right-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.\34xl\:rounded-b-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.\34xl\:rounded-l-3xl{border-bottom-left-radius:1.5rem!important;border-top-left-radius:1.5rem!important}.\34xl\:rounded-t-full{border-top-left-radius:9999px!important;border-top-right-radius:9999px!important}.\34xl\:rounded-r-full{border-bottom-right-radius:9999px!important;border-top-right-radius:9999px!important}.\34xl\:rounded-b-full{border-bottom-left-radius:9999px!important;border-bottom-right-radius:9999px!important}.\34xl\:rounded-l-full{border-bottom-left-radius:9999px!important;border-top-left-radius:9999px!important}.\34xl\:rounded-tl-none{border-top-left-radius:0!important}.\34xl\:rounded-tr-none{border-top-right-radius:0!important}.\34xl\:rounded-br-none{border-bottom-right-radius:0!important}.\34xl\:rounded-bl-none{border-bottom-left-radius:0!important}.\34xl\:rounded-tl-sm{border-top-left-radius:.125rem!important}.\34xl\:rounded-tr-sm{border-top-right-radius:.125rem!important}.\34xl\:rounded-br-sm{border-bottom-right-radius:.125rem!important}.\34xl\:rounded-bl-sm{border-bottom-left-radius:.125rem!important}.\34xl\:rounded-tl{border-top-left-radius:.25rem!important}.\34xl\:rounded-tr{border-top-right-radius:.25rem!important}.\34xl\:rounded-br{border-bottom-right-radius:.25rem!important}.\34xl\:rounded-bl{border-bottom-left-radius:.25rem!important}.\34xl\:rounded-tl-md{border-top-left-radius:.375rem!important}.\34xl\:rounded-tr-md{border-top-right-radius:.375rem!important}.\34xl\:rounded-br-md{border-bottom-right-radius:.375rem!important}.\34xl\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.\34xl\:rounded-tl-lg{border-top-left-radius:.5rem!important}.\34xl\:rounded-tr-lg{border-top-right-radius:.5rem!important}.\34xl\:rounded-br-lg{border-bottom-right-radius:.5rem!important}.\34xl\:rounded-bl-lg{border-bottom-left-radius:.5rem!important}.\34xl\:rounded-tl-xl{border-top-left-radius:.75rem!important}.\34xl\:rounded-tr-xl{border-top-right-radius:.75rem!important}.\34xl\:rounded-br-xl{border-bottom-right-radius:.75rem!important}.\34xl\:rounded-bl-xl{border-bottom-left-radius:.75rem!important}.\34xl\:rounded-tl-2xl{border-top-left-radius:1rem!important}.\34xl\:rounded-tr-2xl{border-top-right-radius:1rem!important}.\34xl\:rounded-br-2xl{border-bottom-right-radius:1rem!important}.\34xl\:rounded-bl-2xl{border-bottom-left-radius:1rem!important}.\34xl\:rounded-tl-3xl{border-top-left-radius:1.5rem!important}.\34xl\:rounded-tr-3xl{border-top-right-radius:1.5rem!important}.\34xl\:rounded-br-3xl{border-bottom-right-radius:1.5rem!important}.\34xl\:rounded-bl-3xl{border-bottom-left-radius:1.5rem!important}.\34xl\:rounded-tl-full{border-top-left-radius:9999px!important}.\34xl\:rounded-tr-full{border-top-right-radius:9999px!important}.\34xl\:rounded-br-full{border-bottom-right-radius:9999px!important}.\34xl\:rounded-bl-full{border-bottom-left-radius:9999px!important}.\34xl\:border-solid{border-style:solid!important}.\34xl\:border-dashed{border-style:dashed!important}.\34xl\:border-dotted{border-style:dotted!important}.\34xl\:border-double{border-style:double!important}.\34xl\:border-none{border-style:none!important}.\34xl\:border-0{border-width:0!important}.\34xl\:border-2{border-width:2px!important}.\34xl\:border-4{border-width:4px!important}.\34xl\:border-8{border-width:8px!important}.\34xl\:border{border-width:1px!important}.\34xl\:border-t-0{border-top-width:0!important}.\34xl\:border-r-0{border-right-width:0!important}.\34xl\:border-b-0{border-bottom-width:0!important}.\34xl\:border-l-0{border-left-width:0!important}.\34xl\:border-t-2{border-top-width:2px!important}.\34xl\:border-r-2{border-right-width:2px!important}.\34xl\:border-b-2{border-bottom-width:2px!important}.\34xl\:border-l-2{border-left-width:2px!important}.\34xl\:border-t-4{border-top-width:4px!important}.\34xl\:border-r-4{border-right-width:4px!important}.\34xl\:border-b-4{border-bottom-width:4px!important}.\34xl\:border-l-4{border-left-width:4px!important}.\34xl\:border-t-8{border-top-width:8px!important}.\34xl\:border-r-8{border-right-width:8px!important}.\34xl\:border-b-8{border-bottom-width:8px!important}.\34xl\:border-l-8{border-left-width:8px!important}.\34xl\:border-t{border-top-width:1px!important}.\34xl\:border-r{border-right-width:1px!important}.\34xl\:border-b{border-bottom-width:1px!important}.\34xl\:border-l{border-left-width:1px!important}.\34xl\:box-border{box-sizing:border-box!important}.\34xl\:box-content{box-sizing:content-box!important}.\34xl\:cursor-auto{cursor:auto!important}.\34xl\:cursor-default{cursor:default!important}.\34xl\:cursor-pointer{cursor:pointer!important}.\34xl\:cursor-wait{cursor:wait!important}.\34xl\:cursor-text{cursor:text!important}.\34xl\:cursor-move{cursor:move!important}.\34xl\:cursor-not-allowed{cursor:not-allowed!important}.\34xl\:block{display:block!important}.\34xl\:inline-block{display:inline-block!important}.\34xl\:inline{display:inline!important}.\34xl\:flex{display:flex!important}.\34xl\:inline-flex{display:inline-flex!important}.\34xl\:table{display:table!important}.\34xl\:table-caption{display:table-caption!important}.\34xl\:table-cell{display:table-cell!important}.\34xl\:table-column{display:table-column!important}.\34xl\:table-column-group{display:table-column-group!important}.\34xl\:table-footer-group{display:table-footer-group!important}.\34xl\:table-header-group{display:table-header-group!important}.\34xl\:table-row-group{display:table-row-group!important}.\34xl\:table-row{display:table-row!important}.\34xl\:flow-root{display:flow-root!important}.\34xl\:grid{display:grid!important}.\34xl\:inline-grid{display:inline-grid!important}.\34xl\:contents{display:contents!important}.\34xl\:hidden{display:none!important}.\34xl\:flex-row{flex-direction:row!important}.\34xl\:flex-row-reverse{flex-direction:row-reverse!important}.\34xl\:flex-col{flex-direction:column!important}.\34xl\:flex-col-reverse{flex-direction:column-reverse!important}.\34xl\:flex-wrap{flex-wrap:wrap!important}.\34xl\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.\34xl\:flex-no-wrap{flex-wrap:nowrap!important}.\34xl\:place-items-auto{place-items:auto!important}.\34xl\:place-items-start{place-items:start!important}.\34xl\:place-items-end{place-items:end!important}.\34xl\:place-items-center{place-items:center!important}.\34xl\:place-items-stretch{place-items:stretch!important}.\34xl\:place-content-center{place-content:center!important}.\34xl\:place-content-start{place-content:start!important}.\34xl\:place-content-end{place-content:end!important}.\34xl\:place-content-between{place-content:space-between!important}.\34xl\:place-content-around{place-content:space-around!important}.\34xl\:place-content-evenly{place-content:space-evenly!important}.\34xl\:place-content-stretch{place-content:stretch!important}.\34xl\:place-self-auto{place-self:auto!important}.\34xl\:place-self-start{place-self:start!important}.\34xl\:place-self-end{place-self:end!important}.\34xl\:place-self-center{place-self:center!important}.\34xl\:place-self-stretch{place-self:stretch!important}.\34xl\:items-start{align-items:flex-start!important}.\34xl\:items-end{align-items:flex-end!important}.\34xl\:items-center{align-items:center!important}.\34xl\:items-baseline{align-items:baseline!important}.\34xl\:items-stretch{align-items:stretch!important}.\34xl\:content-center{align-content:center!important}.\34xl\:content-start{align-content:flex-start!important}.\34xl\:content-end{align-content:flex-end!important}.\34xl\:content-between{align-content:space-between!important}.\34xl\:content-around{align-content:space-around!important}.\34xl\:content-evenly{align-content:space-evenly!important}.\34xl\:self-auto{align-self:auto!important}.\34xl\:self-start{align-self:flex-start!important}.\34xl\:self-end{align-self:flex-end!important}.\34xl\:self-center{align-self:center!important}.\34xl\:self-stretch{align-self:stretch!important}.\34xl\:justify-items-auto{justify-items:auto!important}.\34xl\:justify-items-start{justify-items:start!important}.\34xl\:justify-items-end{justify-items:end!important}.\34xl\:justify-items-center{justify-items:center!important}.\34xl\:justify-items-stretch{justify-items:stretch!important}.\34xl\:justify-start{justify-content:flex-start!important}.\34xl\:justify-end{justify-content:flex-end!important}.\34xl\:justify-center{justify-content:center!important}.\34xl\:justify-between{justify-content:space-between!important}.\34xl\:justify-around{justify-content:space-around!important}.\34xl\:justify-evenly{justify-content:space-evenly!important}.\34xl\:justify-self-auto{justify-self:auto!important}.\34xl\:justify-self-start{justify-self:start!important}.\34xl\:justify-self-end{justify-self:end!important}.\34xl\:justify-self-center{justify-self:center!important}.\34xl\:justify-self-stretch{justify-self:stretch!important}.\34xl\:flex-1{flex:1 1 0%!important}.\34xl\:flex-auto{flex:1 1 auto!important}.\34xl\:flex-initial{flex:0 1 auto!important}.\34xl\:flex-none{flex:none!important}.\34xl\:flex-grow-0{flex-grow:0!important}.\34xl\:flex-grow{flex-grow:1!important}.\34xl\:flex-shrink-0{flex-shrink:0!important}.\34xl\:flex-shrink{flex-shrink:1!important}.\34xl\:order-1{order:1!important}.\34xl\:order-2{order:2!important}.\34xl\:order-3{order:3!important}.\34xl\:order-4{order:4!important}.\34xl\:order-5{order:5!important}.\34xl\:order-6{order:6!important}.\34xl\:order-7{order:7!important}.\34xl\:order-8{order:8!important}.\34xl\:order-9{order:9!important}.\34xl\:order-10{order:10!important}.\34xl\:order-11{order:11!important}.\34xl\:order-12{order:12!important}.\34xl\:order-first{order:-9999!important}.\34xl\:order-last{order:9999!important}.\34xl\:order-none{order:0!important}.\34xl\:float-right{float:right!important}.\34xl\:float-left{float:left!important}.\34xl\:float-none{float:none!important}.\34xl\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=ltr] .\34xl\:ltr\:float-right{float:right!important}[dir=ltr] .\34xl\:ltr\:float-left{float:left!important}[dir=ltr] .\34xl\:ltr\:float-none{float:none!important}[dir=ltr] .\34xl\:ltr\:clearfix:after{clear:both!important;content:""!important;display:table!important}[dir=rtl] .\34xl\:rtl\:float-right{float:right!important}[dir=rtl] .\34xl\:rtl\:float-left{float:left!important}[dir=rtl] .\34xl\:rtl\:float-none{float:none!important}[dir=rtl] .\34xl\:rtl\:clearfix:after{clear:both!important;content:""!important;display:table!important}.\34xl\:clear-left{clear:left!important}.\34xl\:clear-right{clear:right!important}.\34xl\:clear-both{clear:both!important}.\34xl\:clear-none{clear:none!important}.\34xl\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.\34xl\:font-serif{font-family:Georgia,Cambria,Times New Roman,Times,serif!important}.\34xl\:font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.\34xl\:font-hairline{font-weight:100!important}.\34xl\:font-thin{font-weight:200!important}.\34xl\:font-light{font-weight:300!important}.\34xl\:font-normal{font-weight:400!important}.\34xl\:font-medium{font-weight:500!important}.\34xl\:font-semibold{font-weight:600!important}.\34xl\:font-bold{font-weight:700!important}.\34xl\:font-extrabold{font-weight:800!important}.\34xl\:font-black{font-weight:900!important}.\34xl\:hover\:font-hairline:hover{font-weight:100!important}.\34xl\:hover\:font-thin:hover{font-weight:200!important}.\34xl\:hover\:font-light:hover{font-weight:300!important}.\34xl\:hover\:font-normal:hover{font-weight:400!important}.\34xl\:hover\:font-medium:hover{font-weight:500!important}.\34xl\:hover\:font-semibold:hover{font-weight:600!important}.\34xl\:hover\:font-bold:hover{font-weight:700!important}.\34xl\:hover\:font-extrabold:hover{font-weight:800!important}.\34xl\:hover\:font-black:hover{font-weight:900!important}.\34xl\:focus\:font-hairline:focus{font-weight:100!important}.\34xl\:focus\:font-thin:focus{font-weight:200!important}.\34xl\:focus\:font-light:focus{font-weight:300!important}.\34xl\:focus\:font-normal:focus{font-weight:400!important}.\34xl\:focus\:font-medium:focus{font-weight:500!important}.\34xl\:focus\:font-semibold:focus{font-weight:600!important}.\34xl\:focus\:font-bold:focus{font-weight:700!important}.\34xl\:focus\:font-extrabold:focus{font-weight:800!important}.\34xl\:focus\:font-black:focus{font-weight:900!important}.\34xl\:h-0{height:0!important}.\34xl\:h-1{height:.25rem!important}.\34xl\:h-2{height:.5rem!important}.\34xl\:h-3{height:.75rem!important}.\34xl\:h-4{height:1rem!important}.\34xl\:h-5{height:1.25rem!important}.\34xl\:h-6{height:1.5rem!important}.\34xl\:h-7{height:1.75rem!important}.\34xl\:h-8{height:2rem!important}.\34xl\:h-9{height:2.25rem!important}.\34xl\:h-10{height:2.5rem!important}.\34xl\:h-11{height:2.75rem!important}.\34xl\:h-12{height:3rem!important}.\34xl\:h-13{height:3.25rem!important}.\34xl\:h-14{height:3.5rem!important}.\34xl\:h-15{height:3.75rem!important}.\34xl\:h-16{height:4rem!important}.\34xl\:h-20{height:5rem!important}.\34xl\:h-24{height:6rem!important}.\34xl\:h-28{height:7rem!important}.\34xl\:h-32{height:8rem!important}.\34xl\:h-36{height:9rem!important}.\34xl\:h-40{height:10rem!important}.\34xl\:h-48{height:12rem!important}.\34xl\:h-56{height:14rem!important}.\34xl\:h-60{height:15rem!important}.\34xl\:h-64{height:16rem!important}.\34xl\:h-72{height:18rem!important}.\34xl\:h-80{height:20rem!important}.\34xl\:h-96{height:24rem!important}.\34xl\:h-auto{height:auto!important}.\34xl\:h-px{height:1px!important}.\34xl\:h-0\.5{height:.125rem!important}.\34xl\:h-1\.5{height:.375rem!important}.\34xl\:h-2\.5{height:.625rem!important}.\34xl\:h-3\.5{height:.875rem!important}.\34xl\:h-1\/2{height:50%!important}.\34xl\:h-1\/3{height:33.333333%!important}.\34xl\:h-2\/3{height:66.666667%!important}.\34xl\:h-1\/4{height:25%!important}.\34xl\:h-2\/4{height:50%!important}.\34xl\:h-3\/4{height:75%!important}.\34xl\:h-1\/5{height:20%!important}.\34xl\:h-2\/5{height:40%!important}.\34xl\:h-3\/5{height:60%!important}.\34xl\:h-4\/5{height:80%!important}.\34xl\:h-1\/6{height:16.666667%!important}.\34xl\:h-2\/6{height:33.333333%!important}.\34xl\:h-3\/6{height:50%!important}.\34xl\:h-4\/6{height:66.666667%!important}.\34xl\:h-5\/6{height:83.333333%!important}.\34xl\:h-1\/12{height:8.333333%!important}.\34xl\:h-2\/12{height:16.666667%!important}.\34xl\:h-3\/12{height:25%!important}.\34xl\:h-4\/12{height:33.333333%!important}.\34xl\:h-5\/12{height:41.666667%!important}.\34xl\:h-6\/12{height:50%!important}.\34xl\:h-7\/12{height:58.333333%!important}.\34xl\:h-8\/12{height:66.666667%!important}.\34xl\:h-9\/12{height:75%!important}.\34xl\:h-10\/12{height:83.333333%!important}.\34xl\:h-11\/12{height:91.666667%!important}.\34xl\:h-full{height:100%!important}.\34xl\:h-screen{height:100vh!important}.\34xl\:text-xs{font-size:.7rem!important}.\34xl\:text-sm{font-size:.875rem!important}.\34xl\:text-base{font-size:1rem!important}.\34xl\:text-lg{font-size:1.125rem!important}.\34xl\:text-xl{font-size:1.25rem!important}.\34xl\:text-2xl{font-size:1.5rem!important}.\34xl\:text-3xl{font-size:1.875rem!important}.\34xl\:text-4xl{font-size:2.25rem!important}.\34xl\:text-5xl{font-size:3rem!important}.\34xl\:text-6xl{font-size:4rem!important}.\34xl\:leading-3{line-height:.75rem!important}.\34xl\:leading-4{line-height:1rem!important}.\34xl\:leading-5{line-height:1.25rem!important}.\34xl\:leading-6{line-height:1.5rem!important}.\34xl\:leading-7{line-height:1.75rem!important}.\34xl\:leading-8{line-height:2rem!important}.\34xl\:leading-9{line-height:2.25rem!important}.\34xl\:leading-10{line-height:2.5rem!important}.\34xl\:leading-none{line-height:1!important}.\34xl\:leading-tight{line-height:1.25!important}.\34xl\:leading-snug{line-height:1.375!important}.\34xl\:leading-normal{line-height:1.5!important}.\34xl\:leading-relaxed{line-height:1.625!important}.\34xl\:leading-loose{line-height:2!important}.\34xl\:list-inside{list-style-position:inside!important}.\34xl\:list-outside{list-style-position:outside!important}.\34xl\:list-none{list-style-type:none!important}.\34xl\:list-disc{list-style-type:disc!important}.\34xl\:list-decimal{list-style-type:decimal!important}.\34xl\:m-0{margin:0!important}.\34xl\:m-1{margin:.25rem!important}.\34xl\:m-2{margin:.5rem!important}.\34xl\:m-3{margin:.75rem!important}.\34xl\:m-4{margin:1rem!important}.\34xl\:m-5{margin:1.25rem!important}.\34xl\:m-6{margin:1.5rem!important}.\34xl\:m-7{margin:1.75rem!important}.\34xl\:m-8{margin:2rem!important}.\34xl\:m-9{margin:2.25rem!important}.\34xl\:m-10{margin:2.5rem!important}.\34xl\:m-11{margin:2.75rem!important}.\34xl\:m-12{margin:3rem!important}.\34xl\:m-13{margin:3.25rem!important}.\34xl\:m-14{margin:3.5rem!important}.\34xl\:m-15{margin:3.75rem!important}.\34xl\:m-16{margin:4rem!important}.\34xl\:m-20{margin:5rem!important}.\34xl\:m-24{margin:6rem!important}.\34xl\:m-28{margin:7rem!important}.\34xl\:m-32{margin:8rem!important}.\34xl\:m-36{margin:9rem!important}.\34xl\:m-40{margin:10rem!important}.\34xl\:m-48{margin:12rem!important}.\34xl\:m-56{margin:14rem!important}.\34xl\:m-60{margin:15rem!important}.\34xl\:m-64{margin:16rem!important}.\34xl\:m-72{margin:18rem!important}.\34xl\:m-80{margin:20rem!important}.\34xl\:m-96{margin:24rem!important}.\34xl\:m-auto{margin:auto!important}.\34xl\:m-px{margin:1px!important}.\34xl\:m-0\.5{margin:.125rem!important}.\34xl\:m-1\.5{margin:.375rem!important}.\34xl\:m-2\.5{margin:.625rem!important}.\34xl\:m-3\.5{margin:.875rem!important}.\34xl\:m-1\/2{margin:50%!important}.\34xl\:m-1\/3{margin:33.333333%!important}.\34xl\:m-2\/3{margin:66.666667%!important}.\34xl\:m-1\/4{margin:25%!important}.\34xl\:m-2\/4{margin:50%!important}.\34xl\:m-3\/4{margin:75%!important}.\34xl\:m-1\/5{margin:20%!important}.\34xl\:m-2\/5{margin:40%!important}.\34xl\:m-3\/5{margin:60%!important}.\34xl\:m-4\/5{margin:80%!important}.\34xl\:m-1\/6{margin:16.666667%!important}.\34xl\:m-2\/6{margin:33.333333%!important}.\34xl\:m-3\/6{margin:50%!important}.\34xl\:m-4\/6{margin:66.666667%!important}.\34xl\:m-5\/6{margin:83.333333%!important}.\34xl\:m-1\/12{margin:8.333333%!important}.\34xl\:m-2\/12{margin:16.666667%!important}.\34xl\:m-3\/12{margin:25%!important}.\34xl\:m-4\/12{margin:33.333333%!important}.\34xl\:m-5\/12{margin:41.666667%!important}.\34xl\:m-6\/12{margin:50%!important}.\34xl\:m-7\/12{margin:58.333333%!important}.\34xl\:m-8\/12{margin:66.666667%!important}.\34xl\:m-9\/12{margin:75%!important}.\34xl\:m-10\/12{margin:83.333333%!important}.\34xl\:m-11\/12{margin:91.666667%!important}.\34xl\:m-full{margin:100%!important}.\34xl\:-m-1{margin:-.25rem!important}.\34xl\:-m-2{margin:-.5rem!important}.\34xl\:-m-3{margin:-.75rem!important}.\34xl\:-m-4{margin:-1rem!important}.\34xl\:-m-5{margin:-1.25rem!important}.\34xl\:-m-6{margin:-1.5rem!important}.\34xl\:-m-7{margin:-1.75rem!important}.\34xl\:-m-8{margin:-2rem!important}.\34xl\:-m-9{margin:-2.25rem!important}.\34xl\:-m-10{margin:-2.5rem!important}.\34xl\:-m-11{margin:-2.75rem!important}.\34xl\:-m-12{margin:-3rem!important}.\34xl\:-m-13{margin:-3.25rem!important}.\34xl\:-m-14{margin:-3.5rem!important}.\34xl\:-m-15{margin:-3.75rem!important}.\34xl\:-m-16{margin:-4rem!important}.\34xl\:-m-20{margin:-5rem!important}.\34xl\:-m-24{margin:-6rem!important}.\34xl\:-m-28{margin:-7rem!important}.\34xl\:-m-32{margin:-8rem!important}.\34xl\:-m-36{margin:-9rem!important}.\34xl\:-m-40{margin:-10rem!important}.\34xl\:-m-48{margin:-12rem!important}.\34xl\:-m-56{margin:-14rem!important}.\34xl\:-m-60{margin:-15rem!important}.\34xl\:-m-64{margin:-16rem!important}.\34xl\:-m-72{margin:-18rem!important}.\34xl\:-m-80{margin:-20rem!important}.\34xl\:-m-96{margin:-24rem!important}.\34xl\:-m-px{margin:-1px!important}.\34xl\:-m-0\.5{margin:-.125rem!important}.\34xl\:-m-1\.5{margin:-.375rem!important}.\34xl\:-m-2\.5{margin:-.625rem!important}.\34xl\:-m-3\.5{margin:-.875rem!important}.\34xl\:-m-1\/2{margin:-50%!important}.\34xl\:-m-1\/3{margin:-33.33333%!important}.\34xl\:-m-2\/3{margin:-66.66667%!important}.\34xl\:-m-1\/4{margin:-25%!important}.\34xl\:-m-2\/4{margin:-50%!important}.\34xl\:-m-3\/4{margin:-75%!important}.\34xl\:-m-1\/5{margin:-20%!important}.\34xl\:-m-2\/5{margin:-40%!important}.\34xl\:-m-3\/5{margin:-60%!important}.\34xl\:-m-4\/5{margin:-80%!important}.\34xl\:-m-1\/6{margin:-16.66667%!important}.\34xl\:-m-2\/6{margin:-33.33333%!important}.\34xl\:-m-3\/6{margin:-50%!important}.\34xl\:-m-4\/6{margin:-66.66667%!important}.\34xl\:-m-5\/6{margin:-83.33333%!important}.\34xl\:-m-1\/12{margin:-8.33333%!important}.\34xl\:-m-2\/12{margin:-16.66667%!important}.\34xl\:-m-3\/12{margin:-25%!important}.\34xl\:-m-4\/12{margin:-33.33333%!important}.\34xl\:-m-5\/12{margin:-41.66667%!important}.\34xl\:-m-6\/12{margin:-50%!important}.\34xl\:-m-7\/12{margin:-58.33333%!important}.\34xl\:-m-8\/12{margin:-66.66667%!important}.\34xl\:-m-9\/12{margin:-75%!important}.\34xl\:-m-10\/12{margin:-83.33333%!important}.\34xl\:-m-11\/12{margin:-91.66667%!important}.\34xl\:-m-full{margin:-100%!important}.\34xl\:my-0{margin-bottom:0!important;margin-top:0!important}.\34xl\:mx-0{margin-left:0!important;margin-right:0!important}.\34xl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.\34xl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.\34xl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.\34xl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.\34xl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}.\34xl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.\34xl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}.\34xl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}.\34xl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}.\34xl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.\34xl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.\34xl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.\34xl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}.\34xl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.\34xl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}.\34xl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}.\34xl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}.\34xl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.\34xl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}.\34xl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.\34xl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}.\34xl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.\34xl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}.\34xl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}.\34xl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}.\34xl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}.\34xl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}.\34xl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.\34xl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}.\34xl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}.\34xl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}.\34xl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}.\34xl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}.\34xl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}.\34xl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}.\34xl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}.\34xl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}.\34xl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}.\34xl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}.\34xl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}.\34xl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}.\34xl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}.\34xl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}.\34xl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}.\34xl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}.\34xl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}.\34xl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}.\34xl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}.\34xl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}.\34xl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}.\34xl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}.\34xl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}.\34xl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}.\34xl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}.\34xl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}.\34xl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}.\34xl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}.\34xl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}.\34xl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}.\34xl\:mx-auto{margin-left:auto!important;margin-right:auto!important}.\34xl\:my-px{margin-bottom:1px!important;margin-top:1px!important}.\34xl\:mx-px{margin-left:1px!important;margin-right:1px!important}.\34xl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}.\34xl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.\34xl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}.\34xl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.\34xl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}.\34xl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.\34xl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}.\34xl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.\34xl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}.\34xl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}.\34xl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\34xl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}.\34xl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\34xl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}.\34xl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}.\34xl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}.\34xl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}.\34xl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}.\34xl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}.\34xl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}.\34xl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}.\34xl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}.\34xl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}.\34xl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}.\34xl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}.\34xl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}.\34xl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}.\34xl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}.\34xl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.\34xl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}.\34xl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\34xl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}.\34xl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}.\34xl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}.\34xl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\34xl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}.\34xl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.\34xl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}.\34xl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}.\34xl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}.\34xl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}.\34xl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}.\34xl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}.\34xl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}.\34xl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}.\34xl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}.\34xl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}.\34xl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}.\34xl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}.\34xl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}.\34xl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}.\34xl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}.\34xl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}.\34xl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}.\34xl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}.\34xl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}.\34xl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}.\34xl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}.\34xl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}.\34xl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}.\34xl\:my-full{margin-bottom:100%!important;margin-top:100%!important}.\34xl\:mx-full{margin-left:100%!important;margin-right:100%!important}.\34xl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.\34xl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.\34xl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.\34xl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.\34xl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}.\34xl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}.\34xl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}.\34xl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}.\34xl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}.\34xl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}.\34xl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}.\34xl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.\34xl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}.\34xl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}.\34xl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}.\34xl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}.\34xl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}.\34xl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}.\34xl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}.\34xl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}.\34xl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}.\34xl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}.\34xl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}.\34xl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}.\34xl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}.\34xl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}.\34xl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}.\34xl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}.\34xl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}.\34xl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}.\34xl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}.\34xl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}.\34xl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}.\34xl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}.\34xl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}.\34xl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}.\34xl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}.\34xl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}.\34xl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}.\34xl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}.\34xl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}.\34xl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}.\34xl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}.\34xl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}.\34xl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}.\34xl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}.\34xl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}.\34xl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}.\34xl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}.\34xl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}.\34xl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}.\34xl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}.\34xl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}.\34xl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}.\34xl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}.\34xl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}.\34xl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}.\34xl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}.\34xl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}.\34xl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}.\34xl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}.\34xl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}.\34xl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}.\34xl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}.\34xl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}.\34xl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}.\34xl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}.\34xl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}.\34xl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}.\34xl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}.\34xl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\34xl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\34xl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\34xl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\34xl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}.\34xl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}.\34xl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}.\34xl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}.\34xl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}.\34xl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}.\34xl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}.\34xl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}.\34xl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}.\34xl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}.\34xl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}.\34xl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}.\34xl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}.\34xl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}.\34xl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.\34xl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.\34xl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\34xl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\34xl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}.\34xl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}.\34xl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\34xl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\34xl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.\34xl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.\34xl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}.\34xl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}.\34xl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}.\34xl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}.\34xl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}.\34xl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}.\34xl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}.\34xl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}.\34xl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}.\34xl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}.\34xl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}.\34xl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}.\34xl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}.\34xl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}.\34xl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}.\34xl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}.\34xl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}.\34xl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}.\34xl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}.\34xl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}.\34xl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}.\34xl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}.\34xl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}.\34xl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}.\34xl\:mt-0{margin-top:0!important}.\34xl\:mr-0{margin-right:0!important}.\34xl\:mb-0{margin-bottom:0!important}.\34xl\:ml-0{margin-left:0!important}.\34xl\:mt-1{margin-top:.25rem!important}.\34xl\:mr-1{margin-right:.25rem!important}.\34xl\:mb-1{margin-bottom:.25rem!important}.\34xl\:ml-1{margin-left:.25rem!important}.\34xl\:mt-2{margin-top:.5rem!important}.\34xl\:mr-2{margin-right:.5rem!important}.\34xl\:mb-2{margin-bottom:.5rem!important}.\34xl\:ml-2{margin-left:.5rem!important}.\34xl\:mt-3{margin-top:.75rem!important}.\34xl\:mr-3{margin-right:.75rem!important}.\34xl\:mb-3{margin-bottom:.75rem!important}.\34xl\:ml-3{margin-left:.75rem!important}.\34xl\:mt-4{margin-top:1rem!important}.\34xl\:mr-4{margin-right:1rem!important}.\34xl\:mb-4{margin-bottom:1rem!important}.\34xl\:ml-4{margin-left:1rem!important}.\34xl\:mt-5{margin-top:1.25rem!important}.\34xl\:mr-5{margin-right:1.25rem!important}.\34xl\:mb-5{margin-bottom:1.25rem!important}.\34xl\:ml-5{margin-left:1.25rem!important}.\34xl\:mt-6{margin-top:1.5rem!important}.\34xl\:mr-6{margin-right:1.5rem!important}.\34xl\:mb-6{margin-bottom:1.5rem!important}.\34xl\:ml-6{margin-left:1.5rem!important}.\34xl\:mt-7{margin-top:1.75rem!important}.\34xl\:mr-7{margin-right:1.75rem!important}.\34xl\:mb-7{margin-bottom:1.75rem!important}.\34xl\:ml-7{margin-left:1.75rem!important}.\34xl\:mt-8{margin-top:2rem!important}.\34xl\:mr-8{margin-right:2rem!important}.\34xl\:mb-8{margin-bottom:2rem!important}.\34xl\:ml-8{margin-left:2rem!important}.\34xl\:mt-9{margin-top:2.25rem!important}.\34xl\:mr-9{margin-right:2.25rem!important}.\34xl\:mb-9{margin-bottom:2.25rem!important}.\34xl\:ml-9{margin-left:2.25rem!important}.\34xl\:mt-10{margin-top:2.5rem!important}.\34xl\:mr-10{margin-right:2.5rem!important}.\34xl\:mb-10{margin-bottom:2.5rem!important}.\34xl\:ml-10{margin-left:2.5rem!important}.\34xl\:mt-11{margin-top:2.75rem!important}.\34xl\:mr-11{margin-right:2.75rem!important}.\34xl\:mb-11{margin-bottom:2.75rem!important}.\34xl\:ml-11{margin-left:2.75rem!important}.\34xl\:mt-12{margin-top:3rem!important}.\34xl\:mr-12{margin-right:3rem!important}.\34xl\:mb-12{margin-bottom:3rem!important}.\34xl\:ml-12{margin-left:3rem!important}.\34xl\:mt-13{margin-top:3.25rem!important}.\34xl\:mr-13{margin-right:3.25rem!important}.\34xl\:mb-13{margin-bottom:3.25rem!important}.\34xl\:ml-13{margin-left:3.25rem!important}.\34xl\:mt-14{margin-top:3.5rem!important}.\34xl\:mr-14{margin-right:3.5rem!important}.\34xl\:mb-14{margin-bottom:3.5rem!important}.\34xl\:ml-14{margin-left:3.5rem!important}.\34xl\:mt-15{margin-top:3.75rem!important}.\34xl\:mr-15{margin-right:3.75rem!important}.\34xl\:mb-15{margin-bottom:3.75rem!important}.\34xl\:ml-15{margin-left:3.75rem!important}.\34xl\:mt-16{margin-top:4rem!important}.\34xl\:mr-16{margin-right:4rem!important}.\34xl\:mb-16{margin-bottom:4rem!important}.\34xl\:ml-16{margin-left:4rem!important}.\34xl\:mt-20{margin-top:5rem!important}.\34xl\:mr-20{margin-right:5rem!important}.\34xl\:mb-20{margin-bottom:5rem!important}.\34xl\:ml-20{margin-left:5rem!important}.\34xl\:mt-24{margin-top:6rem!important}.\34xl\:mr-24{margin-right:6rem!important}.\34xl\:mb-24{margin-bottom:6rem!important}.\34xl\:ml-24{margin-left:6rem!important}.\34xl\:mt-28{margin-top:7rem!important}.\34xl\:mr-28{margin-right:7rem!important}.\34xl\:mb-28{margin-bottom:7rem!important}.\34xl\:ml-28{margin-left:7rem!important}.\34xl\:mt-32{margin-top:8rem!important}.\34xl\:mr-32{margin-right:8rem!important}.\34xl\:mb-32{margin-bottom:8rem!important}.\34xl\:ml-32{margin-left:8rem!important}.\34xl\:mt-36{margin-top:9rem!important}.\34xl\:mr-36{margin-right:9rem!important}.\34xl\:mb-36{margin-bottom:9rem!important}.\34xl\:ml-36{margin-left:9rem!important}.\34xl\:mt-40{margin-top:10rem!important}.\34xl\:mr-40{margin-right:10rem!important}.\34xl\:mb-40{margin-bottom:10rem!important}.\34xl\:ml-40{margin-left:10rem!important}.\34xl\:mt-48{margin-top:12rem!important}.\34xl\:mr-48{margin-right:12rem!important}.\34xl\:mb-48{margin-bottom:12rem!important}.\34xl\:ml-48{margin-left:12rem!important}.\34xl\:mt-56{margin-top:14rem!important}.\34xl\:mr-56{margin-right:14rem!important}.\34xl\:mb-56{margin-bottom:14rem!important}.\34xl\:ml-56{margin-left:14rem!important}.\34xl\:mt-60{margin-top:15rem!important}.\34xl\:mr-60{margin-right:15rem!important}.\34xl\:mb-60{margin-bottom:15rem!important}.\34xl\:ml-60{margin-left:15rem!important}.\34xl\:mt-64{margin-top:16rem!important}.\34xl\:mr-64{margin-right:16rem!important}.\34xl\:mb-64{margin-bottom:16rem!important}.\34xl\:ml-64{margin-left:16rem!important}.\34xl\:mt-72{margin-top:18rem!important}.\34xl\:mr-72{margin-right:18rem!important}.\34xl\:mb-72{margin-bottom:18rem!important}.\34xl\:ml-72{margin-left:18rem!important}.\34xl\:mt-80{margin-top:20rem!important}.\34xl\:mr-80{margin-right:20rem!important}.\34xl\:mb-80{margin-bottom:20rem!important}.\34xl\:ml-80{margin-left:20rem!important}.\34xl\:mt-96{margin-top:24rem!important}.\34xl\:mr-96{margin-right:24rem!important}.\34xl\:mb-96{margin-bottom:24rem!important}.\34xl\:ml-96{margin-left:24rem!important}.\34xl\:mt-auto{margin-top:auto!important}.\34xl\:mr-auto{margin-right:auto!important}.\34xl\:mb-auto{margin-bottom:auto!important}.\34xl\:ml-auto{margin-left:auto!important}.\34xl\:mt-px{margin-top:1px!important}.\34xl\:mr-px{margin-right:1px!important}.\34xl\:mb-px{margin-bottom:1px!important}.\34xl\:ml-px{margin-left:1px!important}.\34xl\:mt-0\.5{margin-top:.125rem!important}.\34xl\:mr-0\.5{margin-right:.125rem!important}.\34xl\:mb-0\.5{margin-bottom:.125rem!important}.\34xl\:ml-0\.5{margin-left:.125rem!important}.\34xl\:mt-1\.5{margin-top:.375rem!important}.\34xl\:mr-1\.5{margin-right:.375rem!important}.\34xl\:mb-1\.5{margin-bottom:.375rem!important}.\34xl\:ml-1\.5{margin-left:.375rem!important}.\34xl\:mt-2\.5{margin-top:.625rem!important}.\34xl\:mr-2\.5{margin-right:.625rem!important}.\34xl\:mb-2\.5{margin-bottom:.625rem!important}.\34xl\:ml-2\.5{margin-left:.625rem!important}.\34xl\:mt-3\.5{margin-top:.875rem!important}.\34xl\:mr-3\.5{margin-right:.875rem!important}.\34xl\:mb-3\.5{margin-bottom:.875rem!important}.\34xl\:ml-3\.5{margin-left:.875rem!important}.\34xl\:mt-1\/2{margin-top:50%!important}.\34xl\:mr-1\/2{margin-right:50%!important}.\34xl\:mb-1\/2{margin-bottom:50%!important}.\34xl\:ml-1\/2{margin-left:50%!important}.\34xl\:mt-1\/3{margin-top:33.333333%!important}.\34xl\:mr-1\/3{margin-right:33.333333%!important}.\34xl\:mb-1\/3{margin-bottom:33.333333%!important}.\34xl\:ml-1\/3{margin-left:33.333333%!important}.\34xl\:mt-2\/3{margin-top:66.666667%!important}.\34xl\:mr-2\/3{margin-right:66.666667%!important}.\34xl\:mb-2\/3{margin-bottom:66.666667%!important}.\34xl\:ml-2\/3{margin-left:66.666667%!important}.\34xl\:mt-1\/4{margin-top:25%!important}.\34xl\:mr-1\/4{margin-right:25%!important}.\34xl\:mb-1\/4{margin-bottom:25%!important}.\34xl\:ml-1\/4{margin-left:25%!important}.\34xl\:mt-2\/4{margin-top:50%!important}.\34xl\:mr-2\/4{margin-right:50%!important}.\34xl\:mb-2\/4{margin-bottom:50%!important}.\34xl\:ml-2\/4{margin-left:50%!important}.\34xl\:mt-3\/4{margin-top:75%!important}.\34xl\:mr-3\/4{margin-right:75%!important}.\34xl\:mb-3\/4{margin-bottom:75%!important}.\34xl\:ml-3\/4{margin-left:75%!important}.\34xl\:mt-1\/5{margin-top:20%!important}.\34xl\:mr-1\/5{margin-right:20%!important}.\34xl\:mb-1\/5{margin-bottom:20%!important}.\34xl\:ml-1\/5{margin-left:20%!important}.\34xl\:mt-2\/5{margin-top:40%!important}.\34xl\:mr-2\/5{margin-right:40%!important}.\34xl\:mb-2\/5{margin-bottom:40%!important}.\34xl\:ml-2\/5{margin-left:40%!important}.\34xl\:mt-3\/5{margin-top:60%!important}.\34xl\:mr-3\/5{margin-right:60%!important}.\34xl\:mb-3\/5{margin-bottom:60%!important}.\34xl\:ml-3\/5{margin-left:60%!important}.\34xl\:mt-4\/5{margin-top:80%!important}.\34xl\:mr-4\/5{margin-right:80%!important}.\34xl\:mb-4\/5{margin-bottom:80%!important}.\34xl\:ml-4\/5{margin-left:80%!important}.\34xl\:mt-1\/6{margin-top:16.666667%!important}.\34xl\:mr-1\/6{margin-right:16.666667%!important}.\34xl\:mb-1\/6{margin-bottom:16.666667%!important}.\34xl\:ml-1\/6{margin-left:16.666667%!important}.\34xl\:mt-2\/6{margin-top:33.333333%!important}.\34xl\:mr-2\/6{margin-right:33.333333%!important}.\34xl\:mb-2\/6{margin-bottom:33.333333%!important}.\34xl\:ml-2\/6{margin-left:33.333333%!important}.\34xl\:mt-3\/6{margin-top:50%!important}.\34xl\:mr-3\/6{margin-right:50%!important}.\34xl\:mb-3\/6{margin-bottom:50%!important}.\34xl\:ml-3\/6{margin-left:50%!important}.\34xl\:mt-4\/6{margin-top:66.666667%!important}.\34xl\:mr-4\/6{margin-right:66.666667%!important}.\34xl\:mb-4\/6{margin-bottom:66.666667%!important}.\34xl\:ml-4\/6{margin-left:66.666667%!important}.\34xl\:mt-5\/6{margin-top:83.333333%!important}.\34xl\:mr-5\/6{margin-right:83.333333%!important}.\34xl\:mb-5\/6{margin-bottom:83.333333%!important}.\34xl\:ml-5\/6{margin-left:83.333333%!important}.\34xl\:mt-1\/12{margin-top:8.333333%!important}.\34xl\:mr-1\/12{margin-right:8.333333%!important}.\34xl\:mb-1\/12{margin-bottom:8.333333%!important}.\34xl\:ml-1\/12{margin-left:8.333333%!important}.\34xl\:mt-2\/12{margin-top:16.666667%!important}.\34xl\:mr-2\/12{margin-right:16.666667%!important}.\34xl\:mb-2\/12{margin-bottom:16.666667%!important}.\34xl\:ml-2\/12{margin-left:16.666667%!important}.\34xl\:mt-3\/12{margin-top:25%!important}.\34xl\:mr-3\/12{margin-right:25%!important}.\34xl\:mb-3\/12{margin-bottom:25%!important}.\34xl\:ml-3\/12{margin-left:25%!important}.\34xl\:mt-4\/12{margin-top:33.333333%!important}.\34xl\:mr-4\/12{margin-right:33.333333%!important}.\34xl\:mb-4\/12{margin-bottom:33.333333%!important}.\34xl\:ml-4\/12{margin-left:33.333333%!important}.\34xl\:mt-5\/12{margin-top:41.666667%!important}.\34xl\:mr-5\/12{margin-right:41.666667%!important}.\34xl\:mb-5\/12{margin-bottom:41.666667%!important}.\34xl\:ml-5\/12{margin-left:41.666667%!important}.\34xl\:mt-6\/12{margin-top:50%!important}.\34xl\:mr-6\/12{margin-right:50%!important}.\34xl\:mb-6\/12{margin-bottom:50%!important}.\34xl\:ml-6\/12{margin-left:50%!important}.\34xl\:mt-7\/12{margin-top:58.333333%!important}.\34xl\:mr-7\/12{margin-right:58.333333%!important}.\34xl\:mb-7\/12{margin-bottom:58.333333%!important}.\34xl\:ml-7\/12{margin-left:58.333333%!important}.\34xl\:mt-8\/12{margin-top:66.666667%!important}.\34xl\:mr-8\/12{margin-right:66.666667%!important}.\34xl\:mb-8\/12{margin-bottom:66.666667%!important}.\34xl\:ml-8\/12{margin-left:66.666667%!important}.\34xl\:mt-9\/12{margin-top:75%!important}.\34xl\:mr-9\/12{margin-right:75%!important}.\34xl\:mb-9\/12{margin-bottom:75%!important}.\34xl\:ml-9\/12{margin-left:75%!important}.\34xl\:mt-10\/12{margin-top:83.333333%!important}.\34xl\:mr-10\/12{margin-right:83.333333%!important}.\34xl\:mb-10\/12{margin-bottom:83.333333%!important}.\34xl\:ml-10\/12{margin-left:83.333333%!important}.\34xl\:mt-11\/12{margin-top:91.666667%!important}.\34xl\:mr-11\/12{margin-right:91.666667%!important}.\34xl\:mb-11\/12{margin-bottom:91.666667%!important}.\34xl\:ml-11\/12{margin-left:91.666667%!important}.\34xl\:mt-full{margin-top:100%!important}.\34xl\:mr-full{margin-right:100%!important}.\34xl\:mb-full{margin-bottom:100%!important}.\34xl\:ml-full{margin-left:100%!important}.\34xl\:-mt-1{margin-top:-.25rem!important}.\34xl\:-mr-1{margin-right:-.25rem!important}.\34xl\:-mb-1{margin-bottom:-.25rem!important}.\34xl\:-ml-1{margin-left:-.25rem!important}.\34xl\:-mt-2{margin-top:-.5rem!important}.\34xl\:-mr-2{margin-right:-.5rem!important}.\34xl\:-mb-2{margin-bottom:-.5rem!important}.\34xl\:-ml-2{margin-left:-.5rem!important}.\34xl\:-mt-3{margin-top:-.75rem!important}.\34xl\:-mr-3{margin-right:-.75rem!important}.\34xl\:-mb-3{margin-bottom:-.75rem!important}.\34xl\:-ml-3{margin-left:-.75rem!important}.\34xl\:-mt-4{margin-top:-1rem!important}.\34xl\:-mr-4{margin-right:-1rem!important}.\34xl\:-mb-4{margin-bottom:-1rem!important}.\34xl\:-ml-4{margin-left:-1rem!important}.\34xl\:-mt-5{margin-top:-1.25rem!important}.\34xl\:-mr-5{margin-right:-1.25rem!important}.\34xl\:-mb-5{margin-bottom:-1.25rem!important}.\34xl\:-ml-5{margin-left:-1.25rem!important}.\34xl\:-mt-6{margin-top:-1.5rem!important}.\34xl\:-mr-6{margin-right:-1.5rem!important}.\34xl\:-mb-6{margin-bottom:-1.5rem!important}.\34xl\:-ml-6{margin-left:-1.5rem!important}.\34xl\:-mt-7{margin-top:-1.75rem!important}.\34xl\:-mr-7{margin-right:-1.75rem!important}.\34xl\:-mb-7{margin-bottom:-1.75rem!important}.\34xl\:-ml-7{margin-left:-1.75rem!important}.\34xl\:-mt-8{margin-top:-2rem!important}.\34xl\:-mr-8{margin-right:-2rem!important}.\34xl\:-mb-8{margin-bottom:-2rem!important}.\34xl\:-ml-8{margin-left:-2rem!important}.\34xl\:-mt-9{margin-top:-2.25rem!important}.\34xl\:-mr-9{margin-right:-2.25rem!important}.\34xl\:-mb-9{margin-bottom:-2.25rem!important}.\34xl\:-ml-9{margin-left:-2.25rem!important}.\34xl\:-mt-10{margin-top:-2.5rem!important}.\34xl\:-mr-10{margin-right:-2.5rem!important}.\34xl\:-mb-10{margin-bottom:-2.5rem!important}.\34xl\:-ml-10{margin-left:-2.5rem!important}.\34xl\:-mt-11{margin-top:-2.75rem!important}.\34xl\:-mr-11{margin-right:-2.75rem!important}.\34xl\:-mb-11{margin-bottom:-2.75rem!important}.\34xl\:-ml-11{margin-left:-2.75rem!important}.\34xl\:-mt-12{margin-top:-3rem!important}.\34xl\:-mr-12{margin-right:-3rem!important}.\34xl\:-mb-12{margin-bottom:-3rem!important}.\34xl\:-ml-12{margin-left:-3rem!important}.\34xl\:-mt-13{margin-top:-3.25rem!important}.\34xl\:-mr-13{margin-right:-3.25rem!important}.\34xl\:-mb-13{margin-bottom:-3.25rem!important}.\34xl\:-ml-13{margin-left:-3.25rem!important}.\34xl\:-mt-14{margin-top:-3.5rem!important}.\34xl\:-mr-14{margin-right:-3.5rem!important}.\34xl\:-mb-14{margin-bottom:-3.5rem!important}.\34xl\:-ml-14{margin-left:-3.5rem!important}.\34xl\:-mt-15{margin-top:-3.75rem!important}.\34xl\:-mr-15{margin-right:-3.75rem!important}.\34xl\:-mb-15{margin-bottom:-3.75rem!important}.\34xl\:-ml-15{margin-left:-3.75rem!important}.\34xl\:-mt-16{margin-top:-4rem!important}.\34xl\:-mr-16{margin-right:-4rem!important}.\34xl\:-mb-16{margin-bottom:-4rem!important}.\34xl\:-ml-16{margin-left:-4rem!important}.\34xl\:-mt-20{margin-top:-5rem!important}.\34xl\:-mr-20{margin-right:-5rem!important}.\34xl\:-mb-20{margin-bottom:-5rem!important}.\34xl\:-ml-20{margin-left:-5rem!important}.\34xl\:-mt-24{margin-top:-6rem!important}.\34xl\:-mr-24{margin-right:-6rem!important}.\34xl\:-mb-24{margin-bottom:-6rem!important}.\34xl\:-ml-24{margin-left:-6rem!important}.\34xl\:-mt-28{margin-top:-7rem!important}.\34xl\:-mr-28{margin-right:-7rem!important}.\34xl\:-mb-28{margin-bottom:-7rem!important}.\34xl\:-ml-28{margin-left:-7rem!important}.\34xl\:-mt-32{margin-top:-8rem!important}.\34xl\:-mr-32{margin-right:-8rem!important}.\34xl\:-mb-32{margin-bottom:-8rem!important}.\34xl\:-ml-32{margin-left:-8rem!important}.\34xl\:-mt-36{margin-top:-9rem!important}.\34xl\:-mr-36{margin-right:-9rem!important}.\34xl\:-mb-36{margin-bottom:-9rem!important}.\34xl\:-ml-36{margin-left:-9rem!important}.\34xl\:-mt-40{margin-top:-10rem!important}.\34xl\:-mr-40{margin-right:-10rem!important}.\34xl\:-mb-40{margin-bottom:-10rem!important}.\34xl\:-ml-40{margin-left:-10rem!important}.\34xl\:-mt-48{margin-top:-12rem!important}.\34xl\:-mr-48{margin-right:-12rem!important}.\34xl\:-mb-48{margin-bottom:-12rem!important}.\34xl\:-ml-48{margin-left:-12rem!important}.\34xl\:-mt-56{margin-top:-14rem!important}.\34xl\:-mr-56{margin-right:-14rem!important}.\34xl\:-mb-56{margin-bottom:-14rem!important}.\34xl\:-ml-56{margin-left:-14rem!important}.\34xl\:-mt-60{margin-top:-15rem!important}.\34xl\:-mr-60{margin-right:-15rem!important}.\34xl\:-mb-60{margin-bottom:-15rem!important}.\34xl\:-ml-60{margin-left:-15rem!important}.\34xl\:-mt-64{margin-top:-16rem!important}.\34xl\:-mr-64{margin-right:-16rem!important}.\34xl\:-mb-64{margin-bottom:-16rem!important}.\34xl\:-ml-64{margin-left:-16rem!important}.\34xl\:-mt-72{margin-top:-18rem!important}.\34xl\:-mr-72{margin-right:-18rem!important}.\34xl\:-mb-72{margin-bottom:-18rem!important}.\34xl\:-ml-72{margin-left:-18rem!important}.\34xl\:-mt-80{margin-top:-20rem!important}.\34xl\:-mr-80{margin-right:-20rem!important}.\34xl\:-mb-80{margin-bottom:-20rem!important}.\34xl\:-ml-80{margin-left:-20rem!important}.\34xl\:-mt-96{margin-top:-24rem!important}.\34xl\:-mr-96{margin-right:-24rem!important}.\34xl\:-mb-96{margin-bottom:-24rem!important}.\34xl\:-ml-96{margin-left:-24rem!important}.\34xl\:-mt-px{margin-top:-1px!important}.\34xl\:-mr-px{margin-right:-1px!important}.\34xl\:-mb-px{margin-bottom:-1px!important}.\34xl\:-ml-px{margin-left:-1px!important}.\34xl\:-mt-0\.5{margin-top:-.125rem!important}.\34xl\:-mr-0\.5{margin-right:-.125rem!important}.\34xl\:-mb-0\.5{margin-bottom:-.125rem!important}.\34xl\:-ml-0\.5{margin-left:-.125rem!important}.\34xl\:-mt-1\.5{margin-top:-.375rem!important}.\34xl\:-mr-1\.5{margin-right:-.375rem!important}.\34xl\:-mb-1\.5{margin-bottom:-.375rem!important}.\34xl\:-ml-1\.5{margin-left:-.375rem!important}.\34xl\:-mt-2\.5{margin-top:-.625rem!important}.\34xl\:-mr-2\.5{margin-right:-.625rem!important}.\34xl\:-mb-2\.5{margin-bottom:-.625rem!important}.\34xl\:-ml-2\.5{margin-left:-.625rem!important}.\34xl\:-mt-3\.5{margin-top:-.875rem!important}.\34xl\:-mr-3\.5{margin-right:-.875rem!important}.\34xl\:-mb-3\.5{margin-bottom:-.875rem!important}.\34xl\:-ml-3\.5{margin-left:-.875rem!important}.\34xl\:-mt-1\/2{margin-top:-50%!important}.\34xl\:-mr-1\/2{margin-right:-50%!important}.\34xl\:-mb-1\/2{margin-bottom:-50%!important}.\34xl\:-ml-1\/2{margin-left:-50%!important}.\34xl\:-mt-1\/3{margin-top:-33.33333%!important}.\34xl\:-mr-1\/3{margin-right:-33.33333%!important}.\34xl\:-mb-1\/3{margin-bottom:-33.33333%!important}.\34xl\:-ml-1\/3{margin-left:-33.33333%!important}.\34xl\:-mt-2\/3{margin-top:-66.66667%!important}.\34xl\:-mr-2\/3{margin-right:-66.66667%!important}.\34xl\:-mb-2\/3{margin-bottom:-66.66667%!important}.\34xl\:-ml-2\/3{margin-left:-66.66667%!important}.\34xl\:-mt-1\/4{margin-top:-25%!important}.\34xl\:-mr-1\/4{margin-right:-25%!important}.\34xl\:-mb-1\/4{margin-bottom:-25%!important}.\34xl\:-ml-1\/4{margin-left:-25%!important}.\34xl\:-mt-2\/4{margin-top:-50%!important}.\34xl\:-mr-2\/4{margin-right:-50%!important}.\34xl\:-mb-2\/4{margin-bottom:-50%!important}.\34xl\:-ml-2\/4{margin-left:-50%!important}.\34xl\:-mt-3\/4{margin-top:-75%!important}.\34xl\:-mr-3\/4{margin-right:-75%!important}.\34xl\:-mb-3\/4{margin-bottom:-75%!important}.\34xl\:-ml-3\/4{margin-left:-75%!important}.\34xl\:-mt-1\/5{margin-top:-20%!important}.\34xl\:-mr-1\/5{margin-right:-20%!important}.\34xl\:-mb-1\/5{margin-bottom:-20%!important}.\34xl\:-ml-1\/5{margin-left:-20%!important}.\34xl\:-mt-2\/5{margin-top:-40%!important}.\34xl\:-mr-2\/5{margin-right:-40%!important}.\34xl\:-mb-2\/5{margin-bottom:-40%!important}.\34xl\:-ml-2\/5{margin-left:-40%!important}.\34xl\:-mt-3\/5{margin-top:-60%!important}.\34xl\:-mr-3\/5{margin-right:-60%!important}.\34xl\:-mb-3\/5{margin-bottom:-60%!important}.\34xl\:-ml-3\/5{margin-left:-60%!important}.\34xl\:-mt-4\/5{margin-top:-80%!important}.\34xl\:-mr-4\/5{margin-right:-80%!important}.\34xl\:-mb-4\/5{margin-bottom:-80%!important}.\34xl\:-ml-4\/5{margin-left:-80%!important}.\34xl\:-mt-1\/6{margin-top:-16.66667%!important}.\34xl\:-mr-1\/6{margin-right:-16.66667%!important}.\34xl\:-mb-1\/6{margin-bottom:-16.66667%!important}.\34xl\:-ml-1\/6{margin-left:-16.66667%!important}.\34xl\:-mt-2\/6{margin-top:-33.33333%!important}.\34xl\:-mr-2\/6{margin-right:-33.33333%!important}.\34xl\:-mb-2\/6{margin-bottom:-33.33333%!important}.\34xl\:-ml-2\/6{margin-left:-33.33333%!important}.\34xl\:-mt-3\/6{margin-top:-50%!important}.\34xl\:-mr-3\/6{margin-right:-50%!important}.\34xl\:-mb-3\/6{margin-bottom:-50%!important}.\34xl\:-ml-3\/6{margin-left:-50%!important}.\34xl\:-mt-4\/6{margin-top:-66.66667%!important}.\34xl\:-mr-4\/6{margin-right:-66.66667%!important}.\34xl\:-mb-4\/6{margin-bottom:-66.66667%!important}.\34xl\:-ml-4\/6{margin-left:-66.66667%!important}.\34xl\:-mt-5\/6{margin-top:-83.33333%!important}.\34xl\:-mr-5\/6{margin-right:-83.33333%!important}.\34xl\:-mb-5\/6{margin-bottom:-83.33333%!important}.\34xl\:-ml-5\/6{margin-left:-83.33333%!important}.\34xl\:-mt-1\/12{margin-top:-8.33333%!important}.\34xl\:-mr-1\/12{margin-right:-8.33333%!important}.\34xl\:-mb-1\/12{margin-bottom:-8.33333%!important}.\34xl\:-ml-1\/12{margin-left:-8.33333%!important}.\34xl\:-mt-2\/12{margin-top:-16.66667%!important}.\34xl\:-mr-2\/12{margin-right:-16.66667%!important}.\34xl\:-mb-2\/12{margin-bottom:-16.66667%!important}.\34xl\:-ml-2\/12{margin-left:-16.66667%!important}.\34xl\:-mt-3\/12{margin-top:-25%!important}.\34xl\:-mr-3\/12{margin-right:-25%!important}.\34xl\:-mb-3\/12{margin-bottom:-25%!important}.\34xl\:-ml-3\/12{margin-left:-25%!important}.\34xl\:-mt-4\/12{margin-top:-33.33333%!important}.\34xl\:-mr-4\/12{margin-right:-33.33333%!important}.\34xl\:-mb-4\/12{margin-bottom:-33.33333%!important}.\34xl\:-ml-4\/12{margin-left:-33.33333%!important}.\34xl\:-mt-5\/12{margin-top:-41.66667%!important}.\34xl\:-mr-5\/12{margin-right:-41.66667%!important}.\34xl\:-mb-5\/12{margin-bottom:-41.66667%!important}.\34xl\:-ml-5\/12{margin-left:-41.66667%!important}.\34xl\:-mt-6\/12{margin-top:-50%!important}.\34xl\:-mr-6\/12{margin-right:-50%!important}.\34xl\:-mb-6\/12{margin-bottom:-50%!important}.\34xl\:-ml-6\/12{margin-left:-50%!important}.\34xl\:-mt-7\/12{margin-top:-58.33333%!important}.\34xl\:-mr-7\/12{margin-right:-58.33333%!important}.\34xl\:-mb-7\/12{margin-bottom:-58.33333%!important}.\34xl\:-ml-7\/12{margin-left:-58.33333%!important}.\34xl\:-mt-8\/12{margin-top:-66.66667%!important}.\34xl\:-mr-8\/12{margin-right:-66.66667%!important}.\34xl\:-mb-8\/12{margin-bottom:-66.66667%!important}.\34xl\:-ml-8\/12{margin-left:-66.66667%!important}.\34xl\:-mt-9\/12{margin-top:-75%!important}.\34xl\:-mr-9\/12{margin-right:-75%!important}.\34xl\:-mb-9\/12{margin-bottom:-75%!important}.\34xl\:-ml-9\/12{margin-left:-75%!important}.\34xl\:-mt-10\/12{margin-top:-83.33333%!important}.\34xl\:-mr-10\/12{margin-right:-83.33333%!important}.\34xl\:-mb-10\/12{margin-bottom:-83.33333%!important}.\34xl\:-ml-10\/12{margin-left:-83.33333%!important}.\34xl\:-mt-11\/12{margin-top:-91.66667%!important}.\34xl\:-mr-11\/12{margin-right:-91.66667%!important}.\34xl\:-mb-11\/12{margin-bottom:-91.66667%!important}.\34xl\:-ml-11\/12{margin-left:-91.66667%!important}.\34xl\:-mt-full{margin-top:-100%!important}.\34xl\:-mr-full{margin-right:-100%!important}.\34xl\:-mb-full{margin-bottom:-100%!important}.\34xl\:-ml-full{margin-left:-100%!important}[dir=ltr] .\34xl\:ltr\:m-0{margin:0!important}[dir=ltr] .\34xl\:ltr\:m-1{margin:.25rem!important}[dir=ltr] .\34xl\:ltr\:m-2{margin:.5rem!important}[dir=ltr] .\34xl\:ltr\:m-3{margin:.75rem!important}[dir=ltr] .\34xl\:ltr\:m-4{margin:1rem!important}[dir=ltr] .\34xl\:ltr\:m-5{margin:1.25rem!important}[dir=ltr] .\34xl\:ltr\:m-6{margin:1.5rem!important}[dir=ltr] .\34xl\:ltr\:m-7{margin:1.75rem!important}[dir=ltr] .\34xl\:ltr\:m-8{margin:2rem!important}[dir=ltr] .\34xl\:ltr\:m-9{margin:2.25rem!important}[dir=ltr] .\34xl\:ltr\:m-10{margin:2.5rem!important}[dir=ltr] .\34xl\:ltr\:m-11{margin:2.75rem!important}[dir=ltr] .\34xl\:ltr\:m-12{margin:3rem!important}[dir=ltr] .\34xl\:ltr\:m-13{margin:3.25rem!important}[dir=ltr] .\34xl\:ltr\:m-14{margin:3.5rem!important}[dir=ltr] .\34xl\:ltr\:m-15{margin:3.75rem!important}[dir=ltr] .\34xl\:ltr\:m-16{margin:4rem!important}[dir=ltr] .\34xl\:ltr\:m-20{margin:5rem!important}[dir=ltr] .\34xl\:ltr\:m-24{margin:6rem!important}[dir=ltr] .\34xl\:ltr\:m-28{margin:7rem!important}[dir=ltr] .\34xl\:ltr\:m-32{margin:8rem!important}[dir=ltr] .\34xl\:ltr\:m-36{margin:9rem!important}[dir=ltr] .\34xl\:ltr\:m-40{margin:10rem!important}[dir=ltr] .\34xl\:ltr\:m-48{margin:12rem!important}[dir=ltr] .\34xl\:ltr\:m-56{margin:14rem!important}[dir=ltr] .\34xl\:ltr\:m-60{margin:15rem!important}[dir=ltr] .\34xl\:ltr\:m-64{margin:16rem!important}[dir=ltr] .\34xl\:ltr\:m-72{margin:18rem!important}[dir=ltr] .\34xl\:ltr\:m-80{margin:20rem!important}[dir=ltr] .\34xl\:ltr\:m-96{margin:24rem!important}[dir=ltr] .\34xl\:ltr\:m-auto{margin:auto!important}[dir=ltr] .\34xl\:ltr\:m-px{margin:1px!important}[dir=ltr] .\34xl\:ltr\:m-0\.5{margin:.125rem!important}[dir=ltr] .\34xl\:ltr\:m-1\.5{margin:.375rem!important}[dir=ltr] .\34xl\:ltr\:m-2\.5{margin:.625rem!important}[dir=ltr] .\34xl\:ltr\:m-3\.5{margin:.875rem!important}[dir=ltr] .\34xl\:ltr\:m-1\/2{margin:50%!important}[dir=ltr] .\34xl\:ltr\:m-1\/3{margin:33.333333%!important}[dir=ltr] .\34xl\:ltr\:m-2\/3{margin:66.666667%!important}[dir=ltr] .\34xl\:ltr\:m-1\/4{margin:25%!important}[dir=ltr] .\34xl\:ltr\:m-2\/4{margin:50%!important}[dir=ltr] .\34xl\:ltr\:m-3\/4{margin:75%!important}[dir=ltr] .\34xl\:ltr\:m-1\/5{margin:20%!important}[dir=ltr] .\34xl\:ltr\:m-2\/5{margin:40%!important}[dir=ltr] .\34xl\:ltr\:m-3\/5{margin:60%!important}[dir=ltr] .\34xl\:ltr\:m-4\/5{margin:80%!important}[dir=ltr] .\34xl\:ltr\:m-1\/6{margin:16.666667%!important}[dir=ltr] .\34xl\:ltr\:m-2\/6{margin:33.333333%!important}[dir=ltr] .\34xl\:ltr\:m-3\/6{margin:50%!important}[dir=ltr] .\34xl\:ltr\:m-4\/6{margin:66.666667%!important}[dir=ltr] .\34xl\:ltr\:m-5\/6{margin:83.333333%!important}[dir=ltr] .\34xl\:ltr\:m-1\/12{margin:8.333333%!important}[dir=ltr] .\34xl\:ltr\:m-2\/12{margin:16.666667%!important}[dir=ltr] .\34xl\:ltr\:m-3\/12{margin:25%!important}[dir=ltr] .\34xl\:ltr\:m-4\/12{margin:33.333333%!important}[dir=ltr] .\34xl\:ltr\:m-5\/12{margin:41.666667%!important}[dir=ltr] .\34xl\:ltr\:m-6\/12{margin:50%!important}[dir=ltr] .\34xl\:ltr\:m-7\/12{margin:58.333333%!important}[dir=ltr] .\34xl\:ltr\:m-8\/12{margin:66.666667%!important}[dir=ltr] .\34xl\:ltr\:m-9\/12{margin:75%!important}[dir=ltr] .\34xl\:ltr\:m-10\/12{margin:83.333333%!important}[dir=ltr] .\34xl\:ltr\:m-11\/12{margin:91.666667%!important}[dir=ltr] .\34xl\:ltr\:m-full{margin:100%!important}[dir=ltr] .\34xl\:ltr\:-m-1{margin:-.25rem!important}[dir=ltr] .\34xl\:ltr\:-m-2{margin:-.5rem!important}[dir=ltr] .\34xl\:ltr\:-m-3{margin:-.75rem!important}[dir=ltr] .\34xl\:ltr\:-m-4{margin:-1rem!important}[dir=ltr] .\34xl\:ltr\:-m-5{margin:-1.25rem!important}[dir=ltr] .\34xl\:ltr\:-m-6{margin:-1.5rem!important}[dir=ltr] .\34xl\:ltr\:-m-7{margin:-1.75rem!important}[dir=ltr] .\34xl\:ltr\:-m-8{margin:-2rem!important}[dir=ltr] .\34xl\:ltr\:-m-9{margin:-2.25rem!important}[dir=ltr] .\34xl\:ltr\:-m-10{margin:-2.5rem!important}[dir=ltr] .\34xl\:ltr\:-m-11{margin:-2.75rem!important}[dir=ltr] .\34xl\:ltr\:-m-12{margin:-3rem!important}[dir=ltr] .\34xl\:ltr\:-m-13{margin:-3.25rem!important}[dir=ltr] .\34xl\:ltr\:-m-14{margin:-3.5rem!important}[dir=ltr] .\34xl\:ltr\:-m-15{margin:-3.75rem!important}[dir=ltr] .\34xl\:ltr\:-m-16{margin:-4rem!important}[dir=ltr] .\34xl\:ltr\:-m-20{margin:-5rem!important}[dir=ltr] .\34xl\:ltr\:-m-24{margin:-6rem!important}[dir=ltr] .\34xl\:ltr\:-m-28{margin:-7rem!important}[dir=ltr] .\34xl\:ltr\:-m-32{margin:-8rem!important}[dir=ltr] .\34xl\:ltr\:-m-36{margin:-9rem!important}[dir=ltr] .\34xl\:ltr\:-m-40{margin:-10rem!important}[dir=ltr] .\34xl\:ltr\:-m-48{margin:-12rem!important}[dir=ltr] .\34xl\:ltr\:-m-56{margin:-14rem!important}[dir=ltr] .\34xl\:ltr\:-m-60{margin:-15rem!important}[dir=ltr] .\34xl\:ltr\:-m-64{margin:-16rem!important}[dir=ltr] .\34xl\:ltr\:-m-72{margin:-18rem!important}[dir=ltr] .\34xl\:ltr\:-m-80{margin:-20rem!important}[dir=ltr] .\34xl\:ltr\:-m-96{margin:-24rem!important}[dir=ltr] .\34xl\:ltr\:-m-px{margin:-1px!important}[dir=ltr] .\34xl\:ltr\:-m-0\.5{margin:-.125rem!important}[dir=ltr] .\34xl\:ltr\:-m-1\.5{margin:-.375rem!important}[dir=ltr] .\34xl\:ltr\:-m-2\.5{margin:-.625rem!important}[dir=ltr] .\34xl\:ltr\:-m-3\.5{margin:-.875rem!important}[dir=ltr] .\34xl\:ltr\:-m-1\/2{margin:-50%!important}[dir=ltr] .\34xl\:ltr\:-m-1\/3{margin:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-m-2\/3{margin:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-m-1\/4{margin:-25%!important}[dir=ltr] .\34xl\:ltr\:-m-2\/4{margin:-50%!important}[dir=ltr] .\34xl\:ltr\:-m-3\/4{margin:-75%!important}[dir=ltr] .\34xl\:ltr\:-m-1\/5{margin:-20%!important}[dir=ltr] .\34xl\:ltr\:-m-2\/5{margin:-40%!important}[dir=ltr] .\34xl\:ltr\:-m-3\/5{margin:-60%!important}[dir=ltr] .\34xl\:ltr\:-m-4\/5{margin:-80%!important}[dir=ltr] .\34xl\:ltr\:-m-1\/6{margin:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-m-2\/6{margin:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-m-3\/6{margin:-50%!important}[dir=ltr] .\34xl\:ltr\:-m-4\/6{margin:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-m-5\/6{margin:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-m-1\/12{margin:-8.33333%!important}[dir=ltr] .\34xl\:ltr\:-m-2\/12{margin:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-m-3\/12{margin:-25%!important}[dir=ltr] .\34xl\:ltr\:-m-4\/12{margin:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-m-5\/12{margin:-41.66667%!important}[dir=ltr] .\34xl\:ltr\:-m-6\/12{margin:-50%!important}[dir=ltr] .\34xl\:ltr\:-m-7\/12{margin:-58.33333%!important}[dir=ltr] .\34xl\:ltr\:-m-8\/12{margin:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-m-9\/12{margin:-75%!important}[dir=ltr] .\34xl\:ltr\:-m-10\/12{margin:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-m-11\/12{margin:-91.66667%!important}[dir=ltr] .\34xl\:ltr\:-m-full{margin:-100%!important}[dir=ltr] .\34xl\:ltr\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=ltr] .\34xl\:ltr\:mx-0{margin-left:0!important;margin-right:0!important}[dir=ltr] .\34xl\:ltr\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=ltr] .\34xl\:ltr\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=ltr] .\34xl\:ltr\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=ltr] .\34xl\:ltr\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=ltr] .\34xl\:ltr\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=ltr] .\34xl\:ltr\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=ltr] .\34xl\:ltr\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=ltr] .\34xl\:ltr\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=ltr] .\34xl\:ltr\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=ltr] .\34xl\:ltr\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=ltr] .\34xl\:ltr\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=ltr] .\34xl\:ltr\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=ltr] .\34xl\:ltr\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=ltr] .\34xl\:ltr\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=ltr] .\34xl\:ltr\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=ltr] .\34xl\:ltr\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=ltr] .\34xl\:ltr\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=ltr] .\34xl\:ltr\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=ltr] .\34xl\:ltr\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=ltr] .\34xl\:ltr\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=ltr] .\34xl\:ltr\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=ltr] .\34xl\:ltr\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=ltr] .\34xl\:ltr\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=ltr] .\34xl\:ltr\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=ltr] .\34xl\:ltr\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=ltr] .\34xl\:ltr\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=ltr] .\34xl\:ltr\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=ltr] .\34xl\:ltr\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=ltr] .\34xl\:ltr\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=ltr] .\34xl\:ltr\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=ltr] .\34xl\:ltr\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=ltr] .\34xl\:ltr\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=ltr] .\34xl\:ltr\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=ltr] .\34xl\:ltr\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=ltr] .\34xl\:ltr\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=ltr] .\34xl\:ltr\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=ltr] .\34xl\:ltr\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=ltr] .\34xl\:ltr\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=ltr] .\34xl\:ltr\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=ltr] .\34xl\:ltr\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=ltr] .\34xl\:ltr\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=ltr] .\34xl\:ltr\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=ltr] .\34xl\:ltr\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=ltr] .\34xl\:ltr\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=ltr] .\34xl\:ltr\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=ltr] .\34xl\:ltr\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=ltr] .\34xl\:ltr\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=ltr] .\34xl\:ltr\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=ltr] .\34xl\:ltr\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=ltr] .\34xl\:ltr\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=ltr] .\34xl\:ltr\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=ltr] .\34xl\:ltr\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=ltr] .\34xl\:ltr\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=ltr] .\34xl\:ltr\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=ltr] .\34xl\:ltr\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=ltr] .\34xl\:ltr\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=ltr] .\34xl\:ltr\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=ltr] .\34xl\:ltr\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=ltr] .\34xl\:ltr\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=ltr] .\34xl\:ltr\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=ltr] .\34xl\:ltr\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=ltr] .\34xl\:ltr\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=ltr] .\34xl\:ltr\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=ltr] .\34xl\:ltr\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=ltr] .\34xl\:ltr\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=ltr] .\34xl\:ltr\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=ltr] .\34xl\:ltr\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=ltr] .\34xl\:ltr\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=ltr] .\34xl\:ltr\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=ltr] .\34xl\:ltr\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=ltr] .\34xl\:ltr\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .\34xl\:ltr\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .\34xl\:ltr\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .\34xl\:ltr\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .\34xl\:ltr\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=ltr] .\34xl\:ltr\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=ltr] .\34xl\:ltr\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=ltr] .\34xl\:ltr\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=ltr] .\34xl\:ltr\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=ltr] .\34xl\:ltr\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=ltr] .\34xl\:ltr\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=ltr] .\34xl\:ltr\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=ltr] .\34xl\:ltr\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=ltr] .\34xl\:ltr\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=ltr] .\34xl\:ltr\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=ltr] .\34xl\:ltr\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=ltr] .\34xl\:ltr\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=ltr] .\34xl\:ltr\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=ltr] .\34xl\:ltr\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=ltr] .\34xl\:ltr\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=ltr] .\34xl\:ltr\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=ltr] .\34xl\:ltr\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=ltr] .\34xl\:ltr\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=ltr] .\34xl\:ltr\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=ltr] .\34xl\:ltr\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=ltr] .\34xl\:ltr\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=ltr] .\34xl\:ltr\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=ltr] .\34xl\:ltr\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=ltr] .\34xl\:ltr\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=ltr] .\34xl\:ltr\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=ltr] .\34xl\:ltr\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=ltr] .\34xl\:ltr\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=ltr] .\34xl\:ltr\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=ltr] .\34xl\:ltr\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=ltr] .\34xl\:ltr\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=ltr] .\34xl\:ltr\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=ltr] .\34xl\:ltr\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=ltr] .\34xl\:ltr\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=ltr] .\34xl\:ltr\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=ltr] .\34xl\:ltr\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=ltr] .\34xl\:ltr\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=ltr] .\34xl\:ltr\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=ltr] .\34xl\:ltr\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=ltr] .\34xl\:ltr\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=ltr] .\34xl\:ltr\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=ltr] .\34xl\:ltr\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=ltr] .\34xl\:ltr\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=ltr] .\34xl\:ltr\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=ltr] .\34xl\:ltr\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=ltr] .\34xl\:ltr\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=ltr] .\34xl\:ltr\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=ltr] .\34xl\:ltr\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=ltr] .\34xl\:ltr\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=ltr] .\34xl\:ltr\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=ltr] .\34xl\:ltr\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=ltr] .\34xl\:ltr\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=ltr] .\34xl\:ltr\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=ltr] .\34xl\:ltr\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=ltr] .\34xl\:ltr\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=ltr] .\34xl\:ltr\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=ltr] .\34xl\:ltr\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=ltr] .\34xl\:ltr\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=ltr] .\34xl\:ltr\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=ltr] .\34xl\:ltr\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=ltr] .\34xl\:ltr\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=ltr] .\34xl\:ltr\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=ltr] .\34xl\:ltr\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=ltr] .\34xl\:ltr\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=ltr] .\34xl\:ltr\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=ltr] .\34xl\:ltr\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=ltr] .\34xl\:ltr\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=ltr] .\34xl\:ltr\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=ltr] .\34xl\:ltr\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=ltr] .\34xl\:ltr\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=ltr] .\34xl\:ltr\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=ltr] .\34xl\:ltr\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=ltr] .\34xl\:ltr\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=ltr] .\34xl\:ltr\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=ltr] .\34xl\:ltr\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=ltr] .\34xl\:ltr\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=ltr] .\34xl\:ltr\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=ltr] .\34xl\:ltr\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=ltr] .\34xl\:ltr\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=ltr] .\34xl\:ltr\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=ltr] .\34xl\:ltr\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=ltr] .\34xl\:ltr\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=ltr] .\34xl\:ltr\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=ltr] .\34xl\:ltr\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=ltr] .\34xl\:ltr\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=ltr] .\34xl\:ltr\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=ltr] .\34xl\:ltr\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=ltr] .\34xl\:ltr\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=ltr] .\34xl\:ltr\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=ltr] .\34xl\:ltr\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=ltr] .\34xl\:ltr\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .\34xl\:ltr\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .\34xl\:ltr\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .\34xl\:ltr\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .\34xl\:ltr\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=ltr] .\34xl\:ltr\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=ltr] .\34xl\:ltr\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=ltr] .\34xl\:ltr\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=ltr] .\34xl\:ltr\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=ltr] .\34xl\:ltr\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=ltr] .\34xl\:ltr\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=ltr] .\34xl\:ltr\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=ltr] .\34xl\:ltr\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=ltr] .\34xl\:ltr\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=ltr] .\34xl\:ltr\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=ltr] .\34xl\:ltr\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=ltr] .\34xl\:ltr\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=ltr] .\34xl\:ltr\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=ltr] .\34xl\:ltr\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=ltr] .\34xl\:ltr\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=ltr] .\34xl\:ltr\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=ltr] .\34xl\:ltr\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=ltr] .\34xl\:ltr\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=ltr] .\34xl\:ltr\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=ltr] .\34xl\:ltr\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=ltr] .\34xl\:ltr\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=ltr] .\34xl\:ltr\:mt-0{margin-top:0!important}[dir=ltr] .\34xl\:ltr\:mr-0{margin-right:0!important}[dir=ltr] .\34xl\:ltr\:mb-0{margin-bottom:0!important}[dir=ltr] .\34xl\:ltr\:ml-0{margin-left:0!important}[dir=ltr] .\34xl\:ltr\:mt-1{margin-top:.25rem!important}[dir=ltr] .\34xl\:ltr\:mr-1{margin-right:.25rem!important}[dir=ltr] .\34xl\:ltr\:mb-1{margin-bottom:.25rem!important}[dir=ltr] .\34xl\:ltr\:ml-1{margin-left:.25rem!important}[dir=ltr] .\34xl\:ltr\:mt-2{margin-top:.5rem!important}[dir=ltr] .\34xl\:ltr\:mr-2{margin-right:.5rem!important}[dir=ltr] .\34xl\:ltr\:mb-2{margin-bottom:.5rem!important}[dir=ltr] .\34xl\:ltr\:ml-2{margin-left:.5rem!important}[dir=ltr] .\34xl\:ltr\:mt-3{margin-top:.75rem!important}[dir=ltr] .\34xl\:ltr\:mr-3{margin-right:.75rem!important}[dir=ltr] .\34xl\:ltr\:mb-3{margin-bottom:.75rem!important}[dir=ltr] .\34xl\:ltr\:ml-3{margin-left:.75rem!important}[dir=ltr] .\34xl\:ltr\:mt-4{margin-top:1rem!important}[dir=ltr] .\34xl\:ltr\:mr-4{margin-right:1rem!important}[dir=ltr] .\34xl\:ltr\:mb-4{margin-bottom:1rem!important}[dir=ltr] .\34xl\:ltr\:ml-4{margin-left:1rem!important}[dir=ltr] .\34xl\:ltr\:mt-5{margin-top:1.25rem!important}[dir=ltr] .\34xl\:ltr\:mr-5{margin-right:1.25rem!important}[dir=ltr] .\34xl\:ltr\:mb-5{margin-bottom:1.25rem!important}[dir=ltr] .\34xl\:ltr\:ml-5{margin-left:1.25rem!important}[dir=ltr] .\34xl\:ltr\:mt-6{margin-top:1.5rem!important}[dir=ltr] .\34xl\:ltr\:mr-6{margin-right:1.5rem!important}[dir=ltr] .\34xl\:ltr\:mb-6{margin-bottom:1.5rem!important}[dir=ltr] .\34xl\:ltr\:ml-6{margin-left:1.5rem!important}[dir=ltr] .\34xl\:ltr\:mt-7{margin-top:1.75rem!important}[dir=ltr] .\34xl\:ltr\:mr-7{margin-right:1.75rem!important}[dir=ltr] .\34xl\:ltr\:mb-7{margin-bottom:1.75rem!important}[dir=ltr] .\34xl\:ltr\:ml-7{margin-left:1.75rem!important}[dir=ltr] .\34xl\:ltr\:mt-8{margin-top:2rem!important}[dir=ltr] .\34xl\:ltr\:mr-8{margin-right:2rem!important}[dir=ltr] .\34xl\:ltr\:mb-8{margin-bottom:2rem!important}[dir=ltr] .\34xl\:ltr\:ml-8{margin-left:2rem!important}[dir=ltr] .\34xl\:ltr\:mt-9{margin-top:2.25rem!important}[dir=ltr] .\34xl\:ltr\:mr-9{margin-right:2.25rem!important}[dir=ltr] .\34xl\:ltr\:mb-9{margin-bottom:2.25rem!important}[dir=ltr] .\34xl\:ltr\:ml-9{margin-left:2.25rem!important}[dir=ltr] .\34xl\:ltr\:mt-10{margin-top:2.5rem!important}[dir=ltr] .\34xl\:ltr\:mr-10{margin-right:2.5rem!important}[dir=ltr] .\34xl\:ltr\:mb-10{margin-bottom:2.5rem!important}[dir=ltr] .\34xl\:ltr\:ml-10{margin-left:2.5rem!important}[dir=ltr] .\34xl\:ltr\:mt-11{margin-top:2.75rem!important}[dir=ltr] .\34xl\:ltr\:mr-11{margin-right:2.75rem!important}[dir=ltr] .\34xl\:ltr\:mb-11{margin-bottom:2.75rem!important}[dir=ltr] .\34xl\:ltr\:ml-11{margin-left:2.75rem!important}[dir=ltr] .\34xl\:ltr\:mt-12{margin-top:3rem!important}[dir=ltr] .\34xl\:ltr\:mr-12{margin-right:3rem!important}[dir=ltr] .\34xl\:ltr\:mb-12{margin-bottom:3rem!important}[dir=ltr] .\34xl\:ltr\:ml-12{margin-left:3rem!important}[dir=ltr] .\34xl\:ltr\:mt-13{margin-top:3.25rem!important}[dir=ltr] .\34xl\:ltr\:mr-13{margin-right:3.25rem!important}[dir=ltr] .\34xl\:ltr\:mb-13{margin-bottom:3.25rem!important}[dir=ltr] .\34xl\:ltr\:ml-13{margin-left:3.25rem!important}[dir=ltr] .\34xl\:ltr\:mt-14{margin-top:3.5rem!important}[dir=ltr] .\34xl\:ltr\:mr-14{margin-right:3.5rem!important}[dir=ltr] .\34xl\:ltr\:mb-14{margin-bottom:3.5rem!important}[dir=ltr] .\34xl\:ltr\:ml-14{margin-left:3.5rem!important}[dir=ltr] .\34xl\:ltr\:mt-15{margin-top:3.75rem!important}[dir=ltr] .\34xl\:ltr\:mr-15{margin-right:3.75rem!important}[dir=ltr] .\34xl\:ltr\:mb-15{margin-bottom:3.75rem!important}[dir=ltr] .\34xl\:ltr\:ml-15{margin-left:3.75rem!important}[dir=ltr] .\34xl\:ltr\:mt-16{margin-top:4rem!important}[dir=ltr] .\34xl\:ltr\:mr-16{margin-right:4rem!important}[dir=ltr] .\34xl\:ltr\:mb-16{margin-bottom:4rem!important}[dir=ltr] .\34xl\:ltr\:ml-16{margin-left:4rem!important}[dir=ltr] .\34xl\:ltr\:mt-20{margin-top:5rem!important}[dir=ltr] .\34xl\:ltr\:mr-20{margin-right:5rem!important}[dir=ltr] .\34xl\:ltr\:mb-20{margin-bottom:5rem!important}[dir=ltr] .\34xl\:ltr\:ml-20{margin-left:5rem!important}[dir=ltr] .\34xl\:ltr\:mt-24{margin-top:6rem!important}[dir=ltr] .\34xl\:ltr\:mr-24{margin-right:6rem!important}[dir=ltr] .\34xl\:ltr\:mb-24{margin-bottom:6rem!important}[dir=ltr] .\34xl\:ltr\:ml-24{margin-left:6rem!important}[dir=ltr] .\34xl\:ltr\:mt-28{margin-top:7rem!important}[dir=ltr] .\34xl\:ltr\:mr-28{margin-right:7rem!important}[dir=ltr] .\34xl\:ltr\:mb-28{margin-bottom:7rem!important}[dir=ltr] .\34xl\:ltr\:ml-28{margin-left:7rem!important}[dir=ltr] .\34xl\:ltr\:mt-32{margin-top:8rem!important}[dir=ltr] .\34xl\:ltr\:mr-32{margin-right:8rem!important}[dir=ltr] .\34xl\:ltr\:mb-32{margin-bottom:8rem!important}[dir=ltr] .\34xl\:ltr\:ml-32{margin-left:8rem!important}[dir=ltr] .\34xl\:ltr\:mt-36{margin-top:9rem!important}[dir=ltr] .\34xl\:ltr\:mr-36{margin-right:9rem!important}[dir=ltr] .\34xl\:ltr\:mb-36{margin-bottom:9rem!important}[dir=ltr] .\34xl\:ltr\:ml-36{margin-left:9rem!important}[dir=ltr] .\34xl\:ltr\:mt-40{margin-top:10rem!important}[dir=ltr] .\34xl\:ltr\:mr-40{margin-right:10rem!important}[dir=ltr] .\34xl\:ltr\:mb-40{margin-bottom:10rem!important}[dir=ltr] .\34xl\:ltr\:ml-40{margin-left:10rem!important}[dir=ltr] .\34xl\:ltr\:mt-48{margin-top:12rem!important}[dir=ltr] .\34xl\:ltr\:mr-48{margin-right:12rem!important}[dir=ltr] .\34xl\:ltr\:mb-48{margin-bottom:12rem!important}[dir=ltr] .\34xl\:ltr\:ml-48{margin-left:12rem!important}[dir=ltr] .\34xl\:ltr\:mt-56{margin-top:14rem!important}[dir=ltr] .\34xl\:ltr\:mr-56{margin-right:14rem!important}[dir=ltr] .\34xl\:ltr\:mb-56{margin-bottom:14rem!important}[dir=ltr] .\34xl\:ltr\:ml-56{margin-left:14rem!important}[dir=ltr] .\34xl\:ltr\:mt-60{margin-top:15rem!important}[dir=ltr] .\34xl\:ltr\:mr-60{margin-right:15rem!important}[dir=ltr] .\34xl\:ltr\:mb-60{margin-bottom:15rem!important}[dir=ltr] .\34xl\:ltr\:ml-60{margin-left:15rem!important}[dir=ltr] .\34xl\:ltr\:mt-64{margin-top:16rem!important}[dir=ltr] .\34xl\:ltr\:mr-64{margin-right:16rem!important}[dir=ltr] .\34xl\:ltr\:mb-64{margin-bottom:16rem!important}[dir=ltr] .\34xl\:ltr\:ml-64{margin-left:16rem!important}[dir=ltr] .\34xl\:ltr\:mt-72{margin-top:18rem!important}[dir=ltr] .\34xl\:ltr\:mr-72{margin-right:18rem!important}[dir=ltr] .\34xl\:ltr\:mb-72{margin-bottom:18rem!important}[dir=ltr] .\34xl\:ltr\:ml-72{margin-left:18rem!important}[dir=ltr] .\34xl\:ltr\:mt-80{margin-top:20rem!important}[dir=ltr] .\34xl\:ltr\:mr-80{margin-right:20rem!important}[dir=ltr] .\34xl\:ltr\:mb-80{margin-bottom:20rem!important}[dir=ltr] .\34xl\:ltr\:ml-80{margin-left:20rem!important}[dir=ltr] .\34xl\:ltr\:mt-96{margin-top:24rem!important}[dir=ltr] .\34xl\:ltr\:mr-96{margin-right:24rem!important}[dir=ltr] .\34xl\:ltr\:mb-96{margin-bottom:24rem!important}[dir=ltr] .\34xl\:ltr\:ml-96{margin-left:24rem!important}[dir=ltr] .\34xl\:ltr\:mt-auto{margin-top:auto!important}[dir=ltr] .\34xl\:ltr\:mr-auto{margin-right:auto!important}[dir=ltr] .\34xl\:ltr\:mb-auto{margin-bottom:auto!important}[dir=ltr] .\34xl\:ltr\:ml-auto{margin-left:auto!important}[dir=ltr] .\34xl\:ltr\:mt-px{margin-top:1px!important}[dir=ltr] .\34xl\:ltr\:mr-px{margin-right:1px!important}[dir=ltr] .\34xl\:ltr\:mb-px{margin-bottom:1px!important}[dir=ltr] .\34xl\:ltr\:ml-px{margin-left:1px!important}[dir=ltr] .\34xl\:ltr\:mt-0\.5{margin-top:.125rem!important}[dir=ltr] .\34xl\:ltr\:mr-0\.5{margin-right:.125rem!important}[dir=ltr] .\34xl\:ltr\:mb-0\.5{margin-bottom:.125rem!important}[dir=ltr] .\34xl\:ltr\:ml-0\.5{margin-left:.125rem!important}[dir=ltr] .\34xl\:ltr\:mt-1\.5{margin-top:.375rem!important}[dir=ltr] .\34xl\:ltr\:mr-1\.5{margin-right:.375rem!important}[dir=ltr] .\34xl\:ltr\:mb-1\.5{margin-bottom:.375rem!important}[dir=ltr] .\34xl\:ltr\:ml-1\.5{margin-left:.375rem!important}[dir=ltr] .\34xl\:ltr\:mt-2\.5{margin-top:.625rem!important}[dir=ltr] .\34xl\:ltr\:mr-2\.5{margin-right:.625rem!important}[dir=ltr] .\34xl\:ltr\:mb-2\.5{margin-bottom:.625rem!important}[dir=ltr] .\34xl\:ltr\:ml-2\.5{margin-left:.625rem!important}[dir=ltr] .\34xl\:ltr\:mt-3\.5{margin-top:.875rem!important}[dir=ltr] .\34xl\:ltr\:mr-3\.5{margin-right:.875rem!important}[dir=ltr] .\34xl\:ltr\:mb-3\.5{margin-bottom:.875rem!important}[dir=ltr] .\34xl\:ltr\:ml-3\.5{margin-left:.875rem!important}[dir=ltr] .\34xl\:ltr\:mt-1\/2{margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mr-1\/2{margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:mb-1\/2{margin-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:ml-1\/2{margin-left:50%!important}[dir=ltr] .\34xl\:ltr\:mt-1\/3{margin-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mr-1\/3{margin-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mb-1\/3{margin-bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:ml-1\/3{margin-left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mt-2\/3{margin-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mr-2\/3{margin-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mb-2\/3{margin-bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:ml-2\/3{margin-left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mt-1\/4{margin-top:25%!important}[dir=ltr] .\34xl\:ltr\:mr-1\/4{margin-right:25%!important}[dir=ltr] .\34xl\:ltr\:mb-1\/4{margin-bottom:25%!important}[dir=ltr] .\34xl\:ltr\:ml-1\/4{margin-left:25%!important}[dir=ltr] .\34xl\:ltr\:mt-2\/4{margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mr-2\/4{margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:mb-2\/4{margin-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:ml-2\/4{margin-left:50%!important}[dir=ltr] .\34xl\:ltr\:mt-3\/4{margin-top:75%!important}[dir=ltr] .\34xl\:ltr\:mr-3\/4{margin-right:75%!important}[dir=ltr] .\34xl\:ltr\:mb-3\/4{margin-bottom:75%!important}[dir=ltr] .\34xl\:ltr\:ml-3\/4{margin-left:75%!important}[dir=ltr] .\34xl\:ltr\:mt-1\/5{margin-top:20%!important}[dir=ltr] .\34xl\:ltr\:mr-1\/5{margin-right:20%!important}[dir=ltr] .\34xl\:ltr\:mb-1\/5{margin-bottom:20%!important}[dir=ltr] .\34xl\:ltr\:ml-1\/5{margin-left:20%!important}[dir=ltr] .\34xl\:ltr\:mt-2\/5{margin-top:40%!important}[dir=ltr] .\34xl\:ltr\:mr-2\/5{margin-right:40%!important}[dir=ltr] .\34xl\:ltr\:mb-2\/5{margin-bottom:40%!important}[dir=ltr] .\34xl\:ltr\:ml-2\/5{margin-left:40%!important}[dir=ltr] .\34xl\:ltr\:mt-3\/5{margin-top:60%!important}[dir=ltr] .\34xl\:ltr\:mr-3\/5{margin-right:60%!important}[dir=ltr] .\34xl\:ltr\:mb-3\/5{margin-bottom:60%!important}[dir=ltr] .\34xl\:ltr\:ml-3\/5{margin-left:60%!important}[dir=ltr] .\34xl\:ltr\:mt-4\/5{margin-top:80%!important}[dir=ltr] .\34xl\:ltr\:mr-4\/5{margin-right:80%!important}[dir=ltr] .\34xl\:ltr\:mb-4\/5{margin-bottom:80%!important}[dir=ltr] .\34xl\:ltr\:ml-4\/5{margin-left:80%!important}[dir=ltr] .\34xl\:ltr\:mt-1\/6{margin-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mr-1\/6{margin-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mb-1\/6{margin-bottom:16.666667%!important}[dir=ltr] .\34xl\:ltr\:ml-1\/6{margin-left:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mt-2\/6{margin-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mr-2\/6{margin-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mb-2\/6{margin-bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:ml-2\/6{margin-left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mt-3\/6{margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mr-3\/6{margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:mb-3\/6{margin-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:ml-3\/6{margin-left:50%!important}[dir=ltr] .\34xl\:ltr\:mt-4\/6{margin-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mr-4\/6{margin-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mb-4\/6{margin-bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:ml-4\/6{margin-left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mt-5\/6{margin-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mr-5\/6{margin-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mb-5\/6{margin-bottom:83.333333%!important}[dir=ltr] .\34xl\:ltr\:ml-5\/6{margin-left:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mt-1\/12{margin-top:8.333333%!important}[dir=ltr] .\34xl\:ltr\:mr-1\/12{margin-right:8.333333%!important}[dir=ltr] .\34xl\:ltr\:mb-1\/12{margin-bottom:8.333333%!important}[dir=ltr] .\34xl\:ltr\:ml-1\/12{margin-left:8.333333%!important}[dir=ltr] .\34xl\:ltr\:mt-2\/12{margin-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mr-2\/12{margin-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mb-2\/12{margin-bottom:16.666667%!important}[dir=ltr] .\34xl\:ltr\:ml-2\/12{margin-left:16.666667%!important}[dir=ltr] .\34xl\:ltr\:mt-3\/12{margin-top:25%!important}[dir=ltr] .\34xl\:ltr\:mr-3\/12{margin-right:25%!important}[dir=ltr] .\34xl\:ltr\:mb-3\/12{margin-bottom:25%!important}[dir=ltr] .\34xl\:ltr\:ml-3\/12{margin-left:25%!important}[dir=ltr] .\34xl\:ltr\:mt-4\/12{margin-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mr-4\/12{margin-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mb-4\/12{margin-bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:ml-4\/12{margin-left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:mt-5\/12{margin-top:41.666667%!important}[dir=ltr] .\34xl\:ltr\:mr-5\/12{margin-right:41.666667%!important}[dir=ltr] .\34xl\:ltr\:mb-5\/12{margin-bottom:41.666667%!important}[dir=ltr] .\34xl\:ltr\:ml-5\/12{margin-left:41.666667%!important}[dir=ltr] .\34xl\:ltr\:mt-6\/12{margin-top:50%!important}[dir=ltr] .\34xl\:ltr\:mr-6\/12{margin-right:50%!important}[dir=ltr] .\34xl\:ltr\:mb-6\/12{margin-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:ml-6\/12{margin-left:50%!important}[dir=ltr] .\34xl\:ltr\:mt-7\/12{margin-top:58.333333%!important}[dir=ltr] .\34xl\:ltr\:mr-7\/12{margin-right:58.333333%!important}[dir=ltr] .\34xl\:ltr\:mb-7\/12{margin-bottom:58.333333%!important}[dir=ltr] .\34xl\:ltr\:ml-7\/12{margin-left:58.333333%!important}[dir=ltr] .\34xl\:ltr\:mt-8\/12{margin-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mr-8\/12{margin-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mb-8\/12{margin-bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:ml-8\/12{margin-left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:mt-9\/12{margin-top:75%!important}[dir=ltr] .\34xl\:ltr\:mr-9\/12{margin-right:75%!important}[dir=ltr] .\34xl\:ltr\:mb-9\/12{margin-bottom:75%!important}[dir=ltr] .\34xl\:ltr\:ml-9\/12{margin-left:75%!important}[dir=ltr] .\34xl\:ltr\:mt-10\/12{margin-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mr-10\/12{margin-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mb-10\/12{margin-bottom:83.333333%!important}[dir=ltr] .\34xl\:ltr\:ml-10\/12{margin-left:83.333333%!important}[dir=ltr] .\34xl\:ltr\:mt-11\/12{margin-top:91.666667%!important}[dir=ltr] .\34xl\:ltr\:mr-11\/12{margin-right:91.666667%!important}[dir=ltr] .\34xl\:ltr\:mb-11\/12{margin-bottom:91.666667%!important}[dir=ltr] .\34xl\:ltr\:ml-11\/12{margin-left:91.666667%!important}[dir=ltr] .\34xl\:ltr\:mt-full{margin-top:100%!important}[dir=ltr] .\34xl\:ltr\:mr-full{margin-right:100%!important}[dir=ltr] .\34xl\:ltr\:mb-full{margin-bottom:100%!important}[dir=ltr] .\34xl\:ltr\:ml-full{margin-left:100%!important}[dir=ltr] .\34xl\:ltr\:-mt-1{margin-top:-.25rem!important}[dir=ltr] .\34xl\:ltr\:-mr-1{margin-right:-.25rem!important}[dir=ltr] .\34xl\:ltr\:-mb-1{margin-bottom:-.25rem!important}[dir=ltr] .\34xl\:ltr\:-ml-1{margin-left:-.25rem!important}[dir=ltr] .\34xl\:ltr\:-mt-2{margin-top:-.5rem!important}[dir=ltr] .\34xl\:ltr\:-mr-2{margin-right:-.5rem!important}[dir=ltr] .\34xl\:ltr\:-mb-2{margin-bottom:-.5rem!important}[dir=ltr] .\34xl\:ltr\:-ml-2{margin-left:-.5rem!important}[dir=ltr] .\34xl\:ltr\:-mt-3{margin-top:-.75rem!important}[dir=ltr] .\34xl\:ltr\:-mr-3{margin-right:-.75rem!important}[dir=ltr] .\34xl\:ltr\:-mb-3{margin-bottom:-.75rem!important}[dir=ltr] .\34xl\:ltr\:-ml-3{margin-left:-.75rem!important}[dir=ltr] .\34xl\:ltr\:-mt-4{margin-top:-1rem!important}[dir=ltr] .\34xl\:ltr\:-mr-4{margin-right:-1rem!important}[dir=ltr] .\34xl\:ltr\:-mb-4{margin-bottom:-1rem!important}[dir=ltr] .\34xl\:ltr\:-ml-4{margin-left:-1rem!important}[dir=ltr] .\34xl\:ltr\:-mt-5{margin-top:-1.25rem!important}[dir=ltr] .\34xl\:ltr\:-mr-5{margin-right:-1.25rem!important}[dir=ltr] .\34xl\:ltr\:-mb-5{margin-bottom:-1.25rem!important}[dir=ltr] .\34xl\:ltr\:-ml-5{margin-left:-1.25rem!important}[dir=ltr] .\34xl\:ltr\:-mt-6{margin-top:-1.5rem!important}[dir=ltr] .\34xl\:ltr\:-mr-6{margin-right:-1.5rem!important}[dir=ltr] .\34xl\:ltr\:-mb-6{margin-bottom:-1.5rem!important}[dir=ltr] .\34xl\:ltr\:-ml-6{margin-left:-1.5rem!important}[dir=ltr] .\34xl\:ltr\:-mt-7{margin-top:-1.75rem!important}[dir=ltr] .\34xl\:ltr\:-mr-7{margin-right:-1.75rem!important}[dir=ltr] .\34xl\:ltr\:-mb-7{margin-bottom:-1.75rem!important}[dir=ltr] .\34xl\:ltr\:-ml-7{margin-left:-1.75rem!important}[dir=ltr] .\34xl\:ltr\:-mt-8{margin-top:-2rem!important}[dir=ltr] .\34xl\:ltr\:-mr-8{margin-right:-2rem!important}[dir=ltr] .\34xl\:ltr\:-mb-8{margin-bottom:-2rem!important}[dir=ltr] .\34xl\:ltr\:-ml-8{margin-left:-2rem!important}[dir=ltr] .\34xl\:ltr\:-mt-9{margin-top:-2.25rem!important}[dir=ltr] .\34xl\:ltr\:-mr-9{margin-right:-2.25rem!important}[dir=ltr] .\34xl\:ltr\:-mb-9{margin-bottom:-2.25rem!important}[dir=ltr] .\34xl\:ltr\:-ml-9{margin-left:-2.25rem!important}[dir=ltr] .\34xl\:ltr\:-mt-10{margin-top:-2.5rem!important}[dir=ltr] .\34xl\:ltr\:-mr-10{margin-right:-2.5rem!important}[dir=ltr] .\34xl\:ltr\:-mb-10{margin-bottom:-2.5rem!important}[dir=ltr] .\34xl\:ltr\:-ml-10{margin-left:-2.5rem!important}[dir=ltr] .\34xl\:ltr\:-mt-11{margin-top:-2.75rem!important}[dir=ltr] .\34xl\:ltr\:-mr-11{margin-right:-2.75rem!important}[dir=ltr] .\34xl\:ltr\:-mb-11{margin-bottom:-2.75rem!important}[dir=ltr] .\34xl\:ltr\:-ml-11{margin-left:-2.75rem!important}[dir=ltr] .\34xl\:ltr\:-mt-12{margin-top:-3rem!important}[dir=ltr] .\34xl\:ltr\:-mr-12{margin-right:-3rem!important}[dir=ltr] .\34xl\:ltr\:-mb-12{margin-bottom:-3rem!important}[dir=ltr] .\34xl\:ltr\:-ml-12{margin-left:-3rem!important}[dir=ltr] .\34xl\:ltr\:-mt-13{margin-top:-3.25rem!important}[dir=ltr] .\34xl\:ltr\:-mr-13{margin-right:-3.25rem!important}[dir=ltr] .\34xl\:ltr\:-mb-13{margin-bottom:-3.25rem!important}[dir=ltr] .\34xl\:ltr\:-ml-13{margin-left:-3.25rem!important}[dir=ltr] .\34xl\:ltr\:-mt-14{margin-top:-3.5rem!important}[dir=ltr] .\34xl\:ltr\:-mr-14{margin-right:-3.5rem!important}[dir=ltr] .\34xl\:ltr\:-mb-14{margin-bottom:-3.5rem!important}[dir=ltr] .\34xl\:ltr\:-ml-14{margin-left:-3.5rem!important}[dir=ltr] .\34xl\:ltr\:-mt-15{margin-top:-3.75rem!important}[dir=ltr] .\34xl\:ltr\:-mr-15{margin-right:-3.75rem!important}[dir=ltr] .\34xl\:ltr\:-mb-15{margin-bottom:-3.75rem!important}[dir=ltr] .\34xl\:ltr\:-ml-15{margin-left:-3.75rem!important}[dir=ltr] .\34xl\:ltr\:-mt-16{margin-top:-4rem!important}[dir=ltr] .\34xl\:ltr\:-mr-16{margin-right:-4rem!important}[dir=ltr] .\34xl\:ltr\:-mb-16{margin-bottom:-4rem!important}[dir=ltr] .\34xl\:ltr\:-ml-16{margin-left:-4rem!important}[dir=ltr] .\34xl\:ltr\:-mt-20{margin-top:-5rem!important}[dir=ltr] .\34xl\:ltr\:-mr-20{margin-right:-5rem!important}[dir=ltr] .\34xl\:ltr\:-mb-20{margin-bottom:-5rem!important}[dir=ltr] .\34xl\:ltr\:-ml-20{margin-left:-5rem!important}[dir=ltr] .\34xl\:ltr\:-mt-24{margin-top:-6rem!important}[dir=ltr] .\34xl\:ltr\:-mr-24{margin-right:-6rem!important}[dir=ltr] .\34xl\:ltr\:-mb-24{margin-bottom:-6rem!important}[dir=ltr] .\34xl\:ltr\:-ml-24{margin-left:-6rem!important}[dir=ltr] .\34xl\:ltr\:-mt-28{margin-top:-7rem!important}[dir=ltr] .\34xl\:ltr\:-mr-28{margin-right:-7rem!important}[dir=ltr] .\34xl\:ltr\:-mb-28{margin-bottom:-7rem!important}[dir=ltr] .\34xl\:ltr\:-ml-28{margin-left:-7rem!important}[dir=ltr] .\34xl\:ltr\:-mt-32{margin-top:-8rem!important}[dir=ltr] .\34xl\:ltr\:-mr-32{margin-right:-8rem!important}[dir=ltr] .\34xl\:ltr\:-mb-32{margin-bottom:-8rem!important}[dir=ltr] .\34xl\:ltr\:-ml-32{margin-left:-8rem!important}[dir=ltr] .\34xl\:ltr\:-mt-36{margin-top:-9rem!important}[dir=ltr] .\34xl\:ltr\:-mr-36{margin-right:-9rem!important}[dir=ltr] .\34xl\:ltr\:-mb-36{margin-bottom:-9rem!important}[dir=ltr] .\34xl\:ltr\:-ml-36{margin-left:-9rem!important}[dir=ltr] .\34xl\:ltr\:-mt-40{margin-top:-10rem!important}[dir=ltr] .\34xl\:ltr\:-mr-40{margin-right:-10rem!important}[dir=ltr] .\34xl\:ltr\:-mb-40{margin-bottom:-10rem!important}[dir=ltr] .\34xl\:ltr\:-ml-40{margin-left:-10rem!important}[dir=ltr] .\34xl\:ltr\:-mt-48{margin-top:-12rem!important}[dir=ltr] .\34xl\:ltr\:-mr-48{margin-right:-12rem!important}[dir=ltr] .\34xl\:ltr\:-mb-48{margin-bottom:-12rem!important}[dir=ltr] .\34xl\:ltr\:-ml-48{margin-left:-12rem!important}[dir=ltr] .\34xl\:ltr\:-mt-56{margin-top:-14rem!important}[dir=ltr] .\34xl\:ltr\:-mr-56{margin-right:-14rem!important}[dir=ltr] .\34xl\:ltr\:-mb-56{margin-bottom:-14rem!important}[dir=ltr] .\34xl\:ltr\:-ml-56{margin-left:-14rem!important}[dir=ltr] .\34xl\:ltr\:-mt-60{margin-top:-15rem!important}[dir=ltr] .\34xl\:ltr\:-mr-60{margin-right:-15rem!important}[dir=ltr] .\34xl\:ltr\:-mb-60{margin-bottom:-15rem!important}[dir=ltr] .\34xl\:ltr\:-ml-60{margin-left:-15rem!important}[dir=ltr] .\34xl\:ltr\:-mt-64{margin-top:-16rem!important}[dir=ltr] .\34xl\:ltr\:-mr-64{margin-right:-16rem!important}[dir=ltr] .\34xl\:ltr\:-mb-64{margin-bottom:-16rem!important}[dir=ltr] .\34xl\:ltr\:-ml-64{margin-left:-16rem!important}[dir=ltr] .\34xl\:ltr\:-mt-72{margin-top:-18rem!important}[dir=ltr] .\34xl\:ltr\:-mr-72{margin-right:-18rem!important}[dir=ltr] .\34xl\:ltr\:-mb-72{margin-bottom:-18rem!important}[dir=ltr] .\34xl\:ltr\:-ml-72{margin-left:-18rem!important}[dir=ltr] .\34xl\:ltr\:-mt-80{margin-top:-20rem!important}[dir=ltr] .\34xl\:ltr\:-mr-80{margin-right:-20rem!important}[dir=ltr] .\34xl\:ltr\:-mb-80{margin-bottom:-20rem!important}[dir=ltr] .\34xl\:ltr\:-ml-80{margin-left:-20rem!important}[dir=ltr] .\34xl\:ltr\:-mt-96{margin-top:-24rem!important}[dir=ltr] .\34xl\:ltr\:-mr-96{margin-right:-24rem!important}[dir=ltr] .\34xl\:ltr\:-mb-96{margin-bottom:-24rem!important}[dir=ltr] .\34xl\:ltr\:-ml-96{margin-left:-24rem!important}[dir=ltr] .\34xl\:ltr\:-mt-px{margin-top:-1px!important}[dir=ltr] .\34xl\:ltr\:-mr-px{margin-right:-1px!important}[dir=ltr] .\34xl\:ltr\:-mb-px{margin-bottom:-1px!important}[dir=ltr] .\34xl\:ltr\:-ml-px{margin-left:-1px!important}[dir=ltr] .\34xl\:ltr\:-mt-0\.5{margin-top:-.125rem!important}[dir=ltr] .\34xl\:ltr\:-mr-0\.5{margin-right:-.125rem!important}[dir=ltr] .\34xl\:ltr\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=ltr] .\34xl\:ltr\:-ml-0\.5{margin-left:-.125rem!important}[dir=ltr] .\34xl\:ltr\:-mt-1\.5{margin-top:-.375rem!important}[dir=ltr] .\34xl\:ltr\:-mr-1\.5{margin-right:-.375rem!important}[dir=ltr] .\34xl\:ltr\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=ltr] .\34xl\:ltr\:-ml-1\.5{margin-left:-.375rem!important}[dir=ltr] .\34xl\:ltr\:-mt-2\.5{margin-top:-.625rem!important}[dir=ltr] .\34xl\:ltr\:-mr-2\.5{margin-right:-.625rem!important}[dir=ltr] .\34xl\:ltr\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=ltr] .\34xl\:ltr\:-ml-2\.5{margin-left:-.625rem!important}[dir=ltr] .\34xl\:ltr\:-mt-3\.5{margin-top:-.875rem!important}[dir=ltr] .\34xl\:ltr\:-mr-3\.5{margin-right:-.875rem!important}[dir=ltr] .\34xl\:ltr\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=ltr] .\34xl\:ltr\:-ml-3\.5{margin-left:-.875rem!important}[dir=ltr] .\34xl\:ltr\:-mt-1\/2{margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mr-1\/2{margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-mb-1\/2{margin-bottom:-50%!important}[dir=ltr] .\34xl\:ltr\:-ml-1\/2{margin-left:-50%!important}[dir=ltr] .\34xl\:ltr\:-mt-1\/3{margin-top:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mr-1\/3{margin-right:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-ml-1\/3{margin-left:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mt-2\/3{margin-top:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mr-2\/3{margin-right:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-ml-2\/3{margin-left:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mt-1\/4{margin-top:-25%!important}[dir=ltr] .\34xl\:ltr\:-mr-1\/4{margin-right:-25%!important}[dir=ltr] .\34xl\:ltr\:-mb-1\/4{margin-bottom:-25%!important}[dir=ltr] .\34xl\:ltr\:-ml-1\/4{margin-left:-25%!important}[dir=ltr] .\34xl\:ltr\:-mt-2\/4{margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mr-2\/4{margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-mb-2\/4{margin-bottom:-50%!important}[dir=ltr] .\34xl\:ltr\:-ml-2\/4{margin-left:-50%!important}[dir=ltr] .\34xl\:ltr\:-mt-3\/4{margin-top:-75%!important}[dir=ltr] .\34xl\:ltr\:-mr-3\/4{margin-right:-75%!important}[dir=ltr] .\34xl\:ltr\:-mb-3\/4{margin-bottom:-75%!important}[dir=ltr] .\34xl\:ltr\:-ml-3\/4{margin-left:-75%!important}[dir=ltr] .\34xl\:ltr\:-mt-1\/5{margin-top:-20%!important}[dir=ltr] .\34xl\:ltr\:-mr-1\/5{margin-right:-20%!important}[dir=ltr] .\34xl\:ltr\:-mb-1\/5{margin-bottom:-20%!important}[dir=ltr] .\34xl\:ltr\:-ml-1\/5{margin-left:-20%!important}[dir=ltr] .\34xl\:ltr\:-mt-2\/5{margin-top:-40%!important}[dir=ltr] .\34xl\:ltr\:-mr-2\/5{margin-right:-40%!important}[dir=ltr] .\34xl\:ltr\:-mb-2\/5{margin-bottom:-40%!important}[dir=ltr] .\34xl\:ltr\:-ml-2\/5{margin-left:-40%!important}[dir=ltr] .\34xl\:ltr\:-mt-3\/5{margin-top:-60%!important}[dir=ltr] .\34xl\:ltr\:-mr-3\/5{margin-right:-60%!important}[dir=ltr] .\34xl\:ltr\:-mb-3\/5{margin-bottom:-60%!important}[dir=ltr] .\34xl\:ltr\:-ml-3\/5{margin-left:-60%!important}[dir=ltr] .\34xl\:ltr\:-mt-4\/5{margin-top:-80%!important}[dir=ltr] .\34xl\:ltr\:-mr-4\/5{margin-right:-80%!important}[dir=ltr] .\34xl\:ltr\:-mb-4\/5{margin-bottom:-80%!important}[dir=ltr] .\34xl\:ltr\:-ml-4\/5{margin-left:-80%!important}[dir=ltr] .\34xl\:ltr\:-mt-1\/6{margin-top:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mr-1\/6{margin-right:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-ml-1\/6{margin-left:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mt-2\/6{margin-top:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mr-2\/6{margin-right:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-ml-2\/6{margin-left:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mt-3\/6{margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mr-3\/6{margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-mb-3\/6{margin-bottom:-50%!important}[dir=ltr] .\34xl\:ltr\:-ml-3\/6{margin-left:-50%!important}[dir=ltr] .\34xl\:ltr\:-mt-4\/6{margin-top:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mr-4\/6{margin-right:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-ml-4\/6{margin-left:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mt-5\/6{margin-top:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mr-5\/6{margin-right:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-ml-5\/6{margin-left:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mt-1\/12{margin-top:-8.33333%!important}[dir=ltr] .\34xl\:ltr\:-mr-1\/12{margin-right:-8.33333%!important}[dir=ltr] .\34xl\:ltr\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=ltr] .\34xl\:ltr\:-ml-1\/12{margin-left:-8.33333%!important}[dir=ltr] .\34xl\:ltr\:-mt-2\/12{margin-top:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mr-2\/12{margin-right:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-ml-2\/12{margin-left:-16.66667%!important}[dir=ltr] .\34xl\:ltr\:-mt-3\/12{margin-top:-25%!important}[dir=ltr] .\34xl\:ltr\:-mr-3\/12{margin-right:-25%!important}[dir=ltr] .\34xl\:ltr\:-mb-3\/12{margin-bottom:-25%!important}[dir=ltr] .\34xl\:ltr\:-ml-3\/12{margin-left:-25%!important}[dir=ltr] .\34xl\:ltr\:-mt-4\/12{margin-top:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mr-4\/12{margin-right:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-ml-4\/12{margin-left:-33.33333%!important}[dir=ltr] .\34xl\:ltr\:-mt-5\/12{margin-top:-41.66667%!important}[dir=ltr] .\34xl\:ltr\:-mr-5\/12{margin-right:-41.66667%!important}[dir=ltr] .\34xl\:ltr\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=ltr] .\34xl\:ltr\:-ml-5\/12{margin-left:-41.66667%!important}[dir=ltr] .\34xl\:ltr\:-mt-6\/12{margin-top:-50%!important}[dir=ltr] .\34xl\:ltr\:-mr-6\/12{margin-right:-50%!important}[dir=ltr] .\34xl\:ltr\:-mb-6\/12{margin-bottom:-50%!important}[dir=ltr] .\34xl\:ltr\:-ml-6\/12{margin-left:-50%!important}[dir=ltr] .\34xl\:ltr\:-mt-7\/12{margin-top:-58.33333%!important}[dir=ltr] .\34xl\:ltr\:-mr-7\/12{margin-right:-58.33333%!important}[dir=ltr] .\34xl\:ltr\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=ltr] .\34xl\:ltr\:-ml-7\/12{margin-left:-58.33333%!important}[dir=ltr] .\34xl\:ltr\:-mt-8\/12{margin-top:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mr-8\/12{margin-right:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-ml-8\/12{margin-left:-66.66667%!important}[dir=ltr] .\34xl\:ltr\:-mt-9\/12{margin-top:-75%!important}[dir=ltr] .\34xl\:ltr\:-mr-9\/12{margin-right:-75%!important}[dir=ltr] .\34xl\:ltr\:-mb-9\/12{margin-bottom:-75%!important}[dir=ltr] .\34xl\:ltr\:-ml-9\/12{margin-left:-75%!important}[dir=ltr] .\34xl\:ltr\:-mt-10\/12{margin-top:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mr-10\/12{margin-right:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-ml-10\/12{margin-left:-83.33333%!important}[dir=ltr] .\34xl\:ltr\:-mt-11\/12{margin-top:-91.66667%!important}[dir=ltr] .\34xl\:ltr\:-mr-11\/12{margin-right:-91.66667%!important}[dir=ltr] .\34xl\:ltr\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=ltr] .\34xl\:ltr\:-ml-11\/12{margin-left:-91.66667%!important}[dir=ltr] .\34xl\:ltr\:-mt-full{margin-top:-100%!important}[dir=ltr] .\34xl\:ltr\:-mr-full{margin-right:-100%!important}[dir=ltr] .\34xl\:ltr\:-mb-full{margin-bottom:-100%!important}[dir=ltr] .\34xl\:ltr\:-ml-full{margin-left:-100%!important}[dir=rtl] .\34xl\:rtl\:m-0{margin:0!important}[dir=rtl] .\34xl\:rtl\:m-1{margin:.25rem!important}[dir=rtl] .\34xl\:rtl\:m-2{margin:.5rem!important}[dir=rtl] .\34xl\:rtl\:m-3{margin:.75rem!important}[dir=rtl] .\34xl\:rtl\:m-4{margin:1rem!important}[dir=rtl] .\34xl\:rtl\:m-5{margin:1.25rem!important}[dir=rtl] .\34xl\:rtl\:m-6{margin:1.5rem!important}[dir=rtl] .\34xl\:rtl\:m-7{margin:1.75rem!important}[dir=rtl] .\34xl\:rtl\:m-8{margin:2rem!important}[dir=rtl] .\34xl\:rtl\:m-9{margin:2.25rem!important}[dir=rtl] .\34xl\:rtl\:m-10{margin:2.5rem!important}[dir=rtl] .\34xl\:rtl\:m-11{margin:2.75rem!important}[dir=rtl] .\34xl\:rtl\:m-12{margin:3rem!important}[dir=rtl] .\34xl\:rtl\:m-13{margin:3.25rem!important}[dir=rtl] .\34xl\:rtl\:m-14{margin:3.5rem!important}[dir=rtl] .\34xl\:rtl\:m-15{margin:3.75rem!important}[dir=rtl] .\34xl\:rtl\:m-16{margin:4rem!important}[dir=rtl] .\34xl\:rtl\:m-20{margin:5rem!important}[dir=rtl] .\34xl\:rtl\:m-24{margin:6rem!important}[dir=rtl] .\34xl\:rtl\:m-28{margin:7rem!important}[dir=rtl] .\34xl\:rtl\:m-32{margin:8rem!important}[dir=rtl] .\34xl\:rtl\:m-36{margin:9rem!important}[dir=rtl] .\34xl\:rtl\:m-40{margin:10rem!important}[dir=rtl] .\34xl\:rtl\:m-48{margin:12rem!important}[dir=rtl] .\34xl\:rtl\:m-56{margin:14rem!important}[dir=rtl] .\34xl\:rtl\:m-60{margin:15rem!important}[dir=rtl] .\34xl\:rtl\:m-64{margin:16rem!important}[dir=rtl] .\34xl\:rtl\:m-72{margin:18rem!important}[dir=rtl] .\34xl\:rtl\:m-80{margin:20rem!important}[dir=rtl] .\34xl\:rtl\:m-96{margin:24rem!important}[dir=rtl] .\34xl\:rtl\:m-auto{margin:auto!important}[dir=rtl] .\34xl\:rtl\:m-px{margin:1px!important}[dir=rtl] .\34xl\:rtl\:m-0\.5{margin:.125rem!important}[dir=rtl] .\34xl\:rtl\:m-1\.5{margin:.375rem!important}[dir=rtl] .\34xl\:rtl\:m-2\.5{margin:.625rem!important}[dir=rtl] .\34xl\:rtl\:m-3\.5{margin:.875rem!important}[dir=rtl] .\34xl\:rtl\:m-1\/2{margin:50%!important}[dir=rtl] .\34xl\:rtl\:m-1\/3{margin:33.333333%!important}[dir=rtl] .\34xl\:rtl\:m-2\/3{margin:66.666667%!important}[dir=rtl] .\34xl\:rtl\:m-1\/4{margin:25%!important}[dir=rtl] .\34xl\:rtl\:m-2\/4{margin:50%!important}[dir=rtl] .\34xl\:rtl\:m-3\/4{margin:75%!important}[dir=rtl] .\34xl\:rtl\:m-1\/5{margin:20%!important}[dir=rtl] .\34xl\:rtl\:m-2\/5{margin:40%!important}[dir=rtl] .\34xl\:rtl\:m-3\/5{margin:60%!important}[dir=rtl] .\34xl\:rtl\:m-4\/5{margin:80%!important}[dir=rtl] .\34xl\:rtl\:m-1\/6{margin:16.666667%!important}[dir=rtl] .\34xl\:rtl\:m-2\/6{margin:33.333333%!important}[dir=rtl] .\34xl\:rtl\:m-3\/6{margin:50%!important}[dir=rtl] .\34xl\:rtl\:m-4\/6{margin:66.666667%!important}[dir=rtl] .\34xl\:rtl\:m-5\/6{margin:83.333333%!important}[dir=rtl] .\34xl\:rtl\:m-1\/12{margin:8.333333%!important}[dir=rtl] .\34xl\:rtl\:m-2\/12{margin:16.666667%!important}[dir=rtl] .\34xl\:rtl\:m-3\/12{margin:25%!important}[dir=rtl] .\34xl\:rtl\:m-4\/12{margin:33.333333%!important}[dir=rtl] .\34xl\:rtl\:m-5\/12{margin:41.666667%!important}[dir=rtl] .\34xl\:rtl\:m-6\/12{margin:50%!important}[dir=rtl] .\34xl\:rtl\:m-7\/12{margin:58.333333%!important}[dir=rtl] .\34xl\:rtl\:m-8\/12{margin:66.666667%!important}[dir=rtl] .\34xl\:rtl\:m-9\/12{margin:75%!important}[dir=rtl] .\34xl\:rtl\:m-10\/12{margin:83.333333%!important}[dir=rtl] .\34xl\:rtl\:m-11\/12{margin:91.666667%!important}[dir=rtl] .\34xl\:rtl\:m-full{margin:100%!important}[dir=rtl] .\34xl\:rtl\:-m-1{margin:-.25rem!important}[dir=rtl] .\34xl\:rtl\:-m-2{margin:-.5rem!important}[dir=rtl] .\34xl\:rtl\:-m-3{margin:-.75rem!important}[dir=rtl] .\34xl\:rtl\:-m-4{margin:-1rem!important}[dir=rtl] .\34xl\:rtl\:-m-5{margin:-1.25rem!important}[dir=rtl] .\34xl\:rtl\:-m-6{margin:-1.5rem!important}[dir=rtl] .\34xl\:rtl\:-m-7{margin:-1.75rem!important}[dir=rtl] .\34xl\:rtl\:-m-8{margin:-2rem!important}[dir=rtl] .\34xl\:rtl\:-m-9{margin:-2.25rem!important}[dir=rtl] .\34xl\:rtl\:-m-10{margin:-2.5rem!important}[dir=rtl] .\34xl\:rtl\:-m-11{margin:-2.75rem!important}[dir=rtl] .\34xl\:rtl\:-m-12{margin:-3rem!important}[dir=rtl] .\34xl\:rtl\:-m-13{margin:-3.25rem!important}[dir=rtl] .\34xl\:rtl\:-m-14{margin:-3.5rem!important}[dir=rtl] .\34xl\:rtl\:-m-15{margin:-3.75rem!important}[dir=rtl] .\34xl\:rtl\:-m-16{margin:-4rem!important}[dir=rtl] .\34xl\:rtl\:-m-20{margin:-5rem!important}[dir=rtl] .\34xl\:rtl\:-m-24{margin:-6rem!important}[dir=rtl] .\34xl\:rtl\:-m-28{margin:-7rem!important}[dir=rtl] .\34xl\:rtl\:-m-32{margin:-8rem!important}[dir=rtl] .\34xl\:rtl\:-m-36{margin:-9rem!important}[dir=rtl] .\34xl\:rtl\:-m-40{margin:-10rem!important}[dir=rtl] .\34xl\:rtl\:-m-48{margin:-12rem!important}[dir=rtl] .\34xl\:rtl\:-m-56{margin:-14rem!important}[dir=rtl] .\34xl\:rtl\:-m-60{margin:-15rem!important}[dir=rtl] .\34xl\:rtl\:-m-64{margin:-16rem!important}[dir=rtl] .\34xl\:rtl\:-m-72{margin:-18rem!important}[dir=rtl] .\34xl\:rtl\:-m-80{margin:-20rem!important}[dir=rtl] .\34xl\:rtl\:-m-96{margin:-24rem!important}[dir=rtl] .\34xl\:rtl\:-m-px{margin:-1px!important}[dir=rtl] .\34xl\:rtl\:-m-0\.5{margin:-.125rem!important}[dir=rtl] .\34xl\:rtl\:-m-1\.5{margin:-.375rem!important}[dir=rtl] .\34xl\:rtl\:-m-2\.5{margin:-.625rem!important}[dir=rtl] .\34xl\:rtl\:-m-3\.5{margin:-.875rem!important}[dir=rtl] .\34xl\:rtl\:-m-1\/2{margin:-50%!important}[dir=rtl] .\34xl\:rtl\:-m-1\/3{margin:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-m-2\/3{margin:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-m-1\/4{margin:-25%!important}[dir=rtl] .\34xl\:rtl\:-m-2\/4{margin:-50%!important}[dir=rtl] .\34xl\:rtl\:-m-3\/4{margin:-75%!important}[dir=rtl] .\34xl\:rtl\:-m-1\/5{margin:-20%!important}[dir=rtl] .\34xl\:rtl\:-m-2\/5{margin:-40%!important}[dir=rtl] .\34xl\:rtl\:-m-3\/5{margin:-60%!important}[dir=rtl] .\34xl\:rtl\:-m-4\/5{margin:-80%!important}[dir=rtl] .\34xl\:rtl\:-m-1\/6{margin:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-m-2\/6{margin:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-m-3\/6{margin:-50%!important}[dir=rtl] .\34xl\:rtl\:-m-4\/6{margin:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-m-5\/6{margin:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-m-1\/12{margin:-8.33333%!important}[dir=rtl] .\34xl\:rtl\:-m-2\/12{margin:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-m-3\/12{margin:-25%!important}[dir=rtl] .\34xl\:rtl\:-m-4\/12{margin:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-m-5\/12{margin:-41.66667%!important}[dir=rtl] .\34xl\:rtl\:-m-6\/12{margin:-50%!important}[dir=rtl] .\34xl\:rtl\:-m-7\/12{margin:-58.33333%!important}[dir=rtl] .\34xl\:rtl\:-m-8\/12{margin:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-m-9\/12{margin:-75%!important}[dir=rtl] .\34xl\:rtl\:-m-10\/12{margin:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-m-11\/12{margin:-91.66667%!important}[dir=rtl] .\34xl\:rtl\:-m-full{margin:-100%!important}[dir=rtl] .\34xl\:rtl\:my-0{margin-bottom:0!important;margin-top:0!important}[dir=rtl] .\34xl\:rtl\:mx-0{margin-left:0!important;margin-right:0!important}[dir=rtl] .\34xl\:rtl\:my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}[dir=rtl] .\34xl\:rtl\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}[dir=rtl] .\34xl\:rtl\:my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}[dir=rtl] .\34xl\:rtl\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}[dir=rtl] .\34xl\:rtl\:my-3{margin-bottom:.75rem!important;margin-top:.75rem!important}[dir=rtl] .\34xl\:rtl\:mx-3{margin-left:.75rem!important;margin-right:.75rem!important}[dir=rtl] .\34xl\:rtl\:my-4{margin-bottom:1rem!important;margin-top:1rem!important}[dir=rtl] .\34xl\:rtl\:mx-4{margin-left:1rem!important;margin-right:1rem!important}[dir=rtl] .\34xl\:rtl\:my-5{margin-bottom:1.25rem!important;margin-top:1.25rem!important}[dir=rtl] .\34xl\:rtl\:mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}[dir=rtl] .\34xl\:rtl\:my-6{margin-bottom:1.5rem!important;margin-top:1.5rem!important}[dir=rtl] .\34xl\:rtl\:mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}[dir=rtl] .\34xl\:rtl\:my-7{margin-bottom:1.75rem!important;margin-top:1.75rem!important}[dir=rtl] .\34xl\:rtl\:mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}[dir=rtl] .\34xl\:rtl\:my-8{margin-bottom:2rem!important;margin-top:2rem!important}[dir=rtl] .\34xl\:rtl\:mx-8{margin-left:2rem!important;margin-right:2rem!important}[dir=rtl] .\34xl\:rtl\:my-9{margin-bottom:2.25rem!important;margin-top:2.25rem!important}[dir=rtl] .\34xl\:rtl\:mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}[dir=rtl] .\34xl\:rtl\:my-10{margin-bottom:2.5rem!important;margin-top:2.5rem!important}[dir=rtl] .\34xl\:rtl\:mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}[dir=rtl] .\34xl\:rtl\:my-11{margin-bottom:2.75rem!important;margin-top:2.75rem!important}[dir=rtl] .\34xl\:rtl\:mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}[dir=rtl] .\34xl\:rtl\:my-12{margin-bottom:3rem!important;margin-top:3rem!important}[dir=rtl] .\34xl\:rtl\:mx-12{margin-left:3rem!important;margin-right:3rem!important}[dir=rtl] .\34xl\:rtl\:my-13{margin-bottom:3.25rem!important;margin-top:3.25rem!important}[dir=rtl] .\34xl\:rtl\:mx-13{margin-left:3.25rem!important;margin-right:3.25rem!important}[dir=rtl] .\34xl\:rtl\:my-14{margin-bottom:3.5rem!important;margin-top:3.5rem!important}[dir=rtl] .\34xl\:rtl\:mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}[dir=rtl] .\34xl\:rtl\:my-15{margin-bottom:3.75rem!important;margin-top:3.75rem!important}[dir=rtl] .\34xl\:rtl\:mx-15{margin-left:3.75rem!important;margin-right:3.75rem!important}[dir=rtl] .\34xl\:rtl\:my-16{margin-bottom:4rem!important;margin-top:4rem!important}[dir=rtl] .\34xl\:rtl\:mx-16{margin-left:4rem!important;margin-right:4rem!important}[dir=rtl] .\34xl\:rtl\:my-20{margin-bottom:5rem!important;margin-top:5rem!important}[dir=rtl] .\34xl\:rtl\:mx-20{margin-left:5rem!important;margin-right:5rem!important}[dir=rtl] .\34xl\:rtl\:my-24{margin-bottom:6rem!important;margin-top:6rem!important}[dir=rtl] .\34xl\:rtl\:mx-24{margin-left:6rem!important;margin-right:6rem!important}[dir=rtl] .\34xl\:rtl\:my-28{margin-bottom:7rem!important;margin-top:7rem!important}[dir=rtl] .\34xl\:rtl\:mx-28{margin-left:7rem!important;margin-right:7rem!important}[dir=rtl] .\34xl\:rtl\:my-32{margin-bottom:8rem!important;margin-top:8rem!important}[dir=rtl] .\34xl\:rtl\:mx-32{margin-left:8rem!important;margin-right:8rem!important}[dir=rtl] .\34xl\:rtl\:my-36{margin-bottom:9rem!important;margin-top:9rem!important}[dir=rtl] .\34xl\:rtl\:mx-36{margin-left:9rem!important;margin-right:9rem!important}[dir=rtl] .\34xl\:rtl\:my-40{margin-bottom:10rem!important;margin-top:10rem!important}[dir=rtl] .\34xl\:rtl\:mx-40{margin-left:10rem!important;margin-right:10rem!important}[dir=rtl] .\34xl\:rtl\:my-48{margin-bottom:12rem!important;margin-top:12rem!important}[dir=rtl] .\34xl\:rtl\:mx-48{margin-left:12rem!important;margin-right:12rem!important}[dir=rtl] .\34xl\:rtl\:my-56{margin-bottom:14rem!important;margin-top:14rem!important}[dir=rtl] .\34xl\:rtl\:mx-56{margin-left:14rem!important;margin-right:14rem!important}[dir=rtl] .\34xl\:rtl\:my-60{margin-bottom:15rem!important;margin-top:15rem!important}[dir=rtl] .\34xl\:rtl\:mx-60{margin-left:15rem!important;margin-right:15rem!important}[dir=rtl] .\34xl\:rtl\:my-64{margin-bottom:16rem!important;margin-top:16rem!important}[dir=rtl] .\34xl\:rtl\:mx-64{margin-left:16rem!important;margin-right:16rem!important}[dir=rtl] .\34xl\:rtl\:my-72{margin-bottom:18rem!important;margin-top:18rem!important}[dir=rtl] .\34xl\:rtl\:mx-72{margin-left:18rem!important;margin-right:18rem!important}[dir=rtl] .\34xl\:rtl\:my-80{margin-bottom:20rem!important;margin-top:20rem!important}[dir=rtl] .\34xl\:rtl\:mx-80{margin-left:20rem!important;margin-right:20rem!important}[dir=rtl] .\34xl\:rtl\:my-96{margin-bottom:24rem!important;margin-top:24rem!important}[dir=rtl] .\34xl\:rtl\:mx-96{margin-left:24rem!important;margin-right:24rem!important}[dir=rtl] .\34xl\:rtl\:my-auto{margin-bottom:auto!important;margin-top:auto!important}[dir=rtl] .\34xl\:rtl\:mx-auto{margin-left:auto!important;margin-right:auto!important}[dir=rtl] .\34xl\:rtl\:my-px{margin-bottom:1px!important;margin-top:1px!important}[dir=rtl] .\34xl\:rtl\:mx-px{margin-left:1px!important;margin-right:1px!important}[dir=rtl] .\34xl\:rtl\:my-0\.5{margin-bottom:.125rem!important;margin-top:.125rem!important}[dir=rtl] .\34xl\:rtl\:mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}[dir=rtl] .\34xl\:rtl\:my-1\.5{margin-bottom:.375rem!important;margin-top:.375rem!important}[dir=rtl] .\34xl\:rtl\:mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}[dir=rtl] .\34xl\:rtl\:my-2\.5{margin-bottom:.625rem!important;margin-top:.625rem!important}[dir=rtl] .\34xl\:rtl\:mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}[dir=rtl] .\34xl\:rtl\:my-3\.5{margin-bottom:.875rem!important;margin-top:.875rem!important}[dir=rtl] .\34xl\:rtl\:mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}[dir=rtl] .\34xl\:rtl\:my-1\/2{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mx-1\/2{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:my-1\/3{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mx-1\/3{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:my-2\/3{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mx-2\/3{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:my-1\/4{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .\34xl\:rtl\:mx-1\/4{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .\34xl\:rtl\:my-2\/4{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mx-2\/4{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:my-3\/4{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .\34xl\:rtl\:mx-3\/4{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .\34xl\:rtl\:my-1\/5{margin-bottom:20%!important;margin-top:20%!important}[dir=rtl] .\34xl\:rtl\:mx-1\/5{margin-left:20%!important;margin-right:20%!important}[dir=rtl] .\34xl\:rtl\:my-2\/5{margin-bottom:40%!important;margin-top:40%!important}[dir=rtl] .\34xl\:rtl\:mx-2\/5{margin-left:40%!important;margin-right:40%!important}[dir=rtl] .\34xl\:rtl\:my-3\/5{margin-bottom:60%!important;margin-top:60%!important}[dir=rtl] .\34xl\:rtl\:mx-3\/5{margin-left:60%!important;margin-right:60%!important}[dir=rtl] .\34xl\:rtl\:my-4\/5{margin-bottom:80%!important;margin-top:80%!important}[dir=rtl] .\34xl\:rtl\:mx-4\/5{margin-left:80%!important;margin-right:80%!important}[dir=rtl] .\34xl\:rtl\:my-1\/6{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mx-1\/6{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:my-2\/6{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mx-2\/6{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:my-3\/6{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mx-3\/6{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:my-4\/6{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mx-4\/6{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:my-5\/6{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mx-5\/6{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:my-1\/12{margin-bottom:8.333333%!important;margin-top:8.333333%!important}[dir=rtl] .\34xl\:rtl\:mx-1\/12{margin-left:8.333333%!important;margin-right:8.333333%!important}[dir=rtl] .\34xl\:rtl\:my-2\/12{margin-bottom:16.666667%!important;margin-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mx-2\/12{margin-left:16.666667%!important;margin-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:my-3\/12{margin-bottom:25%!important;margin-top:25%!important}[dir=rtl] .\34xl\:rtl\:mx-3\/12{margin-left:25%!important;margin-right:25%!important}[dir=rtl] .\34xl\:rtl\:my-4\/12{margin-bottom:33.333333%!important;margin-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mx-4\/12{margin-left:33.333333%!important;margin-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:my-5\/12{margin-bottom:41.666667%!important;margin-top:41.666667%!important}[dir=rtl] .\34xl\:rtl\:mx-5\/12{margin-left:41.666667%!important;margin-right:41.666667%!important}[dir=rtl] .\34xl\:rtl\:my-6\/12{margin-bottom:50%!important;margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mx-6\/12{margin-left:50%!important;margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:my-7\/12{margin-bottom:58.333333%!important;margin-top:58.333333%!important}[dir=rtl] .\34xl\:rtl\:mx-7\/12{margin-left:58.333333%!important;margin-right:58.333333%!important}[dir=rtl] .\34xl\:rtl\:my-8\/12{margin-bottom:66.666667%!important;margin-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mx-8\/12{margin-left:66.666667%!important;margin-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:my-9\/12{margin-bottom:75%!important;margin-top:75%!important}[dir=rtl] .\34xl\:rtl\:mx-9\/12{margin-left:75%!important;margin-right:75%!important}[dir=rtl] .\34xl\:rtl\:my-10\/12{margin-bottom:83.333333%!important;margin-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mx-10\/12{margin-left:83.333333%!important;margin-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:my-11\/12{margin-bottom:91.666667%!important;margin-top:91.666667%!important}[dir=rtl] .\34xl\:rtl\:mx-11\/12{margin-left:91.666667%!important;margin-right:91.666667%!important}[dir=rtl] .\34xl\:rtl\:my-full{margin-bottom:100%!important;margin-top:100%!important}[dir=rtl] .\34xl\:rtl\:mx-full{margin-left:100%!important;margin-right:100%!important}[dir=rtl] .\34xl\:rtl\:-my-1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}[dir=rtl] .\34xl\:rtl\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}[dir=rtl] .\34xl\:rtl\:-my-2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}[dir=rtl] .\34xl\:rtl\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}[dir=rtl] .\34xl\:rtl\:-my-3{margin-bottom:-.75rem!important;margin-top:-.75rem!important}[dir=rtl] .\34xl\:rtl\:-mx-3{margin-left:-.75rem!important;margin-right:-.75rem!important}[dir=rtl] .\34xl\:rtl\:-my-4{margin-bottom:-1rem!important;margin-top:-1rem!important}[dir=rtl] .\34xl\:rtl\:-mx-4{margin-left:-1rem!important;margin-right:-1rem!important}[dir=rtl] .\34xl\:rtl\:-my-5{margin-bottom:-1.25rem!important;margin-top:-1.25rem!important}[dir=rtl] .\34xl\:rtl\:-mx-5{margin-left:-1.25rem!important;margin-right:-1.25rem!important}[dir=rtl] .\34xl\:rtl\:-my-6{margin-bottom:-1.5rem!important;margin-top:-1.5rem!important}[dir=rtl] .\34xl\:rtl\:-mx-6{margin-left:-1.5rem!important;margin-right:-1.5rem!important}[dir=rtl] .\34xl\:rtl\:-my-7{margin-bottom:-1.75rem!important;margin-top:-1.75rem!important}[dir=rtl] .\34xl\:rtl\:-mx-7{margin-left:-1.75rem!important;margin-right:-1.75rem!important}[dir=rtl] .\34xl\:rtl\:-my-8{margin-bottom:-2rem!important;margin-top:-2rem!important}[dir=rtl] .\34xl\:rtl\:-mx-8{margin-left:-2rem!important;margin-right:-2rem!important}[dir=rtl] .\34xl\:rtl\:-my-9{margin-bottom:-2.25rem!important;margin-top:-2.25rem!important}[dir=rtl] .\34xl\:rtl\:-mx-9{margin-left:-2.25rem!important;margin-right:-2.25rem!important}[dir=rtl] .\34xl\:rtl\:-my-10{margin-bottom:-2.5rem!important;margin-top:-2.5rem!important}[dir=rtl] .\34xl\:rtl\:-mx-10{margin-left:-2.5rem!important;margin-right:-2.5rem!important}[dir=rtl] .\34xl\:rtl\:-my-11{margin-bottom:-2.75rem!important;margin-top:-2.75rem!important}[dir=rtl] .\34xl\:rtl\:-mx-11{margin-left:-2.75rem!important;margin-right:-2.75rem!important}[dir=rtl] .\34xl\:rtl\:-my-12{margin-bottom:-3rem!important;margin-top:-3rem!important}[dir=rtl] .\34xl\:rtl\:-mx-12{margin-left:-3rem!important;margin-right:-3rem!important}[dir=rtl] .\34xl\:rtl\:-my-13{margin-bottom:-3.25rem!important;margin-top:-3.25rem!important}[dir=rtl] .\34xl\:rtl\:-mx-13{margin-left:-3.25rem!important;margin-right:-3.25rem!important}[dir=rtl] .\34xl\:rtl\:-my-14{margin-bottom:-3.5rem!important;margin-top:-3.5rem!important}[dir=rtl] .\34xl\:rtl\:-mx-14{margin-left:-3.5rem!important;margin-right:-3.5rem!important}[dir=rtl] .\34xl\:rtl\:-my-15{margin-bottom:-3.75rem!important;margin-top:-3.75rem!important}[dir=rtl] .\34xl\:rtl\:-mx-15{margin-left:-3.75rem!important;margin-right:-3.75rem!important}[dir=rtl] .\34xl\:rtl\:-my-16{margin-bottom:-4rem!important;margin-top:-4rem!important}[dir=rtl] .\34xl\:rtl\:-mx-16{margin-left:-4rem!important;margin-right:-4rem!important}[dir=rtl] .\34xl\:rtl\:-my-20{margin-bottom:-5rem!important;margin-top:-5rem!important}[dir=rtl] .\34xl\:rtl\:-mx-20{margin-left:-5rem!important;margin-right:-5rem!important}[dir=rtl] .\34xl\:rtl\:-my-24{margin-bottom:-6rem!important;margin-top:-6rem!important}[dir=rtl] .\34xl\:rtl\:-mx-24{margin-left:-6rem!important;margin-right:-6rem!important}[dir=rtl] .\34xl\:rtl\:-my-28{margin-bottom:-7rem!important;margin-top:-7rem!important}[dir=rtl] .\34xl\:rtl\:-mx-28{margin-left:-7rem!important;margin-right:-7rem!important}[dir=rtl] .\34xl\:rtl\:-my-32{margin-bottom:-8rem!important;margin-top:-8rem!important}[dir=rtl] .\34xl\:rtl\:-mx-32{margin-left:-8rem!important;margin-right:-8rem!important}[dir=rtl] .\34xl\:rtl\:-my-36{margin-bottom:-9rem!important;margin-top:-9rem!important}[dir=rtl] .\34xl\:rtl\:-mx-36{margin-left:-9rem!important;margin-right:-9rem!important}[dir=rtl] .\34xl\:rtl\:-my-40{margin-bottom:-10rem!important;margin-top:-10rem!important}[dir=rtl] .\34xl\:rtl\:-mx-40{margin-left:-10rem!important;margin-right:-10rem!important}[dir=rtl] .\34xl\:rtl\:-my-48{margin-bottom:-12rem!important;margin-top:-12rem!important}[dir=rtl] .\34xl\:rtl\:-mx-48{margin-left:-12rem!important;margin-right:-12rem!important}[dir=rtl] .\34xl\:rtl\:-my-56{margin-bottom:-14rem!important;margin-top:-14rem!important}[dir=rtl] .\34xl\:rtl\:-mx-56{margin-left:-14rem!important;margin-right:-14rem!important}[dir=rtl] .\34xl\:rtl\:-my-60{margin-bottom:-15rem!important;margin-top:-15rem!important}[dir=rtl] .\34xl\:rtl\:-mx-60{margin-left:-15rem!important;margin-right:-15rem!important}[dir=rtl] .\34xl\:rtl\:-my-64{margin-bottom:-16rem!important;margin-top:-16rem!important}[dir=rtl] .\34xl\:rtl\:-mx-64{margin-left:-16rem!important;margin-right:-16rem!important}[dir=rtl] .\34xl\:rtl\:-my-72{margin-bottom:-18rem!important;margin-top:-18rem!important}[dir=rtl] .\34xl\:rtl\:-mx-72{margin-left:-18rem!important;margin-right:-18rem!important}[dir=rtl] .\34xl\:rtl\:-my-80{margin-bottom:-20rem!important;margin-top:-20rem!important}[dir=rtl] .\34xl\:rtl\:-mx-80{margin-left:-20rem!important;margin-right:-20rem!important}[dir=rtl] .\34xl\:rtl\:-my-96{margin-bottom:-24rem!important;margin-top:-24rem!important}[dir=rtl] .\34xl\:rtl\:-mx-96{margin-left:-24rem!important;margin-right:-24rem!important}[dir=rtl] .\34xl\:rtl\:-my-px{margin-bottom:-1px!important;margin-top:-1px!important}[dir=rtl] .\34xl\:rtl\:-mx-px{margin-left:-1px!important;margin-right:-1px!important}[dir=rtl] .\34xl\:rtl\:-my-0\.5{margin-bottom:-.125rem!important;margin-top:-.125rem!important}[dir=rtl] .\34xl\:rtl\:-mx-0\.5{margin-left:-.125rem!important;margin-right:-.125rem!important}[dir=rtl] .\34xl\:rtl\:-my-1\.5{margin-bottom:-.375rem!important;margin-top:-.375rem!important}[dir=rtl] .\34xl\:rtl\:-mx-1\.5{margin-left:-.375rem!important;margin-right:-.375rem!important}[dir=rtl] .\34xl\:rtl\:-my-2\.5{margin-bottom:-.625rem!important;margin-top:-.625rem!important}[dir=rtl] .\34xl\:rtl\:-mx-2\.5{margin-left:-.625rem!important;margin-right:-.625rem!important}[dir=rtl] .\34xl\:rtl\:-my-3\.5{margin-bottom:-.875rem!important;margin-top:-.875rem!important}[dir=rtl] .\34xl\:rtl\:-mx-3\.5{margin-left:-.875rem!important;margin-right:-.875rem!important}[dir=rtl] .\34xl\:rtl\:-my-1\/2{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mx-1\/2{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-my-1\/3{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mx-1\/3{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-my-2\/3{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mx-2\/3{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-my-1\/4{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .\34xl\:rtl\:-mx-1\/4{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .\34xl\:rtl\:-my-2\/4{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mx-2\/4{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-my-3\/4{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .\34xl\:rtl\:-mx-3\/4{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .\34xl\:rtl\:-my-1\/5{margin-bottom:-20%!important;margin-top:-20%!important}[dir=rtl] .\34xl\:rtl\:-mx-1\/5{margin-left:-20%!important;margin-right:-20%!important}[dir=rtl] .\34xl\:rtl\:-my-2\/5{margin-bottom:-40%!important;margin-top:-40%!important}[dir=rtl] .\34xl\:rtl\:-mx-2\/5{margin-left:-40%!important;margin-right:-40%!important}[dir=rtl] .\34xl\:rtl\:-my-3\/5{margin-bottom:-60%!important;margin-top:-60%!important}[dir=rtl] .\34xl\:rtl\:-mx-3\/5{margin-left:-60%!important;margin-right:-60%!important}[dir=rtl] .\34xl\:rtl\:-my-4\/5{margin-bottom:-80%!important;margin-top:-80%!important}[dir=rtl] .\34xl\:rtl\:-mx-4\/5{margin-left:-80%!important;margin-right:-80%!important}[dir=rtl] .\34xl\:rtl\:-my-1\/6{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mx-1\/6{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-my-2\/6{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mx-2\/6{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-my-3\/6{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mx-3\/6{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-my-4\/6{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mx-4\/6{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-my-5\/6{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mx-5\/6{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-my-1\/12{margin-bottom:-8.33333%!important;margin-top:-8.33333%!important}[dir=rtl] .\34xl\:rtl\:-mx-1\/12{margin-left:-8.33333%!important;margin-right:-8.33333%!important}[dir=rtl] .\34xl\:rtl\:-my-2\/12{margin-bottom:-16.66667%!important;margin-top:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mx-2\/12{margin-left:-16.66667%!important;margin-right:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-my-3\/12{margin-bottom:-25%!important;margin-top:-25%!important}[dir=rtl] .\34xl\:rtl\:-mx-3\/12{margin-left:-25%!important;margin-right:-25%!important}[dir=rtl] .\34xl\:rtl\:-my-4\/12{margin-bottom:-33.33333%!important;margin-top:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mx-4\/12{margin-left:-33.33333%!important;margin-right:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-my-5\/12{margin-bottom:-41.66667%!important;margin-top:-41.66667%!important}[dir=rtl] .\34xl\:rtl\:-mx-5\/12{margin-left:-41.66667%!important;margin-right:-41.66667%!important}[dir=rtl] .\34xl\:rtl\:-my-6\/12{margin-bottom:-50%!important;margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mx-6\/12{margin-left:-50%!important;margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-my-7\/12{margin-bottom:-58.33333%!important;margin-top:-58.33333%!important}[dir=rtl] .\34xl\:rtl\:-mx-7\/12{margin-left:-58.33333%!important;margin-right:-58.33333%!important}[dir=rtl] .\34xl\:rtl\:-my-8\/12{margin-bottom:-66.66667%!important;margin-top:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mx-8\/12{margin-left:-66.66667%!important;margin-right:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-my-9\/12{margin-bottom:-75%!important;margin-top:-75%!important}[dir=rtl] .\34xl\:rtl\:-mx-9\/12{margin-left:-75%!important;margin-right:-75%!important}[dir=rtl] .\34xl\:rtl\:-my-10\/12{margin-bottom:-83.33333%!important;margin-top:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mx-10\/12{margin-left:-83.33333%!important;margin-right:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-my-11\/12{margin-bottom:-91.66667%!important;margin-top:-91.66667%!important}[dir=rtl] .\34xl\:rtl\:-mx-11\/12{margin-left:-91.66667%!important;margin-right:-91.66667%!important}[dir=rtl] .\34xl\:rtl\:-my-full{margin-bottom:-100%!important;margin-top:-100%!important}[dir=rtl] .\34xl\:rtl\:-mx-full{margin-left:-100%!important;margin-right:-100%!important}[dir=rtl] .\34xl\:rtl\:mt-0{margin-top:0!important}[dir=rtl] .\34xl\:rtl\:mr-0{margin-right:0!important}[dir=rtl] .\34xl\:rtl\:mb-0{margin-bottom:0!important}[dir=rtl] .\34xl\:rtl\:ml-0{margin-left:0!important}[dir=rtl] .\34xl\:rtl\:mt-1{margin-top:.25rem!important}[dir=rtl] .\34xl\:rtl\:mr-1{margin-right:.25rem!important}[dir=rtl] .\34xl\:rtl\:mb-1{margin-bottom:.25rem!important}[dir=rtl] .\34xl\:rtl\:ml-1{margin-left:.25rem!important}[dir=rtl] .\34xl\:rtl\:mt-2{margin-top:.5rem!important}[dir=rtl] .\34xl\:rtl\:mr-2{margin-right:.5rem!important}[dir=rtl] .\34xl\:rtl\:mb-2{margin-bottom:.5rem!important}[dir=rtl] .\34xl\:rtl\:ml-2{margin-left:.5rem!important}[dir=rtl] .\34xl\:rtl\:mt-3{margin-top:.75rem!important}[dir=rtl] .\34xl\:rtl\:mr-3{margin-right:.75rem!important}[dir=rtl] .\34xl\:rtl\:mb-3{margin-bottom:.75rem!important}[dir=rtl] .\34xl\:rtl\:ml-3{margin-left:.75rem!important}[dir=rtl] .\34xl\:rtl\:mt-4{margin-top:1rem!important}[dir=rtl] .\34xl\:rtl\:mr-4{margin-right:1rem!important}[dir=rtl] .\34xl\:rtl\:mb-4{margin-bottom:1rem!important}[dir=rtl] .\34xl\:rtl\:ml-4{margin-left:1rem!important}[dir=rtl] .\34xl\:rtl\:mt-5{margin-top:1.25rem!important}[dir=rtl] .\34xl\:rtl\:mr-5{margin-right:1.25rem!important}[dir=rtl] .\34xl\:rtl\:mb-5{margin-bottom:1.25rem!important}[dir=rtl] .\34xl\:rtl\:ml-5{margin-left:1.25rem!important}[dir=rtl] .\34xl\:rtl\:mt-6{margin-top:1.5rem!important}[dir=rtl] .\34xl\:rtl\:mr-6{margin-right:1.5rem!important}[dir=rtl] .\34xl\:rtl\:mb-6{margin-bottom:1.5rem!important}[dir=rtl] .\34xl\:rtl\:ml-6{margin-left:1.5rem!important}[dir=rtl] .\34xl\:rtl\:mt-7{margin-top:1.75rem!important}[dir=rtl] .\34xl\:rtl\:mr-7{margin-right:1.75rem!important}[dir=rtl] .\34xl\:rtl\:mb-7{margin-bottom:1.75rem!important}[dir=rtl] .\34xl\:rtl\:ml-7{margin-left:1.75rem!important}[dir=rtl] .\34xl\:rtl\:mt-8{margin-top:2rem!important}[dir=rtl] .\34xl\:rtl\:mr-8{margin-right:2rem!important}[dir=rtl] .\34xl\:rtl\:mb-8{margin-bottom:2rem!important}[dir=rtl] .\34xl\:rtl\:ml-8{margin-left:2rem!important}[dir=rtl] .\34xl\:rtl\:mt-9{margin-top:2.25rem!important}[dir=rtl] .\34xl\:rtl\:mr-9{margin-right:2.25rem!important}[dir=rtl] .\34xl\:rtl\:mb-9{margin-bottom:2.25rem!important}[dir=rtl] .\34xl\:rtl\:ml-9{margin-left:2.25rem!important}[dir=rtl] .\34xl\:rtl\:mt-10{margin-top:2.5rem!important}[dir=rtl] .\34xl\:rtl\:mr-10{margin-right:2.5rem!important}[dir=rtl] .\34xl\:rtl\:mb-10{margin-bottom:2.5rem!important}[dir=rtl] .\34xl\:rtl\:ml-10{margin-left:2.5rem!important}[dir=rtl] .\34xl\:rtl\:mt-11{margin-top:2.75rem!important}[dir=rtl] .\34xl\:rtl\:mr-11{margin-right:2.75rem!important}[dir=rtl] .\34xl\:rtl\:mb-11{margin-bottom:2.75rem!important}[dir=rtl] .\34xl\:rtl\:ml-11{margin-left:2.75rem!important}[dir=rtl] .\34xl\:rtl\:mt-12{margin-top:3rem!important}[dir=rtl] .\34xl\:rtl\:mr-12{margin-right:3rem!important}[dir=rtl] .\34xl\:rtl\:mb-12{margin-bottom:3rem!important}[dir=rtl] .\34xl\:rtl\:ml-12{margin-left:3rem!important}[dir=rtl] .\34xl\:rtl\:mt-13{margin-top:3.25rem!important}[dir=rtl] .\34xl\:rtl\:mr-13{margin-right:3.25rem!important}[dir=rtl] .\34xl\:rtl\:mb-13{margin-bottom:3.25rem!important}[dir=rtl] .\34xl\:rtl\:ml-13{margin-left:3.25rem!important}[dir=rtl] .\34xl\:rtl\:mt-14{margin-top:3.5rem!important}[dir=rtl] .\34xl\:rtl\:mr-14{margin-right:3.5rem!important}[dir=rtl] .\34xl\:rtl\:mb-14{margin-bottom:3.5rem!important}[dir=rtl] .\34xl\:rtl\:ml-14{margin-left:3.5rem!important}[dir=rtl] .\34xl\:rtl\:mt-15{margin-top:3.75rem!important}[dir=rtl] .\34xl\:rtl\:mr-15{margin-right:3.75rem!important}[dir=rtl] .\34xl\:rtl\:mb-15{margin-bottom:3.75rem!important}[dir=rtl] .\34xl\:rtl\:ml-15{margin-left:3.75rem!important}[dir=rtl] .\34xl\:rtl\:mt-16{margin-top:4rem!important}[dir=rtl] .\34xl\:rtl\:mr-16{margin-right:4rem!important}[dir=rtl] .\34xl\:rtl\:mb-16{margin-bottom:4rem!important}[dir=rtl] .\34xl\:rtl\:ml-16{margin-left:4rem!important}[dir=rtl] .\34xl\:rtl\:mt-20{margin-top:5rem!important}[dir=rtl] .\34xl\:rtl\:mr-20{margin-right:5rem!important}[dir=rtl] .\34xl\:rtl\:mb-20{margin-bottom:5rem!important}[dir=rtl] .\34xl\:rtl\:ml-20{margin-left:5rem!important}[dir=rtl] .\34xl\:rtl\:mt-24{margin-top:6rem!important}[dir=rtl] .\34xl\:rtl\:mr-24{margin-right:6rem!important}[dir=rtl] .\34xl\:rtl\:mb-24{margin-bottom:6rem!important}[dir=rtl] .\34xl\:rtl\:ml-24{margin-left:6rem!important}[dir=rtl] .\34xl\:rtl\:mt-28{margin-top:7rem!important}[dir=rtl] .\34xl\:rtl\:mr-28{margin-right:7rem!important}[dir=rtl] .\34xl\:rtl\:mb-28{margin-bottom:7rem!important}[dir=rtl] .\34xl\:rtl\:ml-28{margin-left:7rem!important}[dir=rtl] .\34xl\:rtl\:mt-32{margin-top:8rem!important}[dir=rtl] .\34xl\:rtl\:mr-32{margin-right:8rem!important}[dir=rtl] .\34xl\:rtl\:mb-32{margin-bottom:8rem!important}[dir=rtl] .\34xl\:rtl\:ml-32{margin-left:8rem!important}[dir=rtl] .\34xl\:rtl\:mt-36{margin-top:9rem!important}[dir=rtl] .\34xl\:rtl\:mr-36{margin-right:9rem!important}[dir=rtl] .\34xl\:rtl\:mb-36{margin-bottom:9rem!important}[dir=rtl] .\34xl\:rtl\:ml-36{margin-left:9rem!important}[dir=rtl] .\34xl\:rtl\:mt-40{margin-top:10rem!important}[dir=rtl] .\34xl\:rtl\:mr-40{margin-right:10rem!important}[dir=rtl] .\34xl\:rtl\:mb-40{margin-bottom:10rem!important}[dir=rtl] .\34xl\:rtl\:ml-40{margin-left:10rem!important}[dir=rtl] .\34xl\:rtl\:mt-48{margin-top:12rem!important}[dir=rtl] .\34xl\:rtl\:mr-48{margin-right:12rem!important}[dir=rtl] .\34xl\:rtl\:mb-48{margin-bottom:12rem!important}[dir=rtl] .\34xl\:rtl\:ml-48{margin-left:12rem!important}[dir=rtl] .\34xl\:rtl\:mt-56{margin-top:14rem!important}[dir=rtl] .\34xl\:rtl\:mr-56{margin-right:14rem!important}[dir=rtl] .\34xl\:rtl\:mb-56{margin-bottom:14rem!important}[dir=rtl] .\34xl\:rtl\:ml-56{margin-left:14rem!important}[dir=rtl] .\34xl\:rtl\:mt-60{margin-top:15rem!important}[dir=rtl] .\34xl\:rtl\:mr-60{margin-right:15rem!important}[dir=rtl] .\34xl\:rtl\:mb-60{margin-bottom:15rem!important}[dir=rtl] .\34xl\:rtl\:ml-60{margin-left:15rem!important}[dir=rtl] .\34xl\:rtl\:mt-64{margin-top:16rem!important}[dir=rtl] .\34xl\:rtl\:mr-64{margin-right:16rem!important}[dir=rtl] .\34xl\:rtl\:mb-64{margin-bottom:16rem!important}[dir=rtl] .\34xl\:rtl\:ml-64{margin-left:16rem!important}[dir=rtl] .\34xl\:rtl\:mt-72{margin-top:18rem!important}[dir=rtl] .\34xl\:rtl\:mr-72{margin-right:18rem!important}[dir=rtl] .\34xl\:rtl\:mb-72{margin-bottom:18rem!important}[dir=rtl] .\34xl\:rtl\:ml-72{margin-left:18rem!important}[dir=rtl] .\34xl\:rtl\:mt-80{margin-top:20rem!important}[dir=rtl] .\34xl\:rtl\:mr-80{margin-right:20rem!important}[dir=rtl] .\34xl\:rtl\:mb-80{margin-bottom:20rem!important}[dir=rtl] .\34xl\:rtl\:ml-80{margin-left:20rem!important}[dir=rtl] .\34xl\:rtl\:mt-96{margin-top:24rem!important}[dir=rtl] .\34xl\:rtl\:mr-96{margin-right:24rem!important}[dir=rtl] .\34xl\:rtl\:mb-96{margin-bottom:24rem!important}[dir=rtl] .\34xl\:rtl\:ml-96{margin-left:24rem!important}[dir=rtl] .\34xl\:rtl\:mt-auto{margin-top:auto!important}[dir=rtl] .\34xl\:rtl\:mr-auto{margin-right:auto!important}[dir=rtl] .\34xl\:rtl\:mb-auto{margin-bottom:auto!important}[dir=rtl] .\34xl\:rtl\:ml-auto{margin-left:auto!important}[dir=rtl] .\34xl\:rtl\:mt-px{margin-top:1px!important}[dir=rtl] .\34xl\:rtl\:mr-px{margin-right:1px!important}[dir=rtl] .\34xl\:rtl\:mb-px{margin-bottom:1px!important}[dir=rtl] .\34xl\:rtl\:ml-px{margin-left:1px!important}[dir=rtl] .\34xl\:rtl\:mt-0\.5{margin-top:.125rem!important}[dir=rtl] .\34xl\:rtl\:mr-0\.5{margin-right:.125rem!important}[dir=rtl] .\34xl\:rtl\:mb-0\.5{margin-bottom:.125rem!important}[dir=rtl] .\34xl\:rtl\:ml-0\.5{margin-left:.125rem!important}[dir=rtl] .\34xl\:rtl\:mt-1\.5{margin-top:.375rem!important}[dir=rtl] .\34xl\:rtl\:mr-1\.5{margin-right:.375rem!important}[dir=rtl] .\34xl\:rtl\:mb-1\.5{margin-bottom:.375rem!important}[dir=rtl] .\34xl\:rtl\:ml-1\.5{margin-left:.375rem!important}[dir=rtl] .\34xl\:rtl\:mt-2\.5{margin-top:.625rem!important}[dir=rtl] .\34xl\:rtl\:mr-2\.5{margin-right:.625rem!important}[dir=rtl] .\34xl\:rtl\:mb-2\.5{margin-bottom:.625rem!important}[dir=rtl] .\34xl\:rtl\:ml-2\.5{margin-left:.625rem!important}[dir=rtl] .\34xl\:rtl\:mt-3\.5{margin-top:.875rem!important}[dir=rtl] .\34xl\:rtl\:mr-3\.5{margin-right:.875rem!important}[dir=rtl] .\34xl\:rtl\:mb-3\.5{margin-bottom:.875rem!important}[dir=rtl] .\34xl\:rtl\:ml-3\.5{margin-left:.875rem!important}[dir=rtl] .\34xl\:rtl\:mt-1\/2{margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mr-1\/2{margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:mb-1\/2{margin-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:ml-1\/2{margin-left:50%!important}[dir=rtl] .\34xl\:rtl\:mt-1\/3{margin-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mr-1\/3{margin-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mb-1\/3{margin-bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:ml-1\/3{margin-left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mt-2\/3{margin-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mr-2\/3{margin-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mb-2\/3{margin-bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:ml-2\/3{margin-left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mt-1\/4{margin-top:25%!important}[dir=rtl] .\34xl\:rtl\:mr-1\/4{margin-right:25%!important}[dir=rtl] .\34xl\:rtl\:mb-1\/4{margin-bottom:25%!important}[dir=rtl] .\34xl\:rtl\:ml-1\/4{margin-left:25%!important}[dir=rtl] .\34xl\:rtl\:mt-2\/4{margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mr-2\/4{margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:mb-2\/4{margin-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:ml-2\/4{margin-left:50%!important}[dir=rtl] .\34xl\:rtl\:mt-3\/4{margin-top:75%!important}[dir=rtl] .\34xl\:rtl\:mr-3\/4{margin-right:75%!important}[dir=rtl] .\34xl\:rtl\:mb-3\/4{margin-bottom:75%!important}[dir=rtl] .\34xl\:rtl\:ml-3\/4{margin-left:75%!important}[dir=rtl] .\34xl\:rtl\:mt-1\/5{margin-top:20%!important}[dir=rtl] .\34xl\:rtl\:mr-1\/5{margin-right:20%!important}[dir=rtl] .\34xl\:rtl\:mb-1\/5{margin-bottom:20%!important}[dir=rtl] .\34xl\:rtl\:ml-1\/5{margin-left:20%!important}[dir=rtl] .\34xl\:rtl\:mt-2\/5{margin-top:40%!important}[dir=rtl] .\34xl\:rtl\:mr-2\/5{margin-right:40%!important}[dir=rtl] .\34xl\:rtl\:mb-2\/5{margin-bottom:40%!important}[dir=rtl] .\34xl\:rtl\:ml-2\/5{margin-left:40%!important}[dir=rtl] .\34xl\:rtl\:mt-3\/5{margin-top:60%!important}[dir=rtl] .\34xl\:rtl\:mr-3\/5{margin-right:60%!important}[dir=rtl] .\34xl\:rtl\:mb-3\/5{margin-bottom:60%!important}[dir=rtl] .\34xl\:rtl\:ml-3\/5{margin-left:60%!important}[dir=rtl] .\34xl\:rtl\:mt-4\/5{margin-top:80%!important}[dir=rtl] .\34xl\:rtl\:mr-4\/5{margin-right:80%!important}[dir=rtl] .\34xl\:rtl\:mb-4\/5{margin-bottom:80%!important}[dir=rtl] .\34xl\:rtl\:ml-4\/5{margin-left:80%!important}[dir=rtl] .\34xl\:rtl\:mt-1\/6{margin-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mr-1\/6{margin-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mb-1\/6{margin-bottom:16.666667%!important}[dir=rtl] .\34xl\:rtl\:ml-1\/6{margin-left:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mt-2\/6{margin-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mr-2\/6{margin-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mb-2\/6{margin-bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:ml-2\/6{margin-left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mt-3\/6{margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mr-3\/6{margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:mb-3\/6{margin-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:ml-3\/6{margin-left:50%!important}[dir=rtl] .\34xl\:rtl\:mt-4\/6{margin-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mr-4\/6{margin-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mb-4\/6{margin-bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:ml-4\/6{margin-left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mt-5\/6{margin-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mr-5\/6{margin-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mb-5\/6{margin-bottom:83.333333%!important}[dir=rtl] .\34xl\:rtl\:ml-5\/6{margin-left:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mt-1\/12{margin-top:8.333333%!important}[dir=rtl] .\34xl\:rtl\:mr-1\/12{margin-right:8.333333%!important}[dir=rtl] .\34xl\:rtl\:mb-1\/12{margin-bottom:8.333333%!important}[dir=rtl] .\34xl\:rtl\:ml-1\/12{margin-left:8.333333%!important}[dir=rtl] .\34xl\:rtl\:mt-2\/12{margin-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mr-2\/12{margin-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mb-2\/12{margin-bottom:16.666667%!important}[dir=rtl] .\34xl\:rtl\:ml-2\/12{margin-left:16.666667%!important}[dir=rtl] .\34xl\:rtl\:mt-3\/12{margin-top:25%!important}[dir=rtl] .\34xl\:rtl\:mr-3\/12{margin-right:25%!important}[dir=rtl] .\34xl\:rtl\:mb-3\/12{margin-bottom:25%!important}[dir=rtl] .\34xl\:rtl\:ml-3\/12{margin-left:25%!important}[dir=rtl] .\34xl\:rtl\:mt-4\/12{margin-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mr-4\/12{margin-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mb-4\/12{margin-bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:ml-4\/12{margin-left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:mt-5\/12{margin-top:41.666667%!important}[dir=rtl] .\34xl\:rtl\:mr-5\/12{margin-right:41.666667%!important}[dir=rtl] .\34xl\:rtl\:mb-5\/12{margin-bottom:41.666667%!important}[dir=rtl] .\34xl\:rtl\:ml-5\/12{margin-left:41.666667%!important}[dir=rtl] .\34xl\:rtl\:mt-6\/12{margin-top:50%!important}[dir=rtl] .\34xl\:rtl\:mr-6\/12{margin-right:50%!important}[dir=rtl] .\34xl\:rtl\:mb-6\/12{margin-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:ml-6\/12{margin-left:50%!important}[dir=rtl] .\34xl\:rtl\:mt-7\/12{margin-top:58.333333%!important}[dir=rtl] .\34xl\:rtl\:mr-7\/12{margin-right:58.333333%!important}[dir=rtl] .\34xl\:rtl\:mb-7\/12{margin-bottom:58.333333%!important}[dir=rtl] .\34xl\:rtl\:ml-7\/12{margin-left:58.333333%!important}[dir=rtl] .\34xl\:rtl\:mt-8\/12{margin-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mr-8\/12{margin-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mb-8\/12{margin-bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:ml-8\/12{margin-left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:mt-9\/12{margin-top:75%!important}[dir=rtl] .\34xl\:rtl\:mr-9\/12{margin-right:75%!important}[dir=rtl] .\34xl\:rtl\:mb-9\/12{margin-bottom:75%!important}[dir=rtl] .\34xl\:rtl\:ml-9\/12{margin-left:75%!important}[dir=rtl] .\34xl\:rtl\:mt-10\/12{margin-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mr-10\/12{margin-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mb-10\/12{margin-bottom:83.333333%!important}[dir=rtl] .\34xl\:rtl\:ml-10\/12{margin-left:83.333333%!important}[dir=rtl] .\34xl\:rtl\:mt-11\/12{margin-top:91.666667%!important}[dir=rtl] .\34xl\:rtl\:mr-11\/12{margin-right:91.666667%!important}[dir=rtl] .\34xl\:rtl\:mb-11\/12{margin-bottom:91.666667%!important}[dir=rtl] .\34xl\:rtl\:ml-11\/12{margin-left:91.666667%!important}[dir=rtl] .\34xl\:rtl\:mt-full{margin-top:100%!important}[dir=rtl] .\34xl\:rtl\:mr-full{margin-right:100%!important}[dir=rtl] .\34xl\:rtl\:mb-full{margin-bottom:100%!important}[dir=rtl] .\34xl\:rtl\:ml-full{margin-left:100%!important}[dir=rtl] .\34xl\:rtl\:-mt-1{margin-top:-.25rem!important}[dir=rtl] .\34xl\:rtl\:-mr-1{margin-right:-.25rem!important}[dir=rtl] .\34xl\:rtl\:-mb-1{margin-bottom:-.25rem!important}[dir=rtl] .\34xl\:rtl\:-ml-1{margin-left:-.25rem!important}[dir=rtl] .\34xl\:rtl\:-mt-2{margin-top:-.5rem!important}[dir=rtl] .\34xl\:rtl\:-mr-2{margin-right:-.5rem!important}[dir=rtl] .\34xl\:rtl\:-mb-2{margin-bottom:-.5rem!important}[dir=rtl] .\34xl\:rtl\:-ml-2{margin-left:-.5rem!important}[dir=rtl] .\34xl\:rtl\:-mt-3{margin-top:-.75rem!important}[dir=rtl] .\34xl\:rtl\:-mr-3{margin-right:-.75rem!important}[dir=rtl] .\34xl\:rtl\:-mb-3{margin-bottom:-.75rem!important}[dir=rtl] .\34xl\:rtl\:-ml-3{margin-left:-.75rem!important}[dir=rtl] .\34xl\:rtl\:-mt-4{margin-top:-1rem!important}[dir=rtl] .\34xl\:rtl\:-mr-4{margin-right:-1rem!important}[dir=rtl] .\34xl\:rtl\:-mb-4{margin-bottom:-1rem!important}[dir=rtl] .\34xl\:rtl\:-ml-4{margin-left:-1rem!important}[dir=rtl] .\34xl\:rtl\:-mt-5{margin-top:-1.25rem!important}[dir=rtl] .\34xl\:rtl\:-mr-5{margin-right:-1.25rem!important}[dir=rtl] .\34xl\:rtl\:-mb-5{margin-bottom:-1.25rem!important}[dir=rtl] .\34xl\:rtl\:-ml-5{margin-left:-1.25rem!important}[dir=rtl] .\34xl\:rtl\:-mt-6{margin-top:-1.5rem!important}[dir=rtl] .\34xl\:rtl\:-mr-6{margin-right:-1.5rem!important}[dir=rtl] .\34xl\:rtl\:-mb-6{margin-bottom:-1.5rem!important}[dir=rtl] .\34xl\:rtl\:-ml-6{margin-left:-1.5rem!important}[dir=rtl] .\34xl\:rtl\:-mt-7{margin-top:-1.75rem!important}[dir=rtl] .\34xl\:rtl\:-mr-7{margin-right:-1.75rem!important}[dir=rtl] .\34xl\:rtl\:-mb-7{margin-bottom:-1.75rem!important}[dir=rtl] .\34xl\:rtl\:-ml-7{margin-left:-1.75rem!important}[dir=rtl] .\34xl\:rtl\:-mt-8{margin-top:-2rem!important}[dir=rtl] .\34xl\:rtl\:-mr-8{margin-right:-2rem!important}[dir=rtl] .\34xl\:rtl\:-mb-8{margin-bottom:-2rem!important}[dir=rtl] .\34xl\:rtl\:-ml-8{margin-left:-2rem!important}[dir=rtl] .\34xl\:rtl\:-mt-9{margin-top:-2.25rem!important}[dir=rtl] .\34xl\:rtl\:-mr-9{margin-right:-2.25rem!important}[dir=rtl] .\34xl\:rtl\:-mb-9{margin-bottom:-2.25rem!important}[dir=rtl] .\34xl\:rtl\:-ml-9{margin-left:-2.25rem!important}[dir=rtl] .\34xl\:rtl\:-mt-10{margin-top:-2.5rem!important}[dir=rtl] .\34xl\:rtl\:-mr-10{margin-right:-2.5rem!important}[dir=rtl] .\34xl\:rtl\:-mb-10{margin-bottom:-2.5rem!important}[dir=rtl] .\34xl\:rtl\:-ml-10{margin-left:-2.5rem!important}[dir=rtl] .\34xl\:rtl\:-mt-11{margin-top:-2.75rem!important}[dir=rtl] .\34xl\:rtl\:-mr-11{margin-right:-2.75rem!important}[dir=rtl] .\34xl\:rtl\:-mb-11{margin-bottom:-2.75rem!important}[dir=rtl] .\34xl\:rtl\:-ml-11{margin-left:-2.75rem!important}[dir=rtl] .\34xl\:rtl\:-mt-12{margin-top:-3rem!important}[dir=rtl] .\34xl\:rtl\:-mr-12{margin-right:-3rem!important}[dir=rtl] .\34xl\:rtl\:-mb-12{margin-bottom:-3rem!important}[dir=rtl] .\34xl\:rtl\:-ml-12{margin-left:-3rem!important}[dir=rtl] .\34xl\:rtl\:-mt-13{margin-top:-3.25rem!important}[dir=rtl] .\34xl\:rtl\:-mr-13{margin-right:-3.25rem!important}[dir=rtl] .\34xl\:rtl\:-mb-13{margin-bottom:-3.25rem!important}[dir=rtl] .\34xl\:rtl\:-ml-13{margin-left:-3.25rem!important}[dir=rtl] .\34xl\:rtl\:-mt-14{margin-top:-3.5rem!important}[dir=rtl] .\34xl\:rtl\:-mr-14{margin-right:-3.5rem!important}[dir=rtl] .\34xl\:rtl\:-mb-14{margin-bottom:-3.5rem!important}[dir=rtl] .\34xl\:rtl\:-ml-14{margin-left:-3.5rem!important}[dir=rtl] .\34xl\:rtl\:-mt-15{margin-top:-3.75rem!important}[dir=rtl] .\34xl\:rtl\:-mr-15{margin-right:-3.75rem!important}[dir=rtl] .\34xl\:rtl\:-mb-15{margin-bottom:-3.75rem!important}[dir=rtl] .\34xl\:rtl\:-ml-15{margin-left:-3.75rem!important}[dir=rtl] .\34xl\:rtl\:-mt-16{margin-top:-4rem!important}[dir=rtl] .\34xl\:rtl\:-mr-16{margin-right:-4rem!important}[dir=rtl] .\34xl\:rtl\:-mb-16{margin-bottom:-4rem!important}[dir=rtl] .\34xl\:rtl\:-ml-16{margin-left:-4rem!important}[dir=rtl] .\34xl\:rtl\:-mt-20{margin-top:-5rem!important}[dir=rtl] .\34xl\:rtl\:-mr-20{margin-right:-5rem!important}[dir=rtl] .\34xl\:rtl\:-mb-20{margin-bottom:-5rem!important}[dir=rtl] .\34xl\:rtl\:-ml-20{margin-left:-5rem!important}[dir=rtl] .\34xl\:rtl\:-mt-24{margin-top:-6rem!important}[dir=rtl] .\34xl\:rtl\:-mr-24{margin-right:-6rem!important}[dir=rtl] .\34xl\:rtl\:-mb-24{margin-bottom:-6rem!important}[dir=rtl] .\34xl\:rtl\:-ml-24{margin-left:-6rem!important}[dir=rtl] .\34xl\:rtl\:-mt-28{margin-top:-7rem!important}[dir=rtl] .\34xl\:rtl\:-mr-28{margin-right:-7rem!important}[dir=rtl] .\34xl\:rtl\:-mb-28{margin-bottom:-7rem!important}[dir=rtl] .\34xl\:rtl\:-ml-28{margin-left:-7rem!important}[dir=rtl] .\34xl\:rtl\:-mt-32{margin-top:-8rem!important}[dir=rtl] .\34xl\:rtl\:-mr-32{margin-right:-8rem!important}[dir=rtl] .\34xl\:rtl\:-mb-32{margin-bottom:-8rem!important}[dir=rtl] .\34xl\:rtl\:-ml-32{margin-left:-8rem!important}[dir=rtl] .\34xl\:rtl\:-mt-36{margin-top:-9rem!important}[dir=rtl] .\34xl\:rtl\:-mr-36{margin-right:-9rem!important}[dir=rtl] .\34xl\:rtl\:-mb-36{margin-bottom:-9rem!important}[dir=rtl] .\34xl\:rtl\:-ml-36{margin-left:-9rem!important}[dir=rtl] .\34xl\:rtl\:-mt-40{margin-top:-10rem!important}[dir=rtl] .\34xl\:rtl\:-mr-40{margin-right:-10rem!important}[dir=rtl] .\34xl\:rtl\:-mb-40{margin-bottom:-10rem!important}[dir=rtl] .\34xl\:rtl\:-ml-40{margin-left:-10rem!important}[dir=rtl] .\34xl\:rtl\:-mt-48{margin-top:-12rem!important}[dir=rtl] .\34xl\:rtl\:-mr-48{margin-right:-12rem!important}[dir=rtl] .\34xl\:rtl\:-mb-48{margin-bottom:-12rem!important}[dir=rtl] .\34xl\:rtl\:-ml-48{margin-left:-12rem!important}[dir=rtl] .\34xl\:rtl\:-mt-56{margin-top:-14rem!important}[dir=rtl] .\34xl\:rtl\:-mr-56{margin-right:-14rem!important}[dir=rtl] .\34xl\:rtl\:-mb-56{margin-bottom:-14rem!important}[dir=rtl] .\34xl\:rtl\:-ml-56{margin-left:-14rem!important}[dir=rtl] .\34xl\:rtl\:-mt-60{margin-top:-15rem!important}[dir=rtl] .\34xl\:rtl\:-mr-60{margin-right:-15rem!important}[dir=rtl] .\34xl\:rtl\:-mb-60{margin-bottom:-15rem!important}[dir=rtl] .\34xl\:rtl\:-ml-60{margin-left:-15rem!important}[dir=rtl] .\34xl\:rtl\:-mt-64{margin-top:-16rem!important}[dir=rtl] .\34xl\:rtl\:-mr-64{margin-right:-16rem!important}[dir=rtl] .\34xl\:rtl\:-mb-64{margin-bottom:-16rem!important}[dir=rtl] .\34xl\:rtl\:-ml-64{margin-left:-16rem!important}[dir=rtl] .\34xl\:rtl\:-mt-72{margin-top:-18rem!important}[dir=rtl] .\34xl\:rtl\:-mr-72{margin-right:-18rem!important}[dir=rtl] .\34xl\:rtl\:-mb-72{margin-bottom:-18rem!important}[dir=rtl] .\34xl\:rtl\:-ml-72{margin-left:-18rem!important}[dir=rtl] .\34xl\:rtl\:-mt-80{margin-top:-20rem!important}[dir=rtl] .\34xl\:rtl\:-mr-80{margin-right:-20rem!important}[dir=rtl] .\34xl\:rtl\:-mb-80{margin-bottom:-20rem!important}[dir=rtl] .\34xl\:rtl\:-ml-80{margin-left:-20rem!important}[dir=rtl] .\34xl\:rtl\:-mt-96{margin-top:-24rem!important}[dir=rtl] .\34xl\:rtl\:-mr-96{margin-right:-24rem!important}[dir=rtl] .\34xl\:rtl\:-mb-96{margin-bottom:-24rem!important}[dir=rtl] .\34xl\:rtl\:-ml-96{margin-left:-24rem!important}[dir=rtl] .\34xl\:rtl\:-mt-px{margin-top:-1px!important}[dir=rtl] .\34xl\:rtl\:-mr-px{margin-right:-1px!important}[dir=rtl] .\34xl\:rtl\:-mb-px{margin-bottom:-1px!important}[dir=rtl] .\34xl\:rtl\:-ml-px{margin-left:-1px!important}[dir=rtl] .\34xl\:rtl\:-mt-0\.5{margin-top:-.125rem!important}[dir=rtl] .\34xl\:rtl\:-mr-0\.5{margin-right:-.125rem!important}[dir=rtl] .\34xl\:rtl\:-mb-0\.5{margin-bottom:-.125rem!important}[dir=rtl] .\34xl\:rtl\:-ml-0\.5{margin-left:-.125rem!important}[dir=rtl] .\34xl\:rtl\:-mt-1\.5{margin-top:-.375rem!important}[dir=rtl] .\34xl\:rtl\:-mr-1\.5{margin-right:-.375rem!important}[dir=rtl] .\34xl\:rtl\:-mb-1\.5{margin-bottom:-.375rem!important}[dir=rtl] .\34xl\:rtl\:-ml-1\.5{margin-left:-.375rem!important}[dir=rtl] .\34xl\:rtl\:-mt-2\.5{margin-top:-.625rem!important}[dir=rtl] .\34xl\:rtl\:-mr-2\.5{margin-right:-.625rem!important}[dir=rtl] .\34xl\:rtl\:-mb-2\.5{margin-bottom:-.625rem!important}[dir=rtl] .\34xl\:rtl\:-ml-2\.5{margin-left:-.625rem!important}[dir=rtl] .\34xl\:rtl\:-mt-3\.5{margin-top:-.875rem!important}[dir=rtl] .\34xl\:rtl\:-mr-3\.5{margin-right:-.875rem!important}[dir=rtl] .\34xl\:rtl\:-mb-3\.5{margin-bottom:-.875rem!important}[dir=rtl] .\34xl\:rtl\:-ml-3\.5{margin-left:-.875rem!important}[dir=rtl] .\34xl\:rtl\:-mt-1\/2{margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mr-1\/2{margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-mb-1\/2{margin-bottom:-50%!important}[dir=rtl] .\34xl\:rtl\:-ml-1\/2{margin-left:-50%!important}[dir=rtl] .\34xl\:rtl\:-mt-1\/3{margin-top:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mr-1\/3{margin-right:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mb-1\/3{margin-bottom:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-ml-1\/3{margin-left:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mt-2\/3{margin-top:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mr-2\/3{margin-right:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mb-2\/3{margin-bottom:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-ml-2\/3{margin-left:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mt-1\/4{margin-top:-25%!important}[dir=rtl] .\34xl\:rtl\:-mr-1\/4{margin-right:-25%!important}[dir=rtl] .\34xl\:rtl\:-mb-1\/4{margin-bottom:-25%!important}[dir=rtl] .\34xl\:rtl\:-ml-1\/4{margin-left:-25%!important}[dir=rtl] .\34xl\:rtl\:-mt-2\/4{margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mr-2\/4{margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-mb-2\/4{margin-bottom:-50%!important}[dir=rtl] .\34xl\:rtl\:-ml-2\/4{margin-left:-50%!important}[dir=rtl] .\34xl\:rtl\:-mt-3\/4{margin-top:-75%!important}[dir=rtl] .\34xl\:rtl\:-mr-3\/4{margin-right:-75%!important}[dir=rtl] .\34xl\:rtl\:-mb-3\/4{margin-bottom:-75%!important}[dir=rtl] .\34xl\:rtl\:-ml-3\/4{margin-left:-75%!important}[dir=rtl] .\34xl\:rtl\:-mt-1\/5{margin-top:-20%!important}[dir=rtl] .\34xl\:rtl\:-mr-1\/5{margin-right:-20%!important}[dir=rtl] .\34xl\:rtl\:-mb-1\/5{margin-bottom:-20%!important}[dir=rtl] .\34xl\:rtl\:-ml-1\/5{margin-left:-20%!important}[dir=rtl] .\34xl\:rtl\:-mt-2\/5{margin-top:-40%!important}[dir=rtl] .\34xl\:rtl\:-mr-2\/5{margin-right:-40%!important}[dir=rtl] .\34xl\:rtl\:-mb-2\/5{margin-bottom:-40%!important}[dir=rtl] .\34xl\:rtl\:-ml-2\/5{margin-left:-40%!important}[dir=rtl] .\34xl\:rtl\:-mt-3\/5{margin-top:-60%!important}[dir=rtl] .\34xl\:rtl\:-mr-3\/5{margin-right:-60%!important}[dir=rtl] .\34xl\:rtl\:-mb-3\/5{margin-bottom:-60%!important}[dir=rtl] .\34xl\:rtl\:-ml-3\/5{margin-left:-60%!important}[dir=rtl] .\34xl\:rtl\:-mt-4\/5{margin-top:-80%!important}[dir=rtl] .\34xl\:rtl\:-mr-4\/5{margin-right:-80%!important}[dir=rtl] .\34xl\:rtl\:-mb-4\/5{margin-bottom:-80%!important}[dir=rtl] .\34xl\:rtl\:-ml-4\/5{margin-left:-80%!important}[dir=rtl] .\34xl\:rtl\:-mt-1\/6{margin-top:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mr-1\/6{margin-right:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mb-1\/6{margin-bottom:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-ml-1\/6{margin-left:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mt-2\/6{margin-top:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mr-2\/6{margin-right:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mb-2\/6{margin-bottom:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-ml-2\/6{margin-left:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mt-3\/6{margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mr-3\/6{margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-mb-3\/6{margin-bottom:-50%!important}[dir=rtl] .\34xl\:rtl\:-ml-3\/6{margin-left:-50%!important}[dir=rtl] .\34xl\:rtl\:-mt-4\/6{margin-top:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mr-4\/6{margin-right:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mb-4\/6{margin-bottom:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-ml-4\/6{margin-left:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mt-5\/6{margin-top:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mr-5\/6{margin-right:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mb-5\/6{margin-bottom:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-ml-5\/6{margin-left:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mt-1\/12{margin-top:-8.33333%!important}[dir=rtl] .\34xl\:rtl\:-mr-1\/12{margin-right:-8.33333%!important}[dir=rtl] .\34xl\:rtl\:-mb-1\/12{margin-bottom:-8.33333%!important}[dir=rtl] .\34xl\:rtl\:-ml-1\/12{margin-left:-8.33333%!important}[dir=rtl] .\34xl\:rtl\:-mt-2\/12{margin-top:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mr-2\/12{margin-right:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mb-2\/12{margin-bottom:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-ml-2\/12{margin-left:-16.66667%!important}[dir=rtl] .\34xl\:rtl\:-mt-3\/12{margin-top:-25%!important}[dir=rtl] .\34xl\:rtl\:-mr-3\/12{margin-right:-25%!important}[dir=rtl] .\34xl\:rtl\:-mb-3\/12{margin-bottom:-25%!important}[dir=rtl] .\34xl\:rtl\:-ml-3\/12{margin-left:-25%!important}[dir=rtl] .\34xl\:rtl\:-mt-4\/12{margin-top:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mr-4\/12{margin-right:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mb-4\/12{margin-bottom:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-ml-4\/12{margin-left:-33.33333%!important}[dir=rtl] .\34xl\:rtl\:-mt-5\/12{margin-top:-41.66667%!important}[dir=rtl] .\34xl\:rtl\:-mr-5\/12{margin-right:-41.66667%!important}[dir=rtl] .\34xl\:rtl\:-mb-5\/12{margin-bottom:-41.66667%!important}[dir=rtl] .\34xl\:rtl\:-ml-5\/12{margin-left:-41.66667%!important}[dir=rtl] .\34xl\:rtl\:-mt-6\/12{margin-top:-50%!important}[dir=rtl] .\34xl\:rtl\:-mr-6\/12{margin-right:-50%!important}[dir=rtl] .\34xl\:rtl\:-mb-6\/12{margin-bottom:-50%!important}[dir=rtl] .\34xl\:rtl\:-ml-6\/12{margin-left:-50%!important}[dir=rtl] .\34xl\:rtl\:-mt-7\/12{margin-top:-58.33333%!important}[dir=rtl] .\34xl\:rtl\:-mr-7\/12{margin-right:-58.33333%!important}[dir=rtl] .\34xl\:rtl\:-mb-7\/12{margin-bottom:-58.33333%!important}[dir=rtl] .\34xl\:rtl\:-ml-7\/12{margin-left:-58.33333%!important}[dir=rtl] .\34xl\:rtl\:-mt-8\/12{margin-top:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mr-8\/12{margin-right:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mb-8\/12{margin-bottom:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-ml-8\/12{margin-left:-66.66667%!important}[dir=rtl] .\34xl\:rtl\:-mt-9\/12{margin-top:-75%!important}[dir=rtl] .\34xl\:rtl\:-mr-9\/12{margin-right:-75%!important}[dir=rtl] .\34xl\:rtl\:-mb-9\/12{margin-bottom:-75%!important}[dir=rtl] .\34xl\:rtl\:-ml-9\/12{margin-left:-75%!important}[dir=rtl] .\34xl\:rtl\:-mt-10\/12{margin-top:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mr-10\/12{margin-right:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mb-10\/12{margin-bottom:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-ml-10\/12{margin-left:-83.33333%!important}[dir=rtl] .\34xl\:rtl\:-mt-11\/12{margin-top:-91.66667%!important}[dir=rtl] .\34xl\:rtl\:-mr-11\/12{margin-right:-91.66667%!important}[dir=rtl] .\34xl\:rtl\:-mb-11\/12{margin-bottom:-91.66667%!important}[dir=rtl] .\34xl\:rtl\:-ml-11\/12{margin-left:-91.66667%!important}[dir=rtl] .\34xl\:rtl\:-mt-full{margin-top:-100%!important}[dir=rtl] .\34xl\:rtl\:-mr-full{margin-right:-100%!important}[dir=rtl] .\34xl\:rtl\:-mb-full{margin-bottom:-100%!important}[dir=rtl] .\34xl\:rtl\:-ml-full{margin-left:-100%!important}.\34xl\:max-h-0{max-height:0!important}.\34xl\:max-h-1{max-height:.25rem!important}.\34xl\:max-h-2{max-height:.5rem!important}.\34xl\:max-h-3{max-height:.75rem!important}.\34xl\:max-h-4{max-height:1rem!important}.\34xl\:max-h-5{max-height:1.25rem!important}.\34xl\:max-h-6{max-height:1.5rem!important}.\34xl\:max-h-7{max-height:1.75rem!important}.\34xl\:max-h-8{max-height:2rem!important}.\34xl\:max-h-9{max-height:2.25rem!important}.\34xl\:max-h-10{max-height:2.5rem!important}.\34xl\:max-h-11{max-height:2.75rem!important}.\34xl\:max-h-12{max-height:3rem!important}.\34xl\:max-h-13{max-height:3.25rem!important}.\34xl\:max-h-14{max-height:3.5rem!important}.\34xl\:max-h-15{max-height:3.75rem!important}.\34xl\:max-h-16{max-height:4rem!important}.\34xl\:max-h-20{max-height:5rem!important}.\34xl\:max-h-24{max-height:6rem!important}.\34xl\:max-h-28{max-height:7rem!important}.\34xl\:max-h-32{max-height:8rem!important}.\34xl\:max-h-36{max-height:9rem!important}.\34xl\:max-h-40{max-height:10rem!important}.\34xl\:max-h-48{max-height:12rem!important}.\34xl\:max-h-56{max-height:14rem!important}.\34xl\:max-h-60{max-height:15rem!important}.\34xl\:max-h-64{max-height:16rem!important}.\34xl\:max-h-72{max-height:18rem!important}.\34xl\:max-h-80{max-height:20rem!important}.\34xl\:max-h-96{max-height:24rem!important}.\34xl\:max-h-screen{max-height:100vh!important}.\34xl\:max-h-px{max-height:1px!important}.\34xl\:max-h-0\.5{max-height:.125rem!important}.\34xl\:max-h-1\.5{max-height:.375rem!important}.\34xl\:max-h-2\.5{max-height:.625rem!important}.\34xl\:max-h-3\.5{max-height:.875rem!important}.\34xl\:max-h-1\/2{max-height:50%!important}.\34xl\:max-h-1\/3{max-height:33.333333%!important}.\34xl\:max-h-2\/3{max-height:66.666667%!important}.\34xl\:max-h-1\/4{max-height:25%!important}.\34xl\:max-h-2\/4{max-height:50%!important}.\34xl\:max-h-3\/4{max-height:75%!important}.\34xl\:max-h-1\/5{max-height:20%!important}.\34xl\:max-h-2\/5{max-height:40%!important}.\34xl\:max-h-3\/5{max-height:60%!important}.\34xl\:max-h-4\/5{max-height:80%!important}.\34xl\:max-h-1\/6{max-height:16.666667%!important}.\34xl\:max-h-2\/6{max-height:33.333333%!important}.\34xl\:max-h-3\/6{max-height:50%!important}.\34xl\:max-h-4\/6{max-height:66.666667%!important}.\34xl\:max-h-5\/6{max-height:83.333333%!important}.\34xl\:max-h-1\/12{max-height:8.333333%!important}.\34xl\:max-h-2\/12{max-height:16.666667%!important}.\34xl\:max-h-3\/12{max-height:25%!important}.\34xl\:max-h-4\/12{max-height:33.333333%!important}.\34xl\:max-h-5\/12{max-height:41.666667%!important}.\34xl\:max-h-6\/12{max-height:50%!important}.\34xl\:max-h-7\/12{max-height:58.333333%!important}.\34xl\:max-h-8\/12{max-height:66.666667%!important}.\34xl\:max-h-9\/12{max-height:75%!important}.\34xl\:max-h-10\/12{max-height:83.333333%!important}.\34xl\:max-h-11\/12{max-height:91.666667%!important}.\34xl\:max-h-full{max-height:100%!important}.\34xl\:max-h-6xl{max-height:6rem!important}.\34xl\:max-w-none{max-width:none!important}.\34xl\:max-w-xs{max-width:20rem!important}.\34xl\:max-w-sm{max-width:24rem!important}.\34xl\:max-w-md{max-width:28rem!important}.\34xl\:max-w-lg{max-width:32rem!important}.\34xl\:max-w-xl{max-width:36rem!important}.\34xl\:max-w-2xl{max-width:42rem!important}.\34xl\:max-w-3xl{max-width:48rem!important}.\34xl\:max-w-4xl{max-width:56rem!important}.\34xl\:max-w-5xl{max-width:64rem!important}.\34xl\:max-w-6xl{max-width:72rem!important}.\34xl\:max-w-7xl{max-width:80rem!important}.\34xl\:max-w-full{max-width:100%!important}.\34xl\:max-w-screen-sm{max-width:600px!important}.\34xl\:max-w-screen-md{max-width:1024px!important}.\34xl\:max-w-screen-lg{max-width:1280px!important}.\34xl\:max-w-screen-xl{max-width:1536px!important}.\34xl\:max-w-screen-2xl{max-width:1400px!important}.\34xl\:max-w-screen-3xl{max-width:1800px!important}.\34xl\:max-w-screen-4xl{max-width:2200px!important}.\34xl\:min-h-0{min-height:0!important}.\34xl\:min-h-full{min-height:100%!important}.\34xl\:min-h-screen{min-height:100vh!important}.\34xl\:min-h-half{min-height:50vh!important}.\34xl\:min-w-0{min-width:0!important}.\34xl\:min-w-full{min-width:100%!important}.\34xl\:object-contain{-o-object-fit:contain!important;object-fit:contain!important}.\34xl\:object-cover{-o-object-fit:cover!important;object-fit:cover!important}.\34xl\:object-fill{-o-object-fit:fill!important;object-fit:fill!important}.\34xl\:object-none{-o-object-fit:none!important;object-fit:none!important}.\34xl\:object-scale-down{-o-object-fit:scale-down!important;object-fit:scale-down!important}.\34xl\:object-bottom{-o-object-position:bottom!important;object-position:bottom!important}.\34xl\:object-center{-o-object-position:center!important;object-position:center!important}.\34xl\:object-left{-o-object-position:left!important;object-position:left!important}.\34xl\:object-left-bottom{-o-object-position:left bottom!important;object-position:left bottom!important}.\34xl\:object-left-top{-o-object-position:left top!important;object-position:left top!important}.\34xl\:object-right{-o-object-position:right!important;object-position:right!important}.\34xl\:object-right-bottom{-o-object-position:right bottom!important;object-position:right bottom!important}.\34xl\:object-right-top{-o-object-position:right top!important;object-position:right top!important}.\34xl\:object-top{-o-object-position:top!important;object-position:top!important}.\34xl\:opacity-0{opacity:0!important}.\34xl\:opacity-25{opacity:.25!important}.\34xl\:opacity-50{opacity:.5!important}.\34xl\:opacity-75{opacity:.75!important}.\34xl\:opacity-100{opacity:1!important}.\34xl\:hover\:opacity-0:hover{opacity:0!important}.\34xl\:hover\:opacity-25:hover{opacity:.25!important}.\34xl\:hover\:opacity-50:hover{opacity:.5!important}.\34xl\:hover\:opacity-75:hover{opacity:.75!important}.\34xl\:hover\:opacity-100:hover{opacity:1!important}.\34xl\:focus\:opacity-0:focus{opacity:0!important}.\34xl\:focus\:opacity-25:focus{opacity:.25!important}.\34xl\:focus\:opacity-50:focus{opacity:.5!important}.\34xl\:focus\:opacity-75:focus{opacity:.75!important}.\34xl\:focus\:opacity-100:focus{opacity:1!important}.\34xl\:outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.\34xl\:outline-white{outline:2px dotted #fff!important;outline-offset:2px!important}.\34xl\:outline-black{outline:2px dotted #000!important;outline-offset:2px!important}.\34xl\:focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.\34xl\:focus\:outline-white:focus{outline:2px dotted #fff!important;outline-offset:2px!important}.\34xl\:focus\:outline-black:focus{outline:2px dotted #000!important;outline-offset:2px!important}.\34xl\:overflow-auto{overflow:auto!important}.\34xl\:overflow-hidden{overflow:hidden!important}.\34xl\:overflow-visible{overflow:visible!important}.\34xl\:overflow-scroll{overflow:scroll!important}.\34xl\:overflow-x-auto{overflow-x:auto!important}.\34xl\:overflow-y-auto{overflow-y:auto!important}.\34xl\:overflow-x-hidden{overflow-x:hidden!important}.\34xl\:overflow-y-hidden{overflow-y:hidden!important}.\34xl\:overflow-x-visible{overflow-x:visible!important}.\34xl\:overflow-y-visible{overflow-y:visible!important}.\34xl\:overflow-x-scroll{overflow-x:scroll!important}.\34xl\:overflow-y-scroll{overflow-y:scroll!important}.\34xl\:scrolling-touch{-webkit-overflow-scrolling:touch!important}.\34xl\:scrolling-auto{-webkit-overflow-scrolling:auto!important}.\34xl\:overscroll-auto{overscroll-behavior:auto!important}.\34xl\:overscroll-contain{overscroll-behavior:contain!important}.\34xl\:overscroll-none{overscroll-behavior:none!important}.\34xl\:overscroll-y-auto{overscroll-behavior-y:auto!important}.\34xl\:overscroll-y-contain{overscroll-behavior-y:contain!important}.\34xl\:overscroll-y-none{overscroll-behavior-y:none!important}.\34xl\:overscroll-x-auto{overscroll-behavior-x:auto!important}.\34xl\:overscroll-x-contain{overscroll-behavior-x:contain!important}.\34xl\:overscroll-x-none{overscroll-behavior-x:none!important}.\34xl\:p-0{padding:0!important}.\34xl\:p-1{padding:.25rem!important}.\34xl\:p-2{padding:.5rem!important}.\34xl\:p-3{padding:.75rem!important}.\34xl\:p-4{padding:1rem!important}.\34xl\:p-5{padding:1.25rem!important}.\34xl\:p-6{padding:1.5rem!important}.\34xl\:p-7{padding:1.75rem!important}.\34xl\:p-8{padding:2rem!important}.\34xl\:p-9{padding:2.25rem!important}.\34xl\:p-10{padding:2.5rem!important}.\34xl\:p-11{padding:2.75rem!important}.\34xl\:p-12{padding:3rem!important}.\34xl\:p-13{padding:3.25rem!important}.\34xl\:p-14{padding:3.5rem!important}.\34xl\:p-15{padding:3.75rem!important}.\34xl\:p-16{padding:4rem!important}.\34xl\:p-20{padding:5rem!important}.\34xl\:p-24{padding:6rem!important}.\34xl\:p-28{padding:7rem!important}.\34xl\:p-32{padding:8rem!important}.\34xl\:p-36{padding:9rem!important}.\34xl\:p-40{padding:10rem!important}.\34xl\:p-48{padding:12rem!important}.\34xl\:p-56{padding:14rem!important}.\34xl\:p-60{padding:15rem!important}.\34xl\:p-64{padding:16rem!important}.\34xl\:p-72{padding:18rem!important}.\34xl\:p-80{padding:20rem!important}.\34xl\:p-96{padding:24rem!important}.\34xl\:p-px{padding:1px!important}.\34xl\:p-0\.5{padding:.125rem!important}.\34xl\:p-1\.5{padding:.375rem!important}.\34xl\:p-2\.5{padding:.625rem!important}.\34xl\:p-3\.5{padding:.875rem!important}.\34xl\:p-1\/2{padding:50%!important}.\34xl\:p-1\/3{padding:33.333333%!important}.\34xl\:p-2\/3{padding:66.666667%!important}.\34xl\:p-1\/4{padding:25%!important}.\34xl\:p-2\/4{padding:50%!important}.\34xl\:p-3\/4{padding:75%!important}.\34xl\:p-1\/5{padding:20%!important}.\34xl\:p-2\/5{padding:40%!important}.\34xl\:p-3\/5{padding:60%!important}.\34xl\:p-4\/5{padding:80%!important}.\34xl\:p-1\/6{padding:16.666667%!important}.\34xl\:p-2\/6{padding:33.333333%!important}.\34xl\:p-3\/6{padding:50%!important}.\34xl\:p-4\/6{padding:66.666667%!important}.\34xl\:p-5\/6{padding:83.333333%!important}.\34xl\:p-1\/12{padding:8.333333%!important}.\34xl\:p-2\/12{padding:16.666667%!important}.\34xl\:p-3\/12{padding:25%!important}.\34xl\:p-4\/12{padding:33.333333%!important}.\34xl\:p-5\/12{padding:41.666667%!important}.\34xl\:p-6\/12{padding:50%!important}.\34xl\:p-7\/12{padding:58.333333%!important}.\34xl\:p-8\/12{padding:66.666667%!important}.\34xl\:p-9\/12{padding:75%!important}.\34xl\:p-10\/12{padding:83.333333%!important}.\34xl\:p-11\/12{padding:91.666667%!important}.\34xl\:p-full{padding:100%!important}.\34xl\:py-0{padding-bottom:0!important;padding-top:0!important}.\34xl\:px-0{padding-left:0!important;padding-right:0!important}.\34xl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.\34xl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.\34xl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.\34xl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.\34xl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}.\34xl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}.\34xl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}.\34xl\:px-4{padding-left:1rem!important;padding-right:1rem!important}.\34xl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}.\34xl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.\34xl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.\34xl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.\34xl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}.\34xl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.\34xl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}.\34xl\:px-8{padding-left:2rem!important;padding-right:2rem!important}.\34xl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}.\34xl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.\34xl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}.\34xl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.\34xl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}.\34xl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.\34xl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}.\34xl\:px-12{padding-left:3rem!important;padding-right:3rem!important}.\34xl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}.\34xl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}.\34xl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}.\34xl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.\34xl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}.\34xl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}.\34xl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}.\34xl\:px-16{padding-left:4rem!important;padding-right:4rem!important}.\34xl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}.\34xl\:px-20{padding-left:5rem!important;padding-right:5rem!important}.\34xl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}.\34xl\:px-24{padding-left:6rem!important;padding-right:6rem!important}.\34xl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}.\34xl\:px-28{padding-left:7rem!important;padding-right:7rem!important}.\34xl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}.\34xl\:px-32{padding-left:8rem!important;padding-right:8rem!important}.\34xl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}.\34xl\:px-36{padding-left:9rem!important;padding-right:9rem!important}.\34xl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}.\34xl\:px-40{padding-left:10rem!important;padding-right:10rem!important}.\34xl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}.\34xl\:px-48{padding-left:12rem!important;padding-right:12rem!important}.\34xl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}.\34xl\:px-56{padding-left:14rem!important;padding-right:14rem!important}.\34xl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}.\34xl\:px-60{padding-left:15rem!important;padding-right:15rem!important}.\34xl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}.\34xl\:px-64{padding-left:16rem!important;padding-right:16rem!important}.\34xl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}.\34xl\:px-72{padding-left:18rem!important;padding-right:18rem!important}.\34xl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}.\34xl\:px-80{padding-left:20rem!important;padding-right:20rem!important}.\34xl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}.\34xl\:px-96{padding-left:24rem!important;padding-right:24rem!important}.\34xl\:py-px{padding-bottom:1px!important;padding-top:1px!important}.\34xl\:px-px{padding-left:1px!important;padding-right:1px!important}.\34xl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}.\34xl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.\34xl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}.\34xl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.\34xl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}.\34xl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.\34xl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}.\34xl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.\34xl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}.\34xl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}.\34xl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\34xl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}.\34xl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\34xl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}.\34xl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}.\34xl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}.\34xl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}.\34xl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}.\34xl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}.\34xl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}.\34xl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}.\34xl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}.\34xl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}.\34xl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}.\34xl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}.\34xl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}.\34xl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}.\34xl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}.\34xl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.\34xl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}.\34xl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\34xl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}.\34xl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}.\34xl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}.\34xl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\34xl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}.\34xl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.\34xl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}.\34xl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}.\34xl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}.\34xl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}.\34xl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}.\34xl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}.\34xl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}.\34xl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}.\34xl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}.\34xl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}.\34xl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}.\34xl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}.\34xl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}.\34xl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}.\34xl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}.\34xl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}.\34xl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}.\34xl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}.\34xl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}.\34xl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}.\34xl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}.\34xl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}.\34xl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}.\34xl\:py-full{padding-bottom:100%!important;padding-top:100%!important}.\34xl\:px-full{padding-left:100%!important;padding-right:100%!important}.\34xl\:pt-0{padding-top:0!important}.\34xl\:pr-0{padding-right:0!important}.\34xl\:pb-0{padding-bottom:0!important}.\34xl\:pl-0{padding-left:0!important}.\34xl\:pt-1{padding-top:.25rem!important}.\34xl\:pr-1{padding-right:.25rem!important}.\34xl\:pb-1{padding-bottom:.25rem!important}.\34xl\:pl-1{padding-left:.25rem!important}.\34xl\:pt-2{padding-top:.5rem!important}.\34xl\:pr-2{padding-right:.5rem!important}.\34xl\:pb-2{padding-bottom:.5rem!important}.\34xl\:pl-2{padding-left:.5rem!important}.\34xl\:pt-3{padding-top:.75rem!important}.\34xl\:pr-3{padding-right:.75rem!important}.\34xl\:pb-3{padding-bottom:.75rem!important}.\34xl\:pl-3{padding-left:.75rem!important}.\34xl\:pt-4{padding-top:1rem!important}.\34xl\:pr-4{padding-right:1rem!important}.\34xl\:pb-4{padding-bottom:1rem!important}.\34xl\:pl-4{padding-left:1rem!important}.\34xl\:pt-5{padding-top:1.25rem!important}.\34xl\:pr-5{padding-right:1.25rem!important}.\34xl\:pb-5{padding-bottom:1.25rem!important}.\34xl\:pl-5{padding-left:1.25rem!important}.\34xl\:pt-6{padding-top:1.5rem!important}.\34xl\:pr-6{padding-right:1.5rem!important}.\34xl\:pb-6{padding-bottom:1.5rem!important}.\34xl\:pl-6{padding-left:1.5rem!important}.\34xl\:pt-7{padding-top:1.75rem!important}.\34xl\:pr-7{padding-right:1.75rem!important}.\34xl\:pb-7{padding-bottom:1.75rem!important}.\34xl\:pl-7{padding-left:1.75rem!important}.\34xl\:pt-8{padding-top:2rem!important}.\34xl\:pr-8{padding-right:2rem!important}.\34xl\:pb-8{padding-bottom:2rem!important}.\34xl\:pl-8{padding-left:2rem!important}.\34xl\:pt-9{padding-top:2.25rem!important}.\34xl\:pr-9{padding-right:2.25rem!important}.\34xl\:pb-9{padding-bottom:2.25rem!important}.\34xl\:pl-9{padding-left:2.25rem!important}.\34xl\:pt-10{padding-top:2.5rem!important}.\34xl\:pr-10{padding-right:2.5rem!important}.\34xl\:pb-10{padding-bottom:2.5rem!important}.\34xl\:pl-10{padding-left:2.5rem!important}.\34xl\:pt-11{padding-top:2.75rem!important}.\34xl\:pr-11{padding-right:2.75rem!important}.\34xl\:pb-11{padding-bottom:2.75rem!important}.\34xl\:pl-11{padding-left:2.75rem!important}.\34xl\:pt-12{padding-top:3rem!important}.\34xl\:pr-12{padding-right:3rem!important}.\34xl\:pb-12{padding-bottom:3rem!important}.\34xl\:pl-12{padding-left:3rem!important}.\34xl\:pt-13{padding-top:3.25rem!important}.\34xl\:pr-13{padding-right:3.25rem!important}.\34xl\:pb-13{padding-bottom:3.25rem!important}.\34xl\:pl-13{padding-left:3.25rem!important}.\34xl\:pt-14{padding-top:3.5rem!important}.\34xl\:pr-14{padding-right:3.5rem!important}.\34xl\:pb-14{padding-bottom:3.5rem!important}.\34xl\:pl-14{padding-left:3.5rem!important}.\34xl\:pt-15{padding-top:3.75rem!important}.\34xl\:pr-15{padding-right:3.75rem!important}.\34xl\:pb-15{padding-bottom:3.75rem!important}.\34xl\:pl-15{padding-left:3.75rem!important}.\34xl\:pt-16{padding-top:4rem!important}.\34xl\:pr-16{padding-right:4rem!important}.\34xl\:pb-16{padding-bottom:4rem!important}.\34xl\:pl-16{padding-left:4rem!important}.\34xl\:pt-20{padding-top:5rem!important}.\34xl\:pr-20{padding-right:5rem!important}.\34xl\:pb-20{padding-bottom:5rem!important}.\34xl\:pl-20{padding-left:5rem!important}.\34xl\:pt-24{padding-top:6rem!important}.\34xl\:pr-24{padding-right:6rem!important}.\34xl\:pb-24{padding-bottom:6rem!important}.\34xl\:pl-24{padding-left:6rem!important}.\34xl\:pt-28{padding-top:7rem!important}.\34xl\:pr-28{padding-right:7rem!important}.\34xl\:pb-28{padding-bottom:7rem!important}.\34xl\:pl-28{padding-left:7rem!important}.\34xl\:pt-32{padding-top:8rem!important}.\34xl\:pr-32{padding-right:8rem!important}.\34xl\:pb-32{padding-bottom:8rem!important}.\34xl\:pl-32{padding-left:8rem!important}.\34xl\:pt-36{padding-top:9rem!important}.\34xl\:pr-36{padding-right:9rem!important}.\34xl\:pb-36{padding-bottom:9rem!important}.\34xl\:pl-36{padding-left:9rem!important}.\34xl\:pt-40{padding-top:10rem!important}.\34xl\:pr-40{padding-right:10rem!important}.\34xl\:pb-40{padding-bottom:10rem!important}.\34xl\:pl-40{padding-left:10rem!important}.\34xl\:pt-48{padding-top:12rem!important}.\34xl\:pr-48{padding-right:12rem!important}.\34xl\:pb-48{padding-bottom:12rem!important}.\34xl\:pl-48{padding-left:12rem!important}.\34xl\:pt-56{padding-top:14rem!important}.\34xl\:pr-56{padding-right:14rem!important}.\34xl\:pb-56{padding-bottom:14rem!important}.\34xl\:pl-56{padding-left:14rem!important}.\34xl\:pt-60{padding-top:15rem!important}.\34xl\:pr-60{padding-right:15rem!important}.\34xl\:pb-60{padding-bottom:15rem!important}.\34xl\:pl-60{padding-left:15rem!important}.\34xl\:pt-64{padding-top:16rem!important}.\34xl\:pr-64{padding-right:16rem!important}.\34xl\:pb-64{padding-bottom:16rem!important}.\34xl\:pl-64{padding-left:16rem!important}.\34xl\:pt-72{padding-top:18rem!important}.\34xl\:pr-72{padding-right:18rem!important}.\34xl\:pb-72{padding-bottom:18rem!important}.\34xl\:pl-72{padding-left:18rem!important}.\34xl\:pt-80{padding-top:20rem!important}.\34xl\:pr-80{padding-right:20rem!important}.\34xl\:pb-80{padding-bottom:20rem!important}.\34xl\:pl-80{padding-left:20rem!important}.\34xl\:pt-96{padding-top:24rem!important}.\34xl\:pr-96{padding-right:24rem!important}.\34xl\:pb-96{padding-bottom:24rem!important}.\34xl\:pl-96{padding-left:24rem!important}.\34xl\:pt-px{padding-top:1px!important}.\34xl\:pr-px{padding-right:1px!important}.\34xl\:pb-px{padding-bottom:1px!important}.\34xl\:pl-px{padding-left:1px!important}.\34xl\:pt-0\.5{padding-top:.125rem!important}.\34xl\:pr-0\.5{padding-right:.125rem!important}.\34xl\:pb-0\.5{padding-bottom:.125rem!important}.\34xl\:pl-0\.5{padding-left:.125rem!important}.\34xl\:pt-1\.5{padding-top:.375rem!important}.\34xl\:pr-1\.5{padding-right:.375rem!important}.\34xl\:pb-1\.5{padding-bottom:.375rem!important}.\34xl\:pl-1\.5{padding-left:.375rem!important}.\34xl\:pt-2\.5{padding-top:.625rem!important}.\34xl\:pr-2\.5{padding-right:.625rem!important}.\34xl\:pb-2\.5{padding-bottom:.625rem!important}.\34xl\:pl-2\.5{padding-left:.625rem!important}.\34xl\:pt-3\.5{padding-top:.875rem!important}.\34xl\:pr-3\.5{padding-right:.875rem!important}.\34xl\:pb-3\.5{padding-bottom:.875rem!important}.\34xl\:pl-3\.5{padding-left:.875rem!important}.\34xl\:pt-1\/2{padding-top:50%!important}.\34xl\:pr-1\/2{padding-right:50%!important}.\34xl\:pb-1\/2{padding-bottom:50%!important}.\34xl\:pl-1\/2{padding-left:50%!important}.\34xl\:pt-1\/3{padding-top:33.333333%!important}.\34xl\:pr-1\/3{padding-right:33.333333%!important}.\34xl\:pb-1\/3{padding-bottom:33.333333%!important}.\34xl\:pl-1\/3{padding-left:33.333333%!important}.\34xl\:pt-2\/3{padding-top:66.666667%!important}.\34xl\:pr-2\/3{padding-right:66.666667%!important}.\34xl\:pb-2\/3{padding-bottom:66.666667%!important}.\34xl\:pl-2\/3{padding-left:66.666667%!important}.\34xl\:pt-1\/4{padding-top:25%!important}.\34xl\:pr-1\/4{padding-right:25%!important}.\34xl\:pb-1\/4{padding-bottom:25%!important}.\34xl\:pl-1\/4{padding-left:25%!important}.\34xl\:pt-2\/4{padding-top:50%!important}.\34xl\:pr-2\/4{padding-right:50%!important}.\34xl\:pb-2\/4{padding-bottom:50%!important}.\34xl\:pl-2\/4{padding-left:50%!important}.\34xl\:pt-3\/4{padding-top:75%!important}.\34xl\:pr-3\/4{padding-right:75%!important}.\34xl\:pb-3\/4{padding-bottom:75%!important}.\34xl\:pl-3\/4{padding-left:75%!important}.\34xl\:pt-1\/5{padding-top:20%!important}.\34xl\:pr-1\/5{padding-right:20%!important}.\34xl\:pb-1\/5{padding-bottom:20%!important}.\34xl\:pl-1\/5{padding-left:20%!important}.\34xl\:pt-2\/5{padding-top:40%!important}.\34xl\:pr-2\/5{padding-right:40%!important}.\34xl\:pb-2\/5{padding-bottom:40%!important}.\34xl\:pl-2\/5{padding-left:40%!important}.\34xl\:pt-3\/5{padding-top:60%!important}.\34xl\:pr-3\/5{padding-right:60%!important}.\34xl\:pb-3\/5{padding-bottom:60%!important}.\34xl\:pl-3\/5{padding-left:60%!important}.\34xl\:pt-4\/5{padding-top:80%!important}.\34xl\:pr-4\/5{padding-right:80%!important}.\34xl\:pb-4\/5{padding-bottom:80%!important}.\34xl\:pl-4\/5{padding-left:80%!important}.\34xl\:pt-1\/6{padding-top:16.666667%!important}.\34xl\:pr-1\/6{padding-right:16.666667%!important}.\34xl\:pb-1\/6{padding-bottom:16.666667%!important}.\34xl\:pl-1\/6{padding-left:16.666667%!important}.\34xl\:pt-2\/6{padding-top:33.333333%!important}.\34xl\:pr-2\/6{padding-right:33.333333%!important}.\34xl\:pb-2\/6{padding-bottom:33.333333%!important}.\34xl\:pl-2\/6{padding-left:33.333333%!important}.\34xl\:pt-3\/6{padding-top:50%!important}.\34xl\:pr-3\/6{padding-right:50%!important}.\34xl\:pb-3\/6{padding-bottom:50%!important}.\34xl\:pl-3\/6{padding-left:50%!important}.\34xl\:pt-4\/6{padding-top:66.666667%!important}.\34xl\:pr-4\/6{padding-right:66.666667%!important}.\34xl\:pb-4\/6{padding-bottom:66.666667%!important}.\34xl\:pl-4\/6{padding-left:66.666667%!important}.\34xl\:pt-5\/6{padding-top:83.333333%!important}.\34xl\:pr-5\/6{padding-right:83.333333%!important}.\34xl\:pb-5\/6{padding-bottom:83.333333%!important}.\34xl\:pl-5\/6{padding-left:83.333333%!important}.\34xl\:pt-1\/12{padding-top:8.333333%!important}.\34xl\:pr-1\/12{padding-right:8.333333%!important}.\34xl\:pb-1\/12{padding-bottom:8.333333%!important}.\34xl\:pl-1\/12{padding-left:8.333333%!important}.\34xl\:pt-2\/12{padding-top:16.666667%!important}.\34xl\:pr-2\/12{padding-right:16.666667%!important}.\34xl\:pb-2\/12{padding-bottom:16.666667%!important}.\34xl\:pl-2\/12{padding-left:16.666667%!important}.\34xl\:pt-3\/12{padding-top:25%!important}.\34xl\:pr-3\/12{padding-right:25%!important}.\34xl\:pb-3\/12{padding-bottom:25%!important}.\34xl\:pl-3\/12{padding-left:25%!important}.\34xl\:pt-4\/12{padding-top:33.333333%!important}.\34xl\:pr-4\/12{padding-right:33.333333%!important}.\34xl\:pb-4\/12{padding-bottom:33.333333%!important}.\34xl\:pl-4\/12{padding-left:33.333333%!important}.\34xl\:pt-5\/12{padding-top:41.666667%!important}.\34xl\:pr-5\/12{padding-right:41.666667%!important}.\34xl\:pb-5\/12{padding-bottom:41.666667%!important}.\34xl\:pl-5\/12{padding-left:41.666667%!important}.\34xl\:pt-6\/12{padding-top:50%!important}.\34xl\:pr-6\/12{padding-right:50%!important}.\34xl\:pb-6\/12{padding-bottom:50%!important}.\34xl\:pl-6\/12{padding-left:50%!important}.\34xl\:pt-7\/12{padding-top:58.333333%!important}.\34xl\:pr-7\/12{padding-right:58.333333%!important}.\34xl\:pb-7\/12{padding-bottom:58.333333%!important}.\34xl\:pl-7\/12{padding-left:58.333333%!important}.\34xl\:pt-8\/12{padding-top:66.666667%!important}.\34xl\:pr-8\/12{padding-right:66.666667%!important}.\34xl\:pb-8\/12{padding-bottom:66.666667%!important}.\34xl\:pl-8\/12{padding-left:66.666667%!important}.\34xl\:pt-9\/12{padding-top:75%!important}.\34xl\:pr-9\/12{padding-right:75%!important}.\34xl\:pb-9\/12{padding-bottom:75%!important}.\34xl\:pl-9\/12{padding-left:75%!important}.\34xl\:pt-10\/12{padding-top:83.333333%!important}.\34xl\:pr-10\/12{padding-right:83.333333%!important}.\34xl\:pb-10\/12{padding-bottom:83.333333%!important}.\34xl\:pl-10\/12{padding-left:83.333333%!important}.\34xl\:pt-11\/12{padding-top:91.666667%!important}.\34xl\:pr-11\/12{padding-right:91.666667%!important}.\34xl\:pb-11\/12{padding-bottom:91.666667%!important}.\34xl\:pl-11\/12{padding-left:91.666667%!important}.\34xl\:pt-full{padding-top:100%!important}.\34xl\:pr-full{padding-right:100%!important}.\34xl\:pb-full{padding-bottom:100%!important}.\34xl\:pl-full{padding-left:100%!important}[dir=ltr] .\34xl\:ltr\:p-0{padding:0!important}[dir=ltr] .\34xl\:ltr\:p-1{padding:.25rem!important}[dir=ltr] .\34xl\:ltr\:p-2{padding:.5rem!important}[dir=ltr] .\34xl\:ltr\:p-3{padding:.75rem!important}[dir=ltr] .\34xl\:ltr\:p-4{padding:1rem!important}[dir=ltr] .\34xl\:ltr\:p-5{padding:1.25rem!important}[dir=ltr] .\34xl\:ltr\:p-6{padding:1.5rem!important}[dir=ltr] .\34xl\:ltr\:p-7{padding:1.75rem!important}[dir=ltr] .\34xl\:ltr\:p-8{padding:2rem!important}[dir=ltr] .\34xl\:ltr\:p-9{padding:2.25rem!important}[dir=ltr] .\34xl\:ltr\:p-10{padding:2.5rem!important}[dir=ltr] .\34xl\:ltr\:p-11{padding:2.75rem!important}[dir=ltr] .\34xl\:ltr\:p-12{padding:3rem!important}[dir=ltr] .\34xl\:ltr\:p-13{padding:3.25rem!important}[dir=ltr] .\34xl\:ltr\:p-14{padding:3.5rem!important}[dir=ltr] .\34xl\:ltr\:p-15{padding:3.75rem!important}[dir=ltr] .\34xl\:ltr\:p-16{padding:4rem!important}[dir=ltr] .\34xl\:ltr\:p-20{padding:5rem!important}[dir=ltr] .\34xl\:ltr\:p-24{padding:6rem!important}[dir=ltr] .\34xl\:ltr\:p-28{padding:7rem!important}[dir=ltr] .\34xl\:ltr\:p-32{padding:8rem!important}[dir=ltr] .\34xl\:ltr\:p-36{padding:9rem!important}[dir=ltr] .\34xl\:ltr\:p-40{padding:10rem!important}[dir=ltr] .\34xl\:ltr\:p-48{padding:12rem!important}[dir=ltr] .\34xl\:ltr\:p-56{padding:14rem!important}[dir=ltr] .\34xl\:ltr\:p-60{padding:15rem!important}[dir=ltr] .\34xl\:ltr\:p-64{padding:16rem!important}[dir=ltr] .\34xl\:ltr\:p-72{padding:18rem!important}[dir=ltr] .\34xl\:ltr\:p-80{padding:20rem!important}[dir=ltr] .\34xl\:ltr\:p-96{padding:24rem!important}[dir=ltr] .\34xl\:ltr\:p-px{padding:1px!important}[dir=ltr] .\34xl\:ltr\:p-0\.5{padding:.125rem!important}[dir=ltr] .\34xl\:ltr\:p-1\.5{padding:.375rem!important}[dir=ltr] .\34xl\:ltr\:p-2\.5{padding:.625rem!important}[dir=ltr] .\34xl\:ltr\:p-3\.5{padding:.875rem!important}[dir=ltr] .\34xl\:ltr\:p-1\/2{padding:50%!important}[dir=ltr] .\34xl\:ltr\:p-1\/3{padding:33.333333%!important}[dir=ltr] .\34xl\:ltr\:p-2\/3{padding:66.666667%!important}[dir=ltr] .\34xl\:ltr\:p-1\/4{padding:25%!important}[dir=ltr] .\34xl\:ltr\:p-2\/4{padding:50%!important}[dir=ltr] .\34xl\:ltr\:p-3\/4{padding:75%!important}[dir=ltr] .\34xl\:ltr\:p-1\/5{padding:20%!important}[dir=ltr] .\34xl\:ltr\:p-2\/5{padding:40%!important}[dir=ltr] .\34xl\:ltr\:p-3\/5{padding:60%!important}[dir=ltr] .\34xl\:ltr\:p-4\/5{padding:80%!important}[dir=ltr] .\34xl\:ltr\:p-1\/6{padding:16.666667%!important}[dir=ltr] .\34xl\:ltr\:p-2\/6{padding:33.333333%!important}[dir=ltr] .\34xl\:ltr\:p-3\/6{padding:50%!important}[dir=ltr] .\34xl\:ltr\:p-4\/6{padding:66.666667%!important}[dir=ltr] .\34xl\:ltr\:p-5\/6{padding:83.333333%!important}[dir=ltr] .\34xl\:ltr\:p-1\/12{padding:8.333333%!important}[dir=ltr] .\34xl\:ltr\:p-2\/12{padding:16.666667%!important}[dir=ltr] .\34xl\:ltr\:p-3\/12{padding:25%!important}[dir=ltr] .\34xl\:ltr\:p-4\/12{padding:33.333333%!important}[dir=ltr] .\34xl\:ltr\:p-5\/12{padding:41.666667%!important}[dir=ltr] .\34xl\:ltr\:p-6\/12{padding:50%!important}[dir=ltr] .\34xl\:ltr\:p-7\/12{padding:58.333333%!important}[dir=ltr] .\34xl\:ltr\:p-8\/12{padding:66.666667%!important}[dir=ltr] .\34xl\:ltr\:p-9\/12{padding:75%!important}[dir=ltr] .\34xl\:ltr\:p-10\/12{padding:83.333333%!important}[dir=ltr] .\34xl\:ltr\:p-11\/12{padding:91.666667%!important}[dir=ltr] .\34xl\:ltr\:p-full{padding:100%!important}[dir=ltr] .\34xl\:ltr\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=ltr] .\34xl\:ltr\:px-0{padding-left:0!important;padding-right:0!important}[dir=ltr] .\34xl\:ltr\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=ltr] .\34xl\:ltr\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=ltr] .\34xl\:ltr\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=ltr] .\34xl\:ltr\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=ltr] .\34xl\:ltr\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=ltr] .\34xl\:ltr\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=ltr] .\34xl\:ltr\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=ltr] .\34xl\:ltr\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=ltr] .\34xl\:ltr\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=ltr] .\34xl\:ltr\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=ltr] .\34xl\:ltr\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=ltr] .\34xl\:ltr\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=ltr] .\34xl\:ltr\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=ltr] .\34xl\:ltr\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=ltr] .\34xl\:ltr\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=ltr] .\34xl\:ltr\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=ltr] .\34xl\:ltr\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=ltr] .\34xl\:ltr\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=ltr] .\34xl\:ltr\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=ltr] .\34xl\:ltr\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=ltr] .\34xl\:ltr\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=ltr] .\34xl\:ltr\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=ltr] .\34xl\:ltr\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=ltr] .\34xl\:ltr\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=ltr] .\34xl\:ltr\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=ltr] .\34xl\:ltr\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=ltr] .\34xl\:ltr\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=ltr] .\34xl\:ltr\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=ltr] .\34xl\:ltr\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=ltr] .\34xl\:ltr\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=ltr] .\34xl\:ltr\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=ltr] .\34xl\:ltr\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=ltr] .\34xl\:ltr\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=ltr] .\34xl\:ltr\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=ltr] .\34xl\:ltr\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=ltr] .\34xl\:ltr\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=ltr] .\34xl\:ltr\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=ltr] .\34xl\:ltr\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=ltr] .\34xl\:ltr\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=ltr] .\34xl\:ltr\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=ltr] .\34xl\:ltr\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=ltr] .\34xl\:ltr\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=ltr] .\34xl\:ltr\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=ltr] .\34xl\:ltr\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=ltr] .\34xl\:ltr\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=ltr] .\34xl\:ltr\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=ltr] .\34xl\:ltr\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=ltr] .\34xl\:ltr\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=ltr] .\34xl\:ltr\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=ltr] .\34xl\:ltr\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=ltr] .\34xl\:ltr\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=ltr] .\34xl\:ltr\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=ltr] .\34xl\:ltr\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=ltr] .\34xl\:ltr\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=ltr] .\34xl\:ltr\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=ltr] .\34xl\:ltr\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=ltr] .\34xl\:ltr\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=ltr] .\34xl\:ltr\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=ltr] .\34xl\:ltr\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=ltr] .\34xl\:ltr\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=ltr] .\34xl\:ltr\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=ltr] .\34xl\:ltr\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=ltr] .\34xl\:ltr\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=ltr] .\34xl\:ltr\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=ltr] .\34xl\:ltr\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=ltr] .\34xl\:ltr\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=ltr] .\34xl\:ltr\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=ltr] .\34xl\:ltr\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=ltr] .\34xl\:ltr\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .\34xl\:ltr\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .\34xl\:ltr\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .\34xl\:ltr\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .\34xl\:ltr\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=ltr] .\34xl\:ltr\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=ltr] .\34xl\:ltr\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=ltr] .\34xl\:ltr\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=ltr] .\34xl\:ltr\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=ltr] .\34xl\:ltr\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=ltr] .\34xl\:ltr\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=ltr] .\34xl\:ltr\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=ltr] .\34xl\:ltr\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=ltr] .\34xl\:ltr\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=ltr] .\34xl\:ltr\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=ltr] .\34xl\:ltr\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=ltr] .\34xl\:ltr\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=ltr] .\34xl\:ltr\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=ltr] .\34xl\:ltr\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=ltr] .\34xl\:ltr\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=ltr] .\34xl\:ltr\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=ltr] .\34xl\:ltr\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=ltr] .\34xl\:ltr\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=ltr] .\34xl\:ltr\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=ltr] .\34xl\:ltr\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=ltr] .\34xl\:ltr\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=ltr] .\34xl\:ltr\:pt-0{padding-top:0!important}[dir=ltr] .\34xl\:ltr\:pr-0{padding-right:0!important}[dir=ltr] .\34xl\:ltr\:pb-0{padding-bottom:0!important}[dir=ltr] .\34xl\:ltr\:pl-0{padding-left:0!important}[dir=ltr] .\34xl\:ltr\:pt-1{padding-top:.25rem!important}[dir=ltr] .\34xl\:ltr\:pr-1{padding-right:.25rem!important}[dir=ltr] .\34xl\:ltr\:pb-1{padding-bottom:.25rem!important}[dir=ltr] .\34xl\:ltr\:pl-1{padding-left:.25rem!important}[dir=ltr] .\34xl\:ltr\:pt-2{padding-top:.5rem!important}[dir=ltr] .\34xl\:ltr\:pr-2{padding-right:.5rem!important}[dir=ltr] .\34xl\:ltr\:pb-2{padding-bottom:.5rem!important}[dir=ltr] .\34xl\:ltr\:pl-2{padding-left:.5rem!important}[dir=ltr] .\34xl\:ltr\:pt-3{padding-top:.75rem!important}[dir=ltr] .\34xl\:ltr\:pr-3{padding-right:.75rem!important}[dir=ltr] .\34xl\:ltr\:pb-3{padding-bottom:.75rem!important}[dir=ltr] .\34xl\:ltr\:pl-3{padding-left:.75rem!important}[dir=ltr] .\34xl\:ltr\:pt-4{padding-top:1rem!important}[dir=ltr] .\34xl\:ltr\:pr-4{padding-right:1rem!important}[dir=ltr] .\34xl\:ltr\:pb-4{padding-bottom:1rem!important}[dir=ltr] .\34xl\:ltr\:pl-4{padding-left:1rem!important}[dir=ltr] .\34xl\:ltr\:pt-5{padding-top:1.25rem!important}[dir=ltr] .\34xl\:ltr\:pr-5{padding-right:1.25rem!important}[dir=ltr] .\34xl\:ltr\:pb-5{padding-bottom:1.25rem!important}[dir=ltr] .\34xl\:ltr\:pl-5{padding-left:1.25rem!important}[dir=ltr] .\34xl\:ltr\:pt-6{padding-top:1.5rem!important}[dir=ltr] .\34xl\:ltr\:pr-6{padding-right:1.5rem!important}[dir=ltr] .\34xl\:ltr\:pb-6{padding-bottom:1.5rem!important}[dir=ltr] .\34xl\:ltr\:pl-6{padding-left:1.5rem!important}[dir=ltr] .\34xl\:ltr\:pt-7{padding-top:1.75rem!important}[dir=ltr] .\34xl\:ltr\:pr-7{padding-right:1.75rem!important}[dir=ltr] .\34xl\:ltr\:pb-7{padding-bottom:1.75rem!important}[dir=ltr] .\34xl\:ltr\:pl-7{padding-left:1.75rem!important}[dir=ltr] .\34xl\:ltr\:pt-8{padding-top:2rem!important}[dir=ltr] .\34xl\:ltr\:pr-8{padding-right:2rem!important}[dir=ltr] .\34xl\:ltr\:pb-8{padding-bottom:2rem!important}[dir=ltr] .\34xl\:ltr\:pl-8{padding-left:2rem!important}[dir=ltr] .\34xl\:ltr\:pt-9{padding-top:2.25rem!important}[dir=ltr] .\34xl\:ltr\:pr-9{padding-right:2.25rem!important}[dir=ltr] .\34xl\:ltr\:pb-9{padding-bottom:2.25rem!important}[dir=ltr] .\34xl\:ltr\:pl-9{padding-left:2.25rem!important}[dir=ltr] .\34xl\:ltr\:pt-10{padding-top:2.5rem!important}[dir=ltr] .\34xl\:ltr\:pr-10{padding-right:2.5rem!important}[dir=ltr] .\34xl\:ltr\:pb-10{padding-bottom:2.5rem!important}[dir=ltr] .\34xl\:ltr\:pl-10{padding-left:2.5rem!important}[dir=ltr] .\34xl\:ltr\:pt-11{padding-top:2.75rem!important}[dir=ltr] .\34xl\:ltr\:pr-11{padding-right:2.75rem!important}[dir=ltr] .\34xl\:ltr\:pb-11{padding-bottom:2.75rem!important}[dir=ltr] .\34xl\:ltr\:pl-11{padding-left:2.75rem!important}[dir=ltr] .\34xl\:ltr\:pt-12{padding-top:3rem!important}[dir=ltr] .\34xl\:ltr\:pr-12{padding-right:3rem!important}[dir=ltr] .\34xl\:ltr\:pb-12{padding-bottom:3rem!important}[dir=ltr] .\34xl\:ltr\:pl-12{padding-left:3rem!important}[dir=ltr] .\34xl\:ltr\:pt-13{padding-top:3.25rem!important}[dir=ltr] .\34xl\:ltr\:pr-13{padding-right:3.25rem!important}[dir=ltr] .\34xl\:ltr\:pb-13{padding-bottom:3.25rem!important}[dir=ltr] .\34xl\:ltr\:pl-13{padding-left:3.25rem!important}[dir=ltr] .\34xl\:ltr\:pt-14{padding-top:3.5rem!important}[dir=ltr] .\34xl\:ltr\:pr-14{padding-right:3.5rem!important}[dir=ltr] .\34xl\:ltr\:pb-14{padding-bottom:3.5rem!important}[dir=ltr] .\34xl\:ltr\:pl-14{padding-left:3.5rem!important}[dir=ltr] .\34xl\:ltr\:pt-15{padding-top:3.75rem!important}[dir=ltr] .\34xl\:ltr\:pr-15{padding-right:3.75rem!important}[dir=ltr] .\34xl\:ltr\:pb-15{padding-bottom:3.75rem!important}[dir=ltr] .\34xl\:ltr\:pl-15{padding-left:3.75rem!important}[dir=ltr] .\34xl\:ltr\:pt-16{padding-top:4rem!important}[dir=ltr] .\34xl\:ltr\:pr-16{padding-right:4rem!important}[dir=ltr] .\34xl\:ltr\:pb-16{padding-bottom:4rem!important}[dir=ltr] .\34xl\:ltr\:pl-16{padding-left:4rem!important}[dir=ltr] .\34xl\:ltr\:pt-20{padding-top:5rem!important}[dir=ltr] .\34xl\:ltr\:pr-20{padding-right:5rem!important}[dir=ltr] .\34xl\:ltr\:pb-20{padding-bottom:5rem!important}[dir=ltr] .\34xl\:ltr\:pl-20{padding-left:5rem!important}[dir=ltr] .\34xl\:ltr\:pt-24{padding-top:6rem!important}[dir=ltr] .\34xl\:ltr\:pr-24{padding-right:6rem!important}[dir=ltr] .\34xl\:ltr\:pb-24{padding-bottom:6rem!important}[dir=ltr] .\34xl\:ltr\:pl-24{padding-left:6rem!important}[dir=ltr] .\34xl\:ltr\:pt-28{padding-top:7rem!important}[dir=ltr] .\34xl\:ltr\:pr-28{padding-right:7rem!important}[dir=ltr] .\34xl\:ltr\:pb-28{padding-bottom:7rem!important}[dir=ltr] .\34xl\:ltr\:pl-28{padding-left:7rem!important}[dir=ltr] .\34xl\:ltr\:pt-32{padding-top:8rem!important}[dir=ltr] .\34xl\:ltr\:pr-32{padding-right:8rem!important}[dir=ltr] .\34xl\:ltr\:pb-32{padding-bottom:8rem!important}[dir=ltr] .\34xl\:ltr\:pl-32{padding-left:8rem!important}[dir=ltr] .\34xl\:ltr\:pt-36{padding-top:9rem!important}[dir=ltr] .\34xl\:ltr\:pr-36{padding-right:9rem!important}[dir=ltr] .\34xl\:ltr\:pb-36{padding-bottom:9rem!important}[dir=ltr] .\34xl\:ltr\:pl-36{padding-left:9rem!important}[dir=ltr] .\34xl\:ltr\:pt-40{padding-top:10rem!important}[dir=ltr] .\34xl\:ltr\:pr-40{padding-right:10rem!important}[dir=ltr] .\34xl\:ltr\:pb-40{padding-bottom:10rem!important}[dir=ltr] .\34xl\:ltr\:pl-40{padding-left:10rem!important}[dir=ltr] .\34xl\:ltr\:pt-48{padding-top:12rem!important}[dir=ltr] .\34xl\:ltr\:pr-48{padding-right:12rem!important}[dir=ltr] .\34xl\:ltr\:pb-48{padding-bottom:12rem!important}[dir=ltr] .\34xl\:ltr\:pl-48{padding-left:12rem!important}[dir=ltr] .\34xl\:ltr\:pt-56{padding-top:14rem!important}[dir=ltr] .\34xl\:ltr\:pr-56{padding-right:14rem!important}[dir=ltr] .\34xl\:ltr\:pb-56{padding-bottom:14rem!important}[dir=ltr] .\34xl\:ltr\:pl-56{padding-left:14rem!important}[dir=ltr] .\34xl\:ltr\:pt-60{padding-top:15rem!important}[dir=ltr] .\34xl\:ltr\:pr-60{padding-right:15rem!important}[dir=ltr] .\34xl\:ltr\:pb-60{padding-bottom:15rem!important}[dir=ltr] .\34xl\:ltr\:pl-60{padding-left:15rem!important}[dir=ltr] .\34xl\:ltr\:pt-64{padding-top:16rem!important}[dir=ltr] .\34xl\:ltr\:pr-64{padding-right:16rem!important}[dir=ltr] .\34xl\:ltr\:pb-64{padding-bottom:16rem!important}[dir=ltr] .\34xl\:ltr\:pl-64{padding-left:16rem!important}[dir=ltr] .\34xl\:ltr\:pt-72{padding-top:18rem!important}[dir=ltr] .\34xl\:ltr\:pr-72{padding-right:18rem!important}[dir=ltr] .\34xl\:ltr\:pb-72{padding-bottom:18rem!important}[dir=ltr] .\34xl\:ltr\:pl-72{padding-left:18rem!important}[dir=ltr] .\34xl\:ltr\:pt-80{padding-top:20rem!important}[dir=ltr] .\34xl\:ltr\:pr-80{padding-right:20rem!important}[dir=ltr] .\34xl\:ltr\:pb-80{padding-bottom:20rem!important}[dir=ltr] .\34xl\:ltr\:pl-80{padding-left:20rem!important}[dir=ltr] .\34xl\:ltr\:pt-96{padding-top:24rem!important}[dir=ltr] .\34xl\:ltr\:pr-96{padding-right:24rem!important}[dir=ltr] .\34xl\:ltr\:pb-96{padding-bottom:24rem!important}[dir=ltr] .\34xl\:ltr\:pl-96{padding-left:24rem!important}[dir=ltr] .\34xl\:ltr\:pt-px{padding-top:1px!important}[dir=ltr] .\34xl\:ltr\:pr-px{padding-right:1px!important}[dir=ltr] .\34xl\:ltr\:pb-px{padding-bottom:1px!important}[dir=ltr] .\34xl\:ltr\:pl-px{padding-left:1px!important}[dir=ltr] .\34xl\:ltr\:pt-0\.5{padding-top:.125rem!important}[dir=ltr] .\34xl\:ltr\:pr-0\.5{padding-right:.125rem!important}[dir=ltr] .\34xl\:ltr\:pb-0\.5{padding-bottom:.125rem!important}[dir=ltr] .\34xl\:ltr\:pl-0\.5{padding-left:.125rem!important}[dir=ltr] .\34xl\:ltr\:pt-1\.5{padding-top:.375rem!important}[dir=ltr] .\34xl\:ltr\:pr-1\.5{padding-right:.375rem!important}[dir=ltr] .\34xl\:ltr\:pb-1\.5{padding-bottom:.375rem!important}[dir=ltr] .\34xl\:ltr\:pl-1\.5{padding-left:.375rem!important}[dir=ltr] .\34xl\:ltr\:pt-2\.5{padding-top:.625rem!important}[dir=ltr] .\34xl\:ltr\:pr-2\.5{padding-right:.625rem!important}[dir=ltr] .\34xl\:ltr\:pb-2\.5{padding-bottom:.625rem!important}[dir=ltr] .\34xl\:ltr\:pl-2\.5{padding-left:.625rem!important}[dir=ltr] .\34xl\:ltr\:pt-3\.5{padding-top:.875rem!important}[dir=ltr] .\34xl\:ltr\:pr-3\.5{padding-right:.875rem!important}[dir=ltr] .\34xl\:ltr\:pb-3\.5{padding-bottom:.875rem!important}[dir=ltr] .\34xl\:ltr\:pl-3\.5{padding-left:.875rem!important}[dir=ltr] .\34xl\:ltr\:pt-1\/2{padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:pr-1\/2{padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:pb-1\/2{padding-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:pl-1\/2{padding-left:50%!important}[dir=ltr] .\34xl\:ltr\:pt-1\/3{padding-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pr-1\/3{padding-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pb-1\/3{padding-bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pl-1\/3{padding-left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pt-2\/3{padding-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pr-2\/3{padding-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pb-2\/3{padding-bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pl-2\/3{padding-left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pt-1\/4{padding-top:25%!important}[dir=ltr] .\34xl\:ltr\:pr-1\/4{padding-right:25%!important}[dir=ltr] .\34xl\:ltr\:pb-1\/4{padding-bottom:25%!important}[dir=ltr] .\34xl\:ltr\:pl-1\/4{padding-left:25%!important}[dir=ltr] .\34xl\:ltr\:pt-2\/4{padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:pr-2\/4{padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:pb-2\/4{padding-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:pl-2\/4{padding-left:50%!important}[dir=ltr] .\34xl\:ltr\:pt-3\/4{padding-top:75%!important}[dir=ltr] .\34xl\:ltr\:pr-3\/4{padding-right:75%!important}[dir=ltr] .\34xl\:ltr\:pb-3\/4{padding-bottom:75%!important}[dir=ltr] .\34xl\:ltr\:pl-3\/4{padding-left:75%!important}[dir=ltr] .\34xl\:ltr\:pt-1\/5{padding-top:20%!important}[dir=ltr] .\34xl\:ltr\:pr-1\/5{padding-right:20%!important}[dir=ltr] .\34xl\:ltr\:pb-1\/5{padding-bottom:20%!important}[dir=ltr] .\34xl\:ltr\:pl-1\/5{padding-left:20%!important}[dir=ltr] .\34xl\:ltr\:pt-2\/5{padding-top:40%!important}[dir=ltr] .\34xl\:ltr\:pr-2\/5{padding-right:40%!important}[dir=ltr] .\34xl\:ltr\:pb-2\/5{padding-bottom:40%!important}[dir=ltr] .\34xl\:ltr\:pl-2\/5{padding-left:40%!important}[dir=ltr] .\34xl\:ltr\:pt-3\/5{padding-top:60%!important}[dir=ltr] .\34xl\:ltr\:pr-3\/5{padding-right:60%!important}[dir=ltr] .\34xl\:ltr\:pb-3\/5{padding-bottom:60%!important}[dir=ltr] .\34xl\:ltr\:pl-3\/5{padding-left:60%!important}[dir=ltr] .\34xl\:ltr\:pt-4\/5{padding-top:80%!important}[dir=ltr] .\34xl\:ltr\:pr-4\/5{padding-right:80%!important}[dir=ltr] .\34xl\:ltr\:pb-4\/5{padding-bottom:80%!important}[dir=ltr] .\34xl\:ltr\:pl-4\/5{padding-left:80%!important}[dir=ltr] .\34xl\:ltr\:pt-1\/6{padding-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pr-1\/6{padding-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pb-1\/6{padding-bottom:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pl-1\/6{padding-left:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pt-2\/6{padding-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pr-2\/6{padding-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pb-2\/6{padding-bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pl-2\/6{padding-left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pt-3\/6{padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:pr-3\/6{padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:pb-3\/6{padding-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:pl-3\/6{padding-left:50%!important}[dir=ltr] .\34xl\:ltr\:pt-4\/6{padding-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pr-4\/6{padding-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pb-4\/6{padding-bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pl-4\/6{padding-left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pt-5\/6{padding-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pr-5\/6{padding-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pb-5\/6{padding-bottom:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pl-5\/6{padding-left:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pt-1\/12{padding-top:8.333333%!important}[dir=ltr] .\34xl\:ltr\:pr-1\/12{padding-right:8.333333%!important}[dir=ltr] .\34xl\:ltr\:pb-1\/12{padding-bottom:8.333333%!important}[dir=ltr] .\34xl\:ltr\:pl-1\/12{padding-left:8.333333%!important}[dir=ltr] .\34xl\:ltr\:pt-2\/12{padding-top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pr-2\/12{padding-right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pb-2\/12{padding-bottom:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pl-2\/12{padding-left:16.666667%!important}[dir=ltr] .\34xl\:ltr\:pt-3\/12{padding-top:25%!important}[dir=ltr] .\34xl\:ltr\:pr-3\/12{padding-right:25%!important}[dir=ltr] .\34xl\:ltr\:pb-3\/12{padding-bottom:25%!important}[dir=ltr] .\34xl\:ltr\:pl-3\/12{padding-left:25%!important}[dir=ltr] .\34xl\:ltr\:pt-4\/12{padding-top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pr-4\/12{padding-right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pb-4\/12{padding-bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pl-4\/12{padding-left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:pt-5\/12{padding-top:41.666667%!important}[dir=ltr] .\34xl\:ltr\:pr-5\/12{padding-right:41.666667%!important}[dir=ltr] .\34xl\:ltr\:pb-5\/12{padding-bottom:41.666667%!important}[dir=ltr] .\34xl\:ltr\:pl-5\/12{padding-left:41.666667%!important}[dir=ltr] .\34xl\:ltr\:pt-6\/12{padding-top:50%!important}[dir=ltr] .\34xl\:ltr\:pr-6\/12{padding-right:50%!important}[dir=ltr] .\34xl\:ltr\:pb-6\/12{padding-bottom:50%!important}[dir=ltr] .\34xl\:ltr\:pl-6\/12{padding-left:50%!important}[dir=ltr] .\34xl\:ltr\:pt-7\/12{padding-top:58.333333%!important}[dir=ltr] .\34xl\:ltr\:pr-7\/12{padding-right:58.333333%!important}[dir=ltr] .\34xl\:ltr\:pb-7\/12{padding-bottom:58.333333%!important}[dir=ltr] .\34xl\:ltr\:pl-7\/12{padding-left:58.333333%!important}[dir=ltr] .\34xl\:ltr\:pt-8\/12{padding-top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pr-8\/12{padding-right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pb-8\/12{padding-bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pl-8\/12{padding-left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:pt-9\/12{padding-top:75%!important}[dir=ltr] .\34xl\:ltr\:pr-9\/12{padding-right:75%!important}[dir=ltr] .\34xl\:ltr\:pb-9\/12{padding-bottom:75%!important}[dir=ltr] .\34xl\:ltr\:pl-9\/12{padding-left:75%!important}[dir=ltr] .\34xl\:ltr\:pt-10\/12{padding-top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pr-10\/12{padding-right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pb-10\/12{padding-bottom:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pl-10\/12{padding-left:83.333333%!important}[dir=ltr] .\34xl\:ltr\:pt-11\/12{padding-top:91.666667%!important}[dir=ltr] .\34xl\:ltr\:pr-11\/12{padding-right:91.666667%!important}[dir=ltr] .\34xl\:ltr\:pb-11\/12{padding-bottom:91.666667%!important}[dir=ltr] .\34xl\:ltr\:pl-11\/12{padding-left:91.666667%!important}[dir=ltr] .\34xl\:ltr\:pt-full{padding-top:100%!important}[dir=ltr] .\34xl\:ltr\:pr-full{padding-right:100%!important}[dir=ltr] .\34xl\:ltr\:pb-full{padding-bottom:100%!important}[dir=ltr] .\34xl\:ltr\:pl-full{padding-left:100%!important}[dir=rtl] .\34xl\:rtl\:p-0{padding:0!important}[dir=rtl] .\34xl\:rtl\:p-1{padding:.25rem!important}[dir=rtl] .\34xl\:rtl\:p-2{padding:.5rem!important}[dir=rtl] .\34xl\:rtl\:p-3{padding:.75rem!important}[dir=rtl] .\34xl\:rtl\:p-4{padding:1rem!important}[dir=rtl] .\34xl\:rtl\:p-5{padding:1.25rem!important}[dir=rtl] .\34xl\:rtl\:p-6{padding:1.5rem!important}[dir=rtl] .\34xl\:rtl\:p-7{padding:1.75rem!important}[dir=rtl] .\34xl\:rtl\:p-8{padding:2rem!important}[dir=rtl] .\34xl\:rtl\:p-9{padding:2.25rem!important}[dir=rtl] .\34xl\:rtl\:p-10{padding:2.5rem!important}[dir=rtl] .\34xl\:rtl\:p-11{padding:2.75rem!important}[dir=rtl] .\34xl\:rtl\:p-12{padding:3rem!important}[dir=rtl] .\34xl\:rtl\:p-13{padding:3.25rem!important}[dir=rtl] .\34xl\:rtl\:p-14{padding:3.5rem!important}[dir=rtl] .\34xl\:rtl\:p-15{padding:3.75rem!important}[dir=rtl] .\34xl\:rtl\:p-16{padding:4rem!important}[dir=rtl] .\34xl\:rtl\:p-20{padding:5rem!important}[dir=rtl] .\34xl\:rtl\:p-24{padding:6rem!important}[dir=rtl] .\34xl\:rtl\:p-28{padding:7rem!important}[dir=rtl] .\34xl\:rtl\:p-32{padding:8rem!important}[dir=rtl] .\34xl\:rtl\:p-36{padding:9rem!important}[dir=rtl] .\34xl\:rtl\:p-40{padding:10rem!important}[dir=rtl] .\34xl\:rtl\:p-48{padding:12rem!important}[dir=rtl] .\34xl\:rtl\:p-56{padding:14rem!important}[dir=rtl] .\34xl\:rtl\:p-60{padding:15rem!important}[dir=rtl] .\34xl\:rtl\:p-64{padding:16rem!important}[dir=rtl] .\34xl\:rtl\:p-72{padding:18rem!important}[dir=rtl] .\34xl\:rtl\:p-80{padding:20rem!important}[dir=rtl] .\34xl\:rtl\:p-96{padding:24rem!important}[dir=rtl] .\34xl\:rtl\:p-px{padding:1px!important}[dir=rtl] .\34xl\:rtl\:p-0\.5{padding:.125rem!important}[dir=rtl] .\34xl\:rtl\:p-1\.5{padding:.375rem!important}[dir=rtl] .\34xl\:rtl\:p-2\.5{padding:.625rem!important}[dir=rtl] .\34xl\:rtl\:p-3\.5{padding:.875rem!important}[dir=rtl] .\34xl\:rtl\:p-1\/2{padding:50%!important}[dir=rtl] .\34xl\:rtl\:p-1\/3{padding:33.333333%!important}[dir=rtl] .\34xl\:rtl\:p-2\/3{padding:66.666667%!important}[dir=rtl] .\34xl\:rtl\:p-1\/4{padding:25%!important}[dir=rtl] .\34xl\:rtl\:p-2\/4{padding:50%!important}[dir=rtl] .\34xl\:rtl\:p-3\/4{padding:75%!important}[dir=rtl] .\34xl\:rtl\:p-1\/5{padding:20%!important}[dir=rtl] .\34xl\:rtl\:p-2\/5{padding:40%!important}[dir=rtl] .\34xl\:rtl\:p-3\/5{padding:60%!important}[dir=rtl] .\34xl\:rtl\:p-4\/5{padding:80%!important}[dir=rtl] .\34xl\:rtl\:p-1\/6{padding:16.666667%!important}[dir=rtl] .\34xl\:rtl\:p-2\/6{padding:33.333333%!important}[dir=rtl] .\34xl\:rtl\:p-3\/6{padding:50%!important}[dir=rtl] .\34xl\:rtl\:p-4\/6{padding:66.666667%!important}[dir=rtl] .\34xl\:rtl\:p-5\/6{padding:83.333333%!important}[dir=rtl] .\34xl\:rtl\:p-1\/12{padding:8.333333%!important}[dir=rtl] .\34xl\:rtl\:p-2\/12{padding:16.666667%!important}[dir=rtl] .\34xl\:rtl\:p-3\/12{padding:25%!important}[dir=rtl] .\34xl\:rtl\:p-4\/12{padding:33.333333%!important}[dir=rtl] .\34xl\:rtl\:p-5\/12{padding:41.666667%!important}[dir=rtl] .\34xl\:rtl\:p-6\/12{padding:50%!important}[dir=rtl] .\34xl\:rtl\:p-7\/12{padding:58.333333%!important}[dir=rtl] .\34xl\:rtl\:p-8\/12{padding:66.666667%!important}[dir=rtl] .\34xl\:rtl\:p-9\/12{padding:75%!important}[dir=rtl] .\34xl\:rtl\:p-10\/12{padding:83.333333%!important}[dir=rtl] .\34xl\:rtl\:p-11\/12{padding:91.666667%!important}[dir=rtl] .\34xl\:rtl\:p-full{padding:100%!important}[dir=rtl] .\34xl\:rtl\:py-0{padding-bottom:0!important;padding-top:0!important}[dir=rtl] .\34xl\:rtl\:px-0{padding-left:0!important;padding-right:0!important}[dir=rtl] .\34xl\:rtl\:py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}[dir=rtl] .\34xl\:rtl\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}[dir=rtl] .\34xl\:rtl\:py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}[dir=rtl] .\34xl\:rtl\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}[dir=rtl] .\34xl\:rtl\:py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}[dir=rtl] .\34xl\:rtl\:px-3{padding-left:.75rem!important;padding-right:.75rem!important}[dir=rtl] .\34xl\:rtl\:py-4{padding-bottom:1rem!important;padding-top:1rem!important}[dir=rtl] .\34xl\:rtl\:px-4{padding-left:1rem!important;padding-right:1rem!important}[dir=rtl] .\34xl\:rtl\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}[dir=rtl] .\34xl\:rtl\:px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}[dir=rtl] .\34xl\:rtl\:py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}[dir=rtl] .\34xl\:rtl\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}[dir=rtl] .\34xl\:rtl\:py-7{padding-bottom:1.75rem!important;padding-top:1.75rem!important}[dir=rtl] .\34xl\:rtl\:px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}[dir=rtl] .\34xl\:rtl\:py-8{padding-bottom:2rem!important;padding-top:2rem!important}[dir=rtl] .\34xl\:rtl\:px-8{padding-left:2rem!important;padding-right:2rem!important}[dir=rtl] .\34xl\:rtl\:py-9{padding-bottom:2.25rem!important;padding-top:2.25rem!important}[dir=rtl] .\34xl\:rtl\:px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}[dir=rtl] .\34xl\:rtl\:py-10{padding-bottom:2.5rem!important;padding-top:2.5rem!important}[dir=rtl] .\34xl\:rtl\:px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}[dir=rtl] .\34xl\:rtl\:py-11{padding-bottom:2.75rem!important;padding-top:2.75rem!important}[dir=rtl] .\34xl\:rtl\:px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}[dir=rtl] .\34xl\:rtl\:py-12{padding-bottom:3rem!important;padding-top:3rem!important}[dir=rtl] .\34xl\:rtl\:px-12{padding-left:3rem!important;padding-right:3rem!important}[dir=rtl] .\34xl\:rtl\:py-13{padding-bottom:3.25rem!important;padding-top:3.25rem!important}[dir=rtl] .\34xl\:rtl\:px-13{padding-left:3.25rem!important;padding-right:3.25rem!important}[dir=rtl] .\34xl\:rtl\:py-14{padding-bottom:3.5rem!important;padding-top:3.5rem!important}[dir=rtl] .\34xl\:rtl\:px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}[dir=rtl] .\34xl\:rtl\:py-15{padding-bottom:3.75rem!important;padding-top:3.75rem!important}[dir=rtl] .\34xl\:rtl\:px-15{padding-left:3.75rem!important;padding-right:3.75rem!important}[dir=rtl] .\34xl\:rtl\:py-16{padding-bottom:4rem!important;padding-top:4rem!important}[dir=rtl] .\34xl\:rtl\:px-16{padding-left:4rem!important;padding-right:4rem!important}[dir=rtl] .\34xl\:rtl\:py-20{padding-bottom:5rem!important;padding-top:5rem!important}[dir=rtl] .\34xl\:rtl\:px-20{padding-left:5rem!important;padding-right:5rem!important}[dir=rtl] .\34xl\:rtl\:py-24{padding-bottom:6rem!important;padding-top:6rem!important}[dir=rtl] .\34xl\:rtl\:px-24{padding-left:6rem!important;padding-right:6rem!important}[dir=rtl] .\34xl\:rtl\:py-28{padding-bottom:7rem!important;padding-top:7rem!important}[dir=rtl] .\34xl\:rtl\:px-28{padding-left:7rem!important;padding-right:7rem!important}[dir=rtl] .\34xl\:rtl\:py-32{padding-bottom:8rem!important;padding-top:8rem!important}[dir=rtl] .\34xl\:rtl\:px-32{padding-left:8rem!important;padding-right:8rem!important}[dir=rtl] .\34xl\:rtl\:py-36{padding-bottom:9rem!important;padding-top:9rem!important}[dir=rtl] .\34xl\:rtl\:px-36{padding-left:9rem!important;padding-right:9rem!important}[dir=rtl] .\34xl\:rtl\:py-40{padding-bottom:10rem!important;padding-top:10rem!important}[dir=rtl] .\34xl\:rtl\:px-40{padding-left:10rem!important;padding-right:10rem!important}[dir=rtl] .\34xl\:rtl\:py-48{padding-bottom:12rem!important;padding-top:12rem!important}[dir=rtl] .\34xl\:rtl\:px-48{padding-left:12rem!important;padding-right:12rem!important}[dir=rtl] .\34xl\:rtl\:py-56{padding-bottom:14rem!important;padding-top:14rem!important}[dir=rtl] .\34xl\:rtl\:px-56{padding-left:14rem!important;padding-right:14rem!important}[dir=rtl] .\34xl\:rtl\:py-60{padding-bottom:15rem!important;padding-top:15rem!important}[dir=rtl] .\34xl\:rtl\:px-60{padding-left:15rem!important;padding-right:15rem!important}[dir=rtl] .\34xl\:rtl\:py-64{padding-bottom:16rem!important;padding-top:16rem!important}[dir=rtl] .\34xl\:rtl\:px-64{padding-left:16rem!important;padding-right:16rem!important}[dir=rtl] .\34xl\:rtl\:py-72{padding-bottom:18rem!important;padding-top:18rem!important}[dir=rtl] .\34xl\:rtl\:px-72{padding-left:18rem!important;padding-right:18rem!important}[dir=rtl] .\34xl\:rtl\:py-80{padding-bottom:20rem!important;padding-top:20rem!important}[dir=rtl] .\34xl\:rtl\:px-80{padding-left:20rem!important;padding-right:20rem!important}[dir=rtl] .\34xl\:rtl\:py-96{padding-bottom:24rem!important;padding-top:24rem!important}[dir=rtl] .\34xl\:rtl\:px-96{padding-left:24rem!important;padding-right:24rem!important}[dir=rtl] .\34xl\:rtl\:py-px{padding-bottom:1px!important;padding-top:1px!important}[dir=rtl] .\34xl\:rtl\:px-px{padding-left:1px!important;padding-right:1px!important}[dir=rtl] .\34xl\:rtl\:py-0\.5{padding-bottom:.125rem!important;padding-top:.125rem!important}[dir=rtl] .\34xl\:rtl\:px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}[dir=rtl] .\34xl\:rtl\:py-1\.5{padding-bottom:.375rem!important;padding-top:.375rem!important}[dir=rtl] .\34xl\:rtl\:px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}[dir=rtl] .\34xl\:rtl\:py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}[dir=rtl] .\34xl\:rtl\:px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}[dir=rtl] .\34xl\:rtl\:py-3\.5{padding-bottom:.875rem!important;padding-top:.875rem!important}[dir=rtl] .\34xl\:rtl\:px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}[dir=rtl] .\34xl\:rtl\:py-1\/2{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:px-1\/2{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:py-1\/3{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:px-1\/3{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:py-2\/3{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:px-2\/3{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:py-1\/4{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .\34xl\:rtl\:px-1\/4{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .\34xl\:rtl\:py-2\/4{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:px-2\/4{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:py-3\/4{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .\34xl\:rtl\:px-3\/4{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .\34xl\:rtl\:py-1\/5{padding-bottom:20%!important;padding-top:20%!important}[dir=rtl] .\34xl\:rtl\:px-1\/5{padding-left:20%!important;padding-right:20%!important}[dir=rtl] .\34xl\:rtl\:py-2\/5{padding-bottom:40%!important;padding-top:40%!important}[dir=rtl] .\34xl\:rtl\:px-2\/5{padding-left:40%!important;padding-right:40%!important}[dir=rtl] .\34xl\:rtl\:py-3\/5{padding-bottom:60%!important;padding-top:60%!important}[dir=rtl] .\34xl\:rtl\:px-3\/5{padding-left:60%!important;padding-right:60%!important}[dir=rtl] .\34xl\:rtl\:py-4\/5{padding-bottom:80%!important;padding-top:80%!important}[dir=rtl] .\34xl\:rtl\:px-4\/5{padding-left:80%!important;padding-right:80%!important}[dir=rtl] .\34xl\:rtl\:py-1\/6{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:px-1\/6{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:py-2\/6{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:px-2\/6{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:py-3\/6{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:px-3\/6{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:py-4\/6{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:px-4\/6{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:py-5\/6{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:px-5\/6{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:py-1\/12{padding-bottom:8.333333%!important;padding-top:8.333333%!important}[dir=rtl] .\34xl\:rtl\:px-1\/12{padding-left:8.333333%!important;padding-right:8.333333%!important}[dir=rtl] .\34xl\:rtl\:py-2\/12{padding-bottom:16.666667%!important;padding-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:px-2\/12{padding-left:16.666667%!important;padding-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:py-3\/12{padding-bottom:25%!important;padding-top:25%!important}[dir=rtl] .\34xl\:rtl\:px-3\/12{padding-left:25%!important;padding-right:25%!important}[dir=rtl] .\34xl\:rtl\:py-4\/12{padding-bottom:33.333333%!important;padding-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:px-4\/12{padding-left:33.333333%!important;padding-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:py-5\/12{padding-bottom:41.666667%!important;padding-top:41.666667%!important}[dir=rtl] .\34xl\:rtl\:px-5\/12{padding-left:41.666667%!important;padding-right:41.666667%!important}[dir=rtl] .\34xl\:rtl\:py-6\/12{padding-bottom:50%!important;padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:px-6\/12{padding-left:50%!important;padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:py-7\/12{padding-bottom:58.333333%!important;padding-top:58.333333%!important}[dir=rtl] .\34xl\:rtl\:px-7\/12{padding-left:58.333333%!important;padding-right:58.333333%!important}[dir=rtl] .\34xl\:rtl\:py-8\/12{padding-bottom:66.666667%!important;padding-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:px-8\/12{padding-left:66.666667%!important;padding-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:py-9\/12{padding-bottom:75%!important;padding-top:75%!important}[dir=rtl] .\34xl\:rtl\:px-9\/12{padding-left:75%!important;padding-right:75%!important}[dir=rtl] .\34xl\:rtl\:py-10\/12{padding-bottom:83.333333%!important;padding-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:px-10\/12{padding-left:83.333333%!important;padding-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:py-11\/12{padding-bottom:91.666667%!important;padding-top:91.666667%!important}[dir=rtl] .\34xl\:rtl\:px-11\/12{padding-left:91.666667%!important;padding-right:91.666667%!important}[dir=rtl] .\34xl\:rtl\:py-full{padding-bottom:100%!important;padding-top:100%!important}[dir=rtl] .\34xl\:rtl\:px-full{padding-left:100%!important;padding-right:100%!important}[dir=rtl] .\34xl\:rtl\:pt-0{padding-top:0!important}[dir=rtl] .\34xl\:rtl\:pr-0{padding-right:0!important}[dir=rtl] .\34xl\:rtl\:pb-0{padding-bottom:0!important}[dir=rtl] .\34xl\:rtl\:pl-0{padding-left:0!important}[dir=rtl] .\34xl\:rtl\:pt-1{padding-top:.25rem!important}[dir=rtl] .\34xl\:rtl\:pr-1{padding-right:.25rem!important}[dir=rtl] .\34xl\:rtl\:pb-1{padding-bottom:.25rem!important}[dir=rtl] .\34xl\:rtl\:pl-1{padding-left:.25rem!important}[dir=rtl] .\34xl\:rtl\:pt-2{padding-top:.5rem!important}[dir=rtl] .\34xl\:rtl\:pr-2{padding-right:.5rem!important}[dir=rtl] .\34xl\:rtl\:pb-2{padding-bottom:.5rem!important}[dir=rtl] .\34xl\:rtl\:pl-2{padding-left:.5rem!important}[dir=rtl] .\34xl\:rtl\:pt-3{padding-top:.75rem!important}[dir=rtl] .\34xl\:rtl\:pr-3{padding-right:.75rem!important}[dir=rtl] .\34xl\:rtl\:pb-3{padding-bottom:.75rem!important}[dir=rtl] .\34xl\:rtl\:pl-3{padding-left:.75rem!important}[dir=rtl] .\34xl\:rtl\:pt-4{padding-top:1rem!important}[dir=rtl] .\34xl\:rtl\:pr-4{padding-right:1rem!important}[dir=rtl] .\34xl\:rtl\:pb-4{padding-bottom:1rem!important}[dir=rtl] .\34xl\:rtl\:pl-4{padding-left:1rem!important}[dir=rtl] .\34xl\:rtl\:pt-5{padding-top:1.25rem!important}[dir=rtl] .\34xl\:rtl\:pr-5{padding-right:1.25rem!important}[dir=rtl] .\34xl\:rtl\:pb-5{padding-bottom:1.25rem!important}[dir=rtl] .\34xl\:rtl\:pl-5{padding-left:1.25rem!important}[dir=rtl] .\34xl\:rtl\:pt-6{padding-top:1.5rem!important}[dir=rtl] .\34xl\:rtl\:pr-6{padding-right:1.5rem!important}[dir=rtl] .\34xl\:rtl\:pb-6{padding-bottom:1.5rem!important}[dir=rtl] .\34xl\:rtl\:pl-6{padding-left:1.5rem!important}[dir=rtl] .\34xl\:rtl\:pt-7{padding-top:1.75rem!important}[dir=rtl] .\34xl\:rtl\:pr-7{padding-right:1.75rem!important}[dir=rtl] .\34xl\:rtl\:pb-7{padding-bottom:1.75rem!important}[dir=rtl] .\34xl\:rtl\:pl-7{padding-left:1.75rem!important}[dir=rtl] .\34xl\:rtl\:pt-8{padding-top:2rem!important}[dir=rtl] .\34xl\:rtl\:pr-8{padding-right:2rem!important}[dir=rtl] .\34xl\:rtl\:pb-8{padding-bottom:2rem!important}[dir=rtl] .\34xl\:rtl\:pl-8{padding-left:2rem!important}[dir=rtl] .\34xl\:rtl\:pt-9{padding-top:2.25rem!important}[dir=rtl] .\34xl\:rtl\:pr-9{padding-right:2.25rem!important}[dir=rtl] .\34xl\:rtl\:pb-9{padding-bottom:2.25rem!important}[dir=rtl] .\34xl\:rtl\:pl-9{padding-left:2.25rem!important}[dir=rtl] .\34xl\:rtl\:pt-10{padding-top:2.5rem!important}[dir=rtl] .\34xl\:rtl\:pr-10{padding-right:2.5rem!important}[dir=rtl] .\34xl\:rtl\:pb-10{padding-bottom:2.5rem!important}[dir=rtl] .\34xl\:rtl\:pl-10{padding-left:2.5rem!important}[dir=rtl] .\34xl\:rtl\:pt-11{padding-top:2.75rem!important}[dir=rtl] .\34xl\:rtl\:pr-11{padding-right:2.75rem!important}[dir=rtl] .\34xl\:rtl\:pb-11{padding-bottom:2.75rem!important}[dir=rtl] .\34xl\:rtl\:pl-11{padding-left:2.75rem!important}[dir=rtl] .\34xl\:rtl\:pt-12{padding-top:3rem!important}[dir=rtl] .\34xl\:rtl\:pr-12{padding-right:3rem!important}[dir=rtl] .\34xl\:rtl\:pb-12{padding-bottom:3rem!important}[dir=rtl] .\34xl\:rtl\:pl-12{padding-left:3rem!important}[dir=rtl] .\34xl\:rtl\:pt-13{padding-top:3.25rem!important}[dir=rtl] .\34xl\:rtl\:pr-13{padding-right:3.25rem!important}[dir=rtl] .\34xl\:rtl\:pb-13{padding-bottom:3.25rem!important}[dir=rtl] .\34xl\:rtl\:pl-13{padding-left:3.25rem!important}[dir=rtl] .\34xl\:rtl\:pt-14{padding-top:3.5rem!important}[dir=rtl] .\34xl\:rtl\:pr-14{padding-right:3.5rem!important}[dir=rtl] .\34xl\:rtl\:pb-14{padding-bottom:3.5rem!important}[dir=rtl] .\34xl\:rtl\:pl-14{padding-left:3.5rem!important}[dir=rtl] .\34xl\:rtl\:pt-15{padding-top:3.75rem!important}[dir=rtl] .\34xl\:rtl\:pr-15{padding-right:3.75rem!important}[dir=rtl] .\34xl\:rtl\:pb-15{padding-bottom:3.75rem!important}[dir=rtl] .\34xl\:rtl\:pl-15{padding-left:3.75rem!important}[dir=rtl] .\34xl\:rtl\:pt-16{padding-top:4rem!important}[dir=rtl] .\34xl\:rtl\:pr-16{padding-right:4rem!important}[dir=rtl] .\34xl\:rtl\:pb-16{padding-bottom:4rem!important}[dir=rtl] .\34xl\:rtl\:pl-16{padding-left:4rem!important}[dir=rtl] .\34xl\:rtl\:pt-20{padding-top:5rem!important}[dir=rtl] .\34xl\:rtl\:pr-20{padding-right:5rem!important}[dir=rtl] .\34xl\:rtl\:pb-20{padding-bottom:5rem!important}[dir=rtl] .\34xl\:rtl\:pl-20{padding-left:5rem!important}[dir=rtl] .\34xl\:rtl\:pt-24{padding-top:6rem!important}[dir=rtl] .\34xl\:rtl\:pr-24{padding-right:6rem!important}[dir=rtl] .\34xl\:rtl\:pb-24{padding-bottom:6rem!important}[dir=rtl] .\34xl\:rtl\:pl-24{padding-left:6rem!important}[dir=rtl] .\34xl\:rtl\:pt-28{padding-top:7rem!important}[dir=rtl] .\34xl\:rtl\:pr-28{padding-right:7rem!important}[dir=rtl] .\34xl\:rtl\:pb-28{padding-bottom:7rem!important}[dir=rtl] .\34xl\:rtl\:pl-28{padding-left:7rem!important}[dir=rtl] .\34xl\:rtl\:pt-32{padding-top:8rem!important}[dir=rtl] .\34xl\:rtl\:pr-32{padding-right:8rem!important}[dir=rtl] .\34xl\:rtl\:pb-32{padding-bottom:8rem!important}[dir=rtl] .\34xl\:rtl\:pl-32{padding-left:8rem!important}[dir=rtl] .\34xl\:rtl\:pt-36{padding-top:9rem!important}[dir=rtl] .\34xl\:rtl\:pr-36{padding-right:9rem!important}[dir=rtl] .\34xl\:rtl\:pb-36{padding-bottom:9rem!important}[dir=rtl] .\34xl\:rtl\:pl-36{padding-left:9rem!important}[dir=rtl] .\34xl\:rtl\:pt-40{padding-top:10rem!important}[dir=rtl] .\34xl\:rtl\:pr-40{padding-right:10rem!important}[dir=rtl] .\34xl\:rtl\:pb-40{padding-bottom:10rem!important}[dir=rtl] .\34xl\:rtl\:pl-40{padding-left:10rem!important}[dir=rtl] .\34xl\:rtl\:pt-48{padding-top:12rem!important}[dir=rtl] .\34xl\:rtl\:pr-48{padding-right:12rem!important}[dir=rtl] .\34xl\:rtl\:pb-48{padding-bottom:12rem!important}[dir=rtl] .\34xl\:rtl\:pl-48{padding-left:12rem!important}[dir=rtl] .\34xl\:rtl\:pt-56{padding-top:14rem!important}[dir=rtl] .\34xl\:rtl\:pr-56{padding-right:14rem!important}[dir=rtl] .\34xl\:rtl\:pb-56{padding-bottom:14rem!important}[dir=rtl] .\34xl\:rtl\:pl-56{padding-left:14rem!important}[dir=rtl] .\34xl\:rtl\:pt-60{padding-top:15rem!important}[dir=rtl] .\34xl\:rtl\:pr-60{padding-right:15rem!important}[dir=rtl] .\34xl\:rtl\:pb-60{padding-bottom:15rem!important}[dir=rtl] .\34xl\:rtl\:pl-60{padding-left:15rem!important}[dir=rtl] .\34xl\:rtl\:pt-64{padding-top:16rem!important}[dir=rtl] .\34xl\:rtl\:pr-64{padding-right:16rem!important}[dir=rtl] .\34xl\:rtl\:pb-64{padding-bottom:16rem!important}[dir=rtl] .\34xl\:rtl\:pl-64{padding-left:16rem!important}[dir=rtl] .\34xl\:rtl\:pt-72{padding-top:18rem!important}[dir=rtl] .\34xl\:rtl\:pr-72{padding-right:18rem!important}[dir=rtl] .\34xl\:rtl\:pb-72{padding-bottom:18rem!important}[dir=rtl] .\34xl\:rtl\:pl-72{padding-left:18rem!important}[dir=rtl] .\34xl\:rtl\:pt-80{padding-top:20rem!important}[dir=rtl] .\34xl\:rtl\:pr-80{padding-right:20rem!important}[dir=rtl] .\34xl\:rtl\:pb-80{padding-bottom:20rem!important}[dir=rtl] .\34xl\:rtl\:pl-80{padding-left:20rem!important}[dir=rtl] .\34xl\:rtl\:pt-96{padding-top:24rem!important}[dir=rtl] .\34xl\:rtl\:pr-96{padding-right:24rem!important}[dir=rtl] .\34xl\:rtl\:pb-96{padding-bottom:24rem!important}[dir=rtl] .\34xl\:rtl\:pl-96{padding-left:24rem!important}[dir=rtl] .\34xl\:rtl\:pt-px{padding-top:1px!important}[dir=rtl] .\34xl\:rtl\:pr-px{padding-right:1px!important}[dir=rtl] .\34xl\:rtl\:pb-px{padding-bottom:1px!important}[dir=rtl] .\34xl\:rtl\:pl-px{padding-left:1px!important}[dir=rtl] .\34xl\:rtl\:pt-0\.5{padding-top:.125rem!important}[dir=rtl] .\34xl\:rtl\:pr-0\.5{padding-right:.125rem!important}[dir=rtl] .\34xl\:rtl\:pb-0\.5{padding-bottom:.125rem!important}[dir=rtl] .\34xl\:rtl\:pl-0\.5{padding-left:.125rem!important}[dir=rtl] .\34xl\:rtl\:pt-1\.5{padding-top:.375rem!important}[dir=rtl] .\34xl\:rtl\:pr-1\.5{padding-right:.375rem!important}[dir=rtl] .\34xl\:rtl\:pb-1\.5{padding-bottom:.375rem!important}[dir=rtl] .\34xl\:rtl\:pl-1\.5{padding-left:.375rem!important}[dir=rtl] .\34xl\:rtl\:pt-2\.5{padding-top:.625rem!important}[dir=rtl] .\34xl\:rtl\:pr-2\.5{padding-right:.625rem!important}[dir=rtl] .\34xl\:rtl\:pb-2\.5{padding-bottom:.625rem!important}[dir=rtl] .\34xl\:rtl\:pl-2\.5{padding-left:.625rem!important}[dir=rtl] .\34xl\:rtl\:pt-3\.5{padding-top:.875rem!important}[dir=rtl] .\34xl\:rtl\:pr-3\.5{padding-right:.875rem!important}[dir=rtl] .\34xl\:rtl\:pb-3\.5{padding-bottom:.875rem!important}[dir=rtl] .\34xl\:rtl\:pl-3\.5{padding-left:.875rem!important}[dir=rtl] .\34xl\:rtl\:pt-1\/2{padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:pr-1\/2{padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:pb-1\/2{padding-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:pl-1\/2{padding-left:50%!important}[dir=rtl] .\34xl\:rtl\:pt-1\/3{padding-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pr-1\/3{padding-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pb-1\/3{padding-bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pl-1\/3{padding-left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pt-2\/3{padding-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pr-2\/3{padding-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pb-2\/3{padding-bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pl-2\/3{padding-left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pt-1\/4{padding-top:25%!important}[dir=rtl] .\34xl\:rtl\:pr-1\/4{padding-right:25%!important}[dir=rtl] .\34xl\:rtl\:pb-1\/4{padding-bottom:25%!important}[dir=rtl] .\34xl\:rtl\:pl-1\/4{padding-left:25%!important}[dir=rtl] .\34xl\:rtl\:pt-2\/4{padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:pr-2\/4{padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:pb-2\/4{padding-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:pl-2\/4{padding-left:50%!important}[dir=rtl] .\34xl\:rtl\:pt-3\/4{padding-top:75%!important}[dir=rtl] .\34xl\:rtl\:pr-3\/4{padding-right:75%!important}[dir=rtl] .\34xl\:rtl\:pb-3\/4{padding-bottom:75%!important}[dir=rtl] .\34xl\:rtl\:pl-3\/4{padding-left:75%!important}[dir=rtl] .\34xl\:rtl\:pt-1\/5{padding-top:20%!important}[dir=rtl] .\34xl\:rtl\:pr-1\/5{padding-right:20%!important}[dir=rtl] .\34xl\:rtl\:pb-1\/5{padding-bottom:20%!important}[dir=rtl] .\34xl\:rtl\:pl-1\/5{padding-left:20%!important}[dir=rtl] .\34xl\:rtl\:pt-2\/5{padding-top:40%!important}[dir=rtl] .\34xl\:rtl\:pr-2\/5{padding-right:40%!important}[dir=rtl] .\34xl\:rtl\:pb-2\/5{padding-bottom:40%!important}[dir=rtl] .\34xl\:rtl\:pl-2\/5{padding-left:40%!important}[dir=rtl] .\34xl\:rtl\:pt-3\/5{padding-top:60%!important}[dir=rtl] .\34xl\:rtl\:pr-3\/5{padding-right:60%!important}[dir=rtl] .\34xl\:rtl\:pb-3\/5{padding-bottom:60%!important}[dir=rtl] .\34xl\:rtl\:pl-3\/5{padding-left:60%!important}[dir=rtl] .\34xl\:rtl\:pt-4\/5{padding-top:80%!important}[dir=rtl] .\34xl\:rtl\:pr-4\/5{padding-right:80%!important}[dir=rtl] .\34xl\:rtl\:pb-4\/5{padding-bottom:80%!important}[dir=rtl] .\34xl\:rtl\:pl-4\/5{padding-left:80%!important}[dir=rtl] .\34xl\:rtl\:pt-1\/6{padding-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pr-1\/6{padding-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pb-1\/6{padding-bottom:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pl-1\/6{padding-left:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pt-2\/6{padding-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pr-2\/6{padding-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pb-2\/6{padding-bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pl-2\/6{padding-left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pt-3\/6{padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:pr-3\/6{padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:pb-3\/6{padding-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:pl-3\/6{padding-left:50%!important}[dir=rtl] .\34xl\:rtl\:pt-4\/6{padding-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pr-4\/6{padding-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pb-4\/6{padding-bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pl-4\/6{padding-left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pt-5\/6{padding-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pr-5\/6{padding-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pb-5\/6{padding-bottom:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pl-5\/6{padding-left:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pt-1\/12{padding-top:8.333333%!important}[dir=rtl] .\34xl\:rtl\:pr-1\/12{padding-right:8.333333%!important}[dir=rtl] .\34xl\:rtl\:pb-1\/12{padding-bottom:8.333333%!important}[dir=rtl] .\34xl\:rtl\:pl-1\/12{padding-left:8.333333%!important}[dir=rtl] .\34xl\:rtl\:pt-2\/12{padding-top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pr-2\/12{padding-right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pb-2\/12{padding-bottom:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pl-2\/12{padding-left:16.666667%!important}[dir=rtl] .\34xl\:rtl\:pt-3\/12{padding-top:25%!important}[dir=rtl] .\34xl\:rtl\:pr-3\/12{padding-right:25%!important}[dir=rtl] .\34xl\:rtl\:pb-3\/12{padding-bottom:25%!important}[dir=rtl] .\34xl\:rtl\:pl-3\/12{padding-left:25%!important}[dir=rtl] .\34xl\:rtl\:pt-4\/12{padding-top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pr-4\/12{padding-right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pb-4\/12{padding-bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pl-4\/12{padding-left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:pt-5\/12{padding-top:41.666667%!important}[dir=rtl] .\34xl\:rtl\:pr-5\/12{padding-right:41.666667%!important}[dir=rtl] .\34xl\:rtl\:pb-5\/12{padding-bottom:41.666667%!important}[dir=rtl] .\34xl\:rtl\:pl-5\/12{padding-left:41.666667%!important}[dir=rtl] .\34xl\:rtl\:pt-6\/12{padding-top:50%!important}[dir=rtl] .\34xl\:rtl\:pr-6\/12{padding-right:50%!important}[dir=rtl] .\34xl\:rtl\:pb-6\/12{padding-bottom:50%!important}[dir=rtl] .\34xl\:rtl\:pl-6\/12{padding-left:50%!important}[dir=rtl] .\34xl\:rtl\:pt-7\/12{padding-top:58.333333%!important}[dir=rtl] .\34xl\:rtl\:pr-7\/12{padding-right:58.333333%!important}[dir=rtl] .\34xl\:rtl\:pb-7\/12{padding-bottom:58.333333%!important}[dir=rtl] .\34xl\:rtl\:pl-7\/12{padding-left:58.333333%!important}[dir=rtl] .\34xl\:rtl\:pt-8\/12{padding-top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pr-8\/12{padding-right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pb-8\/12{padding-bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pl-8\/12{padding-left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:pt-9\/12{padding-top:75%!important}[dir=rtl] .\34xl\:rtl\:pr-9\/12{padding-right:75%!important}[dir=rtl] .\34xl\:rtl\:pb-9\/12{padding-bottom:75%!important}[dir=rtl] .\34xl\:rtl\:pl-9\/12{padding-left:75%!important}[dir=rtl] .\34xl\:rtl\:pt-10\/12{padding-top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pr-10\/12{padding-right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pb-10\/12{padding-bottom:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pl-10\/12{padding-left:83.333333%!important}[dir=rtl] .\34xl\:rtl\:pt-11\/12{padding-top:91.666667%!important}[dir=rtl] .\34xl\:rtl\:pr-11\/12{padding-right:91.666667%!important}[dir=rtl] .\34xl\:rtl\:pb-11\/12{padding-bottom:91.666667%!important}[dir=rtl] .\34xl\:rtl\:pl-11\/12{padding-left:91.666667%!important}[dir=rtl] .\34xl\:rtl\:pt-full{padding-top:100%!important}[dir=rtl] .\34xl\:rtl\:pr-full{padding-right:100%!important}[dir=rtl] .\34xl\:rtl\:pb-full{padding-bottom:100%!important}[dir=rtl] .\34xl\:rtl\:pl-full{padding-left:100%!important}.\34xl\:placeholder-transparent::-moz-placeholder{color:transparent!important}.\34xl\:placeholder-transparent::placeholder{color:transparent!important}.\34xl\:placeholder-white::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\34xl\:placeholder-white::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\34xl\:placeholder-white-70::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.\34xl\:placeholder-white-70::placeholder{color:hsla(0,0%,100%,.7)!important}.\34xl\:placeholder-blackest::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\34xl\:placeholder-blackest::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\34xl\:placeholder-blackest-70::-moz-placeholder{color:rgba(0,0,0,.7)!important}.\34xl\:placeholder-blackest-70::placeholder{color:rgba(0,0,0,.7)!important}.\34xl\:placeholder-black::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\34xl\:placeholder-black::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-darkest::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-darker::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-dark::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-light::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-light::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-lighter::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-lighter::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-lightest::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\34xl\:placeholder-gray-lightest::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue-darkest::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue-dark::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue-dark::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue-light::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue-light::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\34xl\:placeholder-blue-highlight::-moz-placeholder{color:rgba(180,215,255,.6)!important}.\34xl\:placeholder-blue-highlight::placeholder{color:rgba(180,215,255,.6)!important}.\34xl\:placeholder-orange::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\34xl\:placeholder-orange::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\34xl\:placeholder-orange-darker::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\34xl\:placeholder-orange-darker::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\34xl\:placeholder-orange-darkest::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\34xl\:placeholder-orange-darkest::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\34xl\:placeholder-red::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\34xl\:placeholder-red::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\34xl\:placeholder-green::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\34xl\:placeholder-green::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\34xl\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\34xl\:placeholder-yellow-400::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\34xl\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\34xl\:placeholder-yellow-50::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent!important}.\34xl\:focus\:placeholder-transparent:focus::placeholder{color:transparent!important}.\34xl\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-white-70:focus::-moz-placeholder{color:hsla(0,0%,100%,.7)!important}.\34xl\:focus\:placeholder-white-70:focus::placeholder{color:hsla(0,0%,100%,.7)!important}.\34xl\:focus\:placeholder-blackest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blackest:focus::placeholder{--placeholder-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blackest-70:focus::-moz-placeholder{color:rgba(0,0,0,.7)!important}.\34xl\:focus\:placeholder-blackest-70:focus::placeholder{color:rgba(0,0,0,.7)!important}.\34xl\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-darker:focus::placeholder{--placeholder-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-dark:focus::placeholder{--placeholder-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray:focus::placeholder{--placeholder-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-light:focus::placeholder{--placeholder-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-lighter:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-lighter:focus::placeholder{--placeholder-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-lightest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-gray-lightest:focus::placeholder{--placeholder-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue-dark:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue-dark:focus::placeholder{--placeholder-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue:focus::placeholder{--placeholder-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue-light:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue-light:focus::placeholder{--placeholder-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-blue-highlight:focus::-moz-placeholder{color:rgba(180,215,255,.6)!important}.\34xl\:focus\:placeholder-blue-highlight:focus::placeholder{color:rgba(180,215,255,.6)!important}.\34xl\:focus\:placeholder-orange:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-orange:focus::placeholder{--placeholder-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-orange-darker:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-orange-darker:focus::placeholder{--placeholder-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-orange-darkest:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-orange-darkest:focus::placeholder{--placeholder-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-red:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-red:focus::placeholder{--placeholder-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-green:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-green:focus::placeholder{--placeholder-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\34xl\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--placeholder-opacity))!important}.\34xl\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0!important}.\34xl\:placeholder-opacity-0::placeholder{--placeholder-opacity:0!important}.\34xl\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25!important}.\34xl\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25!important}.\34xl\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5!important}.\34xl\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5!important}.\34xl\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75!important}.\34xl\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75!important}.\34xl\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1!important}.\34xl\:placeholder-opacity-100::placeholder{--placeholder-opacity:1!important}.\34xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0!important}.\34xl\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0!important}.\34xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25!important}.\34xl\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25!important}.\34xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5!important}.\34xl\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5!important}.\34xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75!important}.\34xl\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75!important}.\34xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1!important}.\34xl\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1!important}.\34xl\:pointer-events-none{pointer-events:none!important}.\34xl\:pointer-events-auto{pointer-events:auto!important}.\34xl\:static{position:static!important}.\34xl\:fixed{position:fixed!important}.\34xl\:absolute{position:absolute!important}.\34xl\:relative{position:relative!important}.\34xl\:sticky{position:sticky!important}.\34xl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}.\34xl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}.\34xl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}.\34xl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}.\34xl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}.\34xl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}.\34xl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}.\34xl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}.\34xl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}.\34xl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}.\34xl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}.\34xl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}.\34xl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}.\34xl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}.\34xl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}.\34xl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}.\34xl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}.\34xl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}.\34xl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}.\34xl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}.\34xl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}.\34xl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}.\34xl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}.\34xl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}.\34xl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}.\34xl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}.\34xl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}.\34xl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}.\34xl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}.\34xl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}.\34xl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}.\34xl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}.\34xl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}.\34xl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}.\34xl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}.\34xl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}.\34xl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\34xl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\34xl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\34xl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.\34xl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\34xl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.\34xl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}.\34xl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}.\34xl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}.\34xl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}.\34xl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.\34xl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\34xl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\34xl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\34xl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.\34xl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}.\34xl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}.\34xl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}.\34xl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}.\34xl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}.\34xl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}.\34xl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}.\34xl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}.\34xl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}.\34xl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}.\34xl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}.\34xl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}.\34xl\:inset-y-0{bottom:0!important;top:0!important}.\34xl\:inset-x-0{left:0!important;right:0!important}.\34xl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}.\34xl\:inset-x-1{left:.25rem!important;right:.25rem!important}.\34xl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}.\34xl\:inset-x-2{left:.5rem!important;right:.5rem!important}.\34xl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}.\34xl\:inset-x-3{left:.75rem!important;right:.75rem!important}.\34xl\:inset-y-4{bottom:1rem!important;top:1rem!important}.\34xl\:inset-x-4{left:1rem!important;right:1rem!important}.\34xl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}.\34xl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}.\34xl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}.\34xl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}.\34xl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}.\34xl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}.\34xl\:inset-y-8{bottom:2rem!important;top:2rem!important}.\34xl\:inset-x-8{left:2rem!important;right:2rem!important}.\34xl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}.\34xl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}.\34xl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}.\34xl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}.\34xl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}.\34xl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}.\34xl\:inset-y-12{bottom:3rem!important;top:3rem!important}.\34xl\:inset-x-12{left:3rem!important;right:3rem!important}.\34xl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}.\34xl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}.\34xl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}.\34xl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}.\34xl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}.\34xl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}.\34xl\:inset-y-16{bottom:4rem!important;top:4rem!important}.\34xl\:inset-x-16{left:4rem!important;right:4rem!important}.\34xl\:inset-y-20{bottom:5rem!important;top:5rem!important}.\34xl\:inset-x-20{left:5rem!important;right:5rem!important}.\34xl\:inset-y-24{bottom:6rem!important;top:6rem!important}.\34xl\:inset-x-24{left:6rem!important;right:6rem!important}.\34xl\:inset-y-28{bottom:7rem!important;top:7rem!important}.\34xl\:inset-x-28{left:7rem!important;right:7rem!important}.\34xl\:inset-y-32{bottom:8rem!important;top:8rem!important}.\34xl\:inset-x-32{left:8rem!important;right:8rem!important}.\34xl\:inset-y-36{bottom:9rem!important;top:9rem!important}.\34xl\:inset-x-36{left:9rem!important;right:9rem!important}.\34xl\:inset-y-40{bottom:10rem!important;top:10rem!important}.\34xl\:inset-x-40{left:10rem!important;right:10rem!important}.\34xl\:inset-y-48{bottom:12rem!important;top:12rem!important}.\34xl\:inset-x-48{left:12rem!important;right:12rem!important}.\34xl\:inset-y-56{bottom:14rem!important;top:14rem!important}.\34xl\:inset-x-56{left:14rem!important;right:14rem!important}.\34xl\:inset-y-60{bottom:15rem!important;top:15rem!important}.\34xl\:inset-x-60{left:15rem!important;right:15rem!important}.\34xl\:inset-y-64{bottom:16rem!important;top:16rem!important}.\34xl\:inset-x-64{left:16rem!important;right:16rem!important}.\34xl\:inset-y-72{bottom:18rem!important;top:18rem!important}.\34xl\:inset-x-72{left:18rem!important;right:18rem!important}.\34xl\:inset-y-80{bottom:20rem!important;top:20rem!important}.\34xl\:inset-x-80{left:20rem!important;right:20rem!important}.\34xl\:inset-y-96{bottom:24rem!important;top:24rem!important}.\34xl\:inset-x-96{left:24rem!important;right:24rem!important}.\34xl\:inset-y-auto{bottom:auto!important;top:auto!important}.\34xl\:inset-x-auto{left:auto!important;right:auto!important}.\34xl\:inset-y-px{bottom:1px!important;top:1px!important}.\34xl\:inset-x-px{left:1px!important;right:1px!important}.\34xl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}.\34xl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}.\34xl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}.\34xl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}.\34xl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}.\34xl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}.\34xl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}.\34xl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}.\34xl\:inset-y-1\/2{bottom:50%!important;top:50%!important}.\34xl\:inset-x-1\/2{left:50%!important;right:50%!important}.\34xl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}.\34xl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}.\34xl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}.\34xl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}.\34xl\:inset-y-1\/4{bottom:25%!important;top:25%!important}.\34xl\:inset-x-1\/4{left:25%!important;right:25%!important}.\34xl\:inset-y-2\/4{bottom:50%!important;top:50%!important}.\34xl\:inset-x-2\/4{left:50%!important;right:50%!important}.\34xl\:inset-y-3\/4{bottom:75%!important;top:75%!important}.\34xl\:inset-x-3\/4{left:75%!important;right:75%!important}.\34xl\:inset-y-1\/5{bottom:20%!important;top:20%!important}.\34xl\:inset-x-1\/5{left:20%!important;right:20%!important}.\34xl\:inset-y-2\/5{bottom:40%!important;top:40%!important}.\34xl\:inset-x-2\/5{left:40%!important;right:40%!important}.\34xl\:inset-y-3\/5{bottom:60%!important;top:60%!important}.\34xl\:inset-x-3\/5{left:60%!important;right:60%!important}.\34xl\:inset-y-4\/5{bottom:80%!important;top:80%!important}.\34xl\:inset-x-4\/5{left:80%!important;right:80%!important}.\34xl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}.\34xl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}.\34xl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}.\34xl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}.\34xl\:inset-y-3\/6{bottom:50%!important;top:50%!important}.\34xl\:inset-x-3\/6{left:50%!important;right:50%!important}.\34xl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}.\34xl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}.\34xl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}.\34xl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}.\34xl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}.\34xl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}.\34xl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}.\34xl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}.\34xl\:inset-y-3\/12{bottom:25%!important;top:25%!important}.\34xl\:inset-x-3\/12{left:25%!important;right:25%!important}.\34xl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}.\34xl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}.\34xl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}.\34xl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}.\34xl\:inset-y-6\/12{bottom:50%!important;top:50%!important}.\34xl\:inset-x-6\/12{left:50%!important;right:50%!important}.\34xl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}.\34xl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}.\34xl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}.\34xl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}.\34xl\:inset-y-9\/12{bottom:75%!important;top:75%!important}.\34xl\:inset-x-9\/12{left:75%!important;right:75%!important}.\34xl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}.\34xl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}.\34xl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}.\34xl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}.\34xl\:inset-y-full{bottom:100%!important;top:100%!important}.\34xl\:inset-x-full{left:100%!important;right:100%!important}.\34xl\:top-0{top:0!important}.\34xl\:right-0{right:0!important}.\34xl\:bottom-0{bottom:0!important}.\34xl\:left-0{left:0!important}.\34xl\:top-1{top:.25rem!important}.\34xl\:right-1{right:.25rem!important}.\34xl\:bottom-1{bottom:.25rem!important}.\34xl\:left-1{left:.25rem!important}.\34xl\:top-2{top:.5rem!important}.\34xl\:right-2{right:.5rem!important}.\34xl\:bottom-2{bottom:.5rem!important}.\34xl\:left-2{left:.5rem!important}.\34xl\:top-3{top:.75rem!important}.\34xl\:right-3{right:.75rem!important}.\34xl\:bottom-3{bottom:.75rem!important}.\34xl\:left-3{left:.75rem!important}.\34xl\:top-4{top:1rem!important}.\34xl\:right-4{right:1rem!important}.\34xl\:bottom-4{bottom:1rem!important}.\34xl\:left-4{left:1rem!important}.\34xl\:top-5{top:1.25rem!important}.\34xl\:right-5{right:1.25rem!important}.\34xl\:bottom-5{bottom:1.25rem!important}.\34xl\:left-5{left:1.25rem!important}.\34xl\:top-6{top:1.5rem!important}.\34xl\:right-6{right:1.5rem!important}.\34xl\:bottom-6{bottom:1.5rem!important}.\34xl\:left-6{left:1.5rem!important}.\34xl\:top-7{top:1.75rem!important}.\34xl\:right-7{right:1.75rem!important}.\34xl\:bottom-7{bottom:1.75rem!important}.\34xl\:left-7{left:1.75rem!important}.\34xl\:top-8{top:2rem!important}.\34xl\:right-8{right:2rem!important}.\34xl\:bottom-8{bottom:2rem!important}.\34xl\:left-8{left:2rem!important}.\34xl\:top-9{top:2.25rem!important}.\34xl\:right-9{right:2.25rem!important}.\34xl\:bottom-9{bottom:2.25rem!important}.\34xl\:left-9{left:2.25rem!important}.\34xl\:top-10{top:2.5rem!important}.\34xl\:right-10{right:2.5rem!important}.\34xl\:bottom-10{bottom:2.5rem!important}.\34xl\:left-10{left:2.5rem!important}.\34xl\:top-11{top:2.75rem!important}.\34xl\:right-11{right:2.75rem!important}.\34xl\:bottom-11{bottom:2.75rem!important}.\34xl\:left-11{left:2.75rem!important}.\34xl\:top-12{top:3rem!important}.\34xl\:right-12{right:3rem!important}.\34xl\:bottom-12{bottom:3rem!important}.\34xl\:left-12{left:3rem!important}.\34xl\:top-13{top:3.25rem!important}.\34xl\:right-13{right:3.25rem!important}.\34xl\:bottom-13{bottom:3.25rem!important}.\34xl\:left-13{left:3.25rem!important}.\34xl\:top-14{top:3.5rem!important}.\34xl\:right-14{right:3.5rem!important}.\34xl\:bottom-14{bottom:3.5rem!important}.\34xl\:left-14{left:3.5rem!important}.\34xl\:top-15{top:3.75rem!important}.\34xl\:right-15{right:3.75rem!important}.\34xl\:bottom-15{bottom:3.75rem!important}.\34xl\:left-15{left:3.75rem!important}.\34xl\:top-16{top:4rem!important}.\34xl\:right-16{right:4rem!important}.\34xl\:bottom-16{bottom:4rem!important}.\34xl\:left-16{left:4rem!important}.\34xl\:top-20{top:5rem!important}.\34xl\:right-20{right:5rem!important}.\34xl\:bottom-20{bottom:5rem!important}.\34xl\:left-20{left:5rem!important}.\34xl\:top-24{top:6rem!important}.\34xl\:right-24{right:6rem!important}.\34xl\:bottom-24{bottom:6rem!important}.\34xl\:left-24{left:6rem!important}.\34xl\:top-28{top:7rem!important}.\34xl\:right-28{right:7rem!important}.\34xl\:bottom-28{bottom:7rem!important}.\34xl\:left-28{left:7rem!important}.\34xl\:top-32{top:8rem!important}.\34xl\:right-32{right:8rem!important}.\34xl\:bottom-32{bottom:8rem!important}.\34xl\:left-32{left:8rem!important}.\34xl\:top-36{top:9rem!important}.\34xl\:right-36{right:9rem!important}.\34xl\:bottom-36{bottom:9rem!important}.\34xl\:left-36{left:9rem!important}.\34xl\:top-40{top:10rem!important}.\34xl\:right-40{right:10rem!important}.\34xl\:bottom-40{bottom:10rem!important}.\34xl\:left-40{left:10rem!important}.\34xl\:top-48{top:12rem!important}.\34xl\:right-48{right:12rem!important}.\34xl\:bottom-48{bottom:12rem!important}.\34xl\:left-48{left:12rem!important}.\34xl\:top-56{top:14rem!important}.\34xl\:right-56{right:14rem!important}.\34xl\:bottom-56{bottom:14rem!important}.\34xl\:left-56{left:14rem!important}.\34xl\:top-60{top:15rem!important}.\34xl\:right-60{right:15rem!important}.\34xl\:bottom-60{bottom:15rem!important}.\34xl\:left-60{left:15rem!important}.\34xl\:top-64{top:16rem!important}.\34xl\:right-64{right:16rem!important}.\34xl\:bottom-64{bottom:16rem!important}.\34xl\:left-64{left:16rem!important}.\34xl\:top-72{top:18rem!important}.\34xl\:right-72{right:18rem!important}.\34xl\:bottom-72{bottom:18rem!important}.\34xl\:left-72{left:18rem!important}.\34xl\:top-80{top:20rem!important}.\34xl\:right-80{right:20rem!important}.\34xl\:bottom-80{bottom:20rem!important}.\34xl\:left-80{left:20rem!important}.\34xl\:top-96{top:24rem!important}.\34xl\:right-96{right:24rem!important}.\34xl\:bottom-96{bottom:24rem!important}.\34xl\:left-96{left:24rem!important}.\34xl\:top-auto{top:auto!important}.\34xl\:right-auto{right:auto!important}.\34xl\:bottom-auto{bottom:auto!important}.\34xl\:left-auto{left:auto!important}.\34xl\:top-px{top:1px!important}.\34xl\:right-px{right:1px!important}.\34xl\:bottom-px{bottom:1px!important}.\34xl\:left-px{left:1px!important}.\34xl\:top-0\.5{top:.125rem!important}.\34xl\:right-0\.5{right:.125rem!important}.\34xl\:bottom-0\.5{bottom:.125rem!important}.\34xl\:left-0\.5{left:.125rem!important}.\34xl\:top-1\.5{top:.375rem!important}.\34xl\:right-1\.5{right:.375rem!important}.\34xl\:bottom-1\.5{bottom:.375rem!important}.\34xl\:left-1\.5{left:.375rem!important}.\34xl\:top-2\.5{top:.625rem!important}.\34xl\:right-2\.5{right:.625rem!important}.\34xl\:bottom-2\.5{bottom:.625rem!important}.\34xl\:left-2\.5{left:.625rem!important}.\34xl\:top-3\.5{top:.875rem!important}.\34xl\:right-3\.5{right:.875rem!important}.\34xl\:bottom-3\.5{bottom:.875rem!important}.\34xl\:left-3\.5{left:.875rem!important}.\34xl\:top-1\/2{top:50%!important}.\34xl\:right-1\/2{right:50%!important}.\34xl\:bottom-1\/2{bottom:50%!important}.\34xl\:left-1\/2{left:50%!important}.\34xl\:top-1\/3{top:33.333333%!important}.\34xl\:right-1\/3{right:33.333333%!important}.\34xl\:bottom-1\/3{bottom:33.333333%!important}.\34xl\:left-1\/3{left:33.333333%!important}.\34xl\:top-2\/3{top:66.666667%!important}.\34xl\:right-2\/3{right:66.666667%!important}.\34xl\:bottom-2\/3{bottom:66.666667%!important}.\34xl\:left-2\/3{left:66.666667%!important}.\34xl\:top-1\/4{top:25%!important}.\34xl\:right-1\/4{right:25%!important}.\34xl\:bottom-1\/4{bottom:25%!important}.\34xl\:left-1\/4{left:25%!important}.\34xl\:top-2\/4{top:50%!important}.\34xl\:right-2\/4{right:50%!important}.\34xl\:bottom-2\/4{bottom:50%!important}.\34xl\:left-2\/4{left:50%!important}.\34xl\:top-3\/4{top:75%!important}.\34xl\:right-3\/4{right:75%!important}.\34xl\:bottom-3\/4{bottom:75%!important}.\34xl\:left-3\/4{left:75%!important}.\34xl\:top-1\/5{top:20%!important}.\34xl\:right-1\/5{right:20%!important}.\34xl\:bottom-1\/5{bottom:20%!important}.\34xl\:left-1\/5{left:20%!important}.\34xl\:top-2\/5{top:40%!important}.\34xl\:right-2\/5{right:40%!important}.\34xl\:bottom-2\/5{bottom:40%!important}.\34xl\:left-2\/5{left:40%!important}.\34xl\:top-3\/5{top:60%!important}.\34xl\:right-3\/5{right:60%!important}.\34xl\:bottom-3\/5{bottom:60%!important}.\34xl\:left-3\/5{left:60%!important}.\34xl\:top-4\/5{top:80%!important}.\34xl\:right-4\/5{right:80%!important}.\34xl\:bottom-4\/5{bottom:80%!important}.\34xl\:left-4\/5{left:80%!important}.\34xl\:top-1\/6{top:16.666667%!important}.\34xl\:right-1\/6{right:16.666667%!important}.\34xl\:bottom-1\/6{bottom:16.666667%!important}.\34xl\:left-1\/6{left:16.666667%!important}.\34xl\:top-2\/6{top:33.333333%!important}.\34xl\:right-2\/6{right:33.333333%!important}.\34xl\:bottom-2\/6{bottom:33.333333%!important}.\34xl\:left-2\/6{left:33.333333%!important}.\34xl\:top-3\/6{top:50%!important}.\34xl\:right-3\/6{right:50%!important}.\34xl\:bottom-3\/6{bottom:50%!important}.\34xl\:left-3\/6{left:50%!important}.\34xl\:top-4\/6{top:66.666667%!important}.\34xl\:right-4\/6{right:66.666667%!important}.\34xl\:bottom-4\/6{bottom:66.666667%!important}.\34xl\:left-4\/6{left:66.666667%!important}.\34xl\:top-5\/6{top:83.333333%!important}.\34xl\:right-5\/6{right:83.333333%!important}.\34xl\:bottom-5\/6{bottom:83.333333%!important}.\34xl\:left-5\/6{left:83.333333%!important}.\34xl\:top-1\/12{top:8.333333%!important}.\34xl\:right-1\/12{right:8.333333%!important}.\34xl\:bottom-1\/12{bottom:8.333333%!important}.\34xl\:left-1\/12{left:8.333333%!important}.\34xl\:top-2\/12{top:16.666667%!important}.\34xl\:right-2\/12{right:16.666667%!important}.\34xl\:bottom-2\/12{bottom:16.666667%!important}.\34xl\:left-2\/12{left:16.666667%!important}.\34xl\:top-3\/12{top:25%!important}.\34xl\:right-3\/12{right:25%!important}.\34xl\:bottom-3\/12{bottom:25%!important}.\34xl\:left-3\/12{left:25%!important}.\34xl\:top-4\/12{top:33.333333%!important}.\34xl\:right-4\/12{right:33.333333%!important}.\34xl\:bottom-4\/12{bottom:33.333333%!important}.\34xl\:left-4\/12{left:33.333333%!important}.\34xl\:top-5\/12{top:41.666667%!important}.\34xl\:right-5\/12{right:41.666667%!important}.\34xl\:bottom-5\/12{bottom:41.666667%!important}.\34xl\:left-5\/12{left:41.666667%!important}.\34xl\:top-6\/12{top:50%!important}.\34xl\:right-6\/12{right:50%!important}.\34xl\:bottom-6\/12{bottom:50%!important}.\34xl\:left-6\/12{left:50%!important}.\34xl\:top-7\/12{top:58.333333%!important}.\34xl\:right-7\/12{right:58.333333%!important}.\34xl\:bottom-7\/12{bottom:58.333333%!important}.\34xl\:left-7\/12{left:58.333333%!important}.\34xl\:top-8\/12{top:66.666667%!important}.\34xl\:right-8\/12{right:66.666667%!important}.\34xl\:bottom-8\/12{bottom:66.666667%!important}.\34xl\:left-8\/12{left:66.666667%!important}.\34xl\:top-9\/12{top:75%!important}.\34xl\:right-9\/12{right:75%!important}.\34xl\:bottom-9\/12{bottom:75%!important}.\34xl\:left-9\/12{left:75%!important}.\34xl\:top-10\/12{top:83.333333%!important}.\34xl\:right-10\/12{right:83.333333%!important}.\34xl\:bottom-10\/12{bottom:83.333333%!important}.\34xl\:left-10\/12{left:83.333333%!important}.\34xl\:top-11\/12{top:91.666667%!important}.\34xl\:right-11\/12{right:91.666667%!important}.\34xl\:bottom-11\/12{bottom:91.666667%!important}.\34xl\:left-11\/12{left:91.666667%!important}.\34xl\:top-full{top:100%!important}.\34xl\:right-full{right:100%!important}.\34xl\:bottom-full{bottom:100%!important}.\34xl\:left-full{left:100%!important}[dir=ltr] .\34xl\:ltr\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=ltr] .\34xl\:ltr\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=ltr] .\34xl\:ltr\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=ltr] .\34xl\:ltr\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=ltr] .\34xl\:ltr\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=ltr] .\34xl\:ltr\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=ltr] .\34xl\:ltr\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=ltr] .\34xl\:ltr\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=ltr] .\34xl\:ltr\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=ltr] .\34xl\:ltr\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=ltr] .\34xl\:ltr\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=ltr] .\34xl\:ltr\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=ltr] .\34xl\:ltr\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=ltr] .\34xl\:ltr\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=ltr] .\34xl\:ltr\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=ltr] .\34xl\:ltr\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=ltr] .\34xl\:ltr\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=ltr] .\34xl\:ltr\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=ltr] .\34xl\:ltr\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=ltr] .\34xl\:ltr\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=ltr] .\34xl\:ltr\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=ltr] .\34xl\:ltr\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=ltr] .\34xl\:ltr\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=ltr] .\34xl\:ltr\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=ltr] .\34xl\:ltr\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .\34xl\:ltr\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .\34xl\:ltr\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=ltr] .\34xl\:ltr\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=ltr] .\34xl\:ltr\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=ltr] .\34xl\:ltr\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=ltr] .\34xl\:ltr\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=ltr] .\34xl\:ltr\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=ltr] .\34xl\:ltr\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=ltr] .\34xl\:ltr\:inset-y-0{bottom:0!important;top:0!important}[dir=ltr] .\34xl\:ltr\:inset-x-0{left:0!important;right:0!important}[dir=ltr] .\34xl\:ltr\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-4{left:1rem!important;right:1rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-8{left:2rem!important;right:2rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-12{left:3rem!important;right:3rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-16{left:4rem!important;right:4rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-20{left:5rem!important;right:5rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-24{left:6rem!important;right:6rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-28{left:7rem!important;right:7rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-32{left:8rem!important;right:8rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-36{left:9rem!important;right:9rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-40{left:10rem!important;right:10rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-48{left:12rem!important;right:12rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-56{left:14rem!important;right:14rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-60{left:15rem!important;right:15rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-64{left:16rem!important;right:16rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-72{left:18rem!important;right:18rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-80{left:20rem!important;right:20rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-96{left:24rem!important;right:24rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=ltr] .\34xl\:ltr\:inset-x-auto{left:auto!important;right:auto!important}[dir=ltr] .\34xl\:ltr\:inset-y-px{bottom:1px!important;top:1px!important}[dir=ltr] .\34xl\:ltr\:inset-x-px{left:1px!important;right:1px!important}[dir=ltr] .\34xl\:ltr\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=ltr] .\34xl\:ltr\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=ltr] .\34xl\:ltr\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=ltr] .\34xl\:ltr\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=ltr] .\34xl\:ltr\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=ltr] .\34xl\:ltr\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=ltr] .\34xl\:ltr\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=ltr] .\34xl\:ltr\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=ltr] .\34xl\:ltr\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=ltr] .\34xl\:ltr\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=ltr] .\34xl\:ltr\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=ltr] .\34xl\:ltr\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=ltr] .\34xl\:ltr\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=ltr] .\34xl\:ltr\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=ltr] .\34xl\:ltr\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=ltr] .\34xl\:ltr\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=ltr] .\34xl\:ltr\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=ltr] .\34xl\:ltr\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=ltr] .\34xl\:ltr\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=ltr] .\34xl\:ltr\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=ltr] .\34xl\:ltr\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=ltr] .\34xl\:ltr\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=ltr] .\34xl\:ltr\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=ltr] .\34xl\:ltr\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=ltr] .\34xl\:ltr\:inset-y-full{bottom:100%!important;top:100%!important}[dir=ltr] .\34xl\:ltr\:inset-x-full{left:100%!important;right:100%!important}[dir=ltr] .\34xl\:ltr\:top-0{top:0!important}[dir=ltr] .\34xl\:ltr\:right-0{right:0!important}[dir=ltr] .\34xl\:ltr\:bottom-0{bottom:0!important}[dir=ltr] .\34xl\:ltr\:left-0{left:0!important}[dir=ltr] .\34xl\:ltr\:top-1{top:.25rem!important}[dir=ltr] .\34xl\:ltr\:right-1{right:.25rem!important}[dir=ltr] .\34xl\:ltr\:bottom-1{bottom:.25rem!important}[dir=ltr] .\34xl\:ltr\:left-1{left:.25rem!important}[dir=ltr] .\34xl\:ltr\:top-2{top:.5rem!important}[dir=ltr] .\34xl\:ltr\:right-2{right:.5rem!important}[dir=ltr] .\34xl\:ltr\:bottom-2{bottom:.5rem!important}[dir=ltr] .\34xl\:ltr\:left-2{left:.5rem!important}[dir=ltr] .\34xl\:ltr\:top-3{top:.75rem!important}[dir=ltr] .\34xl\:ltr\:right-3{right:.75rem!important}[dir=ltr] .\34xl\:ltr\:bottom-3{bottom:.75rem!important}[dir=ltr] .\34xl\:ltr\:left-3{left:.75rem!important}[dir=ltr] .\34xl\:ltr\:top-4{top:1rem!important}[dir=ltr] .\34xl\:ltr\:right-4{right:1rem!important}[dir=ltr] .\34xl\:ltr\:bottom-4{bottom:1rem!important}[dir=ltr] .\34xl\:ltr\:left-4{left:1rem!important}[dir=ltr] .\34xl\:ltr\:top-5{top:1.25rem!important}[dir=ltr] .\34xl\:ltr\:right-5{right:1.25rem!important}[dir=ltr] .\34xl\:ltr\:bottom-5{bottom:1.25rem!important}[dir=ltr] .\34xl\:ltr\:left-5{left:1.25rem!important}[dir=ltr] .\34xl\:ltr\:top-6{top:1.5rem!important}[dir=ltr] .\34xl\:ltr\:right-6{right:1.5rem!important}[dir=ltr] .\34xl\:ltr\:bottom-6{bottom:1.5rem!important}[dir=ltr] .\34xl\:ltr\:left-6{left:1.5rem!important}[dir=ltr] .\34xl\:ltr\:top-7{top:1.75rem!important}[dir=ltr] .\34xl\:ltr\:right-7{right:1.75rem!important}[dir=ltr] .\34xl\:ltr\:bottom-7{bottom:1.75rem!important}[dir=ltr] .\34xl\:ltr\:left-7{left:1.75rem!important}[dir=ltr] .\34xl\:ltr\:top-8{top:2rem!important}[dir=ltr] .\34xl\:ltr\:right-8{right:2rem!important}[dir=ltr] .\34xl\:ltr\:bottom-8{bottom:2rem!important}[dir=ltr] .\34xl\:ltr\:left-8{left:2rem!important}[dir=ltr] .\34xl\:ltr\:top-9{top:2.25rem!important}[dir=ltr] .\34xl\:ltr\:right-9{right:2.25rem!important}[dir=ltr] .\34xl\:ltr\:bottom-9{bottom:2.25rem!important}[dir=ltr] .\34xl\:ltr\:left-9{left:2.25rem!important}[dir=ltr] .\34xl\:ltr\:top-10{top:2.5rem!important}[dir=ltr] .\34xl\:ltr\:right-10{right:2.5rem!important}[dir=ltr] .\34xl\:ltr\:bottom-10{bottom:2.5rem!important}[dir=ltr] .\34xl\:ltr\:left-10{left:2.5rem!important}[dir=ltr] .\34xl\:ltr\:top-11{top:2.75rem!important}[dir=ltr] .\34xl\:ltr\:right-11{right:2.75rem!important}[dir=ltr] .\34xl\:ltr\:bottom-11{bottom:2.75rem!important}[dir=ltr] .\34xl\:ltr\:left-11{left:2.75rem!important}[dir=ltr] .\34xl\:ltr\:top-12{top:3rem!important}[dir=ltr] .\34xl\:ltr\:right-12{right:3rem!important}[dir=ltr] .\34xl\:ltr\:bottom-12{bottom:3rem!important}[dir=ltr] .\34xl\:ltr\:left-12{left:3rem!important}[dir=ltr] .\34xl\:ltr\:top-13{top:3.25rem!important}[dir=ltr] .\34xl\:ltr\:right-13{right:3.25rem!important}[dir=ltr] .\34xl\:ltr\:bottom-13{bottom:3.25rem!important}[dir=ltr] .\34xl\:ltr\:left-13{left:3.25rem!important}[dir=ltr] .\34xl\:ltr\:top-14{top:3.5rem!important}[dir=ltr] .\34xl\:ltr\:right-14{right:3.5rem!important}[dir=ltr] .\34xl\:ltr\:bottom-14{bottom:3.5rem!important}[dir=ltr] .\34xl\:ltr\:left-14{left:3.5rem!important}[dir=ltr] .\34xl\:ltr\:top-15{top:3.75rem!important}[dir=ltr] .\34xl\:ltr\:right-15{right:3.75rem!important}[dir=ltr] .\34xl\:ltr\:bottom-15{bottom:3.75rem!important}[dir=ltr] .\34xl\:ltr\:left-15{left:3.75rem!important}[dir=ltr] .\34xl\:ltr\:top-16{top:4rem!important}[dir=ltr] .\34xl\:ltr\:right-16{right:4rem!important}[dir=ltr] .\34xl\:ltr\:bottom-16{bottom:4rem!important}[dir=ltr] .\34xl\:ltr\:left-16{left:4rem!important}[dir=ltr] .\34xl\:ltr\:top-20{top:5rem!important}[dir=ltr] .\34xl\:ltr\:right-20{right:5rem!important}[dir=ltr] .\34xl\:ltr\:bottom-20{bottom:5rem!important}[dir=ltr] .\34xl\:ltr\:left-20{left:5rem!important}[dir=ltr] .\34xl\:ltr\:top-24{top:6rem!important}[dir=ltr] .\34xl\:ltr\:right-24{right:6rem!important}[dir=ltr] .\34xl\:ltr\:bottom-24{bottom:6rem!important}[dir=ltr] .\34xl\:ltr\:left-24{left:6rem!important}[dir=ltr] .\34xl\:ltr\:top-28{top:7rem!important}[dir=ltr] .\34xl\:ltr\:right-28{right:7rem!important}[dir=ltr] .\34xl\:ltr\:bottom-28{bottom:7rem!important}[dir=ltr] .\34xl\:ltr\:left-28{left:7rem!important}[dir=ltr] .\34xl\:ltr\:top-32{top:8rem!important}[dir=ltr] .\34xl\:ltr\:right-32{right:8rem!important}[dir=ltr] .\34xl\:ltr\:bottom-32{bottom:8rem!important}[dir=ltr] .\34xl\:ltr\:left-32{left:8rem!important}[dir=ltr] .\34xl\:ltr\:top-36{top:9rem!important}[dir=ltr] .\34xl\:ltr\:right-36{right:9rem!important}[dir=ltr] .\34xl\:ltr\:bottom-36{bottom:9rem!important}[dir=ltr] .\34xl\:ltr\:left-36{left:9rem!important}[dir=ltr] .\34xl\:ltr\:top-40{top:10rem!important}[dir=ltr] .\34xl\:ltr\:right-40{right:10rem!important}[dir=ltr] .\34xl\:ltr\:bottom-40{bottom:10rem!important}[dir=ltr] .\34xl\:ltr\:left-40{left:10rem!important}[dir=ltr] .\34xl\:ltr\:top-48{top:12rem!important}[dir=ltr] .\34xl\:ltr\:right-48{right:12rem!important}[dir=ltr] .\34xl\:ltr\:bottom-48{bottom:12rem!important}[dir=ltr] .\34xl\:ltr\:left-48{left:12rem!important}[dir=ltr] .\34xl\:ltr\:top-56{top:14rem!important}[dir=ltr] .\34xl\:ltr\:right-56{right:14rem!important}[dir=ltr] .\34xl\:ltr\:bottom-56{bottom:14rem!important}[dir=ltr] .\34xl\:ltr\:left-56{left:14rem!important}[dir=ltr] .\34xl\:ltr\:top-60{top:15rem!important}[dir=ltr] .\34xl\:ltr\:right-60{right:15rem!important}[dir=ltr] .\34xl\:ltr\:bottom-60{bottom:15rem!important}[dir=ltr] .\34xl\:ltr\:left-60{left:15rem!important}[dir=ltr] .\34xl\:ltr\:top-64{top:16rem!important}[dir=ltr] .\34xl\:ltr\:right-64{right:16rem!important}[dir=ltr] .\34xl\:ltr\:bottom-64{bottom:16rem!important}[dir=ltr] .\34xl\:ltr\:left-64{left:16rem!important}[dir=ltr] .\34xl\:ltr\:top-72{top:18rem!important}[dir=ltr] .\34xl\:ltr\:right-72{right:18rem!important}[dir=ltr] .\34xl\:ltr\:bottom-72{bottom:18rem!important}[dir=ltr] .\34xl\:ltr\:left-72{left:18rem!important}[dir=ltr] .\34xl\:ltr\:top-80{top:20rem!important}[dir=ltr] .\34xl\:ltr\:right-80{right:20rem!important}[dir=ltr] .\34xl\:ltr\:bottom-80{bottom:20rem!important}[dir=ltr] .\34xl\:ltr\:left-80{left:20rem!important}[dir=ltr] .\34xl\:ltr\:top-96{top:24rem!important}[dir=ltr] .\34xl\:ltr\:right-96{right:24rem!important}[dir=ltr] .\34xl\:ltr\:bottom-96{bottom:24rem!important}[dir=ltr] .\34xl\:ltr\:left-96{left:24rem!important}[dir=ltr] .\34xl\:ltr\:top-auto{top:auto!important}[dir=ltr] .\34xl\:ltr\:right-auto{right:auto!important}[dir=ltr] .\34xl\:ltr\:bottom-auto{bottom:auto!important}[dir=ltr] .\34xl\:ltr\:left-auto{left:auto!important}[dir=ltr] .\34xl\:ltr\:top-px{top:1px!important}[dir=ltr] .\34xl\:ltr\:right-px{right:1px!important}[dir=ltr] .\34xl\:ltr\:bottom-px{bottom:1px!important}[dir=ltr] .\34xl\:ltr\:left-px{left:1px!important}[dir=ltr] .\34xl\:ltr\:top-0\.5{top:.125rem!important}[dir=ltr] .\34xl\:ltr\:right-0\.5{right:.125rem!important}[dir=ltr] .\34xl\:ltr\:bottom-0\.5{bottom:.125rem!important}[dir=ltr] .\34xl\:ltr\:left-0\.5{left:.125rem!important}[dir=ltr] .\34xl\:ltr\:top-1\.5{top:.375rem!important}[dir=ltr] .\34xl\:ltr\:right-1\.5{right:.375rem!important}[dir=ltr] .\34xl\:ltr\:bottom-1\.5{bottom:.375rem!important}[dir=ltr] .\34xl\:ltr\:left-1\.5{left:.375rem!important}[dir=ltr] .\34xl\:ltr\:top-2\.5{top:.625rem!important}[dir=ltr] .\34xl\:ltr\:right-2\.5{right:.625rem!important}[dir=ltr] .\34xl\:ltr\:bottom-2\.5{bottom:.625rem!important}[dir=ltr] .\34xl\:ltr\:left-2\.5{left:.625rem!important}[dir=ltr] .\34xl\:ltr\:top-3\.5{top:.875rem!important}[dir=ltr] .\34xl\:ltr\:right-3\.5{right:.875rem!important}[dir=ltr] .\34xl\:ltr\:bottom-3\.5{bottom:.875rem!important}[dir=ltr] .\34xl\:ltr\:left-3\.5{left:.875rem!important}[dir=ltr] .\34xl\:ltr\:top-1\/2{top:50%!important}[dir=ltr] .\34xl\:ltr\:right-1\/2{right:50%!important}[dir=ltr] .\34xl\:ltr\:bottom-1\/2{bottom:50%!important}[dir=ltr] .\34xl\:ltr\:left-1\/2{left:50%!important}[dir=ltr] .\34xl\:ltr\:top-1\/3{top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:right-1\/3{right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:bottom-1\/3{bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:left-1\/3{left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:top-2\/3{top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:right-2\/3{right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:bottom-2\/3{bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:left-2\/3{left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:top-1\/4{top:25%!important}[dir=ltr] .\34xl\:ltr\:right-1\/4{right:25%!important}[dir=ltr] .\34xl\:ltr\:bottom-1\/4{bottom:25%!important}[dir=ltr] .\34xl\:ltr\:left-1\/4{left:25%!important}[dir=ltr] .\34xl\:ltr\:top-2\/4{top:50%!important}[dir=ltr] .\34xl\:ltr\:right-2\/4{right:50%!important}[dir=ltr] .\34xl\:ltr\:bottom-2\/4{bottom:50%!important}[dir=ltr] .\34xl\:ltr\:left-2\/4{left:50%!important}[dir=ltr] .\34xl\:ltr\:top-3\/4{top:75%!important}[dir=ltr] .\34xl\:ltr\:right-3\/4{right:75%!important}[dir=ltr] .\34xl\:ltr\:bottom-3\/4{bottom:75%!important}[dir=ltr] .\34xl\:ltr\:left-3\/4{left:75%!important}[dir=ltr] .\34xl\:ltr\:top-1\/5{top:20%!important}[dir=ltr] .\34xl\:ltr\:right-1\/5{right:20%!important}[dir=ltr] .\34xl\:ltr\:bottom-1\/5{bottom:20%!important}[dir=ltr] .\34xl\:ltr\:left-1\/5{left:20%!important}[dir=ltr] .\34xl\:ltr\:top-2\/5{top:40%!important}[dir=ltr] .\34xl\:ltr\:right-2\/5{right:40%!important}[dir=ltr] .\34xl\:ltr\:bottom-2\/5{bottom:40%!important}[dir=ltr] .\34xl\:ltr\:left-2\/5{left:40%!important}[dir=ltr] .\34xl\:ltr\:top-3\/5{top:60%!important}[dir=ltr] .\34xl\:ltr\:right-3\/5{right:60%!important}[dir=ltr] .\34xl\:ltr\:bottom-3\/5{bottom:60%!important}[dir=ltr] .\34xl\:ltr\:left-3\/5{left:60%!important}[dir=ltr] .\34xl\:ltr\:top-4\/5{top:80%!important}[dir=ltr] .\34xl\:ltr\:right-4\/5{right:80%!important}[dir=ltr] .\34xl\:ltr\:bottom-4\/5{bottom:80%!important}[dir=ltr] .\34xl\:ltr\:left-4\/5{left:80%!important}[dir=ltr] .\34xl\:ltr\:top-1\/6{top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:right-1\/6{right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:bottom-1\/6{bottom:16.666667%!important}[dir=ltr] .\34xl\:ltr\:left-1\/6{left:16.666667%!important}[dir=ltr] .\34xl\:ltr\:top-2\/6{top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:right-2\/6{right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:bottom-2\/6{bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:left-2\/6{left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:top-3\/6{top:50%!important}[dir=ltr] .\34xl\:ltr\:right-3\/6{right:50%!important}[dir=ltr] .\34xl\:ltr\:bottom-3\/6{bottom:50%!important}[dir=ltr] .\34xl\:ltr\:left-3\/6{left:50%!important}[dir=ltr] .\34xl\:ltr\:top-4\/6{top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:right-4\/6{right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:bottom-4\/6{bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:left-4\/6{left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:top-5\/6{top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:right-5\/6{right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:bottom-5\/6{bottom:83.333333%!important}[dir=ltr] .\34xl\:ltr\:left-5\/6{left:83.333333%!important}[dir=ltr] .\34xl\:ltr\:top-1\/12{top:8.333333%!important}[dir=ltr] .\34xl\:ltr\:right-1\/12{right:8.333333%!important}[dir=ltr] .\34xl\:ltr\:bottom-1\/12{bottom:8.333333%!important}[dir=ltr] .\34xl\:ltr\:left-1\/12{left:8.333333%!important}[dir=ltr] .\34xl\:ltr\:top-2\/12{top:16.666667%!important}[dir=ltr] .\34xl\:ltr\:right-2\/12{right:16.666667%!important}[dir=ltr] .\34xl\:ltr\:bottom-2\/12{bottom:16.666667%!important}[dir=ltr] .\34xl\:ltr\:left-2\/12{left:16.666667%!important}[dir=ltr] .\34xl\:ltr\:top-3\/12{top:25%!important}[dir=ltr] .\34xl\:ltr\:right-3\/12{right:25%!important}[dir=ltr] .\34xl\:ltr\:bottom-3\/12{bottom:25%!important}[dir=ltr] .\34xl\:ltr\:left-3\/12{left:25%!important}[dir=ltr] .\34xl\:ltr\:top-4\/12{top:33.333333%!important}[dir=ltr] .\34xl\:ltr\:right-4\/12{right:33.333333%!important}[dir=ltr] .\34xl\:ltr\:bottom-4\/12{bottom:33.333333%!important}[dir=ltr] .\34xl\:ltr\:left-4\/12{left:33.333333%!important}[dir=ltr] .\34xl\:ltr\:top-5\/12{top:41.666667%!important}[dir=ltr] .\34xl\:ltr\:right-5\/12{right:41.666667%!important}[dir=ltr] .\34xl\:ltr\:bottom-5\/12{bottom:41.666667%!important}[dir=ltr] .\34xl\:ltr\:left-5\/12{left:41.666667%!important}[dir=ltr] .\34xl\:ltr\:top-6\/12{top:50%!important}[dir=ltr] .\34xl\:ltr\:right-6\/12{right:50%!important}[dir=ltr] .\34xl\:ltr\:bottom-6\/12{bottom:50%!important}[dir=ltr] .\34xl\:ltr\:left-6\/12{left:50%!important}[dir=ltr] .\34xl\:ltr\:top-7\/12{top:58.333333%!important}[dir=ltr] .\34xl\:ltr\:right-7\/12{right:58.333333%!important}[dir=ltr] .\34xl\:ltr\:bottom-7\/12{bottom:58.333333%!important}[dir=ltr] .\34xl\:ltr\:left-7\/12{left:58.333333%!important}[dir=ltr] .\34xl\:ltr\:top-8\/12{top:66.666667%!important}[dir=ltr] .\34xl\:ltr\:right-8\/12{right:66.666667%!important}[dir=ltr] .\34xl\:ltr\:bottom-8\/12{bottom:66.666667%!important}[dir=ltr] .\34xl\:ltr\:left-8\/12{left:66.666667%!important}[dir=ltr] .\34xl\:ltr\:top-9\/12{top:75%!important}[dir=ltr] .\34xl\:ltr\:right-9\/12{right:75%!important}[dir=ltr] .\34xl\:ltr\:bottom-9\/12{bottom:75%!important}[dir=ltr] .\34xl\:ltr\:left-9\/12{left:75%!important}[dir=ltr] .\34xl\:ltr\:top-10\/12{top:83.333333%!important}[dir=ltr] .\34xl\:ltr\:right-10\/12{right:83.333333%!important}[dir=ltr] .\34xl\:ltr\:bottom-10\/12{bottom:83.333333%!important}[dir=ltr] .\34xl\:ltr\:left-10\/12{left:83.333333%!important}[dir=ltr] .\34xl\:ltr\:top-11\/12{top:91.666667%!important}[dir=ltr] .\34xl\:ltr\:right-11\/12{right:91.666667%!important}[dir=ltr] .\34xl\:ltr\:bottom-11\/12{bottom:91.666667%!important}[dir=ltr] .\34xl\:ltr\:left-11\/12{left:91.666667%!important}[dir=ltr] .\34xl\:ltr\:top-full{top:100%!important}[dir=ltr] .\34xl\:ltr\:right-full{right:100%!important}[dir=ltr] .\34xl\:ltr\:bottom-full{bottom:100%!important}[dir=ltr] .\34xl\:ltr\:left-full{left:100%!important}[dir=rtl] .\34xl\:rtl\:inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}[dir=rtl] .\34xl\:rtl\:inset-1{bottom:.25rem!important;left:.25rem!important;right:.25rem!important;top:.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-2{bottom:.5rem!important;left:.5rem!important;right:.5rem!important;top:.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-3{bottom:.75rem!important;left:.75rem!important;right:.75rem!important;top:.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-4{bottom:1rem!important;left:1rem!important;right:1rem!important;top:1rem!important}[dir=rtl] .\34xl\:rtl\:inset-5{bottom:1.25rem!important;left:1.25rem!important;right:1.25rem!important;top:1.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-6{bottom:1.5rem!important;left:1.5rem!important;right:1.5rem!important;top:1.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-7{bottom:1.75rem!important;left:1.75rem!important;right:1.75rem!important;top:1.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-8{bottom:2rem!important;left:2rem!important;right:2rem!important;top:2rem!important}[dir=rtl] .\34xl\:rtl\:inset-9{bottom:2.25rem!important;left:2.25rem!important;right:2.25rem!important;top:2.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-10{bottom:2.5rem!important;left:2.5rem!important;right:2.5rem!important;top:2.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-11{bottom:2.75rem!important;left:2.75rem!important;right:2.75rem!important;top:2.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-12{bottom:3rem!important;left:3rem!important;right:3rem!important;top:3rem!important}[dir=rtl] .\34xl\:rtl\:inset-13{bottom:3.25rem!important;left:3.25rem!important;right:3.25rem!important;top:3.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-14{bottom:3.5rem!important;left:3.5rem!important;right:3.5rem!important;top:3.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-15{bottom:3.75rem!important;left:3.75rem!important;right:3.75rem!important;top:3.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-16{bottom:4rem!important;left:4rem!important;right:4rem!important;top:4rem!important}[dir=rtl] .\34xl\:rtl\:inset-20{bottom:5rem!important;left:5rem!important;right:5rem!important;top:5rem!important}[dir=rtl] .\34xl\:rtl\:inset-24{bottom:6rem!important;left:6rem!important;right:6rem!important;top:6rem!important}[dir=rtl] .\34xl\:rtl\:inset-28{bottom:7rem!important;left:7rem!important;right:7rem!important;top:7rem!important}[dir=rtl] .\34xl\:rtl\:inset-32{bottom:8rem!important;left:8rem!important;right:8rem!important;top:8rem!important}[dir=rtl] .\34xl\:rtl\:inset-36{bottom:9rem!important;left:9rem!important;right:9rem!important;top:9rem!important}[dir=rtl] .\34xl\:rtl\:inset-40{bottom:10rem!important;left:10rem!important;right:10rem!important;top:10rem!important}[dir=rtl] .\34xl\:rtl\:inset-48{bottom:12rem!important;left:12rem!important;right:12rem!important;top:12rem!important}[dir=rtl] .\34xl\:rtl\:inset-56{bottom:14rem!important;left:14rem!important;right:14rem!important;top:14rem!important}[dir=rtl] .\34xl\:rtl\:inset-60{bottom:15rem!important;left:15rem!important;right:15rem!important;top:15rem!important}[dir=rtl] .\34xl\:rtl\:inset-64{bottom:16rem!important;left:16rem!important;right:16rem!important;top:16rem!important}[dir=rtl] .\34xl\:rtl\:inset-72{bottom:18rem!important;left:18rem!important;right:18rem!important;top:18rem!important}[dir=rtl] .\34xl\:rtl\:inset-80{bottom:20rem!important;left:20rem!important;right:20rem!important;top:20rem!important}[dir=rtl] .\34xl\:rtl\:inset-96{bottom:24rem!important;left:24rem!important;right:24rem!important;top:24rem!important}[dir=rtl] .\34xl\:rtl\:inset-auto{bottom:auto!important;left:auto!important;right:auto!important;top:auto!important}[dir=rtl] .\34xl\:rtl\:inset-px{bottom:1px!important;left:1px!important;right:1px!important;top:1px!important}[dir=rtl] .\34xl\:rtl\:inset-0\.5{bottom:.125rem!important;left:.125rem!important;right:.125rem!important;top:.125rem!important}[dir=rtl] .\34xl\:rtl\:inset-1\.5{bottom:.375rem!important;left:.375rem!important;right:.375rem!important;top:.375rem!important}[dir=rtl] .\34xl\:rtl\:inset-2\.5{bottom:.625rem!important;left:.625rem!important;right:.625rem!important;top:.625rem!important}[dir=rtl] .\34xl\:rtl\:inset-3\.5{bottom:.875rem!important;left:.875rem!important;right:.875rem!important;top:.875rem!important}[dir=rtl] .\34xl\:rtl\:inset-1\/2{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-1\/3{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-2\/3{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-1\/4{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .\34xl\:rtl\:inset-2\/4{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-3\/4{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .\34xl\:rtl\:inset-1\/5{bottom:20%!important;left:20%!important;right:20%!important;top:20%!important}[dir=rtl] .\34xl\:rtl\:inset-2\/5{bottom:40%!important;left:40%!important;right:40%!important;top:40%!important}[dir=rtl] .\34xl\:rtl\:inset-3\/5{bottom:60%!important;left:60%!important;right:60%!important;top:60%!important}[dir=rtl] .\34xl\:rtl\:inset-4\/5{bottom:80%!important;left:80%!important;right:80%!important;top:80%!important}[dir=rtl] .\34xl\:rtl\:inset-1\/6{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-2\/6{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-3\/6{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-4\/6{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-5\/6{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-1\/12{bottom:8.333333%!important;left:8.333333%!important;right:8.333333%!important;top:8.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-2\/12{bottom:16.666667%!important;left:16.666667%!important;right:16.666667%!important;top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-3\/12{bottom:25%!important;left:25%!important;right:25%!important;top:25%!important}[dir=rtl] .\34xl\:rtl\:inset-4\/12{bottom:33.333333%!important;left:33.333333%!important;right:33.333333%!important;top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-5\/12{bottom:41.666667%!important;left:41.666667%!important;right:41.666667%!important;top:41.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-6\/12{bottom:50%!important;left:50%!important;right:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-7\/12{bottom:58.333333%!important;left:58.333333%!important;right:58.333333%!important;top:58.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-8\/12{bottom:66.666667%!important;left:66.666667%!important;right:66.666667%!important;top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-9\/12{bottom:75%!important;left:75%!important;right:75%!important;top:75%!important}[dir=rtl] .\34xl\:rtl\:inset-10\/12{bottom:83.333333%!important;left:83.333333%!important;right:83.333333%!important;top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-11\/12{bottom:91.666667%!important;left:91.666667%!important;right:91.666667%!important;top:91.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-full{bottom:100%!important;left:100%!important;right:100%!important;top:100%!important}[dir=rtl] .\34xl\:rtl\:inset-y-0{bottom:0!important;top:0!important}[dir=rtl] .\34xl\:rtl\:inset-x-0{left:0!important;right:0!important}[dir=rtl] .\34xl\:rtl\:inset-y-1{bottom:.25rem!important;top:.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-1{left:.25rem!important;right:.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-2{bottom:.5rem!important;top:.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-2{left:.5rem!important;right:.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-3{bottom:.75rem!important;top:.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-3{left:.75rem!important;right:.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-4{bottom:1rem!important;top:1rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-4{left:1rem!important;right:1rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-5{bottom:1.25rem!important;top:1.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-5{left:1.25rem!important;right:1.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-6{bottom:1.5rem!important;top:1.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-6{left:1.5rem!important;right:1.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-7{bottom:1.75rem!important;top:1.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-7{left:1.75rem!important;right:1.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-8{bottom:2rem!important;top:2rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-8{left:2rem!important;right:2rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-9{bottom:2.25rem!important;top:2.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-9{left:2.25rem!important;right:2.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-10{bottom:2.5rem!important;top:2.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-10{left:2.5rem!important;right:2.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-11{bottom:2.75rem!important;top:2.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-11{left:2.75rem!important;right:2.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-12{bottom:3rem!important;top:3rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-12{left:3rem!important;right:3rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-13{bottom:3.25rem!important;top:3.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-13{left:3.25rem!important;right:3.25rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-14{bottom:3.5rem!important;top:3.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-14{left:3.5rem!important;right:3.5rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-15{bottom:3.75rem!important;top:3.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-15{left:3.75rem!important;right:3.75rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-16{bottom:4rem!important;top:4rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-16{left:4rem!important;right:4rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-20{bottom:5rem!important;top:5rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-20{left:5rem!important;right:5rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-24{bottom:6rem!important;top:6rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-24{left:6rem!important;right:6rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-28{bottom:7rem!important;top:7rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-28{left:7rem!important;right:7rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-32{bottom:8rem!important;top:8rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-32{left:8rem!important;right:8rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-36{bottom:9rem!important;top:9rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-36{left:9rem!important;right:9rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-40{bottom:10rem!important;top:10rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-40{left:10rem!important;right:10rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-48{bottom:12rem!important;top:12rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-48{left:12rem!important;right:12rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-56{bottom:14rem!important;top:14rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-56{left:14rem!important;right:14rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-60{bottom:15rem!important;top:15rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-60{left:15rem!important;right:15rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-64{bottom:16rem!important;top:16rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-64{left:16rem!important;right:16rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-72{bottom:18rem!important;top:18rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-72{left:18rem!important;right:18rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-80{bottom:20rem!important;top:20rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-80{left:20rem!important;right:20rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-96{bottom:24rem!important;top:24rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-96{left:24rem!important;right:24rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-auto{bottom:auto!important;top:auto!important}[dir=rtl] .\34xl\:rtl\:inset-x-auto{left:auto!important;right:auto!important}[dir=rtl] .\34xl\:rtl\:inset-y-px{bottom:1px!important;top:1px!important}[dir=rtl] .\34xl\:rtl\:inset-x-px{left:1px!important;right:1px!important}[dir=rtl] .\34xl\:rtl\:inset-y-0\.5{bottom:.125rem!important;top:.125rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-0\.5{left:.125rem!important;right:.125rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-1\.5{bottom:.375rem!important;top:.375rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-1\.5{left:.375rem!important;right:.375rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-2\.5{bottom:.625rem!important;top:.625rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-2\.5{left:.625rem!important;right:.625rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-3\.5{bottom:.875rem!important;top:.875rem!important}[dir=rtl] .\34xl\:rtl\:inset-x-3\.5{left:.875rem!important;right:.875rem!important}[dir=rtl] .\34xl\:rtl\:inset-y-1\/2{bottom:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-x-1\/2{left:50%!important;right:50%!important}[dir=rtl] .\34xl\:rtl\:inset-y-1\/3{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-x-1\/3{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-y-2\/3{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-x-2\/3{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-y-1\/4{bottom:25%!important;top:25%!important}[dir=rtl] .\34xl\:rtl\:inset-x-1\/4{left:25%!important;right:25%!important}[dir=rtl] .\34xl\:rtl\:inset-y-2\/4{bottom:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-x-2\/4{left:50%!important;right:50%!important}[dir=rtl] .\34xl\:rtl\:inset-y-3\/4{bottom:75%!important;top:75%!important}[dir=rtl] .\34xl\:rtl\:inset-x-3\/4{left:75%!important;right:75%!important}[dir=rtl] .\34xl\:rtl\:inset-y-1\/5{bottom:20%!important;top:20%!important}[dir=rtl] .\34xl\:rtl\:inset-x-1\/5{left:20%!important;right:20%!important}[dir=rtl] .\34xl\:rtl\:inset-y-2\/5{bottom:40%!important;top:40%!important}[dir=rtl] .\34xl\:rtl\:inset-x-2\/5{left:40%!important;right:40%!important}[dir=rtl] .\34xl\:rtl\:inset-y-3\/5{bottom:60%!important;top:60%!important}[dir=rtl] .\34xl\:rtl\:inset-x-3\/5{left:60%!important;right:60%!important}[dir=rtl] .\34xl\:rtl\:inset-y-4\/5{bottom:80%!important;top:80%!important}[dir=rtl] .\34xl\:rtl\:inset-x-4\/5{left:80%!important;right:80%!important}[dir=rtl] .\34xl\:rtl\:inset-y-1\/6{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-x-1\/6{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-y-2\/6{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-x-2\/6{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-y-3\/6{bottom:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-x-3\/6{left:50%!important;right:50%!important}[dir=rtl] .\34xl\:rtl\:inset-y-4\/6{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-x-4\/6{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-y-5\/6{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-x-5\/6{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-y-1\/12{bottom:8.333333%!important;top:8.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-x-1\/12{left:8.333333%!important;right:8.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-y-2\/12{bottom:16.666667%!important;top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-x-2\/12{left:16.666667%!important;right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-y-3\/12{bottom:25%!important;top:25%!important}[dir=rtl] .\34xl\:rtl\:inset-x-3\/12{left:25%!important;right:25%!important}[dir=rtl] .\34xl\:rtl\:inset-y-4\/12{bottom:33.333333%!important;top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-x-4\/12{left:33.333333%!important;right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-y-5\/12{bottom:41.666667%!important;top:41.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-x-5\/12{left:41.666667%!important;right:41.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-y-6\/12{bottom:50%!important;top:50%!important}[dir=rtl] .\34xl\:rtl\:inset-x-6\/12{left:50%!important;right:50%!important}[dir=rtl] .\34xl\:rtl\:inset-y-7\/12{bottom:58.333333%!important;top:58.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-x-7\/12{left:58.333333%!important;right:58.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-y-8\/12{bottom:66.666667%!important;top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-x-8\/12{left:66.666667%!important;right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-y-9\/12{bottom:75%!important;top:75%!important}[dir=rtl] .\34xl\:rtl\:inset-x-9\/12{left:75%!important;right:75%!important}[dir=rtl] .\34xl\:rtl\:inset-y-10\/12{bottom:83.333333%!important;top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-x-10\/12{left:83.333333%!important;right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:inset-y-11\/12{bottom:91.666667%!important;top:91.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-x-11\/12{left:91.666667%!important;right:91.666667%!important}[dir=rtl] .\34xl\:rtl\:inset-y-full{bottom:100%!important;top:100%!important}[dir=rtl] .\34xl\:rtl\:inset-x-full{left:100%!important;right:100%!important}[dir=rtl] .\34xl\:rtl\:top-0{top:0!important}[dir=rtl] .\34xl\:rtl\:right-0{right:0!important}[dir=rtl] .\34xl\:rtl\:bottom-0{bottom:0!important}[dir=rtl] .\34xl\:rtl\:left-0{left:0!important}[dir=rtl] .\34xl\:rtl\:top-1{top:.25rem!important}[dir=rtl] .\34xl\:rtl\:right-1{right:.25rem!important}[dir=rtl] .\34xl\:rtl\:bottom-1{bottom:.25rem!important}[dir=rtl] .\34xl\:rtl\:left-1{left:.25rem!important}[dir=rtl] .\34xl\:rtl\:top-2{top:.5rem!important}[dir=rtl] .\34xl\:rtl\:right-2{right:.5rem!important}[dir=rtl] .\34xl\:rtl\:bottom-2{bottom:.5rem!important}[dir=rtl] .\34xl\:rtl\:left-2{left:.5rem!important}[dir=rtl] .\34xl\:rtl\:top-3{top:.75rem!important}[dir=rtl] .\34xl\:rtl\:right-3{right:.75rem!important}[dir=rtl] .\34xl\:rtl\:bottom-3{bottom:.75rem!important}[dir=rtl] .\34xl\:rtl\:left-3{left:.75rem!important}[dir=rtl] .\34xl\:rtl\:top-4{top:1rem!important}[dir=rtl] .\34xl\:rtl\:right-4{right:1rem!important}[dir=rtl] .\34xl\:rtl\:bottom-4{bottom:1rem!important}[dir=rtl] .\34xl\:rtl\:left-4{left:1rem!important}[dir=rtl] .\34xl\:rtl\:top-5{top:1.25rem!important}[dir=rtl] .\34xl\:rtl\:right-5{right:1.25rem!important}[dir=rtl] .\34xl\:rtl\:bottom-5{bottom:1.25rem!important}[dir=rtl] .\34xl\:rtl\:left-5{left:1.25rem!important}[dir=rtl] .\34xl\:rtl\:top-6{top:1.5rem!important}[dir=rtl] .\34xl\:rtl\:right-6{right:1.5rem!important}[dir=rtl] .\34xl\:rtl\:bottom-6{bottom:1.5rem!important}[dir=rtl] .\34xl\:rtl\:left-6{left:1.5rem!important}[dir=rtl] .\34xl\:rtl\:top-7{top:1.75rem!important}[dir=rtl] .\34xl\:rtl\:right-7{right:1.75rem!important}[dir=rtl] .\34xl\:rtl\:bottom-7{bottom:1.75rem!important}[dir=rtl] .\34xl\:rtl\:left-7{left:1.75rem!important}[dir=rtl] .\34xl\:rtl\:top-8{top:2rem!important}[dir=rtl] .\34xl\:rtl\:right-8{right:2rem!important}[dir=rtl] .\34xl\:rtl\:bottom-8{bottom:2rem!important}[dir=rtl] .\34xl\:rtl\:left-8{left:2rem!important}[dir=rtl] .\34xl\:rtl\:top-9{top:2.25rem!important}[dir=rtl] .\34xl\:rtl\:right-9{right:2.25rem!important}[dir=rtl] .\34xl\:rtl\:bottom-9{bottom:2.25rem!important}[dir=rtl] .\34xl\:rtl\:left-9{left:2.25rem!important}[dir=rtl] .\34xl\:rtl\:top-10{top:2.5rem!important}[dir=rtl] .\34xl\:rtl\:right-10{right:2.5rem!important}[dir=rtl] .\34xl\:rtl\:bottom-10{bottom:2.5rem!important}[dir=rtl] .\34xl\:rtl\:left-10{left:2.5rem!important}[dir=rtl] .\34xl\:rtl\:top-11{top:2.75rem!important}[dir=rtl] .\34xl\:rtl\:right-11{right:2.75rem!important}[dir=rtl] .\34xl\:rtl\:bottom-11{bottom:2.75rem!important}[dir=rtl] .\34xl\:rtl\:left-11{left:2.75rem!important}[dir=rtl] .\34xl\:rtl\:top-12{top:3rem!important}[dir=rtl] .\34xl\:rtl\:right-12{right:3rem!important}[dir=rtl] .\34xl\:rtl\:bottom-12{bottom:3rem!important}[dir=rtl] .\34xl\:rtl\:left-12{left:3rem!important}[dir=rtl] .\34xl\:rtl\:top-13{top:3.25rem!important}[dir=rtl] .\34xl\:rtl\:right-13{right:3.25rem!important}[dir=rtl] .\34xl\:rtl\:bottom-13{bottom:3.25rem!important}[dir=rtl] .\34xl\:rtl\:left-13{left:3.25rem!important}[dir=rtl] .\34xl\:rtl\:top-14{top:3.5rem!important}[dir=rtl] .\34xl\:rtl\:right-14{right:3.5rem!important}[dir=rtl] .\34xl\:rtl\:bottom-14{bottom:3.5rem!important}[dir=rtl] .\34xl\:rtl\:left-14{left:3.5rem!important}[dir=rtl] .\34xl\:rtl\:top-15{top:3.75rem!important}[dir=rtl] .\34xl\:rtl\:right-15{right:3.75rem!important}[dir=rtl] .\34xl\:rtl\:bottom-15{bottom:3.75rem!important}[dir=rtl] .\34xl\:rtl\:left-15{left:3.75rem!important}[dir=rtl] .\34xl\:rtl\:top-16{top:4rem!important}[dir=rtl] .\34xl\:rtl\:right-16{right:4rem!important}[dir=rtl] .\34xl\:rtl\:bottom-16{bottom:4rem!important}[dir=rtl] .\34xl\:rtl\:left-16{left:4rem!important}[dir=rtl] .\34xl\:rtl\:top-20{top:5rem!important}[dir=rtl] .\34xl\:rtl\:right-20{right:5rem!important}[dir=rtl] .\34xl\:rtl\:bottom-20{bottom:5rem!important}[dir=rtl] .\34xl\:rtl\:left-20{left:5rem!important}[dir=rtl] .\34xl\:rtl\:top-24{top:6rem!important}[dir=rtl] .\34xl\:rtl\:right-24{right:6rem!important}[dir=rtl] .\34xl\:rtl\:bottom-24{bottom:6rem!important}[dir=rtl] .\34xl\:rtl\:left-24{left:6rem!important}[dir=rtl] .\34xl\:rtl\:top-28{top:7rem!important}[dir=rtl] .\34xl\:rtl\:right-28{right:7rem!important}[dir=rtl] .\34xl\:rtl\:bottom-28{bottom:7rem!important}[dir=rtl] .\34xl\:rtl\:left-28{left:7rem!important}[dir=rtl] .\34xl\:rtl\:top-32{top:8rem!important}[dir=rtl] .\34xl\:rtl\:right-32{right:8rem!important}[dir=rtl] .\34xl\:rtl\:bottom-32{bottom:8rem!important}[dir=rtl] .\34xl\:rtl\:left-32{left:8rem!important}[dir=rtl] .\34xl\:rtl\:top-36{top:9rem!important}[dir=rtl] .\34xl\:rtl\:right-36{right:9rem!important}[dir=rtl] .\34xl\:rtl\:bottom-36{bottom:9rem!important}[dir=rtl] .\34xl\:rtl\:left-36{left:9rem!important}[dir=rtl] .\34xl\:rtl\:top-40{top:10rem!important}[dir=rtl] .\34xl\:rtl\:right-40{right:10rem!important}[dir=rtl] .\34xl\:rtl\:bottom-40{bottom:10rem!important}[dir=rtl] .\34xl\:rtl\:left-40{left:10rem!important}[dir=rtl] .\34xl\:rtl\:top-48{top:12rem!important}[dir=rtl] .\34xl\:rtl\:right-48{right:12rem!important}[dir=rtl] .\34xl\:rtl\:bottom-48{bottom:12rem!important}[dir=rtl] .\34xl\:rtl\:left-48{left:12rem!important}[dir=rtl] .\34xl\:rtl\:top-56{top:14rem!important}[dir=rtl] .\34xl\:rtl\:right-56{right:14rem!important}[dir=rtl] .\34xl\:rtl\:bottom-56{bottom:14rem!important}[dir=rtl] .\34xl\:rtl\:left-56{left:14rem!important}[dir=rtl] .\34xl\:rtl\:top-60{top:15rem!important}[dir=rtl] .\34xl\:rtl\:right-60{right:15rem!important}[dir=rtl] .\34xl\:rtl\:bottom-60{bottom:15rem!important}[dir=rtl] .\34xl\:rtl\:left-60{left:15rem!important}[dir=rtl] .\34xl\:rtl\:top-64{top:16rem!important}[dir=rtl] .\34xl\:rtl\:right-64{right:16rem!important}[dir=rtl] .\34xl\:rtl\:bottom-64{bottom:16rem!important}[dir=rtl] .\34xl\:rtl\:left-64{left:16rem!important}[dir=rtl] .\34xl\:rtl\:top-72{top:18rem!important}[dir=rtl] .\34xl\:rtl\:right-72{right:18rem!important}[dir=rtl] .\34xl\:rtl\:bottom-72{bottom:18rem!important}[dir=rtl] .\34xl\:rtl\:left-72{left:18rem!important}[dir=rtl] .\34xl\:rtl\:top-80{top:20rem!important}[dir=rtl] .\34xl\:rtl\:right-80{right:20rem!important}[dir=rtl] .\34xl\:rtl\:bottom-80{bottom:20rem!important}[dir=rtl] .\34xl\:rtl\:left-80{left:20rem!important}[dir=rtl] .\34xl\:rtl\:top-96{top:24rem!important}[dir=rtl] .\34xl\:rtl\:right-96{right:24rem!important}[dir=rtl] .\34xl\:rtl\:bottom-96{bottom:24rem!important}[dir=rtl] .\34xl\:rtl\:left-96{left:24rem!important}[dir=rtl] .\34xl\:rtl\:top-auto{top:auto!important}[dir=rtl] .\34xl\:rtl\:right-auto{right:auto!important}[dir=rtl] .\34xl\:rtl\:bottom-auto{bottom:auto!important}[dir=rtl] .\34xl\:rtl\:left-auto{left:auto!important}[dir=rtl] .\34xl\:rtl\:top-px{top:1px!important}[dir=rtl] .\34xl\:rtl\:right-px{right:1px!important}[dir=rtl] .\34xl\:rtl\:bottom-px{bottom:1px!important}[dir=rtl] .\34xl\:rtl\:left-px{left:1px!important}[dir=rtl] .\34xl\:rtl\:top-0\.5{top:.125rem!important}[dir=rtl] .\34xl\:rtl\:right-0\.5{right:.125rem!important}[dir=rtl] .\34xl\:rtl\:bottom-0\.5{bottom:.125rem!important}[dir=rtl] .\34xl\:rtl\:left-0\.5{left:.125rem!important}[dir=rtl] .\34xl\:rtl\:top-1\.5{top:.375rem!important}[dir=rtl] .\34xl\:rtl\:right-1\.5{right:.375rem!important}[dir=rtl] .\34xl\:rtl\:bottom-1\.5{bottom:.375rem!important}[dir=rtl] .\34xl\:rtl\:left-1\.5{left:.375rem!important}[dir=rtl] .\34xl\:rtl\:top-2\.5{top:.625rem!important}[dir=rtl] .\34xl\:rtl\:right-2\.5{right:.625rem!important}[dir=rtl] .\34xl\:rtl\:bottom-2\.5{bottom:.625rem!important}[dir=rtl] .\34xl\:rtl\:left-2\.5{left:.625rem!important}[dir=rtl] .\34xl\:rtl\:top-3\.5{top:.875rem!important}[dir=rtl] .\34xl\:rtl\:right-3\.5{right:.875rem!important}[dir=rtl] .\34xl\:rtl\:bottom-3\.5{bottom:.875rem!important}[dir=rtl] .\34xl\:rtl\:left-3\.5{left:.875rem!important}[dir=rtl] .\34xl\:rtl\:top-1\/2{top:50%!important}[dir=rtl] .\34xl\:rtl\:right-1\/2{right:50%!important}[dir=rtl] .\34xl\:rtl\:bottom-1\/2{bottom:50%!important}[dir=rtl] .\34xl\:rtl\:left-1\/2{left:50%!important}[dir=rtl] .\34xl\:rtl\:top-1\/3{top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:right-1\/3{right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:bottom-1\/3{bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:left-1\/3{left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:top-2\/3{top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:right-2\/3{right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:bottom-2\/3{bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:left-2\/3{left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:top-1\/4{top:25%!important}[dir=rtl] .\34xl\:rtl\:right-1\/4{right:25%!important}[dir=rtl] .\34xl\:rtl\:bottom-1\/4{bottom:25%!important}[dir=rtl] .\34xl\:rtl\:left-1\/4{left:25%!important}[dir=rtl] .\34xl\:rtl\:top-2\/4{top:50%!important}[dir=rtl] .\34xl\:rtl\:right-2\/4{right:50%!important}[dir=rtl] .\34xl\:rtl\:bottom-2\/4{bottom:50%!important}[dir=rtl] .\34xl\:rtl\:left-2\/4{left:50%!important}[dir=rtl] .\34xl\:rtl\:top-3\/4{top:75%!important}[dir=rtl] .\34xl\:rtl\:right-3\/4{right:75%!important}[dir=rtl] .\34xl\:rtl\:bottom-3\/4{bottom:75%!important}[dir=rtl] .\34xl\:rtl\:left-3\/4{left:75%!important}[dir=rtl] .\34xl\:rtl\:top-1\/5{top:20%!important}[dir=rtl] .\34xl\:rtl\:right-1\/5{right:20%!important}[dir=rtl] .\34xl\:rtl\:bottom-1\/5{bottom:20%!important}[dir=rtl] .\34xl\:rtl\:left-1\/5{left:20%!important}[dir=rtl] .\34xl\:rtl\:top-2\/5{top:40%!important}[dir=rtl] .\34xl\:rtl\:right-2\/5{right:40%!important}[dir=rtl] .\34xl\:rtl\:bottom-2\/5{bottom:40%!important}[dir=rtl] .\34xl\:rtl\:left-2\/5{left:40%!important}[dir=rtl] .\34xl\:rtl\:top-3\/5{top:60%!important}[dir=rtl] .\34xl\:rtl\:right-3\/5{right:60%!important}[dir=rtl] .\34xl\:rtl\:bottom-3\/5{bottom:60%!important}[dir=rtl] .\34xl\:rtl\:left-3\/5{left:60%!important}[dir=rtl] .\34xl\:rtl\:top-4\/5{top:80%!important}[dir=rtl] .\34xl\:rtl\:right-4\/5{right:80%!important}[dir=rtl] .\34xl\:rtl\:bottom-4\/5{bottom:80%!important}[dir=rtl] .\34xl\:rtl\:left-4\/5{left:80%!important}[dir=rtl] .\34xl\:rtl\:top-1\/6{top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:right-1\/6{right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:bottom-1\/6{bottom:16.666667%!important}[dir=rtl] .\34xl\:rtl\:left-1\/6{left:16.666667%!important}[dir=rtl] .\34xl\:rtl\:top-2\/6{top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:right-2\/6{right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:bottom-2\/6{bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:left-2\/6{left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:top-3\/6{top:50%!important}[dir=rtl] .\34xl\:rtl\:right-3\/6{right:50%!important}[dir=rtl] .\34xl\:rtl\:bottom-3\/6{bottom:50%!important}[dir=rtl] .\34xl\:rtl\:left-3\/6{left:50%!important}[dir=rtl] .\34xl\:rtl\:top-4\/6{top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:right-4\/6{right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:bottom-4\/6{bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:left-4\/6{left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:top-5\/6{top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:right-5\/6{right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:bottom-5\/6{bottom:83.333333%!important}[dir=rtl] .\34xl\:rtl\:left-5\/6{left:83.333333%!important}[dir=rtl] .\34xl\:rtl\:top-1\/12{top:8.333333%!important}[dir=rtl] .\34xl\:rtl\:right-1\/12{right:8.333333%!important}[dir=rtl] .\34xl\:rtl\:bottom-1\/12{bottom:8.333333%!important}[dir=rtl] .\34xl\:rtl\:left-1\/12{left:8.333333%!important}[dir=rtl] .\34xl\:rtl\:top-2\/12{top:16.666667%!important}[dir=rtl] .\34xl\:rtl\:right-2\/12{right:16.666667%!important}[dir=rtl] .\34xl\:rtl\:bottom-2\/12{bottom:16.666667%!important}[dir=rtl] .\34xl\:rtl\:left-2\/12{left:16.666667%!important}[dir=rtl] .\34xl\:rtl\:top-3\/12{top:25%!important}[dir=rtl] .\34xl\:rtl\:right-3\/12{right:25%!important}[dir=rtl] .\34xl\:rtl\:bottom-3\/12{bottom:25%!important}[dir=rtl] .\34xl\:rtl\:left-3\/12{left:25%!important}[dir=rtl] .\34xl\:rtl\:top-4\/12{top:33.333333%!important}[dir=rtl] .\34xl\:rtl\:right-4\/12{right:33.333333%!important}[dir=rtl] .\34xl\:rtl\:bottom-4\/12{bottom:33.333333%!important}[dir=rtl] .\34xl\:rtl\:left-4\/12{left:33.333333%!important}[dir=rtl] .\34xl\:rtl\:top-5\/12{top:41.666667%!important}[dir=rtl] .\34xl\:rtl\:right-5\/12{right:41.666667%!important}[dir=rtl] .\34xl\:rtl\:bottom-5\/12{bottom:41.666667%!important}[dir=rtl] .\34xl\:rtl\:left-5\/12{left:41.666667%!important}[dir=rtl] .\34xl\:rtl\:top-6\/12{top:50%!important}[dir=rtl] .\34xl\:rtl\:right-6\/12{right:50%!important}[dir=rtl] .\34xl\:rtl\:bottom-6\/12{bottom:50%!important}[dir=rtl] .\34xl\:rtl\:left-6\/12{left:50%!important}[dir=rtl] .\34xl\:rtl\:top-7\/12{top:58.333333%!important}[dir=rtl] .\34xl\:rtl\:right-7\/12{right:58.333333%!important}[dir=rtl] .\34xl\:rtl\:bottom-7\/12{bottom:58.333333%!important}[dir=rtl] .\34xl\:rtl\:left-7\/12{left:58.333333%!important}[dir=rtl] .\34xl\:rtl\:top-8\/12{top:66.666667%!important}[dir=rtl] .\34xl\:rtl\:right-8\/12{right:66.666667%!important}[dir=rtl] .\34xl\:rtl\:bottom-8\/12{bottom:66.666667%!important}[dir=rtl] .\34xl\:rtl\:left-8\/12{left:66.666667%!important}[dir=rtl] .\34xl\:rtl\:top-9\/12{top:75%!important}[dir=rtl] .\34xl\:rtl\:right-9\/12{right:75%!important}[dir=rtl] .\34xl\:rtl\:bottom-9\/12{bottom:75%!important}[dir=rtl] .\34xl\:rtl\:left-9\/12{left:75%!important}[dir=rtl] .\34xl\:rtl\:top-10\/12{top:83.333333%!important}[dir=rtl] .\34xl\:rtl\:right-10\/12{right:83.333333%!important}[dir=rtl] .\34xl\:rtl\:bottom-10\/12{bottom:83.333333%!important}[dir=rtl] .\34xl\:rtl\:left-10\/12{left:83.333333%!important}[dir=rtl] .\34xl\:rtl\:top-11\/12{top:91.666667%!important}[dir=rtl] .\34xl\:rtl\:right-11\/12{right:91.666667%!important}[dir=rtl] .\34xl\:rtl\:bottom-11\/12{bottom:91.666667%!important}[dir=rtl] .\34xl\:rtl\:left-11\/12{left:91.666667%!important}[dir=rtl] .\34xl\:rtl\:top-full{top:100%!important}[dir=rtl] .\34xl\:rtl\:right-full{right:100%!important}[dir=rtl] .\34xl\:rtl\:bottom-full{bottom:100%!important}[dir=rtl] .\34xl\:rtl\:left-full{left:100%!important}.\34xl\:resize-none{resize:none!important}.\34xl\:resize-y{resize:vertical!important}.\34xl\:resize-x{resize:horizontal!important}.\34xl\:resize{resize:both!important}.\34xl\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\34xl\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\34xl\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\34xl\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\34xl\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\34xl\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\34xl\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\34xl\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\34xl\:shadow-none{box-shadow:none!important}.group:focus .\34xl\:group-focus\:shadow{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.group:focus .\34xl\:group-focus\:shadow-sm{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.group:focus .\34xl\:group-focus\:shadow-md{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.group:focus .\34xl\:group-focus\:shadow-lg{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.group:focus .\34xl\:group-focus\:shadow-xl{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.group:focus .\34xl\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.group:focus .\34xl\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.group:focus .\34xl\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.group:focus .\34xl\:group-focus\:shadow-none{box-shadow:none!important}.\34xl\:hover\:shadow:hover{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\34xl\:hover\:shadow-sm:hover{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\34xl\:hover\:shadow-md:hover{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\34xl\:hover\:shadow-lg:hover{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\34xl\:hover\:shadow-xl:hover{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\34xl\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\34xl\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\34xl\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\34xl\:hover\:shadow-none:hover{box-shadow:none!important}.\34xl\:focus\:shadow:focus{box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important}.\34xl\:focus\:shadow-sm:focus{box-shadow:0 2px 10px 0 rgba(0,0,0,.06)!important}.\34xl\:focus\:shadow-md:focus{box-shadow:0 5px 15px 5px rgba(0,0,0,.06)!important}.\34xl\:focus\:shadow-lg:focus{box-shadow:0 5px 25px rgba(0,0,0,.17)!important}.\34xl\:focus\:shadow-xl:focus{box-shadow:0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08)!important}.\34xl\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)!important}.\34xl\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)!important}.\34xl\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.\34xl\:focus\:shadow-none:focus{box-shadow:none!important}.\34xl\:fill-current{fill:currentColor!important}.\34xl\:stroke-current{stroke:currentColor!important}.\34xl\:stroke-0{stroke-width:0!important}.\34xl\:stroke-1{stroke-width:1!important}.\34xl\:stroke-2{stroke-width:2!important}.\34xl\:table-auto{table-layout:auto!important}.\34xl\:table-fixed{table-layout:fixed!important}.\34xl\:text-left{text-align:left!important}.\34xl\:text-center{text-align:center!important}.\34xl\:text-right{text-align:right!important}.\34xl\:text-justify{text-align:justify!important}.\34xl\:text-transparent{color:transparent!important}.\34xl\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\34xl\:text-white-70{color:hsla(0,0%,100%,.7)!important}.\34xl\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\34xl\:text-blackest-70{color:rgba(0,0,0,.7)!important}.\34xl\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\34xl\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\34xl\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\34xl\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\34xl\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\34xl\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\34xl\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\34xl\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\34xl\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\34xl\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\34xl\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\34xl\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\34xl\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.\34xl\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\34xl\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\34xl\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\34xl\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\34xl\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\34xl\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\34xl\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\34xl\:hover\:text-transparent:hover{color:transparent!important}.\34xl\:hover\:text-white:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\34xl\:hover\:text-white-70:hover{color:hsla(0,0%,100%,.7)!important}.\34xl\:hover\:text-blackest:hover{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\34xl\:hover\:text-blackest-70:hover{color:rgba(0,0,0,.7)!important}.\34xl\:hover\:text-black:hover{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\34xl\:hover\:text-gray-darkest:hover{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\34xl\:hover\:text-gray-darker:hover{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\34xl\:hover\:text-gray-dark:hover{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\34xl\:hover\:text-gray:hover{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\34xl\:hover\:text-gray-light:hover{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\34xl\:hover\:text-gray-lighter:hover{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\34xl\:hover\:text-gray-lightest:hover{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\34xl\:hover\:text-blue-darkest:hover{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\34xl\:hover\:text-blue-dark:hover{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\34xl\:hover\:text-blue:hover{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\34xl\:hover\:text-blue-light:hover{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\34xl\:hover\:text-blue-highlight:hover{color:rgba(180,215,255,.6)!important}.\34xl\:hover\:text-orange:hover{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\34xl\:hover\:text-orange-darker:hover{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\34xl\:hover\:text-orange-darkest:hover{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\34xl\:hover\:text-red:hover{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\34xl\:hover\:text-green:hover{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\34xl\:hover\:text-yellow-400:hover{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\34xl\:hover\:text-yellow-50:hover{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\34xl\:focus\:text-transparent:focus{color:transparent!important}.\34xl\:focus\:text-white:focus{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.\34xl\:focus\:text-white-70:focus{color:hsla(0,0%,100%,.7)!important}.\34xl\:focus\:text-blackest:focus{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.\34xl\:focus\:text-blackest-70:focus{color:rgba(0,0,0,.7)!important}.\34xl\:focus\:text-black:focus{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.\34xl\:focus\:text-gray-darkest:focus{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.\34xl\:focus\:text-gray-darker:focus{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.\34xl\:focus\:text-gray-dark:focus{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.\34xl\:focus\:text-gray:focus{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.\34xl\:focus\:text-gray-light:focus{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.\34xl\:focus\:text-gray-lighter:focus{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.\34xl\:focus\:text-gray-lightest:focus{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.\34xl\:focus\:text-blue-darkest:focus{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.\34xl\:focus\:text-blue-dark:focus{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.\34xl\:focus\:text-blue:focus{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.\34xl\:focus\:text-blue-light:focus{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.\34xl\:focus\:text-blue-highlight:focus{color:rgba(180,215,255,.6)!important}.\34xl\:focus\:text-orange:focus{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.\34xl\:focus\:text-orange-darker:focus{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.\34xl\:focus\:text-orange-darkest:focus{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.\34xl\:focus\:text-red:focus{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.\34xl\:focus\:text-green:focus{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.\34xl\:focus\:text-yellow-400:focus{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.\34xl\:focus\:text-yellow-50:focus{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-transparent{color:transparent!important}.group:hover .\34xl\:group-hover\:text-white{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-white-70{color:hsla(0,0%,100%,.7)!important}.group:hover .\34xl\:group-hover\:text-blackest{--text-opacity:1!important;color:#000!important;color:rgba(0,0,0,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-blackest-70{color:rgba(0,0,0,.7)!important}.group:hover .\34xl\:group-hover\:text-black{--text-opacity:1!important;color:#23292d!important;color:rgba(35,41,45,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-gray-darkest{--text-opacity:1!important;color:#3d4852!important;color:rgba(61,72,82,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-gray-darker{--text-opacity:1!important;color:#606f7b!important;color:rgba(96,111,123,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-gray-dark{--text-opacity:1!important;color:#9ea3a8!important;color:rgba(158,163,168,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-gray{--text-opacity:1!important;color:#b8c2cc!important;color:rgba(184,194,204,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-gray-light{--text-opacity:1!important;color:#dae1e7!important;color:rgba(218,225,231,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-gray-lighter{--text-opacity:1!important;color:#f1f1f1!important;color:rgba(241,241,241,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-gray-lightest{--text-opacity:1!important;color:#f8fafc!important;color:rgba(248,250,252,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-blue-darkest{--text-opacity:1!important;color:#1673a7!important;color:rgba(22,115,167,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-blue-dark{--text-opacity:1!important;color:#0073aa!important;color:rgba(0,115,170,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-blue{--text-opacity:1!important;color:#3188e6!important;color:rgba(49,136,230,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-blue-light{--text-opacity:1!important;color:#a4cafe!important;color:rgba(164,202,254,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-blue-highlight{color:rgba(180,215,255,.6)!important}.group:hover .\34xl\:group-hover\:text-orange{--text-opacity:1!important;color:#dd6923!important;color:rgba(221,105,35,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-orange-darker{--text-opacity:1!important;color:#d5551e!important;color:rgba(213,85,30,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-orange-darkest{--text-opacity:1!important;color:#c9501c!important;color:rgba(201,80,28,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-red{--text-opacity:1!important;color:#e82323!important;color:rgba(232,35,35,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-green{--text-opacity:1!important;color:#46b450!important;color:rgba(70,180,80,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-yellow-400{--text-opacity:1!important;color:#e3a008!important;color:rgba(227,160,8,var(--text-opacity))!important}.group:hover .\34xl\:group-hover\:text-yellow-50{--text-opacity:1!important;color:#fdfdea!important;color:rgba(253,253,234,var(--text-opacity))!important}.\34xl\:text-opacity-0{--text-opacity:0!important}.\34xl\:text-opacity-25{--text-opacity:0.25!important}.\34xl\:text-opacity-50{--text-opacity:0.5!important}.\34xl\:text-opacity-75{--text-opacity:0.75!important}.\34xl\:text-opacity-100{--text-opacity:1!important}.\34xl\:hover\:text-opacity-0:hover{--text-opacity:0!important}.\34xl\:hover\:text-opacity-25:hover{--text-opacity:0.25!important}.\34xl\:hover\:text-opacity-50:hover{--text-opacity:0.5!important}.\34xl\:hover\:text-opacity-75:hover{--text-opacity:0.75!important}.\34xl\:hover\:text-opacity-100:hover{--text-opacity:1!important}.\34xl\:focus\:text-opacity-0:focus{--text-opacity:0!important}.\34xl\:focus\:text-opacity-25:focus{--text-opacity:0.25!important}.\34xl\:focus\:text-opacity-50:focus{--text-opacity:0.5!important}.\34xl\:focus\:text-opacity-75:focus{--text-opacity:0.75!important}.\34xl\:focus\:text-opacity-100:focus{--text-opacity:1!important}.\34xl\:italic{font-style:italic!important}.\34xl\:not-italic{font-style:normal!important}.\34xl\:uppercase{text-transform:uppercase!important}.\34xl\:lowercase{text-transform:lowercase!important}.\34xl\:capitalize{text-transform:capitalize!important}.\34xl\:normal-case{text-transform:none!important}.\34xl\:underline{text-decoration:underline!important}.\34xl\:line-through{text-decoration:line-through!important}.\34xl\:no-underline{text-decoration:none!important}.group:hover .\34xl\:group-hover\:underline{text-decoration:underline!important}.group:hover .\34xl\:group-hover\:line-through{text-decoration:line-through!important}.group:hover .\34xl\:group-hover\:no-underline{text-decoration:none!important}.group:focus .\34xl\:group-focus\:underline{text-decoration:underline!important}.group:focus .\34xl\:group-focus\:line-through{text-decoration:line-through!important}.group:focus .\34xl\:group-focus\:no-underline{text-decoration:none!important}.\34xl\:hover\:underline:hover{text-decoration:underline!important}.\34xl\:hover\:line-through:hover{text-decoration:line-through!important}.\34xl\:hover\:no-underline:hover{text-decoration:none!important}.\34xl\:focus\:underline:focus{text-decoration:underline!important}.\34xl\:focus\:line-through:focus{text-decoration:line-through!important}.\34xl\:focus\:no-underline:focus{text-decoration:none!important}.\34xl\:antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.\34xl\:subpixel-antialiased{-webkit-font-smoothing:auto!important;-moz-osx-font-smoothing:auto!important}.\34xl\:diagonal-fractions,.\34xl\:lining-nums,.\34xl\:oldstyle-nums,.\34xl\:ordinal,.\34xl\:proportional-nums,.\34xl\:slashed-zero,.\34xl\:stacked-fractions,.\34xl\:tabular-nums{--font-variant-numeric-ordinal:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-slashed-zero:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-figure:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-spacing:var(--tailwind-empty,/*!*/ /*!*/)!important;--font-variant-numeric-fraction:var(--tailwind-empty,/*!*/ /*!*/)!important;font-variant-numeric:var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction)!important}.\34xl\:normal-nums{font-variant-numeric:normal!important}.\34xl\:ordinal{--font-variant-numeric-ordinal:ordinal!important}.\34xl\:slashed-zero{--font-variant-numeric-slashed-zero:slashed-zero!important}.\34xl\:lining-nums{--font-variant-numeric-figure:lining-nums!important}.\34xl\:oldstyle-nums{--font-variant-numeric-figure:oldstyle-nums!important}.\34xl\:proportional-nums{--font-variant-numeric-spacing:proportional-nums!important}.\34xl\:tabular-nums{--font-variant-numeric-spacing:tabular-nums!important}.\34xl\:diagonal-fractions{--font-variant-numeric-fraction:diagonal-fractions!important}.\34xl\:stacked-fractions{--font-variant-numeric-fraction:stacked-fractions!important}.\34xl\:tracking-tighter{letter-spacing:-.05em!important}.\34xl\:tracking-tight{letter-spacing:-.025em!important}.\34xl\:tracking-normal{letter-spacing:0!important}.\34xl\:tracking-wide{letter-spacing:.025em!important}.\34xl\:tracking-wider{letter-spacing:.05em!important}.\34xl\:tracking-widest{letter-spacing:.1em!important}.\34xl\:select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.\34xl\:select-text{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}.\34xl\:select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.\34xl\:select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.\34xl\:align-baseline{vertical-align:baseline!important}.\34xl\:align-top{vertical-align:top!important}.\34xl\:align-middle{vertical-align:middle!important}.\34xl\:align-bottom{vertical-align:bottom!important}.\34xl\:align-text-top{vertical-align:text-top!important}.\34xl\:align-text-bottom{vertical-align:text-bottom!important}.\34xl\:visible{visibility:visible!important}.\34xl\:invisible{visibility:hidden!important}.\34xl\:whitespace-normal{white-space:normal!important}.\34xl\:whitespace-no-wrap{white-space:nowrap!important}.\34xl\:whitespace-pre{white-space:pre!important}.\34xl\:whitespace-pre-line{white-space:pre-line!important}.\34xl\:whitespace-pre-wrap{white-space:pre-wrap!important}.\34xl\:break-normal{word-wrap:normal!important;overflow-wrap:normal!important;word-break:normal!important}.\34xl\:break-words{word-wrap:break-word!important;overflow-wrap:break-word!important}.\34xl\:break-all{word-break:break-all!important}.\34xl\:truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.\34xl\:w-0{width:0!important}.\34xl\:w-1{width:.25rem!important}.\34xl\:w-2{width:.5rem!important}.\34xl\:w-3{width:.75rem!important}.\34xl\:w-4{width:1rem!important}.\34xl\:w-5{width:1.25rem!important}.\34xl\:w-6{width:1.5rem!important}.\34xl\:w-7{width:1.75rem!important}.\34xl\:w-8{width:2rem!important}.\34xl\:w-9{width:2.25rem!important}.\34xl\:w-10{width:2.5rem!important}.\34xl\:w-11{width:2.75rem!important}.\34xl\:w-12{width:3rem!important}.\34xl\:w-13{width:3.25rem!important}.\34xl\:w-14{width:3.5rem!important}.\34xl\:w-15{width:3.75rem!important}.\34xl\:w-16{width:4rem!important}.\34xl\:w-20{width:5rem!important}.\34xl\:w-24{width:6rem!important}.\34xl\:w-28{width:7rem!important}.\34xl\:w-32{width:8rem!important}.\34xl\:w-36{width:9rem!important}.\34xl\:w-40{width:10rem!important}.\34xl\:w-48{width:12rem!important}.\34xl\:w-56{width:14rem!important}.\34xl\:w-60{width:15rem!important}.\34xl\:w-64{width:16rem!important}.\34xl\:w-72{width:18rem!important}.\34xl\:w-80{width:20rem!important}.\34xl\:w-96{width:24rem!important}.\34xl\:w-auto{width:auto!important}.\34xl\:w-px{width:1px!important}.\34xl\:w-0\.5{width:.125rem!important}.\34xl\:w-1\.5{width:.375rem!important}.\34xl\:w-2\.5{width:.625rem!important}.\34xl\:w-3\.5{width:.875rem!important}.\34xl\:w-1\/2{width:50%!important}.\34xl\:w-1\/3{width:33.333333%!important}.\34xl\:w-2\/3{width:66.666667%!important}.\34xl\:w-1\/4{width:25%!important}.\34xl\:w-2\/4{width:50%!important}.\34xl\:w-3\/4{width:75%!important}.\34xl\:w-1\/5{width:20%!important}.\34xl\:w-2\/5{width:40%!important}.\34xl\:w-3\/5{width:60%!important}.\34xl\:w-4\/5{width:80%!important}.\34xl\:w-1\/6{width:16.666667%!important}.\34xl\:w-2\/6{width:33.333333%!important}.\34xl\:w-3\/6{width:50%!important}.\34xl\:w-4\/6{width:66.666667%!important}.\34xl\:w-5\/6{width:83.333333%!important}.\34xl\:w-1\/12{width:8.333333%!important}.\34xl\:w-2\/12{width:16.666667%!important}.\34xl\:w-3\/12{width:25%!important}.\34xl\:w-4\/12{width:33.333333%!important}.\34xl\:w-5\/12{width:41.666667%!important}.\34xl\:w-6\/12{width:50%!important}.\34xl\:w-7\/12{width:58.333333%!important}.\34xl\:w-8\/12{width:66.666667%!important}.\34xl\:w-9\/12{width:75%!important}.\34xl\:w-10\/12{width:83.333333%!important}.\34xl\:w-11\/12{width:91.666667%!important}.\34xl\:w-full{width:100%!important}.\34xl\:w-screen{width:100vw!important}.\34xl\:z-0{z-index:0!important}.\34xl\:z-10{z-index:10!important}.\34xl\:z-20{z-index:20!important}.\34xl\:z-30{z-index:30!important}.\34xl\:z-40{z-index:40!important}.\34xl\:z-50{z-index:50!important}.\34xl\:z-999{z-index:999!important}.\34xl\:z-auto{z-index:auto!important}.\34xl\:z-max{z-index:2147483647!important}.\34xl\:focus-within\:z-0:focus-within{z-index:0!important}.\34xl\:focus-within\:z-10:focus-within{z-index:10!important}.\34xl\:focus-within\:z-20:focus-within{z-index:20!important}.\34xl\:focus-within\:z-30:focus-within{z-index:30!important}.\34xl\:focus-within\:z-40:focus-within{z-index:40!important}.\34xl\:focus-within\:z-50:focus-within{z-index:50!important}.\34xl\:focus-within\:z-999:focus-within{z-index:999!important}.\34xl\:focus-within\:z-auto:focus-within{z-index:auto!important}.\34xl\:focus-within\:z-max:focus-within{z-index:2147483647!important}.\34xl\:focus\:z-0:focus{z-index:0!important}.\34xl\:focus\:z-10:focus{z-index:10!important}.\34xl\:focus\:z-20:focus{z-index:20!important}.\34xl\:focus\:z-30:focus{z-index:30!important}.\34xl\:focus\:z-40:focus{z-index:40!important}.\34xl\:focus\:z-50:focus{z-index:50!important}.\34xl\:focus\:z-999:focus{z-index:999!important}.\34xl\:focus\:z-auto:focus{z-index:auto!important}.\34xl\:focus\:z-max:focus{z-index:2147483647!important}.\34xl\:gap-0{grid-gap:0!important;gap:0!important}.\34xl\:gap-1{grid-gap:.25rem!important;gap:.25rem!important}.\34xl\:gap-2{grid-gap:.5rem!important;gap:.5rem!important}.\34xl\:gap-3{grid-gap:.75rem!important;gap:.75rem!important}.\34xl\:gap-4{grid-gap:1rem!important;gap:1rem!important}.\34xl\:gap-5{grid-gap:1.25rem!important;gap:1.25rem!important}.\34xl\:gap-6{grid-gap:1.5rem!important;gap:1.5rem!important}.\34xl\:gap-7{grid-gap:1.75rem!important;gap:1.75rem!important}.\34xl\:gap-8{grid-gap:2rem!important;gap:2rem!important}.\34xl\:gap-9{grid-gap:2.25rem!important;gap:2.25rem!important}.\34xl\:gap-10{grid-gap:2.5rem!important;gap:2.5rem!important}.\34xl\:gap-11{grid-gap:2.75rem!important;gap:2.75rem!important}.\34xl\:gap-12{grid-gap:3rem!important;gap:3rem!important}.\34xl\:gap-13{grid-gap:3.25rem!important;gap:3.25rem!important}.\34xl\:gap-14{grid-gap:3.5rem!important;gap:3.5rem!important}.\34xl\:gap-15{grid-gap:3.75rem!important;gap:3.75rem!important}.\34xl\:gap-16{grid-gap:4rem!important;gap:4rem!important}.\34xl\:gap-20{grid-gap:5rem!important;gap:5rem!important}.\34xl\:gap-24{grid-gap:6rem!important;gap:6rem!important}.\34xl\:gap-28{grid-gap:7rem!important;gap:7rem!important}.\34xl\:gap-32{grid-gap:8rem!important;gap:8rem!important}.\34xl\:gap-36{grid-gap:9rem!important;gap:9rem!important}.\34xl\:gap-40{grid-gap:10rem!important;gap:10rem!important}.\34xl\:gap-48{grid-gap:12rem!important;gap:12rem!important}.\34xl\:gap-56{grid-gap:14rem!important;gap:14rem!important}.\34xl\:gap-60{grid-gap:15rem!important;gap:15rem!important}.\34xl\:gap-64{grid-gap:16rem!important;gap:16rem!important}.\34xl\:gap-72{grid-gap:18rem!important;gap:18rem!important}.\34xl\:gap-80{grid-gap:20rem!important;gap:20rem!important}.\34xl\:gap-96{grid-gap:24rem!important;gap:24rem!important}.\34xl\:gap-px{grid-gap:1px!important;gap:1px!important}.\34xl\:gap-0\.5{grid-gap:.125rem!important;gap:.125rem!important}.\34xl\:gap-1\.5{grid-gap:.375rem!important;gap:.375rem!important}.\34xl\:gap-2\.5{grid-gap:.625rem!important;gap:.625rem!important}.\34xl\:gap-3\.5{grid-gap:.875rem!important;gap:.875rem!important}.\34xl\:gap-1\/2{grid-gap:50%!important;gap:50%!important}.\34xl\:gap-1\/3{grid-gap:33.333333%!important;gap:33.333333%!important}.\34xl\:gap-2\/3{grid-gap:66.666667%!important;gap:66.666667%!important}.\34xl\:gap-1\/4{grid-gap:25%!important;gap:25%!important}.\34xl\:gap-2\/4{grid-gap:50%!important;gap:50%!important}.\34xl\:gap-3\/4{grid-gap:75%!important;gap:75%!important}.\34xl\:gap-1\/5{grid-gap:20%!important;gap:20%!important}.\34xl\:gap-2\/5{grid-gap:40%!important;gap:40%!important}.\34xl\:gap-3\/5{grid-gap:60%!important;gap:60%!important}.\34xl\:gap-4\/5{grid-gap:80%!important;gap:80%!important}.\34xl\:gap-1\/6{grid-gap:16.666667%!important;gap:16.666667%!important}.\34xl\:gap-2\/6{grid-gap:33.333333%!important;gap:33.333333%!important}.\34xl\:gap-3\/6{grid-gap:50%!important;gap:50%!important}.\34xl\:gap-4\/6{grid-gap:66.666667%!important;gap:66.666667%!important}.\34xl\:gap-5\/6{grid-gap:83.333333%!important;gap:83.333333%!important}.\34xl\:gap-1\/12{grid-gap:8.333333%!important;gap:8.333333%!important}.\34xl\:gap-2\/12{grid-gap:16.666667%!important;gap:16.666667%!important}.\34xl\:gap-3\/12{grid-gap:25%!important;gap:25%!important}.\34xl\:gap-4\/12{grid-gap:33.333333%!important;gap:33.333333%!important}.\34xl\:gap-5\/12{grid-gap:41.666667%!important;gap:41.666667%!important}.\34xl\:gap-6\/12{grid-gap:50%!important;gap:50%!important}.\34xl\:gap-7\/12{grid-gap:58.333333%!important;gap:58.333333%!important}.\34xl\:gap-8\/12{grid-gap:66.666667%!important;gap:66.666667%!important}.\34xl\:gap-9\/12{grid-gap:75%!important;gap:75%!important}.\34xl\:gap-10\/12{grid-gap:83.333333%!important;gap:83.333333%!important}.\34xl\:gap-11\/12{grid-gap:91.666667%!important;gap:91.666667%!important}.\34xl\:gap-full{grid-gap:100%!important;gap:100%!important}.\34xl\:gap-x-0{grid-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.\34xl\:gap-x-1{grid-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.\34xl\:gap-x-2{grid-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.\34xl\:gap-x-3{grid-column-gap:.75rem!important;-moz-column-gap:.75rem!important;column-gap:.75rem!important}.\34xl\:gap-x-4{grid-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.\34xl\:gap-x-5{grid-column-gap:1.25rem!important;-moz-column-gap:1.25rem!important;column-gap:1.25rem!important}.\34xl\:gap-x-6{grid-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.\34xl\:gap-x-7{grid-column-gap:1.75rem!important;-moz-column-gap:1.75rem!important;column-gap:1.75rem!important}.\34xl\:gap-x-8{grid-column-gap:2rem!important;-moz-column-gap:2rem!important;column-gap:2rem!important}.\34xl\:gap-x-9{grid-column-gap:2.25rem!important;-moz-column-gap:2.25rem!important;column-gap:2.25rem!important}.\34xl\:gap-x-10{grid-column-gap:2.5rem!important;-moz-column-gap:2.5rem!important;column-gap:2.5rem!important}.\34xl\:gap-x-11{grid-column-gap:2.75rem!important;-moz-column-gap:2.75rem!important;column-gap:2.75rem!important}.\34xl\:gap-x-12{grid-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.\34xl\:gap-x-13{grid-column-gap:3.25rem!important;-moz-column-gap:3.25rem!important;column-gap:3.25rem!important}.\34xl\:gap-x-14{grid-column-gap:3.5rem!important;-moz-column-gap:3.5rem!important;column-gap:3.5rem!important}.\34xl\:gap-x-15{grid-column-gap:3.75rem!important;-moz-column-gap:3.75rem!important;column-gap:3.75rem!important}.\34xl\:gap-x-16{grid-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.\34xl\:gap-x-20{grid-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.\34xl\:gap-x-24{grid-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.\34xl\:gap-x-28{grid-column-gap:7rem!important;-moz-column-gap:7rem!important;column-gap:7rem!important}.\34xl\:gap-x-32{grid-column-gap:8rem!important;-moz-column-gap:8rem!important;column-gap:8rem!important}.\34xl\:gap-x-36{grid-column-gap:9rem!important;-moz-column-gap:9rem!important;column-gap:9rem!important}.\34xl\:gap-x-40{grid-column-gap:10rem!important;-moz-column-gap:10rem!important;column-gap:10rem!important}.\34xl\:gap-x-48{grid-column-gap:12rem!important;-moz-column-gap:12rem!important;column-gap:12rem!important}.\34xl\:gap-x-56{grid-column-gap:14rem!important;-moz-column-gap:14rem!important;column-gap:14rem!important}.\34xl\:gap-x-60{grid-column-gap:15rem!important;-moz-column-gap:15rem!important;column-gap:15rem!important}.\34xl\:gap-x-64{grid-column-gap:16rem!important;-moz-column-gap:16rem!important;column-gap:16rem!important}.\34xl\:gap-x-72{grid-column-gap:18rem!important;-moz-column-gap:18rem!important;column-gap:18rem!important}.\34xl\:gap-x-80{grid-column-gap:20rem!important;-moz-column-gap:20rem!important;column-gap:20rem!important}.\34xl\:gap-x-96{grid-column-gap:24rem!important;-moz-column-gap:24rem!important;column-gap:24rem!important}.\34xl\:gap-x-px{grid-column-gap:1px!important;-moz-column-gap:1px!important;column-gap:1px!important}.\34xl\:gap-x-0\.5{grid-column-gap:.125rem!important;-moz-column-gap:.125rem!important;column-gap:.125rem!important}.\34xl\:gap-x-1\.5{grid-column-gap:.375rem!important;-moz-column-gap:.375rem!important;column-gap:.375rem!important}.\34xl\:gap-x-2\.5{grid-column-gap:.625rem!important;-moz-column-gap:.625rem!important;column-gap:.625rem!important}.\34xl\:gap-x-3\.5{grid-column-gap:.875rem!important;-moz-column-gap:.875rem!important;column-gap:.875rem!important}.\34xl\:gap-x-1\/2{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\34xl\:gap-x-1\/3{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\34xl\:gap-x-2\/3{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\34xl\:gap-x-1\/4{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.\34xl\:gap-x-2\/4{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\34xl\:gap-x-3\/4{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.\34xl\:gap-x-1\/5{grid-column-gap:20%!important;-moz-column-gap:20%!important;column-gap:20%!important}.\34xl\:gap-x-2\/5{grid-column-gap:40%!important;-moz-column-gap:40%!important;column-gap:40%!important}.\34xl\:gap-x-3\/5{grid-column-gap:60%!important;-moz-column-gap:60%!important;column-gap:60%!important}.\34xl\:gap-x-4\/5{grid-column-gap:80%!important;-moz-column-gap:80%!important;column-gap:80%!important}.\34xl\:gap-x-1\/6{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.\34xl\:gap-x-2\/6{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\34xl\:gap-x-3\/6{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\34xl\:gap-x-4\/6{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\34xl\:gap-x-5\/6{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.\34xl\:gap-x-1\/12{grid-column-gap:8.333333%!important;-moz-column-gap:8.333333%!important;column-gap:8.333333%!important}.\34xl\:gap-x-2\/12{grid-column-gap:16.666667%!important;-moz-column-gap:16.666667%!important;column-gap:16.666667%!important}.\34xl\:gap-x-3\/12{grid-column-gap:25%!important;-moz-column-gap:25%!important;column-gap:25%!important}.\34xl\:gap-x-4\/12{grid-column-gap:33.333333%!important;-moz-column-gap:33.333333%!important;column-gap:33.333333%!important}.\34xl\:gap-x-5\/12{grid-column-gap:41.666667%!important;-moz-column-gap:41.666667%!important;column-gap:41.666667%!important}.\34xl\:gap-x-6\/12{grid-column-gap:50%!important;-moz-column-gap:50%!important;column-gap:50%!important}.\34xl\:gap-x-7\/12{grid-column-gap:58.333333%!important;-moz-column-gap:58.333333%!important;column-gap:58.333333%!important}.\34xl\:gap-x-8\/12{grid-column-gap:66.666667%!important;-moz-column-gap:66.666667%!important;column-gap:66.666667%!important}.\34xl\:gap-x-9\/12{grid-column-gap:75%!important;-moz-column-gap:75%!important;column-gap:75%!important}.\34xl\:gap-x-10\/12{grid-column-gap:83.333333%!important;-moz-column-gap:83.333333%!important;column-gap:83.333333%!important}.\34xl\:gap-x-11\/12{grid-column-gap:91.666667%!important;-moz-column-gap:91.666667%!important;column-gap:91.666667%!important}.\34xl\:gap-x-full{grid-column-gap:100%!important;-moz-column-gap:100%!important;column-gap:100%!important}.\34xl\:gap-y-0{grid-row-gap:0!important;row-gap:0!important}.\34xl\:gap-y-1{grid-row-gap:.25rem!important;row-gap:.25rem!important}.\34xl\:gap-y-2{grid-row-gap:.5rem!important;row-gap:.5rem!important}.\34xl\:gap-y-3{grid-row-gap:.75rem!important;row-gap:.75rem!important}.\34xl\:gap-y-4{grid-row-gap:1rem!important;row-gap:1rem!important}.\34xl\:gap-y-5{grid-row-gap:1.25rem!important;row-gap:1.25rem!important}.\34xl\:gap-y-6{grid-row-gap:1.5rem!important;row-gap:1.5rem!important}.\34xl\:gap-y-7{grid-row-gap:1.75rem!important;row-gap:1.75rem!important}.\34xl\:gap-y-8{grid-row-gap:2rem!important;row-gap:2rem!important}.\34xl\:gap-y-9{grid-row-gap:2.25rem!important;row-gap:2.25rem!important}.\34xl\:gap-y-10{grid-row-gap:2.5rem!important;row-gap:2.5rem!important}.\34xl\:gap-y-11{grid-row-gap:2.75rem!important;row-gap:2.75rem!important}.\34xl\:gap-y-12{grid-row-gap:3rem!important;row-gap:3rem!important}.\34xl\:gap-y-13{grid-row-gap:3.25rem!important;row-gap:3.25rem!important}.\34xl\:gap-y-14{grid-row-gap:3.5rem!important;row-gap:3.5rem!important}.\34xl\:gap-y-15{grid-row-gap:3.75rem!important;row-gap:3.75rem!important}.\34xl\:gap-y-16{grid-row-gap:4rem!important;row-gap:4rem!important}.\34xl\:gap-y-20{grid-row-gap:5rem!important;row-gap:5rem!important}.\34xl\:gap-y-24{grid-row-gap:6rem!important;row-gap:6rem!important}.\34xl\:gap-y-28{grid-row-gap:7rem!important;row-gap:7rem!important}.\34xl\:gap-y-32{grid-row-gap:8rem!important;row-gap:8rem!important}.\34xl\:gap-y-36{grid-row-gap:9rem!important;row-gap:9rem!important}.\34xl\:gap-y-40{grid-row-gap:10rem!important;row-gap:10rem!important}.\34xl\:gap-y-48{grid-row-gap:12rem!important;row-gap:12rem!important}.\34xl\:gap-y-56{grid-row-gap:14rem!important;row-gap:14rem!important}.\34xl\:gap-y-60{grid-row-gap:15rem!important;row-gap:15rem!important}.\34xl\:gap-y-64{grid-row-gap:16rem!important;row-gap:16rem!important}.\34xl\:gap-y-72{grid-row-gap:18rem!important;row-gap:18rem!important}.\34xl\:gap-y-80{grid-row-gap:20rem!important;row-gap:20rem!important}.\34xl\:gap-y-96{grid-row-gap:24rem!important;row-gap:24rem!important}.\34xl\:gap-y-px{grid-row-gap:1px!important;row-gap:1px!important}.\34xl\:gap-y-0\.5{grid-row-gap:.125rem!important;row-gap:.125rem!important}.\34xl\:gap-y-1\.5{grid-row-gap:.375rem!important;row-gap:.375rem!important}.\34xl\:gap-y-2\.5{grid-row-gap:.625rem!important;row-gap:.625rem!important}.\34xl\:gap-y-3\.5{grid-row-gap:.875rem!important;row-gap:.875rem!important}.\34xl\:gap-y-1\/2{grid-row-gap:50%!important;row-gap:50%!important}.\34xl\:gap-y-1\/3{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\34xl\:gap-y-2\/3{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\34xl\:gap-y-1\/4{grid-row-gap:25%!important;row-gap:25%!important}.\34xl\:gap-y-2\/4{grid-row-gap:50%!important;row-gap:50%!important}.\34xl\:gap-y-3\/4{grid-row-gap:75%!important;row-gap:75%!important}.\34xl\:gap-y-1\/5{grid-row-gap:20%!important;row-gap:20%!important}.\34xl\:gap-y-2\/5{grid-row-gap:40%!important;row-gap:40%!important}.\34xl\:gap-y-3\/5{grid-row-gap:60%!important;row-gap:60%!important}.\34xl\:gap-y-4\/5{grid-row-gap:80%!important;row-gap:80%!important}.\34xl\:gap-y-1\/6{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.\34xl\:gap-y-2\/6{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\34xl\:gap-y-3\/6{grid-row-gap:50%!important;row-gap:50%!important}.\34xl\:gap-y-4\/6{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\34xl\:gap-y-5\/6{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.\34xl\:gap-y-1\/12{grid-row-gap:8.333333%!important;row-gap:8.333333%!important}.\34xl\:gap-y-2\/12{grid-row-gap:16.666667%!important;row-gap:16.666667%!important}.\34xl\:gap-y-3\/12{grid-row-gap:25%!important;row-gap:25%!important}.\34xl\:gap-y-4\/12{grid-row-gap:33.333333%!important;row-gap:33.333333%!important}.\34xl\:gap-y-5\/12{grid-row-gap:41.666667%!important;row-gap:41.666667%!important}.\34xl\:gap-y-6\/12{grid-row-gap:50%!important;row-gap:50%!important}.\34xl\:gap-y-7\/12{grid-row-gap:58.333333%!important;row-gap:58.333333%!important}.\34xl\:gap-y-8\/12{grid-row-gap:66.666667%!important;row-gap:66.666667%!important}.\34xl\:gap-y-9\/12{grid-row-gap:75%!important;row-gap:75%!important}.\34xl\:gap-y-10\/12{grid-row-gap:83.333333%!important;row-gap:83.333333%!important}.\34xl\:gap-y-11\/12{grid-row-gap:91.666667%!important;row-gap:91.666667%!important}.\34xl\:gap-y-full{grid-row-gap:100%!important;row-gap:100%!important}.\34xl\:grid-flow-row{grid-auto-flow:row!important}.\34xl\:grid-flow-col{grid-auto-flow:column!important}.\34xl\:grid-flow-row-dense{grid-auto-flow:row dense!important}.\34xl\:grid-flow-col-dense{grid-auto-flow:column dense!important}.\34xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.\34xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.\34xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.\34xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.\34xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.\34xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.\34xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.\34xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.\34xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.\34xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.\34xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.\34xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.\34xl\:grid-cols-none{grid-template-columns:none!important}.\34xl\:auto-cols-auto{grid-auto-columns:auto!important}.\34xl\:auto-cols-min{grid-auto-columns:min-content!important}.\34xl\:auto-cols-max{grid-auto-columns:max-content!important}.\34xl\:auto-cols-fr{grid-auto-columns:minmax(0,1fr)!important}.\34xl\:col-auto{grid-column:auto!important}.\34xl\:col-span-1{grid-column:span 1/span 1!important}.\34xl\:col-span-2{grid-column:span 2/span 2!important}.\34xl\:col-span-3{grid-column:span 3/span 3!important}.\34xl\:col-span-4{grid-column:span 4/span 4!important}.\34xl\:col-span-5{grid-column:span 5/span 5!important}.\34xl\:col-span-6{grid-column:span 6/span 6!important}.\34xl\:col-span-7{grid-column:span 7/span 7!important}.\34xl\:col-span-8{grid-column:span 8/span 8!important}.\34xl\:col-span-9{grid-column:span 9/span 9!important}.\34xl\:col-span-10{grid-column:span 10/span 10!important}.\34xl\:col-span-11{grid-column:span 11/span 11!important}.\34xl\:col-span-12{grid-column:span 12/span 12!important}.\34xl\:col-span-full{grid-column:1/-1!important}.\34xl\:col-start-1{grid-column-start:1!important}.\34xl\:col-start-2{grid-column-start:2!important}.\34xl\:col-start-3{grid-column-start:3!important}.\34xl\:col-start-4{grid-column-start:4!important}.\34xl\:col-start-5{grid-column-start:5!important}.\34xl\:col-start-6{grid-column-start:6!important}.\34xl\:col-start-7{grid-column-start:7!important}.\34xl\:col-start-8{grid-column-start:8!important}.\34xl\:col-start-9{grid-column-start:9!important}.\34xl\:col-start-10{grid-column-start:10!important}.\34xl\:col-start-11{grid-column-start:11!important}.\34xl\:col-start-12{grid-column-start:12!important}.\34xl\:col-start-13{grid-column-start:13!important}.\34xl\:col-start-auto{grid-column-start:auto!important}.\34xl\:col-end-1{grid-column-end:1!important}.\34xl\:col-end-2{grid-column-end:2!important}.\34xl\:col-end-3{grid-column-end:3!important}.\34xl\:col-end-4{grid-column-end:4!important}.\34xl\:col-end-5{grid-column-end:5!important}.\34xl\:col-end-6{grid-column-end:6!important}.\34xl\:col-end-7{grid-column-end:7!important}.\34xl\:col-end-8{grid-column-end:8!important}.\34xl\:col-end-9{grid-column-end:9!important}.\34xl\:col-end-10{grid-column-end:10!important}.\34xl\:col-end-11{grid-column-end:11!important}.\34xl\:col-end-12{grid-column-end:12!important}.\34xl\:col-end-13{grid-column-end:13!important}.\34xl\:col-end-auto{grid-column-end:auto!important}.\34xl\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))!important}.\34xl\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))!important}.\34xl\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))!important}.\34xl\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))!important}.\34xl\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))!important}.\34xl\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))!important}.\34xl\:grid-rows-none{grid-template-rows:none!important}.\34xl\:auto-rows-auto{grid-auto-rows:auto!important}.\34xl\:auto-rows-min{grid-auto-rows:min-content!important}.\34xl\:auto-rows-max{grid-auto-rows:max-content!important}.\34xl\:auto-rows-fr{grid-auto-rows:minmax(0,1fr)!important}.\34xl\:row-auto{grid-row:auto!important}.\34xl\:row-span-1{grid-row:span 1/span 1!important}.\34xl\:row-span-2{grid-row:span 2/span 2!important}.\34xl\:row-span-3{grid-row:span 3/span 3!important}.\34xl\:row-span-4{grid-row:span 4/span 4!important}.\34xl\:row-span-5{grid-row:span 5/span 5!important}.\34xl\:row-span-6{grid-row:span 6/span 6!important}.\34xl\:row-span-full{grid-row:1/-1!important}.\34xl\:row-start-1{grid-row-start:1!important}.\34xl\:row-start-2{grid-row-start:2!important}.\34xl\:row-start-3{grid-row-start:3!important}.\34xl\:row-start-4{grid-row-start:4!important}.\34xl\:row-start-5{grid-row-start:5!important}.\34xl\:row-start-6{grid-row-start:6!important}.\34xl\:row-start-7{grid-row-start:7!important}.\34xl\:row-start-auto{grid-row-start:auto!important}.\34xl\:row-end-1{grid-row-end:1!important}.\34xl\:row-end-2{grid-row-end:2!important}.\34xl\:row-end-3{grid-row-end:3!important}.\34xl\:row-end-4{grid-row-end:4!important}.\34xl\:row-end-5{grid-row-end:5!important}.\34xl\:row-end-6{grid-row-end:6!important}.\34xl\:row-end-7{grid-row-end:7!important}.\34xl\:row-end-auto{grid-row-end:auto!important}.\34xl\:transform{--transform-translate-x:0!important;--transform-translate-y:0!important;--transform-rotate:0!important;--transform-skew-x:0!important;--transform-skew-y:0!important;--transform-scale-x:1!important;--transform-scale-y:1!important;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))!important}.\34xl\:transform-none{transform:none!important}.\34xl\:origin-center{transform-origin:center!important}.\34xl\:origin-top{transform-origin:top!important}.\34xl\:origin-top-right{transform-origin:top right!important}.\34xl\:origin-right{transform-origin:right!important}.\34xl\:origin-bottom-right{transform-origin:bottom right!important}.\34xl\:origin-bottom{transform-origin:bottom!important}.\34xl\:origin-bottom-left{transform-origin:bottom left!important}.\34xl\:origin-left{transform-origin:left!important}.\34xl\:origin-top-left{transform-origin:top left!important}.\34xl\:scale-0{--transform-scale-x:0!important;--transform-scale-y:0!important}.\34xl\:scale-50{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\34xl\:scale-75{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\34xl\:scale-90{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\34xl\:scale-95{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\34xl\:scale-100{--transform-scale-x:1!important;--transform-scale-y:1!important}.\34xl\:scale-105{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\34xl\:scale-110{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\34xl\:scale-125{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\34xl\:scale-150{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\34xl\:scale-x-0{--transform-scale-x:0!important}.\34xl\:scale-x-50{--transform-scale-x:.5!important}.\34xl\:scale-x-75{--transform-scale-x:.75!important}.\34xl\:scale-x-90{--transform-scale-x:.9!important}.\34xl\:scale-x-95{--transform-scale-x:.95!important}.\34xl\:scale-x-100{--transform-scale-x:1!important}.\34xl\:scale-x-105{--transform-scale-x:1.05!important}.\34xl\:scale-x-110{--transform-scale-x:1.1!important}.\34xl\:scale-x-125{--transform-scale-x:1.25!important}.\34xl\:scale-x-150{--transform-scale-x:1.5!important}.\34xl\:scale-y-0{--transform-scale-y:0!important}.\34xl\:scale-y-50{--transform-scale-y:.5!important}.\34xl\:scale-y-75{--transform-scale-y:.75!important}.\34xl\:scale-y-90{--transform-scale-y:.9!important}.\34xl\:scale-y-95{--transform-scale-y:.95!important}.\34xl\:scale-y-100{--transform-scale-y:1!important}.\34xl\:scale-y-105{--transform-scale-y:1.05!important}.\34xl\:scale-y-110{--transform-scale-y:1.1!important}.\34xl\:scale-y-125{--transform-scale-y:1.25!important}.\34xl\:scale-y-150{--transform-scale-y:1.5!important}.\34xl\:hover\:scale-0:hover{--transform-scale-x:0!important;--transform-scale-y:0!important}.\34xl\:hover\:scale-50:hover{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\34xl\:hover\:scale-75:hover{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\34xl\:hover\:scale-90:hover{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\34xl\:hover\:scale-95:hover{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\34xl\:hover\:scale-100:hover{--transform-scale-x:1!important;--transform-scale-y:1!important}.\34xl\:hover\:scale-105:hover{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\34xl\:hover\:scale-110:hover{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\34xl\:hover\:scale-125:hover{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\34xl\:hover\:scale-150:hover{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\34xl\:hover\:scale-x-0:hover{--transform-scale-x:0!important}.\34xl\:hover\:scale-x-50:hover{--transform-scale-x:.5!important}.\34xl\:hover\:scale-x-75:hover{--transform-scale-x:.75!important}.\34xl\:hover\:scale-x-90:hover{--transform-scale-x:.9!important}.\34xl\:hover\:scale-x-95:hover{--transform-scale-x:.95!important}.\34xl\:hover\:scale-x-100:hover{--transform-scale-x:1!important}.\34xl\:hover\:scale-x-105:hover{--transform-scale-x:1.05!important}.\34xl\:hover\:scale-x-110:hover{--transform-scale-x:1.1!important}.\34xl\:hover\:scale-x-125:hover{--transform-scale-x:1.25!important}.\34xl\:hover\:scale-x-150:hover{--transform-scale-x:1.5!important}.\34xl\:hover\:scale-y-0:hover{--transform-scale-y:0!important}.\34xl\:hover\:scale-y-50:hover{--transform-scale-y:.5!important}.\34xl\:hover\:scale-y-75:hover{--transform-scale-y:.75!important}.\34xl\:hover\:scale-y-90:hover{--transform-scale-y:.9!important}.\34xl\:hover\:scale-y-95:hover{--transform-scale-y:.95!important}.\34xl\:hover\:scale-y-100:hover{--transform-scale-y:1!important}.\34xl\:hover\:scale-y-105:hover{--transform-scale-y:1.05!important}.\34xl\:hover\:scale-y-110:hover{--transform-scale-y:1.1!important}.\34xl\:hover\:scale-y-125:hover{--transform-scale-y:1.25!important}.\34xl\:hover\:scale-y-150:hover{--transform-scale-y:1.5!important}.\34xl\:focus\:scale-0:focus{--transform-scale-x:0!important;--transform-scale-y:0!important}.\34xl\:focus\:scale-50:focus{--transform-scale-x:.5!important;--transform-scale-y:.5!important}.\34xl\:focus\:scale-75:focus{--transform-scale-x:.75!important;--transform-scale-y:.75!important}.\34xl\:focus\:scale-90:focus{--transform-scale-x:.9!important;--transform-scale-y:.9!important}.\34xl\:focus\:scale-95:focus{--transform-scale-x:.95!important;--transform-scale-y:.95!important}.\34xl\:focus\:scale-100:focus{--transform-scale-x:1!important;--transform-scale-y:1!important}.\34xl\:focus\:scale-105:focus{--transform-scale-x:1.05!important;--transform-scale-y:1.05!important}.\34xl\:focus\:scale-110:focus{--transform-scale-x:1.1!important;--transform-scale-y:1.1!important}.\34xl\:focus\:scale-125:focus{--transform-scale-x:1.25!important;--transform-scale-y:1.25!important}.\34xl\:focus\:scale-150:focus{--transform-scale-x:1.5!important;--transform-scale-y:1.5!important}.\34xl\:focus\:scale-x-0:focus{--transform-scale-x:0!important}.\34xl\:focus\:scale-x-50:focus{--transform-scale-x:.5!important}.\34xl\:focus\:scale-x-75:focus{--transform-scale-x:.75!important}.\34xl\:focus\:scale-x-90:focus{--transform-scale-x:.9!important}.\34xl\:focus\:scale-x-95:focus{--transform-scale-x:.95!important}.\34xl\:focus\:scale-x-100:focus{--transform-scale-x:1!important}.\34xl\:focus\:scale-x-105:focus{--transform-scale-x:1.05!important}.\34xl\:focus\:scale-x-110:focus{--transform-scale-x:1.1!important}.\34xl\:focus\:scale-x-125:focus{--transform-scale-x:1.25!important}.\34xl\:focus\:scale-x-150:focus{--transform-scale-x:1.5!important}.\34xl\:focus\:scale-y-0:focus{--transform-scale-y:0!important}.\34xl\:focus\:scale-y-50:focus{--transform-scale-y:.5!important}.\34xl\:focus\:scale-y-75:focus{--transform-scale-y:.75!important}.\34xl\:focus\:scale-y-90:focus{--transform-scale-y:.9!important}.\34xl\:focus\:scale-y-95:focus{--transform-scale-y:.95!important}.\34xl\:focus\:scale-y-100:focus{--transform-scale-y:1!important}.\34xl\:focus\:scale-y-105:focus{--transform-scale-y:1.05!important}.\34xl\:focus\:scale-y-110:focus{--transform-scale-y:1.1!important}.\34xl\:focus\:scale-y-125:focus{--transform-scale-y:1.25!important}.\34xl\:focus\:scale-y-150:focus{--transform-scale-y:1.5!important}.\34xl\:rotate-0{--transform-rotate:0!important}.\34xl\:rotate-1{--transform-rotate:1deg!important}.\34xl\:rotate-2{--transform-rotate:2deg!important}.\34xl\:rotate-3{--transform-rotate:3deg!important}.\34xl\:rotate-6{--transform-rotate:6deg!important}.\34xl\:rotate-12{--transform-rotate:12deg!important}.\34xl\:rotate-45{--transform-rotate:45deg!important}.\34xl\:rotate-90{--transform-rotate:90deg!important}.\34xl\:rotate-180{--transform-rotate:180deg!important}.\34xl\:-rotate-180{--transform-rotate:-180deg!important}.\34xl\:-rotate-90{--transform-rotate:-90deg!important}.\34xl\:-rotate-45{--transform-rotate:-45deg!important}.\34xl\:-rotate-12{--transform-rotate:-12deg!important}.\34xl\:-rotate-6{--transform-rotate:-6deg!important}.\34xl\:-rotate-3{--transform-rotate:-3deg!important}.\34xl\:-rotate-2{--transform-rotate:-2deg!important}.\34xl\:-rotate-1{--transform-rotate:-1deg!important}.\34xl\:hover\:rotate-0:hover{--transform-rotate:0!important}.\34xl\:hover\:rotate-1:hover{--transform-rotate:1deg!important}.\34xl\:hover\:rotate-2:hover{--transform-rotate:2deg!important}.\34xl\:hover\:rotate-3:hover{--transform-rotate:3deg!important}.\34xl\:hover\:rotate-6:hover{--transform-rotate:6deg!important}.\34xl\:hover\:rotate-12:hover{--transform-rotate:12deg!important}.\34xl\:hover\:rotate-45:hover{--transform-rotate:45deg!important}.\34xl\:hover\:rotate-90:hover{--transform-rotate:90deg!important}.\34xl\:hover\:rotate-180:hover{--transform-rotate:180deg!important}.\34xl\:hover\:-rotate-180:hover{--transform-rotate:-180deg!important}.\34xl\:hover\:-rotate-90:hover{--transform-rotate:-90deg!important}.\34xl\:hover\:-rotate-45:hover{--transform-rotate:-45deg!important}.\34xl\:hover\:-rotate-12:hover{--transform-rotate:-12deg!important}.\34xl\:hover\:-rotate-6:hover{--transform-rotate:-6deg!important}.\34xl\:hover\:-rotate-3:hover{--transform-rotate:-3deg!important}.\34xl\:hover\:-rotate-2:hover{--transform-rotate:-2deg!important}.\34xl\:hover\:-rotate-1:hover{--transform-rotate:-1deg!important}.\34xl\:focus\:rotate-0:focus{--transform-rotate:0!important}.\34xl\:focus\:rotate-1:focus{--transform-rotate:1deg!important}.\34xl\:focus\:rotate-2:focus{--transform-rotate:2deg!important}.\34xl\:focus\:rotate-3:focus{--transform-rotate:3deg!important}.\34xl\:focus\:rotate-6:focus{--transform-rotate:6deg!important}.\34xl\:focus\:rotate-12:focus{--transform-rotate:12deg!important}.\34xl\:focus\:rotate-45:focus{--transform-rotate:45deg!important}.\34xl\:focus\:rotate-90:focus{--transform-rotate:90deg!important}.\34xl\:focus\:rotate-180:focus{--transform-rotate:180deg!important}.\34xl\:focus\:-rotate-180:focus{--transform-rotate:-180deg!important}.\34xl\:focus\:-rotate-90:focus{--transform-rotate:-90deg!important}.\34xl\:focus\:-rotate-45:focus{--transform-rotate:-45deg!important}.\34xl\:focus\:-rotate-12:focus{--transform-rotate:-12deg!important}.\34xl\:focus\:-rotate-6:focus{--transform-rotate:-6deg!important}.\34xl\:focus\:-rotate-3:focus{--transform-rotate:-3deg!important}.\34xl\:focus\:-rotate-2:focus{--transform-rotate:-2deg!important}.\34xl\:focus\:-rotate-1:focus{--transform-rotate:-1deg!important}.\34xl\:translate-x-0{--transform-translate-x:0!important}.\34xl\:translate-x-1{--transform-translate-x:0.25rem!important}.\34xl\:translate-x-2{--transform-translate-x:0.5rem!important}.\34xl\:translate-x-3{--transform-translate-x:0.75rem!important}.\34xl\:translate-x-4{--transform-translate-x:1rem!important}.\34xl\:translate-x-5{--transform-translate-x:1.25rem!important}.\34xl\:translate-x-6{--transform-translate-x:1.5rem!important}.\34xl\:translate-x-7{--transform-translate-x:1.75rem!important}.\34xl\:translate-x-8{--transform-translate-x:2rem!important}.\34xl\:translate-x-9{--transform-translate-x:2.25rem!important}.\34xl\:translate-x-10{--transform-translate-x:2.5rem!important}.\34xl\:translate-x-11{--transform-translate-x:2.75rem!important}.\34xl\:translate-x-12{--transform-translate-x:3rem!important}.\34xl\:translate-x-13{--transform-translate-x:3.25rem!important}.\34xl\:translate-x-14{--transform-translate-x:3.5rem!important}.\34xl\:translate-x-15{--transform-translate-x:3.75rem!important}.\34xl\:translate-x-16{--transform-translate-x:4rem!important}.\34xl\:translate-x-20{--transform-translate-x:5rem!important}.\34xl\:translate-x-24{--transform-translate-x:6rem!important}.\34xl\:translate-x-28{--transform-translate-x:7rem!important}.\34xl\:translate-x-32{--transform-translate-x:8rem!important}.\34xl\:translate-x-36{--transform-translate-x:9rem!important}.\34xl\:translate-x-40{--transform-translate-x:10rem!important}.\34xl\:translate-x-48{--transform-translate-x:12rem!important}.\34xl\:translate-x-56{--transform-translate-x:14rem!important}.\34xl\:translate-x-60{--transform-translate-x:15rem!important}.\34xl\:translate-x-64{--transform-translate-x:16rem!important}.\34xl\:translate-x-72{--transform-translate-x:18rem!important}.\34xl\:translate-x-80{--transform-translate-x:20rem!important}.\34xl\:translate-x-96{--transform-translate-x:24rem!important}.\34xl\:translate-x-px{--transform-translate-x:1px!important}.\34xl\:translate-x-0\.5{--transform-translate-x:0.125rem!important}.\34xl\:translate-x-1\.5{--transform-translate-x:0.375rem!important}.\34xl\:translate-x-2\.5{--transform-translate-x:0.625rem!important}.\34xl\:translate-x-3\.5{--transform-translate-x:0.875rem!important}.\34xl\:translate-x-1\/2{--transform-translate-x:50%!important}.\34xl\:translate-x-1\/3{--transform-translate-x:33.333333%!important}.\34xl\:translate-x-2\/3{--transform-translate-x:66.666667%!important}.\34xl\:translate-x-1\/4{--transform-translate-x:25%!important}.\34xl\:translate-x-2\/4{--transform-translate-x:50%!important}.\34xl\:translate-x-3\/4{--transform-translate-x:75%!important}.\34xl\:translate-x-1\/5{--transform-translate-x:20%!important}.\34xl\:translate-x-2\/5{--transform-translate-x:40%!important}.\34xl\:translate-x-3\/5{--transform-translate-x:60%!important}.\34xl\:translate-x-4\/5{--transform-translate-x:80%!important}.\34xl\:translate-x-1\/6{--transform-translate-x:16.666667%!important}.\34xl\:translate-x-2\/6{--transform-translate-x:33.333333%!important}.\34xl\:translate-x-3\/6{--transform-translate-x:50%!important}.\34xl\:translate-x-4\/6{--transform-translate-x:66.666667%!important}.\34xl\:translate-x-5\/6{--transform-translate-x:83.333333%!important}.\34xl\:translate-x-1\/12{--transform-translate-x:8.333333%!important}.\34xl\:translate-x-2\/12{--transform-translate-x:16.666667%!important}.\34xl\:translate-x-3\/12{--transform-translate-x:25%!important}.\34xl\:translate-x-4\/12{--transform-translate-x:33.333333%!important}.\34xl\:translate-x-5\/12{--transform-translate-x:41.666667%!important}.\34xl\:translate-x-6\/12{--transform-translate-x:50%!important}.\34xl\:translate-x-7\/12{--transform-translate-x:58.333333%!important}.\34xl\:translate-x-8\/12{--transform-translate-x:66.666667%!important}.\34xl\:translate-x-9\/12{--transform-translate-x:75%!important}.\34xl\:translate-x-10\/12{--transform-translate-x:83.333333%!important}.\34xl\:translate-x-11\/12{--transform-translate-x:91.666667%!important}.\34xl\:translate-x-full{--transform-translate-x:100%!important}.\34xl\:-translate-x-1{--transform-translate-x:-0.25rem!important}.\34xl\:-translate-x-2{--transform-translate-x:-0.5rem!important}.\34xl\:-translate-x-3{--transform-translate-x:-0.75rem!important}.\34xl\:-translate-x-4{--transform-translate-x:-1rem!important}.\34xl\:-translate-x-5{--transform-translate-x:-1.25rem!important}.\34xl\:-translate-x-6{--transform-translate-x:-1.5rem!important}.\34xl\:-translate-x-7{--transform-translate-x:-1.75rem!important}.\34xl\:-translate-x-8{--transform-translate-x:-2rem!important}.\34xl\:-translate-x-9{--transform-translate-x:-2.25rem!important}.\34xl\:-translate-x-10{--transform-translate-x:-2.5rem!important}.\34xl\:-translate-x-11{--transform-translate-x:-2.75rem!important}.\34xl\:-translate-x-12{--transform-translate-x:-3rem!important}.\34xl\:-translate-x-13{--transform-translate-x:-3.25rem!important}.\34xl\:-translate-x-14{--transform-translate-x:-3.5rem!important}.\34xl\:-translate-x-15{--transform-translate-x:-3.75rem!important}.\34xl\:-translate-x-16{--transform-translate-x:-4rem!important}.\34xl\:-translate-x-20{--transform-translate-x:-5rem!important}.\34xl\:-translate-x-24{--transform-translate-x:-6rem!important}.\34xl\:-translate-x-28{--transform-translate-x:-7rem!important}.\34xl\:-translate-x-32{--transform-translate-x:-8rem!important}.\34xl\:-translate-x-36{--transform-translate-x:-9rem!important}.\34xl\:-translate-x-40{--transform-translate-x:-10rem!important}.\34xl\:-translate-x-48{--transform-translate-x:-12rem!important}.\34xl\:-translate-x-56{--transform-translate-x:-14rem!important}.\34xl\:-translate-x-60{--transform-translate-x:-15rem!important}.\34xl\:-translate-x-64{--transform-translate-x:-16rem!important}.\34xl\:-translate-x-72{--transform-translate-x:-18rem!important}.\34xl\:-translate-x-80{--transform-translate-x:-20rem!important}.\34xl\:-translate-x-96{--transform-translate-x:-24rem!important}.\34xl\:-translate-x-px{--transform-translate-x:-1px!important}.\34xl\:-translate-x-0\.5{--transform-translate-x:-0.125rem!important}.\34xl\:-translate-x-1\.5{--transform-translate-x:-0.375rem!important}.\34xl\:-translate-x-2\.5{--transform-translate-x:-0.625rem!important}.\34xl\:-translate-x-3\.5{--transform-translate-x:-0.875rem!important}.\34xl\:-translate-x-1\/2{--transform-translate-x:-50%!important}.\34xl\:-translate-x-1\/3{--transform-translate-x:-33.33333%!important}.\34xl\:-translate-x-2\/3{--transform-translate-x:-66.66667%!important}.\34xl\:-translate-x-1\/4{--transform-translate-x:-25%!important}.\34xl\:-translate-x-2\/4{--transform-translate-x:-50%!important}.\34xl\:-translate-x-3\/4{--transform-translate-x:-75%!important}.\34xl\:-translate-x-1\/5{--transform-translate-x:-20%!important}.\34xl\:-translate-x-2\/5{--transform-translate-x:-40%!important}.\34xl\:-translate-x-3\/5{--transform-translate-x:-60%!important}.\34xl\:-translate-x-4\/5{--transform-translate-x:-80%!important}.\34xl\:-translate-x-1\/6{--transform-translate-x:-16.66667%!important}.\34xl\:-translate-x-2\/6{--transform-translate-x:-33.33333%!important}.\34xl\:-translate-x-3\/6{--transform-translate-x:-50%!important}.\34xl\:-translate-x-4\/6{--transform-translate-x:-66.66667%!important}.\34xl\:-translate-x-5\/6{--transform-translate-x:-83.33333%!important}.\34xl\:-translate-x-1\/12{--transform-translate-x:-8.33333%!important}.\34xl\:-translate-x-2\/12{--transform-translate-x:-16.66667%!important}.\34xl\:-translate-x-3\/12{--transform-translate-x:-25%!important}.\34xl\:-translate-x-4\/12{--transform-translate-x:-33.33333%!important}.\34xl\:-translate-x-5\/12{--transform-translate-x:-41.66667%!important}.\34xl\:-translate-x-6\/12{--transform-translate-x:-50%!important}.\34xl\:-translate-x-7\/12{--transform-translate-x:-58.33333%!important}.\34xl\:-translate-x-8\/12{--transform-translate-x:-66.66667%!important}.\34xl\:-translate-x-9\/12{--transform-translate-x:-75%!important}.\34xl\:-translate-x-10\/12{--transform-translate-x:-83.33333%!important}.\34xl\:-translate-x-11\/12{--transform-translate-x:-91.66667%!important}.\34xl\:-translate-x-full{--transform-translate-x:-100%!important}.\34xl\:translate-y-0{--transform-translate-y:0!important}.\34xl\:translate-y-1{--transform-translate-y:0.25rem!important}.\34xl\:translate-y-2{--transform-translate-y:0.5rem!important}.\34xl\:translate-y-3{--transform-translate-y:0.75rem!important}.\34xl\:translate-y-4{--transform-translate-y:1rem!important}.\34xl\:translate-y-5{--transform-translate-y:1.25rem!important}.\34xl\:translate-y-6{--transform-translate-y:1.5rem!important}.\34xl\:translate-y-7{--transform-translate-y:1.75rem!important}.\34xl\:translate-y-8{--transform-translate-y:2rem!important}.\34xl\:translate-y-9{--transform-translate-y:2.25rem!important}.\34xl\:translate-y-10{--transform-translate-y:2.5rem!important}.\34xl\:translate-y-11{--transform-translate-y:2.75rem!important}.\34xl\:translate-y-12{--transform-translate-y:3rem!important}.\34xl\:translate-y-13{--transform-translate-y:3.25rem!important}.\34xl\:translate-y-14{--transform-translate-y:3.5rem!important}.\34xl\:translate-y-15{--transform-translate-y:3.75rem!important}.\34xl\:translate-y-16{--transform-translate-y:4rem!important}.\34xl\:translate-y-20{--transform-translate-y:5rem!important}.\34xl\:translate-y-24{--transform-translate-y:6rem!important}.\34xl\:translate-y-28{--transform-translate-y:7rem!important}.\34xl\:translate-y-32{--transform-translate-y:8rem!important}.\34xl\:translate-y-36{--transform-translate-y:9rem!important}.\34xl\:translate-y-40{--transform-translate-y:10rem!important}.\34xl\:translate-y-48{--transform-translate-y:12rem!important}.\34xl\:translate-y-56{--transform-translate-y:14rem!important}.\34xl\:translate-y-60{--transform-translate-y:15rem!important}.\34xl\:translate-y-64{--transform-translate-y:16rem!important}.\34xl\:translate-y-72{--transform-translate-y:18rem!important}.\34xl\:translate-y-80{--transform-translate-y:20rem!important}.\34xl\:translate-y-96{--transform-translate-y:24rem!important}.\34xl\:translate-y-px{--transform-translate-y:1px!important}.\34xl\:translate-y-0\.5{--transform-translate-y:0.125rem!important}.\34xl\:translate-y-1\.5{--transform-translate-y:0.375rem!important}.\34xl\:translate-y-2\.5{--transform-translate-y:0.625rem!important}.\34xl\:translate-y-3\.5{--transform-translate-y:0.875rem!important}.\34xl\:translate-y-1\/2{--transform-translate-y:50%!important}.\34xl\:translate-y-1\/3{--transform-translate-y:33.333333%!important}.\34xl\:translate-y-2\/3{--transform-translate-y:66.666667%!important}.\34xl\:translate-y-1\/4{--transform-translate-y:25%!important}.\34xl\:translate-y-2\/4{--transform-translate-y:50%!important}.\34xl\:translate-y-3\/4{--transform-translate-y:75%!important}.\34xl\:translate-y-1\/5{--transform-translate-y:20%!important}.\34xl\:translate-y-2\/5{--transform-translate-y:40%!important}.\34xl\:translate-y-3\/5{--transform-translate-y:60%!important}.\34xl\:translate-y-4\/5{--transform-translate-y:80%!important}.\34xl\:translate-y-1\/6{--transform-translate-y:16.666667%!important}.\34xl\:translate-y-2\/6{--transform-translate-y:33.333333%!important}.\34xl\:translate-y-3\/6{--transform-translate-y:50%!important}.\34xl\:translate-y-4\/6{--transform-translate-y:66.666667%!important}.\34xl\:translate-y-5\/6{--transform-translate-y:83.333333%!important}.\34xl\:translate-y-1\/12{--transform-translate-y:8.333333%!important}.\34xl\:translate-y-2\/12{--transform-translate-y:16.666667%!important}.\34xl\:translate-y-3\/12{--transform-translate-y:25%!important}.\34xl\:translate-y-4\/12{--transform-translate-y:33.333333%!important}.\34xl\:translate-y-5\/12{--transform-translate-y:41.666667%!important}.\34xl\:translate-y-6\/12{--transform-translate-y:50%!important}.\34xl\:translate-y-7\/12{--transform-translate-y:58.333333%!important}.\34xl\:translate-y-8\/12{--transform-translate-y:66.666667%!important}.\34xl\:translate-y-9\/12{--transform-translate-y:75%!important}.\34xl\:translate-y-10\/12{--transform-translate-y:83.333333%!important}.\34xl\:translate-y-11\/12{--transform-translate-y:91.666667%!important}.\34xl\:translate-y-full{--transform-translate-y:100%!important}.\34xl\:-translate-y-1{--transform-translate-y:-0.25rem!important}.\34xl\:-translate-y-2{--transform-translate-y:-0.5rem!important}.\34xl\:-translate-y-3{--transform-translate-y:-0.75rem!important}.\34xl\:-translate-y-4{--transform-translate-y:-1rem!important}.\34xl\:-translate-y-5{--transform-translate-y:-1.25rem!important}.\34xl\:-translate-y-6{--transform-translate-y:-1.5rem!important}.\34xl\:-translate-y-7{--transform-translate-y:-1.75rem!important}.\34xl\:-translate-y-8{--transform-translate-y:-2rem!important}.\34xl\:-translate-y-9{--transform-translate-y:-2.25rem!important}.\34xl\:-translate-y-10{--transform-translate-y:-2.5rem!important}.\34xl\:-translate-y-11{--transform-translate-y:-2.75rem!important}.\34xl\:-translate-y-12{--transform-translate-y:-3rem!important}.\34xl\:-translate-y-13{--transform-translate-y:-3.25rem!important}.\34xl\:-translate-y-14{--transform-translate-y:-3.5rem!important}.\34xl\:-translate-y-15{--transform-translate-y:-3.75rem!important}.\34xl\:-translate-y-16{--transform-translate-y:-4rem!important}.\34xl\:-translate-y-20{--transform-translate-y:-5rem!important}.\34xl\:-translate-y-24{--transform-translate-y:-6rem!important}.\34xl\:-translate-y-28{--transform-translate-y:-7rem!important}.\34xl\:-translate-y-32{--transform-translate-y:-8rem!important}.\34xl\:-translate-y-36{--transform-translate-y:-9rem!important}.\34xl\:-translate-y-40{--transform-translate-y:-10rem!important}.\34xl\:-translate-y-48{--transform-translate-y:-12rem!important}.\34xl\:-translate-y-56{--transform-translate-y:-14rem!important}.\34xl\:-translate-y-60{--transform-translate-y:-15rem!important}.\34xl\:-translate-y-64{--transform-translate-y:-16rem!important}.\34xl\:-translate-y-72{--transform-translate-y:-18rem!important}.\34xl\:-translate-y-80{--transform-translate-y:-20rem!important}.\34xl\:-translate-y-96{--transform-translate-y:-24rem!important}.\34xl\:-translate-y-px{--transform-translate-y:-1px!important}.\34xl\:-translate-y-0\.5{--transform-translate-y:-0.125rem!important}.\34xl\:-translate-y-1\.5{--transform-translate-y:-0.375rem!important}.\34xl\:-translate-y-2\.5{--transform-translate-y:-0.625rem!important}.\34xl\:-translate-y-3\.5{--transform-translate-y:-0.875rem!important}.\34xl\:-translate-y-1\/2{--transform-translate-y:-50%!important}.\34xl\:-translate-y-1\/3{--transform-translate-y:-33.33333%!important}.\34xl\:-translate-y-2\/3{--transform-translate-y:-66.66667%!important}.\34xl\:-translate-y-1\/4{--transform-translate-y:-25%!important}.\34xl\:-translate-y-2\/4{--transform-translate-y:-50%!important}.\34xl\:-translate-y-3\/4{--transform-translate-y:-75%!important}.\34xl\:-translate-y-1\/5{--transform-translate-y:-20%!important}.\34xl\:-translate-y-2\/5{--transform-translate-y:-40%!important}.\34xl\:-translate-y-3\/5{--transform-translate-y:-60%!important}.\34xl\:-translate-y-4\/5{--transform-translate-y:-80%!important}.\34xl\:-translate-y-1\/6{--transform-translate-y:-16.66667%!important}.\34xl\:-translate-y-2\/6{--transform-translate-y:-33.33333%!important}.\34xl\:-translate-y-3\/6{--transform-translate-y:-50%!important}.\34xl\:-translate-y-4\/6{--transform-translate-y:-66.66667%!important}.\34xl\:-translate-y-5\/6{--transform-translate-y:-83.33333%!important}.\34xl\:-translate-y-1\/12{--transform-translate-y:-8.33333%!important}.\34xl\:-translate-y-2\/12{--transform-translate-y:-16.66667%!important}.\34xl\:-translate-y-3\/12{--transform-translate-y:-25%!important}.\34xl\:-translate-y-4\/12{--transform-translate-y:-33.33333%!important}.\34xl\:-translate-y-5\/12{--transform-translate-y:-41.66667%!important}.\34xl\:-translate-y-6\/12{--transform-translate-y:-50%!important}.\34xl\:-translate-y-7\/12{--transform-translate-y:-58.33333%!important}.\34xl\:-translate-y-8\/12{--transform-translate-y:-66.66667%!important}.\34xl\:-translate-y-9\/12{--transform-translate-y:-75%!important}.\34xl\:-translate-y-10\/12{--transform-translate-y:-83.33333%!important}.\34xl\:-translate-y-11\/12{--transform-translate-y:-91.66667%!important}.\34xl\:-translate-y-full{--transform-translate-y:-100%!important}.\34xl\:hover\:translate-x-0:hover{--transform-translate-x:0!important}.\34xl\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem!important}.\34xl\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem!important}.\34xl\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem!important}.\34xl\:hover\:translate-x-4:hover{--transform-translate-x:1rem!important}.\34xl\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem!important}.\34xl\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem!important}.\34xl\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem!important}.\34xl\:hover\:translate-x-8:hover{--transform-translate-x:2rem!important}.\34xl\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem!important}.\34xl\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem!important}.\34xl\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem!important}.\34xl\:hover\:translate-x-12:hover{--transform-translate-x:3rem!important}.\34xl\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem!important}.\34xl\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem!important}.\34xl\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem!important}.\34xl\:hover\:translate-x-16:hover{--transform-translate-x:4rem!important}.\34xl\:hover\:translate-x-20:hover{--transform-translate-x:5rem!important}.\34xl\:hover\:translate-x-24:hover{--transform-translate-x:6rem!important}.\34xl\:hover\:translate-x-28:hover{--transform-translate-x:7rem!important}.\34xl\:hover\:translate-x-32:hover{--transform-translate-x:8rem!important}.\34xl\:hover\:translate-x-36:hover{--transform-translate-x:9rem!important}.\34xl\:hover\:translate-x-40:hover{--transform-translate-x:10rem!important}.\34xl\:hover\:translate-x-48:hover{--transform-translate-x:12rem!important}.\34xl\:hover\:translate-x-56:hover{--transform-translate-x:14rem!important}.\34xl\:hover\:translate-x-60:hover{--transform-translate-x:15rem!important}.\34xl\:hover\:translate-x-64:hover{--transform-translate-x:16rem!important}.\34xl\:hover\:translate-x-72:hover{--transform-translate-x:18rem!important}.\34xl\:hover\:translate-x-80:hover{--transform-translate-x:20rem!important}.\34xl\:hover\:translate-x-96:hover{--transform-translate-x:24rem!important}.\34xl\:hover\:translate-x-px:hover{--transform-translate-x:1px!important}.\34xl\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem!important}.\34xl\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem!important}.\34xl\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem!important}.\34xl\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem!important}.\34xl\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%!important}.\34xl\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%!important}.\34xl\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%!important}.\34xl\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%!important}.\34xl\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%!important}.\34xl\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%!important}.\34xl\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%!important}.\34xl\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%!important}.\34xl\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%!important}.\34xl\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%!important}.\34xl\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%!important}.\34xl\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%!important}.\34xl\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%!important}.\34xl\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%!important}.\34xl\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%!important}.\34xl\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%!important}.\34xl\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%!important}.\34xl\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%!important}.\34xl\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%!important}.\34xl\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%!important}.\34xl\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%!important}.\34xl\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%!important}.\34xl\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%!important}.\34xl\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%!important}.\34xl\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%!important}.\34xl\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%!important}.\34xl\:hover\:translate-x-full:hover{--transform-translate-x:100%!important}.\34xl\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem!important}.\34xl\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem!important}.\34xl\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem!important}.\34xl\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem!important}.\34xl\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem!important}.\34xl\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem!important}.\34xl\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem!important}.\34xl\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem!important}.\34xl\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem!important}.\34xl\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem!important}.\34xl\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem!important}.\34xl\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem!important}.\34xl\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem!important}.\34xl\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem!important}.\34xl\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem!important}.\34xl\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem!important}.\34xl\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem!important}.\34xl\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem!important}.\34xl\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem!important}.\34xl\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem!important}.\34xl\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem!important}.\34xl\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem!important}.\34xl\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem!important}.\34xl\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem!important}.\34xl\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem!important}.\34xl\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem!important}.\34xl\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem!important}.\34xl\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem!important}.\34xl\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem!important}.\34xl\:hover\:-translate-x-px:hover{--transform-translate-x:-1px!important}.\34xl\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem!important}.\34xl\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem!important}.\34xl\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem!important}.\34xl\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem!important}.\34xl\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%!important}.\34xl\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%!important}.\34xl\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%!important}.\34xl\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%!important}.\34xl\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%!important}.\34xl\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%!important}.\34xl\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%!important}.\34xl\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%!important}.\34xl\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%!important}.\34xl\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%!important}.\34xl\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%!important}.\34xl\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%!important}.\34xl\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%!important}.\34xl\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%!important}.\34xl\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%!important}.\34xl\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%!important}.\34xl\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%!important}.\34xl\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%!important}.\34xl\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%!important}.\34xl\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%!important}.\34xl\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%!important}.\34xl\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%!important}.\34xl\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%!important}.\34xl\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%!important}.\34xl\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%!important}.\34xl\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%!important}.\34xl\:hover\:-translate-x-full:hover{--transform-translate-x:-100%!important}.\34xl\:hover\:translate-y-0:hover{--transform-translate-y:0!important}.\34xl\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem!important}.\34xl\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem!important}.\34xl\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem!important}.\34xl\:hover\:translate-y-4:hover{--transform-translate-y:1rem!important}.\34xl\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem!important}.\34xl\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem!important}.\34xl\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem!important}.\34xl\:hover\:translate-y-8:hover{--transform-translate-y:2rem!important}.\34xl\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem!important}.\34xl\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem!important}.\34xl\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem!important}.\34xl\:hover\:translate-y-12:hover{--transform-translate-y:3rem!important}.\34xl\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem!important}.\34xl\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem!important}.\34xl\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem!important}.\34xl\:hover\:translate-y-16:hover{--transform-translate-y:4rem!important}.\34xl\:hover\:translate-y-20:hover{--transform-translate-y:5rem!important}.\34xl\:hover\:translate-y-24:hover{--transform-translate-y:6rem!important}.\34xl\:hover\:translate-y-28:hover{--transform-translate-y:7rem!important}.\34xl\:hover\:translate-y-32:hover{--transform-translate-y:8rem!important}.\34xl\:hover\:translate-y-36:hover{--transform-translate-y:9rem!important}.\34xl\:hover\:translate-y-40:hover{--transform-translate-y:10rem!important}.\34xl\:hover\:translate-y-48:hover{--transform-translate-y:12rem!important}.\34xl\:hover\:translate-y-56:hover{--transform-translate-y:14rem!important}.\34xl\:hover\:translate-y-60:hover{--transform-translate-y:15rem!important}.\34xl\:hover\:translate-y-64:hover{--transform-translate-y:16rem!important}.\34xl\:hover\:translate-y-72:hover{--transform-translate-y:18rem!important}.\34xl\:hover\:translate-y-80:hover{--transform-translate-y:20rem!important}.\34xl\:hover\:translate-y-96:hover{--transform-translate-y:24rem!important}.\34xl\:hover\:translate-y-px:hover{--transform-translate-y:1px!important}.\34xl\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem!important}.\34xl\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem!important}.\34xl\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem!important}.\34xl\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem!important}.\34xl\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%!important}.\34xl\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%!important}.\34xl\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%!important}.\34xl\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%!important}.\34xl\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%!important}.\34xl\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%!important}.\34xl\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%!important}.\34xl\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%!important}.\34xl\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%!important}.\34xl\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%!important}.\34xl\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%!important}.\34xl\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%!important}.\34xl\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%!important}.\34xl\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%!important}.\34xl\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%!important}.\34xl\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%!important}.\34xl\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%!important}.\34xl\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%!important}.\34xl\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%!important}.\34xl\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%!important}.\34xl\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%!important}.\34xl\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%!important}.\34xl\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%!important}.\34xl\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%!important}.\34xl\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%!important}.\34xl\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%!important}.\34xl\:hover\:translate-y-full:hover{--transform-translate-y:100%!important}.\34xl\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem!important}.\34xl\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem!important}.\34xl\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem!important}.\34xl\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem!important}.\34xl\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem!important}.\34xl\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem!important}.\34xl\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem!important}.\34xl\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem!important}.\34xl\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem!important}.\34xl\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem!important}.\34xl\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem!important}.\34xl\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem!important}.\34xl\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem!important}.\34xl\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem!important}.\34xl\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem!important}.\34xl\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem!important}.\34xl\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem!important}.\34xl\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem!important}.\34xl\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem!important}.\34xl\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem!important}.\34xl\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem!important}.\34xl\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem!important}.\34xl\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem!important}.\34xl\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem!important}.\34xl\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem!important}.\34xl\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem!important}.\34xl\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem!important}.\34xl\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem!important}.\34xl\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem!important}.\34xl\:hover\:-translate-y-px:hover{--transform-translate-y:-1px!important}.\34xl\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem!important}.\34xl\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem!important}.\34xl\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem!important}.\34xl\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem!important}.\34xl\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%!important}.\34xl\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%!important}.\34xl\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%!important}.\34xl\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%!important}.\34xl\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%!important}.\34xl\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%!important}.\34xl\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%!important}.\34xl\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%!important}.\34xl\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%!important}.\34xl\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%!important}.\34xl\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%!important}.\34xl\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%!important}.\34xl\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%!important}.\34xl\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%!important}.\34xl\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%!important}.\34xl\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%!important}.\34xl\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%!important}.\34xl\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%!important}.\34xl\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%!important}.\34xl\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%!important}.\34xl\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%!important}.\34xl\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%!important}.\34xl\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%!important}.\34xl\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%!important}.\34xl\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%!important}.\34xl\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%!important}.\34xl\:hover\:-translate-y-full:hover{--transform-translate-y:-100%!important}.\34xl\:focus\:translate-x-0:focus{--transform-translate-x:0!important}.\34xl\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem!important}.\34xl\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem!important}.\34xl\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem!important}.\34xl\:focus\:translate-x-4:focus{--transform-translate-x:1rem!important}.\34xl\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem!important}.\34xl\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem!important}.\34xl\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem!important}.\34xl\:focus\:translate-x-8:focus{--transform-translate-x:2rem!important}.\34xl\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem!important}.\34xl\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem!important}.\34xl\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem!important}.\34xl\:focus\:translate-x-12:focus{--transform-translate-x:3rem!important}.\34xl\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem!important}.\34xl\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem!important}.\34xl\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem!important}.\34xl\:focus\:translate-x-16:focus{--transform-translate-x:4rem!important}.\34xl\:focus\:translate-x-20:focus{--transform-translate-x:5rem!important}.\34xl\:focus\:translate-x-24:focus{--transform-translate-x:6rem!important}.\34xl\:focus\:translate-x-28:focus{--transform-translate-x:7rem!important}.\34xl\:focus\:translate-x-32:focus{--transform-translate-x:8rem!important}.\34xl\:focus\:translate-x-36:focus{--transform-translate-x:9rem!important}.\34xl\:focus\:translate-x-40:focus{--transform-translate-x:10rem!important}.\34xl\:focus\:translate-x-48:focus{--transform-translate-x:12rem!important}.\34xl\:focus\:translate-x-56:focus{--transform-translate-x:14rem!important}.\34xl\:focus\:translate-x-60:focus{--transform-translate-x:15rem!important}.\34xl\:focus\:translate-x-64:focus{--transform-translate-x:16rem!important}.\34xl\:focus\:translate-x-72:focus{--transform-translate-x:18rem!important}.\34xl\:focus\:translate-x-80:focus{--transform-translate-x:20rem!important}.\34xl\:focus\:translate-x-96:focus{--transform-translate-x:24rem!important}.\34xl\:focus\:translate-x-px:focus{--transform-translate-x:1px!important}.\34xl\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem!important}.\34xl\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem!important}.\34xl\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem!important}.\34xl\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem!important}.\34xl\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%!important}.\34xl\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%!important}.\34xl\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%!important}.\34xl\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%!important}.\34xl\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%!important}.\34xl\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%!important}.\34xl\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%!important}.\34xl\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%!important}.\34xl\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%!important}.\34xl\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%!important}.\34xl\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%!important}.\34xl\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%!important}.\34xl\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%!important}.\34xl\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%!important}.\34xl\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%!important}.\34xl\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%!important}.\34xl\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%!important}.\34xl\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%!important}.\34xl\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%!important}.\34xl\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%!important}.\34xl\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%!important}.\34xl\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%!important}.\34xl\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%!important}.\34xl\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%!important}.\34xl\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%!important}.\34xl\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%!important}.\34xl\:focus\:translate-x-full:focus{--transform-translate-x:100%!important}.\34xl\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem!important}.\34xl\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem!important}.\34xl\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem!important}.\34xl\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem!important}.\34xl\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem!important}.\34xl\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem!important}.\34xl\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem!important}.\34xl\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem!important}.\34xl\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem!important}.\34xl\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem!important}.\34xl\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem!important}.\34xl\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem!important}.\34xl\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem!important}.\34xl\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem!important}.\34xl\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem!important}.\34xl\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem!important}.\34xl\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem!important}.\34xl\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem!important}.\34xl\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem!important}.\34xl\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem!important}.\34xl\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem!important}.\34xl\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem!important}.\34xl\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem!important}.\34xl\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem!important}.\34xl\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem!important}.\34xl\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem!important}.\34xl\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem!important}.\34xl\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem!important}.\34xl\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem!important}.\34xl\:focus\:-translate-x-px:focus{--transform-translate-x:-1px!important}.\34xl\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem!important}.\34xl\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem!important}.\34xl\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem!important}.\34xl\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem!important}.\34xl\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%!important}.\34xl\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%!important}.\34xl\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%!important}.\34xl\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%!important}.\34xl\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%!important}.\34xl\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%!important}.\34xl\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%!important}.\34xl\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%!important}.\34xl\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%!important}.\34xl\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%!important}.\34xl\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%!important}.\34xl\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%!important}.\34xl\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%!important}.\34xl\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%!important}.\34xl\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%!important}.\34xl\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%!important}.\34xl\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%!important}.\34xl\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%!important}.\34xl\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%!important}.\34xl\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%!important}.\34xl\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%!important}.\34xl\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%!important}.\34xl\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%!important}.\34xl\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%!important}.\34xl\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%!important}.\34xl\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%!important}.\34xl\:focus\:-translate-x-full:focus{--transform-translate-x:-100%!important}.\34xl\:focus\:translate-y-0:focus{--transform-translate-y:0!important}.\34xl\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem!important}.\34xl\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem!important}.\34xl\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem!important}.\34xl\:focus\:translate-y-4:focus{--transform-translate-y:1rem!important}.\34xl\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem!important}.\34xl\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem!important}.\34xl\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem!important}.\34xl\:focus\:translate-y-8:focus{--transform-translate-y:2rem!important}.\34xl\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem!important}.\34xl\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem!important}.\34xl\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem!important}.\34xl\:focus\:translate-y-12:focus{--transform-translate-y:3rem!important}.\34xl\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem!important}.\34xl\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem!important}.\34xl\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem!important}.\34xl\:focus\:translate-y-16:focus{--transform-translate-y:4rem!important}.\34xl\:focus\:translate-y-20:focus{--transform-translate-y:5rem!important}.\34xl\:focus\:translate-y-24:focus{--transform-translate-y:6rem!important}.\34xl\:focus\:translate-y-28:focus{--transform-translate-y:7rem!important}.\34xl\:focus\:translate-y-32:focus{--transform-translate-y:8rem!important}.\34xl\:focus\:translate-y-36:focus{--transform-translate-y:9rem!important}.\34xl\:focus\:translate-y-40:focus{--transform-translate-y:10rem!important}.\34xl\:focus\:translate-y-48:focus{--transform-translate-y:12rem!important}.\34xl\:focus\:translate-y-56:focus{--transform-translate-y:14rem!important}.\34xl\:focus\:translate-y-60:focus{--transform-translate-y:15rem!important}.\34xl\:focus\:translate-y-64:focus{--transform-translate-y:16rem!important}.\34xl\:focus\:translate-y-72:focus{--transform-translate-y:18rem!important}.\34xl\:focus\:translate-y-80:focus{--transform-translate-y:20rem!important}.\34xl\:focus\:translate-y-96:focus{--transform-translate-y:24rem!important}.\34xl\:focus\:translate-y-px:focus{--transform-translate-y:1px!important}.\34xl\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem!important}.\34xl\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem!important}.\34xl\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem!important}.\34xl\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem!important}.\34xl\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%!important}.\34xl\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%!important}.\34xl\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%!important}.\34xl\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%!important}.\34xl\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%!important}.\34xl\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%!important}.\34xl\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%!important}.\34xl\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%!important}.\34xl\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%!important}.\34xl\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%!important}.\34xl\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%!important}.\34xl\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%!important}.\34xl\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%!important}.\34xl\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%!important}.\34xl\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%!important}.\34xl\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%!important}.\34xl\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%!important}.\34xl\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%!important}.\34xl\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%!important}.\34xl\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%!important}.\34xl\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%!important}.\34xl\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%!important}.\34xl\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%!important}.\34xl\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%!important}.\34xl\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%!important}.\34xl\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%!important}.\34xl\:focus\:translate-y-full:focus{--transform-translate-y:100%!important}.\34xl\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem!important}.\34xl\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem!important}.\34xl\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem!important}.\34xl\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem!important}.\34xl\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem!important}.\34xl\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem!important}.\34xl\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem!important}.\34xl\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem!important}.\34xl\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem!important}.\34xl\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem!important}.\34xl\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem!important}.\34xl\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem!important}.\34xl\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem!important}.\34xl\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem!important}.\34xl\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem!important}.\34xl\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem!important}.\34xl\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem!important}.\34xl\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem!important}.\34xl\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem!important}.\34xl\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem!important}.\34xl\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem!important}.\34xl\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem!important}.\34xl\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem!important}.\34xl\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem!important}.\34xl\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem!important}.\34xl\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem!important}.\34xl\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem!important}.\34xl\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem!important}.\34xl\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem!important}.\34xl\:focus\:-translate-y-px:focus{--transform-translate-y:-1px!important}.\34xl\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem!important}.\34xl\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem!important}.\34xl\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem!important}.\34xl\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem!important}.\34xl\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%!important}.\34xl\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%!important}.\34xl\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%!important}.\34xl\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%!important}.\34xl\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%!important}.\34xl\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%!important}.\34xl\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%!important}.\34xl\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%!important}.\34xl\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%!important}.\34xl\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%!important}.\34xl\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%!important}.\34xl\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%!important}.\34xl\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%!important}.\34xl\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%!important}.\34xl\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%!important}.\34xl\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%!important}.\34xl\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%!important}.\34xl\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%!important}.\34xl\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%!important}.\34xl\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%!important}.\34xl\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%!important}.\34xl\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%!important}.\34xl\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%!important}.\34xl\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%!important}.\34xl\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%!important}.\34xl\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%!important}.\34xl\:focus\:-translate-y-full:focus{--transform-translate-y:-100%!important}.\34xl\:skew-x-0{--transform-skew-x:0!important}.\34xl\:skew-x-1{--transform-skew-x:1deg!important}.\34xl\:skew-x-2{--transform-skew-x:2deg!important}.\34xl\:skew-x-3{--transform-skew-x:3deg!important}.\34xl\:skew-x-6{--transform-skew-x:6deg!important}.\34xl\:skew-x-12{--transform-skew-x:12deg!important}.\34xl\:-skew-x-12{--transform-skew-x:-12deg!important}.\34xl\:-skew-x-6{--transform-skew-x:-6deg!important}.\34xl\:-skew-x-3{--transform-skew-x:-3deg!important}.\34xl\:-skew-x-2{--transform-skew-x:-2deg!important}.\34xl\:-skew-x-1{--transform-skew-x:-1deg!important}.\34xl\:skew-y-0{--transform-skew-y:0!important}.\34xl\:skew-y-1{--transform-skew-y:1deg!important}.\34xl\:skew-y-2{--transform-skew-y:2deg!important}.\34xl\:skew-y-3{--transform-skew-y:3deg!important}.\34xl\:skew-y-6{--transform-skew-y:6deg!important}.\34xl\:skew-y-12{--transform-skew-y:12deg!important}.\34xl\:-skew-y-12{--transform-skew-y:-12deg!important}.\34xl\:-skew-y-6{--transform-skew-y:-6deg!important}.\34xl\:-skew-y-3{--transform-skew-y:-3deg!important}.\34xl\:-skew-y-2{--transform-skew-y:-2deg!important}.\34xl\:-skew-y-1{--transform-skew-y:-1deg!important}.\34xl\:hover\:skew-x-0:hover{--transform-skew-x:0!important}.\34xl\:hover\:skew-x-1:hover{--transform-skew-x:1deg!important}.\34xl\:hover\:skew-x-2:hover{--transform-skew-x:2deg!important}.\34xl\:hover\:skew-x-3:hover{--transform-skew-x:3deg!important}.\34xl\:hover\:skew-x-6:hover{--transform-skew-x:6deg!important}.\34xl\:hover\:skew-x-12:hover{--transform-skew-x:12deg!important}.\34xl\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg!important}.\34xl\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg!important}.\34xl\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg!important}.\34xl\:hover\:-skew-x-2:hover{--transform-skew-x:-2deg!important}.\34xl\:hover\:-skew-x-1:hover{--transform-skew-x:-1deg!important}.\34xl\:hover\:skew-y-0:hover{--transform-skew-y:0!important}.\34xl\:hover\:skew-y-1:hover{--transform-skew-y:1deg!important}.\34xl\:hover\:skew-y-2:hover{--transform-skew-y:2deg!important}.\34xl\:hover\:skew-y-3:hover{--transform-skew-y:3deg!important}.\34xl\:hover\:skew-y-6:hover{--transform-skew-y:6deg!important}.\34xl\:hover\:skew-y-12:hover{--transform-skew-y:12deg!important}.\34xl\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg!important}.\34xl\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg!important}.\34xl\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg!important}.\34xl\:hover\:-skew-y-2:hover{--transform-skew-y:-2deg!important}.\34xl\:hover\:-skew-y-1:hover{--transform-skew-y:-1deg!important}.\34xl\:focus\:skew-x-0:focus{--transform-skew-x:0!important}.\34xl\:focus\:skew-x-1:focus{--transform-skew-x:1deg!important}.\34xl\:focus\:skew-x-2:focus{--transform-skew-x:2deg!important}.\34xl\:focus\:skew-x-3:focus{--transform-skew-x:3deg!important}.\34xl\:focus\:skew-x-6:focus{--transform-skew-x:6deg!important}.\34xl\:focus\:skew-x-12:focus{--transform-skew-x:12deg!important}.\34xl\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg!important}.\34xl\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg!important}.\34xl\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg!important}.\34xl\:focus\:-skew-x-2:focus{--transform-skew-x:-2deg!important}.\34xl\:focus\:-skew-x-1:focus{--transform-skew-x:-1deg!important}.\34xl\:focus\:skew-y-0:focus{--transform-skew-y:0!important}.\34xl\:focus\:skew-y-1:focus{--transform-skew-y:1deg!important}.\34xl\:focus\:skew-y-2:focus{--transform-skew-y:2deg!important}.\34xl\:focus\:skew-y-3:focus{--transform-skew-y:3deg!important}.\34xl\:focus\:skew-y-6:focus{--transform-skew-y:6deg!important}.\34xl\:focus\:skew-y-12:focus{--transform-skew-y:12deg!important}.\34xl\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg!important}.\34xl\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg!important}.\34xl\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg!important}.\34xl\:focus\:-skew-y-2:focus{--transform-skew-y:-2deg!important}.\34xl\:focus\:-skew-y-1:focus{--transform-skew-y:-1deg!important}.\34xl\:transition-none{transition-property:none!important}.\34xl\:transition-all{transition-property:all!important}.\34xl\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important}.\34xl\:transition-colors{transition-property:background-color,border-color,color,fill,stroke!important}.\34xl\:transition-opacity{transition-property:opacity!important}.\34xl\:transition-shadow{transition-property:box-shadow!important}.\34xl\:transition-transform{transition-property:transform!important}.\34xl\:ease-linear{transition-timing-function:linear!important}.\34xl\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.\34xl\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.\34xl\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.\34xl\:duration-75{transition-duration:75ms!important}.\34xl\:duration-100{transition-duration:.1s!important}.\34xl\:duration-150{transition-duration:.15s!important}.\34xl\:duration-200{transition-duration:.2s!important}.\34xl\:duration-300{transition-duration:.3s!important}.\34xl\:duration-500{transition-duration:.5s!important}.\34xl\:duration-700{transition-duration:.7s!important}.\34xl\:duration-1000{transition-duration:1s!important}.\34xl\:duration-2000{transition-duration:2s!important}.\34xl\:delay-75{transition-delay:75ms!important}.\34xl\:delay-100{transition-delay:.1s!important}.\34xl\:delay-150{transition-delay:.15s!important}.\34xl\:delay-200{transition-delay:.2s!important}.\34xl\:delay-300{transition-delay:.3s!important}.\34xl\:delay-500{transition-delay:.5s!important}.\34xl\:delay-700{transition-delay:.7s!important}.\34xl\:delay-1000{transition-delay:1s!important}.\34xl\:animate-none{animation:none!important}.\34xl\:animate-spin{animation:spin 1s linear infinite!important}.\34xl\:animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite!important}.\34xl\:animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite!important}.\34xl\:animate-bounce{animation:bounce 1s infinite!important}}
admin/assets/dist/css/editor-block.css000064400000001666151213255420013772 0ustar00.components-placeholder.ms-loader{position:absolute;width:100%;height:100%;z-index:3;top:0;left:0;background:rgba(243,243,244,.83);min-height:50px}.wp-block-metaslider-slider iframe{transition:height .6s;width:100%}.ms-preview{position:relative}.ms-preview__trigger{position:absolute;top:0;right:0;bottom:0;left:0}.components-base-control.ms-loading .is-active.spinner{margin-top:-2px;float:none;margin-left:0}.ms-plugin-link{display:block;padding:15px;border-top:1px solid #e2e4e7;border-bottom:1px solid #e2e4e7;margin-left:-16px;margin-right:-16px;margin-top:17px}.ms-edit-current-slideshow{position:relative;float:right;margin-top:-11px;font-size:.95em}.ms-edit-current-slideshow::before{content:"\f474";font-family:dashicons;position:absolute;left:-19px;transform:rotate(90deg);color:#ccc;font-size:1.2em}.wp-block-metaslider-slider.placeholder-loading+.wp-block-metaslider-slider{display:none}.wp-block-metaslider-slider{transition:height .3s}
admin/lib/temporary.php000064400000000274151213255420011140 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.'); 
}

// Use this file to add any temporary code to a release. 
// Make sure to uncomment where it's loaded from in ml-slider.php
admin/lib/Updraft_Notices.php000064400000024230151213255420012205 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access allowed');
}

/**
 * If we ever change the API of the Updraft_Notices class, then we'll need to rename and version it, e.g. Updraft_Notices_1_0, because otherwise a plugin may find that it's loaded an older instance than it wanted from another plugin.
 */
abstract class Updraft_Notices_1_0
{
    protected $notices_content;

    /**
     * These variables are just short-hands to be used in advert content.
     *
     * @var array
     */
    protected $dashboard_top = array('top');

    protected $dashboard_top_or_report = array('top', 'report', 'report-plain');

    protected $dashboard_bottom_or_report = array('bottom', 'report', 'report-plain');

    protected $anywhere = array('top', 'bottom', 'report', 'report-plain');

    protected $autobackup = array('autobackup');

    protected $autobackup_bottom_or_report = array('autobackup', 'bottom', 'report', 'report-plain');

    /**
     * This method returns any parent notices to the child caller
     *
     * @return Array returns an array of notices
     */
    protected function populate_notices_content()
    {
        // Global adverts that appear in all products will be returned to the child to display.
        return array();
    }

    /**
     * This method is called to setup the notices
     */
    abstract protected function notices_init();

    /**
     * This method will check if the specified plugin is installed and if it is will return false otherwise returns true and the notice can be displayed
     *
     * @param  String  $product             the plugin name to check
     * @param  boolean $also_require_active a bool value to indicate if the plugin has to be active or not
     * @return boolean                      a bool value to indicate if the notice can be displayed or not
     */
    protected function is_plugin_installed($product = null, $also_require_active = false)
    {
        if ($also_require_active) {
            return class_exists($product);
        }
        if (!function_exists('get_plugins')) {
            include_once(ABSPATH . 'wp-admin/includes/plugin.php');
        }
        $plugins = get_plugins();
        // Don't cache plugins this early
        wp_cache_delete('plugins', 'plugins');
        $product_file = false;
        foreach ($plugins as $key => $value) {
            if ($value['TextDomain'] == $product) {
                // We have found the plugin so return false so that we do not display this advert.
                return false;
            }
        }
        return true;
    }

    /**
     * This method will work out if the user is using a non english language and if so returns true so that they can see the translation advert.
     *
     * @param  String $plugin_base_dir the plugin base directory
     * @param  String $product_name    the name of the plugin
     * @return Boolean                 returns true if the user is using a non english language and could translate otherwise false
     */
    protected function translation_needed($plugin_base_dir, $product_name)
    {
        $wplang = get_locale();
        if (strlen($wplang) < 1 || 'en_US' == $wplang || 'en_GB' == $wplang) {
            return false;
        }
        if (defined('WP_LANG_DIR') && is_file(WP_LANG_DIR . '/plugins/' . $product_name . '-' . $wplang . '.mo')) {
            return false;
        }
        if (is_file($plugin_base_dir . '/languages/' . $product_name . '-' . $wplang . '.mo')) {
            return false;
        }
        return true;
    }

    /**
     * This method is used to generate the correct URL output for the start of the URL
     *
     * @param  Boolean $html_allowed a boolean value to indicate if HTML can be used or not
     * @param  String  $url          the url to use
     * @param  Boolean $https        a boolean value to indicate if https should be used or not
     * @param  String  $website_home a string to be displayed
     * @return String                returns a string of the completed url
     */
    protected function url_start($html_allowed = false, $url = '', $https = false, $website_home = null)
    {
        $proto = ($https) ? 'https' : 'http';
        if (strpos($url, $website_home) !== false) {
            return (($html_allowed) ? "<a href=" . apply_filters(str_replace('.', '_', $website_home) . '_link', $proto . '://' . $url) . ">" : "");
        } else {
            return (($html_allowed) ? '<a href="' . $proto . '://' . $url . '">' : "");
        }
    }
    /**
     * This method is used to generate the correct URL output for the end of the URL
     *
     * @param  Boolean $html_allowed a boolean value to indicate if HTML can be used or not
     * @param  String  $url          the url to use
     * @param  Boolean $https        a boolean value to indicate if https should be used or not
     * @return String                returns a string of the completed url
     */
    protected function url_end($html_allowed, $url, $https = false)
    {
        $proto = (($https) ? 'https' : 'http');
        return (($html_allowed) ? '</a>' : " (" . $proto . "://" . $url . ")");
    }

    /**
     * This method prepares the notice for display
     *
     * @param  Boolean|String $notice                 the notice to display or false if we want a random one
     * @param  string         $position               the position to display the notice in
     * @param  boolean        $return_instead_of_echo a bool to indicate if the notice should be returned or printed
     * @return String                                 a notice to display
     */
    public function do_notice($notice = false, $position = 'top', $return_instead_of_echo = false)
    {
        $this->notices_init();

        if (false === $notice) {
            $notice = apply_filters('updraft_notices_force_id', false, $this);
        }

        $notice_content = $this->get_notice_data($notice, $position);

        if (false != $notice_content) {
            return $this->render_specified_notice($notice_content, $return_instead_of_echo, $position);
        }
    }

    /**
     * This method will return a notice ready for display.
     *
     * @param  boolean $notice   Sends True or False if there are notices to show.
     * @param  string  $position Which screen position the notice is.
     * @return array             Returns Notice data.
     */
    protected function get_notice_data($notice = false, $position = 'top')
    {

        // If a specific notice has been passed to this method then return that notice.
        if ($notice) {
            if (!isset($this->notices_content[$notice])) {
                return false;
            }

            // Does the notice support the position specified?
            if (isset($this->notices_content[$notice]['supported_positions']) && !in_array($position, $this->notices_content[$notice]['supported_positions'])) {
                return false;
            }
            // First check if the advert passed can be displayed and hasn't been dismissed, we do this by checking what dismissed value we should be checking.
            $dismiss_time = $this->notices_content[$notice]['dismiss_time'];

            $dismiss = $this->check_notice_dismissed($dismiss_time);

            if ($dismiss) {
                return false;
            }

            return $this->notices_content[$notice];
        }

        // Create an array to add non-seasonal adverts to so that if a seasonal advert can't be returned we can choose a random advert from this array.
        $available_notices = array();

        // If Advert wasn't passed then next we should check to see if a seasonal advert can be returned.
        foreach ($this->notices_content as $notice_id => $notice_data) {
            // Does the notice support the position specified?
            if (isset($this->notices_content[$notice_id]['supported_positions']) && !in_array($position, $this->notices_content[$notice_id]['supported_positions'])) {
                continue;
            }
            // If the advert has a validity function, then require the advert to be valid.
            if (!empty($notice_data['validity_function']) && !call_user_func(array($this, $notice_data['validity_function']))) {
                continue;
            }


            if (isset($notice_data['valid_from']) && isset($notice_data['valid_to'])) {
                if ($this->skip_seasonal_notices($notice_data)) {
                    return $notice_data;
                }
            } else {
                $dismiss_time = isset($this->notices_content[$notice_id]['dismiss_time'])
                    ? $this->notices_content[$notice_id]['dismiss_time'] : false;
                $dismiss = $this->check_notice_dismissed($dismiss_time);

                if (!$dismiss) {
                    $available_notices[$notice_id] = $notice_data;
                }
            }
        }

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

        // If a seasonal advert can't be returned then we will return a random advert.
        // Using shuffle here as something like rand which produces a random number and uses that as the array index fails, this is because in future an advert may not be numbered and could have a string as its key which will then cause errors.
        shuffle($available_notices);
        return $available_notices[0];
    }

    /**
     * This method should be overwritten by the child class if they have seasonal notices
     *
     * @param  String $notice_data the notice to check if it should be skipped or not
     * @return Boolean             returns false if the notice can be displayed
     */
    protected function skip_seasonal_notices($notice_data)
    {
        return false;
    }

    /**
     * This method returns the affilate ID
     *
     * @return Integer an affilate id to return
     */
    public function get_affiliate_id()
    {
        return $this->self_affiliate_id;
    }

    /**
     * This method checks to see if the notices dismiss_time parameter has been dismissed
     *
     * @param  String $dismiss_time a string containing the dimiss time ID
     * @return Boolaen              returns true if the notice has been dismissed and shouldn't be shown otherwise display it
     */
    abstract protected function check_notice_dismissed($dismiss_time);
}
admin/lib/helpers.php000064400000014312151213255420010556 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

/**
 * Will be truthy if the plugin is installed
 *
 * @param  string $name name of the plugin 'ml-slider'
 * @return bool|string - will return path, ex. 'ml-slider/ml-slider.php'
 */
function metaslider_plugin_is_installed($name = 'ml-slider')
{
    if (!function_exists('get_plugins')) {
        include_once(ABSPATH . 'wp-admin/includes/plugin.php');
    }
    $plugins = get_plugins();
    // Don't cache plugins this early
    wp_cache_delete('plugins', 'plugins');
    foreach ($plugins as $plugin => $data) {
        if ($data['TextDomain'] == $name) {
            return $plugin;
        }
    }
    return false;
}
/**
 * checks if metaslider pro is installed
 *
 * @return bool
 */
function metaslider_pro_is_installed()
{
    return (bool) metaslider_plugin_is_installed('ml-slider-pro');
}

/**
 * Will be true if the plugin is active
 *
 * @return bool
 */
function metaslider_pro_is_active()
{
    return is_plugin_active(metaslider_plugin_is_installed('ml-slider-pro'));
}

/**
 * Returns true if the user does not have the pro version installed
 *
 * @return bool
 */
function metaslider_user_sees_upgrade_page()
{
    return (bool) apply_filters('metaslider_show_upgrade_page', !metaslider_pro_is_installed());
}

/**
 * Returns true if the user does not have the pro version installed
 *
 * @return bool
 */
function metaslider_user_has_at_least_one_slideshow()
{
    $posts = get_posts(array('posts_per_page' => 1, 'post_type' => 'ml-slider'));
    return (bool) is_array($posts) && count($posts);
}

/**
 * Returns true if the user does not have the pro version installed
 *
 * @return bool
 */
function metaslider_user_sees_call_to_action()
{
    return (bool) apply_filters('metaslider_show_upgrade_page', !metaslider_pro_is_installed());
}

/**
 * Returns true if the user is ready to see notices. Exceptions include
 * when they have no slideshows (first start) and while on the initial tour.
 *
 * @return boolean
 */
function metaslider_user_is_ready_for_notices()
{
    $args = array(
        'post_type' => 'ml-slider',
        'post_status' => 'publish',
        'suppress_filters' => 1, // wpml, ignore language filter
        'order' => 'ASC',
        'posts_per_page' => -1
    );

    // If no slideshows, don't show a notice
    if (!count(get_posts($args))) {
        return false;
    }

    // If they have slideshows but have yet to finish the tour or cancel it,
    // hold off on showing notices
    return (bool) get_option('metaslider_tour_cancelled_on');
}

/**
 * Returns true if the user is on the specified admin page
 *
 * @param  string $page_name Admin page name
 * @return boolean
 */
function metaslider_user_is_on_admin_page($page_name = 'admin.php')
{
    global $pagenow;
    return ($pagenow == $page_name);
}

/**
 * Returns the upgrade link
 *
 * @return string
 */
function metaslider_get_upgrade_link()
{
    return esc_url(apply_filters('metaslider_hoplink', add_query_arg(array(
        'utm_source' => 'lite',
        'utm_medium' => 'banner',
        'utm_campaign' => 'pro',
    ), 'https://www.metaslider.com/upgrade')));
}

/**
 * Returns the privacy policy link
 *
 * @return string
 */
function metaslider_get_privacy_link()
{
    return esc_url('https://www.metaslider.com/privacy-policy/');
}

/**
 * Returns an array of the trashed slides
 *
 * @param int $slider_id Slider ID
 * @return array
 */
function metaslider_has_trashed_slides($slider_id)
{
    return get_posts(array(
        'force_no_custom_order' => true,
        'orderby' => 'menu_order',
        'order' => 'ASC',
        'post_type' => array('attachment', 'ml-slide'),
        'post_status' => array('trash'),
        'lang' => '',
        'posts_per_page' => -1,
        'tax_query' => array(
            array(
                'taxonomy' => 'ml-slider',
                'field' => 'slug',
                'terms' => $slider_id
            )
        )
    ));
}

/**
 * Returns whether we are looking at trashed slides
 *
 * @param int $slider_id - the id
 * @return bool
 */
function metaslider_viewing_trashed_slides($slider_id)
{

    // If there are no trashed slides, no need to see this page
    if (!count(metaslider_has_trashed_slides($slider_id))) {
        return false;
    }

    // Checks to see if the parameter is set and if it's boolean
    return isset($_REQUEST['show_trashed']) && filter_input(INPUT_GET, 'show_trashed', FILTER_VALIDATE_BOOLEAN);
}

/**
 * Returns the current pro version registered by WP
 *
 * @return string
 */
function metaslider_pro_version()
{
    $file = trailingslashit(WP_PLUGIN_DIR) . metaslider_plugin_is_installed('ml-slider-pro');
    $data = get_file_data($file, array('Version' => 'Version'));
    return $data['Version'];
}

/**
 * Returns the current version registered by WP
 *
 * @return string
 */
function metaslider_version()
{
    $file = trailingslashit(WP_PLUGIN_DIR) . metaslider_plugin_is_installed('ml-slider');
    $data = get_file_data($file, array('Version' => 'Version'));
    return $data['Version'];
}

/**
 * Returns whether we are looking at a trashed slide
 *
 * @param object $slide a slide object
 * @return bool
 */
function metaslider_this_is_trash($slide)
{
    return (is_object($slide) && "trash" === $slide->post_status);
}

/**
 * This will customize a URL with a correct Affiliate link
 *
 * This function can be updated to suit any URL as long as the URL is passed
 *
 * @param string $url   URL to be checked to see if it is an metaslider match.
 * @param string $text  Anchor Text
 * @param string $html  Any specific HTML to be added.
 * @param string $class Specify a class for the anchor tag.
 *
 * @return string Optimized affiliate link
 */
function metaslider_optimize_url($url, $text, $html = null, $class = '')
{

    // Check if the URL is metaslider.
    if (false !== strpos($url, 'metaslider.com')) {
        // Set URL with Affiliate ID.
        $url = metaslider_get_upgrade_link();
    }

    // Return URL - check if there is HTML such as Images.
    if (!empty($html)) {
        return sprintf('<a class="%1$s" href="%2$s">%3$s</a>', esc_attr($class), esc_url($url), $html);
    } else {
        return sprintf('<a class="ml-upgrade-button %1$s" href="%2$s">%3$s</a>', esc_attr($class), esc_url($url), htmlspecialchars($text));
    }
}
languages/ml-slider-nl_NL.po000064400000162407151213255420011754 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:58-0600\n"
"Last-Translator: Nick te Morsche <bl44tkip@gmail.com>\n"
"Language-Team: \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 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr ""

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr ""

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Onderschrift"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Nieuw venster"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Let op! Deze instellingen zijn alleen bedoelt voor voor ervaren "
"ontwikkelaars. Bij twijfel aangevinkt laten"

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Titel"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr ""

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Slide toevoegen"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Opslaan"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Instellingen"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Text Titel Afbeelding"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Alternatieve Afbeelding text"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Titel:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Slider Selecteren:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "geen slideshows gevonden"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Afbeelding Slide"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Algemeen"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr ""

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Afbeelding"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Breedte"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Slideshow breedte"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr ""

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Hoogte"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Slideshow hoogte"

#: ml-slider.php:1688
msgid "Effect"
msgstr ""

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Slide overgangs effect"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Willekeurig"

#: ml-slider.php:1698
msgid "Swirl"
msgstr ""

#: ml-slider.php:1702
msgid "Rain"
msgstr ""

#: ml-slider.php:1706
msgid "Straight"
msgstr "Recht"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr ""

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Vervaag"

#: ml-slider.php:1734
msgid "Fold"
msgstr "vouwen"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr ""

#: ml-slider.php:1750
msgid "Box Rain"
msgstr ""

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr ""

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr ""

#: ml-slider.php:1766
msgid "Slide"
msgstr ""

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Pijlen"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Vorige/Volgende pijlen weergeven"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Navigatie"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Slide Navigatiebalk weergeven"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Verborgen"

#: ml-slider.php:1795
msgid "Dots"
msgstr ""

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Geavanceerde Instellingen"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr ""

#: ml-slider.php:1888
msgid "Center align"
msgstr "Uitlijnen midden"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Slideshow in midden uitlijnen"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Automatisch Afspelen"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Overgang tussen slides automatisch"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Slim uitsnijden garandeerd dat de slides optimaal worden uitgesneden, zodat "
"deze in het juiste formaat worden weergegeven"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Carousel modus"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr ""

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr ""

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Stel de volgorde van de slides in op Willekeurig"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Pause bij zweven"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Pauseer de slideshow zodra de cursor over de slider hangt en hervat de "
"slideshow wanneer deze wordt verwijdert "

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Omkeren"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Keer de animatie richting om"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Slide Vertraging"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Weergave tijd per slide, in milliseconden"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Animatie snelheid"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Animatie snelheid instellen, in milliseconden"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr ""

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr ""

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Slide Richting"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Selecteer slide richting"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Horizontaal"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Verticaal"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Versoepelen"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Vorige text"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr ""
"Stel hier uw text in om naar de vorige afbeelding te gaan, bijvoorbeeld: "
"Vorige Afbeelding"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Volgende text"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr ""
"Stel hier uw text in om naar de volgende afbeelding te gaan, bijvoorbeeld: "
"Volgende Afbeelding"

#: ml-slider.php:2202
msgid "Square delay"
msgstr ""

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr ""

#: ml-slider.php:2218
msgid "Opacity"
msgstr "(on)Doorzichtigheid"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Onderschrift snelheid"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Stel hier de snelheid in waarmee het onderschrift vervaagt"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Ontwikkelaar opties"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr ""

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""

#: ml-slider.php:2268
msgid "Print CSS"
msgstr ""

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Vink deze uit wanneer je een eigen CSS wilt invoegen"

#: ml-slider.php:2281
msgid "Print JS"
msgstr ""

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Vink deze uit wanneer je een eigen javascript wilt invoegen"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr ""

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr ""

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Selecteer een slideshow om in uw bericht te plaatsen"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Slideshow kiezen"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Documentatie"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Zeker weten?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-zh_TW.po000064400000161610151213255420012000 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider-zh_CN\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:59-0600\n"
"Last-Translator: 断青丝 <181138991@qq.com>\n"
"Language-Team: 断青丝 <181138991@qq.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 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr ""

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "標題"

#: admin/Pages.php:75
msgid "New Window"
msgstr "新窗口"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr "注意:此功能僅適用於高級開發。"

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "標題"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "簡碼"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "添加幻燈片"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "保存"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "設置"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr ""

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr ""

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "標題:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "選擇幻燈片:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "沒有幻燈片"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
#, fuzzy
msgid "Image Slide"
msgstr "幻燈片"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr ""

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr ""

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "圖像"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "寬度"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
#, fuzzy
msgid "Slideshow width"
msgstr "幻燈片標題"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr ""

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "高度"

#: ml-slider.php:1681
#, fuzzy
msgid "Slideshow height"
msgstr "幻燈片標題"

#: ml-slider.php:1688
msgid "Effect"
msgstr "效果"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "幻燈片過渡效果"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "隨機"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "漩渦"

#: ml-slider.php:1702
msgid "Rain"
msgstr "雨點"

#: ml-slider.php:1706
msgid "Straight"
msgstr "直接"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "切片"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "褪色"

#: ml-slider.php:1734
msgid "Fold"
msgstr "折疊"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "隨機"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "箱式"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "箱式反向"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr ""

#: ml-slider.php:1766
msgid "Slide"
msgstr "滑動"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "箭頭"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr ""

#: ml-slider.php:1786
msgid "Navigation"
msgstr "導航"

#: ml-slider.php:1789
#, fuzzy
msgid "Show the slide navigation bullets"
msgstr "顯示幻燈片導航"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "隱藏"

#: ml-slider.php:1795
msgid "Dots"
msgstr "點"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "高級設置"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
#, fuzzy
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "在頁面加載啟動幻燈片"

#: ml-slider.php:1888
msgid "Center align"
msgstr "居中對齊"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "居中對齊幻燈片"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "自動播放"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr ""

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"智能裁剪,將您的幻燈片圖片裁剪到一個相同比例,使其顯示結果在幻燈片中大小保存"
"一致。"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "傳送帶模式"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr ""

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr ""

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "幻燈片順序隨機"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "懸停時間"

#: ml-slider.php:2014
#, fuzzy
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr "當鼠標懸停在圖片上時暫停幻燈片"

#: ml-slider.php:2022
msgid "Reverse"
msgstr "逆轉"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "反向動畫"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "動畫延遲"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "幻燈片的播放間隔,單位毫秒"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "動畫速度"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "設置動畫的速度,單位毫秒"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "切片數"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "方格數"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "滑動方向"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "選擇的滑動方向"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "橫向"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "垂直"

#: ml-slider.php:2159
msgid "Easing"
msgstr "緩和"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "上一張圖片"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "選擇圖片為“上一張”"

#: ml-slider.php:2184
msgid "Next text"
msgstr "下一張圖片"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "選擇圖片為'下一張'"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "延遲"

#: ml-slider.php:2204
#, fuzzy
msgid "Delay between squares in ms"
msgstr "以毫秒為單位"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "透明度"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "速度"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "設置速度的標題淡入"

#: ml-slider.php:2250
#, fuzzy
msgid "Developer options"
msgstr "開發人員選項"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS 類"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr "指定的任何自定義CSS類"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "顯示CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "取消選中,則使用主題自身的CSS"

#: ml-slider.php:2281
#, fuzzy
msgid "Print JS"
msgstr "顯示JavaScript"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "取消選中,則使用主題自身的Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr ""

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr ""

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr ""

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
#, fuzzy
msgid "Choose slideshow"
msgstr "沒有幻燈片"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "文檔"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "你確定嗎"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-ro_RO-metaslider-admin-script.json000064400000067735151213255430017055 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ml"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Titlu"],"New Window":["Fereastră Nouă"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Atenţie : Această opţiune este destinată doar dezvoltatorilor. Dacă nu sunteţi sigur, lăsaţi bifat ."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Titlu"],"Created":[""],"Shortcode":["Cod scurt"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Adăugare Diapozitiv"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Salvaţi"],"Settings":["Setări"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Titlu Imagine"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Text Alt Imagine"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Titlu"],"Select Slider:":["Selectaţi Diapozitivul"],"No slideshows found":["Nici un diapozitiv găsit"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Imagine Diapozitiv"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["General"],"SEO":["SEO"],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Imagine"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Lăţime"],"Slideshow width":["Lăţime Diapozitiv"],"px":["px"],"Height":["Înălţime"],"Slideshow height":["Înăţime Diapozitiv"],"Effect":["Efect"],"Slide transition effect":["Efect tranziţie diapozitiv"],"Random":["Aleatoriu"],"Swirl":["Învârtire"],"Rain":["Curgător"],"Straight":["Liniar"],"Slice Down":[""],"Slice Up":["Decupaţi Sus"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Apunere"],"Fold":["Pliaţi"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Caseta Aleatoriu"],"Box Rain":["Caseta Curgător"],"Box Rain Reverse":["Caseta Curgător Invers"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Caseta Curgător Crescător Invers"],"Slide":["Glisaţi"],"Arrows":["Săgeţi"],"Show the previous/next arrows":["Afişaţi săgeţile Înapoi/Înainte"],"Navigation":["Navigare"],"Show the slide navigation bullets":["Afişaţi bulinele de navigare ale diapozitivului"],"Hidden":["Ascuns"],"Dots":["Puncte (buline)"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Setări Avansate"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Extindeţi diapozitivul pentru încadrare optimă"],"Center align":["Aliniere centrală"],"Center align the slideshow":["Alinierea centrală a diapozitivului"],"Auto play":["Redare automată"],"Transition between slides automatically":["Tranziţie automată între diapozitive"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Decupare Inteligentă se asigură că diapozitivele sunt decupate la un raport din care rezultă un diapozitiv la mărimea dorită"],"Carousel mode":["Modul Carusel"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Afişaţi mai multe diapozitive simultan. Dimensiunea diapozitivului va fi de 100% ."],"Carousel margin":[""],"Pixel margin between slides in carousel.":[""],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Sortaţi ordinea diapozitivelor"],"Hover pause":["Pauză la planare cursor"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Puneţi pauză diapozitivului la planarea cursorului , apoi reluaţi când planarea cursorului încetează."],"Reverse":["Invers"],"Reverse the animation direction":["Inversaţi direcţia animaţiei"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Temporizare diapozitiv"],"How long to display each slide, in milliseconds":["Durata de afişare a fiecărui diapozitiv , în milisecunde"],"Animation speed":["Viteza animaţiei"],"Set the speed of animations, in milliseconds":["Setaţi viteza animaţiilor, în milisecunde"],"Number of slices":["Numărul decupăturilor"],"Number of squares":["Numărul pătratelor"],"Slide direction":["Direcţie de glisare"],"Select the sliding direction":["Selectaţi direcţia de glisare"],"Horizontal":["Orizontal"],"Vertical":["Vertical"],"Easing":["Easing"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Textul anterior"],"Set the text for the 'previous' direction item":["Setaţi textul pentru elementul din direcţia 'anterior'"],"Next text":["Textul urmator"],"Set the text for the 'next' direction item":["Setaţi textul pentru elementul din direcţia 'urmator'"],"Square delay":["Temporizare casetă(pătrat)"],"Delay between squares in ms":["Temporizare între casete în ms"],"Opacity":["Opacitate"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Viteza titlu"],"Set the fade in speed of the caption":["Setaţi viteza de apunere a titlului"],"Developer options":["Opţiuni dezvoltator"],"CSS classes":["Clase CSS"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Specificaţi orice Clase CSS pe care aţi dorii să fie adăugate la ambalatorul diapozitivului"],"Print CSS":["Publicare CSS"],"Uncheck this is you would like to include your own CSS":["Prin debifarea acesteia doriţi să includeţi propriul dvs. CSS"],"Print JS":["Publicare JS"],"Uncheck this is you would like to include your own Javascript":["Prin debifarea acesteia doriţi să includeţi propriul dvs. Javascript"],"No conflict mode":["Modul fară conflict"],"Delay adding the flexslider class to the slideshow":["Temporizare în adăugarea clasei flexslider la diapozitiv"],"Delete slideshow":[""],"Select slideshow to insert into post":["Selectaţi diapozitivul pe care doriţi să-l inseraţi în postare"],"Add slideshow":[""],"Choose slideshow":["Alegeţi diapozitiv"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Documentaţie"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Eşti sigur ?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-hu_HU-metaslider-admin-script.json000064400000067544151213255430017043 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ml"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Felirat"],"New Window":["Új ablak"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Figyelem: ez a beállítás csak fejlesztők részére ajánlott. Amennyiben nem vagy biztos benne, hagyd így."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Cím"],"Created":[""],"Shortcode":["Shortcode"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Slide hozzáadása"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Ment"],"Settings":["Beállítások"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Kép címe"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Kép alt szöveg"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Cím:"],"Select Slider:":["Slider kiválasztása:"],"No slideshows found":["Nincs találat"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Kép slide"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Általános"],"SEO":["SEO"],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Kép"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Szélesség"],"Slideshow width":["Slideshow szélessége"],"px":["px"],"Height":["Magasság"],"Slideshow height":["Slideshow magassága"],"Effect":["Effektek"],"Slide transition effect":["Slide átmenet effekt"],"Random":["Váltakozó"],"Swirl":["Forgás"],"Rain":["Eső"],"Straight":["Egyenes"],"Slice Down":[""],"Slice Up":["Slide fel"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Halványul"],"Fold":["Fold"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Váltakozó doboz"],"Box Rain":["Doboz eső"],"Box Rain Reverse":["Doboz eső visszafelé"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Doboz eső visszafelé növekvő"],"Slide":["Slide"],"Arrows":["Nyilak"],"Show the previous/next arrows":["Lapozó nyilak megjelenítése"],"Navigation":["Vezérlés"],"Show the slide navigation bullets":["Mutassa a slide lapozó pontjait"],"Hidden":["Rejtett"],"Dots":["Pontok"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Haladó beállítások"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Széthúzza a slideshow kimenetét a megadott méretre"],"Center align":["Középre igazítás"],"Center align the slideshow":["Középre igazítja a slideshowt"],"Auto play":["Auto lejátszás"],"Transition between slides automatically":["A slideok automatikus vetítése"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Az intelligens vágás a reszponzív megjelenés során olyan méretre vágja a képeket, hogy az kövesső a slideshow méretét"],"Carousel mode":["Körkép"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Az összes slideot egy képre rakja"],"Carousel margin":[""],"Pixel margin between slides in carousel.":[""],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["A slideok sorrenjének véletlenszerűsége"],"Hover pause":["Szünet"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Megállítja a slideshowt, amikor egy slide fölé visszük a kruzort, majd folytatja, amint elvittük onnan azt"],"Reverse":["Fordítás"],"Reverse the animation direction":["Megfordítja az animáció irányát"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Slide késleltetés"],"How long to display each slide, in milliseconds":["Az egyes slideok megjelenésének időtartama milliszekundumban"],"Animation speed":["Animáció sebessége"],"Set the speed of animations, in milliseconds":["Az animációk sebességének beállítása"],"Number of slices":["Szeletek száma"],"Number of squares":["Négyszögek száma"],"Slide direction":["Slide iránya"],"Select the sliding direction":["Válaszd ki a slide irányát"],"Horizontal":["Vízszintes"],"Vertical":["Függőleges"],"Easing":["Viselkedés"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Előző szöveg"],"Set the text for the 'previous' direction item":["Ez a szöveg jelenik meg akkor, ha az 'Előző' irányba akarunk lapozni"],"Next text":["Következő szöveg"],"Set the text for the 'next' direction item":["Ez a szöveg jelenik meg akkor, ha a 'Következő' irányba akarunk lapozni"],"Square delay":["Négyzetek késletetése"],"Delay between squares in ms":["A négyzetek közötti késleltetés ms-ben"],"Opacity":["Áttetszőség"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Felirat sebessége"],"Set the fade in speed of the caption":["A felirat előtűnésének sebessége"],"Developer options":["Fejlesztői beállítások"],"CSS classes":["CSS osztályok"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Egyedi CSS osztályok megadása"],"Print CSS":["Nyomtatási CSS"],"Uncheck this is you would like to include your own CSS":["Szedd ki a jelölőt, ha szeretnéd a saját CSS osztályodat használni"],"Print JS":["Nyomtatási JS"],"Uncheck this is you would like to include your own Javascript":["Szedd ki a jelölőt, ha szeretnéd a saját Javascripted használni"],"No conflict mode":["Nincs ütközési mód"],"Delay adding the flexslider class to the slideshow":["Késlelteti a flexsider osztály hozzáadását a slideshowhoz"],"Delete slideshow":[""],"Select slideshow to insert into post":["Slideshow kiválasztása egy bejegyzéshez"],"Add slideshow":[""],"Choose slideshow":["Válassz slideshowt"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Dokumentáció"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Biztos vagy benne?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-fa_IR.po000064400000164705151213255430011736 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:56-0600\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fa_IR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "لینک"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "عنوان"

#: admin/Pages.php:75
msgid "New Window"
msgstr "پنجره جدید"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"توجه: این تنظیمات فقط برای توسعه دهندگان پیشرفته است. اگر شما مطمئن نیستید، "
"این تنظیمات را دستکاری نکنید."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "موضوع"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "کد کوتاه"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "قرار دادن اسلاید"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "ذخیره"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "تنظیمات"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "موضوع تصویر"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "متن جایگزین تصویر"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "موضوع:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "انتخاب اسلاید:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "اسلایدشو پیدا نشد"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "اسلاید تصویر"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "عمومی"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "سئو"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "تصویر"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "عرض"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "عرض اسلایدشو"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "px"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "ارتفاع"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "ارتفاع اسلایدشو"

#: ml-slider.php:1688
msgid "Effect"
msgstr "افکت"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "انتقال افکت اسلایدر"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "تصادفی"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "چرخش"

#: ml-slider.php:1702
msgid "Rain"
msgstr "بارش"

#: ml-slider.php:1706
msgid "Straight"
msgstr "مستقیم"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "برش از بالا"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "محو"

#: ml-slider.php:1734
msgid "Fold"
msgstr "تا کردن"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "جعبه تصادفی"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "جعبه بارش"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "جعبه بارش معکوس"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "جعبه بارش معکوس روشن"

#: ml-slider.php:1766
msgid "Slide"
msgstr "اسلاید"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "فلش ها"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "نشان دادن فلش های قبلی/بعدی"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "ناوبری"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "نشان دادن گلوله های ناوبری اسلایدر"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "مخفی"

#: ml-slider.php:1795
msgid "Dots"
msgstr "نقطه"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "تنظیمات پیشرفته"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "کشش خروجی تصاویر به صورت خودکار"

#: ml-slider.php:1888
msgid "Center align"
msgstr "تراز از وسط"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "تراز از وسط اسلایدشو"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "پخش خودکار"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "انتقال بین اسلاید ها به صورت خودکار"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr "اصلاح هوشمند اسلایدر به طوریکه پاسخگو خواهد بود"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "حالت چرخ و فلک"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""
"نمایش اسلاید چندگانه در یک نوبت. خروجی تصاویر به صورت خودکار 100% خواهد بود."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "حالت چرخ و فلک"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "فاصله خروجی بین اسلایدر در چرخ و فلک"

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "تصادفی کردن حالت اسلایدر"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "متوقف کردن هنگام شناور شدن"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr "متوقف کردن تصویر هنگام بردن موس روی تصویر"

#: ml-slider.php:2022
msgid "Reverse"
msgstr "معکوس"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "جهت معکوس شدن انیمیشن"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "تاخیر اسلایدر"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "مدت زمان نمایش هر اسلایدر، در میلی ثانیه"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "سرعت انیمیشن"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "تنظیم سرعت انیمیشن، در میلی ثانیه"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "تعداد برش ها"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "تعداد مربع ها"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "توضیحات اسلایدر"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "قرار دادن توضیحات در اسلایدر"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "افقی"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "عمودی"

#: ml-slider.php:2159
msgid "Easing"
msgstr "افکت"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "نوشته قبلی"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "تنظیم متن برای 'قبلی' مورد استفاده"

#: ml-slider.php:2184
msgid "Next text"
msgstr "نوشته بعدی"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "تنظیم متن برای 'بعدی' مورد استفاده"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "تاخیر مربع"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "تاخیر مربع در اسلایدر"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "شفافیت"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "سرعت عنوان"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "تنظیم سرعت محو شدن عنوان"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "تنظیمات توسعه دهنده"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "کلاس سی اس اس"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr "اضافه کردن یک کلاس سفارشی سی اس اس در اسلایدر پوسته"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "چاپ سی اس اس"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "استفاده کردن از سی اس اس اسلاید"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "چاپ جاوا اسکریپت"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "استفاده کردن از جاوا اسکریپت اسلاید"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "بدون حالت تضاد"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "تاخیر در استفاده کلاس فلکس اسلایدر در اسلایدشو"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "انتخاب اسلایدشو برای برای قرار دادن در مطلب"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "انتخاب اسلایدشو"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "مستندات"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "آیا مطمئن هستید؟"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-es_ES-metaslider-admin-script.json000064400000170206151213255430017017 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=n != 1;","lang":"es"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":["https://www.metaslider.com"],"MetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site.":["MetaSlider te da la capacidad de crear un hermoso pase de diapositivas, carrusel o galería en tu sitio de WordPress."],"Spice up your site with animated layers and video slides with MetaSlider Pro":["Dale vida a tu sitio con capas animadas y diapositivas de vídeo con MetaSlider Pro"],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":["Aumenta tus ingresos y conversiones con diapositivas de vídeo y muchas otras caracteríscticas Pro de MetaSlider"],"Can you translate? Want to improve MetaSlider for speakers of your language?":["¿Sabes traducir? ¿Quieres mejorar MetaSlider para los usuarios de tu idioma?"],"weeks":["semanas"],"Let's Start &rarr;":["Empecemos &rarr;"],"Find out more &rarr;":["Descubre más &rarr;"],"Get MetaSlider Pro &rarr;":["Consigue MetaSlider Pro &rarr;"],"Sign up &rarr;":["Regístrate &rarr;"],"Go there &rarr;":["Ir ahí &rarr;"],"Read more":["Leer más"],"The security check failed. Please refresh the page and try again.":["La comprobación de seguridad ha fallado. Por favor, actualiza la página e inténtalo de nuevo."],"Access denied. Sorry, you do not have permission to complete this task.":["Acceso denegado. Lo siento, no tienes el permiso para completar esta tarea."],"Bad request":["Solicitud incorrecta"],"This item does not exist. Please refresh the page and try again.":["El elemento no existe. Por favor, actualiza la página e inténtalo de nuevo."],"The option was successfully updated":["La opción se ha actualizado con éxito."],"The requested data does not exist.":["Los datos solicitados no existen."],"The attempt to update the option failed.":["El intento de actualización ha fallado."],"URL":["URL"],"Caption":["Subtítulo"],"New Window":["Nueva ventana"],"Please confirm that you would like to delete this slideshow.":["Por favor, confirma que deseas eliminar esta presentación de diapositivas."],"Undo":["Deshacer"],"Slide restored":["Diapositiva recuperada"],"Slide deleted":["Diapositiva eliminada"],"Success":["Correcto"],"Item was copied to your clipboard":["El elemento ha sido copiado a tu portapapeles"],"Press to undo":["Haz clic para deshacer"],"Select replacement image":["Selecciona la imagen de sustitución"],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Cuidado: Estos ajustes son solo para desarrolladores avanzados. Si tienes dudas, déjalo marcado."],"The request format was not valid.":["El formato de la petición no era válido."],"This slideshow is no longer available.":["Este carrusel ya no está disponible."],"Nothing to import.":["Nada que importar."],"This was not a slideshow, so we cannot delete it.":["Esto no era una presentación de diapositivas, así que no podemos eliminarla."],"This was not a slideshow, so we cannot update the setting.":["Esto no es un pase de diapositivas, por lo que no se puede actualizar el ajuste."],"The title cannot be empty.":["El título no puede estar vacío."],"The field (%s) cannot be empty":["El campo (%s) no puede estar vacío"],"Maximum Number of Custom Field in Post Feed Sliders":["Número máximo de campos personalizados en los controles deslizantes de feed de entradas"],"Import slug not found":["No se ha encontrado el slug de importación"],"Import data could not be processed":["No se han podido procesar los datos de importación"],"We could not find any images to import.":["No hemos podido encontrar ninguna imagen que importar."],"New Slideshow":["Nueva presentación de diapositivas"],"Previous":["Anterior"],"Next":["Siguiente"],"No themes found.":["No se han encontrado temas."],"We removed your selected theme as it could not be found. Was the folder deleted?":["Hemos quitado el tema que has seleccionado ya que no estaba disponible. ¿Se ha borrado la carpeta?"],"You don't have any slideshows yet. Click %shere%s to create a new slideshow.":["Todavía no tienes ningún pase de diapositivas. Haz clic %saquí%s para crear un nuevo pase de diapositivas."],"Published":["Publicado"],"Trash":["Papelera"],"Preview":["Vista previa"],"Title":["Título"],"Created":["Creado"],"Shortcode":["Shortcode"],"Restore":["Restaurar"],"Delete Permanently":["Borrar permanentemente"],"Click to copy shortcode.":["Haz clic para copiar el shortcode."],"Edit":["Editar"],"Logo":["Logotipo"],"Dismiss":["Descartar"],"Slideshows":["Pases de diapositivas"],"Add New":["Añadir nueva"],"Search":["Buscar"],"Browser upgrade required":["Actualización obligatoria del navegador"],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":["Parece ser que estás usando %s. Aunque MetaSlider es compatible con %s en la vista pública de la web en la que los usuarios ven tus pases de diapositivas, algunas de las herramientas que ofrecemos aquí necesitan un navegador moderno."],"Microsoft Internet Explorer 11":["Microsoft Internet Explorer 11"],"IE11":["IE11"],"Update Internet Explorer":["Actualiza Internet Explorer"],"Main Options":["Opciones principales"],"Width":["Ancho"],"Slideshow width":["Anchura de la presentación de diapositivas"],"px":["px"],"Height":["Alto"],"Slideshow height":["Altura de la presentación de diapositivas"],"Transition Effect":["Efecto de la transición"],"This animation is used when changing slides.":["Esta animación se utiliza al cambiar de diapositiva."],"Random":["Aleatorio"],"Swirl":["Remolino"],"Rain":["Lluvia"],"Straight":["Recto"],"Slice Down":["Cortar abajo"],"Slice Up":["Cortar"],"Slice Up Left":["Cortar arriba izquierda"],"Slide Up Down":["Deslizar arriba abajo"],"Slice Up Down Left":["Cortar arriba abajo izquierda"],"Fade":["Fundido"],"Fold":["Doblar"],"Slide in Right":["Deslizar desde la derecha"],"Slide in Left":["Deslizar desde la izquierda"],"Box Random":["Caja al azar"],"Box Rain":["Box Rain"],"Box Rain Reverse":["Box Rain Reverse"],"Box Rain Grow":["Crecer lluvia de cajas"],"Box Rain Grow Reverse":["Box Rain Grow Reverse"],"Slide":["Diapositiva"],"Arrows":["Flechas"],"Show the previous/next arrows":["Mostrar las flechas anterior/siguiente"],"Navigation":["Navegación"],"Show the slide navigation bullets":["Mostrar iconos de navegación de slider."],"Hidden":["Oculto"],"Dots":["Puntos"],"Thumbnail":["Miniatura"],"Filmstrip":["Película"],"100% width":["Ancho 100%"],"Stretch the slideshow output to fill it's parent container":["Ensanchar la presentación de diapositivas hasta rellenar el contenedor padre"],"Theme":["Tema"],"Mobile Options":["Opciones de móvil"],"Hide arrows on":["Ocultar flechas en"],"When enabled this setting will hide the arrows on screen widths less than %spx":["Cuando está activada, esta opción oculta las flechas en las pantallas con anchuras inferiores a %spx"],"When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx":["Cuando está activada, esta opción oculta las flechas en las pantallas con anchuras comprendidas entre %1$spx y %2$spx."],"When enabled this setting will hide the arrows on screen widths equal to or greater than %spx":["Cuando está activada, esta opción oculta las flechas en pantallas con anchuras iguales o superiores a %spx."],"Hide navigation on":["Ocultar navegación en"],"When enabled this setting will hide the navigation on screen widths less than %spx":["Cuando está activada, esta opción oculta la navegación en pantallas con anchuras inferiores a %spx."],"When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx":["Cuando está activada, esta opción oculta la navegación en pantallas con anchuras comprendidas entre %1$spx a %2$spx."],"When enabled this setting will hide the navigation on screen widths equal to or greater than %spx":["Cuando está activada, esta opción oculta la navegación en pantallas con anchuras iguales o superiores a %spx."],"Advanced Options":["Ajustes avanzados"],"Center align":["Centrar"],"Center align the slideshow in the available space on your website.":["Centra el pase de diapositivas en el espacio disponible en tu sitio web."],"Auto play":["Auto arranque"],"Transition between slides automatically":["Transición entre diapositivas automáticamente"],"Loop":["Bucle"],"If you choose \"Continuously\", the slides will loop infinitely. If you choose \"Stop on first slide\", the slideshow will stop on the first slide after showing all the items. If you choose \"Stop on last slide\", the slides will stop on the last slide.":["Si eliges «Continuamente», las diapositivas se mostrarán en bucle infinito. Si eliges «Detener en la primera diapositiva», la presentación se detendrá en la primera diapositiva después de mostrar todos los elementos. Si eliges «Detener en la última diapositiva», las diapositivas se detendrán en la última diapositiva."],"Continuously":["En continuo"],"Stop on Last Slide":["Detente en la última diapositiva"],"Stop on First Slide":["Detente en la primera diapositiva"],"Image Crop":["Recorte de la imagen"],"Smart Crop":["Recorte inteligente"],"Standard":["Estándar"],"Disabled":["Desactivado"],"Disabled (Smart Pad)":["Disabled (Smart Pad)"],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["El recorte inteligente asegura que tus diapositivas adaptables sean recortadas en una proporción correcta respecto a la presentación de diapositivas."],"Smooth Height":["Altura suave"],"Allow navigation to follow the slide's height smoothly":["Permitir que la navegación siga suavemente la altura de la diapositiva"],"Carousel mode":["Modo carrusel"],"Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect.":["Muestra varias diapositivas a la vez. El pase de diapositivas tendrá un ancho del 100%. El modo «Carrusel» sólo utiliza el efecto «Deslizar»."],"Loop Continuously (Beta)":["Bucle infinito (beta)"],"Infinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.":["Bucle infinito de diapositivas cuando el modo carrusel está activado. Esta opción desactiva las flechas y la navegación."],"Carousel margin":["Margen de carrusel"],"Pixel margin between slides in carousel.":["Margen en píxeles entre diapositivas en el carrusel."],"Fade in":["Fundido de entrada"],"This adds an animation when the slideshow loads. It only uses the \"Fade\" transition effect":["Esto añade una animación cuando se carga el pase de diapositivas. Solo utiliza el efecto de transición «Fundido»."],"Randomise the order of the slides":["Ordenar aleatoriamente las diapositivas"],"Hover pause":["Pausar cuando situes el ratón encima"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Pausa la presentación de diapositivas al pasar el cursor sobre la misma, luego vuelve a ponerse en marcha cuando quites el cursor."],"Reverse":["Invertir"],"Reverse the animation direction":["Invertir orden de la animación"],"Touch Swipe":["Deslizar tocando"],"Allow touch swipe navigation of the slider on touch-enabled devices":["Permitir la navegación táctil del carrusel en dispositivos táctiles."],"Slide delay":["Retraso de la diapositiva"],"How long to display each slide, in milliseconds":["Cuanto tiempo se muestra cada diapositiva en milisegundos"],"Transition Speed":["Velocidad de la transición"],"Choose the speed of the animation in milliseconds. You can select the animation in the \"Effect\" field.":["Choose the speed of the animation in milliseconds. You can select the animation in the \"Effect\" field."],"Number of slices":["Número de cortes"],"Number of squares":["Nmúero de cuadros"],"Slide direction":["Dirección del pase"],"Select the direction that slides will move. Vertical will not work if \"Carousel mode\" is enabled or \"Effect\" is set to \"Fade\".":["Selecciona la dirección en la que se moverán las diapositivas. Vertical no funcionará si «Modo carrusel» está activado o «Efecto» está configurado como «Fundido»."],"Horizontal":["Horizontal"],"Vertical":["Vertical"],"Easing":["Suavizado"],"Easing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the 'Slide' Effect.":["La suavización añade una aceleración y desaceleración gradual a las transiciones de diapositivas, en lugar de arranques y paradas bruscos. La suavización solo utiliza el efecto «Diapositiva»."],"Previous text":["Texto para «Anterior»"],"Set the text for the 'previous' direction item":["Introducir el texto de «anterior» en la dirección del elemento"],"Next text":["Texto para «Siguiente»"],"Set the text for the 'next' direction item":["Establecer el texto la dirección para el «siguiente» elemento"],"Square delay":["Retardo entre cuadros"],"Delay between squares in ms":["Retardo entre cuadros en ms"],"Opacity":["Opacidad"],"Opacity of title and navigation, between 0 and 1":["Opacidad del título y navegación, entre 0 y 1"],"Caption speed":["Velocidad del subtítulo"],"Set the fade in speed of the caption":["Ajustar el fundido en la velocidad del subtítulo"],"Accessibility Options":["Opciones de accesibilidad"],"Keyboard Controls":["Controles del teclado"],"Use arrow keys to get to the next slide.":["Utiliza las teclas de flecha para pasar a la siguiente diapositiva."],"ARIA Live":["Aria Live"],"If Autoplay is enabled, this causes screen readers to announce that the slides are changing.":["Si la reproducción automática está activada, esto hace que los lectores de pantalla anuncien que las diapositivas están cambiando."],"Tabindex for navigation":["Tabindex para la navegación"],"This helps make the slideshow navigation more accessible.":["Esto hace que la navegación por el pase de diapositivas sea más accesible."],"Developer Options":["Opciones de desarrollador"],"CSS classes":["Clases CSS"],"Enter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.":["Introduce clases CSS personalizadas para aplicarlas a la envoltura del carrusel. Separa varias clases con un espacio."],"Print CSS":["Imprimir CSS"],"Uncheck this if you would like to include your own CSS":["Desmarca esta si quieres incluir tu propio CSS"],"Print JS":["Imprimir JS"],"Uncheck this if you would like to include your own Javascript":["Desmarca esta si quieres incluír tu propio javascript"],"No conflict mode":["Sin modo de conflicto"],"Delay adding the flexslider class to the slideshow":["Retardo agregando la clase flexslider a la presentación de diapositivas"],"Trashed slides":["Diapositivas eliminadas"],"View trashed slides":["Ver diapositivas borradas"],"Thumbnail (Pro)":["Miniatura (Pro)"],"Filmstrip (Pro)":["Película (Pro)"],"Add a new slide":["Añadir nueva diapositiva"],"Add Slide":["Añadir diapositiva"],"Save & open the preview":["Guardar y abrir la vista previa"],"Add a new slideshow":["Añadir nuevo pase de diapositivas"],"New":["Nuevo"],"Duplicate this slideshow":["Duplica este pase de diapositivas"],"Duplicate":["Duplicar"],"Adding custom CSS is a MetaSlider Pro feature. Click to learn more.":["Añadir CSS personalizado es una característica de MetaSlider Pro. Haz clic para saber más."],"Add CSS":["Añadir CSS"],"Save slideshow":["Guardar presentación de diapositivas"],"Save":["Guardar"],"Return to Published Slides":["Volver a las diapositivas publicadas"],"Settings":["Ajustes"],"Help Center":["Centro de ayuda"],"Import":["Importar"],"Export":["Exportar"],"Carousel Slideshow":["Carrusel de diapositivas"],"Carousel Slideshow with Captions":["Carrusel de diapositivas con subtítulos"],"Thanks for using MetaSlider, the WordPress slideshow plugin":["Gracias por usar MetaSlider, el plugin de pases de diapositivas para WordPress"],"Create a slideshow with your images":["Crea un pase de diapositivas con tus imágenes"],"Choose your own images to start a new slideshow.":["Elige tus propias imágenes para iniciar un nuevo pase de diapositivas."],"Open Media Library":["Abrir biblioteca de medios"],"Create a slideshow with sample images":["Crear una presentación de diapositivas con imágenes de muestra"],"Choose one of our demos with sample images, or a blank slideshow with no images.":["Elije una de nuestras demos con imágenes de muestra o una presentación en blanco sin imágenes."],"Blank Slideshow":["Presentación en blanco"],"Image Slideshow":["Presentación de imágenes"],"Create a Slideshow":["Crear una presentación de diapositivas"],"Comparison Chart":["Gráfico de comparación"],"Free":["Gratuito"],"Pro":["Pro"],"Installed":["Instalado"],"Upgrade now":["Actualizar ahora"],"Create unlimited slideshows":["Crear ilimitados pases de diapositivas"],"Create and manage as many slideshows as you need.":["Crea y gestiona tantas diapositivas como necesites."],"Regular updates":["Actualizaciones periódicas."],"We keep MetaSlider compatible with the latest versions of WordPress.":["Mantenemos MetaSlider compatible con las últimas versiones de WordPress."],"Intelligent image cropping":["Recorte inteligente de la imagen"],"Unique Smart Crop functionality ensures your slides are perfectly resized.":["La funcionalidad única de recorte inteligente asegura que tus diapositivas se redimensionen a la perfección."],"Thumbnail navigation":["Navegación por miniaturas"],"Allow users to browse your slideshows using thumbnail navigation.":["Permite navegar a tu usuarios de manera sencilla por tus pases de diapositivas usando las miniaturas."],"Add YouTube and Vimeo slides":["Añadir diapositivas de vídeo de YouTube y de Vimeo"],"Easily include responsive high definition YouTube and Vimeo videos.":["Incluye fácilmente vídeos adaptables de alta definición de YouTube y de Vimeo."],"Add local video slides":["Añadir diapositivas de vídeo local"],"Create slideshows with videos from your WordPress media library.":["Crea pases de diapositivas con los vídeos de tu bliblioteca de medios de WordPress."],"Add external video slides":["Añadir diapositivas de vídeo externo"],"Create slideshows with external videos.":["Crea pases de diapositivas con tus vídeos externos"],"Add HTML overlay slides":["Añadir diapositivas de superposición HTML"],"Create completely customized HTML slides using the inline editor.":["Crea diapositivas HTML completamente personalizadas con el editor integrado."],"Add slide layers":["Añadir capas a la diapositiva"],"Add layers to your slides with over 50 available transition effects.":["Agrega capas a tus diapositivas con más de 50 efectos de transición disponibles."],"Add Post Feed slides":["Añadir feed de diapositivas"],"Easily build slides based on your WordPress posts.":["Construye fácilmente diapositivas en base a tus entradas de WordPress."],"Add custom CSS":["Añadir CSS personalizado"],"Customize your slideshows to fit with your website.":["Personaliza tus pases de diapositivas para adaptarlos a tu web."],"Schedule your slides":["Programa tus diapositivas"],"Add a start/end date to individual slides.":["Añade una fecha de inicio/fin a diapositivas individuales."],"Toggle your slide's visibility":["Cambia la visibilidad de tu diapositiva"],"Hide any slide, without having to delete them.":["Oculta cualquier diapositiva, sin tener que borrarla."],"Premium support":["Soporte Premium"],"Have your specific queries addressed directly by our experts.":["Haz que tus consultas específicas sean tratadas directamente por nuestros expertos."],"Crop Position":["Posición del recorte"],"Choose how images are cropped if their size doesn't exactly match the size of your slideshow. This works if \"Smart Crop\" is selected in the \"Image Crop\" settings.":["Elige cómo se recortan las imágenes si su tamaño no coincide exactamente con el del pase de diapositivas. Esto funciona si está seleccionado «Recorte inteligente» en los ajustes de «Recorte de imagen»."],"Top Left":["Superior izquierdo"],"Top Center":["Superior centro"],"Top Right":["Superior derecho"],"Center Left":["Centro izquierda"],"Center Center":["Centrado Centrado"],"Center Right":["Centro derecha"],"Bottom Left":["Inferior izquierdo"],"Bottom Center":["Abajo al centro"],"Bottom Right":["Inferior derecho"],"Image Link URL":["URL del enlace de la imagen"],"When visitors click on your image slide, they will be taken to this URL.":["Cuando los visitantes hagan clic en tu diapositiva de imagen, serán redirigidos a esta URL."],"New window":["Nueva ventana"],"Open link in a new window":["Abrir el enlace en una ventana nueva"],"Image Link Alt Text":["Texto alternativo del enlace de la imagen"],"This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended.":["Este texto lo utilizan los motores de búsqueda y los visitantes que utilizan lectores de pantalla. Es muy recomendable añadir texto alternativo a los enlaces."],"Hide slide on:":["Oculta la diapositiva en:"],"When enabled this setting will hide the slide on screen widths equal to or greater than %spx":["Cuando está activado, este ajuste oculta la diapositiva en pantallas de anchura igual o superior a %spx"],"When enabled this setting will hide the slide on screen widths of %1$spx to %2$spx":["Cuando está activado, este ajuste oculta la diapositiva en pantallas de anchura %1$spx a %2$spx."],"Hide caption on:":["Oculta la leyenda en:"],"When enabled this setting will hide the caption on screen widths equal to or greater than %spx":["Cuando está activado, este ajuste oculta la leyenda en pantallas de anchura igual o superior a %spx"],"When enabled this setting will hide the caption on screen widths of %1$spx to %2$spx":["Cuando está activado, este ajuste oculta la leyenda en pantallas de anchura %1$spx a %2$spx."],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":["Actualiza o activa MetaSlider Pro ahora para añadir una opción de fecha de inicio/fin a tus diapositivas"],"Get MetaSlider Pro":["Obtén MetaSlider Pro"],"With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day.":["Con MetaSlider Pro, puedes programar tus diapositivas. Puedes elegir mostrar tus diapositivas en fechas específicas, días de la semana u horas del día."],"Image Title Text":["Texto del Título de la Imagen"],"Visitors will see this text if they hover over your image slide. Adding Title text is useful but not required.":["Los visitantes verán este texto si pasan el ratón por encima de la imagen. Añadir el texto del título es útil pero no obligatorio."],"Enable this to inherit the image title":["Activa esto para heredar el título de la imagen"],"Use the image title":["Utilizar el título de la imagen"],"Image Alt Text":["Texto Alt de la Imagen:"],"This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.":["Este texto es utilizado por los motores de búsqueda y los visitantes que utilizan lectores de pantalla. Es muy recomendable añadir texto alt."],"Enable this to inherit the image alt text":["Activa esto para heredar el texto alternativo de la imagen"],"Use the image alt text":["Utilizar el texto alternativo de la imagen"],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":["Es posible que tus ajustes no se guarden correctamente debido a una configuración en tu servidor. %s está establecido actualmente en %s, pero recomendamos un ajuste de 4000. Por favor, consulta %s para obtener más información. El archivo «php.ini» está siendo cargando desde aquí: %s"],"this article":["este artículo"],"Warning:":["Advertencia:"],"Title:":["Titulo:"],"Select Slider:":["Seleccionar pase"],"No slideshows found":["No se han encontrado presentaciones de diapositivas"],"The requested image does not exist. Please try again.":["La imagen solicitad no existe. Por favor inténtalo de nuevo."],"The image was successfully updated.":["La imagen se ha actualizado con éxito."],"There was an error updating the image. Please try again":["Ha habido un error actualizando la imagen. Por favor, inténtalo de nuevo"],"There was an error while updating the database. Please try again.":["Ha habido un error al actualizar la base de datos. Por favor, inténtalo de nuevo."],"Trash slide":["Mover la diapositiva a la basura"],"Update slide image":["Actualizar imagen de la diapositiva"],"Duplicate slide":["Duplicar diapositiva"],"This isn't a valid image format. Please try again.":["Este formato de imagen no es válido. Por favor, inténtalo de nuevo."],"Access denied":["Acceso denegado"],"Image Slide":["Imagen de la diapositiva"],"Warning: The image data does not exist. Please re-upload the image.":["Advertencia: No existen datos de la imagen. Vuelve a subirla, por favor."],"General":["General"],"Link":["Enlace"],"SEO":["SEO"],"Mobile":["Móvil"],"Crop":["Recortar"],"Schedule":["Programar"],"Click the \"Add Slide\" button to create your slideshow":["Haz clic en el botón «Añadir diapositiva» para crear tu pase de diapositivas"],"Edit Slideshow":["Editar el pase de diapositivas"],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":["MetaSlider Pro está instalado pero no está actualizado. Puedes actualizarlo %saquí%s. Leer más sobre este aviso %saquí%s"],"Home":["Inicio"],"Quick Start":["Inicio rápido"],"Settings & Help":["Ajustes y ayuda"],"Upgrade to Pro":["Actualizar a Pro"],"All Slideshows":["Todos pases de diapositivas"],"Create Slideshow":["Crear una presentación de diapositivas"],"Image":["Imagen"],"Add to slideshow":["Añadir a la presentación de diapositivas"],"Post Feed":["Feed de la entrada"],"Vimeo":["Vimeo"],"YouTube":["YouTube"],"Layer Slide":["Capa de corte"],"External URL":["URL externa"],"Local Video":["Vídeo local"],"External Video":["Vídeo externo"],"The slide was successfully restored":["La diapositiva se ha restaurado correctamente"],"The attempt to restore the slide failed.":["El intento de recuperar la diapositiva ha fallado."],"The slide was successfully trashed":["La diapositiva se ha eliminado correctamente"],"The slide was permanently deleted":["La diapositiva ha sido borrado permanentemente"],"Trashed Slides":["Diapositivas eliminadas"],"Loading... Please wait!":["Cargando… ¡Por favor, espera!"],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":["Estás viendo diapositivas que se han movido a la papelera, que se borrarán automáticamente en %s días."],"Move slideshow to trash":["Mover el pase de diapositivas a la papelera"],"Add slideshow":["Añadir presentación de diapositivas"],"Choose slideshow":["Elige presentación de diapositivas"],"Insert slideshow":["Insertar presentación de diapositivas"],"Create slides by adding text, videos and more to your images":["Crea diapositivas añadiendo texto, vídeos y mucho más a tus imágenes"],"With Layer slides, you can create beautiful, stylish layers of different elements.":["Con las diapositivas de capas, puede crear capas hermosas y elegantes de diferentes elementos."],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":["Empiezas con una imagen y luego puedes añadir texto, vídeo, colores, animaciones, más imágenes e incluso shortcodes."],"Find out more about MetaSlider Pro":["Más información acerca de MetaSlider Pro"],"Create slideshows with your Vimeo videos":["Crea pases de diapositivas con tus vídeos de Vimeo"],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":["Con las diapositivas de Vimeo, puedes crear hermosas presentaciones con tus vídeos de Vimeo."],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":["Las diapositivas de Vimeo mostrarán tus vídeos con reproducción automática, silencio, posibilidad de ocultar controles y mucho más."],"Create slideshows with your YouTube videos":["Crea pases de diapositivas con tus vídeos de YouTube"],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":["Con las diapositivas de YouTube, puedes crear hermosas presentaciones con tus vídeos de YouTube."],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":["Las diapositivas de YouTube mostrarán tus vídeos con reproducción automática, silencio, posibilidad de ocultar controles y mucho más."],"Create slideshows with your posts":["Crea pases de diapositivas con tus entradas"],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":["Con las diapositivas de feed de entradas, puedes crear presentaciones con tus últimas entradas, eventos o productos de WooCommerce."],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":["Las diapositivas de feed de entradas mostrarán automáticamente tus entradas con imágenes, texto, campos personalizados y mucho más."],"Create slideshows with images stored outside of WordPress":["Crea pases de diapositivas con imágenes almacenadas fuera de WordPress"],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":["Con las diapositivas URL externas, puedes cargar imágenes directamente desde fuentes ajenas a WordPress, como CDN o hosts de imágenes."],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":["Las diapositivas URL externas te ofrecen toda la potencia de MetaSlider, utilizando imágenes almacenadas en cualquier lugar que desees."],"Create slideshows with videos in your media library":["Crea pases de diapositivas con los videos de tu bliblioteca de medios"],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":["Con las diapositivas de vídeo locales, puedes crear hermosos pases de diapositivas con los vídeos de tu biblioteca de medios de WordPress."],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":["Las diapositivas de vídeo local mostrarán tus vídeos MP4, WebM y MOV con imágenes de portada, reproducción automática, silencio, carga lenta, posibilidad de ocultar controles y mucho más."],"Create slideshows with videos stored outside of WordPress":["Crea pases de diapositivas con vídeos almacenados fuera de WordPress"],"With External Video slides, you can add videos directly from non-WordPress sources.":["Con las diapositivas de vídeo externas, puedes añadir vídeos directamente desde fuentes ajenas a WordPress."],"External Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":["Las diapositivas de vídeo externas mostrarán tus vídeos MP4, WebM y MOV con leyendas de texto, imágenes de portada, reproducción automática, silencio, carga lenta, posibilidad de ocultar controles y mucho más."],"Premium Support":["Soporte premium"],"MetaSlider Pro":["MetaSlider Pro"],"Support":["Soporte"],"Documentation":["Documentación"],"Leave a review":["Deja una valoración"],"Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.":["Bitono es un tema minimalista con un esquema de 2 colores. Recomendado para diapositivas de imagen, imagen externa y feed de entradas."],"Databold is a minimalist theme recommended for Image, External Image and Post feed slides.":["Databold es un tema minimalista recomendado para diapositivas de imagen, imagen externa y feed de entradas."],"Draxler is a minimalist theme.":["Draxler es un tema minimalista."],"A simple, slick square design that looks good on darker images.":["Un diseño cuadrado simple y elegante que se ve bien en imágenes más oscuras."],"A clean, subtle theme that features block arrows and bold design.":["Un tema limpio y sutil que incluye flechas de bloque y un diseño atrevido."],"A fun, circular design to brighten up your site. This theme works well with dark images":["Un diseño divertido y circular para alegrar tu sitio. Este tema funciona bien con imágenes oscuras"],"A minimalistic, no-frills design that was built to blend in with most themes.":["Un diseño minimalista y limpio creado para integrarse con la mayoría de los temas."],"This theme places the controls vertically for a unique look.":["Este tema coloca los controles verticalmente para obtener un aspecto único."],"A futuristic and linear design that goes will with a dark background.":["Un diseño futurista y lineal que combina con un fondo oscuro."],"A simple theme that neatly blends into any existing website.":["Un tema sencillo que se integra perfectamente en cualquier sitio web existente."],"This theme has a special additional functionality that uses image titles as the slide navigation. ":["Este tema tiene una funcionalidad adicional especial que utiliza títulos de imágenes como la navegación de diapositivas. "],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":["Si quieres utilizar los títulos de las imágenes como navegación, tendrás que utilizar FlexSlider. Además, para cambiar la etiqueta de navegación de la diapositiva, hay que editar el título de la imagen en la biblioteca de medios o manualmente en la diapositiva (pestaña SEO)."],"This theme has a unique design that gives it a sophisticated look.":["Este tema tiene un diseño único que le da un aspecto sofisticado."],"A bold and clear design that works well on a darker images.":["Un diseño audaz y claro que funciona bien con imágenes más oscuras."],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.":["Un tema minimalista que no interfiere para que puedas mostrar tus hermosas fotos. Se utiliza mejor con las diapositivas de imagen."],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":["Tema Light de Nivo incluido aquí para propósitos de retrocompatibilidad. Nota: sólo funciona con Nivo Slider"],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":["Tema Bar de Nivo incluido aquí para propósitos de retrocompatibilidad. Nota: sólo funciona con Nivo Slider"],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":["Tema Dark de Nivo incluido aquí para propósitos de retrocompatibilidad. Nota: sólo funciona con Nivo Slider"],"Previous Slide":["Diapositiva anterior"],"Next Slide":["Siguiente diapositiva"],"Preparing 1 slide...":["Preparando 1 diapositiva..."],"1 slide added successfully":["1 diapositiva añadida correctamente"],"Opening add slide UI...":["Abriendo la interfaz de usuario de añadir diapositiva…"],"Closing add slide UI...":["Cerrando la interfaz de usuario de añadir diapositiva…"],"Updating slide...":["Actualizando la diapositiva..."],"Slide updated successfully":["Diapositiva actualizada correctamente"],"CSS Manager notice opened":["Aviso del gestor CSS abierto"],"CSS Manager notice closed":["Aviso del gestor CSS cerrado"],"CSS Manager":["Gestor CSS"],"Easily add custom CSS to your slideshows to create the perfect design for your sites.":["Añade fácilmente CSS personalizado a tus pases de diapositivas para crear el diseño perfecto para tus sitios."],"Built-in text editor full of features.":["Editor de texto integrado lleno de características."],"Loads only on the front-end where needed.":["Solo carga en la portada cuando sea necesario."],"Includes recipes to solve common scenarios.":["Incluye recetas para solucionar escenarios comunes."],"Analytics notice opened":["Aviso de Analytics abierto"],"Analytics notice closed":["Aviso de Analytics cerrado"],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":["También nos gustaría enviarte correos electrónicos poco frecuentes con importantes actualizaciones de seguridad y funciones. Consulta nuestros %s para más detalles."],"privacy policy":["política de privacidad"],"Thanks for using MetaSlider":["Gracias por usar MetaSlider"],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":["Actualmente estamos construyendo la próxima versión de MetaSlider. ¿Puedes ayudarnos compartiendo información de diagnóstico no sensible?"],"Agree and continue":["Aceptar y continuar"],"No thanks":["No, gracias"],"Duplicating...":["Duplicando…"],"To edit this slide, click \"Restore\" and then \"Return to Published Slides\"":["Para editar esta diapositiva, haz clic en «Restaurar» y luego en «Volver a diapositivas publicadas»"],"MetaSlider dashboard loaded":["Cargado el escritorio de MetaSlider"],"Saving...":["Guardando..."],"Saving %s slides. This may take a few moments.":["Guardando %s diapositivas. Esto puede tardar unos momentos."],"Slideshow saved":["Pase de diapositivas guardado"],"Duplicated successfully. Reloading...":["Duplicado correctamente. Recargando..."],"Settings saved":["Ajustes guardados"],"Still working... %s slides remaining...":["Sigue trabajando... %s pases de diapositivas restantes..."],"Tour cancelled successfully":["Visita guiada cancelada correctamente"],"Tour cancelled unsuccessfully":["Visita guiada cancelada incorrectamente"],"Are you sure?":["¿Estás seguro?"],"This slideshow will be moved to the \"Trash\" area.":["Este pase de diapositivas se moverá a la área «Papelera»."],"Confirm":["Confirmar"],"Something went wrong":["Se ha producido un error"],"OK":["Aceptar"],"Preparing slideshow for duplication...":["Preparando el pase de diapositivas para duplicado..."],"Doing something...":["Haciendo algo…"],"No error message provided.":["No se han proporcionado un mensaje sobre el error."],"Undefined error occurred":["Ha ocurrido un error no definido"],"No error message reported.":["No se ha informado de ningún mensaje de error."],"Saving theme...":["Guardando tema…"],"Theme saved":["Tema guardado"],"Slideshow Theme":["Tema del pase de diapositivas"],"This theme is not officially supported by the slider you chose. Your results might vary.":["Este tema no es oficialmente compatible con la diapositiva que has elegido. Tus resultados podrían variar."],"Custom theme":["Tema personalizado"],"Remove":["Eliminar"],"Change":["Cambiar"],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":["¡Cambia el aspecto de tu pase de diapositivas con uno de nuestros temas MetaSlider hechos a medida!"],"Select a custom theme":["Selecciona un tema personalizado"],"Themes":["Temas"],"Theme Details":["Detalles del tema"],"Theme Instructions":["Instrucciones del tema"],"Tags":["Etiquetas"],"How To Use":["Cómo utilizarlo"],"Select a theme on the left to use on this slideshow. Click the theme for more details.":["Selecciona un tema de la izquierda para usarlo en este pase de diapositivas. Haz clic en el tema para más detalles."],"If no theme is selected we will use the default theme provided by the slider plugin":["Si no se selecciona un tema, usaremos el tema por defecto proporcionado por el plugin del carrusel"],"Loading...":["Cargando…"],"Error: No themes were found.":["Error: No se encontró ningún tema."],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":["Sin embargo, parece que tienes disponibles temas personalizados. Selecciona «Mis temas personalizados» en la navegación superior para ver tus temas personalizados."],"My Custom Themes":["Mis temas personalizados"],"Get MetaSlider Pro!":["¡Obtén MetaSlider Pro!"],"Upgrade now to build your own custom themes!":["¡Actualiza ahora para construir tus propios temas personalizados!"],"MetaSlider Pro is installed!":["¡MetaSlider Pro instalado!"],"You can create your own themes with our theme editor":["Puedes crear tus propios temas con nuestro editor de temas"],"Get started":["Primeros pasos"],"On the left are themes that you have created in the theme editor.":["A la izquierda están los temas que has creado en el editor de temas."],"Preview slideshow":["Previsualizar pase de diapositivas"],"Select":["Seleccionar"],"Toggle overlay type":["Cambiar tipo de superposición"],"Toggle full width":["Cambiar a ancho completo"],"Exit preview":["Salir de la vista previa"],"This feature is not fully supported in this browser.":["Esta característica no es totalmente compatible con este navegador."],"Media caption":["Leyenda de medios"],"Media description":["Descripción de medios"],"Manual entry":["Introducción manual"],"Enter text that will appear with your image slide.":["Introduce el texto que aparecerá con la diapositiva de tu imagen."],"Automatically updates directly from the WP Media Library":["Se actualiza automáticamente desde la biblioteca de medios de WP directamente."],"No default was found":["No se encontró nada por defecto"],"You may use HTML here":["Aquí puedes usar HTML"],"Filter by type":["Filtrar por tipo"],"All media items":["Todos los medios"],"Search Unsplash API":["Buscar API de Unsplash"],"Search unsplash.com...":["Buscar en unsplash.com…"],"Load more":["Load more"],"Photo by %s on Unsplash":["Foto de %s en Unsplash"],"Photo on Unsplash":["Foto en Unsplash"],"Opening Unsplash tab...":["Abriendo pestaña de Unsplash…"],"Unsplash tab closed":["Pestaña de Unsplash cerrada"],"No photots found.":["No se encontraron fotos."],"Photo by %s":["Foto de %s"],"Deselect":["Anular selección"],"Attachment Details":["Detalles del adjunto"],"view original":["ver original"],"Profile":["Perfil"],"Portfolio":["Porfolio"],"Alt Text":["Texto alt"],"Description":["Descripción"],"Quality":["Calidad"],"All photos published on Unsplash can be used for free.":["Todas las fotos publicadas en Unsplash se pueden usar gratuitamente."],"view license":["ver licencia"],"Complete!":["¡Completo!"],"Crunching...":["Contrayendo..."],"Import Slides":["Importar diapositivas"],"Import slides":["Importar diapositivas"],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":["Actualmente no tienes diapositivas para previsualizar. Si quieres, podemos importar algunas imágenes de diapositivas para ti. "],"No valid files found":["No se encontraron archivos válidos"],"Drag and drop interface not available.":["La interfaz de arrastrar y soltar no está disponible"],"Drop images here":["Arrastra las imágenes aquí"],"Press %s to save or %s to cancel.":["Pulsa %s para guardar o %s para cancelar."],"Shortcode copied":["Shortcode copiado"],"Shortcode unable to be copied automatically":["No se ha podido copiar automáticamente el shortcode"],"Failed to open utility modal...":["Fallo al abrir la ventana emergente de utilidad…"],"Opening utility modal...":["Abriendo la ventana emergente de utilidad…"],"Closing utility modal...":["Cerrando la ventana emergente de utilidad…"],"No slides":["No hay diapositivas"],"Current":["Actual"],"last updated: %s":["última actualización: %s"],"Viewing 1 slideshow":["Viendo 1 pase de diapositivas"],"Viewing %s out of %s slideshows":["Viendo %s de %s pases de diapositivas"],"Search slideshows (Press ctrl + / to focus)‎":["Buscar pases de diapositivas (pulsa «Ctrl + /» para enfocar)"],"Searching slideshows...":["Buscando pases de diapositivas..."],"1 slideshow":["1 pase de diapositivas"],"Viewing %s out of %s slideshows (%s loaded)":["Viendo %s de %s pases de diapositivas (%s cargados)"],"Indexing %s slideshows into local storage...":["Indexando %s pases de diapositivas en el almacenamiento local..."],"All Slideshows loaded":["Se han cargado todos los pases de diapositivas"],"Fetching slideshows...":["Obteniendo pases de diapositivas..."],"Finished":["Terminado"],"Indexing slideshows... %s remaining":["Indexando los pases de diapositivas... %s restantes"],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":["Esta característica no es totalmente compatible con Internet Explorer 11 y puedes experimentar tiempos lentos en los resultados de búsqueda."],"Sort by title":["Ordenar por el título"],"Sort by modified date":["Ordenar por la fecha de modificación"],"Filter slideshows‎":["Filtrar los pases de diapositivas"],"Searching...":["Buscando..."],"Updating...":["Actualizando..."],"Load all":["Cargar todo"],"Clear cache":["Vaciar la caché"],"Load remaining %s slideshows":["Cargar las %s diapositivas restantes"],"Press to clear the slideshow cache from your web browser":["Pulsa para vaciar la caché de los pases de diapositivas de tu navegador web"],"Loading slideshows...":["Cargando los pases de diapositivas..."],"Browse slideshows":["Explorar los pases de diapositivas"],"Collapse":["Cerrar"],"Press to expand":["Pulsa para ampliar"],"Copy all":["Copiar todo"],"All settings saved":["Todos los ajustes guardados"],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":["Aquí encontrarás documentación y dos niveles de soporte para elegir. Además, puedes proporcionarnos información adicional específica para tu web, servidor, etc."],"Documentation 📚":["Documentación 📚"],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":["Echa un vistazo a nuestra página de documentación para ver ejemplos y más información sobre lo que puedes hacer con MetaSlider."],"Visit documentation":["Visitar la documentación"],"Free Basic Support 🚀":["Soporte básico gratuito 🚀"],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":["Para los usuarios de la versión gratuita de MetaSlider, ofrecemos soporte completo gratuito en los foros de wordpress.org."],"Visit wordpress.org":["Visitar wordpress.org"],"Paid Premium Support 🌟":["Soporte Premium de pago 🌟"],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":["Los usuarios de pago del plugin premium pueden abrir un tique en nuestro centro privado de soporte para recibir soporte personalizado y tiempos de respuesta más rápidos."],"Visit metaslider.com":["Visitar metaslider.com"],"Site Information":["Información del sitio"],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":["Para tu comodidad, puedes copiar antes la información básica del sitio para ayudarnos a acelerar el proceso de depuración. Asegúrate de verificar que no se incluye ninguna información personal que quieras mantener en privado."],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":["Cambia el título por defecto que se usará al crear un nuevo pase de diapositivas. Utiliza %s y se reemplazará por el ID del pase de diapositivas actual."],"If you are a pro member, enter your license key here to receive updates. %s":["Si eres un miembro Pro, introduce aquí tu clave de licencia para recibir actualizaciones. %s"],"Upgrade here":["Actualizar aquí"],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":["Opta por permitir que MetaSlider recopile responsablemente información sobre cómo usas nuestro plugin. Está desactivado por defecto, pero puede haber sido activado a través de un aviso. %s"],"View our detailed privacy policy":["Mira nuestra detallada política de privacidad"],"Slideshow settings saved":["Ajustes del pase de diapositivas guardados"],"Global settings saved":["Ajustes globales guardados"],"Pro settings saved":["Ajustes Pro guardados"],"Slideshow Defaults":["Ajustes por defecto de los pases de diapositivas"],"Update the default settings used when creating new slideshows.":["Actualiza los ajustes por defecto utilizados al crear nuevos pases de diapositivas."],"Default Slideshow Title":["Título por defecto del pase de diapositivas"],"Change the default title":["Cambiar el título por defecto"],"Base Image Width":["Ancho base de la imagen"],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":["Actualiza el ancho por defecto para la base de la imagen. Esto se usará para las dimensiones del pase de diapositivas y el recorte base de la imagen."],"Change the default width":["Cambiar el ancho por defecto"],"Base Image Height":["Altura base de la imagen"],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.":["Actualiza la altura por defecto para la base de la imagen. Esto se usará para el recorte base de la imagen y para las dimensiones del pase de diapositivas. Si se configura a un ancho del 100% la altura se ajustará en consecuencia."],"100% Width":["Ancho 100%"],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":["Aunque el ancho y alto definidos arriba podrán usarse para el recorte (si esté activo) y las dimensiones base del pase de diapositivas, puedes también configurar que el pase de diapositivas se ajuste a su contenedor."],"Global Settings":["Ajustes globales"],"Update the settings used for all the slideshows on your site.":["Actualiza los ajustes utilizados para todos los pases de diapositivas de tu sitio."],"License Key":["Clave de la licencia"],"Update license key":["Actualizar la clave de la licencia"],"Help Improve MetaSlider":["Ayudar a mejorar MetaSlider"],"Enable Mobile Settings":["Activa los ajustes para los móviles"],"Add option to hide slides and captions per screen size.":["Añadir la opción de ocultar diapositivas y leyendas por tamaño de pantalla."],"Mobile Settings":["Ajustes para los móviles"],"Set breakpoints for different screen sizes":["Establece puntos de ruptura para diferentes tamaños de pantalla"],"Disable Legacy Libraries":["Desactivas las bibliotecas heredadas"],"This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive Slides":["Este ajuste te permite de desactivar las bibliotecas de pases de diapositivas heredadas: Nivo Slider, Coin Slider y Responsive Slides"],"You can safely enable this setting. None of your slideshows use the legacy libraries.":["Puedes activar este ajuste sin problemas. Ninguna de tus pases de diapositivas utiliza las bibliotecas heredadas."],"You currently have %s slideshows that use legacy libraries.":["Actualmente tienes %s pases de diapositivas que utilizan bibliotecas heredadas."],"You currently have %s slideshow that uses legacy libraries.":["Actualmente tienes %s pases de diapositivas que utilizan bibliotecas heredadas."],"Enable MetaSlider on Admin Bar":["Activar MetaSlider en la barra de administración"],"Add and edit slideshows easier by showing MetaSlider on your admin bar.":["Añade y edita presentaciones más fácilmente mostrando MetaSlider en tu barra de administración."],"Enable Frontend Edit Links":["Activar los enlaces de edición de la portada"],"Edit slideshows easily by showing MetaSlider link under each slideshow.":["Edita presentaciones fácilmente mostrando el enlace MetaSlider debajo de cada presentación."],"Last":["Último"],"First":["Primero"],"New slides order":["Nuevo orden de diapositivas"],"Select the position for new added slides.":["Selecciona la posición para las nuevas diapositivas añadidas."],"Pro Settings":["Ajustes Pro"],"Update the MetaSlider Pro settings.":["Actualiza los ajustes de MetaSlider Pro."],"Select how many custom fields will display in the dropdown menu when you are inserting tags.":["Selecciona cuántos campos personalizados se mostrarán en el menú desplegable al insertar etiquetas."],"Change the maximum custom fields for Post Feed":["Cambia el máximo de campos personalizados para el feed de entradas"],"The data in this file does not appear to be valid.":["Los datos de este archivo no parecen ser válidos."],"Found %s slideshows":["Encontrados %s pases de diapositivas"],"Image search complete":["Búsqueda de imágenes completa"],"We are still searching for your images. Please wait.":["Todavía estamos buscando tus imágenes. Por favor, espera."],"You have no slideshows to import":["No tienes ningún pase de diapositivas que importar"],"Some images are missing":["Faltan algunas imágenes"],"When images are missing you will have to manually update or delete the slide after the import completes.":["Cuando haya imágenes no disponibles tendrás que subir o borrar manualmente la diapositiva cuando termine la importación. "],"Continue":["Seguir"],"Importing %s slideshows...":["Importando %s pases de diapositivas"],"Import successful":["Importación correcta"],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":["Importa fácilmente pases de diapositivas creados con MetaSlider. Este requiere un archivo generado desde la pestaña de exportación."],"Load slideshows":["Cargar pases de diapositivas"],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":["Si tienes un archivo de importación puedes subirlo aquí para procesarlo. La información de cada pase de diapositivas se mostrará abajo. Podrás confirmar antes de importar."],"Importing...":["Importando..."],"Processing...":["Procesando..."],"Upload file":["Subir archivo"],"Date: %s":["Fecha: %s"],"Version: v%s":["Versión: %s"],"All images required to import are accounted for.":["Todas las imágenes necesarias para la importación están contadas."],"The following images were not found:":["Las siguientes imágenes no se han encontrado:"],"No image name provided":["No se ha proporcionado ningún nombre de la imagen"],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":["Nota: Aún puedes importar pases de diapositivas que contengan imágenes que falten. Solo necesitarás actualizar o borrar manualmente esas diapositivas de sus páginas individuales de edición del pase de diapositivas."],"Import %s slideshows":["Importar %s pases de diapositivas"],"Select the slideshows you wish to import below, then press here to import them.":["Selecciona abajo los pases de diapositivas que quieres importar, luego pulsa aquí para importarlos."],"Post Feed slide":["Feed de diapositivas"],"External slide":["Diapositiva externa"],"Image not found<br>%s":["Imagen no encontrada<br>%s"],"No slides found":["No se ha encontrado ninguna diapositiva"],"Loading %s slideshows...":["Cargando %s pases de diapositivas"],"You have no slideshows to export":["No tienes ningún pase de diapositivas que exportar"],"Exporting %s slideshows...":["Exportando %s pases de diapositivas"],"Export successful":["Exportación correcta"],"No slideshows found.":["No se ha encontrado ningún pase de diapositivas."],"Create a new slideshow now":["Crea ahora un nuevo pase de diapositivas"],"If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the \"Load\" button.":["Si tiene pocos pases de diapositivas, los prepararemos automáticamente. Si tiene muchos pases de diapositivas, haz clic en el botón «Subir»."],"Choose the slideshows you wish to export.":["Selecciona los pases de diapositivas que quieres exportar."],"Click the \"Export\" button.":["Haz clic en el botón «Exportar»."],"A .json file will automatically be downloaded with all your slideshow data.":["Se descargará automáticamente un archivo .json con todos los datos de la presentación."],"A few notes on exporting slideshow images:":["Algunas notas sobre la exportación de imágenes de pases de diapositivas:"],"Your images need to be exported manually. Please upload them to the new website before importing these slideshows.":["Tus imágenes deben exportarse manualmente. Súbelas a la nueva web antes de importar estos pases de diapositivas."],"Images will need to keep the same file names on the new site.":["Las imágenes deberán mantener los mismos nombres de archivo en la nueva web."],"Read our guide on exporting images.":["Lee nuestra guía sobre la exportación de imágenes."],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":["Tienes %s pases de diapositivas que se pueden exportar. La información de cada pase de diapositivas se mostrará abajo."],"Refresh":["Recargar"],"Load":["Cargar"],"Export %s slideshows":["Exportar %s diapositivas"],"Select the slideshows you wish to export below, then press here to export them.":["Selecciona abajo las diapositivas que quieres exportar, luego pulsa aquí para exportarlos."],"Failed to open the settings page...":["Fallo al abrir la página de ajustes…"],"Opening settings page...":["Abriendo la página de ajustes…"],"Page not found: %s":["Página no encontrada: %s"],"Add a slide":["Añadir una diapositiva"],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":["Gracias por usar MetaSlider. Para empezar haz clic en el botón de «Añadir diapositiva» para crear tu primera diapositiva."],"Select images":["Seleccionar imágenes"],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":["Puedes añadir fácilmente una imagen aquí desde una de las opciones. Además, proporcionamos imágenes gratuitas de la biblioteca de Unsplash."],"Next step":["Siguiente paso"],"Search unsplash":["Buscar en Unsplash"],"Choose an image from the left, or search for any topic here to bring up more images.":["Elige una imagen de la izquierda o busca aquí cualquier temática para obtener más imágenes."],"Hide step":["Ocultar el paso"],"Create your slide":["Crea tu diapositiva"],"After you have selected an image, press here to create your slide.":["Después de seleccionar una imagen, pulsa aquí para crear tu diapositiva."],"Preview Slideshow":["Vista previa del pase de diapositivas"],"Now that you have some slides set, you can preview your slideshow by pressing here.":["Ahora que tienes algunas diapositivas, puedes previsualizar el pase de diapositivas haciendo clic aquí."],"Slideshow settings":["Ajustes del pase de diapositivas"],"Edit slideshow":["Editar el pase de diapositivas"],"Additional CSS Class":["Clase CSS adicional"],"Refresh preview":["Actualizar la vista previa"],"Loading slideshows list...":["Cargando la lista de pases de diapositivas..."],"Create one now!":["¡Crear uno ahora!"],"Loading slideshow":["Cargando el pase de diapositivas"],"Update preview":["Actualizar la vista previa"],"Select a slideshow":["Seleccionar un pase de diapositivas"],"Normal width":["Ancho normal"],"Wide width":["Ancho amplio"],"Full width":["Ancho completo"],"Use MetaSlider to insert slideshows and sliders in your page":["Usa MetaSlider para insertar pases de diapositivas y carruseles en tu página"],"slider":["carrusel"],"slideshow":["pase de diapositivas"],"gallery":["galería"],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":["¿Te gusta MetaSlider? Por favor, ayúdanos dando una opinión positiva en WordPress.org"],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":["Valora MetaSlider &rarr;"],"Keep the plugin name \"MetaSlider\" when possible\u0004Select slideshow to insert into post":["Selecciona el pase de diapositivas que quieres insertar en la entrada"],"Short for milliseconds\u0004ms":["ms"],"This is a keyboard shortcut.\u0004 (alt + p)":[" (alt + p)"],"1000 by 1000 pixels\u0004%s by %s pixels":["%s por %s píxeles"],"The ENTER key on a keyboard\u0004Enter":["Intro"],"The ESCAPE key on a keyboard\u0004Escape":["Esc"],"number of slides, ex \"7 slides\"\u0004%s slides":["%s diapositiva(s)"]}}}languages/ml-slider-fr_FR.po000064400000370553151213255430011754 0ustar00# Translation of Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release) in French (France)
# This file is distributed under the same license as the Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release) package.
msgid ""
msgstr ""
"Project-Id-Version: Plugins - Slider, Gallery, and Carousel by MetaSlider "
"&#8211; Responsive WordPress Slideshows - Stable (latest release)\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2024-06-13T13:40:12+00:00\n"
"PO-Revision-Date: 2024-06-16 00:41+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 3.4.4\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: ml-slider.php
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
#: ml-slider.php
msgid "https://www.metaslider.com"
msgstr "https://www.metaslider.com"

#. Description of the plugin
#: ml-slider.php
msgid ""
"MetaSlider gives you the power to create a beautiful slideshow, carousel, or "
"gallery on your WordPress site."
msgstr ""
"MetaSlider vous permet de créer un magnifique diaporama, un carrousel ou une "
"galerie sur votre site WordPress."

#: admin/Notices.php:95
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""
"Vous aimez MetaSlider ? Aidez-nous en donnant un avis positif sur WordPress."
"org"

#: admin/Notices.php:105
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""
"Ajoutez de la vie à votre site grâce à des couches animées et des "
"diapositives vidéo avec MetaSlider Pro."

#: admin/Notices.php:116
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""
"Augmentez vos revenus et vos conversions grâce aux diapositives vidéo et "
"bien d’autres fonctionnalités de MetaSlider Pro"

#: admin/Notices.php:127
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""
"Pouvez-vous traduire ? Vous souhaitez améliorer MetaSlider pour les "
"internautes parlant votre langue ?"

#: admin/Notices.php:317
msgid "weeks"
msgstr "semaines"

#: admin/Notices.php:337
msgid "Let's Start &rarr;"
msgstr "Commençons &rarr;"

#: admin/Notices.php:338
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr "Avis sur MetaSlider &rarr;"

#: admin/Notices.php:339
msgid "Find out more &rarr;"
msgstr "En savoir plus →"

#: admin/Notices.php:340
msgid "Get MetaSlider Pro &rarr;"
msgstr "Obtenez MetaSlider Pro &rarr;"

#: admin/Notices.php:341
msgid "Sign up &rarr;"
msgstr "S’inscrire &rarr;"

#: admin/Notices.php:342
msgid "Go there &rarr;"
msgstr "Allez-y &rarr;"

#: admin/Notices.php:344
msgid "Read more"
msgstr "En savoir plus"

#: admin/Notices.php:358 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:141 inc/slide/metaslide.image.class.php:124
#: inc/slide/metaslide.image.class.php:228
#: inc/slide/metaslide.image.class.php:349 ml-slider.php:870 ml-slider.php:952
#: ml-slider.php:1064 ml-slider.php:2509 ml-slider.php:2550
msgid "The security check failed. Please refresh the page and try again."
msgstr ""
"Le contrôle de sécurité a échoué. Veuillez recharger la page et réessayer."

#: admin/Notices.php:366 admin/routes/api.php:139
#: inc/slide/metaslide.class.php:149 inc/slide/metaslide.image.class.php:132
#: inc/slide/metaslide.image.class.php:151
#: inc/slide/metaslide.image.class.php:236 ml-slider.php:878 ml-slider.php:960
#: ml-slider.php:1072 ml-slider.php:2517 ml-slider.php:2558
msgid "Access denied. Sorry, you do not have permission to complete this task."
msgstr ""
"Accès refusé. Désolé, vous n’avez pas le droit de terminer cette tâche."

#: admin/Notices.php:374 inc/slide/metaslide.class.php:158
#: inc/slide/metaslide.image.class.php:141
#: inc/slide/metaslide.image.class.php:245
#: inc/slide/metaslide.image.class.php:367 ml-slider.php:887 ml-slider.php:969
#: ml-slider.php:1081 ml-slider.php:2526 ml-slider.php:2567
msgid "Bad request"
msgstr "Requête incorrecte"

#: admin/Notices.php:382
msgid "This item does not exist. Please refresh the page and try again."
msgstr "Cet élément n’existe pas. Veuillez recharger la page et réessayer."

#: admin/Notices.php:395
msgid "The option was successfully updated"
msgstr "L’option a été mise à jour avec succès"

#: admin/Notices.php:461
msgid "The requested data does not exist."
msgstr "Les données demandées n’existent pas."

#: admin/Notices.php:486
msgid "The attempt to update the option failed."
msgstr "La tentative de mise à jour de l’option a échoué."

#: admin/Pages.php:130
msgid "URL"
msgstr "URL"

#: admin/Pages.php:131 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Légende"

#: admin/Pages.php:132
msgid "New Window"
msgstr "Nouvelle fenêtre"

#: admin/Pages.php:133
msgid "Please confirm that you would like to delete this slideshow."
msgstr "Veuillez confirmer que vous souhaitez supprimer ce diaporama."

#: admin/Pages.php:134
msgid "Undo"
msgstr "Annuler"

#: admin/Pages.php:135
msgid "Slide restored"
msgstr "Diapositive restaurée"

#: admin/Pages.php:136
msgid "Slide deleted"
msgstr "Diapositive supprimée"

#: admin/Pages.php:137 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr "Succès"

#: admin/Pages.php:138
msgid "Item was copied to your clipboard"
msgstr "L’élément a été copié dans votre presse-papiers"

#: admin/Pages.php:139
msgid "Press to undo"
msgstr "Cliquez pour annuler"

#: admin/Pages.php:141
msgid "Select replacement image"
msgstr "Sélectionnez l’image de remplacement"

#: admin/Pages.php:151
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Attention : ce réglage est uniquement réservé aux développeurs. Si vous "
"n’êtes pas sur(e), laissez-le coché."

#: admin/routes/api.php:419
msgid "The request format was not valid."
msgstr "Le format de la demande n’était pas valide."

#: admin/routes/api.php:427 admin/routes/api.php:549
msgid "This slideshow is no longer available."
msgstr "Ce diaporama n’est plus disponible."

#: admin/routes/api.php:514
msgid "Nothing to import."
msgstr "Il y a rien à importer."

#: admin/routes/api.php:556
msgid "This was not a slideshow, so we cannot delete it."
msgstr "Ce n’était pas un diaporama, nous ne pouvons donc pas le supprimer."

#: admin/routes/api.php:769
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""
"Il ne s’agissait pas d’un diaporama, nous ne pouvons donc pas mettre à jour "
"le réglage."

#: admin/routes/api.php:878
msgid "The title cannot be empty."
msgstr "Le titre ne peut pas être vide."

#: admin/routes/api.php:882 admin/routes/api.php:1069
msgid "The field (%s) cannot be empty"
msgstr "Le champ (%s) ne peut pas être vide"

#: admin/routes/api.php:1059 admin/assets/dist/js/app.js:2
msgid "Maximum Number of Custom Field in Post Feed Sliders"
msgstr ""
"Nombre maximum de champs personnalisés dans les diaporamas du flux de "
"publications"

#: admin/routes/api.php:1165
msgid "Import slug not found"
msgstr "Le slug d’importation n’a pas été trouvé"

#: admin/routes/api.php:1181
msgid "Import data could not be processed"
msgstr "Les données d’importation n’ont pas pu être traitées"

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr "Nous n’avons pu trouver aucune image à importer."

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr "Nouveau diaporama"

#: admin/slideshows/Settings.php:85 inc/slider/metaslider.class.php:143
msgid "Previous"
msgstr "Précédent"

#: admin/slideshows/Settings.php:86 inc/slider/metaslider.class.php:144
#: themes/radix/v1.0.0/theme.php:40
msgid "Next"
msgstr "Suivante"

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr "Aucun thème trouvé."

#: admin/slideshows/Themes.php:277
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""
"Nous avons retiré le thème que vous avez sélectionné car il n’a pu être "
"trouvé. Son dossier a-t-il est supprimé ?"

#: admin/Table.php:38
msgid ""
"You don't have any slideshows yet. Click %shere%s to create a new slideshow."
msgstr ""
"Vous n’avez pas encore de diaporama. Cliquez sur %sici%s pour créer un "
"nouveau diaporama."

#: admin/Table.php:55
msgid "Published"
msgstr "Publié"

#: admin/Table.php:59 admin/Table.php:87 admin/Table.php:337
msgid "Trash"
msgstr "Corbeille"

#: admin/Table.php:69 admin/views/pages/parts/toolbar.php:44
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr "Prévisualisation"

#: admin/Table.php:70 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Titre"

#: admin/Table.php:71
msgid "Created"
msgstr "Créé"

#: admin/Table.php:72 admin/views/pages/parts/slider-settings-legacy.php:946
#: admin/views/pages/parts/slider-settings.php:747
msgid "Shortcode"
msgstr "Code court"

#: admin/Table.php:82 admin/Table.php:322 inc/slide/metaslide.class.php:406
msgid "Restore"
msgstr "Restaurer"

#: admin/Table.php:83 admin/Table.php:323 inc/slide/metaslide.class.php:416
msgid "Delete Permanently"
msgstr "Supprimer définitivement"

#: admin/Table.php:131 admin/views/pages/parts/shortcode.php:11
msgid "Click to copy shortcode."
msgstr "Cliquez pour copier le code court"

#: admin/Table.php:336
msgid "Edit"
msgstr "Modifier"

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr "Logo"

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr "Ignorer"

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr "Diaporamas"

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr "Ajouter un nouveau"

#: admin/views/pages/dashboard.php:28
msgid "Slideshows permanently deleted."
msgstr "Les diaporamas sont définitivement supprimés."

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr "Rechercher"

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr "Mise à niveau du navigateur nécessaire"

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""
"Il semble que vous utilisiez %s. Bien que MetaSlider prenne en charge %s sur "
"l’interface publique où les internautes voient vos diaporamas, certains des "
"outils que nous fournissons ici nécessitent un navigateur moderne."

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr "Microsoft Internet Explorer 11"

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr "IE11"

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr "Mettez à jour Internet Explorer"

#: admin/views/pages/parts/slider-settings-legacy.php:20
#: admin/views/pages/parts/slider-settings.php:24
msgid "Main Options"
msgstr "Options principales"

#: admin/views/pages/parts/slider-settings-legacy.php:30
#: admin/views/pages/parts/slider-settings-legacy.php:676
#: admin/views/pages/parts/slider-settings.php:34
msgid "Width"
msgstr "Largeur"

#: admin/views/pages/parts/slider-settings-legacy.php:32
#: admin/views/pages/parts/slider-settings.php:36
#: admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Largeur du diaporama"

#: admin/views/pages/parts/slider-settings-legacy.php:33
#: admin/views/pages/parts/slider-settings-legacy.php:46
#: admin/views/pages/parts/slider-settings-legacy.php:546
#: admin/views/pages/parts/slider-settings.php:37
#: admin/views/pages/parts/slider-settings.php:50
#: admin/views/pages/parts/slider-settings.php:475
msgid "px"
msgstr "px"

#: admin/views/pages/parts/slider-settings-legacy.php:43
#: admin/views/pages/parts/slider-settings-legacy.php:692
#: admin/views/pages/parts/slider-settings.php:47
msgid "Height"
msgstr "Hauteur"

#: admin/views/pages/parts/slider-settings-legacy.php:45
#: admin/views/pages/parts/slider-settings.php:49
msgid "Slideshow height"
msgstr "Hauteur du diaporama"

#: admin/views/pages/parts/slider-settings-legacy.php:52
#: admin/views/pages/parts/slider-settings.php:56
msgid "Transition Effect"
msgstr "Effet de transition"

#: admin/views/pages/parts/slider-settings-legacy.php:54
#: admin/views/pages/parts/slider-settings.php:58
msgid "This animation is used when changing slides."
msgstr "Cette animation est utilisée lors du changement de diapositive."

#: admin/views/pages/parts/slider-settings-legacy.php:68
#: admin/views/pages/parts/slider-settings-legacy.php:564
#: admin/views/pages/parts/slider-settings.php:493
msgid "Random"
msgstr "Aléatoire"

#: admin/views/pages/parts/slider-settings-legacy.php:72
msgid "Swirl"
msgstr "Tourbillon"

#: admin/views/pages/parts/slider-settings-legacy.php:76
msgid "Rain"
msgstr "Pluie"

#: admin/views/pages/parts/slider-settings-legacy.php:80
msgid "Straight"
msgstr "Tout droit"

#: admin/views/pages/parts/slider-settings-legacy.php:84
msgid "Slice Down"
msgstr "Balayage bas"

#: admin/views/pages/parts/slider-settings-legacy.php:88
msgid "Slice Up"
msgstr "Balayage haut"

#: admin/views/pages/parts/slider-settings-legacy.php:92
msgid "Slice Up Left"
msgstr "Balayage de haut à gauche"

#: admin/views/pages/parts/slider-settings-legacy.php:96
msgid "Slide Up Down"
msgstr "Glissement de haut en bas"

#: admin/views/pages/parts/slider-settings-legacy.php:100
msgid "Slice Up Down Left"
msgstr "Balayage de haut en bas à gauche"

#: admin/views/pages/parts/slider-settings-legacy.php:104
#: admin/views/pages/parts/slider-settings.php:72
msgid "Fade"
msgstr "Fondu"

#: admin/views/pages/parts/slider-settings-legacy.php:108
msgid "Fold"
msgstr "Plier"

#: admin/views/pages/parts/slider-settings-legacy.php:112
msgid "Slide in Right"
msgstr "Glissement vers la droite"

#: admin/views/pages/parts/slider-settings-legacy.php:116
msgid "Slide in Left"
msgstr "Glissement vers la gauche"

#: admin/views/pages/parts/slider-settings-legacy.php:120
msgid "Box Random"
msgstr "Boite aléatoire"

#: admin/views/pages/parts/slider-settings-legacy.php:124
msgid "Box Rain"
msgstr "Mosaïque"

#: admin/views/pages/parts/slider-settings-legacy.php:128
msgid "Box Rain Reverse"
msgstr "Mosaïque inversée"

#: admin/views/pages/parts/slider-settings-legacy.php:132
msgid "Box Rain Grow"
msgstr "Boîte à pluie"

#: admin/views/pages/parts/slider-settings-legacy.php:136
msgid "Box Rain Grow Reverse"
msgstr "Mosaïque inversée"

#: admin/views/pages/parts/slider-settings-legacy.php:140
#: admin/views/pages/parts/slider-settings.php:76
msgid "Slide"
msgstr "Défilement"

#: admin/views/pages/parts/slider-settings-legacy.php:147
#: admin/views/pages/parts/slider-settings.php:83
msgid "Arrows"
msgstr "Flèches"

#: admin/views/pages/parts/slider-settings-legacy.php:152
#: admin/views/pages/parts/slider-settings.php:88
msgid "Show the Previous / Next arrows."
msgstr "Afficher les flèches précedent/suivant."

#: admin/views/pages/parts/slider-settings-legacy.php:166
#: admin/views/pages/parts/slider-settings.php:102
msgid "Navigation"
msgstr "Navigation"

#: admin/views/pages/parts/slider-settings-legacy.php:169
#: admin/views/pages/parts/slider-settings.php:105
msgid "Show navigation options so that users can browse the slides."
msgstr ""
"Afficher les options de navigation afin que les utilisateurs/utilisatrices "
"puissent parcourir les diapositives."

#: admin/views/pages/parts/slider-settings-legacy.php:175
#: admin/views/pages/parts/slider-settings.php:111
msgid "Hidden"
msgstr "Masqué"

#: admin/views/pages/parts/slider-settings-legacy.php:178
#: admin/views/pages/parts/slider-settings.php:114
msgid "Dots"
msgstr "Points"

#: admin/views/pages/parts/slider-settings-legacy.php:181
msgid "Thumbnail"
msgstr "Miniature"

#: admin/views/pages/parts/slider-settings-legacy.php:185
msgid "Filmstrip"
msgstr "Bande de film"

#: admin/views/pages/parts/slider-settings-legacy.php:211
#: admin/views/pages/parts/slider-settings.php:147
msgid "100% width"
msgstr "100% de largeur"

#: admin/views/pages/parts/slider-settings-legacy.php:216
#: admin/views/pages/parts/slider-settings.php:152
msgid "Stretch the slideshow output to fill it's parent container."
msgstr ""
"Étirer le diaporama pour qu’il remplisse la largeur de son conteneur parent."

#: admin/views/pages/parts/slider-settings-legacy.php:238
#: admin/views/pages/parts/slider-settings.php:168
msgid "Theme"
msgstr "Thème"

#: admin/views/pages/parts/slider-settings-legacy.php:273
#: admin/views/pages/parts/slider-settings.php:202
msgid "Mobile Options"
msgstr "Options mobile"

#: admin/views/pages/parts/slider-settings-legacy.php:278
#: admin/views/pages/parts/slider-settings.php:207
msgid "Hide arrows on"
msgstr "Masquer les flèches sur"

#: admin/views/pages/parts/slider-settings-legacy.php:283
#: admin/views/pages/parts/slider-settings.php:212
msgid ""
"When enabled this setting will hide the arrows on screen widths less than "
"%spx."
msgstr ""
"Si activé, ce réglage masque les flèches lorsque la largeur de l’écran est "
"inférieure à %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:293
#: admin/views/pages/parts/slider-settings-legacy.php:304
#: admin/views/pages/parts/slider-settings.php:222
#: admin/views/pages/parts/slider-settings.php:233
msgid ""
"When enabled this setting will hide the arrows on screen widths of %1$spx to "
"%2$spx."
msgstr ""
"Si activé, ce réglage masque les flèches sur les écrans d’une largeur "
"comprise entre %1$spx et %2$spx."

#: admin/views/pages/parts/slider-settings-legacy.php:315
#: admin/views/pages/parts/slider-settings.php:244
msgid ""
"When enabled this setting will hide the arrows on screen widths equal to or "
"greater than %spx."
msgstr ""
"Si activé, ce réglage masque les flèches lorsque la largeur de l’écran est "
"supérieure ou égale à %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:327
#: admin/views/pages/parts/slider-settings.php:256
msgid "Hide navigation on"
msgstr "Masquer la navigation sur"

#: admin/views/pages/parts/slider-settings-legacy.php:332
#: admin/views/pages/parts/slider-settings.php:261
msgid ""
"When enabled this setting will hide the navigation on screen widths less "
"than %spx."
msgstr ""
"Si activé, ce réglage masque la navigation lorsque la largeur de l’écran est "
"inférieure à %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:342
#: admin/views/pages/parts/slider-settings-legacy.php:353
#: admin/views/pages/parts/slider-settings.php:271
#: admin/views/pages/parts/slider-settings.php:282
msgid ""
"When enabled this setting will hide the navigation on screen widths of "
"%1$spx to %2$spx."
msgstr ""
"Si activé, ce réglage masque la navigation sur les écrans d’une largeur "
"comprise entre %1$spx et %2$spx."

#: admin/views/pages/parts/slider-settings-legacy.php:364
#: admin/views/pages/parts/slider-settings.php:293
msgid ""
"When enabled this setting will hide the navigation on screen widths equal to "
"or greater than %spx."
msgstr ""
"Si activé, ce réglage masque la navigation lorsque la largeur de l’écran est "
"égale ou supérieure à %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:389
#: admin/views/pages/parts/slider-settings.php:318
msgid "Advanced Options"
msgstr "Réglages avancés"

#: admin/views/pages/parts/slider-settings-legacy.php:394
#: admin/views/pages/parts/slider-settings.php:323
msgid "Center align"
msgstr "Alignement central"

#: admin/views/pages/parts/slider-settings-legacy.php:399
#: admin/views/pages/parts/slider-settings.php:328
msgid "Center align the slideshow in the available space on your website."
msgstr "Aligner le diaporama au centre de l’espace disponible sur votre site."

#: admin/views/pages/parts/slider-settings-legacy.php:407
#: admin/views/pages/parts/slider-settings.php:336
msgid "Auto play"
msgstr "Lecture auto"

#: admin/views/pages/parts/slider-settings-legacy.php:412
#: admin/views/pages/parts/slider-settings.php:341
msgid "Transition between slides automatically."
msgstr "Transition automatique entre les diapositives."

#: admin/views/pages/parts/slider-settings-legacy.php:420
#: admin/views/pages/parts/slider-settings.php:349
msgid "Play / Pause Button"
msgstr "Bouton Lecture/pause"

#: admin/views/pages/parts/slider-settings-legacy.php:425
#: admin/views/pages/parts/slider-settings.php:354
msgid "This allows user to pause or resume Auto Play on the slideshow."
msgstr ""
"Ceci permet à l’utilisateur/utilisatrice de mettre en pause ou de reprendre "
"la lecture automatique du diaporama."

#: admin/views/pages/parts/slider-settings-legacy.php:433
#: admin/views/pages/parts/slider-settings.php:362
msgid "Loop"
msgstr "Boucle"

#: admin/views/pages/parts/slider-settings-legacy.php:435
#: admin/views/pages/parts/slider-settings.php:364
msgid ""
"If you choose \"Loop continuously\", the slides will loop infinitely. If you "
"choose \"Stop on first slide\", the slideshow will stop on the first slide "
"after showing all the items. If you choose \"Stop on last slide\", the "
"slides will stop on the last slide."
msgstr ""
"Si vous choisissez « En continu », les diapositives tourneront en boucle à "
"l’infini. Si vous choisissez « Arrêter à la première diapositive », le "
"diaporama s’arrêtera à la première diapositive après avoir montré tous les "
"éléments. Si vous choisissez « Arrêter à la dernière diapositive », le "
"diaporama s’arrêtera à la dernière diapositive."

#: admin/views/pages/parts/slider-settings-legacy.php:438
#: admin/views/pages/parts/slider-settings.php:367
msgid "Loop continuously"
msgstr "Boucle en continu"

#: admin/views/pages/parts/slider-settings-legacy.php:439
#: admin/views/pages/parts/slider-settings.php:368
msgid "Stop on last slide"
msgstr "Arrêter sur la dernière diapositive"

#: admin/views/pages/parts/slider-settings-legacy.php:440
#: admin/views/pages/parts/slider-settings.php:369
#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:489
msgid "Stop on first slide"
msgstr "Arrêter sur la première diapositive"

#: admin/views/pages/parts/slider-settings-legacy.php:446
#: admin/views/pages/parts/slider-settings.php:375
msgid "Image Crop"
msgstr "Recadrage de l’image"

#: admin/views/pages/parts/slider-settings-legacy.php:451
#: admin/views/pages/parts/slider-settings.php:380
msgid "Smart Crop"
msgstr "Recadrage intelligent"

#: admin/views/pages/parts/slider-settings-legacy.php:458
#: admin/views/pages/parts/slider-settings.php:387
msgid "Standard"
msgstr "Standard"

#: admin/views/pages/parts/slider-settings-legacy.php:465
#: admin/views/pages/parts/slider-settings.php:394
msgid "Disabled"
msgstr "Désactivé"

#: admin/views/pages/parts/slider-settings-legacy.php:472
#: admin/views/pages/parts/slider-settings.php:401
msgid "Disabled (Smart Pad)"
msgstr "Désactivé (Smart Pad)"

#: admin/views/pages/parts/slider-settings-legacy.php:479
#: admin/views/pages/parts/slider-settings.php:408
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size."
msgstr ""
"Cadrage intelligent veille à ce que les diapositives « responsives » soient "
"recadrés à un ratio qui aboutit à une taille compatible avec celle du "
"diaporama."

#: admin/views/pages/parts/slider-settings-legacy.php:487
#: admin/views/pages/parts/slider-settings.php:416
msgid "Smooth Height"
msgstr "Hauteur douce"

#: admin/views/pages/parts/slider-settings-legacy.php:492
#: admin/views/pages/parts/slider-settings.php:421
msgid "Allow navigation to follow the slide's height smoothly."
msgstr ""
"Autoriser la navigation à suivre la hauteur de la diapositive en douceur."

#: admin/views/pages/parts/slider-settings-legacy.php:500
#: admin/views/pages/parts/slider-settings.php:429
msgid "Carousel mode"
msgstr "Mode carrousel"

#: admin/views/pages/parts/slider-settings-legacy.php:505
msgid ""
"Display multiple slides at once. Slideshow output will be 100% wide. "
"Carousel Mode only uses the \"Slide\" Effect."
msgstr ""
"Afficher plusieurs diapositives à la fois. La largeur du diaporama sera de "
"100 %. Le mode carrousel n’utilise que l’effet « Glisser »."

#: admin/views/pages/parts/slider-settings-legacy.php:523
#: admin/views/pages/parts/slider-settings.php:452
msgid "Loop Carousel Continuously"
msgstr "Boucle du carrousel en continu"

#: admin/views/pages/parts/slider-settings-legacy.php:528
#: admin/views/pages/parts/slider-settings.php:457
msgid ""
"Infinite loop of slides when Carousel Mode is enabled. This option disables "
"arrows and navigation."
msgstr ""
"Boucle infinie de diapositives lorsque le mode « Carrousel » est activé. "
"Cette option désactive les flèches et la navigation."

#: admin/views/pages/parts/slider-settings-legacy.php:539
#: admin/views/pages/parts/slider-settings.php:468
msgid "Carousel margin"
msgstr "Marge du carrousel"

#: admin/views/pages/parts/slider-settings-legacy.php:542
#: admin/views/pages/parts/slider-settings.php:471
msgid "Pixel margin between slides in carousel."
msgstr "Marge en pixels entre les diapositives dans le carrousel."

#: admin/views/pages/parts/slider-settings-legacy.php:551
#: admin/views/pages/parts/slider-settings.php:480
msgid "Fade in"
msgstr "Fondu en avant"

#: admin/views/pages/parts/slider-settings-legacy.php:556
#: admin/views/pages/parts/slider-settings.php:485
msgid ""
"This adds an animation when the slideshow loads. It only uses the \"Fade\" "
"transition effect."
msgstr ""
"Ceci ajoute une animation au chargement du diaporama. Il n’utilise que "
"l’effet de transition « Fondu »."

#: admin/views/pages/parts/slider-settings-legacy.php:569
#: admin/views/pages/parts/slider-settings.php:498
msgid "Randomise the order of the slides."
msgstr "Randomiser l’ordre des diapositives."

#: admin/views/pages/parts/slider-settings-legacy.php:577
#: admin/views/pages/parts/slider-settings.php:506
msgid "Hover pause"
msgstr "Pause au survol"

#: admin/views/pages/parts/slider-settings-legacy.php:582
#: admin/views/pages/parts/slider-settings.php:511
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Mettre le diaporama en pause au survol, puis reprendre lorsqu’il ne l’est "
"plus."

#: admin/views/pages/parts/slider-settings-legacy.php:590
#: admin/views/pages/parts/slider-settings.php:519
msgid "Reverse"
msgstr "Inverser"

#: admin/views/pages/parts/slider-settings-legacy.php:595
#: admin/views/pages/parts/slider-settings.php:524
msgid "Reverse the animation direction."
msgstr "Inverser le sens de l’animation."

#: admin/views/pages/parts/slider-settings-legacy.php:603
#: admin/views/pages/parts/slider-settings.php:532
msgid "Touch Swipe"
msgstr "Toucher balayage"

#: admin/views/pages/parts/slider-settings-legacy.php:608
#: admin/views/pages/parts/slider-settings.php:537
msgid "Allow touch swipe navigation of the slider on touch-enabled devices."
msgstr ""
"Permettre la navigation par balayage tactile du diaporama sur les appareils "
"dotés d’un écran tactile."

#: admin/views/pages/parts/slider-settings-legacy.php:621
#: admin/views/pages/parts/slider-settings.php:550
msgid "Slide delay"
msgstr "Délai entre les diapositives"

#: admin/views/pages/parts/slider-settings-legacy.php:623
#: admin/views/pages/parts/slider-settings.php:552
msgid "How long to display each slide, in milliseconds."
msgstr "Durée d’affichage de chaque diapositive, en millisecondes."

#: admin/views/pages/parts/slider-settings-legacy.php:627
#: admin/views/pages/parts/slider-settings-legacy.php:647
#: admin/views/pages/parts/slider-settings-legacy.php:776
#: admin/views/pages/parts/slider-settings-legacy.php:808
#: admin/views/pages/parts/slider-settings.php:556
#: admin/views/pages/parts/slider-settings.php:576
msgctxt "Short for milliseconds"
msgid "ms"
msgstr "ms"

#: admin/views/pages/parts/slider-settings-legacy.php:641
#: admin/views/pages/parts/slider-settings.php:570
msgid "Transition Speed"
msgstr "Vitesse d’animation"

#: admin/views/pages/parts/slider-settings-legacy.php:643
#: admin/views/pages/parts/slider-settings.php:572
msgid ""
"Choose the speed of the animation in milliseconds. You can select the "
"animation in the \"Effect\" field."
msgstr ""
"Choisir la vitesse de l’animation en millisecondes. Vous pouvez sélectionner "
"l’animation dans le champ « Effet »."

#: admin/views/pages/parts/slider-settings-legacy.php:661
#: admin/views/pages/parts/slider-settings-legacy.php:663
msgid "Number of slices"
msgstr "Nombre de tranches"

#: admin/views/pages/parts/slider-settings-legacy.php:673
#: admin/views/pages/parts/slider-settings-legacy.php:678
#: admin/views/pages/parts/slider-settings-legacy.php:689
#: admin/views/pages/parts/slider-settings-legacy.php:694
msgid "Number of squares"
msgstr "Nombre de carrés"

#: admin/views/pages/parts/slider-settings-legacy.php:700
#: admin/views/pages/parts/slider-settings.php:585
msgid "Slide direction"
msgstr "Sens du défilement"

#: admin/views/pages/parts/slider-settings-legacy.php:702
#: admin/views/pages/parts/slider-settings.php:587
msgid ""
"Select the direction that slides will move. Vertical will not work if "
"\"Carousel mode\" is enabled or \"Effect\" is set to \"Fade\"."
msgstr ""
"Sélectionner la direction dans laquelle les diapositives se déplaceront. Le "
"mode vertical ne fonctionne pas si le « Mode carrousel » est activé ou si "
"l’« Effet » est réglé sur « Fondu »."

#: admin/views/pages/parts/slider-settings-legacy.php:709
#: admin/views/pages/parts/slider-settings.php:594
msgid "Horizontal"
msgstr "Horizontal"

#: admin/views/pages/parts/slider-settings-legacy.php:716
#: admin/views/pages/parts/slider-settings.php:601
msgid "Vertical"
msgstr "Vertical"

#: admin/views/pages/parts/slider-settings-legacy.php:727
#: admin/views/pages/parts/slider-settings.php:612
msgid "Easing"
msgstr "Easing"

#: admin/views/pages/parts/slider-settings-legacy.php:729
#: admin/views/pages/parts/slider-settings.php:614
msgid ""
"Easing adds gradual acceleration and deceleration to slide transitions, "
"rather than abrupt starts and stops. Easing only uses the \"Slide\" Effect."
msgstr ""
"L’assouplissement ajoute une accélération et une décélération progressives "
"aux transitions de diapositives, plutôt que des démarrages et des arrêts "
"brusques. L’assouplissement n’utilise que l’effet « Diapositive »."

#: admin/views/pages/parts/slider-settings-legacy.php:739
msgid "Previous text"
msgstr "Précédent"

#: admin/views/pages/parts/slider-settings-legacy.php:741
msgid "Set the text for the \"previous\" direction item."
msgstr "Définir le texte pour l’élément de direction « précédent »."

#: admin/views/pages/parts/slider-settings-legacy.php:752
msgid "Next text"
msgstr "Suivant"

#: admin/views/pages/parts/slider-settings-legacy.php:754
msgid "Set the text for the \"next\" direction item."
msgstr "Définir le texte pour l’élément de direction « suivant »"

#: admin/views/pages/parts/slider-settings-legacy.php:770
msgid "Square delay"
msgstr "Délai entre les carrés"

#: admin/views/pages/parts/slider-settings-legacy.php:772
msgid "Delay between squares in ms."
msgstr "Délai entre les carrés en ms."

#: admin/views/pages/parts/slider-settings-legacy.php:786
msgid "Opacity"
msgstr "Opacité"

#: admin/views/pages/parts/slider-settings-legacy.php:788
msgid "Opacity of title and navigation, between 0 and 1."
msgstr "Opacité du titre et de la navigation, entre 0 et 1."

#: admin/views/pages/parts/slider-settings-legacy.php:802
msgid "Caption speed"
msgstr "Vitesse de la légende"

#: admin/views/pages/parts/slider-settings-legacy.php:804
msgid "Set the fade in speed of the caption."
msgstr "Définir la vitesse du fondu de la légende."

#: admin/views/pages/parts/slider-settings-legacy.php:817
#: admin/views/pages/parts/slider-settings.php:624
msgid "Accessibility Options"
msgstr "Options d’accessibilité"

#: admin/views/pages/parts/slider-settings-legacy.php:823
#: admin/views/pages/parts/slider-settings.php:630
msgid "Keyboard Controls"
msgstr "Contrôles au clavier"

#: admin/views/pages/parts/slider-settings-legacy.php:828
#: admin/views/pages/parts/slider-settings.php:635
msgid "Use arrow keys to get to the next slide."
msgstr "Utiliser les touches fléchées pour passer à la diapositive suivante."

#: admin/views/pages/parts/slider-settings-legacy.php:836
#: admin/views/pages/parts/slider-settings.php:643
msgid "Tabindex for navigation"
msgstr "Tabindex pour la navigation"

#: admin/views/pages/parts/slider-settings-legacy.php:841
#: admin/views/pages/parts/slider-settings.php:648
msgid "This helps make the slideshow navigation more accessible."
msgstr "Cela permet de rendre la navigation du diaporama plus accessible."

#: admin/views/pages/parts/slider-settings-legacy.php:849
#: admin/views/pages/parts/slider-settings.php:656
msgid "ARIA Live"
msgstr "Aria live"

#: admin/views/pages/parts/slider-settings-legacy.php:854
#: admin/views/pages/parts/slider-settings.php:661
msgid ""
"If Autoplay is enabled, this causes screen readers to announce that the "
"slides are changing."
msgstr ""
"Si la lecture automatique est activée, les lecteurs d’écran annoncent que "
"les diapositives sont en train de changer."

#: admin/views/pages/parts/slider-settings-legacy.php:862
#: admin/views/pages/parts/slider-settings.php:669
msgid "ARIA Current"
msgstr "ARIA actuel"

#: admin/views/pages/parts/slider-settings-legacy.php:867
#: admin/views/pages/parts/slider-settings.php:674
msgid ""
"This is used on the navigation button for the active slide. It helps screen "
"readers understand which slide is active."
msgstr ""
"Ceci est utilisé sur le bouton de navigation de la diapositive active. Il "
"aide les lecteurs d’écran à comprendre quelle diapositive est active."

#: admin/views/pages/parts/slider-settings-legacy.php:875
#: admin/views/pages/parts/slider-settings.php:682
msgid "Developer Options"
msgstr "Options pour les développeurs"

#: admin/views/pages/parts/slider-settings-legacy.php:881
#: admin/views/pages/parts/slider-settings.php:688
msgid "CSS classes"
msgstr "Classes CSS"

#: admin/views/pages/parts/slider-settings-legacy.php:883
#: admin/views/pages/parts/slider-settings.php:690
msgid ""
"Enter custom CSS classes to apply to the slider wrapper. Separate multiple "
"classes with a space."
msgstr ""
"Saisissez les classes CSS personnalisées à appliquer au conteneur du "
"diaporama. Séparez plusieurs classes par un espace."

#: admin/views/pages/parts/slider-settings-legacy.php:894
#: admin/views/pages/parts/slider-settings.php:701
msgid "Print CSS"
msgstr "Imprimer CSS"

#: admin/views/pages/parts/slider-settings-legacy.php:899
#: admin/views/pages/parts/slider-settings.php:706
msgid "Uncheck this if you would like to include your own CSS."
msgstr "Décocher ceci si vous souhaitez inclure votre propre CSS."

#: admin/views/pages/parts/slider-settings-legacy.php:907
#: admin/views/pages/parts/slider-settings.php:714
msgid "Print JS"
msgstr "Imprimer JS"

#: admin/views/pages/parts/slider-settings-legacy.php:912
#: admin/views/pages/parts/slider-settings.php:719
msgid "Uncheck this if you would like to include your own Javascript."
msgstr "Décocher ceci si vous souhaitez inclure votre propre Javascript."

#: admin/views/pages/parts/slider-settings-legacy.php:920
#: admin/views/pages/parts/slider-settings.php:727
msgid "No conflict mode"
msgstr "Mode sans conflit"

#: admin/views/pages/parts/slider-settings-legacy.php:925
#: admin/views/pages/parts/slider-settings.php:732
msgid "Delay adding the flexslider class to the slideshow."
msgstr "Retard ajouté à la classe flexslider au diaporama."

#: admin/views/pages/parts/slider-settings-legacy.php:969
#: admin/views/pages/parts/slider-settings.php:769
msgid "Trashed slides"
msgstr "Diapositives mises à la corbeille"

#: admin/views/pages/parts/slider-settings-legacy.php:991
#: admin/views/pages/parts/slider-settings.php:779
msgid "View trashed slides"
msgstr "Voir les diapositives de la corbeille"

#: admin/views/pages/parts/slider-settings.php:117
msgid "Thumbnail (Pro)"
msgstr "Miniature (Pro)"

#: admin/views/pages/parts/slider-settings.php:121
msgid "Filmstrip (Pro)"
msgstr "Bande de film (Pro)"

#: admin/views/pages/parts/slider-settings.php:434
msgid ""
"Display multiple slides at once. Slideshow output will be 100% wide. "
"Carousel Mode only uses the 'Slide' Effect."
msgstr ""
"Affichez plusieurs diapositives à la fois. La largeur du diaporama sera de "
"100 %. Le mode carrousel n’utilise que l’effet « Glisser »."

#: admin/views/pages/parts/toolbar.php:25
msgid "Add a new slide"
msgstr "Ajouter une nouvelle diapositive"

#: admin/views/pages/parts/toolbar.php:29
msgid "Add Slide"
msgstr "Ajouter une diapositive"

#: admin/views/pages/parts/toolbar.php:35
msgid "Save & open the preview"
msgstr "Enregistrer et afficher l’aperçu"

#: admin/views/pages/parts/toolbar.php:35
msgctxt "This is a keyboard shortcut."
msgid " (alt + p)"
msgstr " (alt + p)"

#: admin/views/pages/parts/toolbar.php:60
msgid "Add a new slideshow"
msgstr "Ajouter un diaporama"

#: admin/views/pages/parts/toolbar.php:64
msgid "New"
msgstr "Nouveau"

#: admin/views/pages/parts/toolbar.php:69
msgid "Duplicate this slideshow"
msgstr "Dupliquer ce diaporama"

#: admin/views/pages/parts/toolbar.php:81
msgid "Duplicate"
msgstr "Dupliquer"

#: admin/views/pages/parts/toolbar.php:86
msgid "Adding custom CSS is a MetaSlider Pro feature. Click to learn more."
msgstr ""
"L’ajout de CSS personnalisés est une fonctionnalité de MetaSlider Pro. "
"Cliquer pour en savoir plus."

#: admin/views/pages/parts/toolbar.php:90
msgid "Add CSS"
msgstr "Ajouter CSS"

#: admin/views/pages/parts/toolbar.php:100
msgid "Save slideshow"
msgstr "Enregistrer le diaporama"

#: admin/views/pages/parts/toolbar.php:114 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Enregistrer"

#: admin/views/pages/parts/toolbar.php:125 ml-slider.php:1870
msgid "Return to Published Slides"
msgstr "Retourner aux diapositives publiées"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Réglages"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr "Centre d’aide"

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr "Importer"

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr "Exporter"

#: admin/views/pages/start.php:5
msgid "Carousel Slideshow"
msgstr "Diaporama carrousel"

#: admin/views/pages/start.php:9
msgid "Carousel Slideshow with Captions"
msgstr "Diaporama carrousel avec légendes"

#: admin/views/pages/start.php:20
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr "Merci d’utiliser MetaSlider, l’extension de diaporama pour WordPress"

#: admin/views/pages/start.php:26
msgid "Create a slideshow with your images"
msgstr "Créez un diaporama avec vos images"

#: admin/views/pages/start.php:27
msgid "Choose your own images to start a new slideshow."
msgstr "Choisissez vos propres images pour lancer un nouveau diaporama."

#: admin/views/pages/start.php:37
msgid "Open Media Library"
msgstr "Abrir la médiathèque"

#: admin/views/pages/start.php:52
msgid "Create a slideshow with sample images"
msgstr "Créer un diaporama avec des exemples d’images"

#: admin/views/pages/start.php:55
msgid "Create a demo slideshow."
msgstr "Créer un diaporama de démonstration."

#: admin/views/pages/start.php:62
msgid "Blank Slideshow"
msgstr "Diaporama vide"

#: admin/views/pages/start.php:63
msgid "Image Slideshow"
msgstr "Diaporama d’images"

#: admin/views/pages/start.php:77
msgid "Create a Slideshow"
msgstr "Créer un diaporama"

#: admin/views/pages/upgrade.php:13
msgid "Comparison Chart"
msgstr "Graphique de comparaison"

#: admin/views/pages/upgrade.php:20
msgid "Free"
msgstr "Gratuite"

#: admin/views/pages/upgrade.php:21
msgid "Pro"
msgstr "Pro"

#: admin/views/pages/upgrade.php:25 admin/views/pages/upgrade.php:144
msgid "Installed"
msgstr "Installé"

#: admin/views/pages/upgrade.php:26 admin/views/pages/upgrade.php:145
#: admin/views/slides/tabs/schedule.php:10 admin/assets/dist/js/app.js:2
msgid "Upgrade now"
msgstr "Mettre à niveau maintenant"

#: admin/views/pages/upgrade.php:30
msgid "Create unlimited slideshows"
msgstr "Crée des diaporamas illimités"

#: admin/views/pages/upgrade.php:31
msgid "Create and manage as many slideshows as you need."
msgstr "Créez et gérez autant de diaporamas que vous le souhaitez."

#: admin/views/pages/upgrade.php:38
msgid "Regular updates"
msgstr "Mises à jour régulières"

#: admin/views/pages/upgrade.php:39
msgid "We keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""
"Nous gardons MetaSlider compatible avec les dernières versions de WordPress."

#: admin/views/pages/upgrade.php:46
msgid "Intelligent image cropping"
msgstr "Recadrage intelligent des images"

#: admin/views/pages/upgrade.php:47
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""
"La fonctionnalité unique de recadrage intelligent garantit que vos "
"diapositives sont parfaitement redimensionnées."

#: admin/views/pages/upgrade.php:54
msgid "Thumbnail navigation"
msgstr "Navigation par vignette"

#: admin/views/pages/upgrade.php:55
msgid "Allow users to browse your slideshows using thumbnail navigation."
msgstr ""
"Permettez aux internautes de naviguer dans vos diaporamas grâce aux "
"miniatures."

#: admin/views/pages/upgrade.php:62
msgid "Add YouTube, Vimeo and Tiktok slides"
msgstr "Ajouter des diapositives YouTube, Vimeo et Tiktok"

#: admin/views/pages/upgrade.php:63
msgid "Easily include videos hosted by YouTube, Vimeo or TikTok."
msgstr "Inclure facilement des vidéos hébergées sur YouTube, Vimeo ou TikTok."

#: admin/views/pages/upgrade.php:70
msgid "Add local video slides"
msgstr "Ajouter des diapositives de vidéos locales"

#: admin/views/pages/upgrade.php:71
msgid "Create slideshows with videos from your WordPress media library."
msgstr ""
"Créez des diaporamas avec les vidéos de votre médiathèque de WordPress."

#: admin/views/pages/upgrade.php:78
msgid "Add external video slides"
msgstr "Ajouter des diapositives de vidéos externes"

#: admin/views/pages/upgrade.php:79
msgid "Create slideshows with external videos."
msgstr "Créez des diaporamas avec des vidéos externes."

#: admin/views/pages/upgrade.php:86
msgid "Extra premium themes"
msgstr "Thèmes premium supplémentaires"

#: admin/views/pages/upgrade.php:87
msgid ""
"MetaSlider Pro provides stylish and exclusive themes for your slideshows."
msgstr ""
"MetaSlider Pro propose des thèmes élégants et exclusifs pour vos diaporamas."

#: admin/views/pages/upgrade.php:94
msgid "Add slide layers"
msgstr "Ajouter des couches de diapositives"

#: admin/views/pages/upgrade.php:95
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""
"Ajoutez des couches à vos diapositives grâce à plus de 50 effets de "
"transition disponibles."

#: admin/views/pages/upgrade.php:102
msgid "Add Post Feed slides"
msgstr "Ajouter diapositive de flux de publications"

#: admin/views/pages/upgrade.php:103
msgid "Easily build slides based on your WordPress posts."
msgstr ""
"Créez facilement des diapositives basées sur vos publications WordPress."

#: admin/views/pages/upgrade.php:110
msgid "Add custom CSS"
msgstr "Ajouter CSS personnalisé"

#: admin/views/pages/upgrade.php:111
msgid "Customize your slideshows to fit with your website."
msgstr "Personnalisez vos diaporamas pour les adapter a votre site."

#: admin/views/pages/upgrade.php:118
msgid "Schedule your slides"
msgstr "Planifiez vos diapositives"

#: admin/views/pages/upgrade.php:119
msgid "Add a start/end date to individual slides."
msgstr "Ajoutez une date de début/fin à des diapositives individuelles."

#: admin/views/pages/upgrade.php:126
msgid "Toggle your slide's visibility"
msgstr "Ouvrir/fermer la visibilité de votre diapositive"

#: admin/views/pages/upgrade.php:127
msgid "Hide any slide, without having to delete them."
msgstr "Masquez n’importe quelle diapositive, sans avoir à la supprimer."

#: admin/views/pages/upgrade.php:134
msgid "Premium support"
msgstr "Support premium"

#: admin/views/pages/upgrade.php:135
msgid "Have your specific queries addressed directly by our experts."
msgstr "Faites traiter vos questions spécifiques directement par nos experts,"

#: admin/views/slides/tabs/crop.php:6
msgid "Crop Position"
msgstr "Position du recadrage"

#: admin/views/slides/tabs/crop.php:7
msgid ""
"Choose how images are cropped if their size doesn't exactly match the size "
"of your slideshow. This works if \"Smart Crop\" is selected in the \"Image "
"Crop\" settings."
msgstr ""
"Choisir la façon dont les images sont recadrées si leur taille ne correspond "
"pas exactement à celle de votre diaporama. Cette fonction fonctionne si "
"l’option « Recadrage intelligent » est sélectionnée dans les réglages "
"« Recadrage de l’image »."

#: admin/views/slides/tabs/crop.php:10
msgid "Top Left"
msgstr "En haut à droite"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Center"
msgstr "En haut centré"

#: admin/views/slides/tabs/crop.php:12
msgid "Top Right"
msgstr "En haut à droite"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Left"
msgstr "Centré à gauche"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Center"
msgstr "Centré au centre"

#: admin/views/slides/tabs/crop.php:15
msgid "Center Right"
msgstr "Centré à droite"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Left"
msgstr "En bas à gauche"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Center"
msgstr "En bas centré"

#: admin/views/slides/tabs/crop.php:18
msgid "Bottom Right"
msgstr "En bas à droite"

#: admin/views/slides/tabs/link.php:9
msgid "Image Link URL"
msgstr "URL du lien de l’image"

#: admin/views/slides/tabs/link.php:10
msgid ""
"When visitors click on your image slide, they will be taken to this URL."
msgstr ""
"Lorsque les internautes cliquent sur votre diapositive d’image, ils sont "
"redirigés vers cette URL."

#: admin/views/slides/tabs/link.php:20
msgid "New window"
msgstr "Nouvelle fenêtre"

#: admin/views/slides/tabs/link.php:22
msgid "Open link in a new window"
msgstr "Ouvrir le lien dans une nouvelle fenêtre"

#: admin/views/slides/tabs/link.php:44
msgid "Image Link Alt Text"
msgstr "Texte alternatif du lien de l’image"

#: admin/views/slides/tabs/link.php:45
msgid ""
"This text is used by search engines and visitors using screen readers. "
"Adding Alt text for links is highly recommended."
msgstr ""
"Ce texte est utilisé par les moteurs de recherche et les visiteurs/"
"visiteuses utilisant des lecteurs d’écran. Il est fortement recommandé "
"d’ajouter un texte alternatif pour les liens."

#: admin/views/slides/tabs/mobile.php:33
msgid "Hide slide on:"
msgstr "Masquer la diapositive sur :"

#: admin/views/slides/tabs/mobile.php:46
msgid ""
"When enabled this setting will hide the slide on screen widths equal to or "
"greater than %spx"
msgstr ""
"Si activé, ce réglage masque la diapositive lorsque la largeur de l’écran "
"est supérieure ou égale à %spx."

#: admin/views/slides/tabs/mobile.php:56
msgid ""
"When enabled this setting will hide the slide on screen widths of %1$spx to "
"%2$spx"
msgstr ""
"Si activé, ce réglage masque la diapositive sur les écrans d’une largeur "
"comprise entre %1$spx et %2$spx."

#: admin/views/slides/tabs/mobile.php:72
msgid "Hide caption on:"
msgstr "Masquer la légende sur :"

#: admin/views/slides/tabs/mobile.php:85
msgid ""
"When enabled this setting will hide the caption on screen widths equal to or "
"greater than %spx"
msgstr ""
"Si activé, ce réglage masque la légende lorsque la largeur de l’écran est "
"supérieure ou égale à %spx."

#: admin/views/slides/tabs/mobile.php:95
msgid ""
"When enabled this setting will hide the caption on screen widths of %1$spx "
"to %2$spx"
msgstr ""
"Si activé, ce réglage masque la légende sur les écrans d’une largeur "
"comprise entre %1$spx et %2$spx."

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""
"Mettez à jour ou activez votre MetaSlider Pro maintenant pour ajouter une "
"option de date de début/fin à vos diapositives"

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro"
msgstr "Obtenir MetaSlider Pro"

#: admin/views/slides/tabs/schedule.php:9
msgid ""
"With MetaSlider Pro, you can schedule your slides. You can choose to show "
"your slides on specific dates, days of the week, or times of day."
msgstr ""
"Avec MetaSlider Pro, vous pouvez programmer vos diapositives. Vous pouvez "
"choisir de montrer vos diapositives à des dates, jours de la semaine ou "
"heures de la journée spécifiques."

#: admin/views/slides/tabs/seo.php:7
msgid "Image Title Text"
msgstr "Titre de l’image"

#: admin/views/slides/tabs/seo.php:8
msgid ""
"Visitors will see this text if they hover over your image slide. Adding "
"Title text is useful but not required."
msgstr ""
"Les internautes verront ce texte s’ils survolent votre diapositive d’image. "
"L’ajout d’un texte de titre est utile mais non obligatoire."

#: admin/views/slides/tabs/seo.php:11
msgid "Enable this to inherit the image title"
msgstr "Activez cette option pour hériter du titre de l’image"

#: admin/views/slides/tabs/seo.php:13
msgid "Use the image title"
msgstr "Utilisez le titre de l’image"

#: admin/views/slides/tabs/seo.php:33
msgid "Image Alt Text"
msgstr "Texte alternatif de l’image"

#: admin/views/slides/tabs/seo.php:34
msgid ""
"This text is used by search engines and visitors using screen readers. "
"Adding Alt text is highly recommended."
msgstr ""
"Ce texte est utilisé par les moteurs de recherche et les internautes "
"utilisant des lecteurs d’écran. L’ajout d’un texte alternatif est fortement "
"recommandé."

#: admin/views/slides/tabs/seo.php:37
msgid "Enable this to inherit the image alt text"
msgstr "Activez cette option pour hériter du texte alt de l’image"

#: admin/views/slides/tabs/seo.php:39
msgid "Use the image alt text"
msgstr "Utiliser le texte de la balise alt de l’image"

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""
"Il est possible que vos réglages ne soient pas enregistrés correctement en "
"raison d’une configuration de votre serveur. %s est actuellement défini sur "
"%s, mais nous recommandons une valeur de 4000. Veuillez consulter %s pour "
"plus d’informations. Le fichier php.ini est chargé à partir d’ici : %s"

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr "cet article"

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr "Avertissement :"

#: inc/metaslider.widget.class.php:112
msgid "Title:"
msgstr "Titre :"

#: inc/metaslider.widget.class.php:115
msgid "Select Slider:"
msgstr "Sélectionnez un diaporama :"

#: inc/metaslider.widget.class.php:125 ml-slider.php:2012
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Aucun diaporama trouvé"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr "L’image demandée n’existe pas. Veuillez réessayer."

#: inc/slide/metaslide.class.php:117
msgid "The image was successfully updated."
msgstr "L’;image a bien été mise jour."

#: inc/slide/metaslide.class.php:127
msgid "There was an error updating the image. Please try again"
msgstr ""
"Une erreur est survenue pendant la mise à jour de l’image. Veuillez réessayer"

#: inc/slide/metaslide.class.php:308
msgid "There was an error while updating the database. Please try again."
msgstr ""
"Une erreur est survenue pendant la mise à jour de la base de données. "
"Veuillez réessayer."

#: inc/slide/metaslide.class.php:396
msgid "Trash slide"
msgstr "Mettre à la corbeille la diapositive"

#: inc/slide/metaslide.class.php:428 inc/slide/metaslide.class.php:683
#: inc/slide/metaslide.class.php:684
msgid "Update slide image"
msgstr "Mettre à jour l’image de diapositive"

#: inc/slide/metaslide.class.php:440
msgid "Duplicate slide"
msgstr "Dupliquer diaporama"

#: inc/slide/metaslide.image.class.php:88
msgid "This isn't a valid image format. Please try again."
msgstr "Ce format d’image n’est pas valide. Veuillez réessayer."

#: inc/slide/metaslide.image.class.php:357
msgid "Access denied"
msgstr "Accès refusé"

#: inc/slide/metaslide.image.class.php:390
msgid "Image Slide"
msgstr "Image de la diapo"

#: inc/slide/metaslide.image.class.php:472
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""
"Avertissement : les données d’image n’existent pas. Veuillez re-téléverser "
"l’image."

#: inc/slide/metaslide.image.class.php:487
msgid "General"
msgstr "Général"

#: inc/slide/metaslide.image.class.php:491
msgid "Link"
msgstr "Lien"

#: inc/slide/metaslide.image.class.php:495
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:511
msgid "Mobile"
msgstr "Mobile"

#: inc/slide/metaslide.image.class.php:528
msgid "Crop"
msgstr "Recadrage"

#: inc/slide/metaslide.image.class.php:540
msgid "Schedule"
msgstr "Planifier"

#: inc/slider/metaslider.class.php:273
msgid "Click the \"Add Slide\" button to create your slideshow"
msgstr ""
"Cliquer sur le bouton « Ajouter une diapositive » pour créer votre diaporama."

#: inc/slider/metaslider.class.php:316
msgid "Edit Slideshow"
msgstr "Modifier le diaporama"

#: ml-slider.php:312
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""
"MetaSlider Pro est installé mais n’est pas à jour. Vous pouvez le mettre à "
"jour %sici%s. En savoir plus sur cet avis %sici%s"

#: ml-slider.php:540
msgid "Home"
msgstr "Accueil"

#: ml-slider.php:541
msgid "Quick Start"
msgstr "Démarrage rapide"

#: ml-slider.php:542
msgid "Settings & Help"
msgstr "Réglages & aide"

#: ml-slider.php:545
msgid "Upgrade to Pro"
msgstr "Passer en version Pro"

#: ml-slider.php:582 ml-slider.php:585
msgid "All Slideshows"
msgstr "Tous les diaporamas"

#: ml-slider.php:593 ml-slider.php:596
msgid "Create Slideshow"
msgstr "Créer un diaporama"

#: ml-slider.php:730
msgid "Image"
msgstr "Image"

#: ml-slider.php:731
msgid "Add to slideshow"
msgstr "Ajouter au diaporama"

#: ml-slider.php:771
msgid "Post Feed"
msgstr "Flux de publications"

#: ml-slider.php:772
msgid "Vimeo"
msgstr "Vimeo"

#: ml-slider.php:773
msgid "YouTube"
msgstr "YouTube"

#: ml-slider.php:774
msgid "Layer Slide"
msgstr "Diapositive de couches"

#: ml-slider.php:775
msgid "External URL"
msgstr "URL externe"

#: ml-slider.php:776
msgid "Local Video"
msgstr "Vidéo locale"

#: ml-slider.php:777
msgid "External Video"
msgstr "Vidéo externe"

#: ml-slider.php:902
msgid "The slide was successfully restored"
msgstr "La diapositive a bien été restaurée"

#: ml-slider.php:925
msgid "The attempt to restore the slide failed."
msgstr "La tentative de restauration de la diapositive a échoué."

#: ml-slider.php:984
msgid "The slide was successfully trashed"
msgstr "La diapositive a bien été mise à la corbeille"

#: ml-slider.php:1096
msgid "The slide was permanently deleted"
msgstr "Cette diapositive a été définitivement supprimée"

#: ml-slider.php:1789
msgid "Slide permanently deleted."
msgstr "Diapositive supprimée définitivement."

#: ml-slider.php:1792
msgid "Slide restored."
msgstr "Diapositive restaurée."

#: ml-slider.php:1806
msgid "Trashed Slides"
msgstr "Diapositives mises à la corbeille"

#: ml-slider.php:1832
msgid "Loading... Please wait!"
msgstr "Chargement... Veuillez patienter !"

#: ml-slider.php:1860
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""
"Vous visualisez des diapositives qui ont été mises à la corbeille et qui "
"seront automatiquement supprimées dans %s jours."

#: ml-slider.php:1914
msgid "Move slideshow to trash"
msgstr "Mettre le diaporama à la corbeille"

#: ml-slider.php:1961
msgid "Add slideshow"
msgstr "Ajouter un diaporama"

#: ml-slider.php:1991
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Select slideshow to insert into post"
msgstr "Sélectionner le diaporama à insérer dans la publication"

#: ml-slider.php:1997
msgid "Choose slideshow"
msgstr "Sélectionner un diaporama"

#: ml-slider.php:2007
msgid "Insert slideshow"
msgstr "Insérer un diaporama"

#: ml-slider.php:2042
msgid "Create slides by adding text, videos and more to your images"
msgstr ""
"Créez des diapositives en ajoutant du texte, des vidéos et d’autres éléments "
"à vos images"

#: ml-slider.php:2046
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""
"Avec les diapositives de couches, vous pouvez créer de belles couches "
"élégantes de différents éléments."

#: ml-slider.php:2050
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""
"Vous commencez par une image, puis vous pouvez ajouter du texte, de la "
"vidéo, des couleurs, des animations, d’autres images et même des codes "
"courts."

#: ml-slider.php:2056 ml-slider.php:2097 ml-slider.php:2138 ml-slider.php:2181
#: ml-slider.php:2224 ml-slider.php:2267 ml-slider.php:2310
#: admin/assets/dist/js/app.js:2
msgid "Find out more about MetaSlider Pro"
msgstr "En savoir plus sur MetaSlider Pro"

#: ml-slider.php:2085
msgid "Create slideshows with your Vimeo videos"
msgstr "Créez des diaporamas avec vos vidéos Vimeo"

#: ml-slider.php:2089
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""
"Avec les diapositives Vimeo, vous pouvez créer de superbes diaporamas avec "
"vos vidéos Vimeo."

#: ml-slider.php:2093
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""
"Les diapositives Vimeo affichent vos vidéos avec lecture automatique, "
"désactivation du son, chargement paresseux, possibilité de masquer les "
"contrôles, et bien plus encore."

#: ml-slider.php:2126
msgid "Create slideshows with your YouTube videos"
msgstr "Créez des diaporamas avec vos vidéos YouTube"

#: ml-slider.php:2130
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""
"Avec les diapositives YouTube, vous pouvez créer de superbes diaporamas avec "
"vos vidéos YouTube."

#: ml-slider.php:2134
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""
"Les diapositives YouTube affichent vos vidéos avec lecture automatique, "
"désactivation du son, chargement paresseux, possibilité de masquer les "
"contrôles, et bien plus encore."

#: ml-slider.php:2167
msgid "Create slideshows with your posts"
msgstr "Créez des diaporamas avec vos publications"

#: ml-slider.php:2171
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""
"Avec les diapositives de flux de publications, vous pouvez créer des "
"diaporamas avec vos dernières publications, événements ou produits "
"WooCommerce."

#: ml-slider.php:2175
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""
"Les diapositives de flux de publications affichent automatiquement vos "
"publications avec des images, du texte, des champs personnalisés et bien "
"plus encore."

#: ml-slider.php:2210
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""
"Vous pouvez créer des diaporamas avec des images stockées en dehors de "
"WordPress"

#: ml-slider.php:2214
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""
"Avec les diapositives URL externes, vous pouvez charger des images "
"directement à partir de sources autres que WordPress, telles que des CDN ou "
"des hébergeurs d’images."

#: ml-slider.php:2218
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""
"Les diapositives à URL externe vous offrent toute la puissance de "
"MetaSlider, en utilisant des images stockées où vous le souhaitez."

#: ml-slider.php:2253
msgid "Create slideshows with videos in your media library"
msgstr "Créez des diaporamas avec les vidéos de votre médiathèque"

#: ml-slider.php:2257
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""
"Avec les diapositives des vidéos locales, vous pouvez créer de magnifiques "
"diaporamas avec les vidéos de votre médiathèque WordPress."

#: ml-slider.php:2261
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""
"Les diapositives vidéo locales affichent vos vidéos MP4, WebM et MOV avec "
"des images de couverture, la lecture automatique, la mise en sourdine, le "
"chargement paresseux, la possibilité de masquer les contrôles, et bien plus "
"encore."

#: ml-slider.php:2296
msgid "Create slideshows with videos stored outside of WordPress"
msgstr ""
"Vous pouvez créer des diaporamas avec des vidéos stockées en dehors de "
"WordPress"

#: ml-slider.php:2300
msgid ""
"With External Video slides, you can add videos directly from non-WordPress "
"sources."
msgstr ""
"Avec les diapositives vidéos externes, vous pouvez ajouter des vidéos "
"directement à partir de sources autres que WordPress."

#: ml-slider.php:2304
msgid ""
"External Video Slides will display your MP4, WebM, and MOV videos. Features "
"include text captions, cover images, auto play, mute, lazy load, the ability "
"to hide controls, and much more."
msgstr ""
"Les diapositives vidéo externes affichent vos vidéos MP4, WebM et MOV avec "
"des légendes de texte, images de couverture, la lecture automatique, la mise "
"en sourdine, le chargement paresseux, la possibilité de masquer les "
"contrôles, et bien plus encore."

#: ml-slider.php:2347
msgid "Premium Support"
msgstr "Support Premium"

#: ml-slider.php:2353
msgid "MetaSlider Pro"
msgstr "MetaSlider Pro"

#: ml-slider.php:2357
msgid "Support"
msgstr "Support"

#: ml-slider.php:2362
msgid "Documentation"
msgstr "Documentation"

#: ml-slider.php:2366
msgid "Leave a review"
msgstr "Laissez un avis"

#: themes/manifest-legacy.php:15 themes/manifest.php:15
msgid ""
"Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, "
"External Image and Post feed slides."
msgstr ""
"Bitono est un thème minimaliste avec un schéma bicolore. Recommandé pour les "
"diapositives d’images, d’images externes et de flux de publication."

#: themes/manifest-legacy.php:23 themes/manifest.php:23
msgid ""
"Clarity is focused on accessibility. It has easy-to-read fonts, and a "
"straightforward, distraction-free interface."
msgstr ""
"Clarity est axé sur l’accessibilité. Ses polices sont faciles à lire et son "
"interface est simple et sans distraction."

#: themes/manifest-legacy.php:31 themes/manifest.php:31
msgid ""
"Databold is a minimalist theme recommended for Image, External Image and "
"Post feed slides."
msgstr ""
"Databold est un thème minimaliste recommandé pour les diapositives d’images, "
"d’images externes et de flux de publication."

#: themes/manifest-legacy.php:39 themes/manifest.php:39
msgid "Draxler is a minimalist theme."
msgstr "Draxler est un thème minimaliste."

#: themes/manifest-legacy.php:47 themes/manifest.php:47
msgid "A simple, slick square design that looks good on darker images."
msgstr ""
"Un design carré simple et élégant qui convient aux images plus sombres."

#: themes/manifest-legacy.php:56 themes/manifest.php:56
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""
"Un thème propre et subtil qui comporte des flèches encadrées et un design "
"audacieux."

#: themes/manifest-legacy.php:65 themes/manifest.php:65
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""
"Un design amusant et circulaire pour égayer votre site. Ce thème fonctionne "
"bien avec des images sombres"

#: themes/manifest-legacy.php:74 themes/manifest.php:74
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""
"Un design minimaliste, sans superflu, qui a été conçu pour s’intégrer à la "
"plupart des thèmes."

#: themes/manifest-legacy.php:106 themes/manifest.php:106
msgid "This theme places the controls vertically for a unique look."
msgstr "Ce thème place les contrôles verticalement pour un look unique."

#: themes/manifest-legacy.php:115 themes/manifest.php:115
msgid "A futuristic and linear design that goes will with a dark background."
msgstr "Un design futuriste et linéaire qui se marie bien avec un fond sombre."

#: themes/manifest-legacy.php:124 themes/manifest.php:124
msgid "A simple theme that neatly blends into any existing website."
msgstr "Un thème simple qui s’intègre parfaitement à tout site existant."

#: themes/manifest-legacy.php:133 themes/manifest.php:133
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""
"Ce thème dispose d’une fonctionnalité supplémentaire spéciale qui utilise "
"les titres des images comme navigation des diapositives. "

#: themes/manifest-legacy.php:134 themes/manifest.php:134
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""
"Si vous souhaitez utiliser les titres des images comme navigation, vous "
"devrez utiliser FlexSlider. De plus, pour modifier le libellé de la "
"navigation du diaporama, modifiez le titre de l’image dans la médiathèque ou "
"manuellement sur le diaporama (onglet SEO)."

#: themes/manifest-legacy.php:164 themes/manifest.php:164
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""
"Ce thème possède un design unique qui lui confère un aspect sophistiqué."

#: themes/manifest-legacy.php:173 themes/manifest.php:173
msgid "A bold and clear design that works well on a darker images."
msgstr ""
"Un design audacieux et clair qui fonctionne bien sur des images plus sombres."

#: themes/manifest-legacy.php:182 themes/manifest.php:182
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures. Best used with Image Slides."
msgstr ""
"Un thème minimaliste qui s’efface pour vous permettre de mettre en valeur "
"vos belles photos. A utiliser de préférence avec les diapositives d’images."

#: themes/manifest-legacy.php:191
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""
"Le thème Nivo Light est inclus ici à des fins d’héritage. Note : ne "
"fonctionne qu’avec Nivo Slider"

#: themes/manifest-legacy.php:199
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""
"Le thème Nivo Bar est inclus ici à des fins d’héritage. Note : ne fonctionne "
"qu’avec Nivo Slider"

#: themes/manifest-legacy.php:207
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""
"Le thème Nivo Dark est inclus ici à des fins d’héritage. Note : ne "
"fonctionne qu’avec Nivo Slider"

#: themes/manifest-premium.php:14 themes/manifest-premium.php:26
msgid "minimalist"
msgstr "minimaliste"

#: themes/manifest-premium.php:15
msgid "2 columns"
msgstr "2 colonnes"

#: themes/manifest-premium.php:17
msgid "A 2 columns minimalistic theme to split your images and captions."
msgstr "Un thème minimaliste à 2 colonnes pour diviser vos images et légendes."

#: themes/manifest-premium.php:18
msgid ""
"Image, External URL and Post Feed slides are displayed in 2 columns, while "
"the rest of slide types in 1 column."
msgstr ""
"Les diapositives d’image, d’URL externe et de flux de publications sont "
"affichées sur deux colonnes, tandis que les autres types de diapositives "
"sont affichés sur une seule colonne."

#: themes/manifest-premium.php:27
msgid "videos"
msgstr "vidéos"

#: themes/manifest-premium.php:28
#| msgid "Vertical"
msgid "vertical"
msgstr "vertical"

#: themes/manifest-premium.php:30
msgid "A theme to showcase vertical images and videos."
msgstr "Un thème pour une vitrine des images et des vidéos verticales."

#: themes/manifest-premium.php:31
msgid "Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos."
msgstr ""
"Idéal pour les images, les diapositives des flux de publications, les vidéos "
"verticales de YouTube et Vimeo."

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr "Diapositive précédente"

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr "Diapositive suivante"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:80
msgid "Preparing 1 slide..."
msgstr "Préparation d’une diapositive..."

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:149
#: admin/assets/js/admin.js:1002
msgid "1 slide added successfully"
msgstr "1 diapositive ajoutée avec succès"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:198
msgid "Opening add slide UI..."
msgstr "Ouverture de l’IU de l’ajout de diapositives..."

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:201
msgid "Closing add slide UI..."
msgstr "Fermeture de l’IU de l’ajout de diapositives..."

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:290
msgid "Updating slide..."
msgstr "Mise à jour de la diapositive..."

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:342
msgid "Slide updated successfully"
msgstr "La diapositive a été mise à jour avec succès"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr "Notification du gestionnaire CSS ouverte"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr "Notification du gestionnaire CSS fermée"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr "Gestionnaire CSS"

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to create the perfect design for "
"your sites."
msgstr ""
"Ajoutez facilement des feuilles de style CSS personnalisées à vos diaporamas "
"pour créer le design parfait pour vos sites."

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr "Éditeur de texte intégré, riche en fonctionnalités."

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""
"Chargements uniquement sur l’interface publique lorsque cela est nécessaire."

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr "Comprend des solutions pour résoudre les scénarios les plus courants."

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr "Notification d’analyse ouverte"

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr "Notification d’analyse fermée"

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""
"Nous aimerions également vous envoyer des e-mails peu fréquents contenant "
"d’importantes mises à jour de sécurité et de fonctionnalités. Consultez "
"notre %s pour plus de détails."

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr "politique de confidentialité"

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr "Merci d’utiliser MetaSlider"

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""
"Nous sommes en cours de construction de la prochaine version de MetaSlider. "
"Pouvez-vous nous aider en partageant des informations diagnostiques non "
"sensibles ?"

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr "Accepter et continuer"

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr "Non merci"

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr "Duplication..."

#: admin/assets/dist/js/app.js:2
msgid ""
"To edit this slide, click \"Restore\" and then \"Return to Published Slides\""
msgstr ""
"Pour modifier cette diapositive, cliquez sur « Restaurer » puis sur "
"« Retourner aux diapositives publiées »"

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr "Tableau de bord MetaSlider chargé"

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr "Enregistrement…"

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""
"Enregistrement de %s diapositives. Cela peut prendre quelques instants."

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr "Diaporama enregistré"

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr "Dupliqué avec succès. Rechargement..."

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr "Réglages enregistrés"

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr "Toujours en cours... %s diapositives restantes..."

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr "Tour annulé avec succès"

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr "Tour annulé sans succès"

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Confirmez-vous ?"

#: admin/assets/dist/js/app.js:2
msgid "This slideshow will be moved to the \"Trash\" area."
msgstr "Ce diaporama sera déplacé dans la zone « Corbeille »."

#: admin/assets/dist/js/app.js:2
msgid "Confirm"
msgstr "Confirmer"

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr "Il y a eu un problème"

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr "OK"

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr "Préparation du diaporama pour la duplication..."

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr "Faisant quelque chose..."

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr "Aucun message d’erreur fourni."

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr "Une erreur indéfinie s’est produite"

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr "Aucun message d’erreur reporté."

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr "Enregistrement du thème…"

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr "Thème enregistré"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr "Thème du diaporama"

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""
"Ce thème n’est pas officiellement pris en charge par le diaporama choisi. "
"Vos résultats peuvent varier."

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr "Thème personnalisé"

#: admin/assets/dist/js/app.js:2
msgid "Remove"
msgstr "Supprimer"

#: admin/assets/dist/js/app.js:2
msgid "Change"
msgstr "Modifier"

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""
"Changez l’aspect et la présentation de votre diaporama avec l’un de nos "
"thèmes MetaSlider personnalisés !"

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr "Sélectionnez un thème personnalisé"

#: admin/assets/dist/js/app.js:2
msgid "All themes"
msgstr "Tous les thèmes"

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr "Chargement…"

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr "Obtenez MetaSlider Pro !"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to unlock this theme!"
msgstr "Mettre à niveau maintenant pour débloquer ce thème !"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""
"Mettez à niveau maintenant pour créer vos propres thèmes personnalisés !"

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr "MetaSlider Pro est installé !"

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr "Vous pouvez créer vos propres thèmes avec notre éditeur de thèmes"

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr "Premiers pas"

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr "Détails du thème"

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr "Mode d’emploi du thème"

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr "Étiquettes"

#: admin/assets/dist/js/app.js:2
msgid "This theme was created through the theme editor."
msgstr "Ce thème a été créé à l’aide de l’éditeur de thèmes."

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""
"Si vous ne sélectionnez pas de thème, nous utiliserons le thème par défaut "
"fourni par l’extension de diaporama"

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr "Mode d’emploi"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""
"Sélectionnez un thème sur la gauche pour l’utiliser dans ce diaporama. "
"Cliquez sur le thème pour plus de détails."

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr "Erreur : Aucun thème n’a été trouvé."

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr "Prévisualiser le diaporama"

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr "Sélectionner"

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr "Ouvrir/fermer le type de superposition"

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr "Ouvrir/fermer pleine largeur"

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr "Quitter l’aperçu"

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""
"Cette fonctionnalité n’est pas entièrement prise en charge par ce navigateur."

#: admin/assets/dist/js/app.js:2
msgid "Media caption"
msgstr "Légende des médias"

#: admin/assets/dist/js/app.js:2
msgid "Media description"
msgstr "Description des médias"

#: admin/assets/dist/js/app.js:2
msgid "Manual entry"
msgstr "Saisie manuelle"

#: admin/assets/dist/js/app.js:2
msgid "Enter text that will appear with your image slide."
msgstr "Saisir le texte qui apparaîtra avec votre diapositive d’image."

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""
"Mettez automatiquement à jour directement à partir de la médiathèque de WP"

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr "Aucun par défaut trouvé"

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr "Vous pouvez utiliser du HTML ici"

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr "Trier par type"

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr "Tous les éléments média"

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr "Rechercher l’API d’Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr "Recherche sur unsplash.com..."

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr "Charger plus"

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr "Photo par %s sur Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr "Photo sur Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr "Ouverture de l’onglet Unsplash…"

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr "Onglet Unsplash fermé"

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr "Aucune photo trouvée."

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr "Photo par %s"

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr "Désélectionner"

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr "Détails du fichier joint"

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr "%s par %s pixels"

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr "voir l’original"

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr "Profil"

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr "Portfolio"

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr "Texte alternatif"

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr "Description"

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr "Qualité"

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""
"Vous pouvez utiliser gratuitement toutes les photos publiées sur Unsplash."

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr "voir la licence"

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr "Complet !"

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr "Croquant..."

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr "Importer les diapositives"

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr "Importer les diapositives"

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""
"Vous n’avez actuellement aucune diapositive à visualiser. Si vous le "
"souhaitez, nous pouvons importer des diapositives pour vous."

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr "Aucun fichier valide trouvé"

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr "L’interface glisser/déposer n’est pas disponible."

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr "Déposez les images ici"

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr "Appuyer sur %s pour enregistrer ou %s pour annuler."

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr "Entrée"

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr "Échap"

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr "Code court copié"

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr "Le code court ne peut pas être copié automatiquement"

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr "Échec de l’ouverture de l’utilitaire modal..."

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr "Ouverture de l’utilitaire modal..."

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr "Fermeture de l’utilitaire modal..."

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr "Aucune diapositive"

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr "Actuelle"

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr "%s diapositives"

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr "dernière mise à jour : %s"

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr "Visualisation de 1 diaporama"

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr "Affichage de %s sur %s diaporamas"

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr "Rechercher de diaporamas (appuyez sur ctrl+/ pour focaliser)"

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr "Recherche de diaporamas..."

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr "1 diaporama"

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr "Affichage de %s sur %s diaporamas (%s chargés)"

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr "Indexation de %s diaporamas dans le stockage local..."

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr "Tous les diaporamas chargés"

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr "Récupération de diaporamas..."

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr "Terminé"

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr "Indexation des diaporamas... %s restants"

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""
"Cette fonction n’est pas entièrement prise en charge par Internet Explorer "
"11 et il se peut que les résultats de recherche soient lents."

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr "Trier par titre"

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr "Trier par date modifiée"

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr "Filtrer les diaporamas"

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr "Recherche en cours..."

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr "Mise à jour en cours..."

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr "Charger tout"

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr "Vider le cache"

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr "Charger les %s restants des diaporamas"

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""
"Appuyez sur cette touche pour vider le cache du diaporama à partir de votre "
"navigateur web"

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr "Chargement des diaporamas…"

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr "Parcourir les diaporamas"

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr "Replier"

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr "Appuyez pour étendre"

#: admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr "Tout copier"

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr "Tous les réglages enregistrés"

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""
"Vous y trouverez de la documentation et deux niveaux de support au choix. En "
"outre, vous pouvez nous fournir des informations supplémentaires spécifiques "
"à votre site, votre serveur, etc."

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr "Documentation 📚"

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""
"Consultez notre page de documentation pour des exemples et de plus amples "
"informations sur ce que vous pouvez faire avec MetaSlider."

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr "Consultez la documentation"

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr "Support de base gratuit 🚀"

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""
"Pour les utilisateurs et utilisatrices de la version gratuite de MetaSlider, "
"nous offrons un support gratuite complète sur les forums de wordpress.org."

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr "Visitez wordpress.org"

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr "Support Premium payant 🌟"

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""
"Les utilisateurs et utilisatrices ayant acheté l’extension premium peuvent "
"ouvrir un ticket sur notre centre de support privé pour bénéficier d’un "
"support personnalisé et des réponses plus rapides."

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr "Visitez metaslider.com"

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr "Informations du site"

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""
"Pour votre commodité, vous pouvez copier les informations de base du site "
"avant pour nous aider à accélérer le processus de débogage. Assurez-vous de "
"vérifier qu’aucune information personnelle que vous souhaiteriez garder "
"privée n’est incluse."

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""
"Modifiez le titre par défaut qui sera utilisé lors de la création d’un "
"nouveau diaporama. Utilisez %s et il sera remplacé par l’ID du diaporama "
"actuel."

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""
"Si vous êtes un membre pro, entrez votre clé de licence ici pour recevoir "
"les mises à jour. %s"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr "Mettez à niveau ici"

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""
"Acceptez de laisser MetaSlider collecter de manière responsable des "
"informations sur la façon dont vous utilisez notre extension. Cette option "
"est désactivée par défaut, mais peut avoir été activée par une notification. "
"%s"

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr "Consultez les détails de notre politique de confidentialité"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr "Les réglages du diaporama ont été enregistrés"

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr "Les réglages globaux ont été enregistrés"

#: admin/assets/dist/js/app.js:2
msgid "Pro settings saved"
msgstr "Réglages Pro enregistrés"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr "Valeurs par défaut des diaporamas"

#: admin/assets/dist/js/app.js:2
msgid "Update the default settings used when creating new slideshows."
msgstr ""
"Mettre à jour les réglages par défaut utilisés lors de la création de "
"nouveaux diaporamas."

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr "Titre par défaut du diaporama"

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr "Modifier le titre par défaut"

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr "Largeur de l’image de base"

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""
"Mettez à jour la largeur par défaut de l’image de base. Elle sera utilisée "
"pour les dimensions du diaporama et le recadrage de l’image de base."

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr "Modifier la largeur par défaut"

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr "Hauteur de l’image de base"

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimensions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""
"Mettez à jour la hauteur par défaut de l’image de base. Elle sera utilisée "
"pour le recadrage de l’image de base et les dimensions du diaporama. Si la "
"largeur est de 100 %, la hauteur sera mise à l’échelle en conséquence."

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr "Largeur 100%"

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""
"Alors que la largeur et la hauteur définies ci-dessus seront utilisées pour "
"le recadrage (s’il est activé) et les dimensions de base du diaporama, vous "
"pouvez également définir le diaporama pour qu’il s’étende à son conteneur."

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr "Réglages globaux"

#: admin/assets/dist/js/app.js:2
msgid "Update the settings used for all the slideshows on your site."
msgstr ""
"Mettre à jour les réglages utilisés pour tous les diaporamas de votre site."

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr "Clé de licence"

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr "Mettez à jour la clé de licence"

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr "Aidez à améliorer MetaSlider"

#: admin/assets/dist/js/app.js:2
msgid "Enable Mobile Settings"
msgstr "Activer les réglages mobiles"

#: admin/assets/dist/js/app.js:2
msgid "Add option to hide slides and captions per screen size."
msgstr ""
"Ajouter une option pour masquer les diapositives et les légendes en fonction "
"de la taille de l’écran."

#: admin/assets/dist/js/app.js:2
msgid "Mobile Settings"
msgstr "Réglages mobile"

#: admin/assets/dist/js/app.js:2
msgid "Set breakpoints for different screen sizes"
msgstr "Définir des points de rupture pour différentes tailles d’écran"

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Libraries"
msgstr "Désactiver les bibliothèques anciennes"

#: admin/assets/dist/js/app.js:2
msgid ""
"This setting allows you to disable the legacy slideshow libraries: Nivo "
"Slider, Coin Slider, and Responsive Slides"
msgstr ""
"Ce réglage vous permet de désactiver les bibliothèques héritées de "
"diaporamas : Nivo Slider, Coin Slider et Responsive Slides"

#: admin/assets/dist/js/app.js:2
msgid ""
"You can safely enable this setting. None of your slideshows use the legacy "
"libraries."
msgstr ""
"Vous pouvez activer ce réglage en toute sécurité. Aucun de vos diaporamas "
"n’utilise les bibliothèques héritées."

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshows that use legacy libraries."
msgstr ""
"Vous avez actuellement %s diaporamas qui utilisent des bibliothèques "
"héritées."

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshow that uses legacy libraries."
msgstr ""
"Vous avez actuellement %s diaporamas qui utilisent des bibliothèques "
"héritées."

#: admin/assets/dist/js/app.js:2
msgid "Enable MetaSlider on Admin Bar"
msgstr "Activer MetaSlider dans la barre d’administration"

#: admin/assets/dist/js/app.js:2
msgid "Add and edit slideshows easier by showing MetaSlider on your admin bar."
msgstr ""
"Ajoutez et modifiez des diaporamas plus facilement en affichant MetaSlider "
"dans votre barre d’administration."

#: admin/assets/dist/js/app.js:2
msgid "Enable Frontend Edit Links"
msgstr "Activer les liens de modification de l’interface publique"

#: admin/assets/dist/js/app.js:2
msgid "Edit slideshows easily by showing MetaSlider link under each slideshow."
msgstr ""
"Modifiez facilement les diaporamas en affichant le lien MetaSlider sous "
"chaque diaporama."

#: admin/assets/dist/js/app.js:2
msgid "Last"
msgstr "Dernier"

#: admin/assets/dist/js/app.js:2
msgid "First"
msgstr "Premier"

#: admin/assets/dist/js/app.js:2
msgid "New slides order"
msgstr "Nouvel ordre des diapositives"

#: admin/assets/dist/js/app.js:2
msgid "Select the position for new added slides."
msgstr "Sélectionnez la position des nouvelles diapositives ajoutées."

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Widget"
msgstr "Désactiver le widget ancien"

#: admin/assets/dist/js/app.js:2
msgid "This setting allows you to disable the legacy MetaSlider widget."
msgstr "Ce réglage vous permet de désactiver l’ancien widget MetaSlider."

#: admin/assets/dist/js/app.js:2
msgid "Pro Settings"
msgstr "Réglages Pro"

#: admin/assets/dist/js/app.js:2
msgid "Update the MetaSlider Pro settings."
msgstr "Mettre à jour les réglages de MetaSlider Pro."

#: admin/assets/dist/js/app.js:2
msgid ""
"Select how many custom fields will display in the dropdown menu when you are "
"inserting tags."
msgstr ""
"Sélectionner le nombre de champs personnalisés qui s’afficheront dans le "
"menu déroulant lors de l’insertion des étiquettes."

#: admin/assets/dist/js/app.js:2
msgid "Change the maximum custom fields for Post Feed"
msgstr ""
"Modifier le nombre maximum de champs personnalisés pour le flux de "
"publications"

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr "Les données de ce fichier ne semblent pas être valides."

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr "%s diaporama(s) trouvé(s)"

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr "Recherche d’images terminée"

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr "Nous sommes toujours à la recherche de vos images. Veuillez patienter."

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr "Vous n’avez aucun diaporama à importer"

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr "Il y a des images manquantes"

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""
"Si des images sont manquantes, vous devrez mettre à jour ou supprimer "
"manuellement la diapositive une fois l’importation terminée."

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr "Continuer"

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr "Importation de %s diaporamas..."

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr "Importation réussie"

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""
"Importez facilement les diaporamas générés par MetaSlider. Cela nécessite un "
"fichier généré à partir de l’onglet « Exporter »."

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr "Charger les diaporamas"

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""
"Si vous avez un fichier d’exportation, vous pouvez le téléverser ici pour "
"qu’il soit traité. Des informations sur chaque diaporama seront présentées "
"ci-dessous. Vous pourrez confirmer avant d’importer."

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr "Importation..."

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr "En cours..."

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr "Téléverser le fichier"

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr "Date : %s"

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr "Version : v%s"

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr "Toutes les images nécessaires à l’importation sont prises en charge."

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr "Les images suivantes n’ont pas été trouvées :"

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr "Aucun nom d’image fourni"

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""
"Note : Vous pouvez toujours importer des diaporamas qui contiennent des "
"images manquantes. Vous devrez simplement mettre à jour ou supprimer "
"manuellement ces diapositives à partir des pages de modification des "
"diaporamas individuels."

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr "Importer %s diaporamas"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""
"Sélectionnez ci-dessous les diaporamas que vous souhaitez importer, puis "
"cliquez ici pour les importer."

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr "Diapositive de flux de publications"

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr "Diapositive externe"

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr "Image non trouvée<br>%s"

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr "Aucune diapositive trouvée"

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr "Chargement de %s diaporamas..."

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr "Vous n’avez aucun diaporama à exporter"

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr "Exportation de %s diaporamas..."

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr "Exportation réussie"

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr "Aucun diaporama trouvé."

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr "Créer un nouveau diaporama maintenant"

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have only a few slideshows, we will prepare them automatically. If "
"you have many slideshows, click the \"Load\" button."
msgstr ""
"Si vous n’avez que quelques diaporamas, nous les préparerons "
"automatiquement. Si vous avez plusieurs diaporamas, cliquez sur le bouton "
"« Téléverser »."

#: admin/assets/dist/js/app.js:2
msgid "Choose the slideshows you wish to export."
msgstr "Choisissez les diaporamas que vous souhaitez exporter."

#: admin/assets/dist/js/app.js:2
msgid "Click the \"Export\" button."
msgstr "Cliquez sur le bouton « Exporter »."

#: admin/assets/dist/js/app.js:2
msgid ""
"A .json file will automatically be downloaded with all your slideshow data."
msgstr ""
"Un fichier .json sera automatiquement téléchargé avec toutes les données de "
"votre diaporama."

#: admin/assets/dist/js/app.js:2
msgid "A few notes on exporting slideshow images:"
msgstr "Quelques notes sur l’exportation d’images de diaporama :"

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images need to be exported manually. Please upload them to the new "
"website before importing these slideshows."
msgstr ""
"Vos images doivent être exportées manuellement. Veuillez les téléverser sur "
"le nouveau site avant d’importer ces diaporamas."

#: admin/assets/dist/js/app.js:2
msgid "Images will need to keep the same file names on the new site."
msgstr ""
"Les images devront conserver les mêmes noms de fichiers sur le nouveau site."

#: admin/assets/dist/js/app.js:2
msgid "Read our guide on exporting images."
msgstr "Lisez notre guide sur l’exportation d’images."

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""
"Vous avez %s diaporamas qui peuvent être exportés. Des informations sur "
"chaque diaporama seront présentées ci-dessous."

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr "Recharger"

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr "Charger"

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr "Exporter %s diaporamas"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""
"Sélectionnez ci-dessous les diaporamas que vous souhaitez exporter, puis "
"cliquez ici pour les exporter."

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr "Impossible d’ouvrir la page des réglages..."

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr "Ouverture de la page des réglages..."

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr "Page non trouvée : %s"

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr "Ajouter une diapositive"

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""
"Merci d’utiliser MetaSlider. Pour commencer, cliquez sur le bouton « Ajouter "
"une diapositive » pour créer votre première diapositive."

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr "Sélectionner des images"

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""
"Vous pouvez facilement ajouter une image à partir de l’une des options "
"proposées ici. De plus, nous fournissons gratuitement des images de la "
"bibliothèque Unsplash."

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr "Prochaine étape"

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr "Chercher sur Unsplash"

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""
"Choisissez une image à gauche, ou recherchez un sujet quelconque ici pour "
"faire apparaître d’autres images."

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr "Masquer l’étape"

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr "Créer votre diapositive"

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""
"Une fois que vous avez sélectionné une image, cliquez ici pour créer votre "
"diapositive."

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr "Prévisualiser le diaporama"

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""
"Maintenant que vous avez défini quelques diapositives, vous pouvez "
"prévisualiser votre diaporama en appuyant ici."

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr "Réglages du diaporama"

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr "Modifier le diaporama"

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr "Classe CSS supplémentaire"

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr "Recharger l’aperçu"

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr "Chargement de la liste des diaporamas..."

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr "Créez-en un maintenant !"

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr "Chargement du diaporama"

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr "Mettre à jour l’aperçu"

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr "Sélectionnez un diaporama"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr "Largeur normale"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr "Grande largeur"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr "Pleine largeur"

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""
"Utiliser MetaSlider pour insérer des diaporamas et des diapositives dans "
"votre page"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr "diaporama"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr "diaporama"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr "galerie"

#~ msgid "Show the slide navigation bullets"
#~ msgstr "Afficher les puces de navigation"

#~ msgid "Continuously"
#~ msgstr "En continu"

#~ msgid ""
#~ "Choose one of our demos with sample images, or a blank slideshow with no "
#~ "images."
#~ msgstr ""
#~ "Choisissez l’une de nos démonstrations avec des exemples d’images ou un "
#~ "diaporama vide sans images."

#~ msgid "Add HTML overlay slides"
#~ msgstr "Ajouter des diapositives HTML en superposition"

#~ msgid "Create completely customized HTML slides using the inline editor."
#~ msgstr ""
#~ "Créez des diapositives HTML entièrement personnalisées à l’aide de "
#~ "l’éditeur en ligne."

#~ msgid "Themes"
#~ msgstr "Thème"

#~ msgid ""
#~ "However, it looks like you have custom themes available. Select \"My "
#~ "Custom Themes\" from the navigation up top to view your custom themes."
#~ msgstr ""
#~ "Cependant, il semble que vous ayez des thèmes personnalisés disponibles. "
#~ "Sélectionnez « Mes thèmes personnalisés » dans la navigation en haut pour "
#~ "afficher vos thèmes personnalisés."

#~ msgid "My Custom Themes"
#~ msgstr "Mes thèmes personnalisés"

#~ msgid ""
#~ "Choose whether the slides loop or stop on a specific slide. The slides "
#~ "will loop infinitely if you choose \"Continuously\" and the \"Slide\" "
#~ "effect."
#~ msgstr ""
#~ "Choisir si les diapositives tournent en boucle ou s’arrêtent sur une "
#~ "diapositive spécifique. Les diapositives tourneront en boucle à l’infini "
#~ "si vous choisissez « En continu » et l’effet « Diapositive »."

#~ msgid "Effect"
#~ msgstr "Effet"

#~ msgid "Center align the slideshow"
#~ msgstr "Aligner au centre le diaporama"

#~ msgid "Configure loop"
#~ msgstr "Configurer la boucle"

#~ msgid "Fade in the first slide"
#~ msgstr "Fondu en avant de la première diapositive"

#~ msgid ""
#~ "Easing enhances the motion dynamics during transitions and is exclusively "
#~ "accessible when the 'Slide' transition setting is chosen."
#~ msgstr ""
#~ "Easing améliore la dynamique du mouvement pendant les transitions et est "
#~ "exclusivement accessible lorsque le réglage de transition « Slide » est "
#~ "choisi."

#~ msgid ""
#~ "Hey there! We just started working on a brand new gallery extension. <a "
#~ "href=\"%s\">Check it out</a> and let us know what you think!"
#~ msgstr ""
#~ "Bonjour ! On a commencé à travailler sur une toute nouvelle extension de "
#~ "galerie. <a href=\"%s\">Veuillez la découvrir</a> et faites-nous savoir "
#~ "ce que vous en pensez !"

#~ msgid "You do not have access to this resource."
#~ msgstr "Vous n’avez pas accès à cette ressource."

#~ msgid "Set the speed of animations, in milliseconds"
#~ msgstr "Définir la vitesse des animations, en millisecondes"

#~ msgid "Select the sliding direction"
#~ msgstr "Choisissez le sens du défilement"

#~ msgid "press to learn more"
#~ msgstr "pressez pour en savoir plus"

#~ msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
#~ msgstr ""
#~ "Obtenez MetaSlider Pro maintenant pour ajouter une option de date de "
#~ "début/fin à vos diapositives"

#~ msgid "Get it now!"
#~ msgstr "Je le veux !"

#~ msgid "Failed to add slide. Slide is not an image."
#~ msgstr "Échec de l’ajout de diapositive. Ce n’est pas une image."

#~ msgctxt "Keep the plugin name \"MetaSlider\" when possible"
#~ msgid "Insert MetaSlider"
#~ msgstr "Insérer MetaSlider"

#~ msgid "Upgrade to pro now"
#~ msgstr "Passez à la version pro maintenant"

#~ msgid "Upgrading also includes:"
#~ msgstr "La mise à niveau comprend également :"

#~ msgid "Layer, video and post type slides."
#~ msgstr "Diapositives de couche, de vidéo et de type de publication."

#~ msgid "Slide scheduling - decide when slides appear."
#~ msgstr ""
#~ "Programmation des diapositives - décidez quand les diapositives "
#~ "apparaissent."

#~ msgid "Premium support - ask us anyting!"
#~ msgstr "Support premium - demandez-nous ce que vous voulez !"

#~ msgid "Click to edit or update"
#~ msgstr "Cliquez pour modifier ou mettre à jour"

#~ msgid ""
#~ "Here you will find general account settings and options related to your "
#~ "account"
#~ msgstr ""
#~ "Vous trouverez ici les réglages généraux du compte et les options liées à "
#~ "votre compte"

#~ msgid "Enable Gallery (Beta)"
#~ msgstr "Activer la galerie (Beta)"

#~ msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
#~ msgstr ""
#~ "Des galeries rapides, axées sur le SEO, entièrement accessibles selon les "
#~ "normes WCAG et faciles à utiliser."

#~ msgid "free"
#~ msgstr "gratuit"

#~ msgid "Yes"
#~ msgstr "Oui"

#~ msgid "Multiple slideshow types"
#~ msgstr "Plusieurs types de diaporamas"

#~ msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
#~ msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
#~ msgstr ""
#~ "Y compris FlexSlider, Nivo Slider et nous allons bientôt en ajouter "
#~ "d’autres."

#~ msgid "No"
#~ msgstr "Non"

#~ msgid "Post feed slides"
#~ msgstr "Diapositives du flux de publications"

#~ msgid "Easing is only available with the 'Slide' transition setting"
#~ msgstr ""
#~ "Easing n’est disponible qu’avec le réglage de transition « Glissement »."

#~ msgid ""
#~ "Specify any custom CSS Classes you would like to be added to the slider "
#~ "wrapper"
#~ msgstr ""
#~ "Spécifiez des classes CSS personnalisés que vous souhaitez ajouter à "
#~ "l’enveloppe (wrapper) du diaporama"

#~ msgid "Delete slideshow"
#~ msgstr "Supprimer le diaporama"

#~ msgid "You will not be able to undo this."
#~ msgstr "Vous ne pourrez pas annuler cela."

#~ msgid "Delete"
#~ msgstr "Supprimer"

#~ msgid "Learn more"
#~ msgstr "En savoir plus"

#~ msgid "Enter manually"
#~ msgstr "Saisir manuellement"

#~ msgid "How to Use"
#~ msgstr "Comment l’utiliser"

#~ msgid "Toggle title"
#~ msgstr "Ouvrir/fermer le titre"

#~ msgid ""
#~ "To display your slideshow, add the following shortcode (in orange) to "
#~ "your page. If adding the slideshow to your theme files, additionally "
#~ "include the surrounding PHP code (in gray).&lrm;"
#~ msgstr ""
#~ "Pour afficher un diaporama en utilisant son ID ou titre, ajoutez les "
#~ "codes courts suivants (en orange) à votre page. Pour ajouter le diaporama "
#~ "au fichiers de votre thème, ajoutez-y le code PHP (en gris).&lrm;"

#~ msgid "Copy all code"
#~ msgstr "Copier tout le code"

#~ msgid ""
#~ "Press to load available slideshows then choose which slideshows to "
#~ "export. If you only have a few slideshows we will prepare them "
#~ "automatically."
#~ msgstr ""
#~ "Cliquez ici pour charger les diaporamas disponibles, puis choisissez les "
#~ "diaporamas à exporter. Si vous n’avez que quelques diaporamas, nous les "
#~ "préparerons automatiquement."

#~ msgid ""
#~ "Pressing export will gather and organize all of your slideshows into a "
#~ "single data file that you can use to restore on another website."
#~ msgstr ""
#~ "En appuyant sur le bouton « Exporter », vous rassemblerez et organiserez "
#~ "tous vos diaporamas dans un seul fichier de données que vous pourrez "
#~ "utiliser pour les restaurer sur un autre site."

#~ msgid ""
#~ "Your images will need to be exported manually and uploaded to the new "
#~ "website before importing these slideshows. Additionally, image file names "
#~ "need to match as we will use built in WordPress functions to locate the "
#~ "image based on its current name."
#~ msgstr ""
#~ "Vos images devront être exportées manuellement et téléchargées sur le "
#~ "nouveau site avant d’importer ces diaporamas. De plus, les noms de "
#~ "fichiers des images doivent correspondre, car nous utiliserons les "
#~ "fonctions intégrées de WordPress pour localiser l’image en fonction de "
#~ "son nom actuel."

#~ msgid "Learn how"
#~ msgstr "Apprenez comment"

#~ msgid ""
#~ "Please note that content contained in \"Post Type\" slides will not be "
#~ "exported. Only the slide configurations that refer to the content will be."
#~ msgstr ""
#~ "Veuillez noter que le contenu des diapositives « Type de publication » ne "
#~ "sera pas exporté. Seules les configurations des diapositives qui font "
#~ "référence au contenu le seront."

#~ msgctxt ""
#~ "Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
#~ "Friday\" is the name of an event in the United States"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until November 30th!"
#~ msgstr ""
#~ "Mettez vos diaporamas à niveau ! Inscrivez-vous dès aujourd’hui et "
#~ "bénéficiez de 50% de réduction sur MetaSlider Pro jusqu’au 30 novembre !"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until December 25th!"
#~ msgstr ""
#~ "Mettez vos diaporamas à niveau ! Inscrivez-vous dès aujourd’hui et "
#~ "bénéficiez de 50% de réduction sur MetaSlider Pro jusqu’au 25 décembre !"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until January 14th!"
#~ msgstr ""
#~ "Mettez vos diaporamas à niveau ! Inscrivez-vous dès aujourd’hui et "
#~ "bénéficiez de 50% de réduction sur MetaSlider Pro jusqu’au 14 janvier !"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until April 30th!"
#~ msgstr ""
#~ "Mettez vos diaporamas à niveau ! Inscrivez-vous dès aujourd’hui et "
#~ "bénéficiez de 50% de réduction sur MetaSlider Pro jusqu’au 30 avril !"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until July 31st!"
#~ msgstr ""
#~ "Mettez vos diaporamas à niveau ! Inscrivez-vous dès aujourd’hui et "
#~ "bénéficiez de 50% de réduction sur MetaSlider Pro jusqu’au 31 juillet !"

#~ msgid "Learn More"
#~ msgstr "En savoir plus"

#~ msgid "Click to toggle"
#~ msgstr "Cliquer pour permuter"

#~ msgid "Take a tour"
#~ msgstr "Suivre une visite guidée"

#~ msgid "Add-ons"
#~ msgstr "Modules"

#~ msgid "Allowed Files"
#~ msgstr "Fichiers autorisés"

#~ msgid "Select Files"
#~ msgstr "Sélectionner les fichiers"

#~ msgctxt "Uploader: Drop files to upload - or - Select Files"
#~ msgid "or"
#~ msgstr "ou"

#~ msgid "Drop files to upload"
#~ msgstr "Déposer les fichiers pour les téléverser"

#~ msgid "%d slideshow restored from the Trash."
#~ msgid_plural "%d slideshows restored from the Trash."
#~ msgstr[0] "%d diaporama a été restauré de la corbeille."
#~ msgstr[1] "%d diaporamas ont été restaurés de la corbeille."

#~ msgid "Empty Trash"
#~ msgstr "Vider la corbeille"

#~ msgid "Gallery"
#~ msgstr "Galerie"

#~ msgid "Select Images"
#~ msgstr "Sélectionnez les images"

#~ msgid "edit"
#~ msgstr "modifier"

#~ msgid "Gallery ID #%s"
#~ msgstr "ID de la galerie #%s"

#~ msgid "Your Galleries"
#~ msgstr "Vos galeries"

#~ msgid ""
#~ "%s Easy to use, fun to master. With advanced features for those who need "
#~ "them."
#~ msgstr ""
#~ "%s facile à utiliser, amusant à maîtriser. Avec des fonctions avancées "
#~ "pour ceux qui en ont besoin."

#~ msgid ""
#~ "%s Fully WCAG accessible - All users will be able to enjoy your galleries."
#~ msgstr ""
#~ "%s entièrement accessible conformément aux normes WCAG - Tous les "
#~ "utilisateurs et utilisatrices pourront profiter de vos galeries."

#~ msgid "%s SEO-focused - Search engines will love your galleries."
#~ msgstr ""
#~ "%s centré sur le SEO - les moteurs de recherche vont adorer vos galeries."

#~ msgid ""
#~ "%s Fast - Using modern best practices, your galleries will be faster than "
#~ "ever."
#~ msgstr ""
#~ "%s rapide - en utilisant les meilleures pratiques modernes, vos galeries "
#~ "seront plus rapides que jamais."

#~ msgid "We are building the gallery following these principles:"
#~ msgstr "Nous construisons la galerie en suivant ces principes :"

#~ msgid ""
#~ "Hi, welcome the gallery project by MetaSlider. %1$sRedefining WordPress "
#~ "galleries%2$s."
#~ msgstr ""
#~ "Bonjour, bienvenue au projet de galerie par MetaSlider. %1$sRedéfinir les "
#~ "galeries WordPress%2$s."

#~ msgid "Open Settings"
#~ msgstr "Ouvrir les réglages"

#~ msgid "Spacing (px)"
#~ msgstr "Espacement (px)"

#~ msgid "Image min width (px)"
#~ msgstr "Largeur minimale de l’image (px)"

#~ msgid "Image max width (px)"
#~ msgstr "Largeur maximale de l’image (px)"

#~ msgid "Image width (%)"
#~ msgstr "Largeur de l’image (%)"

#~ msgid "Gallery Settings"
#~ msgstr "Réglages de la galerie"

#~ msgid "Remove image"
#~ msgstr "Retirer l’image"

#~ msgid "Remove image from gallery"
#~ msgstr "Retirer l’image de la galerie"

#~ msgid "Image alt attribute"
#~ msgstr "Attribut alt de l’image"

#~ msgid "Image Settings"
#~ msgstr "Réglages de l’image"

#~ msgid ""
#~ "This gallery extention is in active development, so check back soon for "
#~ "more features."
#~ msgstr ""
#~ "Cette extension de galerie est en cours de développement, alors revenez "
#~ "bientôt pour de nouvelles fonctionnalités."

#~ msgid "Media Library"
#~ msgstr "Médiathèque"

#~ msgid "Select image source"
#~ msgstr "Sélectionnez la source d’image"

#~ msgid "Add images"
#~ msgstr "Ajoutez les images"

#~ msgid "Saved"
#~ msgstr "Enregistré"

#~ msgid "Delete gallery"
#~ msgstr "Supprimer la galerie"

#~ msgid ""
#~ "Are you sure you want to DELETE this gallery? Note that we will not "
#~ "remove images or other external data"
#~ msgstr ""
#~ "Êtes-vous sûr·e de vouloir supprimer cette galerie ? Veuillez noter que "
#~ "nous ne supprimerons pas les images ou autres données externes"

#~ msgid "Delete Gallery"
#~ msgstr "Supprimer la galerie"

#~ msgid "Title not set"
#~ msgstr "Le titre n’est pas défini"

#~ msgid "Press to edit the title"
#~ msgstr "Cliquez pour modifier le titre"

#~ msgid "Focus to edit the title"
#~ msgstr "Focus pour modifier le titre"

#~ msgid "Galleries"
#~ msgstr "Galeries"

#~ msgid "View all galleries"
#~ msgstr "Voir toutes les galeries"

#~ msgid "Cancel"
#~ msgstr "Annuler"

#~ msgid "Ok"
#~ msgstr "OK"

#~ msgid "Action"
#~ msgstr "Action"

#~ msgid "Background color"
#~ msgstr "Couleur d’arrière-plan"

#~ msgid "Dark mode"
#~ msgstr "Mode sombre"

#~ msgid "Work without distraction"
#~ msgstr "Travaillez sans distraction"

#~ msgid "Fullscreen mode"
#~ msgstr "Mode plein écran"

#~ msgid "Add gallery"
#~ msgstr "Ajouter une galerie"

#~ msgid "Create gallery"
#~ msgstr "Créer une galerie"

#~ msgid "Give your gallery a name."
#~ msgstr "Donnez un nom à votre galerie."

#~ msgid "Add to page"
#~ msgstr "Ajouter une page"

#~ msgid "Copy"
#~ msgstr "Copier"

#~ msgid "Copied!"
#~ msgstr "Copié !"

#~ msgid ""
#~ "Copy the shortcode and insert it on your page using a shortcode block or "
#~ "otherwise an html block."
#~ msgstr ""
#~ "Copiez le code court et insérez-le sur votre page à l’aide d’un bloc de "
#~ "code court ou d’un bloc html."

#~ msgid "Add to page/post"
#~ msgstr "Ajouter à une page/un article"

#~ msgid "You are not authorized to update this Gallery"
#~ msgstr "Vous n’êtes pas autorisé à mettre à jour cette galerie"

#~ msgid "You do not have permission to do that."
#~ msgstr "Vous n’avez pas le droit de faire ça."

#~ msgid "Select or deselect all slideshows"
#~ msgstr "Sélectionnez ou désélectionnez tous les diaporamas"

#~ msgid "Toggle all slideshows"
#~ msgstr "Ouvrir/fermer tous les diaporamas"

#~ msgid "Slideshow title updated"
#~ msgstr "Titre du diaporama mis à jour"

#~ msgid "%s slides added successfully"
#~ msgstr "%s diapositives ajoutées avec succès"

#~ msgid "Preparing %s slides..."
#~ msgstr "Préparation de %s diapositives..."

#~ msgid "CSS manager module"
#~ msgstr "Module de gestion des CSS"

#~ msgid "Close"
#~ msgstr "Fermer"

#~ msgid "Coming soon"
#~ msgstr "Prochainement"
languages/ml-slider-hu_HU.mo000064400000014707151213255430011757 0ustar00��\���	���
	$-C
T_k
s
�Z���	2#	V	r	D�	
�	�	�	�	�	�	�	�	




/!
Q
W
f
r

�

�

�
	�
�
�
�
�
�
S�

R	`jsx!�����$�$#,H*u.��	��!
"
+
1
=
M
e
v
l�
O�
CP:Y���'��6�=
HQW�Z.DW^
o z������o�g |�>�+�#7[jq}
���	����?�


)
4
?	JTh���p�2BRaf+r
�$����*�%7+]K�H�	-7 V	w��
������m��6���� �HDf���9>&R/;
GMN5!1FPO*B,+-D7T3\C[XQ$WSU6(?A%:8I4#2=E.'"Z)LV
JHY<@ 0K	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Transition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:57-0600
Last-Translator: 
Language-Team: 
Language: ml
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Slide hozzáadásaHaladó beállításokAnimáció sebességeBiztos vagy benne?NyilakAuto lejátszásDoboz esőDoboz eső visszafelé növekvőDoboz eső visszafeléVáltakozó dobozCSS osztályokFeliratFelirat sebességeKörképFigyelem: ez a beállítás csak fejlesztők részére ajánlott. Amennyiben nem vagy biztos benne, hagyd így.Középre igazításKözépre igazítja a slideshowtVálassz slideshowtKéslelteti a flexsider osztály hozzáadását a slideshowhozA négyzetek közötti késleltetés ms-benFejlesztői beállításokAz összes slideot egy képre rakjaDokumentációPontokViselkedésEffektekHalványulFoldÁltalánosMagasságRejtettVízszintesSzünetAz egyes slideok megjelenésének időtartama milliszekundumbanKépKép alt szövegKép slideKép címeMetaSliderVezérlésÚj ablakKövetkező szövegNincs ütközési módNincs találatSzeletek számaNégyszögek számaÁttetszőségMegállítja a slideshowt, amikor egy slide fölé visszük a kruzort, majd folytatja, amint elvittük onnan aztElőző szövegNyomtatási CSSNyomtatási JSEsőVáltakozóA slideok sorrenjének véletlenszerűségeFordításMegfordítja az animáció irányátSEOMentSlider kiválasztása:Slideshow kiválasztása egy bejegyzéshezVálaszd ki a slide irányátA felirat előtűnésének sebességeAz animációk sebességének beállításaEz a szöveg jelenik meg akkor, ha a 'Következő' irányba akarunk lapozniEz a szöveg jelenik meg akkor, ha az 'Előző' irányba akarunk lapozniBeállításokShortcodeLapozó nyilak megjelenítéseMutassa a slide lapozó pontjaitSlide felSlideSlide késleltetésSlide irányaSlide átmenet effektSlideshow magasságaSlideshow szélességeAz intelligens vágás a reszponzív megjelenés során olyan méretre vágja a képeket, hogy az kövesső a slideshow méretétEgyedi CSS osztályok megadásaNégyzetek késletetéseEgyenesSzéthúzza a slideshow kimenetét a megadott méretreForgásCímCím:A slideok automatikus vetítéseURLSzedd ki a jelölőt, ha szeretnéd a saját CSS osztályodat használniSzedd ki a jelölőt, ha szeretnéd a saját Javascripted használniFüggőlegesSzélességpxlanguages/ml-slider-uk.po000064400000170333151213255440011370 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:59-0600\n"
"Last-Translator: Roman Sulym <sulym.roman@gmail.com>\n"
"Language-Team: LNU\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\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-Generator: Poedit 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Напис"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Нове вікно"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr "Виберіть зображення"

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Увага: це налаштування лише для досвідчених розробників. Якщо ви не "
"впевнені, залишіть його відзначеним. "

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Заголовок"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Шорткод"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Додати слайд"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Зберегти"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Налаштування"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr "Позиція обтинання"

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr "Зверху зліва"

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr "Зверху по центру"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr "Зверху справа"

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr "Посередині зліва"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr "Посередині по центру"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr "Посередині справа"

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr "Знизу зліва"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr "Знизу по центру"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr "Знизу справа"

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Атрибут title"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Атрибут alt"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Заголовок:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Виберіть слайдер:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Слайд-шоу не знайдено"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr "Не вдалось додати слайд. Цей слайд не є зображенням."

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Зображення"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Основне"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr "Обтинання"

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Зображення"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Ширина"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Ширина слайд-шоу"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "пікселів"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Висота"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Висота слайд-шоу"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Ефект"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Ефект переходу слайдів"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Випадково"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Вир"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Дощ"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Класичний"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Зсув"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Вицвітання"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Жалюзі"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Випадкові квадрати"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Мозаїка"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Зворотня мозаїка"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Наростаюча мозаїка"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Ковзання"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Стрілки"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Показувати стрілки вперед/назад"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Навігація"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Показувати мітки навігації"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Не показувати"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Крапки"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Додатково"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Розтягнути слайд-шоу на всю ширину батьківського елемента"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Вирівнювати по центру"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Відцентрувати слайд-шоу"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Відтворювати автоматично"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Перехід між слайдами відбувається автоматично"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr "Обтинання зображень"

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr "Розумне обтинання зображень"

#: ml-slider.php:1926
msgid "Standard"
msgstr "Типовий"

#: ml-slider.php:1933
msgid "Disabled"
msgstr "Відключено"

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr "Відключено (Smart Pad)"

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Розумне обтинання гарантує, що обтинання слайдів буде виконано таким чином, "
"щоб розмір слайд-шоу не змінювався"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Режим каруселі"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr "Показувати декілька слайдів одночасно. Слайд-шоу матиме ширину 100%"

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "Відступ каруселі"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "Відступ (в пікселях) між слайдами в каруселі"

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Випадковий порядок слайдів"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Пауза при наведенні курсора"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Зупиняє слайд-шоу при наведенні курсора і відновлює, коли курсор знову "
"покидає його межі"

#: ml-slider.php:2022
msgid "Reverse"
msgstr "В зворотньому порядку"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Змінити порядок слайдів на зворотній"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Затримка показу слайда"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Як довго показувати кожен слайд (в мілісекундах)"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Швидкість анімації"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Задати швидкість анімації (в мілісекундах)"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Кількість секцій"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Кількість квадратів"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Напрямок відтворення"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Вибрати напрямок відтворення"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Горизонтальний"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Вертикальний"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Згладжування"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Попередній текст"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Задати текст для мітки 'назад' (попередній слайд)"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Наступний текст"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Задати текст для мітки 'вперед' (наступний слайд)"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Затримка між квадратами"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "Затримка між квадратами в мілісекундах"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Прозорість"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Швидкість напису"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Встановити швидкість вицвітання напису"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Опції для розробників"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS класи"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Вкажіть будь-які користувацькі CSS класи, які Ви хочете додати в контейнер "
"слайдера"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Виводити CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Зніміть цю галочку, якщо Ви хочете використовувати свій власний CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Виводити JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr ""
"Зніміть цю галочку, якщо Ви хочете використовувати свій власний Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "Безконфліктний режим"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Затримка при додаванні класу flexslider у слайд-шоу"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Додати слайд-шоу"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Виберіть слайд-шоу"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr "Вставити слайд-шоу"

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Документація"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Ви впевнені?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-it_IT-metaslider-admin-script.json000064400000166552151213255440017043 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=n != 1;","lang":"it"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":["https://www.metaslider.com"],"MetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site.":["MetaSlider ti dà la possibilità di creare una bellissima presentazione, un carosello o una galleria sul tuo sito WordPress."],"Spice up your site with animated layers and video slides with MetaSlider Pro":["Vivacizza il tuo sito con livelli animati e diapositive video con MetaSlider Pro"],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":["Aumenta le tue entrate e le conversioni con le diapositive video e molte altre caratteristiche di MetaSlider Pro"],"Can you translate? Want to improve MetaSlider for speakers of your language?":["Puoi tradurre? Vuoi migliorare MetaSlider per chi parla la tua lingua?"],"weeks":["settimane"],"Let's Start &rarr;":["Iniziamo &rarr;"],"Find out more &rarr;":["Scopri di più &rarr;"],"Get MetaSlider Pro &rarr;":["Ottieni MetaSlider Pro &rarr;"],"Sign up &rarr;":["Iscriviti &rarr;"],"Go there &rarr;":["Vai a &rarr;"],"Read more":["Leggi tutto"],"The security check failed. Please refresh the page and try again.":["Il controllo di sicurezza è fallito. Aggiorna la pagina e riprova."],"Access denied. Sorry, you do not have permission to complete this task.":["Accesso negato. Non hai i permessi per completare questa attività."],"Bad request":["Richiesta sbagliata"],"This item does not exist. Please refresh the page and try again.":["Questo elemento non esiste. Aggiorna la pagina e riprova."],"The option was successfully updated":["L'opzione è stata aggiornata correttamente"],"The requested data does not exist.":["I dati richiesti non esistono."],"The attempt to update the option failed.":["Il tentativo di aggiornare l'opzione è fallito."],"URL":["URL"],"Caption":["Didascalia"],"New Window":["Nuova finestra"],"Please confirm that you would like to delete this slideshow.":["Conferma di voler eliminare questa presentazione."],"Undo":["Annulla"],"Slide restored":["Diapositiva ripristinata"],"Slide deleted":["Diapositiva eliminata"],"Success":["Successo"],"Item was copied to your clipboard":["L'elelmento è stato copiato negli appunti"],"Press to undo":["Premi per annullare"],"Select replacement image":["Selezione immagine sostitutiva"],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Attenzione: questa impostazione è solo per gli sviluppatori avanzati. Se non sei sicuro, lasciala selezionata."],"The request format was not valid.":["Il formato richiesto non è valido."],"This slideshow is no longer available.":["Questa presentazione non è più disponibile."],"Nothing to import.":["Nulla da importare."],"This was not a slideshow, so we cannot delete it.":["Questo non era una presentazione, quindi non possiamo eliminarla."],"This was not a slideshow, so we cannot update the setting.":["Questa non era una presentazione, quindi non possiamo aggiornare l'impostazione."],"The title cannot be empty.":["Il titolo non può essere vuoto."],"The field (%s) cannot be empty":["Il campo (%s) non può essere vuoto"],"Maximum Number of Custom Field in Post Feed Sliders":["Numero massimo di campi personalizzati negli slider dei feed degli articoli"],"Import slug not found":["Slug di importazione non trovato"],"Import data could not be processed":["I dati di importazione non possono essere processati"],"We could not find any images to import.":["Non abbiamo trovato nessuna immagine da importare."],"New Slideshow":["Nuova presentazione"],"Previous":["Precedente"],"Next":["Seguente"],"No themes found.":["Nessun tema trovato."],"We removed your selected theme as it could not be found. Was the folder deleted?":["Abbiamo rimosso il tema selezionato perché non è stato trovato. La cartella è stata cancellata?"],"You don't have any slideshows yet. Click %shere%s to create a new slideshow.":["Non ci sono ancora presentazioni. Fare clic %squi%s per creare una nuova presentazione."],"Published":["Pubblicato"],"Trash":["Cestino"],"Preview":["Anteprima"],"Title":["Titolo"],"Created":["Creata"],"Shortcode":["Shortcode"],"Restore":["Ripristina"],"Delete Permanently":["Elimina definitivamente"],"Click to copy shortcode.":["Fai clic per copiare lo shortcode."],"Edit":["Modifica"],"Logo":["Logo"],"Dismiss":["Ignora"],"Slideshows":["Presentazioni"],"Add New":["Aggiungi nuova"],"Search":["Cerca"],"Browser upgrade required":["È necessario l'aggiornamento del browser"],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":["Sembra che tu stia usando %s. Mentre MetaSlider supporta %s sul frontend del sito dove gli utenti vedono le tue presentazioni, alcuni degli strumenti che forniamo qui di seguito richiedono un browser moderno."],"Microsoft Internet Explorer 11":["Microsoft Internet Explorer 11"],"IE11":["IE11"],"Update Internet Explorer":["Aggiorna Internet Explorer"],"Main Options":["Opzioni principali"],"Width":["Larghezza"],"Slideshow width":["Larghezza della presentazione"],"px":["px"],"Height":["Altezza"],"Slideshow height":["Altezza della presentazione"],"Transition Effect":["Effetto di transizione"],"This animation is used when changing slides.":["Questa animazione viene usata al cambio delle diapositive."],"Random":["Casuale"],"Swirl":["Vortice"],"Rain":["Pioggia"],"Straight":["Rettilineo"],"Slice Down":["Strisce in basso"],"Slice Up":["Strisce in alto"],"Slice Up Left":["Strisce dall'alto a sinistra"],"Slide Up Down":["Entrata dall'alto in basso"],"Slice Up Down Left":["Bande dall'alto in basso a sinistra"],"Fade":["Dissolvenza"],"Fold":["Avvolgimento"],"Slide in Right":["Entrata da destra"],"Slide in Left":["Entrata da sinistra"],"Box Random":["Quadrati casuali"],"Box Rain":["Pioggia di quadrati"],"Box Rain Reverse":["Pioggia di quadrati invertita"],"Box Rain Grow":["Box pioggia crescente"],"Box Rain Grow Reverse":["Pioggia crescente di quadrati invertita"],"Slide":["Scorrimento"],"Arrows":["Frecce"],"Show the previous/next arrows":["Mostra le frecce precedente/successiva"],"Navigation":["Navigazione"],"Show the slide navigation bullets":["Mostra i pallini di navigazione delle diapositive"],"Hidden":["Nascosto"],"Dots":["Punti"],"Thumbnail":["Miniatura"],"Filmstrip":["Pellicola"],"100% width":["Larghezza 100%"],"Stretch the slideshow output to fill it's parent container":["Adatta le immagine al contenitore genitore"],"Theme":["Tema"],"Mobile Options":["Opzioni mobile"],"Hide arrows on":["Nascondi le frecce su"],"When enabled this setting will hide the arrows on screen widths less than %spx":["Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza inferiore a %spx"],"When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx":["Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza compresa tra %1$spx e %2$spx"],"When enabled this setting will hide the arrows on screen widths equal to or greater than %spx":["Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza pari o superiore a %spx"],"Hide navigation on":["Nascondi la navigazione su"],"When enabled this setting will hide the navigation on screen widths less than %spx":["Se abilitata, questa impostazione nasconde la navigazione su schermi di larghezza inferiore a %spx"],"When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx":["Se abilitata, questa impostazione nasconde la navigazione su schermi di larghezza compresa tra %1$spx e %2$spx"],"When enabled this setting will hide the navigation on screen widths equal to or greater than %spx":["Se abilitata, questa impostazione nasconde la navigazione su schermi di larghezza pari o superiore a %spx"],"Advanced Options":["Opzioni avanzate"],"Center align":["Allinea al centro"],"Center align the slideshow in the available space on your website.":["Allinea al centro la presentazione nello spazio disponibile sul sito web."],"Auto play":["Riproduzione automatica"],"Transition between slides automatically":["Transizione automatica tra le diapositive"],"Loop":["Loop"],"If you choose \"Continuously\", the slides will loop infinitely. If you choose \"Stop on first slide\", the slideshow will stop on the first slide after showing all the items. If you choose \"Stop on last slide\", the slides will stop on the last slide.":["Se scegli \"Continuamente\", le diapositive andrannoin loop all'infinito. Se scegli \"Ferma sulla prima diapositiva\", la presentazione si fermerà sulla prima diapositiva dopo aver mostrato tutti gli elementi. Se scegli \"Ferma sull'ultima diapositiva\", la presentazione si fermerà sull'ultima diapositiva."],"Continuously":["Continuo"],"Stop on Last Slide":["Arresta sull'ultima diapositiva"],"Stop on First Slide":["Arresta sulla prima diapositiva"],"Image Crop":["Ritaglio Immagine"],"Smart Crop":["Ritaglio intelligente"],"Standard":["Standard"],"Disabled":["Disabilitato"],"Disabled (Smart Pad)":["Disabilitato (Smart Pad)"],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Ritaglio intelligente assicura che le tue diapositive responsive vengano ritagliate con le proporzioni delle dimensioni adeguate alla presentazione"],"Smooth Height":["Altezza fluida"],"Allow navigation to follow the slide's height smoothly":["Consentire alla navigazione di seguire fluidamente l'altezza della diapositiva"],"Carousel mode":["Modalità carosello"],"Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect.":["Visualizzazione di più diapositive contemporaneamente. L'output della presentazione sarà largo il 100%. La modalità \"Carosello\" utilizza solo l'effetto \"Diapositiva\"."],"Loop Continuously (Beta)":["Ciclo infinito (beta)"],"Infinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.":["Ciclo infinito di diapositive quando è attivata la modalità \"Carosello\". Questa opzione disabilita le frecce e la navigazione."],"Carousel margin":["Margini del carosello"],"Pixel margin between slides in carousel.":["Margine in pixel tra le diapositive nel carosello."],"Fade in":["Dissolvenza"],"This adds an animation when the slideshow loads. It only uses the \"Fade\" transition effect":["Questo aggiunge un'animazione al caricamento della presentazione. Utilizza solo l'effetto di transizione \"Dissolvenza\"."],"Randomise the order of the slides":["Ordine casuale delle diapositive"],"Hover pause":["Pausa in hover"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Sospendi lo scorrimento quando il mouse è sopra l'immagine, riprendi quando il mouse non è più sull'immagine."],"Reverse":["Inverti"],"Reverse the animation direction":["Inverti la direzione dell'animazione"],"Touch Swipe":["Tocca e scorri"],"Allow touch swipe navigation of the slider on touch-enabled devices":["Consentire la navigazione a scorrimento dello slider su dispositivi abilitati al tocco"],"Slide delay":["Ritardo della diapositiva"],"How long to display each slide, in milliseconds":["Quanto tempo visualizzare ogni diapositiva, in millisecondi"],"Transition Speed":["Velocità di transizione"],"Choose the speed of the animation in milliseconds. You can select the animation in the \"Effect\" field.":["Scegli la velocità dell'animazione in millisecondi. Puoi selezionare l'animazione nel campo \"Effetto\"."],"Number of slices":["Numero di porzioni"],"Number of squares":["Numero di quadrati"],"Slide direction":["Direzione diapositive"],"Select the direction that slides will move. Vertical will not work if \"Carousel mode\" is enabled or \"Effect\" is set to \"Fade\".":["Seleziona la direzione in cui si muoveranno le diapositive. Il movimento verticale non funziona se è attivata la \"Modalità carosello\" o se \"Effetto\" è impostato su \"Dissolvenza\"."],"Horizontal":["Orizzontale"],"Vertical":["Verticale"],"Easing":["Interpolazione"],"Easing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the 'Slide' Effect.":["L'interpolazione aggiunge alle transizioni delle diapositive un'accelerazione e una decelerazione graduali, anziché avvii e arresti bruschi. L'interpolazione utilizza solo l'effetto \"Diapositiva\"."],"Previous text":["Testo precedente"],"Set the text for the 'previous' direction item":["Imposta il testo per l'elemento nella direzione \"precedente\""],"Next text":["Testo successivo"],"Set the text for the 'next' direction item":["Imposta il testo per la direzione \"seguente\" dell'elemento"],"Square delay":["Ritardo dei quadri"],"Delay between squares in ms":["Ritardo tra i riquadri in ms"],"Opacity":["Opacità"],"Opacity of title and navigation, between 0 and 1":["Opacità del titolo e della navigazione, tra 0 e 1"],"Caption speed":["Velocità della didascalia"],"Set the fade in speed of the caption":["Configura la velocità della dissolvenza della didascalia"],"Accessibility Options":["Opzioni di accessibilità"],"Keyboard Controls":["Controlli da tastiera"],"Use arrow keys to get to the next slide.":["Utilizza i tasti delle frecce per passare alla diapositiva successiva."],"ARIA Live":["Aria Live"],"If Autoplay is enabled, this causes screen readers to announce that the slides are changing.":["Se la riproduzione automatica è abilitata i lettori di schermo diranno che le diapositive stanno cambiando."],"Tabindex for navigation":["Tabindex per la navigazione"],"This helps make the slideshow navigation more accessible.":["Questo aiuta a rendere la navigazione della presentazione più accessibile."],"Developer Options":["Opzioni per gli sviluppatori"],"CSS classes":["Classi CSS"],"Enter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.":["Inserisci le classi CSS personalizzate per applicare il wrapper allo slider. Separa le classi con uno spazio."],"Print CSS":["Aggiungi CSS"],"Uncheck this if you would like to include your own CSS":["Togli la spunta se vuoi inserire il tuo CSS"],"Print JS":["Aggiungi JS"],"Uncheck this if you would like to include your own Javascript":["Togli la spunta se vuoi inserire il tuo JavaScript"],"No conflict mode":["Modalità senza conflitti"],"Delay adding the flexslider class to the slideshow":["Ritarda l'aggiunta della classe flexslider alla presentazione"],"Trashed slides":["Diapositive cestinate"],"View trashed slides":["Visualizza le diapositive cestinate"],"Thumbnail (Pro)":["Miniatura (Pro)"],"Filmstrip (Pro)":["Pellicola (Pro)"],"Add a new slide":["Aggiungi una nuova diapositiva"],"Add Slide":["Aggiungi diapositiva"],"Save & open the preview":["Salva e apri l'anteprima"],"Add a new slideshow":["Aggiungi una nuova presentazione"],"New":["Nuova"],"Duplicate this slideshow":["Duplica questa presentazione"],"Duplicate":["Duplica"],"Adding custom CSS is a MetaSlider Pro feature. Click to learn more.":["L'aggiunta di CSS personalizzato è una caratteristica di MetaSlider Pro. Fai clic per approfondire."],"Add CSS":["Aggiungi CSS"],"Save slideshow":["Salva la presentazione"],"Save":["Salva"],"Return to Published Slides":["Torna alle diapositive pubblicate"],"Settings":["Impostazioni"],"Help Center":["Centro assistenza"],"Import":["Importa"],"Export":["Esporta"],"Carousel Slideshow":["Presentazione a carosello"],"Carousel Slideshow with Captions":["Presentazione a carosello con didascalie"],"Thanks for using MetaSlider, the WordPress slideshow plugin":["Grazie per utilizzare MetaSlider, il plugin per le presentazioni di WordPress"],"Create a slideshow with your images":["Crea una presentazione con le tue immagini"],"Choose your own images to start a new slideshow.":["Scegli le tue immagini per iniziare una nuova presentazione."],"Open Media Library":["Apri la libreria dei media"],"Create a slideshow with sample images":["Crea una presentazione con immagini campione"],"Choose one of our demos with sample images, or a blank slideshow with no images.":["Scegli uno dei nostri esempi con immagini campione oppure una presentazione senza immagini."],"Blank Slideshow":["Presentazione vuota"],"Image Slideshow":["Presentazione d'immagini"],"Create a Slideshow":["Crea una presentazione"],"Comparison Chart":["Tabella di comparazione"],"Free":["Gratuito"],"Pro":["Pro"],"Installed":["Installato"],"Upgrade now":["Aggiorna ora"],"Create unlimited slideshows":["Crea presentazioni illimitate"],"Create and manage as many slideshows as you need.":["Crea e gestisci tutte le presentazioni che ti necessitano."],"Regular updates":["Aggiornamenti regolari"],"We keep MetaSlider compatible with the latest versions of WordPress.":["Manteniamo MetaSlider compatibile con le ultime versioni di WordPress."],"Intelligent image cropping":["Ritaglio intelligente delle immagini"],"Unique Smart Crop functionality ensures your slides are perfectly resized.":["L'esclusiva funzionalità di \"Ritaglio intelligente\" assicura che le tue diapositive siano perfettamente ridimensionate."],"Thumbnail navigation":["Navigazione delle miniature"],"Allow users to browse your slideshows using thumbnail navigation.":["Permetti agli utenti di navigare nelle tue presentazioni attraverso le miniature."],"Add YouTube and Vimeo slides":["Aggiungi diapositive video di YouTube e Vimeo"],"Easily include responsive high definition YouTube and Vimeo videos.":["Includi facilmente in modo responsive i video ad alta definizione di YouTube e Vimeo."],"Add local video slides":["Aggiungi diapositive con video locale"],"Create slideshows with videos from your WordPress media library.":["Crea presentazioni con i video della tua libreria dei media di WordPress"],"Add external video slides":["Aggiungi diapositive con video esterno"],"Create slideshows with external videos.":["Crea presentazioni con i video esterni."],"Add HTML overlay slides":["Aggiungi diapositive HTML in sovrapposizione"],"Create completely customized HTML slides using the inline editor.":["Crea diapositive HTML completamente personalizzate usando l'editor in linea."],"Add slide layers":["Aggiungi livelli di diapositive"],"Add layers to your slides with over 50 available transition effects.":["Aggiungi dei livelli alle tue diapositive con oltre 50 effetti di transizione disponibili."],"Add Post Feed slides":["Aggiungi diapositiva di feed di articoli"],"Easily build slides based on your WordPress posts.":["Costruisci facilmente delle diapositive basate sui tuoi articoli di WordPress."],"Add custom CSS":["Aggiungi CSS personalizzato"],"Customize your slideshows to fit with your website.":["Personalizza le tue presentazioni per adattarle al tuo sito web."],"Schedule your slides":["Programma le tue diapositive"],"Add a start/end date to individual slides.":["Aggiungi una data di inizio/fine a ciascuna diapositiva."],"Toggle your slide's visibility":["Attiva/disattiva la visibilita della tua diapositiva"],"Hide any slide, without having to delete them.":["Nascondi qualsiasi diapositiva, senza doverla eliminare."],"Premium support":["Supporto premium"],"Have your specific queries addressed directly by our experts.":["Fatevi indirizzare le vostre domande specifiche direttamente dai nostri esperti."],"Crop Position":["Posizione del ritaglio"],"Choose how images are cropped if their size doesn't exactly match the size of your slideshow. This works if \"Smart Crop\" is selected in the \"Image Crop\" settings.":["Scegli come ritagliare le immagini se le loro dimensioni non corrispondono esattamente a quelle della presentazione. Questo funziona se \"Ritaglio intelligente\" è selezionato nelle impostazioni di \"Ritaglio immagine\"."],"Top Left":["In alto a sinistra"],"Top Center":["In alto al centro"],"Top Right":["In alto a destra"],"Center Left":["In centro a sinistra"],"Center Center":["Centrato in mezzo"],"Center Right":["In centro a destra"],"Bottom Left":["In basso a sinistra"],"Bottom Center":["In basso al centro"],"Bottom Right":["In basso a destra"],"Image Link URL":["URL link immagine"],"When visitors click on your image slide, they will be taken to this URL.":["Quando i visitatori fanno clic sulla tua diapositiva immagine, vengono indirizzati a questo URL."],"New window":["Nuova finestra"],"Open link in a new window":["Apri il link in una nuova finestra"],"Image Link Alt Text":["Testo alternativo link immagine"],"This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended.":["Questo testo è usato dai motori di ricerca e dai visitatori che usano i lettori di schermo. L'aggiunta del testo alternativo per i link è fortemente raccomandato."],"Hide slide on:":["Nascondi la diapositiva su:"],"When enabled this setting will hide the slide on screen widths equal to or greater than %spx":["Se attivata, questa impostazione nasconde la diapositiva su schermi di larghezza uguali o maggiori di %spx"],"When enabled this setting will hide the slide on screen widths of %1$spx to %2$spx":["Se attivata, questa impostazione nasconde la diapositiva su schermi di larghezza compresa tra %1$spx e %2$spx."],"Hide caption on:":["Nascondi la didascalia su:"],"When enabled this setting will hide the caption on screen widths equal to or greater than %spx":["Se attivata, questa impostazione nasconde la didascalia su schermi di larghezza uguali o maggiori di %spx"],"When enabled this setting will hide the caption on screen widths of %1$spx to %2$spx":["Se attivata, questa impostazione nasconde la didascalia su schermi di larghezza compresa tra %1$spx e %2$spx"],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":["Aggiorna o attiva ora il tuo MetaSlider Pro per aggiungere un'opzione di data di inizio/fine alle tue diapositive"],"Get MetaSlider Pro":["Ottieni MetaSlider Pro"],"With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day.":["Con MetaSlider Pro è possibile programmare le diapositive. Puoi scegliere di mostrare le tue diapositive in date, giorni della settimana o orari specifici."],"Image Title Text":["Testo del titolo dell'immagine"],"Visitors will see this text if they hover over your image slide. Adding Title text is useful but not required.":["I visitatori vedranno questo testo se passano il mouse sulla diapositiva dell'immagine. L'aggiunta del testo del titolo è utile ma non obbligatoria."],"Enable this to inherit the image title":["Abilita questo per ereditare il titolo dell'immagine"],"Use the image title":["Usa il titolo dell'immagine"],"Image Alt Text":["Testo alternativo dell'immagine"],"This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.":["Questo testo viene utilizzato dai motori di ricerca e dai visitatori che utilizzano gli screen reader. L'aggiunta del testo \"alt\" è altamente raccomandata."],"Enable this to inherit the image alt text":["Abilita questo per ereditare il testo alternativo dell'immagine"],"Use the image alt text":["Usa il testo alternativo dell'immagine"],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":["Le tue impostazioni potrebbero non essere salvate correttamente a causa di una configurazione sul tuo server. %s è attualmente impostato su %s, ma noi raccomandiamo un'impostazione di 4000. Per favore vedi %s per maggiori informazioni. Il file php.ini viene caricato da qui: %s"],"this article":["questo articolo"],"Warning:":["Avvertenza:"],"Title:":["Titolo:"],"Select Slider:":["Seleziona lo slider:"],"No slideshows found":["Nessuna presentazione trovata"],"The requested image does not exist. Please try again.":["L'immagine richiesta non esiste. Riprova."],"The image was successfully updated.":["L'immagine è stata aggiornata con successo."],"There was an error updating the image. Please try again":["C'è stato un errore nell'aggiornamento dell'immagine. Riprova"],"There was an error while updating the database. Please try again.":["C'è stato un errore nell'aggiornamento del database. Riprova."],"Trash slide":["Cestina diapositiva"],"Update slide image":["Aggiorna l'immagine della diapositiva"],"Duplicate slide":["Duplica diapositiva"],"This isn't a valid image format. Please try again.":["Questo non è un formato d'immagine valido. Riprova."],"Access denied":["Accesso negato"],"Image Slide":["Diapositiva immagine"],"Warning: The image data does not exist. Please re-upload the image.":["Attenzione: I dati dell'immagine non esistono. Ricarica l'immagine."],"General":["Generale"],"Link":["Link"],"SEO":["SEO"],"Mobile":["Mobile"],"Crop":["Ritaglia"],"Schedule":["Programma"],"Click the \"Add Slide\" button to create your slideshow":["Fai clic sul pulsante \"Aggiungi diapositiva\" per creare la tua presentazione"],"Edit Slideshow":["Modifica presentazione"],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":["MetaSlider Pro è installato ma non è aggiornato. Puoi aggiornarlo %squi%s. Per saperne di più su questo avviso fai clic %squi%s"],"Home":["Home"],"Quick Start":["Avvio rapido"],"Settings & Help":["Impostazioni e aiuto"],"Upgrade to Pro":["Aggiorna a Pro"],"All Slideshows":["Tutte le presentazioni"],"Create Slideshow":["Crea una presentazione"],"Image":["Immagine"],"Add to slideshow":["Aggiungi alla presentazione"],"Post Feed":["Feed articolo"],"Vimeo":["Vimeo"],"YouTube":["YouTube"],"Layer Slide":["Diapositiva del livello"],"External URL":["URL esterno"],"Local Video":["Video locale"],"External Video":["Video esterno"],"The slide was successfully restored":["La diapositiva è stata ripristinata con successo"],"The attempt to restore the slide failed.":["Il tentativo di ripristinare la diapositiva è fallito."],"The slide was successfully trashed":["La diapositiva è stata cestinata con successo"],"The slide was permanently deleted":["La diapositiva è stata eliminata definitivamente"],"Trashed Slides":["Diapositive cestinate"],"Loading... Please wait!":["Caricamento in corso… attendi!"],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":["Stai visualizzando delle diapositive che sono state cestinate e che verranno eliminate automaticamente tra %s giorni."],"Move slideshow to trash":["Sposta la presentazione nel cestino"],"Add slideshow":["Aggiungi presentazione"],"Choose slideshow":["Scegli la presentazione"],"Insert slideshow":["Inserisci la presentazione"],"Create slides by adding text, videos and more to your images":["Crea diapositive aggiungendo testo, video e molto altro alle tue immagini."],"With Layer slides, you can create beautiful, stylish layers of different elements.":["Con le diapositive a livelli puoi creare bellissimi ed eleganti livelli di elementi diversi."],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":["Inizia con un'immagine e poi può aggiungere testo, video, colori, animazioni, altre immagini e persino shortcode."],"Find out more about MetaSlider Pro":["Leggi tutto su MetaSlider Pro"],"Create slideshows with your Vimeo videos":["Crea presentazioni con i tuoi video Vimeo"],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":["Con le diapositive di Vimeo, puoi creare bellissime presentazioni con i tuoi video di Vimeo."],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":["Le diapositive di Vimeo visualizzeranno i tuoi video con riproduzione automatica, silenziamento, possibilità di nascondere i controlli e molto altro ancora."],"Create slideshows with your YouTube videos":["Crea presentazioni con i tuoi video YouTube"],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":["Con le diapositive di YouTube, puoi creare bellissime presentazioni con i tuoi video di YouTube."],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":["Le diapositive di YouTube visualizzeranno i tuoi video con riproduzione automatica, silenziamento, possibilità di nascondere i controlli e molto altro ancora."],"Create slideshows with your posts":["Crea presentazioni con i tuoi articoli"],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":["Con le diapositive dei feed degli articoli, puoi creare presentazioni con i tuoi ultimi articoli, eventi o prodotti WooCommerce."],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":["Le diapositive feed degli articoli visualizzeranno automaticamente i tuoi articoli con immagini, testo, campi personalizzati e molto altro ancora."],"Create slideshows with images stored outside of WordPress":["Crea presentazioni con immagini memorizzate fuori da WordPress"],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":["Con le diapositive URL esterne, ti sarà possibile caricare le immagini direttamente da fonti diverse da WordPress, come CDN o host di immagini."],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":["Le diapositive con URL esterno ti offrono tutta la potenza di MetaSlider, utilizzando le immagini memorizzate ovunque tu voglia."],"Create slideshows with videos in your media library":["Crea presentazioni con i video della tua libreria dei media"],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":["Con le diapositive per video locale puoi costruire bellissime presentazioni con i video della tua libreria dei media di WordPress."],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":["Le diapositive per video locale visualizzeranno i tuoi video in MP4, WebM, e MOV con un'immagine di copertina, riproduzione automatica, opzione muto, caricamento differito, la possibilità di nascondere i controlli e molto altro."],"Create slideshows with videos stored outside of WordPress":["Crea presentazioni con video memorizzati fuori da WordPress"],"With External Video slides, you can add videos directly from non-WordPress sources.":["Con le diapositive video esterno, ti sarà possibile caricare i video direttamente da fonti diverse da WordPress."],"External Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":["Le diapositive per video esterno visualizzeranno i tuoi video in MP4, WebM, e MOV. Le caratteristiche includono didascalia testuale, un'immagine di copertina, riproduzione automatica, silenziazione, caricamento differito, la possibilità di nascondere i controlli e molto altro."],"Premium Support":["Supporto Premium"],"MetaSlider Pro":["MetaSlider Pro"],"Support":["Supporto"],"Documentation":["Documentazione"],"Leave a review":["Scrivi una recensione"],"Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.":["Bitono è un tema minimalista con uno schema a due colori. Raccomandato per diapositive d'immagini, immagini esterne e feed di articoli."],"Databold is a minimalist theme recommended for Image, External Image and Post feed slides.":["Databold è un tema minimalista raccomandato per diapositive d'immagini, immagini esterne e feed di articoli."],"Draxler is a minimalist theme.":["Draxler è un tema minimalista."],"A simple, slick square design that looks good on darker images.":["Un design quadrato semplice ed elegante che sta bene con le immagini più scure."],"A clean, subtle theme that features block arrows and bold design.":["Un tema pulito e raffinato che presenta blocchi di frecce e un design deciso."],"A fun, circular design to brighten up your site. This theme works well with dark images":["Un design divertente e circolare per illuminare il tuo sito. Questo tema funziona bene con immagini scure"],"A minimalistic, no-frills design that was built to blend in with most themes.":["Un design minimalista e senza fronzoli che è stato costruito per fondersi con la maggior parte dei temi."],"This theme places the controls vertically for a unique look.":["Questo tema mette i controlli in verticale per un look unico."],"A futuristic and linear design that goes will with a dark background.":["Un design futuristico e lineare che si sposa con uno sfondo scuro."],"A simple theme that neatly blends into any existing website.":["Un tema semplice che si fonde perfettamente con qualsiasi sito esistente."],"This theme has a special additional functionality that uses image titles as the slide navigation. ":["Questo tema ha una speciale funzionalità aggiuntiva che utilizza i titoli delle immagini come navigazione delle diapositive. "],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":["Se vuoi utilizzare i titoli delle immagini come navigazione, è necessario utilizzare FlexSlider. Inoltre, puoi modificare l'etichetta di navigazione della diapositiva, modificare il titolo dell'immagine nella libreria dei media o manualmente nella diapositiva (scheda SEO)."],"This theme has a unique design that gives it a sophisticated look.":["Questo tema ha un design unico che gli dà un aspetto sofisticato."],"A bold and clear design that works well on a darker images.":["Un design netto e chiaro che funziona bene su immagini più scure."],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.":["Un tema minimalista non invasivo che ti permette di mettere in mostra le tue bellissime foto. Da utilizzare preferibilmente con le diapositive di immagini."],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":["Il tema Nivo Light incluso qui per scopi di eredità. Nota: funziona solo con Nivo Slider"],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":["Il tema Nivo Bar incluso qui per scopi di eredità. Nota: funziona solo con Nivo Slider"],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":["Il tema Nivo Dark incluso qui per scopi di eredità. Nota: funziona solo con Nivo Slider"],"Previous Slide":["Diapositiva precedente"],"Next Slide":["Diapositiva successiva"],"Preparing 1 slide...":["Preparando 1 diapostiva…"],"1 slide added successfully":["1 diapostiva aggiunta correttamente"],"Opening add slide UI...":["Apertura dell'interfaccia utente per aggiungere diapositive…"],"Closing add slide UI...":["Chusura dell'interfaccia utente per aggiungere diapositive…"],"Updating slide...":["Aggiornamento della diapositiva…"],"Slide updated successfully":["Diapositiva aggiornata correttamente"],"CSS Manager notice opened":["Avviso del gestore CSS aperto"],"CSS Manager notice closed":["Avviso del gestore CSS chiuso"],"CSS Manager":["Gestore CSS"],"Easily add custom CSS to your slideshows to create the perfect design for your sites.":["Aggiungi facilmente CSS personalizzati alle tue presentazioni per creare il design perfetto per i tuoi siti."],"Built-in text editor full of features.":["Editor di testo incorporato pieno di funzionalità."],"Loads only on the front-end where needed.":["Carica solo sul frontend dove necessario."],"Includes recipes to solve common scenarios.":["Include raccomandazioni per risolvere situazioni comuni."],"Analytics notice opened":["Avviso analitico aperto"],"Analytics notice closed":["Avviso analitico chiuso"],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":["Ci piacerebbe poterti inviare di tanto in tanto delle email con aggiornamenti importanti sulla sicurezza e le prossime caratteristiche. Vedi la nostra %s per maggiori informazioni."],"privacy policy":["informativa sulla privacy"],"Thanks for using MetaSlider":["Grazie per utilizzare MetaSlider"],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":["Stiamo realizzando la nuova versione di MetaSlider. Puoi aiutarci condividendo con noi le informazioni di diagnostica in modo impersonale che non coinvolgono i tuoi dati sensibili?"],"Agree and continue":["Accetta e continua"],"No thanks":["No grazie"],"Duplicating...":["Copia in corso..."],"To edit this slide, click \"Restore\" and then \"Return to Published Slides\"":["Per modificare questa diapositiva, fai click su \"Ripristina\" e poi su \"Ritorna alle diapositive pubblicate\""],"MetaSlider dashboard loaded":["Bacheca di MetaSlider caricata"],"Saving...":["Salvataggio in corso..."],"Saving %s slides. This may take a few moments.":["Salvataggio delle diapositive %s. Questo può richiedere qualche istante."],"Slideshow saved":["Presentazione salvata"],"Duplicated successfully. Reloading...":["Duplicato con successo. Caricando…"],"Settings saved":["Impostazioni salvate"],"Still working... %s slides remaining...":["Ancora in corso… %s diapositive rimaste…"],"Tour cancelled successfully":["Tour annullato con successo"],"Tour cancelled unsuccessfully":["Tour annullato senza successo"],"Are you sure?":["Sei sicuro?"],"This slideshow will be moved to the \"Trash\" area.":["Questa presentazione verrà spostata nell'area \"Cestino\"."],"Confirm":["Conferma"],"Something went wrong":["Qualcosa è andato storto"],"OK":["OK"],"Preparing slideshow for duplication...":["Preparando la presentazione per la duplicazione…"],"Doing something...":["Facendo qualcosa..."],"No error message provided.":["Nessun messaggio di errore fornito."],"Undefined error occurred":["Si è verificato un errore non definito"],"No error message reported.":["Nessun messaggio di errore riportato."],"Saving theme...":["Salvataggio del tema…"],"Theme saved":["Tema salvato"],"Slideshow Theme":["Tema presentazione"],"This theme is not officially supported by the slider you chose. Your results might vary.":["Questo tema non è ufficialmente supportato dal visore che hai scelto. I tuoi risultati potrebbero variare."],"Custom theme":["Tema personalizzato"],"Remove":["Rimuovi"],"Change":["Cambia"],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":["Cambia l'aspetto della tua presentazione con uno dei nostri temi MetaSlider personalizzati!"],"Select a custom theme":["Seleziona un tema personalizzato"],"Themes":["Temi"],"Theme Details":["Dettagli del tema"],"Theme Instructions":["Instruzioni del tema"],"Tags":["Tag"],"How To Use":["Come si usa"],"Select a theme on the left to use on this slideshow. Click the theme for more details.":["Seleziona un tema sulla sinistra da utilizzare in questa presentazione. Clicca sul tema per maggiori dettagli."],"If no theme is selected we will use the default theme provided by the slider plugin":["Se nessun tema è selezionato useremo il tema predefinito fornito dal plugin del visore"],"Loading...":["Caricamento in corso..."],"Error: No themes were found.":["Errore: Nessun tema trovato."],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":["Tuttavia, sembra che tu abbia temi personalizzati disponibili. Seleziona \"I miei temi personalizzati\" dalla navigazione in alto per vedere i tuoi temi personalizzati."],"My Custom Themes":["I miei temi personalizzati"],"Get MetaSlider Pro!":["Ottieni MetaSlider Pro!"],"Upgrade now to build your own custom themes!":["Aggiorna ora per costruire i tuoi temi personalizzati!"],"MetaSlider Pro is installed!":["MetaSlider Pro è installato!"],"You can create your own themes with our theme editor":["Puoi creare i tuoi temi con il nostro editor di temi"],"Get started":["Come iniziare"],"On the left are themes that you have created in the theme editor.":["Sulla sinistra ci sono i temi che hai creato nell'editor di temi."],"Preview slideshow":["Anteprima presentazione"],"Select":["Seleziona"],"Toggle overlay type":["Attiva/disattiva il tipo di sovrimpressione"],"Toggle full width":["Attiva/disattiva larghezza piena"],"Exit preview":["Esci dall'anteprima"],"This feature is not fully supported in this browser.":["Questa caratteristica non è supportata completamente in questo browser."],"Media caption":["Didascalia dei media"],"Media description":["Descrizione dei media"],"Manual entry":["Inserimento manuale"],"Enter text that will appear with your image slide.":["Inserisci il testo che apparirà con la tua diapositiva immagine."],"Automatically updates directly from the WP Media Library":["Si aggiorna automaticamente direttamente da WP Media Library"],"No default was found":["Nessun predefinito trovato"],"You may use HTML here":["Puoi utilizzare HTML qui"],"Filter by type":["Filtra per tipo"],"All media items":["Tutti gli elementi media"],"Search Unsplash API":["Cerca l'API di Unsplash"],"Search unsplash.com...":["Cerca su unsplash.com…"],"Load more":["Carica altro"],"Photo by %s on Unsplash":["Foto di %s su Unsplash"],"Photo on Unsplash":["Foto su Unsplash"],"Opening Unsplash tab...":["Apertura della scheda unsplash…"],"Unsplash tab closed":["Scheda unsplash chiusa"],"No photots found.":["Nessuna foto trovata."],"Photo by %s":["Foto di %s"],"Deselect":["Deseleziona"],"Attachment Details":["Dettagli dell'allegato"],"view original":["visualizza originale"],"Profile":["Profilo"],"Portfolio":["Portfolio"],"Alt Text":["Testo \"alt\""],"Description":["Descrizione"],"Quality":["Qualità"],"All photos published on Unsplash can be used for free.":["Tutte le foto pubblicate su Unsplash possono essere utilizzate gratuitamente."],"view license":["visualizza la licenza"],"Complete!":["Completato!"],"Crunching...":["Elaborazione in corso…"],"Import Slides":["Importa diapositive"],"Import slides":["Importa diapositive"],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":["Attualmente non hai diapositive da visualizzare in anteprima. Se vuoi, possiamo importare alcune diapositive di immagini per te."],"No valid files found":["Non è stato trovato alcun file valido"],"Drag and drop interface not available.":["Interfaccia trascina e rilascia non disponibile."],"Drop images here":["Rilascia qui le immagini"],"Press %s to save or %s to cancel.":["Premere %s per salvare o %s per annullare."],"Shortcode copied":["Shortcode copiato"],"Shortcode unable to be copied automatically":["Impossibile copiare automaticamente lo shortcode"],"Failed to open utility modal...":["Apertura dell'utilità modale non riuscita…"],"Opening utility modal...":["Apertura dell'utilità modale…"],"Closing utility modal...":["Chiusura dell'utilità modale…"],"No slides":["Nessuna diapositiva"],"Current":["Corrente"],"last updated: %s":["ultimo aggiornamento: %s"],"Viewing 1 slideshow":["Visualizzazione di 1 presentazione"],"Viewing %s out of %s slideshows":["Visualizzazione di %s su %s presentazioni"],"Search slideshows (Press ctrl + / to focus)‎":["Cerca presentazioni (Premi ctrl + / per mettere a fuoco)"],"Searching slideshows...":["Ricerca di presentazioni…"],"1 slideshow":["1 presentazione"],"Viewing %s out of %s slideshows (%s loaded)":["Visualizzazione di %s su %s presentazioni (%s caricate)"],"Indexing %s slideshows into local storage...":["Indicizzazione di %s presentazioni nella memoria locale…"],"All Slideshows loaded":["Tutte le presentazioni sono state caricate"],"Fetching slideshows...":["Recupero delle presentazioni…"],"Finished":["Finito"],"Indexing slideshows... %s remaining":["Indicizzazione delle presentazioni… %s restanti"],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":["Questa caratteristica non è pienamente supportata in Internet Explorer 11 e si possono verificare tempi lenti nei risultati della ricerca."],"Sort by title":["Ordina per titolo"],"Sort by modified date":["Ordina per data di modifica"],"Filter slideshows‎":["Filtra presentazioni"],"Searching...":["Ricerca in corso..."],"Updating...":["Aggiornamento in corso..."],"Load all":["Carica tutto"],"Clear cache":["Svuota la cache"],"Load remaining %s slideshows":["Carica le rimanenti %s presentazioni"],"Press to clear the slideshow cache from your web browser":["Premi qui per svuotare la cache della presentazione nel tuo browser"],"Loading slideshows...":["Caricamento delle presentazioni…"],"Browse slideshows":["Scorri le presentazioni"],"Collapse":["Comprimi"],"Press to expand":["Premi per espandere"],"Copy all":["Copia tutto"],"All settings saved":["Tutte le impostazioni salvate"],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":["Qui troverai la documentazione e due livelli di supporto tra cui scegliere. Inoltre, puoi fornirci informazioni extra specifiche per il tuo sito web, server, ecc."],"Documentation 📚":["Documentazione 📚"],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":["Controlla la nostra pagina di documentazione per esempi e maggiori informazioni su ciò che puoi fare con MetaSlider."],"Visit documentation":["Vedi la documentazione"],"Free Basic Support 🚀":["Supportodi base gratuito 🚀"],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":["Per gli utenti della versione gratuita di MetaSlider, offriamo un supporto completo e gratuito sui forum di wordpress.org."],"Visit wordpress.org":["Visita wordpress.org"],"Paid Premium Support 🌟":["Supporto Premium a pagamento 🌟"],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":["Gli utenti paganti del plugin premium possono aprire un ticket sul nostro centro di supporto privato per ricevere un'assistenza personalizzata e tempi di risposta più rapidi."],"Visit metaslider.com":["Visita metaslider.com"],"Site Information":["Informazioni sul sito"],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":["Per tua comodità, puoi prima copiare le informazioni di base del sito per aiutarci a velocizzare il processo di debugging. Assicurati di verificare che non siano incluse informazioni personali che potresti voler mantenere private."],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":["Cambia il titolo predefinito che sarà usato quando si crea una nuova presentazione. Usa %s e sarà sostituito dall'ID della presentazione corrente."],"If you are a pro member, enter your license key here to receive updates. %s":["Se sei un membro pro, inserisci qui la tua chiave di licenza per ricevere gli aggiornamenti. %s"],"Upgrade here":["Aggiorna qui"],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":["Accetta che MetaSlider raccolga responsabilmente informazioni su come usi il nostro plugin. Questo è disabilitato di default, ma potrebbe essere stato abilitato tramite una notifica. %s"],"View our detailed privacy policy":["Visualizza i dettagli della nostra informativa sulla privacy"],"Slideshow settings saved":["Impostazioni della presentazione salvate"],"Global settings saved":["Impostazioni globali salvate"],"Pro settings saved":["Impostazioni Pro salvate"],"Slideshow Defaults":["Presentazioni predefinite"],"Update the default settings used when creating new slideshows.":["Aggiorna le impostazioni predefinite utilizzate per la creazione di nuove presentazioni."],"Default Slideshow Title":["Titolo predefinito della presentazione"],"Change the default title":["Cambia il titolo predefinito"],"Base Image Width":["Larghezza dell'immagine di base"],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":["Aggiorna la larghezza predefinita per l'immagine di base. Questa sarà usata per le dimensioni della presentazione e per il ritaglio dell'immagine di base."],"Change the default width":["Modifica la larghezza predefinita"],"Base Image Height":["Altezza dell'immagine di base"],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.":["Aggiorna l'altezza predefinita per l'immagine di base. Questo sarà usato per il ritaglio dell'immagine di base e per le dimensioni della presentazione. Se la larghezza è impostata al 100%, l'altezza scalerà di conseguenza."],"100% Width":["Larghezza 100%"],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":["Mentre la larghezza e l'altezza definite sopra saranno utilizzate per il ritaglio (se abilitato) e le dimensioni di base della presentazione, si può anche impostare la presentazione per adattarsi al suo contenitore."],"Global Settings":["Impostazioni globali"],"Update the settings used for all the slideshows on your site.":["Aggiorna le impostazioni utilizzate per tutte le presentazioni sul tuo sito."],"License Key":["Chiave di licenza"],"Update license key":["Aggiorna la chiave di licenza"],"Help Improve MetaSlider":["Aiutaci a migliorare MetaSlider"],"Enable Mobile Settings":["Abilita le impostazioni per i mobile"],"Add option to hide slides and captions per screen size.":["Aggiungi le opzioni per nascondere le diapositive e le didascalie in funzione della dimensione degli schermi."],"Mobile Settings":["Impostazioni per i mobile"],"Set breakpoints for different screen sizes":["Imposta i breakpoint per le differenti dimensioni degli schermi"],"Disable Legacy Libraries":["Disabilita la libreria legacy"],"This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive Slides":["Queste impostazioni ti permettono di disabilitare le librerie legacy di presentazione: Nivo Slider, Coin Slider e Responsive Slides"],"You can safely enable this setting. None of your slideshows use the legacy libraries.":["Puoi tranquillamente abilitare questa impostazione. Nessuna delle tue presentazioni utilizza le librerie legacy."],"You currently have %s slideshows that use legacy libraries.":["Attualmente hai %s presentazioni che utilizzano librerie legacy."],"You currently have %s slideshow that uses legacy libraries.":["Attualmente hai %s presentazioni che utilizzano librerie legacy."],"Enable MetaSlider on Admin Bar":["Abilitia MetaSlider nella barra di amministrazione"],"Add and edit slideshows easier by showing MetaSlider on your admin bar.":["Aggiungi e modifica facilmente le presentazioni mostrando MetaSlider nella tua barra di amministrazione."],"Enable Frontend Edit Links":["Abilita i link di modifica del frontend"],"Edit slideshows easily by showing MetaSlider link under each slideshow.":["Modifica le presentazioni facilmente mostrando il link MetaSlider sotto ogni presentazione."],"Last":["Ultimo"],"First":["Primo"],"New slides order":["Nuovo ordine delle diapositive"],"Select the position for new added slides.":["Seleziona la posizione per le nuove diapositive aggiunte."],"Pro Settings":["Impostazioni Pro"],"Update the MetaSlider Pro settings.":["Aggiorna le impostazioni di MetaSlider Pro."],"Select how many custom fields will display in the dropdown menu when you are inserting tags.":["Seleziona quanti campi personalizzati mostrare nel menu a discesa quando inserisci i tag."],"Change the maximum custom fields for Post Feed":["Cambia il numero massimo di campi personalizzati per il feed dei articoli"],"The data in this file does not appear to be valid.":["I dati di questo file non sembrano essere validi."],"Found %s slideshows":["Trovate %s presentazioni"],"Image search complete":["Ricerca immagini completata"],"We are still searching for your images. Please wait.":["Stiamo ancora cercando le tue immagini. Attendi."],"You have no slideshows to import":["Non hai presentazioni da importare"],"Some images are missing":["Mancano alcune immagini"],"When images are missing you will have to manually update or delete the slide after the import completes.":["Quando le immagini mancano, dovrai aggiornare o cancellare manualmente la diapositiva dopo il completamento dell'importazione."],"Continue":["Continua"],"Importing %s slideshows...":["Importazione di %s presentazioni…"],"Import successful":["Importazione riuscita"],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":["Importa facilmente le presentazioni generate da MetaSlider. Questo richiede un file generato dalla scheda di esportazione."],"Load slideshows":["Carica presentazioni"],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":["Se hai un file di esportazione, puoi caricarlo qui per essere elaborato. Le informazioni su ogni diapositiva appariranno qui sotto. Potrai confermare prima dell'importazione."],"Importing...":["Importazione in corso..."],"Processing...":["Elaborazione in corso…"],"Upload file":["Carica file"],"Date: %s":["Data: %s"],"Version: v%s":["Versione: v%s"],"All images required to import are accounted for.":["Tutte le immagini necessarie per l'importazione sono contabilizzate."],"The following images were not found:":["Le seguenti immagini non sono state trovate:"],"No image name provided":["Nessun nome d'immagine fornito"],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":["Nota: puoi ancora importare presentazioni che contengono immagini mancanti. Avrai solo bisogno di aggiornare o eliminare manualmente queste diapositive dalle loro singole pagine di modifica della presentazione."],"Import %s slideshows":["Importa %s presentazioni"],"Select the slideshows you wish to import below, then press here to import them.":["Seleziona qui sotto le presentazioni che vuoi importare, poi premi qui per importarle."],"Post Feed slide":["Diapositiva di feed di articoli"],"External slide":["Diapositive esterne"],"Image not found<br>%s":["Immagine non trovata<br>%s"],"No slides found":["Nessuna diapositiva trovata"],"Loading %s slideshows...":["Caricamento di %s presentazioni…"],"You have no slideshows to export":["Non hai presentazioni da esportare"],"Exporting %s slideshows...":["Esportazione di %s presentazioni…"],"Export successful":["Esportazione riuscita"],"No slideshows found.":["Nessuna presentazione trovata."],"Create a new slideshow now":["Crea adesso una nuova presentazione"],"If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the \"Load\" button.":["Se hai solo poche diapositive, le prepareremo automaticamente. Se hai molte presentazioni, fai clic sul pulsante \"Carica\"."],"Choose the slideshows you wish to export.":["Scegli le presentazioni che vuoi esportare."],"Click the \"Export\" button.":["Fai clic sul pulsante \"Esporta\"."],"A .json file will automatically be downloaded with all your slideshow data.":["Un file .json con tutti i dati delle tue presentazioni verrà scaricato automaticamente."],"A few notes on exporting slideshow images:":["Alcune note sull'esportazione delle immagini della presentazione:"],"Your images need to be exported manually. Please upload them to the new website before importing these slideshows.":["Le tue immagini devono essere esportate manualmente. Caricale sul nuovo sito web prima di importare queste presentazioni."],"Images will need to keep the same file names on the new site.":["Le immagini dovranno mantenere gli stessi nomi di file sul nuovo sito."],"Read our guide on exporting images.":["Leggi la nostra guida sull'esportazione delle immagini."],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":["Hai %s presentazioni che possono essere esportate. Le informazioni su ogni presentazione vengono presentate di seguito."],"Refresh":["Ricarica"],"Load":["Carica"],"Export %s slideshows":["Esporta %s presentazioni"],"Select the slideshows you wish to export below, then press here to export them.":["Seleziona qui sotto le presentazioni che vuoi esportare, poi premi qui per esportarle."],"Failed to open the settings page...":["Apertura della pagina delle impostazioni fallita…"],"Opening settings page...":["Apertura pagina delle impostazioni…"],"Page not found: %s":["Pagina non trovata: %s"],"Add a slide":["Aggiungi una diapositiva"],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":["Grazie per utilizzare MetaSlider. Per iniziare fai clic sul pulsante \"Aggiungi diapositiva\" per creare la tua prima diapositiva."],"Select images":["Seleziona immagini"],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":["Puoi facilmente aggiungere un'immagine da una delle opzioni qui. Inoltre forniamo immagini gratuite dalla libreria Unsplash."],"Next step":["Passaggio seguente"],"Search unsplash":["Cerca unsplash"],"Choose an image from the left, or search for any topic here to bring up more images.":["Scegli un'immagine a sinistra, o cerca qualsiasi argomento qui per avere più immagini."],"Hide step":["Nascondi passaggio"],"Create your slide":["Crea la tua diapositiva"],"After you have selected an image, press here to create your slide.":["Dopo aver selezionato un'immagine, premi qui per creare la tua diapositiva."],"Preview Slideshow":["Anteprima presentazione"],"Now that you have some slides set, you can preview your slideshow by pressing here.":["Ora che hai inserito alcune diapositive, puoi vedere l'anteprima della tua presentazione premendo qui."],"Slideshow settings":["Impostazioni della presentazione"],"Edit slideshow":["Modifica presentazione"],"Additional CSS Class":["Classe CSS supplementare"],"Refresh preview":["Aggiorna l'anteprima"],"Loading slideshows list...":["Caricamento dell'elenco delle presentazioni…"],"Create one now!":["Creane una ora!"],"Loading slideshow":["Caricamento della presentazione"],"Update preview":["Aggiorna l'anteprima"],"Select a slideshow":["Seleziona una presentazione"],"Normal width":["Larghezza normale"],"Wide width":["Larghezza ampia"],"Full width":["Larghezza piena"],"Use MetaSlider to insert slideshows and sliders in your page":["Usa MetaSlider per inserire presentazioni e visori nella tua pagina"],"slider":["visore"],"slideshow":["presentazione"],"gallery":["galleria"],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":["Sei soddisfatto di MetaSlider? Aiutaci lasciando una recensione positiva su WordPress.org"],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":["Recensisci MetaSlider &rarr;"],"Keep the plugin name \"MetaSlider\" when possible\u0004Select slideshow to insert into post":["Seleziona la presentazione da inserire nell'articolo"],"Short for milliseconds\u0004ms":["ms"],"This is a keyboard shortcut.\u0004 (alt + p)":[" (alt + p)"],"1000 by 1000 pixels\u0004%s by %s pixels":["%s per %s pixel"],"The ENTER key on a keyboard\u0004Enter":["Invio"],"The ESCAPE key on a keyboard\u0004Escape":["Escape"],"number of slides, ex \"7 slides\"\u0004%s slides":["%s diapositive"]}}}languages/ml-slider-ru_RU-metaslider-admin-script.json000064400000074776151213255440017075 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;","lang":"ru"},"MetaSlider":["Мета слайдер"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":["Простой в использовании слайд-шоу плагин. Создавайте СЕО-оптимизированные адаптивные слайд-шоу с Nivo Slider, Flex Slider, Coin Slider и Responsive Slides."],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["Ссылка (URL)"],"Caption":["Описание"],"New Window":["Открывать в новом окне"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":["Выбрать изображение"],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Внимание: данная настройка только для опытных пользователей. Если вы не уверены, оставьте её отмеченной."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Название"],"Created":[""],"Shortcode":["Шорткод"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Добавить слайд"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Сохранить"],"Settings":["Настройки"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":["Обрезать"],"Top Left":["Сверху Слева"],"Top Center":["Сверху Центр"],"Top Right":["Сверху Справа"],"Center Left":["Центр Слева"],"Center Center":["По центру"],"Center Right":["Центр Справа"],"Bottom Left":["Снизу Слева"],"Bottom Center":["Снизу Центр"],"Bottom Right":["Снизу Справа"],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Title изображния"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Alt изображения"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Название:"],"Select Slider:":["Выберите слайдер:"],"No slideshows found":["Не найдено ни одного слайд-шоу"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Слайд"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Основное"],"SEO":["CEO"],"Crop":["Обрезать"],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Изображение"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Ширина"],"Slideshow width":["Ширина слайд-шоу"],"px":["пикселей"],"Height":["Высота"],"Slideshow height":["Высота слайд-шоу"],"Effect":["Эффект"],"Slide transition effect":["Эффект смены слайдов"],"Random":["Случайно"],"Swirl":["Кручение"],"Rain":["Дождь"],"Straight":["Классический"],"Slice Down":[""],"Slice Up":["Сдвиг"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Растворение"],"Fold":["Жалюзи"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Случайные квадраты"],"Box Rain":["Мозаика"],"Box Rain Reverse":["Обратная мозаика"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Возрастающая мозаика"],"Slide":["Скольжение"],"Arrows":["Стрелочки"],"Show the previous/next arrows":["Показывать стрелки вперед/назад"],"Navigation":["Навигация"],"Show the slide navigation bullets":["Показывать метки навигации"],"Hidden":["Не показывать"],"Dots":["Точки"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Расширенные настройки"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Растягивает слайд-шоу на всю ширину родительского элемента"],"Center align":["Выравнять по центру"],"Center align the slideshow":["Центрирует слайд-шоу"],"Auto play":["Воспроизводить автоматически"],"Transition between slides automatically":["Задержка между сменой слайдов определяется автоматически"],"Image Crop":["Обрезка изображений"],"Smart Crop":[""],"Standard":["Обычная"],"Disabled":["Отключено"],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Слайды будут обрезаны с определённым соотношением, чтобы размер слайд-шоу не изменялся"],"Carousel mode":["Режим карусели"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Показывать несколько слайдов одновременно. Слайд-шоу будет иметь ширину 100%."],"Carousel margin":["Отступ карусели"],"Pixel margin between slides in carousel.":["Отступ (в пикселях) между слайдами в карусели"],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Случайный порядок салйдов"],"Hover pause":["Пауза при наведении мыши"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Останавливает слайд-шоу при наведении на него мышки и снова возобновляет, когда мышка убрана."],"Reverse":["В обратном порядке"],"Reverse the animation direction":["Изменить порядок слайдов на обратный"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Время показа слайда"],"How long to display each slide, in milliseconds":["Как долго будет показан каждый слайд (в миллисекундах)"],"Animation speed":["Скорость анимации"],"Set the speed of animations, in milliseconds":["Устанавливает скорость анимации (в миллисекундах)"],"Number of slices":["Количество секций"],"Number of squares":["Количество квадратов"],"Slide direction":["Направление воспроизведения"],"Select the sliding direction":["Выбор направления воспроизведения"],"Horizontal":["Горизонтально"],"Vertical":["Вертикально"],"Easing":["Сглаживание"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Текст \"назад\""],"Set the text for the 'previous' direction item":["Установить текст для метки \"назад\" (предыдущий слайд)"],"Next text":["Текст \"вперед\""],"Set the text for the 'next' direction item":["Установить текст для метки \"вперед\" (следующий слайд)"],"Square delay":["Задержка между квадратами"],"Delay between squares in ms":["Задержка между квадратами (в миллисекундах)"],"Opacity":["Прозрачность"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Скорость описания"],"Set the fade in speed of the caption":["Установить скорость растворения описания"],"Developer options":["Опции для разработчиков"],"CSS classes":["CSS классы"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Укажите любые пользовательские CSS классы, которые вы хотите добавить к контейнеру слайдера"],"Print CSS":["Выводить CSS"],"Uncheck this is you would like to include your own CSS":["Снимите галочку, если Вы хотите использовать свой собственный CSS"],"Print JS":["Выводить JS"],"Uncheck this is you would like to include your own Javascript":["Снимите галочку, если Вы хотите использовать свой собственный Javascript"],"No conflict mode":["Бесконфликтный режим"],"Delay adding the flexslider class to the slideshow":["Задержка при добавлении класса flexslider в слайдшоу"],"Delete slideshow":[""],"Select slideshow to insert into post":["Выберите слайд-шоу для вставки в запись"],"Add slideshow":[""],"Choose slideshow":["Выберите слайдшоу"],"Insert slideshow":["Вставить слайдшоу"],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Документация"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Вы уверены?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-hu_HU.po000064400000163272151213255440011765 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:57-0600\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Felirat"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Új ablak"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Figyelem: ez a beállítás csak fejlesztők részére ajánlott. Amennyiben nem "
"vagy biztos benne, hagyd így."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Cím"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Shortcode"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Slide hozzáadása"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Ment"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Beállítások"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Kép címe"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Kép alt szöveg"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Cím:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Slider kiválasztása:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Nincs találat"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Kép slide"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Általános"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Kép"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Szélesség"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Slideshow szélessége"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "px"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Magasság"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Slideshow magassága"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Effektek"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Slide átmenet effekt"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Váltakozó"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Forgás"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Eső"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Egyenes"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Slide fel"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Halványul"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Fold"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Váltakozó doboz"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Doboz eső"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Doboz eső visszafelé"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Doboz eső visszafelé növekvő"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Slide"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Nyilak"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Lapozó nyilak megjelenítése"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Vezérlés"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Mutassa a slide lapozó pontjait"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Rejtett"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Pontok"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Haladó beállítások"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Széthúzza a slideshow kimenetét a megadott méretre"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Középre igazítás"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Középre igazítja a slideshowt"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Auto lejátszás"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "A slideok automatikus vetítése"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Az intelligens vágás a reszponzív megjelenés során olyan méretre vágja a "
"képeket, hogy az kövesső a slideshow méretét"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Körkép"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr "Az összes slideot egy képre rakja"

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr ""

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr ""

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "A slideok sorrenjének véletlenszerűsége"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Szünet"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Megállítja a slideshowt, amikor egy slide fölé visszük a kruzort, majd "
"folytatja, amint elvittük onnan azt"

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Fordítás"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Megfordítja az animáció irányát"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Slide késleltetés"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Az egyes slideok megjelenésének időtartama milliszekundumban"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Animáció sebessége"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Az animációk sebességének beállítása"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Szeletek száma"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Négyszögek száma"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Slide iránya"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Válaszd ki a slide irányát"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Vízszintes"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Függőleges"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Viselkedés"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Előző szöveg"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Ez a szöveg jelenik meg akkor, ha az 'Előző' irányba akarunk lapozni"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Következő szöveg"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr ""
"Ez a szöveg jelenik meg akkor, ha a 'Következő' irányba akarunk lapozni"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Négyzetek késletetése"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "A négyzetek közötti késleltetés ms-ben"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Áttetszőség"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Felirat sebessége"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "A felirat előtűnésének sebessége"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Fejlesztői beállítások"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS osztályok"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr "Egyedi CSS osztályok megadása"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Nyomtatási CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Szedd ki a jelölőt, ha szeretnéd a saját CSS osztályodat használni"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Nyomtatási JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Szedd ki a jelölőt, ha szeretnéd a saját Javascripted használni"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "Nincs ütközési mód"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Késlelteti a flexsider osztály hozzáadását a slideshowhoz"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Slideshow kiválasztása egy bejegyzéshez"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Válassz slideshowt"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Dokumentáció"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Biztos vagy benne?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-de_DE.mo000064400000016771151213255440011713 0ustar00��o��`		a	k	}	
�	�		�	
�	�	�	�	�	�	




"
0

@
ZN

�
�
�
�
�
�
	
2Ok}D�
��������
/#SY
hs�
�
�
�	�����

S
(s

�
	�
�
�
�
!�
�
�
$+P$m,�*�.�	",!Jlu{����l�O=���:����
�	'@6D={����������
%2>K"[~��� ���p
x�
������;�;ZnEr
��	����	��	
4)^cw�
��
�
�
�
����0sA+��
��	;Gg	ku*�-�I�E)@oB�
�	#+O`hu�
����_E���.��

('4\=`D�����K^5]-.?
hJ!
HlPkaj2_\d<#'TOb9+7YRGi&W(0Z `A>/=fVcU@)4QgMn%NI;XeE1L,$:oSC83*Bm["F6D	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBottom CenterBottom LeftBottom RightBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshowChoose slideshowCropCrop PositionDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisabledDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage CropImage SlideImage Title TextInsert slideshowMetaSliderNavigationNew WindowNext textNoNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStandardStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Top CenterTop LeftTop RightTransition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthYespxProject-Id-Version: metaslider 3.1.1
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:56-0600
Last-Translator: 
Language-Team: Ov3rfly <https://profiles.wordpress.org/Ov3rfly>
Language: de_DE
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Dia hinzufügenErweiterte EinstellungenAnimationsgeschwindigkeitSind Sie sicher?PfeileAutomatische WiedergabeUnten mittigUnten linksUnten rechtsKästchen-RegenKästchen-Regen wachsend umgekehrtKästchen-Regen umgekehrtZufällige KästchenCSS KlassenBeschriftungGeschwindigkeit der BeschriftungCarousel AbstandCarousel ModusAchtung: Diese Einstellung ist nur für fortgeschrittene Entwickler. Wenn Sie unsicher sind, lassen Sie es sein.Mittig mittigMittig linksMittig rechtsMittig ausrichtenDiashow mittig ausrichtenDiashow auswählenZuschneidenZuschneidepositionDas Hinzufügen der Flexslider Class zur Diashow verzögernPause zwischen Quadraten in msEntwickler OptionenAusZeige mehrere Dias gleichzeitig an. Die Diashow wird 100% breit sein.DokumentationPunkteÜbergangEffektÜberblendenFaltenAllgemeinHöheVerstecktHorizontalPause bei 'Hover'Wie lange jedes Dia angezeigt wird, in MillisekundenBildBild AlternativtextBild zuschneidenBildBild TitelDiashow einfügenMetaSliderNavigationNeues Fenster'Weiter' TextNeinNo Conflict ModusKeine Diashows gefundenAnzahl der TeileAnzahl der QuadrateDurchsichtigkeitDiashow bei Bewegen der Maus über das Bild anhalten, sobald die Maus das Bild verlässt geht die Animation weiter.Pixelabstand zwischen den Dias im Carousel.'Zurück' TextCSS einfügenJS einfügenRegenZufälligZufällige Reihenfolge der DiasRückwärtsRichtung der Animation umkehrenSEOSpeichernDiashow wählen:Wählen Sie eine Diashow zum Einfügen ausWählen Sie die Bewegungsrichtung der DiashowStellen Sie die Geschwindigkeit des Einblendens für die Beschriftung einStellen Sie die Geschwindigkeit der Animationen ein, in MillisekundenText für die 'Weiter' Richtungsangabe, Beispiel: Nächstes BildText für die 'Zurück' Richtungsangabe, Beispiel: Vorheriges BildEinstellungenShortcodeZeige die zurück/weiter PfeilePunkte für die Navigation anzeigenTeilen nach obenGleitenAnzeigedauerBewegungsrichtungDiashow ÜbergangseffektDiashow HöheDiashow BreiteSmart Crop sorgt dafür, dass Ihre Dias in einem Verhältnis zugeschnitten werden, das eine konsistente Größe für die Diashow ergibtGeben Sie benutzerdefinierte CSS Klassen an, die zum Diashow-Wrapper hinzugefügt werden sollenPause zwischen QuadratenStandardGeradeDiashow an die Grösse des Containers anpassenWirbelTitelTitel:Oben mittigOben linksOben rechtsÜberblendung zwischen Dias automatischURLDeaktivieren Sie dies wenn Sie eigenes CSS verwenden möchtenDeaktivieren Sie dies wenn Sie eigene Javascripts verwenden möchtenVertikalBreiteJapxlanguages/ml-slider-it_IT.po000064400000362672151213255440011772 0ustar00# Translation of Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release) in Italian
# This file is distributed under the same license as the Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release) package.
msgid ""
msgstr ""
"Project-Id-Version: Plugins - Slider, Gallery, and Carousel by MetaSlider "
"&#8211; Responsive WordPress Slideshows - Stable (latest release)\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2024-06-13T13:40:12+00:00\n"
"PO-Revision-Date: 2024-06-16 01:19+0200\n"
"Last-Translator: \n"
"Language-Team: \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: Poedit 3.4.4\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: ml-slider.php
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
#: ml-slider.php
msgid "https://www.metaslider.com"
msgstr "https://www.metaslider.com"

#. Description of the plugin
#: ml-slider.php
msgid ""
"MetaSlider gives you the power to create a beautiful slideshow, carousel, or "
"gallery on your WordPress site."
msgstr ""
"MetaSlider ti dà la possibilità di creare una bellissima presentazione, un "
"carosello o una galleria sul tuo sito WordPress."

#: admin/Notices.php:95
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""
"Sei soddisfatto di MetaSlider? Aiutaci lasciando una recensione positiva su "
"WordPress.org"

#: admin/Notices.php:105
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""
"Vivacizza il tuo sito con livelli animati e diapositive video con MetaSlider "
"Pro"

#: admin/Notices.php:116
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""
"Aumenta le tue entrate e le conversioni con le diapositive video e molte "
"altre caratteristiche di MetaSlider Pro"

#: admin/Notices.php:127
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr "Puoi tradurre? Vuoi migliorare MetaSlider per chi parla la tua lingua?"

#: admin/Notices.php:317
msgid "weeks"
msgstr "settimane"

#: admin/Notices.php:337
msgid "Let's Start &rarr;"
msgstr "Iniziamo &rarr;"

#: admin/Notices.php:338
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr "Recensisci MetaSlider &rarr;"

#: admin/Notices.php:339
msgid "Find out more &rarr;"
msgstr "Scopri di più &rarr;"

#: admin/Notices.php:340
msgid "Get MetaSlider Pro &rarr;"
msgstr "Ottieni MetaSlider Pro &rarr;"

#: admin/Notices.php:341
msgid "Sign up &rarr;"
msgstr "Iscriviti &rarr;"

#: admin/Notices.php:342
msgid "Go there &rarr;"
msgstr "Vai a &rarr;"

#: admin/Notices.php:344
msgid "Read more"
msgstr "Leggi tutto"

#: admin/Notices.php:358 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:141 inc/slide/metaslide.image.class.php:124
#: inc/slide/metaslide.image.class.php:228
#: inc/slide/metaslide.image.class.php:349 ml-slider.php:870 ml-slider.php:952
#: ml-slider.php:1064 ml-slider.php:2509 ml-slider.php:2550
msgid "The security check failed. Please refresh the page and try again."
msgstr "Il controllo di sicurezza è fallito. Aggiorna la pagina e riprova."

#: admin/Notices.php:366 admin/routes/api.php:139
#: inc/slide/metaslide.class.php:149 inc/slide/metaslide.image.class.php:132
#: inc/slide/metaslide.image.class.php:151
#: inc/slide/metaslide.image.class.php:236 ml-slider.php:878 ml-slider.php:960
#: ml-slider.php:1072 ml-slider.php:2517 ml-slider.php:2558
msgid "Access denied. Sorry, you do not have permission to complete this task."
msgstr "Accesso negato. Non hai i permessi per completare questa attività."

#: admin/Notices.php:374 inc/slide/metaslide.class.php:158
#: inc/slide/metaslide.image.class.php:141
#: inc/slide/metaslide.image.class.php:245
#: inc/slide/metaslide.image.class.php:367 ml-slider.php:887 ml-slider.php:969
#: ml-slider.php:1081 ml-slider.php:2526 ml-slider.php:2567
msgid "Bad request"
msgstr "Richiesta sbagliata"

#: admin/Notices.php:382
msgid "This item does not exist. Please refresh the page and try again."
msgstr "Questo elemento non esiste. Aggiorna la pagina e riprova."

#: admin/Notices.php:395
msgid "The option was successfully updated"
msgstr "L'opzione è stata aggiornata correttamente"

#: admin/Notices.php:461
msgid "The requested data does not exist."
msgstr "I dati richiesti non esistono."

#: admin/Notices.php:486
msgid "The attempt to update the option failed."
msgstr "Il tentativo di aggiornare l'opzione è fallito."

#: admin/Pages.php:130
msgid "URL"
msgstr "URL"

#: admin/Pages.php:131 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Didascalia"

#: admin/Pages.php:132
msgid "New Window"
msgstr "Nuova finestra"

#: admin/Pages.php:133
msgid "Please confirm that you would like to delete this slideshow."
msgstr "Conferma di voler eliminare questa presentazione."

#: admin/Pages.php:134
msgid "Undo"
msgstr "Annulla"

#: admin/Pages.php:135
msgid "Slide restored"
msgstr "Diapositiva ripristinata"

#: admin/Pages.php:136
msgid "Slide deleted"
msgstr "Diapositiva eliminata"

#: admin/Pages.php:137 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr "Successo"

#: admin/Pages.php:138
msgid "Item was copied to your clipboard"
msgstr "L'elelmento è stato copiato negli appunti"

#: admin/Pages.php:139
msgid "Press to undo"
msgstr "Premi per annullare"

#: admin/Pages.php:141
msgid "Select replacement image"
msgstr "Selezione immagine sostitutiva"

#: admin/Pages.php:151
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Attenzione: questa impostazione è solo per gli sviluppatori avanzati. Se non "
"sei sicuro, lasciala selezionata."

#: admin/routes/api.php:419
msgid "The request format was not valid."
msgstr "Il formato richiesto non è valido."

#: admin/routes/api.php:427 admin/routes/api.php:549
msgid "This slideshow is no longer available."
msgstr "Questa presentazione non è più disponibile."

#: admin/routes/api.php:514
msgid "Nothing to import."
msgstr "Nulla da importare."

#: admin/routes/api.php:556
msgid "This was not a slideshow, so we cannot delete it."
msgstr "Questo non era una presentazione, quindi non possiamo eliminarla."

#: admin/routes/api.php:769
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""
"Questa non era una presentazione, quindi non possiamo aggiornare "
"l'impostazione."

#: admin/routes/api.php:878
msgid "The title cannot be empty."
msgstr "Il titolo non può essere vuoto."

#: admin/routes/api.php:882 admin/routes/api.php:1069
msgid "The field (%s) cannot be empty"
msgstr "Il campo (%s) non può essere vuoto"

#: admin/routes/api.php:1059 admin/assets/dist/js/app.js:2
msgid "Maximum Number of Custom Field in Post Feed Sliders"
msgstr ""
"Numero massimo di campi personalizzati negli slider dei feed degli articoli"

#: admin/routes/api.php:1165
msgid "Import slug not found"
msgstr "Slug di importazione non trovato"

#: admin/routes/api.php:1181
msgid "Import data could not be processed"
msgstr "I dati di importazione non possono essere processati"

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr "Non abbiamo trovato nessuna immagine da importare."

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr "Nuova presentazione"

#: admin/slideshows/Settings.php:85 inc/slider/metaslider.class.php:143
msgid "Previous"
msgstr "Precedente"

#: admin/slideshows/Settings.php:86 inc/slider/metaslider.class.php:144
#: themes/radix/v1.0.0/theme.php:40
msgid "Next"
msgstr "Seguente"

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr "Nessun tema trovato."

#: admin/slideshows/Themes.php:277
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""
"Abbiamo rimosso il tema selezionato perché non è stato trovato. La cartella "
"è stata cancellata?"

#: admin/Table.php:38
msgid ""
"You don't have any slideshows yet. Click %shere%s to create a new slideshow."
msgstr ""
"Non ci sono ancora presentazioni. Fare clic %squi%s per creare una nuova "
"presentazione."

#: admin/Table.php:55
msgid "Published"
msgstr "Pubblicato"

#: admin/Table.php:59 admin/Table.php:87 admin/Table.php:337
msgid "Trash"
msgstr "Cestino"

#: admin/Table.php:69 admin/views/pages/parts/toolbar.php:44
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr "Anteprima"

#: admin/Table.php:70 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Titolo"

#: admin/Table.php:71
msgid "Created"
msgstr "Creata"

#: admin/Table.php:72 admin/views/pages/parts/slider-settings-legacy.php:946
#: admin/views/pages/parts/slider-settings.php:747
msgid "Shortcode"
msgstr "Shortcode"

#: admin/Table.php:82 admin/Table.php:322 inc/slide/metaslide.class.php:406
msgid "Restore"
msgstr "Ripristina"

#: admin/Table.php:83 admin/Table.php:323 inc/slide/metaslide.class.php:416
msgid "Delete Permanently"
msgstr "Elimina definitivamente"

#: admin/Table.php:131 admin/views/pages/parts/shortcode.php:11
msgid "Click to copy shortcode."
msgstr "Fai clic per copiare lo shortcode."

#: admin/Table.php:336
msgid "Edit"
msgstr "Modifica"

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr "Logo"

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr "Ignora"

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr "Presentazioni"

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr "Aggiungi nuova"

#: admin/views/pages/dashboard.php:28
msgid "Slideshows permanently deleted."
msgstr "Presentazioni eliminate definitivamente."

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr "Cerca"

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr "È necessario l'aggiornamento del browser"

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""
"Sembra che tu stia usando %s. Mentre MetaSlider supporta %s sul frontend del "
"sito dove gli utenti vedono le tue presentazioni, alcuni degli strumenti che "
"forniamo qui di seguito richiedono un browser moderno."

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr "Microsoft Internet Explorer 11"

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr "IE11"

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr "Aggiorna Internet Explorer"

#: admin/views/pages/parts/slider-settings-legacy.php:20
#: admin/views/pages/parts/slider-settings.php:24
msgid "Main Options"
msgstr "Opzioni principali"

#: admin/views/pages/parts/slider-settings-legacy.php:30
#: admin/views/pages/parts/slider-settings-legacy.php:676
#: admin/views/pages/parts/slider-settings.php:34
msgid "Width"
msgstr "Larghezza"

#: admin/views/pages/parts/slider-settings-legacy.php:32
#: admin/views/pages/parts/slider-settings.php:36
#: admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Larghezza della presentazione"

#: admin/views/pages/parts/slider-settings-legacy.php:33
#: admin/views/pages/parts/slider-settings-legacy.php:46
#: admin/views/pages/parts/slider-settings-legacy.php:546
#: admin/views/pages/parts/slider-settings.php:37
#: admin/views/pages/parts/slider-settings.php:50
#: admin/views/pages/parts/slider-settings.php:475
msgid "px"
msgstr "px"

#: admin/views/pages/parts/slider-settings-legacy.php:43
#: admin/views/pages/parts/slider-settings-legacy.php:692
#: admin/views/pages/parts/slider-settings.php:47
msgid "Height"
msgstr "Altezza"

#: admin/views/pages/parts/slider-settings-legacy.php:45
#: admin/views/pages/parts/slider-settings.php:49
msgid "Slideshow height"
msgstr "Altezza della presentazione"

#: admin/views/pages/parts/slider-settings-legacy.php:52
#: admin/views/pages/parts/slider-settings.php:56
msgid "Transition Effect"
msgstr "Effetto di transizione"

#: admin/views/pages/parts/slider-settings-legacy.php:54
#: admin/views/pages/parts/slider-settings.php:58
msgid "This animation is used when changing slides."
msgstr "Questa animazione viene usata al cambio delle diapositive."

#: admin/views/pages/parts/slider-settings-legacy.php:68
#: admin/views/pages/parts/slider-settings-legacy.php:564
#: admin/views/pages/parts/slider-settings.php:493
msgid "Random"
msgstr "Casuale"

#: admin/views/pages/parts/slider-settings-legacy.php:72
msgid "Swirl"
msgstr "Vortice"

#: admin/views/pages/parts/slider-settings-legacy.php:76
msgid "Rain"
msgstr "Pioggia"

#: admin/views/pages/parts/slider-settings-legacy.php:80
msgid "Straight"
msgstr "Rettilineo"

#: admin/views/pages/parts/slider-settings-legacy.php:84
msgid "Slice Down"
msgstr "Strisce in basso"

#: admin/views/pages/parts/slider-settings-legacy.php:88
msgid "Slice Up"
msgstr "Strisce in alto"

#: admin/views/pages/parts/slider-settings-legacy.php:92
msgid "Slice Up Left"
msgstr "Strisce dall'alto a sinistra"

#: admin/views/pages/parts/slider-settings-legacy.php:96
msgid "Slide Up Down"
msgstr "Entrata dall'alto in basso"

#: admin/views/pages/parts/slider-settings-legacy.php:100
msgid "Slice Up Down Left"
msgstr "Bande dall'alto in basso a sinistra"

#: admin/views/pages/parts/slider-settings-legacy.php:104
#: admin/views/pages/parts/slider-settings.php:72
msgid "Fade"
msgstr "Dissolvenza"

#: admin/views/pages/parts/slider-settings-legacy.php:108
msgid "Fold"
msgstr "Avvolgimento"

#: admin/views/pages/parts/slider-settings-legacy.php:112
msgid "Slide in Right"
msgstr "Entrata da destra"

#: admin/views/pages/parts/slider-settings-legacy.php:116
msgid "Slide in Left"
msgstr "Entrata da sinistra"

#: admin/views/pages/parts/slider-settings-legacy.php:120
msgid "Box Random"
msgstr "Quadrati casuali"

#: admin/views/pages/parts/slider-settings-legacy.php:124
msgid "Box Rain"
msgstr "Pioggia di quadrati"

#: admin/views/pages/parts/slider-settings-legacy.php:128
msgid "Box Rain Reverse"
msgstr "Pioggia di quadrati invertita"

#: admin/views/pages/parts/slider-settings-legacy.php:132
msgid "Box Rain Grow"
msgstr "Box pioggia crescente"

#: admin/views/pages/parts/slider-settings-legacy.php:136
msgid "Box Rain Grow Reverse"
msgstr "Pioggia crescente di quadrati invertita"

#: admin/views/pages/parts/slider-settings-legacy.php:140
#: admin/views/pages/parts/slider-settings.php:76
msgid "Slide"
msgstr "Scorrimento"

#: admin/views/pages/parts/slider-settings-legacy.php:147
#: admin/views/pages/parts/slider-settings.php:83
msgid "Arrows"
msgstr "Frecce"

#: admin/views/pages/parts/slider-settings-legacy.php:152
#: admin/views/pages/parts/slider-settings.php:88
msgid "Show the Previous / Next arrows."
msgstr "Mostra le frecce precedente/successiva."

#: admin/views/pages/parts/slider-settings-legacy.php:166
#: admin/views/pages/parts/slider-settings.php:102
msgid "Navigation"
msgstr "Navigazione"

#: admin/views/pages/parts/slider-settings-legacy.php:169
#: admin/views/pages/parts/slider-settings.php:105
msgid "Show navigation options so that users can browse the slides."
msgstr ""
"Mostra le opzioni di navigazione affinché gli utenti possano scorrere le "
"diapositive."

#: admin/views/pages/parts/slider-settings-legacy.php:175
#: admin/views/pages/parts/slider-settings.php:111
msgid "Hidden"
msgstr "Nascosto"

#: admin/views/pages/parts/slider-settings-legacy.php:178
#: admin/views/pages/parts/slider-settings.php:114
msgid "Dots"
msgstr "Punti"

#: admin/views/pages/parts/slider-settings-legacy.php:181
msgid "Thumbnail"
msgstr "Miniatura"

#: admin/views/pages/parts/slider-settings-legacy.php:185
msgid "Filmstrip"
msgstr "Pellicola"

#: admin/views/pages/parts/slider-settings-legacy.php:211
#: admin/views/pages/parts/slider-settings.php:147
msgid "100% width"
msgstr "Larghezza 100%"

#: admin/views/pages/parts/slider-settings-legacy.php:216
#: admin/views/pages/parts/slider-settings.php:152
msgid "Stretch the slideshow output to fill it's parent container."
msgstr "Adatta le immagini della presentazione al contenitore genitore."

#: admin/views/pages/parts/slider-settings-legacy.php:238
#: admin/views/pages/parts/slider-settings.php:168
msgid "Theme"
msgstr "Tema"

#: admin/views/pages/parts/slider-settings-legacy.php:273
#: admin/views/pages/parts/slider-settings.php:202
msgid "Mobile Options"
msgstr "Opzioni mobile"

#: admin/views/pages/parts/slider-settings-legacy.php:278
#: admin/views/pages/parts/slider-settings.php:207
msgid "Hide arrows on"
msgstr "Nascondi le frecce su"

#: admin/views/pages/parts/slider-settings-legacy.php:283
#: admin/views/pages/parts/slider-settings.php:212
msgid ""
"When enabled this setting will hide the arrows on screen widths less than "
"%spx."
msgstr ""
"Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza "
"inferiore a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:293
#: admin/views/pages/parts/slider-settings-legacy.php:304
#: admin/views/pages/parts/slider-settings.php:222
#: admin/views/pages/parts/slider-settings.php:233
msgid ""
"When enabled this setting will hide the arrows on screen widths of %1$spx to "
"%2$spx."
msgstr ""
"Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza "
"compresa tra %1$spx e %2$spx."

#: admin/views/pages/parts/slider-settings-legacy.php:315
#: admin/views/pages/parts/slider-settings.php:244
msgid ""
"When enabled this setting will hide the arrows on screen widths equal to or "
"greater than %spx."
msgstr ""
"Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza "
"pari o superiore a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:327
#: admin/views/pages/parts/slider-settings.php:256
msgid "Hide navigation on"
msgstr "Nascondi la navigazione su"

#: admin/views/pages/parts/slider-settings-legacy.php:332
#: admin/views/pages/parts/slider-settings.php:261
msgid ""
"When enabled this setting will hide the navigation on screen widths less "
"than %spx."
msgstr ""
"Se abilitata, questa impostazione nasconde la navigazione su schermi di "
"larghezza inferiore a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:342
#: admin/views/pages/parts/slider-settings-legacy.php:353
#: admin/views/pages/parts/slider-settings.php:271
#: admin/views/pages/parts/slider-settings.php:282
msgid ""
"When enabled this setting will hide the navigation on screen widths of "
"%1$spx to %2$spx."
msgstr ""
"Se abilitata, questa impostazione nasconde la navigazione su schermi di "
"larghezza compresa tra %1$spx e %2$spx."

#: admin/views/pages/parts/slider-settings-legacy.php:364
#: admin/views/pages/parts/slider-settings.php:293
msgid ""
"When enabled this setting will hide the navigation on screen widths equal to "
"or greater than %spx."
msgstr ""
"Se abilitata, questa impostazione nasconde la navigazione su schermi di "
"larghezza pari o superiore a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:389
#: admin/views/pages/parts/slider-settings.php:318
msgid "Advanced Options"
msgstr "Opzioni avanzate"

#: admin/views/pages/parts/slider-settings-legacy.php:394
#: admin/views/pages/parts/slider-settings.php:323
msgid "Center align"
msgstr "Allinea al centro"

#: admin/views/pages/parts/slider-settings-legacy.php:399
#: admin/views/pages/parts/slider-settings.php:328
msgid "Center align the slideshow in the available space on your website."
msgstr ""
"Allinea al centro la presentazione nello spazio disponibile sul sito web."

#: admin/views/pages/parts/slider-settings-legacy.php:407
#: admin/views/pages/parts/slider-settings.php:336
msgid "Auto play"
msgstr "Riproduzione automatica"

#: admin/views/pages/parts/slider-settings-legacy.php:412
#: admin/views/pages/parts/slider-settings.php:341
msgid "Transition between slides automatically."
msgstr "Transizione automatica tra le diapositive."

#: admin/views/pages/parts/slider-settings-legacy.php:420
#: admin/views/pages/parts/slider-settings.php:349
msgid "Play / Pause Button"
msgstr "Pulsante Avvia/ferma"

#: admin/views/pages/parts/slider-settings-legacy.php:425
#: admin/views/pages/parts/slider-settings.php:354
msgid "This allows user to pause or resume Auto Play on the slideshow."
msgstr ""
"Questo permette all'utente di fermare o riprendere la riproduzione "
"automatica nella presentazione."

#: admin/views/pages/parts/slider-settings-legacy.php:433
#: admin/views/pages/parts/slider-settings.php:362
msgid "Loop"
msgstr "Loop"

#: admin/views/pages/parts/slider-settings-legacy.php:435
#: admin/views/pages/parts/slider-settings.php:364
msgid ""
"If you choose \"Loop continuously\", the slides will loop infinitely. If you "
"choose \"Stop on first slide\", the slideshow will stop on the first slide "
"after showing all the items. If you choose \"Stop on last slide\", the "
"slides will stop on the last slide."
msgstr ""
"Se scegli \"Continuamente\", le diapositive andranno in loop all'infinito. "
"Se scegli \"Ferma sulla prima diapositiva\", la presentazione si fermerà "
"sulla prima diapositiva dopo aver mostrato tutti gli elementi. Se scegli "
"\"Ferma sull'ultima diapositiva\", la presentazione si fermerà sull'ultima "
"diapositiva."

#: admin/views/pages/parts/slider-settings-legacy.php:438
#: admin/views/pages/parts/slider-settings.php:367
msgid "Loop continuously"
msgstr "Loop continuamente"

#: admin/views/pages/parts/slider-settings-legacy.php:439
#: admin/views/pages/parts/slider-settings.php:368
msgid "Stop on last slide"
msgstr "Arresta sull'ultima diapositiva"

#: admin/views/pages/parts/slider-settings-legacy.php:440
#: admin/views/pages/parts/slider-settings.php:369
#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:489
msgid "Stop on first slide"
msgstr "Arresta sulla prima diapositiva"

#: admin/views/pages/parts/slider-settings-legacy.php:446
#: admin/views/pages/parts/slider-settings.php:375
msgid "Image Crop"
msgstr "Ritaglio Immagine"

#: admin/views/pages/parts/slider-settings-legacy.php:451
#: admin/views/pages/parts/slider-settings.php:380
msgid "Smart Crop"
msgstr "Ritaglio intelligente"

#: admin/views/pages/parts/slider-settings-legacy.php:458
#: admin/views/pages/parts/slider-settings.php:387
msgid "Standard"
msgstr "Standard"

#: admin/views/pages/parts/slider-settings-legacy.php:465
#: admin/views/pages/parts/slider-settings.php:394
msgid "Disabled"
msgstr "Disabilitato"

#: admin/views/pages/parts/slider-settings-legacy.php:472
#: admin/views/pages/parts/slider-settings.php:401
msgid "Disabled (Smart Pad)"
msgstr "Disabilitato (Smart Pad)"

#: admin/views/pages/parts/slider-settings-legacy.php:479
#: admin/views/pages/parts/slider-settings.php:408
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size."
msgstr ""
"Ritaglio intelligente assicura che le tue diapositive responsive vengano "
"ritagliate con le proporzioni delle dimensioni adeguate alla presentazione."

#: admin/views/pages/parts/slider-settings-legacy.php:487
#: admin/views/pages/parts/slider-settings.php:416
msgid "Smooth Height"
msgstr "Altezza fluida"

#: admin/views/pages/parts/slider-settings-legacy.php:492
#: admin/views/pages/parts/slider-settings.php:421
msgid "Allow navigation to follow the slide's height smoothly."
msgstr ""
"Consentire alla navigazione di seguire fluidamente l'altezza della "
"diapositiva."

#: admin/views/pages/parts/slider-settings-legacy.php:500
#: admin/views/pages/parts/slider-settings.php:429
msgid "Carousel mode"
msgstr "Modalità carosello"

#: admin/views/pages/parts/slider-settings-legacy.php:505
msgid ""
"Display multiple slides at once. Slideshow output will be 100% wide. "
"Carousel Mode only uses the \"Slide\" Effect."
msgstr ""
"Visualizza più diapositive contemporaneamente. L'output della presentazione "
"sarà largo il 100%. La modalità \"Carosello\" utilizza solo l'effetto "
"\"Diapositiva\"."

#: admin/views/pages/parts/slider-settings-legacy.php:523
#: admin/views/pages/parts/slider-settings.php:452
msgid "Loop Carousel Continuously"
msgstr "Loop carosello continuamente"

#: admin/views/pages/parts/slider-settings-legacy.php:528
#: admin/views/pages/parts/slider-settings.php:457
msgid ""
"Infinite loop of slides when Carousel Mode is enabled. This option disables "
"arrows and navigation."
msgstr ""
"Ciclo infinito di diapositive quando è attivata la modalità \"Carosello\". "
"Questa opzione disabilita le frecce e la navigazione."

#: admin/views/pages/parts/slider-settings-legacy.php:539
#: admin/views/pages/parts/slider-settings.php:468
msgid "Carousel margin"
msgstr "Margini del carosello"

#: admin/views/pages/parts/slider-settings-legacy.php:542
#: admin/views/pages/parts/slider-settings.php:471
msgid "Pixel margin between slides in carousel."
msgstr "Margine in pixel tra le diapositive nel carosello."

#: admin/views/pages/parts/slider-settings-legacy.php:551
#: admin/views/pages/parts/slider-settings.php:480
msgid "Fade in"
msgstr "Dissolvenza"

#: admin/views/pages/parts/slider-settings-legacy.php:556
#: admin/views/pages/parts/slider-settings.php:485
msgid ""
"This adds an animation when the slideshow loads. It only uses the \"Fade\" "
"transition effect."
msgstr ""
"Questo aggiunge un'animazione al caricamento della presentazione. Utilizza "
"solo l'effetto di transizione \"Dissolvenza\"."

#: admin/views/pages/parts/slider-settings-legacy.php:569
#: admin/views/pages/parts/slider-settings.php:498
msgid "Randomise the order of the slides."
msgstr "Ordine casuale delle diapositive."

#: admin/views/pages/parts/slider-settings-legacy.php:577
#: admin/views/pages/parts/slider-settings.php:506
msgid "Hover pause"
msgstr "Pausa in hover"

#: admin/views/pages/parts/slider-settings-legacy.php:582
#: admin/views/pages/parts/slider-settings.php:511
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Sospendi lo scorrimento quando il mouse è sopra l'immagine, riprendi quando "
"il mouse non è più sull'immagine."

#: admin/views/pages/parts/slider-settings-legacy.php:590
#: admin/views/pages/parts/slider-settings.php:519
msgid "Reverse"
msgstr "Inverti"

#: admin/views/pages/parts/slider-settings-legacy.php:595
#: admin/views/pages/parts/slider-settings.php:524
msgid "Reverse the animation direction."
msgstr "Inverti la direzione dell'animazione."

#: admin/views/pages/parts/slider-settings-legacy.php:603
#: admin/views/pages/parts/slider-settings.php:532
msgid "Touch Swipe"
msgstr "Tocca e scorri"

#: admin/views/pages/parts/slider-settings-legacy.php:608
#: admin/views/pages/parts/slider-settings.php:537
msgid "Allow touch swipe navigation of the slider on touch-enabled devices."
msgstr ""
"Consentire la navigazione a scorrimento dello slider su dispositivi "
"abilitati al tocco."

#: admin/views/pages/parts/slider-settings-legacy.php:621
#: admin/views/pages/parts/slider-settings.php:550
msgid "Slide delay"
msgstr "Ritardo della diapositiva"

#: admin/views/pages/parts/slider-settings-legacy.php:623
#: admin/views/pages/parts/slider-settings.php:552
msgid "How long to display each slide, in milliseconds."
msgstr "Quanto tempo visualizzare ogni diapositiva, in millisecondi."

#: admin/views/pages/parts/slider-settings-legacy.php:627
#: admin/views/pages/parts/slider-settings-legacy.php:647
#: admin/views/pages/parts/slider-settings-legacy.php:776
#: admin/views/pages/parts/slider-settings-legacy.php:808
#: admin/views/pages/parts/slider-settings.php:556
#: admin/views/pages/parts/slider-settings.php:576
msgctxt "Short for milliseconds"
msgid "ms"
msgstr "ms"

#: admin/views/pages/parts/slider-settings-legacy.php:641
#: admin/views/pages/parts/slider-settings.php:570
msgid "Transition Speed"
msgstr "Velocità di transizione"

#: admin/views/pages/parts/slider-settings-legacy.php:643
#: admin/views/pages/parts/slider-settings.php:572
msgid ""
"Choose the speed of the animation in milliseconds. You can select the "
"animation in the \"Effect\" field."
msgstr ""
"Scegli la velocità dell'animazione in millisecondi. Puoi selezionare "
"l'animazione nel campo \"Effetto\"."

#: admin/views/pages/parts/slider-settings-legacy.php:661
#: admin/views/pages/parts/slider-settings-legacy.php:663
msgid "Number of slices"
msgstr "Numero di porzioni"

#: admin/views/pages/parts/slider-settings-legacy.php:673
#: admin/views/pages/parts/slider-settings-legacy.php:678
#: admin/views/pages/parts/slider-settings-legacy.php:689
#: admin/views/pages/parts/slider-settings-legacy.php:694
msgid "Number of squares"
msgstr "Numero di quadrati"

#: admin/views/pages/parts/slider-settings-legacy.php:700
#: admin/views/pages/parts/slider-settings.php:585
msgid "Slide direction"
msgstr "Direzione diapositive"

#: admin/views/pages/parts/slider-settings-legacy.php:702
#: admin/views/pages/parts/slider-settings.php:587
msgid ""
"Select the direction that slides will move. Vertical will not work if "
"\"Carousel mode\" is enabled or \"Effect\" is set to \"Fade\"."
msgstr ""
"Seleziona la direzione in cui si muoveranno le diapositive. Il movimento "
"verticale non funziona se è attivata la \"Modalità carosello\" o se "
"\"Effetto\" è impostato su \"Dissolvenza\"."

#: admin/views/pages/parts/slider-settings-legacy.php:709
#: admin/views/pages/parts/slider-settings.php:594
msgid "Horizontal"
msgstr "Orizzontale"

#: admin/views/pages/parts/slider-settings-legacy.php:716
#: admin/views/pages/parts/slider-settings.php:601
msgid "Vertical"
msgstr "Verticale"

#: admin/views/pages/parts/slider-settings-legacy.php:727
#: admin/views/pages/parts/slider-settings.php:612
msgid "Easing"
msgstr "Interpolazione"

#: admin/views/pages/parts/slider-settings-legacy.php:729
#: admin/views/pages/parts/slider-settings.php:614
msgid ""
"Easing adds gradual acceleration and deceleration to slide transitions, "
"rather than abrupt starts and stops. Easing only uses the \"Slide\" Effect."
msgstr ""
"L'interpolazione aggiunge alle transizioni delle diapositive "
"un'accelerazione e una decelerazione graduali, anziché avvii e arresti "
"bruschi. L'interpolazione utilizza solo l'effetto \"Diapositiva\"."

#: admin/views/pages/parts/slider-settings-legacy.php:739
msgid "Previous text"
msgstr "Testo precedente"

#: admin/views/pages/parts/slider-settings-legacy.php:741
msgid "Set the text for the \"previous\" direction item."
msgstr "Imposta il testo per la direzione dell'elemento \"precedente\"."

#: admin/views/pages/parts/slider-settings-legacy.php:752
msgid "Next text"
msgstr "Testo successivo"

#: admin/views/pages/parts/slider-settings-legacy.php:754
msgid "Set the text for the \"next\" direction item."
msgstr "Imposta il testo per la direzione dell'elemento \"seguente\"."

#: admin/views/pages/parts/slider-settings-legacy.php:770
msgid "Square delay"
msgstr "Ritardo dei quadri"

#: admin/views/pages/parts/slider-settings-legacy.php:772
msgid "Delay between squares in ms."
msgstr "Ritardo tra i riquadri in ms."

#: admin/views/pages/parts/slider-settings-legacy.php:786
msgid "Opacity"
msgstr "Opacità"

#: admin/views/pages/parts/slider-settings-legacy.php:788
msgid "Opacity of title and navigation, between 0 and 1."
msgstr "Opacità del titolo e della navigazione, tra 0 e 1."

#: admin/views/pages/parts/slider-settings-legacy.php:802
msgid "Caption speed"
msgstr "Velocità della didascalia"

#: admin/views/pages/parts/slider-settings-legacy.php:804
msgid "Set the fade in speed of the caption."
msgstr "Configura la velocità della assolvenza in entrata della didascalia."

#: admin/views/pages/parts/slider-settings-legacy.php:817
#: admin/views/pages/parts/slider-settings.php:624
msgid "Accessibility Options"
msgstr "Opzioni di accessibilità"

#: admin/views/pages/parts/slider-settings-legacy.php:823
#: admin/views/pages/parts/slider-settings.php:630
msgid "Keyboard Controls"
msgstr "Controlli da tastiera"

#: admin/views/pages/parts/slider-settings-legacy.php:828
#: admin/views/pages/parts/slider-settings.php:635
msgid "Use arrow keys to get to the next slide."
msgstr "Utilizza i tasti delle frecce per passare alla diapositiva successiva."

#: admin/views/pages/parts/slider-settings-legacy.php:836
#: admin/views/pages/parts/slider-settings.php:643
msgid "Tabindex for navigation"
msgstr "Tabindex per la navigazione"

#: admin/views/pages/parts/slider-settings-legacy.php:841
#: admin/views/pages/parts/slider-settings.php:648
msgid "This helps make the slideshow navigation more accessible."
msgstr ""
"Questo aiuta a rendere la navigazione della presentazione più accessibile."

#: admin/views/pages/parts/slider-settings-legacy.php:849
#: admin/views/pages/parts/slider-settings.php:656
msgid "ARIA Live"
msgstr "Aria Live"

#: admin/views/pages/parts/slider-settings-legacy.php:854
#: admin/views/pages/parts/slider-settings.php:661
msgid ""
"If Autoplay is enabled, this causes screen readers to announce that the "
"slides are changing."
msgstr ""
"Se la riproduzione automatica è abilitata i lettori di schermo diranno che "
"le diapositive stanno cambiando."

#: admin/views/pages/parts/slider-settings-legacy.php:862
#: admin/views/pages/parts/slider-settings.php:669
msgid "ARIA Current"
msgstr "Aria attuale"

#: admin/views/pages/parts/slider-settings-legacy.php:867
#: admin/views/pages/parts/slider-settings.php:674
msgid ""
"This is used on the navigation button for the active slide. It helps screen "
"readers understand which slide is active."
msgstr ""
"Questo è usato nel pulsante di navigazione per la diapositiva attiva. Aiuta "
"i lettori dello schermo a capire quale diapositiva è attiva."

#: admin/views/pages/parts/slider-settings-legacy.php:875
#: admin/views/pages/parts/slider-settings.php:682
msgid "Developer Options"
msgstr "Opzioni per gli sviluppatori"

#: admin/views/pages/parts/slider-settings-legacy.php:881
#: admin/views/pages/parts/slider-settings.php:688
msgid "CSS classes"
msgstr "Classi CSS"

#: admin/views/pages/parts/slider-settings-legacy.php:883
#: admin/views/pages/parts/slider-settings.php:690
msgid ""
"Enter custom CSS classes to apply to the slider wrapper. Separate multiple "
"classes with a space."
msgstr ""
"Inserisci le classi CSS personalizzate per applicare il wrapper allo slider. "
"Separa le classi con uno spazio."

#: admin/views/pages/parts/slider-settings-legacy.php:894
#: admin/views/pages/parts/slider-settings.php:701
msgid "Print CSS"
msgstr "Aggiungi CSS"

#: admin/views/pages/parts/slider-settings-legacy.php:899
#: admin/views/pages/parts/slider-settings.php:706
msgid "Uncheck this if you would like to include your own CSS."
msgstr "Togli la spunta se vuoi inserire il tuo CSS."

#: admin/views/pages/parts/slider-settings-legacy.php:907
#: admin/views/pages/parts/slider-settings.php:714
msgid "Print JS"
msgstr "Aggiungi JS"

#: admin/views/pages/parts/slider-settings-legacy.php:912
#: admin/views/pages/parts/slider-settings.php:719
msgid "Uncheck this if you would like to include your own Javascript."
msgstr "Togli la spunta se vuoi inserire il tuo JavaScript."

#: admin/views/pages/parts/slider-settings-legacy.php:920
#: admin/views/pages/parts/slider-settings.php:727
msgid "No conflict mode"
msgstr "Modalità senza conflitti"

#: admin/views/pages/parts/slider-settings-legacy.php:925
#: admin/views/pages/parts/slider-settings.php:732
msgid "Delay adding the flexslider class to the slideshow."
msgstr "Ritarda l'aggiunta della classe flexslider alla presentazione."

#: admin/views/pages/parts/slider-settings-legacy.php:969
#: admin/views/pages/parts/slider-settings.php:769
msgid "Trashed slides"
msgstr "Diapositive cestinate"

#: admin/views/pages/parts/slider-settings-legacy.php:991
#: admin/views/pages/parts/slider-settings.php:779
msgid "View trashed slides"
msgstr "Visualizza le diapositive cestinate"

#: admin/views/pages/parts/slider-settings.php:117
msgid "Thumbnail (Pro)"
msgstr "Miniatura (Pro)"

#: admin/views/pages/parts/slider-settings.php:121
msgid "Filmstrip (Pro)"
msgstr "Pellicola (Pro)"

#: admin/views/pages/parts/slider-settings.php:434
msgid ""
"Display multiple slides at once. Slideshow output will be 100% wide. "
"Carousel Mode only uses the 'Slide' Effect."
msgstr ""
"Visualizzazione di più diapositive contemporaneamente. L'output della "
"presentazione sarà largo il 100%. La modalità \"Carosello\" utilizza solo "
"l'effetto \"Diapositiva\"."

#: admin/views/pages/parts/toolbar.php:25
msgid "Add a new slide"
msgstr "Aggiungi una nuova diapositiva"

#: admin/views/pages/parts/toolbar.php:29
msgid "Add Slide"
msgstr "Aggiungi diapositiva"

#: admin/views/pages/parts/toolbar.php:35
msgid "Save & open the preview"
msgstr "Salva e apri l'anteprima"

#: admin/views/pages/parts/toolbar.php:35
msgctxt "This is a keyboard shortcut."
msgid " (alt + p)"
msgstr " (alt + p)"

#: admin/views/pages/parts/toolbar.php:60
msgid "Add a new slideshow"
msgstr "Aggiungi una nuova presentazione"

#: admin/views/pages/parts/toolbar.php:64
msgid "New"
msgstr "Nuova"

#: admin/views/pages/parts/toolbar.php:69
msgid "Duplicate this slideshow"
msgstr "Duplica questa presentazione"

#: admin/views/pages/parts/toolbar.php:81
msgid "Duplicate"
msgstr "Duplica"

#: admin/views/pages/parts/toolbar.php:86
msgid "Adding custom CSS is a MetaSlider Pro feature. Click to learn more."
msgstr ""
"L'aggiunta di CSS personalizzato è una caratteristica di MetaSlider Pro. Fai "
"clic per approfondire."

#: admin/views/pages/parts/toolbar.php:90
msgid "Add CSS"
msgstr "Aggiungi CSS"

#: admin/views/pages/parts/toolbar.php:100
msgid "Save slideshow"
msgstr "Salva la presentazione"

#: admin/views/pages/parts/toolbar.php:114 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Salva"

#: admin/views/pages/parts/toolbar.php:125 ml-slider.php:1870
msgid "Return to Published Slides"
msgstr "Torna alle diapositive pubblicate"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Impostazioni"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr "Centro assistenza"

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr "Importa"

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr "Esporta"

#: admin/views/pages/start.php:5
msgid "Carousel Slideshow"
msgstr "Presentazione a carosello"

#: admin/views/pages/start.php:9
msgid "Carousel Slideshow with Captions"
msgstr "Presentazione a carosello con didascalie"

#: admin/views/pages/start.php:20
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""
"Grazie per utilizzare MetaSlider, il plugin per le presentazioni di WordPress"

#: admin/views/pages/start.php:26
msgid "Create a slideshow with your images"
msgstr "Crea una presentazione con le tue immagini"

#: admin/views/pages/start.php:27
msgid "Choose your own images to start a new slideshow."
msgstr "Scegli le tue immagini per iniziare una nuova presentazione."

#: admin/views/pages/start.php:37
msgid "Open Media Library"
msgstr "Apri la libreria dei media"

#: admin/views/pages/start.php:52
msgid "Create a slideshow with sample images"
msgstr "Crea una presentazione con immagini campione"

#: admin/views/pages/start.php:55
msgid "Create a demo slideshow."
msgstr "Crea una presentazione demo."

#: admin/views/pages/start.php:62
msgid "Blank Slideshow"
msgstr "Presentazione vuota"

#: admin/views/pages/start.php:63
msgid "Image Slideshow"
msgstr "Presentazione d'immagini"

#: admin/views/pages/start.php:77
msgid "Create a Slideshow"
msgstr "Crea una presentazione"

#: admin/views/pages/upgrade.php:13
msgid "Comparison Chart"
msgstr "Tabella di comparazione"

#: admin/views/pages/upgrade.php:20
msgid "Free"
msgstr "Gratuito"

#: admin/views/pages/upgrade.php:21
msgid "Pro"
msgstr "Pro"

#: admin/views/pages/upgrade.php:25 admin/views/pages/upgrade.php:144
msgid "Installed"
msgstr "Installato"

#: admin/views/pages/upgrade.php:26 admin/views/pages/upgrade.php:145
#: admin/views/slides/tabs/schedule.php:10 admin/assets/dist/js/app.js:2
msgid "Upgrade now"
msgstr "Aggiorna ora"

#: admin/views/pages/upgrade.php:30
msgid "Create unlimited slideshows"
msgstr "Crea presentazioni illimitate"

#: admin/views/pages/upgrade.php:31
msgid "Create and manage as many slideshows as you need."
msgstr "Crea e gestisci tutte le presentazioni che ti necessitano."

#: admin/views/pages/upgrade.php:38
msgid "Regular updates"
msgstr "Aggiornamenti regolari"

#: admin/views/pages/upgrade.php:39
msgid "We keep MetaSlider compatible with the latest versions of WordPress."
msgstr "Manteniamo MetaSlider compatibile con le ultime versioni di WordPress."

#: admin/views/pages/upgrade.php:46
msgid "Intelligent image cropping"
msgstr "Ritaglio intelligente delle immagini"

#: admin/views/pages/upgrade.php:47
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""
"L'esclusiva funzionalità di \"Ritaglio intelligente\" assicura che le tue "
"diapositive siano perfettamente ridimensionate."

#: admin/views/pages/upgrade.php:54
msgid "Thumbnail navigation"
msgstr "Navigazione delle miniature"

#: admin/views/pages/upgrade.php:55
msgid "Allow users to browse your slideshows using thumbnail navigation."
msgstr ""
"Permetti agli utenti di navigare nelle tue presentazioni attraverso le "
"miniature."

#: admin/views/pages/upgrade.php:62
msgid "Add YouTube, Vimeo and Tiktok slides"
msgstr "Aggiungi diapositive YouTube, Vimeo e Tiktok"

#: admin/views/pages/upgrade.php:63
msgid "Easily include videos hosted by YouTube, Vimeo or TikTok."
msgstr "Icludi facilmente video ospitati su YouTube, Vimeo o TikTok."

#: admin/views/pages/upgrade.php:70
msgid "Add local video slides"
msgstr "Aggiungi diapositive con video locale"

#: admin/views/pages/upgrade.php:71
msgid "Create slideshows with videos from your WordPress media library."
msgstr ""
"Crea presentazioni con i video della tua libreria dei media di WordPress"

#: admin/views/pages/upgrade.php:78
msgid "Add external video slides"
msgstr "Aggiungi diapositive con video esterno"

#: admin/views/pages/upgrade.php:79
msgid "Create slideshows with external videos."
msgstr "Crea presentazioni con i video esterni."

#: admin/views/pages/upgrade.php:86
msgid "Extra premium themes"
msgstr "Temi premium extra"

#: admin/views/pages/upgrade.php:87
msgid ""
"MetaSlider Pro provides stylish and exclusive themes for your slideshows."
msgstr ""
"MetaSlider Pro fornisce temi stilizzati ed esclusivi per le tue "
"presentazioni."

#: admin/views/pages/upgrade.php:94
msgid "Add slide layers"
msgstr "Aggiungi livelli di diapositive"

#: admin/views/pages/upgrade.php:95
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""
"Aggiungi dei livelli alle tue diapositive con oltre 50 effetti di "
"transizione disponibili."

#: admin/views/pages/upgrade.php:102
msgid "Add Post Feed slides"
msgstr "Aggiungi diapositiva di feed di articoli"

#: admin/views/pages/upgrade.php:103
msgid "Easily build slides based on your WordPress posts."
msgstr ""
"Costruisci facilmente delle diapositive basate sui tuoi articoli di "
"WordPress."

#: admin/views/pages/upgrade.php:110
msgid "Add custom CSS"
msgstr "Aggiungi CSS personalizzato"

#: admin/views/pages/upgrade.php:111
msgid "Customize your slideshows to fit with your website."
msgstr "Personalizza le tue presentazioni per adattarle al tuo sito web."

#: admin/views/pages/upgrade.php:118
msgid "Schedule your slides"
msgstr "Programma le tue diapositive"

#: admin/views/pages/upgrade.php:119
msgid "Add a start/end date to individual slides."
msgstr "Aggiungi una data di inizio/fine a ciascuna diapositiva."

#: admin/views/pages/upgrade.php:126
msgid "Toggle your slide's visibility"
msgstr "Attiva/disattiva la visibilita della tua diapositiva"

#: admin/views/pages/upgrade.php:127
msgid "Hide any slide, without having to delete them."
msgstr "Nascondi qualsiasi diapositiva, senza doverla eliminare."

#: admin/views/pages/upgrade.php:134
msgid "Premium support"
msgstr "Supporto premium"

#: admin/views/pages/upgrade.php:135
msgid "Have your specific queries addressed directly by our experts."
msgstr ""
"Fatevi indirizzare le vostre domande specifiche direttamente dai nostri "
"esperti."

#: admin/views/slides/tabs/crop.php:6
msgid "Crop Position"
msgstr "Posizione del ritaglio"

#: admin/views/slides/tabs/crop.php:7
msgid ""
"Choose how images are cropped if their size doesn't exactly match the size "
"of your slideshow. This works if \"Smart Crop\" is selected in the \"Image "
"Crop\" settings."
msgstr ""
"Scegli come ritagliare le immagini se le loro dimensioni non corrispondono "
"esattamente a quelle della presentazione. Questo funziona se \"Ritaglio "
"intelligente\" è selezionato nelle impostazioni di \"Ritaglio immagine\"."

#: admin/views/slides/tabs/crop.php:10
msgid "Top Left"
msgstr "In alto a sinistra"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Center"
msgstr "In alto al centro"

#: admin/views/slides/tabs/crop.php:12
msgid "Top Right"
msgstr "In alto a destra"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Left"
msgstr "In centro a sinistra"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Center"
msgstr "Centrato in mezzo"

#: admin/views/slides/tabs/crop.php:15
msgid "Center Right"
msgstr "In centro a destra"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Left"
msgstr "In basso a sinistra"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Center"
msgstr "In basso al centro"

#: admin/views/slides/tabs/crop.php:18
msgid "Bottom Right"
msgstr "In basso a destra"

#: admin/views/slides/tabs/link.php:9
msgid "Image Link URL"
msgstr "URL link immagine"

#: admin/views/slides/tabs/link.php:10
msgid ""
"When visitors click on your image slide, they will be taken to this URL."
msgstr ""
"Quando i visitatori fanno clic sulla tua diapositiva immagine, vengono "
"indirizzati a questo URL."

#: admin/views/slides/tabs/link.php:20
msgid "New window"
msgstr "Nuova finestra"

#: admin/views/slides/tabs/link.php:22
msgid "Open link in a new window"
msgstr "Apri il link in una nuova finestra"

#: admin/views/slides/tabs/link.php:44
msgid "Image Link Alt Text"
msgstr "Testo alternativo link immagine"

#: admin/views/slides/tabs/link.php:45
msgid ""
"This text is used by search engines and visitors using screen readers. "
"Adding Alt text for links is highly recommended."
msgstr ""
"Questo testo è usato dai motori di ricerca e dai visitatori che usano i "
"lettori di schermo. L'aggiunta del testo alternativo per i link è fortemente "
"raccomandato."

#: admin/views/slides/tabs/mobile.php:33
msgid "Hide slide on:"
msgstr "Nascondi la diapositiva su:"

#: admin/views/slides/tabs/mobile.php:46
msgid ""
"When enabled this setting will hide the slide on screen widths equal to or "
"greater than %spx"
msgstr ""
"Se attivata, questa impostazione nasconde la diapositiva su schermi di "
"larghezza uguali o maggiori di %spx"

#: admin/views/slides/tabs/mobile.php:56
msgid ""
"When enabled this setting will hide the slide on screen widths of %1$spx to "
"%2$spx"
msgstr ""
"Se attivata, questa impostazione nasconde la diapositiva su schermi di "
"larghezza compresa tra %1$spx e %2$spx."

#: admin/views/slides/tabs/mobile.php:72
msgid "Hide caption on:"
msgstr "Nascondi la didascalia su:"

#: admin/views/slides/tabs/mobile.php:85
msgid ""
"When enabled this setting will hide the caption on screen widths equal to or "
"greater than %spx"
msgstr ""
"Se attivata, questa impostazione nasconde la didascalia su schermi di "
"larghezza uguali o maggiori di %spx"

#: admin/views/slides/tabs/mobile.php:95
msgid ""
"When enabled this setting will hide the caption on screen widths of %1$spx "
"to %2$spx"
msgstr ""
"Se attivata, questa impostazione nasconde la didascalia su schermi di "
"larghezza compresa tra %1$spx e %2$spx"

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""
"Aggiorna o attiva ora il tuo MetaSlider Pro per aggiungere un'opzione di "
"data di inizio/fine alle tue diapositive"

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro"
msgstr "Ottieni MetaSlider Pro"

#: admin/views/slides/tabs/schedule.php:9
msgid ""
"With MetaSlider Pro, you can schedule your slides. You can choose to show "
"your slides on specific dates, days of the week, or times of day."
msgstr ""
"Con MetaSlider Pro è possibile programmare le diapositive. Puoi scegliere di "
"mostrare le tue diapositive in date, giorni della settimana o orari "
"specifici."

#: admin/views/slides/tabs/seo.php:7
msgid "Image Title Text"
msgstr "Testo del titolo dell'immagine"

#: admin/views/slides/tabs/seo.php:8
msgid ""
"Visitors will see this text if they hover over your image slide. Adding "
"Title text is useful but not required."
msgstr ""
"I visitatori vedranno questo testo se passano il mouse sulla diapositiva "
"dell'immagine. L'aggiunta del testo del titolo è utile ma non obbligatoria."

#: admin/views/slides/tabs/seo.php:11
msgid "Enable this to inherit the image title"
msgstr "Abilita questo per ereditare il titolo dell'immagine"

#: admin/views/slides/tabs/seo.php:13
msgid "Use the image title"
msgstr "Usa il titolo dell'immagine"

#: admin/views/slides/tabs/seo.php:33
msgid "Image Alt Text"
msgstr "Testo alternativo dell'immagine"

#: admin/views/slides/tabs/seo.php:34
msgid ""
"This text is used by search engines and visitors using screen readers. "
"Adding Alt text is highly recommended."
msgstr ""
"Questo testo viene utilizzato dai motori di ricerca e dai visitatori che "
"utilizzano gli screen reader. L'aggiunta del testo \"alt\" è altamente "
"raccomandata."

#: admin/views/slides/tabs/seo.php:37
msgid "Enable this to inherit the image alt text"
msgstr "Abilita questo per ereditare il testo alternativo dell'immagine"

#: admin/views/slides/tabs/seo.php:39
msgid "Use the image alt text"
msgstr "Usa il testo alternativo dell'immagine"

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""
"Le tue impostazioni potrebbero non essere salvate correttamente a causa di "
"una configurazione sul tuo server. %s è attualmente impostato su %s, ma noi "
"raccomandiamo un'impostazione di 4000. Per favore vedi %s per maggiori "
"informazioni. Il file php.ini viene caricato da qui: %s"

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr "questo articolo"

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr "Avvertenza:"

#: inc/metaslider.widget.class.php:112
msgid "Title:"
msgstr "Titolo:"

#: inc/metaslider.widget.class.php:115
msgid "Select Slider:"
msgstr "Seleziona lo slider:"

#: inc/metaslider.widget.class.php:125 ml-slider.php:2012
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Nessuna presentazione trovata"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr "L'immagine richiesta non esiste. Riprova."

#: inc/slide/metaslide.class.php:117
msgid "The image was successfully updated."
msgstr "L'immagine è stata aggiornata con successo."

#: inc/slide/metaslide.class.php:127
msgid "There was an error updating the image. Please try again"
msgstr "C'è stato un errore nell'aggiornamento dell'immagine. Riprova"

#: inc/slide/metaslide.class.php:308
msgid "There was an error while updating the database. Please try again."
msgstr "C'è stato un errore nell'aggiornamento del database. Riprova."

#: inc/slide/metaslide.class.php:396
msgid "Trash slide"
msgstr "Cestina diapositiva"

#: inc/slide/metaslide.class.php:428 inc/slide/metaslide.class.php:683
#: inc/slide/metaslide.class.php:684
msgid "Update slide image"
msgstr "Aggiorna l'immagine della diapositiva"

#: inc/slide/metaslide.class.php:440
msgid "Duplicate slide"
msgstr "Duplica diapositiva"

#: inc/slide/metaslide.image.class.php:88
msgid "This isn't a valid image format. Please try again."
msgstr "Questo non è un formato d'immagine valido. Riprova."

#: inc/slide/metaslide.image.class.php:357
msgid "Access denied"
msgstr "Accesso negato"

#: inc/slide/metaslide.image.class.php:390
msgid "Image Slide"
msgstr "Diapositiva immagine"

#: inc/slide/metaslide.image.class.php:472
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr "Attenzione: I dati dell'immagine non esistono. Ricarica l'immagine."

#: inc/slide/metaslide.image.class.php:487
msgid "General"
msgstr "Generale"

#: inc/slide/metaslide.image.class.php:491
msgid "Link"
msgstr "Link"

#: inc/slide/metaslide.image.class.php:495
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:511
msgid "Mobile"
msgstr "Mobile"

#: inc/slide/metaslide.image.class.php:528
msgid "Crop"
msgstr "Ritaglia"

#: inc/slide/metaslide.image.class.php:540
msgid "Schedule"
msgstr "Programma"

#: inc/slider/metaslider.class.php:273
msgid "Click the \"Add Slide\" button to create your slideshow"
msgstr ""
"Fai clic sul pulsante \"Aggiungi diapositiva\" per creare la tua "
"presentazione"

#: inc/slider/metaslider.class.php:316
msgid "Edit Slideshow"
msgstr "Modifica presentazione"

#: ml-slider.php:312
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""
"MetaSlider Pro è installato ma non è aggiornato. Puoi aggiornarlo %squi%s. "
"Per saperne di più su questo avviso fai clic %squi%s"

#: ml-slider.php:540
msgid "Home"
msgstr "Home"

#: ml-slider.php:541
msgid "Quick Start"
msgstr "Avvio rapido"

#: ml-slider.php:542
msgid "Settings & Help"
msgstr "Impostazioni e aiuto"

#: ml-slider.php:545
msgid "Upgrade to Pro"
msgstr "Aggiorna a Pro"

#: ml-slider.php:582 ml-slider.php:585
msgid "All Slideshows"
msgstr "Tutte le presentazioni"

#: ml-slider.php:593 ml-slider.php:596
msgid "Create Slideshow"
msgstr "Crea una presentazione"

#: ml-slider.php:730
msgid "Image"
msgstr "Immagine"

#: ml-slider.php:731
msgid "Add to slideshow"
msgstr "Aggiungi alla presentazione"

#: ml-slider.php:771
msgid "Post Feed"
msgstr "Feed articolo"

#: ml-slider.php:772
msgid "Vimeo"
msgstr "Vimeo"

#: ml-slider.php:773
msgid "YouTube"
msgstr "YouTube"

#: ml-slider.php:774
msgid "Layer Slide"
msgstr "Diapositiva del livello"

#: ml-slider.php:775
msgid "External URL"
msgstr "URL esterno"

#: ml-slider.php:776
msgid "Local Video"
msgstr "Video locale"

#: ml-slider.php:777
msgid "External Video"
msgstr "Video esterno"

#: ml-slider.php:902
msgid "The slide was successfully restored"
msgstr "La diapositiva è stata ripristinata con successo"

#: ml-slider.php:925
msgid "The attempt to restore the slide failed."
msgstr "Il tentativo di ripristinare la diapositiva è fallito."

#: ml-slider.php:984
msgid "The slide was successfully trashed"
msgstr "La diapositiva è stata cestinata con successo"

#: ml-slider.php:1096
msgid "The slide was permanently deleted"
msgstr "La diapositiva è stata eliminata definitivamente"

#: ml-slider.php:1789
msgid "Slide permanently deleted."
msgstr "Diapositiva eliminata definitivamente."

#: ml-slider.php:1792
msgid "Slide restored."
msgstr "Diapositiva ripristinata."

#: ml-slider.php:1806
msgid "Trashed Slides"
msgstr "Diapositive cestinate"

#: ml-slider.php:1832
msgid "Loading... Please wait!"
msgstr "Caricamento in corso… attendi!"

#: ml-slider.php:1860
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""
"Stai visualizzando delle diapositive che sono state cestinate e che verranno "
"eliminate automaticamente tra %s giorni."

#: ml-slider.php:1914
msgid "Move slideshow to trash"
msgstr "Sposta la presentazione nel cestino"

#: ml-slider.php:1961
msgid "Add slideshow"
msgstr "Aggiungi presentazione"

#: ml-slider.php:1991
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Select slideshow to insert into post"
msgstr "Seleziona la presentazione da inserire nell'articolo"

#: ml-slider.php:1997
msgid "Choose slideshow"
msgstr "Scegli la presentazione"

#: ml-slider.php:2007
msgid "Insert slideshow"
msgstr "Inserisci la presentazione"

#: ml-slider.php:2042
msgid "Create slides by adding text, videos and more to your images"
msgstr ""
"Crea diapositive aggiungendo testo, video e molto altro alle tue immagini."

#: ml-slider.php:2046
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""
"Con le diapositive a livelli puoi creare bellissimi ed eleganti livelli di "
"elementi diversi."

#: ml-slider.php:2050
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""
"Inizia con un'immagine e poi può aggiungere testo, video, colori, "
"animazioni, altre immagini e persino shortcode."

#: ml-slider.php:2056 ml-slider.php:2097 ml-slider.php:2138 ml-slider.php:2181
#: ml-slider.php:2224 ml-slider.php:2267 ml-slider.php:2310
#: admin/assets/dist/js/app.js:2
msgid "Find out more about MetaSlider Pro"
msgstr "Leggi tutto su MetaSlider Pro"

#: ml-slider.php:2085
msgid "Create slideshows with your Vimeo videos"
msgstr "Crea presentazioni con i tuoi video Vimeo"

#: ml-slider.php:2089
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""
"Con le diapositive di Vimeo, puoi creare bellissime presentazioni con i tuoi "
"video di Vimeo."

#: ml-slider.php:2093
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""
"Le diapositive di Vimeo visualizzeranno i tuoi video con riproduzione "
"automatica, silenziamento, possibilità di nascondere i controlli e molto "
"altro ancora."

#: ml-slider.php:2126
msgid "Create slideshows with your YouTube videos"
msgstr "Crea presentazioni con i tuoi video YouTube"

#: ml-slider.php:2130
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""
"Con le diapositive di YouTube, puoi creare bellissime presentazioni con i "
"tuoi video di YouTube."

#: ml-slider.php:2134
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""
"Le diapositive di YouTube visualizzeranno i tuoi video con riproduzione "
"automatica, silenziamento, possibilità di nascondere i controlli e molto "
"altro ancora."

#: ml-slider.php:2167
msgid "Create slideshows with your posts"
msgstr "Crea presentazioni con i tuoi articoli"

#: ml-slider.php:2171
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""
"Con le diapositive dei feed degli articoli, puoi creare presentazioni con i "
"tuoi ultimi articoli, eventi o prodotti WooCommerce."

#: ml-slider.php:2175
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""
"Le diapositive feed degli articoli visualizzeranno automaticamente i tuoi "
"articoli con immagini, testo, campi personalizzati e molto altro ancora."

#: ml-slider.php:2210
msgid "Create slideshows with images stored outside of WordPress"
msgstr "Crea presentazioni con immagini memorizzate fuori da WordPress"

#: ml-slider.php:2214
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""
"Con le diapositive URL esterne, ti sarà possibile caricare le immagini "
"direttamente da fonti diverse da WordPress, come CDN o host di immagini."

#: ml-slider.php:2218
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""
"Le diapositive con URL esterno ti offrono tutta la potenza di MetaSlider, "
"utilizzando le immagini memorizzate ovunque tu voglia."

#: ml-slider.php:2253
msgid "Create slideshows with videos in your media library"
msgstr "Crea presentazioni con i video della tua libreria dei media"

#: ml-slider.php:2257
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""
"Con le diapositive per video locale puoi costruire bellissime presentazioni "
"con i video della tua libreria dei media di WordPress."

#: ml-slider.php:2261
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""
"Le diapositive per video locale visualizzeranno i tuoi video in MP4, WebM, e "
"MOV con un'immagine di copertina, riproduzione automatica, opzione muto, "
"caricamento differito, la possibilità di nascondere i controlli e molto "
"altro."

#: ml-slider.php:2296
msgid "Create slideshows with videos stored outside of WordPress"
msgstr "Crea presentazioni con video memorizzati fuori da WordPress"

#: ml-slider.php:2300
msgid ""
"With External Video slides, you can add videos directly from non-WordPress "
"sources."
msgstr ""
"Con le diapositive video esterno, ti sarà possibile caricare i video "
"direttamente da fonti diverse da WordPress."

#: ml-slider.php:2304
msgid ""
"External Video Slides will display your MP4, WebM, and MOV videos. Features "
"include text captions, cover images, auto play, mute, lazy load, the ability "
"to hide controls, and much more."
msgstr ""
"Le diapositive per video esterno visualizzeranno i tuoi video in MP4, WebM, "
"e MOV. Le caratteristiche includono didascalia testuale, un'immagine di "
"copertina, riproduzione automatica, silenziazione, caricamento differito, la "
"possibilità di nascondere i controlli e molto altro."

#: ml-slider.php:2347
msgid "Premium Support"
msgstr "Supporto Premium"

#: ml-slider.php:2353
msgid "MetaSlider Pro"
msgstr "MetaSlider Pro"

#: ml-slider.php:2357
msgid "Support"
msgstr "Supporto"

#: ml-slider.php:2362
msgid "Documentation"
msgstr "Documentazione"

#: ml-slider.php:2366
msgid "Leave a review"
msgstr "Scrivi una recensione"

#: themes/manifest-legacy.php:15 themes/manifest.php:15
msgid ""
"Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, "
"External Image and Post feed slides."
msgstr ""
"Bitono è un tema minimalista con uno schema a due colori. Raccomandato per "
"diapositive d'immagini, immagini esterne e feed di articoli."

#: themes/manifest-legacy.php:23 themes/manifest.php:23
msgid ""
"Clarity is focused on accessibility. It has easy-to-read fonts, and a "
"straightforward, distraction-free interface."
msgstr ""
"Clarity è focalizzato sull'accessibilità. Ha dei font facili da leggere e "
"un'interfaccia immediata e senza distrazioni."

#: themes/manifest-legacy.php:31 themes/manifest.php:31
msgid ""
"Databold is a minimalist theme recommended for Image, External Image and "
"Post feed slides."
msgstr ""
"Databold è un tema minimalista raccomandato per diapositive d'immagini, "
"immagini esterne e feed di articoli."

#: themes/manifest-legacy.php:39 themes/manifest.php:39
msgid "Draxler is a minimalist theme."
msgstr "Draxler è un tema minimalista."

#: themes/manifest-legacy.php:47 themes/manifest.php:47
msgid "A simple, slick square design that looks good on darker images."
msgstr ""
"Un design quadrato semplice ed elegante che sta bene con le immagini più "
"scure."

#: themes/manifest-legacy.php:56 themes/manifest.php:56
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""
"Un tema pulito e raffinato che presenta blocchi di frecce e un design deciso."

#: themes/manifest-legacy.php:65 themes/manifest.php:65
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""
"Un design divertente e circolare per illuminare il tuo sito. Questo tema "
"funziona bene con immagini scure"

#: themes/manifest-legacy.php:74 themes/manifest.php:74
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""
"Un design minimalista e senza fronzoli che è stato costruito per fondersi "
"con la maggior parte dei temi."

#: themes/manifest-legacy.php:106 themes/manifest.php:106
msgid "This theme places the controls vertically for a unique look."
msgstr "Questo tema mette i controlli in verticale per un look unico."

#: themes/manifest-legacy.php:115 themes/manifest.php:115
msgid "A futuristic and linear design that goes will with a dark background."
msgstr "Un design futuristico e lineare che si sposa con uno sfondo scuro."

#: themes/manifest-legacy.php:124 themes/manifest.php:124
msgid "A simple theme that neatly blends into any existing website."
msgstr ""
"Un tema semplice che si fonde perfettamente con qualsiasi sito esistente."

#: themes/manifest-legacy.php:133 themes/manifest.php:133
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""
"Questo tema ha una speciale funzionalità aggiuntiva che utilizza i titoli "
"delle immagini come navigazione delle diapositive. "

#: themes/manifest-legacy.php:134 themes/manifest.php:134
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""
"Se vuoi utilizzare i titoli delle immagini come navigazione, è necessario "
"utilizzare FlexSlider. Inoltre, puoi modificare l'etichetta di navigazione "
"della diapositiva, modificare il titolo dell'immagine nella libreria dei "
"media o manualmente nella diapositiva (scheda SEO)."

#: themes/manifest-legacy.php:164 themes/manifest.php:164
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr "Questo tema ha un design unico che gli dà un aspetto sofisticato."

#: themes/manifest-legacy.php:173 themes/manifest.php:173
msgid "A bold and clear design that works well on a darker images."
msgstr "Un design netto e chiaro che funziona bene su immagini più scure."

#: themes/manifest-legacy.php:182 themes/manifest.php:182
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures. Best used with Image Slides."
msgstr ""
"Un tema minimalista non invasivo che ti permette di mettere in mostra le tue "
"bellissime foto. Da utilizzare preferibilmente con le diapositive di "
"immagini."

#: themes/manifest-legacy.php:191
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""
"Il tema Nivo Light incluso qui per scopi di eredità. Nota: funziona solo con "
"Nivo Slider"

#: themes/manifest-legacy.php:199
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""
"Il tema Nivo Bar incluso qui per scopi di eredità. Nota: funziona solo con "
"Nivo Slider"

#: themes/manifest-legacy.php:207
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""
"Il tema Nivo Dark incluso qui per scopi di eredità. Nota: funziona solo con "
"Nivo Slider"

#: themes/manifest-premium.php:14 themes/manifest-premium.php:26
msgid "minimalist"
msgstr "minimalista"

#: themes/manifest-premium.php:15
msgid "2 columns"
msgstr "2 colonne"

#: themes/manifest-premium.php:17
msgid "A 2 columns minimalistic theme to split your images and captions."
msgstr ""
"Un tema minimalista a 2 colonne per divider le tue immagini e didascalie."

#: themes/manifest-premium.php:18
msgid ""
"Image, External URL and Post Feed slides are displayed in 2 columns, while "
"the rest of slide types in 1 column."
msgstr ""
"Diapositive di immagini, URL esterni e feed di articoli sono visualizzati in "
"2 colonne, mentre gli altri tipi di diapositive in una colonna."

#: themes/manifest-premium.php:27
msgid "videos"
msgstr "video"

#: themes/manifest-premium.php:28
#| msgid "Vertical"
msgid "vertical"
msgstr "verticale"

#: themes/manifest-premium.php:30
msgid "A theme to showcase vertical images and videos."
msgstr ""
"Durata della visualizzazione delle diapositive della pellicola, in "
"millisecondi."

#: themes/manifest-premium.php:31
msgid "Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos."
msgstr ""
"Ideale per immagini, diapositive di feed di articoli, video verticali "
"YouTube e Vimeo."

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr "Diapositiva precedente"

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr "Diapositiva successiva"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:80
msgid "Preparing 1 slide..."
msgstr "Preparando 1 diapostiva…"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:149
#: admin/assets/js/admin.js:1002
msgid "1 slide added successfully"
msgstr "1 diapostiva aggiunta correttamente"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:198
msgid "Opening add slide UI..."
msgstr "Apertura dell'interfaccia utente per aggiungere diapositive…"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:201
msgid "Closing add slide UI..."
msgstr "Chusura dell'interfaccia utente per aggiungere diapositive…"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:290
msgid "Updating slide..."
msgstr "Aggiornamento della diapositiva…"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:342
msgid "Slide updated successfully"
msgstr "Diapositiva aggiornata correttamente"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr "Avviso del gestore CSS aperto"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr "Avviso del gestore CSS chiuso"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr "Gestore CSS"

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to create the perfect design for "
"your sites."
msgstr ""
"Aggiungi facilmente CSS personalizzati alle tue presentazioni per creare il "
"design perfetto per i tuoi siti."

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr "Editor di testo incorporato pieno di funzionalità."

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr "Carica solo sul frontend dove necessario."

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr "Include raccomandazioni per risolvere situazioni comuni."

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr "Avviso analitico aperto"

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr "Avviso analitico chiuso"

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""
"Ci piacerebbe poterti inviare di tanto in tanto delle email con "
"aggiornamenti importanti sulla sicurezza e le prossime caratteristiche. Vedi "
"la nostra %s per maggiori informazioni."

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr "informativa sulla privacy"

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr "Grazie per utilizzare MetaSlider"

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""
"Stiamo realizzando la nuova versione di MetaSlider. Puoi aiutarci "
"condividendo con noi le informazioni di diagnostica in modo impersonale che "
"non coinvolgono i tuoi dati sensibili?"

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr "Accetta e continua"

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr "No grazie"

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr "Copia in corso..."

#: admin/assets/dist/js/app.js:2
msgid ""
"To edit this slide, click \"Restore\" and then \"Return to Published Slides\""
msgstr ""
"Per modificare questa diapositiva, fai click su \"Ripristina\" e poi su "
"\"Ritorna alle diapositive pubblicate\""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr "Bacheca di MetaSlider caricata"

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr "Salvataggio in corso..."

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""
"Salvataggio delle diapositive %s. Questo può richiedere qualche istante."

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr "Presentazione salvata"

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr "Duplicato con successo. Caricando…"

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr "Impostazioni salvate"

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr "Ancora in corso… %s diapositive rimaste…"

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr "Tour annullato con successo"

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr "Tour annullato senza successo"

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Sei sicuro?"

#: admin/assets/dist/js/app.js:2
msgid "This slideshow will be moved to the \"Trash\" area."
msgstr "Questa presentazione verrà spostata nell'area \"Cestino\"."

#: admin/assets/dist/js/app.js:2
msgid "Confirm"
msgstr "Conferma"

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr "Qualcosa è andato storto"

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr "OK"

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr "Preparando la presentazione per la duplicazione…"

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr "Facendo qualcosa..."

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr "Nessun messaggio di errore fornito."

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr "Si è verificato un errore non definito"

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr "Nessun messaggio di errore riportato."

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr "Salvataggio del tema…"

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr "Tema salvato"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr "Tema presentazione"

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""
"Questo tema non è ufficialmente supportato dal visore che hai scelto. I tuoi "
"risultati potrebbero variare."

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr "Tema personalizzato"

#: admin/assets/dist/js/app.js:2
msgid "Remove"
msgstr "Rimuovi"

#: admin/assets/dist/js/app.js:2
msgid "Change"
msgstr "Cambia"

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""
"Cambia l'aspetto della tua presentazione con uno dei nostri temi MetaSlider "
"personalizzati!"

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr "Seleziona un tema personalizzato"

#: admin/assets/dist/js/app.js:2
msgid "All themes"
msgstr "Tutti i temi"

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr "Caricamento in corso..."

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr "Ottieni MetaSlider Pro!"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to unlock this theme!"
msgstr "Aggiorna ora per sbloccare questo tema!"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr "Aggiorna ora per costruire i tuoi temi personalizzati!"

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr "MetaSlider Pro è installato!"

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr "Puoi creare i tuoi temi con il nostro editor di temi"

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr "Come iniziare"

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr "Dettagli del tema"

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr "Instruzioni del tema"

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr "Tag"

#: admin/assets/dist/js/app.js:2
msgid "This theme was created through the theme editor."
msgstr "Questo tema è stato creato con l'editor di temi."

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""
"Se nessun tema è selezionato useremo il tema predefinito fornito dal plugin "
"del visore"

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr "Come si usa"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""
"Seleziona un tema sulla sinistra da utilizzare in questa presentazione. "
"Clicca sul tema per maggiori dettagli."

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr "Errore: Nessun tema trovato."

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr "Anteprima presentazione"

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr "Seleziona"

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr "Attiva/disattiva il tipo di sovrimpressione"

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr "Attiva/disattiva larghezza piena"

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr "Esci dall'anteprima"

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""
"Questa caratteristica non è supportata completamente in questo browser."

#: admin/assets/dist/js/app.js:2
msgid "Media caption"
msgstr "Didascalia dei media"

#: admin/assets/dist/js/app.js:2
msgid "Media description"
msgstr "Descrizione dei media"

#: admin/assets/dist/js/app.js:2
msgid "Manual entry"
msgstr "Inserimento manuale"

#: admin/assets/dist/js/app.js:2
msgid "Enter text that will appear with your image slide."
msgstr "Inserisci il testo che apparirà con la tua diapositiva immagine."

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr "Si aggiorna automaticamente direttamente da WP Media Library"

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr "Nessun predefinito trovato"

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr "Puoi utilizzare HTML qui"

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr "Filtra per tipo"

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr "Tutti gli elementi media"

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr "Cerca l'API di Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr "Cerca su unsplash.com…"

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr "Carica altro"

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr "Foto di %s su Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr "Foto su Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr "Apertura della scheda unsplash…"

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr "Scheda unsplash chiusa"

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr "Nessuna foto trovata."

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr "Foto di %s"

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr "Deseleziona"

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr "Dettagli dell'allegato"

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr "%s per %s pixel"

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr "visualizza originale"

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr "Profilo"

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr "Portfolio"

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr "Testo \"alt\""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr "Descrizione"

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr "Qualità"

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""
"Tutte le foto pubblicate su Unsplash possono essere utilizzate gratuitamente."

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr "visualizza la licenza"

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr "Completato!"

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr "Elaborazione in corso…"

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr "Importa diapositive"

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr "Importa diapositive"

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""
"Attualmente non hai diapositive da visualizzare in anteprima. Se vuoi, "
"possiamo importare alcune diapositive di immagini per te."

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr "Non è stato trovato alcun file valido"

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr "Interfaccia trascina e rilascia non disponibile."

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr "Rilascia qui le immagini"

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr "Premere %s per salvare o %s per annullare."

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr "Invio"

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr "Escape"

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr "Shortcode copiato"

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr "Impossibile copiare automaticamente lo shortcode"

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr "Apertura dell'utilità modale non riuscita…"

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr "Apertura dell'utilità modale…"

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr "Chiusura dell'utilità modale…"

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr "Nessuna diapositiva"

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr "Corrente"

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr "%s diapositive"

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr "ultimo aggiornamento: %s"

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr "Visualizzazione di 1 presentazione"

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr "Visualizzazione di %s su %s presentazioni"

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr "Cerca presentazioni (Premi ctrl + / per mettere a fuoco)"

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr "Ricerca di presentazioni…"

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr "1 presentazione"

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr "Visualizzazione di %s su %s presentazioni (%s caricate)"

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr "Indicizzazione di %s presentazioni nella memoria locale…"

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr "Tutte le presentazioni sono state caricate"

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr "Recupero delle presentazioni…"

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr "Finito"

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr "Indicizzazione delle presentazioni… %s restanti"

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""
"Questa caratteristica non è pienamente supportata in Internet Explorer 11 e "
"si possono verificare tempi lenti nei risultati della ricerca."

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr "Ordina per titolo"

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr "Ordina per data di modifica"

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr "Filtra presentazioni"

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr "Ricerca in corso..."

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr "Aggiornamento in corso..."

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr "Carica tutto"

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr "Svuota la cache"

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr "Carica le rimanenti %s presentazioni"

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr "Premi qui per svuotare la cache della presentazione nel tuo browser"

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr "Caricamento delle presentazioni…"

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr "Scorri le presentazioni"

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr "Comprimi"

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr "Premi per espandere"

#: admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr "Copia tutto"

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr "Tutte le impostazioni salvate"

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""
"Qui troverai la documentazione e due livelli di supporto tra cui scegliere. "
"Inoltre, puoi fornirci informazioni extra specifiche per il tuo sito web, "
"server, ecc."

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr "Documentazione 📚"

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""
"Controlla la nostra pagina di documentazione per esempi e maggiori "
"informazioni su ciò che puoi fare con MetaSlider."

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr "Vedi la documentazione"

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr "Supportodi base gratuito 🚀"

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""
"Per gli utenti della versione gratuita di MetaSlider, offriamo un supporto "
"completo e gratuito sui forum di wordpress.org."

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr "Visita wordpress.org"

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr "Supporto Premium a pagamento 🌟"

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""
"Gli utenti paganti del plugin premium possono aprire un ticket sul nostro "
"centro di supporto privato per ricevere un'assistenza personalizzata e tempi "
"di risposta più rapidi."

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr "Visita metaslider.com"

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr "Informazioni sul sito"

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""
"Per tua comodità, puoi prima copiare le informazioni di base del sito per "
"aiutarci a velocizzare il processo di debugging. Assicurati di verificare "
"che non siano incluse informazioni personali che potresti voler mantenere "
"private."

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""
"Cambia il titolo predefinito che sarà usato quando si crea una nuova "
"presentazione. Usa %s e sarà sostituito dall'ID della presentazione corrente."

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""
"Se sei un membro pro, inserisci qui la tua chiave di licenza per ricevere "
"gli aggiornamenti. %s"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr "Aggiorna qui"

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""
"Accetta che MetaSlider raccolga responsabilmente informazioni su come usi il "
"nostro plugin. Questo è disabilitato di default, ma potrebbe essere stato "
"abilitato tramite una notifica. %s"

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr "Visualizza i dettagli della nostra informativa sulla privacy"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr "Impostazioni della presentazione salvate"

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr "Impostazioni globali salvate"

#: admin/assets/dist/js/app.js:2
msgid "Pro settings saved"
msgstr "Impostazioni Pro salvate"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr "Presentazioni predefinite"

#: admin/assets/dist/js/app.js:2
msgid "Update the default settings used when creating new slideshows."
msgstr ""
"Aggiorna le impostazioni predefinite utilizzate per la creazione di nuove "
"presentazioni."

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr "Titolo predefinito della presentazione"

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr "Cambia il titolo predefinito"

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr "Larghezza dell'immagine di base"

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""
"Aggiorna la larghezza predefinita per l'immagine di base. Questa sarà usata "
"per le dimensioni della presentazione e per il ritaglio dell'immagine di "
"base."

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr "Modifica la larghezza predefinita"

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr "Altezza dell'immagine di base"

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimensions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""
"Aggiorna l'altezza predefinita per l'immagine di base. Questo sarà usato per "
"il ritaglio dell'immagine di base e per le dimensioni della presentazione. "
"Se la larghezza è impostata al 100%, l'altezza scalerà di conseguenza."

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr "Larghezza 100%"

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""
"Mentre la larghezza e l'altezza definite sopra saranno utilizzate per il "
"ritaglio (se abilitato) e le dimensioni di base della presentazione, si può "
"anche impostare la presentazione per adattarsi al suo contenitore."

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr "Impostazioni globali"

#: admin/assets/dist/js/app.js:2
msgid "Update the settings used for all the slideshows on your site."
msgstr ""
"Aggiorna le impostazioni utilizzate per tutte le presentazioni sul tuo sito."

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr "Chiave di licenza"

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr "Aggiorna la chiave di licenza"

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr "Aiutaci a migliorare MetaSlider"

#: admin/assets/dist/js/app.js:2
msgid "Enable Mobile Settings"
msgstr "Abilita le impostazioni per i mobile"

#: admin/assets/dist/js/app.js:2
msgid "Add option to hide slides and captions per screen size."
msgstr ""
"Aggiungi le opzioni per nascondere le diapositive e le didascalie in "
"funzione della dimensione degli schermi."

#: admin/assets/dist/js/app.js:2
msgid "Mobile Settings"
msgstr "Impostazioni per i mobile"

#: admin/assets/dist/js/app.js:2
msgid "Set breakpoints for different screen sizes"
msgstr "Imposta i breakpoint per le differenti dimensioni degli schermi"

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Libraries"
msgstr "Disabilita la libreria legacy"

#: admin/assets/dist/js/app.js:2
msgid ""
"This setting allows you to disable the legacy slideshow libraries: Nivo "
"Slider, Coin Slider, and Responsive Slides"
msgstr ""
"Queste impostazioni ti permettono di disabilitare le librerie legacy di "
"presentazione: Nivo Slider, Coin Slider e Responsive Slides"

#: admin/assets/dist/js/app.js:2
msgid ""
"You can safely enable this setting. None of your slideshows use the legacy "
"libraries."
msgstr ""
"Puoi tranquillamente abilitare questa impostazione. Nessuna delle tue "
"presentazioni utilizza le librerie legacy."

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshows that use legacy libraries."
msgstr "Attualmente hai %s presentazioni che utilizzano librerie legacy."

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshow that uses legacy libraries."
msgstr "Attualmente hai %s presentazioni che utilizzano librerie legacy."

#: admin/assets/dist/js/app.js:2
msgid "Enable MetaSlider on Admin Bar"
msgstr "Abilitia MetaSlider nella barra di amministrazione"

#: admin/assets/dist/js/app.js:2
msgid "Add and edit slideshows easier by showing MetaSlider on your admin bar."
msgstr ""
"Aggiungi e modifica facilmente le presentazioni mostrando MetaSlider nella "
"tua barra di amministrazione."

#: admin/assets/dist/js/app.js:2
msgid "Enable Frontend Edit Links"
msgstr "Abilita i link di modifica del frontend"

#: admin/assets/dist/js/app.js:2
msgid "Edit slideshows easily by showing MetaSlider link under each slideshow."
msgstr ""
"Modifica le presentazioni facilmente mostrando il link MetaSlider sotto ogni "
"presentazione."

#: admin/assets/dist/js/app.js:2
msgid "Last"
msgstr "Ultimo"

#: admin/assets/dist/js/app.js:2
msgid "First"
msgstr "Primo"

#: admin/assets/dist/js/app.js:2
msgid "New slides order"
msgstr "Nuovo ordine delle diapositive"

#: admin/assets/dist/js/app.js:2
msgid "Select the position for new added slides."
msgstr "Seleziona la posizione per le nuove diapositive aggiunte."

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Widget"
msgstr "Disabilita i widget legacy"

#: admin/assets/dist/js/app.js:2
msgid "This setting allows you to disable the legacy MetaSlider widget."
msgstr ""
"Queste impostazioni ti permettono di disabilitare i widget legacy di "
"MetaSlider."

#: admin/assets/dist/js/app.js:2
msgid "Pro Settings"
msgstr "Impostazioni Pro"

#: admin/assets/dist/js/app.js:2
msgid "Update the MetaSlider Pro settings."
msgstr "Aggiorna le impostazioni di MetaSlider Pro."

#: admin/assets/dist/js/app.js:2
msgid ""
"Select how many custom fields will display in the dropdown menu when you are "
"inserting tags."
msgstr ""
"Seleziona quanti campi personalizzati mostrare nel menu a discesa quando "
"inserisci i tag."

#: admin/assets/dist/js/app.js:2
msgid "Change the maximum custom fields for Post Feed"
msgstr ""
"Cambia il numero massimo di campi personalizzati per il feed dei articoli"

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr "I dati di questo file non sembrano essere validi."

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr "Trovate %s presentazioni"

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr "Ricerca immagini completata"

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr "Stiamo ancora cercando le tue immagini. Attendi."

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr "Non hai presentazioni da importare"

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr "Mancano alcune immagini"

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""
"Quando le immagini mancano, dovrai aggiornare o cancellare manualmente la "
"diapositiva dopo il completamento dell'importazione."

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr "Continua"

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr "Importazione di %s presentazioni…"

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr "Importazione riuscita"

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""
"Importa facilmente le presentazioni generate da MetaSlider. Questo richiede "
"un file generato dalla scheda di esportazione."

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr "Carica presentazioni"

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""
"Se hai un file di esportazione, puoi caricarlo qui per essere elaborato. Le "
"informazioni su ogni diapositiva appariranno qui sotto. Potrai confermare "
"prima dell'importazione."

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr "Importazione in corso..."

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr "Elaborazione in corso…"

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr "Carica file"

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr "Data: %s"

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr "Versione: v%s"

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr "Tutte le immagini necessarie per l'importazione sono contabilizzate."

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr "Le seguenti immagini non sono state trovate:"

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr "Nessun nome d'immagine fornito"

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""
"Nota: puoi ancora importare presentazioni che contengono immagini mancanti. "
"Avrai solo bisogno di aggiornare o eliminare manualmente queste diapositive "
"dalle loro singole pagine di modifica della presentazione."

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr "Importa %s presentazioni"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""
"Seleziona qui sotto le presentazioni che vuoi importare, poi premi qui per "
"importarle."

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr "Diapositiva di feed di articoli"

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr "Diapositive esterne"

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr "Immagine non trovata<br>%s"

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr "Nessuna diapositiva trovata"

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr "Caricamento di %s presentazioni…"

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr "Non hai presentazioni da esportare"

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr "Esportazione di %s presentazioni…"

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr "Esportazione riuscita"

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr "Nessuna presentazione trovata."

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr "Crea adesso una nuova presentazione"

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have only a few slideshows, we will prepare them automatically. If "
"you have many slideshows, click the \"Load\" button."
msgstr ""
"Se hai solo poche diapositive, le prepareremo automaticamente. Se hai molte "
"presentazioni, fai clic sul pulsante \"Carica\"."

#: admin/assets/dist/js/app.js:2
msgid "Choose the slideshows you wish to export."
msgstr "Scegli le presentazioni che vuoi esportare."

#: admin/assets/dist/js/app.js:2
msgid "Click the \"Export\" button."
msgstr "Fai clic sul pulsante \"Esporta\"."

#: admin/assets/dist/js/app.js:2
msgid ""
"A .json file will automatically be downloaded with all your slideshow data."
msgstr ""
"Un file .json con tutti i dati delle tue presentazioni verrà scaricato "
"automaticamente."

#: admin/assets/dist/js/app.js:2
msgid "A few notes on exporting slideshow images:"
msgstr "Alcune note sull'esportazione delle immagini della presentazione:"

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images need to be exported manually. Please upload them to the new "
"website before importing these slideshows."
msgstr ""
"Le tue immagini devono essere esportate manualmente. Caricale sul nuovo sito "
"web prima di importare queste presentazioni."

#: admin/assets/dist/js/app.js:2
msgid "Images will need to keep the same file names on the new site."
msgstr "Le immagini dovranno mantenere gli stessi nomi di file sul nuovo sito."

#: admin/assets/dist/js/app.js:2
msgid "Read our guide on exporting images."
msgstr "Leggi la nostra guida sull'esportazione delle immagini."

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""
"Hai %s presentazioni che possono essere esportate. Le informazioni su ogni "
"presentazione vengono presentate di seguito."

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr "Ricarica"

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr "Carica"

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr "Esporta %s presentazioni"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""
"Seleziona qui sotto le presentazioni che vuoi esportare, poi premi qui per "
"esportarle."

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr "Apertura della pagina delle impostazioni fallita…"

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr "Apertura pagina delle impostazioni…"

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr "Pagina non trovata: %s"

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr "Aggiungi una diapositiva"

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""
"Grazie per utilizzare MetaSlider. Per iniziare fai clic sul pulsante "
"\"Aggiungi diapositiva\" per creare la tua prima diapositiva."

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr "Seleziona immagini"

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""
"Puoi facilmente aggiungere un'immagine da una delle opzioni qui. Inoltre "
"forniamo immagini gratuite dalla libreria Unsplash."

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr "Passaggio seguente"

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr "Cerca unsplash"

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""
"Scegli un'immagine a sinistra, o cerca qualsiasi argomento qui per avere più "
"immagini."

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr "Nascondi passaggio"

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr "Crea la tua diapositiva"

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""
"Dopo aver selezionato un'immagine, premi qui per creare la tua diapositiva."

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr "Anteprima presentazione"

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""
"Ora che hai inserito alcune diapositive, puoi vedere l'anteprima della tua "
"presentazione premendo qui."

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr "Impostazioni della presentazione"

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr "Modifica presentazione"

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr "Classe CSS supplementare"

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr "Aggiorna l'anteprima"

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr "Caricamento dell'elenco delle presentazioni…"

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr "Creane una ora!"

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr "Caricamento della presentazione"

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr "Aggiorna l'anteprima"

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr "Seleziona una presentazione"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr "Larghezza normale"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr "Larghezza ampia"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr "Larghezza piena"

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr "Usa MetaSlider per inserire presentazioni e visori nella tua pagina"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr "visore"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr "presentazione"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr "galleria"

#~ msgid "Show the slide navigation bullets"
#~ msgstr "Mostra i pallini di navigazione delle diapositive"

#~ msgid "Continuously"
#~ msgstr "Continuo"

#~ msgid ""
#~ "Choose one of our demos with sample images, or a blank slideshow with no "
#~ "images."
#~ msgstr ""
#~ "Scegli uno dei nostri esempi con immagini campione oppure una "
#~ "presentazione senza immagini."

#~ msgid "Add HTML overlay slides"
#~ msgstr "Aggiungi diapositive HTML in sovrapposizione"

#~ msgid "Create completely customized HTML slides using the inline editor."
#~ msgstr ""
#~ "Crea diapositive HTML completamente personalizzate usando l'editor in "
#~ "linea."

#~ msgid "Themes"
#~ msgstr "Temi"

#~ msgid ""
#~ "However, it looks like you have custom themes available. Select \"My "
#~ "Custom Themes\" from the navigation up top to view your custom themes."
#~ msgstr ""
#~ "Tuttavia, sembra che tu abbia temi personalizzati disponibili. Seleziona "
#~ "\"I miei temi personalizzati\" dalla navigazione in alto per vedere i "
#~ "tuoi temi personalizzati."

#~ msgid "My Custom Themes"
#~ msgstr "I miei temi personalizzati"

#~ msgid ""
#~ "Choose whether the slides loop or stop on a specific slide. The slides "
#~ "will loop infinitely if you choose \"Continuously\" and the \"Slide\" "
#~ "effect."
#~ msgstr ""
#~ "Scegli se le diapositive vanno in ciclo continuo o si fermano su una "
#~ "diapositiva specifica. Le diapositive si ripetono all'infinito se si "
#~ "sceglie \"Continuamente\" e l'effetto \"Diapositiva\"."

#~ msgid "Effect"
#~ msgstr "Effetto"

#~ msgid "Center align the slideshow"
#~ msgstr "Allinea al centro la presentazione"

#~ msgid "Configure loop"
#~ msgstr "Configura il loop"

#~ msgid "Fade in the first slide"
#~ msgstr "Dissolvi la prima diapositiva"

#~ msgid ""
#~ "Easing enhances the motion dynamics during transitions and is exclusively "
#~ "accessible when the 'Slide' transition setting is chosen."
#~ msgstr ""
#~ "L'interpolazione migliora la dinamiche del movimento durante la "
#~ "transizione ed è accessibile esclusivamente quando si sceglie "
#~ "l'impostazione di transizione \"Slide\"."

#~ msgid ""
#~ "Hey there! We just started working on a brand new gallery extension. <a "
#~ "href=\"%s\">Check it out</a> and let us know what you think!"
#~ msgstr ""
#~ "Ciao a tutti! Abbiamo appena iniziato a lavorare su una nuova estensione "
#~ "della galleria. <a href=\"%s\">Controlla</a> e facci sapere cosa ne pensi!"

#~ msgid "You do not have access to this resource."
#~ msgstr "Non hai accesso a questa risorsa."

#~ msgid "Set the speed of animations, in milliseconds"
#~ msgstr "Imposta la velocità dell'animazione in millisecondi"

#~ msgid "Select the sliding direction"
#~ msgstr "Seleziona la direzione delle diapositive"

#~ msgid "press to learn more"
#~ msgstr "premi per saperne di più"

#~ msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
#~ msgstr ""
#~ "Passa subito a MetaSlider Pro e potrai aggiungere alle tue diapositive "
#~ "l'opzione della data di inizio e fine"

#~ msgid "Get it now!"
#~ msgstr "Ottienilo ora!"

#~ msgid "Failed to add slide. Slide is not an image."
#~ msgstr ""
#~ "L'aggiunta della diapositiva è fallita. La diapositiva non è un'immagine."

#~ msgctxt "Keep the plugin name \"MetaSlider\" when possible"
#~ msgid "Insert MetaSlider"
#~ msgstr "Inserisci MetaSlider"

#~ msgid "Upgrade to pro now"
#~ msgstr "Aggiorna a pro ora"

#~ msgid "Upgrading also includes:"
#~ msgstr "L'aggiornamento include anche:"

#~ msgid "Layer, video and post type slides."
#~ msgstr "Livello, video e diapositive di tipo di contenuto."

#~ msgid "Slide scheduling - decide when slides appear."
#~ msgstr ""
#~ "Programmazione delle diapositive - decidi quando devono essere "
#~ "visualizzate le diapositive."

#~ msgid "Premium support - ask us anyting!"
#~ msgstr "Supporto premium - chiedici qualsiasi cosa!"

#~ msgid "Click to edit or update"
#~ msgstr "Fai clic per modificare o aggiornare"

#~ msgid ""
#~ "Here you will find general account settings and options related to your "
#~ "account"
#~ msgstr ""
#~ "Qui troverai le impostazioni generali dell'account e le opzioni relative "
#~ "al tuo account"

#~ msgid "Enable Gallery (Beta)"
#~ msgstr "Abilita galleria (beta)"

#~ msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
#~ msgstr ""
#~ "Gallerie veloci, incentrate sulla SEO, completamente accessibili WCAG e "
#~ "facili da usare."

#~ msgid "free"
#~ msgstr "gratuito"

#~ msgid "Yes"
#~ msgstr "Sì"

#~ msgid "Multiple slideshow types"
#~ msgstr "Tipologie multiple di presentazioni"

#~ msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
#~ msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
#~ msgstr "Compresi FlexSlider, Nivo Slider e presto ne aggiungeremo altri."

#~ msgid "No"
#~ msgstr "No"

#~ msgid "Post feed slides"
#~ msgstr "Diapositive di feed articoli"

#~ msgid "Easing is only available with the 'Slide' transition setting"
#~ msgstr ""
#~ "L'interpolazione è disponibile soltanto con l'impostazione della "
#~ "transizione \"Scorrimento\""

#~ msgid ""
#~ "Specify any custom CSS Classes you would like to be added to the slider "
#~ "wrapper"
#~ msgstr ""
#~ "Specifica le classi CSS che vorresti aggiungere all'elemento div che "
#~ "contiene lo slider"

#~ msgid "Delete slideshow"
#~ msgstr "Elimina presentazione"

#~ msgid "You will not be able to undo this."
#~ msgstr "Non sarà possibile annullarlo."

#~ msgid "Delete"
#~ msgstr "Elimina"

#~ msgid "Learn more"
#~ msgstr "Approfondisci"

#~ msgid "Enter manually"
#~ msgstr "Inserisci manualmente"

#~ msgid "How to Use"
#~ msgstr "Come usarlo"

#~ msgid "Toggle title"
#~ msgstr "Attiva/disattiva titolo"

#~ msgid ""
#~ "To display your slideshow, add the following shortcode (in orange) to "
#~ "your page. If adding the slideshow to your theme files, additionally "
#~ "include the surrounding PHP code (in gray).&lrm;"
#~ msgstr ""
#~ "Per visualizzare la tua presentazione, aggiungi il seguente shortcode (in "
#~ "arancione) alla tua pagina. Se aggiungi la tua presentazione ai file del "
#~ "tuo tema, includi anche la funzione PHP circostante (in grigio).&lrm;"

#~ msgid "Copy all code"
#~ msgstr "Copia tutti i codici"

#~ msgid ""
#~ "Press to load available slideshows then choose which slideshows to "
#~ "export. If you only have a few slideshows we will prepare them "
#~ "automatically."
#~ msgstr ""
#~ "Premi per caricare le presentazioni disponibili e poi scegli quali "
#~ "presentazioni esportare. Se hai solo poche presentazioni, le prepareremo "
#~ "automaticamente."

#~ msgid ""
#~ "Pressing export will gather and organize all of your slideshows into a "
#~ "single data file that you can use to restore on another website."
#~ msgstr ""
#~ "Premendo export raccoglierai e organizzerai tutte le tue presentazioni in "
#~ "un unico file di dati che potrai usare per ripristinarle su un altro sito "
#~ "web."

#~ msgid ""
#~ "Your images will need to be exported manually and uploaded to the new "
#~ "website before importing these slideshows. Additionally, image file names "
#~ "need to match as we will use built in WordPress functions to locate the "
#~ "image based on its current name."
#~ msgstr ""
#~ "Le tue immagini dovranno essere esportate manualmente e caricate sul "
#~ "nuovo sito web prima di importare queste presentazioni. Inoltre, i nomi "
#~ "dei file delle immagini devono corrispondere perché useremo le funzioni "
#~ "integrate di WordPress per individuare l'immagine in base al suo nome "
#~ "attuale."

#~ msgid "Learn how"
#~ msgstr "Impara come"

#~ msgid ""
#~ "Please note that content contained in \"Post Type\" slides will not be "
#~ "exported. Only the slide configurations that refer to the content will be."
#~ msgstr ""
#~ "Nota che i contenuti inclusi nelle diapositive \"Tipo di contenuto\" non "
#~ "saranno esportati. Solo le configurazioni delle diapositive che si "
#~ "riferiscono al contenuto lo saranno."

#~ msgctxt ""
#~ "Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
#~ "Friday\" is the name of an event in the United States"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until November 30th!"
#~ msgstr ""
#~ "Aggiorna le tue presentazioni! Iscriviti oggi e avrai il 50% di sconto su "
#~ "MetaSlider Pro fino al 30 novembre!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until December 25th!"
#~ msgstr ""
#~ "Aggiorna le tue presentazioni! Iscriviti oggi e avrai il 50% di sconto su "
#~ "MetaSlider Pro fino al 25 dicembre!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until January 14th!"
#~ msgstr ""
#~ "Aggiorna le tue presentazioni! Iscriviti oggi e avrai il 50% di sconto su "
#~ "MetaSlider Pro fino al 14 gennaio!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until April 30th!"
#~ msgstr ""
#~ "Aggiorna le tue presentazioni! Iscriviti oggi e avrai il 50% di sconto su "
#~ "MetaSlider Pro fino al 30 aprile!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until July 31st!"
#~ msgstr ""
#~ "Aggiorna le tue presentazioni! Iscriviti oggi e avrai il 50% di sconto su "
#~ "MetaSlider Pro fino al 31 luglio!"

#~ msgid "Learn More"
#~ msgstr "Maggiori informazioni"

#~ msgid "Click to toggle"
#~ msgstr "Fai clic per attivare/disattivare"

#~ msgid "Take a tour"
#~ msgstr "Fai un tour"

#~ msgid "Add-ons"
#~ msgstr "Add-on"

#~ msgid "Allowed Files"
#~ msgstr "File permessi"

#~ msgid "Select Files"
#~ msgstr "Seleziona file"

#~ msgctxt "Uploader: Drop files to upload - or - Select Files"
#~ msgid "or"
#~ msgstr "o"

#~ msgid "Drop files to upload"
#~ msgstr "Rilascia i file per caricarli"

#~ msgid "%d slideshow restored from the Trash."
#~ msgid_plural "%d slideshows restored from the Trash."
#~ msgstr[0] "%d presentazione ripristinata dal cestino."
#~ msgstr[1] "%d presentazioni ripristinate dal cestino."

#~ msgid "Empty Trash"
#~ msgstr "Svuota il cestino"

#~ msgid "Gallery"
#~ msgstr "Galleria"

#~ msgid "Select Images"
#~ msgstr "Seleziona le immagini"

#~ msgid "edit"
#~ msgstr "modifica"

#~ msgid "Gallery ID #%s"
#~ msgstr "ID della galleria #%s"

#~ msgid "Your Galleries"
#~ msgstr "Le tue gallerie"

#~ msgid ""
#~ "%s Easy to use, fun to master. With advanced features for those who need "
#~ "them."
#~ msgstr ""
#~ "%s Facile da usare, divertente da gestire. Con caratteristiche avanzate "
#~ "per chi ne ha bisogno."

#~ msgid ""
#~ "%s Fully WCAG accessible - All users will be able to enjoy your galleries."
#~ msgstr ""
#~ "%s Completamente accessibile WCAG - tutti gli utenti saranno in grado di "
#~ "godere delle tue gallerie."

#~ msgid "%s SEO-focused - Search engines will love your galleries."
#~ msgstr ""
#~ "%s incentrato sul SEO - i motori di ricerca ameranno le tue gallerie."

#~ msgid ""
#~ "%s Fast - Using modern best practices, your galleries will be faster than "
#~ "ever."
#~ msgstr ""
#~ "%s Rapido - utilizzando le moderne procedure ottimali, le tue gallerie "
#~ "saranno più veloci che mai."

#~ msgid "We are building the gallery following these principles:"
#~ msgstr "Costruiamo la galleria seguendo questi principi:"

#~ msgid ""
#~ "Hi, welcome the gallery project by MetaSlider. %1$sRedefining WordPress "
#~ "galleries%2$s."
#~ msgstr ""
#~ "Ciao, benvenuto al progetto di galleria di MetaSlider. %1$sRidefinire le "
#~ "gallerie di WordPress%2$s."

#~ msgid "Open Settings"
#~ msgstr "Apri le impostazioni"

#~ msgid "Spacing (px)"
#~ msgstr "Spaziatura (px)"

#~ msgid "Image min width (px)"
#~ msgstr "Larghezza minima dell'immagine (px)"

#~ msgid "Image max width (px)"
#~ msgstr "Larghezza massima dell'immagine (px)"

#~ msgid "Image width (%)"
#~ msgstr "Larghezza dell'immagine (%)"

#~ msgid "Gallery Settings"
#~ msgstr "Impostazioni galleria"

#~ msgid "Remove image"
#~ msgstr "Rimuovi immagine"

#~ msgid "Remove image from gallery"
#~ msgstr "Rimuovi l'immagine dalla galleria"

#~ msgid "Image alt attribute"
#~ msgstr "Attributo \"alt\" dell'immagine"

#~ msgid "Image Settings"
#~ msgstr "Impostazioni immagine"

#~ msgid ""
#~ "This gallery extention is in active development, so check back soon for "
#~ "more features."
#~ msgstr ""
#~ "Questa estensione della galleria è in fase di sviluppo attivo, quindi "
#~ "ritorna a controllare presto per ulteriori caratteristiche."

#~ msgid "Media Library"
#~ msgstr "Libreria dei media"

#~ msgid "Select image source"
#~ msgstr "Seleziona la sorgente immagine"

#~ msgid "Add images"
#~ msgstr "Aggiungi immagini"

#~ msgid "Saved"
#~ msgstr "Salvato"

#~ msgid "Delete gallery"
#~ msgstr "Elimina galleria"

#~ msgid ""
#~ "Are you sure you want to DELETE this gallery? Note that we will not "
#~ "remove images or other external data"
#~ msgstr ""
#~ "Sei sicuro di voler eliminare questa galleria? Nota che non rimuoveremo "
#~ "le immagini o altri dati esterni"

#~ msgid "Delete Gallery"
#~ msgstr "Elimina galleria"

#~ msgid "Title not set"
#~ msgstr "Titolo non impostato"

#~ msgid "Press to edit the title"
#~ msgstr "Premi per modificare il titolo"

#~ msgid "Focus to edit the title"
#~ msgstr "Focus per modificare il titolo"

#~ msgid "Galleries"
#~ msgstr "Gallerie"

#~ msgid "View all galleries"
#~ msgstr "Visualizza tutte le gallerie"

#~ msgid "Cancel"
#~ msgstr "Annulla"

#~ msgid "Ok"
#~ msgstr "Ok"

#~ msgid "Action"
#~ msgstr "Azione"

#~ msgid "Background color"
#~ msgstr "Colore di sfondo"

#~ msgid "Dark mode"
#~ msgstr "Modalità scura"

#~ msgid "Work without distraction"
#~ msgstr "Lavora senza distrazioni"

#~ msgid "Fullscreen mode"
#~ msgstr "Modalità a schermo intero"

#~ msgid "Add gallery"
#~ msgstr "Aggiungi galleria"

#~ msgid "Create gallery"
#~ msgstr "Crea galleria"

#~ msgid "Give your gallery a name."
#~ msgstr "Dai un nome alla tua galleria."

#~ msgid "Add to page"
#~ msgstr "Aggiungi alla pagina"

#~ msgid "Copy"
#~ msgstr "Copia"

#~ msgid "Copied!"
#~ msgstr "Copiato!"

#~ msgid ""
#~ "Copy the shortcode and insert it on your page using a shortcode block or "
#~ "otherwise an html block."
#~ msgstr ""
#~ "Copia lo shortcode e inseriscilo nella tua pagina usando un blocco "
#~ "shortcode o altrimenti un blocco html."

#~ msgid "Add to page/post"
#~ msgstr "Aggiung alla pagina/articolo"

#~ msgid "You are not authorized to update this Gallery"
#~ msgstr "Non sei autorizzato ad aggiornare questa galleria"

#~ msgid "You do not have permission to do that."
#~ msgstr "Non hai i permessiper fare ciò."

#~ msgid "Select or deselect all slideshows"
#~ msgstr "Seleziona o deseleziona tutte le presentazioni"

#~ msgid "Toggle all slideshows"
#~ msgstr "Attiva/disattiva tutte le presentazioni"

#~ msgid "Slideshow title updated"
#~ msgstr "Titolo della presentazione aggiornato"

#~ msgid "%s slides added successfully"
#~ msgstr "%s diapositive aggiunte correttamente"

#~ msgid "Preparing %s slides..."
#~ msgstr "Preparazione di %s diapositive…"

#~ msgid "CSS manager module"
#~ msgstr "Modulo di gestione CSS"

#~ msgid "Close"
#~ msgstr "Chiudi"

#~ msgid "Coming soon"
#~ msgstr "Prossimamente"
languages/ml-slider-zh_TW-metaslider-admin-script.json000064400000064563151213255440017065 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"zh_CN"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":[""],"Caption":["標題"],"New Window":["新窗口"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["注意:此功能僅適用於高級開發。"],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["標題"],"Created":[""],"Shortcode":["簡碼"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["添加幻燈片"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["保存"],"Settings":["設置"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":[""],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":[""],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["標題:"],"Select Slider:":["選擇幻燈片:"],"No slideshows found":["沒有幻燈片"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":[""],"SEO":[""],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["圖像"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["寬度"],"px":[""],"Height":["高度"],"Effect":["效果"],"Slide transition effect":["幻燈片過渡效果"],"Random":["隨機"],"Swirl":["漩渦"],"Rain":["雨點"],"Straight":["直接"],"Slice Down":[""],"Slice Up":["切片"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["褪色"],"Fold":["折疊"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["隨機"],"Box Rain":["箱式"],"Box Rain Reverse":["箱式反向"],"Box Rain Grow":[""],"Box Rain Grow Reverse":[""],"Slide":["滑動"],"Arrows":["箭頭"],"Show the previous/next arrows":[""],"Navigation":["導航"],"Hidden":["隱藏"],"Dots":["點"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["高級設置"],"100% width":[""],"Center align":["居中對齊"],"Center align the slideshow":["居中對齊幻燈片"],"Auto play":["自動播放"],"Transition between slides automatically":[""],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["智能裁剪,將您的幻燈片圖片裁剪到一個相同比例,使其顯示結果在幻燈片中大小保存一致。"],"Carousel mode":["傳送帶模式"],"Display multiple slides at once. Slideshow output will be 100% wide.":[""],"Carousel margin":[""],"Pixel margin between slides in carousel.":[""],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["幻燈片順序隨機"],"Hover pause":["懸停時間"],"Reverse":["逆轉"],"Reverse the animation direction":["反向動畫"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["動畫延遲"],"How long to display each slide, in milliseconds":["幻燈片的播放間隔,單位毫秒"],"Animation speed":["動畫速度"],"Set the speed of animations, in milliseconds":["設置動畫的速度,單位毫秒"],"Number of slices":["切片數"],"Number of squares":["方格數"],"Slide direction":["滑動方向"],"Select the sliding direction":["選擇的滑動方向"],"Horizontal":["橫向"],"Vertical":["垂直"],"Easing":["緩和"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["上一張圖片"],"Set the text for the 'previous' direction item":["選擇圖片為“上一張”"],"Next text":["下一張圖片"],"Set the text for the 'next' direction item":["選擇圖片為'下一張'"],"Square delay":["延遲"],"Opacity":["透明度"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["速度"],"Set the fade in speed of the caption":["設置速度的標題淡入"],"CSS classes":["CSS 類"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["指定的任何自定義CSS類"],"Print CSS":["顯示CSS"],"Uncheck this is you would like to include your own CSS":["取消選中,則使用主題自身的CSS"],"Uncheck this is you would like to include your own Javascript":["取消選中,則使用主題自身的Javascript"],"No conflict mode":[""],"Delay adding the flexslider class to the slideshow":[""],"Delete slideshow":[""],"Select slideshow to insert into post":[""],"Add slideshow":[""],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["文檔"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["你確定嗎"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-zh_TW.mo000064400000010436151213255450011777 0ustar00��EDal�	��

+	2<E
Vam
u
�Z���
"'.5:?F
MX/d�
�
�
�	�����
	!!(JRrw�$�,�*�. 	O		X	b	k	q	}	�	l�	O
b
o
x
~
�
6�
=�
	��


$
1
8
E
L
Y
`
h
o
v
-�
�
�
�
�
�
�
�
�
�
' H
OZ	ak{	�	�	��	�������+$Gl��������{�n����	�*�1�D':86>2<B -"54/,)%13!*7(0
;$@E	+#=
.&AC9?Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowDocumentationDotsEasingEffectFadeFoldHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageMetaSliderNavigationNew WindowNext textNo slideshows foundNumber of slicesNumber of squaresOpacityPrevious textPrint CSSRainRandomRandomise the order of the slidesReverseReverse the animation directionSaveSelect Slider:Select the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeSlice UpSlideSlide delaySlide directionSlide transition effectSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightSwirlTitleTitle:Uncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthProject-Id-Version: metaslider-zh_CN
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:59-0600
Last-Translator: 断青丝 <181138991@qq.com>
Language-Team: 断青丝 <181138991@qq.com>
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
添加幻燈片高級設置動畫速度你確定嗎箭頭自動播放箱式箱式反向隨機CSS 類標題速度傳送帶模式注意:此功能僅適用於高級開發。居中對齊居中對齊幻燈片文檔點緩和效果褪色折疊高度隱藏橫向懸停時間幻燈片的播放間隔,單位毫秒圖像MetaSlider導航新窗口下一張圖片沒有幻燈片切片數方格數透明度上一張圖片顯示CSS雨點隨機幻燈片順序隨機逆轉反向動畫保存選擇幻燈片:選擇的滑動方向設置速度的標題淡入設置動畫的速度,單位毫秒選擇圖片為'下一張'選擇圖片為“上一張”設置簡碼切片滑動動畫延遲滑動方向幻燈片過渡效果智能裁剪,將您的幻燈片圖片裁剪到一個相同比例,使其顯示結果在幻燈片中大小保存一致。指定的任何自定義CSS類延遲直接漩渦標題標題:取消選中,則使用主題自身的CSS取消選中,則使用主題自身的Javascript垂直寬度languages/ml-slider-zh_CN.mo000064400000015657151213255450011757 0ustar00��n���P		Q	[	m	
}	�		�	
�	�	�	�	�	
�	�	�	
�	



Z(

�
�
�
�
�
�
�

�
�
$-DB
���������
��/�
$/;L
]
h
s	~�����S�(,

U
	c
m
v
{
!�
�
�
�
�
�
�
$�
"$?,d*�.��	��!>GMYi��
�l�Ojw�:����
��	�'�6!=X��������������
'.5Ki[�����%,9L_fEy�����������*:A\iy�
��	����	�		N$g�	�������1$Di'�?�?C	JT!p���������	����$���	��,E$I+n���J^4],-=hH 
FlOkaj1_\d:"&SNb+7*6XQEi%V'/Y`?<.;fIcT>(3PgL[$MG9WUeC0KB#8nRA2)@mZ!D
5	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBottom CenterBottom LeftBottom RightBox RainBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshowChoose slideshowCropCrop PositionDelay between squares in msDeveloper optionsDisabledDisabled (Smart Pad)Display multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage CropImage SlideImage Title TextInsert slideshowMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select replacement imageSelect slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart CropSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStandardStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Top CenterTop LeftTop RightTransition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider-zh_CN
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:59-0600
Last-Translator: 断青丝 <181138991@qq.com>
Language-Team: mamsds <mamsds@live.com>
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
添加幻灯片高级设置动画速度你确定吗?箭头自动播放底部居中底部左对齐底部右对齐箱式箱式随机CSS 类标题速度传送带模式边距传送带模式注意:此设置仅适用于高级开发者。如果你不确定,请将他保持在未勾选的状态水平居中水平左对齐水平右对齐居中对齐居中对齐幻灯片选择幻灯片剪裁裁剪位置以毫秒为单位开发人员选项禁用禁用 (Smart Pad)立即显示多张幻灯片. 幻灯片放映会以100%的宽度输出文档点松效果渐隐折叠通用高度隐藏横向悬停时暂停幻灯片的播放间隔,单位是毫秒图像图片的替代文字(alt)图像裁剪图像幻灯片图片的标题文字插入幻灯片MetaSlider导航新窗口表示“下一张”的文本无冲突模式没有幻灯片切片数方格数透明度当鼠标悬停在图片上时暂停幻灯片放映(鼠标移开后恢复)传送带模式下幻灯片间间距表示“上一张”的文本打印CSS打印JavaScript雨随机打乱幻灯片放映的顺序反向反转过渡效果的方向SEO保存选择幻灯片:选择替代图像选择要插入到博文的幻灯片选择的滑动方向设置字幕渐隐的速度设置动画的速度,单位是毫秒为幻灯片放映中的“下一张”按钮设置文本内容为幻灯片放映中的“上一张”按钮设置文本内容设置短代码显示 向后/向前 箭头显示幻灯片导航的小圆点切片滑动幻灯片播放间隔滑动方向幻灯片过渡效果幻灯片标高度幻灯片宽度智能裁剪智能裁剪确保您的多张响应式幻灯片被剪裁到一个相同的比例,使他们能在幻灯片中保持同样的尺寸。指定的任何自定义CSS类延迟标准直拉伸幻灯片以填充其父容器漩涡标题标题:顶部居中顶部左对齐顶部右对齐幻灯片间自动过渡URL取消选中,则使用自己的CSS取消选中,则使用自己的Javascript垂直宽度像素languages/ml-slider-ru_RU.po000064400000171004151213255450012002 0ustar00msgid ""
msgstr ""
"Project-Id-Version: MetaSlider v3.2.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:59-0600\n"
"Last-Translator: admin <info@1245.ru>\n"
"Language-Team: \n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : "
"(n+9)%10>3 ? 2 : 1;\n"
"X-Generator: Poedit 3.2.2\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n: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"
"X-Textdomain-Support: yes\n"
"X-Poedit-SearchPath-0: .\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "Мета слайдер"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""
"Простой в использовании слайд-шоу плагин. Создавайте СЕО-оптимизированные "
"адаптивные слайд-шоу с Nivo Slider, Flex Slider, Coin Slider и Responsive "
"Slides."

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "Ссылка (URL)"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Описание"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Открывать в новом окне"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr "Выбрать изображение"

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Внимание: данная настройка только для опытных пользователей. Если вы не "
"уверены, оставьте её отмеченной."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Название"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Шорткод"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Добавить слайд"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Сохранить"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Настройки"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr "Обрезать"

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr "Сверху Слева"

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr "Сверху Центр"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr "Сверху Справа"

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr "Центр Слева"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr "По центру"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr "Центр Справа"

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr "Снизу Слева"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr "Снизу Центр"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr "Снизу Справа"

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Title изображния"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Alt изображения"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Название:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Выберите слайдер:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Не найдено ни одного слайд-шоу"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Слайд"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Основное"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "CEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr "Обрезать"

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Изображение"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Ширина"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Ширина слайд-шоу"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "пикселей"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Высота"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Высота слайд-шоу"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Эффект"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Эффект смены слайдов"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Случайно"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Кручение"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Дождь"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Классический"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Сдвиг"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Растворение"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Жалюзи"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Случайные квадраты"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Мозаика"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Обратная мозаика"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Возрастающая мозаика"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Скольжение"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Стрелочки"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Показывать стрелки вперед/назад"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Навигация"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Показывать метки навигации"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Не показывать"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Точки"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Расширенные настройки"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Растягивает слайд-шоу на всю ширину родительского элемента"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Выравнять по центру"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Центрирует слайд-шоу"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Воспроизводить автоматически"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Задержка между сменой слайдов определяется автоматически"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr "Обрезка изображений"

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr "Обычная"

#: ml-slider.php:1933
msgid "Disabled"
msgstr "Отключено"

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Слайды будут обрезаны с определённым соотношением, чтобы размер слайд-шоу не "
"изменялся"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Режим карусели"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""
"Показывать несколько слайдов одновременно. Слайд-шоу будет иметь ширину 100%."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "Отступ карусели"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "Отступ (в пикселях) между слайдами в карусели"

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Случайный порядок салйдов"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Пауза при наведении мыши"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Останавливает слайд-шоу при наведении на него мышки и снова возобновляет, "
"когда мышка убрана."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "В обратном порядке"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Изменить порядок слайдов на обратный"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Время показа слайда"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Как долго будет показан каждый слайд (в миллисекундах)"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Скорость анимации"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Устанавливает скорость анимации (в миллисекундах)"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Количество секций"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Количество квадратов"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Направление воспроизведения"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Выбор направления воспроизведения"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Горизонтально"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Вертикально"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Сглаживание"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Текст \"назад\""

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Установить текст для метки \"назад\" (предыдущий слайд)"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Текст \"вперед\""

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Установить текст для метки \"вперед\" (следующий слайд)"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Задержка между квадратами"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "Задержка между квадратами (в миллисекундах)"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Прозрачность"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Скорость описания"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Установить скорость растворения описания"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Опции для разработчиков"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS классы"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Укажите любые пользовательские CSS классы, которые вы хотите добавить к "
"контейнеру слайдера"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Выводить CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Снимите галочку, если Вы хотите использовать свой собственный CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Выводить JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr ""
"Снимите галочку, если Вы хотите использовать свой собственный Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "Бесконфликтный режим"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Задержка при добавлении класса flexslider в слайдшоу"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Выберите слайд-шоу для вставки в запись"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Выберите слайдшоу"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr "Вставить слайдшоу"

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Документация"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Вы уверены?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-hr_HR-metaslider-admin-script.json000064400000067345151213255450017036 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","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);","lang":"hr_HR"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Natpis"],"New Window":["Novi prozor"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Oprez: Ova postavka je samo za napredne korisnike. Ako niste sigurni, ostavite je označeno."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Naslov"],"Created":[""],"Shortcode":["Shortcode"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Dodaj Slide"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Spremi"],"Settings":["Postavke"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Naslov slike"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Alt Tekst Slike"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Naslov:"],"Select Slider:":["Odaberi Slider:"],"No slideshows found":["Slideshowi nisu pronađeni"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Slide Slika"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Generalno"],"SEO":["SEO"],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Slika"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Širina"],"Slideshow width":["Širina Slideshowa"],"px":["px"],"Height":["Visina"],"Slideshow height":["Visina Slideshowa"],"Effect":["Efekt"],"Slide transition effect":["Efekt izmjene slide-a"],"Random":["Naizmjenično"],"Swirl":["Swirl"],"Rain":["Kiša"],"Straight":["Ravno"],"Slice Down":[""],"Slice Up":["Slice gore"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Izbljeljujuće"],"Fold":["Savijeno"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Box nasumično"],"Box Rain":["Box kiša"],"Box Rain Reverse":["Box kiša obrnuto"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Box Grow kiša obrnuto"],"Slide":["Slide"],"Arrows":["Strijele"],"Show the previous/next arrows":["Pokaži Natrag/Nazad strijele"],"Navigation":["Navigacija"],"Show the slide navigation bullets":["Pokaži navigacijske bullete slide-a"],"Hidden":["Skriveno"],"Dots":["Točke"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Napredne postavke"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Razvuci slideshow izgled da se uklapa sa glavnim container-om."],"Center align":["Centriraj"],"Center align the slideshow":["Centriraj poredak slideshow-a"],"Auto play":["Auto play"],"Transition between slides automatically":["Automatsko mijenjanje slide-ova"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Smart Crop omogućava vašim slide-ovima da su prilagođeni istoj veličini za prikaz."],"Carousel mode":["Opcija Vrtuljak"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Prikazuje više slide-ova odjednom. Slideshow izgled će biti 100% širok."],"Carousel margin":[""],"Pixel margin between slides in carousel.":[""],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Nasumičan poredak slide-ov"],"Hover pause":["Pauziraj prijelazom miša"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Pauzirajte slideshow kada prelazite mišem preko slider-a, zatim nastavlja kada odmaknete miš."],"Reverse":["Obrnuti smjer"],"Reverse the animation direction":["Izmjenite smjer animacije."],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Odgoda slide-a"],"How long to display each slide, in milliseconds":["Koliko dugo prikazivati slide, u milisekundama"],"Animation speed":["Brzina animacije"],"Set the speed of animations, in milliseconds":["Podesite brzinu animacije, u milisekundama"],"Number of slices":["Broj slice-eva"],"Number of squares":["Broj kocki"],"Slide direction":["Smjer slide-a"],"Select the sliding direction":["Odaberite smjer slide-a"],"Horizontal":["Horizontalno"],"Vertical":["Vertikalno"],"Easing":["Ublažavanje"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Prethodni tekst"],"Set the text for the 'previous' direction item":["Postavite tekst za \"Prethodni\" smjer stavke"],"Next text":["Sljedeći tekst"],"Set the text for the 'next' direction item":["Postavite tekst za \"Sljedeći\" smjer stavke"],"Square delay":["Odgoda kocke"],"Delay between squares in ms":["Odgoda između kocki u ms"],"Opacity":["Vidljivost"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Brzina natpisa"],"Set the fade in speed of the caption":["Postavite brzinu izbljeljivanja natpisa"],"Developer options":["Developer opcije"],"CSS classes":["CSS classes"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Odredite bilokoji prilagođen CSS Class koji želite dodati u slider wrapper"],"Print CSS":["Print CSS"],"Uncheck this is you would like to include your own CSS":["Odznačite ovo ako biste željeli koristiti vlastiti CSS"],"Print JS":["Print JS"],"Uncheck this is you would like to include your own Javascript":["Odznačite ovo ako biste željeli koristiti vlastiti Javascript"],"No conflict mode":["No conflict mode"],"Delay adding the flexslider class to the slideshow":["Odgodite dodavanja flexslider class-a u slideshow"],"Delete slideshow":[""],"Select slideshow to insert into post":["Odaberi slideshow za umetanje u post"],"Add slideshow":[""],"Choose slideshow":["Odaberi slideshow"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Dokumentacija"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Jeste li sigurni?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-uk-metaslider-admin-script.json000064400000074463151213255450016452 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","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);","lang":"uk"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Напис"],"New Window":["Нове вікно"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":["Виберіть зображення"],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Увага: це налаштування лише для досвідчених розробників. Якщо ви не впевнені, залишіть його відзначеним. "],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Заголовок"],"Created":[""],"Shortcode":["Шорткод"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Додати слайд"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Зберегти"],"Settings":["Налаштування"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":["Позиція обтинання"],"Top Left":["Зверху зліва"],"Top Center":["Зверху по центру"],"Top Right":["Зверху справа"],"Center Left":["Посередині зліва"],"Center Center":["Посередині по центру"],"Center Right":["Посередині справа"],"Bottom Left":["Знизу зліва"],"Bottom Center":["Знизу по центру"],"Bottom Right":["Знизу справа"],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Атрибут title"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Атрибут alt"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Заголовок:"],"Select Slider:":["Виберіть слайдер:"],"No slideshows found":["Слайд-шоу не знайдено"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":["Не вдалось додати слайд. Цей слайд не є зображенням."],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Зображення"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Основне"],"SEO":["SEO"],"Crop":["Обтинання"],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Зображення"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Ширина"],"Slideshow width":["Ширина слайд-шоу"],"px":["пікселів"],"Height":["Висота"],"Slideshow height":["Висота слайд-шоу"],"Effect":["Ефект"],"Slide transition effect":["Ефект переходу слайдів"],"Random":["Випадково"],"Swirl":["Вир"],"Rain":["Дощ"],"Straight":["Класичний"],"Slice Down":[""],"Slice Up":["Зсув"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Вицвітання"],"Fold":["Жалюзі"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Випадкові квадрати"],"Box Rain":["Мозаїка"],"Box Rain Reverse":["Зворотня мозаїка"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Наростаюча мозаїка"],"Slide":["Ковзання"],"Arrows":["Стрілки"],"Show the previous/next arrows":["Показувати стрілки вперед/назад"],"Navigation":["Навігація"],"Show the slide navigation bullets":["Показувати мітки навігації"],"Hidden":["Не показувати"],"Dots":["Крапки"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Додатково"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Розтягнути слайд-шоу на всю ширину батьківського елемента"],"Center align":["Вирівнювати по центру"],"Center align the slideshow":["Відцентрувати слайд-шоу"],"Auto play":["Відтворювати автоматично"],"Transition between slides automatically":["Перехід між слайдами відбувається автоматично"],"Image Crop":["Обтинання зображень"],"Smart Crop":["Розумне обтинання зображень"],"Standard":["Типовий"],"Disabled":["Відключено"],"Disabled (Smart Pad)":["Відключено (Smart Pad)"],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Розумне обтинання гарантує, що обтинання слайдів буде виконано таким чином, щоб розмір слайд-шоу не змінювався"],"Carousel mode":["Режим каруселі"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Показувати декілька слайдів одночасно. Слайд-шоу матиме ширину 100%"],"Carousel margin":["Відступ каруселі"],"Pixel margin between slides in carousel.":["Відступ (в пікселях) між слайдами в каруселі"],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Випадковий порядок слайдів"],"Hover pause":["Пауза при наведенні курсора"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Зупиняє слайд-шоу при наведенні курсора і відновлює, коли курсор знову покидає його межі"],"Reverse":["В зворотньому порядку"],"Reverse the animation direction":["Змінити порядок слайдів на зворотній"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Затримка показу слайда"],"How long to display each slide, in milliseconds":["Як довго показувати кожен слайд (в мілісекундах)"],"Animation speed":["Швидкість анімації"],"Set the speed of animations, in milliseconds":["Задати швидкість анімації (в мілісекундах)"],"Number of slices":["Кількість секцій"],"Number of squares":["Кількість квадратів"],"Slide direction":["Напрямок відтворення"],"Select the sliding direction":["Вибрати напрямок відтворення"],"Horizontal":["Горизонтальний"],"Vertical":["Вертикальний"],"Easing":["Згладжування"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Попередній текст"],"Set the text for the 'previous' direction item":["Задати текст для мітки 'назад' (попередній слайд)"],"Next text":["Наступний текст"],"Set the text for the 'next' direction item":["Задати текст для мітки 'вперед' (наступний слайд)"],"Square delay":["Затримка між квадратами"],"Delay between squares in ms":["Затримка між квадратами в мілісекундах"],"Opacity":["Прозорість"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Швидкість напису"],"Set the fade in speed of the caption":["Встановити швидкість вицвітання напису"],"Developer options":["Опції для розробників"],"CSS classes":["CSS класи"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Вкажіть будь-які користувацькі CSS класи, які Ви хочете додати в контейнер слайдера"],"Print CSS":["Виводити CSS"],"Uncheck this is you would like to include your own CSS":["Зніміть цю галочку, якщо Ви хочете використовувати свій власний CSS"],"Print JS":["Виводити JS"],"Uncheck this is you would like to include your own Javascript":["Зніміть цю галочку, якщо Ви хочете використовувати свій власний Javascript"],"No conflict mode":["Безконфліктний режим"],"Delay adding the flexslider class to the slideshow":["Затримка при додаванні класу flexslider у слайд-шоу"],"Delete slideshow":[""],"Select slideshow to insert into post":["Додати слайд-шоу"],"Add slideshow":[""],"Choose slideshow":["Виберіть слайд-шоу"],"Insert slideshow":["Вставити слайд-шоу"],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Документація"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Ви впевнені?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-ro_RO.mo000064400000015100151213255450011755 0ustar00��\���	���
	$-C
T_k
s
�Z���	2#	V	r	D�	
�	�	�	�	�	�	�	�	




/!
Q
W
f
r

�

�

�
	�
�
�
�
�
�
S�

R	`jsx!�����$�$#,H*u.��	��!
"
+
1
=
M
e
v
l�
O�
CP:Y���'��6�=
HQW�Z*
<JSd"u��	���
�l�Y$l�:� �T
ky�������	��;� (9
L
Zen����	�k�`
p~	�	�������CO$o,�7�8�2	:%D1j
�������%_�%1,^jp'v�@�G�+4=9>&R/;
GMN5!1FPO*B,+-D7T3\C[XQ$WSU6(?A%:8I4#2=E.'"Z)LV
JHY<@ 0K	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Transition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:58-0600
Last-Translator: 
Language-Team: 
Language: ml
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Adăugare DiapozitivSetări AvansateViteza animaţieiEşti sigur ?SăgeţiRedare automatăCaseta CurgătorCaseta Curgător Crescător InversCaseta Curgător InversCaseta AleatoriuClase CSSTitluViteza titluModul CaruselAtenţie : Această opţiune este destinată doar dezvoltatorilor. Dacă nu sunteţi sigur, lăsaţi bifat .Aliniere centralăAlinierea centrală a diapozitivuluiAlegeţi diapozitivTemporizare în adăugarea clasei flexslider la diapozitivTemporizare între casete în msOpţiuni dezvoltatorAfişaţi mai multe diapozitive simultan. Dimensiunea diapozitivului va fi de 100% .DocumentaţiePuncte (buline)EasingEfectApunerePliaţiGeneralÎnălţimeAscunsOrizontalPauză la planare cursorDurata de afişare a fiecărui diapozitiv , în milisecundeImagineText Alt ImagineImagine DiapozitivTitlu ImagineMetaSliderNavigareFereastră NouăTextul urmatorModul fară conflictNici un diapozitiv găsitNumărul decupăturilorNumărul pătratelorOpacitatePuneţi pauză diapozitivului la planarea cursorului , apoi reluaţi când planarea cursorului încetează.Textul anteriorPublicare CSSPublicare JSCurgătorAleatoriuSortaţi ordinea diapozitivelorInversInversaţi direcţia animaţieiSEOSalvaţiSelectaţi DiapozitivulSelectaţi diapozitivul pe care doriţi să-l inseraţi în postareSelectaţi direcţia de glisareSetaţi viteza de apunere a titluluiSetaţi viteza animaţiilor, în milisecundeSetaţi textul pentru elementul din direcţia 'urmator'Setaţi textul pentru elementul din direcţia 'anterior'SetăriCod scurtAfişaţi săgeţile Înapoi/ÎnainteAfişaţi bulinele de navigare ale diapozitivuluiDecupaţi SusGlisaţiTemporizare diapozitivDirecţie de glisareEfect tranziţie diapozitivÎnăţime DiapozitivLăţime DiapozitivDecupare Inteligentă se asigură că diapozitivele sunt decupate la un raport din care rezultă un diapozitiv la mărimea dorităSpecificaţi orice Clase CSS pe care aţi dorii să fie adăugate la ambalatorul diapozitivuluiTemporizare casetă(pătrat)LiniarExtindeţi diapozitivul pentru încadrare optimăÎnvârtireTitluTitluTranziţie automată între diapozitiveURLPrin debifarea acesteia doriţi să includeţi propriul dvs. CSSPrin debifarea acesteia doriţi să includeţi propriul dvs. JavascriptVerticalLăţimepxlanguages/ml-slider-he_IL.mo000064400000016171151213255450011726 0ustar00��^��	�
%3	:DMc
t�
��
�Z�	'	B	2S	�	�	D�	
�	




$
,
3

:
E
/Q
�
�
�
�

�

�

�
	�
�
�
&S.(�
�	����!��"&+$:_$|,�*�.�(
	1
;
!Y
{
�
�
�
�
�
�
l�
OL��:����'(6,=c�����\r�	����%�*@
Q\t���
,7P[`<��o
��
��
����
�� �E
R ]~ ��
����6NhnuC�(<IU
\0g
�)����-�"2@Cs*�.�02@s
����"�"a+]��J
S
^i-u�W�K

Vaj;@'T0=
IOP7"2HR Q+D-,.F9V5^E]ZS%YUW83)AC&<:K6$4?G/(#\*NX
LJ[>B!1M	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Transition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: MetaSlider 2.9
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 
Last-Translator: Ahrale <contact@atar4u.com>
Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>
Language: he
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 3.2.2
X-Poedit-SourceCharset: UTF-8
הוספת תמונההגדרות מתקדמותמהירות האנימציהבטוח?חציםהפעל אוטומטיתתיבת גשםתיבת גשם צמיחה לאחורתיבת גשם לאחורתיבה אקראיתמחלקות CSSכותרתמהירות כותרתשוליים של קרוסלהמצב קרוסלהזהירות: הגדרה זו היא למפתחים מתקדמים בלבד. אם אינך בטוח, השאר אותה מסומנת.מרכוזמרכז את המצגתבחר מצגתהוספת השהייה במחלקת מצגת גמישה למצגת השקופיות שלךהשהייה בין ריבועים באלפיות השניהאפשרויות מפתחהצג מספר שקופיות בו זמנית. פלט מצגת השקופיות יהיה ברוחב של 100%.תיעודכדוריםהחלקהאפקטעמעוםקפלכלליגובהמוסתראופקיתהפסקה בריחוף עכברכמה זמן להציג כל שקופית, באלפיות השניהתמונהטקסט חלופי לתמונהשיקופית תמונהטקסט כותרת התמונהמצגת שקופיותניווטחלון חדשטקסט הבאמצב ללא קונפליקטלא נמצאו מצגותמספר הפרוסותמספר הריבועיםשקיפותעצור את הצגת השקופיות בעת ריחוף עכבר והמשך לאחר שכבר לא ירחף.המרווח בפיקסלים בין שקופיות בקרוסלה.טקסט הקודםהדפס CSSהדפס JSגשםאקראיסדר את התמונות באופן אקראיאחורההפוך את כיוון האנימציהSEOשמורבחירת מצגת:בחירת המצגת להוספה לפוסטבחירת כיוון ההחלקהקבע את מהירות העמעום בכותרתקבע את מהירות האנימציה באלפיות השניהקבע את הטקסט לפריט 'הבא'קבע את הטקסט לפריט 'הקודם'הגדרותקיצור קודהצג חציםהצג עת הכדורים לניווט המצגתפריסה מעלהתמונההשהיית שיקופיתכיוון ההחלקהאפקט מעבר שקופיתגובה מצגת השקופיותרוחב מצגת השקופיותחיתוך חכם מבטיח חיתוך של השקופיות למידות שקבעת למצגת.ציין מחלקות CSS שתרצה להוסיף למעטפת של מצגת השקופיותהשהית ריבועישרמתח את פלט מצגת השקופיות למילוי מיכל האב.סחרורכותרתכותרת:מעבר אוטומטי בין שקופיותכתובת URLבטל את הסימון כאן אם אתה רוצה לכלול עיצוב CSS משלךבטל את הסימון כאן אם אתה רוצה לכלול JS משלךאנכיתרוחבפיקסליםlanguages/ml-slider-he_IL.po000064400000164367151213255450011744 0ustar00msgid ""
msgstr ""
"Project-Id-Version: MetaSlider 2.9\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: \n"
"Last-Translator: Ahrale <contact@atar4u.com>\n"
"Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
"Language: he\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 3.2.2\n"
"X-Poedit-SourceCharset: UTF-8\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "מצגת שקופיות"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "כתובת URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "כותרת"

#: admin/Pages.php:75
msgid "New Window"
msgstr "חלון חדש"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"זהירות: הגדרה זו היא למפתחים מתקדמים בלבד. אם אינך בטוח, השאר אותה מסומנת."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "כותרת"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "קיצור קוד"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "הוספת תמונה"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "שמור"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "הגדרות"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "טקסט כותרת התמונה"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "טקסט חלופי לתמונה"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "כותרת:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "בחירת מצגת:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "לא נמצאו מצגות"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "שיקופית תמונה"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "כללי"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "תמונה"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "רוחב"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "רוחב מצגת השקופיות"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "פיקסלים"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "גובה"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "גובה מצגת השקופיות"

#: ml-slider.php:1688
msgid "Effect"
msgstr "אפקט"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "אפקט מעבר שקופית"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "אקראי"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "סחרור"

#: ml-slider.php:1702
msgid "Rain"
msgstr "גשם"

#: ml-slider.php:1706
msgid "Straight"
msgstr "ישר"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "פריסה מעלה"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "עמעום"

#: ml-slider.php:1734
msgid "Fold"
msgstr "קפל"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "תיבה אקראית"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "תיבת גשם"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "תיבת גשם לאחור"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "תיבת גשם צמיחה לאחור"

#: ml-slider.php:1766
msgid "Slide"
msgstr "תמונה"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "חצים"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "הצג חצים"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "ניווט"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "הצג עת הכדורים לניווט המצגת"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "מוסתר"

#: ml-slider.php:1795
msgid "Dots"
msgstr "כדורים"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "הגדרות מתקדמות"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "מתח את פלט מצגת השקופיות למילוי מיכל האב."

#: ml-slider.php:1888
msgid "Center align"
msgstr "מרכוז"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "מרכז את המצגת"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "הפעל אוטומטית"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "מעבר אוטומטי בין שקופיות"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr "חיתוך חכם מבטיח חיתוך של השקופיות למידות שקבעת למצגת."

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "מצב קרוסלה"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr "הצג מספר שקופיות בו זמנית. פלט מצגת השקופיות יהיה ברוחב של 100%."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "שוליים של קרוסלה"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "המרווח בפיקסלים בין שקופיות בקרוסלה."

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "סדר את התמונות באופן אקראי"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "הפסקה בריחוף עכבר"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr "עצור את הצגת השקופיות בעת ריחוף עכבר והמשך לאחר שכבר לא ירחף."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "אחורה"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "הפוך את כיוון האנימציה"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "השהיית שיקופית"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "כמה זמן להציג כל שקופית, באלפיות השניה"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "מהירות האנימציה"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "קבע את מהירות האנימציה באלפיות השניה"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "מספר הפרוסות"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "מספר הריבועים"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "כיוון ההחלקה"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "בחירת כיוון ההחלקה"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "אופקית"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "אנכית"

#: ml-slider.php:2159
msgid "Easing"
msgstr "החלקה"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "טקסט הקודם"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "קבע את הטקסט לפריט 'הקודם'"

#: ml-slider.php:2184
msgid "Next text"
msgstr "טקסט הבא"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "קבע את הטקסט לפריט 'הבא'"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "השהית ריבוע"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "השהייה בין ריבועים באלפיות השניה"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "שקיפות"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "מהירות כותרת"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "קבע את מהירות העמעום בכותרת"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "אפשרויות מפתח"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "מחלקות CSS"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr "ציין מחלקות CSS שתרצה להוסיף למעטפת של מצגת השקופיות"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "הדפס CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "בטל את הסימון כאן אם אתה רוצה לכלול עיצוב CSS משלך"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "הדפס JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "בטל את הסימון כאן אם אתה רוצה לכלול JS משלך"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "מצב ללא קונפליקט"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "הוספת השהייה במחלקת מצגת גמישה למצגת השקופיות שלך"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "בחירת המצגת להוספה לפוסט"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "בחר מצגת"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "תיעוד"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "בטוח?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-ja.mo000064400000016120151213255460011333 0ustar00��^��	�
%3	:DMc
t�
��
�Z�	'	B	2S	�	�	D�	
�	




$
,
3

:
E
/Q
�
�
�
�

�

�

�
	�
�
�
&S.(�
�	����!��"&+$:_$|,�*�.�(
	1
;
!Y
{
�
�
�
�
�
�
l�
OL��:����'(6,=c����������*-Xt
�������$��0�6T(m��������	$1V]v�
�����'0CVyc3�
$2	?I-V	�!����3�	-(EV6�7�!(-Jx���!���!\�+$;`g
t��J�Q�<IM;@'T0=
IOP7"2HR Q+D-,.F9V5^E]ZS%YUW83)AC&<:K6$4?G/(#\*NX
LJ[>B!1M	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Transition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:58-0600
Last-Translator: Naoko Takano <info@nao-net.com>
Language-Team: 
Language: ja
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
スライドを追加高度な設定アニメーションの速度よろしいですか ?矢印自動再生右下へ角切りワイプ左上へ角切りワイプ (サイズ増)左上へ角切りワイプ角切りランダムワイプCSS クラスキャプション見出しのスピードカルーセルマージンカルーセル・モード注意: この設定は上級の開発者のみ使用できます。もし確信が持てなければチェックしたままにしてください。中央揃えスライドショーを中央揃えスライドショーを選択フレックススライダー化を遅延するスクエアの遅延速度を秒単位で設定する開発用オプション100%幅でスライドショーを表示ドキュメンテーション点イージング効果フェード左から短冊ワイプ一般高さ非表示水平方向停止ボタン表示各画像の表示時間 (ミリ秒)画像画像の代替文字列画像スライド画像タイトルテキストMetaSliderナビゲーション新規ウインドウ次のテキスト競合モードなしスライドショーがありませんスライスの数スクエアの数不透明度スライダーをポイントしたときにスライド ショーを一時停止し、ホバリングを再開する。カルーセル内のスライドの間隔 (px) 。前のテキストCSS を出力JS を出力レインランダムスライドの順番をランダムにする逆戻りアニメーション方向反転SEO保存スライダーを選択:投稿に挿入するスライドショーを選択スライドの方向を選択見出しのフェードイン速度を設定ミリ秒単位でアニメーションの速度を設定します。「次へ」項目のテキストの設定します。「前へ」 項目のテキストを設定します。設定ショートコード前後への矢印を表示するナビゲーション用の点を表示するスライスアップスライドスライドの遅延スライドの方向スライド遷移エフェクトスライドショーの高さスライドショー幅自動切り抜きを使うと、レスポンシブスライドがスライドショーのサイズに合った比率で切り抜きされますスライダーラッパーに追加したいカスタム CSS クラスを指定します。スクエアの表示遅延ストレート親コンテナいっぱいに伸縮回転タイトルタイトル:自動トラジションURL独自の CSS を含めたい場合はチェックを外してください独自の Javascript を含めたい場合はチェックを外してください垂直方向幅pxlanguages/ml-slider-hr_HR.mo000064400000014501151213255460011744 0ustar00��\���	���
	$-C
T_k
s
�Z���	2#	V	r	D�	
�	�	�	�	�	�	�	�	




/!
Q
W
f
r

�

�

�
	�
�
�
�
�
�
S�

R	`jsx!�����$�$#,H*u.��	��!
"
+
1
=
M
e
v
l�
O�
CP:Y���'��6�=
HQW!Z|����	�	���%4\D	���1�
'J8
������	�����.39IU
b
mx����
�
�_�E	U_h
n|
�����$�'*A+l+��	��$�
%+
:H^pV�L�'4>:y���8�?�
+6>9>&R/;
GMN5!1FPO*B,+-D7T3\C[XQ$WSU6(?A%:8I4#2=E.'"Z)LV
JHY<@ 0K	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Transition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:57-0600
Last-Translator: 
Language-Team: 
Language: hr_HR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
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-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Dodaj SlideNapredne postavkeBrzina animacijeJeste li sigurni?StrijeleAuto playBox kišaBox Grow kiša obrnutoBox kiša obrnutoBox nasumičnoCSS classesNatpisBrzina natpisaOpcija VrtuljakOprez: Ova postavka je samo za napredne korisnike. Ako niste sigurni, ostavite je označeno.CentrirajCentriraj poredak slideshow-aOdaberi slideshowOdgodite dodavanja flexslider class-a u slideshowOdgoda između kocki u msDeveloper opcijePrikazuje više slide-ova odjednom. Slideshow izgled će biti 100% širok.DokumentacijaTočkeUblažavanjeEfektIzbljeljujućeSavijenoGeneralnoVisinaSkrivenoHorizontalnoPauziraj prijelazom mišaKoliko dugo prikazivati slide, u milisekundamaSlikaAlt Tekst SlikeSlide SlikaNaslov slikeMetaSliderNavigacijaNovi prozorSljedeći tekstNo conflict modeSlideshowi nisu pronađeniBroj slice-evaBroj kockiVidljivostPauzirajte slideshow kada prelazite mišem preko slider-a, zatim nastavlja kada odmaknete miš.Prethodni tekstPrint CSSPrint JSKišaNaizmjeničnoNasumičan poredak slide-ovObrnuti smjerIzmjenite smjer animacije.SEOSpremiOdaberi Slider:Odaberi slideshow za umetanje u postOdaberite smjer slide-aPostavite brzinu izbljeljivanja natpisaPodesite brzinu animacije, u milisekundamaPostavite tekst za "Sljedeći" smjer stavkePostavite tekst za "Prethodni" smjer stavkePostavkeShortcodePokaži Natrag/Nazad strijelePokaži navigacijske bullete slide-aSlice goreSlideOdgoda slide-aSmjer slide-aEfekt izmjene slide-aVisina SlideshowaŠirina SlideshowaSmart Crop omogućava vašim slide-ovima da su prilagođeni istoj veličini za prikaz.Odredite bilokoji prilagođen CSS Class koji želite dodati u slider wrapperOdgoda kockeRavnoRazvuci slideshow izgled da se uklapa sa glavnim container-om.SwirlNaslovNaslov:Automatsko mijenjanje slide-ovaURLOdznačite ovo ako biste željeli koristiti vlastiti CSSOdznačite ovo ako biste željeli koristiti vlastiti JavascriptVertikalnoŠirinapxlanguages/ml-slider-ja-metaslider-admin-script.json000064400000070566151213255460016426 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["キャプション"],"New Window":["新規ウインドウ"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["注意: この設定は上級の開発者のみ使用できます。もし確信が持てなければチェックしたままにしてください。"],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["タイトル"],"Created":[""],"Shortcode":["ショートコード"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["スライドを追加"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["保存"],"Settings":["設定"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["画像タイトルテキスト"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["画像の代替文字列"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["タイトル:"],"Select Slider:":["スライダーを選択:"],"No slideshows found":["スライドショーがありません"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["画像スライド"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["一般"],"SEO":["SEO"],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["画像"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["幅"],"Slideshow width":["スライドショー幅"],"px":["px"],"Height":["高さ"],"Slideshow height":["スライドショーの高さ"],"Effect":["効果"],"Slide transition effect":["スライド遷移エフェクト"],"Random":["ランダム"],"Swirl":["回転"],"Rain":["レイン"],"Straight":["ストレート"],"Slice Down":[""],"Slice Up":["スライスアップ"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["フェード"],"Fold":["左から短冊ワイプ"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["角切りランダムワイプ"],"Box Rain":["右下へ角切りワイプ"],"Box Rain Reverse":["左上へ角切りワイプ"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["左上へ角切りワイプ (サイズ増)"],"Slide":["スライド"],"Arrows":["矢印"],"Show the previous/next arrows":["前後への矢印を表示する"],"Navigation":["ナビゲーション"],"Show the slide navigation bullets":["ナビゲーション用の点を表示する"],"Hidden":["非表示"],"Dots":["点"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["高度な設定"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["親コンテナいっぱいに伸縮"],"Center align":["中央揃え"],"Center align the slideshow":["スライドショーを中央揃え"],"Auto play":["自動再生"],"Transition between slides automatically":["自動トラジション"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["自動切り抜きを使うと、レスポンシブスライドがスライドショーのサイズに合った比率で切り抜きされます"],"Carousel mode":["カルーセル・モード"],"Display multiple slides at once. Slideshow output will be 100% wide.":["100%幅でスライドショーを表示"],"Carousel margin":["カルーセルマージン"],"Pixel margin between slides in carousel.":["カルーセル内のスライドの間隔 (px) 。"],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["スライドの順番をランダムにする"],"Hover pause":["停止ボタン表示"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["スライダーをポイントしたときにスライド ショーを一時停止し、ホバリングを再開する。"],"Reverse":["逆戻り"],"Reverse the animation direction":["アニメーション方向反転"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["スライドの遅延"],"How long to display each slide, in milliseconds":["各画像の表示時間 (ミリ秒)"],"Animation speed":["アニメーションの速度"],"Set the speed of animations, in milliseconds":["ミリ秒単位でアニメーションの速度を設定します。"],"Number of slices":["スライスの数"],"Number of squares":["スクエアの数"],"Slide direction":["スライドの方向"],"Select the sliding direction":["スライドの方向を選択"],"Horizontal":["水平方向"],"Vertical":["垂直方向"],"Easing":["イージング"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["前のテキスト"],"Set the text for the 'previous' direction item":["「前へ」 項目のテキストを設定します。"],"Next text":["次のテキスト"],"Set the text for the 'next' direction item":["「次へ」項目のテキストの設定します。"],"Square delay":["スクエアの表示遅延"],"Delay between squares in ms":["スクエアの遅延速度を秒単位で設定する"],"Opacity":["不透明度"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["見出しのスピード"],"Set the fade in speed of the caption":["見出しのフェードイン速度を設定"],"Developer options":["開発用オプション"],"CSS classes":["CSS クラス"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["スライダーラッパーに追加したいカスタム CSS クラスを指定します。"],"Print CSS":["CSS を出力"],"Uncheck this is you would like to include your own CSS":["独自の CSS を含めたい場合はチェックを外してください"],"Print JS":["JS を出力"],"Uncheck this is you would like to include your own Javascript":["独自の Javascript を含めたい場合はチェックを外してください"],"No conflict mode":["競合モードなし"],"Delay adding the flexslider class to the slideshow":["フレックススライダー化を遅延する"],"Delete slideshow":[""],"Select slideshow to insert into post":["投稿に挿入するスライドショーを選択"],"Add slideshow":[""],"Choose slideshow":["スライドショーを選択"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["ドキュメンテーション"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["よろしいですか ?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-ja.po000064400000164351151213255460011350 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:58-0600\n"
"Last-Translator: Naoko Takano <info@nao-net.com>\n"
"Language-Team: \n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "キャプション"

#: admin/Pages.php:75
msgid "New Window"
msgstr "新規ウインドウ"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"注意: この設定は上級の開発者のみ使用できます。もし確信が持てなければチェック"
"したままにしてください。"

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "タイトル"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "ショートコード"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "スライドを追加"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "保存"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "設定"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "画像タイトルテキスト"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "画像の代替文字列"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "タイトル:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "スライダーを選択:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "スライドショーがありません"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "画像スライド"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "一般"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "画像"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "幅"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "スライドショー幅"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "px"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "高さ"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "スライドショーの高さ"

#: ml-slider.php:1688
msgid "Effect"
msgstr "効果"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "スライド遷移エフェクト"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "ランダム"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "回転"

#: ml-slider.php:1702
msgid "Rain"
msgstr "レイン"

#: ml-slider.php:1706
msgid "Straight"
msgstr "ストレート"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "スライスアップ"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "フェード"

#: ml-slider.php:1734
msgid "Fold"
msgstr "左から短冊ワイプ"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "角切りランダムワイプ"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "右下へ角切りワイプ"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "左上へ角切りワイプ"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "左上へ角切りワイプ (サイズ増)"

#: ml-slider.php:1766
msgid "Slide"
msgstr "スライド"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "矢印"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "前後への矢印を表示する"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "ナビゲーション"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "ナビゲーション用の点を表示する"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "非表示"

#: ml-slider.php:1795
msgid "Dots"
msgstr "点"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "高度な設定"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "親コンテナいっぱいに伸縮"

#: ml-slider.php:1888
msgid "Center align"
msgstr "中央揃え"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "スライドショーを中央揃え"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "自動再生"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "自動トラジション"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"自動切り抜きを使うと、レスポンシブスライドがスライドショーのサイズに合った比"
"率で切り抜きされます"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "カルーセル・モード"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr "100%幅でスライドショーを表示"

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "カルーセルマージン"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "カルーセル内のスライドの間隔 (px) 。"

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "スライドの順番をランダムにする"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "停止ボタン表示"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"スライダーをポイントしたときにスライド ショーを一時停止し、ホバリングを再開す"
"る。"

#: ml-slider.php:2022
msgid "Reverse"
msgstr "逆戻り"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "アニメーション方向反転"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "スライドの遅延"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "各画像の表示時間 (ミリ秒)"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "アニメーションの速度"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "ミリ秒単位でアニメーションの速度を設定します。"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "スライスの数"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "スクエアの数"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "スライドの方向"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "スライドの方向を選択"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "水平方向"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "垂直方向"

#: ml-slider.php:2159
msgid "Easing"
msgstr "イージング"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "前のテキスト"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "「前へ」 項目のテキストを設定します。"

#: ml-slider.php:2184
msgid "Next text"
msgstr "次のテキスト"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "「次へ」項目のテキストの設定します。"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "スクエアの表示遅延"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "スクエアの遅延速度を秒単位で設定する"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "不透明度"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "見出しのスピード"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "見出しのフェードイン速度を設定"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "開発用オプション"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS クラス"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr "スライダーラッパーに追加したいカスタム CSS クラスを指定します。"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "CSS を出力"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "独自の CSS を含めたい場合はチェックを外してください"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "JS を出力"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "独自の Javascript を含めたい場合はチェックを外してください"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "競合モードなし"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "フレックススライダー化を遅延する"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "投稿に挿入するスライドショーを選択"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "スライドショーを選択"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "ドキュメンテーション"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "よろしいですか ?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-he_IL-metaslider-admin-script.json000064400000070752151213255460017011 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"he"},"MetaSlider":["מצגת שקופיות"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["כתובת URL"],"Caption":["כותרת"],"New Window":["חלון חדש"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["זהירות: הגדרה זו היא למפתחים מתקדמים בלבד. אם אינך בטוח, השאר אותה מסומנת."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["כותרת"],"Created":[""],"Shortcode":["קיצור קוד"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["הוספת תמונה"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["שמור"],"Settings":["הגדרות"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["טקסט כותרת התמונה"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["טקסט חלופי לתמונה"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["כותרת:"],"Select Slider:":["בחירת מצגת:"],"No slideshows found":["לא נמצאו מצגות"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["שיקופית תמונה"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["כללי"],"SEO":["SEO"],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["תמונה"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["רוחב"],"Slideshow width":["רוחב מצגת השקופיות"],"px":["פיקסלים"],"Height":["גובה"],"Slideshow height":["גובה מצגת השקופיות"],"Effect":["אפקט"],"Slide transition effect":["אפקט מעבר שקופית"],"Random":["אקראי"],"Swirl":["סחרור"],"Rain":["גשם"],"Straight":["ישר"],"Slice Down":[""],"Slice Up":["פריסה מעלה"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["עמעום"],"Fold":["קפל"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["תיבה אקראית"],"Box Rain":["תיבת גשם"],"Box Rain Reverse":["תיבת גשם לאחור"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["תיבת גשם צמיחה לאחור"],"Slide":["תמונה"],"Arrows":["חצים"],"Show the previous/next arrows":["הצג חצים"],"Navigation":["ניווט"],"Show the slide navigation bullets":["הצג עת הכדורים לניווט המצגת"],"Hidden":["מוסתר"],"Dots":["כדורים"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["הגדרות מתקדמות"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["מתח את פלט מצגת השקופיות למילוי מיכל האב."],"Center align":["מרכוז"],"Center align the slideshow":["מרכז את המצגת"],"Auto play":["הפעל אוטומטית"],"Transition between slides automatically":["מעבר אוטומטי בין שקופיות"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["חיתוך חכם מבטיח חיתוך של השקופיות למידות שקבעת למצגת."],"Carousel mode":["מצב קרוסלה"],"Display multiple slides at once. Slideshow output will be 100% wide.":["הצג מספר שקופיות בו זמנית. פלט מצגת השקופיות יהיה ברוחב של 100%."],"Carousel margin":["שוליים של קרוסלה"],"Pixel margin between slides in carousel.":["המרווח בפיקסלים בין שקופיות בקרוסלה."],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["סדר את התמונות באופן אקראי"],"Hover pause":["הפסקה בריחוף עכבר"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["עצור את הצגת השקופיות בעת ריחוף עכבר והמשך לאחר שכבר לא ירחף."],"Reverse":["אחורה"],"Reverse the animation direction":["הפוך את כיוון האנימציה"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["השהיית שיקופית"],"How long to display each slide, in milliseconds":["כמה זמן להציג כל שקופית, באלפיות השניה"],"Animation speed":["מהירות האנימציה"],"Set the speed of animations, in milliseconds":["קבע את מהירות האנימציה באלפיות השניה"],"Number of slices":["מספר הפרוסות"],"Number of squares":["מספר הריבועים"],"Slide direction":["כיוון ההחלקה"],"Select the sliding direction":["בחירת כיוון ההחלקה"],"Horizontal":["אופקית"],"Vertical":["אנכית"],"Easing":["החלקה"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["טקסט הקודם"],"Set the text for the 'previous' direction item":["קבע את הטקסט לפריט 'הקודם'"],"Next text":["טקסט הבא"],"Set the text for the 'next' direction item":["קבע את הטקסט לפריט 'הבא'"],"Square delay":["השהית ריבוע"],"Delay between squares in ms":["השהייה בין ריבועים באלפיות השניה"],"Opacity":["שקיפות"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["מהירות כותרת"],"Set the fade in speed of the caption":["קבע את מהירות העמעום בכותרת"],"Developer options":["אפשרויות מפתח"],"CSS classes":["מחלקות CSS"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["ציין מחלקות CSS שתרצה להוסיף למעטפת של מצגת השקופיות"],"Print CSS":["הדפס CSS"],"Uncheck this is you would like to include your own CSS":["בטל את הסימון כאן אם אתה רוצה לכלול עיצוב CSS משלך"],"Print JS":["הדפס JS"],"Uncheck this is you would like to include your own Javascript":["בטל את הסימון כאן אם אתה רוצה לכלול JS משלך"],"No conflict mode":["מצב ללא קונפליקט"],"Delay adding the flexslider class to the slideshow":["הוספת השהייה במחלקת מצגת גמישה למצגת השקופיות שלך"],"Delete slideshow":[""],"Select slideshow to insert into post":["בחירת המצגת להוספה לפוסט"],"Add slideshow":[""],"Choose slideshow":["בחר מצגת"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["תיעוד"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["בטוח?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-fr_FR-metaslider-admin-script.json000064400000173214151213255460017024 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=n > 1;","lang":"fr"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":["https://www.metaslider.com"],"MetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site.":["MetaSlider vous permet de créer un magnifique diaporama, un carrousel ou une galerie sur votre site WordPress."],"Spice up your site with animated layers and video slides with MetaSlider Pro":["Ajoutez de la vie à votre site grâce à des couches animées et des diapositives vidéo avec MetaSlider Pro."],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":["Augmentez vos revenus et vos conversions grâce aux diapositives vidéo et bien d’autres fonctionnalités de MetaSlider Pro"],"Can you translate? Want to improve MetaSlider for speakers of your language?":["Pouvez-vous traduire ? Vous souhaitez améliorer MetaSlider pour les internautes parlant votre langue ?"],"weeks":["semaines"],"Let's Start &rarr;":["Commençons &rarr;"],"Find out more &rarr;":["En savoir plus →"],"Get MetaSlider Pro &rarr;":["Obtenez MetaSlider Pro &rarr;"],"Sign up &rarr;":["S’inscrire &rarr;"],"Go there &rarr;":["Allez-y &rarr;"],"Read more":["En savoir plus"],"The security check failed. Please refresh the page and try again.":["Le contrôle de sécurité a échoué. Veuillez recharger la page et réessayer."],"Access denied. Sorry, you do not have permission to complete this task.":["Accès refusé. Désolé, vous n’avez pas le droit de terminer cette tâche."],"Bad request":["Requête incorrecte"],"This item does not exist. Please refresh the page and try again.":["Cet élément n’existe pas. Veuillez recharger la page et réessayer."],"The option was successfully updated":["L’option a été mise à jour avec succès"],"The requested data does not exist.":["Les données demandées n’existent pas."],"The attempt to update the option failed.":["La tentative de mise à jour de l’option a échoué."],"URL":["URL"],"Caption":["Légende"],"New Window":["Nouvelle fenêtre"],"Please confirm that you would like to delete this slideshow.":["Veuillez confirmer que vous souhaitez supprimer ce diaporama."],"Undo":["Annuler"],"Slide restored":["Diapositive restaurée"],"Slide deleted":["Diapositive supprimée"],"Success":["Succès"],"Item was copied to your clipboard":["L’élément a été copié dans votre presse-papiers"],"Press to undo":["Cliquez pour annuler"],"Select replacement image":["Sélectionnez l’image de remplacement"],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Attention : ce réglage est uniquement réservé aux développeurs. Si vous n’êtes pas sur(e), laissez-le coché."],"The request format was not valid.":["Le format de la demande n’était pas valide."],"This slideshow is no longer available.":["Ce diaporama n’est plus disponible."],"Nothing to import.":["Il y a rien à importer."],"This was not a slideshow, so we cannot delete it.":["Ce n’était pas un diaporama, nous ne pouvons donc pas le supprimer."],"This was not a slideshow, so we cannot update the setting.":["Il ne s’agissait pas d’un diaporama, nous ne pouvons donc pas mettre à jour le réglage."],"The title cannot be empty.":["Le titre ne peut pas être vide."],"The field (%s) cannot be empty":["Le champ (%s) ne peut pas être vide"],"Maximum Number of Custom Field in Post Feed Sliders":["Nombre maximum de champs personnalisés dans les diaporamas du flux de publications"],"Import slug not found":["Le slug d’importation n’a pas été trouvé"],"Import data could not be processed":["Les données d’importation n’ont pas pu être traitées"],"We could not find any images to import.":["Nous n’avons pu trouver aucune image à importer."],"New Slideshow":["Nouveau diaporama"],"Previous":["Précédent"],"Next":["Suivante"],"No themes found.":["Aucun thème trouvé."],"We removed your selected theme as it could not be found. Was the folder deleted?":["Nous avons retiré le thème que vous avez sélectionné car il n’a pu être trouvé. Son dossier a-t-il est supprimé ?"],"You don't have any slideshows yet. Click %shere%s to create a new slideshow.":["Vous n’avez pas encore de diaporama. Cliquez sur %sici%s pour créer un nouveau diaporama."],"Published":["Publié"],"Trash":["Corbeille"],"Preview":["Prévisualisation"],"Title":["Titre"],"Created":["Créé"],"Shortcode":["Code court"],"Restore":["Restaurer"],"Delete Permanently":["Supprimer définitivement"],"Click to copy shortcode.":["Cliquez pour copier le code court"],"Edit":["Modifier"],"Logo":["Logo"],"Dismiss":["Ignorer"],"Slideshows":["Diaporamas"],"Add New":["Ajouter un nouveau"],"Search":["Rechercher"],"Browser upgrade required":["Mise à niveau du navigateur nécessaire"],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":["Il semble que vous utilisiez %s. Bien que MetaSlider prenne en charge %s sur l’interface publique où les internautes voient vos diaporamas, certains des outils que nous fournissons ici nécessitent un navigateur moderne."],"Microsoft Internet Explorer 11":["Microsoft Internet Explorer 11"],"IE11":["IE11"],"Update Internet Explorer":["Mettez à jour Internet Explorer"],"Main Options":["Options principales"],"Width":["Largeur"],"Slideshow width":["Largeur du diaporama"],"px":["px"],"Height":["Hauteur"],"Slideshow height":["Hauteur du diaporama"],"Transition Effect":["Effet de transition"],"This animation is used when changing slides.":["Cette animation est utilisée lors du changement de diapositive."],"Random":["Aléatoire"],"Swirl":["Tourbillon"],"Rain":["Pluie"],"Straight":["Tout droit"],"Slice Down":["Balayage bas"],"Slice Up":["Balayage haut"],"Slice Up Left":["Balayage de haut à gauche"],"Slide Up Down":["Glissement de haut en bas"],"Slice Up Down Left":["Balayage de haut en bas à gauche"],"Fade":["Fondu"],"Fold":["Plier"],"Slide in Right":["Glissement vers la droite"],"Slide in Left":["Glissement vers la gauche"],"Box Random":["Boite aléatoire"],"Box Rain":["Mosaïque"],"Box Rain Reverse":["Mosaïque inversée"],"Box Rain Grow":["Boîte à pluie"],"Box Rain Grow Reverse":["Mosaïque inversée"],"Slide":["Défilement"],"Arrows":["Flèches"],"Show the previous/next arrows":["Afficher les flèches précedent/suivant"],"Navigation":["Navigation"],"Show the slide navigation bullets":["Afficher les puces de navigation"],"Hidden":["Masqué"],"Dots":["Points"],"Thumbnail":["Miniature"],"Filmstrip":["Bande de film"],"100% width":["100% de largeur"],"Stretch the slideshow output to fill it's parent container":["Étirer le diaporama pour qu’il remplisse la largeur de son contenant"],"Theme":["Thème"],"Mobile Options":["Options mobile"],"Hide arrows on":["Masquer les flèches sur"],"When enabled this setting will hide the arrows on screen widths less than %spx":["Lorsqu’il est activé, ce réglage masque les flèches lorsque la largeur de l’écran est inférieure à %spx."],"When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx":["Lorsqu’il est activé, ce réglage masque les flèches sur les écrans d’une largeur comprise entre %1$spx et %2$spx."],"When enabled this setting will hide the arrows on screen widths equal to or greater than %spx":["Lorsqu’il est activé, ce réglage masque les flèches lorsque la largeur de l’écran est égale ou supérieure à %spx."],"Hide navigation on":["Masquer la navigation sur"],"When enabled this setting will hide the navigation on screen widths less than %spx":["Lorsqu’il est activé, ce réglage masque la navigation lorsque la largeur de l’écran est inférieure à %spx."],"When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx":["Lorsqu’il est activé, ce réglage masque la navigation sur les écrans d’une largeur comprise entre %1$spx et %2$spx."],"When enabled this setting will hide the navigation on screen widths equal to or greater than %spx":["Lorsqu’il est activé, ce réglage masque la navigation lorsque la largeur de l’écran est égale ou supérieure à %spx."],"Advanced Options":["Réglages avancés"],"Center align":["Alignement central"],"Center align the slideshow in the available space on your website.":["Aligner le diaporama au centre de l’espace disponible sur votre site."],"Auto play":["Lecture auto"],"Transition between slides automatically":["Transition automatique entre les diapositives"],"Loop":["Boucle"],"If you choose \"Continuously\", the slides will loop infinitely. If you choose \"Stop on first slide\", the slideshow will stop on the first slide after showing all the items. If you choose \"Stop on last slide\", the slides will stop on the last slide.":["Si vous choisissez « En continu », les diapositives tourneront en boucle à l’infini. Si vous choisissez « Arrêter à la première diapositive », le diaporama s’arrêtera à la première diapositive après avoir montré tous les éléments. Si vous choisissez « Arrêter à la dernière diapositive », le diaporama s’arrêtera à la dernière diapositive."],"Continuously":["En continu"],"Stop on Last Slide":["Arrêt sur la dernière diapositive"],"Stop on First Slide":["Arrêt sur la première diapositive"],"Image Crop":["Recadrage de l’image"],"Smart Crop":["Recadrage intelligent"],"Standard":["Standard"],"Disabled":["Désactivé"],"Disabled (Smart Pad)":["Désactivé (Smart Pad)"],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Cadrage intelligent veille à ce que les diapositives « responsives » soient recadrés à un ratio qui aboutit à une taille compatible avec celle du diaporama"],"Smooth Height":["Hauteur douce"],"Allow navigation to follow the slide's height smoothly":["Autoriser la navigation à suivre la hauteur de la diapositive en douceur"],"Carousel mode":["Mode carrousel"],"Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect.":["Affichez plusieurs diapositives à la fois. La largeur du diaporama sera de 100 %. Le mode carrousel n’utilise que l’effet « Glisser »."],"Loop Continuously (Beta)":["Boucle infinie (beta)"],"Infinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.":["Boucle infinie de diapositives lorsque le mode « Carrousel » est activé. Cette option désactive les flèches et la navigation."],"Carousel margin":["Marge du carrousel"],"Pixel margin between slides in carousel.":["Marge en pixels entre les diapositives dans le carrousel."],"Fade in":["Fondu en avant"],"This adds an animation when the slideshow loads. It only uses the \"Fade\" transition effect":["Cette fonction ajoute une animation au chargement du diaporama. Il n’utilise que l’effet de transition « Fondu »."],"Randomise the order of the slides":["Randomiser l’ordre des diapositives"],"Hover pause":["Pause au survol"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Mettre le diaporama en pause au survol, puis reprendre lorsqu’il ne l’est plus."],"Reverse":["Inverser"],"Reverse the animation direction":["Inverser le sens de l’animation"],"Touch Swipe":["Toucher balayage"],"Allow touch swipe navigation of the slider on touch-enabled devices":["Permettre la navigation par balayage tactile du diaporama sur les appareils dotés d’un écran tactile"],"Slide delay":["Délai entre les diapositives"],"How long to display each slide, in milliseconds":["Durée d’affichage de chaque diapositive, en millisecondes"],"Transition Speed":["Vitesse d’animation"],"Choose the speed of the animation in milliseconds. You can select the animation in the \"Effect\" field.":["Choisir la vitesse de l’animation en millisecondes. Vous pouvez sélectionner l’animation dans le champ « Effet »."],"Number of slices":["Nombre de tranches"],"Number of squares":["Nombre de carrés"],"Slide direction":["Sens du défilement"],"Select the direction that slides will move. Vertical will not work if \"Carousel mode\" is enabled or \"Effect\" is set to \"Fade\".":["Sélectionner la direction dans laquelle les diapositives se déplaceront. Le mode vertical ne fonctionne pas si le « Mode carrousel » est activé ou si l’« Effet » est réglé sur « Fondu »."],"Horizontal":["Horizontal"],"Vertical":["Vertical"],"Easing":["Easing"],"Easing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the 'Slide' Effect.":["L’assouplissement ajoute une accélération et une décélération progressives aux transitions de diapositives, plutôt que des démarrages et des arrêts brusques. L’assouplissement n’utilise que l’effet « Diapositive »."],"Previous text":["Précédent"],"Set the text for the 'previous' direction item":["Définir le texte pour l’élément de direction «précédent»"],"Next text":["Suivant"],"Set the text for the 'next' direction item":["Définir le texte pour l’élément de direction « suivant »"],"Square delay":["Délai entre les carrés"],"Delay between squares in ms":["Délai entre les carrés en ms"],"Opacity":["Opacité"],"Opacity of title and navigation, between 0 and 1":["Opacité du titre et de la navigation, entre 0 et 1"],"Caption speed":["Vitesse de la légende"],"Set the fade in speed of the caption":["Réglez la vitesse d’apparition de la légende"],"Accessibility Options":["Options d’accessibilité"],"Keyboard Controls":["Contrôles au clavier"],"Use arrow keys to get to the next slide.":["Utiliser les touches fléchées pour passer à la diapositive suivante."],"ARIA Live":["Aria live"],"If Autoplay is enabled, this causes screen readers to announce that the slides are changing.":["Si la lecture automatique est activée, les lecteurs d’écran annoncent que les diapositives sont en train de changer."],"Tabindex for navigation":["Tabindex pour la navigation"],"This helps make the slideshow navigation more accessible.":["Cela permet de rendre la navigation du diaporama plus accessible."],"Developer Options":["Options pour les développeurs"],"CSS classes":["Classes CSS"],"Enter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.":["Saisissez les classes CSS personnalisées à appliquer au conteneur du diaporama. Séparez plusieurs classes par un espace."],"Print CSS":["Imprimer CSS"],"Uncheck this if you would like to include your own CSS":["Décochez ceci si vous souhaitez inclure votre propre CSS"],"Print JS":["Imprimer JS"],"Uncheck this if you would like to include your own Javascript":["Décochez ceci si vous souhaitez inclure votre propre Javascript"],"No conflict mode":["Mode sans conflit"],"Delay adding the flexslider class to the slideshow":["Retard ajouté à la classe flexslider au diaporama"],"Trashed slides":["Diapositives mises à la corbeille"],"View trashed slides":["Voir les diapositives de la corbeille"],"Thumbnail (Pro)":["Miniature (Pro)"],"Filmstrip (Pro)":["Bande de film (Pro)"],"Add a new slide":["Ajouter une nouvelle diapositive"],"Add Slide":["Ajouter une diapositive"],"Save & open the preview":["Enregistrer et afficher l’aperçu"],"Add a new slideshow":["Ajouter un diaporama"],"New":["Nouveau"],"Duplicate this slideshow":["Dupliquer ce diaporama"],"Duplicate":["Dupliquer"],"Adding custom CSS is a MetaSlider Pro feature. Click to learn more.":["L’ajout de CSS personnalisés est une fonctionnalité de MetaSlider Pro. Cliquer pour en savoir plus."],"Add CSS":["Ajouter CSS"],"Save slideshow":["Enregistrer le diaporama"],"Save":["Enregistrer"],"Return to Published Slides":["Retourner aux diapositives publiées"],"Settings":["Paramètres"],"Help Center":["Centre d’aide"],"Import":["Importer"],"Export":["Exporter"],"Carousel Slideshow":["Diaporama carrousel"],"Carousel Slideshow with Captions":["Diaporama carrousel avec légendes"],"Thanks for using MetaSlider, the WordPress slideshow plugin":["Merci d’utiliser MetaSlider, l’extension de diaporama pour WordPress"],"Create a slideshow with your images":["Créez un diaporama avec vos images"],"Choose your own images to start a new slideshow.":["Choisissez vos propres images pour lancer un nouveau diaporama."],"Open Media Library":["Abrir la médiathèque"],"Create a slideshow with sample images":["Créer un diaporama avec des exemples d’images"],"Choose one of our demos with sample images, or a blank slideshow with no images.":["Choisissez l’une de nos démonstrations avec des exemples d’images ou un diaporama vide sans images."],"Blank Slideshow":["Diaporama vide"],"Image Slideshow":["Diaporama d’images"],"Create a Slideshow":["Créer un diaporama"],"Comparison Chart":["Graphique de comparaison"],"Free":["Gratuite"],"Pro":["Pro"],"Installed":["Installé"],"Upgrade now":["Mettre à niveau maintenant"],"Create unlimited slideshows":["Crée des diaporamas illimités"],"Create and manage as many slideshows as you need.":["Créez et gérez autant de diaporamas que vous le souhaitez."],"Regular updates":["Mises à jour régulières"],"We keep MetaSlider compatible with the latest versions of WordPress.":["Nous gardons MetaSlider compatible avec les dernières versions de WordPress."],"Intelligent image cropping":["Recadrage intelligent des images"],"Unique Smart Crop functionality ensures your slides are perfectly resized.":["La fonctionnalité unique de recadrage intelligent garantit que vos diapositives sont parfaitement redimensionnées."],"Thumbnail navigation":["Navigation par vignette"],"Allow users to browse your slideshows using thumbnail navigation.":["Permettez aux internautes de naviguer dans vos diaporamas grâce aux miniatures."],"Add YouTube and Vimeo slides":["Ajouter des diapositives YouTube et Vimeo"],"Easily include responsive high definition YouTube and Vimeo videos.":["Intégrez des vidéos haute définition responsive de YouTube et Vimeo."],"Add local video slides":["Ajouter des diapositives de vidéos locales"],"Create slideshows with videos from your WordPress media library.":["Créez des diaporamas avec les vidéos de votre médiathèque de WordPress."],"Add external video slides":["Ajouter des diapositives de vidéos externes"],"Create slideshows with external videos.":["Créez des diaporamas avec des vidéos externes."],"Add HTML overlay slides":["Ajouter des diapositives HTML en superposition"],"Create completely customized HTML slides using the inline editor.":["Créez des diapositives HTML entièrement personnalisées à l’aide de l’éditeur en ligne."],"Add slide layers":["Ajouter des couches de diapositives"],"Add layers to your slides with over 50 available transition effects.":["Ajoutez des couches à vos diapositives grâce à plus de 50 effets de transition disponibles."],"Add Post Feed slides":["Ajouter diapositive de flux de publications"],"Easily build slides based on your WordPress posts.":["Créez facilement des diapositives basées sur vos publications WordPress."],"Add custom CSS":["Ajouter CSS personnalisé"],"Customize your slideshows to fit with your website.":["Personnalisez vos diaporamas pour les adapter a votre site."],"Schedule your slides":["Planifiez vos diapositives"],"Add a start/end date to individual slides.":["Ajoutez une date de début/fin à des diapositives individuelles."],"Toggle your slide's visibility":["Ouvrir/fermer la visibilité de votre diapositive"],"Hide any slide, without having to delete them.":["Masquez n’importe quelle diapositive, sans avoir à la supprimer."],"Premium support":["Support premium"],"Have your specific queries addressed directly by our experts.":["Faites traiter vos questions spécifiques directement par nos experts,"],"Crop Position":["Position du recadrage"],"Choose how images are cropped if their size doesn't exactly match the size of your slideshow. This works if \"Smart Crop\" is selected in the \"Image Crop\" settings.":["Choisir la façon dont les images sont recadrées si leur taille ne correspond pas exactement à celle de votre diaporama. Cette fonction fonctionne si l’option « Recadrage intelligent » est sélectionnée dans les réglages « Recadrage de l’image »."],"Top Left":["En haut à droite"],"Top Center":["En haut centré"],"Top Right":["En haut à droite"],"Center Left":["Centré à gauche"],"Center Center":["Centré au centre"],"Center Right":["Centré à droite"],"Bottom Left":["En bas à gauche"],"Bottom Center":["En bas centré"],"Bottom Right":["En bas à droite"],"Image Link URL":["URL du lien de l’image"],"When visitors click on your image slide, they will be taken to this URL.":["Lorsque les internautes cliquent sur votre diapositive d’image, ils sont redirigés vers cette URL."],"New window":["Nouvelle fenêtre"],"Open link in a new window":["Ouvrir le lien dans une nouvelle fenêtre"],"Image Link Alt Text":["Texte alternatif du lien de l’image"],"This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended.":["Ce texte est utilisé par les moteurs de recherche et les visiteurs/visiteuses utilisant des lecteurs d’écran. Il est fortement recommandé d’ajouter un texte alternatif pour les liens."],"Hide slide on:":["Masquer la diapositive sur :"],"When enabled this setting will hide the slide on screen widths equal to or greater than %spx":["Lorsqu’il est activé, ce réglage masque la diapositive lorsque la largeur de l’écran est égale ou supérieure à %spx."],"When enabled this setting will hide the slide on screen widths of %1$spx to %2$spx":["Lorsqu’il est activé, ce réglage masque la diapositive sur les écrans d’une largeur comprise entre %1$spx et %2$spx."],"Hide caption on:":["Masquer la légende sur :"],"When enabled this setting will hide the caption on screen widths equal to or greater than %spx":["Lorsqu’il est activé, ce réglage masque la légende lorsque la largeur de l’écran est égale ou supérieure à %spx."],"When enabled this setting will hide the caption on screen widths of %1$spx to %2$spx":["Lorsqu’il est activé, ce réglage masque la légende sur les écrans d’une largeur comprise entre %1$spx et %2$spx."],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":["Mettez à jour ou activez votre MetaSlider Pro maintenant pour ajouter une option de date de début/fin à vos diapositives"],"Get MetaSlider Pro":["Obtenir MetaSlider Pro"],"With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day.":["Avec MetaSlider Pro, vous pouvez programmer vos diapositives. Vous pouvez choisir de montrer vos diapositives à des dates, jours de la semaine ou heures de la journée spécifiques."],"Image Title Text":["Titre de l’image"],"Visitors will see this text if they hover over your image slide. Adding Title text is useful but not required.":["Les internautes verront ce texte s’ils survolent votre diapositive d’image. L’ajout d’un texte de titre est utile mais non obligatoire."],"Enable this to inherit the image title":["Activez cette option pour hériter du titre de l’image"],"Use the image title":["Utilisez le titre de l’image"],"Image Alt Text":["Texte alternatif de l’image"],"This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.":["Ce texte est utilisé par les moteurs de recherche et les internautes utilisant des lecteurs d’écran. L’ajout d’un texte alternatif est fortement recommandé."],"Enable this to inherit the image alt text":["Activez cette option pour hériter du texte alt de l’image"],"Use the image alt text":["Utiliser le texte de la balise alt de l’image"],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":["Il est possible que vos réglages ne soient pas enregistrés correctement en raison d’une configuration de votre serveur. %s est actuellement défini sur %s, mais nous recommandons une valeur de 4000. Veuillez consulter %s pour plus d’informations. Le fichier php.ini est chargé à partir d’ici : %s"],"this article":["cet article"],"Warning:":["Avertissement :"],"Title:":["Titre :"],"Select Slider:":["Sélectionnez un diaporama :"],"No slideshows found":["Aucun diaporama trouvé"],"The requested image does not exist. Please try again.":["L’image demandée n’existe pas. Veuillez réessayer."],"The image was successfully updated.":["L’;image a bien été mise jour."],"There was an error updating the image. Please try again":["Une erreur est survenue pendant la mise à jour de l’image. Veuillez réessayer"],"There was an error while updating the database. Please try again.":["Une erreur est survenue pendant la mise à jour de la base de données. Veuillez réessayer."],"Trash slide":["Mettre à la corbeille la diapositive"],"Update slide image":["Mettre à jour l’image de diapositive"],"Duplicate slide":["Dupliquer diaporama"],"This isn't a valid image format. Please try again.":["Ce format d’image n’est pas valide. Veuillez réessayer."],"Access denied":["Accès refusé"],"Image Slide":["Image de la diapo"],"Warning: The image data does not exist. Please re-upload the image.":["Avertissement : les données d’image n’existent pas. Veuillez re-téléverser l’image."],"General":["Général"],"Link":["Lien"],"SEO":["SEO"],"Mobile":["Mobile"],"Crop":["Recadrage"],"Schedule":["Planifier"],"Click the \"Add Slide\" button to create your slideshow":["Cliquer sur le bouton « Ajouter une diapositive » pour créer votre diaporama."],"Edit Slideshow":["Modifier le diaporama"],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":["MetaSlider Pro est installé mais n’est pas à jour. Vous pouvez le mettre à jour %sici%s. En savoir plus sur cet avis %sici%s"],"Home":["Accueil"],"Quick Start":["Démarrage rapide"],"Settings & Help":["Réglages & aide"],"Upgrade to Pro":["Passer en version Pro"],"All Slideshows":["Tous les diaporamas"],"Create Slideshow":["Créer un diaporama"],"Image":["Image"],"Add to slideshow":["Ajouter au diaporama"],"Post Feed":["Flux de publications"],"Vimeo":["Vimeo"],"YouTube":["YouTube"],"Layer Slide":["Diapositive de couches"],"External URL":["URL externe"],"Local Video":["Vidéo locale"],"External Video":["Vidéo externe"],"The slide was successfully restored":["La diapositive a bien été restaurée"],"The attempt to restore the slide failed.":["La tentative de restauration de la diapositive a échoué."],"The slide was successfully trashed":["La diapositive a bien été mise à la corbeille"],"The slide was permanently deleted":["Cette diapositive a été définitivement supprimée"],"Trashed Slides":["Diapositives mises à la corbeille"],"Loading... Please wait!":["Chargement... Veuillez patienter !"],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":["Vous visualisez des diapositives qui ont été mises à la corbeille et qui seront automatiquement supprimées dans %s jours."],"Move slideshow to trash":["Mettre le diaporama à la corbeille"],"Add slideshow":["Ajouter un diaporama"],"Choose slideshow":["Sélectionner un diaporama"],"Insert slideshow":["Insérer un diaporama"],"Create slides by adding text, videos and more to your images":["Créez des diapositives en ajoutant du texte, des vidéos et d’autres éléments à vos images"],"With Layer slides, you can create beautiful, stylish layers of different elements.":["Avec les diapositives de couches, vous pouvez créer de belles couches élégantes de différents éléments."],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":["Vous commencez par une image, puis vous pouvez ajouter du texte, de la vidéo, des couleurs, des animations, d’autres images et même des codes courts."],"Find out more about MetaSlider Pro":["En savoir plus sur MetaSlider Pro"],"Create slideshows with your Vimeo videos":["Créez des diaporamas avec vos vidéos Vimeo"],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":["Avec les diapositives Vimeo, vous pouvez créer de superbes diaporamas avec vos vidéos Vimeo."],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":["Les diapositives Vimeo affichent vos vidéos avec lecture automatique, désactivation du son, chargement paresseux, possibilité de masquer les contrôles, et bien plus encore."],"Create slideshows with your YouTube videos":["Créez des diaporamas avec vos vidéos YouTube"],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":["Avec les diapositives YouTube, vous pouvez créer de superbes diaporamas avec vos vidéos YouTube."],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":["Les diapositives YouTube affichent vos vidéos avec lecture automatique, désactivation du son, chargement paresseux, possibilité de masquer les contrôles, et bien plus encore."],"Create slideshows with your posts":["Créez des diaporamas avec vos publications"],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":["Avec les diapositives de flux de publications, vous pouvez créer des diaporamas avec vos dernières publications, événements ou produits WooCommerce."],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":["Les diapositives de flux de publications affichent automatiquement vos publications avec des images, du texte, des champs personnalisés et bien plus encore."],"Create slideshows with images stored outside of WordPress":["Vous pouvez créer des diaporamas avec des images stockées en dehors de WordPress"],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":["Avec les diapositives URL externes, vous pouvez charger des images directement à partir de sources autres que WordPress, telles que des CDN ou des hébergeurs d’images."],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":["Les diapositives à URL externe vous offrent toute la puissance de MetaSlider, en utilisant des images stockées où vous le souhaitez."],"Create slideshows with videos in your media library":["Créez des diaporamas avec les vidéos de votre médiathèque"],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":["Avec les diapositives des vidéos locales, vous pouvez créer de magnifiques diaporamas avec les vidéos de votre médiathèque WordPress."],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":["Les diapositives vidéo locales affichent vos vidéos MP4, WebM et MOV avec des images de couverture, la lecture automatique, la mise en sourdine, le chargement paresseux, la possibilité de masquer les contrôles, et bien plus encore."],"Create slideshows with videos stored outside of WordPress":["Vous pouvez créer des diaporamas avec des vidéos stockées en dehors de WordPress"],"With External Video slides, you can add videos directly from non-WordPress sources.":["Avec les diapositives vidéos externes, vous pouvez ajouter des vidéos directement à partir de sources autres que WordPress."],"External Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":["Les diapositives vidéo externes affichent vos vidéos MP4, WebM et MOV avec des légendes de texte, images de couverture, la lecture automatique, la mise en sourdine, le chargement paresseux, la possibilité de masquer les contrôles, et bien plus encore."],"Premium Support":["Support Premium"],"MetaSlider Pro":["MetaSlider Pro"],"Support":["Support"],"Documentation":["Documentation"],"Leave a review":["Laissez un avis"],"Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.":["Bitono est un thème minimaliste avec un schéma bicolore. Recommandé pour les diapositives d’images, d’images externes et de flux de publication."],"Databold is a minimalist theme recommended for Image, External Image and Post feed slides.":["Databold est un thème minimaliste recommandé pour les diapositives d’images, d’images externes et de flux de publication."],"Draxler is a minimalist theme.":["Draxler est un thème minimaliste."],"A simple, slick square design that looks good on darker images.":["Un design carré simple et élégant qui convient aux images plus sombres."],"A clean, subtle theme that features block arrows and bold design.":["Un thème propre et subtil qui comporte des flèches encadrées et un design audacieux."],"A fun, circular design to brighten up your site. This theme works well with dark images":["Un design amusant et circulaire pour égayer votre site. Ce thème fonctionne bien avec des images sombres"],"A minimalistic, no-frills design that was built to blend in with most themes.":["Un design minimaliste, sans superflu, qui a été conçu pour s’intégrer à la plupart des thèmes."],"This theme places the controls vertically for a unique look.":["Ce thème place les contrôles verticalement pour un look unique."],"A futuristic and linear design that goes will with a dark background.":["Un design futuriste et linéaire qui se marie bien avec un fond sombre."],"A simple theme that neatly blends into any existing website.":["Un thème simple qui s’intègre parfaitement à tout site existant."],"This theme has a special additional functionality that uses image titles as the slide navigation. ":["Ce thème dispose d’une fonctionnalité supplémentaire spéciale qui utilise les titres des images comme navigation des diapositives. "],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":["Si vous souhaitez utiliser les titres des images comme navigation, vous devrez utiliser FlexSlider. De plus, pour modifier le libellé de la navigation du diaporama, modifiez le titre de l’image dans la médiathèque ou manuellement sur le diaporama (onglet SEO)."],"This theme has a unique design that gives it a sophisticated look.":["Ce thème possède un design unique qui lui confère un aspect sophistiqué."],"A bold and clear design that works well on a darker images.":["Un design audacieux et clair qui fonctionne bien sur des images plus sombres."],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.":["Un thème minimaliste qui s’efface pour vous permettre de mettre en valeur vos belles photos. A utiliser de préférence avec les diapositives d’images."],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":["Le thème Nivo Light est inclus ici à des fins d’héritage. Note : ne fonctionne qu’avec Nivo Slider"],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":["Le thème Nivo Bar est inclus ici à des fins d’héritage. Note : ne fonctionne qu’avec Nivo Slider"],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":["Le thème Nivo Dark est inclus ici à des fins d’héritage. Note : ne fonctionne qu’avec Nivo Slider"],"Previous Slide":["Diapositive précédente"],"Next Slide":["Diapositive suivante"],"Preparing 1 slide...":["Préparation d’une diapositive..."],"1 slide added successfully":["1 diapositive ajoutée avec succès"],"Opening add slide UI...":["Ouverture de l’IU de l’ajout de diapositives..."],"Closing add slide UI...":["Fermeture de l’IU de l’ajout de diapositives..."],"Updating slide...":["Mise à jour de la diapositive..."],"Slide updated successfully":["La diapositive a été mise à jour avec succès"],"CSS Manager notice opened":["Notification du gestionnaire CSS ouverte"],"CSS Manager notice closed":["Notification du gestionnaire CSS fermée"],"CSS Manager":["Gestionnaire CSS"],"Easily add custom CSS to your slideshows to create the perfect design for your sites.":["Ajoutez facilement des feuilles de style CSS personnalisées à vos diaporamas pour créer le design parfait pour vos sites."],"Built-in text editor full of features.":["Éditeur de texte intégré, riche en fonctionnalités."],"Loads only on the front-end where needed.":["Chargements uniquement sur l’interface publique lorsque cela est nécessaire."],"Includes recipes to solve common scenarios.":["Comprend des solutions pour résoudre les scénarios les plus courants."],"Analytics notice opened":["Notification d’analyse ouverte"],"Analytics notice closed":["Notification d’analyse fermée"],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":["Nous aimerions également vous envoyer des e-mails peu fréquents contenant d’importantes mises à jour de sécurité et de fonctionnalités. Consultez notre %s pour plus de détails."],"privacy policy":["politique de confidentialité"],"Thanks for using MetaSlider":["Merci d’utiliser MetaSlider"],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":["Nous sommes en cours de construction de la prochaine version de MetaSlider. Pouvez-vous nous aider en partageant des informations diagnostiques non sensibles ?"],"Agree and continue":["Accepter et continuer"],"No thanks":["Non merci"],"Duplicating...":["Duplication..."],"To edit this slide, click \"Restore\" and then \"Return to Published Slides\"":["Pour modifier cette diapositive, cliquez sur « Restaurer » puis sur « Retourner aux diapositives publiées »"],"MetaSlider dashboard loaded":["Tableau de bord MetaSlider chargé"],"Saving...":["Enregistrement…"],"Saving %s slides. This may take a few moments.":["Enregistrement de %s diapositives. Cela peut prendre quelques instants."],"Slideshow saved":["Diaporama enregistré"],"Duplicated successfully. Reloading...":["Dupliqué avec succès. Rechargement..."],"Settings saved":["Réglages enregistrés"],"Still working... %s slides remaining...":["Toujours en cours... %s diapositives restantes..."],"Tour cancelled successfully":["Tour annulé avec succès"],"Tour cancelled unsuccessfully":["Tour annulé sans succès"],"Are you sure?":["Confirmez-vous ?"],"This slideshow will be moved to the \"Trash\" area.":["Ce diaporama sera déplacé dans la zone « Corbeille »."],"Confirm":["Confirmer"],"Something went wrong":["Il y a eu un problème"],"OK":["OK"],"Preparing slideshow for duplication...":["Préparation du diaporama pour la duplication..."],"Doing something...":["Faisant quelque chose..."],"No error message provided.":["Aucun message d’erreur fourni."],"Undefined error occurred":["Une erreur indéfinie s’est produite"],"No error message reported.":["Aucun message d’erreur reporté."],"Saving theme...":["Enregistrement du thème…"],"Theme saved":["Thème enregistré"],"Slideshow Theme":["Thème du diaporama"],"This theme is not officially supported by the slider you chose. Your results might vary.":["Ce thème n’est pas officiellement pris en charge par le diaporama choisi. Vos résultats peuvent varier."],"Custom theme":["Thème personnalisé"],"Remove":["Supprimer"],"Change":["Modifier"],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":["Changez l’aspect et la présentation de votre diaporama avec l’un de nos thèmes MetaSlider personnalisés !"],"Select a custom theme":["Sélectionnez un thème personnalisé"],"Themes":["Thème"],"Theme Details":["Détails du thème"],"Theme Instructions":["Mode d’emploi du thème"],"Tags":["Étiquettes"],"How To Use":["Mode d’emploi"],"Select a theme on the left to use on this slideshow. Click the theme for more details.":["Sélectionnez un thème sur la gauche pour l’utiliser dans ce diaporama. Cliquez sur le thème pour plus de détails."],"If no theme is selected we will use the default theme provided by the slider plugin":["Si vous ne sélectionnez pas de thème, nous utiliserons le thème par défaut fourni par l’extension de diaporama"],"Loading...":["Chargement…"],"Error: No themes were found.":["Erreur : Aucun thème n’a été trouvé."],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":["Cependant, il semble que vous ayez des thèmes personnalisés disponibles. Sélectionnez « Mes thèmes personnalisés » dans la navigation en haut pour afficher vos thèmes personnalisés."],"My Custom Themes":["Mes thèmes personnalisés"],"Get MetaSlider Pro!":["Obtenez MetaSlider Pro !"],"Upgrade now to build your own custom themes!":["Mettez à niveau maintenant pour créer vos propres thèmes personnalisés !"],"MetaSlider Pro is installed!":["MetaSlider Pro est installé !"],"You can create your own themes with our theme editor":["Vous pouvez créer vos propres thèmes avec notre éditeur de thèmes"],"Get started":["Premiers pas"],"On the left are themes that you have created in the theme editor.":["Sur la gauche se trouvent les thèmes que vous avez créés dans l’éditeur de thèmes."],"Preview slideshow":["Prévisualiser le diaporama"],"Select":["Sélectionner"],"Toggle overlay type":["Ouvrir/fermer le type de superposition"],"Toggle full width":["Ouvrir/fermer pleine largeur"],"Exit preview":["Quitter l’aperçu"],"This feature is not fully supported in this browser.":["Cette fonctionnalité n’est pas entièrement prise en charge par ce navigateur."],"Media caption":["Légende des médias"],"Media description":["Description des médias"],"Manual entry":["Saisie manuelle"],"Enter text that will appear with your image slide.":["Saisir le texte qui apparaîtra avec votre diapositive d’image."],"Automatically updates directly from the WP Media Library":["Mettez automatiquement à jour directement à partir de la médiathèque de WP"],"No default was found":["Aucun par défaut trouvé"],"You may use HTML here":["Vous pouvez utiliser du HTML ici"],"Filter by type":["Trier par type"],"All media items":["Tous les éléments média"],"Search Unsplash API":["Rechercher l’API d’Unsplash"],"Search unsplash.com...":["Recherche sur unsplash.com..."],"Load more":["Charger plus"],"Photo by %s on Unsplash":["Photo par %s sur Unsplash"],"Photo on Unsplash":["Photo sur Unsplash"],"Opening Unsplash tab...":["Ouverture de l’onglet Unsplash…"],"Unsplash tab closed":["Onglet Unsplash fermé"],"No photots found.":["Aucune photo trouvée."],"Photo by %s":["Photo par %s"],"Deselect":["Désélectionner"],"Attachment Details":["Détails du fichier joint"],"view original":["voir l’original"],"Profile":["Profil"],"Portfolio":["Portfolio"],"Alt Text":["Texte alternatif"],"Description":["Description"],"Quality":["Qualité"],"All photos published on Unsplash can be used for free.":["Vous pouvez utiliser gratuitement toutes les photos publiées sur Unsplash."],"view license":["voir la licence"],"Complete!":["Complet !"],"Crunching...":["Croquant..."],"Import Slides":["Importer les diapositives"],"Import slides":["Importer les diapositives"],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":["Vous n’avez actuellement aucune diapositive à visualiser. Si vous le souhaitez, nous pouvons importer des diapositives pour vous."],"No valid files found":["Aucun fichier valide trouvé"],"Drag and drop interface not available.":["L’interface glisser/déposer n’est pas disponible."],"Drop images here":["Déposez les images ici"],"Press %s to save or %s to cancel.":["Appuyer sur %s pour enregistrer ou %s pour annuler."],"Shortcode copied":["Code court copié"],"Shortcode unable to be copied automatically":["Le code court ne peut pas être copié automatiquement"],"Failed to open utility modal...":["Échec de l’ouverture de l’utilitaire modal..."],"Opening utility modal...":["Ouverture de l’utilitaire modal..."],"Closing utility modal...":["Fermeture de l’utilitaire modal..."],"No slides":["Aucune diapositive"],"Current":["Actuelle"],"last updated: %s":["dernière mise à jour : %s"],"Viewing 1 slideshow":["Visualisation de 1 diaporama"],"Viewing %s out of %s slideshows":["Affichage de %s sur %s diaporamas"],"Search slideshows (Press ctrl + / to focus)‎":["Rechercher de diaporamas (appuyez sur ctrl+/ pour focaliser)"],"Searching slideshows...":["Recherche de diaporamas..."],"1 slideshow":["1 diaporama"],"Viewing %s out of %s slideshows (%s loaded)":["Affichage de %s sur %s diaporamas (%s chargés)"],"Indexing %s slideshows into local storage...":["Indexation de %s diaporamas dans le stockage local..."],"All Slideshows loaded":["Tous les diaporamas chargés"],"Fetching slideshows...":["Récupération de diaporamas..."],"Finished":["Terminé"],"Indexing slideshows... %s remaining":["Indexation des diaporamas... %s restants"],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":["Cette fonction n’est pas entièrement prise en charge par Internet Explorer 11 et il se peut que les résultats de recherche soient lents."],"Sort by title":["Trier par titre"],"Sort by modified date":["Trier par date modifiée"],"Filter slideshows‎":["Filtrer les diaporamas"],"Searching...":["Recherche en cours..."],"Updating...":["Mise à jour en cours..."],"Load all":["Charger tout"],"Clear cache":["Vider le cache"],"Load remaining %s slideshows":["Charger les %s restants des diaporamas"],"Press to clear the slideshow cache from your web browser":["Appuyez sur cette touche pour vider le cache du diaporama à partir de votre navigateur web"],"Loading slideshows...":["Chargement des diaporamas…"],"Browse slideshows":["Parcourir les diaporamas"],"Collapse":["Replier"],"Press to expand":["Appuyez pour étendre"],"Copy all":["Tout copier"],"All settings saved":["Tous les réglages enregistrés"],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":["Vous y trouverez de la documentation et deux niveaux de support au choix. En outre, vous pouvez nous fournir des informations supplémentaires spécifiques à votre site, votre serveur, etc."],"Documentation 📚":["Documentation 📚"],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":["Consultez notre page de documentation pour des exemples et de plus amples informations sur ce que vous pouvez faire avec MetaSlider."],"Visit documentation":["Consultez la documentation"],"Free Basic Support 🚀":["Support de base gratuit 🚀"],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":["Pour les utilisateurs et utilisatrices de la version gratuite de MetaSlider, nous offrons un support gratuite complète sur les forums de wordpress.org."],"Visit wordpress.org":["Visitez wordpress.org"],"Paid Premium Support 🌟":["Support Premium payant 🌟"],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":["Les utilisateurs et utilisatrices ayant acheté l’extension premium peuvent ouvrir un ticket sur notre centre de support privé pour bénéficier d’un support personnalisé et des réponses plus rapides."],"Visit metaslider.com":["Visitez metaslider.com"],"Site Information":["Informations du site"],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":["Pour votre commodité, vous pouvez copier les informations de base du site avant pour nous aider à accélérer le processus de débogage. Assurez-vous de vérifier qu’aucune information personnelle que vous souhaiteriez garder privée n’est incluse."],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":["Modifiez le titre par défaut qui sera utilisé lors de la création d’un nouveau diaporama. Utilisez %s et il sera remplacé par l’ID du diaporama actuel."],"If you are a pro member, enter your license key here to receive updates. %s":["Si vous êtes un membre pro, entrez votre clé de licence ici pour recevoir les mises à jour. %s"],"Upgrade here":["Mettez à niveau ici"],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":["Acceptez de laisser MetaSlider collecter de manière responsable des informations sur la façon dont vous utilisez notre extension. Cette option est désactivée par défaut, mais peut avoir été activée par une notification. %s"],"View our detailed privacy policy":["Consultez les détails de notre politique de confidentialité"],"Slideshow settings saved":["Les réglages du diaporama ont été enregistrés"],"Global settings saved":["Les réglages globaux ont été enregistrés"],"Pro settings saved":["Réglages Pro enregistrés"],"Slideshow Defaults":["Valeurs par défaut des diaporamas"],"Update the default settings used when creating new slideshows.":["Mettre à jour les réglages par défaut utilisés lors de la création de nouveaux diaporamas."],"Default Slideshow Title":["Titre par défaut du diaporama"],"Change the default title":["Modifier le titre par défaut"],"Base Image Width":["Largeur de l’image de base"],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":["Mettez à jour la largeur par défaut de l’image de base. Elle sera utilisée pour les dimensions du diaporama et le recadrage de l’image de base."],"Change the default width":["Modifier la largeur par défaut"],"Base Image Height":["Hauteur de l’image de base"],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.":["Mettez à jour la hauteur par défaut de l’image de base. Elle sera utilisée pour le recadrage de l’image de base et les dimensions du diaporama. Si la largeur est de 100 %, la hauteur sera mise à l’échelle en conséquence."],"100% Width":["Largeur 100%"],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":["Alors que la largeur et la hauteur définies ci-dessus seront utilisées pour le recadrage (s’il est activé) et les dimensions de base du diaporama, vous pouvez également définir le diaporama pour qu’il s’étende à son conteneur."],"Global Settings":["Réglages globaux"],"Update the settings used for all the slideshows on your site.":["Mettre à jour les réglages utilisés pour tous les diaporamas de votre site."],"License Key":["Clé de licence"],"Update license key":["Mettez à jour la clé de licence"],"Help Improve MetaSlider":["Aidez à améliorer MetaSlider"],"Enable Mobile Settings":["Activer les réglages mobiles"],"Add option to hide slides and captions per screen size.":["Ajouter une option pour masquer les diapositives et les légendes en fonction de la taille de l’écran."],"Mobile Settings":["Réglages mobile"],"Set breakpoints for different screen sizes":["Définir des points de rupture pour différentes tailles d’écran"],"Disable Legacy Libraries":["Désactiver les bibliothèques anciennes"],"This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive Slides":["Ce réglage vous permet de désactiver les bibliothèques héritées de diaporamas : Nivo Slider, Coin Slider et Responsive Slides"],"You can safely enable this setting. None of your slideshows use the legacy libraries.":["Vous pouvez activer ce réglage en toute sécurité. Aucun de vos diaporamas n’utilise les bibliothèques héritées."],"You currently have %s slideshows that use legacy libraries.":["Vous avez actuellement %s diaporamas qui utilisent des bibliothèques héritées."],"You currently have %s slideshow that uses legacy libraries.":["Vous avez actuellement %s diaporamas qui utilisent des bibliothèques héritées."],"Enable MetaSlider on Admin Bar":["Activer MetaSlider dans la barre d’administration"],"Add and edit slideshows easier by showing MetaSlider on your admin bar.":["Ajoutez et modifiez des diaporamas plus facilement en affichant MetaSlider dans votre barre d’administration."],"Enable Frontend Edit Links":["Activer les liens de modification de l’interface publique"],"Edit slideshows easily by showing MetaSlider link under each slideshow.":["Modifiez facilement les diaporamas en affichant le lien MetaSlider sous chaque diaporama."],"Last":["Dernier"],"First":["Premier"],"New slides order":["Nouvel ordre des diapositives"],"Select the position for new added slides.":["Sélectionnez la position des nouvelles diapositives ajoutées."],"Pro Settings":["Réglages Pro"],"Update the MetaSlider Pro settings.":["Mettre à jour les réglages de MetaSlider Pro."],"Select how many custom fields will display in the dropdown menu when you are inserting tags.":["Sélectionner le nombre de champs personnalisés qui s’afficheront dans le menu déroulant lors de l’insertion des étiquettes."],"Change the maximum custom fields for Post Feed":["Modifier le nombre maximum de champs personnalisés pour le flux de publications"],"The data in this file does not appear to be valid.":["Les données de ce fichier ne semblent pas être valides."],"Found %s slideshows":["%s diaporama(s) trouvé(s)"],"Image search complete":["Recherche d’images terminée"],"We are still searching for your images. Please wait.":["Nous sommes toujours à la recherche de vos images. Veuillez patienter."],"You have no slideshows to import":["Vous n’avez aucun diaporama à importer"],"Some images are missing":["Il y a des images manquantes"],"When images are missing you will have to manually update or delete the slide after the import completes.":["Si des images sont manquantes, vous devrez mettre à jour ou supprimer manuellement la diapositive une fois l’importation terminée."],"Continue":["Continuer"],"Importing %s slideshows...":["Importation de %s diaporamas..."],"Import successful":["Importation réussie"],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":["Importez facilement les diaporamas générés par MetaSlider. Cela nécessite un fichier généré à partir de l’onglet « Exporter »."],"Load slideshows":["Charger les diaporamas"],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":["Si vous avez un fichier d’exportation, vous pouvez le téléverser ici pour qu’il soit traité. Des informations sur chaque diaporama seront présentées ci-dessous. Vous pourrez confirmer avant d’importer."],"Importing...":["Importation..."],"Processing...":["En cours..."],"Upload file":["Téléverser le fichier"],"Date: %s":["Date : %s"],"Version: v%s":["Version : v%s"],"All images required to import are accounted for.":["Toutes les images nécessaires à l’importation sont prises en charge."],"The following images were not found:":["Les images suivantes n’ont pas été trouvées :"],"No image name provided":["Aucun nom d’image fourni"],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":["Note : Vous pouvez toujours importer des diaporamas qui contiennent des images manquantes. Vous devrez simplement mettre à jour ou supprimer manuellement ces diapositives à partir des pages de modification des diaporamas individuels."],"Import %s slideshows":["Importer %s diaporamas"],"Select the slideshows you wish to import below, then press here to import them.":["Sélectionnez ci-dessous les diaporamas que vous souhaitez importer, puis cliquez ici pour les importer."],"Post Feed slide":["Diapositive de flux de publications"],"External slide":["Diapositive externe"],"Image not found<br>%s":["Image non trouvée<br>%s"],"No slides found":["Aucune diapositive trouvée"],"Loading %s slideshows...":["Chargement de %s diaporamas..."],"You have no slideshows to export":["Vous n’avez aucun diaporama à exporter"],"Exporting %s slideshows...":["Exportation de %s diaporamas..."],"Export successful":["Exportation réussie"],"No slideshows found.":["Aucun diaporama trouvé."],"Create a new slideshow now":["Créer un nouveau diaporama maintenant"],"If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the \"Load\" button.":["Si vous n’avez que quelques diaporamas, nous les préparerons automatiquement. Si vous avez plusieurs diaporamas, cliquez sur le bouton « Téléverser »."],"Choose the slideshows you wish to export.":["Choisissez les diaporamas que vous souhaitez exporter."],"Click the \"Export\" button.":["Cliquez sur le bouton « Exporter »."],"A .json file will automatically be downloaded with all your slideshow data.":["Un fichier .json sera automatiquement téléchargé avec toutes les données de votre diaporama."],"A few notes on exporting slideshow images:":["Quelques notes sur l’exportation d’images de diaporama :"],"Your images need to be exported manually. Please upload them to the new website before importing these slideshows.":["Vos images doivent être exportées manuellement. Veuillez les téléverser sur le nouveau site avant d’importer ces diaporamas."],"Images will need to keep the same file names on the new site.":["Les images devront conserver les mêmes noms de fichiers sur le nouveau site."],"Read our guide on exporting images.":["Lisez notre guide sur l’exportation d’images."],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":["Vous avez %s diaporamas qui peuvent être exportés. Des informations sur chaque diaporama seront présentées ci-dessous."],"Refresh":["Recharger"],"Load":["Charger"],"Export %s slideshows":["Exporter %s diaporamas"],"Select the slideshows you wish to export below, then press here to export them.":["Sélectionnez ci-dessous les diaporamas que vous souhaitez exporter, puis cliquez ici pour les exporter."],"Failed to open the settings page...":["Impossible d’ouvrir la page des réglages..."],"Opening settings page...":["Ouverture de la page des réglages..."],"Page not found: %s":["Page non trouvée : %s"],"Add a slide":["Ajouter une diapositive"],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":["Merci d’utiliser MetaSlider. Pour commencer, cliquez sur le bouton « Ajouter une diapositive » pour créer votre première diapositive."],"Select images":["Sélectionner des images"],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":["Vous pouvez facilement ajouter une image à partir de l’une des options proposées ici. De plus, nous fournissons gratuitement des images de la bibliothèque Unsplash."],"Next step":["Prochaine étape"],"Search unsplash":["Chercher sur Unsplash"],"Choose an image from the left, or search for any topic here to bring up more images.":["Choisissez une image à gauche, ou recherchez un sujet quelconque ici pour faire apparaître d’autres images."],"Hide step":["Masquer l’étape"],"Create your slide":["Créer votre diapositive"],"After you have selected an image, press here to create your slide.":["Une fois que vous avez sélectionné une image, cliquez ici pour créer votre diapositive."],"Preview Slideshow":["Prévisualiser le diaporama"],"Now that you have some slides set, you can preview your slideshow by pressing here.":["Maintenant que vous avez défini quelques diapositives, vous pouvez prévisualiser votre diaporama en appuyant ici."],"Slideshow settings":["Réglages du diaporama"],"Edit slideshow":["Modifier le diaporama"],"Additional CSS Class":["Classe CSS supplémentaire"],"Refresh preview":["Recharger l’aperçu"],"Loading slideshows list...":["Chargement de la liste des diaporamas..."],"Create one now!":["Créez-en un maintenant !"],"Loading slideshow":["Chargement du diaporama"],"Update preview":["Mettre à jour l’aperçu"],"Select a slideshow":["Sélectionnez un diaporama"],"Normal width":["Largeur normale"],"Wide width":["Grande largeur"],"Full width":["Pleine largeur"],"Use MetaSlider to insert slideshows and sliders in your page":["Utiliser MetaSlider pour insérer des diaporamas et des diapositives dans votre page"],"slider":["diaporama"],"slideshow":["diaporama"],"gallery":["galerie"],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":["Vous aimez MetaSlider ? Aidez-nous en donnant un avis positif sur WordPress.org"],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":["Avis sur MetaSlider &rarr;"],"Keep the plugin name \"MetaSlider\" when possible\u0004Select slideshow to insert into post":["Sélectionner le diaporama à insérer dans la publication"],"Short for milliseconds\u0004ms":["ms"],"This is a keyboard shortcut.\u0004 (alt + p)":[" (alt + p)"],"1000 by 1000 pixels\u0004%s by %s pixels":["%s par %s pixels"],"The ENTER key on a keyboard\u0004Enter":["Entrée"],"The ESCAPE key on a keyboard\u0004Escape":["Échap"],"number of slides, ex \"7 slides\"\u0004%s slides":["%s diapositives"]}}}languages/ml-slider-nb_NO.mo000064400000014666151213255460011751 0ustar00��\���	���
	$-C
T_k
s
�Z���	2#	V	r	D�	
�	�	�	�	�	�	�	�	




/!
Q
W
f
r

�

�

�
	�
�
�
�
�
�
S�

R	`jsx!�����$�$#,H*u.��	��!
"
+
1
=
M
e
v
l�
O�
CP:Y���'��6�=
HQW(Z���
���	��
 /
;F
[fi	���:!<^Hs
��������
&%LRix
�
�
������g
~	���	�#����
&'N%c/�� �
�
+HT]q�����MM��4����$�$6(>_	���9>&R/;
GMN5!1FPO*B,+-D7T3\C[XQ$WSU6(?A%:8I4#2=E.'"Z)LV
JHY<@ 0K	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Transition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:58-0600
Last-Translator: Roger Haugli <roger@dreamsoft.no>
Language-Team: Dreamsoft (www.dreamsoft.no) <support@dreamsoft.no>
Language: nb
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 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Legg til lysbildeAvanserte InnstillingerAnimasjonshastighetEr du sikker?PilerAutomatisk avspillingBoks regnBoks regn, Voks omvendtBoks regn, OmvendtBoks tilfeldigCSS klasserBildetekstBildetekst hastighetKarusellmodusAdvarsel: Denne innstillingen er kun for avanserte brukere. Hvis du er usikker, la det stå avkrysset.MidtstillMidtstill lysbildeserieVelg slideshowForsink tilleggelse av flexslider-klasse til lysbildeserieForsinkelse mellom firkanter i msUtvikleralternativerVis flere lysbilder samtidig. Lysbildeserieeffekt vil være 100% bredde.DokumentasjonPrikkerForenklingerEffektTon utBrettGenereltHøydeSkjultHorisontaltMus-over pauseVisningstid pr lysbilde, i millisekundBildeBilde alternativ tekstBilde LysbildeBildetittel tekstMetaSliderNavigasjonNytt VinduNeste tekstIngen konflikt modusIngen slideshow funnetAntall lysbilderAntall firkanterGjennomsiktighetPause lysbildefremvisningen når mus er over glideren, deretter gjenoppta når den ikke lenger er over.Forrige tekstPrint CSSPrint JSRegnTilfeldigTilfeldig rekkefølge på lysbilderOmvendtOmvendt animasjonsretningSøkemotoroptimaliseringLagreVelg Lysbildeserie:Velg slideshow du vil sette inn i postVelg lysbilderetningAngi ton inn hastighet for bildetekstAngi hastigheten på animasjoner, i millisekundAngi tekst for 'neste' elementAngi tekst for 'forrige' elementInnstillingerHurtigkodeVis forrige/neste piler.Vis lysbildenavigasjonskulerSkjære oppLysbildeLysbildeforsinkelseLysbilderetningLysbilde overgangseffektLysbildeseriehøydeLysbildeseriebreddeSmart beskjæring sikrer at dine responsive lysbilder blir beskåret til et forhold som resulterer i en konsekvent lysbildeseriestørrelseSpesifiser hvilken egendefinerte CSS klasse du vil legge til lysbilde wrapperFirkant forsinkelseRettStekk lysbildeserie for å fylle overordnet beholderVirvelTittelTittel:Automatisk overgang mellom lysbilderURLFjern markeringen dersom du vil inkludere din egen CSSFjern markeringen dersom du vil inkludere ditt eget JavascriptVertikaltBreddepixlerlanguages/ml-slider-pt_BR.po000064400000164460151213255470011766 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:58-0600\n"
"Last-Translator: Mauro Mascarenhas <mauro.mascarenhas@nintersoft.ml>\n"
"Language-Team: \n"
"Language: pt_BR\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 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Texto"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Nova janela"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Atenção: Esta configuração é apenas para desenvolvedores avançados. Se você "
"não tem certeza, deixe esta caixa marcada."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Título"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Código reduzido"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Adicionar Slide"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Salvar"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Configurações"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr "Posição de corte"

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr "Esquerda superior"

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr "Centro superior"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr "Direita superior"

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr "Centro esquerdo"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr "Centro central"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr "Direita central"

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr "Esquerda inferior"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr "Centro inferior"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr "Direita inferior"

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Texto de título da imagem"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Texto alternativo da imagem"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Título:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Selecionar apresentação:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Não foi encontrada qualquer apresentação"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Slide de imagem"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Geral"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr "Cortar"

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Imagem"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Largura"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Largura da apresentação"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "px"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Altura"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Altura da apresentação"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Efeito"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Transição de efeito do slide"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Aleatório"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Redemoinho"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Chuva"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Em linha reta"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Deslizar para cima"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Desvanecer"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Dobrar"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Caixa aleatória"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Chuva de caixa"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Chuva de caixa reversa"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Chuva de caixa crescente reversa"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Slide"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Setas"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Mostrar setas anterior/próximo"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Navegação"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Mostrar marcações da navegação de slides"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Escondido"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Pontos"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Opções avançadas"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Expandir a saída da apresentação para ajustá-la à seu recipiente"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Alinhamento central"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Alinhamento central da apresentação"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Iniciar automaticamente"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Transição automática entre slides"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr "Corte de imagem"

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr "Padrão"

#: ml-slider.php:1933
msgid "Disabled"
msgstr "Desativado"

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Corte inteligente faz a certeza de que seus slides responsivos são cortados "
"em uma proporção que resulta em uma apresentação de slides de tamanho "
"consistente"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Modo carrossel"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""
"Mostrar múltiplos slides de uma vez. A saída da apresentação será 100% "
"completa."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "Margem do carrossel"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "Margem em pixel entre slides no carrossel."

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Fazer a ordem dos slides aleatória"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Parar durante passagem do mouse"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Parar a apresentação enquanto passar o mouse sobre o apresentador, e então "
"continuar após o mouse deixa-lo."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Reverter"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Reverter a direção da animação"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Atraso de slide"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Quanto tempo mostrar cada slide, em milissegundos"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Velocidade da animação"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Defina a velocidade das animações, em milissegundos"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Número de fatias"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Número de quadrados"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Direção do slide"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Selecione a direção de deslize"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Horizontal"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Vertical"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Facilidade"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Texto anterior"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Defina o texto para o item de direção 'anterior'"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Texto próximo"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Defina o texto para o item de direção 'próximo'"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Atraso de quadrado"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "Atraso entre quadrados em ms"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Opacidade"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Velocidade do texto"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Defina o esmaecimento em velocidade do texto"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Opções do desenvolvedor"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "Classes CSS"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Especifique qualquer classe CSS personalizada que você gostaria que fosse "
"adicionada ao compilador de apresentações"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Imprimir CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Desmarque isto se você deseja incluir seu próprio CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Imprimir JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Desmarque isto se você deseja incluir seu próprio JavaScript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "Sem modo de conflito"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Atraso ao adicionar a classe flexslider à apresentação"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Selecione uma apresentação para inseri-la na publicação"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Selecione a apresentação"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Documentação"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Você tem certeza?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-pl_PL-metaslider-admin-script.json000064400000065201151213255470017031 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ml"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Podpis"],"New Window":["Nowe okno"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Uwaga: Ta opcja jest tylko dla zaawansowanych użytkowników. Jeśli nie jesteś pewny co robisz, nie rób tego."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Created":[""],"Shortcode":["Kod skórtu"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Dodaj slajd"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Zapisz"],"Settings":["Ustawienia"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":["Tak"],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":["Nie"],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":[""],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":[""],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Tytuł:"],"Select Slider:":["Zaznacz slajder"],"No slideshows found":["Nie znaleziono składników pokazu"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":[""],"SEO":[""],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Zdjęcie"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Szerokośc"],"Slideshow width":[""],"px":[""],"Height":["Wysokość"],"Effect":["Efekt"],"Slide transition effect":["Efekt przenikania slajdów"],"Random":["Losowo"],"Swirl":["Wirowanie"],"Rain":["Deszcz"],"Straight":["Sekwens"],"Slice Down":[""],"Slice Up":["Paski od góry"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Zanikanie"],"Fold":["Składanie"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":[""],"Box Rain":[""],"Box Rain Reverse":[""],"Box Rain Grow":[""],"Box Rain Grow Reverse":[""],"Slide":["Slajd"],"Arrows":[""],"Show the previous/next arrows":[""],"Navigation":["Nawigacja"],"Hidden":[""],"Dots":[""],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Ustawienia zaawansowane"],"100% width":[""],"Center align":["Wyśrodkuj"],"Center align the slideshow":["Wyśrodkuj pokaz slajdów"],"Auto play":["Automatyczny start"],"Transition between slides automatically":[""],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":[""],"Carousel mode":["Tryb karuzeli"],"Display multiple slides at once. Slideshow output will be 100% wide.":[""],"Carousel margin":[""],"Pixel margin between slides in carousel.":[""],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":[""],"Hover pause":["Zatrzymaj podczas najechania"],"Reverse":["Odwróc"],"Reverse the animation direction":["Odwróć kierunek animacji"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Czas opóźnienia"],"How long to display each slide, in milliseconds":["Jak długo ma być wyświetlany slajd, w milisekundach"],"Animation speed":["Prędkośc animacji"],"Set the speed of animations, in milliseconds":["Ustaw szybkość animacji, w milisekundach"],"Number of slices":["Ilość cięć"],"Number of squares":["Ilość kwadracików"],"Slide direction":["Kierunek slajdu"],"Select the sliding direction":["Zaznacz kierunek slajdów"],"Horizontal":["Poziomo"],"Vertical":["Pionowo"],"Easing":["Łagodzenie"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Tekst \"Poprzedni\""],"Set the text for the 'previous' direction item":["Ustaw tekst dla \"poprzedniego\" slajdu"],"Next text":["Tekst \"Nastepny\""],"Set the text for the 'next' direction item":["Ustaw tekst dla \"następnego\" slajdu"],"Square delay":[""],"Delay between squares in ms":[""],"Opacity":["Przeźroczystość"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Prędkośc pojawiania opisu"],"Set the fade in speed of the caption":["Ustaw czas zanikania podpisu"],"CSS classes":["Klasy CSS"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Wpisz własne klasy CSS, które mają zostać dołączone do kontenera głównego slajdera"],"Print CSS":["Wyświetl CSS"],"Uncheck this is you would like to include your own CSS":["Odznacz jeśli chcesz dołączyć swój własny kod CSS"],"Print JS":["Wyświetl JS"],"Uncheck this is you would like to include your own Javascript":["Odznacz jeśli chcesz dołączyć swój własny kod Javascript"],"No conflict mode":[""],"Delay adding the flexslider class to the slideshow":[""],"Delete slideshow":[""],"Select slideshow to insert into post":[""],"Add slideshow":[""],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Dokumentacja"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Na pewno?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-ru_RU.mo000064400000024016151213255470012001 0ustar00��o��`		a	k	}	
�	�		�	
�	�	�	�	�	�	




"
0

@
ZN

�
�
�
�
�
�
	
2Ok}D�
�����pw|���
��/���
��



,

7

B
	M
W
h
|
�
�
S�
(�

$	2<EJ!Qs{����$��$,3*`.��	��!�
(8PalqO�.;D:M���
��	�'��6�=Zci�l�)!Df{7����
'A#a��!�������$&(!Oq�X�P�,=j�}	
"-�D4AXev��-�c�Ja%|
��!��)?'Y7�!�'��R�3H
\g0x"�D�   ( %I Ho @� M� \G!`�!`"f"y";�"2�"
�"#$#5<#&r#�#�#��#�x$0 %Q%`%my%�%�%	&&3&K&ke&�&v�&}['�'�'�'L_6^./?
iJ!
HmQlbk3`]e<#(UPc9,8ZSGj'X)1[ aA>0=gKdV@%*5RhN&OI;YWfE2M-$:oTC4+Bn\"F7D	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBottom CenterBottom LeftBottom RightBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshowChoose slideshowCropCrop PositionDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisabledDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEasy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.EffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage CropImage SlideImage Title TextInsert slideshowMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select replacement imageSelect slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStandardStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Top CenterTop LeftTop RightTransition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: MetaSlider v3.2.1
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:59-0600
Last-Translator: admin <info@1245.ru>
Language-Team: 
Language: ru
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;
X-Generator: Poedit 3.2.2
X-Poedit-SourceCharset: utf-8
X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n: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: ..
X-Textdomain-Support: yes
X-Poedit-SearchPath-0: .
Добавить слайдРасширенные настройкиСкорость анимацииВы уверены?СтрелочкиВоспроизводить автоматическиСнизу ЦентрСнизу СлеваСнизу СправаМозаикаВозрастающая мозаикаОбратная мозаикаСлучайные квадратыCSS классыОписаниеСкорость описанияОтступ каруселиРежим каруселиВнимание: данная настройка только для опытных пользователей. Если вы не уверены, оставьте её отмеченной.По центруЦентр СлеваЦентр СправаВыравнять по центруЦентрирует слайд-шоуВыберите слайдшоуОбрезатьОбрезатьЗадержка при добавлении класса flexslider в слайдшоуЗадержка между квадратами (в миллисекундах)Опции для разработчиковОтключеноПоказывать несколько слайдов одновременно. Слайд-шоу будет иметь ширину 100%.ДокументацияТочкиСглаживаниеПростой в использовании слайд-шоу плагин. Создавайте СЕО-оптимизированные адаптивные слайд-шоу с Nivo Slider, Flex Slider, Coin Slider и Responsive Slides.ЭффектРастворениеЖалюзиОсновноеВысотаНе показыватьГоризонтальноПауза при наведении мышиКак долго будет показан каждый слайд (в миллисекундах)ИзображениеAlt изображенияОбрезка изображенийСлайдTitle изображнияВставить слайдшоуМета слайдерНавигацияОткрывать в новом окнеТекст "вперед"Бесконфликтный режимНе найдено ни одного слайд-шоуКоличество секцийКоличество квадратовПрозрачностьОстанавливает слайд-шоу при наведении на него мышки и снова возобновляет, когда мышка убрана.Отступ (в пикселях) между слайдами в каруселиТекст "назад"Выводить CSSВыводить JSДождьСлучайноСлучайный порядок салйдовВ обратном порядкеИзменить порядок слайдов на обратныйCEOСохранитьВыберите слайдер:Выбрать изображениеВыберите слайд-шоу для вставки в записьВыбор направления воспроизведенияУстановить скорость растворения описанияУстанавливает скорость анимации (в миллисекундах)Установить текст для метки "вперед" (следующий слайд)Установить текст для метки "назад" (предыдущий слайд)НастройкиШорткодПоказывать стрелки вперед/назадПоказывать метки навигацииСдвигСкольжениеВремя показа слайдаНаправление воспроизведенияЭффект смены слайдовВысота слайд-шоуШирина слайд-шоуСлайды будут обрезаны с определённым соотношением, чтобы размер слайд-шоу не изменялсяУкажите любые пользовательские CSS классы, которые вы хотите добавить к контейнеру слайдераЗадержка между квадратамиОбычнаяКлассическийРастягивает слайд-шоу на всю ширину родительского элементаКручениеНазваниеНазвание:Сверху ЦентрСверху СлеваСверху СправаЗадержка между сменой слайдов определяется автоматическиСсылка (URL)Снимите галочку, если Вы хотите использовать свой собственный CSSСнимите галочку, если Вы хотите использовать свой собственный JavascriptВертикальноШиринапикселейlanguages/ml-slider-uk.mo000064400000023347151213255470011372 0ustar00��q��,�		�	�	�	
�	�		�	
�	�	�	�	


+
6
B

J
X

h
Zv

�
�
�
�
 1
62Dw���D�
")+.Z_gn
u�/���
����





 
	+
5
F
Z
k
}
S�
(�

	#(!/QYy}��$��$�,*>.i�	��!����.?
OlZO�$-:6qw}
��	�'��6�=CLRbU��#�/-]z��#��#�
.9Yy��&V}!�(�,�"8!KUmH�(5 Jyk��
$/^D�����3X7��%���"
+6I]'{'��%��&P�:Ocj2}(�D�" 3%Tz6�I�N Xi X� !4!;C!2!�!�!*�!'�!*"J"i"4�"��"��#, $M$\$ko$�$�$�$	%(%@%VZ%�%y�%�/&�&�&�&9nc)@`*7Sb,AOm'TN2&< 8_3#eo6LUPia>Z%Ik".fWh
D!	l/gp4\0:JG+-1]^
$q;BH[KM?dCjFEQYV(=X5RAdd SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBottom CenterBottom LeftBottom RightBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshowChoose slideshowCropCrop PositionDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisabledDisabled (Smart Pad)Display multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFailed to add slide. Slide is not an image.FoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage CropImage SlideImage Title TextInsert slideshowMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select replacement imageSelect slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart CropSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStandardStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Top CenterTop LeftTop RightTransition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:59-0600
Last-Translator: Roman Sulym <sulym.roman@gmail.com>
Language-Team: LNU
Language: uk
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
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-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Додати слайдДодатковоШвидкість анімаціїВи впевнені?СтрілкиВідтворювати автоматичноЗнизу по центруЗнизу зліваЗнизу справаМозаїкаНаростаюча мозаїкаЗворотня мозаїкаВипадкові квадратиCSS класиНаписШвидкість написуВідступ каруселіРежим каруселіУвага: це налаштування лише для досвідчених розробників. Якщо ви не впевнені, залишіть його відзначеним. Посередині по центруПосередині зліваПосередині справаВирівнювати по центруВідцентрувати слайд-шоуВиберіть слайд-шоуОбтинанняПозиція обтинанняЗатримка при додаванні класу flexslider у слайд-шоуЗатримка між квадратами в мілісекундахОпції для розробниківВідключеноВідключено (Smart Pad)Показувати декілька слайдів одночасно. Слайд-шоу матиме ширину 100%ДокументаціяКрапкиЗгладжуванняЕфектВицвітанняНе вдалось додати слайд. Цей слайд не є зображенням.ЖалюзіОсновнеВисотаНе показуватиГоризонтальнийПауза при наведенні курсораЯк довго показувати кожен слайд (в мілісекундах)ЗображенняАтрибут altОбтинання зображеньЗображенняАтрибут titleВставити слайд-шоуMetaSliderНавігаціяНове вікноНаступний текстБезконфліктний режимСлайд-шоу не знайденоКількість секційКількість квадратівПрозорістьЗупиняє слайд-шоу при наведенні курсора і відновлює, коли курсор знову покидає його межіВідступ (в пікселях) між слайдами в каруселіПопередній текстВиводити CSSВиводити JSДощВипадковоВипадковий порядок слайдівВ зворотньому порядкуЗмінити порядок слайдів на зворотнійSEOЗберегтиВиберіть слайдер:Виберіть зображенняДодати слайд-шоуВибрати напрямок відтворенняВстановити швидкість вицвітання написуЗадати швидкість анімації (в мілісекундах)Задати текст для мітки 'вперед' (наступний слайд)Задати текст для мітки 'назад' (попередній слайд)НалаштуванняШорткодПоказувати стрілки вперед/назадПоказувати мітки навігаціїЗсувКовзанняЗатримка показу слайдаНапрямок відтворенняЕфект переходу слайдівВисота слайд-шоуШирина слайд-шоуРозумне обтинання зображеньРозумне обтинання гарантує, що обтинання слайдів буде виконано таким чином, щоб розмір слайд-шоу не змінювавсяВкажіть будь-які користувацькі CSS класи, які Ви хочете додати в контейнер слайдераЗатримка між квадратамиТиповийКласичнийРозтягнути слайд-шоу на всю ширину батьківського елементаВирЗаголовокЗаголовок:Зверху по центруЗверху зліваЗверху справаПерехід між слайдами відбувається автоматичноURLЗніміть цю галочку, якщо Ви хочете використовувати свій власний CSSЗніміть цю галочку, якщо Ви хочете використовувати свій власний JavascriptВертикальнийШиринапікселівlanguages/ml-slider-hr_HR.po000064400000163102151213255470011752 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:57-0600\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: hr_HR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\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-Generator: Poedit 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Natpis"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Novi prozor"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Oprez: Ova postavka je samo za napredne korisnike. Ako niste sigurni, "
"ostavite je označeno."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Naslov"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Shortcode"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Dodaj Slide"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Spremi"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Postavke"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Naslov slike"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Alt Tekst Slike"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Naslov:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Odaberi Slider:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Slideshowi nisu pronađeni"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Slide Slika"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Generalno"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Slika"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Širina"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Širina Slideshowa"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "px"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Visina"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Visina Slideshowa"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Efekt"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Efekt izmjene slide-a"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Naizmjenično"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Swirl"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Kiša"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Ravno"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Slice gore"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Izbljeljujuće"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Savijeno"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Box nasumično"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Box kiša"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Box kiša obrnuto"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Box Grow kiša obrnuto"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Slide"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Strijele"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Pokaži Natrag/Nazad strijele"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Navigacija"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Pokaži navigacijske bullete slide-a"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Skriveno"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Točke"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Napredne postavke"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Razvuci slideshow izgled da se uklapa sa glavnim container-om."

#: ml-slider.php:1888
msgid "Center align"
msgstr "Centriraj"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Centriraj poredak slideshow-a"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Auto play"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Automatsko mijenjanje slide-ova"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Smart Crop omogućava vašim slide-ovima da su prilagođeni istoj veličini za "
"prikaz."

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Opcija Vrtuljak"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""
"Prikazuje više slide-ova odjednom. Slideshow izgled će biti 100% širok."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr ""

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr ""

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Nasumičan poredak slide-ov"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Pauziraj prijelazom miša"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Pauzirajte slideshow kada prelazite mišem preko slider-a, zatim nastavlja "
"kada odmaknete miš."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Obrnuti smjer"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Izmjenite smjer animacije."

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Odgoda slide-a"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Koliko dugo prikazivati slide, u milisekundama"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Brzina animacije"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Podesite brzinu animacije, u milisekundama"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Broj slice-eva"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Broj kocki"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Smjer slide-a"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Odaberite smjer slide-a"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Horizontalno"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Vertikalno"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Ublažavanje"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Prethodni tekst"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Postavite tekst za \"Prethodni\" smjer stavke"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Sljedeći tekst"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Postavite tekst za \"Sljedeći\" smjer stavke"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Odgoda kocke"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "Odgoda između kocki u ms"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Vidljivost"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Brzina natpisa"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Postavite brzinu izbljeljivanja natpisa"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Developer opcije"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS classes"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Odredite bilokoji prilagođen CSS Class koji želite dodati u slider wrapper"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Print CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Odznačite ovo ako biste željeli koristiti vlastiti CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Print JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Odznačite ovo ako biste željeli koristiti vlastiti Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "No conflict mode"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Odgodite dodavanja flexslider class-a u slideshow"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Odaberi slideshow za umetanje u post"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Odaberi slideshow"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Dokumentacija"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Jeste li sigurni?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-nb_NO.po000064400000163260151213255470011750 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:58-0600\n"
"Last-Translator: Roger Haugli <roger@dreamsoft.no>\n"
"Language-Team: Dreamsoft (www.dreamsoft.no) <support@dreamsoft.no>\n"
"Language: nb\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 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Bildetekst"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Nytt Vindu"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Advarsel: Denne innstillingen er kun for avanserte brukere. Hvis du er "
"usikker, la det stå avkrysset."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Tittel"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Hurtigkode"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Legg til lysbilde"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Lagre"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Innstillinger"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Bildetittel tekst"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Bilde alternativ tekst"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Tittel:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Velg Lysbildeserie:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Ingen slideshow funnet"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Bilde Lysbilde"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Generelt"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "Søkemotoroptimalisering"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Bilde"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Bredde"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Lysbildeseriebredde"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "pixler"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Høyde"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Lysbildeseriehøyde"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Effekt"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Lysbilde overgangseffekt"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Tilfeldig"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Virvel"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Regn"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Rett"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Skjære opp"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Ton ut"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Brett"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Boks tilfeldig"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Boks regn"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Boks regn, Omvendt"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Boks regn, Voks omvendt"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Lysbilde"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Piler"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Vis forrige/neste piler."

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Navigasjon"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Vis lysbildenavigasjonskuler"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Skjult"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Prikker"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Avanserte Innstillinger"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Stekk lysbildeserie for å fylle overordnet beholder"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Midtstill"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Midtstill lysbildeserie"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Automatisk avspilling"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Automatisk overgang mellom lysbilder"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Smart beskjæring sikrer at dine responsive lysbilder blir beskåret til et "
"forhold som resulterer i en konsekvent lysbildeseriestørrelse"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Karusellmodus"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""
"Vis flere lysbilder samtidig. Lysbildeserieeffekt vil være 100% bredde."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr ""

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr ""

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Tilfeldig rekkefølge på lysbilder"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Mus-over pause"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Pause lysbildefremvisningen når mus er over glideren, deretter gjenoppta når "
"den ikke lenger er over."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Omvendt"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Omvendt animasjonsretning"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Lysbildeforsinkelse"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Visningstid pr lysbilde, i millisekund"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Animasjonshastighet"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Angi hastigheten på animasjoner, i millisekund"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Antall lysbilder"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Antall firkanter"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Lysbilderetning"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Velg lysbilderetning"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Horisontalt"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Vertikalt"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Forenklinger"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Forrige tekst"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Angi tekst for 'forrige' element"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Neste tekst"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Angi tekst for 'neste' element"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Firkant forsinkelse"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "Forsinkelse mellom firkanter i ms"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Gjennomsiktighet"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Bildetekst hastighet"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Angi ton inn hastighet for bildetekst"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Utvikleralternativer"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS klasser"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Spesifiser hvilken egendefinerte CSS klasse du vil legge til lysbilde wrapper"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Print CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Fjern markeringen dersom du vil inkludere din egen CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Print JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Fjern markeringen dersom du vil inkludere ditt eget Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "Ingen konflikt modus"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Forsink tilleggelse av flexslider-klasse til lysbildeserie"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Velg slideshow du vil sette inn i post"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Velg slideshow"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Dokumentasjon"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Er du sikker?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-fa_IR.mo000064400000016471151213255470011733 0ustar00��^��	�
%3	:DMc
t�
��
�Z�	'	B	2S	�	�	D�	
�	




$
,
3

:
E
/Q
�
�
�
�

�

�

�
	�
�
�
&S.(�
�	����!��"&+$:_$|,�*�.�(
	1
;
!Y
{
�
�
�
�
�
�
l�
OL��:����'(6,=c�����`�����%,I_
w������%��U�'8$`��#,5
<
JUbk0tI�
� �3
ITau� ����KAN�����-�
'(P
WbO}4�,=/=m=���1?:z���$��W/\���9?
HS@_�8�A�
$/6;@'T0=
IOP7"2HR Q+D-,.F9V5^E]ZS%YUW83)AC&<:K6$4?G/(#\*NX
LJ[>B!1M	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Transition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:56-0600
Last-Translator: 
Language-Team: 
Language: fa_IR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
قرار دادن اسلایدتنظیمات پیشرفتهسرعت انیمیشنآیا مطمئن هستید؟فلش هاپخش خودکارجعبه بارشجعبه بارش معکوس روشنجعبه بارش معکوسجعبه تصادفیکلاس سی اس اسعنوانسرعت عنوانحالت چرخ و فلکحالت چرخ و فلکتوجه: این تنظیمات فقط برای توسعه دهندگان پیشرفته است. اگر شما مطمئن نیستید، این تنظیمات را دستکاری نکنید.تراز از وسطتراز از وسط اسلایدشوانتخاب اسلایدشوتاخیر در استفاده کلاس فلکس اسلایدر در اسلایدشوتاخیر مربع در اسلایدرتنظیمات توسعه دهندهنمایش اسلاید چندگانه در یک نوبت. خروجی تصاویر به صورت خودکار 100% خواهد بود.مستنداتنقطهافکتافکتمحوتا کردنعمومیارتفاعمخفیافقیمتوقف کردن هنگام شناور شدنمدت زمان نمایش هر اسلایدر، در میلی ثانیهتصویرمتن جایگزین تصویراسلاید تصویرموضوع تصویرMetaSliderناوبریپنجره جدیدنوشته بعدیبدون حالت تضاداسلایدشو پیدا نشدتعداد برش هاتعداد مربع هاشفافیتمتوقف کردن تصویر هنگام بردن موس روی تصویرفاصله خروجی بین اسلایدر در چرخ و فلکنوشته قبلیچاپ سی اس اسچاپ جاوا اسکریپتبارشتصادفیتصادفی کردن حالت اسلایدرمعکوسجهت معکوس شدن انیمیشنسئوذخیرهانتخاب اسلاید:انتخاب اسلایدشو برای برای قرار دادن در مطلبقرار دادن توضیحات در اسلایدرتنظیم سرعت محو شدن عنوانتنظیم سرعت انیمیشن، در میلی ثانیهتنظیم متن برای 'بعدی' مورد استفادهتنظیم متن برای 'قبلی' مورد استفادهتنظیماتکد کوتاهنشان دادن فلش های قبلی/بعدینشان دادن گلوله های ناوبری اسلایدربرش از بالااسلایدتاخیر اسلایدرتوضیحات اسلایدرانتقال افکت اسلایدرارتفاع اسلایدشوعرض اسلایدشواصلاح هوشمند اسلایدر به طوریکه پاسخگو خواهد بوداضافه کردن یک کلاس سفارشی سی اس اس در اسلایدر پوستهتاخیر مربعمستقیمکشش خروجی تصاویر به صورت خودکارچرخشموضوعموضوع:انتقال بین اسلاید ها به صورت خودکارلینکاستفاده کردن از سی اس اس اسلایداستفاده کردن از جاوا اسکریپت اسلایدعمودیعرضpxlanguages/ml-slider-nb_NO-metaslider-admin-script.json000064400000067402151213255470017023 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nb"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Bildetekst"],"New Window":["Nytt Vindu"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Advarsel: Denne innstillingen er kun for avanserte brukere. Hvis du er usikker, la det stå avkrysset."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Tittel"],"Created":[""],"Shortcode":["Hurtigkode"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Legg til lysbilde"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Lagre"],"Settings":["Innstillinger"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Bildetittel tekst"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Bilde alternativ tekst"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Tittel:"],"Select Slider:":["Velg Lysbildeserie:"],"No slideshows found":["Ingen slideshow funnet"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Bilde Lysbilde"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Generelt"],"SEO":["Søkemotoroptimalisering"],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Bilde"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Bredde"],"Slideshow width":["Lysbildeseriebredde"],"px":["pixler"],"Height":["Høyde"],"Slideshow height":["Lysbildeseriehøyde"],"Effect":["Effekt"],"Slide transition effect":["Lysbilde overgangseffekt"],"Random":["Tilfeldig"],"Swirl":["Virvel"],"Rain":["Regn"],"Straight":["Rett"],"Slice Down":[""],"Slice Up":["Skjære opp"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Ton ut"],"Fold":["Brett"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Boks tilfeldig"],"Box Rain":["Boks regn"],"Box Rain Reverse":["Boks regn, Omvendt"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Boks regn, Voks omvendt"],"Slide":["Lysbilde"],"Arrows":["Piler"],"Show the previous/next arrows":["Vis forrige/neste piler."],"Navigation":["Navigasjon"],"Show the slide navigation bullets":["Vis lysbildenavigasjonskuler"],"Hidden":["Skjult"],"Dots":["Prikker"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Avanserte Innstillinger"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Stekk lysbildeserie for å fylle overordnet beholder"],"Center align":["Midtstill"],"Center align the slideshow":["Midtstill lysbildeserie"],"Auto play":["Automatisk avspilling"],"Transition between slides automatically":["Automatisk overgang mellom lysbilder"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Smart beskjæring sikrer at dine responsive lysbilder blir beskåret til et forhold som resulterer i en konsekvent lysbildeseriestørrelse"],"Carousel mode":["Karusellmodus"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Vis flere lysbilder samtidig. Lysbildeserieeffekt vil være 100% bredde."],"Carousel margin":[""],"Pixel margin between slides in carousel.":[""],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Tilfeldig rekkefølge på lysbilder"],"Hover pause":["Mus-over pause"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Pause lysbildefremvisningen når mus er over glideren, deretter gjenoppta når den ikke lenger er over."],"Reverse":["Omvendt"],"Reverse the animation direction":["Omvendt animasjonsretning"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Lysbildeforsinkelse"],"How long to display each slide, in milliseconds":["Visningstid pr lysbilde, i millisekund"],"Animation speed":["Animasjonshastighet"],"Set the speed of animations, in milliseconds":["Angi hastigheten på animasjoner, i millisekund"],"Number of slices":["Antall lysbilder"],"Number of squares":["Antall firkanter"],"Slide direction":["Lysbilderetning"],"Select the sliding direction":["Velg lysbilderetning"],"Horizontal":["Horisontalt"],"Vertical":["Vertikalt"],"Easing":["Forenklinger"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Forrige tekst"],"Set the text for the 'previous' direction item":["Angi tekst for 'forrige' element"],"Next text":["Neste tekst"],"Set the text for the 'next' direction item":["Angi tekst for 'neste' element"],"Square delay":["Firkant forsinkelse"],"Delay between squares in ms":["Forsinkelse mellom firkanter i ms"],"Opacity":["Gjennomsiktighet"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Bildetekst hastighet"],"Set the fade in speed of the caption":["Angi ton inn hastighet for bildetekst"],"Developer options":["Utvikleralternativer"],"CSS classes":["CSS klasser"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Spesifiser hvilken egendefinerte CSS klasse du vil legge til lysbilde wrapper"],"Print CSS":["Print CSS"],"Uncheck this is you would like to include your own CSS":["Fjern markeringen dersom du vil inkludere din egen CSS"],"Print JS":["Print JS"],"Uncheck this is you would like to include your own Javascript":["Fjern markeringen dersom du vil inkludere ditt eget Javascript"],"No conflict mode":["Ingen konflikt modus"],"Delay adding the flexslider class to the slideshow":["Forsink tilleggelse av flexslider-klasse til lysbildeserie"],"Delete slideshow":[""],"Select slideshow to insert into post":["Velg slideshow du vil sette inn i post"],"Add slideshow":[""],"Choose slideshow":["Velg slideshow"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Dokumentasjon"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Er du sikker?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-de_DE-metaslider-admin-script.json000064400000070330151213255500016754 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de_DE"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Beschriftung"],"New Window":["Neues Fenster"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Achtung: Diese Einstellung ist nur für fortgeschrittene Entwickler. Wenn Sie unsicher sind, lassen Sie es sein."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Titel"],"Created":[""],"Shortcode":["Shortcode"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Dia hinzufügen"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Speichern"],"Settings":["Einstellungen"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":["Ja"],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":["Nein"],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":["Zuschneideposition"],"Top Left":["Oben links"],"Top Center":["Oben mittig"],"Top Right":["Oben rechts"],"Center Left":["Mittig links"],"Center Center":["Mittig mittig"],"Center Right":["Mittig rechts"],"Bottom Left":["Unten links"],"Bottom Center":["Unten mittig"],"Bottom Right":["Unten rechts"],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Bild Titel"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Bild Alternativtext"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Titel:"],"Select Slider:":["Diashow wählen:"],"No slideshows found":["Keine Diashows gefunden"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Bild"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Allgemein"],"SEO":["SEO"],"Crop":["Zuschneiden"],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Bild"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Breite"],"Slideshow width":["Diashow Breite"],"px":["px"],"Height":["Höhe"],"Slideshow height":["Diashow Höhe"],"Effect":["Effekt"],"Slide transition effect":["Diashow Übergangseffekt"],"Random":["Zufällig"],"Swirl":["Wirbel"],"Rain":["Regen"],"Straight":["Gerade"],"Slice Down":[""],"Slice Up":["Teilen nach oben"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Überblenden"],"Fold":["Falten"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Zufällige Kästchen"],"Box Rain":["Kästchen-Regen"],"Box Rain Reverse":["Kästchen-Regen umgekehrt"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Kästchen-Regen wachsend umgekehrt"],"Slide":["Gleiten"],"Arrows":["Pfeile"],"Show the previous/next arrows":["Zeige die zurück/weiter Pfeile"],"Navigation":["Navigation"],"Show the slide navigation bullets":["Punkte für die Navigation anzeigen"],"Hidden":["Versteckt"],"Dots":["Punkte"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Erweiterte Einstellungen"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Diashow an die Grösse des Containers anpassen"],"Center align":["Mittig ausrichten"],"Center align the slideshow":["Diashow mittig ausrichten"],"Auto play":["Automatische Wiedergabe"],"Transition between slides automatically":["Überblendung zwischen Dias automatisch"],"Image Crop":["Bild zuschneiden"],"Smart Crop":[""],"Standard":["Standard"],"Disabled":["Aus"],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Smart Crop sorgt dafür, dass Ihre Dias in einem Verhältnis zugeschnitten werden, das eine konsistente Größe für die Diashow ergibt"],"Carousel mode":["Carousel Modus"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Zeige mehrere Dias gleichzeitig an. Die Diashow wird 100% breit sein."],"Carousel margin":["Carousel Abstand"],"Pixel margin between slides in carousel.":["Pixelabstand zwischen den Dias im Carousel."],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Zufällige Reihenfolge der Dias"],"Hover pause":["Pause bei 'Hover'"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Diashow bei Bewegen der Maus über das Bild anhalten, sobald die Maus das Bild verlässt geht die Animation weiter."],"Reverse":["Rückwärts"],"Reverse the animation direction":["Richtung der Animation umkehren"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Anzeigedauer"],"How long to display each slide, in milliseconds":["Wie lange jedes Dia angezeigt wird, in Millisekunden"],"Animation speed":["Animationsgeschwindigkeit"],"Set the speed of animations, in milliseconds":["Stellen Sie die Geschwindigkeit der Animationen ein, in Millisekunden"],"Number of slices":["Anzahl der Teile"],"Number of squares":["Anzahl der Quadrate"],"Slide direction":["Bewegungsrichtung"],"Select the sliding direction":["Wählen Sie die Bewegungsrichtung der Diashow"],"Horizontal":["Horizontal"],"Vertical":["Vertikal"],"Easing":["Übergang"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["'Zurück' Text"],"Set the text for the 'previous' direction item":["Text für die 'Zurück' Richtungsangabe, Beispiel: Vorheriges Bild"],"Next text":["'Weiter' Text"],"Set the text for the 'next' direction item":["Text für die 'Weiter' Richtungsangabe, Beispiel: Nächstes Bild"],"Square delay":["Pause zwischen Quadraten"],"Delay between squares in ms":["Pause zwischen Quadraten in ms"],"Opacity":["Durchsichtigkeit"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Geschwindigkeit der Beschriftung"],"Set the fade in speed of the caption":["Stellen Sie die Geschwindigkeit des Einblendens für die Beschriftung ein"],"Developer options":["Entwickler Optionen"],"CSS classes":["CSS Klassen"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Geben Sie benutzerdefinierte CSS Klassen an, die zum Diashow-Wrapper hinzugefügt werden sollen"],"Print CSS":["CSS einfügen"],"Uncheck this is you would like to include your own CSS":["Deaktivieren Sie dies wenn Sie eigenes CSS verwenden möchten"],"Print JS":["JS einfügen"],"Uncheck this is you would like to include your own Javascript":["Deaktivieren Sie dies wenn Sie eigene Javascripts verwenden möchten"],"No conflict mode":["No Conflict Modus"],"Delay adding the flexslider class to the slideshow":["Das Hinzufügen der Flexslider Class zur Diashow verzögern"],"Delete slideshow":[""],"Select slideshow to insert into post":["Wählen Sie eine Diashow zum Einfügen aus"],"Add slideshow":[""],"Choose slideshow":["Diashow auswählen"],"Insert slideshow":["Diashow einfügen"],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Dokumentation"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Sind Sie sicher?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-es_ES.po000064400000364335151213255500011753 0ustar00# Translation of Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release) in Spanish (Spain)
# This file is distributed under the same license as the Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release) package.
msgid ""
msgstr ""
"Project-Id-Version: Plugins - Slider, Gallery, and Carousel by MetaSlider "
"&#8211; Responsive WordPress Slideshows - Stable (latest release)\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2024-06-13T13:40:12+00:00\n"
"PO-Revision-Date: 2024-06-16 19:00+0200\n"
"Last-Translator: \n"
"Language-Team: \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: Poedit 3.4.4\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: ml-slider.php
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
#: ml-slider.php
msgid "https://www.metaslider.com"
msgstr "https://www.metaslider.com"

#. Description of the plugin
#: ml-slider.php
msgid ""
"MetaSlider gives you the power to create a beautiful slideshow, carousel, or "
"gallery on your WordPress site."
msgstr ""
"MetaSlider te da la capacidad de crear un hermoso pase de diapositivas, "
"carrusel o galería en tu sitio de WordPress."

#: admin/Notices.php:95
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""
"¿Te gusta MetaSlider? Por favor, ayúdanos dando una opinión positiva en "
"WordPress.org"

#: admin/Notices.php:105
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""
"Dale vida a tu sitio con capas animadas y diapositivas de vídeo con "
"MetaSlider Pro"

#: admin/Notices.php:116
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""
"Aumenta tus ingresos y conversiones con diapositivas de vídeo y muchas otras "
"caracteríscticas Pro de MetaSlider"

#: admin/Notices.php:127
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""
"¿Sabes traducir? ¿Quieres mejorar MetaSlider para los usuarios de tu idioma?"

#: admin/Notices.php:317
msgid "weeks"
msgstr "semanas"

#: admin/Notices.php:337
msgid "Let's Start &rarr;"
msgstr "Empecemos &rarr;"

#: admin/Notices.php:338
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr "Valora MetaSlider &rarr;"

#: admin/Notices.php:339
msgid "Find out more &rarr;"
msgstr "Descubre más &rarr;"

#: admin/Notices.php:340
msgid "Get MetaSlider Pro &rarr;"
msgstr "Consigue MetaSlider Pro &rarr;"

#: admin/Notices.php:341
msgid "Sign up &rarr;"
msgstr "Regístrate &rarr;"

#: admin/Notices.php:342
msgid "Go there &rarr;"
msgstr "Ir ahí &rarr;"

#: admin/Notices.php:344
msgid "Read more"
msgstr "Leer más"

#: admin/Notices.php:358 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:141 inc/slide/metaslide.image.class.php:124
#: inc/slide/metaslide.image.class.php:228
#: inc/slide/metaslide.image.class.php:349 ml-slider.php:870 ml-slider.php:952
#: ml-slider.php:1064 ml-slider.php:2509 ml-slider.php:2550
msgid "The security check failed. Please refresh the page and try again."
msgstr ""
"La comprobación de seguridad ha fallado. Por favor, actualiza la página e "
"inténtalo de nuevo."

#: admin/Notices.php:366 admin/routes/api.php:139
#: inc/slide/metaslide.class.php:149 inc/slide/metaslide.image.class.php:132
#: inc/slide/metaslide.image.class.php:151
#: inc/slide/metaslide.image.class.php:236 ml-slider.php:878 ml-slider.php:960
#: ml-slider.php:1072 ml-slider.php:2517 ml-slider.php:2558
msgid "Access denied. Sorry, you do not have permission to complete this task."
msgstr ""
"Acceso denegado. Lo siento, no tienes el permiso para completar esta tarea."

#: admin/Notices.php:374 inc/slide/metaslide.class.php:158
#: inc/slide/metaslide.image.class.php:141
#: inc/slide/metaslide.image.class.php:245
#: inc/slide/metaslide.image.class.php:367 ml-slider.php:887 ml-slider.php:969
#: ml-slider.php:1081 ml-slider.php:2526 ml-slider.php:2567
msgid "Bad request"
msgstr "Solicitud incorrecta"

#: admin/Notices.php:382
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""
"El elemento no existe. Por favor, actualiza la página e inténtalo de nuevo."

#: admin/Notices.php:395
msgid "The option was successfully updated"
msgstr "La opción se ha actualizado con éxito."

#: admin/Notices.php:461
msgid "The requested data does not exist."
msgstr "Los datos solicitados no existen."

#: admin/Notices.php:486
msgid "The attempt to update the option failed."
msgstr "El intento de actualización ha fallado."

#: admin/Pages.php:130
msgid "URL"
msgstr "URL"

#: admin/Pages.php:131 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Subtítulo"

#: admin/Pages.php:132
msgid "New Window"
msgstr "Nueva ventana"

#: admin/Pages.php:133
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""
"Por favor, confirma que deseas eliminar esta presentación de diapositivas."

#: admin/Pages.php:134
msgid "Undo"
msgstr "Deshacer"

#: admin/Pages.php:135
msgid "Slide restored"
msgstr "Diapositiva restaurada"

#: admin/Pages.php:136
msgid "Slide deleted"
msgstr "Diapositiva eliminada"

#: admin/Pages.php:137 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr "Correcto"

#: admin/Pages.php:138
msgid "Item was copied to your clipboard"
msgstr "El elemento ha sido copiado a tu portapapeles"

#: admin/Pages.php:139
msgid "Press to undo"
msgstr "Haz clic para deshacer"

#: admin/Pages.php:141
msgid "Select replacement image"
msgstr "Selecciona la imagen de sustitución"

#: admin/Pages.php:151
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Cuidado: Estos ajustes son solo para desarrolladores avanzados. Si tienes "
"dudas, déjalo marcado."

#: admin/routes/api.php:419
msgid "The request format was not valid."
msgstr "El formato de la petición no era válido."

#: admin/routes/api.php:427 admin/routes/api.php:549
msgid "This slideshow is no longer available."
msgstr "Este carrusel ya no está disponible."

#: admin/routes/api.php:514
msgid "Nothing to import."
msgstr "Nada que importar."

#: admin/routes/api.php:556
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""
"Esto no era una presentación de diapositivas, así que no podemos eliminarla."

#: admin/routes/api.php:769
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""
"Esto no es un pase de diapositivas, por lo que no se puede actualizar el "
"ajuste."

#: admin/routes/api.php:878
msgid "The title cannot be empty."
msgstr "El título no puede estar vacío."

#: admin/routes/api.php:882 admin/routes/api.php:1069
msgid "The field (%s) cannot be empty"
msgstr "El campo (%s) no puede estar vacío"

#: admin/routes/api.php:1059 admin/assets/dist/js/app.js:2
msgid "Maximum Number of Custom Field in Post Feed Sliders"
msgstr ""
"Número máximo de campos personalizados en los controles deslizantes de feed "
"de entradas"

#: admin/routes/api.php:1165
msgid "Import slug not found"
msgstr "No se ha encontrado el slug de importación"

#: admin/routes/api.php:1181
msgid "Import data could not be processed"
msgstr "No se han podido procesar los datos de importación"

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr "No hemos podido encontrar ninguna imagen que importar."

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr "Nueva presentación de diapositivas"

#: admin/slideshows/Settings.php:85 inc/slider/metaslider.class.php:143
msgid "Previous"
msgstr "Anterior"

#: admin/slideshows/Settings.php:86 inc/slider/metaslider.class.php:144
#: themes/radix/v1.0.0/theme.php:40
msgid "Next"
msgstr "Siguiente"

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr "No se han encontrado temas."

#: admin/slideshows/Themes.php:277
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""
"Hemos quitado el tema que has seleccionado ya que no estaba disponible. ¿Se "
"ha borrado la carpeta?"

#: admin/Table.php:38
msgid ""
"You don't have any slideshows yet. Click %shere%s to create a new slideshow."
msgstr ""
"Todavía no tienes ningún pase de diapositivas. Haz clic %saquí%s para crear "
"un nuevo pase de diapositivas."

#: admin/Table.php:55
msgid "Published"
msgstr "Publicado"

#: admin/Table.php:59 admin/Table.php:87 admin/Table.php:337
msgid "Trash"
msgstr "Papelera"

#: admin/Table.php:69 admin/views/pages/parts/toolbar.php:44
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr "Vista previa"

#: admin/Table.php:70 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Título"

#: admin/Table.php:71
msgid "Created"
msgstr "Creado"

#: admin/Table.php:72 admin/views/pages/parts/slider-settings-legacy.php:946
#: admin/views/pages/parts/slider-settings.php:747
msgid "Shortcode"
msgstr "Shortcode"

#: admin/Table.php:82 admin/Table.php:322 inc/slide/metaslide.class.php:406
msgid "Restore"
msgstr "Restaurar"

#: admin/Table.php:83 admin/Table.php:323 inc/slide/metaslide.class.php:416
msgid "Delete Permanently"
msgstr "Borrar permanentemente"

#: admin/Table.php:131 admin/views/pages/parts/shortcode.php:11
msgid "Click to copy shortcode."
msgstr "Haz clic para copiar el shortcode."

#: admin/Table.php:336
msgid "Edit"
msgstr "Editar"

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr "Logotipo"

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr "Descartar"

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr "Pases de diapositivas"

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr "Añadir nueva"

#: admin/views/pages/dashboard.php:28
msgid "Slideshows permanently deleted."
msgstr "Pases de diapositivas borrados permanentemente."

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr "Buscar"

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr "Actualización obligatoria del navegador"

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""
"Parece ser que estás usando %s. Aunque MetaSlider es compatible con %s en la "
"vista pública de la web en la que los usuarios ven tus pases de "
"diapositivas, algunas de las herramientas que ofrecemos aquí necesitan un "
"navegador moderno."

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr "Microsoft Internet Explorer 11"

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr "IE11"

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr "Actualiza Internet Explorer"

#: admin/views/pages/parts/slider-settings-legacy.php:20
#: admin/views/pages/parts/slider-settings.php:24
msgid "Main Options"
msgstr "Opciones principales"

#: admin/views/pages/parts/slider-settings-legacy.php:30
#: admin/views/pages/parts/slider-settings-legacy.php:676
#: admin/views/pages/parts/slider-settings.php:34
msgid "Width"
msgstr "Ancho"

#: admin/views/pages/parts/slider-settings-legacy.php:32
#: admin/views/pages/parts/slider-settings.php:36
#: admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Anchura de la presentación de diapositivas"

#: admin/views/pages/parts/slider-settings-legacy.php:33
#: admin/views/pages/parts/slider-settings-legacy.php:46
#: admin/views/pages/parts/slider-settings-legacy.php:546
#: admin/views/pages/parts/slider-settings.php:37
#: admin/views/pages/parts/slider-settings.php:50
#: admin/views/pages/parts/slider-settings.php:475
msgid "px"
msgstr "px"

#: admin/views/pages/parts/slider-settings-legacy.php:43
#: admin/views/pages/parts/slider-settings-legacy.php:692
#: admin/views/pages/parts/slider-settings.php:47
msgid "Height"
msgstr "Alto"

#: admin/views/pages/parts/slider-settings-legacy.php:45
#: admin/views/pages/parts/slider-settings.php:49
msgid "Slideshow height"
msgstr "Altura de la presentación de diapositivas"

#: admin/views/pages/parts/slider-settings-legacy.php:52
#: admin/views/pages/parts/slider-settings.php:56
msgid "Transition Effect"
msgstr "Efecto de la transición"

#: admin/views/pages/parts/slider-settings-legacy.php:54
#: admin/views/pages/parts/slider-settings.php:58
msgid "This animation is used when changing slides."
msgstr "Esta animación se utiliza al cambiar de diapositiva."

#: admin/views/pages/parts/slider-settings-legacy.php:68
#: admin/views/pages/parts/slider-settings-legacy.php:564
#: admin/views/pages/parts/slider-settings.php:493
msgid "Random"
msgstr "Aleatorio"

#: admin/views/pages/parts/slider-settings-legacy.php:72
msgid "Swirl"
msgstr "Remolino"

#: admin/views/pages/parts/slider-settings-legacy.php:76
msgid "Rain"
msgstr "Lluvia"

#: admin/views/pages/parts/slider-settings-legacy.php:80
msgid "Straight"
msgstr "Recto"

#: admin/views/pages/parts/slider-settings-legacy.php:84
msgid "Slice Down"
msgstr "Cortar abajo"

#: admin/views/pages/parts/slider-settings-legacy.php:88
msgid "Slice Up"
msgstr "Cortar"

#: admin/views/pages/parts/slider-settings-legacy.php:92
msgid "Slice Up Left"
msgstr "Cortar arriba izquierda"

#: admin/views/pages/parts/slider-settings-legacy.php:96
msgid "Slide Up Down"
msgstr "Deslizar arriba abajo"

#: admin/views/pages/parts/slider-settings-legacy.php:100
msgid "Slice Up Down Left"
msgstr "Cortar arriba abajo izquierda"

#: admin/views/pages/parts/slider-settings-legacy.php:104
#: admin/views/pages/parts/slider-settings.php:72
msgid "Fade"
msgstr "Fundido"

#: admin/views/pages/parts/slider-settings-legacy.php:108
msgid "Fold"
msgstr "Doblar"

#: admin/views/pages/parts/slider-settings-legacy.php:112
msgid "Slide in Right"
msgstr "Deslizar desde la derecha"

#: admin/views/pages/parts/slider-settings-legacy.php:116
msgid "Slide in Left"
msgstr "Deslizar desde la izquierda"

#: admin/views/pages/parts/slider-settings-legacy.php:120
msgid "Box Random"
msgstr "Caja al azar"

#: admin/views/pages/parts/slider-settings-legacy.php:124
msgid "Box Rain"
msgstr "Box Rain"

#: admin/views/pages/parts/slider-settings-legacy.php:128
msgid "Box Rain Reverse"
msgstr "Box Rain Reverse"

#: admin/views/pages/parts/slider-settings-legacy.php:132
msgid "Box Rain Grow"
msgstr "Crecer lluvia de cajas"

#: admin/views/pages/parts/slider-settings-legacy.php:136
msgid "Box Rain Grow Reverse"
msgstr "Box Rain Grow Reverse"

#: admin/views/pages/parts/slider-settings-legacy.php:140
#: admin/views/pages/parts/slider-settings.php:76
msgid "Slide"
msgstr "Diapositiva"

#: admin/views/pages/parts/slider-settings-legacy.php:147
#: admin/views/pages/parts/slider-settings.php:83
msgid "Arrows"
msgstr "Flechas"

#: admin/views/pages/parts/slider-settings-legacy.php:152
#: admin/views/pages/parts/slider-settings.php:88
msgid "Show the Previous / Next arrows."
msgstr "Mostrar las flechas anterior/siguiente."

#: admin/views/pages/parts/slider-settings-legacy.php:166
#: admin/views/pages/parts/slider-settings.php:102
msgid "Navigation"
msgstr "Navegación"

#: admin/views/pages/parts/slider-settings-legacy.php:169
#: admin/views/pages/parts/slider-settings.php:105
msgid "Show navigation options so that users can browse the slides."
msgstr ""
"Muestra opciones de navegación para que los usuarios puedan navegar por las "
"diapositivas."

#: admin/views/pages/parts/slider-settings-legacy.php:175
#: admin/views/pages/parts/slider-settings.php:111
msgid "Hidden"
msgstr "Oculto"

#: admin/views/pages/parts/slider-settings-legacy.php:178
#: admin/views/pages/parts/slider-settings.php:114
msgid "Dots"
msgstr "Puntos"

#: admin/views/pages/parts/slider-settings-legacy.php:181
msgid "Thumbnail"
msgstr "Miniatura"

#: admin/views/pages/parts/slider-settings-legacy.php:185
msgid "Filmstrip"
msgstr "Película"

#: admin/views/pages/parts/slider-settings-legacy.php:211
#: admin/views/pages/parts/slider-settings.php:147
msgid "100% width"
msgstr "Ancho 100%"

#: admin/views/pages/parts/slider-settings-legacy.php:216
#: admin/views/pages/parts/slider-settings.php:152
msgid "Stretch the slideshow output to fill it's parent container."
msgstr ""
"Ensancha la presentación de diapositivas hasta rellenar el contenedor padre."

#: admin/views/pages/parts/slider-settings-legacy.php:238
#: admin/views/pages/parts/slider-settings.php:168
msgid "Theme"
msgstr "Tema"

#: admin/views/pages/parts/slider-settings-legacy.php:273
#: admin/views/pages/parts/slider-settings.php:202
msgid "Mobile Options"
msgstr "Opciones de móvil"

#: admin/views/pages/parts/slider-settings-legacy.php:278
#: admin/views/pages/parts/slider-settings.php:207
msgid "Hide arrows on"
msgstr "Ocultar flechas en"

#: admin/views/pages/parts/slider-settings-legacy.php:283
#: admin/views/pages/parts/slider-settings.php:212
msgid ""
"When enabled this setting will hide the arrows on screen widths less than "
"%spx."
msgstr ""
"Cuando está activado, este ajuste oculta las flechas en las pantallas con "
"anchuras inferiores a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:293
#: admin/views/pages/parts/slider-settings-legacy.php:304
#: admin/views/pages/parts/slider-settings.php:222
#: admin/views/pages/parts/slider-settings.php:233
msgid ""
"When enabled this setting will hide the arrows on screen widths of %1$spx to "
"%2$spx."
msgstr ""
"Cuando está activado, este ajuste oculta las flechas en las pantallas con "
"anchuras comprendidas entre %1$spx y %2$spx."

#: admin/views/pages/parts/slider-settings-legacy.php:315
#: admin/views/pages/parts/slider-settings.php:244
msgid ""
"When enabled this setting will hide the arrows on screen widths equal to or "
"greater than %spx."
msgstr ""
"Cuando está activado, este ajuste oculta las flechas en pantallas con "
"anchuras iguales o superiores a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:327
#: admin/views/pages/parts/slider-settings.php:256
msgid "Hide navigation on"
msgstr "Ocultar navegación en"

#: admin/views/pages/parts/slider-settings-legacy.php:332
#: admin/views/pages/parts/slider-settings.php:261
msgid ""
"When enabled this setting will hide the navigation on screen widths less "
"than %spx."
msgstr ""
"Cuando está activado, este ajuste oculta la navegación en pantallas con "
"anchuras inferiores a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:342
#: admin/views/pages/parts/slider-settings-legacy.php:353
#: admin/views/pages/parts/slider-settings.php:271
#: admin/views/pages/parts/slider-settings.php:282
msgid ""
"When enabled this setting will hide the navigation on screen widths of "
"%1$spx to %2$spx."
msgstr ""
"Cuando está activado, este ajuste oculta la navegación en pantallas con "
"anchuras comprendidas entre %1$spx a %2$spx."

#: admin/views/pages/parts/slider-settings-legacy.php:364
#: admin/views/pages/parts/slider-settings.php:293
msgid ""
"When enabled this setting will hide the navigation on screen widths equal to "
"or greater than %spx."
msgstr ""
"Cuando está activado, este ajuste oculta la navegación en pantallas con "
"anchuras iguales o superiores a %spx."

#: admin/views/pages/parts/slider-settings-legacy.php:389
#: admin/views/pages/parts/slider-settings.php:318
msgid "Advanced Options"
msgstr "Ajustes avanzados"

#: admin/views/pages/parts/slider-settings-legacy.php:394
#: admin/views/pages/parts/slider-settings.php:323
msgid "Center align"
msgstr "Centrar"

#: admin/views/pages/parts/slider-settings-legacy.php:399
#: admin/views/pages/parts/slider-settings.php:328
msgid "Center align the slideshow in the available space on your website."
msgstr ""
"Centra el pase de diapositivas en el espacio disponible en tu sitio web."

#: admin/views/pages/parts/slider-settings-legacy.php:407
#: admin/views/pages/parts/slider-settings.php:336
msgid "Auto play"
msgstr "Auto arranque"

#: admin/views/pages/parts/slider-settings-legacy.php:412
#: admin/views/pages/parts/slider-settings.php:341
msgid "Transition between slides automatically."
msgstr "Transición entre diapositivas automáticamente."

#: admin/views/pages/parts/slider-settings-legacy.php:420
#: admin/views/pages/parts/slider-settings.php:349
msgid "Play / Pause Button"
msgstr "Botón de reproducción/pausa"

#: admin/views/pages/parts/slider-settings-legacy.php:425
#: admin/views/pages/parts/slider-settings.php:354
msgid "This allows user to pause or resume Auto Play on the slideshow."
msgstr ""
"Esto permite al usuario pausar o reanudar la reproducción automática del "
"pase de diapositivas."

#: admin/views/pages/parts/slider-settings-legacy.php:433
#: admin/views/pages/parts/slider-settings.php:362
msgid "Loop"
msgstr "Bucle"

#: admin/views/pages/parts/slider-settings-legacy.php:435
#: admin/views/pages/parts/slider-settings.php:364
msgid ""
"If you choose \"Loop continuously\", the slides will loop infinitely. If you "
"choose \"Stop on first slide\", the slideshow will stop on the first slide "
"after showing all the items. If you choose \"Stop on last slide\", the "
"slides will stop on the last slide."
msgstr ""
"Si eliges «Continuamente», las diapositivas se mostrarán en bucle infinito. "
"Si eliges «Detener en la primera diapositiva», la presentación se detendrá "
"en la primera diapositiva después de mostrar todos los elementos. Si eliges "
"«Detener en la última diapositiva», las diapositivas se detendrán en la "
"última diapositiva."

#: admin/views/pages/parts/slider-settings-legacy.php:438
#: admin/views/pages/parts/slider-settings.php:367
msgid "Loop continuously"
msgstr "En bucle continuo"

#: admin/views/pages/parts/slider-settings-legacy.php:439
#: admin/views/pages/parts/slider-settings.php:368
msgid "Stop on last slide"
msgstr "Detener en la última diapositiva"

#: admin/views/pages/parts/slider-settings-legacy.php:440
#: admin/views/pages/parts/slider-settings.php:369
#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:489
msgid "Stop on first slide"
msgstr "Detener en la primera diapositiva"

#: admin/views/pages/parts/slider-settings-legacy.php:446
#: admin/views/pages/parts/slider-settings.php:375
msgid "Image Crop"
msgstr "Recorte de la imagen"

#: admin/views/pages/parts/slider-settings-legacy.php:451
#: admin/views/pages/parts/slider-settings.php:380
msgid "Smart Crop"
msgstr "Recorte inteligente"

#: admin/views/pages/parts/slider-settings-legacy.php:458
#: admin/views/pages/parts/slider-settings.php:387
msgid "Standard"
msgstr "Estándar"

#: admin/views/pages/parts/slider-settings-legacy.php:465
#: admin/views/pages/parts/slider-settings.php:394
msgid "Disabled"
msgstr "Desactivado"

#: admin/views/pages/parts/slider-settings-legacy.php:472
#: admin/views/pages/parts/slider-settings.php:401
msgid "Disabled (Smart Pad)"
msgstr "Disabled (Smart Pad)"

#: admin/views/pages/parts/slider-settings-legacy.php:479
#: admin/views/pages/parts/slider-settings.php:408
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size."
msgstr ""
"El recorte inteligente asegura que tus diapositivas adaptables sean "
"recortadas en una proporción correcta respecto a la presentación de "
"diapositivas."

#: admin/views/pages/parts/slider-settings-legacy.php:487
#: admin/views/pages/parts/slider-settings.php:416
msgid "Smooth Height"
msgstr "Altura suave"

#: admin/views/pages/parts/slider-settings-legacy.php:492
#: admin/views/pages/parts/slider-settings.php:421
msgid "Allow navigation to follow the slide's height smoothly."
msgstr ""
"Permitir que la navegación siga suavemente la altura de la diapositiva."

#: admin/views/pages/parts/slider-settings-legacy.php:500
#: admin/views/pages/parts/slider-settings.php:429
msgid "Carousel mode"
msgstr "Modo carrusel"

#: admin/views/pages/parts/slider-settings-legacy.php:505
msgid ""
"Display multiple slides at once. Slideshow output will be 100% wide. "
"Carousel Mode only uses the \"Slide\" Effect."
msgstr ""
"Muestra varias diapositivas a la vez. El pase de diapositivas tendrá un "
"ancho del 100%. El modo «Carrusel» solo utiliza el efecto «Diapositiva»."

#: admin/views/pages/parts/slider-settings-legacy.php:523
#: admin/views/pages/parts/slider-settings.php:452
msgid "Loop Carousel Continuously"
msgstr "Carrusel en bucle continuo"

#: admin/views/pages/parts/slider-settings-legacy.php:528
#: admin/views/pages/parts/slider-settings.php:457
msgid ""
"Infinite loop of slides when Carousel Mode is enabled. This option disables "
"arrows and navigation."
msgstr ""
"Bucle infinito de diapositivas cuando el modo carrusel está activado. Esta "
"opción desactiva las flechas y la navegación."

#: admin/views/pages/parts/slider-settings-legacy.php:539
#: admin/views/pages/parts/slider-settings.php:468
msgid "Carousel margin"
msgstr "Margen de carrusel"

#: admin/views/pages/parts/slider-settings-legacy.php:542
#: admin/views/pages/parts/slider-settings.php:471
msgid "Pixel margin between slides in carousel."
msgstr "Margen en píxeles entre diapositivas en el carrusel."

#: admin/views/pages/parts/slider-settings-legacy.php:551
#: admin/views/pages/parts/slider-settings.php:480
msgid "Fade in"
msgstr "Fundido de entrada"

#: admin/views/pages/parts/slider-settings-legacy.php:556
#: admin/views/pages/parts/slider-settings.php:485
msgid ""
"This adds an animation when the slideshow loads. It only uses the \"Fade\" "
"transition effect."
msgstr ""
"Esto añade una animación cuando se carga el pase de diapositivas. Solo "
"utiliza el efecto de transición «Fundido»."

#: admin/views/pages/parts/slider-settings-legacy.php:569
#: admin/views/pages/parts/slider-settings.php:498
msgid "Randomise the order of the slides."
msgstr "Ordenar aleatoriamente las diapositivas."

#: admin/views/pages/parts/slider-settings-legacy.php:577
#: admin/views/pages/parts/slider-settings.php:506
msgid "Hover pause"
msgstr "Pausar cuando situes el ratón encima"

#: admin/views/pages/parts/slider-settings-legacy.php:582
#: admin/views/pages/parts/slider-settings.php:511
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Pausa la presentación de diapositivas al pasar el cursor sobre la misma, "
"luego vuelve a ponerse en marcha cuando quites el cursor."

#: admin/views/pages/parts/slider-settings-legacy.php:590
#: admin/views/pages/parts/slider-settings.php:519
msgid "Reverse"
msgstr "Invertir"

#: admin/views/pages/parts/slider-settings-legacy.php:595
#: admin/views/pages/parts/slider-settings.php:524
msgid "Reverse the animation direction."
msgstr "Invertir orden de la animación."

#: admin/views/pages/parts/slider-settings-legacy.php:603
#: admin/views/pages/parts/slider-settings.php:532
msgid "Touch Swipe"
msgstr "Deslizar tocando"

#: admin/views/pages/parts/slider-settings-legacy.php:608
#: admin/views/pages/parts/slider-settings.php:537
msgid "Allow touch swipe navigation of the slider on touch-enabled devices."
msgstr "Permitir la navegación táctil del carrusel en dispositivos táctiles."

#: admin/views/pages/parts/slider-settings-legacy.php:621
#: admin/views/pages/parts/slider-settings.php:550
msgid "Slide delay"
msgstr "Retraso de la diapositiva"

#: admin/views/pages/parts/slider-settings-legacy.php:623
#: admin/views/pages/parts/slider-settings.php:552
msgid "How long to display each slide, in milliseconds."
msgstr "Cuanto tiempo se muestra cada diapositiva en milisegundos."

#: admin/views/pages/parts/slider-settings-legacy.php:627
#: admin/views/pages/parts/slider-settings-legacy.php:647
#: admin/views/pages/parts/slider-settings-legacy.php:776
#: admin/views/pages/parts/slider-settings-legacy.php:808
#: admin/views/pages/parts/slider-settings.php:556
#: admin/views/pages/parts/slider-settings.php:576
msgctxt "Short for milliseconds"
msgid "ms"
msgstr "ms"

#: admin/views/pages/parts/slider-settings-legacy.php:641
#: admin/views/pages/parts/slider-settings.php:570
msgid "Transition Speed"
msgstr "Velocidad de la transición"

#: admin/views/pages/parts/slider-settings-legacy.php:643
#: admin/views/pages/parts/slider-settings.php:572
msgid ""
"Choose the speed of the animation in milliseconds. You can select the "
"animation in the \"Effect\" field."
msgstr ""
"Choose the speed of the animation in milliseconds. You can select the "
"animation in the \"Effect\" field."

#: admin/views/pages/parts/slider-settings-legacy.php:661
#: admin/views/pages/parts/slider-settings-legacy.php:663
msgid "Number of slices"
msgstr "Número de cortes"

#: admin/views/pages/parts/slider-settings-legacy.php:673
#: admin/views/pages/parts/slider-settings-legacy.php:678
#: admin/views/pages/parts/slider-settings-legacy.php:689
#: admin/views/pages/parts/slider-settings-legacy.php:694
msgid "Number of squares"
msgstr "Nmúero de cuadros"

#: admin/views/pages/parts/slider-settings-legacy.php:700
#: admin/views/pages/parts/slider-settings.php:585
msgid "Slide direction"
msgstr "Dirección del pase"

#: admin/views/pages/parts/slider-settings-legacy.php:702
#: admin/views/pages/parts/slider-settings.php:587
msgid ""
"Select the direction that slides will move. Vertical will not work if "
"\"Carousel mode\" is enabled or \"Effect\" is set to \"Fade\"."
msgstr ""
"Selecciona la dirección en la que se moverán las diapositivas. Vertical no "
"funcionará si «Modo carrusel» está activado o «Efecto» está configurado como "
"«Fundido»."

#: admin/views/pages/parts/slider-settings-legacy.php:709
#: admin/views/pages/parts/slider-settings.php:594
msgid "Horizontal"
msgstr "Horizontal"

#: admin/views/pages/parts/slider-settings-legacy.php:716
#: admin/views/pages/parts/slider-settings.php:601
msgid "Vertical"
msgstr "Vertical"

#: admin/views/pages/parts/slider-settings-legacy.php:727
#: admin/views/pages/parts/slider-settings.php:612
msgid "Easing"
msgstr "Suavizado"

#: admin/views/pages/parts/slider-settings-legacy.php:729
#: admin/views/pages/parts/slider-settings.php:614
msgid ""
"Easing adds gradual acceleration and deceleration to slide transitions, "
"rather than abrupt starts and stops. Easing only uses the \"Slide\" Effect."
msgstr ""
"La suavización añade una aceleración y desaceleración gradual a las "
"transiciones de diapositivas, en lugar de arranques y paradas bruscos. La "
"suavización solo utiliza el efecto «Diapositiva»."

#: admin/views/pages/parts/slider-settings-legacy.php:739
msgid "Previous text"
msgstr "Texto para «Anterior»"

#: admin/views/pages/parts/slider-settings-legacy.php:741
msgid "Set the text for the \"previous\" direction item."
msgstr "Establece el texto para el elemento de dirección «anterior»."

#: admin/views/pages/parts/slider-settings-legacy.php:752
msgid "Next text"
msgstr "Texto para «Siguiente»"

#: admin/views/pages/parts/slider-settings-legacy.php:754
msgid "Set the text for the \"next\" direction item."
msgstr "Establece el texto para el elemento de dirección «siguiente»."

#: admin/views/pages/parts/slider-settings-legacy.php:770
msgid "Square delay"
msgstr "Retardo entre cuadros"

#: admin/views/pages/parts/slider-settings-legacy.php:772
msgid "Delay between squares in ms."
msgstr "Retardo entre cuadros en ms."

#: admin/views/pages/parts/slider-settings-legacy.php:786
msgid "Opacity"
msgstr "Opacidad"

#: admin/views/pages/parts/slider-settings-legacy.php:788
msgid "Opacity of title and navigation, between 0 and 1."
msgstr "Opacidad del título y navegación, entre 0 y 1."

#: admin/views/pages/parts/slider-settings-legacy.php:802
msgid "Caption speed"
msgstr "Velocidad del subtítulo"

#: admin/views/pages/parts/slider-settings-legacy.php:804
msgid "Set the fade in speed of the caption."
msgstr "Establece la velocidad del fundido de la leyenda."

#: admin/views/pages/parts/slider-settings-legacy.php:817
#: admin/views/pages/parts/slider-settings.php:624
msgid "Accessibility Options"
msgstr "Opciones de accesibilidad"

#: admin/views/pages/parts/slider-settings-legacy.php:823
#: admin/views/pages/parts/slider-settings.php:630
msgid "Keyboard Controls"
msgstr "Controles del teclado"

#: admin/views/pages/parts/slider-settings-legacy.php:828
#: admin/views/pages/parts/slider-settings.php:635
msgid "Use arrow keys to get to the next slide."
msgstr "Utiliza las teclas de flecha para pasar a la siguiente diapositiva."

#: admin/views/pages/parts/slider-settings-legacy.php:836
#: admin/views/pages/parts/slider-settings.php:643
msgid "Tabindex for navigation"
msgstr "Tabindex para la navegación"

#: admin/views/pages/parts/slider-settings-legacy.php:841
#: admin/views/pages/parts/slider-settings.php:648
msgid "This helps make the slideshow navigation more accessible."
msgstr ""
"Esto hace que la navegación por el pase de diapositivas sea más accesible."

#: admin/views/pages/parts/slider-settings-legacy.php:849
#: admin/views/pages/parts/slider-settings.php:656
msgid "ARIA Live"
msgstr "Aria Live"

#: admin/views/pages/parts/slider-settings-legacy.php:854
#: admin/views/pages/parts/slider-settings.php:661
msgid ""
"If Autoplay is enabled, this causes screen readers to announce that the "
"slides are changing."
msgstr ""
"Si la reproducción automática está activada, esto hace que los lectores de "
"pantalla anuncien que las diapositivas están cambiando."

#: admin/views/pages/parts/slider-settings-legacy.php:862
#: admin/views/pages/parts/slider-settings.php:669
msgid "ARIA Current"
msgstr "ARIA actual"

#: admin/views/pages/parts/slider-settings-legacy.php:867
#: admin/views/pages/parts/slider-settings.php:674
msgid ""
"This is used on the navigation button for the active slide. It helps screen "
"readers understand which slide is active."
msgstr ""
"Esto se utiliza en el botón de navegación para la diapositiva activa. Ayuda "
"a los lectores de pantalla a entender qué diapositiva está activa."

#: admin/views/pages/parts/slider-settings-legacy.php:875
#: admin/views/pages/parts/slider-settings.php:682
msgid "Developer Options"
msgstr "Opciones de desarrollador"

#: admin/views/pages/parts/slider-settings-legacy.php:881
#: admin/views/pages/parts/slider-settings.php:688
msgid "CSS classes"
msgstr "Clases CSS"

#: admin/views/pages/parts/slider-settings-legacy.php:883
#: admin/views/pages/parts/slider-settings.php:690
msgid ""
"Enter custom CSS classes to apply to the slider wrapper. Separate multiple "
"classes with a space."
msgstr ""
"Introduce clases CSS personalizadas para aplicarlas a la envoltura del "
"carrusel. Separa varias clases con un espacio."

#: admin/views/pages/parts/slider-settings-legacy.php:894
#: admin/views/pages/parts/slider-settings.php:701
msgid "Print CSS"
msgstr "Imprimir CSS"

#: admin/views/pages/parts/slider-settings-legacy.php:899
#: admin/views/pages/parts/slider-settings.php:706
msgid "Uncheck this if you would like to include your own CSS."
msgstr "Desmarca esta si quieres incluir tu propio CSS."

#: admin/views/pages/parts/slider-settings-legacy.php:907
#: admin/views/pages/parts/slider-settings.php:714
msgid "Print JS"
msgstr "Imprimir JS"

#: admin/views/pages/parts/slider-settings-legacy.php:912
#: admin/views/pages/parts/slider-settings.php:719
msgid "Uncheck this if you would like to include your own Javascript."
msgstr "Desmarca esta si quieres incluír tu propio JavaScript."

#: admin/views/pages/parts/slider-settings-legacy.php:920
#: admin/views/pages/parts/slider-settings.php:727
msgid "No conflict mode"
msgstr "Sin modo de conflicto"

#: admin/views/pages/parts/slider-settings-legacy.php:925
#: admin/views/pages/parts/slider-settings.php:732
msgid "Delay adding the flexslider class to the slideshow."
msgstr "Retardo añadiendo la clase «flexslider» al pase de diapositivas."

#: admin/views/pages/parts/slider-settings-legacy.php:969
#: admin/views/pages/parts/slider-settings.php:769
msgid "Trashed slides"
msgstr "Diapositivas eliminadas"

#: admin/views/pages/parts/slider-settings-legacy.php:991
#: admin/views/pages/parts/slider-settings.php:779
msgid "View trashed slides"
msgstr "Ver diapositivas borradas"

#: admin/views/pages/parts/slider-settings.php:117
msgid "Thumbnail (Pro)"
msgstr "Miniatura (Pro)"

#: admin/views/pages/parts/slider-settings.php:121
msgid "Filmstrip (Pro)"
msgstr "Película (Pro)"

#: admin/views/pages/parts/slider-settings.php:434
msgid ""
"Display multiple slides at once. Slideshow output will be 100% wide. "
"Carousel Mode only uses the 'Slide' Effect."
msgstr ""
"Muestra varias diapositivas a la vez. El pase de diapositivas tendrá un "
"ancho del 100%. El modo «Carrusel» sólo utiliza el efecto «Deslizar»."

#: admin/views/pages/parts/toolbar.php:25
msgid "Add a new slide"
msgstr "Añadir nueva diapositiva"

#: admin/views/pages/parts/toolbar.php:29
msgid "Add Slide"
msgstr "Añadir diapositiva"

#: admin/views/pages/parts/toolbar.php:35
msgid "Save & open the preview"
msgstr "Guardar y abrir la vista previa"

#: admin/views/pages/parts/toolbar.php:35
msgctxt "This is a keyboard shortcut."
msgid " (alt + p)"
msgstr " (alt + p)"

#: admin/views/pages/parts/toolbar.php:60
msgid "Add a new slideshow"
msgstr "Añadir nuevo pase de diapositivas"

#: admin/views/pages/parts/toolbar.php:64
msgid "New"
msgstr "Nuevo"

#: admin/views/pages/parts/toolbar.php:69
msgid "Duplicate this slideshow"
msgstr "Duplica este pase de diapositivas"

#: admin/views/pages/parts/toolbar.php:81
msgid "Duplicate"
msgstr "Duplicar"

#: admin/views/pages/parts/toolbar.php:86
msgid "Adding custom CSS is a MetaSlider Pro feature. Click to learn more."
msgstr ""
"Añadir CSS personalizado es una característica de MetaSlider Pro. Haz clic "
"para saber más."

#: admin/views/pages/parts/toolbar.php:90
msgid "Add CSS"
msgstr "Añadir CSS"

#: admin/views/pages/parts/toolbar.php:100
msgid "Save slideshow"
msgstr "Guardar presentación de diapositivas"

#: admin/views/pages/parts/toolbar.php:114 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Guardar"

#: admin/views/pages/parts/toolbar.php:125 ml-slider.php:1870
msgid "Return to Published Slides"
msgstr "Volver a las diapositivas publicadas"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Ajustes"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr "Centro de ayuda"

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr "Importar"

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr "Exportar"

#: admin/views/pages/start.php:5
msgid "Carousel Slideshow"
msgstr "Carrusel de diapositivas"

#: admin/views/pages/start.php:9
msgid "Carousel Slideshow with Captions"
msgstr "Carrusel de diapositivas con subtítulos"

#: admin/views/pages/start.php:20
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""
"Gracias por usar MetaSlider, el plugin de pases de diapositivas para "
"WordPress"

#: admin/views/pages/start.php:26
msgid "Create a slideshow with your images"
msgstr "Crea un pase de diapositivas con tus imágenes"

#: admin/views/pages/start.php:27
msgid "Choose your own images to start a new slideshow."
msgstr "Elige tus propias imágenes para iniciar un nuevo pase de diapositivas."

#: admin/views/pages/start.php:37
msgid "Open Media Library"
msgstr "Abrir biblioteca de medios"

#: admin/views/pages/start.php:52
msgid "Create a slideshow with sample images"
msgstr "Crear una presentación de diapositivas con imágenes de muestra"

#: admin/views/pages/start.php:55
msgid "Create a demo slideshow."
msgstr "Crea un pase de diapositivas de demostración."

#: admin/views/pages/start.php:62
msgid "Blank Slideshow"
msgstr "Presentación en blanco"

#: admin/views/pages/start.php:63
msgid "Image Slideshow"
msgstr "Presentación de imágenes"

#: admin/views/pages/start.php:77
msgid "Create a Slideshow"
msgstr "Crear una presentación de diapositivas"

#: admin/views/pages/upgrade.php:13
msgid "Comparison Chart"
msgstr "Gráfico de comparación"

#: admin/views/pages/upgrade.php:20
msgid "Free"
msgstr "Gratuito"

#: admin/views/pages/upgrade.php:21
msgid "Pro"
msgstr "Pro"

#: admin/views/pages/upgrade.php:25 admin/views/pages/upgrade.php:144
msgid "Installed"
msgstr "Instalado"

#: admin/views/pages/upgrade.php:26 admin/views/pages/upgrade.php:145
#: admin/views/slides/tabs/schedule.php:10 admin/assets/dist/js/app.js:2
msgid "Upgrade now"
msgstr "Actualizar ahora"

#: admin/views/pages/upgrade.php:30
msgid "Create unlimited slideshows"
msgstr "Crear ilimitados pases de diapositivas"

#: admin/views/pages/upgrade.php:31
msgid "Create and manage as many slideshows as you need."
msgstr "Crea y gestiona tantas diapositivas como necesites."

#: admin/views/pages/upgrade.php:38
msgid "Regular updates"
msgstr "Actualizaciones periódicas."

#: admin/views/pages/upgrade.php:39
msgid "We keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""
"Mantenemos MetaSlider compatible con las últimas versiones de WordPress."

#: admin/views/pages/upgrade.php:46
msgid "Intelligent image cropping"
msgstr "Recorte inteligente de la imagen"

#: admin/views/pages/upgrade.php:47
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""
"La funcionalidad única de recorte inteligente asegura que tus diapositivas "
"se redimensionen a la perfección."

#: admin/views/pages/upgrade.php:54
msgid "Thumbnail navigation"
msgstr "Navegación por miniaturas"

#: admin/views/pages/upgrade.php:55
msgid "Allow users to browse your slideshows using thumbnail navigation."
msgstr ""
"Permite navegar a tu usuarios de manera sencilla por tus pases de "
"diapositivas usando las miniaturas."

#: admin/views/pages/upgrade.php:62
msgid "Add YouTube, Vimeo and Tiktok slides"
msgstr "Añadir diapositivas de YouTube, Vimeo y Tiktok"

#: admin/views/pages/upgrade.php:63
msgid "Easily include videos hosted by YouTube, Vimeo or TikTok."
msgstr "Incluye fácilmente vídeos alojados en YouTube, Vimeo o TikTok."

#: admin/views/pages/upgrade.php:70
msgid "Add local video slides"
msgstr "Añadir diapositivas de vídeo local"

#: admin/views/pages/upgrade.php:71
msgid "Create slideshows with videos from your WordPress media library."
msgstr ""
"Crea pases de diapositivas con los vídeos de tu bliblioteca de medios de "
"WordPress."

#: admin/views/pages/upgrade.php:78
msgid "Add external video slides"
msgstr "Añadir diapositivas de vídeo externo"

#: admin/views/pages/upgrade.php:79
msgid "Create slideshows with external videos."
msgstr "Crea pases de diapositivas con tus vídeos externos"

#: admin/views/pages/upgrade.php:86
msgid "Extra premium themes"
msgstr "Temas premium adicionales"

#: admin/views/pages/upgrade.php:87
msgid ""
"MetaSlider Pro provides stylish and exclusive themes for your slideshows."
msgstr ""
"MetaSlider Pro proporciona temas elegantes y exclusivos para tus pases de "
"diapositivas."

#: admin/views/pages/upgrade.php:94
msgid "Add slide layers"
msgstr "Añadir capas a la diapositiva"

#: admin/views/pages/upgrade.php:95
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""
"Agrega capas a tus diapositivas con más de 50 efectos de transición "
"disponibles."

#: admin/views/pages/upgrade.php:102
msgid "Add Post Feed slides"
msgstr "Añadir feed de diapositivas"

#: admin/views/pages/upgrade.php:103
msgid "Easily build slides based on your WordPress posts."
msgstr "Construye fácilmente diapositivas en base a tus entradas de WordPress."

#: admin/views/pages/upgrade.php:110
msgid "Add custom CSS"
msgstr "Añadir CSS personalizado"

#: admin/views/pages/upgrade.php:111
msgid "Customize your slideshows to fit with your website."
msgstr "Personaliza tus pases de diapositivas para adaptarlos a tu web."

#: admin/views/pages/upgrade.php:118
msgid "Schedule your slides"
msgstr "Programa tus diapositivas"

#: admin/views/pages/upgrade.php:119
msgid "Add a start/end date to individual slides."
msgstr "Añade una fecha de inicio/fin a diapositivas individuales."

#: admin/views/pages/upgrade.php:126
msgid "Toggle your slide's visibility"
msgstr "Cambia la visibilidad de tu diapositiva"

#: admin/views/pages/upgrade.php:127
msgid "Hide any slide, without having to delete them."
msgstr "Oculta cualquier diapositiva, sin tener que borrarla."

#: admin/views/pages/upgrade.php:134
msgid "Premium support"
msgstr "Soporte Premium"

#: admin/views/pages/upgrade.php:135
msgid "Have your specific queries addressed directly by our experts."
msgstr ""
"Haz que tus consultas específicas sean tratadas directamente por nuestros "
"expertos."

#: admin/views/slides/tabs/crop.php:6
msgid "Crop Position"
msgstr "Posición del recorte"

#: admin/views/slides/tabs/crop.php:7
msgid ""
"Choose how images are cropped if their size doesn't exactly match the size "
"of your slideshow. This works if \"Smart Crop\" is selected in the \"Image "
"Crop\" settings."
msgstr ""
"Elige cómo se recortan las imágenes si su tamaño no coincide exactamente con "
"el del pase de diapositivas. Esto funciona si está seleccionado «Recorte "
"inteligente» en los ajustes de «Recorte de imagen»."

#: admin/views/slides/tabs/crop.php:10
msgid "Top Left"
msgstr "Superior izquierdo"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Center"
msgstr "Superior centro"

#: admin/views/slides/tabs/crop.php:12
msgid "Top Right"
msgstr "Superior derecho"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Left"
msgstr "Centro izquierda"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Center"
msgstr "Centrado Centrado"

#: admin/views/slides/tabs/crop.php:15
msgid "Center Right"
msgstr "Centro derecha"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Left"
msgstr "Inferior izquierdo"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Center"
msgstr "Abajo al centro"

#: admin/views/slides/tabs/crop.php:18
msgid "Bottom Right"
msgstr "Inferior derecho"

#: admin/views/slides/tabs/link.php:9
msgid "Image Link URL"
msgstr "URL del enlace de la imagen"

#: admin/views/slides/tabs/link.php:10
msgid ""
"When visitors click on your image slide, they will be taken to this URL."
msgstr ""
"Cuando los visitantes hagan clic en tu diapositiva de imagen, serán "
"redirigidos a esta URL."

#: admin/views/slides/tabs/link.php:20
msgid "New window"
msgstr "Nueva ventana"

#: admin/views/slides/tabs/link.php:22
msgid "Open link in a new window"
msgstr "Abrir el enlace en una ventana nueva"

#: admin/views/slides/tabs/link.php:44
msgid "Image Link Alt Text"
msgstr "Texto alternativo del enlace de la imagen"

#: admin/views/slides/tabs/link.php:45
msgid ""
"This text is used by search engines and visitors using screen readers. "
"Adding Alt text for links is highly recommended."
msgstr ""
"Este texto lo utilizan los motores de búsqueda y los visitantes que utilizan "
"lectores de pantalla. Es muy recomendable añadir texto alternativo a los "
"enlaces."

#: admin/views/slides/tabs/mobile.php:33
msgid "Hide slide on:"
msgstr "Oculta la diapositiva en:"

#: admin/views/slides/tabs/mobile.php:46
msgid ""
"When enabled this setting will hide the slide on screen widths equal to or "
"greater than %spx"
msgstr ""
"Cuando está activado, este ajuste oculta la diapositiva en pantallas de "
"anchura igual o superior a %spx"

#: admin/views/slides/tabs/mobile.php:56
msgid ""
"When enabled this setting will hide the slide on screen widths of %1$spx to "
"%2$spx"
msgstr ""
"Cuando está activado, este ajuste oculta la diapositiva en pantallas de "
"anchura %1$spx a %2$spx"

#: admin/views/slides/tabs/mobile.php:72
msgid "Hide caption on:"
msgstr "Oculta la leyenda en:"

#: admin/views/slides/tabs/mobile.php:85
msgid ""
"When enabled this setting will hide the caption on screen widths equal to or "
"greater than %spx"
msgstr ""
"Cuando está activado, este ajuste oculta la leyenda en pantallas con "
"anchuras iguales o superiores a %spx"

#: admin/views/slides/tabs/mobile.php:95
msgid ""
"When enabled this setting will hide the caption on screen widths of %1$spx "
"to %2$spx"
msgstr ""
"Cuando está activado, este ajuste oculta la leyenda en pantallas de anchura "
"%1$spx a %2$spx"

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""
"Actualiza o activa MetaSlider Pro ahora para añadir una opción de fecha de "
"inicio/fin a tus diapositivas"

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro"
msgstr "Obtén MetaSlider Pro"

#: admin/views/slides/tabs/schedule.php:9
msgid ""
"With MetaSlider Pro, you can schedule your slides. You can choose to show "
"your slides on specific dates, days of the week, or times of day."
msgstr ""
"Con MetaSlider Pro, puedes programar tus diapositivas. Puedes elegir mostrar "
"tus diapositivas en fechas específicas, días de la semana u horas del día."

#: admin/views/slides/tabs/seo.php:7
msgid "Image Title Text"
msgstr "Texto del Título de la Imagen"

#: admin/views/slides/tabs/seo.php:8
msgid ""
"Visitors will see this text if they hover over your image slide. Adding "
"Title text is useful but not required."
msgstr ""
"Los visitantes verán este texto si pasan el ratón por encima de la imagen. "
"Añadir el texto del título es útil pero no obligatorio."

#: admin/views/slides/tabs/seo.php:11
msgid "Enable this to inherit the image title"
msgstr "Activa esto para heredar el título de la imagen"

#: admin/views/slides/tabs/seo.php:13
msgid "Use the image title"
msgstr "Utilizar el título de la imagen"

#: admin/views/slides/tabs/seo.php:33
msgid "Image Alt Text"
msgstr "Texto Alt de la Imagen:"

#: admin/views/slides/tabs/seo.php:34
msgid ""
"This text is used by search engines and visitors using screen readers. "
"Adding Alt text is highly recommended."
msgstr ""
"Este texto es utilizado por los motores de búsqueda y los visitantes que "
"utilizan lectores de pantalla. Es muy recomendable añadir texto alt."

#: admin/views/slides/tabs/seo.php:37
msgid "Enable this to inherit the image alt text"
msgstr "Activa esto para heredar el texto alternativo de la imagen"

#: admin/views/slides/tabs/seo.php:39
msgid "Use the image alt text"
msgstr "Utilizar el texto alternativo de la imagen"

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""
"Es posible que tus ajustes no se guarden correctamente debido a una "
"configuración en tu servidor. %s está establecido actualmente en %s, pero "
"recomendamos un ajuste de 4000. Por favor, consulta %s para obtener más "
"información. El archivo «php.ini» está siendo cargando desde aquí: %s"

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr "este artículo"

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr "Advertencia:"

#: inc/metaslider.widget.class.php:112
msgid "Title:"
msgstr "Titulo:"

#: inc/metaslider.widget.class.php:115
msgid "Select Slider:"
msgstr "Seleccionar pase"

#: inc/metaslider.widget.class.php:125 ml-slider.php:2012
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "No se han encontrado presentaciones de diapositivas"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr "La imagen solicitad no existe. Por favor inténtalo de nuevo."

#: inc/slide/metaslide.class.php:117
msgid "The image was successfully updated."
msgstr "La imagen se ha actualizado con éxito."

#: inc/slide/metaslide.class.php:127
msgid "There was an error updating the image. Please try again"
msgstr ""
"Ha habido un error actualizando la imagen. Por favor, inténtalo de nuevo"

#: inc/slide/metaslide.class.php:308
msgid "There was an error while updating the database. Please try again."
msgstr ""
"Ha habido un error al actualizar la base de datos. Por favor, inténtalo de "
"nuevo."

#: inc/slide/metaslide.class.php:396
msgid "Trash slide"
msgstr "Mover la diapositiva a la basura"

#: inc/slide/metaslide.class.php:428 inc/slide/metaslide.class.php:683
#: inc/slide/metaslide.class.php:684
msgid "Update slide image"
msgstr "Actualizar imagen de la diapositiva"

#: inc/slide/metaslide.class.php:440
msgid "Duplicate slide"
msgstr "Duplicar diapositiva"

#: inc/slide/metaslide.image.class.php:88
msgid "This isn't a valid image format. Please try again."
msgstr "Este formato de imagen no es válido. Por favor, inténtalo de nuevo."

#: inc/slide/metaslide.image.class.php:357
msgid "Access denied"
msgstr "Acceso denegado"

#: inc/slide/metaslide.image.class.php:390
msgid "Image Slide"
msgstr "Imagen de la diapositiva"

#: inc/slide/metaslide.image.class.php:472
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""
"Advertencia: No existen datos de la imagen. Vuelve a subirla, por favor."

#: inc/slide/metaslide.image.class.php:487
msgid "General"
msgstr "General"

#: inc/slide/metaslide.image.class.php:491
msgid "Link"
msgstr "Enlace"

#: inc/slide/metaslide.image.class.php:495
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:511
msgid "Mobile"
msgstr "Móvil"

#: inc/slide/metaslide.image.class.php:528
msgid "Crop"
msgstr "Recortar"

#: inc/slide/metaslide.image.class.php:540
msgid "Schedule"
msgstr "Programar"

#: inc/slider/metaslider.class.php:273
msgid "Click the \"Add Slide\" button to create your slideshow"
msgstr ""
"Haz clic en el botón «Añadir diapositiva» para crear tu pase de diapositivas"

#: inc/slider/metaslider.class.php:316
msgid "Edit Slideshow"
msgstr "Editar el pase de diapositivas"

#: ml-slider.php:312
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""
"MetaSlider Pro está instalado pero no está actualizado. Puedes actualizarlo "
"%saquí%s. Leer más sobre este aviso %saquí%s"

#: ml-slider.php:540
msgid "Home"
msgstr "Inicio"

#: ml-slider.php:541
msgid "Quick Start"
msgstr "Inicio rápido"

#: ml-slider.php:542
msgid "Settings & Help"
msgstr "Ajustes y ayuda"

#: ml-slider.php:545
msgid "Upgrade to Pro"
msgstr "Actualizar a Pro"

#: ml-slider.php:582 ml-slider.php:585
msgid "All Slideshows"
msgstr "Todos pases de diapositivas"

#: ml-slider.php:593 ml-slider.php:596
msgid "Create Slideshow"
msgstr "Crear una presentación de diapositivas"

#: ml-slider.php:730
msgid "Image"
msgstr "Imagen"

#: ml-slider.php:731
msgid "Add to slideshow"
msgstr "Añadir a la presentación de diapositivas"

#: ml-slider.php:771
msgid "Post Feed"
msgstr "Feed de la entrada"

#: ml-slider.php:772
msgid "Vimeo"
msgstr "Vimeo"

#: ml-slider.php:773
msgid "YouTube"
msgstr "YouTube"

#: ml-slider.php:774
msgid "Layer Slide"
msgstr "Capa de corte"

#: ml-slider.php:775
msgid "External URL"
msgstr "URL externa"

#: ml-slider.php:776
msgid "Local Video"
msgstr "Vídeo local"

#: ml-slider.php:777
msgid "External Video"
msgstr "Vídeo externo"

#: ml-slider.php:902
msgid "The slide was successfully restored"
msgstr "La diapositiva se ha restaurado correctamente"

#: ml-slider.php:925
msgid "The attempt to restore the slide failed."
msgstr "El intento de recuperar la diapositiva ha fallado."

#: ml-slider.php:984
msgid "The slide was successfully trashed"
msgstr "La diapositiva se ha eliminado correctamente"

#: ml-slider.php:1096
msgid "The slide was permanently deleted"
msgstr "La diapositiva ha sido borrado permanentemente"

#: ml-slider.php:1789
msgid "Slide permanently deleted."
msgstr "Diapositiva borrada permanentemente."

#: ml-slider.php:1792
msgid "Slide restored."
msgstr "Diapositiva restaurada."

#: ml-slider.php:1806
msgid "Trashed Slides"
msgstr "Diapositivas eliminadas"

#: ml-slider.php:1832
msgid "Loading... Please wait!"
msgstr "Cargando… ¡Por favor, espera!"

#: ml-slider.php:1860
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""
"Estás viendo diapositivas que se han movido a la papelera, que se borrarán "
"automáticamente en %s días."

#: ml-slider.php:1914
msgid "Move slideshow to trash"
msgstr "Mover el pase de diapositivas a la papelera"

#: ml-slider.php:1961
msgid "Add slideshow"
msgstr "Añadir presentación de diapositivas"

#: ml-slider.php:1991
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Select slideshow to insert into post"
msgstr "Selecciona el pase de diapositivas que quieres insertar en la entrada"

#: ml-slider.php:1997
msgid "Choose slideshow"
msgstr "Elige presentación de diapositivas"

#: ml-slider.php:2007
msgid "Insert slideshow"
msgstr "Insertar presentación de diapositivas"

#: ml-slider.php:2042
msgid "Create slides by adding text, videos and more to your images"
msgstr "Crea diapositivas añadiendo texto, vídeos y mucho más a tus imágenes"

#: ml-slider.php:2046
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""
"Con las diapositivas de capas, puede crear capas hermosas y elegantes de "
"diferentes elementos."

#: ml-slider.php:2050
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""
"Empiezas con una imagen y luego puedes añadir texto, vídeo, colores, "
"animaciones, más imágenes e incluso shortcodes."

#: ml-slider.php:2056 ml-slider.php:2097 ml-slider.php:2138 ml-slider.php:2181
#: ml-slider.php:2224 ml-slider.php:2267 ml-slider.php:2310
#: admin/assets/dist/js/app.js:2
msgid "Find out more about MetaSlider Pro"
msgstr "Más información acerca de MetaSlider Pro"

#: ml-slider.php:2085
msgid "Create slideshows with your Vimeo videos"
msgstr "Crea pases de diapositivas con tus vídeos de Vimeo"

#: ml-slider.php:2089
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""
"Con las diapositivas de Vimeo, puedes crear hermosas presentaciones con tus "
"vídeos de Vimeo."

#: ml-slider.php:2093
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""
"Las diapositivas de Vimeo mostrarán tus vídeos con reproducción automática, "
"silencio, posibilidad de ocultar controles y mucho más."

#: ml-slider.php:2126
msgid "Create slideshows with your YouTube videos"
msgstr "Crea pases de diapositivas con tus vídeos de YouTube"

#: ml-slider.php:2130
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""
"Con las diapositivas de YouTube, puedes crear hermosas presentaciones con "
"tus vídeos de YouTube."

#: ml-slider.php:2134
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""
"Las diapositivas de YouTube mostrarán tus vídeos con reproducción "
"automática, silencio, posibilidad de ocultar controles y mucho más."

#: ml-slider.php:2167
msgid "Create slideshows with your posts"
msgstr "Crea pases de diapositivas con tus entradas"

#: ml-slider.php:2171
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""
"Con las diapositivas de feed de entradas, puedes crear presentaciones con "
"tus últimas entradas, eventos o productos de WooCommerce."

#: ml-slider.php:2175
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""
"Las diapositivas de feed de entradas mostrarán automáticamente tus entradas "
"con imágenes, texto, campos personalizados y mucho más."

#: ml-slider.php:2210
msgid "Create slideshows with images stored outside of WordPress"
msgstr "Crea pases de diapositivas con imágenes almacenadas fuera de WordPress"

#: ml-slider.php:2214
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""
"Con las diapositivas URL externas, puedes cargar imágenes directamente desde "
"fuentes ajenas a WordPress, como CDN o hosts de imágenes."

#: ml-slider.php:2218
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""
"Las diapositivas URL externas te ofrecen toda la potencia de MetaSlider, "
"utilizando imágenes almacenadas en cualquier lugar que desees."

#: ml-slider.php:2253
msgid "Create slideshows with videos in your media library"
msgstr "Crea pases de diapositivas con los videos de tu bliblioteca de medios"

#: ml-slider.php:2257
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""
"Con las diapositivas de vídeo locales, puedes crear hermosos pases de "
"diapositivas con los vídeos de tu biblioteca de medios de WordPress."

#: ml-slider.php:2261
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""
"Las diapositivas de vídeo local mostrarán tus vídeos MP4, WebM y MOV con "
"imágenes de portada, reproducción automática, silencio, carga lenta, "
"posibilidad de ocultar controles y mucho más."

#: ml-slider.php:2296
msgid "Create slideshows with videos stored outside of WordPress"
msgstr "Crea pases de diapositivas con vídeos almacenados fuera de WordPress"

#: ml-slider.php:2300
msgid ""
"With External Video slides, you can add videos directly from non-WordPress "
"sources."
msgstr ""
"Con las diapositivas de vídeo externas, puedes añadir vídeos directamente "
"desde fuentes ajenas a WordPress."

#: ml-slider.php:2304
msgid ""
"External Video Slides will display your MP4, WebM, and MOV videos. Features "
"include text captions, cover images, auto play, mute, lazy load, the ability "
"to hide controls, and much more."
msgstr ""
"Las diapositivas de vídeo externas mostrarán tus vídeos MP4, WebM y MOV con "
"leyendas de texto, imágenes de portada, reproducción automática, silencio, "
"carga lenta, posibilidad de ocultar controles y mucho más."

#: ml-slider.php:2347
msgid "Premium Support"
msgstr "Soporte premium"

#: ml-slider.php:2353
msgid "MetaSlider Pro"
msgstr "MetaSlider Pro"

#: ml-slider.php:2357
msgid "Support"
msgstr "Soporte"

#: ml-slider.php:2362
msgid "Documentation"
msgstr "Documentación"

#: ml-slider.php:2366
msgid "Leave a review"
msgstr "Deja una valoración"

#: themes/manifest-legacy.php:15 themes/manifest.php:15
msgid ""
"Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, "
"External Image and Post feed slides."
msgstr ""
"Bitono es un tema minimalista con un esquema de 2 colores. Recomendado para "
"diapositivas de imagen, imagen externa y feed de entradas."

#: themes/manifest-legacy.php:23 themes/manifest.php:23
msgid ""
"Clarity is focused on accessibility. It has easy-to-read fonts, and a "
"straightforward, distraction-free interface."
msgstr ""
"Clarity se centra en la accesibilidad. Tiene fuentes fáciles de leer y una "
"interfaz sencilla y sin distracciones."

#: themes/manifest-legacy.php:31 themes/manifest.php:31
msgid ""
"Databold is a minimalist theme recommended for Image, External Image and "
"Post feed slides."
msgstr ""
"Databold es un tema minimalista recomendado para diapositivas de imagen, "
"imagen externa y feed de entradas."

#: themes/manifest-legacy.php:39 themes/manifest.php:39
msgid "Draxler is a minimalist theme."
msgstr "Draxler es un tema minimalista."

#: themes/manifest-legacy.php:47 themes/manifest.php:47
msgid "A simple, slick square design that looks good on darker images."
msgstr ""
"Un diseño cuadrado simple y elegante que se ve bien en imágenes más oscuras."

#: themes/manifest-legacy.php:56 themes/manifest.php:56
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""
"Un tema limpio y sutil que incluye flechas de bloque y un diseño atrevido."

#: themes/manifest-legacy.php:65 themes/manifest.php:65
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""
"Un diseño divertido y circular para alegrar tu sitio. Este tema funciona "
"bien con imágenes oscuras"

#: themes/manifest-legacy.php:74 themes/manifest.php:74
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""
"Un diseño minimalista y limpio creado para integrarse con la mayoría de los "
"temas."

#: themes/manifest-legacy.php:106 themes/manifest.php:106
msgid "This theme places the controls vertically for a unique look."
msgstr ""
"Este tema coloca los controles verticalmente para obtener un aspecto único."

#: themes/manifest-legacy.php:115 themes/manifest.php:115
msgid "A futuristic and linear design that goes will with a dark background."
msgstr "Un diseño futurista y lineal que combina con un fondo oscuro."

#: themes/manifest-legacy.php:124 themes/manifest.php:124
msgid "A simple theme that neatly blends into any existing website."
msgstr ""
"Un tema sencillo que se integra perfectamente en cualquier sitio web "
"existente."

#: themes/manifest-legacy.php:133 themes/manifest.php:133
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""
"Este tema tiene una funcionalidad adicional especial que utiliza títulos de "
"imágenes como la navegación de diapositivas. "

#: themes/manifest-legacy.php:134 themes/manifest.php:134
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""
"Si quieres utilizar los títulos de las imágenes como navegación, tendrás que "
"utilizar FlexSlider. Además, para cambiar la etiqueta de navegación de la "
"diapositiva, hay que editar el título de la imagen en la biblioteca de "
"medios o manualmente en la diapositiva (pestaña SEO)."

#: themes/manifest-legacy.php:164 themes/manifest.php:164
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr "Este tema tiene un diseño único que le da un aspecto sofisticado."

#: themes/manifest-legacy.php:173 themes/manifest.php:173
msgid "A bold and clear design that works well on a darker images."
msgstr "Un diseño audaz y claro que funciona bien con imágenes más oscuras."

#: themes/manifest-legacy.php:182 themes/manifest.php:182
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures. Best used with Image Slides."
msgstr ""
"Un tema minimalista que no interfiere para que puedas mostrar tus hermosas "
"fotos. Se utiliza mejor con las diapositivas de imagen."

#: themes/manifest-legacy.php:191
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""
"Tema Light de Nivo incluido aquí para propósitos de retrocompatibilidad. "
"Nota: sólo funciona con Nivo Slider"

#: themes/manifest-legacy.php:199
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""
"Tema Bar de Nivo incluido aquí para propósitos de retrocompatibilidad. Nota: "
"sólo funciona con Nivo Slider"

#: themes/manifest-legacy.php:207
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""
"Tema Dark de Nivo incluido aquí para propósitos de retrocompatibilidad. "
"Nota: sólo funciona con Nivo Slider"

#: themes/manifest-premium.php:14 themes/manifest-premium.php:26
msgid "minimalist"
msgstr "minimalista"

#: themes/manifest-premium.php:15
msgid "2 columns"
msgstr "2 columnas"

#: themes/manifest-premium.php:17
msgid "A 2 columns minimalistic theme to split your images and captions."
msgstr ""
"Un tema minimalista de 2 columnas para dividir tus imágenes y leyendas."

#: themes/manifest-premium.php:18
msgid ""
"Image, External URL and Post Feed slides are displayed in 2 columns, while "
"the rest of slide types in 1 column."
msgstr ""
"Las diapositivas de imagen, URL externa y feed de entradas se muestran en 2 "
"columnas, mientras que el resto de tipos de diapositivas en 1 columna."

#: themes/manifest-premium.php:27
msgid "videos"
msgstr "vídeos"

#: themes/manifest-premium.php:28
#| msgid "Vertical"
msgid "vertical"
msgstr "vertical"

#: themes/manifest-premium.php:30
msgid "A theme to showcase vertical images and videos."
msgstr "Un tema para mostrar imágenes y vídeos verticales."

#: themes/manifest-premium.php:31
msgid "Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos."
msgstr ""
"Ideal para imágenes, diapositivas de feed de entradas y vídeos verticales de "
"YouTube y Vimeo."

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr "Diapositiva anterior"

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr "Siguiente diapositiva"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:80
msgid "Preparing 1 slide..."
msgstr "Preparando 1 diapositiva..."

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:149
#: admin/assets/js/admin.js:1002
msgid "1 slide added successfully"
msgstr "1 diapositiva añadida correctamente"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:198
msgid "Opening add slide UI..."
msgstr "Abriendo la interfaz de usuario de añadir diapositiva…"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:201
msgid "Closing add slide UI..."
msgstr "Cerrando la interfaz de usuario de añadir diapositiva…"

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:290
msgid "Updating slide..."
msgstr "Actualizando la diapositiva..."

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:342
msgid "Slide updated successfully"
msgstr "Diapositiva actualizada correctamente"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr "Aviso del gestor CSS abierto"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr "Aviso del gestor CSS cerrado"

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr "Gestor CSS"

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to create the perfect design for "
"your sites."
msgstr ""
"Añade fácilmente CSS personalizado a tus pases de diapositivas para crear el "
"diseño perfecto para tus sitios."

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr "Editor de texto integrado lleno de características."

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr "Solo carga en la portada cuando sea necesario."

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr "Incluye recetas para solucionar escenarios comunes."

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr "Aviso de Analytics abierto"

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr "Aviso de Analytics cerrado"

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""
"También nos gustaría enviarte correos electrónicos poco frecuentes con "
"importantes actualizaciones de seguridad y funciones. Consulta nuestros %s "
"para más detalles."

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr "política de privacidad"

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr "Gracias por usar MetaSlider"

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""
"Actualmente estamos construyendo la próxima versión de MetaSlider. ¿Puedes "
"ayudarnos compartiendo información de diagnóstico no sensible?"

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr "Aceptar y continuar"

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr "No, gracias"

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr "Duplicando…"

#: admin/assets/dist/js/app.js:2
msgid ""
"To edit this slide, click \"Restore\" and then \"Return to Published Slides\""
msgstr ""
"Para editar esta diapositiva, haz clic en «Restaurar» y luego en «Volver a "
"diapositivas publicadas»"

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr "Cargado el escritorio de MetaSlider"

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr "Guardando..."

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr "Guardando %s diapositivas. Esto puede tardar unos momentos."

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr "Pase de diapositivas guardado"

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr "Duplicado correctamente. Recargando..."

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr "Ajustes guardados"

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr "Sigue trabajando... %s pases de diapositivas restantes..."

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr "Visita guiada cancelada correctamente"

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr "Visita guiada cancelada incorrectamente"

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "¿Estás seguro?"

#: admin/assets/dist/js/app.js:2
msgid "This slideshow will be moved to the \"Trash\" area."
msgstr "Este pase de diapositivas se moverá a la área «Papelera»."

#: admin/assets/dist/js/app.js:2
msgid "Confirm"
msgstr "Confirmar"

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr "Se ha producido un error"

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr "Aceptar"

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr "Preparando el pase de diapositivas para duplicado..."

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr "Haciendo algo…"

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr "No se han proporcionado un mensaje sobre el error."

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr "Ha ocurrido un error no definido"

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr "No se ha informado de ningún mensaje de error."

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr "Guardando tema…"

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr "Tema guardado"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr "Tema del pase de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""
"Este tema no es oficialmente compatible con la diapositiva que has elegido. "
"Tus resultados podrían variar."

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr "Tema personalizado"

#: admin/assets/dist/js/app.js:2
msgid "Remove"
msgstr "Eliminar"

#: admin/assets/dist/js/app.js:2
msgid "Change"
msgstr "Cambiar"

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""
"¡Cambia el aspecto de tu pase de diapositivas con uno de nuestros temas "
"MetaSlider hechos a medida!"

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr "Selecciona un tema personalizado"

#: admin/assets/dist/js/app.js:2
msgid "All themes"
msgstr "Todos los temas"

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr "Cargando…"

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr "¡Obtén MetaSlider Pro!"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to unlock this theme!"
msgstr "¡Mejora ahora para desbloquear este tema!"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr "¡Actualiza ahora para construir tus propios temas personalizados!"

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr "¡MetaSlider Pro instalado!"

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr "Puedes crear tus propios temas con nuestro editor de temas"

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr "Primeros pasos"

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr "Detalles del tema"

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr "Instrucciones del tema"

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr "Etiquetas"

#: admin/assets/dist/js/app.js:2
msgid "This theme was created through the theme editor."
msgstr "Este tema fue creado con el editor de temas."

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""
"Si no se selecciona un tema, usaremos el tema por defecto proporcionado por "
"el plugin del carrusel"

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr "Cómo utilizarlo"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""
"Selecciona un tema de la izquierda para usarlo en este pase de diapositivas. "
"Haz clic en el tema para más detalles."

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr "Error: No se encontró ningún tema."

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr "Previsualizar pase de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr "Seleccionar"

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr "Cambiar tipo de superposición"

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr "Cambiar a ancho completo"

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr "Salir de la vista previa"

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr "Esta característica no es totalmente compatible con este navegador."

#: admin/assets/dist/js/app.js:2
msgid "Media caption"
msgstr "Leyenda de medios"

#: admin/assets/dist/js/app.js:2
msgid "Media description"
msgstr "Descripción de medios"

#: admin/assets/dist/js/app.js:2
msgid "Manual entry"
msgstr "Introducción manual"

#: admin/assets/dist/js/app.js:2
msgid "Enter text that will appear with your image slide."
msgstr "Introduce el texto que aparecerá con la diapositiva de tu imagen."

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""
"Se actualiza automáticamente desde la biblioteca de medios de WP "
"directamente."

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr "No se encontró nada por defecto"

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr "Aquí puedes usar HTML"

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr "Filtrar por tipo"

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr "Todos los medios"

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr "Buscar API de Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr "Buscar en unsplash.com…"

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr "Load more"

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr "Foto de %s en Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr "Foto en Unsplash"

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr "Abriendo pestaña de Unsplash…"

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr "Pestaña de Unsplash cerrada"

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr "No se encontraron fotos."

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr "Foto de %s"

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr "Anular selección"

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr "Detalles del adjunto"

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr "%s por %s píxeles"

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr "ver original"

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr "Perfil"

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr "Porfolio"

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr "Texto alt"

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr "Descripción"

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr "Calidad"

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr "Todas las fotos publicadas en Unsplash se pueden usar gratuitamente."

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr "ver licencia"

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr "¡Completo!"

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr "Contrayendo..."

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr "Importar diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr "Importar diapositivas"

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""
"Actualmente no tienes diapositivas para previsualizar. Si quieres, podemos "
"importar algunas imágenes de diapositivas para ti. "

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr "No se encontraron archivos válidos"

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr "La interfaz de arrastrar y soltar no está disponible"

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr "Arrastra las imágenes aquí"

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr "Pulsa %s para guardar o %s para cancelar."

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr "Intro"

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr "Esc"

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr "Shortcode copiado"

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr "No se ha podido copiar automáticamente el shortcode"

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr "Fallo al abrir la ventana emergente de utilidad…"

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr "Abriendo la ventana emergente de utilidad…"

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr "Cerrando la ventana emergente de utilidad…"

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr "No hay diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr "Actual"

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr "%s diapositiva(s)"

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr "última actualización: %s"

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr "Viendo 1 pase de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr "Viendo %s de %s pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr "Buscar pases de diapositivas (pulsa «Ctrl + /» para enfocar)"

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr "Buscando pases de diapositivas..."

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr "1 pase de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr "Viendo %s de %s pases de diapositivas (%s cargados)"

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr "Indexando %s pases de diapositivas en el almacenamiento local..."

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr "Se han cargado todos los pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr "Obteniendo pases de diapositivas..."

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr "Terminado"

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr "Indexando los pases de diapositivas... %s restantes"

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""
"Esta característica no es totalmente compatible con Internet Explorer 11 y "
"puedes experimentar tiempos lentos en los resultados de búsqueda."

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr "Ordenar por el título"

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr "Ordenar por la fecha de modificación"

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr "Filtrar los pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr "Buscando..."

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr "Actualizando..."

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr "Cargar todo"

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr "Vaciar la caché"

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr "Cargar las %s diapositivas restantes"

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""
"Pulsa para vaciar la caché de los pases de diapositivas de tu navegador web"

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr "Cargando los pases de diapositivas..."

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr "Explorar los pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr "Cerrar"

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr "Pulsa para ampliar"

#: admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr "Copiar todo"

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr "Todos los ajustes guardados"

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""
"Aquí encontrarás documentación y dos niveles de soporte para elegir. Además, "
"puedes proporcionarnos información adicional específica para tu web, "
"servidor, etc."

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr "Documentación 📚"

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""
"Echa un vistazo a nuestra página de documentación para ver ejemplos y más "
"información sobre lo que puedes hacer con MetaSlider."

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr "Visitar la documentación"

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr "Soporte básico gratuito 🚀"

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""
"Para los usuarios de la versión gratuita de MetaSlider, ofrecemos soporte "
"completo gratuito en los foros de wordpress.org."

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr "Visitar wordpress.org"

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr "Soporte Premium de pago 🌟"

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""
"Los usuarios de pago del plugin premium pueden abrir un tique en nuestro "
"centro privado de soporte para recibir soporte personalizado y tiempos de "
"respuesta más rápidos."

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr "Visitar metaslider.com"

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr "Información del sitio"

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""
"Para tu comodidad, puedes copiar antes la información básica del sitio para "
"ayudarnos a acelerar el proceso de depuración. Asegúrate de verificar que no "
"se incluye ninguna información personal que quieras mantener en privado."

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""
"Cambia el título por defecto que se usará al crear un nuevo pase de "
"diapositivas. Utiliza %s y se reemplazará por el ID del pase de diapositivas "
"actual."

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""
"Si eres un miembro Pro, introduce aquí tu clave de licencia para recibir "
"actualizaciones. %s"

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr "Actualizar aquí"

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""
"Opta por permitir que MetaSlider recopile responsablemente información sobre "
"cómo usas nuestro plugin. Está desactivado por defecto, pero puede haber "
"sido activado a través de un aviso. %s"

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr "Mira nuestra detallada política de privacidad"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr "Ajustes del pase de diapositivas guardados"

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr "Ajustes globales guardados"

#: admin/assets/dist/js/app.js:2
msgid "Pro settings saved"
msgstr "Ajustes Pro guardados"

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr "Ajustes por defecto de los pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Update the default settings used when creating new slideshows."
msgstr ""
"Actualiza los ajustes por defecto utilizados al crear nuevos pases de "
"diapositivas."

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr "Título por defecto del pase de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr "Cambiar el título por defecto"

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr "Ancho base de la imagen"

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""
"Actualiza el ancho por defecto para la base de la imagen. Esto se usará para "
"las dimensiones del pase de diapositivas y el recorte base de la imagen."

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr "Cambiar el ancho por defecto"

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr "Altura base de la imagen"

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimensions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""
"Actualiza la altura por defecto para la base de la imagen. Esto se usará "
"para el recorte base de la imagen y para las dimensiones del pase de "
"diapositivas. Si se configura a un ancho del 100% la altura se ajustará en "
"consecuencia."

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr "Ancho 100%"

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""
"Aunque el ancho y alto definidos arriba podrán usarse para el recorte (si "
"esté activo) y las dimensiones base del pase de diapositivas, puedes también "
"configurar que el pase de diapositivas se ajuste a su contenedor."

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr "Ajustes globales"

#: admin/assets/dist/js/app.js:2
msgid "Update the settings used for all the slideshows on your site."
msgstr ""
"Actualiza los ajustes utilizados para todos los pases de diapositivas de tu "
"sitio."

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr "Clave de la licencia"

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr "Actualizar la clave de la licencia"

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr "Ayudar a mejorar MetaSlider"

#: admin/assets/dist/js/app.js:2
msgid "Enable Mobile Settings"
msgstr "Activa los ajustes para los móviles"

#: admin/assets/dist/js/app.js:2
msgid "Add option to hide slides and captions per screen size."
msgstr ""
"Añadir la opción de ocultar diapositivas y leyendas por tamaño de pantalla."

#: admin/assets/dist/js/app.js:2
msgid "Mobile Settings"
msgstr "Ajustes para los móviles"

#: admin/assets/dist/js/app.js:2
msgid "Set breakpoints for different screen sizes"
msgstr "Establece puntos de ruptura para diferentes tamaños de pantalla"

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Libraries"
msgstr "Desactivas las bibliotecas heredadas"

#: admin/assets/dist/js/app.js:2
msgid ""
"This setting allows you to disable the legacy slideshow libraries: Nivo "
"Slider, Coin Slider, and Responsive Slides"
msgstr ""
"Este ajuste te permite de desactivar las bibliotecas de pases de "
"diapositivas heredadas: Nivo Slider, Coin Slider y Responsive Slides"

#: admin/assets/dist/js/app.js:2
msgid ""
"You can safely enable this setting. None of your slideshows use the legacy "
"libraries."
msgstr ""
"Puedes activar este ajuste sin problemas. Ninguna de tus pases de "
"diapositivas utiliza las bibliotecas heredadas."

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshows that use legacy libraries."
msgstr ""
"Actualmente tienes %s pases de diapositivas que utilizan bibliotecas "
"heredadas."

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshow that uses legacy libraries."
msgstr ""
"Actualmente tienes %s pases de diapositivas que utilizan bibliotecas "
"heredadas."

#: admin/assets/dist/js/app.js:2
msgid "Enable MetaSlider on Admin Bar"
msgstr "Activar MetaSlider en la barra de administración"

#: admin/assets/dist/js/app.js:2
msgid "Add and edit slideshows easier by showing MetaSlider on your admin bar."
msgstr ""
"Añade y edita presentaciones más fácilmente mostrando MetaSlider en tu barra "
"de administración."

#: admin/assets/dist/js/app.js:2
msgid "Enable Frontend Edit Links"
msgstr "Activar los enlaces de edición de la portada"

#: admin/assets/dist/js/app.js:2
msgid "Edit slideshows easily by showing MetaSlider link under each slideshow."
msgstr ""
"Edita presentaciones fácilmente mostrando el enlace MetaSlider debajo de "
"cada presentación."

#: admin/assets/dist/js/app.js:2
msgid "Last"
msgstr "Último"

#: admin/assets/dist/js/app.js:2
msgid "First"
msgstr "Primero"

#: admin/assets/dist/js/app.js:2
msgid "New slides order"
msgstr "Nuevo orden de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Select the position for new added slides."
msgstr "Selecciona la posición para las nuevas diapositivas añadidas."

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Widget"
msgstr "Desactivar el widget heredado"

#: admin/assets/dist/js/app.js:2
msgid "This setting allows you to disable the legacy MetaSlider widget."
msgstr "Este ajuste te permite desactivar el widget MetaSlider heredado."

#: admin/assets/dist/js/app.js:2
msgid "Pro Settings"
msgstr "Ajustes Pro"

#: admin/assets/dist/js/app.js:2
msgid "Update the MetaSlider Pro settings."
msgstr "Actualiza los ajustes de MetaSlider Pro."

#: admin/assets/dist/js/app.js:2
msgid ""
"Select how many custom fields will display in the dropdown menu when you are "
"inserting tags."
msgstr ""
"Selecciona cuántos campos personalizados se mostrarán en el menú desplegable "
"al insertar etiquetas."

#: admin/assets/dist/js/app.js:2
msgid "Change the maximum custom fields for Post Feed"
msgstr "Cambia el máximo de campos personalizados para el feed de entradas"

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr "Los datos de este archivo no parecen ser válidos."

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr "Encontrados %s pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr "Búsqueda de imágenes completa"

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr "Todavía estamos buscando tus imágenes. Por favor, espera."

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr "No tienes ningún pase de diapositivas que importar"

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr "Faltan algunas imágenes"

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""
"Cuando haya imágenes no disponibles tendrás que subir o borrar manualmente "
"la diapositiva cuando termine la importación."

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr "Seguir"

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr "Importando %s pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr "Importación correcta"

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""
"Importa fácilmente pases de diapositivas creados con MetaSlider. Este "
"requiere un archivo generado desde la pestaña de exportación."

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr "Cargar pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""
"Si tienes un archivo de importación puedes subirlo aquí para procesarlo. La "
"información de cada pase de diapositivas se mostrará abajo. Podrás confirmar "
"antes de importar."

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr "Importando..."

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr "Procesando..."

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr "Subir archivo"

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr "Fecha: %s"

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr "Versión: %s"

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr "Todas las imágenes necesarias para la importación están contadas."

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr "Las siguientes imágenes no se han encontrado:"

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr "No se ha proporcionado ningún nombre de la imagen"

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""
"Nota: Aún puedes importar pases de diapositivas que contengan imágenes que "
"falten. Solo necesitarás actualizar o borrar manualmente esas diapositivas "
"de sus páginas individuales de edición del pase de diapositivas."

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr "Importar %s pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""
"Selecciona abajo los pases de diapositivas que quieres importar, luego pulsa "
"aquí para importarlos."

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr "Feed de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr "Diapositiva externa"

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr "Imagen no encontrada<br>%s"

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr "No se ha encontrado ninguna diapositiva"

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr "Cargando %s pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr "No tienes ningún pase de diapositivas que exportar"

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr "Exportando %s pases de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr "Exportación correcta"

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr "No se ha encontrado ningún pase de diapositivas."

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr "Crea ahora un nuevo pase de diapositivas"

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have only a few slideshows, we will prepare them automatically. If "
"you have many slideshows, click the \"Load\" button."
msgstr ""
"Si tiene pocos pases de diapositivas, los prepararemos automáticamente. Si "
"tiene muchos pases de diapositivas, haz clic en el botón «Subir»."

#: admin/assets/dist/js/app.js:2
msgid "Choose the slideshows you wish to export."
msgstr "Selecciona los pases de diapositivas que quieres exportar."

#: admin/assets/dist/js/app.js:2
msgid "Click the \"Export\" button."
msgstr "Haz clic en el botón «Exportar»."

#: admin/assets/dist/js/app.js:2
msgid ""
"A .json file will automatically be downloaded with all your slideshow data."
msgstr ""
"Se descargará automáticamente un archivo .json con todos los datos de la "
"presentación."

#: admin/assets/dist/js/app.js:2
msgid "A few notes on exporting slideshow images:"
msgstr ""
"Algunas notas sobre la exportación de imágenes de pases de diapositivas:"

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images need to be exported manually. Please upload them to the new "
"website before importing these slideshows."
msgstr ""
"Tus imágenes deben exportarse manualmente. Súbelas a la nueva web antes de "
"importar estos pases de diapositivas."

#: admin/assets/dist/js/app.js:2
msgid "Images will need to keep the same file names on the new site."
msgstr ""
"Las imágenes deberán mantener los mismos nombres de archivo en la nueva web."

#: admin/assets/dist/js/app.js:2
msgid "Read our guide on exporting images."
msgstr "Lee nuestra guía sobre la exportación de imágenes."

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""
"Tienes %s pases de diapositivas que se pueden exportar. La información de "
"cada pase de diapositivas se mostrará abajo."

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr "Recargar"

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr "Cargar"

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr "Exportar %s diapositivas"

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""
"Selecciona abajo las diapositivas que quieres exportar, luego pulsa aquí "
"para exportarlos."

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr "Fallo al abrir la página de ajustes…"

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr "Abriendo la página de ajustes…"

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr "Página no encontrada: %s"

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr "Añadir una diapositiva"

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""
"Gracias por usar MetaSlider. Para empezar haz clic en el botón de «Añadir "
"diapositiva» para crear tu primera diapositiva."

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr "Seleccionar imágenes"

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""
"Puedes añadir fácilmente una imagen aquí desde una de las opciones. Además, "
"proporcionamos imágenes gratuitas de la biblioteca de Unsplash."

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr "Siguiente paso"

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr "Buscar en Unsplash"

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""
"Elige una imagen de la izquierda o busca aquí cualquier temática para "
"obtener más imágenes."

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr "Ocultar el paso"

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr "Crea tu diapositiva"

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""
"Después de seleccionar una imagen, pulsa aquí para crear tu diapositiva."

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr "Vista previa del pase de diapositivas"

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""
"Ahora que tienes algunas diapositivas, puedes previsualizar el pase de "
"diapositivas haciendo clic aquí."

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr "Ajustes del pase de diapositivas"

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr "Editar el pase de diapositivas"

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr "Clase CSS adicional"

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr "Actualizar la vista previa"

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr "Cargando la lista de pases de diapositivas..."

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr "¡Crear uno ahora!"

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr "Cargando el pase de diapositivas"

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr "Actualizar la vista previa"

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr "Seleccionar un pase de diapositivas"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr "Ancho normal"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr "Ancho amplio"

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr "Ancho completo"

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""
"Usa MetaSlider para insertar pases de diapositivas y carruseles en tu página"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr "carrusel"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr "pase de diapositivas"

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr "galería"

#~ msgid "Show the slide navigation bullets"
#~ msgstr "Mostrar iconos de navegación de slider."

#~ msgid "Continuously"
#~ msgstr "En continuo"

#~ msgid ""
#~ "Choose one of our demos with sample images, or a blank slideshow with no "
#~ "images."
#~ msgstr ""
#~ "Elije una de nuestras demos con imágenes de muestra o una presentación en "
#~ "blanco sin imágenes."

#~ msgid "Add HTML overlay slides"
#~ msgstr "Añadir diapositivas de superposición HTML"

#~ msgid "Create completely customized HTML slides using the inline editor."
#~ msgstr ""
#~ "Crea diapositivas HTML completamente personalizadas con el editor "
#~ "integrado."

#~ msgid "Themes"
#~ msgstr "Temas"

#~ msgid ""
#~ "However, it looks like you have custom themes available. Select \"My "
#~ "Custom Themes\" from the navigation up top to view your custom themes."
#~ msgstr ""
#~ "Sin embargo, parece que tienes disponibles temas personalizados. "
#~ "Selecciona «Mis temas personalizados» en la navegación superior para ver "
#~ "tus temas personalizados."

#~ msgid "My Custom Themes"
#~ msgstr "Mis temas personalizados"

#~ msgid ""
#~ "Choose whether the slides loop or stop on a specific slide. The slides "
#~ "will loop infinitely if you choose \"Continuously\" and the \"Slide\" "
#~ "effect."
#~ msgstr ""
#~ "Elige si las diapositivas se reproducen en bucle o se detienen en una "
#~ "diapositiva específica. Las diapositivas se reproducirán en bucle "
#~ "infinito si eliges «Continuamente» y el efecto «Diapositiva»."

#~ msgid "Effect"
#~ msgstr "Efecto"

#~ msgid "Center align the slideshow"
#~ msgstr "Centrar la presentación de diapositivas"

#~ msgid "Configure loop"
#~ msgstr "Configurar bucle"

#~ msgid "Fade in the first slide"
#~ msgstr "Fundido de la primera diapositiva"

#~ msgid ""
#~ "Easing enhances the motion dynamics during transitions and is exclusively "
#~ "accessible when the 'Slide' transition setting is chosen."
#~ msgstr ""
#~ "La suavización mejora la dinámica del movimiento durante las transiciones "
#~ "y es accesible exclusivamente cuando se elige el ajuste de transición "
#~ "«Deslizar»."

#~ msgid ""
#~ "Hey there! We just started working on a brand new gallery extension. <a "
#~ "href=\"%s\">Check it out</a> and let us know what you think!"
#~ msgstr ""
#~ "¡Hola! Acabamos de empezar a trabajar en una nueva extensión de la "
#~ "galería. ¡<a href=\"%s\">Échale un vistazo</a> y danos tu opinión!"

#~ msgid "You do not have access to this resource."
#~ msgstr "No tienes acceso a este recurso."

#~ msgid "Set the speed of animations, in milliseconds"
#~ msgstr "Ajustar la duración de las animaciones en milisegundos"

#~ msgid "Select the sliding direction"
#~ msgstr "Seleccionar la dirección del pase"

#~ msgid "press to learn more"
#~ msgstr "pulsa para aprender más"

#~ msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
#~ msgstr ""
#~ "Obtén MetaSlider Pro para añadirle una fecha de inicio/fin a tus "
#~ "diapositivas"

#~ msgid "Get it now!"
#~ msgstr "¡Consíguelo ahora!"

#~ msgid "Failed to add slide. Slide is not an image."
#~ msgstr "No se pudo agregar diapositiva. Diapositiva no es una imagen."

#~ msgctxt "Keep the plugin name \"MetaSlider\" when possible"
#~ msgid "Insert MetaSlider"
#~ msgstr "Insertar MetaSlider"

#~ msgid "Upgrade to pro now"
#~ msgstr "Actualiza a pro ahora"

#~ msgid "Upgrading also includes:"
#~ msgstr "La actualización también incluye:"

#~ msgid "Layer, video and post type slides."
#~ msgstr "Diapositivas de capa, vídeo y tipo de contenido."

#~ msgid "Slide scheduling - decide when slides appear."
#~ msgstr ""
#~ "Programación de diapositivas - decide cuándo aparecerán las diapositivas."

#~ msgid "Premium support - ask us anyting!"
#~ msgstr "Soporte premium - ¡pregúntanos cualquier cosa!"

#~ msgid "Click to edit or update"
#~ msgstr "Haz clic para editar o actualizar"

#~ msgid ""
#~ "Here you will find general account settings and options related to your "
#~ "account"
#~ msgstr ""
#~ "Aquí puedes encontrar ajustes generales de la cuenta y opciones "
#~ "relacionadas con tu cuenta"

#~ msgid "Enable Gallery (Beta)"
#~ msgstr "Activa galleria (beta)"

#~ msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
#~ msgstr ""
#~ "Galerías rápidas, optimizadas para SEO, totalmente accesibles para WCAG y "
#~ "fáciles de usar."

#~ msgid "free"
#~ msgstr "gratis"

#~ msgid "Yes"
#~ msgstr "Sí"

#~ msgid "Multiple slideshow types"
#~ msgstr "Varios tipos de pases de diapostivas"

#~ msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
#~ msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
#~ msgstr "Incluyendo FlexSlider, Nivo Slider y pronto añadiremos más."

#~ msgid "No"
#~ msgstr "No"

#~ msgid "Post feed slides"
#~ msgstr "Diapositivas de lista de entradas"

#~ msgid "Easing is only available with the 'Slide' transition setting"
#~ msgstr ""
#~ "La atenuación sólo está disponible con el ajuste de transición 'Deslizar'"

#~ msgid ""
#~ "Specify any custom CSS Classes you would like to be added to the slider "
#~ "wrapper"
#~ msgstr "Añadir las clases CSS personalizadas en el pase de diapositivas"

#~ msgid "Delete slideshow"
#~ msgstr "Borrar el pase de diapositivas"

#~ msgid "You will not be able to undo this."
#~ msgstr "No podrás deshacer esto."

#~ msgid "Delete"
#~ msgstr "Borrar"

#~ msgid "Learn more"
#~ msgstr "Aprende más"

#~ msgid "Enter manually"
#~ msgstr "Introducir manualmente"

#~ msgid "How to Use"
#~ msgstr "Cómo utilizar"

#~ msgid "Toggle title"
#~ msgstr "Alternat título"

#~ msgid ""
#~ "To display your slideshow, add the following shortcode (in orange) to "
#~ "your page. If adding the slideshow to your theme files, additionally "
#~ "include the surrounding PHP code (in gray).&lrm;"
#~ msgstr ""
#~ "Para mostrar tu pase de diapositivas, añade el siguiente shortcode (en "
#~ "naranja) a tu página. Si estás añadiendo el carrusel a los archivos de tu "
#~ "tema, añade también el código PHP (en gris).&lrm;"

#~ msgid "Copy all code"
#~ msgstr "Copiar todo el código"

#~ msgid ""
#~ "Press to load available slideshows then choose which slideshows to "
#~ "export. If you only have a few slideshows we will prepare them "
#~ "automatically."
#~ msgstr ""
#~ "Pulsa para cargar los pases de diapositivas disponibles, luego elige qué "
#~ "pases de diapositivas exportar. Si solo tienes unos pocos pases de "
#~ "diapositivas los prepararemos automáticamente."

#~ msgid ""
#~ "Pressing export will gather and organize all of your slideshows into a "
#~ "single data file that you can use to restore on another website."
#~ msgstr ""
#~ "Al pulsar la tecla de exportación se reunirán y organizarán todas tus "
#~ "pases de diapositivas en un único archivo de datos que puedes utilizar "
#~ "para restaurar en otra web."

#~ msgid ""
#~ "Your images will need to be exported manually and uploaded to the new "
#~ "website before importing these slideshows. Additionally, image file names "
#~ "need to match as we will use built in WordPress functions to locate the "
#~ "image based on its current name."
#~ msgstr ""
#~ "Tus imágenes se tienen que exportar y subir manualmente a la nueva web "
#~ "antes de importar estos pases de diapositivas. Adicionalmente, los "
#~ "nombres de archivos de imagen tienen que coincidir ya que usaremos las "
#~ "funciones integradas en WordPress para localizar las imágenes basándonos "
#~ "en su nombre actual."

#~ msgid "Learn how"
#~ msgstr "Más información sobre cómo hacerlo"

#~ msgid ""
#~ "Please note that content contained in \"Post Type\" slides will not be "
#~ "exported. Only the slide configurations that refer to the content will be."
#~ msgstr ""
#~ "Por favor, ten en cuenta que el contenido de las diapositivas del «tipo "
#~ "de contenido» no se exportará. Solo se exportarán las configuraciones "
#~ "referidas al contenido."

#~ msgctxt ""
#~ "Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
#~ "Friday\" is the name of an event in the United States"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until November 30th!"
#~ msgstr ""
#~ "¡Actualiza tus pases de diapositivas! ¡Únete hoy y obtén un 50% de "
#~ "descuento en MetaSlider Pro hasta el 30 de noviembre!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until December 25th!"
#~ msgstr ""
#~ "¡Actualiza tus pases de diapositivas! ¡Únete hoy y obtén un 50% de "
#~ "descuento en MetaSlider Pro hasta el 25 de diciembre!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until January 14th!"
#~ msgstr ""
#~ "¡Actualiza tus pases de diapositivas! ¡Únete hoy y obtén un 50% de "
#~ "descuento en MetaSlider Pro hasta el 14 de jenero!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until April 30th!"
#~ msgstr ""
#~ "¡Actualiza tus pases de diapositivas! ¡Únete hoy y obtén un 50% de "
#~ "descuento en MetaSlider Pro hasta el 30 de abril!"

#~ msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
#~ msgid ""
#~ "Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro "
#~ "until July 31st!"
#~ msgstr ""
#~ "¡Actualiza tus pases de diapositivas! ¡Únete hoy y obtén un 50% de "
#~ "descuento en MetaSlider Pro hasta el 31 de julio!"

#~ msgid "Learn More"
#~ msgstr "Leer más"

#~ msgid "Click to toggle"
#~ msgstr "Haz clic para alternar"

#~ msgid "Take a tour"
#~ msgstr "Haz la visita guiada"

#~ msgid "Add-ons"
#~ msgstr "Extensiones"

#~ msgid "Allowed Files"
#~ msgstr "Archivos permitidos"

#~ msgid "Select Files"
#~ msgstr "Seleccionar archivos"

#~ msgctxt "Uploader: Drop files to upload - or - Select Files"
#~ msgid "or"
#~ msgstr "o"

#~ msgid "Drop files to upload"
#~ msgstr "Solta los archivos para subirlos"

#~ msgid "%d slideshow restored from the Trash."
#~ msgid_plural "%d slideshows restored from the Trash."
#~ msgstr[0] "%d pase de diapositivas ha sido restaurado de la papelera."
#~ msgstr[1] "%d pases de diapositivas han sido restaurado de la Papelera."

#~ msgid "Empty Trash"
#~ msgstr "Vaciar papelera"

#~ msgid "Gallery"
#~ msgstr "Galería"

#~ msgid "Select Images"
#~ msgstr "Selecciona imágenes"

#~ msgid "edit"
#~ msgstr "editar"

#~ msgid "Gallery ID #%s"
#~ msgstr "ID de galería #%s"

#~ msgid "Your Galleries"
#~ msgstr "Tus galerías"

#~ msgid ""
#~ "%s Easy to use, fun to master. With advanced features for those who need "
#~ "them."
#~ msgstr ""
#~ "%s Fácil de usar, divertida de dominar. Con funciones avanzadas para los "
#~ "que las necesitan."

#~ msgid ""
#~ "%s Fully WCAG accessible - All users will be able to enjoy your galleries."
#~ msgstr ""
#~ "%s Totalmente accesible WCAG - Todos los usuarios podrán disfrutar de tus "
#~ "galerías."

#~ msgid "%s SEO-focused - Search engines will love your galleries."
#~ msgstr "%s Enfocada al SEO - Los motores de búsqueda amarán tus galerías."

#~ msgid ""
#~ "%s Fast - Using modern best practices, your galleries will be faster than "
#~ "ever."
#~ msgstr ""
#~ "%s Rápida - Utilizando las mejores prácticas modernas, tus galerías serán "
#~ "más rápidas que nunca."

#~ msgid "We are building the gallery following these principles:"
#~ msgstr "Estamos construyendo la galería siguiendo estos principios:"

#~ msgid ""
#~ "Hi, welcome the gallery project by MetaSlider. %1$sRedefining WordPress "
#~ "galleries%2$s."
#~ msgstr ""
#~ "Hola, bienvenido el proyecto de galería de MetaSlider. %1$sRedefiniendo "
#~ "las galerías de WordPress%2$s."

#~ msgid "Open Settings"
#~ msgstr "Abrir ajustes"

#~ msgid "Spacing (px)"
#~ msgstr "Espaciado (px)"

#~ msgid "Image min width (px)"
#~ msgstr "Ancho mínimo de imagen (px)"

#~ msgid "Image max width (px)"
#~ msgstr "Ancho máximo de imagen (px)"

#~ msgid "Image width (%)"
#~ msgstr "Ancho de imagen (%)"

#~ msgid "Gallery Settings"
#~ msgstr "Ajustes de la galería"

#~ msgid "Remove image"
#~ msgstr "Eliminar imagen"

#~ msgid "Remove image from gallery"
#~ msgstr "Eliminar imagen de la galería"

#~ msgid "Image alt attribute"
#~ msgstr "Atributo alt de la imagen"

#~ msgid "Image Settings"
#~ msgstr "Ajustes de imagen"

#~ msgid ""
#~ "This gallery extention is in active development, so check back soon for "
#~ "more features."
#~ msgstr ""
#~ "Esta extensión de galería está en desarrollo activo, así que vuelve "
#~ "pronto para ver más características."

#~ msgid "Media Library"
#~ msgstr "Biblioteca de medios"

#~ msgid "Select image source"
#~ msgstr "Selecciona la fuente de la imagen"

#~ msgid "Add images"
#~ msgstr "Añadir imágenes"

#~ msgid "Saved"
#~ msgstr "Guardado"

#~ msgid "Delete gallery"
#~ msgstr "Borrar galería"

#~ msgid ""
#~ "Are you sure you want to DELETE this gallery? Note that we will not "
#~ "remove images or other external data"
#~ msgstr ""
#~ "¿Estás seguro de que quieres BORRAR esta galería? Ten en cuenta que no se "
#~ "eliminarán las imágenes u otros datos externos"

#~ msgid "Delete Gallery"
#~ msgstr "Borrar galería"

#~ msgid "Title not set"
#~ msgstr "Título no establecido"

#~ msgid "Press to edit the title"
#~ msgstr "Pulsa para editar el título"

#~ msgid "Focus to edit the title"
#~ msgstr "Enfoca para editar el título"

#~ msgid "Galleries"
#~ msgstr "Galerías"

#~ msgid "View all galleries"
#~ msgstr "Ver todas las galerías"

#~ msgid "Cancel"
#~ msgstr "Cancelar"

#~ msgid "Ok"
#~ msgstr "Aceptar"

#~ msgid "Action"
#~ msgstr "Acción"

#~ msgid "Background color"
#~ msgstr "Color de fondo"

#~ msgid "Dark mode"
#~ msgstr "Modo oscuro"

#~ msgid "Work without distraction"
#~ msgstr "Trabaja sin distracciones"

#~ msgid "Fullscreen mode"
#~ msgstr "Modo de pantalla completa"

#~ msgid "Add gallery"
#~ msgstr "Añadir galería"

#~ msgid "Create gallery"
#~ msgstr "Crear galería"

#~ msgid "Give your gallery a name."
#~ msgstr "Dale un nombre a tu galería."

#~ msgid "Add to page"
#~ msgstr "Añadir a la página"

#~ msgid "Copy"
#~ msgstr "Copiar"

#~ msgid "Copied!"
#~ msgstr "¡Copiado!"

#~ msgid ""
#~ "Copy the shortcode and insert it on your page using a shortcode block or "
#~ "otherwise an html block."
#~ msgstr ""
#~ "Copia el shortcode e insértalo en tu página utilizando un bloque de "
#~ "shortcode o un bloque html."

#~ msgid "Add to page/post"
#~ msgstr "Añadir a página/entrada"

#~ msgid "You are not authorized to update this Gallery"
#~ msgstr "No estás autorizado a actualizar esta galería"

#~ msgid "You do not have permission to do that."
#~ msgstr "No tienes permiso para hacer eso."

#~ msgid "Select or deselect all slideshows"
#~ msgstr "Selecciona o anula la selección de todos los pases de diapositivas"

#~ msgid "Toggle all slideshows"
#~ msgstr "Cambiar todos los pases de diapositivas"

#~ msgid "Slideshow title updated"
#~ msgstr "Actualizado el título del pase de diapositivas"

#~ msgid "%s slides added successfully"
#~ msgstr "%s diapositivas añadidas correctamente"

#~ msgid "Preparing %s slides..."
#~ msgstr "Preparando %s diapositivas..."

#~ msgid "CSS manager module"
#~ msgstr "Módulo gestor de CSS"

#~ msgid "Close"
#~ msgstr "Cerrar"

#~ msgid "Coming soon"
#~ msgstr "Próximamente"
languages/ml-slider-es_ES.mo000064400000221230151213255500011732 0ustar00�����l+�9�9:
:
#:#.:	R:K\:A�:;�:A&;*h;W�;E�;w1<M�<<�<?4=/t=�=	�=
�=G�=>'>/>7>	L>$V>{>�>�>*�>G�>?-?DG?�?7�?�?
�?�?C@O@d@Bu@�@�@�@0�@!A61AhA
{A7�AD�AABEBNBfB
~B�B�B	�B8�B�B�BCoC�C
�C�C�C�C
�C�C�C
�CDD&3DZDfD�D�DL�D�D
�D	E E=E
MEZ[E
�E�E�E�EB�E-F4F�MF�FZ�F.GGjvGT�G�6H�H)�HfI0{Ir�IJ5+JaJ|J�J�J�J�J	�J�J�J�JKK(KAK%\K#�K1�K�K<�K'%L9ML@�L3�L9�L(6M*_M!�M�M�M�M�M
�M�MN
N3NZKN�N�N3�N�NO+O7O@OROkO�O�O�Op�OpP
�P�P�P�P&�P�PQ	Q#Q3Q%LQrQU�Q2�Qe
R9pR�R��RCSHSWSGfS�S�S�S)�S&)T`PT2�T�TUUU*U<UWU`dU�U��U�V�V�V�V#�V�VW	W$W4WCWXW"mW�W�W�Wd�W�	X�X�X�X

YYY0YJY^YjYzY�Y=�Y�Y�Y�Y�	Z�Z.�Z�Z�Z[[	'[1[
6[A[
M[0X[�[F�[\�[S2\K�\��\��]|{^��^�_�_
�_�_``'`7`H`^`ot`=�`"a)a
>a"La
oa}a�a�a�a+�a\�a,Vb#�bb�b
c	c%c�@c!d|$dH�dT�d?eQeVebeqe�e�e�e�e	�e�e�e�e�ef f
6fAf)Yf�f��f*g/g4gOgagng3{g
�g�g
�g�gq�g[hIxh�hl�hKijiqi�i�i
�i�i
�i
�i�i
�i�i
�i	�i	jj!j6jQjlj�j	�j�j�j�j	�j�j�jk�k�kS�k(l9lKlNl1Vl�l�l�l�l�l�l�m�m�m��mSxn�n�n�n(o+o<?o	|o	�o�og�opp(p&=p!dp8�p�p
�p�p�p�p	qq
!q	/q9qBqFqSq
fqtq	|q�q�q�q�q"�q	�q#�q�q�qrr&r.rIr Qrrrvr{r�r.�r�r	�r�r�r	ss.$sSscszs�s�s�s�s�sV�s\5t
�t�t~�t)8uObuO�u*v%-v+Sv/v�v�v�v�v	�v�v+w<8w uw�w�w
�w�w�w
�w�w
�w�w
xx
)x7xFxaxpx�x�x�x�x�x�x�xy
y&y
FymQy
�y�y�y�y
zLzkzxz'�z�z�z�z;�z{{%{+{C{H{;d{e�{!|#(|WL|X�|Y�|(W}(�}2�}�}$�}# ~#D~!h~"�~5�~A�~!%#G"k��
���7�A�[V�?��,�l�4��9��'��u#�2��@̂@
�rN�&��1�w�m��b�Bc�X��<��0<�1m�:��	چ��	��I�`�r���
����	��Çχ�	��(,�U�[�g�v���7��>����J�i�}���X����#$��H�>��t6�=�������, �!M�o�~�<��(nj���(� 1�R�f�+����ƍh̍5�I�^�nr��C�~.�4��'�D
�PO�v��^�Ov�TƑ^�Tz�bϒS2�X��\ߓR<�h��H���A�
���n�Sp�RĖh����h�Mu�QØ^�4t�x��U"�fx�;ߚ;�LW�f�� � ,�M�kc�ϜuלrM��������Ǟ
؞)�
���	&�0�=�F�M�
Z�h��n�$2�W�
n�
y���
��Y��H��FE�K��Jآd#�>���ǣTJ�O��O�4?�t�	����K����
��7�/K�{�"����;Цc�p�&��R��$�N)�x�%��*��]�F�Z�Jl���˩.�D�[�Dl���ͪHݪG&�en�	ԫޫ���%�-�
B�OP�����ά��m���������­٭��"
�(0�4Y�
������
ӮNޮ
-�8�Q�(j���
��a���(�9�H�HP��������\�dy�Cޱ�"�_����#س:��f7�G��r�Y�Pj�#��"ߵ9�,<�i�p���	������'��'ڶ.�(1�@Z�.��3ʷ��H�3Z�G��TָE+�Eq�3��5�+!�&M�t�����������ĺ?׺k�	��,��C�����2�?�Q�$k�������	ϼ�ټ�o���&�7�5>�t�������!Ͼ&�
�p&�G���߿@f�	�����x����]��-�1I�${�:��0��u�B��$������%�#;�_��k���������
��'%�2M�#��	������!����*�	1�;�C�{J����$����������&�E�^�m�~���T�������.���5���%�;�R�l�|�
��%����:���_��e�b��]O�K��������;�W�^�v�)���������$�?��_�N��A�!J�l�3����+����#�
2�3@�qt�@��3'�{[�&��	�� ��)�-�XD���E�����
�(�=�N�c�j�q�	}�$����!�� ��-�%:�`� l�.�������������������Y��L�^�
u���}��
�W)�#��u���:�A�T�+n�����#��
����
��	��(�7�P� f�2��/��2���6�'J�3r�1������#�$��1�
�h ���������0����$� 0�9Q�!��,�������������~�
�
�$�55�k�K����������������4��)��L)�v�����%��"�������,�9�E�I�U�
k�y�	��������	��(��	��5���$�?�\�	e�$o��� ��������%��;�L�^�	k�u�����>������!�;�G�S� d�#��t��f���$�����?n�[��d
�@o�1��@��?#�c�k�{���	����4��Z��'<�d�w����������������*�>�Z�$t�����%��0���*=�h� ��*��+����/�D��X������%/�U�Sl���	��9��!�!<�^�Md�������	��N�}^���m�nT�o�23�(f�2��#�.�'�(=�*f�!��=��`�.R�-��,��!�����
,�I:�R��v�`N�5����Dt�L��
���E��M�@8��y�%��=%�c�|�CkUL�,N;P�	���g ��'���%-'S{�0�� �#;/?7o ��n�@]"yj�#"(F�oSX	��	RC
�
�
�
�
B�
**U
fMtC�* 1
R`.i�%�3�
*
�0
�
�
�
��H���;m6�I�c*��l7f�wj�\�oKe�v!h�`{b\��;$�*n�^"�����].a�j�:Y��q%�OOgm�x%3�3�x���r) #� �!�!�!�!""5"8"A"V"e"n"v"�"�"EZ
wn��RK<��V��L~�".4��[�P��)�9�p��4�cY�(�+t�3��?[m&=_��MxB�����,i��8�K��a�XfZ�:��C�P?d&����z��;�����`�OC�8����������OR���I�B��G�J@���5�n�X��s�;�F�xDN�!���@�g�*7�+�� ���7�|\��#O���H�_����][d|c2#�gD���)��e9�vW�0�RSz�k=qC]����@�-�F)�p��^�c7T^�H;���k�w(�5���M��o/U
�/2AuA��o�I"�Nb�
��v{f2~Naw�L��L�4,J��<5�g��q�v
�	}T(b�W�ye���"!Z���6,�'/��h���_$=f1��sSe3j0�� u�j6�F�%-Ii�E�do}���}��1�QrT�^�\V��r�9��Y��A$��0U�%���������~-'3�P�1%��J#>������b��t���]*��':|yV��h����pk���&��`��Eu�i�s���������l�B�����m��x���yD�
�`>K�<m�+.����h:�*����a�?�t�
�q��j�{������l8����r�����GM�QQ�z�X�!\H >$G��U	�Yl.�������6����	�{W�Sn�1 slide added successfully1 slideshow100% Width100% width1000 by 1000 pixels%s by %s pixels2 columnsA .json file will automatically be downloaded with all your slideshow data.A 2 columns minimalistic theme to split your images and captions.A bold and clear design that works well on a darker images.A clean, subtle theme that features block arrows and bold design.A few notes on exporting slideshow images:A fun, circular design to brighten up your site. This theme works well with dark imagesA futuristic and linear design that goes will with a dark background.A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.A minimalistic, no-frills design that was built to blend in with most themes.A simple theme that neatly blends into any existing website.A simple, slick square design that looks good on darker images.A theme to showcase vertical images and videos.ARIA CurrentARIA LiveAccess deniedAccess denied. Sorry, you do not have permission to complete this task.Accessibility OptionsAdd CSSAdd NewAdd Post Feed slidesAdd SlideAdd YouTube, Vimeo and Tiktok slidesAdd a new slideAdd a new slideshowAdd a slideAdd a start/end date to individual slides.Add and edit slideshows easier by showing MetaSlider on your admin bar.Add custom CSSAdd external video slidesAdd layers to your slides with over 50 available transition effects.Add local video slidesAdd option to hide slides and captions per screen size.Add slide layersAdd slideshowAdd to slideshowAdding custom CSS is a MetaSlider Pro feature. Click to learn more.Additional CSS ClassAdvanced OptionsAfter you have selected an image, press here to create your slide.Agree and continueAll SlideshowsAll Slideshows loadedAll images required to import are accounted for.All media itemsAll photos published on Unsplash can be used for free.All settings savedAll themesAllow navigation to follow the slide's height smoothly.Allow touch swipe navigation of the slider on touch-enabled devices.Allow users to browse your slideshows using thumbnail navigation.Alt TextAnalytics notice closedAnalytics notice openedAre you sure?ArrowsAttachment DetailsAuto playAutomatically updates directly from the WP Media LibraryBad requestBase Image HeightBase Image WidthBitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.Blank SlideshowBottom CenterBottom LeftBottom RightBox RainBox Rain GrowBox Rain Grow ReverseBox Rain ReverseBox RandomBrowse slideshowsBrowser upgrade requiredBuilt-in text editor full of features.CSS ManagerCSS Manager notice closedCSS Manager notice openedCSS classesCan you translate? Want to improve MetaSlider for speakers of your language?CaptionCaption speedCarousel SlideshowCarousel Slideshow with CaptionsCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshow in the available space on your website.ChangeChange the default titleChange the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.Change the default widthChange the look and feel of your slideshow with one of our custom-built MetaSlider themes!Change the maximum custom fields for Post FeedCheck out our documentation page for examples, and more information about what you can do with MetaSlider.Choose an image from the left, or search for any topic here to bring up more images.Choose how images are cropped if their size doesn't exactly match the size of your slideshow. This works if "Smart Crop" is selected in the "Image Crop" settings.Choose slideshowChoose the slideshows you wish to export.Choose the speed of the animation in milliseconds. You can select the animation in the "Effect" field.Choose your own images to start a new slideshow.Clarity is focused on accessibility. It has easy-to-read fonts, and a straightforward, distraction-free interface.Clear cacheClick the "Add Slide" button to create your slideshowClick the "Export" button.Click to copy shortcode.Closing add slide UI...Closing utility modal...CollapseComparison ChartComplete!ConfirmContinueCopy allCreate SlideshowCreate a SlideshowCreate a demo slideshow.Create a new slideshow nowCreate a slideshow with sample imagesCreate a slideshow with your imagesCreate and manage as many slideshows as you need.Create one now!Create slides by adding text, videos and more to your imagesCreate slideshows with external videos.Create slideshows with images stored outside of WordPressCreate slideshows with videos from your WordPress media library.Create slideshows with videos in your media libraryCreate slideshows with videos stored outside of WordPressCreate slideshows with your Vimeo videosCreate slideshows with your YouTube videosCreate slideshows with your postsCreate unlimited slideshowsCreate your slideCreatedCropCrop PositionCrunching...CurrentCustom themeCustomize your slideshows to fit with your website.Databold is a minimalist theme recommended for Image, External Image and Post feed slides.Date: %sDefault Slideshow TitleDelay adding the flexslider class to the slideshow.Delay between squares in ms.Delete PermanentlyDescriptionDeselectDeveloper OptionsDisable Legacy LibrariesDisable Legacy WidgetDisabledDisabled (Smart Pad)DismissDisplay multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the "Slide" Effect.Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect.DocumentationDocumentation 📚Doing something...DotsDrag and drop interface not available.Draxler is a minimalist theme.Drop images hereDuplicateDuplicate slideDuplicate this slideshowDuplicated successfully. Reloading...Duplicating...Easily add custom CSS to your slideshows to create the perfect design for your sites.Easily build slides based on your WordPress posts.Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.Easily include videos hosted by YouTube, Vimeo or TikTok.EasingEasing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the "Slide" Effect.EditEdit SlideshowEdit slideshowEdit slideshows easily by showing MetaSlider link under each slideshow.Enable Frontend Edit LinksEnable MetaSlider on Admin BarEnable Mobile SettingsEnable this to inherit the image alt textEnable this to inherit the image titleEnter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.Enter text that will appear with your image slide.Error: No themes were found.Exit previewExportExport %s slideshowsExport successfulExporting %s slideshows...External URLExternal URL slides give you all the power of MetaSlider, using images stored anywhere you want.External VideoExternal Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more.External slideExtra premium themesFadeFade inFailed to open the settings page...Failed to open utility modal...Fetching slideshows...FilmstripFilmstrip (Pro)Filter by typeFilter slideshows‎Find out more &rarr;Find out more about MetaSlider ProFinishedFirstFoldFor users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.Found %s slideshowsFreeFree Basic Support 🚀Full widthGeneralGet MetaSlider ProGet MetaSlider Pro &rarr;Get MetaSlider Pro!Get startedGlobal SettingsGlobal settings savedGo there &rarr;Have your specific queries addressed directly by our experts.HeightHelp CenterHelp Improve MetaSliderHere you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.HiddenHide any slide, without having to delete them.Hide arrows onHide caption on:Hide navigation onHide slide on:Hide stepHomeHorizontalHover pauseHow To UseHow long to display each slide, in milliseconds.IE11Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos.If Autoplay is enabled, this causes screen readers to announce that the slides are changing.If no theme is selected we will use the default theme provided by the slider pluginIf you are a pro member, enter your license key here to receive updates. %sIf you choose "Loop continuously", the slides will loop infinitely. If you choose "Stop on first slide", the slideshow will stop on the first slide after showing all the items. If you choose "Stop on last slide", the slides will stop on the last slide.If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the "Load" button.If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).ImageImage Alt TextImage CropImage Link Alt TextImage Link URLImage SlideImage SlideshowImage Title TextImage not found<br>%sImage search completeImage, External URL and Post Feed slides are displayed in 2 columns, while the rest of slide types in 1 column.Images will need to keep the same file names on the new site.ImportImport %s slideshowsImport SlidesImport data could not be processedImport slidesImport slug not foundImport successfulImporting %s slideshows...Importing...Includes recipes to solve common scenarios.Increase your revenue and conversion with video slides and many more MetaSlider Pro featuresIndexing %s slideshows into local storage...Indexing slideshows... %s remainingInfinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.Insert slideshowInstalledIntelligent image croppingIt looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.Item was copied to your clipboardKeep the plugin name "MetaSlider" when possibleLike MetaSlider? Please help us by giving a positive review at WordPress.orgKeep the plugin name "MetaSlider" when possibleReview MetaSlider &rarr;Keep the plugin name "MetaSlider" when possibleSelect slideshow to insert into postKeyboard ControlsLastLayer SlideLeave a reviewLet's Start &rarr;License KeyLinkLoadLoad allLoad moreLoad remaining %s slideshowsLoad slideshowsLoading %s slideshows...Loading slideshowLoading slideshows list...Loading slideshows...Loading...Loading... Please wait!Loads only on the front-end where needed.Local VideoLocal Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.LogoLoopLoop Carousel ContinuouslyLoop continuouslyMain OptionsManual entryMaximum Number of Custom Field in Post Feed SlidersMedia captionMedia descriptionMetaSliderMetaSlider ProMetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%sMetaSlider Pro is installed!MetaSlider Pro provides stylish and exclusive themes for your slideshows.MetaSlider dashboard loadedMetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site.Microsoft Internet Explorer 11MobileMobile OptionsMobile SettingsMove slideshow to trashNavigationNewNew SlideshowNew WindowNew slides orderNew windowNextNext SlideNext stepNext textNo conflict modeNo default was foundNo error message provided.No error message reported.No image name providedNo photots found.No slidesNo slides foundNo slideshows foundNo slideshows found.No thanksNo themes found.No valid files foundNormal widthNote: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.Nothing to import.Now that you have some slides set, you can preview your slideshow by pressing here.Number of slicesNumber of squaresOKOpacityOpacity of title and navigation, between 0 and 1.Open Media LibraryOpen link in a new windowOpening Unsplash tab...Opening add slide UI...Opening settings page...Opening utility modal...Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %sPage not found: %sPaid Premium Support 🌟Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.Pause the slideshow when hovering over slider, then resume when no longer hovering.Photo by %sPhoto by %s on UnsplashPhoto on UnsplashPixel margin between slides in carousel.Play / Pause ButtonPlease confirm that you would like to delete this slideshow.PortfolioPost FeedPost Feed slidePost Feed slides will automatically display your posts with images, text, custom fields, and much more.Premium SupportPremium supportPreparing 1 slide...Preparing slideshow for duplication...Press %s to save or %s to cancel.Press to clear the slideshow cache from your web browserPress to expandPress to undoPreviewPreview SlideshowPreview slideshowPreviousPrevious SlidePrevious textPrint CSSPrint JSProPro SettingsPro settings savedProcessing...ProfilePublishedQualityQuick StartRainRandomRandomise the order of the slides.Read moreRead our guide on exporting images.RefreshRefresh previewRegular updatesRemoveRestoreReturn to Published SlidesReverseReverse the animation direction.SEOSaveSave & open the previewSave slideshowSaving %s slides. This may take a few moments.Saving theme...Saving...ScheduleSchedule your slidesSearchSearch Unsplash APISearch slideshows (Press ctrl + / to focus)‎Search unsplashSearch unsplash.com...Searching slideshows...Searching...SelectSelect Slider:Select a custom themeSelect a slideshowSelect a theme on the left to use on this slideshow. Click the theme for more details.Select how many custom fields will display in the dropdown menu when you are inserting tags.Select imagesSelect replacement imageSelect the direction that slides will move. Vertical will not work if "Carousel mode" is enabled or "Effect" is set to "Fade".Select the position for new added slides.Select the slideshows you wish to export below, then press here to export them.Select the slideshows you wish to import below, then press here to import them.Set breakpoints for different screen sizesSet the fade in speed of the caption.Set the text for the "next" direction item.Set the text for the "previous" direction item.SettingsSettings & HelpSettings savedShort for millisecondsmsShortcodeShortcode copiedShortcode unable to be copied automaticallyShow navigation options so that users can browse the slides.Show the Previous / Next arrows.Sign up &rarr;Site InformationSlice DownSlice UpSlice Up Down LeftSlice Up LeftSlideSlide Up DownSlide delaySlide deletedSlide directionSlide in LeftSlide in RightSlide permanently deleted.Slide restoredSlide restored.Slide updated successfullySlideshow DefaultsSlideshow ThemeSlideshow heightSlideshow savedSlideshow settingsSlideshow settings savedSlideshow widthSlideshowsSlideshows permanently deleted.Smart CropSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size.Smooth HeightSome images are missingSomething went wrongSort by modified dateSort by titleSpice up your site with animated layers and video slides with MetaSlider ProSquare delayStandardStill working... %s slides remaining...Stop on first slideStop on last slideStraightStretch the slideshow output to fill it's parent container.SuccessSupportSwirlTabindex for navigationTagsThanks for using MetaSliderThanks for using MetaSlider, the WordPress slideshow pluginThanks for using MetaSlider. To get started, click the "Add Slide" button to create your first slide.The ENTER key on a keyboardEnterThe ESCAPE key on a keyboardEscapeThe Nivo Bar theme included here for legacy purposes. Note: only works with Nivo SliderThe Nivo Dark theme included here for legacy purposes. Note: only works with Nivo SliderThe Nivo Light theme included here for legacy purposes. Note: only works with Nivo SliderThe attempt to restore the slide failed.The attempt to update the option failed.The data in this file does not appear to be valid.The field (%s) cannot be emptyThe following images were not found:The image was successfully updated.The option was successfully updatedThe request format was not valid.The requested data does not exist.The requested image does not exist. Please try again.The security check failed. Please refresh the page and try again.The slide was permanently deletedThe slide was successfully restoredThe slide was successfully trashedThe title cannot be empty.ThemeTheme DetailsTheme InstructionsTheme savedThere was an error updating the image. Please try againThere was an error while updating the database. Please try again.This adds an animation when the slideshow loads. It only uses the "Fade" transition effect.This allows user to pause or resume Auto Play on the slideshow.This animation is used when changing slides.This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.This feature is not fully supported in this browser.This helps make the slideshow navigation more accessible.This is a keyboard shortcut. (alt + p)This is used on the navigation button for the active slide. It helps screen readers understand which slide is active.This isn't a valid image format. Please try again.This item does not exist. Please refresh the page and try again.This setting allows you to disable the legacy MetaSlider widget.This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive SlidesThis slideshow is no longer available.This slideshow will be moved to the "Trash" area.This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended.This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.This theme has a special additional functionality that uses image titles as the slide navigation. This theme has a unique design that gives it a sophisticated look.This theme is not officially supported by the slider you chose. Your results might vary.This theme places the controls vertically for a unique look.This theme was created through the theme editor.This was not a slideshow, so we cannot delete it.This was not a slideshow, so we cannot update the setting.ThumbnailThumbnail (Pro)Thumbnail navigationTitleTitle:To edit this slide, click "Restore" and then "Return to Published Slides"Toggle full widthToggle overlay typeToggle your slide's visibilityTop CenterTop LeftTop RightTouch SwipeTour cancelled successfullyTour cancelled unsuccessfullyTransition EffectTransition SpeedTransition between slides automatically.TrashTrash slideTrashed SlidesTrashed slidesURLUncheck this if you would like to include your own CSS.Uncheck this if you would like to include your own Javascript.Undefined error occurredUndoUnique Smart Crop functionality ensures your slides are perfectly resized.Unsplash tab closedUpdate Internet ExplorerUpdate license keyUpdate or activate your MetaSlider Pro now to add a start/end date option to your slidesUpdate previewUpdate slide imageUpdate the MetaSlider Pro settings.Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.Update the default settings used when creating new slideshows.Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.Update the settings used for all the slideshows on your site.Updating slide...Updating...Upgrade hereUpgrade nowUpgrade now to build your own custom themes!Upgrade now to unlock this theme!Upgrade to ProUpload fileUse MetaSlider to insert slideshows and sliders in your pageUse arrow keys to get to the next slide.Use the image alt textUse the image titleVersion: v%sVerticalView our detailed privacy policyView trashed slidesViewing %s out of %s slideshowsViewing %s out of %s slideshows (%s loaded)Viewing 1 slideshowVimeoVimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.Visit documentationVisit metaslider.comVisit wordpress.orgVisitors will see this text if they hover over your image slide. Adding Title text is useful but not required.Warning:Warning: The image data does not exist. Please re-upload the image.We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?We are still searching for your images. Please wait.We could not find any images to import.We keep MetaSlider compatible with the latest versions of WordPress.We removed your selected theme as it could not be found. Was the folder deleted?We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.When enabled this setting will hide the arrows on screen widths equal to or greater than %spx.When enabled this setting will hide the arrows on screen widths less than %spx.When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx.When enabled this setting will hide the caption on screen widths equal to or greater than %spxWhen enabled this setting will hide the caption on screen widths of %1$spx to %2$spxWhen enabled this setting will hide the navigation on screen widths equal to or greater than %spx.When enabled this setting will hide the navigation on screen widths less than %spx.When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx.When enabled this setting will hide the slide on screen widths equal to or greater than %spxWhen enabled this setting will hide the slide on screen widths of %1$spx to %2$spxWhen images are missing you will have to manually update or delete the slide after the import completes.When visitors click on your image slide, they will be taken to this URL.While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.Wide widthWidthWith External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.With External Video slides, you can add videos directly from non-WordPress sources.With Layer slides, you can create beautiful, stylish layers of different elements.With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day.With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.With YouTube slides, you can build beautiful slideshows with your YouTube videos.You are viewing slides that have been trashed, which will be automatically deleted in %s days.You can create your own themes with our theme editorYou can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.You can safely enable this setting. None of your slideshows use the legacy libraries.You currently do not have any slides to preview. If you want, we can import some image slides for you.You currently have %s slideshow that uses legacy libraries.You currently have %s slideshows that use legacy libraries.You don't have any slideshows yet. Click %shere%s to create a new slideshow.You have %s slideshows that can be exported. Information about each slideshow will be presented below.You have no slideshows to exportYou have no slideshows to importYou may use HTML hereYou start with an image and then can add text, video, colors, animations, more images, and even shortcodes.YouTubeYouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.Your images need to be exported manually. Please upload them to the new website before importing these slideshows.Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %sgalleryhttps://www.metaslider.comlast updated: %sminimalistnumber of slides, ex "7 slides"%s slidesprivacy policypxsliderslideshowthis articleverticalvideosview licenseview originalweeksProject-Id-Version: Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release)
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2024-06-16 19:00+0200
Last-Translator: 
Language-Team: 
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: Poedit 3.4.4
1 diapositiva añadida correctamente1 pase de diapositivasAncho 100%Ancho 100%%s por %s píxeles2 columnasSe descargará automáticamente un archivo .json con todos los datos de la presentación.Un tema minimalista de 2 columnas para dividir tus imágenes y leyendas.Un diseño audaz y claro que funciona bien con imágenes más oscuras.Un tema limpio y sutil que incluye flechas de bloque y un diseño atrevido.Algunas notas sobre la exportación de imágenes de pases de diapositivas:Un diseño divertido y circular para alegrar tu sitio. Este tema funciona bien con imágenes oscurasUn diseño futurista y lineal que combina con un fondo oscuro.Un tema minimalista que no interfiere para que puedas mostrar tus hermosas fotos. Se utiliza mejor con las diapositivas de imagen.Un diseño minimalista y limpio creado para integrarse con la mayoría de los temas.Un tema sencillo que se integra perfectamente en cualquier sitio web existente.Un diseño cuadrado simple y elegante que se ve bien en imágenes más oscuras.Un tema para mostrar imágenes y vídeos verticales.ARIA actualAria LiveAcceso denegadoAcceso denegado. Lo siento, no tienes el permiso para completar esta tarea.Opciones de accesibilidadAñadir CSSAñadir nuevaAñadir feed de diapositivasAñadir diapositivaAñadir diapositivas de YouTube, Vimeo y TiktokAñadir nueva diapositivaAñadir nuevo pase de diapositivasAñadir una diapositivaAñade una fecha de inicio/fin a diapositivas individuales.Añade y edita presentaciones más fácilmente mostrando MetaSlider en tu barra de administración.Añadir CSS personalizadoAñadir diapositivas de vídeo externoAgrega capas a tus diapositivas con más de 50 efectos de transición disponibles.Añadir diapositivas de vídeo localAñadir la opción de ocultar diapositivas y leyendas por tamaño de pantalla.Añadir capas a la diapositivaAñadir presentación de diapositivasAñadir a la presentación de diapositivasAñadir CSS personalizado es una característica de MetaSlider Pro. Haz clic para saber más.Clase CSS adicionalAjustes avanzadosDespués de seleccionar una imagen, pulsa aquí para crear tu diapositiva.Aceptar y continuarTodos pases de diapositivasSe han cargado todos los pases de diapositivasTodas las imágenes necesarias para la importación están contadas.Todos los mediosTodas las fotos publicadas en Unsplash se pueden usar gratuitamente.Todos los ajustes guardadosTodos los temasPermitir que la navegación siga suavemente la altura de la diapositiva.Permitir la navegación táctil del carrusel en dispositivos táctiles.Permite navegar a tu usuarios de manera sencilla por tus pases de diapositivas usando las miniaturas.Texto altAviso de Analytics cerradoAviso de Analytics abierto¿Estás seguro?FlechasDetalles del adjuntoAuto arranqueSe actualiza automáticamente desde la biblioteca de medios de WP directamente.Solicitud incorrectaAltura base de la imagenAncho base de la imagenBitono es un tema minimalista con un esquema de 2 colores. Recomendado para diapositivas de imagen, imagen externa y feed de entradas.Presentación en blancoAbajo al centroInferior izquierdoInferior derechoBox RainCrecer lluvia de cajasBox Rain Grow ReverseBox Rain ReverseCaja al azarExplorar los pases de diapositivasActualización obligatoria del navegadorEditor de texto integrado lleno de características.Gestor CSSAviso del gestor CSS cerradoAviso del gestor CSS abiertoClases CSS¿Sabes traducir? ¿Quieres mejorar MetaSlider para los usuarios de tu idioma?SubtítuloVelocidad del subtítuloCarrusel de diapositivasCarrusel de diapositivas con subtítulosMargen de carruselModo carruselCuidado: Estos ajustes son solo para desarrolladores avanzados. Si tienes dudas, déjalo marcado.Centrado CentradoCentro izquierdaCentro derechaCentrarCentra el pase de diapositivas en el espacio disponible en tu sitio web.CambiarCambiar el título por defectoCambia el título por defecto que se usará al crear un nuevo pase de diapositivas. Utiliza %s y se reemplazará por el ID del pase de diapositivas actual.Cambiar el ancho por defecto¡Cambia el aspecto de tu pase de diapositivas con uno de nuestros temas MetaSlider hechos a medida!Cambia el máximo de campos personalizados para el feed de entradasEcha un vistazo a nuestra página de documentación para ver ejemplos y más información sobre lo que puedes hacer con MetaSlider.Elige una imagen de la izquierda o busca aquí cualquier temática para obtener más imágenes.Elige cómo se recortan las imágenes si su tamaño no coincide exactamente con el del pase de diapositivas. Esto funciona si está seleccionado «Recorte inteligente» en los ajustes de «Recorte de imagen».Elige presentación de diapositivasSelecciona los pases de diapositivas que quieres exportar.Choose the speed of the animation in milliseconds. You can select the animation in the "Effect" field.Elige tus propias imágenes para iniciar un nuevo pase de diapositivas.Clarity se centra en la accesibilidad. Tiene fuentes fáciles de leer y una interfaz sencilla y sin distracciones.Vaciar la cachéHaz clic en el botón «Añadir diapositiva» para crear tu pase de diapositivasHaz clic en el botón «Exportar».Haz clic para copiar el shortcode.Cerrando la interfaz de usuario de añadir diapositiva…Cerrando la ventana emergente de utilidad…CerrarGráfico de comparación¡Completo!ConfirmarSeguirCopiar todoCrear una presentación de diapositivasCrear una presentación de diapositivasCrea un pase de diapositivas de demostración.Crea ahora un nuevo pase de diapositivasCrear una presentación de diapositivas con imágenes de muestraCrea un pase de diapositivas con tus imágenesCrea y gestiona tantas diapositivas como necesites.¡Crear uno ahora!Crea diapositivas añadiendo texto, vídeos y mucho más a tus imágenesCrea pases de diapositivas con tus vídeos externosCrea pases de diapositivas con imágenes almacenadas fuera de WordPressCrea pases de diapositivas con los vídeos de tu bliblioteca de medios de WordPress.Crea pases de diapositivas con los videos de tu bliblioteca de mediosCrea pases de diapositivas con vídeos almacenados fuera de WordPressCrea pases de diapositivas con tus vídeos de VimeoCrea pases de diapositivas con tus vídeos de YouTubeCrea pases de diapositivas con tus entradasCrear ilimitados pases de diapositivasCrea tu diapositivaCreadoRecortarPosición del recorteContrayendo...ActualTema personalizadoPersonaliza tus pases de diapositivas para adaptarlos a tu web.Databold es un tema minimalista recomendado para diapositivas de imagen, imagen externa y feed de entradas.Fecha: %sTítulo por defecto del pase de diapositivasRetardo añadiendo la clase «flexslider» al pase de diapositivas.Retardo entre cuadros en ms.Borrar permanentementeDescripciónAnular selecciónOpciones de desarrolladorDesactivas las bibliotecas heredadasDesactivar el widget heredadoDesactivadoDisabled (Smart Pad)DescartarMuestra varias diapositivas a la vez. El pase de diapositivas tendrá un ancho del 100%. El modo «Carrusel» solo utiliza el efecto «Diapositiva».Muestra varias diapositivas a la vez. El pase de diapositivas tendrá un ancho del 100%. El modo «Carrusel» sólo utiliza el efecto «Deslizar».DocumentaciónDocumentación 📚Haciendo algo…PuntosLa interfaz de arrastrar y soltar no está disponibleDraxler es un tema minimalista.Arrastra las imágenes aquíDuplicarDuplicar diapositivaDuplica este pase de diapositivasDuplicado correctamente. Recargando...Duplicando…Añade fácilmente CSS personalizado a tus pases de diapositivas para crear el diseño perfecto para tus sitios.Construye fácilmente diapositivas en base a tus entradas de WordPress.Importa fácilmente pases de diapositivas creados con MetaSlider. Este requiere un archivo generado desde la pestaña de exportación.Incluye fácilmente vídeos alojados en YouTube, Vimeo o TikTok.SuavizadoLa suavización añade una aceleración y desaceleración gradual a las transiciones de diapositivas, en lugar de arranques y paradas bruscos. La suavización solo utiliza el efecto «Diapositiva».EditarEditar el pase de diapositivasEditar el pase de diapositivasEdita presentaciones fácilmente mostrando el enlace MetaSlider debajo de cada presentación.Activar los enlaces de edición de la portadaActivar MetaSlider en la barra de administraciónActiva los ajustes para los móvilesActiva esto para heredar el texto alternativo de la imagenActiva esto para heredar el título de la imagenIntroduce clases CSS personalizadas para aplicarlas a la envoltura del carrusel. Separa varias clases con un espacio.Introduce el texto que aparecerá con la diapositiva de tu imagen.Error: No se encontró ningún tema.Salir de la vista previaExportarExportar %s diapositivasExportación correctaExportando %s pases de diapositivasURL externaLas diapositivas URL externas te ofrecen toda la potencia de MetaSlider, utilizando imágenes almacenadas en cualquier lugar que desees.Vídeo externoLas diapositivas de vídeo externas mostrarán tus vídeos MP4, WebM y MOV con leyendas de texto, imágenes de portada, reproducción automática, silencio, carga lenta, posibilidad de ocultar controles y mucho más.Diapositiva externaTemas premium adicionalesFundidoFundido de entradaFallo al abrir la página de ajustes…Fallo al abrir la ventana emergente de utilidad…Obteniendo pases de diapositivas...PelículaPelícula (Pro)Filtrar por tipoFiltrar los pases de diapositivasDescubre más &rarr;Más información acerca de MetaSlider ProTerminadoPrimeroDoblarPara los usuarios de la versión gratuita de MetaSlider, ofrecemos soporte completo gratuito en los foros de wordpress.org.Para tu comodidad, puedes copiar antes la información básica del sitio para ayudarnos a acelerar el proceso de depuración. Asegúrate de verificar que no se incluye ninguna información personal que quieras mantener en privado.Encontrados %s pases de diapositivasGratuitoSoporte básico gratuito 🚀Ancho completoGeneralObtén MetaSlider ProConsigue MetaSlider Pro &rarr;¡Obtén MetaSlider Pro!Primeros pasosAjustes globalesAjustes globales guardadosIr ahí &rarr;Haz que tus consultas específicas sean tratadas directamente por nuestros expertos.AltoCentro de ayudaAyudar a mejorar MetaSliderAquí encontrarás documentación y dos niveles de soporte para elegir. Además, puedes proporcionarnos información adicional específica para tu web, servidor, etc.OcultoOculta cualquier diapositiva, sin tener que borrarla.Ocultar flechas enOculta la leyenda en:Ocultar navegación enOculta la diapositiva en:Ocultar el pasoInicioHorizontalPausar cuando situes el ratón encimaCómo utilizarloCuanto tiempo se muestra cada diapositiva en milisegundos.IE11Ideal para imágenes, diapositivas de feed de entradas y vídeos verticales de YouTube y Vimeo.Si la reproducción automática está activada, esto hace que los lectores de pantalla anuncien que las diapositivas están cambiando.Si no se selecciona un tema, usaremos el tema por defecto proporcionado por el plugin del carruselSi eres un miembro Pro, introduce aquí tu clave de licencia para recibir actualizaciones. %sSi eliges «Continuamente», las diapositivas se mostrarán en bucle infinito. Si eliges «Detener en la primera diapositiva», la presentación se detendrá en la primera diapositiva después de mostrar todos los elementos. Si eliges «Detener en la última diapositiva», las diapositivas se detendrán en la última diapositiva.Si tienes un archivo de importación puedes subirlo aquí para procesarlo. La información de cada pase de diapositivas se mostrará abajo. Podrás confirmar antes de importar.Si tiene pocos pases de diapositivas, los prepararemos automáticamente. Si tiene muchos pases de diapositivas, haz clic en el botón «Subir».Si quieres utilizar los títulos de las imágenes como navegación, tendrás que utilizar FlexSlider. Además, para cambiar la etiqueta de navegación de la diapositiva, hay que editar el título de la imagen en la biblioteca de medios o manualmente en la diapositiva (pestaña SEO).ImagenTexto Alt de la Imagen:Recorte de la imagenTexto alternativo del enlace de la imagenURL del enlace de la imagenImagen de la diapositivaPresentación de imágenesTexto del Título de la ImagenImagen no encontrada<br>%sBúsqueda de imágenes completaLas diapositivas de imagen, URL externa y feed de entradas se muestran en 2 columnas, mientras que el resto de tipos de diapositivas en 1 columna.Las imágenes deberán mantener los mismos nombres de archivo en la nueva web.ImportarImportar %s pases de diapositivasImportar diapositivasNo se han podido procesar los datos de importaciónImportar diapositivasNo se ha encontrado el slug de importaciónImportación correctaImportando %s pases de diapositivasImportando...Incluye recetas para solucionar escenarios comunes.Aumenta tus ingresos y conversiones con diapositivas de vídeo y muchas otras caracteríscticas Pro de MetaSliderIndexando %s pases de diapositivas en el almacenamiento local...Indexando los pases de diapositivas... %s restantesBucle infinito de diapositivas cuando el modo carrusel está activado. Esta opción desactiva las flechas y la navegación.Insertar presentación de diapositivasInstaladoRecorte inteligente de la imagenParece ser que estás usando %s. Aunque MetaSlider es compatible con %s en la vista pública de la web en la que los usuarios ven tus pases de diapositivas, algunas de las herramientas que ofrecemos aquí necesitan un navegador moderno.El elemento ha sido copiado a tu portapapeles¿Te gusta MetaSlider? Por favor, ayúdanos dando una opinión positiva en WordPress.orgValora MetaSlider &rarr;Selecciona el pase de diapositivas que quieres insertar en la entradaControles del tecladoÚltimoCapa de corteDeja una valoraciónEmpecemos &rarr;Clave de la licenciaEnlaceCargarCargar todoLoad moreCargar las %s diapositivas restantesCargar pases de diapositivasCargando %s pases de diapositivasCargando el pase de diapositivasCargando la lista de pases de diapositivas...Cargando los pases de diapositivas...Cargando…Cargando… ¡Por favor, espera!Solo carga en la portada cuando sea necesario.Vídeo localLas diapositivas de vídeo local mostrarán tus vídeos MP4, WebM y MOV con imágenes de portada, reproducción automática, silencio, carga lenta, posibilidad de ocultar controles y mucho más.LogotipoBucleCarrusel en bucle continuoEn bucle continuoOpciones principalesIntroducción manualNúmero máximo de campos personalizados en los controles deslizantes de feed de entradasLeyenda de mediosDescripción de mediosMetaSliderMetaSlider ProMetaSlider Pro está instalado pero no está actualizado. Puedes actualizarlo %saquí%s. Leer más sobre este aviso %saquí%s¡MetaSlider Pro instalado!MetaSlider Pro proporciona temas elegantes y exclusivos para tus pases de diapositivas.Cargado el escritorio de MetaSliderMetaSlider te da la capacidad de crear un hermoso pase de diapositivas, carrusel o galería en tu sitio de WordPress.Microsoft Internet Explorer 11MóvilOpciones de móvilAjustes para los móvilesMover el pase de diapositivas a la papeleraNavegaciónNuevoNueva presentación de diapositivasNueva ventanaNuevo orden de diapositivasNueva ventanaSiguienteSiguiente diapositivaSiguiente pasoTexto para «Siguiente»Sin modo de conflictoNo se encontró nada por defectoNo se han proporcionado un mensaje sobre el error.No se ha informado de ningún mensaje de error.No se ha proporcionado ningún nombre de la imagenNo se encontraron fotos.No hay diapositivasNo se ha encontrado ninguna diapositivaNo se han encontrado presentaciones de diapositivasNo se ha encontrado ningún pase de diapositivas.No, graciasNo se han encontrado temas.No se encontraron archivos válidosAncho normalNota: Aún puedes importar pases de diapositivas que contengan imágenes que falten. Solo necesitarás actualizar o borrar manualmente esas diapositivas de sus páginas individuales de edición del pase de diapositivas.Nada que importar.Ahora que tienes algunas diapositivas, puedes previsualizar el pase de diapositivas haciendo clic aquí.Número de cortesNmúero de cuadrosAceptarOpacidadOpacidad del título y navegación, entre 0 y 1.Abrir biblioteca de mediosAbrir el enlace en una ventana nuevaAbriendo pestaña de Unsplash…Abriendo la interfaz de usuario de añadir diapositiva…Abriendo la página de ajustes…Abriendo la ventana emergente de utilidad…Opta por permitir que MetaSlider recopile responsablemente información sobre cómo usas nuestro plugin. Está desactivado por defecto, pero puede haber sido activado a través de un aviso. %sPágina no encontrada: %sSoporte Premium de pago 🌟Los usuarios de pago del plugin premium pueden abrir un tique en nuestro centro privado de soporte para recibir soporte personalizado y tiempos de respuesta más rápidos.Pausa la presentación de diapositivas al pasar el cursor sobre la misma, luego vuelve a ponerse en marcha cuando quites el cursor.Foto de %sFoto de %s en UnsplashFoto en UnsplashMargen en píxeles entre diapositivas en el carrusel.Botón de reproducción/pausaPor favor, confirma que deseas eliminar esta presentación de diapositivas.PorfolioFeed de la entradaFeed de diapositivasLas diapositivas de feed de entradas mostrarán automáticamente tus entradas con imágenes, texto, campos personalizados y mucho más.Soporte premiumSoporte PremiumPreparando 1 diapositiva...Preparando el pase de diapositivas para duplicado...Pulsa %s para guardar o %s para cancelar.Pulsa para vaciar la caché de los pases de diapositivas de tu navegador webPulsa para ampliarHaz clic para deshacerVista previaVista previa del pase de diapositivasPrevisualizar pase de diapositivasAnteriorDiapositiva anteriorTexto para «Anterior»Imprimir CSSImprimir JSProAjustes ProAjustes Pro guardadosProcesando...PerfilPublicadoCalidadInicio rápidoLluviaAleatorioOrdenar aleatoriamente las diapositivas.Leer másLee nuestra guía sobre la exportación de imágenes.RecargarActualizar la vista previaActualizaciones periódicas.EliminarRestaurarVolver a las diapositivas publicadasInvertirInvertir orden de la animación.SEOGuardarGuardar y abrir la vista previaGuardar presentación de diapositivasGuardando %s diapositivas. Esto puede tardar unos momentos.Guardando tema…Guardando...ProgramarPrograma tus diapositivasBuscarBuscar API de UnsplashBuscar pases de diapositivas (pulsa «Ctrl + /» para enfocar)Buscar en UnsplashBuscar en unsplash.com…Buscando pases de diapositivas...Buscando...SeleccionarSeleccionar paseSelecciona un tema personalizadoSeleccionar un pase de diapositivasSelecciona un tema de la izquierda para usarlo en este pase de diapositivas. Haz clic en el tema para más detalles.Selecciona cuántos campos personalizados se mostrarán en el menú desplegable al insertar etiquetas.Seleccionar imágenesSelecciona la imagen de sustituciónSelecciona la dirección en la que se moverán las diapositivas. Vertical no funcionará si «Modo carrusel» está activado o «Efecto» está configurado como «Fundido».Selecciona la posición para las nuevas diapositivas añadidas.Selecciona abajo las diapositivas que quieres exportar, luego pulsa aquí para exportarlos.Selecciona abajo los pases de diapositivas que quieres importar, luego pulsa aquí para importarlos.Establece puntos de ruptura para diferentes tamaños de pantallaEstablece la velocidad del fundido de la leyenda.Establece el texto para el elemento de dirección «siguiente».Establece el texto para el elemento de dirección «anterior».AjustesAjustes y ayudaAjustes guardadosmsShortcodeShortcode copiadoNo se ha podido copiar automáticamente el shortcodeMuestra opciones de navegación para que los usuarios puedan navegar por las diapositivas.Mostrar las flechas anterior/siguiente.Regístrate &rarr;Información del sitioCortar abajoCortarCortar arriba abajo izquierdaCortar arriba izquierdaDiapositivaDeslizar arriba abajoRetraso de la diapositivaDiapositiva eliminadaDirección del paseDeslizar desde la izquierdaDeslizar desde la derechaDiapositiva borrada permanentemente.Diapositiva restauradaDiapositiva restaurada.Diapositiva actualizada correctamenteAjustes por defecto de los pases de diapositivasTema del pase de diapositivasAltura de la presentación de diapositivasPase de diapositivas guardadoAjustes del pase de diapositivasAjustes del pase de diapositivas guardadosAnchura de la presentación de diapositivasPases de diapositivasPases de diapositivas borrados permanentemente.Recorte inteligenteEl recorte inteligente asegura que tus diapositivas adaptables sean recortadas en una proporción correcta respecto a la presentación de diapositivas.Altura suaveFaltan algunas imágenesSe ha producido un errorOrdenar por la fecha de modificaciónOrdenar por el títuloDale vida a tu sitio con capas animadas y diapositivas de vídeo con MetaSlider ProRetardo entre cuadrosEstándarSigue trabajando... %s pases de diapositivas restantes...Detener en la primera diapositivaDetener en la última diapositivaRectoEnsancha la presentación de diapositivas hasta rellenar el contenedor padre.CorrectoSoporteRemolinoTabindex para la navegaciónEtiquetasGracias por usar MetaSliderGracias por usar MetaSlider, el plugin de pases de diapositivas para WordPressGracias por usar MetaSlider. Para empezar haz clic en el botón de «Añadir diapositiva» para crear tu primera diapositiva.IntroEscTema Bar de Nivo incluido aquí para propósitos de retrocompatibilidad. Nota: sólo funciona con Nivo SliderTema Dark de Nivo incluido aquí para propósitos de retrocompatibilidad. Nota: sólo funciona con Nivo SliderTema Light de Nivo incluido aquí para propósitos de retrocompatibilidad. Nota: sólo funciona con Nivo SliderEl intento de recuperar la diapositiva ha fallado.El intento de actualización ha fallado.Los datos de este archivo no parecen ser válidos.El campo (%s) no puede estar vacíoLas siguientes imágenes no se han encontrado:La imagen se ha actualizado con éxito.La opción se ha actualizado con éxito.El formato de la petición no era válido.Los datos solicitados no existen.La imagen solicitad no existe. Por favor inténtalo de nuevo.La comprobación de seguridad ha fallado. Por favor, actualiza la página e inténtalo de nuevo.La diapositiva ha sido borrado permanentementeLa diapositiva se ha restaurado correctamenteLa diapositiva se ha eliminado correctamenteEl título no puede estar vacío.TemaDetalles del temaInstrucciones del temaTema guardadoHa habido un error actualizando la imagen. Por favor, inténtalo de nuevoHa habido un error al actualizar la base de datos. Por favor, inténtalo de nuevo.Esto añade una animación cuando se carga el pase de diapositivas. Solo utiliza el efecto de transición «Fundido».Esto permite al usuario pausar o reanudar la reproducción automática del pase de diapositivas.Esta animación se utiliza al cambiar de diapositiva.Esta característica no es totalmente compatible con Internet Explorer 11 y puedes experimentar tiempos lentos en los resultados de búsqueda.Esta característica no es totalmente compatible con este navegador.Esto hace que la navegación por el pase de diapositivas sea más accesible. (alt + p)Esto se utiliza en el botón de navegación para la diapositiva activa. Ayuda a los lectores de pantalla a entender qué diapositiva está activa.Este formato de imagen no es válido. Por favor, inténtalo de nuevo.El elemento no existe. Por favor, actualiza la página e inténtalo de nuevo.Este ajuste te permite desactivar el widget MetaSlider heredado.Este ajuste te permite de desactivar las bibliotecas de pases de diapositivas heredadas: Nivo Slider, Coin Slider y Responsive SlidesEste carrusel ya no está disponible.Este pase de diapositivas se moverá a la área «Papelera».Este texto lo utilizan los motores de búsqueda y los visitantes que utilizan lectores de pantalla. Es muy recomendable añadir texto alternativo a los enlaces.Este texto es utilizado por los motores de búsqueda y los visitantes que utilizan lectores de pantalla. Es muy recomendable añadir texto alt.Este tema tiene una funcionalidad adicional especial que utiliza títulos de imágenes como la navegación de diapositivas. Este tema tiene un diseño único que le da un aspecto sofisticado.Este tema no es oficialmente compatible con la diapositiva que has elegido. Tus resultados podrían variar.Este tema coloca los controles verticalmente para obtener un aspecto único.Este tema fue creado con el editor de temas.Esto no era una presentación de diapositivas, así que no podemos eliminarla.Esto no es un pase de diapositivas, por lo que no se puede actualizar el ajuste.MiniaturaMiniatura (Pro)Navegación por miniaturasTítuloTitulo:Para editar esta diapositiva, haz clic en «Restaurar» y luego en «Volver a diapositivas publicadas»Cambiar a ancho completoCambiar tipo de superposiciónCambia la visibilidad de tu diapositivaSuperior centroSuperior izquierdoSuperior derechoDeslizar tocandoVisita guiada cancelada correctamenteVisita guiada cancelada incorrectamenteEfecto de la transiciónVelocidad de la transiciónTransición entre diapositivas automáticamente.PapeleraMover la diapositiva a la basuraDiapositivas eliminadasDiapositivas eliminadasURLDesmarca esta si quieres incluir tu propio CSS.Desmarca esta si quieres incluír tu propio JavaScript.Ha ocurrido un error no definidoDeshacerLa funcionalidad única de recorte inteligente asegura que tus diapositivas se redimensionen a la perfección.Pestaña de Unsplash cerradaActualiza Internet ExplorerActualizar la clave de la licenciaActualiza o activa MetaSlider Pro ahora para añadir una opción de fecha de inicio/fin a tus diapositivasActualizar la vista previaActualizar imagen de la diapositivaActualiza los ajustes de MetaSlider Pro.Actualiza la altura por defecto para la base de la imagen. Esto se usará para el recorte base de la imagen y para las dimensiones del pase de diapositivas. Si se configura a un ancho del 100% la altura se ajustará en consecuencia.Actualiza los ajustes por defecto utilizados al crear nuevos pases de diapositivas.Actualiza el ancho por defecto para la base de la imagen. Esto se usará para las dimensiones del pase de diapositivas y el recorte base de la imagen.Actualiza los ajustes utilizados para todos los pases de diapositivas de tu sitio.Actualizando la diapositiva...Actualizando...Actualizar aquíActualizar ahora¡Actualiza ahora para construir tus propios temas personalizados!¡Mejora ahora para desbloquear este tema!Actualizar a ProSubir archivoUsa MetaSlider para insertar pases de diapositivas y carruseles en tu páginaUtiliza las teclas de flecha para pasar a la siguiente diapositiva.Utilizar el texto alternativo de la imagenUtilizar el título de la imagenVersión: %sVerticalMira nuestra detallada política de privacidadVer diapositivas borradasViendo %s de %s pases de diapositivasViendo %s de %s pases de diapositivas (%s cargados)Viendo 1 pase de diapositivasVimeoLas diapositivas de Vimeo mostrarán tus vídeos con reproducción automática, silencio, posibilidad de ocultar controles y mucho más.Visitar la documentaciónVisitar metaslider.comVisitar wordpress.orgLos visitantes verán este texto si pasan el ratón por encima de la imagen. Añadir el texto del título es útil pero no obligatorio.Advertencia:Advertencia: No existen datos de la imagen. Vuelve a subirla, por favor.Actualmente estamos construyendo la próxima versión de MetaSlider. ¿Puedes ayudarnos compartiendo información de diagnóstico no sensible?Todavía estamos buscando tus imágenes. Por favor, espera.No hemos podido encontrar ninguna imagen que importar.Mantenemos MetaSlider compatible con las últimas versiones de WordPress.Hemos quitado el tema que has seleccionado ya que no estaba disponible. ¿Se ha borrado la carpeta?También nos gustaría enviarte correos electrónicos poco frecuentes con importantes actualizaciones de seguridad y funciones. Consulta nuestros %s para más detalles.Cuando está activado, este ajuste oculta las flechas en pantallas con anchuras iguales o superiores a %spx.Cuando está activado, este ajuste oculta las flechas en las pantallas con anchuras inferiores a %spx.Cuando está activado, este ajuste oculta las flechas en las pantallas con anchuras comprendidas entre %1$spx y %2$spx.Cuando está activado, este ajuste oculta la leyenda en pantallas con anchuras iguales o superiores a %spxCuando está activado, este ajuste oculta la leyenda en pantallas de anchura %1$spx a %2$spxCuando está activado, este ajuste oculta la navegación en pantallas con anchuras iguales o superiores a %spx.Cuando está activado, este ajuste oculta la navegación en pantallas con anchuras inferiores a %spx.Cuando está activado, este ajuste oculta la navegación en pantallas con anchuras comprendidas entre %1$spx a %2$spx.Cuando está activado, este ajuste oculta la diapositiva en pantallas de anchura igual o superior a %spxCuando está activado, este ajuste oculta la diapositiva en pantallas de anchura %1$spx a %2$spxCuando haya imágenes no disponibles tendrás que subir o borrar manualmente la diapositiva cuando termine la importación.Cuando los visitantes hagan clic en tu diapositiva de imagen, serán redirigidos a esta URL.Aunque el ancho y alto definidos arriba podrán usarse para el recorte (si esté activo) y las dimensiones base del pase de diapositivas, puedes también configurar que el pase de diapositivas se ajuste a su contenedor.Ancho amplioAnchoCon las diapositivas URL externas, puedes cargar imágenes directamente desde fuentes ajenas a WordPress, como CDN o hosts de imágenes.Con las diapositivas de vídeo externas, puedes añadir vídeos directamente desde fuentes ajenas a WordPress.Con las diapositivas de capas, puede crear capas hermosas y elegantes de diferentes elementos.Con las diapositivas de vídeo locales, puedes crear hermosos pases de diapositivas con los vídeos de tu biblioteca de medios de WordPress.Con MetaSlider Pro, puedes programar tus diapositivas. Puedes elegir mostrar tus diapositivas en fechas específicas, días de la semana u horas del día.Con las diapositivas de feed de entradas, puedes crear presentaciones con tus últimas entradas, eventos o productos de WooCommerce.Con las diapositivas de Vimeo, puedes crear hermosas presentaciones con tus vídeos de Vimeo.Con las diapositivas de YouTube, puedes crear hermosas presentaciones con tus vídeos de YouTube.Estás viendo diapositivas que se han movido a la papelera, que se borrarán automáticamente en %s días.Puedes crear tus propios temas con nuestro editor de temasPuedes añadir fácilmente una imagen aquí desde una de las opciones. Además, proporcionamos imágenes gratuitas de la biblioteca de Unsplash.Puedes activar este ajuste sin problemas. Ninguna de tus pases de diapositivas utiliza las bibliotecas heredadas.Actualmente no tienes diapositivas para previsualizar. Si quieres, podemos importar algunas imágenes de diapositivas para ti. Actualmente tienes %s pases de diapositivas que utilizan bibliotecas heredadas.Actualmente tienes %s pases de diapositivas que utilizan bibliotecas heredadas.Todavía no tienes ningún pase de diapositivas. Haz clic %saquí%s para crear un nuevo pase de diapositivas.Tienes %s pases de diapositivas que se pueden exportar. La información de cada pase de diapositivas se mostrará abajo.No tienes ningún pase de diapositivas que exportarNo tienes ningún pase de diapositivas que importarAquí puedes usar HTMLEmpiezas con una imagen y luego puedes añadir texto, vídeo, colores, animaciones, más imágenes e incluso shortcodes.YouTubeLas diapositivas de YouTube mostrarán tus vídeos con reproducción automática, silencio, posibilidad de ocultar controles y mucho más.Tus imágenes deben exportarse manualmente. Súbelas a la nueva web antes de importar estos pases de diapositivas.Es posible que tus ajustes no se guarden correctamente debido a una configuración en tu servidor. %s está establecido actualmente en %s, pero recomendamos un ajuste de 4000. Por favor, consulta %s para obtener más información. El archivo «php.ini» está siendo cargando desde aquí: %sgaleríahttps://www.metaslider.comúltima actualización: %sminimalista%s diapositiva(s)política de privacidadpxcarruselpase de diapositivaseste artículoverticalvídeosver licenciaver originalsemanaslanguages/ml-slider-pt_BR.mo000064400000017152151213255500011750 0ustar00��l|��0		1	;	M	
]	k		r	
|	�	�	�	�	�	
�	�	�	
�	


Z

y
�
�
�
�
�
�

�
2�
;MDV
���������
��/�#)
8CO
`
k
v	������S�(/

X
	f
p
y
~
!�
�
�
�
�
�
$�
$),N*{.��	��!(17CSk|l�O�IV_:h���
��	�'��6=7u~�	��������!2 Aby�����~�Raq�%����9�*G
aUl��
��
���		
1>pw���
����+AS	hor*�
)5
;#Fj"s���;� �,5F2|2���,#Pciy�����v��
E!
grz���$��7�>V_gI\4[-.=
fH!
FjNi_h2kZb:#'RM`7+6WPEg&U(0X ^?</;dTaS>)3OeK%LG9VcC1J,$8lQA]*@Y"D5B	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playBottom CenterBottom LeftBottom RightBox RainBox Rain Grow ReverseBox Rain ReverseBox RandomCSS classesCaptionCaption speedCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshowChoose slideshowCropCrop PositionDelay adding the flexslider class to the slideshowDelay between squares in msDeveloper optionsDisabledDisplay multiple slides at once. Slideshow output will be 100% wide.DocumentationDotsEasingEffectFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage CropImage SlideImage Title TextMetaSliderNavigationNew WindowNext textNo conflict modeNo slideshows foundNumber of slicesNumber of squaresOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Pixel margin between slides in carousel.Previous textPrint CSSPrint JSRainRandomRandomise the order of the slidesReverseReverse the animation directionSEOSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeShow the previous/next arrowsShow the slide navigation bulletsSlice UpSlideSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeSpecify any custom CSS Classes you would like to be added to the slider wrapperSquare delayStandardStraightStretch the slideshow output to fill it's parent containerSwirlTitleTitle:Top CenterTop LeftTop RightTransition between slides automaticallyURLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthpxProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:58-0600
Last-Translator: Mauro Mascarenhas <mauro.mascarenhas@nintersoft.ml>
Language-Team: 
Language: pt_BR
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 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Adicionar SlideOpções avançadasVelocidade da animaçãoVocê tem certeza?SetasIniciar automaticamenteCentro inferiorEsquerda inferiorDireita inferiorChuva de caixaChuva de caixa crescente reversaChuva de caixa reversaCaixa aleatóriaClasses CSSTextoVelocidade do textoMargem do carrosselModo carrosselAtenção: Esta configuração é apenas para desenvolvedores avançados. Se você não tem certeza, deixe esta caixa marcada.Centro centralCentro esquerdoDireita centralAlinhamento centralAlinhamento central da apresentaçãoSelecione a apresentaçãoCortarPosição de corteAtraso ao adicionar a classe flexslider à apresentaçãoAtraso entre quadrados em msOpções do desenvolvedorDesativadoMostrar múltiplos slides de uma vez. A saída da apresentação será 100% completa.DocumentaçãoPontosFacilidadeEfeitoDesvanecerDobrarGeralAlturaEscondidoHorizontalParar durante passagem do mouseQuanto tempo mostrar cada slide, em milissegundosImagemTexto alternativo da imagemCorte de imagemSlide de imagemTexto de título da imagemMetaSliderNavegaçãoNova janelaTexto próximoSem modo de conflitoNão foi encontrada qualquer apresentaçãoNúmero de fatiasNúmero de quadradosOpacidadeParar a apresentação enquanto passar o mouse sobre o apresentador, e então continuar após o mouse deixa-lo.Margem em pixel entre slides no carrossel.Texto anteriorImprimir CSSImprimir JSChuvaAleatórioFazer a ordem dos slides aleatóriaReverterReverter a direção da animaçãoSEOSalvarSelecionar apresentação:Selecione uma apresentação para inseri-la na publicaçãoSelecione a direção de deslizeDefina o esmaecimento em velocidade do textoDefina a velocidade das animações, em milissegundosDefina o texto para o item de direção 'próximo'Defina o texto para o item de direção 'anterior'ConfiguraçõesCódigo reduzidoMostrar setas anterior/próximoMostrar marcações da navegação de slidesDeslizar para cimaSlideAtraso de slideDireção do slideTransição de efeito do slideAltura da apresentaçãoLargura da apresentaçãoCorte inteligente faz a certeza de que seus slides responsivos são cortados em uma proporção que resulta em uma apresentação de slides de tamanho consistenteEspecifique qualquer classe CSS personalizada que você gostaria que fosse adicionada ao compilador de apresentaçõesAtraso de quadradoPadrãoEm linha retaExpandir a saída da apresentação para ajustá-la à seu recipienteRedemoinhoTítuloTítulo:Centro superiorEsquerda superiorDireita superiorTransição automática entre slidesURLDesmarque isto se você deseja incluir seu próprio CSSDesmarque isto se você deseja incluir seu próprio JavaScriptVerticalLargurapxlanguages/ml-slider-fr_FR.mo000064400000224221151213255500011735 0ustar00�����l+�9�9:
:
#:#.:	R:K\:A�:;�:A&;*h;W�;E�;w1<M�<<�<?4=/t=�=	�=
�=G�=>'>/>7>	L>$V>{>�>�>*�>G�>?-?DG?�?7�?�?
�?�?C@O@d@Bu@�@�@�@0�@!A61AhA
{A7�AD�AABEBNBfB
~B�B�B	�B8�B�B�BCoC�C
�C�C�C�C
�C�C�C
�CDD&3DZDfD�D�DL�D�D
�D	E E=E
MEZ[E
�E�E�E�EB�E-F4F�MF�FZ�F.GGjvGT�G�6H�H)�HfI0{Ir�IJ5+JaJ|J�J�J�J�J	�J�J�J�JKK(KAK%\K#�K1�K�K<�K'%L9ML@�L3�L9�L(6M*_M!�M�M�M�M�M
�M�MN
N3NZKN�N�N3�N�NO+O7O@OROkO�O�O�Op�OpP
�P�P�P�P&�P�PQ	Q#Q3Q%LQrQU�Q2�Qe
R9pR�R��RCSHSWSGfS�S�S�S)�S&)T`PT2�T�TUUU*U<UWU`dU�U��U�V�V�V�V#�V�VW	W$W4WCWXW"mW�W�W�Wd�W�	X�X�X�X

YYY0YJY^YjYzY�Y=�Y�Y�Y�Y�	Z�Z.�Z�Z�Z[[	'[1[
6[A[
M[0X[�[F�[\�[S2\K�\��\��]|{^��^�_�_
�_�_``'`7`H`^`ot`=�`"a)a
>a"La
oa}a�a�a�a+�a\�a,Vb#�bb�b
c	c%c�@c!d|$dH�dT�d?eQeVebeqe�e�e�e�e	�e�e�e�e�ef f
6fAf)Yf�f��f*g/g4gOgagng3{g
�g�g
�g�gq�g[hIxh�hl�hKijiqi�i�i
�i�i
�i
�i�i
�i�i
�i	�i	jj!j6jQjlj�j	�j�j�j�j	�j�j�jk�k�kS�k(l9lKlNl1Vl�l�l�l�l�l�l�m�m�m��mSxn�n�n�n(o+o<?o	|o	�o�og�opp(p&=p!dp8�p�p
�p�p�p�p	qq
!q	/q9qBqFqSq
fqtq	|q�q�q�q�q"�q	�q#�q�q�qrr&r.rIr Qrrrvr{r�r.�r�r	�r�r�r	ss.$sSscszs�s�s�s�s�sV�s\5t
�t�t~�t)8uObuO�u*v%-v+Sv/v�v�v�v�v	�v�v+w<8w uw�w�w
�w�w�w
�w�w
�w�w
xx
)x7xFxaxpx�x�x�x�x�x�x�xy
y&y
FymQy
�y�y�y�y
zLzkzxz'�z�z�z�z;�z{{%{+{C{H{;d{e�{!|#(|WL|X�|Y�|(W}(�}2�}�}$�}# ~#D~!h~"�~5�~A�~!%#G"k��
���7�A�[V�?��,�l�4��9��'��u#�2��@̂@
�rN�&��1�w�m��b�Bc�X��<��0<�1m�:��	چ��	��I�`�r���
����	��Çχ�	��(,�U�[�g�v���7��>����J�i�}���X����#$��H�>��t6�=�������, �!M�o�~�<��(nj���(� 1�R�f�+����ƍh̍5�I�^�nr��C�~.�4��'�D
�PO�v��^�Ov�TƑ^�Tz�bϒS2�X��\ߓR<�h��H���A�
���n�Sp�RĖh����h�Mu�QØ^�4t�x��U"�fx�;ߚ;�LW�f�� � ,�M�kc�ϜuלrM��������Ǟ
؞)�
���	&�0�=�F�M�
Z�h��n�#1�U�a�n�~�
��`��I��ME�W��=�j)�G���ܣfy�E�J&�@q���	��ȥNץ&�A�M�+`���1�� ֦���A$�of�֧,�^�+|�i��#�6�K�g`�ȩ�Z��Q�g�{�H���K��H�h�Jy�iīP.�� �� ��Ҭ���N�c�w������I�X�g�x�	��������ˮܮ(��7�V�(g�(����iů/�8�O�"c�����u���0�B�T�Gg������ֱv�q��P��Y�o޳N�U�6p�z��?"�zb�ݶR�'?�!g�3��$����
�	�	�"�.�B�&V�&}�0��#ո<��6�`Q�0��R�K6�=��S��,�.A�+p�����ջ	ܻ�����;&�b�
��4�A�a�{�����(�����	�!��)����
I�W�j���6��"���	����'1�Y�|h�J��0�H����
�����Y-�;��3����<�8R�{��A�+I�u��������������r����� ������.��2��.�
N�\�p����!������������{�z�������	������	�#�0�,B�o�F~������������C��� �;�U�s���
������=����n��xk�t��aY�v���2���	��������%���+�=�R�e�~����MY�������;���/7�g�|���G��}��5q�(�����U�	k� u����6v�P����:�T�j�r���������������&��
�!�@�(X���
��#��O��
 ��.���&�E�W�k�S{�����
�������O��"�o+���������#��
���*�<�Z�l�u��������� ��"���.�E�X�t���	�������������s��l������4����)��#�37�%k�$������������S������9/�i�=~�	����#���������#��0��3�[F������������#�<�H�U�a�
e�s�������������
��&����1�	=�G�]�	x�	��$����"������#���G*�r���	����
����<��-�C�a�|�
����%����w���w���'��<�?
�hJ�h��C�,`�A��F��	� �1�H�
K�V�6h�o��)�9�M�b�
o�!}������������)�C�']�����0��"����1�G�1^���
��/������
��������n�u���1��%�%�
�O �p�x�
��������H�������h��i �j��:��60�9g�$��3�"��,�.J�)y�8��P�4-�&b�0�� �������Q"�\t�o�sA�@�����Q�A��$<�G�D>��%;-�i�(��LXk�A@SF�]�	9CSkqtz�&13eu������.		7	%A	"g	"�	�	:�	A�	&.
U
t]
�
 �
!
{,�'�/��_
�d
N�
!Jl��M�8=STkG�/8Wf=o%�!�/�%B�H�+�A�]��@G�3)M]{��'o�eQl�n$k�p�fpm�qEn��&e���~�mE���>��^�b�}P E� �!w�!�6"Q�"Q
#\_#z�#)7$)a$ �$��$F%�N%�&3�&�'�'�'�'((2(	5(	?(I(U(^(f(v(�(EZ
wn��RK<��V��L~�".4��[�P��)�9�p��4�cY�(�+t�3��?[m&=_��MxB�����,i��8�K��a�XfZ�:��C�P?d&����z��;�����`�OC�8����������OR���I�B��G�J@���5�n�X��s�;�F�xDN�!���@�g�*7�+�� ���7�|\��#O���H�_����][d|c2#�gD���)��e9�vW�0�RSz�k=qC]����@�-�F)�p��^�c7T^�H;���k�w(�5���M��o/U
�/2AuA��o�I"�Nb�
��v{f2~Naw�L��L�4,J��<5�g��q�v
�	}T(b�W�ye���"!Z���6,�'/��h���_$=f1��sSe3j0�� u�j6�F�%-Ii�E�do}���}��1�QrT�^�\V��r�9��Y��A$��0U�%���������~-'3�P�1%��J#>������b��t���]*��':|yV��h����pk���&��`��Eu�i�s���������l�B�����m��x���yD�
�`>K�<m�+.����h:�*����a�?�t�
�q��j�{������l8����r�����GM�QQ�z�X�!\H >$G��U	�Yl.�������6����	�{W�Sn�1 slide added successfully1 slideshow100% Width100% width1000 by 1000 pixels%s by %s pixels2 columnsA .json file will automatically be downloaded with all your slideshow data.A 2 columns minimalistic theme to split your images and captions.A bold and clear design that works well on a darker images.A clean, subtle theme that features block arrows and bold design.A few notes on exporting slideshow images:A fun, circular design to brighten up your site. This theme works well with dark imagesA futuristic and linear design that goes will with a dark background.A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.A minimalistic, no-frills design that was built to blend in with most themes.A simple theme that neatly blends into any existing website.A simple, slick square design that looks good on darker images.A theme to showcase vertical images and videos.ARIA CurrentARIA LiveAccess deniedAccess denied. Sorry, you do not have permission to complete this task.Accessibility OptionsAdd CSSAdd NewAdd Post Feed slidesAdd SlideAdd YouTube, Vimeo and Tiktok slidesAdd a new slideAdd a new slideshowAdd a slideAdd a start/end date to individual slides.Add and edit slideshows easier by showing MetaSlider on your admin bar.Add custom CSSAdd external video slidesAdd layers to your slides with over 50 available transition effects.Add local video slidesAdd option to hide slides and captions per screen size.Add slide layersAdd slideshowAdd to slideshowAdding custom CSS is a MetaSlider Pro feature. Click to learn more.Additional CSS ClassAdvanced OptionsAfter you have selected an image, press here to create your slide.Agree and continueAll SlideshowsAll Slideshows loadedAll images required to import are accounted for.All media itemsAll photos published on Unsplash can be used for free.All settings savedAll themesAllow navigation to follow the slide's height smoothly.Allow touch swipe navigation of the slider on touch-enabled devices.Allow users to browse your slideshows using thumbnail navigation.Alt TextAnalytics notice closedAnalytics notice openedAre you sure?ArrowsAttachment DetailsAuto playAutomatically updates directly from the WP Media LibraryBad requestBase Image HeightBase Image WidthBitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.Blank SlideshowBottom CenterBottom LeftBottom RightBox RainBox Rain GrowBox Rain Grow ReverseBox Rain ReverseBox RandomBrowse slideshowsBrowser upgrade requiredBuilt-in text editor full of features.CSS ManagerCSS Manager notice closedCSS Manager notice openedCSS classesCan you translate? Want to improve MetaSlider for speakers of your language?CaptionCaption speedCarousel SlideshowCarousel Slideshow with CaptionsCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshow in the available space on your website.ChangeChange the default titleChange the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.Change the default widthChange the look and feel of your slideshow with one of our custom-built MetaSlider themes!Change the maximum custom fields for Post FeedCheck out our documentation page for examples, and more information about what you can do with MetaSlider.Choose an image from the left, or search for any topic here to bring up more images.Choose how images are cropped if their size doesn't exactly match the size of your slideshow. This works if "Smart Crop" is selected in the "Image Crop" settings.Choose slideshowChoose the slideshows you wish to export.Choose the speed of the animation in milliseconds. You can select the animation in the "Effect" field.Choose your own images to start a new slideshow.Clarity is focused on accessibility. It has easy-to-read fonts, and a straightforward, distraction-free interface.Clear cacheClick the "Add Slide" button to create your slideshowClick the "Export" button.Click to copy shortcode.Closing add slide UI...Closing utility modal...CollapseComparison ChartComplete!ConfirmContinueCopy allCreate SlideshowCreate a SlideshowCreate a demo slideshow.Create a new slideshow nowCreate a slideshow with sample imagesCreate a slideshow with your imagesCreate and manage as many slideshows as you need.Create one now!Create slides by adding text, videos and more to your imagesCreate slideshows with external videos.Create slideshows with images stored outside of WordPressCreate slideshows with videos from your WordPress media library.Create slideshows with videos in your media libraryCreate slideshows with videos stored outside of WordPressCreate slideshows with your Vimeo videosCreate slideshows with your YouTube videosCreate slideshows with your postsCreate unlimited slideshowsCreate your slideCreatedCropCrop PositionCrunching...CurrentCustom themeCustomize your slideshows to fit with your website.Databold is a minimalist theme recommended for Image, External Image and Post feed slides.Date: %sDefault Slideshow TitleDelay adding the flexslider class to the slideshow.Delay between squares in ms.Delete PermanentlyDescriptionDeselectDeveloper OptionsDisable Legacy LibrariesDisable Legacy WidgetDisabledDisabled (Smart Pad)DismissDisplay multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the "Slide" Effect.Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect.DocumentationDocumentation 📚Doing something...DotsDrag and drop interface not available.Draxler is a minimalist theme.Drop images hereDuplicateDuplicate slideDuplicate this slideshowDuplicated successfully. Reloading...Duplicating...Easily add custom CSS to your slideshows to create the perfect design for your sites.Easily build slides based on your WordPress posts.Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.Easily include videos hosted by YouTube, Vimeo or TikTok.EasingEasing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the "Slide" Effect.EditEdit SlideshowEdit slideshowEdit slideshows easily by showing MetaSlider link under each slideshow.Enable Frontend Edit LinksEnable MetaSlider on Admin BarEnable Mobile SettingsEnable this to inherit the image alt textEnable this to inherit the image titleEnter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.Enter text that will appear with your image slide.Error: No themes were found.Exit previewExportExport %s slideshowsExport successfulExporting %s slideshows...External URLExternal URL slides give you all the power of MetaSlider, using images stored anywhere you want.External VideoExternal Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more.External slideExtra premium themesFadeFade inFailed to open the settings page...Failed to open utility modal...Fetching slideshows...FilmstripFilmstrip (Pro)Filter by typeFilter slideshows‎Find out more &rarr;Find out more about MetaSlider ProFinishedFirstFoldFor users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.Found %s slideshowsFreeFree Basic Support 🚀Full widthGeneralGet MetaSlider ProGet MetaSlider Pro &rarr;Get MetaSlider Pro!Get startedGlobal SettingsGlobal settings savedGo there &rarr;Have your specific queries addressed directly by our experts.HeightHelp CenterHelp Improve MetaSliderHere you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.HiddenHide any slide, without having to delete them.Hide arrows onHide caption on:Hide navigation onHide slide on:Hide stepHomeHorizontalHover pauseHow To UseHow long to display each slide, in milliseconds.IE11Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos.If Autoplay is enabled, this causes screen readers to announce that the slides are changing.If no theme is selected we will use the default theme provided by the slider pluginIf you are a pro member, enter your license key here to receive updates. %sIf you choose "Loop continuously", the slides will loop infinitely. If you choose "Stop on first slide", the slideshow will stop on the first slide after showing all the items. If you choose "Stop on last slide", the slides will stop on the last slide.If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the "Load" button.If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).ImageImage Alt TextImage CropImage Link Alt TextImage Link URLImage SlideImage SlideshowImage Title TextImage not found<br>%sImage search completeImage, External URL and Post Feed slides are displayed in 2 columns, while the rest of slide types in 1 column.Images will need to keep the same file names on the new site.ImportImport %s slideshowsImport SlidesImport data could not be processedImport slidesImport slug not foundImport successfulImporting %s slideshows...Importing...Includes recipes to solve common scenarios.Increase your revenue and conversion with video slides and many more MetaSlider Pro featuresIndexing %s slideshows into local storage...Indexing slideshows... %s remainingInfinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.Insert slideshowInstalledIntelligent image croppingIt looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.Item was copied to your clipboardKeep the plugin name "MetaSlider" when possibleLike MetaSlider? Please help us by giving a positive review at WordPress.orgKeep the plugin name "MetaSlider" when possibleReview MetaSlider &rarr;Keep the plugin name "MetaSlider" when possibleSelect slideshow to insert into postKeyboard ControlsLastLayer SlideLeave a reviewLet's Start &rarr;License KeyLinkLoadLoad allLoad moreLoad remaining %s slideshowsLoad slideshowsLoading %s slideshows...Loading slideshowLoading slideshows list...Loading slideshows...Loading...Loading... Please wait!Loads only on the front-end where needed.Local VideoLocal Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.LogoLoopLoop Carousel ContinuouslyLoop continuouslyMain OptionsManual entryMaximum Number of Custom Field in Post Feed SlidersMedia captionMedia descriptionMetaSliderMetaSlider ProMetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%sMetaSlider Pro is installed!MetaSlider Pro provides stylish and exclusive themes for your slideshows.MetaSlider dashboard loadedMetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site.Microsoft Internet Explorer 11MobileMobile OptionsMobile SettingsMove slideshow to trashNavigationNewNew SlideshowNew WindowNew slides orderNew windowNextNext SlideNext stepNext textNo conflict modeNo default was foundNo error message provided.No error message reported.No image name providedNo photots found.No slidesNo slides foundNo slideshows foundNo slideshows found.No thanksNo themes found.No valid files foundNormal widthNote: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.Nothing to import.Now that you have some slides set, you can preview your slideshow by pressing here.Number of slicesNumber of squaresOKOpacityOpacity of title and navigation, between 0 and 1.Open Media LibraryOpen link in a new windowOpening Unsplash tab...Opening add slide UI...Opening settings page...Opening utility modal...Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %sPage not found: %sPaid Premium Support 🌟Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.Pause the slideshow when hovering over slider, then resume when no longer hovering.Photo by %sPhoto by %s on UnsplashPhoto on UnsplashPixel margin between slides in carousel.Play / Pause ButtonPlease confirm that you would like to delete this slideshow.PortfolioPost FeedPost Feed slidePost Feed slides will automatically display your posts with images, text, custom fields, and much more.Premium SupportPremium supportPreparing 1 slide...Preparing slideshow for duplication...Press %s to save or %s to cancel.Press to clear the slideshow cache from your web browserPress to expandPress to undoPreviewPreview SlideshowPreview slideshowPreviousPrevious SlidePrevious textPrint CSSPrint JSProPro SettingsPro settings savedProcessing...ProfilePublishedQualityQuick StartRainRandomRandomise the order of the slides.Read moreRead our guide on exporting images.RefreshRefresh previewRegular updatesRemoveRestoreReturn to Published SlidesReverseReverse the animation direction.SEOSaveSave & open the previewSave slideshowSaving %s slides. This may take a few moments.Saving theme...Saving...ScheduleSchedule your slidesSearchSearch Unsplash APISearch slideshows (Press ctrl + / to focus)‎Search unsplashSearch unsplash.com...Searching slideshows...Searching...SelectSelect Slider:Select a custom themeSelect a slideshowSelect a theme on the left to use on this slideshow. Click the theme for more details.Select how many custom fields will display in the dropdown menu when you are inserting tags.Select imagesSelect replacement imageSelect the direction that slides will move. Vertical will not work if "Carousel mode" is enabled or "Effect" is set to "Fade".Select the position for new added slides.Select the slideshows you wish to export below, then press here to export them.Select the slideshows you wish to import below, then press here to import them.Set breakpoints for different screen sizesSet the fade in speed of the caption.Set the text for the "next" direction item.Set the text for the "previous" direction item.SettingsSettings & HelpSettings savedShort for millisecondsmsShortcodeShortcode copiedShortcode unable to be copied automaticallyShow navigation options so that users can browse the slides.Show the Previous / Next arrows.Sign up &rarr;Site InformationSlice DownSlice UpSlice Up Down LeftSlice Up LeftSlideSlide Up DownSlide delaySlide deletedSlide directionSlide in LeftSlide in RightSlide permanently deleted.Slide restoredSlide restored.Slide updated successfullySlideshow DefaultsSlideshow ThemeSlideshow heightSlideshow savedSlideshow settingsSlideshow settings savedSlideshow widthSlideshowsSlideshows permanently deleted.Smart CropSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size.Smooth HeightSome images are missingSomething went wrongSort by modified dateSort by titleSpice up your site with animated layers and video slides with MetaSlider ProSquare delayStandardStill working... %s slides remaining...Stop on first slideStop on last slideStraightStretch the slideshow output to fill it's parent container.SuccessSupportSwirlTabindex for navigationTagsThanks for using MetaSliderThanks for using MetaSlider, the WordPress slideshow pluginThanks for using MetaSlider. To get started, click the "Add Slide" button to create your first slide.The ENTER key on a keyboardEnterThe ESCAPE key on a keyboardEscapeThe Nivo Bar theme included here for legacy purposes. Note: only works with Nivo SliderThe Nivo Dark theme included here for legacy purposes. Note: only works with Nivo SliderThe Nivo Light theme included here for legacy purposes. Note: only works with Nivo SliderThe attempt to restore the slide failed.The attempt to update the option failed.The data in this file does not appear to be valid.The field (%s) cannot be emptyThe following images were not found:The image was successfully updated.The option was successfully updatedThe request format was not valid.The requested data does not exist.The requested image does not exist. Please try again.The security check failed. Please refresh the page and try again.The slide was permanently deletedThe slide was successfully restoredThe slide was successfully trashedThe title cannot be empty.ThemeTheme DetailsTheme InstructionsTheme savedThere was an error updating the image. Please try againThere was an error while updating the database. Please try again.This adds an animation when the slideshow loads. It only uses the "Fade" transition effect.This allows user to pause or resume Auto Play on the slideshow.This animation is used when changing slides.This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.This feature is not fully supported in this browser.This helps make the slideshow navigation more accessible.This is a keyboard shortcut. (alt + p)This is used on the navigation button for the active slide. It helps screen readers understand which slide is active.This isn't a valid image format. Please try again.This item does not exist. Please refresh the page and try again.This setting allows you to disable the legacy MetaSlider widget.This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive SlidesThis slideshow is no longer available.This slideshow will be moved to the "Trash" area.This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended.This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.This theme has a special additional functionality that uses image titles as the slide navigation. This theme has a unique design that gives it a sophisticated look.This theme is not officially supported by the slider you chose. Your results might vary.This theme places the controls vertically for a unique look.This theme was created through the theme editor.This was not a slideshow, so we cannot delete it.This was not a slideshow, so we cannot update the setting.ThumbnailThumbnail (Pro)Thumbnail navigationTitleTitle:To edit this slide, click "Restore" and then "Return to Published Slides"Toggle full widthToggle overlay typeToggle your slide's visibilityTop CenterTop LeftTop RightTouch SwipeTour cancelled successfullyTour cancelled unsuccessfullyTransition EffectTransition SpeedTransition between slides automatically.TrashTrash slideTrashed SlidesTrashed slidesURLUncheck this if you would like to include your own CSS.Uncheck this if you would like to include your own Javascript.Undefined error occurredUndoUnique Smart Crop functionality ensures your slides are perfectly resized.Unsplash tab closedUpdate Internet ExplorerUpdate license keyUpdate or activate your MetaSlider Pro now to add a start/end date option to your slidesUpdate previewUpdate slide imageUpdate the MetaSlider Pro settings.Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.Update the default settings used when creating new slideshows.Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.Update the settings used for all the slideshows on your site.Updating slide...Updating...Upgrade hereUpgrade nowUpgrade now to build your own custom themes!Upgrade now to unlock this theme!Upgrade to ProUpload fileUse MetaSlider to insert slideshows and sliders in your pageUse arrow keys to get to the next slide.Use the image alt textUse the image titleVersion: v%sVerticalView our detailed privacy policyView trashed slidesViewing %s out of %s slideshowsViewing %s out of %s slideshows (%s loaded)Viewing 1 slideshowVimeoVimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.Visit documentationVisit metaslider.comVisit wordpress.orgVisitors will see this text if they hover over your image slide. Adding Title text is useful but not required.Warning:Warning: The image data does not exist. Please re-upload the image.We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?We are still searching for your images. Please wait.We could not find any images to import.We keep MetaSlider compatible with the latest versions of WordPress.We removed your selected theme as it could not be found. Was the folder deleted?We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.When enabled this setting will hide the arrows on screen widths equal to or greater than %spx.When enabled this setting will hide the arrows on screen widths less than %spx.When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx.When enabled this setting will hide the caption on screen widths equal to or greater than %spxWhen enabled this setting will hide the caption on screen widths of %1$spx to %2$spxWhen enabled this setting will hide the navigation on screen widths equal to or greater than %spx.When enabled this setting will hide the navigation on screen widths less than %spx.When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx.When enabled this setting will hide the slide on screen widths equal to or greater than %spxWhen enabled this setting will hide the slide on screen widths of %1$spx to %2$spxWhen images are missing you will have to manually update or delete the slide after the import completes.When visitors click on your image slide, they will be taken to this URL.While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.Wide widthWidthWith External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.With External Video slides, you can add videos directly from non-WordPress sources.With Layer slides, you can create beautiful, stylish layers of different elements.With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day.With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.With YouTube slides, you can build beautiful slideshows with your YouTube videos.You are viewing slides that have been trashed, which will be automatically deleted in %s days.You can create your own themes with our theme editorYou can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.You can safely enable this setting. None of your slideshows use the legacy libraries.You currently do not have any slides to preview. If you want, we can import some image slides for you.You currently have %s slideshow that uses legacy libraries.You currently have %s slideshows that use legacy libraries.You don't have any slideshows yet. Click %shere%s to create a new slideshow.You have %s slideshows that can be exported. Information about each slideshow will be presented below.You have no slideshows to exportYou have no slideshows to importYou may use HTML hereYou start with an image and then can add text, video, colors, animations, more images, and even shortcodes.YouTubeYouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.Your images need to be exported manually. Please upload them to the new website before importing these slideshows.Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %sgalleryhttps://www.metaslider.comlast updated: %sminimalistnumber of slides, ex "7 slides"%s slidesprivacy policypxsliderslideshowthis articleverticalvideosview licenseview originalweeksProject-Id-Version: Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release)
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2024-06-16 00:41+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 3.4.4
1 diapositive ajoutée avec succès1 diaporamaLargeur 100%100% de largeur%s par %s pixels2 colonnesUn fichier .json sera automatiquement téléchargé avec toutes les données de votre diaporama.Un thème minimaliste à 2 colonnes pour diviser vos images et légendes.Un design audacieux et clair qui fonctionne bien sur des images plus sombres.Un thème propre et subtil qui comporte des flèches encadrées et un design audacieux.Quelques notes sur l’exportation d’images de diaporama :Un design amusant et circulaire pour égayer votre site. Ce thème fonctionne bien avec des images sombresUn design futuriste et linéaire qui se marie bien avec un fond sombre.Un thème minimaliste qui s’efface pour vous permettre de mettre en valeur vos belles photos. A utiliser de préférence avec les diapositives d’images.Un design minimaliste, sans superflu, qui a été conçu pour s’intégrer à la plupart des thèmes.Un thème simple qui s’intègre parfaitement à tout site existant.Un design carré simple et élégant qui convient aux images plus sombres.Un thème pour une vitrine des images et des vidéos verticales.ARIA actuelAria liveAccès refuséAccès refusé. Désolé, vous n’avez pas le droit de terminer cette tâche.Options d’accessibilitéAjouter CSSAjouter un nouveauAjouter diapositive de flux de publicationsAjouter une diapositiveAjouter des diapositives YouTube, Vimeo et TiktokAjouter une nouvelle diapositiveAjouter un diaporamaAjouter une diapositiveAjoutez une date de début/fin à des diapositives individuelles.Ajoutez et modifiez des diaporamas plus facilement en affichant MetaSlider dans votre barre d’administration.Ajouter CSS personnaliséAjouter des diapositives de vidéos externesAjoutez des couches à vos diapositives grâce à plus de 50 effets de transition disponibles.Ajouter des diapositives de vidéos localesAjouter une option pour masquer les diapositives et les légendes en fonction de la taille de l’écran.Ajouter des couches de diapositivesAjouter un diaporamaAjouter au diaporamaL’ajout de CSS personnalisés est une fonctionnalité de MetaSlider Pro. Cliquer pour en savoir plus.Classe CSS supplémentaireRéglages avancésUne fois que vous avez sélectionné une image, cliquez ici pour créer votre diapositive.Accepter et continuerTous les diaporamasTous les diaporamas chargésToutes les images nécessaires à l’importation sont prises en charge.Tous les éléments médiaVous pouvez utiliser gratuitement toutes les photos publiées sur Unsplash.Tous les réglages enregistrésTous les thèmesAutoriser la navigation à suivre la hauteur de la diapositive en douceur.Permettre la navigation par balayage tactile du diaporama sur les appareils dotés d’un écran tactile.Permettez aux internautes de naviguer dans vos diaporamas grâce aux miniatures.Texte alternatifNotification d’analyse ferméeNotification d’analyse ouverteConfirmez-vous ?FlèchesDétails du fichier jointLecture autoMettez automatiquement à jour directement à partir de la médiathèque de WPRequête incorrecteHauteur de l’image de baseLargeur de l’image de baseBitono est un thème minimaliste avec un schéma bicolore. Recommandé pour les diapositives d’images, d’images externes et de flux de publication.Diaporama videEn bas centréEn bas à gaucheEn bas à droiteMosaïqueBoîte à pluieMosaïque inverséeMosaïque inverséeBoite aléatoireParcourir les diaporamasMise à niveau du navigateur nécessaireÉditeur de texte intégré, riche en fonctionnalités.Gestionnaire CSSNotification du gestionnaire CSS ferméeNotification du gestionnaire CSS ouverteClasses CSSPouvez-vous traduire ? Vous souhaitez améliorer MetaSlider pour les internautes parlant votre langue ?LégendeVitesse de la légendeDiaporama carrouselDiaporama carrousel avec légendesMarge du carrouselMode carrouselAttention : ce réglage est uniquement réservé aux développeurs. Si vous n’êtes pas sur(e), laissez-le coché.Centré au centreCentré à gaucheCentré à droiteAlignement centralAligner le diaporama au centre de l’espace disponible sur votre site.ModifierModifier le titre par défautModifiez le titre par défaut qui sera utilisé lors de la création d’un nouveau diaporama. Utilisez %s et il sera remplacé par l’ID du diaporama actuel.Modifier la largeur par défautChangez l’aspect et la présentation de votre diaporama avec l’un de nos thèmes MetaSlider personnalisés !Modifier le nombre maximum de champs personnalisés pour le flux de publicationsConsultez notre page de documentation pour des exemples et de plus amples informations sur ce que vous pouvez faire avec MetaSlider.Choisissez une image à gauche, ou recherchez un sujet quelconque ici pour faire apparaître d’autres images.Choisir la façon dont les images sont recadrées si leur taille ne correspond pas exactement à celle de votre diaporama. Cette fonction fonctionne si l’option « Recadrage intelligent » est sélectionnée dans les réglages « Recadrage de l’image ».Sélectionner un diaporamaChoisissez les diaporamas que vous souhaitez exporter.Choisir la vitesse de l’animation en millisecondes. Vous pouvez sélectionner l’animation dans le champ « Effet ».Choisissez vos propres images pour lancer un nouveau diaporama.Clarity est axé sur l’accessibilité. Ses polices sont faciles à lire et son interface est simple et sans distraction.Vider le cacheCliquer sur le bouton « Ajouter une diapositive » pour créer votre diaporama.Cliquez sur le bouton « Exporter ».Cliquez pour copier le code courtFermeture de l’IU de l’ajout de diapositives...Fermeture de l’utilitaire modal...ReplierGraphique de comparaisonComplet !ConfirmerContinuerTout copierCréer un diaporamaCréer un diaporamaCréer un diaporama de démonstration.Créer un nouveau diaporama maintenantCréer un diaporama avec des exemples d’imagesCréez un diaporama avec vos imagesCréez et gérez autant de diaporamas que vous le souhaitez.Créez-en un maintenant !Créez des diapositives en ajoutant du texte, des vidéos et d’autres éléments à vos imagesCréez des diaporamas avec des vidéos externes.Vous pouvez créer des diaporamas avec des images stockées en dehors de WordPressCréez des diaporamas avec les vidéos de votre médiathèque de WordPress.Créez des diaporamas avec les vidéos de votre médiathèqueVous pouvez créer des diaporamas avec des vidéos stockées en dehors de WordPressCréez des diaporamas avec vos vidéos VimeoCréez des diaporamas avec vos vidéos YouTubeCréez des diaporamas avec vos publicationsCrée des diaporamas illimitésCréer votre diapositiveCrééRecadragePosition du recadrageCroquant...ActuelleThème personnaliséPersonnalisez vos diaporamas pour les adapter a votre site.Databold est un thème minimaliste recommandé pour les diapositives d’images, d’images externes et de flux de publication.Date : %sTitre par défaut du diaporamaRetard ajouté à la classe flexslider au diaporama.Délai entre les carrés en ms.Supprimer définitivementDescriptionDésélectionnerOptions pour les développeursDésactiver les bibliothèques anciennesDésactiver le widget ancienDésactivéDésactivé (Smart Pad)IgnorerAfficher plusieurs diapositives à la fois. La largeur du diaporama sera de 100 %. Le mode carrousel n’utilise que l’effet « Glisser ».Affichez plusieurs diapositives à la fois. La largeur du diaporama sera de 100 %. Le mode carrousel n’utilise que l’effet « Glisser ».DocumentationDocumentation 📚Faisant quelque chose...PointsL’interface glisser/déposer n’est pas disponible.Draxler est un thème minimaliste.Déposez les images iciDupliquerDupliquer diaporamaDupliquer ce diaporamaDupliqué avec succès. Rechargement...Duplication...Ajoutez facilement des feuilles de style CSS personnalisées à vos diaporamas pour créer le design parfait pour vos sites.Créez facilement des diapositives basées sur vos publications WordPress.Importez facilement les diaporamas générés par MetaSlider. Cela nécessite un fichier généré à partir de l’onglet « Exporter ».Inclure facilement des vidéos hébergées sur YouTube, Vimeo ou TikTok.EasingL’assouplissement ajoute une accélération et une décélération progressives aux transitions de diapositives, plutôt que des démarrages et des arrêts brusques. L’assouplissement n’utilise que l’effet « Diapositive ».ModifierModifier le diaporamaModifier le diaporamaModifiez facilement les diaporamas en affichant le lien MetaSlider sous chaque diaporama.Activer les liens de modification de l’interface publiqueActiver MetaSlider dans la barre d’administrationActiver les réglages mobilesActivez cette option pour hériter du texte alt de l’imageActivez cette option pour hériter du titre de l’imageSaisissez les classes CSS personnalisées à appliquer au conteneur du diaporama. Séparez plusieurs classes par un espace.Saisir le texte qui apparaîtra avec votre diapositive d’image.Erreur : Aucun thème n’a été trouvé.Quitter l’aperçuExporterExporter %s diaporamasExportation réussieExportation de %s diaporamas...URL externeLes diapositives à URL externe vous offrent toute la puissance de MetaSlider, en utilisant des images stockées où vous le souhaitez.Vidéo externeLes diapositives vidéo externes affichent vos vidéos MP4, WebM et MOV avec des légendes de texte, images de couverture, la lecture automatique, la mise en sourdine, le chargement paresseux, la possibilité de masquer les contrôles, et bien plus encore.Diapositive externeThèmes premium supplémentairesFonduFondu en avantImpossible d’ouvrir la page des réglages...Échec de l’ouverture de l’utilitaire modal...Récupération de diaporamas...Bande de filmBande de film (Pro)Trier par typeFiltrer les diaporamasEn savoir plus →En savoir plus sur MetaSlider ProTerminéPremierPlierPour les utilisateurs et utilisatrices de la version gratuite de MetaSlider, nous offrons un support gratuite complète sur les forums de wordpress.org.Pour votre commodité, vous pouvez copier les informations de base du site avant pour nous aider à accélérer le processus de débogage. Assurez-vous de vérifier qu’aucune information personnelle que vous souhaiteriez garder privée n’est incluse.%s diaporama(s) trouvé(s)GratuiteSupport de base gratuit 🚀Pleine largeurGénéralObtenir MetaSlider ProObtenez MetaSlider Pro &rarr;Obtenez MetaSlider Pro !Premiers pasRéglages globauxLes réglages globaux ont été enregistrésAllez-y &rarr;Faites traiter vos questions spécifiques directement par nos experts,HauteurCentre d’aideAidez à améliorer MetaSliderVous y trouverez de la documentation et deux niveaux de support au choix. En outre, vous pouvez nous fournir des informations supplémentaires spécifiques à votre site, votre serveur, etc.MasquéMasquez n’importe quelle diapositive, sans avoir à la supprimer.Masquer les flèches surMasquer la légende sur :Masquer la navigation surMasquer la diapositive sur :Masquer l’étapeAccueilHorizontalPause au survolMode d’emploiDurée d’affichage de chaque diapositive, en millisecondes.IE11Idéal pour les images, les diapositives des flux de publications, les vidéos verticales de YouTube et Vimeo.Si la lecture automatique est activée, les lecteurs d’écran annoncent que les diapositives sont en train de changer.Si vous ne sélectionnez pas de thème, nous utiliserons le thème par défaut fourni par l’extension de diaporamaSi vous êtes un membre pro, entrez votre clé de licence ici pour recevoir les mises à jour. %sSi vous choisissez « En continu », les diapositives tourneront en boucle à l’infini. Si vous choisissez « Arrêter à la première diapositive », le diaporama s’arrêtera à la première diapositive après avoir montré tous les éléments. Si vous choisissez « Arrêter à la dernière diapositive », le diaporama s’arrêtera à la dernière diapositive.Si vous avez un fichier d’exportation, vous pouvez le téléverser ici pour qu’il soit traité. Des informations sur chaque diaporama seront présentées ci-dessous. Vous pourrez confirmer avant d’importer.Si vous n’avez que quelques diaporamas, nous les préparerons automatiquement. Si vous avez plusieurs diaporamas, cliquez sur le bouton « Téléverser ».Si vous souhaitez utiliser les titres des images comme navigation, vous devrez utiliser FlexSlider. De plus, pour modifier le libellé de la navigation du diaporama, modifiez le titre de l’image dans la médiathèque ou manuellement sur le diaporama (onglet SEO).ImageTexte alternatif de l’imageRecadrage de l’imageTexte alternatif du lien de l’imageURL du lien de l’imageImage de la diapoDiaporama d’imagesTitre de l’imageImage non trouvée<br>%sRecherche d’images terminéeLes diapositives d’image, d’URL externe et de flux de publications sont affichées sur deux colonnes, tandis que les autres types de diapositives sont affichés sur une seule colonne.Les images devront conserver les mêmes noms de fichiers sur le nouveau site.ImporterImporter %s diaporamasImporter les diapositivesLes données d’importation n’ont pas pu être traitéesImporter les diapositivesLe slug d’importation n’a pas été trouvéImportation réussieImportation de %s diaporamas...Importation...Comprend des solutions pour résoudre les scénarios les plus courants.Augmentez vos revenus et vos conversions grâce aux diapositives vidéo et bien d’autres fonctionnalités de MetaSlider ProIndexation de %s diaporamas dans le stockage local...Indexation des diaporamas... %s restantsBoucle infinie de diapositives lorsque le mode « Carrousel » est activé. Cette option désactive les flèches et la navigation.Insérer un diaporamaInstalléRecadrage intelligent des imagesIl semble que vous utilisiez %s. Bien que MetaSlider prenne en charge %s sur l’interface publique où les internautes voient vos diaporamas, certains des outils que nous fournissons ici nécessitent un navigateur moderne.L’élément a été copié dans votre presse-papiersVous aimez MetaSlider ? Aidez-nous en donnant un avis positif sur WordPress.orgAvis sur MetaSlider &rarr;Sélectionner le diaporama à insérer dans la publicationContrôles au clavierDernierDiapositive de couchesLaissez un avisCommençons &rarr;Clé de licenceLienChargerCharger toutCharger plusCharger les %s restants des diaporamasCharger les diaporamasChargement de %s diaporamas...Chargement du diaporamaChargement de la liste des diaporamas...Chargement des diaporamas…Chargement…Chargement... Veuillez patienter !Chargements uniquement sur l’interface publique lorsque cela est nécessaire.Vidéo localeLes diapositives vidéo locales affichent vos vidéos MP4, WebM et MOV avec des images de couverture, la lecture automatique, la mise en sourdine, le chargement paresseux, la possibilité de masquer les contrôles, et bien plus encore.LogoBoucleBoucle du carrousel en continuBoucle en continuOptions principalesSaisie manuelleNombre maximum de champs personnalisés dans les diaporamas du flux de publicationsLégende des médiasDescription des médiasMetaSliderMetaSlider ProMetaSlider Pro est installé mais n’est pas à jour. Vous pouvez le mettre à jour %sici%s. En savoir plus sur cet avis %sici%sMetaSlider Pro est installé !MetaSlider Pro propose des thèmes élégants et exclusifs pour vos diaporamas.Tableau de bord MetaSlider chargéMetaSlider vous permet de créer un magnifique diaporama, un carrousel ou une galerie sur votre site WordPress.Microsoft Internet Explorer 11MobileOptions mobileRéglages mobileMettre le diaporama à la corbeilleNavigationNouveauNouveau diaporamaNouvelle fenêtreNouvel ordre des diapositivesNouvelle fenêtreSuivanteDiapositive suivanteProchaine étapeSuivantMode sans conflitAucun par défaut trouvéAucun message d’erreur fourni.Aucun message d’erreur reporté.Aucun nom d’image fourniAucune photo trouvée.Aucune diapositiveAucune diapositive trouvéeAucun diaporama trouvéAucun diaporama trouvé.Non merciAucun thème trouvé.Aucun fichier valide trouvéLargeur normaleNote : Vous pouvez toujours importer des diaporamas qui contiennent des images manquantes. Vous devrez simplement mettre à jour ou supprimer manuellement ces diapositives à partir des pages de modification des diaporamas individuels.Il y a rien à importer.Maintenant que vous avez défini quelques diapositives, vous pouvez prévisualiser votre diaporama en appuyant ici.Nombre de tranchesNombre de carrésOKOpacitéOpacité du titre et de la navigation, entre 0 et 1.Abrir la médiathèqueOuvrir le lien dans une nouvelle fenêtreOuverture de l’onglet Unsplash…Ouverture de l’IU de l’ajout de diapositives...Ouverture de la page des réglages...Ouverture de l’utilitaire modal...Acceptez de laisser MetaSlider collecter de manière responsable des informations sur la façon dont vous utilisez notre extension. Cette option est désactivée par défaut, mais peut avoir été activée par une notification. %sPage non trouvée : %sSupport Premium payant 🌟Les utilisateurs et utilisatrices ayant acheté l’extension premium peuvent ouvrir un ticket sur notre centre de support privé pour bénéficier d’un support personnalisé et des réponses plus rapides.Mettre le diaporama en pause au survol, puis reprendre lorsqu’il ne l’est plus.Photo par %sPhoto par %s sur UnsplashPhoto sur UnsplashMarge en pixels entre les diapositives dans le carrousel.Bouton Lecture/pauseVeuillez confirmer que vous souhaitez supprimer ce diaporama.PortfolioFlux de publicationsDiapositive de flux de publicationsLes diapositives de flux de publications affichent automatiquement vos publications avec des images, du texte, des champs personnalisés et bien plus encore.Support PremiumSupport premiumPréparation d’une diapositive...Préparation du diaporama pour la duplication...Appuyer sur %s pour enregistrer ou %s pour annuler.Appuyez sur cette touche pour vider le cache du diaporama à partir de votre navigateur webAppuyez pour étendreCliquez pour annulerPrévisualisationPrévisualiser le diaporamaPrévisualiser le diaporamaPrécédentDiapositive précédentePrécédentImprimer CSSImprimer JSProRéglages ProRéglages Pro enregistrésEn cours...ProfilPubliéQualitéDémarrage rapidePluieAléatoireRandomiser l’ordre des diapositives.En savoir plusLisez notre guide sur l’exportation d’images.RechargerRecharger l’aperçuMises à jour régulièresSupprimerRestaurerRetourner aux diapositives publiéesInverserInverser le sens de l’animation.SEOEnregistrerEnregistrer et afficher l’aperçuEnregistrer le diaporamaEnregistrement de %s diapositives. Cela peut prendre quelques instants.Enregistrement du thème…Enregistrement…PlanifierPlanifiez vos diapositivesRechercherRechercher l’API d’UnsplashRechercher de diaporamas (appuyez sur ctrl+/ pour focaliser)Chercher sur UnsplashRecherche sur unsplash.com...Recherche de diaporamas...Recherche en cours...SélectionnerSélectionnez un diaporama :Sélectionnez un thème personnaliséSélectionnez un diaporamaSélectionnez un thème sur la gauche pour l’utiliser dans ce diaporama. Cliquez sur le thème pour plus de détails.Sélectionner le nombre de champs personnalisés qui s’afficheront dans le menu déroulant lors de l’insertion des étiquettes.Sélectionner des imagesSélectionnez l’image de remplacementSélectionner la direction dans laquelle les diapositives se déplaceront. Le mode vertical ne fonctionne pas si le « Mode carrousel » est activé ou si l’« Effet » est réglé sur « Fondu ».Sélectionnez la position des nouvelles diapositives ajoutées.Sélectionnez ci-dessous les diaporamas que vous souhaitez exporter, puis cliquez ici pour les exporter.Sélectionnez ci-dessous les diaporamas que vous souhaitez importer, puis cliquez ici pour les importer.Définir des points de rupture pour différentes tailles d’écranDéfinir la vitesse du fondu de la légende.Définir le texte pour l’élément de direction « suivant »Définir le texte pour l’élément de direction « précédent ».RéglagesRéglages & aideRéglages enregistrésmsCode courtCode court copiéLe code court ne peut pas être copié automatiquementAfficher les options de navigation afin que les utilisateurs/utilisatrices puissent parcourir les diapositives.Afficher les flèches précedent/suivant.S’inscrire &rarr;Informations du siteBalayage basBalayage hautBalayage de haut en bas à gaucheBalayage de haut à gaucheDéfilementGlissement de haut en basDélai entre les diapositivesDiapositive suppriméeSens du défilementGlissement vers la gaucheGlissement vers la droiteDiapositive supprimée définitivement.Diapositive restauréeDiapositive restaurée.La diapositive a été mise à jour avec succèsValeurs par défaut des diaporamasThème du diaporamaHauteur du diaporamaDiaporama enregistréRéglages du diaporamaLes réglages du diaporama ont été enregistrésLargeur du diaporamaDiaporamasLes diaporamas sont définitivement supprimés.Recadrage intelligentCadrage intelligent veille à ce que les diapositives « responsives » soient recadrés à un ratio qui aboutit à une taille compatible avec celle du diaporama.Hauteur douceIl y a des images manquantesIl y a eu un problèmeTrier par date modifiéeTrier par titreAjoutez de la vie à votre site grâce à des couches animées et des diapositives vidéo avec MetaSlider Pro.Délai entre les carrésStandardToujours en cours... %s diapositives restantes...Arrêter sur la première diapositiveArrêter sur la dernière diapositiveTout droitÉtirer le diaporama pour qu’il remplisse la largeur de son conteneur parent.SuccèsSupportTourbillonTabindex pour la navigationÉtiquettesMerci d’utiliser MetaSliderMerci d’utiliser MetaSlider, l’extension de diaporama pour WordPressMerci d’utiliser MetaSlider. Pour commencer, cliquez sur le bouton « Ajouter une diapositive » pour créer votre première diapositive.EntréeÉchapLe thème Nivo Bar est inclus ici à des fins d’héritage. Note : ne fonctionne qu’avec Nivo SliderLe thème Nivo Dark est inclus ici à des fins d’héritage. Note : ne fonctionne qu’avec Nivo SliderLe thème Nivo Light est inclus ici à des fins d’héritage. Note : ne fonctionne qu’avec Nivo SliderLa tentative de restauration de la diapositive a échoué.La tentative de mise à jour de l’option a échoué.Les données de ce fichier ne semblent pas être valides.Le champ (%s) ne peut pas être videLes images suivantes n’ont pas été trouvées :L’;image a bien été mise jour.L’option a été mise à jour avec succèsLe format de la demande n’était pas valide.Les données demandées n’existent pas.L’image demandée n’existe pas. Veuillez réessayer.Le contrôle de sécurité a échoué. Veuillez recharger la page et réessayer.Cette diapositive a été définitivement suppriméeLa diapositive a bien été restauréeLa diapositive a bien été mise à la corbeilleLe titre ne peut pas être vide.ThèmeDétails du thèmeMode d’emploi du thèmeThème enregistréUne erreur est survenue pendant la mise à jour de l’image. Veuillez réessayerUne erreur est survenue pendant la mise à jour de la base de données. Veuillez réessayer.Ceci ajoute une animation au chargement du diaporama. Il n’utilise que l’effet de transition « Fondu ».Ceci permet à l’utilisateur/utilisatrice de mettre en pause ou de reprendre la lecture automatique du diaporama.Cette animation est utilisée lors du changement de diapositive.Cette fonction n’est pas entièrement prise en charge par Internet Explorer 11 et il se peut que les résultats de recherche soient lents.Cette fonctionnalité n’est pas entièrement prise en charge par ce navigateur.Cela permet de rendre la navigation du diaporama plus accessible. (alt + p)Ceci est utilisé sur le bouton de navigation de la diapositive active. Il aide les lecteurs d’écran à comprendre quelle diapositive est active.Ce format d’image n’est pas valide. Veuillez réessayer.Cet élément n’existe pas. Veuillez recharger la page et réessayer.Ce réglage vous permet de désactiver l’ancien widget MetaSlider.Ce réglage vous permet de désactiver les bibliothèques héritées de diaporamas : Nivo Slider, Coin Slider et Responsive SlidesCe diaporama n’est plus disponible.Ce diaporama sera déplacé dans la zone « Corbeille ».Ce texte est utilisé par les moteurs de recherche et les visiteurs/visiteuses utilisant des lecteurs d’écran. Il est fortement recommandé d’ajouter un texte alternatif pour les liens.Ce texte est utilisé par les moteurs de recherche et les internautes utilisant des lecteurs d’écran. L’ajout d’un texte alternatif est fortement recommandé.Ce thème dispose d’une fonctionnalité supplémentaire spéciale qui utilise les titres des images comme navigation des diapositives. Ce thème possède un design unique qui lui confère un aspect sophistiqué.Ce thème n’est pas officiellement pris en charge par le diaporama choisi. Vos résultats peuvent varier.Ce thème place les contrôles verticalement pour un look unique.Ce thème a été créé à l’aide de l’éditeur de thèmes.Ce n’était pas un diaporama, nous ne pouvons donc pas le supprimer.Il ne s’agissait pas d’un diaporama, nous ne pouvons donc pas mettre à jour le réglage.MiniatureMiniature (Pro)Navigation par vignetteTitreTitre :Pour modifier cette diapositive, cliquez sur « Restaurer » puis sur « Retourner aux diapositives publiées »Ouvrir/fermer pleine largeurOuvrir/fermer le type de superpositionOuvrir/fermer la visibilité de votre diapositiveEn haut centréEn haut à droiteEn haut à droiteToucher balayageTour annulé avec succèsTour annulé sans succèsEffet de transitionVitesse d’animationTransition automatique entre les diapositives.CorbeilleMettre à la corbeille la diapositiveDiapositives mises à la corbeilleDiapositives mises à la corbeilleURLDécocher ceci si vous souhaitez inclure votre propre CSS.Décocher ceci si vous souhaitez inclure votre propre Javascript.Une erreur indéfinie s’est produiteAnnulerLa fonctionnalité unique de recadrage intelligent garantit que vos diapositives sont parfaitement redimensionnées.Onglet Unsplash ferméMettez à jour Internet ExplorerMettez à jour la clé de licenceMettez à jour ou activez votre MetaSlider Pro maintenant pour ajouter une option de date de début/fin à vos diapositivesMettre à jour l’aperçuMettre à jour l’image de diapositiveMettre à jour les réglages de MetaSlider Pro.Mettez à jour la hauteur par défaut de l’image de base. Elle sera utilisée pour le recadrage de l’image de base et les dimensions du diaporama. Si la largeur est de 100 %, la hauteur sera mise à l’échelle en conséquence.Mettre à jour les réglages par défaut utilisés lors de la création de nouveaux diaporamas.Mettez à jour la largeur par défaut de l’image de base. Elle sera utilisée pour les dimensions du diaporama et le recadrage de l’image de base.Mettre à jour les réglages utilisés pour tous les diaporamas de votre site.Mise à jour de la diapositive...Mise à jour en cours...Mettez à niveau iciMettre à niveau maintenantMettez à niveau maintenant pour créer vos propres thèmes personnalisés !Mettre à niveau maintenant pour débloquer ce thème !Passer en version ProTéléverser le fichierUtiliser MetaSlider pour insérer des diaporamas et des diapositives dans votre pageUtiliser les touches fléchées pour passer à la diapositive suivante.Utiliser le texte de la balise alt de l’imageUtilisez le titre de l’imageVersion : v%sVerticalConsultez les détails de notre politique de confidentialitéVoir les diapositives de la corbeilleAffichage de %s sur %s diaporamasAffichage de %s sur %s diaporamas (%s chargés)Visualisation de 1 diaporamaVimeoLes diapositives Vimeo affichent vos vidéos avec lecture automatique, désactivation du son, chargement paresseux, possibilité de masquer les contrôles, et bien plus encore.Consultez la documentationVisitez metaslider.comVisitez wordpress.orgLes internautes verront ce texte s’ils survolent votre diapositive d’image. L’ajout d’un texte de titre est utile mais non obligatoire.Avertissement :Avertissement : les données d’image n’existent pas. Veuillez re-téléverser l’image.Nous sommes en cours de construction de la prochaine version de MetaSlider. Pouvez-vous nous aider en partageant des informations diagnostiques non sensibles ?Nous sommes toujours à la recherche de vos images. Veuillez patienter.Nous n’avons pu trouver aucune image à importer.Nous gardons MetaSlider compatible avec les dernières versions de WordPress.Nous avons retiré le thème que vous avez sélectionné car il n’a pu être trouvé. Son dossier a-t-il est supprimé ?Nous aimerions également vous envoyer des e-mails peu fréquents contenant d’importantes mises à jour de sécurité et de fonctionnalités. Consultez notre %s pour plus de détails.Si activé, ce réglage masque les flèches lorsque la largeur de l’écran est supérieure ou égale à %spx.Si activé, ce réglage masque les flèches lorsque la largeur de l’écran est inférieure à %spx.Si activé, ce réglage masque les flèches sur les écrans d’une largeur comprise entre %1$spx et %2$spx.Si activé, ce réglage masque la légende lorsque la largeur de l’écran est supérieure ou égale à %spx.Si activé, ce réglage masque la légende sur les écrans d’une largeur comprise entre %1$spx et %2$spx.Si activé, ce réglage masque la navigation lorsque la largeur de l’écran est égale ou supérieure à %spx.Si activé, ce réglage masque la navigation lorsque la largeur de l’écran est inférieure à %spx.Si activé, ce réglage masque la navigation sur les écrans d’une largeur comprise entre %1$spx et %2$spx.Si activé, ce réglage masque la diapositive lorsque la largeur de l’écran est supérieure ou égale à %spx.Si activé, ce réglage masque la diapositive sur les écrans d’une largeur comprise entre %1$spx et %2$spx.Si des images sont manquantes, vous devrez mettre à jour ou supprimer manuellement la diapositive une fois l’importation terminée.Lorsque les internautes cliquent sur votre diapositive d’image, ils sont redirigés vers cette URL.Alors que la largeur et la hauteur définies ci-dessus seront utilisées pour le recadrage (s’il est activé) et les dimensions de base du diaporama, vous pouvez également définir le diaporama pour qu’il s’étende à son conteneur.Grande largeurLargeurAvec les diapositives URL externes, vous pouvez charger des images directement à partir de sources autres que WordPress, telles que des CDN ou des hébergeurs d’images.Avec les diapositives vidéos externes, vous pouvez ajouter des vidéos directement à partir de sources autres que WordPress.Avec les diapositives de couches, vous pouvez créer de belles couches élégantes de différents éléments.Avec les diapositives des vidéos locales, vous pouvez créer de magnifiques diaporamas avec les vidéos de votre médiathèque WordPress.Avec MetaSlider Pro, vous pouvez programmer vos diapositives. Vous pouvez choisir de montrer vos diapositives à des dates, jours de la semaine ou heures de la journée spécifiques.Avec les diapositives de flux de publications, vous pouvez créer des diaporamas avec vos dernières publications, événements ou produits WooCommerce.Avec les diapositives Vimeo, vous pouvez créer de superbes diaporamas avec vos vidéos Vimeo.Avec les diapositives YouTube, vous pouvez créer de superbes diaporamas avec vos vidéos YouTube.Vous visualisez des diapositives qui ont été mises à la corbeille et qui seront automatiquement supprimées dans %s jours.Vous pouvez créer vos propres thèmes avec notre éditeur de thèmesVous pouvez facilement ajouter une image à partir de l’une des options proposées ici. De plus, nous fournissons gratuitement des images de la bibliothèque Unsplash.Vous pouvez activer ce réglage en toute sécurité. Aucun de vos diaporamas n’utilise les bibliothèques héritées.Vous n’avez actuellement aucune diapositive à visualiser. Si vous le souhaitez, nous pouvons importer des diapositives pour vous.Vous avez actuellement %s diaporamas qui utilisent des bibliothèques héritées.Vous avez actuellement %s diaporamas qui utilisent des bibliothèques héritées.Vous n’avez pas encore de diaporama. Cliquez sur %sici%s pour créer un nouveau diaporama.Vous avez %s diaporamas qui peuvent être exportés. Des informations sur chaque diaporama seront présentées ci-dessous.Vous n’avez aucun diaporama à exporterVous n’avez aucun diaporama à importerVous pouvez utiliser du HTML iciVous commencez par une image, puis vous pouvez ajouter du texte, de la vidéo, des couleurs, des animations, d’autres images et même des codes courts.YouTubeLes diapositives YouTube affichent vos vidéos avec lecture automatique, désactivation du son, chargement paresseux, possibilité de masquer les contrôles, et bien plus encore.Vos images doivent être exportées manuellement. Veuillez les téléverser sur le nouveau site avant d’importer ces diaporamas.Il est possible que vos réglages ne soient pas enregistrés correctement en raison d’une configuration de votre serveur. %s est actuellement défini sur %s, mais nous recommandons une valeur de 4000. Veuillez consulter %s pour plus d’informations. Le fichier php.ini est chargé à partir d’ici : %sgaleriehttps://www.metaslider.comdernière mise à jour : %sminimaliste%s diapositivespolitique de confidentialitépxdiaporamadiaporamacet articleverticalvidéosvoir la licencevoir l’originalsemaineslanguages/ml-slider.pot000064400000223072151213255500011133 0ustar00# Copyright (C) 2024 MetaSlider
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: MetaSlider 3.90.1-beta1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-07-09T15:32:56+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.10.0\n"
"X-Domain: ml-slider\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: ml-slider.php
msgid "MetaSlider"
msgstr ""

#. Plugin URI of the plugin
#. Author URI of the plugin
#: ml-slider.php
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
#: ml-slider.php
msgid "MetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site."
msgstr ""

#: admin/Notices.php:98
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:108
msgid "Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:119
msgid "Increase your revenue and conversion with video slides and many more MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:130
msgid "Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:320
msgid "weeks"
msgstr ""

#: admin/Notices.php:340
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:341
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:342
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:343
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:344
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:345
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:347
msgid "Read more"
msgstr ""

#: admin/Notices.php:361
#: admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:141
#: inc/slide/metaslide.image.class.php:125
#: inc/slide/metaslide.image.class.php:229
#: inc/slide/metaslide.image.class.php:350
#: ml-slider.php:819
#: ml-slider.php:901
#: ml-slider.php:1013
#: ml-slider.php:2458
#: ml-slider.php:2499
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:369
#: admin/routes/api.php:139
#: inc/slide/metaslide.class.php:149
#: inc/slide/metaslide.image.class.php:133
#: inc/slide/metaslide.image.class.php:152
#: inc/slide/metaslide.image.class.php:237
#: ml-slider.php:827
#: ml-slider.php:909
#: ml-slider.php:1021
#: ml-slider.php:2466
#: ml-slider.php:2507
msgid "Access denied. Sorry, you do not have permission to complete this task."
msgstr ""

#: admin/Notices.php:377
#: inc/slide/metaslide.class.php:158
#: inc/slide/metaslide.image.class.php:142
#: inc/slide/metaslide.image.class.php:246
#: inc/slide/metaslide.image.class.php:368
#: ml-slider.php:836
#: ml-slider.php:918
#: ml-slider.php:1030
#: ml-slider.php:2475
#: ml-slider.php:2516
msgid "Bad request"
msgstr ""

#: admin/Notices.php:385
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:398
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:464
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:489
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:130
msgid "URL"
msgstr ""

#: admin/Pages.php:131
#: admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr ""

#: admin/Pages.php:132
msgid "New Window"
msgstr ""

#: admin/Pages.php:133
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:134
msgid "Undo"
msgstr ""

#: admin/Pages.php:135
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:136
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:137
#: admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:138
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:139
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:141
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:151
msgid "Caution: This setting is for advanced developers only. If you're unsure, leave it checked."
msgstr ""

#: admin/routes/api.php:419
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:427
#: admin/routes/api.php:549
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:514
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:556
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:769
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:878
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:882
#: admin/routes/api.php:1069
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/routes/api.php:1059
#: admin/assets/dist/js/app.js:2
msgid "Maximum Number of Custom Field in Post Feed Sliders"
msgstr ""

#: admin/routes/api.php:1165
msgid "Import slug not found"
msgstr ""

#: admin/routes/api.php:1181
msgid "Import data could not be processed"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:85
#: inc/slider/metaslider.class.php:122
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:86
#: inc/slider/metaslider.class.php:123
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:277
msgid "We removed your selected theme as it could not be found. Was the folder deleted?"
msgstr ""

#: admin/Table.php:38
msgid "You don't have any slideshows yet. Click %shere%s to create a new slideshow."
msgstr ""

#: admin/Table.php:55
msgid "Published"
msgstr ""

#: admin/Table.php:59
#: admin/Table.php:87
#: admin/Table.php:337
msgid "Trash"
msgstr ""

#: admin/Table.php:69
#: admin/views/pages/parts/toolbar.php:44
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:70
#: admin/assets/dist/js/app.js:2
msgid "Title"
msgstr ""

#: admin/Table.php:71
msgid "Created"
msgstr ""

#: admin/Table.php:72
#: admin/views/pages/parts/slider-settings-legacy.php:946
#: admin/views/pages/parts/slider-settings.php:747
msgid "Shortcode"
msgstr ""

#: admin/Table.php:82
#: admin/Table.php:322
#: inc/slide/metaslide.class.php:406
msgid "Restore"
msgstr ""

#: admin/Table.php:83
#: admin/Table.php:323
#: inc/slide/metaslide.class.php:416
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:131
#: admin/views/pages/parts/shortcode.php:11
msgid "Click to copy shortcode."
msgstr ""

#: admin/Table.php:336
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8
#: admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:28
msgid "Slideshows permanently deleted."
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:20
#: admin/views/pages/parts/slider-settings.php:24
msgid "Main Options"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:30
#: admin/views/pages/parts/slider-settings-legacy.php:676
#: admin/views/pages/parts/slider-settings.php:34
msgid "Width"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:32
#: admin/views/pages/parts/slider-settings.php:36
#: admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:33
#: admin/views/pages/parts/slider-settings-legacy.php:46
#: admin/views/pages/parts/slider-settings-legacy.php:546
#: admin/views/pages/parts/slider-settings.php:37
#: admin/views/pages/parts/slider-settings.php:50
#: admin/views/pages/parts/slider-settings.php:475
msgid "px"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:43
#: admin/views/pages/parts/slider-settings-legacy.php:692
#: admin/views/pages/parts/slider-settings.php:47
msgid "Height"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:45
#: admin/views/pages/parts/slider-settings.php:49
msgid "Slideshow height"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:52
#: admin/views/pages/parts/slider-settings.php:56
msgid "Transition Effect"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:54
#: admin/views/pages/parts/slider-settings.php:58
msgid "This animation is used when changing slides."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:68
#: admin/views/pages/parts/slider-settings-legacy.php:564
#: admin/views/pages/parts/slider-settings.php:493
msgid "Random"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:72
msgid "Swirl"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:76
msgid "Rain"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:80
msgid "Straight"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:84
msgid "Slice Down"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:88
msgid "Slice Up"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:92
msgid "Slice Up Left"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:96
msgid "Slide Up Down"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:100
msgid "Slice Up Down Left"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:104
#: admin/views/pages/parts/slider-settings.php:72
msgid "Fade"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:108
msgid "Fold"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:112
msgid "Slide in Right"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:116
msgid "Slide in Left"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:120
msgid "Box Random"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:124
msgid "Box Rain"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:128
msgid "Box Rain Reverse"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:132
msgid "Box Rain Grow"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:136
msgid "Box Rain Grow Reverse"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:140
#: admin/views/pages/parts/slider-settings.php:76
msgid "Slide"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:147
#: admin/views/pages/parts/slider-settings.php:83
msgid "Arrows"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:152
#: admin/views/pages/parts/slider-settings.php:88
msgid "Show the Previous / Next arrows."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:166
#: admin/views/pages/parts/slider-settings.php:102
msgid "Navigation"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:169
#: admin/views/pages/parts/slider-settings.php:105
msgid "Show navigation options so that users can browse the slides."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:175
#: admin/views/pages/parts/slider-settings.php:111
msgid "Hidden"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:178
#: admin/views/pages/parts/slider-settings.php:114
msgid "Dots"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:181
msgid "Thumbnail"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:185
msgid "Filmstrip"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:211
#: admin/views/pages/parts/slider-settings.php:147
msgid "100% width"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:216
#: admin/views/pages/parts/slider-settings.php:152
msgid "Stretch the slideshow output to fill it's parent container."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:238
#: admin/views/pages/parts/slider-settings.php:168
msgid "Theme"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:273
#: admin/views/pages/parts/slider-settings.php:202
msgid "Mobile Options"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:278
#: admin/views/pages/parts/slider-settings.php:207
msgid "Hide arrows on"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:283
#: admin/views/pages/parts/slider-settings.php:212
msgid "When enabled this setting will hide the arrows on screen widths less than %spx."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:293
#: admin/views/pages/parts/slider-settings-legacy.php:304
#: admin/views/pages/parts/slider-settings.php:222
#: admin/views/pages/parts/slider-settings.php:233
msgid "When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:315
#: admin/views/pages/parts/slider-settings.php:244
msgid "When enabled this setting will hide the arrows on screen widths equal to or greater than %spx."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:327
#: admin/views/pages/parts/slider-settings.php:256
msgid "Hide navigation on"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:332
#: admin/views/pages/parts/slider-settings.php:261
msgid "When enabled this setting will hide the navigation on screen widths less than %spx."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:342
#: admin/views/pages/parts/slider-settings-legacy.php:353
#: admin/views/pages/parts/slider-settings.php:271
#: admin/views/pages/parts/slider-settings.php:282
msgid "When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:364
#: admin/views/pages/parts/slider-settings.php:293
msgid "When enabled this setting will hide the navigation on screen widths equal to or greater than %spx."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:389
#: admin/views/pages/parts/slider-settings.php:318
msgid "Advanced Options"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:394
#: admin/views/pages/parts/slider-settings.php:323
msgid "Center align"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:399
#: admin/views/pages/parts/slider-settings.php:328
msgid "Center align the slideshow in the available space on your website."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:407
#: admin/views/pages/parts/slider-settings.php:336
msgid "Auto play"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:412
#: admin/views/pages/parts/slider-settings.php:341
msgid "Transition between slides automatically."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:420
#: admin/views/pages/parts/slider-settings.php:349
msgid "Play / Pause Button"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:425
#: admin/views/pages/parts/slider-settings.php:354
msgid "This allows user to pause or resume Auto Play on the slideshow."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:433
#: admin/views/pages/parts/slider-settings.php:362
msgid "Loop"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:435
#: admin/views/pages/parts/slider-settings.php:364
msgid "If you choose \"Loop continuously\", the slides will loop infinitely. If you choose \"Stop on first slide\", the slideshow will stop on the first slide after showing all the items. If you choose \"Stop on last slide\", the slides will stop on the last slide."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:438
#: admin/views/pages/parts/slider-settings.php:367
msgid "Loop continuously"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:439
#: admin/views/pages/parts/slider-settings.php:368
msgid "Stop on last slide"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:440
#: admin/views/pages/parts/slider-settings.php:369
#: admin/assets/dist/js/admin.js:1
#: admin/assets/js/admin.js:489
msgid "Stop on first slide"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:446
#: admin/views/pages/parts/slider-settings.php:375
msgid "Image Crop"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:451
#: admin/views/pages/parts/slider-settings.php:380
msgid "Smart Crop"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:458
#: admin/views/pages/parts/slider-settings.php:387
msgid "Standard"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:465
#: admin/views/pages/parts/slider-settings.php:394
msgid "Disabled"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:472
#: admin/views/pages/parts/slider-settings.php:401
msgid "Disabled (Smart Pad)"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:479
#: admin/views/pages/parts/slider-settings.php:408
msgid "Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:487
#: admin/views/pages/parts/slider-settings.php:416
msgid "Smooth Height"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:492
#: admin/views/pages/parts/slider-settings.php:421
msgid "Allow navigation to follow the slide's height smoothly."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:500
#: admin/views/pages/parts/slider-settings.php:429
msgid "Carousel mode"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:505
msgid "Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the \"Slide\" Effect."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:523
#: admin/views/pages/parts/slider-settings.php:452
msgid "Loop Carousel Continuously"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:528
#: admin/views/pages/parts/slider-settings.php:457
msgid "Infinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:539
#: admin/views/pages/parts/slider-settings.php:468
msgid "Carousel margin"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:542
#: admin/views/pages/parts/slider-settings.php:471
msgid "Pixel margin between slides in carousel."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:551
#: admin/views/pages/parts/slider-settings.php:480
msgid "Fade in"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:556
#: admin/views/pages/parts/slider-settings.php:485
msgid "This adds an animation when the slideshow loads. It only uses the \"Fade\" transition effect."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:569
#: admin/views/pages/parts/slider-settings.php:498
msgid "Randomise the order of the slides."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:577
#: admin/views/pages/parts/slider-settings.php:506
msgid "Hover pause"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:582
#: admin/views/pages/parts/slider-settings.php:511
msgid "Pause the slideshow when hovering over slider, then resume when no longer hovering."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:590
#: admin/views/pages/parts/slider-settings.php:519
msgid "Reverse"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:595
#: admin/views/pages/parts/slider-settings.php:524
msgid "Reverse the animation direction."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:603
#: admin/views/pages/parts/slider-settings.php:532
msgid "Touch Swipe"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:608
#: admin/views/pages/parts/slider-settings.php:537
msgid "Allow touch swipe navigation of the slider on touch-enabled devices."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:621
#: admin/views/pages/parts/slider-settings.php:550
msgid "Slide delay"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:623
#: admin/views/pages/parts/slider-settings.php:552
msgid "How long to display each slide, in milliseconds."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:627
#: admin/views/pages/parts/slider-settings-legacy.php:647
#: admin/views/pages/parts/slider-settings-legacy.php:776
#: admin/views/pages/parts/slider-settings-legacy.php:808
#: admin/views/pages/parts/slider-settings.php:556
#: admin/views/pages/parts/slider-settings.php:576
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:641
#: admin/views/pages/parts/slider-settings.php:570
msgid "Transition Speed"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:643
#: admin/views/pages/parts/slider-settings.php:572
msgid "Choose the speed of the animation in milliseconds. You can select the animation in the \"Effect\" field."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:661
#: admin/views/pages/parts/slider-settings-legacy.php:663
msgid "Number of slices"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:673
#: admin/views/pages/parts/slider-settings-legacy.php:678
#: admin/views/pages/parts/slider-settings-legacy.php:689
#: admin/views/pages/parts/slider-settings-legacy.php:694
msgid "Number of squares"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:700
#: admin/views/pages/parts/slider-settings.php:585
msgid "Slide direction"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:702
#: admin/views/pages/parts/slider-settings.php:587
msgid "Select the direction that slides will move. Vertical will not work if \"Carousel mode\" is enabled or \"Effect\" is set to \"Fade\"."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:709
#: admin/views/pages/parts/slider-settings.php:594
msgid "Horizontal"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:716
#: admin/views/pages/parts/slider-settings.php:601
msgid "Vertical"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:727
#: admin/views/pages/parts/slider-settings.php:612
msgid "Easing"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:729
#: admin/views/pages/parts/slider-settings.php:614
msgid "Easing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the \"Slide\" Effect."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:739
msgid "Previous text"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:741
msgid "Set the text for the \"previous\" direction item."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:752
msgid "Next text"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:754
msgid "Set the text for the \"next\" direction item."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:770
msgid "Square delay"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:772
msgid "Delay between squares in ms."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:786
msgid "Opacity"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:788
msgid "Opacity of title and navigation, between 0 and 1."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:802
msgid "Caption speed"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:804
msgid "Set the fade in speed of the caption."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:817
#: admin/views/pages/parts/slider-settings.php:624
msgid "Accessibility Options"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:823
#: admin/views/pages/parts/slider-settings.php:630
msgid "Keyboard Controls"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:828
#: admin/views/pages/parts/slider-settings.php:635
msgid "Use arrow keys to get to the next slide."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:836
#: admin/views/pages/parts/slider-settings.php:643
msgid "Tabindex for navigation"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:841
#: admin/views/pages/parts/slider-settings.php:648
msgid "This helps make the slideshow navigation more accessible."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:849
#: admin/views/pages/parts/slider-settings.php:656
msgid "ARIA Live"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:854
#: admin/views/pages/parts/slider-settings.php:661
msgid "If Autoplay is enabled, this causes screen readers to announce that the slides are changing."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:862
#: admin/views/pages/parts/slider-settings.php:669
msgid "ARIA Current"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:867
#: admin/views/pages/parts/slider-settings.php:674
msgid "This is used on the navigation button for the active slide. It helps screen readers understand which slide is active."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:875
#: admin/views/pages/parts/slider-settings.php:682
msgid "Developer Options"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:881
#: admin/views/pages/parts/slider-settings.php:688
msgid "CSS classes"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:883
#: admin/views/pages/parts/slider-settings.php:690
msgid "Enter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:894
#: admin/views/pages/parts/slider-settings.php:701
msgid "Print CSS"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:899
#: admin/views/pages/parts/slider-settings.php:706
msgid "Uncheck this if you would like to include your own CSS."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:907
#: admin/views/pages/parts/slider-settings.php:714
msgid "Print JS"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:912
#: admin/views/pages/parts/slider-settings.php:719
msgid "Uncheck this if you would like to include your own Javascript."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:920
#: admin/views/pages/parts/slider-settings.php:727
msgid "No conflict mode"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:925
#: admin/views/pages/parts/slider-settings.php:732
msgid "Delay adding the flexslider class to the slideshow."
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:969
#: admin/views/pages/parts/slider-settings.php:769
msgid "Trashed slides"
msgstr ""

#: admin/views/pages/parts/slider-settings-legacy.php:991
#: admin/views/pages/parts/slider-settings.php:779
msgid "View trashed slides"
msgstr ""

#: admin/views/pages/parts/slider-settings.php:117
msgid "Thumbnail (Pro)"
msgstr ""

#: admin/views/pages/parts/slider-settings.php:121
msgid "Filmstrip (Pro)"
msgstr ""

#: admin/views/pages/parts/slider-settings.php:434
msgid "Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect."
msgstr ""

#: admin/views/pages/parts/toolbar.php:25
msgid "Add a new slide"
msgstr ""

#: admin/views/pages/parts/toolbar.php:29
msgid "Add Slide"
msgstr ""

#: admin/views/pages/parts/toolbar.php:35
msgid "Save & open the preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:35
msgctxt "This is a keyboard shortcut."
msgid " (alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:60
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:64
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:69
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:81
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:86
msgid "Adding custom CSS is a MetaSlider Pro feature. Click to learn more."
msgstr ""

#: admin/views/pages/parts/toolbar.php:90
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:100
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:114
#: admin/assets/dist/js/app.js:2
msgid "Save"
msgstr ""

#: admin/views/pages/parts/toolbar.php:125
#: ml-slider.php:1819
msgid "Return to Published Slides"
msgstr ""

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr ""

#: admin/views/pages/settings.php:58
#: admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74
#: admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89
#: admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:5
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:9
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:20
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:26
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:27
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:37
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:52
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:55
msgid "Create a demo slideshow."
msgstr ""

#: admin/views/pages/start.php:62
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:63
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:77
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:13
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:20
msgid "Free"
msgstr ""

#: admin/views/pages/upgrade.php:21
msgid "Pro"
msgstr ""

#: admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:144
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:26
#: admin/views/pages/upgrade.php:145
#: admin/views/slides/tabs/schedule.php:10
#: admin/assets/dist/js/app.js:2
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:31
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:38
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:39
msgid "We keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:46
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:47
msgid "Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:54
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:55
msgid "Allow users to browse your slideshows using thumbnail navigation."
msgstr ""

#: admin/views/pages/upgrade.php:62
msgid "Add YouTube, Vimeo and Tiktok slides"
msgstr ""

#: admin/views/pages/upgrade.php:63
msgid "Easily include videos hosted by YouTube, Vimeo or TikTok."
msgstr ""

#: admin/views/pages/upgrade.php:70
msgid "Add local video slides"
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Create slideshows with videos from your WordPress media library."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Add external video slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Create slideshows with external videos."
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Extra premium themes"
msgstr ""

#: admin/views/pages/upgrade.php:87
msgid "MetaSlider Pro provides stylish and exclusive themes for your slideshows."
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:95
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:102
msgid "Add Post Feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:103
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:110
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/upgrade.php:111
msgid "Customize your slideshows to fit with your website."
msgstr ""

#: admin/views/pages/upgrade.php:118
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:119
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:126
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:127
msgid "Hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:134
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:135
msgid "Have your specific queries addressed directly by our experts."
msgstr ""

#: admin/views/slides/tabs/crop.php:6
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:7
msgid "Choose how images are cropped if their size doesn't exactly match the size of your slideshow. This works if \"Smart Crop\" is selected in the \"Image Crop\" settings."
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:18
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/link.php:9
msgid "Image Link URL"
msgstr ""

#: admin/views/slides/tabs/link.php:10
msgid "When visitors click on your image slide, they will be taken to this URL."
msgstr ""

#: admin/views/slides/tabs/link.php:20
msgid "New window"
msgstr ""

#: admin/views/slides/tabs/link.php:22
msgid "Open link in a new window"
msgstr ""

#: admin/views/slides/tabs/link.php:44
msgid "Image Link Alt Text"
msgstr ""

#: admin/views/slides/tabs/link.php:45
msgid "This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended."
msgstr ""

#: admin/views/slides/tabs/mobile.php:33
msgid "Hide slide on:"
msgstr ""

#: admin/views/slides/tabs/mobile.php:46
msgid "When enabled this setting will hide the slide on screen widths equal to or greater than %spx"
msgstr ""

#: admin/views/slides/tabs/mobile.php:56
msgid "When enabled this setting will hide the slide on screen widths of %1$spx to %2$spx"
msgstr ""

#: admin/views/slides/tabs/mobile.php:72
msgid "Hide caption on:"
msgstr ""

#: admin/views/slides/tabs/mobile.php:85
msgid "When enabled this setting will hide the caption on screen widths equal to or greater than %spx"
msgstr ""

#: admin/views/slides/tabs/mobile.php:95
msgid "When enabled this setting will hide the caption on screen widths of %1$spx to %2$spx"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid "Update or activate your MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day."
msgstr ""

#: admin/views/slides/tabs/seo.php:7
msgid "Image Title Text"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Visitors will see this text if they hover over your image slide. Adding Title text is useful but not required."
msgstr ""

#: admin/views/slides/tabs/seo.php:11
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:13
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:33
msgid "Image Alt Text"
msgstr ""

#: admin/views/slides/tabs/seo.php:34
msgid "This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended."
msgstr ""

#: admin/views/slides/tabs/seo.php:37
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:39
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid "Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:112
msgid "Title:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Select Slider:"
msgstr ""

#: inc/metaslider.widget.class.php:125
#: ml-slider.php:1961
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr ""

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:117
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:127
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:308
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:396
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:428
#: inc/slide/metaslide.class.php:683
#: inc/slide/metaslide.class.php:684
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.class.php:440
msgid "Duplicate slide"
msgstr ""

#: inc/slide/metaslide.image.class.php:89
msgid "This isn't a valid image format. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:358
msgid "Access denied"
msgstr ""

#: inc/slide/metaslide.image.class.php:391
msgid "Image Slide"
msgstr ""

#: inc/slide/metaslide.image.class.php:473
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:488
msgid "General"
msgstr ""

#: inc/slide/metaslide.image.class.php:492
msgid "Link"
msgstr ""

#: inc/slide/metaslide.image.class.php:496
msgid "SEO"
msgstr ""

#: inc/slide/metaslide.image.class.php:512
msgid "Mobile"
msgstr ""

#: inc/slide/metaslide.image.class.php:529
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:541
msgid "Schedule"
msgstr ""

#: inc/slider/metaslider.class.php:252
msgid "Click the \"Add Slide\" button to create your slideshow"
msgstr ""

#: inc/slider/metaslider.class.php:295
msgid "Edit Slideshow"
msgstr ""

#: ml-slider.php:262
msgid "MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:489
msgid "Home"
msgstr ""

#: ml-slider.php:490
msgid "Quick Start"
msgstr ""

#: ml-slider.php:491
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:494
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:531
#: ml-slider.php:534
msgid "All Slideshows"
msgstr ""

#: ml-slider.php:542
#: ml-slider.php:545
msgid "Create Slideshow"
msgstr ""

#: ml-slider.php:679
msgid "Image"
msgstr ""

#: ml-slider.php:680
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:720
msgid "Post Feed"
msgstr ""

#: ml-slider.php:721
msgid "Vimeo"
msgstr ""

#: ml-slider.php:722
msgid "YouTube"
msgstr ""

#: ml-slider.php:723
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:724
msgid "External URL"
msgstr ""

#: ml-slider.php:725
msgid "Local Video"
msgstr ""

#: ml-slider.php:726
msgid "External Video"
msgstr ""

#: ml-slider.php:851
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:874
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:933
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:1045
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1738
msgid "Slide permanently deleted."
msgstr ""

#: ml-slider.php:1741
msgid "Slide restored."
msgstr ""

#: ml-slider.php:1755
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1781
msgid "Loading... Please wait!"
msgstr ""

#: ml-slider.php:1809
msgid "You are viewing slides that have been trashed, which will be automatically deleted in %s days."
msgstr ""

#: ml-slider.php:1863
msgid "Move slideshow to trash"
msgstr ""

#: ml-slider.php:1910
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:1940
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Select slideshow to insert into post"
msgstr ""

#: ml-slider.php:1946
msgid "Choose slideshow"
msgstr ""

#: ml-slider.php:1956
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:1991
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:1995
msgid "With Layer slides, you can create beautiful, stylish layers of different elements."
msgstr ""

#: ml-slider.php:1999
msgid "You start with an image and then can add text, video, colors, animations, more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2005
#: ml-slider.php:2046
#: ml-slider.php:2087
#: ml-slider.php:2130
#: ml-slider.php:2173
#: ml-slider.php:2216
#: ml-slider.php:2259
#: admin/assets/dist/js/app.js:2
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2034
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2038
msgid "With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2042
msgid "Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2075
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2079
msgid "With YouTube slides, you can build beautiful slideshows with your YouTube videos."
msgstr ""

#: ml-slider.php:2083
msgid "YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2116
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2120
msgid "With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2124
msgid "Post Feed slides will automatically display your posts with images, text, custom fields, and much more."
msgstr ""

#: ml-slider.php:2159
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2163
msgid "With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2167
msgid "External URL slides give you all the power of MetaSlider, using images stored anywhere you want."
msgstr ""

#: ml-slider.php:2202
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2206
msgid "With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library."
msgstr ""

#: ml-slider.php:2210
msgid "Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2245
msgid "Create slideshows with videos stored outside of WordPress"
msgstr ""

#: ml-slider.php:2249
msgid "With External Video slides, you can add videos directly from non-WordPress sources."
msgstr ""

#: ml-slider.php:2253
msgid "External Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2296
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2302
msgid "MetaSlider Pro"
msgstr ""

#: ml-slider.php:2306
msgid "Support"
msgstr ""

#: ml-slider.php:2311
msgid "Documentation"
msgstr ""

#: ml-slider.php:2315
msgid "Leave a review"
msgstr ""

#: themes/manifest-legacy.php:15
#: themes/manifest.php:15
msgid "Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides."
msgstr ""

#: themes/manifest-legacy.php:23
#: themes/manifest.php:23
msgid "Clarity is focused on accessibility. It has easy-to-read fonts, and a straightforward, distraction-free interface."
msgstr ""

#: themes/manifest-legacy.php:31
#: themes/manifest.php:31
msgid "Databold is a minimalist theme recommended for Image, External Image and Post feed slides."
msgstr ""

#: themes/manifest-legacy.php:39
#: themes/manifest.php:39
msgid "Draxler is a minimalist theme."
msgstr ""

#: themes/manifest-legacy.php:47
#: themes/manifest.php:47
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest-legacy.php:56
#: themes/manifest.php:56
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest-legacy.php:65
#: themes/manifest.php:65
msgid "A fun, circular design to brighten up your site. This theme works well with dark images"
msgstr ""

#: themes/manifest-legacy.php:74
#: themes/manifest.php:74
msgid "A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest-legacy.php:106
#: themes/manifest.php:106
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest-legacy.php:115
#: themes/manifest.php:115
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest-legacy.php:124
#: themes/manifest.php:124
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest-legacy.php:133
#: themes/manifest.php:133
msgid "This theme has a special additional functionality that uses image titles as the slide navigation. "
msgstr ""

#: themes/manifest-legacy.php:134
#: themes/manifest.php:134
msgid "If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest-legacy.php:164
#: themes/manifest.php:164
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest-legacy.php:173
#: themes/manifest.php:173
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest-legacy.php:182
#: themes/manifest.php:182
msgid "A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides."
msgstr ""

#: themes/manifest-legacy.php:191
msgid "The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider"
msgstr ""

#: themes/manifest-legacy.php:199
msgid "The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider"
msgstr ""

#: themes/manifest-legacy.php:207
msgid "The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider"
msgstr ""

#: themes/manifest-premium.php:14
#: themes/manifest-premium.php:26
msgid "minimalist"
msgstr ""

#: themes/manifest-premium.php:15
msgid "2 columns"
msgstr ""

#: themes/manifest-premium.php:17
msgid "A 2 columns minimalistic theme to split your images and captions."
msgstr ""

#: themes/manifest-premium.php:18
msgid "Image, External URL and Post Feed slides are displayed in 2 columns, while the rest of slide types in 1 column."
msgstr ""

#: themes/manifest-premium.php:27
msgid "videos"
msgstr ""

#: themes/manifest-premium.php:28
msgid "vertical"
msgstr ""

#: themes/manifest-premium.php:30
msgid "A theme to showcase vertical images and videos."
msgstr ""

#: themes/manifest-premium.php:31
msgid "Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos."
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1
#: admin/assets/js/admin.js:80
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1
#: admin/assets/js/admin.js:149
#: admin/assets/js/admin.js:1002
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1
#: admin/assets/js/admin.js:198
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1
#: admin/assets/js/admin.js:201
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1
#: admin/assets/js/admin.js:290
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1
#: admin/assets/js/admin.js:342
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Easily add custom CSS to your slideshows to create the perfect design for your sites."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "To edit this slide, click \"Restore\" and then \"Return to Published Slides\""
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This slideshow will be moved to the \"Trash\" area."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Confirm"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This theme is not officially supported by the slider you chose. Your results might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to unlock this theme!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This theme was created through the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "If no theme is selected we will use the default theme provided by the slider plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a theme on the left to use on this slideshow. Click the theme for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Manual entry"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter text that will appear with your image slide."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You currently do not have any slides to preview. If you want, we can import some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Check out our documentation page for examples, and more information about what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Pro settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update the default settings used when creating new slideshows."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update the settings used for all the slideshows on your site."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Mobile Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Add option to hide slides and captions per screen size."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Mobile Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Set breakpoints for different screen sizes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Libraries"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can safely enable this setting. None of your slideshows use the legacy libraries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshows that use legacy libraries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You currently have %s slideshow that uses legacy libraries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable MetaSlider on Admin Bar"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Add and edit slideshows easier by showing MetaSlider on your admin bar."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Frontend Edit Links"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Edit slideshows easily by showing MetaSlider link under each slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Last"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "First"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "New slides order"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select the position for new added slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Disable Legacy Widget"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This setting allows you to disable the legacy MetaSlider widget."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Pro Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update the MetaSlider Pro settings."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select how many custom fields will display in the dropdown menu when you are inserting tags."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the maximum custom fields for Post Feed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "When images are missing you will have to manually update or delete the slide after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select the slideshows you wish to import below, then press here to import them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the \"Load\" button."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Choose the slideshows you wish to export."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the \"Export\" button."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "A .json file will automatically be downloaded with all your slideshow data."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "A few notes on exporting slideshow images:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Your images need to be exported manually. Please upload them to the new website before importing these slideshows."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Images will need to keep the same file names on the new site."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Read our guide on exporting images."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have %s slideshows that can be exported. Information about each slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select the slideshows you wish to export below, then press here to export them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid "Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid "You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid "Choose an image from the left, or search for any topic here to bring up more images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid "Now that you have some slides set, you can preview your slideshow by pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-zh_CN-metaslider-admin-script.json000064400000067262151213255510017030 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"zh_CN"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["标题"],"New Window":["新窗口"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":["选择替代图像"],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["注意:此设置仅适用于高级开发者。如果你不确定,请将他保持在未勾选的状态"],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["标题"],"Created":[""],"Shortcode":["短代码"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["添加幻灯片"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["保存"],"Settings":["设置"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":["裁剪位置"],"Top Left":["顶部左对齐"],"Top Center":["顶部居中"],"Top Right":["顶部右对齐"],"Center Left":["水平左对齐"],"Center Center":["水平居中"],"Center Right":["水平右对齐"],"Bottom Left":["底部左对齐"],"Bottom Center":["底部居中"],"Bottom Right":["底部右对齐"],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["图片的标题文字"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["图片的替代文字(alt)"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["标题:"],"Select Slider:":["选择幻灯片:"],"No slideshows found":["没有幻灯片"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["图像幻灯片"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["通用"],"SEO":["SEO"],"Crop":["剪裁"],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["图像"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["宽度"],"Slideshow width":["幻灯片宽度"],"px":["像素"],"Height":["高度"],"Slideshow height":["幻灯片标高度"],"Effect":["效果"],"Slide transition effect":["幻灯片过渡效果"],"Random":["随机"],"Swirl":["漩涡"],"Rain":["雨"],"Straight":["直"],"Slice Down":[""],"Slice Up":["切片"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["渐隐"],"Fold":["折叠"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["随机"],"Box Rain":["箱式"],"Box Rain Reverse":["箱式"],"Box Rain Grow":[""],"Box Rain Grow Reverse":[""],"Slide":["滑动"],"Arrows":["箭头"],"Show the previous/next arrows":["显示 向后/向前 箭头"],"Navigation":["导航"],"Show the slide navigation bullets":["显示幻灯片导航的小圆点"],"Hidden":["隐藏"],"Dots":["点"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["高级设置"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["拉伸幻灯片以填充其父容器"],"Center align":["居中对齐"],"Center align the slideshow":["居中对齐幻灯片"],"Auto play":["自动播放"],"Transition between slides automatically":["幻灯片间自动过渡"],"Image Crop":["图像裁剪"],"Smart Crop":["智能裁剪"],"Standard":["标准"],"Disabled":["禁用"],"Disabled (Smart Pad)":["禁用 (Smart Pad)"],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["智能裁剪确保您的多张响应式幻灯片被剪裁到一个相同的比例,使他们能在幻灯片中保持同样的尺寸。"],"Carousel mode":["传送带模式"],"Display multiple slides at once. Slideshow output will be 100% wide.":["立即显示多张幻灯片. 幻灯片放映会以100%的宽度输出"],"Carousel margin":["传送带模式边距"],"Pixel margin between slides in carousel.":["传送带模式下幻灯片间间距"],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["打乱幻灯片放映的顺序"],"Hover pause":["悬停时暂停"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["当鼠标悬停在图片上时暂停幻灯片放映(鼠标移开后恢复)"],"Reverse":["反向"],"Reverse the animation direction":["反转过渡效果的方向"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["幻灯片播放间隔"],"How long to display each slide, in milliseconds":["幻灯片的播放间隔,单位是毫秒"],"Animation speed":["动画速度"],"Set the speed of animations, in milliseconds":["设置动画的速度,单位是毫秒"],"Number of slices":["切片数"],"Number of squares":["方格数"],"Slide direction":["滑动方向"],"Select the sliding direction":["选择的滑动方向"],"Horizontal":["横向"],"Vertical":["垂直"],"Easing":["松"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["表示“上一张”的文本"],"Set the text for the 'previous' direction item":["为幻灯片放映中的“上一张”按钮设置文本内容"],"Next text":["表示“下一张”的文本"],"Set the text for the 'next' direction item":["为幻灯片放映中的“下一张”按钮设置文本内容"],"Square delay":["延迟"],"Delay between squares in ms":["以毫秒为单位"],"Opacity":["透明度"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["速度"],"Set the fade in speed of the caption":["设置字幕渐隐的速度"],"Developer options":["开发人员选项"],"CSS classes":["CSS 类"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["指定的任何自定义CSS类"],"Print CSS":["打印CSS"],"Uncheck this is you would like to include your own CSS":["取消选中,则使用自己的CSS"],"Print JS":["打印JavaScript"],"Uncheck this is you would like to include your own Javascript":["取消选中,则使用自己的Javascript"],"No conflict mode":["无冲突模式"],"Delay adding the flexslider class to the slideshow":[""],"Delete slideshow":[""],"Select slideshow to insert into post":["选择要插入到博文的幻灯片"],"Add slideshow":[""],"Choose slideshow":["选择幻灯片"],"Insert slideshow":["插入幻灯片"],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["文档"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["你确定吗?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-pl_PL.po000064400000162167151213255510011763 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:58-0600\n"
"Last-Translator: Kamil <dinal.shirts@gmail.com>\n"
"Language-Team: \n"
"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Podpis"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Nowe okno"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Uwaga: Ta opcja jest tylko dla zaawansowanych użytkowników. Jeśli nie jesteś "
"pewny co robisz, nie rób tego."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
#, fuzzy
msgid "Title"
msgstr "Tytuł:"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Kod skórtu"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Dodaj slajd"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Zapisz"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Ustawienia"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr "Tak"

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr "Nie"

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr ""

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr ""

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Tytuł:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Zaznacz slajder"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Nie znaleziono składników pokazu"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
#, fuzzy
msgid "Image Slide"
msgstr "Nowy slider"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr ""

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr ""

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Zdjęcie"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Szerokośc"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr ""

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr ""

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Wysokość"

#: ml-slider.php:1681
#, fuzzy
msgid "Slideshow height"
msgstr "Wjeżdżanie od prawej"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Efekt"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Efekt przenikania slajdów"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Losowo"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Wirowanie"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Deszcz"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Sekwens"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Paski od góry"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Zanikanie"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Składanie"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr ""

#: ml-slider.php:1750
msgid "Box Rain"
msgstr ""

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr ""

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr ""

#: ml-slider.php:1766
msgid "Slide"
msgstr "Slajd"

#: ml-slider.php:1773
msgid "Arrows"
msgstr ""

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr ""

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Nawigacja"

#: ml-slider.php:1789
#, fuzzy
msgid "Show the slide navigation bullets"
msgstr "Pokaż pasek nawigacji slajdami"

#: ml-slider.php:1794
msgid "Hidden"
msgstr ""

#: ml-slider.php:1795
msgid "Dots"
msgstr ""

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Ustawienia zaawansowane"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
#, fuzzy
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Rozpocznij pokaz slajdów przy starcie strony"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Wyśrodkuj"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Wyśrodkuj pokaz slajdów"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Automatyczny start"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr ""

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Tryb karuzeli"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr ""

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr ""

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr ""

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Zatrzymaj podczas najechania"

#: ml-slider.php:2014
#, fuzzy
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Zatrzymaj pokaz slajdów kiedy kursor znajdzie się na slajdzie. Wznów pokaz "
"jeśli z niego zjedzie."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Odwróc"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Odwróć kierunek animacji"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Czas opóźnienia"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Jak długo ma być wyświetlany slajd, w milisekundach"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Prędkośc animacji"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Ustaw szybkość animacji, w milisekundach"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Ilość cięć"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Ilość kwadracików"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Kierunek slajdu"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Zaznacz kierunek slajdów"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Poziomo"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Pionowo"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Łagodzenie"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Tekst \"Poprzedni\""

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Ustaw tekst dla \"poprzedniego\" slajdu"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Tekst \"Nastepny\""

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Ustaw tekst dla \"następnego\" slajdu"

#: ml-slider.php:2202
msgid "Square delay"
msgstr ""

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr ""

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Przeźroczystość"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Prędkośc pojawiania opisu"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Ustaw czas zanikania podpisu"

#: ml-slider.php:2250
#, fuzzy
msgid "Developer options"
msgstr "Opcje deweloperskie"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "Klasy CSS"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Wpisz własne klasy CSS, które mają zostać dołączone do kontenera głównego "
"slajdera"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Wyświetl CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Odznacz jeśli chcesz dołączyć swój własny kod CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Wyświetl JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Odznacz jeśli chcesz dołączyć swój własny kod Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr ""

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr ""

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr ""

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
#, fuzzy
msgid "Choose slideshow"
msgstr "Nie znaleziono składników pokazu"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Dokumentacja"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Na pewno?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-ro_RO.po000064400000163474151213255510011777 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:58-0600\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Titlu"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Fereastră Nouă"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Atenţie : Această opţiune este destinată doar dezvoltatorilor. Dacă nu "
"sunteţi sigur, lăsaţi bifat ."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Titlu"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Cod scurt"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Adăugare Diapozitiv"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Salvaţi"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Setări"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr ""

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr ""

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr ""

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr ""

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr ""

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Titlu Imagine"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Text Alt Imagine"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Titlu"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Selectaţi Diapozitivul"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Nici un diapozitiv găsit"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Imagine Diapozitiv"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "General"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr ""

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Imagine"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Lăţime"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Lăţime Diapozitiv"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "px"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Înălţime"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Înăţime Diapozitiv"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Efect"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Efect tranziţie diapozitiv"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Aleatoriu"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Învârtire"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Curgător"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Liniar"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Decupaţi Sus"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Apunere"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Pliaţi"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Caseta Aleatoriu"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Caseta Curgător"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Caseta Curgător Invers"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Caseta Curgător Crescător Invers"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Glisaţi"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Săgeţi"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Afişaţi săgeţile Înapoi/Înainte"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Navigare"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Afişaţi bulinele de navigare ale diapozitivului"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Ascuns"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Puncte (buline)"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Setări Avansate"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Extindeţi diapozitivul pentru încadrare optimă"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Aliniere centrală"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Alinierea centrală a diapozitivului"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Redare automată"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Tranziţie automată între diapozitive"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr ""

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr ""

#: ml-slider.php:1933
msgid "Disabled"
msgstr ""

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Decupare Inteligentă se asigură că diapozitivele sunt decupate la un raport "
"din care rezultă un diapozitiv la mărimea dorită"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Modul Carusel"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr ""
"Afişaţi mai multe diapozitive simultan. Dimensiunea diapozitivului va fi de "
"100% ."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr ""

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr ""

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Sortaţi ordinea diapozitivelor"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Pauză la planare cursor"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Puneţi pauză diapozitivului la planarea cursorului , apoi reluaţi când "
"planarea cursorului încetează."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Invers"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Inversaţi direcţia animaţiei"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Temporizare diapozitiv"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Durata de afişare a fiecărui diapozitiv , în milisecunde"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Viteza animaţiei"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Setaţi viteza animaţiilor, în milisecunde"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Numărul decupăturilor"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Numărul pătratelor"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Direcţie de glisare"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Selectaţi direcţia de glisare"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Orizontal"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Vertical"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Easing"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "Textul anterior"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Setaţi textul pentru elementul din direcţia 'anterior'"

#: ml-slider.php:2184
msgid "Next text"
msgstr "Textul urmator"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Setaţi textul pentru elementul din direcţia 'urmator'"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Temporizare casetă(pătrat)"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "Temporizare între casete în ms"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Opacitate"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Viteza titlu"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "Setaţi viteza de apunere a titlului"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Opţiuni dezvoltator"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "Clase CSS"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Specificaţi orice Clase CSS pe care aţi dorii să fie adăugate la ambalatorul "
"diapozitivului"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "Publicare CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Prin debifarea acesteia doriţi să includeţi propriul dvs. CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "Publicare JS"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Prin debifarea acesteia doriţi să includeţi propriul dvs. Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "Modul fară conflict"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Temporizare în adăugarea clasei flexslider la diapozitiv"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Selectaţi diapozitivul pe care doriţi să-l inseraţi în postare"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Alegeţi diapozitiv"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr ""

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Documentaţie"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Eşti sigur ?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-nl_NL.mo000064400000011650151213255510011742 0ustar00��A$Y,�	���
��	��
�
�Z[h��
�������
��/�"(7C
T
_	jt�S�
��!�#CH$W|$�,�*�.	E	N	!l	�	�	�	�	�	l�	P
Y
_
'f
6�
=�
���


,
3
H
U
k
kz
�
�
&:GS[bk	r|�)�
����	

*8Qoe��0�&CK4^�:�-�^Zt� ��,;Rcyu���"4%;Z	�� <3'$6,)1@=72/*58A90
:"+(-#
.;&!?%4>	Add SlideAdvanced SettingsAnimation speedAre you sure?ArrowsAuto playCaptionCaption speedCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowChoose slideshowDeveloper optionsDocumentationEasingFadeFoldGeneralHeightHiddenHorizontalHover pauseHow long to display each slide, in millisecondsImageImage Alt TextImage SlideImage Title TextNavigationNew WindowNext textNo slideshows foundOpacityPause the slideshow when hovering over slider, then resume when no longer hovering.Previous textRandomRandomise the order of the slidesReverseReverse the animation directionSaveSelect Slider:Select slideshow to insert into postSelect the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShow the previous/next arrowsShow the slide navigation bulletsSlide delaySlide directionSlide transition effectSlideshow heightSlideshow widthSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow sizeStraightTitleTitle:Transition between slides automaticallyUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:58-0600
Last-Translator: Nick te Morsche <bl44tkip@gmail.com>
Language-Team: 
Language: nl_NL
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Slide toevoegenGeavanceerde InstellingenAnimatie snelheidZeker weten?PijlenAutomatisch AfspelenOnderschriftOnderschrift snelheidCarousel modusLet op! Deze instellingen zijn alleen bedoelt voor voor ervaren ontwikkelaars. Bij twijfel aangevinkt latenUitlijnen middenSlideshow in midden uitlijnenSlideshow kiezenOntwikkelaar optiesDocumentatieVersoepelenVervaagvouwenAlgemeenHoogteVerborgenHorizontaalPause bij zwevenWeergave tijd per slide, in millisecondenAfbeeldingAlternatieve Afbeelding textAfbeelding SlideText Titel AfbeeldingNavigatieNieuw vensterVolgende textgeen slideshows gevonden(on)DoorzichtigheidPauseer de slideshow zodra de cursor over de slider hangt en hervat de slideshow wanneer deze wordt verwijdert Vorige textWillekeurigStel de volgorde van de slides in op WillekeurigOmkerenKeer de animatie richting omOpslaanSlider Selecteren:Selecteer een slideshow om in uw bericht te plaatsenSelecteer slide richtingStel hier de snelheid in waarmee het onderschrift vervaagtAnimatie snelheid instellen, in millisecondenStel hier uw text in om naar de volgende afbeelding te gaan, bijvoorbeeld: Volgende AfbeeldingStel hier uw text in om naar de vorige afbeelding te gaan, bijvoorbeeld: Vorige AfbeeldingInstellingenVorige/Volgende pijlen weergevenSlide Navigatiebalk weergevenSlide VertragingSlide RichtingSlide overgangs effectSlideshow hoogteSlideshow breedteSlim uitsnijden garandeerd dat de slides optimaal worden uitgesneden, zodat deze in het juiste formaat worden weergegevenRechtTitelTitel:Overgang tussen slides automatischVink deze uit wanneer je een eigen CSS wilt invoegenVink deze uit wanneer je een eigen javascript wilt invoegenVerticaalBreedtelanguages/ml-slider-it_IT.mo000064400000217562151213255510011762 0ustar00�����l+�9�9:
:
#:#.:	R:K\:A�:;�:A&;*h;W�;E�;w1<M�<<�<?4=/t=�=	�=
�=G�=>'>/>7>	L>$V>{>�>�>*�>G�>?-?DG?�?7�?�?
�?�?C@O@d@Bu@�@�@�@0�@!A61AhA
{A7�AD�AABEBNBfB
~B�B�B	�B8�B�B�BCoC�C
�C�C�C�C
�C�C�C
�CDD&3DZDfD�D�DL�D�D
�D	E E=E
MEZ[E
�E�E�E�EB�E-F4F�MF�FZ�F.GGjvGT�G�6H�H)�HfI0{Ir�IJ5+JaJ|J�J�J�J�J	�J�J�J�JKK(KAK%\K#�K1�K�K<�K'%L9ML@�L3�L9�L(6M*_M!�M�M�M�M�M
�M�MN
N3NZKN�N�N3�N�NO+O7O@OROkO�O�O�Op�OpP
�P�P�P�P&�P�PQ	Q#Q3Q%LQrQU�Q2�Qe
R9pR�R��RCSHSWSGfS�S�S�S)�S&)T`PT2�T�TUUU*U<UWU`dU�U��U�V�V�V�V#�V�VW	W$W4WCWXW"mW�W�W�Wd�W�	X�X�X�X

YYY0YJY^YjYzY�Y=�Y�Y�Y�Y�	Z�Z.�Z�Z�Z[[	'[1[
6[A[
M[0X[�[F�[\�[S2\K�\��\��]|{^��^�_�_
�_�_``'`7`H`^`ot`=�`"a)a
>a"La
oa}a�a�a�a+�a\�a,Vb#�bb�b
c	c%c�@c!d|$dH�dT�d?eQeVebeqe�e�e�e�e	�e�e�e�e�ef f
6fAf)Yf�f��f*g/g4gOgagng3{g
�g�g
�g�gq�g[hIxh�hl�hKijiqi�i�i
�i�i
�i
�i�i
�i�i
�i	�i	jj!j6jQjlj�j	�j�j�j�j	�j�j�jk�k�kS�k(l9lKlNl1Vl�l�l�l�l�l�l�m�m�m��mSxn�n�n�n(o+o<?o	|o	�o�og�opp(p&=p!dp8�p�p
�p�p�p�p	qq
!q	/q9qBqFqSq
fqtq	|q�q�q�q�q"�q	�q#�q�q�qrr&r.rIr Qrrrvr{r�r.�r�r	�r�r�r	ss.$sSscszs�s�s�s�s�sV�s\5t
�t�t~�t)8uObuO�u*v%-v+Sv/v�v�v�v�v	�v�v+w<8w uw�w�w
�w�w�w
�w�w
�w�w
xx
)x7xFxaxpx�x�x�x�x�x�x�xy
y&y
FymQy
�y�y�y�y
zLzkzxz'�z�z�z�z;�z{{%{+{C{H{;d{e�{!|#(|WL|X�|Y�|(W}(�}2�}�}$�}# ~#D~!h~"�~5�~A�~!%#G"k��
���7�A�[V�?��,�l�4��9��'��u#�2��@̂@
�rN�&��1�w�m��b�Bc�X��<��0<�1m�:��	چ��	��I�`�r���
����	��Çχ�	��(,�U�[�g�v���7��>����J�i�}���X����#$��H�>��t6�=�������, �!M�o�~�<��(nj���(� 1�R�f�+����ƍh̍5�I�^�nr��C�~.�4��'�D
�PO�v��^�Ov�TƑ^�Tz�bϒS2�X��\ߓR<�h��H���A�
���n�Sp�RĖh����h�Mu�QØ^�4t�x��U"�fx�;ߚ;�LW�f�� � ,�M�kc�ϜuלrM��������Ǟ
؞)�
���	&�0�=�F�M�
Z�h��n�#2�V�f�u���	��X��I��BA�M��AҢi�B~����i]�IǤP�Pb���	��ʥC٥�7�D�(S�|�,���� ݦ��8�hP���&էZ��%W�m}���"�d>�����Kͩ�,�*C�Dn���M̪�8�OE�W��Q�?�K�c�{�������<�����,��L�խ����"�6�'L�t�����)��3��%�C�
a�Fl�
����ٯ(��2�oF���Ȱݰ�I�L�S��p�!�['�I��uͲWC����u�+��g��<!�y^�صL� 5�"V�=y� ��ض������#�:�Q�#n�,��*��:�%�J5�'��>��H�;0�;l�)��+ҹ&��%�C�[�b�k�������@��m��g�&p�>��ֻ���$�A�_�z���������I����*�00�a���������$Ӿ��l
�Nw�zƿ<A�~����S�\�s�[��'�2�$A�?f�4��m��AI�����������#����#�
������������3�-<�j�	���������������
�z����z��������������
 �.�C�`�Pm������������8�������)�E�X�]�i�x�<����V��l�W��_��0B��s�z"�������������2�K�j������F.�u�}���4���� ���#*�N�8g�p��:�1L��~���
�$%��J�*�YF���4������'�=�M�_�d�k�x�$����"����.�"1�T� l�)�������������������K�W�l�
��������N=���}��)�H�O�^�#x�����������������2�C�]�#x�%���������'�E�	d�n�&���������f��
��0�3�3<�p�"��!��>��%� 5��V��!(��J�p��
k�v���2����1��	�
"�0��P������2 �*S�C~�����	�����
$�/�F�W�d�p�t�������
����������!���7�V�_�t���
��!����%���������I(�r���	��������8�� �/�H�d�	x��� ����n��YC��������9��V��V�?m�D��;��=.�l�y�����	����0��V��'J�r�������#�������"�<�R�h�|�&������$��
�'�:�V� l�(����
��(����!����������P%�v���,������
��?
�J�S�\�d��� ��M�����t�z�W��X��Y2�7��0�1��#'�,K�,x�+��#���)�C>�1��1��.� �6�;�M�b�>o�>��w�be�:���H��K�
$��/�4��9�P)��z�-��9,��f���~��B'�kj�=�1AFP�	���k �+�4�1BQm��*���.,23_'��x�<Snq��%+9�eXG��L<"����6�'?NCZF�&�	
(		6	<@	#}	)�	7�	"
&
�,
�
�
�
��C���0�2�F
bR
��
ej^�j/i�ljqc�o@j�n~�`	�jC	S�]q�\`���@��\^`�u4�|�pD��@6@wW�w"�"��r�Z�by|������
	-7=S	hEZ
wn��RK<��V��L~�".4��[�P��)�9�p��4�cY�(�+t�3��?[m&=_��MxB�����,i��8�K��a�XfZ�:��C�P?d&����z��;�����`�OC�8����������OR���I�B��G�J@���5�n�X��s�;�F�xDN�!���@�g�*7�+�� ���7�|\��#O���H�_����][d|c2#�gD���)��e9�vW�0�RSz�k=qC]����@�-�F)�p��^�c7T^�H;���k�w(�5���M��o/U
�/2AuA��o�I"�Nb�
��v{f2~Naw�L��L�4,J��<5�g��q�v
�	}T(b�W�ye���"!Z���6,�'/��h���_$=f1��sSe3j0�� u�j6�F�%-Ii�E�do}���}��1�QrT�^�\V��r�9��Y��A$��0U�%���������~-'3�P�1%��J#>������b��t���]*��':|yV��h����pk���&��`��Eu�i�s���������l�B�����m��x���yD�
�`>K�<m�+.����h:�*����a�?�t�
�q��j�{������l8����r�����GM�QQ�z�X�!\H >$G��U	�Yl.�������6����	�{W�Sn�1 slide added successfully1 slideshow100% Width100% width1000 by 1000 pixels%s by %s pixels2 columnsA .json file will automatically be downloaded with all your slideshow data.A 2 columns minimalistic theme to split your images and captions.A bold and clear design that works well on a darker images.A clean, subtle theme that features block arrows and bold design.A few notes on exporting slideshow images:A fun, circular design to brighten up your site. This theme works well with dark imagesA futuristic and linear design that goes will with a dark background.A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.A minimalistic, no-frills design that was built to blend in with most themes.A simple theme that neatly blends into any existing website.A simple, slick square design that looks good on darker images.A theme to showcase vertical images and videos.ARIA CurrentARIA LiveAccess deniedAccess denied. Sorry, you do not have permission to complete this task.Accessibility OptionsAdd CSSAdd NewAdd Post Feed slidesAdd SlideAdd YouTube, Vimeo and Tiktok slidesAdd a new slideAdd a new slideshowAdd a slideAdd a start/end date to individual slides.Add and edit slideshows easier by showing MetaSlider on your admin bar.Add custom CSSAdd external video slidesAdd layers to your slides with over 50 available transition effects.Add local video slidesAdd option to hide slides and captions per screen size.Add slide layersAdd slideshowAdd to slideshowAdding custom CSS is a MetaSlider Pro feature. Click to learn more.Additional CSS ClassAdvanced OptionsAfter you have selected an image, press here to create your slide.Agree and continueAll SlideshowsAll Slideshows loadedAll images required to import are accounted for.All media itemsAll photos published on Unsplash can be used for free.All settings savedAll themesAllow navigation to follow the slide's height smoothly.Allow touch swipe navigation of the slider on touch-enabled devices.Allow users to browse your slideshows using thumbnail navigation.Alt TextAnalytics notice closedAnalytics notice openedAre you sure?ArrowsAttachment DetailsAuto playAutomatically updates directly from the WP Media LibraryBad requestBase Image HeightBase Image WidthBitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.Blank SlideshowBottom CenterBottom LeftBottom RightBox RainBox Rain GrowBox Rain Grow ReverseBox Rain ReverseBox RandomBrowse slideshowsBrowser upgrade requiredBuilt-in text editor full of features.CSS ManagerCSS Manager notice closedCSS Manager notice openedCSS classesCan you translate? Want to improve MetaSlider for speakers of your language?CaptionCaption speedCarousel SlideshowCarousel Slideshow with CaptionsCarousel marginCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center CenterCenter LeftCenter RightCenter alignCenter align the slideshow in the available space on your website.ChangeChange the default titleChange the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.Change the default widthChange the look and feel of your slideshow with one of our custom-built MetaSlider themes!Change the maximum custom fields for Post FeedCheck out our documentation page for examples, and more information about what you can do with MetaSlider.Choose an image from the left, or search for any topic here to bring up more images.Choose how images are cropped if their size doesn't exactly match the size of your slideshow. This works if "Smart Crop" is selected in the "Image Crop" settings.Choose slideshowChoose the slideshows you wish to export.Choose the speed of the animation in milliseconds. You can select the animation in the "Effect" field.Choose your own images to start a new slideshow.Clarity is focused on accessibility. It has easy-to-read fonts, and a straightforward, distraction-free interface.Clear cacheClick the "Add Slide" button to create your slideshowClick the "Export" button.Click to copy shortcode.Closing add slide UI...Closing utility modal...CollapseComparison ChartComplete!ConfirmContinueCopy allCreate SlideshowCreate a SlideshowCreate a demo slideshow.Create a new slideshow nowCreate a slideshow with sample imagesCreate a slideshow with your imagesCreate and manage as many slideshows as you need.Create one now!Create slides by adding text, videos and more to your imagesCreate slideshows with external videos.Create slideshows with images stored outside of WordPressCreate slideshows with videos from your WordPress media library.Create slideshows with videos in your media libraryCreate slideshows with videos stored outside of WordPressCreate slideshows with your Vimeo videosCreate slideshows with your YouTube videosCreate slideshows with your postsCreate unlimited slideshowsCreate your slideCreatedCropCrop PositionCrunching...CurrentCustom themeCustomize your slideshows to fit with your website.Databold is a minimalist theme recommended for Image, External Image and Post feed slides.Date: %sDefault Slideshow TitleDelay adding the flexslider class to the slideshow.Delay between squares in ms.Delete PermanentlyDescriptionDeselectDeveloper OptionsDisable Legacy LibrariesDisable Legacy WidgetDisabledDisabled (Smart Pad)DismissDisplay multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the "Slide" Effect.Display multiple slides at once. Slideshow output will be 100% wide. Carousel Mode only uses the 'Slide' Effect.DocumentationDocumentation 📚Doing something...DotsDrag and drop interface not available.Draxler is a minimalist theme.Drop images hereDuplicateDuplicate slideDuplicate this slideshowDuplicated successfully. Reloading...Duplicating...Easily add custom CSS to your slideshows to create the perfect design for your sites.Easily build slides based on your WordPress posts.Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.Easily include videos hosted by YouTube, Vimeo or TikTok.EasingEasing adds gradual acceleration and deceleration to slide transitions, rather than abrupt starts and stops. Easing only uses the "Slide" Effect.EditEdit SlideshowEdit slideshowEdit slideshows easily by showing MetaSlider link under each slideshow.Enable Frontend Edit LinksEnable MetaSlider on Admin BarEnable Mobile SettingsEnable this to inherit the image alt textEnable this to inherit the image titleEnter custom CSS classes to apply to the slider wrapper. Separate multiple classes with a space.Enter text that will appear with your image slide.Error: No themes were found.Exit previewExportExport %s slideshowsExport successfulExporting %s slideshows...External URLExternal URL slides give you all the power of MetaSlider, using images stored anywhere you want.External VideoExternal Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more.External slideExtra premium themesFadeFade inFailed to open the settings page...Failed to open utility modal...Fetching slideshows...FilmstripFilmstrip (Pro)Filter by typeFilter slideshows‎Find out more &rarr;Find out more about MetaSlider ProFinishedFirstFoldFor users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.Found %s slideshowsFreeFree Basic Support 🚀Full widthGeneralGet MetaSlider ProGet MetaSlider Pro &rarr;Get MetaSlider Pro!Get startedGlobal SettingsGlobal settings savedGo there &rarr;Have your specific queries addressed directly by our experts.HeightHelp CenterHelp Improve MetaSliderHere you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.HiddenHide any slide, without having to delete them.Hide arrows onHide caption on:Hide navigation onHide slide on:Hide stepHomeHorizontalHover pauseHow To UseHow long to display each slide, in milliseconds.IE11Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos.If Autoplay is enabled, this causes screen readers to announce that the slides are changing.If no theme is selected we will use the default theme provided by the slider pluginIf you are a pro member, enter your license key here to receive updates. %sIf you choose "Loop continuously", the slides will loop infinitely. If you choose "Stop on first slide", the slideshow will stop on the first slide after showing all the items. If you choose "Stop on last slide", the slides will stop on the last slide.If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.If you have only a few slideshows, we will prepare them automatically. If you have many slideshows, click the "Load" button.If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).ImageImage Alt TextImage CropImage Link Alt TextImage Link URLImage SlideImage SlideshowImage Title TextImage not found<br>%sImage search completeImage, External URL and Post Feed slides are displayed in 2 columns, while the rest of slide types in 1 column.Images will need to keep the same file names on the new site.ImportImport %s slideshowsImport SlidesImport data could not be processedImport slidesImport slug not foundImport successfulImporting %s slideshows...Importing...Includes recipes to solve common scenarios.Increase your revenue and conversion with video slides and many more MetaSlider Pro featuresIndexing %s slideshows into local storage...Indexing slideshows... %s remainingInfinite loop of slides when Carousel Mode is enabled. This option disables arrows and navigation.Insert slideshowInstalledIntelligent image croppingIt looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.Item was copied to your clipboardKeep the plugin name "MetaSlider" when possibleLike MetaSlider? Please help us by giving a positive review at WordPress.orgKeep the plugin name "MetaSlider" when possibleReview MetaSlider &rarr;Keep the plugin name "MetaSlider" when possibleSelect slideshow to insert into postKeyboard ControlsLastLayer SlideLeave a reviewLet's Start &rarr;License KeyLinkLoadLoad allLoad moreLoad remaining %s slideshowsLoad slideshowsLoading %s slideshows...Loading slideshowLoading slideshows list...Loading slideshows...Loading...Loading... Please wait!Loads only on the front-end where needed.Local VideoLocal Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.LogoLoopLoop Carousel ContinuouslyLoop continuouslyMain OptionsManual entryMaximum Number of Custom Field in Post Feed SlidersMedia captionMedia descriptionMetaSliderMetaSlider ProMetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%sMetaSlider Pro is installed!MetaSlider Pro provides stylish and exclusive themes for your slideshows.MetaSlider dashboard loadedMetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site.Microsoft Internet Explorer 11MobileMobile OptionsMobile SettingsMove slideshow to trashNavigationNewNew SlideshowNew WindowNew slides orderNew windowNextNext SlideNext stepNext textNo conflict modeNo default was foundNo error message provided.No error message reported.No image name providedNo photots found.No slidesNo slides foundNo slideshows foundNo slideshows found.No thanksNo themes found.No valid files foundNormal widthNote: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.Nothing to import.Now that you have some slides set, you can preview your slideshow by pressing here.Number of slicesNumber of squaresOKOpacityOpacity of title and navigation, between 0 and 1.Open Media LibraryOpen link in a new windowOpening Unsplash tab...Opening add slide UI...Opening settings page...Opening utility modal...Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %sPage not found: %sPaid Premium Support 🌟Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.Pause the slideshow when hovering over slider, then resume when no longer hovering.Photo by %sPhoto by %s on UnsplashPhoto on UnsplashPixel margin between slides in carousel.Play / Pause ButtonPlease confirm that you would like to delete this slideshow.PortfolioPost FeedPost Feed slidePost Feed slides will automatically display your posts with images, text, custom fields, and much more.Premium SupportPremium supportPreparing 1 slide...Preparing slideshow for duplication...Press %s to save or %s to cancel.Press to clear the slideshow cache from your web browserPress to expandPress to undoPreviewPreview SlideshowPreview slideshowPreviousPrevious SlidePrevious textPrint CSSPrint JSProPro SettingsPro settings savedProcessing...ProfilePublishedQualityQuick StartRainRandomRandomise the order of the slides.Read moreRead our guide on exporting images.RefreshRefresh previewRegular updatesRemoveRestoreReturn to Published SlidesReverseReverse the animation direction.SEOSaveSave & open the previewSave slideshowSaving %s slides. This may take a few moments.Saving theme...Saving...ScheduleSchedule your slidesSearchSearch Unsplash APISearch slideshows (Press ctrl + / to focus)‎Search unsplashSearch unsplash.com...Searching slideshows...Searching...SelectSelect Slider:Select a custom themeSelect a slideshowSelect a theme on the left to use on this slideshow. Click the theme for more details.Select how many custom fields will display in the dropdown menu when you are inserting tags.Select imagesSelect replacement imageSelect the direction that slides will move. Vertical will not work if "Carousel mode" is enabled or "Effect" is set to "Fade".Select the position for new added slides.Select the slideshows you wish to export below, then press here to export them.Select the slideshows you wish to import below, then press here to import them.Set breakpoints for different screen sizesSet the fade in speed of the caption.Set the text for the "next" direction item.Set the text for the "previous" direction item.SettingsSettings & HelpSettings savedShort for millisecondsmsShortcodeShortcode copiedShortcode unable to be copied automaticallyShow navigation options so that users can browse the slides.Show the Previous / Next arrows.Sign up &rarr;Site InformationSlice DownSlice UpSlice Up Down LeftSlice Up LeftSlideSlide Up DownSlide delaySlide deletedSlide directionSlide in LeftSlide in RightSlide permanently deleted.Slide restoredSlide restored.Slide updated successfullySlideshow DefaultsSlideshow ThemeSlideshow heightSlideshow savedSlideshow settingsSlideshow settings savedSlideshow widthSlideshowsSlideshows permanently deleted.Smart CropSmart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size.Smooth HeightSome images are missingSomething went wrongSort by modified dateSort by titleSpice up your site with animated layers and video slides with MetaSlider ProSquare delayStandardStill working... %s slides remaining...Stop on first slideStop on last slideStraightStretch the slideshow output to fill it's parent container.SuccessSupportSwirlTabindex for navigationTagsThanks for using MetaSliderThanks for using MetaSlider, the WordPress slideshow pluginThanks for using MetaSlider. To get started, click the "Add Slide" button to create your first slide.The ENTER key on a keyboardEnterThe ESCAPE key on a keyboardEscapeThe Nivo Bar theme included here for legacy purposes. Note: only works with Nivo SliderThe Nivo Dark theme included here for legacy purposes. Note: only works with Nivo SliderThe Nivo Light theme included here for legacy purposes. Note: only works with Nivo SliderThe attempt to restore the slide failed.The attempt to update the option failed.The data in this file does not appear to be valid.The field (%s) cannot be emptyThe following images were not found:The image was successfully updated.The option was successfully updatedThe request format was not valid.The requested data does not exist.The requested image does not exist. Please try again.The security check failed. Please refresh the page and try again.The slide was permanently deletedThe slide was successfully restoredThe slide was successfully trashedThe title cannot be empty.ThemeTheme DetailsTheme InstructionsTheme savedThere was an error updating the image. Please try againThere was an error while updating the database. Please try again.This adds an animation when the slideshow loads. It only uses the "Fade" transition effect.This allows user to pause or resume Auto Play on the slideshow.This animation is used when changing slides.This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.This feature is not fully supported in this browser.This helps make the slideshow navigation more accessible.This is a keyboard shortcut. (alt + p)This is used on the navigation button for the active slide. It helps screen readers understand which slide is active.This isn't a valid image format. Please try again.This item does not exist. Please refresh the page and try again.This setting allows you to disable the legacy MetaSlider widget.This setting allows you to disable the legacy slideshow libraries: Nivo Slider, Coin Slider, and Responsive SlidesThis slideshow is no longer available.This slideshow will be moved to the "Trash" area.This text is used by search engines and visitors using screen readers. Adding Alt text for links is highly recommended.This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.This theme has a special additional functionality that uses image titles as the slide navigation. This theme has a unique design that gives it a sophisticated look.This theme is not officially supported by the slider you chose. Your results might vary.This theme places the controls vertically for a unique look.This theme was created through the theme editor.This was not a slideshow, so we cannot delete it.This was not a slideshow, so we cannot update the setting.ThumbnailThumbnail (Pro)Thumbnail navigationTitleTitle:To edit this slide, click "Restore" and then "Return to Published Slides"Toggle full widthToggle overlay typeToggle your slide's visibilityTop CenterTop LeftTop RightTouch SwipeTour cancelled successfullyTour cancelled unsuccessfullyTransition EffectTransition SpeedTransition between slides automatically.TrashTrash slideTrashed SlidesTrashed slidesURLUncheck this if you would like to include your own CSS.Uncheck this if you would like to include your own Javascript.Undefined error occurredUndoUnique Smart Crop functionality ensures your slides are perfectly resized.Unsplash tab closedUpdate Internet ExplorerUpdate license keyUpdate or activate your MetaSlider Pro now to add a start/end date option to your slidesUpdate previewUpdate slide imageUpdate the MetaSlider Pro settings.Update the default height for the base image. This will be used for the base image cropping and slideshow dimensions. If set to 100% width, the height will scale accordingly.Update the default settings used when creating new slideshows.Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.Update the settings used for all the slideshows on your site.Updating slide...Updating...Upgrade hereUpgrade nowUpgrade now to build your own custom themes!Upgrade now to unlock this theme!Upgrade to ProUpload fileUse MetaSlider to insert slideshows and sliders in your pageUse arrow keys to get to the next slide.Use the image alt textUse the image titleVersion: v%sVerticalView our detailed privacy policyView trashed slidesViewing %s out of %s slideshowsViewing %s out of %s slideshows (%s loaded)Viewing 1 slideshowVimeoVimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.Visit documentationVisit metaslider.comVisit wordpress.orgVisitors will see this text if they hover over your image slide. Adding Title text is useful but not required.Warning:Warning: The image data does not exist. Please re-upload the image.We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?We are still searching for your images. Please wait.We could not find any images to import.We keep MetaSlider compatible with the latest versions of WordPress.We removed your selected theme as it could not be found. Was the folder deleted?We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.When enabled this setting will hide the arrows on screen widths equal to or greater than %spx.When enabled this setting will hide the arrows on screen widths less than %spx.When enabled this setting will hide the arrows on screen widths of %1$spx to %2$spx.When enabled this setting will hide the caption on screen widths equal to or greater than %spxWhen enabled this setting will hide the caption on screen widths of %1$spx to %2$spxWhen enabled this setting will hide the navigation on screen widths equal to or greater than %spx.When enabled this setting will hide the navigation on screen widths less than %spx.When enabled this setting will hide the navigation on screen widths of %1$spx to %2$spx.When enabled this setting will hide the slide on screen widths equal to or greater than %spxWhen enabled this setting will hide the slide on screen widths of %1$spx to %2$spxWhen images are missing you will have to manually update or delete the slide after the import completes.When visitors click on your image slide, they will be taken to this URL.While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.Wide widthWidthWith External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.With External Video slides, you can add videos directly from non-WordPress sources.With Layer slides, you can create beautiful, stylish layers of different elements.With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.With MetaSlider Pro, you can schedule your slides. You can choose to show your slides on specific dates, days of the week, or times of day.With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.With YouTube slides, you can build beautiful slideshows with your YouTube videos.You are viewing slides that have been trashed, which will be automatically deleted in %s days.You can create your own themes with our theme editorYou can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.You can safely enable this setting. None of your slideshows use the legacy libraries.You currently do not have any slides to preview. If you want, we can import some image slides for you.You currently have %s slideshow that uses legacy libraries.You currently have %s slideshows that use legacy libraries.You don't have any slideshows yet. Click %shere%s to create a new slideshow.You have %s slideshows that can be exported. Information about each slideshow will be presented below.You have no slideshows to exportYou have no slideshows to importYou may use HTML hereYou start with an image and then can add text, video, colors, animations, more images, and even shortcodes.YouTubeYouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.Your images need to be exported manually. Please upload them to the new website before importing these slideshows.Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %sgalleryhttps://www.metaslider.comlast updated: %sminimalistnumber of slides, ex "7 slides"%s slidesprivacy policypxsliderslideshowthis articleverticalvideosview licenseview originalweeksProject-Id-Version: Plugins - Slider, Gallery, and Carousel by MetaSlider &#8211; Responsive WordPress Slideshows - Stable (latest release)
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2024-06-16 01:19+0200
Last-Translator: 
Language-Team: 
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: Poedit 3.4.4
1 diapostiva aggiunta correttamente1 presentazioneLarghezza 100%Larghezza 100%%s per %s pixel2 colonneUn file .json con tutti i dati delle tue presentazioni verrà scaricato automaticamente.Un tema minimalista a 2 colonne per divider le tue immagini e didascalie.Un design netto e chiaro che funziona bene su immagini più scure.Un tema pulito e raffinato che presenta blocchi di frecce e un design deciso.Alcune note sull'esportazione delle immagini della presentazione:Un design divertente e circolare per illuminare il tuo sito. Questo tema funziona bene con immagini scureUn design futuristico e lineare che si sposa con uno sfondo scuro.Un tema minimalista non invasivo che ti permette di mettere in mostra le tue bellissime foto. Da utilizzare preferibilmente con le diapositive di immagini.Un design minimalista e senza fronzoli che è stato costruito per fondersi con la maggior parte dei temi.Un tema semplice che si fonde perfettamente con qualsiasi sito esistente.Un design quadrato semplice ed elegante che sta bene con le immagini più scure.Durata della visualizzazione delle diapositive della pellicola, in millisecondi.Aria attualeAria LiveAccesso negatoAccesso negato. Non hai i permessi per completare questa attività.Opzioni di accessibilitàAggiungi CSSAggiungi nuovaAggiungi diapositiva di feed di articoliAggiungi diapositivaAggiungi diapositive YouTube, Vimeo e TiktokAggiungi una nuova diapositivaAggiungi una nuova presentazioneAggiungi una diapositivaAggiungi una data di inizio/fine a ciascuna diapositiva.Aggiungi e modifica facilmente le presentazioni mostrando MetaSlider nella tua barra di amministrazione.Aggiungi CSS personalizzatoAggiungi diapositive con video esternoAggiungi dei livelli alle tue diapositive con oltre 50 effetti di transizione disponibili.Aggiungi diapositive con video localeAggiungi le opzioni per nascondere le diapositive e le didascalie in funzione della dimensione degli schermi.Aggiungi livelli di diapositiveAggiungi presentazioneAggiungi alla presentazioneL'aggiunta di CSS personalizzato è una caratteristica di MetaSlider Pro. Fai clic per approfondire.Classe CSS supplementareOpzioni avanzateDopo aver selezionato un'immagine, premi qui per creare la tua diapositiva.Accetta e continuaTutte le presentazioniTutte le presentazioni sono state caricateTutte le immagini necessarie per l'importazione sono contabilizzate.Tutti gli elementi mediaTutte le foto pubblicate su Unsplash possono essere utilizzate gratuitamente.Tutte le impostazioni salvateTutti i temiConsentire alla navigazione di seguire fluidamente l'altezza della diapositiva.Consentire la navigazione a scorrimento dello slider su dispositivi abilitati al tocco.Permetti agli utenti di navigare nelle tue presentazioni attraverso le miniature.Testo "alt"Avviso analitico chiusoAvviso analitico apertoSei sicuro?FrecceDettagli dell'allegatoRiproduzione automaticaSi aggiorna automaticamente direttamente da WP Media LibraryRichiesta sbagliataAltezza dell'immagine di baseLarghezza dell'immagine di baseBitono è un tema minimalista con uno schema a due colori. Raccomandato per diapositive d'immagini, immagini esterne e feed di articoli.Presentazione vuotaIn basso al centroIn basso a sinistraIn basso a destraPioggia di quadratiBox pioggia crescentePioggia crescente di quadrati invertitaPioggia di quadrati invertitaQuadrati casualiScorri le presentazioniÈ necessario l'aggiornamento del browserEditor di testo incorporato pieno di funzionalità.Gestore CSSAvviso del gestore CSS chiusoAvviso del gestore CSS apertoClassi CSSPuoi tradurre? Vuoi migliorare MetaSlider per chi parla la tua lingua?DidascaliaVelocità della didascaliaPresentazione a caroselloPresentazione a carosello con didascalieMargini del caroselloModalità caroselloAttenzione: questa impostazione è solo per gli sviluppatori avanzati. Se non sei sicuro, lasciala selezionata.Centrato in mezzoIn centro a sinistraIn centro a destraAllinea al centroAllinea al centro la presentazione nello spazio disponibile sul sito web.CambiaCambia il titolo predefinitoCambia il titolo predefinito che sarà usato quando si crea una nuova presentazione. Usa %s e sarà sostituito dall'ID della presentazione corrente.Modifica la larghezza predefinitaCambia l'aspetto della tua presentazione con uno dei nostri temi MetaSlider personalizzati!Cambia il numero massimo di campi personalizzati per il feed dei articoliControlla la nostra pagina di documentazione per esempi e maggiori informazioni su ciò che puoi fare con MetaSlider.Scegli un'immagine a sinistra, o cerca qualsiasi argomento qui per avere più immagini.Scegli come ritagliare le immagini se le loro dimensioni non corrispondono esattamente a quelle della presentazione. Questo funziona se "Ritaglio intelligente" è selezionato nelle impostazioni di "Ritaglio immagine".Scegli la presentazioneScegli le presentazioni che vuoi esportare.Scegli la velocità dell'animazione in millisecondi. Puoi selezionare l'animazione nel campo "Effetto".Scegli le tue immagini per iniziare una nuova presentazione.Clarity è focalizzato sull'accessibilità. Ha dei font facili da leggere e un'interfaccia immediata e senza distrazioni.Svuota la cacheFai clic sul pulsante "Aggiungi diapositiva" per creare la tua presentazioneFai clic sul pulsante "Esporta".Fai clic per copiare lo shortcode.Chusura dell'interfaccia utente per aggiungere diapositive…Chiusura dell'utilità modale…ComprimiTabella di comparazioneCompletato!ConfermaContinuaCopia tuttoCrea una presentazioneCrea una presentazioneCrea una presentazione demo.Crea adesso una nuova presentazioneCrea una presentazione con immagini campioneCrea una presentazione con le tue immaginiCrea e gestisci tutte le presentazioni che ti necessitano.Creane una ora!Crea diapositive aggiungendo testo, video e molto altro alle tue immagini.Crea presentazioni con i video esterni.Crea presentazioni con immagini memorizzate fuori da WordPressCrea presentazioni con i video della tua libreria dei media di WordPressCrea presentazioni con i video della tua libreria dei mediaCrea presentazioni con video memorizzati fuori da WordPressCrea presentazioni con i tuoi video VimeoCrea presentazioni con i tuoi video YouTubeCrea presentazioni con i tuoi articoliCrea presentazioni illimitateCrea la tua diapositivaCreataRitagliaPosizione del ritaglioElaborazione in corso…CorrenteTema personalizzatoPersonalizza le tue presentazioni per adattarle al tuo sito web.Databold è un tema minimalista raccomandato per diapositive d'immagini, immagini esterne e feed di articoli.Data: %sTitolo predefinito della presentazioneRitarda l'aggiunta della classe flexslider alla presentazione.Ritardo tra i riquadri in ms.Elimina definitivamenteDescrizioneDeselezionaOpzioni per gli sviluppatoriDisabilita la libreria legacyDisabilita i widget legacyDisabilitatoDisabilitato (Smart Pad)IgnoraVisualizza più diapositive contemporaneamente. L'output della presentazione sarà largo il 100%. La modalità "Carosello" utilizza solo l'effetto "Diapositiva".Visualizzazione di più diapositive contemporaneamente. L'output della presentazione sarà largo il 100%. La modalità "Carosello" utilizza solo l'effetto "Diapositiva".DocumentazioneDocumentazione 📚Facendo qualcosa...PuntiInterfaccia trascina e rilascia non disponibile.Draxler è un tema minimalista.Rilascia qui le immaginiDuplicaDuplica diapositivaDuplica questa presentazioneDuplicato con successo. Caricando…Copia in corso...Aggiungi facilmente CSS personalizzati alle tue presentazioni per creare il design perfetto per i tuoi siti.Costruisci facilmente delle diapositive basate sui tuoi articoli di WordPress.Importa facilmente le presentazioni generate da MetaSlider. Questo richiede un file generato dalla scheda di esportazione.Icludi facilmente video ospitati su YouTube, Vimeo o TikTok.InterpolazioneL'interpolazione aggiunge alle transizioni delle diapositive un'accelerazione e una decelerazione graduali, anziché avvii e arresti bruschi. L'interpolazione utilizza solo l'effetto "Diapositiva".ModificaModifica presentazioneModifica presentazioneModifica le presentazioni facilmente mostrando il link MetaSlider sotto ogni presentazione.Abilita i link di modifica del frontendAbilitia MetaSlider nella barra di amministrazioneAbilita le impostazioni per i mobileAbilita questo per ereditare il testo alternativo dell'immagineAbilita questo per ereditare il titolo dell'immagineInserisci le classi CSS personalizzate per applicare il wrapper allo slider. Separa le classi con uno spazio.Inserisci il testo che apparirà con la tua diapositiva immagine.Errore: Nessun tema trovato.Esci dall'anteprimaEsportaEsporta %s presentazioniEsportazione riuscitaEsportazione di %s presentazioni…URL esternoLe diapositive con URL esterno ti offrono tutta la potenza di MetaSlider, utilizzando le immagini memorizzate ovunque tu voglia.Video esternoLe diapositive per video esterno visualizzeranno i tuoi video in MP4, WebM, e MOV. Le caratteristiche includono didascalia testuale, un'immagine di copertina, riproduzione automatica, silenziazione, caricamento differito, la possibilità di nascondere i controlli e molto altro.Diapositive esterneTemi premium extraDissolvenzaDissolvenzaApertura della pagina delle impostazioni fallita…Apertura dell'utilità modale non riuscita…Recupero delle presentazioni…PellicolaPellicola (Pro)Filtra per tipoFiltra presentazioniScopri di più &rarr;Leggi tutto su MetaSlider ProFinitoPrimoAvvolgimentoPer gli utenti della versione gratuita di MetaSlider, offriamo un supporto completo e gratuito sui forum di wordpress.org.Per tua comodità, puoi prima copiare le informazioni di base del sito per aiutarci a velocizzare il processo di debugging. Assicurati di verificare che non siano incluse informazioni personali che potresti voler mantenere private.Trovate %s presentazioniGratuitoSupportodi base gratuito 🚀Larghezza pienaGeneraleOttieni MetaSlider ProOttieni MetaSlider Pro &rarr;Ottieni MetaSlider Pro!Come iniziareImpostazioni globaliImpostazioni globali salvateVai a &rarr;Fatevi indirizzare le vostre domande specifiche direttamente dai nostri esperti.AltezzaCentro assistenzaAiutaci a migliorare MetaSliderQui troverai la documentazione e due livelli di supporto tra cui scegliere. Inoltre, puoi fornirci informazioni extra specifiche per il tuo sito web, server, ecc.NascostoNascondi qualsiasi diapositiva, senza doverla eliminare.Nascondi le frecce suNascondi la didascalia su:Nascondi la navigazione suNascondi la diapositiva su:Nascondi passaggioHomeOrizzontalePausa in hoverCome si usaQuanto tempo visualizzare ogni diapositiva, in millisecondi.IE11Ideale per immagini, diapositive di feed di articoli, video verticali YouTube e Vimeo.Se la riproduzione automatica è abilitata i lettori di schermo diranno che le diapositive stanno cambiando.Se nessun tema è selezionato useremo il tema predefinito fornito dal plugin del visoreSe sei un membro pro, inserisci qui la tua chiave di licenza per ricevere gli aggiornamenti. %sSe scegli "Continuamente", le diapositive andranno in loop all'infinito. Se scegli "Ferma sulla prima diapositiva", la presentazione si fermerà sulla prima diapositiva dopo aver mostrato tutti gli elementi. Se scegli "Ferma sull'ultima diapositiva", la presentazione si fermerà sull'ultima diapositiva.Se hai un file di esportazione, puoi caricarlo qui per essere elaborato. Le informazioni su ogni diapositiva appariranno qui sotto. Potrai confermare prima dell'importazione.Se hai solo poche diapositive, le prepareremo automaticamente. Se hai molte presentazioni, fai clic sul pulsante "Carica".Se vuoi utilizzare i titoli delle immagini come navigazione, è necessario utilizzare FlexSlider. Inoltre, puoi modificare l'etichetta di navigazione della diapositiva, modificare il titolo dell'immagine nella libreria dei media o manualmente nella diapositiva (scheda SEO).ImmagineTesto alternativo dell'immagineRitaglio ImmagineTesto alternativo link immagineURL link immagineDiapositiva immaginePresentazione d'immaginiTesto del titolo dell'immagineImmagine non trovata<br>%sRicerca immagini completataDiapositive di immagini, URL esterni e feed di articoli sono visualizzati in 2 colonne, mentre gli altri tipi di diapositive in una colonna.Le immagini dovranno mantenere gli stessi nomi di file sul nuovo sito.ImportaImporta %s presentazioniImporta diapositiveI dati di importazione non possono essere processatiImporta diapositiveSlug di importazione non trovatoImportazione riuscitaImportazione di %s presentazioni…Importazione in corso...Include raccomandazioni per risolvere situazioni comuni.Aumenta le tue entrate e le conversioni con le diapositive video e molte altre caratteristiche di MetaSlider ProIndicizzazione di %s presentazioni nella memoria locale…Indicizzazione delle presentazioni… %s restantiCiclo infinito di diapositive quando è attivata la modalità "Carosello". Questa opzione disabilita le frecce e la navigazione.Inserisci la presentazioneInstallatoRitaglio intelligente delle immaginiSembra che tu stia usando %s. Mentre MetaSlider supporta %s sul frontend del sito dove gli utenti vedono le tue presentazioni, alcuni degli strumenti che forniamo qui di seguito richiedono un browser moderno.L'elelmento è stato copiato negli appuntiSei soddisfatto di MetaSlider? Aiutaci lasciando una recensione positiva su WordPress.orgRecensisci MetaSlider &rarr;Seleziona la presentazione da inserire nell'articoloControlli da tastieraUltimoDiapositiva del livelloScrivi una recensioneIniziamo &rarr;Chiave di licenzaLinkCaricaCarica tuttoCarica altroCarica le rimanenti %s presentazioniCarica presentazioniCaricamento di %s presentazioni…Caricamento della presentazioneCaricamento dell'elenco delle presentazioni…Caricamento delle presentazioni…Caricamento in corso...Caricamento in corso… attendi!Carica solo sul frontend dove necessario.Video localeLe diapositive per video locale visualizzeranno i tuoi video in MP4, WebM, e MOV con un'immagine di copertina, riproduzione automatica, opzione muto, caricamento differito, la possibilità di nascondere i controlli e molto altro.LogoLoopLoop carosello continuamenteLoop continuamenteOpzioni principaliInserimento manualeNumero massimo di campi personalizzati negli slider dei feed degli articoliDidascalia dei mediaDescrizione dei mediaMetaSliderMetaSlider ProMetaSlider Pro è installato ma non è aggiornato. Puoi aggiornarlo %squi%s. Per saperne di più su questo avviso fai clic %squi%sMetaSlider Pro è installato!MetaSlider Pro fornisce temi stilizzati ed esclusivi per le tue presentazioni.Bacheca di MetaSlider caricataMetaSlider ti dà la possibilità di creare una bellissima presentazione, un carosello o una galleria sul tuo sito WordPress.Microsoft Internet Explorer 11MobileOpzioni mobileImpostazioni per i mobileSposta la presentazione nel cestinoNavigazioneNuovaNuova presentazioneNuova finestraNuovo ordine delle diapositiveNuova finestraSeguenteDiapositiva successivaPassaggio seguenteTesto successivoModalità senza conflittiNessun predefinito trovatoNessun messaggio di errore fornito.Nessun messaggio di errore riportato.Nessun nome d'immagine fornitoNessuna foto trovata.Nessuna diapositivaNessuna diapositiva trovataNessuna presentazione trovataNessuna presentazione trovata.No grazieNessun tema trovato.Non è stato trovato alcun file validoLarghezza normaleNota: puoi ancora importare presentazioni che contengono immagini mancanti. Avrai solo bisogno di aggiornare o eliminare manualmente queste diapositive dalle loro singole pagine di modifica della presentazione.Nulla da importare.Ora che hai inserito alcune diapositive, puoi vedere l'anteprima della tua presentazione premendo qui.Numero di porzioniNumero di quadratiOKOpacitàOpacità del titolo e della navigazione, tra 0 e 1.Apri la libreria dei mediaApri il link in una nuova finestraApertura della scheda unsplash…Apertura dell'interfaccia utente per aggiungere diapositive…Apertura pagina delle impostazioni…Apertura dell'utilità modale…Accetta che MetaSlider raccolga responsabilmente informazioni su come usi il nostro plugin. Questo è disabilitato di default, ma potrebbe essere stato abilitato tramite una notifica. %sPagina non trovata: %sSupporto Premium a pagamento 🌟Gli utenti paganti del plugin premium possono aprire un ticket sul nostro centro di supporto privato per ricevere un'assistenza personalizzata e tempi di risposta più rapidi.Sospendi lo scorrimento quando il mouse è sopra l'immagine, riprendi quando il mouse non è più sull'immagine.Foto di %sFoto di %s su UnsplashFoto su UnsplashMargine in pixel tra le diapositive nel carosello.Pulsante Avvia/fermaConferma di voler eliminare questa presentazione.PortfolioFeed articoloDiapositiva di feed di articoliLe diapositive feed degli articoli visualizzeranno automaticamente i tuoi articoli con immagini, testo, campi personalizzati e molto altro ancora.Supporto PremiumSupporto premiumPreparando 1 diapostiva…Preparando la presentazione per la duplicazione…Premere %s per salvare o %s per annullare.Premi qui per svuotare la cache della presentazione nel tuo browserPremi per espanderePremi per annullareAnteprimaAnteprima presentazioneAnteprima presentazionePrecedenteDiapositiva precedenteTesto precedenteAggiungi CSSAggiungi JSProImpostazioni ProImpostazioni Pro salvateElaborazione in corso…ProfiloPubblicatoQualitàAvvio rapidoPioggiaCasualeOrdine casuale delle diapositive.Leggi tuttoLeggi la nostra guida sull'esportazione delle immagini.RicaricaAggiorna l'anteprimaAggiornamenti regolariRimuoviRipristinaTorna alle diapositive pubblicateInvertiInverti la direzione dell'animazione.SEOSalvaSalva e apri l'anteprimaSalva la presentazioneSalvataggio delle diapositive %s. Questo può richiedere qualche istante.Salvataggio del tema…Salvataggio in corso...ProgrammaProgramma le tue diapositiveCercaCerca l'API di UnsplashCerca presentazioni (Premi ctrl + / per mettere a fuoco)Cerca unsplashCerca su unsplash.com…Ricerca di presentazioni…Ricerca in corso...SelezionaSeleziona lo slider:Seleziona un tema personalizzatoSeleziona una presentazioneSeleziona un tema sulla sinistra da utilizzare in questa presentazione. Clicca sul tema per maggiori dettagli.Seleziona quanti campi personalizzati mostrare nel menu a discesa quando inserisci i tag.Seleziona immaginiSelezione immagine sostitutivaSeleziona la direzione in cui si muoveranno le diapositive. Il movimento verticale non funziona se è attivata la "Modalità carosello" o se "Effetto" è impostato su "Dissolvenza".Seleziona la posizione per le nuove diapositive aggiunte.Seleziona qui sotto le presentazioni che vuoi esportare, poi premi qui per esportarle.Seleziona qui sotto le presentazioni che vuoi importare, poi premi qui per importarle.Imposta i breakpoint per le differenti dimensioni degli schermiConfigura la velocità della assolvenza in entrata della didascalia.Imposta il testo per la direzione dell'elemento "seguente".Imposta il testo per la direzione dell'elemento "precedente".ImpostazioniImpostazioni e aiutoImpostazioni salvatemsShortcodeShortcode copiatoImpossibile copiare automaticamente lo shortcodeMostra le opzioni di navigazione affinché gli utenti possano scorrere le diapositive.Mostra le frecce precedente/successiva.Iscriviti &rarr;Informazioni sul sitoStrisce in bassoStrisce in altoBande dall'alto in basso a sinistraStrisce dall'alto a sinistraScorrimentoEntrata dall'alto in bassoRitardo della diapositivaDiapositiva eliminataDirezione diapositiveEntrata da sinistraEntrata da destraDiapositiva eliminata definitivamente.Diapositiva ripristinataDiapositiva ripristinata.Diapositiva aggiornata correttamentePresentazioni predefiniteTema presentazioneAltezza della presentazionePresentazione salvataImpostazioni della presentazioneImpostazioni della presentazione salvateLarghezza della presentazionePresentazioniPresentazioni eliminate definitivamente.Ritaglio intelligenteRitaglio intelligente assicura che le tue diapositive responsive vengano ritagliate con le proporzioni delle dimensioni adeguate alla presentazione.Altezza fluidaMancano alcune immaginiQualcosa è andato stortoOrdina per data di modificaOrdina per titoloVivacizza il tuo sito con livelli animati e diapositive video con MetaSlider ProRitardo dei quadriStandardAncora in corso… %s diapositive rimaste…Arresta sulla prima diapositivaArresta sull'ultima diapositivaRettilineoAdatta le immagini della presentazione al contenitore genitore.SuccessoSupportoVorticeTabindex per la navigazioneTagGrazie per utilizzare MetaSliderGrazie per utilizzare MetaSlider, il plugin per le presentazioni di WordPressGrazie per utilizzare MetaSlider. Per iniziare fai clic sul pulsante "Aggiungi diapositiva" per creare la tua prima diapositiva.InvioEscapeIl tema Nivo Bar incluso qui per scopi di eredità. Nota: funziona solo con Nivo SliderIl tema Nivo Dark incluso qui per scopi di eredità. Nota: funziona solo con Nivo SliderIl tema Nivo Light incluso qui per scopi di eredità. Nota: funziona solo con Nivo SliderIl tentativo di ripristinare la diapositiva è fallito.Il tentativo di aggiornare l'opzione è fallito.I dati di questo file non sembrano essere validi.Il campo (%s) non può essere vuotoLe seguenti immagini non sono state trovate:L'immagine è stata aggiornata con successo.L'opzione è stata aggiornata correttamenteIl formato richiesto non è valido.I dati richiesti non esistono.L'immagine richiesta non esiste. Riprova.Il controllo di sicurezza è fallito. Aggiorna la pagina e riprova.La diapositiva è stata eliminata definitivamenteLa diapositiva è stata ripristinata con successoLa diapositiva è stata cestinata con successoIl titolo non può essere vuoto.TemaDettagli del temaInstruzioni del temaTema salvatoC'è stato un errore nell'aggiornamento dell'immagine. RiprovaC'è stato un errore nell'aggiornamento del database. Riprova.Questo aggiunge un'animazione al caricamento della presentazione. Utilizza solo l'effetto di transizione "Dissolvenza".Questo permette all'utente di fermare o riprendere la riproduzione automatica nella presentazione.Questa animazione viene usata al cambio delle diapositive.Questa caratteristica non è pienamente supportata in Internet Explorer 11 e si possono verificare tempi lenti nei risultati della ricerca.Questa caratteristica non è supportata completamente in questo browser.Questo aiuta a rendere la navigazione della presentazione più accessibile. (alt + p)Questo è usato nel pulsante di navigazione per la diapositiva attiva. Aiuta i lettori dello schermo a capire quale diapositiva è attiva.Questo non è un formato d'immagine valido. Riprova.Questo elemento non esiste. Aggiorna la pagina e riprova.Queste impostazioni ti permettono di disabilitare i widget legacy di MetaSlider.Queste impostazioni ti permettono di disabilitare le librerie legacy di presentazione: Nivo Slider, Coin Slider e Responsive SlidesQuesta presentazione non è più disponibile.Questa presentazione verrà spostata nell'area "Cestino".Questo testo è usato dai motori di ricerca e dai visitatori che usano i lettori di schermo. L'aggiunta del testo alternativo per i link è fortemente raccomandato.Questo testo viene utilizzato dai motori di ricerca e dai visitatori che utilizzano gli screen reader. L'aggiunta del testo "alt" è altamente raccomandata.Questo tema ha una speciale funzionalità aggiuntiva che utilizza i titoli delle immagini come navigazione delle diapositive. Questo tema ha un design unico che gli dà un aspetto sofisticato.Questo tema non è ufficialmente supportato dal visore che hai scelto. I tuoi risultati potrebbero variare.Questo tema mette i controlli in verticale per un look unico.Questo tema è stato creato con l'editor di temi.Questo non era una presentazione, quindi non possiamo eliminarla.Questa non era una presentazione, quindi non possiamo aggiornare l'impostazione.MiniaturaMiniatura (Pro)Navigazione delle miniatureTitoloTitolo:Per modificare questa diapositiva, fai click su "Ripristina" e poi su "Ritorna alle diapositive pubblicate"Attiva/disattiva larghezza pienaAttiva/disattiva il tipo di sovrimpressioneAttiva/disattiva la visibilita della tua diapositivaIn alto al centroIn alto a sinistraIn alto a destraTocca e scorriTour annullato con successoTour annullato senza successoEffetto di transizioneVelocità di transizioneTransizione automatica tra le diapositive.CestinoCestina diapositivaDiapositive cestinateDiapositive cestinateURLTogli la spunta se vuoi inserire il tuo CSS.Togli la spunta se vuoi inserire il tuo JavaScript.Si è verificato un errore non definitoAnnullaL'esclusiva funzionalità di "Ritaglio intelligente" assicura che le tue diapositive siano perfettamente ridimensionate.Scheda unsplash chiusaAggiorna Internet ExplorerAggiorna la chiave di licenzaAggiorna o attiva ora il tuo MetaSlider Pro per aggiungere un'opzione di data di inizio/fine alle tue diapositiveAggiorna l'anteprimaAggiorna l'immagine della diapositivaAggiorna le impostazioni di MetaSlider Pro.Aggiorna l'altezza predefinita per l'immagine di base. Questo sarà usato per il ritaglio dell'immagine di base e per le dimensioni della presentazione. Se la larghezza è impostata al 100%, l'altezza scalerà di conseguenza.Aggiorna le impostazioni predefinite utilizzate per la creazione di nuove presentazioni.Aggiorna la larghezza predefinita per l'immagine di base. Questa sarà usata per le dimensioni della presentazione e per il ritaglio dell'immagine di base.Aggiorna le impostazioni utilizzate per tutte le presentazioni sul tuo sito.Aggiornamento della diapositiva…Aggiornamento in corso...Aggiorna quiAggiorna oraAggiorna ora per costruire i tuoi temi personalizzati!Aggiorna ora per sbloccare questo tema!Aggiorna a ProCarica fileUsa MetaSlider per inserire presentazioni e visori nella tua paginaUtilizza i tasti delle frecce per passare alla diapositiva successiva.Usa il testo alternativo dell'immagineUsa il titolo dell'immagineVersione: v%sVerticaleVisualizza i dettagli della nostra informativa sulla privacyVisualizza le diapositive cestinateVisualizzazione di %s su %s presentazioniVisualizzazione di %s su %s presentazioni (%s caricate)Visualizzazione di 1 presentazioneVimeoLe diapositive di Vimeo visualizzeranno i tuoi video con riproduzione automatica, silenziamento, possibilità di nascondere i controlli e molto altro ancora.Vedi la documentazioneVisita metaslider.comVisita wordpress.orgI visitatori vedranno questo testo se passano il mouse sulla diapositiva dell'immagine. L'aggiunta del testo del titolo è utile ma non obbligatoria.Avvertenza:Attenzione: I dati dell'immagine non esistono. Ricarica l'immagine.Stiamo realizzando la nuova versione di MetaSlider. Puoi aiutarci condividendo con noi le informazioni di diagnostica in modo impersonale che non coinvolgono i tuoi dati sensibili?Stiamo ancora cercando le tue immagini. Attendi.Non abbiamo trovato nessuna immagine da importare.Manteniamo MetaSlider compatibile con le ultime versioni di WordPress.Abbiamo rimosso il tema selezionato perché non è stato trovato. La cartella è stata cancellata?Ci piacerebbe poterti inviare di tanto in tanto delle email con aggiornamenti importanti sulla sicurezza e le prossime caratteristiche. Vedi la nostra %s per maggiori informazioni.Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza pari o superiore a %spx.Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza inferiore a %spx.Se abilitata, questa impostazione nasconde le frecce su schermi di larghezza compresa tra %1$spx e %2$spx.Se attivata, questa impostazione nasconde la didascalia su schermi di larghezza uguali o maggiori di %spxSe attivata, questa impostazione nasconde la didascalia su schermi di larghezza compresa tra %1$spx e %2$spxSe abilitata, questa impostazione nasconde la navigazione su schermi di larghezza pari o superiore a %spx.Se abilitata, questa impostazione nasconde la navigazione su schermi di larghezza inferiore a %spx.Se abilitata, questa impostazione nasconde la navigazione su schermi di larghezza compresa tra %1$spx e %2$spx.Se attivata, questa impostazione nasconde la diapositiva su schermi di larghezza uguali o maggiori di %spxSe attivata, questa impostazione nasconde la diapositiva su schermi di larghezza compresa tra %1$spx e %2$spx.Quando le immagini mancano, dovrai aggiornare o cancellare manualmente la diapositiva dopo il completamento dell'importazione.Quando i visitatori fanno clic sulla tua diapositiva immagine, vengono indirizzati a questo URL.Mentre la larghezza e l'altezza definite sopra saranno utilizzate per il ritaglio (se abilitato) e le dimensioni di base della presentazione, si può anche impostare la presentazione per adattarsi al suo contenitore.Larghezza ampiaLarghezzaCon le diapositive URL esterne, ti sarà possibile caricare le immagini direttamente da fonti diverse da WordPress, come CDN o host di immagini.Con le diapositive video esterno, ti sarà possibile caricare i video direttamente da fonti diverse da WordPress.Con le diapositive a livelli puoi creare bellissimi ed eleganti livelli di elementi diversi.Con le diapositive per video locale puoi costruire bellissime presentazioni con i video della tua libreria dei media di WordPress.Con MetaSlider Pro è possibile programmare le diapositive. Puoi scegliere di mostrare le tue diapositive in date, giorni della settimana o orari specifici.Con le diapositive dei feed degli articoli, puoi creare presentazioni con i tuoi ultimi articoli, eventi o prodotti WooCommerce.Con le diapositive di Vimeo, puoi creare bellissime presentazioni con i tuoi video di Vimeo.Con le diapositive di YouTube, puoi creare bellissime presentazioni con i tuoi video di YouTube.Stai visualizzando delle diapositive che sono state cestinate e che verranno eliminate automaticamente tra %s giorni.Puoi creare i tuoi temi con il nostro editor di temiPuoi facilmente aggiungere un'immagine da una delle opzioni qui. Inoltre forniamo immagini gratuite dalla libreria Unsplash.Puoi tranquillamente abilitare questa impostazione. Nessuna delle tue presentazioni utilizza le librerie legacy.Attualmente non hai diapositive da visualizzare in anteprima. Se vuoi, possiamo importare alcune diapositive di immagini per te.Attualmente hai %s presentazioni che utilizzano librerie legacy.Attualmente hai %s presentazioni che utilizzano librerie legacy.Non ci sono ancora presentazioni. Fare clic %squi%s per creare una nuova presentazione.Hai %s presentazioni che possono essere esportate. Le informazioni su ogni presentazione vengono presentate di seguito.Non hai presentazioni da esportareNon hai presentazioni da importarePuoi utilizzare HTML quiInizia con un'immagine e poi può aggiungere testo, video, colori, animazioni, altre immagini e persino shortcode.YouTubeLe diapositive di YouTube visualizzeranno i tuoi video con riproduzione automatica, silenziamento, possibilità di nascondere i controlli e molto altro ancora.Le tue immagini devono essere esportate manualmente. Caricale sul nuovo sito web prima di importare queste presentazioni.Le tue impostazioni potrebbero non essere salvate correttamente a causa di una configurazione sul tuo server. %s è attualmente impostato su %s, ma noi raccomandiamo un'impostazione di 4000. Per favore vedi %s per maggiori informazioni. Il file php.ini viene caricato da qui: %sgalleriahttps://www.metaslider.comultimo aggiornamento: %sminimalista%s diapositiveinformativa sulla privacypxvisorepresentazionequesto articoloverticalevideovisualizza la licenzavisualizza originalesettimanelanguages/ml-slider-nl_NL-metaslider-admin-script.json000064400000066604151213255510017030 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nl_NL"},"MetaSlider":[""],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":[""],"Caption":["Onderschrift"],"New Window":["Nieuw venster"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Let op! Deze instellingen zijn alleen bedoelt voor voor ervaren ontwikkelaars. Bij twijfel aangevinkt laten"],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Titel"],"Created":[""],"Shortcode":[""],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Slide toevoegen"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Opslaan"],"Settings":["Instellingen"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Text Titel Afbeelding"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Alternatieve Afbeelding text"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Titel:"],"Select Slider:":["Slider Selecteren:"],"No slideshows found":["geen slideshows gevonden"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Afbeelding Slide"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Algemeen"],"SEO":[""],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Afbeelding"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Breedte"],"Slideshow width":["Slideshow breedte"],"px":[""],"Height":["Hoogte"],"Slideshow height":["Slideshow hoogte"],"Effect":[""],"Slide transition effect":["Slide overgangs effect"],"Random":["Willekeurig"],"Swirl":[""],"Rain":[""],"Straight":["Recht"],"Slice Down":[""],"Slice Up":[""],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Vervaag"],"Fold":["vouwen"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":[""],"Box Rain":[""],"Box Rain Reverse":[""],"Box Rain Grow":[""],"Box Rain Grow Reverse":[""],"Slide":[""],"Arrows":["Pijlen"],"Show the previous/next arrows":["Vorige/Volgende pijlen weergeven"],"Navigation":["Navigatie"],"Show the slide navigation bullets":["Slide Navigatiebalk weergeven"],"Hidden":["Verborgen"],"Dots":[""],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Geavanceerde Instellingen"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":[""],"Center align":["Uitlijnen midden"],"Center align the slideshow":["Slideshow in midden uitlijnen"],"Auto play":["Automatisch Afspelen"],"Transition between slides automatically":["Overgang tussen slides automatisch"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Slim uitsnijden garandeerd dat de slides optimaal worden uitgesneden, zodat deze in het juiste formaat worden weergegeven"],"Carousel mode":["Carousel modus"],"Display multiple slides at once. Slideshow output will be 100% wide.":[""],"Carousel margin":[""],"Pixel margin between slides in carousel.":[""],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Stel de volgorde van de slides in op Willekeurig"],"Hover pause":["Pause bij zweven"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Pauseer de slideshow zodra de cursor over de slider hangt en hervat de slideshow wanneer deze wordt verwijdert "],"Reverse":["Omkeren"],"Reverse the animation direction":["Keer de animatie richting om"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Slide Vertraging"],"How long to display each slide, in milliseconds":["Weergave tijd per slide, in milliseconden"],"Animation speed":["Animatie snelheid"],"Set the speed of animations, in milliseconds":["Animatie snelheid instellen, in milliseconden"],"Number of slices":[""],"Number of squares":[""],"Slide direction":["Slide Richting"],"Select the sliding direction":["Selecteer slide richting"],"Horizontal":["Horizontaal"],"Vertical":["Verticaal"],"Easing":["Versoepelen"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Vorige text"],"Set the text for the 'previous' direction item":["Stel hier uw text in om naar de vorige afbeelding te gaan, bijvoorbeeld: Vorige Afbeelding"],"Next text":["Volgende text"],"Set the text for the 'next' direction item":["Stel hier uw text in om naar de volgende afbeelding te gaan, bijvoorbeeld: Volgende Afbeelding"],"Square delay":[""],"Delay between squares in ms":[""],"Opacity":["(on)Doorzichtigheid"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Onderschrift snelheid"],"Set the fade in speed of the caption":["Stel hier de snelheid in waarmee het onderschrift vervaagt"],"Developer options":["Ontwikkelaar opties"],"CSS classes":[""],"Specify any custom CSS Classes you would like to be added to the slider wrapper":[""],"Print CSS":[""],"Uncheck this is you would like to include your own CSS":["Vink deze uit wanneer je een eigen CSS wilt invoegen"],"Print JS":[""],"Uncheck this is you would like to include your own Javascript":["Vink deze uit wanneer je een eigen javascript wilt invoegen"],"No conflict mode":[""],"Delay adding the flexslider class to the slideshow":[""],"Delete slideshow":[""],"Select slideshow to insert into post":["Selecteer een slideshow om in uw bericht te plaatsen"],"Add slideshow":[""],"Choose slideshow":["Slideshow kiezen"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Documentatie"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Zeker weten?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-de_DE.po000064400000164152151213255510011711 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider 3.1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:56-0600\n"
"Last-Translator: \n"
"Language-Team: Ov3rfly <https://profiles.wordpress.org/Ov3rfly>\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 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "Beschriftung"

#: admin/Pages.php:75
msgid "New Window"
msgstr "Neues Fenster"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr ""

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr ""
"Achtung: Diese Einstellung ist nur für fortgeschrittene Entwickler. Wenn Sie "
"unsicher sind, lassen Sie es sein."

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "Titel"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "Shortcode"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "Dia hinzufügen"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "Speichern"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "Einstellungen"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr "Ja"

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr "Nein"

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr "Zuschneideposition"

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr "Oben links"

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr "Oben mittig"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr "Oben rechts"

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr "Mittig links"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr "Mittig mittig"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr "Mittig rechts"

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr "Unten links"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr "Unten mittig"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr "Unten rechts"

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "Bild Titel"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "Bild Alternativtext"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "Titel:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "Diashow wählen:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "Keine Diashows gefunden"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "Bild"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "Allgemein"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr "Zuschneiden"

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "Bild"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "Breite"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "Diashow Breite"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "px"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "Höhe"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "Diashow Höhe"

#: ml-slider.php:1688
msgid "Effect"
msgstr "Effekt"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "Diashow Übergangseffekt"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "Zufällig"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "Wirbel"

#: ml-slider.php:1702
msgid "Rain"
msgstr "Regen"

#: ml-slider.php:1706
msgid "Straight"
msgstr "Gerade"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "Teilen nach oben"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "Überblenden"

#: ml-slider.php:1734
msgid "Fold"
msgstr "Falten"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "Zufällige Kästchen"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "Kästchen-Regen"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "Kästchen-Regen umgekehrt"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr "Kästchen-Regen wachsend umgekehrt"

#: ml-slider.php:1766
msgid "Slide"
msgstr "Gleiten"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "Pfeile"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "Zeige die zurück/weiter Pfeile"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "Navigation"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "Punkte für die Navigation anzeigen"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "Versteckt"

#: ml-slider.php:1795
msgid "Dots"
msgstr "Punkte"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "Diashow an die Grösse des Containers anpassen"

#: ml-slider.php:1888
msgid "Center align"
msgstr "Mittig ausrichten"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "Diashow mittig ausrichten"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "Automatische Wiedergabe"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "Überblendung zwischen Dias automatisch"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr "Bild zuschneiden"

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr ""

#: ml-slider.php:1926
msgid "Standard"
msgstr "Standard"

#: ml-slider.php:1933
msgid "Disabled"
msgstr "Aus"

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr ""

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"Smart Crop sorgt dafür, dass Ihre Dias in einem Verhältnis zugeschnitten "
"werden, das eine konsistente Größe für die Diashow ergibt"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "Carousel Modus"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr "Zeige mehrere Dias gleichzeitig an. Die Diashow wird 100% breit sein."

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "Carousel Abstand"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "Pixelabstand zwischen den Dias im Carousel."

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "Zufällige Reihenfolge der Dias"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "Pause bei 'Hover'"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr ""
"Diashow bei Bewegen der Maus über das Bild anhalten, sobald die Maus das "
"Bild verlässt geht die Animation weiter."

#: ml-slider.php:2022
msgid "Reverse"
msgstr "Rückwärts"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "Richtung der Animation umkehren"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "Anzeigedauer"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "Wie lange jedes Dia angezeigt wird, in Millisekunden"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "Animationsgeschwindigkeit"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "Stellen Sie die Geschwindigkeit der Animationen ein, in Millisekunden"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "Anzahl der Teile"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "Anzahl der Quadrate"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "Bewegungsrichtung"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "Wählen Sie die Bewegungsrichtung der Diashow"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "Horizontal"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "Vertikal"

#: ml-slider.php:2159
msgid "Easing"
msgstr "Übergang"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "'Zurück' Text"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "Text für die 'Zurück' Richtungsangabe, Beispiel: Vorheriges Bild"

#: ml-slider.php:2184
msgid "Next text"
msgstr "'Weiter' Text"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "Text für die 'Weiter' Richtungsangabe, Beispiel: Nächstes Bild"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "Pause zwischen Quadraten"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "Pause zwischen Quadraten in ms"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "Durchsichtigkeit"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "Geschwindigkeit der Beschriftung"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr ""
"Stellen Sie die Geschwindigkeit des Einblendens für die Beschriftung ein"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "Entwickler Optionen"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS Klassen"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr ""
"Geben Sie benutzerdefinierte CSS Klassen an, die zum Diashow-Wrapper "
"hinzugefügt werden sollen"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "CSS einfügen"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "Deaktivieren Sie dies wenn Sie eigenes CSS verwenden möchten"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "JS einfügen"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "Deaktivieren Sie dies wenn Sie eigene Javascripts verwenden möchten"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "No Conflict Modus"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr "Das Hinzufügen der Flexslider Class zur Diashow verzögern"

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "Wählen Sie eine Diashow zum Einfügen aus"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "Diashow auswählen"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr "Diashow einfügen"

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "Dokumentation"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "Sind Sie sicher?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-pl_PL.mo000064400000010173151213255520011746 0ustar00��?Yp	q{�
�	���
�
�Z�@M
hv}���
��/��
�
�
�	
$5G
O	]gpu|����$�,�*'.R�	������O�'	0	6	=	6A	=x	�	�	�	��	���	��	���
p!
�����	�
�
���6
R

[
	f
	p
z
�
"�
�
�
�
�

�
	$,GN^x*�$�%�
"17IYZt�	���7�>%d
lw9&:!5*(8607)+-/"42?$.
 '#
,>1<%3=;	Add SlideAdvanced SettingsAnimation speedAre you sure?Auto playCSS classesCaptionCaption speedCarousel modeCaution: This setting is for advanced developers only. If you're unsure, leave it checked.Center alignCenter align the slideshowDocumentationEasingEffectFadeFoldHeightHorizontalHover pauseHow long to display each slide, in millisecondsImageMetaSliderNavigationNew WindowNext textNoNo slideshows foundNumber of slicesNumber of squaresOpacityPrevious textPrint CSSPrint JSRainRandomReverseReverse the animation directionSaveSelect Slider:Select the sliding directionSet the fade in speed of the captionSet the speed of animations, in millisecondsSet the text for the 'next' direction itemSet the text for the 'previous' direction itemSettingsShortcodeSlice UpSlideSlide delaySlide directionSlide transition effectSpecify any custom CSS Classes you would like to be added to the slider wrapperStraightSwirlTitle:URLUncheck this is you would like to include your own CSSUncheck this is you would like to include your own JavascriptVerticalWidthYesProject-Id-Version: metaslider
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project
PO-Revision-Date: 2023-07-03 13:58-0600
Last-Translator: Kamil <dinal.shirts@gmail.com>
Language-Team: 
Language: ml
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 3.2.2
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e
X-Poedit-Basepath: .
X-Poedit-SearchPath-0: .
X-Poedit-SearchPath-1: ..
Dodaj slajdUstawienia zaawansowanePrędkośc animacjiNa pewno?Automatyczny startKlasy CSSPodpisPrędkośc pojawiania opisuTryb karuzeliUwaga: Ta opcja jest tylko dla zaawansowanych użytkowników. Jeśli nie jesteś pewny co robisz, nie rób tego.WyśrodkujWyśrodkuj pokaz slajdówDokumentacjaŁagodzenieEfektZanikanieSkładanieWysokośćPoziomoZatrzymaj podczas najechaniaJak długo ma być wyświetlany slajd, w milisekundachZdjęcieMetaSliderNawigacjaNowe oknoTekst "Nastepny"NieNie znaleziono składników pokazuIlość cięćIlość kwadracikówPrzeźroczystośćTekst "Poprzedni"Wyświetl CSSWyświetl JSDeszczLosowoOdwrócOdwróć kierunek animacjiZapiszZaznacz slajderZaznacz kierunek slajdówUstaw czas zanikania podpisuUstaw szybkość animacji, w milisekundachUstaw tekst dla "następnego" slajduUstaw tekst dla "poprzedniego" slajduUstawieniaKod skórtuPaski od górySlajdCzas opóźnieniaKierunek slajduEfekt przenikania slajdówWpisz własne klasy CSS, które mają zostać dołączone do kontenera głównego slajderaSekwensWirowanieTytuł:URLOdznacz jeśli chcesz dołączyć swój własny kod CSSOdznacz jeśli chcesz dołączyć swój własny kod JavascriptPionowoSzerokoścTaklanguages/ml-slider-zh_CN.po000064400000163063151213255520011753 0ustar00msgid ""
msgstr ""
"Project-Id-Version: metaslider-zh_CN\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n"
"POT-Creation-Date: 2023-07-03T15:28:28+00:00\n"
"PO-Revision-Date: 2023-07-03 13:59-0600\n"
"Last-Translator: 断青丝 <181138991@qq.com>\n"
"Language-Team: mamsds <mamsds@live.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 3.2.2\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ..\n"

#. Plugin Name of the plugin
#. Author of the plugin
#: admin/views/pages/upgrade.php:10 admin/views/pages/upgrade.php:11
msgid "MetaSlider"
msgstr "MetaSlider"

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.metaslider.com"
msgstr ""

#. Description of the plugin
msgid ""
"Easy to use slideshow plugin. Create SEO optimised responsive slideshows "
"with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides."
msgstr ""

#: admin/lib/callout.php:17
msgid ""
"Hey there! We just started working on a brand new gallery extension. <a "
"href=\"%s\">Check it out</a> and let us know what you think!"
msgstr ""

#: admin/Notices.php:102
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Like MetaSlider? Please help us by giving a positive review at WordPress.org"
msgstr ""

#: admin/Notices.php:112
msgid ""
"Spice up your site with animated layers and video slides with MetaSlider Pro"
msgstr ""

#: admin/Notices.php:123
msgid ""
"Increase your revenue and conversion with video slides and many more "
"MetaSlider Pro features"
msgstr ""

#: admin/Notices.php:134
msgid ""
"Can you translate? Want to improve MetaSlider for speakers of your language?"
msgstr ""

#: admin/Notices.php:180
msgctxt ""
"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black "
"Friday\" is the name of an event in the United States"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"November 30th!"
msgstr ""

#: admin/Notices.php:189
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"December 25th!"
msgstr ""

#: admin/Notices.php:198
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"January 14th!"
msgstr ""

#: admin/Notices.php:207
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"April 30th!"
msgstr ""

#: admin/Notices.php:216
msgctxt "Keep the phrase \"MetaSlider Add-on Pack\" when possible"
msgid ""
"Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until "
"July 31st!"
msgstr ""

#: admin/Notices.php:436
msgid "weeks"
msgstr ""

#: admin/Notices.php:455
msgid "Let's Start &rarr;"
msgstr ""

#: admin/Notices.php:456
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Review MetaSlider &rarr;"
msgstr ""

#: admin/Notices.php:457
msgid "Find out more &rarr;"
msgstr ""

#: admin/Notices.php:458
msgid "Get MetaSlider Pro &rarr;"
msgstr ""

#: admin/Notices.php:459
msgid "Sign up &rarr;"
msgstr ""

#: admin/Notices.php:460
msgid "Go there &rarr;"
msgstr ""

#: admin/Notices.php:462
msgid "Read more"
msgstr ""

#: admin/Notices.php:476 admin/support/Analytics.php:66
#: inc/slide/metaslide.class.php:134 inc/slide/metaslide.image.class.php:123
#: inc/slide/metaslide.image.class.php:227 ml-slider.php:727 ml-slider.php:809
#: ml-slider.php:921 ml-slider.php:2894 ml-slider.php:2935
msgid "The security check failed. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:484 inc/slide/metaslide.class.php:142
#: inc/slide/metaslide.image.class.php:131
#: inc/slide/metaslide.image.class.php:150
#: inc/slide/metaslide.image.class.php:235 ml-slider.php:735 ml-slider.php:817
#: ml-slider.php:929 ml-slider.php:2902 ml-slider.php:2943
msgid "Access denied"
msgstr ""

#: admin/Notices.php:492 inc/slide/metaslide.class.php:151
#: inc/slide/metaslide.image.class.php:140
#: inc/slide/metaslide.image.class.php:244 ml-slider.php:744 ml-slider.php:826
#: ml-slider.php:938 ml-slider.php:2911 ml-slider.php:2952
msgid "Bad request"
msgstr ""

#: admin/Notices.php:500
msgid "This item does not exist. Please refresh the page and try again."
msgstr ""

#: admin/Notices.php:513
msgid "The option was successfully updated"
msgstr ""

#: admin/Notices.php:587
msgid "The requested data does not exist."
msgstr ""

#: admin/Notices.php:612
msgid "The attempt to update the option failed."
msgstr ""

#: admin/Pages.php:73
msgid "URL"
msgstr "URL"

#: admin/Pages.php:74 admin/assets/dist/js/app.js:2
msgid "Caption"
msgstr "标题"

#: admin/Pages.php:75
msgid "New Window"
msgstr "新窗口"

#: admin/Pages.php:76
msgid "Please confirm that you would like to delete this slideshow."
msgstr ""

#: admin/Pages.php:77
msgid "Undo"
msgstr ""

#: admin/Pages.php:78
msgid "Slide restored"
msgstr ""

#: admin/Pages.php:79
msgid "Slide deleted"
msgstr ""

#: admin/Pages.php:80 admin/assets/dist/js/app.js:2
#: admin/assets/js/app/globals.js:105
msgid "Success"
msgstr ""

#: admin/Pages.php:81
msgid "Item was copied to your clipboard"
msgstr ""

#: admin/Pages.php:82
msgid "Press to undo"
msgstr ""

#: admin/Pages.php:84
msgid "Select replacement image"
msgstr "选择替代图像"

#: admin/Pages.php:92
msgid ""
"Caution: This setting is for advanced developers only. If you're unsure, "
"leave it checked."
msgstr "注意:此设置仅适用于高级开发者。如果你不确定,请将他保持在未勾选的状态"

#: admin/routes/api.php:131
msgid "You do not have access to this resource."
msgstr ""

#: admin/routes/api.php:373
msgid "The request format was not valid."
msgstr ""

#: admin/routes/api.php:381 admin/routes/api.php:503
msgid "This slideshow is no longer available."
msgstr ""

#: admin/routes/api.php:468
msgid "Nothing to import."
msgstr ""

#: admin/routes/api.php:510
msgid "This was not a slideshow, so we cannot delete it."
msgstr ""

#: admin/routes/api.php:653
msgid "This was not a slideshow, so we cannot update the setting."
msgstr ""

#: admin/routes/api.php:762
msgid "The title cannot be empty."
msgstr ""

#: admin/routes/api.php:766
msgid "The field (%s) cannot be empty"
msgstr ""

#: admin/slideshows/Image.php:145
msgid "We could not find any images to import."
msgstr ""

#: admin/slideshows/Settings.php:59
msgid "New Slideshow"
msgstr ""

#: admin/slideshows/Settings.php:81 inc/slider/metaslider.class.php:119
msgid "Previous"
msgstr ""

#: admin/slideshows/Settings.php:82 inc/slider/metaslider.class.php:120
msgid "Next"
msgstr ""

#: admin/slideshows/Themes.php:60
msgid "No themes found."
msgstr ""

#: admin/slideshows/Themes.php:249
msgid ""
"We removed your selected theme as it could not be found. Was the folder "
"deleted?"
msgstr ""

#: admin/Table.php:46
msgid "Published"
msgstr ""

#: admin/Table.php:50 admin/Table.php:78 admin/Table.php:302
msgid "Trash"
msgstr ""

#: admin/Table.php:60 admin/views/pages/parts/toolbar.php:43
#: admin/assets/dist/js/app.js:2
msgid "Preview"
msgstr ""

#: admin/Table.php:61 admin/assets/dist/js/app.js:2
msgid "Title"
msgstr "标题"

#: admin/Table.php:62
msgid "Created"
msgstr ""

#: admin/Table.php:63
msgid "Shortcode"
msgstr "短代码"

#: admin/Table.php:73 admin/Table.php:287 inc/slide/metaslide.class.php:387
msgid "Restore"
msgstr ""

#: admin/Table.php:74 admin/Table.php:288 inc/slide/metaslide.class.php:397
msgid "Delete Permanently"
msgstr ""

#: admin/Table.php:301
msgid "Edit"
msgstr ""

#: admin/views/notices/header-notice.php:8
msgid "Logo"
msgstr ""

#: admin/views/notices/header-notice.php:21
msgid "Dismiss"
msgstr ""

#: admin/views/pages/dashboard.php:8 admin/assets/dist/js/app.js:2
msgid "Slideshows"
msgstr ""

#: admin/views/pages/dashboard.php:8
msgid "Add New"
msgstr ""

#: admin/views/pages/dashboard.php:36
msgid "Search"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:4
msgid "Browser upgrade required"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid ""
"It looks like you are using %s. While MetaSlider does support %s on the "
"frontend of the website where users see your slideshows, some of the tools "
"we provide back here require a modern browser."
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "Microsoft Internet Explorer 11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:8
msgid "IE11"
msgstr ""

#: admin/views/pages/parts/ie-warning.php:12
msgid "Update Internet Explorer"
msgstr ""

#: admin/views/pages/parts/shortcode.php:11
msgid "How to Use"
msgstr ""

#: admin/views/pages/parts/shortcode.php:15
msgid "Toggle title"
msgstr ""

#: admin/views/pages/parts/shortcode.php:21
msgid ""
"To display your slideshow, add the following shortcode (in orange) to your "
"page. If adding the slideshow to your theme files, additionally include the "
"surrounding PHP code (in gray).&lrm;"
msgstr ""

#: admin/views/pages/parts/shortcode.php:26
msgid "Click shortcode to copy"
msgstr ""

#: admin/views/pages/parts/shortcode.php:27
msgid "Copy all code"
msgstr ""

#: admin/views/pages/parts/shortcode.php:31 admin/assets/dist/js/app.js:2
msgid "Copy all"
msgstr ""

#: admin/views/pages/parts/toolbar.php:28
msgid "Add Slide"
msgstr "添加幻灯片"

#: admin/views/pages/parts/toolbar.php:34
msgid "Save & open preview"
msgstr ""

#: admin/views/pages/parts/toolbar.php:34
msgctxt "This is a keyboard shortcut."
msgid "(alt + p)"
msgstr ""

#: admin/views/pages/parts/toolbar.php:59
msgid "Add a new slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:63
msgid "New"
msgstr ""

#: admin/views/pages/parts/toolbar.php:68
msgid "Duplicate this slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:80
msgid "Duplicate"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "Add custom CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:85
msgid "press to learn more"
msgstr ""

#: admin/views/pages/parts/toolbar.php:89
msgid "Add CSS"
msgstr ""

#: admin/views/pages/parts/toolbar.php:99
msgid "Save slideshow"
msgstr ""

#: admin/views/pages/parts/toolbar.php:113 admin/assets/dist/js/app.js:2
msgid "Save"
msgstr "保存"

#: admin/views/pages/settings.php:42
msgid "Settings"
msgstr "设置"

#: admin/views/pages/settings.php:58 admin/assets/dist/js/app.js:2
msgid "Help Center"
msgstr ""

#: admin/views/pages/settings.php:74 admin/assets/dist/js/app.js:2
msgid "Import"
msgstr ""

#: admin/views/pages/settings.php:89 admin/assets/dist/js/app.js:2
msgid "Export"
msgstr ""

#: admin/views/pages/start.php:6
msgid "Thanks for using MetaSlider, the WordPress slideshow plugin"
msgstr ""

#: admin/views/pages/start.php:12
msgid "Create a slideshow with your images"
msgstr ""

#: admin/views/pages/start.php:13
msgid "Choose your own images to start a new slideshow."
msgstr ""

#: admin/views/pages/start.php:23
msgid "Open Media Library"
msgstr ""

#: admin/views/pages/start.php:38
msgid "Create a slideshow with sample images"
msgstr ""

#: admin/views/pages/start.php:39
msgid ""
"Choose one of our demos with sample images, or a blank slideshow with no "
"images."
msgstr ""

#: admin/views/pages/start.php:44
msgid "Blank Slideshow"
msgstr ""

#: admin/views/pages/start.php:45
msgid "Image Slideshow"
msgstr ""

#: admin/views/pages/start.php:46
msgid "Carousel Slideshow"
msgstr ""

#: admin/views/pages/start.php:47
msgid "Carousel Slideshow with Captions"
msgstr ""

#: admin/views/pages/start.php:49
msgid "Create a Slideshow"
msgstr ""

#: admin/views/pages/upgrade.php:9
msgid "Comparison Chart"
msgstr ""

#: admin/views/pages/upgrade.php:10
msgid "free"
msgstr ""

#: admin/views/pages/upgrade.php:11
msgid "pro"
msgstr ""

#: admin/views/pages/upgrade.php:17 admin/views/pages/upgrade.php:109
msgid "Installed"
msgstr ""

#: admin/views/pages/upgrade.php:18 admin/views/pages/upgrade.php:110
msgid "Upgrade now"
msgstr ""

#: admin/views/pages/upgrade.php:22
msgid "Create unlimited slideshows"
msgstr ""

#: admin/views/pages/upgrade.php:23
msgid "Create and manage as many slideshows as you need."
msgstr ""

#: admin/views/pages/upgrade.php:24 admin/views/pages/upgrade.php:25
#: admin/views/pages/upgrade.php:31 admin/views/pages/upgrade.php:32
#: admin/views/pages/upgrade.php:38 admin/views/pages/upgrade.php:39
#: admin/views/pages/upgrade.php:45 admin/views/pages/upgrade.php:46
#: admin/views/pages/upgrade.php:53 admin/views/pages/upgrade.php:60
#: admin/views/pages/upgrade.php:67 admin/views/pages/upgrade.php:74
#: admin/views/pages/upgrade.php:81 admin/views/pages/upgrade.php:88
#: admin/views/pages/upgrade.php:96 admin/views/pages/upgrade.php:103
msgid "Yes"
msgstr ""

#: admin/views/pages/upgrade.php:29
msgid "Multiple slideshow types"
msgstr ""

#: admin/views/pages/upgrade.php:30
msgctxt "\"FlexSlider\" and \"Nivo Slider\" are plugin names."
msgid "Including FlexSlider, Nivo Slider and we will soon be adding more."
msgstr ""

#: admin/views/pages/upgrade.php:36
msgid "Regular updates"
msgstr ""

#: admin/views/pages/upgrade.php:37
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid ""
"Our word to keep MetaSlider compatible with the latest versions of WordPress."
msgstr ""

#: admin/views/pages/upgrade.php:43
msgid "Intelligent image cropping"
msgstr ""

#: admin/views/pages/upgrade.php:44
msgctxt "Keep the branding \"Smart Crop\" together when possible"
msgid ""
"Unique Smart Crop functionality ensures your slides are perfectly resized."
msgstr ""

#: admin/views/pages/upgrade.php:50
msgid "Thumbnail navigation"
msgstr ""

#: admin/views/pages/upgrade.php:51
msgid "Easily allow users to navigate your slideshows by thumbnails."
msgstr ""

#: admin/views/pages/upgrade.php:52 admin/views/pages/upgrade.php:59
#: admin/views/pages/upgrade.php:66 admin/views/pages/upgrade.php:73
#: admin/views/pages/upgrade.php:80 admin/views/pages/upgrade.php:87
#: admin/views/pages/upgrade.php:95 admin/views/pages/upgrade.php:102
msgid "No"
msgstr ""

#: admin/views/pages/upgrade.php:57
msgid "Add video slides"
msgstr ""

#: admin/views/pages/upgrade.php:58
msgctxt "\"YouTube\" and \"Vimeo\" are brand names."
msgid "Easily include responsive high definition YouTube and Vimeo videos."
msgstr ""

#: admin/views/pages/upgrade.php:64
msgid "HTML overlay slides"
msgstr ""

#: admin/views/pages/upgrade.php:65
msgid "Create completely customized HTML slides using the inline editor."
msgstr ""

#: admin/views/pages/upgrade.php:71
msgid "Add slide layers"
msgstr ""

#: admin/views/pages/upgrade.php:72
msgid "Add layers to your slides with over 50 available transition effects."
msgstr ""

#: admin/views/pages/upgrade.php:78
msgid "Post feed slides"
msgstr ""

#: admin/views/pages/upgrade.php:79
msgid "Easily build slides based on your WordPress posts."
msgstr ""

#: admin/views/pages/upgrade.php:85
msgid "Schedule your slides"
msgstr ""

#: admin/views/pages/upgrade.php:86
msgid "Add a start/end date to individual slides."
msgstr ""

#: admin/views/pages/upgrade.php:93
msgid "Toggle your slide's visibility"
msgstr ""

#: admin/views/pages/upgrade.php:94
msgid "Allows you to hide any slide, without having to delete them."
msgstr ""

#: admin/views/pages/upgrade.php:100
msgid "Premium support"
msgstr ""

#: admin/views/pages/upgrade.php:101
msgid "Have your specific queries addressed directly by our experts"
msgstr ""

#: admin/views/slides/tabs/crop.php:5
msgid "Crop Position"
msgstr "裁剪位置"

#: admin/views/slides/tabs/crop.php:9
msgid "Top Left"
msgstr "顶部左对齐"

#: admin/views/slides/tabs/crop.php:10
msgid "Top Center"
msgstr "顶部居中"

#: admin/views/slides/tabs/crop.php:11
msgid "Top Right"
msgstr "顶部右对齐"

#: admin/views/slides/tabs/crop.php:12
msgid "Center Left"
msgstr "水平左对齐"

#: admin/views/slides/tabs/crop.php:13
msgid "Center Center"
msgstr "水平居中"

#: admin/views/slides/tabs/crop.php:14
msgid "Center Right"
msgstr "水平右对齐"

#: admin/views/slides/tabs/crop.php:15
msgid "Bottom Left"
msgstr "底部左对齐"

#: admin/views/slides/tabs/crop.php:16
msgid "Bottom Center"
msgstr "底部居中"

#: admin/views/slides/tabs/crop.php:17
msgid "Bottom Right"
msgstr "底部右对齐"

#: admin/views/slides/tabs/general.php:34
msgid "Open in a new window"
msgstr ""

#: admin/views/slides/tabs/schedule.php:6
msgid ""
"Update or activate your MetaSlider Pro now to add a start/end date option to "
"your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:8
msgid "Get MetaSlider Pro now to add a start/end date option to your slides"
msgstr ""

#: admin/views/slides/tabs/schedule.php:9
msgid "Get it now!"
msgstr ""

#: admin/views/slides/tabs/seo.php:5
msgid "Image Title Text"
msgstr "图片的标题文字"

#: admin/views/slides/tabs/seo.php:7
msgid "Enable this to inherit the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:8
msgid "Use the image title"
msgstr ""

#: admin/views/slides/tabs/seo.php:15
msgid "Image Alt Text"
msgstr "图片的替代文字(alt)"

#: admin/views/slides/tabs/seo.php:17
msgid "Enable this to inherit the image alt text"
msgstr ""

#: admin/views/slides/tabs/seo.php:18
msgid "Use the image alt text"
msgstr ""

#: inc/metaslider.systemcheck.class.php:91
msgid ""
"Your settings might not be saving properly due to a configuration on your "
"server. %s is currently set to %s, but we recommend a setting of 4000. "
"Please see %s for more information. The php.ini file is being loaded from "
"here: %s"
msgstr ""

#: inc/metaslider.systemcheck.class.php:94
msgid "this article"
msgstr ""

#: inc/metaslider.systemcheck.class.php:208
msgid "Warning:"
msgstr ""

#: inc/metaslider.widget.class.php:115
msgid "Title:"
msgstr "标题:"

#: inc/metaslider.widget.class.php:118
msgid "Select Slider:"
msgstr "选择幻灯片:"

#: inc/metaslider.widget.class.php:128 ml-slider.php:2432
#: admin/assets/dist/js/app.js:2
msgid "No slideshows found"
msgstr "没有幻灯片"

#: inc/slide/metaslide.class.php:94
msgid "The requested image does not exist. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:112
msgid "The image was successfully updated."
msgstr ""

#: inc/slide/metaslide.class.php:120
msgid "There was an error updating the image. Please try again"
msgstr ""

#: inc/slide/metaslide.class.php:302
msgid "There was an error while updating the database. Please try again."
msgstr ""

#: inc/slide/metaslide.class.php:377
msgid "Trash slide"
msgstr ""

#: inc/slide/metaslide.class.php:409 inc/slide/metaslide.image.class.php:343
msgid "Update slide image"
msgstr ""

#: inc/slide/metaslide.image.class.php:85
msgid "Failed to add slide. Slide is not an image."
msgstr ""

#: inc/slide/metaslide.image.class.php:87
msgid "This isn't an accepted image. Please try again."
msgstr ""

#: inc/slide/metaslide.image.class.php:317
msgid "Image Slide"
msgstr "图像幻灯片"

#: inc/slide/metaslide.image.class.php:397
msgid "Warning: The image data does not exist. Please re-upload the image."
msgstr ""

#: inc/slide/metaslide.image.class.php:408
msgid "General"
msgstr "通用"

#: inc/slide/metaslide.image.class.php:412
msgid "SEO"
msgstr "SEO"

#: inc/slide/metaslide.image.class.php:429
msgid "Crop"
msgstr "剪裁"

#: inc/slide/metaslide.image.class.php:441
msgid "Schedule"
msgstr ""

#: ml-slider.php:247
msgid ""
"MetaSlider Pro is installed but is out of date. You may update it %shere%s. "
"Learn more about this notice %shere%s"
msgstr ""

#: ml-slider.php:460
msgid "Home"
msgstr ""

#: ml-slider.php:461
msgid "Quick Start"
msgstr ""

#: ml-slider.php:462
msgid "Settings & Help"
msgstr ""

#: ml-slider.php:465
msgid "Upgrade to Pro"
msgstr ""

#: ml-slider.php:588
msgid "Image"
msgstr "图像"

#: ml-slider.php:589
msgid "Add to slideshow"
msgstr ""

#: ml-slider.php:629
msgid "Post Feed"
msgstr ""

#: ml-slider.php:630
msgid "Vimeo"
msgstr ""

#: ml-slider.php:631
msgid "YouTube"
msgstr ""

#: ml-slider.php:632
msgid "Layer Slide"
msgstr ""

#: ml-slider.php:633
msgid "External URL"
msgstr ""

#: ml-slider.php:634
msgid "Local Video"
msgstr ""

#: ml-slider.php:759
msgid "The slide was successfully restored"
msgstr ""

#: ml-slider.php:782
msgid "The attempt to restore the slide failed."
msgstr ""

#: ml-slider.php:841
msgid "The slide was successfully trashed"
msgstr ""

#: ml-slider.php:953
msgid "The slide was permanently deleted"
msgstr ""

#: ml-slider.php:1220
msgid "Get MetaSlider Pro today!"
msgstr ""

#: ml-slider.php:1221
msgid "Learn More"
msgstr ""

#: ml-slider.php:1576
msgid "Trashed Slides"
msgstr ""

#: ml-slider.php:1619
msgid ""
"You are viewing slides that have been trashed, which will be automatically "
"deleted in %s days."
msgstr ""

#: ml-slider.php:1634
msgid "Return to Published Slides"
msgstr ""

#: ml-slider.php:1666 ml-slider.php:2108
msgid "Width"
msgstr "宽度"

#: ml-slider.php:1668 admin/assets/js/gutenberg/components/block-edit.js:57
#: admin/assets/js/gutenberg/components/block-edit.js:82
msgid "Slideshow width"
msgstr "幻灯片宽度"

#: ml-slider.php:1669 ml-slider.php:1682 ml-slider.php:1978
msgid "px"
msgstr "像素"

#: ml-slider.php:1679 ml-slider.php:2124
msgid "Height"
msgstr "高度"

#: ml-slider.php:1681
msgid "Slideshow height"
msgstr "幻灯片标高度"

#: ml-slider.php:1688
msgid "Effect"
msgstr "效果"

#: ml-slider.php:1690
msgid "Slide transition effect"
msgstr "幻灯片过渡效果"

#: ml-slider.php:1694 ml-slider.php:1996
msgid "Random"
msgstr "随机"

#: ml-slider.php:1698
msgid "Swirl"
msgstr "漩涡"

#: ml-slider.php:1702
msgid "Rain"
msgstr "雨"

#: ml-slider.php:1706
msgid "Straight"
msgstr "直"

#: ml-slider.php:1710
msgid "Slice Down"
msgstr ""

#: ml-slider.php:1714
msgid "Slice Up"
msgstr "切片"

#: ml-slider.php:1718
msgid "Slice Up Left"
msgstr ""

#: ml-slider.php:1722
msgid "Slide Up Down"
msgstr ""

#: ml-slider.php:1726
msgid "Slice Up Down Left"
msgstr ""

#: ml-slider.php:1730
msgid "Fade"
msgstr "渐隐"

#: ml-slider.php:1734
msgid "Fold"
msgstr "折叠"

#: ml-slider.php:1738
msgid "Slide in Right"
msgstr ""

#: ml-slider.php:1742
msgid "Slide in Left"
msgstr ""

#: ml-slider.php:1746
msgid "Box Random"
msgstr "随机"

#: ml-slider.php:1750
msgid "Box Rain"
msgstr "箱式"

#: ml-slider.php:1754
msgid "Box Rain Reverse"
msgstr "箱式"

#: ml-slider.php:1758
msgid "Box Rain Grow"
msgstr ""

#: ml-slider.php:1762
msgid "Box Rain Grow Reverse"
msgstr ""

#: ml-slider.php:1766
msgid "Slide"
msgstr "滑动"

#: ml-slider.php:1773
msgid "Arrows"
msgstr "箭头"

#: ml-slider.php:1778
msgid "Show the previous/next arrows"
msgstr "显示 向后/向前 箭头"

#: ml-slider.php:1786
msgid "Navigation"
msgstr "导航"

#: ml-slider.php:1789
msgid "Show the slide navigation bullets"
msgstr "显示幻灯片导航的小圆点"

#: ml-slider.php:1794
msgid "Hidden"
msgstr "隐藏"

#: ml-slider.php:1795
msgid "Dots"
msgstr "点"

#: ml-slider.php:1797
msgid "Thumbnail"
msgstr ""

#: ml-slider.php:1801
msgid "Filmstrip"
msgstr ""

#: ml-slider.php:1831
msgid "View trashed slides"
msgstr ""

#: ml-slider.php:1865
msgid "Click to toggle"
msgstr ""

#: ml-slider.php:1866
msgid "Advanced Settings"
msgstr "高级设置"

#: ml-slider.php:1875
msgid "100% width"
msgstr ""

#: ml-slider.php:1880
msgid "Stretch the slideshow output to fill it's parent container"
msgstr "拉伸幻灯片以填充其父容器"

#: ml-slider.php:1888
msgid "Center align"
msgstr "居中对齐"

#: ml-slider.php:1893
msgid "Center align the slideshow"
msgstr "居中对齐幻灯片"

#: ml-slider.php:1901
msgid "Auto play"
msgstr "自动播放"

#: ml-slider.php:1906
msgid "Transition between slides automatically"
msgstr "幻灯片间自动过渡"

#: ml-slider.php:1914
msgid "Image Crop"
msgstr "图像裁剪"

#: ml-slider.php:1919
msgid "Smart Crop"
msgstr "智能裁剪"

#: ml-slider.php:1926
msgid "Standard"
msgstr "标准"

#: ml-slider.php:1933
msgid "Disabled"
msgstr "禁用"

#: ml-slider.php:1940
msgid "Disabled (Smart Pad)"
msgstr "禁用 (Smart Pad)"

#: ml-slider.php:1947
msgid ""
"Smart Crop ensures your responsive slides are cropped to a ratio that "
"results in a consistent slideshow size"
msgstr ""
"智能裁剪确保您的多张响应式幻灯片被剪裁到一个相同的比例,使他们能在幻灯片中保"
"持同样的尺寸。"

#: ml-slider.php:1955
msgid "Carousel mode"
msgstr "传送带模式"

#: ml-slider.php:1960
msgid "Display multiple slides at once. Slideshow output will be 100% wide."
msgstr "立即显示多张幻灯片. 幻灯片放映会以100%的宽度输出"

#: ml-slider.php:1971
msgid "Carousel margin"
msgstr "传送带模式边距"

#: ml-slider.php:1974
msgid "Pixel margin between slides in carousel."
msgstr "传送带模式下幻灯片间间距"

#: ml-slider.php:1983
msgid "Fade in"
msgstr ""

#: ml-slider.php:1988
msgid "Fade in the first slide"
msgstr ""

#: ml-slider.php:2001
msgid "Randomise the order of the slides"
msgstr "打乱幻灯片放映的顺序"

#: ml-slider.php:2009
msgid "Hover pause"
msgstr "悬停时暂停"

#: ml-slider.php:2014
msgid ""
"Pause the slideshow when hovering over slider, then resume when no longer "
"hovering."
msgstr "当鼠标悬停在图片上时暂停幻灯片放映(鼠标移开后恢复)"

#: ml-slider.php:2022
msgid "Reverse"
msgstr "反向"

#: ml-slider.php:2027
msgid "Reverse the animation direction"
msgstr "反转过渡效果的方向"

#: ml-slider.php:2035
msgid "Keyboard Controls"
msgstr ""

#: ml-slider.php:2040
msgid "Use arrow keys to get to the next slide"
msgstr ""

#: ml-slider.php:2053
msgid "Slide delay"
msgstr "幻灯片播放间隔"

#: ml-slider.php:2055
msgid "How long to display each slide, in milliseconds"
msgstr "幻灯片的播放间隔,单位是毫秒"

#: ml-slider.php:2059 ml-slider.php:2079 ml-slider.php:2208 ml-slider.php:2240
msgctxt "Short for milliseconds"
msgid "ms"
msgstr ""

#: ml-slider.php:2073
msgid "Animation speed"
msgstr "动画速度"

#: ml-slider.php:2075
msgid "Set the speed of animations, in milliseconds"
msgstr "设置动画的速度,单位是毫秒"

#: ml-slider.php:2093 ml-slider.php:2095
msgid "Number of slices"
msgstr "切片数"

#: ml-slider.php:2105 ml-slider.php:2110 ml-slider.php:2121 ml-slider.php:2126
msgid "Number of squares"
msgstr "方格数"

#: ml-slider.php:2132
msgid "Slide direction"
msgstr "滑动方向"

#: ml-slider.php:2134
msgid "Select the sliding direction"
msgstr "选择的滑动方向"

#: ml-slider.php:2141
msgid "Horizontal"
msgstr "横向"

#: ml-slider.php:2148
msgid "Vertical"
msgstr "垂直"

#: ml-slider.php:2159
msgid "Easing"
msgstr "松"

#: ml-slider.php:2161
msgid "Easing is only available with the 'Slide' transition setting"
msgstr ""

#: ml-slider.php:2171
msgid "Previous text"
msgstr "表示“上一张”的文本"

#: ml-slider.php:2173
msgid "Set the text for the 'previous' direction item"
msgstr "为幻灯片放映中的“上一张”按钮设置文本内容"

#: ml-slider.php:2184
msgid "Next text"
msgstr "表示“下一张”的文本"

#: ml-slider.php:2186
msgid "Set the text for the 'next' direction item"
msgstr "为幻灯片放映中的“下一张”按钮设置文本内容"

#: ml-slider.php:2202
msgid "Square delay"
msgstr "延迟"

#: ml-slider.php:2204
msgid "Delay between squares in ms"
msgstr "以毫秒为单位"

#: ml-slider.php:2218
msgid "Opacity"
msgstr "透明度"

#: ml-slider.php:2220
msgid "Opacity of title and navigation, between 0 and 1"
msgstr ""

#: ml-slider.php:2234
msgid "Caption speed"
msgstr "速度"

#: ml-slider.php:2236
msgid "Set the fade in speed of the caption"
msgstr "设置字幕渐隐的速度"

#: ml-slider.php:2250
msgid "Developer options"
msgstr "开发人员选项"

#: ml-slider.php:2255
msgid "CSS classes"
msgstr "CSS 类"

#: ml-slider.php:2257
msgid ""
"Specify any custom CSS Classes you would like to be added to the slider "
"wrapper"
msgstr "指定的任何自定义CSS类"

#: ml-slider.php:2268
msgid "Print CSS"
msgstr "打印CSS"

#: ml-slider.php:2273
msgid "Uncheck this is you would like to include your own CSS"
msgstr "取消选中,则使用自己的CSS"

#: ml-slider.php:2281
msgid "Print JS"
msgstr "打印JavaScript"

#: ml-slider.php:2286
msgid "Uncheck this is you would like to include your own Javascript"
msgstr "取消选中,则使用自己的Javascript"

#: ml-slider.php:2294
msgid "No conflict mode"
msgstr "无冲突模式"

#: ml-slider.php:2299
msgid "Delay adding the flexslider class to the slideshow"
msgstr ""

#: ml-slider.php:2333
msgid "Delete slideshow"
msgstr ""

#: ml-slider.php:2380
msgid "Select slideshow to insert into post"
msgstr "选择要插入到博文的幻灯片"

#: ml-slider.php:2382
msgid "Add slideshow"
msgstr ""

#: ml-slider.php:2411
msgctxt "Keep the plugin name \"MetaSlider\" when possible"
msgid "Insert MetaSlider"
msgstr ""

#: ml-slider.php:2417
msgid "Choose slideshow"
msgstr "选择幻灯片"

#: ml-slider.php:2427
msgid "Insert slideshow"
msgstr "插入幻灯片"

#: ml-slider.php:2462
msgid "Create slides by adding text, videos and more to your images"
msgstr ""

#: ml-slider.php:2466
msgid ""
"With Layer slides, you can create beautiful, stylish layers of different "
"elements."
msgstr ""

#: ml-slider.php:2470
msgid ""
"You start with an image and then can add text, video, colors, animations, "
"more images, and even shortcodes."
msgstr ""

#: ml-slider.php:2476 ml-slider.php:2517 ml-slider.php:2558 ml-slider.php:2601
#: ml-slider.php:2654 ml-slider.php:2687
msgid "Find out more about MetaSlider Pro"
msgstr ""

#: ml-slider.php:2505
msgid "Create slideshows with your Vimeo videos"
msgstr ""

#: ml-slider.php:2509
msgid ""
"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos."
msgstr ""

#: ml-slider.php:2513
msgid ""
"Vimeo slides will display your videos with auto play, mute, the ability to "
"hide controls, and much more."
msgstr ""

#: ml-slider.php:2546
msgid "Create slideshows with your YouTube videos"
msgstr ""

#: ml-slider.php:2550
msgid ""
"With YouTube slides, you can build beautiful slideshows with your YouTube "
"videos."
msgstr ""

#: ml-slider.php:2554
msgid ""
"YouTube slides will display your videos with auto play, mute, lazy load, the "
"ability to hide controls, and much more."
msgstr ""

#: ml-slider.php:2587
msgid "Create slideshows with your posts"
msgstr ""

#: ml-slider.php:2591
msgid ""
"With Post Feed slides, you can build slideshows with your latest posts, "
"events, or WooCommerce products."
msgstr ""

#: ml-slider.php:2595
msgid ""
"Post Feed slides will automatically display your posts with images, text, "
"custom fields, and much more."
msgstr ""

#: ml-slider.php:2640
msgid "Create slideshows with images stored outside of WordPress"
msgstr ""

#: ml-slider.php:2644
msgid ""
"With External URL slides, you can load images directly from non-WordPress "
"sources such as CDNs or image hosts."
msgstr ""

#: ml-slider.php:2648
msgid ""
"External URL slides give you all the power of MetaSlider, using images "
"stored anywhere you want."
msgstr ""

#: ml-slider.php:2673
msgid "Create slideshows with videos in your media library"
msgstr ""

#: ml-slider.php:2677
msgid ""
"With Local Video slides, you can build beautiful slideshows with videos in "
"your WordPress media library."
msgstr ""

#: ml-slider.php:2681
msgid ""
"Local Video slides will display your MP4, WebM, and MOV videos with cover "
"images, auto play, mute, lazy load, the ability to hide controls, and much "
"more."
msgstr ""

#: ml-slider.php:2727
msgid "Take a tour"
msgstr ""

#: ml-slider.php:2732
msgid "Premium Support"
msgstr ""

#: ml-slider.php:2738
msgid "Add-ons"
msgstr ""

#: ml-slider.php:2742
msgid "Support"
msgstr ""

#: ml-slider.php:2747
msgid "Documentation"
msgstr "文档"

#: ml-slider.php:2751
msgid "Leave a review"
msgstr ""

#: themes/manifest.php:16
msgid "A simple, slick square design that looks good on darker images."
msgstr ""

#: themes/manifest.php:25
msgid "A clean, subtle theme that features block arrows and bold design."
msgstr ""

#: themes/manifest.php:34
msgid ""
"A fun, circular design to brighten up your site. This theme works well with "
"dark images"
msgstr ""

#: themes/manifest.php:43
msgid ""
"A minimalistic, no-frills design that was built to blend in with most themes."
msgstr ""

#: themes/manifest.php:75
msgid "This theme places the controls vertically for a unique look."
msgstr ""

#: themes/manifest.php:84
msgid "A futuristic and linear design that goes will with a dark background."
msgstr ""

#: themes/manifest.php:93
msgid "A simple theme that neatly blends into any existing website."
msgstr ""

#: themes/manifest.php:102
msgid ""
"This theme has a special additional functionality that uses image titles as "
"the slide navigation. "
msgstr ""

#: themes/manifest.php:103
msgid ""
"If you would like to use the image titles as the navigation, you will need "
"to use FlexSlider. Additionally, to change the slide navigation label, edit "
"the image title in the media library or manually on the slide (SEO tab)."
msgstr ""

#: themes/manifest.php:133
msgid "This theme has a unique design that gives it a sophisticated look."
msgstr ""

#: themes/manifest.php:142
msgid "A bold and clear design that works well on a darker images."
msgstr ""

#: themes/manifest.php:151
msgid ""
"A minimalist theme that gets out of the way so you can showcasing your "
"beautiful pictures."
msgstr ""

#: themes/manifest.php:160
msgid ""
"The Nivo Light theme included here for legacy purposes. Note: only works "
"with Nivo Slider"
msgstr ""

#: themes/manifest.php:168
msgid ""
"The Nivo Bar theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/manifest.php:176
msgid ""
"The Nivo Dark theme included here for legacy purposes. Note: only works with "
"Nivo Slider"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:24
msgid "Previous Slide"
msgstr ""

#: themes/simply-dark/v1.0.0/theme.php:26
msgid "Next Slide"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:79
msgid "Preparing 1 slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:134
msgid "1 slide added successfully"
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:175
msgid "Opening add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:178
msgid "Closing add slide UI..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:267
msgid "Updating slide..."
msgstr ""

#: admin/assets/dist/js/admin.js:1 admin/assets/js/admin.js:313
msgid "Slide updated successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "CSS Manager"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily add custom CSS to your slideshows to customize and fit your theme "
"perfectly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Built-in text editor full of features."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loads only on the front-end where needed."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Includes recipes to solve common scenarios."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade to pro now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrading also includes:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Layer, video and post type slides."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slide scheduling - decide when slides appear."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Premium support - ask us anyting!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice opened"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Analytics notice closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We'd also like to send you infrequent emails with important security and "
"feature updates. See our %s for more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Thanks for using MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"We are currently building the next version of MetaSlider. Can you help us "
"out by sharing non-sensitive diagnostic information?"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Agree and continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No thanks"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider dashboard loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving %s slides. This may take a few moments."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Duplicated successfully. Reloading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Still working... %s slides remaining..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled successfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tour cancelled unsuccessfully"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Are you sure?"
msgstr "你确定吗?"

#: admin/assets/dist/js/app.js:2
msgid "You will not be able to undo this."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Delete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Something went wrong"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "OK"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preparing slideshow for duplication..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:88
msgid "Doing something..."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:96
msgid "No error message provided."
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:113
msgid "Undefined error occurred"
msgstr ""

#: admin/assets/dist/js/app.js:2 admin/assets/js/app/globals.js:169
msgid "No error message reported."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Saving theme..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This theme is not officially supported by the slider you chose. Your results "
"might vary."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Click the image to edit or update"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Remove theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the look and feel of your slideshow with one of our custom-built "
"MetaSlider themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select a custom theme"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Theme Instructions"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Tags"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "How To Use"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select a theme on the left to use on this slideshow. Click the theme for "
"more details."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If no theme is selected we will use the default theme provided by the slider "
"plugin"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Error: No themes were found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"However, it looks like you have custom themes available. Select \"My Custom "
"Themes\" from the navigation up top to view your custom themes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "My Custom Themes"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get MetaSlider Pro!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade now to build your own custom themes!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "MetaSlider Pro is installed!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You can create your own themes with our theme editor"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Get started"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "On the left are themes that you have created in the theme editor."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Preview slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Select"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle overlay type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Toggle full width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exit preview"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "This feature is not fully supported in this browser."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library caption"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Media library description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enter manually"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Automatically updates directly from the WP Media Library"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No default was found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You may use HTML here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter by type"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All media items"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search Unsplash API"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search unsplash.com..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load more"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo on Unsplash"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening Unsplash tab..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Unsplash tab closed"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No photots found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Photo by %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Deselect"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Attachment Details"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "1000 by 1000 pixels"
msgid "%s by %s pixels"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view original"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Profile"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Portfolio"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Alt Text"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Description"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Quality"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All photos published on Unsplash can be used for free."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "view license"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Complete!"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Crunching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import Slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You currently do not have any slides to preview. If you want, we can import "
"some image slides for you."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No valid files found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drag and drop interface not available."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Drop images here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press %s to save or %s to cancel."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ENTER key on a keyboard"
msgid "Enter"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "The ESCAPE key on a keyboard"
msgid "Escape"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode copied"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Shortcode unable to be copied automatically"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Closing utility modal..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Current"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgctxt "number of slides, ex \"7 slides\""
msgid "%s slides"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "last updated: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing 1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Search slideshows (Press ctrl + / to focus)‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "1 slideshow"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Viewing %s out of %s slideshows (%s loaded)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing %s slideshows into local storage..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All Slideshows loaded"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fetching slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Finished"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Indexing slideshows... %s remaining"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"This feature is not fully supported in Internet Explorer 11 and you may "
"experience slow search result times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Sort by modified date"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Filter slideshows‎"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Searching..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Updating..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load all"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Clear cache"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load remaining %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to clear the slideshow cache from your web browser"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Browse slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Collapse"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Press to expand"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find documentation, and two support tiers to choose from. "
"Additionally, you may supply us with extra information specific to your "
"website, server, etc."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Documentation 📚"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Check out our documentation page for examples, and more information about "
"what you can do with MetaSlider."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit documentation"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Free Basic Support 🚀"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For users of the free version of MetaSlider, we offer full free support on "
"the wordpress.org forums."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit wordpress.org"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Paid Premium Support 🌟"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Paid users of the premium plugin can open a ticket on our private support "
"center to receive personalized support and faster response times."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Visit metaslider.com"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Site Information"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"For your convenience, you can copy the basic site information before to help "
"us speed up the debugging process. Be sure to verify that no personal "
"information is included that you might want to keep private."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Change the default title that will be used when creating a new slideshow. "
"Use %s and it will be replaced by the current slideshow ID."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you are a pro member, enter your license key here to receive updates. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upgrade here"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Opt-in to let MetaSlider responsibly collect information about how you use "
"our plugin. This is disabled by default, but may have been enabled by via a "
"notification. %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "View our detailed privacy policy"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global settings saved"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Slideshow Defaults"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update default settings used when creating a new slideshow."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Default Slideshow Title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default title"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default width for the base image. This will be used for the "
"slideshow dimensions and base image cropping."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Change the default width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Base Image Height"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Update the default height for the base image. This will be used for the base "
"image cropping and slideshow dimaneions. If set to 100% width, the height "
"will scale accordingly."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "100% Width"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"While the width and height defined above will be used for cropping (if "
"enabled) and the base slideshow dimensions, you may also set the slideshow "
"to stretch to its container."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Global Settings"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Here you will find general account settings and options related to your "
"account"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "License Key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Update license key"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Help Improve MetaSlider"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Enable Gallery (Beta)"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Fast, SEO-focused, fully WCAG accessible and easy to use galleries."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The data in this file does not appear to be valid."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Found %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image search complete"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "We are still searching for your images. Please wait."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to import"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Some images are missing"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"When images are missing you will have to manually update or delete the slide "
"after the import completes."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Continue"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Easily import slideshows generated by MetaSlider. This requires a file "
"generated from the Export tab."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"If you have an export file, you may upload it here to be processed. "
"Information about each slideshow will be presented below. You will be able "
"to confirm before importing."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Importing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Processing..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Upload file"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Date: %s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Version: v%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "All images required to import are accounted for."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "The following images were not found:"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No image name provided"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Note: You can still import slideshows that contain missing images. You will "
"just need to manually update or delete these slides from their individual "
"slideshow edit pages."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Import %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to import below, then press here to import "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Post Feed slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "External slide"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Image not found<br>%s"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "No slides found"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Loading %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "You have no slideshows to export"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Exporting %s slideshows..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export successful"
msgstr ""

#: admin/assets/dist/js/app.js:2
#: admin/assets/js/gutenberg/components/block-edit.js:114
msgid "No slideshows found."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Create a new slideshow now"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Press to load available slideshows then choose which slideshows to export. "
"If you only have a few slideshows we will prepare them automatically."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"You have %s slideshows that can be exported. Information about each "
"slideshow will be presented below."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Refresh"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Load"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Pressing export will gather and organize all of your slideshows into a "
"single data file that you can use to restore on another website."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Your images will need to be exported manually and uploaded to the new "
"website before importing these slideshows. Additionally, image file names "
"need to match as we will use built in WordPress functions to locate the "
"image based on its current name."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Learn how"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Please note that content contained in \"Post Type\" slides will not be "
"exported. Only the slide configurations that refer to the content will be."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Export %s slideshows"
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid ""
"Select the slideshows you wish to export below, then press here to export "
"them."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Failed to open the settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Opening settings page..."
msgstr ""

#: admin/assets/dist/js/app.js:2
msgid "Page not found: %s"
msgstr ""

#: admin/assets/js/app/tour/main.js:12
msgid "Add a slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:13
msgid ""
"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button "
"to create your first slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:19
msgid "Select images"
msgstr ""

#: admin/assets/js/app/tour/main.js:20
msgid ""
"You can easily add an image from one of the options here. Additionally we "
"provide free images from the Unsplash library."
msgstr ""

#: admin/assets/js/app/tour/main.js:29
msgid "Next step"
msgstr ""

#: admin/assets/js/app/tour/main.js:38
msgid "Search unsplash"
msgstr ""

#: admin/assets/js/app/tour/main.js:39
msgid ""
"Choose an image from the left, or search for any topic here to bring up more "
"images."
msgstr ""

#: admin/assets/js/app/tour/main.js:44
msgid "Hide step"
msgstr ""

#: admin/assets/js/app/tour/main.js:53
msgid "Create your slide"
msgstr ""

#: admin/assets/js/app/tour/main.js:54
msgid "After you have selected an image, press here to create your slide."
msgstr ""

#: admin/assets/js/app/tour/main.js:67
msgid "Preview Slideshow"
msgstr ""

#: admin/assets/js/app/tour/main.js:68
msgid ""
"Now that you have some slides set, you can preview your slideshow by "
"pressing here."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:47
msgid "Slideshow settings"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:55
msgid "Edit slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:72
msgid "Additional CSS Class"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:93
msgid "Refresh preview"
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:107
msgid "Loading slideshows list..."
msgstr ""

#: admin/assets/js/gutenberg/components/block-edit.js:115
msgid "Create one now!"
msgstr ""

#: admin/assets/js/gutenberg/components/preview.js:171
msgid "Loading slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/refresh-button.js:35
msgid "Update preview"
msgstr ""

#: admin/assets/js/gutenberg/components/slideshow-selector.js:26
#: admin/assets/js/gutenberg/components/slideshow-selector.js:29
msgid "Select a slideshow"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:15
msgid "Normal width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:19
msgid "Wide width"
msgstr ""

#: admin/assets/js/gutenberg/components/stretch-toolbar.js:23
msgid "Full width"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:79
msgid "Use MetaSlider to insert slideshows and sliders in your page"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slider"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "slideshow"
msgstr ""

#: admin/assets/js/gutenberg/editor-block.js:82
msgid "gallery"
msgstr ""
languages/ml-slider-fa_IR-metaslider-admin-script.json000064400000071173151213255520017004 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fa_IR"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["لینک"],"Caption":["عنوان"],"New Window":["پنجره جدید"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["توجه: این تنظیمات فقط برای توسعه دهندگان پیشرفته است. اگر شما مطمئن نیستید، این تنظیمات را دستکاری نکنید."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["موضوع"],"Created":[""],"Shortcode":["کد کوتاه"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["قرار دادن اسلاید"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["ذخیره"],"Settings":["تنظیمات"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":[""],"Top Left":[""],"Top Center":[""],"Top Right":[""],"Center Left":[""],"Center Center":[""],"Center Right":[""],"Bottom Left":[""],"Bottom Center":[""],"Bottom Right":[""],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["موضوع تصویر"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["متن جایگزین تصویر"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["موضوع:"],"Select Slider:":["انتخاب اسلاید:"],"No slideshows found":["اسلایدشو پیدا نشد"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["اسلاید تصویر"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["عمومی"],"SEO":["سئو"],"Crop":[""],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["تصویر"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["عرض"],"Slideshow width":["عرض اسلایدشو"],"px":["px"],"Height":["ارتفاع"],"Slideshow height":["ارتفاع اسلایدشو"],"Effect":["افکت"],"Slide transition effect":["انتقال افکت اسلایدر"],"Random":["تصادفی"],"Swirl":["چرخش"],"Rain":["بارش"],"Straight":["مستقیم"],"Slice Down":[""],"Slice Up":["برش از بالا"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["محو"],"Fold":["تا کردن"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["جعبه تصادفی"],"Box Rain":["جعبه بارش"],"Box Rain Reverse":["جعبه بارش معکوس"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["جعبه بارش معکوس روشن"],"Slide":["اسلاید"],"Arrows":["فلش ها"],"Show the previous/next arrows":["نشان دادن فلش های قبلی/بعدی"],"Navigation":["ناوبری"],"Show the slide navigation bullets":["نشان دادن گلوله های ناوبری اسلایدر"],"Hidden":["مخفی"],"Dots":["نقطه"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["تنظیمات پیشرفته"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["کشش خروجی تصاویر به صورت خودکار"],"Center align":["تراز از وسط"],"Center align the slideshow":["تراز از وسط اسلایدشو"],"Auto play":["پخش خودکار"],"Transition between slides automatically":["انتقال بین اسلاید ها به صورت خودکار"],"Image Crop":[""],"Smart Crop":[""],"Standard":[""],"Disabled":[""],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["اصلاح هوشمند اسلایدر به طوریکه پاسخگو خواهد بود"],"Carousel mode":["حالت چرخ و فلک"],"Display multiple slides at once. Slideshow output will be 100% wide.":["نمایش اسلاید چندگانه در یک نوبت. خروجی تصاویر به صورت خودکار 100% خواهد بود."],"Carousel margin":["حالت چرخ و فلک"],"Pixel margin between slides in carousel.":["فاصله خروجی بین اسلایدر در چرخ و فلک"],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["تصادفی کردن حالت اسلایدر"],"Hover pause":["متوقف کردن هنگام شناور شدن"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["متوقف کردن تصویر هنگام بردن موس روی تصویر"],"Reverse":["معکوس"],"Reverse the animation direction":["جهت معکوس شدن انیمیشن"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["تاخیر اسلایدر"],"How long to display each slide, in milliseconds":["مدت زمان نمایش هر اسلایدر، در میلی ثانیه"],"Animation speed":["سرعت انیمیشن"],"Set the speed of animations, in milliseconds":["تنظیم سرعت انیمیشن، در میلی ثانیه"],"Number of slices":["تعداد برش ها"],"Number of squares":["تعداد مربع ها"],"Slide direction":["توضیحات اسلایدر"],"Select the sliding direction":["قرار دادن توضیحات در اسلایدر"],"Horizontal":["افقی"],"Vertical":["عمودی"],"Easing":["افکت"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["نوشته قبلی"],"Set the text for the 'previous' direction item":["تنظیم متن برای 'قبلی' مورد استفاده"],"Next text":["نوشته بعدی"],"Set the text for the 'next' direction item":["تنظیم متن برای 'بعدی' مورد استفاده"],"Square delay":["تاخیر مربع"],"Delay between squares in ms":["تاخیر مربع در اسلایدر"],"Opacity":["شفافیت"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["سرعت عنوان"],"Set the fade in speed of the caption":["تنظیم سرعت محو شدن عنوان"],"Developer options":["تنظیمات توسعه دهنده"],"CSS classes":["کلاس سی اس اس"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["اضافه کردن یک کلاس سفارشی سی اس اس در اسلایدر پوسته"],"Print CSS":["چاپ سی اس اس"],"Uncheck this is you would like to include your own CSS":["استفاده کردن از سی اس اس اسلاید"],"Print JS":["چاپ جاوا اسکریپت"],"Uncheck this is you would like to include your own Javascript":["استفاده کردن از جاوا اسکریپت اسلاید"],"No conflict mode":["بدون حالت تضاد"],"Delay adding the flexslider class to the slideshow":["تاخیر در استفاده کلاس فلکس اسلایدر در اسلایدشو"],"Delete slideshow":[""],"Select slideshow to insert into post":["انتخاب اسلایدشو برای برای قرار دادن در مطلب"],"Add slideshow":[""],"Choose slideshow":["انتخاب اسلایدشو"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["مستندات"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["آیا مطمئن هستید؟"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}languages/ml-slider-pt_BR-metaslider-admin-script.json000064400000070632151213255520017031 0ustar00{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"MetaSlider":["MetaSlider"],"https://www.metaslider.com":[""],"Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.":[""],"Hey there! We just started working on a brand new gallery extension. <a href=\"%s\">Check it out</a> and let us know what you think!":[""],"Spice up your site with animated layers and video slides with MetaSlider Pro":[""],"Increase your revenue and conversion with video slides and many more MetaSlider Pro features":[""],"Can you translate? Want to improve MetaSlider for speakers of your language?":[""],"weeks":[""],"Let's Start &rarr;":[""],"Find out more &rarr;":[""],"Get MetaSlider Pro &rarr;":[""],"Sign up &rarr;":[""],"Go there &rarr;":[""],"Read more":[""],"The security check failed. Please refresh the page and try again.":[""],"Access denied":[""],"Bad request":[""],"This item does not exist. Please refresh the page and try again.":[""],"The option was successfully updated":[""],"The requested data does not exist.":[""],"The attempt to update the option failed.":[""],"URL":["URL"],"Caption":["Texto"],"New Window":["Nova janela"],"Please confirm that you would like to delete this slideshow.":[""],"Undo":[""],"Slide restored":[""],"Slide deleted":[""],"Success":[""],"Item was copied to your clipboard":[""],"Press to undo":[""],"Select replacement image":[""],"Caution: This setting is for advanced developers only. If you're unsure, leave it checked.":["Atenção: Esta configuração é apenas para desenvolvedores avançados. Se você não tem certeza, deixe esta caixa marcada."],"You do not have access to this resource.":[""],"The request format was not valid.":[""],"This slideshow is no longer available.":[""],"Nothing to import.":[""],"This was not a slideshow, so we cannot delete it.":[""],"This was not a slideshow, so we cannot update the setting.":[""],"The title cannot be empty.":[""],"The field (%s) cannot be empty":[""],"We could not find any images to import.":[""],"New Slideshow":[""],"Previous":[""],"Next":[""],"No themes found.":[""],"We removed your selected theme as it could not be found. Was the folder deleted?":[""],"Published":[""],"Trash":[""],"Preview":[""],"Title":["Título"],"Created":[""],"Shortcode":["Código reduzido"],"Restore":[""],"Delete Permanently":[""],"Edit":[""],"Logo":[""],"Dismiss":[""],"Slideshows":[""],"Add New":[""],"Search":[""],"Browser upgrade required":[""],"It looks like you are using %s. While MetaSlider does support %s on the frontend of the website where users see your slideshows, some of the tools we provide back here require a modern browser.":[""],"Microsoft Internet Explorer 11":[""],"IE11":[""],"Update Internet Explorer":[""],"How to Use":[""],"Toggle title":[""],"To display your slideshow, add the following shortcode (in orange) to your page. If adding the slideshow to your theme files, additionally include the surrounding PHP code (in gray).&lrm;":[""],"Click shortcode to copy":[""],"Copy all code":[""],"Copy all":[""],"Add Slide":["Adicionar Slide"],"Save & open preview":[""],"Add a new slideshow":[""],"New":[""],"Duplicate this slideshow":[""],"Duplicate":[""],"Add custom CSS":[""],"press to learn more":[""],"Add CSS":[""],"Save slideshow":[""],"Save":["Salvar"],"Settings":["Configurações"],"Help Center":[""],"Import":[""],"Export":[""],"Thanks for using MetaSlider, the WordPress slideshow plugin":[""],"Create a slideshow with your images":[""],"Choose your own images to start a new slideshow.":[""],"Open Media Library":[""],"Create a slideshow with sample images":[""],"Choose one of our demos with sample images, or a blank slideshow with no images.":[""],"Blank Slideshow":[""],"Image Slideshow":[""],"Carousel Slideshow":[""],"Carousel Slideshow with Captions":[""],"Create a Slideshow":[""],"Comparison Chart":[""],"free":[""],"pro":[""],"Installed":[""],"Upgrade now":[""],"Create unlimited slideshows":[""],"Create and manage as many slideshows as you need.":[""],"Yes":[""],"Multiple slideshow types":[""],"Regular updates":[""],"Intelligent image cropping":[""],"Thumbnail navigation":[""],"Easily allow users to navigate your slideshows by thumbnails.":[""],"No":[""],"Add video slides":[""],"HTML overlay slides":[""],"Create completely customized HTML slides using the inline editor.":[""],"Add slide layers":[""],"Add layers to your slides with over 50 available transition effects.":[""],"Post feed slides":[""],"Easily build slides based on your WordPress posts.":[""],"Schedule your slides":[""],"Add a start/end date to individual slides.":[""],"Toggle your slide's visibility":[""],"Allows you to hide any slide, without having to delete them.":[""],"Premium support":[""],"Have your specific queries addressed directly by our experts":[""],"Crop Position":["Posição de corte"],"Top Left":["Esquerda superior"],"Top Center":["Centro superior"],"Top Right":["Direita superior"],"Center Left":["Centro esquerdo"],"Center Center":["Centro central"],"Center Right":["Direita central"],"Bottom Left":["Esquerda inferior"],"Bottom Center":["Centro inferior"],"Bottom Right":["Direita inferior"],"Open in a new window":[""],"Update or activate your MetaSlider Pro now to add a start/end date option to your slides":[""],"Get MetaSlider Pro now to add a start/end date option to your slides":[""],"Get it now!":[""],"Image Title Text":["Texto de título da imagem"],"Enable this to inherit the image title":[""],"Use the image title":[""],"Image Alt Text":["Texto alternativo da imagem"],"Enable this to inherit the image alt text":[""],"Use the image alt text":[""],"Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s":[""],"this article":[""],"Warning:":[""],"Title:":["Título:"],"Select Slider:":["Selecionar apresentação:"],"No slideshows found":["Não foi encontrada qualquer apresentação"],"The requested image does not exist. Please try again.":[""],"The image was successfully updated.":[""],"There was an error updating the image. Please try again":[""],"There was an error while updating the database. Please try again.":[""],"Trash slide":[""],"Update slide image":[""],"Failed to add slide. Slide is not an image.":[""],"This isn't an accepted image. Please try again.":[""],"Image Slide":["Slide de imagem"],"Warning: The image data does not exist. Please re-upload the image.":[""],"General":["Geral"],"SEO":["SEO"],"Crop":["Cortar"],"Schedule":[""],"MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s":[""],"Home":[""],"Quick Start":[""],"Settings & Help":[""],"Upgrade to Pro":[""],"Image":["Imagem"],"Add to slideshow":[""],"Post Feed":[""],"Vimeo":[""],"YouTube":[""],"Layer Slide":[""],"External URL":[""],"Local Video":[""],"The slide was successfully restored":[""],"The attempt to restore the slide failed.":[""],"The slide was successfully trashed":[""],"The slide was permanently deleted":[""],"Get MetaSlider Pro today!":[""],"Learn More":[""],"Trashed Slides":[""],"You are viewing slides that have been trashed, which will be automatically deleted in %s days.":[""],"Return to Published Slides":[""],"Width":["Largura"],"Slideshow width":["Largura da apresentação"],"px":["px"],"Height":["Altura"],"Slideshow height":["Altura da apresentação"],"Effect":["Efeito"],"Slide transition effect":["Transição de efeito do slide"],"Random":["Aleatório"],"Swirl":["Redemoinho"],"Rain":["Chuva"],"Straight":["Em linha reta"],"Slice Down":[""],"Slice Up":["Deslizar para cima"],"Slice Up Left":[""],"Slide Up Down":[""],"Slice Up Down Left":[""],"Fade":["Desvanecer"],"Fold":["Dobrar"],"Slide in Right":[""],"Slide in Left":[""],"Box Random":["Caixa aleatória"],"Box Rain":["Chuva de caixa"],"Box Rain Reverse":["Chuva de caixa reversa"],"Box Rain Grow":[""],"Box Rain Grow Reverse":["Chuva de caixa crescente reversa"],"Slide":["Slide"],"Arrows":["Setas"],"Show the previous/next arrows":["Mostrar setas anterior/próximo"],"Navigation":["Navegação"],"Show the slide navigation bullets":["Mostrar marcações da navegação de slides"],"Hidden":["Escondido"],"Dots":["Pontos"],"Thumbnail":[""],"Filmstrip":[""],"View trashed slides":[""],"Click to toggle":[""],"Advanced Settings":["Opções avançadas"],"100% width":[""],"Stretch the slideshow output to fill it's parent container":["Expandir a saída da apresentação para ajustá-la à seu recipiente"],"Center align":["Alinhamento central"],"Center align the slideshow":["Alinhamento central da apresentação"],"Auto play":["Iniciar automaticamente"],"Transition between slides automatically":["Transição automática entre slides"],"Image Crop":["Corte de imagem"],"Smart Crop":[""],"Standard":["Padrão"],"Disabled":["Desativado"],"Disabled (Smart Pad)":[""],"Smart Crop ensures your responsive slides are cropped to a ratio that results in a consistent slideshow size":["Corte inteligente faz a certeza de que seus slides responsivos são cortados em uma proporção que resulta em uma apresentação de slides de tamanho consistente"],"Carousel mode":["Modo carrossel"],"Display multiple slides at once. Slideshow output will be 100% wide.":["Mostrar múltiplos slides de uma vez. A saída da apresentação será 100% completa."],"Carousel margin":["Margem do carrossel"],"Pixel margin between slides in carousel.":["Margem em pixel entre slides no carrossel."],"Fade in":[""],"Fade in the first slide":[""],"Randomise the order of the slides":["Fazer a ordem dos slides aleatória"],"Hover pause":["Parar durante passagem do mouse"],"Pause the slideshow when hovering over slider, then resume when no longer hovering.":["Parar a apresentação enquanto passar o mouse sobre o apresentador, e então continuar após o mouse deixa-lo."],"Reverse":["Reverter"],"Reverse the animation direction":["Reverter a direção da animação"],"Keyboard Controls":[""],"Use arrow keys to get to the next slide":[""],"Slide delay":["Atraso de slide"],"How long to display each slide, in milliseconds":["Quanto tempo mostrar cada slide, em milissegundos"],"Animation speed":["Velocidade da animação"],"Set the speed of animations, in milliseconds":["Defina a velocidade das animações, em milissegundos"],"Number of slices":["Número de fatias"],"Number of squares":["Número de quadrados"],"Slide direction":["Direção do slide"],"Select the sliding direction":["Selecione a direção de deslize"],"Horizontal":["Horizontal"],"Vertical":["Vertical"],"Easing":["Facilidade"],"Easing is only available with the 'Slide' transition setting":[""],"Previous text":["Texto anterior"],"Set the text for the 'previous' direction item":["Defina o texto para o item de direção 'anterior'"],"Next text":["Texto próximo"],"Set the text for the 'next' direction item":["Defina o texto para o item de direção 'próximo'"],"Square delay":["Atraso de quadrado"],"Delay between squares in ms":["Atraso entre quadrados em ms"],"Opacity":["Opacidade"],"Opacity of title and navigation, between 0 and 1":[""],"Caption speed":["Velocidade do texto"],"Set the fade in speed of the caption":["Defina o esmaecimento em velocidade do texto"],"Developer options":["Opções do desenvolvedor"],"CSS classes":["Classes CSS"],"Specify any custom CSS Classes you would like to be added to the slider wrapper":["Especifique qualquer classe CSS personalizada que você gostaria que fosse adicionada ao compilador de apresentações"],"Print CSS":["Imprimir CSS"],"Uncheck this is you would like to include your own CSS":["Desmarque isto se você deseja incluir seu próprio CSS"],"Print JS":["Imprimir JS"],"Uncheck this is you would like to include your own Javascript":["Desmarque isto se você deseja incluir seu próprio JavaScript"],"No conflict mode":["Sem modo de conflito"],"Delay adding the flexslider class to the slideshow":["Atraso ao adicionar a classe flexslider à apresentação"],"Delete slideshow":[""],"Select slideshow to insert into post":["Selecione uma apresentação para inseri-la na publicação"],"Add slideshow":[""],"Choose slideshow":["Selecione a apresentação"],"Insert slideshow":[""],"Create slides by adding text, videos and more to your images":[""],"With Layer slides, you can create beautiful, stylish layers of different elements.":[""],"You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.":[""],"Find out more about MetaSlider Pro":[""],"Create slideshows with your Vimeo videos":[""],"With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.":[""],"Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.":[""],"Create slideshows with your YouTube videos":[""],"With YouTube slides, you can build beautiful slideshows with your YouTube videos.":[""],"YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Create slideshows with your posts":[""],"With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.":[""],"Post Feed slides will automatically display your posts with images, text, custom fields, and much more.":[""],"Create slideshows with images stored outside of WordPress":[""],"With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.":[""],"External URL slides give you all the power of MetaSlider, using images stored anywhere you want.":[""],"Create slideshows with videos in your media library":[""],"With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.":[""],"Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.":[""],"Take a tour":[""],"Premium Support":[""],"Add-ons":[""],"Support":[""],"Documentation":["Documentação"],"Leave a review":[""],"A simple, slick square design that looks good on darker images.":[""],"A clean, subtle theme that features block arrows and bold design.":[""],"A fun, circular design to brighten up your site. This theme works well with dark images":[""],"A minimalistic, no-frills design that was built to blend in with most themes.":[""],"This theme places the controls vertically for a unique look.":[""],"A futuristic and linear design that goes will with a dark background.":[""],"A simple theme that neatly blends into any existing website.":[""],"This theme has a special additional functionality that uses image titles as the slide navigation. ":[""],"If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).":[""],"This theme has a unique design that gives it a sophisticated look.":[""],"A bold and clear design that works well on a darker images.":[""],"A minimalist theme that gets out of the way so you can showcasing your beautiful pictures.":[""],"The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider":[""],"Previous Slide":[""],"Next Slide":[""],"Preparing 1 slide...":[""],"1 slide added successfully":[""],"Opening add slide UI...":[""],"Closing add slide UI...":[""],"Updating slide...":[""],"Slide updated successfully":[""],"CSS Manager notice opened":[""],"CSS Manager notice closed":[""],"CSS Manager":[""],"Easily add custom CSS to your slideshows to customize and fit your theme perfectly.":[""],"Built-in text editor full of features.":[""],"Loads only on the front-end where needed.":[""],"Includes recipes to solve common scenarios.":[""],"Upgrade to pro now":[""],"Upgrading also includes:":[""],"Layer, video and post type slides.":[""],"Slide scheduling - decide when slides appear.":[""],"Premium support - ask us anyting!":[""],"Analytics notice opened":[""],"Analytics notice closed":[""],"We'd also like to send you infrequent emails with important security and feature updates. See our %s for more details.":[""],"privacy policy":[""],"Thanks for using MetaSlider":[""],"We are currently building the next version of MetaSlider. Can you help us out by sharing non-sensitive diagnostic information?":[""],"Agree and continue":[""],"No thanks":[""],"Duplicating...":[""],"MetaSlider dashboard loaded":[""],"Saving...":[""],"Saving %s slides. This may take a few moments.":[""],"Slideshow saved":[""],"Duplicated successfully. Reloading...":[""],"Settings saved":[""],"Still working... %s slides remaining...":[""],"Tour cancelled successfully":[""],"Tour cancelled unsuccessfully":[""],"Are you sure?":["Você tem certeza?"],"You will not be able to undo this.":[""],"Delete":[""],"Something went wrong":[""],"OK":[""],"Preparing slideshow for duplication...":[""],"Doing something...":[""],"No error message provided.":[""],"Undefined error occurred":[""],"No error message reported.":[""],"Saving theme...":[""],"Theme saved":[""],"Slideshow Theme":[""],"This theme is not officially supported by the slider you chose. Your results might vary.":[""],"Custom theme":[""],"Click the image to edit or update":[""],"Remove theme":[""],"Change the look and feel of your slideshow with one of our custom-built MetaSlider themes!":[""],"Select a custom theme":[""],"Themes":[""],"Theme Details":[""],"Theme Instructions":[""],"Tags":[""],"How To Use":[""],"Select a theme on the left to use on this slideshow. Click the theme for more details.":[""],"If no theme is selected we will use the default theme provided by the slider plugin":[""],"Loading...":[""],"Error: No themes were found.":[""],"However, it looks like you have custom themes available. Select \"My Custom Themes\" from the navigation up top to view your custom themes.":[""],"My Custom Themes":[""],"Get MetaSlider Pro!":[""],"Upgrade now to build your own custom themes!":[""],"Learn more":[""],"MetaSlider Pro is installed!":[""],"You can create your own themes with our theme editor":[""],"Get started":[""],"On the left are themes that you have created in the theme editor.":[""],"Preview slideshow":[""],"Select":[""],"Toggle overlay type":[""],"Toggle full width":[""],"Exit preview":[""],"This feature is not fully supported in this browser.":[""],"Media library caption":[""],"Media library description":[""],"Enter manually":[""],"Automatically updates directly from the WP Media Library":[""],"No default was found":[""],"You may use HTML here":[""],"Filter by type":[""],"All media items":[""],"Search Unsplash API":[""],"Search unsplash.com...":[""],"Load more":[""],"Photo by %s on Unsplash":[""],"Photo on Unsplash":[""],"Opening Unsplash tab...":[""],"Unsplash tab closed":[""],"No photots found.":[""],"Photo by %s":[""],"Deselect":[""],"Attachment Details":[""],"view original":[""],"Profile":[""],"Portfolio":[""],"Alt Text":[""],"Description":[""],"Quality":[""],"All photos published on Unsplash can be used for free.":[""],"view license":[""],"Complete!":[""],"Crunching...":[""],"Import Slides":[""],"Import slides":[""],"You currently do not have any slides to preview. If you want, we can import some image slides for you.":[""],"No valid files found":[""],"Drag and drop interface not available.":[""],"Drop images here":[""],"Press %s to save or %s to cancel.":[""],"Shortcode copied":[""],"Shortcode unable to be copied automatically":[""],"Failed to open utility modal...":[""],"Opening utility modal...":[""],"Closing utility modal...":[""],"No slides":[""],"Current":[""],"last updated: %s":[""],"Viewing 1 slideshow":[""],"Viewing %s out of %s slideshows":[""],"Search slideshows (Press ctrl + / to focus)‎":[""],"Searching slideshows...":[""],"1 slideshow":[""],"Viewing %s out of %s slideshows (%s loaded)":[""],"Indexing %s slideshows into local storage...":[""],"All Slideshows loaded":[""],"Fetching slideshows...":[""],"Finished":[""],"Indexing slideshows... %s remaining":[""],"This feature is not fully supported in Internet Explorer 11 and you may experience slow search result times.":[""],"Sort by title":[""],"Sort by modified date":[""],"Filter slideshows‎":[""],"Searching...":[""],"Updating...":[""],"Load all":[""],"Clear cache":[""],"Load remaining %s slideshows":[""],"Press to clear the slideshow cache from your web browser":[""],"Loading slideshows...":[""],"Browse slideshows":[""],"Collapse":[""],"Press to expand":[""],"All settings saved":[""],"Here you will find documentation, and two support tiers to choose from. Additionally, you may supply us with extra information specific to your website, server, etc.":[""],"Documentation 📚":[""],"Check out our documentation page for examples, and more information about what you can do with MetaSlider.":[""],"Visit documentation":[""],"Free Basic Support 🚀":[""],"For users of the free version of MetaSlider, we offer full free support on the wordpress.org forums.":[""],"Visit wordpress.org":[""],"Paid Premium Support 🌟":[""],"Paid users of the premium plugin can open a ticket on our private support center to receive personalized support and faster response times.":[""],"Visit metaslider.com":[""],"Site Information":[""],"For your convenience, you can copy the basic site information before to help us speed up the debugging process. Be sure to verify that no personal information is included that you might want to keep private.":[""],"Change the default title that will be used when creating a new slideshow. Use %s and it will be replaced by the current slideshow ID.":[""],"If you are a pro member, enter your license key here to receive updates. %s":[""],"Upgrade here":[""],"Opt-in to let MetaSlider responsibly collect information about how you use our plugin. This is disabled by default, but may have been enabled by via a notification. %s":[""],"View our detailed privacy policy":[""],"Slideshow settings saved":[""],"Global settings saved":[""],"Slideshow Defaults":[""],"Update default settings used when creating a new slideshow.":[""],"Default Slideshow Title":[""],"Change the default title":[""],"Base Image Width":[""],"Update the default width for the base image. This will be used for the slideshow dimensions and base image cropping.":[""],"Change the default width":[""],"Base Image Height":[""],"Update the default height for the base image. This will be used for the base image cropping and slideshow dimaneions. If set to 100% width, the height will scale accordingly.":[""],"100% Width":[""],"While the width and height defined above will be used for cropping (if enabled) and the base slideshow dimensions, you may also set the slideshow to stretch to its container.":[""],"Global Settings":[""],"Here you will find general account settings and options related to your account":[""],"License Key":[""],"Update license key":[""],"Help Improve MetaSlider":[""],"Enable Gallery (Beta)":[""],"Fast, SEO-focused, fully WCAG accessible and easy to use galleries.":[""],"The data in this file does not appear to be valid.":[""],"Found %s slideshows":[""],"Image search complete":[""],"We are still searching for your images. Please wait.":[""],"You have no slideshows to import":[""],"Some images are missing":[""],"When images are missing you will have to manually update or delete the slide after the import completes.":[""],"Continue":[""],"Importing %s slideshows...":[""],"Import successful":[""],"Easily import slideshows generated by MetaSlider. This requires a file generated from the Export tab.":[""],"Load slideshows":[""],"If you have an export file, you may upload it here to be processed. Information about each slideshow will be presented below. You will be able to confirm before importing.":[""],"Importing...":[""],"Processing...":[""],"Upload file":[""],"Date: %s":[""],"Version: v%s":[""],"All images required to import are accounted for.":[""],"The following images were not found:":[""],"No image name provided":[""],"Note: You can still import slideshows that contain missing images. You will just need to manually update or delete these slides from their individual slideshow edit pages.":[""],"Import %s slideshows":[""],"Select the slideshows you wish to import below, then press here to import them.":[""],"Post Feed slide":[""],"External slide":[""],"Image not found<br>%s":[""],"No slides found":[""],"Loading %s slideshows...":[""],"You have no slideshows to export":[""],"Exporting %s slideshows...":[""],"Export successful":[""],"No slideshows found.":[""],"Create a new slideshow now":[""],"Press to load available slideshows then choose which slideshows to export. If you only have a few slideshows we will prepare them automatically.":[""],"You have %s slideshows that can be exported. Information about each slideshow will be presented below.":[""],"Refresh":[""],"Load":[""],"Pressing export will gather and organize all of your slideshows into a single data file that you can use to restore on another website.":[""],"Your images will need to be exported manually and uploaded to the new website before importing these slideshows. Additionally, image file names need to match as we will use built in WordPress functions to locate the image based on its current name.":[""],"Learn how":[""],"Please note that content contained in \"Post Type\" slides will not be exported. Only the slide configurations that refer to the content will be.":[""],"Export %s slideshows":[""],"Select the slideshows you wish to export below, then press here to export them.":[""],"Failed to open the settings page...":[""],"Opening settings page...":[""],"Page not found: %s":[""],"Add a slide":[""],"Thanks for using MetaSlider. To get started, click the \"Add Slide\" button to create your first slide.":[""],"Select images":[""],"You can easily add an image from one of the options here. Additionally we provide free images from the Unsplash library.":[""],"Next step":[""],"Search unsplash":[""],"Choose an image from the left, or search for any topic here to bring up more images.":[""],"Hide step":[""],"Create your slide":[""],"After you have selected an image, press here to create your slide.":[""],"Preview Slideshow":[""],"Now that you have some slides set, you can preview your slideshow by pressing here.":[""],"Slideshow settings":[""],"Edit slideshow":[""],"Additional CSS Class":[""],"Refresh preview":[""],"Loading slideshows list...":[""],"Create one now!":[""],"Loading slideshow":[""],"Update preview":[""],"Select a slideshow":[""],"Normal width":[""],"Wide width":[""],"Full width":[""],"Use MetaSlider to insert slideshows and sliders in your page":[""],"slider":[""],"slideshow":[""],"gallery":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Like MetaSlider? Please help us by giving a positive review at WordPress.org":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Review MetaSlider &rarr;":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Our word to keep MetaSlider compatible with the latest versions of WordPress.":[""],"Keep the plugin name \"MetaSlider\" when possible\u0004Insert MetaSlider":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible. Also, \"Black Friday\" is the name of an event in the United States\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until November 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until December 25th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until January 14th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until April 30th!":[""],"Keep the phrase \"MetaSlider Add-on Pack\" when possible\u0004Upgrade your slideshows! Join today and you get 50% off MetaSlider Pro until July 31st!":[""],"This is a keyboard shortcut.\u0004(alt + p)":[""],"\"FlexSlider\" and \"Nivo Slider\" are plugin names.\u0004Including FlexSlider, Nivo Slider and we will soon be adding more.":[""],"Keep the branding \"Smart Crop\" together when possible\u0004Unique Smart Crop functionality ensures your slides are perfectly resized.":[""],"\"YouTube\" and \"Vimeo\" are brand names.\u0004Easily include responsive high definition YouTube and Vimeo videos.":[""],"Short for milliseconds\u0004ms":[""],"1000 by 1000 pixels\u0004%s by %s pixels":[""],"The ENTER key on a keyboard\u0004Enter":[""],"The ESCAPE key on a keyboard\u0004Escape":[""],"number of slides, ex \"7 slides\"\u0004%s slides":[""]}}}inc/slider/metaslider.responsive.class.php000064400000005005151213255520014742 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Responsive Slider specific markup, javascript, css and settings.
 */
class MetaResponsiveSlider extends MetaSlider
{
    protected $js_function = 'responsiveSlides';
    protected $js_path = 'sliders/responsiveslides/responsiveslides.min.js';
    protected $css_path = 'sliders/responsiveslides/responsiveslides.css';
    
    /**
     * Constructor
     *
     * @param integer $id slideshow ID
     */
    public function __construct($id, $shortcodeSettings)
    {
        parent::__construct($id, $shortcodeSettings);
        add_filter('metaslider_css_classes', array($this,'addNoTextCss'), 11, 3);
    }

    public function addNoTextCss($class, $id, $settings)
    {
        if (empty($settings["prevText"]) || empty($settings["nextText"])) {
            return $class .= " no-text";
        }
        remove_filter('metaslider_css_classes', array($this, 'addNoTextCss'), 12);
        return $class;
    }

    /**
     * Detect whether thie slide supports the requested setting,
     * and if so, the name to use for the setting in the Javascript parameters
     *
     * @param  array $param Parameters
     * @return false (parameter not supported) or parameter name (parameter supported)
     */
    protected function get_param($param)
    {
        $params = array(
            'prevText' => 'prevText',
            'nextText' => 'nextText',
            'delay' => 'timeout',
            'animationSpeed' => 'speed',
            'hoverPause' => 'pause',
            'navigation' => 'pager',
            'links' => 'nav',
            'autoPlay' => 'auto'
        );

        if (isset($params[$param])) {
            return $params[$param];
        }

        return false;
    }

    /**
     * Build the HTML for a slider.
     *
     * @return string slider markup.
     */
    protected function get_html()
    {
        $return_value = "<ul id='" . $this->get_identifier() . "' class='rslides'>";

        $first = true;
        $i = 0;
        foreach ($this->slides as $slide) {
            $style = "";

            if (!$first) {
                $style = " style='display: none;'";
            }

            $return_value .= "\n            <li{$style} aria-roledescription='slide' aria-labelledby='slide-" . esc_attr($i) . "'>" . $slide . "</li>";
            $first = false;
            $i++;
        }

        $return_value .= "\n        </ul>";

        return apply_filters('metaslider_responsive_slider_get_html', $return_value, $this->id, $this->settings);
;
    }
}
inc/slider/metaslider.coin.class.php000064400000003400151213255520013472 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Override parent 'MetaSlider' class with CoinSlider specific markup,
 * javascript, css and settings.
 */
class MetaCoinSlider extends MetaSlider
{
    protected $js_function = 'coinslider';
    protected $js_path = 'sliders/coin-slider/coin-slider.min.js';
    protected $css_path = 'sliders/coin-slider/coin-slider-styles.css';

    /**
     * Enable the parameters that are accepted by the slider
     *
     * @param  array $param Parameters
     * @return boolean
     */
    protected function get_param($param)
    {
        $params = array(
            'effect' => 'animation',
            'width' => 'width',
            'height' => 'height',
            'sph' => 'sph',
            'spw' => 'spw',
            'delay' => 'delay',
            'sDelay' => 'sDelay',
            'opacity' => 'opacity',
            'titleSpeed' => 'titleSpeed',
            'hoverPause' => 'hoverPause',
            'navigation' => 'showNavigationButtons',
            'links' => 'showNavigationPrevNext',
            'prevText' => 'prevText',
            'nextText' => 'nextText',
            'autoPlay' => 'autoplay'
        );

        if (isset($params[$param])) {
            return $params[$param];
        }

        return false;
    }

    /**
     * Build the HTML for a slider.
     *
     * @return string slider markup.
     */
    protected function get_html()
    {
        $return_value = "<div id='" . $this->get_identifier() . "' class='coin-slider'>";

        foreach ($this->slides as $slide) {
            $return_value .= "\n" . $slide;
        }

        $return_value .= "\n        </div>";

        return apply_filters('metaslider_coin_slider_get_html', $return_value, $this->id, $this->settings);
    }
}
inc/slider/metaslider.flex.class.php000064400000044424151213255520013513 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Flex Slider specific markup, javascript, css and settings.
 */
class MetaFlexSlider extends MetaSlider
{
    protected $js_function = 'flexslider';
    protected $js_path = 'sliders/flexslider/jquery.flexslider.min.js';
    protected $css_path = 'sliders/flexslider/flexslider.css';

    /**
     * Constructor
     *
     * @param integer $id slideshow ID
     */
    /**
     * Constructor
     *
     * @param int   $id                 ID
     * @param array $shortcode_settings Short code settings
     */
    public function __construct($id, $shortcode_settings)
    {
        parent::__construct($id, $shortcode_settings);

        add_filter('metaslider_flex_slider_parameters', array( $this, 'enable_carousel_mode' ), 10, 2);
        add_filter('metaslider_flex_slider_parameters', array( $this, 'enable_pause_play'), 10, 2);
        add_filter('metaslider_flex_slider_parameters', array( $this, 'manage_easing' ), 10, 2);
        add_filter('metaslider_flex_slider_parameters', array( $this, 'manage_tabindex' ), 99, 3);
        add_filter('metaslider_flex_slider_parameters', array( $this, 'manage_aria_current' ), 99, 3);

        if(metaslider_pro_is_active() == false) {
            add_filter('metaslider_flex_slider_parameters', array( $this, 'metaslider_flex_loop'), 99, 3);
        }

        if( metaslider_pro_is_active() ) {
            add_filter( 'metaslider_flex_slider_parameters', array( $this, 'custom_delay_per_slide' ), 10, 3 );
        }

        add_filter('metaslider_css', array( $this, 'get_carousel_css' ), 11, 3);
        add_filter('metaslider_css', array( $this, 'hide_for_mobile' ), 11, 3);
        add_filter('metaslider_css_classes', array( $this, 'remove_bottom_margin' ), 11, 3);

        $global_settings = get_option( 'metaslider_global_settings' );
        if (
            !isset($global_settings['mobileSettings']) ||
            (isset($global_settings['mobileSettings']) && true == $global_settings['mobileSettings'])
        ) {
            if($this->check_mobile_settings() == true) {
                add_filter("metaslider_flex_slider_javascript_before", array( $this, 'manage_responsive' ), 10, 3);
            }
        }
        
    }

    /**
     * Adjust the slider parameters so they're comparible with the carousel mode
     *
     * @param array   $options   Slider options
     * @param integer $slider_id Slider ID
     * @return array $options
     */
    public function enable_carousel_mode($options, $slider_id)
    {
        if (isset($options["carouselMode"])) {  
            if ($options["carouselMode"] == "true") {
                $options["itemWidth"] = $this->get_setting('width');
                $options["animation"] = "'slide'";
                $options["direction"] = "'horizontal'";
                $options["minItems"] = 1;
                $options["move"] = 1;
                $options["itemMargin"] = apply_filters('metaslider_carousel_margin', $this->get_setting('carouselMargin'), $slider_id);
                //activate infinite loop when carousel is set to 'continously' and 'autoplay'
                if($this->get_setting('infiniteLoop') == 'true'){
                    $options["controlNav"] = "false";
                    $options["directionNav"] = "false";
                    $options["slideshow"] = "false";
                    $options['start'] = isset($options['start']) ? $options['start'] : array();
                    $options['start'] = array_merge($options['start'], array("
                        var ul = $('#metaslider_" . $slider_id . " .slides');
                        ul.find('li').clone(true).appendTo(ul);
                    "));
                }                
            }
            unset($options["carouselMode"]);
        }

        // we don't want this filter hanging around if there's more than one slideshow on the page
        remove_filter('metaslider_flex_slider_parameters', array( $this, 'enable_carousel_mode' ), 10, 2);
        return $options;
    }

    /**
     * Adjust the slider parameters to enable pausePlay if both autoPlay (slideshow) or pausePlay are enabled
     *
     * @since 3.90
     * 
     * @param array   $options   Slider options
     * @param integer $slider_id Slider ID
     * @return array $options
     */
    public function enable_pause_play($options, $slider_id)
    {
        if (isset($options['pausePlay']) && $options['pausePlay'] == 'true') { 
            // Check if auto play is enabled 
            if (isset($options['slideshow']) && $options['slideshow'] == 'true') {
                $options['pausePlay'] = "true";
            } else {
                unset($options['pausePlay']);
            }
        }

        // We don't want this filter hanging around if there's more than one slideshow on the page
        remove_filter('metaslider_flex_slider_parameters', array( $this, 'enable_pause_play' ), 10, 2);

        return $options;
    }

    /**
     * Ensure CSS transitions are disabled when easing is enabled.
     *
     * @param array   $options   Slider options
     * @param integer $slider_id Slider ID
     * @return array $options
     */
    public function manage_easing($options, $slider_id)
    {
        if ($options["animation"] == '"fade"') {
            unset($options['easing']);
        }

        if (isset($options["easing"]) && $options["easing"] != '"linear"') {
            $options['useCSS'] = 'false';
        }
        remove_filter('metaslider_flex_slider_parameters', array( $this, 'manage_easing' ), 10, 2);

        return $options;
    }

    /**
     * Add optional custom delay per slide
     * 
     * @since 3.61
     */
    public function custom_delay_per_slide( $options, $slider_id, $settings )
    {
        if ( class_exists( 'MetaSliderAdvancedSettings' ) ) {
            $get_slides = $this->get_slides();
            $advancedSettings = new MetaSliderAdvancedSettings;

            $options = $advancedSettings->build_custom_delay_js(
                $options,
                $settings,
                $get_slides->posts,
                $slider_id
            );
        }

        return $options;
    }

     /**
     * Add JavaScript to stop slideshow
     *
     * @param array $options SLide options
     * @param integer $slider_id Slider ID
     * @param array $settings Slide settings
     * @return array
     */
    public function metaslider_flex_loop($options, $slider_id, $settings)
    {
        if (isset($settings['loop']) && 'stopOnFirst' === $settings['loop']) {
            $options['after'] = isset($options['after']) ? $options['after'] : array();
            $options['after'] = array_merge(
                $options['after'],
                array("if (slider.currentSlide == 0) { slider.pause(); }")
            );
        }

        if (isset($settings['loop']) && 'stopOnLast' === $settings['loop']) {
            $options['animationLoop'] = "false";
        }

        return $options;
    }

    /**
     * Add a 'nav-hidden' class to slideshows where the navigation is hidde
     *
     * @param  string $class    Slider class
     * @param  int    $id       Slider ID
     * @param  array  $settings Slider Settings
     * @return string
     */
    public function remove_bottom_margin($class, $id, $settings)
    {
        if (isset($settings["navigation"]) && 'false' == $settings['navigation']) {
            return $class .= " nav-hidden";
        }

        // We don't want this filter hanging around if there's more than one slideshow on the page
        remove_filter('metaslider_css_classes', array($this, 'remove_bottom_margin' ), 12);
        return $class;
    }

    /**
     * Return css to ensure our slides are rendered correctly in the carousel
     *
     * @param string  $css       Css
     * @param array   $settings  Css settings
     * @param integer $slider_id SliderID
     * @return string $css
     */
    public function get_carousel_css($css, $settings, $slider_id)
    {
        if (isset($settings['carouselMode']) && $settings['carouselMode'] == 'true') {
            $margin = apply_filters('metaslider_carousel_margin', $this->get_setting('carouselMargin'), $slider_id);
            $css .= "\n        #metaslider_{$slider_id}.flexslider .slides li {margin-right: {$margin}px !important;}";
            if(isset($settings['infiniteLoop']) && $settings['infiniteLoop'] == 'true'){
                //check if theres mobile setting to subtract from the slide count
                if($this->check_mobile_settings() == true) {
                    $slides = count($this->slides) - 1;
                } else {
                    $slides = count($this->slides);
                }
                $double = $slides * 2;
                $animationtime = ($settings['animationSpeed'] * $slides) + ($settings['delay'] * $slides);

                $css .= "
                    @keyframes infiniteloop_" . $slider_id . " {
                        0% {
                            transform: translateX(0);
                        }
                        100% {
                            transform: translateX(calc(-" . $settings["width"] . "px * " . $slides . "));
                        }
                    }
                    #metaslider_{$slider_id}.flexslider .slides {
                        -webkit-animation: infiniteloop_" . $slider_id . " " . $animationtime . "ms linear infinite;
                                animation: infiniteloop_" . $slider_id . " " . $animationtime . "ms linear infinite;
                        display: flex;
                        width: calc(" . $settings["width"] . "px * " . $double . ");
                    }
                    #metaslider_{$slider_id}.flexslider .slides:hover{
                        animation-play-state: paused;
                    }
                ";
            }
        }

        // we don't want this filter hanging around if there's more than one slideshow on the page
        remove_filter('metaslider_css', array( $this, 'get_carousel_css' ), 11, 3);

        return $css;
    }

    /**
     * Hide slideshow with mobile settings on first load
     */
    public function hide_for_mobile($css, $settings, $slider_id)
    {
        $global_settings = get_option( 'metaslider_global_settings' );
        if ( isset($global_settings['mobileSettings']) && true == $global_settings['mobileSettings']
        ){
            if($this->check_mobile_settings() == true) {
                $css .= "\n        #metaslider_{$slider_id}.flexslider {display: none;}";
            }
        }
        remove_filter('metaslider_css', array( $this, 'hide_for_mobile' ), 11, 3);
        return $css;
    }

    /**
     * Enable the parameters that are accepted by the slider
     *
     * @param  string $param Parameters
     * @return array|boolean enabled parameters (false if parameter doesn't exist)
     */
    protected function get_param($param)
    {
        $params = array(
            'effect' => 'animation',
            'direction' => 'direction',
            'prevText' => 'prevText',
            'nextText' => 'nextText',
            'delay' => 'slideshowSpeed',
            'animationSpeed' => 'animationSpeed',
            'hoverPause' => 'pauseOnHover',
            'reverse' => 'reverse',
            'keyboard' => 'keyboard',
            'touch' => 'touch',
            'navigation' => 'controlNav',
            'links' => 'directionNav',
            'carouselMode' => 'carouselMode',
            'easing' => 'easing',
            'autoPlay' => 'slideshow',
            'firstSlideFadeIn' => 'fadeFirstSlide',
            'smoothHeight' => 'smoothHeight',
            'pausePlay' => 'pausePlay'
        );
        return isset($params[$param]) ? $params[$param] : false;
    }

    /**
     * Include slider assets
     */
    public function enqueue_scripts()
    {
        parent::enqueue_scripts();

        if ($this->get_setting('printJs') == 'true' && ( $this->get_setting('effect') == 'slide' || $this->get_setting('carouselMode') == 'true' )) {
            wp_enqueue_script('metaslider-easing', METASLIDER_ASSETS_URL . 'easing/jQuery.easing.min.js', array( 'jquery' ), METASLIDER_ASSETS_VERSION);
        }
    }

    /**
     * Build the HTML for a slider.
     *
     * @return string slider markup.
     */
    protected function get_html()
    {
        $class = $this->get_setting('noConflict') == 'true' ? "" : ' class="flexslider"';

        //accessibility option
        if ($this->get_setting('ariaLive') == 'true' && $this->get_setting('autoPlay') == 'false') {
            $aria_live = " aria-live='polite'";
        } elseif ($this->get_setting('ariaLive') == 'true' && $this->get_setting('autoPlay') == 'true') {
            $aria_live = " aria-live='off'";
        } else {
            $aria_live = '';
        }
        
        $return_value = '';
        if($this->check_mobile_settings() == true) {
            $return_value .= '<div id="temp_' . $this->get_identifier() . '" class="flexslider">';
            $return_value .= "<ul" . $aria_live . " class='slides'></ul></div>";
        }
        $return_value .= '<div id="' . $this->get_identifier() . '"' . $class . '>';
        $return_value .= "\n            <ul" . $aria_live . " class='slides'>";

        foreach ($this->slides as $slide) {
            // backwards compatibility with older versions of MetaSlider Pro (< v2.0)
            // MS Pro < 2.0 does not include the <li>
            // MS Pro 2.0+ returns the <li>
            if (strpos($slide, '<li') === 0) {
                $return_value .= "\n                " . $slide;
            } else {
                $return_value .= "\n                <li style=\"display: none;\" >" . $slide . "</li>";
            }
        }

        $return_value .= "\n            </ul>";
        $return_value .= "\n        </div>";

        // show the first slide
        if ($this->get_setting('carouselMode') != 'true') {
            $return_value =  preg_replace('/none/', 'block', $return_value, 1);
        }

        return apply_filters('metaslider_flex_slider_get_html', $return_value, $this->id, $this->settings);
    }

    /**
     * Function to show/hide slides per device on FlexSlider
     */
    public function manage_responsive($javascript)
    {
        $js = $javascript;
        $identifier = $this->get_identifier();
        $global_settings = get_option( 'metaslider_global_settings' );
        if (
            !isset($global_settings['mobileSettings']) ||
            (isset($global_settings['mobileSettings']) && true == $global_settings['mobileSettings'])
        ) {
            if($this->check_mobile_settings() == true) {
                $js .= "
                jQuery(document).ready(function($){
                    var newBreakpoint = window.getComputedStyle(document.body, ':after').getPropertyValue('content');";
                $js .= 'newBreakpoint = newBreakpoint.replace(/"/g, "");';
                $js .= "
                    var liHTML = $('#" . $identifier . " .slides li:not(.clone, .hidden_' + newBreakpoint + ')').removeAttr('style').toArray();
                    $('#temp_" . $identifier . " .slides').append(liHTML);
                    $('#" . $identifier . "').remove();
                    $('#temp_" . $identifier . "')." . $this->js_function . "({" .   $this->_get_javascript_parameters() . "});
                    $('#temp_" . $identifier . "').attr('id', '" . $identifier . "');
                    $(document).trigger('metaslider/initialized', '#" . $identifier . "');
                    $('#" . $identifier . "').show();
                });";
            }
        }
        remove_filter('metaslider_flex_slider_javascript_before', array( $this, 'manage_responsive' ), 10, 3);
        return $js;
    }

    /**
     * Add JavaScript for tabindex
     *
     * @param array $options SLide options
     * @param integer $slider_id Slider ID
     * @param array $settings Slide settings
     * @return array
     */
    public function manage_tabindex($options, $slider_id, $settings)
    {
        if (isset($settings['tabIndex']) && 'true' == $settings['tabIndex']) {
            $options['start'] = isset($options['start']) ? $options['start'] : array();
            $options['start'] = array_merge(
                $options['start'],
                array(
                    "
                    $('#metaslider_" . $slider_id . " .flex-control-nav').attr('role', 'tablist');
                    $('#metaslider_" . $slider_id . " .flex-control-nav a:not(.flex-active)').attr('tabindex', '-1');
                    "
                )
            );

            $options['after'] = isset($options['after']) ? $options['after'] : array();
            $options['after'] = array_merge(
                $options['after'],
                array(
                    "
                    $('#metaslider_" . $slider_id . " .flex-control-nav a.flex-active').removeAttr('tabindex');
                    $('#metaslider_" . $slider_id . " .flex-control-nav a:not(.flex-active)').attr('tabindex', '-1');
                    "
                )
            );
        }

        return $options;
    }

    /**
     * Add aria-current attribute to active navigation
     *
     * @param array $options SLide options
     * @param integer $slider_id Slider ID
     * @param array $settings Slide settings
     * @return array
     * @since 3.90
     */
    public function manage_aria_current($options, $slider_id, $settings)
    {
        if (isset($settings['ariaCurrent']) && 'true' == $settings['ariaCurrent']) {
            $options['start'] = isset($options['start']) ? $options['start'] : array();
            $options['start'] = array_merge(
                $options['start'],
                array(
                    "
                    $('#metaslider_" . $slider_id . " .flex-control-nav a.flex-active').attr('aria-current', 'true');
                    $('#metaslider_" . $slider_id . " .flex-control-nav a:not(.flex-active)').removeAttr('aria-current');
                    "
                )
            );
            $options['after'] = isset($options['after']) ? $options['after'] : array();
            $options['after'] = array_merge(
                $options['after'],
                array(
                    "
                    $('#metaslider_" . $slider_id . " .flex-control-nav a.flex-active').attr('aria-current', 'true');
                    $('#metaslider_" . $slider_id . " .flex-control-nav a:not(.flex-active)').removeAttr('aria-current');
                    "
                )
            );
        }
        return $options;
    }
}
inc/slider/metaslider.class.php000064400000066264151213255520012564 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Generic Slider super class. Extended by library specific classes.
 *
 * This class handles all slider related functionality, including saving settings and outputting
 * the slider HTML (front end and back end)
 */
class MetaSlider
{
    public $id = 0; // slider ID
    public $identifier = 0; // unique identifier
    public $slides = array(); // slides belonging to this slider
    public $settings = array(); // slider settings

    /**
     * Constructor
     *
     * @param int   $id                 Slider ID
     * @param array $shortcode_settings Short code settings
     */
    public function __construct($id, $shortcode_settings)
    {
        $this->id = $id;
        $this->settings = array_merge($shortcode_settings, $this->get_settings());
        $this->identifier = 'metaslider_' . $this->id;
        $this->populate_slides();
    }

    /**
     * Return the unique identifier for the slider (used to avoid javascript conflicts)
     *
     * @return string unique identifier for slider
     */
    protected function get_identifier()
    {
        return $this->identifier;
    }

    /**
     * Get settings for the current slider
     *
     * @return array slider settings
     */
    private function get_settings()
    {
        $settings = get_post_meta($this->id, 'ml-slider_settings', true);

        if (
            is_array($settings) &&
            isset($settings['type']) &&
            in_array($settings['type'], array( 'flex', 'coin', 'nivo', 'responsive' )) 
        ) {
            return $settings;
        } else {
            return $this->get_default_parameters();
        }
    }

    /**
     * Return an individual setting
     *
     * @param string $name Name of the setting
     * @return string setting value or 'false'
     */
    public function get_setting($name)
    {
        if (!isset($this->settings[$name])) {
            $defaults = $this->get_default_parameters();

            if (isset($defaults[$name])) {
                return $defaults[$name] ? $defaults[$name] : 'false';
            }
        } else {
            if (strlen($this->settings[$name]) > 0) {
                return $this->settings[$name];
            }
        }

        return 'false';
    }

    /**
     * Get the slider libary parameters, this lists all possible parameters and their
     * default values. Slider subclasses override this and disable/rename parameters
     * appropriately.
     *
     * @return string javascript options
     */
    public function get_default_parameters()
    {
        $params = array(
            'type' => 'flex',
            'random' => false,
            'cssClass' => '',
            'printCss' => true,
            'printJs' => true,
            'width' => 700,
            'height' => 300,
            'spw' => 7,
            'sph' => 5,
            'delay' => 3000,
            'sDelay' => 30,
            'opacity' => 0.7,
            'titleSpeed' => 500,
            'effect' => 'random',
            'navigation' => true,
            'filmstrip_delay' => 7000,
            'filmstrip_animationSpeed' => 600,
            'links' => true,
            'hoverPause' => true,
            'theme' => 'default',
            'direction' => 'horizontal',
            'reverse' => false,
            'keyboard' => true,
            'touch' => true,
            'animationSpeed' => 600,
            'prevText' => __('Previous', 'ml-slider'),
            'nextText' => __('Next', 'ml-slider'),
            'slices' => 15,
            'center' => false,
            'smartCrop' => true,
            'smoothHeight' => false,
            'carouselMode' => false,
            'carouselMargin' => 5,
            'firstSlideFadeIn' => false,
            'easing' => 'linear',
            'autoPlay' => false,
            'thumb_width' => 150,
            'thumb_height' => 100,
            'responsive_thumbs' => true,
            'thumb_min_width' => 100,
            'fullWidth' => true,
            'noConflict' => true,
            'mobileArrows_smartphone' => false,
            'mobileArrows_tablet' => false,
            'mobileArrows_laptop' => false,
            'mobileArrows_desktop' => false,
            'mobileNavigation_smartphone' => false,
            'mobileNavigation_tablet' => false,
            'mobileNavigation_laptop' => false,
            'mobileNavigation_desktop' => false,
            'ariaLive' => false,
            'tabIndex' => false,
            'pausePlay' => false,
            'ariaCurrent' => false
        );
        return apply_filters('metaslider_default_parameters', $params);
    }

    /**
     * The main query for extracting the slides for the slideshow
     *
     * @return WP_Query
     */
    public function get_slides()
    {
        $slideshow_id = $this->id;
        $slideshow_settings = $this->settings;
        $args = array(
            'force_no_custom_order' => true,
            'orderby' => 'menu_order',
            'order' => 'ASC',
            'post_type' => array('attachment', 'ml-slide'),
            'post_status' => array('inherit', 'publish'),
            'lang' => '', // polylang, ingore language filter
            'suppress_filters' => 1, // wpml, ignore language filter
            'posts_per_page' => -1,
            'tax_query' => array(
                array(
                    'taxonomy' => 'ml-slider',
                    'field' => 'slug',
                    'terms' => $slideshow_id
                )
            )
        );

        // If there is a var set to include the trashed slides, then include it
        if (metaslider_viewing_trashed_slides($slideshow_id)) {
            $args['post_status'] = array('trash');
        }

        // Filter to update the args before the query is built
        $args = apply_filters('metaslider_populate_slides_args', $args, $slideshow_id, $slideshow_settings);

        $the_query = new WP_Query($args);

        // Filter to alter the query itself if needed
        return apply_filters('metaslider_get_slides_query', $the_query, $slideshow_id, $slideshow_settings);
    }

    /**
     * Return slides for the current slider
     *
     * @return array collection of slides belonging to the current slider
     */
    private function populate_slides()
    {
        $slides = array();
        $slideshow_id = $this->id;

        // Filter to alter the slides query before they are "built"
        $query = apply_filters('metaslider_populate_slides_query', $this->get_slides(), $slideshow_id);

        while ($query->have_posts()) {
            $query->next_post();
            $slide_id = $query->post->ID;

            $type = get_post_meta($slide_id, 'ml-slider_type', true);
            $type = $type ? $type : 'image'; // backwards compatibility, fall back to 'image'

            // Skip over deleted media files
            if ('image' === $type && 'ml-slide' === get_post_type($slide_id) && !get_post_thumbnail_id($slide_id)) {
                continue;
            }

            // As far as I can tell this filter is the "meat" of this plugin, so this check should always pass
            // for image slides, but handles showing only pro slides when the filter is available
            if (has_filter("metaslider_get_{$type}_slide")) {
                // Note: Extra $slide_id parameter added v3.10.0 as this filter is useless without it.
                $slide = apply_filters("metaslider_get_{$type}_slide", $slide_id, $slideshow_id, $slide_id);

                // The filter above can handle an array or a string, but it should be an array after this
                $slides = array_merge($slides, (array) $slide);
            }
        }

        // Shuffle slides as needed
        if (!is_admin() && filter_var($this->get_setting('random'), FILTER_VALIDATE_BOOLEAN)) {
            shuffle($slides);
        }

        // Last chance to add/remove/manipulate slide output (Added 3.10.0)
        $this->slides = apply_filters("metaslider_filter_available_slides", $slides, $slideshow_id);

        return $this->slides;
    }

    /**
     * Render each slide belonging to the slider out to the screen
     */
    public function render_admin_slides()
    {
        if ( ! count( $this->slides )  && ! isset( $_GET['metaslider_add_sample_slides'] )) {
            ?>
            <p id="add-first-slide-notice" style="display: flex;">
                <span>
                    <?php _e( 'Click the "Add Slide" button to create your slideshow', 'ml-slider' ) ?>
                </span>
            </p>
            <?php

            return;
        }
        
        foreach ($this->slides as $slide) {
            echo $slide; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        }
    }

    /**
     * Output the HTML and Javascript for this slider
     *
     * @return string HTML & Javascrpt
     */
    public function render_public_slides()
    {
        $slideshow = new MetaSlider_Slideshows;
        $slideshowDetails = $slideshow->get_single($this->id);
        if ($slideshowDetails[0]['title']) {
            $slideshow_title = $slideshowDetails[0]['title'];
        } else {
            $slideshow_title = 'Slideshow';
        }

        $html[] = '<div id="metaslider-id-' . esc_attr($this->id) . '" style="' . esc_attr($this->get_container_style()) . '" class="' . esc_attr($this->get_container_class()) . '" role="region" aria-roledescription="Slideshow" aria-label="' . esc_attr($slideshow_title) . '">';
        $html[] = '    <div id="' . esc_attr($this->get_container_id()) . '">';
        $html[] = '        ' . $this->get_html();
        $html[] = '        ' . $this->get_html_after();
        $html[] = '    </div>';
        $html[] = '</div>';

        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);

        $global_settings = get_option( 'metaslider_global_settings' );

        if (current_user_can($capability) && ! is_admin()) {
            if (isset( $global_settings['editLink'])) {
                if (!empty($global_settings['editLink'])) {
                    $editUrl = admin_url("admin.php?page=metaslider&id={$this->id}");
                    $html[] = '<div><a href="' . esc_url($editUrl) . '" target="_blank" class="ms-edit-frontend">' . esc_html__('Edit Slideshow', 'ml-slider') . ' <span class="dashicons dashicons-external"></span></a></div>';
                }
            }
        }

        $slideshow = implode("\n", $html);

        $slideshow = apply_filters('metaslider_slideshow_output', $slideshow, $this->id, $this->settings);

        return $slideshow;
    }

    /**
     * Return the ID to use for the container
     */
    private function get_container_id()
    {
        $container_id = 'metaslider_container_' . $this->id;

        $id = apply_filters('metaslider_container_id', $container_id, $this->id, $this->settings);

        return $id;
    }

    /**
     * Return the classes to use for the slidehsow container
     */
    private function get_container_class()
    {

        // Add the version to the class name (if possible)
        $version_string = str_replace('.', '-', urlencode(METASLIDER_VERSION));
        $version_string .= defined('METASLIDERPRO_VERSION') ? ' ml-slider-pro-' . str_replace('.', '-', urlencode(METASLIDERPRO_VERSION)) : '';
        $class = "ml-slider-{$version_string} metaslider metaslider-{$this->get_setting('type')} metaslider-{$this->id} ml-slider";

        // apply the css class setting
        if ('false' != $this->get_setting('cssClass')) {
            $class .= " " . $this->get_setting('cssClass');
        }
        // when passed in the shortcode, the attribute names are lowercased.
        if ('false' != $this->get_setting('cssclass')) {
            $class .= " " . $this->get_setting('cssclass');
        }

        //add mobile settings class
        if ('false' != $this->get_setting('mobileArrows_smartphone')) {
            $class .= ' hide-arrows-smartphone';
        }
        if ('false' != $this->get_setting('mobileArrows_tablet')) {
            $class .= ' hide-arrows-tablet';
        }
        if ('false' != $this->get_setting('mobileArrows_laptop')) {
            $class .= ' hide-arrows-laptop';
        }
        if ('false' != $this->get_setting('mobileArrows_desktop')) {
            $class .= ' hide-arrows-desktop';
        }
        if ('false' != $this->get_setting('mobileNavigation_smartphone')) {
            $class .= ' hide-navigation-smartphone';
        }
        if ('false' != $this->get_setting('mobileNavigation_tablet')) {
            $class .= ' hide-navigation-tablet';
        }
        if ('false' != $this->get_setting('mobileNavigation_laptop')) {
            $class .= ' hide-navigation-laptop';
        }
        if ('false' != $this->get_setting('mobileNavigation_desktop')) {
            $class .= ' hide-navigation-desktop';
        }

        // handle any custom classes
        $class = apply_filters('metaslider_css_classes', $class, $this->id, $this->settings);
        return $class;
    }

    /**
     * Return the inline CSS style for the slideshow container.
     */
    private function get_container_style()
    {
        // default
        $style = "max-width: {$this->get_setting( 'width' )}px;";

        // carousels are always 100% wide
        if ($this->get_setting('carouselMode') == 'true' || ( $this->get_setting('fullWidth') == 'true' ) && $this->get_setting('type') != 'coin') {
            $style = "width: 100%;";
        }

        // percentWidth showcode parameter takes precedence
        if ($this->get_setting('percentwidth') != 'false' && $this->get_setting('percentwidth') > 0) {
            $style = "width: {$this->get_setting( 'percentwidth' )}%;";
        }

        // center align the slideshow
        if ($this->get_setting('center') != 'false') {
            $style .= " margin: 0 auto;";
        }

        // handle any custom container styles
        $style = apply_filters('metaslider_container_style', $style, $this->id, $this->settings);

        return $style;
    }

    /**
     * Return the Javascript to kick off the slider. Code is wrapped in a timer
     * to allow for themes that load jQuery at the bottom of the page.
     *
     * Delay execution of slider code until jQuery is ready (supports themes where
     * jQuery is loaded at the bottom of the page)
     *
     * @return string javascript
     */
    private function get_inline_javascript()
    {   
        $custom_js_before = $this->get_custom_javascript_before();
        $custom_js_after = $this->get_custom_javascript_after();

        $identifier = $this->get_identifier();

        $type = $this->get_setting('type');
        $keyboard = $this->get_setting('keyboard');

        $script = "var " . $identifier . " = function($) {";
        $script .= $custom_js_before;
        $script .= "\n            $('#" . $identifier . "')." . $this->js_function . "({ ";
        $script .= "\n                " . $this->get_javascript_parameters();
        $script .= "\n            });";
        $script .= $custom_js_after;
        $script .= "\n            $(document).trigger('metaslider/initialized', '#$identifier');";
        $script .= "\n        };";

        if($keyboard == "on") {
            $script .= "\n jQuery(document).ready(function($) {";
            $script .= "\n $('.metaslider').attr('tabindex', '0');";
            $script .= "\n $(document).on('keyup.slider', function(e) {";
            if($type == "responsive") {          
                $script .= "\n      if (e.keyCode == 37) {";
                $script .= "\n          $('.prev').trigger('click');";
                $script .= "\n      } else if (e.keyCode == 39) {";
                $script .= "\n          $('.next').trigger('click');";
                $script .= "\n      }";
            } elseif ($type == "nivo") {
                $script .= "\n      if (e.keyCode == 37) {";
                $script .= "\n          $('a.nivo-prevNav').click();";
                $script .= "\n      } else if (e.keyCode == 39) {";
                $script .= "\n          $('a.nivo-nextNav').click();";
                $script .= "\n      }";
            } elseif ($type == "coin") {
                $script .= "\n      if (e.keyCode == 37) {";
                $script .= "\n          $('a.cs-prev').trigger('click');";
                $script .= "\n      } else if (e.keyCode == 39) {";
                $script .= "\n          $('a.cs-next').trigger('click');";
                $script .= "\n      }";
            }
            $script .= "\n  });"; 
            $script .= "\n });";
        }

        
        $timer = "\n        var timer_" . $identifier . " = function() {";
        // this would be the sensible way to do it, but WordPress sometimes converts && to &#038;&
        // window.jQuery && jQuery.isReady ? {$identifier}(window.jQuery) : window.setTimeout(timer_{$identifier}, 1);";
        $timer .= "\n            var slider = !window.jQuery ? window.setTimeout(timer_{$this->identifier}, 100) : !jQuery.isReady ? window.setTimeout(timer_{$this->identifier}, 1) : {$this->identifier}(window.jQuery);";
        $timer .= "\n        };";
        $timer .= "\n        timer_" . $identifier . "();";

        $init = apply_filters("metaslider_timer", $timer, $this->identifier);
        
        return $script . $init;
    }

    /**
     * Custom HTML to add immediately below the markup
     */
    private function get_html_after()
    {
        $type = $this->get_setting('type');

        $html = apply_filters("metaslider_{$type}_slider_html_after", "", $this->id, $this->settings);

        if (strlen($html)) {
            return "        {$html}";
        }

        return "";
    }

    /**
     * Custom JavaScript to execute immediately before the slideshow is initialized
     */
    private function get_custom_javascript_before()
    {
        $type = $this->get_setting('type');
        $javascript = "";

        // theme/plugin conflict avoidance
        if ('true' === $this->get_setting('noConflict') && 'flex' === $type) {
            $javascript = "$('#metaslider_{$this->id}').addClass('flexslider');";
        }

        $custom_js = apply_filters("metaslider_{$type}_slider_javascript_before", $javascript, $this->id);
        $custom_js .= apply_filters("metaslider_slider_javascript", "", $this->id, $this->identifier);

        return $custom_js;
    }

    /**
     * Custom Javascript to execute immediately after the slideshow is initialized
     *
     * @return string
     */
    private function get_custom_javascript_after()
    {
        $type = $this->get_setting('type');
        $custom_js = apply_filters("metaslider_{$type}_slider_javascript", "", $this->id);
        $custom_js .= apply_filters("metaslider_slider_javascript", "", $this->id, $this->identifier);
        return $custom_js;
    }

    /**
     * Build the javascript parameter arguments for the slider.
     *
     * @return string parameters
     */
    private function get_javascript_parameters()
    {
        $options = array();

        // construct an array of all parameters
        foreach ($this->get_default_parameters() as $name => $default) {
            if ($param = $this->get_param($name)) {
                $val = $this->get_setting($name);

                if (gettype($default) == 'integer' || $val == 'true' || $val == 'false') {
                    $options[$param] = $val;
                } else {
                    $options[$param] = '"' . esc_js($val) . '"';
                }
            }
        }

        // deal with any customised parameters
        $type = $this->get_setting('type');
        $options = apply_filters("metaslider_{$type}_slider_parameters", $options, $this->id, $this->settings);
        $arg = $type == 'flex' ? 'slider' : '';

        // create key:value strings
        foreach ($options as $key => $value) {
            if (is_array($value)) {
                $pairs[] = "{$key}: function($arg) {\n                "
                    . implode("\n                ", $value)
                    . "\n                }";
            } else {
                $pairs[] = "{$key}:{$value}";
            }
        }

        return implode(",\n                ", $pairs);
    }


    public function _get_javascript_parameters()
    {
        return $this->get_javascript_parameters();
    }

    /**
     * Polyfill to handle the wp_add_inline_script() function.
     *
     * @param  string $handle   [description]
     * @param  array  $data     [description]
     * @param  string $position [description]
     * @return array
     */
    public function wp_add_inline_script($handle, $data, $position = 'after')
    {
        if (function_exists('wp_add_inline_script')) {
            return wp_add_inline_script($handle, $data, $position);
        }
        global $wp_scripts;
        if (! $data) {
            return false;
        }

        // First fetch any existing scripts
        $script = $wp_scripts->get_data($handle, 'data');

        // Append to the end
        $script .= $data;

        return $wp_scripts->add_data($handle, 'data', $script);
    }

    public function get_breakpoints()
    {
        $slideshow_defaults = '';
        $smartphone = 480;
        $tablet = 768;
        $laptop = 1024;
        $desktop = 1440;

        if (is_multisite() && $settings = get_site_option('metaslider_default_settings')) {
            $slideshow_defaults = $settings;
        }
        if ($settings = get_option('metaslider_default_settings')) {
            $slideshow_defaults = $settings;
        }

        if (! empty( $slideshow_defaults )) {
            if(isset($slideshow_defaults['smartphone'])) {
                $smartphone = $slideshow_defaults['smartphone'];
            }
            if(isset($slideshow_defaults['tablet'])) {
                $tablet = $slideshow_defaults['tablet'];
            }
            if(isset($slideshow_defaults['laptop'])) {
                $laptop = $slideshow_defaults['laptop'];
            }
            if(isset($slideshow_defaults['desktop'])) {
                $desktop = $slideshow_defaults['desktop'];
            }
        }

        $breakpoints = array($smartphone, $tablet, $laptop, $desktop);

        return $breakpoints;
    }

    public function build_mobile_css($device)
    {
        $get_slides = $this->get_slides();
        $slides = $get_slides->posts;
        $class = '';
        foreach ($slides as $slide) {
            $hidden_caption = get_post_meta( $slide->ID , 'ml-slider_hide_caption_' . $device );
            if($hidden_caption != false) {
                $class .= '.slide-' . $slide->ID . ' .caption-wrap,';
            }

            $hidden_arrows = get_post_meta( $slide->ID , 'ml-slider_hide_arrows_' . $device );
            if($hidden_arrows != false) {
                $class .= '.slide-' . $slide->ID . ' .caption-wrap,';
            }
        };

        //navigation and arrows
        $class .= ' .hide-arrows-' . $device . ' .flex-direction-nav,';
        $class .= ' .hide-navigation-' . $device . ' .flex-control-paging,';
        $class .= ' .hide-navigation-' . $device . ' .flex-control-nav,';
        $class .= ' .hide-navigation-' . $device . ' .filmstrip,';
        
        if(!empty($class)) {
            $class = rtrim($class, ',');
            $class .= '{ display: none!important; }';
        }

        return $class;
    }

    public function get_mobile_css()
    {
        $css = '';
        $ms_slider = new MetaSliderPlugin();
        $global_settings = $ms_slider->get_global_settings();
        if (
            !isset($global_settings['mobileSettings']) ||
            (isset($global_settings['mobileSettings']) && true == $global_settings['mobileSettings'])
        ) {
            $breakpoints = $this->get_breakpoints();
            $smartphone = $breakpoints[0];
            $tablet = $breakpoints[1];
            $laptop = $breakpoints[2];
            $desktop = $breakpoints[3];

            $css .= '@media only screen and (max-width: ' . ($tablet - 1) . 'px) {'; 
            $css .= 'body:after { display: none; content: "smartphone"; }';
            $css .= $this->build_mobile_css('smartphone');

            $css .= '}';

            $css .= '@media only screen and (min-width : ' . $tablet . 'px) and (max-width: ' .( $laptop - 1) . 'px) {';
            $css .= 'body:after { display: none; content: "tablet"; }';
            $css .= $this->build_mobile_css('tablet');
            $css .= '}';

            $css .= '@media only screen and (min-width : ' . $laptop . 'px) and (max-width: ' . ($desktop - 1) . 'px) {';
            $css .= 'body:after { display: none; content: "laptop"; }';
            $css .= $this->build_mobile_css('laptop');
            $css .= '}';

            $css .= '@media only screen and (min-width : ' . $desktop . 'px) {';
            $css .= 'body:after { display: none; content: "desktop"; }';
            $css .= $this->build_mobile_css('desktop');
            $css .= '}';
        }

        return $css;
    }

    public function get_mobile_slide($device)
    {
        $get_slides = $this->get_slides();
        $slides = $get_slides->posts;
        $slide_list = array();
        foreach ($slides as $key => $slide) {
            $hidden_slide = get_post_meta( $slide->ID , 'ml-slider_hide_slide_' . $device, true );
            if(!empty($hidden_slide)) {
                array_push($slide_list, $key);
            }
        }; 
        return $slide_list;
    }

    /**
     * Check if there are mobile settings for slideshows
     */
    public function check_mobile_settings()
    {
        $screens = array('smartphone', 'tablet', 'laptop', 'desktop');
        $with_setting = false;
        foreach ($screens as $screen) {
            $get_slides = $this->get_slides();
            $slides = $get_slides->posts;
            $slide_list = array();
            foreach ($slides as $slide) {
                $hide_slide = get_post_meta( $slide->ID , 'ml-slider_hide_slide_' . $screen, true );
                if(!empty($hide_slide)) {
                    $with_setting = true;
                }
            };
        }
        return $with_setting;
    }

    /**
     * Include slider assets, JS and CSS paths are specified by child classes.
     */
    public function enqueue_scripts()
    {
        if (filter_var($this->get_setting('printJs'), FILTER_VALIDATE_BOOLEAN)) {
            $handle = 'metaslider-' . $this->get_setting('type') . '-slider';
            wp_enqueue_script($handle, METASLIDER_ASSETS_URL . $this->js_path, array('jquery'), METASLIDER_ASSETS_VERSION);
            $this->wp_add_inline_script($handle, $this->get_inline_javascript());
        }

        if (filter_var($this->get_setting('printCss'), FILTER_VALIDATE_BOOLEAN)) {
            wp_enqueue_style('metaslider-' . $this->get_setting('type') . '-slider', METASLIDER_ASSETS_URL . $this->css_path, false, METASLIDER_ASSETS_VERSION);
            wp_enqueue_style('metaslider-public', METASLIDER_ASSETS_URL . 'metaslider/public.css', false, METASLIDER_ASSETS_VERSION);

            $extra_css = apply_filters("metaslider_css", "", $this->settings, $this->id);
            $extra_css .= $this->get_mobile_css();
            wp_add_inline_style('metaslider-public', $extra_css);
        }

        wp_enqueue_script('metaslider-script', METASLIDER_ASSETS_URL . 'metaslider/script.min.js', array('jquery'), METASLIDER_ASSETS_VERSION);
        
        wp_localize_script('metaslider-script', 'wpData',
            array(
                'baseUrl' => esc_url(home_url()),
            )
        );

        do_action('metaslider_register_public_styles');
    }
}
inc/slider/metaslider.nivo.class.php000064400000011661151213255520013525 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Nivo Slider specific markup, javascript, css and settings.
 */
class MetaNivoSlider extends MetaSlider
{
    protected $js_function = 'nivoSlider';
    protected $js_path = 'sliders/nivoslider/jquery.nivo.slider.pack.js';
    protected $css_path = 'sliders/nivoslider/nivo-slider.css';

    /**
     * Constructor
     *
     * @param int   $id                 ID
     * @param array $shortcode_settings Short Settings
     */
    public function __construct($id, $shortcode_settings)
    {
        parent::__construct($id, $shortcode_settings);

        add_filter('metaslider_nivo_slider_parameters', array( $this, 'set_autoplay_parameter' ), 10, 3);
        if(metaslider_pro_is_active() == false) {
            add_filter('metaslider_nivo_slider_parameters', array($this, 'metaslider_nivo_loop'), 99, 3);
        }
    }

    /**
     * Other slides use "AutoPlay = true" (true autoplays the slideshow)
     * Nivo slider uses "ManualAvance = false" (ie, false autoplays the slideshow)
     * Take care of the manualAdvance parameter here.
     *
     * @param array $options   Options for autoplay
     * @param array $slider_id Slider ID
     * @param array $settings  Settings
     */
    public function set_autoplay_parameter($options, $slider_id, $settings)
    {
        global $wp_filter;
        if (isset($options["autoPlay"])) {
            if ($options["autoPlay"] == 'true') {
                $options["manualAdvance"] = 'false';
            } else {
                $options["manualAdvance"] = 'true';
            }

            unset($options['autoPlay']);
        }
        // we don't want this filter hanging around if there's more than one slideshow on the page
        remove_filter('metaslider_nivo_slider_parameters', array( $this, 'set_autoplay_parameter' ), 10, 3);

        return $options;
    }

    /**
     * Add JavaScript to stop slideshow
     *
     * @param array $options SLide options
     * @param integer $slider_id Slider ID
     * @param array $settings Slide settings
     * @return array
     */
    public function metaslider_nivo_loop($options, $slider_id, $settings)
    {
        if (isset($settings['loop']) && 'stopOnFirst' === $settings['loop']) {
            $options['slideshowEnd'] = isset($options['slideshowEnd']) ? $options['slideshowEnd'] : array();
            $options['slideshowEnd'] = array_merge($options['slideshowEnd'], array(
                "$('#metaslider_" . esc_js($slider_id) . "').data('nivoslider').stop();"
            ));
        }

        if (isset($settings['loop']) && 'stopOnLast' === $settings['loop']) {
            $options['lastSlide'] = isset($options['lastSlide']) ? $options['lastSlide'] : array();
            $options['lastSlide'] = array_merge(
                $options['lastSlide'],
                array("$('#metaslider_" . esc_js($slider_id) . "').data('nivoslider').stop();")
            );
        }

        return $options;
    }

    /**
     * Detect whether thie slide supports the requested setting,
     * and if so, the name to use for the setting in the Javascript parameters
     *
     * @param  array $param Parameters
     * @return false (parameter not supported) or parameter name (parameter supported)
     */
    protected function get_param($param)
    {
        $params = array(
            'effect' => 'effect',
            'slices' => 'slices',
            'prevText' => 'prevText',
            'nextText' => 'nextText',
            'delay' => 'pauseTime',
            'animationSpeed' => 'animSpeed',
            'hoverPause' => 'pauseOnHover',
            'spw' => 'boxCols',
            'sph' => 'boxRows',
            'navigation' => 'controlNav',
            'links' => 'directionNav',
            'autoPlay' => 'autoPlay'
        );

        if (isset($params[$param])) {
            return $params[$param];
        }

        return false;
    }

    /**
     * Enqueue scripts
     */
    public function enqueue_scripts()
    {
        parent::enqueue_scripts();

        // If a theme is set then we need to load the default Nivo theme
        $theme = get_post_meta($this->id, 'metaslider_slideshow_theme', true);
        if ('true' === $this->get_setting('printCss') || $theme) {
            wp_enqueue_style('metaslider-' . $this->get_setting('type') . '-slider-default', METASLIDER_ASSETS_URL . "sliders/nivoslider/themes/default/default.css", false, METASLIDER_ASSETS_VERSION);
        }
    }

    /**
     * Build the HTML for a slider.
     *
     * @return string slider markup.
     */
    protected function get_html()
    {

        $return_value  = "<div class='slider-wrapper theme-default'><div class='ribbon'></div><div id='" . $this->get_identifier() . "' class='nivoSlider'>";
        foreach ($this->slides as $slide) {
            $return_value .= $slide;
        }
        $return_value .= "</div></div>";
        return apply_filters('metaslider_nivo_slider_get_html', $return_value, $this->id, $this->settings);
    }
}
inc/metaslider.imagehelper.class.php000064400000042175151213255520013556 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Helper class for resizing images, returning the correct URL to the image etc
 */
class MetaSliderImageHelper
{
    private $crop_type = 'smart';
    private $container_width; // slideshow width
    private $container_height; // slideshow height
    private $url;
    private $path; // path to attachment on server
    private $use_image_editor;

    /**
     * The ID of the image
     *
     * @var integer
     */
    private $slide_id;
        
    /**
     * The ID of the image
     *
     * @var integer
     */
    public $image_id;

    /**
     * Constructor
     *
     * @param integer $slide_id         - The ID of the current slide
     * @param integer $width            - Required width of image
     * @param integer $height           - Required height of image
     * @param string  $crop_type        - The method used for cropping
     * @param bool    $use_image_editor - Whether to use the image editor
     * @param integer $image_id         - used when the slide in admin is a looped item (i.e. post type)
     */
    public function __construct($slide_id, $width, $height, $crop_type, $use_image_editor = true, $image_id = null)
    {
        // There's a chance that $slide_id might be an $image_id 
        // if the user has an older version of the pro plugin (<2.7)
        if ('attachment' == get_post_type($slide_id)) {
$image_id = $slide_id; 
        }

        $this->image_id = !is_null($image_id) ? $image_id : get_post_thumbnail_id($slide_id);
        $this->slide_id = $slide_id;
        $this->url = apply_filters("metaslider_attachment_url", wp_get_attachment_url($this->image_id), $this->image_id);
        $this->path = get_attached_file($this->image_id);
        $this->container_width = $width;
        $this->container_height = $height;
        $this->use_image_editor = $use_image_editor;
        $this->set_crop_type($crop_type);
        $meta = wp_get_attachment_metadata($this->image_id);
        $is_valid = isset($meta['width'], $meta['height']);
        if (!$is_valid) {
            $this->use_image_editor = false;
        }
    }


    /**
     * Add in backwards compatibility for old versions of MS Pro
     * 'true' = smart, 'false' = standard, 'disabled' = disabled
     *
     * @param string $crop_type Crop type
     */
    private function set_crop_type($crop_type)
    {

        switch ($crop_type) {
            case "false":
            case "standard":
                $this->crop_type = 'standard'; // smart crop enabled
                break;
            case "disabled":
                $this->crop_type = 'disabled'; // cropping disabled
                break;
            case "disabled_pad":
                $this->crop_type = 'disabled'; // cropping disabled
                break;
            case "true":
            case "smart":
            default:
                $this->crop_type = 'smart';
        }
    }


    /**
     * Return the crop dimensions.
     * Smart Crop: If the image is smaller than the container width or height, then return
     * dimensions that respect the container size ratio. This ensures image displays in a
     * sane manner in responsive sliders
     *
     * @param integer $image_width  Image Width
     * @param integer $image_height Image height
     * @return array image dimensions
     */
    private function get_crop_dimensions($image_width, $image_height)
    {
        // Slideshow width exists but not slideshow height
        if ( $this->container_width && ! $this->container_height ) {
            $calc_height = ( $image_height * $this->container_width ) / $image_width;
            return [
                'width' => absint( $this->container_width ),
                'height' => absint( $calc_height )
            ];
        }

        // Slideshow height exists but not slideshow width
        if ( $this->container_height && ! $this->container_width ) {
            $calc_width = ( $image_width * $this->container_height ) / $image_height;
            return [
                'width' => absint( $calc_width ),
                'height' => absint( $this->container_height )
            ];
        }

        if ($this->crop_type == 'standard') {
            return [
                'width' => absint($this->container_width),
                'height' => absint($this->container_height),
            ];
        }

        if ($this->crop_type == 'disabled') {
            return [
                'width' => absint($image_width),
                'height' => absint($image_height),
            ];
        }

        $container_width = $this->container_width;
        $container_height = $this->container_height;

        $new_slide_width = null;
        $new_slide_height = null;

        /**
         * Slideshow Width == Slide Width
         */
        if ($image_width == $container_width && $image_height == $container_height) {
            $new_slide_width = $container_width;
            $new_slide_height = $container_height;
        }

        if ($image_width == $container_width && $image_height < $container_height) {
            $new_slide_height = $image_height;
            $new_slide_width = $container_width / ( $container_height / $image_height );
        }

        if ($image_width == $container_width && $image_height > $container_height) {
            $new_slide_width = $container_width;
            $new_slide_height = $container_height;
        }

        /**
         * Slideshow Width < Slide Width
         */
        if ($image_width < $container_width && $image_height == $container_height) {
            $new_slide_width = $image_width;
            $new_slide_height = $image_height / ( $container_width / $image_width );
        }

        /**
         * Slide is smaller than slidehow - both width and height
         */
        if ($image_width < $container_width && $image_height < $container_height) {
            if ($container_width > $container_height) {
                // wide
                if ($image_width > $image_height) {
                    // wide
                    $new_slide_height = $image_height;
                    $new_slide_width = $container_width / ( $container_height / $image_height );

                    if ($new_slide_width > $image_width) {
                        $new_slide_width = $image_width;
                        $new_slide_height = $container_height / ( $container_width / $image_width );
                    }
                } else {
                    // tall
                    $new_slide_width = $image_width;
                    $new_slide_height = $container_height / ( $container_width / $image_width );

                    if ($new_slide_height > $image_height) {
                        $new_slide_height = $image_height;
                        $new_slide_width = $container_width / ( $container_height / $image_height );
                    }
                }
            } else {
                // tall
                if ($image_width > $image_height) {
                    // wide
                    $new_slide_height = $image_height;
                    $new_slide_width = $container_width / ( $container_height / $image_height );

                    if ($new_slide_width > $image_width) {
                        $new_slide_width = $image_width;
                        $new_slide_height = $container_height / ( $container_width / $image_width );
                    }
                } else {
                    // tall
                    $new_slide_width = $image_width;
                    $new_slide_height = $container_height / ( $container_width / $image_width );

                    if ($new_slide_height > $image_height) {
                        $new_slide_height = $image_height;
                        $new_slide_width = $container_width / ( $container_height / $image_height );
                    }
                }
            }
        }

        if ($image_width < $container_width && $image_height > $container_height) {
            $new_slide_width = $image_width;
            $new_slide_height = $container_height / ( $container_width / $image_width );
        }

        /**
         * Slideshow Width > Slide Width
         */
        if ($image_width > $container_width && $image_height == $container_height) {
            $new_slide_width = $container_width;
            $new_slide_height = $container_height;
        }

        if ($image_width > $container_width && $image_height < $container_height) {
            $new_slide_height = $image_height;
            $new_slide_width = $container_width / ( $container_height / $image_height );
        }

        if ($image_width > $container_width && $image_height > $container_height) {
            $new_slide_width = $container_width;
            $new_slide_height = $container_height;
        }

        return [
            'width' => floor((float)$new_slide_width),
            'height' => floor((float)$new_slide_height)
        ];
    }

    /**
     * Call get_crop_dimensions() through an extended class
     * 
     * @since 3.60
     * 
     * @param integer $image_width  Image Width
     * @param integer $image_height Image height
     * 
     * @return array image dimensions
     */
    public function _crop_dimensions( $image_width, $image_height )
    {
        return $this->get_crop_dimensions( $image_width, $image_height );
    }


    /**
     * Return the image URL, crop the image to the correct dimensions if required
     *
     * @param bool $force_resize Force resize of image
     * @return string resized image URL
     */
    public function get_image_url($force_resize = false)
    {
        // Get the image file path
        if (!strlen($this->path)) {
            return apply_filters('metaslider_resized_image_url', $this->url, $this->url);
        }

        // get the full image size dimensions
        $orig_size = $this->get_original_image_dimensions();

        // bail out if we can't find the image dimensions, return the full URL
        if (!$orig_size) {
            return apply_filters('metaslider_resized_image_url', $this->url, $this->url);
        }

        // get our crop dimensions (this is the size we want to display)
        $dest_size = $this->get_crop_dimensions($orig_size['width'], $orig_size['height']);

        // if the full size is the same as the required size, return the full URL
        if ($orig_size['width'] == $dest_size['width'] && $orig_size['height'] == $dest_size['height']) {
            return apply_filters('metaslider_resized_image_url', $this->url, $this->url);
        }

        // construct the file name
        $dest_file_name = $this->get_destination_file_name($dest_size);

        if (file_exists($dest_file_name) && !$force_resize) {
            // good. no need for resize, just return the URL
            $dest_url = str_replace(basename($this->url), basename($dest_file_name), $this->url);
        } else if ($this->use_image_editor) {
            // resize, assuming we're allowed to use the image editor
            $dest_url = $this->resize_image($orig_size, $dest_size, $dest_file_name);

            // if the image is cropped, generate smaller sizes
            if ('disabled' != $this->crop_type) {
                // if destination width > 600 we crop the smaller sizes for responsive images
                if ($dest_size['width'] > apply_filters('metaslider_srcset_min_width', 600)) {
                    $scrset_sizes = apply_filters('metaslider_cropped_images_srcset_sizes', array(
                        array('width' => 1600),
                        array('width' => 1200),
                        array('width' => 620),
                        array('width' => 400),
                    ));
                    foreach ($scrset_sizes as $scrset_size) {
                        if ($dest_size['width'] >= $scrset_size['width']) {
                            $scrset_size['height'] = round($scrset_size['width'] * $dest_size['height'] / $dest_size['width']);
                            $this->resize_image($orig_size, $scrset_size, $this->get_destination_file_name($scrset_size));
                        }
                    }
                }
            }
        } else {
            // fall back to the full URL
            $dest_url = $this->url;
        }

        $dest_url = apply_filters('metaslider_resized_image_url', $dest_url, $this->url);

        return $dest_url;
    }


    /**
     * Get the image dimensions for the original image.
     *
     * Fall back to using the WP_Image_Editor if the size is not stored in metadata
     *
     * @return array
     */
    private function get_original_image_dimensions()
    {
        $size = array();

        // try and get the image size from metadata
        $meta = wp_get_attachment_metadata($this->image_id);
        if (isset($meta['width'], $meta['height'])) {
            return $meta;
        }
        if ($this->use_image_editor) {
            // get the size from the image itself
            $image = wp_get_image_editor($this->path);
            if (!is_wp_error($image)) {
                $size = $image->get_size();
                return $size;
            }
        }
        return false;
    }

    /**
     * Call get_original_image_dimensions() through an extended class
     * 
     * @since 3.60
     * 
     * @return array
     */
    public function _original_image_dimensions()
    {
        return $this->get_original_image_dimensions();
    }


    /**
     * Return the file name for the required image size
     *
     * @param array $dest_size image dimensions (width/height) in pixels
     * @return string path and file name
     */
    private function get_destination_file_name($dest_size)
    {
        $info = pathinfo($this->path);
        $dir = $info['dirname'];
        $ext = $info['extension'];
        $name = wp_basename($this->path, ".$ext");
        $dest_file_name = "{$dir}/{$name}-{$dest_size['width']}x{$dest_size['height']}.{$ext}";

        return $dest_file_name;
    }

    /**
     * Use WP_Image_Editor to create a resized image and return the URL for that image
     *
     * @param array $orig_size      Original image size
     * @param array $dest_size      Destination image size
     * @param array $dest_file_name Destination file name
     * @return string
     */
    private function resize_image($orig_size, $dest_size, $dest_file_name)
    {
        
        // load image
        $image = wp_get_image_editor($this->path);

        // editor will return an error if the path is invalid
        if (is_wp_error($image)) {
            return $this->url;
        }

        $crop_position = $this->get_crop_position();

        $dims = image_resize_dimensions($orig_size['width'], $orig_size['height'], $dest_size['width'], $dest_size['height'], $crop_position);

        if ($dims) {
            list($dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h) = $dims;
            $image->crop($src_x, $src_y, $src_w, $src_h, $dst_w, $dst_h);
        }

        $saved = $image->save($dest_file_name);

        if (is_wp_error($saved)) {
            return $this->url;
        }

        // Record the new size so that the file is correctly removed when the media file is deleted.
        $backup_sizes = get_post_meta($this->image_id, '_wp_attachment_backup_sizes', true);

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

        $backup_sizes["resized-{$dest_size['width']}x{$dest_size['height']}"] = $saved;
        update_post_meta($this->image_id, '_wp_attachment_backup_sizes', $backup_sizes);

        // Update recorded image sizes in the metadata
        $meta_sizes = get_post_meta($this->image_id, '_wp_attachment_metadata', true);

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

        $temp_saved = $saved;  // working copy of $saved
        unset($temp_saved['path']); // path does not belong in the meta data
        $meta_sizes['sizes']["meta-slider-resized-{$dest_size['width']}x{$dest_size['height']}"] = $temp_saved;
        update_post_meta($this->image_id, '_wp_attachment_metadata', $meta_sizes);
        
        $url = str_replace(basename($this->url), basename($saved['path']), $this->url);
        
        do_action("metaslider_after_resize_image", $this->image_id, $dest_size['width'], $dest_size['height'], $url);

        // add compatibility for wr2x https://wordpress.org/plugins/wp-retina-2x/
        if (function_exists('wr2x_generate_images')) {
            $meta = wp_get_attachment_metadata($this->image_id);
            foreach ($meta['sizes'] as $name => $size) {
                if ('meta-slider-resized' == substr($name, 0, 19)) {
                    // wr2x needs the image size to be registered.
                    add_image_size($name, $size['width'], $size['height'], $this->get_crop_position());
                }
            }
            wr2x_generate_images($meta);
        }
        return $url;
    }


    /**
     * Get the image crop position
     *
     * @return array
     */
    private function get_crop_position()
    {
        $crop_position = get_post_meta($this->slide_id, 'ml-slider_crop_position', true);

        if ($crop_position) {
            $parts = explode("-", $crop_position);

            if (isset($parts[0], $parts[1])) {
                return array($parts[0], $parts[1]);
            }
        }

        return array('center', 'center');
    }
}
inc/metaslider.widget.class.php000064400000010253151213255530012550 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Adds MetaSlider widget.
 */
class MetaSlider_Widget extends WP_Widget
{
    /**
     * Register widget with WordPress.
     */
    public function __construct()
    {
        parent::__construct(
            'metaslider_widget', // Base ID
            'MetaSlider', // Name
            array( 'description' => 'MetaSlider' ) // Args
        );
    }

    /**
     * Front-end display of widget.
     *
     * @see WP_Widget::widget()
     *
     * @param array $args     Widget arguments.
     * @param array $instance Saved values from database.
     */
    public function widget($args, $instance)
    {
        if (isset($instance['slider_id'])) {
            $slider_id = $instance['slider_id'];

            $title = apply_filters('widget_title', $instance['title']);

            echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            if (! empty($title)) {
                echo $args['before_title'] . $title . $args['after_title']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            }

            echo do_shortcode("[metaslider id={$slider_id}]");
            echo $args['after_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        }
    }

    /**
     * Sanitize widget form values as they are saved.
     *
     * @see WP_Widget::update()
     *
     * @param array $new_instance Values just sent to be saved.
     * @param array $old_instance Previously saved values from database.
     *
     * @return array Updated safe values to be saved.
     */
    public function update($new_instance, $old_instance)
    {
        $instance = array();
        $instance['slider_id'] = strip_tags($new_instance['slider_id']);
        $instance['title'] = strip_tags($new_instance['title']);

        return $instance;
    }

    /**
     * Back-end widget form.
     *
     * @see WP_Widget::form()
     *
     * @param array $instance Previously saved values from database.
     */
    public function form($instance)
    {
        $selected_slider = 0;
        $title = "";
        $sliders = array();

        if (isset($instance['slider_id'])) {
            $selected_slider = $instance['slider_id'];
        }

        if (isset($instance['title'])) {
            $title = $instance['title'];
        }


        $posts = get_posts(array(
                'post_type' => 'ml-slider',
                'post_status' => 'publish',
                'orderby' => 'date',
                'order' => 'ASC',
                'posts_per_page' => -1
            ));

        foreach ($posts as $post) {
            $active = $selected_slider == $post->ID ? true : false;

            $sliders[] = array(
                'active' => $active,
                'title' => $post->post_title,
                'id' => $post->ID
            );
        }

        ?>
        <p>
            <?php if (count($sliders) > 0) { ?>
                <p>
                    <label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php esc_html_e('Title:', 'ml-slider'); ?></label>
                    <input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
                </p>
                <label for="<?php echo esc_attr($this->get_field_id('slider_id')); ?>"><?php esc_html_e('Select Slider:', 'ml-slider'); ?></label>
                <select id="<?php echo esc_attr($this->get_field_id('slider_id')); ?>" name="<?php echo esc_attr($this->get_field_name('slider_id')); ?>">
                    <?php
                    foreach ($sliders as $slider) {
                        $selected = $slider['active'] ? 'selected=selected' : '';
                        echo '<option value="' . esc_attr($slider['id']) . '" ' . $selected. '>' . esc_html($slider['title']) . '</option>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    }
                    ?>
                </select>
            <?php } else {
            esc_html_e('No slideshows found', 'ml-slider');
            } ?>
        </p>
        <?php
    }
}
inc/slide/metaslide.class.php000064400000067415151213255530012220 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Slide class represting a single slide. This is extended by type specific
 * slides (eg, MetaImageSlide, MetaYoutubeSlide (pro only), etc)
 */
class MetaSlide
{
    public $slide = 0;
    public $slider = 0;
    public $settings = array(); // slideshow settings


    /**
     * Constructor
     */
    public function __construct()
    {

        add_action('wp_ajax_update_slide_image', array( $this, 'ajax_update_slide_image' ));
    }

    /**
     * Set the slide
     *
     * @param int $id ID
     */
    public function set_slide($id)
    {
        $this->slide = get_post($id);
    }

    /**
     * Set the slide (that this slide belongs to)
     *
     * @param int $id ID
     */
    public function set_slider($id)
    {
        $this->slider = get_post($id);
        $this->settings = get_post_meta($id, 'ml-slider_settings', true);
    }


    /**
     * Return the HTML for the slide
     *
     * @param  int $slide_id  Slide ID
     * @param  int $slider_id Slider ID
     * @return array complete array of slides
     */
    public function get_slide($slide_id, $slider_id)
    {
        $this->set_slider($slider_id);
        $this->set_slide($slide_id);
        return $this->get_slide_html();
    }

    /**
     * Save the slide
     *
     * @param  int    $slide_id  Slide ID
     * @param  int    $slider_id Slider ID
     * @param  string $fields    SLider fields
     */
    public function save_slide($slide_id, $slider_id, $fields)
    {
        $this->set_slider($slider_id);
        $this->set_slide($slide_id);
        $this->save($fields);
        do_action('metaslider_save_slide', $slide_id, $slider_id, $fields);
    }


    /**
     * Updates the slide meta value to a new image.
     *
     * @param int $slide_id     The id of the slide being updated
     * @param int $image_id     The id of the new image to use
     * @param int $slideshow_id The id of the slideshow
     *
     * @return array|WP_error The status message and if success, the thumbnail link
     */
    protected function update_slide_image($slide_id, $image_id, $slideshow_id = null)
    {
        /*
        * Verifies that the $image_id is an actual image
        */
        if ( ! ( $thumbnail_url_small = $this->get_intermediate_image_src( 240, $image_id ) ) ) {
            return new WP_Error('update_failed', __('The requested image does not exist. Please try again.', 'ml-slider'), array('status' => 409));
        }

        /*
         * Updates database record and thumbnail if selection changed, assigns it to the slideshow, crops the image
         */
        update_post_meta( $slide_id, '_thumbnail_id', $image_id );
        if ( $slideshow_id ) {
            $this->set_slider( $slideshow_id );

            // Get cropped images for srcset attribute
            $thumbnail_url_large = $this->get_intermediate_image_src( 1024, $image_id );
            $thumbnail_url_medium  = $this->get_intermediate_image_src( 768, $image_id );

            // get resized image
            $imageHelper = new MetaSliderImageHelper(
                $slide_id,
                $this->settings['width'],
                $this->settings['height'],
                isset($this->settings['smartCrop']) ? $this->settings['smartCrop'] : 'false'
            );

            return array(
                'message' => __( 'The image was successfully updated.', 'ml-slider' ),
                'thumbnail_url_small' => $thumbnail_url_small,
                'thumbnail_url_medium' => $thumbnail_url_medium,
                'thumbnail_url_large' => $thumbnail_url_large,
                'img_url' => $imageHelper ? $imageHelper->get_image_url() : wp_get_attachment_image_url( $image_id, 'full' )
            );
        }

        return new WP_Error( 
            'update_failed', 
            __( 'There was an error updating the image. Please try again', 'ml-slider' ), 
            array( 'status' => 409 ) 
        );
    }

    /**
     * Ajax wrapper to update the slide image.
     *
     * @return String The status message and if success, the thumbnail link (JSON)
     */
    public function ajax_update_slide_image()
    {
        if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'metaslider_update_slide_image')) {
            wp_send_json_error(array(
                'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
            ), 401);
        }

        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
        if (! current_user_can($capability)) {
            wp_send_json_error(
                [
                    'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                ],
                403
            );
        }

        if (! isset($_POST['slide_id']) || ! isset($_POST['image_id']) || ! isset($_POST['slider_id'])) {
            wp_send_json_error(
                [
                    'message' => __('Bad request', 'ml-slider'),
                ],
                400
            );
        }

        $result = $this->update_slide_image(
            absint($_POST['slide_id']),
            absint($_POST['image_id']),
            absint($_POST['slider_id'])
        );

        if (is_wp_error($result)) {
            wp_send_json_error(array(
                'message' => $result->get_error_message()
            ), 409);
        }
        wp_send_json_success($result, 200);
    }

    /**
     * Return the correct slide HTML based on whether we're viewing the slides in the
     * admin panel or on the front end.
     *
     * @return string slide html
     */
    public function get_slide_html()
    {

        // If we are on the MetaSlider settings page, and the user has permission
        // return the admin style slides
        $on_settings_page = isset($_GET['page']) && ('metaslider' === $_GET['page']);
        $has_permission = current_user_can(apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES));
        $ajax_call = apply_filters('wp_doing_ajax', defined('DOING_AJAX') && DOING_AJAX);
        $rest_call = defined('REST_REQUEST') && REST_REQUEST;

        if (is_admin() && $on_settings_page && $has_permission && !$ajax_call && !$rest_call) {
            return $this->get_admin_slide();
        }

        // Otherwise deliver the public slide markup
        return $this->get_public_slide();
    }

    /**
     * Check if a slide already exists in a slideshow
     *
     * @param  string $slider_id Slider ID
     * @param  string $slide_id  SLide ID
     * @return string
     */
    public function slide_exists_in_slideshow($slider_id, $slide_id)
    {

        return has_term($slider_id, 'ml-slider', $slide_id);
    }

    /**
     * Check if a slide has already been assigned to a slideshow
     *
     * @param  string $slider_id Slider ID
     * @param  string $slide_id  SLide ID
     * @return string
     */
    public function slide_is_unassigned_or_image_slide($slider_id, $slide_id)
    {

        $type = get_post_meta($slide_id, 'ml-slider_type', true);

        return ! strlen($type) || $type == 'image';
    }


    /**
     * Build image HTML
     *
     * @param array $attributes Anchor attributes
     * @return string image HTML
     */
    public function build_image_tag($attributes)
    {
        $attachment_id = $this->get_attachment_id();

        if (('disabled' == $this->settings['smartCrop'] || 'disabled_pad' == $this->settings['smartCrop']) && ('image' == $this->identifier || 'html_overlay' == $this->identifier)) {
            // This will use WP built in image building so we can remove some of these attributes
            unset($attributes['src']);
            unset($attributes['height']);
            unset($attributes['width']);
            return wp_get_attachment_image($attachment_id, apply_filters('metaslider_default_size', 'full', $this->slider), false, $attributes);
        }
        $html = "<img";
        foreach ($attributes as $att => $val) {
            if (strlen($val)) {
                $html .= " " . $att . '="' . esc_attr($val) . '"';
            } else if ($att == 'alt') {
                $html .= " " . $att . '=""'; // always include alt tag for HTML5 validation
            }
        }
        $html .= " />";
        return $html;
    }


    /**
     * Build image HTML
     *
     * @param array  $attributes Anchor attributes
     * @param string $content    Anchor contents
     * @return string image HTML
     */
    public function build_anchor_tag($attributes, $content)
    {

        $html = "<a";

        foreach ($attributes as $att => $val) {
            if (strlen($val)) {
                $html .= " " . $att . '="' . esc_attr($val) . '"';
            }
        }

        $html .= ">" . $content . "</a>";

        return $html;
    }


    /**
     * Create a new post for a slide. Tag a featured image to it.
     *
     * @since 3.4
     * @param string $media_id  - Media File ID to use for the slide
     * @param string $type      - the slide type identifier
     * @param int    $slider_id - the parent slideshow ID
     * @return int $slide_id - the ID of the newly created slide
     */
    public function insert_slide($media_id, $type, $slider_id)
    {

        // Store the post in the database (without translation)
        $slide_id = wp_insert_post(
           array(
               'post_title' => "Slider {$slider_id} - {$type}",
               'post_status' => 'publish',
               'post_type' => 'ml-slide'
           )
        );

        // Send back a friendlier error message
        if (is_wp_error($slide_id)) {
            return new WP_Error('create_failed', __('There was an error while updating the database. Please try again.', 'ml-slider'), array('status' => 409));
        }

        // Set the image to the slide
        set_post_thumbnail($slide_id, $media_id);

        $this->add_or_update_or_delete_meta($slide_id, 'type', $type);
        return $slide_id;
    }


    /**
     * Tag the slide attachment to the slider tax category
     */
    public function tag_slide_to_slider()
    {
        $termExists = function_exists('wpcom_vip_term_exists') ?
            wpcom_vip_term_exists($this->slider->ID, 'ml-slider')
            : term_exists($this->slider->ID, 'ml-slider'); // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.term_exists_term_exists


        if (! $termExists) {
            // create the taxonomy term, the term is the ID of the slider itself
            wp_insert_term($this->slider->ID, 'ml-slider');
        }

        // get the term thats name is the same as the ID of the slider
        $term = get_term_by('name', $this->slider->ID, 'ml-slider');
        // tag this slide to the taxonomy term
        wp_set_post_terms($this->slide->ID, $term->term_id, 'ml-slider', true);

        $this->update_menu_order();
    }


    /**
     * Ouput the slide tabs
     */
    public function get_admin_slide_tabs_html()
    {

        return $this->get_admin_slide_tab_titles_html() . $this->get_admin_slide_tab_contents_html();
    }


    /**
     * Generate the HTML for the tabs
     */
    public function get_admin_slide_tab_titles_html()
    {

        $tabs = apply_filters('metaslider_slide_tabs', $this->get_admin_tabs(), $this->slide, $this->slider, $this->settings);

        $return = "<ul class='tabs'>";

        foreach ($tabs as $id => $tab) {
            
            $pos = array_search($id, array_keys($tabs));

            if ($tab['title'] == 'Mobile') {
                $add_class = 'flex-setting';
                if($this->settings['type'] != 'flex') {
                    $hide = 'display: none';
                } else {
                    $hide = '';
                }
            } else {
                $add_class = '';
                $hide = '';
            }

            $selected = $pos == 0 ? "class='selected " . esc_attr($add_class) . "' style='" . esc_attr($hide) . "'" : "class='" . esc_attr($add_class) . "' style='" . esc_attr($hide) . "'";

            $return .= "<li {$selected} ><a tabindex='0' href='#' data-tab_id='tab-" . esc_attr($pos) . "'>" . esc_html($tab['title']) . "</a></li>";
        }

        $return .= "</ul>";

        return $return;
    }

    /**
     * Generate the HTML for the delete button
     *
     * @return string
     */
    public function get_delete_button_html()
    {
        return "<button class='toolbar-button delete-slide alignright tipsy-tooltip-top' title='" . esc_attr__("Trash slide", "ml-slider") . "' data-slide-id='" . esc_attr($this->slide->ID) . "'><i><svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg></i></button>";
    }

    /**
     * Generate the HTML for the undelete button
     *
     * @return string
     */
    public function get_undelete_button_html()
    {
        return "<a href='#' onclick='return false;' class='trash-view-restore' data-slide-id='" . esc_attr($this->slide->ID) . "'>" . esc_html__('Restore', 'ml-slider') . "</a>";
    }

    /**
     * Generate the HTML for the perminant button
     *
     * @return string
     */
    public function get_permanent_delete_button_html()
    {
        return "<a href='#' onclick='return false;' class='trash-view-permanent' data-slide-id='" . esc_attr($this->slide->ID) . "'>" . esc_html__('Delete Permanently', 'ml-slider') . "</a>";
    }

    /**
     * Generates the HTML for the update slide image button
     *
     * @return string The html for the edit button on a slide image
     */
    public function get_update_image_button_html()
    {
        $attachment_id = $this->get_attachment_id();
        $slide_type = get_post_meta($this->slide->ID, 'ml-slider_type', true);
        return "<button class='toolbar-button update-image alignright tipsy-tooltip-top' data-slide-type='" . esc_attr($slide_type) . "' data-button-text='" . esc_attr__("Update slide image", "ml-slider") . "' title='" . esc_attr__("Update slide image", "ml-slider") . "' data-slide-id='" . esc_attr($this->slide->ID) . "' data-attachment-id='" . esc_attr($attachment_id) . "'><i><svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-edit-2'><polygon points='16 3 21 8 8 21 3 21 3 16 16 3'/></svg></i></button>";
    }

    /**
     * Generates the HTML for the duplicate slide button
     *
     * @return string The html for the duplicate button
     */
    public function get_duplicate_slide_button_html()
    {
        $attachment_id = $this->get_attachment_id();
        $slide_type = get_post_meta($this->slide->ID, 'ml-slider_type', true);
        return "<button class='toolbar-button duplicate-slide duplicate-slide-" . $slide_type . " alignright tipsy-tooltip-top' data-slide-type='" . esc_attr($slide_type) . "' data-button-text='" . esc_attr__("Duplicate slide", "ml-slider") . "' title='" . esc_attr__("Duplicate slide", "ml-slider") . "' data-slide-id='" . esc_attr($this->slide->ID) . "' data-attachment-id='" . esc_attr($attachment_id) . "'><i><svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-copy'><rect x='9' y='9' width='13' height='13' rx='2' ry='2'></rect><path d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'></path></svg></i></button>";
    }

    /**
     * Generate the HTML for the tab content
     */
    public function get_admin_slide_tab_contents_html()
    {

        $tabs = apply_filters('metaslider_slide_tabs', $this->get_admin_tabs(), $this->slide, $this->slider, $this->settings);

        $return = "<div class='tabs-content flex-grow'>";

        foreach ($tabs as $id => $tab) {
            $pos = array_search($id, array_keys($tabs));

            $hidden = $pos != 0 ? "style='display: none;'" : "";

            $return .= "<div class='h-full tab tab-{$pos}' {$hidden}>{$tab['content']}</div>";
        }

        $return .= "</div>";

        return $return;
    }


    /**
     * Ensure slides are added to the slideshow in the correct order.
     *
     * Find the highest slide menu_order in the slideshow, increment, then
     * update the new slides menu_order.
     */
    public function update_menu_order()
    {

        $menu_order = 0;

        // get the slide with the highest menu_order so far
        $args = array(
            'force_no_custom_order' => true,
            'orderby' => 'menu_order',
            'order' => 'DESC',
            'post_type' => array('attachment', 'ml-slide'),
            'post_status' => array('inherit', 'publish'),
            'lang' => '', // polylang, ingore language filter
            'suppress_filters' => 1, // wpml, ignore language filter
            'posts_per_page' => 1,
            'tax_query' => array(
                array(
                    'taxonomy' => 'ml-slider',
                    'field' => 'slug',
                    'terms' => $this->slider->ID
                )
            )
        );

        $query = new WP_Query($args);

        while ($query->have_posts()) {
            $query->next_post();
            $menu_order = $query->post->menu_order;
        }

        wp_reset_query();

        // increment
        $menu_order = $menu_order + 1;

        // update the slide
        wp_update_post(array(
                'ID' => $this->slide->ID,
                'menu_order' => $menu_order
            ));
    }


    /**
     * If the meta doesn't exist, add it
     * If the meta exists, but the value is empty, delete it
     * If the meta exists, update it
     *
     * @param int    $post_id Post ID
     * @param string $name    SLider Name
     * @param int    $value   Slaider Value
     */
    public function add_or_update_or_delete_meta($post_id, $name, $value)
    {
        $key = "ml-slider_" . $name;

        if (is_string($value)) {
            $value = trim($value);
        }

        if (false === $value || $value === 'false' || $value === "off" || $value === '') {
            delete_post_meta($post_id, $key);
        } else {
            update_post_meta($post_id, $key, $value);
        }
    }


    /**
     * Detect a [metaslider] or [ml-slider] shortcode in the slide caption, which has an ID that matches the current slideshow ID
     *
     * @param string $content Content for shortcode
     * @return  boolean
     */
    protected function detect_self_metaslider_shortcode($content)
    {
        $pattern = get_shortcode_regex();

        if (preg_match_all('/' . $pattern . '/s', $content, $matches) && array_key_exists(2, $matches) && ( in_array('metaslider', $matches[2]) || in_array('ml-slider', $matches[2]) )) {
            // caption contains [metaslider] shortcode
            if (array_key_exists(3, $matches) && array_key_exists(0, $matches[3])) {
                // [metaslider] shortcode has attributes
                $attributes = shortcode_parse_atts($matches[3][0]);

                if (isset($attributes['id']) && $attributes['id'] == $this->slider->ID) {
                    // shortcode has ID attribute that matches the current slideshow ID
                    return true;
                }
            }
        }

        return false;
    }

    /**
     * Get the attachment ID
     *
     * @return Integer - the attachment ID
     */
    public function get_attachment_id()
    {
        if ('attachment' == $this->slide->post_type) {
            return $this->slide->ID;
        } else {
            return get_post_thumbnail_id($this->slide->ID);
        }
    }

    /**
     * Get the thumbnail for the slide
     * Use get_intermediate_image_src() instead when possible - since @3.60
     * 
     * @return string
     */
    public function get_thumb()
    {
        if (get_post_type($this->slide->ID) == 'attachment') {
            $image = wp_get_attachment_image_src($this->slide->ID, 'thumbnail');
        } else {
            $image = wp_get_attachment_image_src(get_post_thumbnail_id($this->slide->ID), 'thumbnail');
        }

        if (isset($image[0])) {
            return $image[0];
        }

        return "";
    }

    /**
     * Get the closest image based on a width size
     * 
     * @since 3.60
     * 
     * @param int $width            Image width we want to target
     * @param int $attachment_id    Optional image ID. We use in ajax_update_slide_image()
     * 
     * @return string 
     */
    public function get_intermediate_image_src( $width, $attachment_id = false )
    {
        /* If the post type is 'attachment', we return get_thumb() 
         * for possible backward compatibility */
        if ( isset( $this->slide->ID ) && get_post_type( $this->slide->ID ) == 'attachment' ) {
            return $this->get_thumb();
        }

        if ( ! $attachment_id ) {
            $attachment_id  = get_post_thumbnail_id( $this->slide->ID );
        }
        
        $image_sizes = wp_get_attachment_image_src( $attachment_id, 'full' );

        if ( is_array( $image_sizes ) && count( $image_sizes ) ) {
            $original_width = $image_sizes[1]; // Image width value from array
            
            // Find the closest image size to $width in width
            $sizes = get_intermediate_image_sizes(); // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.get_intermediate_image_sizes_get_intermediate_image_sizes

            // Default if no smaller size is found
            $closest_size = 'full'; 

            foreach ( $sizes as $size ) {
                $size_info  = image_get_intermediate_size( $attachment_id, $size );

                if ( isset( $size_info['width'] ) 
                    && $size_info['width'] >= $width 
                    && $size_info['width'] < $original_width 
                ) {
                    $closest_size = $size;
                    break;
                }
            }

            // Get the URL of the closest image size.
            $closest_image = wp_get_attachment_image_src( $attachment_id, $closest_size );
            
            // $closest_image[0] URL
            // $closest_image[1] width
            // $closest_image[2] height
            // $closest_image[3] boolean for: is the image cropped?

            if ( is_array( $closest_image ) ) {
                $image_ = is_ssl() ? set_url_scheme( $closest_image[0], 'https' ) : set_url_scheme( $closest_image[0], 'http' );
                return $image_;
            }
        }

        return '';
    }

    /**
     * Slide thumb image HTML in admin
     * 
     * @since 3.60
     * 
     * @return html
     */
    public function get_admin_slide_thumb()
    {
        $thumb_small    = $this->get_intermediate_image_src( 240 );
        $thumb_medium   = $this->get_intermediate_image_src( 768 );
        $thumb_large    = $this->get_intermediate_image_src( 1024 );
        $slide_type     = get_post_meta( $this->slide->ID, 'ml-slider_type', true );
        $attachment_id  = $this->get_attachment_id();
        
        $html = '<div class="metaslider-ui-inner metaslider-slide-thumb">
            <button class="update-image image-button" data-slide-type="' . 
            esc_attr( $slide_type ) . '" data-button-text="' . 
            esc_attr__( 'Update slide image', 'ml-slider' ) . '" title="' . 
            esc_attr__( 'Update slide image', 'ml-slider' ) . '" data-slide-id="' . 
            esc_attr( $this->slide->ID ) . '" data-attachment-id="' . 
            esc_attr( $attachment_id ) . '">
                <div class="thumb">
                    <img src="' . 
                    esc_url( $thumb_small ) . '" srcset="' . 
                    esc_url( $thumb_large ) . ' 1024w, ' . 
                    esc_url( $thumb_medium ) . ' 768w, ' . 
                    esc_url( $thumb_small ) . ' 240w" sizes="(min-width: 990px) and (max-width: 1024px) 1024px, (max-width: 768px) 768px, 240px" />
                </div>
            </button>
        </div>';

        return $html;
    }

    /**
     * HTML output for switch toggle
     * 
     * @since 3.60
     * 
     * @param string $name      Valid input name
     * @param bool $isChecked   true or false
     * @param array $attrs      Optional array of attributes. e.g. array( 'lorem' => 'value' )
     * @param string $class     Optional CSS classes for the wrapper
     * 
     * @return html
     */
    public function switch_button( $name, $isChecked, $attrs = array(), $class = '' )
    {
        $html = '<div class="ms-switch-button' . 
            esc_attr( ! empty( $class ) ? ' ' . $class : '' ) . '">
            <label><input type="checkbox" name="' . 
                esc_attr( $name ) . '"' . 
               ( $isChecked ? ' checked="checked"' : '' );
                
                // Append $attrs as valid HTML attributes
                foreach( $attrs as $item => $value ) {
                    $html .= ' ' . esc_attr( $item ) . '="' . esc_attr( $value ) . '"';
                }
                
        $html .= ' /><span></span>
        </label>
        </div>';

        return $html;
    }

    /**
     * Info icon with tooltip
     * 
     * @since 3.60
     * 
     * @return html
     */
    public function info_tooltip( $label )
    {
        $html = '<span class="dashicons dashicons-info tipsy-tooltip-top" title="' . 
            esc_attr( $label ) . '"></span>';

        return $html;
    }

    /**
     * Include slider assets, JS and CSS paths are specified by child classes.
     */
    public function enqueue_scripts()
    {
        if (filter_var($this->get_setting('printJs'), FILTER_VALIDATE_BOOLEAN)) {
            $handle = 'metaslider-' . $this->get_setting('type') . '-slider';
            wp_enqueue_script($handle, METASLIDER_ASSETS_URL . $this->js_path, array('jquery'), METASLIDER_ASSETS_VERSION);
            $this->wp_add_inline_script($handle, $this->get_inline_javascript());
        }

        if (filter_var($this->get_setting('printCss'), FILTER_VALIDATE_BOOLEAN)) {
            wp_enqueue_style('metaslider-' . $this->get_setting('type') . '-slider', METASLIDER_ASSETS_URL . $this->css_path, false, METASLIDER_ASSETS_VERSION);
            wp_enqueue_style('metaslider-public', METASLIDER_ASSETS_URL . 'metaslider/public.css', false, METASLIDER_ASSETS_VERSION);

            $extra_css = apply_filters("metaslider_css", "", $this->settings, $this->id);
            wp_add_inline_style('metaslider-public', $extra_css);
        }

        

        wp_enqueue_script('metaslider-script', METASLIDER_ASSETS_URL . 'metaslider/script.min.js', array('jquery'), METASLIDER_ASSETS_VERSION);

        do_action('metaslider_register_public_styles');
    }

    public function get_global_settings() {
        if (is_multisite() && $settings = get_site_option('metaslider_global_settings')) {
            return $settings;
        }

        if ($settings = get_option('metaslider_global_settings')) {
            return $settings;
        }
    }

    /**
     * Get mobile CSS on al slide types
     */
    public function get_mobile_css_class($slide_id)
    {
        $device = array('smartphone', 'tablet', 'laptop', 'desktop');
        $mobile_class = '';
        foreach ($device as $value) {
            $hidden_slide = get_post_meta( $slide_id , 'ml-slider_hide_slide_' . $value, true );
            if(!empty($hidden_slide)) {
              $mobile_class .= 'hidden_' . $value . ' ';
            }
        }
        return $mobile_class;
    }

    /**
     * Sanitize HTML and avoid rgb() color being stripped by wp_filter_post_kses
     * 
     * @since 3.62
     * 
     * @param html $content
     * 
     * @return html
     */
    public function cleanup_content_kses( $content ) {
        
        // Remove any script tag instance
        $content = preg_replace( '/<script[^>]*>.*?<\/script>/', '', $content );
    
        return $content;
    }
    
}
inc/slide/metaslide.image.class.php000064400000116044151213255530013272 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

/**
 * Generic Slider super class. Extended by library specific classes.
 */
class MetaImageSlide extends MetaSlide
{
    /**
     * Slide type
     *
     * @var string
     */
    public $identifier = 'image';

    /**
     * Register slide type
     */
    public function __construct()
    {
        parent::__construct();
        add_filter('metaslider_get_image_slide', array($this, 'get_slide' ), 10, 2);
        add_filter('metaslider_html_purifier_config', array($this, 'html_purifier_config'));
        add_action('metaslider_save_image_slide', array($this, 'save_slide' ), 5, 3);
        add_action('wp_ajax_create_image_slide', array($this, 'ajax_create_image_slides'));
        add_action('wp_ajax_resize_image_slide', array($this, 'ajax_resize_slide'));
        add_action('wp_ajax_duplicate_slide', array( $this, 'ajax_duplicate_slide' ));
    }

    /**
     * Creates one or more slide.
     * Currently this is used via an ajax call, but plans to keep this only called
     * by PHP methods, such as in an import situation.
     *
     * @param int   $slideshow_id The id of the slider
     * @param array $data         The data information for the new slide
     *
     * @return array | WP_error The status message and if success, an array of slide ids
     */
    public function create_slides($slideshow_id, $data)
    {
        $errors = array();
        $slides = array();
        foreach ($data as $slide_data) {
            // TODO check type and create slides based on that type
            // $method = 'create_' . $slide['type'] . '_slide';
            // $this->slider->add_slide($this->{$method}());
            $result = $this->add_slide($slideshow_id, $slide_data);
            if (is_wp_error($result)) {
                array_push($errors, $result);
            } else {
                array_push($slides, $result);
            }
        }

        // We don't bail on an error, so we need to send back a list of errors, if any
        if (count($errors)) {
            $error_response = new WP_Error('create_failed', 'We experienced some errors while adding slides.', array('status' => 409));
            foreach ($errors as $message) {
                $error_response->add('create_failed', $message, array('status' => 409));
            }
            return $error_response;
        }

        return $slides;
    }

    /**
     * Adds a single slide.
     * TODO refactor and put this in a Slider class
     *
     * @param int   $slideshow_id The id of the slider
     * @param array $data         The data information for the new slide
     *
     * @return array | WP_Error The slide_id and html content
     */
    public function add_slide($slideshow_id, $data)
    {

        // For now this only handles images, so check it's an image
        if (!wp_attachment_is_image($data['id'])) {
            // TODO this is the old way to handle errors
            // Remove this later and handle errors using data returns
            //echo '<tr><td colspan="2">ID: ' . esc_html($data['id']) . ' "' . esc_html(get_the_title($data['id'])) . '" - ' . esc_html__("Failed to add slide. Slide is not an image.", 'ml-slider') . "</td></tr>";

            return new WP_Error('create_failed', __('This isn\'t a valid image format. Please try again.', 'ml-slider'), array('status' => 409));
        }

        $slide_id = $this->insert_slide($data['id'], $data['type'], $slideshow_id);
        if (is_wp_error($slide_id)) {
            return $slide_id;
        }


        // TODO refactor these and investigate why they are needed (legacy?)
        $this->set_slide($slide_id);
        $this->set_slider($slideshow_id);
        $this->tag_slide_to_slider();

        // set default inherit values
        $this->set_field_inherited('title', true);
        $this->set_field_inherited('alt', true);

        // TODO investigate if this is really needed
        $this->settings['width'] = 0;
        $this->settings['height'] = 0;

        // Return the html object
        return array('slide_id' => $slide_id, 'html' => $this->get_admin_slide());
    }

    /**
     * Ajax wrapper to create multiple slides.
     * TODO: deprecate this in favor of only allowing single slide creation
     *
     * @return string The status message and if success, the count of slides added
     */
    public function ajax_create_image_slides()
    {
        if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'metaslider_create_slide')) {
            wp_send_json_error(array(
                'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
            ), 401);
        }

        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
        if (! current_user_can($capability)) {
            wp_send_json_error(
                [
                    'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                ],
                403
            );
        }

        if (! isset($_POST['slider_id']) || ! isset($_POST['selection'])) {
            wp_send_json_error(
                [
                    'message' => __('Bad request', 'ml-slider'),
                ],
                400
            );
        }

        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
        if (! current_user_can($capability)) {
            wp_send_json_error(
                [
                    'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                ],
                403
            );
        }

        if(empty($_POST['slider_id'])) {
            $slider_id = MetaSlider_Slideshows::create();
        } else {
            $slider_id = absint($_POST['slider_id']);
        }

        $slides = $this->create_slides(
            $slider_id,
            array_map(array($this, 'make_image_slide_data'), $_POST['selection']) // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
        );

        if (is_wp_error($slides)) {
            wp_send_json_error(array(
                'messages' => $slides->get_error_messages()
            ), 409);
        }

        if(empty($_POST['slider_id'])) {
            $response = $slider_id;
        } else {
            $response = $slides;
        }
        
        wp_send_json_success($response, 200);
    }

    /**
     * Adds the type and image id to an array
     *
     * @param  int $image_id Image ID
     * @return array
     */
    public function make_image_slide_data($image_id)
    {
        return array(
            'type' => 'image',
            'id'   => absint($image_id)
        );
    }

    /**
     * Updates the slide data.
     *
     * @param int $slide_id     The id of the slide being updated
     * @param int $image_id     The id of the new image to use
     * @param int $slideshow_id The id of the slideshow
     *
     * @return array|WP_error The status message and if success, details
     */
    public function update_slide($slide_id, $image_id, $slideshow_id = null)
    {
        // Currently only the image
        $image_data = $this->update_slide_image($slide_id, $image_id, $slideshow_id);
        if (is_wp_error($image_data)) {
            return $image_data;
        }

        return array(
            'image' => $image_data
        );
    }

    /**
     * Ajax wrapper to create new cropped images.
     *
     * @return string The status message
     */
    public function ajax_resize_slide()
    {
        if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'metaslider_resize')) {
            wp_send_json_error(array(
                'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
            ), 401);
        }

        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
        if (! current_user_can($capability)) {
            wp_send_json_error(
                [
                    'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                ],
                403
            );
        }

        if (! isset($_POST['slider_id']) || ! isset($_POST['slide_id'])) {
            wp_send_json_error(
                [
                    'message' => __('Bad request', 'ml-slider'),
                ],
                400
            );
        }

        $slideshow_id = absint($_POST['slider_id']);
        $slide_id = absint($_POST['slide_id']);
        $settings = get_post_meta($slideshow_id, 'ml-slider_settings', true);
        if (empty($settings) || !is_array($settings)) {
            $settings = array();
        }

        $result = $this->resize_slide($slide_id, $slideshow_id, $settings);

        do_action("metaslider_ajax_resize_image_slide", $slide_id, $slideshow_id, $settings);

        if (is_wp_error($result)) {
            wp_send_json_error(array(
                'messages' => $result->get_error_messages()
            ), 409);
        }

        wp_send_json_success($result, 200);
    }

    /**
     * Function to create new cropped images.
     *
     * @param string $slide_id     - The id of the slide being cropped
     * @param string $slideshow_id - The id of the slideshow
     * @param array  $settings     - The settings for the slideshow
     *
     * @return array
     */
    public function resize_slide($slide_id, $slideshow_id, $settings = array())
    {

        // Required for the eventual cropping to take place
        $this->set_slide($slide_id);
        $this->set_slider($slideshow_id);

        // Use what's provided, or grab it from the database. If settings is false, set it as an empty array
        $settings = empty($settings) ? get_post_meta($slideshow_id, 'ml-slider_settings', true) : $settings;
        if (!$settings) {
            $settings = array();
        }

        // Create a copy of the correct sized image
        $imageHelper = new MetaSliderImageHelper(
            $slide_id,
            isset($settings['width']) ? $settings['width'] : 0,
            isset($settings['height']) ? $settings['height'] : 0,
            isset($settings['smartCrop']) ? $settings['smartCrop'] : 'false',
            $this->use_wp_image_editor()
        );

        $url = $imageHelper->get_image_url(true);

        do_action("metaslider_resize_image_slide", $slide_id, $slideshow_id, $settings);
        return array('img_url' => $url);
    }

    public function duplicate_slide($slideshow_id, $slide_id)
    {
        $old_slide = get_post($slide_id);
        if (!$old_slide) {
            return 0;
        }
        $title = $old_slide->post_title;
        $post_excerpt = '';
        if(isset($old_slide->post_excerpt)){
            $post_excerpt = $old_slide->post_excerpt;
        }
        $new_slide = [
            'post_title'  => $title,
            'post_name'   => sanitize_title($title),
            'post_status' => 'publish',
            'post_type'   => $old_slide->post_type,
            'post_excerpt'   => $post_excerpt
        ];
        $new_slide_id = wp_insert_post($new_slide);
        $slide_meta = get_post_custom($slide_id);
        foreach ($slide_meta as $key => $values) {
            foreach ($values as $value) {
                add_post_meta($new_slide_id, $key, maybe_unserialize($value));
            }
        }
        $taxonomies = get_post_taxonomies($slide_id);
        foreach ($taxonomies as $taxonomy) {
            $term_ids = wp_get_object_terms($slide_id, $taxonomy, ['fields' => 'ids']);
            wp_set_object_terms($new_slide_id, $term_ids, $taxonomy);
        }

        $this->set_slide($new_slide_id);
        $this->set_slider($slideshow_id);

        return array('slide_id' => $new_slide_id, 'html' => $this->get_admin_slide());
    }

    public function ajax_duplicate_slide()
    {
        if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(sanitize_key($_REQUEST['_wpnonce']), 'metaslider_duplicate_slide')) {
            wp_send_json_error(array(
                'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
            ), 401);
        }

        $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
        if (! current_user_can($capability)) {
            wp_send_json_error(
                [
                    'message' => __('Access denied', 'ml-slider')
                ],
                403
            );
        }


        if (! isset($_POST['slide_id']) || ! isset($_POST['slider_id'])) {
            wp_send_json_error(
                [
                    'message' => __('Bad request', 'ml-slider'),
                ],
                400
            );
        }

        $result = $this->duplicate_slide(
            absint($_POST['slider_id']),
            absint($_POST['slide_id'])
        );

        wp_send_json_success($result, 200);
    }

    /**
     * Return the HTML used to display this slide in the admin screen
     *
     * @return string slide html
     */
    protected function get_admin_slide()
    {

        // get some slide settings
        $slide_label    = apply_filters("metaslider_image_slide_label", esc_html__("Image Slide", "ml-slider"), $this->slide, $this->settings);
        $attachment_id  = $this->get_attachment_id();

        ob_start();
        echo $this->get_delete_button_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        echo $this->get_update_image_button_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        echo $this->get_duplicate_slide_button_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        do_action('metaslider-slide-edit-buttons', 'image', $this->slide->ID, $attachment_id);
        $edit_buttons = ob_get_clean();

        // slide row HTML
        $row  = "<tr id='slide-" . esc_attr($this->slide->ID) . "' class='slide image flex responsive nivo coin' data-attachment-id='" . esc_attr($attachment_id) . "'>
                    <td class='col-1'>
                        <div class='metaslider-ui-controls ui-sortable-handle rtl:pl-0 rtl:pr-3'>
                        <h4 class='slide-details'>" . esc_html($slide_label) . " | ID: ". esc_html($this->slide->ID) ."</h4>";
        if (metaslider_this_is_trash($this->slide)) {
            $row .= '<div class="row-actions trash-btns">';
            $row .= "<span class='untrash'>{$this->get_undelete_button_html()}</span>";
            $row .= ' | ';
            $row .= "<span class='delete'>{$this->get_permanent_delete_button_html()}</span>";
            $row .= '</div>';
        } else {
            $row .= $edit_buttons;
        }
        $row .=         "</div>
                    </td>
					<td class='col-2'>" .
                    // For now this is the entry point for a slide since you cant wrap around table elements.
                    "<metaslider-slide id='" . esc_attr($this->slide->ID) . "' inline-template>
                        <div class='metaslider-ui-inner flex flex-col h-full'>
                            " . $this->get_admin_slide_tabs_html() . "
                            <input type='hidden' name='attachment[" . esc_attr($this->slide->ID) . "][type]' value='image' />
                            <input type='hidden' class='menu_order' name='attachment[" . esc_attr($this->slide->ID) . "][menu_order]' value='" . esc_attr($this->slide->menu_order) . "' />
                            <input type='hidden' name='resize_slide_id' data-slide_id='" . esc_attr($this->slide->ID) . "' data-width='" . esc_attr($this->settings['width']) . "' data-height='" . esc_attr($this->settings['height']) . "' />
						</div>
					</metaslider-slide>
                    </td>
                </tr>";

        return $row;
    }

    /**
     * Build an array of tabs and their titles to use for the admin slide.
     */
    public function get_admin_tabs()
    {
        $slide_id       = absint( $this->slide->ID );
        $attachment_id  = $this->get_attachment_id();
        $attachment     = get_post( $attachment_id );

        // alt
        $alt = esc_attr(get_post_meta($slide_id, '_wp_attachment_image_alt', true));
        $image_alt = esc_attr(get_post_meta($attachment_id, '_wp_attachment_image_alt', true));
        $inherit_image_alt_check = false; // Converted from string to bool @since 3.60 
        $inherit_image_alt_class = '';
        if ($this->is_field_inherited('alt')) {
            $inherit_image_alt_check = true; // Converted from string to bool @since 3.60 
            $inherit_image_alt_class = ' inherit-from-image';
        }
        // title
        $title = esc_attr(get_post_meta($slide_id, 'ml-slider_title', true));
        $image_title = esc_attr($attachment->post_title);
        $inherit_image_title_check = false; // Converted from string to bool @since 3.60 
        $inherit_image_title_class = '';
        if ($this->is_field_inherited('title')) {
            $inherit_image_title_check = true; // Converted from string to bool @since 3.60 
            $inherit_image_title_class = ' inherit-from-image';
        }

        // alt link
        $link_alt = get_post_meta($slide_id, 'ml-slider_link-alt', true);

        // URL and target
        $url    = get_post_meta( $slide_id, 'ml-slider_url', true );
        $target = get_post_meta( $slide_id, 'ml-slider_new_window', true );

        ob_start();
        include METASLIDER_PATH . 'admin/views/slides/tabs/general.php';
        $general_tab = ob_get_clean();

        if (!$this->is_valid_image()) {
            $message = __("Warning: The image data does not exist. Please re-upload the image.", "ml-slider");

            $general_tab = "<div class='warning'>{$message}</div>" . $general_tab;
        }

        ob_start();
        include METASLIDER_PATH . 'admin/views/slides/tabs/link.php';
        $link_tab = ob_get_clean();

        ob_start();
        include METASLIDER_PATH . 'admin/views/slides/tabs/seo.php';
        $seo_tab = ob_get_clean();

        $tabs = array(
            'general' => array(
                'title' => __("General", "ml-slider"),
                'content' => $general_tab
            ),
            'link' => array(
                'title' => __( "Link", "ml-slider" ),
                'content' => $link_tab
            ),
            'seo' => array(
                'title' => __("SEO", "ml-slider"),
                'content' => $seo_tab
            )
        );

        $ms_slider = new MetaSliderPlugin();
        $global_settings = $ms_slider->get_global_settings();
        if (
            !isset($global_settings['mobileSettings']) ||
            (isset($global_settings['mobileSettings']) && true == $global_settings['mobileSettings'])
        ) {
            ob_start();
            include METASLIDER_PATH . 'admin/views/slides/tabs/mobile.php';
            $mobile_tab = ob_get_clean();

            $tabs['mobile'] = array(
                'title' => __("Mobile", "ml-slider"),
                'content' => $mobile_tab
            );
        }

        if (version_compare(get_bloginfo('version'), 3.9, '>=')) {
            $crop_position = get_post_meta($slide_id, 'ml-slider_crop_position', true);

            if (!$crop_position) {
                $crop_position = 'center-center';
            }

            ob_start();
            include METASLIDER_PATH . 'admin/views/slides/tabs/crop.php';
            $crop_tab = ob_get_clean();

            $tabs['crop'] = array(
                'title' => __("Crop", "ml-slider"),
                'content' => $crop_tab
            );
        }

        // Adds schedule tab
        ob_start();
        include METASLIDER_PATH . 'admin/views/slides/tabs/schedule.php';
        $schedule_tab = ob_get_contents();
        ob_end_clean();

        $tabs['schedule'] = array(
            'title' => __('Schedule', 'ml-slider'),
            'content' => $schedule_tab
        );

        return apply_filters("metaslider_image_slide_tabs", $tabs, $this->slide, $this->slider, $this->settings);
    }


    /**
     * Check to see if metadata exists for this image. Assume the image is
     * valid if metadata and a size exists for it (generated during initial
     * upload to WordPress).
     *
     * @return bool, true if metadata and size exists.
     */
    public function is_valid_image()
    {
        if (get_post_type($this->slide->ID) === 'attachment') {
            $image_id = $this->slide->ID;
        } else {
            $image_id = get_post_thumbnail_id($this->slide->ID);
        }

        $meta = wp_get_attachment_metadata($image_id);

        $is_valid = isset($meta['width'], $meta['height']);

        return apply_filters('metaslider_is_valid_image', $is_valid, $this->slide);
    }


    /**
     * Disable/enable image editor
     *
     * @return bool
     */
    public function use_wp_image_editor()
    {
        return apply_filters('metaslider_use_image_editor', $this->is_valid_image(), $this->slide);
    }


    /**
     * Returns the HTML for the public slide
     *
     * @return string slide html
     */
    protected function get_public_slide()
    {

        // get the image url (and handle cropping)
        // disable wp_image_editor if metadata does not exist for the slide
        $imageHelper = new MetaSliderImageHelper(
            $this->slide->ID,
            $this->settings['width'],
            $this->settings['height'],
            isset($this->settings['smartCrop']) ? $this->settings['smartCrop'] : 'false',
            $this->use_wp_image_editor()
        );

        $thumb = $imageHelper->get_image_url();
        $attachment_id = get_post_thumbnail_id($this->slide->ID);
        $attachment = get_post($attachment_id);

        // Leave this here as the caption used to be inhereted
        if ($this->is_field_inherited('caption')) {
            $caption = $attachment->post_excerpt;
        } else {
            $caption_source = get_post_meta($this->slide->ID, 'ml-slider_caption_source', true);
            switch ($caption_source) {
                case 'image-caption':
                    $caption = $attachment->post_excerpt;
                    break;
                case 'image-description':
                    $caption = $attachment->post_content;
                    break;
                default:
                    $caption = $this->slide->post_excerpt;
                    break;
            }
        }

        if ($this->detect_self_metaslider_shortcode($this->slide->post_excerpt)) {
            $caption = str_replace(array("[metaslider", "[ml-slider"), "[metaslider-disabled", $this->slide->post_excerpt);
        }

        if ($this->is_field_inherited('title')) {
            $title = $attachment->post_title;
        } else {
            $title = get_post_meta($this->slide->ID, 'ml-slider_title', true);
        }

        if ($this->is_field_inherited('alt')) {
            $alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true);
        } else {
            $alt = get_post_meta($this->slide->ID, '_wp_attachment_image_alt', true);
        }

        $link_alt = get_post_meta($this->slide->ID, 'ml-slider_link-alt', true);


        // store the slide details
        $slide = array(
            'id' => $this->slide->ID,
            'url' => get_post_meta($this->slide->ID, 'ml-slider_url', true),
            'title' => $title,
            'target' => get_post_meta($this->slide->ID, 'ml-slider_new_window', true) ? '_blank' : '_self',
            'src' => $thumb,
            'thumb' => $thumb, // backwards compatibility with Vantage
            'width' => $this->settings['width'],
            'height' => $this->settings['height'],
            'alt' => $alt,
            'link-alt' => $link_alt,
            'caption' => html_entity_decode(do_shortcode($caption), ENT_NOQUOTES, 'UTF-8'),
            'caption_raw' => do_shortcode($caption),
            'class' => "slider-{$this->slider->ID} slide-{$this->slide->ID}",
            'rel' => "",
            'data-thumb' => ""
        );

        // Remove unsafe html but let users that rely on this to override
        if (apply_filters('metaslider_filter_unsafe_html', true, $slide, $this->slider->ID, $this->settings) && $slide['caption']) {
            try {
                if (!class_exists('HTMLPurifier')) {
                    require_once(METASLIDER_PATH . 'lib/htmlpurifier/library/HTMLPurifier.auto.php');
                }
                $config = HTMLPurifier_Config::createDefault();
                // How to filter:
                // add_filter('metaslider_html_purifier_config', function($config) {
                //     $config->set('HTML.Allowed', 'a[href|target]');
                //     $config->set('Attr.AllowedFrameTargets', array('_blank'));
                //     return $config;
                // });
                $config = apply_filters('metaslider_html_purifier_config', $config, $slide, $this->slider->ID, $this->settings);
                $purifier = new HTMLPurifier($config);
                $slide['caption'] = $purifier->purify($slide['caption']);
            } catch (Exception $e) {
                // If something goes wrong then escape
                $slide['caption'] = htmlspecialchars(do_shortcode($caption), ENT_NOQUOTES, 'UTF-8');
            }
        }

        // fix slide URLs
        if (strpos($slide['url'], 'www.') === 0) {
            $slide['url'] = 'http://' . $slide['url'];
        }

        $slide = apply_filters('metaslider_image_slide_attributes', $slide, $this->slider->ID, $this->settings);

        // return the slide HTML
        switch ($this->settings['type']) {
            case "coin":
                return $this->get_coin_slider_markup($slide);
            case "flex":
                return $this->get_flex_slider_markup($slide);
            case "nivo":
                return $this->get_nivo_slider_markup($slide);
            case "responsive":
                return $this->get_responsive_slides_markup($slide);
            default:
                return $this->get_flex_slider_markup($slide);
        }
    }

    /**
     * Generate nivo slider markup
     *
     * @param  string $slide html
     * @return string slide html
     */
    private function get_nivo_slider_markup($slide)
    {
        $attributes = apply_filters('metaslider_nivo_slider_image_attributes', array(
                'src' => $slide['src'],
                'height' => $slide['height'],
                'width' => $slide['width'],
                'data-caption' => htmlentities( apply_filters( 'metaslider_image_caption', $slide['caption_raw'] ), ENT_QUOTES, 'UTF-8'),
                'data-thumb' => $slide['data-thumb'],
                'title' => $slide['title'],
                'alt' => $slide['alt'],
                'rel' => $slide['rel'],
                'class' => $slide['class']
            ), $slide, $this->slider->ID);

        $html = $this->build_image_tag($attributes);

        $anchor_attributes = apply_filters('metaslider_nivo_slider_anchor_attributes', array(
                'href' => $slide['url'],
                'target' => $slide['target']
            ), $slide, $this->slider->ID);

        if (strlen($anchor_attributes['href'])) {
            $html = $this->build_anchor_tag($anchor_attributes, $html);
        }

        return apply_filters('metaslider_image_nivo_slider_markup', $html, $slide, $this->settings);
    }

    /**
     * Generate flex slider markup
     *
     * @param  string $slide html
     * @return string slide html
     */
    private function get_flex_slider_markup($slide)
    {
        $image_attributes = array(
            'src' => $slide['src'],
            'height' => $slide['height'],
            'width' => $slide['width'],
            'alt' => $slide['alt'],
            'rel' => $slide['rel'],
            'class' => $slide['class'],
            'title' => $slide['title']
        );

        if ($this->settings['smartCrop'] == 'disabled_pad') {
            $image_attributes['style'] = $this->flex_smart_pad($image_attributes, $slide);
        }

        $attributes = apply_filters('metaslider_flex_slider_image_attributes', $image_attributes, $slide, $this->slider->ID);

        $html = $this->build_image_tag($attributes);

        $anchor_attributes = apply_filters('metaslider_flex_slider_anchor_attributes', array(
                'href' => $slide['url'],
                'target' => $slide['target'],
                'aria-label' => $slide['link-alt']
            ), $slide, $this->slider->ID);

        if (strlen($anchor_attributes['href'])) {
            $html = $this->build_anchor_tag($anchor_attributes, $html);
        }

        //add class for mobile setting
        $device = array('smartphone', 'tablet', 'laptop', 'desktop');
        $mobile_class = '';
        foreach ($device as $value) {
            $hidden_slide = get_post_meta( $this->slide->ID , 'ml-slider_hide_slide_' . $value, true );
            if(!empty($hidden_slide)) {
              $mobile_class .= 'hidden_' . $value . ' ';
            }
        }
        
        // add caption
        if (strlen($slide['caption'])) {
            $html .= '<div class="caption-wrap"><div class="caption">' . 
                apply_filters( 'metaslider_image_caption', apply_shortcodes( $slide['caption'] ) )  . 
            '</div></div>';
        }

        $attributes = apply_filters('metaslider_flex_slider_list_item_attributes', array(
                'data-thumb' => isset($slide['data-thumb']) ? $slide['data-thumb'] : "",
                'style' => "display: none; width: 100%;",
                'class' => "slide-{$this->slide->ID} ms-image {$mobile_class}",
                'aria-roledescription' => "slide",
                'aria-label' =>"slide-{$this->slide->ID}"
            ), $slide, $this->slider->ID);

        $li = "<li";

        foreach ($attributes as $att => $val) {
            if (strlen($val)) {
                $li .= " " . $att . '="' . esc_attr($val) . '"';
            }
        }

        $li .= ">" . $html . "</li>";

        $html = $li;


        return apply_filters('metaslider_image_flex_slider_markup', $html, $slide, $this->settings);
    }

    /**
     * Calculate the correct width (for vertical alignment) or top margin (for horizontal alignment)
     * so that images are never stretched above the height set in the slideshow settings
     *
     * @param  array $atts  Attributes
     * @param  array $slide Slide details
     * @return string
     */
    private function flex_smart_pad($atts, $slide)
    {
        if (get_post_type($slide['id']) === 'attachment') {
            $slide_id = $slide['id'];
        } else {
            $slide_id = get_post_thumbnail_id($slide['id']);
        }

        $meta = wp_get_attachment_metadata($slide_id);
        $default_settings = MetaSlider_Slideshow_Settings::defaults();

        if (isset($meta['width'], $meta['height'])) {
            $image_width = $meta['width'];
            $image_height = $meta['height'];

            //if slider width and height is empty, get default settings and cast to int
            if ( !empty( $this->settings['height'] )) {
                $container_height = (int)$this->settings['height'];
            } else {
                $container_height = (int)$default_settings['height'];
            }

            if ( !empty( $this->settings['width'] )) {
                $container_width = (int)$this->settings['width'];
            } else {
                $container_width = (int)$default_settings['width'];
            }
            
            $new_image_height = $image_height * ($container_width / $image_width);

            if ($new_image_height < $container_height) {
                $margin_top_in_px = ($container_height - $new_image_height) / 2;
                $margin_top_in_percent = ($margin_top_in_px / $container_width) * 100;
                return 'margin-top: ' . $margin_top_in_percent . '%';
            } else {
                return 'margin: 0 auto; width: ' . ($container_height / $new_image_height) * 100 . '%';
            }
        }

        return "";
    }


    /**
     * Generate coin slider markup
     *
     * @param  string $slide html
     * @return string slide html
     */
    private function get_coin_slider_markup($slide)
    {
        $attributes = apply_filters('metaslider_coin_slider_image_attributes', array(
                'src' => $slide['src'],
                'height' => $slide['height'],
                'width' => $slide['width'],
                'alt' => $slide['alt'],
                'rel' => $slide['rel'],
                'class' => $slide['class'],
                'title' => $slide['title'],
                'style' => 'display: none;'
            ), $slide, $this->slider->ID);

        $html = $this->build_image_tag($attributes);

        if (strlen($slide['caption'])) {
            $html .= "<span>". 
                apply_filters( 'metaslider_image_caption', apply_shortcodes( $slide['caption'] ) )  .
            "</span>";
        }

        $attributes = apply_filters('metaslider_coin_slider_anchor_attributes', array(
                'href' => strlen($slide['url']) ? $slide['url'] : 'javascript:void(0)',
                'target' => strlen($slide['url']) ? $slide['target'] : '_self'
            ), $slide, $this->slider->ID);

        $html = $this->build_anchor_tag($attributes, $html);

        return apply_filters('metaslider_image_coin_slider_markup', $html, $slide, $this->settings);
    }

    /**
     * Generate responsive slides markup
     *
     * @param  string $slide html
     * @return string slide html
     */
    private function get_responsive_slides_markup($slide)
    {
        $attributes = apply_filters('metaslider_responsive_slider_image_attributes', array(
                'src' => $slide['src'],
                'height' => $slide['height'],
                'width' => $slide['width'],
                'alt' => $slide['alt'],
                'rel' => $slide['rel'],
                'class' => $slide['class'],
                'title' => $slide['title']
            ), $slide, $this->slider->ID);

        $html = $this->build_image_tag($attributes);

        if (strlen($slide['caption'])) {
            $html .= '<div class="caption-wrap"><div class="caption">' . 
                apply_filters( 'metaslider_image_caption', apply_shortcodes( $slide['caption'] ) )  . 
            '</div></div>';
        }

        $anchor_attributes = apply_filters('metaslider_responsive_slider_anchor_attributes', array(
                'href' => $slide['url'],
                'target' => $slide['target']
            ), $slide, $this->slider->ID);

        if (strlen($anchor_attributes['href'])) {
            $html = $this->build_anchor_tag($anchor_attributes, $html);
        }

        return apply_filters('metaslider_image_responsive_slider_markup', $html, $slide, $this->settings);
    }

    /**
     * Allow '_blank' as target value in HTML. Only in use for captions for now.
     * 
     * @since 3.90.1
     */
    public function html_purifier_config($config)
    {
        $config->set('Attr.AllowedFrameTargets', array('_blank'));
        
        return $config;
    }

    /**
     * Save
     *
     * @param  array $fields Fields to save
     */
    protected function save($fields)
    {
        $args = array(
            'ID' => $this->slide->ID,
            'menu_order' => $fields['menu_order']
        );

        // This textarea might be hidden, so only update it if it exists
        if (isset($fields['post_excerpt'])) {
            $args['post_excerpt'] = $fields['post_excerpt'];
        }

        wp_update_post($args);

        $this->add_or_update_or_delete_meta($this->slide->ID, 'url', $fields['url']);
        $this->add_or_update_or_delete_meta($this->slide->ID, 'title', $fields['title']);
        $this->add_or_update_or_delete_meta($this->slide->ID, 'crop_position', $fields['crop_position']);
        $this->add_or_update_or_delete_meta($this->slide->ID, 'caption_source', $fields['caption_source']);

        $this->set_field_inherited('title', isset($fields['inherit_image_title']) && $fields['inherit_image_title'] === 'on');
        $this->set_field_inherited('alt', isset($fields['inherit_image_alt']) && $fields['inherit_image_alt'] === 'on');

        if (isset($fields['alt'])) {
            update_post_meta($this->slide->ID, '_wp_attachment_image_alt', $fields['alt']);
        }

        if (isset($fields['link-alt'])) {
            $this->add_or_update_or_delete_meta($this->slide->ID, 'link-alt', $fields['link-alt']);
        }

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'new_window',
            isset($fields['new_window']) && $fields['new_window'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_slide_smartphone',
            isset($fields['hide_slide_smartphone']) && $fields['hide_slide_smartphone'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_slide_tablet',
            isset($fields['hide_slide_tablet']) && $fields['hide_slide_tablet'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_slide_laptop',
            isset($fields['hide_slide_laptop']) && $fields['hide_slide_laptop'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_slide_desktop',
            isset($fields['hide_slide_desktop']) && $fields['hide_slide_desktop'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_caption_smartphone',
            isset($fields['hide_caption_smartphone']) && $fields['hide_caption_smartphone'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_caption_tablet',
            isset($fields['hide_caption_tablet']) && $fields['hide_caption_tablet'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_caption_laptop',
            isset($fields['hide_caption_laptop']) && $fields['hide_caption_laptop'] === 'on'
        );

        $this->add_or_update_or_delete_meta(
            $this->slide->ID,
            'hide_caption_desktop',
            isset($fields['hide_caption_desktop']) && $fields['hide_caption_desktop'] === 'on'
        );

    }

    /**
     * Gets the inheritn parameter of a field
     *
     * @param string $field Field to check
     * @return bool
     */
    private function is_field_inherited($field)
    {
        return (bool) get_post_meta($this->slide->ID, 'ml-slider_inherit_image_' . $field, true);
    }

    /**
     * Sets the inherit parameter of a field.
     *
     * @param string $field Field to set
     * @param bool   $value Value is currently isset($fields['checkbox_parameter'])
     * @return mixed Returns meta_id if the meta doesn't exist, otherwise returns true on success and false on failure. NOTE: If the meta_value passed to this function is the same as the value that is already in the database, this function returns false.
     */
    private function set_field_inherited($field, $value)
    {
        // TODO eventually I would like to handle errors / successful updates to the database even if just sending it to a log file
        return update_post_meta($this->slide->ID, 'ml-slider_inherit_image_' . $field, (bool) $value);
    }
}
inc/metaslider.systemcheck.class.php000064400000016241151213255530013612 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Check for common issues with the server environment and WordPress install.
 */
class MetaSliderSystemCheck
{
    /**
     * System check options
     *
     * @var array
     */
    private $options = array();
    
    /**
     * Current slideshow ID
     *
     * @var int
     */
    private $slideshow_id;

    /**
     * Constructor
     * 
     * @param int|null $slideshow_id The current slideshow ID
     */
    public function __construct($slideshow_id = null)
    {
        $this->slideshow_id = $slideshow_id;
        $this->options = get_site_option('metaslider_systemcheck');
    }

    /**
     * Check the system
     */
    public function check()
    {
        $this->dismissMessages();
        $this->checkMaxInputVars();
        $this->checkWordPressVersion();
        $this->checkImageLibrary();
        $this->checkRoleScoper();
        // $this->checkWpFooter();
        $this->updateSystemCheck();
    }

    /**
     * Disable a message
     */
    private function dismissMessages()
    {
        if (isset($_REQUEST['dismissMessage']) && isset($_REQUEST['_wpnonce'])) {
            $nonce = sanitize_key($_REQUEST['_wpnonce']);
            $key = sanitize_key($_REQUEST['dismissMessage']);

            if (wp_verify_nonce($nonce, "metaslider-dismiss-{$key}")) {
                $this->options[$key] = false;
                update_site_option('metaslider_systemcheck', $this->options);
            }
        }
    }

    /**
     * Update our stored messages
     */
    private function updateSystemCheck()
    {
        update_site_option('metaslider_systemcheck', $this->options);
    }

    /**
     * Check if the server can handle saving
     */
    private function checkMaxInputVars()
    {
        if (!isset($_GET['input_vars_error'])) {
return;
        }

        // max_input_vars is not available < PHP5.3.9
        if (version_compare(phpversion(), '5.3.9', '<')) {
return;
        }
        $max_input_vars = ini_get('max_input_vars'); // phpcs:ignore PHPCompatibility.IniDirectives.NewIniDirectives.max_input_varsFound

        $error = sprintf(
            __('Your settings might not be saving properly due to a configuration on your server. %s is currently set to %s, but we recommend a setting of 4000. Please see %s for more information. The php.ini file is being loaded from here: %s', 'ml-slider'),
            '<code>max_input_vars</code>',
            $max_input_vars,
            sprintf('<a target="_blank" href="https://www.metaslider.com/faqs/settings-on-my-slideshow-are-not-saving/" class="text-blue underline">%s</a>', __('this article', 'ml-slider')),
            '<code>' . php_ini_loaded_file() . '</code>'
        );

        $this->printMessage($error, 'maxInputVars', 'dismissable');
    }

    /**
     * Check the WordPress version.
     */
    private function checkWordPressVersion()
    {
        if (isset($this->options['wordPressVersion']) && $this->options['wordPressVersion']  === false) {
            return;
        }

        if (!function_exists('wp_enqueue_media')) {
            $error = "MetaSlider requires WordPress 3.5 or above. Please upgrade your WordPress installation.";
            $this->printMessage($error, 'wordPressVersion');
        } else {
            $this->options['wordPressVersion'] = false;
        }
    }

    /**
     * Check GD or ImageMagick library exists
     */
    private function checkImageLibrary()
    {
        if (isset($this->options['imageLibrary']) && $this->options['imageLibrary'] === false) {
            return;
        }

        if (( !extension_loaded('gd') || !function_exists('gd_info') ) && ( !extension_loaded('imagick') || !class_exists('Imagick') || !class_exists('ImagickPixel') )) {
            $error = "MetaSlider requires the GD or ImageMagick PHP extension. Please contact your hosting provider";
            $this->printMessage($error, 'imageLibrary');
        } else {
            $this->options['imageLibrary'] = false;
        }
    }

    /**
     * Detect the role scoper plugin
     */
    private function checkRoleScoper()
    {
        if (isset($this->options['roleScoper']) && $this->options['roleScoper'] === false) {
            return;
        }

        if (function_exists('is_plugin_active') && is_plugin_active('role-scoper/role-scoper.php')) {
            $access_types = get_option('scoper_disabled_access_types');

            if (isset($access_types['front']) && !$access_types['front']) {
                $error = 'Role Scoper Plugin Detected. Please go to Roles > Options. Click the Realm Tab, scroll down to "Access Types" and uncheck the "Viewing content (front-end)" setting.';
                $this->printMessage($error, 'roleScoper');
            }
        }
    }

    /**
     * Check the theme has a call to 'wp_footer'
     */
    private function checkWpFooter()
    {
        $current_theme = wp_get_theme();
        $theme_name = $current_theme->Template;

        $key = 'wpFooter:' . $theme_name;

        if (isset($this->options[$key]) && $this->options[$key] === false) {
            return;
        }

        $child_footer = get_stylesheet_directory() . '/footer.php';
        $parent_footer = TEMPLATEPATH . '/footer.php';
        $theme_type = 'parent';

        if (file_exists($child_footer)) {
            $theme_type = 'child';
            $footer_file = file_get_contents($child_footer);

            if (strpos($footer_file, 'wp_footer()')) {
                return;
            }
        } else if (file_exists($parent_footer . '/footer.php')) {
                $theme_type = 'parent';
                $footer_file = file_get_contents($parent_footer . '/footer.php');

            if (strpos($footer_file, 'wp_footer()')) {
                return;
            }
        }

        if ($theme_type == 'parent') {
            $file_path = $parent_footer;
        } else {
            $file_path = $child_footer;
        }

        $error = "Required call to wp_footer() not found in file <b>{$file_path}</b>. <br /><br />Please check the <a href='http://codex.wordpress.org/Function_Reference/wp_footer'>wp_footer()</a> documentation and make sure your theme has a call to wp_footer() just above the closing </body> tag.";
        $this->printMessage($error, $key);
    }

    /**
     * Print a warning message to the screen
     *
     * @param string $message Warning message to be shown
     * @param string $key     Message Key
     * @param string $style   The functional style of the notice
     */
    private function printMessage($message, $key, $style = 'dismissable')
    {
        $nonce = wp_create_nonce("metaslider-dismiss-{$key}");
        $message = sprintf('<strong>%s</strong> ', esc_html__('Warning:', 'ml-slider')) . $message;
        // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        echo "<div id='message' class='updraft-ad-container notice updated metaslider-admin-notice'>
			<p class='m-0 p-2'>{$message}</p>";
        if ('dismissable' === $style) {
            echo "<div class='updraft-advert-dismiss'>
                <a class='underline text-blue-dark'  href='" . esc_url('?page=metaslider&dismissMessage=' . $key . '&' . '_wpnonce=' . $nonce) . ">Dismiss</a>
			</div>";
        }
        echo "</div>";
    }
}
ml-slider.php000064400000335045151213255530007161 0ustar00<?php
/*
 * MetaSlider. Slideshow plugin for WordPress.
 *
 * Plugin Name: MetaSlider
 * Plugin URI:  https://www.metaslider.com
 * Description: MetaSlider gives you the power to create a beautiful slideshow, carousel, or gallery on your WordPress site.
 * Version:     3.90.1
 * Author:      MetaSlider
 * Author URI:  https://www.metaslider.com
 * License:     GPL-2.0+
 * Copyright:   2024 - MetaSlider LLC
 *
 * Text Domain: ml-slider
 * Domain Path: /languages
 */

if (! defined('ABSPATH')) {
    die('No direct access.');
}

if (! class_exists('MetaSliderPlugin')) {
    if (! defined('METASLIDER_COMPOSER_AUTOLOAD_LOADED')) {
        if (is_readable(__DIR__ . '/vendor/autoload.php')) {
            require_once __DIR__ . '/vendor/autoload.php';
        }

        define('METASLIDER_COMPOSER_AUTOLOAD_LOADED', true);
    }

    /**
     * Register the plugin.
     *
     * Display the administration panel, insert JavaScript etc.
     */
    class MetaSliderPlugin
    {
        const DEFAULT_CAPABILITY_EDIT_SLIDES = 'edit_others_posts';

        /**
         * MetaSlider version number
         *
         * @var string
         */
        public $version = '3.90.1';

        /**
         * Pro installed version number
         *
         * @var string
         */
        public $installed_pro_version = '';

        /**
         * Specific Slider
         *
         * @var MetaSlider
         */
        public $slider = null;

        /**
         * Instance object
         *
         * @var object
         * @see get_instance()
         */
        protected static $instance = null;

        /**
         * @var MetaSlider_Admin_Pages
         */
        public $admin = null;

        /**
         * @var \MetaSlider_Themes|object|null
         */
        public $themes;

        /**
         * @var \MetaSlider_Api|object|null
         */
        public $api;

        /**
         * @var \MetaSlider_Gutenberg
         */
        public $gutenberg;

        /**
         * Constructor
         */
        public function __construct()
        {
        }

        /**
         * Used to access the instance
         *
         * @return object - class instance
         */
        public static function get_instance()
        {
            if (null === self::$instance) {
                self::$instance = new self();
            }
            return self::$instance;
        }

        /**
         * Setup
         */
        public function setup()
        {
            define('METASLIDER_PATH', plugin_dir_path(__FILE__));

            if (! class_exists('MetaSlider_Settings')) {
                require_once METASLIDER_PATH . 'admin/support/Settings.php';
            }

            require_once(METASLIDER_PATH . 'admin/lib/helpers.php');

            $this->define_constants();
            spl_autoload_register(array($this, 'autoload'));
            $this->setup_actions();
            $this->setup_filters();
            $this->setup_shortcode();
            $this->check_dependencies();

            // Load in slideshow admin relates classes.
            $this->register_slide_types();
            if (is_admin()) {
                $this->admin = new MetaSlider_Admin_Pages($this);
            }

            // Load in slideshow related classes
            require_once(METASLIDER_PATH . 'admin/slideshows/bootstrap.php');
            $this->themes = MetaSlider_Themes::get_instance();

            // Default to WP (4.4) REST API but backup with admin ajax
            require_once(METASLIDER_PATH . 'admin/routes/api.php');
            $this->api = MetaSlider_Api::get_instance();
            $this->api->setup();
            $this->api->register_admin_ajax_hooks();
            if (class_exists('WP_REST_Controller')) {
                new MetaSlider_REST_Controller();
            }

            if (function_exists('register_block_type')) {
                $this->gutenberg = new MetaSlider_Gutenberg($this);
            }

            $capability = apply_filters('metaslider_capability', self::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (is_admin() && current_user_can($capability)) {
                $analytics = new MetaSlider_Analytics();
                $analytics->load();
            }

            // require_once(METASLIDER_PATH . 'admin/lib/temporary.php');
        }

        /**
         * Remove admin notices in MetaSlider screens
         * The notices now are displayed through 'metaslider_admin_notices' hook
         * 
         * @since 3.90
         */
        public function filter_admin_notices() {
            $page = isset($_GET['page']) ? sanitize_key($_GET['page']) : '';
            if (strpos($page, 'metaslider') !== false) {
                remove_all_actions('admin_notices');
            }
        }

        /**
         * Define MetaSlider constants
         */
        private function define_constants()
        {
            if (! defined('METASLIDER_VERSION')) {
                $assets_version = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? uniqid() : $this->version;

                define('METASLIDER_VERSION', $this->version);
                define('METASLIDER_ASSETS_VERSION', $assets_version);
                define('METASLIDER_BASE_URL', plugin_dir_url(metaslider_plugin_is_installed('ml-slider')));
                define('METASLIDER_ASSETS_URL', METASLIDER_BASE_URL . 'assets/');
                define('METASLIDER_ADMIN_URL', METASLIDER_BASE_URL . 'admin/');
                define('METASLIDER_ADMIN_ASSETS_URL', METASLIDER_ADMIN_URL . 'assets/');

                define('METASLIDER_THEMES_PATH', METASLIDER_PATH . 'themes/');
                define('METASLIDER_THEMES_URL', METASLIDER_BASE_URL . 'themes/');
            }
        }

        /**
         * All MetaSlider classes
         */
        private function plugin_classes()
        {
            return array(
                'metaslider' => METASLIDER_PATH . 'inc/slider/metaslider.class.php',
                'metacoinslider' => METASLIDER_PATH . 'inc/slider/metaslider.coin.class.php',
                'metaflexslider' => METASLIDER_PATH . 'inc/slider/metaslider.flex.class.php',
                'metanivoslider' => METASLIDER_PATH . 'inc/slider/metaslider.nivo.class.php',
                'metaresponsiveslider' => METASLIDER_PATH . 'inc/slider/metaslider.responsive.class.php',
                'metaslide' => METASLIDER_PATH . 'inc/slide/metaslide.class.php',
                'metaimageslide' => METASLIDER_PATH . 'inc/slide/metaslide.image.class.php',
                'metasliderimagehelper' => METASLIDER_PATH . 'inc/metaslider.imagehelper.class.php',
                'metaslidersystemcheck' => METASLIDER_PATH . 'inc/metaslider.systemcheck.class.php',
                'metaslider_widget' => METASLIDER_PATH . 'inc/metaslider.widget.class.php',
                'simple_html_dom' => METASLIDER_PATH . 'inc/simple_html_dom.php',
                'metaslider_notices' => METASLIDER_PATH . 'admin/Notices.php',
                'metaslider_admin_pages' => METASLIDER_PATH . 'admin/Pages.php',
                'metaslider_admin_table' => METASLIDER_PATH . 'admin/Table.php',
                'metaslider_slideshows' => METASLIDER_PATH . 'admin/Slideshows/Slideshows.php',
                'metaslider_settings' => METASLIDER_PATH . 'admin/Slideshows/Settings.php',
                'metaslider_slide' => METASLIDER_PATH . 'admin/Slideshows/slides/Slide.php',
                'metaslider_themes' => METASLIDER_PATH . 'admin/Slideshows/Themes.php',
                'metaslider_image' => METASLIDER_PATH . 'admin/Slideshows/Image.php',
                'metaslider_gutenberg' => METASLIDER_PATH . 'admin/Gutenberg.php',
                'metaslider_analytics' => METASLIDER_PATH . 'admin/support/Analytics.php'
            );
        }

        /**
         * Display a warning on the plugins page if a dependancy
         * is missing or a conflict might exist.
         *
         * @return void
         */
        public function check_dependencies()
        {
            // MetaSlider pro is active but pre 2.13.0 (2.13.0 includes its own notice system)
            $slug = metaslider_plugin_is_installed('ml-slider-pro');
            if (is_plugin_active($slug)) {
                $pro_data = get_file_data(trailingslashit(WP_PLUGIN_DIR) . $slug, array('Version' => 'Version'));
                $this->installed_pro_version = $pro_data['Version'];
                if ($this->installed_pro_version && version_compare($this->installed_pro_version, '2.13.0', '<')) {
                    // Notices in admin pages except in MetaSlider admin pages - See MetaSliderPlugin->filter_admin_notices()
                    add_action('admin_notices', array($this, 'show_pro_is_outdated'), 10, 3);
                    // @since 3.90.1 - Notices in MetaSlider admin pages
                    add_action('metaslider_admin_notices', array($this, 'show_pro_is_outdated'), 10, 3);
                }
            }
        }

        /**
         * The warning message that is displayed
         *
         * @return void
         */
        public function show_pro_is_outdated()
        {
            global $pagenow;
            $page = isset($_GET['page']) ? sanitize_key($_GET['page']) : '';
            if ('update-core.php' !== $pagenow && 'plugins.php' !== $pagenow && 'metaslider' !== $page) {
                return;
            } ?>
            <div class='notice notice-error metaslider-pro-outdated-notice'>
                <p>
                    <?php
                    printf(
                        esc_html__(
                            'MetaSlider Pro is installed but is out of date. You may update it %shere%s. Learn more about this notice %shere%s',
                            'ml-slider'
                        ),
                        '<a href="' . esc_url(self_admin_url('plugins.php')) . '">',
                        '</a>',
                        '<a target="_blank" href="https://www.metaslider.com/pro-is-installed-but-out-of-date">',
                        '</a>'
                    );
                    ?>
                </p>
            </div>
            <?php
        }

        /**
         * Autoload MetaSlider classes to reduce memory consumption
         *
         * @param string $class Class name
         */
        public function autoload($class)
        {
            $classes = $this->plugin_classes();

            $class_name = strtolower($class);

            if (isset($classes[$class_name]) && is_readable($classes[$class_name])) {
                require_once($classes[$class_name]);
            }
        }


        /**
         * Register the [metaslider] shortcode.
         */
        private function setup_shortcode()
        {
            add_shortcode('metaslider', array($this, 'register_shortcode'));
            add_shortcode('ml-slider', array($this, 'register_shortcode')); // backwards compatibility
        }


        /**
         * Hook MetaSlider into WordPress
         */
        private function setup_actions()
        {
            add_action('admin_head', array($this, 'filter_admin_notices'));
            add_action('admin_menu', array($this, 'register_admin_pages'), 9553);
            add_action('admin_bar_menu', array($this, 'add_edit_links'), 100);
            add_action('init', array($this, 'register_post_types'));
            add_action('init', array($this, 'register_taxonomy'));
            add_action('init', array($this, 'load_plugin_textdomain'));
            add_action('admin_init', array($this, 'redirect_on_activate'));
            add_action('admin_footer', array($this, 'admin_footer'), 11);
            add_action('admin_footer', array($this, 'quickstart_params'), 11);
            
            add_action('admin_post_metaslider_switch_view', array($this, 'switch_view'));
            add_action('admin_post_metaslider_delete_slide', array($this, 'delete_slide'));
            add_action('admin_post_metaslider_delete_slider', array($this, 'delete_slider'));
            add_action('admin_post_metaslider_create_slider', array($this, 'create_slider'));

            add_action('media_upload_vimeo', array($this, 'upgrade_to_pro_tab_vimeo'));
            add_action('media_upload_youtube', array($this, 'upgrade_to_pro_tab_youtube'));
            add_action('media_upload_post_feed', array($this, 'upgrade_to_pro_tab_post_feed'));
            add_action('media_upload_layer', array($this, 'upgrade_to_pro_tab_layer'));
            add_action('media_upload_external_url', array($this, 'upgrade_to_pro_tab_external_url'));
            add_action('media_upload_local_video', array($this, 'upgrade_to_pro_tab_local_video'));
            add_action('media_upload_external_video', array($this, 'upgrade_to_pro_tab_external_video'));

            // TODO: Refactor to Slide class object
            add_action('wp_ajax_delete_slide', array($this, 'ajax_delete_slide'));
            add_action('wp_ajax_undelete_slide', array($this, 'ajax_undelete_slide'));
            add_action('wp_ajax_permanent_delete_slide', array($this, 'ajax_permanent_delete_slide'));
            add_action('wp_ajax_quickstart_upload', array($this, 'ajax_quickstart_upload'));
            add_action('wp_ajax_quickstart_slideshow', array($this, 'ajax_quickstart_slideshow'));

            // Set date showing the first activation and redirect
            if (! get_option('ms_was_installed_on')) {
                update_option('ms_was_installed_on', time());
            }

            // New install (for legacy library/widget)
            // disable widget on new installs
            if (get_option('metaslider_new_user') == false) {
                add_option('metaslider_new_user', 'new');
            } else {
                $global_settings = $this->get_global_settings();
                if (!isset($global_settings['legacyWidget']) 
                || ( isset($global_settings['legacyWidget'] ) && false == $global_settings['legacyWidget'])) {
                    add_action('widgets_init', array($this, 'register_metaslider_widget'));
                }
            }
        }

        public function redirect_on_activate()
        {
          if (get_option('metaslider_activate')) {
              delete_option('metaslider_activate');
              if(!isset($_GET['activate-multi'])) {
                  wp_redirect(admin_url("admin.php?page=metaslider-start"));
                  exit;
              }
          }
        }


        /**
         * Hook MetaSlider into WordPress
         */
        private function setup_filters()
        {
            add_filter('media_upload_tabs', array($this, 'custom_media_upload_tab_name'), 998);
            add_filter('media_view_strings', array($this, 'custom_media_uploader_tabs'), 5);
            add_action('media_buttons', array($this, 'insert_metaslider_button'));
            add_filter("plugin_row_meta", array($this, 'get_extra_meta_links'), 10, 4);
            add_action('admin_head', array($this, 'add_star_styles'));

            // html5 compatibility for stylesheets enqueued within <body>
            add_filter('style_loader_tag', array($this, 'add_property_attribute_to_stylesheet_links'), 11, 2);
        }

        /**
         * Register MetaSlider widget
         */
        public function register_metaslider_widget()
        {
            register_widget('MetaSlider_Widget');
        }


        /**
         * Register ML Slider post type
         */
        public function register_post_types()
        {
            $show_ui = false;

            $capability = apply_filters('metaslider_capability', self::DEFAULT_CAPABILITY_EDIT_SLIDES);

            if (is_admin() && current_user_can($capability) && (isset($_GET['show_ui']) || defined(
                        "METASLIDER_DEBUG"
                    ) && METASLIDER_DEBUG)) {
                $show_ui = true;
            }

            register_post_type(
                'ml-slider',
                array(
                    'query_var' => false,
                    'rewrite' => false,
                    'public' => false,
                    'exclude_from_search' => true,
                    'publicly_queryable' => false,
                    'show_in_nav_menus' => false,
                    'show_ui' => $show_ui,
                    'labels' => array(
                        'name' => 'MetaSlider'
                    )
                )
            );

            register_post_type(
                'ml-slide',
                array(
                    'query_var' => false,
                    'rewrite' => false,
                    'public' => false,
                    'exclude_from_search' => true,
                    'publicly_queryable' => false,
                    'show_in_nav_menus' => false,
                    'show_ui' => $show_ui,
                    'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt'),
                    'labels' => array(
                        'name' => 'Meta Slides'
                    )
                )
            );
        }


        /**
         * Register taxonomy to store slider => slides relationship
         */
        public function register_taxonomy()
        {
            $show_ui = false;

            $capability = apply_filters('metaslider_capability', self::DEFAULT_CAPABILITY_EDIT_SLIDES);

            if (is_admin() && current_user_can($capability) && (isset($_GET['show_ui']) || defined(
                        "METASLIDER_DEBUG"
                    ) && METASLIDER_DEBUG)) {
                $show_ui = true;
            }

            register_taxonomy(
                'ml-slider',
                array('attachment', 'ml-slide'),
                array(
                    'hierarchical' => true,
                    'public' => false,
                    'query_var' => false,
                    'rewrite' => false,
                    'show_ui' => $show_ui,
                    'label' => "Slider"
                )
            );
        }


        /**
         * Register our slide types
         */
        private function register_slide_types()
        {
            $image = new MetaImageSlide();
        }

        /**
         * Add the menu pages
         */
        public function register_admin_pages()
        {
            $title = metaslider_pro_is_active() ? 'MetaSlider Pro' : 'MetaSlider';

            $this->admin->add_page($title, 'metaslider');
            $this->admin->add_page(__('Home', 'ml-slider'), 'metaslider', 'metaslider');
            $this->admin->add_page(__('Quick Start', 'ml-slider'), 'metaslider-start', 'metaslider');
            $this->admin->add_page(__('Settings & Help', 'ml-slider'), 'metaslider-settings', 'metaslider');

            if (metaslider_user_sees_upgrade_page()) {
                $this->admin->add_page(__('Upgrade to Pro', 'ml-slider'), 'upgrade-metaslider', 'metaslider');
            }
        }

        /**
         * Add edit slideshow links to admin toolbar
         * 
         * @since 3.40
         */
        public function add_edit_links($admin_bar){
            if ( ! current_user_can( 'manage_options' ) ) {
                return;
            }

            $global_settings = get_option( 'metaslider_global_settings' );
            if (isset($global_settings['adminBar']) && false === $global_settings['adminBar']) {
                return;
            }

            $target = '_blank';
            if (is_admin()) {
                $target = '_self';
            }

            $logo = '<div id="metaslider-main-menu-icon" class="ab-item svg" style="background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyBmaWxsPSIjZmZmIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjU1LjggMjU1LjgiIHN0eWxlPSJmaWxsOiNmZmYiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwYXRoIGQ9Ik0xMjcuOSwwQzU3LjMsMCwwLDU3LjMsMCwxMjcuOWMwLDcwLjYsNTcuMywxMjcuOSwxMjcuOSwxMjcuOWM3MC42LDAsMTI3LjktNTcuMywxMjcuOS0xMjcuOUMyNTUuOCw1Ny4zLDE5OC41LDAsMTI3LjksMHogTTE2LjQsMTc3LjFsOTIuNS0xMTcuNUwxMjQuMiw3OWwtNzcuMyw5OC4xSDE2LjR6IE0xNzAuNSwxNzcuMWwtMzguOS00OS40bDE1LjUtMTkuNmw1NC40LDY5SDE3MC41eiBNMjA4LjUsMTc3LjFMMTQ2LjksOTkgbC02MS42LDc4LjJoLTMxbDkyLjUtMTE3LjVsOTIuNSwxMTcuNUgyMDguNXoiLz48L2c+PC9zdmc+Cg==);"></div>';

            $admin_bar->add_menu( array(
                'id'    => 'ms-main-menu',
                'title' => $logo .' MetaSlider',
                'href'  => '#',
                'meta'  => array(
                    'title' => __('MetaSlider'),            
                ),
            ));
            $admin_bar->add_menu( array(
                'id'    => 'all-slideshows-list',
                'parent' => 'ms-main-menu',
                'title' => __( 'All Slideshows', 'ml-slider' ),
                'href'  => admin_url('admin.php?page=metaslider'),
                'meta'  => array(
                    'title' => __( 'All Slideshows', 'ml-slider' ),
                    'target' => $target,
                    'class' => 'ms_admin_menu_item'
                ),
            ));
            $admin_bar->add_menu( array(
                'id'    => 'create-slideshow-link',
                'parent' => 'ms-main-menu',
                'title' => __( 'Create Slideshow', 'ml-slider' ),
                'href'  => esc_url(wp_nonce_url(admin_url("admin-post.php?action=metaslider_create_slider"), "metaslider_create_slider")),
                'meta'  => array(
                    'title' => __( 'Create Slideshow', 'ml-slider' ),
                    'target' => $target,
                    'class' => 'ms_admin_menu_item'
                ),
            ));
        }

        /**
         * Shortcode used to display slideshow
         *
         * @param array $atts attributes for short code
         * @return string HTML output of the shortcode
         */
        public function register_shortcode($atts)
        {
            $atts = shortcode_atts(
                [
                    'id' => false,
                    'title' => false,
                    'restrict_to' => false,
                    'theme' => null
                ],
                $atts,
                'metaslider'
            );

            // Sanitize id attribute
            foreach ( $atts as $key => $value ) {
                if ( $key == 'id' ) {
                    // Make sure id is a number
                    $atts[$key] = (int) $value;
                }
            }

            // If no id and no title, exit here
            if (! $atts['id'] && ! $atts['title']) {
                return false;
            }

            // If there is a title, get the id from the title
            $id = $atts['id'];
            if ($atts['title']) {
                global $wpdb;

                // Run a custom query because get_page_by_title() includes "trash" posts
                // Also, be sure just to get 1 post, in case they have multiple
                $id = $wpdb->get_var(
                    $wpdb->prepare(
                        "
                            SELECT ID
                            FROM $wpdb->posts
                            WHERE post_title = %s
                            AND post_type = 'ml-slider'
                            AND post_status = 'publish'
                            LIMIT 1
                        ",
                        $atts['title']
                    )
                );

                // If no posts were returned, $id will be NULL
                if (is_null($id) || ! (bool)$atts['title']) {
                    return false;
                }
            }

            // handle [metaslider id=123 restrict_to=home]
            if ('home' === $atts['restrict_to'] && ! is_front_page()) {
                return false;
            }
            if ($atts['restrict_to'] && 'home' !== $atts['restrict_to'] && ! is_page($atts['restrict_to'])) {
                return false;
            }

            // Attempt to get the ml-slider post object
            $slider = get_post($id);
            // check the slideshow is published and the ID is correct
            if (! $slider || 'publish' !== $slider->post_status || 'ml-slider' !== $slider->post_type) {
                return "<!-- MetaSlider {$atts['id']} not found -->";
            }

            // Set up the slideshow and load the slideshow theme
            $this->set_slider($id, $atts);
            MetaSlider_Themes::get_instance()->load_theme($id, $atts['theme']);
            $this->slider->enqueue_scripts();
            return $this->slider->render_public_slides();
        }

        /**
         * Initialise translations
         */
        public function load_plugin_textdomain()
        {
            // First, unload textdomain - Based on https://core.trac.wordpress.org/ticket/34213#comment:26
            unload_textdomain('ml-slider');

            // Call the core translations from plugins languages/ folder
            if (file_exists(METASLIDER_PATH . 'languages/' . 'ml-slider' . '-' . get_locale() . '.mo')) {
                load_textdomain(
                    'ml-slider',
                    METASLIDER_PATH . 'languages/' . 'ml-slider' . '-' . get_locale() . '.mo'
                );
            }

            if (function_exists('wp_set_script_translations')) {
                wp_set_script_translations(
                    'metaslider-admin-script',
                    'ml-slider',
                    METASLIDER_PATH . 'languages'
                );
            }
        }

        /**
         * Check our WordPress installation is compatible with MetaSlider
         *
         * @param int $slideshow_id The current slideshow ID
         */
        public function do_system_check($slideshow_id)
        {
            $systemCheck = new MetaSliderSystemCheck($slideshow_id);
            $systemCheck->check();
        }

        /**
         * Update the tab options in the media manager
         *
         * @param array $strings Array of settings for custom media tabs
         * @return array
         */
        public function custom_media_uploader_tabs($strings)
        {
            // update strings
            if ((isset($_GET['page']) && $_GET['page'] == 'metaslider')) {
                $strings['insertMediaTitle'] = __("Image", "ml-slider");
                $strings['insertIntoPost'] = __("Add to slideshow", "ml-slider");

                // remove options
                $strings_to_remove = array(
                    'createVideoPlaylistTitle',
                    'createGalleryTitle',
                    'insertFromUrlTitle',
                    'createPlaylistTitle'
                );

                foreach ($strings_to_remove as $string) {
                    if (isset($strings[$string])) {
                        unset($strings[$string]);
                    }
                }
            }

            return $strings;
        }


        /**
         * Add extra tabs to the default wordpress Media Manager iframe
         *
         * @param array $tabs existing media manager tabs]
         * @return array
         */
        public function custom_media_upload_tab_name($tabs)
        {
            $metaslider_tabs = array('post_feed', 'layer', 'youtube', 'vimeo', 'external_url', 'local_video', 'external_video');

            // restrict our tab changes to the MetaSlider plugin page
            if ((isset($_GET['page']) && $_GET['page'] == 'metaslider') || (isset($_GET['tab']) && in_array(
                        $_GET['tab'],
                        $metaslider_tabs
                    ))) {
                $newtabs = array();

                if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                    $newtabs = array(
                        'post_feed' => __("Post Feed", "ml-slider"),
                        'vimeo' => __("Vimeo", "ml-slider"),
                        'youtube' => __("YouTube", "ml-slider"),
                        'layer' => __("Layer Slide", "ml-slider"),
                        'external_url' => __("External URL", "ml-slider"),
                        'local_video' => __("Local Video", "ml-slider"),
                        'external_video' => __("External Video", "ml-slider"),
                    );
                }

                if (isset($tabs['nextgen'])) {
                    unset($tabs['nextgen']);
                }


                if (is_array($tabs)) {
                    return array_merge($tabs, $newtabs);
                } else {
                    return $newtabs;
                }
            }

            return $tabs;
        }

        /**
         * Set the current slider
         *
         * @param int $id ID for slider
         * @param array $shortcode_settings Settings for slider
         */
        public function set_slider($id, $shortcode_settings = array())
        {
            $type = 'flex';

            if (isset($shortcode_settings['type'])) {
                $type = $shortcode_settings['type'];
            } elseif ($settings = get_post_meta($id, 'ml-slider_settings', true)) {
                if (is_array($settings) && isset($settings['type'])) {
                    $type = $settings['type'];
                }
            }

            if (! in_array($type, array('flex', 'coin', 'nivo', 'responsive'))) {
                $type = 'flex';
            }

            $this->slider = $this->load_slider($type, $id, $shortcode_settings);
        }


        /**
         * Create a new slider based on the sliders type setting
         *
         * @param string $type Type of slide
         * @param int $id ID of slide
         * @param string $shortcode_settings Shortcode settings
         * @return array
         */
        private function load_slider($type, $id, $shortcode_settings)
        {
            switch ($type) {
                case ('coin'):
                    return new MetaCoinSlider($id, $shortcode_settings);
                case ('flex'):
                    return new MetaFlexSlider($id, $shortcode_settings);
                case ('nivo'):
                    return new MetaNivoSlider($id, $shortcode_settings);
                case ('responsive'):
                    return new MetaResponsiveSlider($id, $shortcode_settings);
                default:
                    return new MetaFlexSlider($id, $shortcode_settings);
            }
        }

        /**
         * Update the slider
         *
         * @return string a JSON string with success or failure (and errors)
         * @deprecated 3.13.0 use the API
         *
         */
        public function update_slider()
        {
            return $this->api->save_slideshow(stripslashes_deep($_REQUEST));
        }

        /**
         * Delete a slide via ajax.
         *
         * @return string Returns the status of the request
         */
        public function ajax_undelete_slide()
        {
            if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(
                    sanitize_key($_REQUEST['_wpnonce']),
                    'metaslider_undelete_slide'
                )) {
                wp_send_json_error(array(
                    'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
                ), 401);
            }

            $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (! current_user_can($capability)) {
                wp_send_json_error(
                    [
                        'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                    ],
                    403
                );
            }

            if (! isset($_POST['slide_id']) || ! isset($_POST['slider_id'])) {
                wp_send_json_error(
                    [
                        'message' => __('Bad request', 'ml-slider'),
                    ],
                    400
                );
            }

            $result = $this->undelete_slide(absint($_POST['slide_id']), absint($_POST['slider_id']));

            if (is_wp_error($result)) {
                wp_send_json_error(array(
                    'message' => $result->get_error_message()
                ), 409);
            }

            wp_send_json_success(array(
                'message' => __('The slide was successfully restored', 'ml-slider'),
            ), 200);
        }

        /**
         * Undeletes a slide.
         *
         * @param int $slide_id The ID of the slide
         * @param int $slideshow_id The ID of the slideshow
         * @return mixed
         */
        public function undelete_slide($slide_id, $slideshow_id)
        {
            if ('ml-slide' === get_post_type($slide_id)) {
                // Touch the slideshow post type to update the modified date
                wp_update_post(array('ID' => $slideshow_id));

                return wp_update_post(array(
                    'ID' => $slide_id,
                    'post_status' => 'publish'
                ),
                    new WP_Error(
                        'update_failed',
                        __('The attempt to restore the slide failed.', 'ml-slider'),
                        array('status' => 409)
                    ));
            }

            /*
            * Legacy: This removes the relationship between the slider and slide
            * This restores the relationship between a slide and slider.
            * If using a newer version, this relationship is never lost on delete.
            * NB: this covers when a 'ml-slide' was an attachment with meta
            */

            // Get the slider's term and apply it to the slide.
            $term = get_term_by('name', $slideshow_id, 'ml-slider');
            return wp_set_object_terms($slide_id, $term->term_id, 'ml-slider');
        }

        /**
         * Delete a slide via ajax.
         */
        public function ajax_delete_slide()
        {
            if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(
                    sanitize_key($_REQUEST['_wpnonce']),
                    'metaslider_delete_slide'
                )) {
                wp_send_json_error(array(
                    'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
                ), 401);
            }

            $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (! current_user_can($capability)) {
                wp_send_json_error(
                    [
                        'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                    ],
                    403
                );
            }

            if (! isset($_POST['slide_id']) || ! isset($_POST['slider_id'])) {
                wp_send_json_error(
                    [
                        'message' => __('Bad request', 'ml-slider'),
                    ],
                    400
                );
            }

            $result = $this->delete_slide(absint($_POST['slide_id']), absint($_POST['slider_id']));

            if (is_wp_error($result)) {
                wp_send_json_error(array(
                    'message' => $result->get_error_message()
                ), 409);
            }

            wp_send_json_success(array(
                'message' => __('The slide was successfully trashed', 'ml-slider'),
            ), 200);
        }

        /**
         * Delete a slide by either trashing it or for
         * legacy reasons removing the taxonomy relationship.
         *
         * @param int $slide_id The ID of the slide
         * @param int $slideshow_id The ID of the slideshow
         * @return mixed Will return the terms or WP_Error
         */
        public function delete_slide($slide_id, $slideshow_id)
        {
            if ('ml-slide' === get_post_type($slide_id)) {
                // Touch the slideshow post type to update the modified date
                wp_update_post(array('ID' => $slideshow_id));

                return wp_update_post(array(
                    'ID' => $slide_id,
                    'post_status' => 'trash'
                ), new WP_Error('update_failed', 'The attempt to delete the slide failed.', array('status' => 409)));
            }

            /*
            * Legacy: This removes the relationship between the slider and slide
            * A slider with ID 216 might have a term_id of 7
            * A slide with ID 217 could have a term_taxonomy_id of 7
            * Multiple slides would have this term_taxonomy_id of 7
            * NB: this covers when a 'ml-slide' was an attachment with meta
            */

            // This returns the term_taxonomy_id (7 from example)
            $current_terms = wp_get_object_terms($slide_id, 'ml-slider', array('fields' => 'ids'));

            // This returns the term object, named after the slider ID
            // The $term->term_id would be 7 in the example above
            // It also includes the count of slides attached to the slider
            $term = get_term_by('name', $slideshow_id, 'ml-slider');

            // I'm not sure why this is here. It seems this is only useful if
            // a slide was attached to multiple sliders. A slide should only
            // have one $current_terms (7 above)
            $new_terms = array();
            foreach ($current_terms as $current_term) {
                if ($current_term != $term->term_id) {
                    $new_terms[] = absint($current_term);
                }
            }

            // This only works becasue $new_terms is an empty array,
            // which deletes the relationship. I'm leaving the loop above
            // in case it's here for some legacy reason I'm unaware of.
            return wp_set_object_terms($slide_id, $new_terms, 'ml-slider');
        }


        /**
         * Delete a slider (send it to trash)
         *
         * @return string - the json response from the API
         * @deprecated 3.11.0 use the API
         *
         */
        public function delete_slider()
        {
            return $this->api->delete_slideshow($_REQUEST);
        }


        /**
         * Permanently delete a slide via ajax.
         */
        public function ajax_permanent_delete_slide()
        {
            if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(
                    sanitize_key($_REQUEST['_wpnonce']),
                    'metaslider_permanent_delete_slide'
                )) {
                wp_send_json_error(array(
                    'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
                ), 401);
            }

            $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (! current_user_can($capability)) {
                wp_send_json_error(
                    [
                        'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                    ],
                    403
                );
            }

            if (! isset($_POST['slide_id'])) {
                wp_send_json_error(
                    [
                        'message' => __('Bad request', 'ml-slider'),
                    ],
                    400
                );
            }

            $result = $this->permanent_delete_slide(absint($_POST['slide_id']));

            if (is_wp_error($result)) {
                wp_send_json_error(array(
                    'message' => $result->get_error_message()
                ), 409);
            }

            wp_send_json_success(array(
                'message' => __('The slide was permanently deleted', 'ml-slider'),
            ), 200);
        }

        /**
         * Delete a slide by either trashing it or for
         * legacy reasons removing the taxonomy relationship.
         *
         * @param int $slide_id The ID of the slide
         * @param int $slideshow_id The ID of the slideshow
         * @return mixed Will return the terms or WP_Error
         */
        public function permanent_delete_slide($slide_id)
        {
            if ('ml-slide' === get_post_type($slide_id)) {
                return wp_delete_post($slide_id, true);
            }
        }

        /**
         * Switch view
         *
         * @return null
         */
        public function switch_view()
        {
            global $user_ID;

            if (! isset($_GET['view'])) {
                return;
            }

            $view = sanitize_key($_GET['view']);

            $allowed_views = array('tabs', 'dropdown');

            if (! in_array($view, $allowed_views)) {
                return;
            }

            delete_user_meta($user_ID, "metaslider_view");

            if ($view == 'dropdown') {
                add_user_meta($user_ID, "metaslider_view", "dropdown");
            }

            wp_redirect(admin_url("admin.php?page=metaslider"));
            exit;
        }

        /**
         * Create a new slider
         */
        public function create_slider()
        {
            check_admin_referer('metaslider_create_slider');
            $capability = apply_filters('metaslider_capability', self::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (! current_user_can($capability)) {
                return;
            }

            $id = MetaSlider_Slideshows::create();

            if ( isset( $_GET['metaslider_add_sample_slides'] ) ) {
                $slideInstance  = new MetaSlider_Slideshows();
                $sampleType     = sanitize_key( $_GET['metaslider_add_sample_slides'] );

                // Get slugs from Free slides to import sample content
                $quickstart_free_slugs = array(
                    'carousel',
                    'withcaption'
                );

                // Get slugs from Pro slides to import sample content
                $quickstart_pro_slugs = $this->quickstart_slugs();

                if ( in_array( $sampleType, $quickstart_pro_slugs ) ) {
                    // Pro quickstart demos

                    if ( ! metaslider_pro_is_active() || count( $quickstart_pro_slugs ) === 0 ) {
                        // @TODO - Maybe display an error?
                        wp_redirect( esc_url_raw( admin_url( "admin.php?page=metaslider-start&error=pro-version" ) ) );
                        exit;
                    }

                    // Get slideshow settings
                    if ( ! class_exists( 'MetaSliderPro_Quickstart' ) ) {
                        // @TODO - Maybe display an error?
                        wp_redirect( esc_url_raw( admin_url( "admin.php?page=metaslider-start&error=quickstart-class" ) ) );
                        exit;
                    }

                    $msQuickstartPro = new MetaSliderPro_Quickstart();

                    // Get settings
                    $settings = $msQuickstartPro->set_slideshow_settings( $sampleType );

                    // Save settings
                    $sampleId = $slideInstance->save( $id, $settings );

                    // The cases match with MetaSliderPro->quickstart_options() each array 'slug' values
                    switch ( $sampleType ) {

                        case 'youtube':
                            $msQuickstartPro->set_slideshow_theme( $id, 'simply-dark' );
                            break;

                        case 'youtube-shorts':
                            $msQuickstartPro->set_slideshow_theme( $id, 'outline' );
                            break;

                        case 'vimeo':
                            $msQuickstartPro->set_slideshow_theme( $id, 'outline' );
                            break;

                        case 'html_overlay':
                            $msQuickstartPro->set_slideshow_theme( $id, 'radix' );
                            break;

                        case 'post_feed':
                            $msQuickstartPro->set_slideshow_theme( $id, 'highway' );
                            break;

                        case 'external':
                            $msQuickstartPro->set_slideshow_theme( $id, 'bubble' );
                            break;

                        case 'external_video':
                            $msQuickstartPro->set_slideshow_theme( $id, 'blend' );
                            break;
                    }

                } elseif ( in_array( $sampleType, $quickstart_free_slugs ) ) {
                    // Free quickstart demos

                    if ($sampleType == 'carousel') {
                        $settings = array(
                            'type' => 'flex',
                            'printCss' => 'on',
                            'printJs' => 'on',
                            'width' => 400,
                            'height' => 400,
                            'center' => 'on',
                            'carouselMode' => 'on',
                            'fullWidth' => 'on',
                            'noConflict' => 'on',
                            'effect' => 'slide'
                        );
                        $sampleId = $slideInstance->save($id, $settings);
                    } elseif ($sampleType == 'withcaption') {
                        $settings = array(
                            'type' => 'flex',
                            'printCss' => 'on',
                            'printJs' => 'on',
                            'width' => 400,
                            'height' => 400,
                            'center' => 'on',
                            'carouselMode' => 'on',
                            'fullWidth' => 'on',
                            'noConflict' => 'on',
                            'effect' => 'slide'
                        );
                        $sampleId = $slideInstance->save($id, $settings);
    
                        $themeInstance = new MetaSlider_Themes();
                        $outlineTheme = $themeInstance->get_theme_object($id,'outline');
                        $setTheme = $themeInstance->set($id, $outlineTheme);
                    } else {
                        $sampleId = $id;
                        $sampleType = "";
                    }
                    
                } else {
                    // @TODO - Do we really need an else?
                    $sampleId = $id;
                    $sampleType = "";
                }

                

                wp_redirect(esc_url_raw(admin_url("admin.php?page=metaslider&id={$sampleId}&metaslider_add_sample_slides={$sampleType}")));
                exit;
                
            } else {
                wp_redirect(esc_url_raw(admin_url("admin.php?page=metaslider&id={$id}")));
                exit;
            }          
        }

        /**
         * Find a single slider ID. For example, last edited, or first published.
         *
         * @param string $orderby field to order.
         * @param string $order direction (ASC or DESC).
         * @return int slider ID.
         */
        private function find_slider($orderby, $order)
        {
            $args = array(
                'force_no_custom_order' => true,
                'post_type' => 'ml-slider',
                'num_posts' => 1,
                'post_status' => 'publish',
                'suppress_filters' => 1, // wpml, ignore language filter
                'orderby' => $orderby,
                'order' => $order
            );

            $the_query = new WP_Query($args);

            while ($the_query->have_posts()) {
                $the_query->the_post();
                return $the_query->post->ID;
            }

            wp_reset_query();

            return false;
        }


        /**
         * Get sliders. Returns a nicely formatted array of currently
         * published sliders.
         *
         * @param string $sort_key Specified sort key
         * @return array all published sliders
         */
        public function all_meta_sliders($sort_key = 'date')
        {
            $sliders = array();

            // list the tabs
            $args = array(
                'post_type' => 'ml-slider',
                'post_status' => 'publish',
                'orderby' => $sort_key,
                'suppress_filters' => 1, // wpml, ignore language filter
                'order' => 'ASC',
                'posts_per_page' => -1
            );

            $args = apply_filters('metaslider_all_meta_sliders_args', $args);

            // WP_Query causes issues with other plugins using admin_footer to insert scripts
            // use get_posts instead
            $all_sliders = get_posts($args);

            foreach ($all_sliders as $slideshow) {
                $active = $this->slider && ($this->slider->id == $slideshow->ID) ? true : false;

                $sliders[] = array(
                    'active' => $active,
                    'title' => $slideshow->post_title,
                    'id' => $slideshow->ID
                );
            }

            return $sliders;
        }

        /**
         * Compare array values
         *
         * @param array $elem1 The first element to comapre
         * @param array $elem2 The second element to comapr
         * @return int
         */
        private function compare_elems($elem1, $elem2)
        {
            if ($elem1['priority'] == $elem2['priority']) {
                return 0;
            }
            return $elem1['priority'] > $elem2['priority'] ? 1 : -1;
        }


        /**
         * Building setting rows
         *
         * @param array $settings array of fields to render
         * @return string
         */
        public function build_settings_rows($settings)
        {
            // order the fields by priority
            uasort($settings, array($this, "compare_elems"));
            $output = "";

            // loop through the array and build the settings HTML
            foreach ($settings as $id => $row) {
                $helptext       = isset($row['helptext']) ? htmlentities2($row['helptext']) : '';
                $dependencies   = '';
                
                if ( isset( $row['dependencies'] ) ) {
                    $json = json_encode( $row['dependencies'] );
                    $dependencies = htmlspecialchars( $json, ENT_QUOTES, 'UTF-8' );
                    $dependencies = ' data-dependencies="' . $dependencies . '"';
                }

                $after = '';
                if (isset($row['after'])) {
                    $after = '<span class="">' . $row['after'] . '</span>';
                }

                switch ($row['type']) {
                    // checkbox input type
                    case 'checkbox':
                        $output .= '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html(
                                $row["label"]
                            ) . '</td><td>';
                        $output .= '<div class="ms-switch-button">
                            <label>
                                <input type="checkbox" id="" name="settings[' . esc_attr($id) . ']" ' . esc_attr(
                                    $row["checked"]
                                ) . ' class="' . esc_attr($row["class"]) . '"' . 
                                $dependencies . '/>
                                <span></span>
                            </label>
                        </div>';
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;

                    // navigation row
                    case 'radio':
                        $navigation_row = '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html(
                                $row["label"]
                            ) . '</td><td><ul>';
                        foreach ($row['options'] as $option_name => $option_value) {
                            $checked = checked($option_name, $row['value'], false);
                            $class = isset($option_value['class']) ? $option_value['class'] : "";
                            $navigation_row .= '<li><label><input type="radio" name="settings[' . esc_attr(
                                    $id
                                ) . ']" value="' . esc_attr(
                                    $option_name
                                ) . '" ' . $checked . ' class="radio ' . esc_attr($class) . '"/>' . esc_html(
                                    $option_value["label"]
                                ) . '</label></li>';
                        }
                        $navigation_row .= '</ul>';
                        $navigation_row .= $after;
                        $navigation_row .= '</td></tr>';
                        $output .= apply_filters('metaslider_navigation_options', $navigation_row, $this->slider);
                        break;

                    // header row
                    case 'highlight':

                        if ( isset( $row["topspacing"] ) && $row["topspacing"] ) {
                            $output .= '<tr class="empty-row-spacing ' . esc_attr($id) . '">
                                <td colspan="2"></td>
                            </tr>';
                        }

                        $output .= '<tr class="' . esc_attr(
                            $row["type"]
                        ) . ' ' . esc_attr($id) . '"><td colspan="2">' . esc_html(
                                $row["value"]
                            ) . $after . '</td></tr>';
                        $output .= '<tr class="empty-row-spacing ' . esc_attr($id) . '">
                            <td colspan="2"></td>
                        </tr>';
                        break;

                    // slideshow select row
                    case 'slider-lib':
                        $output .= '<tr class="' . esc_attr($row['type']) . '"><td colspan="2" class="slider-lib-row">';
                        foreach ($row['options'] as $option_name => $option_value) {
                            $checked = checked($option_name, $row['value'], false);
                            $output .= '<input class="select-slider" id="' . esc_attr(
                                    $option_name
                                ) . '" rel="' . esc_attr(
                                    $option_name
                                ) . '" type="radio" name="settings[type]" value="' . esc_attr(
                                    $option_name
                                ) . '" ' . $checked . '  />'
                                . '<label tabindex="0" for="' . esc_attr($option_name) . '">' . esc_html(
                                    $option_value['label']
                                ) . '</label>';
                        }
                        $output .= $after;
                        $output .= '</td></tr>';
                        $output .= '</table><table class="ms-settings-table">';
                        break;

                    // number input type
                    case 'number':
                        $output .= '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html(
                                $row["label"]
                            ) . '</td><td class="flex items-center justify-start"><input class="option ' . esc_attr(
                                $row["class"]
                            ) . ' ' . esc_attr($id) . ' w-20" type="number" min="' . esc_attr(
                                $row["min"]
                            ) . '" max="' . esc_attr($row["max"]) . '" step="' . esc_attr(
                                $row["step"]
                            ) . '" name="settings[' . esc_attr($id) . ']" value="' . esc_attr(
                                $row["value"]
                            ) . '" /><span class="text-base ml-1 rtl:ml-0 rtl:mr-1">' . '</span>';
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;

                    // select drop down
                    case 'select':
                    case 'navigation':
                        $output .= '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html(
                                $row["label"]
                            ) . '</td><td><select class="option ' . esc_attr($row["class"]) . ' ' . esc_attr(
                                $id
                            ) . ' width w-40" name="settings[' . esc_attr($id) . ']"' . 
                                $dependencies . '>';
                        foreach ($row['options'] as $option_name => $option_value) {
                            $selected = selected($option_name, $row['value'], false);
                            $disabled = isset( $option_value['addon_required'] ) && $option_value['addon_required'] 
                                        ? ' disabled="disabled"' : '';
                            $output .= '<option class="' . (
                                    isset( $option_value['class'] ) ? esc_attr( $option_value['class'] ) : '' 
                                ) . '" value="' . esc_attr(
                                    $option_name
                                ) . '" ' . $selected . $disabled . '>' . esc_html($option_value['label']) . '</option>';
                        }
                        $output .= '</select>';
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;

                    // theme drop down
                    case 'theme':
                        $output .= '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html(
                                $row["label"]
                            ) . '</td><td><select class="option ' . esc_attr($row["class"]) . ' ' . esc_attr(
                                $id
                            ) . '" name="settings[' . esc_attr($id) . ']">';
                        $themes = "";
                        foreach ($row['options'] as $option_name => $option_value) {
                            $selected = selected($option_name, $row['value'], false);
                            $themes .= '<option class="' . esc_attr($option_value["class"]) . '" value="' . esc_attr(
                                    $option_name
                                ) . '" ' . $selected . '>' . esc_html($option_value["label"]) . '</option>';
                        }
                        $output .= apply_filters(
                            'metaslider_get_available_themes',
                            $themes,
                            $this->slider->get_setting('theme')
                        );
                        $output .= '</select>';
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;

                    // text input type
                    case 'text':
                        $output .= '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html(
                                $row["label"]
                            ) . '</td><td class="flex items-center justify-start"><input class="option ' . esc_attr(
                                $row["class"]
                            ) . ' ' . esc_attr(
                                $id
                            ) . ' width w-40" type="text" autocomplete="off" data-lpignore="true" name="settings[' . esc_attr(
                                $id
                            ) . ']" value="' . esc_attr($row["value"]) . '" />';
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;

                    // text input type
                    case 'textarea':
                        $output .= '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr(
                                $helptext
                            ) . '" colspan="2">' . esc_html(
                                $row["label"]
                            ) . '</td></tr><tr><td colspan="2"><textarea class="option ' . esc_attr(
                                $row["class"]
                            ) . ' ' . esc_attr($id) . '" name="settings[' . esc_attr($id) . ']" />' . esc_html(
                                $row["value"]
                            ) . '</textarea>';
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;

                    // text input type
                    case 'title':
                        $output .= '<tr class="' . esc_attr(
                                $row["type"]
                            ) . '"><td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html(
                                $row["label"]
                            ) . '</td><td><input class="option ' . esc_attr($row["class"]) . ' ' . esc_attr(
                                $id
                            ) . '" type="text" autocomplete="off" data-lpignore="true" name="' . esc_attr(
                                $id
                            ) . '" value="' . esc_attr($row["value"]) . '" />';
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;

                    //mobile settings icons
                    case 'mobile':
                        $output .= '<tr class="' . esc_attr($row["type"]) .'">
                            <td class="tipsy-tooltip" title="' . esc_attr($helptext) . '">' . esc_html( $row["label"]) . '</td>
                            <td>';
                        foreach ($row['options'] as $option_name => $option_value) {
                            $output .= '<span class="mobile-checkbox-wrap">';
                            $output .= '<input type="checkbox" name="settings[' . esc_attr($id) . '_' . esc_attr($option_name) . ']" ' . esc_attr($option_value["checked"]) . ' class="mobile-checkbox tipsy-tooltip-top" title="' . esc_attr($option_value["helptext"]) . '" />';
                            $output .= '<span class="dashicons ' . esc_attr( 'dashicons-' . $option_name ) . '"></span>';
                            $output .= '</span>';
                        }
                        $output .= $after;
                        $output .= '</td></tr>';
                        break;
                }
            }
            return $output;
        }


        /**
         * Return an indexed array of all easing options
         *
         * @return array
         */
        private function get_easing_options()
        {
            $options = array(
                'linear',
                'swing',
                'jswing',
                'easeInQuad',
                'easeOutQuad',
                'easeInOutQuad',
                'easeInCubic',
                'easeOutCubic',
                'easeInOutCubic',
                'easeInQuart',
                'easeOutQuart',
                'easeInOutQuart',
                'easeInQuint',
                'easeOutQuint',
                'easeInOutQuint',
                'easeInSine',
                'easeOutSine',
                'easeInOutSine',
                'easeInExpo',
                'easeOutExpo',
                'easeInOutExpo',
                'easeInCirc',
                'easeOutCirc',
                'easeInOutCirc',
                'easeInElastic',
                'easeOutElastic',
                'easeInOutElastic',
                'easeInBack',
                'easeOutBack',
                'easeInOutBack',
                'easeInBounce',
                'easeOutBounce',
                'easeInOutBounce'
            );
            $output = array();

            foreach ($options as $option) {
                $output[$option] = array(
                    'label' => ucfirst(preg_replace('/(\w+)([A-Z])/U', '\\1 \\2', $option)),
                    'class' => ''
                );
            }

            return $output;
        }

        /**
         * Return the users saved view preference.
         */
        public function get_view()
        {
            global $user_ID;

            if (get_user_meta($user_ID, "metaslider_view", true)) {
                return get_user_meta($user_ID, "metaslider_view", true);
            }

            return 'tabs';
        }

        public function get_global_settings() {
            if (is_multisite() && $settings = get_site_option('metaslider_global_settings')) {
                return $settings;
            }
    
            if ($settings = get_option('metaslider_global_settings')) {
                return $settings;
            }
        }

        /**
         * Render the admin page (tabs, slides, settings)
         */
        public function render_admin_page()
        {
            // Default to the most recently modified slider
            $slider_id = $this->find_slider('modified', 'DESC');

            // If the id parameter exists, verify and use that.
            if (isset($_REQUEST['id']) && $id = (int)$_REQUEST['id']) {
                if (in_array(get_post_status($id), array('publish', 'inherit'))) {
                    $slider_id = $id;
                }
            }

            // "Set the slider"
            // TODO figure out what this does and if it can be better stated
            // Perhaps maybe "apply_settings()" or something.
            if ($slider_id) {
                $this->set_slider($slider_id);
            }

            $slider_id = $this->slider ? $this->slider->id : 0;

            $this->do_system_check($slider_id);

            if (metaslider_user_is_ready_for_notices()) {
                // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                echo $this->notices->do_notice(false, 'header', true);
            }

            // Get the current theme if set
            $theme = metaslider_themes::get_instance()->get_current_theme($slider_id);
            if (is_wp_error($theme)) {
                $theme = false;
            }
            if (is_array($theme)) {
                unset($theme['images']);
            }
            $theme_id = isset($theme['folder']) ? $theme['folder'] : false; ?>
            <div id="metaslider-ui" class="metaslider metaslider-ui block min-h-screen p-0 pb-24 bg-gray-lightest">
                <?php
                $slider_settings = get_post_meta($slider_id, 'ml-slider_settings', true);
                $tour_position = get_option('metaslider_tour_cancelled_on');

                if (! class_exists('MetaSlider_Analytics')) {
                    require_once(METASLIDER_PATH . 'admin/support/Analytics.php');
                }
                $analytics = new MetaSlider_Analytics(); ?>

                <metaslider
                        :id='<?php
                        echo esc_attr($slider_id); ?>'
                        v-bind:settings='<?php
                        echo esc_attr(json_encode($slider_settings)); ?>'
                        tour-status="<?php
                        echo $tour_position ? esc_attr($tour_position) : false ?>"
                        show-opt-in="<?php
                        echo esc_attr(
                            ! $analytics::siteIsOptin() && ! get_user_option(
                                'metaslider_analytics_onboarding_status'
                            ) ? 1 : ''
                        ); ?>"
                        inline-template>
                <span>
                <form @submit.prevent="" @keydown.enter.prevent="" autocomplete="off" id="ms-form-settings"
                      accept-charset="UTF-8" action="<?php
                echo esc_url(admin_url('admin-post.php')); ?>" method="post" :class="{ 'respect-ie11': isIE11 }">

                    <?php
                    include METASLIDER_PATH . "admin/views/pages/parts/toolbar.php"; ?>

                    <div class="container px-6">
                    <?php

                    // If there is no slideshow, show the start page and close out
                    if (! $this->slider) {
                        include METASLIDER_PATH . "admin/views/pages/start.php";
                        echo '</form><metaslider-utility-modal></metaslider-utility-modal></span></metaslider>';
                        return;
                    } ?>
                    <div v-if="current && current.hasOwnProperty('id')" id='poststuff'
                         class="metaslider-inner wp-clearfix">
                         <?php
                            if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'permanent') {
                                echo '<div class="updated below-h2" id="message"><p>' . esc_html__( 'Slide permanently deleted.', 'ml-slider'). '</p></div>';
                            }
                            if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'restore') {
                                echo '<div class="updated below-h2" id="message"><p>' . esc_html__( 'Slide restored.', 'ml-slider'). '</p></div>';
                            }
                         ?>
                        <div class="my-6">
                            <?php
                            if (metaslider_viewing_trashed_slides($this->slider->id)) {
                                // If they are on the trash page, show them
                                ?>
                                <h1 class="-ml-4 h-16 pl-4 pr-12 text-2xl font-light rounded-none shadow-none bg-transparent border-0 border-l-4 border-transparent hover:border-gray-light hover:bg-white focus:bg-white focus:shadow-sm focus:border-gray-light rtl:border-l-0 rtl:border-r-0 rtl:ml-0 rtl:-mr-4 rtl:pl-12 rtl:pr-4"
                                    style="line-height: 2.7em;">
                                    <?php 
                                    printf(
                                        '%s (%s)',
                                        esc_html__( get_the_title( $this->slider->id ) ),
                                        esc_html__( 'Trashed Slides', 'ml-slider' )
                                    ); 
                                    ?>
                                </h1>
                                <?php
                            } else { ?>
                                <metaslider-title></metaslider-title>
                            <?php
                            } ?>
                        </div>

                        <div id='post-body' class='ms-edit-slideshow -mx-4 metabox-holder<?php
                        echo $this->slider && metaslider_viewing_trashed_slides( $this->slider->id )
                            ? ' ms-edit-slideshow--trashed-slides' : '';
                        ?>'>

                            <metaslider-slide-viewer inline-template>

                                <div class="left mx-4 mb-4">

                                    <?php
                                    do_action("metaslider_admin_table_before", $this->slider->id); ?>

                                    <?php if ( isset( $_GET['metaslider_add_sample_slides'] ) ) : ?>
                                        <p id="loading-add-sample-slides-notice" style="display: none;">
                                            <span style="background-image: url(<?php echo esc_url(admin_url( '/images/loading.gif' )); ?>);">
                                                <?php _e( 'Loading... Please wait!', 'ml-slider' ) ?>
                                            </span>
                                        </p>
                                    <?php endif; ?>

                                    <table id="metaslider-slides-list"
                                           class="widefat sortable metaslider-slides-container table-fixed">
                                        <tbody>
                                            <?php
                                            $this->slider->render_admin_slides(); ?>
                                        </tbody>
                                    </table>

                                    <?php
                                    do_action("metaslider_admin_table_after", $this->slider->id); ?>

                                </div>

                            </metaslider-slide-viewer>

                                <div class='right mx-4'>
                                <?php
                                if (metaslider_viewing_trashed_slides($this->slider->id)) {
                                    // Show a notice explaining the trash?>
                                    <div class="ms-postbox trashed-notice">
                                        <div class="notice-info">
                                            <p><?php
                                            printf(
                                                esc_html__(
                                                    'You are viewing slides that have been trashed, which will be automatically deleted in %s days.',
                                                    'ml-slider'
                                                ),
                                                esc_html(EMPTY_TRASH_DAYS)
                                            ); ?></p>
                                            <p class="mb-0">
                                                <a href="<?php echo esc_url(
                                                        admin_url( "admin.php?page=metaslider&id={$this->slider->id}" )
                                                    ) ?>" class="button button-secondary">
                                                    <?php esc_html_e( 'Return to Published Slides', 'ml-slider' ) ?>
                                                </a>
                                            </p>
                                            <?php
                                            // TODO this is a temp fix to avoid a compatability check in pro
                                            echo "<input type='checkbox' style='display:none;' checked class='select-slider' rel='flex'></inpu>"; ?>
                                        </div>
                                    </div>
                                    <?php
                                } else {
                                    $global_settings = $this->get_global_settings();
                                    $new_install = get_option('metaslider_new_user');
                            ?>
                                    <metaslider-settings-viewer inline-template>
                                        <div>
                                            <div id="metaslider_configuration">
                                                <?php
                                                if (
                                                    (isset($global_settings['legacy']) && true == $global_settings['legacy']) ||
                                                    (isset($new_install)  && 'new' == $new_install)
                                                ) {
                                                    if($this->slider->get_setting('type') == 'flex') {
                                                        include METASLIDER_PATH . "admin/views/pages/parts/slider-settings.php";
                                                    } else {
                                                        include METASLIDER_PATH . "admin/views/pages/parts/slider-settings-legacy.php";
                                                    }
                                                } else {
                                                    include METASLIDER_PATH . "admin/views/pages/parts/slider-settings-legacy.php";
                                                }
                                                ?>
                                            </div>
                                        </div>
                                    </metaslider-settings-viewer>
                                    <?php
                                    $url = wp_nonce_url(
                                        admin_url(
                                            "admin-post.php?action=metaslider_delete_slider&amp;slider_id={$this->slider->id}"
                                        ),
                                        "metaslider_delete_slider"
                                    ); ?>

                                    <div class="ms-delete-save">
                                        <a @click.prevent="deleteSlideshow()" class='ms-delete-slideshow' href='<?php
                                        echo esc_url($url) ?>'><?php
                                            esc_html_e('Move slideshow to trash', 'ml-slider'); ?></a>
                                    </div>
                                    </div>
                                <?php
                                } ?>
                        </div>
                    </div>
                </div>
            </form>
            <metaslider-preview
                    slideshow-id="<?php
                    echo esc_attr($this->slider->id); ?>"
                    theme-identifier="<?php
                    echo esc_attr($theme_id); ?>"
                    :showButton="false"></metaslider-preview>
            <metaslider-import-module></metaslider-import-module>
            <metaslider-utility-modal></metaslider-utility-modal>
            <?php
            do_action('metaslider_add_external_components'); ?>
            </span>
                </metaslider>
            </div>
            <?php
        }

        /**
         * Append the 'Add Slideshow' button to selected admin pages (classic editor)
         * Uses the media_buttons filter
         */
        public function insert_metaslider_button()
        {
            $capability = apply_filters('metaslider_capability', self::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (! current_user_can($capability)) {
                return;
            }

            global $pagenow;
            if (! in_array($pagenow, array('post.php', 'page.php', 'post-new.php', 'post-edit.php'))) {
                return;
            }

            printf(
                '
                <a href="#TB_inline?&width=783&inlineId=choose-meta-slider" class="thickbox button">
                    <span class="wp-media-buttons-icon"
                        style="background:url(%simages/metaslider_logo.png);background-repeat:no-repeat;background-position:left -2px;background-size: 20px;position: relative;margin-left:0;"></span>%s</a>',
                esc_url(METASLIDER_ADMIN_URL),
                esc_html__("Add slideshow", "ml-slider")
            );
        }

        /**
         * Append the 'Choose MetaSlider' thickbox content to the bottom of selected admin pages
         */
        public function admin_footer()
        {
            global $pagenow;

            // Only run in post/page creation and edit screens
            if (in_array($pagenow, array('post.php', 'page.php', 'post-new.php', 'post-edit.php'))) {
                $sliders = $this->all_meta_sliders('title'); ?>

                <script>
                    jQuery(document).ready(function () {
                        jQuery('#insertMetaSlider').on('click', function () {
                            var id = jQuery('#metaslider-select option:selected').val();
                            window.send_to_editor('[metaslider id=' + id + ']');
                            tb_remove();
                        })
                    });
                </script>

                <div id="choose-meta-slider" style="display: none;">
                    <div class="wrap">
                        <?php
                        if (count($sliders)) {
                            echo "<img src='" . esc_url(METASLIDER_ADMIN_URL .'images/metaslider_logo3.png' ) . "' style='width: 200px;display: block;margin: 0 auto;'>";
                            echo "<p style='color:#29375b; font-size: 16px;text-align: center;'>" . esc_html_x(
                                    "Select slideshow to insert into post",
                                    'Keep the plugin name "MetaSlider" when possible',
                                    "ml-slider"
                                ) . "</p>";
                            echo "<div style='margin:0 15%;width:70%;'><select id='metaslider-select' style='width:70%; height: 35px;'>";
                            echo "<option disabled=disabled>" . esc_html__(
                                    "Choose slideshow",
                                    "ml-slider"
                                ) . "</option>";
                            foreach ($sliders as $slider) {
                                echo '<option value="' . esc_attr($slider['id']) . '">' . esc_html(
                                        $slider['title']
                                    ) . '</option>';
                            }
                            echo "</select>";
                            echo '<button class="button button-primary button-large" id="insertMetaSlider" style="height: 35px;">' . esc_html__(
                                    "Insert slideshow",
                                    "ml-slider"
                                ) . '</button></div>';
                        } else {
                            esc_html_e("No slideshows found", "ml-slider");
                        } ?>
                    </div>
                </div>

                <?php
            }
        }


        /**
         * Return the MetaSlider pro upgrade iFrame
         */
        public function upgrade_to_pro_tab_layer()
        {
            if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                return wp_iframe(array($this, 'upgrade_to_pro_iframe_layer'));
            }
        }

        /**
         * Media Manager iframe HTML - vimeo
         */
        public function upgrade_to_pro_iframe_layer()
        {
            $link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
            $link .= '?utm_source=lite&amp;utm_medium=more-slide-types-layer&amp;utm_campaign=pro';
            $this->upgrade_to_pro_iframe(
                array(
                    '<div class="left"><img src="' . esc_url(METASLIDER_ADMIN_URL . 'images/upgrade/layers.png') . '" alt="" /></div>',
                    "<div><h2>" . esc_html__(
                        'Create slides by adding text, videos and more to your images',
                        'ml-slider'
                    ) . "</h2>",
                    "<p>" . esc_html__(
                        'With Layer slides, you can create beautiful, stylish layers of different elements.',
                        'ml-slider'
                    ) . "</p>",
                    "<p>" . esc_html__(
                        'You start with an image and then can add text, video, colors, animations, more images, and even shortcodes.',
                        'ml-slider'
                    ) . "</p>",
                    '<a class="probutton button button-primary button-hero" href="' . esc_url(
                        $link
                    ) . '" target="_blank">' . esc_html__(
                        'Find out more about MetaSlider Pro',
                        'ml-slider'
                    ) . "<span class='dashicons dashicons-external'></span></a>",
                    "</div>"
                )
            );
        }

        /**
         * Return the MetaSlider pro upgrade iFrame for Vimeo
         */
        public function upgrade_to_pro_tab_vimeo()
        {
            if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                return wp_iframe(array($this, 'upgrade_to_pro_iframe_vimeo'));
            }
        }

        /**
         * Media Manager iframe HTML - vimeo
         */
        public function upgrade_to_pro_iframe_vimeo()
        {
            $link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
            $link .= '?utm_source=lite&amp;utm_medium=more-slide-types-vimeo&amp;utm_campaign=pro';
            $this->upgrade_to_pro_iframe(
                array(
                    '<div class="left"><img src="' . esc_url(METASLIDER_ADMIN_URL . 'images/upgrade/vimeo.png') . '" alt="" /></div>',
                    "<div><h2>" . esc_html__(
                        'Create slideshows with your Vimeo videos',
                        'ml-slider'
                    ) . "</h2>",
                    "<p>" . esc_html__(
                        'With Vimeo slides, you can build beautiful slideshows with your Vimeo videos.',
                        'ml-slider'
                    ) . "</p>",
                    "<p>" . esc_html__(
                        'Vimeo slides will display your videos with auto play, mute, the ability to hide controls, and much more.',
                        'ml-slider'
                    ) . "</p>",
                    "<a class='probutton button button-primary button-hero' href='{$link}' target='_blank'>" . esc_html__(
                        'Find out more about MetaSlider Pro',
                        'ml-slider'
                    ) . "<span class='dashicons dashicons-external'></span></a>",
                    "</div>"
                )
            );
        }

        /**
         * Return the MetaSlider pro upgrade iFrame
         */
        public function upgrade_to_pro_tab_youtube()
        {
            if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                return wp_iframe(array($this, 'upgrade_to_pro_iframe_youtube'));
            }
        }

        /**
         * Media Manager iframe HTML - youtube
         */
        public function upgrade_to_pro_iframe_youtube()
        {
            $link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
            $link .= '?utm_source=lite&amp;utm_medium=more-slide-types-youtube&amp;utm_campaign=pro';
            $this->upgrade_to_pro_iframe(
                array(
                    '<div class="left"><img src="' . esc_url(METASLIDER_ADMIN_URL . 'images/upgrade/youtube.png') . '" alt="" /></div>',
                    "<div><h2>" . esc_html__(
                        'Create slideshows with your YouTube videos',
                        'ml-slider'
                    ) . "</h2>",
                    "<p>" . esc_html__(
                        'With YouTube slides, you can build beautiful slideshows with your YouTube videos.',
                        'ml-slider'
                    ) . "</p>",
                    "<p>" . esc_html__(
                        'YouTube slides will display your videos with auto play, mute, lazy load, the ability to hide controls, and much more.',
                        'ml-slider'
                    ) . "</p>",
                    "<a class='probutton button button-primary button-hero' href='{$link}' target='_blank'>" . esc_html__(
                        'Find out more about MetaSlider Pro',
                        'ml-slider'
                    ) . "<span class='dashicons dashicons-external'></span></a>",
                    "</div>"
                )
            );
        }

        /**
         * Return the MetaSlider pro upgrade iFrame
         */
        public function upgrade_to_pro_tab_post_feed()
        {
            if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                return wp_iframe(array($this, 'upgrade_to_pro_iframe_post_feed'));
            }
        }

        /**
         * Media Manager iframe HTML - post_feed
         */
        public function upgrade_to_pro_iframe_post_feed()
        {
            $link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
            $link .= '?utm_source=lite&amp;utm_medium=more-slide-types-feed&amp;utm_campaign=pro';
            $this->upgrade_to_pro_iframe(
                array(
                    '<div class="left"><img src="' . esc_url(METASLIDER_ADMIN_URL . 'images/upgrade/post-feed.png') . '" alt="" /></div>',
                    "<div><h2>" . esc_html__(
                        'Create slideshows with your posts',
                        'ml-slider'
                    ) . "</h2>",
                    "<p>" . esc_html__(
                        'With Post Feed slides, you can build slideshows with your latest posts, events, or WooCommerce products.',
                        'ml-slider'
                    ) . "</p>",
                    "<p>" . esc_html__(
                        'Post Feed slides will automatically display your posts with images, text, custom fields, and much more.',
                        'ml-slider'
                    ) . "</p>",
                    '<a class="probutton button button-primary button-hero" href="' . esc_url(
                        $link
                    ) . '" target="_blank">' . esc_html__(
                        "Find out more about MetaSlider Pro",
                        "ml-slider"
                    ) . '<span class="dashicons dashicons-external"></span></a>',
                    "</div>"
                )
            );
        }

        /**
         * Return the MetaSlider pro upgrade iFrame
         */
        public function upgrade_to_pro_tab_external_url()
        {
            if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                return wp_iframe(array($this, 'upgrade_to_pro_iframe_external_url'));
            }
        }

        /**
         * Media Manager iframe HTML - External URL
         */
        public function upgrade_to_pro_iframe_external_url()
        {
            $link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
            $link .= '?utm_source=lite&amp;utm_medium=more-slide-types-external&amp;utm_campaign=pro';
            $this->upgrade_to_pro_iframe(
                array(
                    '<div class="left"><img src="' . esc_url(METASLIDER_ADMIN_URL . 'images/upgrade/external-url.png') . '" alt="" /></div>',
                    "<div ><h2>" . esc_html__(
                        'Create slideshows with images stored outside of WordPress',
                        'ml-slider'
                    ) . "</h2>",
                    "<p>" . esc_html__(
                        'With External URL slides, you can load images directly from non-WordPress sources such as CDNs or image hosts.',
                        'ml-slider'
                    ) . "</p>",
                    "<p>" . esc_html__(
                        'External URL slides give you all the power of MetaSlider, using images stored anywhere you want.',
                        'ml-slider'
                    ) . "</p>",
                    '<a class="probutton button button-primary button-hero" href="' . esc_url(
                        $link
                    ) . '" target="_blank">' . esc_html__(
                        "Find out more about MetaSlider Pro",
                        "ml-slider"
                    ) . '<span class="dashicons dashicons-external"></span></a>',
                    "</div>"
                )
            );
        }

        /**
         * Return the MetaSlider pro upgrade iFrame
         */
        public function upgrade_to_pro_tab_local_video()
        {
            if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                return wp_iframe(array($this, 'upgrade_to_pro_iframe_local_video'));
            }
        }

        /**
         * Media Manager iframe HTML - Local video
         */
        public function upgrade_to_pro_iframe_local_video()
        {
            $link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
            $link .= '?utm_source=lite&amp;utm_medium=more-slide-types-video&amp;utm_campaign=pro';
            $this->upgrade_to_pro_iframe(
                array(
                    '<div class="left"><img src="' . esc_url(METASLIDER_ADMIN_URL . 'images/upgrade/local-video.png') . '" alt="" /></div>',
                    "<div ><h2>" . esc_html__(
                        'Create slideshows with videos in your media library',
                        'ml-slider'
                    ) . "</h2>",
                    "<p>" . esc_html__(
                        'With Local Video slides, you can build beautiful slideshows with videos in your WordPress media library.',
                        'ml-slider'
                    ) . "</p>",
                    "<p>" . esc_html__(
                        'Local Video slides will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.',
                        'ml-slider'
                    ) . "</p>",
                    '<a class="probutton button button-primary button-hero" href="' . esc_url(
                        $link
                    ) . '" target="_blank">' . esc_html__(
                        "Find out more about MetaSlider Pro",
                        "ml-slider"
                    ) . '<span class="dashicons dashicons-external"></span></a>',
                    "</div>"
                )
            );
        }

         /**
         * Return the MetaSlider pro upgrade iFrame
         */
        public function upgrade_to_pro_tab_external_video()
        {
            if (function_exists('is_plugin_active') && ! is_plugin_active('ml-slider-pro/ml-slider-pro.php')) {
                return wp_iframe(array($this, 'upgrade_to_pro_iframe_external_video'));
            }
        }

        /**
         * Media Manager iframe HTML - External video
         */
        public function upgrade_to_pro_iframe_external_video()
        {
            $link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
            $link .= '?utm_source=lite&amp;utm_medium=more-slide-types-external-video&amp;utm_campaign=pro';
            $this->upgrade_to_pro_iframe(
                array(
                    '<div class="left"><img src="' . esc_url(METASLIDER_ADMIN_URL . 'images/upgrade/external-video.png') . '" alt="" /></div>',
                    "<div ><h2>" . esc_html__(
                        'Create slideshows with videos stored outside of WordPress',
                        'ml-slider'
                    ) . "</h2>",
                    "<p>" . esc_html__(
                        'With External Video slides, you can add videos directly from non-WordPress sources.',
                        'ml-slider'
                    ) . "</p>",
                    "<p>" . esc_html__(
                        'External Video Slides will display your MP4, WebM, and MOV videos. Features include text captions, cover images, auto play, mute, lazy load, the ability to hide controls, and much more.',
                        'ml-slider'
                    ) . "</p>",
                    '<a class="probutton button button-primary button-hero" href="' . esc_url(
                        $link
                    ) . '" target="_blank">' . esc_html__(
                        "Find out more about MetaSlider Pro",
                        "ml-slider"
                    ) . '<span class="dashicons dashicons-external"></span></a>',
                    "</div>"
                )
            );
        }

        /**
         * Upgrade to pro Iframe - Render
         *
         * @param array $content The HTML to render
         */
        public function upgrade_to_pro_iframe($content)
        {
            echo "<div class='ms-panel-container-ad'>";
            // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            echo implode("", $content);
            echo "</div>";
        }

        /**
         * Adds extra links to the plugin activation page
         *
         * @param array $meta Extra meta links
         * @param string $file Specific file to compare against the base plugin
         * @param string $data Data for the meat links
         * @param string $status Staus of the meta links
         * @return array          Return the meta links array
         */
        public function get_extra_meta_links($meta, $file, $data, $status)
        {
            if (plugin_basename(__FILE__) == $file) {
                $plugin_page = admin_url('admin.php?page=metaslider');
                $nonce = wp_create_nonce('metaslider_request');
                if (metaslider_pro_is_installed()) {
                    $meta[] = "<a href='https://www.metaslider.com/support/' target='_blank'>" . esc_html__(
                            'Premium Support',
                            'ml-slider'
                        ) . "</a>";
                } else {
                    $upgrade_link = apply_filters('metaslider_hoplink', 'https://www.metaslider.com/upgrade/');
                    $meta[] = '<a href="' . esc_url($upgrade_link) . '" target="_blank">' . esc_html__(
                            'MetaSlider Pro',
                            'ml-slider'
                        ) . "</a>";
                    $meta[] = "<a href='https://wordpress.org/support/plugin/ml-slider/' target='_blank'>" . esc_html__(
                            'Support',
                            'ml-slider'
                        ) . "</a>";
                }
                $meta[] = "<a href='https://www.metaslider.com/documentation/' target='_blank'>" . esc_html__(
                        'Documentation',
                        'ml-slider'
                    ) . "</a>";
                $meta[] = "<a href='https://wordpress.org/support/plugin/ml-slider/reviews#new-post' target='_blank' title='" . esc_attr__(
                        'Leave a review',
                        'ml-slider'
                    ) . "'><i class='ml-stars'><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg><svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-star'><polygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/></svg></i></a>";
            }
            return $meta;
        }

        /**
         * Adds styles to admin head to allow for stars animation and coloring
         */
        public function add_star_styles()
        {
            if (metaslider_user_is_on_admin_page('plugins.php')) { ?>
                <style>
                    .ml-stars {
                        display: inline-block;
                        color: #ffb900;
                        position: relative;
                        top: 3px
                    }

                    .ml-stars svg {
                        fill: #ffb900
                    }

                    .ml-stars svg:hover {
                        fill: #ffb900
                    }

                    .ml-stars svg:hover ~ svg {
                        fill: none
                    }
                </style>
            <?php
            }
        }

        /**
         * Add a 'property=stylesheet' attribute to the MetaSlider CSS links for HTML5 validation
         *
         * @param string $tag Specifies tag
         * @param string $handle Checks for the handle to add property to
         * @return string
         * @since 3.3.4
         */
        public function add_property_attribute_to_stylesheet_links($tag, $handle)
        {
            if (strpos($handle, 'metaslider') !== false && strpos($tag, "property='") === false) {
                // we're only filtering tags with metaslider in the handle, and links which don't already have a property attribute
                $tag = str_replace("/>", "property='stylesheet' />", $tag);
            }

            return $tag;
        }


        public function quickstart_params(){ 
            if (isset($_REQUEST['page']) && 'metaslider-start' == $_REQUEST['page']) {
                $plupload_init = array(
                  'runtimes'            => 'html5,silverlight,flash,html4',
                  'browse_button'       => 'plupload-browse-button',
                  'container'           => 'plupload-upload-ui',
                  'drop_element'        => 'drag-drop-area',
                  'file_data_name'      => 'async-upload',            
                  'multiple_queues'     => true,
                  'max_file_size'       => wp_max_upload_size().'b',
                  'url'                 => admin_url('admin-ajax.php'),
                  'flash_swf_url'       => includes_url('js/plupload/plupload.flash.swf'),
                  'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
                  'filters'             => array(array('title' => __('Allowed Files'), 'extensions' => '*')),
                  'multipart'           => true,
                  'urlstream_upload'    => true,
                  'multipart_params'    => array(
                    '_wpnonce' =>  wp_create_nonce('metaslider_quickstart_upload'),
                    'action'      => 'quickstart_upload'
                  ),
                );
          ?>  
           <script type="text/javascript">
            jQuery(document).ready(function($){
                var uploader = new plupload.Uploader(<?php echo json_encode($plupload_init); ?>);
                uploader.bind('Init', function(up){
                  var uploaddiv = $('#plupload-upload-ui');
                  if(up.features.dragdrop){
                    uploaddiv.addClass('drag-drop');
                      $('#drag-drop-area')
                        .bind('dragover.wp-uploader', function(){ uploaddiv.addClass('drag-over'); })
                        .bind('dragleave.wp-uploader, drop.wp-uploader', function(){ uploaddiv.removeClass('drag-over'); });
                  }else{
                    uploaddiv.removeClass('drag-drop');
                    $('#drag-drop-area').unbind('.wp-uploader');
                  }
                });
                uploader.init();
                uploader.bind('FilesAdded', function(up, files){
                  var hundredmb = 100 * 1024 * 1024, max = parseInt(up.settings.max_file_size, 10);
                  plupload.each(files, function(file){
                    if (max > hundredmb && file.size > hundredmb && up.runtime != 'html5'){
                     $("#quickstart-status").html("Error");
                    }else{
                        $("#media-items").append('<div class="media-item child-of-0 open"><div class="media-item-wrapper"><div class="attachment-details"><div class="filename new"><span class="media-list-title"><strong>'+file.name+'</strong></span><span class="media-list-subtitle"></span></div></div><div class="attachment-tools"><span class="media-item-copy-container copy-to-clipboard-container edit-attachment"></span><b id="'+file.id+'"><div class="progress"><div class="percent">100%</div><div class="bar" style="width: 200px;"></div></div></b></div></div></div>');
                    }
                  })
                  up.refresh();
                  up.start();
                });
                uploader.bind('FileUploaded', function(up, file, response) {
                    $("#"+file.id).text("Upload Complete");
                    $("#"+file.id).attr("data-slide", response.response);
                });
                uploader.bind("UploadComplete", function (up, files, response) {
                    $("#media-items").append('<div class="updated below-h2" id="message"><p>Creating slideshow.</p></div>');
                    var file_details = [];
                    $.each(files, function(key, value) {
                        file_details.push($("#"+value.id).data("slide"));
                    });
                    var data = {
                        action: 'quickstart_slideshow',
                        images: file_details,
                        _wpnonce: metaslider.quickstart_slideshow_nonce
                    };
                    $.ajax({
                        url: metaslider.ajaxurl,
                        data: data,
                        type: 'POST',
                        success: function (response) {
                            window.location.href = '<?php echo esc_url_raw(admin_url("admin.php?page=metaslider&id=")); ?>' + response
                        }
                    })
                });
             });   
           </script>
           <?php
            }
        }

        public function ajax_quickstart_slideshow() {
            if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(
                sanitize_key($_REQUEST['_wpnonce']),
                'metaslider_quickstart_slideshow'
            )) {
                wp_send_json_error(array(
                    'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
                ), 401);
            }

            $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (! current_user_can($capability)) {
                wp_send_json_error(
                    [
                        'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                    ],
                    403
                );
            }

            if (!isset($_POST['images'])) {
                wp_send_json_error(
                    [
                        'message' => __('Bad request', 'ml-slider'),
                    ],
                    400
                );
            }

            $images = $_POST['images'];
            $slideshow_id = MetaSlider_Slideshows::create();
            $slide = new MetaImageSlide();
            foreach ($images as $image) {
                $data = array('id' => (int)$image, 'type' => 'image');
                $slide->add_slide($slideshow_id, $data);
            }

            wp_send_json($slideshow_id);
            wp_die();
        }

        public function ajax_quickstart_upload(){
            if (! isset($_REQUEST['_wpnonce']) || ! wp_verify_nonce(
                sanitize_key($_REQUEST['_wpnonce']),
                'metaslider_quickstart_upload'
            )) {
                wp_send_json_error(array(
                    'message' => __('The security check failed. Please refresh the page and try again.', 'ml-slider')
                ), 401);
            }

            $capability = apply_filters('metaslider_capability', MetaSliderPlugin::DEFAULT_CAPABILITY_EDIT_SLIDES);
            if (! current_user_can($capability)) {
                wp_send_json_error(
                    [
                        'message' => __('Access denied. Sorry, you do not have permission to complete this task.', 'ml-slider')
                    ],
                    403
                );
            }
            
            if (!isset($_FILES['async-upload'])) {
                wp_send_json_error(
                    [
                        'message' => __('Bad request', 'ml-slider'),
                    ],
                    400
                );
            }
            $file = $_FILES['async-upload'];
            $wp_upload_dir = wp_upload_dir();
            $uploaded = wp_handle_upload($file, array('test_form'=> false, 'action' => 'quickstart_upload'));
            $filename = $uploaded['url'];
            $filetype = wp_check_filetype(basename($filename), null);
            $attachment = array(
                'guid'           => $wp_upload_dir['url'] . '/' . basename($filename),
                'post_mime_type' => $filetype['type'],
                'post_title'     => preg_replace('/\.[^.]+$/', '', basename($filename)),
                'post_content'   => '',
                'post_excerpt'   => '',
                'post_status'    => 'publish'
            );
            $attach_id = wp_insert_attachment($attachment, $filename);
            $attach_data = wp_generate_attachment_metadata($attach_id, $filename);
            $update_data = wp_update_attachment_metadata($attach_id, $attach_data);

            $settings = MetaSlider_Slideshow_Settings::defaults();
            $image_cropper = new MetaSliderImageHelper(
                $attach_id,
                $settings['width'],
                $settings['height'],
                isset($settings['smartCrop']) ? $settings['smartCrop'] : 'false'
            );
            $newurl = $image_cropper->get_image_url();
    
            if (is_wp_error($attach_id)) {
                wp_send_json_error(array(
                    'message' => $attach_id->get_error_message()
                ), 409);
            }

            if (is_wp_error($attach_data)) {
                wp_send_json_error(array(
                    'message' => $attach_data->get_error_message()
                ), 409);
            }

            if (is_wp_error($update_data)) {
                wp_send_json_error(array(
                    'message' => $update_data->get_error_message()
                ), 409);
            }

            wp_send_json($attach_id);
            wp_die(); 
        }

        /**
         * Extract 'slug' values on each array from 'metaslider_quickstart_options' filter
         * We use this to allow t create demo sldieshows through Quick start screen
         * 
         * @since 3.70
         * 
         * @return array
         */
        public function quickstart_slugs()
        {
            $slugs          = array();
            $demo_options   = apply_filters( 'metaslider_quickstart_options', array() );

            if ( count( $demo_options ) > 0 ) {
                foreach ( $demo_options as $item ) {
                    $slugs[] = $item['slug'];
                }
            }

            return $slugs;
        }
    }

    if (! class_exists('MetaSlider_Settings')) {
        require_once __DIR__ . '/admin/support/Settings.php';
    }
}

add_action('plugins_loaded', array(MetaSliderPlugin::get_instance(), 'setup'), 10);

function metaslider_activate() {
    add_option( 'metaslider_activate', true );
}
register_activation_hook( __FILE__, 'metaslider_activate' );
images/metaslider_logo.png000064400000007350151213255530011677 0ustar00�PNG


IHDR��,�?��PLTEGpL�l$�g#�i#�{�h"�h"�^�g#�h#�j#�e�e!�i#�i#�i#�f!�i#�i$�h#�i#�h#�g"�h#�e!�h#�h#�i#�i#�h"�h#�h#�h#�h#�h"�e"�h#�e�i#�h#�i#�i#�f#�h#�g"�i#�l$�l$�i#�j#�j$�k$�m%�h#�p%�h#n��.tRNS�*������
&�����kG/ ����W�_@{qQ˃��5�:��~||
�IDATx^�ʁ ��E��"j���,|4C��38���{�T���},��=WmAg~qٻ��y$�	n���W�p�.;z�7�u�3Z$fY�ߢ������nu�>�����k<z�l� 猩?��BB{;y��b������a9��w*�_D�w�.���`��Y��eVk�4�
3W����i*���S�_Xȃ��ہL�d90��d�$M�`;��a����w[�+
�k�� ������U�W�FJB�N�!*�6��G��v�>�R	����i밾�����u���>�S�޿���	#���@y���֡�dh�iOrTg�7m�/ ���Qi�4o|����r}3H��q���+ �EL��D���Y����%l~[��ģ�����F1	�r�6Q�	���S��x%`{�%�G���s�=�4�0 ݗF�.,I��q%$䶓�:��K]��[B�t�EM� �-~�5��.��oפ�Q�3���E2�c���v��@��9�~T������9K�`�yit��$����	.l�U�JT��mw!����AL��.d�[Y��.'g�BU��Jg�����U��Q:�H�I��U����B�ET�<����b �+���N$87��UZ�%��e�BVp��YCfH�K��*!���9�]H�.i'��'�s�%uU�'�v!�'	f���L�3�. #�PUH��	����Y��-@j��uJ;����!Y蒲B����Bҝ%�*'�κ��B���X��{�����9-	��xR�O:L����<���.�'S����=��.$�^�o
��F�"��B'�������;6��SY[}�2��+	|G���yZ+�j	8��,���M��o�}		y`�[�	^|������.7$ �<�ӊ�yL�YR����\����'��4�3�~x,�. �����~�q�w��oe���:�	���L�o��F$��z��Q���J�
s�/d���7��Ft�#�M1I�J��/ZIv4Bc�9�)�EL�?��p�t���Ǐ?~�V�n'���t;�L?x�e8����H�-EH�7G���C�]7�>�}pL�dţ\�����
�$(2Q�3�z8r���{��E�<����,�!�n)�LH�D}����|c��y���T�:�ȵ�x<3�t
�[�8=R���P{�����Cd�8D�ͅ�0�)�W<���o�Y
Y�`�2���A�AXi�*������I�8���VtrqF'���uM�&���:$��L�\ɥ5�t��$����d������Lf
.��JbxmR��9�.��m�ۚ�F�!!1�
�.�cGpwÂ�5	�XOYke���|��ZɎ�e��d
��#�q����$�J%߂�r�<��ŽcN��d�>�.�fe*�mO�}�����G�)��,�ޘ0Ro
es���3t7YxwL���
�Hcl~�d�'�J�<�(n�œBU3�?���&y�1ܛT�����l�n�"�m[`��dj�	��y��ҞT��,Hx��HPAѾuw
�L��d�b:��&dm<��J��"Tp�n!z�
�ܝ�m3�<(,�m[R]�x���±�r���i[�+C�e��i5�rr��!Y�OP9`S
Ω�3a0nE�}��dDŽ@�YTb�n��D�N�
3{/L��N�L�'�lN���e�O��uX��#l9���k�Д�q�3��l�H��8�2��Վ��f*�3]C篩Iٱ��sYˆN�ڎ��oLB�W`-�l��o�+5k$�Fn�M����Ҙ�a�D�J�#d�t�NےEk#�;sSY�	�	[�.��=`r�1+���c:}��}ox��u't'pNnQO��y;�D|e(ﶒ��2u���8G��� ,�2���t�!��Z�ϕ��ۥ�!�#���$��s�""�/�=`/ĨTFn�rKT���i`�$�k����<e���O�
\(��uOL:����?�Hk.�ء�wg�2��0�y�0�!k6���dش��H;��0�I� O&��d�r��c���yLBC)�#�{�_�,^!^Re�
:-+T��qn*���(�ҹ�+E�6� ���a�;�|�0�՟��(�'���
wve�إ��B�mUԝD�_�u�o�:��d5��1_�lv4<�K}��h*N�m	ߙ�M=hG^�v9@ӟm�]
���$�Xw��� B&w6��N�
�:e�?v��֖R2t%���=��%F����57��P�Y��Б��'e!9<Z>�r�����tx����A{�:���t�^8�G��+lf)��V�M#�ք.�4�)��N�_�T�#�`a��o�
QZ�b��Ԥ2G��a!�}	�p&��id|ې�_�����`/����<�剩�4\*�¥@��c&�YCw� �q��Z��������baRk��<�:$�9,�,��l�[����ݡeM����.��˞]c�߷U����k9&`]���-*���j�7�`D�11
y��
�7z�O�o	��xO#tm�qo�B�W?��i^�+9�:H�۬�c{�{c�_7&���x���4� �Y��/
ލmvK��+�-y,��h)����^�͋���H�'O�.-��ͤ�`d3T��Đ���C ;�nά�4�ͤ�m�(�͛���S�c*W-% +���y)��3��.m��
��/CZY{h(��5Q6�������;_7�
̔%"M-I�2T(?uZ�ֈ��|��rS)�%��~�&�n�V:��S�i���R]�^�nT*_�7*��j����s���'��ݷub���m��r��
��[��l��_Iћ�=�/����<����'|����#C�{����^���)[���K6wr=��P��qt�?H��G@*�# ��w�ܱ���y��)��zԱ*��*R}=^�z0�>ҿl��#���1\�Ѩ�(�_]��puM��e�U�������E_>W�a5�h�^�W�k�Z�녖���T9\Ez�D����G��E}������v�$,��r�zY���{'��Yrx,a�R̦�J���d@�g�XG����]ר��N�$����M�<Ҝ�$�s9'rٛ6�m��{�$e�����s�дo���������
��H;���f}h���#
d�:�oB�IU��ղ�R���3D@E��r�H4�
�	��� $Wߏ/�K��}��'�!�;�n2��~�4���t�%v��w���ˬ�i*U��`�\J��h�f/O]�����>�����r����T0uZ}���a܌?��ڣsa��6AP��k!i�����܊x!���i��^��m���R���$zBLBZ��e�˦����pՇ��0�n9���Ӡvs���2���$��+�IEND�B`�assets/sliders/flexslider/LICENSE.md000064400000043176151213255530013275 0ustar00                    GNU GENERAL PUBLIC LICENSE
                       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  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
this service 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 make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  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.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

                    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
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
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the 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 a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

                            NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE 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.

                     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
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    {description}
    Copyright (C) {year}  {fullname}

    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 2 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision 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, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  {signature of Ty Coon}, 1 April 1989
  Ty Coon, President of Vice

This 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.
assets/sliders/flexslider/flexslider.css000064400000007243151213255530014537 0ustar00@font-face{font-family:flexslider-icon;src:url(fonts/flexslider-icon.eot);src:url(fonts/flexslider-icon.eot?#iefix) format('embedded-opentype'),url(fonts/flexslider-icon.woff) format('woff'),url(fonts/flexslider-icon.ttf) format('truetype'),url(fonts/flexslider-icon.svg#flexslider-icon) format('svg');font-weight:400;font-style:normal}.flex-container a:hover,.flex-slider a:hover{outline:0}.flex-control-nav,.flex-direction-nav,.slides,.slides>li{margin:0;padding:0;list-style:none}.flex-pauseplay span{text-transform:capitalize}.flexslider{margin:0;padding:0}.flexslider .slides>li{display:none;-webkit-backface-visibility:hidden}.flexslider .slides img{width:100%;display:block}.flexslider .slides:after{content:"\0020";display:block;clear:both;visibility:hidden;line-height:0;height:0}html[xmlns] .flexslider .slides{display:block}* html .flexslider .slides{height:1%}.no-js .flexslider .slides>li:first-child{display:block}.flexslider{margin:0 0 60px;background:#fff;border:4px solid #fff;position:relative;zoom:1;border-radius:4px;-o-box-shadow:'' 0 1px 4px rgba(0,0,0,.2);box-shadow:'' 0 1px 4px rgba(0,0,0,.2)}.flexslider .slides{zoom:1}.flexslider .slides img{height:auto;-moz-user-select:none}.flex-viewport{max-height:2000px;transition:all 1s ease}.loading .flex-viewport{max-height:300px}.carousel li{margin-right:5px}.flex-direction-nav{*height:0}.flex-direction-nav a{text-decoration:none;display:block;width:40px;height:40px;margin:-20px 0 0;position:absolute;top:50%;z-index:10;overflow:hidden;opacity:0;cursor:pointer;color:rgba(0,0,0,.8);text-shadow:1px 1px 0 rgba(255,255,255,.3);transition:all .3s ease-in-out}.flex-direction-nav a:before{font-family:flexslider-icon;font-size:40px;display:inline-block;content:'\f001';color:rgba(0,0,0,.8);text-shadow:1px 1px 0 rgba(255,255,255,.3)}.flex-direction-nav a.flex-next:before{content:'\f002'}.flex-direction-nav .flex-prev{left:-50px}.flex-direction-nav .flex-next{right:-50px;text-align:right}.flexslider:hover .flex-direction-nav .flex-prev{opacity:.7;left:10px}.flexslider:hover .flex-direction-nav .flex-prev:hover{opacity:1}.flexslider:hover .flex-direction-nav .flex-next{opacity:.7;right:10px}.flexslider:hover .flex-direction-nav .flex-next:hover{opacity:1}.flex-direction-nav .flex-disabled{opacity:0!important;filter:alpha(opacity=0);cursor:default;z-index:-1}.flex-pauseplay a{display:block;width:20px;height:20px;position:absolute;bottom:5px;left:10px;opacity:.8;z-index:10;overflow:hidden;cursor:pointer;color:#000}.flex-pauseplay a:before{font-family:flexslider-icon;font-size:20px;display:inline-block;content:'\f004'}.flex-pauseplay a:hover{opacity:1}.flex-pauseplay a.flex-play:before{content:'\f003'}.flex-control-nav{width:100%;position:absolute;bottom:-40px;text-align:center}.flex-control-nav li{margin:0 6px;display:inline-block;zoom:1;*display:inline}.flex-control-paging li a{width:11px;height:11px;display:block;background:#666;background:rgba(0,0,0,.5);cursor:pointer;text-indent:-9999px;-o-box-shadow:inset 0 0 3px rgba(0,0,0,.3);box-shadow:inset 0 0 3px rgba(0,0,0,.3);border-radius:20px}.flex-control-paging li a:hover{background:#333;background:rgba(0,0,0,.7)}.flex-control-paging li a.flex-active{background:#000;background:rgba(0,0,0,.9);cursor:default}.flex-control-thumbs{margin:5px 0 0;position:static;overflow:hidden}.flex-control-thumbs li{width:25%;float:left;margin:0}.flex-control-thumbs img{width:100%;height:auto;display:block;opacity:.7;cursor:pointer;-moz-user-select:none;transition:all 1s ease}.flex-control-thumbs img:hover{opacity:1}.flex-control-thumbs .flex-active{opacity:1;cursor:default}@media screen and (max-width:860px){.flex-direction-nav .flex-prev{opacity:1;left:10px}.flex-direction-nav .flex-next{opacity:1;right:10px}}
assets/sliders/flexslider/jquery.flexslider.js000064400000164051151213255530015702 0ustar00/*
 * jQuery FlexSlider v2.7.1
 * Copyright 2012 WooThemes
 * Contributing Author: Tyler Smith
 */
;
(function ($) {

  var focused = true;

  //FlexSlider: Object Instance
  $.flexslider = function(el, options) {
    var slider = $(el);

    // making variables public

    //if rtl value was not passed and html is in rtl..enable it by default.
    if(typeof options.rtl=='undefined' && $('html').attr('dir')=='rtl'){
      options.rtl=true;
    }
    slider.vars = $.extend({}, $.flexslider.defaults, options);

    var namespace = slider.vars.namespace,
        msGesture = window.navigator && window.navigator.msPointerEnabled && window.MSGesture,
        touch = (( "ontouchstart" in window ) || msGesture || window.DocumentTouch && document instanceof DocumentTouch) && slider.vars.touch,
        // deprecating this idea, as devices are being released with both of these events
        eventType = "click touchend MSPointerUp",
        watchedEvent = "",
        watchedEventClearTimer,
        vertical = slider.vars.direction === "vertical",
        reverse = slider.vars.reverse,
        carousel = (slider.vars.itemWidth > 0),
        fade = slider.vars.animation === "fade",
        asNav = slider.vars.asNavFor !== "",
        methods = {};

    // Store a reference to the slider object
    $.data(el, "flexslider", slider);

    // Private slider methods
    methods = {
      init: function() {
        slider.animating = false;
        // Get current slide and make sure it is a number
        slider.currentSlide = parseInt( ( slider.vars.startAt ? slider.vars.startAt : 0), 10 );
        if ( isNaN( slider.currentSlide ) ) { slider.currentSlide = 0; }
        slider.animatingTo = slider.currentSlide;
        slider.atEnd = (slider.currentSlide === 0 || slider.currentSlide === slider.last);
        slider.containerSelector = slider.vars.selector.substr(0,slider.vars.selector.search(' '));
        slider.slides = $(slider.vars.selector, slider);
        slider.container = $(slider.containerSelector, slider);
        slider.count = slider.slides.length;
        // SYNC:
        slider.syncExists = $(slider.vars.sync).length > 0;
        // SLIDE:
        if (slider.vars.animation === "slide") { slider.vars.animation = "swing"; }
        slider.prop = (vertical) ? "top" : ( slider.vars.rtl ? "marginRight" : "marginLeft" );
        slider.args = {};
        // SLIDESHOW:
        slider.manualPause = false;
        slider.stopped = false;
        //PAUSE WHEN INVISIBLE
        slider.started = false;
        slider.startTimeout = null;
        // TOUCH/USECSS:
        slider.transitions = !slider.vars.video && !fade && slider.vars.useCSS && (function() {
          var obj = document.createElement('div'),
              props = ['perspectiveProperty', 'WebkitPerspective', 'MozPerspective', 'OPerspective', 'msPerspective'];
          for (var i in props) {
            if ( obj.style[ props[i] ] !== undefined ) {
              slider.pfx = props[i].replace('Perspective','').toLowerCase();
              slider.prop = "-" + slider.pfx + "-transform";
              return true;
            }
          }
          return false;
        }());
        slider.isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') > -1;
        slider.ensureAnimationEnd = '';
        // CONTROLSCONTAINER:
        if (slider.vars.controlsContainer !== "") slider.controlsContainer = $(slider.vars.controlsContainer).length > 0 && $(slider.vars.controlsContainer);
        // MANUAL:
        if (slider.vars.manualControls !== "") slider.manualControls = $(slider.vars.manualControls).length > 0 && $(slider.vars.manualControls);

        // CUSTOM DIRECTION NAV:
        if (slider.vars.customDirectionNav !== "") slider.customDirectionNav = $(slider.vars.customDirectionNav).length === 2 && $(slider.vars.customDirectionNav);

        // RANDOMIZE:
        if (slider.vars.randomize) {
          slider.slides.sort(function() { return (Math.round(Math.random())-0.5); });
          slider.container.empty().append(slider.slides);
        }

        slider.doMath();

        // INIT
        slider.setup("init");

        // CONTROLNAV:
        if (slider.vars.controlNav) { methods.controlNav.setup(); }

        // DIRECTIONNAV:
        if (slider.vars.directionNav) { methods.directionNav.setup(); }

        // KEYBOARD:
        if (slider.vars.keyboard && ($(slider.containerSelector).length === 1 || slider.vars.multipleKeyboard)) {
          $(document).bind('keyup', function(event) {
            var keycode = event.keyCode;
            if (!slider.animating && (keycode === 39 || keycode === 37)) {
              var target = (slider.vars.rtl?
                                ((keycode === 37) ? slider.getTarget('next') :
                                (keycode === 39) ? slider.getTarget('prev') : false)
                                :
                                ((keycode === 39) ? slider.getTarget('next') :
                                (keycode === 37) ? slider.getTarget('prev') : false)
                                )
                                ;
              slider.flexAnimate(target, slider.vars.pauseOnAction);
            }
          });
        }
        // MOUSEWHEEL:
        if (slider.vars.mousewheel) {
          slider.bind('mousewheel', function(event, delta, deltaX, deltaY) {
            event.preventDefault();
            var target = (delta < 0) ? slider.getTarget('next') : slider.getTarget('prev');
            slider.flexAnimate(target, slider.vars.pauseOnAction);
          });
        }

        // PAUSEPLAY
        if (slider.vars.pausePlay) { methods.pausePlay.setup(); }

        //PAUSE WHEN INVISIBLE
        if (slider.vars.slideshow && slider.vars.pauseInvisible) { methods.pauseInvisible.init(); }

        // SLIDSESHOW
        if (slider.vars.slideshow) {
          if (slider.vars.pauseOnHover) {
            slider.hover(function() {
              if (!slider.manualPlay && !slider.manualPause) { slider.pause(); }
            }, function() {
              if (!slider.manualPause && !slider.manualPlay && !slider.stopped) { slider.play(); }
            });
          }
          // initialize animation
          //If we're visible, or we don't use PageVisibility API
          if(!slider.vars.pauseInvisible || !methods.pauseInvisible.isHidden()) {
            (slider.vars.initDelay > 0) ? slider.startTimeout = setTimeout(slider.play, slider.vars.initDelay) : slider.play();
          }
        }

        // ASNAV:
        if (asNav) { methods.asNav.setup(); }

        // TOUCH
        if (touch && slider.vars.touch) { methods.touch(); }

        // FADE&&SMOOTHHEIGHT || SLIDE:
        if (!fade || (fade && slider.vars.smoothHeight)) { $(window).on("resize orientationchange focus", methods.resize); }

        slider.find("img").attr("draggable", "false");

        // API: start() Callback
        setTimeout(function(){
          slider.vars.start(slider);
        }, 200);
      },
      asNav: {
        setup: function() {
          slider.asNav = true;
          slider.animatingTo = Math.floor(slider.currentSlide/slider.move);
          slider.currentItem = slider.currentSlide;
          slider.slides.removeClass(namespace + "active-slide").eq(slider.currentItem).addClass(namespace + "active-slide");
          if(!msGesture){
              slider.slides.on(eventType, function(e){
                e.preventDefault();
                var $slide = $(this),
                    target = $slide.index();
                var posFromX;
                if(slider.vars.rtl){
                  posFromX = -1*($slide.offset().right - $(slider).scrollLeft()); // Find position of slide relative to right of slider container
                }
                else
                {
                  posFromX = $slide.offset().left - $(slider).scrollLeft(); // Find position of slide relative to left of slider container
                }
                if( posFromX <= 0 && $slide.hasClass( namespace + 'active-slide' ) ) {
                  slider.flexAnimate(slider.getTarget("prev"), true);
                } else if (!$(slider.vars.asNavFor).data('flexslider').animating && !$slide.hasClass(namespace + "active-slide")) {
                  slider.direction = (slider.currentItem < target) ? "next" : "prev";
                  slider.flexAnimate(target, slider.vars.pauseOnAction, false, true, true);
                }
              });
          }else{
              el._slider = slider;
              slider.slides.each(function (){
                  var that = this;
                  that._gesture = new MSGesture();
                  that._gesture.target = that;
                  that.addEventListener("MSPointerDown", function (e){
                      e.preventDefault();
                      if(e.currentTarget._gesture) {
                        e.currentTarget._gesture.addPointer(e.pointerId);
                      }
                  }, { passive: true });
                  that.addEventListener("MSGestureTap", function (e){
                      e.preventDefault();
                      var $slide = $(this),
                          target = $slide.index();
                      if (!$(slider.vars.asNavFor).data('flexslider').animating && !$slide.hasClass('active')) {
                          slider.direction = (slider.currentItem < target) ? "next" : "prev";
                          slider.flexAnimate(target, slider.vars.pauseOnAction, false, true, true);
                      }
                  }, { passive: true });
              });
          }
        }
      },
      controlNav: {
        setup: function() {
          if (!slider.manualControls) {
            methods.controlNav.setupPaging();
          } else { // MANUALCONTROLS:
            methods.controlNav.setupManual();
          }
        },
        setupPaging: function() {
          var type = (slider.vars.controlNav === "thumbnails") ? 'control-thumbs' : 'control-paging',
              j = 1,
              item,
              slide;

          slider.controlNavScaffold = $('<ol class="'+ namespace + 'control-nav ' + namespace + type + '" aria-label="Slide controls"></ol>');

          if (slider.pagingCount > 1) {
            for (var i = 0; i < slider.pagingCount; i++) {
              slide = slider.slides.eq(i);
              if ( undefined === slide.attr( 'data-thumb-alt' ) ) { slide.attr( 'data-thumb-alt', '' ); }
              var altText = ( '' !== slide.attr( 'data-thumb-alt' ) ) ? altText = ' alt="' + slide.attr( 'data-thumb-alt' ) + '"' : '';
              item = (slider.vars.controlNav === "thumbnails") ? '<img src="' + slide.attr( 'data-thumb' ) + '"' + altText + '/>' : '<a href="#">' + j + '</a>';
              if ( 'thumbnails' === slider.vars.controlNav && true === slider.vars.thumbCaptions ) {
                var captn = slide.attr( 'data-thumbcaption' );
                if ( '' !== captn && undefined !== captn ) { item += '<span class="' + namespace + 'caption">' + captn + '</span>'; }
              }
              slider.controlNavScaffold.append('<li aria-label="Show slide ' + j + ' of ' + slider.pagingCount + '">' + item + '</li>');
              j++;
            }
          }

          // CONTROLSCONTAINER:
          (slider.controlsContainer) ? $(slider.controlsContainer).append(slider.controlNavScaffold) : slider.append(slider.controlNavScaffold);
          methods.controlNav.set();

          methods.controlNav.active();

          slider.controlNavScaffold.delegate('a, img', eventType, function(event) {
            event.preventDefault();

            if (watchedEvent === "" || watchedEvent === event.type) {
              var $this = $(this),
                  target = slider.controlNav.index($this);

              if (!$this.hasClass(namespace + 'active')) {
                slider.direction = (target > slider.currentSlide) ? "next" : "prev";
                slider.flexAnimate(target, slider.vars.pauseOnAction);
              }
            }

            // setup flags to prevent event duplication
            if (watchedEvent === "") {
              watchedEvent = event.type;
            }
            methods.setToClearWatchedEvent();

          });
        },
        setupManual: function() {
          slider.controlNav = slider.manualControls;
          methods.controlNav.active();

          slider.controlNav.bind(eventType, function(event) {
            event.preventDefault();

            if (watchedEvent === "" || watchedEvent === event.type) {
              var $this = $(this),
                  target = slider.controlNav.index($this);

              if (!$this.hasClass(namespace + 'active')) {
                (target > slider.currentSlide) ? slider.direction = "next" : slider.direction = "prev";
                slider.flexAnimate(target, slider.vars.pauseOnAction);
              }
            }

            // setup flags to prevent event duplication
            if (watchedEvent === "") {
              watchedEvent = event.type;
            }
            methods.setToClearWatchedEvent();
          });
        },
        set: function() {
          var selector = (slider.vars.controlNav === "thumbnails") ? 'img' : 'a';
          slider.controlNav = $('.' + namespace + 'control-nav li ' + selector, (slider.controlsContainer) ? slider.controlsContainer : slider);
        },
        active: function() {
          slider.controlNav.removeClass(namespace + "active").eq(slider.animatingTo).addClass(namespace + "active");
        },
        update: function(action, pos) {
          if (slider.pagingCount > 1 && action === "add") {
            slider.controlNavScaffold.append($('<li><a href="#"></a></li>'));
          } else if (slider.pagingCount === 1) {
            slider.controlNavScaffold.find('li').remove();
          } else {
            slider.controlNav.eq(pos).closest('li').remove();
          }
          slider.controlNavScaffold.find('li').each(function (ind, el) {
            $(el).find('a').text(ind + 1);
          });
          methods.controlNav.set();
          (slider.pagingCount > 1 && slider.pagingCount !== slider.controlNav.length) ? slider.update(pos, action) : methods.controlNav.active();
        }
      },
      directionNav: {
        setup: function() {
          var directionNavScaffold = $('<ul class="' + namespace + 'direction-nav"><li class="' + namespace + 'nav-prev"><a class="' + namespace + 'prev" href="#">' + slider.vars.prevText + '</a></li><li class="' + namespace + 'nav-next"><a class="' + namespace + 'next" href="#">' + slider.vars.nextText + '</a></li></ul>');

          // CUSTOM DIRECTION NAV:
          if (slider.customDirectionNav) {
            slider.directionNav = slider.customDirectionNav;
          // CONTROLSCONTAINER:
          } else if (slider.controlsContainer) {
            $(slider.controlsContainer).append(directionNavScaffold);
            slider.directionNav = $('.' + namespace + 'direction-nav li a', slider.controlsContainer);
          } else {
            slider.append(directionNavScaffold);
            slider.directionNav = $('.' + namespace + 'direction-nav li a', slider);
          }

          methods.directionNav.update();

          slider.directionNav.bind(eventType, function(event) {
            event.preventDefault();
            var target;

            if (watchedEvent === "" || watchedEvent === event.type) {
              target = ($(this).hasClass(namespace + 'next')) ? slider.getTarget('next') : slider.getTarget('prev');
              slider.flexAnimate(target, slider.vars.pauseOnAction);
            }

            // setup flags to prevent event duplication
            if (watchedEvent === "") {
              watchedEvent = event.type;
            }
            methods.setToClearWatchedEvent();
          });
        },
        update: function() {
          var disabledClass = namespace + 'disabled';
          if (slider.pagingCount === 1) {
            slider.directionNav.addClass(disabledClass).attr('tabindex', '-1');
          } else if (!slider.vars.animationLoop) {
            if (slider.animatingTo === 0) {
              slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "prev").addClass(disabledClass).attr('tabindex', '-1');
            } else if (slider.animatingTo === slider.last) {
              slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "next").addClass(disabledClass).attr('tabindex', '-1');
            } else {
              slider.directionNav.removeClass(disabledClass).removeAttr('tabindex');
            }
          } else {
            slider.directionNav.removeClass(disabledClass).removeAttr('tabindex');
          }
        }
      },
      pausePlay: {
        setup: function() {
          var pausePlayScaffold = $('<div aria-live="polite" class="' + namespace + 'pauseplay"><a href="#"></a></div>');

          // CONTROLSCONTAINER:
          if (slider.controlsContainer) {
            slider.controlsContainer.append(pausePlayScaffold);
            slider.pausePlay = $('.' + namespace + 'pauseplay a', slider.controlsContainer);
          } else {
            slider.append(pausePlayScaffold);
            slider.pausePlay = $('.' + namespace + 'pauseplay a', slider);
          }

          methods.pausePlay.update((slider.vars.slideshow) ? namespace + 'pause' : namespace + 'play');

          slider.pausePlay.bind(eventType, function(event) {
            event.preventDefault();

            if (watchedEvent === "" || watchedEvent === event.type) {
              if ($(this).hasClass(namespace + 'pause')) {
                slider.manualPause = true;
                slider.manualPlay = false;
                slider.pause();
              } else {
                slider.manualPause = false;
                slider.manualPlay = true;
                slider.play();
              }
            }

            // setup flags to prevent event duplication
            if (watchedEvent === "") {
              watchedEvent = event.type;
            }
            methods.setToClearWatchedEvent();
          });
        },
        update: function(state) {
          (state === "play") ? slider.pausePlay.removeClass(namespace + 'pause').addClass(namespace + 'play').html(slider.vars.playText) : slider.pausePlay.removeClass(namespace + 'play').addClass(namespace + 'pause').html(slider.vars.pauseText);
        }
      },
      touch: function() {
        var startX,
          startY,
          offset,
          cwidth,
          dx,
          startT,
          onTouchStart,
          onTouchMove,
          onTouchEnd,
          scrolling = false,
          localX = 0,
          localY = 0,
          accDx = 0;

        if(!msGesture){
            onTouchStart = function(e) {
              if (slider.animating) {
                e.preventDefault();
              } else if ( ( window.navigator.msPointerEnabled ) || e.touches.length === 1 ) {
                slider.pause();
                // CAROUSEL:
                cwidth = (vertical) ? slider.h : slider. w;
                startT = Number(new Date());
                // CAROUSEL:

                // Local vars for X and Y points.
                localX = e.touches[0].pageX;
                localY = e.touches[0].pageY;

                offset = (carousel && reverse && slider.animatingTo === slider.last) ? 0 :
                         (carousel && reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) :
                         (carousel && slider.currentSlide === slider.last) ? slider.limit :
                         (carousel) ? ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.currentSlide :
                         (reverse) ? (slider.last - slider.currentSlide + slider.cloneOffset) * cwidth : (slider.currentSlide + slider.cloneOffset) * cwidth;
                startX = (vertical) ? localY : localX;
                startY = (vertical) ? localX : localY;
                el.addEventListener('touchmove', onTouchMove, { passive: true });
                el.addEventListener('touchend', onTouchEnd, { passive: true });
              }
            };

            onTouchMove = function(e) {
              // Local vars for X and Y points.

              localX = e.touches[0].pageX;
              localY = e.touches[0].pageY;

              dx = (vertical) ? startX - localY : (slider.vars.rtl?-1:1)*(startX - localX);
              scrolling = (vertical) ? (Math.abs(dx) < Math.abs(localX - startY)) : (Math.abs(dx) < Math.abs(localY - startY));
              var fxms = 500;

              if ( ! scrolling || Number( new Date() ) - startT > fxms ) {
                e.preventDefault();
                if (!fade && slider.transitions) {
                  if (!slider.vars.animationLoop) {
                    dx = dx/((slider.currentSlide === 0 && dx < 0 || slider.currentSlide === slider.last && dx > 0) ? (Math.abs(dx)/cwidth+2) : 1);
                  }
                  slider.setProps(offset + dx, "setTouch");
                }
              }
            };

            onTouchEnd = function(e) {
              // finish the touch by undoing the touch session
              el.removeEventListener('touchmove', onTouchMove, false);

              if (slider.animatingTo === slider.currentSlide && !scrolling && !(dx === null)) {
                var updateDx = (reverse) ? -dx : dx,
                    target = (updateDx > 0) ? slider.getTarget('next') : slider.getTarget('prev');

                if (slider.canAdvance(target) && (Number(new Date()) - startT < 550 && Math.abs(updateDx) > 50 || Math.abs(updateDx) > cwidth/2)) {
                  slider.flexAnimate(target, slider.vars.pauseOnAction);
                } else {
                  if (!fade) { slider.flexAnimate(slider.currentSlide, slider.vars.pauseOnAction, true); }
                }
              }
              el.removeEventListener('touchend', onTouchEnd, false);

              if (dx && scrolling) {
                
                // (scroll) Resume autoplay if slideshow is enabled
                slider.vars.slideshow && slider.play();
              } else if (dx) {
                
                // (swipe) Resume if pauseOnAction:false, else end slideshow
                !slider.vars.pauseOnAction && slider.play() || (slider.vars.slideshow = false);
              } else {
                
                // ("click") Resume if pauseOnAction:false, slideshow:true
                (slider.vars.slideshow && !slider.vars.pauseOnAction) && slider.play() || (slider.vars.slideshow = false);
              }

              startX = null;
              startY = null;
              dx = null;
              offset = null;
            };

            el.addEventListener('touchstart', onTouchStart, { passive: true });
        }else{
            el.style.msTouchAction = "none";
            el._gesture = new MSGesture();
            el._gesture.target = el;
            el.addEventListener("MSPointerDown", onMSPointerDown, { passive: true });
            el._slider = slider;
            el.addEventListener("MSGestureChange", onMSGestureChange, { passive: true });
            el.addEventListener("MSGestureEnd", onMSGestureEnd, { passive: true });

            function onMSPointerDown(e){
                e.stopPropagation();
                if (slider.animating) {
                    e.preventDefault();
                }else{
                    slider.pause();
                    el._gesture.addPointer(e.pointerId);
                    accDx = 0;
                    cwidth = (vertical) ? slider.h : slider. w;
                    startT = Number(new Date());
                    // CAROUSEL:

                    offset = (carousel && reverse && slider.animatingTo === slider.last) ? 0 :
                        (carousel && reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) :
                            (carousel && slider.currentSlide === slider.last) ? slider.limit :
                                (carousel) ? ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.currentSlide :
                                    (reverse) ? (slider.last - slider.currentSlide + slider.cloneOffset) * cwidth : (slider.currentSlide + slider.cloneOffset) * cwidth;
                }
            }

            function onMSGestureChange(e) {
                e.stopPropagation();
                var slider = e.target._slider;
                if(!slider){
                    return;
                }
                var transX = -e.translationX,
                    transY = -e.translationY;

                //Accumulate translations.
                accDx = accDx + ((vertical) ? transY : transX);
                dx = (slider.vars.rtl?-1:1)*accDx;
                scrolling = (vertical) ? (Math.abs(accDx) < Math.abs(-transX)) : (Math.abs(accDx) < Math.abs(-transY));

                if(e.detail === e.MSGESTURE_FLAG_INERTIA){
                    setImmediate(function (){
                        el._gesture.stop();
                    });

                    return;
                }

                if (!scrolling || Number(new Date()) - startT > 500) {
                    e.preventDefault();
                    if (!fade && slider.transitions) {
                        if (!slider.vars.animationLoop) {
                            dx = accDx / ((slider.currentSlide === 0 && accDx < 0 || slider.currentSlide === slider.last && accDx > 0) ? (Math.abs(accDx) / cwidth + 2) : 1);
                        }
                        slider.setProps(offset + dx, "setTouch");
                    }
                }
            }

            function onMSGestureEnd(e) {
                e.stopPropagation();
                var slider = e.target._slider;
                if(!slider){
                    return;
                }
                if (slider.animatingTo === slider.currentSlide && !scrolling && !(dx === null)) {
                    var updateDx = (reverse) ? -dx : dx,
                        target = (updateDx > 0) ? slider.getTarget('next') : slider.getTarget('prev');

                    if (slider.canAdvance(target) && (Number(new Date()) - startT < 550 && Math.abs(updateDx) > 50 || Math.abs(updateDx) > cwidth/2)) {
                        slider.flexAnimate(target, slider.vars.pauseOnAction);
                    } else {
                        if (!fade) { slider.flexAnimate(slider.currentSlide, slider.vars.pauseOnAction, true); }
                    }
                }
                
                if (dx && scrolling) {
                    
                    // (scroll) Resume autoplay if slideshow is enabled
                    slider.vars.slideshow && slider.play();
                  } else if (dx) {
                    
                    // (swipe) Resume if pauseOnAction:false, else end slideshow
                    !slider.vars.pauseOnAction && slider.play() || (slider.vars.slideshow = false);
                  } else {
                    
                    // ("click") Resume if pauseOnAction:false, slideshow:true
                    (slider.vars.slideshow && !slider.vars.pauseOnAction) && slider.play() || (slider.vars.slideshow = false);
                  }

                startX = null;
                startY = null;
                dx = null;
                offset = null;
                accDx = 0;
            }
        }
      },
      resize: function() {
        if (!slider.animating && slider.is(':visible')) {
          if (!carousel) { slider.doMath(); }

          if (fade) {
            // SMOOTH HEIGHT:
            methods.smoothHeight();
          } else if (carousel) { //CAROUSEL:
            slider.slides.width(slider.computedW);
            slider.update(slider.pagingCount);
            slider.setProps();
          }
          else if (vertical) { //VERTICAL:
            slider.viewport.height(slider.h);
            slider.setProps(slider.h, "setTotal");
          } else {
            // SMOOTH HEIGHT:
            if (slider.vars.smoothHeight) { methods.smoothHeight(); }
            slider.newSlides.width(slider.computedW);
            slider.setProps(slider.computedW, "setTotal");
          }
        }
      },
      smoothHeight: function(dur) {
        if (!vertical || fade) {
          var $obj = (fade) ? slider : slider.viewport;
          (dur) ? $obj.animate({"height": slider.slides.eq(slider.animatingTo).innerHeight()}, dur) : $obj.innerHeight(slider.slides.eq(slider.animatingTo).innerHeight());
        }
      },
      sync: function(action) {
        var $obj = $(slider.vars.sync).data("flexslider"),
            target = slider.animatingTo;

        switch (action) {
          case "animate": $obj.flexAnimate(target, slider.vars.pauseOnAction, false, true); break;
          case "play": if (!$obj.playing && !$obj.asNav) { $obj.play(); } break;
          case "pause": $obj.pause(); break;
        }
      },
      uniqueID: function($clone) {
        // Append _clone to current level and children elements with id attributes
        $clone.filter( '[id]' ).add($clone.find( '[id]' )).each(function() {
          var $this = $(this);
          $this.attr( 'id', $this.attr( 'id' ) + '_clone' );
        });
        return $clone;
      },
      pauseInvisible: {
        visProp: null,
        init: function() {
          var visProp = methods.pauseInvisible.getHiddenProp();
          if (visProp) {
            var evtname = visProp.replace(/[H|h]idden/,'') + 'visibilitychange';
            document.addEventListener(evtname, function() {
              if (methods.pauseInvisible.isHidden()) {
                if(slider.startTimeout) {
                  clearTimeout(slider.startTimeout); //If clock is ticking, stop timer and prevent from starting while invisible
                } else {
                  slider.pause(); //Or just pause
                }
              }
              else {
                if(slider.started) {
                  slider.play(); //Initiated before, just play
                } else {
                  if (slider.vars.initDelay > 0) {
                    setTimeout(slider.play, slider.vars.initDelay);
                  } else {
                    slider.play(); //Didn't init before: simply init or wait for it
                  }
                }
              }
            });
          }
        },
        isHidden: function() {
          var prop = methods.pauseInvisible.getHiddenProp();
          if (!prop) {
            return false;
          }
          return document[prop];
        },
        getHiddenProp: function() {
          var prefixes = ['webkit','moz','ms','o'];
          // if 'hidden' is natively supported just return it
          if ('hidden' in document) {
            return 'hidden';
          }
          // otherwise loop over all the known prefixes until we find one
          for ( var i = 0; i < prefixes.length; i++ ) {
              if ((prefixes[i] + 'Hidden') in document) {
                return prefixes[i] + 'Hidden';
              }
          }
          // otherwise it's not supported
          return null;
        }
      },
      setToClearWatchedEvent: function() {
        clearTimeout(watchedEventClearTimer);
        watchedEventClearTimer = setTimeout(function() {
          watchedEvent = "";
        }, 3000);
      }
    };

    // public methods
    slider.flexAnimate = function(target, pause, override, withSync, fromNav) {
      if (!slider.vars.animationLoop && target !== slider.currentSlide) {
        slider.direction = (target > slider.currentSlide) ? "next" : "prev";
      }

      if (asNav && slider.pagingCount === 1) slider.direction = (slider.currentItem < target) ? "next" : "prev";

      if (!slider.animating && (slider.canAdvance(target, fromNav) || override) && slider.is(":visible")) {
        if (asNav && withSync) {
          var master = $(slider.vars.asNavFor).data('flexslider');
          slider.atEnd = target === 0 || target === slider.count - 1;
          master.flexAnimate(target, true, false, true, fromNav);
          slider.direction = (slider.currentItem < target) ? "next" : "prev";
          master.direction = slider.direction;

          if (Math.ceil((target + 1)/slider.visible) - 1 !== slider.currentSlide && target !== 0) {
            slider.currentItem = target;
            slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide");
            slider.slides.attr('aria-hidden', 'true').eq(target).removeAttr('aria-hidden');
            target = Math.floor(target/slider.visible);
          } else {
            slider.currentItem = target;
            slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide");
            slider.slides.attr('aria-hidden', 'true').eq(target).removeAttr('aria-hidden');
            return false;
          }
        }

        slider.animating = true;
        slider.animatingTo = target;

        // SLIDESHOW:
        if (pause) { slider.pause(); }

        // API: before() animation Callback
        slider.vars.before(slider);

        // SYNC:
        if (slider.syncExists && !fromNav) { methods.sync("animate"); }

        // CONTROLNAV
        if (slider.vars.controlNav) { methods.controlNav.active(); }

        // !CAROUSEL:
        // CANDIDATE: slide active class (for add/remove slide)
        if (!carousel) {
          slider.slides.removeClass(namespace + 'active-slide').eq(target).addClass(namespace + 'active-slide');
          slider.slides.attr('aria-hidden', 'true').eq(target).removeAttr('aria-hidden');
        }

        // INFINITE LOOP:
        // CANDIDATE: atEnd
        slider.atEnd = target === 0 || target === slider.last;

        // DIRECTIONNAV:
        if (slider.vars.directionNav) { methods.directionNav.update(); }

        if (target === slider.last) {
          // API: end() of cycle Callback
          slider.vars.end(slider);
          // SLIDESHOW && !INFINITE LOOP:
          if (!slider.vars.animationLoop) { slider.pause(); }
        }

        // SLIDE:
        if (!fade) {
          var dimension = (vertical) ? slider.slides.filter(':first').height() : slider.computedW,
              margin, slideString, calcNext;

          // INFINITE LOOP / REVERSE:
          if (carousel) {
            margin = slider.vars.itemMargin;
            calcNext = ((slider.itemW + margin) * slider.move) * slider.animatingTo;
            slideString = (calcNext > slider.limit && slider.visible !== 1) ? slider.limit : calcNext;
          } else if (slider.currentSlide === 0 && target === slider.count - 1 && slider.vars.animationLoop && slider.direction !== "next") {
            slideString = (reverse) ? (slider.count + slider.cloneOffset) * dimension : 0;
          } else if (slider.currentSlide === slider.last && target === 0 && slider.vars.animationLoop && slider.direction !== "prev") {
            slideString = (reverse) ? 0 : (slider.count + 1) * dimension;
          } else {
            slideString = (reverse) ? ((slider.count - 1) - target + slider.cloneOffset) * dimension : (target + slider.cloneOffset) * dimension;
          }
          slider.setProps(slideString, "", slider.vars.animationSpeed);
          if (slider.transitions) {
            if (!slider.vars.animationLoop || !slider.atEnd) {
              slider.animating = false;
              slider.currentSlide = slider.animatingTo;
            }

            // Unbind previous transitionEnd events and re-bind new transitionEnd event
            slider.container.unbind("webkitTransitionEnd transitionend");
            slider.container.bind("webkitTransitionEnd transitionend", function() {
              clearTimeout(slider.ensureAnimationEnd);
              slider.wrapup(dimension);
            });

            // Insurance for the ever-so-fickle transitionEnd event
            clearTimeout(slider.ensureAnimationEnd);
            slider.ensureAnimationEnd = setTimeout(function() {
              slider.wrapup(dimension);
            }, slider.vars.animationSpeed + 100);

          } else {
            slider.container.animate(slider.args, slider.vars.animationSpeed, slider.vars.easing, function(){
              slider.wrapup(dimension);
            });
          }
        } else { // FADE:
          if (!touch) {
            slider.slides.eq(slider.currentSlide).css({"zIndex": 1}).animate({"opacity": 0}, slider.vars.animationSpeed, slider.vars.easing);
            slider.slides.eq(target).css({"zIndex": 2}).animate({"opacity": 1}, slider.vars.animationSpeed, slider.vars.easing, slider.wrapup);
          } else {
            slider.slides.eq(slider.currentSlide).css({ "opacity": 0, "zIndex": 1 });
            slider.slides.eq(target).css({ "opacity": 1, "zIndex": 2 });
            slider.wrapup(dimension);
          }
        }
        // SMOOTH HEIGHT:
        if (slider.vars.smoothHeight) { methods.smoothHeight(slider.vars.animationSpeed); }
      }
    };
    slider.wrapup = function(dimension) {
      // SLIDE:
      if (!fade && !carousel) {
        if (slider.currentSlide === 0 && slider.animatingTo === slider.last && slider.vars.animationLoop) {
          slider.setProps(dimension, "jumpEnd");
        } else if (slider.currentSlide === slider.last && slider.animatingTo === 0 && slider.vars.animationLoop) {
          slider.setProps(dimension, "jumpStart");
        }
      }
      slider.animating = false;
      slider.currentSlide = slider.animatingTo;
      // API: after() animation Callback
      slider.vars.after(slider);
    };

    // SLIDESHOW:
    slider.animateSlides = function() {
      if (!slider.animating && focused ) { slider.flexAnimate(slider.getTarget("next")); }
    };
    // SLIDESHOW:
    slider.pause = function() {
      clearInterval(slider.animatedSlides);
      slider.animatedSlides = null;
      slider.playing = false;
      // PAUSEPLAY:
      if (slider.vars.pausePlay) { methods.pausePlay.update("play"); }
      // SYNC:
      if (slider.syncExists) { methods.sync("pause"); }
    };
    // SLIDESHOW:
    slider.play = function() {
      if (slider.playing) { clearInterval(slider.animatedSlides); }
      slider.animatedSlides = slider.animatedSlides || setInterval(slider.animateSlides, slider.vars.slideshowSpeed);
      slider.started = slider.playing = true;
      // PAUSEPLAY:
      if (slider.vars.pausePlay) { methods.pausePlay.update("pause"); }
      // SYNC:
      if (slider.syncExists) { methods.sync("play"); }
    };
    // STOP:
    slider.stop = function () {
      slider.pause();
      slider.stopped = true;
    };
    slider.canAdvance = function(target, fromNav) {
      // ASNAV:
      var last = (asNav) ? slider.pagingCount - 1 : slider.last;
      return (fromNav) ? true :
             (asNav && slider.currentItem === slider.count - 1 && target === 0 && slider.direction === "prev") ? true :
             (asNav && slider.currentItem === 0 && target === slider.pagingCount - 1 && slider.direction !== "next") ? false :
             (target === slider.currentSlide && !asNav) ? false :
             (slider.vars.animationLoop) ? true :
             (slider.atEnd && slider.currentSlide === 0 && target === last && slider.direction !== "next") ? false :
             (slider.atEnd && slider.currentSlide === last && target === 0 && slider.direction === "next") ? false :
             true;
    };
    slider.getTarget = function(dir) {
      slider.direction = dir;
      if (dir === "next") {
        return (slider.currentSlide === slider.last) ? 0 : slider.currentSlide + 1;
      } else {
        return (slider.currentSlide === 0) ? slider.last : slider.currentSlide - 1;
      }
    };

    // SLIDE:
    slider.setProps = function(pos, special, dur) {
      var target = (function() {
        var posCheck = (pos) ? pos : ((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo,
            posCalc = (function() {
              if (carousel) {
                return (special === "setTouch") ? pos :
                       (reverse && slider.animatingTo === slider.last) ? 0 :
                       (reverse) ? slider.limit - (((slider.itemW + slider.vars.itemMargin) * slider.move) * slider.animatingTo) :
                       (slider.animatingTo === slider.last) ? slider.limit : posCheck;
              } else {
                switch (special) {
                  case "setTotal": return (reverse) ? ((slider.count - 1) - slider.currentSlide + slider.cloneOffset) * pos : (slider.currentSlide + slider.cloneOffset) * pos;
                  case "setTouch": return (reverse) ? pos : pos;
                  case "jumpEnd": return (reverse) ? pos : slider.count * pos;
                  case "jumpStart": return (reverse) ? slider.count * pos : pos;
                  default: return pos;
                }
              }
            }());

            return (posCalc * ((slider.vars.rtl)?1:-1)) + "px";
          }());

      if (slider.transitions) {
        if (slider.isFirefox) {
          target = (vertical) ? "translate3d(0," + target + ",0)" : "translate3d(" + (parseFloat(target)+'px') + ",0,0)";
        } else {
          target = (vertical) ? "translate3d(0," + target + ",0)" : "translate3d(" + ((slider.vars.rtl?-1:1)*parseFloat(target)+'px') + ",0,0)";
        }
        dur = (dur !== undefined) ? (dur/1000) + "s" : "0s";
        slider.container.css("-" + slider.pfx + "-transition-duration", dur);
         slider.container.css("transition-duration", dur);
      }

      slider.args[slider.prop] = target;
      if (slider.transitions || dur === undefined) { slider.container.css(slider.args); }

      slider.container.css('transform',target);
    };

    slider.setup = function(type) {
      // SLIDE:
      if (!fade) {
        var sliderOffset, arr;

        if (type === "init") {
          slider.viewport = $('<div class="' + namespace + 'viewport"></div>').css({"overflow": "hidden", "position": "relative"}).appendTo(slider).append(slider.container);
          // INFINITE LOOP:
          slider.cloneCount = 0;
          slider.cloneOffset = 0;
          // REVERSE:
          if (reverse) {
            arr = $.makeArray(slider.slides).reverse();
            slider.slides = $(arr);
            slider.container.empty().append(slider.slides);
          }
        }
        // INFINITE LOOP && !CAROUSEL:
        if (slider.vars.animationLoop && !carousel) {
		  slider.doMath();
		  slider.slides.css({ "width": slider.computedW, "marginRight": slider.computedM, "float": "left", "display": "block" });
          slider.cloneCount = 2;
          slider.cloneOffset = 1;
          // clear out old clones
          if (type !== "init") { slider.container.find('.clone').remove(); }
          slider.container.append(methods.uniqueID(slider.slides.first().clone().addClass('clone')).attr('aria-hidden', 'true'))
                          .prepend(methods.uniqueID(slider.slides.last().clone().addClass('clone')).attr('aria-hidden', 'true'));
        }
        slider.newSlides = $(slider.vars.selector, slider);

        sliderOffset = (reverse) ? slider.count - 1 - slider.currentSlide + slider.cloneOffset : slider.currentSlide + slider.cloneOffset;
        // VERTICAL:
        if (vertical && !carousel) {
          slider.container.height((slider.count + slider.cloneCount) * 200 + "%").css("position", "absolute").width("100%");
          setTimeout(function(){
            slider.newSlides.css({"display": "block"});
            slider.doMath();
            slider.viewport.height(slider.h);
            slider.setProps(sliderOffset * slider.h, "init");
          }, (type === "init") ? 100 : 0);
        } else {
          slider.container.width((slider.count + slider.cloneCount) * 200 + "%");
          slider.setProps(sliderOffset * slider.computedW, "init");
          setTimeout(function(){
            slider.doMath();
          if(slider.vars.rtl){
            if (slider.isFirefox) {
              slider.newSlides.css({"width": slider.computedW, "marginRight" : slider.computedM, "float": "right", "display": "block"});
            } else {
              slider.newSlides.css({"width": slider.computedW, "marginRight" : slider.computedM, "float": "left", "display": "block"});
            }
              
           }
            else{
              slider.newSlides.css({"width": slider.computedW, "marginRight" : slider.computedM, "float": "left", "display": "block"});
            }
            // SMOOTH HEIGHT:
            if (slider.vars.smoothHeight) { methods.smoothHeight(); }
          }, (type === "init") ? 100 : 0);
        }
      } else { // FADE:
        if(slider.vars.rtl){
          slider.slides.css({"width": "100%", "float": 'right', "marginLeft": "-100%", "position": "relative"});
        }
        else{
          slider.slides.css({"width": "100%", "float": 'left', "marginRight": "-100%", "position": "relative"});
        }
        if (type === "init") {
          if (!touch) {
            //slider.slides.eq(slider.currentSlide).fadeIn(slider.vars.animationSpeed, slider.vars.easing);
            if (slider.vars.fadeFirstSlide == false) {
              slider.slides.css({ "opacity": 0, "display": "block", "zIndex": 1 }).eq(slider.currentSlide).css({"zIndex": 2}).css({"opacity": 1});
            } else {
              slider.slides.css({ "opacity": 0, "display": "block", "zIndex": 1 }).eq(slider.currentSlide).css({"zIndex": 2}).animate({"opacity": 1},slider.vars.animationSpeed,slider.vars.easing);
            }
          } else {
            slider.slides.css({ "opacity": 0, "display": "block", "webkitTransition": "opacity " + slider.vars.animationSpeed / 1000 + "s ease", "zIndex": 1 }).eq(slider.currentSlide).css({ "opacity": 1, "zIndex": 2});
          }
        }
        // SMOOTH HEIGHT:
        if (slider.vars.smoothHeight) { methods.smoothHeight(); }
      }
      // !CAROUSEL:
      // CANDIDATE: active slide
      if (!carousel) {
        slider.slides.removeClass(namespace + "active-slide").eq(slider.currentSlide).addClass(namespace + "active-slide");
        slider.slides.attr('aria-hidden', 'true').eq(slider.currentSlide).removeAttr('aria-hidden');
      }

      //FlexSlider: init() Callback
      slider.vars.init(slider);
      slider.doMath();
    };

    slider.doMath = function() {
      var slide = slider.slides.first(),
          slideMargin = slider.vars.itemMargin,
          minItems = slider.vars.minItems,
          maxItems = slider.vars.maxItems;

      slider.w = (slider.viewport===undefined) ? slider.width() : slider.viewport.width();
      if (slider.isFirefox) { slider.w = slider.width(); }
      slider.h = slide.height();
      slider.boxPadding = slide.outerWidth() - slide.width();

      // CAROUSEL:
      if (carousel) {
        slider.itemT = slider.vars.itemWidth + slideMargin;
        slider.itemM = slideMargin;
        slider.minW = (minItems) ? minItems * slider.itemT : slider.w;
        slider.maxW = (maxItems) ? (maxItems * slider.itemT) - slideMargin : slider.w;
        slider.itemW = (slider.minW > slider.w) ? (slider.w - (slideMargin * (minItems - 1)))/minItems :
                       (slider.maxW < slider.w) ? (slider.w - (slideMargin * (maxItems - 1)))/maxItems :
                       (slider.vars.itemWidth > slider.w) ? slider.w : slider.vars.itemWidth;
        slider.itemWPlusMargin = slider.itemW + slider.itemM;
        slider.visible = Math.floor(slider.w / slider.itemWPlusMargin);
        slider.visible = slider.visible > 0 ? slider.visible : 1;

        slider.move = (slider.vars.move > 0 && slider.vars.move < slider.visible ) ? slider.vars.move : slider.visible;
        slider.pagingCount = Math.ceil(((slider.count - slider.visible)/slider.move) + 1);
        slider.last =  slider.pagingCount - 1;
        slider.limit = (slider.pagingCount === 1) ? 0 :
                       (slider.vars.itemWidth > slider.w) ? (slider.itemW * (slider.count - 1)) + (slideMargin * (slider.count - 1)) : ((slider.itemW + slideMargin) * slider.count) - slider.w - slideMargin;
      } else {
        slider.itemW = slider.w;
        slider.itemM = slideMargin;
        slider.pagingCount = slider.count;
        slider.last = slider.count - 1;
      }
      slider.computedW = slider.itemW - slider.boxPadding;
      slider.computedM = slider.itemM;
    };

    slider.update = function(pos, action) {
      slider.doMath();

      // update currentSlide and slider.animatingTo if necessary
      if (!carousel) {
        if (pos < slider.currentSlide) {
          slider.currentSlide += 1;
        } else if (pos <= slider.currentSlide && pos !== 0) {
          slider.currentSlide -= 1;
        }
        slider.animatingTo = slider.currentSlide;
      }

      // update controlNav
      if (slider.vars.controlNav && !slider.manualControls) {
        if ((action === "add" && !carousel) || slider.pagingCount > slider.controlNav.length) {
          methods.controlNav.update("add");
        } else if ((action === "remove" && !carousel) || slider.pagingCount < slider.controlNav.length) {
          if (carousel && slider.currentSlide > slider.last) {
            slider.currentSlide -= 1;
            slider.animatingTo -= 1;
          }
          methods.controlNav.update("remove", slider.last);
        }
      }
      // update directionNav
      if (slider.vars.directionNav) { methods.directionNav.update(); }

    };

    slider.addSlide = function(obj, pos) {
      var $obj = $(obj);

      slider.count += 1;
      slider.last = slider.count - 1;

      // append new slide
      if (vertical && reverse) {
        (pos !== undefined) ? slider.slides.eq(slider.count - pos).after($obj) : slider.container.prepend($obj);
      } else {
        (pos !== undefined) ? slider.slides.eq(pos).before($obj) : slider.container.append($obj);
      }

      // update currentSlide, animatingTo, controlNav, and directionNav
      slider.update(pos, "add");

      // update slider.slides
      slider.slides = $(slider.vars.selector + ':not(.clone)', slider);
      // re-setup the slider to accomdate new slide
      slider.setup();

      //FlexSlider: added() Callback
      slider.vars.added(slider);
    };
    slider.removeSlide = function(obj) {
      var pos = (isNaN(obj)) ? slider.slides.index($(obj)) : obj;

      // update count
      slider.count -= 1;
      slider.last = slider.count - 1;

      // remove slide
      if (isNaN(obj)) {
        $(obj, slider.slides).remove();
      } else {
        (vertical && reverse) ? slider.slides.eq(slider.last).remove() : slider.slides.eq(obj).remove();
      }

      // update currentSlide, animatingTo, controlNav, and directionNav
      slider.doMath();
      slider.update(pos, "remove");

      // update slider.slides
      slider.slides = $(slider.vars.selector + ':not(.clone)', slider);
      // re-setup the slider to accomdate new slide
      slider.setup();

      // FlexSlider: removed() Callback
      slider.vars.removed(slider);
    };

    //FlexSlider: Initialize
    methods.init();
  };

  // Ensure the slider isn't focussed if the window loses focus.
  $( window ).blur( function ( e ) {
    focused = false;
  }).focus( function ( e ) {
    focused = true;
  });

  //FlexSlider: Default Settings
  $.flexslider.defaults = {
    namespace: "flex-",             //{NEW} String: Prefix string attached to the class of every element generated by the plugin
    selector: ".slides > li",       //{NEW} Selector: Must match a simple pattern. '{container} > {slide}' -- Ignore pattern at your own peril
    animation: "fade",              //String: Select your animation type, "fade" or "slide"
    easing: "swing",                //{NEW} String: Determines the easing method used in jQuery transitions. jQuery easing plugin is supported!
    direction: "horizontal",        //String: Select the sliding direction, "horizontal" or "vertical"
    reverse: false,                 //{NEW} Boolean: Reverse the animation direction
    animationLoop: true,            //Boolean: Should the animation loop? If false, directionNav will received "disable" classes at either end
    smoothHeight: false,            //{NEW} Boolean: Allow height of the slider to animate smoothly in horizontal mode
    startAt: 0,                     //Integer: The slide that the slider should start on. Array notation (0 = first slide)
    slideshow: true,                //Boolean: Animate slider automatically
    slideshowSpeed: 7000,           //Integer: Set the speed of the slideshow cycling, in milliseconds
    animationSpeed: 600,            //Integer: Set the speed of animations, in milliseconds
    initDelay: 0,                   //{NEW} Integer: Set an initialization delay, in milliseconds
    randomize: false,               //Boolean: Randomize slide order
    fadeFirstSlide: true,           //Boolean: Fade in the first slide when animation type is "fade"
    thumbCaptions: false,           //Boolean: Whether or not to put captions on thumbnails when using the "thumbnails" controlNav.

    // Usability features
    pauseOnAction: true,            //Boolean: Pause the slideshow when interacting with control elements, highly recommended.
    pauseOnHover: false,            //Boolean: Pause the slideshow when hovering over slider, then resume when no longer hovering
    pauseInvisible: true,       //{NEW} Boolean: Pause the slideshow when tab is invisible, resume when visible. Provides better UX, lower CPU usage.
    useCSS: true,                   //{NEW} Boolean: Slider will use CSS3 transitions if available
    touch: true,                    //{NEW} Boolean: Allow touch swipe navigation of the slider on touch-enabled devices
    video: false,                   //{NEW} Boolean: If using video in the slider, will prevent CSS3 3D Transforms to avoid graphical glitches

    // Primary Controls
    controlNav: true,               //Boolean: Create navigation for paging control of each slide? Note: Leave true for manualControls usage
    directionNav: true,             //Boolean: Create navigation for previous/next navigation? (true/false)
    prevText: "Previous",           //String: Set the text for the "previous" directionNav item
    nextText: "Next",               //String: Set the text for the "next" directionNav item

    // Secondary Navigation
    keyboard: true,                 //Boolean: Allow slider navigating via keyboard left/right keys
    multipleKeyboard: false,        //{NEW} Boolean: Allow keyboard navigation to affect multiple sliders. Default behavior cuts out keyboard navigation with more than one slider present.
    mousewheel: false,              //{UPDATED} Boolean: Requires jquery.mousewheel.js (https://github.com/brandonaaron/jquery-mousewheel) - Allows slider navigating via mousewheel
    pausePlay: false,               //Boolean: Create pause/play dynamic element
    pauseText: "Pause",             //String: Set the text for the "pause" pausePlay item
    playText: "Play",               //String: Set the text for the "play" pausePlay item

    // Special properties
    controlsContainer: "",          //{UPDATED} jQuery Object/Selector: Declare which container the navigation elements should be appended too. Default container is the FlexSlider element. Example use would be $(".flexslider-container"). Property is ignored if given element is not found.
    manualControls: "",             //{UPDATED} jQuery Object/Selector: Declare custom control navigation. Examples would be $(".flex-control-nav li") or "#tabs-nav li img", etc. The number of elements in your controlNav should match the number of slides/tabs.
    customDirectionNav: "",         //{NEW} jQuery Object/Selector: Custom prev / next button. Must be two jQuery elements. In order to make the events work they have to have the classes "prev" and "next" (plus namespace)
    sync: "",                       //{NEW} Selector: Mirror the actions performed on this slider with another slider. Use with care.
    asNavFor: "",                   //{NEW} Selector: Internal property exposed for turning the slider into a thumbnail navigation for another slider

    // Carousel Options
    itemWidth: 0,                   //{NEW} Integer: Box-model width of individual carousel items, including horizontal borders and padding.
    itemMargin: 0,                  //{NEW} Integer: Margin between carousel items.
    minItems: 1,                    //{NEW} Integer: Minimum number of carousel items that should be visible. Items will resize fluidly when below this.
    maxItems: 0,                    //{NEW} Integer: Maxmimum number of carousel items that should be visible. Items will resize fluidly when above this limit.
    move: 0,                        //{NEW} Integer: Number of carousel items that should move on animation. If 0, slider will move all visible items.
    allowOneSlide: true,           //{NEW} Boolean: Whether or not to allow a slider comprised of a single slide

    // Browser Specific
    isFirefox: false,             // {NEW} Boolean: Set to true when Firefox is the browser used.

    // Callback API
    start: function(){},            //Callback: function(slider) - Fires when the slider loads the first slide
    before: function(){},           //Callback: function(slider) - Fires asynchronously with each slider animation
    after: function(){},            //Callback: function(slider) - Fires after each slider animation completes
    end: function(){},              //Callback: function(slider) - Fires when the slider reaches the last slide (asynchronous)
    added: function(){},            //{NEW} Callback: function(slider) - Fires after a slide is added
    removed: function(){},           //{NEW} Callback: function(slider) - Fires after a slide is removed
    init: function() {},             //{NEW} Callback: function(slider) - Fires after the slider is initially setup
  rtl: false             //{NEW} Boolean: Whether or not to enable RTL mode
  };

  //FlexSlider: Plugin Function
  $.fn.flexslider = function(options) {
    if (options === undefined) { options = {}; }

    if (typeof options === "object") {
      return this.each(function() {
        var $this = $(this),
            selector = (options.selector) ? options.selector : ".slides > li",
            $slides = $this.find(selector);

      if ( ( $slides.length === 1 && options.allowOneSlide === false ) || $slides.length === 0 ) {
          $slides.fadeIn(400);
          if (options.start) { options.start($this); }
        } else if ($this.data('flexslider') === undefined) {
          new $.flexslider(this, options);
        }
      });
    } else {
      // Helper strings to quickly perform functions on the slider
      var $slider = $(this).data('flexslider');
      switch (options) {
        case "play": $slider.play(); break;
        case "pause": $slider.pause(); break;
        case "stop": $slider.stop(); break;
        case "next": $slider.flexAnimate($slider.getTarget("next"), true); break;
        case "prev":
        case "previous": $slider.flexAnimate($slider.getTarget("prev"), true); break;
        default: if (typeof options === "number") { $slider.flexAnimate(options, true); }
      }
    }
  };
})(jQuery);
assets/sliders/flexslider/fonts/flexslider-icon.ttf000064400000003544151213255530016623 0ustar00
�PFFTMf�HGDEF6( OS/2>�ڨXVcmap�,��Vgasp�� glyfD4�V@�head�n�?�6hheaj��$hmtx	7�$locaJ�,maxpM#8 name�2����post����d����_<���G���G���������(��@�		 @Y�#9>#9�sPfEd@�����(�@��� 
 `��
P4������$Lf���
��s'&4?62"��		�				zz				�		�				zy
		��s%"/&54?'&54?62	�				zz		�	�
�		


	zy


	

�	��`a%&546Z��L��p����`+"&546;2+"&546;2�
�

�
�
�

�
P��

`

��

`



�%#"/&54?6327632�	�

�




	zz	

	�
	�

�
		zz		
����!��@��@� :+��7		0	V?	�	�	flexslider-iconflexslider-iconiconiconFontForge 2.0 : flexslider-icon : 18-2-2013FontForge 2.0 : flexslider-icon : 18-2-2013flexslider-iconflexslider-iconVersion 1.0Version 1.0flexslider-iconflexslider-icon	uniF001uniF002uniF003uniF004uniF005uniF000���=���G���G��assets/sliders/flexslider/fonts/flexslider-icon.svg000064400000004436151213255530016626 0ustar00<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
This is a custom SVG font generated by IcoMoon.
<iconset grid="14"></iconset>
</metadata>
<defs>
<font id="flexslider-icon" horiz-adv-x="448" >
<font-face units-per-em="448" ascent="384" descent="-64" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode="&#xf001;" d="M 185.50-9.25l-163.00,162.75q-9.25,9.25 -9.25,22.625t 9.25,22.625l 163.00,162.75q 9.25,9.25 22.625,9.25t 22.625-9.25l 18.75-18.75q 9.25-9.25 9.25-22.625t-9.25-22.625l-121.50-121.50l 121.50-121.25q 9.25-9.50 9.25-22.75t-9.25-22.50l-18.75-18.75q-9.25-9.25 -22.625-9.25t-22.625,9.25z" horiz-adv-x="288"  />
<glyph unicode="&#xf002;" d="M 274.75,176.00q0.00-13.00 -9.25-22.75l-163.00-162.75q-9.25-9.25 -22.50-9.25t-22.50,9.25l-19.00,18.75q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 121.50,121.50l-121.50,121.25q-9.25,9.75 -9.25,22.75q0.00,13.25 9.25,22.50l 19.00,18.75q 9.00,9.50 22.50,9.50t 22.50-9.50l 163.00-162.75q 9.25-9.25 9.25-22.50z" horiz-adv-x="288"  />
<glyph unicode="&#xf003;" d="M 346.00,152.25l-332.00-184.50q-5.75-3.25 -9.875-0.75t-4.125,9.00l0.00,368.00 q0.00,6.50 4.125,9.00t 9.875-0.75l 332.00-184.50q 5.75-3.25 5.75-7.75t-5.75-7.75z" horiz-adv-x="352"  />
<glyph unicode="&#xf004;" d="M 384.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25zM 160.00,336.00l0.00-352.00 q0.00-6.50 -4.75-11.25t-11.25-4.75l-128.00,0.00 q-6.50,0.00 -11.25,4.75t-4.75,11.25l0.00,352.00 q0.00,6.50 4.75,11.25t 11.25,4.75l 128.00,0.00 q 6.50,0.00 11.25-4.75t 4.75-11.25z" horiz-adv-x="384"  />
<glyph unicode="&#xf005;" d="M 402.75,208.00q0.00-13.25 -9.25-22.50l-162.75-162.75q-9.50-9.50 -22.75-9.50q-13.50,0.00 -22.50,9.50l-162.75,162.75q-9.50,9.00 -9.50,22.50q0.00,13.25 9.50,22.75l 18.50,18.75q 9.75,9.25 22.75,9.25q 13.25,0.00 22.50-9.25l 121.50-121.50l 121.50,121.50q 9.25,9.25 22.50,9.25q 13.00,0.00 22.75-9.25l 18.75-18.75q 9.25-9.75 9.25-22.75z" horiz-adv-x="416"  />
<glyph unicode="&#x20;" horiz-adv-x="224" />
<glyph class="hidden" unicode="&#xf000;" d="M0,384L 448 -64L0 -64 z" horiz-adv-x="0" />
</font></defs></svg>assets/sliders/flexslider/fonts/flexslider-icon.woff000064400000002364151213255530016766 0ustar00wOFF�
dFFTM0f�GDEFL 6OS/2lGV>�ڨcmap�LV�,�gasp��glyf&�D4�Vhead016�n�?hhead$j��hmtx�!$	7loca�J�maxp� M#name����2��post�3d���x�c```d�3��΃���hL�<x�c`d``�b	`b`d`f��,`�=x�c`d�d�������h��`��3�13001�23����������+c��

� 9m�
�x�݌�
� /m��1���`�@?��%���p��b�����T1��=����l��h�$5������U,7���O���x�]��NA��Xw�,osAC�x&XX�XX[��Xyս�������7��g��b��g��2��n>Q�#9�d���1��/���`^p�#�,c��\�l�d:bt$�H8	�i<G:� h�"R�ݖ��^�5e��,��HCx�����'��J���$i�w՛�Z�F=/�J�A�����hGf��1����v��0y�a���FnT�L����m��-f^�x�ɒ�5:��x�rr!�.�ƘsalS��X[k"^Y�B7}���	9K���m���ȫ��Q�Bxx�c`d``�;?܌���x(�p�}�B���� ���	$
��
[x�c`d``l��A���? 	A��4x�c<�Sx�X�1�n�� )B�S$Lf���x�c`d``�dP``b��s�zqx���1n1E�aAAD�K:�>ڕ�A4�8�^Zi�J^
NB��p.��;J�&’�7�?_�g.�ǰ�*�(X+�y�K��Uy��̕�,̇(M1��2O�y�NyLͧr!�o�	/ܔ�,�+{Z"gzyv‰RhK��m<�m���l��4~�r��S~�*	be)������uR��mw<m�t�6Tή���2��y?�B��(�>祎�o��W�a�(^OQx�c`b�8������������������4/���JAic(m�M��M
5assets/sliders/flexslider/fonts/flexslider-icon.eot000064400000004042151213255540016610 0ustar00"d�LP���flexslider-iconiconVersion 1.0flexslider-icon
�PFFTMf�HGDEF6( OS/2>�ڨXVcmap�,��Vgasp�� glyfD4�V@�head�n�?�6hheaj��$hmtx	7�$locaJ�,maxpM#8 name�2����post����d����_<���G���G���������(��@�		 @Y�#9>#9�sPfEd@�����(�@��� 
 `��
P4������$Lf���
��s'&4?62"��		�				zz				�		�				zy
		��s%"/&54?'&54?62	�				zz		�	�
�		


	zy


	

�	��`a%&546Z��L��p����`+"&546;2+"&546;2�
�

�
�
�

�
P��

`

��

`



�%#"/&54?6327632�	�

�




	zz	

	�
	�

�
		zz		
����!��@��@� :+��7		0	V?	�	�	flexslider-iconflexslider-iconiconiconFontForge 2.0 : flexslider-icon : 18-2-2013FontForge 2.0 : flexslider-icon : 18-2-2013flexslider-iconflexslider-iconVersion 1.0Version 1.0flexslider-iconflexslider-icon	uniF001uniF002uniF003uniF004uniF005uniF000���=���G���G��assets/sliders/flexslider/jquery.flexslider.min.js000064400000056657151213255540016501 0ustar00!function(e){var t=!0;e.flexslider=function(a,n){var i=e(a);void 0===n.rtl&&"rtl"==e("html").attr("dir")&&(n.rtl=!0),i.vars=e.extend({},e.flexslider.defaults,n);var s,r=i.vars.namespace,o=window.navigator&&window.navigator.msPointerEnabled&&window.MSGesture,l=("ontouchstart"in window||o||window.DocumentTouch&&document instanceof DocumentTouch)&&i.vars.touch,d="click touchend MSPointerUp",c="",u="vertical"===i.vars.direction,v=i.vars.reverse,p=i.vars.itemWidth>0,m="fade"===i.vars.animation,f=""!==i.vars.asNavFor,h={};e.data(a,"flexslider",i),h={init:function(){i.animating=!1,i.currentSlide=parseInt(i.vars.startAt?i.vars.startAt:0,10),isNaN(i.currentSlide)&&(i.currentSlide=0),i.animatingTo=i.currentSlide,i.atEnd=0===i.currentSlide||i.currentSlide===i.last,i.containerSelector=i.vars.selector.substr(0,i.vars.selector.search(" ")),i.slides=e(i.vars.selector,i),i.container=e(i.containerSelector,i),i.count=i.slides.length,i.syncExists=e(i.vars.sync).length>0,"slide"===i.vars.animation&&(i.vars.animation="swing"),i.prop=u?"top":i.vars.rtl?"marginRight":"marginLeft",i.args={},i.manualPause=!1,i.stopped=!1,i.started=!1,i.startTimeout=null,i.transitions=!i.vars.video&&!m&&i.vars.useCSS&&function(){var e=document.createElement("div"),t=["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"];for(var a in t)if(void 0!==e.style[t[a]])return i.pfx=t[a].replace("Perspective","").toLowerCase(),i.prop="-"+i.pfx+"-transform",!0;return!1}(),i.isFirefox=navigator.userAgent.toLowerCase().indexOf("firefox")>-1,i.ensureAnimationEnd="",""!==i.vars.controlsContainer&&(i.controlsContainer=e(i.vars.controlsContainer).length>0&&e(i.vars.controlsContainer)),""!==i.vars.manualControls&&(i.manualControls=e(i.vars.manualControls).length>0&&e(i.vars.manualControls)),""!==i.vars.customDirectionNav&&(i.customDirectionNav=2===e(i.vars.customDirectionNav).length&&e(i.vars.customDirectionNav)),i.vars.randomize&&(i.slides.sort((function(){return Math.round(Math.random())-.5})),i.container.empty().append(i.slides)),i.doMath(),i.setup("init"),i.vars.controlNav&&h.controlNav.setup(),i.vars.directionNav&&h.directionNav.setup(),i.vars.keyboard&&(1===e(i.containerSelector).length||i.vars.multipleKeyboard)&&e(document).bind("keyup",(function(e){var t=e.keyCode;if(!i.animating&&(39===t||37===t)){var a=i.vars.rtl?37===t?i.getTarget("next"):39===t&&i.getTarget("prev"):39===t?i.getTarget("next"):37===t&&i.getTarget("prev");i.flexAnimate(a,i.vars.pauseOnAction)}})),i.vars.mousewheel&&i.bind("mousewheel",(function(e,t,a,n){e.preventDefault();var s=t<0?i.getTarget("next"):i.getTarget("prev");i.flexAnimate(s,i.vars.pauseOnAction)})),i.vars.pausePlay&&h.pausePlay.setup(),i.vars.slideshow&&i.vars.pauseInvisible&&h.pauseInvisible.init(),i.vars.slideshow&&(i.vars.pauseOnHover&&i.hover((function(){i.manualPlay||i.manualPause||i.pause()}),(function(){i.manualPause||i.manualPlay||i.stopped||i.play()})),i.vars.pauseInvisible&&h.pauseInvisible.isHidden()||(i.vars.initDelay>0?i.startTimeout=setTimeout(i.play,i.vars.initDelay):i.play())),f&&h.asNav.setup(),l&&i.vars.touch&&h.touch(),(!m||m&&i.vars.smoothHeight)&&e(window).on("resize orientationchange focus",h.resize),i.find("img").attr("draggable","false"),setTimeout((function(){i.vars.start(i)}),200)},asNav:{setup:function(){i.asNav=!0,i.animatingTo=Math.floor(i.currentSlide/i.move),i.currentItem=i.currentSlide,i.slides.removeClass(r+"active-slide").eq(i.currentItem).addClass(r+"active-slide"),o?(a._slider=i,i.slides.each((function(){var t=this;t._gesture=new MSGesture,t._gesture.target=t,t.addEventListener("MSPointerDown",(function(e){e.preventDefault(),e.currentTarget._gesture&&e.currentTarget._gesture.addPointer(e.pointerId)}),{passive:!0}),t.addEventListener("MSGestureTap",(function(t){t.preventDefault();var a=e(this),n=a.index();e(i.vars.asNavFor).data("flexslider").animating||a.hasClass("active")||(i.direction=i.currentItem<n?"next":"prev",i.flexAnimate(n,i.vars.pauseOnAction,!1,!0,!0))}),{passive:!0})}))):i.slides.on(d,(function(t){t.preventDefault();var a=e(this),n=a.index();(i.vars.rtl?-1*(a.offset().right-e(i).scrollLeft()):a.offset().left-e(i).scrollLeft())<=0&&a.hasClass(r+"active-slide")?i.flexAnimate(i.getTarget("prev"),!0):e(i.vars.asNavFor).data("flexslider").animating||a.hasClass(r+"active-slide")||(i.direction=i.currentItem<n?"next":"prev",i.flexAnimate(n,i.vars.pauseOnAction,!1,!0,!0))}))}},controlNav:{setup:function(){i.manualControls?h.controlNav.setupManual():h.controlNav.setupPaging()},setupPaging:function(){var t,a,n="thumbnails"===i.vars.controlNav?"control-thumbs":"control-paging",s=1;if(i.controlNavScaffold=e('<ol class="'+r+"control-nav "+r+n+'" aria-label="Slide controls"></ol>'),i.pagingCount>1)for(var o=0;o<i.pagingCount;o++){void 0===(a=i.slides.eq(o)).attr("data-thumb-alt")&&a.attr("data-thumb-alt","");var l=""!==a.attr("data-thumb-alt")?l=' alt="'+a.attr("data-thumb-alt")+'"':"";if(t="thumbnails"===i.vars.controlNav?'<img src="'+a.attr("data-thumb")+'"'+l+"/>":'<a href="#">'+s+"</a>","thumbnails"===i.vars.controlNav&&!0===i.vars.thumbCaptions){var u=a.attr("data-thumbcaption");""!==u&&void 0!==u&&(t+='<span class="'+r+'caption">'+u+"</span>")}i.controlNavScaffold.append('<li aria-label="Show slide '+s+" of "+i.pagingCount+'">'+t+"</li>"),s++}i.controlsContainer?e(i.controlsContainer).append(i.controlNavScaffold):i.append(i.controlNavScaffold),h.controlNav.set(),h.controlNav.active(),i.controlNavScaffold.delegate("a, img",d,(function(t){if(t.preventDefault(),""===c||c===t.type){var a=e(this),n=i.controlNav.index(a);a.hasClass(r+"active")||(i.direction=n>i.currentSlide?"next":"prev",i.flexAnimate(n,i.vars.pauseOnAction))}""===c&&(c=t.type),h.setToClearWatchedEvent()}))},setupManual:function(){i.controlNav=i.manualControls,h.controlNav.active(),i.controlNav.bind(d,(function(t){if(t.preventDefault(),""===c||c===t.type){var a=e(this),n=i.controlNav.index(a);a.hasClass(r+"active")||(n>i.currentSlide?i.direction="next":i.direction="prev",i.flexAnimate(n,i.vars.pauseOnAction))}""===c&&(c=t.type),h.setToClearWatchedEvent()}))},set:function(){var t="thumbnails"===i.vars.controlNav?"img":"a";i.controlNav=e("."+r+"control-nav li "+t,i.controlsContainer?i.controlsContainer:i)},active:function(){i.controlNav.removeClass(r+"active").eq(i.animatingTo).addClass(r+"active")},update:function(t,a){i.pagingCount>1&&"add"===t?i.controlNavScaffold.append(e('<li><a href="#"></a></li>')):1===i.pagingCount?i.controlNavScaffold.find("li").remove():i.controlNav.eq(a).closest("li").remove(),i.controlNavScaffold.find("li").each((function(t,a){e(a).find("a").text(t+1)})),h.controlNav.set(),i.pagingCount>1&&i.pagingCount!==i.controlNav.length?i.update(a,t):h.controlNav.active()}},directionNav:{setup:function(){var t=e('<ul class="'+r+'direction-nav"><li class="'+r+'nav-prev"><a class="'+r+'prev" href="#">'+i.vars.prevText+'</a></li><li class="'+r+'nav-next"><a class="'+r+'next" href="#">'+i.vars.nextText+"</a></li></ul>");i.customDirectionNav?i.directionNav=i.customDirectionNav:i.controlsContainer?(e(i.controlsContainer).append(t),i.directionNav=e("."+r+"direction-nav li a",i.controlsContainer)):(i.append(t),i.directionNav=e("."+r+"direction-nav li a",i)),h.directionNav.update(),i.directionNav.bind(d,(function(t){var a;t.preventDefault(),""!==c&&c!==t.type||(a=e(this).hasClass(r+"next")?i.getTarget("next"):i.getTarget("prev"),i.flexAnimate(a,i.vars.pauseOnAction)),""===c&&(c=t.type),h.setToClearWatchedEvent()}))},update:function(){var e=r+"disabled";1===i.pagingCount?i.directionNav.addClass(e).attr("tabindex","-1"):i.vars.animationLoop?i.directionNav.removeClass(e).removeAttr("tabindex"):0===i.animatingTo?i.directionNav.removeClass(e).filter("."+r+"prev").addClass(e).attr("tabindex","-1"):i.animatingTo===i.last?i.directionNav.removeClass(e).filter("."+r+"next").addClass(e).attr("tabindex","-1"):i.directionNav.removeClass(e).removeAttr("tabindex")}},pausePlay:{setup:function(){var t=e('<div aria-live="polite" class="'+r+'pauseplay"><a href="#"></a></div>');i.controlsContainer?(i.controlsContainer.append(t),i.pausePlay=e("."+r+"pauseplay a",i.controlsContainer)):(i.append(t),i.pausePlay=e("."+r+"pauseplay a",i)),h.pausePlay.update(i.vars.slideshow?r+"pause":r+"play"),i.pausePlay.bind(d,(function(t){t.preventDefault(),""!==c&&c!==t.type||(e(this).hasClass(r+"pause")?(i.manualPause=!0,i.manualPlay=!1,i.pause()):(i.manualPause=!1,i.manualPlay=!0,i.play())),""===c&&(c=t.type),h.setToClearWatchedEvent()}))},update:function(e){"play"===e?i.pausePlay.removeClass(r+"pause").addClass(r+"play").html(i.vars.playText):i.pausePlay.removeClass(r+"play").addClass(r+"pause").html(i.vars.pauseText)}},touch:function(){var e,t,n,s,r,l,d,c,f,h=!1,g=0,S=0,x=0;if(o){a.style.msTouchAction="none",a._gesture=new MSGesture,a._gesture.target=a,a.addEventListener("MSPointerDown",(function(e){e.stopPropagation(),i.animating?e.preventDefault():(i.pause(),a._gesture.addPointer(e.pointerId),x=0,s=u?i.h:i.w,l=Number(new Date),n=p&&v&&i.animatingTo===i.last?0:p&&v?i.limit-(i.itemW+i.vars.itemMargin)*i.move*i.animatingTo:p&&i.currentSlide===i.last?i.limit:p?(i.itemW+i.vars.itemMargin)*i.move*i.currentSlide:v?(i.last-i.currentSlide+i.cloneOffset)*s:(i.currentSlide+i.cloneOffset)*s)}),{passive:!0}),a._slider=i,a.addEventListener("MSGestureChange",(function(e){e.stopPropagation();var t=e.target._slider;if(!t)return;var i=-e.translationX,o=-e.translationY;if(x+=u?o:i,r=(t.vars.rtl?-1:1)*x,h=u?Math.abs(x)<Math.abs(-i):Math.abs(x)<Math.abs(-o),e.detail===e.MSGESTURE_FLAG_INERTIA)return void setImmediate((function(){a._gesture.stop()}));(!h||Number(new Date)-l>500)&&(e.preventDefault(),!m&&t.transitions&&(t.vars.animationLoop||(r=x/(0===t.currentSlide&&x<0||t.currentSlide===t.last&&x>0?Math.abs(x)/s+2:1)),t.setProps(n+r,"setTouch")))}),{passive:!0}),a.addEventListener("MSGestureEnd",(function(a){a.stopPropagation();var i=a.target._slider;if(!i)return;if(i.animatingTo===i.currentSlide&&!h&&null!==r){var o=v?-r:r,d=o>0?i.getTarget("next"):i.getTarget("prev");i.canAdvance(d)&&(Number(new Date)-l<550&&Math.abs(o)>50||Math.abs(o)>s/2)?i.flexAnimate(d,i.vars.pauseOnAction):m||i.flexAnimate(i.currentSlide,i.vars.pauseOnAction,!0)}r&&h?i.vars.slideshow&&i.play():r?!i.vars.pauseOnAction&&i.play()||(i.vars.slideshow=!1):i.vars.slideshow&&!i.vars.pauseOnAction&&i.play()||(i.vars.slideshow=!1);e=null,t=null,r=null,n=null,x=0}),{passive:!0})}else d=function(r){i.animating?r.preventDefault():(window.navigator.msPointerEnabled||1===r.touches.length)&&(i.pause(),s=u?i.h:i.w,l=Number(new Date),g=r.touches[0].pageX,S=r.touches[0].pageY,n=p&&v&&i.animatingTo===i.last?0:p&&v?i.limit-(i.itemW+i.vars.itemMargin)*i.move*i.animatingTo:p&&i.currentSlide===i.last?i.limit:p?(i.itemW+i.vars.itemMargin)*i.move*i.currentSlide:v?(i.last-i.currentSlide+i.cloneOffset)*s:(i.currentSlide+i.cloneOffset)*s,e=u?S:g,t=u?g:S,a.addEventListener("touchmove",c,{passive:!0}),a.addEventListener("touchend",f,{passive:!0}))},c=function(a){g=a.touches[0].pageX,S=a.touches[0].pageY,r=u?e-S:(i.vars.rtl?-1:1)*(e-g);(!(h=u?Math.abs(r)<Math.abs(g-t):Math.abs(r)<Math.abs(S-t))||Number(new Date)-l>500)&&(a.preventDefault(),!m&&i.transitions&&(i.vars.animationLoop||(r/=0===i.currentSlide&&r<0||i.currentSlide===i.last&&r>0?Math.abs(r)/s+2:1),i.setProps(n+r,"setTouch")))},f=function(o){if(a.removeEventListener("touchmove",c,!1),i.animatingTo===i.currentSlide&&!h&&null!==r){var d=v?-r:r,u=d>0?i.getTarget("next"):i.getTarget("prev");i.canAdvance(u)&&(Number(new Date)-l<550&&Math.abs(d)>50||Math.abs(d)>s/2)?i.flexAnimate(u,i.vars.pauseOnAction):m||i.flexAnimate(i.currentSlide,i.vars.pauseOnAction,!0)}a.removeEventListener("touchend",f,!1),r&&h?i.vars.slideshow&&i.play():r?!i.vars.pauseOnAction&&i.play()||(i.vars.slideshow=!1):i.vars.slideshow&&!i.vars.pauseOnAction&&i.play()||(i.vars.slideshow=!1),e=null,t=null,r=null,n=null},a.addEventListener("touchstart",d,{passive:!0})},resize:function(){!i.animating&&i.is(":visible")&&(p||i.doMath(),m?h.smoothHeight():p?(i.slides.width(i.computedW),i.update(i.pagingCount),i.setProps()):u?(i.viewport.height(i.h),i.setProps(i.h,"setTotal")):(i.vars.smoothHeight&&h.smoothHeight(),i.newSlides.width(i.computedW),i.setProps(i.computedW,"setTotal")))},smoothHeight:function(e){if(!u||m){var t=m?i:i.viewport;e?t.animate({height:i.slides.eq(i.animatingTo).innerHeight()},e):t.innerHeight(i.slides.eq(i.animatingTo).innerHeight())}},sync:function(t){var a=e(i.vars.sync).data("flexslider"),n=i.animatingTo;switch(t){case"animate":a.flexAnimate(n,i.vars.pauseOnAction,!1,!0);break;case"play":a.playing||a.asNav||a.play();break;case"pause":a.pause()}},uniqueID:function(t){return t.filter("[id]").add(t.find("[id]")).each((function(){var t=e(this);t.attr("id",t.attr("id")+"_clone")})),t},pauseInvisible:{visProp:null,init:function(){var e=h.pauseInvisible.getHiddenProp();if(e){var t=e.replace(/[H|h]idden/,"")+"visibilitychange";document.addEventListener(t,(function(){h.pauseInvisible.isHidden()?i.startTimeout?clearTimeout(i.startTimeout):i.pause():i.started?i.play():i.vars.initDelay>0?setTimeout(i.play,i.vars.initDelay):i.play()}))}},isHidden:function(){var e=h.pauseInvisible.getHiddenProp();return!!e&&document[e]},getHiddenProp:function(){var e=["webkit","moz","ms","o"];if("hidden"in document)return"hidden";for(var t=0;t<e.length;t++)if(e[t]+"Hidden"in document)return e[t]+"Hidden";return null}},setToClearWatchedEvent:function(){clearTimeout(s),s=setTimeout((function(){c=""}),3e3)}},i.flexAnimate=function(t,a,n,s,o){if(i.vars.animationLoop||t===i.currentSlide||(i.direction=t>i.currentSlide?"next":"prev"),f&&1===i.pagingCount&&(i.direction=i.currentItem<t?"next":"prev"),!i.animating&&(i.canAdvance(t,o)||n)&&i.is(":visible")){if(f&&s){var d=e(i.vars.asNavFor).data("flexslider");if(i.atEnd=0===t||t===i.count-1,d.flexAnimate(t,!0,!1,!0,o),i.direction=i.currentItem<t?"next":"prev",d.direction=i.direction,Math.ceil((t+1)/i.visible)-1===i.currentSlide||0===t)return i.currentItem=t,i.slides.removeClass(r+"active-slide").eq(t).addClass(r+"active-slide"),i.slides.attr("aria-hidden","true").eq(t).removeAttr("aria-hidden"),!1;i.currentItem=t,i.slides.removeClass(r+"active-slide").eq(t).addClass(r+"active-slide"),i.slides.attr("aria-hidden","true").eq(t).removeAttr("aria-hidden"),t=Math.floor(t/i.visible)}if(i.animating=!0,i.animatingTo=t,a&&i.pause(),i.vars.before(i),i.syncExists&&!o&&h.sync("animate"),i.vars.controlNav&&h.controlNav.active(),p||(i.slides.removeClass(r+"active-slide").eq(t).addClass(r+"active-slide"),i.slides.attr("aria-hidden","true").eq(t).removeAttr("aria-hidden")),i.atEnd=0===t||t===i.last,i.vars.directionNav&&h.directionNav.update(),t===i.last&&(i.vars.end(i),i.vars.animationLoop||i.pause()),m)l?(i.slides.eq(i.currentSlide).css({opacity:0,zIndex:1}),i.slides.eq(t).css({opacity:1,zIndex:2}),i.wrapup(x)):(i.slides.eq(i.currentSlide).css({zIndex:1}).animate({opacity:0},i.vars.animationSpeed,i.vars.easing),i.slides.eq(t).css({zIndex:2}).animate({opacity:1},i.vars.animationSpeed,i.vars.easing,i.wrapup));else{var c,g,S,x=u?i.slides.filter(":first").height():i.computedW;p?(c=i.vars.itemMargin,g=(S=(i.itemW+c)*i.move*i.animatingTo)>i.limit&&1!==i.visible?i.limit:S):g=0===i.currentSlide&&t===i.count-1&&i.vars.animationLoop&&"next"!==i.direction?v?(i.count+i.cloneOffset)*x:0:i.currentSlide===i.last&&0===t&&i.vars.animationLoop&&"prev"!==i.direction?v?0:(i.count+1)*x:v?(i.count-1-t+i.cloneOffset)*x:(t+i.cloneOffset)*x,i.setProps(g,"",i.vars.animationSpeed),i.transitions?(i.vars.animationLoop&&i.atEnd||(i.animating=!1,i.currentSlide=i.animatingTo),i.container.unbind("webkitTransitionEnd transitionend"),i.container.bind("webkitTransitionEnd transitionend",(function(){clearTimeout(i.ensureAnimationEnd),i.wrapup(x)})),clearTimeout(i.ensureAnimationEnd),i.ensureAnimationEnd=setTimeout((function(){i.wrapup(x)}),i.vars.animationSpeed+100)):i.container.animate(i.args,i.vars.animationSpeed,i.vars.easing,(function(){i.wrapup(x)}))}i.vars.smoothHeight&&h.smoothHeight(i.vars.animationSpeed)}},i.wrapup=function(e){m||p||(0===i.currentSlide&&i.animatingTo===i.last&&i.vars.animationLoop?i.setProps(e,"jumpEnd"):i.currentSlide===i.last&&0===i.animatingTo&&i.vars.animationLoop&&i.setProps(e,"jumpStart")),i.animating=!1,i.currentSlide=i.animatingTo,i.vars.after(i)},i.animateSlides=function(){!i.animating&&t&&i.flexAnimate(i.getTarget("next"))},i.pause=function(){clearInterval(i.animatedSlides),i.animatedSlides=null,i.playing=!1,i.vars.pausePlay&&h.pausePlay.update("play"),i.syncExists&&h.sync("pause")},i.play=function(){i.playing&&clearInterval(i.animatedSlides),i.animatedSlides=i.animatedSlides||setInterval(i.animateSlides,i.vars.slideshowSpeed),i.started=i.playing=!0,i.vars.pausePlay&&h.pausePlay.update("pause"),i.syncExists&&h.sync("play")},i.stop=function(){i.pause(),i.stopped=!0},i.canAdvance=function(e,t){var a=f?i.pagingCount-1:i.last;return!!t||(!(!f||i.currentItem!==i.count-1||0!==e||"prev"!==i.direction)||(!f||0!==i.currentItem||e!==i.pagingCount-1||"next"===i.direction)&&(!(e===i.currentSlide&&!f)&&(!!i.vars.animationLoop||(!i.atEnd||0!==i.currentSlide||e!==a||"next"===i.direction)&&(!i.atEnd||i.currentSlide!==a||0!==e||"next"!==i.direction))))},i.getTarget=function(e){return i.direction=e,"next"===e?i.currentSlide===i.last?0:i.currentSlide+1:0===i.currentSlide?i.last:i.currentSlide-1},i.setProps=function(e,t,a){var n,s=(n=e||(i.itemW+i.vars.itemMargin)*i.move*i.animatingTo,function(){if(p)return"setTouch"===t?e:v&&i.animatingTo===i.last?0:v?i.limit-(i.itemW+i.vars.itemMargin)*i.move*i.animatingTo:i.animatingTo===i.last?i.limit:n;switch(t){case"setTotal":return v?(i.count-1-i.currentSlide+i.cloneOffset)*e:(i.currentSlide+i.cloneOffset)*e;case"setTouch":default:return e;case"jumpEnd":return v?e:i.count*e;case"jumpStart":return v?i.count*e:e}}()*(i.vars.rtl?1:-1)+"px");i.transitions&&(s=i.isFirefox?u?"translate3d(0,"+s+",0)":"translate3d("+parseFloat(s)+"px,0,0)":u?"translate3d(0,"+s+",0)":"translate3d("+(i.vars.rtl?-1:1)*parseFloat(s)+"px,0,0)",a=void 0!==a?a/1e3+"s":"0s",i.container.css("-"+i.pfx+"-transition-duration",a),i.container.css("transition-duration",a)),i.args[i.prop]=s,(i.transitions||void 0===a)&&i.container.css(i.args),i.container.css("transform",s)},i.setup=function(t){var a,n;m?(i.vars.rtl?i.slides.css({width:"100%",float:"right",marginLeft:"-100%",position:"relative"}):i.slides.css({width:"100%",float:"left",marginRight:"-100%",position:"relative"}),"init"===t&&(l?i.slides.css({opacity:0,display:"block",webkitTransition:"opacity "+i.vars.animationSpeed/1e3+"s ease",zIndex:1}).eq(i.currentSlide).css({opacity:1,zIndex:2}):0==i.vars.fadeFirstSlide?i.slides.css({opacity:0,display:"block",zIndex:1}).eq(i.currentSlide).css({zIndex:2}).css({opacity:1}):i.slides.css({opacity:0,display:"block",zIndex:1}).eq(i.currentSlide).css({zIndex:2}).animate({opacity:1},i.vars.animationSpeed,i.vars.easing)),i.vars.smoothHeight&&h.smoothHeight()):("init"===t&&(i.viewport=e('<div class="'+r+'viewport"></div>').css({overflow:"hidden",position:"relative"}).appendTo(i).append(i.container),i.cloneCount=0,i.cloneOffset=0,v&&(n=e.makeArray(i.slides).reverse(),i.slides=e(n),i.container.empty().append(i.slides))),i.vars.animationLoop&&!p&&(i.doMath(),i.slides.css({width:i.computedW,marginRight:i.computedM,float:"left",display:"block"}),i.cloneCount=2,i.cloneOffset=1,"init"!==t&&i.container.find(".clone").remove(),i.container.append(h.uniqueID(i.slides.first().clone().addClass("clone")).attr("aria-hidden","true")).prepend(h.uniqueID(i.slides.last().clone().addClass("clone")).attr("aria-hidden","true"))),i.newSlides=e(i.vars.selector,i),a=v?i.count-1-i.currentSlide+i.cloneOffset:i.currentSlide+i.cloneOffset,u&&!p?(i.container.height(200*(i.count+i.cloneCount)+"%").css("position","absolute").width("100%"),setTimeout((function(){i.newSlides.css({display:"block"}),i.doMath(),i.viewport.height(i.h),i.setProps(a*i.h,"init")}),"init"===t?100:0)):(i.container.width(200*(i.count+i.cloneCount)+"%"),i.setProps(a*i.computedW,"init"),setTimeout((function(){i.doMath(),i.vars.rtl&&i.isFirefox?i.newSlides.css({width:i.computedW,marginRight:i.computedM,float:"right",display:"block"}):i.newSlides.css({width:i.computedW,marginRight:i.computedM,float:"left",display:"block"}),i.vars.smoothHeight&&h.smoothHeight()}),"init"===t?100:0)));p||(i.slides.removeClass(r+"active-slide").eq(i.currentSlide).addClass(r+"active-slide"),i.slides.attr("aria-hidden","true").eq(i.currentSlide).removeAttr("aria-hidden")),i.vars.init(i),i.doMath()},i.doMath=function(){var e=i.slides.first(),t=i.vars.itemMargin,a=i.vars.minItems,n=i.vars.maxItems;i.w=void 0===i.viewport?i.width():i.viewport.width(),i.isFirefox&&(i.w=i.width()),i.h=e.height(),i.boxPadding=e.outerWidth()-e.width(),p?(i.itemT=i.vars.itemWidth+t,i.itemM=t,i.minW=a?a*i.itemT:i.w,i.maxW=n?n*i.itemT-t:i.w,i.itemW=i.minW>i.w?(i.w-t*(a-1))/a:i.maxW<i.w?(i.w-t*(n-1))/n:i.vars.itemWidth>i.w?i.w:i.vars.itemWidth,i.itemWPlusMargin=i.itemW+i.itemM,i.visible=Math.floor(i.w/i.itemWPlusMargin),i.visible=i.visible>0?i.visible:1,i.move=i.vars.move>0&&i.vars.move<i.visible?i.vars.move:i.visible,i.pagingCount=Math.ceil((i.count-i.visible)/i.move+1),i.last=i.pagingCount-1,i.limit=1===i.pagingCount?0:i.vars.itemWidth>i.w?i.itemW*(i.count-1)+t*(i.count-1):(i.itemW+t)*i.count-i.w-t):(i.itemW=i.w,i.itemM=t,i.pagingCount=i.count,i.last=i.count-1),i.computedW=i.itemW-i.boxPadding,i.computedM=i.itemM},i.update=function(e,t){i.doMath(),p||(e<i.currentSlide?i.currentSlide+=1:e<=i.currentSlide&&0!==e&&(i.currentSlide-=1),i.animatingTo=i.currentSlide),i.vars.controlNav&&!i.manualControls&&("add"===t&&!p||i.pagingCount>i.controlNav.length?h.controlNav.update("add"):("remove"===t&&!p||i.pagingCount<i.controlNav.length)&&(p&&i.currentSlide>i.last&&(i.currentSlide-=1,i.animatingTo-=1),h.controlNav.update("remove",i.last))),i.vars.directionNav&&h.directionNav.update()},i.addSlide=function(t,a){var n=e(t);i.count+=1,i.last=i.count-1,u&&v?void 0!==a?i.slides.eq(i.count-a).after(n):i.container.prepend(n):void 0!==a?i.slides.eq(a).before(n):i.container.append(n),i.update(a,"add"),i.slides=e(i.vars.selector+":not(.clone)",i),i.setup(),i.vars.added(i)},i.removeSlide=function(t){var a=isNaN(t)?i.slides.index(e(t)):t;i.count-=1,i.last=i.count-1,isNaN(t)?e(t,i.slides).remove():u&&v?i.slides.eq(i.last).remove():i.slides.eq(t).remove(),i.doMath(),i.update(a,"remove"),i.slides=e(i.vars.selector+":not(.clone)",i),i.setup(),i.vars.removed(i)},h.init()},e(window).blur((function(e){t=!1})).focus((function(e){t=!0})),e.flexslider.defaults={namespace:"flex-",selector:".slides > li",animation:"fade",easing:"swing",direction:"horizontal",reverse:!1,animationLoop:!0,smoothHeight:!1,startAt:0,slideshow:!0,slideshowSpeed:7e3,animationSpeed:600,initDelay:0,randomize:!1,fadeFirstSlide:!0,thumbCaptions:!1,pauseOnAction:!0,pauseOnHover:!1,pauseInvisible:!0,useCSS:!0,touch:!0,video:!1,controlNav:!0,directionNav:!0,prevText:"Previous",nextText:"Next",keyboard:!0,multipleKeyboard:!1,mousewheel:!1,pausePlay:!1,pauseText:"Pause",playText:"Play",controlsContainer:"",manualControls:"",customDirectionNav:"",sync:"",asNavFor:"",itemWidth:0,itemMargin:0,minItems:1,maxItems:0,move:0,allowOneSlide:!0,isFirefox:!1,start:function(){},before:function(){},after:function(){},end:function(){},added:function(){},removed:function(){},init:function(){},rtl:!1},e.fn.flexslider=function(t){if(void 0===t&&(t={}),"object"==typeof t)return this.each((function(){var a=e(this),n=t.selector?t.selector:".slides > li",i=a.find(n);1===i.length&&!1===t.allowOneSlide||0===i.length?(i.fadeIn(400),t.start&&t.start(a)):void 0===a.data("flexslider")&&new e.flexslider(this,t)}));var a=e(this).data("flexslider");switch(t){case"play":a.play();break;case"pause":a.pause();break;case"stop":a.stop();break;case"next":a.flexAnimate(a.getTarget("next"),!0);break;case"prev":case"previous":a.flexAnimate(a.getTarget("prev"),!0);break;default:"number"==typeof t&&a.flexAnimate(t,!0)}}}(jQuery);
assets/sliders/nivoslider/nivo-slider.css000064400000004012151213255540014636 0ustar00/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white; 
	filter:alpha(opacity=0); 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 15px 0;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}assets/sliders/nivoslider/nivoslider.jquery.json000064400000001324151213255540016263 0ustar00{
  "name": "nivoslider",
  "version": "3.2",
  "title": "Nivo Slider",
  "author": {
    "name": "Gilbert Pellegrom",
    "url": "http://gilbert.pellegrom.me"
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/gilbitron/Nivo-Slider/blob/master/license.txt"
    }
  ],
  "dependencies": {
    "jquery": ">=1.7"
  },
  "description": "The Most Awesome jQuery Image Slider.",
  "keywords": [
    "slider",
    "animation",
    "effect"
  ],
  "homepage": "http://nivo.dev7studios.com",
  "docs": "http://nivo.dev7studios.com/support",
  "demo": "http://nivo.dev7studios.com/demos",
  "download": "http://nivo.dev7studios.com/pricing",
  "bugs": "https://github.com/gilbitron/Nivo-Slider/issues"
}assets/sliders/nivoslider/jquery.nivo.slider.pack.js000064400000027575151213255540016741 0ustar00!function(t){var i=function(i,e){var n=t.extend({},t.fn.nivoSlider.defaults,e),a={currentSlide:0,currentImage:"",totalSlides:0,running:!1,paused:!1,stop:!1,controlNavEl:!1},o=t(i);o.data("nivo:vars",a).addClass("nivoSlider");var r=o.children();r.each((function(){var i=t(this),e="";i.is("img")||(i.is("a")&&(i.addClass("nivo-imageLink"),e=i),i=i.find("img:first"));var n=0===n?i.attr("width"):i.width(),o=0===o?i.attr("height"):i.height();""!==e&&e.css("display","none"),i.css("display","none"),a.totalSlides++})),n.randomStart&&(n.startSlide=Math.floor(Math.random()*a.totalSlides)),n.startSlide>0&&(n.startSlide>=a.totalSlides&&(n.startSlide=a.totalSlides-1),a.currentSlide=n.startSlide),t(r[a.currentSlide]).is("img")?a.currentImage=t(r[a.currentSlide]):a.currentImage=t(r[a.currentSlide]).find("img:first"),t(r[a.currentSlide]).is("a")&&t(r[a.currentSlide]).css("display","block");var s=t("<img/>").addClass("nivo-main-image");s.prop({src:a.currentImage.attr("src"),alt:a.currentImage.attr("alt")}).show(),o.append(s),t(window).resize((function(){o.children("img").width(o.width()),s.prop({src:a.currentImage.attr("src"),alt:a.currentImage.attr("alt")}),s.stop().height("auto"),t(".nivo-slice").remove(),t(".nivo-box").remove()})),o.append(t('<div class="nivo-caption"></div>'));var c=function(i){var e=t(".nivo-caption",o);if(a.currentImage.data("caption")){var n=a.currentImage.data("caption");"#"===n.substr(0,1)&&(n=t(n).html()),"block"===e.css("display")?setTimeout((function(){e.html(n)}),i.animSpeed):(e.html(n),e.stop().fadeIn(i.animSpeed))}else e.stop().fadeOut(i.animSpeed)};c(n);var l=0;if(!n.manualAdvance&&r.length>1&&(l=setInterval((function(){h(o,r,n,!1)}),n.pauseTime)),n.directionNav&&(o.append('<div class="nivo-directionNav"><a class="nivo-prevNav" rel="nofollow" aria-label="Previous Slide">'+n.prevText+'</a><a class="nivo-nextNav" rel="nofollow" aria-label="Next Slide">'+n.nextText+"</a></div>"),t(o).on("click","a.nivo-prevNav",(function(){if(a.running)return!1;clearInterval(l),l="",a.currentSlide-=2,h(o,r,n,"prev")})),t(o).on("click","a.nivo-nextNav",(function(){if(a.running)return!1;clearInterval(l),l="",h(o,r,n,"next")}))),n.controlNav){a.controlNavEl=t('<div class="nivo-controlNav"></div>'),o.after(a.controlNavEl);for(var d=0;d<r.length;d++)if(n.controlNavThumbs){a.controlNavEl.addClass("nivo-thumbs-enabled");var v=r.eq(d);v.is("img")||(v=v.find("img:first")),v.attr("data-thumb")&&a.controlNavEl.append('<a class="nivo-control" rels="'+d+'" aria-label="Show slide '+(d+1)+" of "+r.length+'"><img src="'+v.attr("data-thumb")+'" alt="'+v.attr("alt")+'" /></a>')}else a.controlNavEl.append('<a class="nivo-control" rel=”nofollow” rels="'+d+'" aria-label="Show slide '+(d+1)+" of "+r.length+'">'+(d+1)+"</a>");t("a:eq("+a.currentSlide+")",a.controlNavEl).addClass("active"),t("a",a.controlNavEl).bind("click",(function(){return!a.running&&(!t(this).hasClass("active")&&(clearInterval(l),l="",s.prop({src:a.currentImage.attr("src"),alt:a.currentImage.attr("alt")}),a.currentSlide=t(this).attr("rels")-1,void h(o,r,n,"control")))}))}n.pauseOnHover&&o.hover((function(){a.paused=!0,clearInterval(l),l=""}),(function(){a.paused=!1,""!==l||n.manualAdvance||(l=setInterval((function(){h(o,r,n,!1)}),n.pauseTime))})),o.bind("nivo:animFinished",(function(){s.attr("src",a.currentImage.attr("src")).attr("alt",a.currentImage.attr("alt")),a.running=!1,t(r).each((function(){t(this).is("a")&&t(this).css("display","none")})),t(r[a.currentSlide]).is("a")&&t(r[a.currentSlide]).css("display","block"),""!==l||a.paused||n.manualAdvance||(l=setInterval((function(){h(o,r,n,!1)}),n.pauseTime)),n.afterChange.call(this)}));var m=function(i,e,n){t(n.currentImage).parent().is("a")&&t(n.currentImage).parent().css("display","block"),t('img[src="'+n.currentImage.attr("src")+'"]',i).not(".nivo-main-image,.nivo-control img").width(i.width()).css("visibility","hidden").show();for(var a=t('img[src="'+n.currentImage.attr("src")+'"]',i).not(".nivo-main-image,.nivo-control img").parent().is("a")?t('img[src="'+n.currentImage.attr("src")+'"]',i).not(".nivo-main-image,.nivo-control img").parent().height():t('img[src="'+n.currentImage.attr("src")+'"]',i).not(".nivo-main-image,.nivo-control img").height(),o=0;o<e.slices;o++){var r=Math.round(i.width()/e.slices);o===e.slices-1?i.append(t('<div class="nivo-slice" name="'+o+'"><img alt="" src="'+n.currentImage.attr("src")+'" style="position:absolute; width:'+i.width()+"px; height:auto; display:block !important; top:0; left:-"+(r+o*r-r)+'px;" /></div>').css({left:r*o+"px",width:i.width()-r*o+"px",height:a+"px",opacity:"0",overflow:"hidden"})):i.append(t('<div class="nivo-slice" name="'+o+'"><img alt="" src="'+n.currentImage.attr("src")+'" style="position:absolute; width:'+i.width()+"px; height:auto; display:block !important; top:0; left:-"+(r+o*r-r)+'px;" /></div>').css({left:r*o+"px",width:r+"px",height:a+"px",opacity:"0",overflow:"hidden"}))}t(".nivo-slice",i).height(a),s.stop().animate({height:t(n.currentImage).height()},e.animSpeed)},p=function(i,e,n){t(n.currentImage).parent().is("a")&&t(n.currentImage).parent().css("display","block"),t('img[src="'+n.currentImage.attr("src")+'"]',i).not(".nivo-main-image,.nivo-control img").width(i.width()).css("visibility","hidden").show();for(var a=Math.round(i.width()/e.boxCols),o=Math.round(t('img[src="'+n.currentImage.attr("src")+'"]',i).not(".nivo-main-image,.nivo-control img").height()/e.boxRows),r=0;r<e.boxRows;r++)for(var c=0;c<e.boxCols;c++)c===e.boxCols-1?(i.append(t('<div class="nivo-box" name="'+c+'" rels="'+r+'"><img alt="" src="'+n.currentImage.attr("src")+'" style="position:absolute; width:'+i.width()+"px; height:auto; display:block; top:-"+o*r+"px; left:-"+a*c+'px;" /></div>').css({opacity:0,left:a*c+"px",top:o*r+"px",width:i.width()-a*c+"px"})),t('.nivo-box[name="'+c+'"]',i).height(t('.nivo-box[name="'+c+'"] img',i).height()+"px")):(i.append(t('<div class="nivo-box" name="'+c+'" rels="'+r+'"><img alt="" src="'+n.currentImage.attr("src")+'" style="position:absolute; width:'+i.width()+"px; height:auto; display:block; top:-"+o*r+"px; left:-"+a*c+'px;" /></div>').css({opacity:0,left:a*c+"px",top:o*r+"px",width:a+"px"})),t('.nivo-box[name="'+c+'"]',i).height(t('.nivo-box[name="'+c+'"] img',i).height()+"px"));s.stop().animate({height:t(n.currentImage).height()},e.animSpeed)},h=function(i,e,n,a){var o=i.data("nivo:vars");if(o&&o.currentSlide===o.totalSlides-1&&n.lastSlide.call(this),(!o||o.stop)&&!a)return!1;n.beforeChange.call(this),a?("prev"===a&&s.prop({src:o.currentImage.attr("src"),alt:o.currentImage.attr("alt")}),"next"===a&&s.prop({src:o.currentImage.attr("src"),alt:o.currentImage.attr("alt")})):s.prop({src:o.currentImage.attr("src"),alt:o.currentImage.attr("alt")}),o.currentSlide++,o.currentSlide===o.totalSlides&&(o.currentSlide=0,n.slideshowEnd.call(this)),o.currentSlide<0&&(o.currentSlide=o.totalSlides-1),t(e[o.currentSlide]).is("img")?o.currentImage=t(e[o.currentSlide]):o.currentImage=t(e[o.currentSlide]).find("img:first"),n.controlNav&&(t("a",o.controlNavEl).removeClass("active"),t("a:eq("+o.currentSlide+")",o.controlNavEl).addClass("active")),c(n),t(".nivo-slice",i).remove(),t(".nivo-box",i).remove();var r=n.effect,l="";"random"===n.effect&&(l=new Array("sliceDownRight","sliceDownLeft","sliceUpRight","sliceUpLeft","sliceUpDown","sliceUpDownLeft","fold","fade","boxRandom","boxRain","boxRainReverse","boxRainGrow","boxRainGrowReverse"),void 0===(r=l[Math.floor(Math.random()*(l.length+1))])&&(r="fade")),-1!==n.effect.indexOf(",")&&(l=n.effect.split(","),void 0===(r=l[Math.floor(Math.random()*l.length)])&&(r="fade")),o.currentImage.attr("data-transition")&&(r=o.currentImage.attr("data-transition")),o.running=!0;var d=0,v=0,h="",f="",g="",x="";if("sliceDown"===r||"sliceDownRight"===r||"sliceDownLeft"===r)m(i,n,o),d=0,v=0,h=t(".nivo-slice",i),"sliceDownLeft"===r&&(h=t(".nivo-slice",i)._reverse()),h.each((function(){var e=t(this);e.css({top:"0px"}),v===n.slices-1?setTimeout((function(){e.animate({opacity:"1.0"},n.animSpeed,"",(function(){i.trigger("nivo:animFinished")}))}),100+d):setTimeout((function(){e.animate({opacity:"1.0"},n.animSpeed)}),100+d),d+=50,v++}));else if("sliceUp"===r||"sliceUpRight"===r||"sliceUpLeft"===r)m(i,n,o),d=0,v=0,h=t(".nivo-slice",i),"sliceUpLeft"===r&&(h=t(".nivo-slice",i)._reverse()),h.each((function(){var e=t(this);e.css({bottom:"0px"}),v===n.slices-1?setTimeout((function(){e.animate({opacity:"1.0"},n.animSpeed,"",(function(){i.trigger("nivo:animFinished")}))}),100+d):setTimeout((function(){e.animate({opacity:"1.0"},n.animSpeed)}),100+d),d+=50,v++}));else if("sliceUpDown"===r||"sliceUpDownRight"===r||"sliceUpDownLeft"===r){m(i,n,o),d=0,v=0;var w=0;h=t(".nivo-slice",i),"sliceUpDownLeft"===r&&(h=t(".nivo-slice",i)._reverse()),h.each((function(){var e=t(this);0===v?(e.css("top","0px"),v++):(e.css("bottom","0px"),v=0),w===n.slices-1?setTimeout((function(){e.animate({opacity:"1.0"},n.animSpeed,"",(function(){i.trigger("nivo:animFinished")}))}),100+d):setTimeout((function(){e.animate({opacity:"1.0"},n.animSpeed)}),100+d),d+=50,w++}))}else if("fold"===r)m(i,n,o),d=0,v=0,t(".nivo-slice",i).each((function(){var e=t(this),a=e.width();e.css({top:"0px",width:"0px"}),v===n.slices-1?setTimeout((function(){e.animate({width:a,opacity:"1.0"},n.animSpeed,"",(function(){i.trigger("nivo:animFinished")}))}),100+d):setTimeout((function(){e.animate({width:a,opacity:"1.0"},n.animSpeed)}),100+d),d+=50,v++}));else if("fade"===r)m(i,n,o),(f=t(".nivo-slice:first",i)).css({width:i.width()+"px"}),f.animate({opacity:"1.0"},2*n.animSpeed,"",(function(){i.trigger("nivo:animFinished")}));else if("slideInRight"===r)m(i,n,o),(f=t(".nivo-slice:first",i)).css({width:"0px",opacity:"1"}),f.animate({width:i.width()+"px"},2*n.animSpeed,"",(function(){i.trigger("nivo:animFinished")}));else if("slideInLeft"===r)m(i,n,o),(f=t(".nivo-slice:first",i)).css({width:"0px",opacity:"1",left:"",right:"0px"}),f.animate({width:i.width()+"px"},2*n.animSpeed,"",(function(){f.css({left:"0px",right:""}),i.trigger("nivo:animFinished")}));else if("boxRandom"===r)p(i,n,o),g=n.boxCols*n.boxRows,v=0,d=0,(x=u(t(".nivo-box",i))).each((function(){var e=t(this);v===g-1?setTimeout((function(){e.animate({opacity:"1"},n.animSpeed,"",(function(){i.trigger("nivo:animFinished")}))}),100+d):setTimeout((function(){e.animate({opacity:"1"},n.animSpeed)}),100+d),d+=20,v++}));else if("boxRain"===r||"boxRainReverse"===r||"boxRainGrow"===r||"boxRainGrowReverse"===r){p(i,n,o),g=n.boxCols*n.boxRows,v=0,d=0;var S=0,b=0,I=[];I[S]=[],x=t(".nivo-box",i),"boxRainReverse"!==r&&"boxRainGrowReverse"!==r||(x=t(".nivo-box",i)._reverse()),x.each((function(){I[S][b]=t(this),++b===n.boxCols&&(S++,b=0,I[S]=[])}));for(var y=0;y<2*n.boxCols;y++){for(var R=y,N=0;N<n.boxRows;N++)R>=0&&R<n.boxCols&&(!function(e,a,o,s,c){var l=t(I[e][a]),d=l.width(),v=l.height();"boxRainGrow"!==r&&"boxRainGrowReverse"!==r||l.width(0).height(0),s===c-1?setTimeout((function(){l.animate({opacity:"1",width:d,height:v},n.animSpeed/1.3,"",(function(){i.trigger("nivo:animFinished")}))}),100+o):setTimeout((function(){l.animate({opacity:"1",width:d,height:v},n.animSpeed/1.3)}),100+o)}(N,R,d,v,g),v++),R--;d+=100}}},u=function(t){for(var i,e,n=t.length;n;i=parseInt(Math.random()*n,10),e=t[--n],t[n]=t[i],t[i]=e);return t},f=function(t){this.console&&void 0!==console.log&&console.log(t)};return this.stop=function(){t(i).data("nivo:vars").stop||(t(i).data("nivo:vars").stop=!0,f("Stop Slider"))},this.start=function(){t(i).data("nivo:vars").stop&&(t(i).data("nivo:vars").stop=!1,f("Start Slider"))},n.afterLoad.call(this),this};t.fn.nivoSlider=function(e){return this.each((function(n,a){var o=t(this);if(o.data("nivoslider"))return o.data("nivoslider");var r=new i(this,e);o.data("nivoslider",r)}))},t.fn.nivoSlider.defaults={effect:"random",slices:15,boxCols:8,boxRows:4,animSpeed:500,pauseTime:3e3,startSlide:0,directionNav:!0,controlNav:!0,controlNavThumbs:!1,pauseOnHover:!0,manualAdvance:!1,prevText:"Prev",nextText:"Next",randomStart:!1,beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}},t.fn._reverse=[].reverse}(jQuery);
assets/sliders/nivoslider/jquery.nivo.slider.js000064400000072077151213255540016021 0ustar00/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

(function($) {
    var NivoSlider = function(element, options){
        // Defaults are below
        var settings = $.extend({}, $.fn.nivoSlider.defaults, options);

        // Useful variables. Play carefully.
        var vars = {
            currentSlide: 0,
            currentImage: '',
            totalSlides: 0,
            running: false,
            paused: false,
            stop: false,
            controlNavEl: false
        };

        // Get this slider
        var slider = $(element);
        slider.data('nivo:vars', vars).addClass('nivoSlider');

        // Find our slider children
        var kids = slider.children();
        kids.each(function() {
            var child = $(this);
            var link = '';
            if(!child.is('img')){
                if(child.is('a')){
                    child.addClass('nivo-imageLink');
                    link = child;
                }
                child = child.find('img:first');
            }
            // Get img width & height
            var childWidth = (childWidth === 0) ? child.attr('width') : child.width(),
                childHeight = (childHeight === 0) ? child.attr('height') : child.height();

            if(link !== ''){
                link.css('display','none');
            }
            child.css('display','none');
            vars.totalSlides++;
        });

        // If randomStart
        if(settings.randomStart){
            settings.startSlide = Math.floor(Math.random() * vars.totalSlides);
        }

        // Set startSlide
        if(settings.startSlide > 0){
            if(settings.startSlide >= vars.totalSlides) { settings.startSlide = vars.totalSlides - 1; }
            vars.currentSlide = settings.startSlide;
        }

        // Get initial image
        if($(kids[vars.currentSlide]).is('img')){
            vars.currentImage = $(kids[vars.currentSlide]);
        } else {
            vars.currentImage = $(kids[vars.currentSlide]).find('img:first');
        }

        // Show initial link
        if($(kids[vars.currentSlide]).is('a')){
            $(kids[vars.currentSlide]).css('display','block');
        }

        // Set first background
        var sliderImg = $('<img/>').addClass('nivo-main-image');
        sliderImg.prop({
            'src': vars.currentImage.attr('src'),
            'alt': vars.currentImage.attr('alt')
        }).show();
        slider.append(sliderImg);

        // Detect Window Resize
        $(window).resize(function() {
            slider.children('img').width(slider.width());
            sliderImg.prop({
                'src': vars.currentImage.attr('src'),
                'alt': vars.currentImage.attr('alt')
            });
            sliderImg.stop().height('auto');
            $('.nivo-slice').remove();
            $('.nivo-box').remove();
        });

        //Create caption
        slider.append($('<div class="nivo-caption"></div>'));

		// Process caption function
		var processCaption = function(settings) {
			var nivoCaption = $('.nivo-caption', slider)
			if (vars.currentImage.data('caption')) {
				var caption = vars.currentImage.data('caption')
				if ('#' === caption.substr(0, 1)) caption = $(caption).html()

				if ('block' === nivoCaption.css('display')) {
					setTimeout(function() {
						nivoCaption.html(caption)
					}, settings.animSpeed)
				} else {
					nivoCaption.html(caption)
					nivoCaption.stop().fadeIn(settings.animSpeed)
				}

			} else {
				nivoCaption.stop().fadeOut(settings.animSpeed)
			}
		}

        //Process initial  caption
        processCaption(settings);

        // In the words of Super Mario "let's a go!"
        var timer = 0;
        if(!settings.manualAdvance && kids.length > 1){
            timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
        }

        // Add Direction nav
        if(settings.directionNav){
            slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav" rel="nofollow" aria-label="Previous Slide">'+ settings.prevText +'</a><a class="nivo-nextNav" rel="nofollow" aria-label="Next Slide">'+ settings.nextText +'</a></div>');

            $(slider).on('click', 'a.nivo-prevNav', function(){
                if(vars.running) { return false; }
                clearInterval(timer);
                timer = '';
                vars.currentSlide -= 2;
                nivoRun(slider, kids, settings, 'prev');
            });

            $(slider).on('click', 'a.nivo-nextNav', function(){
                if(vars.running) { return false; }
                clearInterval(timer);
                timer = '';
                nivoRun(slider, kids, settings, 'next');
            });
        }

        // Add Control nav
        if(settings.controlNav){
            vars.controlNavEl = $('<div class="nivo-controlNav"></div>');
            slider.after(vars.controlNavEl);
            for(var i = 0; i < kids.length; i++){
                if(settings.controlNavThumbs){
                    vars.controlNavEl.addClass('nivo-thumbs-enabled');
                    var child = kids.eq(i);
                    if(!child.is('img')){
                        child = child.find('img:first');
                    }
                    if(child.attr('data-thumb')) vars.controlNavEl.append('<a class="nivo-control" rels="'+ i +'" aria-label="Show slide ' + (i + 1) + ' of ' + kids.length + '"><img src="'+ child.attr('data-thumb') +'" alt="'+ child.attr('alt') +'" /></a>');
                } else {
                    vars.controlNavEl.append('<a class="nivo-control" rel=”nofollow” rels="'+ i +'" aria-label="Show slide ' + (i + 1) + ' of ' + kids.length + '">'+ (i + 1) +'</a>');
                }
            }

            //Set initial active link
            $('a:eq('+ vars.currentSlide +')', vars.controlNavEl).addClass('active');

            $('a', vars.controlNavEl).bind('click', function(){
                if(vars.running) return false;
                if($(this).hasClass('active')) return false;
                clearInterval(timer);
                timer = '';
                sliderImg.prop({
                    'src': vars.currentImage.attr('src'),
                    'alt': vars.currentImage.attr('alt')
                });
                vars.currentSlide = $(this).attr('rels') - 1;
                nivoRun(slider, kids, settings, 'control');
            });
        }

        //For pauseOnHover setting
        if(settings.pauseOnHover){
            slider.hover(function(){
                vars.paused = true;
                clearInterval(timer);
                timer = '';
            }, function(){
                vars.paused = false;
                // Restart the timer
                if(timer === '' && !settings.manualAdvance){
                    timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
                }
            });
        }

        // Event when Animation finishes
        slider.bind('nivo:animFinished', function(){
            sliderImg
                .attr('src', vars.currentImage.attr('src'))
                .attr('alt', vars.currentImage.attr('alt'));
            vars.running = false;
            // Hide child links
            $(kids).each(function(){
                if($(this).is('a')){
                   $(this).css('display','none');
                }
            });
            // Show current link
            if($(kids[vars.currentSlide]).is('a')){
                $(kids[vars.currentSlide]).css('display','block');
            }
            // Restart the timer
            if(timer === '' && !vars.paused && !settings.manualAdvance){
                timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
            }
            // Trigger the afterChange callback
            settings.afterChange.call(this);
        });

        // Add slices for slice animations
        var createSlices = function(slider, settings, vars) {
            if($(vars.currentImage).parent().is('a')) $(vars.currentImage).parent().css('display','block');
            $('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').width(slider.width()).css('visibility', 'hidden').show();
            var sliceHeight = ($('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').parent().is('a')) ? $('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').parent().height() : $('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').height();

            for(var i = 0; i < settings.slices; i++){
                var sliceWidth = Math.round(slider.width()/settings.slices);

                if(i === settings.slices-1){
                    slider.append(
                        $('<div class="nivo-slice" name="'+i+'"><img alt="" src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block !important; top:0; left:-'+ ((sliceWidth + (i * sliceWidth)) - sliceWidth) +'px;" /></div>').css({
                            left:(sliceWidth*i)+'px',
                            width:(slider.width()-(sliceWidth*i))+'px',
                            height:sliceHeight+'px',
                            opacity:'0',
                            overflow:'hidden'
                        })
                    );
                } else {
                    slider.append(
                        $('<div class="nivo-slice" name="'+i+'"><img alt="" src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block !important; top:0; left:-'+ ((sliceWidth + (i * sliceWidth)) - sliceWidth) +'px;" /></div>').css({
                            left:(sliceWidth*i)+'px',
                            width:sliceWidth+'px',
                            height:sliceHeight+'px',
                            opacity:'0',
                            overflow:'hidden'
                        })
                    );
                }
            }

            $('.nivo-slice', slider).height(sliceHeight);
            sliderImg.stop().animate({
                height: $(vars.currentImage).height()
            }, settings.animSpeed);
        };

        // Add boxes for box animations
        var createBoxes = function(slider, settings, vars){
            if($(vars.currentImage).parent().is('a')) $(vars.currentImage).parent().css('display','block');
            $('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').width(slider.width()).css('visibility', 'hidden').show();
            var boxWidth = Math.round(slider.width()/settings.boxCols),
                boxHeight = Math.round($('img[src="'+ vars.currentImage.attr('src') +'"]', slider).not('.nivo-main-image,.nivo-control img').height() / settings.boxRows);


            for(var rows = 0; rows < settings.boxRows; rows++){
                for(var cols = 0; cols < settings.boxCols; cols++){
                    if(cols === settings.boxCols-1){
                        slider.append(
                            $('<div class="nivo-box" name="'+ cols +'" rels="'+ rows +'"><img alt="" src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block; top:-'+ (boxHeight*rows) +'px; left:-'+ (boxWidth*cols) +'px;" /></div>').css({
                                opacity:0,
                                left:(boxWidth*cols)+'px',
                                top:(boxHeight*rows)+'px',
                                width:(slider.width()-(boxWidth*cols))+'px'

                            })
                        );
                        $('.nivo-box[name="'+ cols +'"]', slider).height($('.nivo-box[name="'+ cols +'"] img', slider).height()+'px');
                    } else {
                        slider.append(
                            $('<div class="nivo-box" name="'+ cols +'" rels="'+ rows +'"><img alt="" src="'+ vars.currentImage.attr('src') +'" style="position:absolute; width:'+ slider.width() +'px; height:auto; display:block; top:-'+ (boxHeight*rows) +'px; left:-'+ (boxWidth*cols) +'px;" /></div>').css({
                                opacity:0,
                                left:(boxWidth*cols)+'px',
                                top:(boxHeight*rows)+'px',
                                width:boxWidth+'px'
                            })
                        );
                        $('.nivo-box[name="'+ cols +'"]', slider).height($('.nivo-box[name="'+ cols +'"] img', slider).height()+'px');
                    }
                }
            }

            sliderImg.stop().animate({
                height: $(vars.currentImage).height()
            }, settings.animSpeed);
        };

        // Private run method
        var nivoRun = function(slider, kids, settings, nudge){
            // Get our vars
            var vars = slider.data('nivo:vars');

            // Trigger the lastSlide callback
            if(vars && (vars.currentSlide === vars.totalSlides - 1)){
                settings.lastSlide.call(this);
            }

            // Stop
            if((!vars || vars.stop) && !nudge) { return false; }

            // Trigger the beforeChange callback
            settings.beforeChange.call(this);

            // Set current background before change
            if(!nudge){
                sliderImg.prop({
                    'src': vars.currentImage.attr('src'),
                    'alt': vars.currentImage.attr('alt')
                });
            } else {
                if(nudge === 'prev'){
                    sliderImg.prop({
                        'src': vars.currentImage.attr('src'),
                        'alt': vars.currentImage.attr('alt')
                    });
                }
                if(nudge === 'next'){
                    sliderImg.prop({
                        'src': vars.currentImage.attr('src'),
                        'alt': vars.currentImage.attr('alt')
                    });
                }
            }

            vars.currentSlide++;
            // Trigger the slideshowEnd callback
            if(vars.currentSlide === vars.totalSlides){
                vars.currentSlide = 0;
                settings.slideshowEnd.call(this);
            }
            if(vars.currentSlide < 0) { vars.currentSlide = (vars.totalSlides - 1); }
            // Set vars.currentImage
            if($(kids[vars.currentSlide]).is('img')){
                vars.currentImage = $(kids[vars.currentSlide]);
            } else {
                vars.currentImage = $(kids[vars.currentSlide]).find('img:first');
            }

            // Set active links
            if(settings.controlNav){
                $('a', vars.controlNavEl).removeClass('active');
                $('a:eq('+ vars.currentSlide +')', vars.controlNavEl).addClass('active');
            }

            // Process caption
            processCaption(settings);

            // Remove any slices from last transition
            $('.nivo-slice', slider).remove();

            // Remove any boxes from last transition
            $('.nivo-box', slider).remove();

            var currentEffect = settings.effect,
                anims = '';

            // Generate random effect
            if(settings.effect === 'random'){
                anims = new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade',
                'boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse');
                currentEffect = anims[Math.floor(Math.random()*(anims.length + 1))];
                if(currentEffect === undefined) { currentEffect = 'fade'; }
            }

            // Run random effect from specified set (eg: effect:'fold,fade')
            if(settings.effect.indexOf(',') !== -1){
                anims = settings.effect.split(',');
                currentEffect = anims[Math.floor(Math.random()*(anims.length))];
                if(currentEffect === undefined) { currentEffect = 'fade'; }
            }

            // Custom transition as defined by "data-transition" attribute
            if(vars.currentImage.attr('data-transition')){
                currentEffect = vars.currentImage.attr('data-transition');
            }

            // Run effects
            vars.running = true;
            var timeBuff = 0,
                i = 0,
                slices = '',
                firstSlice = '',
                totalBoxes = '',
                boxes = '';

            if(currentEffect === 'sliceDown' || currentEffect === 'sliceDownRight' || currentEffect === 'sliceDownLeft'){
                createSlices(slider, settings, vars);
                timeBuff = 0;
                i = 0;
                slices = $('.nivo-slice', slider);
                if(currentEffect === 'sliceDownLeft') { slices = $('.nivo-slice', slider)._reverse(); }

                slices.each(function(){
                    var slice = $(this);
                    slice.css({ 'top': '0px' });
                    if(i === settings.slices-1){
                        setTimeout(function(){
                            slice.animate({opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
                        }, (100 + timeBuff));
                    } else {
                        setTimeout(function(){
                            slice.animate({opacity:'1.0' }, settings.animSpeed);
                        }, (100 + timeBuff));
                    }
                    timeBuff += 50;
                    i++;
                });
            } else if(currentEffect === 'sliceUp' || currentEffect === 'sliceUpRight' || currentEffect === 'sliceUpLeft'){
                createSlices(slider, settings, vars);
                timeBuff = 0;
                i = 0;
                slices = $('.nivo-slice', slider);
                if(currentEffect === 'sliceUpLeft') { slices = $('.nivo-slice', slider)._reverse(); }

                slices.each(function(){
                    var slice = $(this);
                    slice.css({ 'bottom': '0px' });
                    if(i === settings.slices-1){
                        setTimeout(function(){
                            slice.animate({opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
                        }, (100 + timeBuff));
                    } else {
                        setTimeout(function(){
                            slice.animate({opacity:'1.0' }, settings.animSpeed);
                        }, (100 + timeBuff));
                    }
                    timeBuff += 50;
                    i++;
                });
            } else if(currentEffect === 'sliceUpDown' || currentEffect === 'sliceUpDownRight' || currentEffect === 'sliceUpDownLeft'){
                createSlices(slider, settings, vars);
                timeBuff = 0;
                i = 0;
                var v = 0;
                slices = $('.nivo-slice', slider);
                if(currentEffect === 'sliceUpDownLeft') { slices = $('.nivo-slice', slider)._reverse(); }

                slices.each(function(){
                    var slice = $(this);
                    if(i === 0){
                        slice.css('top','0px');
                        i++;
                    } else {
                        slice.css('bottom','0px');
                        i = 0;
                    }

                    if(v === settings.slices-1){
                        setTimeout(function(){
                            slice.animate({opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
                        }, (100 + timeBuff));
                    } else {
                        setTimeout(function(){
                            slice.animate({opacity:'1.0' }, settings.animSpeed);
                        }, (100 + timeBuff));
                    }
                    timeBuff += 50;
                    v++;
                });
            } else if(currentEffect === 'fold'){
                createSlices(slider, settings, vars);
                timeBuff = 0;
                i = 0;

                $('.nivo-slice', slider).each(function(){
                    var slice = $(this);
                    var origWidth = slice.width();
                    slice.css({ top:'0px', width:'0px' });
                    if(i === settings.slices-1){
                        setTimeout(function(){
                            slice.animate({ width:origWidth, opacity:'1.0' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
                        }, (100 + timeBuff));
                    } else {
                        setTimeout(function(){
                            slice.animate({ width:origWidth, opacity:'1.0' }, settings.animSpeed);
                        }, (100 + timeBuff));
                    }
                    timeBuff += 50;
                    i++;
                });
            } else if(currentEffect === 'fade'){
                createSlices(slider, settings, vars);

                firstSlice = $('.nivo-slice:first', slider);
                firstSlice.css({
                    'width': slider.width() + 'px'
                });

                firstSlice.animate({ opacity:'1.0' }, (settings.animSpeed*2), '', function(){ slider.trigger('nivo:animFinished'); });
            } else if(currentEffect === 'slideInRight'){
                createSlices(slider, settings, vars);

                firstSlice = $('.nivo-slice:first', slider);
                firstSlice.css({
                    'width': '0px',
                    'opacity': '1'
                });

                firstSlice.animate({ width: slider.width() + 'px' }, (settings.animSpeed*2), '', function(){ slider.trigger('nivo:animFinished'); });
            } else if(currentEffect === 'slideInLeft'){
                createSlices(slider, settings, vars);

                firstSlice = $('.nivo-slice:first', slider);
                firstSlice.css({
                    'width': '0px',
                    'opacity': '1',
                    'left': '',
                    'right': '0px'
                });

                firstSlice.animate({ width: slider.width() + 'px' }, (settings.animSpeed*2), '', function(){
                    // Reset positioning
                    firstSlice.css({
                        'left': '0px',
                        'right': ''
                    });
                    slider.trigger('nivo:animFinished');
                });
            } else if(currentEffect === 'boxRandom'){
                createBoxes(slider, settings, vars);

                totalBoxes = settings.boxCols * settings.boxRows;
                i = 0;
                timeBuff = 0;

                boxes = shuffle($('.nivo-box', slider));
                boxes.each(function(){
                    var box = $(this);
                    if(i === totalBoxes-1){
                        setTimeout(function(){
                            box.animate({ opacity:'1' }, settings.animSpeed, '', function(){ slider.trigger('nivo:animFinished'); });
                        }, (100 + timeBuff));
                    } else {
                        setTimeout(function(){
                            box.animate({ opacity:'1' }, settings.animSpeed);
                        }, (100 + timeBuff));
                    }
                    timeBuff += 20;
                    i++;
                });
            } else if(currentEffect === 'boxRain' || currentEffect === 'boxRainReverse' || currentEffect === 'boxRainGrow' || currentEffect === 'boxRainGrowReverse'){
                createBoxes(slider, settings, vars);

                totalBoxes = settings.boxCols * settings.boxRows;
                i = 0;
                timeBuff = 0;

                // Split boxes into 2D array
                var rowIndex = 0;
                var colIndex = 0;
                var box2Darr = [];
                box2Darr[rowIndex] = [];
                boxes = $('.nivo-box', slider);
                if(currentEffect === 'boxRainReverse' || currentEffect === 'boxRainGrowReverse'){
                    boxes = $('.nivo-box', slider)._reverse();
                }
                boxes.each(function(){
                    box2Darr[rowIndex][colIndex] = $(this);
                    colIndex++;
                    if(colIndex === settings.boxCols){
                        rowIndex++;
                        colIndex = 0;
                        box2Darr[rowIndex] = [];
                    }
                });

                // Run animation
                for(var cols = 0; cols < (settings.boxCols * 2); cols++){
                    var prevCol = cols;
                    for(var rows = 0; rows < settings.boxRows; rows++){
                        if(prevCol >= 0 && prevCol < settings.boxCols){
                            /* Due to some weird JS bug with loop vars
                            being used in setTimeout, this is wrapped
                            with an anonymous function call */
                            (function(row, col, time, i, totalBoxes) {
                                var box = $(box2Darr[row][col]);
                                var w = box.width();
                                var h = box.height();
                                if(currentEffect === 'boxRainGrow' || currentEffect === 'boxRainGrowReverse'){
                                    box.width(0).height(0);
                                }
                                if(i === totalBoxes-1){
                                    setTimeout(function(){
                                        box.animate({ opacity:'1', width:w, height:h }, settings.animSpeed/1.3, '', function(){ slider.trigger('nivo:animFinished'); });
                                    }, (100 + time));
                                } else {
                                    setTimeout(function(){
                                        box.animate({ opacity:'1', width:w, height:h }, settings.animSpeed/1.3);
                                    }, (100 + time));
                                }
                            })(rows, prevCol, timeBuff, i, totalBoxes);
                            i++;
                        }
                        prevCol--;
                    }
                    timeBuff += 100;
                }
            }
        };

        // Shuffle an array
        var shuffle = function(arr){
            for(var j, x, i = arr.length; i; j = parseInt(Math.random() * i, 10), x = arr[--i], arr[i] = arr[j], arr[j] = x);
            return arr;
        };

        // For debugging
        var trace = function(msg){
            if(this.console && typeof console.log !== 'undefined') { console.log(msg); }
        };

        // Start / Stop
        this.stop = function(){
            if(!$(element).data('nivo:vars').stop){
                $(element).data('nivo:vars').stop = true;
                trace('Stop Slider');
            }
        };

        this.start = function(){
            if($(element).data('nivo:vars').stop){
                $(element).data('nivo:vars').stop = false;
                trace('Start Slider');
            }
        };

        // Trigger the afterLoad callback
        settings.afterLoad.call(this);

        return this;
    };

    $.fn.nivoSlider = function(options) {
        return this.each(function(key, value){
            var element = $(this);
            // Return early if this element already has a plugin instance
            if (element.data('nivoslider')) { return element.data('nivoslider'); }
            // Pass options to plugin constructor
            var nivoslider = new NivoSlider(this, options);
            // Store plugin object in this element's data
            element.data('nivoslider', nivoslider);
        });
    };

    //Default settings
    $.fn.nivoSlider.defaults = {
        effect: 'random',
        slices: 15,
        boxCols: 8,
        boxRows: 4,
        animSpeed: 500,
        pauseTime: 3000,
        startSlide: 0,
        directionNav: true,
        controlNav: true,
        controlNavThumbs: false,
        pauseOnHover: true,
        manualAdvance: false,
        prevText: 'Prev',
        nextText: 'Next',
        randomStart: false,
        beforeChange: function(){},
        afterChange: function(){},
        slideshowEnd: function(){},
        lastSlide: function(){},
        afterLoad: function(){}
    };

    $.fn._reverse = [].reverse;

})(jQuery);
assets/sliders/nivoslider/themes/dark/loading.gif000064400000003311151213255540016204 0ustar00GIF89a������Ԕ��```@@@DDDnnn�����ܤ��$$$(((000666>>>jjj���rrr��������Š��PPP^^^������:::������\\\|||��ↆ�hhh���fff���FFF


������������xxx����������������������������֮�������������������Ƽ��������������zzz������LLLRRRZZZbbbBBB<<<���vvv222���***���XXX,,,���NNN���ddd444��������游�~~~������VVV���JJJHHH"""���������&&&888ttt...ppp   TTTlll���!�NETSCAPE2.0!�Created with ajaxload.info!�	
,�������#)-��$*.�6:7�
%+/�70=6��6��=?=��3@?�
�;E��7A>��B;��>CD�	�;+F� &03	8<݄!'14,<	�"P���F�`�!�	
,�������;WX[]�<UY-\$_&�JOSHTJ^*\�GP��2�
#��7�HKQ�:6�L=�FF�'Mij�NA�:b�I�T@�?R�/D��924I	::/E`ӃA&V,ZJCaT�T9Ij�����!�	
,�������	
i^,�CK
jl�8^ghQCRk�"dN<�h-P�cf�m]�,>�Jnj�2H0�T.-�43��5GЄ`eC�6:�f��:=σG5AT770/6�@C(CBA;@/܆F	r� �Z�@!�	
,�������?(N!lG�9'g[jNJ�A#HlF=B]O<�T&28�f_L;�9V(�H�J,	�kW�lf:�U�olǐTr�<b�JmK�G(>�N*#�F`8"�p
A�/`9"0�7�q�E	"T=36n� Fo)!�	
,�������aoe&?�	+qe4H2�D<
@33
%�F8<;�J @�@c�e[l�>8T�Bju�aB7�K�Aǐ�0�Cv^�	��ur�6b?ՅY)�3T3�+'s
�6F0:�.nt�n830�֭��!�	
,�������0@9(+A�TA8cJq
>�`GT6:"VVA�6@>/�B4eb�=	��oR�TD3�>h���F^���M'�0F7�BLd�63Ӑ]jl�7ۅ&NG�+TTc1SOJ�vwn\-Yr<�A#iΔ���@!�	
,�������7=?;>;"0�:TD	AB8Q"�6/37;(I@�0=:�GJ�73��QfA�6��D,<��3e��34�.��1&�2*^�Z�\�<N|��Zk-xcVz^8�Oyrvj{C�e H`�X !�	
,�������7:FF6��63FbDD=�&�:E;�A
.�TA>3�#*N�	D�K$+�C9�\T�6Jc�-��:�gY(�DZ�eu�,A�KXq��oPt2Q=FAl!�+ OjLM^a�G1N\@��A�;assets/sliders/nivoslider/themes/dark/arrows.png000064400000006020151213255540016123 0ustar00�PNG


IHDR#s�F�	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATxڴ�1jQ�g��o��3�!V[kHi���4���Ys�@B��b�X�9�mp��Me������,��,��,K�F3p�|>�E�Wk��x<ޟ��|$I��Tk���Kf~�{Y�q\��Y�V��LE�`��p8�q)�yޓ�zW�Tj�BA�Tk] b����0�<�`�"��F�e��}bf "s��XkA)e����(M���v��R
c��f���0t�r��2�����c����@�ݞcf�(D����Q�Z�+����Wkj�Z���4C��u�q`���C���O�o4t1�RCIEND�B`�assets/sliders/nivoslider/themes/dark/bullets.png000064400000006112151213255540016262 0ustar00�PNG


IHDRAMξ	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FuIDATx��?jQ��v&~�P�U@p�mR�����R))����3\	�v�+Rm�iw߼����ȟ����c�Z��ySU��Rv�:���{Z���1Ƈc-"��3ڶmڶ���r4�)%��H
`�)�IJ	)%03��ADP�	�D�`f��{�>w!�P�FU��pw�*T��9/�ݱ�n�)�k�8-�;�W��tO�?%�/��#��f�iL�7����Mg��W{z���<H| �5U�0^���r{�f�$��0�p8Bm�K��&N�
�g����ۄ˱��*N�^zXׁ�o����;����a����/��B�RuV�:�k�?ʽ�p;����3ae祻�|�~�}K�j��8IEND�B`�assets/sliders/nivoslider/themes/dark/dark.css000064400000004026151213255540015537 0ustar00/*
Skin Name: Nivo Slider Dark Theme
Skin URI: http://nivo.dev7studios.com
Description: A dark skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

.theme-dark.slider-wrapper {
    background: #222;
    padding: 10px;
}
.theme-dark .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    overflow: visible;
}
.theme-dark .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.theme-dark .nivoSlider a {
	border:0;
	display:block;
}

.theme-dark .nivo-controlNav {
	text-align: left;
	padding: 0;
	position: relative;
	z-index: 10;
}
.theme-dark .nivo-controlNav a {
	display:inline-block;
	width:10px;
	height:10px;
	background:url(bullets.png) no-repeat 0 2px;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.theme-dark .nivo-controlNav a.active {
	background-position:0 100%;
}

.theme-dark .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background: url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	top: auto;
	bottom: -36px;
	z-index: 11;
}
.theme-dark .nivo-directionNav a:hover {
    background-color: #333;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.theme-dark a.nivo-nextNav {
	background-position:-16px 50%;
	right:0px;
}
.theme-dark a.nivo-prevNav {
    background-position:11px 50%;
    left: auto;
	right: 35px;
}

.theme-dark .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.theme-dark .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.theme-dark .nivo-caption a:hover {
    color:#fff;
}

.theme-dark .nivo-controlNav.nivo-thumbs-enabled {
	width: 80%;
}
.theme-dark .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-dark .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}assets/sliders/nivoslider/themes/light/loading.gif000064400000003311151213255540016372 0ustar00GIF89a������Ԕ��```@@@DDDnnn�����ܤ��$$$(((000666>>>jjj���rrr��������Š��PPP^^^������:::������\\\|||��ↆ�hhh���fff���FFF


������������xxx����������������������������֮�������������������Ƽ��������������zzz������LLLRRRZZZbbbBBB<<<���vvv222���***���XXX,,,���NNN���ddd444��������游�~~~������VVV���JJJHHH"""���������&&&888ttt...ppp   TTTlll���!�NETSCAPE2.0!�Created with ajaxload.info!�	
,�������#)-��$*.�6:7�
%+/�70=6��6��=?=��3@?�
�;E��7A>��B;��>CD�	�;+F� &03	8<݄!'14,<	�"P���F�`�!�	
,�������;WX[]�<UY-\$_&�JOSHTJ^*\�GP��2�
#��7�HKQ�:6�L=�FF�'Mij�NA�:b�I�T@�?R�/D��924I	::/E`ӃA&V,ZJCaT�T9Ij�����!�	
,�������	
i^,�CK
jl�8^ghQCRk�"dN<�h-P�cf�m]�,>�Jnj�2H0�T.-�43��5GЄ`eC�6:�f��:=σG5AT770/6�@C(CBA;@/܆F	r� �Z�@!�	
,�������?(N!lG�9'g[jNJ�A#HlF=B]O<�T&28�f_L;�9V(�H�J,	�kW�lf:�U�olǐTr�<b�JmK�G(>�N*#�F`8"�p
A�/`9"0�7�q�E	"T=36n� Fo)!�	
,�������aoe&?�	+qe4H2�D<
@33
%�F8<;�J @�@c�e[l�>8T�Bju�aB7�K�Aǐ�0�Cv^�	��ur�6b?ՅY)�3T3�+'s
�6F0:�.nt�n830�֭��!�	
,�������0@9(+A�TA8cJq
>�`GT6:"VVA�6@>/�B4eb�=	��oR�TD3�>h���F^���M'�0F7�BLd�63Ӑ]jl�7ۅ&NG�+TTc1SOJ�vwn\-Yr<�A#iΔ���@!�	
,�������7=?;>;"0�:TD	AB8Q"�6/37;(I@�0=:�GJ�73��QfA�6��D,<��3e��34�.��1&�2*^�Z�\�<N|��Zk-xcVz^8�Oyrvj{C�e H`�X !�	
,�������7:FF6��63FbDD=�&�:E;�A
.�TA>3�#*N�	D�K$+�C9�\T�6Jc�-��:�gY(�DZ�eu�,A�KXq��oPt2Q=FAl!�+ OjLM^a�G1N\@��A�;assets/sliders/nivoslider/themes/light/arrows.png000064400000006257151213255540016325 0ustar00�PNG


IHDR/
$F)	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx���ϋa���8��82�
��D�” ��an"t��^<t�A�%]*�.AeE��)���B+ղ�8�ow�}N/�����,�Z�T�	!(��O�덀�8w����d2����c�X�W��=�1P���wV����t�2���F��U��8��l6��u}�N���r��
�o�J�7�X엢(�{�^c9��y�=���u}nY����g�����ڶm��F�cEQ��	#�\VUY��d296?���{ ��?UU�4-��/�$���[�֓~��}�0���b��/5��`0hʲ�mƟL&��4͏@/�m˲^%�C!Dp49�Z����v?����i�8�;6M���b��Z���y�\�](�.��l=�J�:�Ε|>�>��E�����U�p�C�x�0p�
�������t�����_���M�c�IEND�B`�assets/sliders/nivoslider/themes/light/light.css000064400000004042151213255540016111 0ustar00/*
Skin Name: Nivo Slider Light Theme
Skin URI: http://nivo.dev7studios.com
Description: A light skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

.theme-light.slider-wrapper {
    background: #fff;
    padding: 10px;
}
.theme-light .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    overflow: visible;
}
.theme-light .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.theme-light .nivoSlider a {
	border:0;
	display:block;
}

.theme-light .nivo-controlNav {
	text-align: left;
	padding: 0;
	position: relative;
	z-index: 10;
}
.theme-light .nivo-controlNav a {
	display:inline-block;
	width:10px;
	height:10px;
	background:url(bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.theme-light .nivo-controlNav a.active {
	background-position:0 100%;
}

.theme-light .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background: url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	top: auto;
	bottom: -36px;
	z-index: 11;
}
.theme-light .nivo-directionNav a:hover {
    background-color: #eee;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.theme-light a.nivo-nextNav {
	background-position:160% 50%;
	right:0px;
}
.theme-light a.nivo-prevNav {
    background-position:-60% 50%;
    left: auto;
	right: 35px;
}

.theme-light .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.theme-light .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.theme-light .nivo-caption a:hover {
    color:#fff;
}

.theme-light .nivo-controlNav.nivo-thumbs-enabled {
	width: 80%;
}
.theme-light .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-light .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}assets/sliders/nivoslider/themes/light/bullets.png000064400000006330151213255540016452 0ustar00�PNG


IHDR
X�.;	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��JQ��{�΄!�h"�-X�b�F!���K]T���|�Y�.t_!`�Z�	��ltS�T,%
U�L4u��.L������Y��p�O����ؘ�t:�ι��^�\^]^^>��h4���N��XkI�4.���KKK���q\���Q��{�^��v�s���0	�c��Rt��`�����?�!h�!
4@�X<�/)�G���jS)e�,CD�,C)e�����R�����N��ZH��022rZ�՚�Ri8Q"��Q`�ロ_�p���
0N�����&�[��p`e����t�����v{Sw��7��k�W��?|�v����w5+�ݿ����߾���@�S�WϜ����9v~Ձ�J?~��}Ϡ\��^*�!��s�^�z��<�	G駘~���x���ce,0$�<��]�jn������	6T������()�����,�_>��p��r�9�pt���
�=��~̓Q�IEND�B`�assets/sliders/nivoslider/themes/bar/loading.gif000064400000003311151213255540016027 0ustar00GIF89a������Ԕ��```@@@DDDnnn�����ܤ��$$$(((000666>>>jjj���rrr��������Š��PPP^^^������:::������\\\|||��ↆ�hhh���fff���FFF


������������xxx����������������������������֮�������������������Ƽ��������������zzz������LLLRRRZZZbbbBBB<<<���vvv222���***���XXX,,,���NNN���ddd444��������游�~~~������VVV���JJJHHH"""���������&&&888ttt...ppp   TTTlll���!�NETSCAPE2.0!�Created with ajaxload.info!�	
,�������#)-��$*.�6:7�
%+/�70=6��6��=?=��3@?�
�;E��7A>��B;��>CD�	�;+F� &03	8<݄!'14,<	�"P���F�`�!�	
,�������;WX[]�<UY-\$_&�JOSHTJ^*\�GP��2�
#��7�HKQ�:6�L=�FF�'Mij�NA�:b�I�T@�?R�/D��924I	::/E`ӃA&V,ZJCaT�T9Ij�����!�	
,�������	
i^,�CK
jl�8^ghQCRk�"dN<�h-P�cf�m]�,>�Jnj�2H0�T.-�43��5GЄ`eC�6:�f��:=σG5AT770/6�@C(CBA;@/܆F	r� �Z�@!�	
,�������?(N!lG�9'g[jNJ�A#HlF=B]O<�T&28�f_L;�9V(�H�J,	�kW�lf:�U�olǐTr�<b�JmK�G(>�N*#�F`8"�p
A�/`9"0�7�q�E	"T=36n� Fo)!�	
,�������aoe&?�	+qe4H2�D<
@33
%�F8<;�J @�@c�e[l�>8T�Bju�aB7�K�Aǐ�0�Cv^�	��ur�6b?ՅY)�3T3�+'s
�6F0:�.nt�n830�֭��!�	
,�������0@9(+A�TA8cJq
>�`GT6:"VVA�6@>/�B4eb�=	��oR�TD3�>h���F^���M'�0F7�BLd�63Ӑ]jl�7ۅ&NG�+TTc1SOJ�vwn\-Yr<�A#iΔ���@!�	
,�������7=?;>;"0�:TD	AB8Q"�6/37;(I@�0=:�GJ�73��QfA�6��D,<��3e��34�.��1&�2*^�Z�\�<N|��Zk-xcVz^8�Oyrvj{C�e H`�X !�	
,�������7:FF6��63FbDD=�&�:E;�A
.�TA>3�#*N�	D�K$+�C9�\T�6Jc�-��:�gY(�DZ�eu�,A�KXq��oPt2Q=FAl!�+ OjLM^a�G1N\@��A�;assets/sliders/nivoslider/themes/bar/arrows.png000064400000001470151213255540015752 0ustar00�PNG


IHDR<p�}O	pHYs�� cHRMz%������u0�`:�o�_�F�IDATx�ԙ�s�@�?d�!.�q8P�빺8pu����s��ZT���K�̤�l��fs3�f20!��ww��c'����0�����q,�I�o���4/�*�Y���f���L�=�2mۻ�-���p
d��Y%�_=�>�����v�	�w;�J෬���Q&{��^x#�(�U����)�乪&;�捨�@l��'��"X2�l�1,��j���6�l���?]C˃A�ґ}��	��*b.����$r�G�r�v_��n����q�c�[y�$�dG�B��E��
I�w_~V&91��k8�B��1�*���B0B���N�P�c:���'g�B�3�*�	�m���%N��"
����q��ޭ��3��z��7�_{3��Q�����kKe�k=\�;�5��l��c��H<JC���S��ܒo;��̳V��Qͮ����7R��M��������`�89T�Uͻ�he��k��q��N�cX�[��u�ʁFe��.�����EkrϘ�3��fX*�W���\yO��đFE;��7��[2�|D���W�Qq�0V#8=Zj�}��Ӕ�~��յL%�&���V0#\_�"`��*S_��q-���#�X�%%gw]�ub9[�sk���v�R��\{m���Q�'�ô��R��0���Jb��,z:$��>i����z����<IEND�B`�assets/sliders/nivoslider/themes/bar/bullets.png000064400000002401151213255540016102 0ustar00�PNG


IHDR(��
�	pHYs�� cHRMz%������u0�`:�o�_�F�IDATxڴWMHcW��{y�qb'�c�����E������?ࢋ.f�HK��P�l��Q(ͪ�xu~H��?�h%��F�F�B������}r}�d�s������sO���B)�0��,�!��d�e�Y_B)5�@���NьT����@bO�"}
�Ğ�F�s̢�@U<�"���i�l>��>�{8ظ@0���GX��L&�(A���$��FI��>::���;�M���p6�
�~$�|ssSEQp�N�S>88�����T���Ǭ��z;gff���b��p8����N�
�V<��l�\.g:V( IR�i�����vww#�N�2Fл�XP][[[W*���9�Br&��!�{l���Vpt�����������������/,,���+�g��Ʋ�Q;�P;;;ۺ��=8==���>0Эr�\�|�XLJ�@�#���7j7Ie�Sˈ��NT�
}�.2�漕l�e�ؠ#�d�T�@��aSz������5U���n9媌
\a�ob�a��<���&���o��XѨܻ^��B��:�E�������>���*�P���<+m�$���J��b�筭-��ͩ�DB�f���ǏE��'��\���y
�mp�Đ��ekk�ft�b$�>mnn~���@je��`����JT���ɽ���X,�^ZZ����)
@�/E��5��k`�q*�|@����������ݾ@>==����G\L�%�`�
��
CCCc<Ou
�������^���B�z�V8??�\.�Y��������4���Q�[��r���_@{{������R��ɲ|���B*��ը�I�k��ˮ�.���n:�V�	WWW����N*�����Slhh ���	Ci�Ȋ*���яE��gd�ݾ800�
����t:K&��l6�#���ی��[�@M:��VQ�X0|��d��lgg'V,��j.��}�j�E����dWccc���lll�ggg���Mt��(
����i�O.q�q+#�=F�j���?�d2�]\\��F�XT�"ur���&3
'*Ȧj�M�(��Ќ�I�?7��	7���76��IEND�B`�assets/sliders/nivoslider/themes/bar/bar.css000064400000007005151213255540015205 0ustar00/*
Skin Name: Nivo Slider Bar Theme
Skin URI: http://nivo.dev7studios.com
Description: The bottom bar skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: false
*/

.theme-bar.slider-wrapper {
    position: relative;
    border: 1px solid #333;
    overflow: hidden;
}
.theme-bar .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
}
.theme-bar .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.theme-bar .nivoSlider a {
	border:0;
	display:block;
}

.theme-bar .nivo-controlNav {
    position: absolute;
    left: 0;
    bottom: -41px;
    z-index: 10;
    width: 100%;
    height: 30px;
	text-align: center;
	padding: 5px 0;
	border-top: 1px solid #333;
	background: #333;
    background: -moz-linear-gradient(top,  #565656 0%, #333333 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#565656), color-stop(100%,#333333)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #565656 0%,#333333 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #565656 0%,#333333 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #565656 0%,#333333 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #565656 0%,#333333 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#565656', endColorstr='#333333',GradientType=0 ); /* IE6-9 */
    opacity: 0.5;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.theme-bar:hover .nivo-controlNav {
    bottom: 0;
    opacity: 1;
}
.theme-bar .nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 5px 2px 0 2px;
}
.theme-bar .nivo-controlNav a.active {
	background-position:0 -22px;
}

.theme-bar .nivo-directionNav a {
	display:block;
	border:0;
	color: #fff;
	text-transform: uppercase;
	top: auto;
	bottom: 10px;
	z-index: 11;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 20px;
	opacity: 0.5;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.theme-bar a.nivo-nextNav { right: -50px; }
.theme-bar a.nivo-prevNav { left: -50px; }
.theme-bar:hover a.nivo-nextNav { 
    right: 15px; 
    opacity: 1;
}
.theme-bar:hover a.nivo-prevNav { 
    left: 15px; 
    opacity: 1;
}
.theme-bar .nivo-directionNav a:hover { color: #ddd; }

.theme-bar .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.theme-bar:hover .nivo-caption {
    bottom: 41px;
}
.theme-bar .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.theme-bar .nivo-caption a:hover {
    color:#fff;
}

.theme-bar .nivo-controlNav.nivo-thumbs-enabled {
	width: 100%;
}
.theme-bar .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-bar .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}assets/sliders/nivoslider/themes/default/loading.gif000064400000003311151213255540016707 0ustar00GIF89a������Ԕ��```@@@DDDnnn�����ܤ��$$$(((000666>>>jjj���rrr��������Š��PPP^^^������:::������\\\|||��ↆ�hhh���fff���FFF


������������xxx����������������������������֮�������������������Ƽ��������������zzz������LLLRRRZZZbbbBBB<<<���vvv222���***���XXX,,,���NNN���ddd444��������游�~~~������VVV���JJJHHH"""���������&&&888ttt...ppp   TTTlll���!�NETSCAPE2.0!�Created with ajaxload.info!�	
,�������#)-��$*.�6:7�
%+/�70=6��6��=?=��3@?�
�;E��7A>��B;��>CD�	�;+F� &03	8<݄!'14,<	�"P���F�`�!�	
,�������;WX[]�<UY-\$_&�JOSHTJ^*\�GP��2�
#��7�HKQ�:6�L=�FF�'Mij�NA�:b�I�T@�?R�/D��924I	::/E`ӃA&V,ZJCaT�T9Ij�����!�	
,�������	
i^,�CK
jl�8^ghQCRk�"dN<�h-P�cf�m]�,>�Jnj�2H0�T.-�43��5GЄ`eC�6:�f��:=σG5AT770/6�@C(CBA;@/܆F	r� �Z�@!�	
,�������?(N!lG�9'g[jNJ�A#HlF=B]O<�T&28�f_L;�9V(�H�J,	�kW�lf:�U�olǐTr�<b�JmK�G(>�N*#�F`8"�p
A�/`9"0�7�q�E	"T=36n� Fo)!�	
,�������aoe&?�	+qe4H2�D<
@33
%�F8<;�J @�@c�e[l�>8T�Bju�aB7�K�Aǐ�0�Cv^�	��ur�6b?ՅY)�3T3�+'s
�6F0:�.nt�n830�֭��!�	
,�������0@9(+A�TA8cJq
>�`GT6:"VVA�6@>/�B4eb�=	��oR�TD3�>h���F^���M'�0F7�BLd�63Ӑ]jl�7ۅ&NG�+TTc1SOJ�vwn\-Yr<�A#iΔ���@!�	
,�������7=?;>;"0�:TD	AB8Q"�6/37;(I@�0=:�GJ�73��QfA�6��D,<��3e��34�.��1&�2*^�Z�\�<N|��Zk-xcVz^8�Oyrvj{C�e H`�X !�	
,�������7:FF6��63FbDD=�&�:E;�A
.�TA>3�#*N�	D�K$+�C9�\T�6Jc�-��:�gY(�DZ�eu�,A�KXq��oPt2Q=FAl!�+ OjLM^a�G1N\@��A�;assets/sliders/nivoslider/themes/default/arrows.png000064400000001470151213255540016632 0ustar00�PNG


IHDR<p�}O	pHYs�� cHRMz%������u0�`:�o�_�F�IDATx�ԙ�s�@�?d�!.�q8P�빺8pu����s��ZT���K�̤�l��fs3�f20!��ww��c'����0�����q,�I�o���4/�*�Y���f���L�=�2mۻ�-���p
d��Y%�_=�>�����v�	�w;�J෬���Q&{��^x#�(�U����)�乪&;�捨�@l��'��"X2�l�1,��j���6�l���?]C˃A�ґ}��	��*b.����$r�G�r�v_��n����q�c�[y�$�dG�B��E��
I�w_~V&91��k8�B��1�*���B0B���N�P�c:���'g�B�3�*�	�m���%N��"
����q��ޭ��3��z��7�_{3��Q�����kKe�k=\�;�5��l��c��H<JC���S��ܒo;��̳V��Qͮ����7R��M��������`�89T�Uͻ�he��k��q��N�cX�[��u�ʁFe��.�����EkrϘ�3��fX*�W���\yO��đFE;��7��[2�|D���W�Qq�0V#8=Zj�}��Ӕ�~��յL%�&���V0#\_�"`��*S_��q-���#�X�%%gw]�ub9[�sk���v�R��\{m���Q�'�ô��R��0���Jb��,z:$��>i����z����<IEND�B`�assets/sliders/nivoslider/themes/default/bullets.png000064400000002401151213255540016762 0ustar00�PNG


IHDR(��
�	pHYs�� cHRMz%������u0�`:�o�_�F�IDATxڴWMHcW��{y�qb'�c�����E������?ࢋ.f�HK��P�l��Q(ͪ�xu~H��?�h%��F�F�B������}r}�d�s������sO���B)�0��,�!��d�e�Y_B)5�@���NьT����@bO�"}
�Ğ�F�s̢�@U<�"���i�l>��>�{8ظ@0���GX��L&�(A���$��FI��>::���;�M���p6�
�~$�|ssSEQp�N�S>88�����T���Ǭ��z;gff���b��p8����N�
�V<��l�\.g:V( IR�i�����vww#�N�2Fл�XP][[[W*���9�Br&��!�{l���Vpt�����������������/,,���+�g��Ʋ�Q;�P;;;ۺ��=8==���>0Эr�\�|�XLJ�@�#���7j7Ie�Sˈ��NT�
}�.2�漕l�e�ؠ#�d�T�@��aSz������5U���n9媌
\a�ob�a��<���&���o��XѨܻ^��B��:�E�������>���*�P���<+m�$���J��b�筭-��ͩ�DB�f���ǏE��'��\���y
�mp�Đ��ekk�ft�b$�>mnn~���@je��`����JT���ɽ���X,�^ZZ����)
@�/E��5��k`�q*�|@����������ݾ@>==����G\L�%�`�
��
CCCc<Ou
�������^���B�z�V8??�\.�Y��������4���Q�[��r���_@{{������R��ɲ|���B*��ը�I�k��ˮ�.���n:�V�	WWW����N*�����Slhh ���	Ci�Ȋ*���яE��gd�ݾ800�
����t:K&��l6�#���ی��[�@M:��VQ�X0|��d��lgg'V,��j.��}�j�E����dWccc���lll�ggg���Mt��(
����i�O.q�q+#�=F�j���?�d2�]\\��F�XT�"ur���&3
'*Ȧj�M�(��Ќ�I�?7��	7���76��IEND�B`�assets/sliders/nivoslider/themes/default/default.css000064400000003672151213255540016753 0ustar00/*
Skin Name: Nivo Slider Default Theme
Skin URI: http://nivo.dev7studios.com
Description: The default skin for the Nivo Slider.
Version: 1.3
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

.metaslider .theme-default .nivoSlider {
	position:relative;
	box-shadow: 0px 1px 5px 0px #4a4a4a;
}
.metaslider .theme-default .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.metaslider .theme-default .nivoSlider a {
	border:0;
	display:block;
}

.metaslider .theme-default .nivo-controlNav {
	text-align: center;
	padding: 20px 0;
}
.metaslider .theme-default .nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.metaslider .theme-default .nivo-controlNav a.active {
	background-position:0 -22px;
}

.metaslider .theme-default .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	opacity: 0;
	transition: all 200ms ease-in-out;
}
.metaslider .theme-default:hover .nivo-directionNav a { opacity: 1; }
.metaslider .theme-default a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
.metaslider .theme-default a.nivo-prevNav {
	left:15px;
}

.metaslider .theme-default .nivo-caption {
	font-family: Helvetica, Arial, sans-serif;
}
.metaslider .theme-default .nivo-caption a {
	color:#fff;
	border-bottom:1px dotted #fff;
}
.metaslider .theme-default .nivo-caption a:hover {
	color:#fff;
}

.metaslider .theme-default .nivo-controlNav.nivo-thumbs-enabled {
	width: 100%;
}
.metaslider .theme-default .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.metaslider .theme-default .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}
assets/sliders/nivoslider/license.txt000064400000002115151213255540014056 0ustar00 Copyright (c) 2010-2012 Dev7studios

 Permission is hereby granted, free of charge, to any person
 obtaining a copy of this software and associated documentation
 files (the "Software"), to deal in the Software without
 restriction, including without limitation the rights to use,
 copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the
 Software is furnished to do so, subject to the following
 conditions:

 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.

 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 OTHER DEALINGS IN THE SOFTWARE.
assets/sliders/coin-slider/coin-slider.min.js000064400000014770151213255540015267 0ustar00!function(t){var d=[],e=[],s=[],a=[],n=[],o=[],c=[],r=[],l=[],p=[],u=[],h=0;t.fn.coinslider=t.fn.CoinSlider=function(f){var v=function(i){if(!0===d[i.id].autoplay){clearInterval(c[i.id]);var t=d[i.id].delay+d[i.id].spw*d[i.id].sph*d[i.id].sDelay;c[i.id]=setInterval((function(){g(i)}),t)}},g=function(i,a){!0!==d[i.id].pause&&(x(i),p[i.id]=0,l[i.id]=setInterval((function(){w(i,e[i.id][p[i.id]])}),d[i.id].sDelay),t(i).css({"background-image":'url("'+s[i.id][r[i.id]]+'")'}),void 0===a?r[i.id]++:"prev"==a?r[i.id]--:r[i.id]=a,r[i.id]==s[i.id].length&&(r[i.id]=0),-1==r[i.id]&&(r[i.id]=s[i.id].length-1),t(".cs-button-"+i.id).removeClass("cs-active"),t("#cs-button-"+i.id+"-"+(r[i.id]+1)).addClass("cs-active"),o[i.id][r[i.id]]?(t("#cs-title-"+i.id).css({opacity:0}).animate({opacity:d[i.id].opacity},d[i.id].titleSpeed),t("#cs-title-"+i.id).html(o[i.id][r[i.id]])):t("#cs-title-"+i.id).css("opacity",0))},w=function(i,e){t(".cs-"+i.id).attr("href",a[i.id][r[i.id]]).attr("target",n[i.id][r[i.id]]),p[i.id]!=d[i.id].spw*d[i.id].sph?(t("#cs-"+i.id+e).css({opacity:0,"background-image":'url("'+s[i.id][r[i.id]]+'")'}),t("#cs-"+i.id+e).animate({opacity:1},300),p[i.id]++):clearInterval(l[i.id])},x=function(i){var t,s,a,n,o=["random","swirl","rain","straight"];if(n=""===d[i.id].effect?o[Math.floor(Math.random()*o.length)]:d[i.id].effect,e[i.id]=[],"random"==n){for(a=0,t=1;t<=d[i.id].sph;t++)for(s=1;s<=d[i.id].spw;s++)e[i.id][a]=t+""+s,a++;b(e[i.id])}"rain"==n&&y(i),"swirl"==n&&m(i),"straight"==n&&k(i),u[i.id]*=-1,u[i.id]>0&&e[i.id].reverse()},b=function(i){var t,d,e,s=i.length;if(0===s)return!1;for(;--s;)t=Math.floor(Math.random()*(s+1)),d=i[s],e=i[t],i[s]=e,i[t]=d},m=function(i){for(var t,s,a=d[i.id].sph,n=d[i.id].spw,o=1,c=1,r=0,l=0,p=0,u=!0;u;){for(l=0===r||2===r?n:a,s=1;s<=l;s++)if(e[i.id][p]=o+""+c,p++,s!=l)switch(r){case 0:c++;break;case 1:o++;break;case 2:c--;break;case 3:o--}switch(r=(r+1)%4){case 0:n--,c++;break;case 1:a--,o++;break;case 2:n--,c--;break;case 3:a--,o--}n<=(t=S(a,n)-N(a,n))&&a<=t&&(u=!1)}},y=function(t){for(var s=d[t.id].sph,a=d[t.id].spw,n=0,o=1,c=1,r=1,l=!0;l;){for(i=r;i<=o;i++)e[t.id][n]=i+""+parseInt(c-i+1),n++;c++,o<s&&c<a&&s<a&&o++,o<s&&s>=a&&o++,c>a&&r++,r>o&&(l=!1)}},k=function(i){var t,s,a=0;for(t=1;t<=d[i.id].sph;t++)for(s=1;s<=d[i.id].spw;s++)e[i.id][a]=t+""+s,a++},N=function(i,t){return i>t?t:i},S=function(i,t){return i<t?t:i},P=function(i){""===i.id&&(i.id="coinsliderUniqueID"+h++),e[i.id]=[],s[i.id]=[],a[i.id]=[],n[i.id]=[],o[i.id]=[],r[i.id]=0,p[i.id]=0,u[i.id]=1,d[i.id]=t.extend({},t.fn.coinslider.defaults,f),t.each(t("#"+i.id+" img"),(function(d,e){s[i.id][d]=t(e).attr("src")||e.src,a[i.id][d]=t(e).parent().is("a")?t(e).parent().attr("href"):"",n[i.id][d]=t(e).parent().is("a")?t(e).parent().attr("target"):"",o[i.id][d]=t(e).next().is("span")?t(e).next().html():"",t(e).hide(),t(e).next().hide()})),t(i).css({"background-image":'url("'+s[i.id][0]+'")',width:d[i.id].width,height:d[i.id].height,position:"relative","background-position":"top left"}).wrap("<div class='coin-slider' id='coin-slider-"+i.id+"' />"),t("#"+i.id).append("<div class='cs-title' id='cs-title-"+i.id+"' style='position: absolute; bottom:0; left: 0; z-index: 1000;'></div>"),function(i){var s,n,o=parseInt(d[i.id].width/d[i.id].spw),c=o,r=parseInt(d[i.id].height/d[i.id].sph),l=r,p=0,u=0,h=0,f=d[i.id].width-d[i.id].spw*c,v=f,g=d[i.id].height-d[i.id].sph*l;for(s=1;s<=d[i.id].sph;s++){for(v=f,g>0?(g--,l=r+1):l=r,n=1;n<=d[i.id].spw;n++)v>0?(v--,c=o+1):c=o,e[i.id][p]=s+""+n,p++,d[i.id].links?t("#"+i.id).append("<a href='"+a[i.id][0]+"' class='cs-"+i.id+"' id='cs-"+i.id+s+n+"' style='width:"+c+"px; height:"+l+"px; float: left; position: absolute;'></a>"):t("#"+i.id).append("<div class='cs-"+i.id+"' id='cs-"+i.id+s+n+"' style='width:"+c+"px; height:"+l+"px; float: left; position: absolute;'></div>"),t("#cs-"+i.id+s+n).css({"background-position":-u+"px "+-h+"px",left:u,top:h}),u+=c;h+=l,u=0}d[i.id].navigationPrevNextAlwaysShown||(t(".cs-"+i.id).mouseover((function(){t("#cs-navigation-"+i.id).show()})),t(".cs-"+i.id).mouseout((function(){t("#cs-navigation-"+i.id).hide()})),t("#cs-title-"+i.id).mouseover((function(){t("#cs-navigation-"+i.id).show()})),t("#cs-title-"+i.id).mouseout((function(){t("#cs-navigation-"+i.id).hide()}))),d[i.id].hoverPause&&(t(".cs-"+i.id).mouseover((function(){d[i.id].pause=!0})),t(".cs-"+i.id).mouseout((function(){d[i.id].pause=!1})),t("#cs-title-"+i.id).mouseover((function(){d[i.id].pause=!0})),t("#cs-title-"+i.id).mouseout((function(){d[i.id].pause=!1})))}(i),d[i.id].navigation&&function(i){if(d[i.id].showNavigationPrevNext&&(t(i).append("<div id='cs-navigation-"+i.id+"'></div>"),d[i.id].navigationPrevNextAlwaysShown||t("#cs-navigation-"+i.id).hide(),t("#cs-navigation-"+i.id).append("<a href='#' id='cs-prev-"+i.id+"' class='cs-prev' aria-label='Previous Slide'>"+d[i.id].prevText+"</a>"),t("#cs-navigation-"+i.id).append("<a href='#' id='cs-next-"+i.id+"' class='cs-next' aria-label='Next Slide'>"+d[i.id].nextText+"</a>"),t("#cs-prev-"+i.id).css({position:"absolute",top:d[i.id].height/2-15,left:0,"z-index":1001,"line-height":"30px",opacity:d[i.id].opacity}).click((function(t){t.preventDefault(),g(i,"prev"),v(i)})).mouseover((function(){t("#cs-navigation-"+i.id).show()})),t("#cs-next-"+i.id).css({position:"absolute",top:d[i.id].height/2-15,right:0,"z-index":1001,"line-height":"30px",opacity:d[i.id].opacity}).click((function(t){t.preventDefault(),g(i),v(i)})).mouseover((function(){t("#cs-navigation-"+i.id).show()})),t("#cs-navigation-"+i.id+" a").mouseout((function(){d[i.id].navigationPrevNextAlwaysShown||t("#cs-navigation-"+i.id).hide(),d[i.id].pause=!1}))),d[i.id].showNavigationButtons){var e;for(t("<div id='cs-buttons-"+i.id+"' class='cs-buttons' role='group' aria-label='Slide controls'></div>").appendTo(t("#coin-slider-"+i.id)),e=1;e<s[i.id].length+1;e++)t("#cs-buttons-"+i.id).append("<a href='#' class='cs-button-"+i.id+"' id='cs-button-"+i.id+"-"+e+"' aria-label='Show slide "+e+" of "+s[i.id].length+"'>"+e+"</a>");t.each(t(".cs-button-"+i.id),(function(d,e){t(e).click((function(e){t(".cs-button-"+i.id).removeClass("cs-active"),t(this).addClass("cs-active"),e.preventDefault(),g(i,d),v(i)}))})),t("#cs-buttons-"+i.id).css({left:"50%","margin-left":15*-s[i.id].length/2-5,position:"relative"})}}(i),g(i,0),v(i)};this.each((function(){P(this)}))},t.fn.coinslider.defaults={width:565,height:290,spw:7,sph:5,delay:3e3,sDelay:30,opacity:.7,titleSpeed:500,effect:"",links:!0,hoverPause:!0,prevText:"prev",nextText:"next",navigation:!0,showNavigationPrevNext:!0,showNavigationButtons:!0,navigationPrevNextAlwaysShown:!1,autoplay:!1}}(jQuery);
assets/sliders/coin-slider/coin-slider.js000064400000030741151213255550014502 0ustar00/**
 * Coin Slider - Unique jQuery Image Slider
 * @version: 1.0 - (2010/04/04)
 * @requires jQuery v1.2.2 or later
 * @author Ivan Lazarevic
 * Examples and documentation at: http://workshop.rs/projects/coin-slider/

 * Licensed under MIT licence:
 *   http://www.opensource.org/licenses/mit-license.php
**/

(function ($) {

	var	params		= [],
		order		= [],
		images		= [],
		links		= [],
		linksTarget	= [],
		titles		= [],
		interval	= [],
		imagePos	= [],
		appInterval	= [],
		squarePos	= [],
		reverse		= [],
		uniqueIDPrefix	= "coinsliderUniqueID",
		uniqueIDCounter	= 0;

	$.fn.coinslider = $.fn.CoinSlider = function (options) {

		// squares positions
		var setFields = function (el) {

			var	tWidth	= parseInt(params[el.id].width / params[el.id].spw),
				sWidth	= tWidth,
				tHeight	= parseInt(params[el.id].height / params[el.id].sph),
				sHeight	= tHeight,
				counter	= 0,
				sLeft	= 0,
				sTop	= 0,
				i,
				j,
				tgapx	= params[el.id].width - params[el.id].spw * sWidth,
				gapx	= tgapx,
				tgapy	= params[el.id].height - params[el.id].sph * sHeight,
				gapy	= tgapy;

			for (i = 1; i <= params[el.id].sph; i++) {
				gapx = tgapx;

				if (gapy > 0) {
					gapy--;
					sHeight = tHeight + 1;
				} else {
					sHeight = tHeight;
				}

				for (j = 1; j <= params[el.id].spw; j++) {

					if (gapx > 0) {
						gapx--;
						sWidth = tWidth + 1;
					} else {
						sWidth = tWidth;
					}

					order[el.id][counter] = i + "" + j;
					counter++;

					if (params[el.id].links) {
						$('#' + el.id).append("<a href='" + links[el.id][0] + "' class='cs-" + el.id + "' id='cs-" + el.id + i + j + "' style='width:" + sWidth + "px; height:" + sHeight + "px; float: left; position: absolute;'></a>");
					} else {
						$('#' + el.id).append("<div class='cs-" + el.id + "' id='cs-" + el.id + i + j + "' style='width:" + sWidth + "px; height:" + sHeight + "px; float: left; position: absolute;'></div>");
					}

					// positioning squares
					$("#cs-" + el.id + i + j).css({
						'background-position': -sLeft + 'px ' + (-sTop + 'px'),
						'left' : sLeft,
						'top': sTop
					});

					sLeft += sWidth;
				}

				sTop += sHeight;
				sLeft = 0;

			}

			if (!params[el.id].navigationPrevNextAlwaysShown) {

				$('.cs-' + el.id).mouseover(function(){
					$('#cs-navigation-' + el.id).show();
				});

				$('.cs-' + el.id).mouseout(function(){
					$('#cs-navigation-' + el.id).hide();
				});

				$('#cs-title-' + el.id).mouseover(function(){
					$('#cs-navigation-' + el.id).show();
				});

				$('#cs-title-' + el.id).mouseout(function(){
					$('#cs-navigation-' + el.id).hide();
				});
			}

			if (params[el.id].hoverPause) {
				$('.cs-' + el.id).mouseover(function(){
					params[el.id].pause = true;
				});

				$('.cs-' + el.id).mouseout(function(){
					params[el.id].pause = false;
				});

				$('#cs-title-' + el.id).mouseover(function(){
					params[el.id].pause = true;
				});

				$('#cs-title-' + el.id).mouseout(function(){
					params[el.id].pause = false;
				});
			}

		};

		var transitionCall = function (el) {
			if (params[el.id].autoplay === true) {
				clearInterval(interval[el.id]);
				var delay = params[el.id].delay + params[el.id].spw * params[el.id].sph * params[el.id].sDelay;
				interval[el.id] = setInterval(function() { transition(el);  }, delay);
			}

		};

		// transitions
		var transition = function (el, direction) {

			if(params[el.id].pause === true){
				return;
			}

			effect(el);

			squarePos[el.id] = 0;
			appInterval[el.id] = setInterval(function() { appereance(el,order[el.id][squarePos[el.id]]);  },params[el.id].sDelay);

			$(el).css({ 'background-image': 'url("' + images[el.id][imagePos[el.id]] + '")' });

			if (typeof(direction) == "undefined") {
				imagePos[el.id]++;
			} else {
				if (direction == 'prev') {
					imagePos[el.id]--;
				} else {
					imagePos[el.id] = direction;
				}
			}

			if (imagePos[el.id] == images[el.id].length) {
				imagePos[el.id] = 0;
			}

			if (imagePos[el.id] == -1) {
				imagePos[el.id] = images[el.id].length-1;
			}

			$('.cs-button-' + el.id).removeClass('cs-active');
			$('#cs-button-' + el.id + "-" + (imagePos[el.id] + 1)).addClass('cs-active');

			if (titles[el.id][imagePos[el.id]]) {
				$('#cs-title-' + el.id).css({ 'opacity' : 0 }).animate({ 'opacity' : params[el.id].opacity }, params[el.id].titleSpeed);
				$('#cs-title-' + el.id).html(titles[el.id][imagePos[el.id]]);
			} else {
				$('#cs-title-' + el.id).css('opacity',0);
			}

		};

		var appereance = function (el, sid) {

			$('.cs-' + el.id).attr('href',links[el.id][imagePos[el.id]]).attr('target',linksTarget[el.id][imagePos[el.id]]);

			if (squarePos[el.id] == params[el.id].spw * params[el.id].sph) {
				clearInterval(appInterval[el.id]);
				return;
			}

			$('#cs-' + el.id + sid).css({ opacity: 0, 'background-image': 'url("' + images[el.id][imagePos[el.id]] + '")' });
			$('#cs-' + el.id + sid).animate({ opacity: 1 }, 300);
			squarePos[el.id]++;

		};

		// navigation
		var setNavigation = function (el) {
			// create prev and next
			if (params[el.id].showNavigationPrevNext) {
				$(el).append("<div id='cs-navigation-" + el.id + "'></div>");

				if (!params[el.id].navigationPrevNextAlwaysShown) {
					$('#cs-navigation-' + el.id).hide();
				}

				$('#cs-navigation-' + el.id).append("<a href='#' id='cs-prev-" + el.id + "' class='cs-prev' aria-label='Previous Slide'>"+params[el.id].prevText+"</a>");
				$('#cs-navigation-' + el.id).append("<a href='#' id='cs-next-" + el.id + "' class='cs-next' aria-label='Next Slide'>"+params[el.id].nextText+"</a>");
				$('#cs-prev-' + el.id).css({
					'position'		: 'absolute',
					'top'			: params[el.id].height / 2 - 15,
					'left'			: 0,
					'z-index'		: 1001,
					'line-height'	: '30px',
					'opacity'		: params[el.id].opacity
				}).click( function(e){
					e.preventDefault();
					transition(el,'prev');
					transitionCall(el);
				}).mouseover( function(){ $('#cs-navigation-' + el.id).show(); });

				$('#cs-next-' + el.id).css({
					'position'		: 'absolute',
					'top'			: params[el.id].height / 2 - 15,
					'right'			: 0,
					'z-index'		: 1001,
					'line-height'	: '30px',
					'opacity'		: params[el.id].opacity
				}).click( function(e){
					e.preventDefault();
					transition(el);
					transitionCall(el);
				}).mouseover( function(){ $('#cs-navigation-' + el.id).show(); });

				$('#cs-navigation-' + el.id + ' a').mouseout(function(){
					if (!params[el.id].navigationPrevNextAlwaysShown)
						$('#cs-navigation-' + el.id).hide();

					params[el.id].pause = false;
				});
			}

			// image buttons
			if (params[el.id].showNavigationButtons) {
				$("<div id='cs-buttons-" + el.id + "' class='cs-buttons' role='group' aria-label='Slide controls'></div>").appendTo($('#coin-slider-' + el.id));

				var k;
				for (k = 1; k < images[el.id].length + 1; k++){
					$('#cs-buttons-' + el.id).append("<a href='#' class='cs-button-" + el.id + "' id='cs-button-" + el.id + "-" + k + "' aria-label='Show slide " + k + " of " + images[el.id].length + "'>" + k + "</a>");
				}

				$.each($('.cs-button-' + el.id), function(i,item){
					$(item).click( function(e){
						$('.cs-button-' + el.id).removeClass('cs-active');
						$(this).addClass('cs-active');
						e.preventDefault();
						transition(el,i);
						transitionCall(el);
					});
				});

				$("#cs-buttons-" + el.id).css({
					'left'			: '50%',
					'margin-left'	: -images[el.id].length * 15 / 2 - 5,
					'position'		: 'relative'
				});
			}

		};

		// effects
		var effect = function (el) {
			var effA = ['random','swirl','rain','straight'],
				i,
				j,
				counter,
				eff;

			if (params[el.id].effect === '') {
				eff = effA[Math.floor(Math.random() * (effA.length))];
			} else {
				eff = params[el.id].effect;
			}

			order[el.id] = [];

			if (eff == 'random') {
				counter = 0;
					for (i = 1; i <= params[el.id].sph; i++) {
						for (j = 1; j <= params[el.id].spw; j++) {
							order[el.id][counter] = i + "" + j;
							counter++;
						}
					}
				randomEffect(order[el.id]);
			}

			if (eff == 'rain') {
				rain(el);
			}

			if (eff == 'swirl') {
				swirl(el);
			}

			if (eff == 'straight') {
				straight(el);
			}

			reverse[el.id] *= -1;

			if (reverse[el.id] > 0) {
				order[el.id].reverse();
			}

		};

		// shuffle array function
		var randomEffect = function (arr) {

			var i = arr.length,
				j,
				tempi,
				tempj;

			if ( i === 0 ) {
				return false;
			}

			while ( --i ) {
				j = Math.floor( Math.random() * ( i + 1 ) );
				tempi = arr[i];
				tempj = arr[j];
				arr[i] = tempj;
				arr[j] = tempi;
			}
		};

		//swirl effect by milos popovic
		var swirl = function (el) {

			var n = params[el.id].sph,
				m = params[el.id].spw,
				x = 1,
				y = 1,
				going = 0,
				num = 0,
				c = 0,
				check,
				dowhile = true,
				i;

			while (dowhile) {

				num = (going === 0 || going === 2) ? m : n;

				for (i = 1; i <= num; i++){

					order[el.id][c] = x + "" + y;
					c++;

					if (i != num) {
						switch(going){
							case 0 : y++; break;
							case 1 : x++; break;
							case 2 : y--; break;
							case 3 : x--; break;

						}
					}
				}

				going = (going + 1) % 4;

				switch (going) {
					case 0 : m--; y++; break;
					case 1 : n--; x++; break;
					case 2 : m--; y--; break;
					case 3 : n--; x--; break;
				}

				check = max(n,m) - min(n,m);
				if (m <= check && n <= check) {
					dowhile = false;
				}

			}
		};

		// rain effect
		var rain = function (el) {

			var n = params[el.id].sph,
				m = params[el.id].spw,
				c = 0,
				to = 1,
				to2 = 1,
				from = 1,
				dowhile = true;

			while (dowhile) {

				for (i = from; i <= to; i++) {
					order[el.id][c] = i + '' + parseInt(to2 - i + 1);
					c++;
			}

				to2++;

				if (to < n && to2 < m && n < m) {
					to++;
				}

				if (to < n && n >= m) {
					to++;
				}

				if (to2 > m) {
					from++;
				}

				if (from > to) {
					dowhile= false;
				}

			}

		};

		// straight effect
		var straight = function (el) {
			var counter = 0,
				i,
				j;

			for (i = 1; i <= params[el.id].sph; i++) {
				for (j = 1; j <= params[el.id].spw; j++) {
					order[el.id][counter] = i + '' + j;
					counter++;
				}
			}
		};

		var min = function (n,m) {
			if (n > m) {
				return m;
			} else {
				return n;
			}
		};

		var max = function (n,m) {
			if (n < m) {
				return m;
			} else {
				return n;
			}
		};

		var init = function (el) {

			if( el.id === '' ){
				el.id = uniqueIDPrefix + uniqueIDCounter++;
			}

			order[el.id]		= [];	// order of square appereance
			images[el.id]		= [];
			links[el.id]		= [];
			linksTarget[el.id]	= [];
			titles[el.id]		= [];
			imagePos[el.id]		= 0;
			squarePos[el.id]	= 0;
			reverse[el.id]		= 1;

			params[el.id] = $.extend({}, $.fn.coinslider.defaults, options);

			// create images, links and titles arrays
			$.each($('#' + el.id + ' img'), function (i, item) {
				images[el.id][i]		= $(item).attr('src') || item.src; // ios fix
				links[el.id][i]			= $(item).parent().is('a') ? $(item).parent().attr('href') : '';
				linksTarget[el.id][i]	= $(item).parent().is('a') ? $(item).parent().attr('target') : '';
				titles[el.id][i]		= $(item).next().is('span') ? $(item).next().html() : '';
				$(item).hide();
				$(item).next().hide();
			});

			// set panel
			$(el).css({
				'background-image': 'url("' + images[el.id][0] + '")',
				'width': params[el.id].width,
				'height': params[el.id].height,
				'position': 'relative',
				'background-position': 'top left'
			}).wrap("<div class='coin-slider' id='coin-slider-" + el.id + "' />");

			// create title bar
			$('#' + el.id).append("<div class='cs-title' id='cs-title-" + el.id + "' style='position: absolute; bottom:0; left: 0; z-index: 1000;'></div>");

			setFields(el);

			if(params[el.id].navigation){
				setNavigation(el);
			}

			transition(el,0);
			transitionCall(el);

		};

		this.each (
			function () {
				init(this);
			}
		);
	};

	// default values
	$.fn.coinslider.defaults = {
		width: 565, // width of slider panel
		height: 290, // height of slider panel
		spw: 7, // squares per width
		sph: 5, // squares per height
		delay: 3000, // delay between images in ms
		sDelay: 30, // delay beetwen squares in ms
		opacity: 0.7, // opacity of title and navigation
		titleSpeed: 500, // speed of title appereance in ms
		effect: '', // random, swirl, rain, straight
		links : true, // show images as links
		hoverPause: true, // pause on hover
		prevText: 'prev',
		nextText: 'next',
		navigation: true, // show/hide prev, next and buttons
		showNavigationPrevNext: true,
		showNavigationButtons: true,
		navigationPrevNextAlwaysShown: false,
		autoplay: false
	};

})(jQuery);
assets/sliders/coin-slider/coin-slider-styles.css000064400000001217151213255550016173 0ustar00/*
	Coin Slider jQuery plugin CSS styles
	http://workshop.rs/projects/coin-slider
*/


.coin-slider { overflow: hidden; zoom: 1; position: relative; }
.coin-slider a{ text-decoration: none; outline: none; border: none; }

.cs-buttons { font-size: 0px; padding: 10px; float: left; }
.cs-buttons a { margin-left: 5px; height: 10px; width: 10px; float: left; border: 1px solid #B8C4CF; color: #B8C4CF; text-indent: -1000px; }
.cs-active { background-color: #B8C4CF; color: #FFFFFF; }

.cs-title { width: 545px; padding: 10px; background-color: #000000; color: #FFFFFF; }

.cs-prev, 
.cs-next { background-color: #000000; color: #FFFFFF; padding: 0px 10px; }
assets/sliders/coin-slider/coin-slider.jquery.json000064400000001643151213255550016354 0ustar00{ 
    "name" : "coin-slider",
    "title" : "Coin Slider",
    "version" : "1.0.0",
    "author" : { 
        "name" : "Ivan Lazarevic",
        "url" : "http://workshop.rs",
        "email": "devet.sest@gmail.com"
    },
    "bugs" : "https://github.com/kopipejst/coin-slider/issues",
    "demo" : "http://workshop.rs/projects/coin-slider/",
    "dependencies" : { 
        "jquery" : ">=1.2.2" 
    },
    "description" : "jQuery Image Slider with Unique Effects",
    "docs" : "http://workshop.rs/2010/04/coin-slider-image-slider-with-unique-effects/",
    "download" : "http://workshop.rs/2010/04/coin-slider-image-slider-with-unique-effects/",
    "homepage" : "http://workshop.rs/2010/04/coin-slider-image-slider-with-unique-effects/",
    "keywords" : ["slider", "image"],
    "licenses" : [ 
        { 
            "type" : "MIT",
            "url" : "http://www.opensource.org/licenses/mit-license.php"
        } 
    ]
}assets/sliders/responsiveslides/responsiveslides.min.js000064400000006504151213255550017646 0ustar00/*! http://responsiveslides.com v1.55 by @viljamis */
(function(c,K,C){c.fn.responsiveSlides=function(m){var a=c.extend({auto:!0,speed:500,timeout:4E3,pager:!1,nav:!1,random:!1,pause:!1,pauseControls:!0,prevText:"Previous",nextText:"Next",maxwidth:"",navContainer:"",manualControls:"",namespace:"rslides",before:c.noop,after:c.noop},m);return this.each(function(){C++;var f=c(this),u,t,v,n,q,r,p=0,e=f.children(),D=e.length,h=parseFloat(a.speed),E=parseFloat(a.timeout),w=parseFloat(a.maxwidth),g=a.namespace,d=g+C,F=g+"_nav "+d+"_nav",x=g+"_here",k=d+"_on",
y=d+"_s",l=c("<ul class='"+g+"_tabs "+d+"_tabs' />"),z={"float":"left",position:"relative",opacity:1,zIndex:2},A={"float":"none",position:"absolute",opacity:0,zIndex:1},G=function(){var b=(document.body||document.documentElement).style,a="transition";if("string"===typeof b[a])return!0;u=["Moz","Webkit","Khtml","O","ms"];var a=a.charAt(0).toUpperCase()+a.substr(1),c;for(c=0;c<u.length;c++)if("string"===typeof b[u[c]+a])return!0;return!1}(),B=function(b){a.before(b);G?(e.removeClass(k).css(A).eq(b).addClass(k).css(z),
p=b,setTimeout(function(){a.after(b)},h)):e.stop().fadeOut(h,function(){c(this).removeClass(k).css(A).css("opacity",1)}).eq(b).fadeIn(h,function(){c(this).addClass(k).css(z);a.after(b);p=b})};a.random&&(e.sort(function(){return Math.round(Math.random())-.5}),f.empty().append(e));e.each(function(a){this.id=y+a});f.addClass(g+" "+d);m&&m.maxwidth&&f.css("max-width",w);e.hide().css(A).eq(0).addClass(k).css(z).show();G&&e.show().css({"-webkit-transition":"opacity "+h+"ms ease-in-out","-moz-transition":"opacity "+
h+"ms ease-in-out","-o-transition":"opacity "+h+"ms ease-in-out",transition:"opacity "+h+"ms ease-in-out"});if(1<e.length){if(E<h+100)return;if(a.pager&&!a.manualControls){var H=[];e.each(function(a){a+=1;H+="<li><a href='#' class='"+y+a+"'>"+a+"</a></li>"});l.append(H);m.navContainer?c(a.navContainer).append(l):f.after(l)}a.manualControls&&(l=c(a.manualControls),l.addClass(g+"_tabs "+d+"_tabs"));(a.pager||a.manualControls)&&l.find("li").each(function(a){c(this).addClass(y+(a+1))});if(a.pager||a.manualControls)r=
l.find("a"),t=function(a){r.closest("li").removeClass(x).eq(a).addClass(x)};a.auto&&(v=function(){q=setInterval(function(){e.stop(!0,!0);var b=p+1<D?p+1:0;(a.pager||a.manualControls)&&t(b);B(b)},E)},v());n=function(){a.auto&&(clearInterval(q),v())};a.pause&&f.hover(function(){clearInterval(q)},function(){n()});if(a.pager||a.manualControls)r.bind("click",function(b){b.preventDefault();a.pauseControls||n();b=r.index(this);p===b||c("."+k).queue("fx").length||(t(b),B(b))}).eq(0).closest("li").addClass(x),
a.pauseControls&&r.hover(function(){clearInterval(q)},function(){n()});if(a.nav){g="<a href='#' class='"+F+" prev'>"+a.prevText+"</a><a href='#' class='"+F+" next'>"+a.nextText+"</a>";m.navContainer?c(a.navContainer).append(g):f.after(g);var d=c("."+d+"_nav"),I=d.filter(".prev");d.bind("click",function(b){b.preventDefault();b=c("."+k);if(!b.queue("fx").length){var d=e.index(b);b=d-1;d=d+1<D?p+1:0;B(c(this)[0]===I[0]?b:d);(a.pager||a.manualControls)&&t(c(this)[0]===I[0]?b:d);a.pauseControls||n()}});
a.pauseControls&&d.hover(function(){clearInterval(q)},function(){n()})}}if("undefined"===typeof document.body.style.maxWidth&&m.maxwidth){var J=function(){f.css("width","100%");f.width()>w&&f.css("width",w)};J();c(K).bind("resize",function(){J()})}})}})(jQuery,this,0);
assets/sliders/responsiveslides/responsiveslides.js000064400000027366151213255550017075 0ustar00/*! ResponsiveSlides.js v1.55
 * http://responsiveslides.com
 * http://viljamis.com
 *
 * Copyright (c) 2011-2012 @viljamis
 * Available under the MIT license
 */

/*jslint browser: true, sloppy: true, vars: true, plusplus: true, indent: 2 */

(function ($, window, i) {
  $.fn.responsiveSlides = function (options) {

    // Default settings
    var settings = $.extend({
      "auto": true,             // Boolean: Animate automatically, true or false
      "speed": 500,             // Integer: Speed of the transition, in milliseconds
      "timeout": 4000,          // Integer: Time between slide transitions, in milliseconds
      "pager": false,           // Boolean: Show pager, true or false
      "nav": false,             // Boolean: Show navigation, true or false
      "random": false,          // Boolean: Randomize the order of the slides, true or false
      "pause": false,           // Boolean: Pause on hover, true or false
      "pauseControls": true,    // Boolean: Pause when hovering controls, true or false
      "prevText": "Previous",   // String: Text for the "previous" button
      "nextText": "Next",       // String: Text for the "next" button
      "maxwidth": "",           // Integer: Max-width of the slideshow, in pixels
      "navContainer": "",       // Selector: Where auto generated controls should be appended to, default is after the <ul>
      "manualControls": "",     // Selector: Declare custom pager navigation
      "namespace": "rslides",   // String: change the default namespace used
      "before": $.noop,         // Function: Before callback
      "after": $.noop           // Function: After callback
    }, options);

    return this.each(function () {

      // Index for namespacing
      i++;

      var $this = $(this),

        // Local variables
        vendor,
        selectTab,
        startCycle,
        restartCycle,
        rotate,
        $tabs,

        // Helpers
        index = 0,
        $slide = $this.children(),
        length = $slide.length,
        fadeTime = parseFloat(settings.speed),
        waitTime = parseFloat(settings.timeout),
        maxw = parseFloat(settings.maxwidth),

        // Namespacing
        namespace = settings.namespace,
        namespaceIdx = namespace + i,

        // Classes
        navClass = namespace + "_nav " + namespaceIdx + "_nav",
        activeClass = namespace + "_here",
        visibleClass = namespaceIdx + "_on",
        slideClassPrefix = namespaceIdx + "_s",

        // Pager
        $pager = $("<ul class='" + namespace + "_tabs " + namespaceIdx + "_tabs' role='group' aria-label='Slide controls' />"),

        // Styles for visible and hidden slides
        visible = {"float": "left", "position": "relative", "opacity": 1, "zIndex": 2},
        hidden = {"float": "none", "position": "absolute", "opacity": 0, "zIndex": 1},

        // Detect transition support
        supportsTransitions = (function () {
          var docBody = document.body || document.documentElement;
          var styles = docBody.style;
          var prop = "transition";
          if (typeof styles[prop] === "string") {
            return true;
          }
          // Tests for vendor specific prop
          vendor = ["Moz", "Webkit", "Khtml", "O", "ms"];
          prop = prop.charAt(0).toUpperCase() + prop.substr(1);
          var i;
          for (i = 0; i < vendor.length; i++) {
            if (typeof styles[vendor[i] + prop] === "string") {
              return true;
            }
          }
          return false;
        })(),

        // Fading animation
        slideTo = function (idx) {
          settings.before(idx);
          // If CSS3 transitions are supported
          if (supportsTransitions) {
            $slide
              .removeClass(visibleClass)
              .css(hidden)
              .eq(idx)
              .addClass(visibleClass)
              .css(visible);
            index = idx;
            setTimeout(function () {
              settings.after(idx);
            }, fadeTime);
          // If not, use jQuery fallback
          } else {
            $slide
              .stop()
              .fadeOut(fadeTime, function () {
                $(this)
                  .removeClass(visibleClass)
                  .css(hidden)
                  .css("opacity", 1);
              })
              .eq(idx)
              .fadeIn(fadeTime, function () {
                $(this)
                  .addClass(visibleClass)
                  .css(visible);
                settings.after(idx);
                index = idx;
              });
          }
        };

      // Random order
      if (settings.random) {
        $slide.sort(function () {
          return (Math.round(Math.random()) - 0.5);
        });
        $this
          .empty()
          .append($slide);
      }

      // Add ID's to each slide
      $slide.each(function (i) {
        this.id = slideClassPrefix + i;
      });

      // Add max-width and classes
      $this.addClass(namespace + " " + namespaceIdx);
      if (options && options.maxwidth) {
        $this.css("max-width", maxw);
      }

      // Hide all slides, then show first one
      $slide
        .hide()
        .css(hidden)
        .eq(0)
        .addClass(visibleClass)
        .css(visible)
        .show();

      // CSS transitions
      if (supportsTransitions) {
        $slide
          .show()
          .css({
            // -ms prefix isn't needed as IE10 uses prefix free version
            "-webkit-transition": "opacity " + fadeTime + "ms ease-in-out",
            "-moz-transition": "opacity " + fadeTime + "ms ease-in-out",
            "-o-transition": "opacity " + fadeTime + "ms ease-in-out",
            "transition": "opacity " + fadeTime + "ms ease-in-out"
          });
      }

      // Only run if there's more than one slide
      if ($slide.length > 1) {

        // Make sure the timeout is at least 100ms longer than the fade
        if (waitTime < fadeTime + 100) {
          return;
        }

        // Pager
        if (settings.pager && !settings.manualControls) {
          var tabMarkup = [];
          $slide.each(function (i) {
            var n = i + 1;
            tabMarkup +=
              "<li>" +
              "<a href='#' class='" + slideClassPrefix + n + "' aria-label='Show slide " + n + " of " + $slide.length + "'>" + n + "</a>" +
              "</li>";
          });
          $pager.append(tabMarkup);

          // Inject pager
          if (options.navContainer) {
            $(settings.navContainer).append($pager);
          } else {
            $this.after($pager);
          }
        }

        // Manual pager controls
        if (settings.manualControls) {
          $pager = $(settings.manualControls);
          $pager.addClass(namespace + "_tabs " + namespaceIdx + "_tabs");
        }

        // Add pager slide class prefixes
        if (settings.pager || settings.manualControls) {
          $pager.find('li').each(function (i) {
            $(this).addClass(slideClassPrefix + (i + 1));
          });
        }

        // If we have a pager, we need to set up the selectTab function
        if (settings.pager || settings.manualControls) {
          $tabs = $pager.find('a');

          // Select pager item
          selectTab = function (idx) {
            $tabs
              .closest("li")
              .removeClass(activeClass)
              .eq(idx)
              .addClass(activeClass);
          };
        }

        // Auto cycle
        if (settings.auto) {

          startCycle = function () {
            rotate = setInterval(function () {

              // Clear the event queue
              $slide.stop(true, true);

              var idx = index + 1 < length ? index + 1 : 0;

              // Remove active state and set new if pager is set
              if (settings.pager || settings.manualControls) {
                selectTab(idx);
              }

              slideTo(idx);
            }, waitTime);
          };

          // Init cycle
          startCycle();
        }

        // Restarting cycle
        restartCycle = function () {
          if (settings.auto) {
            // Stop
            clearInterval(rotate);
            // Restart
            startCycle();
          }
        };

        // Pause on hover
        if (settings.pause) {
          $this.hover(function () {
            clearInterval(rotate);
          }, function () {
            restartCycle();
          });
        }

        // Pager click event handler
        if (settings.pager || settings.manualControls) {
          $tabs.bind("click", function (e) {
            e.preventDefault();

            if (!settings.pauseControls) {
              restartCycle();
            }

            // Get index of clicked tab
            var idx = $tabs.index(this);

            // Break if element is already active or currently animated
            if (index === idx || $("." + visibleClass).queue('fx').length) {
              return;
            }

            // Remove active state from old tab and set new one
            selectTab(idx);

            // Do the animation
            slideTo(idx);
          })
            .eq(0)
            .closest("li")
            .addClass(activeClass);

          // Pause when hovering pager
          if (settings.pauseControls) {
            $tabs.hover(function () {
              clearInterval(rotate);
            }, function () {
              restartCycle();
            });
          }
        }

        // Navigation
        if (settings.nav) {
          var navMarkup =
            "<a href='#' class='" + navClass + " prev' aria-label='Previous Slide'>" + settings.prevText + "</a>" +
            "<a href='#' class='" + navClass + " next' aria-label='Next Slide'>" + settings.nextText + "</a>";

          // Inject navigation
          if (options.navContainer) {
            $(settings.navContainer).append(navMarkup);
          } else {
            $this.after(navMarkup);
          }

          var $trigger = $("." + namespaceIdx + "_nav"),
            $prev = $trigger.filter(".prev");

          // Click event handler
          $trigger.bind("click", function (e) {
            e.preventDefault();

            var $visibleClass = $("." + visibleClass);

            // Prevent clicking if currently animated
            if ($visibleClass.queue('fx').length) {
              return;
            }

            //  Adds active class during slide animation
            //  $(this)
            //    .addClass(namespace + "_active")
            //    .delay(fadeTime)
            //    .queue(function (next) {
            //      $(this).removeClass(namespace + "_active");
            //      next();
            //  });

            // Determine where to slide
            var idx = $slide.index($visibleClass),
              prevIdx = idx - 1,
              nextIdx = idx + 1 < length ? index + 1 : 0;

            // Go to slide
            slideTo($(this)[0] === $prev[0] ? prevIdx : nextIdx);
            if (settings.pager || settings.manualControls) {
              selectTab($(this)[0] === $prev[0] ? prevIdx : nextIdx);
            }

            if (!settings.pauseControls) {
              restartCycle();
            }
          });

          // Pause when hovering navigation
          if (settings.pauseControls) {
            $trigger.hover(function () {
              clearInterval(rotate);
            }, function () {
              restartCycle();
            });
          }
        }

      }

      // Max-width fallback
      if (typeof document.body.style.maxWidth === "undefined" && options.maxwidth) {
        var widthSupport = function () {
          $this.css("width", "100%");
          if ($this.width() > maxw) {
            $this.css("width", maxw);
          }
        };

        // Init fallback
        widthSupport();
        $(window).bind("resize", function () {
          widthSupport();
        });
      }

    });

  };
})(jQuery, this, 0);
assets/sliders/responsiveslides/responsiveslides.css000064400000003633151213255550017240 0ustar00/*! http://responsiveslides.com v1.53 by @viljamis */

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0 !important;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}
/** metaslider custom styles **/
.rslides_tabs {
    margin: 0;
    padding: 7px 0 !important;
    background: #333;
    font-size: 18px;
    list-style: none;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

.rslides_tabs li {
    margin: 0;
    padding: 0;
    display: inline-block;
    float: none;
    margin-right: 1px;
    list-style-type: none;
}

.rslides_tabs a {
    text-decoration: none;
    width: auto;
    line-height: 20px;
    padding: 9px 20px;
    height: auto;
    background: transparent;
    display: inline;
    color: white;
}

.rslides_tabs a:hover {
    border: 0;
    color: white;
}

.rslides_tabs li:first-child {
    margin-left: 0;
}

.rslides_tabs .rslides_here a {
    background: rgba(255,255,255,.1);
    color: #fff;
    font-weight: bold;
}

.rslides_nav {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px;
    position: absolute;
    top: 50%;
    z-index: 9;
    cursor: pointer;
    font-weight: bold;
    margin-top: -15px;
    opacity: 0.7;
}

.rslides_nav.prev {
    left: 0px;
    text-decoration: none;
}

.rslides_nav.next {
    right: 0px;
    text-decoration: none;
}

.rslides li,
.rslides .rslides_tabs {
    border: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    margin: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    list-style-type: none;
}assets/easing/jQuery.easing.min.js000064400000010273151213255550013167 0ustar00/*
 * jQuery Easing v1.4 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/
!function(n){"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e)}):"object"==typeof module&&"object"==typeof module.exports?module.exports=n(require("jquery")):n(jQuery)}(function(n){function e(n){var e=7.5625,t=2.75;return n<1/t?e*n*n:n<2/t?e*(n-=1.5/t)*n+.75:n<2.5/t?e*(n-=2.25/t)*n+.9375:e*(n-=2.625/t)*n+.984375}void 0!==n.easing&&(n.easing.jswing=n.easing.swing);var t=Math.pow,u=Math.sqrt,r=Math.sin,i=Math.cos,a=Math.PI,o=1.70158,c=1.525*o,s=2*a/3,f=2*a/4.5;return n.extend(n.easing,{def:"easeOutQuad",swing:function(e){return n.easing[n.easing.def](e)},easeInQuad:function(n){return n*n},easeOutQuad:function(n){return 1-(1-n)*(1-n)},easeInOutQuad:function(n){return n<.5?2*n*n:1-t(-2*n+2,2)/2},easeInCubic:function(n){return n*n*n},easeOutCubic:function(n){return 1-t(1-n,3)},easeInOutCubic:function(n){return n<.5?4*n*n*n:1-t(-2*n+2,3)/2},easeInQuart:function(n){return n*n*n*n},easeOutQuart:function(n){return 1-t(1-n,4)},easeInOutQuart:function(n){return n<.5?8*n*n*n*n:1-t(-2*n+2,4)/2},easeInQuint:function(n){return n*n*n*n*n},easeOutQuint:function(n){return 1-t(1-n,5)},easeInOutQuint:function(n){return n<.5?16*n*n*n*n*n:1-t(-2*n+2,5)/2},easeInSine:function(n){return 1-i(n*a/2)},easeOutSine:function(n){return r(n*a/2)},easeInOutSine:function(n){return-(i(a*n)-1)/2},easeInExpo:function(n){return 0===n?0:t(2,10*n-10)},easeOutExpo:function(n){return 1===n?1:1-t(2,-10*n)},easeInOutExpo:function(n){return 0===n?0:1===n?1:n<.5?t(2,20*n-10)/2:(2-t(2,-20*n+10))/2},easeInCirc:function(n){return 1-u(1-t(n,2))},easeOutCirc:function(n){return u(1-t(n-1,2))},easeInOutCirc:function(n){return n<.5?(1-u(1-t(2*n,2)))/2:(u(1-t(-2*n+2,2))+1)/2},easeInElastic:function(n){return 0===n?0:1===n?1:-t(2,10*n-10)*r((10*n-10.75)*s)},easeOutElastic:function(n){return 0===n?0:1===n?1:t(2,-10*n)*r((10*n-.75)*s)+1},easeInOutElastic:function(n){return 0===n?0:1===n?1:n<.5?-t(2,20*n-10)*r((20*n-11.125)*f)/2:t(2,-20*n+10)*r((20*n-11.125)*f)/2+1},easeInBack:function(n){return 2.70158*n*n*n-o*n*n},easeOutBack:function(n){return 1+2.70158*t(n-1,3)+o*t(n-1,2)},easeInOutBack:function(n){return n<.5?t(2*n,2)*(7.189819*n-c)/2:(t(2*n-2,2)*((c+1)*(2*n-2)+c)+2)/2},easeInBounce:function(n){return 1-e(1-n)},easeOutBounce:e,easeInOutBounce:function(n){return n<.5?(1-e(1-2*n))/2:(1+e(2*n-1))/2}}),n});assets/metaslider/script.min.js000064400000001122151213255550012623 0ustar00jQuery(document).ready((function(a){var e=a(".ml-slider").map((function(){return this.id})).toArray(),t=[...new Set(e)];a.each(t,(function(e,t){var i=this.split("-")[2],l=a("#"+t).attr("aria-label"),r='<li id="wp-admin-bar-all-slideshows-list" class="ms_admin_menu_item"><a class="ab-item" href="'+wpData.baseUrl+"/wp-admin/admin.php?page=metaslider&id="+i+'" target="_blank">Edit '+l+"</a></li>";a("#wp-admin-bar-ms-main-menu-default").append(r)})),a(".metaslider .flex-next, .metaslider .flex-prev, .metaslider .flex-control-nav li a, .metaslider .flex-pauseplay a").attr("role","button")}));assets/metaslider/script.js000064400000001534151213255550012050 0ustar00jQuery(document).ready(function($){
    var slideshow_ids = $('.ml-slider').map(function() {
        return this.id;
    }).toArray();
    var clean_slideshow_ids = [...new Set(slideshow_ids)];

    $.each(clean_slideshow_ids, function(index, item) {
        var slideshow_id = this.split('-');
        var id = slideshow_id[2];
        var title = $('#' + item).attr('aria-label');
        var html = '<li id="wp-admin-bar-all-slideshows-list" class="ms_admin_menu_item"><a class="ab-item" href="' +  wpData.baseUrl  + '/wp-admin/admin.php?page=metaslider&id=' + id + '" target="_blank">Edit ' + title + '</a></li>';
        $('#wp-admin-bar-ms-main-menu-default').append(html);
    });

    //Accessibility
    $('.metaslider .flex-next, .metaslider .flex-prev, .metaslider .flex-control-nav li a, .metaslider .flex-pauseplay a').attr('role', 'button');
});
assets/metaslider/bg_direction_nav.png000064400000005103151213255550014204 0ustar00�PNG


IHDR9�|'�tEXtSoftwareAdobe ImageReadyq�e<&iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 9.0-c001 79.c0204b2def, 2023/02/02-12:14:24        "> <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:DocumentID="xmp.did:C3DF48C8144E11EFBB29CB8016A5B8A9" xmpMM:InstanceID="xmp.iid:C3DF48C7144E11EFBB29CB8016A5B8A9" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B2D71C51596011E19EA3C3F155F18B78" stRef:documentID="xmp.did:B2D71C52596011E19EA3C3F155F18B78"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�h`��IDATx��X]LTG~ĥ�+D�FHD)*���iJ"kE���6��$<�mxiy�}�������1&���h"��&���&$�&��lb[~WPa�~���fv�Y6>��ܽ{��9�Μsf�&�~�Z��[*������d�������%����^�z�Ψ�w0�m\鸦q���;�w���v��̄�>}*��Ҥ��𰀬�msfff�����J�}������/Κ���uЅ���w2���I�*q�c||\�f��=|��x�W�0Z��q��B����<C޴�������1&���r�uBpòeˮAQ	Z�ϓ�C�1�_C�:�o|C�)O=ԗ�7m��7,H�S���^�p���-6�H$"RRR�ݑ��A��V�0�Ո�Cy�cpz�xv�;I2�

J�'��I�!s���I�;wN�����7���V�Y��Po���)g�G��������h7�y�!�Vvv�Y<�@���R�Euu��+..7o���ݓE�������h9���h:����.**���Q\��hii��-Zd��
�蚊�,--����*3A�9r$J�mzzZLMM	GAR3\�f͚�ٷ��+)an��2���8��d�);H��a���[�n�m�p9?�A6� ��СC"
�x�Q�A��x��x��O�W5�C�t;��A>~�$�U�<|�pA�=x��E�e&�B&h{�~�ֈC<�:Q����U�
W��P/J�$ȅ�@���r�ર�������61���,u�?^�.gPm$v��%��B��p�9��}�H�$�v��
I���F*����Ȉ�{������^�e����Y��G|ڡۦ�����#�K��S� ����Y�ܹsЎ;��5n�x��eU,V:��TEL��Y�m�6۔�#�=*�����I~$g#��0�FC+**���9����O�`<;����R$e�������r���x�������ch��9��)�Hs١l'��
�nz	��f�һ����ҥK���[װ<��vg��z{{�Ç�$��ؽ{�����Y�;::d�a�i�`$JJoC�]�.�J)�*��9�������eNF�
:lf�
q:fhhȩ����#���0�IPٯ���IvA���^e�DY<��Ebǎ�3�Y�7���^q��N��x3�w�^Y�t"$��ԗ�+��P~��b6����!=G	�
�IK�x�@m=���ĵ&.p�G\� �}��$H��%�Y�@,��a%�p<p�X�zu"��tL8ޱ��BE�8�ӫj<��rx��o�r6O�]��c戞�����lUUU��O\]E�˙�qJ9�rĝ;�r"���	�m��3���	�����t�Q��'fs����u~��<�ce�қ�pXlڴItww����[7�‚=>11Q������
������s��q���8y�$o#�p�O0I�!W?�lž�W�嚀�ipV�Y�R�?5+��������3�@1m�ҥ򞓓�b�z/����*\�37�(��b��́ чJ�
��m;
VV���V�)��P,��*�Z�l���qm;��n�I�C�|���P�%C�M��
c�W����[o�!�婇��
�N��Z���$�G3����~��x�D7����~`L7�z0&�Kt��Z1x�����:�qp{���)w�?|A�G��(�}� �"IEND�B`�assets/metaslider/public.css000064400000024550151213255550012201 0ustar00/**
 * The following styles will provide an attempt to normalize the sliders
 */

/* Reset some style. Using body to push specificity */
body .metaslider .coin-slider,
body .metaslider .nivoSlider,
body .metaslider .nivoSlider img,
body .metaslider .rslides,
body .metaslider .rslides li,
body .metaslider .flexslider ul.slides,
body .metaslider .flexslider .slides li,
body .metaslider .flexslider .slides ul,
body .metaslider .flexslider .slides ol,
body .metaslider .flexslider .slides img,
body .metaslider .flexslider .flex-direction-nav,
body .metaslider .flexslider .flex-direction-nav li {
    border: 0;
    margin: 0;
    list-style-type: none;
    list-style: none;
    padding: 0;
    line-height: normal;
    max-width: none;
    max-height: none;
}

.metaslider {
    position: relative;
    z-index: 0;
}

/* Avoids overflow when slideshow takes the whole window' width - The fullwidth class needs to be added in the slideshow settings. */
.metaslider.fullwidth {
	overflow: hidden;
}

.metaslider .caption {
    padding: 5px 10px;
    word-wrap: break-word;
}

.metaslider .caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    background: black;
    color: white;
    opacity: 0.7;
    margin: 0;
    display: block;
    width: 100%;
    line-height: 1.4em;
}

.metaslider img {
    height: auto;
    padding: 0;
    margin: 0;
    -moz-user-select: none;
}

.metaslider a {
    outline: none;
}

.metaslider.ms-left {
    float: left;
    margin: 0 20px 20px 0;
}

.metaslider.ms-right {
    float: right;
    margin: 0 0 20px 20px;
}

.metaslider li:before,
.metaslider li:after {
    content: "" !important;
    display: none !important;
    bottom: auto !important;
    margin: 0 !important;
}

.metaslider .caption-wrap .caption img {
    width: auto;
}

.metaslider .slides img {
	width: 100%;
	display: block;
}

.metaslider .flex-pauseplay a {
	height: 30px;
	width: 30px;
}

/* Flexslider */

.metaslider .flexslider {
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    border: 0;
    margin: 0 0 40px;
    max-width: none;
    max-height: none;
}

.metaslider .flex-control-nav {
    border: 0;
    margin: auto;
    list-style-type: none;
    list-style: none;
    padding: 0;
	bottom: -27px;
    line-height: 11px;
    z-index: 2;
}

.metaslider-flex.ms-theme-default .flex-next:focus {
    background: url('bg_direction_nav.png') scroll right 0 transparent!important;
    height: 27px!important;
}
.metaslider-flex.ms-theme-default .flex-prev:focus {
    background: url('bg_direction_nav.png') scroll left 0 transparent!important;
    height: 27px!important;
}

/** move margin from list items to anchors */
.metaslider .flex-control-nav li {
	margin: 0;
}

.metaslider .flex-control-nav li a {
	margin: 0 6px;
	padding: 0;
}

.metaslider .flexslider .slides li {
    position: relative;
    height: auto;
}

/** fix for users with RTL languages */
.metaslider .flex-viewport {
    direction: ltr;
}

/** add transition effects to firefox **/
.metaslider .flex-direction-nav a {
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.metaslider .flexslider .slides p {
    margin: 0;
}

.metaslider .flexslider.filmstrip {
	margin-top: 10px;
}

.metaslider .flexslider.filmstrip .slides li {
    cursor: pointer;
    opacity: 0.5;
}

.metaslider .flexslider.filmstrip .slides li.flex-active-slide,
.metaslider .flexslider.filmstrip .slides li:hover,
.metaslider .flexslider.filmstrip .slides li:focus {
    opacity: 1.0 !important;
}

.metaslider .flex-control-thumbs li {
    width: auto;
}

.metaslider ol.flex-control-thumbs img,
#content .metaslider ol.flex-control-thumbs img {
    margin: 10px 5px 0;
    width: auto;
}

.metaslider.nav-hidden .flexslider {
    margin-bottom: 0;
}

.metaslider.nav-hidden.add-margin .flexslider {
    margin-bottom: 40px;
}

/* Arrow styles to use background images (old style) */
/* which makes it compatible with the theme builder */

.metaslider .flexslider .flex-direction-nav li a:before {
    content:none!important;
}
.metaslider .flexslider .flex-direction-nav li a {
    width: 30px;
    height: 30px;
    border: 0;
    margin: -20px 0 0;
    box-shadow: none!important;
    display: block;
    background-color: transparent;
    background-image: url('bg_direction_nav.png');
    background-repeat:  no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    text-indent: -9999px;
    opacity: 1;
    -webkit-transition: all .3s ease;
       -moz-transition: opacity .25s ease-in-out;
            transition: all .3s ease;
}
.metaslider .flex-direction-nav .flex-prev {
    background-position: left 0;
    left: 10px;
}
.metaslider .flex-direction-nav .flex-next {
    background-position: right 0;
    text-align: left;
    /* Fix for single character text */
    text-indent: 9999px;
}
.metaslider .flexslider:focus-within .flex-next,
.metaslider .flexslider:hover .flex-next {
    opacity: 0.8;
    
}
.metaslider .flexslider:focus-within .flex-prev,
.metaslider .flexslider:hover .flex-prev {
    opacity: 0.8;
    /* Fix for single character text */
    text-indent: -9999px;
}
.metaslider .flexslider:focus-within .flex-next:focus,
.metaslider .flexslider:focus-within .flex-prev:focus,
.metaslider .flexslider:hover .flex-next:hover,
.metaslider .flexslider:hover .flex-prev:hover {
    opacity: 1;
}
.metaslider .flexslider .flex-next:focus,
.metaslider .flexslider .flex-prev:focus {
	outline: -webkit-focus-ring-color auto 5px;
}
.metaslider .flexslider .flex-direction-nav .flex-disabled {
    cursor: default;
    pointer-events: none;
}
.metaslider .flexslider .flex-control-nav a {
	box-shadow: none !important;
}
.metaslider .flexslider .flex-control-nav a:focus {
	outline: -webkit-focus-ring-color auto 5px;
}
.metaslider .flexslider .slides > li {
    position: relative;
}
.metaslider .flexslider .flex-pauseplay .flex-play,
.metaslider .flexslider .flex-pauseplay .flex-pause {
    width: 30px;
    height: 30px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 27px;
}
.metaslider .flexslider .flex-pauseplay a:before {
    font-size: 16px;
}
.metaslider .flexslider .flex-pauseplay .flex-play:focus,
.metaslider .flexslider .flex-pauseplay .flex-pause:focus {
    background: #000;
    color: #fff;
}
.metaslider .flexslider .flex-pauseplay .flex-play:before {
    margin-left: 4px;
}
.metaslider .flexslider .flex-pauseplay .flex-pause:before {
    margin-left: 1px;
}

/* Responsive Slides */
.metaslider .rslides_nav,
.metaslider .rslides_tabs a {
    box-shadow: none !important;
}
.metaslider .rslides_tabs {
    margin: 0 0 40px;
}

.metaslider .rslides_nav:focus,
.metaslider .rslides_nav:hover {
    color: #ffffff;
}

.metaslider-responsive.no-text .rslides_nav{
	width: 30px;
	height: 30px;
	border: 0;
	margin: 0 5px;
	box-shadow: none !important;
	display: block;
	background-color: transparent;
	background-image: url('bg_direction_nav.png');
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	z-index: 10;
	cursor: pointer;
	text-indent: -9999px;
	opacity: 1;
	-webkit-transition: all .3s ease;
	-moz-transition: opacity .25s ease-in-out;
	transition: all .3s ease;
}
.metaslider-responsive.no-text .rslides_nav.next {
	background-position: right 0;
}

/* Nivo Slider */
div.metaslider .theme-default .nivoSlider {
   -webkit-box-shadow: 0 0 0;
      -moz-box-shadow: 0 0 0;
           box-shadow: 0 0 0;
}

.metaslider .slider-wrapper .nivo-directionNav a,
.metaslider .slider-wrapper .nivo-controlNav a,
.metaslider .slider-wrapper img {
    border: 0;
    box-shadow: none;
    /* margin: 0; */
    list-style-type: none;
    list-style: none;
    padding: 0;
    line-height: normal;
    max-width: none;
    max-height: none;
}
div.metaslider .slider-wrapper .nivo-controlNav a {
    transition: none;
}

/* Coin Slider */
.metaslider .coin-slider {

    /* This keeps the slider from spilling out the container */
    max-width: 100%;
    overflow:hidden;
}
.metaslider .coin-slider .cs-buttons a,
.metaslider .coin-slider > a {
	box-shadow: none !important;
}
.metaslider .coin-slider a[href="javascript:void(0)"] {
	cursor: default !important;
}

/* Admin Bar */
#wpadminbar #wp-admin-bar-ms-main-menu .ab-item #metaslider-main-menu-icon {
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: left center;
	width: 18px;
	height: 32px;
	float: left;
	margin-right: 5px;
}
#wpadminbar #wp-admin-bar-ms-main-menu:hover #metaslider-main-menu-icon{
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyBmaWxsPSIjNzJhZWU2IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjU1LjggMjU1LjgiIHN0eWxlPSJmaWxsOiM3MmFlZTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwYXRoIGQ9Ik0xMjcuOSwwQzU3LjMsMCwwLDU3LjMsMCwxMjcuOWMwLDcwLjYsNTcuMywxMjcuOSwxMjcuOSwxMjcuOWM3MC42LDAsMTI3LjktNTcuMywxMjcuOS0xMjcuOUMyNTUuOCw1Ny4zLDE5OC41LDAsMTI3LjksMHogTTE2LjQsMTc3LjFsOTIuNS0xMTcuNUwxMjQuMiw3OWwtNzcuMyw5OC4xSDE2LjR6IE0xNzAuNSwxNzcuMWwtMzguOS00OS40bDE1LjUtMTkuNmw1NC40LDY5SDE3MC41eiBNMjA4LjUsMTc3LjFMMTQ2LjksOTkgbC02MS42LDc4LjJoLTMxbDkyLjUtMTE3LjVsOTIuNSwxMTcuNUgyMDguNXoiLz48L2c+PC9zdmc+Cg==") !important;
}
.ms-edit-frontend {
	text-decoration: none !important;
	font-size: 18px;
}
.ms-edit-frontend .dashicons.dashicons-external {
	height: 25px;
	vertical-align: middle;
}

#preview-container .ms-edit-frontend{
    display: none;
}


/* Precognition Theme */
.ms-theme-precognition .flex-control-nav {
	display: table !important;
	width: 100% !important;
	margin-top: 0 !important;
}
.metaslider.ms-theme-precognition .flex-control-nav li {
	display: table-cell !important;
	width: auto;
	text-align: center;
	border-left: 1px solid;
	border-bottom: 1px solid;
}
.metaslider.ms-theme-precognition .flex-control-nav li:last-child {
	border-right: 1px solid;
}
.metaslider.ms-theme-precognition .flex-control-nav li a {
	text-indent: 0 !important;
	width: auto !important;
	display: block !important;
	height: auto !important;
	padding: 10px !important;
	margin: 0 !important;
}
@media only screen and (max-width : 767px) {
    .metaslider.ms-theme-precognition .flex-control-nav li a {
        text-indent: -9999px !important;
    }
}
@media only screen and (min-width : 768px) {
    .metaslider.ms-theme-precognition .flex-control-nav li a {
        text-indent: 0 !important;
    }
}
assets/metaslider/matchalabs.png000064400000002771151213255550013017 0ustar00�PNG


IHDR�atEXtSoftwareAdobe ImageReadyq�e<#iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <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 CC (Macintosh)" xmpMM:InstanceID="xmp.iid:A1A13BBE48AD11E49067C530C57A9E33" xmpMM:DocumentID="xmp.did:A1A13BBF48AD11E49067C530C57A9E33"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:507D80FF48AA11E49067C530C57A9E33" stRef:documentID="xmp.did:507D810048AA11E49067C530C57A9E33"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>(&z�lIDATx�|SKhSA=��Ӿ$MK�15ц."�����_���s)"�\��*~v.D]	RP�ԍ�#�V[k�-m���i��;������f�̽�;w���*�<��Qh��5�֪�r<`?�j���
l�id�a��+_F�RC��re��*�CY���G��SCl��P��qz�+����-yl�D=�,b�ˌ#nL�Lb��w8����v��e��@"��l�wB^bS��D��\ЉЀ3�"'Z��3�*r�n���F�{��ݩ8O�Ƙ��N�&W@�a.[��=�l����V,]��s��Y4	E'���42bQj�}�߇c�6|K�@G{AG7��q�Ccn3-�\H�K󥝛I�pb1J�].׈=F���'�}-�&�{��x5����2��F.�=):��g�.DRE��=����v�gG�\Ù�dCx��<�������}\u��^����f	��|]*�M,�D�
v�L��q���zm���6#,zBh�S�w��tI/O�R�U/�aԡRoԛ�x�U��H�� geV��&3G#U.�e�����&���N�ԩy��c����:m��f��v�R|-IEND�B`�assets/metaslider/edit.png000064400000000315151213255550011635 0ustar00�PNG


IHDR��w&sRGB���gAMA���a	pHYs���+bIDAT(S��
� DёX�b�DcYȬF�.�'a9<8Х*�e����ˮD�3^P_~B��9�Wd)�����~��d�[ 3���V�^�Q���_v��:�ߪ�IEND�B`�themes/outline/screenshot.png000064400000245233151213255550012410 0ustar00�PNG


IHDR�x|GtEXtSoftwareAdobe ImageReadyq�e<J=IDATx���z$9�,H�=���3��߻����6S�R��X�J���̬�3��ɮ�B~#f���/*Dt�/iO^��v@�eb�G+��������G���N_
���~J�5��~���L���?���<���]���o�/�|R�>�����+���^��Z ه��am�
 ���& ������"�s��Ljr�ۭ�w�F�I�7ԛǷ�����W��G>�/9�Vn�/�pҏY���ߴ��*�Ł��HQ�"��'��O�ImH�.V�{�GTA~�V�8�S��Ŏϯ��K�JzQ�p����]������{���^��Z���^X�Ӱ!��4~9�s/k�*�U�ۗ/�Z�u�P���v���m�r��?u+�?5^�����_�k�`������H��W��,�ο�0�ʯ�a���W���Aۥ�/~�<�S�.�Wd� 7�%�������_�H�t�k�����$�uA�r�j���Q�X�
�H�`�ţO�<H���C��7��l����Wz8�"�S~�}u/)SB@_ٺ_����o�|���á���T��*�7���W%���m�mi�[��[m�����4R�6��Z����G0�
�.�.�����%W���RN���d����H�W�-��Y(�;�X|_Zʛ�GMn�5�_�CG�{�}L2:��g�M�؊D��&�ՋN'9?Rda�b������, �_��\IW<���P~�� P,2Y^"����&�E@�w��_ȗ���'G�cyG��h������rŚ��||�N�x�r��oJ�-k�oY��z�/>��Wy��n��x�7?�4�q�����Н�ȉ˩�}"���na�q�;�o��WYo���f�ݒ%#�����j�l�k��,��~�V�}{��aNr�b�1I�JBl9�N��o)����o\��{~�C��'W��S,O�|tMMǣ?_П��kY@��9@`ʧO#<<`�3���
'O#�~��zA��+�`�#�?klT�|/�����W�,*��|�~��b�i!��g?(�R�����]�\#��i@��z��T��
���KJ�RU$”�'sq�
	Yq2G-����M�Ú��.�<�@��]y�;��-6Q��+���V�'p����n����*x����^xx�+�U�%��,�l���>��rh�{�iCӢ0*n�u
�:��`ke����֫?Rrm�KY/�(��\pR���o]�_�?���s{2it�'�����'�#�!5��Rt�'@�"L�3hBE���"�F�fMm@3��X�@��j����]J�D�j���F�*������@_I6Ds�֊�Q~�5��I��(�`D����@���!�5E�x�p�-{��
2�G9���c�9�&��l��KHI{#��-E�(��
��%C�)��7Y,#�W�1����!HZ*�v$|�%�9���\��uLedT�n�Y�v���z�����$Rk���駶���cX[O���r�W0uG�_�h��i�<"�B���?����Dm�KiZ�ʮ�3��?���G�{�	�GVq��l�N����~��
�����ӭ
9���3��U �&�;�9i��Ҁ��\��>t���Y��z��.�r���D�g�
�H� �+�l��qa��v�i������.�=��C�W-���B�}2|�����|��
��]m�|����S@\{���D����`�@��ai��I�Z�	�cN[�v՛�ׯ�/���
�ۂnV-w�_���\ȐU���%9�\Ki�ik"����߬^޶ZK��×\2�s.F�6H��_�50�}�AS�hye�w�u�=�{f��;�CSF�ˌ�~�Z,�I��(�\�g�Õ	?֋�\���:r�"�t����S���*A
4F��^�D\P_��Qs�c�(x��W��G���汼�4�u���	@�}Ƌs1�	�}g/)/�<o7)9�j
j�N�M�n���:S.�<â��G�Mr�GY/3,�J4#�F:��k�-�r!�Ҳ.��Y��ONcH��e�zXVŹ����4tb�&�>Һ�J#��W�������Xi��Lе���][^Sč9�5%�i��vӋ�K�h_'"<N�vo�_o�=s5��h����b�ځU�1�)�9h��x?�
�x��#��!�'�ݵcw%��SW���bM�X)�Y�����W6|o
y�[-��t��$�܏V���a��=�7�)��UKP��XPs@Ma4¢�&Z#�v]���-�C�m8�Y�ڮ���Zj$�ܘ�/��� �ǩ��)*gX�)�*��z�R��Ѯ��������#�IBv�t
�4]�{����6��'��a��d���˺��oG2��QnJ�p�P9F�I7�
��6A�eK�+q��;�A��p����p��W,z�gX����������P
+��m�㵩MGgkd�*zؒ=�)�c��A`:�	jı�i��PXW��1�	���ݷ�& J����)�[�5p�slX��zr��>�d�_�La"P�4H��Ǭ&�ahV�oT�VL���1o�#tVk�n��D#c��x����a�J~#���s{�3��`{���ۥ
2�W���kԘ���Yȱ(�fXW�|�iTϵ�;��oU������s�
��u�{JS�W;��g�~��~%�ς�����D�N��0���}"vį��"x��,x�כ��A8���$ �FK�Ձ�Q��PdMdG�C$-Q�yR�*0Ȁ.����A��0�.��^�)�R!-Pf	$U%W�I;z�d��@p/�E�� ����8��k��ʻT_��jI��n�*�$���	I�U.t�i��.cL	�\�|_ۜ��[ٜ�ʷ[�V�4�ɴ�����m�^�V�=p�b�m�����_�\��*�ZLdn\���5&^I�{�$c比m�����o������,f�
�n����B�x��/d�.�x*t-���ʴ�l��h(���k�J�gw!�fZ2-}:���.�j���ٯ��//S�4%�FQ!��`�z� �z�����K����"v�W��S���O0%�?�����A�Q���Ѽ/��
�v"x%HZ�%���0�aw��{�\|'V͎���Դ��u((ᖏ�	��\�[O�n�2j�'UK�|{��q���]�փ!�Ʀ�#�C=�,��ʭ��v�v[{�i�w���X/d�?Y(�I_�Dӧ������� �}Ю��9�~+ء/<ՠy���N�.�[h�~.�єl������2��{@���+|?<�6R��*��`%ΰ˹<�T/K��r\� ��9g@?L]GJ�H�d±Z���O���GNMAQ|a�vo,�Ԅi����4k����_�_�E|�A!�!�B>/�/j��zAh%=��
�,G��l����RG�n��<��}�m�ۍ��ʭ��4 [��쑽מ� 4<
(��N��4���^=H�Qr߽퓣/]:~��q?&0Nҳ`���;@���	��c�՝�,
Y8��H��cx�>>�
BM�?~ėhܭN2�"������<��/L��Y��2~%"	|ϡ`}��E6��J�׌�%iv[�z�o,�t4_5-�SPl��5�=���غ��8�BE�'b[@���JFP�Q���q嚎KC~7	WqPh��B�c�u��7ڄ�Q�&���`R�ߠ���{�`�څ��ηvE.�(�ÌV�8Z?���~H'�����'X�z���&~Λ�חh�I����9��5��i��"�m���1��'�P5k�*��j�MQՑ�%��m�hAx���Ж`�x.��Jrr��f�@Fϫ��s���$��1d�ƌ!#�j���L�r�fA�+��:=��o��-d�j����z�t�Ex�/Հ�~oN֬�d�*\�0���$�=8_x�@��%���j��d��ZM(�#�s�4k��LE�)g3����oG��A6�DM�d-�1ֻ��8��T���jР�
��Q|D{>Q��f ��%!��41����̗���<Qb,��!�J�Vꕥ"����T�X�[���ڄ~�c!�apx?s�d���LZb�	Esz��$ϵ���i.$�-�*�\��fQ˺0�ߓ{nO.gX?���`T=��$�����7gδ��a�e���S䋾���~w:R�����d�Seu7E�2PbmB�z�b��m��2?�a:����jF��8Wy�!��o9�n����<[��	`?w��1��d��ǩ��k�j[�KJ��Qc�3sA�EaP
���r��xa4ӯ�+	��Oe|8pt�V�eE�}>a���A'N)|�h��g�`�A5q�hz|�`Z���N�}p쇮��o������t�.ʞl��/���&yt��"xⳊ!�Q�1
��"�zq3[�-�BMEUǘq���MB��;�Õq�ޒ@+H��⥺Y���rq,ul�_�̿�yV0E�=x��i6�0�9~��g��t���[Q�;�Fo`��׬ȝ
��o��5���H�.������䙉$[y�ai�q��Zv!�w��=w^t�t����`�ir��V��֯��m�T��2@4���G��W�za?��
@��,�>�(�}pf�J�uC�
��+Rh���UI'Ȁv���/Ӽ@�P���TU���"��R��H^�Ńb������[E�M��&cɵdd�[�=Q�CW�F��T��h�Ġ�w3����	��g/%L5���f�A�PT"�pW���.�o��n�|xކ�������g/O��'���S�#�${yĽ���o��Q�Q��<���9��}�e�f4�<`	�F�a�J!)�(�ۂ樎�g`��rpL�@y�CPD5��sֲ��c�c����τY0ꕉl5 mҧL苏
���#
>�c�-厴f�]�9)Ƭs i#��v����Lp
lR�ـԃG���/�,z��y#��M���O�ƸL@�M��y�*�&�|Sha�j��Y���z�~ͮ�3�z[���He~��/q5�K}��O������b�k�� 4P�r|�L��eQ����2XP���:$`���\�}4R#2���]>K�-�B��
��g���٢�|��B(S��2Dʔ�^�
�˻����S��R�4lq%�z���&l�UrL^m"�R)������ܯ&��ٻ�9ST�i[�7��pd>�TZ�z�~�G �A�wI��ZÑ:�s��z��7
F��{��f:Jw2��Us�b�F���M�o������1�##�:�/�'�-���)h�C�6,���Ɉ�6��M)�"�|�c�`^���pĿ8xK�4�~�u��un���Z�O��v�`�����������lr�H?�*xf'�x�ug{��<`<���3��f�٧�p{�A���.	p���cr}�|�L�kZ�F9�[���iJ/0�d8ePj���*!RVa59c���j&Gl#�:>n�a�b�U����p��Rz��d�o��^���v輴p�-�gn�hhY	)���6�����EnD�C��D\�?��e�i�(IV��*a�)�%ew~���#�~�2���������jr9�x��|̦D�]���ֿ�KTSN�?��0UC?�nu8ZR�1)y�|�n���f�6d�!���,S;i�Ƒx�A�_)���#���	Dʹ�E�D�j
|�u�Ab����t�@4�!t��[��A���F���q��j�uB��4iM�|j�4��>H����60��*��3J����@DO�9�;��_ͳA�hE�Y�G��/'w���%h����ܜ)��^I3�Q	Õ�_�Ǿ29�k��J��a7�{8&��b��SV�T�xj���N
���{r�#�R�A�YI��t<��n�舀N��_R�y6�>�G؏cc�c�3���?�<��T����P��I%�kKѺ��5��#,ex4��B��B�B�lB��Gii
Ma#	OP�\�m�.f*c�5�zL|B�s����N	4S�1�����}U���*�d�Ңye0{:���a�Dr�芇��2�6	�x=�Ʈ�u���̳��6K*61Do0Y5���V�w�������͘ރ�Ѯ��,X�G�8�c,S�"�G�_[dVG�R�|Y ���m�m2x&����G�AS$�(�D���و
�8S��i�ޖ1A�/ȇn=N}�@u�M�^�Rhc��)�����0�t� �}Y�/��}qķ<ͭ�}
<����lh�T���"�	���,{��M��#�T����8�nW%��U� �>0���F/�d��0U6��L�>'n���J���}�8 ���J���*8�/es/Vr_��3��z)#2�2��%�����ִldaWt��d�%���fj��M�Up�؟����i�B1�'t*&�W�%Tƪ�
`6Iq��h�ϫz�5«�K��H����xԾטR�ߎY����O����>��%���Fb�K�?Tp�8����v�6+��䊥9�򔭓;-��\f�G0�YOv.P��`L����v����,����i�t�)3Cۂ��{辄��ދ�f�Y\�rV:KV�t�ag"@k��n��E�4�ګq�i�ܪ�b����
��V�tʭ���q��h���OC:�L~J���޻ۇ����7_<�j��������N
2u	_�������f_
ѯ^ˑ@x�\i�@h��B���c�y��=�p�\�ʭ�]��r�W�[А�E�*ݶ�3�Jv�0O��#�ʏf�}�_�Ot؞�� ��
���P�Y�r��E�~�쮂3�sU��2u��Y+ׂl�餄���X6��s��!V��@pz���2�F���^CմsxN�+���J��g�W��Y��~"o����_UǕ�����~�g���r�rH~u�i*�N��<u��I_$��u�,���h���q��n���(n	���tw2�m���(��z���6�@��骪�P):䨆
��p~gM�9�GT�p	(�]�QE�ٞFgn�Z5}*v'�LU�jR�.��i@7[�D`b�k�`e?s���"ao��&�_��7�rO�M
h��O���L�ٽ'�,�B����T�w��J��A�ϧN/��M��c��'_��9��xj`V��	����挳x&��9?�y���Z;����LǶ��6�N�s�4N�ӧ������#ŏ$�k&s�d�*��B���̛���T.�Mr���7��I
{k�g�B>�庺���Ԩ�Iy6�b�qEL���T�����J���[^�'�����/�/�0�̸v�O~�^�W45��D(��P5!�����)�-�����Rt� ˹��=f0.��-����ҝ~QQ����`����5�T�I�6�窝��j:cb#~b1�*�����cC'��#$n	��)/d�т�Gݤ����*c�fNaO���$Dm�UHj0��2�4�{�S#e�G��/��:�m��gZo���nFUk�ġ��TbΦ�x
�:ΐ��������}��gX?���,��f;���{[zk��9Y7��x�q�
���:�':��y�c��l7܇Vp�Z��<�k.Ŵ�_T�k&m�w�hk���Jt���|$-mR�f&]�qR���(�ZZ*$%����-+ ����Ŗ����ɠ�UǕyb��6S�a���<�S�R�ι�U֫����m�G2
�*P�J68A2�b�8�Z�\���<A�ri�sF4�TI���{Ȭ�:!-�@m�úW
��'�/�(Ivj���(�ʂIe U�Y����8�pt�%�)8��خ!`EVCl��hiQ�C��!Pa�M�I3J�8ƁYҮ�k�4M�������K�>�x���2կ�H9_V���ș�?��+x��j6�y�!�,�O�i�����(���AUt��OS����.��H�t�u�6�<�8��a~�Bv��Q@��T���&\�Y�u㣂R,{��4�]��W7�JN����+ W�H!O�5w�y����/ʓ����\�W1�k�h�7Qcf^�%�YdާB��N���^ܣ~&�J=P�xe��KI��:A�A���E�a�=��V��vk=)�}xBK�w��S���>�/�=���Q�}
I;<*:F�T�Or�3�Y�t쑏%(Y��g�c�Ŝ���]��3t��L ������7�����Z+Ѐ{T��a�
e��J��\eO�]$3��@�*E�j �y|���3:��#��nR����L}�4����f[�[���G�D�2�"�}�Y\"K��m`�v)'6�(��KM]c��B)�PL��
�SϪS��k�{�&�Ÿ��(�P"~}�z4Pr�ze4���.�ЁYyH�I���֒�k�TmȒdu��]�0{�{"�6��,�u��R�!�lL���-�\�O��tq�ѵ��>���n
5�,5�,��@JgFB��^��Y��̒�C���s%�by�hg�b?e��G�
����993v�F�W�ϵ�>�b�`$1�l��;�K#��rw��)s�L)����Gd�O/~z�?�@|%VX��Aw�e�]2�ǖ�z�k'��5iд
��rt��u8�(6kA�jCN���ᕝ����JQMޛznJ9� yp���:B#�-2R��ip�]l�����Y�E��*U!��2��w<�BʃA@�k��@0A�34�;��#���[^����A]ݹ���41�w�mʈ�ơ�G��"�&��Q��;��8r�Ly��_�����������(�Џ=�Rʹ\L�aެ���o���3f���� C{�x.�	�!T���a)����k�]������,�"`��Js6�fB��.�%��
EA<���(�h�U3:�ڵ�Lw����mK�����)�K		)�1�Ȕsk`k�b��W,=�\A�}�W�KD�'����V�KR)��<�\ب�.�9��P���j�^q[Z��K�iD��H��v��(xO*a`{�*��$,8,t��5���|����>?��Fүw�ѿ=�O�caR���t����}��H�	�Y�e7l��%�/'�{�#Jn�ݝ휀DE�����Ky\}Go��\��U���?��
��"p���D��ket
Jj"���Bre�|2�|���i�p�LC�j+������C�����„�CW�;�Z�� �F4pH/q����h�hO�v�_���(��l�#]�~��xm�M���֪�J��,�e��l��0�_��n4���Q_��g86�X��a}9���iI@Ţ�J�Sn<��Y^��muݽ�1�ZI�Z�1���
�8�™���Ro��a+�OwZ`��$p|�B�����J9��̱
E�X��觨�
?�T�L?=�m�^[�[�́�ӓ1?Y?��b0����I*B�~
,9�E:��U\�L��(�o�d)�y\Qpj��y�F8��.��������%gT���YKc*�v���E�no�;���\7Vz�e]�ȺsŸ�l�ʶ|�ŽhJc���$Q�*��>9MW�K-�n��m�-����|'��29�j?��ګ��4��������)=N_Fn*��i	�^��2�I��q+���9���(�SPv"5`#y0M?=fm�M�eN	�W3|ܺy�
��+LL�ڙ%,W�.�9U�3-0h?�6U¤���s�T�R!a��*`u`�=�Ρ����"�5��T�H/lF�Y�Y]N�#l�X�
Mc��j+
�B�"ED������ӳ�Lk0VH����8:.����X3��}�p�U�u��Y�5`f"�,{'UoZ�`���mj�r;��S���nt��v����EIV����k�W`���������?p!$F�~_���^ߊ���S���g`h�A��J�!Yqak�K�g) �o�����!��L?�Z�}/�u{��[�ւ�j��Ů���|Q���h���ū�Ӳ�J�
IPʍ�҃����ѻ(y���
s%�Z=�>�M���Y%�[3!O���N�&Ĉt�Pۈݷ���\���͎���DsP��a�(��6h���Z�94"�2���+�|��q�y4��DXŝ�'(���~/׭lWX��^p}����xJ��b
r�F-���>�v�k�7�~j��;��o����ʅ9rEs�ʤe.ի�^[�"<���[�G�W��d�?iV��m��K�K��N��a	�k��a��`���z����]�ٹ1̝(Քd<��w����Ë-_��zJ�a"E�
e`���9ա}t�S��Dp�g�Ҍ5�U�l�Jt�,���8r��—��%x?�$<���2z:�<%����Su�J�0����5U���'�$�U�����gymUK$�+Jxj`^�VL�D�6XO�v�)
�cեg=���/(!w?��B��$���N��G�1o��n�����]�x@T���v���F�
�J�g\U��V��g��;�H����t��,ݬ�r����P㝡_����~)X�BRW����c�j�|ߪ(Ko����x�,w懫~���%�Q@�U�%��d�m��J�3��Ӿ,� A8{�>�%;��B%�@�K5�םs�<s�zR��r2O���(Ʉ�j�\�g!$?���,�9�ƧQ�(�����Ј�/���@�RKsWq9��x�QtH�2�M��U�����d���9�NA�Ґ�Α�i������r�g4Uv�������a��8�?���!4�!W�f�>R��l�v-���}~�0�4و8�]Ĕ��*]�Qx^*�Q06�� �G�w]l|g��
K�*�����a���ޭMG8���B�V|�R�6�Ry��IͺGT�*� �HCֲ���]�WGV|����ʪ喦
�����#��,+��)�~8\9(�W���Y��Ũ��m�C�ɰ(�Q�X�S�H�hx(r�`��rL5]�z�Խw�_���ԹSz�Ap$�υ���Q2���*!�c�N&�1%-� �K��%�s�.�D�j��}޼/�u�+�Ep������Uq2%���ѺʏPN�ȝ8�Ҫ��乫�:�v?U@A8���\�v[{ft��4Xm�uH�9\k�~�{*eA�~�fX�5i�֤�a�2d�/\�r�YL�Kl9��'$;��H����n��4=	�ސ�{oL��8nM�4G�Tޮ�Yک!��/�$�
i�%y략�����F��Y_]s�h5:���O�H�ƙG�)�L�QLۤQ�&�ɦ���11��s)��K���l����"B1
�r�}�"z�b���$�������]�$^P�@�"�J��f���։3)E�:d=R�$�q�j69"�ڮ6͗����DK�2�,�jf4�ض:P�:9�
7���i�gO>9.�v��S�p�
���"%H��|%�����򚄶�5.^��O�Ƣ\�f�e�h{�~(4T�P�nU�A5V�oB�`��~F��ӹ2�/�E�Q:B��lݘq�)���!�Nd��4��0�n�!�/�9t�8�����$�=|�qcy�s��T���k�����W��l��>��/S�'��2o�5_�6��5o�.Ξ�a�@y�	���Ŧ�ѡb`�h����n���)�5� ��J���*��,����ɜ'jB%B2|I�f ��p��F��lN٘���Vbw�~엺�8hi
DU��1�!���hE[�����\ª]�V��}��g�O.�7.?��l-��u��n��+h�Gl�n���8��hD>�	�[m����Y�p��,���nv�}Ls8�0���\�x�&kݐ�z(��߷��v+���_���2���4���Ge�I拃SdH?�Е&�̃��18��%;�b씺������ֿ��}-�h_��)h�Dd�FU�	�Í)�-���^'tl8R��J�	q}/i"����~x�]�d��$Vܕ�:��k<�3s� w_��W�#�1^�"P�rOm�hm�q���
��zdd�-��\Kh�X�ba(��D�ɈR1�G�:',:��/�$��ֺT��mu�4�44+���%��AW$��(��vC��Ȼ��rycl����.ˢF�\�J�b��6�K+>>d��[K��C��iU�a��Ӆ���9������?�����)sn�����%9�WZT�[�W��kҫ(����(yY}��$-�
X����՝��w��<�1�9#���3�.$�^Ds<:,���s��ubXBN����3m?��w��U��w�+ ;��UWj�T?�Aa=vm�V&�X�@ql�J��5/�2�N�g?�.J=t��(h<y�P�j>	�A�<(]��4�2{S �[P.L��FA���3��dC�M�+n4�Y�j�ƫ��B]�raL�M^,���`Bq�*z�ȭ���&-�����1uW��W����;\t�
��X34�
����~<\s��]��E��o�˅S)I����:)<n�
~(���I�e���y{ԋ	2sK�%��b�i�E�5pC��G�9h�-<M��I]E�r�[5V�Zy"A�W��d#�Ϯ,6�SAy�����M+�Y�i�o�����I��5͛�jO�����
J*��S��*}f�0#Q���;�G�v�'9=��V���C���p��9��a(Y�����,�o��l�&�(��KU12�+���|V����s��.]��*D�Ƶ�Ƣ��+�y1��S�(�q�/��0aA�t�rV���_�I���RkI}�ʴ�w�)c�dt�>2)�"h��F`�$w��ו�="c�uzIٙgJj9�t������iD�/��"�`�[��h�y���1=ҭ�y7�w\���ƶj�	@Y�H(lBX��D��f}k_Uf��W�+<R��?�c�A�+�������/_���k��l�?��ϧ��ZTN��J$4��)x����rhf얂����!q`#����<2y�aM�yӌ8l�\�F�� '��Q�=6�h0�Fz2<V��4���rg���+�+ ]G6�r>៺Lc`�5jm�0���3^�L⩺\
'�$@�6����Ī^?�vd�&��^� |bj3Ō^~�K�`x[{��0V-�|���q�ms-�o�='�[3�����oW΋��v��M����iUe5��.���!3mQnoS��v��jsY̮���� �o�fh������i���H4�Fэ^�m�`щ���\Z���F��U�
P��n�\����^�5m+b޶��qr{�[I�G�u�WڸUI�-	��PE֪F�@�(
����`��#����]��
�r('yTZQPf	�eE�
w��%����3�"Jps̑������Z�0�0����o��?`�@�����ynL�+�m�h��4.XH�d20��
���e͋���e��v�Iɰ6�4I��Z��`u�ڮ�C?Ε(�|�Ә8��gJ��6�6�zVŌ��EJ�Ծ��N���*Ô��p�PK/�����b���]�?�?����z���^e �g�W~�f�.�XyM�%L��&�
����k�
�ER�>tN0py��^l/�ǹOE�v�Z�`p�P�9l�wrd�|��/�g�Ye����@�e��������m��[?:F�.��.͸[�V��\��>�ʌ�"tU2Cݽ��fC	�5����F�ׅ��T��ǩ���xT��)!b��1?]&���~�B��Z�t%d��S��許T
��<O�E5�W���D�n�K��R�IX���׵�m�z�꛷8�o�&+�ԙ�-O�ET��o�Ðr��%�H`+�c�4��dVV�����f�(�|�)�Eq)��-o�	�����mL�Kl7���A�����B��;�S����eP��.M8���x8K�+���bޑ�N���ܜ6�j"��ە=���
����g������?M|�G'����wŷoo�����/■��%K^�
a@y�v��������S����0s���/��mH��-�k��>굿泴������B/����=P��&�J��,���	ೀ�i�(���O?���4�ԕ	cB4A�����*Gl���v����s��0��GU�_DO�^�1�$�
6f(����y<�Q�R2i�xG+�%$��
`1Aen�*�ޘ��`�A+2�C"��'QS��
�V�o�l���>ep�IaZ\�G�}Au�]��TmeĝWf�[1Ȟ��3��Dӊ`�	�s���,D��8��F�B2icc��p�*<�I"�^E�[�ŵ��hy;3�9��0X��(W��MU!z��y���z�w���Tˇ�(G)��m]�&�l?|�眪���E2/�Q���v�q��e��z�no����y]o���?z�n=�����K���6ګ��t•Y��~�n�ߴ�_�	5�
�����^�C�h�ȫA^���0��(��L-��W�hfı�h>_�JJf��w5��Ey�D��$�5�EH�
�T��U��o��٬M;��ʩ����k��,�u+����y�h�T�Ǖ�iG����*M=�x�.m/0�jD�nO�n�A�M\-`����#G��V)ʔ���h!J��KcG�Zo�xh񳇫��}|h��7�Z$0�+�sXիV9�������K���7!/���E�%�,Na�OI�Ii�7�7��׽gu�-�.��A�e~�3���8h�z��b���5���Fx�,���N@w:��S�@��L)#AӧK���J���9��Y�4TF!�԰���4�(n55��3��ic�m=L�E���D��4��
�F�چIs)I�$�bWo�8	�k�Z�Ÿ����`b^��Rة�\�{:m�*MI�	��
_�g&H�#m��C'�YN��%�԰�Hc%>j����)�[��y����>=�����+����+�W���Cf�����>��S�m��yV��J��+o,���S�n ��B����s���8�U�?����Hg��a�Y�Y��C������ʡ��f+*
֒K&M��gX?B�8�U<C�9*	��J.�m��3[��_��~�<BB��2�6��0ҭб��m�!)]H�
�j��>5#!��e�.�)~)a�;cL�j@�2�bM
1-�\�D�`I{��Y�EU� ڦ��@󠅹�=n*�L�X�����?JPG��Z�ZU�\�,��9�P�٤j���BW=|��ls��ۢ�].�p�,‚"�D�A3�{m�X���c���L���,-�����JKA��=�b��~/-]�T��^�m�ؾ���tz����l]�f�8rq��-Ğr}�v�9��L\�s�:k�\sNI�I9�Wx�>m�%�����`��z:Oݩ=2g:cI�2�8�V������n������{�ɣ���H:�6Y�]�'3h��Me9mTUr!��֏n`���Q�)������6l��'�6d��%��T���vE�����.�_�k%j��)OC%�1��.���5��U���(�$��MXkM�8)ڌA%$�^�A(.�Ю��s��� �*�m]���/���^��X�my[$�B'��)��|�3y�.ܶ+w{h�}|'u������e�\���24�{�p+a���ziw��T�)�Rī��������{xE�!�.o��~[�z�ZTz�_����dr=/����(�5cm:�֒|����^�k#�����J_�>�%<	X�om�;�Vk�^OS+�ٲ0u1l�h�d��S�<.���MߌO1��L0ƕ"MhL셹�JT@CwM�K�:��0��@ўQ���80D�}��f�b�H�f3�6�+2�$r^rX6�"c�:sHFR^�-��+�7���Pf]��s�1�C="*<#���pZ�iV#C(\�/&/H��mX�aV�骟�s�ry/����]k��bQ'j�S�<�ژ'#��]��|�����p3.{��Y,�|=��o�p)���{��7w���f���zl����e�W�=�z�o��[O�^S�s�3�������q�^ʗ�=�}�E��U�ȞMn@\^n<��Q�hD�C�ˎh�Zќ4�R'��Iӯ�W@(��,�mXk1�w�,M�����Zt��(�v�t�*=�쐢&�z2!t�X����#.��9c�/(�uOį�{��SPH�r/
ف��s�^�VC��k
Z���î�& m|Qw��\�(�11����'�	OzTf���*�4��Ù�"�wk��%���TɄ?S;V�Kw�iU���.�7�uٺ���,�޺F���Ԣ�Q�SL�1u��o녴6�	�i�'#L��[��՚��km�<QP��ϱ�D�õ�z
K�o=X}{�������|@��Bg��(�\��+�M6���Q���֋6=m��˭&�!<$>�͛h�=��0���(�:��,:�ә��;5�8[��H&Rp�6S�ȅb��R�3�����d٧#9\��"TR��c�镘[�Gv���s�M�-��ܠ|Je��(���n� ��t�4QiCʙ���So��ԄH)�<`Z~P�w4F��m�,�9�$�
Y�	lf�抜�Qu6�PzʥU�,Z��|EƴW�Y|��B�+�5��<�l�5�08i�����,Ys���`�+�߾��G�a�M�>�]��`�K��r:(����3�|75r	&%���J����J~-^����\��f��� 8���]�~��w�v�=s��}�����??�
A�W�
_����B��YZ��E��~#��#��4
�,�o��*ʫc)7Dn�Y�
��ʘl�,6H��`{gk/����U�ds͖d�+p��"����%���n�\g�'�*D7	� �NS�'7v�3�����A�ew���”tǡҔlC`�A�KNgB�h^E��g\��ۨ�;ZT���*��4��%�e�����o�F>C���R�)i��=���z$M�S�z!χ5���r�o5'PJ鉤�*���ra����T?�&�Yi�f_�e�����g��\�nIc�UW���gM�%*���0�x������~��������)W�4ςg@I��
��/[2�M} *��LJ��늇��1��t��j���h5�I4�������u\����T�F"��PL�S<!��%y��e�]j��162����Q���J
�(}�]��%3����E�����N�HFA�\�Z��SL����d���9��u�3���j�tuS�(xL3
�=���5 �@��n�qZ�'����ض#P%4ax��2��֮�����U�S��E���z��eA���lhY��A+k:���Ȥ�(H,[*���2(yu�	W����-�&�u��X�ٲP����4�r�Vnr]�U�Z֐`�J� �%z|���&�P��;�E�Xܹ6㺠>�2Gnˡב�ɟ����*�<i�%F��Le�cI	�k�z1�=�?���f�g�U�V����
�����g]!;>Y�2ѓ�{�'M�D{ 8IJ^9�(�`��Quy�Q�B4Z��7���[{��]%���_ӆ�^���tja����
�L��#�CX{y��(��Z��:��e�h��[[���ƺc�N�af�Y�A��a��������.���.,J��(!�R��T���N$�2�L�=<ǥ���<A�5����֫:���"��J�i��|�]���D��vQ���2�(œ8<�场C"94�q\����"�Qo�?������^��|�eO��D�c-]O�t�2$#!Y.=�����F��r�2��fX���F�#�e�C�r�S.!��zv�O!RN}���BsI!��1}p�͎|DU�	�����D#(fVD�u�z�H�̝�뻅x���¨��p5�Yx�Y�@Zpaj�`�N�+Nh�6Vɠq&�$-�*iu�b�i���v|�߅	)~�2�7"�M�	e�.��9�T�����1��Όq��B@�F���[�
-��ڃX�Hƣq�|{>��;�??����Ug��0٣J�죭D�Ŗ����4��V�$I�-#6��Ÿ<��Cnti54K��5E����*�=f'D�ū$P1쯾4�w��Z?�v6J�p����>���s�m��������$��9Y��,�@ �D�
!�R�)颸���RҊ����\�R˅l�D��ꉐ>eq���ioEHOH�T4��}Vlx���X�ze�Ь�|OAzT��&�\����p��6�t��L�j�<�G����~N�	:#-K|����������sM�D�+��,�NP�E�J;�a0벖��1TsU�!uQ��4ߗ���D
��+U����q�l)R҄z���)h�yM1��2m-�	��l�Ж/ͭl��e6[�o�gtDK��v��M�D$w�%��
���d;j�D�E&�f�^�Ϋm^LC&�3�=,٬�:����v���^��h����(#]��
mpI	Z�ͥԺ*s홵l�6�eV�f�٣ϦM�R���A�=����([�y�Г�sn5��������)�gF�����<V��-�a�DL錒��D��y���?d��Iς�^���q��(�p�	V��^�:�F��ŔsزJ�[2�4��褜�=�sUvR"��b�O�6�p�H���4���|�#sop�zD��!^I�?,L�e�R�2��r=�Wh�M�G�=#Iex�S�\!�Zn���&.���q�C\ۮ��� �hEj�KM��4�*0C�bJq�LW��0��Cb��{
B��J��+BCo�ʳ��_�M�P�^-o��n���>�a%�ZZI^�-�*��Sf[p
[c?��&Dy>&�����^�-
�/��JL<WXn��V��ܱѦ�Ao)���ɧ9�~JgB����/�vעC!�&�O;ݭ���I�C�0:lK��9��q���k���:^~o�
�?&d;䁡J^�妄�M�v�e�2K1�G��TԈ@R���F��
�
&=i�uYT�A�N�-��R-���7Mbk�Du���������4��tW}�$�@dJ�+��Fi�\��7����pfH�t�YM�E��ٯ���ܣmjWk�-"�{)�+���1lvF\_�F|i��Va��ڍ��I����K�a����8�hC����M; �٣����Ȧ�u��Ix��'%-��Z�����B+�y��x��KQaה`�e�|�V�C�(:6�D���]��D�!�85P3r�3-�2���d[��~�f�zH���0�H��MA�%)<Ɯ�n>#����*v��PUCȘ���K�3	��a��@�.P�6�������2Cҝ:��ߔ����/�V��F!���h��Kul.hۄ�{iZ��:�rU���p��4�ԗ�hi�*�
\ �Vr����%^.�
�
E�dQU��Џ��a���nbz]Ol��!�����3�u���Cx�^�[$�2gXɏT�L����m�1�Qvc����VN�J"Lͱ�}C�^ެ[�CPO/f����}}�D��!����F��$zDG2�s�]F)9z���PR4mGy㉷{�De���1��š�"�!����h)��E
�X\gw1؍S�.��Y��5��0z�+�T#m����V��YK} K;KH��h�� 
C�8S��PE�)t�)-l-��f%-�]� u6U��V�[�S!i�Y-SKv����Em����,)�)
AFRՌƓi�|�8��B��{"p-	�2t�M�M�F[�����!������p}��~��
Xu��{��m�	h#�)��z����9>�Hj͘JqQ�G��pg��o��i��J���9��	��%u@�d��+S�"���O�|�9�L͊j�a`#�RK�e�4cJ��-�\�D���<\�*D�]}�FS��>N���p�(Kd�8�/�Q0��Fk�_Zչقp�)�5�0���U�)�"�%���Pb���0̙-	��Q
���[���-Rdz%T'MQ�F�f�������X�Y2eu� 7��X	�d֬�Y��hQ�YVX��8X--)�>����J���Y�vm�x��ko
ȗo���%r���;��TO��w|n8ey�Lm9�]J��|_���|`�9@9hl*Z�0��mj�M�y7[��hN��yF�qv�%S8KD!�\�G����m*T-o��T�"{ծ�
'��l�ݔ�a74��p��فc*Z�7	Ӑ��ڂr�{�M{��}#�������>9YT��t�!��r)�2�|Um�at�6��5SP�*"5�6����p�_���0� ���6��I����ѷ��F!���G�n-�fZ��� G�vZ�qWq��>�XҼ����*/�x�ӣ��5�h�S�6���H�(L!���	d�(X������m�*�@_U�2EcT����k�E���J}*��O�N�6�W��)�$���� 1O�
;F���(�����n��4��m0Sۋh��䖹�젪?���ҌU��u��H������4{��l .:<���fr��?r�q8;�"���Z.���
W�`JX�D|��kG�ª��t�:|DGS��j�@������jtS�M��;8t�X�������L4��H	X�hF�C�9U�.��Q3R�4����b[Z
o��� ��(�6K��${z�x*��є�R��l��Mg)�$�ʦ��*8#M��i�֞�d:�	A�h�T��+q����]�`6
�Q�!X�X��MH�
�a&H�����f}*];d��/u����	]��р�-v�|Y�e�
�%흪��(��Vp��'z=�n�X�1�F0q�S�-�S���p1�5��ѢRJ6�ڵ+��PUj��C-:/~�M��(�"��(���I�b#�Z��ޠ���!����|fD'˖s3|SW��ʘ�(��ya1�X�8����D�B�b0�}�[�?�(�Ԍ�$B�
xxUk�q�¤���M�h<�N� w�VV��h��*��.���_���CLթ���p�^5�$K��^L�����҆��xʁ�yr�&l���w��%��E�?+��*T-�q�?������!��m����h_�h��<+��%i)�4Z��}2t�t!T�,,������S�#
¾ո;�6�V;Yt�fC�HH�;o�	L��j�_���c�/�r��U��N�=�)���j�6��g3J�4�����Q������f�_-QU
���-��0��)�1�i�jz���ޡK��Bn�<�n���4Ai
A����'C�[��ѓ!��y���Uwl�'��[g��XO�/p���6vߧ�O��!�6uN�Z�Ā2j?W���GwD]z�ڭGcXk��~�znR��#���KNspvUό_O��'���� W�d<M
�������M�L�~e�s���R9��M�̂Y{�������&��}�Ιm�yV.�[4���$�H��㐃
�d�H]5�P����t��F��S$�j�
oK�6�0�we�S�%�C$"�!֔�4��a���fІN����3Y�ɩs5�p�b�=yr�W/�F8Bk$��j/#(١J�q���h�
�s���/E�;+ �nZ@ת��P�d�g������P#Z��
o˞���U@;�#�{
�嫹r��m~�f@�&掼wif9�	�+^-�_Ӈ��m�֙�$�������}�$c��B�fT�
�
�X�ւ��˜ޗ�20�_�aR��›d�즩P�$�U�\a��unL+�M`(��Z��	)�qa<x6Fܜci�VMQ�h�T{����#�MQW˲HN���v��S���
��,ʖ�2�|�iD�h�f\���tkc���擬2��C��b�C���w|EE�.U֕eދH�>Т�
!#SOF�Y]�pS����虂W��ZC��t�UAs^3��m�y��GA��}�U+�
��ŵ"�'h�T�G9&ɜ;�g�:?m�#=L[<�Sk�f�̺�d��ċTN���'\����a���j��l�p���������-��H��k`��*d#�9�!?m�m�hΟ��昕�X`��@������ru�/a���U����Z�-��Ի��A͟a�`���$��MD�tE޻��V�|C�n[D�gTQN�x`������:���l��"��W��p�F�d@�[�b0�I���~^���}>oۦ3�,����t�y����iJ�F�)qA&�[��L_�j��m�#�6�R���2�w��_B
�)I��&.+M��p�U8nK�?����=w�x���cԄ;I ���V�G��ǔS�A�ҥo0��3��v�+4���;}��d�v"�)�6�F.e(=%P��Tb>��VN�������v
�v'���s.�F����F�H��k�&��[o��IF+���b�*���DO��!w<�y�V�<�#b�E���"K[�A*Bk�i�Ưb�,r{:!��
I�&Gj�l/�A���s*T`� �Xɐ�of�����2j���Eқf�B���D沓y�,��z=�}�
��X_,��
�<�/�]���=0��o�tD}ʖR���o�<Pf@<��赀���j�1I��	7�
&$��ڛB'�)~�L�H��X�ZL�m:'�:ʇ%~/�#nὣ�鐇���;�=D�j�r��79��8f@�(�`4I���:k���i�j\�E��rU"��
��R&C+Ϥ"Y�|i��:�E�b/Qc#S$�9�[g
ne!%W��y`{]����y C7��b������`��H�a�EnZ@c�R0X����C����$V�`+�7��Ϧ��6��$V��K�\�^������_�G(�|+�Чj��	7�rKq�mV6Sq8B�_���z����N�eꐺ׳�����CF&1:ѵG�u>�uݴ�F���9S�Ml p��À�_��8U��6�r��N�����s�j���,�E�wqs8�юZ�e�s�..�Yr�dW�Y#Q�Z� �E���N�
��K/ef�����L��b�mi��x�*��Ǻ�M�P�%D��g|7KB�Ϗ�<��$P�fTuƊV\IW��r��wl�
mC����<�1t�+
ctW�|e��[Kd����F]����!pXU���I���I�b:�ue�u��M�id�HR�]����z�'q�������6�����*z�|�-Hv>d�(���O�S��nJpP�l�y�t���w`*�_I��D�����`�d��q����y�������9�hy�v��1�J;
aE�#�7�v���l���`�\I�PL{?����1*˶�)r
��j4�G�&2�Iǵ<� �2��ph!��8q�E��թ�k�/��|f5���nekq��+BQˆ�&�/�j�,0��7��˶�{�6w�6��H�������i�q/�P����Y\�F�
:��Oƨ	��Q<H��U�S�&�!��B[j��(��Z�F>@O<�Ziی��l춡gX�1���h��d��w�R�GA�g�/�L�s�7�&8!�e�&��8g��DͿbGR��ꆠRmԒ���G5B^5OC���1+z(�w(K�AG��h3ǿdX��+G�5i�xf	r�%A�����E�>5Q� ��ۮ=��-�v9B�������Bq-i�Я5��59i��Ӝ'�r����<{)���eU苙�glp�|�'���hUYA(�)cxA�x5����!%M���Tf�&��P�VQh�ݝ]���.p���`�a�tH{�\��E�ɤ���̑]]�0 C�,5����YN��T=y�-�L�~�V�J���z���q�fɯl(��,U�}��2M�Ɛ�n&b�U������R����<�
�j&%����;J���lt(̰[IXf��H_�H6�`������c"���������<A�ۛ#e���ʏ����#���%���c�u�]Ɋ�c��=vӒIoX<�ʇ0`��i,�|\�1�Y��"�a��m{��Yq�H6�m�������=¶�^����mG�Q�5_`LP���b!��*W�G"Ȓ��j�)��=�<�\}E�r�i�e�x
0O�������l�1
���,c�����G�$�Ֆ0=���D�b-�I�1r��/�C�:�,&إ�����2��1�L��7 ��0�[o���7�+�.g�IPr�JD2��I^8!�Y
�٥����Ka��v#c��
���u1�I(�<{v>���պ@ۀ(��!�ԑ!��C����͒_�=�y�CB	l��|��2�\��X��E��}��h�.d��X��i�P;_d:6U�����m��)�U4�Ȟ6�%����bPp��c��Vt
��}�ZV%@�+�)E&�l��B�O.�QP�9UQلt��V��S����i�=��և�[�0�v�$+��<��Ee�����d�'0�?�/O�㺑�Od��o���W-͵q=��(Q��M��I���8{���]L_���e[`b��㤟eͅ��iݴ�6�Y������@p�븙˂G�k"	�Q}�2t��JŸ/mŒ�4)P�Q��=ص�)�	s����Ho@�,y�`H��(�s�<l}�:�~Sz3SC�H[�P[�ni�'T�#�Q�(:���L†CNg&��I�LS�n�I����bC.�G_~�7����i�y}%���
Md�`UK�a�<���qh<��D�ro\�f��R�6;�y�&�[ߑ��X���;^��h�A���z�Ҕ�Q4E3�5�-�aM�0�V��� �F߆�����8iS��
x�vޱ�Ri�O��8��Y`��d�ܹOU*��r8&�B����Az5V��SG��\+��q'D���h7�yM
�U�ݻ��j9�GS�x+أ��(�}���2@h`�5�4�4���`�9�A�������Iht��Dt?��.ڎp6O�E~�3�e+l'Ƞ����"�P��^��ӡ��g��I�7�4.1�0J�^��
�<;�w�r'wE���nU䂧��[/]ݸe�c�zl�K�w���]�7Fpk�V�4�Q�r�|�&�=�t��82�t��-4��i�QʳNR�5W[�>2ٜs��#~����+�g��.
*�]o+
�)�-�"����dr5XIPH���ȃ�C�N�h�a�aP�[j�*lժ��yiae�w>M	^�:�L]Ic����	��q�H�1�2���|B�^�4������Ǡ6a(�&XvΣN�у�,0�a�컝DF��}n���q�J�8I��z&���O��@R':�!&��d.Bch�$KFSk"�9<|&��!���°���F���_L	�h�j�c�1h������oi�f̫�v'�1b�u6��
�VGr��xz�
��
ɇ�q��v���op�
4JW�j0n!�\���:ttiRp�=�<T�*��z�����z��cH9����5u��{a�P��M5�9+V��~ l� ���rJ �� �ʌ��~�}��\`���7(��z
�zN�����1�M�̟���Z�]�(����KS�F�!�rқ/{���Q��,}���Y�M����%�[/!�zM��f��>%;��@4��jM�4���܈�Z�{�@��b�%�?�_�s�e+�]�t��
M	}��&z�x�N:�&W���e8��01�(op�?>��U�ÃD-N+Mm��E��EJ	�R2��N�q����ޝ&w��TS��0������t;#9��?[�{�zWƢbX/��W����j�0m�)z��$���?*��Y+��:eD����%a����)���$c�g�s��y���אȁ�����/���([�}-�3e�}��%�x\c<,�R$A�B�^cJ)�� y��pIu�s�b��k���vK�:D^��bf��F�49���!I!�d2H�[kC4��F+m.Fڃl�9����N�Vd��IK.�Q��&Gټp��~�C�h�]+�'%!hݽ�x�=Z.!XZ��U��J��l������ӂ_Wj��q�N4TR�$���JgG�������v�F�<sx�ʠCݧ,w�c��R�\�D�7�����ގ5�ɕ�{�0�TN��ji(���Wr���0�I{!	J#�Qթ�i�B�t�	�Q��z�践��e`���ǧ�&1��a�=�ZI��ƤN2�A��r�7�����EV�ʛM˃)!�f�Ix�ЪiG]'�[$2��vjx�H�	�7������R�t��
+^�V^Uk��2r0���#��C*�E
w�R��Ms�v�ϑIюY���&���	p��x.��HG�G6���4gNqj��Uj�S6�(��28�4p�����"0�o7pG�i�dS#���|�Z�Nv�MG኉u�SW%�x�O�?@���T*���(m��˥=��$OH��e�����9H�Ճ<b0��.z*<�n4%G���KqV	�ӡ��*JP[��zWo�%��VqtƁ���F��G��9C���N���kp��SrăKS���YT3rA������C��#(��9:�����N�)4�y�xhH���;�c/ְ�Lf�H�`��T*vm���z(CZZ���B�C�(X���X&K�	��e0eՙ�P)�Y�s�=�4�~�Փ�{���7�8��i�
�ު��EI��Ɇ,!�`XG��=�x�LR���,5�n�g-���z��<x����_�ƕ��x��x0`Y<����oO�&xO�����c*&�kx��c��H�ӄO�4�s��עy�ug�
E�9��$�)���/֮��Oz��4�_�g�#�/}�����{�.rw�ϕS����C���ƻv9];��>�p��Ek���~���rFt�w	ζ�r�q ߖwm�&��KҦ��b��>��L���	9e	��<�gE��-�>(�t�F������0�;A�U�ϝ���teWҹ��>k�1�`a=�,�}��糒�ӕ�:�;{Ӕ�<�1���Q�x8��	��Y̗kZ}�Kk��}���<�[��я��z[rAGB�ߩ���s��Z6�ce�r�w�8�iP˩[�g���j[y�������i��5`;��4Y^�����2��/a�=�Uz��:(tA`��ÐG���"�ݒF?���k�;.�/~�JI������P|j,�C`)ՐO|J��S��l}�&ӄ@íl
!�)�J�0g�c.�+���t�
͸�����C��4�*�i*L��RvJ���:�(T��4_��6�p�b��^���<8�%�Pq���s�^�Wgu�0�>Il���?&k̀q����C�!�G�3d�R�|���J�Q��F����U�y�F�!��4����.�mm�[�&��wڇ��?�ʰ�2��0)Ƴ-:��ջ��3Qd:Sp��s�{Kq:`��*�ѡ���W�c6槨�"=��ޏr8	v�~��������~�_l�d<s-����bH<�)�C/g�֧'t��WJS>���p\����`�����b_� �"�����O��?y�B;��s���<r���zx|�m&�Q�8��T�N���7�ɴ����mM0��n��ԏ
�8�'f���y�Ё.$����͝T3,�v�^�L~�ih�B�p><K�~.U��	������g��2���կ����-�p�ُv���L+㤂l�Ѻ�A[dA�^y<����iI_i<|�a��F���ӃH!�c�ͤxI�+��`}�[��	����ޥ���jEyL4� CUj=No�>��+��>n��S��A�{�p~�:��'��|����m&/<S8?�p8���<N�h����.�i��ݗ&?�c_��q�'��v|�]�~P����I�A�I���て�3�%=�j���u����F���)y>�CC�`��'ѷ�}f����g'�-��L�6���i���K�V�R��X8��;�]}(�]�A��ᅻ�br�#_�_�t~
q���Fw��x����̮�,��s�]��^��J�./�8�;�H��@�g�i��g���n��������zH ��l�I��IlǶb˖%K�VKU�R����/����ֽ��J��:O"K��{��=﷽��:T��Y��Ë6�,���e�>#S����}`�Н�:�#:��p��'�X��¤�RI��g*�|"C��v�z輹���ʺ��Z�����l��(�Mv�@�T��h��[s{�t��j
o���JO�j�\6j!�����"�@��5G]��q";HU�Lp� D�zS-��Y�<��pK��Ե�/!TR���+�ZIW��MCo��W&@q��p�x�9`Ё&�a��j=Y�1�)^l�2ټ�7��K��������r1�,ՈJb��Z�D�^�u�*uo��[������Ð�q�9g�J��A����W���ƙ��b9&���mX?���
�j�B�N�r5��Q
)r����]��"�0��ȕ<���h��Ez��w�%ȗ���@ad�j�B �h%JZ�y�+_��.@�����F#�"s�9�>R��I���4Cd�]5*��35�G���P$��qm:�ym�u�i�
�P�7�a��}ۯ�x�q�t�H��1��ݭM!h]��9FZK�yx����y��0Ao��FE��D�S2�X�&LaM�>�W^y���e�H-�=F�>��o����.�Bq�PW;r�q� �K�N^�q.N�ݺ\f�1a5׾�P^'
����O_ٟJo�Q�zg��0� ��`wa�+n����i
��Zʑ���L]��#[���^i���1�ȜdN�{�L�b��U,'��i��_�+Ty�
V�jzs���w����V�Ӫ�����T���(1W!����K���м��s"	���Q1%���5O��>�H/�V4�D(`�8fTY<�h.���|Q�HeE�}��?Ƌf�T�T_}N�R~�Fi�d����J�H�z#5E��j!��alk��vD�@5�jϤ�~@r�֩좺B�bJ�͙T�T]o����L�����6DZ-uƃ{�(���+0H}���{Q�ZĨ>�vK0��󾼒��m��o�V�"č�>�¶�GI�S`�ϒ�b��=V�e�t;�ol��4�Vd��tb�e.j�E�0:�/;��k`hD�A��Ԙ�We3�w9��-�x�Q���>6R��/�v�D/�#7���	��(f� #u���"#�օ-���J	��j���!��j@�P��p{V�Yp��
*�*)�^��;���EC���k���K�U#^�=o��:C65�<6�e捪�:j ��4겗V-�?4��e'���LnP�����ET'���
%��<Wj�X6N�we��$�|�q�"6�@�q�Я}d[�D��&b
����R�a=p���z��g���w�b}��^t�iNEz�6P�W� ��\�80�.�U,�k��h 8P�}׸i0��Ws@�N�K5L,�^
��j�B�{Us�$�*C�*s��&�Ȱ��'��P���s2�1��X��kID�)=Uxi�Ch�di����ec�뱓�Y\���jNcu��=�M�.���z�کQ�<]!�,�e.^"��-wfN1�&<\�r�@82f���^�\�
pj����e&-��������eqf��#��h��Ħ��
9�4��K"��M�쾝*N�㧂�Y6����5`�,�g?��?�؁'�y�C��yB���s�U��HIF��)2"�@�D%1
tN�
���)��ja��H��H�Dk.0�Ej�*a���{�T�q!�Qe�c���f�U���^E{,��lQ��UG:�0����VK��
[^�G��5	�nϐ� �e�JuE;W+���69/%Ps�7^X��6U��?��.�d7b���0*�(Y��q)7���n`����<�6�{���7�"@
H�k�dE^���x��k��
ʧ*<zl��E7�*�/xG�vn��R,�<�,�$��U���)��h!̕UӜe,��1O����=q�_���#
���T5���ZQ긞�.]Ψ�?�p��3J
`�j�*�9�jĵ����P�!oOY�"�겙���,!�Q�բ2b�1�Ǵ\�3,L3�L�w�wa��)N��R��q��2r�����r?$����"��T9Ȫh��X�Q�y���J����:��x}��,�;��ʑ�B����̲Z<�P�t���Jt~�."�5gY����HFl�ih��4�H�_�sVt@�5%��e)�Bፊ�)V�[��u���C�x���O.���X��?��so���z�!]4���J(�[�_`�o��{#���|~z�0���D��-*�n�Y�1��#F*�_DG�z�+��QKJ�,�a���ڒv*�͕J7�3��c�#�F,c̝;���d�/��\�C
럣zkep�oq�u��2Ʊ�P
j+	k,r��正,R���;o�Yp’��̃�XѢ%p��0c���[?K�a�Oug���$��]�G�
�a���o�I�z�IhX���tm��vfX��TM�^AtɊ����?W1ZY��(��D��)8ʪL��_��{�p�����Z���0U��c�
k�®4��JV��ַ<�Ubj$�E}A��\L�X�f0�L���G^�/p�9�^@�\8T�9��~�hd*��Ӟf2�����l����N�B`ښ�-�\W��Pk�%-?��{�}_���%篿�w�/�*L'����}�5�9vL���s�!Ʊ�#_���/|�x��%����Hɐ�IV��M�ɸ�׊�W�#աpV���s��L�G"E^|I�P~��*��^
_+�a�#}��	�-���o
��sB�᷑{Wy��vbdP�qBC��M���^7T>��XJֵj�/k���[>�B��b��
��kHU�{���eQ�]�j�,�f9G3k;���iT}7)%A��'d=ќaZԕ\��1�ܔ�?�(7�*�E�h�uQ!9�cdm_��hHHaр6j�c��]n�,##(���(�H�WsEI����*�A��hd���_��/�f
�h�S�f�QO*x�f�0����ź���+ݑ�z��~�\�y�Z.+�%�[��4�FoIy�Y?ԔS�=D)�<s�oC{�f��ё�,����A���<w��	�C��R���-ds�r��8�'�%��؂DٗX�)|N��|� �c�p��o�HKKVlj�l��]�υ�y)yT*��cg��r�:���,N���='��t��9Z������4Tي���vu���F�$���)R���:���@�:jwMRط%ê�.-�z��tE���{��A���"8��5�qm[��
T���y�|}hJ��/Y����
S����m^�H�e?�c���
0��Mu�S~��1,�)���{��or	e���Tɔ�bPnb����^��@\tv���}:�� ��I���K�i���N�W�&\]��8Hܦ�l���"��xn���l߶��vر|��o�1�(u�0W��[R1���`,'ۛXҢP�'��Jc���h7V�qK�̺ؓ��]IY�'1:~xE�/�f�1ʗ��hƅT��$��2s-q%Bf�K�}zj�xn�S��H

W�.#���֡#n
X�<�}o|��F��B��ʒ2 D��ċ�+�^���l�Y�/�W����yU[NjaF����6�?�����z�*&$�2Ȣ�����kP�4�H��N*Z�R�B�N�#$.w}��w��s�ዚ�.F`E�V���Y�}QC���˘��ۇ�2��y=@�Z�9΁�Q+�e&N����d

�r�R�nf��������{����DaW�`:��(�v�*��w쏿���u�}�#���oSAx��!ͺ�>� �%�$6���ūZT��U�w�p�H�c��'�����J�cUue��pUM�0^
OQ�p{n:0~fP��~'I2Mlc��Y��t���5�<^���8��#�vKB٦@Y�`5#��´����\¯ZY�B!��V:�M�+�
�dn	��`W]���f��r+��C��Ϊ�1���L�b��Z��(�$Ւژ��V�T��\u�
Of�$���KJ��L�z��\�u�Zފa�_]���2�&��B���X�&��!#����N�َf&P<e�3!ᦿ�:�.�@���w��J	��C�,�9j�A}�p���O��ss��RH6��'Z���O�RQc!–�<c���_5j2�v�:�}a^x{�6�bp<p��v�T��U�y�(�h+����+F��V�)UMW,*�@�4�3���`.��xB���;a%��m���/��{�%jR���:"����_7����ٜ�s݃DԵLeIu���F�_�c
R-Ȇ]+�Zq4�|�l�`}uj^b|���p�̛�&lsմ���Tj�k�ryg��hNG��T�Cg�4���E�;c]]~0��|e�֤���1�#;��;7�[�.�dC�R��������MY����X�'Ѳ��—�����Dt�
bM���L�)�a�����c))���_G�.+�����@q4ωߚ��
�rI�B+)�Cc� ˋk�G� +Ӎ)}H�+f���p�ឈdM^S��l\*F��F"�R�k���ÄFP�"C�؞���j��*H�X�2wQ���R�k�xdy��^<������#�T
-)ڱ�H�������Ϋ?a ��+�ϕ���#=Ư�/XP�S���0�kmoGnQ�
�qBL���T*��^�{��=��;֥���ͤbR�Φ��&�^?��Om��.L��@�A)?�o�����?>3��&*:���8�t�hF�.
Ö��}�q{3{~0�P��PE�VT�@T�₾�b���*��f�5S��qcW�B�,��d��^fB9M��ʼ2��uC\�4ϛ�M�B"ތ�cB��qP��@ԇܾ��I$�����z~�]U臏���IUi���4a�`E��"BCY
��Q��D�׆%*�7�(�x�@���p��!��H-�x�ҫ��[����4����A�^��f�sH��h�^�ٜ!2�3��Y9F�L��Sx�(�b�0r�A��mk|Q�>�p�?�������̹��&9L�注�W!g���'���]�/���;��ϞGc-UP���Gz��,��乩��$��Ol}�A�W�0�h���	� @G���d�-�(Ɇ����!�q������H���?��,%Þiv�vT���{63��@9�Ģئ��%.AA%m��T�ʦ��-�n�}x����#o�3�ҿJL_��.�~3��(�=]�?�k��j��0�,#�Q�jKY��i��Q2�da�>�����"Owb*,&	��B,y�,DzxI�+죪�}�k�a��l��ꚠ�-X����@��r�j����ɗp{q}T�b}�l֕��B(R�R��n�ٙ��t�
�VYW�lx������|⧻���x���ʫx�š~�f��6�F�|_�PcF@5$)�v��6a�#q��!�tg&�~�40K\�(�ԡ�Es�@��1��T�%���H)-d):}�f��<�N����p߾�f�L���>�˒��,w�|���w��fݑ��i�-%��K�f0iȨ�*@�E_��FkF��P4��"��ɓG�\<~�<�\p�4F�e�j^rAEO��*mF���Ns�{K^ �R14�"��õ&i5WjU���ɱW�{tT"䒞g��J>���N|n�ؗs
�a�Ő�eܢn��7��3���GL�����hQ(�ѼL%lBU� K!�5�ar!V}�L,��Dޛ	��].!���0�I���Q(8eE���8��ќ*�Pt����w�<���FU<E��P��x�&,�8�*f[��lި�.|��Kİ�$�:,�A���9Y�0�ew�V�H�	�uNBIE�-j��;���R��+�N�#��]����c���E�E�0���O��Q%f��6�6��lYy�C�P�?4Ӑ�������r1|q��f�%���d�Eӏo�P�7�G���z��Z����Ԝ�e�)�2���/of��%W�\�Ec��uX%�L��B�%qMH��.6�M���+.���ӱ�<MC =ˏV�J��Z�������X|�z20+ss�w`ڦ+Em�w��Vy�?P�v�{ۡ���u؅$)�*[!bY�����r�ڞik���J��0��J\J�i��f��y���_������<!�U5	�hV��Tx\�o���D���@/_�4AȶPR�):u���{6gT(5�jZ*( ���J�R�1/�
�f�ڄ,:��4b��B�aa����4��n��-�I[�{�Y��RX؈������~ӖBɯ���> �E��n�n�&V����}�a��H�A�~�z�?���3��(7��1��i[C>[B��|�D8L֥��9���t(\_c�^�qU1�-�`V�X/���r|*0�����㻷wNM����T��c�jޜ�?�g�&^�<%�vt)�T����3/E!�'�Q�z����[ht;���;5g��.�
Y֡�teN���80}��t��xEZD��Ѻ�@�أ/V'x�r���q[�+MVO��m����C,?)��
�F����j�u~>���<�+9�ű�8O;�J	���W�CT�Z\2�	��-��6�oئJ�����'���!s�j
�I!�eA�\�9!��*�fG���_��_��Z���G��d�N),��d+C�;z]k�л?��_���߹u��#Ϟ�%9�3�#8�qyz8�y�LP�5�;t�͹O��r\�>XZ@~��ǣ��w�YMmJ�r���B����s��A�D�QM�\��Y�aR��P���˴�ʪrYE���I���c�,�˴5�~P�[���8�ܦ��+/c]�w�:�P�ܸ4</��X��Q@B�nL���ePci���&�q�N��8��󜸱�$��!��������jV^�J����b�	wpv�hZ�#���^є��MQF��p�xn�ȹᡜ�o�LҲ���瀊Ζ���V�O��:6z�йW���tם�e9��N\R�/>?6U��uWGfz��7�e� �f1��\`K�U��q���F�9%����G�Jc���|J��6H�Y���a���ZA3�u��������>����w��^��w������,3HK"��k����e�������ޢ?O����.̀R�\
S�EaLO6�C�6�f����+D,�1!�ٞf)/�?�t�y�,�!5�E�C�	�E�d	�A���hČj��"����;1�.��.hdɴ��[[���P1,�.^��la��4����S���S�+a�N�l�ͩu[�r9����ME�ӟ;89��z���px�Ov�ޮu������Iy��l
�X�^s+ݞr��8���Fs~�~7���v��e�y��>��q�nT4��,��%�ɯ|���o!V�����w���ы/��UU970�*j�9��,Pl����
Ơ�}c��Q��DQ1�
}�(���a՛�h�ٽs������"�BcJ"��9��9Q3U��Z�N0$(�>j�jXQ
t�,G��&�D�&�n^c-կ��M��,5���Ӗ�K��ꡉ�C�Ӕ,�Kn�\���d@�BZi�>�DJ
L�b@ȵЗ(�q|t��
m�N���ƭ��)*BP���th�81�.���7n,ڶ542�[����.aR·����c�M[�v����ˆ���,/�YO�
E	�'ƌ~Q�5c���j���³Δ5:6�!��Ok��X���"��h}��<]�t�x��a(O��b�d]�J!l�:N��&�����&��ǦtHo%�"��)eI��aU���5����S��|?l��}����?|�����M����эwll�j�״|]q�],q2��m{U=;�fѶu�&�L�z�U/
*�8��fM�@M]T4on�u�H�N�#"��0��z��Y�Sς�Z����$���`f��OB��@LH��Q�TNd.���7n��V$��kț�%��T�5*ҁ��#e�A�PB�7he0Jjs��!�x�24���#��A�5�R��d�J�6���3g��B��h�%qq(,i�G��
��Jj�'������;�ךQӐM�y�Y���2�X*❩;�v�G�o�E��ڑ��pc���Jp�vU�D欸�s0�������4��I���FΘcd���l	�Z�wW���Ԓ�����J�S�(̇�/&�CT�{!W��w����u��+v�՛֛t��U e��+�@0�턾�z�YSn��p���p)�is"<�Q���
Bp�<Qy^�\]6�Q�a^���5h�e9Q�	�꒧���{v��/����O<��W߈�	��ś��v��qH�Cⱛ�3]/G3�B���n����nr����!���p}Ϻ��1��"3���@_��`�+�W(U����w�W�M-z|�†ۚ�e��YU�3�0u2��E�-��C���! _����sE�Rһ�iKW[w&��&�d���E�y��2	.����{2�Sҗ bLhn6�T�t��db�~g�Aed�Vzg%Λ\.U����8~�O<���|�;�^���M��#3NE>������V"v�5nv�hU,ݹ��O~����FY�fUk��
��ݨn��EC���:�@��0�Q|��%�F�!�F$�7P��%�l��G~+@���a�&x�b�*L�3`��ݕ��%A|v�'$�,�3LtoH��;�>v��wK��Cg�����=�sO��B�7��?}1����'�d���Ԥ;6A/��:)��޴gsӱ�E��\=Y0y#�;���
��ƎA��������)1����Ź�o�?ߺ{hvƈkG'�����l�y?�ɏX���g�`���B�*�v�������ӷ��Y���eW��´�V�X7�x�*��F�t�P`tUJJ�TdD��t�h���Ꞧ�EA��O��F����n}:ܡm�&�� b�J���
ÇU���({�/��?�����71^
,�Cm+�!�OZ,�R��� :Z#{���w�Zw�H��XШ]#�v�ȵ��D*+W@�X:�
�)| ��ZR�X�7����?x>U6O���y2��������_�FE/�&�1��iret�]M��W����3_��?���O�e������s_��W�����ߧP�y��Ō nbD����U��s�D��^�V}��U�U��j��+�̮�+�A�g�>j8��l�ի�4�q"�\��uJQ�^�%�N�|9��n���������ќ���lC\(,�2?ee�N)�%�Mר���$*�F�9�#3r�^a����Էoj.�
ݱ�}�Ѕ��}�+8��w�����/���ג�㴥=6����8/4%g�Y@���t�h��B�K�]�VvEY��?}���ܯ~��?�\
�Ե,	nߵ�����?�x��ֶ��-�].#�9���I�K��(jC��A�Q��E�`8Q���?�ǿ���<����;��|�������_?|��%�1��V�T��G��,mn��‰Ó�8����n���]y$�S�#�ޅU;5���|
�V�G��`�[�o��ױ����;���g����ȍ�aY���#!�v���3�>sZ?:�r��+#���O?����ԯ~���A�s�%+�������>prmKx�=����|�_��o�����-�VJ��\D���TdǃխP�]}�=
��R0�H�9F��(�X]��)�&��H��R�1ᐥ��c�K�\��ܚ�{C��_�
�lI�T2���|��3����k��x��9^|��K�e+��n�v�/�>MU�-z�>cQ�͸9��U��B053z2 ����[ ���
���0RJ+T�L�$���vI�lJ?�탗ˍ�&!R,�-to�:;6Upc6́����7�Z��B~hT&��ć�iz��g>�3���/�E�)�'�Y+�d,}mq"���%"�fu���k�/1��o��^�Lɘ��&`3�}�d�}��"˜���c٩��ʳ�p*��b�_��O���ڷN�X��ѩ�/}��ͧǏ��lV�����w^���5�{G��˿ql�xaBɒb!)Khb��V���(s6�X�/�ERؙ�����̑��!�,���~���1�Г���|,+)����
Ϫ��~�H̢x��0��ʭ�b�
��9r�2W���[�آ����Ɯ���x��_�9�	U<A�ZH�CŰ*��H�$��bDZ@�����/X0(�5a�ߌI��VYp����BA�J��&P�	�ӝq�+����5r�@u���У?��ÐH2{a�N[t
O�pqj]�,��8:�C츳ygϺ�]���œ��.�\�A���EmV�����ֵ�oiݺ}�;44.}�'_<ݶe�T��7�9a&t#� ��l�c|��F?�J��b��D؄xWjb��r|���~�����o�sCH�*�X-'9�J��a>�<����Y�Y��񛿏�4��v���A����<Vh$5�<�^_���ڿ�oj
���Q�G�˥g���JeQȹ!��4Yi�b^���p���?�՞��FVo괼��C���#%JT�<�G�=̹�?1<��<I�X�d:�2��Ў%B�uo�5;u�ĄC���=��-=��]���?��ّ<K:�_:%|����N�#2�[�أ���̇�I7��L����|��?�W�>�E�ij�Q]k�����7�\x��������V%]����S���	�j�U�c�	1�C:\_���0$��H)�t�N�I����O�l�x�Ы�r��T�d{��(�k��u풚G�>���E?��}�<���r���8x��eCz����Ȉp��Z�L<e!{��Ł-��3�hSҡL����YXȀ��8�j�<1Yھ��o��ݹ��L[Wy����?�8S�Q#U��
��5�1y��Z���SE3�H]����'�pm����{�?�՟hnu�j�u��{?�K��ȏS�^�X���&5��iހ�9����I��fؤoj�e�R"�孔tP����tZ:�,��$D�*���.�����IF�fUa�f����Jb�3��0��,>��Gz���Ѕ�>�tێ�M��
n)���������^�f�]�n~���cy��0���:6mli�jo۸a]��e�]��f�9�����G���	D)�=<"�%*��~S
̸��	O�~^YSh$-'���ɐ�ф�w���Z������/^Z�+O����ĩ����'o�h��v;s��I$#yV�3�#�"�T��R/-AP�d��:��	�W��7��g^?aa��CRF�z��ʌ5���2vI)�ˤ�)��,�-ƶ�!ᢲDwoaGO39��/���·�~��3�nyjz|dtxX	ܜɬ/�9J����R��g�{��M��������w{KGw03�_z�㬻Eҩ�Դ��yt��)��K�E�$i�΅a�YI��`�
ޠcV�7�j&P-`�X��_�{�iJ_�G^E���[�~ؐ��uG+�T���c}+�Jや|s�O�6��ܴ_�8����DC:�d�#��;�$�=\�8���*\�p��������=���C������U�Jشp������cc��~��3E�-�]�����L��O�/μ�>5q��-����p>'�:���}w��T[����+�Ÿ��W� ����^'�N��Ք+4��X������b��L�J ���$�]�8����b����!�	MQT�I���ٖc_�s�V�K�o��~�mm�K�h�a�Xr��Y2���~fJVS��9�jQSR�H����Kh��]��a���Ɣ�rҘ%0��5��z��@���8��`v���7���9l��>7�7]R�x��vV��wN8�����C�y����{�O<t�����¥�ǎ�
��jÆ�;�to܋y���_/L]���}������j�,l�N6�G���q��w�F^��0��P�j��A�bJǑW]-#
�ԚQ"�Y��_K�_ܸ`9��P\U�G;���o�
����Ɨ�&+n!jD�/�$Ck�F��j&����8��J���K�6���>�:�*?�r��T�k"�SbJ�vgD�����Y�,��{���-�<�7���S3�j��9��;���u�+���Nz�����cmz'.z��}����C�S�>v_���GGd���<;56](.M���x4�Ȇe��M#�H�M���������@�Lp&�V`�
�.v��}��av���O���Ƚ�*�,�������L_?�X�|?��o�;�EJ%E�����?�5̺=�ύ�(��dV������^�J0
�U:L,�Ӡ�6Qa���e�w[�et��y�]	F~R���tJ>�H	�ˁ�i��-i�]��-��hE2�u)��'�`;�I�s�1Db�n�}��أw�y����j۞h"���Z���M��;���{�O?���řlqc:�q���&�8��Û؝-��x���\�a͊4�W+j��Q!O!+������G��{��	�W�<��P�4�iJ'خn,gBq4�J�N���R�%㯊c���݄Л���ƳJ]��w�*RVQ�a��e��+�U��c���pGS�ja�~*�Ǐ��Ԓ����3AЪX���)��Jd��-vpu��L�Dk�వ�l�ao�
���h��˘^�8t��������vw�{��m-�3��m�/ӻY�<��O7#�0�F��~��3_}���)"�W�,U��b�36j�t&PS�PE�JJM]���,�A-P
�g�Kb(Z�:��otd�)17R�m]ܸ|K����ֶ�$�o��d���n�Kd��Z�uMe�B�ec5��5g�	�fԓ<�UYBɠY�Ri�UB�LG �ij�ۤDh� ���0�m��p�E����pQ!A-"���zۻ3�Ŗ�͙
=�]���ײ���n������g�]>���Ɂɼ��D��85V8R�j�gd&T�����G�oX)�D.�4�%���-����S9��Q]'�`k���ݲQ�B��4���\��PF��Kc
�hLASA�B�r ޮ�Dd�#��0��M���y�bF2�4��T��$8ΕCZ��7:�4�;?�ꢜ�6Y�ҽݬ��ʼF�=ܽmc�<}� X��ܰ��x*G�ɋ��a�Bn|��h�1ە�'e ��_-j�eRܜ�u=�]4�}�:q���z�����
�J���_��0���ϖ���[ri�ū��bB��	�S/d`F#��)P5�42(�i��a�xbITBJ�8%8D��ԡ�:Dt�UTAIɮL��ɉ�ҫE0�1�B�e$�R�wKӏmJ��a$�T��~מ��^�C��
w~t��{�fi���#�_z�y1q�;���2�O�G�o��-H�����>\�E�o��krc~�km����e�qb
�n�zAld��"SU7	�1���H}�W{֋���1�R�R!�"�B�dXuQ\R�3)�1�|〦Y.p5�4�4���ܹ���A�Es7�pȦM{���'��b�];l��ha�D�±�/~{b���=�i��liƽ��(��$yu����D3�Q*~xMi
�n�j���
�H�^�7�I{�x��-J=�j�=b;H���e~R�h� �H�E����Nc�$|��z[�l8s�rH��X�E:D�[�X�q��)��9v1
�b	L��mm���0rE��x����C�lH���;�/Z�qO:֖n����;6�9��K9����t�Fό��O�9~j`��gÝ��,�&��+ґ…�7AX� )h%�Ky�'T �]C���ꖯ�m�ftyCB
i(�᜔WX�Ȗ�r��L�䦎����
�h�˂$�w7��C�:�
|��	�Dc?
�����6�L:�=#%�ecS󋣾C��nJ�n���XSC�l�j�F�۬�x�{ܾ�����'�=�#�6��y�������GD<}מm6wO��c#��Gr�lM�e"A���8��R�˫ـ��.�5�Zۮe���8^�����#Ȋ4ڡّQ�R5��Q/�P	���eƔ� ��,��e�+��xOe���9�K��9�
M|	3��S$,�t4H�h
wuS�i��m�({hڧ�3_W�f'g�޽;��&��t����w���|��}�ض�]Ǟ�����Ս����:�wml�̖A�E��l���!�Q���s�8�t�����t�=hk!��v
a+�ֹ�-W�2R�5��+�����z��J)��HO����R��&�+`{���Oa�gi��%r�ck��Y��q�ķ�Y{Z�A��L�wc�;�	;�L���v��&�]�X.���/7=��o�����������-��/�<3�+���|���g�M�f�26oOr�.��)�h{���!/2:ɡ��
�!�`�%q��d��My��,G��Qk�^j&��v��$TE���x^	P5b[�ٙ����
0L�%kcH��EHY2�F�$b��MGV�@<H�B"G�h��I�+�tR
�8��#Nlz�[o�6?��;�DX�(�b�=?ֱa���Ywŷ��c������[����>}at�����J����'ʌ�N�sS<�)���yA����4�T�-�鐄�e��
^���`�uAk��]�o]-b-�b
N�F�`IT������4m�rR�L��B����R�
��q���B4�Ǔ��j��	M��(4(,Cp2%R�1�'a�X����e���H�}1�|�gt�ïf�x��~�ˍ��x��=Y���Ö�u�tK���'Μ�����c���9��e!��Ô	I%aL��Xv�9���-�QͶ���Z,�X�X�� �����=��=����JC[wm$����j�A�F��ˮ��2�6T9H��,��6�*�A)pU��!����_aP��"j� }�x�P��/lYױ�H֧G�
���|�]��?v�<qq϶n;�9x�8}v��ӊ�����y)����t��T�sj�\(2}�Hn��4�v�IzrR�\ȢX�c��:z��i{,��!�k��X+ڠZ/p��Ҕ�L������"c9c*�)����U���}U���D46ܘ�=�{Zr�]��K�u�ȝ�_����i��X�b�&V*8�ȴ���������ܡ���0�|>F����0���ڒ�c���x{ӆ�˟�\z��o�;~��>�{�w�~���<q�L����dW����G�r�w��Bֳm��UP�I���[3�R�����TA)!�C4`���%�p�h6�M��k��X+[u�Q(NX�T�Dj��c=6\��~FEEn|>(a��B�m‹	��$T]�K[�+�-���CYՉ/�V�C���%�͂� �qX.S�`9�Hs*%5*T^(���qWŎ��T���\XY��-ɷ=���0{�u�����]��{����?�����#1�������ɏ?p��|�ჇNvo۳ycgaZ����==��\aZI}\�RRJ���͌���(�9E��*pSdR�@��z����\���P�B�_׼��2xB��jUɼ���u
f<��,I���PK�s^��R`�8����V�*��@3�
.q��
ם��#L���Q�S��9#b��6O�5��X��ژ5����`��5�sC�"1d.@��8�a�(2/��c&e��%��S�קwnۼ��>��?~��g{[Ww��ֵl��56FZ�}��=u��M����������r���?��PwVYx�F��_9;Y"}Y�CKY6&�J0��2:&Ĩ5��1�1�z��CȗPo���De׮�A��CQá��#�Wk�u{�4*L >��m��筪�������?�S�u9��V��UC�\���JVK�ja�� ��­��q��,5Y��Qq��J��AR!�&AG�2b&1���tPF
$�	��}1&E<ƶ�n߿��--ۻ���x�r[���ﵬ����~71ܚ��S�Dy�RnBn���|["��W��	I���5��QqJ��7N83��l��`<K�&�{l��a��Er��!�&�hR�i�4�eɨ	Gw���E�g�G��VHݶ�?�!!��	%��dd��?E
|d��"��:�����\T�᰺Lk6�S7��V�j�2##
U��)6�o!),]	�U�J,lp�B!g���0a��7�&w�̌p:�@�>������q�7��S�����cɥ��BͿ���ȃ���L��޵)չ���?һ�౗�|�Й��_�ˏ��W����4;7P�g����"��駞;4�7�>���������w�=23�'58���r�}I5�nB'���c�̀Kt2��#���0S F1�Z�y�� �AJ��X����l��&ݣ\,L|D�X"��фm�NT�q��T�V�t��/+��"΅�W
��/hD��UY
��4eG���(���I�H����F3�/���pq�!L��`'n04��pRJ�3/�b��L�`ڥ6-I��)Fdf�c��m��Kϼy���>t��o���3�<Z�ز��;�N�;igZ_<Y��.�J�,@�t���}�S#A6d�;c�^=���x�#�u�\>T�.kb��^��[��%�F�t@ƈb�ֱA
W���R%9�.����񾶢k{�vQ��,(tY�vD|X�h�%z�8<�6B�?�3'xn���F;|�M�p���ČS1stA]�Z��2i��"�����.˨�`���tBA,A3�IT[�P����f��Ĺm��ࠉ�0��J��!���T�@b�PkR�mtaFA��p9���o��{�#�_�����|C7���?r��Ա�^=���G�{vw�?���.���<vW{�
�^mj���"Fq�d]4�SE�=��m���*W<2"�u�
�jJ؏n�G4��oX"k��Z�Y-0�R���o�fs:d����m�9�CʰL�A�D35�d�-���S)��1A%@�D�V�7M��f� 	RP�.�J�/��uu	y	�Zo�09�z�ms
!�z7D�:����$"�B)2I��
�G�(I��%h�U"d�2:
FcSz&��,���@B�� �����`2nc/Bj��tI_3F�JZ|Ǟ�nN�‹�<1>[xp�%�a�I�qM��Y$��}��o������m,z�B��(>aS�j��e�ep*�J󮓃��P0������cwu�Kyyl_�hk'�&p��*HӼoP�Y+���J\,���J��v/=�u��xE�
5	^u�O1�2(���	A�"8����z�{=)3if 7(��k
�_0�Y�"�C��RB�i;D�P�)�pL��K���73V.���
*�9PO�5�لXT	���0W@Ԑ&�1%�L9dƗ�¸O|Dlě���G���k��>�?�N���_|�ޡ�~�+��k�E��ޥ��+ޥٳn�UL�943����RRbb}�ʖe��.ImQ�/�o�S?�+�/��>](|�܉����O%����7!���yjH
!�X�#�
K��6�cj�Q�6%(���(�Br�ڧ"�&�3�+Du$C�Fd����$�H����`��?_1hkU�d��
z1%f�
��5��M+!��ir�FU�f
�ʌ
�u
�$��Da�-���rQO�@��4�(�:ˌ*�t����M��b��Q�8��|Y��I�����!;v6�ۥ�����>��߿�{��{���������%�=��TA��x,��R��?�vr�EP�ӑ��OB"]S�|!=�QT�1X����}�X�%���2Y�6H�ݠ>��}p����k�u;F��hW�-yC���m��K�����"reIuz�v�����%(�}:%L�#����������J
��妗!<[�<�(c��
.)x�)�a�$#$a���Li&��7��qJC�#��R��|EnA��m����
|���f����i+Һ1��-qu��y��];w����/�Z-���x��W��-֎��tt�����bdQ�d<�G�+�iA���K@#2��N�附��@�O����߽�=�Le�Ss��ڶX���s.^ N+���2���(����jyq�F���⒠���Ng��V��re�U�Q�
q�\��7�u~c���0�V���NM�C�^t56Ii@Vk�'"h���d�E�o��.oj���$����E��Xk���"uDB9�1P����R$5$9�q�,��r�G�qf�P�d��ޱ7����^*~�v��'�؞p�?uid��'ً.��틅7&,f�s�S��D�&����%1�(|2��+A� ړ"�����D$9x�bL�3��G.��-Fo��L�GQ�
�7W�
��CV
ޙQ��ԧ�O���]Z�nBw
��GWZP�ID�5s��k�7�1�vZ��6u�h�?��Ғ��p��䍡Fe
�Li\���'�.��]��54&_����\p���P&\��2N�@}�3:��������P#��c1�i[r��&9�=2Mb��t��ݝ�9`��nٺyGz�����#�i;p4�B�c���ȹ���$
p��Oϖ5<��)��t�j��eS�d����aO�-4x[73�0�1Z��!�F�$e)�EW��G*qskU�߾t�cw�,�pQ�M6HS�x2}u#G����ʤ�o�L�4mKM�w��qV���&�*�4S�AJ`�$�v4ܰ���tW��գ
�^��L^
N��8&6GF	�q(�aYc�����'4)�0���5f�K���(NR�ǎv��M1���\�۶=s���{|�Î���/�z�X����g9T'��-�P�
���8�9*+x(����QhНv���g�Ue6K��-�ȁTܒ ���p�l���90g�Id��	,�]3�?�<��o+{�cbM��V?5y�ZĴ�ID��C�G1,%!Lw!MB�&U���:�d)���1�@���}�ʼnr�r[4�f��)�܊���W�MX�dx,�ΓM�����X��u�İ�0��(���"�$e�M�f�'��rR��Bʶ�����w�ټ�7�wv��DV���x{�C�����36:=���K��'��
?W�CLbLNr��N]��P%S��,�o�Ŕ�y^�B!D��4'���*"V���oMdPj����1���:z�*Ӷ�K*�E�Ȕ�؈�nCy��}�^�s}j\�VFb4G�Q*M|��9h-��������h���������U{���T��G2�9t,@n��Rhz��.�?Dfg�tY@�+�,4Q3�+4fA
���*Tyxf)�'k��"�2 ��6�3�^��2�v�M>�3ç��R޵��w>�s���гO>���&k϶LK:���SS��XBpAC} :T�a�H�FP���M�FK��(�Z�E4�R#�j:@!<�󱶭֍!{��"F�
V�*siب��"�mx�*�W��B*f3b�Li�T���
�	S8�>�(�AB�4@&94]�&zCA˜�D�*:�D�x��ws��eI��b��9���*��oXR��!�3�k��@M�!���p�r…b�(��7I���	y~J2D����;��'|~����׻�z�����`v��/�S�m-ξM��Ls����i�6�¬G�Pon�g�r���q����&�V:��ٰ�4�Q�,�e�A�"Uix��2��q�&��X7l3	#��V�W@d�o0���Y�\exS��H�%K�P�v*D��cX�F�Fi����ʠQ�����"g�D��:��4����#�\
Q&m[�>a�b�A�����fA����jD���D��w�T'�zҦv��p�AGC�xO����]�6:���Ѿ\2�?�����u	�����e	���M-6�5����Ӳ�{���H��<<��=9c0�9I0����짲\�g�߾W��[��ʻ���z�~���:�$?K�EI�(���	� r� f�	�����7����� D$E��tA8ݷ���{���&O���/���Oo[�>xl��%�]G��C�Zi�""(#�2H�r@u�bo��
���6:F�dϬ1��c�>��%��An�?X)CG=�2���>�ՙ�w�1�Y4��P��Ao���vJ.�W�W�]��U=���o����?��8�p*M��>W�k�1��e�J.3��V�x���4�J.ב�LRfG�s5���fX�p1�������_:!�M�߉�k0o�в��u�����ɼ#��4���-k<����y��[�նֲ<��֦�k�D�VP�<���L=u��n)v<�8��,_�8q����C)I�f�]���!ì{��Z4���	"'������s���2ª��E(�o��v��_t�m�
o�,ʸ����K��05p��J�
ߩRs��J�H�����_�0ׁ�\�H��"Ջ	��$a����`=\*��e�}���6Ic抹A l�
%�EP����۲�im���~�l�¨_ߘx���s۲���WO�^*�Z����X]@㵄�_�ج����eƟ���k�hd����葁×ğ~%��*�i�����'��#��!��d��jI�w���EA�I�v��^^�3s>�s������ԋg��*M�U�a�A_���ASA�]߲<�((
��	�ڷ +j)8�U �s��&tc.4SC�MF4Bf&�:	��|[z�F#�׺��캅��IThn�F�:f� ){.:>���}���K�2�)��� 8�RF0s=!
�P�,�G��3jb�|Bh-%0�C���5�֧���3#秽d�~�K����lz�����}'3�;_�^[S��F*?�b�]��N������s��'�oqG���;bVr�O���Ϗ�ڈЁ��,�1Ā5*�rD41�ڋ��d\��+�:t,xb��RE��`��KD>1�ჺ���LjX���J�*)��\�/2d:�3����0�Ȭ,�������!j1eGU,���hG���p1i�h�*%��	�ɠ�)�Mag��
n�`�mQ�e�9 ԝ%B)���
	�1��(��@V_͍�������J�c���K�lL˄�\�4�&F�Hh$a��m�)�-�m��;�Qo��O��f<r����|ykgS�՟�������Cw�-�gV||,?:9Ҳ�mՊ$�/L;�陉����x{�ݑ��\�:SG�P:A~��<㪭i,|����^�0ō�5zR4�:��'���|5��Q��Y���=i�ڡ��>Q!!����2`�#60]iU���`&+J�r�Xo���c�+�@ez�_��.���JtDV&�AM�MO�C�6�C?�.�{"�I#7�=�޺�Փ&�o�z0VH�R6��DuQ~~��_4�`)<�p�Pѓ�+�]�<N�~�ʠ�A���
�*�����/����k���[�^�(�/<����\��-�iy�����}$S�7olܼ���ы�ι��$i�v��EW:Az|��v.��0�fs<�z��;��!jM�Y���O�f4VrBI�(�uX�4I�XNI���/ç6�2d�a�0|9�Q.bh.�5Xղ�۠QQ3	s.0E,��S%�y��Z� ��Μ݈ �b���N�+�T�*��G���2�"q�7�n�販�������BؿR���TL㱢ƚA�R�GѢZ�Q�m�
!F�UYR���,l١��盰���T�6��� ?Le�p�C���y�f8ahBF�R��t��E��8x�i]������XS7z1���#=������-13z�\����l����u�?x_$:o���C�j�؊UK�5t�s��]b�i�@80��ąIפtEB����><kf�KB����@\k3�2jE�J�9����0�N���7�+ů��a�P~#T�2�ٟ�}P+�g䮑x�I�t���H��-����Ԃ4�L�d
g��l�0
���E�_��	�$&\����p��#Q6@n�
0����0�D5#S�67,�4�T)��z�Z�_�߆��K����+G�����Mm5Ɖ�O�h���އVl\�tɲ��ޝ?ybdz��;�Y֕�ؽ�03�jiS���_��ПsV�ʾ��$2/�#Xc�t	
-G�GV���9.���$pD�j�Ȇ<P?�븚��0�G��(�Bk#����$XV��/��"�W��|����Pd���>4��J'��W�tn��� d����f��T\ D�d�jhf臽G�@�^�<�P�ȍ�F�C�F�ir�����C�?L�ã�[�3S�� @�a*O	��#
AmP��k;?K�`��'�E����Wߴ�&��~��|Ms�[_[���8vf���F�YgѲ�G��?�X�9{�_|��Ϟ�X����ܾx��������h��f���7w�;3�#QrxDy�l��&T�l��1HEF�|�E��ak
��pG��@y_|�u���X�!�1�+���@cf�I�Z_���6�l-��B~\�O��,�	|�A��T�-NC�lf���rG>ƌ��;x�z�,^��.�re#?��
���
S
��F	�M�%x�&���:k��^�p�\_kܵ�ڸa��_�����?��z_�ڪ��3c������v|��{�Vʜ�����{���鶵6.�Y���������әD�q����Di�J�D$#trř볲1���7%Ĩ`�J��{�j�T�?YD��럛Й���T�q�E1k�w��;�u6D�p�^�[����t��w������;�@XU�i��a+9��Q#Yբ7S��0��7�:ܞ"qK��8WL���i`m�e2�`� a'qu`[�b�~D�w��;^ҡb��Ԕ*niZ��!���q������DN�{n����ƕ�k���w�=���w�X9tn��wn`��VO�zp��}g�����sN�+ڷ�Եt�ù��/���հnC��=1�'����n�$�U�
W��/�lh"���*��,�SI[C�LC��
o��F�	J���O;
���o�%���U��KjY���J���GzzG
���ou,@+
>A9"Jzc��`͆����6uM��u������isR%--!�����޲L�+dRn2�2MM��2>��5�RIe��GMơ��i��-e�R�l�fdBG�x�ʺGo�/f��O����[<�vAۊ�k����"�Ҧ53���;3TL�Dnٶ�Z~�x�=O��{�y���u�+W��X�c�͟�����[��3/�{-�7�[4��pg���莘*+|�sW^}�X�mAAQ�����!���	����3p�$��+5[�+��#V�_��{š
�>�Iwu�-�U�]�aUr=��kHY�J�d��>�w_�γ]��,FL��Gh}3mHA
*�p��m�G�C���O\$b�����?Ġ��D3�-H��a�&Z�GUxoAm]K�+�.��(���w�B�u	�IJ�[�u�ɋ����3S��'O�8�	z�}7�k�eKR�m_�?���cc��%W/�-\{gӼ�{���cgG��@:��`�k�H_v��5�vF��ņ%�Z�TI��;Ƴ�W�m�+��(�Y:�~�t�
pc�L��������=T�����|I��W�簾���O9��B$(���JHZ�t��~4w�U��z�9�e����y��x�.�Xw�O0`]_�F�BOȹ�FJ8��NK����{!���D��z��R)z�ԙ~{̈05=#M� ���!8���VXɁ�/�I��_ڔ�aY�V#r������n�=s���z2��>g��w��Hq���%s�^~��Ǫo��͛�7uԒx:fz���?�t �m[n��u6,��y;�����/�6�qǥc�O�L/޴��:����� ��%_|�oy=g�)O��M�*��a�'{Z��*�ד(B�2���1�jD�LG]YD��y�j<�l�]y=�D�"X��a��k(�D�yb�����0z�ٟ~1���P��ה>t�]k��J
�+�|��UE�9���zpX���'+b*��G��@o�w~�2��Z
�~�"�=)ړFmLM��4	|Em�����la�;x�p��˨�;��t�BÈ�H@��RI��	C7���Kk�g��f~��Bp�憤�L�e۾�����S/�F�γ�G�;�9!WlY��?�r���νK.)������x��?�q�c�e���~��ߵ:V.je;�J���q7���zp���E⮛x`�ۖ��s:n����VU���–ތ�S1&fL��Ӳ%�L�1��}^U�rE��^����JJ��IW�ڐ���U]��
=���TjjY����<f��c/�~fK]��!|v�T��������� a��J�G�b8!���
�`�"Ð<@K�1���@H��@i�l
��G0JmSA�.�t"� �L%�s�!
��ܹb�k��#'&�/�ߺ6�7�˦:�o�ݼ�7��)O
��{�P��\<��|�mq"��ĩ�kW�}���{���yh���H��������k�?�j��Mh�ҳO�\�b��L�a'��rhs�\���-�g}�����_qj����
�%�0�.f���%�;�`&rU̧j�,��MYK�Ǯ!��./�0Dž��S�@$f���1�W0)�qm�)6�B_�g��0k�G�'<�W�PɉȪ�N%ސ�@�夕�m˩�j�A����#�Px �Q{�'P�&��!퉥eQ�[88e��p�$�[[Gm���hL�]5����(K�a��DE�Sq!�;ߴ���ۺ�dz��Y���h�
�]Ggv<�؃�|n�ȳ�_xvl�;؏Ώ�X
��_�}������Wnے����g��;���.��RAO��5w{噣�����{p߉s÷<p�8�t��yN�\k�[$�������(W��ر� �A���[^��@lԑyH
�x����	�/�ȘF
��	
}-  n��*5��wئi���
*8����a6�W�J^���_7���Ym�O�����}h�LR�Fռ:e@�$��ϼ��
��)e:T��MK�FE–3��؀���0�'J�P�<��;=!��l5n�ܵ�)�����VE��g�"��w��t��|⯆�OL�'p	[�/�_B����ǻ��vuԞ|�?~��tt�c�yt~�b���2��b,/:ۚv?�|���xg�<�{���c4mno	:�8��t���iIL?PX<��3�^�7���*��գ"��g�V���P�65�b��[-�ꌄR��n���Laۀ�;��@ZM�wR>`�ږ��ڭ�bÆ�����+u9S�Vi&t
&��J5���i�Jx�ŋ��G���X��Pk�N,��RP
R �.E@�¬
�2:��
e3R"P���Aψ:r���̋8c��`���,��}.#Vp����v�r�?��e_ܑ�8���=�~髏O������h��5\��4��W���xl��xK��[�mw��=�;;���hKk-�q3F	�����r�>s�naǗ�����/��]�7��v����a�{���K�z�/Y�vC#>|b���>��u�Pv"��A��4azT6�,��kƷ�3���c���vq�p����-��V�#�P���ܣ��k�#�48�+ē���2�vs(��6&y�K}���6�
"�aDx�YH6�x~�6�@�k@��c�� '���I��\�*ߓ�Amv|$y������"��0�1��#Ǔ1
K;n2���ym쾭��tX{^<:�ݼ2ư|}��������s}���8~�U
U}�4���W�m�ec���=��_uˊ5
S���<�����ѯ޿B&��4\.�/�==*Q<7r��1�~�ƥ��K݇2��T7���-����e?9�~3�Ru4�B,�}��'w-iٌu]��9�p�%1�$X`�-I�
�cz��<w8k]�EB�oQD��RS�0�*y�+
LU@Ssx��(�WIq%�:;�:�|��#��ow߻b�6[T���{a�e|���7�~�W��͟�@��=��l0H{5$Ӡ:��t��%�ΐ�%�L�����6͖��shM;no�:�0Je,f��]'�O]�mM��sb"��+����Y���ε�ũ��'5ƒ6�s��
�#�����O}�N��pf�p,z�
�l_nj���]�7.!���S=S?��N�Ư~�K[��0;Zĩ���^�F����n�uq"��;�Ib��Z=|o��h�N��,�W�&�
�/h��6[W�d��Ͳ���Iz�}Sr('�y�u���
}wP�� �9yB�41*!��ғ��w_�=� ��CV܆t�p���"����*�����(d����ux�V��#�&�˪�*�D!�
��yR>!d��Ǹ|�֍�D��۷�j��2ħb��*���X}Y��(!��Ga7�*Ԏ��k�PJ�]|�A�Z>5mljt;�4
/���U��ƕ"n�e��mk��mu`���Li��(������u���C��+�^y���gO
�G��ku�>wS:"����:�M��oPg���͟������s�2�����X7�ѩ\�<}�����R8���s��E_�|/���vIN����1��}4 �'�l	�;Y�}K�q�U����u�Sxy�����Pm��R�i���X�	��MG�LT��>경��� �.*B���g�
.{�Ce#�ܯ���VAQ5���*��Φ��β��s���X�_b���Va_~؜G�5�e�&�B)"�H"�T����K�fQ(c��A�A��Av)`�JCBf��,�L�Α�9�A���G)���n�S�'oYV?<�ybwf�|sݒę'V���ߺi鲻�c����GN���2�����eq��f�B�_�ռ������K�&~�ob����k�h�����o��V��c/?�Ж S�s�[���S��nF��8��8>�s�#_�)�K߶�Ҁʗ�E4P�)�;%Ѳ�5�&��,��d��/�a��'U.@>	�b	0 #�R6��R&c�����-V��1�[��`W�S7�j/�j~�����nQuݩ��cg{��<Z�+����������`}���J�}Ρ���Ⅺ
a�����'j��I�}� /
�U�5��9Gas�2m�`
��,�(
�^�FMT�F��p�Nr.�q������kd��bha+�iMK�M~��@�E����ġ~���mZnG�
>y��sG��ܺcюۗ��~�����lXD���:��p���W��~�[9�L�<s�8f̪���|��XM�_�k���{O}�E�%!�5��sy�Q�ـ�fU��W�rsg4��������`|�[S-��?��
p}����(��h�{���a"�!d�T-v�tB��lIr�9H�)2�%�?�e���ߵ�ե���[�Fa��K!�o}	�&��&�qlQqn�@��zQF`2FI�դ���*>ֶE)��*�X�0Ͳ$�@�����f��M�Ч.mL��%�,����{j��Z��Tɨ������6z����O�>�3C��Z���6EP��5��{o���j;�}�89H����ՙI5�?�O_Yi�:�+�O�<���M��y���+�/��/l;��#}8JrY���Zca�̺"*�c�s���縨d���Z�-"�g�g=|R����#��+�~�LϘ+�,�T<J<�c���U{ǥe C?���(db~uQ�s��>V�+�7Z3�`�=��]iȏL��PD\	Z�
�pE��Ts�$-l2��0�?p��#1�-C'z�ZJ�@/���*غJ�Ԥ�ʐ��a��V�~�L�*K?fiL$P�Rش��F�~qMk��ž���^;>�x�߶��U��ؒɈ���06�b;�[v��΃o��=�ݶ���
��H�}�9b����//խ��/�#6�Ԍ�rFG������􁝽/���}7?�c�K?{���P"nLO�y
=P+c�ϪZJJ��<����C�Ɏyd�B6��;ꀃcM��y[��|��b��f�
�1��2#��g�ń�4t���	F�sS��<�s����yU������n��xVs"�����
��d���b��5&o�℥��R�:ŠF��*"��R�t�3���6uA0�
*a�Ƣ~��'H�ƒȂ�Os�
jI����D\5��Sk�j�g���X�8����'�����h,��If��������?}d�U.����N6&��h������_�<x)����=��{�ع��,+�C��ٺ6�+?�{���/|��-Kj�N�r�h$;%�E��	2^B
�GjIz9e>�a���U{�1�ͧ}��c��l���������80�Tc�2�(s/N�����K�愂
W(���V� B[�e��j�p�>h:�C��&U8Q1=ą�?���nq�I^k������p(Yڞ0�A4P	)��ph�����ЁO�0%�4I�ց����Ш�*ÜZZ(e q��ͥ`�Z�*Ҩ�)n3{ϩ����Z��W:��ᄍnK+,/�jwd���&e���߱����:1��7-d�x������W,^��P������G�腡=;�o��.�[�e�R��O�88��ڟ<�œ��۟K��d�<�I�N�F�8������N����I�_]j�:��I���5"*��De]��x�$�4���d6�ϔDL�B^ᘈ�xi�:9�=��B6�#[Ut�hp��Es���U|����j��4%��v��
`TL~��N�b=VIbU�8�z:���ZbXC�Š�PT��§��᳓�zti��Dp���׳ԫ�6��GrzL�
b��Xo���c3db���T� ���ںfd�)��U��F���2�eq}�+.�2�[�c��֔L���������k�;2���M�4~y�~�.z��ǎ���lj|��)�s�7����ŋ�ͫ6�9r��c�n�r��������ۏ.>���5Ͷ�І�5���i��T���=�RQ1�Lt������B\H۽�~�{�ԴI��ҧS�>�?JDK�)��A�sNs��� �	Me�8���ʥD�"�h9d���P(���
�⻗���r�\�Q�� ͌�@������:�w�	���~�t6�����U@�C?F+-���`���B\�(��X,
M��K:�4Lj[0�?�A�S���Q�d&>#TY
{rx2�ښ��d:=؛O��u�b'��T�~�T�-���:n�w����TV%|����g~r����?�|y#�#m�ٓ{__�$],տ��Ķ��~����T`.X����k�ߴn�+/��s�뻺�����ٳg��-�q�����7t�7c�I���@��\6%&}tgT��Fƨ�B�0��̨��倕5d	�-(� D�E
���#N�ŭ�/dn]nsnj���׆� 
��R.VyU��VŰ>N𘃪9��>��+j10IG�9��t�02�H4X�>�]�]9/��QDB�j�%�,[�c&i�L+����2!�l���¼��$lvjD����+�lQO=��U@�̰D��Ш��k�����9�W�[�ب?V�ׯ��Щ��q>����-s��}gOv�\�}���x����
o���ն�5^���O;�;z.z�.y�/���c/<��-jn��:tz�ͫ:[ڟ��ޝ���l��������.57ǽ��I��$v�)3�#As�	v:2e���3er�-�4�Ɉ5t��
���I�WʡQk�����,�#�te��8*��c\�
D��
�Pa��j����$i�������/w֩��x���T�*��e�P�`��0J�r*WV�	(�$�:Zť��4A�GTrf9%��U�$c�ƒ\NJ"ñ$H�>�''qC"X#l�d�=�兢:nJ%EW��eiD�����:Ƽ��`���kEg���Qg�?�ʴ����&���^������3p&�h�m�����5>3ҹ�s�GKgv�jt탵F��Swܳ�ȏ�y瑞�����-�~⹁�BK�U��)
%f*��ͦ1�o8(J
�5��=.���єuq�J�&O9QS_�+���"qeEh��u	F$��t`D��!��XL3�CK��B�$Q�X\:^�Hf��l��V����
}�����F�z�I���%�i�pV��M5V���?���b���:;�\��hWi;�7+�N�x�&2b_�4���$��4R�a���e���5���62�������P��]`o^,��j�m�幁��>z�s�[�����K�׭��ܭ5�g�A��ի=���Q��/<�v}�ewz����?|��;.���HRM������B�+ߺwE[���A}�U�ro� e���&Y=��]o�˓����䎄ؐ�3
�� !�o��AȦ�Rt���Š6��%�������qtt��K�qKPU7t�
�~�@�%��,H�l(O��̲�P�FUվ�k��[�W�P$e�zS�E�A$���ɉ��qXs��T��	�>��C����wyn�:E���%#�0e4�_�m
bb�̔�x�2\�s.(Jbb��n/4C1��7ĠtHb���9~zX,\�Д��Oյu�ul��a�8���3��_[�O<qzd��[�:t-�u{W|j��k�v����_o]�%��;�ʏ�2��͟�l!�}/;�s�X�g�h�k߼��x?|b5Y*J���Ǣ��95D5Ԫ����]>��B�Hv�-��I��8>��
�ǡ�@ !L˞�|��+����g(ʄf���~3J
(� j����6�M��ق[��!���!�DL����3�u���72jϵ5��%�T
����J��W�F��b�p��z�'�AmBs��;���R�z#���Ml���Ct*/(z�
�\OX3�}.H���n�(���%|�G��.y1(Gk��m"��ɢL�oܸ���Џ�i�lZ�zb���{F���=��O���o��̜^��!�܉�]����;��w������L��g��\��^{��뻎�,l����
Ƈ���1��A��Q�We��1n1Q�t��p��Ie��#*a�5�/��._\
x�Rj��H��r.�&׈_vh*.|���ˉ�үa.F.�TT���&#�J�힔�#�����Uݺ�� �7~����|�s8�*!�_�H���
!	J2�n��NXE$�� ("��h�('P�D�JŰe�Ҩ�q��BB�%��%�HV�x�%��j�i�K��,�C�pE'ʢ ��	6S�E*Wq5-��.��tA�D�R��Fۺ�
t�
e[���9v�bs{bf
?} ��̨dEJ�x�o<�T��b��5f�g.�f�v��5�����Q�/�v�u�v����ܼ쏿q�X��'~y�>��ԃ	���@"�TM�ՙt4�{}Q��"V,���(�P���BLH�����h�ܾ��D�hBt6��k�	LC�1t1����l_԰�VAwh@�t��l��WM��H���o�����Ӯy�]���o�χ����w�}��c�O`}�&�pE����/&
���Ui1���	�ü�@���Y?�?b��
HJ	�_���Mb�s&�*e�9,C��p��R�PʖT��1:���'�T“�
�ñJ��PP�\Yv��Y�v��`�-)[�#�}�\��u��~���]�#=�eLYޡ�:].+fѰ�J&���g�w4�-Z=v�y��v玩�{�ڿ���{���^9?Q$+�~�������zpʼn=���������ʇ⢌(W²PC�n�ـ��,���Pc>]J�6��>�8��{<Lu'�������~7[��dt���*m#�I��M��h6�w4���R��D=%A2�c�z{�k�iէ><x\~[�;nW��G���O`���W���j�Hի}�hW��q�_�ސ���1�8l��\�,l�RD� �S��8�"���
��i(Ä�gT���^�XǍ�%Q:�B=ӢTBq�z�<�؅��*����S�I��͛�4�"��Ψ�������2d.?|�o|~�U��PA����LI��G+%.	��Xa�<Ͼk]�h[~ﯺ��ӿ\������҆��Ŀ|�g'�>�����o��~�͡�v�X�QG~!mLr\
�Y�٦uQr�X>�1�<�	���;�؊�nM�\1&�)��q�ش"-�����kH��#dZk�0����\Ճl�˸���O�QMXIK*]�=M��\	XW�'�������
X�x_w4�B@�?�W"~8
��+#��fUH��#J�-J�*�pH�A#�>Τʀ�g�Ɠ���(P�qad$e�J>���ek,�@>Gcy�'�b�-x������Q��V�ji�G� _#2�!�|�H���c��՘*�h�uܲ#�����	�3�<����\RKz'T�q}"ш�
>��۷�6�?�F��_��˃�=饖�>�y�_����-�4?�ƞ3{�v���,jp�}5r�~��T��-��8{������m�f�G�E����t5.z|^{�p�pOi$G4;#�e՘@\R��ۀ���'��
o����h���O'�~���J��{���\�S�C�Q��򜷴��dzp*�p5(�K�\Yu�p;q��0���:,�2m�)�Z,��?����rVno)
o���a`!�&��(H�G+�Jl�7��,���`2��.>7$4A�[0�r�g"j2���G9�G'I�r4���y,L�1�\*�C3�ጣC����%�W�M��!w�BG�d&���李h^�F�����t!P�:Z�&���l��?�32q��7i��;���}�V�߱��-�_�}����ziBuJ�#E�3��P4��4a�gK�A��1.!>������%���eD�r�V�֖E�׷DR�:t�/R}��O�Qc�>�i�ʾ9Z�ak���P�f�i���(!�$�	q���Ǡ��1'���#%�ⶆ�/bUye(�F*� IU�J��.
I.�H�m��j� ���AC�	�'
/�B�R 'J�*Җ@���:��d8��H� #�D+s2��)*6��"�c$����3�&�yh���κ"J�?K=F
���V�gL�ҫ��;�	"���be�@��}�ha�q�
�C%VV~��٨5�NO���0M��O��KE�^�ۺ֦���s��~��/=�=�˞��h˒�z��c�7߶h�t�D����OM6���jdߔ
.d��e�v�צ����2�)�h<�I%>a���Vd�!
f�rFǀ��RR3M��GO�.eh�h:&'�2�1MJ)b�g��C����d�lj���1Uv_�Ё&AX��{;]s��S��cX����P6XU��ue��]��*��’�qj�Pu*V�e<�����A_��jI$88A�FF�(�R�b:N�Q�/�����`R��!���V�eE�Q�iY���,ɂ�;�#g%��d �2�����%��a*��h��#=�i�J�dƤa�G)1c,��ByqrX����M�g_���5Ѻ���'O��>��֘�A�{q���za�o$t}�9�1=��j�$nEz�XQD)�x��(R�7I
�	ڛS�xq��7�R�L��6��Bq4oθ�.��r(!�
+���'��������	U�1�V����v|؜B��~?Ys��p�I��z%	�x}[s)�M��EW%��#�E�q]��N��H�����J)@H�)�8���g�`��+�`���BQP�����2�`���zT�$�A�%9<��r�O	-q<�rSDi���cM4�8�U˨��g�fv.��e�jmc��S��>�HH<4S�(�6���\�m���p�ǖ�Zm�e2���sS�o��_�l����A6�X"����䔋���ꘗ�Llj�|��X]��⍘���A��'�f�x��9���h�qԘKL��X+G`e3��Σ��	
y7CO�Ԅ;SBc%ܐ��2�"1S	�?�:�'S%1Eʢ��.
��+ x�!�������{����Oo$��uQ�1�wM&�ovTy�}R��MR�wˌ��R9�1�D�Fe��,J�
*f':��<����A�$�?�o4�Ё�pO�0��%��]a��^_�$4bAv&�C�`h��L;<�!
2žG
�1(0�3`����|4��6!��v�"S���D���2JK�)�:���&��)�����"t./s�j�Ķ%��>aR�8%ώ��w���vy��?z�nݎL�O�R����N^J��d'�zGR	c"+nC�ɔ�>
(KQ������8�����h��
fJ�nW�T��(�^* �!4�;�h2,yP��@F�,�|����}eY���YWM�Qg��gH��8�%)��'Y �hI� ž�L|����#��>�{�ǖ��9�՟���Q�zϗ�ޅo��*�w�uT%�:�(�fS���$a��� -,���	5�@�X���6��B��D"���9��v��۩�
jAG�(�ܘ_g��ZRv�rQ�
��ԌE:GU�OM�8Fy���B
���K�ӑc0��D%_��'"vddt�,˜t�98x)��ۗ���1��_�Z�i���0:X�5^�l�Uk���8.�/�.U.Z�g[:;���y�7�~��]wol�91��UW�*��2�8�S7S�Dx��E�"���u�]��eTK�Lq�R��6Yd��H�(��6��E��y#>�j*:L��:|���yk����� ��B��T���,�:S�Ur���F=��7���μ���m���;z��_5�PK���R|T����s��A1bR�JBcz�N�+�&�V�܃_�@9��.�ê�	�Y��*`��� �P`WԐ���@
��K3�0I���i_[)CkLӰ���b:dl��5d3D���&C�2Z�n�uV�4�غ��]� p�[JBpٔ������ec��/�d����5���{“ƴ�Ő���o��77.I��?~��x�;�,����>paݖ��4��򱕫��s'��Qsb�l �X褧�m��E�w�{*��2: ���Q���c�	��h�r�d$2��Bdٓ<�J��R�51�/{5I���]�	���3�N"�e���c��� ��>\f�ՄU(&$����`c��k*�1�P|��#&�O���sC\���.�D�_�*�]ґV�VUɅ���U
��Be8��\/?�0H��!Rs&��fF�	���D�X��q���t͸(N�	�"v��`W�F+�l���D�9Π@���Rm�hJ%���M�eA����ݞ�Zk������F�DEK�gg�xy+#T���
�O�=6Tb�ٖ�CN:b�u�m�{�D[<n�z:�X�g�p�kA���.M�
�t��d�ЬTE����D1D&��IIt%Hq�4Q�B�
�r��h��|���0M}�p����qƕQ��p�@��!��pF�`��O&���@�=Pj��;��l(�^Nq-���I��a}���،�W�+ҬB�k>�S�����'�ϡ�F�RÈpQ���hR
%1�= h���I�V���Hؠ���xꀎKrEU��܂<�؇2S�:�
	c�\�$��E�H���0m!!h��u$� �G�6Y�]�fY���]t]��ZT�y���&�v�d�D ��֖6���x���lcu����d��lfS���Kc;��d���kZ��O-XX�ϖ'gJ�a�.�G�ղ�J2Rk�(!3��s'�K�BHF������%j����)	u�iY�S�\�Eh�J�'q�":�
@m ���p��"TM��#�˱~U�)����7Bu�P���Tz<��{�1��?�h�1�D��G�P����W��A$�HԀ�b�+�/���Uك����b�4��$�(��G���Q�A1������bKA*$�sY�d�V`��Hp�� ��Z��'�ʕ���,���?9fR�ՙ�
4a���J�ݼ4�,F�l���G�d��41eY��&��8w�.8�͵7o�Bg�N�mZ������Ţ���r�SΊ��\1�s%�"�
nzrX�P�2i��	��A\Os��˂��R��d*�ӼBd1��˰��(���C���	�3�
�K�>2
�H�*������|Wm=����Q���ξ��]ϑ��ik��V�
C�JSeSl�z��x��$  ����"aר�N�R*t�	d8����f$�M�4�y��	�ZŽGvás:�H����Q(���R4Dc��T���.x�$�05���0ɵyq�X�G�L����W_⡙
US���������4E���+Ϋ#Fcss�=92��i��o��#�F�k6���?zl ݘZڙ��*{+�4�]ʗ��ё !>SH3!UG5�+C��9T`T�S�z�,�"B�IY��-g<5�H����@І�{�X�TA�ل������H�B�Uyk(I���B
Q���=�~�J���<$����[�V8�>7<�	?:��kYS�8%iPG����$Z���zww��J�_A���Fh l2X6�@�D��:�td�W�~�>J��1��xVǕ��чT�"ho�k��$��5G�ܪ(`��a|�P�&��p�
'08�L�t&�ǎ�)Em��z�k�q��-+�C��s3m�ym��y� �]�1�tq�l���o����J/\���X��S#-��y���}S9�k��L��F�F���\�¨MT��$�9\g�@�OK}��(jd�A褒�	`�JH8`Mp��E��N�Cf�^Y0D��	�n �[	�FaR��}���
�Wf8/3�w�L���_A�H�
��}?`������
X�1U�~��<֪B%�$S)��0�6��j^e.�6HE���*lA$:@��LHXGH����1�C��J�V�����>Xp�
q�B�a n��L����|�–��P`!(��i�;R�b��3�-�T�Xh�P�Ħ
ꮫ.L
Ce�b���_��W��z�6�j����93ǂ[��,�sf�H��moX`�R�����l:���ޡ�2� ��y�[�.��9�ST3�������]&���5*)<�+?Б)���<�qT$�'=y��V��xn��%�+LC
LL�>0S���P~�VY(���CeB�J\_^�@2�n�jAT9�f�P���B
F�q�TRb��APe�����P����X�T��JD�0a���q�8\aǴĐ������I쐘�dX�B�N5V�i�:R�zؚa6χih��9)�;*�Ri<
W��p2��X�@���\x�_�6��(SшQRTs��Z����eJ��e�����{�٠H�DSE�Ҙ\�b�frKRŃ��ޑ�EK���Mw���eq�x��CÓn$b�)J
C�
��~��5>Zm���#T�7�E�>M��.I��wT& e���$����e�1�Ɋֆ�U��dJH�xH�1G�F(��!D�a3J��f�%e ����
rUU !����Jj��Y$��]A��%N��<���;x��Ul,Շ�Hs��`]`Un��2��a�@7z�w���1��ѕ�3�uv�"O@�RT�	���)BrcV��	K�~�>�g�ݬ�	R��FpL��&c�X���b��z)��/��������R$=�b���h\^�乂��.�m=����З���n���ޑN&.^/:��7mi�k��>����kQ)��''|jG�h�U\�� �ԊФ�}�0�ekP�(�S�_ǟ�θ� ��VB�O�Y�C��[�^���|��<I|�'b��a�8��d�Ⰽ.�F|G�	%}Ia��ʀ*�_�t�2+����GR~;`]�wRd�i��s$i�~�X6K�UE��
s�A*NxV���Jk������D)ؽeH�b��1�z��=�ِ��	�m�*I���7�<Z��Jr�r�ۆJFq�V����X�!���>xR�E)����[�&&VƑ�2^�����t�g�M�$��2���=�%��2+3kQ-��n[��0݆vÀ����gڦm0�G�=�ƍ1���0��vc>�Y�M���Ɩ�%���T*��%k�}ψ����{�{_de-�7�.��_~YY��/"�{����Oχ	0�	�*6Ɋ���	'���9l���u�ъ�<}:F�z���s�Fo�_�8��㧵��g�������TA�6
�Be�C�Fw�ȡ�C�&^m��.Z����Ť!�E�Π;!F��Jb���idB����(����&�I�D��\
��/4#�"����6�T���R#A���T���ᜳ���������(�]�G]��
��|a��c��#S�l�9��E��%)�O@Á2(�C.K<�eN'��h��X�9C�&��#Y&�<9��������e��n���8��E����V,��-��p![�a������e�74W܈9Y�/�E<��
���G`b1
-E���9\��M7�u��4{�t~%����<I>w������]<yr�7����?��3Ů����ą�����S'b�x��ʐ���/P�%�&��̋�:e���!^�<�� Ngs�<��]2�D8�4=`- �K�]�%�Eė,-]T�gܗBq:��/2���.q�x�c���"Yؒ@
)�GJR��6l�\�}C�����#��(1~-Z�����Uٯ,�J_#���r�a���}$@a�s�
K��I�7(,'�$Op��s�`r��B@R8��G�	K'���ү!5òQ(�d�Ĺ�^�I
�.Kd�,F(_��R�_KB�K�l��ޱ|�gfi-��[��[��V���ϑ�K=*�Is���ui�-6�v�������l����.yGN��;���r�v�#�oy�So�ѯ8uq}`�2ܓ=wviv5.�0j�F�I��.���А!��5iP�x3$��7u�8�P'!�"М��IiZF мF,��Xa89b	�A�og+�S�
Lc�BE2E<݂�l׊s�K�Z����ŋ�t�������d�I�r�'s@�t��U�i���Xu��$Z�)V�T���Y��fq�G���T�{P&�,C!�7�L�#�F
��s�k����O�%�+���d;/����l(��)�XYG�,�ݗ]���5�@��bK�H���s:����&�C���"��-���VV��zB,���\�8�s�ĩ����	̒��.�3��@"�j�Uʶ�����g�b
������5?��K��N��ζ��[(W�<��x���A��ۇ�<4���l�'O-����0nH�i�d"�a���2'�"��.�E��4�bY�H�@|�|��uNM�Py�d}��B}eh,�z��qb��H
����Kk2�m�pZ�b2�%2b������ Ȋ����ST�Z-D���Pa��Hy,���a܊`�W����婩�Z���ը����vxL�z�Q��@�n(���כ6ፃ�^�W�FI�B��V��`P�2�HO`��Q4���Z�!
���|#��`�%dH�q�61�)���>@�/���L$�ԔM1���%�-Md1��%vz�jJE���ߝ������2��@�8^_j��8��rN�Փ��"ܕ�
�J�z!���y{��!���5׃���6�r��k�u7��L��&AR���6�Ѓ�}����{s����wf��<zja���M…z"".�p�Id*�c�e��F,N�b��b�@l����1?N�E�ѧ����o��c�ZIbR���Dy
��8�'?�}�=۶o�xqZ��&�&�r�ʸQ�H�AV�Y3X�
� �E+S�vDin%����k�� �G�Czr~��Ɗ�=����m�{+̈́�1Q@’!&��;����K�#��y�x_}�gs���@�g�����j�l|^�+Ńx$G�}C$�W��vsZ%gbm0q�G�d��ړ�J��	4��2KI�� I�C)�,,���Gʨ��[!���f�F+�*�j�o�'"��₍4��"&2�L#,f�C
6]Z���l����Œ��}�􉹥�	����J���Æ*�B�xfq����#����֛O=�h��߻�r�Xw�rߝw�>P1)Y����m���9vd��e����V&��g�L�}�s��P�#�FG�����o���Z`��Z�)���?�w����z���j#��ny�~g�P��w��-�K?���b����9<���
�\n`h�f����r8�}�]*d�lggǿ���w~�c��Pc��Nj���{�je�x6��2T�4=7��m�=�?����Y�M��8e/p��cF�Y{�H�e"_�Yt���\�3Ub�M|�t}v9�ZY���0�u�珃0l5y*a�9�^�+E� �D�;YS���
=�#���C
ɐ���p�ĭ�5��A&w�Hdpĥ�(JQ�Dڡt
�ƈ�!ܻ��4��0Dx�+��r-@�
<�}�0�+��C���AXm����#\�q9%�*�l�Z���0.f��P�p�G���r& ���]Yj6k�vm������`j>��8�f�M�&�&���]�����t���i�Z����yn�[�?�ܟ�՟�������7fr����ۿq�V�f[�u[��#���ޱex�ȱ���ǚ��$h~�3���|xaa��{�[����k��O|�/������{{���!B����I�������-[�������>�>�����t۝����a|���䞻_����x�?|��ԇ��=�v,,,>��ӻo������b�893��w�㾷�'���~��͏��΍�m=q�Tww�����>��_��k����{������LM9K	��6�A�H���x��ō�E�4s�<�cb���=7w��2�Xӎ$o�G!�
���7��K��wv�n��W��M�G���Erc�)YK��2"��W��ImE����!�8P�"P��H�A�X +qEV`q�Tx�/z|��n�L�5)��:T1h����{��
E̶:��0�,~�R|�,fX�g(�G �D(�,O/ųk,��{��ݕ�K�B>0unʢo��ˡ��Wk$nL�|�V���5��"��"~j*:=Qoy��P�o��gp���-��?�c?x��=����w�W�sL�?>��3��>?3�t��<�������Y��%�)�_���jG�`�Tt�ז���k�R��^.����酅�?�	��_���{���\�P���w�����}|��]���z�Ͻ�R��m�5�����_����O���\*}�c�^@�Z]Y	�p��Y�0:*�G���<���5�8���1q�m�1������'>�Z�����l���ھm��O��Wj��k<Q�u�׹��	��~+��K�o�4���W�R�P��]��20P-�aH������$�e$r☷� �i�I�k@�_�#�쓧���75̓S�
䘤���[�Z�z��*UKՙ�S(�)�|I>U��$#kL�mXm��8��2�8f���}ȟؗܢX������kL�y��B���'���J�G>�d�
��
��ƒ�8r::���(ƎM�������
�]#ݨ�d��r���)�egב��_y|~n�#��>�Ҍ��()"[��V��]w�{��(%F�����u29q�P:�{(��Pk�G�Ȩ��D�s
?BN�)f����[�aW��r�0�� L� :�‘;n���7�e����Gl�.Gk�h:xWG��O��;���9��"rݷ��O��<?;W,�f&�����Ί�:Q M�c'O�����-��{A8�m�X(�q�w�3��q$`�a�i��4�ŅEJ��ũ/��ߋ�q���m;v��s�B�P����J�~i��H�������{�N�a؂9]�'�s��LiQ��W +�\��[�d�2�"Y���WV(��hm.F�k~�0�4m�E3��#��(<��ަ��0�'��bNtٜS�NhKK�w�.@Mn�H��\B���16M��B�B�e���<v9j��-��R4�S n�%tJ[�0B�plS�h�e$�D��!���p,�M;�M���2�Ec�v��mŕ��./e���U�u��f�.F�Dt�=@�r"%3%ɞ�"����B_�YF�=��:11����?�����<x������G���S�=>��w_zxzv��s�|�����y��qC#=}�i[��QkF_��8u�;nݷ�8�?��OV�VFw�}��?����g��{��I��?x��Sg��ם9v�+_��S���������O>{H$[�߾002l;�-r� <}vb�^����7���/?�́'WW�<�TWW����Z}ujrft����:txrz���3"�;~�dE_�������n����}�HO��c����_ �&Ezದ"�w�m��J_gg�f�&�Wb�z]�Y��]��L$�m�B�t
:�8c�m����WP�v9Y,Κ��%&�q����PX����ï��v�ߛz���InZ��Ϙ`��DB���D�I�$M!l��A�<%��D3À��,�Y�@HR���L��M��s�!����D��HȀ�@87��HqckrqPNBY���sА�2�'`Z$xI���m�l<[c5�mT)i���3�F�4&�F�r�z�]cห@ƺ��b-�n�jn��]�β}��u����n����.���Gf�Vk�����Ǿ�fdDH�Nvtj~�Wj�e[cC9�7���������>c[Y�Xw]W�Cb� Zb�ǷPj���nۑ�ǁ�,��@'�P��4Ɛx�e'�[�q�����Ot8q�ߊ�$ohI���h���4��$A>�4E2h�v��:����0H"�vU��)�o�� �'�K&5˸H�Yf����<���v�x�s��H�l��r�b���85Rx�����q��>iͭ�*<c�f�;�HGCj��('�F+��J(�k�Ҁ՞U�zj�J����a%�����f�Rw�����
�\W�]bW�`@�X\�m,!@V4��)Lh�Xq֢!�
���o�'eX2���.�D�D,i
ş0��Z�?IbA�	KEP?�벨;�e�Fr!���m�2K��J��k/��bw�ݤ'��^��K�;���nyrR���ՙ%n~S��?���¤71�6>Rv���G'E��ڟqc~~ΣR_���#K���Co=��w}N�."	a�1yLq�K�
5��ց��	Hژ��VNV�3�ey4�8�H�j�O�VBC�~59�
�G�w�-��E$��7�f%Z[�%Eҍ(ÁKI�j�\cŵe�F�P�b�f�x!�
�o��
}?JD��G~�0=n�.G@e�K`�A���
h.���m�U���M�Y��>�Ky����j�
X�EĠ�� �3$n0rL9�N�te5	����Fһ�H�PyS�͕隌UҮ@�d�bG� ���Iç�����e�J��j�P5b�$����N�%0��»�T����*�\,�y��!�Q�f�8������pX��?;ur�@^
������e�z	11�
�''�O=����������Қ����=�Թ��ν��[�&�-�H���ָkI,r�I�I�1��'KP�҂��j ܈XNC*��L��r
���X�z0���`nj��a�(VksW�4qjNdy�!N�ۏ�m4Nw�K��|c��|s�w�n��Q��∉Jj�ac��C�	|ǻ�y�[��0m\�Z�M61�*�r*��4}l���
�Fk�<
 H�#9��<���h�*X2��&�mH�J9�������n�]�D�:� z���J��!VY�@��$�0��:� ��2
�р���4��ɽ&)���FP�eL,=�4A1Yl���[�<�nZ�T�
�PT��޾���{~���\��'��� d%^`gY�ޅÐ-yTd��,�ikg6c=��������ដxQK��<�:>d3���Z=�w�֝�z�?����ȶ�����X����OM5�D�s�VB&�LD+�hz���QL�z�L.��Ȃ�R�i(eY���iU�6(I�%&u13,0G�'.�K9Z�I,�:44$M�*�tP�Q�����IJK�}�(��p!��"�=���jH�c��b:�"�&1;��1�w"�u,j�D��+[���Z��*@�F(�㖂O��%�eR�4v��p-��k����T%M�
�'���4�L�
�C��������H]8i�Eۦ2逼�H��.
�Ɂ,��4��a�/�
��Lh��b������:�N)>)׆���H��ĵZ"�I57�q��m��}�u��1�J����9����}wtv���g�OO5=�)V�X�+����#
3>�en�6[��B�į��S*��ğ��܌��wlYY�xn&W��T���7/��|K�����켻�A���Жkr)'�����1�
YѠ>�}��A6AC�Bɪ��� ~�d�lZ!�m+��
�'@��#�#�B���ʏ�Ө�.�J��Sv�h����K�l�0�H@w�|L����#�/��ġ$��8ߌ�j$��2E�����Q�<��1I��A�x�1`�a@��!�/��^������\lԎF,"{˜H�$�UN&wx5v/~*�5%A	�mY\��o�l�����*6`5��Pk_��xY(��c�SK���&�ұ���8��Š�zH1�K��մ�;�Du�bNs">��,'�m<�m�b�h���̓��mu�}���
�Ǵ�C=~g?�Yh�&�
	��@��+7qQ����NrǶ~Ƕ�fcfn���-�3s�&::s��u,����ܵe5��ǎ��5�9:
�i�u@�e�	�tvM9�a������0��<�sr��o�@I�[\M���)��Y^�
��Tqa<��*��axA"�I��H�fRZ5��Z�w0�W�w���L�3x$b�QP�v��y*��w��lG(�@LB�$@g��]�_�(��,	U�����"���򨘿f��*X�#�^��⡍�R��qR�J��(����ooQ�p��_�tS!T5S��X������q�D
���
�1|�hebI��
��螩,)�:���+]:��DFI
Yi$kM^��Uf�*9>X�q\��pf�N��������Po������
�I̧� �,hc[�"gy�����Α��P���Օ��FGOOg1{���֮=Ý��_�ɥ�{:.�>����U��8KA�su!p��ъ�|D>#oS���()��
r�xM�9�.vH"gT.�Ees�nec"��%a%�KT�$C��c$�6���I[�Q*�/�U|c�X
�A� p�b�2���\bs	��z�K	af�Dp:S���<~YݛďDˁO�Ah�z`�䶈���/nEqM��k����K<�eoj]oy��Gj�tW(R��lCU�
�%aC��c!d��#�J,��Tr"D�&QS8p�=٘llh�$�&�>�<���	e�cAP�d��+^S�p�:%���|�t�>~�3]X��>��������p֛�l�V��7��F����J��$K >���~�S�&����H�9җ�5��}b��w��VK����Z#޺UC�3�N�4��^'gg�y�H����8���g�Z�
�)Wq�L������J
�
�P#M�2�����s���o�Qi��B�-;���U��5 �?qܖ=gry\��H�K}��:��	�d�?���|�6�V����7x~�6À%>H��L
K������>^� 1ID�2�,��
�yi=.�k����I����	���e�t��dAJ�J�#����[!�0��#0oXv0Ր��P�I��\ND�3p�Q%4TԱ@-�:A�6�8Ϭs
�CW=�F���B��m���lW>�Y�zs�����V�k1KF�|S�v|�%ܕ<؛���g/֟8�t��m;��|����K��[���Cǧl����^8W_X�*�+���l�� "����ɩ抏K,(�@e�L5��I4B#λ
n�M�j9�!�H�c�_ zi`ԠCP�34���tnd�
�C*;
�Vf"�7�fdt
�jj t��0/��1�6��$Wm`H�;M^2�4I�R�vM��Mv�̀�o�B��O%��z(E6��  �Ǣ911��������g]_Lwu�m��y̶y@��-�;H�*eڨ=
�`Qr%Dj��-��A
�\j�RwA�at�"�vF5V�T��q�0@�1	pj��*�8�N	�n]bb�e���s�3O��/y�7C*��O"�����|��Ǽ�Ђi�c���R��T�I�)Z`��*���E0]lib�����I����N}�m�+�|��S�bq|xhfrS=��;�f�pN=�'L�i&gL-)�z\�Ү]Zr�Q(H�h27�6��&�f-5�	L�^�����r�2?3'�*�X5&�ݹ��[_�
]���g�������^�{�nĈ������[n�/������py����y������,�����N����m?�"���^^���J��7m%�7����;h�QpE0<�S���_�d�GJ�7*����p�ā҃�Y�0B����FH&Q��DI��TV�$icY��]sS��: �oK3Q�S-+��k!l���j�X�Ŧ
�}�P[�|
D�FY�g8V�i������R�^+
ޛ��(���d��|�:f�
T�xo^�*��A�J��V�?2}f6\J�#߮����l�U`J�S����b멣���s��tX6][�O�ֆ�;���]��_ݱ�������<uz�L̸�dF�al"^L�a���%�3�p��Ly��i$�XY�V�b�� ��[~����3gE�o�_{��r��g���GEt��7n������ML+v�;��w?����-�.<�8p�I]K�{��s�=��=}z���C�<���"~�w�~�|��Μ=�����#���r%��1"��
h
�N���Ο��bE7�B����	/�4�_���5*6-�ۭ��x���=GX�X�g��^���N�u�J
�M��#���8� ���0ʠI�5U�'�x"�	0Ӓ�SJ��J5&��`�����AA*o�p��]^�P#1+�@b�RJ�F
|wYI�eE`��\,x�7�����5yN'���o���bfj�T0z*FF��J�\.��%wvj��Ś��4�&���~��W�^�����sg=ͦ���:�e��3s��f�c�vƒ��Ϻ�w�с]o�MkL�}q):?��P�W
�iS6[M�t9xv��R�������n�C�Mx+�gy;���o���z�Q(?t������7�5��z�5[|�:bo��
���{�׬�w��>s�k�=��,�������&/��-o��w��=�y��R*T?�������?���?����'��ǿ.���������8W�AB�]i���)�iJ&UT8U�o�!���,-C�Z�,P��.aiB�G���v�}+��+���Wk�A�@E��I���	����&��1���t
t�|�ԍ�Hg�x4"T1S�J�2҈�0�D:�A�M�����l��P�C	FO���OeCPK�l6��@e�@�O�����P�A����:��n�d�?�c0_�t�N���v�z���ǞY�{T@U��b"/���{o���(�?����ء�nO��Z�Z2qnYd��o����?y��7�:t�ݫgΞ;ul���N���X&o8e�1%H �+P��*0��V	#Y
Δ��`�j���L�w�p�=�΋h��%dg>���oݲ��f�����Ч?�_�L��X��#_?{��n�a��;oۈV⣻���w�ъ�����_5�u'_^�����{�Fqs��{'�_�*�+[N�3�����P.���|N���kU�x�U�������w�" �,�`Ԗ��9b8u%����55�s�ի`!��i���gRN�5Z��x�
��'�w�����������OJ��t��hC�Qv�ą�)
$u�@�`
��O��(��NE�I|%��Y�]?5�4M���ZN�@OJA~�;�S���|�A&Tܙ�}��2_'g�Fz29���9�B^�(�3�Y\�QP�C�$����&�P�u{!���O6��zd��3<X�f�Q��+V+7m�8q����=ٛ�z���~��l����Ñ���M�%�9J{�Jl���VY~iDrh��"H����p��d�7�B!�v^ð��
2^�Q��J����*��R��5���F�K��^Gp������8<�]�ͦH��F��ϋ���� �{��و���tRi��S���dcD��$;�	j�o��/�]��򍢂*�l���Slڲ銒˂$�:7z�_�S��6?rc�V��r$���bل�ߋ� �q������z��3W|��)���$�m ��!�(�b�6�S9=	T��Ez���x1XH�z�c:`n�a�y�D�I�����MOZKI��!��)���톥���Uf�A�Wޘ��
�š�v_�-��5nQ��t�Տ-C��9�v�ЙC�j��R�I&W��v��E(瞟��8��k�hf��TȘ�Z���b����v�>y��ٙ�ʾ׽�ac���
�jq`��ԗW'Wb�L�3L,e�G禆�8-�p5E�HF�����	�o�n��i�řٷ��w�x�hWW�'>��'��б���8�ɼ�����a��/�B�����	׬������ݪ.�����,jnn�C���م����7�s�{�g~�S�O��/����u�M7�������͏|�+=��s�alTa�oJm}F��3G�Uݕf��^3R���mKh4�Ƥ7-J�Y�Dv6I[�/�ĩۆ���q|ك���n�%���U*�t�4i.c��$Wu���X�C�[��>װ$]�T�5<�#V�J�(�:S��c)Nx35��Kd0���Ѩ{��>(�j��C)�E��_3�-_N7�.���gd7=��o�vd2]-�`��1ł7d齨�ϴ�����K�g�j�{�lwGYl��͵���k�J+�Jz���+~ar��Ta,HQ�|��ښ/�s9�LϮN-6�n۱s��g���]ݳ�p��V�?U�/t�z��z���L�#��p�X1:%�I�Ǹ�.0�>�sT6�c��K���M�C,�r��G~�CC�"�?�O��Ͽ�+bC(q���;��^q�.NN�S��l�%G�g�{���޵�ȱ�?�j4E�<oᄑ�?o����ϟ;���Ķyes����8w}��?��IMK��RŒ����F/\�OP�z(<�3G��c�f$�4����4�)J�M���R�CI^��i��
�"���%I�M���-�6�W��]I]�t�
JR�i�a@i|̨�:z�F��֣�D��Wf��,q��Fj*#���\D�!��
j8VR��XJ��$��q3�
XUe0�cT2ݩ�aq�Hl0�&Qo�	
+j���n�#@����+;�
 �-–Y�1Bh���
L�3,B�	rɬˡ�J�n�ԬxJT1�L�0��ij�YRs!�����Ʃԇ-����-�b1g��Z+۳ot�p���Z7���1~��cͅS]û��Jm�܁��ή�!�����B+��
�o�0
I߄�>o(�h9�5��,��%VY̓�@
�,ұ����.�5�<Oslu���6<b;����ud���u�JX+d�sa��m�Q��he�>��X�L�V�$�� p�y?���S�T�'Y��a�P�]+Pi��k`[�Xd�PI��w;`mdpQ���*���T�
�-Y�
/mQxs٭-K�S�.&	)0����Ů��$����x�R�irI�"��/����Zt�h
"`Qnr�V(�g:IdF@S�l̮���&�&U\�~I
&��	`�aC�Hn�0�&r9��K~��ꁯ�L.�}���8�C@TJ70l�ں&=&r������&oɝ_���R3h������j0X"��<ȴt��}�X!O�1o��
��ES�r���[�[
I��X!��u��}]�c��^k��L׎�#w�{�V��̝>�ؓ�[�Z5z�J����j��Ը��Kq���3�����r�&�	ԋP+�7튃�f��A���!��J$�x:�d/��Qф��p� 
p�
3`�����4�������
[��X�T�*=d[�Z]fL�˗��(�nB�ԼO�[ɞ!�*��ͤ#>�m{�Y�0J߂����SN��+�=�h%rJ��lJS�����.S�y���;�\�4����l�Ă�~�ˠd��q�$���8e�������sn�pL�(��3N��B�R#_5��\$��A��1�uГb�-n�F��:�ؾ0�s��1�(�"������Ӭ�5Oͬ�G]��F̔��)Oq�w��{f��1���PbiKˡm�V�8:�°��z�1=��7�=��^'_�|�(v��&lw�}�����t�a�s�xf���^{k_yj�6��C�K�R��^30�ɬ/e�"�Ez+�&�g�H���L2	#��a"�2�t�dՆ'�"b�X���v=D�{�z��фsu٪h/�=
i=�){�^jʑ�jIn�GP�!�p��>�޺Z
�
���6�RN"�l�qJ�m{���d���7)@��<�bV�cɘ��_L�4a��Q�}
�E��C�j=��Fůfl�W���u�0�30^"�bT%����U��d��k4�2-�a:��!L�a�@�	J�\d!
�����Ҁu��{#�$rꐂ&7$�ƍ�m'��!��y�w�Ӹ�D^�D��	��eڊ�b-�.�hN��hM�-q���8QJ8�͙����uҌCg^�e�u6s��]V��i�w�JY���--7z��r�i���kq0~珆ar�/ٮ�wQ�9�̳�WDz:2��.٧N-�6����]%�k�^H\yk3"nj��\�s���!�Tx�D!�b�*�ȐJ$�5	<�r:���(�]�D/e��s�b��s��'!���
+_����mWz؁6�R�&u��!��q
�����|sś�*��R�ccj��́�g�զ��j��x��T��>A�T�6�䆢3�<Tf�ִ��,H⤦"@��iK�t�Tz0F�Rս�&+�6H����̄FU�ˆ�<D��/�1*�V"�s� Q��Y�d�N&�"��fJ�b�L�E&~�[���>��&�ڎ!�w>��k57N�������>:�Y��u�PX��e�h�']p�"t�L����z�r%��\��aO�`��^�Լ����߹����3/|����k�~�Z=x��&ZX�c#��e;���*7[�Hn���\Y�t#�a?�6hI2k�mB�8Ö́(Ѩ�F\@Ȧ=VKck1��E�j$R\A�}�� M��S�I��
�����C�A^B���v�
yz�
�Toެ�����
�<�Z�ەe~��_�]C�E���ڀ�4�Y�ҷ�7��a(Ԋ$ J�7^_X�v�ڨ;J+�[�U���Z�Ԣ0oS�(L��r���]TZ�š�v7�9n�JAA�>���8��Y��QE$3Ӕ����'��1��P+r�b���0@����j��v�:���S�7ּ�s��(�?��
d �Ӹ
�/\�S���EjX�j-�A���1���щӫ2{�G3��-�YP�+�v�{��K��u��
V'���Y����U��O,�	���Y�m���V��i�d|�|�a-�c�Hے&�:"-P5��4B���Y�4γ���U5D Ku�E�v���XR���@e����5>���؎,�[�ojS����R3)z�Ƙ�Kՙ�"?��;�9-���ߺ^�e6�;�c9�8��~.!$bV��ʦ�����%B��S�D�6,�M¶�[������Nup����6�p�W3P���k�*c��ҡ�m=��==}�UYn�(���E���o��t��\�R=E�2Yˍw�>�87�����-/v��Y�J_��x�<ܯ熠[zg~��ra�ݕ-�k��{���j�+��G+n=��P������e3���ډ��x'��c�A��a�g�����Q�f
j D��@N�1�1�!��+p�i2XH�4�����ʡ�6�ږ�錨����ڜT���2I��5�k�~�4��hD�ub�mհ^F��b��S�i��@K��a��Q|-`}����4	�K�M%]Y
B�1��da"�2`�D#�
Vb]i���q���W�T��l�vL���$�q�wG�gA�����ZW�2AH���5&���>yzrՏ(�.�r��<U��$�Fo�8v�~��m;��~y�#�F������ޞ���)#cv�݅��M�9�0Iַ�y]��o��G�_m�J�=>\Z�i\�U�k�P����/L����.���="R��1��D|�7�Ъ�a��D�~�a��+�a��o�*A�X:N`�HDD�F]9�����7�Aari�X�A���J����)j���$�g�W��;Kc�r!U%�D
X�$���Ub��"L"��ʵ��>�)�$�=��udRnQG��!��:#q@жԤfe��wW,}C�SOhgkOM<��CRy���P�A�P�+��c���5ԓ=ph����r��/�?����W���3�D>���>��֦OLzIJЖ]wg˥��x��T#��2�����W�C)'Ţ�����/^�i���i;����W`��0[�t�O���$Ir:ց���!C�WQ<��:G��,���q����%���
��W[��Kڀ+�p�/cNJ+���1+��;ی��,�心��$-ɿ�����+�Y%����d+o����H�L$�dS�C.�=M �!���U�b���R1Kb����?��~�l�G:���cD�if���g�:q�Ls�|�)�� �5��
��IR)�����O]?������S~�"�/�NAlkyo�w:�7է^8u�k��5��n'c��cO=7b:6R�)eN�]^�3M'�$�Z�n��qqbyb:�:�4�r�5���p�b�.���J
�CC�֐&7�(�mFb0�E֌��!FqL]>"%7 �%w$�������p��à���,��;��!ӠA�e�����J�%T��;oS�2���I�&+%D�͙�X���7,d��j8���s]���/�,�����+ᡡ;ۇ�4�\Z\����O=?��O@	�@\��
̳�����o�V�at�Tc�E�#��r��+U�0�
0qO�o�!�[w����aq�D�Z��u�Ƽ':�a�۷�
̏_rHQ��/��6wo+�9�2�k��N`�ӕ8i�W>}ih	�Q�D@P4@��h�M~$m����*��e4e؁�&)a�]\��A�o�q;�]*���o[b�
��W���%Ǯ����4�7�;�A��yw�:|0����]-��r(��s�?�ڲ���D��źN��%"ZIK�,��W:����{�\�鸵z��ffVij�سƱdT���n��UT����?���m>}�p\���������.���W�~�3v��1z��Wg��w�������Q&�������50=�����-}��④�K5��N��=�f�Z\����Sfjc4�A-O�ˆ�o�J�N��x��4D֜lb:����x{܏o(/^qɀ�I�~2��*�0G�['��i[^EZ�$�׊��G m�t��%X��8Y
�M�栎
�����c�1Zkr_��J�V���:�L-_��ҭ��M�玽�8Sޔ�v�ҿs G�x�ǧ�����,"��r=z��X����d�a�@_����I8���X���h�繯�M�շ�����\�;�أ�fjq�j�
����S�-ƕKPF����s��W���Lnm�t���lp|�I�A�Ur�)�%�M���|>�T�e
D����Ei�%$��7����,Ǎɺ�<�^��~��j���L(��=G��|��PC0�c�&���	�F
��(�QB`:���:���H������#Ͷ*�Jٰ*j�9~�S��H×L���C�,�S��0
<�
�P��&�"6���94�J�Įh�[qP���wd���Q�2�?��dhlk����s'}�z@��������ڴ�3�� -K�9lf����Z��i[e�p�1F��d&��s]�Ps񚛜�L5��%,B��.�0�����V�%��� Q���qM��U�_�f��"z}�&�U�ŷ��l�7q,��`��R�_�t�%;0�xIEND�B`�themes/outline/v1.0.0/style.min.css000064400000026464151213255550013006 0ustar00.ms-outline{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-outline.ms-loaded{opacity:1}.metaslider.ms-theme-outline *,.metaslider.ms-theme-outline *::before,.metaslider.ms-theme-outline *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-outline .flexslider{margin-bottom:0}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-outline ul.rslides_tabs,.metaslider.ms-theme-outline div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-outline .coin-slider .cs-buttons{background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-outline ul.rslides_tabs li a,.metaslider.ms-theme-outline div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-outline .coin-slider .cs-buttons a{background:rgba(255,255,255,.8);border:0;border-radius:50%;-webkit-box-shadow:none !important;box-shadow:none !important;cursor:pointer;display:inline-block;height:15px;line-height:15px;margin:2px 8px 2px 0;padding:0;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:15px}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-outline ul.rslides_tabs li:last-child a,.metaslider.ms-theme-outline div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-outline .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-outline ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-outline ul.rslides_tabs li a:hover,.metaslider.ms-theme-outline div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-outline .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-outline .coin-slider .cs-buttons a:hover{background:transparent;border:2px solid rgba(255,255,255,.8)}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-outline ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-outline ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-outline div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-outline .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-outline .coin-slider .cs-buttons a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-outline a.rslides_nav,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-outline .coin-slider .coin-slider div a{background:0;border:2px solid #fff;-webkit-box-shadow:none;box-shadow:none;color:black;height:60px;margin-top:-30px;max-width:60px;opacity:1;overflow:hidden;top:50%;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:60px}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-outline a.rslides_nav::before,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-outline .coin-slider .coin-slider div a::before{background:url("images/arrow.png") no-repeat 3px center;background-size:100%;content:'' !important;display:block;height:32px;left:50%;margin-left:-13px;margin-top:-16px;position:absolute;top:50%;width:26px}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-outline .rslides_nav.prev,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-outline .coin-slider .coin-slider div a.cs-prev{left:2%}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-outline .rslides_nav.next,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-outline .coin-slider .coin-slider div a.cs-next{right:2%}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a.flex-next::before,.metaslider.ms-theme-outline .rslides_nav.next::before,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a.nivo-nextNav::before,.metaslider.ms-theme-outline .coin-slider .coin-slider div a.cs-next::before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.metaslider.ms-theme-outline .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-outline .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-outline:hover a.rslides_nav,.metaslider.ms-theme-outline div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-outline .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-outline .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-outline .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-outline:hover a.rslides_nav:hover,.metaslider.ms-theme-outline div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-outline .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-outline .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-outline .coin-slider .coin-slider .cs-prev,.metaslider.ms-theme-outline .coin-slider .coin-slider .cs-next{margin-top:-55px !important}.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-outline .rslides .caption-wrap,.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);bottom:0;color:white;margin:0;padding:0;position:absolute;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap a,.metaslider.ms-theme-outline .rslides .caption-wrap a,.metaslider.ms-theme-outline div.nivoSlider .nivo-caption a{border:0}.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-outline .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-outline .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-outline .rslides .caption-wrap .caption,.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{font-size:.9rem;padding:20px 30px 65px 30px;text-align:center}.ms-is-small.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-outline .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{padding-top:50px}.metaslider.ms-theme-outline .filmstrip{border-radius:0;margin-top:10px;width:100%;z-index:4}.metaslider.ms-theme-outline .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-outline .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-outline .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.metaslider.ms-theme-outline.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-outline.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-outline.fullwidth .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-outline.fullwidth .rslides .caption-wrap,.metaslider.ms-theme-outline.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-outline.fullwidth .cs-title{margin-right:320px}.metaslider.ms-theme-outline.fullwidth .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-outline.fullwidth .rslides .caption-wrap .caption,.metaslider.ms-theme-outline.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-outline.fullwidth .cs-title{padding-left:20px}.metaslider.ms-theme-outline.fullwidth .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-outline.fullwidth ul.rslides_tabs,.metaslider.ms-theme-outline.fullwidth div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){right:60px}.metaslider.ms-theme-outline.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-outline.fullwidth div.nivo-directionNav{right:20px}.metaslider.ms-theme-outline.fullwidth a.rslides_nav.prev{right:284px}.metaslider.ms-theme-outline.fullwidth a.rslides_nav.next{right:20px}.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}.metaslider.ms-theme-outline.ms-is-small{padding-bottom:50px}.metaslider.ms-theme-outline.ms-is-small .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-outline.ms-is-small .rslides .caption-wrap,.metaslider.ms-theme-outline.ms-is-small .nivoSlider .nivo-caption{margin-right:0}.metaslider.ms-theme-outline.ms-is-small .flexslider ol.flex-control-nav,.metaslider.ms-theme-outline.ms-is-small ul.rslides_tabs,.metaslider.ms-theme-outline.ms-is-small .slider-wrapper .nivo-controlNav,.metaslider.ms-theme-outline.ms-is-small .coin-slider .cs-buttons{left:0;right:0;width:100%}.metaslider.ms-theme-outline.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-outline.ms-is-small .nivo-directionNav{width:100%}.metaslider.ms-theme-outline.ms-is-small.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-outline.ms-is-small.fullwidth div.nivo-directionNav{right:0}.metaslider.ms-theme-outline.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-outline.ms-is-small.fullwidth .rslides_nav.prev,.metaslider.ms-theme-outline.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-outline.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-prev{left:20px}.metaslider.ms-theme-outline.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-outline.ms-is-small.fullwidth .rslides_nav.next,.metaslider.ms-theme-outline.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-outline.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-next{right:20px}themes/outline/v1.0.0/theme.php000064400000001610151213255550012147 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Outline extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'outline';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_outline_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.css', array('metaslider-public'), '1.0.0');
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['outline'])) {
new MetaSlider_Theme_Outline();
}
themes/outline/v1.0.0/style.scss000064400000022200151213255550012367 0ustar00.ms-outline {
	opacity: 0;
	padding-bottom: 40px;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
  
	&.ms-loaded {
	  opacity: 1;
	}
  }
  
  .metaslider.ms-theme-outline {
	* {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
  
	  &::before, &::after {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	  }
	}
  
	.flexslider {
	  margin-bottom: 0;
	  background: #000;
  
	  ol.flex-control-nav:not(.flex-control-thumbs) {
		background: transparent;
		bottom: 30px;
		-webkit-box-pack: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: center;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		position: absolute;
		-webkit-transition: top .2s;
		transition: top .2s;
		z-index: 8;
	  }
	}
  
	ul.rslides_tabs, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled), .coin-slider .cs-buttons {
	  background: transparent;
	  bottom: 30px;
	  -webkit-box-pack: center;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -ms-flex-pack: center;
	  -ms-flex-wrap: wrap;
	  flex-wrap: wrap;
	  justify-content: center;
	  justify-content: center;
	  line-height: 15px;
	  margin: 0;
	  padding: 0 !important;
	  position: absolute;
	  -webkit-transition: top .2s;
	  transition: top .2s;
	  z-index: 8;
	}
  
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a, ul.rslides_tabs li a, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a, .coin-slider .cs-buttons a {
	  background: rgba(255, 255, 255, 0.8);
	  border: 0;
	  border-radius: 50%;
	  -webkit-box-shadow: none !important;
	  box-shadow: none !important;
	  cursor: pointer;
	  display: inline-block;
	  height: 15px;
	  line-height: 15px;
	  margin: 2px 8px 2px 0;
	  padding: 0;
	  text-indent: -9999px;
	  -webkit-transition: background .2s ease-in-out;
	  transition: background .2s ease-in-out;
	  width: 15px;
	}
  
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a, ul.rslides_tabs li:last-child a, div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child, .coin-slider .cs-buttons a:last-child {
	  margin-right: 0;
	}
  
	.flexslider ol.flex-control-nav {
	  li a.flex-active, &:not(.flex-control-thumbs) li a:hover {
		background: transparent;
		border: 2px solid rgba(255, 255, 255, 0.8);
	  }
	}
  
	ul.rslides_tabs li {
	  &.rslides_here a, a:hover {
		background: transparent;
		border: 2px solid rgba(255, 255, 255, 0.8);
	  }
	}
  
	div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active, .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover {
	  background: transparent;
	  border: 2px solid rgba(255, 255, 255, 0.8);
	}
  
	.coin-slider .cs-buttons a {
	  &.cs-active, &:hover {
		background: transparent;
		border: 2px solid rgba(255, 255, 255, 0.8);
	  }
	}
  
	.flexslider ol.flex-control-nav {
	  li a.flex-active::after, &:not(.flex-control-thumbs) li a:hover::after {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	  }
	}
  
	ul.rslides_tabs li {
	  &.rslides_here a::after, a:hover::after {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	  }
	}
  
	div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after, .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after {
	  opacity: 1;
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  
	.coin-slider .cs-buttons a {
	  &.cs-active::after, &:hover::after {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	  }
	}
  
	.flexslider ul.flex-direction-nav li a, a.rslides_nav, div.nivoSlider div.nivo-directionNav a, .coin-slider .coin-slider div a {
	  background: 0;
	  border: 2px solid #fff;
	  -webkit-box-shadow: none;
	  box-shadow: none;
	  color: black;
	  height: 60px;
	  margin-top: -30px;
	  max-width: 60px;
	  opacity: 1;
	  overflow: hidden;
	  top: 50%;
	  -webkit-transition: all .2s ease-in-out;
	  transition: all .2s ease-in-out;
	  width: 60px;
	}
  
	.flexslider ul.flex-direction-nav li a::before, a.rslides_nav::before, div.nivoSlider div.nivo-directionNav a::before, .coin-slider .coin-slider div a::before {
	  background: url("images/arrow.png") no-repeat 3px center;
	  background-size: 100%;
	  content: '' !important;
	  display: block;
	  height: 32px;
	  left: 50%;
	  margin-left: -13px;
	  margin-top: -16px;
	  position: absolute;
	  top: 50%;
	  width: 26px;
	}
  
	.flexslider ul.flex-direction-nav li a.flex-prev, .rslides_nav.prev, div.nivoSlider div.nivo-directionNav a.nivo-prevNav, .coin-slider .coin-slider div a.cs-prev {
	  left: 2%;
	}
  
	.flexslider ul.flex-direction-nav li a.flex-next, .rslides_nav.next, div.nivoSlider div.nivo-directionNav a.nivo-nextNav, .coin-slider .coin-slider div a.cs-next {
	  right: 2%;
	}
  
	.flexslider ul.flex-direction-nav li a.flex-next::before, .rslides_nav.next::before, div.nivoSlider div.nivo-directionNav a.nivo-nextNav::before, .coin-slider .coin-slider div a.cs-next::before {
	  -webkit-transform: rotate(180deg);
	  transform: rotate(180deg);
	}
  
	.flexslider {
	  &:hover ul.flex-direction-nav li a, &:focus-within ul.flex-direction-nav li a {
		opacity: 1 !important;
	  }
	}
  
	&:hover a.rslides_nav, div.nivoSlider:hover div.nivo-directionNav a, .coin-slider:hover .coin-slider div a {
	  opacity: 1 !important;
	}
  
	.flexslider {
	  &:hover ul.flex-direction-nav li a:hover, &:focus-within ul.flex-direction-nav li a:hover {
		color: black;
		opacity: 1 !important;
	  }
	}
  
	&:hover a.rslides_nav:hover, div.nivoSlider:hover div.nivo-directionNav a:hover {
	  color: black;
	  opacity: 1 !important;
	}
  
	.coin-slider {
	  &:hover .coin-slider div a:hover {
		color: black;
		opacity: 1 !important;
	  }
  
	  .coin-slider {
		div {
		  display: block !important;
		}
  
		.cs-prev, .cs-next {
		  margin-top: -55px !important;
		}
	  }
	}
  
	.flexslider ul.slides .caption-wrap, .rslides .caption-wrap, div.nivoSlider .nivo-caption {
	  background: rgba(0, 0, 0, 0.8);
	  bottom: 0;
	  color: white;
	  margin: 0;
	  padding: 0;
	  position: absolute;
	  -webkit-transition: .5s all;
	  transition: .5s all;
	  width: 100%;
	}
  
	.flexslider ul.slides .caption-wrap a, .rslides .caption-wrap a {
	  border: 0;
	}
  
	div.nivoSlider .nivo-caption {
	  a {
		border: 0;
	  }
  
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  
	.cs-title {
	  margin: 10px;
	  padding: 20px;
	  width: calc(100% - 20px);
	}
  
	.flexslider ul.slides .flex-active-slide .caption-wrap, .rslides li[class*=rslides] .caption-wrap {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  
	.flexslider ul.slides .caption-wrap .caption, .rslides .caption-wrap .caption, div.nivoSlider .nivo-caption {
	  font-size: .9rem;
	  padding: 20px 30px 65px 30px;
	  text-align: center;
	}
  }
  
  .ms-is-small.metaslider.ms-theme-outline {
	.flexslider ul.slides .caption-wrap .caption, .rslides .caption-wrap .caption, div.nivoSlider .nivo-caption {
	  padding-top: 50px;
	}
  }
  
  .metaslider.ms-theme-outline {
	.filmstrip {
	  border-radius: 0;
	  margin-top: 10px;
	  width: 100%;
	  z-index: 4;
  
	  ul.flex-direction-nav li a {
		&::after {
		  width: 10px;
		}
  
		&.flex-prev {
		  left: 10px;
		}
  
		&.flex-next {
		  right: 10px;
		}
	  }
	}
  
	&.has-filmstrip .flexslider {
	  &:not(.filmstrip) ul.flex-direction-nav {
		width: 90px;
	  }
  
	  ul.slides .caption-wrap {
		margin-right: 110px;
	  }
	}
  
	&.fullwidth {
	  .flexslider ul.slides .caption-wrap, .rslides .caption-wrap, div.nivoSlider .nivo-caption, .cs-title {
		margin-right: 320px;
	  }
  
	  .flexslider ul.slides .caption-wrap .caption, .rslides .caption-wrap .caption, div.nivoSlider .nivo-caption, .cs-title {
		padding-left: 20px;
	  }
  
	  .flexslider ol.flex-control-nav:not(.flex-control-thumbs), ul.rslides_tabs, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) {
		right: 60px;
	  }
  
	  .flexslider:not(.filmstrip) ul.flex-direction-nav, div.nivo-directionNav {
		right: 20px;
	  }
  
	  a.rslides_nav {
		&.prev {
		  right: 284px;
		}
  
		&.next {
		  right: 20px;
		}
	  }
	}
  
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a {
	  &:hover, &.active {
		border: 0 none;
	  }
	}
  
	&.ms-is-small {
	  padding-bottom: 50px;
  
	  .flexslider ul.slides .caption-wrap, .rslides .caption-wrap, .nivoSlider .nivo-caption {
		margin-right: 0;
	  }
  
	  .flexslider ol.flex-control-nav, ul.rslides_tabs, .slider-wrapper .nivo-controlNav, .coin-slider .cs-buttons {
		left: 0;
		right: 0;
		width: 100%;
	  }
  
	  .flexslider:not(.filmstrip) ul.flex-direction-nav, .nivo-directionNav {
		width: 100%;
	  }
  
	  &.fullwidth {
		.flexslider:not(.filmstrip) ul.flex-direction-nav, div.nivo-directionNav {
		  right: 0;
		}
  
		.flexslider ul.flex-direction-nav li a.flex-prev, .rslides_nav.prev, div.nivoSlider div.nivo-directionNav a.nivo-prevNav, .coin-slider .coin-slider div a.cs-prev {
		  left: 20px;
		}
  
		.flexslider ul.flex-direction-nav li a.flex-next, .rslides_nav.next, div.nivoSlider div.nivo-directionNav a.nivo-nextNav, .coin-slider .coin-slider div a.cs-next {
		  right: 20px;
		}
	  }
	}
  }
  themes/outline/v1.0.0/images/arrow.png000064400000001254151213255560013446 0ustar00�PNG


IHDR^^�ңngAMA���acIDATx��QJ�P�aun��]W ���z#
���;)�!9r���"������p8<,��^�e^��u���mܠ���
������@��^�C��z�O��D?�o<�W�4NnS�qU9��c�Ua�~Y�S�F�V�����j=%i�n`�ZAOI9�X�V�S�F�V�����j=%i�n`�ZAOI9�X�V�S�F�V�����j=%i�n`�ZAOI9�X�V�S�F�V�����j=%i�n`�ZAOI9�q�ocw7�?�p��:��wW|�E�(@7�R���$��
�T+�)I#g�e���u����n[p^�x���q�^�?+8��	�٥��
N�ov��?��B��~��H��ۍW;�o�V� �s��2|i��7�e��,�oj�,��Y��ԖY�H���-���f	~S[f�/ �����_@�%�Mm���4K��2|i��7�e��,�oj�,��Y��ԖY�H���-���f	~S[f�/ �����_@��>_+:{���+�g��>�+Z�|�Sؚ�>芕���=�|*o��)��~~��+��W���8s�IEND�B`�themes/outline/v1.0.0/images/arrow.svg000064400000001443151213255560013461 0ustar00<?xml version="1.0" encoding="UTF-8"?>
<svg width="47px" height="47px" viewBox="0 0 47 47" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
    <title>Theme 1/Arrow</title>
    <desc>Created with Sketch.</desc>
    <defs></defs>
    <g id="Theme-1/Arrow" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
        <g transform="translate(23.500000, 23.500000) scale(-1, 1) rotate(-45.000000) translate(-23.500000, -23.500000) translate(7.000000, 7.000000)" fill="#FFFFFF" fill-rule="nonzero" id="Rectangle-path">
            <rect x="0" y="28" width="33" height="5"></rect>
            <rect x="28" y="0" width="5" height="33"></rect>
        </g>
    </g>
</svg>themes/outline/v1.0.0/style.css000064400000027533151213255560012223 0ustar00.ms-outline{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-outline.ms-loaded{opacity:1}.metaslider.ms-theme-outline *{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-outline *::before,.metaslider.ms-theme-outline *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-outline .flexslider{margin-bottom:0;background:#000}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs){background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-outline ul.rslides_tabs,.metaslider.ms-theme-outline div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled),.metaslider.ms-theme-outline .coin-slider .cs-buttons{background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-outline ul.rslides_tabs li a,.metaslider.ms-theme-outline div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-outline .coin-slider .cs-buttons a{background:rgba(255,255,255,0.8);border:0;border-radius:50%;-webkit-box-shadow:none !important;box-shadow:none !important;cursor:pointer;display:inline-block;height:15px;line-height:15px;margin:2px 8px 2px 0;padding:0;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:15px}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-outline ul.rslides_tabs li:last-child a,.metaslider.ms-theme-outline div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-outline .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover{background:transparent;border:2px solid rgba(255,255,255,0.8)}.metaslider.ms-theme-outline ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-outline ul.rslides_tabs li a:hover{background:transparent;border:2px solid rgba(255,255,255,0.8)}.metaslider.ms-theme-outline div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover{background:transparent;border:2px solid rgba(255,255,255,0.8)}.metaslider.ms-theme-outline .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-outline .coin-slider .cs-buttons a:hover{background:transparent;border:2px solid rgba(255,255,255,0.8)}.metaslider.ms-theme-outline .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-outline .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-outline ul.rslides_tabs li a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-outline .coin-slider .cs-buttons a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-outline a.rslides_nav,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-outline .coin-slider .coin-slider div a{background:0;border:2px solid #fff;-webkit-box-shadow:none;box-shadow:none;color:black;height:60px;margin-top:-30px;max-width:60px;opacity:1;overflow:hidden;top:50%;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:60px}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-outline a.rslides_nav::before,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-outline .coin-slider .coin-slider div a::before{background:url("images/arrow.png") no-repeat 3px center;background-size:100%;content:'' !important;display:block;height:32px;left:50%;margin-left:-13px;margin-top:-16px;position:absolute;top:50%;width:26px}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-outline .rslides_nav.prev,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-outline .coin-slider .coin-slider div a.cs-prev{left:2%}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-outline .rslides_nav.next,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-outline .coin-slider .coin-slider div a.cs-next{right:2%}.metaslider.ms-theme-outline .flexslider ul.flex-direction-nav li a.flex-next::before,.metaslider.ms-theme-outline .rslides_nav.next::before,.metaslider.ms-theme-outline div.nivoSlider div.nivo-directionNav a.nivo-nextNav::before,.metaslider.ms-theme-outline .coin-slider .coin-slider div a.cs-next::before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.metaslider.ms-theme-outline .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-outline .flexslider:focus-within ul.flex-direction-nav li a{opacity:1 !important}.metaslider.ms-theme-outline:hover a.rslides_nav,.metaslider.ms-theme-outline div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-outline .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-outline .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-outline .flexslider:focus-within ul.flex-direction-nav li a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-outline:hover a.rslides_nav:hover,.metaslider.ms-theme-outline div.nivoSlider:hover div.nivo-directionNav a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-outline .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-outline .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-outline .coin-slider .coin-slider .cs-prev,.metaslider.ms-theme-outline .coin-slider .coin-slider .cs-next{margin-top:-55px !important}.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-outline .rslides .caption-wrap,.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);bottom:0;color:white;margin:0;padding:0;position:absolute;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap a,.metaslider.ms-theme-outline .rslides .caption-wrap a{border:0}.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline div.nivoSlider .nivo-caption a{border:0}.metaslider.ms-theme-outline .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-outline .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-outline .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-outline .rslides .caption-wrap .caption,.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{font-size:.9rem;padding:20px 30px 65px 30px;text-align:center}.ms-is-small.metaslider.ms-theme-outline .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-outline .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-outline div.nivoSlider .nivo-caption{padding-top:50px}.metaslider.ms-theme-outline .filmstrip{border-radius:0;margin-top:10px;width:100%;z-index:4}.metaslider.ms-theme-outline .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-outline .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-outline .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.metaslider.ms-theme-outline.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-outline.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-outline.fullwidth .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-outline.fullwidth .rslides .caption-wrap,.metaslider.ms-theme-outline.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-outline.fullwidth .cs-title{margin-right:320px}.metaslider.ms-theme-outline.fullwidth .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-outline.fullwidth .rslides .caption-wrap .caption,.metaslider.ms-theme-outline.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-outline.fullwidth .cs-title{padding-left:20px}.metaslider.ms-theme-outline.fullwidth .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-outline.fullwidth ul.rslides_tabs,.metaslider.ms-theme-outline.fullwidth div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){right:60px}.metaslider.ms-theme-outline.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-outline.fullwidth div.nivo-directionNav{right:20px}.metaslider.ms-theme-outline.fullwidth a.rslides_nav.prev{right:284px}.metaslider.ms-theme-outline.fullwidth a.rslides_nav.next{right:20px}.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-outline .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}.metaslider.ms-theme-outline.ms-is-small{padding-bottom:50px}.metaslider.ms-theme-outline.ms-is-small .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-outline.ms-is-small .rslides .caption-wrap,.metaslider.ms-theme-outline.ms-is-small .nivoSlider .nivo-caption{margin-right:0}.metaslider.ms-theme-outline.ms-is-small .flexslider ol.flex-control-nav,.metaslider.ms-theme-outline.ms-is-small ul.rslides_tabs,.metaslider.ms-theme-outline.ms-is-small .slider-wrapper .nivo-controlNav,.metaslider.ms-theme-outline.ms-is-small .coin-slider .cs-buttons{left:0;right:0;width:100%}.metaslider.ms-theme-outline.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-outline.ms-is-small .nivo-directionNav{width:100%}.metaslider.ms-theme-outline.ms-is-small.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-outline.ms-is-small.fullwidth div.nivo-directionNav{right:0}.metaslider.ms-theme-outline.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-outline.ms-is-small.fullwidth .rslides_nav.prev,.metaslider.ms-theme-outline.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-outline.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-prev{left:20px}.metaslider.ms-theme-outline.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-outline.ms-is-small.fullwidth .rslides_nav.next,.metaslider.ms-theme-outline.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-outline.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-next{right:20px}
themes/outline/changelog.php000064400000000115151213255560012152 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/retsu/screenshot.png000064400000222113151213255560012064 0ustar00�PNG


IHDR�x|GtEXtSoftwareAdobe ImageReadyq�e<)iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 9.1-c001 79.1462899777, 2023/06/25-23:57:14        "> <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 25.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:5073A6BCC2C611EE896A988651F9641A" xmpMM:DocumentID="xmp.did:5073A6BDC2C611EE896A988651F9641A"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D5B64409C2C211EE896A988651F9641A" stRef:documentID="xmp.did:D5B6440AC2C211EE896A988651F9641A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>-]�/ �IDATx���$Gy>�U�q���{Iw�!�@!�?�`22`�1`���ÀI�<D�`0�
ƀ� e�r����avb箪�[�{ss{�w��;�$Ma�f{����~��W$cB��r�R�?w�)�h��*W�C�X�>+�v��?p9�qy�W��䈽鼚h���T:�#u�Xʊ?1U�0F����}n��]�I?�Xl����π;pv)l=c�kZ�rrLTJy�p%�q|��
�Au=h��[|ȃ���$eXK�{�����PBV�W��?Y�����5�n��Xm���k� Vr�T��X�����t��n9��ɜ�C��`^K��(��V9op��e��*��������f���̔���9~sx���4�)����@D����"nu�x��X���:	�9A6F�sE���w7�M���ñEHWv��a��k�����A�����l����o/�M"Y�ѡ����e)ɉ~5PJOp9�0��v�	{�NJ�-��-�rO�S�,�����yI���r��G��uQuK��U��OqS>���h�r��3����8�vK�a�T��}����22������*$+.�9���}�X���.:uK�N��!mV ��{��;�S��<�ؐc�eɣ�Q]I�-�9`����Dw��+E۫�r��Kr�\UDh�X��I�<
�e�^�
�unM�D8���Q��۸��rP��+�M��V8��\��f]e�t�j��xJ�dut�W-��Nj؁����\�,��c��d��j��T�t�~ZVy�<V��R�H�:4�͉X���n���2lR˭Ig�9&{������{w�:�<��]��
`�6�ɧ'�q1ȶ�?�;��2��G���< �R�(3�\7�[���`Tr+S�{p�Nzr�P�@T=� ��vz�H�.ZvK���P|;�f:>������{�V�<��X��Hvq�
WeH���%�u(���4e�\=A!�Rv�:j��0
��hT�Iu����b:$�L^���:����]Y@�n���g����.BF�#.Z6�k1^��eHv�<p{�����Ui]&�-')`�g�Q��#��y��.�'(��Y���[�t�j֡��t�n��-�r���)�C�t��
X�w�Jۿ*_�J�l��)Ȋ�c��-�r��q�۶K[a	r ��[��[V���GL��n��l�j*M���*�n�&`-�A[e���O��3$�:�������H�&V��� F�.�DH��MmHW׼�$�	�;k�0+W�n�.`e�sOQe79x:|��R�K7�K3��3���
�	�S��h��@.]�<1���y*x��l�o�9P�mq{!OL$��Gx�����[��S�h~ʣܸ;{0���k9�rK�X��
���99�T�����ͻ��Dөn�Z��� �e2�2JUĹX
���J{�s�t����'�,a������귂};�������&bǖC���V�0��cp%N��_i[�ª[��˰V��W�(�Mb-bc;�mק��Jb�Jb��%v��&��BPp,B���P�-���c����C���U��n�'n)��@6[��vA�iѫL�s3�0"K��RS*o<_��Z=l����Z��-�r?������6td�[b��kԏܠ�jQ�8�|#�/X�ˤǢ~�y.�CI5��Di�u
�[��˰V|�/�ut��l7��3U)�TT���<�*���i,N�[�.ņt��Z.�bL�<L)A)W�A�.#�n9�V���i�+���Y���0�4-S����Qd�����?��\LgGx:��~��$˔�0���W%	K"�A|�QCgz���ʼn����z��
�j1�ufK?I<Wāf�4�K�3�F28��2m�~'��T�[���G1���CsuIh��Km��,��=Ӳ�I]1���-�_��C�$B&D��@�M2�R#@��o@�t�����vy_�R�<—�nũ�
�%"�h>.!�b����bH�RS��ܴǤX0K����J��s	眱�R���J�s\E�R��t|/Q=��YDFeF�L`a�7�:4ղ�*Z&�að*i��d�62�hRHw��[N�$�%�p*����E�P'�g��
�S]Du�e�}��B'$�Q"Eb@�醤:���+��\$\2]ϙ��/���%����k3|CK-�;Z�/)���S�씨k��#�B�Yd�����n�XBpO�x����w�J�X�4�2Q��|]h��

aX ��k�������_�suK��,>�#�*Њ��/e�FU8�(�w��r_DA���h@�X�����f[�mk���#!ċA~�V�U����4o'�6}Ì�$V,,�E��2�)�-���F�F��t�B���mXc��+gV�)��	W���N(����ߐ��C&���i��3�2"i�!J�:�W����%���1�R|��V�P�Ry�_I��/�[qc.n�|��$���"��VB=΃$��@�r�>�044P�'^Td�&�^m&�դa���3B�7�T��G`A$[�D֟��ԎkcoFzI8�l9[�l!�h�M��Pk	� �\d�-N���b��\	�J�&Z�A��
���dy���n9��R!��7X�X1�d�_���jج����:��.e�Y�i�8iMMǓUÕ�S��(o���Q�B�ғf-�L�~�@�Ak�p݀�OGuO{�c�u���	�����
��=amCԛ���ʛ/`�Z�"�[oK�L$�fP��TP��Z��C�F�)��Z�#9�>
B���N-vK�ܗ��h|7"v�`S Fa��ի��}Q�.y���"ԡ��B3��8���T�'zb�l��BN��o�Ő䚉&]#��~��M;�t���ACrf�5n�[��эJmrbH�Xa�ią�"��y����M[Xy�rJ�C��hU�I���΁V����<�D�} `Z�!�cD8Myסc����o5����r�n9�k�� W�5k
�0�UZsSa���D��sre�hF�"�J���z=�g�"R����u�mد�
�^vK��jcn�%}�������.���/"�����+Z��y@ydX�AfYvO��k����"!�;���_:s�S~e�I�6���9�™)�#�)�h�^����e����:�)�n�{	��}
�۪\A�F�����0Tf����%�6��d�,5_F!�Z1�U����Э�\O�:�K�$�m�e��ᆓ�*�=.�us�zʅ#��c�-c��#-ЙA-�l;g�I̘aXf��S��RF�fS�RVS�0
2Re�Q�tH�Mw�n}��ʜ&��2DO?�]�zך��@.A-�i�tB�	-�F8�l�'R���˷F�&��Lf�;���H���E�n9���^{�������T�J���0	��Yw~�7�:�xU(�(���B��G-�N[��$����V+L���ձ�oh�o�c�]��y�KL�Q�c�q���	�l�#��E.���QHR)�L�sVmӒ4R&��UfE�L�4�ެ��w�&�Ԃ@s�w�R[kx<�LNh=�l��dd3Qɵ4* |#hH����Qy�� b�!=>k�$�]T;�t��9�2.�������"�+�'�ta�[N,�:�$�Xj<J6�8��Vï647��i�Q����T!�N�A%���A5j^ ���q�j�a�ۤ�O�!'�\�1����k�,0g��I���	w`k_���c2�8��`U�q�l!Of���B�h	�����\M0�QO��}�L*�e��)&���v���ME9���3R
�x�&1��A���%b���V�x�,b�A,X���b���v-�[NF֊&���U��!�9��=7�75�[�qryh3���>6}���FCc��+��DQ�W��\�^���nY�*M?�6�A~
��������%=θ� ��m��F���CbH@)����`X�
J����I=H��
S�\$���Icv>?P�z�qy0hJc�d�Ċ�Am�{.4&$('R�	C[m499n�R��H~y�<�H�ZM�w[7��[N(`�q�)*�ϓ��v��V�4JLj��#M=2h�L�x��7��H4C��fFL�{�&��J��&<a+��1Wσt3�5@��{F7R���kT��g�B~�P�SS�b1YΛ�A�X,��B�]��A�8W�%�$*o֩�&K�r�f��d�����s�fC&!ai�� �%���%��™��Z�^�|��c���Dw�[��^�e}3B$<ѢDPS86w�Ȣ�J�ҩ�ɨ�ͅΫl�2l��*�l��ɹ�l�j@S��T%��<^�����)��N�%�@�c�貹��z��=�Jj��Q
K7�h�ږNlI� ������E�D�T+�.����.5Y+�y�g�M�Q0�T[-^�V�*�Z)��\�3~�z�u�W�Ҷ�U��+	��$���`�
|��q"���0g������$f�^����֩�&��e�5h�EG���
f(��u�����;�홏���ەf�i셎i,ԫ���an����;Á�r^n��P�0]E�.]��^̸��h)UJM[�0�ۥ:7,o��5^����4������\�8y��-Ɲ�Z��뜔tcUi�������J3����
�r�D���:
�LZL��Y���3q��ז����x�mZ[G�A7��/�0T!�:�%�����G⼵cǎy?v*���͍���-���
#��p-�[���7г{�SJM�[k�
,�LےcL��H���:�5M�w|��r+������Cg���q��~��8^̅T�h�R����,_}���N��!��%�1;ݺ��-'��g�d�f�E�%U�U�Z���);�0���讻��x>�=�u^��i�̬7�Ѻ�V�Z/�Jkz"�	'�,��k��u������F`�j����$`t:�U�3��$���IyS�35K_�L�X�ߠ���\*�%"�q"���f߰]��yn_dQ�S��"��^�m>3Q�L���i�U���N���ɇ�h�D�l��,=�@�]L�C�0�Z��-'��P��_%}���wi�R�Ğ6��Z�Q�d~z޽��d�,Ұf
�^��)��:53�0'��:���0oP��T���(�}��<S�y2�\n����}�g��D��?�Gԉ�E�N�]k�rIT��Yi�q8�2�URFU[q�/���J�g�]w�AӢ�^*j뷲�.*�q.q�e L���+��j��dd�%8���i�m ��ʨ�E���:(� �iud)u:�VK���ӽc�kY�r�|XG��N���"�Ӣb�58`��Uw�9�y���I;�fg����_6Y�g\O��`�:���R�
��P�b�uo��0Y�ԩ�~f��v�5��;/Şj��@��R[zAszڜ��=#�\Q)�&	�L�K"Y�A�R��^6-rCC�S�ʝz��ۛHM�e���Vf�sV�_��ˢ�ҍO�MI�@�lR`ŀ8�AvOb*�M��-��$�r�~��*�;�.}"���dB:�+�v��;cv�`s��z�'�44OQ�
=.�SRs��s:��,s�1C�2G�j�W�Q�nD�c�w�̭���&���V���ȋ�F/�D1�ٿKE��:���L��p/�nX�\0<�k�m$IB׬<�|g�Fa�	Hٯ�:��x� QY�t�O�d��j�u��ɡ��0���r�<�}X��y���0+M.z0x�24��չ[nh�qS_�Ҋ��دz,1�X�x�ޜ�oD��[.�'ݖ��iD�lX?:8��ͅ�s��j�1�,�,̔�l�c�f�'
\4��f(�a�"��0`��"E���K,��@ՈmZ}��9I-)
�V.?:�۴�(��R-�!*�*�\�T�j�O��H�����6Tݏ����h�)��288�Z�����#^r�Yg�J���7H�=��{zz���΃O{������?�yΏ��ݦM�.����}�sa����?���o��K�D�/���n��R��X�Z��yIJ�v��r��C�xvf����d��/�p#�
i�}mn�5;[�k��\�P��\�͇^ԪDƺf����\�sZ�I�[ű=�7����b���E/��K��kz�:��G��z��+�C�pV��I��д�b�<4˜	�/����%4�Q	�uq"	L:i��TqY����3�_K�8��,]��:�� N;�����w�Eі-[���c���/���7n��	X\p�������X}�C1�����=쪫���?x4h��q��x���^r�%_�җ��j��(�˾T��g�޽��⣿��}ٰ��|�;iBb)Bw�R���yI�Sߋ�8(=L�j����l����v~dd�E��F����h�j^�c�XOξ}�>٬q�5C�/qsqhjIލ�~���
���C�IHB���u�t�(���d"SЖP]iع���S����|���_�� ?q��Q�@Qe�J��Iy��	����hr/�\.Kx��ކ�x�����r�-���/M�|���l6�dY������FZ�w)xֳ���������Yxoo/n�~fo�}�cqß��'˒��&�z?��OqU�t�����x	��s�=�w�����Tv�E]400�a��֭c��۷d=��]�Q#~��O?���g�
�G?��sss�-�4�C���ޭY���O~r�VkB�~����U�|=ŝ�n�
��z7;;�����A�јl�ǀ�aX� ���6����I��v���jڶm����o�}�Ν�Mu<��je�|b|XK[���w15c%�67,�I�kԵ�5�I��:��ki��JY�e�'w�����Z�0�N7�]�axm���c�v����je:���|?7@���Xz~����l�{Kv�L��HZ�֨��yq�r��b�5l�B�$W�j�1V�qj���]��	e*j�$�R��)X����j�
_�Ś�S�1B�����q��ɴLMm}�`DMf[��N=�K����B���ϐ��L�����o�Hڶ
��|�"�;�s�;��~�
�����}�W����B]�%��w��ݝ�\��w�s~~x�;���/�Ԏ����/��/~�_���׾��͗��e�u��?��?{���N�'�'��;���w�aϞ=8��G<bÆ
��Q�z�y��}�׿
C-g�q����λ�.�d||��f����Z�U��� mƷ�{���h�����������˿��P�z��_=�L�^v�e�y�{ڰ{��磝P����P���Ozғ���OLL���\s
D"*}�3��6?���ַ��6�I�R��o�$��o�J�� \@��Ӕ��Ykq��k�D�Z�ن���!�ze���Z%�����H�Ow㺠��tX���4�M�9��ߠ�$���U=i�-s]_~M/�9J@%R�XNʸ9�4��S[�h�jd��p�����

�"��"S[�qA�NM�,_(gxz
��
m�AaQ�B�E�"�D���8��z�>��;W�%���@�*�H��XU �ɀ)�[��z
�z�Ӟ���OP<���ꓟ���͛aW06�9.���?�Ӿ��f	��.���
��ﯾ�j��W��o�g������rR��?����t�MOy�S(�{��p*�����|�}�{a���z+�Ec���/|!��'>����j�2 �A�~���w�󖷼�1vq�|��q k��A��m۱cN��j����9.�ހ��+����>8ѧ?�i����j@42����~,���o�뮻�J�k��B��/�8:�&�B�o��FpUT
��A@�7��
%��k_��jdG�t�Rt�r�OL$�ez��Ā&-`���pM��$��Q�7�h�o�}#[F��=�t1PrL�p�6��h��J%�p�&+a4�hE��8�����n)�9�[��Zs v��1]K��V��:ȏ.��u�>���aJ\l/X�O��#�Ԏ=�ta0�&e�I0hAjI��$eZ��`�1��s�7J���u���U�W,�}ZT鲃mɕ<��Nf"K�'�Dz�`r�u�Z��s��dsO�� 1�.Ze�ș�T%*/���HW-9��L�/G���&����<I\�V�#q��C��O��8c8��a�  ,�`�/}�KL��?���������%^ᬳ`:0N�\�SL�o�ozӛ���#�P�����y�+^ @�6�
h�oq�ଳκ��;�V8�VA��ځ�h64ח��e��P�VQ�뺰|�	���+4D�+_�JT��@C�z�ƀ�|;�זi�N��?��}|�1��P|۷o_�;�͝Â�~��_� @�~�3�k����2�	 ���.,,dm�}Z�ZtG�� �1,�'�a-;���H��A��u�l�v'���=5�M�S{rZit 
�l�n;e�ŏd�w�vw����BZ,�q�M���@���\"��8V1�q��ɝo�o��ZT	sYS�߶6�7�l)�f\�=??>W�v���%�nX{��=�g�����=B���\�ɭ&��b�;��Z�C
�+�������⇓2��G���c.����*�4�h�n�D�Z�\��M�T�iFYon���Z1�w�i;��ŒX�UGA�jۡ�78"����'���iU<�PX�n���:� �%�x���&���K/e�d^�%^��!�y[�,`c��k�\r�K^�O}�S�4��i��D]�6����6�3���>����h��0".;���<"@11���ͣm��
u�"���
]	v�fU�<��%���?P�}Z��M�Z�
�zF�P���E,��'>�_��Wm:��hG_�;G	(��m��{���չ���A�?D�wL$ݻY3�fE-mz7����jL޹�$�l�rƦS�>����-�k��;o�y��[��h���#���7��}����y��3�m۲��
�.�����<e����PI=��s#�М�m��_���ۉ���w/�zlU撱<���ʎu�h1UTP
yh���2iK��{T�j�D�*U�e��,��@3��Bق��pJ�ԏ�vB�o
>&'1��AD=Y�p�UwUjs"�=zϚ��ߦ9��3
#ً4�#Y���0X��hGwU;�c�`�
�':�t����:�Pf�_���.�5���`��뮃:��3�2���4�9�j�rM711��G?4-cU�_= �gB�ܤ�J�A�"� @@U���V��	���#��+�ذa��_�r(>4�ꏫ���	��Je��Z��@ad�{.�&�|�e��I`UW]uh&xz��;{��b����?�yv
�緿�-��_�:AG���6n�i�&\��f@�aH�X;�evrV���_�~�y�k^��
�qt*���5�����wo;��X�|�$&"���P�+S��7�[�E3*���ؚaGF��3hVܽ��:�XU,U������i��sLv�����ڡ�0^�pl�A�a���
��z��-���J��w�w[�&��B#���q�p��T�t�
D�'����|�I�&i�G����@�E�}����
���RIx`��>��=]Y��3@�r\��l��]�Vś�W�3�5š�I�t����Gm�z���t. E�N�8��;���e7�Y��l�v�-Y<��ȁ����Q�qC���v�7����ΰ`N�=@9tY��~�ӟ���g�MOOC�@�����g��!��'`�}��m۶���U/x��5�����'@��[�>��φ�A��V����߁��,۳�0N���r�ȳ����?��k���G2����B%���y��G����x���N;
�C�P;T.��۱cXd���[�w��<�
5�#p�ӟ�t4L-ӧ�BT��@��\�]�(�mY�;@����dמ��@:|� `X��V�Qę���͟U��ނ-b�12 �Y���P#��4�q���Љ��Wj~Mq�H���	�u{�'���}1ǩmq.xh���31+��n��8�
ם~��NB��,��Z\�.�u�ϱ
��В$�ϝ�C��� �Z!�k�U�9�f�w�R��vW�UG�F7��bB]W{̕��//�3�&�U�	DfHu���M�r-�2��+S��j�U����D��l��f�r�.��)��f!S�P�l�kI�`	���7&����D3ib�L��r=���-�B��Ns��8{�
����JǗ�a-��Js,+?zݗs�k���s�����Ǜ<3?X�F������Ĥ�	�%�"��&f.'��<�9 �y�{�0 Hgx���h�1[7��ЗN�5z���at����<z�w{Xp�=G,��v��~����H�<K�p�����1a��:���e0�&��̙��`7��`h=k�l��W�p�2-pP�Z�΢�'gy�V_�2MB
i�."F���В�9or���x�ugЅ���m�Yӟo��ۉ�1���F���:I�
�7�I�@��|'�Ը��	2�����A��;��8��/[�Q�p��H�~�5��|c�7#���\��7�4+*��vYt���(�{X:}m�ʻ:
�;If-�d���)��\�iÝh�i�g��/~�÷!J�G���
��k߻vY-�i������^C+���oE7�ʎII�&�'�!S���c����W��z]�Ia�i�n�0И[�M����r�f�f�f�*����`��`oO�$?��&�BÙEb�����7�f�1�����PŃ����[rhS���|����#FBC�.���[L��P���qӂ0����F4-Z�9IԴ��g��ԇIj�t�N	���f���\3�s`����VR���j�X����)X)N���qh�n7�(0��A�q�+�܁�m�%�9�a�1�|@�94��[��᝜Y4x��1�E2������@'1c���x�$4�f˘��m�>�0�}�_�;V.`d�ըǮ�ܤ��j"������@��m�-���V�)q����y�ꋄ&Z�3HIl4[��f��K�N?�%�|is��;
���:]�Lo�~:˩V�֪�%����;Sݧ[r�ȖB�O7�d�x W��H��꺣�4��@�~<�V��)A�.B��y�9ߜ�\ki��Fjn@�%+�NQE��8V�~R�LS��Hb�}b�cz�]ߛQ��l
�r/���C�4�K@u�H����L�L
��ug�;o�+s4�F]W�[Z��$T�o�[��
��� �M��	/�%O&6�w�[�T%����G�<+
�o�n��޾�B��ٽ��Y�)�jW��]�о�]n���I�� 4��6%�	4�'���$N= P�!�^h� ד�?}�5�k��yj�Z4��:�/�ii->56��tJ�=g�Ԓ��H�3�(p6��Ƈjяi�UҘ�OA���ž���q]�u�!��<gZy��;߰��u�J��YЄ��1���)�-�Xß���$Y�.�M[�N�\��|\fjtygM7|��[�����ynE(�4N'�b��t
�����<X����¼�Q2��I���y�$����F�tu2��q�
F�hb��f-=o��َ�3��	 h܏W��#�\�����k
0��O�%st���έ٠�M��V"Up��#��4xOt�E�4��3,#o��A�I�����V<�6ߪ���Iolf{�^/�#���R���K�|)W�*�
���@���7O�Q�J;�ғ�h5L���0]�:����Z�ȋ1Z	�C4�F���|�\p<�9�M�c�Y�ͨ)"��L���jB�H�~ep�5��d��[�Fj��,��N��<h�~���zJr�C�s�ʾ1
%�k۵ �	B���|��8����@Rj��\.P3���0�W�9�|���� Ehs�i��&�`!	Z\�		茡��
}tt�)=z�̋u3�ET�=ݤxb&8���9ߚv���3ʼ���uk��g�ĭU���]44���\�jS�h��D�e��{�ᤛT��^��8�vR�L�\0��,E-%5!�|ֽ�fX!Ȣʻ#�㺭(!6�By=1M���IeBn�5Z0�N��m��rFU�� TOw����U<�J>�ݵkW.�k6�'"��h
�tooo��Xi�QK'�}��9�r�V���4��㻺��b:299yhO-��W�կ����������d��h	�8I�0�E���a��Ҙ��>���cd���#�%<P�T$�I�@�p�ы�����YPs�u�����B��C��,,�I��l���0���#A��rgm���
?��vk�"�,41]R�mq�VF��Vg{�+;f����l��t�]L��mƳ!o2S�@
��fI�4ݸ��q͠Y�f|وy�4�`�r���ӉF�A��u��W�♘i����'[QՋ\�w��PM{�d��.�����5׋j	FF�9v��-з�����QhiD��,�<�8^�'s��o���o~���v�k׾��oTMMM������:���b����;wf�%/y	cj&��/���^{Oش~�����΃o~��'��###�zիn���V��䫍7��_��7ޘ%�8�f�֭���'�a�(]��Q
�J�5�GI���n�<�˃�ԍ7M��Ѫ��
FD�u/��cL�y�m,��ѳf*�j�jK�}��)�%H<��\]�k�$�(��/��3��{�D\�{�8}�C����lc��TRE�Tp������R&a���t}l�܎��d�y��,iiQH��0h�\4y���(f�V��4Ie��f&0���K�5]@N.�+�����k����y>�J�ğ�M�6f����AJ��4li�4	��n���QTJ��������^+�{aP�$Zo�����O�ǠW�)�䗖0�K/�/��~����Ã��YX��FWg6s���vdV��l-N�"���)��i��Ymf�s�%�+����?�y��g��-L9�>YJ�v|Ӓp�.#5��#��?��o}�[хv�b�-��'[�z��И,��,P��@;;Eg/���?���?�)����]�:���E���1t�9���{�җ}�;}X�L
���b$���Mw��3gMi��g�l��~����⩉�m
��h��I�N¨�����ߣ��oƔ�}�5�5-K.�;]�YY7��W��`mf��Ie.�ZT�����~�=��k�����,R�3l*|+��m�LEXx������Tu�I��l�ֈ�a��VAyt�p����Re��x�)o�t)x���Ő� N�ވ���}�Æ���M����,Y
�	�ܠ��Ny�
�p�AX7L-]Ƭ�0��
��J�H�T�T�I�gj�b/�s[�z���J�|OX��t�V(�{���M�6]v�exʟ�ԧ�������^�җ�+����R��'<������}�c��^x�s��\�u�]��o|V��<�g��?<==��h����0���7_�����'jX��w���.���^�:���ފ�;C�5n��,��_��_��׿'ÙW_}5�SG#q��x�Զm�>��O��ͽ򕯄l��~�8H�恒�Q�N>�IOBq�'?�ɶI���^|����N;
	z�_x��w��W����?ؽ{�E]����~��?��ϖ���?�b�n��/~�y�{0��Uh緾���3��_=�J]y啟��g0t8���<�K_������/޼y3T�mll쪫�B^���0n�~���At
bX�l���?��={􇏶]�%q��s�0
$C�X��2�������HH~pd��O����|��_ܿac�����풣M�`O��Fr��'�5YdhrP��E�3wRW�-�bA���+�;���1�k�bl9u�3����O.o:�s� 䔙�z�
uF�.Za}�1����U��'f�,�fC�o�\�K�U��]�۷On�9�k���\y�`R�H-8�^�Q�k�(𣠡�X�h�8�:�.烩]�O6���z��MTp��v99_�����2����7AЊZ��T�5Dx�#���X���U�:ȡ�xïNVw�=s�]s7�-�VoMs���}��������������I�û����Gox��h�S8��a�0p1ɷ��m���_~�W>���'�aZ��x��w�y��w��������ڧ?��@�O|�`Nǁ��V�T�)�pC`%>�[��.@k�Ї�&Q�H��O}
�w���8�+_����@ܱc�?��?����:�N`�7��M@�[��l��]�Ћ��%5��k_�ZA�Q{�F�+T��?��?�@I�͡�sp�����Dcp����~��_�&����g�G��o�v�-�<���FՀE��p�9�`l���|�?0\�'P����=@<~����'���}�k�y�R�}�{18@.�	y�׻ޅ}?N�e�v�+9��k�O8���L&;<@�͛��=ž^�T�wǍl����uÈy��\o('�ش�H����
?�Q����h�[�e8�K+�C�O����~q�;P�M/4�y�XR���NU"���TI�������Zl�v+ԛ�f�[i���A缙FPN�D�2T�vl�0uf�P���Fx��J��#Iy��ZB��?Ի�`�̡��
q���F�"`H��P�[�� i1���4�va��a���pS΍�(lE�R�q7g�ja�ȖfS����P�d��N��>��'���hÆ
�F�ƍ7�Kƫ�a` 0~�*���O|��~��k��w�����G=�Q�;��N�?�vs�)������o߾;�3�M�կ~\���O��_�҅�0������A�2�ݻw/�Ny��������n��G?�*`�� M�*�*j�	���[�{�w�>hjٹs'�%�z���i�2���,Yx�@R�`F	��f�(g;=i���������/�iO{�w����N6u8�г�`Y�v�>�+�ܚ��g��_����i�?	���[a0������>�_]������H�6���4R�+"M膮V�p�(��DR�F4�02m�Nz��b��0G�;=������J�6_��ggY�u��
	D�馔z�L̚Ti�r��6���\o)o(y�x��l>m�|����t=(iɄ$�Z���X�<��l՛�rwYf>PI�m[����y{����A3�H��UX#�LKi���$'4�?W9���]K�1�Q"��*�b'��ă�p��m�S��L��H�&��{{q�͜�̗m(I�2np��C]�n��&A
pB�u(�cÜ��V��I8��'n%��t���Z�D(�45S�%3u��]خi���y��h��\��_�c~"1�m�^�0l��^�C�)���%hLfXǹ뮻�K2G� .l���,��EA����Xc�!�R>�8�]9�9�A�k���8�Z2[���������d%)��#�H`dQv�f�+����@m�(�e��{�NۢܡiA������p�ߤ��Q�	m]��pN��@h���d���J#T�9�8�v��C�s�Y&S�j��n�N�3�
===Y�/��?��?@BBB���<v�u������h�4�Jj':��8O��u#CC�e�e�^�+���V�w�f�2ߚ�v���f7�jU0�x.N��u����Gg�fZ��-��_\�n���}�Cg�1��|< u��`�Q��2P� is�<�D�ɸQ��@�h�̛9���BO5i�AԬEf$���7��c�C��"=�
UHӓ�/�b!)	�Tk���Inr�?32rTr�g�frI0s��U'g�-�"�k���P�Da	�%z1�st�G�*|��=\$�Z����RN�3����'��̢�d��˙�}���8&�Dq��vt� pA�t��]� /��o>e�',h#��k�x�a	��/��h+ N�;�q�{�7��
-M��cci��׹����`R�k�R����f����P�����ɯ���esss�[6�z�8@�n��SO=�
�
��5���}��F�=�]�mր,�P;�W�_?;-[ �8f��H�e�O���>��hy{ڡ��ԧ>5;/���^�3�^��A]J��w�o�6~e:�#C�Y��v� _P�Ysį���?�?!���?�ܣY��̈́g�K�w���n
28o�)�

�1
3.�K�
��Q໳s��w�o�Y�]X�-6�4�#=��W2���o-o;�w��ѭ�
��+����P�����8y����i2A5;{O4ъ����B�j�	
=/�,��r�?f�>?��xF�b��p�:��s���T�dsl�CZ�H3g[V��gtj10������st�^Ӌ�����i�VF�i*����
n�j���ʋ���rG|oꉐIk;l�Q$+�0j�^{sd�Ӌx���6DS=n ��8JL3���L3�	��Y�� �,��#�5������722L�	������?����_h�w��]8�����C�����&����X@�,�V6V��Q��X�E���%���N'�1�Sh*.��"���/�����~7kI�K���U�z���\T��^0)47��%o~�?��Q�e�4;
��ozӛP/�]N0C���j5��?��?c܀���G������bx��Lqn�f���́)���g�/�����:�WKsѴ�3K�����Љ���SSS8��o;~��k^�t��AN���*�y���>��z�[͠ulG(7zVô�w��p�0]�^�'�f���аiY�0.�Z�Ā����s�ޛn��v����G� ���, \���>�Ϟ<zх���.znXwg���9�w�*(\-�S1���h��5�o�uþ���!'�+�D�9���Vް��\L�\�V	��(�Z��6�)"�1�T4��
�E�עvAE���ߚ�N�t}���0�9�
���$U݅�_sc��-��[o�[~�k1P5V�/7����0P�Ĩ�0T�фI4�1ޭ8��Pȕ�9y��k��Z��Ӈ��w��r��OH_ϚBa�d�A�CS�-��>7�=����/}隫�~�1�a�ч���6mƒ�g�h͚5�"4�6��y��A��.��2,v#�kLaɜ:.�ൟ��2�E�)��̤%l,�׿�5��p�4�9�3333;;����AU`��]|�Ũ���W��j��%��\y�0��	�q�i��&h*`�i׮]����3����"���ԢG�b��,-�BP�W\�mS811q饗�ʽ�կ^�>�	O�]{�hF-;C�7.�att���Ƿ����Dr�֭`p�
h�E��M�Q�/*��#�]^��h��3�̒^��h�
?Q��-0�h�L�͊"J���K�uoO�;04����%a���[�8~�M�w쐳z��I��)Fr�î��s.}��f�麭�zЂ	�&����%���ծ3TW�T2
b~�ƻo��&5[D4����4����뎥Q��Ӄ�W�#W��>33U��J���Ҧ���ၵ#}�z֕�*
�)b���@#�3�z'�����H��	"�pt �C�T“�C������\sn�9
�
x7,�����k�E%�z�)��r��9D��ԥ��\o�4<0\��r؄.X�%$�}�5k�Nc��i�m��Cw��'<�>�n���ꫯ:|�3�Y�\p���	�{���}|3���ѣ�Bl'���
.�Ұ���E�2Ù��Z�Q���==�R�X*ڎ������}9��m��t�ؾ�r���sϺ�Ϟ���gnz�Y�Dͦ�)�h���K���%a���2N�Z'tH�/	@gTVBM+W�dz5%�t���\��X��@rbE.x���׌��?o��������>G/�P�M�2�^7CJ�d�2�"�P� ��xqgF�V�yǁ$`.3I�|�E��D}�M�>�95��1z�v9�`�R���ن�K]S))�V��kB^��V5�����E/�b�38ؿ��_c�9)tM������G�q���ڑs7k�t
�e��:�\���|�;/��n��G?��S}��u�2!C�,=>KO��i�z�,B�i�\�z�Qsk�i�J�}�f�`:Nfm�}[N9ձs�Z_���n���m[�<�������j�V�Q#oZ��2�-���D7y��l+M��$�By�*a�ɛ��D��z�zs!Q��(9L��(PqP�J̵�kF׌nڴe햲3D�\&�9w6�O��)S�-A-:�9���'u��P`��5�܏�/�:*�!
��E԰H��m�tl�0�[�7
��T�sS����<>Y�e��\��M�)Ꚉİr�K?�"�L/oC�ڎ�f�\^׷����|�X�� �}��1�s�n�]0� .ccc�$�k�9i��
Z�'2W(
�+���+���vm;6t��^�153����1	�g�0��uj��Q��b_o����73K9�-b�N��{@h-�@+Q�hy�z�m5�HF\�*�J��8;�4��WwC/�d�ɕs%�oz��e�Jo%�)���G6����S���ɒ���,�%��I(�4��":�U����T�B��t�F�P;�0��+�"@GĠ�vL�������^�)ZNO���P�з�5�u���[w߾gj/ڜ�(o�U�S�D<F_@����DW+	��&����˅͆6�6�Sk}���mZ��Eڹ6�Lv�[0E?T>tj�4DE��IXJ[ ~D�t*�.ʽ%�<si6;�P�2[!	�0�@)T4PL�ܥJbD+�\0#/�ʲ4��\.�[KW�
NEm=F=�|��nN휛��u���$5�E�~ңT(+'�8X4ъ������k<�����-k�����ў
%�����l�֌�)!�r�ϙ�TK�H"hD9�*�P�9��YT�s�T�������%\' ��s��|Ck�p�HIע���z�5��%�(�oyںSל�{㮛��]�U�T�f�U�3�M$%�P�J=Fؔ�a#n�>kX�M�5���jOE��yv�>�*D�Tk�I�F�^��[��]|��au�B����䚀�I,�����0sej2��9�!�����i��a�F?�����T%٤�a*C�
b"��ew�a`���G���I��A#���\7
p:K�rv��O&��3��oj�$�ֵ[��|��᭥\���;w���=n�o���L�%�Ӵ�z�i;�əaHx�=�I���:������J$͗����Bu��\��Ò94Pp�P,3
�n�0��[y�!y�Ӷݲ�α�=u�*(��{N\��P��a�*#M$~�1��v���GA�گ8��D=J�^��j����:N��%@֥i�r?�4=0ko�׎��sb���(IbE��BMm/�u=)��ڻ�e�M���q���<x��D,�rF;�La�D��$,f�Ҫ��Z���}�%U�v�t�gz2�0�� �HRP1 .
bĀq]���*��sZ׼.�UP���i`&��t������s�/�$�������u�N�s��[�{�|[V�|1�:M<�!K��"��>b
�����t蒁e�#m�Tk�I��u"�����lwLI����5�Zf&���-_R�A�P=�j��&��i��Z3�ЩF�e�L�I��cM+�{^h{��*���d� �AyL-��ٮ�;�J����)�J�Ł-;7�M�5ZMǷu�4u��!��v��	��c�G��9��W���8�u�$]����u�([	d���`�r�7$�[�ވ]t����}�@��=���^�~�#��^�|�S��T�7��M�X|��N:�u�[n��y�{ޏ~�#��hѢ�|�;��s�9���*�r��3�<󪫮�=��>��?�0������ۛ��x�dc+�R���.�!p���A�#�)e3@�A�K�eh�{��R�4�e�9�Œ�3͌nX$�(�1���nV��]/2i~;i%nQ�2Q{�C3A����!f��\�l�Pa�J���D�=>�<r@,U���|F��s��ܲqzǤ
���B6
V4���sR���	�_�6�dZ�*ʆ$��='�L�B�c������W���k�ݚ�~�	;����×�[<0zۆ[C?�PW�r���2B������@��g�rY]ьD��9��PT��TN��dz�`���`Կ�%����?�mW\q�A�%K��>����Y�^�?|�:��_���t�M����G!�cq6�_��`�V���o'''� p������۶7m��H��=��O.
�Ї۷o�)�s����g�e1�U4�fP���'�@���
%Y'(s%��={�qIQ����X�r�l&�/Xfր�c.ɢB�(,S�y��]��$��f�H��j@�)����4B,�204�|���nݛ�:1�ulIqe͎<UL�9A2�@5,_�������Z�8H��Z7�:(:Mc�\�&+K��Y��ߨZ>��OYwhc�g��n��8!9�䲚�IQ :.�����n�L�E��\�$}|6W̗���9�8Ӵ�o��t2�ف���ZY+H7�l����t�m9�:BRT+ԥr@N�p�
|�p��M�#�C�@�Vߣ1���t���/|a�����@6��N���c���Z3���!\p����ر���?�yo�����3�8c��Ϳ���U��@
�%��^�l�q�Ν7�x�.����nr��g=�Y�{.F
?��SA�n���
6�!I�}��H0�g>��b�?�)������ӟ�n�����9�qcwn�9;;�
S!\N?�t�j���~@Ák�]wz����K�.����!�QG�f͚;g�]�j��ot��~�3~��?��#�ܲe�����~�MX�z�=��s�m����>Dcq�	'�����_�ђ��Ը��QN�\�	e�;�8��.B���/.��<��~��~ǻ�Ba��E�"),�1�GA>�<�������	�E,E�ɍ%@%��!��|���r�|.�`�6PP=@�*�Y$I%_gY�(M�qN�OC�P�8a�b4O�ǡX4ˇ,?lͪuY�25�ܲe��L���'k�N7�I��.*i�mK�����
�x�Ȉ.y#*[�\�TUh*	j*�6��`W��Ur��q}SMM��*���E�g���⒁R��ش_"�B�g;I�#���IR)/�,U���� �e��C#��>]��*Nj�H�4�`NW�f��J�4�ߗ��� 7ړ�����)K��JaˮU3A�z��JJuI9P�Ô����}�=W_�ߏ�*�����r
@
�}���}hF�����a`�'����>�]j���t�A-<���<F����@=�ç>��Gq^5�N|�a��Mo���iw�}w�&�
`�?����`�\.�䒓O>�P866633�|d��Ũ��C��r�P�
7܀���]�z��5 ����8�iO{��o|#NA'�n�X~]4��o~3�.q�i���k׮���{?��O��8�/})�C��;�<4���oy�[�9ht�N��E	�{"2y�X�0D�:�N4�t��Qt5:݋V�[��<z�k_l&�,�5:����9�]x�7nD�xa�B�/�� 	S�P<��R�?�3�AAj��:Ơ�h����$%��
�H��e��_�\[�hj&~NQ�Y�/�r1Ȕ�]m�G���B�Ū��\���N˳
#�W){a��v\ϖ��*<���e�jRn�x���ģ��k'�b�iE����)�:�L�I+��rC}����/Iy=Q���ѭ)�卦P�)E�Y��"U23��ف�e��S@6M��z�e��Ʃl;��l��N�%V�E���\��
B&/9^��q�`p���E��I�o������+���4j`�:)cE��F͝�ݶ�������;���j��b"���:s�ev���B}�@�H�����8�9x��{��G���/��b|~�{ߋc0~0�@X���~�=�����}�v�P/�%���;_���8b�}�[�¹�)��a]���~|�� TO0�7�b�P��_��W_��Q����m@@�>zn���׿���
8�*���E/����+ѢO��|p/F�^端��_�׃N�5���j�@��T��� �)c��}.��	�y�K^�1��~�g?���}�{P�@U����/}��HTU½nP��/��FFF�V�Sp�_��/�����.�h8�@=�Ds���LMM�F�6����G��i���V/��4���:.��M�io��ɭ% cH�=��4$	cCi��z�;�R�sUS�y��D��T7�G��C�
�ș\�/�����t� �T
G�9z��!�/��U����|�HL�-Q*d��֛�vgVR
�|VKd=��>|i9ƵMCM��ѬM�����}Ϗ(+4[%��!�f \dj���L�hZhH��Q0	0�$�2]�VP�Ŝm5�T]�WZ>8
U:(*��1��nשM�C/[���J�`�:��ٙ� 
��h&*�n�+JEO1$Y���Tug��}�wc?XԷ�ʂ*�JI���G4'��1��úВ>���S��=�Mc�Gx��8�� ��:�3���	
�
p�02/>�c�{�xh1p�2
C	��^5 ��*ݽz�#�<�H���/��V�qh�V��|���w�C-B�v/pn��5���|'��™2�
�%�$�(�-��*E��/|>��_�@F�\%s��ێ�U*`��|8�o|'��(~��_���>��O�y�����<�*w�SxxE~�;��\X…A
����^���o職���;�2���kH��� �<��@�U�,�,�f�S����-qW(�@��h�T��MP��j�HR�J��CRLfQMT�#����\���@�؋��|9��bk�ң�,;1t���I\1_.��EQL&
J�\e%����b]�0�ud(�DvܨV7o�7��V����t�<7��$�?)�ʉ&�ZV6��Yg���[V�T�73Yl1�5h�4p�v��Q,��[�4'�L�\��4nR�i�5�wUJb�R�?j�:3Q�vm#o�YՖ})RTX	2�":��֟���ݴ�
S5Ȍ
e�),+F�n���w��*��[ �eFJ�Ǹ��5��x�&Ѹ��ԎϐW|?��z�m���3� �>�ʃ.�h-|���A
(�УC��K/�o�6l��ַ������-��P
�V�y���E9u���
��>��cw�2:��|��n5ٶp����?�1�4�k^�`��g)ɏX�ytŏ~�#\�F�p���?A6��NpC�,C�9�KT��pC�^t�E�$0D^��w���
ȃ�Ľx�4������<��sy�z�$K�S��z�p�<�I,�:s�c��E6��%s�in_�[Z�
P�� ),
��rS��22ύ�X��{��h�"'X��Y���б2VE)�v�Mp���В�+V,^8Q�ڌS�2�(&�&�=J�������U5��$!�T5�8�ݜmOO6fƫ�S�z�k�nm�n�ڎ���F�$�U�hX���n9fF�,%c)�*����˚�S��Q�d��� �sH�R쌔��+Q��"(a�{�kʖ��Us�B��f-�큾������c\ח@Zi��r�����c�wC9�G�T�2��/tb�:j�kx̯g�iOD��ͽ>&�̲����9������K��W\��r0�<��S��o�4�+��?��O���4<<����?�@Rzr��_u�U�!� 6�Ű��U���ຠ*�
����P6��88uC����ڳ�>���n�Y'�|2��?��hi<Ñl�:��#�sy���o~�>�sp�3l��a�uQ&@�T���Of��P d ���:�X��g=2�
�kŊ@�6z��x���O~��[�7pU�	�<�cp<�m�Ţ�Qm ��������B$�}
慛���I��{�G��vU��;�y�R��[��H�5R~����iZ�r"3r�E��(�<�Ї�24T�TI��wk��_�E%��J~��5�,;TK��L5��BƢs��Ǽhd2���6�
B��*�|�p���c�7�?v���6�l�8�e��Z۷�ժר��fM
lK�-1��N�4S��ͨ]۳Qk6j�vZS�ִךq���#��v�N�I"o�T/�t[���vŢ�����Ŷ�Q��в�����z@�|���O���mGuK6-%�ʦnl�~Nj<'�<I�$���Ɗ�U�呔:�\۞����l��p�Xqo@��Gb_i�t}�&ݱa�t�;����ś���
/����	߂%�iu�]�c�%���9<��\�@⁄^��(�3��q]�LO�a��D ڡ��a��O�;��@4 D(`�� �P�n����|4a�����Yg�u��G������`U� h7�3pHʃ��B8q��ͼ�KK�.EÏ8����{/ND�puԁ�M�(Cih�I'�4��k����(���]@�g<�'�x"N���+�{�6�$���	hi���_�j�	��b�%y��!+��ݎK�Q��#,��z����<�<������-3�f�����>$$ے4�`a�:4كƔ��:e
���gE�0gˌd��s��wp0%
 �BԄ0uwNm�c�-��+x������]qXd��:$ԡi(��b�K��d��D�J3m������l����N�C}b�[�����z�n�xj*^�0�����tMBSCAJ��K�Ea�UY�u٣�YV6[,
,�
+Щ��L��4�8_�M3r+����{��;m�>������VE�u¶/��s���Mn�2v�Sg���T�:��hKUA
�T�� �iJj�e�r�Qg����I�WS�"�=c��8��ZW-���n��Q�r�J�淾{�Kw�e�a:��
��a�0}��|{8i�z��~�%�#T�>�3>�G�ȳv9ÞfIxH�0�gLrCC��)�v ��j`���4�
�HVU
T\"��"��P!���4؋M�
�/Z��F�C�p��i�����"U��L��*�n�6�u���- ��VgzG�ښ��7�]�|���a`Qbh)L�(H�;S)
h��X���D�%�^�X�m5�՚�ߪ�KCK��eӳ�b����չB^�":4�|�n��m�wD!O^��"Ų�h}���e��+�f�֜�i�l�M���.�LKJ�'(F���D�:.F��(�<��ԓ�[��	)a/�����]����p�@�f���~4L�q☥<R�Z��|��{L���kF,J(�w;$l��b!���bJ��FIn��4E-e��k�J��qH��q\��o�ڃ�Ȫ噙�C��5d�(� �^�vRb2��(�c[vlZߜ���ھ�=v_ؚi�q�6��v#��XȠ���p+i��ei��<V���O��s=��(b���-�g�Iqv������ң"ێ��l�,͗�M�"OҁJaɒ�[7�Zv�“T7M�^k7g�J�X1K�|I7
����,�u�4�J��d@��2އ��ZKʠB8��S�7��	��HŽI��?�O����h���"��a-x��}nZM1Y�cŽ�|�w�G��K�D�e^RHل��.�TƴL� �D�9M&����gY6�,�u9��UC*h����$*(� ������v�|1c�*��Ef9�$I�>`E3��a:����Om�М��ܱ��}{gzʷ۞5�aۦe�$�
]�(*`�2��A�r��R$?Zh�^譐�XZ��R͂!DI�t<)��L}��n�g6�k�.Y��0��:�֪��J}��:~�h���Lֺ��}�N�ż�|y�X�����I\z���'wܱ�ӡ��%��:�U]Q5
�x93x�UQZ?N��)�\Ұ��)�����~b{���$�Y���4-%r$�Lw��<�„��U����c�Չ@	L�@A
�HTD-�5��Xss4�Mw�K�>K�+��(�pص;�X��\1��o9^��kf^�%��֤�Hq��=�qU-�z�ݚݹu��f��oOli�m����;^"w�	����,`��g�8	�^�)6�;��Ӌi̢$�3IX�@��Y���8'Ǡ�����а��;;8�5GG���`t嚡�U�m����(*�;��Z+��W,ZZ(�
�g���[X?�a�[oѕE�+�BF�)ed�R���O�5Nx��}��:و=ۺ'�'����7]�u��͌c�D�&��tRd&Jݗ0&�*U�Rߏ?�)�YЬ�&��;���@���@K��04IS�4��M�v�>к�B>0?K�իF�3���隢蹌)�P�^�q�Z8`|�ٱ�CZV)�qg��;��n�޼q�{�;w:���~�!e�S!bF��M (�g,ɉ��E����BP4�$g!�"�2��z/0Q���qR`���Ƿ��n����Ҡv�QO��#�mR��+V��L�����N%�R��,�dZ�e��f�M�6�v� qkM!kU��*ҿ��Y�I����A�t��E����'%L��sS�QBSz��aܳ��}2}��*��N=�=�=�+��2'{9���)YB��/��G :Y��Q��|���(fz�za�~�*���LD6kL1�}�.Y)�~�R
7�v|M�N\�<o��m�<�䄢ba(�z��SN�担L�*�tS7�_?v�����W�6�֛��{PV���=3qMY(�
y%h�ZJ��87�C~�<6�
��A�&���AL�;�h,��Hg��EMĸ3;�}�
�_"�O]���\�d�r�F�i����~C+E����t��Z�۶�hp�mu6՜Z���
F�p'�"Ah���阪�t�F��Ru�&��T#�E&|\�x�ЫC��D�/�y"*���%`�W2�"�*��sDY�){g�M�b �b!
�I�M���G1��$gB�H���2�79�H�YL���V"3W��I$Pr@%t<��.^y��!���uJ�FWO!�|�����74c��ׁ���}ㆱ
��l�4�m���n�%Q��ȸ�)���	Ee�"�#Av�X|BMJ����5���R��g��,�N:�xH�A<�(c)�! -5#kJ͌m	�x��ib�#�j��K�s�Tr�PQ�%Mn6:�㓞�K���q쥋�[u�Lc:�5��,D��톉oKN�;n$�QX2���R%��,ڒK+�s�l�fq��>wv7Xy8��W��|��#�<��뮻�o�a��Ջ/����v��i��r�M7��h4����3������;�n���y|�(�Ɲ0Ð;	���l�VQ�+���t}�ީz^��	e
uG��~��$�[�4�iI�bP���d�~'�$E�X
0�ZK��=��791Ff*�'��z�
�S�e�����-w��ؾiv����MA�%�,���hp/��X�9�.@a2<}h�6�C�	� xp?!/_p�h���K�L���$A�
�#^�o�tP1���2�^�?8*�����c�Ѩ7}߷,�R�h�v��-6:���U���q�Q���*@��P5pI���r��Ӷi)�DQ�)�3M2&�I	��w
�)���i�_M���/|�s�s�����ÕW^�q�ƿ�9��C����������mٲ���:�F�%K�9�_��W��J>��2{�,��borH9�uO�S�孾Jq���膕DI�ũbIj$L��HH]��nw��P�B1p(b����i�n�I(�J�&jl�x�+���3_�Q�,����"Ch��k�F�����Mw�<�e����x_���(7LcJ�b%S�fIO�gsv2�[y\f��Y(TQ�مKYr9�b|��L�>X�B6�KI�Lb��"��R5IK#��"��o�P��B�ѪNN͎O5�0����d�,����$��ټ����L�kr�R��b�П�[�%:wP�[�y��)�P��S����M�w�Ax�����z���p?,���'?���.{������/��:D����ѓO>9��p'�e˖5?��U�Vm۶
�d��lb���b�800��w�؁�Ƴ��,���022�b��E-Z��׬Y���S+W�D	w�}7F2w���]���nss'���>����X����0�`�T�+��SO�N��@�9�۶Q1ԙ��]]�Qm^�ҥK�nݺ�;l�֭��P�駟�&�B�����vjՋH#0�Q��r�����΢�MGu.�C_	,�W�'�2����Qnڴ	_��=��u���^4�Ξ���r�P=�*:�544����+V<���XܱY�w(%�*
�4P�X��L�(Zj.
Ұ�4\ߏE�2V��M<����]��u/t��Ǐh>IREYE��8�@���g��t�1#��fÑt�X.��E��X~����k�[�*t���7�]ۺab�];�;j6�DPR(����4%�sX$0�T�.B\������H��̘#0��9;K���D"E�^�vde��Q��Q��*�#w���/"�ѣȚޱ��j���d��*�2@�v�x�Ч�M&}��S�^��79CT)�O
B�a���K��33��:�\Z4
��-���X@�8�;sA�|������b��0�COy�S�ַb�c�`�s�=�^z��|�E@l�0��>�l�����>��[��ǀ�d4��{�|��-oA!O�Ӂ/w�y�\p�%��>��3�=�X�#@��*�z׻n��f�jT��/�5�\��	�����Ǡ���{�P�#�8�/})b�ZŇs�=;Q��(�����EU?����t��;�N�
\��/�����������w�8r�'�n��`%J�-�a<0������R\p�  ����/GQ�^�~��矏�1j���qÆ
@���Vr�!h>�����
o�UP�5Y�I��\�N@�૓N:��o;
�`aı���’�g���==�ZV��6`&&_A�����M��m��w��������-*';k�3�Z���1�4�dS��l���h5M%[,��W�R/
"�(��XDᕔ<��c�:�m|��ɱ�����6��;�K��؊?G"����s�#3Q�uM_I�Vx�j�VEY8B6�ť`ʽ�S�mE�"��i�((+Y����|��u;�n�9�f��o�OY�R)g��=u��n���*ai���m���������Y�<1͊�%.�rU-�Sv윥�ٌ���*������=YE6�œY��W�Rw�o8Ŏ�so��
t#���.��0*�	|���/` }�#y��^q�W<�IO�)����&�磌��g@	����W_�����k���~H�Ї>�z|rr�엾�}�k@+"���H
�`Z8�Ƅ��a��/~#�K���o^��S�$�xbb�����b?�x� ��y�!<��'?��o��
h�N~�V���~p���4�+_�
P�����󀘅��r�
�����W���(�/xʿ��piT��?�9����������O����_�P�~�(�f}�ˀ!�.���ᢋ.�MA��}�c V�bt�H��=�m?€P�`�|N.u
�l�p�R(��(��B���,��^���<�R����H2�\��Y62���3Q�:~��:�v���yi�����g���q51[��6'�����A)�)J���T�:�i�Loߚ�]%�#�z�;����*$�X�T}�7G(#5��@�
��3��s���<!�\GH<�Ƽ�d�r�Ƣ�
�A�Ĩ�r�Tg��jkv�{���ɍ$P�3U5UF�F�٢���I�M�tU�����k�~\.�e39��Lu���;�Z0�N;�i��i���%��W��d��%ȎZΥ9,�,����mB��G����c��}vىq��0	,���	À��)�B\��[���S`<*1����� P<�/�#$!P�p����H�0<9.
h\M@��z�r�;��������Q1\�
2�a����@
��_�"� @�0D�Ny��x��FA�����W^y% 	��-I�/��FÁG�wC}P������T����W`C�"X�Y��7�x#H7>>���|��z�mG�x�)|u��G�ܠ���]=����q������E�L#�x4e�i:������5��G�QM1CM�ؾAw�5�iz���d&�]{����F�i�ӍƌӮ��	w��~�����k�Ԭ�^G�o����PYŔB�S��T�œ���v������raK!&�~ɉ�&2�`B��:^%F`)�&DލD���Ji,%�ȼ�E@O*q(��8�"\X ��#�=)�aZ��L {�@J}I�e�W�!h%�l��|��k]�֕wlڸ����n}�Z��Z����j�.-#�
�,���f1�q}��S�1t����U�%��KOZ���K�>r�5k�V�h�!3X^l%I�)��*)'�,D��Z�M�Gh���'aQT���i�}�oȉ1e�s����sr @
#o�ޟ|�}£P	,
��ދB���N���g�Q��-��8E/�
��a�zq�Xn���1X&�k<����"\�˥]Ryi���Zl6)�
Q����"x���P�,�'Xޯ�k�C�@'d2v�$�r�)P��/��P��2�u.�����0��%��Ѓ�
���������p@�tzh�K.
�Ma>N���/����-�Xz�/���]�����d�
FE��(���]���z��P6�Tɩ�P�Ţe�-�Y�v�F��p]�Կvٚ�L4`$ĭvgbg
l���+T�~�姉��R��t�Ә�;ըKF����l�L��<�"��5<K*kޕШ�4�����s�秵/{�ăP�Hd��t�A�8I���ґ�.�h{frb�vk�ը��
�h�R�YU3*II>A�x��
��+=j����NUt1};�4�N42�L������֩�XӛҦ��Z&��Y��:Z[��ze4X�G�ֲ7Nv������_*,����8߱c�
4�y睇Qt�w�|T`8q����lyH&>��8�N���׼�5(
��B	E��6Nđ=P��ү��y�ކcp�&ڛ�f�2�jQC�B�D�E	�.`����g7ن������E�Bs8��8��* V@X��Lq.0}������Ùg��lٲK/���������.�W�D���<(�K_�R|�e����n��s�~(_^�#��u�{ݭ������ �.�-Xի_�jP6���p��'�פ����s�boV9'q�q@�뛙���V��T�[3^�d�U��*�r����c�`�f2�f���a�B��Xy�ѧ��_�t}���J�+�J�it:���@_�`e�nz՜�R�vG{��q�A�{�$��'��)l��M�K�d:�����E�e2S�`
\E�~z�y�o6�G:,JXJF�*�I5!15r�4�7��x�KET2H���Ɔ*k*qݠ4���d�����=��u_PG���ͩv��ڎoKb����v�5��������
2��U	:��hX��m��������!�]l������p'��<@aa@�p�	������1�o���?|��S��T�Z=蠃0�xFZ�Oh�*a8q�ٵy�fh`�	�gݺu<��>�9H��+W���x
��'��8�ka�L�U�m��_�UO<���h;CC��Pm0|C����c��r #���G�p������d�t�b�K(��F}�_�t��ju�]wa�����'?�~��_���c�ʼn�1��
��by�8�i�Rs�N�{�]�$�Av�I'=��@{Q���i����N�}��<0��Xot����������Tp�����7O�3�bZjo/�����ڮ`U�?�|}�v����渋����U�3���Н�<A-��R�]�L^6Xnδ�>p���v�?���jЩ��#G�D��!��	r<�&Q؄{(&�@Nz����ZvM�7tb.;c*<tƚ&����rD���K�\g"�
4B�c0h=#�}���eO>1�h���*�Y��Z;h7}y�R4	���%�f۸PiI��{o����a��/&[���8��BV��Py��8X(d
+��Jf�h�e�����Z���G���h�)ٹRD �/έ/��)#��Fq�C���7���.8�@Q-��.i>1�w	4����Y��_���/
��XT��G��t�����MuMxH�G��}�g���Xy�����{$� �<�����}��k��2�J��Ӓ\9C�S���GǪK�!F�"I��@�*�ZkE���QZ�����̙���Q$�
=�U���.��3�M�d(!�H�hΝ��4�AC���r&�O�1~E�Y⃁�S�F8��y�⼊�)Ƣ�H�2��4x��t>��;��ȋ:�N�:�yp�*�4�n��b4�C�a�Q�n���(��^�I���h9S�ΌR=U�f���a�J�";!�B!��@�=1h�ad�`i8�)Ss�M��q���@b��-��ؽU!i�^��Qؙ=F�<Ph��:묳�8>��Es�}|��h%�������V{l�>�W���m!���;��^�/�,�4U���k�&��V�+D-h:Id)UR��o�7��@^)�C�����]�Ɣ�v�x�,�Sw��ӟ����̐ԣ׈�ɠ�M��D_�(r�c��2�osH�˕HF���皛��_��VF�b�s8�`�̱�Y9e�\���\���y�B��y�AU�c-����mn��ߖ^V5�?l�9I�T�0���Ѽo*r(i(�\q��5'ƦƧ$6�U�
Yˬ�K�W
�*��T�EMO4�,qc��P
"՗S��K"f-FA_�]��B�w����J�'	{ф��ۏ~��~�����t{��_v�=�-�t�yN�ݰ�.t��^���H�dK�tY��rHQu��Ib�Gm�9ge���}`~��&L6���V�ڢr��2��j{�f�~��G�i�(
p+������n$>	Cl���0��%�q+fK�,P�i�!<��`�xY2o�Esdl�9$
��1uɦ��YUİ�r�B�v�51^iu���7�Z�vl7���E�	�*�)��tZv��-X���46�d���%�K�ʕ|�R��u��f3��|���<յÔ��=)LF%k���XJ^d&�xI^�%ν��,)�d�`AB�?�S��OlO����ޫ��ܫl�7G	K4ٕ
VA�,��;33��bʺ�醦�*�@
�0U��UL2�tr��8q��e�<�H�5�iy-p;����APE�O��B��p��fÙ��I+�M�Ĕ4/�H�]���8l�#����J��U�2�r�0|�h�JR�f��0JM��T4e�iT�V=��hORXg�AJA$�IL��Є���"C����mxDϖ�C5�ʑ��ط�T�?�SO��8�UM��x[����K�!�(�j�0�ք�pG��Ys�8}���n]�����_4e���Cv9l)���̑¢��M�����>dĭW;�m���<
#r �D�s��Nj]��K��e��P$�!�Å4��T�J��ڲ�Rg2��T�4�Z(k�M�1�8 �x#�̶��DJ�4�Cfk��o�£�5lϴl^2�(rAH�'�,V�ܔV,���3��T&-*R�c��l���H�)�c��l�,DI4u�J�j�3�ۗWb=S2-
h%Gb$ʁ/Y$3�I���>��uuo:�d�8�}�����#U��R���������&���`���{R$�W�"�:��iҪ�xD�W,�$��v��s��,�:�<��0�4���8fX{~�{3 �Y-e��</����X̗�r%.7��g�%q�{aŒ,ٞ
֐�
�n�^���cb�i���/�B����q�v#�;�7�|c�ND)�^5��^z��r�E"uL��y��l�X�Y����e`��CVR�C.��AV����y��4��kX?Pl=!f6�RVl'v[I�F�����TU��)�>���$,(2�3�L��5ܩz���h^a���$��,]��u�4��jƒDW���ۋ^۩f�Z_~X�s�S4}E��9���M�vQl���<�	���r�\{�"W__���X�X(���`��%���|���]��8��m�z3菇M�utr�^AW�ս�i����_9
��׹mlI���`ih8�oF�]kt��T���܊��A}�+�#++�W
�.�������%+
鲚��D�ɿ�wc����!�Tq��47
9�f�wኜ���Hp�l�Nf&�y��=���G�tA�Dɐd
T��W~����������F��7�d��?4��Z*3�g@�\�X���pE`a_�9JB�4�BώC/��VF���(�BQ�R!R��ı�n�X֕(�g�i׼n�sZ��^S,.)ECL�lC�
À�t�ޮ7�͎㵽n'��F3A�fKF�D�!�0d$�-r���D%���x��^�p�At�%��ë^���=�i�:���/���eN��x�����KW�X��q�ڵM@����/~�^���4M���J^~����zꩻ�Z�|���1\|��MU�E�%���V��G
�e��l�*�*�f!#Ȟө�g;�V�Z,i�,'"Ԡ!����ʅlQ��ȧPY�B�(0�,U�)	��i!0
�)-�1i:��hEQ�m�9�
�%uM�A�|8��0����)��k"~�lj��!$���(QF�0�Ra��8�l�R23J��"i�a�j�(��5-#,R��F"oE3A�����y��˲65ۨٝj�]���CTT������Co�Ɖx���1	��
a˝��on{S�)I��0��w�Y
wP-T��%�}s|>�(Ɠ�
̔��ٰa�*�h�3����/~�=�������˷��a�Y�h���+�Jϒ{a�^=�V&*���}��{��z�ހ��+G`�]\��^��x���HE%�'��fV�Ыi��\��W]u������s�9\p
�����'>ѣ`=w��`��O�7��K�.]�G�������B��0d��4��D��cǔ	��U�4�xN�۱]ߍ7�[۔3�-;�l�C��L
���8�[t!���Z�8���ٝ�=�iS��>zI#�&���Whnu���0��>���<�2t
�L%��D�2
�+�N�Q�<�t6�/����́1���\�(�}�)3hU�
��5#�3��/�G�ʋU�(TJ�!�(�[��N$�lv�v)���S�n�����u=<g@r�Te��W�1E��(�"�2�v�Q���BF���INR,6���i�c,��2���J��iMC���ë��1Y�z5~��5�����}�3�l:��C����?�xT`�ƍ�V�:餓��E���Mo�a�\8�;���?�әg��cn���c�9��K�{�(s����|�3_���7FT/4p䕯|%�Z�S@=P.�?Q2���|��w/4�
Z�p��ӟ���<�,��w���(Drpp�{��>o��QC���6�0���W��g�q�`ӦM�wޑG��(H��q�a���,�7F	�I�ҭ_�~a=��ԧ���'6p緿��Yg��� ��ᢋ.B�@���`U�/��޹s'�����g?�ⵯ}-j˝N9�׽�u8����K^�c�=v�ʕ��w�~fc�vyg@�����K#H��)i�9U5%kY�7B����D~'tl��F^DZ�0�e��C��W�D�zaNj� u1E�+��t��-��DXbf)Q�Da!�TB"B�:��E(s��~Ԕ���)�T�G%�Y�@&��T�?ĭ!�;�He÷$)Z}�v�*�a�[$�Ç���$�	oʩG�\�f��X�'�[�V�gK	��$g����W->hɲ��G���s٬����l��\(�%1:��U5�C }�H�~赜�;�c�7������<p{�P�.t�^�������YǠ�����/}	�	${����:����������7c4��=���o{��~��߁qW80��� �Op��}�C����PH��`|�x�۷o���1�0����[�n���������
#y��!'�x"ꆪb��?_gƷ�v�Ȁs�!�P[��"�@��)~�{�ַ��|���a�pT��ÀS�����[�X�(Åp�i��v�q���a��}�{?��Oq-Nܰ��5W\qnNi����:�"�=�љ��믿�?��?m�<t;z���W��@'�
���?�Q����,1�ǵk^uGk����l�Ɔ�M��))I��q�V��zq��[a���\�� j��1�]Z�1�n�2�Q3�HEs � of� ��u0��i�(�,���4L����j.f��ּ��nk��a>2
A-�ss��;c�5O���Nfj�ݏ)lV(Q�j"k��#N�yɁ(���n��;�IC}%YI����̲�Q�d����ڡ�a�����\:\�ŀ�Kb])��3�U�StC�^�Ymi��8��hc),�����
 87�tw@���]�g�1�~����~��_�~��B|"X\��?�?�?�| X����ڛ�m;��@x8���ܶmP��	��@��uh�\����
���]��
��hG�s�����y H0P\���|�[�Xة���}�L��9#��V@o
,�=�$*��֭[��������`<_৽����s0��2�T��QqG�A=���J��ԃ���̠ލ8��k�]�6�?rw�5��v�-�PC�W�[��`q���G�LsfGmr�S�z��%%vq�
e]UD*d����IL��r"�~�]��t6m��:yM*�t�Fc�]( qB��%fEH[(,�H+�=�Z�fд�C��J�2��x�+��E���S	��c���
¼[�LY���@���� �!)S�y/q�*	*�,2�E��
��
��u�DNg��Ij�)dJ�fM��(�Ӏ���ݜi�v�M3#��aB򊾘�>1*
ͧ�s�~d
��ol������-*K�V�(��fSq����(-w�./=g(,�g@��Q)x��P��:#/��j�2K�J��K ܸ�u/8�eY�h�Oǀ�a��0�Q,��IOzNY�l�޸��^p��3\�V�����EC N��Vpu>g���K�aqژ0��#�����������7�Ä	,8"�
X\}M�u��3yvv�z��_
$�A��RH��[(d�dPԞ�D+x�w�"|�$��J`߁�w1h�}�4RѰJC��~�\J��Fip`�<�gE%�u�0[v0�u�i�Z�ObVR�Xe}�Sn���uG�q6��}�&���PsT'����傑�I��˱!'�*8�䪊�J�*%��e{�E ��1t�"��8fQ�$���%J��h�[��yȽd�G��hqP�����B6��&j+	�U�XO��o	*�%ĹbCMdC�51V��_7�[��j��J������[��3��-3��VVд�҈ð봦��F�9Q�<
W�V���Y���n��:5�i���)����S�C�VUC28Sɔכ\?}�]㿝��c-a�� �#Y�]U2o�O?sQ�w���BD�Z( ����Jdʖ�"��g��M�6a�`bT�_��@b��e/���f�CD�fzz㧷숳 � ��.��2�лF/�-N5��j�q��7��x���>����ǿ����|�ͽѸ*���%P�^���O>����� �礓N^������N8�#��/\~�倆��>(���@�}�;�yӛބ+�w�y�kA�A���FCN�AS���^%qu��o��oox����΀$�%{��p��4m����=��Wj��[��0�#�f��/2����Y-[�J]���(嗢�Y)d���l��m�^$�w};�DR"Ba�M��7M
`�����T��[��!��S�S)�)|�B�)L��"���	!"y��Laa\�y�Hr9|��M�9���Ky.��\�b*7�Y�xBb�FK�2���]�10�#���Bl�,IQ�P'�C�A��hQR�(�8v=��bR�YZO��|��TI�^����<_�#p2��DΚ��Y1�L���3YSӠk���tuJ�rEs@�N�}�Y�Es�41Tz�I<��.�'\�z(X�ҥKA�~�ӟ���`���^��W����_����`z�W\q������f�b��w��t�B/����Vp�8���9�\�"���-oA�h�8��/���DZ��x�)�Ļ�.@?��yP�׾���
�z�{ߋs��?�Z<�@䳟�����ƍ�Ua<������X@'�>@?YN8�/��;��[����[o=��S��w�	��2C�����5k�<=:������F3q����'4/؋.������X<���_tCe0FFF�0�2�/��/�i+'6��}Ϟ�O1{���O���#���F{f�̎��;���Z���G)h��~��Zn�Ә��w��YG��ʳ.P��{�M�j�@e�!�S�~9/hq��W��q��Vw�T����-~8.xM����󂐔XHLbG)J�0�t\��^<���AY�#s��)[Y`6�,�;�Ǭh^��o���:7ReO�LIV�ws�����P*W��F��5NUNc@hang��m�l%W�+���=���[?��l��p�T�m*%
2Cr�F2�r�N'N#�BK����*����h��˙匞WD=�Wf�l���\e��Ji�
u�豦����ysi��T*f��߹p��ˀ�͇�ʕ+QA<��E���ϫW���[�TC�q`�����^�&����~��`R���1@�0���_����|�-��8:���7�`(�F8�==�E��NTͅ;>����1�q�
7܀b{�
�A'��3��L\��{�4�p]�@h˥("κ馛p!|�棱���'zXƣk-԰贳�:�����^�Z���s�����݅�G��X4���W�f
A=A��d�!��t�:�o��70`�:�X=�T$��ު�ꎙ���FB�z7���T��v˵��iͺ��t�Ig����f���w�۵vZ�C�u��P�$��۝N�歟��{�N^C�X�΄&e�I��$$"�?�)�v�Bq��5`�MU�DV�^B�@�+�W"IQf$@�Y��1]UR͊�,s�+G{i��g�642,*���0�0��V�J�K�:e��50�߶����7��3�,����D���,�cf�\.d2V��M��L�,�~i���+���V�ҋ&96��1��MM���S��÷b�S�$��oXwX��6�7I�����%���?��
�¨�&������eNW[���%ko9�y�a�4SI�F��!y=�����LɔRS
3J\0T+g%>�%ޒdU73
d9�B��PO,Th"��dY.
sn�d�-Y�ሂ(<˜�=v��i�BeQ�Uf�ţ���D��s(��K��LK�5��y�,J� �\'MR
c�꩔��V�V��IRA�堒����@�9n�M�d�R̒9(GCB�ChƲ!�8WV��校瀟q�D��zetM5���v��9�������p>�����\��o<�Vc�z�F7���	3�V�T�@�XyE7�T����JJj���Ȓ�HR��֛�z��z^6p�]�D24����Ԑ�G��	�䧖 ��K�++4=�H,}9��LpL�5�NjR�s.=�?1}�s/=^6����,V��UX
�V8H���@$R�/%��T���IjN��-j$�;�;c�;�������P�Q���R �S�iYZ�hqa��I���l7��:�H4eO��u���ʋs�KJ���{�gIUf_9�z�u��鞞��!� �EEDV]�b�����**&L�.�� K�0 Y���s���_~������y4ݓ�A�ߔ���^ս����9�~����d�������.S�2��ȩ���,=*ץ˥��%�`�Hٷu�A��V����֮�hV�k��##Q�L�<'�̫ӓuig���\u8[,��9"+U\�n$���mJ�ĺ*�m��=�'knH�;E�c����ˁ�<a$��7��ٯ��	��ˑ��ك�"��ޮ1	j�f��gk��d�=���)E���E�'�U�˩���Te+H���beS_�P�iҌve�2��F4E�L�
��5EQ	�)0�J�,���~�-W�y�e�LG󔉙)�HCD�
G/�:/̥Ⱥ$A4�Wd%�H�C�Hx/v��g��h
��i���6Te�~�E�$������T�$٪l�����J���aR��"_�V
��l�	Q�e��ql��2�鑴{\ IrL֓����
j 1F�'���&�+\�L�����W,�]́�o�d	���a��Z��@$*�U�ui�^KaY��5]�dQ�8�u�k#-����hv�H,�+Z.g�`@V�,
��p�i�n �����x*�[�e�U��8�V��'N�<aFBo�ԟȖ�d�"K�CG25�0���U��%SS#PҾk	P���u�N��%ʻ���������
�7d��蹄o�|D��6)�KCV��5JU�坒U��&X���g�a�sEP�9^eX�5L�3l1����kI�d���Md�
b��QD[,��*�Ey_�I:A�IH�K��7s���#��"Tj��C|�IQ����aV��|&t

�㰡�i�
6�2ڧ*��
�UbmlDsE?�
�+�<��\?�%DA�!��ղ�li�l���%"1�����2ys�1�d��c´�橙X� �a$/0;	�9�OS��!8O�%��X��yD=���_?ۉ6�Cyx�X��ƽ�w�a�m!~����Ç������B�y^`K��Qeh�a�>AP5MR$?�r�B���9���)ayUXC%�Xu� 
�EMN�Na��D��9�Х<)C�(
�Bt)a=��7@99�U�����#S�#h�G�Nst�3M�7g�#A�gQ�%�T_�D%�^P�o�`+y�s�h0�Q��,5'H�.�ui�1c�XغmkWOOٲ<��Ur�]�t�2��%�w̜3mޔ�Y��E�r>��f|�%��>��WN�_2��D[��k4�$CCd���}wfM�0����N<�������]}�յ��-�L^p�;[XS���ڮ�暚�~�fϞ}����_�e�ԩ����o�Z\�}�ϣ	U�hsq��|Fv-�����o[�l��-�ޞb_O��R��G�­Z��}��;�I.��E"}��̓[�*9 C�A�QI��v!��/�Y�/1��In�>�DY��_�g
ّ��]´�A�d����a�g���Q�U8d�O<<�F��KBsI�8Gd��"G4OҝH&&��%�.�i���eN{�عM'�t�DS"�
4r\Q���L��<�'�Tς�@V�
|G��)3�O�=i��L:#�B.�h.�#	�����$�=3����|Dſ=�H�{�g��ÖN�a�cb�}���sMg?>�\"�x�{߻�PM��rʇ>�!&L!�f͚�SU�����;[>eʔ�w�߹�v�i'N�۫�?��~����t2]��N�a�&����Q��vo�ۺ9ۙ��+��R!_t\�dWw,[�5��{��RJ�ݜ��N z��U_��s(�0nА"2#G���4?U$��B����\��E>px��:��۾��'��i�P�&{��ۡء��`gR1�ˆ���5�.��e�ċ��+�
�Ṭ+p��r��qA�k��'rj���]Td�\Ċd���h�i�UI�b1!&	� z�D����D�ɂ���|��QD��"N}�v��F;�z����D��fΜy���;���Z�`]���;�<@���P?uinoo?餓V�Z���pI�Zݸq#�su��N�>_-^�_uuuutt/����{�Z�


^xa&�ٶm�ҥKX�R	g��@�Фx�X,�1 G�ꡇ���������f��=�F5�m�����hR�v˖-��Z��*�q��zjKK˫��::���(��g����h9��+�l޼'RG�h4��#����ZP��˗3a�,\�a�T��W>� �.�Ƶ�?�<}<���.��"0S�‹/��DP&�<A�?�J@�?�0��>0iҤM�6���K�Ax_x��{džj��I�%�-W��}۶m�$I�e>���쉆�
��@.�?����<�S�z�W�u�+�Z�u�k+r�*/ɂ�RbS��d&%�	FR=�
�9����;5��H�(#k�iJ�¹�}���~��	hC��C��kq2��"�YYs���|�<I
D���L��)��,��'s�Ɍ�qm�g5��:�VQL�B�i�O�@��p��Q.���*��b\�%~��Op�gF�6�������}\�;��v�hh~���?
��B�͛7o����]w���o}�PB���a�8��k��3�������k�-�Lx��O}
W�`x0EX�W���}������:��]~�7�v�!
��晦	tM�P�e0>`�g>����W���}��_�hu�
7��Z@Ø0ʸ
���җ�T[8I���Y�q�hmm����=�P&\�V8mڴ#�<�;�Zܬq�(�5ڌƠp(��Yx�G���2�@H��qn	BE�'��6`�b�>t19vP:������r�_�v����%��I*���Z�1���~w���X�g�.y�Kb�Z$�5�p�gutOo��ʲi:`g6o*�Z�%Un�Ь���xU��I�&���VfYP�$�\���*Gc�Y��ġ�=D�0L8:Ec�0����w�a�	RFmD�(���,q=@� �䜇b$O�|F��(5L��$)
ݚ'���D$"2�g�E�=׮V�*�t-�/

�9�������xTKE��W���XcDNF���k"'����'��L2�p�ۃ���Sa�}�o���?��O�-�
��a<薛n�鬳����CAᓟ��!�B�'��7���̟?_�4*���p�	��ݿ����?�D���z�>��o�����D�֋�A�q�~�i�?�E1H��[o�R��;�3g�O���.� Mh$H�;88t�m��}��?����O�4N��|�2&�(����6q��'�����m�o���Ou�Q@%@9��(ܖ,Y��Y�v-���_�h�Y�
$E��������A-����V�E0�g�y��C��R��o� E�&���FP�l��n��׾���������$|G�Q2�ÅcD�	^bՔ��y���{f�*�Df��
�
+{�W��:��ˌJ�R~� 
�c�=��t��qˆe�qE�H���_ͼ�巉9W-x�ú>�xa*K
�̄�F�F��Oe�lf�C�7�z�V�p4:
&ÆK�)7�}�I�	r�EE�$!��1�y����1ӳ��ˬg��8	�E&�H�Y�8�x�I����^]�����D9۱͒9�k?b�ܶ�֘��	�����4pFn{���6˦�����F�R���m�Qkɂ��Dq���@Cτr�	t�.Ё6; ء�w��}�s��r �/�X�.H���"����Ņ�7�`g��k
W��q4Ս�����Ki��p*#L@�R�C��o��&=2jL�zl`.�Ы�h��,hXT`7����裏F��u�ޱ����4F-*`��
%�������y��چۧ����e�]9�q�8��?��M��%�\�nЏ�Y�kT�[�b���3�4°+�%.�#�U�+�5kM2N$$�1ozFL����6�j}�T�e���v��y�9׭�lj�$�ܗ5��Ss��T'�XJ�,'T9p/�'a��Ъ C<GY���[:	��Ө̎��#Y��1ӦAڊf��G��a2��c�T��!���g
��3)Oh��6�Q��d�Q`x�(��_��r(�H�٪cceY�{r՚�o�x�*��LSk���J]c�mF�!2$#C�S�0�O@R�L�O���v8>X�ah�h
�!������[�naQU�D�7軚����bq>@�i�c1���P7��k�ܹ�h����Y� :NOb}�}I?ʡ85��k�Mg�I�oA��
����IW]u̞�E�0ҰK4�m���Cx��ŋK�6ę�`�h^��a��
�q� �P9�8u�=��z�?�я��(jtıZ-�W��^y��V�h�Y�4��o����ˏ��p	�O�s�f��d���H-#:BB�
2@p/��$$���֩-�gO<�#=9�����q�F�d�7��;�M\HJ�f[��sS'Dc��Ij2�(l`���ϸb�Cl<�ק�)UM���r�c�2+�b���-Qr�6��%_|��EƗ �\F�'L�Lc"�p�ᇣѯ�
�̎���6p�$7>�&�$����ljU�wUF @ɹrԑ����&��.}��G,�K�4�b�8E��q���YG�t��py;�)��[�i���j�ڤ�Oo�8z�au퐄���
���!��s�#i�ط��d@�6�E�	c���x�Y��sނ���P/�}�,X{;�#p���/���x���?o޼�|�#�)%���0��駟N��h|�cS_�L�$�c㸐�硹�O���.���v���EP��_<V��qt�a�VWWW;��j�>4X�)����m�5ĵ�Y�sR�%(�ֵp�B@0��t�j��2�1�����q@^WW2
�/��h�@BR���f���	��=C��U��p�n��^�����˗�8��}�+(M0P�*t;�}�Ҩ��a��׿����R�˄����H��(H���1E�\שe�wɊa׷\�d�j�h����Lr|�h;�_�T�UE��첪�T�g\�/�,8
�J~�-v�0|$H`�*D"�(4�1OYbq��y�U4f�[�Yn{���!y�f��!����H�A`��'��\Nu9ѓ8�a&py�QR��	���:�h}��r�A���1UӮX��$��R�O�|�0-5P`)�^\��Y-Ɇ�DS&^���qȔC��Md}��z���r5	���Qro�V��뵿4����{�v+�T��7�?�}�MxIJe�`'�Z8�>l�&�'�}���nǙk֬�%g�y&���_ߴi��hѢJ����wJ��/�6��!�@`~�}�j�Zc���-N�������-�E>�^.��;0�Z�N�@06�v�Z\�!� ?ѓ��*����;�V�rj�@	��袋���W���D�9�]�b�½�[��<��&���K=@�?���t��y��j��#��-�B��)�1`�����3[[[Qݽ����~(-G{���3�������@��~��(������Dr���{X�0�A]xjen�'	,��U����k6���Tm�R-g���r1�3tH�O蓭�S�u�F59�XA�}n�[�=k��QY.u�N$7�sk��%���jW~xW��8���A�oz��{�@\�� �̑n�'Y���FG��k0������T�~Q�x:�K�(4ٕP�$��H]�N��YGks�%�~��,�ǒ@����vs�cۇϝ\��_�](┒�|���X�qMj���m����
��H��3��ԓ��02��b.�gFcF�w�מ���q����#�NE��;����w��ᨁ����Mx'+���0ϰz�2/����&�w��ޮ*ē��g�0�u+7�i�<M�D�VdU�D�u�S&�JVW_V�x�)�J�	QR%���x|`wy��䌧���X�<�ex<���$����Y�܊���od>��s���j3#!h(`Qz�!0!`���$.��d*mV��T�f��Aj?Bh=��N��R�"�bESE�uL��=�Q�`;-�g%^�7w�߼m}TVZ��f�LjM���M�G��.|��Q���<�g��bǻx���N��W������A�ڻa�Q�42Q�LD���t��8�U(��}2��
e_^��#�N$���"Ȉ�:�k4f��X�l��=sJ�9&��$�Y�ҍ�w�Q�u�۩������
lW6z�h�|D;�,�‚��3V4����F�#�A
��
�E��Q�@¨<�	/�X:�_�dK��$��Q&$�I�K�G�Y���rL"�u������ˤPAq���ޖ���R�"�Q^�:qjG]�`j���dQ��v������!����8����ۻ���s9z��vĴ
�H(1��(��J�әtg��t*<!=�/�o�_�l����MR�J$�ˢ�ijl]*9��-��R��+z�J�Y���i҄ӫ~�f��n޶9��&[,��l����p>���,��!���-�$���*�D]��p�p���Jj��T��aC�Xb�2,�'�r����Hq�c\����kUʲ̦����o��ɕ̪�6$�[7�,gE+"��@
�>Y!���0Vqbʓ�WQ��}3�F+�ݾ{�"b�A,;��gX�e�3�+���nspxh`8k���9�mјn{A6�[���Sfeb����E��K��7sZ���<�Y�~��&��M�$Ժ�{��X��������T�'$��D�h�L�d�#Y@���s#��:��%�n�ߞ�8�/#��><�s��.7�=�R:���X'M�-�ZOV�:B�3\�'�,�;�ib��ȃlJ˭�����]���MzLnI5Ni�,q�Y�^}K�(�${&�N|���R}�_�0�A�up�g������Fpa�>��DDQ2m�b �k�Y/�I�S��|����W��u�)'_ ���
EtM%�b�0�9�ر
k�Iv����T��H�.eN��ˑE3|�
��m�0)��G ��#˝ILR"���%х~�㊤a!XD
1E/�6G#|�HW$�
$a8�E�o���J���r<P�."�L��<]�|����`W\ߵQ/H,7<��Lh�H\�y�q��p��LJ߶q�K_ΙMz��)Mu
�H�D7�Ɋ� �IV������p{ǔw1߲ë��3�J���?�F��܃y���}�ǜ6����G!1�\P��cRB�E�2
���*�k9�����5gμX<60<�s���p�gY���`9U�q�1�l�Qc�H4��u��6���K�E9�H�z_�-�G®��3�q����</����a¤�&��h�|��X�d[�Y�ܐ�_��ijI�B}���B�\eʹ��멙ǂ<V���Ce�0A�m�Y�g�#�h	�T-����J(Wx��G�_�>��$*+�r4�%9�Z1���^���4+��N��Y��9A�8>��gմ��ְ�m����d͠��MMM8���ԩ�xW�]l4=L�e|�[4����iDw����444�2�2��&�2��Pe֬Y$���L��P�9s��2��[:���b��)��M�2]T���?9�3�������\2� �'�%�R�T\Y��3I5����T�P����jٴ�{��=�Ex����|�P���pɄ�z~S*�T��AyMWﺮl�,�R2�89������sN�KʤR�΋�
-6$+eI�dA�M�#�	#����2�M�i>�x���#�듃2�+�I&"v4_P<NrEޑSUJJ��7��I����-�:�̌K2�/��S 7��pX�}EkkOn��m}EN�6�4"��^�8�X2�+�־����t�&��jO��/�exI�H.�ˑT�$���I��'�C̞���F��Q���^x���'��կ~�0mڴSO=�	��U���������o��[��-��r�QG�a����8�=<�����w����O?�	sd���3��/~�
ѵ������F<�袋�$���i�Ї2���g�}���3������=<�<�|�~��{�
��U�qe���y2l�Z�
�#�`��e۬�i19�P��6����`w�gV��<���-�'67���,:�o1��9� M�'E%���K�X��bB�Ե��ϾZ8�j���y�T�o5�����*P����D(�lV�@�,s2��x�UM_-�Z9�VX�tG Ų2��2��~���*2��d�R�f��Z
g��MS�iG�/�N�P��dx�b�!L����-���4}@�*��I<�V̪ØZR��v=��+W�.��ٞ��B�`�����xy!�^C=o/IeX�Q�4߷!��ŷ:@q���q>�}�ӇM���R]�/��^z��W_}�7��$^׵����Go����������/^{�4�՘�LA��F�;n����e{�}��]Y �#�򚧞z��n�����.t��1:v˜$��8�6��1��g?��я~T�x�{��)B�&b�j���n��������3k�S���?P�����K�n5���En��o���G����?l��,��^=ʵ��:|�b�S�`nkX�êZ���L��i�}٭��JV�	l۷dEDi��7���#
u�[Zz���C�z��共?˶l�捵�:M��m�Ԩq�ף�zf��(O����ț̠)(�+��ڂ�6���
�J�p	$��X�H2�82x%FX
	��.nx'��*�2&�I�͘AsRo>E�?Gi8%�7���n��eU�H�[$Q�pb��B.+�Ts�0lV�d}c��=��Ͻ�|�\V8~p؍9BR�U�6�єȴ:]UU�!)�
���x�2�%x���}����7E��x����pv�D�ShxС�z�W��7m��_��7�QZ�r%4�ܹs��(�e�=�X�
,jѢE8���������Μ9��#�,���o�F����7�|�w��W�v뭷�0��#��/4�.�ޓO>Ʉ���9�
6��LPZ���}��c6�����W�Xq�}��x≐~[�n��Y���r�q��M�����~�;��|�裏�W@4���@|�s����<yr}}��7ވ�c�9������ϟ��DHBt)�

{衇�y�O|������?(*��o�[t��㮼�JԲv�Zt�f��p��
�o~���G?�Q4?
��?��? �ѓ(|ɒ%.����'M��C/���� �E�g~����a�Z����c��u\�'h!p�&�R��-t��r���m�)36�^���qJ�R2�}����}Bغt�T)�J�@�p=�(K�|y��5k7v�%+:_��k[��@�.��y����~]?�b�����2�Q�,���[I��+���T�	V��c���%�H�Uc���E#"�#J!.3%��K�zG�h��M~*�N�Ӧ[?�_�'}21�B�~*��W���Ͱ<o���Г�h�����Y�L��
xI����5�=��뷮�Mӵ=�r	�b�l9�5�y���M�u'˩/�>p߲���3�
��1�AF�X��vv|���ސ0��{�^X�������=���o�_��}�\s�]w���b�lٲg�}��n�^�.��y�뮻��bw�$��+�Ծz�j��^_�җ��׿�n@%�����^���p�v�g��<��#�r(����
7��Κ5��v��)��j6Q�,�`�����-[�a� }8�3�	0c`+�ht�O���B3�͸�x�7��o~sxx����8޼y��/�������G�������89{�l��i���_���!.�?(��_�2n8�����6��*�BT�t�ҿ��o�.ԅ�����ᅁ��p�P�����?�IR�f	�!�7i0�dѿd�����<�X���zּ���׽����	f"�%R�z';��5�����=-͓�9���;���A2����>��ӛ�;@ž�����ی�ЖR��\��O��$&���T��Z}����~���F��
�E�1Ǹ<��L G-Y�,8t}�
8���>YA�D5b^g�8+$�Yj�%vl2y��J۲V�JŮ@�U�$�g4�0�Q�ڦ��'X��XD�E�|��H�%2��ε�.|
��<��l�<�w��mU��H�;�Y\UP]M��^�{>�1�O�P���hϓ��ai?��u�?��?�~8�~�ޱ���;�<��x) _�
�l������D���,�-���I'��SX0��@���|�r�=��	'������0'�;��{�(��`� ;h�W��J��$FVAQ�e�h��p�{�+}�8|�9#�aA�@�荠.4	������c��r9���|f�B"H`"�J�3h9�R__���[t��C��5�`��E������|�͠i�E S�c����Q
�PC;Q5��QG��A��D?�[�ׂ^8'�ϣF���}�#x-^�x�?�n�e@$�j�H�nk����`o�g�<���䫹��k�Y�dÒ�W���㒠0� � �x!^0��+�-��3�	M�z���,G~�JY���J�v}�H�Ѯ�>��g5&�3�,s
#�3��?v4_��;��\�f7��A��e�Ǖ��Z�A��
�T���I�	_d8�TY�&0�	}\�I�NRR�*��D�CTU�g�	�X���J^�<`i��|����o��9wZc4�,*3��ds]Ͼ���o*	������˥l��9�p��0�
����Wĉ�)1!�s�Of��ީ��I�=T��qM��C���$X�Y3�ڷءv��c+c���G����v�2`�����^�9L����M�1pZ.G�j�hE%T���]]]���ԅ>��S�̋/����L�aCE ;A�s�瞋�� #�.$�a��#D0c:ND�]-�

1
���tn����aKkO� Ӣj1�LtR����	J����*����`4~�6��"�8]��k���*��%�\�y���t'���~X�x
U{��kO���W�xP��㖫�����}���!_�*�J�|_
�P2��(��65��ʂ�>���^�o��7wl��SW��b�v�R��A�d*��\��R_���b6���vC*9�1�(.IF*�i�M�sR��d��t�7��e~q�gX^�š�͏�c�s)Ñ���pzD�U^oa��L.1��2�(�JLP���:��][
>SM�K�h��2�M��(��'�M��$�L:��?��ds�,x��W�jxUI�{Xhki�$	Y��[��ds���9>k��gw��9��##F�8F�-�|P[O��_p�?��$R�#�W�m�݆�}�{L&àF�w���0�P^�l��U����;�ׯK�a3'O�L-6��j�i�����:���*�10P����'·����О������G?�5��AѺ@y`�4B�_��9�3j#�t�4�����oq}/h�X@?��5=^�{�X��Eu��t���CA�� i�(�9��)�A�}��8����=�-���zzz�x�
'@-^qw �8��Ϣp:-0�R\N+GC�X��_0;�/N�Qh��݁'��w����ko�
GgXٓ��'	�A$���
���e&��޼i�s�����Հ�ͫ�X����䜂c�g�?�H<�9��O�ۼ)��;����(�1gZ�W)Y�>��>�[�c
�j�¦���R�P��-�%Q�H�t1�s)A��5�U�өl��|T;l�b�r�mv ��	X�cuAMK�A�}��ӧrrLT�(��������k+6,z��g����pb]�H�����[Uӱ��T,�HI2�i^���*��t����ˣ���LKE�x��H��EV��F�S}�r��P�h)���%'?�qvB��J2��l��X��h%Gd�D���u��;3�-~7	^��\s
w�X�	��G_�4�/l��?�!�m:�W�;��;���/�V���m��W�@��t�M�I�0+�LB7Վ<��^x!X�T����Y��4W5�g�y�s�u�}���>�C��?����";��~�lܸg�.�	��ј\��ý����{�ꫯƵ�!�����ѳ��4(����H85p�'c�ؽ��+�~�i�����ί}�k7�p:v��͐�W]u@��o��g?��^�a|}�Q �1ĵ(b��S02���-�U��.D����&���z�z����	���D�)��h��_Oñ�~$}8Wޫ��n�����̨��;��0ϥ���A�@��x���ᾍ��k�kVw�/�q-�X��5�Ǫ���5�������ɓf]y���8�,�Q6n��6Հ+�ͬ\�`�֞q�<'Gp���P>�sޜ�-SZ��x<�+`9D)��m�C�Vr�[��u
Ԋ��{$6;D4+1B����wI�O��v$�a[���gq8WY�9�چ���3gJۙG��DX?p�VU���dZ
Cw�^P*W��SɈ,9^x���77�L4$:�ML�"@�t2�E��OȒQE�sl˴qU��ɳ�&E��ӚfM�LnЛR|{R5?`9��ӻ����A�=��w}�ކ���;����x�!��wjR&��IP�����À��Z��8������؂9M�4	�VD�|�#٠�"�-�%(�F�;�#p-�7%ۣ��8�F7>���hvM���0r��4�I�B�f�I�b`U���X!�6��pZHi�b�O�Jӎ�B����ց�PH�ڌ��hh*��~C?P��?�@��f̘�e��6�]�}\����L0)T
h�p� �^�7*<!*iE�x(L�!���9�~|{�Gvvv�=���g?�����	�a)_>��cQ;J��V-��
�SD}J<&�Z��'/U���Sܶ�s�@��r\�܀e�z���E#[	r����%�s��7n(W��LZR�b�^!�2pFNH����r�|$*'5Q�X,���R�x&���`\�i�J!�yX��d�0|�reA�„��������|$�QX�4�|�����x���#WR���
�VWO��)�3;��i����F�p��G�r=e��g��;�X�����t�����ŔMƒ���$�^h�,i�'[n5�����8!�HOn�6'sX}�!��A�/�.�8$�*�C��Y*�=y0�L�o&��O��+.��'���Fcn��^W\q�-��R{g�=۾�%ܷ�w*(F�%K�ɰK�ˏ�#��%�+����h�е|͊����tL�\�l�v���3�v���NA��?��殮�B�")b4�8�ZrTM�6�T���=�/j���$׶�``�0��+�b��ilT���T&��$��J��	"OYx���;�_
��\g�p���R������
��d9�|��7740\��Ȇi���@��ܰ �����j�񧟾��?�ټ>ڐH'�|e�x�S��p��*��N��xt'ȖC"�0����&�`�\��eM���'�h�8,I�DB>�����O��a{��u�]Q�ox��m�_Њ9@��Ǐ�쒑�='��y�7<؇��x,n�]�hL4G���C͸�xnRӽt`�n���1�3��[V������v����Nܺ�7�-+$x<؛�=Ʒl���a-�^J�s�cC]��\�d�v�RRVe����42��5eQ�=�).ݵ�>ӲJ�j6;���'�X��Atm7�T�����j!�ˬP�5�dy�CsYx ���!�c�
u��쮇�~s�r5�cJ4uE�0��b��]QW��fPd�tM�jU�O�6[
�V�a'����la��v����h$
)�paF��y�m�}��>�������U���.�XC�dK �H���TI�X��"zBIƹ^y}aC�Z�T.���^*��S*X�֞
���i:���/u�VY��mܼ��W��N��5f����F5����J2q5`?�@�|��E����sKWE�-S&�&cZTA��1*��K�Hoy�˺.�7�[�r�͘uMqVЁYZ4.Ț��i-���=5}#�y��-�3r�$��b)����m���??��=C�B\�b�뚥��2��
2C����KE�e\�NG��"6X�i�e�#%�'��U4�c
��ݳ��^p��{�ILB�2��\�w樵��i���n�������Ҙ��ڛ�#KIv��&��Z��ʂj�����I��5[��dRd�r�\����{����uڹS���T*��b�lYD}�Cْ&�:��`Y�#�d�A��π��=�^��[�u5 lB]Z��]\�=j2dh�����Ξ�}[S�P
ܭ�H�^U���<�uU%5�n�ˤ&�M��eOZ����.zFh$ib"�Hƣo,}㎻�\�̂��A7�dT�q=�\�4��(VL���,�l{V*J�����)�2!ݖ���j\�dDŽ,�f���
˃��b�)ݞ��5!ʰr�4=�7~Tq�1h��n�w)�o3:�D#&�NI�)�=�B��'+�HJ��c��N�p�TL�#z��uE�@t�B��{7�_z�igy��G���gm��
deE���n�ڕЙ��3Ľ^�I,�E�>'���#;&����7d���F�%3�xhf[h�$��ae{���I�'=^.��cn��U*
E#�Cg'R�X4��ē��j�x3�64�T����D2�WJ�x�λ�xc�����q�<�0l�*F�0���mH�5$�,�+���W
�g����X))��m͙	
��������q��z3�A��+m�U{���p���%�M��@�.��]u�H���N֞�������;	D�37��N�ٿ°�$�	P̱a�f��}�f|7M卜e�^�q�j�|�X7Yf��[��1��//_�z��г����O��0W�&j�+U����Z�yC�1�V��
#�6 R�$nv]�+��h<�r�h�r|`X�jX������F��Q��I	M�#z$�
�,��Rc��>����J"�
��\�.�k�%��9�������|��zb���N����; yQ��MEĈ4Xb֧Sј�Te�L�gSLdN˜�TKJ���iYTDQ�X!�}0UA�Q��j�D�j��^�$��h�/f���.F��
����]�Q��8O<���m�~��W?��w�}�0n=k֬�s��u�]�~WW�k��6���ӧv�aw�y���G?:<<<~��?�a�:����g��
��Z�1I��^Bf�Ƴ�hIY�C� 8�e\I���L�.o�ڜ+��@�%���T���I�)�q����d�/;}=��=�Ħ
�:�=s9j��z�MC;:fn[wφ��*'�dF�E�����]����^+.�~�ڞ��Ho�Q�\�9�,A�ʖ㱥�\�Z���͓�Z�Z�"� ���(��x,S1���z�Ք�*)[)�^~y�w�����ü�0��*,�����SQ5�
Q>�P4Y�M����P�1+�,�~S�V}¬	�[�&�B�1$�;��H^��'�}F壪cFV"� ��L?{走�<kd8r�O�Z
�p���'?��nh�7o�aK�.=�S}��}����N8�u�1�,Y�d`�ۓN:i����a��w�$���o̓�+9vM<���Ԏ F=��z���rFT���p�ϸ#s|DPl�s<���A�`����[:��Z��c�3}桭

�4=�ū����o�Ո�J$?��L���`퐉��l�Id@�d��I$ƨϲ*��T�txZ�������8Y�1ˮ�y���X$Z_��G��Jqы/?��c���ʶ�N�>�k��Т	��X	�^�ud׶�`76N<|�!I^gҽ�d�鎉S�R�+9��Ӝ=̨zۻ�6�)6��γ�/ߙ�YӦM����~�̙O?���իUU���:cƌ�o��.:�e��g�ٸq#N�={6����-\���`:�g��mmmg�q�	GJ�҇>�SO=��;�@-�j�		Op�g�
�ׯ�!eFo(g���k׮�����fSSڀ�&��.��y衇@[&N���q��>ꨣ�>�hT����	�`�w,
���ݝx�ԡ*����/�E��x��a@ks��:��F��������dw�q�F�T:j����֭C��ЀX,�[C����
�qz��~���_F��8]wy��׾��}��0�����������0�Xd��k����-�RE2q�fH�e��@"C$�	4�#�#�L�jq��sS��-�==�QM'�-��I�N��Ju8�U%9B�p����
�@b��5Sa\�0Q;��Q5%�I�7��577k�R-���
�{�d�᣺�I��m������{�瞻^~��� #ˌ�01Em�׷5�7fR�D&O%u]V�Q|ir����s��C�6O��<����}B�֥�$)
��P��5�1*���w{��ؽ��UMY����=��w�W�����^���_�b�
X��7���f�8~��::�.[�lhh�?�a&��Ş}��Gy$~  ,���q�����R��Yg�|A9�J����#8�S���4� ���c�=�y�9��i�	�]y�q� jG��\s͂�dA��,_�җ�*��o�ۜ9sn��F4l��̀�|�#۶mXy_y�C=8(�z���k4MB�@L������b]t���H�t.Z�w�[�s�94�Dm÷@gM�Ѐ����x�W�Z�/��B�GP3��|�s��F��$�p�e��67m�t��W�zzz�q�4�@�~t�m��1#��D2&Lc吠��g�<˪������x�koq"��l��]�nU��q�X��%�Rq��[�u����3f6����#����@3��Q���ШZD�%��`��f�#��}"<�������ʞ]�e
@]:��麨H�d207���+/z��7^���t[�Ĉ�@�^Kk�	�XZ9�����S�V(��C9@_K]KCdb]������=�����	/��#��������~���y(ꀎa�`�l��_��_��'>��[n���/	�ـn�(��L���?�g����??a„��w�(���?���~��_�|$���7�����n��V�`"hu�nt�/�ZZZN>�d�.��׿�CS�z@���o"�|��L��s���o3axկ|�+�D`�@:JmƇƯqG�����~�}�{�9 )��n�aR��څ4*���чT���@3p��?�i��
v�`�UW]��#�P��6x֟��'��0ū@	��q�T��;0v�wy��Jo�	= ���VäZ>�|�^ԲQ6��倭���H�Ydޏ��x��9�h�yñ�@�9��� ��Ͼҷa�2Т�)�;��!'I��`X�Rٶ-��*VFb纀K����	UA�|��H���D�")�IꊄQM0�hTϕ�+�-ٸa�K�n�����b$���.�ڋ�n
ߘ�O��(��Y*&��ɳۥƪm�,�l����u#�����$�;#��`�q��>\HA�����c�a�wf�7*A���~]]^��<��~�r�W�u��[ x�H���b�D@���eh�J�X������>q�׿�����e��ʕ+G/'����1���5�h�^��v@=�>��ς��`
�<ńY	>��'�Z0���F�u�]@Hy�G��pV���
��܂�P/0ǁk��wahՌ�%D�j���r,�%�E�A��8�p2(��LWnݺw�瑎 `�йf3�{5iwcX��P��DY)�@3A){|`1�#���XѠM��aьX6��Y��/`L���!(������`�����ɗ��n��<��-�E����X�&:q^'���˄>�EԌ��W
lU��|v��U�����[7u�vV�E�.!��.��	��J��4x�����MQ
|��"ZJӹ8��,R!�m�"Y�xBy+�(U��B�];|�h����$�Ȼ
���d L��C7&�W�w�oal�r�M�
'z��U���Ȅ��h�)^�9���O�+�n�p��7�����f�o}�[��?z(�2��h\-��ٳ��C����:�mĠ�SO=����
�hwџ�O<|����D�#`��T�?��Oq�b�e�����_��h��(�n�~E�K ��!�x�8X�T�\�a��dh�t@
=�BU�Z4��v�_{�����nb�dd�$�C�2<�!��A�2x��車gyE�15Y�E�r��_�$T4�
��
��\�p�ʐ��c���-��k�/�U=�J�����L2�#�X4�<�����.�!Ta�T��NŨ��C��l�T�gs�B�
\�W��EEf�x�ɵ��*��d}4	ˁ��B^�鬤h��AE$M��yA�n�R�D���bC.��z�ƭƸ���?9p���%�	�J�{����>0Z0e�&�z�)�1�
_r�%Pv�"�,��v�5����zA �hJX#�#��_��WH$��:��(
��D����)
t���a�	�w�ed)�O<��O~�s����(؄�%נ�
7$
0af
v
猞|Ǚ���N;�n�
!Z�|9�z饗���j.P�����E+�,c�|~��3gB	�-^t�E��@g�/%Y�^�>@0���h�700�裏^w�uP�@�ִi�y���������v~�ж������pTy$��8�k���:#+	����(J=b{��X�aAA�a�S����@R����r���۱+�b6���ӹe�M֯_�W�5+W�Z�b���+��Z�|՚8�jՊ+�/]�撥K�Y����V�Y�~��CC� ?9N�%�%��H8��Ee%�N��2��ɍ�
�dL�tU�pX�u�Lik�L������gQ|���6r���j#�e�d��HDY�tك�A��s��D{�~8 �C�iŊ0`� ���瞃�`�`؇j�I"����v�qǁ@���Q� 0A�2/^��Q���
0tx�a��7N��y�i�s��YP<:����J`ՠBo��ZN#�1ad(�G0����ٸ�M$�v�<�h5��`E�O9�(;�l.YB��18at2��(=����� ��:t.��a����4TD���h$JF/ᕰ`�HT�Q4u���.ܫ��{�?Cå]{��>֘�����P�5�
'
i�x�1z?_.��jٴMdzM�0�*��⛶����u���]̲�S��<.��b]�u
l	
+ �����' ��t��BE�&~�hfz�O�J�#$�G^��B
HrI�����`h$Z�*�TIfL�x�ܣڣ
�[�p5 IN�<sBC�H��"A&���!�Q��n�a`v�h�3W��űڇ%8����
��K�᏷�땗 �����`n��
�x(�hu��|A0�*��=�!*�6I�3	�ʒ��eC㹖m�`v Iv)k�sE�Rf%�E�D��DD�b;�ǒ�lh]�C�P���3l��!�|�G�CDbG
�#^ML����g����ޱ>��=1�q�'	~R�QSB2C5"���gt���e��M�+���U��H@��k��!�	�
B?��Mw�3�P��mѢE�����y>��cP��^z)�T�;4��.�K��X�6�����FHI��#���KزP�
׈�IKpY�+zPT�G��J,>Dn������ p�9}2����mG)�.b��Y�����Y��]�M��C:�t��/����r��eoB26�cvc]{c�E�c��4�����껾 �4�6�0���y���1�}x�̺���͠sp{7lT���5
��8~��m�EA������≋(/:2 G��ϲȐ4�z��ILޭ݊��Ğ��
\�"���_Kr��/��*��>���w��[��� $la�_�$n ����D��*
K��ʅ����?��#JQ�@@E*_
"K$!�$$�ٗ��z��t�����s'&����=}z��<���y�^�n�:�)'y�	MB�Xċ������j_p&�f6m�I��"�3�Y�0��᳢�fR�p������:�,a�$��I��!)�u�t�<���~�����R��*�e֝C1�{�| ��������T�d��g00�r�tDs<��(��4��8Dk��GS(Fv�aP���Х��]�tl�G�(�"�&���A���L;����ϲy��ض*�� �|ɠ|2��S4o�Ev�i�kXܱ`qsW��e�#�\<C�&��P)�Z�B�20n4q�i���h�^âm	�%rX֌Ŭ�������k�tXL��u��KiH�ebcbH�PQ��+f�gu����f�P4�8� �lR���gr��b�Ԓ����h6HZt��N�B����!�F�ʊ�aH"�%2&�uň/sHF��lC�ҕǵ-Iq���։��QND��:����P`�8*^�1��$r8T�W�%˞�o�&�m�a�D�L℣ �q�ħ2M"�rxL˩����J�M�a5����?��x$™$R�0'+2�G|�j:!=�-�a�3,�>�p+��2)Pf�hx�I�V'�t�60ψi9���>_`����X !(��+����X�e�qT<��\X������W	�J��V�#�^-;
���$��]����i%(´��o���4C'.�>0�+ҙ,����rF�ȱ�g*H����K:`fU�a)��5@��t#7:FH�X��]PtF�0	H�����IU��@�5Z5�AQ��8��HDP��h
��@�t�c�dI�~�Պy�Si��D���J�q�A�g�X�������K2��<�K��B�U$���ܸY��̬Df*Ê�����=m��
7.�EM���O��A
�%IR����XȢ����g��1d�Ѡ�/K<�1�͛�*#Z�%B�`�4�" 
�(Lc]W5����(V7u����QL���@�gM�bZ�b$0�"*�d�n��.�Nh����J����)���!7�:��"p+�_Զ�Q%�t�q���I}��j���]����w%2�T˜�v
}��d/ Z^�S�28Ċ<����(eP]�W�EK4�i�OB���4�����,�P� 2�l�m��(j��L���W��1u�Wd)�"�WG�5D�&0(���b�����l{}K���j�G55�iaR�@�D��Y�r9�9Yq$��Vf+���L�_f2�9B�U6i�jEܷ�ϟ�6帩�
X���u
�@�*MY��L3�]AS� �t��v�д �"�2E`8ċP[8B�5](PE�`��0I-��:�t�4S%�\<�I�h��	<��J���
��$5/����)�nO�f[綥�9
�пAM<���r�´�w,7�@W��1;�X��<�Uiq����~zE��0��~��IJ��`l�9P���X�$�
ˈ/��-���C!�X��AR s+0�`�Sϐ�Ɯ6V,��
��N�Q�L�ERe�؊�nL��!茊R��m>y��-]��e��[�tLCc}�
`+�:Y��E���dඵ?�� �H"�L�
k��,9�'���L@���a1��X�s� ����
��J�c]7)���,�ud����,g�*#�FF��9I�|���0��xNDh��b��4@;4��F����6i��v�;����ˤ�pɹ��I-
m��*9�H)MCV��I4x�
�j'�H"lLH���*V��|u�}�;�"��t�����G"V%-U�_A�H'��?�&��1m0��u��&o �$I��|>?�ח��L+&.`�m�-�5�W�0ő2��c8 q��eyfQ#��C��:f��'��|��Y��$�yA-P:��S�fT�8�q$|�u�l|��%�R��W&XaB�i6�0�U+�s,�Gܫid�AE�9�Kɲ�]�mX�Cs�P����&�f[3�bjdt�О��z�
)����pB��
�����IPKB�)+���i !��u<o*E�+�[~���:3�������İ"���X�H� ��q�>�����d_�	��mA=�+��D��j��;, ֿ�NM�y�]q/��'F����N�K+
���<6��p,'(���D�P<�"Fu��)P��?X�1K�?�	�n�rǘ�Y0u}�F&U���"��bYF�f��׵7Ki�P�R�5KVu4��u���к���g��ֱ�x5El��k�nx&L XW5�IJ$�ц`�i�ϥ�Z�2��0�)�.�z9Y�����l����Y̨ �+�O�̬D��a��JV��rΝ�v����	���
���~LH�Ȑ�XE1���(n��Y��<��������@���@�AL�H>-�Q4���ӌ�����$��
:�:�mљ��rr��d����9��)�$y�1�)+��I��/y��N�z��,���,jF)��ʒ|3��9���w7�hq)�-ň���;Z6V̌fqB�I�ٰ*���'{���0L%�O'��c��w�f��!�M�ӐI�*��!�A�S��K�E�0UZ-�#���VL�i��dQ�R)V���6�����N�i�fD�����sy���m͉g���8d�E��8QJ�PAT?;��gO�4'k;��쳩*
\����4g蜢q��&V5K8�b�d^ e�X5���<�����1�R���U`�v�'�Ȕ+�.P]{�p����c���Y֢�]@q,��
�!��VUAU�b�g����E*�X)(�2
�fI���2���"��N���C�z���`�ur=-y�]n<v���Nl�6+E=��DJ����x��T`�b�j��i��ኦ	�pi����y�6֏5UH5�틵��FG;�M���+����;�=�,�bn�p��,aX�Ǥ�ȑ��C<���>K�������U&a1�t4���v�HS�ڊf1O���RiAZ�I���,YYkH�	Td���j!M\����I
P��\�r�əLc^5@��0�:�g��ˤ�=E{�������H�z�J0ԑ�sp�¾3��$-��N�Z�.=�<a��lN7"����,���8�����J�U"G�_�5�����`�A<(�Z@�����0o��x���4|�X��̔QG#�>��Ĕ(����sLy����R2UWWT4��9Ď���k���y]KZZ:tZR�U��JhE���K�?C�Y��I�wE��U���C;�g�z��zfp���g(��aPjaH�(���(�Bk�'��._��Z����89$��ȑaX5�����[9f,RD���+��<̋��R9%-���m�6L	΢��(��bJъ��Q�\��<��8��5C�Hu
N�M��q�u�9v��pW]Wk��.�B�
,�����4C�Y��*��g��	F+߲��<��84���
;ިύ�:��+�d�.�I%8v�f��C�)'�uBS>K�����T��	�S&3*��ǰ�x�Vd�
�a�.E��,�5CϦ�7@�Q�K�ʀ0^����$��$A�T��H�e���(��D2[�0�$�⁑1�Ux� Q�Q0Gr�MR�®E�����8�MS#�r���iyh	���&�ʖS�?
��*]zg�Ю�Y$L�slw�V��G��z<����R��P�r��w"<N)��Rw�z�ә.��O��
�������J~Ȳ��ܼo߾�]1���=~��qL��E���}�g�r4�o<���9i�S�!�X�Zk[��b�9�\ﴕN���YgA�Q�F�l�a��	�	yU��s#EGXN���
��q�j�k�$9�K�T�M8_Tx�������NҟR������,��
�Y4Se��4����t������W�J�e���aG��x�˗/��驯���~�ӟVZ�o���W_}�׿��i*8:�Vu���ЩZ�BH��,�heNd����d��1�eE�)k�6l���H鎐�����d�h1��
exp��P'/�J�E����=WBN��ՠ'��<�~'���)V�����+U�S|k�$�^sy}��R��F:%|q"�|�cg�v���Q>m�,Y���?����s�M7ݤi�<�9����uZf�Y b�=�t�a�f�����麞�d�񎍍��lmm=x��@���:�+{�����[��.7}�ذ�ՀU[	L#a��7;s��ZvU�ۛ�����.���U�y+�2M�����R���Β�HR_ɚ*����*R��(gc��aE�;�Z�p4-�V��)ê�L��s�u@y��W߷�W��՚5k`�q�w�UW<�����w�Y�n�Yg�H��+��x>\p�ܻw/������K�̙{�͛�裏.X�`���o�������<l����f��~���믿�@�;������é��Y�FA��1}*�$��5)O�7]b,q"���-,I�9.�B~�NRU�e�A����]�[�;XV�u�X(0,D�V_�s#����բ�
\_�[����|������?���g`�7��R-��ĥݪ b�(Y퟼�g
��nm�S0V:;;׮]�u�V 8�]wݦM�n���@%��[�֗����k��eÆ
���p�������h�"��g���7���o�z�+V�8��������/��y睠K^~��p��v�(���s�,ˠ� ~�k_[�t��k	`	z�3W{�Ϗ<��n�θ���-�
pn,�8�"7�F�H��p/@'��~��֫@�z�GGYytM��fQG�R�4����14j���]�����Z<mjl
��j��b�HM~�D��0���7����k�mٲ��O��Z�j(n@��A6uww�����m����T�TU������_�f���X�n�v�z��@C�я~�l�2�m����<��5@���&�Zpj@@8K��P���V��q��D R����q?��d?1ocEU
�6�+Ag�A;�B���8�}OQ�aj�d6��۴��"YA"���h����<�j�B��E%k��nH��V�8h�۷o����Q� ����Fx۽���o���)�E}}}�;00`�!*
v��)��,�J�R�z�����t�X���N@1ho</�X)I �	`ŝ�E+���:L���bn%яwNv@��)Ka���tP�EѮY�2ۼm�H}iDA�4��0��!�0���3Լ���l65w�\�c���p�
�bǂ��>E��4���8�S$����6���p���O>�$ Ԟ={`�h�ܹ[�w�@M��k֬����`��c�X6��u�cfu���G;w��ˠ����E]t�С��!�'�=|�7o��h�…6~%�uإ�ܮj��� ����b�1Z9��(F�z�J64e�s�rT!�m��c��8=U��)NRë�|�٬��:�:@Ee+cj����u���m��F�i"�%I��HL��	��A�z�/�p�
7�z�[�n��;`���Aq{��g�?���o�(�/��_}�ջ�{ǎj@���N�VAs2�`��	�
P�駟}��n���mii�뮻lbe��@�@g���{��X���
}�w��1��TX��@n�9 �\!u��*!{�u<��S8>��*N1��Î�%u�ķbO���+��dxҋJ��꺦��z����;�����cE���y�V.;�y���*p�<�c=+~���qU3�0�v�%��lo���/\s�,�6��j��#@���{6�͛�h�"��)����b�۹\v�X��+����dlu� P���:#���l��׃�h�\�dIkk�/�h�|A�:��ŋ�����}�B��������NY��s,lz9@��a��	1	��PG։^���`I��T`�-�i����/�s��}=��|�XÈO��ێ��9wacc��,+1<�h�X����Q��F*k��vq/��7������^�joo��7`|,Z�;GFFl[�ey?ր�fky��B�]�X����	@�nz%�2���	��p�l	��~`���`?|�6�����ԑ����*2��~bVz
O�YW���U��^�?,ҕܾ導��&��DC��T}�+H�tcsK}}ϋ$q
	�.c�wU��y�Q���BG�lO�|ꩧ.]�tf�/�ȇzȱ��6�
T"b�~+e(e�ݧ��߭�P!阩؉]ۓv�Q'��I�ܾ�jf��w;eK	H�=<�ij$�G^ک� H���I��A��<n�Y�C�9�����'��3�#��N���g`�����з�t#���2$�,B"�Z��A��5	��K�y�fYrX�V�����/f��mXɴI����	2����J�q�����o�
ԕ�*at���4]�e�21�O$:�K@C�F}��1$��
�lL��a�ą�r���&LKdz���f�4�0@	{�۾Q]FD�߲�� �������dO�o	LĤ:+�Hq�Ǥ@,I��픀��k��4���wFʼn�J�1�ڤ��m6=�l��?W���m�'V��n�G�
��6L
ј�@�i;��SDd�sk�/Ba��(���_��K�܈�Β�eT��w�ژ��V̡g�ȃe��lv.#�@{ul��k� LU�xA0,?��( JI��5�"�ϪZh0��z�ʇja�UD��%����أ���}��9���񢭦}/�ሠ���K�z��i+�!����`ٰ���p�F4��]��鰨� G���aZ���a6&�.Dn�t�M�q����q�eV���=�[_�%��ǭ��#ž��Y�L+�`�����]k�aS�NC	��G���T��voLNPᔸ���X��Ecw\z��A�J�Ȭ,�ěD͘`�2BTi��Z��#�{h�T̅U��-\vH���B��$2KV���ii�1(R�9ܬ0Hj�X��j�����,��D�04�9�q�OC�Z{�
��k��/=f���N��Z`9O���n]iyV"Gê�:>��3Q'9��8�F���zⷉ�ѭ�EBey��CId6���}�����*J\j�j�����d��e�s���+��!���'s����%�Q��P����|"�5-����K��,7���S���1�s��u"�Ǯ�Q�-*5`9�d�WM��A~����,eX�%��pw�`��H�P��߮q�;7÷+bg��Sٜ�aٟ��e��$�u=e�I�3��ĭ!��X�|t�q��fm4"��[���A������T�N$��+�ZR4TfO�2V�Ht⪚\ؑ�U2;�T.v*���:�7�D�V2��B���H��Q6}Wr�tNd֪��xg,U79��6��f4S�PH�{�y��h��T��&��t��a�L��U�)�z�L���O����~a�#�Vb�Jd�1�郒�)v	�#���tw�yUc�t���ɳ*U3�:=hrݳD�`���+�UAU*�aD�ȐxI~�T6RǓ�ʝ�/,WLtά�\,�?��t�~^�b�S��r{,X����?'2�U+�J���8�VD�,�UQW�l	�J�.�f_�`Ƙ��ѯ�*�������&��Jq�]_%����U	gl��J�	�����V�b�o��S�U=5YIV���Ħ�Ȍ,[]��4>�EO�u�S)ړ�=������u�Z]R "�J<�I�1��<"��U��=>�vG`��H�)�(��o?:R��%��P?$Bˋ���%3큄]�_��ĹG���!�L�D���/���y�k�я~��o�%â&��δ�Zń�b;(�]�����9U�T���ȉV�HL9�s��>�e�x�ݻw��믿�3���{キf�55���E��t�7=�U�Ì�q�!�rm�frN=�e�D2'R��^����־}����m��6����>V�Yl�'7�1:�$�qt����w���`VޏDe�
s��@�5�w�Vj󐝰|2tȊ^LfС�'+�a9�v�nG��w�y7nL�R�_~��͛#Z����袋~��_�s�=0f����W�r
�#�PR���VT��<�yæqJ�Y����?b�/��(,�z�!ѷ쾩�{L$�9묳����UW]�V��ٳpm۶mw�}�M7�t�Tš�?W�t��3��N}��mA+� ปO)�h���Syn	�:je͚5?��,ˀV���oc�cǎK/���{߃�_7D�E�#8p+]êt	Y��V�ݦ
8\�m��H��Ǎ�	Z͚��~�3����he��ݻ/����۷f��Yl�y���b��T�Accc~s��w�Ngt]�4
�H���rc�=Cc�a�C�%AB��j�����(��(I�|�08@]Q�B��/*�eY�y��m�e$Q���:��X4KQU�O�m^T�؝��tg�H`�(�7l� I��?��8��_v��	H�iӦ�o�f����kX0��/�����ult������SN;�5CCc�����d�O��O������0�q�tݹ�]�r��!O��@�|nl�;��
������c�	p�������b�w�$�mm�q�'Z[���{|��{{
�T*�5w�ڵ��kuOݓ�_�9�p�E�h��ì�Wr�jZ�$��|�#ٸq#���/����c��n��}��'����;�`�8lj�n����^<��O:�d���^������g/¥��0%�6=��{��}��K�.�q�������}������:��<���G��K�{{{EQ\�xѧ>��3�<�e9��ٓ�����
����}�S�hhh��s�?���p�UW_�9g������{��~�����%�����g�����篹�+P��gg�l3}�D�B��������ݽ`��)v�d��#}}}a��X�W�zK��0�_x�?=��[n���g,Y�hњ5k~�UU?����=��{l�o�~뭷Ο?Z�utw�|������y޼y��ٓ�e����
~��#�M�
��[;v�럯͟7��jn7"���ײ�W\yEkk+���شr�J�ey䑓N:4�R�,�?��֮����Ղ�mmm���j����l��g�Zg�
�E ��0"$��t,�!��u|��q�‹�'�I���<��wɬ��r���z
�ѵ�^�o�[u�����>�(p�k��6�+|�� D��g����u=�n8��]��붿���&0R�.����k�\�
p��Z�_kk�'>񉧞���V�w�2���s��_��`
tn�����c�{z�<g#H:�~�m�E]t�E094��k�9�����~�2���YN=���s������ƹ��u�.5M����@C����7oG���at��YV��\�����.)��ɔ�����^|��U��w��կV�W���?�q�Wlٲ%��7�}1H�psR�:b�^�pA*�zg�.�`� o��F6����a���<O@�4�СCV�Tlf&�z���(��tCSî];���l3<�E�����^���<x�޽�
��l�ܷp:jr3�/Y����2K�(P�&�|T��Zy~�(�Dވ�+-�1<
e�޽W]uՋ/���o��_�rEǞ{�7n�r�W���yT�M�`P�C7�F\�n�K+ܨX,��`�ӥ
�n�T��M{u�r��S5���ƇH?
1K�&@!�w�)����%��([��\@��K�B�@�L����LJ�5�=�sb2�L\O�ٵk�%�\�����W��G�.���Z�=����O��_�MMM���2�Ţ�������[�G�:��X(h�ߺ:!LmϞ݈e��z{@�8<�kjn�(�9����AP��������câ�g����777k��^7���&�IM.�n/��tu�Ս�tlE[ʼ�VE�;�'Yq��}�s�=�\L������˞x≊�X%mm���1�r����o#˩E��vt�9�.[���-v.죶ly|n���F[�4���W�������g�F������8��N J��FFr��Z�cǿ�?p�eh;aYd䘢�l{饓O:5�/گ�B^]��d�
��$�d"z�{{w�z�Ug@��x�������%{���+�o���7���t:��ӟ��>:p��������*�a�˗��u�ӻw��h�BI�@�ڼy���k��h����W/��o�5���`����7��导�*ˍӠ�š�ֶ��w����?����@������}�?S�:{-���hkk�y��6577ut�3�V	\t���wꩧ�9�ܱ�Q{��Q.����Z0~CCci�/���l|����e˖�r��{$ՄnDd���,�m�s ��9�e�d��(����'�|�.�i�&�8B�N<��u��Ŵ�{{�94�5 K&����C�p|������@v�0�(�74<p#g���<x���mݥ���)�Y
�;�xi����!�e��v�~ƙuu
�R����)�ؘ��_�{�����X����{�w��S>~����aB�J��eٺ��c���_�����
�(�k��CY�z5lTPR)Tt�0��H��4�㓫���}I��1��?�}��d��|����֭[��
�c�=v޼y���=���I���o����0U���O8�D���9-m������;�~��N8��{)0,h�)���ql]FR5<22�0���>�U�KT6�&�m�����������
N��Z'n��s� }KK˪U���Z6J������ӏn���5��'����>���Djok�X���	/I�e����)<#8�,˂�`k�|>:N��7�����H�̲�5A�58`d�l���mՕ�U�2�
�L����֪�O��_��_H{������^mX��^�s,���&MXc]�GFF��`���K�����e��ܺ��Z�$�3��)J\�F�e�BjXL����:�W�.8'b9�yU`W)�d�0�#Xa�m��.��s�i�@���4=՚d拓�4�Df`�*���|87DWB�"�	�1��YÓֶ�aE��I�V���ТZ]C�Ys�WQu��?k	�I��Df`� ��X���Y�b�T��U�T�87�胉6Aӄ#G�j�P�9�w��2OR�iybS��S�0�H"��a�y���iB�����v�*��aE̦�q�U�~�
��v|t��D�%`��!a��Kt������X`����Wa���݋�V.0�&��Nܲ?5�;=VE�4�‰��8[E���)�}�]���R������H"3�a��zR��|:؜��IX�+E�����:W̰"5Q�p	�ܨ�Pz��KI��f�B��a,Wf�X#ΜZ�#�Jhg�®T�v���K5�|Y�����e��?C�o�Kr�*�1�9�i�Bg�=�э\�ğߊ*w�O|D�s^{;�x8
��h�7}(��ϩ��H���mb7�ֵ�C� y��x����p2����x�g���IEND�B`�themes/radix/screenshot.png000064400000455165151213255560012050 0ustar00�PNG


IHDR���L	pHYs�� iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21        "> <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:dc="http://purl.org/dc/elements/1.1/" xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" xmp:CreatorTool="Adobe Photoshop CC 2018 (Macintosh)" xmp:CreateDate="2018-09-21T13:09:25+01:00" xmp:ModifyDate="2018-09-21T13:11:02+01:00" xmp:MetadataDate="2018-09-21T13:11:02+01:00" dc:format="image/png" photoshop:ColorMode="3" photoshop:ICCProfile="sRGB IEC61966-2.1" xmpMM:InstanceID="xmp.iid:d9e3ca69-577e-4e2c-a608-1589b0845dfc" xmpMM:DocumentID="xmp.did:d9e3ca69-577e-4e2c-a608-1589b0845dfc" xmpMM:OriginalDocumentID="xmp.did:d9e3ca69-577e-4e2c-a608-1589b0845dfc"> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="created" stEvt:instanceID="xmp.iid:d9e3ca69-577e-4e2c-a608-1589b0845dfc" stEvt:when="2018-09-21T13:09:25+01:00" stEvt:softwareAgent="Adobe Photoshop CC 2018 (Macintosh)"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>rʭ�T�IDATx��i�m�u~s���9���}�J!ɲeYV�V�1�-܁���m�$)21$#���tIȤ��QE�����L(( �b$�L�V�,	۲B�%E�݋��}�6眽֜�c����{_DX���7FH�{�>{������G���S
�)�U����?�G�>#�&��(��:��PU� @�G�7�`���}��ef�ğ)����^ ��G�*h�]���_d���JZ}qU@)}V�����ȞC�#{o<M�m���㛻~IO�8�O�]�ϧ�S���e�(@JP�뭩���	�0�Q����<~�=����}�jɊ��u�|�!��J'{oݡ����T���ܨ��ި�l(lkP8�S�};[kZ�E��IkP��@����L�U��SYkB��w��ϥtm2�Gd�HA���5�* �A ;���c|}Z@��r�y�ƽ���������7i��x�{xĀD������[�q��=��=ރ`�A�@��vM,@��U���EᅣLj�*���:O�QQ(���ո�T�@��M|/h��v�L�`�}�ɏ�V@w�rf������B�J����P� ؂�Q��-�@Tc��`�?R��J|�J� Di��;���5

�t؂� \������p��������[�\�|��[d�I��ƣw��s����\!��<�aX��P�!��q^0d�W��n@��Z}U�?MϨ�Z���(��5��Q�x�ŤD-�M���A��A�>W(��xL3$]��ZEi�d�,��dא�!�}� ���g����"�{�
�$�Hl�G� ez�(V@(����"̤qk<��JL�}E&@D�#PI�`���'��MD�=;�`%@�N��9(���v8�_�S�g)���'�������LbP+�T	�*1�Q�aBG���`Q�$���ب`X-�c��*�AAO~��'���!�y#q�U��:t��T:ɪh���Y��t�"�'FPʕ��m8E״�	9�PU4��b�Tnj x
�u����1�i�5ց��쀭r���b?�{A�Qղ��4��|��0����˓�>��H뻯���@��!;�3����~9�0�n��B3U����{�$�@�� ��!M�q�7�{:H�('4<KP�?ҷ�Q�6��hg���)�T!ע�ӒsӜӰ�ӘI�_@��S¡J)o��`�n�x(���돴�c�'V�h�Z!
��	���Ң|_���O"
�v_�}͔I*����o�4U�|a��A�%Y.U-�
Rj�FK�"�2�0�A+ ���iJ��*�*)�l+�
EC"`��w�*9Vf��qh@r��Uᅰ�����EO��Ћ`�rjǺ_�xBVk��Bi�>�XR�](���`Ö�R�X�R�94���YC<�@���-���b��k�" &!fwJ��${Ȱ����L2
2{�Db�!�Z��j�`���Y^ZhU��9�&d�V��f��q��������P�2����)=����{��ޞ[cY�8��(��$
����\u@t׻�k8�	�uP��\K�rRR���=�
T�E�ʋ�!�Ahp%j;>b>�A;$��K�*�l�Ǭ[�����>HR}[�^Cp���J���&1��,��Z��l�0�%���R�y�~8�MIa܄)�'(e2`6P8$,�e�9%4DP��V�'�˕\���cu4�WL��#�KЄFDf��c�Iix6���4��T�
�V���#t�ب�{
I<;/5� �
@׮@��ƨ�gu�]j���	TVr;@�t���bH��X���8�q2K�m|P�P�*!N徖�{&��Md9�� /��E��@ȟ[�W�r��`�T?� ���J�0N?�
��{����Rb�JWVz56x����*�%<�H
,XWW���1�Ye�;J0��N��/��0�&��}G�́D�+AI@
2��e/J���ϔ*�I�z4( ���$�e[�Z�I��t4e�1��RN�E"%VA˾��T�$H.Di�L�W��Ysq��b��b��Ў�۵���*qϢ������FD �"l����)U�� �(b���Xѹ��cE�D�!š��œ�ۙN�l����kX�9��N�Aѫ��G>��@���� �Ie�ʻR	6̡J�_u4�v%gf�M�/Eu��z���� ��#��62W+�bV����x�@�+ij�288•xH�h0A��)���F�^�F�=`���AD��!$��D-Sè�v��|�*�Hj��h��pE���Qi��Խo��ᩣIv(�I�����t�i�H�K{A_CK�m��֖%x��UڔtJ�'�L
�U��B�t���TS�B�}�a���B"�WQ��J�(5�eP=U sQC��@��a��3���W�*�t�Q�jB�z���u��AA�5����ZS\ �$T�T�5,���`�v��b��,����Xt���4���
�%�v?}npY	�ՙ��h=���+�	��5����Ԍ�,��!.�K����	�DCl��B��%Ou	��>jD@�� l�M&X�f��Dss��3=l��*Y�r�(�
Q΅L��
�7�d	�����G�B���\�Zd�ą��.E�EC����2c�1�����K\�b#��=p��N��b�U��}6�а?Q�� �=�:��>��Jjt\�{o�)�N�����j
�^�s��><��g�E�J��\���?R�����M{WG�FF[�$z������U��2�5�4�|�Pž|"�>ܫ�$q�(eޗ1͆<�TI���eb�t
���� �Ih
���q"�5b3\�g��CI��p�:KճXP��8Vp}P�AŊF�A���^4᫆�`9#P��!u@P��Y�����`�FhH�V�yr�!�
����2M�:8�7�
��S,�:�ąM��z%B()�,�|l�ƹ*��\�)���+��t�؊�g�Y��R��:�U�����L����j��(�"�yc��~�Y�o?����<���9\�+|�^�/}�k���ݳ3lD�b��(L$�t���aG\ъ�K��6a=]Ő�1N4[���S��5:rŰ����n��ҙ�RQ��t��f�Ⱥ����a��j�܅a�-���?��ɐ}V��*W}�G�jFE+��d:��Z 	�gf_f�)��*G�+�Qg�U�)&��A�tbS>Rg�B9�J�d)
oA��Ĵ$�)��&�Mr�b�
����;�B8�(ˉ�*�T�g���U�=�=M7N�ت��t�pgGh{-$�nX�H��lZ��	�KZ8>
�7"�;Bo�#��
��B~	+3#�K9;�щ��b#��8R�FKPI)�?2+Bc9���+&N����!ETt�IU��E���K���ͮ�]��!B�#����SO?^������ Gx�k�w���B��{lCoM���&���$�G�2r����qc��]��
���#ʹ�;�}� �7|��T)z���Ȟ
�Ж7!�ĉB:h&3r#3�R吒&��`3�jevC�7���q%BdIe֡b(J�خgHNIĘUbs+9��C8H:����4X�6Oa�5�/��2�`�UD-�sP�"،�K�TN�a�P�F�ks(�

�:� ��^y����/=NϷpp�h�"Z�{Y�|pP4�а�)tȹ:e�fD�d�gh���
��ͦ`K:@�|�)b5e���h�x
���8�H�K%b�KTK-���R�"3��p�ѐ8�\�lJ^"l%],Ih�}���!�NՁ�����=+�,8no|���}���S����[UH��{�?;�.��ۿ����{��y[�^�T����g�2tW2��q�N�ܙ�e6�Ͱ�r6]�$���z�(-L�AJjmiw7��嗢~���)���;Q��~f����B뭨ˊ1
wH�N$��aHD%T������`�����1X#����B#Mw+�M�KJP�'��lYn���I����['`8;B��F�X��<�L:]�b�h�@��{8����	9�*�����r��>��w�����[�O���^�5l�
��xw#�Ep	]Q�XUA���I��(��:mƢ!X�������08�`��O��煦U���V���r��ze�YN�
|��H(D��37\6�huS���N�D���H[�,�A��S<��	����
c�5p�A�_�xWs�o��_�����s�4V]�TW��ۛ�|B��
�*W�2�~-�ow�M]f��Lf͔�<����ʃ�4�]���]ф��ʭz��1:��L�S�+�,U�H������_��o����jb��k���B�MM�:��Qp�xoCJK��
�'��61��:��]�2��|d�G'qH�#X��j�$��C����L���.�7Q�fx�p\�d��Xea�H�����,͈`��b�*��b�^<�D��;�{��Q|�W>�Go.����?�c@ �X����Ю�1NN���u�BX0�e��l�����Go-A*�w�o�(�E��x��p�8�>$D(��؋��)=�៷��<�����s�͚C@��W)�t��q�~�h��lHJb\�;&��>Hnl��n�S/�c�J
*�`sY����N�ѧ�#8�F�N�s�����'n�_��?���y�|���+no	�^���Bo���n�U����׽�N�@��a"�y@xwr^�4J���g�n�1��{�b��ۉxU�aa���}��A�t�sm]�������E��QC>:���B�<�A՚,��:s�u5����è&�)
���f�w
:��U�|8�j�$F���U��l�����"]W	g�g0�
4���@��(���^�fiVA E0�m�x��gF�q� $8/W��bc��Iap���~�!��lpro�eK��/|�����/$&���S����s?P��E���p'�=��������p|Тc��y��
~���"�����?�~�/�������ވ'^�9��W��Gp����� �
$�ߋ�ғO~��L6��@�@v����3DU�ac�BJVP5�_3�̰���{0h��T�l�����Ó���de$�0MQ�pB�^�]�����?���z��<r�C8lEq��A$��\�w�_����;������،���:�����_�Y���!I���[y�{��u7�'U�z�E� awW��P�P	�wҰ��3Y�����M##%G�jz#2�"3�ʳ����i?d��P���&r�_�Vd�^4M�sdF��wH%R�5
=�kC����
(�+j��!f;�H�ҨJ�oF�*Ҋ�h�THd��n��i��m�8��Y��_��[��w>�����y����'���j�&���x�s���p�������_��p���]�D�?�s/໿�M�����o>���߈�[���mx�^{���I���9��0��z�d��_�R��H���@�0�a��)��L�'�Nc��[�&��Y��N�ICh��FY���o����_�����������M���5+.��=��W<���ۿ����sc���E��%��D���j�f�cJV����ʭ\�6���C���jh������vnL2e�Cy�J
F*�c,!�R�W h���"�����^%:�Cj�5�y�b]Ǻ�iÉ�⫅�eUՄ��"@��������"����V�x��7�&�m~��`c�g�^����v�$�B��i��'Nm^�"�4!6�^��7�?��7�G���4�է���?�g�v�:1�~�q�p��~������?q��\��R�%o:���/���(���?��
����?�c?�?�[�_���������';�� �j�C΢�
�h
a��4��L� �F�ɓ��@tf�b:�+Йfގ�4ϒd!�ݪN��@�j����&6�-P�,;�~��?��X�!����^��m�s�ä�����Ƿ��G���lC����*�Fu,�y��+�#��4�]���@�����U�J�DJ�	����'��biW�H$���2o  i:KR�E
)�IA�Y�1�D�e�M�rP�JLX�T��k�䕪�X]w�u��"�J`�Qm�̶@I��Cȣ���5�5���[*Pcj�j���p�z���˃���D�33�:D�{��0O?�̋����:��o���=���'�?�4��=o���(W �Ͻ�8\-�\�.�_Z����|��ދ�7;,������������O������O�
�{����/�G���w=��ß�Y��w�ѭt�R�W��gé�L�@Tcמ��8�O��@3��^Y��_��V��&V��f�@�@�n�O������{K7�p<n���Z
��	o\��z��o{������A4
��ꈐ�{BɃ��}��2۾���{��ɕ\#���°��{:E�{*(),_��!��LL�����1��ҥ9�����PF{�ګ�\��zZQ�Uif�`���E�3HZHMC��zЯ��Ć�(b�!Q���M쳤J��@�h�u�"�2�,y
�Q�D�BwR��'�#[,6ک
܊����P�4�>s����^��7>����}�惟�F�W��o�?�����7.`���g����O�/ݽ���?�7<q��i������Ƿ������I|��|��r|��o�7���?�
|�7}>>��)��c����,���0=^� �Av����!W�{h����2)�8ؒ�Z����X��tZ�A�4�Ԕӑnў�F���wx�g�>X�9as��N*�����
�|��������Cx�|
4�m�K��7����s�o��:h���ۿ���_�%�w�,Ua6̈́P����b'R���3��Me/g	徕鏫�Q������`W�k�>�,�9��FK�[e�M�PC!cB�H��j���m�5��ޙ<BS�B�B�߆$
��"+()W6�F�D��R�
��@ac�	���9E�[�:��Q�<_8*��x�7��Cr���4cQ֩d�X��jJn8�r�Q�R)�����������/>�?��O�O��7n����;߅'Y�~�>��� �px��V�6���?z��?���<rk��m��Kk��o|��k_����>�����9�����G�7�ƪ��|�3���E������?�^<��%n,��@���T�W���{@� � �2A�``�:�!FI*�����?�$~�c��jq���=��( ���І�
�� x�1�e�/�W���F�=�f.A� �=�sTg�<�=Ѹ�%��;�|���:�	������ruQ�n$��Pp�u�0O%V�/UWIN=3��~sHM�m�ZF��8W	F8�)�
i�l�bQM{?��D	̳�6�$ɼ)T>6,U���(�q�e� ����"�8��Ә5�:�?I�І�Uѳ���fl�����"�ߧ,co�Ib�]�b�i���T|��k/�=��z�Go�й�^�4�?�ۿ���������
�V03n�l�m��5�֯~��W
���#Ƌ�����}�����O��/��W�u�,���\n=^"��?����?�Y<v���[&x���҇.΁Ќ/�$+�y9A���$�:�[=�~Wjg2�Ši���Z��4{ T��t}������e�W9*����΅���=�>^�x��=���'Ѹ7���©�����a�� hz�_s��ҝ����y�}�N�@Ε*dTuL��SJLJ��E*��ZF�a0�E��3	�X0�L�w�0�Pe�C����ˁ�|�~�fge�mԗ��v]�[�4�qp�~�����\�RtM4��d��m�]R
T������b�Q�Sem5OR�G�M����M�/K�'���E(C!���Aed�i��h4%/\���V��J������)�	��°iJ��c�%���9���]C�/��x�ë@���B�8Xu>��9���R�]l�����^sB�Zܻ��m_x��[ށ�'�������_���
~�z/�������ß��?�w�#�S����'���Ï~�6���#W�j�W@-dz���Z�k����"�j�<e�	��,
���N�^I�5X�eU'Q*�C.�]�B������Q���0��-`����C�CM��!�<���j��(��7��������~��\��Ā	
ך���t� �	HU�;�ž����~�{B����:�z��V�~9dv�o"�Y�z�.�li��T����L�a̪�=H�ٰ�TÉZ�Qp�!:�����E|?�WB�I����O]iY!�.��h�7%2�<���u2A`V�Ԛji�=`�Y;
L^c���t�u*�;��a=T(&���\B�U4,�ÿ��%��p��_�)����r�K��7����7��'�ޟ}�@.��s���?�����m��E����g��)���N|�W����~÷�	���䏡�:,\��:"N��T@j�N�/;*����
�8��:��u��NK�,��CXW��a���=���*��
��1,Y�XD���T-�g��/��`��=���-z�F��ŁS��K���\�n��7�
�.8(.־p�g��R��)��G	�`Z�{����nj?ƮFUr^E��J�q���N!�Z���&U������28k<)��Y�V`�i�ը4RJ�QONUy�U�fmܒ��R��e@׊|ɤ)6�Mi��b�T�4{�d�q�:TQ�ߙ�}�&u�٣$�K��B1��f]��!�-}f���p���{�����d�ks%�}�z+h��������g^����_~Z���[���_�_�Տ���p�h��k��S�{�Go����<l��������r��x�?�;��K��I<w{���|)�h���S����TZFD;�5�Ӊ�>�5���5F�C@���xӓuw���GY���7�k�긺�ms�+����Q��C�c )�� �����#��'��7��}��3��M������c��h;��_r�xC�q��C��o�Jl7=�V��N���ꛋˉ3�s��6'�H{��e��d<|��mj�}@��>�Sܥ��7��>�z�3�b�[J������0�y��Lq##xq�-S&{|d�
@3:��j��h��DyȰjx[�5��F�n��|��9�}��5%��1������R\R
8��3@��5��l�{�<D���b���7��������u8�py!��w<��w��98f��:(N�m���p\n=n�ZµQ�޽
:�Xo� f�<:�7�'�R0�+�Jl��H}hN�8�@2'4Z_����
 i���`�W�<H�g�J� �{��gYI�9�kn��W{����>�8lp|���E�c������m�6V��g���%V�w�7���)���a+�2��&M�@�W�/֛}>�P�����4�*��ɩ�Ğ�A�Xz�{S��1=@<8��9xk��4�t�}#pg&�� I���jB]k����8����kK�!MzG�2X������HF�T����G��g�s΃�#��ܗ
QQ�@��blB]�jI!<�'s���4�$��D���o������?n8X,�:���
.�=�ف4�9�2WB�<
 !�7���R,ۭ�����3�<�֐�遅\qz���s��&]�\��$)��xC'�P��P��A�Av�Z�A��>���ޡ/��J��2�'���]qhj���){E1�I�j"�����~�臟�C�+xl�����:8�:2�H���7>ց���_�V|�W�	''��|�U��Q�1�0s��
��M�j�����T�PzpX�J�B��Sp��<�+���lRU�$��7�b{%����m,�8�e��W�dMd��Y`��e�t��I�ԃ #������蔒\K�{� fcإz�&\�GTڕ��q1��Gz
 I���,FR =5�,3
���BQ�Ѡ�(�(3m��׽��~K	 �}�>�o�����E�pD�%E#�����	�:��d��ii.�������%�Qg&I�E���ރ�s@h� �� y�V�?5)s�pc���wO��?������w��	���
��p��)N�>�>���
;\��W����;>�Q�;9����lI�n�R�<G����?|�����ZXs�#�w�p�te�2����
jZ��^�c��\�[e��:��d�YZyo7��T�K�[�8D*�٬5eg>�΍eE�+�AO&��`�{�-C5��ʖ�.]Fg���ʣG��T	 y�\�A�`��'�X�lh����zꦺV���r�{8U���<�p
 g��h�%�e-*l�Q(VK��}Դ������1���0KB1�����2��Q�nΫ���L�5��̆����RsGI�U���[��Ti� �r��#Q�<����Y��
=�!S�GGBs�/�d/�X�-���xߧ��9�7X�Å(�L�u��^7e����h�57/�?ï��������y���.����=ֶ/��V�z:8��N��������4�D��wՅ_��G�qάkt��[7�����L?�Nx�
ë�t��q�=�
.J�{�Gl��@�I�%h�`W���֘�-2����f���
��g�J�o�w���W�.��U��Pb�M��h%&��&��lXR���8R���x,U /�ǟ�k���2:�ji�S)�2l��P�T����E�1D��e��!&!}��e�7R��@���
 Ճ���;��	���`�q��J��M �����9^N�J���'\�O*���~����;��8,i+�8lZlXq�a��l��u�W<��mn�˭໾��p�d�]�c�|��AWTU/�O%�q݃Z9�_W�PU�=�WS�!�����tt�?p��±#+�L�tT%޾��)�abɚ#�_2ŵ8|Gy�(U�	󯿯&�<���%��/6~��
��ʜK%�%?����
����I5�c1�FT(�|+%^���l�+�)�&���Dn�Ă��ކ�nU�o����4��=(�q�X�@@�#�'A��0+�(6�� ��K6���M�+�׃����W9�d���\�L�S�RiL��K&S�2³�{FK�d��(��N�)��L3Iޓ9I���O����f�/�?�ɧp���B��Z>tp���P��p[�w�_��<z��[���_�N@���5��w����1MW������9�~��4z\���{�j��
�v�c�T�ٛ3U�N�땍�9�kؠ��e�4��&}�Q ۭ�]��iT��a&2��GNӅ$�e`���<�u�",ʃ�U��h�R"ېua�lf�ȳ��,�n�Cw9wBHS���G��B����$�D��`$dI�>D�^@��8V���<v+N�?�����pM��*J�P��h�9 ��P�&? E+�:Zl��&�Ō���4��4�y>7$�<��x�����+��Y�_�
L|��`�u�L$a�sR�A����:�����A��^������{����`�h��q�l����{z���x��t�M���x�������˰����jа
 �{�����Е��Un4��m���Ҙ��Rbݑ��0k�e�95�.�U)R}|��y�j嚽����'�jn�8���LfF�>$R3�d(e�b��Ye���1�ؗ!*��Mc�
(UN�V�ɚb"�vXS?&IL�
}�K�F��m�}��`R�g��mx4��g����A�f�媳�'sT�~�0�VSܦ�Ϟ�GE<"�*�2-���ȾB�[�8d0�g
'�@�Q�Է.��Ε^��Ei���Z�L��%9��i2e���Drz�e_��ah��P�:���Ə���ѡ%A�
�,���Ɓ�ѩ�=�󠠸X+���x�M|��𶷾_�5��K�e@p��+q�}H��3)�!�j����Jר:���V�����Қ����0�f���S�������� ��{��NRj����~�>��Yb�V�U��dt�����K!y�?��Hb��GIV�LA���J��R�GPI��ܠ�+��/atYe^'bo�����u@����~�f��r	0��IΧ��
�D 8���*˰�Hd~%�-�Т�'��6�(�b*e�5��^�;\f�f1�RY"R��Ls��$)�����uB	��-�^-���Xp�l�U�A��y�����w�Q� �$�
��SB�*<�L-�>{y�w�����O?����/�W��
8�{�:'�A��W�$;P1����ϭ�#̞�D��b���u�{�O�5�1$5�r-�LjF+�!���}
��{��)�r��S��$����aO�>P	�iH6�7�A ʴT�'E�:Q�Di*N �2���������B^+��:��/I�$IxE#�W$6*�NJ����
���g������%�Gjnjt׺vTvF�hؤ�E��4�x?���n�[D�������"�29��@�D����w� :�{<�d6ufȫrh�L�&�>��&�S��h��Q��ɏ?���4�؊`�z��E��^q��[Ɲ~��B8�T���޲
x湗�m��.����ݻ���>'dN�q׳->�#iQ�a��fH*{*�k��L�$��G�')p�^ق���ߠ�q���G��;��;&�݌�b���h5I�C)�{	�}�Ty�Y��%(#�B�+�Q��xn�׫C5$R��Bi~�"1h�XP��~�kS�P��dA���dU����<Z�?���4\��j���P�����\
{�%��J���0?Bo3!@����x1�������ư׾=�Lg&�N-+������{�VR4�z��w߿}��:9d�ʟ�2X�b�'n��?z����8����h�@I���Y
�{�E��/��~��k�p��>^xi�����[�ݻ���U��/�8��]�)�S7����7�΃w[��Z2M�٠�(����՝T'�V����`��ʜ�Uk#��{�H!;��ycv̪Z�J��:)��:'�fJM�)�V�T4�j�xٱ��$�b�sT�5C�a����M�aG��̄�Ae�~-�q%���}�4�H`c�_6Q��w|��������3�����h��%�J��h)LrVO������*�h`s��"["��RE5�*O��(� �ӲI��E��W@��W^�$�!�\j4_WRc���J���$�dJ*߹����Ö��?�|��<�X�Hq�!
i�6 Ǹ�`(zR\l	�l�+�tr�A�m_��..�#I�W'���s���r3�6۝����.�
F͜���9���>���q�*�Pѐ�Y�Q#ns�o��6��u�{�2[m���QD����l��bI��I7��l�Vr�Q�A��Ե�֊��ɦ��)�P�D��|��@�\�J��x%�
u��}h(�x�Z�d6�fO�T�����o��s/��/��`�K,��]ү�+�d����8����$�#F@�W�GS��h�RU�+����%-,�}�O��'���9^K��O�2��qԃdNi�Riب$��I�
�������F���;wo&4R��[Ƨ������a\��l}��Dž(.�@���
8�|v{��w���������%��[������#�T���(�}�g���s4�wt�vW�.��U��^ʄ[�8̘�\]z큰�T�#��h]�L���'�I
wWb�aǹ����Z;�˰����,Fר�x&o�@�-{�"�XU<�36�.�%�Ȟ�ʬ.ϙ���üE�7�y$�%����J��,'�u�P*(d��B�}���x�f Ͽt����>����-��AN�� �
��QNA��� �,'(N���*�A�|�A�Sz��>+r�h�͕�� ~6����k��e�s�Y6u�\��ԥp�1\.*��Oy%�Dg����-���>�O�>�(�Ї����Q�G��B�!��Y��Kn2����Oo}�����y�//�=0�P� �qJ��ع���j��{����UO}%|՛�|Z�Na�iyyL1�묷1Q�zk2=���Z�2/ے���!�{�'�k5
-fj>�SX�<kM�
&_�bvU�bZ�-��EI�w����(>;J�yUx;o��� eH��U��z���-x��"���i��C��G]͚�9��b����!1`g�	�~i�+��H�q�`¼ނ��|�h���=	�`��V �#8� /w�LH���܂�A��Li��
 ����`<|����S����hy�
y�0:��8��[yS�] i&�Epo#���-��n-�_��7�k����[C7�K}_xO�aBq�II���$NW�̻�U�ls��2woi��A�������i{�F�f�-y!��L�Z�wה�OD��w��_22L�[��}Oi�`�*��t��ve�" 9��U;���
I��h�����@�f�4cQ��ݓ;劤F�j�$G%�LE���_G6b�C����o�CV��p���4�Y`�\f-,g
}���i�'I]�d7PB����i�b����c��¢9��+<�ד��NV�
K��М�*�*�Ըm��H�Q-�7�CG��X^7��@z�9��V�ޏ=
r
z���Q��g��#��q�:�W�n{��V���[xM����ï��;��	�=��EM�����8g�IP;L^�#�܃י��D�S��u
,d̙7����q��3T��nt���O�:��Gx�ژ�
��;e4�7 ��:@���I&9DcT��Z
Z1���{:ui�����
BH4]F��Յ)���Ou�e��ʻ��"�4�]u-��<S�>����4
&�&z���-�������U@�\��ju�䏔zSY���G��𒁧.jH���j���6v�|�O��E�&M��m��7�)72S�д)���Dt5~�_�����@P�����sw�/>�,n�
�C�=�A�+�A�

�y�q��^T�����q)����߽�f��_��_�_����ܽ��uOa��{<��`�2��k�X
���2K�U.T�E�nX%
;�#5�=͛y)ڳ
w
�VM���7S� 4��jM#�Ӝ��9a�.�g��9�i���(�)Ӊlo�:�5���x��uГ��@�@��*љ���ϐ%�uɍ-��~�w�
��pz�?�wޏ�]`�\ęY���8Y�$E\�w>$es��DM�D�P��vO+���4�ᷬ7�5����%�P�
�\ٰ��l�}Ab�X��@ ��j#!���c�%-ϟz���Q<w�E�dxZ"x&)aI�
+zm��NᣉHg��V�D�
_�8n�t��k���|n���w+�j�yJ�u�þ��d����Е��}�e�t8�Ǔ�o�M�>���{����ʣ�|wQ�k��[]�J�H�<8�`��i�K�s��:�L2���ɒY���΀a�8�Juf�����Q��mL�&�It�LJ��s�������@9zy��ICD��`��%4�˔�Kg�,OJ�*j�W�m�-y�+0�D��d,3�@�.�hX�y�Ⱦ
���@��Y�_�B|��'A��?����N�K3�=�^!!je��=za�_*N�=�`����=�����c|��oc�`��_���P��
����NWw��7JW
A_Vyyx�n���� w��}���0&}�����P�茓�9����)]$��(������+���*�(�*�*K�����t�X�<;No� ��e��V�>�:Q2x�|H:_:��f���-$�Mj�-�h�,	�e��Y��ڙv�/KH���YE��ߙ- �9��Ϙ��K�����ᖥ̮�^ȍ��m�q<O�4����!��D�f-�\HM�&�� ��U�_�� ��1�	��x� �s@���gn��R�	��W�/�p_�@�	胠����x�� О�k>sy��|�a|�k��~o|�1��[����f���X���Jz�Q��SS�_O2�k�كW�4d���hp��xU�{L}�����U�x�5Rö��W��7s��5a$-?���j�uIMqE�.�|6��fD�tt��jUj��)?�ִN=F��T2$��b�`2,rL������$B���U�r�A�{���X�p.�YD�#��JВ&O�\>�����Zu��C(��i�ה��z"O�#�D�6y6����
����TnrTn��Wƥl :��v�u�i�ʳ�]?��c��b���ƺb�Y���A����O�/�ijh�Cgϧ!Ţm�8t
����Z&l����8-�����b+�Mo��/>h�=�w�����ggQe4=o��@�y�T�r�'�!gG��T�eפ&����Z����Ty�����&RFU��ze���1����L�qOUs�����u�2�aW��
�qu;�'�'��X�BV'y�2����@g��'��C����	J�K쵩bH��qů����+r���k	E�>{�[��d
�!�3N��}���T�@)`��|��./��N��Eb�a�(�l�%�l�������?
��r�rHMQ�M�A{+��J����1�_�
1ch:��*��:;z�~k&�P�%X�D��ux�%���=��e��ō�	��6�$=�T�| �m=������/Œ	��=��i|ӻ߄���/��݋�
�|���d�e4�l�Y���C��}T�z�
;��G}E�H�2�jdn�g�����,�7���|x�T�Se���B��=2�Z�O
GzStԪ� �zkwDU�GE�Ym��1d_�f%k�
��~V?%�S�J()W�.K�c�:jyU�$�J9���]M�%jj���ǽ�4��%��D%�O|��(%D��)=cdzj%�XCX�NZ�ٮ��s�*N.J������ a��
�J� q4���a�**���2t�Cx TŠ��ݞ��P��*c�E�<���]ό.V��x�͢����r��O���܁R�K����l��^q?hP�m�"hŁ��%����t�p�Bp����?��N��Գ/�{��-��/|/�^�8� lb�PZC:�ċ��&bxo����=���s�
Ou��l��z�Ή�O+	�BH�ɖ��Y�5���Dw�N<سa4�VZG�!����f�x��}܆Q5�=HJ9��@jh�+�V@��*�+�˜ͩ�X��$�Y�f����E�Ū�4�(Ňd�H���d$_4�� �RT*M^)M���T �l"Tʏ���դ��Z�14֩<H���R.-���-$B2�"���*�?#?���4q:L5_`	�<^_�w8e�C�)�Z�&M���!a��SN���Lnn������Elbp�@*CÅɴ�j��S�O�'��'�p����(���hA vP
���X��.�x��!�ųg��c��/��O~����7�W�
�=Ɲ�0�A�a|��1�)*�j���>YcR�
�icx�T��Q��H͔����0�{M�2�ׄN�t�q_�ԁ�����<������}���Uc�L�\ɕ`�
v̄�\?sA�f]���K���s	z}�̨�#�Z��s�FGgB��IH�p��*�
Z�ҁh~�jI��gj���[��� C�-!�AR9�f�L2I�$�:iz�
r�mmc��2�e�#Uӫd�]剜/T�v=�7��1�vT���If��Q"�EJF���E���U�R��JV5�`��P��*�wz���'��if-19�!����W�(O�2����Ȇ�ȸ��+23�
�e��B�O���qcI�`�(�(�C�`��}�B��l��~�qo�x�L�ܦ��	ܖq{�o\�[_�'>y��y���/[��_�����h�ܠ���5�&
�d�)޻��ZnD��$m��(k��B���hH|�L���}�
��zy��.FY���`����1�i��e_�\��Md]�f��� ���&	�(��OIyS�,0��m,0ż�^I��jHnLl�2�c
sE��a/0kL%論���T�I<�ҹe*�ΈM�(��M;��$W����Y:*6�j��[4�)=��@�iL�(G�x�A��@�ntٸ:i ���8k�ԡ�N��Շ�`̙�|�
�o���
^��~����!���)�NAzf��O�Rg L�|7ͪ�e�	�J�8U""g31e���6�i�$iѺJaЈ㓮G�Z8�������&-m6[\�QH�d�8��6�
$[/�����4q:D�u/�mo:�;�:���_����/�����G�\��(��.�>D���(IM:۠903Dk	�Q��q�����`��Bl(ڴw(Kk �.U�Q���駽z���v
)�Q��9G^x�d�N�`��u�d*��3��/x��!�.�_��u��S*�+S��fZ�A�!E[����:Q��t(_�%@�ʠ74�%�L�U#ڒ%��d'�x&�[�_K����t@5�-<\��N�cO�9G:<�u8�1Щ���;� ����c�"��!FG�F<�5�[f��v}
T�0E�
/��	jH���X0Q�����J"�\$3�Q�1cI�)�6a��듷r�uia�P � 㔩�!6Hf����-�H*WcpQ�N�?����h	�����O��n�8h�hE���;����E�����(���"/�b�oy
��>�‹��/{��W�2�?_c�� r`��!�7�*�cI�`8v5}#C��T��D?4�9R����Z�(hH!;B�"�bBU��r3[w�S+]~y�D��*�}����W�=����i�͐w2N?-vQti���L%�ϕ>�2f��v�5>8x�:�d+U�5�})� �	YԐ,A�$��|�Qqg�B�}F�o�vdd%�4ZӊX���@�K�$(�w�r�L�o�bb��2L8���ϝ8N�t��T$<��(���"j|�z��nB�ȝ3�`��Ok�в���g��e8�� a9Q�����R�i3(Go/.�[���jjKM��ZW+f�1b<[��	Ī'd���R�I''@�K�i*IA�<\�lf3.�ƨv��b�g��!y�(>�7�`��ų�k|��۸u�B�E/=|l<�"���5p��|㱹��]���t�8�
;,Z�T7ۀ�9&��k/��_���_�f\�_�|��g��ތb��(�2��f�(��\=��Dqd� v��k�^%V#b	��P�?�
cq��o�OD�~���>� ��F_Vm��r��/a�Ù��<�ҝ�QHw�/�p��c*�{+��E��jς��G�<�*���#�i��Ү��㫠Ɣ���e�e$+Juﮖ�~�#�a*Z��HUY��5�!F�-U���/��1[_���=���Ŝ�"CD��(<d"�c���ܧ�`1"�4U	齜������A��J��&��ב����anA�����U2�Х��vi��V�Cd=NsJ�Iޑ�UYӸ�=<0Ȇ�bP-v�LÍ8V1��pB��F�ã�?����O��Q½����>�AY���q���0�;���ђ���c�]�:�u��'>�~�Y��_�&|˻߆���g�����n�%g����'�cZ�Mh�|�9�>���8{��nTE�ٽ���FY��d~D��O
�Z�f���j%��HX�|�D͗�p5����������0�}�'(bM��:
	׵�Q�\G���M5#��UJ��i{����*uO�������w��R�D�����c�$�+�kR@K�cq|1a(H%˓�\5��M&I���@�����ϟ@q<^"�S�l�)ޚ�?]%�D��裁�����z��+L�T6E��8�%*�̔`�b����L����AI���M���W=�]8s
�E�
��p�u �7���1��s ���R)ͬ�(����c��~�|��n-�8^��`��QGX���k�BCMl�S��jS�|"ဘ!��?��ӟ�m��|�[��~+[�K�/�Ҥ��q2%���pP��X������8KFBG	@��
1�@j�ũ�XH�)��$�)�@�9𔿣��c挩y �N��1_���49Dto�{̱U�t��ʬ%n�}�YT��"doV��9Wt��\I*�'�Ҵ��3xƄ,���4����7�a9��z�`�d�	�v}IW��%��x�I��l�L�J���윍��)=��O��pL֘U���i�@j��P$QO��I��"Ѵ٥@6�ۤڏ���
o�A%:��T���%�.U2V�Hl;®ۧ��J�dS�LCYm�uM2�\M��'��������|M$fet����K2-z(z�ОA�l�E�m*�R�v���ipt��S��������اn���:|ǯ�J�㉛8?����&����v�t�ս�Q1Yg�Č ��ઙ:�СB�����#�1��O>�R<ˀr��JЪy*�z��+��Qp�����?�ʞ"Gu��Q��Q����A���M�;!@Kn�d^�8Sne������
�Cm�<r7V׊u`N����\��"�w���D2�H5vJݻIH�T�Y-��j����L�'qJ?���O�8�E���F0
e�.�sg[�)3FMhf0^�G�M�h���Ub:)�Q
˖	��CP��DՕܨ�,3�c�/A�Ma�ҰUR�)�pug؆|5��[9�-�t�f�3
��Z&VivM���^89�k��I��0Y�t��Ztą**b�eM��x���9��G���38�׾��/�<<|���e��v%��ǀ�NCp/�EsRR`�dTz2c�K�Y̌&C����l�v}RW��JNk�R�5�|�h�C�n�V��؊�NTAP?J
h��o�_��8)��:(�TŒ��r(�VR2u����
+��"� v�/�A�=��1١F%���B���IP(��P
Ӷӌ3�G��2 ��H����vYS��Ȟ�a8�� ��ϘKI�ca�c%�{�^���Q+	�q�^����̻��@����Ii003�¬ɨ�->�<�P����5c��Rz+1j�j&n����,�J�3Qy(�M6hWoV�:��5�Z������/jIO��-^����ϱX,���@�+�6%�机2�œ}V��[2�U������'^�����ÛK|��>o}�#�y�B�ۭ7;���uUm�6Q�H���a@�lGG@�p�-�"���9U&X����9cC����&�$V5��j0��F�#;�D̳:�YS�;@��i\զA�0�CSRX��s�x�)?G�/���T��3�A�
]Nk�� ���ݍ��D[��2��ɔޚ���w����wh�zg�����(�ΰ�"�'Κ(
��G�,aR�lZlc	�+�4V�TR*�_{�����Sv��I��5Kr�eZ��(HƁ�xPvΡ%��H�,(�f)L4+�=�0v[#���9c��h��R�Ԧ����6i�����rif#CT�w���4:I��9RRS$g��UA�s�G�(DϾ��8�F߳ʂ"ܕ(ډ(��Zm��<$6�E�-V��3�g�?����?�a|�#8>�"���l�k��:����F�d��GlU��)
��RI(�Ha�$�����'�A^}\��ؠP�'�<�`�wѫ��Շ�?�6�3y$Sd3�yj��/;.D�X%3TO��qX'�C�����L�P£����eϽ�®�!�ӭ��g�?���ޔ*|2{۹!E+Ij�+P�RP'�=��R��%�Ne�ӚBe�/M�/Ϊ�Q�Xr&
4�*�DB0h��YY��p!�8�8V���E�����c��B��~����)p�ni�l�Y%X���4!� ����3V�H@2��b�Htx[�MfF���� iQtm�{|���8�B�`�J�2�([�*F�D�4D��݈i��\�-֛�E���AG��>�p���K.�����#~N�.�Q��FɨΎ#�Q*��{s�X�î�ֵ��8�0D��`mJ,�5��4W��*�d~դ����V�D�ɉJh<a1=h�-��_����"�J3e���:�sT21��OF�Wv�gU�� hY�[��$J�'�Zf�Aӕp���{���J18�0��֣��3:)^���H���吔�2И-~�t�E]#t15܋�b�Y�{���"⨕d��
&�(pJ�[�db�jf�]��"�>AN�J��V�2���<$&)�)΁	�Y�i2�T%�S:BQ��e��r��T�pAB�Ы�J�:��Z�C�˰c����Aˆ�"ӂ��&�1��c�UE�O����cZ�vM& �햸}r����X��
@�!G�J�9�]� ��-�ã�e����o��~����Z��!�-zlC@��K�`ٶX.���s��uF��7�-�%1?�Ƕ�&��Uv��ҮH*�U���D��7�q�d�&*��33�����?T�f�tZ�^@�L��@�,"��A���� ��dv�z��$B<'B&VH��p����B�x߮*A�Jm��4 �乩��43������"�(
��ڥV7�JB+�cq���GըW�:oR��,�P��H��I�#+O��`�e�P�X^����b�V+�6P�S�ٟ}�DE�s{�	�4		8��Zed���Jl��;�ƷM�R������E�JW��
�E�H�����W�[��%4Vu����q����
ab�RZM��U{l̫�Zr����y~~��.�a����]�V�V��4�]
�:�P7K<w�.����(�*T�s�IJ=!�Ut
�rB�"t)��c�\����3��������c�����~!� ��J�(M�`Z²u8�����<��$!�L)�l����H���U�\�e���i�>���f��hL{���"#�+k��ˮk�6�%��'VU��
q>`Ұjm�ʇ�0�b#��3���SD;�A\ӽ�X�b�1 ن�"z��i��_���r_t�b7�ʁ:�7AmO�g�R@vNr�G���#�o�׺�щo��f��UJ��T�Ւr��v��Д����b��S���}��s y�!	�U��e?�f=x�2Zg��;�^ȀR�?I<���J+)C6Uv63�$�S)[K������Bh�U|�h�	�H�Kk�S��	� ��w3JA��V�Ji?2˪�w�6�dVӓ�����׶�x��Ͼ�K	h��Ǻ�����l7`*S�j�@�Z��Hn��V	wO.��ӷ���/z�o-��,2�#�&Whf���
O+�M��s8h�n��Vѵ
ͱ"�6Bi�
<���\�Fy o�7x���Y�(�$	�wt��DEn�<[�x��Ճ�qv�#�4m��cE���`�\�8�LR��w��呖=N	�BU�%f$%y�/kFި:ׁ�G��l��m�+���z� ���}Ry�D��hUe����M&����Y�ƈ2o(�
���E����I��*����O뎭g�,w��~���!"BÉ�+h�`�nr"��3V=��?���A;��a�m�oV�ʪ�;�S�f�t{�r�}���Ԅ=X\�G2羰d�,�*	&F�bqi
��IL4�w�~�,�r0b�&-R
��cg&�B՞ˇ&���ɤ���,��]Oq��@Z�p��N.�C��{�"�*a���)�e�8M�m.{��>`�	���5.NǛ����k���9�d�{Ɖ�X���igL�@U����(3��#-��X6
5`�V9EV�8Ogg�����Ձ� ���xz!K
j��@ROFgHTܯr�en�������h`��3y��ؚ�`*�m���*q�D��v[CD%;O�X�Q�H8�U�!\9��?E�f���ѱa�t�|��YQ5�ٖ�-�#�G�:��q|\���~;�ջS �f'�DCX
Xp�h�l��$?�!֗	�H��ˆ�"���ə�l0���Y$����V8��1�A�T�(�Xp@�IT1���ܠcE�4ی��д�N陏:V s��#V�U �%�zu�M{�\�6M*��X0
(X}�*w/@)�3��Ą*�s�
Zc���56eQ�UCRE^�Y>z�����%�����?��ƥu"��S��?�9�_���	�p��9�?�)���*Z-pp���{\lg�>��}��y��~�^�C��e����U�#Z�h��\j��1��!���zg
��*l�FFcK���t�E�\4X-7��-�m:�hlsH08.��5���u�%�e(�
��4�+��W���>�8���FK�4�8r����lk��2W�
�R-��u�pǀ��|j��aX��'��3m�ə���T��L�
Jj�d�_H�i�,>���Z�*���lp���(���SRL]�4�\Uv	iv 8T͚mvQ*䤌��oM4AxT%�b��0�X��d�l��Cw�"�
�@���l� L���R/��'�\WvA��اE� ��=-dh�Z�h�U�%I�',VF�1ѐO_�
iŧ�P���ǻ����2u6K%�����6.e0<�ٿlj����f��ν���'��V:ݸ�����r@A�A<�#� x�r����v
r��>� �͍PVPb��Sx���N�1J�Gb���9 �c�����*�uX6�Å�a��mp�9,�е�5䴷l;�J�2�v9��7z��e������fe���;��w��Rak%���Vn*c5���{DOv��Z��ǘ�N2����d2##�A�`8�u"G��.PJ$ύ��H"WgF�R/�/��O�(Қ`�-��!F�y6j�Rȭ��z~a�,[��6r!U�Ɇ����c�n��"����l,U���Z/v�3���2��rD���ͨ�d�T(}�)O�Ґ�B�8f۪D�az(�Y��@����=�Jnj��-^�w�Ͼpg[��o��Q��Ӈ(ٮB�p	(�n؜�{`��q�!(zl�G���ٳ8��dHa7J����D�P�hH�p�\6�U�`�h�9`�\�5��s�=�cW��t�0-�ު��}�w-�zU��1��[
�&顙f2�����Bw&�s4*�'��P�C�tt?C�Nb�^3:2���H��'J��2���_U��0I�<�0	~t�X\��:w��Db���!��ЪQAH�`g:��d�]�\u
a��_P�dW�kT���Y,�����e�wL��z˓�C�¬�ݔK�&��K,�����
!���f(�7�Α���#�@] ���E���w�ϾF��06^�h3�M�%�#�*h�VGKc����>|��J���ج�6sB��se�1�ԟR�tq�����\����k����k"�����}�hءi�w�R'fm*��E�r��X��*|��&��<j.�����e#UV��l�����k.z�T�=W�����w�����g"�`�.UgUz*S&��>��hʙT���,I%(DgH1v�T���k��"�lG���6A|MK<{&���(6��w��
�P9����vnV`�w:=�Jb���9�P'�R�1jg��ОT�h�M��d�+�8�=Y���*Ռ�.�}�R��?E��O^fr��S�U�Е�@��]t-.ח�س/�dl�E7J��)��ސb�^��n���8�(�8
xF�)(��.�G��6ң.��A�fSz���̮�X_n����m�$hڄe3����h�ƙ9(Eϒ8P(`�Xu�
c�:t
�k������ZJ�*?�W�Ը"�x��V0�ڥk����gD�E�������a3�v´&/l�]/\#�'E-�nSF�ު��^z� 6�U3LΜ$���5���V]c�T�s)p�;�y��ة�?��P���K_Z�$i(����<k��1�3Р�]K�g���gi�KP
�7���\ -1rq�C�ٌi�Ƞ3��COk~H���*|�"2���
�S��A`�4G��	On)wl@p
,Z��m�O>�"�C\��H�c��&�"��l��*KW��I'��5&4�P��‡@b#��oz\l<.�X��A��#\����-��q�X���
�m��9`q���1�������4q����sQN21:�h(`ѴX���6�q-�k(ˤQ�GHvb�5�U�+��5!���Mu�p�u,x9��&�F��ӝ]�Bp�Jcem}u����SC��!٘F#q�u46PI�*�L�h����B�V��f�u�U����]�B&��n�<}x19x�N�>��|��' :֊��5����K�
���P����j1<�=$����3�rUc��5yP�g��+$�$���J��h����Y4
�
>}�^�e��٦��>xl��1�рnѡk;�X	M��'_k��AV���p�$C�,���X��C�A�b��b�g�6x��Y4�r
����:ТC��Q�7�������Gn`�XF���o
1�����X��f1�&�)�F�:�EC8l�k�ZBǂ��#4V����zK��
��(�+�d��-��=%3
X���e~5a@J3�J[89��W�
y��u~/7�Q�$΢�4"8�̩20��o��N~,ɎB+�ژjКK�/����4C�i���,`V�"!BX�z,�lAf�-�
W�@��z�<-���z;:|�և�F�@�F��=�}��J�1��jd>���,����FU
�LF�V]�K�go��9gj�n�"pZ"4M��1��a�Z�Kwp|�&\�m��A�-m�01�Ln��	���Y�=N�]��чob�0ֽ��N���:88�pc��r١����s4M��ni�m��X,��82�1��c��8���U?�hI���p4Lh�C��Y��}���'�}Ncu�9;�Fs�ב4y�}�z=3��R-&m�Iu2ͱJ���R�\IGj
�ȁ�A�A�ĝJ��!Պ�\T�uⲘMԪf�dl�S�)m2)+Tl%���S��>r$g�U&�MG�`X@��!�@�L�:R�uI�_z�_­��}�B_�~Rm�|�U��;�g^��g���=��a� h�1wa���)��
�|�<{�>�.6�%2Z��#,(�>(.��o6�rz��n�p����3�O��t���X��\-q�9�b�+�]b�.����Fq��9^|a��� ss�������9��@��-rG��	�H�ח.�Ј��8�$�	�s�����r��sp�A82c�\L��鰖�s��}����Wj���5v
$���w1�^�A>�����+
 ��IU��ʵ�[��0݈1Z��'�LTR�L�DH��S�����$GLh��&�R�'�� 7p���P�{U�R�s��@�eK!I"ȴ�
�v/���S/�A�-��G������B�A�n�F�x�`��g�s���-Y��
�R���J����%"�7ry���iаb�p8<<�p������Swp��?|����X!�
�8�>D�*n��l8U��Mt%�{;�Ԥ�K�q2-�dzs4��3���d$��!Ol�g�]�h:8��im�@�$�>2�xPyc0o0[��^���X� TU�3L���LD�I�R��ɩO*�=�����?��{
�C���>`�:˹�֣�Emtf`��ʍ��)�a�?U[C���5 �d?�8����'C�=���џ���D�H$k�+�!��I���!�9�8��褚�=� 0�\%G3�q��WF	��M�I-�i,�䁡��A�E�ᅻ�x��]�s񠓀�{,�K���‚S����^�\���@���5�^_�L�d�	@���Xu
7Qj>(�}��;g8?W����mp����r�a�<��)��
n�֭�q�u���p������n[��يYMe�1瞦�j�+���)�>DH�\�.��UP�f�X0БC�:4M���aa�P��v�P�jt�4�6�H"E&A�N͇���q���pf
e@�yX���"�`��)C6XE���Lt�v���?��w)��#���+�䏨��/*�v_t��HU�#�4�t՞A=CZ��tg�&7sԸ��z�)ʔhZ���B������F$�L�H���|J?����p� ��\��>H������vyϵ�u��.��g#���!��4�^�V��scFpo�
޳��3M��96��/�LI��CG:�bd�؍��#�A��ds�O<w'z~�
]סk:�|�������u�G:�6^����H9����,J!x@�c�Q‘�[S�����)px�@�Zd���C��wO.p��7n���5��z�텇�j0:�`���)al��kc&!i6#X�y�L
u2�2s�h�<�N�D7� ؚ"�WA�e�@�J�D�q�v-��h��U4Q�n�{YwM������e
Kѩ��>x{��'1>�IV=��Gh��>�*�&NcޗV:\��J����Ph��2�|e�$�����N��ɬM=�R��֒8����Ĭ9)]d�n��lV��J�?5��*|�}�G��S�ԓ?Q��粩���Rj��dꝒ����T�40P���x�f2h�
�0e$uЛ&.����y��fv�"�:'�Y�7%֔�񴤦���%.��Ꞧd�䯁36�5~oW�ꕒ��M����*��`�.��=>��8�����3h��k1��4��(�G,8h�9<B�4x���/7�)��*�H��P1w�(j�ZV09�+ڶ����*zѬ���WKp��z����sܾs���8vX�]�b�$t�(i��	�J8X9,�+t
Yv� A�|x���7=�8-��L�������`Rp��S�A�=�>*�a�v�3e�pX5��s�Z��q�	&������M��y(3��j����-/zՊ�:�������|Ǧlb�6S��AB4��qR�u����:A%�N�.�I]l�c/,�ʰI)%�WRd͸A@#�,�R~^c�-��#&ͽ�tN�Y"hU�P���V]E5^U=��GK�����s�f�I%JUfKe�tlv�\�WG��t��J4��Vn�
tuu1l:�����Cŗ6���C(��t����-�QJ�_
I����OYQs������Ἤ�H�	��ؾvc3�`���n���}/ݿG��� �I��]�{የ���G�d�cu��'���[��W���=L�q�%n�'�^ �cV�&��T~�������9�	�y���7n��h���g����j�
���D�z�Yo�=!����
�Wt�
�*TClc��i�M�؆a�T��8}�|P������Ѷ����:��a�pX���k�&R��"�9u�}-�U�~��ZƄ��W�|�D{ߧ���3��DѰ�~"��`�ƕso��7����$������$��Dں@�-`�<w�z�rmN�3]�fo%�bFg��Mf{)XX�.����‹��_I��3�x�D�Ǫ!]ez��ť�%��x���6E̼ir�3�n����ƃb�J��<�f�4��<*a��.j'aPP�e�2�j,���g[����w�S%���	x�T�q�)kT��$3m]��x���ݹ
���.��6�� ��"rl���x�����������
N/7"x%J��8e��GT�c[�!��Eyr!l/<w�>ܼq��A5��qc���P�����./�b�o �8B�F�G��a�h�-�"q�qm8�0B��0�J���E��R�^���i$��K��5�>`���-N{Ph�HpX4�b&,��e,cA]ۡu�w�2gw��J	�f�U�uW�����!�Y�G��c+�A�aM�k�eg��:*��([B� K��NS�а��"O�[f/��WӮ�g"�ղ&
D�X/E�%Bb�-�U�x�$u�ZX��*��Bs�SN�X�N�N�����'�)����TD[�!M��v�`�����3���VH*�	gYԛ�u��r�Hs�l���JV�i����@.�mk6��
����i���^��_��}l���K<r%�Ѡs��e���l�9WJm�xqr�<h7�-�/�]�t}����M�8s҇�kф+j�DK.�⣡7�QعJ�@������<��]x<��G���#���{UE�2�Ρa��H���s&	����9[BZ�)h�L\E9b*>"Ā����
-!����ɘg�b#+:%8n�C�С`�w�	�e0�،o��\�,�K�M���a�4@�1:j�l��l�Ԏ�CpP��{��&}ի���av�F�O��+ˍ�	�k|���O'�|����S�P�����I"�)�%H��BIb��g�U22L3#�B
T /�$Oo�[���D��2�Z1�Z��t`,#�Iģ�:gy��˕}uʊ����6���`L��)��I�4G]�|�4f��3��`!;�3��#�P�����X8/���Oq����kq�Z��[�n<�)�w�j.���1n,;�
�k���<���tN�_��&j
�Ȓ)�����.�� �=>��
����3|�3�prz�Go�����4X0�K�@��d�z����Q�J���M�4X����	_x����4�bVH	q�2x1���]�PRܿ�{���r���`�,��5U-^��PY�2�.V/�]�E��Zc,�0%S���� �9[R�@���{�2f4��x��C5ͬ�[L�j�W3��P��	l�G�����D�l;�cl{�:I�8ț$L��lz6\���*�
Q�.�J�^�)}�#?���^��p�D���|�jn$kTG���T�ѩa�P�aNvQb4�K�kf��܍��U���K:�#�V�V���P��GC!so��V�pZ�6����W����A��D)M)�(1c��¹����5^�{�������!�(�-��G&�V�
+�m�{�#?�4VA�_��pv���kl�!C�5�<���^4�L�T�},�]����v�qt���=AvR])�:��䀙��h;�B�$TP�OU�ڄ*
4�=v����� V>%�im���,�q`��[l7��L`n�tQ
�`�p�bv
a���a��Hf���Щ��ߝ�V���=GG��UQ\��ٗ��a���1�GNh�Չ���U���@6�*��{�n�
=��#��M�D��p�v*�����2�a�d�KFP�}��tB�\+%!l��z��!Xc�x����5����[T&x�:s0���)��iOGn�ŠB'l��୻d�cȑ3�V�!��!�*� W�Z�+r��%�N֬���rJ�P�e�J���|ľ��z�N�p���Bq��
Kb\l��J,��5F��x(�qp� �xh	.�hq�opr�<�EH,��U6f�F���#d�A��n��'��$ۛ�`ge�e5��7PI@ҀnĴS?��>Y	Tbw�L���A�j����dPj�1h������S`<�w�7�}g��Wl��^bӾ���D�`�mвFثsX���E�E�,��M�\4+������Km��qy���H�]���9��u�2��
$ACc�dkl��mp�v��$T츽�JڇH��ڌQۺ؃tM�-Y5[T$8ޛ4{R���,�<{��Б)��;�҇~��'"z��U�Z�\ɖ@Bî���<��5�j����?�Dx�V�%�]�h��Y`^�k|�6fdT<5k�'�^N�A[�MЫ���H7�b&��O�,�<�AܴٜG��%ۡ��L��U��W���R�Bz�=BѸ����/ ,X�k���66�;��H��`4`�7����3��{
�f@���R��lc�A%W|}��"�o�S8��x%�ي�O4ƍr,���:t��Q�����I���O\�i�&�>���d��qj�Dkd�H	��w�.�{#
�
�^���#x`�%�/���ٺBȃ�Q�,&��g�Ų��!wu��Zt��.J�/�Ql�b���&F
�E� >���=�S29�^VU1�a�����V�;��ؖ�	N�7�g7j)ہ佭*h@QŁ+�Ld�\PH�z�q�oq��@Qj�#�{�:8|�3FA�8J��JPf��x�h큢�p��j�l�#���l�p�@�I֚�*
Q�q�4a"�̓>B)EM*}�iE柡"�Q�]�T��I��A6Oşdd=�{���h
��1F6��!|�Q�y��E�����h���
��xc�	4��A��@��C�5�`t��Q�1+��RPM�*�Ħ/�5�����✄������/.q�	����$����7\������9η� e�
��O���9U�!���c|����<*V��)�jeu5!�p��(�DqJ�7M���b���!`vp�Ї�T�LB5'�0q���
 �K�h�o#IU5��ㅀ^�5`Ad��F��{Ċ���|�
�8lz�6x�:2v}��{�s���v��=dg�/����AG@�h�X8t�������]�X0a�����"��1h��l�Ղ�V �~����ȩ��^�®��,�U���TI��^}=��e��5X0�$Cʔ:��f/>�H������[��6`�17��3Z��Q�k[5h����H%�ȱ�����bEP9��?��&:n�����g��Ϩ�)���YG�c�k�(J&��X����C�D=%�4���"�@�@/�m�;t�H�*����R�%��R�ƙ*�6k@Rr��ӄm�+,��ST�h
N�������а��p���,�k�S0K9W��cF�z�30�����IM?쫹���w�N����Q�A�po��e�D�{��b`A
�n�X48t-����ǥ-��`�"�ٚ���A�g�5@R���<�=]�E��|�C��$&Y��� �Q�)��טLz(1�H�pG��j�M_
Ta ��D��L���R&��D�Kj9�IJL������@�2`�r,M׀E@!^�pp���Kwb&+�g��㐧 �[%H P��0��i�1�V-c�1���t�G�G���5F_U��G��q��ƚ{IW����ڒYm��SN,(Q�Ψ�nS��Q���
Mg('Zyb����iԋ�Dl횲��*�%�I�Ћ�������^д-��q����Ԃɣm?:�C���b$�	J���J�	Si��~�#;���~�\���<.
gǵ}'%_�ʘ��t��5�NEL屘P�M����,U����gװZןy"�=��RƥSU�5���]��Ș�;X�T��s"��0�P�!X߄��>婣y�@~o�Q�D��@���,��Mb�Z�
6[Mܛ��\�/%nAl_��89?C �h�D��G�X��b�������>�kIt<Z4ppX���-<��A��=��#6;�u��HRVpDX.�X5QPq�{l�3�L)�1��)��3N�Yy��R��>�L2�T&�AF�Hכ����
�>%e*e?S�c��\���=�5��b�#�8�Ĩ�M�������*h�{��Ћb��}�F<�-���Q�=�K@�:(B�a��1Cn;E{КtK���h˃�Ρi��M2L�ѧb����茘$e=3+7�6X��� 6��	R!1<'�)U���&Z��4V)˦E�U��u�4%��} @�k�g����xU#ıÝ{�x��).�����Z-�8^b�\@B�D��XN�Z���<���"�zx-�VN陏~�D�Js\$PM�S&c��V�R�����J��2�A��y�?��1���U�lcR�d4)���=
���a��	Ij���{[�S�\2��ߑ��u�k'�zZY�����H'��q�X��L��������k5���<�lx[�u_���B��m�{�
��]�E�֣�����d�7�zx(:np�c����{�_l�-2�Q�J&Y2#�U�)�&��$�!Ċ�qX��D�l
\�/@$P^Y5 Q�0�@�C3�JϪ��I0�j�Q�+�U�Q��:�9bq�i�gR��&��eh���|<��
'�`��/V?j��l��
"��Ϻ��B�8�bA��-��O��΅Cc�TA��]$>���
���U�ժ�sǫ��aѵ8Z0�E�Ec��*���!6�{QH��hE`�M�ŁhU��{s��&��T�;#23%ˈC���
�E{�h4��Q��fl�*ocJ�*{o���\����[l}��o�����r��>>��+�/z01V
;lpВ!uMF2��콇��:��C�|J�|��O@t ��2$�ӌ���{*ˎg�fI4I&^tm�ݵ����V���e�y���U��PsG��tQ�4@I�EMc�W��+ʑ��9�v�r%3=��J%U3��x@��R4�'+�v�P����ç��@,Ņ2�tXu;�Q)��g:fxN�/p�����tk��j:x�	����c��R��L�}��il�!v˜U����Gu��T�)3�BH��{�µp.޵�i���?�-�i�X�%-%����C����
M��c��ܰ�x���!�����N�� �����{���7"h]kpF5��T�R�.[L�B荎��6Xv$��g��	�<�[�v����=#H�|7؀ġm��u1�,��U��E����ѪÍ��`�X,Z&tN��٦��e����YC����

S.&�sfA`D���%�b�"D8h;4\�얾�����H��*�Z�蚨���`�6`֪���%6�<Oի�$�t�m6���~I��:���a�X-pz~�M8:<I���9H��l=�(3:p�W��N�cO>y���N��o���A:�rHj�>/�*����סo�0�X��A/�jv#�iB�`粆W�ʅ�V�����A�e:*b�h��H1����*�F���'ڲƃ��a��8����4:�)&��CM�Gʳ7vQCQ&#���,M�S���w���}u�kp~�VKp����5��5��!�o>x4M��B@۶����  Ԫ2f9��d�0�Ğ��&�.r��[�0E)F�\<e�R�e��.V5TJ��ݘ@��9��|s	<Y�\�,m�ܾ��Ĺ��	���Y�+��F�>�J�3�dسtrUvL�~�g
bd��-Ic���D��T,�Lpp���a����}��u��E�uﱖ`�S���!ܢmc��Z-�\�88p�q���e��¡�[�Q�8\,q�v`6��r���W�L<Yd'�&��qXU�H�!�:�"�p�:���iO�|�*6!��`�vh�&���8��Z	8�n�`�E��{��q��C���XZd£}��8��GK<~|��\@�}d#��8��1I��{��H���������������1A�4
Z�X6
��3C�B�h��'�����R&nv�s��=�k>}a��\��]X��
���D��‰ns栈��dPH�y�`RMK��ӌ�WR�Z,���N�jD�D+4��i'���Ɉ�0���1�fɁ����j���q�UB�����g�5΂U�7��wq�M����QU�7��["���i�hm�C��+�D|����B�
��W[�B���T[#���i���A6-.!�`����ui�'�cT8��c�K�'���1��9�d�;�\m�P@ր�J�62���}k�/`5M/��]e^❍3��
&�K%�����Ȇ��A��Ĺ
�aO�*r�8������C�����'/�	�%�c�4l�"�Q�5��kq����
n68X��K�Ͷ�Q��6�����{҇Ȅ"��u:/C�X���K�=|t���A�����bU�c�-�e�M��h�q�E�����p�m/��S��̝���9`�O<r�_�hu�.����sQ�����B��{\z������x���EN���NDp�&w
Fdp��k�uڬ����FsM�GW��3ִשMh��\�H��7�6ֺ��n�c�*�!-�8|��mHS���m=�A<(u�9�阇�t�XCi���p������,#r���yJ3Ř@��Pi��#evFw1ը���rT+�fM��_��V��Z��{)�+$rq6��r��N�p�\ø8?��mm�.�k������uqk�{l��!>�a��$TUrj��e��>X�%"qѰJ��<�h��tv�[������Jך��\A�p`���YIdZ)��zw`��U�5���
��CLA�$֒fg�$=���m2́�5uc�݁@�����k>S)�YS�
Ҩ��-�IN��g�36�A���Ç��/�6���d�z��(6����٦�f��C��֪���:�Ū��h�Ã�]��E���G]�Ų�a�@״1�8�H��E��
t]�&{T��h���*X4�6�Pע��[��خ=�o.|Q�C7n��!x,y�>x�����;.;4��T�ZS��l����|[������K\l��D��X�����ԉ*�a�R&��x6������-�� �?�k�:�T��o��{��
��&s�8YZxUƦ���Q����&X�������.�-y3�Qk4&�g�u���qYG�j��+�k����2��M�˛�}�l'5Ӡ-@ŷ0���9��JVH3>��*AlE�C�{�Y<4�����2�U����#A�ֵ�>�l}���b�ـɡm;��Y��G��棠(٦��9zvl������<)�UATQ0��*
9ꐝ��]46O�i�ԇ���6(6!Ή4�!.)�R��i�LԢ��G�Θ�����(l/c��ƾ�b`Ns$l���V+��i�s��p�,I���Ʉ#ke�45F I�1�3�1�: 0
�c�R�c�c 1�k����ùm�a��`�o��j�re�u�Ą`���u��ˀ�m����о�!�8�-��E����5
�G:Z���
V��-㑣7�m�%+�&­���O�8,�%I�x��Nݰ�Z�`Qn7�k����L8\6"��:���
/�9�����r
���Y$�|>���}�����-.C��y���:�[�n,�S��?��&>�oԸ�x���\,i�Pmd2f���2!�1�Uo����Y�z�����/+�
����FY�u�yZ��@xD��և((�6
3��>�)p���X�V�
E��:�j¿�I�ڏ��q@gH4��9����2	v`B�;�3�U� ��#��l����W]�d��]+��<iS*5�Av��l����>��`�X��8Z��	ƺ�KIΠA�m�<g��w�����ؗ!1��c�O&�=�M��P��%^и(u�a�Z�� f�.&.bA�� �A���*.�/p�٢�&:n���7;�M�"���71�9�`�ʉ�-k�������<{\v��hQ Ef$*��20\��gk���t2;�:X�����U�Y� F�Z/�$��BC�����L47Q.�[/"�:�b�E�@�~��ܹ�������XVm�b�u8>\�֍�o���A�G��A���7�ŁCK�N%�xD�����l�\�sNS�u<���b�S��[G��
N/.б��jp��ctm3�cI�⍰��);ܻ��œ3(/�
���ҿ�џ<i���Q#s�kژ�--�5U�H!��v(��h�r4f�!3�cNQ҄�{�)0o_m�!{��8�ZXPM�ذ̣!�}4a�.6>��
�3�<�#���5��	\�Zo8�*���=p�K2����}�@z�����'g#��N'-c*픢�K3�h�� R�P�8B�V}�Ih���p}	��E�Q;xߣ!��i��>j[1��&�����媲�D�t2�q�W��Jꋨ��妚�G�10WC% 
�C������t��5;ɤ�Q��n��3/�c�z���EO��ªi���aa��R<�uH�nA��\a��@�R�&I_�*^G�%)�k�פ�ʕP�j�����<Q������?XE5��C��O΁i�T�����8�{
�h0�,*��ﲱ��ZxU��5/����ۀX�*�h��lpv٣���8�GJhh4Mv@�lq�Z�]tX,��a���A��%c�4xx���94���"�lrm�ц[HL�z��Wl�`��A��7Vx���Q)هx;b�}�^�%V��%�E��&Ⱦ��f�q���{�]�Fp�lN�_��O�,�9nE�4�âm�QK]�*PI�(���"��TM�JYf�X��rh�H�Jwр+�4�D���#Fg��>�������8���ql����Ɵ���YEfYA�$Ebal�5�%�j,u,t�Y7�[�d��_5�*p�7�t���H-ŀ��ˁL��vkY�y���L�
8����t��@Ng�+�M,5��9���86f�e̎� �z��E�g�gzu��Bl��xiΚю2;�,�`"l�>�:K�1D�
�ԅ\���>JĊ��{�u�U�:a㴶���i�c	!�E��X�-$Nn��g?��~�.�7M��Ï�������q���n"�o��$i�o��̌���?k��:�3�gM�1�ጘ�pJ*3�j�鋾�?�}QR�YYYu[�Uuw�T%Uih���R�92�$8�1 �s������{LI0�8��wD�Z���[o^�*�lmݕl�%��-^��}��b]ӱ��3�� 9$-/~��ZK���Κ�j>�zK�K��E͝�9T�(��ڹCFǴR�:�ɲ)�+J��w���>�T�8
k��~I����}��r"Ō���Rb��'S%Ƅ���������Ϝ�Y�
�u��'[^|�󠯬�+p�S�8�^c���8S&��*�r��Ĝ�9�s=E,�.|�Lqb���+�)�x�$n��qb?E�X)�r=L�Ī���_��/�s�։��q��C��ҒuV>�f���q��/���E�:/��F�JE~gN~'�6d�xs$��R�յ�5�<��%$�w!��92L���l���'�=�$�9� R�̲/lD��ɲ]ZKo�7c�<Wں�f��w(�G��D�U�����.��yG:����Q�KQ��ˠl��r)��:�>�v���lF�2W���$Ұ0�,�i����
�E0�����ʼnq�U�4-�'�$�P�,�Ո��]x���4SA<R͵�6F;Z��r����|�'M��ji�Zeލ):>��-�e�q}���Y�;P��'�=�W��>x�Ű#���;�k�<��s~��a���)M�c��̗J���sm��*AC57ဠ[�8Z�ڤ����lx�嵑�;_ wf�Ka�u��;bWe:�գ"�[���e��]u�"�V�^�Ψ�R��{����<�)�"�5��5��h	LC�y.]����e�a,���Q���f�A0��O�Y�z�;��;�oV����;xt�s�l��'t�G'�����礗�c���0L�T�$^�c"V�ΰ?�9�lxxv&���O�a�\��Hׯ�����@ׯ�)^�?����p!��"��R2�.A}�Ta+#r7k�>r8�<���y�Rv�-m^�[+N��J��*;W�M�.y��ة�
��y�U��'씓��2��RM�1w�q���5�9k��ՑFY�a@��1�W�]V�Ì�m��[8�Y����q�:��2R5�<����H�٣|����tX�Ď�X����w^�(�[��/� ocS͌i�YGg�*؎��].���/�4W��js�H5���"�)RM�����R$�J���h{��t �y���dL�֑F5R�P��p�t���P�,M��~��:_H�P쒡%��V�3��a��9El��7+l�|��)�~�w?�����������#^}�!g�'t��L*�j�weK�ӭ��ʴ:��_�3h"��B�`�QZ�qsVk�V�V���0F�rd޲�s�ٴǨ��dq;}fe��U��Ƶ��>�c����K���ZIE�hM�\d4���1�V*��:w>�ۢ�'�g�p�r$GX��`G>��
��Ub���z�d��k���~~�Xu�uX��zӳ>��ˣmǽS�:�lOV��,�;��6k��C��%���zrU�f�}�!EƘ�} tO���N�5�/��~���
�)W6]Ϧ�Dy�t�m����׍.��qѹ��;%�6]1m�d&�5�<xO�r�F���,�O�RAyh�M�:�qVn�i��cg��[+SJ���=�Oi�)?�fb���k$^�"H�.�ZuT�SY(3��&4(��,e��)�,D�Y�d��{FP�Qc��a1����!ǎ��X�7b�ĜV�2%�֠PJ����[���"pJ[��G�k�a˜�9B��2��.�O�?�52��lj�J�/\b�yϺ�b���C�z�z�����'�"��\�
�9�]�Ú��`���[��ۜ3�����Ga͛T��i��g!t��8#��C��LɅ�z��Dž����}�9|��O�\3�B�;�yp�s/����<\m�5r#i�G#�-���)-ɻ�F�ފ{���/r��1�U��H�拻��^�6�^� �@��	����;�m�C1�A�
E}R���k[��,�AJEGnr�I!i��ﮪ@�$�<d�yD��d� #���ע�*iF+�>�!��O߼`��m��]���R�/?���>�S�aW����02DxF��؎�z֛
��o�n�O7<ڞ�x����Cgxto�s�k6���W�䢛"C)�Q�e?�bd���"c���)�c��z��Ô"�[֡�
z�q�FC�E��U�:��*s,>�42L��~Z�9��1
��{R��e�{�q8o���zL33f!4�C�
>4���b��\�;I���S�,4��Ńq\��>De�bɊ�h��%A��������t�5�݊O�9���1�i���[�p�)�}o-}#�.d�-��1�Z��$wC\��}p�A}3�������W�C[c�l �˜S+BZ�G��E��1KEv<-S\RQ�NF��༾���j�&�T��(]�[IIXV>x�u�ݵk�e9>S�)i�XE���4qj�0�)�G�«0�D�V�=��M�^)�5m�Ye��J�&���8��d�X*�I߳�1F>��~�9�|�'�=�Y���k/?��?��RĐ�'UG��z;7{��2�ȋ[����:z͹�	rv�7w�wpm�K��F��x�ʪ�P/��e�&t�ٔF�S(�v8�,d�U!�:��X�j�D�H'[��(��)�?7��.E&*S�,DҤ7�|�i�b	8bJL)b�<��r��]f:<�T"S��X8���4�b�2G�!�K)%���$��j-c�b7�v���yt��Y��	�g+l�U��6��DR{�U�.	��.͟��qS<�^p���f�"tO�w^f��T^��31D����)B��<�H,��x��{R�8+��R+!xRL쇑U�"�N(�F�����"s}��H[k�-�j�N�u��Y�
ʯ�ѱ:�ȅR��D3w�j��9�T�GI��g������#��wx`�b)3��f�[��aZ�K#��H�����H�������`K�/�l����ˏ`yM����t����Y����X)��u��P`ƳK�i��9+�5:�,Y����uO[EOs�I�<�W��y���lr��x��qh0o�:_�%�̢�l'5n;Ǧ�)���Q�]�:p����<v�s8�<�z-`��.z�5kլU!-3��1����æ3�^8}Md�,�`K�\���?��_��9�}~C!sv�����繇[ֽ�0e�(��'$�6�ֺr�e��X�hZMN�?�.�s�f5�o��+��,(+
;3�n�OtAބ3�H|qï7��2~�.�)3Řy�t�B�r����$Hl#ך["�����f��HӲ�A�B3'gW�0�(/� )�ζ�O��/l��j�+^�SJ$��8fJ�)Fvq�:\��q��y�*���*��&xJpl�k�7[ζg��j̓����-ۍ�4�ÿ����oV��*82]iKaJX�o�� ��'YfN)2���~E��i���Kۨ㰂���0/[-�7��8I���K2�u��/�*��rI!����:�q�a�I�4�e6!ڹmGw6Iq
3W��2<�9Ip&�r�X[[,Pm{��ǠUdv��Re��D7�(&##�t�-HK;�rD�[/�a7#���5k�Sh��|ٙ#N�Y;3�V���M-Y^���hiuz�ksd��6�0%AO{c��9����ְ
�V�Irԍב�q�e��:X�H���u����W9����F�)E*����i�#Pq�Yh�KQ�d�K������>��uz�.Fl*�HY�Q�)���I�\���e}���s��z�$�*�)�N�;��P,1��
����W�;��)o��;~����z�+/?�[_}������:�Sa?��I�X͔���FUQ��Әud[h̭Q���8��˼k�����RV%$�q���EM�|���Ϊ+�}�g5:�=��Ji#�㳜���+9�y7�Xk��'�&3x�J-󈺨�V�cY�,Y��̉�10N��uBC>~^���aDD��uF�&�w�*��b���Ș��7��ׇ�1���~*\�B4�K1�m�a}�]����������'NQ�Z�ݟ�xC�n�
��//1NT��>y��g����X>�x5�M�)�%g�b�@Ѱ�mB x+_�6q����AQ6PC�/��w��3��i��(
۲�Me�,+��%�V?`m�jutv�V�x
U͎�/�n�w�Er;:g�*(�8�U�'X
Ie��Yr5�Tt�t{=�P������,���7X�T-�RX��o�K�,�+��i�`�UG�V%2�e�cXOp~ލ�"d�#�9V��f�gc�:���~���s��8
��9.nvG��vWE�`�]s"够sK�\���V��w�"�0L\���5^,KLEm��fk�#�3�ګ�;��(�ʴ�]x%�p1���YYCg6E!�7���庞�>�9�0N����O��{O�9��������|�gyt�%8��&ٝ�4+���EFsU�B����Ü�9���k�s�h5�D](���V_5�c-����0���<��ö�����SN���Q�Z�XXQV
8�sĵ�Q�c�\ggѐt�EO6yC��D�ҩ���ȥ�t3�<P���K4��*�8R�:��.NRr)�\$�c�zj���M���sk�u��o���#��Y+�e_��?lj!Uv1]����O.L�)&����UD)�U߳	����0$qZ�;r�b^�&�1�x�,k��m x:����4ݯ���E
�%��(����p`k���vX�U���R�K�m�o�@�@��:�����b�|�s��Qr�)���e����tx�5�zt)�"�a�nM�=����E��1'��tޫK���'���bU��FA�v�7��c�)���t�_����r�;OPESjT]=ȃ�ԒI)�(���ق����9G�Q���M�3��ʬY�i����zA"f9b7$�L�y�uӔ-H��Gv��4�P*�ܻO��yru��q$�]iV�m�:00����Tn�(�]��2$	C�8����&�� ����s3G��r)�0^J�n�3�������6�
�6���Z�siJ�ɗ���0LԚخ�����Ӯv��جVLS���.y��O�ͻ�ᓧĜ9��k_}�׿�/=��f�b���~�dz���Z7/�&L�͛Y�8�H�����Z
3A��n�HJ�
���6���e�V0U>?�xo��Fxn�i���S*�x��ʌQϥ�uW�S�Z���|\�W#�R-����1���U_4~��5NIR�dRS��,��1q�')B�h��<���晳H�O�[#<ٱO�	�x7[���D*�(�Ɨ�O��_\8�ε�f��q�op�,y�\Z#Q����V����K�U��Tu����)�ٙ��V7�P]����;6uQ�*�v�,��������RY�:M���Wz�jǛq�.�*�^TE���m��2��dZ.R�B�NB��m$�B�����;E����QRC���Nz�(��`�Y���.0��%��{G�&��b�CR�f��p�
�����7����^�0
UV�f�1GSH)SKf$hʑ�<k��"�X����Wc;�
����10�H2R�"�d*A���8�;�%jU;�Zd!��섳��7L�(M�vP+t!�^���-���!�R�R�C7wv)gvè�;�V5�Z�RU��@R�1���-���ڒ�l��.���3�;;��Ei�Z+]�Ω
�r.r1����b�8��+�Q^>��o����w?z��f"�^z�������xxv��p=�ُ�L�5�܉e�8��-m�l�B1��vvM��ɩU%�m��2&Ϸ64���1�L)w�H0G�cU��9y����H�u)u��U,Nm%����X�^DI�|���b�v�I)�D:��$�E<(Y�ɤgv�Ip��i���	1+�!W)QL��c�"_֋���a���_,���g�Q.�H!T��������������漕���H+�8ebʪ��m�V�w��g�nФ��M�m�6ܲ�[U8Y�4�r�)��X�Zs4E��D.�f�_�.w��]綋?c
����I?��J��A�ڕo�n�p������B驵TŸ�*(Ղ��وV窧�:#	�\�Y.�)��a�w�,l�`�"��-�Z���o�^5�뱦�Qn�*.�vUS��k��:}����J�0N�55�y'v1�Ê�.�LY����Y�M��\'�v��B'잘r�;�Y�"��n"i�
;#��1N$�ge{=�X��9��9�=��4�E�w�Y�(
���2޸�d��r%�+:a�KE"C�x�'N���^TT�rvz��
n��-�$F��M3��R��ܶ��K�,�-�2�P�NF��y��=9e\�c����q�r���������[�����F
��׿���U^}�>�n�4�c��?B3��{�������.�C�m�,��X��hH�$�T �rLYՑ�2��O�^���V䶑j3.�jU
\g�b{Z1:�3����i�5�j�6:-Z��b��G��7g����D��Ss!�s�TC��\��*�
�1��;�BLj�V�lFFt�J�䲩�2�L5E>JU�Ҽ4��O���y�������v���!�E��1��.@ʅaIՒk%4𤧖�������I|�&�o���*.�U;v ��]��7���2lGi�t���c��1��X��ZGp�[A���T2������qo�"h:^,e�|x���<�J*	�㑘2�c[{��B��GlC�
�[��fY���v[5�9U��d�����<�=֊��T��4���9s����Y����c�c�)E��`��@�#K(�E�v
e��h&[^�1��R�n;/�T�`�v���#��8��o���.@P�(`&R�軎���O�I.�#ԫ�vHM~;Mq!"�K���8e��\2]l���؍{�����n��P�;�	oONpN���)�܎0����5�Q�4���Ι5G�E�U���Xw�λ&)j/Aנ���՚M�)��gOy�g�񣟽���������^䏾�:���<<�PK��睩����_T$�.�󅘅c������[>�[R��1Rz�w��71�.��ȝY��jF�#Ƣ��\��Ez���¢�N�.��E�g�,*�LۅYS֩i�RU3�j4�OS�?��>2Ĥ`!eU�$i��0Q�	�B݈��+L�0�HWI�)�n!76"0���w��3�gx�q��y��&IY�S$euc�,}ճ����R�{�Ի�#K��F+��H+W�@=-0�"T5W��:�Pq�3��r|1���R�V�q�=JZ�IEv�e��*r�b��1�M�I��p�\6W�]�0��=譆�4�zs�6?�ՑKY���vTm{�g׳��:	d�K()\��㬌����)��-J�)'�R�'��O��\
)��-va�]X���`���)3�B)eV^ս��ٍ��Î��k�$����l7[Vk��$�%N�8CM�PI���Æ1���H�2E�t��1�)����2m��{񹤜�)���@���.�o(�q�{�'T`�i��,�3����&!/we�˔ȥbM/�/�Y�ͣC��މ���x*��EN�V9kYu���*<}r�[������ۼ��w���KN6k^�y����w���{x��:�a�p�/�_LȬw��Ko]�b�;*���CFҹ��ő|��2_Dž<jFlch�����M*���gq$F�\�2��-���xNQ.���2���݊�F�+%��Q���P�b+L)R�(�d�"T�\��
��	D�����L3�6f�ሲVivn�Kͷv���K���_�?9=|�Q��bN�i�$k�nv;���f����J���V @��j��_$����ͪ�h�E�&9
Bq���f<,z�[gu�_U�W��3Uج4jݺ��&aUC�k��{���%���7��\=��ASr�3��*�Mȡ�r�YYN���'�gf��S���Ѷ���0_�6G��ˆ�p��U�<��S*�D��B�F\�F�OŴwg%X�C6p)�68K��H*ֈL߲�L�UP��@}�-c�C�_�1��������!��)���mW�}����-:�0��I�h9b3�bd��prr���h>z]䶔Z�[������rȗ^�1� �믞�l	�s��s��8��ai�V��,�5G�֗��3μ}/e.־��ܘ\�Z��m�e�$���Mk�W#�Э89ٲ
������������?}������׿�5������W^��醔*�a�8�
����۪�%Ԕ[��e�^�w|Sj-C��b촌n���syUV��:�H�|T��c�qi��E(g�.9tҨ�l�x J�u����=8*Q���$Yf�@,I/V;{�J�1Y6�\�X���P'�!'JMz1U�J�T"�]$��?��E��y��{у�f�<�g�:ii)G~��t���2dQ�W&��j�l��X�J�0���6n�*F���潂ʰ��n{���*&NVcHIf���[,��L��"�7D����Q�a+��R3c)�j�zK�<�z�9
��r�Y?�����v����m�麞��8���Y$�Ή��(�@��Y��%��s�R���?��K�ּ�\T�犐7�C�\
��{�Uyg�r�8�1N�|`傘��$�sL��༒e���݌)A�R�"��b�9/��BS�LSd����G!���ӓ�z�ل�SM��H9��t�zŢ�.����ij��z�vs�1+bJ�t�o5	�y�����4V�8�;�MK�ˍ�V$���:1F1+.�FC����wͧ�.e>H�q$��B�&f�`�ܗ�OiaB%�1�k���\����4��?����u���f�v�����O.x�w�կ��ͷǓ���Uǫ_{����o��׿�Ç���0�w�#
d����٠����fZ�� ھ�j���u~�q�,��/����D/����^�:��N�%#�Ȉ��2wNGb�\Aw�.ԭ����F���Z���@-g�H�K�4����_�ESý`�fO2����@���Ɇ�3�"�x�H,�"�M5/ͯ~��Ο�)�b1���sl��.]g�y=R]ˢBjOB��=􌵌1�b�X��;�savTʲ���Ɠc��|i�En��[�1����
�?eEE�(���N�)�a�m���Ϯ��,e'p8k胥����9N{��
�i��3��MXQ��#��%�:qO�B�aޛ��(%2e�P�)���c�&.k���;�u��M�˹=`�9�w)2M�%Cʉ�ad���tS3c*���;1`Z�;SJDͫ�I堦�,�Iޓ�����^;�B��1UH�����p�vÞ�ɱPs�{��I��f��:�饓�
a��c�R�Z�ɷ��
VX�V�4B`{rg��X��7,V����wc*�0�Ƞфn��X�h�M�c
��A��1
e@���f�s�2����|a_�B��7�\]�-8�7�AN:�Qj�taE�;j�T�#�Z*�䚰�Я;�O6t�qs���~�?�?{�m�~�9��<~�_���x�ۯ����П�����CR�~�uY@.b�U�&j�2�/o�}��0��ܰ�E�b�,����]�BT�NR���U�-�,�<3���IՕ�d���U�W�hm�nK��Q��ʝv�-�>�g �KCqB��*G���F��8�S�Q:H�L�4�����v���o�#Fy��6�1���#6Sw_��p'GC�Q��LW���VJ��L��Y�z�d�ѧ��z�$	�� 5��3���a����T�ڍ��C�[�&.X�L.c&T�ٺ#���cb�N��R�t���B���Y���!Y�!G��y���:��"��4's���\�d��ϒ�&>��0�@�de䤋�\*Ɉ\9�wo�B�`S������!i��g*�I�jfJ��T��V�
%$�٘��ᆧO�%c��ul�=���!K�j��F�*�{�Tn��8�N҅1�����ɩ^4�l��t�s�ʐ%��z�*\�1��q�Lh˥�.����8�ù��ER"9�[#ȶ�2�}Y�����b'r����Ζ�#[�DV��Ӭ�j�v�;Z���1;�z�zSʘVe��*:He�V��͚U�"NO>��w�y�_��6o��.ׇ��/��<���|���g���f/�f4�u�mX���b�iGGN�v�4���:b܋��l���2�Z~xI��z���"�"B��\�<O*�/U�B�Dj��ֱ�Z�h
d�y��3O��]�h�$�̼9�:�"��2��&2S-VG��E�?�Q#nDQx#ZW.Ϳ�wvq}��6����#�Q��:{o�8c�����_ё��]�ʋ*�z2�nq�S��w��Lc���`7L��,劗.%Ƅ%�A'�G��fmE���r[/����aG	±�.8�^�)솑�S��cg8�:�Ez�U(��r��	�
S&e����"F��[��Ĕ��PK���X�ư�:u��%Q����Ή�h>��"�~alὛ!���8QRa_
)U\QY�L��9
����Hg���-Pe��X�l�*���1��2���#f	{t�b�0qqs��W��.v��8�{t*�<0�8�"^�i=���V�V)���/�+�#�q�K��d�i:�^����3�ZS��R8B�d/׌�1�[�[�"֠�#���*|��[R\�^H_��6D���w��'L)��7P�éo%FAz�� �ƶC9΂&;=�d'R�xOg,��|��Ȍ��CIGi�>�g[ٝ�
��/x���x�o�˟��w?�����?�����s��l)9��ڱ�ceN�8^�*"�;�z�a���jr��*�T�Պ_k�x/�:�9
oj=�;mZ��d��m��-�i�tj�dE�'�
��(�j���SJY(�t4��)��K�u�-l+g���I���a[A˒!EهUD�k,�DJ���WZ��h�K��/�U8��ȥ��	��d\��@I�ͪW-|U«�[�]s���^[�b)�r'�̓�@DtʞB�9.I/]�*��êf�a�7`�VGӕwfQ�,���&���V,�XmΛ�%�~��S�-�OǚgW�����:��uŰq�M���!	�$�,e� ��x5�Ն���%��X��.�l5�C�S­��cik�=CL�,h��5��S�Ue�.T“$N���RpYK�k�r̙Љ�0J
��:͉��“���Av=�~Ŧ�P&�����9R xoxxr��5�d�8-�/���qj�+G�B�q��t�����ًP
1N��mI�
����j;�Q��xɭ�TǷw㤳��+)m��c���
Uv	S��\郥�V:�q�f�z�>��d��İ�#C۴hj��N1�4���zB�s��2��|׺<}_Rì9l+�Y���FJ�d�ٞ��u�Fhf��T2�Y��
�~��p�>�׿x���Oy�7y��x��1������|��?�����OLi�5l��1W1��K��X㾶3m{���o$�*�x��y}Vb΋���/ђ�j�d��Ţ�[`;ό^�Q�E#�2��=m&E�$�P.��%|F��6��X�R�L5SL%NiNt4�Ԧa(Q�[�4�����*�`8`j�|��޶g�zI�B�[�1�Iu[oW{��yO̅��a����'r����(�'�cJ��0`�xAUwM:��l:���k�wB���tV�$=��C%yc��"��$,q�t�9a*�&�9Mb,$�M�d=�Pd��㱶�9Q��%�«�P���E�m����JΊ�oJ�#⼩���4	N�aZe�p֋�,֒se�&�*�{W-Nw1%����kYY#Y��IL)��@ɜ�^��2M#1Y�*��:�γ�
u)91M�1q8W9[B�1�RJ$���i����b|����3���h���5�7w��%�#g�Y�Ƃ��.���}�b�>�_�њ�'�<�Ǫ���w�U�E�e[h���.����Y��l�+s&�rp���ԴSb�I�z!{�	!��1>A�~V�K���U�2�|�E&PC�ʿ�!u�09�9Y��@��>�l�E�����z�v����?��7�|���W�짿�>��z^����|�?�����K�s���͞��a�x7�
�#����ʹ��曹����<���0��pg�����VQ������� M�m�/���2�.��)�֑Y�'�\�l�t�ZeC)R�׊��:�T�"{�vX%��7%��Bxм#�2�^���Ʌs�|���H�Ef��p�Z�p�&�bt*�����n�����WC�ϯIY�
�Nz�����K)��	u7F|��X��u��X��0Ω3͒�&nʢ�Ⱥ]����Y�0e؍I�J�V���O�"�I�GY�m-�%Ȉ,���q�
�t�#��	d�e?E�/h���fڌ)�FFk,}�X�KR�TKE�|1Yd*�y\5�-��,s�>R�x}�Sa���~��nVxg�"�L<\��@,JI���Nv\W��憘3��g���xC�v-k�jŪ�d�<��y��w��㽛���Ǯt��[nL��r+G��g�1�����2&��.3��6�
��)��y��eq�h���jɮ0�7�~��wv�%.gQ&:�:�u�{�4ö�_�9���p`��['��vQ7	:��[��n����Qc��h9o_fʴK��:-�&����y��B��\-}�qG�0k%�F��}��t�������}����������ӎg?�o|�?�����_�G����˛���jV㧙/�v��I��,�T#�C��`��yE�LЯU��E����?π&�O�hs�Fn�Y�-��ԣ��6�g��E֋�aJr.����ݪTU��΀]�8�S�A�I廔�+/?ri��Ӌ��w����QBk|�Sr����缴ֈe�Y������u��1��>��U'z��T�r���ּ��+{&���Up�j�\�w%K�Y�莈3�Z�Y>����2۰�
��a�Y��$��.�zI[S�d���z2�!tXNW���Zv0��a�ÿ$Y�6�Tk�.�h4t���=��]��ɂ0v%4Ny�Jn4awy'�1�4�����+�A�g�@�2O#k_x��TUG��$���*�",�¶X*�'O�-��J�[(�i^�Y���w�qAM��~�\��>�\O3YXSf^�2����s���]�'�.��|�_�8=�O�^+��E[^m݈�U^%q���Ϣi�4�	v��'b�XoY�@p^�5qv��:D�]�������k-''[���A/E������$u����?�;jK	�r$;,����5�.�{�`
�:*���~�0%N�?�v����YM��6N�N�nV�1�?姿|���/��O��ݏ?��t|㫯�_��;���ͫ�<�uO)���=�����.�\38y����,͓�
�	��H�"�a��$ր��kd��)�$ҖR)�c����ae!7uށ@��((�rv�W�H93ւ��L�;+2n5F��b�*�w����_�?��_]Ĝ�s,8�D*�TU_��A(��@�k�gӠ8���D��oFR�>�u U0x/�a�>H�@�	�[�!2����Ô��8�!�B��9�Yp>0��p�Kj�!oU^juq�ԉ
1Wn�Ty�α�A�%a7i��FE�H�䭣���5�˰
���{�,�".�v�P��w1-�%�s[�gY�gŞ/G�dH2���g�(�4�u	]etU��f��I�z=L��:8κ��IxS��k�o��O�!UˇOn�^���s�d�q�2�/ �9��.�s��kڇ����.�����-�/��ݚ�ሟoc�Zfz�(^s�1;�U``4����q&�ާ'���Z\���n�ZoA&c�V:�M��p_��7ݢ��Chq�MS$��.�ι�(|�<�p���a��N�u���I�J>.�k���y�s���d�~��[g,Q{ݼs�w���sQ�ڛ����3��g��RK�i]u֫N'SYu���\]<�ͷ���?������߼�ө��s����?������_�g�
���S��V9�ҡ�E��G$�49�S΋��(*���Y��r-�,�{����c���:d�$�`����������sRA�V�_���mR�j揚,SɺJ�R�Q��r-�P�^���g}Q�9��0���zհ����J�����)}�.*�C9������l<��g�$�6xϔe���y��~d�"���wlW=`��*ζd%���"1e:�X�@�8��53&�E���`u�+cF*����eiI�X/	B�(��2�8��c�UQu�Sg�-j,sVf�Q.�Uk���3$*C�KÄ��J���,�.t���6GH���1gn�������봜is�C4Ƭ��T��{�>p����HJ��5�`�<$��9_{V�R���~�f���銾������=��	L�\^�m�Z�Tf�ޒ<jc�_e�Yt�R;٣�Xf�d��)�i�Ym�q��9/@��|q�E:���2wh��\ N7'l��e��əvpu��SC�K�'y��o�s��Bm�8x��:�LJQ�!�C��59��9يD�&]����۲P��K�]&w�q����]�Q��L�"d甈9�!�:�
��Q��4/ة��y-G�V�3�@i㧊xz6N6+�q���~���&�W?�~���1�͊׿�5�����盼���9ߞ`+\����Ī|�腗8j`�8J#(�p6��j�3)��1F��J1m/g%t����S�v.Ǡ�����
6�$���b լ4hQy��e���b��[e�.�ElG��UL�U�w�%�"Ș�irE��W���GTm����3Uɫ�8��,A�����0f���91Mq�jx�vl���g��<yz��W�Z}��ꝭ�Qvt��j��Ή�yΚ�d�SU��7�VS�e�����^�<S�lhl�t�6���*T#���3�Y��Z\��!��NL��uч,X��^G٠�.�읟�/�Z�(�ȫ^����a�13��f�a�Hqe|�'�wN�}q��)�*�X�>F�	�d7Y!��cb����O��{6+����qv8�-7�/ؘL�*�V��Qr�3�E̪-�EI����,+de���ï���G��,R�DS�܍V��S:4V�+�E7�;�����-g����M���cZE�f��Y�&�43����ej9�3�S�~}0dUpm�'�JQ��f1��_ �E�5�Z@�_/Gp����ֻ�W�rZDP�huf���\��K��x�""�l<�8�%y6��<72Z����,�}��_��~��_��7~�+�S��K���}����{�?z�^|���3�#7���ƃ�����T���,���c�I=S�x�FC8Rzug�>S��+�i��z�R~�^F��4�� V����ʊ]j�q��EURU�(-kβ��B��U��D5&6q*��/���r�K&���V���冀��\D��y7�4�k~y�c,��g�w�w�TX���Ӎ��ĺ�xgH�r}3iα;V76+O��a"f1�{˜^ש�s�tVAyA�Ѭu�8Ĥs`R�K�������c����NR��!)]p�q�Dɰ��5:�E��٘*����8�za7q�"��y�a�q�.�q�C��Jq1I��8�o���6�2�����Ĵ1rp.p1ʃ��f%|H��1G��O2fcde=���X�a{�3L�'O"v�g�M��	�A;Z?WT�`�c����Z$��K����a^��b���ʦ�o�Dc���6یv�!���d�@�Q�m���w�fi̝g�#����?f՟��J��ɠ\�NJ.���x�%�8	_���$���.r�ЙY�"s�zsď�,c��]�2��xa����(�7_z����9~mkE�ȭN���1Z yo~�U*�3����"f�1�O���6�Vq�'
\+�$o�	ls��IS��>�����5?�������W��*������7��
��m %7�=cN�lf��L�m?�1q^����.G�Db�J
3+���ze�Wg�|4��D�RK��g�\�u�˝_Jp�E-��2�F�.��I*H�_�Y��
t��K����p^��R�{��
��$�.k���I6t�\�]$�1M�`�����LS��dC��d����#S�q#�&�[�q��L��1�\	���T�d��*���o{��9�S�a���ARTq��0E�T��dՋR)	6Úʔ2��a5[�!�EwQ5���ə���U�;�ٍ���@� x
h���dm�;����E%a� H�T))��f��9GI�q��G�����n�xc�g+��I��Y�7S��0.����beY�1�4N������{�匩��-�*p��L�ȽӞ��[CL;�4�$��Z�<��EZX]�G9k��j�x]��z�g/Ŵ�b�ae��iX'L�[����Υ�"�.��=�-�0��j��0
�d������4��
�\Po!��!�v#|�r��Y�K��c3�oy8���h�i��kVJ���{��R���/���>�%Zei�Qj���-6����y�����_�j�)i�%C����2:��#OII'��/G�L.�-��3�'+R�\|�1�z�]���o�'����ͷ!%�_y����������׿���=�f�a�쮮��(�`E���c��?��g���Js^�^���n~�0�6�-M9V�]��v�Z��.���]����Ji`�t MPM!'����hR��K�/�Ϳ�{�ty���B�U����V����&F~���!���Źh�az�O��3���0q}3��f�8�ꆠ
(Ø�U��cz��฼�LS��$`[8���.Q����`���R�S:��������x;kgn�I�l�*
�˵�$��~'��X���ͪg��a�9�~t�ٺ���<d�qR�E]�������)�2LIQ�q,t�cj!�S����>�`�nV�À��G�
g+��Á'C���Z�	�4��j�x�e�w�1sq�6 ��1�k��=�S�o��qy���ɍ�I|�3�U�S�{O��3H�m`�ޓS��W�8@�Ô8LQf�Y^�u8�t2RT���[��֝S�OY���f�|��?�.�Q��n+k��O������ƒ��9�ٳ;��n��b��G���NXX����Pj��mҜ�˥w�S��ʾ�����0��R]�6d�rL�lk�,���M�vg�knQ�1�tj���C��K���0=9F�˧쮮	k�3��rf"֬�l�/�"�-��1]�a8??��u�w#�z�]��g��O�7���y���gp��o���?�C��{���/}����La�����R����qV�_-wNfq�`'sI#9<m,�H�Z5ة
1�	T���:l����l�AdF�
�T�BI����wh&��B�*J���@�?��]t!���#�5:g��]�������'\�H�\N�T��������8ENW��*�c�T�5Tq�`����ug�J���!�a)�G�
2k�N��r�����A��V�U�:d�Y3qJsˍ4�oy&�YV3�o���lTbi���G���2f�n���;��-�H�K�`�j2�����'��\8�csB!�
��0�
j�ɕ:�̃u�W��rx����_(g��\�1����a��v���y$��>��0��༧d1O�<�Y�LSa�{r�ҝ9�*TV�E(�|P�c�R�(�2��A��8*��V�;'�����c��G�QgQg��D8��Tڎ
�~{)���Af�6q�y�;�t6q����ZyF,D�au]��I��GZ��kG��qt�$E�)E��W��XE��B�,}��]F�zFMm�p+�.à����1�juTw�1;:�5g����؇xaJʌ�p��5RnV[��<���8�l1d�{63lPv���4�d��d��X�ݧ��/�_�ͯ����|�֛3������~��-^y�YN6=Qe�Ӕ�EK#��|�k��r[�;{���&���+�&�kM���e)Bm�3�&�4+ɚ�{�:��k>QN�8��p!ˮ%7ϐ$^����c̹�,ٔ��m�%�“a��*2��
�c��Lz���S�d��z��r�z@����Vn�\aF��#�8��K�p�b,:oU���}c15)����щ� �,��2S���W8Ug��Q�R8h�p�����9�u�*��,��qOI�;��u���.I��GY`c9L�!%�V��R�3J�
�*1i��d����!�I$������:�,c������8�kGp�Ӱ��d�]���̏y\�[����,Ӕ�b+��1��8��:�m�~�'���Ӏ=��X�f�����j�y�~��x����H�ryu#N�БS�1T�B(V%Y�jxY��t�g�ZA� :��c�[�	ctn���LgZP
�}�\�Ln`O�ʌ�Sx��xf]�0}��b����`F:�Z���팷�;fP_��>z6dO�S��Q4T!H	-�/G't9v&��R�ʔZn_�K�ΥW�
E���+���´S�T���N@�B5q��k�u���R�,i�%/D:���F���X�td��b���%U���<������6�����;����o�����p�9��<��o�_����_��Wx��k��v\�t��HV<Y��Q�\�喴h�a��r�a��c�aÓ�Z�S<vBE�-��.�:��d� Q��,Jг�h7�[�.�����Ξ{M�3�S�z?�h��=���c)�4�-�wV�n��w:c��s� N�tΈ,�E��
qL�����(]���bm=�ڴh���\E�Rr�����TV��~Ϙ�~EA��)�J:]-��Xw���Z�XN����,�i���Xb��0�#��>�lW+V��%����;��]�/WYX��Q+>t8�I9�e:�"8~!8�*���JE劌k�p�]��y|���Z�����פȅ).���@�ro�ag���>�ْ�ͦ�IO��;U)�l��\�>D�1a-8�pA�Nk�2zZ���aS�������������-�Z��M�޷f!ŭ��̔r+l���P��8%��k2�%��ׇȔ2/?<�٭p²��`�&�4
��q
8*�t˼���O�<�!HB$�Qe�y�(!Cҥ���iJ#-*m� UT����C+��(�Y��v*-n�9�[>��� c��x��p8���Yr��Nԛ ���c1=Tz�Oh˜J��J���׈�� F��OQ�����J���KB�9�����L�'�����o�?�%��_�
�6�^x�?���|��|��|��gy|~F�
7�=�q/���n_^I��2ʒ�g��^[�k���c�)�[\/������&���z�p��h'Cѐ.���Z/����s�R��'3Z��a\�J@C�,�U�C����)FL)��^^)��ƗʃVM�)��:�uX'-��.BQ�a�t�.��7�Zu�t��m}�g�3�_���\{*YT/J�u�c�0H�6[-����պ��L��D�C��D1���A�vH�aL��!�:R.�7�ò�hX)"u�b,z(9��|�1����gI뼤ƍ�Ķ�e�~��DHFP2��<EɝVYG,�5��V�8�Ī�tƋ	��������'��n�"dJ8�9?]�u�{��8�>�d�&�����w���%>��f#T�TH�IĹ�^{��ab����:E��c!�f��p��N����
��:bfw��3E~�:�qd7E����^z����)J��71��]l1&�u�l0Ef9��=	�_��>�����(螶�	��f��|�Z���^��ic�z�y�ߓ]t^my�c����(|���T��0b��.tt�J
���������Y����#�VF�CN�j�����g�?{s�
���S�S��I�!?��\u��*����g��C��O>�o��_���������
��ܚ�������ݯ�W_���Yw�4�\�n�RB3���,2٥#h��j��s�j� f||SR��DT�Fc��&��TQ��Ir� �g�S>&�����7�ÿ�0�s��y[�|��C'�%fƔq��Yu�V�J?�i�:+�C��ޙq�)Iֵ���r�1�C'$Ȝ�a'�������k�9����{3�!�s�aMU���4$�~�B�������B�-l��d�f�����5�I�^�&Yj�&����K�s�C�\�#S'h^`������V�P5�C�>�d�ynsB�U���Ѫ�2�HUS+�ᬋ\�뮣�����d$k���f������`�<s��������������o&����w#�����~�f,lV�q,\�Mo8]�9YwB�L�h��M�o-�f�JYD3�| �Iڱ�w�I�2�ꝥF
#R�m��J.���B��H���7^5���@YGb�ʺ?�����u�lC�Ӟ>�I��F���Zo��R�P������$��{<�Nw;S3�J��5f��E�r���T�1EC��E��(���#�vA�vm�Ѧ2\.��҅��a�8p��!^E(圏8k����j���G��`��ZXz
���:b�\^%ܺg�_��jϫ�~����yfG-��(�ˏ��Oy��gy�����Y�z�o�<���=���F~�����_��O~���_���|����w��?������}�o��
�RMbwu`?�Uqv�ŴH\�o�9^����T�P^��w*��\Y��\��ש�D��9���3KΚ�S1�^��g���ӓ!8�&�U5�8kD��D
6�} �a���~`��X��H`���J�Y\�z�$1�ݪ�C�I���]�A�9��+�7g	:麞.�aA�=F�B�]�x%�����v��zl=�L�"���u�qq8p5�#K�X�r�c�L��~��<�����w#�~r��po�1�B̅U'����XA�`�"0�0N	�-��cL	㎕ߤ�c��MC[���	)�Y��s̔��^��"��E��-��Zjʬ{�
����Q�dg{�c���$�'#�)Z6k06����'N��<����;)15N:B�q��Bo ��ḑJ�B�V:B�<X:cq^\�
��
�6!H�ap�`��k�K[sk�*�����1R]�����R
����U x����(?q�nI� ���;�}M9�&����un��L8n/��ڻ��[B�����EA�"�qF�$��`��kU���=�2����(X�P��NQكZg���f'�[2�;N���J�5�
�R�5{��m�Vmx�E�v�(YfdH.�3�TV���ϟ��'�:�99a}��OXϦ�Z<�y��+.v�P|cd�SD���Ǐ����c���l;˧Oy���/���'����z�����������w^�*�>�<'�5�4����0%	�SEfi�G��KU���1(�'�X��f����� �����Z~I��g[��5�Ë������^@=�N�L���6���zj�GG�
��An*
��^��
y���x��|��)�}�	�%F>:g�2��� �2�Y���Ol:���
�Q"�;ʨu��5
�9�W@��f�Z��N�'N:���'�����1J�N��j��y(pU�(��G[�z�C5�ē�A/3�0X(�T��T��0���ի���z��؅�^FَNe�ժ��!�KCM�Iv�>H��\f7�!�~"��٦�1�� K6Fv
���F<�u'b�ǎq�k
WW{n��
b�sư�<�9V� ��$�NL�q�d������.p3�V���_JT�轓��8Y�jg�!8��Z2M�s��`u���Ώ3�L���^�p��R��j�<D�v+��z6}��O�|v=hEj��'���8�٧ƒ��vr�T�0��e)*�=:�5�H��$_$Uͬ�2��Q�@-v��!���
;�;0�a�b��n�
)� ��X��"�CׯeL}񄫫J��^&�fVt��9�_yT�T�|����x�n��<hac2��)H<5&�����<%JN��V��]���ٚ\��H���0%n.F>��4q�
����l����ζ'L���-�����o�?��z��g����}���᷿�W_y�g�g�����ݍ��m�X�R���k�ŢL�v��PE���bf|{VBv-VG���j�죔�QPXʥ����|a�;>��A��x@��)��q(���%1�K��l:]@%�J�[��ֲZu���h�_�b���on��a��"�J�Wa�[���[��Wf�1�C�r���DS3���96^��d��S1Fd���9�=�Mϓ�+ju����{v�=]��w=ހ���o��fi�Z���vV��Tc,�$c�6��Ԝ1�y�i�,�\Ih�2E鼥a��%��j�����N��:���~$��I�ɗ���F	Yf΅”
%%�}�v-N���>��RY�V�ۮxzqMVaD�
95'x8`�.��ᐸ���q؊��4�L���s��aa��io9�:��2�W�G���Q�+#�Z䰴�QK�wpH��1sH�)�NW��:0f��k0�����2�:��s����d�&��Y�4T�\o����j�Ĕ4�\�eǘ5���-�o��
��9�8E��
ӊ�R
���W;�+-sޛ���3SY�J��n7��Ȼ�}�4���������vM�yԺ���������n|�@r�(s��,����K�`s�s��uc"�P�T0��P��f�s��R�H�0M���(Kô�j�}���	���^���_����g��o�`����/��?���ѷ��7_{��^z���3J��7��#�a=��U""�ȚqbU�5��
s����x&����7Ϭ�\��1�(�}A�x'c�!F�R5�#�L�!�v�u`��E2��
�P���5�p��8�E1 ������˳��V��
q3��蔵�4V+��K��y>��n���'\��;ݰ:�pu}�%wa�{֛^\F�?�V�1'n;z�|f%��b�Z.�}5欗<����:шP;WN�B�\��w��;��ы�Z�3�9A�Pb�����ԡ,�u��(�g)�,��"��OÐ(
\�+��XuNrU,�j��8�x>xv�D�
!8vC&��a���v�	�,�;物��F�b+łz�i@��xgAhֆ�A���C͜u�'���y޴�Co-�E32,k�j⃧WO\
���x�n='�����!q��<>_3L��.J��5+k��f���(%��ϋ��id�,�ɿ�B(�K����l�T�z�`w��7K��[�"x��k�U�S�LiP���ϒӯc�*+�I�8�꺎�j͓ϟ��{�1�]x���=��mӜ��'�ڻ���n�%�w_��H�.��Uq~�o��f3_�U_!	��$�[�FB��ab�=ǖ�o��6t��TK�^���S�i�PR����v��Z��}��7�}����6����Ə߀�	����o�׿���5����x��gج�a�f�*��L2���SI���<��%��6ٲ>_F/�"��b��K.J�sb.��_��snmS^��qJl�B�اI��1�B�<۳�.�b6����3��Z+D�&�[���b[���;:���h�R�Y.�b<2v6+i}Y��	�o�
�ұU��&8B��STyx��yU�8A1[k(�p���`,�q ��zê�G����R[�\1&���MQxbΙ���t�(�p�.�}1e���.�TR��FYOmG�@��:6�G�.Э,)Wb2�	�'`H9�!E9pb���@��O�t^�m�S<�q|{��(EI���.2Mr�X�^��7tkIP������X+;��Xͯv[e�<�6��w��7un)k���vˉ�$����5�]��ϯ(�'�8�{˽m��.����fL<�z�|z��Ryx�Ca��qR��㛏W<{�%;�V�(B36_҉,�y�B��rH���,����,��R��o��d+��~��~�*yb��4��QZC�c(�Ю��^�1���G��w}�8�l�=/���=�9���Y���G��q�[�M�3�3�g����b�=z*�`[j���mT4S��-DX`�N��6n�Q��\f,��o��Oljg�}����Y�:9�K�G�2�VB����3��gۭ�+]�x����[��o����폹�����_�?�.��o��׾ƫ/>��{'X,�7;�������"| �"W�D�� ��
�B2GvVՋ'eQ{:�C2�\���?���z.9�"�
�^XOI��V��jM����0����"6�I�z��b.	KP�@a�9���8g�]�30	��9�黙��ZӘ�2at)g,�;��3||���fb�{��SR��`�"&[�O�2*�q�/|S�V.�V@�S*��
[aG���$uΨ���JҚ66���h�u��RҮ��*�
�Xʶ"�N��bHI:ǨKA�`�Nɲ�P��fW�F{R��s"i��n�x�a�Za��)��9��+��a$��Tr��
�VTx)�p��9�a���!VG!�Jg���z�0@��j��6�����Q�mW�Ú�x��.Y���c]�B$	r����IbL�א�*8�.�`u
��(;�ǧ[RL\_'��	�,)J��^�rqey��k�fëgk6+�9ͣMs5W�m] UY��ᬡ�:)؊|F�v�m�^�m4�ŴZ���1�V�ҩU_ʑ��x�\�H�|G��ۏ>�w���=g�g���+<xp��~�4F5�qg_S�(s�{�wb��,�_�f[�Z]��'�|���ߑ�6C�&I��=KW�H)��dn.��=_����)��#Cu^����[��8U�����88Y�9ݜ2��~�)�!�x�m~��񳟼�)���׿������W��7��K�<C�]�Sawq�8���͞[�]9�JK��L)֧��'��\������ޟw����m�%�un�}:���0N1i��:�V�x&�8�C ti�E�,����8qV��u�ժ�u��k�T��M�+�Z�HJ�=�4��ȃ�-�Nz���ݓ=����kE�y�M<8;��A�LY������T
)M�<ò�=��:��er�K�1M�
�^yAv14�-�T��}d�E�j�?���:�
�=:9|pX��ތb����UK�,η�H�1�d�fh�R
7ɋp.̠�U����5�v�(�NS�ƒ�e���v�����q���IPpɅ��r,F~�)e.��U�eY�z
e6K�c�����ҙYu��{��<8	t�h���,�L�9=]��gj#�,�U�c�'7#��9�yb�������a�Y����!:6~��ٚO�oxr%{!	橼�@�ԏ�#�OFNO6����G�;V݊]�n�6��[�A��`�")gVA"��I��3���aZ���w�Z���<�E�c��v̥6]��=W���CrI�{��W^y�U߱��)�̂���D��w�Uo=��-�1�"�dA
^���66ׂ<���1A�,��h��DyK";��Y�6x����ū�R���Ø1�F
�Hw���䫒ve��j,8,��l���|���|����ŏ���%�z������o����U�N�c1�k��i��̬V-I왲@���MMU�+'U��K�����"t�<t�a郧�,�T'�M�:��$XjOp���%;�{}39J�jݳݮ�������l�=!6�5�4�R�lݳݬ9L���Rd�_k%N2+�!`�D�Z���ħO���g'+1�U���y���p�w���
�;\)�W�7�z��H��
����W]rFV]Ϻ����ȍ���a��Y��{ە"��#�4L�0Ą��T�שY+�h�ͣ�w��-8�x�S,��6��S���OzopA��(�Pf�-G>�”���T�G�@|R�������q�SE^fJ(7K"w�Q�8Y3"�ҒG8c
=�0;��)2���lV|��	��LYF����u��`qt�p��4��"��m�,��rч�Z9$� >�q����l
��-t֝�f���ăM��n�B5�eV���k�}��v�+Ϝ��59�l���k?~���
�i��^�"���rT���1�`�d�~I��6s�2;����d��DYʗ�d�1�-�D���%��K/�Tv7;�
]̂\�s��E�����,/8kEyI�͇w��_��k�R��9�s�zǗs���i��#ݺ��q�Y��D�)+��n{!�,钄5�)ڑ��R���W�
у��:�坧��j�'˽�-�-)e>��c~��ۼ��;����W?�O�-g���7y�՗��K�����p��9s}8�$�џ��YM#b��a���K���s�Z���}v��b.���w~���a�l�8k���H��3s�QJ�/�Q%`�����U��n��5���Lm�7�nnB�q~׌��vC��\��bo�,��(nɓ��{�'�*��j�a��0d�=�^��y��N�)��'�}����/?{�gWQ��L��4�)Km�&����}���Cy�&�\4��hZ��}�!p9ER��f=E�����Z��Nrw�$6���:g�r���L�� )wm�ll#��E]�Y3r����kKJ"�L%R��e��Q�:�����0
d��o5gNVk�����<G�e�,��k��uT�rb���s���t�R"A�x���~��l	�SD6W�Ye��s<�>�>p��4��{9<���8T�z|�|~�9d�]���f��LXu8x��o����ن�aϧ�?�0e�y����g�&��ڽq̆��-������)�
�����2�w�N)w��m����u�;�n�Ty�>ϔ�*�h���(��dr���vi�%�,�v�Y���
��nq-6�F#n˭8�ckR�g����ɲM9n���,��t1�E��"K��G��:U�~
G�3�%*����D<9G�	��R8�z�yg����$W�[%��<gg�X븹���w���|��~�?���y�ҝ�<�W������K���_�ų�[�ׁ��D&y&T�YU}�3�jpT�7����k깡�_����bJ��V��۬�^H��b�I+�*��	�d[�q�g:S��m�>���Td�n,1G��>�7�����.���0��X�V�T��Z�΍�Ufu	-˩q�Oカ����w�”��_ypƺs\N�w>���a�T/�)E�(UxNId��
wR��sGwT�:��U��r���]笡1*�^�y�F��م�&���!�3�<��4��8S)��Q��,�sf�O��vNsD3�%��,. Y��,*��
�{:�(�)�i�%~5��D�Z�R-��(��3�*I�m��1�Y!&����8����׮��l[�-�:S��4*��ρ@2�Xbg���!r1����R�y�x��i�Tk����-�� x�#&��Y{��3^��a�����{��v������/S�ϯ�H���?r�,�1J7��l���{r��v]��n����v:����n���|������J�Z��|��nK�k��s�v��_�E����q䗵D�G����n�w�N��@���Ku����[�ZJ~��� I��VI`��j%G�d�j%�+R4�j	����q��툤oI�1Y�뮢%PZkY�W�]���'�~�/�o��?�m~����6[|�����_�/=�K�=���<��D���{�0�SbDF�6�|��zi���_��o��۞����T�/v��j�q��zM�Bsw�=,Z�����Z�:�f��ݫ
K�r�I-�=��>K�Ĝf�eg�/�p��T�����$Vc����U�z�и?�1J�T�K�y����m{����X*��F>�
L�S0�fd���QԵ�� �Mk_���,�[ߑJf+�^����0�"������*��,�u�/P��!=n�_)���Td���9XOm���t����Zd�VU�(�N�aC�gM�A| 1J�sn�[g�T�)���Ɋ�Ԓ4�O#t+L%S�Uϔ+�@��8�+i�m]�/զ\��_6IpWQ=��;��ct��f�F�5m\����0�R��)������7>�ԃ3܌e��b�..�t�0���^d������5lX���z:F���Ƅ$&k����0F��6��[_{���-�]]���>.o����|��8�L��f���d�P��[��\�K�����l�WFfy�b*:����UE(��TԴ�w�f|-LS_f��+���3�/�������9&&�j��
K_�,7/��Q���~D�7��Y_;��g1��֦��#�D�-
��Dg�۟	E=k!�Zz�I�Fc{cLM�$�}��K��i"�D�����:�����{���������x�/�ݯ��k/<����ϰ	�øg�F��D5[�4���u�;����ogF�=1'�)��Ņ5]�Q�ܘ�TL��gD�䜕P�$sk������l6���xzI5��{6�^�S��G�2U]��.�ެ���ag4r��6GLw��h��RS�(mqa?��|�9���hP�䗯��+QeTR���Լ\ K�c��T��
}�Y�D���3"�����<�����s���S/�s*�Uׯ����A���8M�;��d~q��.0B�%3�Ufe�Wa��z#�Ę��#�z��J�f���)c�Y1:ey#4�|��	��0��:�-V���	��eHq&
���O�t��`R;óm�s`���:�[%زf*I�J̕��l�1��Έ�؊X#��n�lj!Gͅ��#�4�*�F���[/��Nx���n��HQ�uS�X�!'������W_�gs��I\t._:�/���9�f��>#�fNO�t���r�U��������=���0G��R�-,�e�zΘE�"�W-w?���Y������<�ّ�-��B����9��rk��.V[��V0�.]�Ǭ���ծc�L��K*Τ�\U�s:[GlM�:QKGu[���2Vշ*�6'����>Q+���#�!�d�o	���z�S"�~�	�|緼�������w����8�g���_y�o��"_y􈯼��<:���4�K��E�r�ڭ��5G��
�X�,c�)U�b�`;�2���º[a|e?��'BXu�<f�M��=S�vFG1.t�H���v��$�-���zO�n�;n�ug�[(ͨX��e��SE�#!,bʳNܹ�<��������L)1�#�땀���1��`��4�*r�UX���*���wAh��8�j����>�%�y��b?;��	���@�66�I�'c�,����@0ޑke���d8K��)��{c���<X/L�W�8i����EX��ʬ�3:#�v�SD"�f6+^���@Izy+�J��`3�3ґA�$%&��g��b�����)N� p˶�.9��p���T�9�lC���>����X�P�M+���'7�*#��u��h�:`�Cc��9��8�rȪL��
�.��ˁ��=/<�����
���s�Zp�x�ޖ����8�F�d��ĺ�999!�����#.�/[����ܺX��-Kn{a�K�h�N���8kn��/�@ˣ�%�q'$����.���eЕ5�?gf��H�#+���u^A�I��.���`��T�x�Z�T���X����l������*O?���{��&a�"{ܾ_:]���f�p`7MLè�l�b���t�"}ƭ�l��qs#{��>��_��]~��w��׿��9�q�W�ַ���_z��^z��O��]oύ�1BPYe3�X'�N�"��������8d|�S�a8���(�\��N_��5����4D�\�9FJ��1�C��9V6@�l�z6��j
]�p���p����Z��b�Ka��V���g`'���W+������l�
��fV��ڀE��\�F�fҨ�#��ߩ��e4烌���̤t�u'��
���j���u�s��\�PK5zRXNVf�"E��v�"J-c��bp���_d���E*z�Y�sL1i&xfT��Y�W����:�ժP�������L�%��X�]��H�S��˚Y
b[��0�0��>�
��2t��ҭ�\���wW�K"������p�8=��O�������7���x|b�Ӌ�ay��M��ֳ��u(%qs��*����t�+��9�ʛ3�adRN�#�w<����_���|�������ލ�4+w�&Sj�h+{D�ϝ����0`
�7kNOOU>]nǘ�g�s�أ��4�u��Z�뒓x�:��]��h�BW�_������ �������9�Wߍ�����T3ǶA
�#Yo+����rjΩ_��Jc�����xmE|������!�P2�O���'bx=���6�U���"�W7�Ĥ����O/"�n�9�׬N�q��(���(}ױ]����������-�z�~��;�|�[��N��4����.֛��XArX
����\2Ӕ9L��)��{w�X�lp�����3]D��D.{��~��^+�ĸ ��:�t80dNۯ�Ψ�ИY-��tKS�z��9�'k(f`�ze�yY��,��1����Ħs�'&�ƨ{�'xA4����Xb�Á�󢀪	g-'���b	��C�$8�d�6��u�|���6S
�0x;�WS��b)��6#�Ů��	u�['���tfl��hZ�L���F@��H��Y�A"-���U�0V�xef��J1nFh䆦Pin)jB�hh�"���H�Rq�S,$UQ��R�V��stx�DUP��z?���T�ލO��y�yd܏���}V��;R�Lud:��b]�l�"��+��xx�ظ��2�I!�M��a������#2B�~��)��;�8�&�l6+�[��I�ɕ4zJ��y��K<��7��3�(�I`O�<U�����9g��a8��{�؞����օ�ї�Y�ҷi�Z ���j�е�z=���̵���fq0/����/U���w�m�b���#���0o�G]0��(3�R{��«�J��p���)�h]��Dnϝ���<)z]�9�5����'xx�t�a?�=;e�b.nʭ3�0qz�և6�-��f|���÷�J�g#�)�.X�U�w����~�;�y��|����{����?��l�s(��g�-�f���4Md�XE�eǩ0�
�2LYP��n`"�0Ȭ�I�z�r!�N:b���ىt�y��2�I���x��n�R89ٲ�t1����B/mr�,�(�r������dcY{��
��0N�)A�V]0xk��K�RQu��1V�`�sm�x2��\��c�^J&�4�Ь��|�8׌�y��,i�9�r�����=��^�wL�(J�6:Б��TèKD�~��EQ��Y��k�����rv�ˇ9�B�E�E�W���q�1blC6����^�\��X�U���ZL��פ�s[Īӟ��(�w���	��;Y�,�q�̬M%����
S?{����sN�='�=�77\?9`��B��[^����S�5�"9��\g��;���D9ʼn�0ps}�n��00#���@�6��g���proͺs��=�0S��<7�W��؞�㹯}ߟp8��/EURY����Z���H��$NΉ������#����l���J��2s�]G��z	����Y��Y�Yt.�q,���v�b9�tL��O�ڶ���Q�ե�k!6���Kr��b�O$e)��d��Nf��m7~����O�0ő��aw`��77�1)������I�4�s��n�]�w򤙒ut-��/�f��<�m��+X�9]�1.�..�?����b����Q�Ɋ�>�8�%5��2%!�cI	���a�(E�NN7��(��a�暳�sÁq�����x�g��N~Xc��r��H�2�Z]�r�O%�A��p/2Z2��]��1pL93� �֚��K�C�DI����\d�S��<:��{�;X���Z)�exO�?@��9�%���n~C�~���Q}E
C��sz߉I3[K�*=@L{���3��	���vEv�g���ʘ���g��x*d�#�b�rg�`J���2lQD�KV�%��M�WEFJ ��Pr�=�jǫd��W,]8;�Y��PrE(x�~�c���1�͚'�#~���3�9�O�<<���=[�£-�[�M#�1�g�N�j���“�?��z�~����a/<-�g�<�����l����F����H��#��K��<��7��=�a15�g����t�"��Y^���a�n7<z��ggb.�$������Һ�����$i&|��}�`pNǩ�yģ3��j�z[}�R^̑vݠZf����Q�.oL��D���z;Q�mS{���̝�!V�R��BN�	iB��4q8��wL���+��'Bx�D��t�\$W�po<Ɖ��*�ݵ��~^�"�%�fVU�I�m,�`�c3ݪ�4���Ep�[�0�]!��:�z��J62�ɉ�
c���)J���dIL2����jӋ�&VR��UC��Ym֌��j�c���\��{qb��4M�
.x�È��~�˨�´��H�u�N	��Y'���>�J��� 1'���Q�[#\GґK��%��Y��V�؊�t��r.J ��ҼI)���!�Q��v�D�5e���R5/�
}�B�:�!�7c��xl�8��x��8�Υ.��G,�|YKB�2k�>fV�ͮ�F� #�(ݜ92�@�Le�%�V�|�:���j4	S�.[�kuz��ū�T�j����Ov���5�=�|���|vM-�����^��X�$�Ҕ���:�%WIӻٍ\�칾�${n./���R���g��{lON��La��a�4	շe��ܧ���Q+Y�Y�D�>x�5�?�<i���AQ��,:���,JR�Z��\�����J-<~���}��ڲv����M��.�忋��ȤZvF��ZˬH��])V
�L��`VV�;_n�O���&�9Bn� 7���ݟ�(�-�.��?��9As�}ͷ/L��=9��	2�ș�a�n�c��S��n���Cg,�8L�<~�p&S{����
O*�i~�^\U'5m�6��YV�bұ���c���[�ZR�"�M�����ӟ\�<��V2�uְݮ�XJθ�(yj���3����{�m[vև}��1�Z�u�9�}�n�T�$QR=o��S�`���nnIHB�ӱpv08$8n�dhV�	�Y���MZc$��P�!�T�[��s����Zs��{���1���ԭ*����t���c�����n�\�/��	9e 
>ʚ���(���?�u���8����CN���Sl�[�:c܌ s���H���gƎ�@N�3�����
-;t8)C��lY�uGx�TJgQ�P(�?�Mm�V�,`r�kJ�ì��9/*#���澘6H�o<�Q��yb��RKd</�cps�k_�s�5f$e��Ɨ�e��J��Q��A��'jd'�����5C|�$��I��5�e��̢�	ŅO��Ѹ6ͱ�-���a��h�*Ak��8$D���ۄW^:fŏ�
c���k�0��ɀ��y��Ë-no\d��e@\��NjU����`��Jq�8$���������x���s�C�b�'�w{�C�
C����ǘ�ZEU�b6A)�n��G���[�B��:O�9Aj�Ym1�
c��
*�R
�vwxv}���\��_�q���[J��۹��r���ZeF�}���>�Ŏ/���V������袔7��FW�����5Gn��'_�bG��U�qϵќ�R1�h��z<�f̨Rqs{�g����q��P����I�8e\\<�@�4d`�E�������?�_�B@��p�_;���#�X�k��i�[���_"���?����m��l���un�ɗ���T'jzY�yv%ʐ3J�����}G��
�j�Z'$N s~���-..ΡR��s3��C�Y
��T"%����y�9��Ա�.�e�Su|f䁝�o|0mQU	L	��0�`�UÀ��x\�Rr}�5R�3�J�B�ᝃu��4. 7��̞֨�'��(˰�I���j�
�#@pFQC�Ĥ�]��tDM�妠��c)ޝ��%fԱ=������D�J��f�\xCȍ��1Hc��E{)0(r˚�4�y�cdzf�1p2�0!�Ep~��^����G>�y2|��q�=Ń�-�
޸�x����4f�(�ۻ	w�;�w�xvw�/�g�����-�\�z���͉{���=J�b�/1R�hX�FQZɖ$?��Z}�&
i�����}�cN.��J7b�%�2_�)�e�1O��9L��S�a�����t���
|�W}5^z����uѺ���Ay'�TꝠu+�;�#�R�����}��a26g
Gn�1�T�|��#�.I��s��@��<U�G��.��3���k���p����a��a:��0O��O��h5���B���[�6�C�i���-�Ǿ�\�S�}�w�����Wd
��.k�~�15���
��������`��] {�⪑Z�2�q�E�7a���d�-9�S"{Թ`�'T0�'NON��np������!��Q�nNF�k,m�>�a�?�q{3a�N�[PN��^�b���<T�z�AN����8G��`f
�u��#�����8��>����i��2�ֱ*�W0+(�jf�DA8E7
8�8Gb���bA�
�2l�)h��VT�Ɣ}O3��1玟�
���C�(d`��ZME�d%�_:F]A�
��܃���3���Lh��x��u@G�EBeC�?V��wm�R��aF�@'��g[|�
^�<�'�|?��5~�G?����K8ٜ��߽��و7/��d��B���c��=����n�V'l���'gg�1�K����n@�)�̨R@�`J�hU�[��~�I�}���֭QW-M)a`��63ô�lx����e���.H�]��Ì\*<��f��F��{���'�7ț?��
_����w��GpPꩍ��=���R+�^�~_�P(r(�z��\�Hl�l��+L�H1B��B+
���Ŧ�b�+�P�U[�0�Z��f�<� <L����a���n��x��r8;9š�A��l����^��l�bz"�a�V�c	�,0t
��2ޣ���e��w`���E5	t�iL&�"�p�k����ﹺ8?��n��%����B�#�7���H�%���T��DlR�\sdy�����9c�p�O��xp~�<�&S��}����n�8&gf�1��6�#�&2-,0��6�����!:#��³R�ç�(1��T��n���g�-+ `9��R�f�����Chz(
y�'^��(�s^�0�{8ؿN+"8�y�.'�(�w ����\�*N�{�|��y���J���0U��3��0_K�.�N[Ƶ�"���X��"5O��6"_�u���H��ޒGF�_rf@M>gvR�?ػI�Y��9��}�Kx�s����Ε3���!�q���P�1E���ww����u��`��8`{>b�	�t_�J�V�<|ge�<$ �/�2��/a��$�r��;Z3;g���0W)zU2������x�C����݄!�-��	�~�aw�<X
#�F!�|�����[���Sl!��_�s�O
E*29��2;�s�^����ɋv&k�n3��?CTb�*Hqi�<�^��1�;6"������Y�0����k���*�
�m�3`���ٳg���Nc���p�=�S:U�9ea�^��e���h;,
?�r:ڀ���
���öOm�#��]�"
0	:BL+�'K�TK��X^lD������+"�r��S�����Jde�ɰ�~`�qDFP`Нˎ�#�a*��Q��eM����d	^�F��G���l���|(���"b��������b�Ƀ��5n�K�=�3��f�}� � sr^RJ��J=+�#���
hj�f��gėLm�*GV9
��=��3�5�aPߋ�mQŬ4�̼����d�|��҂��-wxmm�$[�H��ȍ�%ȮfG����]�P1�ڶ8L�V*�2$�`6����	%�t4%�j��`MPf������W�O���W�y2珉�=������'�
N7���g�]?����
��v��|;`0�&�T�Y0MԲs
���v���φ!����6�itގJ���+�j�=$H��I��LE��Fe��j�x�����QlOOq���G�&�s�(�j�
��:)���>޽�n��+/㳏��?��}/޹z��;��E�sq���#O��.��W�P(/�p��Q
as�7~�H
���M��JC0��<כ�H<fA����7]�侵�b	%���6��E�{<{��O��0�1�H4M@�7���+8L�x��
�HG�P˙��Z�gf�>��s��ߧFRbê,��fq ��4 3��+�Y Zb/K@�XH��h�B|�@�#m��?�����e"����d"X->�eFbE"�`7�À���IȀ}$��\�<�è�x}�r��}��\\��FG���+3�<��|�c����p�]�##�Ԃ!
�Z�r�(I�4�K����2�2�c�����N��b��Xxp統!����,x��6��_n*�X����ű���^�+\��Į��m� >�\PPP�{5Fo�B!U��P
�DM��(�`�Ҋ�؛�|e;,
�64��Q՘��ȸ�F_e��FM�Pэ�406�Ȕv��tH�
U|�s|�W������pv����\ H�nlG��n���w����~��4JR�n689��)'��!��w������%�6�1w�e]���kaHM2ٌ\��}Ƽ����{[b�#d���%�2���?~��O�����0l1��aeš̎%���Q@�N�6��O~s��޿����o�>�a����M���ơ�5il{����^@�]�`������ì��|K``�uR12��)g�\��}��bdӏ(Y/��l�9R�\f<{v�gWϰ��a>�QJ��v����v�q3F|���ؼؓtl*���}cs�7i��y�6Bb�u���!�B�;K;�D$��\aԻ-5��j�v�T�ڜ����m~M���/5n}�k�
��Or�19��
�E�&g,c���m�<��z���̄}U�ٹ�s��=�b䌽r�%�D�����̄a��H)�9NTD-�a�`d���=e���2�	�36'�ZQ���r�ȔV
��X�د�c�[M������LN�#!��/�S��dж���V�KI�s�)�d8j��l̈dm�n?PH�c�¿ߦE�G�ퟯ�"�$���E������<X$�:͹������˯���o�u�-g"�#R_'w�g�s�od�“�;l������g���C���"NH ����=�;�zԂ�a�C"�B�b�M(�;9x4�8����2�|�4�N��б����t��"�!��98>�C�'sn��d��M����t�V 2�sd��+V�R�C��y�=���|��>�ѯ��xv�GT�r���'Z���|�������_�+��cx�W�~�?���e*x��wQcg�)�5}�V�|��|=��2�{\y}0�֋bB��RPeF5�a��<0h8qgH]W3��4�̳�%�����������v)��iv�I8�lQ�G:_>�������1Cm��{� 놴�؎��}��L}�˖��Ub)�������7���6E*��h�|	��+�UR��YB_��,�/&H�`�Af����]��Q�x.�܌�
������$�=14b]3g�e�3��A�G
e�0n0����m֘��d��P.p3����A��j,sBގ(S�d�!�\�=�C��1Øo�%Fb�^ݷE`�ɱ��z'ɑ��m���|�� f��/�h�U�Z�R���5�1�$�l�BA�uֽ:��e�]�-umN�%������H�V��U{KY���z9Zn���!"L
�|�A!	������:��[�
���cAx��@8ˀ�{�K��N��?�^�8���㻻�s=���9>` k�<p�ۣ��u��1�=�V��XzEcq���ؓ{񱻻�f�qrr�R1#�U��w^m>O���cH#85О�?�)�Nvf�J
�0�͘!�0����U\?>��lt��V���y�Cx��S����/����q������k��`>����{�#C�+�0*��.��Hu��p?vx/#S��l�K�n�8`PV �&�< mNޠTL�`�����o�c�E��ww���<|��0��	��7b���/�q�Z�1��0�}/Ӆ�w=�I��-]8B!�wa�_�d�E�/�M ��S���.5TX�sd����腶�����w}ߕ��R���f�݇��4a��zK��Ưq`@w�c]�o3f�0b*^y�_��2��2%���\��b9��8� ;�x0��`)��DNHwsrv9d).98�j����/^�@����xN�US�wTH�����濼�Q1�ԝ����^,<ǥ,�Pվ���1`�#ރ��������;�(j:���Rֶ����[w��	WG�3�b-/�W��I�m����1��$
	25T0�
�MA)e<�����7�:a���:�FO�a$|��3|�s\�0�$���΃�>����JŴ�a���˩��	�P+�MF��\�P1Q�@����q��'�S�<���W�˰�w!UKP����@����#�B�Y�'02
��V�U��1F�C��NQ�'��O�x�Wp1n�������������o�o��#��g�y�{�\��	�%w���.�ї�@����(�������*=q�UE�3�� ѱM�Ҁ��G��)1�TH)�eF)s��|,�s��f���	؀�~�i�^h�CI�LQs�hB!˞���(��V6�O��{�Һ�v5e)��M\�x�ȥ�n�v1�,(�{�/����g��QW��u�
�E�!LRS�8��֥�1G�qM��O\eХ
)��~�9C3c�t�f���!1�M�ì�)���U�逤��=��4��׽s�}Ã�XOŕ->o'�\}Yv2¤ª�Gea�JU�'�J��;H/%oeK�E֐R,e�E��t썎��-�#�ʞ��¸�*OW.96�b�s���;��rw`�EyM��	�Ȋ!�h�|�_d'�"�"X^V�@j���(F�~�=�I�k@�(�r�12#���0�(M��P	Q����l��E��,rs������>���%�e(n'�{7;|�+���������3�v;�MK��f��L)�<�g.��jF�PC%ނU0�	%.}N��kcJ�����#�5_L�b�����0��Yϴ_#���0�UG�G�0�@H<4��+�H#���t����7�[5_�܋"�����96�pz���	��+���,�Q�/��_��W|v�	�?�^��?����pd�k;��-�M.����A�'��B�����V�5��/�y�q���̀��''��9��`�m��5�<�������L�{���]�n�l�ꌎ0.��\t��Ů�K�ۅػy	�er�Y���qi�r�O�w�xL��ގiFHpH�k��h+��
�DH�D��^��C�sU�r	�*}S��"oFoÂ?4R$��fz�w�&h��9���S��-�,�u�׎YvU�U	������٫���˹�e3��T�<x���8��D�q����l�X��*��.G5FGt �`�8hT��-�b9�ہN
u%�͝M%��V	hA����_��KQ���B	�V��!"�@�Z��6�E��.���xn��]��5����R-;��b�g�T����<)�4Pw�o�IJ��U���o�!x�S��o�8����Ǐ1�3�f�k�i�bTq�a"@�<����!��0,���F|��Qh@�b80�`bl�N���Ϧ9�W������98
 �`�}�`��D�Z�Z �F���3C�t�#!��倘����	>�S�� ��7|���QK���{?~���^믆��Sqױ�"չny�J���y�_���.	�Ȓ>2��P��S�#`SΐٳP�'���q�����c|���տ�;1���y��FBt��n�Ф�����q��cu��}�{���W{!��=�m�Ӄ�V�$�$��_�%��)uT�z���Q�V����li=ʈq�{d���
���k��g�&�ˌH
�{-�ÿj��0"m7~��+�ju�-|�	�*���`�A#�\��Z$2u(�3��
%�G��
�j�l�^�C�����6�p��*�!�h	�c36��	��稊H��C��ŭm���*<ݝ݈�n㤞^֗�	�}3��*۹�B�.���
W7���_�C��NW��iC`$0J=�B)Fs�B��A��)-m��n��i�3Bqf�/ D|'���Pȣk8^D�0�`�����Z��(�p5�E1��膑q3|�7���{s��{ �tp�z�A�8��y���t9�ឤ0R
̡����dEʹɈ�����2�����K�q�]��J�D�Uޒ�Ӱ��VX���j�F���MT���9=��b��!�"�v�ޡ�y�}����<\={�gϞ�-E�,�����IoI�{�E7�L��)j�Ⱥ�h�΋�[Ԥ�M��B���[f���/p�����Ob��#�d�w���vx�W���
�I��\�U���x�{� ��jՀ�b��±+�V���b=���+Ƹ��fZ2ѽ�T�g��.�k���+��b�L�Z���
w��O2EN��fzM���W{)��ѡ^)��B�ӓ(��q�Aa.9b��rI��,�/�-���}�>���)�rU�4�\<3w�I��J�=���_�<�����Y��9X,�*2�3nF�]�%f��#%A$�5�D_�/�O���o[g֊���gL{�0��y�FR!��4osy��!P�l�I�MO�*����F��X�Q�U��:��tL�mm+4WC�h��<���E!�jUR�KQ��>�@H�Q�ȫ�̄O��(��p=/O8��/�
�h�7,��+��4��6*�zW���r�0m��9F<�
9��_�걱�>J3m�o!�d�3�p�<�@-����1�l��Xi�ZŰCSgX$��z���0EO��(�(�d�f(V��#�6��B�(�����Go|�H�`$?ȻTv�GG��e�bz?��w�ꪗY~�2/�@�;�Y��4O�D� 'F-�N���30��6����K@�0����q����O�������!��~�.M�"�������1m��E&7Ҵ�)G��Ո)v�j�����O�:/�[��q?䣰�/�'�@�VP/_�QG�wKb�4�Q5�A�K��yM�������f;F{!�����9y��iB�&RFDFHK���!��&�e�nܸE��yF2�lO*�X��0l�,���ĨmFقiH�,�
H�yy!o��\8��~�3w'-3�,��vA�[@��iԵ�-�#�+�m�X�)ňk�9V���Ym	¢���,2���F��|�#�ж#e2�B���
	����XH�YLڿ��(5k�~�L+�<�����)aR��N�P�p�%/İI~9QtT�ų�,-D�BE+�7�_>�n�q��qz�Ə,��<�4Ĩ��J�n򃠊:�4�t�d+r\O� �V'��K��!wU2��	�Tq����xG����h�{ID=�aI��Qs�z�V�F�"�,
�)3�>�+�8�`���c��%�J}�Җ�K���y���:F��y��M�9���S�'�>b���g.�ϰ�������5�*�*H���|x���KpP��s$�fc�=�8�g��;���Ā���D
���O-���_��,�7=�k��e�	�{i���h&�6J'���k�?j��VK��ECDJ���6��Jq��Y-��jzM����W(r�I��cFS}.�YquG��D��Hx��()��3H�z�j�5b�2C��!c:[�#~R���5(E���Rࣩ-@H�U(2�wWeJKF�Zj�L�)z)%P�*�{��������D�|�o��]N {[���ɖ��=��>��)B�Zf��9��j���^�uU��qھ�
'|�E69h٩���G_�q�Ui$�.�RR������O-�fPd��z�{Vq��̮(�Q (ձ��''�ӄO����;�s���y�OW�N&hEN7��M(˼[��Kj��̫��8��ˋ�6�D�O��?���;�90%��f�n�1\�es����ȡ�������]��A_�3��:EY�u�hwc�M��9%�:a����pz��a����|�ت$:��IժJ_Kv���u>^l���/��!�|vv�qpu}�Ǐ��|���N�p���)���lf/(���i�R���YQ���
���l�ah���%}�5)2�6��x�1ͷ�jG�I�g��wt�C��T�����tB�����"8��,�h�㬖v����@@��D��aL��EU�����ët���j��i��#���^B�7��G��֋"g�;�S���N��`a��83E�`�ۮe���,�+i�l6�8r��c��R�ث�d��FZw91��J�����"x(�a�k6Z������sρ� �Zx%Ģ��嶅��9!EF���֬�W�'���l�j}��J�v))��ܲˉ�r��2k�'�3��iu�İ�m9�܇`LV�Ȟ{M�(�b6���m&�����p�����ͭ��0�Qث}�(z�乛_����->��p�yLwwn&飄&qNA���ƾ�T[��
��*`P0�Ƞl@��玹��r����<a_g����H��{PǘbH	Pǎ�p�S[֓IAc�)fȔ0dG��%�r�.[��$N��c
G�w�5��ܴ!�(e2������+��������ߺ(zQ�����Ԋϸ���b��	H$x*�22''[ g<{�>�=y���'�c�ӌ��s<z�R�Pe6�-6'g1ᙝ��T�:�X�VX���w�>lU|���~�
���z�~��c��_�+t�����p+
Zl��d�g��l�
Z�d(ҫ|ܿ\&�5�Ծw�Q�ud��O�8/#�������h3^r�m�2��XB���h	�,x�~Z�g�H4���������!G�8#|�k��1�ӆ;�唅�Ѿef���xs�5~[N������U\L���/8 !��A{m�:ZP����������*��k�F.B�����+��2/X�X,�<��s�����_�s>SǜX<̋$�x�>��|ā�pC��k�po�@�PϮ��31UD1o����7!��¥HxY��|v(x|7#I��/�g$H`��J����~R�uy�oy�5D�7�,�:�������-F�i�_�P�k���!f_p�RZ����߁���lh�C�mn�E�R8/B��x�/��؁}Q�|��]��;̴��VsIy(%"!�+
I�˓%��)PV#_��7�W|׻���!|G�kW��\��@d}�xl3���τ<��{0�' ����{u�ȉ������F��_=�wqLO�1�1���}�|s%iu�C(���-3�&�Dt趃�>+n[hٽ���u���_�{/[�W�z����+H
|Ͻ�-�$���Şd����}��T�A�Xp���$8AL���o��+3���m�s3��H�W�.E���;�V!�ʉ9tB�y,�Цh�j��(��S�cPBE�� �L+	��#�9"D��q���5�M�n���=)��K�E]9�E~�8iU�(�U�Wi~���E=Ő���|���W��mQ��ME&^���'�1��7)�=
8[w��n
����21��`�Ag9A�e�(�:;gL���B�Y*T�yv+�g;��AApn��$`B6�fk����_w�.>���O/q{s�J�0�9�A_���K�g��P@���$[��Pw�S�������,�c>���q~v�f33d�h�vb�F�����bq%�IP���}9�#�ƣm<�.Ł=慭�	�<@sF�IB1�͡�����3�W���5x�=ŻW7h���I1����-�;m�Q*^��Tu�f;b�z>�ӧ����}��k�#*
��
�gx��GNN#^}�U���� �0��L�ڇA=쭏�t�ӚdžB�a�{$*�<�Z��)qD?���"L��]��q�'A�%;���]D*�q}{9�����&�%��*5<
777x��
���(fx�WqB����g��,�t�:%���?vE��d���C�̊s�s���!�7"�+cƠ�o���r�H,�t)�6�3�J�R3�X�-~�ў%.�Ĺ�]S�Ozk���ۆ`
�Kd]_�o��q���l-
�}P6)��pK�%b���-硇��3��,�y5A��H4~[�?S�D<�*1�e�7��*�V-Q(�bd
�%�U���4⥦p�'����Ŵ�Y�2�ɵ�J{2���T�R��;Q�ͤx�b���0r���&p[_f� W���Lo���3����awƐ0�j0Gȷ���R3��-��NsH�%����Q
�P�)�j\�!'�X4�b���n��<����V(6m.e�b��
�S	�Z0I� �$��P����5#AZb��q�i�s�9C,aWKT�	R;q9�
�`�	�� �Sšx����5�������>��C��{7`���ݒ���j���M�MMż�L���ˉ�9�b�d�\�������w߅������x�����;�7[���x��!�4`�ۡ��-��r<'.^����&�`�uF-6�pvq�R�4������엶R(>�۾���Ѽ�����y�uD7҂�:��Y��z�	��w7�����0U�\�A?#~��c��������'���7NNB������]�P�k�]���]���J-�BA
�֘1q_�%���ȡu~ӱyL�է�"�=�˜��h�^�z'Fq�K��2Mֻ�)�<�&�,�h��4Q�;n@�kpt��fә7�u*���^�&w��4�]`i�K���tk�����&��D���P�qJ�/It
Q<(�m6��+��M
	��������Z�(3���*���ز�4+
�*��eJR���L٠Ց'Uw�h��:Y��Ȏ�;(�
T��`�U{9f8�~�(1�E�R��9��^}$�L��4�0ˆ�DHV����w̞�� {X���
�ŀ,N���u��dU2)��b2�鐰�@�_R�a��T`��2F1@���~�'�@4�Zţ�G�w���aҀ�a�!e���cWj�.J�H-f7Q�"�R("ٕp%$|��-^>'��~�g��}����S�i|;��w���𘗀�Č<�؎L*~�����0���8=?ū���W_}�~�f���k`0n��a�S:)�k�ԽC�և5���Ѥ����÷�t�0\���P���\ܻ+�E������,��ލż�V#B��gM'��]�C0?NB򈤂�4a:���S\=���
�&NNN�ݎ8=?�8"1p{���w�ƃ3���C�U�����)�Y�9�|8�#fvM��|�UJ���'s��iS�!"�2��2�t�f_4f0�|�:CL|F�R�DĆ�K4#��).�Ƞ��Vx�pf�<(*���98@E1GWċb!1R��k�����4�PZ��ԅ:�X
�ޤ�]��Y���;�^��وؖ��3�&�uFu�L1���4u�ak{[ו�jb�|�����2�jN_�n�a�.���P�Ƭ��Aq:0F��/�!�+�~x틢���T�g���DE]�k?�:Ű�
�B��3�99� �2C�b�A]uV�%&��
�hѕN��Bq�cFLE`uFc&퇌RC��xN��.R\�Sl�0�=�i;�,xw�E
��\FJH� �q�dc�\C��P��QLq6l�����d�0�,k/B�=�ȓ%��	�2���հ#AQ�V�wsU���k�k~�W��g�9���2n'[v�!
��E��v�������,�Wטo�8���}�|�\><р2�g�9�}M<���v��E��}���x�̑��,�'/�x���&��w�a��2[�]Y!	�.�f
�%'��H�Q�X2]�ˁ��AcN;@�1�@Yf�=0c�(�=�>�����q8�a4`9���7���:c�&��E�&��Ͽ;���+�<b?N�<L0Qi�l&�D���#W)�˔Z"�g;lbq;A�
�,�s�k����|��*��U��qI!Bn���N�8�*�V�eL��WM�f�MԤ��3�S��t��e<G���d){[f��H9)�e1��2Қ���p��F6�dMe���L��B��4�@��W�qɼcH!P��y����� 7c�*����:�����$�$��s��rRŘ�MuS3����Rq6$��y�.�Q�a_|���q���gd�S��Ҁy2̵ 1A�`V������*��d�-s�@<�/CH���j�v�J:�q�ll�)
U�Yr�Iۋ�0iu5�1#��в�� '1Ll�ɰ	C�\��)�0�y��06MP�La����vo�`~P�r��	�CơV�CE�)2x��fY��o�g��3�U/+0�$�L&���v�g7~����_�i�lx���%ʭ���}F�ICu$�N�x���?�S����G��g�?�o�|�S��k������0�`�<��f������S���fV%|	�
�|Zh�-���<���q2nqr~��~F��x�V�#�t����>Ǝ�t�4D�+q��Z��¿"F�Z�=�0d�(�i�{O�黏Q�	U
s5'[<xp���3l�ΰaF�&��N�'2X����y��'[\�~0O�0lVY.q�����]W�|�9�̎����	��n���Y�!V��}�a�,!�L]I�8<S|�#e����ƾ��D-����ݐ�1�k�n;v�]L�1�3sB���g�녷w}O�-3����39���X��Ѝ�T#��_^��uu	����*9Бk�xY6CV�',�2�3�+�y���͢�0&W|99��Y5�bW�Ac4��(��n"($lF�Y&��*��s!l2�|K�V1Uu�j�U��XV�̎�Ȋ1��B��;�߱$Tc[�.ׅ�Pf�bld��_'ƘZg\���a�� ;օ���ιh,�b�0Œ6���FsI{a�(��}5é&T�I��~0��	9�0c�#ū�n8@�#��H�t_Sv��#��Ĩ�QLxb1��)D��b�k.bp���
�@�4vTa���s��M��_�q����;p�tD5bQ�s�<����=}������������~���m���#���������R���S':���t��{+G��A��D���,��XєZ �'[���!v�\���|����mEkKGuϗ�:���!%0�i�0rv��+�c�i������4a�
F\\�������1��y����Za�v���3Tx�E۫�*8�g�;?�9P��+�>B:yQ�88�6>�k�W�����/ɴ˴�r�S��V�@��z)u�Ӳ�jK�*E�A��
��L4��ԒjH
�e$T(��1Rv\�]Y���z�t,a��8p,(���,��9��@H�F��=Ȁ�r��-��^$�a&�Җ���kk^4̏
�����b({
u�ļ4��b�<t��������p�7oG��£�#���_�T�seN��`�R�L���fA��,TL24.�}D�n�q$H�q����`.>�c2#<�x"�T�MU�
G\�4���T���!v"%�*�I<k��fn��wxU�+�N���؁
Tr�gV7X��%��X�K��"�&�@�J�W�x'TB ������f�.^�[z�<���	۠.�8�'�Q�����ټ+��0�`������#�g�s��`
��
T+WOn�����3�ثgx�k�+��t��8�v���7�&~�M|��3����|�m�����V�8n��n�й/pO�r�=��~�E/��Rd��6m��L�d�}gpv��ɓ*�՗����o���cƔr��$�n����O���+���ݞ���%.�.�6�:c��#�H�׳�Yi�A�Sq���P,��.U�Z�Ͻ���~�^=�[_�QL;�4W��@�k�����bN��֘�� ��`���Fݡ��%�W5d���	<�Q}֯�p��#>����L�^�l.���M�s���ݏ1&�a#Z$nW��,��-��wL�MMk�`�y�;�F
6uK8��������D�C�l�r/)�C�d��J�fP�����V2�>�b�\����螼�c~�1����)'�d��]M G]���ͷa�A��R�M�l���8r�S"���	��(�V�B��de��ϏPz�Q�F��h��H���ئ��a����8(@��0������WA�t��N[�g8n��/�E�6�Y�I���9/ق��vc�N�)n�ʹ�0pT��ȿ6)�����`6e�u�~��6=�`_�"yW�:��	���
��܎`�)#���x}�a�N��WR}�A5�@	���q����)|����J�9�w��O�'���#?�������~�����+�}�sfnw����}_��g��0З�u�' ��=�T�6vҹ��w�lG��]b�/8hu����~�K5d�6�w'���{U0lt��Z�����9���4������gg8=9�a�g�i��)Y�ߓ�e��\$q�&~���=\Q�RŐF�����?��=��[o��T'�pM���+&�\�X,k9\n9��k��d�@&a|l�hYwD�X�F�g\���5��KJX�5y�R
�H#fR���a*����<1#����K,:�R,e1/�4������a��7da�ҥ�d���_��6f�!�MҖ-��/7����k�(��s)$�BN�H��R���`���TC�n`:�%1lXt®�xV
�ؠ��Pk��R1Iq��l��`�~I�HkDG�-]���9TuJ�!y�� '�fj;�RY���F%f$���0#����S��"�b��<�K�[a��k>�j��|� ��ăƌ�w{�W�+�@"�F`ذ���Vp�)K��rH8+	�0�w��ٍ���51A%`���8@��J-<Q���Lؘ��ƕ˱+3���&�J7�!��oy\��W���AF�W��*>�uç?����?y�[,R�����<w�4��ʇrD�"H���
�ئf(uF�op:8={��$~�rH��k�^��D���g0��l6[�<y�O?�~7�p�#1������pqv�Č2͘�9�"|wѧ}�J,�64��˟�HX�,��
�*�+�z	�s�@���,��^�7���>��T������+3�l�3#��0Cj@�~�).R�����ee �i�z��TZ�%�G�H��}>D���/�����ŚW�1��8P�=��b S�#�s4�����0ڐ� �g��cľ0��Ϻ�N��S�V�r����̗�b��O�ƾ�m��͌�[P�^���Kk8v�%���a�Шa�HØ�+���E����ۜ�˜en=@�\/��^\LRP�絉V�+z#l�ww��
i��WL��K���w	C�r`%4�
��ܑ�|�H��ՙZw1�U�C..��ȑ��R�UT��(:j��>*$�M�C>IAc���ي+՗���&>b����@�
%C�=Y1��o��hqp4င���b�؄�TC��љi$�2�~��d�ٰ�Oon�x������>�^}�%�2���kc�A�����t�,�N�/��~�t!�N�g�Bh��d����}ЏY.�����cf�����n�;������݁��8��g��x��c'��2_�ў֚���ZӞ��?����H4l��
fV�V',�6Z\�sNx����{xt~��}���{��}�*�-���U��ڣ�y���,���fk>����t`�8*\�%����4Gw��=eh�R\���ET�)1
6�2a��8�.J	�G<��i�9@p���UVt��)�`��V>��N��~��Oc� �;-58�R�V�	�RHJ��$
���׭��DH��T����r�[:\f�?�Z�`5�
n�3g�U� �2Øq��{d�p����Eܠ7A�������Y��BXȭ�B縟E]�`���Ce`u"�
�[ň�1D��+6D��=�;>]>WC�Du���s��lHLޅL�mW� &�N�%��G��}UBp�Ғdɘ P��ŗ�����\P!�ľ����c�m3ݔ�-��GC�R5y��$�JEG���o<<���/~;^:=��W�A�,��X��O��$��!.���
��$�=OG�B�e�L����1G���N�@����)P��~?���0�H���-��
^~�5��m�RQ�t�}+@�ˠ���(I%cL@A��F�����B4�6�U'��%��RRR69����؏�lM�����pٖ3��x���@�ܛ�}h�7�:R<f�.w]Ib-E��)+�/���&s����L�}j����Sf�C�b!�R�47�8hFJ]vG+@)��aP_�7��å�����}��`��Nre��ɨ��I��R�m~�8�5��.i�R�A�h؝��N!W0]� H�Э�*G�G��)U_�X����LbO-ێ[09�0�������%��^V=t��Ya��FS�Y�ިe�q�!����2i�催���5����)1c2��M�à��`l���q�O�8�)�fF����wPK���5i�]
3��]F䘺��Q8I�c��2$p�3��Dw).� o��i�t���Qh`Fn�5v%�~!���0����-6�}�ܺC������z���|%~�o���ӝ]�4w_��k~��w_`�B���;ߋP�yy�����0�����8L�V�q���l�?��S��<>���xvu�C-����:�x�u<z�!6�
�4a>�<�0��`�
�`���vl��F�
�����z�z�����1��*�*1�X�J�A)��߾��ݿ��W���H�����k���4��ƅ@A�Q1���Ք�>JR����<��m[9kwe.�f9QJ��6zw3�C���i5$$d(�%xP[p����Q)ċyj�;Jq�7�<V|���QW>
�݈_1���%t����`w
�����%S�{sG���%��L�K��U�`̄��|��b*	���\Р�@�f�V	��6����ş0|�'-U�/U���9C���r+��"��Ꝑq�C{��mO���0O2E������!��7���{���19^ٻޞ�F�
�D�6��ߛ��a��q��sa�d����#��T=2�����]�D��.�1��xi�b��o��d��n�e2	�Ȏ��u�W�N�`����\<����z��$����7�b|㧾?��U$A������Kہ�({CU�����v"~hF��*�u+�|��'���P���~�>�^_���\���Kx�C���G/��n��Tk��q�br�k\QY��5��l�7�w��΢�V�Y��w�X��@
��/�Z~��:� Q��ZC��w(�f3\ӿ��*]jl�-�#O�,8g�?�)p0�X�v`�m��3̜��n�/D�y~��4GE�t���싪!�lwL�a ��-G�.��ot�!��=)�n�:���� ��m�J�
�X��E���Zl�㑩{L(�i��N�y3�qi�v����}&��/>]i䐸�l�g�&sƒ�A�؛���Vh�hظ��>�8��ټkT	�a�i@@5ו���QD�g��$��`b� Y�./GT�Iu��PSd[r�ټ�K`憼��!Z�3���(��hԑ�
E��;��K��"il�SK��L�Paر �a�3�ǘc�	U"G\iǸ� �=�E6�yu��e97�zqդ���A��j�Q]<���--�@�Χ�[cܢ˜p�	����&�
�j>>��P�b$��=���|�C��ۿ�Y0�%��H'1�@��\ -�F[&���.�*{ȼ��)0	~�o�\��/.�ң���o����~���Εr1�����B]2�[W�?+�3���ѰcE���Ǵ*���� 4��D�%I�G��ў����\K�P�y�_����JU/[�����8��bn�)\�_��FQ�u$6l\���\x�.s�8 �/�j�1���]T�)J)��>'C��])�ez�m��&g���b򪻒C"�g��R�*��ḵ@i����%CBc���m��.yް�a� P����%��Hd��.���P�1_�b3.��[��[�%(��02c|�N����瑅�e+Jo�aVU�D.F��](0d#�F��zS��,�\&ZBx��Ȳ�"��8�@�+xi���n��_)qdG,�[Y�p��ť+͝�����!��S"�ՠZ�Q1�w�����EmQSY00�_�-�L�pg,����J����*���Fa�S��2���_6$~1*�RԣH��L0Y��h1Mf�����Ͳ&v���dΘ�)�y�fS0

1�>}���?����g߽���}�����/orvha�l��/�#��W�8(]F���*6`uB9�a<y������鰊�]�I�Bnc&y��:����_B��J��{�WCڈ�c�����	�������v�/���}_�	�0c����w��+�]�Xw�:�%�>���M� �x�0�
b��q0՗��n��`F�^�649<s����)0��9aH�L���h]��HGv��Y7�%�z,j���•�f�v� �H�CkK�6��U�F�i(5F���G�+����;W�, �+b(vP	�L3�<����:c�Uϐ�
A��E���B�,��;&�5K�Wbբ�@G{��BB]�q�h�d�=j�����;+���Dꡳ�$"HiQ�0���Rxg4�Fb\d���{��;�����Nf�~�4՚wϞ/O�򃶚�]Gb�F�L0Sxz���8� Ƙ�r���ldžQ�piAR
yǽ�r�u	y)�;��C=�f���	��� 4S�~)��A�w�K�݆3fr��F]���gH"��}�a�'^{��|;�L�O�emB~�/��aV�Vx�DFN����ۢY�tށ�b{�
������������] �2�5��˻@����-&����_$V ڽO�>���0c�WL���%*	8�k����?y�`�*�Qī���\�T��ҳ�ͣh�9����4�ksn��0F��CyH�](�����	M�fHl�IqnPd"HB�F�5�좑v0cK%t̅���S����P�E�����yu���� F�dЄ%���
Cα�
�]�<22)69!%��J(�8�"�P����\����I
s�����t�J���	&���,)#!��adM����A7iQ�
̀I��E���vE�R�%v�~U���).�1��d��-�.�g?��k�P�J")�rHg���"���#3L�#�1:*e?�O�-�8�P���Ü�5�_@l��
E�NAMq�AUU�Q��<CI�0����{��9sQ"H8#��"��D���H)�A�K�2����z�"�(Vp��xv}��K?��}3�~�*�t�u4z�Ga}q��"%V�py�&ö�oaMK�x��
\9�2a�?AJ\��:&QH
��2^V��k�=ב��_B�p��Y%�@��D�K���/w����+3��
������{�`v��TB�%p8�I������Fj-�U&��KZ�G^�&K1+澄o�e�D��RIf��$�i2���L@#�&FH	�I*���r�"���0h�-wqö�9��"��U��E<��p��2��э�Jb޳��(���1>�j���8ux'��x��a��q���d�Ca�&̥`_eF;
�˴\��b\&��5�
�E�v	6u`��ѰH	��n
�Ze��Vx��H
>��}ƀ���u
x%ԥ�b�
~�eWK%��Х��P��@(�(��t��9�Di�HW���k�J`>6�E���Z1%`��E��˺�E�3�|��b�l�bL��9�)an#>�w�<����IJ��m&�9eTS�{f��1������9�c�!D�9�c8f���̆���v|��3<��W;�{�����U��%���3>���KТ�X�Za2C�7�)���eLՋ�ۋ�҄1�Bɢ�G��<�h�D�^�.���չdk6X翅I��́/*uF=�Q�%�<9�!���ͅ��Sb������{e�K�B��R�����q
W�x�c��^�K��]#�ߠ����}��gv�pS�P�1
#!�o���"���H�<�����aZ-�)��L]���;ݛڼ�����'��\7&�;���7�;�Zm�,8�X���Y���8	�j��5��I�b��!Hɧ��>���VQ�,��zt�@���_�v08�ʵP-�I�\rK�=�NbWRÿ�<&���G�"��g�IM �"2�-�g��V����Vݪ�(�o-ۂ��9b}M�\�C�ڒU#%G�D���_Ή}��i-R�K�Y���;	�+�a�>Μ!q	2��;�*�g �3`>�.�h��8�w"�7M�Q�,!�%D�V^QL1��ZH-8�_�
��o�JN��R��c�Ch
��xw0�%��&<$lR��-������~޽�����������aj_��ud�[���=��VM R`债�C�l����4���ڿkv<�[!Pc����j+�
�;l/�ǵu��jQN+wzVE)Ӵ�I����	&)��@
ųw����|�.)�E���9$�UR��Uf�&h����9
�*������+��;�WZ�t�~���;�C�fqPR�*|�28�/�K�_�@X��)R
Y��j����Į�ot���΅�k�R�!�V��^�ZX�A7 �dg���C��`�%�,�t��F�Q�
Ƣī*�Ġ�a
�5��,�S�݅����

�M�w��(�%���BR��L���:��sJ\���0��<�%�m0b,l�#�0�œW�h�ŭ��n�}$e��Ԯ]W��]���D�܁n4�F��]��*͌�vq6U��ܐ�?��p	V�@��=�� [�ڳ)�E���{m�y��BJLB2���%)0�̚a8=��t�`�J�gU��'4�zɃ��o)X�'0Ŗ=��Z؜��M�9w�;�w~�/§?�:�{zNy-N=�E��:��_ �u��h�="��@�/�v�{l�B�B��d�n�'���f�Œ���G�Aˈj��һ�T���h���x���E�	�X�[*���)�����]q�R㙎˓���5���]��ef/^W��:
D jeh��"�X}T!�Ζ�ڍ�A�!�c��|��RcR���u`$N���p�aK	)4%���C�c�:2[4�Ȃ��E�Q���؜�*�=5�9uc�+���	�!8�0Fc՜�2 J(�c?p[zcҐp55OӚ�%�^���_��P~�_��ת��
Td�6��B�Y
�`3:zE���mD߆�'����T���.>i�0�5����|6P����/���T�0�1�)��|p�����An�d$�bL�u�[��
	~k���1�o��3�Sua��Z�{5�\x'����Uռ�O�c��>R?��n��b4V"rw47�α$ݨ����#�Y��h���WT�G؂�Y��w����u��l��0�ᅣ�8�	�i�s3*aNcg���	�wl�4
xr���}�%���c:L��q��'���g��J��\��|���l4Ti͸'2��{�ۓg0���i|����KIWP	��%�dA�p����-�D�3��ݱ>R�VMu�gD�w��H�`.uu񲓦���O}ߟ�2�KD|��8AURE��BQXe�Ǯ�[([�Q݁M-������U�T%��>gN)�m�P�d�a��p'�+RJ�cO�r^HHP�G9�%H�2)�<�
�\
i���y�'�[����1�cf������P23�Y1J'�r�!U0���MƳyh�F6({ֵ�B���gu�)�U���uX^LSe�����q�_RR�����3B~���Kq���	s!�χc�Yb�c��d�5��j�p�4���)\�w�5̞DP)�y��0W"5S&��-�uC�*�������9�P	!�Z*�r*�I�@�%R��h����L��)����]���+H���Q��­+v₊�9�G�]�٦q�Z�»*"���NE�_��,9:��*�<�F�pb��\-8!���/��xo�"p��爬Kx��S�����?�g���Jn�֙����e�t�Q�>�^�ܗ�t]_�9���{�,���*�Z���[��_`؜��Mb��d�e��G����I�k�]�r1FT�z�L��Z�7���l���~�ܘ6�r�ܵ=i
�:l���3�)]����R�Kk�9u�@�nD)�]��Z�9ӈ�z@�Pn:�좆��y��#%@V�Gٲ��M�ʘ� �^�ꏖ��g|a��W�����rkKO���螒��z���w=L��n��0�9a��ppr��~;���a�����G�*2HZ|9�2��*�ʱd��]�d	�_�2@�
_���9F=.{������S[
�+��:N���*Ec--��]Jd�
�R�(�|��?�>��L!jHa���=z��;�=��4����$39^$��w��D�x�����0@Jt'��!d�O�H�4t�j2�r�3�?�+�Fb�(�ՠK�x�̩�%�Ah�l���5�v"�/�c.81�(���
4���u���<U.�Φ8��Ĭ��*6�������6`�U�������.z�\z
�3z��<����r�P��04F�׷{|���K��ې3c?���@֗�/��9��_ ��pm��@����Y���p~z�4�b*��G����5�W�?�}���}a��P��:W7�6�I��E(����6��D��i��k�E��3#%��?��ܕ�]V��.��3�"aݯ��"�"�MR�},a-�*p�#��.�La���c ���d���;<�[e�;6gD�޸O��`�ym]
�H�Th� "T]h�C$�
〓����ua�L�`%��n~�H	��t���+�����R�!w����,�U{�Q�Z`�gQ�N�PF)��j��ah��zb�ǖ����i�U��TE\B�J��,���H���)vm���ѝdb��_-eO��Ӫ����:*�+a��Yc�|�7���&K�m�/��MD�*���]� ��b\���Af����s(n{�
l�
(%W����H{�%�8��w
S�"rUc,ؼIm���/�{if&�(r��'b�Xk"E
��K��'�����!��Đ-�'0�aȚ0�a�w�%�~���Fu���=jW}D����~ŧ�O��o���==Z���L����E�_�屆,�z��Ұ:��@��X��i��h�ޮD��D��	�|)��.@�s�s/j���O_�o���ۇ#0XUH�}T���y��)$�EUC�(���ю-�#��H�G3��>�I|M�����"���b(b��q�J��C�ȡn�x�P�h^
�N�c���$b���w Nnh!_^ؚ>��iZ�l
LIJ1�X@�spk��w��*c̄�1�l��5֌F>U�|s�Y!E�N�ߕ����LJ��b�TL�	e�|&���B��j�ԭ�J8A�"���
L�{�く�S��>����4�}M��8P��F!m�ڳ����B�hq��⪮H�i>6�r�a�(�Q����-$��[i
3abw�{^���)��B�
Җ�W����3;�|l��2q�aSLaIh�hɫ�{�-��E�`d%�Z�#?��p=�M��@�ܙ{6l,Tb���c
���
''#�	��b]�2�R�Q��w��*�l�R
��P�и5­��3��U���U+��%�� ����>�NQxH18����R�jx��L.pE�;�_�1^��n��sgH��?�H����OB�Z���ύ��%�BHZ�WԲ��{�`�g���)��Aq��<���
���]�`R�m
�n���WEߋP�>�ȭ6�E�=mGH�L�����[�!f��?���.����@��s��U�b.M�O�Ha�SW�Q�f�Ԑ��<�.n̠���l9��p
J��7f��wyh%Gc��\h_83{�Ɛ��1�ɀ��XXi�/a��Ǣ�q:˰�&�1AD\[]��;.8��P�E���q
��ȼk�X#I+z�zST4$C�R���~�x���b�ka�=�J��"��9(��r�D�����e��&Zf�1R
il	�)��i�%7���m!�Ɠ5B}8�w%�B��L=s�Kh΀��1�1tTW��N���ų�5���
��E�9�u1�)��K�
3�B���B�Gk�x!0�Y�'&K=�E�c�?��X��,1dz�5�`���=~�A��I�]��Dy����2��I2�*���2m&L�PƆ-:0�}31Ni@��$>"�,8����+~�G��~�/�;Oo}�Eԟ�F��^���/�a��4jAj���{��i����{�.�{�����1�L���xpy	N0�򓯻�&5^��4��~�ţ�B��[#��+�9~�]r��8|״ޅ໒S�Fx���Rb�4�L��{��_�V��V\4Y
��s��P������M_~1$0�� \=�u@E��|n��:�����^�
���),H�X�X|�%f"�?���e71c�3�#�혰ݤ��2,����6��E�YvNi9(���3d�Z0��".���YB��RWJ.C6�x�`.��C�zUTLA�D��X�=��w
��U6��Cцȓ'�?��cd&
�Ҍ�L��� ǓF�}�v��1H��V�._�F%�=[KCʤ�ؑ��-�i���+�50��%r3���N��Z�,.�1HZY���,�*tO��9T`m�F._'u9w�l�f2v�:<�rTF���[��S7]͚¯�1�r�i��]��B~и��'�R��܋@Lp��[v#�v�Pʳjl�=KE�Y3)GNDM��{$oFa��&5 ��bHI06p����,�)��/�p���a���o�6|��>�w�\����/��Ÿ��U�5B�/E��x��h��}�ً�mB 
���Ɍ�0�wHRp��e�p�(�w�4ہ-D��Q�H�i�
���ͤ���-���o��X:"��h�jA�����ᅡ�R�<0�GD�Im�O-�!H��W]b0���1���^��2
��F,(�/]����z�0$P!9u#`����0��j�$�u��D�7�x*^��C*i�[��1�	�T��?�'�̒)D	{u6Qܼ�x����b�
��f3`�l��K'r�!��C>~�*CY��6j�!e$�5�QӲ�3�q�/�-r���W�,��޻�.:���GG��g�v��.J"��[cY$�a��� �~P�>F��aڥDŽ�^4̤n
ub��-ty�S�Kj˜|	�qyef��*�4Gp�Q��~O��
រȦA$��ǟM��L�ؓ�`����h�iQ�3M�"�� ��b�C�;������}gk
�EeW���X|��fkFF́��}Zu�+1T>B"+����(u��-*�1`k�Tx�l��:5�~�Tu5܆S&���k�¯�0������&�ڞ��Y�}���5��^�/�tH퐎爈�8�_{~�K��Qs������v��i�Q�఻����# ����ѹ�),����̠����Z�9����U{�g7�eӠ����x.��J}�c��4��>�S��W.-sXPTc��x
��J�:3
]k��B�(uW���F0&0_"��_��0���cd�nų�{u�qq�j�oW
�y�̌��<N7N6������
��lv��p����R�s"��(!��v�WR0�!��2lS�80r��1L�Ɲ��)w�sF���~(@n��碱xWv�Q��6�2�".���\�0����h�j,���%�ǿ��������|�ז��G��cf��!T�l6�{�Kkj<'	���d�+0���˄�΋§ҫy/�é��`
Z0$�®ͫɅ
9<��&�0�@���"��U(>6L�'��#�&�����X|N���PKﱿ걦���Y��h첖)����*-��B�I$��bl>�dN
؅�FT�� �Kw����N�*���	ȥ��"���E'f�$��)r����Ϯn�?�Mߊo�֯�O�w���KY����x-?�K�{|)��
c����0��+r��՟�Qß[
����b����x�ҫ��s)^����a��Y�"k���?&/�rP]�GW��Ķ��E�d�Q|�5�Z�fE�S��@ތ-��ԟ��q�h�n�-�y��BhiV�)���q3!���P7�+��ܫ%��N�`%E%,�L�]����@u#����Q�-R	c&l�82�9y�Hۥ�1��̊Z&f�nr)\EU˜�tCɽ��.9m�l�)nF����G$�C�nJ��
��Pŝ�,��U1�xu���e9�����%vB�aW\11�|���`��gv�ljixt�q����5=��>0,�;�2H1�s�U� *ue\8��L�X!�em4R�Xh��|��Lc� @�
��]����Vߏ��PQ�nv�L���S��2c?��r��#9����3��d�?��sT	�q�B�T�pP����&%�T������"��bǥ�*&��}���o�7�ž�$~��ͿU|�5v&30��_;�(��S��O�D�f  �uƖ36�#�^kS}"�bL�
f�]�op}w��~�����/�`�əeGH�}�L\ /F�(�:=��a�k4��jȵ�����$�Q��p�����^y
b��4��}mZ��ͬx��k��Bs��l�J�Nx�c��F�Eg�T���ǔ�H��3�k�O��/\��TQ!���� �
mQ��Jd/h(J��z�h]���{��EE���{|��,�6�P�G��"�DJ�\B�a32Ɓ1d�s�־�SA('<~r��!����*+1�u��72�-r��T1���e�EQ��Z]qU"jF�]��l3��d���DŽ<��9�]��V��Hȭ�	En� ,V7�	"��ݟm[��Ż�D�����j8E-a�T�Й�5#>�V��\|����j0�R0��N\�fÐ�[TY�
�!R�](1��Y�����ZQ
��	@�f�5�=(����t�h��-�����;���V;n�<���M^���^K���
�Q�+���
)
줺[]@�S���g�Qm��p�@�Ȼ��Ѧ��/�G�[���d^�l����T���K�� 3��^�1z33<��fC$u�͆l0�
	���n��7�7��o���\{�O����E��p��<_o+���\����xu-��`9��9[t�]�߾���e5YL����s�p{{�
'<|�
2jd����(���,�]��A ��o��]2�z�Iߩ"���Bi�
Bz��;P�?�KW\"@|Ղ��Ek0�4�Rܸ僫�}�շ�4J8fΈ.(
�į�c�^���ފ�b@�y۽4'x��2�p% '�@	���Pi����	�w�`lF����P�_�ՀLn�b#lR�8��P�Z�Q�q�b8Tϒ`89w'���3R���8��$�d��&a;6<����$"	-W�Gz�&�V��jd��uw�<L|L���ߕ�j�&u}�RZ�c3��Ԝ��J��2���\�J�Ս�A p�rB)�2�N�f��F)3�p�"���_B=�m&$�P%��R��������`V_�&�f�)�Y�Ƭ�G�n�=x�3�(�#�c����i?���|�j�_)%O��L��]��J�w�+9"k�컠�otJ�HpӴ:�e�Lޭ7�o�1`bF�`���ЈT'_�8S�_O�̫�R�w�d�b���a�y�"*��+��$������.pu;IYﯢ����v��6��@tŕZ�*�L�Ҁe��Y��&�҅8.�wF��t���3l�
��*�J�{H��eR�?���*��7�"���R���h]Q��ҟ/@�)�����9��{�cF������_��pt�n���U��+E��Q�ݧ"j#��I&�UB��������D�Z��X'r�'!6��v� �掂��9LO��<o���*��"qX�!%��	�J<	s
܉:���B�b��'ی��q�G�$f�9aL	'0�G�}ܫ�Ƽ�>ʳ�96cYm�{����N1�G��V���eoX������s�8��ݚ��.{-ﶞ��֩z@H�
�E�����rd�0O�<U��� W� �&�џ?���=��ލ'�٩�91���,�����R1��	�-	S�����0ɀ9�Y|P�+�l�-�BKM��z��V�����.�HQ0xg�d�m��.u
���(���M����R5D�ے\0J�����Q"Zؓ3'J`�PйAtH���V#`.cV�-JN"�&`O����We|�g~���?�u��<yֻ��
�/�?�n8�sa�C�=�*�(�6|:����f�x�՘���$X��ڻ�5�����~���+�l7x��k�E1U��‹͋K>;����O:�4.7�
�x�E��!N"�n�����)"'PJ�G��^��+.k,�=v�B~fXgf��,Z�F��.9����m�E���t�l�ʷ��@��$}b��n@	�”����5�I����/r��w�i'ڻWϰ�����0���,d�摺�mb`��"�p�B�l���t��Ɉ�6!Ǽq639t���Cv�����Yk�j��:n�]�"���q(�u���Cc�=�u�;̍�hf�<>�\�~�x%C�k�]�rn���o��OH&�f���[q��S]�;�T���M`� �%�\���Z!���"#164��\1�v�ᩖ0EU�FJ�^*j%�m����(�jF:K��BzݶzL�t�^�0VR�B&��t�ɝ��;�Q��̨}&��Ȁ��$���F*<¶1���fn�]FN;�ж�0�rd����O����#����Hx	T�K��'��	{�؁1g�yă!c��3ʸ`��y_0�V�/�7��?��yz�s8�\ D+�݊�AHSz�Q��Y���߶H�8�}Q{�z�M�8�V��n[qL����h�t{���
NNN�ҫ�cRF�s�ݮ�
X�M^����̏e��]���z��>gLj���1�,uO�Ly! b��_���ʀ˦U�d<Z���9r�;�} !������c9���g����@Y��-���k����u%�]��t����pM���ނ�ڣAI�8� @���PQ�0Ð����J)8�`�>N��t���
�<�!�d;�AY}A^���#�Z"�>B`�,���l��6�¢�i��P�5p��v{k⑚�Aʻ�g�_��e��c���ھ'�y�հq�uoaN	�=iih�n���gW�v�"���A0�
�7����PF�B>2��l �?ql�E��CJ)UQ1"raQ��%T��Ȓ�FF�yD��>)C���[B�L-�5g\ID�N���
g��M1G�V&�I�X��q+F�^=K}�~�Q����=��-���js��;�CE�L�33�@q�~�������)A�1g�]b�!�""Wl���!yB��s�A0�{���O���o��B�,�
��8�E��?��!�$�/�Z_</+�l�����za��ø�,4p4Ǘñ��y纮�M.���-إZqw{��g7x��^~�UL�Pt���i^w2h��ǣm��qa4,��T�8��J�[{�F�n�?�ʜ}�2��SE���^�ڥ�Ӥ1C�ERH�pJO.�����
t/Fq݁ć���.Q4����=g�iKs��ʄӻ����4�h����(�
bC��K$s�8�;��ĸV��̀�ї���4y�J8`�)�^��8s"GZ���V��f
+�O �W���qr�|-� M�e�E!�=��
݄�z%ƪ�nӂ��!)��Eb�ű'�h�����h�����~�_�]�ga��K!@S-��lRAB�̐R��}��D�)|�2��]C�n�T����*�
|O�Tq���9)c���XZ���9�,�sP�Z4�oc�Ƙ"V�p�G�`P�hW6��"iZ�@9�0������Si��-�U_��3�1HFȆ�?jr�ca�g�19�ҁ�ꨋʆS�d���
��n���ʯ�/��G�;�-���lgM���8TBz�Ğ���X�������Jd��g�j�[^P颍�`ן�G�!��=H/���]M��������)..O���o�P��AiRE;f}�o�Ԯ�Z��^�P���^�B>�En��K���,.�x�3�®Ca<�k����+3\6 �6�]Z,�mC�<��h�B�]�c-�q�U����l1.Ρ��܈����T-MlI;l	v����zD�<&���C�J�X�KL�aF�h�z8+2|�dM����lx/Z��F:!��-��/��S��^aԡjM"m��h�/��E��߃5��ƾ֙\�k�h���eA��٬�u8�Lo6��%�U[�=M9���P�'�iIpkOW�e�j�ٜk��b�3�<��c�7E��?�Ag��>��i�KJ��M�+�Da�ۉ�T�}������b6U��V(���/�l�Č���,�)�<��ɷ��+���G��}9�N��/4c}�	�i29��ĕ_�TqN��
[���E�%F�r1p�Gl�0hœ�=��b���}�g��+����R}}��@���x�B������~�>�ז��K�s(���.,��7k�i�3j�̂ge�ݳ+��<�Çx��G0Ww���M�B*�^��8B���(Xz洀*A|����I���v�rKv�{h��^��k���.��6��"���r�]
v/>1d�x^Kl��?ڢޢ���jNǚ�ó>Y�Z�+���+�� A�9��68N�����[^Dj.�&'���t>����+w���m�l��eQ({BS�>�u���0V*b���id�8C�ō����jW�0��Vp���R�c��3�ͅ�^Ƴ�u�#��ӵ1���7��_���5�O���M���s�,�%4�9��R��thep�R$��ڌ�����"�-���1>�cҊ���-�"��ASE���R,lo�.�ss����A���9���pvR�(�c6C�p�n��b�h����tJ	��fϢI�$0&�Kt6�0��ا��s�(�+���C$dn��MN
>��!�	۔p���nx��~����o�0~�����~i�.~nG�����x�
K��$B[Ƚ�ރ�[d��q}�7d)h���m��yS3j3s_�ps��>�+����6
�$��Y��Z��v���ٛ���j�wLM�o��h[�6��'�<j������k?|�L�ֈ,1۵�k�/b���������X
�ѩ����� �^뒧;�E��ri�b��X�8��3/9�] ��gK��A%�<rw���#$����ų
��#J��n8���@/z���r����H�8Zܖ�`+s�͸��z�A�����E�QȀ�=��]��,+-�*W�y�����|�Ҹa!��pz��V�����<+��o�/�c��4��%�#� P�o^\`_&�w���U{Բ���As-�&�,�7�X&s �E�Y%ȕ�b8� F-6��?G3(3�1L+���@A8Ҿ�[WScO!���RY}���I7D�d6Ϥ�{�	d����—�%3.)���["l�R��4�e�O���pq�ų�Rgz����[�s���w��4\ k�a�^tE����	�?���=#�)3(�9w�W�n��W_��o`��/I�|f�.4�HS�9�Ԉ�JJ���1�Ɏ/?@9!'��^�H�k�?������(#��RJN�j(4��E�c����)��Ŏ��BX��|Ʉ����F3�CFE�_uS�v�rˍn��ؘsOR��ؔu���/l���*v�h
���J� e�q���f��]m5*�h��^��硽w�,��2^��Ų"�uR��[T�����d�/rb:��,����z:Vk}�缴���B�"ܪI��we�9��L{�YT�E�ϋB�W?kS�Us���_�92J�7[H��W�yQ�U�-��!�4�(�~��_���MM�?��Z�ʒA�#�yk�ʲm�[�o�hGbH2$J�[�^=YŬ��j��)���N���	��=(���q��]Q���Њ�X��Oi1C�#1Ҡ81�;O��;?�:�ٟ�	<��-E{�i)j�E�J�#�/x!|�?�<�VIHՉ�G7�\�E�Sm�*���T�f����*Ju��? �aH���'���⭷�������\�CҦ9Ԋ3�	u�a��;��=Z�KQ_"G�BQ�>�p�X�ǢzM?��?pUE.+�7Hi��C7�v��nc��:
�r;l㛔fv3Z�t�gw���z�j�d�����nDmJ�W�1�Hpgbh
S~�g5�<w�ֵ��_ ��%��|�#5��j�/������|����r�ݯ�ֺz��o]�"!�G�v[��_����
���q��p���[��^���hi�#��m�cƞB�%+�j�o�gf�� �Ҥ؇ �D�&*3(J0qF�ý,Ah�\��r��:G YN����YS��9��E��`.�AP� "8⽨���f�dr"��3��}lG0kh���j�{LVM@�K)*~��_���L3�1�����*��r�yg����J0���9F�sš�(bO������#����/���x��;ʄV�!��D/x����uU��SXu^4�i;^�7K���Z˪�d��z@&7��<~�y�ᵏ|��9�Cx\�.�[qՈKv�u�9�����c��X�o���v�Fd�+������D�R�x{�p�"qމ@d�#���_��~�H�`k�uTf��b[��fiU=j�����ɣg���ڼYCVWW�.
zd�i}!��d.=JO|^?.��E	�Q��e��w|O#{\W/�����/G���^�ܟ�>���բ�?��d���x����V�G�d�� G,��u�za�/�5��u����DMI�~��l����`���F(V�p������DB��!�K���ʖ�g���')v��5��si�^-�-rO�#^L�*��
 �*��/�.��}�'KR�5��9�:�n��N�Tj��RL`�0v�����3x"�E�������k���l���%095b�0�*�l	��o��)~�7w��Nח�"p��7�Ņחvq�h	��7�,q(��uA^Ĭ;;€ܿ�~V�Z\%�ŕ��b.�+TKœ'�E�~��b�9ռ��MW�kd
�S��F��1Tj�Ѵ���dNȜ@i�#{���?�T岃��0K`Ξ�A�1��n�y�ZR&$6��	9-w�1Q��IA���9�2S(H]Ω�H)a;���9r�VS�Z����}��-+-$��^���[�҉��&�N;���b�k�H�5�K/�r��{)d_����ދ�\���G��Q\�$��=�cL>�[�&��g��ZԻ����6v��F�Mo���1��+��SY���)���>����vY��~CL0v���_�3��@��|��
(��ֈ�XL{���.؃�D��K���(�s�1w���-`�x�޺�e~�������N(���/	�n���*W,8��JRSO��!��3<��z�;'Ğ���|����#��9�+�8���C�u��~�?��@���h��r�����Ui`�����.��ew�х�/��8ՅEe��1PULz�LHQ�Zq��0��[H�����kܜ�s2(/�vip���K
����G�|�L�y�|�'������+�^	�y��c���4�1�S�>�2�HMeo�:�/��u�]-f"�}M
��.U*Q�I��j�1aj��c����m�e۽�q�p��[��1�<sԝ�/�^P�t	�1�)�r}��d-�=>�m�"�z����IS���Ĺ�W8��״W�X�Q^�Fbt,��´Rґ��	'lM�k9SG�X���p�d<�Z�%RcN����k;�V���"o���K�$S[�Lj�w/+����,4|<�D/m�f�u��r\^�k�����v�!�([k�+�
Y���Ȧ_�.����x� }���˸�1�>��G`�}I��5o��=�2S­V|h;�W~����l%�{��7:����e�ϣ,ˮ�>�wι��1�Ŕ�9OU9�\�*T����H��ڒ�-�r��ZnٲeJ^�R�%�R���I�i	D�		�Xj��*�!23�7�w�sN�qν�FdV�)5-#��̌�|ᄈ���~_I�ht�~��*2nD�|
�a=-��#�M�U`�K��t���i���X��f���z��p�x;��邢L��]cI*��}Z��?��u�YQA8&���Ɗ�r�zh��&��GY�I�t��嵰���fo3�츴��/�ߣ�
)S#r�P~C��_!љ&��c($�M>iyw8��.ǽ�ȄmN���������m�<�R�7}U�a���0��OQ^���]�إ�0�<f�ɗ�g�c~�{��+�vWr��CQ,�]�Kv�"��ek=�u�p��(�!w�Y��
id�H��<y��2ǫ��y��6~d��	&��@i�w`�'Ӕ\�~W�滸Ү[��{֕q_��8���;��菒9�]�&0M+��G��m�X�	�|32\n��A0�֍�R?�RC�=
�wZ��9�fR�V�c�G�J�\��B&'�Լ{��Z7�8p�Bh�B�b&c�s`��g���I���Q�����3L��S	�;�]��q�?(O띸�1�L낿W�8���fg���{n�0��b�1Y�:��CX>~7B*���kk�4%׼�nMYU8��Ն%ũ�x�(�)DG\;w�
�r��s��v�J��d��* B��/\��4��&2���OvȀu+�Bw~m!hY:mq��RhO>�k�ۢ-���* ��w{Kԛ�t�/V�v�d��荋����N�&H�cOQU
baܷvB(�w���K�+aw.sr/�*�#v�b����ӅKd��/ �������M�2�L�ny)�"�(���[P*$�3�'H��X#�]��)+��;�̿�ғJ9�F{��7)��9�;ums���"��]�����l!h0h/P
)!�)
�4�� �C����<�к�A�Z�¡I��7�.X΂�j��M)�$ǿ�I͊�cG���'`����������ʏ�
Ƈ�1I�+y�vQ!�9�Ř�u>�ϰ:s1�IB2�����'��ʐ�pX���0Dج�R��&X�I��WI�ѭ)9��-�GJ�E����I'�X�XLD镶����f�;�KZ��u1����nYaT`���d�c3Y�����۞�k&���ɛ;��;Te厘,Ost�m��҇!�����|>��mv�隝rX�k�w���m�3�����Tj�ڽ���,�rҏ[�=�6�rЎ�V����N��=�����R�<^�<���8x�,���it�Ro�-���;v:�C�t0EZ���uA�%G��1:�Z��&:���c	[2+�+^|�Y�V	k2Y���� d��)M�{bl>�B�P���f"B��ɪC�Y��j?c6����eAP����
��?�R���"�N�G�fy��"��h'��NJ��'��5ߪ�����V���@�iU��B��y���Bk7O�b%�?�0zbuЎ���qJ��c��*�F����� �_�u�s��ܣ',%J;kgC�9�úX��˂���f�T���R����bvT^7z�)��5��{*�
w8�'�p��x����'���4��E���. ��P>�;w;>4��S�������.�]�Gf�>�?���Dǚ�j);q�>$y޵)��&b
Iq�129��w'��늤��ZL:�\g/J�}�ء��N�`E)�(deyoY�C��XȨsc��z&��m�p�xTD~�%v�W{�P�K�� 6�H9��:�<��a'�3^k�Z����|ΰ4��n��jSZN�KX�-�(!(��m��J
�̩3e�{r�	|,uYɓK"��(,i2Be	9s��(d�d^����=w���<�M��;L�~�19���ƚ׉���,���f��-�f[;u�$���Q!����^�%re` ������)���Bb��n��@,�. �#�;k�͛,�l9J�6���0�<�"���ܵ)J�s+�L��\�%<K�氦iM�Ss���!�,��'&3q��g�N|ȎyPɩ.v�gK�g!J�9yǮa2j�>Y��\�JVe#Jkm1i��[���lI(ګ����Yi��{�#vLQK�"��P;
�/"��D�Q�η=��_=��j;A�{`��=.%Y�(u奨�thJcMS2�Y�y��{cJ�f��v:�Û,�S@XC�
t.�f2&���Z!��r^7�|�����-�N
���-;3%'�&kv�U��Ȟ<ƫ����+4)���!0�_���gÖ|:�/��L"�Sg	���A3�:3l�<rp/�;u��36�]�(nr�G�B�[�S�Q�xܶ�؍)��e�N�qB�)J#"�v��w��;��͋]����S�t�[�d��-��Ls��	�T0=�t�.��La��?������W��G>%�R��b�C��Y�x��#��TI�������?O�A�����7��^�Qgb“��*}�0��1w��S���ri'cQ�6&{!>�?��.:��J�o��XlQB]{���29b�B��N˄��B��A���P�兯�v�|qp��}��!/�
�¿Q��R�=$ʮ�_��L�›���C�<��
7]�km=��Iv�\:��M���L�}G��%GQxae���F�4?^ڱ���cw>��R�����;�@w�-\��uN�(�0�s`��c�V�<�C�|�.&���{DD.��7Z!,�D��hS����J�x<"]��c�p������p]�x��)����j�wTc�F���)>��b��&���P'��Oq�ɤ Ӥ�)�8f��
Vn��|pGO�M�$�؍�d^��s�K�'��€k�S�Mx���@�?T�~��zg�oc�lpC��@1�=���:Z��0����U�O2)ʣcEq{��o��Yy�����]��s�ĮK�[�R�x�P^	�$W��#<C�Pv����c7B)U�#G�
���J�B٦��AN��DQޝW͎��~�;��[yI�]HG�(KK!\E� �!���/���9���E8�]Q��f�"k'�P��*\-�qY�g��|D�]��**S�����:N��r�hB䊯�(�8�{j-+�d�6��'[3�p/�ry���kȬ�J������wٲ�F�t�"� ��Iy�����x���-�8���7�I{8`s�'O�ŏ����v����>k�ywҌ�;�V�m��_y3�����,���7?v�qߩ�L�p[@�\Ҡ)�j��0Y��)�pȍ�7ؼ��ҡEN�{�D���?z��S�E1�ʧ89W�X������r��Y��v �~��{��.�֝�f;���:/��0c�JZN4n�,}ƴa�"�~7걓��KQ�=��ï�,ae5�ْ#��g�	���#���܅��5[z�����FXY��$�Ҝ<�oQ��y��ü�;#D�z��G���f1��Y1�b)f��׿��+��|ٯ�!4���
oi��ڟ�;r�K&�{�c��7Wca�<�<R7�c'Y5d%��Ц�H;����.7V��9��qnu�����>������hJ���"�@
��p#��_prŏ(�KZ����h�†�/��n�c��,�=�	nd%�\7!�$H4��uy�h�+?O”ҍ��(�;��$N�d������鈋o\೟�*�8#�0H��(K��io!��}��_��+�;��\�[?��*�\<oK�ɴ���.�Y�r�[�D�*w����n��3��5.�)Ӛ,�0�QƵWY�u��w�ЩS$i�I�ɢCJ�y�ř��y�ع�vU�.-�X�<�O��
��|���P�f���? Y)��L,;�b�i-���ɖ������
�qQ@&�#&2�\)����r�Lf��(�d2eUn�v�,;������dͻ�{�%��e�Μ����V˸�<�Z���Z~�v�L
R{񈈒ٲ�)��A��^�Z�Mx#]�YX�0�{[�8D!��v2~�v�=c�
MX��ٜ��˩�hެ4�?�FN
WnREX\�;��:7��:�-�
����=�q�7��0�JPF*)mrr��{A�H���\r'����]�φ������G�k�{���|P�,�.=�7����,T#�8�ș�*v�cs�#�չyq�kW�1�|�*�O�ğd��u%�NDJ�Z���;��&���Ѹ�8�u�8gB�ﶀ���@3��#�6sON<�#�E��x�p��
�V�s���}��A�`�EΜOv�7d[�j?�Pҏ��s@Ya��s�rq���;v v�P����.Ǜk��[�O��K�7a�3^�8�����q�0=�
��+�4��\^Ǥ@��Y�����Zi�Tx<�פ^�w��rގg�}�'����B)$���=��a�Q/���@�����
wP����#9�g�Y���;�vb2�ʻ����kεv4��F����x$�(�|�$�g��	<���0]�_}�z�I��WYR?�H2?��b�r��h?��#}A�4ឣ��r��z��p�O�t)�&,p�+(2�U�)"+Ȅ%3�(�i��8���V�,¼D޹���\��sn��rb�(e���w.A�`'��͒��K?���)�jۿ�c��0�����F�a�B�Va8r��e��>�^�+�_��?�C�z�Q�76�~ǡ~�l�S��&A�gқ7g��~d�i�����C�e�P�r�t1� ��o"0�GC�hB�^j�4%�R�Pb�e��U�o��䙻ٳ���أ��(�9^�_���'��<Z[��w�_l��B(�����줃�V�H곅�3)��"��\�q0:�G:��%
|@�����ޖ�–�hm���NĖ%æ� eP��0Y��Q�?�%�G��6KIm��&�s�v}�}�}�^�MT)J�
��F�Fx�u�����Ƃ�GkJ��L	7�΁k��q��/b'�)��)�A`�Vc4R(��*"�f�!Ҹ,�����vs}���B�q�Զ(��²�BY�y���C�{��gS뺣�ԉu�+zjaU����k,]]QV��E�F~C�úd�����)eʿvFR0��1(��ʍ��+��p�8�H��η���C�
�\��jwU���
@*�@q�U6W70�����ԫ���O��,�͏�?�bvIL&�4MPJ"���Ìy�R>���IϽ�A���=N����f�Y�.UY��ʲzm�����dq�2�Q:�N�b�Iqm����)�MFn;�9����FXo������r'��[#lqes
ě[2ƕ̃Ř*�~[�UN\�֣�u)1�x$��ߥ�&�I������{��)�~t�3�z�%�$jwR�R?N�MљzuY�C��^�L���[S���l�҈�B�	4���K�P��sr�C�R^�����2N�	g,��(;1
�q,�?g�0BQ�;��o�Fn�M^zi��5y��pE�x=�������S7e>�Mz�U,�h)Q��~�)��u'%�Ld�����;@��?�3��$�?��p��5�}o)���J�)�ť�=��X�{{�Ǚ��y�x��"�R���C��P*Rc�
z��!O>�c��Q��7����U�J�A�y�T+�}.�;O<3�h�]�G��'�����ln��-
 %�[����ƔFPw���Vg,�d&!
B���`��&Sʢ�4s��j�����F����x&���h���k
7����������c�,�.w��zx���5�JL�ӹ���)�$�5ߩ���V��w�R��ev#lj�]�L��k�S��L��?�&�"v�X�LP����弚���'�g	�����p��4N�[���N|�s��;�
�A�<֛��!����N��c���#�D�]���F�����KےiM*�љ���&�uaE!:@�Ѱ��]�1U^HU�T��i/-�3:_»Ѥ�s�B���x5�d�+��asօ�iK*ݿ]��ӥ1^�4�êy/��8���2�B:�j�)�
��׿����<[p��P(!H���?��׵%N[..	=�Z㠊ҏ׬u�o+,Zgc")yt��:t���\����m�Єa�0�-���>�H�7���������M��{�Ǩ6g���d���ĉؕ�����aK����͢���ӗ��T���qh>y�֢�) 
CR�M����#�s�5�xĐ[�4Qa��ի7�8z���9�qZ m\���8�3��HdɃ����7%��[�r�[�o����) ��wx�.�V1�2���ؙ����)�Fͮ݅1�ۣ�-�_G���)��AZ֊RT��9��+�2&������aR���[��/Aa�,
��ѱ�mX��V�x0I~�.g��-Ν��$oy�+B�/ŎLC��	j^�C_�(>�eg;�4��<�KW3�}�|�=ȓ(���b��7���3#p��|S��>��8�M^��̸�@��):7c�_�[M`'T;�%�"�ڿb�9���!�]��x�W���`\@�.�����{(Dq�ߡ�q�Yn
9�?b������q�|$�{q��f��Y�G
å�W�GH�����Bt{=R����L���aD2��|�<�pL2�v��>��~:��}'U�m�㎄R��<g�-��7�����E�v��d�t�H��H�w$y�i&q.�"s4��Ύ�!E&��jOM2��z}��?��у�Z-FqR��H�tV�;�s�Iq���t��*�;u#wRa��v �n$��U)>�;i����S�dy�+�}���k=�gL
��7�B��R�ʿ�j����I�ˮg�ZS�2�F��TLV�;�3�]��o
�	�	7�~&�@�Gwо�R�h�P�r���I�c�s��bJ��) �!¹k>ǐ��m��,&Nl��q����a$�j����a��C/�݉e�|X>�]�(k�K�~B�w.�[:����Ű'O�~�n}w����Y��Ѷ�Z�ڍ�l��}O���X�#V'�;���$�+�
U�^+o�ŋ#���#RJ'��Ea&ϰ���x@�e�׸o�'����\���+�G	�ZH��&њ0
��(	��e�HIU\�����r��/�cF��A����1���N�)���b�K5��<Z�5�#��w]@��[K�(�c-aN�Vb�b4Kwb�E�����f�zN-��!�3~4*0�a��5�ǾcG�6[���\��Pr�3ەH*JcfY�%��
�-����t
e�bn�3yW���]�vyny�����Cm�,et8����g HA
�n6m=��ͱ��2�.��wO�r�D��^3is���o�elJ��ȗ��%�Wa]�//�~�/�Su�`FQ
����I��	��2�a1ޟ!�p�t7F�})3�r���l{���%��ńY[“�~���HW�����^��Bc��~��#��ŸK�����m�KcK��\������S�����Xyv��0>�H��P�w��-�d�苇눜�;��8C��c�Ӝٻȉ�i��B����ddY���̐�	2&�l)	�� ��ۓm�N{�st6�t��Im����}�d���s��Q&��;�D~��ɑb�G�( ��ZkI����JA�}�T�=_�<Z�#��;S]�a�X��n}�Y��z��ဣ��"�׉GqA6��ـb��\k�H�
QJ���Re�{Sa�.k��v�wc'{��}��DyU�&�1c��k�K)`�F;ڥ�I�E����ڒ�w8֔B��$�*_e�l}E�|%�燡7��Ɍł:�fIv�L`�tѢy�������9�
)K��B���a�%�����)�O�ӻ!J�3!&dd�(�L�[S4��)��87�ɟ��=�)c�ّ%Z�s�7� 7J���5�z�V~�JiE��?`�x{��’7M[�%+�k$Z‚Z�<*F�K�-K�ݸ�I\�l���Ȝ�俏E����7X���K��r�
dB�q����,�hE'��w��[�T�f��a��C��]�*X�:&����[����0��+��|GTk5�77�z�"��6R�t�[������l�;���2�W)��q�~�]F�[n=�:��
��t���(g+����#J,;�y���� Wj��\x�(��6���F�n�,MX_�B:��w�(AX#�cw�P�y\��`r�b�����
�BĿ3��?�2�Hl���dLe=�����H�q��d��q���^��jM�.��w��)���4��3U�}��o&r�k/��s�#�h-?ԋ�T�q��i��Ydn�w�3R�E�u���T�LX����;_�D�(;�'a2ʒ�薍ک������J2cQրtb��Ae�W����y΋�y8��;�C~	<57�q��TO�ű0��NMH?�v�@!��N�e�+i ¡��D�!<�X�:��ȍp��<�Py{�")n���A
C�Eg.Ju00�bk�ǤRs�Q��Y�/̲4]Eg1��>��L�%#�DZC��l�����>�x�52
��ZA�TA1j�OH$+�.���B�3 ��L��y�bd@�f%���m�W@
<R��y�R<��j�G�~�DZ˳����v�m�X��r����g�L���d/�]���e����@�#��u����^&�6��x)�{��0��ΉnnS��oe���B�v��L��YY���h�v�*UL��Am�����NoP�ل��P��G	ET���Z'X��
5�f(�qB���K1�%�,�/�T@��~����B�x�c>�/��7�%
�\�������Cd���?[PZ'�y��y,Ei�e�D�bF��<��YQB;i�
8�T
!D���Fz��*9�^�Q��~x��oϓ��x5V��Js��L�|)�(�\���آ��w�˜R\�;I8�0��\x�}n�t�u��צP�)+
l�--o=4��UDq��L�}�)1��T�i�9A:цaS��M�,�rra��Q���q:�h]��O^w�]�f��޽�`,�ш�����0	è��*�D�
��5.��
�8!�p�5�y�q�{�l�m#�����d�o��G�G�ҷ���B+�M��+�z�^�8ц6n�c�?��DM�CR��2gc�e���机R"g�TˋH�?�"C�I3֮\!њCwGIA���@��XB��_I�U
����
��1A�	��X����"hJ��;
�n�d���]�!
C2aY�q
i��qk�M/KX�j��P�WXYYCE��}�{��x����s�i*����+L3űC�h5#.����q�}K�L�L��$Q@f`�ehm
���[�] �q�.�T�{��Rr
g~��j�猇���<ֲ��CzjRή�|@��7I���O��d�^.g�L����x�)�l��Ҙ<���t9)~��I-��\2��A:��.<-ֱ��Û���%q��Z�!q��OF(jQ��5��~w�]�RRe��\u���A�#M��i�q��3+]W���0�(FB��1_`݈�Hב(/*��ea�U�1���҄a�Ҫ��\����,����!�t��љ�7��fK8wo,����t��0�A�\��9х/`J��s-:��ٳ�ml��`8P
%���`��s�q�x���E��_�o'_�%��%IB�j�����~����]4��߱���d���2�0aH�Ƭ^�BE8y�LtA��Y@��]�B9�| �L��G��֛;Q-w�X;�'wJXh�*T�U��h�,�zS�j2TnF��1q�QQD�^�d�L낧��D1k-�8!P*���v�*iw�6���Ʒ���L7#~��x���o|���q����o=(;}����x��e����\�|�s���>F�7����n2?=�=����w�X��T#��Bf�]jaCw��(��s��q�n�{nw�NM:���^[�!(��W�Ц|�#Qr�X��"���V_@$Edj����Ø3�&��IB��:+谪X
FZ/}��x1�dHk�t~Ȝ2P��'��w���2-�tݝ�T�cY�k
tl�1�8�ژf4H�z�*���8v�0{g�R����F�d��r|���9��55��ܐȉ��w�3?_�9�k#�1�G�A&-���>�ëDi�,��Fn'2���7��\hqfa���:���菇�ٸ<��NE7f�7�	����0@���h�r�GC�$QT%��ޑ�O���*��-Ν?O����\�p���,��`}}�]tn;K�m�ݼC(�r�1Q���w����NZ��S�f�,K0Y�|Ƹ�t9�K0�7Y�?�N��Q֛���2qF��ZҸ?O��
/���0���
G�9E�t��8G��;K)�$P�u4�Y)9������C��ԁX��Z��E�$I�|}�k�ophq�����j’e�4���de�~V37U%3�K��!�DՈ�h��15��MJ>�0It�\�v��_��l��]<�7ύHF��U.<�,?�ă��O����5W_�ȏ~�)^�|��.����M>��)�������Ͽq���{���$Ƽ~�2/_�Ȼ����AW�nQ),�.]�E޿�B�Bʐ�\�834�*�B�C�UN^���-F;�Q��~�"s��}K�Sn�q�"$���c�JP�,�I]�T�0�5)�H��R�gd�P�k%�kֳ����m��)a`d3?�WdYF(�
d�o`2�Ȓ9�=�09?D �ޔ3��ŠCQ(#
=�����zYi%Pă����ޠYk�����,��Ǚ��i���G�<���(_y�9�x��9��ҐFZZ�@�B�f�O/N	�$�1�ρ�n��h^�%��,O��%�Ǒ���,T��]�1>��T��#�#��ܻ4É�Y�k���^�8K0����3�q�ODP�٥�X�j�g���T�����z)P�� ��
A��#t���j��Rr��%n��"0�ko3
���aD�N<No�UN��1������z^��^�|n��c-3SMt����q#�|,U���7�ܞL�|�<��os�Yi���]Kd'5/`Vk�'�K)��7�p���Z3�?~�q����p��RX��pW�ږ�,��&rIW���])�8�<�3wTR��%B:wc>���d�%4IH@�"	"I�Y[�f�=de��מ�s�]f��d��=�0�1���j���H3�Dɡ���jt���iV�lw�r��)SSSԦ*�?���[]~�����W���~y�dk(�u��u����o��?�{�{8u� ���/RoV�zu��Ul�)���|-�M��~����=���t���[[ۈ4c~n�N���CGٳw��
@K�Ԑe�F#�is�{L7C�9���k�v�dR�lTiMW1�2�
:qVcJ���MU!�� �d�+�)B���Dg��7ޛ�$#%��
�$� b86�i�b���$t����m0��㖪�OC�jA�ɡ+B�8?OT	�t�����?��$�m��0r>�|��R�$�n�∣��(���Fe�v�ð�g�1�M4/�z�o�r�GN?��|��x��<��QmN�tƑ�{@T�f�����%U��ӟ����c>L2s���t]��T�J�J�bd�p4��AK�NKM)AE����w�2��(	Zܢ��?�!U�~�7�̹XIFJh �ѐ�`�\Mq�<g�-pp�E�Bgء7����Y�݁�P.r�!'�,N�$k�7ɑ�G�t�$IB�V-�ä�DQ�7b�;]�<�0d��s��%�xD<��r������;���v��w, �_X'#����/�8T(�
�7+LE!v4���~�׾�Ᵽ|�C�E����5��;�]��;��T@&[rw�|m��g|'d��̍B�jH<p��3S,;��ݾF��D�"X�w ����@�BD��{�uz�4MЙ!
�k�`�[�T�H�\�g4i�R9Ì7<Y�a6맴���d�($a�L�Y��pue�+7Vi�bKXm��:Ӽq�"�N��K��MO;��R$�FXK5ÀQ�ЍcZ����ط����(�V� �e�%~���o��/0�<tx���O�YZ�╛4Ð��)��7^���o��/}�Y~�S��]Gҗ�g�^%0�0]��B��:����m���'y�S4��~�w�1�|�qz&���+�۳L=������IB���
Щ��GՐ���Wξ�4C�سw��f0�ؿ�FԐ�ט�m���S�R�j����\_۠ڬ�T���j�F�hz�m�P�kUL��R�tn�*��E6�h-	t{��fS #�!T��A�ZEQ�)/̍0�vrZ�$�^�O��`af/:5���K��m��;��f�� ��u�0A��f���Y�IBV#TH�3�զ�;Z4�JH����)u���E��/���s����W�B�������|��ws��
z�
j�~�c?�l��k����+�;=����KWXY]��˼��9}/yﻹr�:7�:�=�;~�3�N #�>�6!
!������x��T��7F�#/�yJ�g]WM��a
"n~��{�q�R�����,�<�f	��x��j�|�����1I��H����R�ֱV3N��ģ1a��$��"�%�BT% j”R�8� �y�*[�k$����f����?�4�2w��~�*�ܑ�Kk��V��t="�y�s|��_㹗��nw���ʓ����/�*G��l����;GW���7�X�;&m�|�ؿe,)�
@�ǟDQ��F�>�/_��0�򾃌���$9ч�%�۵*��
�MG\;w���Vf��z[2,�y5�:#�)J)�iL���`0&*T���(V+nw�XƉ��f�Bsj���4�jՑj�:Ag���[�6�"�$d)q�p~e�K7�����1A��T�PJw#��F�`8����2�S�|ηT��c<�-�3�d>�<��M����&�A���G����T��/���c?�}�p�,�A�Z����-A�㧏����?���s/�J(*D��V�Fg�M/���DUf�
�;u��j��!��x��+�X:���,�_8��e�i�]�L'�߳���"����+o(�)o%�n��+�<z�{c���8�""P�c��F���5 P�����ʅ�70�9f�p��C�ve��v�W�8�k:|������<��Q`��C�vla!��o,�v������P@%������jJ�
�W��I�YO�8I��|����՗^�ܷ��ᘧ>�I�SU^y�5�Y�衽�9r�������r��t��Μd<���4�a3�(K����z!+���E66�8{��/ݠZor��%N�w�Z�|�c쟙�"��§����0�>�+`�d(i�nܠ6˰)�|��j�}���Rr`y�v�O��g�S�����*� � �����_�Ӫ��t�v:�F����67��Ȱ�t��*BÌ/:���!�n9�ܮ�n�4C��n�(�8���ɥN/.2߈{���$iꖶ��NyC���iNx�� zc����A�>��j�v�CfݘJg>,II�j�P?KNTXa4�r�:KУ���ϲ|���G�lw]�wQ@
fU��	�a-dvz�z%����+ϿƗ��M����\��EԬs��#<t��>H%�Q&���&�'�R�Ý�jo]@&��, 9r�M
H�}ܩ�H�o4T�N���Q����"q���.�S(���&]�MGܺt���]k����E���j��&��\s���"B)�(��>��.�$��"�L#A�㑻�6��n���*ط�L��"��}
�“g���^�fCz���WYY�f�(���R��!J@b�7�)�1$Y�\�֢���p��U�"��Td`�0�^�4"�k��4�lo�TH����a6W��TB�����
����k�~^�v����9k77е*���CRaY��s#N��˘<u�d�9��pȳ/=G��%���L��j40�$�֨s��
�9t� ��)R`��T���,c�Yez~���-���PJQ�j��+�r�]�z���B|���?�	��_��~����<zϽLM/��;�������³�
�#>������`P$�)�J�$!�0��VJ7rP��N�n��V	T�ʷ_���^瞣'���S�F��M���AT�`�)�._�7~��B���?��݇%��7�q�����X��E�MY���̉�x�)�2�ȑ}lu���=���{O���L�g�}��W5ɡ�����E����9�� �9�L�α��0���7������>��4��Q�d�҇�j%$2�j�k{C���$c��F1�f�a6�LE��]T�N}f�Ao@
���,�BT�����\���0S�<O*@��
���jT�QMRD2�����}�4G,S$�~�nDl�ɒULD��#X�J4*�Z����,4��D�Ξ'j�ٻ�7WiͷH37�K�Q�©J�\��A�ƭ5���`H��Mwk�w��=t���Ux�}���a
���T�f�����ϼ���u^x�,����.�����8s�����ģ����سw?Ӌ��F�R�<�8Jˋ��u���yƚ׍�����0���dEn|y/B��s:<)�/�
X�u��\��Ž�D�$��!V���b������ڹV(+�#���:t��x��%�a�$��R)�($�I�#�SS� d8蒴{�$e�gY����Z�Ph�P��TU�z��ޥy°J�$F=n]_�[n��ݔJ(	�(�:��3iң����KV2��1��0hՙ�ƒ��0a<JX������6XX\$��z��W���r������kԚ
�x�2_��3�r�*S�&�
�Ew4��8as0"Ncj�)j������Gy���QYʇ�~��/�+�^|����LGS<��+�8t��G��5��ҋ�*5��I���w��F#%h����\��«/�ľC9|� �Z��.��}c�w<�8k�.�+�<r�(?��a�Äo��a��1�nr��9>��_'M4O=��}��?M3??���`��*|��0d�@x_�;H�4T
E��t@��X���2]	��j�o�Y�3�j��K�Yoos���<�<p����sx�2Wo������t̅KW鬯�|�����$䙳����=�.�𥯱gy?���3ܺr�?��d��K���q���ٹ)-�c��f��%11�n�ql��Nx��e�G]�!�|�I��m4��'c�����8ΈS
R��o��v8u�8V�����_�ñC�X�h��	�Xgl�;h�=�(�ss�mn3]�ph��]�-*d\�z�A2�6%�U"�qL��t�c��.��(mX��A����4�V���A�����ac�Ad�����y)+�vc6��	ڴ��,1�����J����M��B�V�	T@T�PʙwR�!
#�4ess�5:��^��K�x�#gi���$O��*�*3SM���<��s��׾ų/��=참��8ͻ��;B�^�?���	�mC�IG�,�����"{e���v��ݵ�)����x���Y@ʻ�I11�}�%���ݒ\c3��0�D�ۛLOM�̒CE)�
�n3��k��~�7ۛ��u��e��m��Ʃa}u�Q�257�ѣ���!I-:sAIB�3YPqHUX�.��6�n����&;‡>�>��zt�GdY�0bt�8s2F%���e$iJ5
Ѿ�B�y��@��*�|��yޏ���cڳ�\����)$���#��Tx�};0O�Z��L5���m��	�J.-qck��y��K���Ƨ��g��2p�Y�X�ъ[[�5�8r�ӭ���[�kO?��w������GIɥ�W��T€��8����,���Ǐ��7�t�*�,�ͳ�9M���j��DEU���~������Çy����	�S��-Α��e)s���}�Ԫ����V�K-�x�
~��(�|��d�'c�:K�3�*I I�Q�T�I��Q�@ ���$���VUD�Vc��������F��Q@�9E�"**@��~��6	ͨ��D��y��9���7��c�����i�!3$k[[���/�����<������H��Z�A�Vcia���qd�!z�]^�z��Gh����:��}�G��{��HK�����}�T�[[�,3sl�{�X]c��"��7hw��
���Zq`q�$v0������r�����L��=���n޼��6g��M23�Ё�4���4��j@��,���.�p�^��i��6��%Ō�]��>��k�I����>���zPob���eɥ��]J�+�r	x%�8��l3�iδ����0TD�
Rn��!BJ�%�~���u�!�j���/S[X�O��?I���qX汬��j�V�����o}��_:˥k+�G1�K����<��};����v�Oo8�+����(b}Io�P*���g��؂u�o-޴n��[��f�-�wTs���yi�����TQ�h0���?��ۛ�S-���hT:�@�ڲ�;��3Ͽ޲Y�$"X��w:��Ԛ3�u�u72�^Wn�D>K�L�DB~�p���\�Agc����!��v��ju�*�KDQ�ؤ#�x�
��!�3�X��b	L���2M���*P�P{Y%�8Ug�$�e<��+!@����/�w�`q~��8c�f$c�c�� P�]�gcs���ϣ�t1�7�d)VFÄ�ѐ���Ҕ�?x�$֤Y�3�=��}|���y�]�i�_��_���>�f��v�{O�˾�e�m�s��EN,DVz:�^�0ߜ&5��2���{`,_{�y^x�9�=�G�� �,Kطg�$M1��Af�)U)�j68�'��r�e�t�*�2EN�r��<i	�"P�5�8&�T�Ȁ4����NC+sġ[z�Q���t6)����TW�Q�ը��j��S�	�,���*2�������J�N����^��,���I���K\Y���I�	i�Riָ�r�J�wzUȺ1׶׹���@k��j��ǡC����
�̲��ɉ#�P*d4�hL�/~�Wx�+_�C�~��㨺"@���4av�EEH+��~�G�V%
�{��N�
K���4�X�m��"���ӳX	��m�Z<�ȣ<p�i�[dq��0�3��>�T���B٘�YÃG�y��!����1I����uA��}B����PX}�vI���t[���D���?wܼٛ)?)�2>�Uf�,N	���t����^�#CU��i�(i��S�F� �Q���{���i>�c?���N0�]�T*�R�`�=���ȋ�z����7�1�w�3w�����"K������(�f&y-���Lʠ����ՙ�q���߱����w�/k7%�h�W�m�9W@&,�r��&��E=�RD��D�&����YT���I.��[lG�����Z�U�����E5���� ��[X$IfA��v<,N��HJ��Ս
�$�ر��X��s_�m6�V�H��m�TU.�gaz#`ay����x쒳����5��X���y�l�T��
J���~?%�G�M��آ?3�9�<�{�v�0��$Ja1$�@If��
_�ʷ���"qoHw�К����q����p�;DK75��i��-��v�#ˇ��q�#�R�j<��o���3���g�A����O�٨��2�[��v��F�S��3LbF�76�J�蔩j���޸|��^�^��t�����,-���;�@�A6tй+��V���-fZ��~����m^~�Q(��r�@L����0�9%��(D
��Td��H�I�i�E�c��BX�6��HI�
q��!�.a��:V �)�;�jqh��I��u��Z D*`���g��`D8�
�t�ADk�A6���!�J�$�d�0�Dԛu>�����
��.�V�?��cfv�����?� �����a��{��onl�$)����I��I���4I�8w�<�����-j*b{{����`y�"���^����,_��,4#�o?�x�0?�'	��ʍ�u:�rM���Rv�.`�~2J��#0J�g;I���LɠW&�z�Vnj��5�N�j�J�kM��P2+%Q���	`PA@�VC)}[����:��zڽm��x�n�lYM6�Ҿu����r��56G#bQ��<��,�M�5�z}�!V���T��q�����~�1�����^�p���R7aw&,�ەZ�>��F��,��Y�`5aʒ]�si��.E*�9Qp���#8�w%���S��
���mu����I[����aH�բRo0�X�I=�%7Ґ)�V���ѓ���Zƣ!a����
���$Il��t�]�FC�7ۘ���a�>y�(�'��ԞfTC
� �żT+�d�&#*X�FaZ2!w�,�"�?��3�普W\��P4jut��d��q7���hp��*����|��/2=�"�D~i*��
يGӔ����)
�h����<��|��g�ـ��y���q��ilb`PJn�Z��hP�Dlnn�h4Ih����$I�nm�����
f�����
�(d����C,.,�:c�i��.@�\)�����*'�5R2[������R��ѨW�{]�	�� �G���r5r����u�w�������BI��|�+w�@h�Μ,8s�(� t��&�XK5]6��p�EkC��d�A@UH��L;^V=E��Q�x'T�*�ш4�ܸy��T�H���y��U^z�e���w077��a4�F#HRb�_�̿��OC��ҩ��.,��5K�5��M�!�M�LӚ�f0��is��*��:M��%Ӛ�{
Ǵ{=���~��GOPB^�z�[k7Y_�E�ۧ�lF5�>����򑇎��#P�\^�I8*�&E�en�+���n睋^����[cD	�n��T‰9&����!�2��L]�����w*��F�H)2���;�3��T*��ȥfYF��di�NGĝ���ff�zT�5��a4�:�#ҠFmf���waҔN��8IJ�t]�&�t�X�Ś*(ҡ��z[H�2���T��{'/\YQ��6':q��[��R�>��+ٹ{ʋ�-��]�#/)'�1~�.�nV�B�B	R!�a4�j�q�L��ꈟ����-�mI�f���D����Xk�$F��e`x��.���j���@��2�%�X'����-V7׉{nm�1�\WFh����l�r殇8r�4"P�,�禃!�f���菇��1��jTAU*�����˰�x�m��n�IC�o�
ƻ���X���=���˟����'�}��r���j��M�Ś,DS{�IS���,��6��pq�C5�E�17�W�]Z�6���ٚ�҅+T�
Z���1]���{��K�35=�]�N1�c*ơ����I�f�͵�HN���N����{���+�7i�j4*u�����f�}$�F�Yp������B�,O�����+/�D8��=�?2�ʹ+R�M	*����;�"`�$���K �8qENqW�;8[����h�K}4�i:�M�z�g)LZy�GӢH�m!Ֆ4���U�W��VY���L������P����K�ܻ�����7�n���z!�'�dii�d4"���Vaus���
�dȍ�u�u~�`��%���HӔ��%�ORFi��t�N��N�|p~/�dH�ߧQ�;$O�Vk��={�F�~�"��}���;��=u/N��\���(����G���6�=�NiK;���SzL�) �%��'Og:#MSt��f��LNȢ�$a��@J�0 ���VjN�3��!� ��
�T*��S�Ď:lR�ܷ2S�"t2&��X+��M��4�f�V���2H�l�������F�z��ƙüo�H�tg�FdɸGm�I�>�8�(q��V��TX�ރ����[�"�$�H�h��C2�s�`�'s;�RnQ�-�?;*P�  �Y��1�j���
:�o����ڴ0[�.iS�f� 
I�įG�PR��P�6���c�'������7hHX�^�r�Qj�6k�}�2`�3N?���^^�p��G�3�l��A���=�E6�ֹ�i��� 
G���:~����U��C�4�3?�6�M�8l��>t'��I��2�gg���ί��o�̋���U~�_������u[�RiT�v{�O���Cq��9�][��ݧX�{��}�i�Q“�=���<Q��1��n�׮0[����='�f}s�v�ˡ���R�5������ ���\�v�GN����Gx��̷fh��Ԥ���C��)�l���M{k�㇎U"�4����D'̇���:����+���c���UBRϜ��$ړ:���M(F8�m�$5��N��i%�x��0==Ũ?b0�E�+d�%
���oo��=s�%HL��@�(CEJ�F�8�@*�"�Es���A�!D���eq�EX��M抧�ٹ#q�1�c,����W^�څK\�|���G��X��x����$�χke�2U�EU�4����+n	i-I��d)J
l�с$��hL����4c�R����֫/1&h����u.����x�GO,rxy��F�`Х�{�M���u;���}l�*(��+�N�(w�o�68���E|�ֆ,�|��e�#)k�B
d�����?ݰ�$�pRQ�D1�J����ZÃ2�3r�8�u�Q�.V!�I�`�Z�e)"��4#�2ff[L�-2L���IL�a'�P3�"����2��v�T
)|6��f$ɀ��=h�ev�'�fg��{	U�)<(1�+�˃��~(�����U,�K#�r�Y6g"�T3	�+v\�`V
�d�0�0�;Đ�#����m��Bz�.s�3�lo��o>ͻ��F�{�0�h����)>�
wM�A�Z�Z�յ��t��J%}L��	{ggI�4�q���<A%����=���@*�;�,�o��"%I�I��*q�y��'9x�0�[[T�S�x��#�:���?�z�O5A��8�}��ш��y^_Y�/������2�Г<��9ξz�
ή�����ط���n���5�ʟ�O�x�:�|�%~���W�ോ��:�C�01�N�M���1� N��FTc�2���j�YF�i���s��5d�2�l���q��E:���<���2�nq��	��LϸCNg)"�b��!sSS$qL��@)EM	�!��e�F]Rm�WjL5���B�Ё�v�>�0�(�|�5�7!�ÉT���}T+U*�*�v9�g	�qL�!�c�?�������2?�
��%�W��uj�q�XA�Q-¤	��
���>�۱��,e�jUA�fT���|���ظ��l���ΰq�Lg���,���ȅY�э����Q���T�RZ��!���J2a�ߎTh��
E&4k��76�
G4!o;s�K5=���V�[�mz��Ϙ)�I�[N�,�B�#ei��Nb�����Tkl���,sI�ƍ���G@A�P�
1(�@9�tN[��4�rH�0����P4Ӆ����d:���i��:c4֒��2��C댹���jSIٖi��M��K�`W|1��D.JMӀ���aM�8�S	͙Y�ԣR��#�iG�T)6W�r̛;�S�K)�6�P�=Y��|�AXd�dI�ޓ0�P��UoN!d2p��Ȕ �b
�W���6ƶ��v�ø�%���1UmYܻ��B�;mBY!��Hm6��n�}�j��j�
x��n]��&	�*i�p`z��ڸ�R�JM��a���._���}ˤ����U*�Rk4Pa���ڤV���{fzn�s++����:I��:��}O,������(*��X�FEaH��_���p����O�_~�����/9�����K_{���Ӭ�۬m����?��+���s�o��'��˯�����y�{?ġ��S���*�xfU��,�杰F:�0>��S1C���b��e��,K{���ʷ����^~�A����	��3,�f�ⷾ�\m��'����fny���79�U>u���}\\��T�Ȭa��ZZb�&T0A@E�}��L���l��DwJwk��$�R�VS	C�����O	i��ٱp7Hc C�%a�Y��u������:K���?�.�\�>��P�T��
	s�-2c�|���ed)�a���6�<�ā��t�1�tD��d�A��j@!��^��Q�.�=���x�Ƿ�q�NX`�@�O2˭�L2el�786#x��=�+R66�t�cV4@$y��,R��E
�oB~pi��$K�:%K3���]c=*^F�@)��d��BH'�UJ�%�S^I����+��%��dY������h
k�&+h���=KS'�q�g�B����qLsf�=��`L9�M�A5)��Nâ�C�bB�e�m�W2��tԦ�lQ�M3J�"��g
�J/�XP�2Tv�:�o��oet����c��D�
i��˴D�At.-:(���_*��0�X�zG�����B�ʬ%�O��-gi6���K<�����w���%,�7��}d�r�}�,u�Cc\4�`4B�}��.rr�5���i�Q��]�O����o�pl�q�2\]�L�&�S���v�
FHVW���}�1�|���U��s�5~꣏s���ڢR	�*�k��˙�)�[�\Zf��ᵗ�r|� ��g��MD���t0��e�=w�Օ[�s�.{�6k��_�
LP�O����M�=~�JP�=�`����8!�U���z��oE�s>�^��;R��8i�r�oml������j�)��:23<p�n�C{{�ӧNq�����|�����=K{houPBp��U�����>�z���k���ϫ�.�g��=���B)��(�h��F;�}�D�+�(]�� $:I��f�Z'ţ�KR�<�Jk7�
TH�8v��@Q*���y��%�Z3�[��Xq�N#-U!�
��g �/~�<v�$�a0���jB"e��#-�aB�����K�V��=�6*�҄Xgn���Oo�(��D0k����8�r�d|�V$%�[�Ӂ��X��5{�!wj����,Չ�Cnnl3�*?,rS^�m�bD��Q���1�w�:3d�?�FR:�.���	�Hɉp&��ˍ�mTМ�sE�|�E�a���ݦ�|%q�GئV�"�t�����F�������u9CM�%)�N��_�R�Mس�(���4��G�����(2>�@MR:=�%���]`CG+��
d	Y6bffFF$&)Y�U�krY��D��;0�)
ޚR^�N����.u�J
�4Axq��‘��&
C?��i�Ĕh4F(0�%�,&�DG�ſ�m�l	�p�i�pk}+��lnw9�"�F�3w߃
�4��Q�P™ʌ$3�*�
��d�4s�������gF�$=�T�Bs`n�k׺|��E�%C�v�2O>r�/|�Y��o~���s�-�J��k���޻LC� �u�:w��e�1�8�'>p��{kD�& ��5�{�5BI�o�z��++�x��y��da��s�w;�A�����K4c�_��?��Ư�˿�e�x�)N��PU�BI<;h�ȔTX!���-�F+
��Qe��{��%1�,�<���2�+aH�(2�+A�K��b�	����l(�v�Õ[7H�c��eϾE�<�
6W���O1ݘ��5^x�U�<�Q9Ni�k�ٳ@g4pio�Ҝn155E%�����u	�T M��QRc�k,C��F�+�J��$�%�$-���C8�uSт�F���6�7n�gn�ڴ��4��DJ!� �N��_�"JI���&�3�Y�n�[�r�$h��i����꫌��?s�(c� M5I��E�n<e63���G�Ǜ��}k�q�:%a-��0LS�C>4ϙ�S�у��n�8KPFB�w��)1��E����ZL��%	��H�Fk�rW�
^��@	�@�݃(�|h�{J�ɒyX��v2p�l�/b�d�H����~,德&Mc�N��y)Fi��ʡ�D�hZk��m���6�'P�~�&�%�S7��Tju�C������pwLv��%�F.�5z�1���e�y.J�D��g��X/ܱ����E���7"y\���{|�'l8��.@'_��a��$��*բ�R*��t��A�b/������t3=����dKY��`����ܸ���c�p��]|��\�r�w��(�Ve�Ď���T��<H
Ƈ�ƍ��E�	��*�CB��iL��rumM�d<p�A�9�"�W��?�W�R�O�oq/�����U8����x��yd
.ݸN�2������#3��R�70Z��%���V����Yf�g��c^}�"���µ�.O�w7��5�ڷ���%�����7�����C�z?��l�;�YJhC���)]��Ap���h��ά���U���.j�'��<	,"+I��Lc�d�R�k�����#o{�#������:ձf��!6VW9~�0�v��=��p�U�[|�����uy��G��א�`�>�ФF16Ix����Z��h�1�V���3SMG��J
2�=
;�/g��(i߽d��50�2�^ѧjJ
��Y�3�:+	E�h^8�2���?�>�aB����T�ր+��n�"޻��^euc�h��M2��1F��1�J�ۙ��K�>Y�w�>��+��['8�&�HI2�$K82_���Y�9�`�Q������&{k�S�|o~��9zDk�4C��g�Y~W�:Y�e�ng!��EI�
T�
�D�~D�:�T�ṇ�k���:��R�(��$�f)d)I<vN�]>k,V�{����`�3�J2P�8Eg�˄��@m-��ŽK�-.���ᕇ.�i#9_�x��!d@�-ON�͎�7Qv4�@�4��H1N��࿅1_��]��?�0��#3�\@��-��L����q�*~y�*���1�����瘝�X5�h�6s.{���t����[�LӒV�̸x��`��+�Y��ei���]F�.��SX�rH�H���Ug�q�yS�)v��fƵ��0@��~�K���ZZ5�����w�"31/?�<qX�y�����D��|�{/�6�#+�J�4~�m��?�S��q���kY>D�0ݪ1?3K��Ԛ5��>JH�qB{m���?�o}�+�{�����:����0[��'�F{�g��5��w�?��=K|�
�S�|�#%K5�+�M\�ɴ��(�4��<�/
�=�t��(���#JX*�����d��a��;L�,�R"��*����ƃs��{��/}���?��?� ��q��<���{'ﺛs׮pk�&�Z�+�W8�����ٻc3n��r����[M0��A�����M�8&Ic�j�V�I�Vezj���))�XA
����������кP*Sz���R
R?>����x�p�8��P�;]��>�V�+7����3U�3�	�b�t�=ƣ1�V��L;���n��N���*�Ƥ�Y���5�IJ�9pz�-b���T������]���7bq��:�0���*���̾)ZU��
i��KQ̿�!袈��L;�i�6�:-�:%�cJ)��
T�ۢ}�S'u#+���J��U)�HC��滉|��/���]� �"j�h�6��FY7>�A介|��k��1cuq��w�:*,h?��+�w�Ga����j���k�g�kw�ss��7R���eIvk1�'�.�M���`Sff��pl�|�[0�n7$vfK��]>�O��[��I2��<.'���tM�M��B"|W�d›&}!r%��^��/��vjhY
���F`�%����Z'�YZ:�6���O�娌�N�!nK?0.��<�R�}�@�jC�
!��NIc�ɥ9�zh�c�����=Ku��˟��t778�g�K�?�����N�����p��'�m4x��Ԕ�O<Hua�Kׯ��\`}}��-���fkc���p���M22���}�����|��ϳ�^��'N�7�������g�{�W_��S�x?�q��K�G}R�V��>+E�j�X@x���B�Fe"ώ���sR@$a I�D��ͭ
�J�Lc��n� P� ��uV$�F��n�o��{�x��i��\߼ť�l޸�TX����k/��ٳ����i�j�5[�(�ū8:5Ϟ�Yz�"t�m��L�$f'TTH5��z��JH��N%���)���%ⴿ�Y'��"R��W!]뭍�|u#��@�J���^�򵫼��OЬ�1:c�%T�E���I�%ԖZ�����+UV�v�M��[ST�*i���4�U~�#C/���퉉��3�y�=�b�S$�HK�6 ��c��4�5��!�q\��N�#&p�������5޵]<_%VF�&]���0T�(e����3qѰ��<Q�����?+���L�L ��4�Жy'P,���W��C����8�	3D����9k�R!�TK%�Ŵ�͚aw�D�=a�r�
j,V����s�Fc�ԝ�A�L���v���	Ea�Mg����.�d<���YX:P��G�x�Ңݖ�"���"�ա�Cs߻����wğ�/�z;Ѷ��Ժ��CMhcf�@)� DA�32�ZI�BLd��N3lf�� � �rU��%��m{�"l�<���;��tDj`uu���
��u"n�Zev��;��"���_�O�
a�O��q��}����+sSS��?�1��8.+��k�x��^�3��#" K�zc����0��������#{8{�:������?�N~��X��ʏ������}�#��d&��"q<�^�-���AX�:�8u&�J�qU����B��Ow �(�?�����W�XC���sO��+�y�۞`fn��r�»������_�f�?�1~1Y�G�AV���_�,כ|�=��h�k<|��z����n
����O�dڙ���n�R+Ȭ�"$2��-�N1ҩǔ��H$:%.�B�9�"�Jzc����=6�a�o��S���-O:�S(%U-h�
�*5g3#,�PY T!�0I���͕ݜ?p��$�ެa�$K-�����?�!���{��C��E��r¹�|�
C:��ݺ�]gqL�R;��M�2�N���FL��~��������Ql�p��U%�B�m��iTkԂȣ�!
(K�fH�դ�+#��X��+}�ݜ8<�0�
��������Y�TYZf��^���`��EF<��DA@���x����p�
?��~��_z�V��T���Sw1?7�G�z�=��n��◾EX��ԩ�\����/~����/<��iN��������Y�i��[۳��i(�3�LX�Jz�5X<~ޫ1�R���	 ����
͇PN����)����J���2מ�����y�H�Fi�4N<��FTc8����O8���?�G�4��K���K�S�'H��|�5^y�e>���ܳ_gij��N�K��a���1�RTÐ�j݉*pf-�
*�DR�g�%���
���n^�Yh�[�4%&rOc�3�����sی��\7"��X��$�� H�fܑ����� 2�{R�>O���&al1��:�V���� €�Z�Zf�U~��>H5
�w�}�׿�_�Z����.䛺�w�/PAD����
��׹�ߤ��w,6V���iw�m?`��?���۲�}�n�`�)�I�n�S*�*�pcc
�Gv��N�)$��N�+��o��ފ�#�3�������_H��Y�������#�JD���bXYYcyy/�^��#9s���/����~���Ҝ���O>�C��<p��9I��d0���Z���6�a+&ms��U����;s��ь�Stt����y���q.ݸIf4�z<b�@�')��e�D*��s4[9i'1in�a-Zz׫�DJ!0�r�P��?���]_�G>����'�2�锩�&B[*AH�e��~�k/>�{��>�3��K�؇�=���:�W~���o���� �^���t76��j277G��Z
e��d�Bf��ME��%H��v:#3�HHB&#��`'�y2gvB��ץ؀q���Um8�p������RB�=!�27�U�@��O{j�+�h�����E��2�KJ���x�P��(j����cԾW@���Y)���ܼ�����~���!�;�O��nK+�J+��Y2�vŻUC���	Kj�ǻ��N��/�w7ƒ
����ဇ�?�V<t�l�������F��v���u��\�����h�C�U^x�%$!�����4��L�#Z<t�?�����i��Ze�Y�^��T�f�Kf,�T����_�_}�O~�}����}�����_����c����s����#�)�ڇ4��D�J�f�>+�3���%�o�^��7�I�A;��JB)0�I�H[ŧ?���\<ϻ����w?��H�T�X,�ݺ��o�L:�y��G��N�����+���s*d�9ûz�j��k�/Y�Lk
�a�^/�ƫ���w��V�gjƍ��`��ָ�g<2T�"��!�����ԃ�2�4M�"���L��@��[`-�I�<w�[cPV�-]*%�{M�RC�K˕�"\gd�1SI�FzHh`�"]��XCw�g��_�3�Z	�w�}������wQ@,��ɖ/ Zg�;�7�
�S�������r�����m-��n)�$K=-��|ʜ�**���+1L���4�Z�N�
�*�̸Sr�ĴT�{�9��)�ZH�R�DA�Lj�

h��\�r���iҰ��~���u�_}�
ή�p��.��hs�->���L�5�_�ek��p�##b-�U+�������r��?�p��>���S��_��y�x�G����U.]�ʾG8��0���Iꍆ�H#	,k��dN��<
N�#��֬�D�p��Q��tHb��ثy�]	9�r����`����9q��+V#��xHj2�,��h2
�W*t;]��\��F�M�%,�Y�7~���Gi֦����A��=���Кj:�g0�H� �jU��N����-�#�Ή�! A�5F�E��܇&�X%$���	�pƵL��B��=nDe���b����i썅L*V���e���>L��R�F�=/I�
��	s3u���!j�+ ��������w( �"ު)��Ҥdww�g���_jT+�'#�q�	$�f�P(��'�W=@�H�7S��_tNz��t�Ԫ��!��R���O���}s��	ƺ�[7A��+u�x�,W�\�ǟ�ӟ�
�.\�?������4���f|�g���5��8������l�FL�������O5Xڿ�_������ໟ`u20��7�^9Ϸξ��W���}��C->���*{8��0ۃ._�˴*
z�!T�i��Y�:	���T�s�kH��e%F狐�X8��e��8�Y�
#~���s_�~��?����q#�;P��:�;��]N��8MQ��f�����ǵ+W���Z3-�;�$�=�innm�4�@�9Mnj�1+�79z� �SS�se�d����a�+\�����`���4���,����&�ɕ���v?��DR!��7�ɝfk�ٜ�gX���B`�C�Or�%�6%��d.��@b-�qX���M3ai���ˇ���� %4g���������R@:��;"iś.ο��Q �X@&]����u�~�/��	[�t@��IEs�E��p�;�6�9)�JR�%����	?#s#A(�8)��tc��'>����B@��d�U�Z�A�j66���X%P��JͲ�8G2쳸���T�+���/��}�.j�X��{���5οv���E*S5z�>��:���Y�\[�o��z#����)�nt8��c�s�Pgԕ��	lPa�9ŭA�W_灣'����xc���ւ�$�I��zT)f�up)����ܭ�}G��F"dl2��6��ɈT�o��6����Q��k�*�4���8���i*2��M'>p�A:f}c�(t���� "�c�,Ɔ�m�8=�ʭu�X�Ļ}�h��b
aqsc���=��?�Iu�x��D![�m$�g	˳��L��g��h0"Q�2yD�Af������q�^ެ�R���;��r�3a,�4#��:{5��4q�`��P���b�NQ8*�Aq������F)��:���Qj����X@��E�E�P>�]�d�/��R.@���C�V;� �����#���u�d�%��z&s��9�K�
<��͉��1^o%��#T�\F��\����?�o�E��{#�����4M0�C�ȩ��-N33U����@Y��������?��>t��~�͕�<��lzl�5����'��:u�k[�#��Mspi��`���
��܋<��:��~����t�,�\�F���X9��0��(Mkz�a�.���z�A�«�/w<�\�9'��2K�F�������a���B�OȬ%L�����ZI�Z#�ra�%��6���!9��L���V���/�&a2==ϣ�?���Ch,��ʕ���ڋ�����Qֶ7i�;,�-6�T=�#���3�8�jM4�`�$���l6�G�q�1.Hhfv�8Մ�8�h6;����ta-7�7ֲ�g�ΠOw8���QHF�a,���D<'R�ٔ��Ըd�\e%���T�R�{��4%
�QDf5����֐a�c��������+ ����l���k���,#N�����X�[(�:+�BJ�&5�U������$iq�3��h������J:�?�_��d&0�sBK�go��n�%��l?�>�I{TG�č��DV��X�F��?�n��U�#M�Y���.(5aH�"�evvx��/���y�}gX�nq���/\��.�X]����g_��{��=əG8~h/���ĩ�9]��VQ�p��u*(>���y��!����h�`��C�3O:���h�TG��(ų��D�i�>&���B���j�{ =�Aȼ�S�HVZ.+���
Ue�Ƹ�ʭ��_d��$3�C��^'�=�9�xL���JIVy��opk�2�e����	p�f�8�8��L���� ��i�X޷�l� �=�:���7TD'щ{��J��K�t�}�8.�I�0¤.�+�ܧ���&`41����!�R�1�4s(�$f��R9�TU�i1�Vk�c���Zg�V��D[K�\T�l����ш�j�@�1�(r�>�
�f�l����t�TH=���=z�V�����ܺu��W���c����\׮]�g��~臊��k_��v��~�����7���w�����!
H{k��B���	�1���x�cmm��V�`h(��LFXVg�s�5�T�n�G�RaǬ��a�e���Ԛ3�{mn�\gqq��`H�Lz�M�~�}�F���O�#��c�u�BKX�= O��ϐ�Ώh��TE@M*�����f��[zσTN�+�e�fD�?��q�j��$�n	�gq�f�^,s�$�V�������<v������!�[[�<z�,1��x��A���� �x��g��Ze�Vcek���y��'��n�j�Fsj���6���uk�H�3Kod9�o�g^z�O�����GM�0J4�j�z%$цo�{�K�_�C���C�����AE
*a��f %��=��_� �$��-�*/О�<V�l{w(~��&(���0����VR�ո~�*[[[�<}
VPְ�����k�w������6�����n��^}���:��}h�]�,�`e��UAU���o|��R|��'��֠��b�jL9S�RdZ{y��(1`�%M2z�1I��8�d�5Co�s��Q�P�˹ךLy���T\Z?:�~31Zc��e�1�7V8�r��Z��sT�b���H�h4 T�JX�U��	�3u~��������0?��?�;�N>��O��O��~>���r���:���
�}�{�x�"/��2'N��ʕ+���ognn���_|��|�#|�K_������K_��<��шJ�B��Gk�s�=w��x饗���/s��q~�g~�O}�S�ȏ���}^{�5~��~�O}�S|�� �">���r��)�;���&_���x��'��i�de�����7֌̈�*+��j�J��AD@Ql�iƑ�n��n�z�VG�Emۭ{NkOw�8�� �P��TA-�geV����Ǎ�Ώ/�(@��x8=�s�N�̪�Q������Î;سgO?�4������#�����s�E��x����T*��زeǎcff�u�����/��@€��A��t�$��2�&�x����w_����,�Ͻ&yu�� ��pۭ�p�嗳b� �o�A�k������r��ٱ�z���ţ�ҙ��g��+WQ��Hg��t�
LNM��©Wh4�KA�$ο��HQ�a�9���,i"�����V�PX��ʳ5i�[HkI�E��5�DD�\w�
�{�4�.��v��i��*A�$
�"#jN?R�
�Z����81;N[:��G�����¦�n�?ʭ��f`&�l=}-o9c-��W ������s;^�������Oc	����,Ӡ�0K�Qgǁ1:ۖ#��
A�Q��`׮I�g��‹�5��J��C�:2�k�ZM��Y�*����iɶ�(�=I��ZPAU�p=��:�x���6,PU��� �W!RB|�E�t2v��_�5'v<�Y�z��k��`�Q��K���I��N������H�R'�j��C��X�8-�J̲y��!
aM{7k�Vb�b��D�L{�x�Z�!eZ���w}�P����'����F�A�^ץ������R5���i�6%���p�8��e����ф*�sD�mZ@��t�^(��A�ȹ���ԩԪ����H%D�`��0�z�F���d��l���������@���q�w�ַ��/}�K��fY�v-��w��[ؾ};O=�7�|3�B��ǏS*�H$tww��'�x��{�255���tvv��}��}�c��h�v�Zz�!,�b||�u�ٹs'��7Ð�+W���ώ;X�~=�i���@ww��>���|����'�v�i\w�u��y����s��x�	^x��~������}2`ڶ���i4��qL����{�a׮]�w�y<x�O~��]�zC�0X�O#�}���'R:t�w��\uջ���}��ZG����<�)Wm��1m�\r�R���?bjf���"]�����y�������u��k����j>t�M��Ӳ9qb�����5kVs�}���aI�}�'�1�N���������K���^��TGU�]/���I=^�DP�Cb�I�kbz�y�u�z����鄑D6�M� ��*��t	w�R�cG�2��'եq��eQ�)�ċ�������
���f|r�g�=��	�z���c��Qv�f�\������.L% ��ʶ��G�!~�I�!
�U���e�����w}�ޕ�\�k��8���]=�[��r���B'
|i ���4
�n��:��R����j��i:3�/;�T�x~��iO&1,7��S3AW	��"g4�P�L�80~���<��`?�+Π����kP,�4+��T*�2c,8Ub�E�6�S���h����-J)R8��2[���,3!@1��������T�Z�B6�&=�I��P,�h�dPmC�<��ɤR�i�����I6��H��k8�mG�4���m����r;���ɬ�Y�1<>F<gղ��,��Q(ߓ���i$M��/��
��Ri�T�u
�y*n��+����W?J*n�a�+���/�ˬ[����>�g�}�/~�<��y��r��7s��S�T��j��=����k������?�1?��Oy��G�,�O��|�[�bdd�3�<!Ǐghh�5k���|�M�6q�嗿�>���g�,�}�C\{�[���~���~��4�M�!���|�c㥗^��.��;��l�o}�#G��u�V�9"3sU宻��K_���ufff��?͓O>�֭[9t�?���(�����EQ����'>�?���Iy��"T  ����?Ȼ���m�=�^z��ɓ�u^@&\�����]���)���w������+W�_��G��\r�;�ͯ���!��o�k���k��4��
PRm9�{�����Q���T��p%�?�ˢ��_v���8�z=-
b�I�����:ޒ�(��D�/BD���C� d��2���-��֗�i���5X��'al�ME�tߥZ���&�XUWH&b�OL�W��<���,_��[>t-��ȍ�k
n��_0?����]����qT���	2�dkj.�q�@�2Г%�i��#̌M�78H�/Go.Ñ��l{�	���P�3�2=�|�m<��8�t�j�@{<A[����c Z|,E`��:�J���	��tg{X�b�a23=E��'�L�H���,���4T:�	��%�fgX�7��U�0@Aezr�B��k��P*.R+��v���­5�z����ҨS	\:�$J�,'��$0QieBB��̀G��zDEԢ���i��#�����vb���tB��
G�'�O��L&h������j��mspl��J�l������8�A�#��e�lx`�*��57�w9<u5���e�8A��rYl�����:�n��ř��14�@S(V+��pbjMh�v���i�)����q�
��\��x��;��<���?�9�^z)===���s�M7���d ����9���پ};�w<�_���ضm;w�d~~��{��u�V�n�ʓO>���W_}5۷o����lٲ���n6n��3�<�;v��}�s��y��w�����C>���(���utp�r�
7P�V�����p�{{ww����N.���榛n�.��[o�ĉl޼�J��u�]���9��ػw/l۶
�4�ԧ>��?�yr��6m⢋.¶ߘ��(�X��&}Ӑ5�֦=�����+��y�?��w\Fi��*�D2�,γP�bp�F���t[��Op�m������i2m�;��]���ϳ|y���_��]\t�\~ŕ���B:��O>z��?3:r��l�j�$�%���HMwgr�A�q�ժX��iQ����������5]��[��n(BNvo�jŌ� 
}
�*�l^�'n�����Dd��B'�_�H�-t����f� �Zo���a����k�e����%���b���s��oc�����8����8�lX���C���J�Ɂ��S�]���n��a�l=]����������+�Ϊ�(A@�$Siv��?~�}GFX7����n|�	B�
<��� �}/23~�Lw+�60Է���{�����3h��Ź�ڳ$����^,r�[Σ\o��v�9g]� _Z��{�u�[���!�#���a�ڲ�+�$6
�!�ISi4��1�
��ZE�:��HP�d7UL�хNґ- �#�j����mY4����=�Z�J!�e���(�NxrN�5�/�����G)��r投�Z��0�Ђt���)l� ���u]T��`��&����-�s�9��G32�E6��mҁ,��}�i2W*!��e�,f���R�02LG_�~�d<��
 �j���a4McÆ
�޽��O?�0(����Q��ٳg[�l9I��}9�y�m��~��f����q���q���˲e��f����Q,ٸq�|�U�u����LMM�y�fv���Yg�ur�B��s�z�XL���r���	N;�4��,�������/��ׇi��!4TǑM$�F�ݻw�u�V\��ĉ$	:;;[N�7h�0��h��jy�D���ɣ��G�[�9�^;`TM�\\d�0����[m�����nP.��T��8>��+�^���e�;L2���EAז~R{���~ƙg��굧�8?��AI������鎶e�,�rH�֮@U�^CvIY��eP^�nj"��=�A�!T�����ڍ|"U��X�ϯ���W���B�u�.k'��ʖ�%C���� �V�蚎m��k5��j���<goوK�o�?~�Qn��
�&fK%��ß�į�s��6���dg��#�L�9�����c�����g�>˹�7�_��Ճ���yy�a���_N�e�ў ��Nݕ��"��������f�	�u�t\�c:�t2Ē1^>v��#�Y�r-�W���ٷ�E^�$�!g�s	�D'�)F���6����ܨ��:1�I�����Ҭ3��@�R�
�lX��Џ����G�{�����Ϋ�^N�Xd���|z29<����DBvֵ,d^1Q��Yw�T��D�t�b��>�f`k&ӥEj�C:��j����5AS�Z��nP\f�E�P#���,�HPo�7���Dif���~y�=C�q֙��h�`�0��8�]�]�G��`�R¶,2�jO�+
1Ö�@�D�O�s�5]Qp[��r�F���|~��Z�-k70��aj.��>���I���<x�իW�io�~�d~Vc���,	���;r=^�Ņ�W��]X�D��2E!�x�i��[7��{>N�I,�^�c��4;z�+kp��v!��9��+�D�Z�������=��_�
�\E��"�B��
����=���"�FW�(/$	��C
#�hi�*n@����[/����r�q�W��a�^�Ō�%�	\�(�0m;fq����3��u�v�##x�*�V�²-��j'�:�\u��(�ʑG9~b��e]t�,CWt&�'ɶe���ebr��S�i�dsYT��T�
��x:u?��"��������"�PD�4Z�g�rb��f���I��e|��j0�l�HQ�4jL���<�����J����.'aq"�ep����i�3�t%�X�j-�XSS�ΌcY��B5M��"�H��[l?����W_t��lZ{:�Ӕ�EvVE�$gp"�u
3T��u�!Cb�E����4<�qi4��;�t���Qj4Ii�� ͦ�jE�ܨ�pj85��d�X[��n����!�f
�0�6��
=YӢ�HM���8u�b)a���Tb�I�Z�!דJ]�2PU�b�F�4���iTk,��%����T5r��a0�XB7��F�6�\�޼~/$��Cn�E�z�[�M�\,�,�����Z��)��ߢ@>��ztɒ�*h����8�빢��ӻ���O=ϾC3��R(*��)��O���p<ǩ�I��P	|MQ�T�Xl�хF2�)+��E>r�i��Mog�XoM��;Hm��ʖM���F-�q�LNLb����"B���2������+x����(Aš���TgM�H�LJ��h�_��45�ᅭUkV�n�J�ML��靬XN�!&g�۵��/���`?�>��U��X�v-<��������?8���`'bT+Ri�|��}3�>4�����&��gslXy:�a�v�R��#��R*�|�*j�E�
�E!�-��og�g5�S%ݞ��5�"�G~�Sj����kyˆ�T�U�#��4���|?h���.�&F�җ�jÓ��W�-^�)-Ζ"�4-�p=_#�(���"F�Y���P_?�yO�ѝL��Յ�Gx��X����qz3.�glz����j����מ#�H�0�݇j۔�q+���LOM�9��6ɼ
B
�2G����v�v�:Bϓ2$S#��u��d��h�
t��q<E��T�
��
�f�*����t�K%���F�
<��,��Z���r�(�T��� sS���2D�.��8i ���/��ZE��Ԓ��sES#���D�η�}�Ǟ:���c2u�7�O���{ԚuLU'n�Q4�Z�Q��H�bh�&�v��X�5Jh|�O� ��A��8��-�bM���j�ԧ���:�R��c�t�bl:k3MZf���Zu�$	L�"}��T�e!�T;�a��5�~�J�E��/��`}�r>��3�f�J�������6�}�et��x~�K��B��g��ګ� ���K~z��k��ޑ!�=���e��NMs߯�ctҥj<�w/m�kW�KT|�Љ:�T��R�=۷!���:��j�
���hQk����;��������e�}�����j���n��XKP�F�x"��(x����Q�d~�A���牢(-[>���<b���Z��S�͌s`l���Ih8���<��dl.Ͼ�fF��-�V�lk�P+399�?qj%��<T�z���\L�Ye�T�ـ�2V*7mz:r4�5\���]^�mzt��*=�t,F:��;�^�de]�cI�N���Y�Paew?V�ft�cc*���$�)l� Ptz;���9���{
 y��?iJ$
e�A��m��9��4�7x����'U˿��.^6�"
��Yh�R���( -B���$����?�هA&��}�HF�R��h6����j,T��GG�C:�#���}���]ȅ�gr��a�rB�����j8��a�
�y��![�u����7�<��|�������Bh�y
�4�sp�&a wזma����nK�����#>�C�=ř��'n�����r��G�>@N\q�ۙn�T*U�;�L�.g��=;x�lg���,�d
Ek)O��uH�c,_�G�ؾ��9<��F����T��V1�Tqju����J�W���Iz2��Q
WR�U�B�T����
��~�u}b�͉�9���'�a��qâ湄�����"�0��ٲ��>���4������k.�M8:��^�PD��j�Z��S�I�du� �vʞC�V��88�O�J����4�r��_��=�l
�]���^
�2��d�kW���#tgs�
�qV
�d�:���	=9՞�lR1���Y(�e�E���k,T��.P��M�k��X�)VJ(�	�r�s6m��f,��z����7����Ioп@��$���2��@�+:�W��5q�<�8%���*[4��$^|��E�(i�Bb�FL�W����rx��������X1?-�^h_��/ ��u1S�'�٤�	�H03��{6��\I)�p
Mo	��0_!"ܦ+���J���-9\�!�H����8
GR`u�%l��N����@`Z�"=�Z]v(k�
���`͊0����B��2/����\���,�T�{���&�*������b	6l�@�^��\���
E��ȶLv�:��	��zM���ǟ��y&�SS�a�d��6M�H�0m��z�J���8�f��r�l:�n�������tE�R�BJ5)ת��غ�j����H�<"�e3���h��B`h��d:��$����|��i˽H�E��2M���{p?�n<�e]=���HZ(� B�MBߧ�p�m��e�1[��/�Н�O'�;
,�c	�j���]��ű�	�0�/׍aZ,�jؚF�mS,�I'�`��F8a@��$��,
�g��"�dzzH�l�(� ��П�!�S�q\���EOM�ukx�+��@޼~?da�0�_�\E��w>�Z��%�z+�6�<�sS��D���¶^��}%�x-�]��Q5/T���Ğ��UEM{�+?���
�&�J�=���~���|��l�.��k�(d�J^��c�t��L�)��$�񂐉��]�˧��rr�����J(�XB���E�Z���*��,Z�lQR��!;f#g%L�DX mw�"3I���C��X"F�Z�k��l�68:|���)r�n�u���hMЬ5h:M9�EX����8N�e�{EW�ض�����駸�K��'ocdl�w�uu������.�O����PUp�5T��
�f��b�'f'�H�љj�!D�N��	���m�,,����2ȗ���Gw�UQ�	P�P�U��W �rn
U�p�%�m�r�P��|�(�Ru��O��@\5H�S�~D�
&�xu�P@_w1ͤب2���`&�n�T
l�@�%Wn�>���yn�bj*�*A��X�r��`�D-nH@�.�;�$Z'�QQ����ɗ��}3�;B��*zz��	��f}���e�b28��,ϥ��WoC�y� ��*`a-I��i�k��dǖNi1��$C�6���;�Wg!�ZU�z�xu�CD�&�E@T{�:��A�c�$�7��-Cp���g��U�R�I�51�%ǥͲ0-7K��r�����|��?Ī�C��܋����x�K�ˢ��󊖵p�.����'�V�TT�'N9�-�_+�Se Z��Q�~�uXO�n�>��GH��X�Uը�M��y&����t
,ǎLj�۶pM�@n��7��8`db���ay�d��\'ɶ\���T�!O�4�7�{��������i�u�C�`]w?M�ÏB�֜L�
��055�B�D<�Ʋl'I;F3�T�(�@4E�˝���҆��T���P%�*�d:�
/p]ŏP-S�Z��(��6�Q0-%C�0L�Cc�9�����A&'�NӌB?@!��H'��� �=B�`��ӢH��Bk�'@P�j��I����
U6`�A��x��mY�	�e�T[�I�Q�9|����7׃�딪e��L�2���G3u"_%�����|��7ț��#�fe��Z�N�Q��i�ѫK�'����IV�;� ^S_z(�������ru
[�P;�`!��|fDJ��^)l+�*��� ���LMϲXs��W�u,��x��T��B�r�!Tt*M�0�r��~>r��חa��#x��N[�r9H�k�)�)�����c)B���n����թW��#1�"$�� BD*�.?����8��1>Q�=.x�u�����ì^��uk�`&~r|d�x<F��G�[C7BH2��t�4���.�'�;>Nwo�dQ?f��]�헿b�˳$�`h�"ie�[\�0������q���MD�(�""��8�0Þ�c�m�XO_o��F*�/[\�H:4M��X��C)`*4�)�7jD~�M�r���s����gYW7n�x�^2[^$�id�m�������h	AO"�.t꾏ztX1��?N��`���aPw��7MMӤ��M(�a���#@,aәH�2�ٟ�
��'pC��&^БH�A�($��@�qFL�/�$���	��):�$���:�d���
$�7��޼������I���E��f��<�"�ī:p�2���*��߇\D����҃��ڼ8�\�jB����A��WM۫pi҅IEND�B`�themes/radix/v1.0.0/style.min.css000064400000025772151213255560012440 0ustar00.ms-theme-radix{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-theme-radix.ms-loaded{opacity:1}.metaslider.ms-theme-radix *,.metaslider.ms-theme-radix *::before,.metaslider.ms-theme-radix *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-radix .flexslider{margin-bottom:0}.metaslider.ms-theme-radix .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-radix ul.rslides_tabs,.metaslider.ms-theme-radix div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:1.2;margin:0;padding:0 !important;position:absolute;right:25px;top:25px;-webkit-transition:top .2s;transition:top .2s;width:auto;z-index:8}.metaslider.ms-theme-radix .coin-slider .cs-buttons{background:transparent;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;right:30px;top:10px;-webkit-transition:top .2s;transition:top .2s;width:auto;z-index:8}.metaslider.ms-theme-radix .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-radix ul.rslides_tabs li a,.metaslider.ms-theme-radix div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-radix .coin-slider .cs-buttons a{background:transparent;border:0;border-radius:0;-webkit-box-shadow:none !important;box-shadow:none !important;color:#fff;cursor:pointer;display:inline-block;font-size:60px;height:auto;line-height:.7;margin:0 2px 0 2px;padding:2px 3px 5px 3px;text-decoration:none;text-indent:0;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:auto}.metaslider.ms-theme-radix .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-radix ul.rslides_tabs li:last-child a,.metaslider.ms-theme-radix div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-radix .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-radix .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-radix .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-radix ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-radix ul.rslides_tabs li a:hover,.metaslider.ms-theme-radix div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-radix .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-radix .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-radix .coin-slider .cs-buttons a:hover{background:transparent;text-decoration:none}.metaslider.ms-theme-radix .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-radix .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-radix ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-radix ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-radix div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-radix .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-radix .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-radix .coin-slider .cs-buttons a:hover::after{opacity:1}.metaslider.ms-theme-radix .flex-slide-count,.metaslider.ms-theme-radix .rslides-slide-count,.metaslider.ms-theme-radix div.nivo-controlNav a.nivo-slide-count{color:#fff !important;font-size:25px !important}.metaslider.ms-theme-radix div.nivo-controlNav a.nivo-slide-count{width:57px !important}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-radix a.rslides_nav,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-radix .coin-slider .coin-slider div a{background:0;background:rgba(255,255,255,0.75);bottom:0;-webkit-box-shadow:none;box-shadow:none;color:black;height:71px;margin-top:0;opacity:0;overflow:hidden;text-indent:0 !important;top:auto;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:35px}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-radix a.rslides_nav::before,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-radix .coin-slider .coin-slider div a::before{background-size:100%;content:'' !important;display:block;height:100%;position:absolute;width:100%}ms-is-small.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a,ms-is-small.metaslider.ms-theme-radix a.rslides_nav,ms-is-small.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a,ms-is-small.metaslider.ms-theme-radix .coin-slider .coin-slider div a{height:50px}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-radix .rslides_nav.next,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-radix .coin-slider .coin-slider div a.cs-next{width:85px}.metaslider.ms-theme-radix.has-dots-nav .flex-control-nav{opacity:0}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-radix .rslides_nav.prev,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-radix .coin-slider .coin-slider div a.cs-prev{left:auto;opacity:1;padding:0;right:87px}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a.flex-prev:before,.metaslider.ms-theme-radix .rslides_nav.prev:before,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a.nivo-prevNav:before,.metaslider.ms-theme-radix .coin-slider .coin-slider div a.cs-prev:before{background:url("images/arrow-left.png") no-repeat center center}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-radix .rslides_nav.next,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-radix .coin-slider .coin-slider div a.cs-next{opacity:1;padding:0;right:0}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a.flex-next:before,.metaslider.ms-theme-radix .rslides_nav.next:before,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a.nivo-nextNav:before,.metaslider.ms-theme-radix .coin-slider .coin-slider div a.cs-next:before{background:url("images/arrow-right.png") no-repeat 10px center;right:5px;width:24px}.metaslider.ms-theme-radix .flexslider ul.flex-direction-nav li a.flex-next:after,.metaslider.ms-theme-radix .rslides_nav.next:after,.metaslider.ms-theme-radix div.nivoSlider div.nivo-directionNav a.nivo-nextNav:after,.metaslider.ms-theme-radix .coin-slider .coin-slider div a.cs-next:after{content:"Next";display:block;left:15px;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.metaslider.ms-theme-radix .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-radix .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-radix:hover a.rslides_nav,.metaslider.ms-theme-radix div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-radix .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-radix .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-radix .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-radix:hover a.rslides_nav:hover,.metaslider.ms-theme-radix div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-radix .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-radix a.rslides_nav{height:71px;width:35px}.metaslider.ms-theme-radix a.rslides_nav.prev{left:auto;right:87px}.ms-is-small.metaslider.ms-theme-radix a.rslides_nav.prev{left:auto;right:50px}.metaslider.ms-theme-radix a.rslides_nav.next{left:auto;right:0;width:85px}.metaslider.ms-theme-radix .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-radix .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-radix .rslides .caption-wrap,.metaslider.ms-theme-radix div.nivoSlider .nivo-caption{background:rgba(255,255,255,0.75);bottom:0;height:71px;left:auto;margin:0;opacity:1;padding:0;right:124px;top:auto;-webkit-transition:.5s all;transition:.5s all;width:50%}.ms-is-small.metaslider.ms-theme-radix .flexslider ul.slides .caption-wrap,.ms-is-small.metaslider.ms-theme-radix .rslides .caption-wrap,.ms-is-small.metaslider.ms-theme-radix div.nivoSlider .nivo-caption{bottom:auto;height:90px;left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.metaslider.ms-theme-radix div.nivoSlider .nivo-caption{padding-top:10px;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-radix .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-radix .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-radix .rslides .caption-wrap .caption,.metaslider.ms-theme-radix .nivoSlider .nivo-caption{bottom:auto;color:#000;font-size:.9rem;left:50%;padding:0;position:absolute;text-align:center;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ms-is-small.metaslider.ms-theme-radix .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-radix .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-radix .nivoSlider .nivo-caption{bottom:0;width:90%}.metaslider.ms-theme-radix .nivoSlider .nivo-caption{bottom:0;font-size:1rem;padding-top:65px}.ms-is-small.metaslider.ms-theme-radix .nivoSlider .nivo-caption{bottom:0;padding-top:45px}.metaslider.ms-theme-radix .filmstrip{border-radius:0;margin-top:10px;position:absolute;width:100%;z-index:4}.metaslider.ms-theme-radix .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-radix .filmstrip ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-radix .filmstrip ul.flex-direction-nav li a.flex-next{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.metaslider.ms-theme-radix .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-radix .filmstrip ul.flex-direction-nav li a.flex-next{opacity:0;right:10px;width:35px}.metaslider.ms-theme-radix .filmstrip ul.flex-direction-nav li a.flex-next:after{content:''}.metaslider.ms-theme-radix.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-radix.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-radix.has-thumb-nav .flex-slide-count,.metaslider.ms-theme-radix.has-thumb-nav .rslides-slide-count,.metaslider.ms-theme-radix.has-thumb-nav div.nivo-controlNav a.nivo-slide-count{display:none}.metaslider.ms-theme-radix .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-radix .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}themes/radix/v1.0.0/theme.php000064400000007436151213255560011614 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Radix extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'radix';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array(
        "prevText" => "''",
        "nextText" => "''"
    );


    public function __construct()
    {
        parent::__construct($this->id, $this->version);
        add_filter('metaslider_flex_slider_parameters', array($this, 'update_flexslider_counter'), 10, 2);
        add_filter('metaslider_responsive_slider_parameters', array($this, 'update_rslides_counter'), 10, 2);
        add_filter('metaslider_nivo_slider_parameters', array($this, 'update_nivo_counter'), 10, 2);
    }

    /**
     * Parameters
     *
     * @param array  $options - The flexslider options
     * @param string $id      - the id of the slideshow
     *
     * @return array
     */
    public function update_flexslider_counter($options, $id)
    {
        $options['before'] = isset($options['before']) ? $options['before'] : array();
        $options['start'] = isset($options['start']) ? $options['start'] : array();

        $options['before'] = array_merge($options['before'], array("
			$('.metaslider.has-dots-nav #metaslider_{$id} ol.flex-control-nav li a').hide();
			$('.metaslider.has-dots-nav #metaslider_{$id} ol.flex-control-nav li').eq(slider.animatingTo).children().show();"));

        $options['start'] = array_merge($options['start'], array("
			$('.metaslider.has-dots-nav #metaslider_{$id} ol.flex-control-nav').append('<li class=\'flex-slide-count\'></li>');
            $('.metaslider.has-dots-nav #metaslider_{$id} ol.flex-control-nav li a').hide().filter('.flex-active').show();
            $('.metaslider.has-dots-nav #metaslider_{$id} li.flex-slide-count').append('/ ' + slider.count);
			$('.metaslider.has-dots-nav #metaslider_{$id} .flex-control-nav').fadeTo('fast', 1);"));

        return $options;
    }

    /**
     * Parameters
     *
     * @param array  $options - The flexslider options
     * @param string $id      - the id of the slideshow
     *
     * @return array
     */
    public function update_rslides_counter($options, $id)
    {
        $options['before'] = isset($options['before']) ? $options['before'] : array();
        $options['before'] = array_merge($options['before'], array("$('.metaslider.has-dots-nav #metaslider_container_{$id} ul.rslides_tabs li:not(.rslides-slide-count)').hide();$('#metaslider_container_{$id} ul.rslides_tabs li').eq(slide).show();"));
        return $options;
    }

    /**
     * Parameters
     *
     * @param array  $options - The flexslider options
     * @param string $id      - the id of the slideshow
     *
     * @return array
     */
    public function update_nivo_counter($options, $id)
    {
        $options['afterChange'] = isset($options['afterChange']) ? $options['afterChange'] : array();
        $options['afterChange'] = array_merge($options['afterChange'], array("$('.metaslider.has-dots-nav #metaslider_container_{$id} div.nivo-controlNav a:not(.nivo-slide-count)').hide().filter('.active').show();"));
        return $options;
    }

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_radix_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_radix_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['radix'])) {
new MetaSlider_Theme_Radix();
}
themes/radix/v1.0.0/script.js000064400000003276151213255560011641 0ustar00(function($) {
	// metaslider has been initilalised
	$(document).on('metaslider/initialized', function (e, identifier) {
		// if .ms-theme-radix
		if ($(identifier).closest('.metaslider.ms-theme-radix').length) {
			var $slider = $(identifier);
			var $container = $(identifier).closest('.metaslider.ms-theme-radix');
			var captions = $slider.find('.caption');
			if (captions.length) {
				$container.addClass('ms-has-caption');
			}
			$container.addClass('ms-loaded');
		}
		$(window).trigger('resize');
	});

   	$(window).on('load resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider').each(function(index) {
			var width = $(this).outerWidth();
			// if the slider width < 600px
			if (width < 600) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}
		});
	});

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

      	var rslideDots =  (function() {
			if ($('.metaslider.ms-theme-radix.has-dots-nav').find('ul.rslides').length) {
				var rslidesNumImgs = $('ul.rslides_tabs li').length;
				$('ul.rslides_tabs').append('<li class="rslides-slide-count"></li>');
				$('ul.rslides_tabs li').hide().filter('.rslides_here').show();
				$('li.rslides-slide-count').append('/ ' + rslidesNumImgs).show();
         	}
      	})();

      	var nivoDots =  (function() {
			if ($('.metaslider.ms-theme-radix.has-dots-nav').find('div.nivo-controlNav').length) {
				var nivoNumImgs = $('div.nivo-controlNav a').length;
				$('div.nivo-controlNav').append('<a class="nivo-slide-count"></a>');
				$('div.nivo-controlNav a').hide().filter('.active').show();
				$('a.nivo-slide-count').append('/ ' + nivoNumImgs).show();
         	}
      	})();
   });

})(jQuery)
themes/radix/v1.0.0/style.postcss000064400000013642151213255560012555 0ustar00/**
 * Containers
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides.
 * Don't be afraid to use !important as needed.
 */

$theme_name: radix;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-theme-radix {
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
}

$(theme_prefix) {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
	}

	.rslides img,
	.nivoSlider {
	}

	/**
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		top: 25px;
		right: 25px;
		width: auto;
		background: transparent;
		justify-content: center;
		line-height: 1.2;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsContainer coin {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		top: 10px;
		right: 30px;
		width: auto;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsLink {
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		display: inline-block;
		line-height: 0.7;
		width: auto;
		height: auto;
		border-radius: 0;
		background: transparent;
		margin: 0 2px 0 2px;
		padding: 2px 3px 5px 3px;
		font-size: 60px;
		color: #ffffff;
		text-indent: 0;
		text-decoration: none;
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
		background: transparent;
		text-decoration: none;

		&::after {
			opacity: 1;
		}
	}

	.flex-slide-count,
	.rslides-slide-count,
	div.nivo-controlNav a.nivo-slide-count {
		color: #ffffff !important;
		font-size: 25px !important;
	}

	div.nivo-controlNav a.nivo-slide-count {
		width: 57px !important;
	}

	/**
	* Arrows
	*
	*/
   	@mixin arrowsContainer flex, nivo {
	}

	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: 35px;
		height: 71px;
		text-indent: 0!important;
		color: black;
		opacity: 0;
		overflow: hidden;
		transition: all .2s ease-in-out;
		margin-top: 0;
		top: auto;
		bottom: 0;
		background: rgba(255, 255, 255, 0.75);

		&::before {
			content: '' !important;
			width: 100%;
			height: 100%;
			position: absolute;
			display: block;
			background-size: 100%;
		}

		ms-is-small& {
			height: 50px;
		}
	}

	.flexslider ul.flex-direction-nav li a.flex-next,
	.rslides_nav.next,
	div.nivoSlider div.nivo-directionNav a.nivo-nextNav,
	.coin-slider .coin-slider div a.cs-next {
		width: 85px;
	}

	&.has-dots-nav .flex-control-nav {
		opacity: 0;
	}

   @mixin arrowsLink__prev {
		right: 87px;
		left: auto;
		opacity: 1;
		padding: 0;

		&:before {
			background: url("images/arrow-left.png") no-repeat center center;
		}
	}

   @mixin arrowsLink__next {
		right: 0;
		opacity: 1;
		padding: 0;

		&:before {
			width: 24px;
			right: 5px;
			background: url("images/arrow-right.png") no-repeat 10px center;
		}

		&:after {
			content: "Next";
			top: 50%;
			transform: translateY(-50%);
			position: relative;
			display: block;
			left: 15px;
		}
	}

   @mixin sliderHover__arrowsLinks {
		opacity: 1 !important;

		&:hover {
			color: black;
			opacity: 1 !important;
		}
	}

   @mixin arrowsLink rslides {
		width: 35px;
		height: 71px;

		&.prev {
			left: auto;
				right: 87px;

			.ms-is-small& {
				left: auto;
				right: 50px;
			}
		}

		&.next {
			width: 85px;
			left: auto;
			right: 0;

			.ms-is-small& {

			}
		}

	}

   .coin-slider .coin-slider div {
		display: block !important;
	}

   .coin-slider .coin-slider .cs-prev,
   .coin-slider .coin-slider .cs-next {
   }

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
		width: 50%;
		height: 71px;
		bottom: 0;
		background: rgba(255, 255, 255, 0.75);
		margin: 0;
		padding: 0;
		transition: 0.5s all;
		opacity: 1;
		left: auto;
		right: 124px;
		top: auto;

		.ms-is-small& {
			height: 90px;
			left: 0;
			top: 50%;
			bottom: auto;
			transform: translateY(-50%);
		}
	}

	@mixin caption rslides {

	}

	@mixin caption nivo {
		padding-top: 10px;
		transform: translateY(0);
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
	}

	.flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {
		font-size: 0.9rem;
		text-align: center;
		color: #000000;
		position: absolute;
		left: 50%;
		top: 50%;
		bottom: auto;
		transform: translate(-50%, -50%);
		padding: 0;

		.ms-is-small& {
			bottom: 0;
			width: 90%;
		}
	}

   .nivoSlider .nivo-caption {
      	bottom: 0;
		font-size: 1rem;
      	padding-top: 65px;

		.ms-is-small& {
			bottom: 0;
			padding-top: 45px;
		}
   	}

   /**
	* Filmstrip
	*/
	.filmstrip {
		position: absolute;
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 10px;
		ul.flex-direction-nav li a {

			&::after {
				width: 10px;
			}

			&.flex-prev,
			&.flex-next  {
				top: 50%;
				transform: translateY(-50%);
			}

			&.flex-prev {
				left: 10px;
			}

			&.flex-next {
            	width: 35px;
				right: 10px;
				opacity: 0;

				&:after {
				content: '';
				}
			}
		}
	}

	&.has-filmstrip {

		@mixin arrowsContainer flex {
			width: 90px;
		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

   /**
   * Thumbnail
   */

	&.has-thumb-nav {
		.flex-slide-count,
		.rslides-slide-count,
		div.nivo-controlNav a.nivo-slide-count {
			display: none;
		}
	}

	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active {
		border: 0 none;
	}
}
themes/radix/v1.0.0/images/arrow-right.png000064400000000321151213255560014203 0ustar00�PNG


IHDR
��/8gAMA���a�IDATc```(�'@\	�XH�?w��`
0�T�
H��.(N�������2H�|4E@r +`�$�������-�+��Y�
��1LA=�l�$�
0	h�(��A���ѯ���!	R��8��0)�f�IEND�B`�themes/radix/v1.0.0/images/arrow-left.png000064400000000324151213255560014023 0ustar00�PNG


IHDR
��/8gAMA���a�IDATcf�*��+��	�t7P�??FWЋ$	RT���Md
L�`Ƃ�|����0ɿ@v*��'@L�, ��y���A����% �dM�$������2� E1Ȓ06rH�9�
�b
 �j�+���dIEND�B`�themes/radix/changelog.php000064400000000115151213255560011602 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/manifest.php000064400000022363151213255560010363 0ustar00<?php

/**
 * A list of themes. For now they will be sorted outside this file,
 * but as the list grows we might want to start organizing this list
 * The type should be free, premium, or bonus
 */
return array(
    'bitono' => array(
        'folder' => 'bitono',
        'title' => 'Bitono',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.', 'ml-slider'),
    ),
    'clarity' => array(
        'folder' => 'clarity',
        'title' => 'Clarity',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Clarity is focused on accessibility. It has easy-to-read fonts, and a straightforward, distraction-free interface.', 'ml-slider')
    ),
    'databold' => array(
        'folder' => 'databold',
        'title' => 'Databold',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Databold is a minimalist theme recommended for Image, External Image and Post feed slides.', 'ml-slider')
    ),
    'draxler' => array(
        'folder' => 'draxler',
        'title' => 'Draxler',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Draxler is a minimalist theme.', 'ml-slider')
    ),
    'cubic' => array(
        'folder' => 'cubic',
        'title' => 'Cubic',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'square', 'bold', 'flat'),
        'description' => __('A simple, slick square design that looks good on darker images.', 'ml-slider'),
        'images' => array('andre-benz-631450-unsplash.jpg', 'etienne-beauregard-riverin-48305-unsplash.jpg', 'wabi-jayme-578762-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    ),
    'outline' => array(
        'folder' => 'outline',
        'title' => 'Outline',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'lines', 'bold', 'square'),
        'description' => __('A clean, subtle theme that features block arrows and bold design.', 'ml-slider'),
        'images' => array('wabi-jayme-578762-unsplash.jpg', 'nick-cooper-731773-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg', 'muhammad-rizki-1094746-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg')
    ),
    'bubble' => array(
        'folder' => 'bubble',
        'title' => 'Bubble',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'bold', 'round'),
        'description' => __('A fun, circular design to brighten up your site. This theme works well with dark images', 'ml-slider'),
        'images' => array('timothy-eberly-728185-unsplash.jpg', 'wabi-jayme-578762-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg', 'fabio-mangione-236846-unsplash.jpg', 'victoria-shes-1096105-unsplash.jpg')
    ),
    'simply-dark' => array(
        'folder' => 'simply-dark',
        'title' => 'Simply Dark',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('dark', 'minimalist'),
        'description' => __('A minimalistic, no-frills design that was built to blend in with most themes.', 'ml-slider'),
        'images' => array(
            array(
                'filename' => 'etienne-beauregard-riverin-48305-unsplash.jpg',
                // 'caption' => 'Here is an example of a slide with a caption.',
                // 'title' => 'About Us',
                // 'alt' => 'A photo of our office',
                // 'description' => 'A description is also possible'
            ),
            array(
                'filename' => 'danny-howe-361436-unsplash.jpg',
                // 'caption' => '<h2>Captions can have<br><span style="font-size:130%">HTML</span></h2>.'
            ),
            array(
                'filename' => 'norbert-levajsics-203627-unsplash.jpg',
                // 'caption' => ''
            ),
            array(
                'filename' => 'manki-kim-269196-unsplash.jpg',
            ),
            array(
                'filename' => 'danny-howe-361436-unsplash.jpg'
            )
        ),
        'instructions' => 'Optionally you can add some special instructions for the user to follow. You can also use <strong>HTML</strong>'
    ),
    'jenga' => array(
        'folder' => 'jenga',
        'title' => 'Jenga',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'minimalist'),
        'description' => __('This theme places the controls vertically for a unique look.', 'ml-slider'),
        'images' => array('michael-discenza-unsplash.jpg', 'etienne-beauregard-riverin-48305-unsplash.jpg', 'wabi-jayme-578762-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg', 'nick-cooper-731773-unsplash.jpg')
    ),
    'disjoint' => array(
        'folder' => 'disjoint',
        'title' => 'Disjoint',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'bold', 'square'),
        'description' => __('A futuristic and linear design that goes will with a dark background.', 'ml-slider'),
        'images' => array('artem-bali-680991-unsplash.jpg', 'manki-kim-269196-unsplash.jpg', 'danny-howe-361436-unsplash.jpg', 'victoria-shes-1096105-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg')
    ),
    'blend' => array(
        'folder' => 'blend',
        'title' => 'Blend',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'minimalist', 'lines'),
        'description' => __('A simple theme that neatly blends into any existing website.', 'ml-slider'),
        'images' => array('manki-kim-269196-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg', 'artem-bali-680991-unsplash.jpg', 'fabio-mangione-236846-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    ),
    'precognition' => array(
        'folder' => 'precognition',
        'title' => 'Precognition',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'special'),
        'description' => __('This theme has a special additional functionality that uses image titles as the slide navigation. ', 'ml-slider'),
        'instructions' => __('If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).', 'ml-slider'),
        'images' => array(
            array(
                'filename' => 'norbert-levajsics-203627-unsplash.jpg',
                'title' => 'Image by Norbert Levajsics'
            ),
            array(
                'filename' => 'danny-howe-361436-unsplash.jpg',
                'title' => 'Image by Danny Howe'
            ),
            array(
                'filename' => 'manki-kim-269196-unsplash.jpg',
                'title' => 'Image by Manki Kim'
            ),
            array(
                'filename' => 'yoann-siloine-532511-unsplash.jpg',
                'title' => 'Image by Yoann Siloine'
            ),
            array(
                'filename' => 'erol-ahmed-305920-unsplash.jpg',
                'title' => 'Image by Erol Ahmed'
            ),
        )
    ),
    'radix' => array(
        'folder' => 'radix',
        'title' => 'Radix',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'special', 'square'),
        'description' => __('This theme has a unique design that gives it a sophisticated look.', 'ml-slider'),
        'images' => array('margo-brodowicz-183156-unsplash.jpg', 'manki-kim-269196-unsplash.jpg', 'artem-bali-680991-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg', 'muhammad-rizki-1094746-unsplash.jpg')
    ),
    'highway' => array(
        'folder' => 'highway',
        'title' => 'Highway',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'bold', 'square', 'rounded'),
        'description' => __('A bold and clear design that works well on a darker images.', 'ml-slider'),
        'images' => array('nick-cooper-731773-unsplash.jpg', 'victoria-shes-1096105-unsplash.jpg', 'tim-peterson-1099515-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    ),
    'architekt' => array(
        'folder' => 'architekt',
        'title' => 'The Architekt',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo'),
        'tags' => array('light', 'minimalist'),
        'description' => __('A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.', 'ml-slider'),
        'images' => array('danny-howe-361436-unsplash.jpg', 'etienne-beauregard-riverin-48305-unsplash.jpg', 'luca-bravo-198062-unsplash.jpg', 'fabio-mangione-236846-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    )
);
themes/bitono/screenshot.png000064400000102532151213255560012216 0ustar00�PNG


IHDR��� ~PLTE��w�t���p�z�~�e�m�i�a�{�y�Y�]�v�
��~�V��Ý��o�̙��N�ʔ��A�ɟ�Ň��T��H��X��9�ȗ��y�j��j��F�����|��0}�Kt9}�o��O| ���]�ˉ��2��2�����u�Ɛ��L��*��e��@��p�����"��*��h��\��:��X��v��cy�A{�y��q~�L�p��mx�^�!c���~+���yz�i��&}�Y��~��e~�t��u��L��Yz�i��e���m��v��R��B�o���Ɵ�����9����q����Ȅ��|��d��{}��w�,T}�������n����-K2X���b��a��T��P��c�z��wv�~��~��^��x�����Jruu�m|�e����{r{���qv�e�]�\��CjE��m�g�����uz����\~�87d�ps>�܉���{����Mz�&@}��q��������������4�u�R|����u{E�q�7wF��,��~~�Al<�����Z�;�b��r��|����"Z�.k������1t�;_7j����S�Q��s�K���"S?w�|�j����Ll�!\�$n�'Dg4Np��.nΑ��J������T����3y�Dq��}C3T�d����5`�F�=]�`g{4[�lX_-F[v����*w��~!fý|P#8ROm����?�dc�_l�Ef�KWt$}ɜ��eq�"//0=H>OW���k�������W򿞙wuv������IDATxڬ��K�u�#d�9}/s�`��1B����$ʖ�-�]�4&YC��������a�^�X�,T�s3��I��<���3_g
��Ϗ�wն�W���ҝ���R1��;��V��A�裏<iW�C��Z�Xԓ�WC3+�V�<2q̠/<����ޠ��I��;�����h�Mg/��R�N�-]Ҋ�)_\���Pòq�b���-��2��7##o�A":E��:_ 	o��[�9��onmooӾ��Y>"C_X
J��-���;$�?���k���iY���
J2q��!"��h��@A�ǵ�(H��W�*�
Z��+�G�"�T�DBT�(�}�.'
HP��Y��X���gKDH� �@	��-Hl�eiR#��;�k�@�BK�H�X6(i� �".���1DL�ȐG(��W��A:�Zi�ĕq$	d1ql
ΫI9�w@�I�0R(S) �#�p��i)*[�@�J%���Q�Dr�c�b��P�Wy
tM�$���`d�Ci�|\ѶDī�( B/HsH����ŬR�p��z��Jb(MRR�w�#]r5��[�<F� C��D�^��$RY�kY5&����=Hh�CRR�
���QDԴ>��CD?JG
^o�Z�M�:(�"!Qǂr�'�ȡ�.�C�$l��ATv�<�?H)'V.ш�U��,% J��B�jh��H���PPD�#�Q��zm���E�]� e(�z���C�/m}��~�ߝ�(f��[>��$j:��D$Fו8��.�������@I��ѩ�A�d2L@������dUwz���̣	
S��AԁA�
�v�j���Q���ө�{g�_~������\�����Ŀ��	�!2�֊C���jX6`�4��‘[=�T��/TrfI��J&�Y����4�1��sI�4�VN�H*�*ⅳK_/�u�M���N�NO Qjb�j�=�����h��Q��Q�H�,Ű�ɋ��� �rp�
�&!H)M�L����-�0�A�8�M4DҰ
�W�zQ�ED"��jQ�e&O͕z�1=�z�����y�����~�Ѹŕ. �CLrI��Ibb-iX�Iha�ū���c�*qH:��%�CHz#���68���!�q�
�`bSKr*���Ȑ;��`��[L)�Fb�'<��k�o����e-�^�w)t(��EC�P$�Ԣ;d1��Q� V�#B�@���WBX��=����$?��YVAtC��d�����5`���z��L}�K6�&4��M��.y��TzK.f�A��t�B۝�tn7�8,���H�$	Gh� ����+p,���5b�!
X��H���Ҥ;֬��VY�Mr��`52GItZv+���M�sJ+cBO�v�Kǝ~�5��'��05���CIL�ǢE\~_H����i�G	6	��h��<�H�߄�`	$Ĥ�Qh^�P I")w	К�VoiĆ��a�ĮS����	��v�v�t��7�3̪ClDY��#!��e0�[�aL��D�:�A!��x�t^������;H"T���\�ؼ��<f;6�8�!��B�H"�$�x�z��}}����N�11'#��9���K�iC[��9*�8��(6I$�׬ b�̷�)x� :ɧ�k���C�k,H+Dw���M�ɬ����Cͦ!�QT���<bb�����~�{����ΝL@B8t�O�U�f֓';��������s��4�d�P��<��Z�
<D��E�:����!��p���3�B�c�r ���0��C$���|Wx !7�Ca@�B �8��E��ڨ�(�������pw���Uk8yb�𐽎J$�:�Zj�,� )�8�
8��6��!:
�e,H?M@ U�CR�&���d�!�Ɉ�!�#���k�0a�MX�
��Al}d�@rH��(���Ū2K��,�~�0�^����ˀzwg�I.a�~j��/��ۍ��rs���-��$�-�㡬Zĩ藌�޺x���lX,{�90���� ��-r��%�!�b0�
u�"(M4h,D7�\퓂��Y�s�;c!�x��U,�Vp���a����A�
��@�-+�hl		
$�F0ha~��H䏔~�@�$����D ��D�k���,�����0b����k�q�������C��1�"Cq���dw�"%;�
��jI9�Q��}� L B	
��AU� w���̫{�I�Y����ۀ(39$��A�F��;6-���d^!��1�8�HH�R|�z�x���V*��J��ʘ�0m����q��&")�X�BQ�@��W�ŭZq՚�@ƃ�># H<Hل$���P��O2��h���DB�J���pȼ[ĪB�$\B���{��Z��6j.-��r!10"�[vdz
�i�u�?�K�J�{a@YJb!�	�hl/�!�eHXI�pY�r�� [@0��=��QqH1o�-���
��C�@1�T�C�L���q�W���|j���k��ODcN�899�i{�A�j�����̵w�v{��u��&#!A4[ ��
mDZ}�4�,"�	�t�V�,��
���I0X���H%L^�jq��Z��8Hk��&�! ���QҐ�R5�S��9�l���疤Ʉ&NNNOOJ&'�dQ�����
���n����|�����]�I���
�����N�A��R�Xr��q��	8bbah8p �,{#�B�rH� � 7��@�#k$�:Né\�@�q�F0
!�9� .�ͩ./3&�e5{�"x�
o�K	(6�#�?h�.��7W���LD�\Ă=�!A,[ġ=2�8p�H< r�2��
�U��I�4��
0��&Y^y�F:$���<Tr`��Hi��p�8�䷺q�L�����4
�N}���u��xkh��m�����A��٢4���BjXHv�J��%չ2��;D!� �:D!X��b�����$"�;hpX�ye�?4�B��X����"J4�x$���C`�G����>99�4n��i�.���^�����cd�2����;���%��˜��{�F`E"��[�P��"3dȩ�@(á�|8)A�V�:M4���C4��7_�iK�J!�8�͓�R4�A�Acllcͱ�Q�p��)����}�͍)0�< B:�H����WS������g�у�6�k�ٳ_~y�}�����Wdd‰�Y��|}�1N���A$"$2 n�ǡ�H�Z��(U��H�PL%�*Dp��!y�ټ�&q�8�'}��]�k����󵃵� 91Jlum�6?�ns�O��"?��`g���g{ݽ�Wk+��>K��)p,���p�P�ȧjA#�0��p�pD�D&I���
�C!��C��D�"�E9�H�-��Ҡi^Ap XD0I �OD�������k�y��_��3���U~��
�����@ ����3Socn��9�W	�s���� ��P�"d0�����a!		<�,$����5KH\\�D���QE�;�
���c�BJ$R��8���Z<\^�|���e�
���[ƈ�2���h�`��&�D�?w �~9w�[X����@�C�q���p���BD�I
XS��%�a(��2�%��0h�-�Wݥ;V�H ��\��� _�#7n�	M
�T���®SY���?r��0O���{���� &`�ߟ�U�7>:߄Gh$_�/��Z$�8�"���,΃L"3rH����B���x�C� �p�𡅘W��H,��ݐCn�PPa�8�1��Gb:���_#2�z�]0|ut���G;�9
�Z�E�"� ������v��F]�&�Yƨ�h@��HHB<�B.��dH�E"x0�fd2$$!��� c�+#k �y��7,\y��ӊ�4��7�H^x�0�8p$^��[X��ڟ��c��~��������>� Rn���CD��ݹ�\�.Dr_�3x���� �lx` A�0ʧ�ÐLӜƥ�4�`�I\bL8��184���!�t�(Hjɇ��de����A:zR�c*t������S�bs��ݖ��o�z &� Ήo8� ��B�������������,rŋ�!�AZ�L'���!�����C��Y}[Dh�zZ�$@a���t��A`8���␀#��}c�N?>t����/VƩ�E�[;�0`�"H��
�O�>c�3��o�AY��b�7��yc��f��h�N�ҙ�(Rf�=� �$R/�D@bb�;h�C$9d^Y�x��D�!%�H��	5
���u�-8�)��\���Z��]�x�;$f����P�������s�ӯ�w��b��;TX�a�P���	�8��bH q�Y$g�I8(��C-��G�P��0!t,B���ټ6VFa��0A,njAiw-"TQ)"
��N�Z!W7ҡ֢�A�G�:j����4�� �%a�1Z�������Nh����;��ӷ�U�9�=�g�E~>���8=#@�X�_��b\�c����ٿi|�W�z��<�h/�8Ҷ9�ʗ��`��"*?T�d�"&Ymcc�!9~��nV�ȹ�-Kwf�Q�	0Dʨ���e�p1AГ����S�1@��!�!�1J�"+@$�%�5Y��!�+��2ƚ{(n�A�������^mkӘ�9��('�٬�pی��U��c��QWO\_��R��n��w��U���Oh('",dA��$K;VPܱt�HxH>"a<NZ�T�(����H��㰾ey�?,��%c��f�!:�QMd0,)�~�G7H����D2G����#J��EBg�ܚgy�!V���4Z�Η�n7��6Һ@��Jq�mɓ��4^��|�y�
����
�Zqp�Sn�]����pǃc	$�
x�C�� I�!+i����=�ڼ��f���ҥ��y�!��p����|�h>�KvArq�,�*f2�to?y;z�W�A��E
F�	{L� Bs�ֳ��i�ݑ�	�A(w�?q��((�����NRy��g1?Rn�{��M�\Ny`�N'�D:�\���	p�!��U�D��O��eS{�(wL�k4-��T����d����a��v5���eD�#.1�r�����Đ`�C�"��@ �B>H�f��rw�D�(�]��$��O�)��<��9�������c�Z�,�ܩ3�)��AQ$>R
#��17)�Q���,�I�q ���r)*��nJD�8i�;Xrv"�x�?Os���LH�A�$HV�C b�0�@r�!`�rcbE�,��
�
u�Pj ���
�-��ęH��_��;H��iӧ阥Z��*e�HpDZV��
���Y�tW�#l�Z��m�qB�3B�F`�X yґ���x�"4X�DqLQ,3��`Q� �A����v�h0
KpPLc��bXNJG:�#BD�.����#8�N�T*u*�C����r�E��'�a�ѧ���nQ��r"��@y��\k[]�*���A�	
���g��a�q�C�!�M�4H���! 	�qToW���"�;�a�@Q*�I�1`H��@*�jogr���j��;PH��*Ai�m7Z�e9P��1��&��%�NG�E<��G��r}�^%�!I)M��f�L��Y����rFd��c2mW��c�u;8�=Kk�	4����ABxRL�!"΄Б��,��!��f��(�/��LnގE�G;wG�jSDP�&$ȍ����F���
;�|�g��0�3Q6=U���n-�0��	��E��.O��
kZK�-�%A����?�Ԥ�Lu4�8$q��	˜$$V�S�r��D(,H�AH]H�8�sJ��`l"3�AQ��	����7����c&���rQ$gll��TD9���b~�A���ߊ�ಔ�Ҝ�J�a����f�6��|�@����n���n8H���$��a-��B�I�!�I7�$r"�$(�b�U`�p$R���sL� 3@�!C$��X6�
�,Ok^�c���0����K�t�ʚ�UJr
�BDm�qJ`�
�Hd�pj���~��HX����~���9V��@�3�!�qr��y�#D���ѯ��pICBq �Bę|�
K@�%֯N�B��"&b8X� h�C�7,Uj$)�� HGB��@қ�ا*�-��Z��v��fY%�D�)w����(f�Εy�T���^"�
Ԫ��e�E�r&���,�!��Ü!uI�� �K�7"��h���qx�F,�M4^$o� f�X8�A�]Kp� ��&A2���Ab&&lA���sT2�C�Yc���P*-�Ke�Sm�s��g��,2�� 9���sx��.X�K.u��j�7�XÕ�b��
��f)(�@���K�l��U�*�a���O��Y�!���;������Hx��
@q`�H4��cl6��ˆ������a��A8�K(:�zָM�+Rӥ��lm3�k8���H-��^XnF�τ��A2G��z5-_:�z��q�؂��
7Y�	
kWlT���2@@C�	�Z"c �`�Gb< {�'�!q&���L�q�2���>K�(�� � �b���p��7�ڥ�NN�0��H���c��#<�B����vJn���ޡ���srmy	��|���+���npJ�0�$Ũ@!	�qܰl�+��X�� d�B�9Dx�E��H�"@�s�횧�\�(�sh!�Y��!�8�,K���!���L1��kU>Ҋ|��՘F�@��_eR��4.ů��t���u=����Fmwd�I�1w��+�CF�]K�69a�c�!���	�Y�u
��Hy t��Iq�yd̠8��!RJ�q8����2F�U1"����K�Ӱ�HK�e��@!����@2�,7�h����������޺�ȯm�v� ��Q`s�p=�E�A�	4`�B�"�e�д�X�CL"TB��p gi`���ê�H A�����Yx4�!x���pE�N���}��((�[���g£[�7.�f>M�-���5	^V�ਛ�FQ}���?��O�l:�	WLDyhӂa�8����y@8��� PPǝ6KP��o@l~�B�"�w��C+E	����	D�!
d}�ҥ<�d���Hl�
���F7��t�\˗2Y��
yزQ+f��f��K������G���<����D@�������iu,��"Cb3�\LD���[�#a�x�0}Ke1l��u�Y(�B�<\����[�G��PD�A�&R)]g��}ٌ�p��5�yi���A�e4bds��	���`@�ݮ}��u��֚9����s��n��\.gf��
�
�&
�s!M0Q1ҧ	�X,a
�6�p��$p��C(�{�#�Cq �`%p�Rnр8��c� � �b;�^ΨJ%�W��e��9뵊ɯ�����"�VWiY��ϓ˅���U��lN�x煷�z����f3JGW�6o���l'i�F��!� K,���W�Ο3,��C(��3=8d>��2
@v�@@	��Ť0\��q����3b5	�"�&�g�J�#Ί�:�@�Y��,�
�\�@cc����i�3�n&�./-6�����^rnJ����ë.[�����b�u�ΐ�5-A>	hH�.(�� ��K�����=rg� ҳ�Bę�����p�}}n9-��������2FĆ�%9g�1
��X��ɂ��6��f��Tk��
�f�C4�G�>��X�,�'&�����5����ȓ�iI�Aq"$���%��8IpD�������]7��
	=Kqh�0I�$5�c�a�t��4�2���4���ImXY]���8oe*]Toj����ZM�5��:m��ݳ_?�~�C1�Z��]�R �c�
����K&��?����O��v�ȼ�Т��@R��&@�Z&I"���A(�æ��� ��Cj* �a,���8B�$z���OW�Ȇ��H�*S!�����n�#Ro�j5P�c�{��o��~8�]�W����R$C�1�[.w4�ҀGp4�A����P�q&�9��	@�
4�r�"ƒ*4������eY�"�,�R?g�Cbb�
��K�U"ޮ\�I�
�#/�F�]^ro�@F�]�
t�,@���y�.�>�
�dq�0 E��Q��J�V�9$��,�u,��#8�e�픘!A�B�r}Ǭ�C�P�XUoH���C�%\/��<��[�];Hl��˝�t��
Y�GY'?�£.��7�鍵F�u��"���{G�r�d�������t��X"�v�D��@��<yΠP�8�iP\+�Gp��>�Sܯ�?�h�܋=�
0��0��C����Qfn.�,U�< "�w�Һ���Z�Ҁ�a5�]���ݭ��_�~�]�ݍڿ�K��W����me���[=qeo���Ne�R��!�8�گ�<w!`H�"�Z
��d~|���򣖥k؁��Mbd�A"x�x���J��Y��@��+Ұ�`��A
�ܷti؁|��<�
�
�Ց�]p�B�<>Y��v���n}����oO��"y�re���!���XPg�!2D�=X�@��E�w !�H�!@�uǰ31��-n��@I$�(���ѧr�~�%�8q�8��X��p�ӓ���c��V���.H�����h��tg~����o՝Ϗ��ŭ�H!�D�����<ɔ�����B<��4��`ȥ��:����^�
M�P�!6C=��$�nL:D'�C� �� ��$�?�
�x��gt�l���PE��(�U��!
�I�Un�L���K���9jE٭|6��~=_�I--(�!�P$)h�
�"�=�	k�jRg��,=�@\c@yg�,�Z�ݓ����A�O���,��7���OҀ��}�A�0Z,b-8��'R��@�E���*D]����l<����j3��ʟ!�;0�48`�z�����v�^��٣?�2ϋ���&�Hy��P"C�(������H��0�'�x"�ɸ��^�Cװ��@�X�-+hPx<.��aa�>�
�BԤ@"˔4�,�"�����@�#�A��,x�U��ޞѻ��7>��V���֝/>���.�^y.����ra�~0�]�@
$Cdl#�
4u<iH,@��H �ʽ���X�2��	�����`< 40
����q��!�Pn$��9��9�A�8�#ֳ�걷��8b��x|VX��F��)��A���E��<3y���>}���^�/GY��v���{��}*eA0D����$b�p��Jq��c�8����W���!���0(P
�9$
qUo���"��[�0H�[���b���u��G����(q�*�E��3@�Q)���䛭�CC�wE��c�_/rȊ:���ܔ�'M�omm��Ey~W�ևn�[��J)�a�`�HU",���]�����l�4-*�CB�k@D�$ t#�!	$B\�A�(hXq�}7�EXА�-!�8'`8X�ȈE*�~�yb��E�3:L�g|�[��ߍ�v��v[M�p��c#���|�_���?�����K�� ݇���� 	�nҊi33�@b,`8�@� �":�|�x��؃�A1��iipu�!~o�A�g�E�ȍ>F�[���&nr?@�3.a���5*EJā�<�|�Q,�~�����"�%����Z�>|�����#�G�ڒ7�Y�,o��~a�O-�� � `��8�-$H��iL(ֱ�!�0=CBp�!��]�~�r"��`�khQ&�uv/��Q���"�KZ��‹(p)�j�I|�Uz�^
�w5�,��-�Dz���vb1*�	j��
�D��#-ZBz�4����=gN?�m�{��f+z�������3�*C��ds� SkGX�$�K�;���Ua��,��߯ޜc||�-�[�F"�Y�e}�6�ß�<��}7l�����7���9��mNL��a8ą@�@,��LB��hx�Zޯ28HNb��C�;D&!	�t��$�ïC��9�"Z�`)�"�!,��L����
���[/@��_

.�pl���^}��X�Qe.�9zh�;����!x0Cμ��qx�fv��O�>�	0������Sܪn�d�P�u�&5�:��Ǩ�8bi~�;�� ��J��D���Z�Dę�nEi��8ڨ	<��EˊJ8��4.D�a�~֧D��v��k�R)���2����.X \�;�����>��Ad��Fաi�r��y��tJ�"
�$�{�%�ց7��շFw*�xJB���~�H�ÏY��0
�@B%`0Эg�&�g�$�$%<|��O<Y�_��I�]��zdyYD^�5%��!(�48�yn�]�$�|��_�@�"��4�V�C�������L8*C�B�9��W1I���A*�I��aG��V�w�P�!��"��E$o��6h�dg7"nR,XI�0�L�vǃyAqwc��I��W9Z�TI�j��W{��iXt�D�qnwS@�~9��}�8�R���4kn�|`"�!r���ֱ���F�H8#� 3:������΁}84ԕ������,�4���,B�#
mK@��;/j3�_��`��Y�kt�Xk����i�Q�G�A�c����8�g	��# $y��>�B$��r5R��|�C(�:\&�+�1ӃF��U	�u��`D&��Ϣ�|��ZY��ET���$�4�M��A�"�ZD,�k����"�6�1��g^��*�%}V�*�`�xO<���Out� �4C6}���@��J��nɹb��1�9b�!��̠r����P�2� d�i�d��5�D��B����p$!`�!�Z�G�!��|������E%�)��K��2���C�������l�}�y�!�q,� ��J\@$�X��Hg�c��~�����a�d���[B�$���,��d�c
�8D�ZVrG�� 1��4Cد$J�hY�!��
"	
L�؅E)!IQ��].�#�\[��U7�*�
�&p ��WN���a@��~D@�dE@��@��ʛN�M�7�f�>$�nB�$�đ�F�u�M�!k?cM�i
�
0,�!Y(����ȨMK��R�@�DVX�8Tk�P�Hx��3�E�ԧ�֊Ū��V��qƣ=]� {�p����~����_+�7��u{��b�wBװ~Ңj��L�̡B���Y���[oM�05���`�g��H�$�����ѵR˺,���7�$ �HX@�4xU;T�-J�!QIT*ϔ�:�NWת�`���Y���8n��&��r��xCm�����;|v��j�Z�l�?XhqT'C�
��� �<�ŭr�oW;
�I
4PrHIAG"ӱW޶�r�@Dr"�6sHs"��@i/��<���U*K[o2~�#�cٚ�޴�0�
�@g��! ֱTziG����q^���-��� ��E��v�u����u��
�ᅀ�2BL�z���)�V*,��@FÂ5#H�a�hZ(��,җ��R����R�<63����*՜�$�R�C���S��
Hw{�>r���_1㵟a�/�q��\�ε��1�����91�c��&�)���q�Ӡ46�l4���H�!�b���r���Y��!�Ѱ�� �L�w"!���u�A(N���R�BERI��4p4	GHǪ�� ��S���s}"�o���)r��q@��l�sM��CS�ai�^%"�"��H@DF��,l�(!��p4$b`�W�,P8|�!*�p��Hؖ�_d ��E"3���`H�������[p"C��?���1��f�H�X^\\�[���;��;�}�}5�[G$z�9Ā@/�-�3^@���9���[>���BH�	i!ѮxAl�
|���@p��0�BL&����p�LaBT�tN9��p�¹�E�J��7�e09�X�q6��
(���C�ت&��
z�ph��u�=�W�|Y-Hf��I����Yx�Y�������x�k
3cx�YDâ�y�9`���A	l�Pzh��w���E���f�NYʩ)[HH`"ʌC�8D"�Y��<8W�Pi ��4�Z~3R
m�gZZJ�(�s�b�<���e���{���	_=�-� 7���|Ν��<V�,sfggi	��^�V�P30��;�7IX�"���*Du����L��퓢qR<H�M��),�A�Ȉ�{�J8$�P�����+L�͡�`⩨��u�K׷,��b�VY>yd{��ׇ�[;n��R�YD2Y�7s8r�,w���5�evn�`����@��C4�:V�uр¨
i�G�ay�$,e���L�8�8�#S�`%$�!P��\�$
?i%%F�����Bj�
���(���,����i!q��ߺȳ|?^>~�w��ǻo}p4�q7߃z��=���s�e�,�P�!ĉxႄ�Y�Z�9�oN7� ��v�I�H�,�C�D�T���5�,�=����F��u��,TTƉ8fѵ(�+�4Գ���
����JY0I<�o�rv�zv(Yd{Ԏ�ǹ9|�����e��"��ձ$7@���'R����X�zw$�dz0BHZ��4՛����$�A���T�CG�4�8�*	HO���2?����A�n2*�PL��.�$v��H8�o�ڌ�	 ��b��r竭�q��WWW�!��ĮB8����S�.A���
��^��m~�h���>�ET#�CzU���M�0H�ڗ9�jJ(c�qHg�C2ְl��K�@>	&@p,J�!$�t{�H(ݲ��" 98�|���p���gqJ�b'���x�w���O�q"�ԁ���'��Cz�Hq#b@��F5W��H8d��@�t��aA0��#I�H	 ��A�W� ���2I�ZVO"2O��C	$��A��L�Cn�����Gyx},W硄��T�T�V_=w�pM��㌥s��}�N�C/��3g��Ϻx�,�,��	w ��4�{t�a�Y�%�Al�f�<a44@��`���f�) G;)�� ��#⑐���	sȉ}=d!����Q��W�h�),Ai���R���&�� �����gAr�����9�qjX<t��9��F�X�a_ᔻs��%��Y����n��#�@��Xb8H"�"zeDHD
%�n�B"�a�8�AI 	�$��/H�CN�b^�=�(����n��ղ,,x�Y"4h7����
Ex`	5+�+ߖ���۹(�
&O�;����\=�ܽ�L���=K+�` |���NWV<B?�w	F �f�<�Xț��t�ߤ���"-��-�dg�Ez�CX m�SY�B�=����p��������E
���f*r""Ѡ%�'�R��r��Vi��V�i���B�<z�xG��`<m���
D� qk�'9Dg�3��qK�?�rmf8��J/u�w"��I[���4:8�F��(t�d��"���(�'N�HT�qL8Hd�����6��T�!]/]��z�C��^�����_Y���g�����瞾�s���noﰾ:E�k�Ew����p�1�e߁�_�h#�<@�]-���. ���A���#!�'{3D@1fD�q���jРf�<z�E�]����h �x�����=���y�͵H����"�����Wu����������re�w���S��!����$ �aHt���R��
4r���V]�h`�e-K��#z�U<�Lz`26� 
H;Iа`�0IC��d����G��|F��K��L�K���$?��ra�9�r��W."�V�5�}��œ����Aƫ�.T���y`�hX�0,dA���^'�]6л(��$��#	��������I4�rXcD80��$8�u��K�a,Xѷ���0T�SD��5�K�1�n�0	.�I��$4ּ��J��RS.WR��m�-��O5!�_�j�W/v���pt�A���M�8�S�鉎�2@n��z����k�]˭��ڔ$�!���E�0I	�X#Dd�$AaAN)�C(�`^�!Fe�Hڒ�36Iӝ)��x�؄#T��[.7r�ۺ��7V�$�i��uq𢡊��p�;�?�A���ATd_��L7��� [[�����C@rgC�D�G���hYN�)���M��W 	�Fh`
j��X��$,)�����h���!#�P�DFDZ�8����e�p)0.��eT�=(�#X����>���sO?}�-���(HG��>p$ѱH�z+�M}��q�#���K���,�Hbb) a��3!k�"{x����ذa���i�!��"0� �q�b��C��$Y$k�4J����	!Ij �mB��A���p^�FXd�Vfz+w�O���{����HO4��C\6B�%>_@��	D6��
N~�t�d�͢�-mdKF�İL6�%�`���A@\�	H�y��p�C��ydH�C�a�,�¹�[�c����,���r��ٽ�̪c�u{�g_�8��� ���&D���e�.f�#��y�R��]
�X`���в�{ټ9$y�
Cd$���B�,G�c))���j Y4 ¡2��(��Af��K��RK�qi�R6�BP.L*Z�����g1����_`��c��í>e��
dmk��@���G6*�s�+w]�?�zW�R�͛�-y��
Fi���*�C4(���1�@�2�4T���^��8��!h��5����B�(H�=���AѴ,�V:��t�����������;��5��,p�uN
��,�Y; �iims��/�!� m�@���N����O�9v��[�%́3���nZ�)X�j��=@1Ƣc�"b��~�|v��F��E�@�HD���V�a�sD@\���d�K8,��Kt�PY?�ă���f��_�)Kz�����c�����"�!����g㶼H${��M��޻�Ҕ�,-�x�s����
=� �+��ATM�$�a���H4
m+HD�8b�fX�b�@�"aỶ��
��ɶ�`�5�(�*��%ˤv�I�X�փ�s�}�eP.o~�&�w�yd}���;3@PQ��7K��j�j.�����U�5���|���w}��nd��1�(P�/�B	�O�����kX		��d�R�nrPL,�@�����;��&� ��\���%�肞�^�����T�x��Ѓ�%Ƌ=	���[驠�%B�����.[�,����߼���kU����M����n�Ժ$,��D���"Ѳ���h#���|���޸�}!D��n��@�;��Hb�P�8H�%�8*����b3O�I����Ue�o���+�^����⚕�P�D:A�R���A�b���<L ��ᨏ%HX���i��Y�C�#�+ u��l4f||���}:��\b-vS4��g1@��@��a�=H�UQ$
y�>�Ʃ��KiG��Ҿi�R�ǝ��ᘜ�T�D�D�y��,HB�v�K9V>��j�sL�=�"�8D�0v�#GBI�S(�4Y�cne|z��0���h�%o�� y��F
D�xd��M�y��Ǥ�&a�ã�F�E��D3���y�3���l��ѐ����s��qY����o��((k�#��abZ1����/L�G�a��ba�:�=���>�$r��R��!�q��D�GVl��{�@�"S@�@x, ڳdQHVa������(�ˆH�B�9�r��(,
�(6^��e�i��Ÿ�A:"-�G������;D��H�$�c���I�!�8,V��GI�|�b	��U>R�~:���aph������D�(b
D3%�����@��Y�4�,�g��W�ϻ�>	z2Щ���:��D�T,�8HCc��-0P���a���](�e)`�0��O�j�خ�B��E�R�����xu�(�]~M���.׻�c��۵:��)��cn�"`�BI ��uRd$�a�%��:�|��� ������֗a�j�s3Dە�p0�,�0$T���2�Z���aR��c��!0�L�8@�}�9�{���y�fл����/���$�M�f�r$
�� 1�$I� ������� .}���V2D"��߿3���Xi,,�����5�)
	�p���48��Cj�j5
���V`RW����!�`��"�:�Ҫs�V�ω�9�*��T�f�kq	��~w7�H��e��8О�*�1#��v_��?� ��b���Q��c�T���D����Ai(�I���֢�Ig���<�R�y:q�DMb����E���Ҡ�	������˿}�~(4T���,�p?��R>����I�e"�H��Ǐ���Dp���„(׾����p깄�у(�t���kq��?��Ă�G��j,�T��P"W�,�:�h����no�����5�!�=;H*�N�WW$챲�� �
ά�DN$T�z`�h~��|n��Z�ob��xJ��d�^*�s ������.s瓴,猷[��_{�#���ѓ�7cg��H���|q�W�z��-�/����[<%����b�`(X� ��XH�(��`�7	���@�)��߄#S�Y���{�ڕ⋭
+����w�jlU�;���ٙv>��Sw7I5CcW�0�s�#�@���s��h����|���$����ٯv�}и���[����7W��ƹ�����᪽��/����B�d��̱�U,�i	M�]��h�(
*�4k���8�
b�H�i��qPҹ���1��t=��h:���,+3��pA:���F�m9�	��:o��Gx+�ۗO�9��n��j��Z-0y��{�9��b�o��K(#�x��V�u���mI�>L]ǽa��zd�:{
�vʶm���o��vj
i��x_ �~���+/�i?���ә�L�b�4��p�y��<�=s=��E�\'o��[@0�@no������w	H�DӾ���+��ˏ��MX'�@�RQ��H��S�Ղhl,����8S�bc\E��Eiq���3F$b]E���##F^F�"e�(=ΪF� � �l�l5�[.����
:qֲ��֝F'�:
�o\���N}�m�O:��x\�ͺ�|2��[?q�ݗ�q�4�Lvǟ;y3l�c{���D�۞����T��J5v��^æ���J�n �x���m~��������x~��NO�q��x���p��3�vS�7{���=%x�*d�����+�׼��������# \	��!ňE���XKE0I���I���D)I%�H
E�E�$ЈY�C�P��\Ĉ�$q4�p������H�S��1yk�+e�$+�}�P�c�P�_��J���z)�ܯ#P���e����R��Ǔ����w	�u_��w�.��
�=�'\Rs�K�
�����N5Y(��g��^*E��7���Iy�l�/�/Q#Rx|X�:�y3oRH[7��B����j�@���_����ۯ��b5K���23�H��jO# X,�I��E��֙܍A�W4`�)�4�E/d2V�&��[,�D4�<�8��'X����bD�P$SL�/|�$��&��WE��H�|�dD�
���
?d!?J�qy���~�p�=�~!�C0����<\:H��)��]����z�B�|Q�v���e��N�R��J��r'v��J�)y�����i�����O�C���l�gvD(��9��D��Z>��ߚ��W�@�+@(�����35F5�#1��c�"����৒�:�B.��?IŞ`�*+xA1�4�������U��@�2Ϊ�HzK�s[
�/�=�����zV���]H��,�ԽP�C��6���r���I��
C_~
�7y�@�!z�#�k�k��r�!�l�^��ci{�(¼%ߝ������tV��w֥����9�^W�l2��g*�r=���lMA!=	V�Ʋ=�8G2���^0T�*	����B� 1ݶ4�b��S\K�D�1�LQ�w�H��(�鉈O�(�T�ӌ�IY�1������ԥ��)R�h�����&!�ZN��������>d�bn�R��.Cs�Ui�|C�7QXx���i�I4a��NB��]�Ɉo�ۦ�ȱm膟��$��9�q����'P�_8t��:O��"�R$�J�(�*PҖ�9�h�5�s1?X^�d���s$#������Ѵ�@.�q	�8yw�\�,[��jg�\���U՚e�ϔ�g
3��ZP���j)���N�R�[���l)JJ;��r ��12�*��ٲ�T�Vu3���&˸�6Y��S?�a$v윤��N[
��F#�i�Tu���7���ӻ�mu��.,�ͥ���_��W�F���d�l�hס2��ʂ��lw���+͔�R_UDҋ�57������NZ'��NJ���Rv��Zu�'���-����9�������n�nǬ_~�v�_�2;k�_n6cK��a����ߍ��g��5�O"h�F@�H�# #���{ڞ�ѭe� h�4C�۳q��==	�iMO��g�Hd����zZ�t�J�ׂ��A/����)$7`���X�����N�T
i��R�0�ø3u�k�
:2@���~��;>���^/�w��w�M��m<��<��Ť�[ݮS�<t�7��C�&+Ym�h�Zm{6&��"�ɳ*6�)����U�v�(�$�_���]�p狻�������0������i:��)�
�Q�eȩ�!C# X`�Jօ!�
��d�4���_̨i�����k��R��(fj��1H���`�6�s��]̉MX>�?_4>���1��5��W>�
&0�ĎU�e�bb?����C�E4"�<����I]��Ē��]执ֻ�~�a=�q�;�X�' #"Q�!�2�s�����Y�@�w��浑2��GAH�R���-n5	H5Pa�\6�^���!�`/u����6RfW���S+Y�ęeRKĝ� Ä\�ˬ
{�?�����Yŗ��2�<31����o�l,�H��1�d��J��ߔgLj���2yG=��<j�����$�D� �68|��ԇ��z�H� ��6m!��S��N��p�-	!r�=����+�	ْ���t�+��!K"$I*D�Bd
I^�l�L��c"Q�4��{��So��O���H�|��>E�﫪��a_1�5[m��嫱H�t���8HZ�[q�(��I�2�#d `�h$��W bðp�9�L�r�HA��Db$<���54tAy�mJ�b᰸T���
sKv8�o��׊W�x;����A� �R@|�s���Ykm��j����%@ھf@Fr�C7緅���t2��E[��
�&�Øex�#dU"��a��l 6���!fQ�I�J"�9A! �V��ĝ_p�%����h�ܞ����>�\-n,���S�|��?,Įr�is����[_��oT������:L*�0��I���Q�����J�wHݐ���^��7����h0�p�L��+�9&q5�Sq��$A"o�
��a�clA!��j2��N) Bě���H�"yJ�#a�R���!���K���f�ܰ��Cl4��:%,�]k�0?��ʏ�O���ޚ)�!��7�L<������j��t�[���*am��V4��Bw�0j�Z�hR����
7�[��7LJ��u|�y�mU���NU;��~x�c���*+��Vw�r�SD�A�@T�̚Yd���Kf^7$��\~ă��x����>�Ir �*&�R>IS*�98�N�F����o�M�����+:j9�G���5�{zWFX51��Z���e��#�3
�Z����u�8"�~���oj#8�9�!��A�~�	������wݠ�������5�����oW��"7��	�������3���xH"֤nyY2���X�Y�q�A&D�a�a��Vump��a��b�w��y��W���.�X?��
��t.VvU�׍��M6��C�ؽ�j5x���z1{�e���[��E�:��0r��7���^T��q�L&�N�q@0����aot�pKىo��I?F!��?��7w�rߌ1C��.'@����_H#M�U��D,]�L�~��l ���d��T���$�dan0|@@��k�LN�Q_ĽЏ�/~��x1]�&@�s<�������L����sDHq��dr_���f����Q��V�O���z�[" 7$�Lz]����0��y�Ͱ���Q�2��o��.o���M,`�?�H�0j5�8��Vd�Ή�V��7
�d_� aȺ�6�4��!M/{_���?��MG"��t�d�K#'V~�C����So4��ܑ{�
�������y�����Q7~�e�
�ϻ��<
���T�X�.cC���^A��V��}��FM(1de/3��}����&,�^�;o�r����KYa�)}�#�X �YȖ�!H����O�X��=�~+�ӳUY��^m}h�K��?[p� ���`��X<�$��0!�- �8�5�ZY7�Z��/UG��]_Z�2|�8��-9ÇǛ��Yy|�y�h��枝��k��^t��q/yP����F���+��L�>�E�w�C�S�Z�ßh�֮�5l�v���wY�6+j���(G�廽
���8V��_��|���eR����:��-!Q@d� '!��'D�qP��B&D�W?���?�#!���/Yz�U��	.U�,$�D�d%�b)�-<�G�
KN��J�^ՅB�YpJUN�%��K�lVw�:�Z-Uxd�WUu׫��2Y��fsX"��j7�[9�=l�}0�z�Rf�{���1�9���E��֕U%��-x({��rwV�[�ݝ��B�K�.\�k�;?#�ƝY!��'�Hb�$���H��$>8„��[o]PI���s%C#�l�;�mUu5����k�ᢊN��r�� �(Y�!K����q&����GR_'V�hIO
3�ު�I���4����:�[i薰0@f�G@N�!D���{_�0�!�!iZ��uTɖ����fA�X((:W�V�@B&�W�I�Z���^&�/�
���Ѐ�3�|�[M}.��;�X�	�4�)$U�CT�e�`�4N�[[	dkoI�|�p�`BE�8�B�HJ&B�$LBT�,"���<$���ez8�ʨT�ɍ�3i�RX�,"�CD��B�׊�l�#�4#���B[1��Nff��h÷a��dK��}"�آd(�h@�Mk�*�Y��=]�0I4/�9�Q6K�g�R��B�n6��J����L��D����@:@8Y�����\\��R<R��$��~r�0Hn3@f�n'@
;D�Į��@$6�u^5�1�@`a#qL��(�D׆���P�<e%�e���I�z�J�qnv<Ë�$�4
!#���Ҋ/<�y��7�^==}Bʼn��@��(^{��`j�������[�CQ9�C����v��d�Р���IjԂ�DM��3"��P��ų��Yx�g}=		��1	=d��.��fB�B�%n���/�?8=>�R]��@) �u�0��2j��!�M�وS�^|II��+tp'bQ�?OWq
I&f��:@�nf���q�,<����0qY��{c	����V��י�o����kOf��G@'ֈ�|�%8��a3�DVz��H"��$���Q��y���ٽ{�'�{�o2?_$��a�ΩД��op)��(x]T���&ÑY�R�b��]c�	�щs
u��fR�����_��t�df6'@X��d��G�z @(*Yz�R�ൕ*
�.��2B7��T����J��w]Iy��Z覱��*�Ѻ�(�hq�%��t�}q���|sz�Ϋ�~�νw�����|��$�PO�4ƃA搦�2"!�����ߝ��ժ>cL�_a=�@0��jHD�u���gv�
�0.Yau|�ڝ��4�,�2��o��� ?�� 2�����o��C@ R} v�,��tH��c@"������n I�SN䑁�Pa�t
��H)��GƢ�3��Wv>�*���Öuuy�@���,j�%p��j����Z���s1;@�0x8
��Q�q���¶��MD5�_��p�ƞ�HEk@X��!�F@p�<�F��U�PX�M�!�D#)�Y������A�E_�ի��*8��PI6T�E���ɢ���<h�CgB�J|?��Fv�AS���:����n�ݾr"��*�"H@xl�/R��D0���I���P�"
���u���L(N��;�.���U�2STy��WC�Z�7�qmQ�4��H�\b4Y�),��Ds~�I+ݚ���e���c� <!X���_�Y)��E�*H���}!B^�p`s*�"b��@��ޜE�D�8�-���U��AJ�zdg�ֈ<Z��A��`B���E Fe݁XвYw���i4bp�`����I@ʈY�(�Yr[9���H��J@�cy���BH��HD%��h���;±d]�xΣd�n�<R�!aU���a�i�B�k��{�势�Xr8��a�����l0� B1�O���߅������翔*�,�q �+~A�� �8�A�N@h�`J¡-b�m��v��b���B�@�L|:S-���҄K���JH�iS
�	�ּ X���Oz�/Y�r�����!��(�����*p��y����l� hX��� ū�$�F��HrM��:�pP�"�9��O}[��L�Nӕ=p��SU]������0YI��4W��j����g�,Tt~�:�V_�+%����.K�����\/E�RV4";0��9����˴�{�&�T�{�7�k�8񈠕b��1�CF8���G�f���?w�p]�ш/����K�;򱓰)QUmtk�ts�%�YQ�P��vw��E-td�bdD���P��V�E�g\�8�K5��Y�Z���)<���Zۋ�G�҃�zQ�9�YR�b_@`�f6"`%�]Cbx=��7(Vs�r��G����*ˁ]���K����g��˱������kFi(�e�1H��ՈGk��j� i' OF"b���`A�Z���"���a?3���X9j�hw!f1΁��<bY�A�$�?DB�	% �PAa�wF �3��|	��c*�k�4�! �7$O�g\���Q��n�`��Dfs9��_Rz ��wO��@Td��-�=3H��A����p��ZU���>�+,b16� ��}��JIxd���pH"1L@��d�e<\ьf_�.
;J��1g���!�6��Ag����u�D��H�]�N� �u��H�����6'���GH�ۈT�@�x�! 
H�@�_|S��j��s��~2�`�����C��gc��]\�F��IϮ*{v�7������*�H^�Pp��1�����lfD�/�磥ER+��d��r᪁�OO�s����G��Xѧ{<u�u��M�@"dy�B��U�@� !h�@"*���5�D���yqxv
8f'Ӫ�*��I*�_�-\	I�����-�Ѯ�ТV"D�}5����f���h�F��&�xpM�j]�Q����W�CD��]b���z
�<��=�0gxc�_�!��l�Sz�3 ~��y�Ǽo
�ڀX�M���y	���Jr"�▼�8[�O�=�ȁ�8d�NC�NR�ƾ�@@�)�<C1"��!@h$ᐭ��=/��!:kN��D>�9X��������`k(��4Tg��	L�ck"a���n�01G��p�Atw���z#aŐn7�w 0���	 nD��jdO#A�q�9J�di@��5M��;�>3?�H+��l���Q���8��}Jx����Q�A*�֤]�z�eB�����-!y��\,;q��~�t�4rR���8V�ո�^a���JC�)��1�R��—��p�C��v���C�ikh�������+�ҴKh����/z�A.����$*
P�X�F\b�� ��P8�� ��� �
ui����E{�����q<�J�����<��$�V_�@,����	U8���D$�&��8)Z�Ѝ���,�<+�wG]x�AH(��Fj�w-�G<i�Q4���,2�8^�A�&�����\�()V�i����9H�@��zt�e�,B5�`�O#�%��\TQO@$@��&���±\9�S��,|.���Ç��7%Á��("�o᤽9s҄e@r&�hl��A�����t0�D�fÌo3=<�P��>�A�U�(��G	�a��πx�k��#����àz(��	 J�A��d��أ����W��WFDk��lą!���>�һI�`�*,��o�l΃Aa��g>IK�ˋ��U��K�qu9��<�~��g����܍����8�6��!�9���$��k.0A��F�D��9$��s ��^�]y7��\�����M��|"�B��#������&(�t��E�
$��Nڏuؒ��4�l6���v���ˇULi9M?k+���e��� �.��d�T�C&Iy$�@r�H���{[��]�)���x����@(j��B�b���ֈ�	"\�f�,�]�D�ك���bq��R2(��5����d^J��:ϖ�9QI'��p�Z�	} ��w��]8$$	I�(X�Mՙl��O��E��Ϣ�S����-1� aI�t3(�)z��1��=k�ZD#�Ȋ�9��p	q�B���7���◀�*M����q�����{h��b���/�þB͘�p��4��9��Akz��?��R��Y�X� #6���sw�OL)��+��*q����Z6�M �H�$�CMv뮀H�X|ͽO�О�H���&զYD�"	A(n	3�"��C��:�՛4e{@r"�|���ݾv�\��4�d‡�d�g��q��rȻ�n�����#�-wk��Z+�+���]0 �@D���2�N���\S;I�+L���|$���qi9�(�&�[���_��]�oi"���c�
�6Id0������V'{���ߔ������1�a-���+pͫ6<2 l�@@(�ڹmB�kv�_��iiZ�GV}n���wƤt ��ͲvD�xaH��	}����>홞��C�aLBp�xq
���uXdh�=�,�q�l�	@��
Za�w8�=e��<�G2X��)�M�z[�vM\E�A?�1u S�(�^���њ�
D@Ĭ�\Y��|h >�_���) 	H�J$����k����G=���#i����y
��P	z!��#��ӵ
�d�rҰH�%V��}��6��r:��E�n����/�L�Hz���r7�!��NLP�8Ce���!�@�J�X��#
�Hl�U"X��[c0��
��0H�WPm�*���ՃTm�&j�"����'�wί������fgfe]iw������.��1@&|5`�9���!��9���3��񖗗��x��o���"c�!:E髭�G ѥA('4��ED�r���_��9���a��$��Cd@�ʿ�BL^��&�ZͿj6ZQK(�$ �8b`xDۭ��7//���յ�@咇�Q@(�P����@Pt��h��� �~��a}�ы=H8��=.Ύ�5ټ��mۗ�$B��!q`�R�K��/m�;@VN�؈��H(�D<8x���[]9�O__@٤GG"��hJ�H�d_ךp�d�2<��?�dR���p��������,y�zN"�S�R;�����捙	�d�jE�x�2g5������+��t0�]=��rՓIM����$���F!KHz
$��*���jR�'�pFLb�@��M�@;����aa88E��)N���Y�
 �hd��j6&�L�G�k��M�A)�d?z����@�
�9א���5��0� `L$�ȀCG����$b��C��o�z:ټ�:����C�.D�H��
q #��[��=l{8,u����o_�Hd>�_ϯ�z���um@�cRO}�g:U&Ie8�O�1\O��>��?j͢ ��hs�Л�@8�0:�b�+�!i6	�=7�<""ъ��$�� \ِ" ;��Ҋe�ͅn���C@����J>�㊉���X���%�B#�����M��7��_�i�Ԟ@�K9�4��H}G	"��c' �H�Դ2 ��%�sG|��q_�v��um�g����A��
�*�\�	dHH��W:�$ !>������u���HdiD<lM�
l��:��uU	�V
:���Z�WH#9D
Tm�� ,@.���w����W��F��.�b h�*�12��c��:'NmtI!�P�5$Y�e����|�g��P �v��F�|2?�܀$Z�H&	A�<T�$��
 If�Y�"k��q���O���B����n.��F@LtY�1�����:K"lC@b�Ф��� ���j�0*N�����=d'ʍ�wd8�#����w$�-�_&&�N1$Z��I���Hh�v�ǀ���_�A�/_����rX�CI$*�z���K j�CJ
<�8�2	(XHF����o����뜚y�@�4I��?!C�Fu$U����l]j�$��+T���_���v-��[�__�+}�i���ۆ�^	&(A��j/&UWi‚A��X�dRR�@�K(�[��[P|������!�8������m��2�(lI�1���h6dF@ b@�gx�hM�Ǭ3;L�
�c@@qB��N�H;�ҍ�&I�>

C
��~�+�C��;ɜ��!��d9=��!7�2p�z�?�y�(T���"�Di�"CH�X����?�:*zkr�tz3��&w!���)��1��@7�!錜g�H�7����j�0�j�{���)�K\�K�5�G͒��H��GeJC�."m�gA�NR/ �?�Ix���p�c��Hc�h[�L�6Yp�k!(�C��	��tlɥ4H�`H-i$�a7����?��}�n��qF�S��2˥��6�&6)���$�֍!����= �E��+�z��{�;�灻�nP�m��Ѧ��ʹ1 *6Q��<Vv
��5�A"}Q��9�a:�x� ���}nu�u@���U3�XϴM�H��d^a1c6�{�����+"E� �DJ 3xM,�V[��vg���kx`��V���DHT�ᰮ;?��Kѥ-�ӭQF�3��Z����Y�28L�f�Dt�J�����I5IW{W���W�fL���_,��aʸ�L�̮b���]<��ƹ�k�YK9$PdQҢ����
$�J}�$��~��<ŷ�kR5a�h6�	�P�hdUɤ�^t���қl��o�/�L8�Y�_y�2�|2�v<{�|���r�ra�_,Vn�d�;Yb�Au5�
S��0�%)]S�����<h�
v�!O�<!nyT��%�~IӫEFd=�����}ҹj����K�Y����/²���`�۵1�h���$"��PYY���	�AƇk�vH���|�ǣ��:��F�}�@6ȉl7�`�1S0�az�پ�]^�sFΣ������aKH�Q�
T��wH�ўY=��mk��0 ��E�q�*n�d�.Yd^���H~�� J
9��T&�Ti�5z�x\�m(��]��	���
W���0��cN!T��S3j�$�O=jA��I!�,W���.�~���Q��j��:�-�XĨ�>�y�@�6�E�)!�t��kw���xa ̨�5@<�K�1T6b�R�=IX
$u߭bD�� "rV��Mnqw��g�@0H�X��"4g%@�py�!} �y��@\�#���߅l�x�ocAS���b��W�U�ȳ`�,�$5)]]fw8���Y ��6������Y������:?��#�2JZ�,�Yu<�pH&߳J�7��@@�wm�HZR�ө�%&
���DK���0���#H���[x�#��eS5dI��4�b*3`�Z�N�l���
t��B=�o*G���AUF�#�'�Q���26s�����(�>�D�]&AĬ�؍1HFz�N��\��`�D"�)����w�6,֊�И�4m�]̖��R(��ʐf��
a����d�@��v�qhX�D�����&"$""m�H�۩�����#��Z�(55���WG""gs���D��Si�q���J���*�d�F��rHL�C�l��A%��@&��aD�ax���\���BS!�HC/ ""��PABAOM]��|{rEI1���A�^�椑{�Z�8�c��)�̒0��p�)7ի����HhH�P�����/�u��x6	%q��"��
�Mb��05��@�Gz~_,B�&��[qWY�oQ���G�q��h!o�����y�)�,d)�H�@�����K�x�N[؆B�7�f��4D�t;m!9R��b��ς8���I8[����rQ��^����8������I"��ި�G�xw�{D��!�;nr�<0�蘇����{���s�G��Z��'9�Q�)V.r��Am�}���j�ׁ8��gx��Q�\~�
'y�����(�wI#r ���?l�<"ݍ/m���O���+�q�_�.�@���pp9H���5d)�(��%�k����C�[E���^�O��C� ��C4ϤB�dُL��a�W��KI��-űG�빗ɉ�PZ�� ���4���ț�Ê��R�� �
T�H��,�Ԅ�~�_���S��E�0�o�H��yB!Yy���;�E�T���3h`��v�VJ-%�ئ�����g�2$�9���	PP�����~&��	*$T�++�8�ԤI����,LT���y��q��z�x��n�]��	@f]����I��wc�FR"ûXꚷsБ$�o*1��"G�ˈu�0A�H����$\�S��Y#��@^��H���@����)�(@^h �0�P_�&�\�V�{kI�U�w���X~��X^~�����JU�z�H�P�S�H���c��{�]�@>�s�,K[�R��6�M�l�_�`@`"�~хb�E0��Z�$^U-��0�xd�t�/"�I;^]!eN^�F �!�A�<�	k���;�Ɋc�V�!ڤ8 �@�ad�R_�
�H�;5A��
c�H`��E� ���[<�3�}��@�EJZs
a,�v�"�,�����VA��g�q1�s�j'R�BK��]5��)��"�P-�?��!�
�v+������C�EsGԍ
n��m)$���A>A���{>�S��ǵ?�yeߥ�ۤ>�@u@�V8��=�po���ї}�K�EU�6:�Tty�bʌ��@!�uFx��1�~�&"���F�@Q-���03�k@�)D�6�WB�L�Ȩq���S_e@pq�!]2�h��@��Ά$F}j
�ɉ͊wv��#	�-͈��G�-E��(*ITҤ�2N���"�V��H����#h
*�
3�A�e~EEE^e�@�*�G��]7���m!!R��H�u⺋v�<QPd;A�`&;Ҹ��"�H�4^��+�`�~2)�����	���:�%%�ipS��N��)�H��w�N(�5@���:�d
�F�D��"������>�C6�T-�NWI�	�9��sI���zF�z��WRg�S��K��"���JjDq(ȸ&R
�S�.l�4#~CQf]F}�7Q<��:��d�c��о�ښ��b3�d��(�׍�,2�n�<��)��T�+�~�=P4Dj�D�F"�>�������-���Uv�đde*n�s�x�V�nM��1��m��!3�rm��Ģ�n����$�Z(�i�r��:����j������b@.�1�>���E�u��CL|Ӫ���:8	R	A2ڵ�Mk9�������$ܞ���K&j�e�]w
]-6sE5D� жH��;�7�C("�h �7^�'�N- ���VShɄ&�yKt-!�0�Yj/n��帋�6�=Xb�|��i]C���#���!���:�T�CZ�^YMsߨ���o�~7����H�V���I�,	�k]�gb#��T~����A����k@�Z[�D\k��!�9I���z�!B�tT�A���4�A�b�j��l�n��@>�ܙAXQ�I��km�LV<�X���rG+�*G��:+��-BX��c�n�z'rW�t���+1����P�p��3�����H<IRLbޖ&0�A�jH
;$A�8�.	@(�8���B�P�O�6@�HC�]F���'����A��䈆x�������*1Ȃ8�0��)�J~0Vq�4��*�h=Y0��0/R+�[��ӽN�<#ç��0�8B�@ �i�6@�~rZ�ي5��*���ơzIs�p��A5gb�ae���'����@�3�4��ed��g���/�G$�3�l�rvmcyJ��$mh��eHn��w���D:�V@4�]b��0{
8Dz 	��Gt�BK�����؞F���!��]�\�!�,���z�&�?�
�k[�E�b��\`+F%�Y~��+��,���\�ҳ�?Bȣ�u�^y�j�V��0<Z�B�d�^���woz�&�
A�}�/s��P���͛,�bW�;����uFY0�=WO��5�@6 #J@’GV"��⼉G�ӭ��XͲ��D8+veGa��o�T�!�(Q(EN��Y!��Db�) j&��H�B[���L�^hEO�6k�ad1�B(t�@�<0a�UF��F�8P�RqD�ԊX��V+��)�ñr��5D�I8q��(�"�p�I,T�
�<�#�1Iݷ/��S�8Ƥ$8hU��pÂ�U	+�(J��V]U
��i;{D�l��2ϱja�\��I�9g-x_L��
�%D��8 X*ĸ�!+pP0�l�6U}��p%�,G��KL�c]5�eHG,iE�`�J`�H�!��0�*i����$`RS�(�0+
��݉�R�)Àxm�P̌�v�p�����~�F�s9 ��զ���a����.^JSA;Y�
����$@:	G��	C�d��H X��N��y�# 1��B.;�Ud��|Z�>�bocj�р�d÷X�8��d�)\;�����@8J�/(��*�G���)f�u{Q�r/� ��!F\�L�Ail�@yn�NnҬ�Z�i����{�!_!@�yN���Ȁ�y�EV}�$��M�O��kS��GR5$��dg62�4'�Շ]�mG���YS"S����WWW?���5�<����M/�G���'o~ȍ��Lb����/�<���q���I���2^�X��a�[
�]껟����nG���Y�xtH�j���-n��'b��y[N�s.�1���F�Gj~>d"5OmB�i*�T��?Iô?��jD�s�~wuq~~�����"���@��Z���B�'I��I0�$��"��$@z9՗å��D�bZ>
�s`�
}T�xbEX�Av/�|u@���U b>)�,�ul&�!��U_�Mbh2 ~l6Y5����Ⱥ��D��Y�t폞�&���F�9̙R2�D�N6Y�SE���L��ɂ6/W���%�URg���ӧ�<�-�>�[���NoI����|/�_+�c5o�4gf�`���X�?׋��'�0)s�o�Em��
z�(��&���̙�$QS��ܳL3!.^��y��@~J&' S7��
"�B�R����h�WV;���~i���4��&�Sk��{�15�u-�z�t.ڷk�ա(��xM�d,��Q!�+4k�,
�K5��;Gޙ��E E�J���AxQ�����G��c��cJ�q���踻{p�]�o�"�e��BIEND�B`�themes/bitono/v1.0.0/theme.php000064400000001756151213255560011776 0ustar00<?php
if ( ! defined( 'ABSPATH' ) ) {
    die( 'No direct access.' );
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Bitono extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'bitono';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct( $this->id, $this->version );
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style( 
            "metaslider_{$this->id}_theme_styles", 
            METASLIDER_THEMES_URL. "{$this->id}/v{$this->version}/style.css", 
            array( 'metaslider-public' ), 
            $this->version 
        );
    }
}

if ( ! isset( MetaSlider_Theme_Base::$themes['bitono'] ) ) {
    new MetaSlider_Theme_Bitono();
}
themes/bitono/v1.0.0/style.scss000064400000005042151213255560012210 0ustar00.metaslider.ms-theme-bitono {

	&:not(.has-carousel-mode) .flexslider {

		// Animation fade out
		.caption-wrap .caption,
		.youtube .play_button,
		.vjs-big-play-button {
			animation-name: bitono_fadeOut;
			animation-delay: 0.5s;
			animation-duration: 0.5s;
			animation-fill-mode: both;
		}

		// Animation fade in
		.flex-active-slide {

			.caption-wrap .caption,
			.youtube .play_button,
			.vjs-big-play-button {
				animation-name: bitono_fadeIn;
			}
		}
	}

	.flexslider {

		.caption-wrap {
			background:  linear-gradient(to bottom, rgba(0,0,0,0), #016fb9);
			opacity: 1;
			height: 100%;

			.caption {
				padding: 20px 70px;
				text-align: center;
				top: 50%;
				transform: translateY(-50%);
				position: absolute;
				width: 100%;
				text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
				box-sizing: border-box;

				p {
					margin: 0 0 15px;
				}
				
				a {
					color: #f3ea28;
					text-decoration: underline;

					&:hover,
					&:focus {
						color: #faf461;
						background: none;
					}
				}
			}
		}

		.flex-direction-nav li a {
			//opacity: 1;
			height: 38px;
			width: 38px;
			background-repeat: no-repeat;
			background-position: center;
			background-color:  #dd6923;
			background-size: 18px auto;
			box-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
			border-radius: 4px;
			
			&:focus {
				background-color: #dd6923;
				outline: none;
			}

			&.flex-prev {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%23fff'/%3E%3C/svg%3E");
    			left: 20px;
			}

			&.flex-next {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%23fff'/%3E%3C/svg%3E");
    			right: 20px;
			}
		}

		.flex-control-nav {
			bottom: 20px;
	
			li a {
				box-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
				background: #dd6923;
				margin: 0 5px;
				border-radius: 2px;
				opacity: 0.8;

				&:hover,
				&:focus {
					opacity: 1;
				}

				&.flex-active {
					background: #fff;
				}
			}
		}
	}
}

@keyframes bitono_fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes bitono_fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}themes/bitono/v1.0.0/style.css000064400000006174151213255560012034 0ustar00.metaslider.ms-theme-bitono:not(.has-carousel-mode) .flexslider .caption-wrap .caption,.metaslider.ms-theme-bitono:not(.has-carousel-mode) .flexslider .youtube .play_button,.metaslider.ms-theme-bitono:not(.has-carousel-mode) .flexslider .vjs-big-play-button{animation-name:bitono_fadeOut;animation-delay:0.5s;animation-duration:0.5s;animation-fill-mode:both}.metaslider.ms-theme-bitono:not(.has-carousel-mode) .flexslider .flex-active-slide .caption-wrap .caption,.metaslider.ms-theme-bitono:not(.has-carousel-mode) .flexslider .flex-active-slide .youtube .play_button,.metaslider.ms-theme-bitono:not(.has-carousel-mode) .flexslider .flex-active-slide .vjs-big-play-button{animation-name:bitono_fadeIn}.metaslider.ms-theme-bitono .flexslider .caption-wrap{background:linear-gradient(to bottom, rgba(0,0,0,0), #016fb9);opacity:1;height:100%}.metaslider.ms-theme-bitono .flexslider .caption-wrap .caption{padding:20px 70px;text-align:center;top:50%;transform:translateY(-50%);position:absolute;width:100%;text-shadow:1px 1px 2px rgba(0,0,0,0.3);box-sizing:border-box}.metaslider.ms-theme-bitono .flexslider .caption-wrap .caption p{margin:0 0 15px}.metaslider.ms-theme-bitono .flexslider .caption-wrap .caption a{color:#f3ea28;text-decoration:underline}.metaslider.ms-theme-bitono .flexslider .caption-wrap .caption a:hover,.metaslider.ms-theme-bitono .flexslider .caption-wrap .caption a:focus{color:#faf461;background:none}.metaslider.ms-theme-bitono .flexslider .flex-direction-nav li a{height:38px;width:38px;background-repeat:no-repeat;background-position:center;background-color:#dd6923;background-size:18px auto;box-shadow:1px 1px 2px rgba(0,0,0,0.3) !important;border-radius:4px}.metaslider.ms-theme-bitono .flexslider .flex-direction-nav li a:focus{background-color:#dd6923;outline:none}.metaslider.ms-theme-bitono .flexslider .flex-direction-nav li a.flex-prev{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%23fff'/%3E%3C/svg%3E");left:20px}.metaslider.ms-theme-bitono .flexslider .flex-direction-nav li a.flex-next{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%23fff'/%3E%3C/svg%3E");right:20px}.metaslider.ms-theme-bitono .flexslider .flex-control-nav{bottom:20px}.metaslider.ms-theme-bitono .flexslider .flex-control-nav li a{box-shadow:1px 1px 2px rgba(0,0,0,0.3) !important;background:#dd6923;margin:0 5px;border-radius:2px;opacity:0.8}.metaslider.ms-theme-bitono .flexslider .flex-control-nav li a:hover,.metaslider.ms-theme-bitono .flexslider .flex-control-nav li a:focus{opacity:1}.metaslider.ms-theme-bitono .flexslider .flex-control-nav li a.flex-active{background:#fff}@keyframes bitono_fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes bitono_fadeOut{0%{opacity:1}100%{opacity:0}}
themes/bitono/changelog.php000064400000000115151213255570011766 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/architekt/screenshot.png000064400000142274151213255570012712 0ustar00�PNG


IHDR��� ~PLTE�����������������������������������������ݾ�����������������������׻�ʹ��
������*#����������Ƚ��>5*2522+ 
>A<8;7���$��������������71&��յ������źѺ���ٺ��|fX��x��Ɨ�vVE9���,/*վ���Ɖtg��˗}n���϶�((!��è���oa����Ȼ����gVJ���F4$���vbU|lb���_J;���>-��~�µ�����~S?1������Ǯ�B;1��ŃjZ˲��������������zm����������˿���_PDKLG���VKA�t�xoK@6��������fPAnYK�qh������cc`�İ���·����J:.���������ȷ����\^[��|������5%���yWs]Ovh^���VXT||z"��������z�sQ���k]S���ų�������vg������vxv������prq���ξ����������ǿ���q~wq����~w��������d�þoniDFB�����ϩ���lI����~]������nbYOQO1:=(13giiLF<����ſ���wrk������aZR^C1�����ːeD��ڎ��mhapTB|_L���^UL���&,+�|b�v\���Ĩ�VQI�q^��ԇ^?�dNzYCQ8'��r�oS��g�jR��{iK5}��
���6BG��p?KR���v��JV^ivS`h���Ǡ�^jqzS5���⸢)OfѬ�P�wIDATx���m�0�+
}�������`gh��.+_��
5�Ɏ90}9��˩S�N�:u��a�"��
���]�O�3�-ھ����ʨ���K�\W��"U��m �3=YRڴ
��H8$��G?{o���H[w8��&���a��F����=O��c�!�dA�ēV�BM��*�T"^X�w��j����ЖC^)e�"d>ѱn���""6RG{)�F �B��
 ��$ZA�K��Jr'"�k��y ���b Z1 ��a9��ԝK�c��Wٺ��F�̕)l5eU�[D�@p�����b8����y����2��Y۫�����P_�Z	a�h��]�؃�x�*e�����:����0ܜ�,��=�h�Җ5�ߧ	��G��HŸ�s��bz�/�A26���%,�l�U���g��i��!s"�"B�cs���1*WI\�MD��e$J�H.9�O{2&r��~)_�!"&��9
'�W\�}� ���ja߷�v�7��k���QB(.ߓ+����?U���]��rH�	k��D&-�~�; _��K�`�I�˚��`�i0�e��a�����S��2�=9Art٥�%9Zwh됖���K�a�0�RV;vړ7}]�u��zйoc������>��Bя��PGc�F�EZ����N�b�j/WA���Q�dYW���^}	��/Xx�W\R+m{w�[�h�nƓy�q� ���ň �!\v]f�u�����B< ��--D��I��,��ޝΧ;���Z���x�n�=�+�Sg��$=�@��%Gݕ�Jw؉�	��Y��1�/���nRsH���T6k��a;�� n6�,ay{p���[.��ڼ\p��*�&����&�����#�������'�y S#�Y�� �����>P����7	�^ [$Y]��6"�c}r��v�C\6�$�=�F����qa�V@�WØ��E��hw�[
y#KD�2�h�����X�3灰�M��-B^c���"lYUt�ZTm-����h5DŽ,6��U�“�d���*`�AfF�Qr-�"�:X\/0�9�l�@�����Ѧ@�K����]j��d:���7���R�3�2\G0a�$��
n���['~,B@h€�2�"�%��P�6�բ�4Co)[����(���r<���! n���/|�ˆC�8�/s8�O��%�-�]���sغ�֏����3��(n:0T]�Ge�+?9uc#+0�F<DG#%�D+��q��0ߨ�N�1H�Buvv����N�٬T*����^y���$�(u᎛�&]�g9y�`����@���$����:)�h��$,T�nD��Ԋ2��h�����z��e�O�+PFd�^��u��2���1�]�W����	Dl*%I�J��Q5��p�0�Df���Tu'�˵
����T�rac���"ס0\�2B\⼸�;�3��V��_D�yev&�����1�<����:hg��V��z��0�p������,C�	/�qަ�����ۄ,��O�KZ�A�x1|'j���Y,&6U�� *�<�"�C�Ϋd�����5���`|�	>�Iz	N�yU^�v����Xt*<�L5�xPL2�9�)�׭��^��8��I��/�Da�AX���vWߢ�����{��S{=���m��#gf2Z��W�ԧ//�_9���`��{8�i3U�w��������D��Bx�}'g46=� �H�;*���ܛ���`����0��\����ƒ(c"	!�?����Kӑ�N
Iӱ���
R,�
��Zc�:��¹�&��3��0���'�=�Ɵ_J��y?<���<��I�d0],�W,x p��<�UV�ו��p����Î��8�M��+�0k��(8.���,ƒ��B'N��S���߻=�
�����Y���(��y�O�c��7�A-����W�
N�ym�se�z�BK���]��?V�!Eu����p��_�8�#��l��f�7��Z�O���@N�z-�
�_r$���N,�.h<�O���,M��S�UVX�4M ����\PT�I����̕��u^�Sn_��G��K./$HV��VtsWƝ�Ve���vI$eQ�Sa��l:o<�]����K������g�A׉�}���=B�g�p.tY\�nn�Z<}M�:r����#�4�a�>)Mg3��n:*���+@�p9i��,n��H�/��p�G=�w1����a�5����0ѫ���J��/�=�L�4J��t>�F��8��R�g,�oI9��۫����}O����)h�b���X
vgE ��xĶ�K�H��d�	j��N����j8��/���o ΄5M����T���:��YYQ�2[�L��(���lU�Vl��0^��/��dGm��ۓ�Dx���8�
��bu
�/(W���X��|:���C^�|�F=-�
dUJ�_L�HNRhYP�5��}���A.�/�/$��px`�㉜3ڍk��:jS���?�l$hf#4"�`"_�����C�`�6��Ӎj�'��B�%YÕظo���!���b_ꕶ�M
O̼Zj;4��b��-Y��r�÷��/܂>�ԅ!��5���sl9]z�<s��(t�p�X�N��M�M�0�X&_����w���՟����Y���e�.2��m����eD�R��A{r����J�}���.
�G΍I٬qy+�BΝ[i�
9U�������FV�3R\��-"ʯ釹ȋ��C{g�t\��O
L�.�{5�.�5޾mϧF������6ej̓��2��\ � ^��ߗ��|=
L2mKt�
���
|��k\q�`��]]���MS4�a�ӑMXyܺ%O�_�G��~�٫f���]Nt��)V�����tB<�ڸ����`���B�ȏ����(��0��&t�9B"��ܪ�'�\��~�_�++�'-���(g��,���풢��<���B��P�A��G�6�w��h��n哑l����{Di�kf��u�
�3��G�����\%#�l=��[9���(
�;�Q??�%A�4�������2�a�MA�U�ge�U��áxaTI�:��֯lD+	�铹�������ّx%'�é��s�_��E��	d��,�	�4�ۺުX�qڐD\�8������p��*�s+Ѡ�9�D�5ڑ�����R�՗/��q$���3e]�G7�B�b����r�^��l"�p��g��`��#��C��'����_d8ݲ�<��)>�Uɓ����Z�
l�#:�R��`�G��ibsLH2�����j���Z���rE�o���n�󒠧��b�q/v���-5���[2�BJ]��H ��O�\�Z	v0��p#�!�:�Ð��*bE�
�Z�EIܡv��5UyM�<����US'ý���Ffggf�D�D�m�#�onl��{qf~����s�o/���B��G^�>��2��q
�E��8A(��vS�f�u�
-���(�M�։�:7�۔Fc[�:��h����*�Q�kA�A�P�t����94�)��t��yJ_p��D��=��=�����y~�sϕ��F1�I�7���f��c$�� �#���/��qfсR)�r
ލJ�+������E��p����_	��V��adSܗ�A�(Y������9��S����պ��A�[�Z����NIOɁ�۬���ӧ��T}����NߌB0��3�p�f�1�����"?�����C z�9�Z_M�)D���LHtI���O5�D��z6�by�֪a�n6�b�u�>q�E�Is�]6��ABDA�a����ȁ��N�kh�NO�b�\Lϊ��{K+���dFNOϝW��?�Ęot:Z�����)@^[�������㑪HGM��?N$�N�]T[0L�3��K�ANS׋�Ln���6�t�;�bRc�]��m���?[I�A
�)L��^Nf�x�^��܌MjsZ��9-��f�7�n�w�lA�
�s�!ǯI����m�BV;��p���b�Y{�W�tw�8Y���Hϊk斔K����c.#����W�,J�Sz�Z��^�?CT�$�|�� �k�������d�qp�1E�{����e<�Ovh��Xk3=.*vҔ�qH���^|�����$+�B�EϫxV����AlH�Z���p���z�iT���m�Ȋ���ڬ�"q���FVbPvYm���r��K���?i�Y��j���ٓ=+r�KPt����9���D�q�g�I�_%a�JQ��ڌ� ��P���.�Ϊq(5B�\.�f�)Y9�YW')�)�Y�i�ɅɅ��s
���F��0��qc$�
����/]�������'(W�t����
��
��$v�H6�
C6G� nl�����b��֣ 5Q������6WtBW�F/���.��587��//�^86¶S���:��75}�$^:���Wۃ�>��c��Z��ik?�_+�剂\w�J"R)����)��<���������Pm&���2:
�`����5
�rqeQFeJF�9=UVZ���.AaWaaaf�4�E�E�w�z�Z�$zVwn�_p��	���.
�@����*�]�٥x8!��l�}4(��cb��Zj�ZH���_5\A��ЍU�h�]�4��C�+������<>m��Y"qo��_��T����yK���GoH�V[jsDT�Z�(.�+5���ѽ���@g`�,X��!����AD<�7l��z���#�[8�Ct[���:�q�F�UR^|��{~��>����pAh�+A�.NK�t�0M&����׈�R<8U5�F
��
5�6V���J�A9���aa����9�.�9ezfȬCqŢ�ҡ�**�3n��Q���NAy��^�>�	Z�p�~飥U�))�yN�(�qe\��'�־��s�mX���7��_���"�����fdt�m�%�w� ���0La��5�l����m���ѻ_~��/q�y[ �Vra1f%��KM�<��dL ����QHK̗I�xV�`���o����vo�e�	o�Q�*$���08�~k]7�s�@�"}W�ի�Z���q��'''�ܙ��wj�H����&ӿL�IK��$�RK���P��V�U"��
y\�o�Xv�jpl߾�lMYYٚ5�ׯ߰a��Wn}p%e�f(��՛V�o�jں�S�ɄPO^+�'Ss7F�S��v@��?>v�WO��;-Ix,���,AN��ꝿ�M�L3�邼JT7�5�1�:hǀ)�HM����0��n��B��<��	�5��x��0�.%/�C^'�X8Ϊ+���2D���猃�B�/��AV�Xc��~ч\z{5�c��J��8��k�b9�B(�
q\��?�h�X~��oN=|��`gY�Ν$Z�KĘ#�Y�f��5�������
L��J��z�Y(c��>�xY�Sw�裏=�v���K�1�i�$E�,3��)�L$#埽�,�k�6��ԏp���4 ���yiТ�H�_��^c�p]�	�|tL Lk"`unMݘ��!�8��o�i`4����aT�׫T(��h����������Sit�<F�N��!���-J�F��(��P�j���|�DCC��>%��8z��0��ee�!ؖ��֢E�~�i�6�xQq�E"����6lxn�-���
��s�-�������G�Ep�Q�'��|���҆.BL�Vz���2''�ngee�d���ΧG��()d��`J�"�wG�P��jQ���Զ)�;�*Fͦ��Ŝ��4\m6� �,���dR!��c3:<*��@��`��C(����Ux]-���Uϱ�p,KkX��Z1�w�TH�V��[�J�W�h����(�|{��dUá��U�&'7nڴ�g��~;)���^�$R��NH��2@��4�1z  IŰ�[ZZ���r'����"�f�jNFs���99���AD��� �2�)�T  rCt�����d,	�҈� vuQ�	(��y�WG���X��]��\H�ۼ~ƣ���GƄ�A�%R��#(o���Ƙ��꼼~�G���L�����u�6f�P�UaS^�Ы�'Xȱ��:t�C
U��y�gW�q��,�޺��xn���Ѕ�S(�"5��GW�n1e{�l���K�z����h��+�,��S���Q�������B�Qi��E���FKa19=��D�J�RI����{1�%���^�p�Ρ�y�@�	�A���H����,�?_P�o�Ρ
�$ovz8����˷�˃����]��B���N�����4TUU\���w�7^�Ͽܰ�<KZ�v-�,۴lx�ƍ�+�Umܸ쭷�����z���%K��ްN�&�V�9���9/:
���8t#��o�+
**�p��X�@��Yu1��2���� �\�H{�
.g�vu]��լ8�2�u�3bhIu��&�z;++;;;+[@�dgߙ�%p�� 'w�\�4��]��m/��l��L`W��u���&��TU����*�Ȍp�,�^7ZUQQ�0�o_�!��7�@
��?|�	�t�:��1h�����S،��e��@�Ic�i�x����?��s�DϜY�oF/rA��R�R��LwQw���2��{��6�4J���߮��g�3�p���[�C	clk��޽[��>8�*"z��b-�p{�I�{��W�Bx�6Û���NL?>Q���U
yyՍM�&{��&��7^_����#C�	�6-�}m���5@�D�	�p5�m�pM��_k�[����䚒�s��1G0�ߔ[��{�,rIL�3i+V BH`E���!�N��?����獍퉃�U��(`d��>
�v������qs���mZ�A�Wm��+ELJ�������v÷�:��99C-���@���u;�uBBg'�(�硸 ?}r��ľɉ���Ӫ򚈷d1$�&i���*�^�z��U�]nȫ�
SU������<�m.���o���(Ϳ2���J���|\E�(�^J�b\q�(3�N�	qn�ws�y��%�\z	 v|�W  ��Ks�^ƴ�d!�M"�
z��,U���n�O�oA�^���Z���q���v� !@�gBx��9����ٹe�:S}s������Sb;��>�o��oNT�U�!��[��Nh6�:�?z��C�w�w���ޏ3b�j;OF��f��#>AI�B0�9��d�U	`����Ӎ����3=���k0�J�3�$ȄϽ4.R\��E]`��	ͮ��o�XX�����l�x��������}����k@���C��@���H�-;ֽ�A��l�tt�'�曟;199Q5yxg��x�o�ā+'�rV&B'&�6/ٹ���g?}_�`?�$[<EO��0�Ն6:����4RĬ���*b�W���%�K��-�[����|�5q�N����I��#��MN,�H�h&���W���}LW�"s��vO�ԳҠA���3���C>�mI���K�^�J
z�������l6׎�o�5���Ҽ�8��r�<�rbZأV
!h�$c�clnK��%lݺ�l����m7wN�jpwˬ��ED]�
&�A5��åC����%��Q���~����_�7<�����~��� �c!w�?���;�ܼ��k�����+I�w�K�dz��k����K� ���3��\���o�^U93M6U!C �����f���YWW����'��
��Iv��t2�h'��XW���[�`bxa�mB�1!]QF;���}���-���q�ywC?.��1]�i�w�4���4����i�����f��]���=����#Z�'r��D"�}�]`�F���
�j��.pb��䈋�	���/~���y���~��Wo��&%��
�ɐg8]Ooɂ� �dF�}���~���o�����VSIςu[�YO� S���gq+c!��r��~l�0��	�*"W=�K�;���m����(ޙ��B�z'H>Fx��v�kߎ���

;J��m.L+�k�\���xc��=��������UR_�iz~-�q�N���a�Jbf&2����
���.���l<��z�m���wȋ�`r���~��k����L��g��(�zj������Q����o<q筷�>P9�nF%�Ylj��S��O���+2��c���0Hf%d* d���+/-���X�(qH��g�^���"�p��H�dpjy-��r�
3��KX�!l��ȅ�7K�������u�O����~���h�.]�z{����A�@4Z-�%��N��������ӳ�=]+��NY5=`kG�j���;��歿޺��o>]w�ƶ�4??�9�dO��
S��S&���"s���/\��[o�z
[zD��1_��>":!!q:ý�,`��8
��Đ�<Y� ��+���B/߽�|�,\o.��b�G�3���GY���L\��:��B�%Wf���d�9Jə�f1\��$.۹��k����]շ83mp��1�xal|�qk5%�e2X�=�V��ဿ?"�D{����ҟ3�ap��­��^��͛_���ǫ�U��Cc㤉"��Q�ga#��[��V��0��_�ȋ/���[�N�67<��&�l����Z|�=�q�q$Y�I���b�sPk�!���y�Q�U�kfIL�;T�IQM2y���hA	1�W^yE":�'�`>ғ�:�mv���:NY�c�\8��φ���Ypg
;��.WW
�q�gm�����&�=�|�uq��v�w+7�֦r�@�|m9	 qOd*J$�{,�;:ܧ��~�,�s\��n�|�5T�o����3�.��j��KF�ax�d:�х��7j��~j�'?~��ׯ���[*�1��nb"�H�c@����sy������Y�j����7�&�����VȀ��p(�ڡ��(�H~�A"*C�8O��X��
��Ag�<��*p�u>�^�f�y�&������"� �x4xe��c]<WsU�UWO��]=�x�z����z�ؚj�z��VCB��2.�|myCN�F��@���w;,$O�5�"{r-�wo����~��i����ձ�W���yn�#:w�h�F�`dA���ܹs���w��Q���6`DD֮�Ѩ���X�]~?~M?W�$ED��"�"@v��oiF ���W�3.+�"<���T��Eo�c�(�
�P/�I}��Й0����tY��W!�����7t$����
�0h�Y�*Z.�-�T��Z�#����UjEa���6�>n@F9�M̈́u���ѧ�7�C�'������*#�5�>Ge�-�B�߂���<��cM�Ӌ���=�A�����xl�C�����_��t��;/�t��֤QnB��"�n%�ڌ˯���0ϩC�ĕ��HC�)8>ܙ�瓺1OC
��@�ڮ1�E�-o���<�+h�nQ�g�{}���Ix�"��ebt��!\ ܷx���d��2]F�0�oeE�s����S�=k�ij��"��i�j�=���t%ý���
��Pj&�y@��[�D$^`F9Q[�:
,<ȳ��5]�䅿�s��g�}�XY�D�fU.��8;��N
�ɭ������j�ק2$���^�s�%���ǧӑ�۰
��H�Ke�9�
VoMlj����C_��TۥjZ�2�*Z�W!Np(�
���8.6���|Cio�
�C�#�+IX �!�$���!O�E&E��1	3��5����,������������Ś�נ[CJ%h�	�<��
O(�J]YM�"��n�I��"�π)<�HX���,��G��|෿��͛pXo���esK�H��Σ��ݛ�8����D�S����[�w��Ǖ-'?s��k/]�������cu��n;y��XU
f,��M6i;��x<��1�B�Y�0��+P����7��/R�p��x^	�6f�`{�o|v� qǨC}<�4�2-�k���U���'��,�e�.g'���S�$	����bOR�T�ܛL^�kvZ�۪^Fz�47]�e5�+�5hp덆���dar�:���d�θ
�^w��Z��;D=�@"�`(�['�xcc���	�=\�_n�<��ɍ���?{�Y��gqh��lV�ln��[�tj��|���]�$�Kw^l]�"�?��H��].�F���mX� \F��T�MS"�11���r��$��F?����Ѥ?&G�i�F���<��@��i�W_(�J$"�>�(tr&��=º]A)���G��q1GQro!���S���.p�� g��p��-��E���܄K+�Ͷ�	䑋�����DBS��H�x}ä/޽���[����d��jX�ױ�80@s�T�[(�^Yމ�홾�����o8p����O<q�������?�'���O}����?������9�~�3<���Ȥ�k�ݽ��G�>��N!g�l-B�ҀO�$�p�������z�b&\�Bq9�Ԉ��
�Ұ��)ԕ�
��B]/ �R�2@���~5�y�@���YQ/+ʌ����Z�BD���Er��DB�,H +s�� �b�T���f�L:���5ͭKs��\�U[=���`��0������I��x�[�cB��+����v'�g"�����Y��f{on[�^����������������~�y��'>��{��>���}������>F0��կ��'_����я>��C���g/^��ܩgO9��q����@�<�#)F{K*1$f!���y�/��pAK�Q>���G��
h4�X[ �x8�qW���L��]	)NjhX�Xt�~�+�Eˎ�L� ��^�t�#_l��	��đQ����g��K
v8j����V�/����M�<S&2O��f=�����-S1L$A��)��|}y&Z�Y �a/�A��\���[Y�1B1}ѕ����9"p��ons��7�~�s�����}���c}�Ɲ�Hu��I��`.@*�J 0;Y R*���q=���S��TW �,�h�����pYb���R!�g�晪	^B2M&��
�;��L��F��I!�kdvz^z�©�~��u������S1���}H'��E�������9LH�&����=QDq�D �����!��rj�8'�.$�����<�I05��A���:��>:��\QI��S�-�$�^򁰠�
�|?@V��<uK��(�,��)��%�Ņ'�:��^TXG w�U|J�  Q�JG
�݆�)F�qꐄ'e�h��}*
�|��J&5^lz���������ڹ<X����ÇOu\=|�ȉ�Nv��IxXTCk&�ڝ������M���jo�8�GvjR>�.7
�7¦�+�P&y����	�ۑ+��@l$,���aŬ�\�}c�i��}@���H�ȵ���_���{<����'��:�4�85F���(u*5�$��N�xL��^aL���W��B
�>>=���td
J�ֶ┸@T��Z�*žk�p���8�v�!�	�-�a@5g��%.��24t���Q���G;�['E����چZ���a�u����j���fx�D�|3��'��B�Y�D��Px�%��E#��*��5�m�N�5��Q�{:.�'���)�M��d��;.�g[����qR�]RZ		��x!�8!0	�J�5<��@CD8�Ɯ�JA�Ԡ��kk,���
�����:��!yc�"�,�yTI��b�9�t�4jH���9K{J��I�0�G[��Ґ&OE1D���Ƽ����\��?�� �RL���3��{@�I� S3�[غ7��>R��1e�wXm�$�DMT�=P�
�{�U�#W�w8{�s�'_��,�=$з��R�B�$�WJ �c���+��E���'1�@�?�s9(��j}}������*�Dȓ2�H{52��L��N��(X�@
�&U���pV�i��A�����KpQ��c��iM��ŅZ[�|s�tSYs����pؔ�V�*�X�4��33��{@�q����t�)K,���E�ѧ �Z�_���׏�j%�,X������������A��I�R"B�����x`d�p	C�ⅸǵ1'�dI
@J8�����G���u2���BJ��K�f��a��9r�\l�M�jX@�s��O#��O��?@$�!dF�f �h.S�����ƚ������A�,
�l�
$\�L%���w�˂ʡ�s)�)7-h�+Uf���A��a�U�ڀ���ݡt����{U9��[��"}�(0�ݽ{�
"���y������y�S!F��T)O��+�A�Q�ҳ���c�~p
���:����)0&z�#��xY��E\'��D4bJ'нB;�!��(�'.8/�����o�qK��� (�@8��ri2�ɋ�7����U�UV_85?W�����{^�&������\wyi��ڔ<ܠ�8�/��T>�����r���0����|�D����#ұ�D��\���_Y=�˭[���%{�^ �3z�!����a�y� ޸q��~]q��Yi�+�(�(8i\#�oP!��q��=����,��Q�Q�?�?��J%W�N����D�(����V��?˚�����1!����@��`��Hf��Q
q����"kɕ���ݧ�+��_�x��gvv$B�H(��Fד���MT�M�)/M/���#2و�ǧB7�
��z����B
'j������ޗ?
��>
���{<�_�:��cDO����cG�9QF��(i
�@PL�����H���0�|ʩ�<�V0H��aM�¦'7�ѿ���G��Y�yR�G�"G(!�.%�)1+Q7�;�eG�Yi�P���Y:
 
��%����8��:oUE���|멥F�X
���@�[�4�lNyR�����V0����-j^�6���w�}7��B�M.���~���pTd�h*p�	�;rt>�pggE'�W�q�����3Qg��+Aَ}��7P;A�@�+!����X���I@SP��$L/�����,�)�T#�'5�N/�BP���(al�L\V��m!��eMj�G,F-ˌ@������*9��Jr���(��U�<�f�W��ٺZ=56�v�a�B� ���+������d{�� �����q4{�>���;tn�#�.Y(�+�z�6��=e?dU��U6x�b�T��� `z���LNm�m�z���bE C��B)�c��J�>ȕ k�TF.”
�
?bH�NTBt@�\ڀE��ѵ���l��gV�It@�[�v%���\�uY<X�@�BB�TJ�
� jD@~
<�J�D1�0r�$�����n9X1WUݳ�������=n�#��������Z
���GHry9	 [7@\�GA\g�8�Dx��D^��y@Vn3��Ye���*�K�mnk.�[V����U3�Yu�5Hgss�G�+,����B
W�� N�>�>!-şR�����Eg��B�V�is���tB�,.����C�hh\W%".�> n����s� �RZ�
�iD!�D����n¶��:�~kW"<�yQru-��ZNE$�lP_����;�����c�1���e-ã�3�s-]�@l���~v@����6��[׺��V�Kr��b�QռH�46.���a�@��Dh�h',!�����I�=��"$@�|{�<M8�g��y%(�0��|H)�bK��44㲰�^���"���+)�ѡ!3�^<�CH�P�(�t��7��+*k&W*j�	��"������cp�L/�EK$c",���+�[�M�������[K��8�a�[;8�����s�dZֳ
�,�WY8�
b��X��%L�˔�pgmL�� \OAq�#��)!QJ���a�_�og�L$�u�S�U�kKS���w2��bD��א�V�x�i/�	��@�����Q�UT|�O	��<HF�"��ư���E=5�(��5��Z
=��?~��/�P4i*Z @���� ����+�)�}�����Ձ�Ȇ�.ĸ*�E��B
?���.��99���8�A����@C���*�--�Q}ff��&D �)�@4��%����A��  B�P���I%c���7b1�3&e?��^��a���r3��
Y1�\X�ao�7��5�YnI����.�h��@\b���i>	 
������񞚊���ӳ҅�յ&D�ɩ�h���^^x�c�&�yey��U�z�厀�b��GCC� D둌i��	LX1���~==���삫��sy{/p�HC)�YJ6��rH�����*�l��L���'�$��e�H}y���Fhk=���J'c�!,R'er����@����Q1��NG95��?�Gf(5+��D��(I�$�h���\1���8��&&V�+������-εw���:A���L$*��V���噤<D��B3���x���� X��	�3@�����N}>�!ȥ�+K��2x �����`0��jz-�!�S\"b�F�Ae�	�M�;�O��WW[[(���)���T*�^��1�V:���RB|�qY�Z�t�ӫ+�N*a j�j&ERl!.�-v�kB%f��Ͽr��+d�] |�����}b��H�{�,��5�у}8�������58;��]3�c���܍)�
 l{�)��|�u|��p�r z�l�]/�
��ao�=1���6L$�#9/�Ы{���"aj�RB��w��NAgP����Fɲ�d�j��'��U�d�(�x���^oX�L{��J$\X��t��4��Ր1��|R<���j0tC��[ZZ���t��(���h逆Z��:��qQ]".���!�.��]c�++cUd�[� ��zzfkڇ7�Hq�� �hl�0�֖�g-Kpc
@F�O�)��X �d)LB��cH��^\ܡ=�`�e?đ�KNxe��!�f��O�e8
�˖
(	�����d9K�A��B')�d��qQ4���@,���8��4*'�k�/��*�<�(2,D��/�v��%�DpMV�J���ͣ��um���
6y�PǑ��FU��G�k�;.��R����d;v&��.�\mj�<w���V��|��m�4uF��fқ�ȧB�g��Z^qx�(���6�����S��J�:~�T�<�B�Νˍ!���6�\�^����c/:��,�ʪH��fZ�H�
kz1�$G�ß�� ��&K�\*�+�$%�� b�!&L���)z���L!&�8DOXr�Ĭrҩ4�����L{xԓA��@<J�Ca"9�7hH ����@32��mL��wt���.ZG�����c��.�]Su�J��H�M��M�����J�"�>ۋ���'lxk�\�p�bښI �H�>c ���,o8�#�db�yh�;�>G8/_�^	�6�͋!��{�AOY��
���t;��|'��O&jd�ի{q�JB;��
	��;v�/���s�"Qߡ>�����4��V�Z%\��I�5��]�H��%OR ��j� ���D@^(���� �&;A!��vS#�Ř}�r�.�U�eq�\4��|�/l��V)����G[T��b�����-���%R���H5�bP$���P��y�3hDz5�&�4�ބ^�c*`7��9���H����@6�O����u ���C�����'v�xU�Ji��챃Ǟy��<�m?x�����9�5�+sm��j�ࢢ�b�b�U��U���[�ڰ�У�:�v�����=��:��\W�֌��湊���������=u{�-�d��z�A�3\y��R3ւِNZR�5�5��J 'J~.oq0�@x6��jۢ���K"��N��'wM���Fl�a���Cj;)��"i_��� �Z�1�������J#O�j/��(��H8�T���GE�!̤�@�)�'�
k���~5pUU�s6۸דL�3@�3kid���!�g��c�(�
�BTp��	�w2�o��kG���>��/~����F��|;2`
9��O?��<��g~��O�뙳������z��g<���u��c�<u����:z��3�|���G��#���N����u���Y�c7�Է.�==6�E��؃kl~����}��	4��j4t\Z��r3��^�X������<�at�G"ֈ_z��m��u~����.��d��Cf���("/��u���P~w�Ґ�dY��V+
 ��ڧ�:V) �E��"�M��CݣH��B@�vg���s��X��TC&«mU�+�^��Y�L�hf5�5����;���,v�J�"��՘F�>��#��CGN��?���.C��m O=�p�֊������ǎu�p��������G;�?zvn���;>����gp��Zi.k�k�m�mG����9?W77_W��y}y���ֹ����%�9XH���x�X��c�
k���7��H��'�HϠ�ab�q1����R6L��}f3�-א�⸆TUL��D��콘Y�[�TJ�C��S�v+�U 4,@\F� ��D~b!"�ϭ��8�<2���~4%���Ac�~U��V�W��)��0���Xg���3k[�˫I��C�J{r�j���W��, *U��#�?���>�q�c���~�����"9@�t�^8��=mmU�Ƕ@`�Cꊲ���>���ͨ\�5�U�m�Uu�V͕5/5?�TV�:hYj#��ǫ��UT�5�-�oe�t���'������b&%Pt2�ۭAh�!�P��%��8�E�b�LIf�]Z�/��Dq��O��br'T�=�r��
#u=3��P���94�O���@�����R�E��P�@g�_bq]���5��{a#uM�*�F��6?N��\`�L��B6é3��&�������L"2��{���O^:y���O>���:��>���u��1�a�"ltQ]Ƒ��ej$n���X纳�G���j[-��n�����Q�TӸ7�+m��đ8>8CU">��3�;�'�ݷ���|�翓�WgV>@:���*���_�J�F�v-K���Y9w��&��UE�˒Uy��%�K�U4K�5�q�8�����?]���<���O^�.���!^���65�ct'�1o��ӱ���E��=��it�2�D�H���[�jٲ�$���r�,|{R�U��k����L��c��]Î	^I�du�ҹ�}C�"�)���[5�H����/lb~�BIIq��@>4ݞQ���zӌ.q<P���
�ː6���ߑaCN�dv�d�Ղ�E#׬.���z������z=��$�PV�R䠪���>Kn��%

�\rC�Gl0a%��5��\�,�-iAYq�4O8؇Ն.E4�E�o��v,#0)@RJ겖��"��yq#�c��>��dڬ5)U�N��/4��ŮE��VU�hx&��{�wK0Y �^2��}kS������ě`�&Q�,��8�R�ѹ��g�S�_ji�N-뒶j��H���O׸b3��=�����.�~���Ə��)qޏ�{�UP�}Rw��KeK������"��&���ٽaM`NѢ��[�*��\�{P�W\RP�]r�
.P�.YS�>�!a�\�Pl>x}ԃ��F$-�ŭ���RZ���z�4_��[G�Jq����5&�ZƄf��K���H�)�NU0%�r@��4s@�YA���U`�2���*�7Q���)�_!|G|H��8�C�.���H��w�[��ۮ�Sm�&�bDKC;iJL;G�Pqvr�'�=4$
|o�N�����KuvG�_�Ի@���y�Cc#"7��$a���h
��B����d�ɒ�#�s�O�����OZ3rΜ��l<��Y�J8��J�u�d7�H���T]��<Q�X�����;].����,,��
j�.$�YR���}n~@ؐXS <,��f�AORV=Tv��� ��wΔ��{c�9�)"VK��\HRuy�UXV� w�0e�=RRr��PӰ����2�^.��!��kS���B�!4d�x;Q]�vx(
�d�� �%�9=�6m�[���كLX�٣���5���'��/���&>���B�dc���QW� ��Ɔ�����9�[��_4��I�l_������h�4ĭ"8̌�J��Fp��=���dIf�͓L��T��P��gh�
+�"���[�/�Td�=>�N�[[A�%��Jݱ������fR!̙q�_�շ��Mz�X|�Y�<[kȲN}�Y-&@�Аá�#D�݈�ɸ#ZL��Y�8B
 �u�Y֫U�G��T�n�C��i�E�E򑌌���g�!xז1������0�!H�śLCS�j�.�qx��#����f�˝�}��W���4nAv%���d�Vɬ,�\�	(8f�������C?5�Oc
��B��3��T��˧�י0s=t��],7�C��-k�D� �
q2$K���m֟�5��I"�Ysym���)���d��Qv��6mRS����%��Zc(�	 �FT�h�%H^-�9j���mCGDWћ?���`L9�1\�+@S\z�c8Kuj���B�p07{s��&�;�W��T BrB�Uu�72�j��>�/
�!�ϝ���7��!7s�2O� ��N]w���eN���O�L�Pq����=UX��-.��b�4�E���֧��#���Q��Qj���c��{�y�~gZ�!��g�����/&�{��u!������ϻ��A�?��ޔP�i��^WQ\��6T�H$à�8@B#�o@�vt�>'��!��lNrQM��g��X=	��n���kG3`�!���5���1t���iMbJ��>�
B�{ű2J���r9r~c�A��l�}�g�=h�@�+�kY���%\��(m��TQ��)/�d=�3�p@��*�F�c�K7>���I.�Q������δf�A��v4�
s���ܿMp1H,U�5��цf񙴈3�����.���`��J]țǑ�s��P�wDÎɢ�~I���sZ�Q�h�E���2:X���rqz� ����!��d:d����Ϻ~g΢Y��=
 ��7�yŞ%5
t	��;��03{\�������������g
��2nϸ-���Zl��@��|Γ�bm�s2�UE<Q���qV	1^��
�`ėU�E��%�qݣw�r��$�9�"��|ډ�l��v[,�a}� �����h|�%3�&kmy�7
��df���X��yi���Zzt�MN��d�O�<�Sz�����.�Km�H���A@�e�P2�N�� ��K�9fy桛7�|n��^�	k
n����\?��փ��`�
�����?�h��
�d⠥�����5d����3j���]S&�&�w������(-��a_�~ͳW/�������z��~Һ����Oڿk��<|���ͨ餒룯^���F�ݯ���6gj/;+�����I�%�h�`��bBb��E��+�q!���g�Õq�}�Ī[�8�3nqՑu���Y+�[
���k����h��t�����j���}���t��ױ����ޛo��->��q�hPo��d�v��h�G�Gg���<�3Ԫ]�=��#�Ug���� J�S�|��㿞�:?f������{<?�N�'h}o��EK�F��Ny�^�8|��HJ�Β-�����z����}��R����<�s����YBz�qU�U���>���q��]DA�"o:�e��C�T�3DNU��0pPRj$�񦵌!��̧��@��8�3�,1�xV��Y+��Ք�k[��vC�8+{��,P&+�c��F�5�̂6��B�T��E?Z9c�6_�J7�VA��6�hR�?ўޖ[�I�jϪCc��ڀ(N+����/>�Ȳ��;Z�:.�?�����W�5��O�}a���à���q:aţ�AC>Y��td��m�N�?rЌ�9Bʲ*IY���ǂ�XL$\D�%�(�`P$�qP0��*I2DU���D1�͆#�hN��8��U�3��AoX�I��١m)f����4��F�2��>L��\��w��!�<�ʁ��V\x�7�$vx��A����/h��>�Bd�N"�tbȍ�e!���+-ӡ%�E����<u��-WA�n�]V������/�|�h�pc���[�{.��B�DF�t:��GM)(�7i��A3f��rD��"�d��P���}V�a0��4w�y���zr�C�e)A ���$�h���
�{N�O�N`���HD����7M�l*qi�PF�����J�������^�:
���ڥ^
�nZ"��z�J�,X�������R>Q�5�+Lhx=�@��BG��c)�-�E-�
�5�{�*�ٯ�֚���(��!�O�5��ك'P��M;��\�\�q�Z�}x�I��۷���"�D�$%�y9>&�	��a*���?~,������d*�Ǔ�346"(bL��d<�4��w�:UO��8�ɥb$������5���c[H+,�����X���"��R�R8���|v�i���"���
��2�ә[l��8�1ר���236o����F�F~�<�^���1��b�p��yӁ�y�"�o��}n�B�
��{{��{O�e���.���!·J��_R�.���	_�U�I����7�!d��hJZ��,����Y�2
Y�uՀ(��QM�T1�r�D�����{�y��\��3")��DHk��z��q5�v���F��ūhP��,��b�Dwl�� �[F`	>��y̚�
f�����!�Œ���09�����u��P3��sE�R���EW�(A +������ݯ.nJ6���j�MT�;�S��n����P|�0D1b���'����5��ܙ3YB��
A�+�zVM�y^�eA���!�$<8�61MQ�i�Fb$�&��	]�{�*^B�+|5O&p�(y"y:���ad(sjb�!�*UE?��#��I�u���CL2�b��ʯ�Ћ]�dǦ[�?0ӹlE3��V��N9��~���2�
�(j��S�o�g��~�Gb�Q��5%% �~�$Y^�W�r��l(q�z��(�B�{��):��)�6s�Fj��5	zP18�
̩aoX��#	Y#I�Uz� xaM0����8&!K�p�4�ç%�f�����ڱuu4�T@�bns�)�Ê��X�$���W/w������1+͛��:Mn۟`ò��H�Ď!�1��p~�sb�a*OCcgU�i�l��yU3�ܺ�󠖐�=����S��z���c��ǶPe�k��AlѼ� ��X8HhN�>������u�#H�t0��RV
	AC��ڪ$(����"i��zJ�{	��w@�ȏw�Z�m'3�bP���{Ҋ.6�q*����]}�΃��E�GYA�8����f��m�>��(|W���!K��F��y���w�^�"���Y4�r��YNמ[�Fl��������=�uu��;'�Nױ˗��4:pbz�#���������
�!�e}�0	�nF�4/LW��L�0��%P ��#
�#��H��D44-�(� �M�AΫ9�LgM�=�ߡ�0���O�װ`�b[5��j¼e`Q��?T�*��¨3Zh[�͗��g�O��_yZ�l⽎��Q�A�@�nc�a�(�嶎[>�)��G��4��������X�GzF[\Y�����M0_�(���F�Ʈ5��*
GcF�(U������(��݊"]weq�􁠵D0�e�ԩj��jY*q�Skj�`cu��Vl�
k[Pc4�?�;S��t:���β����b�yB�}�i:$"K���WЉ+>��g��>��.���7G`�BK$��hi����(���8
{���B�š6�$�P���i��n����4�7�L:D�o:�R��_m�8������>7T�VDR-�;l�I����z�ϫ�y�H���3՗!Pא��[���33��믝܉���%?��?Y���_X�"���K�j��(�V�3X�/���Y��M4������&S��.E��m��/�����$L��>�.'�I�<�,p���r�=t{M&h�h�، 1Yܰ��|vǣl��"�A�
!B�S�r�h�=���D�%̰I�D8!JO����Ca[��L�S[)� �6g]��꡼sn\���K�X*F*D[�sl0����@�S�e�0LR���	"�7���d��~B�u�
���fgؠ��}�آC�	�P&�/�=!H ��(�xҝtCE����K�gD�+�$���E�>�iyq��'}j����Q��x��7DS��J��Ų	��?���-�u#m�6"(���_���ty�.�:
��5�_Vmy�珌��f ���*-��?���Y�=Vp���̍���)�9��i��~tt,d�U��' ��'P4������6��~���ݗD7z!�L�
��ť����w�	�ܱ�B$y��n�9��q1��w�6K���&�/����x�2�c�B���t"�76�񇏂�J�T��WJ]��r|6�W�ݘD�7����Z��"�2�0�&��Ѕ����1�{G{�K/Md��}��SbSٻ�~xttU!������	f�@q��6�uݲ4@�I�31��B�o$N"�,����a��%�D�Ȩ#$}�$�)�^Y���NF��\�$��;�gg�K&R?6�s3�>h���Ak�x��[)����1���!�xlA$�-��\
�eP�%��,���2�
����~i� �R���9�Q_�=77�t����`e���
^\L�@xU�ί*F�H�1��;G�[|��5<��7���\����;�'^!y�� ޒd�v��g��C2��Rl��~}ƅ����C�'�|��b=w+�>��6Qz�G�6.�l��߈gS� ޵_9U4_i'6�����m�n�b՘����&�����;YY�IZ$%X� �
��Z�m�6$��:��2�hTR��]��#����}A!�{�G�^_�S�22�������	P	Б��"מ4�u�G��7��=���|��d�o�p���8�@��3�.d�3�[,�ɛ��#�Q���'���\�N��o�
�U�����&.� ]�����r&�mȢE���}���0��8�+�XtdN�͑��qp��ؤ���7t�Y�HM�2p$2���ct���H�"��u�����K2m��9BYfv��XВ�@$��H40����9.mG2���
��f�xc����m
�un��gGf0˴��/2SL�$@��,��WٶBRbϹ	ݍ�\�ē B5���&��̋�N�'�Em^�ϛ �I�1���笜�c#TN��9�E�1(*Cg�F�?�8O��
��z��zG�u`.����کfp9�1{h�}p?&�G��"[���.�E���7�B�v�–��<�31�ކ?��{.g{��rO;
`���}��>�ٍH|�r9U5=XX��ۯ-/��z��f�n��z["����pM9���Q�x�̌��8���io����>���q	$׆*G��@�܈i��=�i"K|��	����{��Co���Y��e��<DY�,�����0��m"�,k�78<r�Տ��~��
E���ePwt��j��!���
�Pg����"\N$���8�ru%�A\�ģև|���W`B7�м����Vcr�_� K�k�r���7��� .r�ZC�����yVށ9�v�+���`�0��8em9�B��/Y;*���_�Fm�Ӆ/3e�ɂk�m�=�R����t
�PNF��v��9e�qX��4�<�NB�`6����!Y�	
�����VD�G��:���4��"�'X^H�F�Y Ac���� ��K�E>!�<H�E�%r�NV���h�:�Y�on4[f�F�uZE�VS]^�o{u�wȭ�B�C�H�Wm5ΰ�a\�o
uT���~]�=���r���\�� �}h6�R>�@��W��hV���AT,:��W�5RvuU�z�aW%�Յ�
X#����A��`�b_c�>��Ô���X#2�;\�wO�G�-��`_�%�*	1Na�� /{[�]崻v�X�D �׾�����9,4�MN{n�,� �W
���!���ՑC�s�4�-�C�`�>�s�V/�.9"n���y/�"H�ǯ��̔xB�du���ެt55ջ�ZZs?��S���u�N�Z�}�,ch����R��l(����XC�uX��U�V��[���5z%:Y�帘�$�h�3��7���O����V.��xa����~٭j��FR�ݲ:_X��Jw�n/g�&�k:*�2��z$us?�*E=�JuR��/��{<P�M�]mm��*�-A��)���2�9����k���5�́d&e��9P}ga��@�f��,RJCž��t����vV+�x$���8H>&�
�H��E,� �ڗ�$��y�!:�$�$�.�{M�;X������~��0�^q�S�|,�;��X�S�:mE�C:��NUg!?��I��ڦ0��B�ńi-�U����3	V[qC*Sk�lL4��/��mo���g�}�n~R��u
!*9�^��m�m&������v�g�<�������C�+:Bj��b��E���ށ���	�h�I����|�
����J���$°4&�=9/w[��O_�N���w��7��N�!��iGыp?�6�A\2tF��E�!3P���*n�F�p�!�ᅠ�%L�+^"���X��E(p���/1
&�u	K$'O݇�=b����-z�����Z=u����p�}PK�u)5����R#�i腃�Q.���Ʃ	1�6$�k��9��Ɗ���X$�f̬F�Ă�D�g��m�ѶV�sϳ�\w���^��(��?	�����B�@Zh
����DKU��AO!&��
!m�A�W��M(l?�i{���M�=�fkG�β����m�<ȷ�$)�y6��Z��X79�Y�}2�����!�z�K�_
�)J��E̚8=CiK��Ea��2]I&-	�;T�hZŏ�鋤[NI�H���k�xĂ��
<z�"����y��,�{螛��:��J��z+�̜����$�[띨WJԒz#Ah�}P�X��ϡm��U�aX� X�a�S�ը`���]B�Wo�t�!��Ɇ���,��(wAi7_6V6؎��R'�"�<�Q���DŽ�l��;LX���=��+5��tj��h��*�WH�j�]�={%�2��욌�,~n��T6�v�}q��C�Cn�R64	@d����텷�J)u���@�6)�I�7��'j�ذ�]�D����o+`
�X�2�����g_���B����/*��J?��#Oh8ye���1��?�P�Ξ���d0�޷��{z�z����@����^<9�d
X�кWk�;���XbjU�:_/�Ӿ��,ņDŽ�_���w�1{V=s���g�P��tS)��
:�Z��g\,�r��.�ΖՇ5f�����pྦ~��q���H�l����k��Tx8#C,����,�$�D�r����*�/!��{o��ʻo�bhnhn�q 3Z�=X�>�v�,���T5�	�,�{�r.���+��zɾ��1FqI/�y����"�L,$�D ,B>!�"�� ��H��δ�iA�N'�a���t�<*B*;�.����K�XQ[��W���0����t �AW���dͭ�3��UǺ������B�a�Zu���0�XVϘ5�a;��*Z����)���Q�i|������:[��OKۦ����~V���K��L���]-�=(ĺ��|�6��B)Us� G�|_�I�2Nʓ�d�-�nx���g�}@�����Xؽx�6����#R5��!q�QdU��9$n!T�'|䇬A� R�L��߿[�$�QX�"T,	yM�>�����o[[^;z݅���g�x]li3Շ�(��1N�Ҍ�^��Y[1�BU�rs�����/| C��+�+f�7br~��8x�!L�L�KZ��j�R��вf,��r֓�(h�7��De��C�5R���<����F�b�fSq`�2ΰV�����K�`V1BL�L�tSX���t�=;(�m8�"W���H����2b������~ԕ�������$̬&����3Ob1����& (�>v[z���V���dA̓�DP�vR�o>�
_���ڧ�=���uo�N9ֺ#�bCCe�.�{�Hb9�j�~>
�Y�BκRW��%�w�$��u�7a�Sէ�~��.�ʥ�X�yR�6$��K"H�T��+vb�_0��9k���;;�=ᠱL%����ٻ�p�t����}:��d
���[��B�D`�#IC�t�P�[����f�C����4�.�������Íw���ˆE5֊����[��L�� �������H^H�[��"��=���ds�(1ɞ�?�C �?���D\�u@0Z52|ۖXz;���8�
�D~�&AB%�)�4[~YN
+�
}�,�c�=���N<���_�!U��,H�N�
'0a�r��s��/�`v��N�z�i�.�9�����,������=<~ȤKO�:$�DꪀU�d:��eEءU�<��2.)n�kS��h�o����'��)�Ӈ��1us�w&��Z�X<��2b�uӒ��I���w䉫3w�����@F�����5V�?�֌�l�
��,Y��#��\$;׮�����=�0xA��C��d�C�"1�;[�e�)$a�rw�e�����D`�&�%
B@�L"
�E�%blE��P�&[�&l[6��7FcQ*kt����Ҧ���{wc����s�o��;��{��2]q�B��͏�u��{G�z��6�
f��Q�ϩ�]�ꕉq�SN<�%Q��d0F�h�ᶸ�����EZq�[#��z{�:
۲��2�gf�K(D4�(O�c�E��*I��ip	����
ol�$��?Z]W�?z�(	͐\�ފ��]�t��m5�ճ��f��ڳZ3g���ݥ���^�{����lvvlڐN�
����5�d
D[��"�a�<`��dN��32r2�2l111�B�A�b�@Rt���|n��£Ǜ����_>��D��H(v"@t��3/]�s˻��m{�I_}TjX�Cv$H����!"P��7m�6mZ�H�q��=`f�FON��k~�d�v1�����y9�3g=�� �V8��+^�Y)�B^e��JG�Hl��fv�6:3���$2P��F'���V�\����k2o��=��ٷݔ������,�\��l=��L�4�i��5���oJ�QmT8��B` a�U�ړ�ם�Ym�kd
K4$����@d��X��o�]��`��E/45������rmȅ!  �C�w�M�!���ӳ���={��Cޗf6ݱ�U�M�%F��0���y��J�s��rT�5�_���$�9�S
�����3�:n��{8ov^aVf�┖��.��Fr�[Dc���i��$�{�h$�	�D��u�������v��e-����sϹ��K�/]T�؞Y�"Þ�����5g���Ԯ����^mm���(꽿��X��8�h#%#��XY��ďd9���$%��@�{.��$�/Z�6���t�:z�06�j�Y{�㳮�4D��<�홺s���.��%�6�iq�  m��#\{��G�㴨dR�a2M�,�=��Z�qs���cn6\UZu��@[kFNN^GY�Z��>�c�K�b��|ie#�a5)*��WiH��S_����Q8���d�v��,�媩�5�}�,}��K�xqs�&aJ[����h���
��E����/ˊ�Z3���qD8�oe4�|�NC�q��%|LY v�`Yx[�p'`	��e4D��-��m������!@n_�E���L�����vұM�ϋ��W�Qh�3��i�:b;BTj�� dB%��עxX�Z���,rf�t���%%w]�>�zA��k�Q�F~S���������I(ЙXD�R�u'@f��4�8����\�����vkșb�}˖�+-X��7�]�؋�/[��w�(�K�� �]+�+�a��Z5}�hB?��ƽ��3����"�X[D�a�au��e�J�f/��8�ޞn<��g��ѐ1Y���wNHH�~���L�:	d�Ĉ
�J��61Y��N�}��)zS��8�V��6��"
�Y�����nls���b3�y�dYo��2Y:��VI��OSK�=�O(g^���U_�M*T�555
�4��6�;��~Ύ�}~�z�T0|M�˖5W�� a��`�=+#�u�y�u���������-$ٺ��w�
O��2�D+�1h ���o���+�H�Ë8�za�����N&��?8�愛B#3#4䍱CĞ��_>6"�ډ1����P��m�ת����A ���G��案p�;�Egy�e�IO�PĜ$)Q!�G�4xa"
_�Z �Q�ϟI'i������ל�^�;0�[��]~�T�A�hp8hs
���Y%7
;(����y��h�7�)z��%���h!��G��lV��%�f�
�К$�Ɇ(%�C

�8��T�ײ����^�4?�zo�X�\Gm��N�
-*T|/\���S�<��SC�'#�+ǝ�6L�@��.�	�^�}Gw�f��1�ؕ��cE#aaR�*��˙�L'�"5��)1tろ��N����c$�BM��$=�����Oc�bv��D�_CͰ�
PH@�$/�l�X|Ywca�B�,}o{:=-������e�5(Ii��$����\��H��/qzb������5�����,)M��H-&k�ȳ�;n�� @��CN`��Se��@� ��C&�f\]������sb>�����@��܆&AE�פ���oo_��e�P���K�����l�ߒo8�
���2����~�hX[������'�*��h�Db�H�@������9�6���A4�~s:z��a�CJ�BqC2t�_�����CGB���E0Ĭ�,�_�v���n/�,�/���\A#4��^6�1����������Wc4H��!8�g���Yl;~z�
�`,�4��E`H\6�
�f�RR���'��;n7�o����K��DtS��T&x�bⷀ��CؕN����h���o�EnI�%b��i ��0
���das��Cח�w��* �H��0�`F";j2[E8��5�@����&c��Y��.����n@��N�t���,�W��.@欚�hr�$�1.l�щ��-��x�����˄�};�fCA5'7���֌0M����:fw�
P�b���,/�,2o3Du�@�-#J�2?1�%]�%��+�.�:�@,�[�$7�I.]Ϊ���6:�*_M���P����@�V�A�dM"�$�H@�u�nO�U�0d3X�_�:��B<<�e����K[����H������_���:ꡀ\�N��Cc�"���X�3�`��8�GƘl U޿�)7�i���^D�HI���A�㽈>�՛�y-6H�F��0�O�;\Ŏ�^�^�� �M�[�Rq"$��1�	1�DO��2��|~߰��V4A��1?rw~�஺����{;�7����Z�*p� RS�?
1�ƹ�^v�{7'\�*�dH
P<C�CZz9iLt;�{����_����ZC� �E��F���N��of\�����ƪ���F4���nl��w2zT�_�����6x�̉�v�JK0�B��E;U$Z�#�&;����R���i_)�(1$����d�oAk��D��R{P����J��W��(�څ��e~�xD�@�R�.G�h_I���k6uz�W�����UE>+D
Ĥ$� �_��=����/���nTH2�u�CO>��UF�3`��n�����S�J
,��T�hH��/��,@��i���3a�|NؐH 2�S2um|e9�
ۿ� ӝ�7��6IZ��D���0�mB;�h
��
�N�-�3��sQ�x�$ձ�݅�[Xg�$�'�-��j"3�o��2���{'Bm��vhl�_^fuۂ�;��K�abb
�έ3g�<�*q�Mt��>���U�V�	|�?��	���ʩ�t�ƚ�u���?������Q����buU�d�J�"��"��V
u��e��c���n�gK�6�ʋ�����Դ=���и�&�]��MFY~�s�;~q����f
4g�	�׻m�"�DÌT�Q�X�O��l�(�&'���vsH):PiN,��"��>;��a"��R�ֿ�:�ؖ�0�cq	2�h%s��P�K�m�#,�s[ɨ�\gc3T�E����L�IM��tL�}����0�K#��%����s�y��sv�����}��<���X��4dQ�;S.���V�=�����Q��4I��9��* �S�K��'����+%6�ܽ�β�k�d�X��Ѭ�Q���J����L�~�?~� �������5{��<���z��vjܐ���r��o��l�Y4�^�5,�|������9�������)B���zɐڃ,�J�l�2N�7�<�wa���kf�<�%����A}dM�6���a0�L�4�x�,d�����Iu��^?���rVus�hq�ڕ�T�%��ƒ������-]�_���6q�oL:#ɖ�d˙����H.*��塑^�j��y�#�Cׯ\�\7���1cvd�$�F&}态�ҹ�Q�
�'��T�����GO�2A��zB��[]a��*X#�y�IC��ı,M�Ux�����
!1
ݳ?����E�IH����N��-�B��!�u�$goGG�^�8�\{٠Q�Q�\�$?����LL5��7�P�B<�<!i�
&4Z�ⒼuoU%w�ꤔ��^��*(0��4��*²q�:���q�$���c呶���Ӹ@��	�|g��Ì�s�kB����/��f0�?;~����CW�ڈ�+O�+�S�Y�^�X�;��M�s�8��9&������=����������qb_>_?3�c��&D��(�r?���X����j�D�����czv>�ynnk딑�ǘ$��җ�ث��ĕ���*�E��}�}�K��]��a�zH�`HW��0|-n�U�~t�O���nHف8����Go�QhS��=#G�щ5��!�˞Pܤ(̧p��i#�m~�Y#@�:%�������tS���`�_<���(�ʑ�H5_�
@��H�@���+��*�u��K���=�{z��7sWzQ�ĭ�Q8��I�Q�{�nϞy�V���\2�Y��VK(7�\�,o��eT���
�wM�7L3DOm*h�=eƒa�aL+�(�@!�nDv"ܐ��+A$��QL$���)�j�D<�M���lu:{D��mPBC�$�=�P2&�]���J�X	��b=K	g��+�Q:j�(�x�%��)���K�
2@�C���4i����j�Ujvu�PU(�1���k�#�SJ$�-�g�De?��ľ�Һ�#�t�xt���)bZ]Y=��p!�kQ�C��)�K�M\BB�
�5��y�P΂~��}F������0�[�0"�8�YN�C,��!�-!�T�2�zn���J�U�bnA����U.7g�H��׎��ظ��[W�aSDQ=dG��/�؋8���x˅�9�lM+�P��Sk�K]CHz���t�96�_8��b �\*3�ѕ���:4t)��P3T��g�g��e
8��7���n!��t�}Cv�GU EJj��i�YH�H�L
D�P(7�8N�`��l7�~���� Eŵ�q߬��+ޒk޲%T�3��EV�&s�T���%���1v<�N��k)�X���mEދD���
-��7l�򅢸o/m�p�CaLl�l���ԟ��&����&�d
��~}�V’��1KmF��c��*%$�9�ԛ��	�v�XV�y&�N��?��f>�0\�l�/!�����:,��w��k-yl�H遺�?���\��R�D���ܒ�!#uTMd��v�ƙ�Fk5��[1�Yf�����^��wjө7K��p�q��g��6o&�<�����ÎӶ��"`���N�z���
[�"�}ު���Zqy���+
��Aa�����Ypu���[�d�ߵk���$^�|�j�����V���ȶN0��r&����Q�B¯���u`faV�'Z�y��B�J
�$��R3"�4������l'A�o��.d�(��p'���O�!.�m��X�|�c�1�c"#9��8�(;�&[3�O��S�B��a.l�]?Y���h-II�r�9������|����{��>��C�h����Wv�ǟ��Ң�H�o�6IG{��v���ѫ��O?I� �=E,p�D
�f�M����}�~o�-�Q�RY��G�+��A���K7���5��dܫ����L���P�_��c�?/�y�M�1�����ݕ��V�ŬZy목���sϕ�����j�����`!��C�%�7��h�]nr�+^~Y���Q�	�R\����J֤6#!7��2��2��A[)���5Z�	z�0�(�)��LBc�6�q_;��Pъ��ȸ۟��S�Am2�q6N�+�-��x����GT��\�R'[���
وȑ_���U�6������-M��?�t����fwX�ߴ���O�ܱ*y�#�sw�� ����/g8f�AY�X4PffW�����
x�=J7.-8wcϾ��ko`�
n���^+j��Qm�ڥ�(�t��C{�4�U3�!�V�x���^�x�5�C&�PY�s!B���qn,%
��D�w{�N'���ח��S~p�u���ҁ��J/]�K��Y�nL]2�9�n�hPQ&�|�&|��ؐ�X4��n�m5����>����^����Œŋ�m>+�;����S-h����k�\�U������]g�ի�@�h=;s�r@B-��W=���ZI���C�������K�V�\�jx�W�O�]m���,[za�qP�97o�u��]��t^�4��l��]؇2�S�e�
8�\4o��y[�bZ.���q���aR����,��N,KKJ�8LI�j��˷��	2����pM�?�>�I9x��ӻϗ_�5
�KAxF���?<�b�|��s�|�σ��PMTTe�m�4P�fQ��v�siY��!�Y�4�`@��W�%Z�}��C�q����l��h٧;��|
ģ`�Rin��Z�Bb�D���	b�HD�\D�A��u�m(��ٯ<$��؉��;����0���:P��I�����8A���Y�L���ʲD��>H�u�g���0�4a\�׷l4�Y/�f,��Pm��'��'y$c�P�?�����O5���.[�1R��P���M�0CfƄ3	���.i��]d�6~��(��`<u����h����Z���Mڷvṇ

��KJ�B+�Ҷ� ��,#��\�HYr�fND�
:ȶ��hU�(R���R�z��iF�Q9x�X�g��J��
�t��i�v�в-�J�_�As�i@�ӝ3�6��@8�څ]�P�U�^��v!�/��9�R�e:�%ϯ�a������4Jm��>�ɨd�ʃ�R�L�	!=^��X_�g-�Q�S!�M�JSS�)��0�%��ih��.����RP���s��'�FFV�bB�v��?�~>� u��׮���,�.��><u����e��2Wnrl����8�$�$�%'a(᳘�):�p`=�QN���|�3s�Ű�5���uL�#�\ΝTFTs���|�&h��y��E��PPE�A
��c@���Ό���*6���9(��~*�>�\�2}�AG��W�Q�5�i#�J�	�P�D���X0������û����Y��{�]7��Z#K}3�#�eu����gY�}xp�Wh@����z,YR����p�{ח�[�ad% �|>����IJ3�t�:6�?��!1�������Pvb�MIW[��z��#ED�����(x!��4 �2-�ܐ#XT��>\����ͅ�sw�;מ��b��Z���:-X�TS� B���Н���sO������/����ąˆ.mi��U���kj�\�7��3g>��@iNQgq�E��r�YF�t���_��L�U�%0j�&���J�-SAQ��c���emmN˲x���Q��a"jL�$�aSeS3��?@�=JS!��Z�S_�e)��j�ꌳ ��Pi����c���S����8��m�m���<c[>��׍|A�{�%�]��6ycdg=�{��r�κWY�s]}��*5�����K)�����&�	��@ͧp����E}�h�kzs�M�'�v՟�";�J(�:N�p�
��i�A���^�o
�fڂ���hN	�J��lVf�<��Aչ��OFa�s���QfU!%A��iBH��8�����Lu�,��Q�-���tSхn���te�B-h2�W�wF��\ڴ���{�sI�s�y
@��S�tO+ٞҌ��{[L���'劆�!#�u׍뮥%̊�e>���	���rݴDD,'6Dž6���?_�޵,5�M'qR���j�g�|I�)|�䙥/��(y8h]޽4#n����]�N)e��qx�e�n�Avu�n6�sf�����
K�����ֻ�φ�b'ñ�VfQKm�j�C���b���]p��r���VK�$����l����r�G�TF�z��7	M�2�e}ۯV����{�竗���_���7u�?��z"�<H�#�0k���)x?Ѷ�e[���D��,�2%���@A���<��*{�2+E�؁�g$�M� A�u�B˹���<s-eh����"�z���V���^�y�{v��_��I�Y������V�j�?������[?��2���=�A?������x�iX[F���:�z޹�p�����1�t��>xg��g��C��@/t|v0��Zs�9W
]�7g_|h]|88���x�Ǻ#p��0�㳗���I��ŒB�ň�ss�~�*?~9�Z�cy0[f�V^��C�D@��``S�NkR+��r��j��3��)�-��.\��.�?���$'�+��T'`�rd�b�G*ґ��a���U*=u�Y�SIa��&�X�]���Q:L�z����k�,=/wˬJ.��Z�]Io-�2�ZVY���gI~K�SҞ�o�뛧��џ���R�%&KMU��>��TW��}�ʹ�GzQI6+0�8���%d��Gr^���`�(7�$9zJ�屙���bf�LfV�nw��������=�,�Foݫ�b=޺��h9C�W����2�����|[����R+W�R�UN�O��T�Q�8]W�����d��/n�ʯ�эӫ��rZ�Wk���B����7�;��4X��ju�k7�T;	�tF�c��z���y*`aY�SL,?ӣzl���@mv���(�LjG�����V�B�K�H��^q�� �	X��}�J)a�=�&�hA�rJ�����t�,�`*�Y 6�*_q-�-8�K���h|�ts<�~#0�S'P��,�*��$��($�ml:�bS]���P!P���J�PF�+���u�ʟ�����k��Y����~}��Q�?�~|�������?��>�uAd��w��F�~_Β��X
5�T��R��2�b����"��,͉Ox�Z�Zq�>�*�ť���`
�e˛�V�ߏܵ��v�%?�WX�0+�BR�2&2�=NF
A���g�|�T��5{ʟ��Ԭ��^��Zº�Њx�#�p����|�ч��{���n��n�w^B@��9�#N��*���m���&�X;;ڨJ������r��OR�Z���ϕ�c�$0���{�J��S���򧧟I�V)����Q��k�2<ƾ0ny�j~��#Me��萬ղ)J�w3z���#N�{a��>�n��r`��L5m>�s�e��y�u���9��$_�#�矞�I�Km��Es���x&����}�e$�^Ŏ��q� ����%L���M�o<�a#� l���`ć��CA�+�°8-p��w�6q�|(���
��i�\	�K*1�lo��ؽ��4d�>7�J_Ѓrٟ��E��������	�d�9���>6�d�r��=�b3��*�x�Z-��o�N�40�6�w9��D,5Q4���'�Y��j|�=ȱ�I�W%�&XA�\���|���<�_�%��c���i����J5Ed�{�l-�y�l��&�#�(	��v�&M�E�����\�xY���p(��|0���C�3ᔂw��A�4�4�C�x�H��;�y�9^�C�I�!�	<�\>dB��ζ���t�Ĝ�_�xOE��pQ~"E�Kq�r5�� �d2S5�Q����ӒT)��@Uى_����G�Hv>z_�E�i&�¹A����|g��<q	����O����~�ϧ�}��3@�'U�J�PN��g����o)Z]b�e)���������x��{HE!]o�Rk�!$ܾ���Ys��v
ڬ^��}�X���j��l3[�
W����q*I��:EA�&ל�X��"����	a�2[8�ǂ�,��@��$��2"#p��Ċq:E��|:&b�Vjz\r{����_���%ާ�ϋ+��H���#��5ݏ.�c7t�w�E=�D�6a*@/�@
6l���]�k�F�G�8b�i��ҫ�h�grj^ �h����ś�k�\k�����
��+[=�I���3�Lc��u�9kt�-�Z�d�(��Vj��bQ�v�4kD�Y=��f�����X7���H�Z�b��A��s��`>�8`D�쁰
Z*%z����9�hi�M�*��4r��~�S�b{]W��R���G������x��J]b�	�9.]h�&��'�d��d'����߷t7��l(E �#Ќ��-
r��I�=��@m؂m1.98�Z�>n��y7�&�Y\E|/�S.�	��r-}8�B�t��Sk�X�Eꨋ�j&.����dH�8j�fѢ��/�z4�i�]wNnG_,&�t"Em�v�O4�����$�Zz�Q�玸��3��\/an�Yi����
�rPu	�{�#��&!0[��Y�'�i�=��=�����⎥�@y�2�q��e�G�3��Xish���L���6%��N��G��d��f�o�?�
@�.����o�R�(�[��x:�x0e��x�E"��ZD��%���W.�r�5��s�N�;�!A҇�%�V?E��4uH��O�^�0r;\���E��6�
���1�6f��F���;^ڍ��%�V�|��mS-��G�/̨=�EA����������I�>7��v�=i�%�v��V�FQ������p�,�E��a�e��7�q��-J����R��̓�Kw�|�1�S�[�Pq�?h)x>�iy�%���ꎬ�i^.T���l����[o�>>z(:�?pc�����ӊ�1)gZ7X2�8����q#��4d,�9�#�F��QyIW�V��[���v�IL�y��j�#~V(f}�腲�
���
��├8z���/<W*����3�_�;ѤI:���=����ռ۽l6��ǝ�5�v�5���mr�b1_��[�5./; 7��@:���>�Zp]���u�0
s�@��g��(��#��;X��$[�t�x�9C�1���,[����'Ty/�`+�I�Z��Pt(�����lZ�&[6�d���v8<@L!�	��p0���h�*��i��A�L�*�C�uR`R+tj����E*���z�3@>,u�(�<�ǑJ'���]�1��\�����J}�nUǯv�zy�h����|�VL�:v._����.S�A�o�gg��Շ��|ܝ��8�ͮ����h����f���.;ws��s?Q�u/�;]�pC��3κMȑ�7�Xq:�D������븭���w���L'�6�6�����=.49�e�j@P�t~��M8E1�Y/8S�U�ԜPH�$b�,(,ަ)K�jf�Fe�Iwq�#���R�Iυ����	��!�=KE�7
B�l9�i
���y���^~�s��h��K7��cȥ�:=���"ӹ��T7-v��1���~��Aވ��|~�y��-ܑ��:�ƃұ�}��}x�����x<�pH���;�N����i]|p�S�gg�����K�9���0��a�1�3k��JF�vBk�\�Zz�ժ��V_�0���y�@ț w�P<U�3�Ę#*g�zk`H	����ྊ
�h�iD�jwa�w�
2VpkX@�O��$m1�J�
8th��3+�je,��$j��nwҀ�#N�/��El
�qڢ'���1��[(݈�]jO�{�jx�Q��IDi6��:Ԝw���M���Oq����"^���-�4+�4
�"�Ę����^��Jжb#!���Fd���E�ti�����Eԋ�'AA�?�
�s�g���y�;󝙗�y��N��a���ß���G2A�{/�;|�Q�@g�gc�2�Re{{�4��0�P��m�ښ�tS%5W�1;o�/˧�S3�*���2��� ��,Q9
:D-.>t8�cjZ.��g��e��Nl3^���M�����/�3Q�q�u
��|��h�ǝ�P�L`5/�L�-�_�7�w־}`|���d3�����?�B�Wsw�DX�
�i���H��)�t��'O��?�� hv�34��rO�OE�Tx6�/ �����dņ��g��]��l�><��U��`:b��i��ç_���3*Y�)�;���ШCoN�$�e�B1l34����V:��{����aX�O�]�G���:�)5R�Z_���Bk�Ĭ�;U���mS[��F�8ӏt���0Ơ��4�I�KQбg��]�#^�1l���K�K�4F֭\y�U�Ռ��	�`�L�
��n~~	2��C��|J�N�4�:06�:��N[s7�����h��+�<DZǃ�XDS��x�.2�ܾ1�+nb
�qt\F�@����D�ѹ�4N���u0��b�s6>�x�A�X?��ls7?���Q�5�`=�b^��W�2-2[mO�C�V�Z�����a�d5��
HBS�Bk4��6�e
�Z����B*+@�i��"�t���%2��dU��iz�VX��U)�icF��!p���r=/n&�y���q��;��Z 0�8bU�.�I�t�Ӯ0un��<�'3��r4�`pW�Y��:��KY�����X	Ͱ=<H$�1�_5��Emb1��8��Y���\���l�]�V]��5٥f�%��+��׫�b���r<|5�lA�e�A5�P�u�#e���h��0�ȸ�J���T���j�ZG6ŝ(/\�Oc�e� ��H22�z�bx:�P/F���L����T�4f[�/�2B�_Y���Mt�7���q�9���k�6�
���
3RA_ʲ+#i���g����k;��'����U��g]>9~�Lϧ/�/]�2"q�����w��͌��뺨�1�5�YQ�c�N��&*ʼn�}o�����O�<Acʫ�~��ҩ�N�f��$��;�>'�sRj�f��8,��qR��M!�E]�����MA1�~'�W��:	;��Ѻ�}�^�2C��$b�ѪQ��4���4Ѭ�O�D^3��
�>?�f`ڌP��mEڷ�����I��::>���/ͣ��f^T��h���x�gt�l��k")�չ�<O�z�v o2��m�f�sa��O�ÛY�l�Zk���މ1k��H��Ef��f25�U��-��#IW&�?�b��؋�i�"��t��$w�_@�_
��S��|�/l��c�����qu���ۯ���ٜnL���8\7N�(�B����r��[�؆���YsR�Z���~M�t�E>N����io�F0l��<M�wa)-�H��2j�k
�M���$���q�m1:�4�$Y�NUUQ�zc8LȦ ����(�6�;!&Jn���7/��G�v���?�i�#I�;���w�)?A�^=Ǐk�k{6����b�kl��XO���Ѝ�Q4D��loSH)/�Y���"s���ad�@���L����d~���ݫ}�f�[˧+�����p�����{զ��ܦ�������Aqz+(=[��r�G��BV�	Ў�ld���g�2,}����B�Y�:5�bn�����c.^���VUf��Z,�R�'�����$�Gg?�*�	��FMOy>�;�L.�34��p��H���Q�8�A�0���E ]����*�*�N�ź{�ʟ�=;����ޔR�at��]"�K	<��a��
�҃45)��)�\rx�R��qs�2�1�\b۳?��p@� ���a����۩��{��@���O���O��*no=E�vq�X;k��S� �e@%al�^)�[��c�˼X��kvQ��mH´E����z(�b�)#Fo��lB]��Tw+�Y�� ���|�R�as-cx�#�1�XZG����׈�;Tel@[��8���!�0]��Y�����|�X�eD.���;����(
��ً	ͧ��LO�)�F�т]c8�"h���*��p^�LqyT��q�/��p\0v_�B@���h���9˘��T
L
�k~�#K�jk�V��p�.P�_��E
����ϰ�N���Q���
�k�Ѓ<�mY�q��SZsѲL�[^�2�i��X�}n�ӑާs��;wH\:�4G�L6h��MJ�y^Aj��/�i�ҊuJ{:���Z�k��4�p7��f5�n;�B�d;���(�g^�j?.->�-J$��ĺkum�*�z����}/�t���9��).���hB�,%��Re5ST�FN��Ia��N�ԡ�tP��c��F�Y��|k�K�HYl��lH��|a	��ߚ���oHu�5��Ƙ�p�g�%`g�.K�s�(L,�rw3I}d���K6hG]HI$ ������X�%�*Eq�XL��yw���c�Ifň�[���]�**�R�UA^��Fu��=�j"r�q�.3I������S���_K���_-�*��ԝ�d��I(MXH���>�;κ�2ػNz�C� a��Td&����z�U*��J�o$�@��i�E�n�xc�p�l1�����d�I�SY�/�!ʝ(oD%]�V߹�{���s�mB<b��/i�ǿ�`�
���8�@c-��0@9M��Ҹ�ݬ��<��nE�S��|�Pl:Jy
�i�J)�g 
�8*��W�����,;��n�q(�x�I���}��U.�̫|�����,<��~��gU�;<H�ŝBR#�hod]M���7��ޮ�?Q�P���2e����V�q�"c���€������7��g���K/���^9=o��I�Uֳ��ƿ8�#)� 2��X��h��鿀�U
*�)��"QmV�!�P�d5�d!�
��-db#���2�E�ɉ��얹��nɟWԖs���������D�)(3�T �3h�;�nRQ6�]�����&��JU�Qk�I��������'>$�q���gn�otۿsz��>9���|��t� �\�8c�ɭ�7�	����T�K6g"FO��y�v.]��˥w�q~�����,fӵ붇`�6?8:�d�ci�3ν�/G�[z�$��3�N���Mrq��?��ê�YX���2�����7��i�=溜�ax�Ih�VI�'�?�柼6�CX���F�vb�=V�����O���#�S	����]�v?o_y-�L��e���v1�4��䚧֎����8���)���3�����~��'Q��NIJ�����K`@g����7��o�ŷ/��*�~��x�k��������a�Z��qN��kQT@@\Eh`|��_J�:�^�%:'�o��Dz��r�q��j2#��3m8H�;��zGdI[�I��j�� &�`��V�������_��@���@�����WR�v3y�A��yG��4�>]x4Phpr�߿O~��'K����ђ�8
9�]>z�ݏ�{+��#թQ�`�E%-�ϧ�i���`aqy��w��5Y~�p[`S�>�z�A�k��z�i;lL��Ͼ���\L��������^�/��?0�A��&~��W	�%�R]P�ڈ
��$�侔�Q���B���c��#�K6���i�F�B20!I�N𹢧��v���I_b��jn�fN��vB��_�;��7�#:9tZh��,տ�|�>�M�T֞ǒa�>��W$�?xW2F:�$?<�F/?wx�9��*X!���/}���my����v�^xl����܏�ڔ�Q�o=5��i�/�%��H�a�h�nP(�]��_���\cYܛo���q�{��>�q_�� ��@C�Pb.t5+�ɮaMC���v#��TD�]o���wK`��Z�ʟ+xQV��}?g���;��v�g&�眙3Ι�%�y�J��,ېAmx�-�
�~�˛l3�����T�O��x��l�@�X���1�,F��Č�4a���a.��F�X1`&]:9��ao3q�v���3���>��N��	&��aP9�����H�}���DB5a�CG�+/�ńu�0Eq�����'�\����r��
y9�,�0œL�Y0�����6�;�'п99��_y����'!F��K}�:�AL��W_��Ÿ�}��O?�����=sP������`2~��q�G����c$��&~�9�,H{���[����w�*���>���^x�w&'Q��',�E'�9��ȶ^v(�`���_c+H�}�|�޻�
B�7A�K��k��`�z�_��(Qz�@��a8&t^��b��l����W�K���	=����ddeX�g��p���3�p��w�4]�w�x�Ŗ(�c�a��x�׃�g�3%;+gh{�_Ѥ��c�&g�&��^^���%�ly����G���2
�G�؛D�(g���@ki6mґ1�����o|��L�0������A0�BDv�y0ȋI�~`�.P�m�Ct�t�C��n�C�a@Q.ž��>#�(z� ����{g���L���E�If�b�@�F���8�䳋_����^�<�����Q-�;4Q���a]Д0����[��8�Q��2�~~���BĄ�g�����[�[{-X�_rZf�ٺ^��.�xH��^���L��ʚF����CR���U"R���n�ͶR�Q�+{Š�I�	ԡ�*~E8g�M�(�0[�>��P�r�m'��zu}+ܹ���u�۰�9z7Q$�Ѫ{��+�Q@�q�DQٯe���D3j���F`G<y��z�����F��
�A��g�
�����q4�a��w{_���
(�=�4	p�6�>f�V�H*�bX�ׄ�g���(�WDOQ<OX�fM�y[f��m��_�tx�s�K��>�3����r�jz���U���y��
�,�.F6\O���	�1���q�e"E�B�R�n��"������f�%����v�ʏ��uq�" bƶ��(�`E�uy���G8���yxuT�ඦ!P�1dE�ɭ��8⺮8>؎��y��s���z ���C���e����6Be�k2��v-�r��9<܄:	��e|Jb�	p4�GB�?�GV'��L߄{r 3��r���y̳�~��ĉF���^� _i���H��d���g��Uc��tL���}u-,n�҃Mpł8�
��
\�6�_B�Bi=Xo���4�R��+���;�1���xq�����^Y�k��[B���f �xO�g>�H[p�ď�|��eMK���4��4�ɒ'�r!Q�ey�e)n4��Q��s�/>e*�,m�ԢdT$��9ċ�ב=���n�M"����x���e�>����[�+%Npt�6�.���=���_t��p5g��u+���!�iB|GS��S`�<���Q�K�T���� 
�>1d�5DB`�Љ��_K��r36L׌��$$P��R�@b�
������� �K���%j@�#1$rA���+���~��%	�)^��-��ؕ@�8�e�Gn�y�؃����5�#l�d"1�L�Y��T�C*���X�)Wy)HR
•�����.��A�CAx�!���SXTUe�I/�]U͕574L
�
F�Zn>1�Ƭ���RJ�V<�tp�L<v�[uUgD��L�ő�w�8���~�(	ʵ��0�-��%v�������)q9<Bs�����'���A��;�kIB�ʒ�%'����qR����1`i�#2���o�O�%��8�M�G�PJ~;T��P��H0��ݴ려�����(����j
|:��Dx]&N!Ne��B����������1]��x%ħ�)��F�DI��\ ���P;p4A�R��ow��&�\�'�%���o.���\�;�i����t����Z܀�p���h
p��<<e���9���ۮi���VC[J|Z���,���P"v��6s�Τ�ߍ����'F�������w��M[�%�9B<<��������&�b�(
%�La��TU�մ���IZ+��,ij�M��r+^Au�#���XU�k���B�X���/&�pc�v��
�,+�p��Cq���*
"��c���O�1�?�����+ �Fۘn�sA�]W��C#X�D;��T�V��±�t�(�����f�)��ԩ9�Ȝi��)�˸!�nP�Ëa�U0j|�yqX�V9����5c9��W�C�p�ź.�b��ZF�7p�����S���/Y.��č��~����2H�f�Y��0+7Ϯ���"v3H"_�,Eá�ڳ�iRw�v��p�-7��i�J�"�Kc���	74':�M�����Ө�/�Mc�n�,èKI�B�2�2�3H�RW�ȹQ�k�	+M^S���^x���\�.���ҼUp�Tu�vF��%vbPI�0���d��o�*�2b�7�A�m�p�q���ނ�Uꣳ� �Đ��+�h.]�n�(�F�F	n��m��HN%+~�8#�1
Ò`6��%2�-�p����
��6��m�9&e�Ĝ>�d�_�GE/��Rg��(�L%�Ec�P�ˇ�KSsF�Y��Q�][�c�"��2`!r5�t�R]uz���Ȏ���ZMT=LK�a��P+a�Жj�4�n*�eV~0dL�Z��RZ�_�p%�m�p�h��G;2�("2c[�懳��7X��:u3��!�+Rvx3���%�Vʻ�&=�*9#����&�I��Cd�Δ�6��ya�߸�GX�Y*���`N�2+�6�T�c�����F�U�%�Y��X�Ħ{0x&6�|��n��P��P�>��t��`v6�<wX�6�3�E4٫�2܆f�G��[C�٠v
�Rkv�W�W;��+}fL��
wΧW�2�g=Tg~��Ư�@D}%�g�1^D�$/x]
�:�y��M$�h
Y�y�cY����f\1��*	��hFE�ɞ$߭�o�盷”q���2cx�����.����� N�W8y�F���bxC/�OB�c�BX)���BL5K��B 5J�=Ψ6T?��9[��ۙ{A�Mo`�Y������5�1���!=/��R�}���ٙDD%]�l��L}T-�WN����>�G��+s��o�T�1:	;�NkĶ7�4t�ij�iܨ�c���!�>�M%0Jg`[7�vYUV�ݬv"���v��K&�ᏲĿGM�3�Zv�e:&�zҌ�l���2���J�a�cG�p�0�M�z�`N�Q���W1��y�V�׋�	̐u�Z����f�4�Ƽyb�UcQ��Z8l�/�3.BCÐ�5�i�a�D�2;�����[�Bk�FR�4'�c���h��
�W�AeplI�e�Pa�fQD�d��'H��F�~W@I���N��9�qմk��ӓ�YSho�����'�	���77
��F��k�s&�c����ѝ�&N���6�8|ƺ�=�N�����19۔#���(�Υ:3��Ȁ�2�1��˩�!��v܎����/��~��,�U26S�d"�*ț�d*`y�?�v���F%Y�KXC�5'4��_꿾�ȓ�ݳa�s+g��,K�j�)"�Ә�2�S
�0�ד<��zնj.�1-O�T�	����c�(ne��<t�PV0���S:�Y]���J�w�2�%[t�����FY�bq|�e�}��b�k-ک���s/�w�wtq4��]���\�=��z6!�G�(�C���t��QR�
�i5���H݊�N�$b'QmZ-��MX�n*�'r�)}(�v�%c1���ʼ�_��߶ʄ�)��C����W��sd"@�Y�SF'��,c�ń�x@H�є|�>#7ʤ���������8�!*E�S�9�5IF�x���rK�,�`�&)DHZu:3P�V��A3�W�}���s����,�$_�!��0�yr���\��x�s'яbY��=_��o�Vq���h�8nl3�V��Z��M�DM�HD��]���9}�=�5`�?c?�9(H֧���n��c�=��c�=��c�=��c�=��c�ڹ{�Ga8�_(*�C	�"788J^@�[
���I�=�d�Ft��ԫ��'_����s�'�s�~��<�G""���!U�h�Υ{��x�	wb��5p&>��
�3:��^�[�<�iz��K�����b�)����ś���;L��h�O���~��=<M���"2~�o�Ξ��|M��m
8׀ָ����R��]���x���+���H(ǧ�)�����.��w���1�M-���w@m��3��Ӽ�l�{G��e�F��6��g&x���Ⱦ�@����}f��đ�eQ��2V���x�[
I�Lf!k^Ke
1lG�]]S\�	�f(0]k�����Jԅ��2<��W]��#-�JZ�Ui�DZ�(>�	���!�¼�^�::��k,Rx�- m|3�Ed'�r�h_��b3�6K�&�C/Ȉ�/
F�4�����@�m�J/ i�(<�5>�y?�Q��X�b%� WTn���5렩�Ɗ%�x%+�lwU/r�m��Pk|�޶��S&~�5z�\�0�	~��~*��F��7a&�[?�l{0*�ڝX�%C��2.=J;�\�3�8"��?#�2fKV�Cmťw"�����H}g���m�f��g���m�`6F/�t�Hwۊb���s�4�T��7R!w%�t�
��.��	(��|5���S6~ֆ��a�	?�x���}��)2R�<:�gAp
�~���K��L�R�clU^Z�
�S��5F��ɼ\��dw��ߚe�m�9 ɋ�!OU�w%1�xf{
C�f$�TMv����͸��w�h�m”���]���i��a�"p;��t�˳3W����R�q����Pux���$�'|"�=��̋m^ZVv�,��w9\��b}Ɏ��{�l�
�8g۫0��}t��X4��|�퐒��#tIH�����������8&�����r�u��Ra��:9�X��Z�a-7���,�XS7��H�F($�E��"h:`����i��8—�F��>h\G
�������f��Pzu}S�қ��amh�vnm�p6j3����
����8o��<AD�9&�;z��&Qoo�+h8g
@���\�U��M��|}�e��÷�Ɵl񻨠,�
����y��O�xPX�1h�?{'\<>=�%��ԁ`�9�r��}�^X����2���
�_��"�u'Sg��p�pܨ0�b��z��~1a���-*�5
�$(:�1���_J��F��y�A9��ɓ]���8��o���=�yb2:ȅ��}!��I���X6K@~�3�{�Np�m����<l�^`�`�ş�*C������
��b�X,��k��)3�+�$IEND�B`�themes/architekt/v1.0.0/style.min.css000064400000034444151213255570013304 0ustar00.ms-theme-architekt{opacity:0;overflow:hidden;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-theme-architekt.ms-loaded{opacity:1}.ms-theme-architekt.metaslider-flex{padding-bottom:60px}.metaslider.ms-theme-architekt *,.metaslider.ms-theme-architekt *::before,.metaslider.ms-theme-architekt *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-architekt .flexslider{margin-bottom:0}.metaslider.ms-theme-architekt .rslides img,.metaslider.ms-theme-architekt .nivoSlider{float:none;overflow:visible;padding-bottom:80px}.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-architekt ul.rslides_tabs,.metaslider.ms-theme-architekt div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;line-height:15px;margin:0;padding:5px 0 0 !important;position:absolute;right:40px;top:100%;-webkit-transition:top .2s;transition:top .2s;width:220px;z-index:8}.metaslider.ms-theme-architekt .coin-slider .cs-buttons{background:transparent;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;left:0;line-height:15px;margin:0;padding:5px 0 0 !important;position:absolute;right:0;top:100%;-webkit-transition:top .2s;transition:top .2s;width:100%;z-index:8}.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-architekt ul.rslides_tabs li a,.metaslider.ms-theme-architekt div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-architekt .coin-slider .cs-buttons a{background:transparent;border:0;border-radius:0;-webkit-box-shadow:none !important;box-shadow:none !important;color:inherit;cursor:pointer;display:inline-block;font-size:11px;height:auto;line-height:15px;margin:0 5px 0 0;padding:0;padding-bottom:3px;position:relative;text-decoration:none;text-indent:0;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:auto}.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a::after,.metaslider.ms-theme-architekt ul.rslides_tabs li a::after,.metaslider.ms-theme-architekt div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a::after,.metaslider.ms-theme-architekt .coin-slider .cs-buttons a::after{border-bottom:2px solid;bottom:0;content:'';display:block;height:1px;opacity:0;position:absolute;-webkit-transform:translateY(5px);transform:translateY(5px);-webkit-transition:.3s all;transition:.3s all;width:100%}.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-architekt ul.rslides_tabs li:last-child a,.metaslider.ms-theme-architekt div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-architekt .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-architekt ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-architekt ul.rslides_tabs li a:hover,.metaslider.ms-theme-architekt div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-architekt .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-architekt .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-architekt .coin-slider .cs-buttons a:hover{background:transparent}.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-architekt .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-architekt ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-architekt ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-architekt div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-architekt .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-architekt .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-architekt .coin-slider .cs-buttons a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-architekt .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-architekt div.nivo-directionNav{position:absolute;right:0;top:100%;-webkit-transition:top .2s;transition:top .2s;width:300px}.metaslider.ms-theme-architekt .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-architekt a.rslides_nav,.metaslider.ms-theme-architekt div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-architekt .coin-slider .coin-slider div a{background:transparent;-webkit-box-shadow:none;box-shadow:none;color:black;height:20px;opacity:1;overflow:visible;text-indent:-9999px;top:30px;-webkit-transform:none;transform:none;width:34px}.metaslider.ms-theme-architekt .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-architekt a.rslides_nav::before,.metaslider.ms-theme-architekt div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-architekt .coin-slider .coin-slider div a::before{border-bottom:2px solid;border-left:2px solid;content:'' !important;display:block;height:8px;left:3px;position:absolute;top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:8px}.metaslider.ms-theme-architekt .flexslider ul.flex-direction-nav li a::after,.metaslider.ms-theme-architekt a.rslides_nav::after,.metaslider.ms-theme-architekt div.nivoSlider div.nivo-directionNav a::after,.metaslider.ms-theme-architekt .coin-slider .coin-slider div a::after{border-bottom:2px solid;content:'' !important;display:block;height:2px;left:3px;position:absolute;top:8px;-webkit-transform:translateY(-5px);transform:translateY(-5px);width:30px}.metaslider.ms-theme-architekt .flexslider ul.flex-direction-nav li a:hover,.metaslider.ms-theme-architekt a.rslides_nav:hover,.metaslider.ms-theme-architekt div.nivoSlider div.nivo-directionNav a:hover,.metaslider.ms-theme-architekt .coin-slider .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-architekt div.nivoSlider div.nivo-directionNav a{top:13px;-webkit-transition:top .2s;transition:top .2s}.metaslider.ms-theme-architekt a.rslides_nav{margin-top:11px;-webkit-transition:top .2s;transition:top .2s}.metaslider.ms-theme-architekt a.rslides_nav.prev{left:auto;right:264px}.metaslider.ms-theme-architekt .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-architekt div.nivoSlider div.nivo-directionNav a.nivo-prevNav{left:0}.metaslider.ms-theme-architekt.ms-is-small .rslides_nav.prev{left:0;right:auto}.metaslider.ms-theme-architekt .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-architekt .rslides_nav.next,.metaslider.ms-theme-architekt div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-architekt .coin-slider .coin-slider div a.cs-next{right:0;-webkit-transform:scaleX(-1);transform:scaleX(-1)}.metaslider.ms-theme-architekt .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-architekt .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-architekt .rslides .caption-wrap,.metaslider.ms-theme-architekt div.nivoSlider .nivo-caption{background:transparent;color:inherit;margin:0;margin-right:300px;opacity:1;padding:0;position:relative;-webkit-transition:.5s all;transition:.5s all;width:auto}.metaslider.ms-theme-architekt:not(.has-filmstrip-nav) .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-architekt:not(.has-filmstrip-nav) .rslides .caption-wrap,.metaslider.ms-theme-architekt:not(.has-filmstrip-nav) div.nivoSlider .nivo-caption{-webkit-transform:translateY(20px);transform:translateY(20px)}.metaslider.ms-theme-architekt .rslides .caption-wrap{margin-top:-80px}.metaslider.ms-theme-architekt div.nivoSlider .nivo-caption{margin-bottom:-80px;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-architekt div.nivoSlider .nivo-caption a{color:inherit}.metaslider.ms-theme-architekt .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-architekt .flexslider ul.slides .caption-wrap{height:auto}.metaslider.ms-theme-architekt .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-architekt .rslides .caption-wrap .caption,.metaslider.ms-theme-architekt div.nivoSlider .nivo-caption,.metaslider.ms-theme-architekt .cs-title{text-align:left}.metaslider.ms-theme-architekt .flexslider ul.slides .caption-wrap .caption>*:first-child,.metaslider.ms-theme-architekt .rslides .caption-wrap .caption>*:first-child,.metaslider.ms-theme-architekt div.nivoSlider .nivo-caption>*:first-child,.metaslider.ms-theme-architekt .cs-title>*:first-child{margin-top:0;padding-top:0}.metaslider.ms-theme-architekt:not(.has-thumb-nav) .flexslider ul.slides li:not(.flex-active-slide) .caption-wrap{height:0}.metaslider.ms-theme-architekt .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-architekt .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-architekt:not(.has-thumb-nav) .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-architekt .rslides .caption-wrap .caption,.metaslider.ms-theme-architekt .nivoSlider .nivo-caption{font-size:1em;padding:20px 30px 20px 0}.ms-is-small.metaslider.ms-theme-architekt:not(.has-thumb-nav) .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-architekt .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-architekt .nivoSlider .nivo-caption{padding-top:60px}.metaslider.ms-theme-architekt .filmstrip{border-radius:0;margin-top:5px;width:100%;z-index:4}.metaslider.ms-theme-architekt .filmstrip ul.flex-direction-nav li a{top:calc(50% + 17px)}.metaslider.ms-theme-architekt .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-architekt .filmstrip ul.flex-direction-nav li a.flex-prev{left:5px}.metaslider.ms-theme-architekt .filmstrip ul.flex-direction-nav li a.flex-next{right:5px}.metaslider.ms-theme-architekt.ms-has-caption .filmstrip{margin-top:0;position:absolute}.metaslider.ms-theme-architekt.has-filmstrip-nav .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-architekt.has-filmstrip-nav .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-architekt.has-thumb-nav div.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled{text-align:left}.metaslider.ms-theme-architekt.has-thumb-nav div.nivoSlider .nivo-caption{background:rgba(255,255,255,0.85);bottom:0;margin:0;overflow:visible;padding:15px;position:absolute;-webkit-transform:none;transform:none;width:100%}.metaslider.ms-theme-architekt.has-thumb-nav .flexslider ul.slides .caption-wrap{background:rgba(255,255,255,0.85);bottom:0;padding:15px;position:absolute;width:100%}.metaslider.ms-theme-architekt.has-thumb-nav .nivoSlider{overflow:visible;padding-bottom:0}.metaslider.ms-theme-architekt.fullwidth .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-architekt.fullwidth .rslides .caption-wrap,.metaslider.ms-theme-architekt.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-architekt.fullwidth .cs-title{margin-right:320px}.metaslider.ms-theme-architekt.fullwidth .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-architekt.fullwidth .rslides .caption-wrap .caption,.metaslider.ms-theme-architekt.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-architekt.fullwidth .cs-title{padding-left:20px}.metaslider.ms-theme-architekt.fullwidth .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-architekt.fullwidth ul.rslides_tabs,.metaslider.ms-theme-architekt.fullwidth div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){right:60px}.metaslider.ms-theme-architekt.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-architekt.fullwidth div.nivo-directionNav{right:20px}.metaslider.ms-theme-architekt.fullwidth a.rslides_nav.prev{right:284px}.metaslider.ms-theme-architekt.fullwidth a.rslides_nav.next{right:20px}.metaslider.ms-theme-architekt.fullwidth.has-thumb-nav .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-architekt.fullwidth.has-thumb-nav div.nivo-directionNav{left:20px;right:20px;width:calc(100% - 40px)}.metaslider.ms-theme-architekt.ms-is-small{padding-bottom:50px}.metaslider.ms-theme-architekt.ms-is-small .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-architekt.ms-is-small .rslides .caption-wrap,.metaslider.ms-theme-architekt.ms-is-small .nivoSlider .nivo-caption{margin-right:0}.metaslider.ms-theme-architekt.ms-is-small .flexslider ol.flex-control-nav,.metaslider.ms-theme-architekt.ms-is-small ul.rslides_tabs,.metaslider.ms-theme-architekt.ms-is-small .slider-wrapper .nivo-controlNav,.metaslider.ms-theme-architekt.ms-is-small .coin-slider .cs-buttons{left:0;right:0;width:100%}.metaslider.ms-theme-architekt.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-architekt.ms-is-small .nivo-directionNav{width:100%}.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) div.nivo-directionNav{right:0}.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) .rslides_nav.prev,.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) .coin-slider .coin-slider div a.cs-prev{left:20px}.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) .rslides_nav.next,.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-architekt.ms-is-small.fullwidth:not(.has-thumb-nav) .coin-slider .coin-slider div a.cs-next{right:20px}themes/architekt/v1.0.0/theme.php000064400000002062151213255570012452 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Architekt extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     * 
     * @var string
     */
    public $id = 'architekt';

    /**
     * Theme Version
     * 
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     * 
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_architekt_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_architekt_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['architekt'])) {
new MetaSlider_Theme_Architekt();
}
themes/architekt/v1.0.0/script.js000064400000006255151213255570012511 0ustar00(function($) {
	/**
	 * Extra JS for the Architekt theme
	 *
	 * 1. positions the different elements:
	 *    - arrows
	 *    - dots
	 *    - caption
	 *    - filmstrip
	 */

	// metaslider has been initilalised
	$(document).on('metaslider/initialized', function(e, identifier) {
		// if .ms-theme-architekt
		if ($(identifier).closest('.metaslider.ms-theme-architekt').length) {
			var $slider = $(identifier);
			var $container = $(identifier).closest('.metaslider.ms-theme-architekt');
			var captions = $slider.find('.caption');
			if (captions.length) {
				$container.addClass('ms-has-caption');
			}
			$container.addClass('ms-loaded');
		}
		$(window).trigger('resize');
	});

	$(window).on('resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider.ms-theme-architekt').each(function(index) {
			var width = $(this).outerWidth();
			// if the slider width < 600px
			if (width < 600) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}

			// slightly delay action after resize for a smoother transition
			setTimeout(function() {
				var margin_bottom = 0;
				var $thumbNav = $(this).find('.filmstrip, .flex-control-thumbs, .nivo-thumbs-enabled');				
				// gets the slideshow's height
				var height = get_max_height($(this).find('.flexslider > ul > li img, .ms-image > img, .rslides > li > img, .nivoSlider > img'));

				// if has filmstrip nav
				if ($(this).find('.filmstrip').length) {
					// var $thumbNav = $(this).find('.filmstrip');
					var thumbs_height = $thumbNav.find('img').prop('height'); 

					// Filmstrip position
					if($(this).is('.ms-has-caption')) {
						$thumbNav.css({'top': height + 5});
					}

					// arrows position
					$(this)
						.find('.flex-control-nav, .flexslider .flex-direction-nav')
						.css({'top': height + thumbs_height + 15, 'bottom': 'auto'});

					// caption position
					$(this)
						.find('.caption-wrap')
						.css({'margin-top': thumbs_height});
					
					// margin_bottom += thumbs_height + 15;
				} else if ($(this).find('.flex-control-thumbs, .nivo-thumbs-enabled').length) {
					// var thumbs_height = $thumbNav.find('img').prop('height'); 					
					// thumbnails for flex
					// $(this).find('.flex-control-nav').css({'top': height, 'bottom': 'auto'});
					// Arrows
					$(this).find('.flex-direction-nav, .nivo-directionNav').css({
						'top': Math.round(height + $thumbNav.outerHeight() + 6),
						'bottom': 'auto'
					});
					margin_bottom += $thumbNav.outerHeight();
					if ($(this).find('.flex-direction-nav').length) {
						$(this).css('padding-bottom', margin_bottom + 15);
					}
				} else {
					// arrows and dots position
					$(this)
						.find('.flex-control-nav, .flexslider:not(.filmstrip) .flex-direction-nav, .rslides_nav, .rslides_tabs, .nivo-directionNav, .nivo-controlNav')
						.css({'top': height + 15, 'bottom': 'auto'});
				}
			}.bind(this), 50);
		});
	});

	/**
	 * Get maximum height of the elements collection
	 *
	 * @param  {jQuery object} elms 
	 * @return {int}
	 */
	var get_max_height = function(elms) {
		var h = 0;
		$(elms).each(function(index) {
			if ($(this).height() > h) {
				h = $(this).height();
			}
		});
		return h;
	}
})(jQuery)themes/architekt/v1.0.0/style.postcss000064400000016573151213255570013433 0ustar00/** 
 * Containers 
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides. 
 * Don't be afraid to use !important as needed.
 */

$theme_name: architekt;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-theme-architekt {
	overflow: hidden;
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
	&.metaslider-flex {
		padding-bottom: 60px;
	}
}

$(theme_prefix) {
	*,
	*::before, 
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
		/* max-width: 100%; */
	}

	.rslides img,
	.nivoSlider {
		float: none;
		padding-bottom: 80px;
		overflow: visible;
	}

	/** 
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		position: absolute;
		top: 100%;
		right: 40px;
		width: 220px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 5px 0 0 !important;
		z-index: 8;
		transition: top .2s;
		flex-wrap: wrap;
	}

	@mixin dotsContainer coin {
		display: flex;
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		width: 100%;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 5px 0 0 !important;
		z-index: 8;
		transition: top .2s;
		flex-wrap: wrap;
	}

	@mixin dotsLink {
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		display: inline-block;
		line-height: 15px;
		margin: 0 5px 0 0;
		background: transparent;
		text-indent: 0;
		color: inherit;
		text-decoration: none;
		font-size: 11px;
		width: auto;
		border-radius: 0;
		height: auto;
		padding: 0px 0;
		padding-bottom: 3px;
		position: relative;

		&::after {
			content: '';
			display: block;
			position: absolute;
			bottom: 0;
			width: 100%;
			height: 1px;
			border-bottom: 2px solid;
			transform: translateY(5px);
			opacity: 0;
			transition: 0.3s all;
		}

	}

	@mixin dotsLinkLastItem {
		margin-right: 0;		
	}

	@mixin dotsLinkActive {
		background: transparent;

		&::after {
			transform: translateY(0);
			opacity: 1;
		}

	}

	/**
	* Arrows
	* 
	*/
	@mixin arrowsContainer flex, nivo {
		position: absolute;
		top: 100%;
		width: 300px;
		right: 0;
		transition: top .2s;
	}

	@mixin arrowsLink {
		background: transparent;
		text-indent: -9999px;
		box-shadow: none;
		width: 34px;
		height: 20px;
		color: black;
		opacity: 1;
		overflow: visible;
		transform: none;
		top: 30px;

		&::before {
			content: '' !important;
			position: absolute;
			top: 0;
			left: 3px;
			display: block;
			width: 8px;
			height: 8px;
			border-left: 2px solid;
			border-bottom: 2px solid;
			transform: rotate(45deg);
		}

		&::after {
			content: '' !important;
			position: absolute;
			top: 8px;
			left: 3px;		
			display: block; 
			width: 30px;
			height: 2px;
			border-bottom: 2px solid;
			transform: translateY(-5px);
		}

		&:hover {
			color: black;
			opacity: 1 !important;			
		}		

	}

	@mixin arrowsLink nivo {
		top: 13px;
		transition: top .2s;
	}

	@mixin arrowsLink rslides {
		transition: top .2s;
		margin-top: 11px;

		&.prev {
			left: auto;
			right: 264px;
		}

	}

	@mixin arrowsLink__prev flex, nivo {
		left: 0;
	}

	&.ms-is-small {

		@mixin arrowsLink__prev rslides {
			left: 0;
			right: auto;
		}

	}

	@mixin arrowsLink__next {
		right: 0;
		transform: scaleX(-1);
	}

	.coin-slider .coin-slider div {
		display: block !important;
	}

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
		position: relative;
		background: transparent;
		color: inherit;
		margin: 0;
		margin-right: 300px;
		opacity: 1;
		padding: 0;
		width: auto;
		transition: 0.5s all;
	}
	&:not(.has-filmstrip-nav) {
		@mixin caption flex, rslides, nivo {
			transform: translateY(20px);
		}
	}
	

	@mixin caption rslides {
		margin-top: -80px;
	}

	@mixin caption nivo {
		margin-bottom: -80px;
		transform: translateY(0);
		a {
			color: inherit;
		}
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	@mixin caption flex {
		height: auto;
	}

	@mixin caption__text {
		text-align: left;
		& > *:first-child{
			margin-top: 0;
			padding-top: 0;
		}
	}

	&:not(.has-thumb-nav) .flexslider ul.slides li:not(.flex-active-slide) .caption-wrap {
		height: 0;
	}
	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
		transform: translateY(0);
	}


	&:not(.has-thumb-nav) .flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {
		font-size: 1em;
		padding: 20px 30px 20px 0;

		.ms-is-small& {
			padding-top: 60px;
		}

	}

	.filmstrip {
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 5px;
		ul.flex-direction-nav li a {

			top: calc(50% + 17px);

			&::after {
				width: 10px;
			}

			&.flex-prev {
				left: 5px;
			}

			&.flex-next {
				right: 5px;
			}
		}
	}

	&.ms-has-caption .filmstrip {
		position: absolute;
		margin-top: 0px;
	}

	&.has-filmstrip-nav {

		@mixin arrowsContainer flex {
			width: 90px;
		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

	/* Thumbnails */
	&.has-thumb-nav {
		div.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled {
			text-align: left;
		}
		/* @mixin arrowsContainer flex, nivo {
			width: 100%;
			left: 0;
			right: 0;
		}
		@mixin dotsContainer nivo {
			position: relative;
			width: 100%;
			right: 0;
			left: 0;
		}
		@mixin dotsContainer flex {
			position: absolute;
			width: 100%;
			right: 0;
			left: 0;
			padding-top: 0;
			margin-top: 0;
		}
		@mixin arrowsLink__prev nivo {
			left: 0;
		} */
		@mixin caption nivo {
			width: 100%;
			position: absolute;
			bottom: 0;
			margin: 0;
			padding: 15px;
			background: rgba(255, 255, 255, 0.85);
			overflow: visible;
			transform: none;
		}
		@mixin caption flex {
			width: 100%;
			padding: 15px;
			background: rgba(255, 255, 255, 0.85);
			position: absolute;
			bottom: 0;
		}		
		.nivoSlider {
			padding-bottom: 0px;
			overflow: visible;
		}
	}

	&.fullwidth {

		@mixin caption {
			margin-right: 320px;
		}

		@mixin caption__text {
			padding-left: 20px;
		}

		@mixin dotsContainer flex, rslides, nivo {
			right: 60px;
		}

		@mixin arrowsContainer flex, nivo {
			right: 20px;
		}

		@mixin arrowsLink rslides {

			&.prev {
				right: 284px;
			}

			&.next {
				right: 20px;
			}
		}
		&.has-thumb-nav {
			@mixin arrowsContainer flex, nivo {
				width: calc(100% - 40px);
				right: 20px;
				left: 20px;
			}
		}
	}

	/**
	* When slider is small (< 600px)
	*/
	&.ms-is-small {
		padding-bottom: 50px;
	}

	&.ms-is-small .flexslider ul.slides .caption-wrap, 
	&.ms-is-small .rslides .caption-wrap, 
	&.ms-is-small .nivoSlider .nivo-caption {
		margin-right: 0;
	}

	&.ms-is-small .flexslider ol.flex-control-nav, 
	&.ms-is-small ul.rslides_tabs, 
	&.ms-is-small .slider-wrapper .nivo-controlNav, 
	&.ms-is-small .coin-slider .cs-buttons {
		/* bottom: -35px; */
		width: 100%;
		left: 0;
		right: 0;
	}

	&.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,
	&.ms-is-small .nivo-directionNav {
		width: 100%;
	}

	&.ms-is-small.fullwidth:not(.has-thumb-nav) {

		@mixin arrowsContainer flex, nivo {
			right: 0;
		}

		@mixin arrowsLink__prev {
			left: 20px;
		}

		@mixin arrowsLink__next {
			right: 20px;
		}

	}

}themes/architekt/changelog.php000064400000000115151213255570012452 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/highway/screenshot.png000064400000534531151213255570012375 0ustar00�PNG


IHDR�x|GtEXtSoftwareAdobe ImageReadyq�e<��IDATx�t�ٖ$ɑ,f�/����1��{��>�|�9�p@wWefD�bUD�<2`u�Q]����.������7�l5��*0�X��/'���/���򟕿����/�o��ow�Cշ���?0���S\��Ug�Ϧ}o�%[��|#>_����oī|����R떪3N~y_������^�_o�:�|�Wϻ���K��Z�?Ԭ�N��iOe/V>e���X>���q�Q�]>�������ˇ�[�WO�!]W�޶�mq,��?�&S�|�c�X%<�*w\�}��I�]=Y)���Ҕ�
r%|2r�%�0�\�O�T�w�&[s����F�U�3���/�]�gk#n�_�y%���}�O���_��9����_KJ%U���J�+j���[��^p�P���S�w�gg��D�X�|\��WMoB>o�w?O6Dl���|����«q�q�M`�]�Q>څ��6�.��-nw�O�X;,�n|Y^^����A(��L�Y���M�-y���E�H���,�����)!Oy�%���S��l�%YS7E٥�	e�XL��f���d-}p�Kq�|�V�l��潮n�I^^�Ȳ�^�srp�$o7*ǩ_p�
��n�e�owku�f��(��c-Yʖ�A���R��j�(?�G(_M�{q�`��1W�n�����K#�]���U���9f�|�|�T}bzqjY���қ���W[����0L44�8�x���C���j�7���{�<�jM���oG3��r18�bt*��������>������re�B�A���$��Yfl5]s<��X�*�Y�\�<��p8cp_���7�R�B�0�(�U��x�:�爍Z����{,��Ml��c�k����.��e�z�~jN�U���Mkha�Q��]脰=M��_�n�yQ�݌���(�-�\��^�,x���
[��f���6�y1��,�����pt�T۶�W>V�"_Y�?�+�W�e��C�]��C�'�����e[����6���y�Ը��F^��o�G�ʣ���!?�mc�_��o�0�ܹ�o���e;W�XnV]>���+������W#?���-��l�}˲]eł��#���~ʶ�a>N)���|�
S�Ŋǂ��V����ۮ�H��a��U��펔�L�G>0����7�-��SZ>��zlj�|��0��qC�#
ܾ;oR\q�1�+��"/�Nh����?�ߕ;PL�\֒g?��xUa���K���l;�ç{�ϣ>lY��t��7a#����{���;���J�ж��6����Fm��0�:5U�8'���e+;1�	G�$���'�5j��8��oƲ&16��b��PqC4V}&ַ�0��-����e�xŶ�=����|��"eZ1��#��l����'�s���[z9W�k�*6Q|f9+��q�4C0�`L�w�Pj��W��2�W�B~;xc��9���;`�����{������_���ꋯ���A��e��s}%d�Wd�[�P��Q��5z���N7rmv�{z~��p��a�$��h����6���v�p�z���9\{	�M���OZM�q���	Я��I���
��lJw����)<jpqzz��&�,K(WY�ñN�M�uc1�+�2�g�$I���(���V�,��E0��l`?M�M��=`՜��ʫ$�WOB6X��MX,�B��I�2;`oH��G(�?���MaK�M�(c��D �U?<�E
sG󴻁�I>y���ni+�X#������%���޸?�O6�[�#޵���\�`L�݂g�햔�Xpk��o�Gr�}���v����e���V=�����HH��m���;�M�>G�G)~�^��pA��Ү2g	]L���zUW�uv�vvq�����߯xN����'��!�-q�4�e��)��D�4~ɏ.�At]��YNE��ma��ᤕ�ݯ+��^�"���v������\gG�Œ�/<rՖq�#a��AL�F�x�V"���8�x#Y�U!Q#�tɞ���*�꧸-��'�
���H�j�Q�C$~�!TB�}eF�'�"����Ѵ����GL�dm%�f���I�7xl��[ux�sb̈�Xd	�IN��p��e�ͨU&e����R�Ē$�'V�c�P��`��9��^5�R+�cX�D����qi�Ym*�3�o�.�U,e�m8)�!I|�����$��g^!]�|D�:l\v�&&krm��^Ə6N~��G��g��&��"㖛+��NA�\�lI\r���0�՟�q�i��In7�k&7Ƽ�M��FȎ�]xV�����5�aB�(f���b%��iG˸R§����X�T�™��50���9|��b����j�Pm)p.F#=3��GO0i�23 ׬���c��a��\,+f� S��`����N�,����L6b���H��6n1��|]6C���wni�s�1q�qk඗�D�H�X?���iA>_���)�.�`�VD�[��v�:��%���qX@/��=>Y�d٫���2������'1^!V��.�=0�xs"=ah�>Fr����3?˂x��k^�.�O�6�NnD�%B�{|�(����n�W�R�M��f\K��gX����$�vpn�`��/��o�~zc��#�Ĺ�����*��(�	��b��0��K�[.@k�Z;��r�σ�+/[<�q���+5q�C; ��3���1���D)�&�辰�{�+g�3�Lri�"f�3�r@��FVRnD�.ɠѴF�X]$\b��8�Ѻ��'0���O�7⹒a�����,IDF�]��7�BǼ��`�������Ұ"r��U��
�J|��^�\yB*@���|���%O��	9O�Kˮ�m����@�����/ϭ�u�y��x�\E��拶�̎Z�����~�K:�t��[��y���Q	<�]��a�-��^)Y�z��E�?jx4�a�v\+�����'Ú�G�x`��4�6�N6�&<^�<�}�m"����Ĵ�`vL@�&�YM�D����S���]�'t��I[�-���&}�����A�5�\�fK!3�/&D���/��j(�d�Ѩgt�,I��gCv1���e�ȗ���ߔv�@$�b���gڂ[FL��$�*�A�t��*�{$J���/b�
������4��QI2�������7s������L�U��nԏ�C�����y�Q� >�%ߔ�p�v@5"Y�p�U�2��]^��:5\rwb$:���t������Ɖ$�gԵ�mV�+�@^7�y���X��!�����^ �xN�a8�l�ɀ��zqkzI0�x�B���� b����K�	��Q�)@�S�/�8<�e\��q�3�*Xv�0e��i1J�|��l���!7Ϛn��x�U6��"�ͫ-c^`>g�
=�2�5�F��g%�R����zn��KA8���e���xgnu"�li�Z0���~6bI
�ZS�I��)���M�_U��At��Ā�+K����L��a-��^�BR��_w�5�ʹ�]<�0��N\�mat]� g;�0���!����ቖX;�R���NQ�3d�Ѱ�8{,=H`%nُ�(q;L�PCDPM��
���e1x,�x�@U�`Kߋ`M(��y�#Y7��fD�C4��A-�!�4/9!����I��V1o�BC���
Q��k�Y��
z�/�q����m��yd��*��ޯ�a�j��!�q
�3E˒ɠJ�?0QJ����OHi�Zāӂ#]�u�h��ޢ�,���H	�`�a����ԧ"�ǎK,p�}wOÔL���c����[9�g�E=�\A�F;G�۴ &>O��
��>>
��/#�J���&�b:	k�ó��MY� �<�%�����G ��.�Q>��I
s
#`}S;�jc���^�I%R �#K:I0-O�1��Z(�J�NϫU�]A�|#M6V7DZd5j�U9��P�@��z��`#��������T�L���5&�ZG{�5�a`$N�4N_��
�����a���z�L��|����4.q=����+�!K#Go��(95냸	h)�fw�� 9]�ʙGN��{J����0s�UG�Y'��� �ˬ�b�šiM�0.�%V878
vJ��
n�|�΃3v��m���46WS?����ɚ�l�u=��NĖ�d}M��G�XJ��LM�~b&�}#@0��#ќlߖU�)5%4w������kQ��W2n��T���u~�eݶ:����@zL�%�,��A��#���
i}��8o�ML�daZ�����+�^h%�#��;�wT�����IW�J�X�~�y]`M+N~�ȪQX�t*Qc�)p>́��3��4��Rע�E�۶��[H0��4�XU~Kx�4�@G��
Nw-�y�DJ���6�'�/+%���\�����IJ.U+>I���ma�ڑ	���3�a�K,e��œ�˜�Y`�=�`7ʶ14�����K���K��(e��4b�Ȫ�%<F����\��րAdv�~�ޖ]���p�
��`��D[eV��ӓ9�U��(���u�~�mKoi���|.����� �l��j��L3�����-��#9EVC��̓l�!=�%F�? s�M�+�!�*��%ʊ�����׼�L��YDŒ$�lٱQ7HBLa*�%Iv�%��'���ڹF��\���Ԓ��(�7:<ͲC��fY�GF`���8.���<�SXX*@����)}�
��V�0�҈t��sxUܖ�h�Jˢ>�:l�w0 oިH�4�/��)#[z�Q�7�r?IA'���:D1tQ�)œ�3Lb,�]�ГF��9��!�L����Gr�e]/����.Z&�E�)_��<�SE4��ڃ��r�p�a��7@$�I&7>���݈sJ�{@����@6�ܬ'��V�`#��%����j�f�;��-,�W�9�x�D�}���Z\�9d0@b��֪�uE��$Rp���a�u�
��0�z��c4��t���d�߬3�~����=j��s$��'����4����]9U�rn�B��S,GÐ_"�Ɲ��Ʌ0�-Z����=�V��d�1�Rk�¢8B�-J����Fz�K�����Q�;"s�Z=�m�Q��-�X�����?���{t�A]�u�W/�٤h�F�90��1�WfC�r)��	ĴR��@qbi�ϡ*Z�0)�CaNݦ!209�aP���&�lI�>�ae��w���M,����4� �@��Z[�/��T:N��ql@l'����n����dH�����j�| �C�;7�t�dIi��i�
�Uܲ$Xʈ����!�ح�������]���d% ���V��-=��D8H�K�@�|���n�\�A����HܣF>4�)ygU����4�+yײ�����Os�zm�յ�q�t?������E�&d�^>x��.�p�o����Td7�v!� ʉB�&�7�D��/�<49�bP�O;��<��0�7E�q#���@�y/Zn��Yw	���d%ŸFx�eK�M�lA�FPC�X{b��pI�X��v�`AB5��'���"4��#�k�!$��f��=-���eExD����7�x"�_I�æiS�
��-���(�s���A�����3Z4=m�;�	�����9��(��Z� �ڇ�*�P��d�˵�iK㛛�vH��ϣl[�P�s��W��ڢ>�F���m5��k��|y"�Gn+}Y!3ϓ�H�;���$QѮ�
�y�~=Y�#-�s1Ej˦Ie�#T`�j�LF+}�{/�S#g���m#��m7���GK�Ay^Lղi��
K��+��T
�#���3�C��QG��A8ϻv
�U~��,��x*���,܏%p���w��6$�C }9�|7&�q6yq�bv��k�2h��@�=շ�l7�7�V��<U�_'Y�u��VzWV��0de]m�v��'/� ��Y"�SM���,ϴ�DL���Kd�
������@.;�y����CB�"qe�bS��ʋ�a��(A�=`��pZ�+����r���r����4�yΓ�Gn���D.W��!�y�����,
�sF������W��7�dF��'��b���XFE�Q���{m�	�1)����O����5�W2$
��;5
"�oZ(_ɪg�Y�5�ޚ`[Y\���I�,X�[a��|�p0ϕO��k���>@&-}�uk���!n���%4lW# R�m����x4���H[v���O���մ��`ͱ*h�d\Ȑ�J�������]Q�͘
Vf%��D�ݔ`��F9l�N\�1��%�/�s�8�f,ָ��V+VMzE�2�*VK�X"�.-�-m�2(�!��57[L�٥��9�
�z�F=����fԡ��Y�@ɤ%W���^ǷF��h�-�-FX ���n��Ĕ.���R�%I.F_Y���Xa�/.�,���e�C��7�4�98R��tW���˨�
��I�QM1�n
��`�ߒ9(��^XM�X�^Y�&��S0�2�52�m���;1ɭΓ�&!9j�ލb2|�Wq$E��`m]�(y���T��^2"���龯r@��Y��6ֲZi�5�`T�FrC�m�O����b�]棃ḯ~iq���Yb��ۼ/8[!T��)��5x�JHV� �0Mq�w�ZIڤ�� GeE�^���d���"@ɭJ
�#sj��.<�4�^�L�6�(��m�ɠ����+͹eMȃ!�)���u�\X)�A�й�g��꠲�xQK<:�J�KG����e����誱���5tԨ�_B;�t���O�����҈�Z����-v����6�b��$o�$J�'L&^��a�ف��� ��[f/�a�/��)����ގCӝ׬!9��5Xq+����E�
���J�<k2�	��D�nd䭲�2��1�W���t	!�¢�#tn1�'���|4i�C8�0�5I�EŠ�E��/r�*���	9��YVhf�︱�Ur|�XɅ��M-��	j����7�y�߽n��y�'آ�������l�̬�8�\�����@` *I
�	�I��B�Ӿ���I�ᑤ�aO�feo3�.KdWL[����� A:������L�����S�%4A�}m�;�6*���ϳ�þl��/w7����[GY.Y�2:�_��ݳ\M$����s��͈�g����P�|��ݜO>��n�&���㉝���z&c����@a����Z[bW�eW��O&�wP��$ZFٖ�
c�K�)�W�ə�뙭��Ȳ8K��&�G"|��͸��ٺkz˕bVH��ϻ��a�xmGI�K�v1��p�Y~��a6�P�_;���ֺhٕ/\K���r:�}�����.�1 ��gh��|�:+���IՅ���ЋX7J(�AU�MP�3
�i���nj���q�e_�U���-�c�Z��@�KW�����*��3�F�FZ���3,2e�_�����y��-�/��%���DM��=�/O������+�����F΃|ѷ?�8�
�;	�$*axI�"��,m՚��YO���62�����`��l5i�IJe�~��gs~p���-�y�%�B�#B	�ǩ,7~J��g�����*1���d#�/4�-xf5���o�_��2��i����H�[�
����w������*q�^�Q<�=rǑ�A�%H�y�D*����m-�O�USu`�
���vT|H<����Y��{ ?Es�(�]S��y�RJ�s�3Ѫz?�V��l���ȋ��O}�ovɐ��u��|T�F����B~��7sK�cڍV0W�HE{��+s%9�1��Ԯ:�]��̑>�F�V�����n��c\i`����a����Q�:8���Ҵ�@i\��d�.�@�r�Y�v@6�`�V�����g�B5L�H;r����F6w�?�dϦ�Ws���4|��cj�}Z	�ț6���$k�$Z�+ڪ5�k=6��d!W��0�l\F�/wK�(��Is��x�%��^\�85�����ʒ�JL�)�آ9&j���9��Y�JhW��^�j;YIX�<[ż@j��:�%�D}�,��0��6�t]U;����g�U�X�"	W��je���@��'�j� aj���|�|�<����߯�%IP#v�~���,G�	��4�e}w��obۚ<�m��OK�>�=���>���	6��=<�,�2�Ҁ-S��V�H�Y�d�q�����6|;��xZ����e�:��d3y3�7����7�q8|�#��E���I�Sb=r�� 	�Ѧ1B'b�O�?� ��*sk�!dM�H��%��NmF�+2����.$���Ÿ��D\qn=��)89��~et;)����xqn-�j:rjh�E���R�3���%�1��H�1��8+YW��J�
]�6��O]�����M:~�'�6��ǭ������a�#4��"m\jV�I�*Hlh��Z�ء�4�s��R�C�y>bNO��2(kh�;D
�(�"Z��=��BP��v�D�I��X(��t�|=F	_A����-�ql��!#�����o��h�.-��(��n=�]A�Mz#��e�@���}�7��t��g���x��L!���{����j{���>@�@�|m����ֻ��D���2,;���|�K��V�7����h�ϭ�S�F�����؀L,��x�%0�����]��R�kB}YpѴrLZ��2\L�/8?b��E<B�6P��ii}f-k&��e<df��@+�;ʵh;g#D�6�[���=-��\�"�b�0`��z8�sg;�x�L��?�tۇ�Q�O�Mr��31rJoL1G6ǖf	$�wpz�P[Kp��*.p�C�ّ�Xg�����N�c���4UB�rO��~ (��P|�8�R�¦�^DžD5���{܂xM#�m�n�/�[0��`��x���%&j��c>�Z_�&5�;�D�n���~l���w���E�&Qj�n��Q�d�hz+���H]l{|o��;v�%���M}���"�e���F9,�4��y"��`H�[j�C�<��I�'JHl�� Z��65��F���p�2L[N҈l��j�V۝�gdNx�{rJ���V��]N;5OoBz�@�U�d�\"��v�٣o��E��?�U㇠9)�/��}�o���Ncϭ�ؿj3���o�d�nTXx�7����A��8hU��"ُ䫓_-$P��R���.�'"�
�Et�+�w6��;�5��M�ؤ�<����a�hw7MV�$x^Vu���gsԽ�]��}�o���pNo�Z��.m�f]%xz������䉸q���R�b�/���m���%��:�2����kG�W��NqIǾBH��V�!�S���0�u��YUԊvcY����e�2�@�H]�L	$�B?K-*rCC���L�Q�:�@Z;Ӆ̸<�%+G��L��8�%���ۆSi�	�L���M��6�X���V���G��jM��Q7>h	4X�SQΗ9�AW{�Z�n ���j}d[��h���*h���j"Y���
�:Q;�d��U�\�9��5٢����D,��lmC]0KY�t���S����F�XG�#>e� ���M�m�pF�$�=B*Ɣz��K� ���i�)D�d�;~�E��{i����8x�	�zzO��'��i�O y"4�m=]��8�@l?���������Z�ݮ{CI-��\��K��K<�����_8�!�neC����hE.W�y����iG'�'�r쐼,T��.GZw,��a���J��B2���}�d4��;{p|���3r�oI�b�CA3�}��	g��$�
Ob��	�����T������(A��dk�����8��Fˏ�R��6�u�l�h��zP�5)���8�a�ʾ�FK��H���k��' �}Rļt�7��6x�mŦD���)�^j�}h��͕|�h�4��Y�"���=�lҒ�c�3഻j�����Qri�H�z@P���]"��|���IL��M,�]�$e��+���l)ԏ�[���5���6�-4�H�=;�N)|��B�CW�ѡUd:��ˑ������I������4H���&�q1O�̻���ʪPׇ��m��4h,��a���q�ZA�(���!��\�,dloÆ�
��pY	t-aF�:I�6>ұ\5ơ�-�j�����^�q�.�5������]7�	�U_;Xr�G�r���e4��l�<H�"�'-�̵5�U�o6�P�Սb�g��ե:�&���SP<�.�G��]��t��T���3Px~u�(6��>��WM���(_!�J�����h�G�"�m�u��(Ը�`7=��5���r;�?�
D�`���`�9�v���2��s	��N�_߆�|�����Bzc��9�ƝɡJ[���f��%�������<���Rn^��˲�o�
�)���*<B�V��zD[�]�S!�dS	<��h���D�-� 1ڡ󎲩$�cq%0���P_�!O@��6�I��yuk\a+f�g�q��E���/w8��&��h�(<)*�Tj4�Iw�0�Ȧ�����|A�kg���+􄡪)���E��Q���'����?*���D���6�_��0퓢�G�������R�%tDS�j�$ơ��$�Tr�pK~�`�;>��
JM�5e�
��0���q9r��Ռ�C�4�>FKpw��Ɗ�(2O�2�"�fYrfL������DT���BQ!
W[�Ց~����0n�{��Ш��?��PAz*�.�?5[�?*1I��f��)A�8���&�P�6�+}� G۾��3�4;�5n��7�fs�����/p��8I3Rl��d_��0�t'��1)����<���ӀV��_�l@���gaW�<hh����F1�z웎�����ϑ�x�nj��}� lIb���9�9���UM?��)r
{Q�l����,e���r��_8[�u������/��!��#DB�*.aDԱ�����Ԅ��b��L��)-�Ռ3jsyӐ�������h��.�d�X���.��)��4T`��.�V�A#_����BSGӰ�H�#��Z�0��j.t�����`��=LY��x�3��e)d�����	�	�u�:���1�&�kL�i��K�3�wEg��n^�ի�,�?��!��鐞��R܈���C���V�o�;V,y��l�Hx�~6'�Kj2�Zʇ^1��"V�D�v
[���f	�σ󼩤�m�s\
�T0��5�{��iaP�*��,�*����2�gq��ʀF�Ӑ�6�uGcZ+Aa$�:�텊v��I�`>%�b3�i��C
!�*�M�694�4��&������>/�YM�]~���
�O�EE=�u���ءI͏���p���	��`-��
�Dt�'A-���/u]���[=����̺7׬�	U*�=�
�{��oaI6@��<�&W�lhM�Lp��ztG�M	������Y�-��GS'S���ɣ�8���%㘞O�4��w�4���?����戃�.O9�_�3>E�C�7��(B
�ۂ���S&�����.XIL-	��ه�����y ��LM�T�U�s�/s�=m������`?��u�r�c@Y�Kl<
��d�36P�
�����f�Bq.TjɶFoe���`�G�v���K��	ځ0#���+�U��,�:�! [��`@���*[��ԍ�r�4�S��7�&6$�l�jdj \�`��ni�>�&W�ϕ`�܁����G�BIґ�W��%_�)�K�5[I�lBu�L����g�1(��i� }�o�H��u0��d�#��P'�g�0�<h�
[P�E��CE�X��B�˾�
�S0H��h��L{�cu�U��C�6��I��zJM�`�ʿ�&h��oM,���Dу������1|���f�q�h��Y�hzJ��WV�H�k.�E��;u��X��ӿ|cA�ð�$����hlh�q_�M�8=��YD���_�f���8.K
�臶V�ס�a�\����0%��1��k���C��[��eF��"�D
��s^�n���@��Y%��߾��Y��CB�|[�䇧�%�����nP%��Q�t�$@ȷM�����Oeߌ�� ��n|:��m�%^�?�J��+��6�
�l��䐲!w���`;D7�
l��O/v��
���4*$��FhNIЕ�p�<i)�]~���xx��-�2��A1e�"��� �m���D�����-����U�S%Rh�H��y���[�=@A74�#�V7� ���Į6���(���C����i�������	�ġ���js=<w�nP)�]��d�����4(E��Or;�$�6"�J
�5h�4N�����ڜ�񚬩Ȥ��9m�T�+|���F7�h����v j�탂ْ�E�$s�=���MI����ҳ��{D����$�x��4M8�&��Ta�o���S�lj��6]�3��H���#�Y���7g���)=�keY�m;��Շ���Dy�XƌC/v��7��A�����|YōR����AD��,��XZ�FRa��s���r�Q���-��k�Mջ
3�4�:u�N"�o5�� ��F	w%7p��	�L!��[�^!
�<&��ԓ�����q_6l(hꑖ$a�i�0��K^%��~������t�?��,��*��d�O×o��Y�4�{�C����M<_���ד;�K��m�w�ja�K�%������)���t����;�k	��.���PF*^1e'�v)"؂K߀!�����y/�Mާu��'ME��
"�i�<>����*!��k&.ׅ�@)�V����ϭ��P!f6D�9(�x�4��ZQ
@�+Z�F�j��Z�ζ�M_#�.y�ˊ^��y��>�/�K������޳9H[�>1I�R/�6���`�N5	����B4�S8�����ږ���#@L�P:ߤߩ����#�����AK�6�&@���G�D*9݋��3�U�M��qԴ6ۤ��5��[+�5dQ�\���늤/�&�(�n V�2�����{�x��Q��+R.l���0���蚍0B�H�X⚤}��4�з��S<�6JVL�~a&<3�p��f�����ڕpBF�Ia�$��S;��c�2+�ׁ;�珪!�Ɓ�v�U%{[;|F���
�@#�������Sמ�G�����.n
���ph�ۆX�L��*��us�$����p�9��{���D\ɧWp�*�|������e��ް���Y��T:ۍ:�O�!^�0���j@�n��&��3���9�%M�����z��o�_�/���U���i�-�~Weo��Kb�"ʄ�H'����vJ:��v�p<Y��}��Cq��ì6	~WJ���,8�!���B8&љ췲w�y%�t<C���z�F��r*�G�=�]3�AX:�;KI��sS�R����}��_�a����<��*@�v�cX[׽i�d۪���0�{�����]-�PI�J�6�v��pӪ�Iq�B�C8F����)pD���7�%B���h��:[z�$$�A��\�xf��㸷F����V�a�ѩ����5��vH4)w�&�i�eN�F@�pN3kKFl.ڬF*��t�^�I��
�D�S4X4T�x;�������?��4B���קo�����
�\�x�-|�ۯ�����\6r���ހ�Yث��z�A��G*���zdg�l�غCMEeB?�Kl�	�ܣ�I?t�m�l=Nh�(������4����9���㴉
rӼ�x�l��j�m�Ra
b��/P��nr�~ėQ�o������[2�����$���FMtz�ڑs.a��d&�lC4p���2|�x ֣D���+\DY��)^���C�Φ0����zr��V�U�*~�T.�~��<|�#q"x�r�o7��wVW7Ii]0�i����1�H��K!Z@�d�JF �x��Qï6�Q�P���å2�{ٲ�y��]8Cd��&
�<TfJ��S�g�$�
	ݧB���˚?��5Sc�5����?�WG��1�t��k�I=��V�P��b0��M�v�"~A%�Su��U�9bѯD��픑.}�F�c�E0��|ѭ�%����Y�J��$�u�!M7J�:(�J�G�$���a���k-�צ�Z�Y��L~�<�c�
 ��Ŭ�dB�{���v��a!UѺ��ט'���'�@)H���#����R��M�{W�I�*a��/߶�`�F������(�.>,v���FF����M�S�&�(T�$N��lB-�HFVX��b^%��?��vv#�Z�So�v�Yey%kqq�4*�-x��eo�m�.�V����3���i�}�q�hB�WI�9���G�2������vK?�hx*�M�)���v��2.�%6�
T���r
̋���Ӡ���ê=l#�.�y�N���jB�>�����*&)����luHD$�θSf6�6^ o��X�m��=.X�؁1��@��T��SjQ�ׅ�ԍ
D�mצe��l������mgJ6Qm�|@y��t���ݢ��-mFA�40T۲k�ӽ�����`U�ɨ]����q��,�H�T��-���x5E�˺�WZ�y�����p�r\9[C	S:=Tyw����Ia29�<C�CH"���{A����05֤��S}��Z�Ԗ��R5C���(-t�l���+Z�A���^^�^�������Ck�;T��i#Y�E��>�
�l��]��,W�}������۽Ҝ����dp20�n4�Xk�je{C#F1rG�X�@\2�����/���������^0�b����|��S��r�~{�q�*EA��&�R�@3L�b�?2,��"�J�[��$�@�wEgª���������ŝ�}^�)#��;!�%[�eTK�r_���?��ӷ38�$�}��q������_w�#������e�����A��gH�T]i���S��}�r�@�a5��>��2x�an�q,�b���F
ؠk��6�}C,#�r�/�W	��C�8!,E���/��E�c�sY!�߲����{){*�n�kyru���F���<�w%�����/�c��~8�,X��ܳ
h{�f��¦.�G/l�dׁz�_�5�
߻(:GcbJ����L��_�������S{��> �Vܷ�S����W����ߩ��m��*4\�;��.��Ub�K�/-��1Q�J&��8�T>a�!ٵ��^U���'�hO5�[����	j�p*�F����Ɠ����v�R+�dӑ���7J��ۖJm��2��*7Xm��O~�N,H�󎭠`YR�׊	���N�}��Z6*�̑���]��f�H���O���]�~��ۭ�?|�s5!A\���
Rpi�:��ӊ�VIc�m�Tь@B�% �|�g�t'Ko��r�Ej?��̏�وWu>�N����-�dp�J�`�t���Gܑ�}W5�0L��O�}��K9'���鑘k�q�q����m��7�o��3�G�<���I��d�e�9�(�k��}[���(DS6N'kD�;�/�M�ox�����,���/���@'��{]K8�bh�_1�z\u����*�>Av�,��C=�%LQRHZjL�C@��R��)j�'�-�����A�Aqb�7�a?�F
y蹪ȓd�D�d����BU��y�t�s��t�	cE"�b�Pyl=�m���c�To%�� ��L���w�֜��c$�Ѫs賛O��m���0��S��c#`���Q����ʤ�F���Ё�N��-�sZ�*
����*�
� `�u�Q�������nx
D:���,�%ap���'ϫ��!e�����`!>�ل�n�1��������e՜���Ti��'��Y��-�a���
TqD�<B�cB�n�"��|{7����J"_���§bN ��a}���jSs�~�����.�G���uY�x	�Um�@.�P���"��1h��~����N%�"�#�q�k�Vя�������fe�>&䴶|�iΒ:�	s��A �nЅ_	��y���?
;�0� �������;~?��C��ool������鯛b�'���f_w4-�	p�N�|���C1�m��r�xɰb~Dq.�.��ḝ�w��У�����-��V�n�m�+���n���X��=�˺ʽ80��$�j
�ځ�E|^�~�#8
�f�]�n&��R���5�`�
4\���/b�"�%����Eeўq��"G�)�A�a���P��&GI�ĩ_�GcKJ��G��U?�^6����?tvE�O��0V���Ixe:�ӧ���F�v�
�G���c ;���u����	ЭZP�ݵa#��g�U�E�B�c*�Zym3��?�t�I5�Q��q���J8P�A�N�$t��LR#��TZ�=��[ċ.N�����\��V����Z��y]k�O�!GF�r�ݿr���+�8:P;�N%G���܇��T�_��Ir\��?1� %��!_���.I�X~r�}�7��T�@b�T^w��\6�p���V�T'����X�Ů��B������5��Ď�=ů�t���CJO��/N%q�I8C��"Y�;���yC�fO�0C��!�G:y�[���4�_����sv�v����K�m���;�`PY�E�Ot>�����^��j���34A�F1g��7$��ئ�%a�rd�� e��6LU���v̒	V?���m��-K�tB���"�9^&j��Z��V�obGŜ���c�ۆ�G�;LN�i��
mZ;�w�?g���|_Q�T�PĆg���!�Z��pm�HnSD1�R�N�n=t>�?a1�vn[�Z�:Q��>X�Ml�~Rv��3tu�@�^{����5�Q)��ܶ��6U���j���0q�2�L�bح��p�s�P�q��'�(N-`����e@	����˪ÐY6�;**��������:�	H��x
�T���`^�\{j��J&��K��(�`5�3��}�4�>�QI:5t
��=�-����~S��4B��M�a�qJ��ql���C��
flk�n�������'��4��y������,q���S��+����s��j�צH�Qp�s���
s�uET��5Gc����z�Bc)���&�"�y�_^[�����l��bZ*��!�$�N")��ܻ�&s�v�/_䜧�wt2Hn8�����I���f$X�D3����^�<Z�4�^�0�	�4'V �����i�#�6�l�ܸ����]��>}�b޶���ӷ����	*�q����|6M���[B{�E�[���G���ݻd'ҧ%PgzFF���㠆��굎�����&��`�>�>1�cqub禣O�]�, ,�PH�a�t�}�M@�H�;N���W�c�4����V��C�}������C��5t�]��Lj�c���ìK���GnS��eL뇂�{�>�l��34�cZb�S�XK�U�;���)e���&}�H ��1��e/w�n婀L�k�C��*��p�s��b۠�4v��z
�ǫ��2�рf$������N6���|;p��<��߯��x[I�^U�eǓZ�T���w�uuts8�~/�˝G�$�NeY8D.p�\i4[j�\p*�Zk�Z�Y��z&��:>�e���1��|��"Qúd���W�o�Jg���6�	�神�XiP�U�W��ɓ�o�/���ͥ�σ��4����4`/�8�jߞP�z��I?���oLdO{�ٴ���d<���pf`��=!�{GUd�y���d7��*q+�GNA��;D�n��#PE�%�at�(j�m����q��}@+ܓX��r�1N����	}<�$XI:)��<����o����Z���HЄI��_UA�>8]�f�E������o~�)�Ŀ�W5Bę�bp!Jة6FO\��u��0��a���gt���!,ʫt;��Q�T��2��L]^��-4-v��X�(�MI�z�wtnt�x�z��B�[��f�$��w�ȥ�����S�g}�a�U�N9�WC��q=ɻ��-�c���
���~�
Xs��^�U"_^L�J-��LQ܇��-�z��y�ȱ��-*-�Ux+{w���c�u)���O����:f��`B5)��c�H�}��G�j�QJ��y[�!�m���C���ީ��鱑J�E�����ȣr
����fhu���~Tm�a	/�&��Ы<�
IS�A9ŘmY%�G��^����?�ZY��������@�	|Z�:7w�9$�O
災@�cgE�śFw�a1�H�b�^���Hf��5�r讈���9O��N�V�js�$�L��+�(y#
����9ۘĖ���)|}q�Q,��<�<�ab%�_0B&]7�uq�C��ͱN��MV`�E�q�D{��bA&��%����t����`XE�k�r��۶*Z+"�����^�fL��Q��pZ�j��6^��;�-)p/@����[�͌�_8�`v�&�-���"Ix�c�+Z�!SS!��Q/.��pbn�Bi@%�AF�Q�f�=%
ji�Ⱦ]�#�J!6����1"��S�$��uSFcc�|1UxZ;�PQ�n?�Z��X�1�~�
���<J�}�!g�ɠ��T˺փo�C���6T�������M��cz��L��o������t���=kk!E�#���q��ˡ��9�&k�-,�Ǽ)7�$7��HMg.��|��2��<	���=R��vC�l��t���y�U\���m�	]��M�!�q��Ѿ �
@��}y���n[��s�紣���:nu�n|㌌������J$��k�8��Ė�����ŭ��.�79���1vEM^�j�Ql��[d�y0����Ths˷`�/�ԕ��?�uB{ Y-㟾`�D9�b�&e��Ж��
�p!w�Zm���H���q���m�k�\�F饡�q:���~�M��2p� �"$�rG�ꌲ�/ЯK�����#�$-,P^2z@�����.���o�$�jLc�������?u��G������
��$8KJ�E�u�9��&�Ҏ�6���AJ��&_����e���rpZ>�ω��L�ܵ��B�t��)Si��48����dmq:�a��"
Uy�Mj	�@N�g[�%��Z"wpo��m7�J�b8�]R�ڸW-{��z�P`#X�ab�#沊_}�(]���f�h��P$��O��<��p�#Ͳpܣ=��j;e�(бk�u\Ѩ]���⏊�״m"#5�%/K!i>s((�l�x���Ir��ǡB~����T�
�1|�S���J��b{%=<`�L�Sf�V'q��mhP1,!�8�?1�='Lv�D�Ac���� 5�]P-Y&�U��i0�"�,�_9�v��H���c���Pa�;�K��*?"\Շ'�	~�\px�CD�s�V��ܚ���]�E����Hp��.��ס�U��KĄF������J��?�O#.y�|��y���8'�;�d�k�����?]��

�ۛ|x�H6#�A�L�:�*�����u�������ϣ<VLR�ddh7BQ�]~%�E"��M���?��~��& ɸ7
NE����@��t����(U��yI���-��Wu8@G(���&l���]�dg��LS冝IwaĈ�y� ���\�Ӕ0R&��t�ec�R:��^8�����I�t���6�E��A
mVgpt!�+hˊ=8EG��V}�<=8S=��eɠ����_��+�]���!�<{N����iMgM튠�_@)���N8��az��lMƥi�t�dp ��֫�T�C��o��M�n#�3���6\_Ԅ�cv�Hz�x"G�n�
�])����Y�`��US�U�"����X�|M��\�ٖH�(ߧx���u�nJM7�b�U�a�0��x
�&)٠��r���)R����B��t��e��	{��U��)�~5MHh��\�/�v������b��%�����ZOp�\{{��Ӡ�+Ƒ��B����Yf�����[��ߐ��z��C�]�R�� �4vcV	1n�v�If%��$J� k�-��Q>�9��Kx:�/ߡ;X����1��%̗�S����ǰ��=�� ��k�SG|R{-) ��oۻ�8i[�ߗ�}�u��CB7]�e꯭MZ����
q��fgU�[�* p�v��Բ�����6�N��� ��tDA�����!�n8�4�M�б ��ّ�h�
X`��f��D"h#�}�͜wm�0��Z��lx%K�6-�ݝ������N>��(͒Ԁ�+:��:h��#S�g���>����>"��r��!��`gI�:��O��=r�z�*�����I�vf����n�C�U�.pja0^è���x�S�㠆�X̪��a�yj�MG����3��JWB�€Z�������h�[�kZ�l�Nc��z6�F�2Emmz*�V��i�Z@���.�\��|;E�f���*�w��J`Dj�p�\��h~:Ay�g⫧����rqn�������׋$W��W�R���ͮ&>������\�r����B:��B� �
<��A#�	���ls�hQgΎ�!n����M�H�n���M�	ӾC�%(㾿��S'7��E�N�˺�x$\B%D��]��j�}~����Rr%���c���P��%�s3Zm��)��
�fQz�v�1��ly����}�o���|�0��G:+�B @����\��h4�eh�p0�,�&gRL��'J�m�G�
��Ih�a>'��t `�l��8
�d�˾�m�J�+���PI�j
èv�Q���f�<�
ƥ>Ύ:6m��"�������0��bagP QFj�峒N��a=�4am��(x0J<�2��<�O�|l������Wy��h`>�^�@�\�`�(���hTt԰U=6��_֔U%��A��5�[��FB�Ǟ���!j�դ+��`�,AY%��O����.
6�\o��1�dz�p�r֯�$�9eb�H���CCUU�u�DS��n\i���w���1e�хG����;��N�M�m�b�Ĕo�H��K#;5�ihԺ�ī��YN�8�|E��r��&�N1|I���tu�-�cN�c���P=f2n+��Oz�)���OX-�Jv���8��
5�ؖO�=�Pey��u��*�)�r)���S�?�����gt��uo��eI%a	]�r[����*��}�ȟ�^�8�m�.I�$-Z���'gd/�#�x�]���'��iN���@�k�����K@z�3.�g�E�,�
Ŝ��~����?��~{�<7vj��7��n
��]u�JbUY��O���j=&+
�k���r\�4�7k��JYS�l��],,0,°�2D	�]��}K)f۩W�ʖ[ֹr�H�pB����ޗ��>z�R����j>�"�"�d�`1_)�qH�-���>�c�uv#�vZ�яs��A�:��][��mρ����a�C�TM�a�lO�VJW���2P>Dy͝`��sm3��Qǔ-�L�Kc/�X��b��p�4�'�x˾B�3V�6�ԑu��x�|ߍNLDk5�y�����J��ncL�7e�&���X
$������L�6��j��#�+;��&�	�T9$CPb�I�)�ۖ�_�g�`E��A)RUF���m�#�d�y�7�����o�~-����8�b��WL1_V�T֪u���Y,Ӱ@c���?O�,E��S��$���X�}���{������^�0����eŢ\ά��
I�i�b~��k��g��5ZĢb#�p�`�i��r���i�X�-�oY�Қ�^�ѯ�cw!?�y~�
*�]U��&Oy�>��?�dN)fb)&������� ��h�v\�[�ow�"�����/C��X���p<�N��!�y��ҥ���n5	x$AlZF�3�r�:����z�CV�+���g`;�&V�c�mo�x(W�H#KkT�Ӊ���6�q.~��!��":�� t�:��1T�6b�ܔ�0.�,'�r�:fڸ,���I+A��P�������<2�dw��F>x
��"��XM�jN��ߡ�Vښh�������Ӗ"��_�'���
�4~0�{y�D@�>���dE��P�?=�	���go&��d�1�f���#r1��.��<�|�ZȰ�\-�>�;���kh��<�j�QǬax���V?��Z�=���z7��:A�$H������Y��+�Q���	x�����t��KX�.C�|��Ą�P����\�+�5;�E��[B��*F$��� Y���]M0��"���9/7>��|!�GL*	.ŊI��9_\(�]���$I"�%w0����Y���:>(�Y9,ޘ�䘛,KඬT�j���f��-L^�qӖ�/�Zā���q��d�O;�����w���$������[��Y�o�r����癙N�:�0�#�>u����L�-b�ip���H$��"7��[��^1L
+1��6q��N�u�ڸY�e'��4�Ȏk�P�=�`��6\[�{�����0�+?^�MQv�t�6��A��,��u��#�}k��0��Kh\I�v4�i�@Aj���\)�O(W��z��h��`L�y�lL�AD�
�QTga�G���?�Y����L�&}"l�m��bt���le��`���o�-��2��i0�v�UG+�O���mS2���V9�HF���8
��"���ٶrt�i��z2M�RI��;��gU^|_������¾o��!�2�9�liI�m'I�*h��Ol �(Eu��e'D�U�z:���О��ez��Wo7��_�t6�;���
�|�A`��D��

�E};D��lg����X�|�3���%��u8���i�My��H•�o��
jⱾ��|��9W�&��ooy]�?��ڞ��4M,v��+Ʊ��'���l蕇KU�H�8�o��<���
qpgs�}&��.�`�1.�yr?���({���81�{	O�	I?�m멢S�p �D:�=a�վ99"�烐V�{��$.�w�>�3��S�`>�rP�����6��r"L^��A�j�%ZBӹ��U<S"���]٬���1q�HXۮB}dQ�k�8o	.����6���V���mt��&��<��L����DH���ަ�P�����p�>��~��q���12�@�>����n�:/��~��ѨN����=m����� �7=�O��!�!y\fO��ɫ1�胼M�-�ˍ��b�0�1D�i9��у�z�Qc��M��G�::� �0`���-��i�~���jF0���#�rHw�
�WC#BsI������[{����u���'ȡ�n��]",��E���sH ��h��I
�Q��~�������=����\^��%�$�A+�8�������́t�J�X�@$�N�{�ߞ��f��V_�vd�&�O����,frK�����1�#��_�WY��l�ҏ��r�/�w�F�2e9�����e8?��4̧��a��/D��%�#��+"Ӯ7�Z�ݯ	\�T��\���2�xv�k���JV���%��ߓ�\%�Iï��J�����U'"���&4-�P�Yym��Ӵ
���7�N�ŏ�:�Yꭌ���$l�P��T�t�Y2�^��	�,��:�.�~\�iav�|����,�ݤH<)��W_����"�&F+B�],��k�V�N�"E�X
�	M�%���U�Ȩ�l�Bɾ���G������V�[6���#?<�H�j�r�x�`�9�F�H�fh��6�B��1��Y�Ҧ=;���ZU�>b����.՛�?e{��b��cKGӐ�)�B�����#d�k��A#�ª�}�[�~1�3#��Q��%��kf���8b��l�/�����6�ն0�
R�G
���EL�DQ�M���\:���b�7Z�����$q��\�}���M22y�r���z�'َ�L,3�^{��V��IP�fdi4!9����v�C��Z)A���k��f��wN�[ՀL"����.�'��-�ڣ���%ӆ���)McG�-U4�xb5��tX�[4��cI�8�5$�J����j �r�)��T2C�����8w!�$O�ˉjU����"��p�R1U�rsW�s���bp���y�`�
S���B��5�/.�n�f�j���Vo�{L���FQQ���Z�F���8a�FXQ�+1��
֬k��ů�ꂥ�t�U^�Y�k�U�i_<����5��^Wɼ@
�Z�%&(I1-RL�z�D��^�İk
]�,E^1�\��W����u���'�T�_k�.�}]M��E`
,W-�fI&LX�����&)E[�ZoK��c �h ����K�m�|K���T���g-�/,��}��`��q@w<��)�v�1�4�<(��(9;~~�SB��6ɫ��v}rK�ݞ�,�Ռ(���j�`ubW�Xv���G\��_������'+�3/����$��k� �{u||��t�Fl^�ÆX��K��X8bsS�*�-w{J�Z���i���)T���{��x�9���7�cNO����"�
����e�:��ˉլ��挈{�_ǫ�LjXW�*^T����-�ƻV�D��a�
�∑,��,&N�Tj��Jse(�*K>�4��U�9��yN�D�"�;�t���?Ť�����&���@�	�t�X- ��������|���ݮv����$���(g�U�O)%=�	g��ֻ�rAxw�+4���G9�ȌJ�&��V�r�!eE�Or�j
�\ܵ�`�r��m�m�y�}�3HV�G����@��P��d�[����x��7a��8N�_��@ۈ' ���6�a��`n�������D�+S*�D0IJ�Y�ȥ��\wl�j�dcCiV�f��ۋJ���
֙���t�S���0��$�;�7o��'�N!����r��ҾPLEu��>���F�A=[۳���c�p��UtA���%89g��nP\8G��C@?�򉶼���O��L,�
y�9�ޟ������Ƀ�X�7�?��B���t����&��4,��j�u�`��
a�et
��H
�)��#à6�(���b�DcXis����P�a����a�Bł��D���"��N*��c� ��oN�x(����]��H܆���YH'H@�dGe_���=��d2��5�eq���[�}o1�BIۊ��*�u(Z��׵����#�s����1���'��m�(�]�C�a
	�P���*tgS��Uea��0��—"�l���RI����u|9��T�!>j�3.�~��ؚ@��"@�'7��b�G#��&P�)�5��0�t�[��`��kvG%bk�]�ꮹ���2�l]$���;6è�;�e3�m|��2�tX�m��t��F|�d\�z�a%�pp�a_�
hcN��m�3��)��T
�V"�,�G	ũ���$f��AC����������(�J&�� %�x����X b�`xR�>�^�T֌�Q����;��;�)��޴~"Q�+��q��kj�Sj�ϲ��v���j.Ɣ��h�Yᾱշ���z�0Z��� l�������3-��G{�d����9vL��hƆ\ⶤ���MCN��]�l����(,Q��F���&�ۼ�1��HYءA�4�h��@/�a�p҃Sz�j��%q���R�-����[�a<��Y���K�H��O�����M���wꌮ*��P��x
#s��b|��U��h�k���@���a?em����1��tDIF{�A*p4�v�d�⎡���)�qK�O]S�_�P��
h+��B�¦�1�V��t��K�C㋱/
���a߼y��UuP(��YQ��t�Ӣ++��(��n������h�z�Ѳٗ��Bc�&),c�dQ�N{�	Ũt���K*�b�zG�8�px��	$�8�%͘���lō.���g��]��r�&U�&-r�~��CO��H�I�|�]���f}��+���[Y�r�V>Cp��30R���|��#TǶv�!H�ޞH)���,Qv;�nt,Yk���.@0L3�)Z.
+!
��5�?s�Ax��u��}�j$f��1�Y�G:��2�2}ֽ��O�I��00�$Q�{ �ҏ弇��	h�'O߾���t���z��Ao_A���:
Fy�9����5�8P�v�$a	 Ǧ

�j,߮�ݮ��y�����:)Lц��æF����jx�~}H`C�|��SV2��Ws`5;6a���X��d��x���89��[ck��*)��p�O�
f6��_�Xa�Nc1�<��R���?_Cr@uXzXa�|X>�ā��튝���nw�`�ѥ7m4N1���7�Ô
�O�8M��3��)��m��L������CmS�q�p��~GN~��$���]<-�q��ڰ��m0���ݾF�0f��]���W{��ݦ͖&��ڊ�_���vP��3��EwD�]%ڧ*U]�P�ǡ�f���2&⢉p�ƅW4},�8,�L/�Ɯ�j�a/��覱��>�(�L;�4T_�@�dWcm(d1��Ƕ;X~��=��&��Z��-�����39V���L�ac�.����N@3��5p+�_�H{�.��I��'�\F�V|o|F�R<y)��ϦA�@�J2�_(�BV_��.����@��>����?m�8R��{�̓�:��w?P�"���RA�3��	�ӟ��p���G�`{�ZZ���#jk9��T�4p:1oB�eh��4���W
�@8��Q!SP2���
�2�<%h&I .�E�O��Z���ظ�eҌ����!┃�
]q�%�1)b�wi�UG�.(
]��	�#S@���g�ФW2Fo�̇MnA��Xp�q���t'�)R���E�vne
Px�<oP��vx���j���ҚF���\��L�v�^A�*��R�0����r�ƶ���u�^��	�T38�&�1�u�MU�qru�"��^,���]?:\�Ǐ��K���*��M�"�M�N��N+[��e�FҬB{h��F��x�RP�l�dDnMp����0 >��Iql�(�3�k�iql]�^Hh�2-}BA�ͮ'��B�uFE���v��_ʹ���ڈկ�;Tk	���95� ��P�)^�Sʐ�IG)Xسo���� ��1݂.��G��?�!��"f�pʇ����+������P�?�*ɢ6�����4�c;�����HQ���zЀ��J˃��cM�~)�3��>�
�0W}�^\�{d��
hQXa�WAv�W��(��o�jg�d�l,�@p��e�q �N,=4^p�q�G"ҹL8���_�8�w� �b��ӌfxm�+H�Y�a�w�o��Z4^(�D�W��0
�J
�Ƥ0sėZ�Pa[�
�F���N#�b�v,�	�F������]�Z����AR� �`���S�fXn�̅&=[��cE�A��r���x�������e�\���亦�Ug(G�UBQ?��%�s��]o �\$�b�&�t��o;JӖc4�@��4��2dI��NY؄�xH�C}xO)��o��Ӫ����
���nx�P�~�q]�EI�5t>�(�Si�g�Y���]��d�GPe�EB�m+����3��]���`[	.+��l<�bO��:^�mG��kV5�]�[��NN�e�I��Y�X�;���"ax$�`�+��r�tt��<!�zY]a)w.�	7JfꜼ�D�Ҡ�%&	�w犟Z&�A���tag�F6��V=���t�$5D�����q7g
�h(A{
�`��z�	x=�����WB���W�'Y2<"��uoh��@�zd���)�tN�q�jZy�eO��*��:��."��j8��\B�5�~��e�a����R� ��X�yP ˍ���Y�Az0��	39L�i�!��@��Y�7q�����<�`��ޫ|2�A�Vno9���@dc�v�i��Ȥ�� hq*]Ț1C�ɱ	� ��,w�)���E�U��j�#��,�s?�)�|�H�<��1I�k��X���
�\��;-�a��iS�֮���*7j~���Q5oc�pE)��/gt����:E�ϯ��;��-��QI�Ls���hc��F���3��	��E9O*�ʇ�1P�Q��L�>�)��k�2F��N�e���
���4��QԬJVӧ	�=`�-w9ayˇ��"��i"d+B�	��D��$%γ~�h�����,j�U1��K
ɨ��RZ�5,Rb�@�t@�h�gl�R�=}���5���_�LSJ�D���lZ�7yAj��t���mqh��a7V��YUŤc��J�:Ƶ^������n�I�yK$c�,���O�S���
��c���W��D/��MU/���e�A>����=~�T�U������p��6�	��&�+Y��*Mo�2�R�q"�r�3��&9r��\�y0�^�q���	$�Ս�ib �i}�@��t΃�\���k�	)6�'c�J�]���W�����+�
��*lo���S���<GC��#7<���8!?Ɍ�%�9���L��[i������,6�7�7��A�A�&gUŇjD��AC}�S
/�d>��j��*Ɲ7`��/n��K[L�8��7MLu_Z�C	9�,J�S�=P$��N�N���f��X!�i�'�ݦ�W(�����	�.<�sl3�d^1�7"=t�8�}����Οҩ6��h��0�)��z���OG�.�t�U�GO�Y�$1I�.��A�V
�|Eo�y�݆F�b�j���\�[�2A��3��E��vw�n��%���dy�x�2��(�I���l�#,���G ���;�G�O��*��d:N�MU15f�[����1c����Z�����*,�,`���;�d�Ó`� �)��*�B�=]�X
��tx�(	�'�Թ`���?5�?�J�>�q~��z5$Sg3T����7�28�2<a��~���K����:5���SW��|��zX�)���#3����b��1�����;TD�b�5M�D���,c�c�%:��::��;&M�!��U��W3:�>��oꮺcI3(�G�u��;F���B��{�����
DzE�����ža�#�1��6`��	
$��1��d"
��`�F�
��t���1!L��F�blr�ϔ�%��r`�\����eCS�J�4P�9�O7Q]i[E�T�/�{�Y+��@VS��(G[XP���<��..
�1V�5�Q�P�d��K[+�"EYB������8�/ӦX��%�(�lWm�P�4�����*�=�A�}7y>I�zW%Yft�Z�[�r��Tx�\�a2�ev�8Cu�fb�	D}�+���
65Ug,��oж��f&�4]�|�h�]G��s�����1�!��5^z��@�;��G ���A2F���l��D�B��
�`y�ٵ!u��-���}?�5�ň��L
#^�Tt֒ay)	ϑV���TS=��Q?64gp��y%�2��"���ۯ�P���A�A���v�\���K�P����]C��C2~�=Ȟ�ʌ2�����95���^P�L�b^�n����.e�K��#��Ҫq�蟁c��9�H�}Ď�	�J��
t
��TlbA�����@�).��W�����Y@Ys���4��ɂJ�B�4C[�@��C���|WV��A��,
�K@3hD+cN�ZH��O��`��,��m}_�/n�C�	b�gƔ�wX�q�ʆ*VʼnAդ7bm�dz�Jr�>����~|1�<��*v/��n縈�ŋQt;� �C���n����x�I1��,f+朲Eڨ�f4�*N��k�GU��ެ�V{�����W�ng�4C:�B�
(Ʉw����ݡ�|tՎ���������'��
��I�[��������d-��p3��ݹz��d�%��UU��ݮ⎫.�g_h��l`ٚ3�d���N�qpq0g@T/4p-�g\bHov�InP��ٽ@19z��	�J$hu��ip�r�?
����g#5�KD�4b�.	G�����X�#�W?�,<YQ<�H���Ny��d�Ƴ�bz	c�X�y�t��IP���IS4X�H1� (3�P&.(8�҇p��:v��p��0�7}�(��A��<a�)���鸓E%aЁ�
/KhY5g��A9�t�Y���w�҃�Jˮ���Y4>���#�s����䄩XuE���b�A�a���X�M�#Q@�+ܟɺ�#���.n;gMS�Xk%
���@(��M�/!�34�0��w�\%�	� w���#�`zc�EeI�ѵP�šG���v����|_^;��~1�v[��$u,�#*�xt���_��&{~�Ǻ�վH���<B�q���b{��e���1�<�Ҭ��1`��]�И<R��*�?���@YA�,�蚮��ۘ�=8bIq~�dzI�����/���C�=�,U�0�H�u�D���`��p����tL�k���J�H<w�I&X�m�!���f�֫�N�'�Ĭ��uw���X�gS�hȲG$�|)+\�:�\FA�j�
��9���j����V}�����FaW�=�e�����8غ�����`T$#|z�H5h�<��Q��ƺ�
u��X� ��w��PDž�
N�>E�PX�ހT�g4i�+�uh�DC�P���~f�%c�_un��)LP7���H����YuU�X�X�!wH&L�]f�*,��ك&����W�T[!��}�r�Db��h��M8�wX1��&;��B�!��xui������6d��~����K�#�E���.L�;q�v�(�����s?����Ӫ�U:)���s���t\ �����H
b�PC���UG9N�Ƴ( ��5�G�P�ǔ����[䯗�d��
�Tm����b�mшQeE�*�p-�>~2I�-��2��C�ة��W���R�S�]�|�n()�?�E�(S8������fE�@�Cv������(M�t�������țB5�;:� �P��כ�NB�1�&�	Tv�~3��Q0�{�,��L<-Z;tx�Uc��S'�ɲ��#�)�%C��@���H�]f��	i��%�,�5�}�(��"G���B�z�u\��U�`w�V	/FW��t2� �d�.=�Y��3�`��Pl����P�zʴ�1� <�18��z�?�۟!~HK[+F������R��C����+�[��>��T0��Zz��%�1�*�9%z
|��O�cg�̾��U#����@��`�m��
�>�����)p�x�
�
���9{#��J��S�qh�TC���7����4)�0c�n��u�Z�=r�n�0��<t��~N{R��(?�.�(�3�:�S8���;�1o�E�3����jFy�~hp�r�'#��N���Ӓ�R��U d-��]]<�&��=캶�3樗�W�� *rG��ihW55@�4�!
&�"�G�,s����}��Jo�a��!����&��R�h@�#61��ᓂ�2�6�F���uW5�O:�xX�m�E�$�|l�W�R�d�`X�tT�Zx|���Y:�g����WϪu��벌'#�d�Vܡ��QE�����Q��[���|�s�W�t��]A��k)�LD�	�E�Y�]�]���V'l'-�����6��9}iT܌�E �b�.��D��3M��<`*�����6��BA�Ř���%2���
�"l��v?����F�'ge����hCy���[Š��5��Ɇ�#,�h���q.��S�9���*�{$�n�g��"S���yf������S�s,�$a�0"�%b�6���K�I��p�
���^����blAϭ��ƇWg�c�_���*Ŕ}��`J3}��K�y_U�#JbrW{>���hL�4E�^�ڇc�����R�rQ��5���^�T�|�/,����@�7� 3�>���E�ǦiW��l���ыiuwd�
~�2^F$n����,�M�Kt�j�07L<du�8#���
���w��*�e;3F�e�p��,����,�i��V;u�`%�|v5�
쒟��>�8��7��R_.�.�(��?7�饪S�8V5�j��ͻ;<�{1�rQN��a��l�K7�`�����ξE����z�c��Ҍ5�kJ����|~{k�x�=������]~=�ngm٤�)E�l�����e��ܩ2gݰaC#��~�ΖG�l����D��s���̒�b�972�vu�ZO�R�b����"�f���Q%WC���n[u�2��jq4lW%a��m�}ӫŸ�||���.�>S%<��N&b�g��\$G�n��B"����L�1�\=^`����@�(���;��WOk�]	b/;?�eFg�=��l��K5dX��ϥ�{�TI�DR�
aN�zHE��5.,���2�@#�
�D�>Q��9�b���i%���/4�!��J�H(���n���T=rF4�;�����fw�r����@.9�|�k@���%�9�
$�A�^铓��Z��-�>`�M:���?y��a����R�Oc�ȼ`E�_�X"�昣kA���?D!
(TM��G��{�β�k_��C/I��d8
��n[���2����wT����o � 	M(ƣ�s=�œ�k]��znGup�ڷ�>R���Mg�ť�h����j��#gٱ��Q���%_T� Jo�#NO�C�rjv��͇l�͘N��ꏖz/_-��������zQ�o����������g���BZQ<Ӊ�^N�O;ѯ�B'�P,���I##��JT�m�繙$:	�3J%�i�^�}�@-r�{X9U������Q�t�2���f/�Q��δ�#���$��i�f<g����A��S�h3[��� x&?����]M�%�x�L�:X�VX��7:�ш�E�w6?�����;���4����Tf��$C�G��GƂ�GOE��D_&yz�d�i���	;���>�h��.���d��@�B�?�]E�dl�.��]�/�ث�˾�f�'��	�\^�gb=�B�9� ���a�$�B1f��y�HO�q�0O��X���Wr����PWz���ܕ�V?�88�H��0�9�ۖ����.I����*�0H���2��YT�nW6�P�UQ~�E�9�F�Q}Fal���IP��\Er �I|yE���v��O��������jǸcY���d�Q<O���Ϟ�bĐu��%)3���c	�4�����!4�M��BM����!�d��ňo��6%M�8������B۶����R���E9|=`y��iE{�|s|�ղ-��|�y�4���>�{wx�.��P#A�0��te���[����/��߮Pn �����Z+]RN��Њ�_�L
5�åCD)|��M�>�l��[Pj�W��*w��a6,n֤JƱ��n[7w��uzM9j�mj{��۳ynj7�|;W6�[����Bß��y�̞t�����&%�z����(���� ����+�������v��(��J=�����0g*�4��Pk=�^�V�3�UЩ?3)<�&�2�`�Du�u�2�4d�*�B~�Ӯ�\��wg�[� �C��g�T�Z�d_,���P�#�p9�Ϭ`���ċte�y��ľ6İ�}�����\8(���q�bV����J&�.E/����n�dD:�P����	�"2��
aȄ��Ĵ��;�m�:o�[Q�AV!��Z-���tb�t�?���H�I%HG\>��o�������2LAA�3�8MEL��~�DT��&b/��
Y�d'A%�����]�����O�D��ښvf��c]4O��^$���ڌsV[���j65/n��H��������r��{ס�V�`h�$�L�5]��hjy����<*���
c,�ϤH)H]��DS踞_^�Ο��t(����a����ױ�sUaX���X��Of�Y�8ri\�0�f"XP*�S%~^�I1_��H0�yl�?�g��:�8�L:�bdX��Ñ�O���)�<�.�	�F[��R�ȼ}�E�n�V\��!2	m�}k�5�6��`F�#vB
�)z@MF�'��A�7��>T�"�.��3i)@3�����Q�|['��^�Q=$���QĜ�6h[C�Mk��g��u�T����I��9�9��E��xYX@�D�����V��(ҟ
Sޓ��I pht&��՟�-��h��7'H����ǣ�
h���Hq�p�E�Fsf6�����i,Jq�������" %Q}v<���I��3m�:ҏE#�|k�ؘZ���%#�%6\�)���p0�Bɾ7 r�|S�~�ФM���)F	� �@���1��@11]L��Y~3ʦQ���/�ǔ"��{8D�i�4Qث,m�=��V2���yM
�K/f>���N���U�laf��,���g�u[�(�dv_�S�`����*�<О�煟,��E�u�
���Hg1���2)�E��A�T�6�w4tfD#��������]V�ѓ�X�'��t�mXA\�j�w�.j]��3!�,M"gC��#4�uU��}ǦV����M*TS��A�Fy^̏�����Meq����$M(ަi5t�uժ�X��m�,МLR�„�U�8(R: �ܔ�GI~�e��h���d*����8�M
������P�3>:�p�ѷy�h$c*5L��-E��EE�x��G�M
&rgz���t��Rb@�@{M�A!�Z�H��Xà���2|�5ȬTA��?֟!;e�0(էaa�@8�G�v�6���:��&W�
�Z')z�?ד��ﭪe[JO��V��~
��
�:.F��v�2�V+t�)T����s�[�JT�t}��v�;0�JY��q�J���8Αtt[���ӷ��:g^rr��qYx�+'�BR�,�!�`�-�>.����4�3}CƶK�+��0�$G��L���O z�
��;�
J1��lj�h��pD��V�vH�уV�њQ�Lt�X��dl8Q4��R��a�����?��KJ`�!���E���W���J��^
FĻ�ߖt�GW���-��zGJ�O����X�,��Դ�.xswx �q�AG���T}�����T�d4^������_uU��iX�fw|���ˀ7�<t���$Ӄ10vf�P�R4�{�*1��1�����4�e��ߩ��a]�8.��Bg�s
$>��,��8�{��������S��<�?C�kd7p��&)]	$W�q�t��G��֟*(5�X��I��kTv�T�yq=
�|O�=����W#�dTaI��Ѣ�k@��@,�H�]�g� �!.���6�%݋��D�M�%��u8��uB���/1��:�h'�&g�ݨ��%���(^��f�I�a@����@��)�UR���͠z�X�ӄ0�ǂ�ڸ^�"��	1�	�_�tg:X(Q���cgC����f�F��
�,�Fq�{�@6m�n��"A�e%)��܂
p
s~%�؂�tИ�+*��hB	��r��2&�Hgyn8�鞦�M4�
������$C�
V@@��Q��Қv���O����m���0m,@�4Њ���R����J�%����*
[�=t�GYg'Z�(z����R�2T��ߩ�O]�b^b���n{��z�[��h.'T��DX)1���v�(�ӛ��i����-�S$�C:l�h��Y�0ô:Q�I�o��?�_���/�o����?�r�X��y��!n�b���m��c[�ݪ���m�8�zm&s�)�������n��qv�t ��Q�#�	�0���7��G*]��W7�_/(;_�*f��_/��e�8rh\������[��m#X�~T�O���:�eg
�*�@e�2�D��,4���o��:7)S������EQ���a��[ßm{�*�/�q<O�W����_����^Ύ��Q��y̙�'f��ֶ!K��I�X�B-��C�q^�����.����c1��C����0'c���c���U��V�i��H�tC�
�а�=k�R��$��^�ԝ�ۤ�e �����d���%s����6S�������"���e�h���boSD��+mW��Vʸx:fo6�ð}�}#'C�u���k����p�UG7�pb���2ͼ� o,I�cA�9�W	�M������o����_�9E^�E�ت���<jZ_��֮�C�Cl6M<�j�����?n�~J#C�C����_�\����j�>�����u�q�J����Y�3x|(���tmYBJ|9���	�=�(�R߬(���޽���5(]�&F���~���o�z����2�
+3B¡�F�݋?}6�~������g�*;8u���d�������/&xҔ���@r?z6i���<"��B����C���Fb�*��
��qJ���դi�ɳlF��.�ȕwMz%�8�Ա�o�}�ؼ�a{����8��Tf��]K5���b����5dQ3�=��]aB��W� 3�΄	:�*��N�;*��<E�FO#�LSV0��N<�9�ҁ.�x��TB�b�k�a,��Mlk�����ƶ����I:�ݱ�|�����Vl8�)>x�څ�'��`s���H��s'��G��CKh��cH7DQe
8�Z^����ɉ�ˣ�#͝Bs�źلn�>3��X�3Կ�T�F�+�BX��GJXN
&�=�z���6���	����8!��8�����cs�Y�f,������s
i7�k��\�`ǔ��K�&�:��a&fð�e�"S{�_�.L:TO��3A>,"a(�^�eN���dfᣕ.�h�EEެ��=�崫KJ�|yPT�鈥2y�k4-�E
0�F����FA���}LrbGX<��vI١]�X	clh���5k�PA�=�PO.�I�EV���#�}��o\4�aU���3��*��I�j��,���/�ö�x� )��ݻ��+ۣ�z��M���7�WTZ=�f33�ټؽ/_��W�����������󦮚m�4������Q@L��x�5U���p���mپ=�o�ջ��o<-��a)�ۈ����ɟ�v�W�_ϒEz�9\�Z�b���h�P
��]y|W�����w��i�� �B�x�0���3ٳ�[��
lm��joƹ;�C�Al������a�
�����K�1��}0���Jg�Ҁ[HlN���9,�j�Rć�
iaR�U:�B��m�A�I��Q�T^܂�}�)����5����� �#�ք	�4���
�,o|V멟/��לu��R?������]p"H��E�}�y`=�\��g�x��sV�i�a��C����^z�{��o�=�]��e{����>��#S�cR��X6cH>D���kPȢę����h�7r](s�]��=_U�@��$�2��7	�L����&=y�DŽV=��M@@s$
q�à�ȷ�m�d�'�	�	TozZs�Ӌ}��u�l�4Ѱ9�BJf��w��u{��e�ծ��&�^2?o�Anz��Q�w+_��ń�D
vLQ�F�b~\��c�����?K��9%b�~�,(�L\]���ʒ~��ƪ�L�bm�:~���D�;L��ꡱJ_լ�ʾH���(-��"=|*/^Ϳ������O�=���4viҭ�w��i5�7�x�e�Wu����k�����gx�
%�ܴB��
�P�������|��8����˶��-��:��]���R�w]d�]��mM��x�uuU�6]�߾��훻C����1:�%Y�.��h�s����Py
ʹ�Rn����+�,+"͠M����*d�b���)���cį�s�������A\S�@�QÖd)���=�;�څ0ȣ���O���ȕ���6?$!
�1�9�����:�Ɠq�1}|��{�HT?v��gp�34S�����Z��A����[t'�b/(�F]o�*Wd„џ!N€?�t��稓@�Ib�~r�W4��"�,D1�r�̀`.
�9rNG膂OGq����`��*f0Ha��`����`D��1(䯖���4�
'j(|*r�냗}��^�[f�g$	*e0Z9�B_���(���b֚c�3�JP_�/f�`�
5+�ӱ��
�bo����t�'O/�r���cW���L]���� �j�|��}R�_�n�N^]����Vi���v�dY�iEYX4_زt��P���N�
s{��Ư�n{Թ�-�96Sld����`�q;�_�6�����W�>�_.�ϟ��Ȭ>ln�������;[�5���]U0��<"7�P�@9)d�����^X;Ŭl��'���b����#[.�9D������)3�Ӿ���iux_�_,�I|����+�Ѭ(�Naǝ��(��,X#�r����ԁ�>Q	��,Lf�w�*p|�Q���qG�n����Χ��]7v�X�LJ��ġ@3�v��:wС��U5倐T��|��I�I?�œ�9	�]w��gY��½q=�;�xATڳU�?7i"�?���3fc�ѫ�ݙ��a&�Ʋ	N�=g���+Tj7P��	�eL�E=}:0�c��4x��A�d�,���CH�B�{|��� ѵLS�VN�![fe`TN�����(��~�(-�H1��@�T�e1{su �@)a@v���m������H�%D�HFȃj>�+OCJTI��m
P��r����S���]N%�:�b?��$��4r�8��=�+�d���U��m���M�q�͵��Rm-���r��"����d䏍�I�>�#G�pގn��8i����㧇�k�j~;ro���Mz3a���
��0�e(/6IU���*X73�o�V]eˤ���?�,��W��%]j����8s��H���b�8p���wɨ���V��ϻ�=�ŹQ���3\.��չV��T�$��µ�T|��o�^~}ef��?M��Z���M|U�C�'�������XN����C����7m�%�v��n'��Qe�jm��mw��n���n�L>�e�`VE�$��[J�0��ǝݷ]Ywt������v,�3n�>]B*K�IװhZ����R*��F=K�0����\P��6�&T�/`�T�2B�.�׾b;���=�s�y���A�0*Lj���@Va#ՠt���F�?��$�I�#D�31>�E�B���'v]���X��!H	y�j����?oq�̢��U���F^���i�(�'7�>>>f(�y ���`���H�O��2J�,��O
)(�ݾ��8��&�&��zث�#�z�7h`�b
�pe;Q�b?d~�X[l�*lw-ƒ�W�0A��.ZT,M�v�c�f�x���l�h{��t�‘�̑F�d�
�7j4C$�l0'�a�Am]��E;��K��h��Q^[����XSǗZ�ݮ���,�rxb.��"3ٿ]�Z��7����e�l1Qe�~�JOr�����n_�,�ɍx��a*�M�����/�3�L'On�x�g��RWv����g��������/^����m��U�6�#�w.v�EҾ�����d��уB$�#C߫�֯����W�j�������.��M��Q��۪��*����;w���z��J�u��������zu�����Y�^͇M�������CPSf=zuC�����\�c��fS�f�F��;W;9%�������s*t�F[>��<�TP�|��d{J9�CL�H��T���\P����4��v�<�ޗ
G+���1���^���RL���Y}R5��t�<�07��;?��>�:���@�{�>m�YȒ��y2����� (���R�zz����LH�L_�9�u�%�K������l.)��9�K���OC
U3�
�Tq�btE�F�`(�Y�mW�k���v{Vڊn���Hh4�X�>���C��.FI�n|��$�bE�[�ʒ]���z�y�e�W!�C�׀22�HD���2�F�1z4VQ�S	�K�c��E)[f����vw�W�����TtV��5�*A�@g�Jl|5�z��I{t�.I��4�nuYS���P�i�$�({����w˟]/'#k2�)���&��(���.���y��Y���ή�LQ��m7G���8r��<ױ����U~�����a��'�o���u:+m�.��LJ�u4y����'����߼^>Y,�έ����+��B�m�&&O�1�c���Q���"��?Ջ/��_͚U���W*3�o�w-��˧������2]o�����m�|�իNƘ�%q�=���ٳ�LJ����v�vG:��yzQ���mr3�~��y��m�~vI����V�,�Wv(H����~���<��=7O#�1{/�P�Q�U
J�PJͻ�5�m���`�����)��rW��Mt�(��tm\!��90|ެ��lY�R�̷U� 	A�~�I����}xQaD���B~��bW�]}����Ä��~�Cק]H�iq�Y�w��"�geb_)���#qs:ߒ���nD�X�}���|�N1k�Zjl�> ��
��p94�d8�B��32P!`�ˢ�J�npj)WWη��b��h�ݳ���f�~��+�,\���yh6҅2���4�u'@�:Ӳ*�$�Bu���,�Y�=)�s�j�:"���6��6O,�b
�t4�c�f�C���jۤOg�۽��A�(B5w���)u��k=Uݫ�����͊J��J�<�n��B/���a��Q�t�������ϟ=|����FOf�2n���:���Z\M�xn���w����]
��4F3�eX(�M�����V�>3mS>�n~���o��ǿ|�����?�oM��Oi����=T�I6��r�(�~����v���d㺱խ����f�4�|��}�2��8U�S5}2���y�oF�݆��͟n?��7��<1���P.���&�т-"\s��b�=�O�7���zAG��a ��ћ�/�,OoF��έ�"��Pd�E�1|y�T���J��
�`[���V�^`i��Pa��+�3ޅc�	/��[��V��+���y����9��8�M�y�|���B�q�^Y$ܮ�AdW-�w��Δ
V���7ݼ��^�`
��~5�nի�r�,�#��:�[zkP�8��;���թ^�]d���׽'\Q��C�&�Z�tA��Ϙ��_�?�;Dl4t�BPg-B���B`;�9%p+�`Kͪ�<�T�Z��X���LF%!k��i�=S�GJ��>�luӢ�Թ!`���f�{�w/�Kl��,4O�+8�n���Oyd��z�h�ںV�:�[ʛ����v������Q׸�Ñ�-;W�!�����^̑��w�Ϧ����	�m��`n_�����f����NOF�˛����T]���T��������.gt1M..�є�d���*K�ل�U<��$�p����_=�Ue#}���]y���_����4[���Ḿ�����_�̮wx?���?ݗw�d��yt�ۇo��o7�GUq�g+t�D��:�����dՙ�����S���sz5��ng]g�����0�W����=��7u����7�
Gb�f&_]�i�uS�p�)���ZC!8���E�Ӻ�xP@�������ۻ}2�P�y�~�n+W�@��"�:�]Gq0���3�!�@��b�㰼�S������g�fJX1^�.�Gn�c��!L��/�]蕸��KrXw��)*�3����˜�J�
�AgQ��/*T���,`�|��-��T�L�M�
�^~x�*��p����/��#��g��]�Р_���8����a���3{���{�Q��-�>���>|߸rgr�G�Ϣ�xG�(FX��*6��m�J ���&��d0�[N3���Oy�H@D�z(�@k+ �g�w��ƍ�LJ&̓<.'�P�e�h�w�)I�hE[��(E�q;h~k��C�7�|Zд�j�d�]��.���,�?�z�MC��9���v��j�>��^��%T����6.�����}�6��/������a�i�o��wkzn����'fz��3�R(9��1����=n�+=��ۉ2ԂiS	�b�z�ۖ>y�<��,7���i���j�~�������O����[��g���V�h���+U�e��+Ն]�ٱ���rU�ޮ�J��򺬭.��ϲ6Iە-�s_�]�N2ӹ�Z���4*n���{����qt2���f�|qI�K�pQ�����ޖ6t�E�d���|2N'�����;4H�fekE��*K�q6�1Jm�h%�Ȁ����4Ŏ��(�0��׽�l��S��M2g��(���l������N^�j0�9m9�K����	�ᓊ�Y��%H$�K%���}y7��)e�aX@���@���$�zx}5�1g��D�Ԋ�A���6�X0�;~�^,�dZȢ�gu3��P���\F&w�;%Vn0��!�&�����=���>��o�Ļ�\�Q�?2�]�8k���Cǿ��j8\�*2�����V���j��X�"dyG/���i(��I��F8 ������y@�������Uh�]�Q�B!�U+e/�j�8+�R�%����F?�@�=\�9��g��3�f��		��v�ڷ��XƳ,��v����ߥ�&��7�"�T�j�Bw��룍'�={���䘼��?���f�,�߬�b\�~�t��a�6�v��x�<�0�HՕ����>�����ɟ<=<t�.�WKz~�[���O�><ܯ��������>�߮�.*����Ç��x�[}�f��n^�JVtQ��a��t�t�#�@%�y3��fz5.W�Ͼ|�dn�i
mϗO!��Vͦl���U��O��t���cu�P�3�@�����%>�)X\�j��f���y���k5�,Mg���U<}>����hzU�����~1�=M��1P��S��6�F�g�%QPvGJϡ�i�.�:@��	Ei�A|��:P�L}�@M�/�I���^�F���>cK\�n��F�����N��0����֏ƅ�t#P~,�=��#�ͰXo��,��6�Y,�生�u.8Ұ��	��.��d��@[wf�u^r0��OgWГϚt�&Ė	(v�6b}��<�8H��I/K��^��UƘ��ېF����UMY���� E5�R-��q<byE����UA��q�R�6`�幂ZV�a�E2#���W5�Q�A��7"����1�3��0��+�%J��r�۸�:�Tv��u�����sӱ��U�{�I�ט):�2J��ݺ��YTӲYV�,��1N�*h4��,
�N|S��3&-R��_=M�����./`E���Nj���ѓ�7�z�i�WM}@��;=N���~��c|;5y��	TT����D��W�$����h������*+��ñ~����MY��/��(�f���]#�=�S͑�ȱ�/_RzB�����t[��Q�#���_^.W��m>�'��nӾ�?��kK5�ն-WM�>~'<y��u���];�Ղ�6_/�zJ�iz�+�i�~�:��n纳/�6V�q�qY��4�����j���뻶z�� |DO9��B�\��T��
b�ΐ�f�7�@p�)�	xp��Q�D)�	�_����2ġ
a�$��{�B��8�]���$@3]N�<C��t��?�A:J�,c��6���
?��/����eX����O0������l�9���&H,�l܉�dc���&%���~�{�X�h�ݦ��p�x���mSK6��uh�p�ҡ�̀�g�0���#�����*�_([�l�TG�>[��K�FfX~!9��A����Q��S��K�:Ao1�3�L�@d����&� ��E��K7˂l8=A��1ΈvU�级���;3.D9�]�+.�^7;2>���8]�*�@,���P�v��a�x�i,����%��>�tv����&&_:w�wo���ɫ�y2-�w�O���+���4�շ[����Bͧ���ϱl�rd���{_�ݦ�+CUO�.~�R��������'�_�c���
m����ϓy����~W鋯?���}�v_;u����㯮.�-7�_[\%f:0d1i�w�|�}��O�1�ZL_ϯ���'�տ�w���S5Q��ܷ�JEO�{����#jg���t�]�_��Q�m5��+�m�m5yq�{s?��m��KG������4`���:I˝�jg�o���\��(�Y�'	hޱZ����e�p���"�h|��9p�-�4���IOZ���Lܱ��A�>At�Z1�X3.16q��f� C*I-$���Vw4.0%uJﵤ�+�LR��Y/-G	��NL�%��a�g���g�	�\9T���=�ҟ�9A�&8�!Fb�(�@����6�W�����&4ڍ�)�+@�#�+��oO=�j��ab'�G'hI���z@�)DP4�H���Z��S�=�ˠ@a�=����Ei�0���~@W���eb�%��QQ�?JU�@�_�|����bQ�  �JLØ%�a�C�d���	Z��m���~(]K+���]�\�θ6��6�� ����\'3pX��!'��I�`U�Q1�8T�M��|�{�a��rt�0鸹�k_]��=����~����ϟ���%4�WSx^o��R�8���:C
���m�����P��v�Yv�����_�����+�m��(��p,����ϯ>���C��!u�ooʷ�߬7�o��c�o4����р�q'c�Kg��q\UoQ���0_=}�ӻ�;
��x�~�1�=Tj��Z�E�(�In$-M���<J�r����8M��Kư��]�뻲�?�C����>�.�&��ǧ�M���"d\@��>X7�z;뺼?����2��3���H2���]�5��-Ӎcv	�$��N�y��F��+��\H��{�'6���TA܊��Qj���p�SX
��2�ㄱ��~H��k'�"��AE6�+'�
���{X���#��ȥ鄆��	@
�P�R������G`�!�0�v�ڵ�'���朔~��RF'P�4�zl�Xw?>����dN�Xm���@N
sL�O§'B�E���@��B_T�E,n(�r�����$)�L�DT�Ao�b��tYW�P+�0���6�KdV�3ܳ��1�X�i��6��xkrhY����˜[�����Z���P2A�e�����E]dq�������T��˃K�/����d�>?s��7~w�m��Xue=~r��g������
���A�c��=��lj߭��cW�}iw�5��*�{���//_/����~<|l���Ż���n��hLQ]s�i�招�K��t�ѓt�$C�꾪�z��!Gv`�_����_�(�g�_\S�x��q������t���vx��:_�������oV��7�j�Q-}�L�]go1�x��{�.&�۫���&�d�r<Zf����v1ep�h��TqV����_m(�&�����Q�gqŮ�������b�$�d���h���Z�`/+q㈃�p��Z�v�F�Q$-z��uޟe0��#���W��񶤪�
��P2��6G�A�,�<&C�85����^��c�{Ro��p��t�5I֨W#5�g�������w(�ۀ�ٝӃx�Y*�Z�����^b�(@0�:Ј���
$���j(3uF�M1E���Գ��J~�(D���%�����K��=�����*'Y�:�aՐ�0��E���E>�W�ƅ��V<���V�8U�m�e�EB��0�:l��:+�Zt��3�>-9�,Q��Hs�;]o�`���H����XYQ�p"(��F�*O�����͌1��ˉ�g���mm���.��~X���g��n)z��{��O�Q��e���{��tD����U&ժ��z��䙽���@cE�a0��eN�������g�_>�>����hכ]Ru?�̽�������n�4?�/�Z����_u.NF��t��7�O�zװ�,6�@��w_����fwoV�J#�E4�˜Φ~���aS��򋯒���;���$u���j�y<d���S����[�eIr��eD��|ޔ�j?�vW�v�����ΑV:�.I czzڗy6}fDF�ވ�j �@�T�3in~�������v0z:�Nvz�DܽN�J��5��*�;�O�أa�U����;!W�9AG�s�9�,�O�����9J~J�#WC�e��2��:͜c�D��B���,��~�4�=	N!��8�5^��kQ�/��w���3��\���`� {3t�D(X��a
���{F�ӏ�;���]�d=�U��DŒ�4����X���)=n1�Ο���jDu�����R��ׁ�'�����0E�'���Cq�Oӻ�!��f�U�<�'�`��M���uf��:��0',�9���9}�l��&}���R���zmC�����>�p����M�X�h�.���^�ځ0I5F9�ul�'�5j���Ez"��7V�z%��i{x@i���a6{裕s���v�2��U��a��6��G�7h�Bp��Z��(�m͠�S�m%���˘��hW�FZ'-ڞ@�����V�w2�n�y�M��_�������v\���n��v�٨d-
�r������^nJ�|��#�H�"%DRϧ�s�?��N�b��Hk�;�v��6u����z��ը�V|S�ṀI��3sהo�����4�A+1�/(,��`��>m�/O���Ϋ=�3�u��cv��!��v��r�6������.�0*B�4��5�3sf�����08B�<���B�����<|�Gg����o�)���6����8�ƐEt|=�~�B�$Ri!�Q�.8	8f���U��#Ѷ�_��F�^�2���q���TC�Z��C:�;�4�y�3nkzR3�cqE͏4����G7Gz�����f��88շ=�.38֭�B#F��lT7yf�I�U��I�/v#0Ҋ<���c��k�G��n��э����XRǾ��;w֪Zƭ��,�b�[6j�
̬]s?�~�M͉�2�s���lC>"���c݆_�q��X��Qb����	9C�c���~ h���<���|׎�D|��]�`���5�N���:x�����><W[�H�E�x
�c��3h+H��F����Xz��9��#O��Dhx:���IE]O{�
l!����u_V?H�8FfV+������G"��v�F�����!�?��j����cbmR�/.|�=w���h�
7`U��<𑎬(�+viYւ;a��Epv6;?�?�?��=O-��&/��cg�����;��Y�`gU��}�?}Ϫ�M��s2���w�S*	ЫYUy]X�ȹ>=�x�"ݦ��/�a��@�ұ4��z�����/՛5D6�ị���P�˼�,�}rs�r�{3���iF��4^G�*h0�y��
����_/!ټ��4��%����� ��?�a�V��d��XX%��ܹ��+��_
�
w(d:M��d�j<�oY2��4��΀@5�n��M�
�&�vK��ސy3ۉ��Ȣ1|W��c�Pݐ�lf�.�Vi0|�-Z,�m�ᓞ�E�1�3s�G�R �@"�]��^��E�z�1w�h��1w�w��߆��;��!�T,cEz�&=D��6�(&&��q�ꔷ��5 QS�Za�?s�2T��O��Hg�B1zdwt�=L�:�es��Y�vc��
����:�G�=5���D��T�N�I_�^(F
'Q$�SX��A!2r��T�����8K�z��k�:�uJ5�(2�|Gf�(����hq֥@F����	���"eUݣ4$��Yd
�T.
�\�\�������	��8̢�pC���G����O�9��Cq���c9�_����(�!
A���eU[;`��Q��H=ʉЩF��hP���o����O�|�߼�E}1�$\�3'��_Έ�l�O	�j;v� j7��
9����]����(����.�\F7��<(�����A�b�i�R�'Bl6P��rz�~���o�"k�u�[�|ġ�&"Z6lO^�X���5����ӯ����{L:n|r鼘�;qWP�W��hr_����89��(����ˑ?�Zߝ]��߯n��j�M�l]��U��u�.)��\{J'�q���;���d�*�e�s�4Έ�c�\�A��8�}.�T��j]��S~lZa�kQ��r+���ۂ�Y�.�?��ۼ�o�J�:"�Q�
8����֘�jsm���z��v��#	��(�l�z�!�2j�ޔ�2�+�G�
T�^�����w�Q�Ν�֑'M�ѳ��b�ph���	��3vP���XTd������@�44tc���;��˔�I�m3��$+7	@�
|����la�R�#hu��ɷ;�O!}%�%8�G���;�>�*ým#�Ũ�AS
��y%R���PZ��Q�	|�c,=��}���OZ�a��n���!|�0�A�.�/��/��cm�ԟ����[�z�P�
������<$�s�<�e�Qd����5�P�
M�Ɉ��r��4��m��t:sKzS��V�rD(Y���@�
F��)��Em5gy���<Bgd����2�D�}�n�l�m�l�k�h�����ۮ
�Ul2�O.����/_��=�{�d��]�OnDv�v��܀|�75f;�+�\(��YT��H�������x�"���y�}��!�����[\N�I)�о9�]=�b�E��)�nK�`P�#�}����M���m����o�&��[M�������W���^y�mS�S�i���m��Eގnf�8�%���Z|��Ze�}杝�MW4Y<[��1i3�~���r<����#�x]o�6�ŻB�УKQ�8H�h9����`��,b4��:�˗Y���x��0x�T�]�Ou�h^�;�?!<�Y�f�z
��P�M��j����,��,ݐ�#�Y����'yD�Š�G��~wUF�sdW��|�o�-:I��QG��Nl�x2�M��Svު�1�`�T��m���w\Sc�iL��RG_C�uw�Nu `�>����^c�;&ٛH��
����m���c�b�cBV-1FeB��cK#M��A�٨��6�,P��-�6	�k{n�I�m�xO�#Fí��k|[�VM#}<��j�]�n���C�nZ{�O��t�m���(g{��=���4fPm�_&O:�
<˥�~-n,&=_�-�Y�+�v|�j���<�>C���S<YVh��9�a��8�,۔Y���J��/OO"-�mQ��bB�><�/��:�����
��{��E|�H����~S��u^��e���>�L��s�
���"��Ms��|S�K��`M(�<�cF����Q}�r5	���?9�;�;h'�hs�rNfñ��nW;C���O����ǻ����7w���!;	u)�he���˸��z�zK�ˇ/'�С�f���Ʀ�Ws���u&v�$�#ʛ��_��].�pr3�{GF>��<�H)1U���*Z��"L?
(gm�i@�-[6��EHJ�E�BG
M���i���`vς��*�
?sd�f�-�II>���@Vo����&-	�cp�]Ca�����`��X�~����&�/�:��t�b����n�$F\l,�2i�^�!5��<�
w�3���;��n�Pu���
���)���v�K�zCu�O�;W��.S�Q?�m��_[��
����K�އ���у�4=n�8������(��8H��x���v.�4PsT�+�FY�M�hRS��Oe��v��;A7t���)�@�g��ت@)�ܙ�� �;Z��\y�5�.�y+��ϸ<Zm#�u�!�z�g�Уb�v�^u�C3�ű��W*�
���]���D[��*kd4���r���v�3?�#7�`�����G/G�EҼ�c3�
��!�6�����m
�t���~��r1��'l������ٳ��ى?���}*ש5Y�E�nbl`�7�y}͚Ho���"�W���d1�ː�A�J�C�m�}]\|���W7�����.���]����*odڪu]�)۪"&l
�,g��p�MS"ț���l�y��[��v������K�x��?���L�������(f��/��_-o�n�oV��^?��j�6wC�旓��[h�d�
G����]�7��ٯ.��'uRL�]�#6���ۼ�v�C�W���\a2����$�۝1&6��=�e��7A0D����3,�豇�J�4LDb8f����E9���y����LB�4�HNs05

�pEf����%��k	�	.&�Ln�SV�;�է��-��A`��kC�8<��a�`�~F�@��XH=+K�?�l?r�$G�*҇Lt��n�n͠]��������(0
��c�cx�����y�=jz'���H ��ʌ�'{�dz����E�n�k\����X��
�D�+9Nmz��98pA��yW��5�)]*�q6�P��;W�츄|�;�HT�Q��}w�9�(�|b8�9nf]��4��D�-�<r�$�q!^sa@\��#;ͅࢂ������C*v�b0�[��ic�m�.�Q5t"�L���Ů���w�0r�R*U�r�}O|B�΁Rp�j˚?��S��s�p����	��`�p��;�ƀ4�mś�֟Xo6I���xd�-K8�(�|q�X���(ak�$��lxu1X����ﳆ�p�q|����n��M�Ϊ��8����U]}�՟�r[Ʉ���uܑ;�v��k�S��p4au#���{�ճg��ݾ��ժ^�����gg�7���r[�e�}��ݥ���?md���W)�/.���y��aL#��&߾I�I<:������j�J&݅t'>4ږ��|*n��˱�u�����
c��W�o��MVݗ�o��]"��v*WT����Q�u�}��b�
��n���ػ���A��j�8���3�!uHQ�:���x���nL��=#G�l@�oĿ��Z��2��¼5�[xc�-��q�s��
�쪺g�iݴk1w�Y�9�60>-�1`+N���;ǥ�T��smM_bL<�L��j��;ğ�`�D��P����@����j�N64@C�^u�7�蚃v���!T�Gj�B��#y̰�2�:/V��Ơ��v��g<9��X �Z���]�1�•�E�Z�';%��G�ta�e���S߷�i'm���y�
�=�ȋ�X��:�E��њ6z������L;�X����@!���kch9� 
��ndACW�e���0�Ej��{Y�кs|u��=	��2�������6�OmZ73�ِ@\UR�N֜�d�W�_=�_�x�g1]^�-�?w���?��f��s�\�Qdx>(k�^W�����M1**�^<��V4����:�z��7��w��j��OJ�|޼z��:yw߮s�ԱO�މ?�ؑ���.mdˊ���4 j�>�=\�M�/�o7�w��3����1��W��j�$�qxR�[�Z��@��U(��7p����U:w9�����
�����zW�=|�Ɲx�eu���ӼL��f�O\,e��_�ŧ<_5���Ǽ�b[�(R;�����	yK3��X�u)
��n1�Y��u����6�����<}�5�W?�\=�
��Fs>#KƤ
�Cs�#Rm}q��~$�,Zm�����D�Sv�\��g�m�m>5��cFWo̬�Ըz�`��YX:z��6�,���-Ԙ5(�Qj�R}����5����YV�pd�ǁ�(kBګ�~��:V�l4���q
}LɣM�1E�
0��@��=�Ь7���X�a��ԣ�e�C�[6�'��iړi��h���w���3YC���i��F��؏���Aq7U�i#ą�+@3��b��mަ\��6�擘�I�_$m*#a��v<�����\�H���e8�l�̻��B�B���(QT�4��%�	�&m��M)���>�w��vZ���ۢ#�jʢ�l2��x�φV�G��c!�h�zjkٶ�,?e�6K?'�@��!l��p�ίf�b ���ɋ��ڦ
~:�z��/~�2���j[ܗVQE�e���3�/�LT�wP����/�óS:����w�5Ao)T�Z�9��Ȋ]�Y���UQf�w�l�c�>�˶�y�s�7�j`+1��m�ok/tó�7��*��5p&���/��?�v����|B˪�i���/��Y��o��d�tʪ�
��Y���n>5�_-�����<�Mmo戇&�S�Q� XN�y��Ft��
���x�į�ӿ^��\��C�@F>ʱ&��zT]�$K3�|����A`(ԥ[�P��
T���XL��2�Mz :ւ�/iT[�S�P��Ș�F�ʪi9f�tw=%�`u>ڕ�V]�
ת�%>Z'��,1��h<����������3��xB(�[�=�<_�>�1	���2�V3�W�׼�tz설�Nq��b1M���l�$5B1sI�;�׌��:�Y��j�0rbdW���R�G��� �6�y��(��$G��y�JQ�8s�_㤨c4>�h�+32�)�02X��a^�/@M����>�H�S-��N�Q���E�7�`z(^�8��x��E�c����U��gc��(f�e��$4+%s�iO���<����ҟ�m���xQl�փ_��.R��-m�O����Սn_���*�f��Y����`�Yh��g��*v�l+ZWbS�y���}֖Փ�z�O���0/�0����h|5�CQí�xZ*D���궻�Z��NN��ݺ�T͏��6/ߦ�S�&�p��#@�yÚ8�.�FU�P�y���G׉�U6-�VX��_�����z�����M�LJ�ۭ�T,��<����'��ć��]�=��X����-|@!,���q}�k��*�G
��W�'����nX5\���v�Tz�&���2h�E	3���ߜ֟K���]��!��N��rD���i��l��>�����.NT��U�ڙ!�@Q��r%,�!���:ZO�:o3$�����o4��R�q�h��ˀv��`���g��A�׍ozJ$�.ks�t2\1�J;0���Z�E,@�es*�h�ۥ��BP=�9�$EG֖:��H�ā����A�ӥ�����[��T���y���������v)�]��ԵY�Vw��Ԗ9��qFőA�9��L�r`4�� 
��g�aH�&^�і��B[��wW�b��8!HS�x�v�6(c�51�}�Ѯ�9�"F�l�|AI��%��s��Щs�1��]�i�fV�4��z��F�(ۤ�H��r�!�ԱТ�4�!�.LoB4bX~܉�M�/|�U�Q�f幖3o���8ɦ/�j컓�M(�TH��Ի�����ס;�'gc7n���f���V�A���m�N"<�E����9r�y�nW�]�nr�f|6���|��~O����A�߮U���Y�Ў�]{�ܙk�Q�Sox��[|5�ES�Kި�>
��3:��?�����"�
<�6ۺ�S�:m�
�jԋ :��8-C�$��6�2r�A������Mty9z1����~N�l��8\kcּ/��U
	�L��3{n~L�a8^�i
���oI�b"(�.6�йE�@����s�|���tJ&��&ٻ��$>�V��B8�Έ�_��z��Siw�@{�4@�:�l;B
`[���g�@3���\��M�����t{-\
\��2o���D�22�Io8�6^���?�c�:��N���Cb�6������;�*]��ꁎw@<�>�s�R��㱨Pu��e|d.3�a�9v���/��
eBՉ1���Mt�&&���l��B:�R�^��"�T:*�
�D@�����{61w`G���˸�J��:C���W&�xën���h��R���Asq�|<��F{Hoԙ��n�C/�m��
"��v����I��,N�a�P��L�ۿ�@��JSm1�ԡz����m�Nҁ'g�n�ql��my-��Gv�qd�R�x�`Gv�����l����c�G̉H���s�3�E��_�p�ۃA�qo'Ћ��*��%*	�O*�(�>���sk<�vPI�?Y�F������Ix6|U��	�%&��3�Vp>�m3��_?��}�1�>n����!۷��H'���_��Hoe�X���US��&Ҹ��(��\�
���/��8u'����m��94BʅjWq9p篮����3q[�wW��P�k��>:�`#���n��7���qj��=�C�dُ�̷Y@���;f�C�9�GO�ͧ�y�4���r�l��PV���3c6�r}�S�be�ѹg1�^�c�Y�s���\�jAD�Bx!kk8k�-���\��NC�����a|9�ƀP��1�-��V(x��G@�o�ց��
�C����)��b�s�F��������a)�5u��D�@�s�>�#F����:��		��5��?ۺ#4�1
FƪX�^ì��Y<j��d�25�#�CG�&UבZ���b��a���z��>&�v��]$�٨n���P�g~C>��+�h�Jڢ�����a���[���.q��H7�9
�[�8������:�>��a��v41
�{��J��(k��}�A,�M����d<��8�x:z�c�9
~b���G�65��p
�A��ڈN�[h8�I|8�B�,���B���z��%�o7�Љ�:-amrxc'�;���~��8��Dd=�W��ۻ};�d�y�bE�_�k(�y#	��)��"-���
=u�fwI[��7wu�e5FSwNo߬w?슻4|1��,�x1�L��	_?|JX�|z����4�O!EVr�'b[e�s{:����F��W����k���ܪ�,��s]�+��
�*f�
���Ԟ��"��e]A�N�A���"���ػ�2�˚��G���U�7�o�Ic��/N*萷�=v��ۺ����ջ
��
���N�9I�k_OB�����]�n��c���,N�F�w�ym�
����KY��.�����y�}�+�K6Q��;
��9�&���)��z�y�������.�bՖ[�l�f���J�n��T[�14�"�Jt�%��\��}�< k��1�&	��@cN�?4�xI���z��O�������ccu����P��SQ��F�]K�Ti����>��֭c�u���н��"����������|�qM;w��?�1��b=N��]4ps�5���v�G��g���<�]����zE���#�L�^ƯBW4E��Zi"KIO�BB��*h�p� U����7���(e/e�����rO����,�W}Һ�ߵu�thjC�?\V�F�z8�&V*8��!��Nףk��Ɉ��--��r�8�|����S�|�L�Z��W�9b�bnh7��zWB�>;���p�N�h:p�A8G�JW���t2�>Qo��P��S6IE�X^��=S>@�$뇒0�����x���v���Ç��NU������F7㫿{u��]�PC����X���Ɉ���9ܖ\]��%���M��F1Y���
��۴u�+���� -*�,�k?�/���'M���소��\��}��\�lU���)�v�f���-�,IP���6G�<�v�,�v�Z>\�'_��p�Z��*��ov���)�Xn�5S�Ąz�ā�b>�>�O�����W8$��\�M��}��.P�-�G�O�?b�g��%�so6𲇪,jڛ����+�2�������������_�ʏE�mʇ*{��~y[��jV{Q�N�ݟhu��I3�Q�#�mQ[��-�L�U�2<*�,�\P\z�HE���l�)tE�z����Զ���A�e�E�K{�&�vYӆ>�;^Xzꭗqh\�K�v%�G�������h�쐵�Y>w%��k�.����茮��Cb�*�V�Exȩ ��/u�1��N�s��~��M�z�+#Ē�O���3b��u��2�T�}�t�NJv��ɭuj���
P8�U!�i��A�4���!�"�D��a�
�nS�(�u��I/v-ˬf��5}�ѝ��!�fh�[0�D����-���0�Y`Sm
����]��!A�}�|�M����؇o�V���7�.}.u�R�ssn奕��?)��TS̟?I>W�!��2�^�&;����E������haŗ���;_�\_��ѧw��d_cr=_��
|��{�i���_��M��XYA�o�0�.�ۺQ(��&���y���vx��Nڷ묺�A�S6���ӑ�|=���3FK�!���2K���y���r$e]8Mm+�-?di���$
c"Wu�l�]�I�<������P�e7�d��}��i^�9Z��k�^��<�����f��\��6/�y}�Twys�:'C
���IH�:���ܲj>yr1��ӡ:��m�d����F���
n���V�{�V�&�gD���ik!1��!!*H� �*�� &�g�쫕e�7U�����F<c�
7�,k4o�-�W��`��\��R���|m��P��+^�.:����*A.P���
¸�����H�Y�tW��֝�iYt�b�h��e=��[�c�vYU}|m�fU�C9�Q��A��MJm���°.����@�1o��ٷ��1��Y�����u�Ҙ5H�*��pj���ɂu�7���f����w%�t����*\u'uՖ
��\��n
��s�������bUW���)�Lٱ��@O=�m@=,��j1GUq�%���v�8���8i��xN��jMh4	�!Mp��.&$ͭ��/w?<��q_�6��p�ݱ��d��L۱�hW�xH���nK��ĵF'a�f���^�Г�����m��F,��j|��7�$��:�q��EӞ��y�,��n��p�f�onU��wC}��՗�tm���j'��Y6|7v�ky�m�xq6�rJ��:��"�+�Yi=����_7?rWS�&&_.����N�m՟�`9\�5/�������fisR��*q�i[g-��/�Zf��(��7��_��O)���ɿ%�T⾪�囜����Hc�t9�E��x㸸O6o���8z6�۸�Ӻ�n�VB�b2��*��*��$l���C�����V5QMn�K�6ol�aH!s�@[�eP��z�~������.���\ihXTsj�	2�e�h�PdN��^�Z��S��'8�p��]��-aWw8f�P2��p��)@����ҳ�Ja�q���7c
�;��[��#���~��y�v3!T��}L�l���3,�L}�X�3^Bg��4��0e?��O�<�Ig�׻*�o��L��-ճV�^���}.��Y����!3��)=X��*h�-���o[�>Q��h�k�.��5�Ii�P���jHz�B8?P�⑆�����٤_U�-�91G)�rBϛ9h��i���p�
�Ӯ�8�w�n��

t+�d�:��ΰ�vg^'�M�/����	U�����Ҟ�|�{^A��N툐�8�ݐ�yʳ
JFt=��
hopAİ;ձf��o��&��<O,7���o���On�9`=��,%�[@���9ҵEj��Ϋ*�m�lSɡ���ݺN
n����O��m�p�(2�bAś�鵚�ΌN�׿����������&m���oX�eK�p<=������������y�9���鴼��k8�A����sg�̗ާ�X���L�Y#����fOϖ��8�����p��[����~�֫�O�UIR12�|���c�D���u�垷yӖP�8�A�J�pkG�����v�~���L�s(gj졗q�ݓ=x3�L����U8���s��x��ﷲhIh���'���Uqq�0��.#��v��{$d��Lr8���lWij ���&�8�0obS�0�U����jچ����;:e���e�:X�Y�+�<5��)laDo���
��t��Z��y?Μi��=��!��s��^��8�3R4������q��_��u�ภ%�F{'Y4�]� ꨚ&���(��M
"�"�C>J2��y�u�Zlu�^߭:y
QGƂ��Z���uԔ�{�K��mGQg��v�U��֔�8 ^ �\i��:Z�>]!��PR�c
.0?�3P"hi�Q�$@���jr��tܟ�P��7J�n�{XuF;���k
:�I{y'�h>�c�
x��FY_;��D����B�S��=�79geq�z[�#|��S�@�$���ӮZ׻��ݧ�6�{{���}�x��M%��Mc%�
}ϱ�Sȅ�>>�{t;��ߺ�����Nls�od��F�G�ȸ�E%���Z�+�h�<;	���Ѯ(�g�ɻ��Ǖ�ES�dO�L�U���x�����]��X6�pI�ճ�I�Wn�BCV�
U;�Y��^�ϮnR�7s�%jj;'���y@�.z@lJUR6�E�9͒j��g�s���r^H{�iQiˡ����E��yt�X�{%�5]oJ7�-��|p��gNn?���dQ�}ʊ�<�����N�*��Y3��g�
?�/�C�još��ޕ�Z��r�K����͜)���{�\p��%�e"���׎.�x�y�4%���;�2�1n2&�	�~Rh�/4w'&Qg���[p��z�^G`R�H����;l�y�tre2����ط�2�2��`z%"c�G:�C�{I>�d�r����u�G1OH�/1�?�~U��Ӹ����x�t�=�Vm���9��Q���c��4έ�S���A�:�X�x�錈B�¡sȓ�@�8�:��q�p=F!܍�,�OL{bZ?�w�v��wٓ�x��9�e��E��JfQ�g���"���TU���gՙb�c��[�V�<��)o�Ԕ�!�
�y
��yZ�Iz��4>=ͷ--��bT'�{h4��sT��	*3��^�D��Q����6Z���E�����QW��i
g�9�G9�\??�.��Y4<?i]k~�8z�nv��&�v����u���?>�~[���Y���ERo^�5yc�0R
.OG/��f#2Y��mƛ�}Z?�_g^x�d�N�����|t�l����P��c������R��C�ۭ����w����nj:�]���]?JhK'��d�¦
�%[�QP��W��q+�C{�m�V0
��#o,�XV;��9�/��Ѱ=����z���	D|�mlx6�U(��i����{>n��ހ�S��yYU�x�D���'x	'�N�j��@�w�;|��l�2}]�?U�wU���I����j]q�xZ�N�ĭe˦F:��ɏ8
�}jV:xI�X��!��7�88���]�P��o�n9�8um7B�Ϩ�8�������n�9��Y�04��(�@b���B��A)mk�є��m�R?o*;����8���D���I��� �<���M�;GP�E<�<>�&�
�q�����n
�;mӓ�7��y�=�LƘQ�a���'�,�d�!zݪ��ԲG��	밃�K�$��搊ˢ�)��I���\,Z+&-AZ��C$%W�x��O/P��hx�D�9�	�-�Ia�c�m�=�I<	���0��6�\c���eV,d�Ws�m2M��N��S�8��!����-w�W�Bԩ���eIJJ����T�';�(Q
�;@xH��(<Y�/���tq=�N�z@6��>9��/Ofm�u!�M�i7���2���P�7e�],G�����U4����h1���˻��v���AGz��U[VQ8?�͟OĀD���_�|�_����e}W jV��=h���Z��Э�������`L�K��ԏ�Eޒzs'�1)w�;sF'����pJ��-g�
ekB�?8V�5�֦����	T�`{���B2�aj��t<���O�zU�i�1�������z�@�J���rk�\,�N���`	��Ϳlˇbx3�;�gpI��;�S	�$�5%��]�Q��l�w)Z��O~������g�p>
��㡵�3$�)�-��!:I/�c�eZ��.zʬH��k�tl*��y�ts���`~��o��8�w7��Z���MϚ[Ku�zus�<%?�]7��������d/m�̻�FL�\I��{���A�9F�l|T�?��N�(�ݪ���hp�J)�=7B�H7�2D�o�֎�$"X%&�c�����L��
V�,��M�5�ʠռ
�j�~mw: �s�][��w�2��X0bR�!A����!s��vϳ�E�	�E4�1��j؀��%��T���<-�A�]��F����m�nR�Fk*!��}EL�� :��R�-�4�b�5�9K��6kx��nB;��}\@��BG%\�-��V�twʊ��
�����p������~��FW!���վi7%�dz縥B��ԅ��Z�K���(��[�Z����m*�һ���I|rbG�����5x��[�ua�Ǚ=�ݫ������v4�\��O߯�p��m�J��!*"�/O�ON� ��a����S7���.nsQ�M3�O�K����
��y�E����U��n�y�e�t �^�C%+?�-.F�E���ȃ���O�
AQ�Eڀ6��`��9������p�c\.t�9,����7��O�߬��N_L�j�.��N�JN��'~zo\+��P��qp��0o���{w:�#��7P},3���P&��8�YcO4G�kX:-<��\1�r 7�p1j�@rU�*nxP987�@�>�1�3�J[(]\P�im+x�l](��xk�>�+�6e������K��$���`�Sq!8P5�(��S�j�c4T?�\�و�R�t?���P+�v���4���Y2g�Q90���VG��
�)!�jc��ޅ�~Y����]Dq���귄G/cb�A�#�86����^|Pc.f��^E��ȍ;6ᒦ��dZB��<+�$�`��~ԛv����ۘ�[�*k�_cj��}lb[b�� ���9"z(�}���3�t��D-kc�CK{fu^f�υ�P!�	����̙̜��\��v�tL� �Ϫ��rlh�l��.U6
�X��^\/�C�����9F^8���	��ġN�H��f
]!ug��v���"3��"R�-�����C��t‘h\�.�M�/�
�֏����TX�5�ӐD.�m!d���M!s:�g�>�ߺ��E��;q,34da#@���'��������E'���D��_���-$��a���������򹌦�Z�]^�O���EF�Ck���?]�#�j��7��x`Z}��۔�/�9<ZF;	�C(�V^1���[�'x(����*���*�SYeB��E��X�C���N��N�q����l����*��}%����KE���/~̂��7��ˡ���t������N�`�Cw}����e]��ɪfP"frBJ<��7q:@����2T@m9
��6��mY#8ҁJ�=D���F*x�c�+U���K�a�bPB}-��A��t�Q�*�2��ν�X"�U���;����L7Q2�N�ht�m�1T5aw�1�Z�����ph3<��PLY���%�<Z D8V��c���Ą�J�1�aBu�pAߩ�:�/㓧�cmif�?c�c<z,3�;�:{Kϳ;�r�_C��=gղzP'o���AZ,�e���J+�� #ʦp�$N�|��2/�)fƉ�$�2C�7�C�Ҫ$��~�̶�;�6��3R}�}q�8����
�]Ul��a

���m^}N��=<��d/h!��:݇��멿R��5�<�d����g�Pu�)?%ͪ�ޓ�O�O�����x�Ӹu���h�����w�G��5�7�Iq��}ha�}G�D����6[gpf�8�N�tU�X��C�Vu��������YYݦ��j�ѻo���؃��"�e�%��]�j'1�ӟ�ήOcNS�{N`��4 �/��K�W����QE���v��a5pS��/��$�&&��e�D�Ɠ��̢�c{�7�B��4����Q8x��f�8����6u�d�/�h�pB�CJ}U4e��؞�MN�1�M�g
<�\V��aP�O�|d�m����ї�p9?��S?���<��2b�H*7���
�a�c;�8��U�L���m[
�{�6I��[(2�DԶ9|�-
��ח�-�J7qpHj��Å�U�詫�����-�98���s5FLZ�f�+H-���Z�HJ/�K�$?��侂ଽ�4B�C�t�oEd`ڿμ���ͭ�#<�9Y
u�p��y�^hb�{F�u���vx�{gy��!0�iw�����rHƱ�.�Y{(�c��ʻ�͌�Ԝ�4/g(ZUw��{T�,s�F����6�º�&\È���(5�t�s��
�+@��˴�����+��0�'=��@L�v5}�m��#94�K[���nS�T�!�[k�re6��͋�����Zm����XV�4�|�uh�!k��%�C���k���:��5��xo��3=�c5v1oy���TMh�OfvD����l�JvTr{�_n���ӯ����4ն�3BsѮ���p�?nQ��U�>m3��[$�QP\͞L������'|U�M�-|\g�?�G$:o�9�#�$�.���j0�^^�+�}~�Pz�q?ܗ�U���jS��ݦ���_,�`O6@�D�m�ۦ�����w��G����
˱��m686�>i��~>,c�|�V��>YZpꆭ�?���,:1QY�6��J�Т���b��*5`%��h2h���v���W���h�7���Љ�����"������}QRV-*�tZ�6Jt��C��XS�4R�aD#��l���
�2�JbK۳U����E!�q'p���\�DЈ�O�MEX]�@�sme��(ƾ9�ytmb�m�I��!��=���8��MAgPcl��6�B��Lj���m���4|�����7{��4�r76�l^��,)cr����6�'C��"��,��A��)}*�i(�a t��T���5��Fgz'�Nj�A��8�hf`V�^��R2�Z�H�,![c�AzI�<0:>���O6?2H�kUG�'��Xj�ߢ�����dh��;4��)��!qk���K6��rؼ߶���Ef�(�#RUt�����͌�3K3=z��Pm06���ێ�����Tn���
F�M�������ѓD�PH �.8��Y���C�j�X��W�l�|g8���S�1�
���.��o�`�x���?��z��:/idRYs[U'�~��?}]<�}�㝵k�]��s�dW�.��YQZ�p@.�L���s�㟸���h��r�M������`�=�%kwM���Ux��G�h[(�Т:sN[䬮$kx˫��}2F��d�"/,�q��mET?J�<Fg_L�딕8�*M�N�E�ܺ���;<am��k��+���<�t��6�䑛�v�I��)�Z�\5�C�
^,�i���ڬ����NA��I��-��2�z�]���Շ,�s�B'�xe�n�6�1V��_m��ḉm����?�]b[���
'����2*[�Ĥ9�ҩ��Ô&$;����<�&�:��{x��Y���Pt��/��d�X���AoM��X촻�ALfh�-��5�z,*&���>��v��.��ҮO𩍦��+[�
�lZF�[�3��]�D�n���tP��
�T�>��C�g���"��\h
��+������@���ѦaH�@��$���	]������P.ehE�c�-#<4_�7ۋ��!价�2�B���H��4�vb�~@p{��+��PE���
qF:䁐c��)�}�q� �����x�]�n䃳��t��G^0�2�Mׯ��e>{y�_W�	6y͋���̳���x��F�:���.�^ܔe�\�Rn�?=�O��I��`h�gu�)u�=Z̳��殴�x��ߕ	��F������A��F����fp}jO��"���''���&˰ʚ�S*�r���Τ�Ó噵+~x��l�DU��8C��j9`�}��;!�Rɧ>�p⃥o)�XU�f�X�����y�^��yG�}�f���
��k5��E��P�慏@Ts�lۏ|�xPC�߭��?+QM>d҆��E酸�І+!�����=�!�n
m�
-���A	�;N[%��ԙ�<)y�Ug�[�L�t��Ӏ
����� �y�<���h>�۴��d{��	���"�}��5�b����˻��TG?��/[�C��Ov�*��h�m��C�Dc�0Ʊ/��#$��Ǥ��`��:Sa���Z�f��F�=�,�XȂظuR�2�%N��2�)<4V֚a��z�5M�I�#8��N�ZLe����D0$]��u�ӭ6�b��6��JP�a���IdG5=�f�"��O`#M�k�s��q�qh�:_�n�׍�t���O{�R�Y���R8(�虢���C#���OE��^��ti��F8�MĈ�X�X��/);B��F��'����-5���uD�����q����̓C'�iw�<���a'vyG��b��k�W�щ�Fy���:��/yK=��~]�[霎�O\
}���H��txv�c��i�8�8Mɫ�B���"��;lXi]5\_�6�$�^���T³Y�߮�(��'��ىS���H�.K���{�]	E_'�=��ڝ{�Xgcw‡�ň��
�Su�����g3��[z�Ysy�{���	Wt8<�_Ol��֒�Z�JY���|��I�i�^�W���p6�<x���&�G^Ƙ/C/�×%m��}���y����}S�陬�\{���� ;@3��O�����UZ~��"�7W�||q}����-�ȕy�*�Iu��0��g�hnA�w�3��YhtvV�
�8���)�E�h8�����3��La�pa�߬�����Ő�nt�^�9 ��Ǎ(9�m(I8g�[e����u�]UJg�Nڑ͹���{���P�/��жH1�i0�پ�=�Ѧ�)�ˆ�Å��0�7�\�c콺%K�3��q|���M�6�h������(j��e^4�3����HK��e���FI#��4$�ڡM��o���j�s2��*�S���̓�D���>'�q�P.J�"]�O�WK��b�����V����G��:[�c1�s��rW�4j��`��{��]�R̬e-q~E��a�=���[#���E?���i�Rc��Su��֌@�o!msxiKn�Wğu�kf��y9�J�v�^
]Ѿn�x�����&QF�H��	����+b��Sek�l31s��M�뇴r��kk����j���*�]R
��k�����uՠ��	&|-��0$+�ri+�Yټ�杓5U�i�����[�!(��G_:#�]�-:tuE��Z���n��.Ne�.wy�!A*�{~��-���U�8|�de��̟���	�.
��wy�{}����h���X�6�W/��ϏQ����vDUUIo�y���*T���F����AYT�����n�b.Q��=����$���i^NuH�}���4v��Q|0j���ⓣ��Q��"S��*	:a��s�����s�7���M�ѷ�1;����V���N�Y�m�㏏��2���}{��œo��
IJ˒T����u�;�C���w��)\�Unr��%�h'�.��E6Q���3A�鰍�I��^&�{���Gd蹱߹v�޴ǟ��"sm��q������ۭ3�0
��y&5���Bs)Lmt�K�nxԧ
Nxa�w}�A�V�*+�!�O�
8�Ti�pUnżpbFW��\t��)<:��Y�P�����:�s�ռ�;T��)��nA�n5��B��S�AK�
�����7u����X$��Y�a�SB�2�jJ�+��&ѫ�je�Z�KB������tӜ�sD���L��l���5󚭚��9���ׂ�͞�7�WW}�F'�я�C���O�݀[6�����������V=����*i]	�4O��jbocx�wgl-j�N��:'^�Q���W��7:�wt�8���"��n��\-%`S�,r���yÂ��F�o�eW"
�\Y?�׏.p6�[6H��g�����I���[,��2�N&��yw�GG#p���t�x*EH�.D=<�X�������K}�hs��E^���0tc�Ig�*`o��b�DNr����%ڸ�K�lI�Z�胭���;��^lj�5+���wt��m�u�ZU1�o���J7������G������q{�ŧ/Ϟ���l�n��3jE�J�����M�r����s7������\��i��L2)G�t�-E�^��pg�	�|VR��p��]��j\Aʦ3�x�ȤhN����'�T+��
Y�ev	Y�J�:/��=t���r��LA�R�ݍ�n�V"���T��`�W„��M�́�	$�p�]c=H]��V4pRR� y�ﵐ�_��r1)��S:'U��	�׶4��ag��A
[�!�����"��*s��eu�9�	�_�@�@�\L�P���^��ڻ!�Y/j)!Pz�7�!
5h`5���Ũ�K��{XUEqk]f�Kb���j�y���
�
���v��u�ě��q�V�!uRj������z��^9ެm�1�aFW����VueZ�FT/��@�U��� ����&�2�ނF+D�媍~��fjй�g!�ïz+n�޳��g��`���J=�^}��&)V|pӳ:a������εt�!X��YqU��:]Օ�$��PE��ӂŮ;
t.<�����1�J���ۀ��_^���4ԊF6�4�7�j�����\U��Z�beF�g.��\L��n��Z<���ܡ��_}1�!T-����$Zvm%�_�݌�~W�:6�eI3�I�`�5��-$�*ZN3�u�	�IQ:���O����Γ�������2�[߹�&>���n[9�z!#ߛ����d��-�v}���	���owC�ѕ4����rp���~��~WV�Qh2�u�ȱ���qT���ۛ[�����e�&�����L���`ߑå3�,.d���R>܍�a�#n��qI&��d�6�5�Uk�T�"���8�E���=����JE���XR� �}���)jX�[a��\�����јV�8�����ey�yqP�
�έ^��ДB�-�����&R2�K��&�j*����Y�O�GN��v�'��^��9H�p[�L�I�\��c]��U��[��.k���
r�aI3Ǭ}1Y�����5x۫κN���Ŭ���:LH_M�r�>CaXxv>n{ز��<�E#/�s�z"��5����ԓ'��]ݰ��� KC��*u���l�Jg�7�uٛ>%5y��J�5�8k*�H8��vU�n���^I�{Rƹ�us��Q�G5��rݩga�Ah��Rè+��K�J��ďu�Z�%Y��!��R��t�PKbu���c���ƪ�ѬY�_��M*�j�f�^�;6��T�+���0�>���K/u}0��k�h��6��`fZ��̭�fUX��^C��K��*r�ֵ6�Ά����X���`G#��q����`���Sz^�
�Uii��uHkXb��eeQ�Ȱ�Yu�b}
���u�b���]��p���p7�J.�3V�,e'4�(�M#Bm�0*�S���9��`�;���65�r�������ft��y�&=�r��I����:yY���{��w�ht�lY�ReZ.S⚃�P,�D�w����>/&E��|�ނ�6K_fS[]d$�Ј��KM��9�Cyn�R�!g�̴^���?�u��/��\�'�����?9J�S�]��v�=�>�U顭�==+��6��$G��Oep'=ڌ��м��K
�{19�:mN�%��x���Ta/3y�8-����:S�<Tי�gp~�]��~Ԇ�W�2��2u.],39a~��e�z�_ͱ��o\�F?B�Ñ�	�2�
�)��Xx�h�zŸq\,�P4�&�"�6�� �_`8hq�dVk}�!$p5MoQW��Qۺ]@`�7�G]_gȞcQKG;9)S3���f_]toVr3�ܐ�oE��n�^�;+���[��4���f��*j��(Nխ1���u����b��/����6ƪ#
o��
\�52�]�d�}��Dy{eó&�;^û�}��i���j��"�Y��,T�]H3��L9xF�z�i���&���;m\gV���b���_3�dk�(��F����
�����Ճ�#��f��|�+/.����؁O�X�5
v�^���:�X)�M�<�>�jxY3��ml�o��g~��!�ɒD�y3-�
�CZ�SV��s3ő]�F8��w[�}Rep��%�*O� ��=�������.�
��l�;���.	sQ�NUe6��7@�(�h���J�B/J�]��:�M�/Ͻ�^[K/���3�o���h{c6�f�L�eG�T�Ks��I�r�1�����a�`��.ē�Ͷ�k�)���</�Q�wL.,��?����S��A��Ѳ<�h�G�wl;�&r�l9Y�r.d����+@�z�! x�!w�J�ӯ��p�(b��E���fy���	
KBք�2m��l<��s���H'��8�p��y@�K�`�/���)��y*p��󰫸e3
�<�jl|��p��3�J�B��px�m�9�-D�J3�BV�8��A���:q��ȴ�_
��jZ��?�X�W,r5���A^�Fg���׍5���,S��sA�!D8-ιD~��}qDr5b,�)�rn%F4�r��ʓj�_�7:O�l5�Cn��2���k���V��h��+���9`�7��#YgkkuH�WLOS��8�i|�/c^���Z7�n@,zK�3/~媃�TՕ��u��1�eJ5�p=�R�k��P#�����_&���\��:L5zX5���nG��C�AO�q���`赾��ꗛ���zZ`��_k\`�<�)�}k�!Ǝr����'��6QJ
��k���G]�X�n���g�Ҭ�e��%�ͤ'��\[�Uw|�j@�t}�d<{6q.��F���i%I�fup�-�m����,��	�U�.���'so�����v� ������!���s�4
'nV.��X�����0�	}�p^�m{���c٨�D�-�A?5���f��|�ʐ���޽����?=��.��ES�B]łZ]�ҝ�mǛ��O��O�<���و�6{$���e�Թ,f��T#���w����׵�߽t���RÚ�u����p�0��9�b�:�J��L��KE�gܞ��K��Vk�r�ʛ� ��Y��p�'4͏�#=3����t�f�U��i�Ų��`�.��B,���s�y�H�o�`:��QDK�?'�͏3����\��c# �M
�+���x�&ey^`��Ox?�.�8Ͱ��Rn��n�����ir�q�Pq
Yy�u!tRX�'��N@�b$���e���C�����X�a�w�)#�V%��J�V��;8]W�
X>r�i�p�K�"#d&H�[!J��*`�7��_7�tKoh+�u�kϵ�EM]U�� ����J�AcMe}E²k��
5�(��gt�e������$���0�!s3z�mZI�^��2m�{�u�J�rk��T��f��;l�P�C�����aV�
�ɮ*k��4]
� w����"^
W��+ݟz�������?� {G�KG�%�$p?���@����7��2%qKM�=L���qJ�p���ll�q��C�]�8�+]|l�a����72f,:�yL�V�3F��������p���]ܻ4n�^�/^\�bb�vZ��;3M+U�0m��Q9�B�G;�X��c‹�c�tB�r�C�4�B�1yY8E�zBq��2Z�n�>O��_.
4<��2W��[��JL2�G�o���>����gO�����,.��/9�<O�B��2�`ɹ?t���7���h���"��x���Sst�Z6�g����ַ��~y�M2N��^�a��(�j��0>�;�`����A��o����nlw�J�4�_.���'R/t8t�o9/����m�"�q��Ӳx�0Y����=���<��S���wᰈ|�[��%��%�d6��8te�����^&�[m[�M��9d֜�Gi���T(j�ȃ\��&ev>������S3	�x� P�o��Y�]k!O��S&�~΅-�� `r�����$7�zp�T�V�wVA�p̺��*�r�8�U��ࠠcd�\�����zkx���E�$DO�H����U�S:N]6����a�Ț����5�t=�wS��	�Idn��We�u��[�W�W̖�&�q�p��ԍ7[�֡��]s^�k�M޴��UT[�ț��d�W%s{%�wÂ��B���z���	���j������O~�n̈́׶�m4�]AQaˋ�ߧj,<!B�{X0�23還8����ik�A{�-+�J�k^)ve
rdL�݁^'�����7lB�����v!��.��W���;E�`�G�4��Vi*gU]�ZJ}
�#s���k��n��T����~��s\z��dX[�J���.Z?8��O!���	~�Ì;@��bLX>��F�{�t�..�O�vd㰛�����ϖ8r�g^*��YYK��l��ۋh'����/���~0|�J1� "3�)���O
�)�"}��?��7�|=Ϳ:iG�s���r8B����4%�1!�^k�0�'h�*��,��ԪOO���\�-��ذk?ء�l�ո�aBU����,�؅lqv.;��~D=N��y�8m����F�C�LN�N����,�7���Ɓ�؍��gmV!���۠=	���#	P5w4$�9��_�ZA�ݾ�y�a
�@���Q
�F-ȣ䴲G�F8���JRD��1�.噜�x`-Ah�c�@\.Q[�g�d��G��*a෼Ѓ�TA��4�o��9I"�k��TBlE5�,QcR��!���9��T��F�0Ϡ�5��٭�Oo�Jo;Hܮ�;�\�o�-{�Eo���ȚK~ݟ7^�+)�j87m.�!�ƵѦ$����.��J�\���-'����{��s���B��(|�ׅuD�r����̼�����*w�Y؉u�k.O�M�zZ;zN��k�y�,�\J%Q�� ��R넞Ѳq��;N��	J٪��p?��y�p��"`���ڕ��AwoC,��b�Z�_
�ޕ��w�*�)//J�Xse]�+�7�NS�Dž�myx�k�L�AM�\��{�ՎL�C���S�fn�i��T0��|���?z؎�_=�̿�!n��{����O/��R�1�ò��1��{���8ӓ<�m=���.a�y�VZ�x0�
���O������¼�h�o����.�8h�7}�o!�1�Q�vxA�;LN����v����[ݝ�A���T��ˋ�Xz���tN��Nx��S*wv�����O��y
QS'%��-	�|��<[!)�eu.(<�\�}�Ƿ�|����N˄�>����r�(
}l(��u�>�x�S�^˵�B�"�2`��00 @0q���.2E��\����s%��0�<v���(`�e&��D�$���W�%�	�<�,�e��5�x5ϱq�{�5yI��Ff=�;D�ؕ���X^�2[�ZjX�RZƉ"N;Qٺ�F^CVW�C�=W�m�=�n����}����W�o�Co�����+1˾�
{����:g_����|�yz5�l�
����*���WV[��2׹ɫx
b�#�(mC��
	�Z��`/�嚅3�+��O{��v7-Ͻ�Wȯ��(�z0˂N���`�,�Q�|F�aa��(�Დ8M��R�_~���*U�I�ܼ�U�oGA��`�gYi�^dV0�S�BBFV���փ;���QJ
)�� ��H��%Tfڭ �
ҳ��H]� ���z�~����::]:��ã2$:��
=X������gvZ�/2��?���>9*�g�цiA��v�~Z��79%I����g�l����?�����[�4�Ba�Mȡ-M\�!���~�WOw����M%�Ǔj�,񔂤�y��/��0��O�9���q�A^�.�U'hťk��إ����h7��{�����L���7��6�>w�<iYU���q���1ܖ�ό�>?JL�鍼"Q��uy��ca��L��������lE����~y����d
��¨���| Ή�>�|bC.t��ςc���g/���	���n�A��C(���n�o���B3��jh�E�))Ծ�C�"u2�.<$e��f��^DE����Rv��(�����4
_�YY�srd�;��2`��L��`W>�aG4K��H�3���~֦9k�[�햐�������^��Y��ױխhE�m�z��7�9{��N�n��ϥ�)�߶[����5�wM_%͌��һ�g�͑����
��Z��9�������*&�ؖ��*[C�ăb�X�֐ZHe�,r�o>�A�O��ʔ�v�{��r��u�p%��XZ	�kQkC"�H�:�Eݥ�ņ���
μ6Y~��o��N�����&<.�d{�bnQ�vU�l�V�dBԬ��6Q^�e����Q�J8,ju�]��������Cz�(���
��!��^�D;�?�򶶏���'ǝ�`��6>�K�x
U
�uh�R�*�~�{�.]<���"�K廜l��B�d�7�����6��_��.�,��{��[^.iuV��Τ2���m���z�	�IH2��R���I9���6��������}�^D_fe.@��Jpc�tQ����n|YPo��Z��I�H/��z����*R�2�Ж��9H�~�������t�������ܩ&��ዖZy:���w\NQօ�}�{JVA7�#
'�#�;L�H(���8�^�|\�����ױf.����c�%`v�!z	��I��I���v5����C�ڍɞ�
�FT�?R���\׺�E�B-��fX�ՂY���įAЭ
gW�|�M��
����6r�	���N o��xI��
W�7_��7~%
�����H�r�X�/{��_�[�0ȸT�_c��FS�g~�Z����槽�H\)m��fp��y�B�C6�ْb�u�����Mi\\$L$�h�\䆨��-���r��1����y6oz�x����uC�B�*��ć�;;��&���CO�*���e��"l��O�V*x9"�LNv�"뚤QE�X|}�
��4[�^
�j���R�l�/��fܙ�&�o.
l:��fܿX�:'�b��H�N��Cn�r	g9j�V��U��������ًI���y*l���0�*YX���;��[��Yu���om����R����"�&"z`f�gg���q׾�ͷ����+�p@���nk�FBL�.��m���<�sG�+ߣ��Nk.�b��X���f��W�<�@"���>���p��|����E�2*L�J״��{ð��	�u�����8w��Cҭ��0<{)�=���ɲ�$v=�
�fgO��e^�K��;N�Zƭ 8�}u^M�N����hg��Lqϴ6^�[�%ո4�w��b�M�}��8�b<bJ�f2�;r)��˒�.��X �88��KY7��޺�t���`�������f7#���:�M (�Tk�ʔ3}U>n:���y���k��&��oHլ��cRr��`_M�^
o�A�FVCԍ堽N0��.���7�@{5}Ì��k[X{�u]���^�>��i�Y3tl�����+��o�8خ�9�y������kҙ��
V@���
�v��XӆüՁ�ɭ
 	�J|�6I`�����u��ڌ�>�|���_/RK��0Z{�˦�K�o~�^�<��/J��ҨFY�VƁ�p�S񖟎s[��ml��eQN袓0J���L-�UR�`���(jyΏ�:�^g�	xj��c؟^�F�
��,U�~YE��3�R��E����;�2�����W��awt����t����A���Rم����/?3L���ݽ�(����x`��@?�jѐ�0��x�������r�����]�HT���I��;�ai'��:q/��c�evOdY�H��Yq�S�>�,�R:�����[��˹:)�q2y1��/���2-F��p|:�J	9��J�gC��,��*߸�Ƒ��|��(;�$+ �
�g���/.t��`TH�:m�S˪�ߵa(�T/*��r��]m�%�Ȯ$ĒbƧii��q�<)��3���m�ز���0�(3� �,YL��2�_K�`����������6��8�RUO�6[��e�k&fc]�&0��|¶�c+���8��D��
�Z�����V�Um䨮�V�x{�L�u8X�m^�Z���o���k�U44+��uIh��U��fjv�*�?��tͬ27Ki�&?�oHh�jh��n���U{�Upz��ڃ�(�5N=�M�+��(��z�AIl�Go�����ty����x鲞�ZEW�Bɋ��u!#SZr��¨X,Wt�Za� I�aьt�����-�f���Kj��"����S'?�gϖ��a9
=&s�Q�Φ�T���HTEr�c-�R�n���"���ʖBΔ^J���'sK�Q���|У���r��<�l��^7KDŽH\���\T��E�Q��tv:�y��/� "��n��w;�_��8{2Q�rrU��[]��<�|{s�G�Z��Y5��s/F����!��Ns=U�C3t����ɡɔ�أ��RL���#��˿;~b��a\fZ�^o�cv�^zQ-��r�
��gN����e��|^��V�~�:n����咐��AQrg���?�=��Y�B���Y^��(�����w�4"n��/�B$��MH
��Z>],�/6��fL�G��qn��ak�T��N$��\#�0�m�H�m0s��Ζ��hx��ϷfX��e‡A砭�X�X�U�=�l�jj�쬄#n�0��AA�W������֪�cR�s֞�8n�4"���}j�
0e��R�(ު '�A���t��\��nE��ޟ�o*4��{�uC�����EK�Q�[��f����Xk�57����ھ�^ժ쯁EM����R�^���ސ}O��ݮ���
*>E�8�S���VW�]�<Z�E鄬��\8�h0�XX5�u�y��`��dQ��Y��r]KJ�!�!5��N-�e����h�$2�W��p��w������4�U�V�D]�U�����ِS]��)uwxla
�YV��ʤ�i�K�6��*���T-��̅ꎱ�x�^?�ųi��7��z�k�g���Z9�0�$��?;7ّ�q��[�>x��<����VOu�9��oX9���hk�����pT^,T"��x����qz��Y�s`��[Q���ز�|�#�B�b�O�n������z�D�%A-$�M���Қ��t�Q_"
�IF���A��AO8%�m��泊�V�}�����2��{�, �������T�M������R�!�6]�cz!�¢i�����\z�t{w+\���Lx-�zp��O_V� g�g�ꥫ?��>��?=V�&+����IM}��,`C�u��؋��Nz<����jYU�0��p����h��.��	��m��:s�U� �A�^�,qd���K��7���P��_��)�!f{�zD�A�[�E��Oj�O�Z��7�g���-;�7fm�5�r#�9oܫ��#ho1V�%����a->J�,d�{�+��u�����t��Z�qeuaWBϷ*_�4(ys�GW��o�Mhe�}��_~��_x�m
cX]�E�V�N3�G�������c6<쵇���/�b��U�qg�7�e��<˲/���;;�d��Y=
�U!O��Q8�T�;5y�tM[K�,�����A�?��؍�ԳN��z�_8���|)�YB�38���0iX��֐�/&˗=�uZ!��s�Ǽ#�(0-~�8N��=V&Jβ�߾��3
t���Q
�ёO�s�4b{��n~��������Q
����.J�h;�H�{V�fD����� r��~7����8�+,V�U����0}��BWɻ�t�wF�r���DM?M�?^L�$��N�#_�:?��RV�B%����Fa�Ł��5-��d�r�O+2jA0͟�UHu�v#؟d2Ίӄ:��y���9�3Y-5�����B��{�h9-�T�RΤ�^{3��|�j���Vt7�g<��8A�]N��*��<C�@�Qd��ݽ^r)���W�]<�i����N�#�!r$|��r:>�H-&N��<K�.'����TZ�����u-?�p�(	��Ԟ`	�F�X����:V�p5�(�҄jj���%E�%�Z]i��zӍ��KNo�07���+_������kk���U��6����hu��~]ҿ�į���c�����;`�x�%��hu�M�T�,��J�J�['JЗ��eظ���u�3�7�yυ�}=ɝ���}�;z8��.	���GU���@��H����A�HL�q��B�<�ٷy%����j�#b��.���rzA�m�VR�J9��&T��Ađ���ؑ���Pu�YτT�䠿(s�ڼ�CĈ[�Т��,�&�L�Q?�E4Ċ���փ��{E�|z^>;��;[={<�m
�u�Υ$c�(8�Jy�`c���������,�zw�轠��_���l��s�0ݾ�aj�ɗ�z��C��p�G��Q!��(T�b�Ee�7|=����<���3�a���J'��ww�7m��fV-�U�� �#f�py����������Ro
��D�����T�a�muҧ*1�DP��
)|�9�n	Ô6Z�����D<�	�ǣ�qg'Ώ��#23��Y��>��|�Qwأ�s�L�,���'/D�1DR�řȳ�?h�d�Ea7<=��Ǜn�D��%��B� K�8ZD;��~���$�&��k#e��Gp�*�����EjsH1#o�9��(�
;X�N/
\$�&+��⒩�A!1�pdQ�
xYw{�[�r$mAVP���$庙��U��S:�fZ:]��l"~����R�I�k��n�Q�fA��֬k�oZ��(�__��uMο��[�Wl,�Z��T�^�~��^!Ю�iZ�-8+��̓Z��6>�P��x(Q�J�1VLx��wh�����g'%<�^���΀�L
{�a����=ù�r�p�y1#���Y��\f�{�E�c�6CS��ٸ6�jA~�����ъE�
5�gpU_����G�Aw}���WL��taQק��9����;���dR�7��~'�`��G���Ҭ�[-IEĤ�y��=���펾�Oҗ�?ع��=V�O?>�ܢ{�mg�ˀ-��/��D�è����\~�u{/�����'���G`q�)���4���{�ރ��:/��a��|���ѽ�ہ�3ϫ˳Ҹݝ��"��YyZ�'�Q,�]W,?O����-�����x�U�o������Q���l>�=���P�^$A�
�.6P��=���"��C/��i��ql⋼\hI�A/?K�\��`��GaR!^��VMš�>I^��ڨ��ef@���L$��p�ʅ�xh�en�(�1蜷}�J���E�N_�D"��L/$�V�C<�^-T�r�
]��ѕ�^��=�Q�T(
��h�"n�pC�i�q�.D�N�!���Hm�*�)��^��U���͍�7�G{��p��d-y3Ŋ��<�V�WY��FM��X��Z�0ǡ��]y�u"I�k.���K��8�⻿N���WXgW���_��W���ݏ?��G?�ȭ}k�/V{��c����YE�Ɯ��5
K�3��d�]L��R�j�~��X���YZ��`�m��Pz
���^?r<���m��P�6�Г�/U^�E&��2F�!���'3�>��0j�C������+����t �y�n���v���԰��xA�x��m�͙v��T����T�����{����'�g��;���Y��]��>�6Bm2�*��i�x>y��?|���$?��g��iw�I��d��_.4䧐��ݓO�-����#�U�3m+�M�'��*�*�|�z�rւ;([��t� 5c��l�M�̊�e1��@J�e���{�C��H���Raa�#�7���p$+
[,8�g24F0��ͷq�3˩ۋ�w�����,!3%EE�Ffw��KQ K=:9U<�^�ԷR�T/!�Dz�
������o�;��E57��bVH�$�:���BʥPKS&��8�qY��'ENo�C�hL�9�+�/�&��P�
=�n�w�Z�ꤨ�2������ő/^�E�hg+������[�XhýB��W�ۍ��]��*2@��A�vt�Y�Ɠ��o�����h	��0e��ze�^�{E=%7��=�dg�LYO^�y�W%�W2՛:5��<�ʵ�R�Ջֳ��3ѭlо!��ב˱����ɸ�J�I��z��i�X���uqN%+V���r>���Xw��;���0Y���ea���v���ý��c�8�%��,Kw��}��N�x¡I*�Ա�>�ڥd�����gn��vcv�ao�
w�TZ�F7d�B^˺������ܗ/O�F�Cow'�\j��K��qW��j�sZ���xkvY�}�X.�;�ݠ�Zy{���@�MI,m�4�}��.��n��po>-����FC�������cR��x���bR1-�o�����\�?���[Ʌ��
1��9(�T��|�ι�o����ڹ���z����N��w�í�h�5yh�KY~�0�0�d><�Z��e������V��m�Y�)+x�|�r�;V[5���ű���w{ϖ�B�}Q�O�9ea�IҬ8yY���#�y�R�,S�L=��N'���7U�9�V;۾x6���6���1�V�:��ww���vp��d���vJ����sd�K��;3�f��Y��wG!��yY$F/+5+�I7�ߊ�����*�g\���d�`q��Rr��<�W�pW���䭐_�_5��������-,�너f0����_�ʭ8����쭙�ۣ-�
�٫	�5�[+��ۜ�Ƭ̬m��m�Fz�Ϳ�Gk�5��v�zc�(y���%�U8F����l)}��G�u�7+]k�Z��@D�3�a����Q(�+���#����R�ӹ�gHG�����,l��V�m�;���i�R�LsX�^��>�L!�c)�C����@6����!$�ѕ,t����i�ېi�����Wh���w�NW�~y6U�Ҟ��"y:��dm=�[��g<�AXƪ-���*ɣ��ۂ�i�<>%6�����m�:=�<�.���<wR],KR�TO�q�%��^)��_|}����(??OU��N0�aXɥ��ǿ��?gFv?�|kg���JP��$�Z�u�a^(�q��㝍���Q��/�Nj��m� \�a{���p���x����V%�qY��u�,t�2MN��ҳ�z����x~T�3Ԣ��:wp���:e�=�ض�����>���y��4R�~�]�xE�q{��pf��D�y�6�;�t��Y��VEy�gS!P��Ϧ^�A���S��ÝƲ�oy���¥��z�雇-�]h��p8���<a�e!#�4�zӨf\b�6���L�y�C�v�^�|�,�r%�Z[��|���
�S[��֏3׾�X�@���!����|����TX|T��"�+����S�z-����҉��J��ȡ}�F�t�L�ݠ��d
�т��\c�z����|����W�)ܢƾz1o��b���ùb��[�`�Nӄ���pٮ����)�\�-L0T�����Fd�Z᯦�4�D)U+�7�Kj����#v=�+‘)��2Ѧ⡟_,�|�b����fr��� s$Uh��r�b��Sv8��En���$a�e�ߊ���ɒ�i�ӟ��/��\U�su��'����w������=���烃>$$�(M�
�#I:��V��^!��kre.��'/�rkב��+����a�.s5���X؊N�<|k���w>��7�_��6���YL'���N�4)������G�a�������w"�c�1�fpo�?�^���v|��⣣�n�w�u��Ѽ�����:U��p<�x�sϹ�
�vׯ�<@�TC��,��e�u�w������L�)��L����Ĩ��ݯ����o{��+x�
d�1IY�(�
�9l�_.�n�؁�v��HV�$����vB?�"����v8jWGS�	ڐ��|�I衢K)h�Ic$�"хT���&5��:X��
IkC�yR�����,9[�ﶶ�3��#Rn����
�tH�b�1O����F�[Iׇ��
��Y-�nYa�uܝ:�D���U��i)�t����B�k�a��b]�p�k�o*D�7�H�Sܸ�4��W���ֈ��z�%7���̫�T{��C��
%oP3�9{�L��ak��kE����g���2�ܰ٦W��U����pq��sV[O 4�`����a}��zm�)�ZM5���'%�"H�J��S��j��[
7��?1e��#]AP�1�*!��~A���C�\�'����j������VPM�U��Q�E�t��Ґ9�=��g�n�?����ϟ\2/�:�Wp��*9��F@f�uhk/��vY�`��7�٤(g����~<�*)|���=UK�B�����O���oA,�������n������,8c�(�f����E��"��|t�L��oox���l�1���n�q�.��qJ;4����3�Z���0$�o�
6I��2��j
��w7�s	z��=�6\�u[�<�C��RWG҉]q���hxzT,>�K5��q�fV$�
N-clx�>(MUVgKcs�TI���PSB-f��@VF&�a<ڮ�J���������ͮwг��f:ݦ	$����!���T�vw��%��h5�/ㄞu]	��>��	��E%�*�<�%J7pj��P�������Q�9�k��f_�g�5��G�eƙ4B�v�r=��/�
e#�Y�j�ڒ�8&�J�������d�՛b��u��PEo�K�ꋭ4�Q������ ˱��"�Sj��Ի1:�V#�J�AꚺeoqnJ~����@��{�|���|ceP���8|��/cӺ�b���Þ�-T%PVՇ�'�L��2��i=J�?��4a����o8�J�����@��B`n8�x����<Ű� ݹ��"q�i��x�Ӑ#��㱶
7H��𨄣�H��6ͱ�P憴�v�ߍ.�K}�mYg8H���˹���{n����u�P�8/����]��x�;�����5�.'/�S�l��"Ҧj�g�����gc�Cv����
S����Sw�_c�d�^,/�<��,O4����ާ��<�l�=�����l����{R(7l��D�S:�Y�v�ցW�bjY���}>��QǸ������K1�(]��;�N�x��`�q������Ax�3�rV�cM�R�I�|�
�0���&��E1wj|Qw	�ulv�{[2�@����`{[�E6]�Dd?=���|�>���ߨ~u��Rڂ���E����+���|�u��O7`.^�;B�
9���tPP<�D��FA�X(�
����tb!߉���8o��b��\�=���BX�y�ZX���4Ҙ��c���aA�ǞY�&���2]�›.\�)MmU�ր����M)�X
iVv��K��^�jD7�kr�h���J�~��*���p3\1C�,�y�@�]S��J|�aV}p��&��M	]
^�B��Ƹo�H=�Ӫ�W�I���dn��J�
6�ɬ�Qq2t���oӳ��q�z^�m.f،=
+ke�H�A��Z�,7��Q?�ymo4Bs�R,����1��:�{Z�w���*�Ay�V��IYMb/Z�n��^�8!�>�Et��I��J�Tf���W��^ǁ��?K�cicg�f��N�"{�p��o�����3���.�
���l���v��/�\��� "w��CvF�2��ۻ��!�����������'���᳟��բu��Z�b��]o��I��V��Vc?^�A!�w�d0��Rݨ�fJ�����~��-H%u�N��t��*D+}�
�x^��~�ۊ�j��Tp��ś�MF��Q�z,�$G�ri��:���{ӚI�4��:$� K],s���,��\=wT2ĥ/31�����iy�!��,�v�@*��kEd�,9K���zg$/�ȡ�ѫZ<W׫Uґ���`�4+���P��̑ڵB:r������C��|�A�BH1�
~"%�x�QZ�gH�("g��2!Ҭ.w���j�r��%�NZ��,F�UG(l�˕*h��w�UGE��q�2���GI��6�P�����{�s�������ǩ6v�Q�sBUU1��v�`���'p�����~�տ��F�u�›�Ή@�koR�xU�ɋ��8
���������qcٕ:��NI�_����@N	��9\�A%u��2�����<<<l�q�Z�D�p&D/�|�!���	ևa�wZ�gϞmoos���eoaI��x�Zá�_�3Q$��m"��݈m
I�ej�䭞��2ͱAH����_6i���G�y���l��X�����Y.�$�pT.f<`^;,e�R�s|"��߲2��u�ק�J��e@3������<���*$$�h�Vo*�BOp
�Q����#����61�i� 
�w�)�� ]����$�r��{��j7^N��~�s��w�{p�G���5�9d�^5�-+���&o�rp뇎��O��;��2��ϻV�i����w���~��է��~~�����]H��!��J5���u0
yX	�0���V���֥D�>Y$p�M�E��=���Z�{��C}��^GZ$0�u���j|�^~~q�!�5Ί�3�e�G۞6,��Z'b���G;ļ��J�B�Q�_	кu�BS�*/+|Z�S"�{�G=W�Lq��Q��!U$s�*�)V{�8�a�p��9wf�wF�w���)E83�o�&�r����G*�/>�+���b;>�%�Y�q�O�N��=�Ŏ��81W�4%���R	.�R����ő@��@%�c���z\�+p� {ݦoʵ��Y�0�U\��椐�kY���������ݻ�Y����|��O��O���O>���>�@��G���?���x����n�g�͂-ɮ*A?�|�7��������RJIH �C���ڀƠ���a0~�?����?������eDW�����HM9FD�<����g?C�u��"CT%	D�{�^������k�5��|��ɸk[����W�^-��'~���<����ۍ�SgΜI��B�a����U
Cgϝ�q��O�ȏ�FK��������7n��B����;w~��?7�N��N��_��.����������GQ�֛�����(�$��o/���?��3���_��[o���+	���n���.=u��Տ|�#�O����lii��O��o��/��/���~�"|q4}\���P�70��v;"��t;ܑ���<p��|���'3�,��Yj=1옴/(Gb�Qka*&�l��@ԛ��)l�)�s��n���j�'at~�C������Ӊ�X	���U�)҅�r:um]r�FM��T�'��(4ȍ‘̵>�`�3���-w��߷�v��I�n�ʹ����|��.�٩����=�O����y���g�3�����\���*��,ιςKA�@�����*.����}�yr��ٛ7��߸�Y
���m�if^�smA^�8����k�nmW�NqCՓBtYM�X����c<
)pe���q�2z��g���n:����E{F�>�*s�BY�٥�I[T�0��5%%thkybr}��D����m1����

dl���4�'�����P��H�ϯ����JD�Kà�-;�z/�)�u:�BsP�w��فw.(��մrZu]���'�	>m{w�.q��B�&N	�����xTt,Y�d�JՎ���)��N5�|�g<�,C��N~�9E�D`/�g�t*�wWR5����Ac7�+>��e϶����ma����[���Z�+�c�k�ߔ��	��+_�ʟ���|��?���_^^��׿F����ӧ_�u:�����(�����s���o̦��7�67o޼��v)�Lg�ݝ�y������G��_�%�Bׯ_��_��p8����_����|�W�������|����쩧�����e�����[Y[��}>/�?��?�����VY�����_~�嗿���{��3�>C��>��~�������c����_y晿��_}���w��ߞ�p����g~�����vB������'=3D�ۉ��Q�u�Ģ̀�9�ݩ����q	�Mg:M�\�B�{��п���9�O�S�:��͉�kNʹ�hu���<��RV(R�ɟ�݇�aOZy)e��s��#�-B�Z	���gJ��E-�ӻ��זU>w��.+1��ʮ$�C�Z�w3��t��Z���u�̫�3v0_���9鬜nӱ�dV_x�L�:�w	\X:���.��'�R^ȃ���]�l�|�)���>tj������`������,ɺgf{;i:���;r����х�����J�"<')�O�f����Z�*�:>��v"t���;��ޠ�<�� ��S�˱���
`����Kg�w��������,�[�Ϯ�es�o+�<H�e�2�L��TBM��|W8��J��y�v�<�Ғ�,������)�(��URz=�;�Y���<ٚi�p	�i��e�bZK�;�� �+��*�X��ipSa�8�m�K�)FP�L��4SY���TF>�bWg*�_����|	˷��/��̪��ἳ�T�s��s�H�mB�U�!c�htc���h]��MU8_>4�Q�2�ō�vQ�kC��Yҏ�_V7�6�B�-�e������}��+��?�g��k���g?��~p��ݏ|���������N�Cae|0�?8h���ȧ>������������/SnE���
����������/��)�ݹs�B�/�ʯ��ƛ���<s�W��_��_�յ�5��;w��o�f�eo��օ��~�
����3��~��!���3g�^���(�������	r����O��t:���|�w�w��[�:{���ϯ����]�r��JB��W�,����;���43��F��9���r
�����z2�8$\�]Pr�Y��<0�0m�"r(�l;&~rytz���P�OUJKG�؋Ϯ̶ʪ��>fK�+@90G�м�59���EY�n���PT��:���`
���
�Hy`�ԛ����=qe������bs���~�ٸ�R���㇕���A�:��t�;�v�V1�kJF��]\]�&�ꙓP�2�\���{��D[���$������?�c,
����գ��*C�w���+�9׾�@��^:_L�� ������G2E��FMyGe�-�`�C�
��ۓ�Kp%6�a�|i}�˛�X;���֥e��2�:K!@�]�d�О��̼$�x�uܦhi�\�U���t����u�	��#:P�p�ȭ�fBُ*�����Ӕ���nZT5[�1!�đNy}O]X�W�5��M�ԩ��K�Xp�ne
��Kq
П��(,FY7 ˩jM(p��i���;'�O�t�k'��Q�V��$���B�ЁA����i����������Ԛ����P�`�:�]��� S$'�tmu�!�:�5�a%�A��>�4�6Q@���?��W_}���3��K_�����_~�@JvΝ;G`�����v��t:�kJ(��T��y_��;q��+�ܾ}����o�3����^���~F�q��
:�T�|����O���������_��?��?����_&xN���_�ſ��s?��EG1�;�oѷ��믣&���h�7�7����%���[���jJ`�,�<���ⓟ�ַ������������׿�������=.�:N[[0F	k�)t׊���s�بl�J��{��*�(`�Os�0��Y���r�r�	�Q8�Z袒t�n��*��ӃTM9I)$6��;<�ϯ��3.�jJ�0�E�$�	��i�Ð�1�Jg�ް3��$G͟�C���t?��)�	V�)�%&�'Q<�F�t��?�o���3�3/\���d/���lW�\^��
�4-7�W��/?�:E(w&�6w��I���ko%rΊb[����;݉��mB9?�?}�`�l޽1��(.S勤ZU^_��]Ŝ��^���X��s���	Z���j(�Ḵ�M��QD70�9vT�_f�[�
r�9�0 �~��/�~���z��&���{�P{0�a\��/�[
<J0�A
�p��i���U�����E�	g�,���$c�ͅ�oQ*A��~�U&�wǺ*���yN/�;~�5��ԝ�|�ϓ��I�Վ�+�,��,��ϣ�U@z
|c�
�I�{��
Qh��+�TdL�SP"�G�q�X�Y౤@�D�n�fw+:ካ+�
�pՁS$�Ѓ�ȼ���Tk���*�w��e��ǖ��o(k���6��t�\��_��W��,��������&#B��<��l6����>@A�~������{��u����n�fA(�镕��((@������g~�gN�yN�qcm��ŋo��&��ԩS�^=����B!�B�(�mmoӧPd�s�6A�}�c�<�^��k�Ξ�߼���ӧl=Ol=ܺw�.��,��0p��u���W.{�w��}���K˄���*N&��ht����Y�Pq����5���ϊ�^3�m�rÎ�������o����4�n�6A�ә���5�ާ�����D��)n�=�>xU(Y�n?d�@vIN��v�~��z|ʡ���~�2�}|��%�/�
��f��{�.����Lt��Pr�G=�.��Y�<��0�*�i�t� ғ��6}l��W)UM�jZƫ�3�X�qj~���{����]��5�w��8j��r����%7�`����
�e�y���~�l�ڸ*�m��.Ҳ(�u�>��>u��k��i�y��sG����̶��jؿ2��?���~j����Wz�L��Ty����4�CW�!eH�|���+����+O|�뷿�o�
����v��4�����t;��h��n�~��Vi��[dz�5���!��ګwr�Tb)t{ºe]�I����47-��+a�|��h��U���,!�
���
7�h�V��̔�ʽ(�PP��Rf��1owR����Em���G�}��:��ͧJ��yq	�� �g9��=g�<����;ϯ�b�Eqz'�x�w�@,'9A�kS�RU����zWe�c=OtJxCFb������H�S��>�+��zl��1�T�k?�?C[�Z�СU#�@S���-t�$A'�,5�TBPj���4�������+_�
�Q/���|NCo�jI�FIr�<��i�v��;[�~ќ�*�3e��x�S'����oz�KiS�J���i.UA���[��/���S��@���!���~�%���JW�$��p��r1�P9�������|��E�>~�gDh&�j����ܧ4�G�,�p:]B�&�0��|[���i-�:ì�ꃮ�JV0���Q�G=�����P2N�<^��O�xB֮*
�d+^�vϬ7,�u~0�<�J��<�>kK~��}�a�Wu׼�r�n�U�[p���U����r[o&ہ���z���ur@�^�5U�2A�G&�t/��Y�T繏�����v��Iw2��OAٷ��ʁ�k�+�9��e�dK��b?_{�w�c�"���h(��Š�~-�k�0��w8]�t	7Yp8��������#���>��~����o�Wi�X�nV,ڵ�t��~�[�>��N�'��0\��,�c]E!>�(�YmKΪ�@���pVu/-��0wXJ<��0�"
���;Փ���N�a�#g�;�91������]w)�\�p����� �̖{"�l������v�#�R-�,��T�`��4�8�(3�#Wg�wSn��3��C�0���1�68h�Y�r�w�
����3'd�'FN^�ӧ'���|g^�rДm	�U#�a��w�@!,�hj���o;\�I�>�hCy�7V=�5�6H�k�i�T�F�޶��m��d��k�I�
ƚ�W�e����:����|-���Y�}��&>E7���a���oE�\�b��qVe�
z|��i�����s����Y��zqT�k�ؿw�����U�X�Z�T
w!�c��Y����P�H��L��t.�n_N��§M�:I�	�tB�t7%�t�p<#�tme�0(�i��kn1�VޅU#��OmJ�tdf��n|v���r��뱪6(�й�ߞ�[	;�wÐ�Oz0'���D�����n�i׌��Z\&��[������{��Bn�zqx�k��g�M��[�b2�	Y	91ά�'ż�V ��F���.�zӃ듪�<�g���M��ЅE���^��(�Mx�S����s�	�f��OV��z��s{f���y�r]��UM�,�*�?����!�����)jHC7��2|2����R)K'Ʋ&`�<O������!��ŚN��kM0�@<�J¿J&v_�Po����U^|sz!�|=Kݎ�{��jL���]��� �B����:ߛ�Z!�Ӕ�"*���R>9�z�b�9�/���X�2��G�)8�1l�r�8��HI�n�;Q�Q+���G�B}r^�V�
�E�r�z1y��A%�G�PPe�P���ab���rN���L.&?���I{�fy6�Ĝ]��i�Sʭ�SK�R���F�b*���=���3 gG���Г�=��7�����Z�E��u��1rw�I��O�_�
��A?vң���j��&�#s�&G�`�hf��rL��P�J�=�옕4wlq��]y7
���M��P���)=H8�Phϻ�P���*���Kpj*�"Ʈ�؅B�c+� ��21lo�뢤seZ���GF��t�嘗,˥.+'/(S����t�U�;�s��*Q޲�/y�NQ�z+s�2v�R�Q6�p��e�:��yy���f��֌�������}z��K��No��6��pg���L�]��:|v�����>z0�L�U�O���n�c����Z��Ea�^{�ӧ�>x��o�O�Ӌ\�T.��j^ld���"I������K��Y�H�i{�Z5:#S�4It�p�۴c2�K+"��%,!�a�\��4��_U3lcY:�
�0/J����εXt�ʴs�h�@�����Xā�&��8�P���δqT��՜�r�X,���̤��u>�'U�ԗ�(�4C���Ԃ8�XG�������6c0��̆B�;�Ӂ�'����qz�t4�@��7Ü��IA�)Кk�9�-��N�d'�9��j�F��s:�j�j��\�	�jR�)WEG��!��uM	���9)�bc�+���ܣ���\^��w�c���㡄���5�#y�c�~�d��x�a��ޘʎbl�o]�[�����0�<�`ʎ��z�����!;f�x�ưF�1�?'���{�=�-	���
�S{VS��^�ƍ�z�c:hAO�� ���%�{NI/���1`J����|^���	eTHvxÎc�h����T��骃���a�E���S0����'�7�9a^B��)֎GpS�`ُ?0�A5��$WYm�d ��o���}Ɨ�)M��>�	��O�n/�N�{u�-9O����h�Lޙ��HJ�|9/U�eq�c���zu�镧/���ƴ���=7�(���9�4A7�ҙ�5(�,*��^�.u�����%��]"�t�W�������^��ފ�|G�����+�&\��%����m��
�A��5���d�7V���{~�H��A��2������ �1-L
�O�PtCP�j��\E���h�T�Cc� ��NL�J��nY#g�)��wv	.D��5#=ª���� #KJ��OԺޙ��!�g1�x��Hadn�0���MCHmG��4�ei\H���9O����,t'�4�D���܎�x����a�^Y���f���"@>���ԉ�t/x�2���a5��@e��M���燡LS�[��-��K0G�Ę~q��D�tϏB��di��ء�3���"si��A��G�Xkv\��?^|&�_�ce$�vQz�	�6/���t�"��	<i��_���vN���
[L �Va^=�O��u���P]�/n���z6!׊�����C���"X�@��i%GXM9(�h$wc�������
u-�]�i]=L�@��T"�ڐ~���$�P�^QI�+iQd'�����ۊBX���=H)=xj	ӫ��Y��ŗ�nܩ7�����F�A������R@�2a���=�;O
V�7ZZ[�y�<�v��Gn	]�©�g��/��ߩ�~���s���
��;�\~�#������,�\dl͕�
�4�Ah��;�yy�S+��K7ߙ�+n0r�����m@;��
]��w���܇��<ö�gӣ$�[a{t�Յ����L8<���;[/��p#<^�ڄ�	�q�9X�<(�~z�v��8d�Qb爃"���}���OȪ��m ���2|�C���*��@��%���V����ҧo'(\�\�n��)/֔�B�A�ҎF]|f_�HIz�եP����<���M�bt7���8
t,�7cX��
�	�V(qPz����ӗ�X�Aͪ�3��+1�D��q^�K����	����Z7�t����=Y�кX�ƴ��#{�B��?���y)ƏFs̡ũ9A�n~��B��(>=ƪ�X*���p�h����~in�1-f�(���fqF�1c���r�me���q�����̰�9W��R�VMюq��S��*!<��y�5m�G����e�f��>(+a�n�)��TȠ�Y�SEm��5-8�
{��k�$�Q@����e兴"�b�>b���;g��a�OkŗY��.�`�4㞙��C&�����N��Ǭ˗7ー�V�$)��-5Y(g��A�93�.tg��ׯ�e���#����koP�����s���~���M>������bv5���g���ٽ�
{�Nֺ��;O�:AȂ�w��߾���(�{o�<�^�kG,�1M�Z��2� �P�P|'8��3����R��G���Ǯ糧��O�]�d�G`<��V��h����t:ktA5:�*S�����޸J
l��]�̡����*q?���P�I]HG����S:������t�
��$Xvt�5�sq�UاLYey�׎=w)��z��B��l�;t�Q�x�puQ��F=������ҩ0����Wӂq#ON2�����Regk O�J�[s�IC����%3B�Sz�B|��LA�AU��6�up����Ki����m��Yh*k���!���ItsB-t�'#y?�X~���;o#o�5MB�S;n��B��u��m�'s��fX�ɦ�=�MDn��#��,TO�ݰ��~�_XE�9fE����<�ϛa�����h�m�W�)����-��n#���ܱ2@�/�� �T��TX��=�K6�Hm�Ij)��G�Y�_F��$Cv��hPd�.3���`�/sCo(g��-�`�).*\��q乽�w�)\�|'/ƣ�Q�N掄�����K;�N���Gt}EX�]o�>��ʩ'�֕s��~��I)���'�ό����7�����9�ы˧�*������a�ܛ�~�5�R�����FPNTl�nL���^]�ȩ,��<:��`��ċ]uFmݝ�? �N���Dօ(P�^��2���M�^�yE	F�3��̍�,��v�Q��2(�xU*eVѫy�
�V�T��]��U����+��>�53����(�	�p�^��:�%o !lf�{��k:G�Z����O'���_fV,�;�|�}��ۓ��H���tVS��vtV�w��)�9��u�J�"���qZ�
0�)����p1�P�r�U�a�|+�ދ8w՝i9ɱM\�R�P`�����z�Op��R���O�,%w1�o��1�rz�ȣL<^�;i>N��S2zۺD��;N�ϊ��fyM��}L"�?���d�є�Z��9ԺY�*�͢�l���h���h����f��Ba{�8���\��[M>��4k~��p�
;�*a���,���3;Y�n�9)��4�.��C|��YEp�b�v��G̃���/��#�V�吻a,�t,��c��Y����VbVr:���8%��ڙ�K5T�]����NZAN��N���4P+Y��}/F�i��I�z
UR�1���ҴMT�����m�R�\��j�OU�ց����_��Ymt��w=o��Q
���?|�ԩ��1M��偫�7vž��읹�������^������1י�����郌�Yb
��4�yN�@P���:�g?vj�uo��n��O���xf�S�3�Ou{��������."�O]8�Yh�����UL���N����y�S��R�kJ�w�.Qi@�%�X�ǯSYeSB��F'8��k'?�$@�@A[��F(�i��ff�[]I͚PP|��j\h����$מ/(�%�G�b�]�^sj:j�A�wF��*|��k]���q��Y�
M�;X�65�e�~@y.v����s}T��q�²G�DV���{���cЕf�V�[ڔ�{l~TX�#쨆M���s:m(�+1�(�O]�
<�(lU5�'�u���3�V�[GV�cl'm��5��n�������"�:2�:�ri^��?Ң;�N�+N�d5��no�2n������4�B҂l��+�Z���99y��в+�1K�m�m��QR��+ul��Z��C����a
�Ն���[�.�uM١�j#6z���w�]�(�-�Ӿ�v	z�1_CGؑV���@'�
�TbX��f
0xL�A����1O8�L��4C'8�y<�h��u�u:��$�TLS4ـ����m�+k�A�v�*Z�2X��*T�N�jZ^����7ߚ�<]Z�D<����܄C/M�|�x��+���Sý�v��ٹ�S�^o��~vo�F��#��:�
�8�;�i�A��Ɣ#w�_:�M.���;���xτ������It:��A�]��]��ptE��C��2��0f|a��Z�S�tZtTs;'��1:���P킖��|�ܡ;6����_PJH𼦼�Q��'r��7*�0k�Ҩ�c>��Z��TZ1L ؓt.�ƃu�`�������}(0D�m�P=F�CA �))�u7z�ѡ_+*��̡׉�dAy}8ŧ@���U�DU��j��Ԕ�ǘ#�X�.���scY�
����#�1Kl�� {�*M?UU	{?ҍ	cR�Y!)L��n����B�M0�#�4�Mc}�`�m���;���Q����¨#y���>�$u���C�B��y\ssy��N|��j�n�[F�I����Y�F��Z"���9�&a��0T�:��N�l`��#�Hl=�M���8��=��h&7>��-X��d츧3G�5+f-A�D��æĢ
B�Z`��'��<A��J�5�[���~4!�ٓ�{ˢ��e�ܣ��v|���J��"͵����u�c�DZs:�]�6W��t���K2]lO(�
�����~��R7�(ks<�CU��u�����7^��/~�)�Dwon���:e���'[c��N?��|�l��4W~�|��_O�y�⊓�t;ڒ�ڷ6��Q����j����s���k3o��E��^�
�M1_u�d�z��ϲ�LPƢ�@[��f0�Ʊ�1u	�Jr�7	��b�W�\��
h:(1�5Lp�Xn+]"�����  ��#��Etf��5�L�|�%o
X�n#�xwS0g�R�n���Pf��N@7:�)@��4|��&e=��^����v
�KQ�25�|}>�=ߓ�ǽ��J�hL��-��8�ʽ;�c�R��<°*Iu�˽zkRo�,�j6�-N���l�ƅ�*R���,8��q�@C��tQ�?(,��9Q���
]�a\�!�MI�r�����>]k���~�{R�鑌�9��;�o�M��3�AE;~d��V���g[�sg�<q;u�>�"l>���M�
�E�Y�����A7~G�MB��&��8��*[�9�X��4�!vZ2�yD[�޺c������㰫�赜1�Ϗ�5W$x��G�_:n���q�2}��Ӊ���+1�т�n�#L;�K�j��ʳ*��1�a�d{BQ\�"/��?���]Yv}_O�̇�<�p`1�~(�y���U. ���������Sq�?�	�@����_��w����o~�w��/�:�ѿ?�]��|�����R���Ѱ5�}��+/��*�_���Җ�@O�$��h�V��J��oeo�W��/?��R�t�^o�w��0`�E1ť�8쥐�,eT�J��g<�7V/31�Q�`�;��d��b�3	�H�R��G%Q[=�Һu$�I'F��=W��	�u6Y3�@�-�Z"��1ѩ�U�����/��������r?�3ʉ��"GS����Nx=B�D<��>(h��P��hd3�bg�XUu�7q����,Q�ۛ��o��+�ϣ��9(ݕ�R�z���odB�x@g�i�Y�	[�R͎�m���Ӓ`!����55�\�����1d���d���<�SO����}ZҶEL��>&�����ê�9�?�C_���r�6�p�8��k�nl�����B��4�*@}B:BbTx�B�T�̂W��aث\�b�ò=k*Ub����Σ#���yE��ZƝ��@��e��폳�B����2ѐN�Gmw�g�N(�a5V�J3����zN4��oY�9�
�O��T#�P����y?)Z��:�^Q�:�E0�);�"�{���s�G!WM�,X��S5�TR�$�=���'�r�!~}���z����|�/�M��sWFϿ�L��w'�ݤ7��-c&y�Ƽ���k��vwŋ?��p�0~w��F�~���m��Qi��x�V�
�h+Y%���&�L���.<�T��C����I�SqY�j/sly�rx�#�(m�c��[��B~'r(�%�^NA��;����Q͢3�#�$���`�P�Q�S��!DʗcM1u�cL�P���B���	�$Q{Z���Ym�s~q��z�a�d�H�^�����T������J��Pt�3}�K�K�Hw�=3奙@�
'��
#/� �J�DТ�z�]!2��5-X(h	��3�˶!d�=�Q%%R	B�5�V-�f3r��2;BՀ_�ȩ

���E�*�jc�������6v�L=��E�0�z��p7=
��(TXJռ�_�}a����L-CsrZ4����8�X嘷jć��!K��sj;!Κ)�Ejךq�U��ww,C��ɪ����3Ґ\�!��X�c�ﲙ0����kk���O&@^b���?�~c'I�'�����{�\G��GS�α��1N��0�
��`���*��/*e��}��Օ2Y��\Q�{�rKB%
����! ��=��<�P��v�ˌ�z�KNG��J�l���뢒V���Ԛ%o��HG(]�{�K���AR0�h�3�WC�sPfV���;ߞ*&?�駟�t��Ã�W�d�^��,Y�k3z2:�g��3��W>����Sٮ��X{���7�cK��m�'4�H�i�W�
�W^C��+��ܸǝ�k��!m-SM �LϹw�'<בNUˊbP�h2�X���:Ɩq�	�ЧMfn��wf�2�P��/�(���ʴRs[}������C��B��k!E�Ri������E���F�V)��ҿ��ܽ8t:��ϰ�"���f�9ai'=U۽�q�D����"\�_�Ǣ�_��x���+����_F�����F:�C�ʍ@C��K�1X�хE��^��,E�/��f	��џ9�)d�x.v��0H���Ҕ�,n?����;Q6�::��F���ҝ�e��q<��Y]��Jل7m� b"+R�=����a���`���gS!��N����X�6�G�G ������e��m�X�b��8>�4�V�P7)�E@G��8U��E�t�I�t1�{���]�<�#�h�q#�#|}�\v��I��nh��$k����вn��Y�v�q=ьv@���Əjʳ�z�j<�������B�S�]Kp�2�(f�K�wvd�u�R:-}����@5��x���?��t�������S�p�P#1xq%��On�xE��ª0*�du]Q@t��2���l\y�K����r��'.��z�Aj�l��
ϑ�ܹa�}{6�����P]�����eƏy�.ɪ��[�($l⹼��O��xR�K��l�	϶A
AM�M�",h��R��,��H\�(bj����/�\� �Z�RG�J�5��A1�S��i�W�!�k�2��6gb)�g���ѓ�oF�������Co�jm���Fs�B����52
��GvY�R�mM��r�w��R�gm۝~�籥���%���>+vW��Wjon���0p
O�?�֬B�c��X��%Tmm-�F�?�)U��f����a�	H�c��p	����C��"�,�%f
�mz[�t`&�^�z^�Z���ƞ�Z�N�}�	���s?�!U%�ucƎ������qH�Z�V5�Ѭx���H��4��-���V)[x>�4�%�Z&�n9u�3ѱ�V��L�Dȵʇ�ݷ��n�W�c-�6�rGm�&�����gND�&@S���#q�k}��_���>A���8�aP�?(����=�qi�&�>�T=��s;�w�f�.�b���%lh�G�8�P�K�~��.�LD+��r`���)�ڝS���-��S�~Mam��_պPVR������dO�7�Y?�ҍ�d\�����v�������_���g~�%'�����Νrt�7�b�1J)N����?����K�}n��:�Ã]/
DG껬ܕvi���@(�UQ7
��wE]�t?[��eв2��x�r��ܑ����6V�Ͷg\��R����,&<���b4�.���\mO��ȥC�s�a,�R�9�5e�Ya������u������eq"W|}d�:�FSw&.�権ݎ:�
���Ĺ���g��D����a��@���9<�����C���cBi�+�b����>�nIT��=�H�-Pz�T�{S��w�5��u�̐��DD٢�4+���Z����t>$��N���δY�O��ق0i�y�R�Ɖ�����*���lңJ�|�����Z��,� {���Ԉ[�呑��hQ�fY�-_9턚i3&�jW8�	�~��4�Q轌��>��,�t˦{|!����&�@i�ѧz�&���iEvR�X$�-����a�`K�?��ڲ��{�{:?Hҁ9t<�i�b�Mjd��B;�������Y30���1@��)��Ԕ`D�����_RZ.BN��-Oՠ������� ��vL%���s�����L+5���3����S:�;���bƃ�%�:���]����]1tG�_�"ܛ����)*wٝ�h��zb�p{�����w�ܻ�=�[=wf�_r��W��#�;��w&/���Kϟ������_|v�̽�-i�y8e�my���K�HR�M�4�7U�r��R�2���J�m��z�$R'���'����TQ����T���&��:�i�Y����#�)'��tLU9�NLp��D^�a@����ьp� ����h3/q�M���G��)b��Ct�(�H*/C��.�!�(�+-	ǪD��VN��Ӧ��M[�x�r�h5xxV�풂�27�7hP+�f){}�Y�Fj�Y.N���=h�-i�?���R��
�a3�&����OC�OPh4,�K�L`��Ԯ��g�]D7+p4<�un@�wAUUiShƵ
߇7�x;�Q.b�s�r�
,�
v���c`G����E��ў2Dz�����Z����9k�`ڮ���q�6̲��sh�����h�7���x�Q`����~G�:q����!��T�9NWc˜�����j�9;��O�/`�qK�h��?��Sbl����g㦳�вV<���H\�9Q��������>�r|�C�KS�B���$S&��
x$��S��/Km</��w����6v�V�=�ux�Aɴ��2�l�y���|*�p�;xp{\mtc>xzU��� #����t�/o��Wo�H���'v��m��I��~��|&w�~�������6E�˯\]n��x�^�PͿ�h-,�@�F}5E_���[Iǻ�#S�iSuB�<���I!�;��Z'�9C5�`��f�k+�…�m��Q�BԸ������;�s�6\�u�MSV����C9^��W�"��J��~�C8��X�in(���S��G�Z]hTq_��î�� ��g�w*9�y���v�X�ʕ�P,,�y�N�(�Qh۟�/]�W(�f\�V���9���k��͞�;ͥӋ�Yޜ�hxsD[R��X����>+3›qe��v����N)���,�SB
�r�h�m�ԉps@�#'D�)�Gq�A{١ի�!��!�������k��m�֬������$kI��p�o�$�6MS�Z�u#[`�
/�jȷy��N(K�P�y�ĥ�W��ZY��bZ�aͨ�W���nS�<�%D��1�=J����T��Q���5��t`]D7n##��;[-�v���ګ�F��D�M�P����S�9R�a�?L�S/tQ���:c�FUS(���Mxo�ێj���g��R�Y�䥶�YZ��4,�#��]�v���mAC��v���E_+���B�����+C6
U��O�YT�����/��Q9j=��)�s%'�ja]W\�A���r�,?�v�NY����_J�s��r��nt��>�����w���{镋����`�(��'��7n\xy��Ͻ��AK߉����-YO!pE��Z�5�CN�Of��k��I�ک�!�v$[���&�
C�{0��k5��� �j�35�(X�v\
i5-�B��L��o�q]9�O��W�@��m��~7�Mkl��tA}{Ͻ���,+���ÏD5��ִ)��d��V#��U����=3䃨N4�+�Tb帲*�
��44C�X��r�P��Kʶ"��@D����Q�Bƈ��SN�Vm�63-9W�=J$gjsx�'@�p)'�(���������I�������$�4�<�7^d�	�v&�4�*��N-��(��`�Z��aYa�q�œx;��y�l��y�2�̇蝱$S~��s'ښ
*gt��j
y�w��P=����_�{
�;��i��� �d�gg��B��^Q
��XpO�E�R��%�`���V��T�%�ط�b}F֋yF��b)�t�(��12��3�-���?�`���O[J� p `�Z~h�xZ�!$�b�pJm����.媽.,M�̒��F�6A���6�Ga������vq���/<Ȥ����q�Q�����l�f���j�0r��8�٫��P,m�~�0�Q6U�&�w#��`�����q���ڜ���f��	�I�ӹ;���*����b�\�L\=�F�no����z�����JPͲj�zLht�3�t%|᧞L��ǎ/�y=����bc��ҭom�s�����;s=��-,h�D븂)c-�q�{a�p�W�u������W�x��q�
�J^›�&�j(hA�p��Em5* ba���43��m�d��y+9κ���sA��G,���%$�j���ki4<�R\ZQnF��4yo����kGN��ib1�K꼊�t(CNvԟ*E�����u��ޠ0���r�ʴ��q���8݅�/LVsʪ`�J���&})1Q�A?a���=w}�$����e�3��B�y�Sb�@Щ�`��.�8P��OG�^��4f�8��P�����(ZA�B��Ձ��2D���A9F�-���[��q�[3x瞿&�����
{��v ����G���`�B��P9�PX�0����7�-�T�`|���[:(�ut�#��7��Ȇ
B���]��_��2�Y� d|\�0���$=�����EzɃ�D>!\e�3�a�/o���1C���t=t��d�,���H�$����l1�J!���1�/֖(�f���`.��6%�iƥfa��SA8�=S�1��'�V�h��[��8����e�F��E�?��V�Sen<f�+�
:H��"����6o��5���z�.��Cp�2 �=3�X3zu�scW�Uս��KYW�O�ܵ.��� }�`�;9m)
�B�YU�N�_~�����x��^5������rH��}Uh�S�P����?9}�~�/�Uy�|�Kj�5wC��e�~iD�;��x��C;�Յ8�����=�2c8V�}+��N�ޥNw}��Y�p�1wL�Kp�F��~/�1vT���D�5�7z�	|��p��؛�,���CȲ�P!\.Bg���8A����1x�t�{](B�Y8I�����Y�`&���'�t:J�‰M�U��Ph����-�El1�U�E������=/
tn�,���톰̆� �p���Fк�rm�n�i�,ifY�7�m[���$K�����^2����Cw*��X��xo�x�6�j
Js��a��r��Bp�P?P��1��)P���/A����ے�h�]��!�z���T�I�,�g�(�T�i[QL�����(���ͧы�p�H������U����k
�t����c�(��ӌ���
1�+�(2�Xh[
��0�D��#CG�R�4WE�Y�(J��G��.��_<�.M�.i�B=؀yFA𴳅��1h��D�
�	Vs��+��G�#|��1C8^`{��ryZ^t
6���Я��~��7�6�&S�b\�6��GVaPeS]�{ʢ�W�:t����Vy!�Š�n�BF��`k���v!�C��Z���J& �Л{�C�Ɏ�yJ���ڙk��t_[J�����T�I����OV�k�
.������y�gzzVF�v	CI��`.���_�|�/��/�/~��<e�6�OQSз����=��{n%���I��b[:��J+ha�6!��uѠO��P� h����D��6�h���v���wR:C`�t}WG�z��g5RI�R�_Y=����ΐ��є-��X��<O��OX�0��-5 lќ��=U��B'��
?��MM�IvaĻ���^I����"l�����x,�ܥYL0.��Z�0ެCJ9�^^�N薊�eF�T1��@]��N�f�#����V:r�BԡA�0/r�>�*i�����Ďp5���C�0mE��tF�J|E:��F�9�۱m��[N�݀�5����OABU�"���Zu4�\dw�x�l�iro;����e8M7EA������p��7n���k4
�w�*xLYF�%|�)H�aA���Uy���35��Y�3T�(�D�J"���@f�(tCkBV-Wi�D�AD���8hw1`�؀�֐CI������JXu�v��~tk����TcӍd��̺Wغ:e���v����E�f�cb�L�a܌/b�$��qg"�D�R���8�.hq�:hy�ZR��N��at`@i�l;��7	��f��
cd�V�	�ˢo0\�BФBݝ�Y_�e]�U>C{�����(F��)�/���[{��^^9��۷vTυ�+\wP�4f�;[�o�|h���=�;��ݨK_�+nϳ���nr�'�u���1}�4+V�VWhT1�b�	]9tT(O"hr:zg֊�ȯo�D+��:[a�[Y+�	a+-L�����չ�Z���v�w�!CJ��{E�X	��ܭ����ȨO��ڌ��K�(w�F������gyPK�')�ڳ	��e��+ʉ\��D���)e�LO+J��ofer&��u[EEM��y���ܵ�j��!wط8umo��UVY@*Td�7̍cTЦ���&cM���m��V�yD�ţ{�-j��9�x�[ǖw���+��֝t�V��<�
��G��-ز}Hs�
CU��U�a�j����%L���)(���h���2kF�Y(K���n���Bp��!��X�&�t�9�a����p���J�g�_±�#PI�k�j 1��)_@B!�B[�u9PCi��J
C��asL�C�\�f��5D���\���ȅ�H��C�-��nҐ����Z�_��^[DT0�C��w�NQщmI#x�����rZ��%E
B�6����o;Ni#!�k��8@��[[�,E~Z�iѤ��ݥ!��w��Aܶ�I�+�/�	я��������ضBȉt�Z�g��s]o9�9�A��)���ʹ
V:�r�0(�L��S����ܳ����έ])�/�u�JU	LZ�2����s���Ͻ����{{��ֺV�4����:%8׿r�{�O�$�$�7�j,��0�g@�n�`kUk�l�=Jf��k�_�/�ϊ[c
=�[�z���$�A�Kt��Y�1�Go#�-*7	E
�P��7�ƮHO+1��
m�����)\���߸���FKх��'��؃>_��c�n-�y�B��c� I��1E�l��1�iB-v<VX�B-�ȴ�@[��E.�T�]]�����ܴ7�R㾅>bM �$��j�.�Cc��=�;��jc?�1��QCƆ��c�!��g�q�B�"?�s�>��*�\���������v��b�)��@4�	�5����<����t�4d'$�݆(�>=j8��b��M��X��c�R"�@��r��QGG�U�VI�l_�ؔ�a.W�7�R�TA5��H�K�0���"��G,���I�84�+,%ʵhO"��u4%n�2���jκ�ˁН�P���h�(FxN#�_兝�pm#�ԕzs�YwA0wt���Dd3l��mu/�ЯU��B�Sn<#|F��IK��|�TF'�t����׮��!�<�-��`��2X�<jAݐ6,����o'��][Ĥ�rPfx5I|�*�Kѵ� Q����YRK��Y����OE�/��jB
�48?��·��ʹ�TN��σ��?����;X:?
�٤,�gn��)0f��5��\���W~�|�:z��۴��v���=���9zD��CY��];?lZ�+$iK�Ps�5T �K�z�i%�~=A')�M��O��euV��3�hp+1��	����k̍2�"��YL�5�aZE���0e#E)X��iV���t������-	%J�����rx�g��Ќf���ٿOϽ�˰lp�f�MaA���$,��,F);n�(:�Z���V���<q�ҕy��L7zsR��Wu(�͕�;��iGٜv
����M{-9��̈�,w���"�dw�L�fF�dY0�>��Z��
�5�g�^�l�����l�FF�}�7�e�dս�dF��2�}f�3n
s?a��X99ۈ(��r�R�n��0d��ȭ���ؠ�`Y���1ڒs�5���7��[;:�slr�������26Ch�PEN
H���J���y�a���Q�Ĕd�@]NJA�B9�UI���0n�6	EJ'[W�K��KV�F�5�����B��TѶ�AO�����CO0]R4��A3jQe�������\$��9P�,r_��m���C�h�f�N�@`�?��UH>h+N$�2����0��k�a�*	v���c�s,L-�Û"L�ao �
r�\V�U#��O�*Gy��P�DnȮ6v�!b�.:��rX�K֨K,h�)0.�#��f�	�xd����Yao�e.�]2t���iS���G�ӒW�f�R�_�ćA��������?�����K�>~�>�޸�XF�}��D,���}����~�o^�����w��/��w�^bS��^�֛<�K�?n|�0�GR�JQFU!��B7K��nq-���VJ��$�4��䧳B���.)A
��O�;����PG���Ң0�V�ݔJL�r�@	�R�I������ ��<��5:�g��iL/����OG2����xL$�~~���JJ���&~7x�1ҧp9��ň�w�������T\�v
��}�-�Q�H�5�G(M$oI�C�a�	!�P%O|8����t�t�$�K-��/%$aD���J�A�.ࣨ���C��&=+G0$�h���{��=��)���3�U�;�PJI@��$ْ9��/�=`��Q��̈�9��Ѕ��G#�G�?H���u��C~���"Aw�Y
�(�T��|ĵ�D\�7�����c*(?q��pq�+!^����D���0�a�)e��bŒR��ݔB��M�F���zDL���'��?əF�]�ƥ��|Y�M�e���@P��2����� Zb/V�e�� �ĺ�CJ�TrD,��~��)�$䭭4b*���T��J���F�,{�B[�I%�l�99�k��˜J_����)�A��H�E��������ʬ��q����מ�a���(�,�.�O����t���p�.�M]_%M;����o�v���������iw�?<ρ!¢�4έ��U�{�V��xS~�@w'�������r�QR��Κ��)��za9ՁQ-C��4�G`��dᔌ�Ҧ٫��Ĭ���U)?-]�� �~~�陠f���)Mw�jY�<7Qt��I�N�L�-;5%^��\��KWw�P|��^\$'��'�)�xB����z�,b�|�L܃�ZI�}VK�3=L��.���M���OW9��*Zmzs�H]�i��Uq�]�j�Ŕ6���5z
� pI�Җg%����+q��Ѽ�*��q���M�.�����&�n��Y"��	����aڧ���!U"���'�x\f��Ne}
�6�.#0JJlX0��n�V�dң���R$܈	�]���Q�0���r�f�����ńU~�d�����|0<O��,p�����j6�͜�ͰD�B1_�0NF�(�G�jW���P�C��9�zҼ?+��Q��'mxs�3�F
<{�bXz=�(�1�,+��K�*k ����M�_&Ϳ�k�u������6V��8_n�4��w�ڷ�<�����?
^Rݮ�R�$��$Z��>L�*�$	C�6�6&�Y��O�%k��7պ���'����e�ù����	��Tsۯ�ݷ���>t�c��*��aq݇�Y���&�V�����(N��_n����7�w��-�m��2�ç������t��^�82fh�Xc��5mЦ��{���*��޶�睩�F��%S��D��9	(��Z�
�	H�� {����(������[`�H�%WVs:p�lT/7ѭ4�J�&`GZJ��π�>/���"žU�<tK���$9x���/�]tPIqc�'�M�V�zPA���C���0Rpe�2X�
��(�8P7i�ͳ���"tT%��;��Z�ĵ"��Y-��Z*�n��uJ�$YmI�;�~0w�M�v��8R���z����@.�&g�,ܠ»�6i�נX�⿰I3S`�ţz�E�*�JSh(,Q2���F��Rj�N��@t����6��X�b��v�؜��:��St�3�c�XO/�O�E$'��~�Eq��$�����Ͳ�A�j�5�9���ӆ���I$S?IH�6��N(IcY���y�[ԧ�I�?�[H@��dO��a�'�_b�A�ҵ�DZ70����uľI�G�4?Fk��� �!y
�9U�5۔n۠�ɳ��p:�n]&���N���T�H��i����/��Q̪S��n��,/��w���{i}��7�u��Ɵ>�v����~<I���o�SM��JB�zj�>��X�l6�;��i?��s(_U_����~��\�r���c��vs����LJo��:�>H˕�b�ޑh���څ����J�x���
DV���'M�0�F,�g"~u��ݓ,�f�ѧݬ�[j���}�B"��l/����jޱ��a3���q�R"����߂^)�:�g���#�E����}����2W7���ɒ+��f������
����m�D
R���f�]��?�����m��99��j9�R�O��=�3l��c���Ae���^"�
�Q�
uJ!t�KU�t�7iI�+���K�
�i;ԁ���3u���E,��+$	()Ȭsj�N�0l��	.��(�+���)1h�to�t��9#x��R��T!|���	�(�,�l�0���g�HK错�P#�d�@�k�W���M"f���@��.�����GH��`� �G�6/��D �YR�nP4y�<���b���w�����1�C&
O5�Y>Z ‰3�?1�`���xRZ�¹�������|�Y�@
�^��X-z���%��1�\$�ókԁF�uM��_��`�f��*�JaUJ#��m,%���K�ٺ�,��&��wF�?���OXɁ�)�n%�-ORC�p߼O6��왗�@���l�4WH<�������4��s�*/��f<�7��.+���N�é�v3����	���/��?w���ov����`�2!��6��/o��v�/�i��E8�OXUp�2ҭ��N�JI���������e�1&4��d��M�'U"
x@�����d��*8�P[kG�����'�E����~X=3��[�d�RL:9�s��q�3���ݘ*)��Q����v[�W��d�,b�-��E�3C'�?��R�`S�OP�����k?%���3��Y�0r�$SZ0
�֊�/�����X��B��a"����^��t�@V�8������9�k�Q�E��X��0��/�'��0�A��Gć&y]B�g�$���#
HB�p9��:dA��o2�ЖW�Hn�7!�R�!��3z�ȓ�sW���d���X�إ�]ʓ̳ʫs�[�KT(%Û�Bt����6MSW!:m��㪳P�N�� _%?i�a�q�;a�=G!c�����Ȝͳ<MCWlxFy�O#A�zBa��8O�AtZ
��>6Giβ�Q�OxN�jG��c�dW�+���M�j�pю�8kj��N�8(�M�yT���<̊���]l�
,i�f`�<Ls�J�~�e����^�S���?t�m]\4�C5&�SHN����!�3��ɯ���;ѿ۹d*^nC��C���F�m�늖,K�u�U���wm٤��Zb�÷��U�E:�n�fr��7?��o��ݾ;
7�~�}7<fK�n���cww��	Qg��t��
y�?���xh��|��j|u���{�Za�0H	�%�0�Ԙ
�8�f�^@�1��	����/�	K?��N^��S���D� ����]ܦϪ��s����mt��A����wa`�ұv�p֢0�.jy�Ʀ��`�����s��?���Rn�󐕱���H���a�>zK 
k)�20��?��mN�\���֪\e~�,��o��EP���)���"}�,�5��$����*�߰��:{�\
���ݢ������Cz�̒�6Yɵ3����β�����TAO���O�5��.�*u�'h�����O�Y�Q�AK��1x����Sg)KG!"��{�s}�h�+L���9&
�������\
M4��#6
�EI��I��$jnP(�q��1w�3L,ŸV5���D���1D���'Ѿ�D�g|VL}�zE�#b�Cvb���
�!���P���)8�
�8����C7�n���j�+X֌�WxkY�.����MR�)I�!]��)X�yb���7�ܗ ���'9ƶ̥�>��;����5�CCڍf�Ի)�}���M���>���ۻr���x9����;ic֗���%�.A��#Y���ow�?�����Cve����+���Q���.W�����_����)����nr'a�����E�"?�W�8����p�}�!Z��響�z�����H��<0�R"~�,��@�
Y�?��-^}6Uz٘��|�*�%�&�ȋї�zn���.1�&��ˡS_�hB�b�O��o�"L����~�3��un�� �Y.�Jj�$ρԙ�Pnz���lt���ܙS�ߚ۵�6ҭ�U�L���
4J$y:N�Gp9�I�2{F��n���	r��������_h��$`��*q�E()�A�ts=���vDp?[t�?i������{p�PO�
�LU���yt���:�����P�w��P�Q|	M��@��YjN������h�ʵ�W��k(O��x6����7�d�}�cIƖF;�uX`-�q|fQ-�f��Eg]��� ��y�a��Q�K�v�&��	�AET��Ĩ�
+-�Ϥ�8{"d,g?�� �d6��s�\�r��mQ`�:�̤\��@��6�8��3c]�mA�=�X�F�j�:�����#W�LBn�UCb J��vr]�;8�D�;��n�CU[�l�n��i��4P�s�F*�i/A*�VE�Ƚ������=d�Yu�X��NR����۹�`�3/��
.<�8қb�j����<\~�q׫D�q��\	�im�­�ӷ��/.���������ի�7����o�,ж\H�ȕ�_!�&QV+2���ǒ�x7����;A�e���å����xB�Oa�ur���Er�-y���4"M�*�^яg�
`#��V��r������aT���$CP>�V�|��@@M�%*?�n)�m�16I�{�*��Lr(�@`��4��Ɓ̨)�J0D��g�t�����'z+��@_%�9	�m��nb�?�T��=�W3m$ej^���/��V?�@�}�\W��E�0k���"��K�KhBaTT�qJy,y�&g�U�2���4Ns���:P���<ᕜ��s��95��-���!QE΍�@�C=I�JQ�LT���qm���L*-9��h)�}�,��
���(w$Z'�O�S+'�(��)+i�8Q�5_P�&���V����O�]"3��d�*������C�U�婪;���p�S��v��/��G3�rlfm�����Jse�@�@����t�v�
y��J�}v��r�Y��T��Oy �,�Q�&IV���ߒ���r#�
�&cc�����xV��BO�cn#\�Ji�L�E	���-d��|���|��d/������a]㦇�bk��X27��n�ߜ$�o�r�.�ǿ�o����X�w���Lz�c�۲ۍ�_<k��4�_~}u�)��n������D\P2Q>`�4�	���uK���HX/�v��
���"�D����Xs�a_�S����l0��t���X �?����ؠ@��q������5R
�F��H�B~��|�n#!f*�C��9�[9�%$\�~�f��ag�ICe��+'�a���Vg���d犘j��&El�m�����ػbyx�ج��צ���0�CԾ�w��2^�/�8���Ktm�AՆ+P�Y?.�� 5���Av%�?�F=TU&g���r��Uo�/�������I�fG׸�
J� )Qe;�p�r�Z+'r��q��K@��/��H�*�קsG|'��E�?#YO�B���a���e������&��jWҌ!�D
HI����5H��H���r�!��D:~�f��
�
` [}�dW2��B�	��w>sH��_�AUw�f�8���Q��\�J5���Rs����(X{�(�mW�i>uX��C�iL]�"�J�۪B�g�����'���X���"F��ɔoj���JI.��D�>9$�~.��ۮ��8
���̀�wg�M,�`a��O��E]MoN�?�u^��.��܀%��Y�t"椮����6������/��=�!�̔wC8�~?��_�O����Q��y�^�{���������D���"U9��P"U���Ѵ$����k��V�y�>#ρR0A�Tɢ{�Y��`�o���I�־YA��&�?,��caJp�Xc��lz7��̋Z�%r~�,ѽ��EFŗ?1sJ	&H�ь�qR��v�0��!���E�4A(EYlWb�6D�3�g�,- �n�^�(/F��R�c�����^!O�����+ʔ���>��-�O�霜)�/��(J.'����KR��ij�ӌ�j��\�4�I0��R1cg~/gS4X82�@ K$��ݮW� ���q�
%M�@�3��Q�N��� �M"Y����]1tP	����b.��l^�T�����XB��V�\V�]�򡇇�D��.�	���5$)�`�/�Q�u��"a{���_Q��,F��(y��9j2�
=Sry�lʆM?/ȧ��x�.����N�񑔤��*J84C�W:/�`|���=:�^�2�]�P�Ok^lQ���8b%�	`U�:M�HUUgvmܳM�'[��~,?['��1X���u�,-�ٸ��^�"9H)�OWUv�`�$�W��M�2�e��?�����}[�^y%����ʷ�B2=\��,]�X΍��l]���B2��cw���
L5����J����'	d�W�e7���jH�����	�1��|��Ѱ*��M�2",�{�%.��4O�<��yz��Mx��qu!Ėp"Sӝ��&��mW0��W����/�}�u0�����L(����>7͒�P�(�}�c�D���"�p[�˜�Y�.���a-�q,��-�G�Ӽ��}�|�x�2N�����g�TKA9������\'��7�\���0)�+�Bty!Z���9�^X�A����A�"ל�{QUXG�V
�,�����ڸ
��P�XP� ��sAXY��j�s\���E�8��d/�*���*7Fn����A�����qVђ�i���R���%({n�6��3���E���㳣Ma����f*j���X	�Q��3)k�2ѫz�v�h�4.�'I�
�TK� ���C5WP!W�mQ��Sy�a�O�l��PKj6*5����)��!Ut�&%�a�
��'�H�'�Bu�����i�ɽ"Y�'H�z��X�����ج|I
.p[��|�bjD�����������y�	����K�r�|����&=���/��i�i	�5E�e.���C���M�lW(�:/���+�C?���p[����4O�m����`��~teZnh��I|Dl��N�#�o�����o߻.��veFA?,e�
�n?<��o.�v�^6�/�Ӯ}�w��=FK*T�����X
8]&��&�'��p��)��V�\�g�9�CC�h^�7�y�vJ��v�����Qr�9u%A��C�s߈��C�p����U	G/��E�H4�u�c�pS
X��:�G����L����O���n�
�[Q=�y
r�V��u�҉���g��+�-�rӾO�Õό�0/�c�p���s �Q1Y;���.���x�sun��&�������LVr�0����A�X��\�C���A0BʅB�q(o<�Q�S'&�兇N��J�ϐ<�՟�L�x9lΝ)(�����$4�!DU�H@ɡ<�Y�Kӟ<�qgbXL�r[,�v���kB�Ѵ&��� :q�(�H^`/��T��N(�f(@ȓԏO�ԒJU�vxO�C�C˅@D�qV�6�!�.X���TM��>]�X-9�	,Q�͉��2�u�~0n*8�WӋ�yҔ�d�W����J�m�![�ӦN� ʓ�Ǵ*���S�rȮ�F	�u��&W����4�q��n�}?H�`�|v{>y�۸ڦY�8M�ꅴ6E��=��$)M�V�FԹ$�dz���Λ_����pg��7�u��ː�Y�:p�VA�V�`���:����w���Ň߽[2{����-G���}W|Q��E����8���I�0�!&��Rف&�K�8-�ci�:��eׅ�p�O�;����l�P��匞K��
R�R.}H��QYH��N�N9�)\k5��m���ٮ�?Hc�T��")��	A�r�-R����B�az���x�;8�v�;�d2�r���+"1�6.=�)��
�P�TEU��ŵ�z����g}J ��=vaWY;dk�Q87&�@M��'�q�
����
C�~��j^��&�y�k�0
�8`Ik@�!�J��ا�
�{���<�FH��Lag��f��H
�Ħ�K�@{5"`],U����?���������Ŷi>��*М�`IS�m9��p
$�A����D�Z��#k�aLA���/�jj�w<��`����T&�n2���̓�i�)�d�6������������/*%�=mҠd*�`�d�tdH�{�zqL���[c��d���*�Ui.���:���*w75�^�D�.���cBzɵ�<��#Atz<`i�om�تB{*e}�b�
H!^���n;��7�6fꖪ^�P���*�{$�j���������%�6UZ�<�4q�T����%o.m~u�s�w��/����)a�r��=�l���:���� U�t�j����?�P�{}1x��������I,�W?�X_,���w���L�t9�kVj����,��X�@S�EݖR�
�~Js	^Y���,s�D"�����Ctr��[�ܧ5*��H��Z��"�UKNB4����p��R7�:
t,t��Q
�h/xmy
�P=�l��5–>�	��H0q���2{�׉�9���M�J)��:d��J��$IגS�%$�0� `�ZAM�p_1-�^^ȂT�s�2�މ'7r�M�Eʱl{�S�A��K9|L�Q
Bwh�K�"]“�`�Gec)�Rj�Y�T�N4�ݹ���Ϭ7��-�E����2��Ӧ.Z��2q`�Vϳ�Gd�Q+
�K�t�$��t*�v�����ɜJVQ� $Ș�P�2&�T��#� �T�Y��Īad_#�x$��
s�ꓙj�%����K�ƢJ�T�!�����ˬdf�FS!��G�9��i젣J�$�'}xX����J�2&�a
G??�$�&�njt϶���.�~�v
�Ɵ�v�\���q׮>���fڟ���a�eWMu��NK��4q��
�=��ԇ����WI�����8?ݛU�B�0 B��?����q�$.�9��$퐅�NB4���?��]vS���x���ˢ�XI|�3�@� ��{���H]C�r��ۇl�U�?���ҳ��s̞���2�f��~]���N�m��'�Jy�Ø��G1���W.v8\��v�tR�䍔�v~����~\�	�8��*!�<����uݮ�n\`[/Q8ѩ�b�J8�:��#�e���%�k9�(�sgJ�oe�|����L�D��fQ�n��
�4t��D�	�ټ$y.�=����]*]����J��w��
�*v�M�' �%���Ћ��(�B��������^��RC%3�s��>��V�!
��$��z�#��X����a<&33,M�T΀�j�G5����OI�T}Ҭ����f�-�5Z�
;ǥ��D�$l���V=&v�y�6-Q�@�
W"�C�|��4Fq�S�q�;G#z��IM�*�^l���;;N�!ܬ�� �Z���>��`�%U�Vj�-�Q�[�}!/4������	+�čԄA�3O��X�4����4J�ڞ�U:�$54	ѧ5ej��/6�d6�_��Ozc��ƴ2S\���(;�6��������R*B���r<�ѐOI7�����F�p�п�A�g-�v�O'��{4�ns���%S����mE�/��5���\Y	I�����:L^�mYn�`���V�R��6�]���ͳ��W�>Oݦ��99#���ҥ��e?��]�����o�۫�$R��c� --��S��b�bݾ����3��N�����C�-��ޫ��w�&��42s;�5����TͰ�G
a��"
4�yq����т�3�ru�C�$��C͟��0s�����@�{�|� }WV@�Cَ�M��ٞ�B�����7 EhRe�Zl���Q���)I�T���������VE��Qd�oߥ�5�B��N��6Xg���N�@';�P� I�#'�4v���>�~&* C�Q����
�XH\�� �%=�+�>	�F��ܶj�V�D-齤䨱
](�̑`O�T�S����p�I�@���1M����:v�9�7���0��H��8�A��D�UB�Q�HC����Y*ތ�(^6s�!�`qt��X��/��㚼J�I�g�lشKΜ��3�������7�Gb�o	t6��P4kI�����D���E����|����q���U��n��/��<�n���\���!o>o� L��W/$8�^��r>�)���fB?̜/yZ��wf]��@Y�m;���Wl
ُq��B�ݪ��\Z��ٵ<��E��(���O����F����H<|���)�GE~R8��������?|��xu����~ܹ�U�*��1�eKlX>ʟ��Rȑ�����-��/��T����&��޴ӛ�Ye��|�3z�%gSp*S/F���D�2�_����H��;3����e�G��Co�m1�<I?�8����"�Ւ�N������T2�ۻRœ\���:Y��a���P׆)����������E�~p����T
�5�WC{&K��/�C
�ݒR�pYl��I����`�ǹ�$�.[�
�x�,�g,�L���X>\�%�i�G8���ʏd��a(*^\�ii����1�Y���VU���V������d% �@���i�*;K��?%O��3;`�	.!L1$�MԊΌ��5���O]6��Y�a�A4*�SJT	�땀���t��M����Z줌
)���7C�G�
��}5B$��_FO�t��P�G�!;�0(�pf𧠎!�x/ ��
h���[��1��ٞ\���n ��/�d,��3����{�-&*8+LTe��㊕��#V�,���͈�Aa
Z�.��4�\_|qa����g,��fL�����f�Egc������I�>���ݾ�s�*�MU��|1}!}�(a�ݾ��?���{�#���X/���(i��H�7Q(Q
��-�����}Ʉ��(8|w�*�l����]��F�Os"i3K�bL�cs
�or�rÇ~|{�|u1�Y�/o˛:_o�w)�q���xB*`w�����m�0ǡ���]a�y�-]��nX�a��y�W�N�N��}�D��[89;cF��hkN K
E�E'ߠ��*�7��r.-^�C'fNi:�tj�w}$`�bT
�ƞ����� 0��|yN��<��B��y”`ܣf������2��T�v��娠��u����|H��N���:'�M��;�	��1��B� �l~��y){�Mp} !'�M�qUn�l����]�w_0��I����Ā�~���gr�,aP�_��p�0�mRϺ"P�Wd�����J�7���n�o
rÄ�&�"C�*E�77��a�./�}kb�`�Eq�&�g��D�ǢT��̃61����_��0������^2���o%'��g���Q��*�蒙�K���kE�|f
J<�Jq���0#,bT�����ppF��m����?��sp}F��z����9�ސEA��!;�;u)�D΍|Q���d��w��"s//����'��Y�)�C_�� U>���N'9p��ܳ��þ�jN�r���|�{ȷ��촳���6rW�q/Iu��gc�ϊj��s�o~���n���i�a�YϪİ��4�A��}vs�"�?�g��w�_^����]�q�v%)p����<d�ʱ].y	�<Fy�����=涟_�~���+�YSD��I�̑n
r4��ϟ�wm�oҟݦW�i�\z��M^�\]s��v��EÍ�%����hǫ>�)9C����t!Q�i�2T��-4���n�Ic�x�0ES҄^���1Ƣ�V*�����Z={�\Bz�ܺFR�;F�{)a�Y[:�C��#�ծ[�
�I���H{��:�a���X@snK8�q��@B�\]Ǭ��D2$�Rh�Ūv[����8�=�I�	
b]�4��&mG{�qQ(�H%T��xќ�:A���V&'Z
u(~����ˀ ��„e���{8똒>�)D���׏��<�!��da�}bP^J����FS�>�4;ao_B:'��K{�(X��c�g�A��]J�Gbe�����	&%p�c��	�$�JdžH� yS;,6�]��	�?6���4Q����@fS@�X�b)�qX��r�S����"}��qу��mK�L���0*����]T�q�^�S�x`�C.��]?�z��������''o<�i��P���/�i2��iY�3u6{��[��RZ���&��ǻ}���������w��#v�k�d���߬��n��֯V�ۤ����^���Fo.��-s7$e�OǴ��z�� WI[ĕh�ݽY���/�?��봲���-|ݜ�A"�<Q<���^���~���r��磔���nN�w��M�<	Qޝ�۝y���j��K$C��%�D��K�*������wGl��
P���l�h��#	j�	(�H}d�w�/�����K/��Iz�@�gz�p.PR�<��IM�_C(���5�d�S�ֶb"��Q�����Y��%�\"���d>�<��d
��H��
A�\M�1��6��S?�0<U�9H�v�)*畺�WⰡ���������=ǣ�s�̐<8H��%G"�!gCh(��� �/ϬD�ÐEy}��B��'�dQh]��?H�9�^
�%j'���K�����!u�,M)��'���QM(��9'��.�J�Dv]*K���*�	,He�0WZ�]K}+
ςy?C�Ֆ��uN۬�F2��tO�/&L�eW��$����Q*�-#��i��^IO	��O�TᶷȸT��4�1%J�/~r?�M�K4w�QG���'�S,wRr01�U+��e `kM,̵'uZՉ�9�_���<����h��d؛N��F���Yc��pwR��D�lw�5GsY?;�rw^�c[6��3+�^��?z<8(#��O�f�*�e�n��/_���@u�����D:�O�p���@r𢀘ɡ�$w��xB�&C>���ܙ")~�~�[v}q]�5���h�c�dryۇV�8V�� +�����W�"��_=܏�wRW����6��	��wP��ӑ�!%�U����Kݑ�O��@c�g�4�zl3��8�-�S�
��BB�*[)
�ž��P)ɀ5�À��G!6.V⮜��è�n��>H��3EA�"]���C2=3R���G̚	�fZ�)�N�LD>��\1�Xc݊d)��0��d�Ӄ�!��G]!+���L8���M�m,�'@|X3��4�ލ	h%g
I�ac�ŏ�w��7��|��zm��A��`ai*<�i��y\��_Z:W��Y
S����]�r)��ԣ`�m�"�%N�n��M��\m8���A�2L2�(��'x��H����h��Ǽ���t�lQ�*�����	�x��8H��&�,�Uv�ĥ�+�.�r,zs鸚��D��d�p�@I�,�(#Xia��ފ{-���5�8c��SB�;�L��N��#���n���y�P@rDO ^Iֈp�ty�x;y%9rUո�C����K���i�^Ŕ�-�	�L��e����A�gc�h�����?Ҟʵ��3Q�b
�}�ܵ��2�/��r?������IQ}&�ii�&9�����M�n0~}���Kc�����:��9M�2��7U��}:�՟�4��l��><���Y��JB�(�ԙ�]f�HQ@���4M���In��@����n�N�q�:��%�v5L0��"�z �}�}�N�y�_U�7��(=/�7�a?���-*��G���һ�7�e]�+RS�f�/���<<���yk��w5��B@A�X�/�1a�iW�?�GXt9K�e�7�?�W�pB��)01[����,G��򩟲��[�DR.F��	X��9��K��	�CF='7��r�0p��u�R�#��g:K9-�w>�є.�a�?�r�y��u�PE]$ό�#��qm'l���ÄR�D��Eɟr*)�Q�
L�����l�Ѵ�oC�4�����Bz�a&v8IRO���J[�ۮ>ҩt�Q�8���4�a[�jk�0�CO6��t��G�ek�V�a�Ep6��(��W?�ճ��v��:��T���n�9�I
-���.5���.��I�<w%�YvJn�p�tTC��Rak6�
?�䜸&��%��F0n "�U.gWXXT;�|� 2��,�Qk���H���f���ہek���h	+/T�P��R,*)J�T	�T�ƹd�AF~�-
�����콨P��'�'��D�]K�C�L�"�=��6꣟����� %��7ߧ��U����i|w��,߸��:ϛ��Ӷʫ۟}����zU7�ׇ�����F�Y��
�#�ן}sz�ًχ޺m����0���y?�kC��~L���U>0���EU���`����n�m��-I���������b/KS��H����U������܁�M���]W��ji=w�x<Ҙ/���۔��(�Z���w�$w_������=r��ԝ����7v|q��2�F1�M�@�uDdq�<��G���&�R�PV���	
��T�B�x�$��m�]<�3%Y��J
�8W=	�8I��2��>s{�����
�S}��(;t 3�?)��!tZE��76AEnqEj��$l�.ݺFG&mT N:5���!O��ͯg�iW%f.}�ho�М�0Ð��f >��c����O@�4�-fX8�t��JUEQ�l]!L�y��L'Y��d@4����]��i�eI^D�!�RN(Tc-
��x3O��j��{U�3ߍ�h�}���Fl%�5�1&
��t�F�c�+�$_�r�%ʠ1$7%�@�606hғ`HD�1��Uh���M&�6G^Kt��
t�&c��T2�lt�N�i0�(��T� Fc@*�6��d+�*�?.J³G��@Qྒྷ+9ٜ�%B�W�~��D�`|��^c�S5�`��zkqy��qw�CRB>��b�+�i���}�}����e߶�O�W��_������v||���_�=�륱��IO{���#��c�<v����`
({͆�J>�B-vx7�o$,��W��U�p���ڷآ�U��PkK������U7vѽ��Vz�Y�d.L�2y��]��s�R���ͺt//��Ee�M����Mó_}./��?���v$�b����3I%[5D8o>�{f��c<M\��!d~o�+��:��|����s��b*Z4���6$�o��w�߁q�Ջ	sn��l����dZ�3p���y+rW9�ɘ�ýɏ݂8B$�:�O��Ҍ
:��>Q*��#G9����������^�jp�:�4�q��M]�Π�H����bP�G9�@�gE�ȋ����`�.?�_S�R�A��N�W�Da	gpl�%���u)�	��ˠ
�,pJ\�0۪�W�iQF�y�1���N	Q9�v�h��9}�ٚ\0
��I�
'm��f�ϩ�Vu�U�W�z,�(�y�Q�ZBij�B�-��,?�0FY��r?���+�˘.�Ľ�ڒ�����N�4QZp���/�,�'�n)*Z��&m��w3�9�&�z����$WOy�.5G�kBKP����Y��
�V>`����&MgYy�������6ir�9�~����q^�SQ���7ix����~�x|������}����2�Ͽ\���t8�����,Nǻ��g�֤&��$}�ds8z�����!uK�,���,
�q�����ޫ����p��Y����F�?���E�Z�H�/��	b�g�?��a������$�b�ZJ�5�[���Z���y������߾!0`Q��hA�*���?�9��-�&F���l��=iC����l��Rs7&��b����0Z�&�x�ٓ�G�z��azl��r��H����hG����jHE�l_[ȳ��rMas;��,��噔ӎX|�2��R%f˷�o7R��_����DU���R[P;�󗙾!J���\�G�sd��4���BM�t�b�U����ʉ���d&��%28<�U��;m�C�s	��'���A�����8<H7-հ۬0��G�5]�=H��"};����Od/CJ�V��&t�n�/U<J!ّ�M����(ݕ�%C7U�y��gj��]��I��N$%��Qn��LX^�Z��
,G�1�:vXx-i����(�U�,h�7E���Kk�A2���rV��DMy3�rLV,C��5�v�Ra���v/ԥV����"�,%A�{�j��a��@��>A�'A-�bh�C�2X`0�T�t�`�n䱕��gDL5MRJ���Ḿ�������o�����U�4�7��HZeӒO޵�����o8�/�o�Y�}��?��2
�p���E'�"����J�O��M�z}��wgNS��庩��Lc��p�ңΐQ�5�S~[
oNf��c��"�.���������5�
����)��Ϧ���W�l>��]P:-�hn�]�:�6B_h�Z�����[�(�Ko�)!�'�������Ǥ��
���"��m_4ɕ?�����CAKrms���@	/����h�'�$��#$JE�S�B�@��v2�I-1(�g.U���(�Mj��}0-$�"��6�s*�U��̪����b��p�f�H��Y�"�+(�M�.DA�$�s�4�ر�SHǭD��g�*Z*��))I��G
� �bY���sU#��]B�Z�v�Rsa<XK{)�p���T�&�jŁ5"��L�khg�t%Zɇ� �`n��GOg��.����,�{��A�Ø��&�.�1=�n���=����yv$�XvC���s�i�M4}֐������ՌE�=�([��Z��\3�F=�S���B�@���U�[GUȕ:��i���|VW�~���9�tJ�I!��o
8/w�0�,==����%���?h�W�id}u�b�±Z��R�S�HB����(�Ð���@�8��������_�������/�?���(�|^���
���˫����a��^\�΍f\�>�.k~-7��RBg�T!(�C�Z��қp��]����n�����흝&���]�-��V�rߢi����S�g��a.�uv��"��3`�����F��[	��;�U)I,O`:�4�w�EWv)Qa&��l� ��"7uEN���\�.1�N��RLU�<v W%6�4�樮�8���QS�jY�0�PH�G�
��r��,�45���qU<b�NW�U�����}w�3��~�2$� D<*1���^ݺ�ֱ,-)�h��|������=��8�Ձ�����s�cK��ArI��$����@ 7�+���&����l[�7҉ L�1I�p�yl([�<@�yY��Ā� ��V��@�\j��w�dxMV����:9B��<
���O�$*��[��]�j/Q���
�}AE}����,!�i�|P��e�e�y>m
�jCg�����?�2c��b�Ԍ�
_��=�S5(�y�&�ы~��9euaň�c?��Q�3�(-z��wPerW<�Q�Z+�A���d���N�
�#l$rk�=�`#��D^�j�ƙX4�f���C:Fn/��K1�H�������ip���MY?{=����xy��\՟޾���_���훤��x��}��}x�ן
���.�]
�Ɩ�j��l��Y�[�Ej8� ����ߜ䵮��4��ͺ7�m�/^fa���c�~��^��A�H��
���|���պ���=���.1M�ٶ���']�)���x\Ԩ\KT��tO	�@hn�ԣ������G.*b�p�|��dv�]��N#�c1u�j����b.�x�C;ʪdtp*D��t���Ҥo���J3 !��%�yPfe�=������b�LJvtd��Iz'��EJ��~�ɪ�&d$�1&�&SMd[af7'鬠i�={��=��P���[44�Y��r�"���_3֝�X�,:��5�56�Q!�@��([��K�x����|633�j~����,-1����2��'Mpx3P�È���4�ڇ�iaݪ��]_]�u�VĢ�2�s�DI{	����Xz���6J'�:�
���$�z�De�u�FYJ9d'5%�Nv]�,?Qs۔2�}�]ƂS�_�e�-+3	��U�mZ�Xyx��&s�|�S�t�R�f���ݮ�M��'R�!�
Q�G�z�o`2��7�`Xd'�\fT3�=��e�`���V���P���nj��m�9C���8�lc9�W�?��
$d9?�%�c�{i�?�C���Kq���������;L.9��N����Wv6ˇ�~#��G�^nl^Cs����W�̈́��J�J�)V����o�W_=����O0��L�U���b���]k?��������YȊu=a 0k��I�/n�D�n'َ�E���M�t0�+gU��sw�t�T��G��.�h�Ŭ�EceF�:�p�l:��Ng5D>�����4��+���\��Ν�Ԫ��gi*�!�s��<�!
��F\�#��Hz��q�,Bz&„\���7�<�Y�%=5�@�uѤ��4~��PЗ*8_�R^ (��9��]��&u�s�D%��I�$����&�ާ�
�	^m�g�)���+-C?Zŝ�&�]��Z �@�wI��X�`�&
��!�ȅ<�2+��HW��/�+S��,"K9�وSl���[%CS��5M����V�R͋��:�Cw2�}c6P7&���A.N��z�.�t�Җ�*H�uجtpZ�L�+��D�!��5�H����Y��ޑ<�(�ʖ�&
�p���k��9��6=
-H��-tmTq3m�ʯ3,Z��囨�PH�w�o+	�o_|�Yc��\S���fx{�|�b����??�J��`=9h��KLa��H�%���^��_]���D�0/)}�֯>��|�����zS�����8=��~���������������īK{�����~!�k~�SK>#1e��E	��k�w��7{��믯Ͷi?�O�>���_��U�)On�ޛD�0���Ž��|UCX{|;��[���	h�}?��4K�"ox��Y?��G�.sG�;z�Z��H�X�W�I��w#8�q���t��Љ�VrC`x�"��L��
ӥ�"[���F���Y��u�D�ºʪ�|��K ��59�J�� /����GT%��W�mq��äZ�tiJ�E�Y!mc��<��r:p\�?���:۔��d?�����<G�!�}�r6=ᬅ.����g�
O!P�Pd�YZ9�%^o�
��J����ƒ4��`�e����G�=$)q���������$�3ŮtK��'� a�@9`��H*D5
\�T����F\嘞��0��)�h&�9�p1��J���V�\XT�J�*qk‰����Tm����ZL�=
�ry<��Y�9D�a0�Z�A���]���*�6_�q�X4x�"�<)��V����@�BQ�3�(3�S�%��:}�84����bTs��{��
��M	���|�M�x������9�ыl~/�3�s[�?`^VWf���^�#p���b�w��HjR ��iV �g�~�T��l2��'i�$$�$1O!ˇ?|����Wr��t���/�ˉ_�ԍ���o^?��y�������p�ls�L�$̔t|�4�CR��?�s,^�7�����Q�a��5��
|�c��1�/�^���4�i��|m䫂�ۢ	"��_^���v����PB	��=�D�{�#@��/D��G/��tSO��ܠӸ�
�$�Y50�1ѕS���j��H�]@����
��(�SL��T�4i�2�9{j���]�\�\��ڬK�+�bz�T�T�xϵ�a��z��.jzqY!�
����Bނ�d�Ņ��� �=����=�jX�HI�N��
��Q�[��d�U�{��ް��o�5I�4�e�JG%�ll�Z�r�t��G!�EHHW��m�hрٜ�3�R���~ְ�Mt_�>:�+�z|�`��8
O�{���k�EN�V����E�*=3q���kSv%��Q��D�씔i��)6�Kdz0��#H!��=�wf)�:�J]���������XJܚ�*���9;���ˤ��c��������@:8�Q�RFe-y6�ӋG	�Ê�7��ά��D�1㮓�Յ�v�ngJ��r�l��rm_\�Wk�|��4��U)5�*qJ 3�v-�RT��~��6{y%u5Ҿ�j�C��+���9k��?���A���g9dҖv8�9v�:����vx���pl��ݾ|����;�����á���ǩ�w���3S�O�I`�\%7��J�����ۏ�a�.3pܔ3!���Vf��+gV�����cl~��m�iw4���ޡLӕ�,r�:�҄�}�=��mJ)P�f&�i	|C�m/��Y�0��'<�aӳTƢBSH�Hx��,pt����Q�8p�e���V]�l8���xt5�"Z.�gi�XcT9/@��ls[Q-P�EMof�Kr(��|�1�SqG���zY!���oJy��O�
�!)�+��d���`w�x�ʤl��+L�`�0�FD4�.���h��ռT3�!��5FX8����\����tuf�,�h��M±=Zu�D�	��<�~����T�@�b=y�m�U�9}s�'��tr 0M'��3
(t��L�R>ᘅ�Ll�2n?��"���'.	Yd}qe�~ۓ��rh�����'
*����1
Z8�9@@3B�c��
��Q�L��g���I�L�s�7�@p&Gٹꑒ��m/�0�K7dwR��R��m��:O��m�v3�Fm�A̭�_�R��IF�3%�Ћs{�J#s��C(����N�x�U!�
L"��.��̳čyw��W~r�O�-���ZZ�b�~�E�j�%[����$��ȷ������x��/Lw�{�}„� �YZ�龕_᪢��fڷ�\L�����,7���oڰ����fm�����۞/l��f���x�����x��f�=F�t��#���f��k3���d�A'�M.����m�z�r�񾼽u�Z�O�����q®0��q�#����e
%,|��.�COkHD4w���C�R,���Q*�brA{��>xI㤶/�[
������D����L���:�o
#�^�K-�h�N=S(�/ �-�&I]�Ȫ�:c�(��d�)Q[@�C�DEK�:��mK��γ�%/t�����SB_e�>���%s�;c[�T����ZjM'�dT��(eJd8�� 	+�+o9�u��m�b�%���!�HE�i`�R���9)���o�#���٘U-���7J����c<
�4J6EDi_hPO�.`�M��΃B/� صQ�^ā���G�>�\$�<���%1��P8B*�Rb�ö�g�dKӺ��7ʶ*ÎeW��687��T@?�`X�OL�2%F%��"B�᪕�#rƒ����u���{�D]����}�������!�#pLO!�@Q��.Y"���ti6-^V2t�Q��^�8�j��B1!�:������k�Ð��Ї�>��߷07~�2n��K͏�_;�f������I���l/9���wGw(nW�?W��,I�e�E���L�d�V�V̚�@3�����
�� ���(�D����{�|���.f���Uf���G��
/O���t<KF�c�t\���/��_|]mg��;/���V�:�П�,wy?~y��X�y��nz:��l!v�o��w����8,\��|����e�&��mr��?���|���ⶕ�c�����B����Y�\�%�˼��+ѤD��;��\��[#�l��	>����r۫�f��¤Z��$��W��
jgir�@wjʤ�b�#�
��w�-*��)I���I U#���<�i�#E=��dVs_�]p�j,�J	96.�:��e=��T'P�������3z[7�m����ki�	^���f��/�ɂm����['y��Z�]Zjm�X��H����b��
�P��K/��*M�0'�r��F
�Љ����fP������9J��*ѐ�}���/�F@-(bE��<��'I�4T��U�<U�m%�#��`A�3��W˂��٪��hm�ȱPw���-�O�*�B�g�[�˨�F�Mj�*�ER&�$u��)@�r&/�D0E]&sA������B�_�Ё.A�h!�,hT+�z��KƮ0�3�̻;<�Vڲ�i%4�AzQ5k�#'��*��LMv�����eyNC3���!gC|K"Ey�3�$�B��1\�9�_���('�{�2�0C�8��n�3[BeQ:�y���ҹ|��?}y>��t��w��KS|Sa��}���T^Q�N���ڼ?���f�������,�a:�{h�n�"�t<>Ȼ��=Na-���ׯ�)�|��a�H�6��!�'��@0����J)^�y����������ҽЯԼ���!��6�u/�3;��C'W�t�N_�0,z��%��Ur|�gu�iw���y*�YK��Sv6\
 ��l�����b�^8��QF�>�b1�C��i�TPL�(�10V�LN�)E-����J>�iXCT�\���W�x�+n�n�r[���UNG����|:�#�Fn�R�� �H�n_��-�&n� �Uc�5�o�5��+n,�.S4�V�z~��g
�Cs8����WZ5ӣ��1W>4nW��:�G�qQ2�R�1���:P�a�j
��f�Ͱ�ŵU����{O8H�sw���qɭq�!�B=[
�k����Ʒ�p
>���3�_�AKn�re����l��蚱��MklNux�%��,�U�.W#uRZ˓��h�pk[ķ�snѹBD���J5��-@7S��ڠ�t0"��8��:�{���F����m�|�ۻ؂S��O���A%�D�PK����s�b�%|��	(�ځ幝�: �.�	�X_�	%�W�bg�!}�	`E�DI��w�b�QRG�q?�Ly/u�������3f�r����U;����o��fz>���{X�y�Ta�01��&s��0Bx��r�g�Ͷv8�������zvA.Wmۇw������xZ����%�yS��1/��0n��N�d����_F��$�^��w����Y�D��cp�r�zݔIz���eλR��j�,r�^.J5b���m��gš)��;y<א�EF��	Ss��M��ғ̊�Խx��!�b���j��%�vM_�B�g�7�:9Ҡ���@����ekZ�%ʮ����GB�����ž�F�_��꺔�~^_���I�4jQ�N�)Ã���{�)
1ZG�4�aU	<	m�h���j?�m��!5�H�j�C�%Z�:>�����l9�E��y 1u���]��&��p�����vHꂵ8�GQZ�����1��	#d0=a
��Z���X/(�B+�}�k��ǰN�a�����e~rfw���g�)���2��[D���b���yA��+��#�)����_�+�V�5�0��j��$w�s.�$�<�s��^&N�"�խ����p+�}]A0�4cmQBB`wգM
_�, 4m��J�$Z+K
�4M�gbI�P�: q4��P�G9
82EM9V7$rn��T
1��jc[9�zA	S�ͦ�g�n���i���N���O���?>���?���~7^�����?��c�0
$s6�Nݷ�2Jڪc,���u�����nw���t���v��ӫ��x��ܫµ�o���|R4��d#E)D� :{�ڍ_N���w���7~/GmY����g��e'���3�[9�
R
�w[J;��y��܌A8�&U�Z��Ӱ!����J�)�`V,}�j��(�mj9����d�O�U�;��0�ZT�[��4��5��~��ΘM	Np����Ό>ڮ4[�p��~l�*.�=� _��#�ڦ��Og�ڝ1��y����.����M��C�N�@Q��7@�‹:Kq���A
TR3��"!�vJjQ��\��'Vi��@�€���EW�];ت�o�<�#r7����rA[w8�%Qk�^��	�'�`�*�J�8T`f�H9�v8��PՂ�9"X�Z�@�z��0�i������ƈv�i0�J��EH�(�9�Jj�$�c���?(���k4�Il��=7��j6d�k#�L�u��>�c��3J��`d���b�2�kN"C�~���/EUBD�|Y/sVfՇv��K�T���[��`�>��	�K����U�vQ@���途�������;���<y�[��N=G�|~.�P��1C�~>������b�2�����"=�x��_$q�=d�,I��3y}�ww�?᨜��7��4�� ��d]I{g�co�yȊ�?�vnw��F��)�5\X� ����S�xS��-���(kX{�S�B�_�i�h��qJ��Ay�??7n����|m��I�>��O�x����e�F@����'�E�j{���nhF��®�zX�X��E_]Q��aP���-Pv]%�Z7����m0t;�.��>W�+ke�<2�<��ȕ�I�����S���ȗbW-_N��臘�|�:3&��t��h���A��7���^�Ʈ��v��c�Hkb�.Z[lP������Aӗ=�"�
������f�t��:iͿL!�ո)R&�1Z���"�,�M	�z	�2�R}�I5�?���=�3���ۖf7'��g��r�pΗ�lKGޢ���A'"4���3i��6[�Ic� }��U\�Y���8	Yt�*�(3�A��è�l�%���2��D� O��:��kS�z-������B��M�3V�� �ƕ�#��y!0B�!(�fe�ف��&�T���z�"�QѢ×�9
Nr�)�|Δ7.��Iݬ�~%=G�'d�ECA6�)sy����K�2p��2pfm�L��T�v��<Q��S��_$-T<+��j�ҧH�_����벑&n^bv����9ϏO_�ӹ��G�f�O���7�O?}���L��O�����Ky�|���y>�a�Ա�K���/�߿���@�N��*�|�{�R�p��g��K��������K�?_�<�)�m5��`7�}�~��>m�f��/�h�UZ�Y�j*D!�uM3������T�_��}̯��+{�H�Y2��Ө����
5�&�&�"��Ѹ�TX�Ii�S�J��b0�Q��1d8w'60��]WR�S�E�����q�)66^�T�i���=$�A��Ԝ0�G_�+�[��9���Hg������Lxq�����	�a ]�c����^�-K��˸,O'��y^�m19��ΨxfZA�.(I8Dy_=7,
eh/�ڬ+<`�f�p�Aa�?��0���Bб��0�¡��$7|S|PKmu�h�nބPg�#bG��(ҥ.a �Fu0��
L��Y��|]�Ч_2�F#A�]
rr�� ����4�``@��7QU��+T��1�,�4��!�=��tؖAz���AsɊ��M�\!90�ԥ��vt��Àt� 
�-)�AkzREE�2(���SS�ΗHq
��=O.i���l�}hA��2"�K�2Pޢr��wr���6�{��(g��׸�����i6���%\W��izS����0���~�����Y:���l�}����y>C�ģ����ڵ?^|{���r�� �Y�E��G\cHP����|�j\���f[�a,��l��;	z5�Չ_����ˡ���K�io����ܶ����:�OX/k2L/�`].����k��w��O_�����Mi20X���ƨ��F�ſy�������44�
 �	�'�>�#�ڻ�\�i��ZI(F�3_P1���|�r�����}���R���؟_V��M�@f3�����T8�����z�ʇ9}>���2T�1Y�S��t�h�C7c��P�v�XNKX&���L{@����6�����i�|񃧹�
�S�0&2�u�G��ľ~	������Q+�9[.{��F}��I��Zh%J6ꦞy�pq���B���K����A�ڻ���0�S"��h��@�o���P��I�A�����S��7���%�d���ĉ�湂��
��z�4X6f�m�:�R�S�իS�wH\U �Np��Y-'MS��6�	�܂.��Ǣ����۸�I�h"A!4*�.3���N6�'xL�&�By�V+��B�:bJK,�kP�:�A�T���}L�e����Uj��M�>�4m�r.su�1���ˏw��)9T?���=��[�S4FbM�����
��?,�%~}ɫ��ϫ�_���q�rut�&�T��$��{��*�>|��7Y?��h����s�����4I䲷��y��Z)� ����F�=��J�Q�',��/�}���fz^�ͽ��0�qFDN*qHi��F��8����8��.j��
�X�&���5�5�1�($B�UR!�
����N�f9<��'��ZEi�.0�F�~��I��r�
O���^�sMQf �7�,"���m�z9R2�m �t��	�A[�u���0ͯ���%uDhy���*okl��)�N]���e����H�Z�me�54�&�X�9/3��a��1��N�~��1�-w��۵�|=�U}��
�S6{�u�B����E���
�8�9�ִR����&Y�B.m������h΄�RZ�{VaŬ�{4�є��t��{b�����/VR�6rħ_G��q���s��yҨ��*����2R��n]��>N>d�5]ӱ��2��1�s�=)��ԍ���~g��t��#�0�W�VR�3d<%���(��c�I��/��~��BV�65��<�P�C�+�0+�w�Nyx&��g�=�Op�}l��t�R�|����8\z������q'!r>�����q�w�M6}���=�8�h����q͟�[[m���fyy__�����/���������QZ	�2�g/�/�c�O�~�~��]�]t���+�ދ����]
ad���l�(�<Y�>�H��'�,e��9�Zސ۵W��{>H��/�|c�AA=J���W�t2�r�6[�v���Z��|�>�O)��2Kb����u���*�X���r��.�[^N��E�_�to�vBe���$��_h����o��[㠜g�<�u��$�:�$�,y�W�;-+�w���C+�lS�Y��{D���Ļ�
��+��dΙ�M�^�ƤI�̘�ޏu���!�W��e�>�(VT����ǃ���Į��˝�&t,B��Iõ)	1ѕ�-�P�4v���Le_�@S:�y1�6m��D
�Gucw�s3y8�TYR���'x�k���v@R�T�jjͯ�Qp�B�Lfv�w�
�������,S�6*۱16W�u������J���b��\h���d��hc�\�HݦQcb���9*�,�S'�N L��^�PEnR��!�1����Waj4�����֦*�	-WG�P>�Vc�
�
�h'!��5XLH�L�@mI�s
��!��)���$(����ti+6�<{�VJ���I?l��?�.�v����������,Yu�JO�H�_���Kl���pb޿,��lM��N�3	՟��%�Ϳ>u��+.����YFI���PH&�VpA���&��A=a�rL�r�y���%�f��P��Ɯ���ݖ�V��.��Bڬ����W�_�zJ�������v�Ϩ�����U��Te슫RLv�U�ż�ͯҥ�D�i![��2��"��Hc��[l�k���A~B�UW^^�ui�ā�!��b������/A�pt~�ob�`
P�'��������z^t�N��˥�܀"�5��/`ڇc���{*a��^gj
"C��_�5Kf�B2�� ���R	���Y^��Z�0�㼞 �Jj���ټx���9��W�bxy�q��
7{(�`�ː�I�SN�18?�C
��1j\�>��`�i��\qE!�>)�6�l��([@�Y��V�	e��kS�=|	n�;{Z]�2"�8F�hRva$C�p%��mݰ�&^i� f
~r�ˆ�O���n�:i�
�$�K�)!&�r%~@c[Z�L�,	���:wٮDdT3����H)@O^����"��ڵ�+��z8/�M���@��_>��Jۋ-��i� mz��T�W(kb	ϯ��痋����&��8�0_� o߽�~9<�۽�ᗟ>k��4~}6���6�"�a~=�����Wy����s���K3AP{�t���|����e*n�����f��(��̐�-��x�	i�+��.{y�z!T%��ș�nE�T����%R�����+�"�9�����m�$���4��Hzх�SRs�����^�D�y[k(G�>��vY_���h:����u\T�DN]�rɒ�pr��rۍ�}�šurH��s��G�]����G���w��ӹ��ƷHS�0��49�ms����F5�ˀ=�h��$WKتL��X�bZ�*���
>���C �Z��Pۍ��R*t	%~���%
gW��H�?��>1�ހc���/a����Sq*,F���
��h�,%ʶ����V���轴�7$��mUJ��FC�RL��$���ܶ�ǭ#bCf����#!��E��W�䲮(�H$@q����*ꘖ��g��%GM&�Q�r�o�1r��6��‘�A���
���$�����/R<��\ҚOV�+{a�5Z'8XK�loܘ�¤j�q��2�=،T�8GhA�MӺE�;�jG�	y�/�,��hn�\0�M��MF�zs�G�m-���U����Uu�������a�f<
�Ej��2\~���\��,��m�q���U�χ�lWyG�6�ֹz�u�������~��r�4�?`Z��_�օn��J1�}+��h�a�i(�����Rl��t8g�,��澈�z8�	�x[��7�����}���{,˟��<jo�I���V���B��B��R�3���[�ziE}2�F�oh���H`��.����L�D���p�ԉ��>ϼ~�[d��|�BTx��ɟ[���:����h%9��0������͝����x�C(�I����Jv�Sݘ��K7��`�N�38{�T{�"\�f�w�I�z��1��/<}�������W��R%m���yY�3��Nbؚ���V:`crvnQg��$Gu�I���ܮ�[����V^�˹���&9�����9m�8�9 ]|vqÑ8pOq�n�#a����Z��?
�J�n@��NI.��%��b�K@�Fg�F�4�i$`p����h�Tŗ"A�s�캶p%�.B�{+R�&PG(�K�`�L�8���y4����9XO�^�H�J����&v�ZZ�8*�>=%��K!�\k��h�'�=?����ˋ��A���H�i�&@f#��80��W��~FC'�QV1���\��
���~��A�*=D�D.Ȁҵ�2We|d���l-9P$KΔ�qr��B���l��Nb�,#6��I�2�um�eZ�".���m�K(o��OR������6{[��!��uR~�����Ӄ��_�R-6��?�Y�.81`����g�a�eq�'��
�:Z1��s��Rf���,���׺9DI��b\$����.@.�R��C���,\�g/7�x6r!
�~�Ԁ&��-dp�=;��H�(��7�]zY�[Ǿ��|n]�}��;�C�#Iѡ��*$�ܷ�@��eF�ZY��c-�uE�Ey+ҧ�+����	�:Cũ��h0�Wu@`���)_�x�&��x����|]�����o�5y��7�����Cs�f��RA_��[^�E�a!_��]�K
�	R�~1�m���f0��8��`(*��\�.�x�I�<���boj�&�⮋\�{쾱'�rzu����I�D�V�u��K�� 3#.&V�QH�N�-䓰f��
OK+�'�50�~@�CP��Z#3(���J�S��3�b�$�c���˲$HDG��]!�,��Q�oA*`��mcF!v�і�e�Ҫ^�]�B�z&3�Dչ�zU����d͛@3�k�PX#�;�	���ԙ�*��\LI����nʖ
�r��{i�U���F�Y�hT��ʩ�g]��Ȫrɱ;?���ig��0-�G�m��Y��c�l?�C�W]��k�ٕ��n���~�L+x�u[�l���6TwU��'��%��4%Ȕdzd��ݔu�����x�ۏ�lX�]���ц^:�Xn���p����f���R�^$5��>�n�e�g1U~��n�O��y���`���2H���OC���J����Y�K��g�����ή�7F%�e$���T�(,a0�)�I�k�M�y��{B:�Q!��������Jf����0$Dl��Ca	ug*d�Hc&�J(�j�)��� ��w�@�C>���XJ9�Rh�x@יr,�y���j�:Q�^��Y�"�;L�.KAg(��|>����k��EjT�NycG��7U�hWh�*	�)8�M`y���F�h�����+H$W�zHVAΖ�$�m�{&�5�����n���/�q� Z&�{,��
w��	YCʬ�Q��uE�V��K�欬�Pr@�c�����>
��U��1��-�~�2�8��U �::,�|v��Q"��O�ڢ|n�D�����Y�L��6�N�H��3��×��+f��,�<qZϑ<�%v�Hw�d%�A��*���i5hg��G7j_��8x�5u^9Ʉ�bx2�=����a�Y�$�̮�򃹪����e s[���jА�0. �8�~&$���0a����/����<���v�7���s��·�IU��]�?O�cuW�|~�U�>�_�����Β'}i��5�nw��	t��.�\���?�@$�r�L���>�V�ws,^N������(�yYc�#�����8��A��m��w6�]��`��&�a�-w����m�r(G�=#�%��L��0!�B��q�������O��<ÛZ�P����Bq8p��k��cВ#�p?Jp��~��z���`��AE���?_kXL��Ͱ'���\ky��Qn.�W�Y_���Ŷ�rk�{haa�c�X�g�1(�jL�\�_i!ސ~@�f�Z�v�썳�7�^�YN���c�����p�@���W��(��0f�{	�_���=5�wm}k�܌O�╢Hc�����z��J3D��5nm��b�c���<tn)��O�\
*����F���q���囔fyJQ>�+����(6 A�T���:�����i�ă�=S&�����z��>�I�F���<��T�xSi!۔��&��zzxp��V0�V9$R��5�7�)��T�B���X�]W�<S��hP;B���nB q]ٮ!F6SRV�v� �3�u]��{.�ت�W4�*��w][��S��]���2 ���&H���IX�y�?�E�hw���8������4|>����4�z�1�zh�y'߹���7߽���͇]�?��U���5r��2��
���?}������rl��a����g\����9�c�����f�����N�,쇻����'�c/���wu8H<�~p�m�>|�wz:�\-�i�w�>���O�Ǽ���TJ[6� �Ŵ�D��`�Bt��25�N�e㦧��r��)�N�XLQ�����'ɺ,�!�B궥^�9KZ���^ῠ��qU�]��H-4��Vϛ�THZI��y˶�����4Θ�ܙr?^Y�ќџ�bWe��I��z�=*'��$x=�| ��DC��Pz�gk҇����6���<	�C��&f�1p'm	�^�
�A�8fm4�b��%RR�����yX0,�6��Z4����N���e�����c]���� ]KaH���i�+�#��?�cKm(o�2��i�O�RQC$C�)j���.OA:���=NtK4�)�k�;"zjU
~�\�C�;����T�7M4�l*:Y�?��m�c���e�N8@Y���-�82F��
��q��z�Pw���MK�C~1��g��X)��-�X���AU$+��{��
�03ԥ֘�0�@��)r��c�R�\�h�t����6�ipN�v\Q|y�d�Y�^ढ��o\k���v��e.�����I�#�ݝ����z���O_��>��J�{0RN�ۛ�ͧ� �u�OS�ۢ�hP@}}�e���w����J��m�b�_�ח��nk����~���~gy��5�\�f��~�X���d�f���1������^N�Ag�0��|XW�Ñ[ځ�~��L��X(���� m�M����P
���В��Ik%�$+i��yaqA	kk��1�vɓ�WHN�v��&�KRҮ��
��ƿ�[զ�&,j��8ì�3�ZPa�\�E���@ZB�	�r$k������rI(�y�_w�!�3��!��R�)�&-�2Q�F1��E��4�o�è��>F�x����`��n�� �3�F��>�~��B��g�z�?㗱���}mO���\�}��iPc㜎���\2�+�B�Ҟn��0H��&�ɇ���n<�Z�杓Ȉm/t
+�B�t;X7��M
�h
p5	B��ʶ�ezt
��r��h�-����`�S��4�f��m�U�P�u���xݪ*T�H�èj!R��Up�#{�5bG�I~㔕F
�i�<gZ��.�.w�%�_:�}���\�cq���c�dT�rt�N�yA$Nb�"�X�װ�D��
S���W����w�I�B�:��ᖏdȽ���pֆ���[W�u�ݼ�n_���+��a7!�&�~���K0-�an�`o�0���ߝ������j��� A;?,C�NvS�I�tY_���l	���q)���F�i"�����}����%��8ه���.Jn<϶,�}-_�L�a$���C��-ϟ�ױ��l[d]L�d�)���$�Li��z�C���~�n[��u�x���u�K|\CJ�N9�#$�=�`�*��E6ā�����U GJ�\��jtyY	R�����u#�(��#����셎�8�~�aW�m<
�'����r녱W�T��Yb��2�*O��r�c�
�/�3�4Ѯ���B��A�H0��YNQ�J(2^E���џ�YE0�@zq�BSW�qR`��_Ql��(C*�[���-IN�R�*%���1��
j@�&e�P�G�����kҹ���&?�� aU��sE;�77��I��Jh��0 �8r��Q�
��^���UL��1y(X��?�/K)XV������Ji>�A�>#�<�Ƙj3���� jM���O5���
1�rI�x4DWc��/�-�E���v��y$,yՠ��eT3!�X�J�CZ��z$X��J��9��T��*Y�+��k�.T@�L6b��u�vF�.i:�
�lX!��"I�~�k�5�1����r+QtG��wmy�]�o�y|�o���	򪧩�ir�ϋ�;4߬��Pmʻmw�_QԾ��1��wrs[g��2o|�b�v†K�%#>lQ��S&M����/�d�I�U�~W�7q�l�`���O*?�!RU��'���V(&t{��Y�9K_0��܇-���cXOh��ῂ��+iy,�W���˴Š����'4��͘�)l���h-��I�U����L����VĐ�_�ty��XJ盩��z�9@��pT�e��L��2"�l��?��e�;eV�O�F2�P��0��:�X���ӫQ�(9���Kٱr�(������L�4�%���gi.���4��lZ�5��g>J����o��ljC^��Iq��:~g�����4@�}�B���Z�ә�H�Q��uFU2ۑ�U����H�8P��(`�!�̔%ZK�t�S�"�x����9�A�M�%�+� �ۀ��0�錔��x�()���P�U�:�{"8�KK�+������F�)ˢҁu�uwFV�R8�Bm�
z��������O_{�x[ D�a<�0	:�7ΞX�L

K�C-~4aLj>*)������ϒ{i
M���������p�Yr�<Q�R��c	��i�|���[�x����&9iσylƟ/�^�Hii�OC�:��A"�k�|����ծ~��=��4�M���M�/C��~�_�e4��O�+���h��ۛ*�Gy���7����Ͻ�߾˳1{Ft �?����쌋��������o������\��fݽ�b�~��wd�;��D�2�����v�B5��~f�.�T��Ŏ�]u��v�t�u�!V���q'�g=yWg*e��J��q�cw[��@ftF�@����k!�l�{	j�#�����U�G�S��ޑ��u�,��ByN�
���m��O�8��7������
<��V1���<�F�����>M8�4i�[�R����5�)F֠���SLX�HZ|�$���|���$��PK��i>�K�m\UB�'��������U�K�؅Xn�9-���3��ڼ�1ɑ��m �@@۴�Pօo�F59X�)(Bw��CyP�(��2_f~Zy��v
ٟ�O���*fD�K�`J0b`�΂ʌS3��_��l�	7�*�M�`�&���T�`0 2Q(����x{�w;	�1�H�L�=�N�
�RՈ8���*�i�UEIz����y�/�ô5(�5-�qK��'[��3@]��7R�.�!BR�Gd$��:�#C�n:X,��3��4����l�\����쥍����Y~�b^f����/����Wko%���iUh�MIdy�e�&[�1q\f�0�L�M_���~���\�q�l�__���R���O����I���]�<̯R��e�=��}��G'�׼����6��5Nj�:7�!7�
\���~S���	N�zYl꼔�8��o%?+���SݐL��Nn���gˋ�na�����)�We4 �!��U��y
Ze0W�^5^���A��
�^��@$%�>A�"K ��"�`	3b�Ej9���}�B��J�*p�UMv���А��x�U��AWH���1q��:��ݫ�k�mI�O�-�M%_�2��1�nQ`T�'O_�!="j����.�D`I�r8b&1�8�įc��A{7d�=��(D>R�
ƠљΓh���(����0�P-�6F����A��Y[h�Hv����n��RHsqY��Cg���2ʲ�L����h�^~^H!4�I��&w�s���s����o�Q�`����b��4�?�d�kɤ�s��I&o�exS��]u~U

*)��~H�@�~����D�-ʊ���kG�B�h?�l+����T�6��/(���y%�Ss��4�kI���9H��(�Szy_<BH<�<�T1y|ԻH�VI R���

P�nn��8d.,�
%~��3���ҏ���3�	���˛�1���7��d���:�/涛^�˱��f��Vf�����wg��U[��W++�]
��qƶE����_��b%�u���d��4?_��MU��5��k���e��M3+i��X8�_&��������c�Qv��ҝ�U�=%Uȡ��Ċ�8�q�����2��jb�g���
�.����P�\�?��C���ji���SVw8'�rO�p� ���(輄�rAB^Bvy�IM�
H���E2>�\�8��R�|:��366��w��;�l��1����7nV	�QFM�4�=p�P#V�V-�����t5!}TY\)$��n� ��p�W���	�������A����K��V�����=2���������tL�<�,�C�M̦�i�ڰ�
�MK�U�I�%V�]1O�F��z�S
�pY�'Ǣ��@|&qί�ȉm,�F3���*<�@y4�i4)
��ܸU�ʹ����1���*�ᮁY�����SI6 ��o��7�$7>|A|�\��.H=cL�U9��V����Eb`�XBנZ$�G�7P���+�p�C���WF��4%Oٴ�щ|�� �d�K��h�$�<lv��d4<�[�K��?�Z�j���$5D�|T+`��t6�%�?�z
-B���h��4{�P����?�~�)�|��������O��|�?��x�m��YM��'E�"�n�O�r����`t�O�y�o;Kr���R���W��M��=�ž�n�����T��6��_�ذ��l���d���n���]��6�D��y׭�&��P��>��"̧�b�5fϣ-(1L%{k�Ff��ˮ��A:��L�0��(�8>�J�)d�;e�4<YG��@�QI�M2���m�:�:ii)�`�C�P��DW���\�,g	0�n၃��D�ˊ��@�ٸ�i	^�A[��_� J�j�[�r��t�g:�?T�(�IT�7T�B:#���r�B�m*Q�����mԹ�!��0N�#�"�.`��n<�:�T/�b��tѸ,k���&�|⮞���I�$�Q��XN_��V����Nr�"A�@iǕ��^*A�e�`!�,�d<��a�*�$��M]��a	��0s�i9����dc�o���p`���^pZJa���*C�*`գ"�+�a+k,��,�=*ݽ��%��:5��`�Nsҷ�7�1
�����R����L7Tؐ'9ME��n^H(U�F��4��&|2-��P�6�$<_�)����{E���fH�8-ٲJ�%��)I
��W��f�0J��e�.RVQ�����;��ן��1����/�.���������k}s[��ǧ�������~^K�`�d�c0�7�?~�S6����'7n��K~�[�4-M	_Bɨ�7~�c?����;9���s���1�.�u�a�����Cf��G@\��X���)�sf6�`���-���5�0���1�ؒK��L�LK�]�����z6.�^��Yb�oO��$:�Y�ܕ����\�XI݊���l��P�9A.)C��Ԇc�g۵�M)r�h������|�y��R��:!O��6\ZhvO�?
��o���dU�WE��k�)-�����
��`���\9yV�C��^���m$Kv,�t1@��Isw�3M�~z����Aʟ�MSt5tW$2�W�DэWҾ��SŠA���gV-�`���R�,���P�<\�G�R(���z�
�.�N���T�l!9"Mm;L�#��@G_�r�J����ZJ��bAy}�R�[�l%1\�p �� H��h7E�u��"tP�Sm�Қ4W���~�—�ߚ�}��9��7C�\�e�8P�b��e*�+}ISV@����N����	�&�2.����lj:Y,,q�2E���]��T��'�'�dW���F�
���z,e�E#	�	����m��ʳc���\�3���s2Ć�[�+��t��T�m��I^�M�ݟ^>=5��m�H��޸]�?��Oc&��6JA<[?D�m�I�~*�hk�}�O�y��-�&�GXK��w���)��
y5>�J��>t��FO_�<��U��~ͻ��v���Of�/����eB6�����ٝ+�94�_Mqx��Rl6�����;�-��I��_�u�v�k��9���H�4'N�|ϖ��\{+A�*ԶVjA�&I&E�'G<0]�p-�0(c��o+�h���ЇEzQC�bn�8�!g��cS��3��x��i[T0�y0.�%�ܓL�:��ya.dB�g���g���P%�{��Jʊz9
���-�Y��;-V�X���?H��165�vú��K��;������ L�y>W�dvBW���f����Yҹ`y�S��

G�"�IM�b-1�fFF����l<)Y�n	4�y�q�Z�+�G�t̰?��0I�.__.��i+�i0#��A�e�|�ZZ�RZH"œ7�8ɣ��C\�k�d�2��i�Ta�s_�t���*1O����P]|�ߓ ބ��}Gp*���'nV���qG�{�I�2���";3�5�A����I�OZ3{����̸
��*;��0AjC�T
�T^���y�T��!�a�W8�@Re�K�
�"j؏����1E>�Dr��%וk��L����*#5pU8*��%�f�q��]�/��R��S
MV�W��gw����<�R�n”�˼����a����r��T<�f��P%-ֲ�nk?�w�,��覥V��]�=养�������<�'L[�M1��F� .#�6e�n��u�z��U(��0x�}�mr��Su�sC]HG����Œ6��%fu���
?Zp��~3�ܔy)U�&��z��!sӬ��ۑ3S i�F����l���|�$"�<(O�g}�k	"X�wu��\�J�{ �PMw#�b�]��ǐ0�A��F��y�]��x1]�
:f��!��0�o"��
3�z#/e�6+��y�/n�H1[y
����%���4?�T)1�����Knf��o�ѰQ��\��p�|�eUH��s(F,&u�,I �6_�s���
U���9 �/���UE�*L*�<=�VTL�ݮ1M�di;��$0�
V�_�"bJ�l�^����XמGN�7��i�����$u@��3)y�:qgEN�@�;���%�
|�0�*'XP)� ����h�٬Q]�!,N��=RC�"���G+\f
G���5�Ӕ����H~Ħv�[1�"��.hHazX����G���3zC��P��i�A�Z��a���٧�B�K���@$e-f��ߢ�X�|>I�"��/���f�2�h�p�5d�/Vjfu�r>C����_��_w�fy9I��"��o����w-�x?��vn>\�U2UT�r>�r��VL��"��2�h덋K��E/�$Ly�˦�}�$�I�
Y�r��6�e��翞;�F���4X�~Y����.c�~έ$=3Q���/=(-�vB�/��([�	㿕����ц(�"MK3�
^��:$%�1$�I��]���$]?~e�u ܠB'	�i��{�.�	wXz���!P���<a`v�JፀIX�������S�.��7��A��$�(�ēW{���UGB����8ŕ7��������T�r�@��0�Ш���]>��_�=�85�b�x)���vx�!z���IxbK[$Uq�w1!���0C���9�P�0�1�)){91"�[1�KE!�_���O�Dj�������uH�H�^CSm`��3�!��6��sq��f>�չK�U��*Н��E�Y���L2�N��,�]%2�����P{g�����b�H�‚�yCJ��D
�L,�X��N�G�-��.���q�����@]PE�n�PP�?��ff������y�0I���X|�[d��ޙ��%�8�M#�R*�K�U��
'�� ϡy�)�u0�H�`��	�eҴʽ�|BQ�T��S�Ά|=�Ňr}�������Ab�6�:?����]#-n���>�.�qyz���C�������l��;|�����s�b
	��?�H[���*�}��Ͽd=��fP��� ��:���be���6�9��Ycլ?����g�� ����G��n^A�iv/fSڏ�3�uC]F<��ڟ$�J����`�P^*�Q���e�esh]��Ws�Dֱ�f-+�-	��S����cR���^�u��:ðu���pA�F ��3��x��43�dX@bx�%I(6]�)����0p�&�~����4���	(~u���##&Eҳ��.��#O_���	0�ޮoy�P�wy齓
�l���RTB*�/*/W`In��U��hش�� ��P�++�Z'ܚ�[�BOG��Vj�W��3��@�f�Y�]��T���� �I�Y���Q���f���i1�9���J��b"�V}+΅�|���Qz��H"�R*�����		���jJu�q�m�T^�#-'�o���]��p��hh�D؂�ew"�:	wA�,�Ɓ��*�R�_Ѹ�j����^8e�QGW;�îj��V��7��r���z�x�(��*�[�?W9�r���
���Pb�2M����pT*jI����ڇد�����4�O���q9L��%�f����W���qKV��i��N����K^Zy��>y�>o�rw3����o߇/�����1��8��7x�!��2v~>�"��p�\���2�{����ܻ{(�e�\�s�ٖ7-l�0��%�i*J��uf��G�MN���\M+%tL=`�����hV˟�#N�pM>�Yb�
[M8Ϳ>S>�qr�
L���K�cy���^4��6T�`�����q���n(���;@9O~?(
�.5�y���.�2��\V�+�@�3˯N�F�#� ?t���9�D8z4����3�;M���{���w���7Rj�>_�N�
r�F�r�Y��yL�J��O�/1%��t�=�.�{��.]�%�s����n��a�a2�2dMiI����-�xD���&��+  �˿���arw�s�l]��1`Q��h�uuۦ�_������$�
��:��6��r�U���� �
�|fQ�/PCef����6�WK(�!�)8ß��B�WY"aB�멷xT�W��lހ�V�ӍUi=��Wp)V�pP�LU�:�2�؞���j%�o�tNR�.@Ơ�U�P�A�:kW�>�G>��GX~����|%ȇ�
� @U�iU��B�DK���&eݔ�b�|���2
f"I$R���tE;P��—D�Hf���!bg�V�����ꬋ�yZ^��:Ie���.�<۔X
��J�^�4a{�pSf��s���t��XT����[a]�]�Gw��Q2�m����(��{�ϓ��b�g���MWt5�Vϓ4Hnk�C�!�ִ�}ԙ�X��:�yߗ�j�襁1�}���
�[Wp9+YΗ���c8������"f��mUl�\j�D�:�׾n�n��mѢ����@~��(�|5pߪ�֡�����9�%��k&C���L�DXr7en�qCF�H9'��������w4���3L�&:QZ\ǀmܨ�9C��r/�������:!�<r�Y��M�˦�����$O\�pM���*���@s.m�����-?�3�ZpEꎘ$`�n�P��,%jH%~~���h��o����	5n����c%gc*�U��@�+�R|��K�e��o�j��]N�.��V	��_����m\��2hK	EY��=+�޺����_����AqY�,�$��$?���f5�Wʫ
�PԎI�:9¡n�Q"{�̃N����y�
PPeTb'A��V��PF�Ʃ+/)�.y.	y��<o唢����Y���ӏo%�T���a�����K]����@>,V��t���^-��f�a}��T
��ST�-�(�n�:��(G��*�]�ת�4�}2;s߄���6!���7k��f�Y�9�e���������j�<�.eP��V�N���q����#$H��1���Oө�A�fs��͐o�*ǂ0�W~��i��\����?!ra ��p1ҁJ�l[?���~h�/�}�4���])��x���~��$�OHu\���bk����B���n9� �Z�qO�g�QV-�r����ӆ�J�`��9_��[8?/����q��B`V��4@�N��!{!f���0��e����єyYHo�|=ɵ)����XWN�?�J�R��x|�C5N��H�8
i��w���S�ioFġ��ɕ��s:����0�T1\"�D�B<&73Ύ�₠�(�m荆���1.�k���xE
�)��I�ö��ӫVɵψ	�Z�k�䶡����
�Y2d�2#��e���di�!3�/�~Ec`3�JqE�H�=������_�D�,�mJCLn�.O���	�U�P�Q.X�_e�NO�
sT��LQ}�@�9�b�g��P�m9(!9̩n[��J'�FI	:eא7�2�[���V
fAQK��D����^�5*���YG�toMׂ�u�<�o�t�M�E�as�)�*5�:���Q(��R�M���'�eC��Lm�e���U��<vĴ!�͗%LK�x?����v�����˱�n�4�ܕ�{���\���¬����������N�N9W��=h�.ܻ*��P��|
�y�rX��$�ƿ�N>��	�K.KJE���S�?=KEP�k���P_��6V�1o]��u,��v�/�m�6�r�����k
�q�PTÒ�k�y�
�T�;��̦�W��j��Iʱ��Zb����k_Ʃ���gt��j۴���U�-ĩBT�.xG�������d�*L�m��>�.�U��wi�&4
�����翓D͓B4`I
�4��*Ж�P)E�"o�Di�X�ܫƫ���T��O��
Q�yZ%��B�,I"�8��tVO�
J
C��'�N�y7ٻ��I�9گP뜷>	�K��K�_�-��5���H���V��ԧF��OJ�&.���Z��
�J�/P�¢3�Օr�ᝤ��>r�%�U�Be<Z��*E!�1�x��\�[���Ñ��:W ���H�4ʼ�Q|�tjlj�w�;��@�3�^$.�����#r�U�>$�2�8��)��P�Cp��&�J��ɃQ��*��
]o�x,JNRh�Y��0f���C-�#dyR:��[�Ӌ���nQ�C�L�}
8Y�l�0\�ޭ�y���S=V�f�ᛯ_�'4��*��g�ձ�t�%�Oc�K�W�q4�7���B֏��~.���]r�r��w*� |^�r��>�_=J���aw��j>��x!*�U���څ�-v��g�@w�K����~��`[�77y��y���'P��D4<:_��ձ5QN�T(9�#m�bA�Ă��X�����&�]��wຉ�s��M��Er�9i�)i�y3��p�E���3�2$C�����yí%�͠nU5��j���{��umw��r�$7P����OH�	W��ɂ79K�΅"!��?	�lj��iqR���g�۰["�0���ި�*iAu7���S���5�!7�aO�'�mC��-3�Pf���HUF�@��48�J|�VU�3*+`���`�m4I�j��Zi�ßlb4z.a&� }�C��C��
�W2���Rte����2�I�[�t�NC�y-K��N�(AU`�$H!S���"�D5O�Ou�K}k�c�_邎�;:�8�ṭ����1���g����~�\>Bܶ.�l���\�b�m�4�<p�V�`��![��Gi[��l!i�5x��0�,0\LN�Y���+!,��pސ�D��.3��Nj�b7��u�6x�@�qP�����Qb1p��_�{h�����sv�؛z��]�|Ƨ���g�p�&5Q����ܔp�{16��z9�Q�Nn~�%�0������U8���>J
��#����/'tQ�	r���J��r�8�!�q�M�I�Z>�?�Be�xh��e����W�D"��C?M_{XD�~�Bo�_:�����X5Ŷ���?�yف �a%�ss`81a:�Q�q��2;r���Ġ��A��^�y)�@ĵ�$}�+�J�ߨ&ÀX�+��X[x9�90�S���?�p�����p�RLkVY��$C̓�*z�T���*N���B� ��b��U�dV��4��G ԰���'!`#�uW����p��r�Г2�P�#�fRk:�{*ChT��Ȕ�$O�h�ι�����'ԫH�uY��$��E����
���h�iqӖE�.z��e��:��C���B��L�@0
E�!�Y����[3L�|�_���m���xu,G:��Q�C8]�?W�H��{��1&O�`m�����pa�T��ɾ��R櫂�r~U�
�3a9�&!�z:rr�3Hm����	J����#9C%�W��دc�1��
��h)?�~Z(�x���:qW�VE�
6,=jF�ZL��
5DP&�ZJ3SV�
�Vo�<<A������b�p�>��;?�㧃\��n�Q�e���3@�M�����ʮ���K̩��L�׺�6������t����Y�}��_�۩��2M#iD�� @ �@�XcQd�`�����r�,B�!.I�p!�;��qH�q":�`�	I13��ܙ��}}�������e�{�9�����~�S�'�&��������%�)g*{��:/��=L��"�.���(����m>߯4:��)؛Q�L���ƍ�t6�̦]��4�~�N�8O�ӟg���;e��}QS{3j�����R��-������ ���+����Ok����t��T��D3'�n��E�e1�A�x� �~�a"��Rnj�6VgMK�JO�tX�v��3h���4��F����6�Z�'�FJ\�E�r9������7	]F�,O�p�ٍ:Y:�n�+�HBWr�w��1����s��"9��N�#Ξ�X�#���+���	P.�QDV���`8c\8����t�]B>ų-t�1���a�۾G���� ][
�[�	A[/���z�+�0l��Odv�*�	�1���ғ{��W�f��(����D��9�zQz-�{�o�A���S��U�4�L�s����LN�X�R��ǝ�F�<���ahWo����.� h%
LA�D\4��I�\`rQ�eH��:�yj�6��I�
ZJ�#$��b:��TX3�c��!S��oJq����ԏD��4q��3���Gdۙu� N{&��Y��ެp��\��G۟_��S�/��}h��΁�{l�ٴЯlv̖�qE{ �)��f�/S3�sH@2�ʡGYE�f0
��Anu�"�K�n
tϮ����R��(q�kF�	1"	��+����jw��+5�}C����h���Iy�ZJ�22�ݵY��m�db��cیv���a��Tr��+�SR����
��u�F�4cuP����
���W�.�q^B�����B�>�D܀�ǿ�o�)��<KS��ȵ�b��r�M���u�mZ���8Z�&��ټh6��X$5�A�3Q|�?3���V
�c�A�¯ CgVR	��pB�2}*g���9��L�H�Ӟ���4p��+�h��&����**�_�L^��B��T�����c�
Q�~��(�T�lJ������
�1��!��<7�tL�s�V/s��R?�С����M��e-1�e�k��|�N�?��AJ�֠f{�AY�w��Ā��M�'+�2%a�C��d��XA��w/ Pa�f^x��#�!��ndk�!"C��S�H��cA�*
s�2��RH�l�ٸ�%�m�t��k��L}S�lc��<U��X���e�2�1^F�,��3xB�=ܶ�{�=�k��-@jC��$kY���Y��S{��k3��v��{S8	�J��(��K�.fyD�������z����T�D�c�I�
��LC��~�g+G�R�8�3��1F[+��R�7�l���|�:��5�?�<�Ƣ���ѩ�����m�e����Y��S7je��x�/�"S�Mw�Z���9�	�%�����V��'P�ǩ�"׀��j��eД�����7S�Ea.ԃAE
$�Z<��l��M*A�-f%kR��7:Ap�췘Bc2�yk�X�
%ڰ��ܶ�ƴ�wBF	;��ft�-*�6�{�9��i�����t1C>��)m`���6��@�ֱw�H)X�w�x��0�����R^��,@�G��P���X��:�&�7��v�L��I��EJma�(�ԥ����s#���EŚ���x�f��O�|�d�@�}��sJ�τ:��2ƅ0�\����֔��g����Y���\�թ�~��(2�-=�jpꅘ-0% 5�e�H��SFi�&�X(�E��A����Q���H���h�琝I��	;�2/)h�0,�-�g`1c X�N����*x2�I
0��i!O+�p���w.��/L�����V`���g鄇�,8ߩ�I�LYm��?���4W'~ۻ�6� �����f`��]�iAD�t��>E4��GO?�d��I��Q����m7�k#�Vj�V��wV���m�ӡ�}	���U{K��h���!�N/�q�^8�C�}�l�����aݻ�˖*�� 3�U���՚v��_x�>8�C6I�y�����<۟=N�Ugq	7�FL<>�FC��!1T���|t�+�Afi��Ĭ�i/�b�<�ٳ�v�Q��AW���,����Z���c$$-�ke$I'�H�#���"���{:�|��ya7ݰi�ʇ�!����Q꽙]��b�V9�#UV̎��i2�0�{qQTU���t�YT���cc�X\�x%�o
r��3p���ei1�����9H���RWr�����٨5�����aX�ݤ#a�uK�s�`��N�k8X	�S�c���!8��;���f)kɊ�6�^(qc�G/�
����mS�Fr%�P0	u0faϠ�(��ڃ Vo����
@6(�b9n[��^����<1t�D!��H�vb.\�:�8�w�(�,����;6���7$VsǨ�0�?�e�Qٱx��ίh�S�N����P� �Y�#N�l!6PHoAA�`�z`��8
t�!' �Ǝ���h"��x�������=���䳋��a�d/��Ri�7��o:$��7+Z�խ�rM��~��ι���#�lJ��OtF/�����܏��t;��#��ym\:���K}�/����B]�j����n��e�Ǔ�R658M9/���QlМ�ێjʢ?kU?�GSZmnJj_}�WTYZ�>+Ʀζ�jS�N���&�a�_2B��h�`�L遬{̵1�Mƺ��1�z>��	��
=C��K	"����5�ʏ��X�#=��TWGFh[�f5�7��e�t��<�W�*�m��
���*UQ�7mZ�°,���B����)/ӳY�R�o��́S���^q�
�q��{$6ژ6���	�"t*PF��6�n����M�S�j��%,��/	Kh�6�'�+;��Ja�*��� O�NJ�5fh�h�� ș�H�����b'��G@�οl��#�`ˈA��Q��}>���C�&:���(��Nz�Y.;�m2]b��(:2��>��P�&MB�e�L	��Ae�a�8r��,�փ�X�ܓBZ˼M�q�>��
�y���m�{���r��/]U�+�!�G��r�<�:T�(Nz��\���9�hF�P�C_L�Т��4�O�܉2Jdĥ�3;�
'���đ�W�Od3;�
�W�[1b�������y���XB�N��m g��LR@�6��*�ZWvX���2ȌE�X�k-��0Uk�h)Z�J�3��\�J�mT�n��oo7��ck�<V�Ey4���޶����4�k=������ �2��&�J��"]v��vt�`�]6ݝ
���6=�Fr\�NϮ�C:�[Nb�Mwڝm|�CH��k�M�
<���"ӉFJ��ȃ5�ht7�pQ�c޴B	��(n��"Q)L<$�ة�?�J�Q��j��ɐ`�@Bg�P��4�� ��,ERʽh%TH�f��h*��l��Ҥ@25µ5��H�9�B�e�Q

״��Q@�g�fۀ"p����|��3ְťW���A0p)!2g�b�\qp�^�su);.�a�U����V �2Ӌ*��)���=�+ԡ����S1��"��r�ʊ�X�=%i�@�v��ehٗ�AQ��@�����8���vj<W]-�6t�I!���O[vzJF����yd€4'�L`H�w�`"CfX�*�aK�3B;�H�Pg�b�H�椗����N9շh
PRFCR\��a�1/��\ z��cl�J�-'����fq29��=u\�sg!�,Oe�9��+Vn���m)C�9oh�ב�y1���X�!!O�I
���h��XG�F��a� �1��x��.r�k�	ݎ�B������7�q�@%bC��/+����F�ku0�dg�1��o��֦z��IngS:�3*v��5���Uޭm�מB��H�W@Wgi/��;�x��5���#(Q3��&��8.������rC_��D�V��K��1�7�K��*��v��A��R�S9�G.�6�2Q:K(�P*+���PO��H3n�8�F��ޮ��v'�d�bѢ��R��F=��NP��PѴL�m�1h�Ow8#��l_H�TWr����_L(�j/6h�D��P�����C(���J

�t��hUT	�|j6��?�ۤ��j�|����t��S�~H�e����
5��pE��s3O��k�)����,p
�0H��-��"��׭2��k&Q#�Ӂ��Vq-��@�n��U�/٩��",���6�6��~)#��X���W�̱Ĝ���P5(5&�qg��@�D�E�u'��=��#|	i�w��$��ېA���B���\�!JP!o��i���e%�����DIlS*� y$	BT
C%��N�;�Wd�2��"LU�<#�dc!��ύz"tˈ7��(�*�9�v=\��W� Ywf��-Vpj,V�7�)��+�)�
p4��C��`i�C�
Qz��
LŰ��礔��[b�{��/�1�I�yK�V�I��.�O�2Z6�`����!/\:����K��C��/��P�U��<_���ť��q;D��ʅl�DN����G�������fSL��ͨ�Њ��H���'3���RS$�z6=��nKaib:u}�(*�2/�<�C������F�uQB1���4v� �FC�N��	��6�6����M&����<�����+����c��c�V��A��x�`\f��F�`�="l�6�R�.q=f����b������Ѥ[��j��s���B|Aڛ�;B[�,�/xK
�Y������G��s
��ط��(	
VwA��ɪx��B�����	˺�^t�w���V�U��`��_������A�J��7���Pi_�u�y��8Ч��(k>�w�����O늩�#^��Ԕ���y��z��sw�T�����f����T&�B�
A.��� 4�L�.��'$H��hf��{��C~PH3�ܙ�2�-d��Y,�o5�%	���Oi�fe�EB��6�Tc��r5��c�V�Ic�&p����T\�(.�L��H�� �c�d���KDA�!�f/��HdîDg�+�)��9)�F�I�ci_z�Ŋr��<�gf�	��7#�u�����)�	K�Sm�'���igܖ��!��W3G�j;��${�`���n�qIA<�gzؚ��Ҝ/��%}fz}���ݱ��獎�5~�ƃ�R�^�d����*�s{9�[5K�w�⩿l!�G�v�����*?��$;�'���x^ϒé����ޮGOy�y������*_��:�/L�f=m�u�^n�:k�W~�R*��$��$-洣�
RQP�-������ƭ
�o&�����uB�F��r�g�x����ǕJ�B���@��Urzo�֟��?>�Xk�`.DQ;���׵�,���&��Jy��)��)g��Frn;ь��9��.C,�I�t�2y+���� +qvfM����2���e��!�`�-�~��g���c"�����Ͳ�=���ؐ��YVs'�̍vE)��ٔ(z��.�!��eNƃkOe��R�a^�J0
�;��)��M�<�i5�}�i�h�b��4(E ���_*pa/b+�ЇfC'��Q��2UdX0LmZGu>�xET�T�/(�*cmi�XQ�b�-Q�d{��b�LFPS�G�2H8�S��4�
���b�5��(��@.C�
#�Ѫ�*kc$%��KaE��k��^��݇D��E�O��j���4�k�ʤ�9�N�>}|��`|�� �ZԱ˴�5��D��[�pv�MK���"�"�nT�!�ݟQ�ji��-]��&eTN�
��ܽ�w7H&��gq?�Uy���L��^�h��u�Κd��B�C��Z/�N���C�����/�^����z3@Ľ�Ζn���l��|��{�Qe{����J����>3��%�Eq�7=\TNj����L��R7ê�-:&�B(ׅ�HF�K%bo�C"^]�ߐh'������8!��{6m��g.j�L�9,d��-3*9ݦ��}�2�tPWe2c�������}�l�	��v��Y�!�$�GiI����eg���v���m�^cӚ��*.�iQ�Ev���](�4K�3�*]I,��^�d!� *����RP+������������u��/�a��2*ecw(��D��;Af�D��z�m	"/�������C]�.Jr�J�j0�y�?(q�'	��+�@04�w�S��C6�L�D+�Ky,���h�@$J���Q[��v"8��ur��E,^L����~<�F�T�������H��1��^
��ư�f����9Q�g�nZ���&�y=dC胨�D�?���Y��"�E��@3��#���VW��$�7T=@�����n;w�Ig6�Ņ�N�d���Q��{2��ymۤ�&׏lS�f�1�A��Xҟ6�ۮ���2���h��P�]�	�VIRe��rz<���'�&��N�^��[�'=�]?���،�!iFE���UtF��*-��~r��bۈj�2�
��{g�zx~%z��v	~��B��a>߳�G�����>�
X=^�UY{0�I�,=���k崬�{s�f(xv�
��~��N[���I��W��w��$����)� 5��`��1=���Љ�y/	w���ߣ���bX>��jMdXێAT6��u�(�eWT]�Q��6^��ʹS��&���[�.f)��	���ZUp{B۱�QϦ��x7Pȥ���r����6�e�	!9�ʔ!����#$�h���@�Z��"3w����[�pl�g�v/Z��I��:#��An<J�L ���ϻ��Jb����|A���|'���4|[ПI�H��,�a��yY�����}��"5�?�~�sd�&�C�LcA>
�D扢���0�����@�fF�Z���Ь���2��[Zv��@��*�������[���a��vE�
��@2(�]��+���l8���aYh�ڝ����T�-[Y43�84��G�d^�Ea/k������ˍ��do*2Ց{{~��*kv�?F�?��\B
X�+��!��~>3#$�$?�BH�C��+��Umηh�̴��"������n\��x������K54�<���ق�����gv�;z�T���z����I<�����������^s=��:�6��o�F�gVU�|J�a���~�VG]�w���h������^�fS��+������du�t�����f���I&�*�9%�4*ņm�<�v�k�o!P��*�#j$�Cb��}�6����;����od���E+�B���v0
�ح�2,o@?�^���6*�H�+��m:-P�y"P�)J��p��|8B��9R)&����.���+�U�S%@W�a���Aa��nu�>VBUah+��p!r���r5��
1ޙ0h&��H�<;�@8D��Ԙ*�jOG��@u���E�a+P�wJ�!=�4e�G��ȉZ��1�n���J1�C��p�WQ/Ln�K�~�GD�]���c{%kl�n�3sf'q� �s\U�2
�;�C��$p���u"�͸5%��3pȤW38v��.�o3�L�?艦8kd �L��(d`9g���k�)(k��Kю��E���A�u-�7!�Һjzv�M��
�O� ��צ�u{
U�E�7��8O��c�̶�׎��"JǵCw~�xMf~����K�Ҙ�/�tN	R�J�%zlz�&]T9�/q7P^2>\F�}��D�[�q�CX��t�U�Q6�{m~��&�4���brPN����g��EY���
�.��?rl��o��i��FZק�8S5���8:i��KƸ�ǍA�h�c�O����n��c5^k�W�f��<�v���3Ϸ�/-�I���mҶ�jC�4j�M'Q���8��__<~|R�
߁S	\1Ş<�,�Y/�^ܹ'V6S��o�\���jX�2Kyj�
m8*E,'��E,*�i�ل���S�xJ2�Y���)�}�qڷT,P�A��{�JO(�洼��3�3t�+I1<�[s�y���)$��D�S�h�l6�4$�c'K������$�A�FL�C�����{x�
'd'D'm��lv��&�@����L��j�m4mZ99r�W�t��t�g9,�G
h#I��FL󈮄�%+br1�Ӊ�%'e�
��8l4�M�"�N���Ⱦ�^vG>�~��^�D�ǻ�}PwB��K�v�1���k��:���\�?���m�'�dn��|\�G6��p*�XDh��
�,rli�
^ �Y�q� �@�tBT*E��Rܱ�">�p1]�m�i9����"�t�V��m�VH8'vL�
�J_[��ƲNN��
�\'��RQ�}r�p˕�7�T��d�b�yP%����Obʰt����6*�"Y.5=�Ɍ֖m[�j&J���w�M<��Ze�vc]�҉�؄���
��
�8�~pu��m�d�X�+�?y��/�*M�Wݠa�X@~��ƥI�Lu�psv9�YA�eF�S�[(�˱]��Q�č�x��
�a�_q�ȷ��o�qx}���$�ᴏ�
n'�)������c���8�.6�aq��G����=�c��;�ЍU�/������(�b��-7\�X:^~)%��l:�������IŇ�c�]�y�	�}�qv������<�^�wT�"JI$}��<.,nq��e�g��*R��^��vpM������s�p���-:�2E�}��zh�)���(:�+�9KBn�A�R2:�ˌ��ަ�_�}qL���n���ll.�	�q�Hh&�>�f�X�q%	aEGAo2X�e����8�D$BW�\:F��E_�'xA��2Bdzf��]���p}���.'B��b��qҫ�=�Dj��!�˥��q���l61�.���Dmǿ	I�w;��<	p�}r��yf<H�)�|p%\b��H���5ԃI��=\id9ff�xa�p#w�pt�֎�@i�A8�yLI2݇A��c(4�0�Tp4.���b.�X{b)�@C*��8��Ȃ��2�{D���̸Y�9~�N0e��@҃"��n�Bp�x�׍E�^E@��q
���x�#Z$�7��"����2�>�R՟n��yl�fU���kۋ�d:�]n�{���[��:.��xZ�=2lwvj����,� ٌ���l�6����fH�~�g1	��]�'��=�T�Ư�x�Ƌ"��/uk+��##֊�r
y�uQI�4`�����(����o��o�����>�n{ʅ鎨j��
���7���7��7��ڭ������>�ut����;u�VA,�5�]o���̻~��|�o[�
�6�1�L.:_�ȣ��o|�����հbO��9F;AW��#�����ّAP�'?yO2�z� 1���׽���I�h�q��5�-��5޻pP|�U�`z�(���@�+�ݚn(C����q����w��L}�RbI宣���`F�P��H.	�$/�jE7�-�fӈ��gZG,p,��q���c� }�+�$JZ{Ӎw(�������fv�(O0��47�B���5B��F�[m�+����P�Zv�JB�f�U�J���Dl�̥�u/��P��+u@��s�L����0�d���&]��'pi,z�0���/8!#�`�p�x	��8��� N����.����xg��q�P���aJ%a�����h�V���#ۣ'����8A��9K�<�ݲ�G�S:����t	}�B�A�:܀�L�=�]�l�Gd����yNۀ� ��|�Vg�F��ݎPVA+t�^\ͫr1�mNW�hu�L�c�w���8����g��
�=������eQ����Ѭ�J���z��5����e�ٺh�(�Q�C��p���9�^�Z��LOfvU7Ϟw6�eC�5+Y,NG�G�L�闾�
��-�G���o��YY�V�Z���lRL��hZ̀�_�?��P6�so��|�7lLGׄ*M��ϧC7|������#g�K�г썢�(/2�Gɋ�#�{��?��7�᳟x�}��kZ�x��b0Uy�[ܵP{�Z�I�V��
��:�h�@^�E)�|:�<U�Mo�V�N����
��Hxy�3T\P��,K�tX���iŖ��
�g�A�Hw��]�Eo@%AG=��&s?@E4h)x��%��I����'�m�.P����h-$�R�f�S��CZ��@���P�ej���C�90�<h���D�WB�e?�����p�$Z~�t�u��#_.&�WB3��Mai�U%,���c5��U*�<�;P��ю�v��]�0D�K?��&�7�t�#�r x6���g�S��9�U+�=�\b���[ZI�î�f��̊�Fh*0t�爛����1
g&�bIj�(s
(�h�b3�q��3���y��~R$�<�Džndh�u���]����,<��Kf��^�Cd�%
��vp{�&����J
�7�t��h۲Q�P +���Հ\xnT�֧��3��S.�yu��5�u�����(�Y��k���C��U5�M���1j�NO��b��A�������Ӭ���w}�w���c/�ޟN�,qJpm��)&����K�.��P���O~��N��K��~��UT�u��no�̽��|��_�%?��^����[�=Y���H�[=�c�0��(�d�|�7?�Mo�ƺko߻�f�Y�w'9{;%�(���4=�{��՞����]c�~�ᬊ�3Zsܶ��[:pA�fv��5(d�!�z�ӡe��t�XWΣ)QTz�����#4������5�8���%���5CGu�脙!Ns`V=��D9�gE�Hx��48mL5&Ev.�h���2J[�sɅ���që��}6µpGo���U�c
棡+%��.��l&a�_V�,r--`n��"n��2�������f�,k
sۋ#@��:\�0�U��Q�T�k����G`S�?���B�D2i�IJI�G{��P�^��D
�Z\3eJ��+v0�ix��K���+hߨH8S�t\W����O9'Np�$A��c�8�8��|*�B��R�(�hj&+`x�gYT@��]`<q�̯i%Eö�����T㲷�^/�ЌK��x6�C{4>��R^�;�5<a���8��\��:��*�>)q�GԍQ�%����GE{J+O7Edž�'��N���
\��i6m�o�M���ݜ�D�0��z�;�ı'l�_f{`�b�w��'j��N1ӘS��{sY�M�l�|�7|����3O>9�[`�Re��Moy�f���'Oљr�u�  v#����g������N��ūN c
Y�������R��A
�]'��H�]�o������������U9��hM$�i�s?���}��>�f".�qNZ��	���J�;<����	3�d#���&m,=aU�6������]B0b:s�I{���Y�-hW��H(�s�b�x{j���`�X*�Z�yNqv�`k" ���J�H�������}�>��)r;�g�eF�$�y�rF��q�Qn~�踪��Laǁ��l�ݽ����E:>�0�aZ�����_������T@Z���O��/����?;��	��K���1��з�߼N���˰��r�^�2���
���Ug�$뻏�8�N�Sp<�{/���('"�~g����'�*<0��D2.ǤH��f�c��U0a�[+=sI�����̰c:��.�B�=��V��"&?3%Tre���H�5pybȃ.��bG�	WBg������4p�`�j�����V��a�M���T��4%�/E@#���z
�u��%�v�8�v�bƮ7u�n�h�a�`��)�p�;5"�I���Z�M�>����,���,W	�AA�6e�?��!��`�HU��L	Mo��M�T
w���v	@��L���m��5���i��Y^۟|���@�,��̮6M��*ݛ6w�͝�1O	u��E?�U�?�{���qZ���f�_Ϳ�[����g��?�G�n�O��hR������~�ɧ_����_��Y�U��_?�����q㬫緎1l�vMi��	�r��_�?�7��G~�������Q�U�͞���7�_��#��p?G�+���b��%�T��_XS���^RZ�4��@��b�B�{�l@���s^�WT鴠��N��UjV��x¨�� �[�?u-j�o�iS;M�ݲ�J����Q���uUl�.Y䐖E� ��7|�W}�2X*�+��0���[����}��3x&�7�SyP�餢������7��+s�� ������]��X
aQ[a���@��*��;������To�_�e�����7o��<(W6���AZ���wp��O<���(�8�����������S�J��`��Q��(�����������˚��uO>��?��r�Z����'6i�i���o,z'|�,�j�d�&���N��(d��ʳ�U�Y1D?�7]��e�����S؜,�!�}F0$�
���,������C�
��+�}�J��Tҝr��BCcEm"G6���=��sb8TU9-eFs'��{t0�������ul��'�)�OiG�
��҂���iQ�Ǐ�X��NA��&t?gk��ܷ�o5�Q]��F���Z��h�f\��ғ)N�U�T)C{@NVM4tT�����`��q���-`�IQ:C���B��|I��trm?��b+�d
�yz8��5F���o~�׼��l�]�܌����������|��9?}�ً��#�?z�ч�?t�ƣ7o��azn����s����#�|��O}xvxЯF*�^���z�C�`{wٟn�r��'?><>9>>�;�q�����?������=����jkǧ?�+a�f�|��ދ/<��/�D�EA$
H�H���{�h8��=]�6�d���R͋�r̼��(-sCY:���ܴxi��3Ƣ����42	�6ė̲u��mNgI�	-B5�	�B�����AQ���4���X}��|�;���m|9oNk�ٯ|��gn�p���N��ӠzHx�
�a����?�����&��>�5�~��瞹{z�2�xT&��%v_�Y�����<���"3���c��~��w4��dF(8I������������d�r������=�[���ņ7���jѦ�N��������+~Q?���TJ}�w>�E�&��"Ԡ���č�܃�p�I/���`�Zf���f�>���'�*	i�M;ud�p�<�6 ;Ҍ��<��"���'(<WZ�c�Qf�L�B�ZdA:�]�Gd���`x�4�O)�����"#�6NN�M��AF�.��Zd����X+Ύlg�c$�	
�3>b�[�q���_����0�c
�v�G�M:��
~�m�.�dZ�/
1th�E��Vi3n��2����̢ΘU�gy��}C�g���|��U�T�4�֭�Ts���� ����^��M�(�'c��Z;^����k��Ɓom��j\�t�6���J�r%��yS�,����7NN./��o}����_����̋w��������)�{l��� �SJ��4��úo^��o����<T��?����v;����r�»�]�N,룰��q�Xd‘����рJ��;ǀ`�z�����f�D��z�m�K���>�hz���4�+z�1;���=��(�٪���3��<�mG�&6��ˆμ�t;ٟ�IM�Z��&�5(_������f1a���	˽�?2Г�㛇�:�`��!Ma�x��;��&x��-�Yc�g��"{��C���OdT'ꝇ!���Lg4�ONn>t+����(�W��"%BIb$ͻ����#=ԃ��v}����SaX�ʠG�.��}tp@_��v�=�,��V��m�a�CkqC<�.��<9���I
H�X��A�!E[��!�A�v�V!|鼌�4/^~��D�U:��a8��O4�":�y�*z�T��l+��4x[����}��t��\
CO�
���ED��̹�&2�.ش�ă�s�����\І�q>B����yi7%2jQ�Ӫ?_#-
5�̓�o:���Hѩ=�"�
�|ey&˒�#D�ʎaIa#��-���nZ}8M�)ݹ���lڮM�l�`]?ꍥ4�[�Ug�c��ѼD��:����Ct�ʦUz2we
��M�6����̹�HK5<X�u?-f��:���7�����}�����?����~:m�d��7��]�gY�P�uzz1,-e0���5���T-de�l�����~�<���?�q��/��v��ӏ��_��[���WE��\¢1��?��@xy��1k�ѐ��O�x�8�WfGqTJ0Z5"��p��$Z��eR7*w�*]L#8�Ϊx�	�E����KW�������RؠK:予�xqz(��<�\~8��:�q>�?w��
��}Pb�6w���T���	g�:�
poF���n;���%h��?���vPt,2�m@��Au��y���_x�gֿ3`�m��ӟ�j]'y�w�An��N���n��W�,8������{p~��Y�+-4��(���jy�\^?�����I�W���=��h�v�$�#QG��P��Ϫ�ΐ[%A����y"�b���,ݗ�W��?E�؈���̭d�p0�@��9mFiuE2U�2�d�q4n9�9�: �F!L�����DG�X`��zbit%{(�O�&�b���L8`�y��k����R�KI��ؤ�������L�� D�辛?��0����Gs�oW�\���h�����m�I�Ԫ�e�~�VJ���O��\M&I��q���h�ݸ��I��Ho,l��myt��f=�r��m�`��QZ;K�z0�6��i���6��Г��n�`S�|��M'E~2�'��W�+*1�{�|�w5����'�+����_�}�?��wm���ݮ��r{��^�nx������7��W�{vyΘ��<�����_�5�z��������Y}yz����gw^����������~���~oZ��W��vp��~�O��"5.*�W��`��ا�*͐e�(5E�n3�;4U��^Q�����
��M�L�=G_b��ʤ�v@ϼ�Z�V%��:�����m�X�Gp!���<)'��l�~9‡��t^xL7��c�>ݛi����m:��~C�XMX(t�����������h�G�ZI��Y\�Ӊ�Ϧw����a�GvJ#x改��{��?��7��,<���!O��W�z:����/��/��?��6u��������u�OO��;*h��ggg?�?���ϧ�R:-]�01a�����G��b7B���w����O��0��X��|��=\���kǦ��k7I
App���s�x�fY[���{F�W�k��5f�N宄��h���⮓,E���($��b�*Y`�1xv��x��)�\������Β/	ndr����1� c�hw��F_a;��6@��* }!>I�	 ;L�yim\��U�l@�ޛӺ��ݤ��2�k�Gu�Ё�R'�.�郤̣|�׫�D�|'+\[�u���ޅ�a��q�ԨE7-Ռt�\8D�#Lj�ۭ:��Ѣ6Q�p��
@y��!�E��<{9^6����y�_FF���ɴcO/A?�WYe�U��r<mק����m{�������Hu��NuU�}7Z���v���X���1��vR��M���~ћ�����o`Q�8�+�o۷?�Ы��r�X�k�1,a ��s������_��_����܊J����_�����O?���?Q�%Cv,�*�Ng�N�*1�F�Rv�Fmb��c6�^�g)��D4(h�/�ߘ��t�l�4]T�J�z�kzX���06����8ۛ��\g[]��֝*)�ڧa�&�2��m��7.��Mg����g/�IY�Eqy�;��y��Ɉr��E�)n!R��"W�m�ߺ>����3�S�}��]D�L�@���K�KD�P���_�/���N&��
{L���'���w��^L��s����_;�_��*�_���5
��,a�O����3*��`����r�gq��8N����N��2���w�:�1^C`�\u1|0`6@<+���x�X�<�
(	=c�� ]�Ѓ���b=u'zF�q����5��~`IJ��@v��Ơ�BM�|�s��a�,y����Eì�%���XFFDVt�y�B���!_V�v��EX�R5���Vc�&�0����8(Z\�����4������ҫ�l�\�ł��v�p����d��}p��/K� 
�FCOU��r׵.�{_]*g%*�dZQ�^t��p��5��=�����z����j3�5�%c�g[Wc�S)
�k%tV�C���'�,��԰"+M�i�і}N۹���ض��3o�Q���G�i>=8�.��GG?(ǫՙ]�RڠSY����hq��?����� �sq�JX9������?����w>R��oz�a}`�:�L�7�
���@��k�����_��o����v<�O�
�X+AKDT�w���Zs��ϪT�V1=LZ=4���S�ѧ�pv>�7��TvMDN/B�H�hi��4eܰ��gի��bh���jYA=���-b��7p��	<`r^��*��X��.���3u��ﻶ.7%e���b��\d�r�U�n�;��ώ�����}�"�{%����Mr!)����
��Wx�]�0�h�$�)��h�rʈ6VR�J�Iς|Z=�\͒JrA��G(�@���Z~\f�h�4�;p�逤7�H���SEq?yi��>��	���@���c0�h���Ύ �Cn��Kwz7���=f�:�rΊ� b����S��ȔX>Q8�1O:p.ָ�{�|1>f��]P�<:�:��MO ���Ȅ9;r~���2c�/`�X�7��^�y�I�'�*d�%��E��*��\1U(t�������̌^�����eX��$��p…T%n�B<��s?��9�S�޵cb�x��'����U4��\��Ⱥ�+*���.C��֌�@ue~��<�Y:X��Y�v��6�6��c����������_��<�9o~��?}�S��Q����~y���֕%-Kt�L=|�k>�?��/����`YV�y�y)���䋿����G���볮���0p�7E‘։�F�Cߧi��o�S_�e_����m��7��׎<£b:�rQ�hA�ɯ�e�=Je�s��Z������=�kd��d	J��9h8� 
D�<B9�=����p��)"f�bE�tZ�b�Q
ҙ�IN��*v`q `�i�6�K�BJ�EbM:���d�E�M�4���Y�2l����4�۩��:�z��x�O�ɥ�c�n] 2��ڊs�OlV��EAr,�◕�A$��٤���XC �OK�ci�*�؊�k��z{�pH:���?�B8�r`�F�y%���Z�t�ǃ�*dǘ�W
}G>ӠH%"j>��f�,۫35&�A�S�$Q�'�'�&h���2b)+���67'"�0s�C;%h�x�P�4���8
��V�j��	P/���UHV�q���ꥩ+k�;�~��wG��	�NgYA�:`���?*
����Ft�4��{WT~ۀ2���-�WUE�E.�3�2���f�]�}����=��G��,h�à8R�6(���S"֎q�dy�?��f�'%qq��^�lڼ�(Mc4�Lq{�1�B�O��<ɢ([(�$������*]i$ѝ���e�6۞�=
+���o~�<{z��غa��m7-]�P����'���g?����V�i��*T<��Y��i9����W�g=��3�=�)*!�>πu��cY�n�z�+_��O}����?���:>J�=�&IsT�f�"�z��E��\���Ե]�Ϡ���L3�`�%���}����X�FO+f�B��Y����z	�U�	U��:�4��J�
%tPh��mj�F�cEv�#VO�嬪�l�t�7Y�`ڱ����ՄN>6ݙ�{wm����2x2Qe�a8 ��������$2x�A�Π��dv�>h��;j���|Fgi�N'�v��2�����p�V������n��y�"S��e�>Jf�$*(���)F���\e��R�����#���6*˳�L5��Y�g�7�Y
�1�V��P���i
2]`�3i+���g�$�3f��2!&�"�d<��FY�$�i�2�UZ�Ft��-Z�$,����%��~�<N�|���a��X����ýY<�p�R��lAd6�S�=VG���=&��m�Q���S�|jZs�k=��R�
1��Av(A�b�ޝ�g\E+��7����W�ub{e�ჶ亳�)�ϯ�:�����ʛs����h}��+�4ldf^y��1�r,�Q����t���t�B���nVT%Cޮ��r��O^s��c�?���tO�P0h$���7޵�N?�}�c���[T��ī��Tq1�R�Tt����<z��/����q�0�u=��駃��
mӽx煏|�#�<�,�e���9��ޘ��G�L�^Z���T�*)+UUP��"n5��XAŠ�f5��n:z�*W͝K&�@lOUy~0�e* A���1R�X����7F��0�K'�k�-*=]�r�b6����ŜdzS�F���'23N�=���jzږ����e�qXZ��G�����	�v�$6��O�t||pwء��@H����%]�`����=X��_��TEA7:6!�"���q�`�0-��9��L����҂BٗP�&�b�����i-�oϹ�ev�hKV	����v����CО�>!�$�‚�2�r��瑟��p���E�Pg"6��P]�:�i"[N1����#�n�cxɷ"�Y"�6L�.D�?�цI���0ؖW�
`���}	��1�۱�8��kQty���x��B���.�0��~��nѝ��(�W�hӦZL�l�}
������JË�3��w�4jQ�uB#�.lR٭�t6j���\�$\�PQA��$]/7�/�b��5�v�9�S[7\l�l����r1s��3���P3=�P�oW*��N,59{����������c%�y�z�}�2zN������׭i"����l��jrso�l1�b��ÜU��1�X����g^|�ſq�I9^41�A飇3Pً*,��d"'�0^[��B�9XPyb��eo����tJ͇�S�	FN"�����k��DFe�x`�<L���(�J*`�͒jU��`Y���h)B��^=b�{A���h���lm��o;lˣ)\L֏�J8���Ԯ8J�ΰG=��4�L6"�c���)q��
#a��T$_v�`������#���8E[Qډ_��0��
8�X��^N����,��BX�a���L�)�8�c��A|��W���`L��w�/Xƒ�@ϊ��h����A��e�P��MHA$l���l����H�-��(VV��������T@�2D]	�A�?�b�zɆ��-�Q���"��Erc�ad
�qL��k�"��$�b�k$uo,��I@���(_|��C'&:@�KV�"Qd�8m�?�M{�݉���Ns�$2R�<ad
+���z�tSijV 3�JO���βƊ�f�8�()3��F3�eN{�N�����jR*̕FO��|JWkN/ Y�_%ӹ�f�(������t=��E6��˦��PEi��4�Uټ�U�O� %^�쵩)��z܌8#��(���L&�x�PڧЩr��y����ٴcy��l:�S/-��kY�i�ݑ�f��q�\���L8,0�(jWc��i�f�g7��Ȩ����8eS���d�<vC28���T��J2�Ұ������Ks�6��7
s6�Y�8N��f����|K����5��9�8h�ێCU4\v\�D���P5�Xg��^{��Jp`�v�7,�T�
�Z����*b���.�g��L[wl��AY���m�&%;�����������G�b�e�=f~m�^ʡ#&�n��C{vo@�s;Hz��;JL������bd�e�8�r�p�d��K-&�%A���A�J�@@�,���ClCq���-s	�4��b�K� ��	��[�/c5�����n^,8��T�g���P`���1���&O�"$^���-fq 'sd2#,wR
͈ j(_h��"�*�.�7�����N���!}�g
+�	�S�|u���	#U�C`^�>̹��f�qn��|>�}I�;ɩ�EI%@<�G�a�K���$�
N��vg�Ն%� ��N�8+�D�a�Z��2��뵢�M#۠b�y���b��銓f��+��K��Q岌�%�w�N:wy��ǥ�p���m�t��n㩎m
ޚR�����-?�-��CEZ��0\P�a<�kuose.j�^⎒�^Զ82*���L.�9��4�N�I/"�M\����Į��|#�Z@��~[l�p�rc�0�q��/�x��3`W�T��e+���W:�u�:.k5��mӟ��(�*ݛ��
�~Kf��k0�A"<?�砩g�ԑ�lJ`6m�7�s=��LM��y�U��M��fִ<Tv��T곥k@�'E�[�S_l�N��^�b�¬���+�嵐��\O+�x#���/����m�a��*'R*����
���
�3
:�J:7������}()Y��8�G�.�9�CxKY(�i����El�X�<�9e������	�m"��
��J���_Y���GÞ��X��C��`$�P�4��C-Q�0b�s�w$,&-���̣^N�LH�qXѷ�$�Q�&�D�h'��)�em� ���3m��'�� �;��Rw�?v��� D���佑�'��|yAAp�I��*KTP̟{�H�nz3'�R*:U�V�H�L��.�g�?���ђ/��O���[U�tl2�Q�\e�mQ�G_��D]C�WEE�6U	�ʛ:R֭7��Y�Ms=��+�%I�yMEJv4��5���Pg5ЇP�bz<W�,�7����M<��ā*����㩚�T؊�ʸ�y���@2�Qr�ɔ�f���/lV�Yn=��̀�+�h@����eh[h��-֐3Mr�z5c:P݆1s����s�+|U�D����^~h�}V$YA﾿��D��zw�C�wN�B��U�C/_�/<|>���:�N��n0Zc�
��hR�(�"�d8d�R%�%Au�.x��P|ʧ�T389]i��8:(�J�z=��,V��S׶ x%𼀱�qpnj���Ƞ�N?^Tj�@�8A�;c���p��ԕ,q�so���)�
S�K
���܅)�dPo�8������EA�
=�������~�ٯ�m�YjQ�����s�$��"�1x����]��|�{��e�g”Az��J�4�F����o'X-�D����	��(ޠ�
�F��9z>
n`W�sl�99$�UIM�S��o�`-�Ѭ|K���[�hY�_Y�	�H"'��>>��=8���V��oF�—�u#�v�`
0��%g�(K]
�)E�Dg�ia.�W���ӥ�&�*�h�d��)�!�4(Z󴤥\��@�~,��
̱��H�}x6-�{S�h�j�v�-��=��B���)�6Uz�v8�����nOk*$��o�m����&��o[{�e'��8����=��r�3C�iz�"z�s㝤qU����c�+�2#�k�1s��p�
2~�r8ó�;�ib���
�X1��)w'�0Tc��ܺf�*�`6/�U5#`�P�T���
e�r�a`jb�`-���65�w��v�����:�?J����L�S��T��;�c�B��n���>qH�S�*�Pr������r=�@�,�����%�q,J���}�������խ��0����7��ݦ(��w�9Eo�B,����P��*�kַ�y�#_�h�Euaq�/8А��p*��Yp%��b
���yW���UBAI�k{�#B"�MB�͛�0	�	�u��"�D 	��r+�?6��W����zr&��:��,�C��N/�
3@Kg���
e���^S����\�t� �p��d��N�AEz�{5N��+nL��S�t�B�v�b�T�o/��-�n�"I��\�s���*��r�B�dqoųiO��ڮӛ��^R�)����0�M��N�H�r�A���e��OZ�����*[daQaO�U&�w���:N⯰���ۘ�<8O�q���nN\�4�us�=�����ۏ������1�
m�؅�s�X��:�����N[*��f~�����=�ζ:
�/K���Y�+w"d�io:��o�{�������x�wV��r���jEQVt�Y��
Q��m�p�f5��e��n���S�.�a��,�l�Wq�o%A9\�떞����J`}]�%rtF˲a��&�I.ʦ�^�s8MA��P?�?�I@M��`�����v
{n��~]��ʋ�llɊ6����&�w���S-�Mu& @Hun|H���	q4�Ž�s�nE�X�}�z@T~e��m&�����X���{H��g�BL̶�dH��-���*	c�B���
JM�B9�^��5��X��`�؅��2�<����I(�RUT��@8�%6�c�.{��9��9��L �)湑����R��w�5"�⢚�zjګI,Z�RH�9P"��ؔ�j�{" ��s�Lt*����b��&�*A	���S��|�ܨ,�rk�WHy�pkN2=�8�p��ٿAb�b$����.-��_DS<�k���2r�F6�ȯ4F.x�ò��6�
��JV$F(j���2�v��	-��2�Q}�r�]���
�u�9$���"?�0�s���C���E�0@؝�0��Aہ�ߔx�u�Ƽ�T���t�R;�a�*|?�n��k�3*�����y�F������v4"LXK�\F^5|iD�.�Jq����}#B�������*��<!ي^�kJ[��x{���]��oݽXY����b�c�y�yP[j���H@kʦ��s�o(W��q�Z>�v��Q�����?��b��n$��{�����0P���wè1�QG�5���i'a1���5�$��轘h���
^cM=B��;i {P#���/ڹ5��N-����0�H�[��$2\s��6U�����p�A*�'��*6v ��߱A)2�bu:mYB?��ye�H#~:�9Ln��˙*y��HVTX�ZP?Z\�Ju�F=,5�����\��Lj�u[KZ@UhvE�	�f��1����o]�'�Ek�Z�^"T�1zG�n*��)b
�xi{D��W��*�X�JU [�M���e�g��̸\�z��
�*�jQ{��w@?�!#��X�C1k����3~�<�#
�)��Q�٩�-CO����;���Z�K@1�{l����0������/��<._�~6��<�	 ��Go�Cpt��x]�˂|6+�;�����{t��K_���1�K�$����lѧ��i�/��h����𧛠W-/�_K��o��s�ܬ�X�h�����+:�Y���@-����ƚ�eۯ�e��=����Oi��7U�Ez���n��u�L����	��V�xXmN�' ���O���8|�

�x��+���m
�S��k#u�e$s�6vA"�XI3
���XXyo7`���>W�y,&��hE}���]ԹE-UH\�<�G�Rs�]mD�g/�̊6�Z��ʩD�\��[�UݠU�'���
�u>(ਤ\uӹ�o5��Η���/�:QE*̴
�i�YZt������X�E���Μ~*j�U��
�IS~J�Uo�*�@�UM�\��������T���hS�>�T����gh%u�e/,kZ+'/E:��"���Q��!�9��fb�����>V�(���V:҇~��@c��RHR�F
��D�G~a�t*aNo�N�9�����P���i�c^H�ǦOg�G���VpJ�3���2S��⿠@k)�S�tM��l����Ѝ���5Yu�q�~��M<T�!�Y����$d��r��:�͏�j��T������	B7Sob�#n�S�v��kӶt�0\!w�4rӨX]b�|,�k?6��|��n����	�b�4�}U|\w��,,-�c�9[��,��b�}�0uEyB���P���T;v[L9���Ѥ�ȣC��o��V����e	�s�x�(Fm�RpG�{$6;MA.P�}��>�Zd�x�w���}���;��o�)b�7�.�/�໣?�o�6��?��X��_VV�Je��c��6�ָW��?�E'.v�b/C�߷����&�?e~�9%ě���Y:Q�CM�n�{�[UV�-q�����Bx"�b��'����)�'�b���^��e��%9�r�OD��}� ��7Ҿ�
��~�f�;.T6e�5��F@�7���	�9�|BOPT�N���O�~����;�#���2S�ʱJ�4X�jn9���m��!#�Q���W
�X�qw��$l37�#�J8�T%[ȍP��.rڰ���9����\��Lbf�4��N�D/W����{�:,-cF`eΈ"@�^�n�#[$�i���$�l��X׿"�g����	7���~��f���I0����`��V���Lv�|v��˲�炎O*w��ş7�
�Fw *e�K��u�#@dc3Xi/|�E�Ry`�<��J�))�:Jȓ��-��}�6jnb��y�I8�0e�PH�_��y��`?��x�{$rСn>C��2R�z�?�R׶@�y]v+3��*��c��A��m�||�:�-�N�[��@(,!֠�^�}`�c�XpJF]XA�9A�oY��  ��C
P��H���R]d�Eų�p���t�D��U�^)��ՙ?��@<%L��F�FkR��%>-�UL����&"��=φ \�!j��%H�?"��tm�{6M��B��O'���D�iU{�/+��T1�˯�H.�պ�Y(\SKB~}KY�JL�:�ƨ.�jD�N@�L���D�00c���=�(v��)�Y;��Ծi����Bi�&�ɓt���?�����wrA�,tC�
R�
+�P[�,�j�J�T���h7�p����c�.=	�'6���S/��&h���v�|�;>,$�	�@�#�$��!�[x�*m-[���
��,	Б�H{�-n�.]�
6�	��y����:��d"�#���s�b��w�25t�]��~�g��'�R��D<�<��)|��p�vT���;�='�p���ߠC�ҽ�����R��tP%���u��0�(�J��z�B�̜!Z2���Î����:�p-�b��.mRN׾P��U��wV��n�hIٝ����<�u�oQ\�ճ�|�07��)o�zğ+�߸�3}�K!�Hq�-IL��
����F�G�-n��`�ܽ��2c8	Ɓ^��.�r�b�j����dRٺVW	i������T<ă
���r��ܦ2�'�ΦD;�r.��!Ww�JXR��wI��	(�*^)�>n�+�کyw:,-4��5��Ds���󵫵�G�
�ݓ5P�.IEND�B`�themes/highway/v1.0.0/style.min.css000064400000027365151213255570012772 0ustar00.ms-theme-highway{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-theme-highway.ms-loaded{opacity:1}.metaslider.ms-theme-highway *,.metaslider.ms-theme-highway *::before,.metaslider.ms-theme-highway *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-highway .flexslider{margin-bottom:0}.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-highway ul.rslides_tabs,.metaslider.ms-theme-highway div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;bottom:45px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:1.2;margin:0;padding:0 !important;position:absolute;right:30px;-webkit-transition:top .2s;transition:top .2s;width:auto;z-index:8}.ms-is-small.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.ms-is-small.metaslider.ms-theme-highway ul.rslides_tabs,.ms-is-small.metaslider.ms-theme-highway div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){bottom:20px;left:0;right:0;width:100%}.has-carousel-mode.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.has-carousel-mode.metaslider.ms-theme-highway ul.rslides_tabs,.has-carousel-mode.metaslider.ms-theme-highway div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){bottom:25px}.metaslider.ms-theme-highway .coin-slider .cs-buttons{background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-highway ul.rslides_tabs li a,.metaslider.ms-theme-highway div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-highway .coin-slider .cs-buttons a{background:rgba(91,92,97,.8);border:0;border:2px solid transparent;border-radius:10px;-webkit-box-shadow:none !important;box-shadow:none !important;color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;height:16px;line-height:1.2;margin:5px 5px 0 5px;padding:2px 3px 5px 3px;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:30px}.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-highway ul.rslides_tabs li:last-child a,.metaslider.ms-theme-highway div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-highway .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-highway .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-highway ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-highway ul.rslides_tabs li a:hover,.metaslider.ms-theme-highway div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-highway .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-highway .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-highway .coin-slider .cs-buttons a:hover{background:#fff;border:2px solid rgba(91,92,97,.8)}.metaslider.ms-theme-highway .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-highway ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-highway ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-highway div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-highway .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-highway .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-highway .coin-slider .cs-buttons a:hover::after{opacity:1}.metaslider.ms-theme-highway .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-highway div.nivo-directionNav{bottom:80px;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%);-webkit-transition:top .2s;transition:top .2s;width:100px;z-index:1020}.ms-is-small.metaslider.ms-theme-highway .flexslider:not(.filmstrip) ul.flex-direction-nav,.ms-is-small.metaslider.ms-theme-highway div.nivo-directionNav{left:auto;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%}.has-carousel-mode.metaslider.ms-theme-highway .flexslider:not(.filmstrip) ul.flex-direction-nav,.has-carousel-mode.metaslider.ms-theme-highway div.nivo-directionNav{bottom:60px}.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-highway a.rslides_nav,.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-highway .coin-slider .coin-slider div a{background:0;background:rgba(91,92,97,.8);border:2px solid #fff;border-radius:30px;-webkit-box-shadow:none;box-shadow:none;color:black;height:44px;margin-top:0;opacity:1;overflow:hidden;padding:0;top:50%;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:64px}.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-highway a.rslides_nav::before,.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-highway .coin-slider .coin-slider div a::before{background-size:100%;content:'' !important;display:block;height:100%;position:absolute;width:100%}.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-highway .rslides_nav.prev,.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-prev{left:-25px}.ms-is-small.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a.flex-prev,.ms-is-small.metaslider.ms-theme-highway .rslides_nav.prev,.ms-is-small.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.ms-is-small.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-prev{left:18px;top:3px}.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a.flex-prev:before,.metaslider.ms-theme-highway .rslides_nav.prev:before,.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a.nivo-prevNav:before,.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-prev:before{background:url("images/arrow-left.png") no-repeat center center}.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-highway .rslides_nav.next,.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-next{right:-25px}.ms-is-small.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a.flex-next,.ms-is-small.metaslider.ms-theme-highway .rslides_nav.next,.ms-is-small.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.ms-is-small.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-next{right:18px;top:3px}.metaslider.ms-theme-highway .flexslider ul.flex-direction-nav li a.flex-next:before,.metaslider.ms-theme-highway .rslides_nav.next:before,.metaslider.ms-theme-highway div.nivoSlider div.nivo-directionNav a.nivo-nextNav:before,.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-next:before{background:url("images/arrow-right.png") no-repeat center center}.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-prev{margin-left:20px}.metaslider.ms-theme-highway .coin-slider .coin-slider div a.cs-next{margin-right:20px}.metaslider.ms-theme-highway .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-highway .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-highway:hover a.rslides_nav,.metaslider.ms-theme-highway div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-highway .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-highway .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-highway .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-highway:hover a.rslides_nav:hover,.metaslider.ms-theme-highway div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-highway .coin-slider:hover .coin-slider div a:hover{background-color:black;opacity:1 !important}.metaslider.ms-theme-highway.metaslider-nivo:hover div.nivo-directionNav a{opacity:1 !important}.metaslider.ms-theme-highway a.rslides_nav.prev{bottom:40px;left:50%;margin-left:-40px;top:auto;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ms-is-small.metaslider.ms-theme-highway a.rslides_nav.prev{margin-left:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.metaslider.ms-theme-highway a.rslides_nav.next{bottom:40px;left:50%;margin-left:40px;top:auto;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ms-is-small.metaslider.ms-theme-highway a.rslides_nav.next{left:auto;margin-left:0;right:18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.metaslider.ms-theme-highway .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-highway .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-highway .rslides .caption-wrap,.metaslider.ms-theme-highway div.nivoSlider .nivo-caption{align-items:center;background:rgba(255,255,255,0.8);-webkit-box-align:center;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-box-pack:center;color:inherit;color:#000;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;height:auto;justify-content:center;left:0;margin:0;max-height:170px;max-width:450px;padding:0;text-align:center;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:.5s all;transition:.5s all;width:38%}.ms-is-small.metaslider.ms-theme-highway .flexslider ul.slides .caption-wrap,.ms-is-small.metaslider.ms-theme-highway .rslides .caption-wrap,.ms-is-small.metaslider.ms-theme-highway div.nivoSlider .nivo-caption{left:50%;max-height:120px;top:30%;-webkit-transform:translate(-50%,-30%);transform:translate(-50%,-30%);width:65%}.metaslider.ms-theme-highway div.nivoSlider .nivo-caption a{color:inherit}.metaslider.ms-theme-highway .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-highway .nivoSlider .nivo-caption{bottom:0;font-size:1rem;padding-top:65px}.ms-is-small.metaslider.ms-theme-highway .nivoSlider .nivo-caption{bottom:0;padding-top:45px}.metaslider.ms-theme-highway .filmstrip{border-radius:0;margin-top:10px;position:absolute;width:100%;z-index:4}.metaslider.ms-theme-highway .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-highway .filmstrip ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-highway .filmstrip ul.flex-direction-nav li a.flex-next{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.metaslider.ms-theme-highway .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-highway .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.metaslider.ms-theme-highway.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-highway .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-highway .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}themes/highway/v1.0.0/theme.php000064400000002043151213255570012133 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Highway extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'highway';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_highway_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_highway_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['highway'])) {
new MetaSlider_Theme_Highway();
}
themes/highway/v1.0.0/script.js000064400000001536151213255570012170 0ustar00(function($) {
   // metaslider has been initilalised
	$(document).on('metaslider/initialized', function (e, identifier) {
		// if .ms-theme-highway
		if ($(identifier).closest('.metaslider.ms-theme-highway').length) {
			var $slider = $(identifier);
			var $container = $(identifier).closest('.metaslider.ms-theme-highway');
			var captions = $slider.find('.caption');
			if (captions.length) {
				$container.addClass('ms-has-caption');
			}
			$container.addClass('ms-loaded');
		}
		$(window).trigger('resize');
	});
   $(window).on('load resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider').each(function(index) {
			var width = $(this).outerWidth();
			// if the slider width < 600px
			if (width < 600) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}
		});
	});

})(jQuery)
themes/highway/v1.0.0/style.postcss000064400000013677151213255570013117 0ustar00/**
 * Containers
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides.
 * Don't be afraid to use !important as needed.
 */

$theme_name: highway;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-theme-highway {
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
}

$(theme_prefix) {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
	}

	.rslides img,
	.nivoSlider {
	}

	/**
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 45px;
      right: 30px;
      width: auto;
		background: transparent;
		justify-content: center;
		line-height: 1.2;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;

      .ms-is-small& {
         width: 100%;
         left: 0;
         right: 0;
         bottom: 20px;
      }

      .has-carousel-mode& {
         bottom: 25px;
      }
	}

	@mixin dotsContainer coin {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 30px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsLink {
		display: flex;
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		line-height: 1.2;
		width: 30px;
		height: 16px;
		border-radius: 10px;
		background: rgba(91, 92, 97, .8);
		margin: 5px 5px 0 5px;
		padding: 2px 3px 5px 3px;
		font-size: 14px;
		color: #ffffff;
		text-indent: -9999px;
		border: 2px solid transparent;
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
      	background: #ffffff;
      	border: 2px solid rgba(91, 92, 97, .8);
		&::after {
			opacity: 1;
		}
	}

	/**
	* Arrows
	*
	*/
   @mixin arrowsContainer flex, nivo {
		position: absolute;
		bottom: 80px;
		width: 100px;
		left: 50%;
		transform: translateX(-50%);
		transition: top .2s;
		z-index: 1020;

		.ms-is-small& {
			width: 100%;
			left: auto;
			top: 50%;
			transform: translateY(-50%);
		}

		.has-carousel-mode& {
			bottom: 60px;
		}
	}

	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: 64px;
		height: 44px;
		color: black;
		opacity: 1;
		overflow: hidden;
		transition: all .2s ease-in-out;
		margin-top: 0;
		top: 50%;
		background: rgba(91, 92, 97, .8);
		padding: 0;
		border-radius: 30px;
		border: 2px solid #ffffff;

		&::before {
			content: '' !important;
			width: 100%;
			height: 100%;
			position: absolute;
			display: block;
			background-size: 100%;
		}
	}

   @mixin arrowsLink__prev {
		left: -25px;

		.ms-is-small& {
			left: 18px;
			top: 3px;
		}

		&:before {
			background: url("images/arrow-left.png") no-repeat center center;
		}
	}

   @mixin arrowsLink__next {
		right: -25px;

		.ms-is-small& {
			right: 18px;
			top: 3px;
		}

		&:before {
			background: url("images/arrow-right.png") no-repeat center center;
		}
	}

	@mixin arrowsLink__prev coin {
		margin-left: 20px;
	}

	@mixin arrowsLink__next coin {
		margin-right: 20px;
	}

   	@mixin sliderHover__arrowsLinks {
		opacity: 1 !important;

		&:hover {
			background-color: black;
			opacity: 1 !important;
		}
	}
	&.metaslider-nivo:hover div.nivo-directionNav a {
		opacity: 1 !important;
	}

   	@mixin arrowsLink rslides {

		.ms-is-small& {
		}

		&.prev {
			left: 50%;
			transform: translateX(-50%);
			bottom: 40px;
			top: auto;
			margin-left: -40px;

			.ms-is-small& {
				top: 50%;
				transform: translateY(-50%);
				margin-left: 0px;
			}
		}

		&.next {
			left: 50%;
			transform: translateX(-50%);
			bottom: 40px;
			top: auto;
			margin-left: 40px;

			.ms-is-small& {
				top: 50%;
				transform: translateY(-50%);
				margin-left: 0px;
				left: auto;
				right: 18px;
			}
		}
	}

   .coin-slider .coin-slider div {
		display: block !important;
	}

   .coin-slider .coin-slider .cs-prev,
   .coin-slider .coin-slider .cs-next {
   }

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
		width: 38%;
		max-width: 450px;
		height: auto;
		max-height: 170px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		background: rgba(255, 255, 255, 0.8);
		color: inherit;
		margin: 0;
		padding: 0;
		transition: 0.5s all;
		color: #000000;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		flex-direction: column;
		.ms-is-small& {
			width: 65%;
			max-height: 120px;
			top: 30%;
			left: 50%;
			transform: translate(-50%, -30%);
		}
	}

	@mixin caption rslides {

	}

	@mixin caption nivo {
		a {
			color: inherit;
		}
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
	}

	.flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {

	}

   	.nivoSlider .nivo-caption {
		bottom: 0;
		font-size: 1rem;
		padding-top: 65px;

		.ms-is-small& {
			bottom: 0;
			padding-top: 45px;
		}
	}

   /**
	* Filmstrip
	*/
	.filmstrip {
		position: absolute;
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 10px;
		ul.flex-direction-nav li a {

			&::after {
				width: 10px;
			}

			&.flex-prev,
			&.flex-next  {
				top: 50%;
				transform: translateY(-50%);
			}

			&.flex-prev {
				left: 10px;
			}

			&.flex-next {
				right: 10px;
			}
		}
	}

	&.has-filmstrip {

		@mixin arrowsContainer flex {

		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

   /**
   * Thumbnail
   */
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active {
		border: 0 none;
	}
}
themes/highway/v1.0.0/images/arrow-right.png000064400000001322151213255570014537 0ustar00�PNG


IHDR$3#|(gAMA���aYiTXtXML:com.adobe.xmp<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.4.0">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
         <tiff:Orientation>1</tiff:Orientation>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
L�'Y$IDATH
c`������F 树5�t�# ~Ň��!1���QD�$}*@�f��*��I�Ɉ!B%P��0�P<���DcZ��eP- ���| fFW4!��@(��"�`v�h ��4 #�
�i@��	N-�9h��0�.A���@G�[�̟ ��-t��,n�s��?���gs���$Io��@�܆Y<P�
t@O:�/�1 z �2@�r�!06=s�?������c@��e��VW��P��Y: X�f��4'��
q����dIEND�B`�themes/highway/v1.0.0/images/arrow-left.png000064400000000565151213255570014364 0ustar00�PNG


IHDR$3#|(gAMA���a,IDATH
͖�NAEw@��5�6X�&���J*KJMl�+Bggc&��1q=w�$�n���/9y���7��(�qw`+x�X9�0p�lY��Egi�o���؛�\b_���Ƙ���(W�0�D]'�{��4va���N�_�����10��Ҍ|��9��UK�G2�`�Q�!��O�82t�0kdS#�Ԥ<AN�1Fw���2���F��,\%GCk���Ԋ����ի�vd>A�xI�����g�/균_�?ߞ`5Nk���;�'��.�m���E���u"{���IEND�B`�themes/highway/changelog.php000064400000000115151213255570012134 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/simply-dark/screenshot.png000064400000123167151213255570013170 0ustar00�PNG


IHDR��� ~PLTE���(('*[�'0j'-_(3n'4q'/e(?�'9}+**'-b)C�(<�(=�'7w'0g',](;�(6t)A�(@�),['8y(B�000''+*X�*U�(E� (D�%%&(5)R�,,/*X�)G�9521(I�!,;)K�)M�0,+AGZDI\=CUNRe'8{INdJPh'F�+&$GMa@EWQVip��x��336MVpMSl���u��j��m�����HK]CJ`;@R868���::=8=Ot��7<J���)P���ӑ��O[w���S`|���KO`v��r��f��RYq{�� #(@G_BKe���<AN(;�*N�n��^x�ADR&u��o��}��'+V#&.FRns��FIWP<DZ���z��i��Ye�j��04Ad��W]u28J������`{�*/:�����|�ъ��DNi�p��a~����>?B��ƶ�������ﹺ�q��������e}�59D������  !#0]l�����IJLn��]dzXr�V[mct�}}�����葮�4���I(2E���CDF6>Sl��{�����t��Vo�+\ư��HWu+H&$���ESg��Ϩ��3CZ���,;Pegk:Ic������k}�bl����Oi�C#���Rg�A+(^]_qqu���SSV���Zt����3I\�g�ˆ��O80����YF���{����䐹�jw�V-�����������0A�=[�����+6d���`?3��Nf�gMDrD0.��חhO���{�ΑxdI^�Nj�^{�1Drɧ�����־������ָ�����n�ƱTgݕ�2IDATx��ͭ�0�<>�ż��T�|I#Ii ��T�&���0,AR�z���|:q�ĉ'^���'�|A��<��s��v���~���/� �����e�LA��-�U
B��U%�-����rwQ�
1��KY������� p�L��?��"͠K�kPPD��)R��k���[�'W�Aܗ�:�D,	�dɼ���[2����^�ߝ̢�1���ml��P�����CD��&��+��C� 	8����:����j%��7(XI��T�?C����� BP�%�0wUH�x
����7A��^���&�l�CQ��Ԏʡ@�#OX��M�]�T�*u�F��v2`~pI0�ÞQ�"���.w����2��G)~�ÎD�
����f<B�&wx�a,9{�w'H>U�ݑ�,��)�̞�qe�n�OT0En�$�,��P4�e�������l�̝>�[k*!�8��
r�Rc�UӰ;�-
޷b�+�:
\I,��rޡx�E�F�l��p���C�U��
�Q���c�K֊Lg�b������jʑe�.e,Q8
b/�b��? ܭb'0���S�w�G�˨���s�J��%S�.62&ʼM���)mnj/�S�3� �9�oc~���R���3/�a�I�c���.ѯ��E�!��k�WJ}�1����Z������3,���o
��]ob�pd�b8����z��er)5���Y�ˠ��3k��������E���	���.!Z�(0
B�uoz�N���
��^�4� 
{�^X��*��.��4�M���,i[Y�%(ȁ�b���^��ARhlN��~s/o�����	~;?of���~ߛ�Mx�B0n�B֟
�
<o�ݛ+@�u'�Y<r� ���d	Qg�P��Li�p�րL�rx��wP
��i�c�,��eR�gr��soƩt��<��(&i
��o~u8P��R[�m����i���N4+������Y�%M*yDIG1�>i�p�8r� �꿂!D>ε�G��,�%��]��#���&��c.[�v�d�mV����×�HED�D%��d��m���<���y�������E0���<��eE�&��uR���Ŧ#[�,oR1�\��Ł"A������UE�LJ��H1�\ws��^k{y��=���i@t*"��1�˪�\A�C7������\M��)�z5�dΌ�~����#,l]�&D�LmY�RE��h���%ɬ���]'�76v��9��̄ M%���r#\��!p�az��5c0=*��}�I�q��w?�Z��v㌒1�'�?ǪS�II��`��� �i\d
�����#�j��ym�>�u7K�
N���Pn��g?M�(I���F�5���I�N�cQG�B����3;h�I�^N�~���
MZ.IC��)���8� �G5���u3�M��e:X�i59v�'��� ��Y'F�:���i«�ȓ�8:���HB��q�Q
}Ҹ���6����} �.\y�jA�|F/j)Ln*�Ӫ�O���5#	j�\K8�^.H�,��0,	6��`f�Es���[��0I�&ȃ�݅wW�$P��k�U�@/�T���H���� �*o�98|\	$�4��.<��up;�J��"���[ϟ�
��í4L�FҤ۽��mb��rA����E�}$�h�O��������
��c�ļh���C/�,���v^=�>���p8����%��(l��]��k�F#L\_�r���!�j�@������N�BfA^=Vu�əwd,����Ã����4
��pn,��n��G�fw�݃�	$�#�'�0��
TX�["�	M� 8dX�a��'��`_���{y����I�Y
�t#��WNJ���`�R����Ըei�O���Pj�|6$��ǀ��/&9���߯�g\C��O���GV����|{i[U�t���DQ���{ߓ�D^Q�gM̶��2$d���{��ϵ	�2'H�-{�(�‰2���5z���C�i�]�G���~���;�+՝{��4M7��|'�W��0I+Z8M<#$�˘�ȳ��
Jq.���V�	d�>9��ʙW��z������ړ��/V�	ΐN��z�ƍ���K�iu���$Q��M�[%ƯK���@��<�W��~dScH4�q6]A*�*�=��@�&US��.�%��B���E�m4���t�>�P�A�
�&A
�b2N0���Fݴ�b�4��5Kk�1F�]Ե6��B]����.EAE��}�/���{:9����+~3s�?����s���KN|�96�����ީR<��<�=^>UԒ�xh�Ab����MO_}ͧ5�5x[ɦ[�^�����vup·���]�u`���:�U⛭��'\����s�4X/� s��ә���n����f�A��H$���I��b!�'FixD��X� ���A��k�b���N����
:�h�.:9iJ*�Mt���Hu��\u����� m�^�P���o����'z���k�/ܷ8�L��p[=�!��C�%EZ��D�9��y�^��_w+ߎLRI��$���)T��ڭ�f\�z��E�A_�O;!fN�E:o�'�����x��ګ��c�Mz<
�C�o��ɓS3��?ˆ'�p�x����Z�`��-���Y��%� �G�����es�+�� ���sꔜo�H|�ȍ`V�>���-D�Rd��/�x�s���[��IW!_Qʏ��=}��=Q��l����o�~�DaZO�"�T���p2��z*���I���XZ>�����V���:X7B+T�Da��D�&J�d��A�얠j{M���#�mLC��%_��m��j��%��s����OC���E��~������XL��B�T ��&�i��v�a
�+W]Pf�YXq1!��VV�d*���477�r�p��K'��j"D)�6Ói�x���
kb��< ��e�����-�}-��~� �E@�v7D�/����å��X2D"aB<�-�\<�ip!��$/����BgQ%���Q9��-D���:���Z	٤B`Ұ�F��YA�J�s �`����W1�=�Ͽ���lC�۳ɉ��kpx�ݹ����]OF��aL��D���B��R,�S���\q!�,��1@W^��)れjʹ�DU��L	gi��o6�増R��`���NHk=��!^T�� ������S+�j�[/_�>��Df��GnG�� z�C������%����H�Z����K`Ǖ�V�c��H�.|]V����ׁ�I�A!6bhT�	��U=T�=��n��`�J̃��2�D	?�L�JR�����za闵ccc��G<�̈��ﹿo�+��a���S %�%��/4-�!�дkt�8֋gδ�G��!B�!�k��V��F`�d�$�L��L@�$,p.�W�ᇶ�Y��ӫ�D�
����ٱ�/���ē('�ݾ�����z ��'A��	�H�Q��
���Ү
�Ur΁fy֫JEŦ�kv+�Z_�vc,E�QJ��(�������"U�*�U$��i�"�b�TFrI"���ٵχ8��	����8y�o�ɹ���b���\�vj����da.�sS'�+�k�9��G��#�s6KA|L��0
�ER�A�|�g�vYm�q��a�zX\�(um3���&5�@��d��Ȍ�}�#���3��f�A8�E�]\���ÑP��˟(&������
�{A	<��.�hq�y]�¬���	v�#�Dvu =j~��L�9�x�v詽�!�m�h)�}6�9��#	(W�w�C�s��$������XX�L+��p()&JX��$3��� ;iiiq*}���d���Zi�pZ81 ��u��YaS��y;�5��XŶe"���N���WO:`59�Q2=p[���}��i���3��¡t���IjX���b
�t-�I�m-Jl۩ܢeܴs8�2R$�h�[�"N��L´�$4lǗ�,��z\��g~� �vy��
ߚ7��@F(:|[����ť�����(������b�fB����r��h�=vq�)y�[Ǽ��ŹS��O!�c�e�]Iu�8Y�]]n��`	��:���:䙝uTV �!n�w��z��n�*,����L	vseZ�`arP��5<֋0���\^0rVXos�C�<�Q�E&�P�:]-��a��G�)J�n�B4L
R��o�v;��Mp!m���c���k�?��r[���V���n�.�d�����)����T9���'0-�}���}�U�)���	NV�xw��twP��jQ>��2q�m�r7��a�
l�p���t"�Pˏ?����F=
��n!DQ�A�P���Y��X�?NR��G������r:%�� v�G��AI�Ky�Rrgrx��x+!2 �d*1DF�d���UM,m�>++um��/�c�2z:�Q
��)�I�M��rl����y����
�	�๦��g������?X	j%�eħ���Cx@�ԂA�ʬ�é`E�N���,�VB�l�pZ�N�G���Ķ�p7�&B�q?��>;��1�m!��OBH�Ͽຆ�~��N���K�S)��GR�1�c�߯����Exx.����d� nĤ>��X�ȸ���N����m�A���a�I�ZTaS�t5D��t����8�ϼ��Q&=�D�0*v"� ;��?|�;�
���~��S´�RNh�x<����J(,�����-]�����i(�Uʇ������-�e&���)4���ln�w-{h,�}{�
�՜�bJz��V��,"|�.,⇱6I�}��@*��
%Y^N��`�|�͕����]V�:�FK�"dG��Zn�L��KR` 'YJ
N��l��
6���g��\�㾰�6�ܑ�����pX�&R@�.���#��>$�;�y<�=��=pbo.6��Ja�~���	�������jxq����0h��:��ά
��j��rC2`�d#�?+�F��?}���G&��8�e���
���H��:��PI�>O����w<15N"��Ծ�p�T�WI'����}������	4uvtttB}M��B��U
}k���,��-!b5�����Bf���#�N�fWlF� 6�
'�b�{�k��“��>�'�����ȣ��`,���D.�[�ˬ��'i�qcv���F�6Ǭ�I�-5j[��=�`. �5�w�ֵ��^p����=$h;X�H��@��~�n�(aPo�MT1#�[߾�ˋ�ݻ����_����2��se���Q�>^Jh�v��|Y��T��9O�&d>�|��+�@�܅ә���w��*_��"���]�v�R�ÔT��Sn�HN��,7�a�yq)������$�[޻B�T�X.���D��ƺ��P\������Blü�l��m��S�G��
���/��BH7!�w�"n���wܱը�މp��=��Ѓ;��x&�l&��N�x}E���]^^!E�@�LnW? %x��0��!��IM�!��,li�Q&]iAF�6�g�#��'�-���������}�����	X!0yU;�6L���3�f����x\��a&LH9�a���L�EO�����2���z�����꠺I��#�����e1T*j�a�%�Z�$΋O���f.��J)S\�&���M>toF���H�(�闊%���{{o�Ғ�pr�<���/(I`��ö�����0XI'р�:&�u&ڳâu���=vJ��a���*��"cz~u�o|��x.�9t J
��1��߳g7��� F��2�UBAa�BfҞ�����B+��d��Z\׃��U-Y��
���<�X�k�tt��� ��uYW�١���]pnO�1�̲��Ɋ)�p������l�x������W���z��!�c����qN��#(*�hN||�L�.�����C��0N����=� �a����"8	��D+�^x��g֛�H�e�,�(�ɦ�s���NQ�H����YS����yu
?U�d>r{� �=��A@���	1�VB����E�B�&�~��ѣ���o������N�Ah	&�0�&Ez����]֓�\}�����XF
�dgĸT"`c Hk�8jB�N�@g���b�6�I�D��A���}i�~�{��t��p�K(
J�j���>��0!���e��w�]��R8GӵrQ����$�e	y���"����o��tBsW]uU���fV�q�hB؟��r�Z*�]Wu�N��=���t�"��|F<76�Q#췐p�p0'̇��'|`1���毿��}g)ñ}�z�\���`��$a۱�\�i�JW�'��x�g�כจ��sG����E��uV�y�As��%u)l|��ıc�c/M��c���}u�%d��D鞋xy΁i�Eȏ���C_/�0��c����9D� �h�b��%+p\@.���(�d��PO�����\�8D��9Kr�tl�T%^Dt���?�=��_KA��QkP�SY�Rܵ�O��>Q��P�<�7W�D�7�=���Ӄ�"���`X�c/>3)�0
G:1X��$����>֋�cx���q	��^&-�;�򫂙��v�1m�aX��.
	JI�,��^"TEP��ɱG��+Z��FĪE�!�[/g:��N'���NT怢c�p:�N����?>�=�	^���sk��{���{��w��Χ���=]ރR
zMn�Hr	n��P�J)t��n��؞�#���&#:�s�ׄ	�M
Mf��,Z vy�f�#XDt8�5#�!ċ�J0<�by�����ۿ=�1�?%�dax��d#1t�u�(?�dD)�z�`z���m�'��S�j�*N�px	��	9��y�n2<8�#�fm27��q点��f���n�SDN~�Ld�N΂!�.`S��ƒ�};7^Ajr�;
�� O���)�M:*7�)��)�8��S@�Ȇ�Ib�鏘��W)�E��d�y��M�|��Xo��*ahb�Y<X`�!��Dۉ��C��ZE����ĩ�:8?0Z�o�1&MM`R�6��b�>�
n/6�2�mمF;k%˪ !�|Cka1��G2��~������S�����$9ɂ+�9�WEC�ԉ�6z�*�!Ag)�…���]�CO�u~�ߣFQ*��2*��a�HAt|��A��dADf�9�ԫ#��"�$��7�p�%W0����aA�)1�Yp�m�țYo�B��Xi�߳yY#��g;�_?�S�jp%)-- r�g��5}̱[:�Q4d%Y�q�1��J\
���C�������z�!J„h�ɜ�Xm"�9�q3ŨJ��ُ��F�у��HD[�s���\`���na���E�e6161Q�H�]�X��`Q"Zcp�o�HUx	�W��NC��>~����!̎�ɞ=�͏bv�ɿv��!��9U�$V�6OO�&q�x0�aBm�ܿ��ï�**����d���"���Ź�~p�����p;���j�R�6����
�>��Yh�0Wn�C��k�{��l����s*Ԅ��N)�[4��-��2� �� ��=2~�HA�G�	���X�|��)�i��~��hW_Ǿ�����L/�Y�T$�-LA|��DI���{���N/��<l�bT�o��q8�p��& �Z�5���ؤ���P/cI�Gʨ�nb�}W__\|��p��8��(3<4��z���O�r�2^�k@��$�ŷ��=.2A�`b6A��o:Q��|����B�ُ²�<
�T�"4�)��=���9

����<lV�&<��|E�U6����b%��h'8�&�zb�DV+�&�'��Ƌ`�S��
���rj~���7HℿS���I��8j�lu�q�"��U�#Ɋ28`,s֜d��~L>xY�D+'�X�$����<�x21&�����tDX�1�5yp~�a�S�Jc�{��$Z6Q̲l$|��f$#P���D�01av�O&Dv��=���
�ŸLᢆT#?�Y8�K��in�W`Ilj���$N����EMu%ȚB���c�}};(����/�0&'5�cS�%� ��2�A�����49?7ͻ`Tҋ�J�ؘ0����\�i�`��M�(�z֐�)P�P���d�g��+��3�@`��a�u�!.ɂ	��,��4�l�Z8$�K����[�5��>�q�|ن����z�G-�t^���s�����$��_&��.�o���K�sKs?�o$�4e����Da��z�$ZM s��h��\�}`Z6�CVĊ$vch�]�cb�J���{;9]�C������Y	E��|�L>�W��I7H?(�:�׏��1�e��z�� D\5@�<���	DŽ�J�_��i���z �	D��߼}�]� .�
l���
a5Z�~�� CV;0�[�Ap[L#�CЩM�����i��r/�Dl�u�$���,�ic�y�O� q�`��X+O���e%��OH�`j֝v�Վ�ۆ����P%�ȳ�� �'��&�q�2C�<r���X����m]0W�(�
RP����D���v���_��d<Ԧ��|1�`�Fd����}��.+����|���E�RTZ�����R:Mz�`K�1JD��5��*��L�!������W/]S��T�Ж�����k!��yh���B������h��<(�Vtr~y~r2R]���=6�T�h]�7D���)6q��W���¼cbHЈ�H^W;���3yF<S�Y�V "59���L|X�J�	�h�W
IN
 
&1)��(4DAg'�uE( �B�S�`��Pgכ�	k��1�Ă@- ��!�0�<�s|,[��K6�TG�d�-�ԗ�ʟ��
0U�K���!��`f�"6��n�C.Z�����$
.��5!?ά���`4�}? O��	N��R�`�r@ұ��O��`��@RM[�EJ��tb5?.6”;�9�Z:���=��>O�dIT��
p��q�x(�y�V����L
ae��DN��k�GEX'�Kp W�p���dq��c��/Iz!� �i����%�J�bĎ
�ޘh�g���LԎ��o�a�/��aAJb��SF���8jI���"d҄F�
pd�9/s@��Q�]�C��1[JD
�u���!�,}ܤg\W��؜G��"@�������(���#Y�����A/�f�6-]��1t/xe���	T����mA�W��#�eCn�b���+�Y�J	}
�V�"~Ȯ!�O#�T�J�*���t��X�X}?�R�`)�6W���)K*�S�	;N�:��5)專@PdN�pX�y����k2@	�
zC�w^�{�Ԩ�~�_/Y���� 됇�{Q_����-��:VL#��{G�����#�Ek�v� GS�n])w`V�|6b����se�c{���u�uI�M��ɒX���S�����F,r�tLO�k�1��x�n2��F,H68��
�H42	<.F׶|�7t��Ă?xQ7v�$H���[��5�>71�Lcp�a�&p��I)тx�TV�t
y����}��&D��D�{����Q�լ[����,e���(ԕ��e�	:BI���z�&�,�Ι;˓���*)]B� Q��+lY!<t�d�:	,!2��/黁H��o1Y]~�� d�\�w�uGc�ͻ{���Ol!�Y���XD0�Q�#����>	ZG�f-�ML�vR���[
1��
ÄY�"ڲF���d��1 �ŵ��
v
,��4�0uv<
F��W�S�>B�u��D B�$P�tB'dڲj9 �(�R�OF����y�%�&
>�A��f�!!���Q�C�����}SDr[�!h���,���n�of�$@X�cY;��Hz�f6�F�؀���h֯/**��hpĨ�����ю��;�8K��ro�?��&
1�`�O�u�2:�S��	H<
&\I�3 ���RXe�t�j�LF# "�w��v�$�0R.A�G 8�H�1w�h�
�9U4�{�Ő����V�:d674@SDQʴ�
�K	��p�d,��6
�A��Ť4�_A�V: 	�Ù"�/��d(�Ny��^�Ó��@系{@�yi��Y��j�B�Q�9ZcƧ�p%aH���+�#k��t$�[
 2;�J�Cp�/� ��Q��[�z�T�s�=��I����M����f���*��b5��p�1[j"3z�2�Q��R9$,6Y���O���i0���.��E2 �-|P��q�_POV�S�c��"���H_5,�-:e����n����)��X���-X�wz<5�jȸ��f�:� �".D��'Sb�A5_���R�Kp|�����q=>���/Z�<�l��n��t�gf|w
���Th�jl�p�ϥ#�GX����k�����r���L�iR)#�H!���R!����t	�&��~=�%?c���a�f�虢)�E4��0b���c�U��|��ض�-oz��\�
��0]�N�s3 ���Y��\�!qD��LK�0DtQl�x)����|`nyͤ{]f�%0-q��SCW�-��V���/σ�I%����Kt�
���ސ���Mi//�b͏��N>�A[�Yh��bU��u�o^Gx0���,]RM�&CRǔ��)��IǙ;?z����{�V�`k�$2��}�����l�����Oc����쫍E�ٽ+�xemN�.�4I���2�ß��Y���.�~�Xi��~�Ed���ĠYn	c��C=3��;���׃�߮�.�(	��e&���Ē�!k�h�V֞�(�2�n$�60<Bx���|�z�V�����d��1I$�eDa����"\w蓑��G�?n;d˻�=aE9����<���u��
�Ng흛k77�ժ�r���*%J�6S�~�ih-"�v�D� �:�$О3*��	��rIeEEP�|5`�r����g<�vT��u7{�~��ҹ$WH����9��%
Fu�YM�x�җ����Ԅ�.P<��w���𑜚9�FHc�d���}�
ۭ��r�t����se��f��S�D�����O����[��hm)t��޸Y
H�IM����v@�!��yW ��H��_\�\�]���-�L���%!.2V�&|!_cc@�&ӵ6=�o(l����^�g�G�0df�R��Z5ݨHq��h�����UV �X��;]o�~ �c@;�_����U��!I�N~�hPv���Y�G}O#F�u��d�1�W	�E��C;vn�Zw�
���Wlp;7o~�٨�XqL��6�窰�E�<k��:�7A���Hd��ܭ��@��.�DD%z2G�Â�9�4����U��?�Rn=�<��3�oo�@�bqC$�I�(R�c%��������U��s�
�G;�€���zv7:_?|�f�����|�͜@V�h����B*�e)-�����R؜��IO��h�3o>��V,|5���=|��í������Q�Hjj�s�H
J���9F�x�Ѩv�5�
�9�n�n��81ܢ����5��-vy����^h�Vo��zg�;���{LH	Lf�i'�
�<�����J�Rb�o'��%�R%���̴đ�����l�֭�ɺ�W��|
@���q��}|�֭NN*$4���sw��5��.�y}$uwo��R�li��Z]L��5d�Td[R﬊��
T���
G�a�$0Y\���o�^B������!z�$S���+_~�*/,Lk1�׬����=3ӯV����p�^�|�E��[ADV8[d��Ţ�;�q�@x}�X�����N�����_x�����g�ᙪ!_�&��d�J�Y��3�<d[[�л�*�: ��Ͽ�T��\v^�N�A�,L�[��qsy��R0��6��/�Zp�G����� �y��j�4��n�#�=�F���;��]x�ueD�XO��	��50�]�&H��k,~��2���$b2CH�Pъ�]�q=�2�U��~�7{Y;���$�Py}v���_��:ʿ��r
�GE~��4[r���A�]gv>8��~������	��$qf ��3�����eg�Y��j|Y���kn�(��ں�Z��$�[�D�J!*�rY������%�����cR��w.���a��$��
�z}^�`�=r]ÅW>��O^g��n��$DzT�g�s��:
�)�NY(�����v�������ڱ=i���oH�C��>
�C.�nϞ=S�K����Ade���u�F�'�H|���Ж��O��8��X�aB�)�[�c���喳�*�Xq�վމ�޺�s�&g���lt�x�s�i�X�U
	+��Z1�X�Cslt���d2�<��s������ ��G���u%T��X�_�{�CГ밠S�������zj��!�H��\�79]!F�G�w��p���.�&^
�ї�E������L��n�^`����'�� iz����BY��.��m˖�WvߪT�����jJ,RuP��ͧ��my�[n��kK.ߴ��n�����.:����&�-N5lZ����MpBgR�#��0���G�@"�IDw� r'�}�J�d �M4Q��K�B��#��r`���n��,䫻��0ϭ��
�έ6��Ф�����B�6`��/����+�0ѓ�UI��>���n�
Z���	PPdE@�����C|��>r�o���Ͽl���Y12�rD�D�������Ҷ��o���kϹ����jHŦ��J.غiS��íW\Q�R\��0�?�����K<AB���"H ��HQa�D��6^���x$3�C��d#��BK�2H�������ꀴ&�;	�<UcK����.B�H
#�t!��
�Ʒ�A)��H�<R��zmE�����G�CF�_7].e�Z��^��ꀬn�HN���-;^��I�!Gc~��n����u���{%�q�F�q�ƭW�U�{�0��YW�~bx[�A����d!�rpBzB�z}+l�RH��J`B�'�^.��ɢ���+z�¦K�V�U��b�	P��W��S��*��(�x���(�8�r-C�`���bS��CS�*a��B���{�o��ӽ{�,0�E���w��7��:S���]�|s��_����qD] ��.C��U����mOm{b��$�ο��^T����K�n��M�v�1u�x�[��h-�+\Cssa�s�	�xY�:���@�D�#��K��)|�)�1��!��*�ݧ��3B���ǚ.���K�y)`,|��~��o��,z��/�Q�
��"%_��d���e
� �p7�u�L�w�Y�|
my�~���;�&S"ҊBx<�`�+��N�!��veAm�QX��G_ĕ���������&L(bR@HH’ő2��!��!BXRA��B����@qi�X��љ�������;��*n�'77[]�~=�;�;���-����&ŗu�E,���?���g����E^ԩ�G�*Q�5���Ng�k�����<�]��!v��[�Ӕ����`Xh�J�
�OHxH��7�|���7��$G2���C��AцpOwEd�8����Ѕ{�E"K}ꬦ�ߝsX�֣�o������RԂA3�N���D3�U�
�����G������:p�7�ƦN���7��C�����s@n�#�G4p\�%����k��^����8ހ�;$���n.j�`PT�6p�BD��M:�F��U�+չ@��o)VYTMbW��8'j�η�y��w�y�8�w uV�E
�;o��3�92�	/��3���A���x�m���t	<����G�$lG���F�s���ZZ�L
T���\������rˋ b�՚)�p$�������P.0|����t�:�޿��8���_�=c�0$~ U"&��kM���!����.�D?��+�Ӏȋ���ʐ���d��b+�W+��"����ڕ�S�-�=pP<09p��;����~	�.����.Òg<�&M2[������1�U��O�tvv�>�P2"����#�}�sk����H�T)-uP��HJj)f����
F��K��P�����JB��-W�5N",늞�-��.���x��i���ۤ��㗛.k�Z��qF{t�I�bS?l��{g�H����#=QT*�$�7d��Lީ�(���J�V�ni
n��<n0@��ma�<څ�"�*$LH�q-6�a#�\ b,�w ����c�4���	`!y����Ԫ���b,@s]��D��d(��݁Hf��+J��i|S�&F6�b� 6F,(���dcG�R�*'�
DX�8]Y;��m��£Z�D�=doL�dJ��;<ٛ;��'Z�mT$3OT�)d�'�T�m���qf��z��Ϋ�����$��`�A"jQ2�_T�.����뫫��U�d�v�ŧ@N��]Z��H�0��������z���k��.4����s33!6�v�(�����c�]�'tB{��������"�*�s��"D<Ԁ��/����k#D ��i��ufJ�����a�sT� 2�S��:�Lm1*��į<�݇��ݟ�W ��	��$�	�6j?̪��߅�p�L��m���ڽm����aRq
�I�:ў�:�B�I�AQT]�[' �"uq5 aU���.��uZw�50�A"�����曯o8՛����~*C�@#(l.�A�"�A�J�m�|jyyU���]�a�m��]�
bы
�Ɵ��$�x<�5H���k<*�*���U5t����'���X��lh [����շq<���H0�_�*��k��<�5�ҁ��ʼn�-�3���I3Yq?�G�\>�B�*Ce��L��+�7�P���ȃ\D����&W��W�חé����``� &�M��0a���o�|��;)g�rj�!11�a$���3 #����G;���81D���D�k����6��f8��<����V�B��,�@��b��W��x��Y
�m��y*��VW���I�k]���A�[��K��i��ұ{~��_��9w��go/�e�j{X�I<�t$����B��BgBb�!��D�`r�nw�2�MLȁy�y�Y��Zۨ�"� ��@tRQ���
��/���#tG~�����S����0Z�ԚB-Q5N���%TF-y."&`s�-lc�x�Ӗ�э��67#�4'�AL
ؘ����Zq!�،./��9;l�F6�+������d�M��ꩫ�Z�"��—;�?a���S��g��{������w���o�t��u��3�w�咲�����Y7.N�}�_&�	��|AD�.�K��^Vf�r�L:N�F����a�
S�h��D�o�!���G���b���.b������E,��%Cr��h�c�z�H�l���ڷ�'�.{"ck6c��F�˱�d4�Ia��̑��lȜV0|���!���P���b�`�(�4Hd q����}[�����|@nc�{rŵ׼��'��5T q@��!VIi�e)�#�a_����m�Qq��VQ��(xg��:^4���F���L:`F	1TǼܺ����X],��/���~�����;w���PP@�w.e��یS0��3�hB+�8�}�{�� $�)/+O�}�♩ͩp�1S��RU��̚��(ʹ�#:�F+��p�K*ɏ%GW�8/G�$<��&����!@$�#{x��z>
�l�wȵ\��r��P��vV�^4:��>����Օq:��WhpM�R���t�D��@���\����I!(�g^^^,�J^)+$
SQ�E%ɇ����7_|���z�B�HP)B��bM�'��@&�.�3$���ର~���fw&��Q�@�
 h���ޜ���嗟������F|^�As����
X�!"c�W,��]��dC{z�.�:���+0h�-��A"��\��2�����%$��Z�f2����7�v�����BDJ+JA��8��O�:��%#A̡2�r����U�^�P��S�.��)����K���z�Ε�|�wCaN�U&a��$?�bwUUz*��Y�
z &.�~C~���M�
��V.IY��l�l?W�	������B�,�L�L��
��N�l��a"2DN�{zH��o��=��&�uӏ��mcK��3����[��[YiG��89�u��h�d8L�R@1H�N���S�&o��1'�2
Ĝ�e�I ���C�XGKS�U�a喊����~�_?�u�ɱU
S�P��zR�Nd�:�!���@��:	h���$&�ΰ�㽭��< ������/F��#�G4�*��W�W��d���wS��[r��CC�'��ʲ��tH'�~#F��"sK��y0za�+%��Nld7i!�����s�|Q�C'����q(�N'σ�5
�G�gh�*��
Q���Y��>@�c�:�*�#yA�^��E�T@�?��;dɎ�l��p�4�p� h�Az��!��M`v>C<ɝ?{����1�F���m���S�ݷ��0�n����'P�ܾ�S���+Y]___�;���]X�Bٟ�n�zp'�d[0�boHn����/�@	�[�ʛp�m琶�Ny&����%F��y��2Ƚ2�I�� )z��WS�Ru%�x'J�3�����D�
�����95��,o��$�~��{��g��)@g�U R����@�f��c�#x�a�[H�ڧ�Æ�rr bY��$�o&�j)�^�ƺ��2�_�QcҎn�;h��:�-Vc��-��J�a{�,	��Ӏ�n@¤�?	��ހ\{�׌��ܘ�:�]w�}�/�!����>r{�:��v�.a��2ҳԂ^��K]<�#/W}L�k�����V'\ɗ��c(�xd�V�թ�˵j@�A�'��7�3I~狏Nԏ���y�	JDB܌y�N!<�!A�}��a9��'�Z\���	��j�aܓ�P�&�.Ɛ����x1��}�KG�CVq!<��"`%�.����!vr�o�Z��^q�O_b9a��H�.���A/,�:1���;�q���FW�˽XZ@tB R"͢pE�Cл(S�f��Y��s�(<(^g��74�U�%�,�zR���:�1kW_߃Е�R�Dz?fk���W�p-�i��M�T�sZ��C:�fYO�DpCQ�MG#�%�Rc6[�12�B����
���N.6t�}���Mv
f,T�&�n�G����kq��ř���>�p���at�g�'�.��^���PM�R)ilK@,.�>��������@��� 
���R��;x�f@Q��"d5+�,�qK�G]B��&�j�i��E��!�r�j��&�6!]��`���z���O��qض��क़�3�x���H�<K�cZ
����"��,�r��a[��n����R�y��.�p#v���r(�I�1 $?�7G��!�9 t�n@/{X��\3qr�m�ern��[EB1!Kz/:�lc[�c���].o�̀) ���t�N@!2A�ƨ&��`�Z�kp^���x�AT
�S(**RjPY�����J�q6���&
�KC���H6%�#b	TA�7[0�����\�m�{SK+g��!@JrZm�5Թe/��<�JD{����ׄ�h��sI�����
"�~oem�,À����axG������G��?.G�{�
C�;��Jԁ3޲�mt����\��Y����1� �A� ��(��5J^�ר������X��8�i�2��r.�:~��9�A�ϐ��FST��ԍj����!�|'��+F�#�L�Y�����	��xl�	a��R!R�;{�S̎D�3Q�S�6�"C���W�!���Y^c����m64v�3��/9�v�2�m����&�D�*���?��Hv8v�!���kl-����w�^���Ř�Z\q=��5"��]!W[��f�D��U��X©V��|�p76�`p����gd�xh*2���p,���ee�^h���K
gR��󹃑͜�h�"�ui��x>����<���N	+�c��͞ `�H�m3��V*b��^�?��"	f���N�-����/>��7@y�%o0`1c��lf�p��6W:�JAx�) �n���+n���gy����ڣ,����D��^X�{6���iC��w�����=v�:/R�W܌A AA4Q�p�����X,���~���T��9�Vt�Ρ"�^VTH��`#�z|t6o)�9t��q�k�OO�v���C�'^O�0�ck�۳�N!�
����srZi��r�<d��8�v�tM8Ї�(1?IB�⊆�AO&-�m-����Bf�.O?�q���8 t!�so#7H�O��D#��B4�n�����y��[� `�]������|�P�˅���S�$]NE�J�!X�(�r*�9A�R�U�$�]$e�C�[:d�2�ߛ� @�TI����J� �������
�����jŌ�����öW'aA�ye6xr���HN>�SU%�!3,�*k,Z� ����v�O�R�R4쫠�䅗Sd�����h��j�5u5�Y�+o��	!�'x����(��?}���]�%'c&0�)���ݿ����A�^�����MvdY��
#Q�J�-�qRC��eee�9�1���
��LeG�Q���RD7 �te*�H�Ghc�"}�^1I_����/�-���z?���YM:B.(��M	�H�l�c�!���3pm�*��=!� 
a�0Hp<v��E�E���O`�+ow_(�5[�����/�9�l*��p5�u�ՖlǵN����K���WRr|�W���kD�[��8 [&	����pN1����B�v����5��26\J\F��ۉvX�a�}v[Ȍ���@0A�QEi�I�W�q�28�
���W�x�R)�jQS��k�e�Xpi9�s@�+
�����H�Aw-���?�Ԭ0
L�жZ3)ch"GТ�܊X8R�xt"��1�*4=�:��
��nI���0�U؜DI���ƻ�������`��8��iD"���r���^�� R���`m)I3Y\5���~����s��|�԰E��W�\��)��.��D���A�yY��k4��V��$h
Y'�p��<C!Zy(���J='�)-�_�0�0��B�|P<��D��������n���;svl*A�M<�6��
�P�����p?j��e��@j{yi�9�dP���>�Jd��cø���b�|yͷ���Xt]�E�{#���a��[?�����άU��w���#��!whr�����G��ʲx�J	ٖ��+�������(���d��4�'�L�	"JB%'��/(f��x���:��^&�Ȩ.B-�^�*+�0:Zm�X�[&����`"��E}���H�
�6��٩�H ��	���8�F���Q�H}߉�u	Mtb[��}M3���!i(U�I�D�m�О+5�n[�Ho�$�`��CB�I������˯,?���,o��I�?����F�m����67���7�Q���$VͷAND!�_Kɕ^_T�CI�t�@�h���I�:��D�h1#��ErN��I�!OR�G�\.7q8�����}�Rdj�+3�}b�C8=J���ۦ�(� ဤI�� L0���^5�4�"��a�Nx� ��L{{�b���m��#�Үv��6ypv6�<������+��Fq�H����1�Z�]w�O��q7���{8��^�MO(`��\E���ۺ�\]mH�B�v���V��,T:���Q���bX0����;r(
�����-�au�t#�����TH�(�	��*J��*�L���2T�
��o�-a��|��Ј�y����H�������E"
��P਽�'��!Yj_þ#�bKKݖ�C����$+-�j��!z�|@�'���˯����Pc�Ѧ¤?,du"�{����v�dt����<�(�]��z��,Cf8����F�\.��2+����r��s�{z:�.���fE�I�J���>n��T��\��F^�ß���L\d2����X`ӘV@3�Z��(z�i-�z�ntq�(��%$I1x�QЬG��-H���Q�mA��=�4���tטi�j�)]�Wm�H�Ǻ���vBX�w#@�}t�Ρ�RI�1\��g�rb1�y]m�ID,/������py���a~�q�ЎB��sr=O���ǫ��5�j�G�����^�;c4r�lV?�^$���e��\������"��!y��FYdr@��L�YMMru_{�>ҙna�A�]b���_��E��A�Vl�MC����SiS$w��w��%�H�-;wv#x<^����B.����h*<����?������+������	���W]~(%3��޶�6��v�y���2
[�ryrd��w�E�ɋ�ߦ4��U�S N+�y#@��$�,��)@-�����ǩ�\��̎إ��e=MM��ul�WS��CD��ұ٣�Ʀ�\[i��6�o@��J�����˷I�ʛo�8����}*�\B�����lya�@�'���+�;x�M#-���;�=,9���ߟr�����Ƛ�o��r�{A"�!W���m����nw T	$����Q9.8�(��*q��^hۅ�)$	8Hp�����0��^1��%���*����dpQX��������,�>��
�S���3|��9a�������O�p \e�	��0M�j⶚����nAr�]�ܳ
HZ�yp����2&}͵���.�!3*G����e�	�u�:�∟p$~cg<��&~d�[����^�:%���
fH���s����6ȼ(]�~;���RCL�1�$3�&�3i�:�NBxt�9T�/'è�I�7 �9����j
d/A@�R��df�A,��Tk���d�e U�<܄�&̝�X�5ZI�ύ5��L��U�%��:�Y��H3�m�؊H��&m�4�B�"p�	G�#��7bg�:'@;ԕ�"��K����o7�/�) xI\����M�Kz&�c"�=x
D�a܉�v8�3Hb�<�;���>9��>���r��]��{=�.t*` �G(����H�	�����č A�H��a�A��{�z^~���C�"%
C q��īd�J52bu�1'"�����0I��+y4/@�1 ���/��/ֱ���y�4b����m���vѲ�0]L����@�����-K{� ��y�_?X�<�{�`rX�Z�}�˵Z�ȷ�
���u�w��.wٍ[�=��Wo�x���>SV��j' �:љƐ���1ʏl��;������G���"��S��Ё?��N'��vQt��2��PFEߠ�ł¸2�nI����\٬9v��X�P	�m��_H��E`pa�֫p�[�!
/�n< Z� /N� �����Z�x؆�%��-H@Db���J$
f�-�[Zc&�ud�� ��G��Mc��f���v�z�5x� �>H�lE'�K:�݇yȵ�o�
?߲VX$���%�W�dX��#FwwyC �v�"��]]�6�`�]�I���4�.�lȄ(D⊃�
⑵�N��0D~�3�Mv��
P���+
�,Y�=zdX��
���%�`PR�R�)�@��aB}SW�� H�#��♡�S$/�6�U"��J��3J��t��I0̌yHg��o�p���2��U���r�܉��[)C3.<��]�]����.��r��^~}��gCO\�,����,�	�b��4��m33���.H�����69�m?Q��P��t"Ѵ��l���e2!���qE�}�/a���{�=�r�ā�ï��L�0,p��:��X'��	CE��ֈ2N)��ÓC���"���h+Ȅ�:&�]2�	K����R��ܹ�S�0�	��y>kP�ȡ�+�T7[lҬ
�H�'�������5�w�������`_8\��ɶ$\rG@�JGb��lƀ�$榢rF�@1��J����2<�`�,]��Hwz8��8nZN�;����޾��_�x�?	1�n���7���y���~睭�Q�s뱗�}H�/ީ^HRG��/���@�G�޿�t|>e�b�t�7@�֣
-3��U��hK;$Jk$��c�������3��|.m(� ҺXR5�+��ou��'�Ln-�0t��l����X�yX-j�B0z
&���^��%�{�B:{�M}��"]�|Oa�;�B'�'��顟�[�7��+��"�fMYA]=O��:��ޤ�`����<Z�q���'+���
�@��ٺt�pAA�b�O �0B�_�&����;n��\i�؋r�HE:}�3mm--�F#�a�Ya]+N���}b8�,pQ������.�B��khb8��]AwBT���\I��ɯ0��v1W-l��Sv ɵ���N$‚o�	 �KQ~wr,A�X��ʬQ�r��o<{��e�^^�rezq�7.�p����l�™��ã�0[���T�X!I|�=����Bgm}��-��.a֑�_M�7W��d����T��.U9�0e�`b�	G���=.������ɑ�)}��U����n�1���f�|u�o2K:8��z{��@�%&�F��8 ���M���1��k!�R<�A�-�&�!���*B��4���A�X,خ�`r����G&�^|�ƕjn�A���,�.�e[���"��γ�Ο?^�y��#��8�S(�)�U�䓣����|AD{��nў����W�&��\�̣�IuiB��<󐼤љ�y9�zk���6�Uk]$�2���rUQ�E�#�n�w�0�zB�9n�z��޺�"g��s#��X*�;5�&Ӿ �C�,
���@LO7J#��n �*7�2��sSy��A�]�FD1��X�8^P�̱�&�G�^y�g�?���6�� �t˽)��>��$ܕ��+O�;�V�o�8�r_�k�a�6���D]�}y
 \ݧ]|�c�57uGV�{�/|�[yM}�s�Zu�"�	��6�L�:�#�3-�l��#m;�Fk���w9TI�x(��\H�(�2�\v1aַ�mߟW�0���
`r�u�`�|I:/�j:,�t�g��Fwqm�	D�)��^/]��Z�
��	9��%z�wg������e
L�\\����sg��Gj�����ץ׎V��
lVK��R�+ӓs+K�o\�Z���Q�V�&�N����* r��bhW;EAZ�����%�u���Ï�5�O�룕7e<g��5�t!y�u�cc�:
�������hT���<Kt[��گ�o���/��c̸���&���}��zk����w���Fe��-L��.�$�?���:�ˮ�a+�=����$���k(��:<����
,C����ɍ�p��w>���ff�R�f:�^�T�w�r�?�`9,p�������8�Km�U���������䅫s���}�T�vn�l��'�*Z�	$/e�h�u�4½sx&��H~ES�I���Z@���a!��k�T�8��U�^H�2��ۇ&����ە����W1�|+
�'9gq�� �^����rBaU�r:�e�iv���]̚chH-UOQ����
*��}aKD�Y�o 	ي��L�}Z���?��7��n
P��Иz(���I*���<h�<)�gQP��?9^w�\}�lO�dq��&E��u}T'���u�*.,�.�h+�!|/�[:�V�BK��� �l2a8�A`�$�d��T9�>
�'o�;2���L�G0ە��+D�.��8P-�E��d`��g����К�+�Fj�RƢ�p�h�T>�8��`��Wv���I�.E��_)�D}i���"r�?�����ѽ�K���B��aiF�2��3	��"^�j*�;�p#F��	���k/?�4��W8��V��Sc}��p&Ļa:{uc��h*z�xBM�j������8�qҏ���1%�$+d<q釂ȇ"��k�I
�h<��m�O�7���@&C�
C��?iӢ�F�$H�C���/K�,�%D@&�5�TP�7
 T�#&Ӭ���C�@�����,�;u�6���-��_d�ɍ�;_�6��2@��k'�N=@
 O��*�o�w��ܺ4R��]DǴ�t򆣱Y|
R��Bk�$ii��Ƣ�[~[�HAz#ܸ�$�WD
�%+̅�H�y}�чI��c��gГ̮
E	�̲� kr$%����1�@0M*�ppw�0�\�*����p�$��0/3��;N �r��^�~~.`��޳S�ʄ�k��R�:T�,Yy��:Ph���]oH�ƫ��/�hHܕ�DD3fO�!ꇿ����Y1�����&EB���;�z�xj6�OGӄ���x���e�L(f�T��5|&k9��e$DI/T�U|w����ľ����-�v�W�f��6w�]�v��e�)��� �Hd ~���b��$#{
ğH���m/9���2HZ(W�B��Wp�� �I��mW�K9��Τ���r�����T�{W%g����W�:��k�"�B�qI|����ǝ��f��x��F�L:;ۣc��v*R��]��6��,�!��­%5���Is;�?م*+Wqi����"uu�����[`���U5){��ـ`��f0首E��Q[]l�ɸ���4*�^uI{��r �JV=ZY��_�Un�u�`���5���せ�Ͽ�A�\/ѯr��q޲$ �.N�Q�����{H",N�|�SD�W}w���56K>�0$.���ER�,<��o�<f�k������]D:��$L�vx4�J:��=]Sut������Z��u��~�!�:I�Ck臔���A�F|���u�@&G�}{�Ko�:@X(�]������:��͑���)	s������ă�E\N1�@�›�B
IGL|�|�B������}�Twe���ʵ��+
l�q����KP�T�N�X^�X��k;�$y���<UA@$���d}eGS_ߩ��%����y�I�	��t�Յ�P&��)t��A�F[�B�N�>V�U���6RA��d��~��ƅK��Q��-���=�LN��vC�*o�M�D���n�!j\D��	|f3�X�B���*tq��3�
�"Fv�u��/&gt*�󲚈4�8I�D��?}$�4uI2��P밦"�}��=��:��JIF*�J�z���0Y
	��Țk���5��/��6��5���A�4A��q2��0�L'$��aV<f=�B����Gb�FXC�eE�p�z٤�V�Y}�U_O	X*�#$�����~x�c�����$�"������Ȑ`��*���9�X�$rv�m-.�b����a��a�,

'���C ��$���%1x	9�C���P���/699��PxG��n�SG$�@w+�������78q�ӯ(�sHxռ��5y*��<&��)�u�[��#�ѯ~o$V�)�*�8S}��U�Ä�HE&	ѐ��|S^���p�ԩ�\$g�u�1H&�ӈFn�A�P�@��(S_bBO@�b/=q��lٲ],�10w��~0ٗE��qWaۭ�������C�r�j>��̊��ߙ���\bq��A����8+��kjB�a@Q�Բ|�^^���Y�^��|�$��x���;�#��N:>�#N����o��B��#�:�Γ��s��*$�w�ҫ�8D��$!�?��[7�X���|P�5����c����0)a��=�muQL����X�(�MB"�1X#�v����6���a�Y�����c�4@�-o��ɱ��N�P�K���eGNWg��Mo����Ț-TL�{`GJ����N��&�S!�`���V�G�[!�p���
�X���&&;�*�ѓ���%�^y,W���]��t��k��8����Do��e�V��h<��ȷ�i�ש����J�Ĭ���J��nH�~�ĉ�0���{��p�;�)B�X+�}1�e�˄)w7����֗sw�q��M1�LL�e!y�+
Q� �&�S։��0�B����o�44�j8d����V�Z3@��S)�|�VV
�>��+� H1^�Z`��$�X.��}Ԝ��l�ĝ\ى+��\���2� [��<=yae���_��IMeuʫ'��ҩ��������CA�ve��O�q��nq���f�	|7��1�
l�6
�Y��[��I{�Td����݁���H ��L�{����4"�(�/�vBA�}\���@O�nL��[oqC}�O�ߞ�VTcc��7 �Ѫ5�/�R,�R��`!On:4Dq��N|$�Q�W�Zd�3K=L�#���1[�t�{B�I�]�eX#�x4ad��xuu���"��2C?��*e~�����*���uuɃЊ�ܺ�3�k���G��_�v���KOV�E�K��U�EW��4�&�{ �d�6Y.��vf��l����^��k[4�4�a�r'@&خk@(��kr�v�K��o���w�Lk��)>z�-��
5��f����6Bc2"�_5�)U���H�C�+M����8.��A3[��Wz"�b)���dq��I狏�n\���N6��l����#|.Ô��a�
m�~������I���`���3�.V߬:��k�Vo��j!���FbRU(��\�6*f��Ũ�7j���l\�1(�������=x"H��'`r��	��D�q_=�z��$S7�����IZ�KtL�wX̵ʤ�A/��
��`��bTa'�2��H�q2L�"�H<�S��L�k�]ԣ�����KY�(r��kqe�L�5:���y/��"�y�ÿr�q��a�s��Y�*���շ������Hg4g�!�yj!��j��!�k�u9y�z���eS��#�Q���k���3�)s6И���Oѐ-k��s
�#
�.��iW�c���f��:�*!�.�šr�A�U�tY���4[!
̨����Y��\A*%�AC���]!�?�!FI���4R�L��ŧ�]e2�SIg)�m��Cs��W^�J3�z?	�3�JүRH�A���S�)x���ne~f���X�Ƅ����JiS���>��@�c<����X�
(��X�-��K��I��T]Ҵ�{�6I�r_����i
���߷=��|l�(*����H� ��*Fs.�JI��haY�̀J	0���l�\l�$����t���D)eha'��`E�`�p6��7dm�ρ	��w�O�-t��>X���`e)\<�PY��p~�9���㷏=�M�>ەɽv{��g��	3� �賐���3<�0S�)�2��a��,����x�����^RL:>�J{o^��T�ا���G>VM�@e�GM���5����%𶧷P��o��i+�����h�*�g$�2����`r^K$9�g�shj��g���)�Io1�
�SQԌ��\�~���@���=z��\~�`���P�g�؛)�\�[�b�}�.���W�v�}�'궿�W�GUA�B"0X��v'Z:eHJ>����m�B�F[�Ǣ-c-X��*���k7�<����(O"#���`KH�	��\A"<%@Q"�0z"eKq(��S��@��TfIgrl9A߈ڿQ8_�_u�JU=Қ
� n��;���Y"R�B/��KZ::B��4^�b��5�1+��~.b��/]���_\Z�r��ӝ�^�f]S���^y��p���C�j+��ߒ���"���d�S�e�I,�_��ަN��`u�'Z"�0X���aT$�L���mc�A�G�,9�H��1[�Cc2��v-,�"��J�ʄ���;5�G�:0#p�H���Q_p���S[H�da����IM��Sl�{���6�X.<�Q�����p��Ώ�©W���3�~�B�%�'Y/��{��$��.K��*��>9�����&�R5��t��߭��<k���'�g�R���d,��eR?�`�u�j�N,ʶ1b�a}���J::���*f碛i5��C�W��zQB$)�I��.$@�GTA>�A��9}>�3�r���QE�@���ա�rq$�ɨ/�-�N�IpP����;dN�[/�/��P����,��86�����K��Z3�8���O��a�g�Ń�J�K��|�<��}����|��՟;>��<Y�L2��n��e�e���$��=�=9�{�@E��h+C��(����V�������� #���gݵ�r��T_��8��\��-��ixȃ�$&| $)'n6��]%�!���'fY�B�Dиr@�a"��v�$�r������F�"����]4�	�`μ�h�W��a�����ח��n�A
Z-��k��a��\N����蟜��d��g���?�$�kp��u
$�~<:�Q�&ªɽ�(�z�#1��Ԩ&\.�4C���P8;_c�GR}@(����kv��R�Xd��4��A�����jT�'�/ �>7��Ȉ�ƞ+��|cp��v�*���M'�3&��A����K�%!�p��"-j��w�]�����(s���@����߸�u��{�;+�8�����ߡ����{�z�R�I�jou����cG;:��Z̔����N_X���J�E2�
�	�wrh> �e+��G}����O����1ok¤�ކ��۲^D!����#J�xp��ˬ���X+:��/���:�oC���H�}��^C���=�+���zu6����߀��L4���"�����=�F��w���x���78>���Q�$lW5l׵�KjrWPO�$��i�R��{���wn1u���$]C�DN���>���m]�Q:8�by�ы-�풃D����P����9����9"%�'D���k�� ��0��z�۽ehC�RI��!�ˬGMw��!o#���|�&qu�`�+��"V���k7}�R���w4=!V��(��K	�1;��}��R�ē�`��j�"��Q��8����сII��C�Y���U.����%���9!5$���Sm���'=z�:ŋA<:�9c1E����4"ޞ��܋� ���0�з��X�a�sP����h4ބ�!�I.��z�h��s��W��+�$�H§�h���>�� nI��&!MX�&ɕyx<��Ҿ}�n��7�6z��J�ƟT�w�3B��K�?����6�ˑ�3�="4D4䫈�� ��)!�K�64��ʗ��\�~�fGNGЕ��W��i�Jߩ�[R�z%��O�1N�b"�F����7����u���
���f�*V�~K���m�i�X|�q+�/����	g*���\E/xY�
�	c��#��U@N�~�i���/�{s{lV��V��C�K���;�d��p����'z¨��tgd���`�Q���b���h1�Kڪ&�X!���Ė�e��A�|�sh��q���EEK@�������.O:�&%�,��]��}sδ��Gq�|\$�Bz���5�
C����������6�8�m>)������$�����ԃ���
�Փ�0�>�I8ԋ����遻M�\��Ę4�<�Bf�,�2		)���Ls��{�Y���W���vqҵ��0i�P�C���$ߠ�,���
0 W'b@���$�r	���FB��`�s�B�լ4�!���s��{}�껱���$�rk��F��6� 8���L��ӛ����vS�X��w�U������V���ȲY�|�%�$Zxl�	�2hv�#4*��E��G�8�b�pm�����r�LHo`
��lC�WZ�C��7�+��n"dMD�^�}s:�%-w�x0��W�2]��:R<�(D� bT^��8

�Ĉ����	��<�OI�̓���+R\��+�k=�ɢn+!��[nHDUBt��L?�Q%����N|����"���W���Lj��c8�	�w��T�zЎ����nY0�r���V9��6�Gv�9}�����xD��0��!�sM/��N{�.@�P���_��bY�����'�Ն�O+���z��P��Bw�z���&�~��>T�\�*���[�P�q����H���g#L_�Y��5Z}��+�= �X����̔Ț�jVϓ���a�:��q���YP���s�<njjj�}��7�LV{�\'-�>�����(��Z�Z7oV�!PP�m�Ť*J���j{�� II�[���ivZ\�Odb����Vc�E��|w�(@�=��I��;�
ǫ�O-4�i�Q��<�� ��/�\�J���R�^�������ta�j�P��+����z����Oz��֯�';`�;eH��?�&��FC�����Ǜ��I�	�<�S�WT֧�U_��Om�@2�S�Hnҷc�^���1��a���,$��w��M*W�����K�b��.h~�I?�V+��b�f���J�HB�(�,�b�O� i�O�x��
�\T�<K�0�]o@K���N9sڢ�>�:8P@\��E
�O���օ���6;�":d
 �$���􅙕b\���:ѐ���y�SK�sM��r�ĐV�C�vv�R��x�b�̾q�F�b�00��-�f{�]�}[��%񧄎H"#��x��V�%�76M�Y�O��@�����w�U��0h�ڮO���.&&i$�*,�ju`���&���C� ��C���AS��w���C��X؂�o(y.@����p[��\*�	@R:��/��;�F;�IQ���8(@7�ް0��1�q�\�0@�H�NA]i�-�sr|��Ж���Q�hcc�So�S���5	 &t�qtU?@�;�D�#�7n9<=z��bU�a�q����P�À0Ԫ¾���M�I��IKq��H<��8�x�
6z�U�T����/Y�H�E͌I&�5pZ,�s�Y��4�LrU57������h�a�]
I���p�2����?�/Ҫ���q���Xw.#��U�X8����z���no#]�� �-�QX�nH� Wrq(�CC�LPI� ee	�����p��wOy�Q��Y�'���K�
����	�"	�/n"d�a�	�l�̏ux��6r�i)�	A
y�MUm�U���fT�"�3b��^*�u�H~I�2$�Kp�'�u�B�"��M+]+�Xk3BUD�H�I$:�ީ�`]\o���Yz�s�~��!�p�*��j��li� �	/+
��lsv˘#�R��dQ�U$U�ě9�ɪ�^��mq�o'�lz}��8d�2L�]s��k�N|�0��#%A���@�B${cf����
-m����e�g�E`�BA[�wȉY�8i���VB��Nj��V0l9��y�`
 �)R
��?��4��f���J,X�.RV#Lj�‘:5!�6�W��55�]~��SMM���A�bH$B�ln�O��9d�t� f����ÓX������\�@�$^q,a� R�
Ƚ�\���(!t�F1��4��x!P�����;}���&k1��]]�msgt:��10j�Ț;<���4�,�!B�!�G(4�zB*�/�,+��S!̘����A{�4D�e�����w��%߳fc\<K�/N���1�&��
�@���m�����?= M}1�0��i+BA�a�Jeo��s�X,��k�D��s��$#8���@��HRD	V@�?^�@�q�/&5Y#�h��^�|��IU��Aa�L�& ��}Z��^ژ֠��2:����Y�C�$�m/'4�7�Q���� 5y���Kt�Q���"K
��d�@�'W�hB��dH�ٌu`�E?�	:}XQ�b��zt�gsq!�k«�+,bxs�-F�'jD&	sKd��	L�$�ЀfS�'،�v8�{��G�H��"�����Vȡ���ݮ%���wK2c�	k}�Qj�,@�B��x��j_�v
M/A�T6z�[^l�?��6�	����Ʈ��k8��7��L>�K�Ct�"��d�D���8�	�e�r*��	
x�G�����uc��f�6)��`�C|����:cE阬����%�B1Y�cc�h�l=�2�3۠vψe�s�����>sY��m���y�Nc#�P�*�
����|�C����!����X<j5a�}�$`rp��C�-+�5���)��a���c��V�.+��'��Q�F_N6\$N�2U���Wa�@UU�H��R�I�Z���(��������^}gө�TRQu�O�yzg�Y06�#�!-m�����s>��bxx�"n���%*�@���ja9���HfSsNA������n�O���'��FP���ɢ2�������^
_�06��h��p��#�O���d�B�g�xt�z�=ٍ>ԗ��iz	�#"�L�BJC�h������,	����~���L�(PhU��w1�3�L���~`��b,F:ÄX��rnNx��,)mY�]��c��\�Dkt��*�k�knP|�,J�W�zD�1"=���o�`a�..ϕۃOr�3А�$ �.��x|��4��S>�1���_D*2��JS
�UN�0��=
���3wo�4�LǿaZ
]�){��7AGr
]ra4H�D�mT:�w�5F'�����"k򐫟W^����+���&h�)kfd�x���
����
aMdiu}��^�.3����Ӗ��b0Yت�d���~��A��"%�8�DvΔ3�l�+�[����QTn q�|��ٟ-;L*�i�ʫ�	�C��4�u��7ECd�����F͍�f5���&U�9������|�׼�3����.�3B���蛉@|�!��r�i��$��qŚ�*� @Te<��\Rϲ`�jS����w���|���oex2)=��h&���D[4:�(.[dbl�OK�Q�5:w�Qk}}g}������������������ļ�MԷ�B�X�)�2y�m�C`��"�7H{͐tFAT�v�A\ܑ�k卄���}l��ɻ��Xn����H��r햡 �cZ�w:p��H��"�����EJ�m?r��O^��[�n���v��(f��W�,��W��\X��6&�J�#
$���Z������C��\���?�t4oknN���d���m��2�S>�l<oۖ!�ۜߕ�#|��48zYH#�=e�˗��ٴySB6���a�^dl�Q^�z�3g8#�����U9�'}0S�d����P��[��U/�O��$k��/o*���wH�F�z�q96�������[�b�W���j<�_b�Xz	|��BxWyZ7�CR�����Y��b��T@�uE�P��77	EE�h�|���k/���ndP ���~$�\����H\2��I��$�)�x�P8��(�,M6n�u��J2V���Ŀz&�KM
{�l**R��6���\��آ����Ttx2鑘��·���P���k�rѫB��0$��g�����3�76�\��i����m��DfQW�j>���X6}y�f�� �d�M����p����w@�9]��}����m��t@ԇș={�5oFE22�m��`A�+���F/#�ƚ,97
LT�Q�����\���R��-�Bz##�l��~`���7=�`���x��@�{����$�N)
��@2��^].��)�ȷ4Qב4D����P�	iظ�@wڦ$�k����$m0Cd�����X-�6�]y��\�M
c{<��|��%�a��bt
��(q"9��x@�e= g\� �O5X���`mK��v��� i�I@�������cs��{�*4�	�H6+@���7�"�=��
�!DR>����U��p�/�y� �b[PO�F�Kż�#̂�������S@���خ�L�p�(*;Q�S�`&�����G/j�.z*i��nD!�E� ѩo��wy�[��<x���1�\Q�_(d�N~5Jx`��=����@4S�D~e
"
�8 �����=hӗ=��{�4䳒�S�i^Ru��d�P	�_��__9OA��������U��e��^�h1�]���g��E̓�]�	�n,D�y����4@6�)J�K�D���O�� `�į��?YՏ��oo��q3�1��Z����i�"�T!EA_J��wnk	 �
JC���f�~/T��kR��B������;���`2�$칣������C�@	�Cáڧ�| �A$?��8�:3mP@fikO�pC2dE�$ E:d�m�܀�@����./�'�_���G�7e��TƏ�?�_c�?��4ٚ.qb ��%��1h�K�R�N@��݊\��!����Q#"�`�=x*�:��9�@��J��"�������Ƿ�>�=������w�8D�&�L������L�UB�HP)H�>��(���R��)uT��U�<��)[9��B��_����p�.��k��f���H�Dr�.bD�c蚏E�3���)�7�
�po:�4܈�e�
��pܲ'4u�S(0�oݘD�cW�!s���g|[�ɨ�q@�4�@�S��
@�9�O4�UHNȀB���3�$�UK#�4dȐ�Q�V�jrs>��?TVӸ�ge�E-g�,	͑p.�M��>d��Z�"g/=�t�	������<fvɚ���ȱB���=���C�eB^�__�|�@p�q+�$�^}�#�,���$%��!�c���dž�I� *�)5����w��?���~�<�s��T�h�è�צ+�H���j��$�qDv]`��j�����J�6�x��K��c�����|
-�F�e20��tI
�D����ő/��/�\�6:�<�q]�#鬠�F[�a���.Yp���$�p�LoHbT
z�
,�?��ɉ��`,p+�2���3D|��k�	�.3�O�'94��5���[2o��醬����᎛�l㦈�%�6y���捡�ݑ���o�7��։���	k���X�z����r��P�&���/bom����X�[�ژ,>WQ�lU���Z�f��P���r���#n�'۝��W$��wW9��{+6�F��+������k`v�t��U�d��i����x��$�CEu@X��ћ{�t��pt��gUd�պ�Ǒ�xexM�"W,t�b����={��6�LUUd�'Dh:�G.|^h���.y~�EJ����� ~�yQ]�sx��U�"�Ը�ylV!���o�R�λ�r~��ص�'��br���E�����r4n�:�0�/����f��ꃫ����BkYm%�	o�ט��I5�:�c.mc�"�eR-c(J��KpK�Ʃ�e#b�+=�BǙT�B�Iˉ&�|����,r�����9�������x��]'Ɲ,9!:ω�#���A_��dz���c��Y�T�[��S��Xd\�~��8!��]���1W�W�qN+����Xx�4Z�g#�Rw_�S�=$��Yₘ�@��,��I��7X�)6�E�Q�>��K��[��91�}�wIY�	ϣI�^>Z�����ڿ�o9ǃo�˘[����0��h0ߒ�|\X,W�4ͤ����O3�>Ơ5.mal���.��Ѕ���>i�%�c�ݬ�e�
�+,���ѓ�Y����›�X�g,�j~�0�P��АW�y�P��BR�]1�q�l{R�b=�V�Dp<����K� ������6��.���b�eKY_���F!ߗ����c	�5�Rh�0t�2q����.�;���ɠ���C��z<�KL��({o���	k�+A_88~�{t7�;��dž����C?e��ewk�!*���2���\��l[��r�p�z�!w��x�h>Qx�EJ�Y\�f����5���!9�<ňcX�/�(��j6b�������j�j8@�sH��%Űu�Ed�[Yz�>����XmCCd��~P-Qh�戫�NL!-�sQ2�U�t]�N�5D�["�J�M�R_�W�B�W��&��u��(U�Bo�ʴ�W)^Q�l�5�W�jdK�b�?�@��I�N�}��k��f��Mr�kT��l�|#��Ds_ܗ�;��J�O厇?�@։oUT���d]_]%2��H'�lz�C(D��$ܩ�i���w-������ղ� �������n:܉7ll��,a���+ ×X��u��Jb�Ed��,v��%G��(K��c=~�ic�],�Ud��v�"=��c=>)���"?���
�GX�Y~��kV�����W���*����'��I��G�}�ץ��-�c'2�h�]#�ы{]���h����ܒh45���A��
[/I'�uֳҟhU�ޓzN�̧X��?���}�O�b伫�6�eIқxW
,�MY�$r:x�8d�/Q~���yP� e�|���HI�*�\��N��y|�Z�L�=��1ƪ)H�K���Ǐ4!�ېƭ�P�Md�$���1H*���Y�}HTT��f�^
��C����e��K�H'��RԽ��n���HS55i�D
��Ȳ�5`�l�j/Ig���S�}��t�?sI#kHeH�mt���>j~'�Z/y�Q7u���i�x��>!�3��Q;f�1�͢;���,!�,a�,\  �bC%&� �T�?�<=#u�Eω�,}ޗ>=*b>��O��Md^$�ۆ��
Ȃ��A�v���.�wG,�H����h��l6k�3t�����-�-����7
�?�)��l{��ȪTwv�QZu�<� "�{��s�jO�0��n�w��U=�"K�R9��q+�v��K;=�J��Q�ۄEǜ7(�HQtt���\���Ae2���{�z��T���Qo��㫨o,;Dؒ��{�m��	�kډ�d�*��i��j�6��3^�2�0�G_d4�\���8��z�
��N�f���>`7����T]�CQ����֪-�S=s~��!�\[���|�������X�>0�S�,���e�ޫw� ���K���\��'�Eh	�u-ݕA� ����y�2��{�n��s_(C��?2�
;�\��rw�ۭ ��]fK{|r��� K�Ao�s
A�!�!W��TM(2�Lf�B��ߔ9�5Ez��
n(�2�S��p�	i�(��
z�N�P.�1r=���:Oթ��?�<��[�Z���� -�Z�	�(/���ɕ��ch���@fc˺�ȻLi����C��w��j;&!2�&QD/�<���^5j,o�*���˝�ԧ%\R/���wK6��s�ܦ�e�xLڲt\��i���EV�'�W9��MA=�iJWW" �0�+���T25�T��J�ZO��W��I�1�f����h�@�z�6�������!X`^D�ʍ�lQ���
f�֍��5�e�O�j�"2�I&_ѣo[��A3�����1�@��Lk�䷝t~r�
�2��)�-g
=ĪI��"Gv�(�Y<t���
������x�G����	�?��e<p�嘠�f��h�i
l�|Or�&\��k�o+%�`U�l�#�w&��^zZ�#�	%�Lu�|���������a9�?ȷ�Alӹ�ذ����a��B�g��31р%�!���(G�=Y䣦It���A�F�:,��w9�e1��b^U���#q��P'Cٓ�M��O�|ɽ�..�P�B��
 �"r1������3��=��L�O��gN�DHJ���
��|�mz�7��!ܓ|dW�3�1�/��f4��i��P�SN�t�P��З������c�:�=ίpH�%��Y�
qM�Dni��+dk�h{#��f!��
�o�l��k���`�H4w�����|�d}�z!��/g��f�ŸG͈o�D���w����0������
iIM*�Q�.�K��Vo�BZ2T]k�"h�Lwq�P�4�H�-5"i0�Nc�.�4���}~ϳ�PF�߷��9O+;�<��<����`y:�^����r4,]������9�Jn�t�"j-��5�N��,
q�4z�2��&���-����u��5K����[NhNFTP�<�/��(���]2�a�Q����I��WL!D����ۧ�p��Z�naDz��vkS�Rr�4mǦ�?yg���/
����f�U1�6]�!�]$�=�2��qӡSB
��]).���k=���J�<�;��AJ]���R��)|��h�]�VwB&�(��&����R\�QJ�zu��%*�z�pM=1�����W���Bu��G�"(Yp�J~��ǃU�����1�x�Da�;����=ZA&�Y��U�-�E⮮��y��BV�`1�B��	��za���gԭ�=��k,jO?ΐX�͇	ޗX��QJl���u�v�p���q�� d����K�nT�X8��W��	#.yV/r���B�����o���:���5d��103�{����X=z��^��C'���WaP�f1�.�N�<b�vz0��MﭰQ)�t�Wq�C	��d�������	'J��]w$��6��p���!�a�	�O)F�:Ɍ+k����4Y��2�Xd���M�����c���;q��k 1Y�T�T:�7l,u�>��r g�>};hG�/�V�3AHY�#9?���;}}��*��t51��#w��^���U��PF��1�����Թ��Pk����҉g�dO��Xf%/P2�*����fL��I��IƦש2�0¯�f�L���a/��*�TT��rr�jQX�'y��A9��n�
�$jsŦV%I�+n*�hr�\��;S�t���|?1����z�8x��Y�n����_�߫��O����n�
��[�!]]ʮ�+uB�PR�3�E��

;Yw}\j��й�5Y2���~���G'4��M���&}����6b�#Ey���F2.�>�eH�v�Q�u�W_��������t["M�oz0��"%�Ycy�vgx	��~i����Ο�Iq�˚\��pmI
���v��Rʊt��o��3����YV��r�(�@�s0R�����5<�ds�17�\z`dd����>��S�}�� 8�J6�5{vqW��ޕNt�L*6� �B{��J��"������,�4#�؛.<\M(�k��a�/�|{Np͓,�b�$��b�	I�z�΅s�R�;��PH�Ֆ�����-8B^��^
�z�PA|u:q39&���������y-Vn�2RAA�2�`D�]k���V�J��H��Bȹ�s]�8�H�ۏ���n���C4�a�4�Z`�+��ŧ�d\ƙ_<�5#���u,�2"x����E:Y��d�28Y�[�gY������B;�T�!����٪�{�
�"��a�Y˼�P!_em
.``���g�~�u�NO�vX~#�����Y(P�!GZ'&�W;�T
>_:I&�E���'��w^l�N�����}O�18k�`�D��/~���y-������S䱴�X�;�+�qUBBKd
�Q]�!5��(���#�4�?A�ʅ0M��	ɽ�{%BRQ�c��@"ΚZū�B�ℝ*�|Ňa��{��ORd���{0��9�H(u���5Di�Ő�4���q�#��ئLSჽĊ��	M{�V닷C�`h%vvC���9c*YU'����?��������W�D�ҥD-:H�(B:�f~q����"����κy�9"��{�i빉3&f�jD��	�I<)��fy��.ÍN�5���m�F��D=�N�	��J�;�CB|{.�����
bI�Jep0R>�v��1�_�e�f�9��b6�)�s4���F��8���"d���l�c�O
a���{axH�r��F'x1��de�+���EWѕ:���FV��Ƣ--�>~��|��p�Ƅ"�������@���q�7Qu�8[4*�����QR{W'�С�&�{��o9�9}4���k1�-;����Wy����O��y��$��U���X��RѺ�m�[�g՟�PR7�g�ʴ�ŀ|g�8�1�q�c�Ѯ�6Q�k�t�;��GN�-�6D�.�\
��%�Z�Q��l�a5
9�@�}��+�
���Jj��e�u�	Lm�K���>:���u_�D`�w%G��뾼D�U;�M��T���P>���j�xq�"������B���@2���X��Sw�2���N(�Mũ��XNvj.,J ��q��L`�ύ9�{Lw��|���*�ҎxZ�)U��-�PS�#�~K�4A{@��IEND�B`�themes/simply-dark/v1.0.0/style.min.css000064400000016071151213255600013550 0ustar00.metaslider.ms-theme-simply-dark.has-dots-nav{margin-bottom:3rem}.metaslider.ms-theme-simply-dark{overflow:visible}.metaslider.ms-theme-simply-dark *{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-simply-dark .flexslider{margin-bottom:0}.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-simply-dark ul.rslides_tabs,.metaslider.ms-theme-simply-dark div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled),.metaslider.ms-theme-simply-dark .coin-slider .cs-buttons{background:transparent;-webkit-box-pack:end;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:end;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:flex-end;line-height:15px;margin:0;overflow:visible;padding:.5rem 0 0 !important;position:absolute;top:100%}.metaslider.ms-theme-simply-dark.has-thumb-nav div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled),.metaslider.ms-theme-simply-dark.has-thumb-nav .flexslider ol.flex-control-nav:not(.flex-control-thumbs){bottom:auto;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-left:-5px;padding-top:5px !important;position:relative;top:auto}.metaslider.ms-theme-simply-dark.has-thumb-nav .flexslider ol.flex-control-nav:not(.flex-control-thumbs){padding-top:0 !important}.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-simply-dark ul.rslides_tabs li a,.metaslider.ms-theme-simply-dark div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-simply-dark .coin-slider .cs-buttons a{background:rgba(0,0,0,.5);border:0;border-radius:10px;-webkit-box-shadow:none !important;box-shadow:none !important;cursor:pointer;display:inline-block;height:15px;line-height:15px;margin:0 0 5px 5px;padding:0;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:15px}.metaslider.ms-theme-simply-dark.has-thumb-nav div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a{border-radius:0;height:auto;width:auto}.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-simply-dark ul.rslides_tabs li:last-child a,.metaslider.ms-theme-simply-dark div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-simply-dark .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-simply-dark .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-simply-dark ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-simply-dark ul.rslides_tabs li a:hover,.metaslider.ms-theme-simply-dark div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-simply-dark .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-simply-dark .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-simply-dark .coin-slider .cs-buttons a:hover{background:rgba(0,0,0,1)}.metaslider.ms-theme-simply-dark .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-simply-dark a.rslides_nav,.metaslider.ms-theme-simply-dark div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-simply-dark .coin-slider .coin-slider div a{background:0;-webkit-box-shadow:none;box-shadow:none;color:black;height:40px;opacity:1;overflow:hidden;text-indent:0 !important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:70px}.metaslider.ms-theme-simply-dark .flexslider ul.flex-direction-nav li a svg,.metaslider.ms-theme-simply-dark a.rslides_nav svg,.metaslider.ms-theme-simply-dark div.nivoSlider div.nivo-directionNav a svg,.metaslider.ms-theme-simply-dark .coin-slider .coin-slider div a svg{display:block;height:40px;margin:0 auto;-webkit-transform:scale(.2);transform:scale(1);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transition-delay:.1s;transition-delay:.1s;width:30px}.metaslider.ms-theme-simply-dark a.rslides_nav,.metaslider.ms-theme-simply-dark .coin-slider .coin-slider div a{padding:0}.metaslider.ms-theme-simply-dark .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-simply-dark div.nivoSlider div.nivo-directionNav a.nivo-prevNav{left:0}.metaslider.ms-theme-simply-dark .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-simply-dark div.nivoSlider div.nivo-directionNav a.nivo-nextNav{right:0}.metaslider.ms-theme-simply-dark .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-simply-dark .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-simply-dark .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-simply-dark:hover a.rslides_nav,.metaslider.ms-theme-simply-dark div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-simply-dark .coin-slider:hover .coin-slider div a{background:rgba(255,255,255,0.43);opacity:1 !important;width:50px}.metaslider.ms-theme-simply-dark .flexslider:hover ul.flex-direction-nav li a svg,.metaslider.ms-theme-simply-dark .flexslider:focus-within ul.flex-direction-nav li a svg,.metaslider.ms-theme-simply-dark:hover a.rslides_nav svg,.metaslider.ms-theme-simply-dark div.nivoSlider:hover div.nivo-directionNav a svg,.metaslider.ms-theme-simply-dark .coin-slider:hover .coin-slider div a svg{-webkit-transform:scale(1);transform:scale(1)}.metaslider.ms-theme-simply-dark .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-simply-dark .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-simply-dark:hover a.rslides_nav:hover,.metaslider.ms-theme-simply-dark div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-simply-dark .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important;width:70px}.metaslider.ms-theme-simply-dark .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-simply-dark .rslides .caption-wrap,.metaslider.ms-theme-simply-dark div.nivoSlider .nivo-caption,.metaslider.ms-theme-simply-dark .cs-title{background:rgba(0,0,0,0.7);margin:0 .5rem .5rem;opacity:1;padding:0;width:auto}.metaslider.ms-theme-simply-dark .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-simply-dark .rslides .caption-wrap .caption,.metaslider.ms-theme-simply-dark div.nivoSlider .nivo-caption,.metaslider.ms-theme-simply-dark .cs-title{color:#FFF;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:.7rem 1rem;text-align:left}.metaslider.ms-theme-simply-dark .flexslider ul.slides .caption-wrap .caption *,.metaslider.ms-theme-simply-dark .rslides .caption-wrap .caption *,.metaslider.ms-theme-simply-dark div.nivoSlider .nivo-caption *,.metaslider.ms-theme-simply-dark .cs-title *{color:#FFF}.metaslider.ms-theme-simply-dark .flexslider ul.slides .caption-wrap .caption>*:first-child,.metaslider.ms-theme-simply-dark .rslides .caption-wrap .caption>*:first-child,.metaslider.ms-theme-simply-dark div.nivoSlider .nivo-caption>*:first-child,.metaslider.ms-theme-simply-dark .cs-title>*:first-child{margin-top:0;padding-top:0}themes/simply-dark/v1.0.0/theme.php000064400000003236151213255600012726 0ustar00<?php

if (!defined('ABSPATH')) {
    die('No direct access.');
}

if (!isset(MetaSlider_Theme_Base::$themes['simply-dark'])) {
    // instanciate the theme
    $ms_theme_simply_dark = new MetaSlider_Theme_Base(
        'simply-dark',  // ID
        '1.0.0',        // version
        array(          // assets
            array(
                'type' => 'css',
                'file' => '/v1.0.0/style.min.css',
                'dependencies' => array('metaslider-public')
            )
        )
    );

    // sets the slideshow arrows
    // to avoid the variable, it could also be MetaSlider_Theme_Base::$themes['simply-dark']->slider_parameters
    $ms_theme_simply_dark->slider_parameters = array(
        'prevText' => "'<svg aria-labelledBy=\'simply-dark-prev-title\' role=\'img\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 256 512\' data-fa-i2svg=\'\'><title id=\'simply-dark-prev-title\'>" . __('Previous Slide', 'ml-slider') . "</title><path fill=\'currentColor\' d=\'M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\'></path></svg>'",

        'nextText' => "'<svg aria-labelledBy=\'simply-dark-next-title\' role=\'img\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 256 512\' data-fa-i2svg=\'\'><title id=\'simply-dark-next-title\'>" . __('Next Slide', 'ml-slider') . "</title><path fill=\'currentColor\' d=\'M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\'></path></svg>'"
    );
}
themes/simply-dark/v1.0.0/style.postcss000064400000005571151213255600013677 0ustar00/**
 * Variables
 */
$theme_name: simply-dark;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

$(theme_prefix) {
	/** 
	* Containers 
	* This includes the main wrapper for all sliders, then each slider,
	* which is one level above the individual slides. 
	* Don't be afraid to use !important as needed.
	*/

	&.has-dots-nav {
		margin-bottom: 3rem;
	}
	overflow: visible;
	* {
		box-sizing: border-box;
	}

	.flexslider {
		margin-bottom: 0;
	}

	.flexslider .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
		/* max-width: 100%; */
	}

	/** 
	* Dots
	* You should inspect the sliders to see more specific rules
	*/
	@mixin dotsContainer {
		display: flex;
		justify-content: flex-end;
		flex-wrap: wrap;
		position: absolute;
		line-height: 15px;
		overflow: visible;
		background: transparent;
		margin: 0;
		padding: 0.5rem 0 0 !important;
		top: 100%;
	}
	&.has-thumb-nav {
		@mixin dotsContainer nivo, flex {
			position: relative;
			top: auto;
			bottom: auto;
			justify-content: flex-start;
			padding-top: 5px !important;
			margin-left: -5px;
		}
		@mixin dotsContainer flex {
			padding-top: 0 !important;
		}
	}

	@mixin dotsLink {
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		text-indent: -9999px;
		display: inline-block;
		line-height: 15px;
		width: 15px;
		height: 15px;
		padding: 0;
		background: rgba(0, 0, 0, .5);
		border-radius: 10px;
		margin: 0 0 5px 5px;
	}

	&.has-thumb-nav {
		@mixin dotsLink nivo {
			width: auto; 
			height: auto;
			border-radius: 0;
		}
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
		background: rgba(0, 0, 0, 1);
	}

	/**
	* Arrows
	* 
	*/
	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: 70px;
		height: 40px;
		text-indent: 0!important;
		color: black;
		opacity: 1;
		overflow: hidden;
		transition: all .2s ease-in-out;
		svg {
			display: block;
			height: 40px;
			width: 30px;
			margin: 0 auto;	
			
			transform: scale(1);
			transition: all .2s ease-in-out;
			transition-delay: .1s;
		}

	}

	@mixin arrowsLink rslides, coin {
		padding: 0;
	}
	
	@mixin arrowsLink__prev flex, nivo {
		left: 0;
	}

	@mixin arrowsLink__next flex, nivo {
		right: 0;
	}
	.coin-slider .coin-slider div {
		display: block !important;
	}

	@mixin sliderHover__arrowsLinks {
		opacity: 1 !important;
		background: rgba(255, 255, 255, 0.43);
		width: 50px;
		svg {
			transform: scale(1);
		}
		&:hover {
			color: black;
			opacity: 1 !important;
			width: 70px;
		}
	}

	/**
	* Caption
	*/
	@mixin caption {
		padding: 0;
		background: rgba(0, 0, 0, 0.7);
		opacity: 1;
		margin: 0 0.5rem 0.5rem;
		width: auto;
	}

	@mixin caption__text {
		font-size: 1em;
		text-align: left;
		padding: 0.7rem 1rem;
		font-family: Arial, Helvetica, sans-serif;
		color: #FFF;
		* {
			color: #FFF;
		}
		& > *:first-child{
			margin-top: 0;
    		padding-top: 0;
		}
	}

}themes/simply-dark/changelog.php000064400000000115151213255600012722 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/starter/screenshot.png000064400000001352151213255600012401 0ustar00�PNG


IHDR,���fPLTE��̖����������������ű������>�	pHYs���+uIDATx����n�@��
��#&����<{�b�V=�U��ЪGP����/��>T��b�H;�]�c�����>.O��ґ4x.~^ESr>C��w)�r����۬Z�8]�19���ki�X�����}G�O��i�)9#�5Sy0â۝1��|]�I:,��yM�L�}ܙ�z��yX��߬�FkY�ј��@��<3�̘�U��o6W��6�3��;oL���1t��_���L�ϲk����ɹ���|f�
U���TuX*�����ə}�-S��H����C�3��񋘢19/+�R���ܺ�p���y��[W-Ecr^�ZQ�	LJ�n�%MD����e���Hs�*��e����4��Iј��,�#v��H.�|\���l��6��[��mJ�o�~����O�n�vkM�뼿'q��uq�h�V�I��CW�F?S4&g��!�.�и'�.�W:��)z������N����U��w�{��x���g���塌{���;!�3�g��u�yk$�(v�jn�v�2U����:���a*ap��I5=�N�i�ߚ����Xu(Q��dz��a?6�5}?f^�/��|��R4%x�_=ts��IEND�B`�themes/starter/v1.0.0/style.min.css000064400000014351151213255600012777 0ustar00.metaslider.ms-theme-starter{margin-bottom:4rem !important}.metaslider.ms-theme-starter *{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-starter .flexslider{margin-bottom:0}body .metaslider.ms-theme-starter .coin-slider{max-width:100%}.metaslider.ms-theme-starter .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-starter ul.rslides_tabs,.metaslider.ms-theme-starter div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled),.metaslider.ms-theme-starter .coin-slider .cs-buttons{background:transparent;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;line-height:15px;margin:0;padding:.5rem 0 .5rem 0 !important;position:absolute;top:100%}.metaslider.ms-theme-starter .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-starter ul.rslides_tabs li a,.metaslider.ms-theme-starter div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-starter .coin-slider .cs-buttons a{background:#CCC;border:0;border-radius:10px;-webkit-box-shadow:none !important;box-shadow:none !important;cursor:pointer;display:inline-block;height:14px;line-height:15px;margin:0 5px 0 0;padding:0;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:14px}.metaslider.ms-theme-starter .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-starter ul.rslides_tabs li:last-child a,.metaslider.ms-theme-starter div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-starter .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-starter .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-starter .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-starter ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-starter ul.rslides_tabs li a:hover,.metaslider.ms-theme-starter div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-starter .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-starter .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-starter .coin-slider .cs-buttons a:hover{background:#000}.metaslider.ms-theme-starter.has-carousel-mode .flexslider ol.flex-control-nav:not(.flex-control-thumbs){top:calc(100% + 20px)}.metaslider.ms-theme-starter .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-starter a.rslides_nav,.metaslider.ms-theme-starter div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-starter .coin-slider .coin-slider div a{background:0;-webkit-box-shadow:none;box-shadow:none;color:rgba(255,255,255,0.5);height:80px;margin-top:calc(-80px / 2);opacity:0;overflow:hidden;text-indent:0 !important;top:50%;-webkit-transition:all .2s;transition:all .2s;width:80px}.metaslider.ms-theme-starter .flexslider ul.flex-direction-nav li a svg,.metaslider.ms-theme-starter a.rslides_nav svg,.metaslider.ms-theme-starter div.nivoSlider div.nivo-directionNav a svg,.metaslider.ms-theme-starter .coin-slider .coin-slider div a svg{display:block;fill:rgba(255,255,255,0.5);height:80px;margin:0 auto;-webkit-transition:all .2s;transition:all .2s;width:60px}.metaslider.ms-theme-starter a.rslides_nav,.metaslider.ms-theme-starter .coin-slider .coin-slider div a{padding:0}.metaslider.ms-theme-starter .coin-slider .coin-slider div a{margin-top:calc(-80px / 2 + 15px)}.metaslider.ms-theme-starter .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-starter div.nivoSlider div.nivo-directionNav a.nivo-prevNav{left:0}.metaslider.ms-theme-starter .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-starter div.nivoSlider div.nivo-directionNav a.nivo-nextNav{right:0}.metaslider.ms-theme-starter .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-starter .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-starter .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-starter:hover a.rslides_nav,.metaslider.ms-theme-starter div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-starter .coin-slider:hover .coin-slider div a{background:transparent;opacity:1 !important}.metaslider.ms-theme-starter .flexslider:hover ul.flex-direction-nav li a svg,.metaslider.ms-theme-starter .flexslider:focus-within ul.flex-direction-nav li a svg,.metaslider.ms-theme-starter:hover a.rslides_nav svg,.metaslider.ms-theme-starter div.nivoSlider:hover div.nivo-directionNav a svg,.metaslider.ms-theme-starter .coin-slider:hover .coin-slider div a svg{-webkit-transform:scale(1);transform:scale(1)}.metaslider.ms-theme-starter .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-starter .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-starter:hover a.rslides_nav:hover,.metaslider.ms-theme-starter div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-starter .coin-slider:hover .coin-slider div a:hover{color:#FFF;opacity:1 !important}.metaslider.ms-theme-starter .flexslider:hover ul.flex-direction-nav li a:hover svg,.metaslider.ms-theme-starter .flexslider:focus-within ul.flex-direction-nav li a:hover svg,.metaslider.ms-theme-starter:hover a.rslides_nav:hover svg,.metaslider.ms-theme-starter div.nivoSlider:hover div.nivo-directionNav a:hover svg,.metaslider.ms-theme-starter .coin-slider:hover .coin-slider div a:hover svg{fill:#FFF}.metaslider.ms-theme-starter .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-starter .rslides .caption-wrap,.metaslider.ms-theme-starter div.nivoSlider .nivo-caption,.metaslider.ms-theme-starter .cs-title{background:rgba(0,0,0,0.7);margin:0;opacity:1;padding:0}.metaslider.ms-theme-starter .flexslider ul.slides .caption-wrap a,.metaslider.ms-theme-starter .rslides .caption-wrap a,.metaslider.ms-theme-starter div.nivoSlider .nivo-caption a,.metaslider.ms-theme-starter .cs-title a{border:0;color:inherit}.metaslider.ms-theme-starter .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-starter .rslides .caption-wrap .caption,.metaslider.ms-theme-starter div.nivoSlider .nivo-caption,.metaslider.ms-theme-starter .cs-title{color:#FFF;font-size:1em;padding:.7rem 1rem}themes/starter/v1.0.0/theme.php000064400000003144151213255600012154 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/*
    Replace 'starter' by the theme's id
    Replace 

*/
if (!isset(MetaSlider_Theme_Base::$themes['starter'])) {
    // instanciate the theme
    new MetaSlider_Theme_Base(
        'starter',      // ID
        '1.0.0',        // version
        array(          // assets
            array(
                'type' => 'css',
                'file' => '/v1.0.0/style.min.css',
                'dependencies' => array('metaslider-public')
            ),
        )
    );

    // Sets the slideshow arrows
    // Can use text, svg icons, Font Awesome or any icon fonts (Loading a whole icon set for 2 icons isn't recommended, so svg is a better option.)
    MetaSlider_Theme_Base::$themes['starter']->slider_parameters = array(
        'prevText' => "'<svg role=\'img\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 80 80\'><path fill=\'currentColor\' d=\'M57.506,79.616c-0.938,0-1.878-0.359-2.595-1.075L19.212,42.843c-1.434-1.434-1.434-3.758,0-5.191L55.598,1.267 c1.433-1.433,3.756-1.433,5.189,0c1.436,1.433,1.436,3.758,0,5.191l-33.789,33.79l33.102,33.103c1.436,1.433,1.436,3.758,0,5.19 C59.385,79.257,58.445,79.616,57.506,79.616z\'/></svg>'",
        'nextText' => "'<svg role=\'img\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 80 80\'><path fill=\'currentColor\' d=\'M22.495,0.192c0.938,0,1.878,0.359,2.595,1.075l35.699,35.698c1.434,1.434,1.434,3.758,0,5.191L24.403,78.541 c-1.433,1.434-3.756,1.434-5.189,0c-1.436-1.433-1.436-3.758,0-5.19l33.788-33.79L19.9,6.458c-1.436-1.433-1.436-3.758,0-5.19 C20.616,0.552,21.556,0.192,22.495,0.192z\'/></svg>'"
    );
}
themes/starter/v1.0.0/script.js000064400000002524151213255600012204 0ustar00(function($) {
	/**
	 * Extra JS for the Architekt theme
	 *
	 * 1. positions the different elements:
	 *    - arrows
	 */

	// metaslider has been initilalised
	$(document).on('metaslider/initialized', function(e, identifier) {
		// if .ms-theme-starter
		if ($(identifier).closest('.metaslider.ms-theme-starter').length) {
			var $slider = $(identifier);
			var $container = $(identifier).closest('.metaslider.ms-theme-starter');
			$container.addClass('ms-loaded');
		}
		$(window).trigger('resize');
	});

	$(window).on('resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider.ms-theme-starter').each(function(index) {

			// slightly delay action after resize for a smoother transition
			setTimeout(function() {
				// gets the slideshow's height
				var height = get_max_height($(this).find('.ms-image > img'));
				// if has thumbnail nav
				if ($(this).is('.has-thumb-nav')) {
					// Arrows
					$(this).find('.flex-direction-nav a').css({'top': Math.round(height / 2), 'bottom': 'auto'});
				} 
			}.bind(this), 50);
		});
	});

	/**
	 * Get maximum height of the elements collection
	 *
	 * @param  {jQuery object} elms 
	 * @return {int}
	 */
	var get_max_height = function(elms) {
		var h = 0;
		$(elms).each(function(index) {
			if ($(this).height() > h) {
				h = $(this).height();
			}
		});
		return h;
	}
})(jQuery)themes/starter/v1.0.0/style.postcss000064400000005774151213255600013134 0ustar00/**
 * Variables
 */

$theme_name: starter;

/* Dots */
$dots_color: #CCC;
$dots_color_active: #000;
$dots_size: 14px;
$dots_alignment: center; /* Use flex justify-content */

/* Arrows */
$arrows_link_width: 80px;
$arrows_link_height: 80px;
$arrows_icon_width: 60px;
$arrows_icon_height: 80px;

$arrows_link_background: transparent;
$arrows_color: rgba(255,255,255,0.5);
$arrows_color_hover: #FFF;

/* Caption background */
$caption_background: rgba(0, 0, 0, 0.7);
$caption_color: #FFF;



.metaslider.ms-theme-$(theme_name) {
	/** 
	* Containers 
	* This includes the main wrapper for all sliders, then each slider,
	* which is one level above the individual slides. 
	* Don't be afraid to use !important as needed.
	*/

	margin-bottom: 4rem !important;

	* {
		box-sizing: border-box;
	}

	.flexslider {
		margin-bottom: 0;
	}
	body & .coin-slider {
		max-width: 100%;
	}

	/** 
	* Dots
	* You should inspect the sliders to see more specific rules
	*/
	@mixin dotsContainer {
		display: flex;
		justify-content: $(dots_alignment);
		position: absolute;
		line-height: 15px;
		background: transparent;
		margin: 0;
		padding: 0.5rem 0 0.5rem 0 !important;
		top: 100%;
	}
	
	@mixin dotsLink {
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		text-indent: -9999px;
		display: inline-block;
		line-height: 15px;
		width: $(dots_size);
		height: $(dots_size);
		padding: 0;
		background: $(dots_color);
		border-radius: 10px;
		margin: 0 5px 0 0;
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
		background: $(dots_color_active);
	}

	/*
		carousel-mode - dots
	*/
	&.has-carousel-mode {
		@mixin dotsContainer flex { 
			top: calc(100% + 20px);
		}
	}

	/**
	* Arrows
	* 
	*/
	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: $(arrows_link_width);
		height: $(arrows_link_height);
		text-indent: 0!important;
		color: $(arrows_color);
		opacity: 0;
		overflow: hidden;
		transition: all .2s;
		top: 50%;
		margin-top: calc(-$arrows_link_height / 2);
		svg {
			display: block;
			width: $(arrows_icon_width);
			height: $(arrows_icon_height);
			margin: 0 auto;	
			fill: $(arrows_color);
			transition: all .2s;
		}

	}

	@mixin arrowsLink rslides, coin {
		padding: 0;
	}

	@mixin arrowsLink coin {
		margin-top: calc(-$arrows_link_height / 2 + 15px);
	}
	
	@mixin arrowsLink__prev flex, nivo {
		left: 0;
	}

	@mixin arrowsLink__next flex, nivo {
		right: 0;
	}
	.coin-slider .coin-slider div {
		display: block !important;
	}

	@mixin sliderHover__arrowsLinks {
		opacity: 1 !important;
		background: $(arrows_link_background);
		svg {
			transform: scale(1);
		}
		&:hover {
			color: $(arrows_color_hover);
			opacity: 1 !important;
			svg {
				fill: $(arrows_color_hover);
			}
		}
	}

	/**
	* Caption
	*/
	@mixin caption {
		padding: 0;
		background: $(caption_background);
		opacity: 1;
		margin: 0;
		a {
			color: inherit;
			border: 0;
		}
	}

	@mixin caption__text {
		font-size: 1em;
		padding: 0.7rem 1rem;
		color: $(caption_color);		
	}

}themes/starter/changelog.php000064400000000115151213255600012152 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/social-play/screenshot.png000064400000126271151213255600013142 0ustar00�PNG


IHDR��� ~PLTE���
h�d�_�s�#E<2w�o������@6,|�, 2&6, Y�<1$J3P;'	#h`QWA/XPF`XK'KA8���{n[���'B*pgVnZDu^I��riS?������*[aG.������sceN9]H8k��yj����)
tti�3!("1��֐��ml`���{~o���{fO���OHB:L1)>�#��ل~����?6B�eLl����qR.
6kO<�������|����|h���zl������}Y=$��˹������yxw{�%Fx�YF��o��m'
�{����Ů�gO�lc�RH`���eY����30S�r]ABUTp�F_f!'L��|�G;�^5��� 8d�'µ�np�t^kѮ�_Z^\cozc����&
��֙q]���甜<_�lNW�U9����H.���;Ii��à�$B$Yj~|����9WOq���ݰ�ܽ������ˡ�e!"�������ɕy˼��Ź����q�Q4Np:��sU���۬�1;����Ɋae���v�D/���������(AD�sy���el����z<H����ʺŰ�hU~w�sDj��R��†$3�߷�'5Ȝҷ�����p|4���n��k�_}k�ɎPhS�ѷ���<Y>��尲��e&>���6iv���KY����EP����}1������j��υ���i��F8Y�<}�0���Lf�m�*��i}�Ӏ�L}�i���3˙DC��cf��y7�V�tIDATx��MhG�+�6���r��M�Z!mCaq��T��"(E�PJ"��5�rhi�*�J����C(>�P�R
i���fѡB��"|���ݱ���V��Yi�n�����0`��0`��0`���wn.,ܲ��7n|qcYr�߲lq��6������G��o����Gs��6�2X���E����G?ln~=77��&����b(�åO?�p'z�[�����Gs�s�ׯ�]����B�X���6���6�c��7�ã�2�TB�G�j�\�U��8�;"����g�_�z�m
Ij�G�����.?����¸�����C0�Ɔ���g�bh�����=�~^��m���m?y��7Op���ΝDpkgoG�����Te+�MD�n�?�q��ە[w��|1��/$���S�_pڝvE��=��jN���ز�x���}��)��/�J�]���Wu#&'_�W����f��Bn�s���Xͭ��S�T����n�Z?��2��(7�a0+x�%t�
�`����A>(��}����v�ѝ�htm��]�۷ow��֟[������V"���x<�c�㠳��tRw91v�.�N`w�+5e�Pq�HH�^�����F�ǫ�D&��/d3�J:���G�B�D
��լ-�B�U*�tN�6)d����f��	��=199�v��d������cF�N��I5ޡ_m�ϟ��?��]�S�������v7���(&��d2	&�]�����py<1��⌀�H�ݍ�A��n���������fS���1p���l�F.w���,T��B&��e2��z����%!dF�	Y�!��~�֗B-����Jp��.	�2�y8#[�~�}�,�D�w��|2r/�	#�`�g~���N�QG�Ŝ n㽓�t>���{�xHF j�7~~�f#nCHB�0_��մ���4
ʓ\Z*O��H�'��VVV�X줐t!�z�,!m>ڬH!P�N/#^�#� ��%�齎l�h[T<����P3���C>s�9p��qH.�C�?��\�z��"�����4by|�j�r�B��7Z���xgI'�)D��}2dBb�Η!8к(a!�L�@Ȉ�Ȕ^N��-+�`��"���):2La�82��6Ȏ�#���E���p�q7�	�3k�7�庞;F��M=��[O�u=�7��j���:��Z�٬�
F�O�(X>X�����f��
&�f�y��
uI��,*.8�8��fdx(�(�B�Y:��%	�p�?uw9�f���㶑r��j�fT����K����*א�Bȣ�b	Y��zNY�9�Lq�Y��r��[J伅�|ϗ���|��!����M�+����3"�$�%D"�DQ�%CJ��Fl��6!�nV�*�;�ɨ�ǫ*(�9��&�&!�1LX$$���!#1LY�9�L�mB��v%4��p
��B��f!�
;j��\%Z��2Ұ
�Ų��o��m]쐢peiB�Jʐ�B����տ�m�����@X��]Y!bY<��)�֜�޺�����!�㣁�Q�,tbC�V$��a�m�-+>;���p���s��~�Ҟ!��a\�b�'ʋ%���׻
9
��UhK���x���.<�=���W�Z*�(�L1��A$ͯ%w��@.ǎ��!���?=��
WM8aX�>����,iꜶ���Nl#������9'��F���R~Z��u޲��Q*{HAGoFhC%�U*�ԃu\�6㤈3����\>L��A,��{�p2���#������tB:,GCSSB����	l��u�,,�!�t���R�)d#�lص������;��s��h�A`%ϯ
!0�BʕT��6|h#h>�'�K�[�X}��CHO��O_�
RK�T�I%�<��6=�
��!�=���)b�O\4�����8>�KF�¼	-�I%!D���Ҽ��oo(�%��h�tL8ΞJ���2X�XB0:i#!#G��5�L�R�:�u���}�+�:��8>���=���/��P��.�Z��5��!��`�Лqd�l��:���~?�`����B���]lE2)�,�oXӴ볚
��
5vI��I:g,�_�B��SȽC[?Fө��_��m�f�/�G��DG��+ .���|����C?d����NϨ�aX�0:��a 	-���Ĵ��`��A2y��8BJ��׫��(��<
�L*�MC��+���S�
Xe��8a�ce�a�~\T����P9ިԞb]2�+G���Rv_��4 +��0��:�gQ�LրAǐ�!���.��i�!^�4)ĭ�^��̅^��YEDԈ<G�3�Zb�P�_�y�i#�4���!���>*�Wτg�����n>נuH������g�Kr��F�ק�"������L"�Z'P���E��#[�&�-����̆��.)'�)��P35�t
auH������ 5r��^�W�B��F%G;�M<CF�? !��e�@A�^VALY�O�{^!,�u��A�J����qB�	�V�C���B���
���%
��	M�r�BD��%݅8���>�,v�Q��
� RJ7��tq�'-��g��Ai���ZȐ�w�+��+ˆ�C��N���9�`��$��8C�
:M=�!� yK��>����UЯi��-)T1��!&�n�!���K!���h_�!�Tzf���s0�j�/zIH�����k�E��$��Amf��M�B6�y��BC��0��I�
>���Y���i�r��v�&���IB:E���Q�1CY���l��p %�4	���elK��	r�ҽ��֔�)}�7[���Lv�Pi�؎��Q؁����]��Riޚ�f��J�r��!�l�!�2D=S���,�y
:?�)q�L!�I�L�m��Qn@���@�t$��=,D�x%�8�;�P�
'����'�g�T[�K���
�Yo6��]o�۽�Bj�Rb�x���A�P��;4<`!+��;g1t`�\BXͤ�B:�tK	:b4���(�xg��W(C�S9��7ڪ�R]%\F�Y��S���3#�:$�`‡'�/�"���1T[T���4���I,�W{�x�RB�v�bBH�wŌ�ǜ��B�f2)�dB�2,�ܐh��:���"��\��"�}���\p2��[>��\��Ҧ�Jv�Y���WK�J��:d��c<rGi4[��~�����<��gq���X��5�M�S�,�dp"��"m-�:9[r�m0�|Ń�b�89��6�0�;L�%piK���r���,
l�%b��\�����Z H2,ZK`"�%�۲�E����H"Ѩ�f�0�	�(�/4����]�A�߉2`��y��=�-.��t��xH&��	s`�R�� GIԸ2��R�hH�`�a�_��"��hE�h8��X�?"��ok�T�h_7Y����$�������N���y�bB�./��Se/���`�
��tqȢ����K��cx���UБ.���@���' "��y�[em�$c?*n��T�1b -�<��E$��UGy��e�6��1x��r~S�ƃ�D?�p��ڱ ����&=-������ګ�.��?�Ð���Ag*XH�C���"s`Y��2 ܘ�������wp��!�Sn�>�B�/c k�߃5�-"^1� �$�A�K68�O����bNW���%'��&N6tL@ Bz:U'N|G�8<}��aB�Ϛd��@�5��<�@��H^�)i�+�p}^iqq^^1DO����^+�ŋ=L��@C�9��
��G�E�Z��g�Dja�$=9�<��=�Ljqй�=��I"V��Y?}�L��������@��ـ%�,�@�y������ĤV1)O��%�
fv<�Ua���z�0�c��:��\*�@����.UO$ypd{[�w�ַ<�c2��@����s��N�Ӂ���qDN�<V�K��'�A#�!��@R�)�d_�
W�?�"^A��U4��������#��a����ඦK��������i�+U-q8���8R�D��9��k66ɟI��[��CD��k�	gg~����" �@�>Xg)���5X�vP������\D�`���!�z��<n+��I��,�BT�;�\R!l�`bƌ��(�H�jmb!$�P�pa���N��
�;���[ݗ��p%�G�$�,�gu��?�v;����'H�C
@V�Vz*��: d�J&#
l��S��t�w�\�D�IIij����F7lچ;T*����3�H�^x��57�"J.D ��N5�H<�
�? ��lt���L>����O?% }��j5 wN^���'�!
p���?_�sD���ύ��-`slj��G{
�#{>7�	 b	@���ji��CX���(-����:q�B6�,-%G�h,����p�+G�P��M/x0<.�a���<8��_g$��H���䝣�~�|Hۛ3CQ�� 3��c�ݏ��b �}��ҽp����<}BZ��i
HC�Ƀ�0�	>�Lҁ���[^������<J�8`
�pB6g@n�`��ߓ �D������D1����\�+FaZ*I �R=�~IDT �H��?��.�X-����ѝ��w7����/�r �e���h�8�� �Q=��N�bmm�������H F�� ���u� �	Y���z��n��Ԅ�C�X� w9P�F<nf�Ɨ\G�&%BA(�����Ԣ%%�p�c��@��t��Ԋ]S;[;�ht�6B���OA��&�g�5�O�ׯ���dvH;$��{@��b�){�A@��D�D�	T����H�H	��7Rq�\�zk��;ō�D�&�8u �X_9E�j��D<�bPD�p8@L���ո�(�"Dtic�"� ]�[����#�������XJ�9@�3`pQ�q����KD4��NJ g�O� ^$���:K��M	�w�A��mBپӋ*<�"�j�R���@ "��BNU�Y
���w�7=j�� nm��D�ef�H � ��r
W��Dt{/mN�cU����2�i�)B{2�WR�ǹ���Hb.q�kwG�CR,��$���ڹ��2o�z�C2�H"���zk�&P	�tv�*�!nVD��$h�3v�(@���E��:gݪ�?��ő�wU�H[���������<�A8�3���|�"���	�+��Hx�|BD�C�ձ���tݳ�E8�Z��1S�����z$[R��楆��|dr�	�O
�)��'�����O@�F\�
�2)��)͊�6[�T>[�H�貛�j�jV��+���H�,���KjY�5�-�Gm���1�f	G��)�3ml�s��!bU�C_~��z�V�ܝ��=x+%��]ٗc1������ݏ��ᇓ'�0$ ��%ɡ���־���;6u���P��1U�H���N<�vL�V55-���Q�B�C
m�M �,��@({�P�K���*o�|��~���ab����>}�Dfl(K�'Ƞ6�54���U�(CZZ6Pb��d�Ѐ�!][�ד�R9�@T��$ �s���������:�P���A����WQ�M��B�(����ݩ�,)gO��AO0�+u.�C(8 �2hK���V1���ƅf�x��H����97ɀ@Z��Y�t��*�t �dh~�˗�C�I</5 ��Ab�.F�4 H"�y���z\cSS�wHHR&�U>�	!�e7 |�J�m��x�RJ��Z��n�TUGj�E/�	J]���"�
ܤ �u��B�	�cͥFE���@��f�A/��@|�葀ohhtr�ر�6�2 �ɖ�����ou�$�}�$
�4!�:}�4�9腾ȯk�,TH�T��,H0��EAF���ٛ(�\%�U
�@���@@�fU����s���%^��3��$����r{yDx�8�������@K���
^F���g�!і�O���@݁@Q6���b$����5�s�Ab�v&2��kI��@���0qac��bB�x��Ƴ�PeSq����V:���f ###��d	��}5�蓈Č4�TnaA=�e�z�{{;*?":�c�k�
�Ԥ�j��@��E�����l�@��-�`(���Ch`�%0��_��yv���vT���U3)��@@�֪�%�	n�@
/_�5Ag��@��!g[Y���H��.wP��E55������� ��:J@x%�P�P�ͫ.V��r�+G�:q��}�ęDt�8X1�6�E��	���0afɿ#2~�-�f
Y�\?������,vJF�<�ǃ��<n_Z�~�Xl�>k��a�h�9H�r�x�V��W/�C�Ub����mNj�J�<.mwW#��@�ޢ��!
���R@|�rK�D �,�P����&��-���v����-���W�Z��S�)
H�/w�n/U�F:��݀i7��4 {-z��f67�'x�g�6�5[��4/����H߸���[�]\[�;�L �8p�y�<�" ��'\�l�;�m�*���Y���t�H���X�҈�!�!��5g
�,"F|8�b��MΪ�R���"W��+~D�G��O��\����a�j5 ��b���ߛ�H�{l�'�y.::yv��Z+�����_Z�QgS
X����,]\�q0��J�A'�
U�&D�lU��ٚD�YSHԔ�
��ZU/�e���9�ev�e�D
��'%��T�P��*4;[^�W`P�Av�O����6�HE?�Z��@�6$�S�/��ircf|;���v��O�zff@a���K£aM�-����@ ��9Da-�p���X8[�����魪�3�6�֪y9^,�U0���I[�y�Z�A8�~�}����]S
�9�C`2[TWi/��h��w��`"#�=7&b9�C��#y~p;
`['��t�h�����c	@X�}mm���0uR*��0I C�� �5��
fC���H����\tJ�;9�2r��##��@���TjR��$�@E��
%n�+T^4;;k�/k�)V����>��!�\4��M�m8Q�"��r�j7�)�����O�9����,�i���i��Y9L/�H��&DB\� ���RD�
�/B�P��^��r��;@	u��;D��a��jtb���	��M�<\E�#7�*�7�M��{�_v[A�zX1[�@P�k3����1�R;��C�䫍ݮ�Wo�@����:n��H�Ʀ�ʡ�$vH�q2�4w@�@n��$�(�q�;G�(ý�r�LE�
R���Jq�*Ȣ�:�$��eYD���ÐIa)uU��$���"gQQ���e�•+.\��q3,B@�"9����81���2I'cB�+y)�	"O6V�`�."R�$F,�!��;���u"&��
U 7p�b���n�
��0�X���z[��rJ阇`ֆ�&�N0)��^���`�쮪���Jd����m�gL��:#x\9��V�l?�C��+�)�@�������rv�tm�GG=�A��`#m@E�D2[Y����CrS$��4	���F��@��� �1�B�W=����ֺx™�t'�秈��9=(F�(�n��S<rzaY�\(��:�t��	���s�Z�\��\7?��Y�0��y@�jI���b Y?�f���N
H�e�Lxc~�<Hoz�\"���5kߜ��NM�	Ę��C2�|�"���$q�q{{�
������@ҫ�Įnsꗀ5���r8� �
����jh�H�{z­=���܆��
��)rD��V��H�mѵ����d6f�n|t���#��Gˠ�{��7��7q�$��c�	x�Ʀ�Dd�J����@�NU"luU �M#��P1��f2�ݸLb 6�`"�X���P�=*)�?5��l/C���G�\km��z�ʙk�� ��)9� ��BT�3"���9��p����>�! "�9�~Y6Z�I!}S�Q��b����@����1��S��(3H���T��k�^�_�˽mB'r9Xo����Ӏ���ܡ��^kH����]tg��7(]�j�9Gj=u��\��3�@(�3�X�0�����:��%��ʗ�x��Y�$ڏ��6<ـw����y�� �ľ��7=���b$ ��0��4����nBLd�fD�nJC5Lm��zY_,��4�zH�1t�$&f�*F�(�.�`0=M@�]h�rf�$�;�6�s�B<5p��(��u�=�?���H��?�B@,�^=�`�3�5� ��T�c��!s����0�@��m 0��Z��&�$!4	Ŭ��)�l��� ��¡Sq�1�@�Tnx��@Ơ�5C�J��pj8��q���V{����}��(hp�)�AQ�P�G����}��;/��;d;kQ���y�}̙���b%�ANϛo~���"�.)�-��ҵġك�� �W�}��K䓠-n0c���l6n0���f
ŢZ�⾤�H�*D�w r0��uy�	y
�U"Eq����@�9}��ir�³o�ή&^i�u�X�EVR�/�Ex�D<�Z�Y�^�@��'���8ϺW7c��@ Lv�ǽ�2�,�A84��s�B��� ��� d1�G��~u��%�F�k��*D,R�T�E���~o�$�H�@�YW^
}�AO#f5�p<CC���S��>277Fn�I������WzW�+~(���9"�C:�hq�C���ܘF��rT�^@0�ۇO<�1����o�
 ��{qof�����o	76Pa��]U����eĺ������t"7*��1��p�}���_��mq��TP�Ǎ�1k1Q
FAW$�����WK�PD�k�ghttt���3׮��a,kn��3�L���KE��?
�*�����C@�%���X1`2j@���y��W�=�Z��oiQ
5�*�g�V��(9��6��|!F;��������؋K�ox��G;N~��/e��f��"	&��K�n8�
���o��4`XS@ŵ���J+C�::֮V\("�Rؘa��*��E�e�ԩC�M4>�9_�D�i��uN����}�9�g��	���� ����6=����k�b��J۞�+�Ϗ1��& ����?{#_� ᖿ�� "�^�H\�s�AB�c�>��.3Z��2[�+F�1�7���=�W����ǛC=Q��\�-�['�|^Qņp��<���Wʹ7�VT����=��$7�4�{�R�c
Y�?���  ���Ł��oߞ�7����J{�G�q`��K��L#�x�~@d3`���:m	r�Y]�;͇V��C��P���;��`��2�U��""�"��4�x�QBkt����.(��5�������#9�1�⡲��1:mcc��c��g��H��G�}<ӓY_�́�4��@|GTV��SeX��-���<ī���ƺֺ�*��͚���@ � ln
kq�n�ү�e4|=�?������ۉ���a�2�7��j�Z]���|:��;0$86i�@�Br�q@�� ��	�k�M�!��[!k�����	<����EWW��h��C朲���@�fYҶ;��e�ʣ��M�=��S����PG���
7�����*e��<	 �W����<���N�5Z_��/�
�[�J�4{{��\��~�u,�رJd��#���oE �"��Y���Z�b���>�>1���1������i��wU!��\�0
1��d��x�e����P��^����;�猄q0�)�t��r�����,�ժPE���ƱM�G%��JJ��}�qӣE^�2�Ĉ�e@J�)�cm��.V�1S"o$ G0!��?\yX`�ԓ@m���l��~�@Q�F�c��7ܴ���X{���<�b��%��ꕀ7�Sp_����"��O���l*Ռ	\c��?�h�+߱�=�ZVv�D^�&�U�D�׭��h�l������eq	ȦL�RN�]EI�Q��]-GL�9b]�n�����ĭ�0�*��z���5yk��j�,_���+Q���
(6Q��À��~��kt�#=E=����VY;�9�"�)��7�5�v���G���҇��)�>=HD::�F��?���W� ��	��I�n�Q�����C����A��ЈCK�9�jg��qQQ�qq��袙�x�Ky�h]UB�!Z�K��)O��>��^}x�u�D�+0̊q�1�����]���c	^^� ���ի�&p ���0��*.��$�R���D>_����*x��o�_~�@��}�5Su���H�R9'nɷ*��t�{2�*��q�;����p�C�B��K���+����Y"���H��$�Л��n��|>W�;���¤�V�e3`�*'
+�{�͑��bIqaa~����*�ര����ltZQx�=�|IO���P�"��L�3~q�
Udd�ٌ��]�t�����>Rd��+	^4Z[�-��5H�I�@�"�´�(o��.��bq���_�AFϝ��*]���RM��͵��+�������	R����E�r��+��!�A��h����7���8
@�HT���g�F��^m��-Ȼ��R�BCVNDĺ4Kڻ���P�f(�����P�W�d�q���#-uw��`l�BӶ��� �]^.�ɗ^�Wךm
F��_C<6���L��⚁�W�ć@��w�\�#�����B�4LwT�]�_M|s���\�"����T�^�+J�lʒ��(?ľ���KW�\�9D �l�1D�w�w8��r)�o@pt!�zz��\�Ո�TGp�Ca�؀�������o��bt`��t��(ߺ?62�#����S*�h�~�Jq��wޙ��EQ��njH&�p��]R�4s�#��G�!�G6����9C�Ɂ��21�&$<RŒB	�$8$3/����:��hŰH5ǁ��ɫWoMgC߉Q):%E=c��|%T�ሉJN�Uyn��n��C\(���B˱�0�4������_�4�
��*B7��@�^ɕ��T�g�$I�a�W!zFt,.Xlģ�&Q.�.o�l��˴#oA�G1 Qd�|=`����k4H�H��wn�VQ�A���/����G1����df^�b/��̄�L"��@B�1#�����U0ʀH�Cdg_&�j�4�0��t�2��,�Mb;�qT괪�-_[��ut�_ۖ��"7���ؓ�~	�!ِ��%�+�A��zρ�
4 B�2�hUkN�uq�f!ۑ�m�^ۢ1'fs���_��F	�.r#��@�����֊����������i(̖#R"�PĊ�B�}|����$ŵE!��S��i�����@$Sc���/�x@ Z�-�!�L���
ZS�"�9L���t�2"���t&lU�i�Ei	E�����Wn�۱3r-��"RJ���C��!c��
��� �g=#*C_�΁�qѶ`�-�vmW������h���ҶH:�D"��^L�H ��[���Լ��b���I�	��mB4!Hˏ �D3�"��њ�ϦKdɻ3�R��H�ה~���'!�L9���t�L,'&���D�z���IS2$�&�˔b\@�0
���q�t�#G��n���P}��P������s��?�ܓ6�!_�v٠�
��W�~�ˉЃ�"Qɕ�:��ƢŶ`i! �.����ײh�2 ����"� `���<`����*��TB1�eS=`�M�!H�&�I�֤M�����Ids��y�4:�XI5�d�'!T�2~����m7�I��`á�x];�220{��p�Q�U�9d����>�24� {�#�6`p��.e��>�W+,9***Ƨ���!�����@6�.6�O@6�$�-�蝲�.��a]�,,X�
	�����b3�T*�2�=�D�.9��-��+y��0إʃ6S�(�"d�ĨP͓phP������ɦ��ŏXd�CvE�*G��D0������{���3$Y'��9��Rk+���<N�v6U��h;]����,	H�^�)hc�u~m(�]�˳��
��Q��nD�գ�P��9����	k륙�-[�}�~Ӏ>ǺF��A@ ~�@8�-��\�
+��Zf0,�^D�`[��>"��R���Hd��(�/�H#x�:L@ �H�	*u�w�T�~�19���{�)fQj�YxYŧ�'!+7^��oʑX����<�����ߑ{ �
����%�:u��ԉ3m����v�X��@' �(7��������'o�2i���a�۹e{T�|6K���0U��NDf������JVº��w_�D4R�li��aaaaq�f�liW���Xzz�rCY	R|�ԟ] ��m�u</�ZJJ@R(T�T�7��I����j����D6�m~r`P̂G�g��W&N�ػ��Y��͉hi��������7[�M�10h]���ljjzo�L��8p��A۬si��x�Q�p9%{X�ˁt��
�\Ĭ�1_&7`�X��{����=jZ���A�YD�3ڌ��I�8 ��FV�ƪ7
@�xҋX+���*�LnX�-,�l�^ym3��ȖePea��yg-5��.M@@bt*�w0���1��|���@����8cV�	@v5ٷ���S�������o�<u#�"�$�R���`�L�4�ړ�l����w��C�7o�܍��q7�z��z((>��SB�=�h!�=mI_֠�O��YhqFn�@J��U���mH�u�Ң#�(��V���"���E�,(�A���oo�)��@R������b������U��*,lI�w�"�,Uy�b�fU�W��IQ7CE���Ѩi�Wy4�-���-Yq6���M��*�rjki�3�"_IM���Kį,L_�)�R����WW\�&"�l=�@�Z��sHSӞ���)����6v� ��M��C��)�/�~$����؎�Ǡ&��B��~�v��&/�&9��c@T�"(�"�X��p"�;������U<d�I�$���E��p�.;�D>����`�XpxŶ0���H|<�yg���7ӡ@$��쵅�hL�[��m���_ȮPO�`�֠��.{�
����T�G�A�.Wy�x��D������Ak�55�%ZJ���K���٬:��V_���)6�KL�й/�����
�" ��S[S[�c���F:^fG��l�€4�V#�_3]��UD�B�y]��@�I0�C���
�eǚ�o1G"�E�]��Ym�afqf�F,:_A䲁�J{���ц\�k^�px�CP��E�J�PR�l*R�b2��m�F���q�����R�������,�+�M߽u��
�X4ri��L���"�&CCC80��� ��צ%Ԟ��Ք�H&������{ikk;s��V��=M�==H����+$t�͎���Cx�?]��h"d��[���z��$�Ugư�WLz���H��^X�؞��°��03���44���Xሎy@�Z�..@ :R�����V�fj��F]nB.���#)���ʾ�@s��h*����e��aYų�"�L;�4�. �m�.MMW�FØ��V��~�ݢ���;x-�r���wmg�y��:%���1�O�~�ݮ0�� ÀDޤ��1R,-M�V��.�2!�1YdfQ�;6��IV�!�!����z�άA�E݆wrEb��a�ua����r|c��XD6�,�6��r}�����
�b����`���Y�Yw��Nb&�U0
3��xs��{�U7 �(����b�DF�!���;z`W
����Q")�0���-�تNH��z���N����NH#m'
(�p x۴��j�@I�@X���+���ZY�BbwF�E�r�~�q@_]4�YU&8�1����/+�y0 � �vj����b��I�4�URk�Qۊu>:�Ҹʆ́w�p
���mTt��Ĥ����
\�	uN0���߯�D��`����f����GV�i�:�A�Ä�ɞ:�d�����o|�o��;��B	��A����B�:e��A3CѰB����%n��m��n12UpD8��ۏ��=z��������Q����z��+�c�X1U�s@�/R
�,
6T������x�-��Qq+q��a�g;�k7��Ί]�Sx&�mU"�[�/.,R�`c�%ht6@�����a~1}m@B�4���~�G(�<bF\��!��!A��4�n ��YVG�/�H�_����!Vo;�C�S`:��W�C@q11��?!z�8��P{�ԁ��W�DSSϝ@��i;�-ui������6A�BN�rI{D\]cvV��JQ���l��]�44|k�lc��[J�=���
�V��yp xBA!�UZ�UY�X���s�#ݍ�хmaW�\��g�Q�4�� �z;;l�KZ��[��	@F���os���" ��#̘^"�S$YGk!B�;ܢ�S�	H%���]4A��C��V?'�:�q�8��5�l��[�))f@�k��zh�N0`��c�<:!��k��M���L�\i��x�ӹ��Y��mЁ:a:��Ru�5D ,f-��EŅDf)��O~y��,tj;���?y=`����	�i�¾ab@ 
Y!7d��TFLt466�k�C3H}n��7.���š��D�5^2������%n 
��ԙ;��=*
S���,�@�<�J�
bU�0��@���ju�Dj�(�ji��W�D�c5�W��d�(�����TN�wВ�y�G�~``���G�EU{���$T!NP�F��$�,h!�& N�u�"/^l����]R�ƭۙ՗���o��E��FwK:R�fo�Ŧ�����~�A�/"8.Vۨ�|���Q@ģU\��V]��`ؐG,H�H&<��$��%��!�Hw�� �4;�7�ŤA�:Z
��H�-�c��"τ6�1@H�Y
t]D��B�*�P�.� ��wQT�{��.-MN��C-��KN�svvJ�}�&%o||�޽�b7�A 4����"�-�E���\a��|\�^�|H\X�,�7��B�~��XM��Nߵ����Yy��6!EDe����#�ߍ��#%�\��S��{�=�A�JcxR�V��p�$��@�_����!�����w܆�}�!�3���:H�eզrD�V�J�ĭ���D��u��������:�����ӳN���󳵵B8���>�������'�S�&F�.Ꮬa�E�,�9�Qq�bac$����>,X��u>��b��T�	.���p$�+���E	^ >~���c�Uv{{	3����&�7,XX�B��	�?��Y]Ɓ�C�Mn nV��X b�@���32�zjh�\Ӻ+�{p}��5���U�U�W�D)����rd��j���8��ϟ?�_>w�9�)ѻې��C�:Y�(�q ."
�	U @X�6�wl��r���z�P������d(,��`���?���'�~}��'�|�ɏ���]B7Nݴ���p�-�^�{��������{�!����DJ��%V,����`C^��Wz-UXP�����Mz��@`7��x:�KND��J}\���$}09�U��5f����b��P�ܤ�F�ڳ�,oM��Ƅ��5^�T2�R�LJ��?��s�% ϝ�=�����~ay,Q 矻H��=rT��%>�4����ѽӁ?`�>.X�X6�ݏ�"�>�*~����nQ��o���"Y��?Ju�?߾��n�/FY##��bz��}����4�B٣o:{^A�:W_����nVn������e%��;�ʵм�N>���JD��b���N�A��f�$��D
 (�C�i���m��ȫIM�5�(����r�ǣ�Nr�I��Yz�/2��N�# �.;��,gWDŽX3 ��֛��0z��e�P���
N��g^��j�tNLџ>�O���~�
�~{�?8�;�pp	��W����}�K�X�׷���0��H{,4����/��2,r����@X��9�sM�At��'��"?;��E���"�2 ��]	�^��N��z���J(ݘ�V{��N������������Hr����g%hh�ك�."<��%�9}⁻e�9щ��}\�\�8����W:;)���KKo���3�<���ܻ�=���G?8#�w 8��m�H0�� a�WL7�%�&s%4�b]^�A`��gcCg}b�Yy;�H�� ?װ��=�% �z�$'��>�����_e��1l�ﰟ<��P��f^�p�ᔭ�x��Ԣ5�Ƨn+*��/Ӯ��`�f�X�rN.��n {+*���dQ�T�V t�yv���(x6M���.�s~�a��e�����>9i*.F��|���g��Ç��V���k!��0$��)?����Hhi�01 (�@(�#TYlT�#�H��[��bЪ�@7z@<&kOӉ�'lx��l�$O��y��Jt4:���4)�%��+�,��O��>����Ԥ�E�5��w�>����ܲ�#��{$�����p����b�iX�)�8Fhv�j@a�7]\�u�U["�|�FI�g*,9֊a��<����k���*w��S��t�?�@��@�x��$W�9����oX�0�VGNG�O)�����
��0dP8����Dq�Z'UK��Ó������û��|�v'�W/x�}S�488c˾�U^j��9��SC@�	Z|T��"��\B[d��$���֊�S��cc{����6�U��
� AV���Lj(q��`�֍E���b1���: AP�����)G�ʞ��Y�Ԝ��ẺF�c �F���(�o}�B
� b2�/�����pHlo�4t�S������G�9�*p�*ß�,�����ɵx3�"�?������Ci4�\N��ɝ��zz��)�ZM  B@(8�.��f�g	Hm������c�Ɋ��S�w�F��q#e-�	>�|"{гj���u���ꄎ����r���f^���WѾ6-��:�;��l�J�� R�?	c@��-'�D��6*8�����F.!&0
��`���,�U�Q!q�U�s�7Y��;f�B���
�P�xJي�_�Y�z���n�婧��|�Gh(�p�/���x�����Bq�"��R�� u�n����;��d��'Bq�"��y%vt�[ ��?��H7?�9�>>����>�B�<�0�5=�'��-T��`��[�>�jt�$!������Y�0�b@Ds�[U�o�`p"����N,����‹���f��K��c�@��wv�xx�j���W>�9N�-r�]��|ɳ���r(����TB�MV:��g��Ħv�c�!�!�����sr(��X�Q _,AZNk���6��4<���E��u�}Yv���BW��_5H���s�j���,�K)���rYJ���DsH��P	F���$�+8@J&,��$�c@�P����EE�:v�?�m�3�m�1�~�?��׻�T��]�0t;���!3����r��~D�*B�������
&i��C%ҝ���1��•t H�`�)�'�*j�fE3Kp���!��<��X�厜 ���17�@ y���v,�X�ڱS}�b����s�Q�A�Q�ޫ6��zI�VPR�Ѷq�SO=o,�&6I����/�~����E@‰��Y-��a��	��i�H�
8�ai麽��whhl�qC��Y�R����| ����AHl�m�(R��$��o���$r �v�ng[��L ��@@���"?p6��肟����7B8L=D8tY�^��ա�2Y�z�m��M˽םߴi�����ϝ���9\�����[�J�6~�) ��P��"O�d��v^��>��L�3juĄ_:�	c�q�-!���c�k?,R� ]7�T�hĸ;!ڽ�����e�XfU�@��!���00h��:��U:�D��0�Z�鲳��H�ݲ�l�52g:����!�
�V��?�^�|6T;3x��,rH�	+|T�Vw��ޞ
w ��7�����s���ti�U�K�����MN��D�o�4�GB.�d��]�O?�P�/�D )4R��)(�{r����-��@�c���:O]��A��Ll�(,�F�"z%�2���)OW��ै)���#,��&%"V �^�����]�@l������e�[��S>�+�r�p��roo��χ0 �W�j�A@
�h���!�I��Dž�z�B?�)�wGǀ�e�Q
#���B(?�- � �W���>A$R�YZ��J��c2U�t|���
�7���##~�pa�ǡ��t��$a$�q? To��r��Ր�$��htM�:�<FÁ��y��D���vp�8r�No:E�[D�xj�{��ڂ6E!�P�9��y�9�]�~��ˊCBLN}�hk% 0ȫh�0 x�##�
�(�[�i��h��
m2�
��X�����wk���a/�@�#�KG�EO���.��sd+�
�W<�XŢ��w���T�;c'�d@�/.�L��H� Ĥ�4�����9&ވ��#�	��X�z����@0�-�<�@���|n�5���c����3o�d(�Ic ���9���3 ��m�Q<���(�`@��Q	k%��
�xRg-ߧ;�9��HD��:��*��m���s�5�K]ij�;��|�a)u�φ#�3LY��Dix����	Y� ��7K��kԢ�D�A��#��mn66���K�ҥY�vҩ���=�I&�<��D/o^�����/JG�*TD�*��H�l�Ū�!�4���k,�  ��.{�]�k�`��DADB���
dѩ@&��,���N��Ž ����~yF��ͰZ��9+xy&ך+���������*;'T�p�5byr x���7?�	���#O���T�rI�1�u���s���{����
���x��v�:n�#�<r^Ν�̈�? �C�1!����xń��Vp Եr7�"H8��kKU��ȪQgWc<K�&�y	<���5��h�f�G(�Gt5f�Hۀ�3p��E�e���m�=4��
�ׄ?3��<$�\��-@�@�E��;�JH�u�	`��<�`E!�z�Ig�b��њAg��ع;�8�����@A������@NL�ZBV:��Sa�^^��ފ�X���
���L0��k7�' |��LS ���71!�!	�!�SH�OB����G4��NL)%"H�7-7-+)Y����^�(1��7\�M>;Ȇ��Ύ��1
ȸ����C��`�$4�A��E��P��Ƃz���j��vYY��{��@���
�_?\ê@V{(�� ��:��U���=T���d*�i����[�j9Y��!�&�z�ax����E&����j�Ny�>�,ɄJ��	�婥N��0<ט�jy��d�
�6�i��+�e����U� ��C�g^�p �D֙n���Д&įN�By�[�f/��5�lMS
v���ή�d�G��:�,xª="�!d�~�\�m-��;��9>�K�A�<*D,@ֳv�(ozR�s�9X��
{���Q�~xKQ�3���P�xՆ
�d"")<��\��9mq����Uq�z��uIPY�JӜ��/�t�E@3S�Z7<�!B�!��� f�)��e�d��
���hE@*���"�g�ܖe��]��f��5�X�L�S⅄7d��o'Th��Bƣ
��m������@0�X�@����Bp�
ա�|
Y憼Q,�lj.�O�1Q3�}"��A?���
$��%^7a
Y�O$L��YY�E��`a N�^�6�IUV���K#g6�f1Ha��"»w/�$9�0xT:5��L�_�,� �#���]'
F��Z7���]�0]�P���NhF�eu���dq��ii`�
����&$Wv�ҏ~�T(��z�iw>��y�������"?����ZҨ�(z>��3�!V�X���6H��E~��G���I���zk�S)"�gTlԪ�kqLݪ�}Q�"MQFV��I�d�/D�nS
�qt�@ ��%�% 2rHLl
"�u�����;z�}�lB--��z����;�fwӝ\��]��X�r�!WؔӸ�<�K8��]�����%$^(�Zj��Z}��\^����x`a��GĿ���:o1�;�ˀ�d�����qo`^�Y�ퟶ�M,��/��	΃1�F��D'��%%�8�����lY�*5u��%P��#f��#���.���_�� �'�V��_)X��Z�S.��ۆ�M�H�
��"��"0��u�Rly��S��D! W_��#�9�y���CO��>�:͌v�
M��[�IV42 �
D'��(J��(�z�Z�A���FDK�d.y���B�;�@�ˏ�4��@|}�`�<�DZ��0hj�X��&#��ܠ�Mk���~��]&}�fk|�_q1 �^S���;R�4 �
" �9��X��! 2�DH��k���:�X����Tj�b�Ž����H �%��?���9�ЙJ@V[���YHG�W�^�oqlȀ)[���7�?BD�7.� *�O0ԝa<F���)�.�J3�y�������ϙ��}�HIB��%�rje�)L@R���������*,����H���?<��U��
�0�O-�i@�E 9��dL�=�ci%��J6"Ƭ$��zዌ�f�1�Rg�Zp��2+�{�M7�9�k���o���C]K���^���C������0
L>r1ͣ���r���Q)u�RCP�J��u,�3v>~sDL&&�@d"�5{���:�D����2��j�4��Lw��vWlPY���s�ǕR�V�ج�
��a,O�@�“���󭧨^�D����/���C�3ת3��e:�.@"�s�O�&n<�p����&�CB�H�\<Du�W�W<x�(�*��xX��:) �ƈ�]u�=S;Zq�⇥K�8e��Ʉe*U�
*�
*R����Ĥ�9m�  �@F����cYB�TyK�c�����L��.��e�%b��LY6d@丐���1�����E%E��ֽ��w8�,�о�ø�O��c��[�tf�"�@��4�["�9�*k��E� �L��$dq3Ȅ�V�J�t��_ 9�ء�Й3��uY���t�$)!5C���LUR�"��D����C�qd+�t�l�8a�� �rm��؅��������d��:��+�e���� �gQN�\�H0��*[Aӧy֠߃n	W6����:�U����F��k�
�
�#�����7�j�c��3{|������b�!pHn����5�m�FIND�����%��,���f4GFF�5���M�i@F�꣙�(�Vj����e��\�l�V���…�C�x�-�h@Ħ�ĕ!��s�/6^�6�����̀�QȪ�6/��V��b�^1r�q�w�e�+�Zp����8�	h�c8����VL�.�.�ʽ�z{G^�򠕈3,bi+P+�GwE/����\ Iׄ{��@��JTA*���$4�b
��d���$,�ILL-O�M��v�:��Q]3y��(���a"�M���d � ��Оh���A��O+�yt�QLQx����Q�{���J��w��\� v��ؓ�[���r-@�?��EV����G�'3�_����+L7:q@8�Z����
|H�^�?BD�ݯ�џ�cD�X��k�-Y���ʂ�H,ZBu�WtdY��g1:'��9�X��j���v_��#��65��B�>Wg�0@��
�V�8���zy�=�2!`qۦ�r"��rJS�x�	�J�?��]�!��;"Q��)�]�9;���v�nҩ@ \�#n#���6���1u��΀>maȫ���_�z��$�)ӫ�*H�|�*
/K��v���!&�a���j(D1$�����^�4R(h�=��X���k�2���c[�����AoE�(ݥ�ӁO�&�>�,��2z'���	/��D'�1�?�9[\ܑ�ѱ).�c F9<�.��η+.v"Q�/� �������C���)>>L��Y�̔��"b��k�I��9C�ΒHC#��ΡsF���C�-*B�!:�Gͼ��C�[!�O��Ur���IJU�4�u�K�ޚ�����JH���>�8���C�Z
փ"�����"O<��~�~�/;w=��&��Ёʁ�D��ʜcǚ��5��?Y���h��4�X�]��?�_�s��ԕ
�]�;X��K�V��/�F9���A݋$�wصk�qC� ���@z��h�9Y	�X]��Z���Y`1�Ok�h�8Ñ��ܑ��`�ȉN��r�gf���|���5wK�V�1��d*c�\3��Ú`G|j�qtw�D,�":$(���DD��,yʸDl�i<v��O��V�5�������q�&~���	+y�" �g��.�q�P
���
�o{���C=s7��/Һml K��34RȪp�3�B����ı�%�x�Z-����G+����Z�K��9<�����}�^��6ibmI����z�: �a�Y�B�:���,@�vUN
���N�WB�]�e�2��i�b�g��j:���������5}1q����x) 7��N�M�w�`��ʍJE��
���H�ôauYq�p��H�5t(�ȗJ���KDEDD�ݫ^-6�Z-
�f��ٮ�Y�$�"�p�N���p}m�6U����"���H��F� ��4 q�����r�����j��\���8�~�SO���$[��GBWB��+����p\w��x�DܤŎn��K��l�\��P��O��c�mR��ֵ
��>Z�qp �Y/���0c<$hgF&BV���V��$�h�(�䂉��Q��/0U�)�`��d�@a�a@Ԟ��:��uw��*�
AS��UE-�B�K�b�8�����G9��
 �~~�y��~���A)�����#��p�^w�����~�WZ����q�3d��u|�rw�P��D3�W��ZM�cuD��J{�uː�E����%��33zH�ӕ7�Q)��E�|.Ұ��!�pĪy��T 	999��T�u����J�#����)@2=�Cx�7�^��KI�mh��|�x����~�Oy��P=”T<�DQ*	����1^$WK�r��eC���}-���
��1�6_<4��5��H�0��CZ/N^Oְ��C�}vp�wȕ(ձ��by�Xt��Vr�RU�$�����XaH�FK�kS�$�!C�X�^��LD07P(���,r7,�Y�mڻWK@�!&��ē�d�m�0��[��h1��Ǵ��c����6e����@�n��
<�����k|�
���@q��\t�Bx5�7�$~+z\�B[�--�?�����>��淰@{
������4x<w=�
l�{`�{���,��
c�V�L�d��@&uT������V�*���Dl6��5��l�d��%��d^w���*���"���@�s��T:��٣<Ik�Wh4��R"�}v�7B<�= _%�l8⿶xx���
.�'&R����׌9��46���7 �f����eG7��,i���}�*��"+
\(h
WHԭ���F�H܁$��(u�K�8HT_�>٤�d����}�,Kx�/H^i��'�F�$�o���Z[΁ }���w�Dv �
Y��T%�����Ul���"�b��$@�b��vР�=8\�Q<<��xp�ز�8�*���r�N��n��	�z��}\��J_�7h�C8�����,8�]g�I�x�{�֕���?�U�.�-�E�b�RX��g���
�2��*\�<�=�'
^R=j�R��� �N���r]ߙ"�@t�s�^���<�MwF�g�$)��9�o0��W�ݍ\-��*C؟�8�_$���6>�]E�]�S�wp��:�ڎ^Qr�
�Fѕ4�bD���)
w}���7d����7�S�0�PR�,L^:G�,(Nɿ=��ക-N���c�ZΣD�J�r*F�����^|K���H2JF�DA]_�s(�
���x���7��w���E���q���Rʉ�^�Ps���q�J�d�AZ<x|���,b[�1��QU����UbH`p�� ��Zw˿<p�t�% 6�˦/N�5�M~}��מ��^�W�C��|bB�IH#�E�b�uS�fL��W`�7VҎ�rq�I��L���^[B�R�JM��*=d�>������파�K8��ɟ���E+AdwB�P��lqyLo2
�Έ�V�#v�����ف�/H&F���j/Dj�W��q���vA4�sw4E,�F�h%�Q���'a�?�Г�*l�M�fZt@���K��cv"����^towx~���wL�!}��v��`�?�o?=��&�5V�w�3�Qe8v@o��iY�X4*��P��1fڹm;�7ӹ
uۖ஡�5�HG�"�QPW�v+�즂=�������<�dT�����a7@~ِE< b�̲w_�Yַ�R���CR����8�;�}xx�2B�D2.��\P������Tu|�x�oL���j��L��O(�*7vy�
�y��4��<�۽o�({eΕoIN/p�7hv?�E�\۹E~z?@�����YB�*�����c��.����z��z4�x�;�ꮬR�5�]�3v����n��NC���$J!D���ɧC���]�t;��d�E u�-�zS�ѣ��F�9���h�8�C� �w��,�#5��8�u��>T��_.@!�T�#�(;��c�a�/�y�R�ˌ��?�b�h��#N���o(|_���.y)D�kh]�ʧ
!��9��O+�.�^[��`<=#_?6�A*Ü�ϹEQ36���
v^F�|Q�a�g�m	=���~@#pm_��dE,(1el���n�4x�ʗ�A�NF��m�>z���_��=��*��b�9a�aw�C-�EFa�XWB����X0���B�h�2K,��V$A�v�2�v�Ě�]D��
�����Q���=���9G�)�"�߯�U�_��0��#}��X��s�5N@:���<���5�L��raD,F�������%$�2��L:j�L��2.@��AyR?�P�����Y<�A�{R�%h�������ׇ�}�1��y'ſ��ź<��tI�u��h�F�e�Nt���L�X�8�=>ފf \�����a-[O@�8��JZV*#L��G�uR�ߣ4�M�/�����i@֪)����  ʘ��w=J<�D���{gTg�!���N��8+F_6xܐh��[R��� �(c| �a����VaA��?u�_x�+���~�v�yH�8Q���g@�cM�Z
R-z��t�?o��v��s��|�e����?0)�a�$ͣ�r�>m��i��,1p9�?UK8�}�%��Oϲ�pZ�q�un�2s6��3
l򾞙Ȕݮ������# �Z}��6�c:[L_|�Hq�6xH��pF4P2A
#80��RM����V�9$��K�KK�	�*ʖTR�GF"��� ����2L�“^�d�B
_��z�qw�@*Ѐq<f�fg�r���.8��dAGC��8�:J$��!���̌'d�m�w���Nba�V��f��c���.�}�ʀ��`�U�(�Cˀ@���}W*MFI�&xX "b5��T����z͓���_HL�.�d8���	��p�5��1�J.�-��9;r�C:������d�E�ImK�3""��#��!�"��5 +�x
�����`�酅Z��\E9�c>���T�.��ӿ�����e��1�3ˮ�9�
r��սT��:j��f��&���C��C"
�0��_"!!��49��t;�Xhq�C�mSV��
t�	�j��j7J{�k�ߥ}���N����)D�t)x�Fʅq_�%򐁎�A���$�{&Y�dQ�EH�-DŁp	P���om^}�oU8��A��kkˏ�q�4,[���>E6xXE�u>��%���?��z�$q���vD)��)�����hD��Ni�@�7�M%����w�(i-��V�P��f�zTmRV&J��n,\�8��⡏�Y��04�.��]:�a���9�4�i�������#_��@ģ��	ֱ�D�
$,,��d}j���M.m�i������v�����;��J�Yo�H���,��� �ͽqpC����֙�b���M�˔H"q��\��dR�,�@@NpAr;%a@HJ�2���dlE�h8Q������~ Z5�F@�Z'��[�&��D@���E�,��S��(�Ua�k
�ch�n��k�v猈d`q@d�����b
<�a���G�{_����E����Jpjr	���qZP���t%�V&��2dg$fW��`p��4�10��p��*���.	@�A���r_���\E<��q7�"��H"B��`CȔ��q�h=&�F��BZ�w���9Gp��z!Q��G�N<&R�n
���)��O;�X:��F�p'���V�V�›��v���k�@p�������A�֠d���J@^{���^�\q���8^v
խ\�|V�M�Kgg��2��#�1i/�h<\�.V�'T2 �p9�F��x��K8��9g7w�k�O4��>�����8zH�N��;~`1Ю �aѻR�"p@ð��?[H8�XO�}L?�ݑya���	�p[*�X�ۚMD/7��u�ϓ/������5�8|@py�IY	7�d\���B7/c��χ{���u�]�s�Y$]�*�����d���]��E�XE4j(1u�2�;��z��-������{�E�T�b�Fn4�B�[�q_2c�ny�r��;�m�T�[��EHf�H���!�򍁀�V�ۚ��N<��?�l��9,��G<�ӎD�x����x,s`��po�5gT�ɑy�?~D�qD�Xȃ����`�KF���5 ��/�)=uK��"d���7��^���8���D�h�U<C�qe�
@@��4��iZIאy��Z��������	D�ע��pʠ"�G4�w#�B1ȉ�1jK]jlk�9�I�l���.� &!2 ��m��~�M���#a+"[��Ӭ���$ �[����spQ����...�rt����	4L�U��y��8��Ɂ\E��`� �4�rOD(8���ͷ��ȝx-�n��lI{�N�K���dwY��v���6���O�����<bzLt�]����ۈI��ǫ���X��c.r�ӊ��A�X�:>��O,D��ݧ~�`'���J,Q�ol!F��/����oZ�e@ �F`!��P�\�;h�cO���=��`�	ˆ�j����<��K�+�o^�$`��а���U�ʫg��6�;��qe#��-$,�A1	2Y���;�<��! 3����6777=wꔦe7NuL��+X�[A�Ւ)v����f�M58crQ��v���8@�a��>b�q*��{��:)�J<ր�)"G*��#��J)��@�D��:]q1� ��K|R�1�&X8X��{F�W�D�!���q ~3�\WW`o{�
B�|}���й�0�O/�em�(�A�|VQJQ
}$
@@��-�t��iu}����X�/c�K�\��ɬ�4�:uN)nK����N*?`$UUKf|
�i��D��H���TTO����Q����Z4=�m��	R(�v�'��`���ܿV�H�m/� �@N�t�9���p�4���u�AF�^�`iwD&��{pD����0����Ԃ�b��/�d��̀� LC�#�.n���])���+@2H����R���
x�)7y,=�W��x�+�V@Oǹs�4�V����8�@P���p�W��L&����Ѣ���lDDE��DXzg|����T�H�$����F��G�V���`�,F8x6E�`O@���x���1Y��Oz�B�Op  ���O���
��:@�j 7�g�"�}��>��'P������ݟ��s-��*���]�t�CG���ײ���k'�d#���o�g0b�q��ޣL.W(�b/�?�B"S4��(S��Ξ
�q�:�r�l����,��&FG�'�ܝd ����`�v���Ţ��th��?DZ�@b`Tld+sZ�6G�̳9�k0kko��t���DI�>��TK�c����b�4�漮��Y׫�CRɗ��W�qH ���ÒE@B}B�vY���ۮh��!�T��ck���eDP�|����2��R��*�<:��0<P Fjú��׊�����a/
�;��*v'�īOB���鏉c^9qbbu�MH�7�����XU�B(.�@�
�2�z=�޽��0mE��-y |��֜�U�Æ+�랞~7���Y��	��dQ7	 �Şrr��Qy����#���Qm����@F��V������S4�6.k3�S/�L�bn�+X+��4��"��m���P�${{I{o]o[\�n�
��T_xg�Q�-db�O�Џ�}����_d��i]P�K���B�=k��)$@cӺ��AȀލEH�X����%+�D̏��TP�;l�\r)LD�g�-� w����uV��V��>���;�y�Tr�&��%XK�%4�h�'N{:!ͅ��-p�h��"�W��h��+��y�P[\���
�|u�jB���$�c�N���6�}/l�	F�qB��7�:x��+�+ە�Qq7��O�\��o�k��n�'3�V�\�+������eY*��Lu6��I&����*�N��\$���w,޴X�'=���a �h\��Bȯ�s5���=��?x?���;�`�Ue��ew�(Z����CI�#ă5����B��Yd�:-����HE�1�����[�,sk�*Kw'U4��b�q[�sopQ9��}��c����zCv��d{�fs��̥=��v��V����X�k�=
}�c7��1��^�<#6sn�ܔ*��ݦ��[��x(>f=�3�u�
jd�q�.���2�^�� ��p8$��U@�Z�c3��]A�����bY'2
 �e��J�e��?�g��!II��vcsoo���>�A���C�N�n���E�����{������0KR?톅$zK5M���$�+�{�0�Ӓ�b�	���X�X��H�$�z.KZ�
e$F����Nf��x�T5�X~���H��\RXk���sM�����99����� w�?<�	�{*n%�K�������b��f�Fkn��gO��Sy�{,Hpp(�|�kU���?`i�SX�j�:n[�	n�
�h4�I$�E�]C@����;E��n�y��HyGm�v��f�s�q$L���J���JAV�dhՏ�5��"��Ͳ2vfd�B�1�	Rlޡ�ܱ%�9,�1�s���r�jul��|�L~�|u�~�œ��	@�����?p"~ ���}?�Y�����>��*+����<�BBY��ʿ�+W:;	� ���#���17�_M@0
C��75=�4���y,k)�4�[$
�$����3/C������D��@+6��-�xa�p! m
���e����O>p������"�!�$ �A����{ve���T�v��>��A�B8��e9t��J�-@���ۥ�����E�͓�M'D
Ʋ���^�qr
	@x���
��|r��7;�1E�D0�ͬ]����W��F��:,)��/�"7c•���|�
@�HLɚC5j��-Je���g�X��g�ت�9�����x�>�4jH��b�b�+
�'���S/�p�$Kh�F@nق�Q�3ӢTV�t��-9�m�;���2_^����ӥ~�8`�(��JU�/�E�ıT�S�?�d� fș��N0	��HpU�X�������G�|<�A@����Yf�{��7�8�G
j~h
�FC�J�G���Ͽ77k����~kN�ci�-��5MmNg�]��}�ǹs���G&=n��kLj�k2�D�e���\���v{����1΃Sn*fa!��"Â�Dld�O�2�o�S��ȫ���R]
�c��;�N�z��Rh���1 R���=��Qۣ�036���E�P��X'pdx\ȍL~F6@n_~]2Z]���Ў-�⺳H��ht�����]%�޿?�&��#�<WR�}��55��v�1m�R�a`�6j��\#��f�ݎ5�fM#��Ȳ�j59]��xY�	ڰ�G@`!M�@�|<��A
 G��7��)��
+q��G�*!$��/}@����Ŗx�3N���~��d�tN�[�1$��<-�Z����Sӥ�JKK��!RԶ(�B,�֞��K�\JXx��� 7r� jCZ�$��\E|�]��/��v��5���ի׻�@<��d������	;(�dauN��'�#���x�ܛ��n�r[�C͚�R�	<�nf},
������=8��l`X��!M���M�GZz�U����7��0͆bW��H 
er�dC [�m��9�W3����I<��5A�5Y��R���F �g���"Ua�Ν;i�{
���s��K&���:�)�������7�x���_H��> 
�sˏ�7�=Ւۦ⣶DP�A}[&*�|��CYX�h��
�����د/_�,�[n̐�`f&�(���҆	�5fs3��ڼ��5 ��l��J����@���
�Sa$ kD�mJ�%�n�t�lc�7s���6̎O�`���@ B`�%.�N�ljJ�$��*��c�@l|l�dA�ʓw�K�ݯ�\ݗ?���N(%mOZ��Ezh{f枴�T���jk�H�v.pX�[��F�q��>���o߱�%�����4�Zx��g�����a���H�	�z���^;I��<&`]�#���FC�ǔo�G���x�Ҩ)�h<�!$<��	<hd�fSO�i6k�N�J�������ă1�J~�������K����x�'k+sp�.VIz�u��u��M�-��,0�H,��n+�I{�		�2*3���]�# ~�p�7p$뀬.<�`���Ϯ�.����4�́^b�0����P��Ur����}i�+����#�5��Ym����3L�/��56�1��h-"�2�2�jUUiJ/n���;Y1��m"t�t��.Q��2.
&��b�%.�
I��6�FRėu>�����v�/�<�9睺��9s���~x�<��y��ģ�ŜT��~��8��	��e�7`$�ܰ��lrt.�Ɂ�O��'^�E�S�-�0�NG#��26��ʢ��Oe;�?(D<�UU���d�sMljl�n���O>�_�^X���-[>��wȖL��� �!L����~:L�4
�(��S' �9Y�8"H, ���] ����qn��,F���:19��Q��Ȟ����˯�G#Jl��#�Ah�*>,�,�,@��Y�z2�P��|せy�*�M��2�H.�@����)2[�N��W��4��
箨dz��Uȑ�#mf�l�`W$U��D�C��]w����u[@RRu��:�rqg�=�_�����`5��� �-�z�I'�@t:㭦1���1$<�s�_������� t�န
��?� DVKkDe��dz�KHzY71s�#K�om�l�&���HY�I��F�e	�m��h���H��	Jͫ��}~_QQ\�N��/I*�����'&���L.�,����_��B���pB�$@���V�?E
@D��n��~zk��:|��ͧ�u�:�= v��b	����Rdx��q�'T��U(�}��f���0�� �m��{�d}=���K��^� �^SP/�d�Kc����9< �JOJ��!��m��q�ө���_�,_[rvl8��&�L�$�Q"���L,=қ��°�����n}-8x	�$Hh�M� R�D<��ji��ɩkK>cK�@tv���q�4&}���9��ֳ��@#�>�RV �ƀ��D��y�B�5�n��HF�Ђq��s0!���_�DX�����L�ӹ�L<y[<~�m00ے����U$��L�� +)���IH&R�)-b�6��,�������YhZ�:x���$,�͜I���s�`�ΐ6�i��ԷO�}��|E�ݡ61���&u!�h���Kkm�B�稇(��vb@���e�� bP��S���.V�JF�R���1�nDj(ExY��4bn6_�ˌG		��GT����8u|6��V&��-ƣ�_~�:x�I����T���Dmd9F�w�؉�LDx`1 ����n�$D�p2)H��C���q�Zq��X�p#�:�w��h�r	�^.J%��'4B����qD,1`�Y��C���s楟�/����-[�K
$�h������0(��DD"D�Y$ґ����X.�`�+
]�����P_�����Hi)@��!&?6�����[�88�Iϴ���s���7�Q���֕[ڹ�V�t7vsT0�"�aH�(��8f �B�!7�r̴��8�,q��(:֞���O>_��D/���B ڊ�L��ٗ�F����rP)��~�@�YB'�Nf�&vȓh�_��[\�d�Qe����;w&�*O̒G�*e��x�����ʐŀ����"y�%":�'�{�<p�q��tw+`D�t�!C����8���YQ�JQ��OTybkۃ@�ڐv��+s�%�?wL~��8to�E2  �۴
�k����2(<|��[2�双
��ąV��d�+���'��+`D��Nx$��G�$d�W�����F{5(�@�:�8�`�r0�����ԟ�����Ä	-�^�x]��+OH�THlaGB�4i�;þ��!:��
�uy ��\��_��P�+��#�o�쌥�o�<����)���G"$NRZ��Q��$"}1Ip �o�eɥ8C\���L�3�����@$#�&�Y�+YV� ց'�qCOqS7t�`0yH"2� �P=�6�tV<���3�X�u�[\lB	�v�IT��'��dAB
 ��N�7W�6?WD�~����݇�<��/�Q0��OK'�2���
d)+*<�Ǝ�>�h��a���'!qg_��.=�ۻ�q����#�i�=���D	\4c�C��� �������H��-!k	��H��O~0�l
dS��7N^�:�$�\���ģ������ٰ���l	D��

��_$,��L���W?x����"R N�Dȶ8<�舘m�L>>��D,8����{E?�c8G��r�r�I��]ĪD�� Lx]!5!U!?��=)�=�7�FC�p���ڮ�<$,�6MY-�U�U�}�if���6-����	�(���5 {p
WG��XR�x��|p�z �k��>|�?��7��Hy!�*��o>��'3��L�F���Nj� ���ʏ�w���N��V�4
�Y�������J*Y�͍��"�^�A��E�4��}��B-�.�pг
5�#�t<���Vn�4x�c$�!�Ν�"0D'g��*�(R'+�7��//:���zΝ�i�*C�Sw@J�� �+^/+;[R�}O���}�"�Bq��q���`Ķ �g�
�F6��R����,�j��HVu�{HP��%*���le!;SMX�H��fՇ%Z�7M"�E"���{y@� �@��!A��7�@��Ǝ����*�u<]�c�� �צּ_�R������I��9���|}We�M�W��^�֏rp2�X��b.sO<���Ǿ�>r&�\0��#\lj��駜�F������VMlM���"�΍�1��r����P�{���ud��vo�����y�/y�@v?F4B�9I���;O[��dvp��c����o	^�������lzJy2�k—M/-�{��z��ʦfG����.�5 ij%��3�Eɲ:D6��t=#bEcWW�fQ�+��%2�DF$
��ЦH��E��_E�!�<tLKJ0JnL8��:D=�:YR�S�C�Svi�Af7�Y�vi~��r��X��8 N.D��"�Wk({d�[�4�[�t��ȍ7����>|��ϼ��Q9����5ܬ������Rj&ƒ�|��|�������s�&[8|��ۂ��\V�x��uc�B%�j��QD��d,|�f���/7-����,���f��3c!�g!�v�����2U���n#c)_mT��@pv��r�'��܃��-Ф�C���;g���
JZv�W�����o޷�AźY:gH�7��α�+�XV�٥kc<�P:���X�+$���<��lnn��/�oZ����ܷ���/�����ua�/ʮa�ﯦ�����m�Z�C��‰$u�2����	��B` �E��p����6�<5(�Ĉ(��p�:؅��5����غ��SI�����|�k�������;G�
�{�Y�_+�ʜ!��c�[@��3��E�kY��; ,Ь�F��(������S�w��hI���o�)3�����R��"n ��vn#>v��]l
����D<;	<t����)\=���E�Dy���"W� �\n�ı��H��3:�莭ĈN�|��Z��N�6��A������,,,|������9-@6f�������*x\��GxFʼn��ԨGdv.?˛��D���7�xc�k�4?��ą]<(�
#WQ���Jd��"@������LW0KW˟V�	 �� L�"�-�"���#�([(\U!^���	q��˧j!�,]�ʮ0�y�nu��o�=�?�yR��r�Ycc���%����ff(6�u��xF�t)�!9벹�L���;Ο}͚o�]�g�������.�o���C7���ˋEҿm��h	�A��s�u��0T �ՂB�XDX�#e
6_� P�_<Dax���k�ow��X	�y�Zt2h���޽{�D�ҟMQI��guCԕ"��Q �OO�x��.�]��Ԯ7���P4��y���,(�fD�\�1�IsOsS��7E��T�6�	t:D@b���
,قF���%��zDG�W	/k1&N
�5)��������m�|� 7LU�����Z�ʆ�C��ex�T��,+D���E2.�]F����G ]l�x�a~2g2
��th�D�L�OrJqL���`LHU͎�g�rB����3�Pa?���VC2��J��ds�Z��a��
�f��_�,ihJvE�H��y\�hԇ�|�Y��G��!�
�����ſ�a�sqsBPr\��1SW)�Y�9�;>�<����u�l�����S���)@6�J�ďu7'��O��ozG3;��ڞ����@�����K��b(8�9���ZY���n=�A��B�W�:�.h<(�͍��U���m�������tڀ�p),�e��I:�)��ʿ��B���R/��%�$b��h�)�1j}��9L=FCä������z�}���(`!� �c�94]*��BRR$�V���.�!8��¦�V��&A]�Ê0��e�bX��V㌃�{$y�,y� �ԎFPe|E���X�Rpk�Av3z�sbR��cv_)@�_{c��<4h2L$����#ʼnA���0�m�cj���� =F£�@�F�a���'�Ed j&�Cr@
K��}�6H�ި��Xp]H;�jaض�3���E>U�����e���� b�'Pi{K �
N9�@���9�H+��Y� �t�����(���Ia������G�,��c���X�!׽�<"�(�s6O�ʥH/Kq0~
��X� �H�B`�h��Nҕ��"�?;L.��H�E�DJ�5�1Ɉ���t@l��T����������z�����K�;^���Y{l�p�C!�c�w)�|�3����*��(
�B�b�rYXk� S$5�B A��>�")��I�"�M�!G�y�dbP��!Ԁ���Ǵ�r]��\e�MR-f�0Q(�l	6D�U����.B�i��ęJ�� 5���D$����X���/��*��ؚ%u�X�N�����S	�8!v >����}a�*#T��$D̴�����<J����D�(6�a�>��ཥ�\v9�
A�$@h_^|P��2&��C�ME`9NzY.S�@��Z�R<@M�5�b���2vn!֍qVf4jo�r,�H9�\9�
j7!n����;�R.E�֔!�C�D��FM�Rj����2���Zˡl�o��^k�|�>�?��i+��hr>@�wGL{s�D�ˏ��ni�_�,�2$���!�u�y�,��Ź��[j^
��HбqX��.�C�����T!�D��*�Il��DM"?�0���QG�(^,՟H�1f�bO#�{�&İrde {ע��'�Mn��Ǝ^��p�"�+��ΙV��@�	�h��ۓ�"��j9Ee��p���Jb���!|$�X�$�]$eH�"�Z���V�����"A�$Z�U:3��X�GO��
���bx�o���~��H�iT[�.�Q��M&���i�vɗ]�5V���r[�R�>��I�ڹ��!��<c��{���$�һ'�͋�eqx���a�Uy��G1��K9��O����Q�&�(v��ӫ��b�0������}d{;0�C�$�E��~������_G
n�|5�
����<����NNđ���Ɲ ��,0�2J���v�ԽO<�u/���`�L0�ˎ��p��J�*H$���dG�@�-���v��U%P�6,L�c29�(*P{7tPb�^*4�1F�q�SX���$����!9���Z��X@�����x��şnC�sS��fk"�D$r8l�dj�B��E�.g֪�+ꭈ}:�EĴ�G��̆��w�!QLfY��5�� a���H?k�0��kc%P���aAc(o�L"kR��c!%�)V섷S�W|��~��{$
a%ƿ�	�n��c�q���W��W��4@�Q�D2k�K�'���ǣ��H��*�n���W��b[�� 	@<Xq-�C��J拲E�'�`�
�Y{����H2`�1�|����W��}��~3݆F��Hn��^�Χ{�&v���ߏ"H�f�����H����g~��/������M{_
*�	�ޠ��n�JB��*���۩��Ŀ��C&�8؊ՠ2��������V	;�̽����.�c㬍�G *���$�H�Ębio�ULC*&�
���b�@�C��c���p2��Twq���<{�o�h4�Z5IC5�$9D��y��hϞ;�]�b_�}y ]V��.��TR�^z�ɳ�hoݬ
Y�������+�TƑ��@c*��/Ԭm�|.�����G�Х:�

h�D��k&����2���$P_,k������X�w_|����y���8�v 
�^���96����E��<��G��ր
 �
v��ht]����{�0� �dVX�&cd �U-��bE⺗˚�:�i�%@�52�+@nA¨��B������ŁH�H��K��b�0�Dm8�I�����_�
 �z��K�gW+n��s��b:��oЄ�0���D`Q�GS��eqQ��D"��GR����_��A֡#��'.:�Z�u�)�-����D �γ��C�*��j�'����ІI����B�LK�� iH�Aܦ@,cI���خO)�Q7��;��y�Fs��9�pS4��@�
(n���t|����!��������) �x�Yq]V�!��J�_��РPa`tP��w�����jSYn�����ur���H&o��>b$8.��jM�2�J���D�I$ Xb���2�^Q8b1��P�� �;q8�yt�d�$A<'��D��u��hf�Dd��U���d��C����0y�;�@�La�ݒ|J�p�=�����;��qEB��,sY!�� �f[l�cT4�$���:aځ�J@v�"-c0���P1
T� ��@�6���#73�ˎ<O��o�M3I�'�Ւ�T����8xq�r�@�\�4{ �

	��ݹ�[y��A��ph��A��CE%�=+��A=kN��@.��
E��x:��\yi��h@xj�`")(eE�<�
a��@�3�l�Hb�.��6��|�G��íU�φF��\��=�/�s�H7��`��b�����>��nC.�����`T<�廢�mk���	�0j�b�Hk1'��>���H �?��������KΦ�2���⬸��B%�rDݦ�e9$@PbH)S��{������Y��X:$��!��O����n�>�I�&�D��q�Y)o�c����
�v��
"�Y���J.�'���$�f��l����e�9�b��#)"fZQ
E�ϓ��A��H�N�#���8��I��T��j¤p�Y�N��&�irY��Z7ݙ���ġ���z6��du�u�,j�pj���x6h����ٙ����g�}'�f)�T�$�r�6D�,pB<,$yb�V��W mm�Ƕ��Ŕ��Q�ZI���Rġ�1�s�]E��V�]��}#ⶠ(�CiKJ�-�	پ�`�j�	wdɛ�[ �����_?<o�|�:@̤!��PM<%!ӄҎ{��c^���4���։@B$+y�-�����e�
��$T��ɫ����̇�/ �s���.�*NBǕ'�u���R�6�UT�!f�G�`���ZgqY��Q�G��)�����+x�ٛ�|��Ƃ%p���(
;����5-d�_��y������|�H����ҏ���w\s
<�L���
�Hr��#��Ԗ�:�D)H��bnz.w�rZJf7Z�G��j$ɳĦ���S��I ��H����_m�Q�L�^DP����>��K��c�3S�ա��5m„��#u�:��֑��E���'��YQ� =��ܗY*E���[�����RI{�-�!.u�A��j���35�������)$q\ED$-���~I�jEH��V��~J���t�s-D`t���?ܿ-���fc���.�b����|�Yi�o�K̤]���˲�5
(�,c��.��ĥ�#�a"��?����ݱ��U�b1�]V۰	��.k�a�C�,�O4A̿J	���I����0���pw����,M�$�U�XtH��:���� �H]�EP�+��R���2��&0�}�M����!�Ɂ�T�\u���q<����V똇��	�@���KK��_|��I����P����n9��H���%���:��h-(���&��Րk>����g÷;�dMI���B�y�̨�v��x��)p�
9n1b��"�4K���BZ,�2�c���L�9�e��d��:�����{�}\J?����2.߭?��ɫ� �Q��(.
��A޻�)øN22Q-��P8"��c�VU�#�D$���2[5fԱ�+z�d���-.x�FaS�ud��<LΦ$�v�S��(S�x����8��]�ۛ�N����W�H�H�Q�
�a5����RsV�"qQB�d��H�B$$(F$��I�"-,���'n��"�*z_*�&��%����a�n3+�`=��3c��*	VdO�F|
��#G�L����K��^����͡��eP�53,^�i�=D�E��O �9�y�!�Ue_�"�y�"�~���P/�ǚ��dz`�qt%�9q�d��p�WC�ن���p7�D��cFy����!5�n*~�m��3>[#�]scc�f!�*�W�+�INp��y4(g˖<�8��LP
8b#�P��P�Ci>M��D*��ռU>��*��eY��rX���<��@Z՗i�"���zҹ�]H��
���Ĥ���E�D��
N͒B�uX�nF�C�k}��t�H�4@1u0�1��~�	3]��|��[�kیa����Ӭ�
I<V}D�@�4�1���hΘ��@e8l$B���������*���4w�lVqqC�bT`�/wc�&��/Q���el�@���/?0r�/Ġ�ǝ�5VO&�]o���M��v�!Oz�T[�qA0f�nA�V�a4 1��:"b	�1�^��Y�1�"�p�5,
ڼ�D�7�첛�ݬ]�߅�„qݽ�[�<@��3�H>fw#��l�Z�VWF�p�LX��+��K
dn�:=aYJk�o:9p���_|�{�ˤ���ý�u|sb<�1H� �"��I�#��D+�I���A���x���3m���]Ú��0��:$�����,F$BȠY��Z�+"��h�]��+��hGް�v��K��h}�|��Ty��u+20&���)1�H7T\E�� �F(\,"���9C�0��^���t�
��@x$D�!��> �Ԑe�c�d�b�^'ѝS���Dr��q�f(4$�'���ߑ��5h�����_�>=@$���6��2�"x�Gn�F3��l�]��0~ǥ�Ҕ�DJ,�S�`�I*BiP)�wt-����)���薡���.��}�]rv��m�d��D'����=Kgen~��`�e��K&�T�i����k\�4�Vƙ,���̍1�!A���	G�K,Τ�|����;4�}������1�=�{�����<;�i�p~�nB�{�S��g�Ʀ��}��ˋX��-~>���O�'T�á�9�i�1x�&x�����X$�0φ���z��ֶ=�>�F�-N�F��J�`
a�+/`�a,�7��p`D1�7�wiL1���1�Y��>r���9?
C�g��Ҋ��=�7-��n��%��2���x� �w�ĵ��rz�j'r�H�v�P��\x�p,<���K���-�
��8��񯟤%>�!��j��`���y���tޜ��
ޕ�+n:
T85�<)ހwO~P�̈s�E�`�w�!Œ�/��+�脒�����M/�'��~����4��T�5$�E�-�6�_��u��ԑ%9�>�������oP��@y�,�M ���(��tN*��26��L�#)�u
�ʹUA���8U^�nvk���<���ֵ�4�ú��+��lA1�b��(�)v��7E�����z({���Dzmk�	�tl�NŶ��Z���+J1�E1V���*T�K�.3�-�9�T�c[��y���༶�E1]QTX�O�B\���{���,G�{O)�!w�ʐ���Cָy�ʛ��I�U�N��:H)����d5��t{&){Uњ�ۓz�H�uǓ�RK�;9k*j�ʗ�Uڤ��̟�/�eYxE���@ �@ �@�O�
�b���?IEND�B`�themes/manifest-legacy.php000064400000024331151213255600011615 0ustar00<?php

/**
 * A list of themes. For now they will be sorted outside this file,
 * but as the list grows we might want to start organizing this list
 * The type should be free, premium, or bonus
 */
return array(
    'bitono' => array(
        'folder' => 'bitono',
        'title' => 'Bitono',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Bitono is a minimalist theme with a 2-color scheme. Recommended for Image, External Image and Post feed slides.', 'ml-slider')
    ),
    'clarity' => array(
        'folder' => 'clarity',
        'title' => 'Clarity',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Clarity is focused on accessibility. It has easy-to-read fonts, and a straightforward, distraction-free interface.', 'ml-slider')
    ),
    'databold' => array(
        'folder' => 'databold',
        'title' => 'Databold',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Databold is a minimalist theme recommended for Image, External Image and Post feed slides.', 'ml-slider')
    ),
    'draxler' => array(
        'folder' => 'draxler',
        'title' => 'Draxler',
        'type' => 'free',
        'supports' => array( 'flex' ),
        'tags' => array(),
        'description' => __('Draxler is a minimalist theme.', 'ml-slider')
    ),
    'cubic' => array(
        'folder' => 'cubic',
        'title' => 'Cubic',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'square', 'bold', 'flat'),
        'description' => __('A simple, slick square design that looks good on darker images.', 'ml-slider'),
        'images' => array('andre-benz-631450-unsplash.jpg', 'etienne-beauregard-riverin-48305-unsplash.jpg', 'wabi-jayme-578762-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    ),
    'outline' => array(
        'folder' => 'outline',
        'title' => 'Outline',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'lines', 'bold', 'square'),
        'description' => __('A clean, subtle theme that features block arrows and bold design.', 'ml-slider'),
        'images' => array('wabi-jayme-578762-unsplash.jpg', 'nick-cooper-731773-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg', 'muhammad-rizki-1094746-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg')
    ),
    'bubble' => array(
        'folder' => 'bubble',
        'title' => 'Bubble',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'bold', 'round'),
        'description' => __('A fun, circular design to brighten up your site. This theme works well with dark images', 'ml-slider'),
        'images' => array('timothy-eberly-728185-unsplash.jpg', 'wabi-jayme-578762-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg', 'fabio-mangione-236846-unsplash.jpg', 'victoria-shes-1096105-unsplash.jpg')
    ),
    'simply-dark' => array(
        'folder' => 'simply-dark',
        'title' => 'Simply Dark',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('dark', 'minimalist'),
        'description' => __('A minimalistic, no-frills design that was built to blend in with most themes.', 'ml-slider'),
        'images' => array(
            array(
                'filename' => 'etienne-beauregard-riverin-48305-unsplash.jpg',
                // 'caption' => 'Here is an example of a slide with a caption.',
                // 'title' => 'About Us',
                // 'alt' => 'A photo of our office',
                // 'description' => 'A description is also possible'
            ),
            array(
                'filename' => 'danny-howe-361436-unsplash.jpg',
                // 'caption' => '<h2>Captions can have<br><span style="font-size:130%">HTML</span></h2>.'
            ),
            array(
                'filename' => 'norbert-levajsics-203627-unsplash.jpg',
                // 'caption' => ''
            ),
            array(
                'filename' => 'manki-kim-269196-unsplash.jpg',
            ),
            array(
                'filename' => 'danny-howe-361436-unsplash.jpg'
            )
        ),
        'instructions' => 'Optionally you can add some special instructions for the user to follow. You can also use <strong>HTML</strong>'
    ),
    'jenga' => array(
        'folder' => 'jenga',
        'title' => 'Jenga',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'minimalist'),
        'description' => __('This theme places the controls vertically for a unique look.', 'ml-slider'),
        'images' => array('michael-discenza-unsplash.jpg', 'etienne-beauregard-riverin-48305-unsplash.jpg', 'wabi-jayme-578762-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg', 'nick-cooper-731773-unsplash.jpg')
    ),
    'disjoint' => array(
        'folder' => 'disjoint',
        'title' => 'Disjoint',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'bold', 'square'),
        'description' => __('A futuristic and linear design that goes will with a dark background.', 'ml-slider'),
        'images' => array('artem-bali-680991-unsplash.jpg', 'manki-kim-269196-unsplash.jpg', 'danny-howe-361436-unsplash.jpg', 'victoria-shes-1096105-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg')
    ),
    'blend' => array(
        'folder' => 'blend',
        'title' => 'Blend',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'minimalist', 'lines'),
        'description' => __('A simple theme that neatly blends into any existing website.', 'ml-slider'),
        'images' => array('manki-kim-269196-unsplash.jpg', 'dorigo-wu-14676-unsplash.jpg', 'artem-bali-680991-unsplash.jpg', 'fabio-mangione-236846-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    ),
    'precognition' => array(
        'folder' => 'precognition',
        'title' => 'Precognition',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'special'),
        'description' => __('This theme has a special additional functionality that uses image titles as the slide navigation. ', 'ml-slider'),
        'instructions' => __('If you would like to use the image titles as the navigation, you will need to use FlexSlider. Additionally, to change the slide navigation label, edit the image title in the media library or manually on the slide (SEO tab).', 'ml-slider'),
        'images' => array(
            array(
                'filename' => 'norbert-levajsics-203627-unsplash.jpg',
                'title' => 'Image by Norbert Levajsics'
            ),
            array(
                'filename' => 'danny-howe-361436-unsplash.jpg',
                'title' => 'Image by Danny Howe'
            ),
            array(
                'filename' => 'manki-kim-269196-unsplash.jpg',
                'title' => 'Image by Manki Kim'
            ),
            array(
                'filename' => 'yoann-siloine-532511-unsplash.jpg',
                'title' => 'Image by Yoann Siloine'
            ),
            array(
                'filename' => 'erol-ahmed-305920-unsplash.jpg',
                'title' => 'Image by Erol Ahmed'
            ),
        )
    ),
    'radix' => array(
        'folder' => 'radix',
        'title' => 'Radix',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'special', 'square'),
        'description' => __('This theme has a unique design that gives it a sophisticated look.', 'ml-slider'),
        'images' => array('margo-brodowicz-183156-unsplash.jpg', 'manki-kim-269196-unsplash.jpg', 'artem-bali-680991-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg', 'muhammad-rizki-1094746-unsplash.jpg')
    ),
    'highway' => array(
        'folder' => 'highway',
        'title' => 'Highway',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo', 'coin'),
        'tags' => array('light', 'bold', 'square', 'rounded'),
        'description' => __('A bold and clear design that works well on a darker images.', 'ml-slider'),
        'images' => array('nick-cooper-731773-unsplash.jpg', 'victoria-shes-1096105-unsplash.jpg', 'tim-peterson-1099515-unsplash.jpg', 'ella-olsson-1094090-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    ),
    'architekt' => array(
        'folder' => 'architekt',
        'title' => 'The Architekt',
        'type' => 'free',
        'supports' => array('flex', 'responsive', 'nivo'),
        'tags' => array('light', 'minimalist'),
        'description' => __('A minimalist theme that gets out of the way so you can showcasing your beautiful pictures. Best used with Image Slides.', 'ml-slider'),
        'images' => array('danny-howe-361436-unsplash.jpg', 'etienne-beauregard-riverin-48305-unsplash.jpg', 'luca-bravo-198062-unsplash.jpg', 'fabio-mangione-236846-unsplash.jpg', 'olav-ahrens-rotne-1087667-unsplash.jpg')
    ),
    'nivo-light' => array(
        'folder' => 'nivo-light',
        'title' => 'Nivo Light',
        'type' => 'free',
        'supports' => array('nivo'),
        'tags' => array('nivo only'),
        'description' => __('The Nivo Light theme included here for legacy purposes. Note: only works with Nivo Slider', 'ml-slider'),
    ),
    'nivo-bar' => array(
        'folder' => 'nivo-bar',
        'title' => 'Nivo Bar',
        'type' => 'free',
        'supports' => array('nivo'),
        'tags' => array('nivo only'),
        'description' => __('The Nivo Bar theme included here for legacy purposes. Note: only works with Nivo Slider', 'ml-slider'),
    ),
    'nivo-dark' => array(
        'folder' => 'nivo-dark',
        'title' => 'Nivo Dark',
        'type' => 'free',
        'supports' => array('nivo'),
        'tags' => array('nivo only'),
        'description' => __('The Nivo Dark theme included here for legacy purposes. Note: only works with Nivo Slider', 'ml-slider'),
    )
);
themes/clarity/screenshot.png000064400000142106151213255600012367 0ustar00�PNG


IHDR�x|GtEXtSoftwareAdobe ImageReadyq�e<'iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 9.0-c001 79.c0204b2def, 2023/02/02-12:14:24        "> <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 24.4 (Windows)" xmpMM:InstanceID="xmp.iid:30EFB5981E9A11EF8CF4F3AA598BC762" xmpMM:DocumentID="xmp.did:30EFB5991E9A11EF8CF4F3AA598BC762"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:30EFB5961E9A11EF8CF4F3AA598BC762" stRef:documentID="xmp.did:30EFB5971E9A11EF8CF4F3AA598BC762"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>S�����IDATx��	�&�U&v�����VkW��-�"!FhAb���`�c{&�xc������#<O�;�0x�#l�j1B[�����z���̼���s�y��_ޫz�]�������53��|�;���gX��U�z�	Kԇ�^��W
X��W��UV��U���U�zի�zի^���^��W
X��W��UV��U�zՀU�zի�zի^���^��W�j��W��UV��U�zՀU�zի^5`ի^���^��W�j��W��U���U�zՀU�zի^5`ի^��W
X��W�j��W��U���U�zի�zի^5`ի^��W
X��W��UV��U���U�zի�zի^5`ի^��W
X��W��UV��U���U�zի�zի^���^��W
X��W��UV��U�zՀU�zի�zի^���^��W�j��W��UV��U�zՀU�zի^���4^Tk]�[�8�����頽"K�O�-?�tT+���#_��NXx��<��Y/v
�5�y����|}�_!�u�u�K)-�4'N���u�S���œ�p�-�4G��,� ��y{��1������4B�[XR�f�s���{uo~*�H��&��\�����ӒJ��$��'K����bQ*�蕿�v�^���ѧq\W�+8��P�A7��S���c�o%�M�f���o5����-?�X���q�����p�h���o�+���ْ>�7�l^�_����~fz:S�/�T�i�N;�sY�F��1E��AJb��A���?�wO<m��N�)̵/q�{����G��2��i4�tO��&<�͈�����;~s������Ep����ΊO����#?�ъ�|��
��A���S�G��kxIx����{p�|$�ó��w���cC�����/�+�ǯ��j�����~�m~͂�%e�D#Jz�:�@VGg=7�;��o�Wͩo=p�b�2R��
�*&蒟G���-����K��+����W|)��YXZ�+z�J.�,$y	C,�Q`*,9b���c>f	��Z��{#��٧?�/��S��
�H{\t/]�mh]<F��[mu?�ԓ�w�Ș�(/Ƞ'B��(�X���5d)e�k9<��T�+x4���J1z�b捥����y�x	�RZ>tRi/��^��
�"�C��&ew}��?��^�	�Y��L�s�M>����:����ͼ��)��7X|U��{xm�W4`9LPs�H��,��Wp�W�'��?d�YU��sa(x�{W={�,�Br�?��טz�*5}͔^�!mv����a�%��10S��*��gY�Lb�k�Z-���Q*���/�Q���R�:�n���tі<Q��K���F:���G�}����/0��棚��|0�Xa�G�ߚH�!aPD�J)/��W�KI8L�F�FpL	��/���2�3|>�����ë�[D�(��*�yqM7]��i��vdn�(�l��졆o
G΋�dZ9k96M����n�m�uJ+>��QU	�J%$i�����1�3���#?K�V^+�
�V����}���<1���.1E���㫄��
�g���<28�@?Y���4�j̆��"."ڦ�t�-.j��4�`q!
�y�:�� a���l�D!�.��`�G
����mQ����A1��S�yq-���$G^	�x��[���QN����C³����hI�
RS��gE���N����G��<Һ���([+E�|+�@�?�]��#�b�U���&��u:����3��4{�Te��F��
��M"���#�h]�ˊ��>�Dž��ӟQ���hui��bi��_IU�������$��	�̮�2J�L���/5R<4����"�ъ�c����Lg�᏶�ylDq\$�f�[��@�6�[S=�K�r@
D��f�v=��i1���S�t�P�ҁ_xK��_�%�uZ�k����T�_b6���v��aE�w�����u
�s��'[�ha�e�Z�$�g��yc�y��:�|޹$�gCX�!e�yBV�ٟ^H�/y$$8Su%�4�0d�DJ[��g樛�� c8 (���ݤW����$��,��y�ĨRC\^Cz�y�\Sl$�Ժ�XpD<N�9��P��1�&�ȅ9�����O��e���Բ��<ӯ�c2�$><] �2�n~ʝoLB5>]�˚c��)_��	~��
N%=��0�U^�PV��ͬ�P�e��ŏ�ë�L	ÂTA"����6�Ћ���r�2�'!�!]ƚ)w��nA���(�`Q3gA���XD� =Gr!n��Ws��X%�ԏ�6���K
 �1�(��O���>�'rv�Rx��I�8
D)��pp�=���k���K�?�w�ŷ�`R"�'(_%�/gVPЄ��ye��U+07Uy��%C8VX�ז=��ۗo���֜`E�����=%�1�����u���Ӱ�@51������B���J�|l�>��tU<UQr�\�?�o91�����?.Lq�D �$w�#E����L�d�	��E�$mr�s�? �Ԭ�qјrR�PJ	�CU��*���
5
F���Z�D��	�Q�N�	���`�Q8���@1�`�~'�v��(�|7��Rܩ	�8[��rs�:��-��[^M�,7W���q��;�].s�v)�c��h+E �\n���㠥�Z=ªz��w�\U%��G*��	�1��Q���r�ϖ�?1�`1��[1(�P��Q�`:q�?��H-,ea*�������*�藪��Xȩi���X�'Г�� �x_h�l�$H<��A�\�R��U#"K��+��A}�\o��uD*q}Kj����p*��Ӣ�JM�Ij
�5�9��l�"��l�_Axߒ�:x�
?�nV~��&��HqܥT��v��/FVY٢QSLjL��~�JN΁ �+F��V)"��c�҅B���,̠��4�JSy�a-�8�.HT��%�e�	8�ny��u���b�
:���7Ƈ��@z���%�
�o������
Ƴ�e�Bp)��k�pڰJ�J�����abU)tX�-��aC|*�+(/*�3�w�*_��*KiC���\�Ҟ�]��2�@��#�#	���A�3dC"�ϊ�J�֦*�y�-�)�9�*�r8EI̩�k'�%rp��GP�[� ��H�9����)*�Ko�P�aOX���@�J�!>F�����C������`�
)@�V�
�J���e����Te���u�[ݼ{seZ��j��,nR
&�慎y�n���4v����3t��&��
�h%/*ݧ�×��8;N;�����y
i3,�|�_�b1�A��`V��TQ!�Шl�|��'�~��A��$`<?CI:����HH�B�^0��R&F�'����T�t
x��>��,���#	e�����		*>�$������:!�
b���e��N!šJ�J��ܣ�����|}Ȃ;�Je�U�<����\T�$���+��l�u��-�!����y�7w*�(RR�a��7H� �n�~DEk�b�CaH�1���mc
�[��y����N��������1��%�r�{��l��Qq)(+�t�B�!*��@�5
����ghfY��^(�`�y~�mzLQ{q������'&���a^Q��S,]Ro�y�Y�bŧB��'��U���i�~A`8C�؜��U=�l�,P�s�C�{Oڮ��XC��T�UP<j��z�P�R�2���-ЖVWLQ�D��A"i��L֕;���Ɯ|L�(t���4]f$�ŏ�B>_"��g�A��L/v#�ح۰3\�@���/s�u
����
�x�i"��<ɦg��K3��0jV�U
^����z|T�a��8����c0�ΥH�)F!���̐������U��b��x�@�Ֆr#�AC5a�`<�S�9���S���y�cu� q$(�#�)���: �s��	5�����S��HN	dž�@�l�b���qas�EJh�&��zڛ@��*XQv@`:�\�H]zs�ta�`ئ���_��K�>�&e�>Zd��Ki_���LE�I^���ew=/{*�])��T;��L-l��>_��Z=y�҅.�s\���(��(�,�T`7�t,⮅1��>xP\ؿ`K�I�-�a?������y5��D�jm�k�
H+�ۘ�i�mp4�؟5�����TV���|�Ud%��T��E!�͇Y�Ӑ��è�(�:��U�ʵ����Эl$t�x����;9�B
o�e��\-K�朓�`ju~}��&��[�)jETZ���6�(�5�6����gN�I�tP�sg�@���Ci�v�s�\�� B O��t!���fƽ��Y-�-9�XAkzYq׺-���� �s
��鹚[��i��_u���?�ax�Qi
��4��b�
c��Y��[S��2hf+��n�{�\�BOAO9"•�V
�wTfO+�U��YǨ�^v��Y�>[�KZ�����Eb� �~�c.�"�Y�n4r��%�1Ia�P�[+�[��S �.����itS0�R�)x���y*�z�sX�!6��)>�lw��ga�U�����B�"O�yZ��4���(���M�,�f_����`MQ<��*V���*��f���y/�RT|�k�íCR��X���!*
9�Xe]�͹���:������k��"� cf�|G�F�t�VD1���x*<��/�T��b��� ��؝m�}�-r�9����:bk�#ݸ%ˬ��(f�Gz��KjQ��l��$ȺUw��w��=q��ZYIi�b;�X���F�x���Z��4~��yU��=^�Gq�
�%��.�U���H��nP	�2
�M[)'����%"�(�ǣ�5rp�Ʈ'��;1�$"I�V>�� ��/)0��IX���j�s���*2��k�ڎ�p�z&���q�@�u<��Լ���K`�,_p��~m����4&ds=9,@��%���-:w"h�f%��iuW*����L���=��u�뛪&a�Q��|��y)!y,j�\�@6syX�t�,�Rw�d�z�=iv�"��]'�8…ܔ �3g�ǝ_��l��I��Z�3���b6d�QH�S
�"�CA���V.��ȁ��Е���9a9��SAxT.��iƿX
$����{(�v-����V8P֤��7��N��?�̏[���J��jh��\,舦��7E��Xr�
RBm���/�Jp�)�d(�/���
���z֤}u���P���^�c"&��7��?�u�-w^*�n"�Td�	y�2��`�O
;3�T�	�.SB�yA��B�}!r�����K��-��Gb�9�x����i���v=ڰ���%���X�$ �~��$Z��ٷj�.`��5���k,���D�EƼ+��?
Y~D�/���S])��  㡝��Sz�=���S�{����U�U3ry����䶌��"�e0�lW��#p{��(G�f:�'��{�A!|g�
'�(�K���ӁRd�#�B���[���!	�׹�P�D[?F�,/��� �?�]b�jI^�`]�r�1�6OeN[��7d��'�-*
�*��ݡ��S�5���GX��Q8����
5����A�
';�S�*@(�759����6R�y��L�둌���@mQ2��7s�9�;̼q�…(���x5�[`�2jJx��0H��S�:m�՜H)���C��P�%�M��\�0a�����ݍeS@��	��C.�(�X�LR^�(L�ќݲ�<�m�>j�*�Q$5w�K�H�c.2[���n��JJ}���I%�/h��;z�v>eP��3�U�O�)�����2��u��d�b:����g�U��&z|s	_Tp�'���;��XS�
�+k;���N>ki���r�l�@)��M�0@�ʉ�C�:)e1�aUNi�g��V�kr�ڜ��K�I
Fa�>���~irj��tӵv����T1�]�ڌ�5+����k�-w:��P��Xka�D���]���&<<Ut�R���an;(U9q�}�D(��Ꮛ���˗�fگ�u*�=��j)j��5:u���$��R�U{PW�<^�����Y6Se33>W%ls��B~ն�(e�!Ռ%���5c
h6+���r�k"B��I
�V�!���y6H��j��
˯sm�S�
�b.��ĵ�T�Y�Lr��QB1���
��_�`+ӟ��8\��8�ZR���xr�.��Op;<�Q�l��U�N�tG�K�g�`��و���*�!/�F��1�k�(ɲ����LlU�p�0-���3'B[@�ڝ��euG����?R_qU�3Ƃ����N�!Xd�H΄�^q��PB�t�$+�M�S���[���%�&a�%�5ϙʹ�(�SJ�,"`����_�!�O��iX����*G%� a�V1s��`%7Q����
��jVy7O�W���[��7�N�~W� Ky�]���Hl�����~�I34-��i��J��i��M�sY6�t�<��y�֊^��?��U�=�ex�/6����&�F���r+��S7�3�TQ�r��V-���x�<��;P�
���@��(),�ν�L�\�`<dLړz�=����z���%E_+��*����1��	����V	d)$T�n�Z|��:�Z��P���9a~^�N�pǓ�0�.?E���2L�B������Yr�ԋK
sͪ+YEC"+�TS��Q�R���޽W�!�(!PW��'����/�;�ey�;�;~E�
z��#�ɘ4BL0�1��I��s(l�p�!\�m	~���&�_׀i£�)_5�K��CQ����"e�F ˋYq�2�@�O��A�5�]�����}��ߵ����Jce��Ya�Ѳ~RǮ��1e�*�h��5?6AQ���#@h-w���m�f��W�X���Җ}Z)��"v��D�WH�ű��
�ᨱ�8uG`�j��%W�v���"�naa���X{[��r�^� 0o�nYo�E��
�H�e�f
���Y��B�d�q��a�J�y�k�F#r��A���H94dG)|l�������z��щ���$BC�d��ƌN��sE<�ʏz��K�i��	E}�>��p�ݤH�f���k�>���K���/�o��R�<�?>�U��{۬��|�9B���q�ƨ�{��T{̲�W9>�u�J��"�U1;r�H�9���Do���ʇ�V�n�XsHxq��Ќ�B,a6�,��5r�R`^��<�$�Ll��8P��'=w�|���U�+r�~����#�-�~��4��
��M��Q�x;�y����rQDƭj��p7��ϋ�*
��ֳ�ٝ�a�thMU&��j�r��`�J���R�zN�[��{��^�z�#ç���k���+�3�[4L��ꇃ�������v����Ӥ��^T�6�X�`oØ%�$V��o!�HBp�T����$1k�20
��^h1�.�j��XF$W;F	
="B� ZD�uD���
�/L;�x/�g�cm=�������T��J��dQ�y�-�~��L�˃��g���T��n�s�y��^�B�9�K^1V�n-���
�,�]���u�aB�aSo��j�*�o���)l8}p�����A�vޝ�����r�J;#��i�x ��TPn���@��Z{R{p�GIlW�S��^]}%��0�9�q�[	+_`��b:�s����Ȩ�T���j#9̸^�c!Ke��+$;�jT.>�fA�Ό�%��)����-�>B]�c��xW�m;d�����"]�S��t!0�3�y�|=�f�{��g�Q��m*o��fݷ4+sp���5��`��L%��g��|�"f8^�r'�>™^��6#*BZ��@�?k8��'.*��)�ME(r�4���p���0��!�i/�y2�sQ���U�,��%]��vl�.�RWE�NwA�,!5ѥZZG|�)q�p�X%ׁ�f֔�z{���6��Y&>�|e�����X�ɒ�;�tw��l�-�r�[�̪�+	���K�|s�~s��7"��+�F=�2'��,$�\��W�Lx�b��{OE�ߴэ	=rڮ�pV(EbL��{O�[Q��!enV E�T�:�A�v���yt~.�~�B��G����~5��2g��#��O˔B��Ԅ�z&��D�)�N'�ַz�m�;
�&��6�Z������<�(�4�
	�����T�Y9�"�&]ͣQ�;��S[X����׵�}%+�r�N�2����ܕA�q1�:㿝����Q�����佢��ܣ�F�c�>�&?p.P�C�Ȉ�ix9�t|��#�&0өR��w�+0y������O
{�H�
�
�!���/(�"-�,X9�_q;��Q3��Ieo�۝N���z��Yk�r\{��5̨�gI�U�^	��rͅ����@���˪?��ׯ4�uΡ���V"ݭ|��
7��vD��6|!MVEvd)�+P4��7�$o��<��V�Z�&H�P��`�0��B��I-@,��2���l>�e��<v;JT�
l��N8\���MQ�f`����F%��V$��㢨1G�M��,�
�
X�N�	���s���A�M^�ܕi�ΠJ7�)W�EgG-p�*qAL�%�4�c��.�SQ®�]����@P�?̩��*"i0(���&�XPs3�aԤ8��IA3�n�j݈�+BSs�H�n�I��
{r"�cg�:d.�A|HW�Jq��bxTf�%���!I��/I>4Iں1c�+��LI7)T]����g��SA��KQp���t!����Hڥ:,��	8y�}�{/r�s'�q.V�W��<W�z�DX,�=���
ē؋x�91筓��ESXB��3��YϺ���^���SE).�*���C�=�
)(E�#	j$��xU����s')��ol��f��H`�#�<FDri7���Q��E�
��Ԛ�|��f'3��ޘ�I���BmI9�[�lP�1�u�`a͏I�P�����m���"4_⤖��,l���+��*0�z;�'��'C�
j�gʵz�~©9�̨�Y%)6E��Z�
wPI��@E4���b�2e=�������Z� �H4P��]/���}б����p�F�:Y'c���Q�d����"J2Vl~��Hlŭ���9c���F���,i�v~'�@�|� �v8�6���:��o��v��/=S��^����������'��G����OR��']�K�V���:Fk��v���N2ݤ0h�r�	h�q�Vp�<�0�Ġ �3���ql4��WG�F���vk��iP��AQyɗ��_���,�0m�n$�����'S�H��w���wQŌBtI%��恾}���%<<[��Hϥ��0r�9���םX.�n�Ji����/F�����Сޝ��R�FL�tX�\ҝ����:V��Q%n�`pW��9�rv/����M䊴H���)$pprr��y`���
�K���	��g�D,�+���eV�ƭFA�#8EF�Dth�Q\U����P%�|���	5i�})"D"�:��T̍RY5_遷ߢs��s�z��,��l[���D�D(�vTҒZu4'����J�d�'cE�Y��t�XlE�%Gf�Ԛc����9�$]�8�BX�`�ƀ�C��d����7��<���3�o|+
π��֘H�h+CE�\:�-��H*ۓ���.%�9�M.����:<��.lM�[|�lR�e�4��jr
̩L4DP������a�4m�A�%P�K+n�4�/۳����Z
��oʷ?侙��$���'���̗�^B�C��u��pL�L}aQ����}����ꅌ�#�[��N���H'3i�r�)�<E�h�
����n7���?��Ow{���vs���T?�q��
��5�R��H��((�T%�bf��|�׾��GoI{�`�0ng����S�QZ3#���bV�D�"D*& K�:�c>�]Gւ�\�h��j���\��:����ch��'�÷�ۚU�s��W��x�zQO�of�[�=t�����q�p��tN-�����Y.���,g��K�x�/����7��?�g��~�[_���O&G�]���72m	sZQ���s�͡�dm9k�W�Z]X���H����2���
������(]jb3<��Cgyj
�f�ָ�S�m+��^�X�dOvɅ����6�'�BV
��CSB���ɢ�}�����K���U�el_�i�+�{�B��b�re3עQ�D�`+��8��TӜ�L�y
^��C.�k�_���{o4z�����;�{�xo����H����0�_������sg����r���Q6
���oM�\ޓ�J���sZv^�i�HKɯ����	ۀ��_P���ͅm���xq�Ȗ��n���w�ZZ�����fE:D��TJ��@��pW Zv��.uS�4Η��AՂI�̤<V[�l/��b�N�n�P�H���A7��oR�8�I����b��x�3>�L`6X�㑎'��L���N�sk1qJ&E|t�z�r͌W�_P���?���Z��+���a;-�}���2�U�Z%��IT�faU���zP1��r�����2��������R(����+�����a g'm�ӥ�;ӯP!�&{�/�k�wnJ�^�9C�����'^"[V�i�������!�t1Q�+��e�$�>F��B#���5�[��ͼa\
�e\��{9�����
�G`�B�%QqT3�]VA Q��
�b!�$��n����,Km�hm��T�
�u�
��K��{�E�x(�0�@TYD��
A�2@�+�6��D�<�:(7��!�窠��W�oh�J}���8��u�l��WN���u�K��_|:x%V��ӓ"���zY��6��eax�Mٶ4�Z�H�W�geO��ބ��:��`�%4�O'�/��zQ����y�gY�e�
U8�K�J^�Y��䠑Lʇֳ'«��e2��
�)�"L�O�`i���
g�u��Yy����@`�c�v���1�%)���	�gWx8��Q�J��2]�N@8�|���ӈ��ʇ�d��$8z!m�J�~��m��@�)���������Hs{�~���
��PjA�[�B�sq�?��
f�D?;��u!�0J5�>(���ȸ�c�3TŔ3nU��9_ƽ�*L��EǾSVX0��Ra��}��[�C�Q��+[�K�uT�`�"�EA�9�4y���^y0R�Ŭ���s��J,[�G���a�FZ�o�L��
��i�|��n�@F:7>�w��Xi6����s����g��?�崅���/�whA�G�饼���m6'�C��B����Z�Ty�r����)/����%�A�3V�`Jnۀ(�s׃���\��?Α�ࡴ
y\�`0��j�0M:x7ˋ�dE�i�+ڢ�~�F�S9���O{�A�������֩L�	o|�9
B�܋��~��.1	��DUG�@�Z�
կ�h��:�z���5�F)������LJ�!��+��$+j0\�~�~�N��w�Η�K2��w�L$�4�?A6Â���4Q��� �}8sQ���@VN�\�F�[ԗ�3�
&�8`�<FB���p³���D:*Hl�ީ�)���	��sm��w�X��C;��ن��FLJ3e֊مWa��qL��OZ�C��Q�ڹ��N�t�-�
~��OO?Q�*k�"J�]��<X]�_-�/�x%"��2@PU�)�,���[��k]lg�a�),ác�Hc�q�BI�羿8��f�9N�1|`<ʤ��qd���� 1�v�Ebnx;2�%�׆5�VC�h�+d��
��w�D��Y(S���Hx�G�*d�t(@�E
g��$pO�b
n��������S���E�ة�,�t/���ٝ���Z��"K�`���n��_̾�&�
J�m!�W1#��l�V�v��3ms"�&�$Z����z�dG��ϝ��1�|����2���]���Q:N�OZ�xu5����ϪgDt.�$f�I��?�����&��?��w�m���(��h(��PAf�B�|�x�0�l���tj��E'Eq<�a6!��JO����3�ɨ��y�N�N�t����rH���Y����*b�鞻�3��3W�'�~=W�:#�W��.-.s4�V顡lN�ɏ}mh�m ��AB��L���ï�to"�$M�a��|h�`8��I����؄��J}r���g�^��s:
�P҂���B�O!i�g���|Nh�8��Y�=5���If�ښŸ���;\c	��j����@dO/�����#��з���ff���w�\��2?-н�=�9��ٹ�3�9���]2��!�o�����-③�fV�y��3]jⱦ�k�E�Ke"��g���s˦gP�a���gKo�q���A���������XE4�ԈEg#�����w�&R�lbRF�D��f�q��!%fC��I�6���Ŕ�0�Q�͙�<�o�Ѹ`�2���F���V^����r�N�w�{�Nj��V��J��"����-v̏cӬԊ[��P��zO�<�vW�Q+�Kt�:z~��l���U�y�}��#?��8��{�b����������S�{n}�%�\�)��wF���E�vÆY�k`4�<�DŽ��TEd�<���f�43CE�NG��BxEO:��C��v��l7��n��ėed�z�%�ԋ�i�_���Ҍ�iL�hX��NĜ���������|���9��{m8I�,o�Z�Ξ�u;g�l�F&�:�L�5�;���MPs��qG8�4VJF����m��.e��9��w��΀�T��:��pw(h�I����oli2�!U^���؏k7��:���N1{3CF�,�HJx�	A�O�������pV9��6��!����)��m��LC�[�+5���K�G^!��F:�:�����,s��՝�#�/w)5�������_��^�l�OZz��'��\�v��'��D/L�j&i��H6�R/�CHm��L�	G$b%�I%Z�'���o��w�k��7��<MU����x2���4�r������V���Z�{��-G��١�3n0%�L�.�mC��`�Y1h}%KL�����iվkM����p��� 8��u����h1A(�$��>��AV*l���Z�c�{��^7�&zt�D���~?��շ�����W��%�F�Ey�b�O�Paن�@��'�'f�P;��$1)NX)�'�7��н��
7_a�F-�eY���,�۔� a]8������=���w��A5��'Y���&&�;H��ܠ�h4����&�2G���kx|�)��d��z�D��Ҡ�ٙ"9GS_��K˿k�F%��bx����� �_YE��{��蓮
�yL��
���p�<;���=�r��Ql�^B�tS�B�l���:[']�t���|�;���<�mC��(&Q|��u`	��4F!�Ƃ�� SqJ�\�}�@���<4��Q;��H�oŪd
Ζ&z��<�~�*�f}J��V+]���
Y�@�L�l4���|�C�:���d��ROI���J��s�����<� O�*}m"�Q��4� ˅(�b�,4D�>�J�~�>�R�m�0�Qb�_X��T68!����9Ch&��j����8Cz!_m�S�1���wJw�},��adI�ڵ��~6/�`�lFn�gւ���5��|�Б���'�����e�Nѝ%�P���j
/H����݈2��	�7#��y�vD=e�Uƹ�&�"� �0���,�3oF�.ҳ�1��p����}q���0+i%V�+Q�A<�b��O��?���w��1�G�4��2)�\�B�,O �R�G�I��Q�9�=ᙊ��<φ�X<���h�,�Tf0I
t���WO�ЭS�`Ya�J��V�c�����:83�΋y՘k+���D�I�����bB{�S@MYlB>ե�J"�Qa�cvA�P	��7O�
�Ȝ/`QM*z��J�T�L�����X#t�E�i�ꨴB�bQ?��\���:�W`�X���-S*D6+(�����Y�]$F�~��v�_��{P���F�t&����
�?Ɵ}��'�z���E"���\�R4�4�����C͌w.O��H5;9+`�lR\����b���|����h8�fk)F�8[I��9FS�Osl�����O�	��;�=�H���k��ĉ�:��QH��,h��1��T��~�L�j�^4#�F:�j7�N?�8�{'>����s'��ijV���~aor8R@p�������aW�����惣��Y���M�N�"��
x^�\	���o1%��%괪] ��uP}�m��zƉ���8!q���NFp��8P[�f̏v7���2AH����C�b8֬��q&m��8t���U7C �͙�@�M���}�>��׍�ڄV<�4h�������g@+eپB\Y��i����e�{;mţ�&,q�s?�O�0��S��� ��>�*�6v����E�������:C�F˄	��6A�����`��j��jս[��ӛ��oȰ�Ί&6=o��Ι�m�;z�W���,����Q+�`x%)^���v�V�Os��(J�葻z��ߚ��ab����\�Q̱a��!�労���ߞ�^�?�:w!���%�UP��#�׳c�f���׆��'4���
���$�Ǜl��?���}���c8�&��%˔.�C�ܺ�A
e�IKr��eُ$M�e0YD.��״D,��#�a6�IEi��k�����<`��a����IE ���[�њ9���������/yvO�v�ɓD�i뇥�;o��3EÓ�����]�
�N�J��6|�o��P��g<�춷��r�p�n�N���F�ܢ�f��4��=�8��5"AJK`K�,��F��C�C�<�|\@�p=� u�D"W>H��i�[?���x�ݥY1��M���C��7��B��,C3eSB���h��G���ӈY��?!a���_ ;����N.���=]�][�x�<���3_#'p���dX5��H[�H
�qԷ'j7��f�
�)���Rԓ*_��_����ݽ�f�)g)�Yan�H�.�q,V���'@�ʫ�0*�lg����?�;���?T[��}�#,Ir��&<Z�#��W�4���s=Ei�ٖ���`f�N���N�;#aؓ�#��2�2 �M4�0�H��Lq+�Ӄ�,�
�nml��f@��
!j�vA��,D��bb1U�9�AI�
���/H�o3�໾�/|۷�G�h��$�&�4XFy�D�>W�K�&�G$�H��`d�����@D`�F�2L-T�=>��a�(>��a�%�F�mC3��$O�kW����
�)��>8>s:�@����T+f���a��d�ɪn�=�(����S�������{ƥt�[ͻ�n���Է #+N�,��8����d��BEx�E^4;��w
`qR�(5ۂ7���x1Ct����(D5A8^J�5]�u���\<�ke�$�p5�\,\�IB�i��� Ŏ#PXBJe���Ce|���F��4Í�� �H��pz�S���Ԍ�N����"b��w<�?�����05�3��b�v�,E� 0z�4�v�n^��j�ͅ��$^1Zg<��ɟ�Ql��qP]��ϼ�)�4A�o`�M�ŀ��*ǡ�mP8$k�٠A�$��	g�o��R�ߑ�}	�f~�
}Jo�[�����:�h�TE�yUM��kIP+#�F�	@+��g7�|IJ�A�	�3c)��,T`k�P���h�&���\��h���yC�\5����$���u�\0� j��9i�*�����Wc��E�ҹ�]�O{E8��uG� Ku@�4]�^9n��h{�$��dK��ݺq)b� ��B�:)������r����!���/#����#;�LY�DxN\
�L�8E�G8����/,�ŭ�ʙ��
Co��Z��,�
4�m� ˶���B�[<��6V���9{�epV坛�Wn`]f#�2���f�Ɇ@(s>�V��(�PI��4%���[�6����7b�Iyakm;e��`��b���ml�}\0/
^�t�Pe�r��3dȗ{���\w�������GC�A68קrT��Ĥ��1��t0!��
:	ۜ�R�-�l+>8�{�lM��3���F��AZ��/��)�س���ט�fZ�#�#lHv���mS'��h�ε�R`�Td�	�ta�A�]4���Cnы�x���XƼ�`�`;���K\z���"(φdA�E�jˍ�eX�ŋһpO)�'�2ƛ��lȆL�ʍ��ۄ���Daj$b�%�T`��f�
�O'�;�ml���$�@ؖ�ܼ�j���r�����Eŀ#�l��!a7w	�}���o��7�n2��o��2HU? ���]e4�A�d��p�ܟ-M-se�I�m�Z��K��M'u�L�Ũ=hɡP�� �<f4���@���0��r�OAD�'s/�IĚ�]F��#�Ov�H`�@�[��_v"Ǒ�&���XN1�HfJף$�|�	~{��==�	���`U�h$�M��?bT���7���&�=�;���
"c����4Nm�����Sc�.���T��@�@�}j
.��>�����g��:��0�@;�t�1����=��̜��9�YB�4t�_�2)��8v
"~8�2��f��|2ޤ���sآ�p�ݿq�K뷯��e��JW��٬�C�ǹ��i�]�y��w�:҉��wsR0P�C��A_�)T��T-�ljI�sܪv胰N�Έ�lvs�bD=G}}��R�ƣ�Fc(:j *)?�0P}[�R��
T���������JҨYF��4�T������DٶJT�3{[(�W4�B[�V�<�9D�,�T �e��)7X#�!�Q�f�(R�rj�֞Ib;ǒ�;��Y����+�凓�D�/�9�[<S�6�s�Ջ�w痚�m$����@��u쎁��.p�-��ɬ!ԙ�N�41�d6�قQ��������LfcM�D�5/�h�s�"�v� �y�m5�ڂ��k��bo&),4�be*�WΩ���m�R��(���x��/������P�4d��x�e�G���g�R&�M�I�=��
+�4��Õc���/D<�:�3͢D�X����"�gh$_��V3���]g�jq�:GNo����C7ј�>�0��T᩵���Ƕ0$>?��r@V1��l�̮���
���ƙ�����$������9hI��mw��V��~�|������\/�6x��V|tx4M`~�p���ޕkW��.]��r{YC��c*�\��w	���"6CB�Y�� �̹�U2p>L��R���X��*EyS��4��6�̽��w�8���;o���ܙb:N���h6�8&�8�1|"n���;U�FF,:�ϖ�F�hw:�l�K����)�\�lA�U* ��^����s9��I����G��M|2k��c�D�
TiFEX5�c�j�N�9ogZ6�S�Y���d	s�O�t]�i6��o�k������/!�CTfR�\�V�6�iA='-G��󍽗����Bl�����q��<O��P4O��h�FQ��s�V;�F��1lj��������B
c7�߾����?<4w͔��]�9��5�㽃/]�z���ͥ�j������_|�#���7��a�^�f�z��T=�&�/=�ս�s��o_}|���V���}/�&R7aCn
�L2M�w3�.Q�|�d��kln�R#[B��T�HjJ�?��4��\)��H
�UY#g�
>9̵9���?&���|���$.��vw�Fkt4�$C�'aT�T��v�U	P��V�9
7�}�QG��/�50�s�@>a�&�+ҿ�>�P.��V������^w���i.��1��4�ƛȠ�>�i*/���r'|+Iۜ�Hl,���M&�t2F�����p�`n����ށ�i:Ic5���}�b.z���")4-K9՚c�0X�ٗ�I\�[+Kǚx���U�iZ�L����0���=�&!N튊|N;��qOE#��ѣ_��O>���L��ݍ��+O=���~�p7�`�7�X���v}�+�������?��~���O|�=L#k���܅�?>����ʟ_���ol}��sۇ/��_������ں���C�C�2$�C&�^skCn
��;���?��\__����W���Գ/�w�s��,2�\s�
��+R���T��"f��b����I�]����m6U2�k$�L�2�$
�a[�������$C"��N`ۢ5x��L�)DJ���/�{��v�<�c6I�V�m����1���Ӧ��&Js�Ȯ�&�w^#�g���ɎMRVh}�g�L�81�@S�8i��
R`�S8.����Y1	�Y;�<�ңÝ��_x����O=��c��S<%	T����GX��S��K�u퇺R"L��~�Eqߢ(0��+'����"�LQ�m^��ozP�0���菣�<f��m��]t�϶��?Ir�}���?���nK�o����<��g?������n>�u"�fb�S��t�o�M�7F��������~�~�o~��S�1��E4<�s�j�'_�����^<�y���ͩ�9������O����෽���"M[x^�RZn�ȠCv���]�o�{��C�8YE��V����:o&y�vv��y���=g<o�r.�xQ��*a�u�Z>��OM��%,J"}��c9�l���C�n�ƣ���x2n�Z�w�����@W��N4���a9߼K��Ǡ~����0�`��7���l�̨�][o�p�P�ˆ�%�-�1���X�p��5�]�ϐ�ZEo��- �M<u%i�
�u�H�U���a�G�l�
�ol�aw����V����O=�[������q'���Q�%��63s����>��8i+&���T�&HOQ*����0�]��_2f4d��nuA�)��
gFCQ���a��g�C�=�_{�ӟ|������/<����O�r��w�ԃ��}�=;J��Ƈi�Y��
{4��=~������f�����ܶ��
�('��h�{_�����䍫o��5�N��W}��t�R��7>���v'�n����^�!O?��CCNX�S���1�u�?��������?�#/����ȳ��}����;d��E`�}M��	�V�8���K�^�i��l#��f+Or�ne"�x2i���Ĥ1I�qx�g�%s>��V6%8���ЍF�\���#�r���뎆��5�v�=%q<ԙT����;�g͛�S�
�FnF��[-�R���*��y@�71�;�����9]=��r'��"t�g��-�s��S��R%!��G�M]��s�JbK���t'6z[u��6��kKT$���wC����h2��CR�S�#=�V\�t�2���?���;���>�o��X�\6s�On�����Ko|��^��1��!�M�i�/o���O^����=tamCg����<��������{������~�ٯ�x�j3�G��[.�{0��i��r����%ۯ)����߼�{>�����z���y��1�"�2'{{gp���?���O��_4�I�٠��?��K/�����Ul��YQ6�bv*� ^�7	U[�p}W��cì��v�;k��J�4�0)��ei��1`�j$�6�����fs��o�gY��
��=�ۣ$�ȴ)ڣɨ����?�LT�s9:��k�16t���
|,�fs.Z:��8�a�B���'�O���^�C�
e��n�ї��۟�܋"Q�� 3��T��SbFn�D�ۖ�b;������)`�}0DT2�ǰ�a�4E��*,F��kN��4�o�W���5s	~����g?���-�nnm>���A�fl�u2�\=�L}���G��M�t�@�"[����Ѹ���ǿ���?����2��G�~�w��O]��mv����/�x�`��h09��O���y۷�\��R
�gC�{$�����o#��=��?;�ܵ�/"����db`MR�5��N�V���/���_��͍
���.�\fcc��ĒoO�6�F�`�m#��\�dg	^0�޴`R�C4xNC��b� �fkx8��w�����a���&��:��(i5�I	��d2�di��~s%D�l�ץfCKG�43!Ts82aZ˄]�n����n��8�Y�20��N(� �6�l67�Pl���Ҙ/7ʒ�V#�~��/%�+_<w�Z��l4[We�����Cu�krVC����I��t4�
F/m�=����+W�x�ʍ+��\�
�h������j�r]s/���M���M�VD�'(�r��m��2��C���C�C*����2�y�=�nV��a��)��r�Q\��`�R
����p����3ϭ7���x|co�g�E*VJ�������}�kl�����Q��K�~'n4#��_����7��?�R��w���O�ɽ�f��i4L�|���_z�ڳ������C�`>��P��zfV�O���؀!
4�g�ԏ��y���W�<�}�ywC�ހ��D�e��I�6[�;]���/��_3y����}fk3|p����s)
��
	���:Z.����<�PL�P8"�Nj��3m�'�8iw
�t��	���6і�[�Fyj��\�~o����p��Ң�l�J[��db�'�V��k'I�eI��������~�!�ݞ�������^���zq��S�Ū�)�?/���d�r�TB$��%�%�'^���z��i%g���ކ�v{����n��2)c#1�Ź8�8�T�^������ID��s:��pr���p���t�7�w��O&�(�Lf.A{�f/F�1��
�l�sSe9*P:Q�|�b�F8��n�xl%���ڬ�#y~���Kۙ=�²�����B$�E���S�V��;bٹ�>Eu�N��׿9�?�}���W>���G�h4��Z��0Wr3"�=���?��/޵7���v�b7/t��|��������ܟ�p����K[��_�8�ٳ�=��s�\黾��%R�r�
j��
�8��0�b�O����~��c)��^�!}���`0�B��s���?}��~�q
��W��4�:�&����D��0T͂]�"��2A�7ȩ�oF�l7J�������a���9�9b���
�����X��@Z��T6��l�5��Т�l�*�On�ٽGH�'�A�q���ei�Y=
L�2���׷oXT�����vs�%ۃ	��n4�<��.,^��:�92�[R 7���Q���ázz0�׎"�����m2"�?�<E�b�|��,���0p�g�6~�@��
��RЈ�I�uq\&H�Mh#M��h� 0N���N�H��rL�CUa���؁�/,g�\h�|�N
D	�t(��ܺɐ!ڃ}�͝s�'�^Qg����/��t1��Iw�*:g˄
�\]�?����������ʳ�^����t�&Q88<���Z/j�;{f�aJ�Fo"��7ϭ}�\n��=��'���_��K��l2<ӻ���/]}Ƅz<��>��׽Yǂ��L��5�����_����_�����Y���,{�xA:��h���|��{��g~��#�u���ol��8�m�tU0�N	ayx�$�g�g�)��"��k���h4���1���28b���~?�&�3rpt��h6F�a��͊�)�(�;5��	�͋�<3�e�f��h����l�n7�Ѹ��
)�^�3�L�ztp�
�����9���|u*M]���`�����z�e�aL�Mzuk�]�`M��8p�1i��r
���Hs��K?��g�OsiA�I�0g6��L�A�;F���7�,���

b[�E��`	[{�k��6M?��H��2qa��h��{+�j���Fd��CX���Ue��!uM��w�(+���^^�Y)�5I���Mx�Q[�t"�-���f�|�=�{ׅ�~�S�٠���s��KW_���MzanC���Vŗ��G��;�Z������7�%��Kg_�|��Ε3����?}���{��V�\O\����;\��~L�<ӁZ�5�V:�f<��4x��/ϲ��
��K��n���_�k��i��0dY��t��\�=�$���_5�������������vwv��U�L�ZU��3T��UN�*n;����>�O�l8L���ήyC��|ek�{8����ý��ͭ��pc�#un�f|x���t��/���2cЈ��&�CW`Iν-�8�a���ph���y��>��2�;<�9�n^赎FG#��#� (����7�G�cɹ4�D�P��hȶĶ@2�C'E�O�T2�
}d�i2b�}P8���8���P[�.���8����06��HE%D	��X�4t�X��j����Y8P^ �-N�<P�T��
;����bO�vYv�*0�֟�T�
���^���n�i�/s��䝭ѲF�ν�c�N�KE
.��ƣ1�k������������u�۸ti�w0<��F�z��x��g�����a����nҌ�Q��%�p4x�g?��c�W^�<w�#/��Ҵ��A���_��o�����P;9����Duf�Z��݃���ݗ^����+w_�T��;ۍڽ�¬p�n*���Ι3[�������_�;��O��|�ݗ����s�_�С3~՝$���x\���Z@��Z����I�M���d28by�Y�4�|�݂��Z���~���O��7�c��H���8G0�+� 43g��rh�ӣ�h}k��9q<�L���BI�$v��l0��F�������1���w��Қxfg4Q��Y��9(U�Y`��d%�?�5��
������rYk���QDH�NP�N�N��[
.�H�~;��`nQǂ����*�EҐ�	M֟(JT��:��
�x+ͱ(c�.�ee˂Z��v@��12��"�������3�Dz�/���AB�n�3�����%�J�����	Q��'i��
��ԕK;��).1�T6@V+�9@�
�%�,c�/u/~�;?��g��Ե��&{����)=b��\�J�y�wxp�ƕ���ͭ��ļĨ�FG�����ؓO=��;7�Z�p<9ػ�{�C��z���!���7X�;U=��uM&>�
���|��/���Ϟ=C?�o~��x��?��_���]�#
��wi㦄��=f���Z[[î����7o8��_�Z�Ӎ�ugv�H7�iY(M�#&p|g�M�=�D�����@�K=��:3��K�{��V6�]
5
��$�v�&U��HD�f�E\���vnr�4�Ht�H�85A84��x���a2b�c�vw0�R7Z��h���8����ׯ�������L_ݟd�a�v��j&�^�Cx��zgn۬v{�(Ϥu�Vn��o��z����a�n��p#�q���J�0�r�^�N�6I�E����Ծ4E�{D�!%�kk�J`�/3;Ҧ$�����A5�[k/>��ů�W�L�カ]&�w�!n�[�7dU4��l6 )w�֢�O�`��ڷ>|�k�|�Ǟ���&�5�ҍ�A�6z�c�>���\�_4�	�w�Mx��/}�}n2���tz�(��w������RW���P^*#�ɢ+YJ�;���O����|�G��g~�'������y�����t��m��/��|�+_0�I�����^��'��~��<|���^~l���~�`��fDzt�!Z5�t��8n�4����_�Zy��;ݣ�8iux��4۝�d��y�Ӂ�u�M�h�\���4m�Z֯�N���/�R��F��Ts�f`P�=88�����
�Ady��;884��붷wnd�љvr�m
�%5�I�n��@i?M��$�2}�tAr)�i�{w��Y���_0.6A�	"c�?
X��) �1�7d�„�M	�!���g���9��2�t�fq��;HKN�����U��(B���("&ȶ/
|Mx�R�0�E�oǝ_
6<r�<�c���;�F�lE��F�wS�t�&!��B�U�H��W���+�{+��Mm;�H��t}�����	��R�T�����oy���w��=��}�ً���C��_hD�P��n\}��+	؀��x܉���ޕ���W
r`.Žv�wn\7)�_����އ�Ѥh=�櫺\��2���9a�ų�!Đw��m��})|̓O<y��'_��}�ܙ�e����|�+��o�?w�B��5W�d2���}���������*l]�j�*�i�xT�~�y�n�G�y�/_~js��r���n�h0�����k*�����`Mf��j
q�={��ٹ�����L��NLR�Wj�����ʼ�y��ɨ����L:�dw�ƹs��4���i�Z�P�\��hn5��\�-�[х8]
��U�}
�j����/��[�e��r��V��I\�{1�a��ht�ȺSj�*���v><Dے��AX�;��Z_V�à!:�∹���ɃcR���AAD�Š���}�V��/�K�A?���0��U�3_�(j�҅*@�@���������ۂ�QqL��K�'�����=g�z񫗿��g?���^r.S�0�ؽ�̍�����?2�Hc=n�4��;�D������#�?������t{$ok��g]�W,,�2�0��/~m��!{���C��ZŶay�9"�~�5���O?�R������]g7Μ�{n~�J#B�K�d\n��D��;�d���g,���ã���n�ڵ�kݵf�����ﯙ����Z�g��x8���2�d�
����΄Z�n��N�ˤ�Զm���$�q��("�&����F��q����;0�z��
�&�2���S&�F�Ze<j6ׯ]7Q���֍���/px�w&c9��];�.�)�n���Q�)�>����I-�{��FV�X2��/\1�s[�[b�KZ�:��m�%���b���wi�{�e� 	��)̈�]˄��d.�W�nZ	��BzOA޵�
H��Z�V�U���+��H�N��Œ{���s�v�~���1����%(��S��^Y�q
/��2��)�ʮ�噉�o|�z�֟<�'7&���vz������m�����Bn�p�!�K��J������7�I^�G$h�k�s^b&��B�Kj4�zA``�|�׶��"�`�I�0����x��V���8�^6�A�V4��d�R꬛3��:ȹ�Mv��-*dYgscss}�����Z�k;�-;�Z&�j4bmoo������z=�^�������'7G�$J�	΄�Q&�o	��O��$5i�p8n���N+5aW���p��Dy&��xess�$K/]y�̙s�Fkog��K���3Ͽx��<�ד������*Ͼ���}f{Ӯz�%�ɖ%wl\N �S �@�4���` 65v0�vporS�]Z��J��fg����ʽ���l����<�ݙ[��W��}�rI�iڬ	4�N<$�g��	�;�Ԥ�2�C:��d����Z���+<�Ơj�
ÒDBa�d�YW�t�%A,W���h�R&��f�1�4 *���[��qn7���$"�[ѭ6zeU�H��aIGPȽÍ�����e��Á��n-
��0���ѕ�)��P�Բ��"�X�Mݒ�8�e�]��gJ��6�8Mq�0���M��6�l���.p!�t�0�C$$��j��X�o}I�T*W�A���%޹OS��g��li`�,e�RI~��{�l�S���A��<i�v�6��v���������K"��9�O�#�dž@���m��k�D��a�J:��2�(_����S�$�8����J^����1��p��b�|s��S(K�&��"+0��t#�&)˲~6y���^�X�D"�rt;gg���e=#"�9�����x�͔�E�n{6'��e�D2�p���Ǔ��r8�Z*���xJ�<K6��:����4Ƴ��8jy v"};9���=�,ި)~���()�YZU\~
�f��2�(���D��)د4� 5ԋg��CY��"M�8���ܰ�V��&�l�"�5�mP?i�.������"���,Q��
�U^�-��E�*�YB�O7���<3\�p�NQ�b�EQ���G�zHݧ��f�`F�Ԥ�wG�`�I�^d��J��r�
ܾ�7���=���:���M�g�%;k+JZ��p*���85S�����O?v?#�^	��h�R�|�yP�	��iI��h:���R�l<��T�iw�64͈D�N't4t\�5Ή
9�}��I��u�M�����U��f��)AS�b	�\(�g�=b� �e����B��V��e2Y��ɲ\<�1 8Q&�N��B�x�n�v�I�0�2�0`� |R��
��[��<p�!�v{6��%B�K�`�X�W�.�ȹK�B!�ӝɤlv>DU�&��;�eCN����\C��\��ᝆt�z��0�DV�������J�I���]c���fr ��x�
�J�[���@DTȓ�t��1,.��D0N�$`���C.�0Ȋ济[R+�>.�`�����'�
�e��4��Dhi�P�xZ�r��߂;�uS�D��\<��[����i�һ6��B�4�h�~�����If�u�[�#m��㣍Uu����2�C�,U��>w֌ޡ�*lg��n�sEkz��S��Xtg�ю��x6B��	+����x.]��6���U��X��ճ�>�O?�yP��&7*H�]|�
�JE�~W��8��̋:��\�R6������Y6�I�=`:�b1�$x�/�aG
q��y*�l�r�RI�M`F�e����kB��a��i y(�7��R%�c�q�+0X6�
|)`�J���1��##QIr�*566��_6�g)�1�Z�����J�Xv،u+L>�`�$�����f�6��t�"��=��:��Xz�U:&�B,���p�lT
��|f֧p�̽�Ypp=2i�=�${�YwE|U�9�2q
�F���%��d��M�!M'&нW2�.�a ���L1T�#M\8�+[�	����d=W�=QG�R����x�!��2�"a:iXB�ㅬw��,a��&M*�]a�v?�}��ڼ"w����eE��Pt���&Sj^�ɫ?��+?��-���{�|i݆-;���%�g�z�#��[{�'�r�\ΈE0��4/�b��;�u�@@p�34���54y��=�7퐩7n��%�s��$-5�kOD��B��-<_&U(����d1��ќݠ�t&��fáP�T���2I;Gir)_*��\��bU���kb�T,�+�EV�AHu^$Z�u��TIU��S}��Y�,��]�g$�Ϥ9���)���S����y��b���.�.�*��;XR��`�T���v��a��Q0�ʙӊU�O5��Dg��SX���Td,x7"��8�!�
�e���H2E(`�`�]ȩ`�����B*Hr�!E�n3�G������4�C�d�0�i"��z.�}��]f�h`1b�"�
dbh+pF����i9�7QE�����O��q�	�r7LƠ0r���i�i�(��GC�Ha���)n�Q��O����}a�1���ؼb'�yxP4�[)�l��͋��;�Oly�{thf6���Y�wm?�2�Ҷ�K��*#��pr�Ď�{��mZYμ�}�[�6q�����$��=n�_����f���^�V����B"�+fO����w~���C�^G�7y
nB�X�;�����*�(��A�I�ҙ�?X�8�t:�C!��(�L��i��f��\.�l^/L����Ď:�9�j��M��P$��P���+t��!�0e���u�N�I�/L��Q���A@D	bL��bR�o�r���.�`c��8̀Kc\[p���`Ehe���=#k�[�h<-���QK�
���M�((m
��Д�]�f�(�,���vT%��⒦�a)�b|�a��R`��8�d�R�|��n�S�H���f�e�(D�j}pJj�z�E�0^r7��X��2&��l��	���^Q��5Y$q�"M3Ħ�v�DV|������	׈��bi��;;��dP�f y���q�ғ�YYԗ�X$�ʿ?��cC~��tչ#^�
U/K
v	aG��oj��}�/��	�ʒ4�J�se����U��	�����P \��(X��bY,������mFӥ`�6��{{XV��$$�d��
RNRW��5ʳ��jT��q<�H��ms�D9�-�Vղ���[��l�ۅB���Օ����bY�MK����;],�$�Y��
쓬"2��m�Jv�,����Ґ���2#��R,b�!A`�H�� ��Y��Y(���çŴ
KX��7�UE"`�W�m��G3%���I��� O�����5��. '˂YU���1��T�"��,>��<�4��8^����S����L
M
wHc�����L�$m�T��=�8f�������N&�}�x�<�[�|�`��^�"!y���*�D%of�[6�� ��j2�]'��L�br??Q�O<-�Eb�	��6MQ�\��MSC#�$(���v�P�t�<L9�PWG�Q\^T�i��3����W�>7g���N2.��;��L
4�3��L����LV2<Nv/JY�}.Lh��%��tf,:b0����w��nWA���h�b��|���tʹ\�!�	ঌJ�x�
�@��S�:x?OB5.�����j����,�E^�KU�t"V���"Ir<���i�'�H7���S,��䱆tf����t���dU(&�qH���u��P,�6ˢ=['�w�J�	�\	�f�:�"���J%�ρH��q��A��[��p@x����S��!���vɹ|���\뵕D)%��)�9Y�=�OCH��)¤�B�v�w +@�0�'��#QZ��"�^��DP.����}�& ��L�OT��mz��/#|'J�"<V�w�u��-*s���4`��ڹi���cY�'�`��2Ŵ	tE�	U���6L�+t�L@<��Q��`�C��!��-���wwt�_}]CMUmSm����$���ft$��f���C^���}$���5�PK"�ɕ�ع�@�q����3`o��{umu8�˺h�%4
,�p�y�G�%�}ɾx,�p{��aJ6��H�}�����g74/j�yٌ�a����A���a!w�L��d�Q�7���!�9�A7��JRm]� �b1+�buM=���l��S#�����z3�LTWW����İ�	�@����k�t�|���FU���(�f'�*'�%N
H���)�|���>�����i��93�����P,�eK�ݞt&�d.�-��`6ө�Gy;����4�Qg����`�&l��dw6[���H�4��T�Ili�f�4��f��#q,lTXq*�)��zE��q	�&M}[�� ���xд=��k �A�1��au��~=F��d�6r��a:�8~��C�=�,��V��T�\7��5񍤩171��zq^�̬��,�r�z��8�E���g O�{��an?��<�

J�q�͞34V.�;f�x�˝-�6�=+��p��\S;���!�T��
�z�P���=���iaL�\��=vCm���4����A����/���h&K8y'�P��ꄮ�F�۹t��;�]u��>�l�&�t*ؒ�i��Jlj>9=c`�9Ըp�~��3���ǒ��H�Қ\�T0�#t�X.s���j�s��d��24%O���MNVR,�"a(2L1�y|>0��+a9��3
��%�gy2�T*9`[,�q���|2�#I��f�2�n�I�&���r@��V��*��Ē$�����&���(����sɱ����W8��%���I�5ز�Q7΄:���9!iEL��9;X��Ȋ츩I��:��!��1N5��	p�HZ5M{��Iډ�ZhlJ��;I��צS�UL�aj7���qDP��͸�5��`bN|�&]2L�<ƨj��/ek`��I�x�
\�E�z� &� ��ľ�����L*�+��>)����Q�]&0��-j�P˄}|�����8w���׬:��742"��ùl�X���,��j�������;���C��/i���CeT0)ԢB�`mM��i���|.��E��V�)ls{��sM'J��t��Fw��We�e�66	�t��w^w���&�+�
�
�A�h�!��|߹��`�l��r.:
U(]�+�qE,	4�x*;رU�f2UUU<ω������l$:\��&�(�eQ�o��ʺ$�vؚ$Bnܢ�J�������ٜ
ŃP����v���̡(*;�L�<�B$
��U�>�nw%	��-� �B�I��Y�\8.���M$�55�fp6[*�����Qź�K��1�r�����N��Oڂ��,�V�8,q��*D
4��HX��+i�mJC3��q^:qB�p�e0�GB2,�&j�Q��laÇ��4:���0pBK3����&�OEUr�&C'�4[Lp@E����H�<���݊`�90��ozw���\U�	��u�?��7�DI*�%)^Ȃ8�q�Trtt����.Y��nOcCS*_쉍.i�>���'h�X��ˬ����s3���aHY��`|,�� ��1<�r`
����}�F<QS[}�����y
-�U˰D�[��gy�rX�!e�A�r�c{xV�i����A��TY��\N0w��}��A�|wo l6��GǢ.���'��P(����T��`ma�}�&A�"+�OA�gm6y
��8��/�%�/Vࡀ��K�U2�nw��t)�L&}R��ٴ�@F@�ǙN%
���n��m�d\*f���H���J�dQ2���[*5{���dLR�#,�$�&����`E�r���+DL8�O$���bL��e�Hܖ�>�PC��V#��0�qD`B�"����X�y�i�@I,o��Q�~\%����c���Z�C�x��[��
�jb��`0��=�yr&�V�09���gφR锟O��D��ha�b�(`sw�՛��`���P�XHf�C�Ѯ���'OfQ���Rt:�[�:��+u灩y��fg�r�����
Vm"<�vΦ�Ё��tF�����=�^q��k�ZqɲƪZZ�I$�+&R���q'���5L|�4dJ�B^{��Sr�ʡ������CC��	iH	�96���Tx�.�K��\NR5��p@��XsH0����BR�ST�r*K
b�P��՟i����*�.�˸���ӥrI`XD�U*g	"�\>�q;���Ig����d�Y��.��;<24�eQ*�b�����hJ�g/(ْ&S��1#'�8�d>���Y�3g��Y�'AV��l���q�G`�p��4*H��ۀ[fD�S�BA�&1<�z��'E���y�	���D)ܻc�.�E!�'E���",����к�EO���e�.(�T`E��N9���J�ɗ9=�h*!��}?ǻ��%S)�W(��f�h*�fh���CC��e�*��[�\�K'����{�`Wud0[>{��榀�#��Z��/x�nU)W�<9���`tI+ˢ�##��G>s�'��͂��&��:J��	��Ԍ	_�0�b{^��fC��w6���j\
{m>�TK�eF�)�4+�r*�T5�y���%�X(�TWe�E��p�Z,����'��
�[�K&�n��Pȁ�'I�gD��OѴ$��(�s`_���P��>R�$��\C~����F*�NMZ˴֏HjD.[
�����l�T*�p�TU�.��R������`XX��/� �I�3�pT�g�����y�#/��a%��	�����Y�dE�~�I�H�
�>MQfR��Q�����5DA�{ʣ���h����d���iw������s1���d�ձ
 i�٠9G�&�?�ě��f�a�Y�ȺE�`��
2�F�2��6|z��A[�6�z��1��0��H����3l=��� L(*��$�9�T/��[���VI���#�p���Wf�i�tҥ��Pߦ���v�$ӱX,W(���ݽ��+��ΐ��/��2(z����%Q��LNU��oHy������>�p�]3]e��r��|��H>I)�"�^�˽��IXG�8C4+��I�w��j��
�B19�.`Y$�b����	��ᑪ�j�=�X��H$"��$�i�s�Ą)�~���T�%����̙������1_� �d�����r�$+*t�P*
�­�
>�xa���b�h�١��ere��eYQa<��C(Ɣ����`��^$��Ԃ������;�~��f����|>]�m��l�X
R
 `�̭Ԕ�:��f�gg�p8D���v��e�&᝙�t�a���,�}��g�DW&�n-$0)m������&c<�BYz�لY�>kDɡY	��"q+4��#j\;Ef���:m����P�ir�_�6�i����L�16,W��,?�\�>C�f�$�1tQ���`VdE���)�9�K��A��i��#Nw��f.�$q��j�z;�޽u��C�dJ�HM�TUS�������|����՗F� f��'*"k��NN骝v.��dN�\�`�|�zwp�Ӑ�$'�:'�=ɉ���DV3=	����C�(�l�m,��9���k�Dfs����Xx���X��|�dP����W`#"�j$�ť�q��F�5�fn���(�xQ B��� Z.K��&#$U�YFC�,'`kH(�BG	��P<&�W1���}�z2��VQ�	�A��Je�?�0��؈ZO
��YY�m6�R��E�R5u�`r����t@�C��A�ױBn�p�)�s�$�xw�7�8���Ҵ�v7{k1���E\�3�#s��A�'JՒ���0�F�57�Y8�(!�cܪ�Z28�2��!�)��,�
���L�>��{�L�,�c��QbM�t�t@�Z�aQ��>˯��P��Vnɘ�M0�~nU��/����f����G��T&��uO�~�7�z]��3���6Rt<v'n^��U��4|���F�P�C{������EfK�,'<�!؝^Q�����cߺgo��&d	�s^�
C1"���b��[�`u���,�$��E���Р~�/\(9���.�&�y���)M,(��o�&�+�����W����/�xx[�}���*����U��&:2������ރ�NUo:��466)�
��#��L`��l&[__O�v6|��㨮��5s�lp@UCT#�^��fK&��
��?c
����x��L0�T��!��A2����PSS38����z�%����Β��BA�	Ҫ�R����*b�����F����G윒Â�(��!��醀�
6�`T���i�T��G���(0���q�T����*�g@g�Ix�I�GN���6&ѣA�2\�
px1ջ�MY�~����x�$+��(w�XrP��� +��b�")K���� ���M�z��h�����-qv``s��L�X8p��@l��h.��d&],����-e�n���t׆�ۚ��j�6���ks� .�d���x�����uw�>�K���.
�eMK������
�4�J̾�-Q���F�dJ�mɒ�⮿f�5~�,,�&�3%�ΈW8�����lA�>��pH��M�t�׆A;M�Y���*�+�47(r�a���P(d�;!HJ��G�x����z}0?�i �.��`�6�e����@{>�����+�ٍ��i06�dDc��&�H�SV��)M�
�S��j��A���5�����3�́/"C�H4
U+��
������^�')�`s_��#Ã����T�Y�P�r��y��)�kÇ{�EE�LO8�7^;��|mA0��lp��m��$K��,�S���ݖ���j�� ��-���GX��qoj0���ؓ��� ��q$�Bc��`BĄ��a�B<DZ$��p�E�.~�=A�
�PJq��fòEì���:���EYb��FN����8u���r�qR9�J^1�.�R��˥\.M�F��x*9822��Ɠ}}�'��ؾk��㎄�mM-KgΛ?m������:���Ἐ��u��U3͘�X['P<�yA4X*����ol^��}O[scw����׭�J&E��nT���RAn�k]5�J�rK��f�&'�ɦʢa|7Kd�G�꼵�H�	&z!j�IQr�e`:�δ���)�p��`?x�@8J�9���!3���7�J
p��c#�PMAVR��%�y��kK��~��0M&�%pv� 8H1��,\��!!BXX�u�� -2�}�8oD�
���Tl�`�U@[��p{,�KE�i*����ժ:$���X���IUd��O%�\!�r���UFGc.��\,�9���wb &댁ekt�"��O}��"����4� U!��a�	��G�#J��Vg(��$n�Ņjs1kXZ�9K��;��T„ 8�N����
T2DD��5i���@�
9D���nq)c<�ف��X�jjJ�4�f%���aR�@�A[�RX���Z�	�&kX��+&�7}E�ܔ�~���oT
8�4ֻ�T8ѱKX����eE�Bs�P��)D\��u-�0�
Ѥ�L�{�ׁ;:�#��]�_{��n��\{�N�9�����7�q�X�V��TE�e
��N�k����,��y~�K�&��w^]�tTGd�\$Uz���K��*x�"���9A��	5~��$�D�5`��ٔ>2	���χ�:�*�@E̔�����/���b���gZ��fK������4��>84��xaQa16B9�,t.{���A4L,6�n�UU����ڊ�|c2PL��!c4�A�P��*4�p�VP/!�D#���l&&P��A`|/�uu��Ӂ���N���+��{���/��
�%e�i�$
i�Db��%���%�݉���p���yI	�<���7�,y�)�3�(j"�/�L=S�-��I�X	����p��ڤ+�X�
��|�ae�̮3cF`�
�(��D�X���g��/e�T��E��aR�Z��i����P$��j�����|�d�I�k�NR�����BtO�ri����&����D��i�L��`�����]��O���8�~�#�wE�o�{��������蘣A��xp�"�6�AH�1,�j���g�2g��ye햷�sg5\	\�xfN���3������O�����»���X��ʶ�"݋,鎽I]cA$�]!�(�-��T:���B2�fP�b)�/��ש����'�`98X�=)��1:�C��2I
�D���	4+
Ŧp�`V0ًM��Ų�L�p�7�T.�z9��*`x�2m�nGC8�a��.�oC�
�8���S�(d
�nw_"��D��5>6�a6�������pkK����l���p0^m ���1��ϲtY*���|~0�&��	촔+~�d¬0[�L��H�W�L��&g;J]Sh�IgXAU�h�̾:�DX��#��[�Q��R��M�~���i��
��0IGq;rp4�}a��):j2Ǜ�2��`e�b����+j"&S��e�bRfۍ�V�J�&���!�܅��r���A�ꡪ��;o��E��\}�K����8�38�9�g�f�����45-�>{��Es�q�)*d1�H����[#��#���L����^R4�d�V�p

S*4t/�Zےy2K�:1�ᆴ�:�0+��^DUB�PC�	��\�@�V��(���y"T�TT�`���A�F�%9�LG�"�$�P*��P8>,�%�I��I���2���#�CE����

��A,���'��	Mh�*���4�tà�
��_"=*†,-D�͋6=
�������"J�f�b1�v�dE����_�'�19ASQ�"����a܈�'�| f�]��	<�V��28 P��\��R�X�)ƒ�2NC�m/!�&�wn$�^�UC��	�D�_C"�+$1�mYŧ��Ȉ����H+��2s�B�8&v\��T��+��9toR�T�����H�[g�5���1��HaDZ�9��$i8�T1t�J@��+�,]A��[d�o��[��	���L����u{�ODc��.�o�����ۏ�?�{l,5��ƞ7w��?k�}����FI*�2| ڡqjQ7���L"/���XjFc�*��>��u*.YQ�#+2>8�GMQ8tA�	�!k
����`�;du�����^.��8ōF����4ǕE̎�޾���Ѫ�~�����x4\��pcc2.`
�Tjz�tI�,�����i��p���a�4�hHV��5C`8�{�.�������iXV~P��b8^�%�Ԁؓ�P%��y��'��B�g2�	�B�px=�]n�=n��X���N%����p4kimR�����555eY�������5�`��5� 4�F��
�eH�G���ĉ��5��:�w� 	���3�iaQsVb�d����IE]x�9'I�QH��64ӎ�Hjã��oO�L�%12�d�
"?�
GI�~�Z��Wū#-��%���D��
3�fV,ԪF.Lj�7*P~,���B".- } \}P0��XNQ����e�<a�Y���;C��<S���l������$�K�'F�������A��9�9��T�p������G;�^��ǖ�r�k�NK*N���\��p$�1��g^ڽ����<UR�1p��؁	5�C!K1ψ��ec��d�\*i���k��pm�?DQ�;����'�~�
AT��iM��E���K502PS[�q�(�$��|^�������?`�9��aXzxxa>�a����/���u��T�y��c�x"@Hk�L:��9��!��C�|`��� 4�
�a11_����h�
�5EJ�,��N�#��`"��)���7ЏG]�x<����q0�~o*�w�/�HJEp;��/��f�y��	���aϤҙL��@Yi���ڐ�{8��23z��m�7�"Z`D�BZ�)N	m��l��s���z���s)9��cV�񥈖�x�BP5ѼD�^) amÉ͖n������+�ZQ�&*�w�0��D���!�t��5�����?���Y��N�})����'��9�`���e��^�~��u�>���j���w�<x���X����U�'x�ϼ�Y��n��s��-/��t��8��	�f��/��+�In,��|�+w󂭬��]�&�s�j��b,�]�)��I�#]���'O
�
vCp�������%���5��xK��L�b�H�֤B��pi$���_]v8� �c�'m�B!��p,?K�����>
B�R�(�JMM-�%&�gdYn�oP53�
�����B|,���&I"J%����T���0<�<0.��P`_a�\ B��}�!�%�_�]Hb�8)��R5�`����tQ-a�B'ĕX��B��n�%Sɀσ���P����?c�E�J�B$�����*����!��	ln*g(��	u!�x�M��/�'����~ad��n��	�p�nC�D�򪪉��&h
��e�t�?�Y\śPB-8�	"(b�<d5��%���x:�u�_�l[6!�p+E��uV5������8w(*�'�P
WZ��&��Vq?e�FTZ^H�[2�Y�s���#Dర$5;P�z}�ѶY`rBU@dk��(*:Mӂ�-�.X�u�nz��;�ެ�Eo�]��7�>��/�ѹW/"�~	�X��d,���(��c�ܚ]�w���\�E=��V/�	�|1Ƥl���hll8:z��֪�G���`HZYQdVS��|����E�s.:+�ˍ��p�"��D��ֶVY*��>00���kj�����")�TB%�ؘ�.`Q*��y0��0<u�<JA`��e`(	!��vƀr�T�;mh����U�4�
D!As`��U�us��
Ւ�#<�D�2�t���g�g��ZZ��S�<}�|��s�g�9���t`�i��16�TU��p$0a��

�G��y�U�N7��c��m�SY�B��}X��N�P����Q�FCx3�i��OҍJ��@�|&��M�}����( 81:G0ajҙ���֘*g$䁂�0ņʎ����pVW3.jR�����!f�3�}Z�uIG�1�f�ʂ��A �d.��nDnj������wʘ���/�i&n>;�3Nh5��cLh=Ň�l�04����G�%��UQ5���]Q
K��Q��A4bI�����6w�۰yk�ݿt�BMEq��:g̘i��u�t׸�n�.Fh�Ez��iP
v�\�h��?{畮����U� ]~uU�!�t<�9�֖�j��$e_۳�H���'�b�7��{u���I���I����Tuuum]�%��rY̗�im�ң9�,#���Z�ϟ� �K4:
Glv'~�$:]n�߯k�g��544"07d‹'���M,ǃW�p�<>���Ǵ;�o�**��ms���j�r�*�	�`c�NEQas8��&��`�0U8�F�*�s�PX���ec`��r<������ʱ������n��O$�"h	��p�4L��jw.��/��UUq�.��n�Q	P���J�0�X9p��׹r��W�mH�^��q���.��#C�p��cn`����Y���'D4x�RX��Į�I�B���cX��"5R��tP��L<�
���z�o{22X��c.�Q�1E�x_��ن��a���t��.��!�Q)z�,��:oR��"'eݚ)�j��b� ��+�Eq���^�nE�h��H� ���b2_�d�p�hLlEH�H*�Ȋ�D�YGX7�f���wIS3J���+�/�S�z��>wsC3�"R������M������U1Ps�TI\��
%�&�J����/oY_PEN#�,�SN��*	x��U�W��y\��\�M1&SL{"�;�n�u��jU9�5�b�����#iT�T�pQtEWW�A���?�kXdYݒ��5$[P��h9W�B�
͜�Ĥ'p�A �\�CSt3N1G����톕	F]�D�i�8Q*ף�;2�1�,��Y�vK�C�.k��Hn�0�^��S��.�uEG��nn$2���
UjTE%(�Q���Om�xW��Go�W���fp�"P=�I,�{w �W�S+r����،{�/���v0�����d�K��.Лγ��'�/���P��x�;1~�g7��#'�cqX�F�D`^bȴX�]e�G�uIU�	_Y>gxhh:*���f@�{&�#���.K�%�,�
�,��x���������9;Ϲ���88�[���4,���z���>��9��w��n�2����.Ta����v�qr,15�q�I��ߪ����s�g��<����Ӏİ�z��(��0�q����X�*z�+t�ά�z6P��a������S���TuØzP�|���Ը��ԘScjL��15�Ɣ��ScjL�)�55��ԘSkjL��1e���ԘSc�`M��15�Ɣ��-�Qx�tEs��Z����~qp,���?5!�~��ɮޡ����g��(���n}�y����'������t�����|�C���ԛx��??��w������{�����1��f(o��jNwܲr�c�{�u�������u7�T���NJ��%K���o}��7��w뚖̟�g��P�j�Ԥ?eٻ�H���K.{�g���+�����)�[�����l��lVd���[�F|>�c��/�rG!(�-3�~㉿�ދ?��������s6���/���[o����|6�,�"��;�2K���wdzkÖM�����o?p0�+����8����_m��������پ���ˮ�o�Ɉ���ҩ��zk�TGob�ʫOv)s�"y�3���?�	*y`ǁ�ˮ�aZm`�`�!��_�����
;���o���ןW��Ϟys�k�����-��oY��A�7���w�{��{>z��o�k��������/_}��c�w��	Q,nz녿������1^P���ۇ��O_{~mq�뱧�Xyٌ��9����0�{�'��X���mR9w�P�h�A�����WpJ���v>���0�5�_�����W~��������?���;�{���t�'>��<<�;�����ku�Y�c*�q�:���k���8f/�D���;^	�Zr`�ƥ+V۹~刺��W-Y5zh�ڛ�k�ֵ獯����-���w�jڧB�?Ԑ�_��O�ظ��_].�DYC�'6<��+|���Wu�ƕ�6��ֿ}��Y����S�p��sk�f�)#P7m����F��k��|���n_��a��ȿ��<n��Q�F�����~��ţa� ��s����Yu��KZf,��_���W^�w��Ǟ}���zR���'�������F�����O\y���A���q�鞾^O��'~�X.>�w�=��?|ɐ�S�H�O�����Ec�OG���O�|V����gﻡ��I���?��7?�֚�5Vعq�Pި�k��q����p�W\:�g�����/�gY��_����=M5�r����r1�����9�g[{�'?zݣ�������i#���=���>�dt�ٸf���ʅ��ֿ;�5��I�����]w��~���[y�Pd��J@��Ų��6��W(4ι`F�?}����3�^y-)�
%gkX�$�wd�_zp�������?�� K�bY�%���5<�w��i�4��:u9����ɣ�?10&��$��/dQ���fPZ��o��~�W�,+g��f/����jhm��\�wG㯾t��L�ERN�I��aun�$�m�������c�<�ˮ��[n^}٥��_���6�	�W�vg����U�N���7���PnDS�tr�El^X��������&˲�l��z�7�.�ί|�o�uo�<��W��jႅsg4'��kW�t��W͝5w�
פb#.�c߁��~髗.^8������|�]
~�._�d����usב�u�W��7��.Z�s8���]u�M+�׶~�w.�;=>��bŪ+�Y��j��믍��.�▛W-�3����Q��1�,�2Y���z�v���Pֹ��.eƲ2��_����f�[z�"�ЪB�����D��4lZ�i�%���Z����H����-t�{p��[/_8��n�rr��kz�sχ%��)��Hw'5�w��/�����/���Rω��Ϛ�^���o�շ���[���/^�EU���}�V0҄��.�[J�~ӽ���ks��q�����J�E=hO�����T8���ٗ��++˒f��SO��Lॷ�"��24e�&;��N���ՠ�mj�]�o��Xg���ScjL��15����f�r���h�|6]�������O���΄����o{XC�U��LY*���*�T*T�$\.eU�O!˦~�&�ҙ��b6����2VU�P9�.+gF��
�`���
���m_�����V���cP����~#�)k�3�e��M��ȧ���7�~i|��{�>$B5������^���G�xpI�+F��C���ŷ?4Kbl�dG�0Z������T�z��О-k�}���GGӓ�T�����1�W�)����G"�����{��-��5+���I��
�g��_�����%����IfM�M/��=]��S>_y!��Z���_�b��?��_��F�!��۾��5�:�HA���.��^+���?}8�E.i
���j�s�5��}������j�ly�J��̏r��s���㯛y�ܺg_}�c9��S(S_���zm̡��������Ͽ�
��௒f�zq���>s��~�t:�w��^y+W,���&�ᯜW����6�c��ףƮ�c���_<�����`�4�7�������8s�;����u�O?�dgDZY��Ь�B:1�m|�DI��캮�o�\}=���g��&�j߻s���Y�c���W�n��ΐ���#�֏=�lN3>Ή[��Z�vܾz���>%�-w?�?�c���8�e�(�G�l�s�=��/,_y[f��/�^u��#kwn�����R�W�z}��ً��}iEyl��U���O��FQ6>��/7Wy���㿶�"6�����u��n��c���
�E�-������Y���E[����/��l��C���zG��U7�z�N\u͕���b閃;�|�������z靪�Y���7:rw]w9�<�ϧd�ӟ����?L��
�EW������'�ηB��wڳw���R�e�eg��,��L��;�Y�ʳ_���(tl~�]�\w{��X=5�8��ͮ�;�ަ��wP��lNH��]P����]y�C7-x�W��ry��C_��o�C���Bss�|���ʋjS}���)���{��j^<�nWRa�7�mo')�o{��R�ͻ��X�G����/]�p�9yp�hw����X� ~��>��u�3fΚ3��D��W-~�͍�T�]��K������l?0<�)�6l���]���΢n?vp�A�tg�Sw]��_<�����o޷�k��۝����[�c��#O�Y�V�i����v̚7o��͗���M���ç��w�5O�/�z�e�����'�IK܉�[����h����_~ϟ�^:���ɞc����̬��:���(�۹e�>/O�-�q�?<c��V��y0��F�;�F7l�;gF�=�ϥtCs��c/[�x8*~������7�u�N�9�������dߛ�7,���|��3>��̴���CB;����X���-v�P]߼`޼�����5���H�D����	�_y�Ŏ�tCm���d8��pRP����v�L��4IȪxh�w;\��{�ox}���&� [�7����x_0:����$�!��r����K�}魫.[p�������T��e��l�����Ɠ����ƒ��Q��S�4��c�y(@��=Q13��<;�AIm��9q,���\rU�g�ɼc�UK�������s�x�=���M�����^��������=�M�hz��i� �n_Ucm��;�,X0}Z� -��]<IP���y�ŗ�r��*��cٿg0�[N�44����;�6�RO����Jpy[��{v�.�p��H��4��};���$�����z�������z����r�hg���s��ͭ�N�P���X�<z8]���;�n~��7c�?��tό��EM��-3���ko�k��d���k�$ۍ+��Y:�MB)��Z-��+o��Y6�ڙ�YF�1�p)1�n�;���c��O��a����r����d]GE�q�ʫ�����֬;q�����<xh !ϝ;2��k��s�WwG��S7��o��~�4���7G�RMu�C`�Z��NF�Z;vo�_vYk]�9yp�{jt0QP�)[��z���w��M�>}�\�@����G���9�r�'�\��>�oۺ޸t�+�~�G+>����#1ܳu�!_0\S6{��6�)��Һm{�g_�l�C�;��}�T�4���؁�]��o��.F׬�:����ALy>1��[f/�fZ�����X�B��c��w�w�3fΫ��]~�W�@��:�����ձ�C�`N}v���.�˴��ʗO�lز��Y��ɾmN\w�-J�{�W�X�g������@G��̖��_[j�ټ��[w���Zl~'�:W_5�~x��t�j�9u?������������?��E�}�%l˗��c��ZsN�\��rS��7>��9Șj��FÌ�������G�?�p9�h�~��v�����簦�ԘS�7X�����]�Ov�g�RI�ߎc'���K�t6��H^9�)��8�;5��8q�P<+��[]9�љ�e
�6��>����2����o�J(N�S�9�m�w���G��P�u��2����T8�9�G�h~p��?yqS�dGYpV��j)�Ȋ.����[6+��3Y��s�X*?�w��'Z_W�yx��X��(�w��6�rn���*�ps����d��8wo۔U���}�о�^x��P��K杧��a
R1K�l9:ϥ���^N/�l�M��T�
t�i�m�����)��렷l�L^��۵mK�d���=;�%
j8�m߳�w4[�wi����>����z=0T<��5WW>�w[�p��6��y�hg��JG:ND�����ۏ�#�������J��h�hU����8�'�3��g�|,�T_�q	}���眤O.:>�d�'X�E��Z�“�zs�x�Q�:r(�eͳCj�F��K��S�_z�
4�c�Z>ρ�!�KΎQ���س.�,���٫�����������7^x�
O�rf�skw,h�=zd���;?r�=���˽aG{�-w�7��Fc㉝{z�+W�>���.�W,_��;BF����l=q�=ݸ��_��6k�;�/�"��Fv4:��Wy����1?���BG�����+��o̙^����+�]�߾����]y�J5;��-�ݽ����ko�pÊM{;Ri�?Y�g�/m>�;l{'Y��F�x��][�Ϛ���T[���rdž͋/Y��������޷�y����ޠF���?r�-�';%�T�'��o���MǾ��ONY����<���O���*jm�6cV�����S�<k��b� ��}�����v�t��_�ӏϞ�8�"�P��nudžg�(���e��is���v:��/������7��O��qp�k�_��58�h�U��ښj�G��뛛kB]��l��8cn}Ƚw��9�o���h�C41������b��������U�e��{>y�Ջ���/���-�
t��g_���Kv��?s�b7Or���֦��I{d�̦���'�܁*OG�c�^~�}�����U��g�8rx�-���g>9�ݹ�#���Vܷgڢ���#s\~�+��Cͳ�~�3�UR���r��~��Ι�,i����ýW,[X�����|`^X��>u��USk�C9.2��n����1�J^��f�5�\.�� r�v�o��yA�E���z�k_}|���/�׳���l�>��Ej�۠����
{:�u�c�ۧ��$+�6�?�~ێ����uWo�(��z�e�;��,\�3�D�ˡh�T.R���ܳm�>J<��}��g6�Fg\�G�ii�V��+���@�u��f�R���,K�A-�rU]���=C���ř�_~��iƃ�x�б����j�֞��UME��y]��c��N������m��Q�?_w�m?z�G;�x.��z�M������*��v�4���������音t� ƼK�ضn().if�w��~��K�����شi˃W.y��EӧD>����a��Y��o$M��x"
BB�|��p��hZSU�a�R^2X�C(�4˧:����_�˿�8�2����t�a���׼p I��;o�8�2,��F<�
��R[2�C4�!�I"�N�v��g�T5��I��h�㰀[�4�ˡi:��;��8�3�����u6�&)��`'��&iJQ%TPQA����rH���-pW��}������J�p�X��(�^��|��{Ι��lg���O���Y'�g�}�=s�Y)�JY�qO.������؞
=Y���k�7ʕ1�ka����Wg�r��Ug;v���A�v�?��c?|������љj5�#�Ӄ8���J���ƕ��N���Tv�8�R&A��V�ё0N=�)���/�X�~�҉o9��:�70k]`��u;]}��rnݻ��DFA+PlG��߼5���pNͣ�'��:1~۪/�x~�5�����&33��'�%�ay��_��c{'`XcX�h�hi��5g/�~�A7b�T��V:��չ!&&ơ�|�@����[��X�c��G����-=���aX`ٰё–�,a3(�3}��v;�70�KO��Q�Jٓ�	����u�8��o��J�@\����[O�&��\+���@ynVtZ��;�<��@�eF0���k,�b���f�=�:)�����ux���X:ac�N��J�n.$q����ק�m���'��2��w�mi��R�A�X���((�!u�^Bk��
�Na�ʧ�F#6(��MO�FȬ=t��I
)=�{~�/�
���bT��W��aF�S����~��_��Fzr"R�<�*���ldv%8���P��/��딡�k;+O���]##%�b���t�J�������'�&��"�z}��+��Vo�*+R�RD��O�I�y�U^A��Q^�I�@j�γ1DS�r{�Hy�79�
���J�m.���˼�
��"�a_����ܪS_!vV��;���B��#:z��
�t����HmQ&��UY3��)���m��ŷʛT��3���+�#�W関{�oo��`Ʋ�_a�u=m\v+w�7k	��gu��6�gC�f$�6��t���J(��MP~����݌̻X���cXƿ�6+f�W�n�孃���aQ\I�-�0|u}�)��,7޾�1�2�G�)S��Q>��#{׳����&�b@b��y4���y\��3��
gI�|��b��e����|>a@�/i��aub��߾��R��l��4(巊n�aX`#���P~� 7��aLk�o���r�B� ��m{ 8_v
�]6�l�af�s�%`�
�.�$��x�d���F���
@v닙�>iު\)�f��2��G���|#Q�ue���<��j����!��`�f�Q�$c��������������׭�[r�2c<���bU�lR��浿t������{���qr�4Mɡ�O����f�s{v�~��#�{
��Oo��q��:y��|��C������}� U�B����k�:w��o����LLط��VC�VLz~i7�ws���RJW�W��7O�O�
����KEo�}���\�ŗ_���U:4[�����ݓ��,�r�w>���%�"��p�R��:tp?�ش��s���6ő�o�;R�wX��I�,��J���H��4[gΓI�f�������i��\O^��)yV��SV�z�q���Q���k��
�b�?7=S��c5�y-�v+���}�'O��[����	�萒/���z]ŎY��yR�T�,EQe8��1�R��gdR��F�!S��c�ҿbw��`�*,����gv�g�����b����8X��������ea�b����0�/���w���0�&�?���l�Q�j�n�ij�Db�����-�>e0zY�$_?45:Z�Z׺�������܈:t�7@W��Q��,:)o6�*jV*��Ξ��~��?O�����=�����7�bn����>�t����G��֯�a*�Μ��wO����]�ơR�����n8׊�(�b�_]�^ȱȀ�5wt(�)��f��Qz��}%��I�w�R��[o�-��=���t��+!!X}c��C�)�p/��0,�a`X��0,�a`X��0,�a`X��0,�a`X��0,`X����0,`X���`K���9��?IEND�B`�themes/clarity/v1.0.0/theme.php000064400000002211151213255600012131 0ustar00<?php
if ( ! defined( 'ABSPATH' ) ) {
    die( 'No direct access.' );
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Clarity extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'clarity';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct( $this->id, $this->version );
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style( 
            "metaslider_{$this->id}_theme_styles", 
            METASLIDER_THEMES_URL. "{$this->id}/v{$this->version}/style.css", 
            array( 'metaslider-public' ), 
            $this->version 
        );
        wp_enqueue_script('metaslider_clarity_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if ( ! isset( MetaSlider_Theme_Base::$themes['clarity'] ) ) {
    new MetaSlider_Theme_Clarity();
}
themes/clarity/v1.0.0/style.scss000064400000006065151213255600012366 0ustar00.metaslider.ms-theme-clarity {

	&:not(.has-carousel-mode) .flexslider {

		// Animation fade out
		.caption-wrap .caption,
		.youtube .play_button,
		.vjs-big-play-button {
			animation-name: clarity_fadeOut;
			animation-delay: 0.5s;
			animation-duration: 0.5s;
			animation-fill-mode: both;
		}

		// Animation fade in
		.flex-active-slide {

			.caption-wrap .caption,
			.youtube .play_button,
			.vjs-big-play-button {
				animation-name: clarity_fadeIn;
			}
		}
	}

	.flexslider {
		margin-bottom: 60px;

		.slides {
			display: flex;
			flex-direction: row;
			li {
				display: flex !important;
				flex-direction: column;
				background-color: #fff;
				margin-bottom: 30px;
				margin-top: 30px;
				
			}

			.ms-vimeo, .ms-youtube {
				background-color: transparent;
			}

			.ms-vimeo .vimeo {
				margin: auto 0;
			}
		}

		.caption-wrap {
			background: #fff;
			border: 1px solid #d5d5d5;
			color: #000;
			display: flex;
			flex: 1;
			line-height: 1.4em;
			margin: 0;
			position: relative;
			opacity: 1;
			width: 100%;
			
			.caption {
				padding: 20px 70px;
				text-align: center;
				width: 100%;
				box-sizing: border-box;

				p:not(:last-of-type) {
					margin: 0 0 15px;
				}
			}
		}

		.flex-direction-nav li a {
			height: 50px;
			width: 50px;
			background-repeat: no-repeat;
			background-position: center;
			background-color: #fff;
			background-size: 24px auto;
			border: 1px solid #888;
			box-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
			border-radius: 100%;
			
			&:focus {
				background-color: #d7d7d7;
				outline: none;
			}

			&.flex-prev {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%234c5459'/%3E%3C/svg%3E");
    			left: -60px;
			}

			&.flex-next {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%234c5459'/%3E%3C/svg%3E");
    			right: -60px;
			}
		}

		.flex-control-nav {
			bottom: -35px;
	
			li a {
				box-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
				background: #07383C;
				margin: 0 5px;
				border-radius: 100%;
				opacity: 0.5;

				&:hover,
				&:focus {
					opacity: 1;
				}

				&.flex-active {
					background: #07383C;
					opacity: 1;
				}
			}
		}

		.flex-pauseplay a::before {
			font-size: 16px;
		}

		.flex-pauseplay a {
			bottom: -35px;
			color: #fff;
			height: 32px;
			text-align: center;
			width: 32px;
			background-color: rgba(0,0,0,0.8);
			border-radius: 100%;
		}

		.flex-control-paging li a {
			width: 20px;
			height: 20px;
		}
	}
}

@keyframes clarity_fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes clarity_fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}themes/clarity/v1.0.0/script.js000064400000001552151213255600012167 0ustar00(function($) {
   // metaslider has been initilalised
	$(document).on('metaslider/initialized', function (e, identifier) {
		// if .ms-theme-clarity
		if ($(identifier).closest('.metaslider.ms-theme-clarity').length) {
			var $slider = $(identifier);
			var $container = $(identifier).closest('.metaslider.ms-theme-clarity');
			var captions = $slider.find('.caption');
			if (captions.length) {
				captions.closest('li').addClass('ms-has-caption');
			}
			$container.addClass('ms-loaded');
		}
		$(window).trigger('resize');
	});
   $(window).on('load resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider').each(function(index) {
			var width = $(this).outerWidth();
			// if the slider width < 600px
			if (width < 600) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}
		});
	});

})(jQuery)
themes/clarity/v1.0.0/style.css000064400000007361151213255600012203 0ustar00.metaslider.ms-theme-clarity:not(.has-carousel-mode) .flexslider .caption-wrap .caption,.metaslider.ms-theme-clarity:not(.has-carousel-mode) .flexslider .youtube .play_button,.metaslider.ms-theme-clarity:not(.has-carousel-mode) .flexslider .vjs-big-play-button{animation-name:clarity_fadeOut;animation-delay:.5s;animation-duration:.5s;animation-fill-mode:both}.metaslider.ms-theme-clarity:not(.has-carousel-mode) .flexslider .flex-active-slide .caption-wrap .caption,.metaslider.ms-theme-clarity:not(.has-carousel-mode) .flexslider .flex-active-slide .youtube .play_button,.metaslider.ms-theme-clarity:not(.has-carousel-mode) .flexslider .flex-active-slide .vjs-big-play-button{animation-name:clarity_fadeIn}.metaslider.ms-theme-clarity .flexslider{margin-bottom:60px}.metaslider.ms-theme-clarity .flexslider .slides{display:flex;flex-direction:row}.metaslider.ms-theme-clarity .flexslider .slides li{display:flex!important;flex-direction:column;background-color:#fff;margin-bottom:30px;margin-top:30px}.metaslider.ms-theme-clarity .flexslider .slides .ms-vimeo,.metaslider.ms-theme-clarity .flexslider .slides .ms-youtube{background-color:transparent}.metaslider.ms-theme-clarity .flexslider .slides .ms-vimeo .vimeo{margin:auto 0}.metaslider.ms-theme-clarity .flexslider .caption-wrap{background:#fff;border:1px solid #d5d5d5;color:#000;display:flex;flex:1;line-height:1.4em;margin:0;position:relative;opacity:1;width:100%}.metaslider.ms-theme-clarity .flexslider .caption-wrap .caption{padding:20px 70px;text-align:center;width:100%;box-sizing:border-box}.metaslider.ms-theme-clarity .flexslider .caption-wrap .caption p:not(:last-of-type){margin:0 0 15px}.metaslider.ms-theme-clarity .flexslider .flex-direction-nav li a{height:50px;width:50px;background-repeat:no-repeat;background-position:center;background-color:#fff;background-size:24px auto;border:1px solid #888;box-shadow:1px 1px 2px rgba(0,0,0,.3)!important;border-radius:100%}.metaslider.ms-theme-clarity .flexslider .flex-direction-nav li a:focus{background-color:#d7d7d7;outline:none}.metaslider.ms-theme-clarity .flexslider .flex-direction-nav li a.flex-prev{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%234c5459'/%3E%3C/svg%3E");left:-60px}.metaslider.ms-theme-clarity .flexslider .flex-direction-nav li a.flex-next{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%234c5459'/%3E%3C/svg%3E");right:-60px}.metaslider.ms-theme-clarity .flexslider .flex-control-nav{bottom:-35px}.metaslider.ms-theme-clarity .flexslider .flex-control-nav li a{box-shadow:1px 1px 2px rgba(0,0,0,.3)!important;background:#07383C;margin:0 5px;border-radius:100%;opacity:.5}.metaslider.ms-theme-clarity .flexslider .flex-control-nav li a:hover,.metaslider.ms-theme-clarity .flexslider .flex-control-nav li a:focus{opacity:1}.metaslider.ms-theme-clarity .flexslider .flex-control-nav li a.flex-active{background:#07383C;opacity:1;}.metaslider.ms-theme-clarity .flexslider .flex-pauseplay a::before{font-size:16px}.metaslider.ms-theme-clarity .flexslider .flex-pauseplay a{bottom:-35px;color:#fff;height:32px;text-align:center;width:32px;background-color:rgba(0,0,0,.8);border-radius:100%}.metaslider.ms-theme-clarity .flexslider .flex-control-paging li a{width:20px;height:20px}@keyframes clarity_fadeIn{0%{opacity:0}to{opacity:1}}@keyframes clarity_fadeOut{0%{opacity:1}to{opacity:0}}
themes/clarity/changelog.php000064400000000115151213255600012135 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/ms-theme-base.php000064400000020153151213255600011172 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}
/**
 * MS Theme base - Use to instanciate and store theme functions. 
 * Extend it if you need to change / add functionality to your theme.
 */
class MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id;

    /**
     * Assets
     *
     * @var array
     */
    public $assets;

    /**
     * Registered Themes - used to give access to the themes options and settings
     *
     * @var array
     */
    public static $themes = array();

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Theme Version
     *
     * @var string
     */
    public $version;

    /**
     * Construct - set private for singleton pattern.
     *
     * @param int   $id      ID
     * @param int   $version Version
     * @param array $assets  Assets array
     */
    public function __construct($id, $version, $assets = array())
    {
        $this->id = $id;
        $this->version = $version;
        $this->assets = apply_filters('metaslider_theme_assets', $assets, $this->id);
        
        // store the current instance, to give it global access via MetaSlider_Theme_Base::$themes['theme_id']
        self::$themes[$this->id] = $this;

        $this->init();
    }

    /**
     * Initialize hooks
     */
    public function init()
    {
        // Enqueue assets
        add_action('metaslider_register_public_styles', array($this, 'enqueue_assets'));

        // override the arrows markup
        add_filter('metaslider_flex_slider_parameters', array($this, 'update_parameters'), 99, 3);
        add_filter('metaslider_responsive_slider_parameters', array($this, 'update_parameters'), 99, 3);
        add_filter('metaslider_nivo_slider_parameters', array($this, 'update_parameters'), 99, 3);
        add_filter('metaslider_coin_slider_parameters', array($this, 'update_parameters'), 99, 3);

        // Pro - override the arrows markup for the filmstrip
        add_filter('metaslider_flex_slider_filmstrip_parameters', array($this, 'update_parameters'), 99, 3);

        // Adds classes for thumbnails and filmstrip navigation
        add_filter('metaslider_css_classes', array($this, 'slider_classes'), 20, 3);
    }

    /**
     * Slider Classes - Filter
     *
     * @param string $classes         Slider Classes
     * @param int    $slider_id       Slider ID
     * @param array  $slider_settings Slider Settings
     * @return string
     */
    public function slider_classes($classes, $slider_id, $slider_settings)
    {
        if (isset($slider_settings['carouselMode']) && 'true' === $slider_settings['carouselMode']) {
            $classes .= ' has-carousel-mode';
        }
        if ('true' == $slider_settings['navigation']) {
            $classes .= ' has-dots-nav';
        }
        if ('filmstrip' == $slider_settings['navigation']) {
            $classes .= ' has-filmstrip-nav';
        }
        return $classes;
    }

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        foreach ($this->assets as $asset) {
            if ('css' == $asset['type']) {
                wp_enqueue_style('metaslider_' . $this->id . '_theme_styles', METASLIDER_THEMES_URL . $this->id . $asset['file'], isset($asset['dependencies']) ? $asset['dependencies'] : array(), $this->version);
            }

            if ('js' == $asset['type']) {
                wp_enqueue_script('metaslider_' . $this->id . '_theme_script', METASLIDER_THEMES_URL . $this->id . $asset['file'], isset($asset['dependencies']) ? $asset['dependencies'] : array(), $this->version, isset($asset['in_footer']) ? $asset['in_footer'] : true);
            }
        }
    }

    /**
     * Adds parameters for this theme. Used mainly for changing the Arrows text + icons
     *
     * @param array      $options      The slider plugin options
     * @param int|string $slideshow_id The slideshow options
     * @param array      $settings     The slideshow settings
     */
    public function update_parameters($options, $slideshow_id, $settings)
    {
        $theme_id = false;

        if (!$this->slider_parameters) {
return $options;
        }

        // if preview
        if (isset($_REQUEST['action']) && 'ms_get_preview' == $_REQUEST['action']) {
            if (isset($_REQUEST['theme_id'])) {
                $theme_id = sanitize_text_field($_REQUEST['theme_id']);
            }
        }
    
        // only fetch the saved theme if the preview theme isn't set
        if (!$theme_id) {
            $theme = get_post_meta($slideshow_id, 'metaslider_slideshow_theme', true);
            if (isset($theme['folder'])) {
                $theme_id = $theme['folder'];
            }
        }

        if ($this->id == $theme_id) {
            return array_merge($options, apply_filters('metaslider_theme_' . $this->id . '_slider_parameters', $this->slider_parameters));
        }

        return $options;
    }

    /**
     * Add manual controls to this theme
     *
     * @param array  $html         - The flexslider options
     * @param string $slideshow_id - the id of the slideshow
     * @param array  $settings     - the id of the slideshow
     *
     * @return array
     */
    public function add_title_to_replace_dots($html, $slideshow_id, $settings)
    {
        // We want to insert this after the closing ul but before the container div
        $nav = "</ul>";

        // Only enable this for dots nav
        if ('true' === $settings['navigation'] && 'false' === $settings['carouselMode']) {
            $nav .= "<ol class='flex-control-nav titleNav-{$slideshow_id}'>";
            foreach ($this->get_slides($slideshow_id) as $count => $slide) {
                // Check if the title is inherited or manually set
                if ((bool) get_post_meta($slide->ID, 'ml-slider_inherit_image_title', true)) {
                    $attachment = get_post(get_post_thumbnail_id($slide->ID));
                    $title = $attachment->post_title;
                } else {
                    $title = get_post_meta($slide->ID, 'ml-slider_title', true);
                }

                // Check if it's a string and not '' and use the count + 1
                if (!is_string($title) || empty($title)) {
                    $title = $count;
                }
                $nav .= "<li><a href='#'>{$title}</a></li>";
            }
            $nav .= "</ol>";
        }
        return str_replace('</ul>', $nav, $html);
    }

    /**
     * Copy the query from ml-slider
     *
     * @param int $slideshow_id - the id of the slideshow
     * @return WP_Query
     */
    private function get_slides($slideshow_id)
    {
        $settings = get_post_meta($slideshow_id, 'ml-slider_settings', true);
        $args = array(
            'force_no_custom_order' => true,
            'orderby' => 'menu_order',
            'order' => 'ASC',
            'post_type' => array('attachment', 'ml-slide'),
            'post_status' => array('inherit', 'publish'),
            'lang' => '', // polylang, ingore language filter
            'suppress_filters' => 1, // wpml, ignore language filter
            'posts_per_page' => -1,
            'tax_query' => array(
                array(
                    'taxonomy' => 'ml-slider',
                    'field' => 'slug',
                    'terms' => $slideshow_id
                )
            )
        );

        $args = apply_filters('metaslider_populate_slides_args', $args, $slideshow_id, $settings);
        $slides = get_posts($args);
        
        $available_slides = array();
        foreach ($slides as $slide) {
            $type = get_post_meta($slide->ID, 'ml-slider_type', true);
            $type = $type ? $type : 'image'; // Default ot image

            $is_hidden = get_post_meta($slide->ID, '_meta_slider_slide_is_hidden', true);
            if($is_hidden != true){
                // If this filter exists, that means the slide type is available (i.e. pro slides)
                if (has_filter("metaslider_get_{$type}_slide")) {
                    array_push($available_slides, $slide);
                }
            }
            
        }
        return $available_slides;
    }
}
themes/mixins-selectors.js000064400000005260151213255600011702 0ustar00module.exports = {
	dotsContainer: {
		'flex':    '.flexslider ol.flex-control-nav:not(.flex-control-thumbs)',
		'rslides': 'ul.rslides_tabs',
		'nivo':    'div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled)',
		'coin':    '.coin-slider .cs-buttons'
	},
	dotsLink: {
		'flex':    '.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a',
		'rslides': 'ul.rslides_tabs li a',
		'nivo':    'div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a',
		'coin':    '.coin-slider .cs-buttons a'
	},
	dotsLinkActive: {
		'flex': '.flexslider ol.flex-control-nav li a.flex-active, .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover',
		'rslides': 'ul.rslides_tabs li.rslides_here a, ul.rslides_tabs li a:hover',
		'nivo': 'div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active, .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover',
		'coin': '.coin-slider .cs-buttons a.cs-active, .coin-slider .cs-buttons a:hover'
	},
	dotsLinkLastItem: {
		'flex': '.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a',
		'rslides':'ul.rslides_tabs li:last-child a', 
		'nivo': 'div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child',
		'coin': '.coin-slider .cs-buttons a:last-child'
	},
	arrowsContainer: {
		'flex': '.flexslider:not(.filmstrip) ul.flex-direction-nav',
		'nivo': 'div.nivo-directionNav'
	},
	arrowsLink: {
		'flex': '.flexslider ul.flex-direction-nav li a',
		'rslides': 'a.rslides_nav',
		'nivo': 'div.nivoSlider div.nivo-directionNav a',
		'coin': '.coin-slider .coin-slider div a'
	},
	arrowsLink__prev: {
		'flex': '.flexslider ul.flex-direction-nav li a.flex-prev',
		'rslides': '.rslides_nav.prev',
		'nivo': 'div.nivoSlider div.nivo-directionNav a.nivo-prevNav',
		'coin': '.coin-slider .coin-slider div a.cs-prev'
	},
	arrowsLink__next: {
		'flex': '.flexslider ul.flex-direction-nav li a.flex-next',
		'rslides': '.rslides_nav.next',
		'nivo': 'div.nivoSlider div.nivo-directionNav a.nivo-nextNav',
		'coin': '.coin-slider .coin-slider div a.cs-next'
	},
	sliderHover__arrowsLinks: {
		'flex': '.flexslider:hover ul.flex-direction-nav li a, .flexslider:focus-within ul.flex-direction-nav li a',
		'rslides': '&:hover a.rslides_nav',
		'nivo': 'div.nivoSlider:hover div.nivo-directionNav a',
		'coin': '.coin-slider:hover .coin-slider div a'
	},
	caption: {
		'flex': '.flexslider ul.slides .caption-wrap',
		'rslides': '.rslides .caption-wrap',
		'nivo': 'div.nivoSlider .nivo-caption',
		'coin': '.cs-title'
	},
	caption__text: {
		'flex': '.flexslider ul.slides .caption-wrap .caption',
		'rslides': '.rslides .caption-wrap .caption',
		'nivo': 'div.nivoSlider .nivo-caption',
		'coin': '.cs-title'
	}
}themes/nivo-light/screenshot.png000064400000130334151213255610013001 0ustar00�PNG


IHDR��� ~PLTE���($!/*3<6">F@���w�����*1*���,7/���%+$	27@=GPLGLC}��������	C	�����������@JH���6E7$;������SYSJUU#$50���Wq�IYM61#8-87������������T\\���@@5���gx�gnk,q�����q}����*
5���56/M
ɽ�_gj��������}5GCSl�ORK_x�E_xWbVEa���`^Vfh`;OBx��]a`fXG·�v��Mf���v���ntn�|d@RKE}��KD:^q����*.+������η�gty)@0ryzAL8�³?9*Ͽ�[i` 1���Vah���\lxɹ�iQ8e��UJ@_PB(;$������L_UFVCij�Tfuy��������Hf�I?+�ì|v��y`jV+@=UG49&j}�;]����t|mn��hs`ƭ�l]OOl��t]W�¥pnaVaKqWBԽ�/$_J7& ���}oY���zhRPWAx��̲��|lO��pj�yH^qpeW��l���ZUK����ǫ��u��hPf^s��4E)G3'_�^EaB+5Uv��^=OU!A{tex�=p �����nbxp���uaI�iO��{Q?/o����8'�������vK[cW8$$I /g!YqhFs�P|����Ky&*Vb��](���j%|R8i��6d�̭9j��˸X����qC,�1!�pW���:U,L��Ó_D��͒��W�/*Q1������'E`����ָ>f=���7<�����B|F���h�=�F5���.��i`!��IDATx��?kSQ��W���!%f������ q�����(�BFq�Z��ԡ�ࠋK28?��s�{rn�8����Ο��F���I��W\q�W�篖��8�dc��#ڧ�/���/�~��ZF��h4�k4��n=x"<�u����z��A��P�jY���^_�-��=�C3���"ynk��W3}s�o�����^�9�z����GyͿ7��~7�C����l�"�o��%!�%B�|#�7(�t��Ʀ�j/\QĿ���Q��z7
���[����zc�Ͳ`�2$�ڬf!��b���5�l#D͈&��| c6C$�z�[�}`xo
�N/�Q��D����Ul�dC���po>R	-j�2����
�5�2cAxw���4Q4*>n� �zOD��vS:4"G�Gjї��B���fՄ��������>F�Y>��T
��)�6��J�J���K�$�@H�g��%���z�A@�ĴTk-�II)��K�C�Ȅ�,�ᄰ�C2�×��u�,e���HͮHF���F�LU��dKJ�՜RB�|��7C�(�D{��*CK�U�a�0��̧���	4T@D��&�2B���5!%,-𱥄$^�@c
���DGB��ਊ�tȻz�)q��GQV6̒���4���±n0b) �a%�%��jfj������ْt��B>���p��o�2����4ƈd���x��m�7q2^r�3kAGK#�'��^Wԝ����t����o���D��������Z� k��ע��36����0U�J�K�|�����H,+�$$rL���x%c
dE�7�fM-#cU��1��A����x9R�W�3^	��lY��a���-٠��M�A�_�D.5bX�M�1�
Hg���RD^�bk�	k3���%Կ�|(a_�J�}�#�;޲�v�YiQ(Q�8�z��4��Q`!JGG�� S͑	Q��
���gvRUR�CBjq3e�S6��D��b&%Č�H�����Ȁ~��c��颕!����%Ι�ZTa:d�X�N����ւ�
�}���ܽ{�#[��:!BW:e�џ��RXD&#|�,)�������B����m�w�ZI���)f���� `%��*��
!�������nr8	��2��p�6o߾�qHl!I1�A��Us��͛7m��FFX)�D
�P�դ��B���m��b�4�(�m��kx���Dbm%�!�Ɠ�����ƪ�TC�:�aBO����S����nbި������O����MQ
AI|�u�)$QȢ��E�FB	��|U֡�Q��uF�1X>�B:ԗ´�ü�S�o�P�V�S�$#��5�}9/x����T���(@lo?|���}
''',�e�J�D'bg����11ˆ|� 䁍$!V��l.�ц�7&|��E�ΫlH&�a]"8���{����&�F��o*|��\�^2��(B>�V�VɆ����N5'2�F�����;��ρ���g�}�߽	AHx�%����|��nm�?�
bB�#���X��n�OMg*�|dl���u$V`%���o5����������~�5�h:J��	;����{Ϟ�k�F~J��X�=\�GK	�g��F�	<�cY:�f}۝�n�'�J@� �)9+^��_��xQ:T:��c%�:H�j#���n^�.~`��J��KB8��%� �>ˇc�C��G��F`�Jd�d����'B�>K�.���=�{
ͦ^6ՂG*!7n��H�X���W��upY�G[�2�1�ϧ�Y���TS��H��:򨃀����d"��^�Ь�ڠ�¡U�#��i6�'�_���e�(��KOjV��,̆� �b�4$b���Ă$/e1
�#� ����Hde#�D3lxJ��faÂD�����1��{Ͻ3u?���9�q�	R8l�(�W(�H(����k�~�0��-E�2���	���sA��(0kɇt�X��?v��!!���ӎ_�N��˷X3`7�D��BCI�u�2]��@�����
���G�)#u!�p qg��$��&R�{�$

cX�a!�nWg��0K�|��[��wx)��.��C'S�����(�&��2B��΄i�x�z��ye$�XI��[����vK����>�0�m�#9߲��H���=�C0Pa�q�M��:u#ꖔ�`��+ӕi�NE��U�dD�:̾}z�13�:x��P%�B��:��Ie'}x6>Ԩ�h�9�fD./Xt9}��%��S\�ۇtl�"^B>��;��͔�b���d�"�s�2���s/��{V�\��,4��f{�ʕ�g���i�4��!4�&��M��wa�.�>�4����q�?��ç�P�=�A����w^Ĕ�[����~�9���W���А�����Q+R���G����t��n�j�/���c�a=Q�`D��Az���lP8��/����1�!(���s!=C��$�& e�GVF��9r{[FdC��?�2��e��˂I9n��L��Z
���2pv�>�L
rF��AGM�}H�|�
N����	<�#%:L��$D	����p�w�0BA�rn�>�q��gO̺jk���Xօ|�a��P�=]z������
�M�),����Z������X�!��+�K���BB�wF(
�m���]F��8�Og�a!��K�B.NN�L#8��¡f�DR\�����gx4Z�#>�W�
�0"Ex(���Q*��Ơ?��K�tb��D@&� �^]�cۺI#G��@��ML|u���u̬�X��HIԑ}K��јi5)!T�"D˖
x�z�B�`��9��GB:���
׆�$?F�P8ցa!�BE��`wkc�G�B:n�D�����۴�x�l$z�re:g�%"��r��������tA��(>�J DF�}pn8��B��C���r�k|�t@���z}��þ�|�3DG���$'�|��B�AWcZ�#R-��B��+;�E����D^HA�B�>�d_gpTǬ��}�Y��KG@
�F���4(������C٘����0���yg�.S]�PS�s��h�p$�cW�H�#E���F���n_Ʌ����	%>�)�3‹B��btO�RH�ٙ�i���I%�Dh�F3-�R�p�VB���� IIHkuQ��#��V�-8�g�	`�A��m>��ϧ샗��+��(! ��bW%�=\<����8�����F���,����������f�BR	2%����}�h�2 SH�Vg&�d`G��=Hع,!�&}8J���w`ps�
�x���?�u�o�>M)Il8
S��/O�|�r7�`��1���p��z$xm#�&B��ˇ�]ص*l[Hf:
tK�j�FT褒Ȉ����|��[�5xS�G�(���p�K
�����h���˽������R1x����x<����p���dJ�1a�1	y|+�6�I
�t�z���D�+w$�������$1��7IHґ��J��XI�O����!)6�t�Y��91��x��R�����Y6�=��2��A�("�ڡ�XG���z���6�HO2D��>�<Ϗ�!%��c�=���ģ�(B��B8,$}�OB�Yu;D�&'��:�ўM(SF��
r�̫(	C���"�	��K�@G�%0�d��'k��J8†�"����Ϟ)'���Ph�??�����ѩ��ϟR�{��	�<��B���V�)[�VR@�Y�q�4��Yt�ȵ`ez�}�l8i�6
�v�W�-��I)�Ht�""|	B�Hٟ�~��������cTy 8��s+�8�{�$c�`4�lF�J�`�d�l����?>�F�ǖ�[F�5ss�=�D����ũt�r>�ᅤ\`K��onj���鴃	)�5�J�$�l[�#C��&|P�j�[���E�T|�#�bT�-\#�
�̧.���z*\�V�:4��4�~�8���("��g�熟�ׯ2\�bͩSk�v+Qa�w@�G���wB�YǗ���:=|ː��aN;�l�^#�:�u`�F��:G��I)�̀ݷh�ƶ�X�������/BdFVG;��wI	%��P�S!�{?*�Ä�,5��b-��G��z��ʺPL�S�?~�֩S���ssJ�����!��@�G>�gQZ2�x!d�蠃�����z� E�<ʇ����5��a$*��I� ��q���V����A
|�ֻ9R�C�!��N+�f��xAHr�����P<�s8�Rm�zj���l�G�X��e��+�`��ƫ?l���D>��n���!D�0�m�
����i�P�L�_��1��A!C�b�H)T-
~���K��E�Vqӥ"����R�� :"����}�{�m�>�ޛ�ď���}�yϽ�����ګkkk��PD̃Wp�cQ�#,�O㢳��F,�M�'�@�08R�! A�)���@�!21�N#D������H�+@�+x�H؄��B%��Ѕ/�����l29#���<n 	���ȣ�#cַ�ԛX�(4�y�t����6U i���Y���`������h���v;�3I�Gvx<Y�{���?�b$/���b���V�R������@���,P��C#�3~�_[,��W�}���,������^I�
���@JJO�0��x�ч� ^
�1��C�����"��Z��G#^��
�D��x��>x�Z#�X�C�h�|�����;o9_�<���BJ�\���P>d)�&(��α6�?�Mx�+YC���q6�U
a6���*�T މQE:���Y���l�]�C@���p����@�
򨃄&�\@��Y��D�+�:L‚��@��ā�E�h�
N�+,c��pDJ:�a�z@,�b�[;������x苯I��+V�EZ������GW��N	Y���yF��|��g߾���$��8`a�Z`I��Y3	R\z!�&
�f�AA�HR&�����,L�|�5��\y�����T��y��q �H Ꞓҋ�$;�J"�h��\Ả]kѝڔ^oo��n��^ϔ�@�G��k�}^�@��%��w�{oo�U�!�D����\D�*`8���$�Nq�WK9�e*�V��}�c�2Z�A�p~���!�����mp!qK��~iCA �\�5�V����h�]����_��Mߞg !?U�|H��#��wrr|~yy""
}C�;X_H"��DOs ��Ip���V	G7���k�wC��N�M&ↈmQ���h��b�Ql%)�ӕ�A^�=������E57�����%wpd\��!M�����as5�ڿ�Je�B���kU��C�Q.�;>?��㽰Hw0~]I��QCWqHG-5j�tDC����J}i $����:�dC���Y��D�����.�S�`���,;�o���(����%��26ްWB?�٬��o�~��\��d�?6���DŽx���g ��,9>	iv���(��	_9HM��)���Mckk_��#�;�U4
$,I$��$��~��B�ӻt%����z�m���O%�
XA��U0�����2\1�J"���d����U�V���;ӟ4=<�zVe=��|�$���M��?�F.k=Ե��-%���$�
��D��5p�)�!m�I�`�
�֏D�%�j����=���N����T@����i(��1��J��^�"%�����(?�+xTnA���Qw�z�~B;��:�p�x��kV �Ǘ���՚�#��T���tQמ�>�56C1]�.�d2�Kd��R��*�#�ƒl:.
mhXШ<��Db\O�2��I� eV���xA<�Xū����B",чWf��1�
nۑ�n�#���ܿ9����P'qʎ����7
��I�{M5t�/���d�7V�̂�3��	S/	$�@r��U,��"�0��V��W�#������4\��+�O�H��l��?T[4I�G+u\����w5R!��+�0y ��m[Ot4:�#&�5DL~������À��g�#�h�kʼn��I�hԻ��nȖ���,q����p���!�yd�Z6��L2"pA�\ba�[����]B*��f�~��/�+t�{��tzJ��Qc��繈�$@����@�����
q�"\"n�V֐�V��WU��75ѱ2T�l���p�DH�u�em����x<"�4����²F��c�,�Ʋ�tF$�����W>�"V�z��G�~V*�̤b���$�p� ?�s�.k���o��A�6�1O��s2	6�����r��T��ͣ��9ښ�=�- 2E���Dơ�iJy%S	�$�Hx��)����QxLR,2���9D��|# 1�m�X��2�)��S�PYo�XT���������lCa���l͂��@d��;]������]5�w��mq�-r
ϓe�z�)H�a[��
��^5�����%{6@iƴ"�CD�"��M����P���y�z�-�Y�T��@X�U�lǬ�9��v�,--dzX�����z�"�0�Ӣ��h�W��-Q��&��RyD�wt�ƭL�<���e���+�u��H�:���]�9S4t�Hp��u B!+�H����+������'���\�:V;��;�?�����VP�g:m�F2��_2�9DP(ݯ�/E�F	�}������Jj�!#ͻ�>���'e߀c\
" �p�tWt�^Пw���n����}5�N�T�9�i9����5�������������'{'{�Ae%���<���h�")�&�A+I�|4��D���z-��~w�[e���"НnCĶ)��a2R�u��4|"!��mf�f~��1���]�y��n��.1<�C�C�V�J ���1�“:	��ԸG)�wUSNX�K"���瘁�@��2|�)�c;��Ź$�ݔ��.9�p4���j]�80hE1�,��Y�=�$�(�^�q0Qz=)���Ē��A�;��ET$��ŏ����z�T�*a�U7�*��d���I�ջߍ�q��N�A�C:t�	7xp=��AjQ������tQO,F2GG��-���((H��T��r�EF1�[jEI#j]�Mt� �Pa�Fs��B��Lì��}N�&BJ[��W0]����QY��g�S�Z�݂��G�j1�V�/�H�nA��%"R����=�2�6�9�Mϝ�گjg@�ܩ��u��Fo4��^Q9�H�+$,�"�[�GM"�����&]���Lp�@e�5{�8�ڙ\�>�fN�����F�*F[�wW)&�*��;0�$��-��	�	�ԧ[�ɫ{'Ǘ�ĭ����k@ăU)�`v�k1��-������Ur�@Y��܉6?8�M�R�Y�1�ƅ�Y^��GnC^�ܲ?@%> �P{�"N��V����FIˑ�r�Xr���$��;&#�<\�F�Bapp������I+p�3H`�ͱ�9��sDO`�LeKxE�_�����g��fs��R�}	�f�s}A�ym�T]��]NA���[�!G@.2��w8cQ�B�L^�B3��\X`��� �D���:K�I��1�G�C%�ᰘxZ��ڤ�	,��؄}��W��&�J��F���5ȼ$G�R[�J�N��cߪ��4�p'D$��v�"�������dy�@b��9)�D�(�L5�t�)Z�\�k�r�1T�\��g�+٘(uHXÄ���b�]N��(�-#iA�q�H�n���w�th��0���W�ޑp��>�VP)�.M�wϾ�v�KZ���[g���bւo�W�|�@,�G<�d#)�b5d�`
�:5��X�@c�6%6�܌)�,��(Ngȷ�P�w�XJ �'>0K��#u'rJa��hn���'�h���+���(�1��~#կ�$.M}���J�E�����0���	y�w�R�2�Ѝ1`PmT�*1�kH�
����[���&�(r��Ck�C-
e�m�ے�=�1*�Lc.-/_�4>��q5�t	�X���J(�@dx(��l�VDxI����DeQY�"���4�7�`��/A�C�6����U��.2�F�{Ų^0��S�"�̋%����2�۱�������X@f��t5x�K��Bcȏ'��-����%��Tm<���a�A�[��cb�~�1��y,�Y�@k)���D#�yI��<��#َB'���L$N�-&Y���>�;r���t:e�-�@����~������X�E�q�q�K>�H��g�O�P/)�0����(0~�(!�4C�C��(���h$o��U"L�֬���a����™��F\o{%a蔊[x�]��aH&�(�o|W�M�!��s������߱�pu8���<�@�P��Z���4r'1$mj�:�0d ��$sx:�V&�k��5.)3��(To��2~����Ɇ�b���M�L�"Ei%�/3�}�c�ڥd^�&��+��E\_����^�;~&7C��_�!#�C �)xt�R��^E�W�W+�"}��n��ĬY+nI��2��k](��2*}ހ�%|o4[����y�~���{�L����)�DP΋xA��j:̔�E*��"�A#�1.4�D��QjR#�u���$4x�!	ēQ���7��:��b�]̦��rv�$T��xG_G��
�Q7���;�����D��t^�-���fRa�颷����R	�⦜ڹ��y�c82mx����O?��HL$Fc ~ 7��	��د��9�J�O\9���N�'����%d�0��2xx�7
bQ��z�=Lr���z]���s��LY�f�c����Z�FF�,�
	�Cv�%��Kij;ZABb&r	 8s[W�'H7>���r���q]���]xP3�֠��憒H$
d���3`�E���DU$pbe�!�#��A��*^�Ǭ5CO�vI���"o'߾@����(DB�C��n��v�D>�Qlb<�C���T6סvH�D�9�#@	"@a}�\�	��ת���oU
+)z\F���,�n�<Q&��$���xc?��LSx����Rna�ۮy�roK9ͭH
B�2��x@�&"$wHۙ�4��񹚞]�H\g����w̏Q�1�U���}�Xe�DZ(���$^��L�6h$p�\�@��M��1�
���/�3�߲�&1�Kk����\S�^� �A����L+q��EX�р�7~n��س�~ջ~r$����F;D�W�W�R�=rJX7(�O��wF	�P��-������0�́+� �[�Qx`�ʢţ��?k���Կ�*�M���3Hj�]e	�,8������7�St����5��AA��@B�:�l�ʍN�pW_]��M�E�k>�e��,��h1��^�9�4�HB�JkXTc�%Ŭ[^l���t�e\�g�7 �mgb��_��x�M����t7�F���K7B�?d���TA���`RA�b1� 6A��AP��EAĴ�-&��`��j0��(b���yΙ׹����ݻ��g�9s����0��R8jY�W�z�y��.�J��" P{�P{���u�H&���Sl"Q��	D�W�)#�D�L�D���gZƍ��)����C�λ���۟�[~1�ϗ?	�p��08��_�6�\E, 	�,��Ȉ"H,��L�.�}ʒ�e�Ǎ5��5�"�$�����h('���NH,���Ra}��
��C�u��KTh 3�:�5x�����K"��3��f?�޹��bS�u\��>���yzN	�y��;���^$*%�������y�Rx�08�B���D�"�wʉR-S-6G�0!r��y�p�$2W@�@ffrI.��UǢ$"sPϣ�s�k>ƨ���\SQ�j�b��љ?�
Y������}��N9���:|0�0]�n�?蒠��.k��'�

6���Df IPFd,��k.�HPD�~Y��~����k�L��Qg�1�Au���}��%�8Tz�M�Uo�$��N�o;d�R�|S��,���U�ʡZuS��p��Oz�]���Gx�mP�;���#�A�E_
"�Vi$>&���/��&B*b�	�p��5r�W��P�(���G�Y4��JL�'�8 ��P�Z1���j\���,���q���$N���u���T�>��e��C�Qх��?Ԏ��@�
�+<^�}�`��4<f�K��W	0C8�?��������\ZB
��}���*��d��&B���J��Is��������>�g/�4�}p�S��	���/d��}����'_[n�_��1�(�D �� ���
�)"X�Lz��;�V�-b���a������*��F#����L�G�������%� �$�	aN��C ��T�V�¦�n@P�V4y�7��"!=U�q8$��v{K��g�"�
��H�N�}�p�|��EB��Dmd�W��y_cIa�<�~-C�tls,$�D2��	��S:S&��lm���Jf�?:p��`L��1�8���f7'u��=�v�J�>p��&����L,qZ_��@�D�F�Ƣ|j�qb#��,�ʳ��}xyT��� �?��r��U�I�y����3����H��&�y(��ӥ��}��y�����1��x~#D�sx�2 _��Fur�l�DM+A�#*26V� l�"��
�d-�ւ�`b;qm3�/fM��0a,��B���1=�@]�j*j�$��-�W���Q�B�������!� ��1�_�w
�%���,dZG���({š�DK*e(�PZ!��aH€2~�M�r���CB*Pa���X��8�h�e�O�z�>�Jᘤ��=��!���[g��Rd�Te�P�?�OsX���[�8�F��[�P9 I��S�v����s(��P@彞Z�b�f���&N5�7��X�q&���[��;�Lj��r�}�
��l�-ʾ����Łj8�P��	y��#�0�s�*�Q-t�n����Y��}�;
à2VDpqȂ�-t�s$�\�����ܯ����&�,V�DF�jb���:��P�
���l�i��N<�M��01�I�˅z`Ƃ�S����@��3=�Jvis�n<�8�O
�%�mt��+y�
ja��2A1���m���R;[W��_��H��j :�B��(�mK�eX��1M=��i�����y�@fi��_(9��vz���<���g$�؂�<��c�C" �>����� #��N�C��@j�Ic�{�C�Q�$�wi��k�FTɺ�}�������*$2�ұd��0����,�o#����D�G��%���Z�5��E$����#G�_ݐіI�:����r�;@��Ck��l�e	v���G�I�ϵ-A�B6sY-FWď)�z�e-���n�梜\�_�8"�j"赖 �$��'A�Dh�C9Q�i�G�ӌO�#P�V��û:��ǭ��$��h��, ��#r:X }O��GA�^���()��@hZ[�2�:���=�~im#4W���K4��¤.���J���Z�@�gYL�
"��w��OG2���Lߤ~��
#��d����P<������@$
-��ŷ�������!��Դ�W��=x4�O�5�Mp	&<���Ј��ئϋ@U�y�<�p���J�IÃ[�ս'\�DSi\��C��2۲D�����byqD}�JBn�P!N��0*�xdY��>ܦ.�ֵ����qXbk&ARP2���� b���0I�ғ�O����=�O�\�'U�	(swG]�5;銽}ĄJ�e��q\T�BJd�Ž0(�
��X)��jf�[)b�o��NG��gtt1=¢�#�὾�H�ܾw���eI$**�"A"j�hçh�Z�0r�j�`�g��u~��Sq��"�ii���h�L,�O�n�]���(SL�+7w8��,w��)ʤtZ��e0�1q��V�l0*(e;|}A_|P|�E�����6�ߦi�6��ߟ��&/�2x�"�
 $zA<.�?�S��Q�Q���ւ#^�� SàLܘ��.ėN+6$8nf{E�db�P����e����'��$�4"�-��[D䬓p���A�	>�{r,Q
#�z5x�����6�|$��DQ/8��On=�­��5��p�����lcq��=�����e�[k�J"HA�8>���@��,�n>?�|� �jY�8_�C�q@qI�����w�����ӈ�UA9��?PNz�	"l�o'uz�
8P#
ɀ����D������9��8���D���Zpl\�W�m��LF��,|Q��3p�8��\����	 A�ox�z*�9� �+�Y�bӉ�9��*�p:�87O�Y�qL�tD*�9����x@�|��@D�%��:Hu���r:���L���x��_h�;��*Y���X8!��}����/\]�:��i6�8^����[�.Pкzm�d&�֘" �$訰�@h��:�!]�$s�٣�	.�B���,�HN��HGC)��$��L{F4�_e��td\�q�F���<�!�u"z�����0�!��x���"���6<��N	�Ds��>1:#�"�����q�]��[��N�s��٥����V�{
��߶۰W,�$EkL�����EA�~~��j�$n|���_Q�b<���b1��șt29�A�V���
G�����9�Y�AF��B&P\�8�C �l@���Nj�b4<��E� "n'$Fl�0����C������H~���%ښ�o������=�s/��W����_0���-6>�'>;8x�H�_���b�c�HdL;��uB�y��2�?����t���N�]��(yq�ˇ�b��L�C1#��b��D����㣣!k���N��Cj�_\�5[�}�M�9��O�����͍��l���uip0����
�������č-.7�$�K�1��Xe��H���`(�H���g���xq����MO.M|,�������g��׾�tp�w�|�^�p8<Q�0�&f���S(V�X,�?6���Xx*��"�ga���-�G�p�Y���^:�N�U�W�FZ�f��Ht$4b=uc���E��j�B��ng$5�7�^�7��
�l5���@kkk�C�.̈́�H����[~����z�05&`���u��躷��(:��e9BJ���,�� �p�Ak,�R���W��/������
��r�]��Ǘ�6>F/5��3RL
�����}�Goy��:�G�m���t`�x����ƒ����Ԭ�r͊�6�b��kU*h��Q���ȸ�`9r"_���Q��dl��)	9a��k��y�:�\����c��q-��ֶ[�-L5��C\xxk��.��gį/.i
Ņ�X���u��:�!]Ղ]M�_�?}��!z�x��5zEq_
�r?��K���:��╧n��nn�!>���E�-�T����Y��r�`���M�.o�(F)�cb�7��,��tx��rFR���z�$�W�~��+�'���|$
M况Xj\MX�Y�#X��yeHVcrBw� [;��Ȃdb�m��=3c;��m�5�
���tX{/;�v������P�L,ɪ����=H��r"!g܉����/� ,]�L�c �ܺ��/Y�� ���B�t�u��_�r��+N��\�n��<�����-'x�8����r��3Z��s��;��� ���O.	�)>��F2�HO���H��>��'��>G��_�&�B��GoB	�FC���ȴ_`��-�ۘ�b9�k��TJRʞWivO��6���9#+��(�$����ܕ‘В�uffL�/��
|��.h��=�Sk�6N��2 ?:*��;L�Vv�j�? �Y���N}��?�ʻ�ꖕ�����6�?"����/���s��ʙ��(��(R*f�u��|T���t�͋E���')^U�|*�j�_��|��F��k\��v�̒��,o7�m%=f��N���z׊�a�P;Ӷ߶g4%�+Z"���5%c"1 ���Z�#@,,�#L^���&Q�����]xA\�u
?u�m'��2��ԲKhC ~�ԏ��Ǜ"f}��w���B����MY:��[���K�B��ֆU�EILN�{jF�ʀ�\>9�XE<�\�_`�NE9B1*�1 P�XEjO�d���W�D'N�1z.�N,a��X���W�l�7 �~��sH�����
䣰8�S��n�5�ɷ|œfV�����(L���Nӭ-M��i��m9ǽ����V�tH|:0��;���0�#H
c;]7�lW*��^`@�
�N��a�|�9�ГX�bx���S8��!����s��ag��"�����7�\ys��HMh&�dq��,zU!u:�z���'����q���G��TJ5��Q����o4���F��x�z�S�98YmNJ��B�H(2�J�Ø�RB��ӝq\r
�J��T"�2ځ|�r��!�
���_���ȟ`y0��c��r?>�����r��X;���t
��H���[���E7����L��z{w���+Z]��.���Ur�:z���;�R)Ei��RA��2dI�,�_hz�M�˅E߀T��j�BѪ׫���y�w�#Կ���G	����4��t�F���57rE��UPH@���H�0�a�K����Fo�I�P�<���j'����_��e�����6�q�6���Ѳ�UcՃ��Lb��w
�?v��q�����*��~c��l�	��`��W�<@ֈFb�K���D&��z��$	H$&�A�$	Ϣ5�<'NOO���ާ$��(V�N4�tD�t��"a��{�L��F�7=�M!�H"Q)k��v��fFn��N����v~��ˑ$#�6$	40Q�# �Ib0�.����A��Z�m'kB��:�O|�&�>d���4M��@�,k��4��$��垼��"L������:6O��r޴�7��h`��]�UZ"=�句Ksþ#��X<��,�z]|��h�d�h&�M(F�?�J������5a������*�Vi�$����z�wĀ@�c7J���I�=Wh�0��6�*�����(B�8���	�X��G�y��өi<�4< YMhZ��	����	�AMp����JFQ@ȴ|z��t
@\D�U�t@~aD�@n��<�
b���mX�)�ы_�_��[$�
@F�a|
<D�ėl�z�WLC,]�H(&�ɠ�J;�R��)&A>43���_��9(�77����Ri�����������«9#�tLJ�"Ղ�B{r�
�g�ʭ`�C N
�!��� A@ ����S1�U���B5wM@��C�E �Q@�%w@��-\�T���h�%��qE�;��eE)�E��$�!��Y�*�*ׄ˼��gxܧ�C��T��$����*�8���qb��2�Sb��8��*S+r]t	{�����I@~��`}�࠵��zPZ/��.5�F�0��}� ��Iè4�w@,i6B��@��JD�C���d�A�&ʹ���I$A�Iʀ��}��Z<Ԅ���!�:<�,\v�@�}�{���tC 7���~��֮T��?�/�/��<���!HkR��!�磑�������=�)
c�z*������y�e{m�+V;Ըܥ�����0(���Q�E�R«;�$�������U^:i�QFr�e�X���s
M��x��)S)*�U��J��V� ��Z�t���Q0t�b�b/ƒ`���U�5���(�BQ��ۋ�M��ݞy[���s����j�x�W&�:���!�&
yj!@%f�B�X:�o�Cv{�w�� ��@"��/��=;��Py]03N��g�Iy[,�QH��a��?���.�oe�߀�<~�v	J�c֣�ҙ����+/�s�s��	��ml��pxG(��#���fU�Lz�^<��B��A���prR-��
�1S���+�4Z�_�A�o�e{:�?�x�xF�CjqRUq��w�Y���d���Y��+�~����o|�����=��
D�$V��#�C�HD���Bi�ǬZD3����0��.K-E=$�~���w!����8�PE�@bv��dž���C����-����k~}����m��[���sN���;�?����������r��@\q��69	�5|�P"^l>��:M]�ڨ�phnV��	3�*ǫGG��y�V�:d���O��������^�<��CBQ��x�ES��YMy
7
�y3��+JϬ��Uq)�\�&�W1�Q��N
c*�|�x=ω��P.��!C�"��!~�=��8Ov�@"��>�I�j�}+��[����Nռ�^z�������>Z�BaG���!B��n�_ϰHn7o��EU�	ז��};�-6�l��j'W^9��~��7�Z%�����*�����|sܠ�R?�*I���[��	��j�����7���K�a
2�$��ַ�d3�G:ă ���F�LB�×o�h|cv�-,$�jU��� �}�-L$
�ɡѬ��"�)������E|�ۺ@�.Ÿ���
ĥN����%�>��Oe�o�w�p<�ڲ�di}3!79$;�Wf����n�ӡ!7��ܸ��#��(�NNZ�-��F�LC�Nk���ڵV����>:��V�0��C�]6i���"���w3ŭ>�g�Lż���|����BV�t�[��}��x�o��8��I]D$p�lw��#���ʠA���r
9��U'�F�K,�GQ7��*C�#��@}���O&m �������z@~��w��+��Y^�#��;�#d5m ۛ˙l�}��+���H�k[4E��9�#��gxB09A.<i)�Є���+�_]o�lC*��UU=w�����c'�=x2I%�Pi�ho���q'k�A&�∵I%"y��4d���L��M0��j&\tϟɑII��	+䂤��,�h�<A�M;��[��M�c^V�&���S�A��O���va�,ߩd���!O�
�c�r�[o�r��
���V��|�
g�W[��cL:�~;҉���Q6�ݫ�ʛ�ꆼ�A�z��o�U��81G��;����k�-3�"ګϽy��Ma��ڐ�	@��=:I�Cط�z
�5��:�����+�ߨʲ�$���j��$[H�F>�H.`�v��*S#�3�CA��J�R���d�
Y�Y�%1:��X(CLQ3��@B)����[o�@��d.���K�}�����OG��Y�#V�yt�ڨv~<���Τng����e��>G�
8Y(��s���1G[U��ְfMp���n"re�R?8RT�<���s����j�J�<wT�C<7Nr"�x���?�Jx������+`}��-;d�qT�,q	d�"6�.��ɺ�id�Oĉ����%�t������Pc����ӻ�<>��^)u�L�P���wv2�
 ~ݞ���
f�[l ��"�z=��)�wY\ʊ����o���E&O|�F����y�R��pϥ������3�)y}>޴{�tG�h(T���T�"�*	@N�n73խ�)z(d��<��ty����%4NrH!��\N#�@T&r&�P�	����7�)�L��@(�`r%8��x�N�\�U3|
U߂c�_{@R�O~���e�ӝ�O+��:\�02$|����VÏ�
����Y�Y�K[���u�t�3��8���\a��iĺ6��y�V5~�Mh{{ �B!�E���_=N���"(��!����>�J@�Em��V)��pW��N~k;�c��V����8�H�C��Q ^b֕	5�MR���p��N��W��]R2�e_B���D�+��D�HiX@��_(D
R�Id!��d1$|�P�����B�ğK�"��P�g��&�T�P]q�n?��C!|d���C��r>�[V'�e��]��N�.>��g[[�~?��9�&�ノ�R�
�츀��n�6����@�A���_�n!Q��C���<��7�LhM�����4- {����NJ@�R%�'aA�w���rur���}�Ĩ���@���VL���SmK$�"J/@��9�X����0���e^�.8��ƛ���"�B��>ry:ó�JfG�o)�gt��:P=��24��o�`�z�SYY����|��c���ǯlvҾ��.e.�W��tpj�	��O��Tax%5��Y�R9i�5�����D�Q�a1��o��v;�;�$�2�\{�)T��qz��'�U�e��q� T�f���?��1�$��Q�i7��(��Nx�ƞ|f홵�Qr�ǂ�J%I�c�$@H��o!ROW��t��<���+�I$�u���q�_��2��X�/<����*�۽[�$`c���Ä�T�kmr���W���×2�ʗ������H�f%.��̲CF'F�f�U�u(�������p�O��[�G�S���!G���<���s�Z�Q�j��[__���Q�0�l5�n�~C@�C(�ұB�rZey����S Q�5�{mmp�m�_��|�@��o홱�g����\!��)< �58s�ij>�zfj�IK�BT�:��R,l�It�[���̜�ۍ!��%E`�#u$��߀�qht�o�_��f �Op<��F��B���/.g�3�?l�4F�`�*��jZ��d�%;i��'o��wW۵�F|>���|#�����[oR�UOj*��c�-�$���C,.g[�����)��6�PԜKzW��;�AZ��5�Վ�	ό=C��5�/�n�$čٶ,�5�A�;:��Pzz�)#��FX7�NY��d�%�х�Xr#��v�l ŕ�������}�ޞ��)p�����_��J����|煗�q/-��|g8p���7���e##(ͷG)"����r��EbA�5�����Z�\�A�訆�$�3�6^r�7IO(|3���læƣfSB���(��r�CNZm�J�w��!˯n��0��E�n'�0��X�D��������V\p�A8���A�򽐋�I�X�Ib֘�	٬�+B���[�Š���5��16Fr��vKH�����62�H V9M�7�L��MAŬ��u6����^�&Ǩz>��¬Bf�`k���~�H,���_sPV�D.�7���B�<1J)��c?��(��!U��Z�|�ߢea�r�h�&�l�p��S���:��G@W�X�.�$V��V�3,�C*�����k\�����u�����Z5��z��H�餕')&�I�+@/8�H9YД��3Y�f0�<�����;�������p��66�7:��H�K�p
�RAu�'SU���X�g�_y�k�;�ف�z�3�x�3�}�o�O���8dQ��ИC�*J������jc�|����
��Y�A�U��N'_m5�&)E9�1�ӹ����`���!^��F�M�;i��7ްC�B@������Evy��_w��0T.�OH��QSR(}k���:��…�7�����*�T�$��Խ��\Ls�L#�/�S����i�ž����߀�#r����v�P�Eh�S?�=b��;����*	&��l��h�&[bC���p4L��sxn���'f�+Ƃ�Riժ�+�$uh�j�h���F��ֶ���
^x�:���@�GZ��~�
[�.��jQ����������E� ▋��D�>*,M
Wf�n�5R�h��'�� �;}��)��R%mv;hL�H���.m�C,ᵈ2��Ϳԓq}��㇕��]e�N��~"��X��o����o�C�c�t���N.��1����2O�W��=Mg4�/��iRmh^5��8@���t�ϻ�F\�<��jyR�m5�L/��^�S�@p��.9��I��g�lCN�'�������	�<�311�f՛�L".)�;�$B`Z �&s(�@,V����ZP�P�07�b7#Cا�:?t�+#2�[�jf�Q]��+�J�7�F6�������!SSϼ}�%��S�7�<$E�<:j��{�3iXVJN��ſyA�2;�~ד�<��iIJ����6
V��G�}Q�F)-=��ȕ�?��H��"BB��E�&@��AB9�-�o�(�$��D� �����E�r��p���Yd��7���=�8&&p	�+�8W/,FYQK+^���4��%Pq��ܒ*i�%�F���]ɜW/�dN:�©9�$�:>)�i����xf��soT�d~��؜v���O/�g��q��g�ן���2��]��R��������}NAԡ�Ҙ������J@f�w#gWUeUI(5F�9�ϴ�*A�:��veq�D@�e�;�׷4��vSl�:���!;�n��mʫƎ�D�1Kډ�d�2���5�2a;��'��̨>��Ŵ↪f�-��{k���,
]K�IZ�t�o�=�����oJ�4�#��/���H�>�������/{+�/o�9��%IG4�u��i?� 6����x��TS�S��M���kj�I;�;��N�lA<*k߯��"����1D'6�C�50����ލ�=�b!d�{�_�X�E�gK������u��'- ��;T���i�7��I���%V�4-0�ܳ�>��v@��]�-?��2Dp���yA�~|�vc�B]�D��;ߎ0��K�%;�?5�j�dvI��
��e��u�AU&5�+����˿��?�>��$�Z@|�k�Ê����"�m��bR9Q�XY�;hR����!�"r�l���y�
YE��$�k %ey�jY
Y��a�T�C<=�X�0�4�\�7��x<Ý��`J���5R��2��N�[�W�t^���[�?�lG��$�J}gggaO�\�2���#��:�\��`4BS��+�������2��%�B���ɹu��T,�b3�#v��kܒJ7���g疂�ǯ�����+F��:���x�*��!<�g&ͽn���R�Ɔ,֦�H�K%�F�C.a��4�+���+Xŭ�j~��T��8�_Θm���'���qR�(�p/�1Q$���Ӑ%25D,y�#���3�G���k���.e
�NA�Mtk�:y�0z�H
�ws9�C��0�W�	7Ơ�@�.�6B�|�����S��+"��1���8)�- ��,�~�ޗ�x��x�P�8�%tr�ٕ�f��)Db�CɅ@�R�]��H=���j��i�8A�����a����֤v��JpP�/BF�̜n����[�C8<�!T_q<�6�N���8�ڢ�4b�R���y�g�M�a*]p&e/H��(��M/b>�K*g����4�\$)1��V2j���3i`B:9w���~�����66VV6��ٕ�4@�Ń�zo{9��]�?3��KO>��f'D������\%���Y�jft��Gn����	�F}j�`���B��qY��V,��7V� �Ȑ��3D!~���g̐e�X@:��(M�	�0���!x�x�z@р6�]�OC�',�O������5�pXDd�n�`X@XW	!
Yr����I��C/D�/8�~�aE���q��0p���藛�
D��a�/�|g��������.j`���K��<qǃ~&���|0�*��[�4݋s�]H�;����VD��>G�O�CB���]�>�Vk�N������fi��'ȵ�m\I]�լy�0R�����g�BF�<���C�B]���4�|�6�:>�o�H�zi���/��d.�[Ty�dֽǾ���~�9�d�^׶���O?��i����?�86Z	��zD`r�0�o����?��i���xi��%��CY>���I�d�vy6�<�Ń��f���!B���{@��-����}��+������'2�����r�(�xJ-�
�@p�.�+:���׃[�Q�-�p�
0�P�k���eް�zN ��m�z-7;������:�:��c�ef�q���o^e�z.W�ݧ�U��5�ҝ���i\v!X��@b{	)���b��O>����O�K��3�r�f�]	�ޗ�|���R��f�y6�p��r�ir�ݣa�B�Bk�Q�D
Oy�9��}�y^�����@����D(�=���f����$�,j�Vŕ�x��~ʉD��m܃x��+�6�5���!�녫n����4c5�<ba��tk'W�x���t�͇�)�빱B}LA���`����lh�AcXK�.^�2I�%�|�K.����"�z 7f,�{��zV�9�u�=1/A� zt ~ ˛[�Oz�=��U=�=�hԋ�>Pn����v�/{|t|�+wm5t��EC�m5��$Xi�U�!���9:�!r!ϋNJ�~�l w�Z+i�f��V:] IS����zb?�}��ˮ����(�JEo��7D�!���Z`���\]~�hN�b��Pp�g� 5�~w95������+��s��D4� �x��K�2ŕ�H.855�}��e;�������EWI�*.���\:�v�	Y/�!s��r��yuH,�e��o���c���{0״�v�Р4�b�Y@�yI���u��?��S�e(,���s�(JԚ\���! 
�,���,����Kt����q ��$��#�������\�\5$��K����Fy��R+����%��ҹ�g�9W�2��7f2�)�,����)p��)!����΅]u��]7Q��w�����c$�ŭ��[��h���"IE*��i��@�nn̒C���Dysq��@q�D`�C�8!���(�t�UP�H��QR��Ɍ[t��9��8���fn�u5�;�G���Ԇ��r�b��@�ܫ�k}�'3�_7f� X�pF���A�t��2��֫g�5�5,�{��i�dd �G6"��C�l���"q�A�~1G�����[�؝��d��K�}����ԋ+w�7_:@r]�ǭ��y�=?=���2��Y!�T_ziy��% CĬX!6v{�T��UM���WB!8t�mF0dZ�j1;�JPY�hV�u���f�;+����A_�����>���ʳ4P�D���.�:4�q�L(&x �[�����������F͉,��g�
g�šص&yC'O	�gG�$��qY���@U[�A�ƍ�!�UlQyR%=�N�2�"vb�-F�:8)_2��h[z���#c�V��ml��R�J�̱;�2�u�)[��Λ�hk9B�5�qx��(�9=��|i{��Ngas����=X�޾�a $D�6��g#�΀D�U�PDPW����.Ӕ#��i0�� �4�Z���d�.,8��zaI��SY���z�=�.�������
�hPU��?�@�9f��ڻtr��x��J涺ÿ7�����HF \'y�+!�)��1Ҥz�n�
��+={�
7�F�}�������.��FU"`�cbJ����~
�5�2+�s��gCn��mVYP#d���GT@|��9"Li��ou6��D`M5���&V=z�#��؏L��I��>�(8q�����P�S��jD�A�D��Xa��8���ÿa'U,Tu���0M��
����9�N�< [�8,�Wf�v?iQ��.��t��J=a�h�b
��8�i��Ǜ���}��K���ј�=���V�7�哚9�_k㥍��9yniŏ�����'�BC�)���>��r���@?k�9=�	�ɝ_��o����,�E�摅���f�h��,����:���[3�Li
D���	�9&w���s���L���jG������U�-��W�n<�̭�5��=3\)�p^ax��3{�{M%d�T�Qn�n#h�D[_���Ь��FI�i��&&8e�i$2�7D����“�M��9u_��d
�iwjQvqn	qk:hA����/=
���<��d����b��dl$0�6�k%D!b}�T��k�{>	���L �ɨ�I�~"]���EJ��O+�����1}�Be�Ȓi��4gN�.�j<��
Sv����SD����ߌ���=}�enoH��r���io�#�rB����I�-�v*�B}��R���^�c����sn9�L<� �0rӑH!���u���( s�YJ~�P>,e�J�_����鍒�;f�Õs^?�S�g֥<^��������9���������4	Y��|&������]�g>�AEb#I�OM�a2����WH"���t���ɼ�n�c2��(s.<嬈���!��-\��[r�M��ɣ������L	fڥwi��r�ᔁ��{�B��Z��
��r�+;r�B@@�C;����K����[�p���Y�<���כ"�+��X�A�8���-A&N�a�0,X#�.�Hc�]���$
'���������g=<" �z2V�2�F����	W�}BL�L" :� ���p���0��,�c�^*��|�"y%!�D�%l~e��#c�L
�W�x�/��>���J&�pR3cB~�,�5�0�t�40K3�����Ґ6�0Ŵټ�rI�
5h�Mx��ű�̐zG�M�H�#�;��m,KF��,Y�d����r{x?
��޿��×��F��-tdκZ
no>{[	���z��k��@�:��P���v��br"f	.�d��� |�1����H=IO$�w"����q��I��5]�H<`eZ�		�i
���[�CC�6r���aO<,B������+u҉H�'�疶����"�� ��L�%O��V��!�Jp�Zިsax�ȷAV>7*k�E�_>�)^�C�ֹ����e5��ǒu��iX4o\�pwb�&	d����\xl8y
���S^L
3��6 {ÁU:\� �,��U/�i��q�|<�~.����cU|�&>��%x�W�OD>	?�d$1��I���㜋��9t���T8��d��*�~�ҙp��O�Q��b�Au��[Pa4::N ������CI�77�a��L
�
D���'c�!C�U���*b�F��� A[�8�:��S��L-��뾚��Wc�R'�/��'�e��� �pJ+Pfѻ��\�5}�5{�8��+}��5@�����,G[���l�N��u�-���#�.����ķ�E�<@N�TG�
	�$_�{��>ž�i�(�P�DB�ԣ[K�B�q�{�k��va(M/f�͛7+��E��p6Lq�A�RƆ@2	1�xN)܂�m�����:�;�|
m{<��`N�����YDTO�\y{s�Q�d��q{�e"���}�����k��( $��6P޻� 
O�n_V����T���ı;Wp>7����E��l�
u�������%���t�q}��S�֢tT�����e�p�eʧ���X�L��Z�IB%�P4�D0��q�D�?�r���v��1_;���ڧU@�kq
M"�(WWV�M��Jt{�?���H
���J�Ԡ�!_{28ȿ
N0AF��r|���M�&�d'��Y��J�VI��+��.��+��� z�_�i�X�Q?�!ԀԃA>4���>��4!%c��`��j����6�C袛������E�Z>n� ������Pi�z�b7&1�S���y{H�z�q��7�o9���Z�ml���lճ�F�,��X<O��r�a�Q2�fUx��G��5jWf�9�-��3mt�\�g0�XY]d��]�	��䮆C��?q�y�"U|%�N�ô���}i��zWq>�i|���6�凌��|�P
���u%�ć��f8��>�_�2i�NՕC�<���`%t�\�c����R��$��U�P�U8s6ݖ
&
�FZ��"�`	Y3���L�������v��N|A9u~�x���nO�_Q�a�T��r�mR��[&����R7������c��.�zg�n��>���c�}��_Ҹ�;�P� ��/���D�G����S1Dj�?'��*�(V�W#�#q�s9�����x�.�D(�s[s�]S;��6
�Ȇ��H"x��˫�
��\��&v;�C���Ǐ�,�-���t��5��=ǂ��cJ���&^zM�ER�FH���W��Ԧ*���WՊ��_��!�������0�b�<M���}P�_�D �7?&B �n�n�t��
�ٰ��>�@G��ں{��}l�2}F|���FLq|���T=(�C���!j����������?��	�^l����8�qc�(�*�
+#+	�*����
�քr��
\XR>�����`�oX��z���N��~%��PGT׵?cr�v�P��1BwL(���C*��-E�}�~V\b\�M��1�
�!�m@$�4�Q���c�BƏ�̖V�x�V^Q�K#!��z����|���)S�"Β[&�Gc�m��E:!��Ň�L�v�>Κ�����72>��̮�ݻ��rӡI�~�@	hH��ħA�'B�#�_1^+;�?
!�dAf��X��{�-x����Pֵ̺A���R[ֈ�F�(��!D������h<���HgƦ���M8Ra��-������c21�:wyͷ[�_�R'^�L�
�����7B:W�@M)�	8N.xyA6�F
g-�!�������w_�I��W^�cڎd�Ƅ����J	�dRN�)ݻ�h�V�5vk��v�s��l�����L�݂�!�J�6�
����Y�'�w�������s�,���P �E�����vG�HBdF������ +�2&FeA_z,��������(#��p�N1�@��|�NhjFA5[E{�����Ϩ@��w�a86�cM�	��5	i7f��Sj6��4\�V�܎;�� �=~!ܦ��Wd�l��SO���?����ٝ�k�#�S��y�m��RV\r�.+�!JKG2��z�w��e÷�a���y"4�n!�qaD,t<_#�)�*a��U�Z��'ϗA�YM;X�F�r�\�|�k8;#<p.*ٹN��ËٕKX����䠍Ca�?�ݺ�[�8�}�%�A��i8�Ĭkk1�^σw�G���c؉�Vr��b&����5ă��Qa��<�Da��W��T�����u�f1�GF�Qe�	����Q��_�ߞ�&�ƛ6��/�;��E�B��:�q4„�CD��q�;���{KˎR�i<���݄�x�f�A�N�
����-n�%du�C�J��t���'|�?����۠C{m[=����\-\?w����u���,�?V� ��7��&�M��)��Nj�¨�z��>�˴���ђE�SŪ�;'�ܛ�ZhC`�5���D�8�f����u�t�KjԒ�KK��W~.��F$��7�����3���Ԣc��ԁ��hg61q��1����6��|��3�*��P�4��-�^J��x���q�������l�3+?�h�dc��}G�B��a�'Q�h��Tʕ��,+z��?��i�I4�����L���eN����W����ji���� +uI)<f�Ԕ���qk ::j��:i�3�`P@���%�G���B���	R~'���R�ֶv�+�<S<��V3ݣ�$r˩r���r^H�B
��y
�]]E�����0T��^���g��B�(��751��v��"�^�
_�d�;�̴��U��_��_:�ms��P��F�p�?�rz�oh�*s�N �Ȩv9��,!H�F��m_i�&�c=��^Js�F\�{�JbL�U�#q�V'��8>>�e�		��K|X��%�!��8D� !&�]ҹ��a�P�ௗ*��>�R��νM$�~����<����b��U} ��Qt�(4���̽uGy��A
y@�����ZԲ6N摑��<Vt�i�܊gn��f��B_w�:���j�{7�=�Wf����C��T��"�:l�0V|Y\�}b	z�%�?W(>�$�hb���U� g��� \28U��sU4W�_��@��Ư^���U�ҭ*�wI���h�p��Uʳ��7�`��-�s��x��/8��Ľ'M=K�;}~�R�x�FM*kqB�K
;nh%�P\X`�~{���zI�P�����W�V�i���
�a($J\�S��(
�(�-��6�4K���{7o>tR5��n6�)%6����nC��Yl��A("":x�ǟ��b��2)���l��Ag2�q.s�E�L��34��?p��[lٱ�A�͎��~��η��������^��2
8K�9�R
��E��1��qW�О�Z�R��,麡��)�mm���17]���
!|��z[Y�ך�B@�E����h�G'���P�p�+��m��3���E����{ȷL����C��X�?�^6F:�C�TǸ�A6�p����Q��?�x�'�%B�̶kQ�hh��[x�1ѱ�.��S�
^aK�,<�O��N6�j˜��bR5q������~=SIN�j�&�a�Œ��T�k�I���4O

�T�b�@�:�,��-9T֩Z��_cρ�D
���{�@�qR�y��E��I��cux��ĥ��o~����d�=g�l����eA�
Xg��#a��K�Wl'��:Qe����)�Ն�򷴵��d�H4z������R�b�!�����[�C80~`�q�
�����^mٿ|��e5�3s�hfD��o�th��ѽ+���8b[�b�Х@�g�>�s5�^4�o�a�O�
��z�:�xF��>/��I=Uwn������0_.@�
Ur3I�r]�V#飕�:��(�;���p�������C����7�T��,?�b`�8&D���ɥ���������������.���b���#I&U�O�#�	ۆ�A?�|w��L�� E�s%m�M�ղQU[�-\�,oo�"�42��KG���[I�TF�+c=��w��N��(�c'������WLB�V_����O#	x:;�L�\��#��^�}$!��ߪ���ۀ�N�_�KA�v�'E
7���<E͵K���g}���5D����ZJHt1��R����o�YU�5�6�R�m6�T�]���j����R��Gu/����	9BV!��D�#�af߬p鰄t���"$�P�:�0T�jz���������9�~�3�7j���*�|��\��D�wu�;���dl�
�����Ͷ���C�!%��4�]���/���(���i�z#�N/5�oT����G��v��j����~�N�<!��rQ���!��&�_��W��ݓ�/�5�㪃
2a�7ku����:z9�b�鿠����f5	MZ����a
+�x�f�aC�����q�ꉴ�ρ1�~��'���?�����2�����
�	��`�'YD]��B�ˡ��o��CJA�Bt�
��Tbf�@\c��=y�~?�:қ}]j�=D��-�N��Ł�:��.�B�%Y�9n����V�R�'}͸�*�LW�KI�)2��^����>f�@ȳӳ�Z�-�}�
�_jRĶkS�l���
i�����k^[�����i
�g���\���'����Q޹��ٳ���E�o�[?#��7��ŋ��D�-LO{8A�O��H��㳼|�իW�IC���Ǥ����	�-����o21D��WDŽ˩�9���J�Ha������,%�!}#l6|y�i���e��0[vB�'C#c?z�����,Pr��A�5��V�3"pa�ag����
C"� ��E���X���ٵ��:���y:oa��{u5H��RAe�L�g��'��a�PI*ZG8'.�L��Q�/�7�qncdZH;�d�&�Q�at,_��\~�a���s�)~�T�Ծ�_!Ǘ_��<q�U�5B�T9��		ɶL[���HX9^r�Mx�~MKH~�u��1.�J��!�
�Ó�ƪ�k������.���|o"�S�.�?�����F�|�!�B��./.*�g��J�>�.UI�L�V�3ӷv����u�ކJ%Q`Qf�(��̑)Ksb�r���dJB���HB�?�$ U/C�­,*�S���V5�\�EuUz��K)�ѿzB�d�ټ��ٟI��I���IK��H!6�3�tD�
���^!�#t���?A�Z��IU�HA���{#B�6Bd;tET`DA?��E����#8En'�dbnBjj&�ו|��oޝ�}�ꯚ��]��F�lY�T�l���
@�Dl�O�f
�J�l���Ѕ�C*Z�Ƣ(�*�?7U�Mr����<]NX���u�4u�'���\�Rli.V��(�f���l6�51d�5�4�`��o��~��ET��)!�D'�?�x<��X���b�����2�����d�=U���]��ǡ�����Q1%��D�����|X��=��2P�dU��L��=x����S�sd\��Lb�=�O���?���}Q`�:�z�(0z�Ś�}l��V�a����t$!J�`���Y#쉩H�����MM:ɽ�4��ҽ�t�I���9u\��{�(!=7Z=J��,��}��!O?Q���i`�H�*|��]>�@��C�
ڋ��X$8!r�$!�Ď��l���T<�V”4+�hvאĢ.��,��a��xC8�Y��P��o��,�����*n*i�� �G>�(���Ѯ��fG)$�ָp7hw��.��a�$�۬;+I�����b��#sW��7��~�٧�>���@�n��$��b��b�61��JrChM(ݚ{y萒�V�-]4'�	Xi��̂!lZo�;�BP[	�:i��l��~@�P(��]Ă ��x�e�FE��Ϟ4�<wEG"�!�,�➔'�%$Q��*Ҡ�-n|�۷�6�Cs@�M��1�U�ұ�8=r�>Tp{<c�BPя��~��\bM�-M���������;���j���"��_p_E��Z҈�L��
J�Qy@l���g|�?�s�CfՉ��]�y:7P_*��=�����}.�M�OS���B��e��i����4�E6B�Hc]�:��&��Ӿe�$��Y�觳��-��_!�֢���N�#z21�Iӂ�����'�O�\�$ռK	|�(eT�"
`�[��
6Fݦ,�LҌ����Eb��Xn2�95Ɖ�����L�CL�eβ��e��ٵx�F�L�/�-�y����ɠ��P]_JE����%���|{�io7feI0����)~'wͼ���Η��.��}�]��	��Oޗ�?3�CU�]&�**A�	��LS�{��ibC��[�:��*P�&Ϭ����*�cZ���؋\��ϙc{�H"bϛ��4�J|�!�
����]�
A$�lΕ
��D���0�6���a	Ad�j�ki���Th��,��}� e�_�����]сk��w����S����^z5w޼�3�M�P���2v^?Xc䳂��}�t�1"��T����?|��z]I'�Ў	�);�n�l���/�/:#�=g�Qkb�q��4Q�ͩ`a��Mo.C��)���Z�+����M�$�i��"�M<��bsСc~�}�cC��VX3�ha��`��_�V�~,��������h�����2���ǁ<!�<l ?L���S���!e#�z��e�@/���cw'.��K%�G_8��Z ̫;�R-��$d+�o�U^��=���GA@��TM�J��{��s��a�n���~����@o��w�6�<��3I�R�Ҷm@<�8[D,�t`�./�oy��US�I7�Q#%�M���H��9�v�
RL���Ĝ��!yX�ЀxH[��*�p���,CŽ0�|D��0��[:�_,/߿��e�|�z)��,�+kE dU{H�����Џ`��̏ݻcp���rnb�&�T�L�[��k�-�p��X댟V�S�2`	Y�f�+Hj���p���s�����:U�.�k�F�qGr>�x&]uf�����K{��Ҭ�-�ffa�vWU͞>
!�v#�с�%>��!D�0��(�!w��b�� ��`��%I$�M4�4�%�.:�"��!����2,>�;peǑ�q����y��A�e�{���)�_��7D���
W��5 �ٺ�5M�\�8��sR�R�MR����!_xY�L�ڥ�4��<xݧ4��S�ڇ�f��<g�ֻ���캚=�3�l���i��_|H�۟xg� 7o&P�"��O?m�Lw�x(">l;z�X���G4���f�3�k�����=��&�H�>k�T"F4%����!�~:1�&�����l,lx�!<$;	*ʭ�U��%d��[.,��W���֩jh����HDNܼ�sUBP66v��;���t�J�D3�9%�D�J4&��̀���H"���L�JM��P���\�m���*�
��u! �Z!k鞟�8ۍ�st�����~��6���4�|�>F��a$@]R
\������R6X	��x�\N��v\�:F���9|��|S��Ct`ˑ�L<A`�`�0-��Hk��3*Ɉ%\�9쿳ʥ����4�88����
E��0����xE��M�;v��~�;H�GwN�z��rB�z�]!���V�
!�]qb%D�Hq��9�.kkbOϞn�Q�S��rD�g�#E]�J<�г�Φu�(]7
�ad'��M���훮j<Y���{����_�a�����0E<�Rv8���"�鐇p$tJe���"
���
��5W���Ѷ�
Nă`�#,�PX//��8
B(VGڿ�$
��l;���w�X!ر�dd�ς��*���7��=��u�ҥd�]5'n
tE�d�÷o�A��I�\�Z@�W6m�Hl�lb=��*�g8����P֬/���T'��8- Fd3�2a�tT�t��s������}� �߿�զ&���
j,��98H�*̟wE�nB�<�g��t�'F8����h�=&�b-=4���%uhm��Q��W`�v{����/B�>ȸ�
e�T���ɼ�"�M�����g�6|@�!t�޻r�9&B�(EF'��K]�D�����[��1GN
d̴�B�T��}��j�g?B�^����;�^���ʁnaa���c��:��5�5�!Mt-�ztw��CK�m?�K������d�����i��/�@1xNխ���"�b8��X^\I��dHD�jZ'F�s���H��*�o�@^զ�0�J|6xp��Z|n�7Pd��W�!�O��3�\ކ�$�!2efg�(XcĚw1Bc$#��=DD���rE��;wn^����
���!�_95�߲�5��]8B?�u:���>Xgj:�o�����ჿp)�p����q��~	I��w��0
���}\�;�_VUkQ@�ɯ~�{:�^�͎�V��
a��<虚�~=���Ͷw��p���WRo]%��+��Ya:�#d�)B.���Ǎ
O&�f$�q�8t��i?�C' >!d���b��&aD��i5*����k�5ƅ��=��""'��+G轉��4]Wi�1�Јr͜%rk���3��8�_~K~�j۩;���PS���w|��v���~�\�CU9���.Vȳmz����R��?���l�������2[�<?��Ly��K~���Oo؀���Z[㵑��\ܿ�ϛN�4R >,!�2�ؽ���;tH_Q�,�T����*�7�T#�PU+�K�ʆ "��:~2
�Ȥ�R���]�l�B[۴?W4.[�4�Ë�����,fݝ��!?!�=��5?�Ƭ�����ѐC �;ߴM��m
۹#X�d�=W.�6g�+E<9�/�T�W��{��	�՝�*Q��)������&�#�
�#��3]��$}G����Av�2y2�S��v��,�BS�C��\���UY0�� �]��p��	�'�+�0)��"��Qm��*���)�]Wm\Z
>lU�7�)K���T��_�?�O
|�9���:a'?�A�j�x��3j$��H��ht�a��F�+N�:���!�f�$��
wv�p%��jѰ�_Es�{#҈d��N��U�(~Qk Rl��a3NYJ]�g1�`?PI��l��]�s��|D�v�\.�����L�T?�p��l���U�.��2�8�#Y
�p0����\��r�|�$�Yt֣G��m�ֆ�;ʚÈ�LĈ1 ��-��eB��d��9w��LXB��BNuB�.O�+�S@Q\4}|�p��9������iP��P �XgZ�@�=�6ư��Ȩ�2'�;uV����
�q�g*d�P����y�[�>�Ρ=ڄJBAZ(ZdZ`�cK轜R\��IF��pQ`�η��^�}�������sY�<�I���h*�G���vԜ�f<�$��Hy����W�|����Î�e�u�ڵ|�	us�'E�ͧ��5=u@<Bt����SSs����HmB��x Dؚ�'~�κr�452���谑�Y�Y2'����j(삮��Dl"B0f������g\�Zt����X��!O�q�R�p���΄�~�r6x�)�y��T:��o���e����h�� g�t��C���g��&��v�.�xXB��妃]���/>��l��\I� �C_�	@BI��D�+t���I�W���lq��V�W/^<z��Y
`��}�����!��W!��e��b& �۴�#L<eFƆdD�8��2YwW˩f�������+}�,@�N����Y�7�D�JAaѱ��qi�
a��o@���)��� ������
�r��I��Պ5�%�4"=�#�cĮ߸wo�vbd�~��sU�1Tfg8�$䢖&_n�����U������E�0M�j�X8�07���!�V؋�pи�~�]�d�a_8�ǡC]"QD��_��W�
���i� �+VB�m:�� �u��W����QˏS�I�:��X���#���� �R5�:r�^��fT��r���e`��Pkz����@H�:+�X��I$׵U��y�ĕϦZ������V�gQ�؅��A����Gp���߸�>�d}���p��#�}
��3g������r����d��I|o5��z��1��=���d�+[׊���K�Jv����W�D�!SV��^~$>$�(uG,/C�\]�ۍ�2�P���(O'��MU��g%��ߥs,�D&'#|'�Ǭ:
&��2s����+	ac3a���	y0s��!���}(.L���k��2*�!k��Ă�?|�� �>7u�v:R�ƄԱ�-@b�M��x�4�2"=2q���o��HTt��N40=;��w�җ�Ծ4�2G1B��~�T�j�t�x�ݛ��v���$m�<d��@;���kQM<��$BV��ᯟ���� ��	�|9�+�*���1f�D��Qx�,�+Le���_vH��'���{.�f�Pr�njn������u0�{��2��=�$BNp�4dhW�S���#|2�1��� ��fx�?~�ne���鏏�B�t��u��<�7�!-�4���r�����}t���מ=5��G��ٟ~�g?�ٗ^�k����Ҳ�2����f"�8$��"J��;���A��T2��N��#$}%Z�S����������O��Od��W��O^,�&Ç%D�'����@ί>��ab���Wt�$��1��T�qE׭�$c�Ksy@D�J̕��9Yn�����P𘞔��f�'��̈�d{�xhR�����ә�s������c����&�|��5��m;����sp�L������@�饉���}�?��<GM�"RVXl�↓*�;E��0�u�״�G�$Y4��O�m����Y��!��5G�_��� Y�/�!Sb�1��'��!�85����ЋS<��������e;N���FR~�"�tb$	!�Aҽ��ݕ�'d
��û`�,o!���l��P�n��!ga�:����35�4x�	�7j�I��@���1�F;f	�G�o}���J�C�������鬤��V�
e��{���f����	-�ɒRe�ɤ)FPZʲ�U(7�U�VC�ߗ�م�B��W��G�_�{
h+#��W*D-ߗU�����ҁp�E�as�6V����I�~�Z�Pi
F�|��9�a�yNZ{+EH�%��Ccd�l2Ko}33}�Q�ʦ�nן0�xyA�� �6
|p�?	y���|L2l�0�)Tr*���V�n����m7!�7�.CH������3�I�z�8�б����>xz�{��(�`6m��{�	�4��I�Ɍ���?��9�N
}�
K�y�T�F�w�1���EFx�?2X�%�%��,!\��C��,e�[�Xm�����Em�@x���1��̼�™�7'D�MB�W.�-sd�:���V�^��	�mA>�<�bΛo�	Ԝ��i�.Z���Tx9��^��@ȱ1̠v'�է����b4��ʒK_m(=��s�3�/�k
 ��(�կ�zB�J��
��'e"�7��ƃ�O�  		q�\�,��l�ɑ���r�j1�Ą��䃑qBuT&.T���XX�1���!�A񣲖bT��ѱ�<'ssS]I�AI�����'sc���~,H`�+R]�,��K�t����$D<�>��|l�Y��
0�W
�v�&`�m�<���	C��cب�r6���a�����*�(-�z�ފn6uSk�)Q�w͈�-#.W��H`���T���K��7�
��WG��e	�
���[����$@�"B9�䙉�_,o��:|����!]���`��8i�,����e�8�F�\����~�.OT�n�f�
NO�c"�����Ȝ\�4�ǵ@�q�5B����V��J�2��e?
��c2��y0�(�n�ֈn�d.S��n��0@b)HL$�<ݳu7JJ�|����P�̯����j[8n1�^8&ceSi��hT�D���)��.Qp>�#y�+�G�O
8p[����x-\�/B��j��C_=������a�d��pecx�[��
���CKĈQX��ϣ���AQ�cj���s�y�c)�	P]{�l<1ʕ<!��)+�MS�0b����ު��ŀX��r�"m�4�eD���5��a���t�K���`���Oǰ���6l8ߓۺu�n����}���y�C=�.��E*���W�Zek��;��W�x�n'�H��M
5��Aj�M�N-�&}!h-�#�ܣN��FD�"j�><p���(*�|q;�㋪�
%8�o�r�rPU��{��q+�Ga)�vq7sN�����N�����Z��w�����	�X:w"O�e��3%�`R�W��<�����Y��v�4��G�p�%��TJgE�j�\O$s�t�Ũ�����je��!փ p+�GO7e�ZzA�D�����.��Q�L��Ҹ��&3���ųd�֤� �hO+s49�Զ{��sx��zJ��	�q�H���1a�X�WU>W� 3�\V~����TV^rV�_.��������:<3�c����<���ͥ�]��WDĭ�n�Q���O��H�-��5B��������w'L)N�0�����fС�����<������ !�):���˴���|s�cO�ɲ��U�1�0��S��Sn"��&]j��Pv��EX箎�c.�Q��d׃	��Y��X�؜=�a���N���֬;��"����3���>�c�P�'B!���
;��_#�Q}u��r�|Eoy�m�L�I!Pt��E�Uy�7��Wl�g_svd$��~�|,�+ 8Oia�g���PZ�"sRPYM�A���'|�"���[����y@v޽�����f��G�7~Dq��7��Mqs����J��Y��(-֔Kz�9Dɥ{�ʊZ�n�#4�8^�}S~:�Sʴ��XѨ=�nӘ�t*Ǔ>B�&*'1� �a�1 �r�U��&���$(-�}-�&B�7Z�SA+L91:>��F��ڋ71��.�H�a�˓��z[3���G2+�r�
��*u����7�܇�"�R��QS�Cx��5Y���wG(��b�,��YL3ׯ��!���;A�<��r��w6Lƪ�s�e�t���vc���p~2E�y�	T7kݐ	�y֙�ֻ8�6L�G��M�y(�,�n��r^�>�-R��J�P��k�MF�HMޖL�B�%�u���L0������w��`��>V\�#��j�K�nT�m8�@�H�5p��06#�*�)Z�o��D�ߚ+H� xM8,-���W�sp��?�;Κb��2�0������C�VdC�����v}�$��5;�=��r�����8,�$�c��K1-njDe�f0� ��v�x(T	�v:�q�$�[�k�/���s
m��M[���Sp[���uhuU7� �,ڊ�t�ٔ�Ni]�j�P��M(26�t:�x�d[��°(X����z�Z�	b��}O����o�/מ4Y�?�}�筗�~~*7F�Mǂ���Kgq��D��$3HM�{,�&>K$Ii	�B��w����t��ni�e�])Z�d��V�,[O�8�-���?ơ�E�C�����}q���>���ڢ�"ڡ.Ĭ�҅3���M�TQV�Տf��5&R���2��K㽋l&�Ca���o|�޽:Lԗ��cGB̍[�1F�;J���Գ��.F�p�*fߐ����x�A3�4	�C+�Q�e����~O*ouZ���¯����ĭ�IZ5֦"J�{pi3�50�!2��]Y���!"c)Bjk��aK�G$��N��j�!�f��4|f���K���{h!
%6�/2|�@�ÄBԴ	I�y�ȥ1�|[��I��_�G�C�M�$��}�ӡ�̂LXx���5��ν�:tK�$�]��)���1d捇�$�5��*�
P6�Qt�#�SKHZ���$Wa���l��?�_]$�0	Wּ1�k��
���r�J�C�N�̆�b�R�Ԣ��a�n�qŁ9����c.�|��q��։m�KǤ���|ua��]Ŵz�j
)��ABѪ,Aa���q���t�8Z�2˩C���SJ���F���&?���@|��9i�D�O������|��_=��"u>u�W������T(�F4�,�M�G�8����lu��#����U���Z�-bDH���̧��Fe0�٩�������7A��1��;��9���ӟ9u*3�Q��,0��iVߎ��d�Y��,AVɰ����.���Y�6`N�M6k����l�.X����� {ر�[;�ztX<Jz[�B�}���e>"B�FS�	g�i��U���x�n���A}����,@H4�b��C���(�V0���Q�I�4�xs�3&�
":2�țG�,aͨ����/��/�\@u�A��&��AO��o�Iw*\�]�8}d��i1�L����}�d��sꁬI����8PJ��`l�����b�/@�:+��(��|ư���f��E1H��F4N�s��{�2B�4�����J��+�#(.@�s���:�]\�U�࢝��"�^�vBq�3տ]��_|�H�r���ѦG��+��u��+�Y�Lr�Ȧ��`�
	�pNv����ډ�3�FL�٠J��.''����|�P5dX�\���e>�U�����ԼTW%I��!u!Xs�w�����3���d
�ҝC�i���yf�B�!v�W;�P�B�N�:��&ES�|Ax�0�Y�y8#��s#d���-#Zpzx�>�@�8���	�#<���#��m�PnFP�jm�����PX�8���G�n��!|�V���Ǜj6>x�ۡ�`5��Z�7�	���W\���Ғ;�4Y�;15��Ȩl�˷^��Uh^�J(*E�<�s�Qvo!��PR%33J���Ax�T;������h5I�}�E���9D��fh�,�x��0�<�l|ҿE���BȜV�3�y��lyEe��c0'�-+!PB�<<<Jv�����؍Qߵw�� �e�	���s�'�6M�V���݌5�j������֋�5њ�oi��b�uW��L�-B~>��S�Z�M'��_�޾5Ju][�3�IT��q�%���kVN���w�l�A5}��vU�ӥ؇<,HgIN�C��㙌���C�!�ܗ[���AFXaz݋��4TC��ɭ4{&"Y����1K�V�0D$�~���<Pn~����G����>'P�X�^ʴ�ex�Q�8����M%Ȅ
IUL�������-k����c3$\ć~!_����_����4E߶�i�LJ���GWU�0�L��U`�|����5j�	j����S�h�'o# �{��R=��q{���V�p]J>�'>Ш�
J��� ŞpR�&��ˮ�H6Ĉ5$�#�����E�G�+���W�*VD���4h��/O�1����l0��l��HRIy�ȥ#c�3�58He
�S'P��E����x[b�v��Ҧ}����h����i�'�,��B}���N�y�#mje�m�֮���Wܝ&�ݰ+��iR��۟[�:��;�5H�C��F����+�vS6�k,W#S���I	P�v*%U��f�=�ϫ�J��h-θ�C��<!*'�*�+�xyF� ����6�
�T�����+h#�����x��"d�z�-bd�c���"���U㝖@=Fvɞ#�0dц���l��EGY���9GY�ܥG�Ra�v�K�,�>��<�wŶ�k�>t�c���
��H7�$�c&�5v#�K\�Sh�5�_����+EH���͎+^	j_�m*T��	Ǘ�<?<cjB1ɒY
�z�"J�ㄉ6!@/@N&Y�L>'��s%1�A@�g��D�pD,G�%up)x6iD��|6Oe �ږ��igʠ�=e�d�5�Z8$
�$��|�â�Q�q��5a<��j�
M�7{`���e�߽܁ʊ��c��և.���O2WkV�|��+�$�eC��hEgeuj������0`�sID��lVA�QW��Z%4t�FG��<�>
~,�"
 G<����9�g˜�	0�-%��`kH	��,!*̲�i=xkU.ԯn����@:o���yL����,#Sc�6����T�J�$�8��n8i+5*P�X0�zG]nTB��Ha
��H��*ei���K����p�BZB<�e�? ��o��w�������zh
��Tw��7U�yĨr��N�Z"d��2T؋D��u>���!��%K��Inq�'���+�-U�`���ش���$�;��”�ȚpȸfPbtR����P�.��HP�7�x�������
	��#��rQC{��^#d�v7���K��6
�-<B���͔�T�Q
�����-E���(*�Y�)�8g;����F��Fw��m��i�C?���V�b�o����:�O�Qā�==1(�'QI�Y&	Y�t�o&F4�%��˻⊺B>�
'f@�����6�UɈ��������Ns�򠁗�cl8 ^���ʓHF$ "A�\�J�E�7�A<���#`$#}��U4�h��Gob�
�/�%1?'G�W��祄L`,*5�H�einS�,���Ua�lx|�Æŋ-rz�ήi8��<�iSMSM�;���V�U�������xm��{2��}�+�RA���G���"V�#��ḟِ�Kxs���&��ӷ%�ʘ�xHO�LhNKzJ�耑b�0��'P�G%��������%!6���)�q�8<�#z��E��W3�_�l%�lֿE��'(˼�/�O��N�+�z�d��و�ʨ{�i�A�U��	�3��r�UFҾe����G�5M���Zu�-O���Y��G�C�D�����`2�}`5��5��&HYID� �,I<�j���F@�Uc���_a��Xr�ߜ���!F2#�/�w1sD8)�����V9d�4"V7^~5��
F<�X���p�J��p��؂���`�����B�H������4m��*���P�ǐiK�
54H�
2�H�
�Iʝw�
DC�����
R4��մ����YQ�x�����.~��
��m�m\�EIG������ͭ��#6Q��ݳ}bA?�:�$+>�^�c��׵�'�����ʩ��K�B�=#m־�y��jJR��
0b�zkrG���[؈	�K�'�+ӥ����6\|Ȍ^�
ǶU�?�V&
rN6��+�ݖ� C6��H�Ή�`D�d��s{�q�O�t��F��WE#�����C
D��n��g�O�1h��MWty&E���6���!�j�z��rخ�1��>�.J��C��Z;��B��XJ8�YG�Zg��  $Y�39\]`y}���#5��~Q!�fT�^b,>R�C�O�UZ���'m9�LAP�dHvt���L�
�adQ@���MxY>�7�sS���J�%��8k�{�l��,�#�v��[�2Q�`-J�G������	�鹹��I�ĉɳ����9�
.g�_�/�ss�	g~�]
~�WMOO{ϸ�0�[x���1-,y���`����K������������i�����/=�<�D�K�s�(��"�(��"�(��"�(��/�������gg�'O����}n�����3����_��?~�{ʟ���88��e�_٤8�w^x�e_��"�d��m,a0��ف5���)��-`��$Z"��P$rG�"�x�R��~�_~��׳�W1�k�b�Jn�Q{%Ҏ�d?���, ��,Dp'HR4�<�!���B$Y��Tȍ�B"^�4�) ��^����c�S��)o܉`�!]r����s���1ˤ'D�d���&)��|1J���gӧv�_k{�
5�Pn�G�%%�G�����#���#>_͈B�y�J��t�����R{kcFy��F���<<������܃��#Q}(�!����}a8"rMعI��IEND�B`�themes/nivo-light/v1.0.0/style.min.css000064400000003676151213255610013404 0ustar00.metaslider.ms-theme-nivo-light .slider-wrapper{background:#fff;padding:10px}.metaslider.ms-theme-nivo-light .nivoSlider{background:#fff url(loading.gif) no-repeat 50% 50%;margin-bottom:10px;overflow:visible;position:relative}.metaslider.ms-theme-nivo-light.has-thumb-nav .nivoSlider{margin-bottom:0}.metaslider.ms-theme-nivo-light .nivoSlider img{display:none;left:0;position:absolute;top:0}.metaslider.ms-theme-nivo-light .nivoSlider a{border:0;display:block}.metaslider.ms-theme-nivo-light .nivo-controlNav{padding:0;position:relative;text-align:left;z-index:10}.metaslider.ms-theme-nivo-light .nivo-controlNav a{background:url(bullets.png) no-repeat;background-position:0 5px;border:0;display:inline-block;height:15px;margin:0 2px;text-indent:-9999px;width:10px}.metaslider.ms-theme-nivo-light .nivo-controlNav a.active{background-position:0 100%}.metaslider.ms-theme-nivo-light .nivo-directionNav a{background:white url(arrows.png) no-repeat;border:0;bottom:-36px;display:block;height:30px;text-indent:-9999px;top:auto;width:30px;z-index:11}.metaslider.ms-theme-nivo-light.has-thumb-nav .nivo-directionNav a{bottom:0;margin-right:5px}.metaslider.ms-theme-nivo-light .nivo-directionNav a:hover{background-color:#eee;border-radius:2px}.metaslider.ms-theme-nivo-light a.nivo-nextNav{background-position:160% 55%;right:0}.metaslider.ms-theme-nivo-light a.nivo-prevNav{background-position:-60% 55%;left:auto;right:35px}.metaslider.ms-theme-nivo-light .nivo-caption{font-family:Helvetica,Arial,sans-serif}.metaslider.ms-theme-nivo-light .nivo-caption a{border-bottom:1px dotted #fff;color:#fff;text-decoration:none}.metaslider.ms-theme-nivo-light .nivo-caption a:hover{color:#fff}.metaslider.ms-theme-nivo-light .nivo-controlNav.nivo-thumbs-enabled{width:80%}.metaslider.ms-theme-nivo-light .nivo-controlNav.nivo-thumbs-enabled a{background:0;height:auto;margin-bottom:5px;width:auto}.metaslider.ms-theme-nivo-light .nivo-controlNav.nivo-thumbs-enabled img{display:block;height:auto}themes/nivo-light/v1.0.0/theme.php000064400000001712151213255610012550 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/*
    Replace 'nivo-light' by the theme's id
    Replace 

*/
if (!isset(MetaSlider_Theme_Base::$themes['nivo-light'])) {
    // instanciate the theme
    new MetaSlider_Theme_Base(
        'nivo-light',       // ID
        '1.0.0',        // version
        array(          // assets
            array(
                'type' => 'css',
                'file' => '/v1.0.0/style.min.css',
                'dependencies' => array('metaslider-public')
            ),
            array(
                'type' => 'js',
                'file' => '/v1.0.0/script.js',
                'dependencies' => array('jquery')
            )
        )
    );

    // Sets the slideshow arrows
    // Can use text, svg icons, Font Awesome or any icon fonts (Loading a whole icon set for 2 icons isn't recommended, so svg is a better option.)
    MetaSlider_Theme_Base::$themes['nivo-light']->slider_parameters = array();
}
themes/nivo-light/v1.0.0/loading.gif000064400000003311151213255610013036 0ustar00GIF89a������Ԕ��```@@@DDDnnn�����ܤ��$$$(((000666>>>jjj���rrr��������Š��PPP^^^������:::������\\\|||��ↆ�hhh���fff���FFF


������������xxx����������������������������֮�������������������Ƽ��������������zzz������LLLRRRZZZbbbBBB<<<���vvv222���***���XXX,,,���NNN���ddd444��������游�~~~������VVV���JJJHHH"""���������&&&888ttt...ppp   TTTlll���!�NETSCAPE2.0!�Created with ajaxload.info!�	
,�������#)-��$*.�6:7�
%+/�70=6��6��=?=��3@?�
�;E��7A>��B;��>CD�	�;+F� &03	8<݄!'14,<	�"P���F�`�!�	
,�������;WX[]�<UY-\$_&�JOSHTJ^*\�GP��2�
#��7�HKQ�:6�L=�FF�'Mij�NA�:b�I�T@�?R�/D��924I	::/E`ӃA&V,ZJCaT�T9Ij�����!�	
,�������	
i^,�CK
jl�8^ghQCRk�"dN<�h-P�cf�m]�,>�Jnj�2H0�T.-�43��5GЄ`eC�6:�f��:=σG5AT770/6�@C(CBA;@/܆F	r� �Z�@!�	
,�������?(N!lG�9'g[jNJ�A#HlF=B]O<�T&28�f_L;�9V(�H�J,	�kW�lf:�U�olǐTr�<b�JmK�G(>�N*#�F`8"�p
A�/`9"0�7�q�E	"T=36n� Fo)!�	
,�������aoe&?�	+qe4H2�D<
@33
%�F8<;�J @�@c�e[l�>8T�Bju�aB7�K�Aǐ�0�Cv^�	��ur�6b?ՅY)�3T3�+'s
�6F0:�.nt�n830�֭��!�	
,�������0@9(+A�TA8cJq
>�`GT6:"VVA�6@>/�B4eb�=	��oR�TD3�>h���F^���M'�0F7�BLd�63Ӑ]jl�7ۅ&NG�+TTc1SOJ�vwn\-Yr<�A#iΔ���@!�	
,�������7=?;>;"0�:TD	AB8Q"�6/37;(I@�0=:�GJ�73��QfA�6��D,<��3e��34�.��1&�2*^�Z�\�<N|��Zk-xcVz^8�Oyrvj{C�e H`�X !�	
,�������7:FF6��63FbDD=�&�:E;�A
.�TA>3�#*N�	D�K$+�C9�\T�6Jc�-��:�gY(�DZ�eu�,A�KXq��oPt2Q=FAl!�+ OjLM^a�G1N\@��A�;themes/nivo-light/v1.0.0/script.js000064400000000274151213255610012601 0ustar00window.jQuery(function ($) {
	/**
	 * Extra JS for the Nivo Light theme
	 */

	$('.ms-theme-nivo-light .slider-wrapper').each(function () {
		$(this).removeClass('theme-default');
	});
});themes/nivo-light/v1.0.0/arrows.png000064400000006257151213255610012771 0ustar00�PNG


IHDR/
$F)	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx���ϋa���8��82�
��D�” ��an"t��^<t�A�%]*�.AeE��)���B+ղ�8�ow�}N/�����,�Z�T�	!(��O�덀�8w����d2����c�X�W��=�1P���wV����t�2���F��U��8��l6��u}�N���r��
�o�J�7�X엢(�{�^c9��y�=���u}nY����g�����ڶm��F�cEQ��	#�\VUY��d296?���{ ��?UU�4-��/�$���[�֓~��}�0���b��/5��`0hʲ�mƟL&��4͏@/�m˲^%�C!Dp49�Z����v?����i�8�;6M���b��Z���y�\�](�.��l=�J�:�Ε|>�>��E�����U�p�C�x�0p�
�������t�����_���M�c�IEND�B`�themes/nivo-light/v1.0.0/bullets.png000064400000006330151213255610013116 0ustar00�PNG


IHDR
X�.;	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��JQ��{�΄!�h"�-X�b�F!���K]T���|�Y�.t_!`�Z�	��ltS�T,%
U�L4u��.L������Y��p�O����ؘ�t:�ι��^�\^]^^>��h4���N��XkI�4.���KKK���q\���Q��{�^��v�s���0	�c��Rt��`�����?�!h�!
4@�X<�/)�G���jS)e�,CD�,C)e�����R�����N��ZH��022rZ�՚�Ri8Q"��Q`�ロ_�p���
0N�����&�[��p`e����t�����v{Sw��7��k�W��?|�v����w5+�ݿ����߾���@�S�WϜ����9v~Ձ�J?~��}Ϡ\��^*�!��s�^�z��<�	G駘~���x���ce,0$�<��]�jn������	6T������()�����,�_>��p��r�9�pt���
�=��~̓Q�IEND�B`�themes/nivo-light/v1.0.0/style.postcss000064400000004647151213255610013527 0ustar00/*
Skin Name: Nivo Slider Light Theme
Skin URI: http://nivo.dev7studios.com
Description: A light skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

.metaslider.ms-theme-nivo-light .slider-wrapper {
    background: #fff;
    padding: 10px;
}
.metaslider.ms-theme-nivo-light .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    overflow: visible;
}
.metaslider.ms-theme-nivo-light.has-thumb-nav .nivoSlider {
	margin-bottom: 0;
}
.metaslider.ms-theme-nivo-light .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.metaslider.ms-theme-nivo-light .nivoSlider a {
	border:0;
	display:block;
}

.metaslider.ms-theme-nivo-light .nivo-controlNav {
	text-align: left;
	padding: 0;
	position: relative;
	z-index: 10;
}
.metaslider.ms-theme-nivo-light .nivo-controlNav a {
	display:inline-block;
	width:10px;
	height:15px;
	background:url(bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
	background-position:0 5px;
}
.metaslider.ms-theme-nivo-light .nivo-controlNav a.active {
	background-position:0 100%;
}

.metaslider.ms-theme-nivo-light .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background: white url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	top: auto;
	bottom: -36px;
	z-index: 11;
}
.metaslider.ms-theme-nivo-light.has-thumb-nav .nivo-directionNav a {
	bottom: 0;
	margin-right: 5px;
}
.metaslider.ms-theme-nivo-light .nivo-directionNav a:hover {
    background-color: #eee;
    border-radius: 2px;
}
.metaslider.ms-theme-nivo-light a.nivo-nextNav {
	background-position:160% 55%;
	right:0px;
}
.metaslider.ms-theme-nivo-light a.nivo-prevNav {
    background-position:-60% 55%;
    left: auto;
	right: 35px;
}

.metaslider.ms-theme-nivo-light .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.metaslider.ms-theme-nivo-light .nivo-caption a {
    color:#fff;
	text-decoration: none;
    border-bottom:1px dotted #fff;
}
.metaslider.ms-theme-nivo-light .nivo-caption a:hover {
    color:#fff;
}

.metaslider.ms-theme-nivo-light .nivo-controlNav.nivo-thumbs-enabled {
	width: 80%;
}
.metaslider.ms-theme-nivo-light .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.metaslider.ms-theme-nivo-light .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	height: auto;
}themes/nivo-light/changelog.php000064400000000115151213255610012547 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/cubic/screenshot.png000064400000704534151213255610012017 0ustar00�PNG


IHDR�x|GtEXtSoftwareAdobe ImageReadyq�e<(iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21        "> <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 CC 2018 (Macintosh)" xmpMM:InstanceID="xmp.iid:21A19F796C9411E8A121E5B54FA4C909" xmpMM:DocumentID="xmp.did:21A19F7A6C9411E8A121E5B54FA4C909"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:21A19F776C9411E8A121E5B54FA4C909" stRef:documentID="xmp.did:21A19F786C9411E8A121E5B54FA4C909"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���l��IDATx�ԽY�e�y��=���y����@A�	��Y��XbTq%�<�R�8y�[��s�Rq*�UEU�U�#�"�&���n�t���;�3��ǵ�k�g�{o�%���D޾}���^�[���/z�ů��})3B!��I�?R
��������%e�R&Dv�+)��?��]�H�?���W¿����{��*&_�WI����P��"%�^�_/IJ(#��/�� �ޡNƱ�ETߵ�#���Mbrd�I_D��'�3*^�y�T��}dp�/�s�	�/?I�WF�4��
w'ԛ�+��*R�>��>Sݠ�o�˄k�3՛%��C�?���Gq�黤j�����i)�?_;��^&��?�`0��S���d8���E����p]�i���9fqI��8/�=J|�Lݨ���)S�^:���7��n�w����J"%܁�K��ŋ�p�Y8�V�������8i���H�*qdݭ.�M�i�w�!^���&i�%B�8�ns�
��VMw���yB��HE������q<�s<lj�0��(s8��,���~�:L.6Ә�S�3qz�)E���yg��&�4���Ѐ�ϏW�1�t�v(�f���3�'!����.�:�4�<��'�Z$brfK���L]7�#�o'�E��d?��Q�ǣ3~����Z���'2�!6�n_`'�����I��V>"��n�f-4�K�Eh��O<v�pe���c�:�����N�"�G�{���H
���'��&&�����@A�vp��@�ɟ���`�g�W �R�!�ཛྷ���,��d��;Rc��K��AN�+�9�� �a�K�ጊ�����ҹ��[�v�;A5�%�Q���̞_>�$|�`��Nwogc��//��G�)�On�o��q�6�\�4K�[��
����hfo�^�\�S(-�����~R*�{�4��3�����fg�A��Q:�\��0��`��jz�n{�^���v����n C��2�B�p��&����%��_��}q��wt����.�WO�0�X�V�$Bfj���\?'���M��-)ǸiH��R��R��J�T�	PeQ����%+�������5��xLFf�O�̇��J�{�ͪ#iv;KL'G��49�_MG
}��'HO��'Ș2@���fKfH&w���Ya<5�
V�H��d�揚ݸe��i�"Y�K}0=��L�(@�c�A\�Q#7�4u��$�M�^�F��Q�������6�=.F�˫���EI��~��k_Y[�I�q��㽖���p��v\�Oz4�s|7@h$Ԯ,�8�n�ᅙ9H���j�* ��,.�G�T�/�\�T�"����A�,p�Q��-y��e_�r��D~��H�`O�Κ��,�rq1��8r2�"����c! +\�,,��Wkwc܁8L8C
�*�|�
'��L.�|��|j���?�G�c��
wT�;8N>k����[ b��V�G�!STN�'�t#'�;z"�R�N
� ɑ�8�&�a���\��90�˩�CN�>��(����F�L|�Z�5i�PE�t����$�����B>���("U�Ʒ�Oxc�V�M�ų�{�>���˽�C�e�������PV
ʧ�N�W<�$����O�׉� �i\�VK��17_��u>��`8��-`*��;
��Ld��gj����0�RRFq#4Iyp��z�qGd	�U���L$���4r���Li���X]̆E�nꕒ�(a����&,��}���֪&xO�Ͽ*�ՂRzt�Ws�تx�Œ���:W��8fяS��TY��h"�;�J%%XP_���P�@�Q��y$��KiC*Cz<�ªV�D�z�H��;Dη�IP�/6�������0�����<!�-��b �D�s9)�����FZ,~���<6q�'��Rj��>
���!�T
k�F�O�zne��~�!�r�8��:�&Bz"��4�HL�5��$e�x~y>m��^ep�E^&�R�)�gN����4<��3�fat8���G���q%�Ͼ���E�@2^/m�n'q��
n0]z�_���2�m�	o6��s9 �~��a4"a���tI�j������2�8	D�gK�
��SB��sT�����H�W�bMD]G��\ڡc�]�K�o8Gţ‚
��V�6s��ң���O!��ؠ��<�y��	�kN�E�(pwja��T@���+Ǭ<�3֒�@�yLY4���T��E&"9vS�B
@�D?m e��c�$��+�.=�Y(}
w;�'���	)���dQ�uE�8�WL9�Q<hoeш��P|���Y��|3\>
{��n��oߜvz���þ7]�9��]��?IÑ�xQ�r)�b������K~��$�q�j;���a��A+��;� �������&	P*L�wR�{�����tO�@`V4M V�Z��T���`{���nY�2dm�"̈́�*��l�\c�����(��X��+
�UX�6���y��E���{)9&c��@i	����ؽ�pT�֫EG��2� ����J�A�t�5Z���Xa�[ �	j��
�P2�7:��Z27����\�&�a���QIR�XJ%��ۙb'�����Y(%+q$l��� Y�c�`�;`�n�p:����+��UH�j	_o�t��~G%Z�k^Ԫ��:qG �t2>W�A�G eA�Ǧ��
�p�R?���ﻥr}�}���=$�sʲ�!_�pJ`b�X�T
���s���M7i������g���ŴQ����/�h�y.���.ĕ���$�q�C�3�Q��z����vZ�7w6Z���K|���:ق��yT!�~����diJU:2�02A0���u��(���pcA�$�ioqW�|\^BdE���3Wxez!J���2G�W��z��g�
���K�U:�SC�Ƣ�^?�� ��m�;��3����βѢ��I��b�.�b�;$$��4jS��7�Xq�_y�L���z*� b"�	ˀnd��p
0*���^�N�%,Ǩ���6uGYa��s�F�fԂ��i�)^+|��<���H�e!�ő��!rp�X�Xy�7��
�^Vp��Tq!F\��2�=qX�t�QEv8�4�2�r/�1G�w :b�y2N�z�~zu��n3ǝ��r8��z=�ʖ\[h7IG�շn>~��g�S��
qĵ���?l��R�vi� �E@s|'�B�|�zF�>�s���p��#k=��2�2a�nV*e��8��!q�*=咡�F��M)���yK�W��&"�R�^��A��@�R����������%+D�ک��uq�iB��Ϗ���"���{?/�8�y:	��I+�sF�8��s�Rѐ`��5b��\��cS#��QS���	;��%��P�]Z/b�S��Sk�Q�J��1�Ō�:�Г�`C:)�2��$�C0 *�2�19
�oA
��(d�24�$����U�1�Fd:_�r�[I�82�(s��*I�ꯟY.22i����N�;y~�R��=>�(���j�����K��Jy��tbcpT�����1�n:�α�6�E	�jGG$@�W��ط�BM=�[է�����`0�\Y]9}�t�}��L�Ti
��î�Y���������K�֞��6w�w�w6�O2	��V)ATCW*�����B��{॒s�j)=CZ�ɔ�-
ؐ�!�Kj�j�
��(����t�3'���}��i��0 ��v�^@�t�0������pq��o\r�1��p)V_����B鼿�L�A�#V�	�}l�9��)>a�H{�(��O�s���9�V���#�i!�F���Y�g���S��DX�V��JP��f���/��A��p�r��8��]&�	�ڎ��kS:�4)����x"w�8��qR��3�c����T�w+ѐN��D^Θ�
()7�8ǧ��Q㍪�_��2��*
~��r��&~�/ڙ$I2]Y� �O��7��;��įC��)z�,��5�FQ��	��� [�N�uPN����su���|_:_.?��4�Q� ߽���:�a'��d��~�?�3��p�C���4�p��2�Q%T*�N��8f*a:`2���e$u�0�C�SZɑX�(�����B��L��#��jŁ2�0◑,L�]������DS(���䤠O�����c^|i���lb�
{�.�0:�5��JZc.UPC.T(��RG'�2"�RGZ|R[�vH�qV����
&��)s�T������Xi]&�.WkL�I�6l\o	���Їٛ�jE�պ"m�e9�}
�:L8kQT�<)�cñ�tU*��(x�sK��
��rT%���9
d&�����KſL�##9�UyR�G��H_�
׈�����B~�X`<���7g�'+��;Hm$��g,^�=��g^�>ua�Ĩ#� �d�3U���3���n��n*)�x�c�BX��B��?G������vL�++k\$���Fq�(��H$���l�ז*ԩU��L�x؉��;.��\��H4(�	d{���2�D�N��Zq�dN�`�%p��Z>k��m	.\\��:פ�=�r]��r�Z.y��eio��t���T�0�"���
^��0��寷��ک��?)9�'i�/��/��9W�s�I��^:�Rʥ)��",I�V�Q�c��*ą��2f�!�ju�2�k�c��T�0�����cTj�̷x	˶lf3���Njn��bmw��u]��2�*n%�ZJ�n���e\ךK���a沚��pߥj�X��
֙�Fi^"�#�_1��&RF��:858�z|��͆��<��#fA���S�lܧl�G��~�ӷ
�M���gt"Y��*�IC�&�8�^#J����7Ku�~����.��(~�0=���&����r��*�ޫ�QϜ����(F���N�; +~�0�(�K5%\@�
�O�Z=����?h���zR$�M���i��ڲ 1�FK&qT��_��<��0�0�0G�p����<��4M�F5��g�F�f��y�RF�\*��)9�:��a>��LD�ѥg��W��ᕙ�0��b�O�Q'��M��~>��	R1��El
G�Q�=��W��	éy��"�0F�{�Ql��1��m�Pbi$+��Bt�h.�J
fqY7�q��f&���JeY��Nu��(<3�xn�B�4�ef
0���kx��:�}h6*;��^��$:k�LDII!Y��ι�8KB��)ԧ� b
�!aɊᕑ�p�q]�P�5`��bLZ��b<F���<��l�)�a�2�S�������\��*ɷ��S�%^b�,����"y�^�l��&amn��J^i��w~����=��4U�UK��An��{wo�?��=U��cy�4Ka����8k�$bQ8�?8�2���p@%?��$N��h�Y��z�>�����8y�g�
����q��i�i��g��j���a"�a'\��O�ֺ0AY
�d�3�(�(S�|Ψ�qkq�pa�1�ə*dL3�O���.��7���ⱎ���&�b�~�ѣ�����!>�-*�˞T����_0p�䘳�e���~&P�XC��3
w�5WSU1�!6��
Q��D�L҂T>_5=��LDty0E4&Z�c�.0�hn�0�yj;Lq7m�6L�ņ�s���~N���\$'��8}F-��<�1�0�TїA-HIf&ՙ4w�Q덝ˆdZ�b*�èS	 2_��Ru�
�{�$��|Z�S�*Jߺ�M��BJ���B_�Wf�5L=!�Y�i�br˂i]gC��Y��t}Wbi�Ǧ#�9L����2��7��x=�wG���~7�e�+�U�VW����(Y��!R�8uU���&��souy�s0�H^�%��+��N�~���~N�84�i���v�𹗾
��m�����J��I�ꂗϜzfuyF�0Ψ��F�����a��S
�ř�b�����	Q��h[���
�s��Z���Tݣ��s�lw�$�Q�>i�ܦ�/�k��/�gv�����0�H�ˢ�)*�g��4D�(����BE�s��!�6X�Ɵ��ɋ�3c�z��1h���
!�7�{�T�����.k�9bQZ`,:��c?�81I��#Dّ+�u�V���c�Αb��6Q(!c���X��5M��:��c��Riɦ�������<�4Ԃ䱓��Ӂ�faFMץ'�Σ�F��&Ԙ�3� ���"J�w]�a<d��a�	���|J�.�+���ь�3��sKS��f��8Z慄CXb*5�MER
�L}�t�l����h�}�O�q7REav�`��b��ԯ���~���+/]�ʗڭ~���@�(Nwz��A�]�R*cĉ�Pt���J��D1�–Wkԁ���h8.�,;���@�뺕r9�J����BCܿs8�F�"�q!7@��y�Z�WK���]`jY:_-�,E�CaXc�\�P�w�N4*׫S�Z����A2�F1*@Ԁ�+��j��hԻ�� Y@�2�kI��F�r�T;=5���������%1���!֤c�1�Z�?��"W!�R��_��QzW:Q�:A���z>u��Ď9�,/��:*���t9֙tBP3���4W���e6o�+;Ô�i�Q���tl�J�
��GE3&wG�b�A���T�0��r,�HTs�j�i5�Q���̘��&u�R�&r-��"Y@�I�D�=���0b�1��T.��v1�*#"Z���1s���ֶ�ƣ��+W�<٤A���F��3sUq6�]�Q(�!2M��	JƐ]��E2��F�,�&�'I�'���*�a����1�a�`��Rٗ��ovZ���	R@�J�gI/��I�2�!@+`O�h`$F�9�1p�4�N;��Eh�
J�ln>j��������	����3�"
)��f)�\����.xM��K�i�/]�re��Ņ���Ãv��>�>\g)��ND7��Z��_�Nս��Y��0i��A����<5���G���1�P��zjJ��~�E�p8���n�~��������\g��Qy���34nS�L&�1�G9�M)���;Y���!���3;|R/���0Ċ�}���IF���y�ZUJ�0P���R2��+�m��Fm�bJ�f�k1�QIb���F��*0
X�'%�T�(6��.��	�eu�*��æt�PrI�����F�X�[7�l'�B�.����
�N����bU��4>qW],}�U��u����f��u҄��v�0�n�#@]
��PUQK��mީ��d��̽)�Ga+K���X<�d���n�+A&b��u���3���8�6��F���2�zᶑ�I��<�pb{�1��X�08�z
"��./]����>i�]�T���B�,s0U�8��<�.�~�4,��)�"�T�
.�F$4�&Y�9��W�ڬL�H̒^��a�6=5;���*>��q��b�~�$(�����`v���O��Y��n	W����ԓ�\��	i
��w{�89=]:?�;n��ĒZ4`@s��8$�7B��|cf*p��i����w�*�奃()W���F�pe�G�CO(�w]�wL���V&Rӱ�x7+qܤn�bҮ�T}����6�@m|̚�L�ԥ�T��
fAb�)��[8�����D^V-��ō�.4��Xi�����L+&��R@�]:(�Յ��>y�����T��"C���<[ev��vM
��0-�ҭth�J��S�����|�4C+��dS1�A�o�2�(�Jb#2c��
�U�(��V�x�Խ�%t�����wZ�;�T��\q�p��4sKu�e؅�*
�p(RX��4��	�0�]|4�+��D����س
~��D��XRY2&S�(T�^��B%���^m���{��a�+U�l�4`�HEGL@gDe�J�9��������TP���<^�%(e�$�������~���A8o;p�����(�Qh��a+����^o}{���a,L�/CH���5ͦ1��w<!}w���kug�s��؂�Z�x�h0�u"}�6+��a�={���7��*��a���������f��"�̤w�]
���$���_����h[�@~��=d^$,���f�~��:���y���4��Z"��4M��� �\I��7�E-,J�����oZ|OV��1�i���1i���r�{6Dӎ;
+F�‚�4��Ģ6�E�dW�qQ5������]�L)r�c�������%�	���ʋ��fV��ѹU;�$�gR7��$G���%m��ntL2%l���A����@�9L�:c�^�76�h�!��t�FF[3t��(̾~v�t���~m��n	|��\��
%1�d,Q��)���,�W�LBD?%3�T��e&@�	IG���p���I�P�RJ�Ё�D�q�܏�Ѱ_�Y�Q��%)D��dG�_�z��O>]����K��LP��*~	��0AC�fkkk@��\g!Dg���FP}����;�j6=�K��y~,@L��8-y>�+���L&���jf�p�DV�T���l�y�
o��{/�]-��p��h4��i�
F����8�{�t��(�,"�,Uj�'i�˔��Ztx�?ÇE�0�'�'�ٕ:t\B�K*?`=-�'7�teQ�v�D��M�P.��B�,�1�'d"�S��l͙��]�����2���f|y���Ũ6(-ۑ9R+����Pk1g����"ӱ-6�"V^��B�7�k��.��Ua�0ᧁc��tԦb��Ũu��cr����;3�]�O4"��gŰK��	��N�	��#�
_z���C*|:e��UJ�\]����R�Y\���˴?����-^9ДcX�D��0d��ZS��W�Pe#};�Z��e�*ǎq�����)����W���4���,Ej9?U���$M�T�0,��t���
�jY��sB���
J;��G����xm����h��ASx������a^��Y��s�����Պ�o�m�Q�����QFi��/�.W�FE��F!I����$N���)����8����0�<l�é��0L�x�so�����w��m�%n*���8)KG�0],�,dT�OƬa������1I��zO�q�T��y*�'R�|�Ţ<�N�}�Xcb��OIш��L����VXؤ�a�Zg5^j�i6}�m��V��2�]����8�\�b�z��m
���T��PS}��i+rtjMi��T��j�MH!`$��d�Ⱦ�(Ť���`Z�ɣN,�P���q�.��8I�ZuI�Ĩ�I�Ԕ��Wn3��w���.��"7��_��S�u�(Kp\�
)�%]W=`TՉJ��f"V�"��*���iE������.E!\C�R�l���\�^Өϒ���<��~c�4�
��m�P�3�AO�pL!'�3x_*��E�k��//���ՙ�v,���6��A���{���+�V�awmy�Ϯ��ᣀW����+�j��neId%CR�<���z%o4dq��w��X�@0X�7NCnq��!�N�s�j�+����K�<��/�����:������|�/�x�E+�H�*uߏS'�NÚX���4��|��!��\3/V�JƂiidՒ�S�k�3�	s�M�� �T��nM#U�g؟3F
y2O�z�B�Ϳ�Z�����c�	��%�
M�.8Tšm��w𼵹]����=��`s��c��E�G&5iS�(���T�˅�f����,ևA5�Rxͣ�����/�*TɁVk/:��8�kH�V��2��M�h mŝ.U�yٟ�`�C�4GE92Bڿ
8�O
�y[]4��Ƃ�P�Z�pL�s�*�4ŋǫM��8�R���T}l����@�NBz2k%#\��U�O���_'�,d�\�hBU��U��N�f�+LoQ|F���@���2����)q������e��|mŏ��$du���
/�wy�� fk�^y�<yeo��M�D=��	�G>`{�L�U(�`�Ѩ���CI ��!`��Q����	�F�F;4���Rsii�܅s�~�ѓ����q��?����x��ٷ?�d�mϸ�z,��17�3�X��/�L��៽��\��%�SD��\۝_|������XD��2qG=�(��u��D-t}�.�2gڼ�ʵ:��x����3K,r��x���Y`X��8�)|J~���k�S�Jnu�Bתb_4�cV�"~�z�h�ظ�Qu�����#��(:�O��Rt�16�p Ť~��)�RD��e�=��1�Pbk��6g*����C��\3f����@aT!���/��NtfZ~�����V7:ѩf���)i��t-=�I���6�2	�q;Tfcl#ƫ��2-t��h�#AfX���USS��K����'H�`��b�lѩ����%::��IԪ�J�A�'7S*��@�
�E��0��rk?U%�]eɌN�)�"��px>���$���E解�� ����W�ퟵj����OG,z�Ɇ�ҥW�ג,��'7<�D�[XW>�բ�@�\�\=-x|i�!sIb�5�8�G���L�)��N)H��/��h6:�^�Q,���]��p���y�m�?�������V{�׊���4NE��o��8=�ν[�hc=�Om����L��� �W��Ο={����'[�^G�#�7n��tP����#�%2?pD�G�h�#�:�}$)=�`�W�gUiN�MJA��bo���bE|�m=�'y�Oh��ZU��P�0�&[��::-�=�|�G/��Q���H:nZI���%o���C�A�f(�/�=���>Y�8����$�h^�I�d�C�/�׌�*�-$Ԣ~!��������Zjf �h��T<����@�x`6eY<
I��UÄf4�ĭ�+S����p�+$����Z����"�m��	��r�,��Ͻ�ƫ�ד ��/Ё(9 c�����ᓙ�c�8�z �v�;T_ð_'MU�L�)�u�������3�N�>�T1����`�s<��$���������,�;�����Hի4oe��hg� �k3�����Ǜ��}}�.<�ͩѠ��	��[����r�{,�p�C+�4��Г���+��=��0��<�x�έ���w�a�?���ͫ���?�Û?��olt��;�F�I��>p�?_n���?jm�QTq��r��D����>�\U�N���h]d)0��J��f`#��(�g�^0�9^l8��[�+\��_���r{7%��O��˝nw�kh�ܶ�@j��}ͿHX7��8l@GN�zDL��}��uK�'�PJ�g^����3�Mv��[>Q��{9��IS�V%JB�:͗��dѓ�;�U?��B
@��W�
D���u�Ns�ށF:�'Yۦ�$X~6�D��^�3����&ס�G*�ʴ�/O�X�
7�O}����L�u��g?~H3��4
�p},�ic0]dJ�V�#�{�P����o�Td��4���U�jSS���6�?�� ���$�=����b�q��g�A��K���f�q�L��	�E���z�>���\���~������OI.��m���M����$e>����pT�����[��l�)�jB�E�Uj�� �z�v��.\�S��޺1�=t(��X���13��	7nEAPBB��˸�zL�"`Z9�D�R�O2���@�!���iZv�8���:u�JU��N��A�uɩ�S�^��믯\��v��ڣ�V��`�`{��G��~���w�4v�������_�4��7��J4�Kp��$VrgM竵�.}|���4�;J�G�M�Y�p�:��9���G-�;h�tP�ۋGԈ��+4���8�	�Mc�B>ێ@(�D7��M(Zp���0�c��q�̈́
��5cJ�ru"�Ai�o®������4y���Ѻ��
���r\m*0g��<k��T�����J�ډ�"!�O�鐼i��-e_c���Eʰx��G��zء7GTغ3��>��c-
6*��`R��&M]7#*�f� ���	�[ʠ�O�ɞdϿ����������3g�\yv��Ka��y���H�x",��x��Z���E�f4MF���K�s͵3sk�g0�A��n?�~�!���ID�a�sXnH�˨�|�`͡6�d�j��8֙�ҵ��ݝ����.��rmj���;�jɫW`v|��G��.�o�ApлG�S�����.3�����w}����o:���! ��BW�Cr�- i��Z8n���Ԍ�Z a�ۇ�rк��k\xO�ݩ�SKs�~��h��럼�'[��4��z�[w:FQ��Fu�����&NIK��p�zor^*�H� �{oG#��Z�6�<�T)����[gN=l4�ҥ��{�-x�%/@G<�a�i�9MS�C$�Xyz����g=�>������ۢ�XL�P���'5��o���茛��b�h�l�Ի�k�K^�1k|\�o*�u].�
='
�4�pG�ZN7�T��
�u[}�#:���k�����t��[�]�U���D�sP��
b|H��ga�o~S�(�J��t-�6��;S&�
��jΫ%1��9��_JM7��o�9a���T�Z�/�)~��j|�
�M�ԑ�RSNGH�Α��^y��x�;Ͼ�mn���{@�������̹g���v�h$ �þ1g�x/)Oy��ta�ٯ^�ƷO��4��:H�[���m�ߘ��g������n�x��r�����~��cD�	ʕ@�=_p�rg�1�ܬ�Fo���үJ6��$�Xe�������Ά� �Od�
#KC%�	샬F���em���(�xɧ��r9H����V�`u�Hc��{�p��L>��|�G���_{��g�ֺݶ�Z�a��<p]oip������W��8�
u�������o���֞'��+�	E�Q���� �1���,�>��UM�Rs:�����%I�Zn�+�n��y�3��߾}S!��eaQ!0l֎�����	{�r�,�}�|�p�4���׳Iç�L�}6`M�lJ�Z��T�px��*��7�3�	�UM�Ќ���O�$����a�UY1��W�)�=���vF�1g?�%ɏ�5m����cS�,}�I_ZeW�6�J��6��_Ҧ3qꤪ|,o��$���%�rn���iq��a�=���m��P�W��M�g�&S��7�}�@
�����[�^)�x�:I� ��L��z��h߁�!�O���`�O�J�˯|��g�tj��F��o����ݫ�*�g�9ӕ��f�6;7�{���&	G�T�������J�����V� ����l�u����� vw>�x��}��[�E܎S.#�{^U"!�k뉙g�a;:��L�35�)F�����>�[咻}�������֜y���Ǐ}? jTa�g2�Ҕ�@��_��7/��?x���(�j'	/�/(Uʾ_��w��ǬRW&u�s@�pz��DxZ��Dz~n��߽��������/���~�n�OX��=�����۷�(�e��o\�B]����j}慅&���(l6��F���{[���d���D�.��:���TMج.�T6�j�w����N�x���,��ӭ=��DB�,�`��8�
;����v��Z�X��#�60��8�?�<�Y�s��}���f����6���[p��S�m�f�6�7i0�>akk�CV�_�93�rS�lʋM�&)�B�vK��ؼ��W���i,�L9�4U���G����H���!����)|6�4ح�b�F��R�!ZP�:DUz,�������{����}���JAӖ"kC�1 H�H�h���Ӵ)W��M+.�ơ��&MQ/�t�3�.�D���Q?t�SE�"�>u�Pk��A&٨A��/~�W��rf%���y������̞]pk��Ѱ�%�*>!��׷�0m����`~�K�j�ᷮ���wo~�ټN�)����� �\���4��`�S54�.QT*���qz����W;��O<�V�Q�����Ҭ�ͫ�G_���O���w"���n��J�X
�d'
�˫��}����򓟞]>S��M�0K�r5�Ngįrom�~�����#"B�C��NOM��
�N@�
�
��������o��o�g����y��?�:���R�5��-��t�wW}��L����{ۯ_9�<�
6��7�6�v+nE�2�8w�<P��#�Bbg����E�/i������T��|����o~\�T!h��<
c�l���i�Ms%��|�f���⮬�8�=ҵ5/��T~!a}��!�Q;�$ÒOy�,�ZNGC�gS���-�|�)��T��:!d$	�W��Ũ�3y4:&�j�A�qmx�V��aOc�[�̝n⫫RTͱ����TZm[9c�4]7U�����>~�0Q��1��FQE���sm��#x���S�q;�YBM�ZT�3�()u߫��4�pj|��'s|
x�:jSaZ�H�P�'�J�U�6��
F�`����DmHK�.���t�H	�����v��ƙ����/]8_�y���G?��ޛ[Y^�|mscg���C���s_{�K�k����9���^��{���C��-WePc^	R���h}��[�p�լS�͙*T	}P�@�"Z��ť�����l�x���� �׽�o���W?�|����?�=�!�O��W���a��T�ja�fn~�+=v����`T
���/��7�����`��o?�u��h�'NX����3��N{m~uvz�����8�_��彽�O�|��lyvY�iF�f����Q6\�чOM���h䤢�o/��ގ�'ۃlw�I:8�����\%��f���b�����R�\�w�Gi�B
�X�VTP�6��́-��<�.�Oi6XW:��8
���G,NJ�[D��Q�*MsR��c鼼s��Nq,{���Y�����醍�R�n��� ����8�7v{N����VT*UXMQ���I�y[��pq�1K��#�񚴇�Z��)�3�m��ZRA��P*ʬB?�R�
�>QE�S��頠.S�U&���&Y��)E��C���HW1���`9�g��M�Su�������1_��

�Tu��|K�i޴��v$���N����3]�����0S��+Se1Xf���)�S<�N���܂�B�!����(Km�]T��!���M�2�|��׾s��ŋK2ܾ����>�]^<��W����;Ss��|����ٻ�	ٹC�'�䖪�$���U����DTJ<l���so޸��������MP�R�Z�����c�	<��hPƚ>�����/�P�Yg$^�|�O?����J�I�T�#5G\�slj��2�F�)�rO5��a�鴉r�=�1[���/�����4�_�����߸�
K�?�P�S���e/JťK/޹�Q����z~a饥�Ϝ:�P������w޾sgg�5�h��Z�����ז��>ٸ�Q���S��|x����^.y~�
J��,�Q3�a8bظ݃�|�ҕ9�}Ytg�~�Lj�l-�}؃�q��*���G��$�*
�
^���qȖ�O9Z|�9����7�'6��8�S��̏i��S9���D����)b���P̦�)��*�bL��D�ޮ��r$�c�P���=S��X�:�֒���o��b��A�R+_5g��$�qd]5�U�'ֲ��N1���qQ�O�����V��d�����U��M'x[FL12ut�+i^2�H�����cN����B1K���+�[l��m���&j�7�*��L�h!lSu��J��(�rW�S��I&)��{yu�;���D���
N}��˱E�k����l�_x��W���ʵ�����L����{��]��*��N,��{�zmeqy{{k�p��h��ˣ�[����s�w�ݗ$	�]#t�n��mk�v"��R�eq8�����
��[��L��s�_>{�����p�����#��a��$C!0)Uk��=�2���J�qgՊG�m�v(w��s[O6�ݽ��˾?sp��:?���u{�����zs���{�a�/7��ϟ9sfq�S�..���>���{������f1�
"`�(�SM�J�tq�����Z�x!�$����u�"�Xb�kmn��4 �htve����
��.�>���B����U�OHQq����C��:�
<�6r�wi���Z�)�ey̥��:#U*���{������	=�d�p,����Fx������c�W�NGƞlSР"-]���z��&d�P�7b
��(/�=��$8l�Tյ(� �0Y��
'L|�R�
Yd�L�*�P���`�mF٬����L���2�m��'�B1sT��t��>60.h΋����R�*��~��q���Ԟ��.)u�p��u++ݐ�W5|	���{�>TM
�F0*|��jl)�P��a�3��Tq0�"��Ƅ	d�W���bʬ�rbM���p���wVfZr��R��~���>�ޥ��^��g7�������5��Nv>!4v�M�V���pW痧�}xP�U������0z4�.�������|��{�x����No���F�JU
��t}�ec�!��Z�s�흃�j�
����N=�t����a���ʩSe0�o6jQFB�5v	�S�~7�s|�k�O�����/��W^������{������A�Q�vn}�^�?��_����9v��l����.\����鯬]���ڜ������Oo]����7�H��p�#x��{�Z��Q8�\����p�2K7�n<���엇o��oɰ�U��	�
o����X]�iu{�N�h�^G�5��U��}R!�KR�$�F�rB���Q��+y�#Y�Ϩ����u�L6e?r���Jv�d���=��?��L�d�8m��7K�4ͲJ�����;۩l��Lu����@Ep��m�B��h�CD��w��M�N%tyH�צ�.%��",e4���z!L�����4��m��˶��|1�7�u-�щJ�rTr@�&LyY�9��)�c�TA�[Pe@c4��2a;O䢛>�E�
U<��*i�[|��Ҕ���.͒�9��<L�b��A�z3�Z���ւyJ;�h��:"锟�G;��(
�W.P'31��R�&�*���a��;?7;[���������LO�_���^��1������C�;�}u���{�:tm����,�9e�Jϭ���֧���g�.�-��F���	E��pP*���,$v����g��.�:��;��p��Q�˩(����q23Ӽ<=����SK1#?�qk{8h
�R���O�
)���r
����Iv�̅s�+_��쵵ۭ��Ɲ��>|�q{��:L��	��#9>Y��n[��J�v��߅)�Ea�߇����X*Q0�\|6(�����q��ul���n�I�>�̌��/NW���{��}���ʿ��ˆ�V�*�����!L�E4j4�O�5|^�2����R��\!�dp9?�;�k���X��G���d߄y��d���i%�X8�O��E���9�~V�W�CCQ�Z{�n{����'u+�ۏ��r�bMR�d��3�s�E;��g���"U�XJ~D�^�Ҷ�Ó�Lɋ�]n�q�ۿ�`��U{AU�TXyS���4T�)9���i�?�|_���R̕0mL7��4�r%��I/L�PL
�J�gU�[��)?Sa���R��.�C�a���P�E�BD�[_:�÷�t��l/u���<s�@�K�+s�^���<��p7�Hū�+ӫ�Z���.!S��A�p�o�"��{�M��}�\ƣ��k�T�3��p��N����7���w���-�zz�QLV�F��b�8=L)�
L����8�66ڣ���to0t��V���lN�+KQx�:	��>��o���N¬���<��j�by������BSI})��r���<��vgn~y&������u������/���D��t���'�>x�჻OuG}���*�(a��\M�o�eU�jio�qd�ܔ���q��)%�)��_}|�U/��_�;�����NisPU�nY�x;��p�ژ�7�߼wK�7u[��8Z	ᳱ 4�6*�I��Qû%s�s�Z�ꝤC���'X��u���#�*�X6X<�����>a�@�����ܩ��L9����.d�'J��8&4oC�C@5�"�L7I�s���ں_�{�u�o�Ԇ#Ulkue�6\W�I��O5���J�~��H01>Q�+4V
{�<68v
19�K�N��Ɨ��_�>e�3'�kƎ�p�y�\9�poC~���`UL�f����*�g:h�V&t��.TwjFF�-=�&}�p���F�N�~���Γ�dѸ�����.
<������������O޾�+�0�V�|6p�8S�2��?�{�~�z��B�S�_XX:������Q�;
GI:���jг驩��)�a7���K(y��3i�>����K������~����AE��(2YuU�ĕОqf����Q�4�,%}���{��?�{|����H>��t�gY':��`��g�^���hp?I>�}����� ���A��R?��N��^=�L<w��/�^hԪa�������[�t��~��G�>��ۖ��[��q��`"6��ٹ�z�
!��Ҋ�87n_E�0��0	�p��(���)��ҫ����_��O����vO_l���-^��>�I��O���̡e�)����<�v���g���[?�aP���Rr=�S2��kH�'շBH�7��\V��s�V�J4`
&�SG\q�j�"�Omt%
��&����l�lΛ(k��o+:��#h�����*�XD�S��A���;f���q]$�
�⩪%�W�=XF�m�
'9[�z������c
i��4�J�t7i8�	j����5M�Pu1����*/��\����ۺ%-�{#ҩ��*5۹��C)#�UG��<�:.�T*���tw�,(�5�@>�$֧<�6a��Q�T:
Ly��aU%w\�ʫ��Jr����>8rH�qr��N:=�$	Q���y���M��U2�P^'R��c��Doq�tvz�o\��rcs�.��Yow{=����I��x�h��n��:�
{-�������R�V��"�J~�{��3���o�ݟ����p�}띷�[z;�X�A��0u�R:�*`P�Ep�e�P��^	|�~�%�n�z����e����_��+����z��4=��sk��q�*��7?��Ig{k?	�_��js͹�p�66:�	���0�cUD`<9[�T~�g/�=������}��$$A�Ph��Xkx͠|nqe������6�@i��a[���`?����ṆI�i��$��ꩵ;[��<�K�#�kg����W��ӝ�L�?J����}�T�ᱲ?]�,�.f�hw�1A�L��(��
[���Z��|��]��z��'�M?��On��K�#�<��.R���*�t��dg�ȡ�d��Oט�B{Y2����B�Y8��ذT��q�=�N£�8�թy�H����I
:��t��{��H�N0�������2
�����Sh�.M��]�)d뇱\M	�fy�A�ͭ0�0=RuN�@�Dʦ���N�t�4�J{���: ���F�W��V���/W��h��2���C��u�=ɏ�8}X��d�x�.�%e�`L�375*OI��,t�S�&��X��(0UP�g)ܳne�J&"�����5*�f�w�l�Q]�9�]Y����]'�w����j���~�G���t��� ��}xP�Q�y�J�^��˕(9�R0~�",��kVW��]Y>S�7�>��ѭ���+�^�����$S� V�c�3��1��ϕ�����%�]��ҙ�_���?����^�k��p�!�q�f1JD��}�����{Qg&���v�#���.���?�����?��s�N�Y95w��Ƈ�k��H��4��kY`��I�Q��Z�?PV�T����b�z�2U�f��JM�-��0޼w'���ً\�Ǐ���Ga}zf��,���7Z�.��hT���t튗�޿}�'�FI�E-L�7N����\��߽!6of�'�`P�[�|᜛e�^{gwLViz����`i��� �.Ή�lxp�N�d0�6�xP��`��%�r�Dѝ~���Nj�7�U}�eB�';&��G�G���9=Q���[k��,r����͉��mL�-9�ʏ������z7�i��Du�bBm0�i�H�?b
5�_]�>y�I9�&5Y.é,<3���!�ZɆ�ž�e͖ʷE0����[E�@�Qi%IUfbF]�m�,}��>��XC�%�(�Je��4U�Գ(Ƴ6�h�N��v,��S"I�~)�j�s���q2uK�w��DTx�aQ��ƹ��N�z��3nB5,E�{�xh�-U����Z�}���)���ml���j2�4[��o}������9XF�S	�a&C�T�[N�+ˋL���"[���;��K�L����
6��H�k<��l~ve���ݭ�x�x����Z�P]U
[�����|�����fI6���0�vy�yGDU�*�Z4�V��_~�K��@�ӕ�/�WNG�������7g��_��7�|����n;��n�R.�ڭ�JwM5��~7<a^�Ც�<� ���#J�Nת"�sKsT����(J�(�[ݎ�x�\qJ�����|�T2�z��Ts%�w�X��ѓ�~G��e��bi��fQ��j��u:.�MK�@VVę�����i���yg&mW�)D����ܚ?�R�2ې�;uӍ;�֣xp�����/Rɝ!�؎Wb~�Rw>���ة@Oj!u�~�N�b���m=,�1�2oF I�V�C��7T;ԭ�J�,Z�2�J���I�|�X�u�rm �[�S}�W�NT(��G�)�FWF�P�TUQ鬫=ކ+�:�E*s�0���"�Έ���
T�Ŕ]eJV�J�}��H��6�/�b4gT�9���E����,ʁU9٨	Hq}��DC{V��]�ƌ�Q���t���Ri��A&�DRG�1q�EC�Ŷn��b��d$p��j
Fn&�@=׽tA�i)e��R�0���:!LH�����UAL�DiJ}�iG�Gw�ɐ��_�f�|-�٭~������Ӷ�ʕ4��\���ߝ���K�o��b��ݡ��͸lA0�<�ù<5EGQ{����(µK�le~�95�z�p��z��/��㘣t���������{kv]gb'�?�C߾й�@�H� !R"�(�Ҍ=55{�*�m����w��o.��U��eYV�D�H�H"��@��7�{��N��k�}�5*��j��>{������}�i��\�W��|�DF*���9��ti~����#�{�⅏}nG��;2���U�b}:ۘn����20�[��Y&�����)4/>6���jDh�v�I�XC�?���h?��l�Q�d� �s�>�뽽���~C��xA�l�\���t�׌i	"���B���(���!<�ӓ�C�9�s����*�3����C��@�)��A�b^���.FN/z򗴘�.K���+yޭ-\��k;�Q���#a� v��e�
�����gE�����-�35".�s�щ�D���"��GhVg�/�4'珡&*)	1��xä�g�1��8�a&̬�<O�Y���!�AOH��{MG�8����x�%0L����V\��?��]ZEƥ� !�"]d�D���_���Y�0�=a%ƉpJD,��D�3ܡɸR�`m�����
40��d�0�9�r|��:���rx��EXR�N�|h�a�RaAfT+�֎��2�|���,��h�Q^�ù���P�!B�`�0�;F��ȱ/f����|�P���1�MD4�sC,&W�L�c�?,5�~���G�B���	�+<�C,mp���n��ɰ�:O_�f��e� I�m�c1�fc���(�X<J�2�s#�=b�Z���gS�s�����..;�x���D5�]���LƧD1�;k�\���*H�	Ѱ8�~@�	-�=y���3,�(r�GB�~�>
|��\��Gɱah��}y���g1-�e�`5��_3�׵�\�q�ŋԥk�XX|I2ZG��������A�ہw%	!E��{�/1�)�޻r^�E�/�u��akl���%S��B���
Ƕ����r}�0�R�����v�ײ˰MT:�kX�\,��=�<O�Qcvb�?90%�Vx$%��v��P��|47�l&�7L�@������ubTpP���pt�%YD4шG�i����F�c����*��#r./Z@�_T����a@�־_��Sn��$����
F�L����	�qRB�'޼1�4�Pz���q��#H����|S��V%>ɸ�׸��6��c2���:�+�����CEq��L�잴�NGh'�Rx‡M�b<}æ3�0�r�1k	�G����ߑ��!=�XN]'�lNV)�Iڊ��0��8ۓIG$9���蟼y�+/]���L�R��ȕ�ne����]�N�
�G6ExZ�'���8IQ�E�3��}4���ѓ6��%F����`�11a��	���C��p&D�=MH	!�@�)��Z�m~G3�H�QG�AZ�bE�Ě|����A�!��#*J0���慕Q��wQ��6S��z)��C���c���ٻ�~��z�h�����iD��۲���cyz����d�!� ����d�(��p�k���C�ATv��k�eg/}��p����/B�Ezv�/��I��!��Nhj~g7���0�afun�Zif����e��g�s(�s��aG�*�HR��W��ׯ܈�����0�P�VY�Q�Ɣ ��b������pm7������
����/�ol� ��)B������O`1��p�w��̰�q���Fs�\���e9*�KJψbV(��N,���o{.n
Y��_p�q#Wl������9�/D��|�?�ؔ#��)C:�[��U/*O�f�D\��RM�D���d��T՜xd�%m�3u&$����Ts37!Z%��'��TI.�A!w;���q�8�^��zʍ���D��Ht|V�J����I\��~Œ�*&C�"=9�8���9�e�U0,쏖 ��?`���#0ϳ���dY�u/��B�plq�#��(2��vE��T��P<�o��:߽{{&S�ds�ī��Q��ٰ�rȈ�D1�뻶�8�"@�;����K��}�A�9d�)r!�)�+7e���1�	- f��Te剄tƦ�U�rHm5�l3�@�h�2�Q���v��2�==�DE���g=�o�e�_.��=��R���L>毟���7P�v��Qo��q�P��p(�Q)��\���ouNܻ?6����Y����L�ԝO?f	N'G�-iT7@�Iy�uC�Q�F��Rq>W�!M�׾���G�cx��:^��	P���œ=8���.�����a1��t<<v"~qq����U��LQ��+y�t���2�fB��H�o���Tj�F��E���P7G
�_�p�Ƶ����N���/��
x���l�P����,?�a�a$��I�V��[6���s9�Ga�J��tL����p�
�8_.	��tgPP�z���TQy�s
�+B8��xl v>����uK<�	�r�TY?�+������dv'��n�3��/`.�K:����ӣ��.����3W8⒌�I�OtX"�%�i̺&D�ĵ8-%Pi�����<H*�,�AZkx>95nH&xR�uBE#ʘr��_D�}�13�S~��	��7	�Nj����%��s����Y�yXƅ��d$"߷x*ʨ9��q(�+1B�F��$��s�"t�
�Β,[�!�B����	��3��Z�O�y�/~���1a��މ��T�˖ˮ�C�W1��O��0J����|
�dHZ�\�����s���LB���r"2z�� Q��&�@��'p,���|��yA�E='8:,�Nj����;ֽݦ��TQ�	��چ>2���?���3�z����~��(����<�p� +��Ǜ>~�NR#/�;vo,�f.\���o7OX6��Ǎ@�<DR>�\�L��(���j9Ym�Kֱ=W)���l�#�tJ�+�m14k��^Ī�腙��n�v�T�>����<ރd����-]�]xٶ��HgBƴ:qd�!�ᣯ^�[,�4�h
����6�/�^]\�dk�V������
8�]%^��4M��v�k�� �)��|tQ��݁h>�v�FL�wQ�&#b�cH$�6���Cr쇁�4;�˔!^�t^ս��7_���A��A2G���(죎-�ǏCQL��I��_���TN/�b|��J�_/&�rQj�Pԋ9=��J�U��|
���D3�L������yD�B+���:ZG��,��a��Bd1SAN���{|��f_	S�!bZqt����
�&~��t��}����1�Hl�N`�҂�{FI�:��C����r�\��~�ЌK�d!xI�D��م�j�\��@�2�������t�����X�̞�
r���D	�1�2��7��%I)�J�1�)W�ku�0~yx8F�1��Ln���f���-Һ��H�˦=w����҅��.ŇY@YEEC�N�2L�V�A�`����&�F1�tO���J;!�2Hڅ8=�S�W���,ܼ�@ڟ>�$ׂ]'��3����/��}WC�f�x,���G�cf.#�S���==9\kI��W�6�D6�.C7M�\u}���z��(�D��Y��?q]��W׶����2���c�
!8�S���$h(�Ŭ��}C3^}��?y�[����'ݠX^TK��9�s|S�p��s��XR|)'+\�v����P.W�~��o��=���V�x�<ɖ+reF�͗o��+�D͑�Z�\F
���`%�1;i�*X���x��O��5}ky~�^��
F�mY�FRnI@��f:��43�(��ۡ}�w����&+���#�QQ��'�j��a";�@�����ZZ��#ر;]m���ԅ�K����D�$h&��6��3�y��B��;�b��eq����bJ
�%���$�t4}&�̜��R)�	+�Ϛ�t[�T��?+��M�=�K�Dl�[�da�`Ÿ�"P�k+&�ԉ�������	A!�&I�N�JF����L'3z��D�5�9�,
z7�|�<�o4f��X��8�y*�߲�wz�L���8d<���u(�/r;�Z�n,�wo�<����
�2��%*b$�]DŽ̍=
��`0������d~����~�����o���\<o��퓈b����\�ת����(k���T廷�"�o����]Z�ɳ-�%$ВG�I�#)'Ҫ\"t4a֡u��t1�i��>��}:��@��\@�
�_"/�PV�`�BA}ii~fz�`{��_�������s����h�
�P*�9x0�m�
����ީ�~Y�V`
��5qi�ciO��8x�P�%�+��(t�L��<���ՋWW/~�藭���ݽ�nqn�/~�WϏ�-ӑ��\.wrr*
�g���_d%�:6l'p W�;���K� 6���'O�|��g؆7�t�~��\h	Rof�<[���T����ř��.���������O�ʅ�.^��|lh���:@p$S�*�$*��
:���[/߻s����V������������s���Q�	9�!iL�c�QP΀�2�,KlL���	t����>=;7�j4	��M��w�İ�i˞n;��E�Rl�T� �/���_i����q�NE�*8F�V�L���/̾��(�C�gv�`B2�4��U��n�Egz:�>g�H�ċ����,��Qg��8�;q����y�E�DB�NU4�g��(��w�]5�nOe��\���b�T<U�C/�t�%�0{�&w�,�����L��;�n���\�Z�Ȁ�ɼ�Ȭ�ֵQ���!a�Lӥ�1*w�N�UB��=��A�ɊZ*�Ϣ����X�D�w8Q�[���j@�i�v���"�v6�~��WQ+���G��n8�5U�̡m��rٙj�k��Q���������2OD�""�#�$�RƪR�$<���cpi�0p={�DQĒ�e;e5�ИhZ#W�Y���e��a\9���c�6d�"'NO����s���냞a�l�p��-'��h��p��T���J������wn�৛��d���w�bC���P����YYty�>w���/�gT�V�t��7jsF';�b�R�7?�z��~��Z��|���3��B^�q,���\>�/
�=	�!��~��[�������~��v�S��CvB7�Y;k���R�Q�1˅�gO>::�h�O��3�[�_����O���n��I��QE��`0�6�G	n�w�x�믽)�Bs�y���`�T�W�<�i
����9�=]�r��ωB�.��(�l8[A� �n߼&+B���d�	
�N>p{>$�>�&DރT��(�s�L9_.G#r�\63?3G����4g�	���Y%��R�:��>��%~��A��7��#�ufb<s����
mV.!��a�hS&{Q�0��'�&�d��fSv*z�(�jN\���1�0��8��"~�H���)�m"��Xtb������5�y�X͕B�4��<�8ygh\�G�
�"HF�EE@D���s\F��
�R.�K�f�s�FO�l��6��n,-˪$gX�l�.N�
���r"��Lj�9#��n�����a{�,6���6�N��(]
4�56���ޜ�i�Mۘ�[����[}�p�ư�Ϳ�ҥ�vw<�4�A��(-�x���Ҙm�LJ�.���Ł/�*nXK��'Z�0N�%���&D�@�
��{,�df�4�]/)Tc�a�O�۹8=_��O�D@���B��ݯ��w?�yW�T������k	~�[�仯mm�wO�n���������ZC�K�<���n�o��ӑ��d��7.�.��<z<�P�H� O�<D�Er,��n����9��(S�ݡ����|��)I���43j�ދb��xqz�����Ǒ�±��
�]N��F���.�A`-C�9�?�G3�yEVM�FH4
���8	_$Q�9�N[fw_�4��BƷ2wP�n���|��k�7/��(%5_l�NF�P"'
�j���3�A��>��݃�c�}�/^d�h8��>�G�1�c:�\��T)u��<�q��7�
�D���.D��RD�=X��Xx��e�sӳ��0$m����
�����p•�sS
���[� ���7	X�B���D�/��h#8�A$���U�2$_d�'jyX������o .?S��`:.�#{ɀ�M4�`Ә���I׏�u&�ͤ7Gb"�9S�L4KT1��"�0"��!�P�h�3D����DTy�����F�&"�j�\*��L��[1�{ !M��),�"�k�~�	�)'ˆk�n�&�%���KǶ��P+�z�P�ܸ����?���|��J��Ȫ�؏J%ؔ�z����w1���I�����H�p84�٢}z<�#��ȳ��vw;��\�+����{�J��9֊�����Ǒ9vv��E6v��r\[�EATA(˪OŶ�N�Ȋ�����.$lK4]H�z<ڍXkH�;N�#	a�B*��uxx�r���6P�"�"��9�����T��m��!��H�$�/ݼ��������ɉ���,���cY���Y�._C�R<S�T���#�?j��+9u0���(�ye����y���P�Xi*z��=��2췚'��\ƴm�ҙ�̪,�@���t���W>�q�w(�Bo�����F/�i��#/B��1�C�jf;p#�ɫ����b�h4�޵-�[�<�ư�2A��8�7Bs�\�5���)��&G������~p�;��ᵥ�.ܫV�z�5�v��
���3��K�
�|���F����pXI
(<�J����3��}DV�t�x��c� J<V�A��/_�1	.�6!l9�:����r�%��a��H#D�o���ۃ�UVdx��㒀�~�z�l�E�x�K�W_0L(
��HRY����Ӓ9M��'��_h&������jx0%F�@\b�E�4,��]!�@4����<��՝I�R{B�O���t�D!1��P:�	���� i�N=1�qDe�E�(����%K��T1H.3N�(H��h�����єL�T����N3-�e�}�Υ��϶v
YqZ���17[Ȏ,�5��2��
���G�ГdU7�k׮^���p8Bκ�;iC�ƎI4�ZDyk$f�8��r� )��v�Ū��y�jE�6�����w��<���B�Xr������­����>lJ��j��4��B�uH6��z���r�ڰ-ױ0���,F��_���,Q�H4�b��h�V���:ݱ�!�V�C�8��ΜEFX�a}Xv4-�-����{�n�%���v��q*�|Vl�\}�ޝ[�/���?�Q,rm�����K��3��h���v;ͣ����
ss<��A�
:�s2�UEG���p,�rƦeA*g�v���7,�S7����znQ�C�eE��eD>#w`�ԣ^��l&pݩB��{��q�=��ި�\>W�p��&*����GS��b��ڧ�\njv�"'�6�7�<}�	¹ٕKKϟ_�,wm����i��*dx�L&��a�O�7�6ƾ�1�a���SV�a�����f�����T�~�5)5��Pd����O�i���vI%��X;�Q���e�tk<��NG���oiH��8%aRt���'�!�2�(-��/t�&�s"�N��O�3
��K�M��㌹��#o�죱T�d�$���!�7jB�gD.L�I
Pc�P�=mGN�&Ḻ��t���-�&'E+�d�{�8�%�Sw��}���a#��8J6DGA
M��(llK��8x�%Ky��
۱L����X�0U+Ӂ� �e��P��Ā7G����?�X���Q�a��pp��x��}f�+��Q�o VG�m�'SNt�dAJ�;)�~�~y��+�l���0���_�Tz#�i٢,��Ec�]��v//��m
�����|6Ұ����5���cf�������+����i"�-ԝ��G�҆1�N+���E��x���c��]�k�ۼ$
<d(���7��fT�q/�.�v����9�ꕺ3?��{��a����}��11�:'�����!��Z��+���K+�+��Q�¨�S&�)P�\�*�<�8�z���jC���(fdH���CEt`�:�E�xֵl@Z��S��l���R�����o|���;��>�x>�8s�p�%�c�R/W�����;w�Ä�ͦ��!b���BѰ�j.�X�ٖ�ň�掵�o��׿r:��G�ޠ?6�J��2~��0]���{�[O�??��l^�d!����;���Z��yh��!*+�s�[��p���p=[�{�h|�C�{�s�y��t�}�i1̰��[.�W���"�ˣz\�2�'/��tMW�ކ�`9��+�4�֣ʽ�b
��dp�8�"#��`j�NJ<)�41}���b=ENg�����^M��x��(<�LO�r1�<X&LPPH��$�&&�(
���Չ�A����+����0�=�B���i��d.:c��mZ���,��x��)����cja��eHv��T���&]<��A��G�đ��YFT�ן��O�_�r�Z���7�U��w������'�^�8I���驥�n��2���uÄ4p~vf05ON0�+!�c���*Q����K�6]&���狿�x����Ş��m���TT�T�LnMU*~�q0[
�{�z�ESp�v���N�ǃWΩ��/�{�|���B��[�
�D��^�arb�:%��K��r#����+莇���7�y	�BG� *Db�5Ʒ�2�dY޹W�GG�a�<_��Kw�ߺ<=w��
H|�����?�|��[��N:h+�B�Pj��m'l�ʫ����w�}����5l-
N��rAP��;C����7�ѱ�k
RoY�w��n��o�M75��ʳ����B�4��Y/_��{�������.�z:H�!�0�ťFL0F��,=�̍���n�l9�A,�k�|��~��.$u3��HӐ'���%q�5[��7_}��b`���v�����LAVU���<[<�􍶡JC�7�R.�Q:��v�9���<�n}�9l����,�/Tk�e��/\�\��!�����<�D^���
+���=�t�..@D�z� D�h'"�%x��N��|B!��8T(eB],�Ew:��0��J�0"C'��@��
Y��t�h)&Jxt���v�2��fo+�/Qt��и0D'�r
��Qn�'n�6��C��@ؘ�U0�jF��DHR�i�M>2����RB���3gb(_�өG�r��D!�@�$�n$&��k��ii3���4��ᘆ=�.�-��T.��K��=|x���L�
�fc�}��g�'���n�K�2���g��o��u��6 �ӄ�RR��n7�YA��"��d�p�,��"'d�����'O�c�u�����o4�~o�2Fpڧ�SO��C��˟�'[����p�^��?�yn�4u<jeE��_�5�N[�moَ��ŗ��nR�J�2	ݎ��	*"�r2Մ�x���Ñ�e���m[��7+��EQ �y��CǤR)�Y�o|���f=���w<tᔆ�iݼx�O�;���𣭧�	�u�֕�Bi�1[��ڧ'���c
�e@��LJ��j�X���?��=�G?�Ѱ�>>>�\�e�щ|.?�A��8dnli��O�l�@I�^��(ez�
ڇ��cZ7�DJ��8�6n�xn�ëa@��i!#r'��g�kG������n�\��DQ�M�;1(�
TI�4�ΥK�޸?՘��r�ǟo<���k�B��w�J����?Pf�Ӌ��T�$m�������:��xU	]n��T$������#��
����D|�2,�㘤���$z�?^MӬU*sSu��ȏ|o�Z��`@('@=xޝ�=W3͉���/ �^x���YY}�Ŕ05�L�V�)��b^��L��m'�)��e(��wq7����ӓy@&m24u�#�k<��N�Z�Ȉ������I6A^��8�}��9�8	d'���L{�E����!\C>&	� �S=u&5��A0"�^�J�a�͂d�'�~L��q2�ä.�l*=����Z%���$��|�s�_�zA�͖���nsd;�Z9�����l=_XY<��V/^��Ώ��o��Tckwg��!��f
���2�H1�*�d��O��rVa�T��z��q�ȉ\�e�/p�Bs��[�\����˙,-T�B^�Ď�}����*�1d
s3�lIul3�~��H��������^w���0�4"J�7	e!��'���7|�����-)�/�<�I�c]����e�sQCv��+�4��}��~��,#=�kY������n߸��{׮])�מ��n�Q�ꃛ_�Q���0�͈���A��G�{����^����-��Q��Z�oh���K�܌p,6K�E���'ʆ? ��#�ֽQ�{��7��O?��Oi���]w<����ɼP��]�&"��2�,�O�L��[F�*W�n��<=9:<�����ھ�bzD�s�
m��<{q���8
���A����Ű�o��o��oB����4��y��r����y^��X� �6�k��Ks<z�GbJ��XGC�#[&���a\υ}�=*��u{���랶��C�X�>h���Ca�M�-��\�(��n��	!�"�3��t '�Y�R��/���	��a�Di NM�&�	xV�.��/E�C��(8�l�#�7��jL��\-֐I�H�kő�W�ԣӗļvd�J#=&�_1�Y��r.x$�N���<����D[Zfb�L2f,�@�2�t�B���*qX�*�(����3' �#r
��tz��K��WV.��#1�z�'G}Dz_*��7^��������7.���I��f�n��O7v#�7o34ǚ��qR�ATl�2&�LH��P����0fܠϚn�A�%7�d3.�ݟ�ݐ�^&q���󲨨q��^��+ss�(9��r����8�q��Ь8U����.Q�)�i����Ŷ\��/�\;Fsd��7=�M��<@�$�J�:1ү��˒�(��c�;t�gU����c!�M8B_}���WO������B&>:>�/�^�{��w� ~��#�t?
��^��R��ѡذ:�3s�L�{���2c����܏��?ϕ�q�:�6�Kr<��y�D;6d���
����BJ���S\#
��i�n~7���(�q��|�=5�.D}���,6���ߋ�@�pj�^��?:=�`��U��8�/�Y���O�76eY���+OM/�.��|��Ǖ���|QE2��������`;��j���b4Ժ������̟���Q�i��
7�~��n�75���K��+���l�l��w��Ƥ���X��ahY|��_P������<�\7+��+�2�,�Dxή�L�,����Ҥv�G��O>��B!�����CIi��8���'��	�1�Ū��$�➒�3��ݕN�[�T��"�I����OO����4y�d��"����rL��.���3N'�m�� }^d&�c�E���HM��#b4gǥ�R���\�P
�ԛ��6Ĥ{y�yh܆O��B��8z"��l)����K�޺�����}��?���o_�-�?z���}r��8�*|qf��W^��ɣ�n6��gϵq����ƈE|K�w��Ԭ�d��y�Cu��-��9�
�"b�k��>�1'��Qa,*�\�N-�ٌ>�]�|�R/��nW��ŋ�m;�#H\G�����ω�{i�X����4T7�O�}J�#�䘧�u��@��7-\�8�'�
��y��FR>�EVl!�� (�@,KC�\,�p� ��Cz�X��F{w�g��嗦��_|�˽���18��Ņ�[/߾r�=6�������'���;�L�UE	����<���|�y����sp<�i~��M�����.�B�cƶ��|�z���g���}㛗���{+b�t󞮍G[�Qd�p�ӵ��+�bol���vFΕ�EH	G�h4�/��W^{�¥���$�^UL{��5]��+$�(���n�s�g���3����w_�u/�+�bz�A��k�ڝ�_�w��k�v���=r/�-��p)'��{��"�Ǐ
�
 �������H`�][i�K��1+z�K3ɠ�c#����#<� lLO˙�I�5��<�G����7*˵#�����))����A��Yc���(�!`վTtO�D��N"�d@7�D=�Zq:�(�E��w��E���yF$�i՞MFb��D+E�:��J�&�]�&��=2�G�����N��1M�e,�'�K&�/�U��7Q��D2���ZX�N*��z��I"���%=���DU����Յ�<weavE��&��M��G?��B���~x��n�Ԭ�`��bqz{�V��.L�|��W?��ߍ)T����2�,�1-PA��x����=HF�i3G�&)�0H�Xd��Wm9I�H*�!!_-�}h�^-1-���P�լa�Ϸ�������!y$��ټ�r�5���r�Q�n��TQT9ڧƒ֘�D�e�61E)�X�K�q]Ρ?W�Z)M
܎%�d��P�/�(�制='��������g"�|���j>'ҕ��勗�~�k��HJ�ٓg�~�вm%�+X��h( ���<<=v}O���h C�$Q�O{���Agg���Xd!+G!b�U��h<;���2��{��w��ia�B�	�9<8��|��?�O�,0'-3-g�u�?W��XY��;�|k~f����a�����ӳ�[;E��KB��34��`Ө���2��j�޳5���mE↺��׿V��~���=X�Z!_*�Y.��U׶vk%���؏��u����	R�̪��'�^Qٌ�a�݈�������l�+h$�<R�))
\�;��~ɢ���j@A��}clX��
?�f��
R���F�R���R��r�|RtO��'�	�*�X��jb<3i�gvrē�I�_b���Lj�$�i��L؝qJ@'��8�Y���Q��p�dR�_:&>�t����F���b:��'�8�$H>�d�:�h%-<쉀ǧ�h"�EJ�ߢ؇�{+��A<MS�C�U�^�d`�!�I;z�\8J�Q��1�f�w���Z�ڽ��L��ϟuNC��|���;Z�t�q�>��2��駻;� UU.��H�1|9���q��F)�_�kw	�/���p< �)r�3�md�����z� $ړ������qm���*2��΋BEəHP<Z�:w��nl���WW�m�l�-d�	���Ͳt�`H�Y;�b1EHWÜD�ڭ��S�oy�<P�d9�w\�to8�.R��Z�� r</#5%��;��w����b����?���>z����������(>}��nu6O��`6�68D/@�,��{^���6o<ˈ#XH�i>�-B���
�ă�s�^>�����]7t�n=����?m
�~_�٬Z��3S��׎O~��ɫ�o~�+��Y�L�Hb%ʋ��KWfK՝���x8A�O�3�{AC`�ga���|�;�r��:���ֶ��!�gr���v�����ˋ�ݹA����.z�Fw�vn�l N[�
�(`n��V�#!4���#7<�c*t
�"Ab�hY�@J���Q[�CB��i�V�H�σ+�Y^�$)�@n�����\��2��*�����e�j��$j
�֎������|��L&��F��<&m�M�t��}N%�t�81�za:�E�,:-���b1�"��i2��&{=m$�4M�A�t��F��&������bSM<�4ޥ��4����̐�~��n|�GL�IG<h�Z��H��%),�u?b��;_�Ʒ~P2����|m��4�{��ja��\�5��"9^-�J�K�C�9l�E)���l٦i��e`�b����"w;��ZD�Ѱ�tD������!�$p�h�?cT�"��!��ǁ$e][wQ!����JA)T���t�V�4�vzg&�C��ۦy��H�kG<�l���I�i,[Ȱq*]�0l{������<i����W��yp2�g['��u-
&!�J*�`�`���KG�s�nwwg��-�2���Jŭ��j���u��n�u�����_{��s�������� 7�%������,\�f.$c!6�3o7$s(r>�Ep�p4�NR��+@�C΍�
���bmfj�������grwh7�?���G[��U���/��R�jvZ;��sf�b����L�*1��6!�B �g	љ�gd��d�>|�z��znUw h���u{�X?7�07۸u륽̓_��Ϟ�=��F�?3b��ʃ����@�!XǀH��v��Q����l+I����pq`q�
℩��IJ,+�B�_Rs�B)/	�r���LV!߄�VD�:i^)HɑpE�oi#md�\��9����4m�҉<��tO$��l�w"Jh��K�<��$�b&�tBhN���@�׋'�f�(_)�K���k8ywd4%��(���$T	T�"�ug��&e[L�lQ��G�פ�DE&=ɨ ��0yD�qS׳�C$7��QL�l�d
���!��q1��t+z�����_��?��g߼u��+��
2�2����\��/I%Q�`�p����zO�����Ny^U
S����43���'2F��.i:�ɠ>��gI�T�gB�
!e����19�ŐXťx�Fӹ��$\b�)?�������1�7���$��8\��o-���:��ᱟ�|\�?ܱh���Pi� �T��G\�b�`��8��t��a�?���͑�~2����A焑x��Idu0,�FA��c�B�ux����F��4����}a�66׶v�O���?��o~�ӽ���[CcT*�F������ߚ�����#��,SU3|�L�v��ґG�:��j���F��n]���=�R9�h�R5��a���w�B�F���8�!��E�$�??>���7�d��g��l�ڎi{��q��0���������}~�k..�U
9A�z������f(ָ
ü����`���}�n�3;�2U��� I'z�;�mPh���U~}�m[n>�2۰l]Qe�
 �D����h�P���5c������tmzc���x&�1�bxtaU����YU�p$�bF��3/��N��LQW��L��<
�^d)	͌�k.�GE���ׯ��J�N)�]�K�R���ĺ&�h)|INQ�Ψ�(̙��O�gR���ʅ{�l�Ҟ�Ŝb�*���L$c�è(�!n����D������­��d
O�^�*<Љ�)Cfy��F0N�vR�+��#�*WGD���'����G6Q��'"�i�S>��hv1���nu��>�ʫ
I]���g��^���88d�œVٸp���,�wZݦYO��U!�/���~��K���/�̈��dc��%�հ>�"�1BPH��QX!b����!���ɺh.=jJ���g�֐^�RFL�ƀ����^�ˆCs`�#p>|��,�;A:�����o}��k39ӗ3�����j�+-��Ԕ�L6��aUV�k��G�ݫW�_�����ОB6[.��1�)����H�,v����Bӊ�(�t�޸qjo�j�;��?����w�:��@-fK�@?�C��{[͓����g���:�"K\�Tk�<�����3�p5���V��_*��<�4l�W��p>r�I��͕$��ߔ
��ۻ{:dבm�S`�W8�!�Efp����J��a$0"�e������5O�;mM�a��\��������!���TQ�\&'p��#}��*������YN��`(a�<Xh�d��9�A"W�/̯,w���'Ov�v��TUU2�P����ʪ���j���o��UH�7>y���-�B�P�Y��t�È�茅�!|D�������YI���
2,$]-����4D�n��-3�Ƭ����y���t���H����w?88�a��2.����D�RY�IT�	_�̤���I$©_�.Oj���3:��%��D��I��Hi�@��p�i"��8����J9��G��� ���	~ݱ�:��!fTӉ���|
C�"�,�
�4$_.4�8'�a`%+���F�9܎L�UH������lhFB�;�
YYt���>�����As�5Ҏ��\�<�kZ=��� -!p@��
"݊��F�\(}�|g�z�a��GGXe��S7W�cIB�:pRD:`D02�����L��t�8�e���.���q����ũ��OK��N�p=�wER�rk�����j,Gٺ'~5'I�bq�[�6��!�[�Ns4��O><e>lU��%Б��$��S̛K����G�B�Zȭo�3�%1_,z>�(���8�j	h�w񬈀l
P?4�l�]���Lssg�?�t:-F�l�XR�`q<@d�0-�5}��@I��}�|=pÀ�X<2-C�fxA���1\F�	߮a�q� �i��;�S��h�ƣћ��7����u4N1���!2t��C��V�8�;W����`Y�B��N�X$e��a��džV.��k"�PͲL�� ��
��5%�Ҙ^�[��j�9�>���4&���3s������O�<�N���7�����F>-	#˄�V��^}��RF]�\�G��O�VU"�{�<;�u!+�J�6������C�4
/5�ϪyX��|�}B*�j��K!O�f���B��h��܂a���xafn�6y���?;8�:l9a��|��v	��������:�R�SY�d�.N�l��z >�xJ�k�tF�I�^���;i��̤_G��T�ʤ)��0�h-�b9��S}�.`�<��*-'$)&u�O}�4!T���
I|��r�\Ok{	�B��(�QE-��Y���X�ᘉIIP���s�)�z���hV!:�
�ǎ�𣇚�}���Wϟ[(�5��2[�=;żi�K��f`��f�����ͱeÑ���뵩'�k,��^AH��nJA��._�l!����GF�6��!�s7��s�_�zg���y�c��ܹ~��ʌѾ�;?8ѷ�������m<3=W�(�bQQ������_o~���?�����S�Bm|��=�=PsQӢD�`]&.��}�������ݾ�X,��ey�f��V}�T�I�Iw�Yv̠��".�Zϡa�j�\�Vͫ�( �d3jQ���8�ñ�
Gx�L6+��B�q��~��ɸ+���
��|&�C��4�_�y�G��h�LM�-,ۤ"g~��0��h�S�|*�?=]i��׾uzt��%At��ݶl�L#�S֣)Iᇖl!�/Vˍ�ȏǺ.���k�R9+)2tc g���Xh7D
a�k�*�</�V��f�	bȹ�s���߆e~���I�x�p�^*����K��g;[��kI��wXY�\�\P~��GO���H��v�B�G�t
��a�
9)Cq�DH=Ӏ����͕�o^�Dy��YE�ѐ`9����v���.ϋ��Z��0¥!�B�OtD岐A��wwO�#5����Ǒr�\!]B�������w̤-x����H��e�U��1��4ܩ�Y�a?�^Ll���^�0	C�G	9+~a�G!x��|Bb��x)S)�O	P������A�E�+'�E.=cdp92�C���Mb�n.O�,ROdqXP0����$K��e�؄��r���+M����5&�S
a2���3x��ذO����	�j������W��c*22���}�ȶ�X�;���]��]�*��-�^�7Җg�<|���ј��"FL�ԫS9&~0��l���v�������+�:z^z͟y��E��{R���:Ss�A�\^}�w��� ��*YY�es��@��N������O�|����K���Q�Q!C"����b�DlK�C�UUI�Hd
�F�Z�}r)�`<pBaR��6 �Fy�7,���׎$\��^D=>�
b0�\^�Ȩ	շ��x`9vLG2�7��W2������
2<��^+���5��T�?��w���p��Q)Ua����T��N�E���D[\�C�M:���g?z����ݯ߿�g��?i���:'�\NQT2HQ��M�!$dYEV��
��D�t��3-DH��yY�)jF��A�k?�ȋ��?>�Xb�J���������~�˝�m/�}�Z.�س���hoc��ش]���yV3txױO��LJ{�kB�
��t�A���2K�,��0�-d��VnE�@N�;�c��e�M�<Wk��Ko��z�X�9jVSG��pc<öPՄCj>V�Ø�+*���5����L�[�5�%���r�n[��I>�R�ߔ3iӡ�	J�	�s2
M'���M�tZ��d������C�Г�VL�i�I,�&�3�]�a�R3ij"wEfb�+�	5ܚ���U2�L�E��w'�)�+�˒�"���V�x`��17"���_�Z������$;�&"^X����_TD�PsJ��������1��a�r��۴ÑfUy��%xד�����͵�(_�K�H�<�$6�4����|����vyv��ݲ]3\I~
��#�E����5���>:��lY���'�=�
���V۞����V�ȉ���k�/�y��R����O�,R�95��QhZfAQ5��e��"�Y/�!qX.)����'�(���+_y�63��٣x)�9�$
4}������ A�~T��ˍ��>z�%�n6"��ިU�O���-:���N)ʵ������.O�,�7ī疑�;6��|"mRqFV��6i�a3���X�>jW ���M4uE��h+Q���dd�������:,H���A���];F�(}s8�4������p@N|(܊
�0T���>���I��P,�Y	>��V�lH�=}<�Wι�k����h����<\��ڵ�e˶[�V��=�lˮ��9u���_N���<�AX@0�� �*ZeWY�~إ�lWٖ�bі)X��A�I���Mx�R��9�O�^{�s{`jB���s��kk�o}_�1���ڼ� v�ݥ�0-JB����������z,���um�1�4�o��5��f���{���ٚ@��E���4s9R�Ro%��뛭~��dk�4k�F�݆}��w��	,���$��hf�=@'��C�<E��BpΌ�.���Xp�c�Ng%����RM�D����
t<ƒh\��}Db���hd���fE��T�
E\#���ؙ.�gF1�IL�u��T#�T˓��@X/Bh�/V�I虸��V�(d%��S"7�����qa���Qq%�S��w����kLu�Ꝩ/�`/��9E}b��5s�ۂ*1�+��h��t$�C8w���GсN�z�sc���惕�{-��^c����Є�wl�gY�Di�
]��{�^H2�c��ò葡9jS�(�@n7�����|}e۰C8��߷ܥR��J?rrq������'>�q��~~��o��/���{wL߹�ZI�ٞ�qt����0'+&`�0�NL�����=5�-������h���x���
�J^!�q}�§����{��
�)������y��#AF���,�h�_�x�7�{i��w���J���!S��7�W	U�9F���@ۮEsTEQ�'U��,Y��X��ɲl�&�!�dd<R�B\�LF�����?sfR���hwз�:���8Q�%�!8u��cO�YE
/� ����~��.���W�^�j�xAD!„a2,ͳ��� X�ó�H�?t��j�Rj��Uٶ%�X��.�"cyְ�
n��#�rF��7j�g�ON�K%�r����i�
�r]�TY�Ũ���+�l$k1�<�>�itݶ���B:�N| �$/)�G#�:��[��~�F��
ᑥUU�#���#�P�6Cz���
	BR��鋕Ruww}z戚�)��P��RY8�N�����y����,��KSL�;G����YC2�rh�~(�>�Yyh��KT(�&b��%�؄K��9�`N�CH+q͡?�-����s�tȸ�Fc�@���X�1dG��x�ז�C��إ&Y&�V�l��]��n����I��V"2 ����Aq��
.��|�6?�x†kH�����E(�=��'�'p�ڀ�B	!�,ri�#�O��������3�h�^G�LN=��ϗR<M4��e���=U�s�3]���Q�wC.�B1���G��V�5�i%��6a#Y.u��J�w?�����}���������NH������>v�_������o�%ȃ q,S�AN?>Y�\ڭ�؎�q��,�� 4�ۆEƣ�z�ч7>��dd�
���O���nj����z�3<��5-2YUT�#B��mѲ~�+�>��7>���驳�����]]L)R���D.��9NJ�NV��O6z���t�n?��VR�wW����_}����fF�HY�P,��pŎ<��}�;vz-���sr���wi[�!}�Y�ɨ�#��Os�ǵ�-L3�U���Ҏer"����.E����DF�q1iIS�Fm��c� ����3�\�ِ@A`���<�|^"�T&HS�to��@N�>B�U�s��<x���b5�u��b��v�o!����!=$y���E��P��t0���\:,+d�h�rs�
����9?�X�V$ABO�Ux��I8L���*�<�Bmu��`cw��мCs���"ځOw]�y���/�RYoe��v��&��5x��MR �F32�a<
ᐉ�y����
���Db͆��wb)"V�C%6:&sb��L��T4�͊e\�V<�H��Ă����aR{��h<�G�F�1_
5�&d�;J$*��މ�����O��,�[�����P�'��s:I������FmH�١�8�]�ʮGC�{M�J|�K]�vABD�b�>�KbD�	�
���ه{[��88ʥl�3({(���dX��
�//NNڮS�f���E�>3;�G?����$Ҏ�1�au��@�X|�$��N�����A���mm��[�B�cn�:�z���%E��������8B�,�C?��g22�λo�rn<��Ay�lZF� b��&��ͥ�Z��X�=g�]�'�z/~�k�A�K��,��E"��]`�4[]��8ָwu��5��+AP2�̅ﯮ׺u�1!�[kl�j���JX�(��Q��T����{��
�w�9ud<[���X+�� +�n�w���YN�ؐQ9�(f^��aG��2*��A�=��̧����UQܳ<�^�C������'�X(��J\�_PS�m7,�g��*��,�����2��$�\. H8�L�d��a�S��۾
8���+��pO�6V}ˀ�w��#�O���t���r�P�����\+�%��k��{�Fql�vI�Pe���e�f���e�������fM��rp�����y���rJ�I�ȉiI�́�"ߦ+Y�c�p}F
E���r�����L�3Y��n޿ÄLF�M�����0�h��#y�g�a�;+��[�&�]8��=x"���ÅS�s��G<�8R�
xb]9A�s$L%�aR#G���F�&e�>&쇑���˜ҍ�щC�e���	nvX�
�I�]�`�p�tb=R��a�
��
gjI�O�IHF�j��pA��`\M��8GC
đa}\�Gᄉ	�x~y����H�VPb[9���3=�]���S���8h�@�sU��|3��� �CJ(ف_�d/=�]�
��YERH��N����I"�������Š߮�E�??�xY�-s���;M��z��X�$p��.��*M��^H��,3I�{x��C��[[��>}���iRv��.x���E���tJ�h��X�4zbF,������n�_�w[���%��Ei�� �{�f����vh�9H�
s>+p+C@3�h��J��P��~����o}��l�����+V0tq
����l!���5����8��@���Eo�~@��7>�¥��BJ:^.�m��F��I�}��1Ȓ�!p8�di�o��D�s��X&�H��DU�vdU�5��i
S(MCZD7MW�-;���CL��^�BQ
��گ=^(��	z��Є(��|J�[�l�ȏ ��M���a��Z�k���ը�%����n8���v[el�˩*��!�\�p1��>��Ͻt����~k�-eU�jm�,�U��e�	"�qR4�ݗ^x�����h6����T@�s��K��ʅ��î3t�+���G��i6[��5�Z�쓐�˜�VVQ&rǴZ-��:�'B�@�8����N�0�z���0��] ɊE{��n�e������[�?RI��-�6_X�)�%?�)#�h�>�,���)������������(]�ݰE��%�X�(�':�8ҡ���n�H�&q9�b����"#n̅��6�@�޸�߉�#2�'�^��B�;��b�SW�j�AR����|̡�39��C'����h2$�9zz�!�ģcb����q�1<0�h4b�I�${`
`q�z�~M!�dt�b*�}MG������4���[R���扉\�o���v׆��`�XӲN;����!#I�H^���p����w�ݐI���y�܅s��޻�;�Q�k�\8��˟zx��"s�a!�}s}���#��Cy}�ǯ�uo`��C��� [H��i�ʅ��3ǯ�nՆZD�|�v���4��)l}�̥�����9��N�b�I������O/,�.3V*�OL���pkl<�۞����H�MkcW�`E`4�����{������d������k�s�[�;��,:��dx�Zy��駟yB��^��U�,I�Z\�mw��pl��-��d2� 45ɱ�<�"���smC��4lZ4tIQ� �%P�L.7t��o|�
�k;��V
y�q��
�ń1\��G�Eȁ�@Ϟ�_�.�ʴ�=YR]��/G�wlLǰlH���_�]U ф����£.�lm~,���5m��u8
5}���<u꽛7)N�L˃���;:��D��w�^�O3�g{��PEճM��ȥ�*/I�m�UJ�.�vۃ��dc�	�M$֐ d���2�~���lu1].��0*��L`���N�ޘ��\o
��G�A3];�tK�v�:{dn�\(����k�V�ס�|�F]��d��A���r�0��ay�[��=�Ġ!�	�S��ј_~hF�
v\lՉ�Ѥ��Ẋ���	�}Tî�DHŴ/DO��VL�'�"a���ai P'�E�hT;�I�y�M�z|�p8�H;ĕԤ{�s�$����-车8,'!��xR��bE,4���b�)Ca�9W�a#-N�2��>�j�4zK���s
��3��)JRh�<�:�Z��Ң[ݟ��?ܱu`�:R�
�ݞ�����ڔR�0�F
Jw<�=�ۨK #����ri��g��o}��̵Fkx��捇˞k·˦Ӻm����c����ƭ�{���{�3�)��x�y%�\7�r��M�}��k[hYv<3#g>e��㓒���.��{�ɗVo��n��?V�^8;�
���~{��{�Z:��W�~��TU ���i�q4MG��ѹ�(�TŴ
��ı����o\����?��We%oe����޻��D�2S���3�<s��;�n/��+M��=�ˈ,oX�L�||�:71��x 띞A�<�G�c�|�ly� ʸ�0�5�D�/�9�w��z��|C'n�<E�	H'�E��FX$E�	��n[���Ү�u`e�"`��&vu�y	��Sى�P]�t��AG�$J�lys������4j�aÎ�dKǟy���dh�̍+��B�K��f�m�.R)��R6HXa��h^9%�S�JAQ���O���u��-?Kׇ;?51%Ib���%��Q%�1��D�e�a-��;��7��f+�ot�M���#�6A�͎��D^�f��~��<�\4�I���i9W��YB21�?���}�����H����@�;�Fc�ġ z5ǢDi��@{i$�0�-�CL7���XB1�b��hp8.��*���1�%�a\S'b+�����/4,�e�C�/,�`�8�($�AL]p�*��X#�+M�$Ϙ��94��H�	5�+�G��rٔ"i�>�9D�<׊9�xmhj�eq'9�
RS@�,C8"��Gke�����֡����n���vZ��֌��_3t�j郶�����#3sH�eo��(V#">���ol�:JF	�2$!�r:W\]Y���w�����vww@��M���70�`0xni�ٹ��u�mi�����?Z�޹��VʤEQ���j }�[9��
gf�
��3d�So��.��?��������ރ_�U��Z��]�:;W��?zn�ѳ�{�׮lީ� �˼0Y(ֻ]��)�Ng����|ȥ!8�����n2��l�Me!հ]�*��?���L���|EQ�}C_�u>�9x���?~�^O͟<s������{�f=���NNU%��ґ�كڞnY6-�7:�S��|~����6�}L�ZcQ��|#�>�$K����[�v�3D��|9PA
e�rh��㢡
��8�@y:]ȎKR*W��3�<ZN�iI�i��g	��C��j�'�lȽ,Ӷ����O	�g"�Z*�Y8ֳ���ν{�ﯯ�"ow��=��O�]�
��ф瘎�$yU�Τ'ʓ�d��������`��l9:�#Ss�c�v��tmY3d�BH��#1W[�\�PP�����i��p��4�,���tN�N�35@���[���X��adUv���	"0mV���8��E��?�X%<��0N�#gP�P�rbF(ч�c�lHC�xF'"����*�q�J\mFC���łV�(�G�#E~��7bV�Y�Xd}d��G�
�ª3gŠ��(��u�߅�%C�^-���5v*&�ő4.�cw�X�4D���7��#�/���_�Ae�G��T�����L�s�p8	
�|`%|V�X1�(��ǟ����@'
��;-��۩
,K�M��x�b��R�U�����L�Is��Ꚇh����π�h��)�bJL
Z�W�Wdmco������Y	�єgI<h�s�>?m8�0s��s����-d�	�^��L��
�Z�bi,��+�;�B:��J�P���W_��ε_��eY�\�"v�5�|��+����9�R���llpj����͍�f���	�s�P��t:�Y���GŔ�g+�6������PK�b%+�&KOη5��Z��Pk�����m���m�_����w������B9�Ry�H�H��_;����8߷�Z_I�m�	��X{��L��'^��Z����GO��;�a�#����
�*�#��	䓂ʐ�;���ˆ�����r��1H)9�)�Y���tm�:��SR�jH�(]��"|ױ�~����ٯM/�͟8>�Ͳ����/�搗YcR�t����톞绰P3�4��,V'����l���k��~���	��牉�	��p�=��i6��إh5����J�
-ӵs�4
������,o��΋g��c��!I�ȏb+SV�ssG��D�	�~�bx�
e�u����� ��I4��Y�C6;����_����&��Hn��C�(f!`0E�ٙ�!"6���d.��e����ӡ�(8�E��ʅ#5A*a���3���_R��9H�"�*��6 ��>f9�jW��p������uw7�B�F.����	@tsQ��q!J�0�*�%C
��$�ɢA\���±mO�X�	�)@ �#/��]N��y�
	��&�$AReYB���X.�+C:��M�K�sO���k���2�9��[�1�.�:�3���6��#�v�A`J8��JF�?va�r�����'�&3 �Ah9&\0l ȄS�,��v�Op�$@q�����o�3�r���)

�b��x��:��V���eul��_���m,[��2.-�F$+b6%+�oRz�]}W��&�ۮ��PMeh����Ն)9�;��4���o}��s�,BbFjF�A�㙬���9�7͎m���ԇ{�ME⏮�XnՊ������e+B�x��|�Yh���X�xe�2��v��:�Km~rZ�D��J��Ս�}�Hs�6�p��d`�8���Sc��ǫ:�o� ޥ��<�H�G�M�j�t��`�7"b�A4���0ҍamg+�˯�Z뵽�������~��f�۲,�5I�ӵ�
�ق��gg+��߽�ß�t�֍��zwk��a��]H:�Lafb*�
�=�#k"�=21�4>^ɤd�s�0L������q�;��'��������w�g�����Bq<���lԙ �������^߰uI`N��R��J%'p�v�S�'MRP3ث�;HʬcD�k����� �FR]Ը�a�v�"��L̲b}m��ڐ#�;�)�P�()E��|���
vq�<oN��Du3�QI���}BO%�$ҴC�'1��UE�h$��G^b��@)�q�‰2��P�."�S%rsOĖ��1V:�Q�}��X��P,�N�"��Z"g�`��"�9��؜)��SDAPQh�0b�v��FjXV�H\����G�A�̖3sS��6#�v{��H�/t�K��+AVˑ,�6$�#%t�T(���Y#���Q�\!O���^I�q?k���aШ8��,)�Xi�X�=�����m5��zH�"�(ʀNCV���g�9Y�y�6)��~��<�Vv�M��|>��"�!5�u--+YIUEeͶ��|9� �:�`��v�W-O��OW���6��m����]�]P8)+J�{�sY�q%���==;1�tQ�17�M�<�9f$5`<Tf؀���7?��Hڷ��q��a;�J�l����gN��27K��:LD^�|i�RY�Nνy��F��xnC�Vw ���-z��2�Ҵ"q���㥤�ƒ�����ci7�'/_Zk7���������NU߼z��p�j����H�>�Z�����檨��qH��I��]8�{�q}eR�f�����ȅ�z7�I|����7^^��l
;.�(Kd(�A�O�h6�g/^�̓O{�Z�U;9����Ӌ�
��?Z�v��Dq%�ҳϚ��nv7��}$_>��wo^��:��y���K'2�2S)��N?2^QE���L���ED[�,�V	���Pp�v�����
™�꣋Kd^��j9۳uS���>�ܧ���/����yo�v@�����$�T�!�;���U!1P(bY�G<
���5�ơ�X$z`)˘o����	�DA%�dl!;�O��02��~X�G��b�;*E�T��@a��X�w|�K峥��N	��2l�",\�t<���"��!����+.
`���H.�w0�>i-�j��#�t)g��N���B�O�A�吸Y�i��c3TDכ{�����"1��Du���u� �o>�G?&߹�Y��@�S��>�>r-T�B酇�թ,��:1?9{��
]�fI��3�w{c��������\�X~�����/fn�k����?��g��j;hH�� P14˧S��j�z�%	2�˔��3��^���G֑eF�zU�$�5�M�\\<�����$�~�7~���03[T2��0Z�óɅ��A�K�ɼ�7��ȏ�ah$s�7�[�B�+��jW7v��<�UO�?�t��z&��Y��Ȟ@ �tͧ���?����õ?&���m+����T��xމ���bZ䨻�nW�f!�(ڰ���kR��?3s�N3#�)�b�ӥ\q���.�2aD���o����B�7P�����Օ-g���w��ӿ��ڽ{�E��ʊ�oв�㈰�;�t��n��E	n6ڗh\��(#�D���Z�=�~N���!����Ez��$C2DNB>+q<@}���
ȅ�yH�&�L^�\�(p�\����q"��e)wo��� �856.I�����Da��)v�='�����9�أG���*���C���7�V��Zk�n��"�5�����x�~���Ϝ^��
���k����NO�3?���vR
���©?��R�tv���?nu{@��XD3�1��|ш��d7q��+�L��0{ y�"���3(��E�u�2A0����2���v|H��q��>$�S����b{x=�qX�g��a-�Z!��Qa��y����@	|+��25A,f�HJ�|.�L+6&��]K��L,z�;�8�`�M,/�z��P4�y����}j}[$9�
wF��H�^s��s@���0���� y�)N\������G�~�[IdX!��5:��z��n�$I�X����ӲD=xx��m���##���͈[��ḭ<j4!��K�]��5=���k3��������fw�T��F�w�`0z�@��[�oj��f��v�n�v����O/��
+vv���10-�1������S������[.��^ۙ2g��p�ۮ�:��	{����:�/dG���+��z���J���\�q8,�'�g���|�L*{ok�������=��'$^� /��z���M�Ybv�����Y!� �H�n��u�5vj[CM�Eaw�LP*�w��>�9Hg������:����M��}4��h
������l�[���PJ�B8֝�'f�>����g?��J��c�G���h���TT�_8��k�&峏���\>a�
�CZMR� A�
�f���7�bC��(�9�J��G2��G�UN⻀tzͧg'g+��Nx��F�?��~;b�n�
.U(de�ؑ%8��w�}׆Go~���-�s��(>��g
�y��7v��0xIܩ��XC��DQ�Ѐ8��.���–�����/=q��"������E�D��
�뺩dS�d���󼰳� ��x`hf ����Ew'�)��U����W�c���N���Ů�暣�*2�>�hd�@$,�0!�bzA'�#�61��x*�帞�dѓ�"�gm(��ɋ���v
B�eh���(�Z��%�he��@,���,�x�x�"�^o+~�3�X�=d;<�y��$7���r�`����n�:P�2�0i2�x�ï#DA1Ե�����99��k@�����z��86�����ִ�뇲��ۃanu&���,	@<:*����� Tam���XZ!msЅUγt)%���Qd���[D��5�;B�XI�K`�}V;�PDNw����_�ex$qk�hlM��J���χ��9h���AV�f%}�����J�t���c�z�:e���[�������c�y�Շ'���+ˢj�. �в\ςsր��X��ш��:�"�7�xx�.�f��J�x����.��-W��r����'��� �R�0Y(��x���~���
Y�����F��y����Z��h+��Yf�Ogњ�l��)^$B��܉������Nd�Г%֌�2;��V���^������P���|��i��RC��w�9A�ﯬ�6Z{�/
����Ae
"�$��$)�� ɮc{�yX��E�,�E� �T(��L:�R�z�961���i[�|l��;����n�������<�ȉS�=��v;�~ϧ5���U���,�'*�VS״�$D���o�}����~}Ѕ`��j���+0��3<lA\K�Dž�X/�̳c���G�M_85w��7�F������_��po�ڽm�f�=y�'Y�kl��7n�m�S/��X\���E+���j_R�if�T���!�H�#�h�D]�L����Cc�;3ƿ��[�O��#�S�m!+_"L4���Ed��4,J�磤qI31��Ed<��96��C�7TL>��X��Il�[R�)M�Dj�� #B�zZ<����ȱ�8�x����`z�l�lj�,�^�ֵ>�'`�xF'���+�x :����bZ�&�#�6!�����F����S��% �$�ry�E<��?:�.w�O��:���0���G3V��;_x�[_��{���vDz������J�7��&0�Vd٬�bhJy۲�ͧ3���tKb�ޠW�g�b�n��As��TL���={���5�3-7%�%5o�6\�D����933�2lI�|��z�\(�"���[�kk�\.�V\�Շ�?���w�Z��`��Fc}k�֨)�B8�a�j���6���"�ip�SH��>�8?�"@
��_2덺O���/Mͧ������˥o|�W|����1�F�v`{��N�]}��h��"�z4�$�^|N#�r,�Q��ܕK�2r�
|��ONϘ�������W_��n����V�顢'G�Oá�vP��w�n6o߾��L��Z��*>L�)A�D�eI/t�g�)8�`=+�B�lȲ�������Ly<�J[�������`8<y�BHG7��o�ݺ;0��"*�"7zݹ���p���=0u^!�4L��M�{���R���
�ɥ�!t�u�v���S/~���kzϣI�a��x��a�����Nr~������D���=���\��������w�ů�_y�`���*��?���ѣ��C�ӟ�����ɔ���R(�ѐz^����X��"�_���;s���ND�㽱�s�*&�`X�.�-3��{2�J�ȉD_G�(.�,�U�J@/��y����e,���O�cq�X+5Q_ Gvd,jlp� {B�/��Π��B�"��D���\���:N���#�����jx�:1+D\*̂A���?�g� Y�0%ʁ�
"��9II�;ip&Bf
�'0��ש�=�K1G�F�2�Ԕ�8��I�C��Dj䉢R�TJ�"�zV���,d�sRr�"�iM�2)�9hf|*�ɮml"m��ar�$�GGu����#yD��18L?�ѽ�L�!/p
$�<nk�g���=���[)�G�fm�PI����A� �g� �F���8��[�܄Ҳ�Z���R�eyNu?ޮA�J1L�6�+�&d8�)�����]��C���
��N�3I$��p�¥�������-H� ��v"�)�r�(��k��d�����v�j:�9��x��i�t���c�60M0�n��i��r���Xy����/g榯����xunv6t������;~�"�
��o��v	q`�F��3�a������|����u�6���O)g�n_��J�c����p}g���)��|WN�v`�H�
)Ұ4�"
�[*`�+�l:���{d:S/U���|6�Y��ݵ���F�QΥ�)�ґ�h�����r��	()��vq1 ��0@�cȯ��6�岩�KI!��Ο:~Ҡ�����3���I���>��OZ�4��Т���]���/�=ڣb���왯?�ҩǿH��N^��u�����I!HsZ������/~��G7�z��g�����Y�[�z���L>�lt�a;Z.Tllj�C)��E���!�"����*92<4����g�#�f<`�(��!p-,)�&��86�B�
!��X&����~b���;$,�0�
 
��"uh��)�Q�`�P�☓��#�{���
�6B\��b��8}D�Xg��~�g/x��c�4K�
Z����y�7����՟�{s��A
�l���=A%�W�n2�ْ�zw�g��`��B�V�$ʼ$w�����j=˵�2j�I��g("�ʥ�,���))U��խ
Z@��y�BA<�4wsm��7ߡv,G�,T�K��WV�vw�)�E3�(��eCΛK��r*����|������=E&E�����;M	Y�݁���R	b��&O���>�s����ϝ���V�z3�QL�m�b��k�v����yI"��(B�}V�W^~͎��G���/���B�T���}TN�y7�j�4rs�V����	H�xN�F��Y:��e@vO
�&�2+����{-8x�ݍ�N}�/�jFII��RR�������\�T
�~g�k[��Y��EA������p�dž����r)���u
{����3�/T��W���t�۳D&�2��.�f��YAR�Z��p�$�P��"���N�x)Y�/^̗2٬�X[{[w֗��t�W���/�˧�,W��s��"�5��G�T�p��I*� 1~����Ǒe���DX�wo�[�_��	��ߺ��@ӿ�����>���OZ��/<��������S��4����=9ǝ��ˏ~��G�'�s_�sſ������?��Ӳ��0�D�S�@4[r�����~��m���Թǎ�&����B�`j��n����X"���
�_١OxC1�`Annr1�|��h��N��4Nl�F��A���~�ڎ����gRVCiS0Ґ�b��0�F���Sh��G�-(��,��#��� v¹�!�7*����"%�|�b��an':m`�Fq�+���%�)⯏�^�>$'�k"��o�/�+_������׷����x+t0�dbi@h� |�9�>�	,����&aׅ�h��FNd&Ś��3"�'���e%������H��a��Ie��g��[�v�H9�'X�IݠVI@�z������D�X�7���!>Uʹ-�'�� g>2��L��|�e䱉3��v;���2C�_[Y�!Ui���]��p4�~`:^ar���9*KJwk�����ɩ�wWo���tj��^8U����p��ӏ>�j5>�_w}��2�(�����,ɰf���̫7\�(f?�̱�N�\*O����C�]��k���A2,��
�׮�����S���Ȉ
,dӱ;^;�NE4e��M��P�鹚%q�����'�����'>�����?�ntk�f��;����ʑ%6�!Tq�
���Y�]Gs�nW&�j�Z-H��ƚ�����?{����~�S�r��� ��tq�������vZFS�a�8n�P��;K�S�V� p]Y��J�i#%.D�am�N��Am_w��<�)�������#K�
Mܺ�7a�]�n6�K'�)�o�
�u0�D����l)[��hgg�f�	��ʜ=�}�����	��/��4���;
)��e��q����1��Tu�������tZ:�`�1�|�֍?{��#���x�r�^g����ks����~�׳��z� dYZ���Ӫ���o�?��+�W�cz�	d�l6��Vv��{�$ť`\����1_L�$=UqV�
��߈ə����X'�ұ;�3��H209����3�LDܓ�aB抇��Df�)	�d\�B� V�cc5�
�^�	��Թ�l,��nf�l<���0!>$���B�(���T���A��>/*pd�x����������7v��f:���a9��D�s#wR�h�����x��VD��p���A��QN.�ry�vԔ*�\g��斩���n���;Z���jV���Tul|c{w8�8�9f��[k����ܺ�|����r[��n�Iӎ�Z�\����"�dR��xu��V�����|�W��M@����J&�Y�����A��������M���"��A���N�,U'�n���Ǝ��li��jC(eA:'��	'Sb�������Y�U��x���O]����
pJA��&�K��D[N%�� K�"�T*��1�-�LC9ײf�SG�����x*����ǫ��,͏���i�Ife�������M�v
�,%)�*4�i�ӎ������D�����~��k�o�����u�!����Q�oh�w_���ύ��^���x�BA�����F�X���sB&��ڰ�9��!�����Y�WA9h�K�PR��թS����xU&���lGӮ�]��5}�tu˄{���I���Q��ےE�҉3�v�	�N~cw�ek���ݍZ}����0�F'33a�̜
;���f�Gν���9�7f��IR��4��c�լ�o?zh̩	�G�����'&�Ƚ����F�ޭ��ڻ�w��u�`]��v��j���O�cGKU�r��W����R��n7�-g�BJ!`�9��Uɣ��)��ua�M�~�ԡ�2�`���ؔX���O	�cA:K��W�J�q
�5D#�e\�m��Б"n���npg0�8��p�|4䘌�ČV�:9,@(���C�&��d\�C"dJ��1w7@2�H"��yԐ����I�$W�/�E׍�
)���\,@�_�pqӊ �⹢�~��˵��0�3����Ng�R�\��7�4���~���&�
]|�\�J�{=$�Xc�y�!��R�m�j�0�f��̲���l�k��۠�a��Y�^˴!3�ڱ]��j�6��	X��/J������7o��?���/]�Ӕ��5�Vuu�B�9/�I�ݎDĠb�o�S���đˍ�[a�}g�ѐX��-�c�}Bc��;���Ney�熆g�>ST���B&"�0V����X�>?��.`ɡ�P�P1:��i�/�6EQ98�H�Oi�5��_C׸q�����Й��>urqz���d��o�Jp]�?���P�x�+'�Fn����&ᙓ��٣�O<�D�`�T�N�޺sr�B���.;:5Vi�Z�=���Esg{�~�w�Z[����\�� � ����{��;V�7���|���u��+wݗ��K���뚡�������������dYV�ȕ|Je�ٹ%τ�2a۰HrC��:�	*n��K�0z�;k4�Y)��G�s�B���?����uvJ�Xfp��G���Ͻ�����,#F�=35���j}BՃ�T�����N�! ����K/���@�6���{�S�<}����07��N�/oo������X�e����?{��fk��i�����7��lsK3�w�{��V�ҷ��`��ME�r���֗��W�����ݠٰ����*�#��8� �s�X8�(�4�q��qA\�ぽX�%�
���C4C���X=�
GY�H�&	q�Z4�țkT+#Fc����p�����$T�PB��i2M	�F��[>�S��骐�S��Yx�n���>N1])�L"M���xR)�0�i���5� \�i��4��	���{t��"1�D1�Y��n�}go=��4����r\���K��ņ�G�-R<Ãb�l�x5��vm�0Q.�c�,�x�X�RʔۆD��"�+��H�e�OS�*��A|,�'J��>D�08:���i �/��xpaj*�r���'�y��i�~cw�NT*�6W!`界8"12xn�*J��=c}����a���"�N��a�}ӈ\*�f��̄M�0l�bzHN��S���DgƋ�G������+�f>_pQ�H�G��MS=ǀC
	{�c�H9�\���2d���24���6Z?�����ظ���43����]��y��88�9�T.��{�j{"��_x��G�/gE�;޽�����]�0�����g$E�oԯ޼��O)�+��o��g��k�T�ӆ���>j�P�=��� T9&�ƽydM�aH��d���\�N�yc���B���W~��[�=[�D�$6Z���@slN`S����_�|����4��}%-����04X|iY�!ݵQ����^�q ��x��7�|jf��zP����pgC�m��QTe��Q�ϏBd5
[�}P_��|�ȒE�}�6�in�l.�n��%G�#3��~�s�x���':��⹓�Gj���>|N��k߹Ӑ����-9���|��Ty�����	�W
'XaR
_�3��ӥ��rL@�I{��ZC�ԇ�ut��f����(�
\���+�^�:�N���s�g�o��j=X���8H�"�3PQ�0�m!�����YxV9V�!b�0�Y��0�+��wq=��BT&�U�+��VLC�D ")����z��u}�͂��c�*<"���xE��J��<�v`!j|_b8�Ҽ~�w���O_�t�-QMѼ賔�B~x�c�z��?O�d���Hw
��Bh�-W'�)dž��0�cBx*����ZS*�@.�R�
�K�!��J����Nko�cE>��d�(��T��B�$0�h0'�_x�fZ;�����H����yQ>U�yކ�ɧ��M3E	2ʰӃx�������p0Ї3���ՙ�F
	5��*z^~H_|�w�4���׮ߘ*U�Tn��/\��F�>�
��&(��liބ�� औADCM_��<7�����[�i�7�(��c�ܸ�1$�vEXJ�ϻJ����n�vFM�Ϳ_^ͪL���v"J�yFaY��ff�Ĵ���L�s���F�3d,ۊF�Ң�!��~�)qv	5�V�d�}�Ξ>QR
�C�_[�h��6^��RR��v�����Չ#�G�!з�^�nlo�\�pyfj�9����Zcw�Ю�y�f���2�&%P��et{�#�^���`8߆�0@�_�q-cBd�TKC?�i6�j��M��x����R:Ӏe�;'����<S�e5�ɦ2_��D�vd|F�cXcY�,ɾih�^�!	K�ٶ�*Rur�d��͍�SS�v���7?�9�mY�A�	� Z6��|D��R&��X2$�'&��m��\��j�(�;5>����7^�p��{���wB��l��n�ܩ�,����ol���7���~l�I�������O��z�k�;�۲������� �n��yF@�&�бu]�}'H��R\��.
RE)AN����[^{�t�P������W��ª���-p"�"͜�Ѓ)�%��O'�,8��T���cԊ"cN��8:�A�
>T'G�ʱ�lg�T���� L�Jb[��5�����!lb����������|�[�-��n���9��|�3���{�Z.�҇ȶZ��S������X����;�F8
E#�Ȝ����#gΗ
S+Vƥ8�˴���ѱ�.?'��݇���4ų� �<#3��H�4˶<E�*�=3���4\����SP�A�*��H7���u-g��d�aI�4��K�T��ٯo��6�5��ϥD���1[�!w�8A���D>��b6-Ӵ\�pc���g����
��۞r�\�v}p��	^���ϐ����Kgeշ-E�pD3�^�@�O�痾���;+�G/]��4[��:���b�?��3���:�9����3
�*�H�H����ܒlY��vl�,{���=����G���`K�h�����b�\�P���n�wι���b��.޽����o����Rm���Dvkh�Zdb8"D�/�R����O��K4}���_Z-�ka��s�l��HD?t�"�,��Q��B4����t$�h�"�V��8<��8��P �pbym��)�c�GF�]�����6������+�*�TD�|��'�Œ�w�EE>(�AR�>ғ�L��%"1���F�E�$b��^�E�%������ף4ސc�]oT>r~���kw�1�!u�7�fw
��	��`&Ɉ�b��p���7�bĝ�M4�ze����FP� �g��h0��
ø�l7E��X�/?���o��%�D�
i��iM7�ˆ��(��{���˚�uK7;b{ �:56��|t��!�e��������Zitl�ѭ�"��so�1�L}����wj�W��{B|��R��aL�t��.����rˑc��+̓�=��03W���@v�"�[<}�ܧ>�j�
X�a*m��^[�+��d�c��Fm�˟��^!�+��ڞ�t���!���]q��L����C5_���וd���G�I�VL��|�B�n��l�.��szWK˟~�����`mѯ�]��C����l8���`?�.-d4G�R�XO8�Ɲ�R[� \�c��7_}}��H��N��n�]���p��O@C��	q� <stQ_��M�P��������)4�Ǿ:�C2�-�*;���i�~%�
�D&���	��(V��>�Щჶq+_�X�uO�e(��Ȋ�Qj(�����&}?w��s-�"�8C��mC|��}3�ש�rF��Q�:�l�zX�*؛���^�r)xd%���<9�0��щ�K++M)����v<����p��\�Tlб@�'5��9`;5�]/TD)��$)ha���
]��>W��)�� 3W� !av��Y��Z
옩�ޏ?�����@_�h�0cO�ϟ99p�܅���o����u�y��L'�\��z+�H%{
6d�$	�\��2��4���%!!Ÿ���G�)5�
E�˥f�ay�Ϛ�򻯼�r�.O~yraa{c}ce�Y��K�љ��#s'�B�r���|smg�T���x<�I$I�X�KMCǻ#찻��u�-ǵi�%r�=" ��T�m�'��푚�Ϝ��O�-͊s�Sc��5�+[w�
K�Y�ڶ	�N>���kЗ�6y�J�0H���Z��uё�1�I$���CCOL���=����U|@�
�8(࠶�x�A�B��HO8��N�^i6�nJ�d��l����V������!�p�8�f��A�22<2�=4Y97�Y�}4��b&�M��lxG���|���8=:B�!1������%Uk�8�������d��
���nwD�Q�~ʒeB����؇?l`���ꗞ��΋���c'NB_B�~a��ͱ��a=�=�<�[��Z���}F�H�C��Z� 1��J��j*>�»���Oz���y��	;�!m���=/�.��L}�;ǂz,~:}�u��ZX&�;�[-#�==1���\ZZ�cdUj��(�~�N�>Rh�����1})d��q�����؎�R��d�w��D�0l����r��;��h2�Ǡ 2��^���Z,t8��Q�@�Ū�����+U�Bيiz���Q,�eFF�@({�CC�\�MÎF{�;5�uX!���1JT���պX5m�Uo:��pL`"�"0&��D��;pz��Z���D�D�̉o�ӷ�R�%��n&���*��V����wdX�Nm����i�5E�fXޑB�bi�#%�~������JG��9
�b6Wn9�j+��GÁ0�!/,���[��'N=|r��ݻ}e�%[͖�xw}�̑�L.�W-��IE�l�󢢤"��f��2��j��
�֓�x;��� 9����Phs�����QBb�8ؤ��;}�H}w��uS��Z���7^z�^o�;��/~1�������8Dn�Y��&p7�����V[��$/��b�$켅o�w�q`�"f‚B�r��a�R���t*=564=1���1�����^������3'����m��@�2M�@ڃٟa����DO*��.x�	Q��H��X6�P��΍������$g�3}<��Wls%�CB1T��X6ð�14�iP�l���B>������ۤ�"q�%Sok���I�<~��hno�.E������?(�V�򁹾�	>t$�[Wne7no�]��Ja�6{a��@0PZٸ�_�9��j.���ѩL���Y����AA`<�/=5|ra�}��\t�Q��d,�%7|����tj��.�{-��|ew�����t��Q��ɰ�a���Z��0I�7x��ũ�����1�������i���0r`�M�A�׭�e'\_H��G��(�u��aoǑ5�x�7v��s���RO,��_��go�^_=��%�\�V���º,e; �k�.�|��l���>�N$���H�����ؠV��f�@���r�J6X��\��U9�Ra!��������o�$�{~�HR��Ic��h�L/�綶�9����i@\�w!�F�^+ۖ"rM��[��ó�O?̇B� l��` (�!�#)��VD�2��)�7��ww�w:��Y����C\�X.x��j%�p��FP�e�$�x(]ˁagj�����d����f��fh���0B1��"`���bG���<w�֝��;򉳓C�P�篾�����w7���k����K��⻷n=0191<��˷U��fG*ժUp�Ʌ�<`�,M@u��6����d(�"o(�G���9��D<1;6a"n��]>8(g�\$�Y����ν�f�(���Z��J���������v��Օ�P,.2!Q3q��X�=�������P�@@�HJ`���
y�Ao,m�,�,�!�,y��Fs��x�To� ;�B@�tS�).�S^�("P��P��#O^�<q|��?Bj�#g�'3GGG�=��N]7�}��4'l����	UU��_L�(�H<�J�u�Q�[���-j�ћ�m�ʅޡ��>@��W	�4�in�z�t0t��N<t�;?x�xOA��߻[k{rw����q�Abfyk���M�_���c̽��o\�q]n��������d42�ɟ9uDl�j�V8���03xiz����̺�])nƢ��):$w��ٙ������KO�/D��S�nW`�o}��ЭZu������͇���}���	#�~�;�ܝu9�L���0С����Eׄ�+���n��Aā�n@GAr���<x����=I6G2����XY�0��Rk��6E���P8h��	���v��%a4�QJccYRo��/�;��lLL�m^{C,�����p�n���w����%L�`���l�L$&P�)!

ڒ�
J��o��b����j�F��;�ʰ,�c�-�v��\ �j<���8��8n y䱇�A�B��v�,�6��
}�M�\cn�hC���7�A�H�����`Cǂ@�˲[��?<#��"�\�5)h�xR8	` C�MM�o�{S�Os$�k��ÑD!���f��7dGg�PS��%A��T��ў�F�:7޾5<6~��={3�hЅ��qQ4�\��T�\86�����Pk�b8V�7�F5M�aI[���(�sp��v�s����1�l��fk�
rF[�:��[V23L{�x����-��"�!C���i]�t�P
�Z�!��������~�_��T,�VOG���V4�t�:�e9��� CX6VH���u��I

�l�����(��@�wKe=�����B�v]�"�@,M�%�g�v�tg���qb0�Z͹3GA���^�X]��
���lW��z����r^,
B�S�D*�H��B��Q-�%��O�����ks�C=������b�rk23����[�������7��~�fag9���}�&���v�.]�G���E�Ӊtː�v�v
��iK�na�Y�%��z��/�}UV��ӓy����0�Y��#�s'�_<�Б��3������a!>N�8Ͱ#��z���TL��W�����xb��ntŭ�G�CC�C�n{fw��0g(_,�8�fa�R��a����Xw��vKd.�=�|�����P�y���j3ző�O-X�#dÂƈ���AL闆?�C��k;+;˰�ֶ*�2	uL)!�@*J���$�4=����v�*0CURpyG)��%�i#0�i;���	���_|��7��,�ZT г�8T 7Hӌ���|���q��\�ޓu��lMM�j��m�4E�MGxEt�A`������>s�t���_�Q�g����
ێ �`0jyN[�ظ���?��?L�T9�����=Yѡ<!"�h���d�7_�*��	Ĭ����c������W�u�0�|��*٦����G� �4�0XH��D��s�ct����Ͻ��C�^p\��m�D"���'z��;�pAQ��
�P7��r����FK
J/���kM}���}��}����N���g>��z�j� �d4�'��D4�Rǀ5L�4x݀~O�T18����4[�Uh���G���@�Cg��c��^��J���Iqzr�Դx������9�f�a8�Tt�N�)�:���i�KDs߰G:�tZ5�`��x��]\5�!3�x�Q����75�e<ū-	:��vP���b��@�c�7�u��TY���[�����|w�@\��RŃ=j�=�i�T�=~񱺨�Z��DQ�=v|v�ؖ-U��k�Nk�w|ltr;�K"(O��ȥs]�#,rT$�g>�����?�٧�Fo�_x��K�[�=�L"乸��F����ӣ'd����\ܹR��� M�U��!j�����p�]:X�y��5�u�OLM
��]-Wf&gΟz����gOd��B�;��
S�j�AI{��`��Kk/����ڕ]��:�E���~	
� ��+����[�P�p�;��^Wg�;��-tu��|��È/Ix����h�O�0�]|��ۂ�;������fa��iw�ߵ�&�t�T"~6�ڨ�-J��	@H"AV��x<���(�ZNFӀǀ/D#1��an�'��"%�#*�j"6䳾qT���$��&�ZSs_����<��;3%;R83}g_jU�h�ĩ(J �yN����D���.Z�)�R����)W�4�FC��f���ɘǏ���Z�ô�M�;1����<�ë��"�?��:(��o�`� �%b�I�&�c����ן���)j�2�q��D�C�iʢ��4 ;�,A �+U��)�d("$�c�LG��J�҉��N������#GN���g�k�PŲ�@Q���9�_��]�H���=����*��O<�P�e,�l[֌�r�8�
Ws�lE7=�"��K[M�����b]�����n$���X0�����#
�xi�K#��P�0
C�l��#B�?�W��x�?G�Ӵ��Ѓ�n� 
����	R�:����(z������H_��3�;�����o���ڵ�*�j�u�.5�su�VJ���7F���.����(K��AE
��Q
�3-�3	CY�=ӌD���r����X�ŬR��Q���	���^��e<$94
3$#+mՖ	���+o�T-�ԫeE����x��=2<�*Wb�8�#�<
*כ5�^���L���Y8��� .�Z�ˁ��;4lc̕�5�&��z�_��Ϝ���N�e�ŵ��B�6���]8�7s\���s��ݎ���,��ORBKuǡ|=����C�,x}۹\CQ(�]��P(9;v�^.�b�G�,��׬�v�jӸt�'{�pX�'s��YK-u����ͥ=���ֽ�.�{�����:}L����?Nt��:7�o�2�׋}�|�J����oo����h���N�@u��i�Cu�P[�Z���n[�O3	��+����!�~�l���j�/|�6h���U�Q‚��L_�Ho���?|h�w�);h�Z�vA��X!��p<ݻ�]�S���7�F�~��հ�$��2&���;i��
�A�P�s�<G�>~�o�,-kyk����[��r$"��p�����?P�r���6
9”&����@:#5�4۶m�b��N��X�c��s�{�o<'K���7V��P�-��ZB�t�ƹ���c������&�c�hI����^�5j{�k²�iJ�h�.4�fX��'�
��nZ�us(��AAhc9f��(�/��mUK���^}�]���<����0�Dz��x�]�4\:��ӟ�Ku\���AR!�Ӄ75xkc����
fFB�`M*����#0X�*K	�( �P��nn�]Q_��D���~��N��ED�=I.�v՗�l~۳� �ˈ�\�T�ކERD�p�fMS�������$�
�7��J����������kE��"	x�a�	ݱD�pq���,�j�<��Ӂ���cV8v-����u
��hK�1�f�4��?�a[	���8=�LE޸�S�/��>����m4@�.�B;,�qlQlٜ-Z�����%�!�Hp$�6��}6Bca����-@!C�EQ�k�8G$�эho�Ne�>�
oh|T8������%w{G3I=<�_�uF2s��}@�Crg��L�1˓;�?����A6��T�mEiTk��DY�<I��x��$^m�$A�a�X L�D�ٙH
=���Z���W��#���>;6�yW�K�G.��'zL���ݧ4Ń}�4t��͢���K�r�R�[���%���1} ��M��;1?7���v����Ce9�k��v����O�ݮ����p_��o7�{8�_���<��w���+:P���=��Ŵ��8�Ȳ8��k��bn��տ2%��:X���b�Z~��?zf����f>Z�]�r��f�
EJ�r��?:;�K���YI�ʱL��p_���#8#�)�*{8Mv���	D�\g�9���nk5��:oD�ȝ�����E��ߖ;��
��ve� ��1�
ʝN"@�k��>`0'P �s���Z
!�m�cUD�u�6�b	��L�r�]�ɛ!�8�r�?������?��z�{?�Ӭ�/>��D���'��J�Ru
�)�ɗv	p�<+ZK#A��	blp|��܁��rC��p�����B���f����KR��H*�lJ���Yh� Ix�O� NJ����������]n�p�l��gS\Z���(���k�uR�:���Ţ��m`���ٳ��'�#���%P��-�P���f�����R�G1��w�۞�G?��[o���n#�Թ��ظ�n�ա0�dB�ԖL)����� ԛU
���P88-Kr4�g[�&ὶ���	��[3]�a�z��bY q�$-�*��>1{�D&���X��/d5jmۺ�=��%�q�d���&M�+0
��z��2`���}gq81X�6,�!}�B��e�1t�a��a~�N���/���z!��M#�L��Ό��C�l1o����"��X8#9~u}
C��<����7w6�
�V�ݗ�DC=���M=��܍��)���8�� ���Ŋ"B�c9��̫���-�Hf�g��i�b���_�f���D����͘=s�BZH=x�}C=��%�Kwn^ٸuo��KO]bʀ~�v0���6�Nū�l�mٵr�PZn�,�a�Q�������Ѕ�Sdž璓}�px��Z���M�a�#���'|��A,ߏ
23��-��/�;Q���gO�G
@5��n��/��`�_��*�8�CH���=�|���*���҂�vC�4�X4v5r����ن�t�
����E;��mp\��,��U��\YiK�q������v�P�Z�d�9�����PPZ��p�c7�(x
w~�����#}�ž��wzb!�`< �t�D��ViHM�q9���4Qn�Z�#}��8�
�U�=;8�#�by�����Nǐ���
�zP�=�2n��K���ٓ�21�?84�lN��W���O�	
�t*C`��"RgXZ��ݛ���N��O�&8“DE�M��y�l9:B�3!�tl�!>0���o�9���Ny�>�\�G#a!�@c�NY�=��l��v<Ԝ�����U/R�m!DE5�;ּ�Sg����f����p��e�BشQ�(� q�0U8IE��ᏥCe;/��^�'?I��.\<w�����t6_��Mx���C|�G8���%3�Z�X�)@�g(ӏ� ��P�3_�ܵl����[Π���4"Y�áW�
�l5ԫ�fK�-��H_FG��|��B1��m$��D!"�Sh4e�ը����G/�K*Rk)�&i����M2d��n�  Զ��D`A��j:z�����R����|0���<�-�75�OZ��`Y�q+�Z�]7L�ر���t4��"�t:'6�jŗ��~y�N�U�ēS�cN�rKU�T_,�h�쒘��"���+/�Vl�m�����f�踍ꕭ����=N"�Q>IT�R��p$�����r�d8}d�d��5ٛ�<��o�8021=7w,�� ��if����J�\��K�6��ٺ��ko������N�H�x8�ӛ�=�;r|p�'�p���^2�ۚ�lk�t����-�F��;��ļO=�P���?=t�{�#~A�o����v��5�jA��9�d8좀�D�uO�O��h�<��2̗�?t}�d�%0W����)5�}�O�PU���F�9�P�� Y�V
.@����^�Ժ&���AcwxH�=
@�a�t�Ba�%�$m�cj.��w�X���7������,��y�yM��c궢�5����x4�h��	�����q�%����,�~�ךw��-�[��a�`vۣT
t}�a�t�)6��w�X�q��0���ˋv�8ȃE#��S����XnP�Ʀ�$ܢÓ�^VwVZ8��/_�v�fD�
�{�eˏ��NŜk�9��V�U%$U�%�KW���T��Gՠ�/GC�Y���{U+�m�(i��L���\�g�U��]�Y{���s�?�̝����b�J��<!���` D�l4���e��H80���=t��
G�S��k�߽r���O~���ݸvS������p&�0�H���t[`�45
vې��29��O����^<��z_|�Z�!3�؆�Z@�w��<��tP�cX�"Ѓ��K6��+o�ӓN@��R��V�ՖT�[j�$���̉�h���TT�M�Z�`?ϧ�PoK�D�"���|_��:Ex:�v�k7��[?��/,�o�EPrd�-���R�Q���8	ϰ҉d6�k�g������&�w�L���$ʢ����-�������ֱ��X(��_�߹�ݾ��[���vmɨ)j#?x���3���8�Ù�ѲP.A
!3���":���Z��l�CJ]��',���HM1����f�/��H����ؑK�ս�Z�X����fi��Ƶ�[�
�B)��:��DO"�ꏧ&F&�&b|,�#�0�=I��M�X�0���n'T����C�nw�5��:�{FUءO�׹o���;��84��,�;W|Xb�)_4��#��Kf�f1�K����>i	�u<��N�(��A:w=�'M�M݄�# B���ٚ��A@ީ���	BN�z�6F"ā�A�xȲ��)P��ʂ�e�Eǡa9
��h:J���V���W����`|��$��.�4T��C �S��=�@���W+Q���!�@<j��@8�xw���f2��q�ݔU�!xp3x��n:�p̆�(�n,aH��=2#���7�^�I?|�?��'[��=
W:N�������S�#)ԋ�D(���3�c=�2\�>�?x���f�����(�T�U��;ybl(�b�km��5
BR����\����0ǹ�E��%W���˶���fN��jC�)&k�n�������u�o���l9��X&�H1
C�?��υ#���7��x
O-,�v|d��_�Wo�%z���N�ֳ׮\Y^\7x�ܹG.]�EB�rAn��S�M
w�����5�I˟���|�P�_�l���ږY�t-]�tu�i�c�P d��;%@���m��l��ťJ�&[Z����K(y�r6V�>��/=81|"��pΑ�t*Q�;{���=#0����z�<��"��`ǀ��*	�E�D0��J�Y�}C��.�;+8���Q6��J2�D1�R�D����Z��)�l$q�����z����N���Z�ѓ9�p���c��;��U��������Nqw��ya0ӻ07<2r�op����^:}���D�K�)`]ZHl�A]�&�s�R��!��=������~nW�$�FY*ت�x���'pЇŤW6
���@�ƽ�o,�4����j�)���@2[:&�S�d,��j}g�P�>|��i�gl�mTZ�{YH	
xJxXc�S�$بDW&�{���ba]�9t�?�B���-��)��u����E�Ҁ��$������_�wI���>���._�SՇ������SŢ���$FE@N�	��P\��s�b���@�	�IF�D����G��,�M�€�h��"�n��w���0,H!�X�&JϜ���_}���N-�̈́@N;p@VH���Fk��{�Ͽ�;��KO|�'?
Eȩl�lI���h�
I�*xK�L3X�8���H�fA��a�� ��4��x�$���M`C���Xl�j��t�^Y�c2D0���!��X�x��������|v�X��t�����$�ҹ\8R)��EIsӱ�N5�j2969�uo�S�:j�:<����ÙzC~#�"@0<�Ea�P�,��̇.>�;<�tk��h<���������Ba�Z�u����L��Y��a�.����m�S0m	��ͅ(6������t(	2P�Ӽ�Y��T`1��T海�D�^[\~�����t��x�vW���K�r�ر��΂ǵ���(���|*H��������R(��*!��._�R�$ñ-_���1Q��#����z-�����x�*�R(xzbb ��g�d�d�*�v�����鹖��ogYʕ����\[\j*�bI rp(��4���@ز���|h���t{qk�H��bu�_�I{���@����� ؘm]-]V��Umhh�7�y��7v���#��L�Ϟ~��3�3G�����p����;gGFw*�Wn^[X�M�z�h��c��N&{F&�z�Y��Q��l҃�۽��qc{k��?8�!�γ��N���M��9�Ů,^ٯf�ռ�j3SG#�8+И��*mGuʛ��FkU^7����؋��|k�v���ȲcY��fR}�Xz$�?���-grp���ū��Pxlp
�o�䖮�n�Y�x�aȡ�,��}-c�{O�+V٥h]�d�k��wt�y|�+8 G� ���ݱg����{���>�8�,��gr�m"=���!~��[�`/>Âw���l�>y"C��~�����B�q���e��z鳗�+���(��ǧ�3�ے	X�i;��"�E��1�Y���aK��������;`�\�@w�H���GM$uyc��բ�`K҃'O��ի�T�U�v�r����w�Y1�O=�I�k�r�ӴPq2�,V�p�ںi�p��Q!�G��|
rJ�ABj� @�8��T˼��'@{��[�c��q�%6„xza0qjh��o��#:R����Ɂ1�6�Y^L�����33���#}��d��x
��Y^Sj!t��v�L@���ڤD�`B
�,GR���ns�3#�ܘ��?}�~�H|Ù���@li?۩��+:x|(M2<��mΰp)4J����x.L<����$�`�d(�/EM�	�c�fG\\߿��s��wbv�Nq������W��Ʃ3>�ѧ=�h��巯�gzC�I�Z�l�K��h�od$�)��&Y���k�����|W8
��j�	�_�tD�F�@�@�\zr����Q�-I���pH�;K�tE��G������WT؟L̎���T�0�<�ЫH�A�N�3�(�0.G� ʧB���pkch��c�<�;hgM�8���_��T*z�v��C�F�
�y �jZ*�H��x�z�a�ScG>��/5�z<AĆ��/���7�V�9��:���kW�ăS�}��P:
�c�ЬW��K�;[E�b����íB]�ն+��U�U�%��ӳz�
��f���������/��>�7��Cy�ғl�K�غh�+��W�%9�or�t������O�(v:4+��M�d*�N�%��3O��F�2��H'����7���w7J%Q�5Ǽ�q
��n��ʉ���Ey�+�xE��|z���`�Uj��ʷ\�J��ۻ�������/�G���^������_��6�|o[��@�#-K5M����P�O}tf@w�rK��ə,�xckR��W�t��j;
�R=k�ƭ<`�펪u4\6��O��䡉.X��Džb�c��œ�Xܗ�k��J�����"�o}��?��'?���'�_�[��O��W�����?r�@�7�7,[����[R�B�3���Me^��I��k��`A^ӠP*����S����Ѯ���p��)&��D2�i�1�ň�"j-c)U��;�w�
��t@�ZE��)����n)�M!�D;���q����!�.��A����D�H�Ok7�4Q���T8���(�#�
$��k�!��ԏ�y�޽���/
F���^�k���"�k�w�'��<XE���b��x���8�ӣ��t�c�E�.��8���*t�#(�&9�P5�#9�E_|���n=�L>u�����^���_��đ�_��_O�{o/�@���8��	�4o�^�������[���ݖ@(9l���$��iV��"(�F�V�&5��1$�`h)ʮ�U
�`��^=?��LD�>�$+�[��������yd`�`�Z��W?����w��GG����e��T�X2C�����S�_�*���+A�E:Z�^�X[k�f1{���QM{"	�%�ʷJG�fƎ]z���`��-3'Z��
�^~
��DTPt���|�?�鳧�³����b�-V7J�G	B�����T���߼�6��虇����@�@���ww�f���T�ىs��}���;z<���,%w��7�.oޙ��=��������������M���LOOO��ҁ��1.�;(�؃iY�L��s{��> ��_�����J��#������^�c�C͇��]7zX�<l�����D���C�:�[�'~ݿ@|y<�ļCw�9޵e�l�/~���[@�滁ٖ������GC���|*��o��_}da����ɿ�t{}��ubAĚ�~�'4ƥ����
a����M"x�c@�̖�ǧ�,:�L�yJ����SF���Ա�����a
N�0*�67����j;�u���#aV[�fQhE���&��{?����D��9�D�	��I����X����@�6�R����k fY�cX�`�(
POJx�se�Ṣ�B(��AQ,X�2�aӲKu�,WUU���F_��9��1$����d�t4%�l蚮��F23J��Tofaae��я����x�/��79	ۯ�<�97{4EutW����^Ҫ��g�NFi1c��������m�L#�+�:F2�?h��Wq,��!��t�X.J#�HOlrn~rj�'?z1_) ���C�ȅKoo����q�������97�gǯݸ���٬t��8r"t��`_���+?���+o��K_	��_~��;o)��x����l�l���/�X��༽?�j:X�i����*E�.LƈoWj��B�hly��Y��J�������Lo�2Up�����o/�10<d[P>���(�h���}-�j�홲��<[�Û���.���Ne�ew\��fzz�*�X>YTr�.�eyvw{s�p�RX�#cn�TUqX\�e�	bqV�����k�R�zB$�8C�O=��@��՚v]Fjv=��t�T�M�����L�$:?����o�ye�:ȑ�ORθ��T�����o�G����S#s}�L���TX����� �PP�M���/���ic�j�Y�@%<�
��p@ �(�e8A�9685;<Yo��'��^�]�\^4�e�V[
�a�v�����3G��{��@J�u���KWW�Ϗ�V�l�+u(~h��^�^�nޭ�w�|+@X�")��6�ݗ�����_1�A�=�V� ��o�����2�Ԛ�͂$VUL`�Z6���~���U��͏�����<hw*MQ���
P�ʹ��P@ѐ�B��~+g�Z
pe��u���'��Z-���cT�e�h�ծ)�FM+I�df��l�6��yKr:�D>�p�G��)��f���L*��bQ��_�._�8�Y�@"�PUE��5
�&�[�Gm��`��m;�XVUL����M��<�i�jZ=� S1=G��Œ����Ms{�UU���r���p"�%Q;SwZ@@%�t��J��(6=<0�꽷�-w��_z���P6/J����N�]�8��b"��i��Z;����<(�p^�����W�>‘�w�`�t4�h��G�l�LLM�:�x�:�
N$�4
�``�'��$��k�-ENgzC��~csi�`�*�A�'����ݚ����;�*
$2��6��u����r����� a/߸v���t�9~�nu�v[W4�e1�	1�Gᰁ�L�~
��̀��T���`}��U��;J����T ���t]}�ı�>p*�8�H�J�~�΍��.%��8�1�f�����F6��)WZ����C�X�7̎�41ԛ�G:�4{b�#?x�ƢI
��3 d�톪����NU�\_���v�,�J��⃡ Edžǎ��������󳻥�ɣ}�b��N!��a���"=�J�Ʀ����~�ʭWU���>IS��x��^�֋,�����>��GOL��J�R��P����GƎ�=����,�����w��b�^|饗����7KR�������Z��E�±�h|%#����F�I��Vk�K�vh8�(rGwt�0�on�ݛc��om.��I֕��66@������j�m��C����]�b�l$8�C�D�C�S5��E�68��(b��jw�����N#,�J����?K�v�b~g�a��?Q41��� ����k�
^�~���Z<G�8�J�f�*G5��~��"k�Y���,m�M�:u�Ta��4m#W/g�D0�J��1��Bx���A-$�
h�H���躁��(�:E*bea~~��XFmk+{`���6�v��,��_�~�e���_�`.��}n�\Ȓ�ϔ�|)w�^AP�S-�KS$��n[UHr*>I��$ġ��1t�P�Z� �j"5K
����4���>M��vM�4�������������)� �{���>�o�|m�8�2��KFq\ z{Û�o�vcvrL����c��]٢"�~�h�$ݛL8H��?��΁Xq\�)j����?ר7�m��G��FI���jwŕf��h���k���L�L2,�`��bh]�����;��Q���H��U�|ⳟi5*;+�+�KAM��A��v��߾{���LJ�8?]��+;o�����>{��}q� �g���m4H�<@�A`�CBX���j���tI�xl�[~ذ
��aG�!{Z�ߔ�3���W~mdb�V�]�z���O5���Gx�m�*\_ܭ[^4���g��#�T��6��R��F��+�ڞ���kw�6A����(�����Sg�O�vu�t*ٛH�X(��
��v���<���K��>8���D8}nz����
��S9�y�FA�]j�R&�7hD��V�F���UW^Y~]�'3��ɯL�Q�`0�cUSM��#=1>$1w��v�x��5��H���Roq���-�B�"��O8fm7��{�I�K��Ƴ�;>=��`x�T�q-ez;�o+���'�z�ş.nnq�������t�S�*��j�0{�?��޷m>4�29ߣ��u�%��3~{�z�[�o0��?Z�|S����k�xWk�X`ת�=a�C���i�}͆�0)�u�q�?�[�@(!�J��5Y�
����Ȗ�L�M�Z�VͶ�	�A�h(��Li~,�Q^��™8j(�j�	v;��l�f-N�=ߠ\Z��@����a��v���0�Y̎l5�&�[�����G����_��/&�f�v�W�y����r[�2�o��_��d2W��a�3F�qr�B���>�0
E�d��dAl��a+��z8@��P��gu��� Q�ZeMk�;�&b���V:�@M ���i���S'�WV���~v]�;s,>�y�G?�ix��$Ե���X�%O�,V,¡�Kz����+m����D3m]͖� �euQ��B���D$^lTK�"��މeB!>���tġd���f�cbhU�Lx���4=��[F�R�f��HT�E��p_$�c=W2$�OD�F�S��ۃ��P�'���>����d ���%�l]_�)5�P�y��왅�B��_|'�k3DpkkK6-��T]�,��pqA8
p@�T�AI�1'��*�'f�
�B�o�L8n*��Nw_y���A,�Y�[w��uc��/=q�.fK�'�����1�`v\י`�\�r��:wh�9�$� ��(���%Ӗ%��hv�^�~����̎�ޱ<#{�u�,�2%*"A9����s���V��g��#;�~]]u�9��9��ia�	E)���n�J1�"q�ђ�mfK�����i&�m�Y���LJ&��M����d]l��LPD����x"��P���S�:0;��}�m�n01�V����YlI&�$���H.�7�%ݕ
y�|�Sg67�\]Xz��ǿ��˫����1e���`,�:�h�%U��\��J��nKs�o��;;݁��kׯ]������>�/�;��@�����l��O���Z��]*���e؁�zv+�7:413z��O����E�#��/?�̩o���o.S��|=,�twd����Q@ٓ��L�xGeNF>R��Gv|y�m�=�Оe�_��mϬpG˫�{�U�s��Y~!;�՞n�m�Ev�#���t��^�V��z<|ѻ!�D5Xj`�7��h,P���� ��4�DC�zjl�P�`s�aY���S��Oͤ<T�,>��f��^��ۓ��jf�O��	��m�$B?�׆b�K㞞�Z���܏�ZE����!��=�{z ���{j�7�8�E��y˪�;U@;b{n�l:����xC��
�@�	�N�(nL�;�b�0xs[��u�uEUMSu�j�Qoջ݆$�eU�p�t ��9PK��u4��C'&'�-T*���^�uu HS.�i���M𼆓�߫^ZX�n��%"�J�j�F&=Ro�@PH���li�6�^ήr4�_���x�P(a�|��-�!_�l�P��cmGv��R�-j��<�V�0����x�ƩB��ئ�ʈ?�ȣ*�C�ȧO�U[OQ,�@���
P�a�R����-���I��
���j)�N�+�N�;-�_̕7�S���O��ۥbI�Ȏf�4�g�8�إ)�!��
Rü�V�a*�c�5WHsm��b'��á���������o6�p08�ص���͜�"�)l���f”`�0�s�� Nu�h��#�C�,��UQRp7!�ܕC?ޗ�-@�l��V�D$ajZ�#Z���n����=1:<��AD
��6r��ͪ��k�f��
ج�ܟ����;�W7M�Rp�DrV����\���]��o߸�f����.�JS��ŭ-�c�'&�\De��@�[<���~�?��9��٣3o�z{#�R[�^:n���8!Pb0��$��h"Ɇ��C�#S�c� sV�[<��o-��҅��FBu�
��[��.x�ƅ�šn
��tm��Ujfoܺ\l�(6��DR�i~dv�/�{Hn����N�?[��EF1_�ɧy�S/N�=Se����cҎh��0�#
�������<�?翟6�=i������7�A}�y�����S)��(�A�
�e�:����克K��V���%��-x�����V�VK�B�����H����9 �6{���`z��=��ۢ.��d(�1��똯��X���?�_^�*��f=�1��ɰY��o�wc��GX�f�s�f�m A���U�7�R,
�$��"$ �~;���V	!'�g��4�5��agXW�ݗc��M�d˅������x$�1B"�o�����\d�,�A���KD�ۢ�lV�+��F���j�V(���v��
&��T�ݒ	�\�����n���ӣ[[K8�!�"<�O$34L�?�%J2J� B��	lK�[����
;��'��@|��](U1�q��k�R9_�[(b�
j�o�z�ء
5�*>0���
&��7�
`��)��],x}<�p8��O7��G��ͤ���.F�F'Wh��Y�Es|lp|h�•{ Y���_c`�G���t��L�4G�m&��z>�(��ejI�Ja� C쉇�X*G��P��/��s���h+T���^خ�A�r`���C�V����>�h*�JF4�Ex��-0>�oT�H�a�$��xP��]]����#\�8���A<S:$E�A8�أO�2� �\�K�єU�#׵�ZMd�9���n�l���녒��ӌ�o�.-#j��++s�J����o�(&�L?>s�x_�@,TV4��N<�lG���uQ��)�c����w��O-��\Y�[�s�����6�ؘ�P�V�Pp$��=84�? X�0�c �g�WI�ġ�H\���Zy���!���<ʒ��ٽ�ܹu<�v��䚅Zeyc�e!l�N�lس���g�:W>���J]wgh�ע��h���ۗ��wT��#+{?:���H�ۉ�O�T�.��w��zÃ�/���f��;{�+Yޛ�d�f��z�I-�U�/9����(�'�zqs�2�^�Y���0=6B�\���s͈H���U��+�VGjr<+�����e[��
-������_�Y�N%�t�'h�1��z$����LJ$f__n�P���!o��C�rՅ��V1On������=3�?��4E�hl ԗ�%����!^�N�5�ț�6�@$)Im�����GF����@�c?|x�+�?���Gg��j�\�MM�ۛ~���g)��i3��h6�ڿn{�߻	� C��%�������FK��N�bZ:�2���CҀ�"*���O�Vn�Mc$HIG�����f�U��S�Vu��ʼ� 
�EXP&��Q�.�$˘MyO_�a�[m�趥F��u�m[�a����<r�Q�������Nյu���@$L�:z���^�+q�0@��$�}�"�ڑ�n�����o���~n�/��M2 )<x�ެ���ݪ����+[
�c��ܿ���W�b�:�u�82�M�aiGT�irW:|�/�'%l�"�V]�<t�h�+&C�GN<\���D,3��'���ST#����R
`�rŢ
ۈn�u��Hb����P�H<	�1<����':�S]��NO�G�"��ܬk9IQ�K[8F�R�J���R��*kݭr~}{+6�E)Dp�M��=U!�n‹�fج�Z�21��VY��D@R�j�k��gN{�[{'�F�R�,����ݻ�� ��D�.D���DF�4�c�{���}���_���?���.���Bh�N��h�?�7��¶�v,=xpz`��XZ����<��/��9�[���ʝ;N�MG�1I�G��ޅ��w�[M��)��L h�d��@l�f���,���ۦ
�`��_pz���_���
���l�*� 3�ދ���'��ȳc��5O���w���?~�7��y��<�q�S:�*�p����|16̯�A�捯O�||t��鮬,�5�)�}l<d�E����M�ڕ�9�k�'�~����ȝ��{�%�������f���*-:�(44��é>QUGbqp�-��Q�TI״�S(d6�u�����־��OM<穊�t�R�VK�h��F�:�Ic-�FQ�]X�ΌұU/��絶s Rz�XYI��Pt�Z�j2�놣ٶ�R½[���h0�G��W>~j63[��w7�ol,˺��T�/=���TW[�;��(��Ү�gM1��ޭ{�
	�9~�\hH-�x��ɨWT���`�;B��� �4�q��|m�5�ptq��ƒ-%_o��z���ο�/0N�r���H<ZPZ��2K��z���-��j��<�\�H�zP�DP
A(����\7DS�!�g��{�Z{��L%��z1���W^�3��}�zW�k&X�.C0*�s+s��LC�'�8���[�H8���O%6��b���X����Z ����b�
��D����Fw�1�
Mw$��4YnK"ϲX������Z)���Ӷ��FV��s�RK�L��"�c.o��]�?���e����#�3�=)��x�\�<��̦n��{
�EGX]~���z���f��z�vHD�Zuyu�/��{n{���;�pd��
u�H�0�%���a�qѠ���%��Xn�^|�O�ۯ�����ǧG�H����Ƞ�sQV�����H���@	&b�Ï~Hk������/��^��</��l{f ,E'#ɑ�X&���LE��c3��A�\x8rB��_�O?}uk}C1͜j^�s���H4��Zq�o�h%?��[�]���x���5M�Q^3�r���OV=$��'EI��n�!��a��QJ��=�-H7{�ɾ2*JR�����Qڙw��b>�P�΋m_Q�q{���-�z�����I��vzA
F����G!��l8������%�0�q| 1�%�
bY��:5������v�,)r$eXns���{����:��E�g�U�+�$	����C�JK�‚��ZG3q�{��v<�5��r$�x0C��c��U�t'�4���;�Wq��M�A�^�nɦ5�gb;W����H҆�6 ��Q˨g<�F���#{��Z0���qb�jMdjM�?��Ⓡf2�{y��߹���c2�(�o��*'l���hT.�
B���^X����]US5��<�Q[3�}
0�[��4��r`x<�IM��9�����D,\�Pb���Z��
"ۓ�`&�ϑ� �6����+UW'�Ɗ�N�V)@�-[�L��aS
�;�i�
�)
�O2-/^{�.�&x(���NK�f�]Ә[_��n<��S�>t�PC��Z��۹�<8p(���q8Jlm����}�А���g�H��b4'�l�o���F)�PT/o���a�ZjC0���c�nn>{��Q��o�9�:�mn8ї�+K*F�MQU��Cfʺ���0�hR8�
���\����@8`ٿ��텛�?qt�?�߭;5�����|VQ-��H>�J��=隿���?y��˱����e��C���4=:n*V[�8<��jT5,�_����^0��N㕆��"�lq+�iv���84{h�Xv%g+��d�'���ν��מ��纪�^�H�b��LV��g��3�~�k_���oB�n7{��/�i�b-��A��P"���������z�"�H(b���2
�;M��և׊مR)
� 3A�b:�&�$�a��B&	���(���!ֳ��n�i���(\�B�z�M�v��aYQz�7~���M����;���+/�<�`y�B�F�/:��7����ީ'��OO���e��(� x?bx%vg���+Ry��ጞ!�gχ���4�0,�{(�Z��<�Hʳ�Wu�xga�b�k|�d�B�ݑJ��8E:V�PE�c{FW�\=9�����+�lYp8���ҝΖ�i�����vi�S�1�,�n&-�쿓-TeQ7̻ۅDrt`x��I�p�M�R0�@L�P���p�٪�3�oܹ+Zʣ����I��:`ؽ~�r��R4n���?|��BU�]o�}���?qQh�o0��v��jyc�	(�ڌibrhxo_xn�ptv��_��U�8w���w1�!i^�Y\vt�Q˗��������X�Q11���Uʲ�<0��/��3?;�S�p�ɣ�����ͱ�j]5-���`ճA.�e�K�
t� 9
pq��9
,�F,�t�;�q��q˒tj�B��_��g._�t��U[Bb��$rAgY&�_�SܬL����ݮr�܅��yf�P8B����_�����	E�d�
"K�Q+��`�҈��gϥ;֛L±TT�/�,A���b��nC���$ȐIu�2��8�v��
C�ښ�?�K|��\2��P��.�3H<�h>(�Z���0%�M���R(_\)7
#ו��u�R�A�0c�K��[����;\l6]qX!pdz���a$���L*�@܄�ⲍ.Hⓡ���+�dzp�f���ő����<;J7*��c.���A������fMϦε�(���Η��O}���o�B���=��}xv�/_��[�F-�uL�����`$=��dR��e��3	�{�B:.lodR��V,]\_��[�f|qn_fhd�OSdӵ��u
��L,��z5ƸpW���m�rX�q=yD{td��S_��v�\�`���N�R5o�Ͳ|X��iazgϞ�>*���װ�}�}��Y���<g ��h�e�O�#�~fǍ�o��a�k
���CB�;ۅ�Q�w���!A���1_�
��H�~y��?��dx�P�ͭU�E���*�Y��hnk���X�s䙠�V+���4��dO�؈��:;=y�H4��F�R�LEm9'](Y.n��ըvo��|G��խ�~����s�^�Iܭ(���Mɳ���Ϯo��򙖬<X[�q!Ui��غ�_���V�ւ���{3…�y��ZR,0�&��&pՔ �t�:�U�-Y�p|rp��V�o��D�
!,���h�S@PK����\TH��|h8�HfRU�j��b�)w��+����s�6�ܿ�U�7 ��i�s�j���9�\鴽.o~��)��n��ª�G"��(�� ~yr��gU$�ソ��p,���C'���
���|Gl�!G���ԍ�����E�(�i��0�y�I7A��?p8J|x�ʁ}㏜z���J�Vk������QA��f��.�Y�n�f����i��[�f���=($T����q5M(��IѴI�%�)7�&��gЫg9.DG K�(�r?X�Wk�:���Dc+��2�:H4�l�:��;Ӊ�{���\R[����o/�D�1B�
�����'N���b���spwlrtme���г3t�]mVDYA��m6d9��� �Ep^؄�z�:��]���j�`C��K�|�O�z�����2�(6�.�~����;��x�˟��cǎ��ǿx�5�DGkܸ�^��~�s������k�
.�SlQ.:�Vj���������~�k}��_�o޾z��7�z�p���wxrv86��f4�8v����H~=�+m'C1Ķ�f��_�}s�^8�'H̶�B|W�O�
m(�ܓN�*+b���Mhz�G��X]EU�tI�A��3�?�_�z���)�L���̡�^�/��m v ���c@vl���G~���mY��C�\���P�ЏZ��29����|�N���b��3�z��+}�~�*��� v�}�t�g+^�Ӳ<oQ��́�q�n�Z c����2�5���lp�8��j��P,�]�nS����R����� ���P/�5o$��F�����ך���=Ȅ!����XGI����l�+�;�Zԭ���cT�M!"���,�03�SZ�Ga[����ٽ��o]�[A�p�پ�+�H�-pk~-"�$E+��!4ش E3���fk8A�����G��*��M��Pr`8�`-'�E!��q��
QqfjL�vV��l�`�rX�N�=�����=�滱x�hO���@��uMVՓ�F�z��O�ܫ�Z0�����</Ȟ�t�0�֙W���j-@
��lT
�a.�\y��.�>00H8p��x��~me����?�2��޽%��,�3��P�7gG��g"w$tld�3�>51E��Z��
|>[X�(���c�#�Zr]�I��	э|�F~Cèf��8�������#f���Nqd�Q�t��n�h,�	���[mY�QWW	S;��쬄EyO�ܖW���T��c���%@QQ���UE��e�3�#	B�
g'�]���!*`Mr���;�d�`ɳf�-4�F
g�7V+���~�Wr[�I�?99�KK7��v������v,�jw�Z���]O�YO;�N���N=�K��١���N����i<v�)r�νq�n@G&O��g~��1����&O�l��$�<y��gO�8=��q]ն���ޏVI�[�Oʤcɴ��s��[��/Y6X$�ڕ��ޟ�$� 4���p �i�Q�r�в�ι__Y���u�"�H*=ؗ;C,#�}��H�d8��S�3��p��u�a�,ިT7V�<삒�� �;t����;v&s�ъ�>�ڑy�|G{�6�*�.I��v ����_&�m%?������.�sT�������g��A��?�ڐ^�����F{ʦ�p �!ތ��Hgvw˴��bU2ZqͱwM၍�����U�"���o��+������irյ�|�����Wڊ�Q�
%���gW7%EBm+�wtq�ί}�o��x�pMb/ܚ?03�,���{xz��F��j��!�j�tku��7o�}��q>$)䛿��ow�&�,b(��aEq+6���%�� �� 0ܓ$L�-�;I��s��K�m��C���[/?��޸q�"�`��H
����J����	��b ��us���
��4����$Y��`XUd�P\��w��|��!�B�ib���E}/]�t[mu*>6;u��>��`tE�uO��M�\?��R����H~��>�R.�xE�^��G�G�v�ǒ�md+��f0j�opv �ţ��=���g8�BQN0lc��>ӟ�|m���ET`����Z�%��wp<:�jf�R2a@0Z��x�ƭeۂ��v��s�n��q����3{���R�v]B8�i"���d)���}j�T!lqa1,L�:N�����by)�1'��H�\��a�k�0۲p%`��'������fh���B@�l�~��j���S���Ե�se՘k��\^��+>Kc�z��b8���,���!�Ǐ���&�b���=������K��¦!v�j�+Z���ӟ�?��ɱ��.X)����a��x�.d�O̞xfߙ�Ӈ�@��i7�����T:
6��ޱ�?�Qk����''v����珳�N� ���c�N��>� x���ɩ�ѱ�C��"*�| ������+�߽�0t��8�S+�,�)IRW�$"�b� �ؐ'���6,3�"��Nc���p��p��S�a.�C��=@3�a�{�e�Ī|ݩ�sz=�^@A�Y���#���d�^
��l��%�=܄y�s�f��P�_��8�3����M���mo��#��N�5�B�a�^ýO3�yC��ԣ�ވ׮&��G�x4=R_���P�����(�s�|�09���HΤP]����,ctjm���vW1��T�a4@�d7���v�MU9��QHR����|���6�&���R3
<y�
Q���GT��JUg�m�V�x<��,$8�c�(b�.k�
�
� �?�,�D�
�
h,�p>a8hC�X��4४Z��U��|`x*C�3��J�c@��A'b��D�ك�՚�B�'�5��ٵV����S��3���l��X�r^W0K��,�A.�],&E\8��mZ���$3R�����rs�����j�!��|�ߪ�&û�C�F-��������z�Tote-20�i;[���������S|p���3�"�S�G��Ħ"�:m��V��zG_/�����ر�#��w��]XB4���2���uK�H�St���#4Y+���#	�2�� �+j�B�xrr ��	��d�q�/��jN_/��vǚ���)�H�-�T�'�~Ag��0�
ܛH�\ps<�%$��#�<N�����,��=M�5)��r1�35Y�ە�n��"���D��}��[.�/�6�;�ƳA�T��*�q�'�6%���N�Vkƞ�Q�� ����I؝�s �y`�hܸ�f����#���`�������;�N�*
�:<�k"<�o�4�"\G�Q�P���ţq��M�-tc���՟]^���ht0�ʺ4�;;���ف���=���;�R��r,��ڝk����߻u�P+��x"��Y��m1�9�p2618��`�����+��$�|01��cg�z�}�1~��ə�Q˅��l��D�:nx���d���{�U~���ܓ�Q��fz�~�Q�$+T��(aOb�����=,r�����ξ��7k�"��ɮ��;��x鎦�/��M��H������_Eȭ���a9<����K��j��R*&?yp�jA9o,��X�@��9���h?�G�	��]�%e
>��G���N�2T� B��`׷�T�5�@`w,�wJ.F������B��MWvd��M������\���@�5��h�_=�A�oř�i�
U�R�4�uB���z�`�t�x�a!��A]�M؀PG5�BޥX�t�
�|"9"�;���ۦ�jJ���"1h8k�;U[)m�X�$���
��H�[i�4�� -l%iO��6	����M�!!�&,h29:=0(x�q�����fWW�B}�<�yI�/����ڰ�fS�v���ͅ��$MKON�)�V���0ȅ���v��qDx���k��p��H��Rlu������ӡ��h�,mU���^?�x���ј�����TkRGj��v�]i��1�0oi&�2]���?:��y�f�ab��H�/�)_rͶpe(�X��(Hݶծ+�+f��ͳc7�JP�T_{(h��b^��l�b�����ؖ?mY��8e=r��P����t�A�F�u|}m�Ѣ��z[/׋���ɑ�����ʋG���+�Խ��3�v�K�D0|�3��p��)3$�	����<nmo���N+�jǓ[6m��X�S�����_�ញ��~��F�k퉇F��ekRKj߼�PYo<����GB�!7�)��O?���]E�m��X�_K�q��cg��չ�o�蝹��ph"=�ԁ��dz!�<50�o����7�_�ʪ�>X_6�ҕ[���'߻����*�R�a���iH��ɱq
�F���P`-S�F�FN\`Y��]���3{�>�����ݹm{�M0H!>�k�Q�t$�`�����G<_u�/�{�����2�;�X�����#$����%�C�n���M4�c�$�M^�w���
��F{�6��x��;��`=ņ^�M�x�Zp���`$J��V�]�-�+�G%��QwW*��̕����X�[<�u��C�ɏ2$5<��V��a����ć��{*����.�h����^ǹ���Y-��Zr�Ӧ=q�ݕ �Pa�_��i~���lT�w�:�����ê�ynɵ�b�h(O�F�Ķ��LPTT�+2*�=rxK�D.�R:5�Ƕ�[^��;:u����)�Y&�����+��Ͷ�:�f��@�#�K��hB]����D�G&�_<xL���z�UQʵkં��@��x�Q��]���IL��i{|����E�0�5"$Cdzr0�za[��T @�|�t7�01254>tq�&k݅
H���N��I��m�����?©l�V;
�&N��1Sq.��� *������gϞ�)�~x.��	s��ͯ}�W^���;W��#)���E�S�jH�x�/�R�bȵJ��h&#B�S7-��8�Ja6�^)��Bx�޼�Q�W*�q�{a![P-X�v
��e2Ws-�M��2�K��gi��"Ͱ���R�z�����I?c�*��?8�L����ⱴ�iA���;�gM~����ݶ'@FP�j�ܖ�Y�2M��m�7��p�D::����e��H�l�cLa�7Z2G����ʅ�s'���J��#�43�lf7����y����Gi-1���!ea~ˬ/]L�Ǣ1�N���5�7��[��w�>�����٬<��ΰ�g���驮�G��x�H�V�����|���4�(55����j��FR}Q�<�w�
�^��H��`jXa�j+j8ex�.`��FA��we� ��aKS���<���\+��x����n��ݺl�o��+/<��4+���2=i^O�}G�W(��TG��}
�;�HAz10N�"_(����ο��ØW��fqµ{,r�I���h!�Rt��Y�ʊ����o�����D�7���[�e�;g��_��k�MUU%S;;jh�|���8Guʲ�wt�%�R�=��?��Ӄa����ڨ�`?D"5Ig`ʆ�Xz�Dz7kg���u��v���v�٨G�!��O`�k���=]��������a�e�%��y���w+x8�˗���E�V���9�
"3�Ҳf�B� H
<FQ�*�fZN����⩽�ͭ-����$+M�u$8�rM��ؽ�K�`<x���RA�5���u��;^;��B�i˵�I0?~�F2c���$�ުn�!�0[�E��|p<%`����BuUs��L��/<CCd�
j�\k�!Zj*=>{t��������O�7�����>}�o}���-�J�pt��܆h���*4�?q��K߿��]ki���Ǘfg��H�`�8ln�|���b��ʱ�AY4�����tl��
�Qc��h���y�쮉�*�n��H��6�&D�Ԇj��"���J��P8Ȋk����"�PO
�q�,�od~����0A���Z M�ʃ
�+�'R�z�>�WA쮔9�SG�ˤ0Aٍ\!
G�+����{v����j��֒��N�/i�bۀ�GB�z���p8�Lt�D=�FOB�4��`<�В"ƙ$*�?�[���K��\����#������Y?t�ȑӳ�l�򲩅���Z�a�p�.V�ǎόǓ)7f�xI��jKws7~~��۫ףt��ϼ����je�opwf"[(֫姏=�i��F���
�t��.�qkm�h:��	O����oj���ʼ���gGFSYW�`���˰�7����{x,X�|0p;Ćfg�S8�iw����n��4I�8�B"4�]��Z���ө>ܗ}~
�ב��d���p�o΂|8����3��K��H��:�j�$Iߪ˛���Q�/<��X0�$� ���.z
=�-�����n�)�#;^���!�};�4���^��?j��nG<�f)��|��<��/�T�c4�/�K��p��Z�Z��{�na]�);����ݑ�;[�m5Tie���s���%���[�TS���
dC��)��*C=�t���ޚ��~��1RPUc1����g�&>���ں�����\`5�G�y0�V[�`!@K
�0V�;��C�J#_Ȃ�k"4j��+O�x��U�B�A��$����5�%�̕�N]n��t������>udp8-��B�}o=˓�s'Ov��
�U�M��Æ��3��H4��t�c�Ɠ(A��Vay���X��M�ښ&�f8ӣ㡨pgqN@�Nh
��Ǟx��ѣw�:_��1
���:�	h}{Ut
!��+ڇ���R�p~��}lW��(���]���o��nU�7��?}������>`�A�J��.�:d�����u@���jJ�L>rx�Y�Y���8M�,M��u��m��e5?�����^ѐ�9�ruW�$�b�uqu�!H2Yx����J��)�'���]��)�-��8��;x�}#k
F`�P�"�p0�F[���+�������:D�b�5-�{P��b�"�L"�r_~�Ӌ��F6����&
��b9���̮CҞL�z��n�P=e'�,V�5]9z�ȋ_����T����C�x ���� �%� ~���Ŗn�Q��v6泷~v�ͷ\S,���/}�
Y���_���NE� �4ꭇ��J���U&̭u[�ݽ~����ʆ~%���G�;�i��ƒJ�}vv���n�K�0�Ǹ!}*�y��#��h��˗6� =0�
�}��� ��9���rQ�u�a 2}4�Ȥ2������+�*���C��P_��#�����q|���_C�9݃ўC*B�t���g��7��7"x(�%e|���P��J�H��|��]�g�i�����Ec=(V�z��Jy�v��[�9��x��\�-s(�#������,��Na��^�("W3hc�����#�o|��0�q�{�sy!�°i�G߻�`e}ij8q�\����	Y�n��"5K'p�#)�aEI��L �@�FҐ�j3�#�tbd��t?�_�
Z�\�Thb�>A���Q4�o-o��O��&)R����(B_+ia���u.��T
������❎k��Z�Ӯ5r�v�Z(u:-��[��{��88X�lɐ����C��Z���e��\��pp��[��|����
�G�Q>\�X��vP��}�/]�bsf,���T �7��M0�$˙��Z��`��e�����w5�E2�bAn�B����ϖ�����ɡ�}.g}x�	���N,6=��3�^�ߘ{u�Q�x
+`)<<1y��o߽W�
u�}��}���l����u682�l����*����p*�L&P��v�X�0��a1�tM�z� �	
o��g�L�vt�[�H�%�SI�9|��%m�'�BP@uS�p"3<Ԓ� �^�PuY�q��`�3dCQ�6xV��Y�`�P)?�ء/|�����7��W�G.ͭƇG�B���A*�ЩDh����6�����^xx�O�l_=�y�NNW�Ñ�t��|Ӱ��r��U�k��]}��]����O
�,�ʅ���V��V���x���=�'�G<
o��0���\��?��w��y�Y���̩����7?���o��U.�����|�W�ߞ/oܩ��/ֳ�`�3,B���l��H*��Z�+�����f�;8#��RCnwf��^z�O>2����D��K���>@���ktI�R+�,�MN������Xo*���$M@����ӿ�go^�x��Z��k%�ŭ�x�W��mpg��k�D�ZxO�ط�� ���N�P����.���}��E��h�{�ll� <�e���CP�rb������b��� ��C�?g���XOZ��%]���⒂1��2 ���&Ȝ6�,Ψݶa����'vώ�?���;
�IJ��W�����9��w޼rQ�m��9��J���
��ct%��l0īZ���m�#EA�K=8��zY�֪ݛ��???g��C��j��\��0Xy%��Y��i�8lk���{Ʊ32b��kH�=��v���4q��2�pJ���^:����Aޝ�
=~l��ڻKn�(�ŵ��M6�rn�b)"P˞[�2-��p��V+�ٟ ���Օjyuk����<��8sKw������O�2�B|��,f�bE�5�"6Rk�/��֕�{�@Ơ4����6�৙�؍�����5|�_h���}q� ��R�ƭ�q��f'8M�w�_���N�,Z�R�V<���!.9�Des#Wi�?��c��ŧC�[�������N�x�?�����b�7��nwf��{�S�p�P�L��Q
�u˷���a�i�?��J	�z[�AR�t��4%FI�����,�6AL�1	�b7�
 l�uͰ�.@^�����4MI]Ie�f���t����K�|�
I:w��ѣG<|�P�JnZ6KGRiH��+ͱ?�o�_{��Q��y���@.ME"���_ܹs?;��������#��3�B������h����|P�YT���X�#{\��$��}��w��?}�Əs��d��'��912;�?�`4`"���把X �{��&��/���k�/o>7"H��j�M�Y�ݙ�y���mu6���zCi��(rb���_~v�db�杫7��^٪{��x�d+�r�r�������R�'PY1:�
��Ѝ@0T���%p��C',����A>�g���C7���S�sl�3�U��z�](�|��^I��zZ)~{)��Ŗ���=W�'�g�:L}�+�SO]|������,,�֗��� ۢp|Dž,o�k��FCxd�?�������X�#� �QSl��cue-��!�]ܸZ�KUl]WupA���.���ԜIGb�j9�	�h�3��d0�d�0*�B��e�;1xz߾b��R�$�.W�A>i��F�C‹j'3�w/?w���j����΀����jP8��`�Pp�$n�7�yhr�pq�V[�v�
[<G&#�w�^9cu(��s'��f"M}��΄����ɓGO���O���%��j�c�LH�L$*�n�^YXdnqc���p��U�k��!cã�g4��J�׮^�lg=<s�cr]ܿZi7�\�4�r9�H$�|d���Tm��㓩�~�F��'f�rak�@�/m+
�tLE�2�_zш�.��d���cC�|��;-B�����F���;��y���w��ƀFmk�|k�%XS����3c|�t�C�3s����Ee��~�D����-�Yӵ��S?39_���`)������0�*Q�˗+��dx���@���d���
cxK�mo���x�a8#b!@��,�!(Xv��,�[_[1eݰ,�u
��hXA�W���x<N�j�j���]8�_�!/߻��d��嵦<u��s���[���6O�|�G&#B�֪���+���[���۬I�}w=�ެ�, �	b���'�֛�}�3�?M�%�u]���+箪��3'猌AA�DR$E�4E./ɖ�%K��eK�^��%Y�ߋP 	���H`r��9w�\�r~��WbX�:�����}����}v>��SS�]S���ir�a'���t:t���#�}6j�b	���8w�_���?�����pf秏}��LNN����B�L�>��c�d�w�������ƭ6��DY�ClC1�t4|"��f��Mmey���cv��
|���=�Kg��C�b���ߘ��ޭ{���f{�gl�cC:ߑN����5\��	E͡��I�\B�����U�b�����
G{e
���5�ﹻ|���>(��ݯ�uVu�_��=苃�x�+�y��]�_o�;�c����__D��k}�#ڎ���׻�Ō{�i@�{��=
��}:��ܬTh�lF!԰H��0$J�KPY��L�5���L&� ����Xtnk;L���o�k����W\��H�q��^cV��EL-�O�I6_ނq�W��(��3�"\��� �����P6���o��a\��X��1�$D:$��.l+�w�~�j��0�X�J��ZX�
x==��9�.XȽR�Ё��/���v��f6�&|��Х;kop�G#c�S�K�s]�;d�c���u�:<�g��#c{Cw6:\1�y�F�T�I�e��/����{�U��M��� 1�O�ٔ.JB]�Ql��Rcdb$�Nv�MUUx@�u��dF=v"�0��\K��{w�Z_��P[>��ќiI�wXc0g��m[
��{�x�eWWʷ.^|��J�ê�'Ǿ��Ϗ$G_�?���X&Q����o�+��N�z��?�����,�*6W�������ƽ���9@\ʖ��s[�y�!�s#N�J���6VW�<bcqk{SDˆlw �O�.돵dc�\��!�H���P,��W�=��+���o�ժ�빁ѴW��p�J[��-'��8�Эz���}篞&"��ն˙��R��Gs0΢���ܴX����e^������}��ߺ�Q��#}�J�wT������Y�)v�������;K�K���A-��]�r>�qE����T,����:S�K"�Q��?��w�j���T*���?u����](G����l��R%A�tBC2��zisfcb�	���=-ۚϑ�pt��C�Q�p5�m��,ɚJD�3��p�!v���ݙի׮��?�?w'<0	Q��]�&�E0`�}`�����f��Y���LN9z������H��ëOD�5-��UH��F{�M��X=��qO�^#�	���|�"�/���{��{��=��[y�v�փzǂ^�4��]s��`O�L�{�����GHHo�̱��$͍�fہM
����"$����LU���$k����g�l�@8��u^�E0�e����CC�NM���lAT<��hsM�#���.
��m�Q��TS�-�#��D�%\S�
P]��wO��{dxmŀ�V6-����hVe��#���V���`�@� Rb�[Ai�F�͙R���W�io�E�A�G�b���X�վ7��`�G^�.��x����6�?�x�N	�v���s���N'����ٝC;�?��|W���x�/��O�S��NSh
��T.�ڲ!�R|�� Nx���*��+�R]4�v�o�%��Y����UTtՄ��$�XKC��HG�6��BvES�j���( ^,�g��R�Ϝ1��՛�󯟻��+����71|lxp�����S��+��Z����_�Q���r�����W�tl��Vh�~R�������s�J6����
a��4��p�䑃��k���g�.�TAT�huq0M1����n�巛"��yVl�&��=�<x�r��q��3`�"pİ-�yY_�o}��G�w�v�>�#�B�A��,���q~n�ڥ�_|��H0�����#���-��FB;��	y�Ψߗ�|�h����.�xaʝX ���A���56��֚�l��:fj/�9��O=��O�) p0�wm7D3�X�\�T��������������3��y��'��m��gw�bb��n��;
�ڇ�߾�9�#���tE�M�E�}1���ݬ����F��m��cON9v��v��SM߾|����*�`P��dͱ`��	Tv���BQ�D�֩
Z�zl�퀁u ���.6�U�Ƀ'��u͆���;v�}|���{��t������mz�SHoۋ��v�/�˽�~[Ӡ�&�=����C���Wȍ`�*��E�ʲzUW=�>���xΥX�T�WB�M�;)?�o�|�rv��>�]�K�m* ɚ4k��T��s�0/{����q]�
[�xy1��z]s ��z�6�����bY6@1�4t�uE�[�ڷ4�Ҫ$�@�W��M0��b7���L����(�ݧ�O�bwf�
F-�YD]�(�+����KO<}`��zS�Ȑ���m��)�U%]�$����`V��"*������F�?y��|4L� �}�N]�*��+�rÄ��`��"YS�,m�|�q�^�(;�����ر#Gv���\���#\Wq6+|�R� ���\l��뻧�vO�WZ]��{��:���IEzɉDb�w
�2!�Ү������'��]<�o���d̬���8v��}��ؠ}�*k��W�K���/�ă#�Ď�Π/T��"���{��̲��a��cX�ǂ�5���
�y`G��h�f�υ���ҕF�/�:<�+c
);�`���|�\)�M�MG9�V���{-�H�kp`9^�\U27�QW����L8�6� ���=T��1���|�\e͈��dQ�&�޼z�G'�L^-nѨ#�.��Xt�بT�T��`�܍��F��0Q׋%����
s�&Wo��{�Rụ�_��F��4�N��tp �z�䩑p"��Z^۳gꥣ��x��'O���dUo�g�
3��-�p�C	ЮWЯ�fI��V�,ǓGv����'�
�a�Ӆ8��.M�~��]	pQf�0��H~��/W��`H�L4<�⮞0��@�!+QL�� ~����/x��_aY��o|oqu�*�P^.BV�
E9�w�+g��$W�t������O=�̙��
 ��~�N`x.�[���R5���Nsuk��FDEEw�?⵪�������V�XRTE��MڽZ���b �RH�B���>��,�&{�<��܃?o̲,�<��4�-|��v�j��]A�v��n8�Q^'cq�#J�	�N��f(>��LuA�.�!(j��e{�׼7&vdEkv;7��4���܇����b�q�Ei�*^ju<�&M��8*>���.�_��p���o{��3K[��6��	�-�n �/��%Q���Ֆ�}�����*ULT�Lf7b�.�8�V�Ph�N�����k�%�& �-ϥ>�{����o�u��04�jr`�W��>{��hy�@4��3Q�pߟN�{r:����K��WW���9]�	"Ԫu>�:�U�$���i7a�@Q�K��dv(v���bM��d��#~6
�6��ː��k���L���Ld/�U�E1��.�^qu���|��'�����W��Y�7�.(�+�
�1��c'=yvם�W������+7}c���\ecʹۼ\�m��齑ȱt� ��{$�h�,Ď��#7���9�c2�D�R}�t���w;�o���G��Q8�f
@�}�Y[]Y/ll��%0��`�Mfx]�%Ӻ����8�qwa���8ڳG��b�&u ��]L��x�.�n,�D���T�-Uk8G��^l�,��J~Jƞ���Dm{ce��(�}�HN�!�W�pv�с!�|i�GA�7޹r%/A��n��ÙYj$#���	��/޾����p���y���#�wW�\Z�woc�R�p���0Jz�(I�Qw
�[��VgVi�wpb�gN<~����@e�}���GUD�[�@a`Hi}Y��x_����Rز-�O�;#��@p2�ɲ>X�ECbqʰB��0�`}	���E�^���F�jR�>��-���ͮ��6�,�� ,�ƒ��&_[Y_rM��ec���#�P�
�h�b]�ǀę�l���\:�N��zP����3��3�ޕ�O��屑��/Ȋ���E�D��i�ҝ��R��ļv��Ǯ�x�~��IN�5[�U_y�u4�ᆡC�W�J��Q�U��<`e��ŋI"�U�p�n�۔�n��(�2�S�5�����/��7�+�$��Wg�k��˺�/L���&A�TTH�d<�

!/�@N�:06L�xD�|���7�>�O�?|�3�$�?,��H��|$A�yiK�1��B&P��8�:>�G2���[hvҏ�Aϟ��kW�n�
�@b3_�t9E�����)��X&5���^��o��0�r��hWR��W�*bC�"p�T;N�E�l:�=����P?m��~���ö��VKq�����s��	��C��ր��z)�o�n.�&i���;CT�Un�ؿK���bڪ|�ޭ͖H�X�j,Myf�乴�(P��\h�w-DƇ#�Z�PlG�A�Տ^�%�פ��Z�ԗ�I���?��+�*l�&�g�L��~r���#����w����� ˀ��H�9�K�nj�tm��1�[�p�JBӻF�p�,)���Z�F# _¨���t��%���H�P�R,��/�n�6���R����b����
��4��r�]j�2Az2(uycP/��$H1dG���eI�iA��M�?�q���i�� �]Y�5��x&�p�z�P0�]�̒w
�a`_.�m�j,�v\��o�u��XD[�EҲ(E�~�v���o~�Ϟ>>2���?�vu����;FOM��1Qׄp_ ��ɐ�.�t�!j4t�%������g�DDzd��g˄���U� �J�֭��A
F��������]ۜ+w�1_�@t�y����j�	�qzg��;M%�3C��ղ��,W~v�\G���%eC�n��7D�Yotޛ�݄-����?ʄ0^+��,���>26��/����Fȟ:����2�;���ەN� �x8�.��>����IB���x�=��_�0���9*���t�?�92���v��}?�jJ?�z'0Ի�\��Y�?�_��V��5O����ބ^���ަ�׃�CW�"9�i�t�o0�c|�S�z���������ƙv�ã$H�
��p��]l���U�5^�,�"���s��l��/�^h��b*k+���o*��QBxkĦ�6o��v�O��<v!ұU�Q-� 4
ALp�Y��bY܅�#����B{�/��C���݉���V��H:d��;��Ÿ B�@�
�;���p<�ڨ�U@U)O���	$(S�)���c����0��C1|�I���Ս*@Ҏ(X���Y���������_o�e�0&ʖ���" %J֟��s'�a ��ej"�^�����U/�_��O�y���ܢ��t67�^-�m��Y(��Olj�g��K��ҕ��p4C���
�N�(�_*��4�>���%�C�;q�oY��w��W�w��.<�1&�s�›o�Y|��C�N+�܍r������N=��Oݼ|�U<�@���6D�$�x~�sp��iI�[�rAM�X��!]����B��r��A��}��(����At���G��
°��=�xf�!��z�4� EFI�Zn�Cq��eU`���H,L��}��xۺp�V]�(��Z���.�&��O<�LE?�p��(ծ�
��➎�Gs#�V;b���1ך_�wb��p�/�"����3;@�;��}�k����ʽy�J��R-w��c'��<_��;?9w��'_|*	T]���p{33��:�fvzt�ľ� +�w�݃m��Kݙ��E��
80���ُ>��8�Kř�?����{��98�a���bu���O9u�G��۳��z���*���a�Y
�FSxK6���V��U޲L�t��@��r$��G( �4���O�������EE�����"�B��(��S&��a��R<�^�z`a��l�Au{o
-�K�d���O�p���^���?M&b�n�v�<��갺�r�
���I�g�N"p�ozuޱ�m�D�m�v���)��	"	�b�Q�i��<�krb���E��-
��o$9�XCl�N���p ��%�vM�t; -,G�l�/�*�Ѩ�! ����|��).,v:�F�N�M��*��&�1��jK4S�(�_F�Dv��n�5�ϖɆ�z��*ʽ{����B1��uGh�������}��9?wsFq�<���AX�~��;z�+3I�	��܆
�/��:	�񛏎���S�,BӅB1����nCB`;��f2@q��z����p"y|W����b������|�Z�l4���_�-Tx���I�vqW�u�A�ݙ�>�t` 1s{}�����D4�d�@��Y8y�pf�Y�F�"�D��z���VEa�����18m(:���
��x����;u�#���,lw�@���"�a����V�^gn�f.�'=��?�Q�n����s��8�7����Woo���۟�U+-��2,�]�8�\qzWR-�	S�^���0�͹0"KR��������i�DU�Uװ$�Cp�"�+������] �H�q�8��on�m�G:� �`�p<N��#1�St/�r��0��ms�'_x���݅9���l3�d�{�ߨ�J�N��©ht�?S�,�M-����x���<wd�ՙ��k3�~��J�Y�Ԝ
�0�%!�LL����_),��������>��_����oa"�3�O��Ӊtb����o�V��h��}�@�m�b8Dh�|R �(_�凝B�c�`.������2w�o������tvr���Z����,�on���]Y���#�����|��X5=~ȸzG��/��`t�������}>.��~.��d��7�,srdrwnL�������D:�����W.޺w)�J�0
�#w1����b]�����]�d�R���e��e����?�<
~����ͫ�z
��c���Ǘ	I�k����ez]'��Iy~g��g��3�gYv�:Ի�n���B���m�W���R�|���\,84~0�H��K@���b�E�N�Ea�2�f�b^N�{`o4՚y�d2a. �-Ð��ms�%��QY3a��|_b�?ݬ�S�0�-*@�l��lm\����wk�5>l��MB�3�OE��e�f�WY*�@�Vo��j9Rns�|sN���DR�u�y�AL�v��Σ4c�W��h���n��8:�<{bz47
��Z��d_4X��N���s��f��@Z��3o^>ar2��L�
���x$�֝V���>2�yw��8J��\� /���0f[
^NF#�3���ԐM����K��r��q�bY�(���mӶI��d�-[eE.T������H��[�Ih�]]��8/,��H��.��v��?w�I02M٬�kfм#��o�bYV��_�{�*�����_����7E��9
�!��/
S�R=�U� ǂ� (���f}����1���MP�@E`c�� ��o��D��xGF���a�T�6����H
��b���F�-i�Cc�`p�B�g��?7����4vm���]�h���I[�5jjJR-^2x[S�;)"H0,�ov~esy��;<94H��z���bEhY��������۷(�.W[K��e�> C��!Hr�<�k?��F����Ѩ�����ϼ���A�*���A�u9ꋌ���p2H���Ү���4*۝p4T.T
kk�t�?�al0YZ�o�]��4���Iو��[(�]*����l����[���x���J��_�������d3�jl7���
����ڢHs���d[�!�ޱ���G��U�,:L�0�"�H�@���L��_^]��[��a����9�x<F,���0X��c�wh�[�B�R|�X��_��h�w��z�����7ͽp��g��0$���B	�@�tEQ�.�����QK���L��ku��r��I�t��㘇W, �>�k�h��"��IT]�Z)U��|���	�"��T39"$�<�5�$Ө6�r��ZMm�
�A��5e�/:��e��Vs����BA#����(�ǢP$���?�XOU�����~X�3!<���w�ӏ?B���K�$��31��b��숂#i:\);�ϱD���ٕ��ᝩp��n�M!���F���3��g,��极8�c�RSS���⋧Cc`l��Okm�b�༩��C;ǽ���l�H��خX
ĺW+K�p*��`�wM�#���X��/p��Q��۱�0N�ln�|��c��H�J�[���ZZj	mG�-�-��_, V��[��P����o�}x*�V��*S�9ؗ��֕7u��j��K��b���,���\�^XZݚ�_]k	�&��z�Aƴ ��2�	�]WM� E�UMEP�h,�����O�R���u0�8F�s�(uE`dy}�pWuMv�Z;�d�� q (L����'ʒ��k��Q4�r>�թ�"� �ln�,��'yW5��n�,7��2���m]��I����ū�6ð���wX�vϝ?�ڳ/>���ޒ5�ݥ0�ԝ��Bc[U
���&ˀ@(*�b}���T�;�?�ՇV�U$8�?8}v`��s�~����g�a���?���{�U(?L`��
�l�ښ��EIM��t4Ig"�����\�R�ۍ����K�U��
�3��b��%
�G�	�����텼��t0��}U#�o��H8Z�t��/EGvݘ�u��U��(��!�P�K��"ǐ`�q����av<z��ME5C��,a���*vZ���yEڵw���567���%�
��ç�ٝ��X_2��N	��9���%V�m*��P��^���׫�e2}�WS���R�W�	T�
���$Ukv����� @i������c|q�Q�jw�u�t��&#$�rm�1�ي{��uE
�`�?=��}�S_<8��wt��M�d�@"B��/R���炕	��Z�X{���?��w�11��/�py?�ܻW�[��Zg �\���F��H�m��ݵe�;��*ZA�9��g J�ejC�x����A�(�/`X�cyA�;R4�b:����[�z���/�U+�0�-tu���U�)*��4Uh�M����q��rŁ��^�t��`<�کԂ�G0�ڳ/=��K��?�!�V��%'(�F�z�Xꨒ!��b��ö��-��]O��l[B���E2gǓ�r��f����1a�	VZM�pS���&r��d,ܬ7����h�x���z��\�hzDS�jG����E^�l�5t�Dz�"[�)Y:J.�I��>}����_*T��G?������?�e|9�LG�p�;�v5?�,�vQ02b	�6�v��A�B�4 �k���i���Z,��P��/��P:G@���v�B?��9��0
hQ�����r��4,A�"!�j��@$��5^�b�ڳԩ�0��h_��Xݵ�2"H�����m��W^i��N��o	ö
���`��F���EC�m������W	�8y��g?��W�J�	)�����h�A�����/;_z���S{Vg6k[��z�ԙ��=ۍ�;wn��73hu���jv�'%WCz��8!�g�@ő8�4;��PpzoZj|�={�J}c34ۥ�W?��ɱ�d&8��Ч^����jct��9�G��,C�>��7/\�5���3g����rL�w^����[�gW�]àI�/MD"^��l@L�*k(BR�ci��y�����{��m�"��u�rC०
�@�|��KK��U�o�M���<��^�S���j��L�o��?��C�~����ラ�diƇ�,����Q��h:ܻ��SL��6󞕠*<�wrp�?3de���1f��)��?5�
��%r�nݵ=�YP0��dY/β���,ᘾ�\N�Z�s����kBf&��xq�pk �4�|��
ǻ�h
A�##��h��g����<���򦼴Ҩ�
6�:"��
d���k�Pl,��"KR$�A�ޙ:Uo����D��T��a`�
ޡn 3L��At�Xp0_�c��nY�'��J�c�T��X���&P��BE2A���JJ&7\�)t+�3>�u�R��z���O�����ƣ��3������u�`
�zfb�Ç߼z[�u����L�aI�4�� P!Z�P(�S�ǃѤ��Ȥ�MҔ�ڪWꝳ����=w����6�G������i�V?��ӃéF�S���hز=a�}��Xm�u�,5��ic7̈́}!���;8<�YiW�|wG -rU�O�9�}o}p^���Q^ݓ�i�D�'��4�c@K��TBU�o��~`�D �MU%�e!�e���Z�P@���8Y��*��
�j�v���X~��o�]���=c4�`��Q:���#V$�a��p?a˂�"��;v]BXRa�
�4��́w�Z�*�D
#�S�x�h4Q��BL��Z�
���Ͼf|K����a�-] i���{����#����p�Æ0*�"� w�8LЂ��c0�G_��}@��J��:E���宮�̭/�s�}'o�.�����n7K�}���t�����
�8#d�l�̌�	)m�ۅfmyS������H,8t���@<�n+R�U�h��p��up��6�Qɸ�Q�a���.�Z��w�V���@�Y��+
F�\�Tʗ[5Hf��c�Ѿ����n�#!�޼���Lv(*F��-�V+oߛ�:�C��+ o--��޳�/(n��DY�;���[q`܆!XGL���N�:�6P����oe��}�'���?�&h�u�q�
�I���\)�� ��E����#/>�����ח��"�@#��d��2~(
��lՇ'ǦwO���j9o5Hl�\u��0�Z�X��� ���v�����^A>����إy*��!��D]U�
�L����ȧ�;62���
#{~~G��[�2�n*��-M�-C)�1�����vTa�۝m��K��&~��/�C)ג�/p.���H$�#��40�\u���d)ƅ!��ڵ3�+9v��S���S���ˢI���?x�Y�	̮��
cw`��X�Ŋ|U� �-̮��W��0�Ѥ��彏?xz7�Y[�e�G�p�a��\4���fAu����>�kpX��p�k�O|�t.��_{ꅡ@�4`U��h�m�D9K�4�D��ʪ�#�J>��޻�E
�9tpaf�Z���F�w�Q��by���*�x�
�_� g	2?-t���Ti�B��?�1a��tf���[�X�;��'(��Hu�kx�X����.��iZJW�I��Α��n<�iTG�ɔmي����4K�>�c0:O{UѶ0���L,�b����s�6�sð�˒D�zP6;A~�pJ�ؙJ{(N�X�2�������i1�yf$s�U',"F�~�!YUR�+f�X�2Yַ{p�����߈F�a�M���bP&��F-
{��i��v��:�⍛��O�?T�,�w���Gx]��/�I�J��A*��Ծ<�� ����Zas8������B~��jP�O�I&B��-�}鮥;����3v��կ�����m��l)7.��Z���/��:��G�n�I���nܚ�Zب��}t���3��V�\���d����t,*�w`c�P�T�~S�$�	s�?���J�b���L&�E2,�1#i��KfP"���H�q:�@Z�)
c;�C�v��mؽq�"K2c��Tjef��K;�h�Z'8r���Ӟ��
̯��X�c#�HHҌU=5���ڽ�L��ޠ�"������ ./]���P������˧�H��lz�1]��];�G
�)릡��﹕�NuO������h�]J�9|9���<r�i�N�nlP8;�����'z���݇��=���o��_��Ok�_^[�����DQ����^����C�*�7e��鲣9*@o�d]�#Q7�I�v��dM&��9%����J��8��(YE��WΌ�|x�6o;@ƿy�FS��Z�=;Gv
�ܾ���r��̧y�;\MѪ���[�}p�&���Zƽ{7O�8�K���3k��$����׮�om�?����r~�ڭ9�.fMB�,t��&.ޝ=u,���U�bc.߸���6���x�fY��̣��]���U-�28���/?����{b|C��Z�ᢥ&�����[�h�i2^뀐i�.�]�r+ߨv�Op|mkk�Z��EP2�w�t�-$,B:@����80�0�T%I����#È��
MkIJ�R�VɄ&��p�w�خf��l5}� �P`9�`6`�05�
08Ga��,MC��U-��l<m;�揟���jJ����GVd�k	��]�r�(�GMr�k�ݓ	᛿������㕖
ƌf0�4�t1x��]E�]w,��≑@�q�@׾��
�͖$�}�"@oH�2����߸7��X"ŋ�h��������]/?��O^���5��y��UWK�j�* cp���jK�x݊��z2�L�0rmv�s�,w|��l$��[�+�J|x��;�7=9�0�`�U��m	�T�HO'ӭv�TX�1��Pn������hi}��nm*�������B��P����7���5rzu�����ٶ�:-�T4��hA�hU'c���o%�Gy�MM?���U��s<�LE�䀑Jf2�H���g�֥n���A@�6�ݣ�N%���K�sw�8>Mu�`������5%�����/7*
��Ӂ����`y�KJ��z�x��H��|�	�4�	�G�s�*�n�ͮ��nl�1�Lр4�ȭ�;|�@A��6N�͆�$ǭu�G��
q�D*�k��� 	��s�q�ē,S��6	e�
�����O�fs׮����=>x���xj����������y���¹�
$/)�b9>�FzƦୣ�W��]`�B����Gv0ƆQ	�� 0��H�H��mh<�����fKtժ�3gh@�Q��a�.���1+���V�-���@"�O��`CI<��l�wMD�_�-o�6��@±-��cUF#����;R�g=����:{�b"^�$�4�\r*�<���ѝ����z�t��쾉.f4VWk���h9S{��c�o/��UL$��k������R���b����G������ND�&R]�,vj��V�
:��K�LK�Ӆu 50�����O�8�ʟ|�+׮�Z�b1.��-� -]���h���(���(�pT��� I�&��;y�P�խ2�K�T0ٔA�X�u@=h��������%�q#�.�Z�@*~fp�T
ْ���K�r�(��Z��t4t�����n.IyO�����,3[��zf!V��$�`(�c�t��,�u'��Mq.H���ٴL
%dM2
#ʲ������J{�Gv����w���>�?���O
����ٟ�79������զ�Z��s i[�By�@n�ϝ}��?�[_?�g_8>��.��S������?�k���x�_�r�K�:������zKwtcP��L���"��G
���ҹ�~x���-���Ѯ.m���2$� ¶�{�c��륇[�	~
&�VL J�.x.���v-YE�{ӌCm5�� ��L������|��{/\�T�A���O�Ne���wnn���iv��}�>2>q���W��o‘P�vl�&�A�c(�	t��]B�`0��@���^�hZ�LY�ե[�ك;��vf޾�$I"Gzu�8�5�04#���k�jC�g�:5�/��_N<^^�m�e�@f�#�ނ
#���be]�G❮� ���mj��i�W�
 �0d'�7Y����K�K�/��$Ѷp<kƞ{�Vz����J�ʭ�w.�I��ӣ�
^myN`q}�Ԛ�1���#Ͱw8m{"7�zn �C�Cy��!ȫ�P����t�[U��Ϯ˻� ޝDSעL@�T��?�~�G���%B!+�Dj���P.MU���G��Eme#_h�͑8�_�n�?z�
�f�A0�,I{'vR0��e��4!�&}����X�V�y�ֿ��_��O�L*�D*��M
�^:5E8ث?�R,?u⳿�(ķg���RY�,���6���o�k�Eq����
˂���HrD_$�j��zQ��t$4�#�����iA6�������G�$E$H��H�g9�؞�(E��nC�D3�+W�#�>�B���*,foW^��\&W TLЗ�́ 2�C L7������щ���H,b`d�\�`��;$C�h΅,��[c(��Q�e���o�G�@7�FtSOE��YmyK
"d�o�y�՗RT���b�xIG��K��L��h�]*ѻwh���K��0A+�^=
1(��r��L�LQO-�86йG�-�.��f��TL��`��'�]�U4#J�Z���
�J�zmm���WC�ba��O<�G_��t*|{a3O���'.�\X�5�@��	:���P�6.��
mml�)�붑Đ'N��?�cM������ǟ�|�,qm^_^S%o��d��:J�~2`���-�q**�3׮�y`p��8��@�����L�ajZ�:�WS	H�g����?�zE�(��Wnb�@y����㵻$jeAK�f�H�)�zS�����/�bٮf�� 08*�*�J��� ��ٯ|5�Ͷ
�r~�o���6%�pm �)�F'�=�a@�㸖n�ư�;���j�/ql������N��0���Q`a���P(g)j��T&�=�oϽٻ��&Q�bmFH�Jb�p�	ǽ�-E,0�d����`p�])����0dB�?����'	�dI�ԋ�
�R��i�W�^�x��o]�=_��ܚ��ik�˾h���R��A� @�X�_�gu�6���p��pᮢ�'���ޕ�j^vK��
T�d�z�V��4K2oz�;4H3&d&3Ɔ1Cd��0x�5��Ґ&Xk���iqi�P`%_]�[�۲]
�,�M�)����g�1��խ�TK-��֕�w+R2����
�f(��j0�/������u��_���^طk�ؓ���ı���l�v����K�k��<W*K��6�>;=��f^�ڢX�v3��l�Vo
m��.l��[B�Nl�T�Z˭��;ңa:Ha�aJ�V�������:�3����T�_o�ڪn7t}v�x���d��؉Ɂ>����?�c)�3��nR8ȊjZ$�>�ľ�NMM�
�fi;���'�.�V��_�;W���^JkȆ�Q>E@�ap:��{AD��DE�2��q��Y<A �Zy�fam�VR
�*͐!�
3l���`��\�f��+JU�Q">��:�:���U�uOC�!ؑ!û��|��� z6���ۖ�P丱x��W>�(n������e�x��,
E�'}h��/�;ÃCl��v��+�i:�tY]m�?����?{{�ڙ_/�}�ZQ2a���n1�5��}��j���˲,��{w�
��`����F�~��`���]!Fw �/�鍎b�<�Z�ڲ)�V>���:�������?+o}1�Dn�G����2
�`��s�tQ��0�¶We�<�H��J�b�7<|�
v�(\��+�f[�9��ɽ��\��������f���/Wf߿s-li;Gv�ø?b�卥��9�`
Egp�_�J�?{���{�/�ܧ��J�|~u~��sPh5�����g�4�S�;�&��$���,qi*tm&����36��w?�D�j8����z`h��C�٪-w������x�ܵL��Yz(9��L�r���3=ݓg0��D AR%*ST�d�d��ڲ�잵w�>�y�l�����e[ɒ%+2G$�19���*�ߑA�3Twߺ�n��"�:I&(�""�g�0�ls8_$��ᘾ\F����v�[��ݹ�ׯ���܍3�׃�(�4B}�I��]ǤL.��;��/��ʝ���;�;7�o8Z�c�%�
1�����K�M�n�)m��D2���4�eO��
�x~�JѲn[���6��E�g@�1TL��h�]��������q�K
	�5e�̈R�ҍ�0�c��9���i��[�u+eKm8����Қ�GL@�s�m�pq|V�9� �0�lt�H"o�^�n�&g׵9�!=E�g�8kc���߇Z���y��e{C�?��`=�H|�OTl�O����8QWZZ�iy�V��'����#rRr~q��ںyB:�α���-���>��&�Fw[�՟~�ESٞO<z�x���]��:�w��G��G�jW)+
+V��ѹ����TB�C��/�Ly�%Z-Cь}�1���O6j��ol��ƭ�[vG�qs��n
���E�(C\�L��)
�1Yφ�P�[�r!��l7���2�0r�w�6:Uȟb�pb''H)�����NJfYq���UW%��%�҃�ڪS�d���4�{~�PXˋ$
Bm�p��(�.�	4F�T�(��7+%�cq��Z�KW�`8R���4�;5����ۺ���=��b_��C�B�o���߹v��n�\L�� c$��UR���z�ex�у�h��痟{���cb!���+�nݽ|�ң�O�GF�,W����R����7�@�.���?���V��'X�����|Yf�?����FH���Oo\�Z��%@��
��˰�cȝ��FhI5������p<��ک�$�Bi�$.�gR����L&c���}�Sc?奻�M�5��{�S<X0!p���\��j��}��/���o~��>��[\���@��da�������ٍ�j�E<u\���(��0p-����s�,������@!{tz�=�fC�.0�#��G�����՛�s�[�W����>Ȅ��D��(��Jy4?8����=S�F��7�.�l��ʕ{�����e����@�s�fP�h&&:~
���"'$XF�,���
x$�$
��S%��
 �X=���z�c�}��o>y���lu�� �H����!�5��Rl���
2h5
WuU�q�t��j����� �X?
P_�0�S�bZ�M��	� ݊
֚i�]P����D,�~��+�_�RfkI[_P2�7?6��o-5��}e�T*ɑL�۬�6�51&Ѯ?��m{�V���B��&q:]MUIf2��'��=����<1������B\f�\B8��ؙ��=����o���7��̧�ֶ[[M�nt�݈����ha�V�]82��H��<���oEA�esG��_���`�Q�:n`��$�4Ǵ���5�-JBMiW�v[��,E��`��lj*��O�[J�]�z���[����4yI�i1KZNحwNjC<�dEqp�x��}ͱ0��v(ߵ�$ �Y��I*�I���u@��)�p|�q^�J�m)�m�����l:G��5Eʋ���J����V�e��X�i�q�]�X3D�&X�X���\2�.TH�Ѓ?,�90%����6��������#�J���t��-��u���C{�_�����3����⫯�sd�8nv�>�����ՙ�����=����a��`hp��V�]����Χ����T&�_^������5��S��<{�x[M#J'�({�������{��Req}�o�0��[����|oav��c�/޻��f�����ۋ0I��㌞�a��v)���(�D�P-0GP�l2��8H0GG�(�0BmQI��v�n�֯�{""��\��v�ztd�w?�L�mM�H�&��ᤜ�h�/|���C/������F{ӽ�l�#���=z���t���
�\<q�ah侣�a$I	/�гB,`�P3m���ț���/�16�o���y0��#�qYP,�x��j�]Y)m,,m����SG3�M<��Bʋ+��S�.�'��~i��ʕ�6Ej����wר��T��t�)4���kLW��c:��%]����`�Xx�C1TP@<�r,�f���M�Yڮ�����mb(/uԠ��Or�%H� �hK����7�(¡8�E�h]��A���*&z��AH�m����az��'��yX�5z�L�ղ�7������ݡH*t:�Ï�Z�z�F�»��"�а�TI|����t_���6m�T�={r�����K�Pp�CccCC#�����ذR��[�ٺ�P�&����W>��_��W�}�����x��ź���_���v�|��F`�U��89�(W��8ӓ���0&�`f��%�-[�j��F�V�}�7�M&�J�߉��~n���r�$�U�n�5OO���;z�u�u�UĀ$��.3�btR�c�T2��A��E�iIʥr.:��n����u��L%�#	Ƒ�d�44����'��[��82MF
��Ѯc�I>v���c��m�U݊�L_�/�[UV:��fE,H�q7�C�+A�ë34:���^:�x��.�8C� 7X���߇"i=�h��G��7y���:Np�Bj�"X�2t�Һ��O=t��;w˵���a���n�P�xwnA
]���0�8Ѱ͸��7�������n��y�#���c��q��|��:�d��ԟ<q���;&O���N~���ɲ�������ϟ���[����o�������TJ�$�hmW���C��ʗ%ju�Aj������ɲ$�(��:�d��}�8}��l���vv4�N�~ms���\�ٍ�e�)����.T]�~���j����n�om��p��ӧO�8ѩ67o/���#��)Y荧R�Ð�z��܌����{���S����	��Q��	N�c��5�i�e��޽_�7߾~��boo��k[յSɌ��fNds7��6WZ�x!2�b��j�T����^�%��6C��E��:��S�o0#(t�Բ~�݋�Y��Z��$.��c���x���tk�!u߲�7Lپ�>���H�5E��Ҷ1�v,/$dn�W`���<22��ĕ���n�E�4ڤ�� ��(��ʢ"�GzR��-��P)��$�F3����x��K8�VK[m��?4p���-S5��Lߓ�>����U*�`�￶��912<��l:Q��HR,���2�h/����KsN��FZ0�^y��ǵ���VI�i��N��w�қ"���ص�ٵ�;�U����$�����g���f�xgdjm�&�q/��zkaQ�^�aTо�����v�ڃ9b79���� ��!�Q���'�9zW�c�����d�r�6$�I�p��N	Xd�7ݴ˶Z���'�]|�����0����{3��>�)�ʆ��AT�&]˫��e��=50���SK��]��P�f�eI&�ĝF��m����,��k���^z�� dlWdX�C�~|�y���9� d#��`�u�	�޸�ϴ|/"x�ul���d&�1,��Zh7�����0k$�8p�X"��J}�U��_�Y�@�a���rJN岙Bq�U����ۍ/�j(fG5���զV�zXL�.���j+8���d�,ňv`�l�!�z����c�Ʌ�R�������,/�}d��}�Ww��Q=���34��^_���Ҿ�|b@<��?�aov}�`/�����H�����Zm��З�!W�,+a(n	%�z�o:�����_�ugy���G��B�=ӰH�Z�yH3��9�ׄ(�m�fH�5Ԛ�8�h�`D�����M����P?j�{d��h�����r�7��TZ���N�0,g�\�[�]^�s���c'Xp0�N>y����>���s�0��S��4N�X^@��z��eI�Nh�(	�e9Њ�����6��TN�[M��ۺ>��m���G��G
�Ǐw���Z��e@��1$%��c��@��D�h�
@��̮�g>>�gx��u��>��_������ 5=��H�R<� lPް�9`"��E�'1���̇��[隖�!��]Y�)mI�%`����O���p٪��c�6bS9�S��Bw���;xh�����*J*./IfT�z�cGrɓ��Zy(�]wq�hy�����@��`D��������}��=1)�D���l.�{w����S���twA�y�v�\L웬����ع7�m�rq�dk5m��U��ݲ_x��_���������~{��|��t��g�5mE�D��T
=�!Q��U�Vc�؉}]L~g�l���
aT͉�I۴��6Ų�݉l�ciYL�qɒi�lk�Rj(*0 (��##c�{�s�T�����H��iN�&E��6Ӳt|�Ͳ��N*�y��w�r��f��hR�8��CA�m���x��zB�#2%�/�@v-����n��P����.�,�b�<������Y�V|��21����B�L�1�&�f|�	H�xo�穏T)o�R75C�J�z��G
��tA�e(5O����ُ��i�+��W?q>)Q?�|�u>V�ds����Fu+�XN�u���/�L�'���PN�u��~s��#�R�/�$�od�<�O�>r1�ʽ|oe�
�&���t�C݀�
#��#	2���iិ����=S/�y���#�i	|.*����Q$z�	�
D+J&I(M f^�O;�f��B�!�~ĕx��Zk��4�P
^�(�G2XA�7pϷ�]��ύ��~���xl���r�h�.ǤdoVL�[�T���h�Yk+-FڵV>�O�2�k�M!��v́7M�m¾�w�4���C�U1OJ�(ˠ$=ϣi�)������=�э���w6֚���Y^N�nl*!�l�$�|�����L�O~�?�����ns�a�2+'c0Q�$ڧ����6?�X$iv��b��j�'J��쭛��������#���X>�?y航k�N�;MS�c��8ّ��Ò~%�DW6�t�	ݬ�����r3Ĝ�8-��x&���c��J������\/���g��F�z�HF3�R�L%�O|���,lqQ�V�=�{(�h�[���=��t��Y����5�OčN���%J�n Ƥ?����?E��palb�a��^���R���	���j�q�Z� �X���n괐�y����/���h��{i{��g)\�����p��y�;?*�NOq(�K�zhN�x�2#d�=	��6
wI�����J��El��p���}��%��N�O�Fj��^Ck�.ht+��˻�-嶪a��hK_{��'�{�˿��~���@��o|ʬm�9Գo��7[�e���v�����v��jH�說��:&���3`%V�}̰;ʍ
^<�Z������F[�׻��,Q.�=84�Ѫ�;��!၊7T��GRz$���E��߳76 �n�Z���!J���$����X�D��H�ݍ�qsH��hzF���	��?�.&���Җc�&��6�s��9ۗ������M��M����*^�o�IN��=`�A�3I��������i��'O=���rV�������O>�.&��O._��W�R,?tr�P\��f�8�������}�gV�f�����k@�}���rM��]{!����sq��rQ�}D�0�[(�6H��
ЊF�����0��Bg�]���4��$�V�S�� �|��~�s����2�ŀ"s0Pۮ�N�L<��b��|��m�+gdS�3�To�w|b�����.w����s�	�D\�f�cc��CO�mPCY�6|���Nܖ�VTY�*Ԥ��F9~_�P�kܾu��n��$z*ʎ���KW�߸;�w?z��N��e�H�/�	pf����꒠`����
��"�4��Tfg�j+�L����¡8S��{(	�q�r�1��q�y#I�(�o۽R���K-;%��'��j�j��~�i"~d����^���h�		 ���T�&�(9d��FG����4��{�ջ
:�B�@���0�0��h����yw}�M�._Z|��f<G$�x&�V]k�Y/5�2%x��O�W��o^���3��|s��Ӯ5V�gF�srJ5���P�(��̂����W�^}���NǻQn�5�B��/~���KM�|���=��՟{�~.Q)�2Y�5�v�Ks	^�s�LQ<�ˠ`�m��4Q�
έ��i���zz��6��v:�Ut=�/�z� a������c����X2:����6)P�$~g}[)���vDQ�31p�ˣ��㮃t/m�Bd㮡� ��	��ɪc*��s(���)Г�%�)�P]<�4k�l�Dg�<ϩ6k
��8�+Lr����S��W[ZH$vew�#�5���溓����eK�9��	���n�2`.�>ݡb����Z�;:26��pK]�.�����/�/�J�l5��$RU�.��e�
%���{����ZM�ڳ\i�a_9;��nmm7����TQ�h��c��jY��l9�qqd����O]�5uegP�ţO\<�]Z����}��;EJ�������͈{� ��@-�tڳ��o�s�R�ܳ���ԩU��m9I)&�d`�խ�"/����
��)�ͰCV凡���C����z*�%�=�
$,P$�lO0!�=�ghS��M�&LK�q)��S�ȡ�a#��6Z`�)��
��%���V��e�zO焘�ʡ-�����E�m5���޻pa���c��,��[xtt��B����6@�fu=#�=udf��P+�;Ќ|F�Q8eDf�6-�߱0�F{�Z�Eڳm�~GSup~����1��C��E!���	�M�P3sà���S�{
$���"�������=��˲VM�Y@9?��"f�hFװ-
��Cg*x�:8ճ�n�)������`!~���5�e|�8�G���(tx��1��qb9��֭ҩ;��H�m*p�b	���S
����>�w�o^N�Q�oI����6h[1Y�-H���}��wC'w�G�ե�F��و]�tg��V��v���뮽d���ʧz���u��(U7�.��f��f�8X3�N��8'�L���n�-��./3	vsk*F�J�#(�2C��Ӫ�C�#��VW�i�
�V'�T��Z�z�3�4��(�L\Y���D�[�=}i" 
óe��Y}p����c��g5��=��������<#�;��?|��S(m_�o;1|���vmӦ	�6i�\a8����;�?s��b��@�dtS��\�4��h�E���]�n�֖��u`"�X�aU�{q�t��]��,mocx��:��]J����f��
�4�/���b��m�U%�b2�	�8*Tϧ�2&�5Y���&;���R|�Dj���'�]���!�{�KI	������
Op�ص;�=�A�����N��O����X_�0IU�hpg�8F�8�������˟�~��w�Ÿ���~����N�������׿�7t�йa�3v`��D���Gv��{c~G�݇&&:���ޖ�ň�ji�U=0:QmT����a�����e��@BznPo���P�yD���$D��X��]���02 �ˠ�M#�F�4�R��{&G�Hft0�
�#��8�˙X<3>��DKP��{��;�R�����e�F�>ulh"ϒ�����o��!R���l\80�X޳�Ig�c4r�
��p|�0��$AS8&�4;++����t��n�u��,@�/����,�dI���AC���LW�	����M����7Q�jG��@<%������{�ã������uԖ*+�&�\3���P幖n�99	 �;.��f�y���ɍ�F32#mz�+����{+w1U�apY��(Ds��d��PM�A���,��>8@��,+��q�G4Co+�Q��Zjַ���,�z��q���0$��H"B[I�ٵ��T[���εkm�G|o���v:#j��h��>t���W���	��{�	i����Mym�!y
�(�i�k�?��O�_����TțX4Ϝ=��ί�͉���sՍ�ކ�%��^���{|G�Y�BBq�h�-�C;Z�Q;��^�l7���|Ǽ~�����g��vju�-�=����p��������� �]��ͺ]�z�[?3\<34�y��ث��hO��qU3\H;���m䳙�$�6���X��*Js ׯx��$Yb���V.M�H�B����}��W����o[4�ɼL<ԉ�+�D�kf�o���D�6���(�2J�@&� ���"I+�4��v�⅓����4�F
@�h.�m,��8b;���*�g{��03[�Y�^_��]\�;:As��Z5b�R��7�����z��
�0ރs�n7<2�	�$}��K).:�78�g���ö�ѷ��T����S+����^�u��E���s��4N��f�C�x����XZ?,R�+o//����3�OM�b	��Bt�*��L��H�d�E�thڡ�t���HZ��%q���BѾl��0eY6�L�>fH�gY���9ޱ�4%Y�\��xN�f{�,;����z�潥�o�y�ڕ��R����5��ʕ���m����N���^,�@j8�ɉ,�s�	�"�^Z�A��5�f�M�O�˪���;͈����a�j]%�cm�� Y	��f�t�;]�-�3�4���s�e�g��	X�p�۾�AQ��Y�e$�?��K����c��x�C��2/	<�zh�h���Vۦn����t�po���]_�ZŸ,Ò���S]m��[eǶaDy��+�b����q�|C���p? �đ��G���'�����vd���mYG�����ˎn��6ՎBX�ZM�����}�dQ
0g���g8ydrO��1��A�p@D�*mQ�p�8��t���<}rim[ik�ϗwrtj$�j�,�U��E{�Uַ	B��hp�vy��n�S1�a@���"���'����ܭ���3Ʉ��h9$#����
��@�����K2jRDѺgu���8@c&
U�ӓ�uL��7)�<��o�FŴ��s�Uss{��%MS��d˦y
vz�'%J�f3.-�Zi����'zS1��:ؕZW�I�v�_�:�����À"�cb�$�l`�c6��@O?�XY9Vnnm��k,'F>���̽�
�wh��0�&(��l�C\���x�6��Aq
�3�[U%d1:��$SH$h��}�@Q,L��Қ9���IX��Jl�Ί�����y�"�Kk��f��;�t*��b2.?9yf�l�~���w6k���)�jG�.`�|)���8���=��=���6�w�e[���tJ�?}�)�e����.��o�ߞ�~����^�kƟ��x,<���XoWWʍ>VV�;�c�h	ghl?=mA�1B����c�`kp���2�|v��n���u�5�/���O�|��~�46�M��m���ˀ��LҴX����1���u1B�b�9���3���\1/d$�0�:����;��޾=��X�6�ݖb�h�R\���=����m*-�"M
{/,��6��Cy�s&�޿߱m�pO���˕�NYw�ѱ}�WZ Ǻz{v��li}�S�ྃ%Ee�)���>�2l��#�/�/�_?�Cѩh{A�O�x*��Vv�@�:
��o�'�Gk�2E�r:-�m�L�'�<s��8`,C��4��X�	|��g/��$KԱbq�^�aA����;:�.ܹ6��'���PDK��i��ha��jm��оS�~�v-o�0����M��h�Q�+�
�����\*a�~�e4=��=M�I;�(w�i��c�v2��9\7͸sZ��w��i��@M�e6�]��@ �<��Vص0^��-$RC{�N}��o�X|���=ɬT�ԭ;����=.%���d��aKe�ax��<5��ئR��m�l�\�0���:yg�zu�7�J%͵�H�(��aH���6L1
�m;T,e@x0�J�.�R6�����h��Yx����]��`.ĉR��zp�n��"��y�^�(m��`,)1���n�Lrt���*m�B����n�i�a1t*&E~ 5�6�x�C������Kd����( ��$2��Cێ_8�}M�+N�Őd�~-W�*z'.&�����5!ŠFR}U���6S��������;�T��l,5�J�b�'����v��������ƃ�lA�ɰ�j�zz=������M}y���G_��a�J�`�������WW�6~�ƫ�(q)�ɡ����r����S�D(q4�5��!mM�6�Å�cSR�Xѵ���Ջ�w�����(��b�c�c�.���j�/�?��T�����?�ɼ�7�8�?ƈ���u��`,Ԝ��qb &�>���ʎf�����imS���=Խ�u3�"��R����u�ݭ7=�ed\���3T���� |se1�c��U�ƞ��z��Z����So(�[Q͝��E=�"ӷ��"۱u��Ak28��-�����M~�S�I��)DZ{�y��j펮u���}�Y]��V;T���Z.7B�3���L��lp�
,jjݎ�ݬ7�'��%�Ҭ�Թ��x{�vr��ܥ�ʍ�pO�����Ѐ�$��n'��S�dG��z�g�`�@L��l�X���J�[� pX��*&XH�Ǝ�w̮�a�*<2u�t��xl�C�����̍͝=��C�Ҷ��2_�Ln��z^�y�J������D�K�1P��<�EF�����+�k�rc'�Ϳ�隡�_��?�RHR�J��8���V��8��H��PsF�6w��G��z����]�7/%�(��f���I���&�Ht��	{r}C�L�|��i� �Vn~���dBR*۟?���CSg9��x�ő�����{/|�=�s���o�6-�3�V����ѣ㸫�j���C�V���4bS�@%b���P˳0�|/�3}=g�GO���Б��\
Q'��bm+p\���@���Ͼodl�����j2�2i�pu�$=�/W*gOO��\��ux���t&�D��|����l��}��Т�����s��n[�V#n�
�Q�bh�T*�2�JK�J,��+���U��1D��	�^�ɂx�2=R^
-��rڴL���A�=���U`,@0�$�u�v=5����uLS�ŵf=b��ޤnt@���ฎ��l<��[7_�r��{�]����d��r��l~���!r��.�(RMӶ�X2������G���uP��(�1y*�O�� �i�ީ���ֹ�禧�W��_�)���0̏��fkz`����o��:�t��~����84	�%�7?<5�o�Q��u�5�󨘟�����e�7o�Z	�ex��
%�uP���x�Ʊi�J&�YX�oZ-��dȠnX,�1�'1`�mK�O�ˮZ�G�擸�.,-������]\��VJ�"���c�>y�h�y�m[��"�m��P
�]�A�)xc)�����*�&�o(�ƴ|�žb�銣�20~*״����g���%�Aŗ���<���V{ea�ԑñD��+o�ZG7̐�l�}�_z畍��p.��>�
�fx��]�1�3���>ru�}v���M���ܿ�Yz}�.���n�x���T[�j���}BV��R�>|4�V��[#s��J�#J��<7V,�D�<��$q�U�le$aaɃ���2�䓇&s�8��4�Qm�2}�a�||�A�V_.=�_j.��C��q:��Z��w�L"���h�����R��bg=�5A����fȲ���٣{�_�[�X[�ʑD	�Lӭ���ɬ$	Q��A��4*;k���sg��WVb��z��o=����;�4�כ>�Ç�ƓQ�p'NIM�`iq���o�$0�s��?��޿~k�^�6�nN�r���c����L��8���K��>R�ؑ��p&%DDFN�]_}n��޽�a���R�c���	@���BQs����c��8GT�]N�ĵ������Z�R"N����*N�<C���bLP�4��}�{�N��\�Ѥ���f�7�#0����%1�q\
D�0L���$c�����}+��0��z��j�ę�`g�/.�!�ax
��
��l�$�^.��қ�g'8��B�T�	�h��
˵-*�3 �"?Ă�Bv�0��QE3F򩩁��j�~a�n�&�Jέ�j�pcR��::����Һ�8I6A�L�HZTU��E:.6�.1Z@)�+�<8Y��q���'/&��/ݝ���S�M$�b��_���T����)�?��P���ȿT�_}wƾ���x����I�'eo>6�y�x�p��Ȧ�Ѧ�(]Sei&����0����2�S�c<Jd	����Rh����x]�lZd�f$
.�ښg�Hbh3<z��;JG
V��`�ۨa���^�j��$�̐h믏Ӈ�thKB)t����/$|��9"W3�g�g/Z�S�HbF[WCσKo�;�G)�hX�O1o\]=utЗ�����*�5�������bZݶzpd��h�ն�bY�0}��6��y~|r�����6��a��wat<�����?�ƶ���4/�m�T�۝�n�m{E:��Ⅷ>�>���=�F�.��xD=77g�^���r�GB]��R���t��2��g�G���N��;;��ȱ�߹�`pb,�<w�f7?&�))�5t���8�MRbi���f�`�p=@�n"�Ȃ� 1P��>~���|9 �����F���J�R�I�B��H̴�$�g���f���D��(�̮i
�uXR�0U��{�0U�7׋�(���ty�Q�Ddli���?|�s�lWZnGk-ݯ���H�{#.EDI����?(�w�?��_?x����;kt>?81��[�M�}�f;he��\@擽�X�R[lB�v4Ԥ�g��+�Q�ԩh<�?37P��&�Vnj��W�/�6��Y��¡�~�×޽�Y�f8:&��������^��[�'�d�s��hT��>9TZ[���~RZt�CE�^T14
�QĦ����z�T3�$��k��(��ۛKc���]�V�3�����J5`�Ι�N�mlޝ��h*ϰ#�qA�C���c�T�)N75�E%'���E��w���w5Y��� Hp8�ǵw7��@�U�G,Mۓ���'��l�1�_Z�d*�����S|J�;Qе̌�?�ZZ)U;m�0pZ�S hm�~�V]�pLH�]���fpA��Ń��0BN�ί/���_;��{ϙG�Gm�U�q��&sV2�0Uލ���_{*��@�f��U�@*�Te3�3$W���s�n��Kĥ�ĝ�����<� �ۼPJm�')u����|z(-�4�۪��B�����m�Lw���PSd{�,.cz�؟��:�����6]��
�C9�.�]5���P�(D�i���JQ�>��sM]�:`a�aR��+�}{{ɥ�Ŏz�ꋱL�Lǜ�W��Ju]k��Qͳ
�M�,�l6Z�v&�z��I�t.�F���=�/X�j|d��S8������R�=u�xs���-��r��lϟ|�+�f绷�h�`�b:7\��駟��a)��_z)hl�y��8�л/=n�a�M�v0��@�8�k{>~��V%���Ƌ��x�A7���-}(&^-�z�0]��&�d�٪��E������ݮ��r<x<3teQ��1��,�Dfj�|�L.�<3o4��nC��L��\Z_�[ztb8��f�
ӐDT7�'H-�1���1�@�(l�4�6T����k�ȥ�	�� �o�����=5�gR�,6���M$cR�	��)*�޺qmh(y����Vs}�Ə[5�'�F7�B#�T�(��aa�X�<�!B'#ǰ���_Y�\{�έ/�=��0����y�ٮU�]E�S����5���Z��b�n�d6~p<����n ��6C��뛌,<z�����бb���'n�W�+��K?�u�ē$KZ��/���R_q��e�ӘxA�G�l��b3)%
͠9��Y��ҵNWUz�}�?�ŋ��R2=R�5q���]�#�:�%8��Dz���EaJ�;����Wއ�ȿp��e'0mf�����w�J.�r����p��A���\����h2o�t6��r���,�)�
,�ۮ�մ��8��֎E
�ԹX��JhC�r���\	���=Õ��P_�XOnb����_!lw�$Ϟ�:�y����|�N;~�'��ڹ�
��1,�2k��
n�޷�ā�8�����4t��R�ĵ7��E��b߀��a�����/������"�;ץQ��C��j�%�F4�����tf�\_lkk
�nD�.��%�5�C�P�@�=�>�,��^H�mAi��^,˄9���(�hߢ"�悚�+�(�����v0۲mM���v�(�@@�,h3�F�z�l�Z�M�
V���X�M"4i��*��^`
�l��r��O=���o
 $#��f�����V���Bh�v`r������	�eYIi�#E�#'�?��zs�>�S�
�L}�!��on�6?�p��{��[��z����z�ʵ�5�c����Ԣ+2ϝ:�;�PF��VSL�!�ޭ��W:�Гr��k���n���i��>Pu�3�i�h��J��P�7}Y��B-����"�H���ƑW���f��;߱Cgrp���pxQ����'�Ns�n���Z�"�"�B�P��RG�][�x������TA���(Vܲ_�a\y��������R��Ծ��t���E��b���Zٺ������tuf�o�@���
�@Yp2��A�k�
O�!j����s$M��`WNO�+���� �3���xw��ݪl�ʍb�����ۛ�7�T՚f�h�Ze�$�ٛ�Z���~��,]zS����-�S�y^��|S�e�Ҩ<zthb������g�ؿU�lW��6<����y�c~왧w�.��15��`63`�(:��z�v��(ONά�J��'�<̫@�&KP��^����E$K�6�
�Ҳ͉�A��ZxT$yӵc1����=�_�x��E�'.��e�x��P�$�[�����p��'7檵
�\B���]�+:N)!.r�f�-���S��9~$.�Ͽ�ZU�x>�[�p"�V���4�)�F1!��CȨ�V�%��Tw6�N��`��v�����S���^�~�}-C�"%Z����}��ԡ!Ϟ`��~9�����__	)V&�	��䔆w����;q>�e���d#7�Ʀ�F,�$
w"	ӲDAF�F����[������-�^W=��X���::E�A�^0��@-I��<t��_�3��γ��P���F	+����F�S	�=�/��v�
w�j"��|��G#l��̀@�Q�ud�14J�e‘�栞̘��t4�30�GP��yht�i:�F��jݼ�.j�b
Lk�]ˊ,��9;+g�ά.�-DŽ���Hߚ�ل)��J��W���2Oe��
�߿63S��Y1�??�-����L2��^�7�p\�jL�
}33k�F}r���8������n���=����0QJm,����WfW�X�������4HT@[���Ǘx!�q=�D$O�z���`�6G; Py��i�
�}=[;U [�v�e��hk�cc�g��]^[�������4hX�Õ�j[Og�boziG�=���U�,9�,�!�s�D�P*--�{+k[3U���՟=��������w*��_[]�6��8���9l��?��/|��[W˝��2K,�!:��R$�ֳ|�s��D�N,.�H�X�F�S#c�\���x�?}ਮ���[Mo�&��4F��.�	Cٴ�	Yf)�`�r�Bi,��}�Z�7{
�RDP�����S�����{@Gv^g�/ǪW9��S�F��fn�b�$Qɢ�%�,��N��gl�c�x�����<r�e�DQ"� ����윐3P(T�r��,�������߽���.|h��T��(հv�N��X��krW%ҧ������AόNx'�|����99:Zj� ң<$5_�T�5�$C����h����1����"Q�܅�b�f��1���ǧ0	��v2��	��0BSGVE�ƖcX 4tsb�(����'��ǣ�rH��fz�^s}�g�P�`�\0�/�J����j�K��TKbm��,�	1�".0
Ec.��I[�?qr��;K+�^�(�MMo+�}Y7Ę_((VJ����O�n*��=tOY1���'�i�:�ȝ��/����Srm��`6S).uY�Z0\�1��h4:�۳
Ӱ,�e9�a�u���<d��N�Nl�Zo��֚���փ��BH�>j�C���Ð�9~WK��c�X�`$z��k���MT��"�^���U�E�-��r�Y�_̀��p8ܖ�h ͠0��'���\�6a�5�2Q&;b�M���FŬ>����y�@$�J����V��/^�����,��1t��A�2L�'?5��)��&W�5�sOO�7V�W4Ө�u�H���d�c!����?]P�.�O��Oл
u��?�旼z�T2�|a:;�_�+_�X��pZ��CJ�&�;=����}��P��[�[Eg���]PW��;��0�9(���C:�c��(��zr�׉"���k���+��1��@�f�"���M�:tt�������ƫZhr,�Eb����b[�V+��_�C�L,-+M�����[�*�NU���mj��#-��`���#aB�4|m������RѴ�u|�ß��`�������s�1\;}�������?}췿���pꁧ�2;���O�И�V+<-�*t�nuu9�$�xO�^S����٩��`4�r��*
˱������dSwI�rl��ANH���a)�TJέ9�|��u���S�G�[�6���b�L��ho/�C��(��:u D�N�@��{]N1�x��Pq2�
���Q
��hnH�em�k�nLb�d@h��C���i��0q=�@�2�t�X$d�v�
|�g������P�A{����Y\�
G1ϡ9H�"�`�D�0�j���?ur|��vS!^�ݑ=8���6��ÏX6γǯ/͑$M$ͻ�>�4i�&��#{4O�@:�1r\~�#ÿtlFkT>X^M&S��h�Z./2%:����X)>Eh��~��~�oۡ��I�׊ͩTt|"7�	Ѫ"�)��<_[�`�//RD�d�*j=H	����!HX��sЌ<�B'F��0�F
���ƙ,�o���-�q��f1#Y���|
��w�
5D{!ǎ��v���
'�����
�F���<0<H�!鮈�L�t$&r��\��@�'��rL��p@�|�@�$�Q�NMr�j��yb��=Z�E��b�"i�e|�����vҋ���9F���H�u|*a���k��b���C�Onw��)����)�w��硓Go.U��'yJ}���i�XԍF��;���ڛ��k���9{8���(L;�L˝��9�����Buw�H��v��1:��Ɇ�"S�^i��o�>,�w�♇v
�ș1���5���t��DT����hʃept����A�]��k�*Ф)�'G"! G1 �p��Y�~�đG�|��K._��mK54	H��o��R$��DkO=8���U����Dy�����vǀ�]�m�������C�'А�
ٞp�
pBE�ر��r��GG���}�I�Y饽��o|��?�o�945�w��٩�}��JIY�*����v��
�F�*���|�ci�U�_q[�F���Y��V<��?���w��7n--A�:��f��;E�E������7�{����“[��b�J��b��f����?<v����,K�jB�lj` �
�4-"E{��HE�"AnT�����H�
B��Jr2�7+���4�?�n(]�$�zB�*�rWQ��X�'?�ģ����偾�
�i��up_GtIX�t8fj&`����n��1��5{�7�Щ����ޖ�B�g}���y�`0	�vp�`�ع��_|���+��5��V�r�饒���V�ݓX�tlM������ࠢ(�f5��|H���>y�c���{ڎJ
1cI�|�
5�Ә�������1(��p,�ضږ(���h��j���A<�ة;������#���>@��^9w~��gc6n���[�-5.b{��bڰ�<�;�RB!SS�"ӲU�Y4�‘�
;��by��w*%��!	��┩Y@�Q��82��Y@w�~�DNY���hXSkM�ȥB`B��H8* ׀�>Y�G�v4�K$s�TL��Z�RIT��
�9�6�Mk4�ݞ_�Z�Z�Y�V˕r���t�b����O�����͊�t��m�۝VK_�-���<|r8ׄ���,w;J����m8=J�2b"�*��k{y�!x��q��S���%��j���j�L<�ٓ���ʹ.6ʻo\���u�؁�����onmV��H���&@l���߸s}M�(�٪kO&��C��^�Y�Z�����}�x6|��I�jZ۝ە�b�E�è��`0��M����jR�Tc"';J��Z����D�$1��V�)���Tծc���L6�2�N1�PވF"4�W�Ɇ:3�2��x��v��/��Nm�Jn)� ��=zo2=;�o*��m���f0�$=����4� p��شf����A��V򶶍�eó���G���׷k�R�~w���퍿���V�V4�4pTr��=N�-�z0"������X����i�q$����G�9�ol�j:���\D�GGÉp8�
ܴ�D��{ڲY���,`�{�3��]�1{3kn.��j6::.�
j���d(Fi�A��{�����3��R/���E�QPĐ�q�L��H�V*�Wi7֖�a���L͡8nk{kmmUHhC���q�TT
�*O������qt��2</���2�G�y�%<�NfZ���E��=t[5�VcCѶ�ז~������-��Z~��c�st
��P�֪�,Ý�z��!�M�_�|,�`\T��l�w�l�E�Q�����.f���pc�g��ɿ����9>}�����Ʀ��8������D_Ρ��8���Ϯ|h�ص�wRb�F0L/6��ĦE�WQuLd�[��%Xw ���E�^_���e��=������Lq,�J�����#�xvHc�H�r9�!��!��݆P�<�)�:�Љ���������lF��|�V5����S����,���n��iPt'[�&�O�R+5ꆪ��_k5K �T����vbb`c�|��|�R�����N~=xZkVۅj)�YX���5Zi�9w�|�\,��,�:jq�h�������瞺|g�r�$0�t�FKau���8�fl�{��a�*�x�]�hi�/���wK�>���w��-m�H*6�7}n}���
 �G�ٟܲ��:}�l�H߻���n?Z-꾟�s�v�c���e%�5� *I��m��Ġ��\[*a9��1��|�����5�?�ͮ@�11z��=�P���(
�m�muZH�;f�[Wz��X4��dTM��	F;X"��\{@
�R���C���P��x��v��A0�ɗU
���c����t�H���XL�Y��]����5T
P�A�?vh��ܫ�NO�p�^���C�|����.���
)Z��(��ܨ�k�dV@ց�Z�N�[@�@#t��ʧ��ޯ}�wn�Ԫ<
��T5IS�p����˅�P_n���~�X���*]
����FV�,nh�N*$Q��c��'ڽn,(!G�@����$��X�
À䢹~���u��Tt�h^����t�^88��q�@�j,����N�㣓�JUѪ�ш�r�ٓ}]���g���5�7�����\��әr��Q��� =�mk]�
B���b�	
���tƇ
�U�y�R�Բ��=����G+5t�ҥX���+[+����Bp8=��Wz��Z�J��\��Ӥ�@�l9�,l�B�k�:t4�ҶL�(��SB��	1΁Db�ӧ�F����/_��ScS���ֶ7�B�Rȫ�v=_[nt�5��4{僥N�z�3�x�7.4+����+ɻ�7p�]�d��u�p�M�sI�BO`!�+�ܭ����$����ms��ه�����U��,��:vb:������,�`*��<T^�/a�n��x��ҽ�ǃ�y�ƍ�_�Rm5�vgw���v8�~���n��۩4Z�ƭ����7��שּׂ-�������s����ʁM��Rf�4�����كM����L�`~04��&[.!�ݦn��ic���}'��V[��Ki�ed�)�\��,f�X��R�c�ѷN>|j��N���
&�ͮl�<)�X��i&1�+O?�JD.\����ӳ���������ʏ��.W��[���_|�{6�6��B� �D��O��;�}y�dyZ@�">����K�=C�y�L?�0a��$�OVM��hJTW&A���팏N
�o��ޭ�&h��\���q�-`��Y/�AI
��5�&�X(��n�����4�Op��7�<u��
'z���@*{����&#a�P#���ؘ�5���V�����k����;�O䢃qd���+K�=|���>1;1��,0l�cC�.c�ۗI�+�@3&�V��Y)vL�Z�W��Y�"Q�<��d˰�~�SGGu�VQ�$h�Dڿ�	�{(^y�YX�v�?�s
�Z+��4j@.tW���}m[��u7u;����vM	��Pt,7V��)U�,�\ce~1(�u�J'Rd��Dޡ�|��.��b���2�� �S�|��l[���N0�(�u]��ˢȣ�j�L�c>Y�\�+�+�t��⒮�xF6M>�5-7;%��ֵx��fb�s��C���*�Hu�ق5$�}��ݖ����4�i�h����F�ի��ZW�Yi\�AK��y���6+m���$�Ut]s������LJB����^��W|s.���"�jO6
��B_?��J�h��`Ҳ<���{�M86���}0�<;9����n\��"������C��n���1��?j��?]8���@dS��ƹ�뫫�'�NS�rgz"��x(1�F�˷�َe�&�h�"O��cw'�a�e2}�95z�`Ͳ�n�"
:tpgm��	�1��qMN�d�Yݖ��$�����A�r*�0XrL[ܜ�m��؎��L��k��I�3���ʕ7-��I���|��QuN��,=�uT
���LEV#A���Û{���H��w�H�G���Lc�V1LS��>����=��G�G^�+D�c��Ky�pc��Č��'�9F���r��I�1�����Z����X��fX�VsL$�a�J�6\�����˷/]���h�~��AY�_YٍJ��S�p꾩+����++��g����Җ�k���l0��(ێ3���(P�����}|$�2�\�#),�s�Oh��R��cuE�i*ܗ�mb4=r�����v�Jp��(',���:�l<
�]�U京�Ca��O�q����x��������J�1ȣ�=��(Weyj0w��l1_��u���YZPM/�Z��'���Gba�H�
�44H�X�Z}乧C��;���o�p���^�	rF�UK���߻|%�N$y
M�X�ل��D�T�A���l��?�KO?�/7_��${��t�8\�t�M��?���bu-_T�^SFH�/�8)~��;��c?��;�百����յ���>ᡉ���i�z:-�~��Z�P�5-4^�sls0��aQT�2�1�!��e�p,�φ%I�B-�p��hx>H�P8�4h���!
!ʱ|2��Đa��|OG#�w�
����:����s;�=�`I&�h��@"��J��1��Am���2<GV���b�nM0PT�k)]����NUw
]��3))��u��\ӵ4�q����.g��kkR���#��?~h8��&N_��X/�ræ��p,�;�K����H��}�ћu��Q\
�B���*�u����՝f��ś���GOѮX�+߉�|$��:��c�	�O�}�ϟk�,ES�㐎�'��.}�r��_|���������ra����o����	�֪��zap4�d�@�6i��PD,�|[�O}���ɥ�5��ڊ��x�Q����5Nx@�iڲt��$�r�h�����\�ƭ��WjI
������Q�y�CSU�Tf��+����%o��a4�ڨK�Qm?¥��dnxBQ{,rD��@�áP�R�h�)���D��æF�?���~T�驀nm�S������f�yh�O^ȼ|�}�N]�ڮ(���l5:}B�f&i��q�e/|������W>\�xd�jaF�����6��A�kk/]]"���̈E�?�}�u{�����c�4�s�TV��3��3_��~h��Ʋ�>H��b��_��B����k]{��4��m���n�zH�h�(��>�y�v��6t��!À\uL��m>8=+��B�pP�T��X@�����m�=[�hG�n_Zju��a������M�۰O�'ON�g�K�kl( k���G�c}�lt��F"�.;��ھ��x��fvb�&ˤ����M���[V���^�5�x?H�b%/���=0ї�_�/���]0�PU �	�D����֚�mw� .5�i��1=H�pLnigO��w|�۠YR���3����X�ݲDr������J��ϯ�-�mav���-��5M����T4���O��]����R����A�湔��9q�q�l����bp�1�9+.VJ<+b$
|���(�D��;J����K�L��˃n6&�G���!TۀՋ��$��ԑ_��O���^m+�H� {h�x�ӋJv���و�D:=��ʲ�Y�+���] �
��D�B�t�
f�z��f[�١@������x������|�g?yv߁C����_~%�]ov�ˍ�İ�5�E�t���0��$�g�¶�Sq��L��A;�j7˴\�mw��&�vm�Pvp:��$������d�������ܔ�GQ�xY5mO�R�p�b������ml�~���r�.^�'?>u�V.lԷG�=R`%�48����g�-0�A�"�r`���������C�4�ϋS�8i+�fUQ����G��V,yl�H�T��-^d�ݝl��5&C̐$r�HY�mW�@���x��V����[��f^$ɰ��wPB�P1�G|@�\x0�H��{#�K8��R�>I�W����'/��h�VTL��3�pEW -}�cGi��rmHo^Wo�{���SCC�"��g�h�#����Ξ��5*z���~�A��H��}�
4��F����B���mg]m�kRȥR#�`H�H�JK�݆WlȲ����^����~m��c������;\�mj���^!���n�+U�:�{D��]E�D��4����`V��`����|�׋��a8]��ȱ#'&&.ͯ�uv&�yL������;�n3*X�p\+�HX�%�o����_��d'���
������g����d�<O��ž麢X�ܾ���s��R(Po��fG�Q�±�i�޹Zh�ؾ��|Mq)x����n��t�ݍ��K7�Y䃵F�Xm�0A��$���;˛=$	,CN��v!�����Q�(�������bC���1�����;�s^��v���^���/	�XCV5��W1ܚ>�*]CU��I�k6w歎e��Gg�r��h@D��CӐ��KA
24G���K��oo�U����p_�E5���̦0.�Y
��Yg��)��:���IF��{�,#���&E�A�;��@�\��ɯm��N�,�Qd�g�l�}:e)�>{8ӟ~�ݛ6Ky�K��̱{aӶ�m!(!w6T�g��9�iY|0L�GsIh�׍�޷�=��٩�ƗNDe�w:��W���sG�yp|x��τ�)t��S�bt�
Y�!��NM��`����hL��8����UA��M�O�6u]��ȉ�(�K�Lv����?��㳹I���Lxa�i��dV$	ߕ�B��z��U޻���[�'���;[3�Ú�/�H��"������1���0�"�_�A`1$F����ݭj����CO��g��ԃ�<7{*Gs��=t��=��O.]\k�8�E5�����96oɰW��h�ቝRGw}�뮷����s�rWo��t�

{ȓ�u\4nC��\�B�F�����j�М2�e8�p&n��m�+w���*i,$�Ƅ�F� #���ںK��T�N4(�<k�ʾdt<����^��q���ᶓ?sh��=çt��4���ꊣ�pi����Y
A�z#���A�oU1�w�
�fmv����\_��o������\km��+��;=͕�ve�p<Y��Ş2Ɍ�bMY14'�21�?��\]��‹��l\���:�=��dn�����R h�6GP���u��p�ڶ|�u�K8r$�`�mo��Z��ٟٞ��,��_�q�����\���l2H�{�ڍ��j���
�q4�IBIS�T���j��r@Dz�z6=80�P,���K@0Q�jX���)�q�?�wu��M��S����'ON?��1�
^����$�`��Y��Y����k	��,g1��i>���-/.�4Q���.��F@`1�=w��h1�hq����
�Vw��pR}I>bv�4d�Rj�Ƹ��Gj�r���8VW4A`}ϊ�<a�R�Y�k=��4dO�u�o�rPA�.�XR�@��AѩLJB�d��h��Y�PzxOpE���K-ߦ(!�G�=u�;�F[m6�4��>��eWW�
]���S���v�c�պvm�X�Z>��D��L`jr4����nۘES`%Aq.��C0�O�I&��O�y�\}���G����❅��޾v�[}���_��C<;wcol��`�6�;�f8��;�� �ٽ6�Y��sTuc���p 9��Z*��3ЙA�UwO���S�p5�{o��S���73��C�'�
�S1����M
p>YiT�ӿ��_��xp2��>��o�h�����?���Oz�}������:��\8�&�� �MTW��$��5#�a�ࡣcq�߬?��3Ϝ:qO�n-ܼ���Q�z��g�*��|M��=�?��1����~c(ǝ������Z���fM�j�r���>)�6�a�J������<4`	�&Dz�oW
������r��?��f,�����5�
lM�%���]�1҂�3H�v{������Ӈ#����G?��Ge*����Aq~npd`�?�����]�u�|��;Wn�-�������%Y^ �R���'����^�c��ai2���_|�Zm�W:)W��e��op"�kM�g"���_~3<V� +�C��B�`���X.}������vpޣf�]ˬ�6ψ���,{����N�G�D.������^��R���cQ�R4�U�u�F��d�g�z"�iFw��z�%��B���,��T����$�"�_�ɯ�����>�^  v ��Ʃ{N����w��j7����H��#`�v�Ӯ�F��&n�P�v= �����?r�^��M���n�'�����C5��o}��_�Io�_�rc� �LѬ�3j[
ӢOb���$��M!�,9�Q�v�&�é,-�[{7�փ���C�K>#���qy�D�{F/\������Z9�bB��-1<��P�_V�V
[y�t&m��aM�q�mC0L�Y)6���f���Rv���\��	@�b[;�ͮ������<�N��rW�L��m�j��}�^�Y�5>}ԡ�L2�H�}��ɏʊG��Tpfd��C�[;f�<_�ٖM�V�Td^[��tY&��C�X���#<��P��:ŒC:
�ۅ�g�
�6~�7߽u{�����3/|�"n}t��GK�����ۻW���j6�e��Dd���)�v]��k�J�9z�w>@~� NY�}���Cai:;
��F&�'�9���4_�I1=��D��#A���#3�FR���ˤ����R�K7���G>�\�Yߺ330��ب8�#�Mq�v�a���j�p�ex@�2ϝy�?��.VR@+H��x��75Uk������*0PF�k�P 9��Z�l�7<����i.�Ɔ�~x�/�U�.�*.�
4Kr�OOwP�hox�����w瓢�D��I6�U�侜��Z�����1���6L�׺h<���6�l*�����|o�ֻ�>q�/��zs-"�I�}�ȍ�[˅^�?}���CÖ�mܼ:N�7?�}���o��ѵ�����&.1�hʵ�t$�Pz�*����v;
�v����FXޑ�ѭ�޹k���-���C/��������ӛ+�3���;��y��Z�T��T��}�/��#�E��4k�iH�x��E�7e<���.:�$���CS�PD���u�5�@pB�#"���Z6h��ri|xx��p_:���j�jO�Ӏ��n_4y`z�?�;��:1y�.�Z�V.�Hn�^�=x�H�^)�jIL�
��R��[�=2� u�h4�a)$%t��<p��n�^�y� ��Sl�
����ry>��Wn�>8җ
^��:86��Yn��x��⛷�2-�$�n4���2!�&�����(]�#8����R�(�I��R۲��oV7uS�$q$�N�͍m̀�R�X��6��J硇�n�YtF����R]�MQ�锡ۭ|�,�K
Ǣ�v��S��m��6G�Ã�Lv(���	ᾴ�Y�5է�J�&c@@
̱�X���Q)�=Y�l9��6\�0s:hxf����6N�����~��xrc�wS�@��{5���r�Tg$=&c�Ҫ(V0��F�C�f%V

y�k�
��ݓd
� A��ڍ:se��(�������h����7?�S��w��/V�����X�K�ᇰA.u"�Y�d*;"I�N5�
H�7ѣ5t
���O��2>�����͞R��L��y�&���#o�4��`U�ö�h<_.�ą���^z�ot0B	*�g��7�N����G3����m��ԣ��-���&[�:�q�i�곟������`]kR�ɂp��w;j'��[��Hl:��m���B"��2p�)�0����w���_}�v-��
h���a6����=ǂ��<��{Fh��V�#��U/����w�K	���C"�s9C6ݦ�z\g@�s���{�0̱�7�s￿��2�7.�E�0?6�ygI5�T"�È|嵗_�K���h�ӹe��Z��j�p�TLSA��]�0,U�V�{MD���mG�C�d��'�<��}�2w�����m=��o�V9�-�����o���6��0dAo��تX+{�G�|`��̇?�~���*��b���60�"CQ���b��StB�����x�@�Z} 9c�z�R-N�<{�������C<��J.�ӵ�k�G�����w/������+�q|���_|�������G>$����7�tЈ��d<���?�4���_T�*胏������D�@޴����gf�L-��G!��%����S�����!ą�R��O+rɰ:E��S�j��g�î�����d�a��IT!I�V�y�s��-�{�!#
"�aC��@���c��D�ܑ��0Ϥ�QY�������'�F��o�tq4�D}���|�;q{dt8*��z��q^�N=q��7���ݓO>�̽�_�69��;8}�%�����#�.g8~�Ͽ�x.+��f������#��%�_�-��萓�z��T�7�-]n�f4�t5�'"�>uci-���|����ٷ�.��xY�MQ��4!

����Ͷ�	��ٕn���'�O�����ł)>c,M�X6AQ�p����:��>#B^�}�LG|���a�O�������no7���`B ���\��C>�8΂*t<�i�J��'�W[pL����x���Q)�/$��V>\�����q`�5��u���r6�̜��H��զΦ�.C����ve�W/6��}�ۓ�ꭏ@Te���l�^e�#��b~��'>��E��E�AY�\��˰��[-�Ň�A��t��V�`SN��ahzjRDze|s(�41��յ/ό���e��g�b�sУ+I�GB��v�	�a��
ť)�74h� �D��Jk@ шЎ���;4�݃/p4^GP���AYW׷e�#1��Pkt{t6
��5�eqT
���mS��sӴ�3���>p��m�!�R�m�}����ٵ����XZ���e��*f��Ps��Na6š�,aAd!�\s�Z}~d<����ײ遏޺d�/jXH|��_
pF�(�f�W|��$'oj��Z�zkc)#���C8�zig8h�ׅt\b�+�M=�>e�t���[�=�2o(探�᱾�Aq�Yo4:�R&�7{=�	��?~drzy~����Gh_�ai�����:O1�X�\��+�R�����g�����o]%M|o�qi~��2�mY	P�����ĸ��&����j�Z��5���H�����F�Y����kks����h��w�<y��}'ߩ���V����v�H�H���l�Q��nmY�f�6G	4�إ�(Ƅ�����7��֕���FP
��e��h�r,�c@�$;uunyn$�J�����v�\>413><�Kdg�I���SK�+�)&��G��{�C�}��F��5�V�
-���WB��|"��/}F���n�OF��\α�g��u=.ں"r��`�K6�g�Y��LۿU�G�&,Y�e�8�QlWZ��E�Q��O5�u��eˌF�,�2]�փ|�H��7���+�nm�ʾ�ז
���+_�9��IG����{�=r�Dvui��[p����a�4[��f�x88�Ќf�QA��$��̤C	å�����^�cPb Ec*@#X:)HF�`��<4��0,ߖ
�]�tqv"{|z�`.3��w��n�L0���F�}��`����~
2d(�S�)�;�?{��'''㻥����8ý�u:u�4�9:0P�卍�B�>��N��~egg����@&7+;�`�v���n$�\�}�X-�b�  \
@7�p�X�Yۭ}�FT,'@��� .N���ë�T=���Y�=VD�Q�8z�GY�3?;�71����J��G3�$���[�%�
0u���3q+Tv���wQ-� �i�V"�PJ�Q����u����#�?�o���s�Edq�</��-S⃄O8�(CQ7�
	��6�:�g��z��3W���g�6H�q-4n�w �N�0�@�G`�%�RK)����o\��R]�:8���i�{��=En�q%�{`vl<�ڭTh�x��M Gu׋�g�r;�ڛkˊG����׿�q'���_#ž�.�uٮ��,�X�:��TCVCɘ�s�:>>��vBJ��ᙡ8/�	�_*��\[:9���m*���TF�4+���^:��
�Z�d�ӆ��k��� �?yr�T���7�����)�6~闿����-7�����˯�w<^�o�{�ĉ�����`��n�Z��>xt6���c�?�ر�
��IbM����/-LGc�LI}!!��*	���Ҕ��[�@|(1��Y*l#��_��}��ӟ^qe�ta�+�t)��v�3�R����-�^z�x4898<KO$�H���\]h7��h����(�E��\�+�̫7V���L���)��	�g)!\�[�����<�Q�"L,"����Y��Vew��$�0���z�'F��Z�ё����HN�-��m�=KŔ�B��/]A;��F%�1g�V��Q�	��iGZo���٠D	�T���i�8�|�l4���3�Vg��|��'���b��\�H��S4����0Um���P\n����%-f�Y1F�o�z
T�m��bpb�3��Cy�G��@�n�SQf2��~�O�������4u��jn/�x��Ӯi�,�/���[mn��ΎN��w�V�B(rlx`��5����Q����M���KA�
��(�j�r�'��oE��a��i��ln��Xm�a-]�0�Z�m��0�׏�{�B��D E��Q_3�N����g������v�	��9�p��k��aw��m�M��rt�
@��-X�DxnpR��}a�V���l�%ɠ(Z�e8����,�J�GRwy�����hF"  �/U��!c�F�hS���j~�}��!E!�
��8aZ��(���9@X(ߦ� �����"�~�F��Td���=��!)9����=|1@ۃl��f�f��J��ۼH
�f�i�޿~���WxNNEt[�������s�F��W��d��	
�x
{~g����q�ƍ���1��VM�B�M]B�ty
���_k˼���kU�bJ�=��
�?����+�f�w��\�-�;��s���t�UF�|4j����S+��z��N�^�FB��.�������Ѵ���麹1��^���n$<84�ј�����ց�t��4��)��G�&|�x�KϿ����f��N�eC�C�G%��'B��d,��_n�X<�&}���ǀ�'�^�ڒ[��*�b�ʼn���#�#��`��r�@.*��ɾ��L�Y��Iw�>���H����<˞�������fZr=���ڬ��6�>>�������=s�T,�T���н���fu�	��+9>ZXW,�h(]��3}�x&*k5ݰ��DH�@D3��F��R܌�*���T$ɠ�(%Y�9~�Q�j�
�����=Wv,�q	H�K��H�"h�c�j[� �a7y�τS���1ƲZ��I`�����dz*��u� <�4n��ry[&Gr>�.�h���*������4V�ex��L�pPW�����s$�=v�Ę���5K�<���uՈ�C�J��7ߐ����RM��O�<TYZC���쨭���L<��F�JM ��n�֗?=�ԃ�������O�;:;��L<��X\�f6�J%s3ɬ���R�$�Ɇn<���8s��W_���l�
�C�L�28�t�mܶ?��C�v�V���rs���;f��ó�i�ښ��Bx㤮j��e���o��DZM���SǑ��5�M��*�Q3�g9�P*g�|�r%���
O��4l3����mې1�0����Z�H
��h��m��̶,4���9#C�nY�n�,
��j�	���f�e<�E#�]�cc{�R<�(�q���c���f��x
���F�]iכroa}W
�,P��h� 1d聰�y�h9� ��*=�����&�V��C�FB��ݺ�H���E.�	�ݕ�C��kŞ9��ͤ�<�j��
R��LP���b�c�>����4t �$;M�vi���ky4�u�ٮQ�V3_�S,���X���;��ͫ�K*��|��vd��k�1��CB �p#</"�GƎ'C�h@83{���Y/��Oɇ��>'��'��z�R�cpO���>�e�HĢ����JO�n�8)A2e�}��'��Ŀ�蕧�~"�ɼ���ȥ�#�##��3oi��)5M��NL�Z��;WzV��y�vv:˵X�k*=��Ύ�����7j-dR��{w�� ,h������!�<N��;���m� �%�A�֮��"S��?��P:�u���f����^�ޓ�O7ˍ���=?
�Υ+١��p|8k5-���[jW#"I]M�KES�`$2���z�Ƃ	)�ڞ�0�nM��hz(���J����ׯ��r �H�"%Q�lI�eٲ�Any�V��k�L��{��nO����5��V˒�E�HH�P9ׯ��9�7��W�X\�_��s���s��hi[7�;���`w�\�@?)C5d�2Cۤ���}%	=0|������pC�H{ !I�,Iq�>�:3o���KU�&gO����&w�vd�tI��H��Z�Ֆや~U-�N�]/����K�6¸���ME�����N���8=�k?�x�v���o{q��3?y��\�^�_���;md43��>��/��ؖ��X!�EX2��bnq1�y �uY)U���Qw�;A{(�H�����;��C�����,���hG�����0�+�g�9u{{ݶ�'7]�0p��E�4�{\4���z�\y�/�[�+�*M�"+�u�r�D�O�8�7:0>h�nw"u��?_�V��Ĵ���ͺ��@o�	`�yD��=��b%&óA��e)���H�bP���(@�`���#����Đ#�j�8J'2.���M�!|�B�"��*��*��f���>x��)[_��j�T��Keb�n�OΞ�4Z��b\�;��W�G�@YF �I�h���NDD���G]�����?���Y��ڣ�]�g�Ѷb>�Wt�5c�#l÷t5Wt,U���#2P�����T�B� ��F6+�J�~L/��z!���q+M������NC�m
��9ij�x`�$|���`��W�zR[��n��`ǡs5ˤc��3���R6����4*@�����x�'�{[3\�@+z'*�w>��������S�C��[� ��	������߿���ݝ��tw]H?7�����ҩ��xo,n-��%2�{{U��r���BS����FN�Z{�[K;K&bP�A�v�Q�T� �p��G혷��R�șюDD�n8���u�D�	��˳_���k��}�O���?��[��h���=&p�?�
$�b[rKEff���;�tW��i�J�b�(��n
vgO?q��S�L�Y���X���!����k�gA6A���9�h��Vcxz�A���/�����V
�
��v�پ�3$��0l
��`7���$�SǏN��K9Nٶ��0�Y�
���y����EM�*;KSc�]���,k�PR�K-��@��64�@m�U�;��m��
��ՙ��嗮<s����O��U�=s�oܴZ���Gm�l���kWϖJ�g������K���;~�j�Z)���x�+J�R�n2�"t&�[��;{���<���ÿ{��7W�L����ϊ�3�c��|�pw�^e8�lGW��U6�2�Q���fU�
��*�j�G)��$I�,F����x����U����HpP-�8y����z�ٗ��n./4C_i��Z���r��Z��*�	KœQ}�{D���N��x~o�pjr����,�gw�5
�	�(ez�™�@�P/:���Ԩ�⮭É�zd�=��1蘀���d��N����!	W
B���7��x��U�X��J���v���}�q�2�>�A#�(��^;�Tb(�	QT���p
�ltv�9��%1#��^�	b2�	��?~c,ލ�8#��+t*��k'?{����\MsB�E��f��1��1MC��7,�35M�طM�>��x�ǹS~j������j�ެ6�R��X��#۷���\��4����m="�&��N�� ���|_���J����z(����.�K�(�;�E���Gl,�0_�Ƚ�]@
�GGE�oV�.�4�������i�3=��Q2����F��[�������-�O�h(7�����8���Z��y�vخPp�w�/ӭ˲f*��D�3BW���<(*���D@~�i
'�7��r�;F�""��_�����/o�������R#ߩ��w�O&���ý���Q��i��$	�ix�B���V��[�$J�tS�����j�R4'���\ew�`5�=�&Nec�g
�ݥ�۱R��S?,�w�޽?�H�FL��z6x`I�hm��f��0-
�?@�1���F�dE�SB��h
V�wD���,�A^.G�������O��ִ�u�$N���<ݽ�<g�x�p��1\�U8������'`SY�r���W�M"�ꏾ�����hW��ݻ'g�lm~|�Í������A)�6;�������<{zse��tĵ��b��m�G�m1!�#(@E(8�~�%p���Jayc�.�����=�#m�d'ө0T�=s���p��4��R5�l��ӌ�$���j3W��&��
}�4z��n<�{X�Kbz`����c#S�~����e�~P?����Z�S���sK��>T�^�8�p�}ǁ��>�)�%�Gh��B��(���!�<v�ڬ��4�@wh��G��p�2rt`�����z��#�.|��kOSi���'���<ڀ*Th]� ڊ<��%*��*F� �îl����ky�5|�+�J�wi�.#pb(��70���D�	��z����v
9����=7{Q�eݳ5�)�F��"��(�K�f��\�
����~�|�շ�
���'{?�ʩ�����w����	)
�ʢRE7
�����Svq����/��|j�>X��?��������i��(�LJ�S�N

�|��7B™��!���;W��:?��]:pPH���X����l��f�>< ���,���}�]�G��S$�����9��z1Ë�$$t�t-���I]oK�����x��`��ȑ��N���yI䋾@'�d��FW��� J� &�Wg�e���� RT�pJ 8/D�n�'��P�QR�ځ:.��b9UE�!	<X��m	B��l@3�Ny�G�-���G�!���z���]{�i�Q�[��t%Š	A�
�NS`ן�B��&H�`ui���:X"�5��'��ĈuC��tךL$Y���f�A.'
*�۪l���FCޭ�/U7KJ��<��CD������B�u�􊄣
hu�GvR!*�앋�q>Rn�=���F	�=�E҇�աT�|%����f��œ��|�Rvl|����{�kg���K���:Ї	�����3�?w�����$�|镧w��
�JT���������n�?�����~��㏷ws��v:���7�u���G�M\���#׷(���I���D�r�]�5��0�!I�����M��4��'�.Ƽ���iF Z���U;\YouTq�ӽ ��#��А;��6����/t��j��S�A���n*�xveg�5��~�xw�������'To+{�b!�����G/}~�^+�p��fZ �:0����t�08Z�	�ma���6HW1>���-�4��
��[�뀌�\�
�=.\��i�&�
�k���3[*�4|8��h�Y/�%C|���J�i�sԁ������=�� -8�0Є�h�Q�ZZ�(�j+�d<�~�^���h;�aY�j�֕��T�N��+�
��L1�q��h�$FXu�����뻊=��̎.�7�c�~�2�G��?���U��H3C<�ۿ���S��������q+��m�z2-Ů�>��/���J��9ϣ��Ҽn��K�k��a�.	t����LO�Ձ��wvv.�{��'?Z$������Yo6��p�Tw:΋�vs0J]fG1�}�e�_|�l��!~`g$i�d$;KG<#ͭ�����������7�#=ܹ��To&{b���Z�av�T��J��w
��&���e�je��5>��ha2�w0�I"��18iY�I����I���aٷ޻�A�Ư|���?�u7��L���6?���6t���I�һ���k3���f��/��+N��L�̤�\�$( P'Sb����"��t�g0�؍�
ۘy�zi��,EE�rl�!��s�h��i�4���� �R�����
�#q@�tX���9�8��G�#&����BG�udC@D�=]�UB��{�l�3bCG��o���������͟��]�C>�x���W>�iV-��_x���_����_���ͮ�t�X�kuk��~Jjpi�V����/��ϝ9}j�O;I����j�U�}onu� O0��Ph��v�;�$��X�e�a�&ᙙc����i "{�;��_��߻��^�,�l�u���
�������h~���x�=��
L�3;j��P�O��bЛ�J�J@�H��o��҉X�ԍV�類@Q)I�g���gg��<qz��g�+s?Y�ء��j%ת��a�i�&`<�xɢ����djšD@��";���#� ئb#���0��8G�9@��d�3���D��P뛤,�-�vp�e�������AP��+��h��
��5hd5�%@h��+����Ф�CRn���#$g:v���*�G�ڊP���g�7j��҈pL�u�{����g݌��cCA���ŋ\&�?z}��F$~��Rb�fE�m�fbi����SK�\Z�(j�� w<�vp b��N���ﮬͯ��x�a�;��l(���r�p�������w_1�`_�{[����쫟䪖!˼�5�vX�Q��S�BSr����3�z9۝]�_
}��<,6K}����lJ�4-�쏧�\`<H�S'.^L��0<�$��)�Kt�rT]��Ƶ����v~�\0ZjV�0�~��z�T���z���d�b#��H�T�҉s.���͝��<�ig���/�t��nǞ;s~u��b���7:��S�	���XK'BQ�>���P��N!�7}�l�T�_��MD߹s�[���#P��5A��6T
��v�����?��J%�n߻�M3eӄ�3M��$k�n%O+�{�V�=;��^��{Ń�x������o�s*Ulgz�3ɑ���"���(칳a�1�z�G�����(
��'��Ѩ`�h|X��.8�C�vp�$b�[�
�G�3$�0��gyU6�EKmlbD�+��������R�_���\����O]}���.e��}��:88l�6X�b��ϼ��_N�ӏn�ī�
u�����b��7^���B:�.�r����|������(V�a�t4��d[ղt�!$�J*����l2ɒ����֛�v=����#�nh����
gO��\������ٽJ��2$�7�6 ���;����@u�3Ǿp��[8����`@84Y~�'~��_]��������[��S��ع�CS�������='DD6H��`�v�q}V��B9��O�p�·�V�xL�G �R8����F���j2��y	JJ�P�Aˇ�ș���e�!A�8.D�I�`����p6@�6v�
�� O�!W����V�	@����Z��c�D�C���Vp,��A�� )�K�{��@���I��H$^(�U[��ň���^�ԇz�>�īm����=.ʃo�8���Ń�Dt(�|��B6zzx�K������"�i��\,%V�48�mW�Htge�Tu�&FfSBTWk>�u4
|n�>�Y;dC��Z��������s��׿�y��KQ|:ɗv+��N���R���r<ϲ��e��x�yX/5�\�B�X���]��9��Ѳ4��s��X��?!�(�'�]�
�{���ڢޮk1�-/ϕoީ-����n�u�ݵ�p:ݰ[�m����%VWWR��R]�,i�vcy��؋�OٜP��ʥ���ju������}�Ï��7o�c�$턲a�x���lq� �hߖ���,�s�{go� ă����ewe2�Cc�\Wl��"i18����M���ݩ(c�+�[EUő�!��*Of2[��Mw�}X��߱�������5S�΅�هȿ�����Fh5:MT̄�O�[ZLJ�U sc8�� �p2X����
vdL�@J%������	�Ri�_���=!�$N�o�<J�Ŋ����82��?K�-|�@��r���=8�qO{��뫋��d����ǟ��4N}��$+���"��?���Vֳ��R��	}��H4�Q+��XSe�t��b�S���L�z!�Fd) �M�T�M��'���c��ں������{3bԔ�p�Vt%�~	��g����{����C16A�
�cQ;ɢ5�8.�L
d8V&*�8~�p?.�M��,�ܹ��N�|��7G3پx�n9_-������?*�r7���_��յͦeVTYW4p���PBl��wA"�|�Wi�G�Վ��a:��S�\�+�2F��X<zdf~��-p�\S�|%������M�OاM�2@C�.e�~q�+	ۺE��R@+P��hZw,�?�0y����{���Dž\8{öl��=�I�y��H�Z��V5��ʅ��E�$�LM����,��VV��6~|����}L��쉉˗~���F�/�8�4j��A�/JLD����Ʃ�F�c�1:�족`��.6wW�����Hx�S S�g�f�
�h</�����$V��'���y�3J�6yl�ҵk��x��>����R=0�~��A��:��}�&�?��{��E\Ow�gX��CX���O>~��Y�^?����n�#gf�F���O�v�T���Z�YYX�������a�����I�]���B	�r�x6P��|"��3-��'�%��� ˹|�/s�܍h�N�=PI�(�M�ޕ�7e��`����n�y��Y�l�7���J�2���`��$���@�'�g[��^<��8�Ի��O�b#Ã��3T��ߵ9��u8�`�`~Nl�㦻}�hX��i8��Ex_Տ��<X�S\:����K{�RUo	<����Gs�=�_��w~�Ԩ":��V��(��H">h�X���L�sZ�����h�\
<�.�����#r�s�S�0�h�,�A0d��a5��@A�,�D�u�G�?��+!w���
Nⵖr�칇k� �Nw�"�6�d�?�ʱ��[o��?��>m���++��J���Q��S�������C3���j�� �k�z�^��L�ص����ޮX����ĽFe'���0�#I>:�M
<Ia~2�},�Y5�N���tE8Xވ"�Db��2��p�톼a	%͓�.�O�Ϟ:9�����a�$����7��/�_m��Hu����t�(4�I2r���Ɂ�!@�.�?���}{{��sN�o���sب�,wIĕU43�?��fϸ_ZԪ�>xX����w)��
��ޟ���)7%���D<>��y�+���X��>�[�Â�����h�^�5�R��2<M���ˇ�
�$iz*�U�[���	E�隁�(D<y���£�����]լ�|Cs<G�a�I�(�PB��$`}�(���jEJ<����x��'ȏ?�;19���r�u�u����_����3;����\��bE''b��W6r��+k�*{��S��(�V	d�x|�g�7��Be�k����?ԕ�H�4ϑ��G�����x���u�%w���vh�����͕
��}���K{ &�X9Wv'zH�!QRW��|�˟�	D�&O<~z��ݞ��ݭ]�p(${)1ta6t�Z�cl|��M����#&y�����]��o��L����NN�,o�z8B�h�梩�J�d�ֹ3������cϝ��o�j㸭w�ҁ�Y л"1��V�.As�?��	
� �N�
�e��q�pS���w�`������N%a��^:61��
`,6�����4�c�����eD��8q��A���\[vT��`�@Ov��ow����|�,T'h�!	Q��Ȗ:�M�>���.^�?6=|�˛���m(*
�+�z�c�R�O�5ە�]�7��|����
\�(�" zq�Ȥ�����}'$$6��b-�p�
q����1gNI%>#����ޝ��y���WAh�n���6�i�=�ҕ�k����I"���?~S$��y� ג�z`��{ۛ����:-U�
�/�<՛���%�C�OP�4�6������D��cI���.C�"��8"�m�+���m a�-��J��8<+�h��m/�
��|+�e]�[f,�p��+mY�X�Cr��2���'�FR�x����"��EA\�<5:yjzfqq��3��&�\}�ƩW/?u%�Fn=���i*-�փy��p��������;�"H��?|�:3W*F�F(v�f��)��i���z4�%+���X]鮈�

�|�=T��P(FU]�}�YԱ\Ć�*�4q�P���!	X�� Cg{ۚ����^�T�&��ౠ+SQh<� ��<W�e�q��L*K$!E�"�F$��p$���S��S�v6`�é�
4.ŇX���U]�o��f�L:��_�������j����N�/��j��֑Xa�|P��Ǔ��x=�,r��崺�x&�$5�R��ƺ�{��3���Ѷ<S3�B�Ь�V���?����E/=�X�Ա����E__�!]�R:�P��h�6�+�|�]��{���>Q`��G�]^��L�����m*B���&���'�)�����^��%��W�z�GO��Tn��{{��=}}�N���rU~�^�05��4��;����.nUe��Z]�O�O����ߔR���Z���:�F��x@%��miO]9�O��e�Y�x��q���I��F^`���:<'�+�Ï�s'N��/�ړ�95s��?y�
�P��ݗN���5,l�69I�7�,��O��T#�l�, �	��C;մ|�f�U^����ɭ���t1a?I?q���[C��^|zmn�`s���{�H��ȱ�������l4��KY����h6tA����e���%qVD�+�SP(�`�'�lex	����y	D���к�p6��,KI4����!��+˛��O���D�&/>Zj�k ʟx�Y����ߟ���܇d�R����E���n��:��:�V�9��sqx`,*N�e��)u���c������D6ˣ��%��"�)@�����g�����r} ���l@�3��Q�dU3��ٯ�.�!\*�2�10ԏk:u��_�mY�[o+r��t2N�R�bk�����c==�?����ˑT�Z�Si����_�>>���|����h�z���X�����oU|mOQ�?u����n��X_4ݝHU�j�T ��`��0������r'�����tdUD��jR!ޗ����
��>�%�$I,��Q�4�bMRX��3-ˆ{�:9*����!�ÒpQ��I���1Ҏ׶�������(���P��#��nn�v!X�>}�5�7���.�$�)�H~WO��-�_�$����dT�&����p}�8��/
$�s�xs��][���z���7��p��H�(�����Pm\�(����LH�bA.����g������,�~T����7K��-A��w��X��/�`<�ѽ9�L_[����;=��avO��8�3�����f�Pr���o��U)��;91q�z^;�³�R=O���<�`�Q)mm��'�@�z��[EYy��Ξ>�:���Љ�lO���v����[5>&��ճ�f��~ilf�né�H��{�gF�t���w頃`�������$����?��������{g�N
�XV�J�{ij:`�R\�]rn�Zݩ����?��׿�uM��*N@c#D�F����z`�����������i:(P�.��EZ��8�E���k�f3(�+_�җ���o���R�0��!`���ۯ��_�y��SmM?9�5ܽ��"[�;r3����+�m�=����(�H
�۰|F�E�(��>�R4%86|&X���z@��u�ȃ#A�� x�eY�
$h6��\��Xw����@
���ʅVK>=3�����ܞ&�R2\U3몝�4j��j���]}'z�����O���Yʶն�dqgp(�K���rYn��T���*�:@nԋ����_V�l���{��+�4�Q^����QK�$1�F�c�,uf��@)�������f{����#
�v}�ɗ�vW�W�O��ol�<13�����QN8��vhI����2G�S�cK����������\�|=�L��6��9~aZ�՗�k��@l?ߪ��כ��_Ƀe~tTH�	A��y��vQ���I��P6�^,"i�|xfrb&�1M��l�G�Si�k�ۂ~��NE�+#�bH��G]�@��*��C��sC|?�b��0��A�Z���w�.l�10�������%8H�a5��GgY���\��*�Dr˪��
��(�rh�3i`!�����>���S�>��겒�s��V�-���J�٩�����z<��Љt&+eLG�&O?���Ʊ�8��W�gx&���B��\����~���N��é񙘘�C�Ï7:���_0ڍ��{�Lr��I~@��N�ڱ��Veg�Hw��_o��ןе`橫>�����@��N�2�����{o��ͥ��o|�Gw�<X�xn}I���j'�����]����s�������7>VM��;yP,�j���ݬ��<1��;�k�qbb�\X�G1����ݷ+r�5-���w��x�s���H�cݟ+������,��l��*��L,���a,�[�l�
�֭׾۝���q�V�"����d��jŶ
8�ɶz"�t4�Ө�M���@�t�(NjM��B���, &6�u�A�q�����P���kl��.�,��ɉ������,2Z��=�CG�F�8d*5�[Ar|���d�]#(x����lյ�7
�F	X��hHZ��A��gz���Q$�
$&
���:�#�E�ÎO��Lo��v7e�� ��TwTh9���xW�t6�|��[*��A3���嫧�G�)<�*�ઐmZn����Ӯ��!�^y���R�ĤE�M���ed�0U�OH������y��B:"���Up�E���g_}�i�mGpC�+��K}��x�mBE�ujj��F�Y�����퓸4!u���/}PV�=�4@궪ۘ�t�R['��)�(3|"��EP���`-Ym�A`���`�=�7>��c�.\I��]�4Z�kG���Ja�R�m�-���	�5XV��Q).�TK��7)ah#Ԭ�!MtT,o�N]%��PB��n�$1�H�!�&œ��6�[��CsR��	!D�򚮃W�aɟ9;ݖ]���r��嶋�8�Z�@�ƿ���4����]`�ZA{��><�6����ߝ�n�Fo�ྊR�CnSP��T��xz`��c�F�������pO��|�����O
��v]+V�Xq6�"(!�q
#����>MA�B�/MCeR��@,W���౳�>�i�
C!N-�p;�Z��.�k�޼����Tf���R-V�E����7^zz�̰�3�'Δs[�O}��{���{����Z��k���./�]����������k��h}kik�C|ؿ	�)LTH�wD�x:BF����;�Ϳx�����7�Uj�:r���q�c���ͽ��`WO��=���\}��{<X������������/���岪(�}I6�]?���(I��E0.�� /]9��߿��+7��7s���Ǣ��bHj���	���~0���R
�d9,�	����n5]��(�����X������������!/HE1�߮U=�ikz�P����,�]Z���̞�0���qU�Bi"��<%�@� p�c�pD�;e[/�UN��q)pL��	*v�7C��`�Ș&H�G�j.B�,�8f���*���(˵��޶|��s�c�Z��j�7>1��/-�k���n���`����C�=���T�Pp<G��Z�q���+W���z����}x~y�DY1�5|�4c��D�����g�`�vZ���;:�v
�e*�kM��n�������[�<zL��Q�S���n�r��o�4ـ��Ы��j�j���;~cf���܇��z�ꕪ&3"_/UWsyA�V�+�|1#
��"�DZ(�P�?�垮�í�Wn��{���(����������]{�ج��p�L�[{�:&E�C:����JځK�xw����9�)���f�y����(̈́H�i��+Hc���g��j�G,�D�g�L�h+��;F	��S£�� �*?3��_��k�kK���0�g2]]��~�jz��#�Fռ3��"�EҌ��'��v4$Q��+��HR�1G� �q�
���9ijZM��`p�O`yn��n(z��ؙ�Q�M|��Ul��d��|�X���"����U��i��8�LФ_*V�����uzu�ʃ�La*�o�i�qV��P��d��kRltd��aa��\$9���zN�
qh�00u��ف�~�"����������$ē�^m�K矽��Wx��ҭWk�����������{�t\*�V����Ni4�������f#hCe�.Z��r���+��׿��?���[��>�������k57�(��Ц�9�{���s��vE)�z1����hW7@g��L8��f�|-���2WN
\:y�hQ!R��A�(�(���r[���c$>�Lw����.,�]/V�SS�t�Q�_9�~a���1D4�	n\"�*��鞑'���
�Q�����1l������k�`k~G�WoL�;��Zggg$�%��ræ����h�\�Mt�?��P�Ȏm�T�	����
���+��h� ^���v�n:G	pY��h&��}�.�`:�
������ܱ�Vr�#��ŁQ�#0<$������&21/�ʦ�Y��+(IŽ���ˣg���H�x������R���sO��<��v��!����յ���	|T�a.�O��|�T��ʼn���DS�c畦i�
G�C����tP�@�DY���Z=.�
�7W'��k�jg�*B�c"`�@KP��N�<'ȣ�ǤRS~k����1"no�^=uvf`��F�P1j]��t*���r�p��������m,�Kɴ�(W*kK+���Q�/�����/\�ޭwe��I$�8�{@X:6��0(��������"�04�p���fQd�V#�˪�D	����LE0�5�
�.e(������n�8�pϵy�m����"������̕��V�M�|ː;�OXH�K���.���#0��/�KK�+�1ш�d\�C�L�f��ƒ���6�٣���S1��v�UC1�Ӛ�,�'�������g���\KuO�
���n9�QC:M�˳�O3��� <6B`����j��<��w����ܑ���Nza�O����)��\�D�-��LY����G��n��z�9!-��������V?:,���Go����;߹{+�A;킮�R�!��ԱV�T�(E��z�����%b�G����j�;��?\^q0��g:�7O2J�y�i�8����jk���V#��<3���F�!
�^��V�S������<���D�D���Td:��՟�_k���U�T=�t�@sM*�W�tE� Λ�z'�?��30���?���U���PoW�]�T���9�W��`�2ˁE�L�4����Y���G<�B<�Y�릥辡[;�X������B������/}�WTӸy�V<�Cl��8�U��ňD80i�>֬{����Wiz&,1��m�X�����g^��p|ae
�[�!���m���;Dp��`�$p�	S��/��[��4�`4�m^�=t)��H|v`0IFR,{��Ĺ���d"<�t�j����O��R��Ӗq����>�py��u�%`���tT �MY�\Y�p4#u��Ίl&�b�e��ij�u��.^�����p޴��@4u\}0۝��*A��A�I�A���Ú�0`�A���}b)1ѓ�:Mk z���>���:��������J��k�;M6��s�وe3IY�'D"@	��������p
T �Ů?~��陾ɡ'���w��˖Z<,厁mU���!�z����SW��>�����iZ�3�fӲ-X�\��hT�e �3�a��k���ٱ����r��.�zt��|��:��4h銈N'�z���?�8,u��]1=�tOr,�/4;����4q�(��EQLdS�mS�X,��^#�4��c%
�����t��+�Z��e��ґx��z�!�d"���dw���l�N���5��!���AJ�J���d:Í���Hw�k�p��`6�L�Ptʊ���T�v:N�"����1.H��T�L@;��(>�7z"���
s,
�I֌|��W/���jZ��6�>��9<QM�+�����O~��YT�w�{[�V�V�d��hIJ�LΛhh&�q_����x��� /^9�3קv��&n��ks�Fn��k���ȉ��0t���F�ޝ��U��b4I�F��Ȳ�c�@�^��\gG.�ͤ�Ηk��ܑ9*F�(1:r"�#(Cj�������
���9����u�DB��J�J��Hh����x2�gy��xa�s?��/|�g~��>�[8��$��S�N�&��CD��z���%�3y���/M���B	P'�=@`�X��d"��^��t6�)�k::J�V�S+�m�3��iud�V��[XXH'��O8�)���Ϊ!&ө��s�_�
W��Ͻ���>��/|�i�%�>|��	-���I>��:>І�CR4X#���$����h�m�u��M�g�Pχ�?HX��;%ٶ��̱�z�}�/�47{�|Oo_n�pdhtxv���i�[\Zq@�J�'a,S�e]Q{�|�P��8Ŧ�$bZ�v�jw�B����e��t迉N����h�8�(
�Y�+��|�VRM�7m'��$�����9�Ѳo/w�4���}yu��i9I�g�
�8'H�zLW*}�߹�~���	��r�^�[Y5߮��H��6�p�����?��麖�ٳS�wޏEcϼr�̵q1��kKk[�g�dXPZ@��[�@� K��>8���B����ҁnjA���	��X8;��7�l@�|p�aպ�E"�V�D"���.�%F��8������p��Y����3#c5]����l�����s���kH�8��%]��?	(e�x�`�8ˁ�塈���N3|�@&},AS��ך�,�fi@Zi�Q�6��f]�Lu{���O��U�n維�J�_���}����
s"�994�Ǯ4[���F#�t<�])wG�g��]�Q�Q�ǒ�ט�A�S�i��2�Z5Ba4��۝Xv����Jkn偬�=R��=�тsHm%떭��X�����;2��ݍV��;��O>{����"}����a47�Ü�!a9���x|�X[L������[��D�ZFM��p(��DR�^�[Q�8�74���n:��I�o˲3�O�HW�`j@V��R�7�R]s	��t4S�ѷ]@'UU
�-g���o�tHMG�\�MP�5
���
��l<�3�HG�z�9�Z_����sg�_���7�����{o�荳��Y��=܍�B4U��]'%�+�+�gF�>9=��	:Bx,C�E��z���өѨ���3}'�{>sa@���&x`qW2U/6몵�*�8���(u��ۅ��xX��JBLL�4
u��Œ٧_����箝��W�����گ}�i��*u��^�����i�4��z�)�G�:p<
�`��M@3_��\��� �z��%l��߇�ծ���T�t{���^�$G��`c�ܣyzzo߽_�Wx��fz�)�;��f�[������ �2�;d�A��Q�P��՛���MU�F_W������%�66x��lpCB>�+�d8��d������ʮ�^��+�ꮮ��F��4���$q$[%-Z$mJ�%�2���dK�i��^-��(��'p�@��U]9��������Z3�
T��޽�������Yx�V]��j���z�����^�qp���3
���Ry� 1��`��qwu���"��aϳ�~wab�٫
�/͞8hWI�J�3�V��m��P��/\<���[�f)�3]�7>��n=ۻ�ލF���Շ�������孋s�?��ŕ�C���z��L�ŸR*�2��X��@��A����L��w���L2碫��(�����fO��׏́�&�Cs݁���An�a(0��G������s9�m6:�0�4I0��:X��^���6��:�'
��=�4C��.�#�aAD7�}���9�b:�<<����d�gjT�+񸋁@�Ӣ4��w*�[Ϟ�m����_<s��O>����6�!$W��4Q,���^s0x|q���KZ����!�<�[�-���˷Yl�B��z&F!��S�̠V���A�?y� bHÛ�����l�y]�m�c�e�㉃F�a��A�
�J/Xި	��o�k��p�8�ѹK
M����4=!C���љ������}��ὝSW�^�6UK�)+${�f�����l"���Yȥ+�RBG몽�ގ%���燧������ƞ��!�;h_��m��-]U
�hR����0��6+UYb� ��A�F@8<dNJ�iiRU5]˒D���֟6jm�@mm���{�ۿ����=2��i�������
^{�.�Mb����-H܍��sI�$R�G�'�I��r*&N�-\��_����`8W�0��Zn���@�BQ��|ڦ��_�3;�\d�@��P�V����t���f3q�1	���dms�Д�w�?��\i�G���;:reqmT0J��P(�GW�#]BC�Ә p�ȣ{ӁE��A�0�.�4j���J��J���xz�T6�6>�䆅�(Ó�׮�#��P׏W����a��2I".;;4�����������و
pS/%R�X����`/6�>�W��>Y*dr_��5�10=��,�Q��7dZ:7Ԗ���:�0*�Z�}t$qԷ��5��X]�dj�zPI!p��~뭷Z����Ʊ���F�;�}��&2$FԚU��2��o���GM��[?�_�=�׿(����Vi��h���-bH<��u¨��mm�w:.�<��ɷ3�u����	��(����C`X�D�A�
��8�GeY>"h��'�q�ܶ@A˒�����$)�<���M�xf��Ѝ���}�;����T��ĉ7�+�VEQ��ā1� JY�v��CQU�Y��� �$D��b���u}���V���[�����w��RBd���3�d�F�u�����w�$O�m��,�MӲ�V��)@Ƶj����L)S��.�J�&��4����nl�VNO����W����7>�΍[k�&����A�����7L�>�f1��|s�r��
���^�2P�Nu�ASmwtP>�$*����iİ�)��V+?�ɇC�ٍ���?���Ʌ���Y��=��Hi4������mcgm�E���٢2�DQ�P�����:0昔N�L��N���;�;]�Ud�h�$hT�RF3���q%�lW���S�%^	4�Ù�2�����a���Ǚ�&V�i�"�#�M-@'*�5Pq���=���M��m�z��y�?�Z����=p;�Y�Zz�ӛ������F��ŷ�+���fN��<��ݽC�w%��"����Y=SPn��>��qg���U���^X<����a����s)1�^����Ņ+�6@&����vHz�5������~����O?[�������aϮ��"m���жqO
=�� {j���#3��#q]�A��$s����hP0����=����
��	2����݇�ZM�¹�^�|�f��ne�؉�z�����:�x�R�T�U�k{
ז�c��UMW��y��bG
��3B�T?]���u����4���ɑ �;�!���0� YVA4O����m!XݿA�|�kT��|�6�'E ��[<�St��5z��� ^|��P�=UW��僚څ�ȱ������%iN┣=��\�W?�m53�r|h����X���W�r��˧&Ɵ>}�Z)�=��ʚ<F�v۝v͚�r��J����/��`��Od�{���1.O�TM<'�$D�ʝ�EQ�?���5��P����d@����΍�����z�����"����D@
�	�!C�٣f�ڲ���n���CMH�ցĨǐ�"� �|����"t�;섛�h����l��A=�"d�A2Q��m�^7��[u�1���H!Sn�߹Pʜ=>��j�^4�T���œ'�a�W��iڛ�|������#zl���ݕ͏?���b1��&�#�SoЫv���b�:59#))�f�BV`EKS}
W�6l�ap����.0X�l��g��pi��ߏ�6��v��c�/|��}��Ma|�+��kW~�K��Q+���ݽ���pb�KWND�y�|������n�j��Y�G���Ne��Y�ѳ�l���1Ǘ֗i��+���]xA�g8��H�TL&�J�ְɾ뗻]�(݈t�������	�'y�1�K���n�q<��`
�W"Ԧ�C7�!�C��Eu�&��e(�.��TV�ΦO��gX����cC����01�-o�оC�$�`��0,-rȟ�vu��|)S����VW�=0�dHu���勯��C���FW�_Z�'@�j�*[ׯ�tn�x��W����n��p�������~oe+w���f�K$It�·e���5(�o�G���F��#�?��B��K!,��l!7���2���!(�D&!��+�WΝV���7���,���4���~�@�}���Ē�c�w�?���N�D��%;{b|��"��?:ج����:��D�}]�hj�H'�ڠ+Z��Z&�`��2��Ln4�eZ�����W|4�+kw����q��4U=1?�O~�����<��!XNwM"
�rP���ʟ
(���d��K϶6�@���5S��Kg�w��>��<��[oo�������j���������91>�ͷ��v�N����o}�[w�~Z﷩�?�/��bD'��M��AR
�z��s�]�c9XjgG�8j4��DR7
HƮ���_;�.p�b��H,����������`P��
R�nH������n��X$M�4JU(M]HEw)��p@��M
>-��}w�5����OӴ�:�^�p;�(o�Z1ٰ���r�kLg2N��x�Is���RJV�4;uX��]R=j���/��p?�Y������o,?_���4�+����v���!ˎ��{v�
���xz����=�J�p�ˡ��z:�U���v��r������G�z�@�gy�����f.���[�ёI���8�uK���'�'&>��-�w��x\//��m��#��;���v�;�Vi{�Z
2��b3���/�{�kk�$�ε��̸��
Y=����,�q6�i����O+�: 86u'�"߆�l�*�՗�	�t�g1V;��/�H(k��!�y��>�`5�l���B�	YD�N�N�bC>�KQʱ�K��A	8c�����>�2�&/�©��`���2ah�g
����Zw"5e[�s�߼~i�Xve�s�ɶG����1B!X��f��
����0��Z���M��c�/�l�[�D�w�R�Ͽ04Y�{�8����"���,$DFAh`D �̟1��C�*Q#<�:���.���ܣzD�h
u��y�b!e��^F���Bo�<���L�tZePCŽ�JA��4�Rٶ<��J%9�(�q�&-KN������[�c=���\�D����/NO~~�����v�	{�PR
���T��A�+���ӉX�Ɲд�8��ƏO�%�ۙW��e���XR>��Ү����=��3��!o:��Z���M�6O?x�f���=��r|(�#Yjgo�r���$ɇ��O��N^<y!��T�Ֆ�K�S�N���ǯ\���ko޻���M�����zt8��$��ɰY׼[����S+N��
�q�|6��{����ƈP�t�Ǽ���]j��<G�A0 �i�����R�HN����[nZA��ΌE\pXm����,B6L��>��x�:<�^����Yи�
�N%�]� ��'�a2����0���Q��w��J�	T�N�ՈK+�
<H�4=�R� I� K\|�X��*��^w>_�/�b!�׽�>����GF��?�k�v
�y�m�X��#R��ǽ���	�D�@���抎��3��=ۘ���k����ύ�~!��0q�����˧��x��AZ�PuHW�hab{w
�u�SX>Y�D9����k�.o7��럿{�;���-\��|��U�7q����;���Ŷ
��8�� ���+�����5�e���c���ⱼ��?���p�eM�N�xu]c�����b��+d�����ЕD�
�5)7��B��|V
�Oţ��L�C��BBީ�2Fz~�A�^�Y�IGt��fӱ+���B���:F��I���95�����*)q|�EG�a�r�eZ]m0>?w����nv�=��Ӂ�o�&A0��v���|��tF`a:���O�퍚=ZI���咋���Y���vt��mO�B&�9ܼ��uXB{��x:ð���J��ّB"���o
l��x�*��~VHH�������zp��h��~D	Ë���*{ �Q�<Y�!��?C�,��Ge��^��0s�r�8֫t(�8�6,�M^v#gnv��}�2�[�'��f�e�wn?X]]>92��l��ƹKo�??6��jy�f��g<H2�^�j��l&�b�z�k�@��i!K��*h�i�3����?O���K�X��' ڦu��	�u�v�'��NR<ϳM��u\��US7a���ӊ(2%��}9��8��i���{^|����N�^x����jc�ѹ}�KD�goUv���|t|�<�₼�㴞�W♻�����(at����S&�f�e�g�7,��lw�PR|�F����s0�k�8!�1r�Եj��}�k����‘5 �Ш���;�z��κ�x�\c�!M��zGE��*<�N�Q�D�s?��"�S�R�?�#R���65�]���l"!�|6��p��X�g�$�L&}X�����{ ��n�U�|ir�E����N�ǁ�W�ő�T\Ƽ���O��D���OV�c�4Ų˵C ���Z����T"8�$K��
�bj||(�?;2��iOV6޾z��o��N$�C�N�0O����ei ���'���7o�$Ƒ�
B`������\{p�O���GOg�ٜ7�A���=C���d�X[�B�X�!Z\k�Cw�| $gs2��{7>\���{_����6*�z�ߧ���B��+M�v:�>P~���8*��A�Q���`!oa�כ��7��	�]k�P�o��@C�cx�i�h2v��~i��D����h:�^�a����(+�vm�lu��ن�-���c�>�!����;��2~��j@��t�o��=	���哋wwj+|�|����kZt't������o�X�P2�cDU�T���ϝ]�|A������>=1q�؉�^8ϑ����*���d�<G���A������^� \C[�RG��10��4��w"�C��Q�
2<����C7�h�h^�C�Js���[�9��5��A���I�:׾��Y�߃������D��K��[/����T2�~kw���z�S��[!C�Ӆ�@��#�D*�p�\�!��I&�.��Tn͏��Q�On��n�x&�H	L7K�NP�Ȋ�s���"��M�9ȳ{��6��@0C۵	��l���ˋg�./O�J��"G-<����7����?���,�F��L��?�S��������v��ǧONN̬l��4a�.:� H�'
��D`���"��zC��(�ɱ\"�jj_p,��j���$��$�?��T��@%�Z˂G�MЌrBI��T�6[���De�o�̐ዑ�Q;B�G,����.����P1��tڐ`h~֖'�Q���(�ԫ3���Nv��f�}س�j(�%^f�|:�;> >5�b�$pL�d��}��rm?;{��$�`��|�U��e�|�4������r*7r}�4��>�8=6����ۍhAQ `�AH��I',�#i���_0#��;���WW^y�\9D���h9D���vk/~��xNP�����d2���X��T~���#;�-X��LV�{�2�������;r�
�	=]bIձBP0D,�rLPB��j���U�b�IO��]� ������ݽ�r[��E9u:�g�'��77���{c0{��ˁ�A����gG
��G%�-�� �J�\�hȖ.�L�k��d��a��l�`�D�$J��h����/�d��Rq2`���{��_={ã�L<t!Cy��������$�+�2�3z��X�#���ό��,g�N������"5T��L���~�tico�"��9�)œ֛������Z�rkm�i�`���O֌ȣ�c;!�˛�+ׯ����c�ٌ|i2+	��?�_�WYU���D��ё�Q�$y�6
�9���娗jHA�FUW^h�~U#b�<Fq 'C��8�ddIΒ�"�4A���<��(,���R�e��;,��]�gK+K�"���ΘD��/\��kF	�k_����GK�w7�{́O�CcR���tf8/&�@���/~#�Tn~z�@�'�X"�N�8F���R�y{g{��o�,&��|�ڥq;����$ĨŠ�t.�t���$uO��v��ό��]P�Ѓ�u}�ch�6�w��},Ty8������'�n��Z���;�n��^�(;��f}s{���b2�(W ^4�A�i�H�XX������U��נ	%&��Y�A/&H�T�B��VjH&��� q'���eI3u�(ò��]:&Ϝ��W{���,˧ytg���gA���34����"i�&��H�-7���Q��u�6\�Bm�[O"�q8�M_��R��/Nd��N�q\�B=Mg(�%17 ɁL97�`�f�����lq�7��_���꽽��{@��8>�rM���@W��Wg����i���W��v�ѡU�Mh���hjh��޶L	����}x���xiXk��O�xym���fٿ�7��Xqx��Z�����/?[~2Ủc�0N�c��r�{Ь�%"2��Z���u��$G"jH_ꠥ�
��: �J2�'`�/�9C���w{�@
@̏'�'V�^%�;�2$M��S�e���W�<:�VV�RJ���\�b"F?��;�����������b"xzOk3�J��X ���WN}�֍�FF&�t�t��^�}n���¥B��?~�0w����z.%=YY�k��
y�9����n��:[��I�tZb��e��t,	*��Q�Cl�X�l���xA��Zh3v�z��Zj��N��n�e������gF
���k�
Æf�4wif�����m��;.���Ƌg_={b�Z۫�m�{��*
U;�>�9�U�=/A�8�bht��C�A�L+9D{hyH߀Y@8!̀w���)F��Dq ��R"G�1�^���X�y��K���]7f�y�;�;�j������(���|�cSc"���O�tt�ҝ'�H�e`�d<1<�H��>�ɜh���,<�)��͇�}��혤�����,o�m7k��^�`8�3��ʇ�`I�FǶ{�ы�I���2��`�2h]
]����J� ���G8EN� ���-
"H��Z����!ɐW�J���ٓX6��%�����\�O�&Ev�}`j�A@'��;Q�:���e"��t<1��Y�ulL��"៳4	#뙎����(���;Y�'��m,��D� �PI�A��Z��&{��H��<'t[�_~�܋��O�v0�{H�h9�8G�L?
� �?�i�Ō�~gbx&+��-/L��d��D:K���C��j��,t�����	�(Ґ�HBД��$���M�A��Vv$��*n�q≥Z#�ѕN����o��%�~�5h���_�HO�O�*�];�#�5a(��*P"))��ë;A��0lie����_��/��s;�[�{�T��~�WI��u��rL���X�]���7uHfd�U�5t%J@}�$��"�tD,��e�*�a
�h�PGxf,G�R|���Vz�қ�g.-��S��Y9�:ZK�u�v��LD[�J��k�n�&�v�mL
��� �q�n��J��Ϸ���o�?��_�g��^'5�Tn�]����*��xrat���nmZ�^k���F��ZSNk�P��~�L��5<h����z��g�Ξ}����e�9@ʘ��ag��=0,��S��B�s`v5���
C�$���V������$/o�M�p~rz�ѧ�
�j	���F��"�
 �CQ:�\�%�d�q����
@Ҟ.�pXkz$9�D����so���n���z�t:�׳m�C;eu��~�#+ HԽ)D��gt�A��m�x���It�ɲ	�ޒ��$I�J,+(1���
�>���RM�f�u��{�NE�,ԩB�����N���_����w���z��������W�(N��i��!V��D�j;��=�2/�6�I]5�F_�q����X�v!ﭭn4@|Y�Ax�G;��r�R��1pCd���R,���3�6��Z��U���a~t��x4*�V��QG��օ�9��|%+*����l��)QH�
�˯�1^(�no�����|�K`�T�75���-�<���j���@@3�j���I�٨VJ��~��m:�t,��8P�2)�Tˤ����a��jz�Î�$�;�w�����R�s/6*��<*���461�l����d�PU�_D�;*Q�D�*��{��QQ3�*
s==tv���s�[�<�@�?�T^��w��uDZ�U���Ff�KAt��	�7����ӸoJ�t~rN����M�a�/�Ӳذ�D��b�]���l����_�{��~�q��{K�k}�"D�q���Ыԫ�7L��qb�Ե/|�k��{c<[�6��^�liJ"%���cgw��N�NL��c	�ۉȯ]��t~�Q�DuJ�4���v��Q� ��q�S$/�0��x��,R\i��g����rmô
�	��dgi!�i*�I��v����wsUJ����<|����Ǘ�^�Q�m%{T�ם .P
����ޞ�
L��������f�����m1�ا��`0qK����]
��772����[�o��O��
���(O�i��Y>���b�j��S�@���Be��z��*.p��w
�B.S+�b�a}�gY��)x>p�(D�.��	3Ia8G�I�M��0a:�f�0��������F�su͸���v�m��n��G�K'�LJ���!n���*ǠZ���.��O1*y.FE��x\fy��h��y&�`
���f�H�5�z�j��hݦ7�l��#V`�x���/�p���[{3�ܕ3z�zt�~�:�(hz�Rb*O55����Z)��9���	A�I䀥�"S(q�cd;8[k��n�n�`�V�<x�,����Sd��.��d�����$1�YY�u=�}'���P�1����P�C�o�2� �����F1����nf�I/t{jW`i@��qj�H���D.�b#t��R{1�M%b@y�]xa�4��q-Ԥu}�TD	4S6����7�x;��m��X�F�eY�LaO�6��
yj�נ"��Ȅ@�{�jY�$�Gg&0�}U�H��#J�O���Y	�'�m(U��~/�J34�F轴,]�nu� ��zυ�DGxE���Ρ��$��67[�Z��ea��;ڎ�Q��K�AbtU�|ݱ��6ݶڻr�D6;��QUQ�n�|�%Q���l36�H�$�p0�9Q��Ɵ|�I���U>p��?y�����a HT)Av�鐾�$�Ϝ�
�oS�a��Ъ�򭛟�ZV�]�?��0{bfaq޷�@���K�x�H��a"�zy�,���ˊ2�:�'��T��$�~�tZ���s��ڄ����'3�\q�Z�7o��X��W�3C�,,��[�v�B�},rD8|���/,.>|�����tw'�H�ܵ�!?��[�>�ٍhT�ȳ�Ti2��rA����h�Q[9,G"������@�(F�!D�d�SO�U�M�6=1��S�S����w��/��wj���L"~,�rlت,ƖV���.΍�����2V���6�R!W���yJ����z���2ͯ?]�<9���^n�]/��/�ᨃED�K���K����}��,��1ú7B�8;;��~�2:Q*���?���6�� �I����n'��_y��2�f��Md:
��E�(��`>�MS���2,_��x�L�����6�Vr��t#�����q��
��*IvbR�:9u�E%�h���GG_9���?5?����O~��U~�q�4y"��c!�R[jT�b�iY�n~�X.�Dm�(�2�$��[�e��/��v�p0�״}u&€��,�㡇�z�8�mӔP�M�Rå�h69�D��4-�,
�P���X�4�</G(#?:"
!=`$���Y�Dml8vG�3
P2P{�N#Sd���"� �I����X�����.�򛯞%�T�~����o4�~q�" p�#�]V+�2��	�Ra�3"�#(�t }��cTU�Z�q/�}v�o�;<0,x72�M�b�/����TZ5`"�i�93Z:?5�R;@{x�&XB�ѡS��w7L�w5U�|�<G��FgH�KC�~9Q��U⏐w{>C��gX��^y��6W��-dR�a:�Y����r�ow���l���W8���\�	"���d*��U��tf1��f��_�k�aH`��0���z[�J�T*�LZ��[Ɯ�T��bX��0́�>��#�|<�_����%GF�0��'2�,EK���iZ�h?\]�I�Ky��iz��h��
E�{��HKo�9�ş{s���7	,�ύ|���H���H��r>�6�;;�y�Xv<��Qay�uu�̾n��]�6Iʱ�$�ғ�Ү��ҝ�{���cS_��k��;�.�w�.,kZ�����<�0�٩Yߴz�^�6��ZHҜ �$��8�(��B0�t�(	�78�C��9�D<??<$��V]}�0���uU���JFa�0�}~��nZ�n[q)���޹�hi-�����eY���3���-I袖�g�#�2��2�#"�F8AD4����(�Y1)��r������L�⓲x	�����Ɔ.?�D��,��f���N��1�蕙�:�Ey2���À%�۳m�%i�h;�f��wlԅ��pZ*0bR������;���G���W�ѱ�G�z�j�#V�>�ŋc��m=�< i�e�id+R���tX�XѠ����c99	�8s\)��M��L�d
#�"(���lT�k�G��VM�k��â"u.����L���@D}��!H �q`"�~
YR�8�L_�jcIH.��O�mf V���!!���|�;���ӱ$ρ�"hC��_��7���h�Ͻ��ݍ�|6w�ꋧ�Ζ��j�Y_�<8��wu��7ԣ���z)Y8��iB�itZ��$c	��U]���>�2��Á�lyVZ�% f=��郚<3=ʐ���<'"��Y�"=�dR���{3KD@��ȶ���v����G��yo��tB@�v2�ۭv�6#"��m�D���4�F��H�8��T��"�v��ׇq�+rH�����>�y:N�9l|8b�z�rs��Bډ��m�
������Ӄ�R�շ!ZYd�
_��CYH�/�$�1�Q
.K�GR"O�ͭ��:�)96�K_}����9��-�*IB�Z�>������G��tu��3�W�����j���K�̏�|���]!�̜<A����x���)�ϝ<wfx���w�0����Y_k�>y21<w���\r�UfC$G6;�N�����/e����Cx	)A�l�ұ��;�ީ�Fy����'e��9�C;�F������ۭ���jZr��,B��FZ�A.	,�
���.F�}��K�M3��ݧM��Z�
��ӳޚ?;��nm��n���&��A蹍ހ���:�t��o�o���k�f���o�&=�Iij�N�B@dNFZd���$��f��4j��t������m�ޫ����P&%�;Z��y""��J�c@k�߿����ݭ%�p��]�!`�6)��&���5�nX-�8F�r@�8��a6�a���L��+�O]:��s��sWO��O�,������ఢ4WV�^�r�JK}T�����}ZΈ�b��ry�I[����$��?s2��ת�n.=,�2!0
'�(��*���A�Q;�Kdໞy�DQ�T���PDE`b�eH�fH��nK� �\T��B�Ѭ*.��&)�
��
��$x�¨x:�-a���K�F
yX<��o�����j��Kf8��di�ĔDP�����G��{g'�Wj�����aewu���_���Q�oՋ�]�(��]�?Ng=�N�b�/��܄�$��ꪆ:��hf{�5ET��E�n.�:��뉱��1^0l���d���2
�r�F�t��*�7;ٳ��D<!�"�E�!���(�f��oc���Rb��(�#�Ї$.�"Eb��7�@s񯟈
,���;6�S>'1��Ξz����k� &%Q"�d���d��[�k���w������2/�b��zm�գ��ݝ��6���i�B�,L���ڠ����3Jf�ڀ�َ�\�t�K�\�	!nC��X.�:w��_��a`�_8]�45�f�ݽyخ>|��ç1Vhh���~���l��Hݥ���7����z�t|nq"3|��B�h�y�3�gʇ��_<��/�=�̛��j�Zs�į}��ӓ�É���O�&���µ��S�=t��}��(,�5���̵cg'sC��ft�Ub�,�D����	f�o���G$�DDȣ�+:�"�[�roЂ�j�6,w�eс'�48,�vϱI"@ �6X�v՝~��Y���S5��Q$8;gѦNd%q,IXj�f���(E 9� �ж����o�n�:��RDh�vo0 L����A�����۵fͱ|��tB�)�s��]�@�|�F
����Z�s�f�44���9><�?}��sX��o�'%>'ѵz�gҚ�;j��)7��Ic��C�$A[�f��ȳ@>{>n�C�-H%G�/�_<��_�S�&R���o���NLO2�j��w~Z��f���྽�^_~�V�#���N#`y1�L��u�j�><3�c�Ӗ����<{l$�> ��������7wwk���⏖��>16��q�/*#0L�b��0���Ra�εP��cڪn�1�-5B}'�(�y>A���������s9)�t@"#�(�3��������
��=x�o��?�J��۷:XZ_CG_4�����J�Q���r�ޝ��K�^���|��/�<y� ���	�����n�Znt8�k���^y�����p�����ƨd,�����$�,��<R5�(�~#�I�i��b}�E���m�1����<�6/MGn@�����"�o
�߉�-3?BW�h�4F�TF�mv43��dM�{{n��R>ZmP4$EҦ�|=xt�Cg������(�+��;�-���FK�l9���(Ks�Bbb,�H{���[�~����'����`�^�y����!�[6�ңI��QDE��56pBնD�+e�H&,�ԣ�	:"�d<�1�W���'s�;7v_��p�X1+p������=�V��FG�V��G�؁;]������y9;�ˏ�FONe�G���H��ʕS��F�Å.�C�7~��6��"Z�&�t��Hz�Y+Ν�Y<1%{��߽��íM����TJ.d9�muj�^/wf�C�O|J�N�R�Y��o}�U��}�t�ӌǓ'�(u��+�Ӫ��Վ�2�.�q�BBȰ4�ڴ����Q�cݻBe-��ў7j!B3���C57���~-?"A�g�7�;�r�S����z�3{4h,rC�3�("�(r�c2�c�e�b�)19�5���Q����ŀ8Rh#����J1ٱ�(��pنO���1HrR��)��a��Bej<F_���ի?��n��		Q��{=5Q���0Վ��@=������.��G�f&�p1��׾p�K�]8sꘔK~�G7/L�����xsy���O���{zw����|g�ը�XȲ�/�yP>EqG[�
� �.���RU�Ҷ�:�ž �8N�4�3?~��{��L�J���S��cq�=K��pB*�3�)b����n�E���]�o�����:��F1�,�ӌ6IP�:j��_��_���wn5u��/�����?���֗v��ZSa؛K+��ν��L�6&I<��^����X���Ħ���8��N���+�|���_{���ӭ����{����H�� :/��U�s`�Y���-p�&a�d" ��ơ��u��1�;�+K
��^`�V�ד�y���*�%X��l�L�L��ii��U��9���
T�a�0\:h���ㅫ�������O6v�o�Ta�#Ȏ�{��nEr2�yg�d�$�ӽ�n�1=gЫ�|,+e8HplL��q}޶`��d�'O�v�_��*���V��4ψ쁦�6�V�A �$�����@�s���.D
�ؽF�!H��D�IZT��ڣ�(�-qJ"����y��k�v�V�[��"������k�|p�;�I]ke�c�S3�Y�cK�\�Ӯ:&O2�qy��<�e4Y���҄��gp9�̜����n.������x�W���L
��(j�:>?Qrm��|��O>�w郻w������]�����l2�-�����~��\���n�+}�j��J���{?�w߲���P�v(�.Iɴ�z������f{4E�����aL�
z�m�*��1�{K{t3�i�'�d9ʲ��E��$�K�5g@�aD�������E#A�r4�K�V���"�z�$H@m�B�L
�p}�	0� ��T	�t��aR���}���!���#%N�G�����Η�8��ə�B�׿����Ǐ���O߷�h�\"�-��?ub�Kj��,|s���׮��׿��'.]���T�_�&�l?�Zև�V�n~�:�Ϟ�|�����߽��_�.��Z�k���Ó�!
2��:<"R����AN�RJ�5�P��$I6ϻ��p�qg��4-���@�O�
�=w�]����ކ)��t�n� F8j?t�V����Ꝧf�#t����G�1�:lDN��d1�I]G��?36?55~jj���-�XNk��v����N*���ӽVC�8uЂ��Ŕ|���s�����?�G����@�?�z�\�{�3��H���>�����p�����7 �]o�a��78䀠DG��.I�\�d.��H��� [g4�d)�"+��:� h�/����Y^5��Vc,�K���rv�Df4!*'�Нn�B��%Bk�<��G��l���vs��;v���k��6;mם�`���=�>��c~�q{�zV	���}�ŋ#0��9�ˆ�{�폟��m���r2��埃/ju�$'X�y~�
�ȣ����?�ۿ6"��/=VRi*�̈���t,��Q��ɂi��\z�Zqt*�LI*�jv��e�rD-OD�	�a���w���e���f�$~���<#��	����<x����Ta!^�zv�z��2<��H�����t>[�4w6�EF<iqxx�LI�{qrjf|����>km���c��gx&](�/�<}�B����'��,'�j�����0��Ǚ���K���mWW{;mfzz��ɡ)����P�t������;,�	ؓ�N��rW94C�a�k7Ӷ��L�7��޽|�]�k-�pz��3���#�/J��*�����b��]�s��w;�OB(Z7U�ûY}}rl�c(7؞�YN��QlTܜ���j��p��� 5ūAĠ�Z�9~�`���#�p<2�0tz���c�}�*�V�=�I�a0$\���E]�o�|}�$�8�o��
�`�E׵m�J"�{�Ŝd�(�^��jM���R��м���$[�^ڿ�;�33w<��{��[K������r����^����
���r��B*�s�|�ɧ;��(�F�g^Ӕ�$��|�W��ٍ/>������rE7M�~�	C��K�I�R\ES�V6�Bp�0��c-��3(X)��L�)��x
�l87�`�g�.8��p�����7
5-����J�.@k��f_��,�ի�;�o�^/�!�D��[�x�1�	L[P@�U�&Ph Hr&������=Nx8P�K�U٫�QR��Ki�96�Β,Mi������{�JZ��B�e��l-�uc<=����7o�ߙ�W�W-ϼ�|��_��o~��'��-�ܨ�
Cy@��DND�b��s����Gөt�݂
Vd�2�%�v��M�	`���>�dTPZ���ʥ2�����3M�<�
p
G�}�� ����C�Y߱�'�l^}{��4a��L�#~��/�X��O�,���s�r�ju�/N�t=�WN;=2ri�a�m^�b��Z+78zx��#�'�x�7RI����{f���@���!dԄ޳v�M��G�B,�������"1�\x��z�g��YWn-4mb��~ǰCؘDZw���[�Dj�ľ��O����'��aQ�mn�ό_|霒��5:���3;��v�z�폳�D6�Ĥ+�x`�%�a�#�Ģ�eF50NJ�r��f{����R&�:b�̉驑�P��埽���pV��O~x�Z�Y��
�NN�4�U۠���C��E�sl|��2���s�η���ڒat�'FDz�7o

Me��K�nq��鋥����МƩ�h{$��Q�3٬�����P��"�{�h��X���o,N"'q���"�����E��'YE�۩�U�����vDN8�G���.NN	xp|�Cq�h(�n虾�[�����H!�x)��kUaE���6n<XI%	�z׭l�����z}�ԙ�O<~���n���\�n�f�Ӭg={jmc����>y���W���n��4��>���ڣ�z�!g'�9����D�CDI5������}�Q�r^{�Bv �����Hyh���bi��C�p��
�Mq�3Jj������/�������ځ��n��$�O���f�q\ö�2]a��i5���$ipѡg���B1l`UNߴ�!��ǡ��	��
�L�����?Jʒm���I���'<�C�"��\!!(�ٚ"�)��>�}�jw�������ÿ�k��
�&^x�U}u���j�?�����&x��	�٠�DJ��d^�"����L�S�f�z>�����;JH$}���>ǣ�2��dR����u��uf��Ժ�f߅�
kԶ�(�L f -�?{`�ⱉ��mlb'q6�(/*C���ݮ���Z(�2�ぇ2�cn�U��ߏ��߀C�������2�	FY�uT��w���1�H�H9󕇷��?��W��ˆ��~���uLސ�(U�d5���>9���C�;�6�?$;�i�N��s�vd|���YIc|�Zۺr�rJ�|���Ϟ<�������n�R��k�o���K���|���)B�qbr&�i�]�$sl�W�[jZ
��0��Gݼy��X/��b��Ww�ƧG�s��z|���'Dc>W���u��.P����ڽm9)?�����:ɧ���'(�����-��G?Xܵ 8v|��i�����v�D`�e&��'����f@ѣ�BVN��;�MD�"r�����[�)M�H
�W�,�|
	��e���V(w�O�8��+Ol��}GvW��AB|Q���<+b3OE��(�9���s�8���F_��IY���4{pnui1���m4jn�3��V�Z�ڃEZ�Y��<������F�eiUрd��g\ɰ
je
`
��%�\,�����Fܾ�v{q	�	���/�xk�έ���?��
��-pzhր�z��'*{�K�o\������^yH�k��Mv���CP�3N��h�S�E����}����F'�<v�@��~{�
<Ŀ��M?8:X>#���(oN�RO'pwZ���j�giT"'�E~{yE�U�\y��,®1���sx���m�(�͑X�� �B�X���
����;�7i<�Ƥ%I��}��M$����|��13���D��%I |���l:�0:�f��O��Q�o��G��?f$?�u�Ƈ����#R"�x�2�5[m�q໩��%�
�F�дl��4���E!K�3�b��!z��d�v9�Z�7x����0�,��\���=�W7TQ�@	l:��PRI���n�勳�n�U�8��l��W2��
�d�>�T�/��A��H���ӒY9��W7��(jƱ:��l�}9-���wo�X2�
%
N�G��>���n/�zp��W*N�}�;�9�J?|���F�p� A�KiZRI�:�L�*{F`b�bߞ��f��d!]�syV�tF����W�r|�#�������Ń�O�x��AOg�����p�.���e{���S�vw�~�o���w����N����g�Oe($֗�D^J��~��w�z��Kd"�;1�	�״�ۭ�u�Ӱ�6QGC)p7<A���\������m�
L�;|�r������+O����O	Z��g.�p�[Z�?<�R�f�vl|�s炞V
�N}��@6�l6l�L���nԪC���t�/p,p	���"|0���5,���i���Ä7o>�Y-)�"P��u�X@_O��N���0GQ��a0�!hp,�R����5,�i,,.�r��M�4��Añ��}R�d�dֶ��֝��M��! �ʱ�뇀*(L��E�y@�.�K֩��a^��(�c4�չ�K��C)����+jb��Z��PX�[_y�Y5Vw6C,
��J���^�p=��Y��ir<7��b��
��%�tst���g�8�䩃gN���j����7^z��^ig�Z�4�7n�ۦC2l�WE!<J�c��GX+�|2�K�BӨq
!�1�d�c�K�ƭj���gO�Y�,&`���)�^VQJ�GT<����>4���(��=��	���@��g"ed ������`�#l/4�^O(V{�;N,MA��+	Y�
��&���<X]��X�sGF��kn}~��G��}~��'���7xDd@��-���X7A�$�O�	�D��x�&�Z���ܿ��4{����hE�+*V����0�<+��,Ԯ
y0S��96�ʖ{����F���;p.�iYd<?5.Z'e�����X���, ��I�cu�_:5w`h������q�y����e[�=9;>y��<���䭍���h���Ƿ7ꭔ&X�+�G���/��pm�	��s�8v���O.}��g��,ȃ�#U\�������qe�є̫)Q�8v|`����Z�1�o=�?X�7��{��� ���'�,,��:32�b'eyzr��۳��/���n��n���b�812c�͵���|��]m�4[��'�^|扜���nܹ�@����7�kݮ���$U	#zg�ܩv%F��A����,���ֆ�[7��G�7��^����m��0��>i����_|�����S�C	Na&<?�����r�������X��7^<27s����z���43�d�4X̑2륆���J}��QFь���t�:6�a^��a�������ۍ�}��+��Y�M�H�?�
6���c>�9���%^T!r��!�1������	�k�ng��(�2��sSO>���8�j.�����E9q��Wʥ��u��	Q�}��u��xV�P�30�>���fA,|Q�)NJ�t�S%D�J�`Ы�������ݽ�R�"�N�5968����)�"�������G��r5���(�������G^y�ēg�y������_��@.��[^Tj���r��Y���Y}/�RN���0�k5b�Ҙs�T"�q�4�(�՚Q��N��o�x8�ĉ�
��RC���xV[�)ݫ�p�~j*�1��o�$~؄�픀#�y} ^��" ?�,��3�M�1EeXl�Y��@�����B��0-�]�����a[VVK�LL@p����v�Q~��i�(������~�Uq@�&
#����N�S��ق�y�
�,��L�
�o9�G��i�k�k����n�l�2���z�or@�X��p�c(�Zi�41J�j��
`�>�T	���d��?�1p�	;���?���X����
c���a�R�bu�eb,�����1��%eusw��‚�j~dfD>)�	���O�P�%xޑ1����K���F�n�0=�x��~T��;@��&��i**���sp���~��R������]Ҿ�����F�x���
�ګ_�Zx�x����wnܽ}�HN�~�C+���we��?��/���B�Y��}���Z�6?�{�y��?��m�=v���ep�zSo�����$�襻��e���6[���uw��������P�()YHp�!b2����wyQ�9�g?��~���?�m6m£!�`,�9���7]�
�tZũE���������������a1O�Tn�H���:PBIE��"o@S9F�_�E�:/P�r� ˒�}@žM�Ű�������n��d���W�%��?��}��f�
�	��}���Xl�A�`L�b5(�^"�8)�7I��$$�tM7UU��d%9�ԫ�V�9�o|m�ٝ�����`�_���Vt�<;¬��sO4v����Ǣb�O&+
8���e�C�����n!7���-�He��ݚi�/��TDs;�U�5,���QYn<�<�o�Uo�;{��������/��O�z��>y�������������Z�0�p���r=a��(��R����u�HW�b<:�>D��}����Iɬ��*G󹙔������w�P��٩��__�$5[�����Ռ~\Po�ST�u�iF@BFw�:Eҁ��X*���9����8H�9V��{&X�n�K�<@Xnn���7Ą$�̤Ӱ�^>�ȁ�w��拓��w~<pp�‹Oώ��Յ���?N��
����l�w!���״��g��9�0��l�ݻ�EX�O���@k}��B'�\��4
w�EȧR%���sC��������R�laT��X���`H��ѝΦ8Y٬րR�.X�t}x��:nh3,��B$�c�S��	@OJ�Ak���!�y��g����5H8d���8}����mo9��,����g^��ݻ���WN�w��k�p!?Z��9����w�h~��䝻���p�0�̡s�M�hŽ�R���ǟ\�����ͭ���*X���.08I&��O��[I���w�+՝��[�Y_(��!�bNI�p���?]�+x�lm��jQ,�-��t,C�V�.��������H��ĊB:��ͽ�������WV�ܸws
�i9$���Z�p� �R���ۺ��\n�Ł���b��
L�	���?������\�vi��c���_MN~���Z]]�X�rx�3-�i��z[p���ʦ�課�h�����)B���c�>m��ݥ=�bVW�o-��(�8A!"8���<
^	�����%�w
Ib�"�x��M�y+��O+Z�Ru{]���slOd��v����^q�c�`-+)�
�(����v�`��/nE�wjX�P��u�wi�= �$���F���ٱсD��n�n
��x�!���嬬�M���7��ų��������7���׿��z�swa����g�]/�v�w��}��}�
MϷ| Rt�U��~ŶK洤��F-B�	e�p�
/����C���e���LLom�=��/?���Ņ�m�n����f���R[?::���ۍ��ne�8FQA���
�k�)��
4͂Ӵ\�!,�����Ga-�M誼%�}�M@:�kc;4�ֱ4���
�R��GF���Ҥ,H��w�[���;�N*���]|� %�ܻ�G�^{���߿UZZw�S�"f�:ݾc�z��i�u�+�kC�b*M`l�ɠ_��b���;Ǿ�����V�^�TJK'EM`X��y��S	�Z��Y��4���Z����z�TEqf(�����Q5V�uNS�R�A�����>!\�C�b�W�=�q�Q`Έ�ËO	��"Sjt�0'�DY5������^����6؝-��r���>y�D3����uuggvd�󱥥���y��Mfi��ſ����v65�:{l�����3y:�s�{;����[]�cf�S��
�t>��Є1:2>[H�v�P?x���/���V�+��5����̱�v2����&O7���ӔP��#Ӝ���k�Ꚙv
���OoҜ<11���o�^�ɥ�����w�ZJ^m�AD�Ӣ8.���r,�c�B�����g���	!t��>x�8}�g�����
�f��3���D���/�8�{����`>���R������m^��UZ+�N,���GR�;7g�j��}��������-x�0dC��D�8�hU<(	��D4b����\�Z�U��v萧%�W��OY�P�(!�Cݷ#
��\�op��k"�˸������C�qS\�g p�{�k�aDͫ�@?8ζ�Zu�r�	����@Q��ߴ���&V,\x��~�u��ΜH���vwqu�����O?���O�\{�������;M�GJl��j��G49e;��I�C��|JT�t�o5:�j�*h"�����=Jc�6Pj3�
gl��!�B�ֿ��Zi�H�Yn��Z��\�����cW�VK�z�O��.��i��N�u
�=�_�o{��}�Wpl��L(�5C�d8Ī,�p�JAJ'Ӛ�bi1�H��Ct��(����r�;�W�5�Q��F���Z��7wJ�#ǎ�5\���"-�n��. c7�$^h�f���݅^��h�t�f;H�	�x���X�M�	��.���̝̝:�//������Iw�~��T�I�$S�u��ND���w}�>t���m<:d\aH�o�k>=V<<��W�Ҵ��_�<^H�y�o��٭��|����Z����hTΦX(U�^
��l�<MN�ju{���r�Cn���p|")�CC��?��跚?�s�_r�@�[����+�R�8�ѵK?��H�;s�șso<깳O\��0�p�	>[Lk���Ţ��=�τDN�5Ej�*�'l�8��ڹ�.}�9�Z�ޝ�9A4��	�tV��<q����Z�mo7{�}�R�W�u�Kd���FD�[�y}t��|m���CDҽy�$�{s~�G�}��~���jY�"q��K�"3BVUTIbpҍ�ol��\��$Gfc}�j{�E���&-��n�Rv�S�����Ғg%�]�=q�\6q��[�ὦ���Y�.0@�$��#��0q����������K-X`a���EA�X��p�j��!�^�G�������d�DxA���5B�͢�d�)WJ�����.�׶�҉t�0�=�|�q�fD�
�V_~�Hg(��(! ɞ�Bb�f�E���"�n��G�Eq<�y(LNp��%q([�'�4�ÃCY5�{���;v�4=}jf4��}~���ŵ��O?��2�›��_�qkkw�Y�R�$l�Nu�k@����r�,G��LAV�D�X���MEIZ$�])18'�L�E$�%\x4x� @�<@Cq��b'�t.��"w�T��g-�]o�i��%0���v���N=��:F�g@%1!�I�I�t�k�}�"�ZA�
�N)�,�a=��K<���O���� $�CR�wj�*IM�6�k��9��h�sŌ��UAU�%gG�e�]�]��negc��c�_<�Ǟ8{6�ӟ]�l�Ӟ�F�N�^��l�83���gX'�&�v��9�u�G������{�58z�w~_����
�J�����1�u�(��(G@C��H�j��M�����#l��$}m�1t�$x_L��~K�:9�.��:��6j�A	����ׁN�|��L�j�{|$��D�Z(�7.�*�����Ji�TnX=���3����إՇ�z��;K�������[o���@q��|���b~�ރ��/��g?�m�򜥝Ŧ�Uu��C���COO:7wdm�!�z�����
�R��tvw�f�=��W(Bc�l�8�RG��u:�[��@�D�c�O�����<����_���}qj0��_���7!b��a���lr�Q���~[oÙ�xMT`� �gl/LïE9`8��u�G%
�!�s̵E����p�Fe~��`W�b���w>���U$�I���@o>-I��u�sE�L�{� ��K�8��x7A_�P��X�8��q�Y�%�(jM���j���Q0-쐡1�Ma�{ϑ(u?�~@DXdX�>�G�%��~�$N�\2���щ,G9��!�:��4�2�bİ"g�}����Q��&J������9�=��!�@�E�$VZ0�T�s�H
��D�Dc�911:N�ރ')�$��kK�4��c�����߽}�T���U��u���l�9u�������b>g�0T���bV���Nm��U봻Λ�r�~�6�؊I/�q�
�&X���"=L���s������7�vzz�7�����ML���s=��%B2<����#6}���)�RJ��ڢ�Jr0�e�Bԭ'pI9�%_l'�Z���y>��1��i��n�D�6��P.���MܲTƵ��ށoQx0��'w��Sڅ}���V���`�#��\��ҭ�%ZR��?�7�n.��}_����5�r;2L���
�i�����Q|)F-������r�����{K}�cN�k��z��7`QUI.�K�:J۟9�$�P� �{V1Q!�m�Ρ4sp����
�J�a�T�TB�6{��8�L'�/����ўcMf8�n��.���T���i̤&�tn�+�M�w��O�2ww峭�f{�n��`���'�~z�����Uv���
4��>01�!�I��>�K~㳎��|���O߾�4�d�p�V;Vh��8xc'�ӣ#p���RZKԍ�Zu�(��f�	�Uzp{)38s�K_�$HSS���ժ�vk����fU�HJ�?�͎���n}�#����֫����{�$s�…����~�cvZu#��dZ�OH�}��}����a"5��*E�"S��E4�U�3I-�a�f$�EEM�E�̒`��=��kݦ�+3�#�RB�4@���ܠ�mY��;�k���FuM���3��6��x�++	��`%��R���É	�v�ay9��0�+�`����v��1YG�cHq�y#��������B3�~��O�����F��{��-,��8C]�/�"0q��"7r���i�6�%��a=}���д�@��%3��)Q�o�tAN0����7���B��q*������n�-�*�:ݞe4�^�
N���1S	�1􋹼ex�Z��j�I��=����jW�ӲD5�hT2ʨ9IVz�^*���b�xK/����h�^��B&]�J��4(EV�J����f�N��^���*�,NE�y,�vl/����:	*�	QT9I��B��A��Wp��a�-�g954��)�b�Y�Dڧ�oȬ��;���$
�,��m0KInu;��`m<q/`"��3O$(agimwm�΃�I��m��O<��˟�g��~\���2�t���:��(�����J��*�VN,m�M,�h���Z^I��7��l�?l:��z����J4�i��E��966[���8���͓���%���ꛖ˄��pBЉ����;�g�,�Y�+3� ����?���iC(�y~ak���R�gaX��S�BS��Z>ydr�Ο�훋�M��~\���!�՚�﬿��a���3!M�'�V��fsw���l�Z�~���͵�/��ת9�B�٫�̞�J�d*�i�m��p�{m�����E�`V�Mj�&�dĬ"d��U.���r���ꮾ���!*3O���{��y`+�{�y���ѩ����|��'�}Q�&�P��U�	$A)���(�DMK�d��HI�B��K�9y�&�	��v��Hb�;��ɴ,
@�h��t,��3��^4�H�pN�(�p,�^�Lf'����e0� �;����ad�bL���WxA�E�u�8��Cz�{h�a80wDU�=��x��;n-E�H� :n4
��1�G�x%Oa�|��B':5=��pF`w��v���`k��W�$+�{���t׆8���2Z��cz���k��Ҵg��4��֧\��_L�J�Ƶ����<������o����ƥ+7�V�h�)�G{�%)N��k�J�`������"�V.��
���eR��n
%�t���#J� s��G$�a��r�6+���e��a�b<��S l��'��9(�Dz&�Z</�wp2;^��nlm�n;L�(4.3
6r�|� ���.t�x��7��s���>�� �L����*�vM*��$��v�	�E�]3yx|���n��^������{�O~�����ܸ�J����N6���NJ�Žm�-+2��_y��/�*3��{��޹�\߻q�V�g�Jbg��������#���,��� V:M�},�"�9����é���;N}��]UK�D���������a^8$(�
y,�L����v-^b-��L��?h��:�r01c*S�i�{�݅��ս
~������6��IZ�����ء���J�hN��tNN���O~zk��;���ܥE�c��i�8���G��E��|�*�J��;��V?�w���jm�b�蹤���$6:����UL�dA��L��&������II&o(�>5}���c�O_�>��о�l���[{�;�޻^�WV�a8r���ϽN���4������ڟm��Ա��PXX���=�g�Fqj`�����X&	�JD:I	Y�K�dR-/0�PQ��@��&r2͸��8�IӒ��E+d�j"G�j�*������9�䵼i�	9!bu��GN��Mg�C����2�H��z���(�O�v,�؜�s0	��8Tb��1ŪX8�;�=�uq�;D����v`�I�s�C�yO#Ɂ7%qH)�HF5"��o}��K�2��y��3/�t~ua�"����)N0�ERPK�R�N1�yF�e2�NŰlYKq)���B�ɲ<&�J��ϫ���鑹�g�Lo��'ҹq}���{C�#���?5|�…�t>\��:@��Ǡ���0��y�CRH��O��3��X~qy;��4[�4U^�)<u��,r��◟}�g?����c��%���st4����X��K�����%�w}�bXư���Z�@Ka��/'���3J���_��Ӭ� B�d�7;^�w�v@������J9a�
�|��5
'mPdNM�<r��S������߷��_{�?��}��l�Y�__�so�/X��h�Aȏ�r���~}c�ku�>�ӛW�-�����ج�X�s�����}ű���xv~y�E�.J�.V�y����Ĉ��v}>��Q�JK�����O �>E'ҹ�ni��Y�N_Lt7W��b&��* ,:H����NM.U�he���i����x�����ZI�<�G�ϋ՞�R�z8��3�~��X�
Ǒ��o��FLL�^\
���K���ڗO������~��toa~a�O����q�3�̌&Չ$�W��7��$��w.߻
� &���I��-��¡��1p�d:�Pa��xrO�fRE������'��||r�h~hn�䅦��Ѳ��.\�|�ʍ{[{CŶ���e��)a8�Oo�����8�"���;��
ѣy����/�;pp8�����N��$>�Gc)^�,E�e��xF���tB$e�ֻ����xa��$��,��PB�Q�X)��r>�J
��E���0�D��e{��+�n�©�4���͐�m�F���:C3��M�x�/�]
�a۝��}��qA�q�n���"�{2��T��Prk�y���8+����D$�6���e��3�����/>���!`3�z�%˪j���^���k}��f��"���1Uu�0\ñ,p�����1e	p(<�
s�Ӫ�y������;a{��j���ƥ�g��������Ý�Q+�҃�0x�aw*�z�V��dž�l���S#����m
���O_�x��'Μ?q���.���O)NkM�����p0<�O+���d0?ː�Hcx?
,��R^�c�"�b������ ���%�e�u*|�(�L��::��ev���8qB�"�N���x�<LFn���?��R����g����W��?v�L����w>��d{۵�_�"&ԧ�x��nyox���jպ���$h��g7��U�����+��6w���{}ps}a��q`j���..�n5�]˱��\:��b��0���C��N�R���g-W��;�$�I!��i��n<9��f�ժ�@�A�߬v��!	4.�0I��I����*m���I���X.���K�J<��*1	Br� ����."q"��*aq�����d(	�NK�؛c	�����G���v����/�W?���OfEʡ�2SL�a�7��`:�98:$*�N�R����40�A��=��'�'���Բ�"�q�`�Л��C�'�����7�V�N�}�˛��,oܼ~MI�x���/\<v��@1����g������:x�������[k,+�ʝ8��p~fnz(���))��X�3,y	\� #M�f���FR	��es
�REMM:�7X�p�`G��"N����܁���sũTn0Lؿح56�o�}�M�2�>F�JH����"''e-ktu�;�i�a���Y��X-l��<�,8i��`�%Q"��0P�
i�z��‹qp8�	Z�E������A�(��$����
����L�L�A����j��`H��sO�t0X��˒,���L��4�mV2Z���L�����E,'j>a��o�� �B����v�\��o�\�k[��Lc����P�w+�c'��8vP��^�qܡ��q7�u�F�b�t�����S�9����}��[������O�C�l�{�,�J���Wv�,�B�,��,^WŊ�pp`�Ge��
8t;���=�z7�(�ë\{���Xs����0	��3��9.@RG7��g���������$N

�*�
;t�RX='R�tv��m,W6�3�۷+����vvf&'��]���?��_y��������p����&!�O˦3����v����v�=50�/�q��y�,�s�k���+��'���
����ͨ��ቚ�I%�"l7�;VR��8��?���v)4B�s*��<y9�u�����$)�8��8�q�&el���Z�ޮ��$�&J0bN�2m�0�IX�&�CЌ"K��ҏ|{����ǣr������8o�!\!��6vѲ�ㅄ/6H��?���.IR՚�F!`��R���Tm���Q��o�{�KE�ɉ��!�5�(�a��ĺv����{F�]��TDV��7-I���VO�ӒG3C����������KfH�Ӆ�\�5��ȱ�4����#S����_.�2Y�����d���ԣG�&�\e��;K���椙aA����^�����P��z=��;$K�,�J�,���	 }�E�z�X�м�l/Z
]�=*��ߨ�ݣ)���(+'u��v���l�6�����W� �vY���V~�H�\�H�2�d`p�rQyk���8�MI}��`�O�#i?ʎ�(k�@��֨ "N�<���@�Ī8 0�g�!�4#8of�ǏlE�"�C�F	lx��)��o��&�
eG>����W�ȏd*��HG�
أ����nD�󃮋���� ml<L���Y��{�Ro�]��4�@W����Vɍpr�e[Z"�R(��9>��ܨ�ַ�{��/>w�٨���G��X��I�d�(��l"�N.-<x����
'SZ:��-�o׫{}��w67����r���n���ų(�Ax6xq�K<���1�X�����?�ࢡ�R'�9��@qP�i�<,�[����a�Fnǵ�6\�W����$PꘊGc�
H3N�
|#���JB�p�H�ē��o��.�L>�ܼ[�ݴ�~����{Ϝ}��o�K��V�yok�~�w?�q�e�V�9֠�v��}��W���M2�ɵ�;y�N�߿|��[gS��pz=5��7�_:�tNM����ѱw>�1��\~��6���7���7�
���ٙA��RKT�r}/���}�+EE�=��Z�\$'���Fy���(�,0�du[dad���6"P��#�pO��0���=e俨���T�']��^����b=
�d��,�V�]���a&�r	�t��\`���mc|f:=6v�U�
�k�y�����;�d��]��z8t2,�A�%D�b�4EÉ[���޿a��n���o�CO�ㅡ#G�!�eG�DQ bSGtuwoc�D�/&M[�$�6X>�tܥ���B"ny��&
<uwl1�y�a щ5�!aX`U8�E�:�E�.�
x�<��cv<W�����p��� ���J{�A��᳌Z8�����$8:�n�TeH:�I���2"�'�EVu��0J[���7�r5I�C��S_��-N���@��'��U��z.�	�ʰ$��6h�&#k��\Lb>A�h�[g�9�����Օ��\z���{8"�5EN�zF�e�DQ(���HdE��Mڲ��������C9;���`���!��@�ǩ
T�M)��c�~���`X�E����KO=u�8��v��҃�t6��e�N��4�E�|�'o}��sO��Ç�k�!�陻;u���ц7M%��xy�5ʵ�?�-UX��Wl�J��YH�}b�x8U[W�����#e@�"0��!ϡ6�#�`��Q�,֋�����5 P����s�y0�G9A��o�"�D�wC�����O���`~ekㅋO����G_y�����3�6�A�&�Ni�jB�@&%�|�Vj���}nfj��[Ϫ"���>�	�۷
3�����dn2?�T۩�:g��|��
Q�ҭ'Yy���n�r��������?g�tZ����n0:���8���9A��:v,ȃ�_�E��&�\�
$K��(���(�&3.�=��&��8^��&�f<,���X��������XLߒ,�bQ_W-�4�}Ǐ
e��EERXdC���9;A0z�Z�*04�Q��K-�f?
�c��>|jy>G1�D�՗_�'�����e�**�x�"��1����E�!:��(��&h�~��ֵ���ۿ_I��~�T/��>�4�)�ɉ��`1��D�s�{S�q����VI���a�$�R>A�x%ʫ���8����? b���v���9Lu˂,uu��;����̉,��=I��V5	`د"ɥ��f�6I��D2��M
h(�;*�£MHz�q���W���Ckkc�;��E-�����e�^sd1b�2�D<�>&n�cb�,��cFS���`���z�Q��(`Be�݁9��_��U¸"��9.�{��Y�t8�R�zgdr�Q���L��� �<�pb�b���v
��fF�/�	U�4��%׀W���|��#G\x�Ln ;4\�ojw�j�
U*WV�w�=�Z�6[-M˘���	�]B�ml�o���vE�P�x)h6vda\E�)<m��b�셆傥�K�xP�k` ���.f���kc�fxtj�@uLl ���x�N�u��@�4�ii�`."RD��z��4�����n���}�.���ef8�D1t����8��?}�
���.Xw���7̞�3O<q��ё���#����V�J��i-iX&���n����6��d&710i=Q�zzPmV�x�r�����4����*��H
¸��s��"p��_�a�gx��e-	��'QgW�|5�E�z���h�X%	7���_BRA�z.��߂-��BV���bmC8z��LBk�]�IQ��d����R<Ԩ�큱$�)�&s�ÃCw7Wj��n�`�9
�|G�i5�oA\����rL�d����w���kw{Jr
x���gs,�]ᙙ��\q�Rj��ƒ��Z]Ke
##�cC�bBM`���Դ�}.=�!�Xq���#*�;���z&�{�$0�q؟�������`������׀ΰ�1n�r]oo��y��AUyNb(^UM�z�u�x:����>Ezm��Q�����
\AƱH���~����(qL?�� �9Z@���ؼk��oŝ0aRN��h(`��	�a��GDĺ�}C�cfb��{{�f��k�	>84���i�D=x0�4u��ؒ4��&��4Y�ўxɏ/���龉7Ө�Տ"��D���tG7�~k+�pL��J2�9�V!Qu�0}��l�Z�n�384�1���zi�������Q�$�T��nߤq�9�1����þ��//����-�T�e��8�����gh��D߷Q��d! ٌ@ƺ
����ǹ8�׋�q���๋�dPž��Q�
M��#wT��xя�f�Γ����}�
�$X����|1���r"�����ǎ��[�TIvl+l�v,�N�-Nh�=�F�OY��<�����
$өB*�x���Z���v�����3�	�?641V,V��O;!��������M
e{���E����7%�Ux60�(����WN����x���Z^�����(Ս[�0A���aa�NK{*��`gp���޵l���{4�# e�:��C1��7��ɲdd��-�
Xl��^�ۚ�M��L��̇_\Y���"�k8Y�����(����gWu�5}��jr�<]L�J.�<�&^8�����3,es��1�M�&_x�b��|zsߤx�Ȅ�IK�ǹQ��D,��3���ˍ��@�W���~.2�Ѝ��p�XjB�T��f�uv{�{y��yo��M$�H��XE�XV"Kn���8+��V�(���Hq�ؑCRR$jY-VZ�d� � �1����v{�7g�
�pIX�{��W���}��RK�ZI�w��8!ɳ��,B��F�����8�0�"�yEZ@��Z���P��<�#Z�I����'zE�Fqլ�mn��8�7�{�uBtYH��b����2�*A�9�J�	��m�L;�s^�
��  |b������%�[%D�!y�|�r*���Zt��MX�Z�$2E�8�jPL���I胟|�ʝ۷G{�DRFP5���P�[	�w]��آ�lhuz	����aV�@/FJ�OUtMT%�28����B�7�^�X�,K����A�ڬ�F���`fٖ��Zk4ZCǶWM"r��u�hF$��y�I�'�w���C�8e)D%�u�O���
�?�D&�ˡ
K��5����sGrP�*�-��u��0���<��%6f��;ج�	^��΃@�%��,�@�_.�m�K���<|�pӭ�=yM%/��훶��J�����b�d�(P`�E�4�`
Qu���M�r�����-
^v��^$v��Ono�wz#.M��:Io|u�n(d�`�]z��ڐ�C{tH������RNk�8��a�B�3��Yi�aw,o+iY�\�T��A�GF��� ����j/��O˟ֳ��ЛYAH��N���ֆ�;�y��d5�$a����?	A�Sއ���J6�;X����pȪщ�U�X2��(����>�ܽ��߹}��YF�s���m4�*����s��x�#$�x���z���������OK�1�B�,����%�'���h���tW�K+'��l_k/�(��@2B�����	��N�94��B
]�0�1N�l7�{�h�N���t��\�0��Sh����0FV<�'�0a
e6,��wn�o��6�$�I糶�84�
d���Z�}߷�ħ���x5p}vF�I�U�0�\��8�d��n`Z'��n{�hfU�X,��Q��@¸!P3zG$�W�|��rP��l�On���
B~�����Й��1貓'�#�M���4���3�a@���S.�	��lQ8�)
� ��5	a�+�~�ס��gD1If�56̉b��G���h�:��l1/0��O2�U];��B�a�������Z!�T�M'��������"G$��f���j�?5���[���v,�dB���,ݑ�5AJ$
YB����3q.��R��d���D �A/��&��TvG�W~˾��1��!M̌_�`�2�H8�r�*������<�Y�ȩY�t�
��ޠِ0�nT*��q��D�L�����a��-˱	O�4�O|��5[L�Fo�?]X�Xj��MG/|�����̚mu�NmY3�X�2vo\���0Kt�����#JVfyeY�u��:���n�E��HGo�'t�"L�4��aIe�P����l����!^U�P�$��f�����3P}�_Ȃ(8��E��~�PQ�R�B�V���EL�!��x���H!��(v��?�<̿U
0�
(I�Bo��On�����@]�#ce�@�z�w/$�g4��J�~ж�4YD�p1)�bg���8{�D�SWT�q'BǶ�[AaI��p�8@n�I��QZ8ṭl���8Lg�þ�{���H��JvJ*(SHd�(������#ˏf^���H��8�R�~(**���[<Ϣ�
"��U�,O�Б�5?�S�I�dx��y�<Gor�~W�JE��Y�S[�ۛ[���f
�X��y�8�d'��$�im	�xn�����W�o_�&�:z�qUCy��'֗�
�^�U���.�.���\�
]5[��6S̷�Gcf
���	����2$R$�	D����A�`Ys�[��I\�qCK�a�q��m���z�Y�ft��<�d�BQ��Zx�?�2�tf*�Y3�"����B�����-�
�d:яoF�wP0"f���3�T��f���L�!g�=�Ei�)�r�np��}�x�(A�ݘ���ه`p�wQB�Q�#��#7øyQ&��5Ȓ�B��	�y�Ey��Ibo:��N�ր>&uB2w/���)
B�?�5���s���{�6�f�����Z������}|s{�̙�-U�
�v��Gۢx�����-EU�y�2�Z�\��~�֝�c��n߼�&��f�-��tx�%k�&��ttY�_�+T�2�֊|�X��>]&����9+�Q����-�	��g5���X�iU��Q"�L����K��V�P���Puö�[����3A���M��Z����+���Ʉ���sb�&ѓK�M֠@��4p~rk8�Y�)@l����6J���2J�k���	�V���.K��Al7�$r-�]m�n?y�~���5hr���.�Á�7���pl�V�B.b0d�2pa��a����^@�'��$�ը7��Z�$��,�U�2кZ?�|�i�DHƙ��=�DߞO� �V�	��m4�V�A�(�"C'�Pa�F��'��
�y�5
L��v�$� ��:1�+�Bf��5����u��t\�\�PB�N�ecN)-93�(H��I��p�����ތ,����L������#C�ȊFa�h8�eQS41�O�}�G���b�"�T��$��E�*k)/���	�Q`����У�5�f������arb�a�R�tF$6ɇtΥ<˩b�&tRj8�q�Ρ��c����JYiO�c�J�@�%$T�'�̱=�\,ͧH` -f��Q���n�q���1
��
�)&_�$"��<�q���f�+�	�fv�[���:��96�B�>"W�i,��qr�iyi�X,yd�P���\c�0�n���0.�u�g�!C�MPư�C�y:~��ĥ����W���z�`� /o�[�8�����p��6��J��^��{SN,���OgUM{��QFI6���(�_]��z��a�45Eg�k���b�q�~UD�
��0�����<��-u9Q4�	Krͬ�F�I���Zª�,��,i�yq���A�"Ǒ�)��7��$6�5?�x������8G-#�ǐp|��)('&�sW�'k���x^��15��*,ǛF^��_:�F�y�7�TUbt|V��|���k� \U|�>���aj5`v�&]w���w֏�>~��^�)�)��^�ߟ_�?;X�#'��vMi���Y�^�R�#kC��+&gY�(�Z���W1��+����7�i�B��Ir�(��0����h�׻�Zs8$�
Hpy2IT��I�MQ4C�"�+iL-��}~s�ҙ��IPޥ��@X)���67+ո��VА&�i2��"h��� �ԃM��hK�Q'X2�g<WƉt�Tݜ�f��4�L3�©��{��A*�t���t:�X�n�zq��}��e��z�̉�[�n����[�)���xA�\��f���sw2��@^��X<�'YPt�L5�7l����UZ�4��_	
�k��t���t�XE5�Bq����=��خ�S�V1�LN����"p��y^���T!9�f�V3r)
�ך.7���ٹpf��Vk_�{w�d�\��7�����'�B�=,*��Rv��1@�d�%��,���:'(�$�r����_����e���§�f?%J��#�t��D���8$ ��[�@�@Iм̷F�Vy�`���א��j�ݻ�U=
Om��0S&#s�q8�{��ƛo����O��Er���,O�;{��z7��,��3�F�f۶���-G�;+��Q�'��z��������PSN����r��P������a,�c/Nl�ڢViPt��*S�,�fkw�+@4���2��b*��K��`��ԋ�NƑKF�v��Z�v�8F�DdവK��'vdpx�?[Й� _�
�����(�B�|*d\�RQ�f�$UX7�P`��6/�)���U���1
�fá�.ڵJ�05Q&�@?QD������
��HP*�j�P���֛�Z+(&�N���qt�75YCL,���*YjA��KX�>A�€�7T����2��ҁ3�`�ܾv�;o��߿���M"�OO�q1Z�x�Vi�V3�j�1f[ 1�`r�o���Պ)���I��k��f2J
��+@K��Y�4���ٵ��I�h~6�@��Ȩ4���u���4򠰞�l4%��D80�	��+��vqjy��pp���7�{<JD49tZz���}��ׇ��R�Y�݀b=z�����P<?!$����a~,��h���1���7
6����%��cr�ts2URƛ�Y�:�CZ9DZ����
'����7j����(��jԚ���b���LHBb����Z��v���y~�
F��xFn�fE�^�{�)��©qMf3�+Qx��K�$:��Qa+����C�@ރ����J�I�G,O��Q�(�’Z�[Y!Y��/���Zx����9fz�؎b�g#�G�%|����}+�{5-H�8#zʚJ	Z���'g��Yy��eIU�
6�:�vvf���{�O�~��x:���>���ä����l>���Lg��!���S�&-�-
#�9V/E��$o4���iLh�`Nb���]`�f�w�5Y2�`]c�p��/
;���
'ɇNDg1�h�5Ȕ‚U��,cE�{{ss6��C�@���x��[�yo@������‹'���s=�}��g�۷G���éu0�R��u��֌�r� [�]8�6ʏBY<(�5=�k�Nj	-�8%K �e{�?�M�(�tM�J���&1�Ht�vH�h�h�����.4+��@W ��ȸ�h����>-E|*��#ӥi"���t#�"����o�|��wQCZ%�i�l?���I�����A����z�h(tP��`�E�?�F��l�-ˋ �i4�àCs6�L�+Q�ܨ��-����B�-����b2�:P��YIV�g	��(/!}���
�d?�y��p2v�ċ�u�:j
qdg[�]
�Y��AGՖNGR����7}˾|�����s�Ⳃ��K���@_�6�;U��[VT�0�ش	�l��]��98:�t�1��uk�ү�Z�Mg?I҅�Э�2
FWpd��f�nԐ����q��t1�}����q�W5\��t�֍{��0���S׮��_:uk�铏����и��˚C��hW����m	���<�m����~���zQ���b�!�ϕ���,�%ߍPW��@����
�4B�t��B��s��(f�ʼ
p7,���V*e�Ȧ~�E����cmu�'77F�S��A���W~�RAo��͕��Vw���;�wgI8\�)v�CiU3u���7D�0����ac�h���IU�Blj6�v�2��5+l&&��Cp�ش��:�K��s+y��Lԫu����Q^����E�By�h�z
�My�
�Ad�E�jTh��[Y�F��<�
�t�X�m&�Z��Ń{��.�憮s"�y��BV���Ӂcs/�F����;�J�#�k*��a�((�X��|Yfp�(���;hk%Z����A恼���p�!�F)�q��r��VQ�	�Ei���^�JǬ�R]C�^A�=O��4��1���u>E�A"IJ.S��g�?���ߵn�1f����;�!�$1��!5
���N0��CEJ���w�n����&}#�A�O�l�H|�sPz,�J�����S.����٩�F&'G�(��J��Z�FI��rW��VĂQ��
!䀴j��.	��Z/�S�ȶ���i���v%�E�E�w��lol���,�de�J����բ��}<�}�����@���.����F�j�[+N��tHX����~��
��Þ#8�-]�x�"Iv�~��x$ܑ<s|����S��0%������Q�0�y6�w^"�F�NYB�`�`�&3]מx��AoTf�r�=0�O�kF�j�xи!�A��4���oC �`0g�+��L;
E̪A�$J�cr���e�{���s�*���$���/Y~�{V�����a��?�&r��V'�c�Ο>�Fљ�z�J�lo< Cѯ(�Ob^|�Y���{w-g��o�����f�V��!�R������2��鈇�3-8ר��zm�xq�Z1
��	2�"��Q�(r��d�I�@QD���1҇�xVV��żj�]q2X(p�]�3�5dV������vӷ#�AޘG�P5�̉�1Ɵ�2�.�"�r�J)�kf��q"�K0}>��q�tHc���3/��JS�����+͓�+w#+Jp�x��gΈ�%�)<��
xO�����ba-�4�rAdC[�;�J�t\�8��nrmt�:
�Y�D>a�lQQu�0W����r���I5�P0j�"6�4�sB�ڷo:�op�1��Q�k5�W�4aMp]�@bS;�(�l�9�>�Qn��D��|�#UI���NY�I`	ބ5�PdD�'D�A,(F��:���&���M��B҄�F���l�B�f��Ά��h�d�L�I5��%0��8����0MX�M�h�I\�!�6��ת�G>�ҕ�y����|�_�꫕Ί�(K ���Ui9t�q��l>�{F��L2� 8��1.)�%��UQ6�t/ѯWtLZ&�ԨU�j�bN8�bA���e��_��餓	@� ��T��N��$�N�M��xX��ՠU�]���9
�{,�wc$�=�Z_ZZ�,� kE{�Z8Yg�!.���xrr�re���y֑^�����!���@����*�*�ʚ@5�QҍBD�|2�T	���\�\2L�Z͐�ͥ�����G�d��ә�f�F�������4OOo��G��ݕ��ж��=�ԩko.m�I�ҬԶ:Kcע�t2�!��b���j&���W��1+f�rl:��,�ޗp���"ń�:�rd�("S[Μ�u8��e7
�&Y�2��]��o�i�������R�9x�
�Z+/R?��.e��(?��{�<�`��?�s�=%�c&EƮ&���Ni"WW�er����� �ߨ�c߿3����*Q,#V8�`�6�
��c+rG�N��R\mٮ$��8�(�kNW��u��tYSUN
�MɄLH�a�ͦvh��x0N�^�P�NU���i岮��(�To8��]��ŏ�`�J�'���Y�d�R�Y븠rŌ]Rm�2�M���j-�s�d�4,Ko^桗��Y�(�\.�ԡhf��S�ǍPێ���6���=QU��<s��l�{�!�q�����Tg<�<7�F��S�V��c/߾{���/2A�iλ���=� q���#ۂ�daD�ʱ\z�J�V��9�0�����=��B^h��G��]y���ɟ�q�Sϗ+
�Hm[02ؙc��8�>��ե�7�j�IU\,�!��g1�D���=S�So4������a�����R�N�Yi���f�{�0�"z�	�I���X�i4��,SU۵uM��0��Zb��la��ȥ��4C7*�GӥfC��㊘@�.QUA�"N)�
R$S�A�X���L	��Fm���l�Yцθ�ꆦ�Q��#��~S��R�٤W+o�BDb�gF�g�����篘�6��*�q<N޺v}��N�Ѽ{���\:��=N;���X�G��+��n��]juOnlyA�7tm]5	<���� ��
	�v�³~D���4�]��m��}2�����\�%�#`�XK�%hw��~�Cib���y�Ы�A�OS�M[�*u�TK���p���!+��ϗlR�pQBQj�� h\h֛9&4EL�P�Ȃ�a�aĺȕ���f<����LuU�+r�P�+FUR���J��$A4��;�[�u�����Y.��/H%�Q�@w�!I���^E��UC&o$����-�3��ƾM�d�� ������ŨCI���AV�9�LTs^�-'ڻ_���w]ZL��J�-7�$��j���$~zg<*��>KL���\\���-�	;�%E��H�pE����
�1�?B�A�Q�is*i�tD�3�����N�O���0�<u�3?�o�����c�������}v4M��'��խu$/}��;�{d�*����
�/?�ᏼ|www�w��?���Mf���c��>t�lC����O=�]�}��xl9�g�������>��?��k_!�̕��~��������7>��?���q덯_x��_�Z�=���>�Q��]n7>������|�TI=���C��D@j��<�̳�D���A2�o}����O�>�����{W��?��~��}ب6���N��
:	�/��a۳�Tk��l2��h�M��P���U�"��9T`ЭB��uA�%�3��c=��Ⱥ>^ؓ�]i69��b<m�!ȱ8z�X�/+�G$�!M���b9�Q5t���.��#��G�� .��c�q�72��h�m��)r�?�̟�]5Y:��D����!Y�8ɇ�9a�g�z'+��v�{�	�ʵ۷Ƕ=Y��m;.}f�n�޿�$�ׯ]=t�NS�k��û�o;�_����R�'�7��u��GLOe��	T����N�4M��~�ё�|�Q�E�RK㔰"�Ƿu�ӛ��_�m�T�>X�.Pq�e�IV�g�X��_leɹe�/�\�ˬnaTL�iAiKh��{w�/t�Y~v�6t�i���$@�xM�ޔeS�
Ul�ŏP��9���j�R�]z�\��1z�B�G���y��U�pa�p|q�T<Ւ�f-��d�8���Eo�[�kuS���~�p�X��#� ���g�����T��h�u†I�šd('g�7SF�
w���}�)cN�B��*FX��A��|�6yn�������J:.[�4��J����F����)R�$�(+��Ɔ����J��v���H�-����O�a9n0z���;����V��n�����g��_z�ч�+Kq=����j�V���募��?�s��N��?���?���{��"|������?z���J�W��_�����o��/��N�G��+����dse��?�ޠO^�v�g������~�����~�o}�叼d�"�����v����g����>-��y;��(�SM}}m�\�b|�C���>�1z�/���~�g~����g��O_�q��c/w?����������G@�/W�w�(�|�ԫw�,\�n�&�8Œ��Ur� ӡ��s�&ȓ �r>*�(O&ө(ȍF��T(
��J�tF�*A�� �x��`(���b��HBU5��YRF�Oξ���.K��p(�ϐ��D!��*�����T�$�!��,	PJ.�aF�*)QY4��.E��0�c;J�r���������7��[��n[Vp���A�����l��_��$�q0��ɡ{U�T���U���5LK��Qj{�*�xQ6]>F�v��J��w��Ǐ�~͹�{�N/x��B�2�t��Z�l5!Ѕ�ת�F�9��"$^]]3u!�Ɋ�h�$M�
�$�����o�_o�$=���<�GG!aY�8b�2�	�!�|���jf�HlYY��bŚ�>���P��A�p��h��̳�v���.ST�1�	-]o*�j�\1+
�����C���^Srk��E�lNOv���h�Ț��_b�Y�4�z�Y	�>hF�ЂVȕCʦ���D�%�DӸ��ߣ_146�L�|ϞM�z�f=L=Y,�4��Ο���MJlK�9�o���(�I.���N0
�
�m�l��
'��l�k7o��EU���8���-rS��S�|�,njL�e�gVz]ߜ�Yq|s���Sh��C�~�q�>�\}�Έ��]�������7�z�W_�k?�S'w��ȧ>��/?���K����{�����?��c�k�=������n����w�����/���G>�b�����?�O�~��w��~������]����ҋϑ�v���lnn���+�������'���q��C��ˏ�{���?���g���+U��~���'���򹟹}��/��?ٽ�m�ޭժ��t>=�ȅ��û����տ��Fs��?��7�:w�$�������o�������W�}�gƃ��_<
+����O�߿�XZ�hnfӶH�jsʄb<[�aX���T��v�E���u�C ��6����t��Z�	"����b\/ ��щ�ճ'��zyI�@U^����m�]~(��%���O��
�φW�A�C#GF���*H�P�'�b��\6{�~�T�f�@�j��W�����$�LIU-����3#\|�lۚc�����`<���m��TE)��44z)䧺
�y��ٵ�˫K�=���{n/o-�1W�Ԍ�c�����2��2a�5p,з�eU͈�,�	g�搝J0G��s,dJ���LB��P���2��)r�Q��*5zW�����%-�4�ta���t�m�r6��A��E�a��,O���.kxL��0�0�yR.�t�
�Q��Kf���9��H�JX
�&I ���@�@ ��`7�dY��.��ꂂ�/��l�`���tD�Y~Ya�;e2Jc�#u%KGl��zC�ä7��(D��S�Y���x˱�Ÿ!E�b�����.�z0m�N��Yz'�ߘ��g�4[�v�BQ����"DC�\��AB��Wɽ�e��H/�A�X˦ �B�3�,ֵ�,����ju���1�GA�d�( ?�[0��\hZ��ѿ��{�\j5,78�s�ʳ�Go_��c�|�O��~����W��[��^O��V�9�L��t鋟����������޳�{��/����ʫ�_y�O��_�����;��K0Lu���n>v��[W���}��_�M>��g����<{�K_���Sg��tq4��z�ko�q�g��O>t���ѿy�G�~����k��\�x�O?�裏�n:�;[�?���~�w�Ư�*��V�5M�͆3�}�SU��^�w��3ϼg���}���~��Ǜ�X��;�otZ�7v謁�\�ϣ�R��kU���|�~䶇�7�w��b�G�0պ��Z���mw��t4�<��kǷ6��;d�=,����"���^�#�da��4&U��i�R���Rv�(Gj<�B�'CC�����P�Uj'w�o���L�}2
RBۖ���D���2*��� M�ΐ?2��d���#˲(�I�	������y���W
�FBT����sk��ۧؖ����{��N�y]3y�p0�پ��"z�V�IH�U�((�B�v6����(�T�TC4ǒ�G�E-%wKQ��Y�(#@C����oծ������}�Ԗ�#c"�X�ő�*�3)��*�k�zE/�5�u����Žι��
<�S(�j�j2��RA��2��Q?g.fQo�:"�"�.���\'��Y+l��Z�3��GEΊ�R��\&�f��M�YC�*Ӭ����"���<S�	H�~�7�c�ĺh�(s�e��>��EȘ:��$�q�̂��:�4�|�j��"�CD� ɾe��̽A-W�vèV5�,d߸���v���jٮ3�V�N�]��~�9։	\ȱ�>؆�YF�
b�.C����O�Z�4;㣄�Q�d���@�,���BPѮw��r\���?��?���Ϝ=���z�7�
����_�?�H�V��o��W^���kwnܼq���������E&H�_��Ω3���˿������/����ʯzS�_���W�]�~�׿����p��^o�;W_�z�Ʊ��׿��/��x/}����W��Z<����'������h<}�;aY!�m�?������<�?|훯x��k��[�w67��￲w�횪����]�~��o�����^�{���_������T�s���7��J�UW�;�]ĆV�q�خ��	�)��kVk��n]7Q��%r�Qۮ�
���[k�A8qm�G��Ǔ�wU+ʞ �+<�ɦ�l�"NRE٥�+#�JrӨ��2��Q6��irԁ�Tb^�^�6�F]�4j����$б���r��ZE�5�+��.`�#��!�P<-(�a`��X8��R�$N��"��R�ܮ7�$=s�BE7�����-g��J�]���^�ē����;w���UO���hq��\ѩ7���)z���9$���N�<l^��@z��aprRB2�0d�:\6ab�xL���͔;��9��É��$��v8!c����K��tY�Z�T����K��Vr�clhV(�y���H�&1Z�EYV�����0�5u��j�_y�V��o�p6!��'9�Ps8�*O�^*��:QTRS'C.�t-��(��Fc��J{s88���6r���<o���f��Q�ʜKK�a��R�`Qa����Ԋ"P��4Z��no~_GP?ॾ.�A[YN�}���a/bO��G��+R7%x%�|�f�[#�i4
I>��rX+������M@�,�\�fZ:N�t�	̾���
���Ɩcϣ�'�����3vB��OFP�0^̴J��9n�����K眹��Ï��Ǧ�\jq�*�j��FB���~mm��|�ŏ��sO\���/rZG�7ۣC����ٌ`'�Mqt�Z�Ǭև�i\up�>�O�0�ty{K�v�����lN�Yoϧ�:���X{���3��"�0�r\��r���XL�ז����psgs��'�ֱc7��P�3Od�Lx���z��j��;��wF�$Fk��o��*�R���� 0M=�2C�M��R��A!\5ݨ��h>�%>�}Y�5�������Dd��jw��5����H���#�T� ��	�l�:��3�#�ڶP�T���-$s�!�CP�j�HYT�� ���7_��\U���lLF/`�HUEe�L�*�N���:�
#�"��7*�0
���K$#-�*��|\��.��^o.���b8<DV���q#�:�Ѫ�����]�Ө��_㯦�sbms��aX�'I%Q�m�@�,3���>:}��CE�M��h���TB�r����"F]�:�s�p8�ZFB�EԪ� �
#���P$t9��da��d���ݮ��8w�B�rp�������T�\!�[�Ui�r��8�;c�x{c �(����w-r(U]���,��d�V;�V�<z����d�s�-�n��j	�g�����k����hj�<[��A�����h'>w��)r%J�L�@`)y�0�rJ�N� ��T��`�3�r.*��=3U��7G�7's+Ku�X�4�0�T���/�ES:�fJ��Ũ�fa]I�
�"iS$)=�nӬ��z^���\$rmPOd
�e�y�Y[�e�\"��%�i��@>��a�/RU�eE�,��R�i��K��
�֦3��l��(I
��$�Z�����*梢�TЪW12��p�ټ��;_��W7�v��W�J���WZ��5Z�Fs�Uo�۬�*t9��V�ޤ@@7t�j�u/=��~�#����!�� ���h/a�Z��%t�BV�pS�	G����}#4Q��v��ǣ(v\W3t��yAQ�H��高�j�f��jw��(�x���vӠ[���꙳m��E���Y�vSU[5�Y����g��E�"g�
���H�L�F����ķ���7z�w���<z�;ߺ��rYVu9gr����B*�t��M�0+Y�d�<ߡ}�	X��S蒺��J����z��I���ޡ%!�ӟ�肨���].�i�C�V�aB�)p�����*��;����p�y�<X~H��qX3�[k[3wg�(�v�K�T��4An�[t>�۝�a��^k�Z��+�Z7��F��y��䄾��i��uL�
����x1���gZ�II�g,���Z!��I�x��$=����Gv6��r2�N�
����l���b-!�[5�|���κ���a(颼+�����Bڪ�uY�'e18Y{�)����J�	�	�t!D�:H�6�˙�+�.���5#ė@4
r9Ӵ�5�6�EV�P򓈂gM�����ȵj�|zee�a�H�7�C��\�l�]�?�'d`�l�A%�����|�DB� ��4�9vFaa�����u����.�$4i��9�\�n�;N�<ג�͊�\Մ"�C7ݤ�Xd��8e[[���'+"eu�,+�}D���G7��'B��R��q:�"�R̅G��[d���<�p�RT�Dq�Zq�NA���j踔���ƺ^�P�a� fJD�=���)�I%}���Se9Syfz�x�4J����ЙZ��bJ�NS�;���y��z��ŧ��>�`��8L��6l
�J?���ylXF�nַ7[�"��3�r!��`�h��cC�B9Ie9)���Vݤ��=k���έ���i�p�v��T�j�z���s�7u����2k+��J���4*�iTd^�A\xn���Љb֦J���̢Ѐ�$��G��,-U0�u����{5z	|ג��rU֯�,�*K���9u��q.
G��x:���G�ѳr��jn,�lomK�2��AL��	S��"�ݵ|ƌ�(ƒ��p�˺�8�e2�e��d4ꋚ����13���sBW�q� ���`6��G��w�޽ng!E���3�J��ce��n��8�<�X�5A~�Bl��g�~�z{Gb`�j�<`'<�*�S"z<$��|�o��!�/S�Bwɣ��3���'ڕ'�-_\]2$��D��ۀ��$#�D �U�6b�*�&f��%��5�i<��9���B��|��Ō������m�3�X{�Ad{���r� �QJ+����8Z>�A��*/�v�yi�f�8���&k�lvd�8�~`���D��؆�x D��r����TU89e8��DAvi��ڬT]�^��:&d��K���0$��b�;���dK� ��n
�<����c��a`#,��@�J^�}���0�^�X�ں�&9`j!c:��'��u��x��G`�KK��1���(դy�
��4�%&�̔�$J�JZ@s�n�)��]^�ˁ#�I�l1����K�ϜC�YS�������Z������p��~A�Y�r��BF^�n��] �%�ɝ����p8�~ҶP҄��M�`l:��#��Cț���֑ß�FM�	=�繓�d=���Kw._<[��Zm�Ӭ[��ި�j�̊�����*=����X�f�nBD$�(df�I2S��ʱfm�9���}���\�<SΉ���yȴ�آ���uK�2�,�����ǡB�E�;���V��&X����!l�<�H�L��E�b1<�5������te/����'i�6�kK�t1_|��t4�UL��Ԛ����EZ�=u�fR`�����X�C�n��
�'g@�'��t��(������P�7
Y�Fɡ�ߵS�,f���2�\)��H�Ϝ��;�vo4u��B�g������A���_.l'l��s˵N�2c1MZ��Lܝb"�Iɀ#��:��"��(j7(2�j(珯�拔��z�Z���$Yb�;P����D]��l�n�f%1H�f�}_:�Mf~��JL{V�$��9���8�7��?�
Z,y����{�����P:�١�ך��?p�u��`�0'��A��.�����F��u��?�g
]3���B��i%A�xM�_��tR4b�	:F0�T]�'nЛ�1��֠264�dMC�A{0M2�t�XM�(�c��I�[d<�h�����xs����}��n����DZp��.���Jɑ0�Ȕ*e�,���bm�L!��	�M�)��������gs�ϥYʲ���Y[_;y��s��tYK��ܾ���9��?��vjsӋ]k8r�v��l����LH�'�O�lx�2T~�{�L�e޸ӣ��^_����S�'�ܢ�d�sU7LB�����f���i�%���{�,/�y@N4��Yd+�׺�<�z�[w{o�}��ȨTl߳|��;\Z��fȢHVl��ܮ5(\�e�	C��$D��ҚV���-K�Z��^���������)cF���RY�a?��G1+�
�B��a�@xqeems}���v����?<�Zc�+�|(M��[�0kd"��G�r�0I��!l�����u����u8^:����c7���|:�ҾP�)�f�4�N�m�ת���7���,߾}3�@e;
�Ҍ����J�X��~F��er���i��ä�x����!K�3U��#���������@��q�q�����#���zm�}˾1Z�O-�Z�=w�$��C�9��, (*�"	�4h�~����P,����7�2�@E\,�L�|w�>�g&����i�r�NJv	u�x�&�X�����uk�ȿ���w�췦�Dk�F���.y�d�x��b2��8)J�~�df��yd��wUT�&m��+�aDQp�yP��ӐA��1J�^u<khM�,�q��Vd1I��3�+�R�%� ���9L��ixo�>�f���'��:ypm�P
1C2��(�A�I`��Q"�AN�@�kT@Wa�,Y]՗���sIU��,#�۞#)t(Ӳ�`f�Te=����vK`Iz-ܦ$�Bb6�53b\B���}�����g>|�����<���ǟ|lm�!I�w��ܹ>GC��aRԬ�=8�� ����^�~��7��l\�,Y0���%��VY̦��Ċ*�j<���o�l��MM��P�{�7p�		��J"�X�'hYEeB�n�O�پ1�;���<�Ǯo��a�C���7v�V�7��kת��0LR
����Z��QL�j�(�R	鹡?
\�t�G��������+�[�����S;;mS���	�R�f%�a��p\�0�9�x�,PT�K����s�;y��y��j��y�5��0�ɸ���q���1K���X���,�In��B��#B��WVF<p\�G��l.o6��ɀ�A�8�\˚;Y��]>����`]�拭��8��ޡ���{���g�ӁO�™܂>(S
�|#'j������Ţ�(zK"�?<�Q.���Y7܃���jX�2'/��I���5]���3���2�
ލ�b���o��g�.��Q�x���h�NAFZ#��T��0\k�t��B�H�]'Q
�-�f]:�ҚI�9��w��o��(X�[� n,�F�B�)2Me(���e)�n�
/�L�|x�Nt�L'W4�_x�Î˨����
�y�w۶��b��X_�Q4�����׸�
</��M��̪�li�ǣ���m(пr��
tYZ��+��f�A����B��T��E�7��8�cC�QN���&���P
t��������f��仠�˨t�ʃN�L$)��N穋��moa[<t#c2��M�f���^�Z$%%��ӿןq��X��X�G��\���--:��f�G�-G�M�/?��cΝ;��ܡ{u��ݯ������x���ݻ�	��tÐ]3��3���?��no��m�g��x/F,a3�B�����w3�Dz��X�d��8�y��q����麫��N�)�,��e|c�l���v�Qxr�{g4��d��<CeMn�[��y�%|Q���� �k�JӬ��
r0
U��1yr�pw�3ס��f��|�RB�F�9a{!��T��[��0�'��(3��f�c��Ċ��Ja�!ǃ��|�,ۊ���v̱��x8^L�ӑx�K+��]������}˷6���ÔMct=G��	�>И.��p��-a賁K"�o��d6/�ǖV_x䉛���an4W��M왪Hd1��;˾�xIT_nSj��e<o�������)~�;���H����
��~�V�`�W|7u�=G��8���Tc��H\�6���Φ΢n(���NmU���v8���0
6���$UE5���g<L����7�^�q�
�l��V�S+�7�F����l�2��Z���h����h�U�n��q _�^�f_�R\�I*5
��8:��U�_��N�y�q&nl�._��B��a$Y,� L,S,[	��A^�Za%R&P/���d<SI2F�珆p�p��1�V��e�Y��P�
 vd
C���$Ǘř�j;���ڊ��ww{�':k���GO���$,��DI#�̤)�C������B��v�@ylH�d��Ah���bL�u���P�z�Jq�mY��ދ�<�D�uS�E��a�J�>P0��h��/N��>gf�o�{:�C�dY�}���o���o^�vӝ;�jE�.���_7+5���
����|x�:�ƅ�
����LVX����+�G��(��ڗ'dpT1�<Ƿb�Sq:!o�&�[�֓ۍN�t�"*
7�>}��d@�u˨�}+��n���s1X�I��a�L�̫T�H�y:{Οy68��y�ه��2���g($tㄍ���BU5N����VϲW;HZ�I��jȮ��
%�-��K�Z�jNЀlD;m��b�l���_���N��
����Z��CZ6}X)��!�@��4KDF�τ��f@AȌM;dS�ȖxO1Q!�y1I�HզC��Xv�����$O<F��9{���;�N-�5�7��=�Hc~��f
��CN�UU�b�]C���R
��G���ݐ��;0�{k����e�-/@�[Ѝ8O���=]���&�;#�;����K��n��&m޽A?+�	je�B��w�PTt�� ;����
�NK�6�*�j%��%��PN�4Z�,�Q8�}�4ĉ�_�����^���������a؍��k�c\�#�|$�L2#0�);��,xg�+��aG^2bY2���
~�p)�G"�l=�� �Ĩ}�]9�Ѣ�g���"^7��	��ʼn��k��7Sz�z��ܟ_��yu�ij7��3��i-�8�ֻ�z����N�.q?/��#��ș� ���d1���uf��|v ���zc�P�1PLp)o?r��7P�5(gR�h��	ѯN/-1&^��|�ވ�������?ю�/�A_�G!y#ES��i�H��6f��<���i�lے5c�'��eBg�ьVYF�1%�����F��p(Z�a��Z%>�G�/U'�G6�b�0�R�(T��]w����H���6���z�d
�f���ەjM�MAdb/轖�m�ޱ=����TM�Bߡ`��!0ދ#
	k�<d��4n&3M�w�0�,q@+x� *�Qu�E��*j�Bk�`�%�,�P?ƈ�b
8����[�(֡�&�I�R��tӡh�Z0譐����醎\JGr��)1x���UM��d}B�#dЁL(f�Yը���sg/�*՛�{��H"y69N������zm�T%��p��'3�E�xHN"��7�z�p6�d��8�Mkk�%�h���Vch�������l��<S����x���H5�e�/3NB)(Ϳ;O���!��=0q��CO]|��L�����l�gv��xis��r������S6�G|�ڳ<��Ǥ;�~��^�&4��Z�v.�:��@KD �����l2�=�뤙F�o��}9��¦�a�? �'�-�8Cq����N��*y�f�J&��b�(K-|4r�h����^O�]i~�>]e���jߍ6@00�q+2v�3�%��?`��)���g��D=�E/�Ѓ�H-�ڥ�]�;�1��6�Tuy�>���~߹Y]�P����*���|�3?S�I���
��#6qD���l�Zۡ<H��֯�
U'�^�6��7{zߚ�������?>{1��Uo��3��8�=�xNې���P�.�����[_~~��aP,OӨ�ςa��$U�b�<ǘ��BHAqБaKEK���l
�Py��x�5,Kᾩ�6UY��O���
���e4Rcs��C�L�4�f���Zا�*K�R�Y��Ci��}����i�b��z��g�ٝ{׿�赏��`zj#q
�p����-��~T�t�aX��֓���5�.*�y��()(���Fȥ&Of�5�O��mY_�t�F#J���h<=���<r	R�=���E�K��=�� J��阶��V>}V��8��	�/�օE�r
\�xa�U�}	Rp�"���"~2�JxgYe8g��2(��~r����X��sFS�#���&�f���e�׌m���V�}�0X�Qz��H�M�$����+�WA�~`L��ZE[h��O��ȟj5,��+�����|q6zmu�oYO�YB�CijjLշ��ퟧ��l:KGW���5/Ӗ���FCJo'Ej��߸{�2ǨHFI�r��C��K�`H��vټL^h@_ԂͶ���^d[�LS]��^�<��/G��V��Zo�m�Y�ϓ���GAt4�i�Ѹ8��(�9�>.�.��(ۼҶ���9�ĩߡݗ;�5Y�yU�q����\�E�(����y�!��N;�(3��Qq0eZK��K�yJM���=Eb'�Z\��Y��&�j&�2�k"ь�����M-�|a���∃I��1)����{�G��.۵{��~����I��_�򳽓q��J�5TGÝ:��1�������v}��^�-մ�ó)Օi��m�<m�X�8�^q(C"Y�i��8qX��:�S�O}�����c�-ʍ�����F6V̵��f�(6u��/��/��d���S��U�8U9��B�ISe�(��tH��-�;�ro��c�hC�%�=��\��_�"۶=�G>d�b�9tB��p7Q�S2��%*ێ��N���
�q���P �
�9�p)i�z���Jo���x6�����9�^���0Xo����g�u�S8K锭�8>9?�ۂ�Wx�Gi�zgi���ƀbW�p��,K�vN����9̐	uZ
�9�����-R��?�۽�V�;o�=QfZ�s�4�F#Ԧ�Cj5��B�r�۲l���İ$9�R@�pj�l�xr��2�ev �ùˀ	@-X�k-����|w�w��,C;����k��Ur���ӱO�qg<�B(�m1�V�`q;�,:MV:�M�j���ܟM)�4�v����dz���&E�XT�%�������*��B��l�e.jF�Al�
XSE��f�{�7o\_i�g~|2N����i�W��7h1�3�d����1�]�Mͪ��KH�)۪��
� Crm�C1(ɀ��{m��OO�(_��IHA(H(�RY�@��@�]6lע��Ā���T�,��Q�`C-�,�§Æ?ou�&�~�K�5NE��dE��)\0Im7���N�L[:͒y�	x�׍��v!M�_�b�>���:��YV�[��5��0�tL'eFV*T
��ݠ�>�FA��
�Z/A{����BB�) !e�$���X�M�D��M��P��U%�aD��;�'�	�Y�I�,a��6�A�20�(Y���s!��`��ʢ�̫�J�����҆�-�
E$��(7��9}�0Ċ/!w��ラ��g϶��ڭ��t<��锋���$7)){��l�f�������cnIQ̈́�����:6jY��_7�v��X귭/�ڦ��xO)��-ײ��^[]_vZ%���#U�\��/J:�2,�h��g9��%�r��F=)���yJ������w�[�Nv�@�.�v�"iRGt�(ħ���Ke�P��w^?��w�]1_�C��N�l{)=Ԕ�fa��Z�MM_�܎�&&���|*���@��#<pӲ�.C�%.9����U&s$�{.���y�6�o�ey�i�mc6o��?{6�'��'I:�jM:@�Z�g�B��Q�J@O�)���,�,��<�Σ�h<�+��x.Y�dy��yS����I����~�B�]&C3D�H���߹��qtm�_��gI�CU]1�B�OG#z�w�6�A�
��UI�SU��G79$�!���m�<y��8J&�o�R�t��-݊�p6���e`�p�Vg@�@�ئ���p)0#�3�n4vR�S+zl:�����R^hMP��ê����"��6W	��S�4��ыYKl���b+�W�ﻆd�0�C��R�<��\k������gE�dB�z:eTA7��E�rgn%%�i:� �8~FU��ڭMJ����CeC^JA�~F0h��Х$��G�"�7�)�V�G�"��MTD��O�*Mҥ���׏�K����uu5!�#
�8�B[%���[A�WxvR�ge</�y�Z^���<��F��x?�O��t6>�OO�����QU$����,��S@���YO�=��nz��'��A�L�`���G+�q���ғ��"8�q<�Ƴa.W��VUJ9}�0X��j����І��1eOf�q<��/u'�G���8��g�muhCN�hܩZ\�$N�#��B
{�V+˲�� ��F�rò�%�p>Bɴ��=&?�[�ߺ�J��!J@�����,�)4�T0Қ-�#-k�"��r0�|v:?
�y:�����
�s���u�2�4��,ʳ1��q���Z�����k�2��@AKl��Ɛ������@fIL���@ؒ��~��2����ȏ�J־�͋��h���T�p(@[ƦE�,�3�3w$�50%�j�6W�"�㵥���ir�1�N���p��fQ�\:ο���2�A��W������_@�DC�Rȓ��t�y!�`�@�Z�;p56���zz~>�u�0(�P6��l�'�R�S�u�<�a�]�q�[����et|Qy�ҳ���ȸ��$S�xamzl�m���/�x>�K�Z@��5���"�Qfخp�Z(d)���}o2P�2�d0%J*!W(1����X5��\0�7)��QJ��
C�B��2�5)��g��D۟ә���N�0e걬�b/�����K�q7ʕ��8e�v�>;��}���$KN'��s5N�L����-�'�&Kږ�2-�s����?�ۼz��*a���&�nt�WO�?��Z��4��b�\���䳀�g��X��G�1�*�h�W��W4�TA��m���l����ݟ޼�3]0��?��xos�4��?�ݟܻ~SgL?�)��J^<~���p�lo�����{��Z�������{�/Å�{0����d��:���?��/v�����P�*Jׄ&z�ǖ�Yt�t���yDY�G�Rk��w^��q�v�R�G�k��L'
��>�L�f�N���M]r<��Z��*�(���~�''��No�ӡTb�pۖM���}:�Zmﳟ��
Z*X����P4�R��"�(+�`J���<�ן~a�$�9e�f��~��1p$B�T�t<�ԏJ-*W<�]�gS���bi9O5@T1��e�p�pbt"s��?��j9��g� H������3U���tV������x���[ga�}>�;h}`H&�y���H-�.��=v��(�l��+�O2D�ΆR�hQ���s:UK�I�]jv�Y�\�%y!Z7��r�@64Ub�������0�0�(�X�v���]׼�u�]������ԇ�������
=�q?�s3M�;_Q�.�����ڮ���\���"&yUZ��D�V��hzױ�
�È7*�T����8w7�C9k�5,�+yaR�h�1����Re�ե~����^ET�TaCŒS!j��_ͺ������0���&yl̀�B]����W��xN�7���$�����$�,Y���W���:��uIc)x�&��V�|~@{�kw��O7:]�ɀ2�n%����Й"g��7�D���+�IVF�S��[-�L�g�m	[I�٧����+�'ϟ���$�[��	���.Y��#��CJ�����?�Ͽ��{G��?���޽��<+v�>���?��w/��?����_��DW�~8�����/��O�����?��O>�lgg?���e-_>y"g����i���O��?�W<z��|��7��{�y��g��?���~�+h�Z���<�����2]���
 Z�q���i������Ov���7Z���˗7�\[�tfqtuiy����9k��ǧG2$yj��	eI�����iݣ�L�"�s��*U:�.n���I|>\_Y�r���R�[�	R��l���3
���-�W=8��O�PA��p
mtr�;�n)����K,ټ=>����4IR��y(��TQg�L>ؘ��M��d�|1���kk�����O�܊"Z�<���3Os�ՙiS�A�0[� $7�G�/Ί�G��f<99��³ݝ	��7���t�d��Bg�R��\܂��+�)��3]�V��1a-i��܏#��o.w�^�Y[���d2�4-fa��YF[S2����n�^�v��;�`rt|(�����(�7�l�j��S]ү��Ӄ`,�n�x������Ծkv�d.2
�~��a�P�Z���_�����f3��T�5�|�=��M�'���q��jö@1M2����b\_qӊ�+x[JLD-��2O�q.�Q·�աk�1�f�T���o�
���kJ�4��Gz�+�+�I)��tURf��pH�칮Z[��շ76�� �29�{�6��m�i�9Zr��i��|���)ǎ3�՚J��NZm����eg~dP���TJW,��ٙ<�A���%X��`�G��]Q?�ge��]u�ē��WwO�l�n2���6�L��QՌ���IQ�c����?�g���?�����:�0�UR��埥�w�n�H��i�R����(�
l�´uJ��Qe�G��l��۟n�����ח���|��]:咲1ۡT��p��[_[���n�c�8���`�=��)��	Չ�5��2���9h�6.8�(qP]�,�:O2�Mn(V��Q�J醍��EU�Z�h��!�!,�qN*E�,��$u(����_<���l0��S5�Ɣ�� T*�((G7��@^|β����2r>�0�V��ʏ��>HOZ�M�˰���W�j��L�O�����6}4M>��uY5�w_3�ƫ�=]�qV��ݦG�P
뵭RR��>�eyA��k[׎��~�
�Dn
@�s}��#1�D|�~�Ѫ�Uә�/kùojJe���7W�I������0˪a��
چB�ʄ��Fm�߹�֗KŇ�LR��d>�k4~pkcg0>�B
�R��UG�!��,���4�7�3�q4w-{ٲ�E���S�� �4=Ib]Q��-����Rǵ��A�\/��� F�W�`��f����D���4;�N�0;�B���i���S�׮$Ι�vɹi3�c�Fz�J�T���t�`�$��R��4�n�hsZ��ً�'��(-�3��
�@C����B��~>��e2m���ۛ��[���?z2�n��͇���X%\a�t++��6M�Nf�wrX��`�`�_,E�.A5(E�~�ŗ�˥�U�ς>�",�*�La�P���T��r�X�$��=����-ۼ����t2��]]6�#�WK�W��w��^�nu�>��^wG�țY����B�N���h��?�`�SQ�4�*ɡ–6�cڴ�l�
)/s��b
��헇wWW�0zztpu���95,?=���4-�uח�=ݤG{ue�PT��YQ�g���Qq:���{Ki�����^���C�]�<�*X���g�~�T�!��T~P�ŬI9֐9��ܓy�K�z�U�I�ew�2�h4����dB�HfEΘ�N�$���ݏg]�9�di���GV8�)ʀˀ@!�����cz柟�R�v���UL׶lv�M��]q:S�,1!*���2v�C�$�t@���?;E)���T����ܻr��?ʣ�ƈ ^w�(��`8/��P���hs�^�:�T�Jڷn�)���I����dM"Pb��S]s�,2,�B��m}���~�3�F���Q�)PW�rm/�\�>=|�r0���<�M�t-.ʮ�=���g��地Š�2ڎ[�9UA�u��-ۥG}{}s�qk���еZ�MV�ÀV�b�ǐN��XD��f�S��X��F�jI�����:�'|F	Q��F(|��~ee���V�(P��1��v��EQ\7B4�#������H�je�����xn4���(sӴӒ�纥lm�{����ol|�b�$�ll6	8��,g��##�`p��@W��q��:�4�v B�B�$OE�KX�:t)���@�v�
L�����ˁ��qy̤��x�����\���>}34�@��k[�.�um�foݱ:�>�|c}����]
���}��/��0���E���?�86]A���Z��
�|��,��	����j7���&/_|yse�0�������<{1<�r��P�m;���4�(|X�Gjӎ�LJݻ��7e�r:=�ӱ��O�,���)"0=P���t�Q�c�Q"թb��-�`?�V�4"����1��A$��$�AX�E�[/�d���K]�G�8P
�s:P�,�y�k�%�/1���MI ����9XL�F�P�FѮ?wT�͙�����t?�s��>�n�ۥo��(L����Wt�9F��DQ�b摚�/��LI�{^(��A�ɡ�e�Lf=��"��)��sc��됩�_[�e$PG�f���;6�Y�AP�3&e�a�@EMú�ڮ��u��ܜg�q���/�����}����T���1��)nV��L�M�Ȧ���8ExWA��4LP�8�5�#��-
�)���ի���`_2+�P��wm�2�8Nk&���)1̸j:�1�j�+������,�SbNI��_3P�]!���օ��b�Q7�wn*�D/ٞG�r!	�0��l�(d$�Ҥ\+�D��pK��T.�<W����vۖ���/�~��k?z�_���0\��KX�Rɔ��_��D��i�E��yd���7c�[Z�9}���Ϙц�b/�p�(%�����V]]��]ܙ���>�{|z�8$+_~�#9m�2�:����_��3�6%��y�%mD��R���_�;{�\o"z������g�X.�_�����޽N�5�?���[������o����ʯ�z�[�fX�ߊ�5Ԅk��j�`J��tk���#~�{x��oO��_}�֭�V���W�׮��鄐4�Y�ƃ��p�����<�bi2��j]�y�FE�Ҳ�b�z�޽�(��g��r��G��2�C	�r���%�zw�N:;O™i:���>��B�N������Y)j��v�_�
Ұ̳�k]
q�PZ�Z��$���`��`�?5���jy�����T�i�U�1�ɣT�D!�j(�¨!h #�-�]��J�'��%����˰�t,%-2���haw�]?�R(�C����
C2d5Ͼs�Z�'�l.��/�'��S�d� �I��O�cj��I���,�^�G
��A���4=�����o,��J4�4Ӹ�6;�~g�eq������s;�Lt{�{7n��(����9>������t֯�Y8��a����"���LeF��6���q�S��j{%͒I0L�=y���~����&�D��(a���R
�;�U)��=��P36�4uߟ{n׶��d����� �;���B؛��@3��lm�J�"d�D#����ơ�Lc��Bz�}�䯾s�Ş���PV͎e|���N���G��TU*�=�ʲ���w����d�g�<��b�my�>��܁
�N���*g�!�euJ��$h�b+���kC�0��J��u��B��Nhh�J��2������g۴�N�J�0RJ@�n��|�����翮��j��a��~��˽^�1���ӳ�*I(��~�ۿ����)�g/�|��?zpc��AJ;S���:K��z�����H�/Q��:�
͖E��l6o{}�4I�V����p��1��A�mz�e��uu��������]��s~N{�����4�5�Ls�t��t���Vi�e^Y�P�{����w�X�l�S���K�4y���4�Ng>�IQ��;P��H��0{�h|���?p�m-V	��Y��V63,�dfEֳ�7n�z����w�?K��?��[w�<?>)"Q�S����J�ez ��pI�:�m��
���S.3$k,�����`X�|,N�6��"@�#x�R
�*�E
�L��І�ݦG��i,���E��&���AQ�f�;7�������,���OmDT&��K`�`n-5T01�vџ�K���|�UI(�	��n��ֺ�9��}p��x�v��޽�˞;��~����0��v����o�ۺK�j4m�}�է�|�y�׽n�A`ue
C�]��%7��Y����� �	�����Q"�E�ne���|��'�P��)��*�*���*��ݓD+��f�\7�wX�����RȪ=J�`�*��X˯�[L*d��E!��46�E�]�f�A�@��0�%������b�N©�`_B+P��d�U��)�%�����G�B�P�^OS0����sN�.T�Џ$i�*"ѠK�z��u��]
��x6_2yh󩊘�VJ�FP�\���Ռ���p�h�`�����ǿ�{���v�`���x]�-bx�Q}��l�ݥoi��v��|�T�P�a�h7ٞ�����v�ky�k�fG�	���dg8�İiy�jS�SAZ5,
%��L�j��6�n^��UA�^����P_�p�;���FF��^Jd]�`�"�s�e��$y�ƛY]��O^��B�2�ʊ>iDZ�=��ZO�K����^�u�m�2Ƨ�R.g��ދ�0(wvOON���E��g;˽~E�X��|-̼@0*cz�K׮O&�4
ǡ�OW�U7�
z�+kE�����[���4:����q���%�d�d)�U�u�F�,+h%��
�Y�6Xr{K�0\j���nK��"g�ύ��f�e�kH(J@�/���N+)�~��q�(�S(��S�zG�v��mg2��`6���Ϭ�\�Uo��/�
\A�9D��.�>����6z��t��PM.�V��fY����vӽ�u��o߽�mu&�OI駇�A��ݍ��V,�� <>=~r����r��bʅMK1�(g7���ɒ�^Ag��ͺ�eV�9ΦZj�t�6�j�𷖯��=��o޹K���N;�.��"fK��$/vc�.�x�K�fG����Z�J��W�0�����&��ȼ�V��А��q%�=��Řr��*=}>�&�����
:��1
�0�\1h���O����/�G~�=��2�=�bW��R��fy�{
x�F[W(?hu<�P���3�ݖ��ŋ(	)ށ��P�O�r�ً�pt������9��������1�ji�J�$m����ڵ���ڃGVo�����'���0ίOO0N�����V{�x�y6>��C$t��c/�Pʐn�c����$44H6�&H�'��J�8��!�
0������]]�u絃�/�g����`p�{�iyAj,[Ե���,
�ڸ�ǘT�Ǔ��|�G�d�(���i��C|�V�G��[������Ѐ�d-�4UC����At��}�uM��#t�����[7��A�����9�N糝�'�/Iv:L��6
]���ejjǴ�J근���Q��PЦ@V��U�qǰjW�S��k
���ѷ⎥��UA���.�e�XeW�}SW7ڝ�=�'*+�@�.��j9�p�T�^>�e�{����'l�
��\��5��/Fa�E��^�2
��q����#e�w�@�_���j���_�~�ή��9/�8�s��rg����L�|v���������$+RYce.�_ʂ5ל&�Ә4òJ�g���A�R�v5i	Y-����pzڎ-��UE�g���Z}��7���d<�����1"�e
�`r��ɳ3��Ň��1#+�\����`�� +3Y<Xa(\��඀��Ԭ^Ȍ�f�"Z�\��9?<X�����׈�x3��W*+zB�T��٢��9�Q�A��:�L��Z��
�c�ر� C�g��
	��mM�J�:e�h��gӗ�g�y ���ȓE�3(���
��3�K���|���~�y�`<8װΏ�G�!�T����<��k�v67��=��(
���*��p�p=�[Nt�\�Z�Z��Ý��O�x�eQ��o;��M�.���%��s*k���4�) �]��qhץkz7��{���y]ΎO�(�8^�Oi!����}���{�w����TLhg��|�滃ٗ{�8�(��d&�<�G��C�u��}�Y��m9�Sʑ��C������`8��J�:����l6��u�K���÷���;�}����v�֍��{�ß�����ٳݝ{����`Dy���-u���0��i��	��E�W�ЅXe�ՂB�8�?��3�@��倀��Y4|e� Rx��y���um̆�iiL�Y�����!g'A���[@L�sz9s���rrty��C(%��٬�T�W�H5G�,6W��h�ȗ-e���E����޻׻�I�rx�b�DZ�z�˛��}�9�4��}����`�r͙�ypD�y��'/@�cqg�Tʞgq_lHk�=��Q��Y�T�sXA�6��C����)�N>9:�ZߘN���y��L嶢|����n8Z��滀֛�s
vas&�jX��Ûi��-9�m��K
ӕ�G9!!_."2�2Вu�1P�x����S�����AZ� �F�
4�A��9夒ii�bV�(�����	o�4�X�D���RY[&1Tp���ʘ*�D��z!��p����^>�ř��Q,�4M����~���K���o}s}����E1�P_Ug����BHQ$ӥ��Yʕ+��=��E�K�������P�9�r�:���"�LY*?�P
�O�E�%%N"ZX�L��n��B�0��Ӳ�ƃ�?�ƍk/��<x�9�$s�Z�RDZ����ޓ�YV�h	%#�d�Xͦ9%�QF!�v��p,��y��̺Qu�6���cY��ȕ4��%��?}�=݂��j���
GI���U�qDuEɷ����`��ɳý��h��ٳ��ztBk,
�Z	(/ٍvOS��"���O�J�Q�퇊2�6�\���;��l�/���@n�j1�
)<��aŠҊpfB]*��,Xչ��P���j
^8�M�B�`�"6�����Lc���޺O�FȔ�qW�e�E苍v�n�QR�_��&c��gկT����1E	�����g��.u��XZ[]Y���lg'���t:��iEK���2�h�hY��J;��ͺ*(�3A�Y6��F�<�w!��	�G�uH�x]X:�d�n���ot�i�}1+����\���};�3'i��zѡR��ۺ��T|*a�������Q��UDMLj��;^^!"���r:�����dg��J�7J��(�.�a�!�az{[ t����<J��M��iz��8-�D�t��י��M?N��i{q��IH�eY�r:)�m�����W(l¸b!?��×
�ŔVۥ���㐡��۴A��W�	�P�W5�qQ��!���
���O�$���0\1���fu�7׮Ɣ$q�k��lE��u�r7c
(�2[����&E���1Yi ��"i�ݢ�n��um=���<>�9֛o|�b���Y��f�6�dJ����(�7�?�q�e
\�8X������AuiS/3zfh:`����i�4�;��'C����S�i�
�"���uL;͒�dʐ�ѡ�Tr��.'a�S8XY�R}I�=��_�&	.q��A1Uհ�"�ۚ�d��Q<�B�^��Ɩ��\���0��+��H����W���g���fk��^<9E�x! ,��+]�o\
�l�=ۥp�A�FgEE�b(�]��5�̢Df��<+�VGխ`p躎�X�:̸fc�Z�w�$\�&�cAiV.F���`^��Bh1$��햧��涯�_�w�-������{t09?K�
(��]K2T�����,U��.rI��y�B�e��,�A֪�<��$�RXNB#v/8�Z�}�n;��TgQ�:ȴ�A�"V�h�8�s��,�Cy3��P,��@.X<"l]V��X5\���h�P�l�8�!$��#����h�iI��[3N!X�(��m
���U	|z
w>�^�N��2)�E�n���m��X��k���gI$s�$Bi30F�S78LA�\�Z4͂�B�Q|~�t(�Q4|�oؖy��'g�`��i�iPI�j�w�=a���q�o�c�,€.��x�`�M�>%��"]�ws�6������l9�����LeujaX�h�����ʫ�܂+�M
8���}J��$[ͫ׷n~ﭭ�N���o�A��'/���Og1b��X��+�U��.CK��t[(G��M�B2�� |9΢8�
�L�4ڎ3
)�$*�G�NpH�e�$�JBW��W��2�R`�iI�{)tZL�2��`�g&��������{�R�!xgiY-���w����Ũ�R��qK�w>�r��30�Gc����h�C&	B�e�tBԺpVo�W��R�fcq`3s�2�*Iz:f.�a��p}C�>T�0������r<�
2��B�-_�Ӛ�W
(J����%l�Cҫ��?Ku_����r����7�ym4�n��<?�;8��#��a<��B�
�lE$�(�JF'�'�ቇɨ�JP���ޥ���4��,��[�i�!�\E�GU_�
S�O���4vBU{A��E1�R��s��]�:��Ґ_�A.�Q�U��zqD��w��̲������%�m<�dCq��I��v��j�L��.*u��	�ue1eEEȂ+��nJULѯ�, �����^bS.��05��6��Z��q�"�6��M|uњE��q���2\9�Nφ���Lo�3n��*��X�Lb��	]���}i=;i9�y��=z5�&t�:�Gw��v�׮\��͂�4
�a�3�\V�e㰅�C��K�)�� .˲�Ч��a���#K���)o��������|p��x>9��|u�/?���v���C��7������Zj�:h0P��:�;g�q��Qd��iٵ����>�v��T?�&�Y�a�	۵�Lz��0�ѻogR58�ZYȉ��J!p�RE��R�%#ב�m�R���מ�o�]���h�����ϡ�]�:7�U�)�f�+N�l\�I�b0Ȍtնm�0#��~a2ح�T��\)�bS��F�C]���L�>|��R��2ڡ�*`TH���P3�M�n����C�Yo��"c4_T6�b(v9V-���e�E�����jp�2!L�ի�v����ۙϘ�yU�u��ǡy-�+ؓ��G��B(Ys��Y<L�H����A~%�m��_3���c���k�.����Ѝ�����
F9՗��b�2gj�H��P^���_W�~%�Ϗ���:�6b�5C��p�'6�fu;Z|\Te��C&�P��Ϟ�>���!z
�/�F�X
�P-xg
o*4�TqPb��fM��R+-S@�5�y�AK�b�����橋�W�Uz��lF�¼U�r&��"�m���н�иQW��I>Q�-�m���o���O���o�m�|	TL]�y\�^;ݥ��� 	~0ʹ5���b�MU�����DP��u@��!\V��^��[��W6�����>��˃�q���m�2[�m�I��ԗ�$	��(D1C��"SjG]]r���R�@��O(+&�<�L5�`���[�?::9�,��?�:y�ƶ���X;��hw�[S��j7�h���ukm2����F۶�4�m勣��d6�BWFa8������V��OR6��­��Y��`&��T��tj�q�E[i{^�եw����˪�h��щ
�>�,Ԕ |�mz��e�\g�υ�6��TW Z�$��zB�M��4��py�:�3��D�%��Z[�?��|1=��fo��㎵a��4����3M�o�@�Ǟ�p�U�]L	����Ď�R�HcN&�d
�hMnfv�|azq�9h%'�q�-D�W:�5���]mh�Յ|*�ҢM'_@��Fj!`��K�B��
/H<�	b9�~������;���G��v�b�P�R�p��Tn��Ā��)�>б摳�j�!:�e�weQ�K��9t�!�����6ƈ��\�E�H�J�%B
&1�7S�2�EZ��	îE��1a�T�5���R�M��`���(�x
��KY�d>F}kZ��D��"I��U���>��˽��g<VJ� �nڴ>�t:��۪h0K@�
��c-W��RW
�Lf���G�$�[J�Y���΃_���?���IVxKk�f�R���j�@�9���d�b|vJ,��-̾�\}��gF?�;���5�O�����)����K����G�?�j:����qp��y�ɤ�JϲfaJ�	���C��ۛ�+��杵����!��`==8�0���P��2�iz��e����p�W	�:#lY?Ԑ�2����i777��W�<M'!A8^%%�
�Y�$��V�-��&�Y�ȧ�b����xcj��f7V�R4$ˆBy��ԋf�$�u8�pD`�%���,N��E�u�	Q�\��DVqI	K���H�|��9&��Ш���eF
OVa*r�[�a��S7�Ƥ���!UʹZm�I��fl��-��B�fтsZp�b׶��F����\�q�-/>bU7�������&	m͆"/��J�l��ɱD7������{+M!` �*�*d��&�F���S�r%G'���/(�J�\p]_���F8i��K
mEI�C$�F;��a�[���*����ϣy�D�3G3o�3�;<�.��
[$���P\�Ω$d���Ē����Z�5˄�R�H���C��TY�Y�v�z�̘��t��\��Ո���Se���>@*�˲c{��ь6YL%�a�-� ~��h�GSL���q��,�x���,m%*��R�AX��&%E���,l�g�m�w�G�(�q��won"�P&�S�C��r9/�V��4.d}������a��ŗ���g���~
�w��)��H׫|��Y��ߧB����fL�;Y6�h��Q��7���v(�(ʀ��t�����|9ma���b�؏K�S���io��%"L� H#Z��m��ʡ�ʘ�Zq=lz�$%۔�����Pg^��J����ȣK{��"�_û/�;3̤��n���r�+��IEND�B`�themes/cubic/v1.0.0/style.min.css000064400000026461151213255610012406 0ustar00.ms-theme-cubic{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-theme-cubic.ms-loaded{opacity:1}.metaslider.ms-theme-cubic *,.metaslider.ms-theme-cubic *::before,.metaslider.ms-theme-cubic *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-cubic .flexslider{margin-bottom:0}.metaslider.ms-theme-cubic .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-cubic ul.rslides_tabs,.metaslider.ms-theme-cubic div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;bottom:15px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-cubic .coin-slider .cs-buttons{background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-cubic .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-cubic ul.rslides_tabs li a,.metaslider.ms-theme-cubic div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-cubic .coin-slider .cs-buttons a{background:rgba(255,255,255,.8);border:0;border-radius:0;-webkit-box-shadow:none !important;box-shadow:none !important;cursor:pointer;display:inline-block;height:15px;line-height:15px;margin:0 5px;padding:5px 0 5px 10px;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:15px}.metaslider.ms-theme-cubic .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-cubic ul.rslides_tabs li:last-child a,.metaslider.ms-theme-cubic div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-cubic .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-cubic .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-cubic .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-cubic ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-cubic ul.rslides_tabs li a:hover,.metaslider.ms-theme-cubic div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-cubic .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-cubic .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-cubic .coin-slider .cs-buttons a:hover{background:transparent;border:2px solid rgba(255,255,255,.8)}.metaslider.ms-theme-cubic .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-cubic .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-cubic ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-cubic ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-cubic div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-cubic .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-cubic .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-cubic .coin-slider .cs-buttons a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-cubic a.rslides_nav,.metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-cubic .coin-slider .coin-slider div a{background:0;-webkit-box-shadow:none;box-shadow:none;color:black;height:100px;margin-top:-50px;max-width:50px;opacity:1;overflow:hidden;top:50%;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:11%}.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-cubic a.rslides_nav::before,.metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-cubic .coin-slider .coin-slider div a::before{background:url("images/arrow.png") no-repeat;background-position:50% 50%;background-size:100%;content:'' !important;display:block;height:47px;margin-top:-23px;max-height:47px;max-width:47px;position:absolute;top:50%;width:100%}.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-cubic .rslides_nav.prev,.metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-cubic .coin-slider .coin-slider div a.cs-prev{left:0}.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a.flex-prev::before,.metaslider.ms-theme-cubic .rslides_nav.prev::before,.metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a.nivo-prevNav::before,.metaslider.ms-theme-cubic .coin-slider .coin-slider div a.cs-prev::before{left:15%}.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-cubic .rslides_nav.next,.metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-cubic .coin-slider .coin-slider div a.cs-next{right:0}.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a.flex-next::before,.metaslider.ms-theme-cubic .rslides_nav.next::before,.metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a.nivo-nextNav::before,.metaslider.ms-theme-cubic .coin-slider .coin-slider div a.cs-next::before{right:15%;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.metaslider.ms-theme-cubic .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-cubic .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-cubic:hover a.rslides_nav,.metaslider.ms-theme-cubic div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-cubic .coin-slider:hover .coin-slider div a{background:rgba(255,255,255,0.30);max-width:50px;opacity:1 !important;width:11%}.metaslider.ms-theme-cubic .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-cubic .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-cubic:hover a.rslides_nav:hover,.metaslider.ms-theme-cubic div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-cubic .coin-slider:hover .coin-slider div a:hover{color:black;max-width:50px;opacity:1 !important;width:11%}.metaslider.ms-theme-cubic .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-cubic .coin-slider .coin-slider .cs-prev,.metaslider.ms-theme-cubic .coin-slider .coin-slider .cs-next{margin-top:-55px !important}.metaslider.ms-theme-cubic .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-cubic .rslides .caption-wrap,.metaslider.ms-theme-cubic div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);bottom:0;color:inherit;margin:0;padding:0;position:absolute;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-cubic div.nivoSlider .nivo-caption{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-cubic .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-cubic .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-cubic .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-cubic .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-cubic .rslides .caption-wrap .caption,.metaslider.ms-theme-cubic .nivoSlider .nivo-caption{color:#fff;font-size:.9rem;padding:20px 30px 55px 30px;text-align:center}.ms-is-small.metaslider.ms-theme-cubic .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-cubic .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-cubic .nivoSlider .nivo-caption{padding-top:50px}.metaslider.ms-theme-cubic .filmstrip{border-radius:0;margin-top:10px;position:absolute;width:100%;z-index:4}.metaslider.ms-theme-cubic .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-cubic .filmstrip ul.flex-direction-nav li a.flex-prev{left:0}.metaslider.ms-theme-cubic .filmstrip ul.flex-direction-nav li a.flex-next{right:0}.metaslider.ms-theme-cubic.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-cubic.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-cubic.fullwidth .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-cubic.fullwidth .rslides .caption-wrap,.metaslider.ms-theme-cubic.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-cubic.fullwidth .cs-title{margin-right:320px}.metaslider.ms-theme-cubic.fullwidth .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-cubic.fullwidth .rslides .caption-wrap .caption,.metaslider.ms-theme-cubic.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-cubic.fullwidth .cs-title{padding-left:20px}.metaslider.ms-theme-cubic.fullwidth .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-cubic.fullwidth ul.rslides_tabs,.metaslider.ms-theme-cubic.fullwidth div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){right:60px}.metaslider.ms-theme-cubic.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-cubic.fullwidth div.nivo-directionNav{right:20px}.metaslider.ms-theme-cubic.fullwidth a.rslides_nav.prev{right:284px}.metaslider.ms-theme-cubic.fullwidth a.rslides_nav.next{right:20px}.metaslider.ms-theme-cubic .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-cubic .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}.metaslider.ms-theme-cubic.ms-is-small{padding-bottom:50px}.metaslider.ms-theme-cubic.ms-is-small .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-cubic.ms-is-small .rslides .caption-wrap,.metaslider.ms-theme-cubic.ms-is-small .nivoSlider .nivo-caption{margin-right:0}.metaslider.ms-theme-cubic.ms-is-small .flexslider ol.flex-control-nav,.metaslider.ms-theme-cubic.ms-is-small ul.rslides_tabs,.metaslider.ms-theme-cubic.ms-is-small .slider-wrapper .nivo-controlNav,.metaslider.ms-theme-cubic.ms-is-small .coin-slider .cs-buttons{left:0;right:0;width:100%}.metaslider.ms-theme-cubic.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-cubic.ms-is-small .nivo-directionNav{width:100%}.metaslider.ms-theme-cubic.ms-is-small.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-cubic.ms-is-small.fullwidth div.nivo-directionNav{right:0}.metaslider.ms-theme-cubic.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-cubic.ms-is-small.fullwidth .rslides_nav.prev,.metaslider.ms-theme-cubic.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-cubic.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-prev{left:20px}.metaslider.ms-theme-cubic.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-cubic.ms-is-small.fullwidth .rslides_nav.next,.metaslider.ms-theme-cubic.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-cubic.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-next{right:20px}themes/cubic/v1.0.0/theme.php000064400000002027151213255610011555 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Cubic extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'cubic';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_cubic_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_cubic_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['cubic'])) {
new MetaSlider_Theme_Cubic();
}
themes/cubic/v1.0.0/script.js000064400000001530151213255610011602 0ustar00(function($) {
   // metaslider has been initilalised
	$(document).on('metaslider/initialized', function (e, identifier) {
		// if .ms-theme-cubic
		if ($(identifier).closest('.metaslider.ms-theme-cubic').length) {
			var $slider = $(identifier);
			var $container = $(identifier).closest('.metaslider.ms-theme-cubic');
			var captions = $slider.find('.caption');
			if (captions.length) {
				$container.addClass('ms-has-caption');
			}
			$container.addClass('ms-loaded');
		}
		$(window).trigger('resize');
	});
   $(window).on('load resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider').each(function(index) {
			var width = $(this).outerWidth();
			// if the slider width < 600px
			if (width < 600) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}
		});
	});

})(jQuery)
themes/cubic/v1.0.0/style.postcss000064400000013141151213255610012521 0ustar00/**
 * Containers
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides.
 * Don't be afraid to use !important as needed.
 */

$theme_name: cubic;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-theme-cubic {
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
}

$(theme_prefix) {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
	}

	.rslides img,
	.nivoSlider {
	}

	/**
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 15px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsContainer coin {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 30px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsLink {
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		text-indent: -9999px;
		display: inline-block;
		line-height: 15px;
		width: 15px;
		height: 15px;
		background: rgba(255, 255, 255, .8);
		border-radius: 0;
		margin: 0 5px;
		padding: 5px 0 5px 10px;
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
		background: transparent;
      border: 2px solid rgba(255, 255, 255, .8);

		&::after {
			transform: translateY(0);
			opacity: 1;
		}
	}

	/**
	* Arrows
	*
	*/
	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: 11%;
      max-width: 50px;
		height: 100px;
		color: black;
		opacity: 0;
		overflow: hidden;
		transition: all .2s ease-in-out;
      margin-top: -50px;
      top: 50%;

		&::before {
         content: '' !important;
         position: absolute;
         top: 50%;
         display: block;
         width: 100%;
         height: 47px;
         max-width: 47px;
         max-height: 47px;
         background: url("images/arrow.png") no-repeat;
         background-size: 100%;
         background-position: 50% 50%;
         margin-top: -23px;
		}
	}

   @mixin arrowsLink__prev {
		left: 0;

      &::before {
         left: 15%;
      }
	}

   @mixin arrowsLink__next {
		right: 0;

      &::before {
         transform: rotate(180deg);
         right: 15%;
      }
	}

   @mixin sliderHover__arrowsLinks {
		opacity: 1 !important;
		background: rgba(255, 255, 255, 0.30);
		width: 11%;
      max-width: 50px;

		&:hover {
			color: black;
			opacity: 1 !important;
         width: 11%;
         max-width: 50px;
		}
	}

   .coin-slider .coin-slider div {
		display: block !important;
	}

   .coin-slider .coin-slider .cs-prev,
   .coin-slider .coin-slider .cs-next {
      margin-top: -55px !important;
   }

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
      width: 100%;
		position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
		color: inherit;
		margin: 0;
		padding: 0;
		transition: 0.5s all;
	}


	@mixin caption rslides {

	}

	@mixin caption nivo {
		transform: translateY(0);
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
		transform: translateY(0);
	}

	.flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {
		font-size: 0.9rem;
      text-align: center;
      color: #ffffff;
		padding: 20px 30px 55px 30px;

		.ms-is-small& {
			padding-top: 50px;
		}

	}

   /**
	* Filmstrip
	*/
	.filmstrip {
		position: absolute;
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 10px;
		ul.flex-direction-nav li a {

			&::after {
				width: 10px;
			}

			&.flex-prev {
				left: 0;
			}

			&.flex-next {
				right: 0;
			}
		}


	}

	&.has-filmstrip {

		@mixin arrowsContainer flex {
			width: 90px;
		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

	&.fullwidth {

		@mixin caption {
			margin-right: 320px;
		}

		@mixin caption__text {
			padding-left: 20px;
		}

		@mixin dotsContainer flex, rslides, nivo {
			right: 60px;
		}

		@mixin arrowsContainer flex, nivo {
			right: 20px;
		}

		@mixin arrowsLink rslides {

			&.prev {
				right: 284px;
			}

			&.next {
				right: 20px;
			}
		}

	}

   /**
   * Thumbnail
   */

   .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,
   .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active {
      border: 0 none;
   }

	/**
	* When slider is small (< 600px)
	*/
	&.ms-is-small {
		padding-bottom: 50px;
	}

	&.ms-is-small .flexslider ul.slides .caption-wrap,
	&.ms-is-small .rslides .caption-wrap,
	&.ms-is-small .nivoSlider .nivo-caption {
		margin-right: 0;
	}

	&.ms-is-small .flexslider ol.flex-control-nav,
	&.ms-is-small ul.rslides_tabs,
	&.ms-is-small .slider-wrapper .nivo-controlNav,
	&.ms-is-small .coin-slider .cs-buttons {
		/* bottom: -35px; */
		width: 100%;
		left: 0;
		right: 0;
	}

	&.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,
	&.ms-is-small .nivo-directionNav {
		width: 100%;
	}

	&.ms-is-small.fullwidth {

		@mixin arrowsContainer flex, nivo {
			right: 0;
		}

		@mixin arrowsLink__prev {
			left: 20px;
		}

		@mixin arrowsLink__next {
			right: 20px;
		}

	}

}
themes/cubic/v1.0.0/images/arrow.png000064400000001254151213255620013051 0ustar00�PNG


IHDR^^�ңngAMA���acIDATx��QJ�P�aun��]W ���z#
���;)�!9r���"������p8<,��^�e^��u���mܠ���
������@��^�C��z�O��D?�o<�W�4NnS�qU9��c�Ua�~Y�S�F�V�����j=%i�n`�ZAOI9�X�V�S�F�V�����j=%i�n`�ZAOI9�X�V�S�F�V�����j=%i�n`�ZAOI9�X�V�S�F�V�����j=%i�n`�ZAOI9�q�ocw7�?�p��:��wW|�E�(@7�R���$��
�T+�)I#g�e���u����n[p^�x���q�^�?+8��	�٥��
N�ov��?��B��~��H��ۍW;�o�V� �s��2|i��7�e��,�oj�,��Y��ԖY�H���-���f	~S[f�/ �����_@�%�Mm���4K��2|i��7�e��,�oj�,��Y��ԖY�H���-���f	~S[f�/ �����_@��>_+:{���+�g��>�+Z�|�Sؚ�>芕���=�|*o��)��~~��+��W���8s�IEND�B`�themes/cubic/v1.0.0/images/arrow.svg000064400000001443151213255620013064 0ustar00<?xml version="1.0" encoding="UTF-8"?>
<svg width="47px" height="47px" viewBox="0 0 47 47" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
    <title>Theme 1/Arrow</title>
    <desc>Created with Sketch.</desc>
    <defs></defs>
    <g id="Theme-1/Arrow" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
        <g transform="translate(23.500000, 23.500000) scale(-1, 1) rotate(-45.000000) translate(-23.500000, -23.500000) translate(7.000000, 7.000000)" fill="#FFFFFF" fill-rule="nonzero" id="Rectangle-path">
            <rect x="0" y="28" width="33" height="5"></rect>
            <rect x="28" y="0" width="5" height="33"></rect>
        </g>
    </g>
</svg>themes/cubic/changelog.php000064400000000115151213255620011555 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/blend/screenshot.png000064400000507146151213255620012017 0ustar00�PNG


IHDR�x|GtEXtSoftwareAdobe ImageReadyq�e<�IDATxڜ���$9�ȇ{DV�]i��?����{��tOWeD��a��Ȝ^�t�TUfF��� `03��?	��t��oJj]�y������x��S��x=���K=ϳ���)'��^s*�������������j����G���϶��c���=�G��x���Z�m���۾��Bi+y�Z��RI���������K�[�oL��T����gܲ~�xc�����Wi�T�/�ǻݶ�v�q�������Ǐ�~ܶ�[���H�E��)�՟O�Q���X�-�x�>^p܃{���6�{�>����6�e��g�Dk2�_��qgo'>^{��S�1^1w������q��1���瑬;�{��q��}7���捇P����d���ĝ詏w<�u�x�����+��+��Xp[
�f+�5^t|����\��қ3^k��
������W�+|X���]�_�E����z#�?�o�O?V�@z]�x��,W��x������K�������׶�}�q�����w^�I�S��xLcS4,��wLoa�c'��v���������|
�s\]���}:U/o��V��l���o���z���%��J��9d,M�
�(YW/na�o7���}�ߥ;V�����Ǚ��qLJ��t��J�u�k�z�u��&ܒ}�No�X9uKxJzw�o��
�V���n!� �>z?F�пi�cï�O��77�Ixh�������3���g�c�����|�u����v|�r�������<�j��V<][	�jk�7ݮ��:VYյ&���-3�+v��w�W�/m�Y����ev���5(�BƢm�?Y��>��=Y��V3v"�e�G/�N���d|DM��?�=#�	G���xII��c���J�y�$k(�r�FkH��v��p^��g���/�q���R7F����V?���zJt]Z�MG}Xv#�7\ވ��H\�^^�Ŗ�K�4�G�a����q�����tu\��j�����r�H��뻤� Pq�臯���q6%_�|u�k��qǂ���q&�	ܟq|d�����@*\8Ń��xI���G�ߜ-�@�qM�9�8D2��y�ӓE����8�ƥ7���oW(&^���!�<5,��2�^�E=5�u�%b�n���:�鶝�Y�qg<�}ܥrV,U�eMo��E+{�ܤ��<xsƓJ��Vzm��>��Dp�9�7��;V��A�q���M�nd]tv��l	�i9��ė�T�xC����{*�h���O*�I{u����3�y<;�n�"}Hc��yM~�kc?�ǃCk-Y��8��汵��g�Lcl	_t��Vq<y>i}��|j���+▔f�DŽ�0�b}�YF�B�֔�	�\��n��5��$��ZCӈQ�ӌ���e��T歮zƿ�� e,(}6c�>�_ۑi$<d��3�qAr�����;qK8�ŖH����$An�y�n�t��)���^z�Z@+=c������S��):v�X�㳵���hP��d3��#�o_:^C4;�o���Ǣ�Y��W*v"%�C�:���U���Q�ڢRb��,�����^���Lj�4=����ZS�a3u�'3�0��_�P�8B�FC}T���i�����w>�hi�X�H��?�Α�w�4�xl��x���Np�&�xŭ��T�:b�j��z��_�^o��J�)�}��ُ����\����nr��|����"�1C�#�{��Xx�N��t=�Ƨ��k�iθ`ar'³P��I��%N�"�=#A�+k���cH��<J<�l}�1���6b�rp�,��g��b�~lȬI�j��<pum�3IO��Ug�S����q���#�SB�8�h��5s��^,#b��fd6<N�; �-�ݤ�F�0?~m���_�‘�wM�5,qύ�<2%�;�~G�\Q�TA���4GL;��ֻ=>磿������A|���ƺL��G<E�ˇ�?4����ً�28�J4#��4$V�>t�;1�̨3�G����q1�V7�ll��QC�bG�!����%?��	g�0nP��w�g��L�$�5�X�X�?��O�i�e�v�b�lk������8�'Bl_νZ���EJTn�ly��“��ը�3�=nn�X�E얂��N,�vf~���
�R�M�DK�\FbE�K�+�5�K�t�wO��&��-�ZgG�~ �������T�Q��XǏx�=��z"ב4J�q�qn�D�����.��ВSS��CQ4��ʹT�=q����yK��8�)��seB��1oB���_)�y��
=%1�Շ(<���(�	H;r�X	�
��ѐ�����̆w��4�X�[���5`�ᢡ*�Ry���B��hE9����=�T7h|Іȓ;��R�RY����؉^n���1tj�5���VVMZP+�m*����F�Gɼa����7��i~��Z4goްQYM���h�D���y�~k<���#r$�;���p�\jD���GF�R����jD|�{��1�h|��r||Mɓg��-�X��"ƭ����)�>�S�+-E��m��:�Gյ�眙�Y^�3�}ܨ�"��&@�]��^�x�[�u��{��[j�/–���o,WJAX�w��ꅿ�y-_�R0�VG	x�f/E�A[X5��ER�2z<оk�J� VH#��0�fX�wf݌(����G?B��6�NG��r��>$S��a��b���(E�`<��5�ǩ�-a��lQ�D�x�]�D���P��#%Ȟ�'�bj��7��:,�q�G&��jD�w,�Ǣ�H�c;�$�Q��w�E���ό��2�#
���So"fᖲ��֟6/ϸ�y�Mk�-fd���B����HRN�z���)��v���̈Vz���)�H(Ō�Ž��%a�dҒ�c}j��������	ć��W�GE�kyTk���yW񜅵8�
�p$�hՕf�*�vO��Wg��^�[�+\����F��h-Z���M�m���l\S+�2⌯��deq�	�zjN�ziU�z��ڎ&+"9��XT�cq#�3�T/kQQ<��x��DVרDb�Ħ BU��p����ێ��"F±7�<���hE���_����g�hK�#�K�86U��ߐy5��2v���E/V�sm ��1W$0�-D�:qa|w�W����C9P�A��C����=\��b���:=��l���f��ȫg�6c�ߡ��G�8��yM��Zo㌜������8uޥ�
�o����&�R��߳��klM�ΦQ�"ꇖӓi�A5�^Ӕ@��d�;d�	}��K~4Em稙c��ABO�:�XyN���SK�9��PMk�޶�^O�…,%�X;�E6z���1%D��+s�ɶ��=1rgnF"�
X��kĬ�k6=8�3&8_�} ��W"+N��EC��J�^e���3������n�Nl������n�
Der� �x�ȴ5j����}������S3�c�k���(�:�� ��<�����јut���D�.�iI��X���P{v^A6�U�,��>.Cu�y��T%���*������WPQ&n�F���8�'�f�ɣ!�T|%&?J#_�ȹ�����l�`�y��[Sxna׎[;�i����ȳ;�r��V������Pc)*��3^6��N8�$����
����za�5+W	�5t��W1t��P��#��E�u@e�
�?��4Ӈ���;���-4��Yz�17�D҃��#m蹳�)�t�c]��R�S���/��U4�<e�L(Ao7�q�v��X�k����;X,𡑋����TI�=����k�
l,���)�����L���/A�ſ놥��st�Bv<l�$������$Ds�.yK����8�;2�f���QfdVc�*pT�vG��Y�\���W��b�B��Ҹ�wa�x�w���qНP^�����Zu@
n; ���rT#7I��5��췝�$�d�RͰ�=�?r������_ )�6)�"Y��冮�.HƂ��ޯ�W���Ύ~ﶼ�j2E�G9��L��w�*�Bג�~[a���3�<�y�{��J�+��DAaxy
�]�������{�Q�SD��������R�� SPL�մ��/4Vƿ#Z��������<Z�{W�焿C
&�9�C��.��	('3r^�V��jFܻ�o?�]�
k�G� �s�s� �+v�d�
0���Q��E�������DH�x��,af��a|
lX�]����!�e$Pv��Z⣈�x�	�g�g�.�7��-�v�������x\F���JT�zc��`O�7=��ec�x�]�������㤫�\��Ej�hS���B�����v
9��)e&ZV�̖Q��4�J���v���\\�Wޥ��z�7Z����X�ȅ����!@�q�7���XF��`��)xa���m��؎�p����ɡ��E1�	��m&�7*��ȀSY��a8~pShB9E�'~L=��rA�(��L�+��B�FƷ��[�������[G�=�[�b@{��ɿ5';Y*�!#^$��~��G[s�x�g#Qa�	��t�oy�/^:u����q�bEv"Ν�P#1�$y��4��F��x)
����XU��1����0����+‰l�}���C��Uè����^�aߍ��^~��	�&.}��;�A/@��8�f�-@���#�f��q�@�P�eG˰��
AK�-�� O�b�=}>nݞX�|�L�?�f�7��T֌a�'�� �R�J�IyPW�&��Mu'���y$,�/x����f��li�q��n��nؙU�*v��؏J,A�i?pK�͈d���k���󑬗��C�o���S\�C�
����knM��S,s<=��l(FRp
<)��H��)�޽��k��lm�-�K$�D=@�<c��ж�F
]�?@�"'�x�B��/��c�Y�e�(!zL�,����1�ՇU�ʹ��\D��D����rX��Jp�gc��Dbs�
��Z\�<�x�Cc� ;+���P�4�F�>��8!�,m̀j`8?�i3D9N;>�`@ũ�{���8q��S�y�>??�p���ܽ͠��JG(b�5C-�$-YU�8!;�ga��7p�����f�����JX�[j�͈g�لhٳ��f��
����)Ϝ�%�3�cH�~�,/�5l�+~D��d�]w��A��h�ɾ��$k��T���z�#��-,%G��Ƹ¨sγ�L����z�WkQ�g~�8�u���*�f�tmm#�ub�K���l0
��6�<�B�x��{�T7��BE�����菢�O�Yd��~��nJ����*T@o z�<@���ڰ�
oq��e��j��j��o��g�otD�V��ə��N]�'�9Aiva��~���.���-g�E8?o
{�ιCyo�_���͈T�޺Hn�U�2�Fr��o�	�I�R�{�Y�[fG�GD����c��sa
 ˶��R��&�:1�H�ppv�e��CL��q@i���<#fI��Fc
RiAՂ��&Z�=mg��ֈV�L������%@tHy�i�f1:tF��;f哑6��F�	9X���ML�^�� ��𮲛i5+�r|6"t}M��o��ߍw��nRp�0���E� m�t�&�s|��o�"7`�ݦ�F���Cѡ+5h�QeC
��ε'���--���q��Zĩ�#w��O�4�ݻ��lĨ��Y��p�W	�2�I8N����Z�Y>
��X�2F��DCU�hY���Pg��҆�v&�[ލ�-�=cZ��Hu֏}��	lk��:’�w[[:��&.6�B�8&��m��#��a�h$�%�a_�n�ݨ��#U��2�M�Fnp��]ό�L1�YDY�o��0�虘��x�����A��m��=g�M���CY!�����h9?3-̆.���
/�vzy���4�$Coe�o��Uc�� x�Uz��Y���f�v#2%-I:�Nj��)S�ș^y�$UwL���"j�b��P�kȂ}��R2P�O�r�pܝ�HEJ'�d�2�%f�夐/�ނ�/�j2`)��f���V�����8n��d`q%�1G��3�Q ր��
�����LR�K#�g�WO~M<��<�����?�ZG"��-[6���BQ��O?�~:ܒJ���݈���$�+8���4p!q эl%3����N�����vW�+��/��XS�'�$2����%Vyu�y�lUsdi���(���եѨ��'E����T�FI.J�����h��!hbmz=��kZB��lhe+bg��k]���;x��dך�蒓���R-@	�b�B�5��>몧fo�jh[�8uz6��j��
+<�x#����r[�I�&x.A���Fꦛa���#Q��'��,�p�'���"�_�K?�rC��Y�xۺD8"A��s�0Tt4�����Yu��L�羾�	�,iٳ�`U��jQZ�UnT���Id�L087YW^&ބ@�ے��j�:$*x����p�%�r�FRA�y��u�Pv�#^^�z���Z��a,�DV�Împ���kA��<����b�L���C�7�"@��ԙJ�<���j�7[c|@EȷM��;�Q-�|��AF��:m� �R7允����)GK;�i�Y�]$���`+	�hV�I㫢&	��J��d
W$4th��B�IN	�	B���Ĥ:[���4I����8�~C��Z\�h����s���վo#n��r�w;�fX����hk�j�,��ߡ���ͻ7���K�w��WBq��w��e���h%h�K��u$�|ڪ�Px-uJ�e~a�=����b.+��4��(�'�+דT U�Q.vB���Й�5�W;6�!�g����@O��⸢�g¯�eRi]HlJ��'�t��eY���d��"�0���p;@���:>p�
l���^�����Ydn����ڈ.~q����mA�ZAiۨJ����A�RByoO!�v����x/��:~���ϣ���g��3J[D��ʥ�)~�Xf�u�3�Âb]�]A�b}Ai֠2Q�U	�#9�
���F�c�u��@ߑ  �N[�t	�DAd���gК5{A;ӏ����<��Nlf�R
�S��f��R<��ȫ�]@��ƈ
�=�kt�L�[�6`�iV0A=�l��[ � ��%̀)�8����w�Z�k��n�a��TC+�S�̶�5�\<	0���<��y�-
��W����k!��@/�i';�y���/.U*�k�"b�-�%��MD��F�	�P��}B%39Qė�o+��I�.d}�kwq�]�K��0�l�s�r����B'H�w������ӱ�"J�A�&%Z
�WH9��d�ʢs���t$@;�)bF͛�e/k}��F�\Ƚ�1�9),�w�-nj"o���h%�Wd����&���]���8��Yǣ�/,���
�k�Â�H�Y���ia�F_�H �pAv�h�a�J�E){��aB�R�c�߶}��,�Q�q��T�	�d�	����}js�wC4V�w��a��*:��T{J�Q'��|�F�~<��]E��LQ�2U�v���"p�i��¬��A���%g1�z��B�[�{y���wl��I�q��[o�Ye�4��mϔ�_�`!���M!���o+L\z͸��0���x z�K[.{M��ɩ�(�����Ź��};�za�~Sd~��G�%@
���N�Z�8�ːlJP=�d�3�+���[1e3�H&�.��ҧ����J�1�La�l9��fq�&���Dݼ�����
#'�f�sx�.!��_e&*
�֘u��u\���$])S�IR��]O��
�UwV0I��m�T2nB�BR+;��O+�ж0��4äDLF))��{j"�	���'A���7e��u ���M�@
K2>�&�(������|_�J��ЂNF%:J���5��o���:�Q�5������L!) 7��:sY(q�C�.!9T`5�䂒�'�3��|�����kd�J�1'���p5H�`�aiVo:	P]�3�=	$�jv���v�*��h0c���ld�I��6�E�;hG�'Q��Y<�#k�(X���>~R���_c�m�HLj�\-��+2�U#�!����(�q�9��n�"i�
�R�Qy��biR��w�	{����:���4�9e\b�l|=!t�F?�5�mg7�5]c��*tT�j���)���)����bؽ�ZԼ�π���.��p=�ٓ�=%:�L��21t��Ue\N�,.�X6���Ğ���v6b��w\x$=���u1ũ���k��n���y�]��s��5�B��� �F�����П���Ư�ad�Y�m�H���C[u�x�ô�sRX�ًv���܁�<O��#���+nl"5����F-6��_E��"l�����A�?�R��fϵ�%�^ZU�(cܢ:���!ifȿ_����c���S�!�t�bɩ!�TI�+L�m5R���t���5`%Z�0K�*0v�2�Z0{`�`�+�LDN��5i�K�8��d)�Φ��N���8z���x
���@%��w�v�I��5\�{ZXy)C������3/4��B����8���S��|UO��f���DӴV���6}
���w6V+Ŕ0b
>���UH��t����=��K*����� �űXF-�1��je
=v�٩h��{���
��"�"g~O��[�|K{�P�9m��k2Q^!ݿg1ǃn"hvе�Z��7���[���n���n#$9}��l��{�К��j����}dW������B��5�$󐧖��-dǪ��lD�*/�L2�V_��a`
�x
�!	[k�x�'�Т(���Z��o�Q��BB�IhW�4h����L���)h��I#�V00A�
{�����`��N�K$�ʩ��/	̀Z�L�mڅV���w��	m�s��GFi�~E�8�Q���с]��n��F�$�u�^���9���̻�{�b��2�GZJ�Wъ�F9_���R�[�
>�
k��gtn�DvT��a�ES
��>X��j�:�e�Zr���!�Q™XL{��I� �Y5FKl���he/���4��Q���e2���!R�!�%���<��j�U�ј.�#o��Vi�fe��1�o5��]�u~a���Ir�2%���9.0C*��У��*(�LbI&Id�"�'d�=��(9�ĎCp��K�Qʿ��ى1�2_�E_t{/��f)9h���=���'���OVL��G�wïOn��Gf�1�ܠ�2Hd]�'P�7ͫ�CE���j��4�$ [���2B���J]؀��ѯT�w�T
pW=�F���ff#{�v��t�G���AX�������]�ru�c��7�<_B>���~�̆HE��kTȪ��
"ڰ��-Z�tJ��Q�ab$��_�R�G���7��4` x�0?�[ݲ�G��[�h�c��×��t,��,���q�#XL���K����]m�0K�*�l/�ڧ3�o*kƺD�����7B�7�FI��Y���q�fݕ��&M��
1����z	���_��.S1͑!�k#�e�H��!����-�D��˲�\Վ��Q�oy�X/���Z�9;�V3
4>51�DA���+\�\	�I{/�^��E�G���D{�Th���2Ъp����ϟ���Duq�X���D�cAuv����h�n�$ +������c�k�8�B���v7'/����7�ˑ�({}S[r�#T��fi���M��%?�1K��/n�H�;wQ+��[s�#u�ϰ�-��n�߆�$$�K}
s45y��y��TE�.4Xm(� �0��BUYl���w�K�k����惢të
r�2�?��K���l�,1�D̞*"�s�9=-O�L��U��r�z7t�Z��l�8�#�X%�$���>Ȗhh�$�qfb�:��y��2��	���#���lp6�@�#�Us����Y�.����OkH�lޟ�μ����r�25�%̠��w/*#�Ln]�Է���:6��b)N�է�Ʊ��[S��LY���V��Z�R���j{�3vOM:�,���h��M�W�F$c@�)N� �Rh���YM�3��Z���������Aw��1��-�����۾����Ǐ��k�}l���f+[�s
�!�RG��X�2~G���>>@ڍ59��5��ʷ�$�p��١�;i�ը��UoŧhWg��㼬u�i9w��^���
�W�����¡���7^�S;�j�\OT:�B������D�S=jGq��1����%]��/U�ǡ�Ja��\��,�a���@d!�Hn&����<t�8�Q��$8���)#� �J�;��%u*+��5-�L�,;V�$�]H�Q��-�n,dM)�^
��̦���jN@0֪z��-	A߉���f4�S����ۈS�z�%*�M͆�Zf�fYY1� ��'�O"Ŗ%�v�p6�V���=��D��t�_���.���D
�G{�a�np>.�h�Ӭ��a@r1gj{�u�X%M�TMto�cA��I9�*-*]�P5��0X����h����Ά�!�Y�Ax�n���SG�,�e����{��bMڰ�z<ว�������~������c��N�V��n��HR�9�D���o�A/g=DRI���@���d�=pr��AO��]ϵ���A�϶����:E�c6٬����l��𜖆���?'JruP�0���dV���������p+d[�#|E@���ll����<��#��
m̬tCŜLD�]����<mf
���A�n��`��CV
煲����V�Μ%�Ą��>��d�~��4�zm^�?�;'Vx�ˤ*-�1��ktd2;I�T�;�x������٧n�	���7�:h�ۋ%�PJ�ț"ٜ�Ar�.7q��S�-�+��_��&6�-D���@��oqɇ
=z�>�D<L�O9��ׄ�i]�6�#��ս�����U���A�]�J�43>H����P~'�R��:������O�]�}�A#Z�}���Nr�+0M�����H3�nc��k�ewJ��푙E`�ٽ���G+w���
�q�J'U-��aQ�аvŽ6g'OG|�A��(6�I)u�RP0!I�A�5!N,�"6��|��C��/�j�ټ�16�V{�(EF;��P��d��
	
@���U�l��3���c����)�BU7 �/�.מ�"z�������F��lY�N	����ݑ�Q"	�ezf0��1�d^��>U�N�G>-&脬�]“ ���#��(���L��۩^�9���#�Ǎ�n|���N��C��Q"/�S�L^'��h��d�.Fc��𑑼�
�'�nSK��j������X�)*,�qk�۲
h2�r@�ىNN���lA�ޯˤ>�e�hN�MV:��H�?��;��=���A�h#��\@M�>n{�˭���}���wW�4e��,�G|тP�S���,��(��Q�,E�'�w�MTr�2-��٣r�ֹ)
��Z�f��1G��q���Pp�]����U[6�ƆI��rL��̱>���Z1$`���)�5i�9acfz1�#QhJ�}N͇aW������-�Ѯ\+Ϧ�Ϛk�5�@�h�hN����1�J��.j�� �-�Xc�\DžI�ASa�Y�W-�(IֈEӴ��}�BT��Cr��͞�Ul��B��o���k"�Pż�U�~h��?^Z�m	ǵ����q�_��թ�.�����{9;9����͎��a}u�M̾	G�Vh������~l��m�ٍJ��q�ԅ
7e����J����0U!�کGN�V���l����gz,��#+Gl���?0d���.O�3Mꏒ�Hi�Y�\�G:eߜ:��i���bv$�g���uŁZ)���e�bJ
�, ����N�cdN���f�p����+�L�k��F�E��[a��>���w*�γ�J��:�j;�f����r1�Z�25z������!�I!�J�1�RVN�L��,H(�Z*���b�0�K��Y�BU᷅��JH9���|p��-{K����ڔAe�B��
���F�jM�%�+��A�P���ƳA~%�.w��������1֐I�X�f�%Z0$̮ �ϸ1�,9I�.��2cRsjGea������{!�y+T�����V��{y+K?��{�}���=��ȯW1c)�ںFLY�o��Zm	n�6�L����V�";�C�ȁ��޲r��Ù\��?�yk�>@=D)�j!��*M�%KL�*�z,�ǟw)nQ�6%q�\��W(��[��C
NNvN�f�D�f(qh��C94�-p9x��lO��U�
c0+Zb��5�U����8/	�2��\{�2��b�\�5�N;�B�y���l��'��v�!D�b�I�y�%����w��������x'����~����c{-ͅ=8V�`�"��9������y��e.���,�э�1�c��ws_�j0s��p(���Y��!Oåx�[Z�Do��}x�P�b��)d}I�R5��Z��Z��Ez��~юSj�������|\Ȝ$$rm�Τ�	Pə.9N��t�i#Ә^=�����j*Yl��MȤs�
s�.���{1�M�e�����Lu��u�^�G�{{�WI���]G�im�Չ�K�k,ԋ�
�/��"A]��C�]0܁�q���a� �_@Ӂ��8!�������U٘cn$-x@��-�Ui�HFk�k��i�i��?`65��m6�6�]n\��f�Xk+�g1�ʍa%�½T�YS�.��"�[D��)Y�.]��8�(�d�Ԅo���فY.I��9�V�d��p!����dZ��)*���@Ikr���jC���)����'���+5;���†�3�]a�-�����K��N�g��ք�Q�3��^k臝�`���2|�P�%�xmV&"���\C��]M܇����kM(%}
R6����1S�i�[kU���[3��n�"n�#Nȕ�E���LT�;Ƭ|s-t�Q�m)�Hc�(<UY$��m����1���\oC�kP�arK���o���Y���l�]�v�4�$��"����4e�;��L��U�O|�i���(Tx��ܒUag6�:���v�^���濵�x<�

��f有����Mr��dM���kͮO�BU��p=u��� Ţ��RKs���m�q�2��W=R5�g��d=c���#Q���ۄW��E-d|���Q�څt0�S��]’��*�҉��>��ا�g� )�5��e�ks0eG5h|��p�`v��:k�I�R�RD���ފ��#Qǔ�i'`�p�Ay��]�!)�t7����9�4�%�`JR�1>9F�e�\e'�ь�tF�<���n�fR�:z��:B�I�'h(+ٞ�3C�M��QXr8�^?��
�k��NYd�b��*�(�O6���-.���4�X����R���?��W����=3�~��y>�@Y��L?�㙟{g���J�}��?ͤ�z���||��C>��6#b���K�.�iy4u��AW�Nj�g����s��%�c�j�M�ɚ1i_Po��LJG�x���p;�N�N
�H0]�F�&/��&}*���B�*j3�����p���l�U�N�e����x��d{:�^�3������Mq	F��<@�;F�\m;lB
U�aA�qz|�C]%k�w��_�y�D��T52��i���ҊA���KLA�$�F!�I�+7��0]�C���\������(�����x5��B�Ւ'�^�q�}
��nw��u�u�5�s$;F�l���]VLʀ���+@`Ҁi�
j6e��G"��ט�g(�1ō�2��E]��Pl�~��a"kc���)�+���ڪ^����o��A�{��ʆ��?_�u|���մW���q�q`p%4u:vB?�
>p���Ư�>�7�JA��!�Q]᫝��|�P����$KU�/�N���Lg�{;g�s{;?�M��ܬ�zÞn�&z*d�c�Gb��C�V��m��lc�q��6�'@�*�}�1��Æ��h�U(�Y4�%�b��k��h�z���)Ha��$f9fAYcb����e=�O�)��1R^�x����RU�����k1B`�׼-��%#K1�)��p@��e�S8�!�,4P&�hd�i��%_00�󤺳�Qr^4���f�,6��j�V
�V�:&�{r��/�q����
�
�
�Y�c��\X&L�duovW�+ي�a��|��Lm��֬�#���t�����U��G(�<�����v��֝�q�u�VYkzE�v�ߔ�~ӲF��|Л���7_0���fi�~���	�oZim(��,)0d]eP{?r~e��-V&{�c�r{���~�8�����5┎U��SZ�66��b�7���b��[�Eux�"'�)6�zqF�����35
mٹ!Л����#��
\��ѯ�ݍ|*B��|v�j��CfLbi����9%�pD�P�q"V"r^���W���,KdޣI�2��u���/�*GY�D/�v�Eb�
&ѥ����P�,���Ϲ��|��&[�:��
��J�frb^d�&7�`������,�
��/�I��}F��"�t@$/|�<�<1��XY�Vd����Vι�%?3�e��š��D�ne��{���X�h΃H+QoE|֪�To~*j�Vb�(��+uN�S�)�}��"�ź���ۉ�JiP�:��ݣ��Vo7ٕ�9ݘ�}��Ձ�j|�]�o(JTE�7HG��L:	L�mh���@�P�W{�z=���O�E�N�VSm�m���!H��hb�xd]7%��j�#
��WǡHU)���e���������KY�6�mӌ|j9�x�`סb;l
*1B2�Y�eo2���/ٌ�lfQ�ub�{&-��K!YV]-���9'�ڙCŲ|ezq.�U
�m�(}���P[[�(�L�:�=J-k��
r�K�������8�K�hd�>�M3
��e�n�[�7X\5O2��uzNE74��n�����c8'�&�݁��\�������py���(���2�I��=3��)�(3�_*��/=����/}�4xo������ב4}�1�n)��6�ڵ�hK����u�e!A�L[.�����w��b:���Xu��VW�EA�z��g�Xî�C7��ۈ
���s������j��Q�﷿��g[���9������}��6jI�wg��>�c�.����':�A[�d��4��<�r����������;Q9�E��3��1� �l�l��kt�BFњAJ@��lT��H��Ku�P���0�2{��&�X$�t�0̯Wn�*@Ia��u�p9�@����ˑgm3'�.�_��p�+K�Z|�m�:��%�(�G1
�Trζ����6�����t�Ō�vc�
y�e;M���}DI&��:g��%��KCr��HH=4L}	�T�f�夀��ٓel�����"�p��
ԹԦs��z	/�Y��Y|jr)8�9��s�CF�E����e7�RF~Z�Z��iYK���"[EF)�9�Π��P\X�#����s����'�D��y�B���er�p!���h�|=[�7�6!�9�g;�"/�/��L�H��Ǥ����G�~�ZQ�5����j�p���|�k����u��m�v��(��i�c��R����0&�Pǔ.N��
�-��L�ȹ�f�y���J�H/�cp�`�e�h�=^o��u�Ry��Ŗ����M��v �ڔ:��=���k����r���Edw���)j
���^�_dF�_3�te�^,Ãs�K����%5������%��;�,>�`	����|�6���b�k���N}��K9��K�����]�MoV菴:��`��ݳXٜꣿ��\�]��*�ɿK>7��
e��ȓ��眤y��M)t��ܼ:�Sn���w������:r���R	��R#�!/7�/�E~j�-p����Ֆ���Q�(�1D�Ӄ���]@k��a�/Z1dX��S�ί���]�RO���Ͼм���z}*~��Y�E�*:�~�����
��<���w���+�V-��7�v�2ܲ�Åw���h��g���9�X�b�1>����$���&���݁A�6(���aǦq�#����=xCnF+e\[��L��(�ߠ9禂$v�/����V���^鯂���%�멒s�/��K��B���ޗm��w��ҩ�F��U~�[�uD�'k�4��*Z��6^�E*��!�K6i(��y��z"Qv�z�7n�2JL&=0"	�1��&�R8��v^�B��@�\b�z��m��Pa���+q$���dn[�u��9�3�塘�Ҕh����ޤQd�--���<����
f�t�q��cy�d%?tl��\�..�� �D�j�T�,;_��k��S#rﶪȈe:ia�5m�P���i�]��o��Ȱ������<�ճ�-��9�S��o�]�Ȟ@T���i��44�]��8HcP	tL#��R̔��_�A��|� �m$\&~�6evg� �Mňy�iU�ښ<��X�V��f5`v13M��#�
�\ijJX�V��mgQfF7+��Syve�:�J�\�[��gA^�L6NB�r��$��B6�\/��uJ��Gpʂ���W���F���/�)rç��/4��0<�i2�s�2V1P+���L�����~",�|f��i�⦚V��46��n	]إpJ��֗�I݂6�E�"̔�p8���Өe���L�MԤ/{BF���c o�~4A7���l���L�{RKp6f' <��i�/p~��>��`l
:R���� �#�����ٽ��s��"�ĉ:L���eN����F��Ɂh����MD�1�]�d�|�f=��/v�w�a�����La�Ժ�qa��+�oZN���Ru�(-sl=��T�Z�J:W|��u�R�l�FI�nm���o�Ciiy���0�a�Ћ��A���S�עW�~Z$Ud�v��]t6A �~s�Z��r���.�y�8��YSo�{�[�����r�"�Y��l�/*:Y_�&O�s`�i%��W���k��R�W�}�ע���t�[Y�_���7������D&<玚n֐��F{��?�逹}��D�Ep4�j�GQ�;�$� �X�%|Ha�\}����oi6�=��N���V�D_�3��M�2�
�0g���Nג����P��:�ˀ	}-�
�	�@.�q�F�#5�D���0���aӴK[]ie��{o�1��0<�꧲2RVW��2
��፦0��C�8A�>�8∏m�7��j/Ȱ�W�y%�̆(��7^�鯰���Z);
����D����`���@�[#�A�|0bkjs��p�b-s�G�]�K�`�q�G��n�~��%�|C�B�zOG��
I%�Sv�P���n��]XK���C���[��B6����W���9 �t��:�K�{R~3���ME���*@��Q�dW����?���?��M�v��	���lT�d�.�J��L�{w�#�s��@��%‹l�0��;И���}
GMݨ4���Tͨkf�%�>DF�Ik�W&���=����jT ���2�\�ė�m��m�y���侖�CY�&�p� �.:�Xn��Z:}�Q��kl/����~��'�n��4��qZa����O*���S=Y����C�Q�CЋ�]��j��{��7�tZ[��uK�����
n��;g�5���]�`y��0hMj��~a����Tw܊�T�4z?u�G+�i�q���+0���4�W�{����F�ڴ܍
[�,l�
'�2��I
o���#)T3ʪ1��8�q,j7��au��c�I��x���xc�\h��n����	<4O��W���x�\�ں�������b�6Ts횯�<�
g6����;"�[�91~7H����6U��y"e�!�'����Y�f]-T���f �&-�3<�t
�DCj��)��^Υ���T򅲑6�@��I[�毕U���"�p�.��B���4�jlk7�n�b����r\�c�"�̘��6�8��ֵ��}dȈP�m��p5��Sy�]OB�N-tgk4�28>-���I�E�4%5tlդS"��J-:��6^/s ��E�G��VAI(V6����1�xteY�%��q��nߡ�Ͽ	m����������q'ճ+[9 #X�J���y�8e��!���un�d.7b���(�2/�+ބ�y
�3�Ԇ^���@�������^���!Kw���"�������O���y㚞_&���S�s��v���
����_��7��Gc�����_��Lk��=�u�b�iq�*�нh�4��;i�4݌���"��f�0�#����T��G������Y����q��
���/h��&G��̩�[��W��;lʂxx�PlH�'kp-2�p7C3��2�@�ǭ��H���+ŚꞼ�v��Q���"˪�C�{39�?6�`p(�i�M�� �60&���m<X
�S����R��S�<��;[���� �8Q�+e;�0	��ɩLt��(%T�\���3��t�@E�I��8~e�)�~㜈V>nG����\�D�4����R�kmӭ�M���9�O�i6n2���{_�����@��.�jY?!W��l� &���obL4���#}��ͫ����d֭����\��u$��P>�X���}��%aK/A-Sh���n�fe��25�ٛ�iǖj���	���F�|-6�Z��S��m���3FQ����^g�Yxf{�wZ,��\�r��1��3_]K�j�2�=_�%'Py��.J�a�L�9.d�����Ht�a�0-�fư�:U��ɟC�Ph	���_�
f��Y��S��Bu����Y�o
F#Dd�,Vuue\ͮ�x��(��]NBYiN��ـ�mg����dA��y��j�p
���I^�Q��ҩ��ڰ��i����7��<aZ:~��̪�t�@f��x�A7��
n��Lb�4	{�i2�Q��©æ�j�>�Ҭ��T���§'$z�B���eKR-6W{��`f�7�T��W�]-9n������[٤%�|�ْ+��ZQ�E<��Ǎ}I�b��G�aJD�����T�A�S&�2+�/�?�%���/*E94;V^���0�T@ECY����8�Y��#k
�F6�2uw}�˄B�	5|!Yn�0wL+�f1�t�{�W�����oP̼y����Iɮ���M�!s��[�O80�ɇ�cd(֕��=�XX��G`JR|8
#��������F�/��t�UЎ��Vs)#���?���ME*�z�F�S���Z��SU�$�yT���~78*�S4�P�|�1|,OUe�Sݎ`������!�I�q}�w�<�{����M��l��E������e�Y3�,�K1,kJ�aD!xϮ&��N��O^
�qz�ɗ	�2&��",�Xu4��I�q|æ�p/ݭ�9�N��b$�Ej�VF����bL7p��dY�1�Y(���[Õ�(��(]r^�@�}�hA	:U��]���#φz�>0�WCv>�&�	�U|y�D�}��o���W�A�?H�)b7�kC�¹3f�IC�p���1��bľ�M�GŞ�[�\{v�����������0��|X̥��'��ig��d��O
��e"��{t�����q5ɝ��zhpUk��ў:��xѯy��H�~�?t�s�:8�T3J��s4n�<�bh��ٺp*�:�T��kh#/�'���r�8���b^�F�:����ݘ@���^�%Zt+3��o����y���}�1S��c�
eQ�3Z�[{ʻ����(~p�O(J�|�1-.Lk�9���S�ױ]�P��,w�I7�|��T�
��J[���.nFD�<K�%��9�ܿ��
˳̅s3���j;g��j4�Z��	�0g�4��e��*�
|��Q<\l��4��,�V��Ũ�<��u��r&��(H����@��D��{_}�����M�۶����>��m:���\8l,�̱���Y�(3P|U;�t��&Fc������[��!NG��MRc-k.=�
�ܕƃ��LQx��@�tƘ��y�f������1��ݷW�@�DT��rl�M>g{�y��)�5
}�9��T��#;h�)����%u��M�1J1nZ��c#:�:���%jvS��7g��}ً�^��mn�֞���`E��_ÅC���=��ϋ�,�xfF���c��p"M�Z�f��i��O�+/-:t%"[~�f�U[�2M�(0[٘�ᓝ���
uM�R9�D���.���`�I3��1�j�B�Ɓ\陖���C��7���t��[�醒���!`�Y}ucz�e�T���׉�N�W@��:W�]�P�>�o��IZ�,�@,_|��LR���B )e�AY,Ҫ�Y��ޔ��5�Wa���������ec���3U+
]1�TU�#@��3�,����@����<��~�#�5����p���G��)���:3��ۿ3���Y�1�+�?�U^��R�FlH��Y����έb���u��80�Ua��~6%'��837y�e��u�fπ�GVU�F�3V����f��k��t+}s��I2hJCh�m����c�77��gIs�C�e*u���d�}
-�O:`+gp[��l��:SQm�r���+z�n2��5�P��M�}oo`�h�O	��00�V�	T�W�J>w�O�4�"�zW�i�-.<�Tқ�TˋU_`�Or�A!�&�,�ë`��q�dP#��(�	���x��{�[��$�c�C��
����N�mI�/�%�bX8G����ºj%/em����e�,l��Y38��:�6�˜}��H�0^WA�*;������t\t тh�T+�z/��C�Kg��r�q��Rmp�����0�����߳O�4��y��l���_� A?_J�Q�fАT�2������A�&�/���\��-[����n4:)+�m�ݔ���e#�dR2�&%Ǡ�B��{�`<	&S�RfSo-q�ve-+���yq�^�qv�w�!$��TT���v�}�Ҡ�(���'U�I�f[O��x���Xx�g~���ں�W�v��n1ށl���=�N����ȽX���ᴶ���`fy5�J�\��	3VǺ'>e��f
��w����p�0� vS����ř��iac0u�=��9z���d^�-���%�'0R����è�2���b������ُ��'ۂi+)��&���v�UK~�&ł>�րplU���y���"M/��8<��ڷ�Ns��ɞT���X�ʑ�J_k�N:)�@�hu�ݷd�@��z6���7{��t�j��}��2��@e��ܞ�qȰ�Q�F��*uD�?�����l�h�&l��Pë�4�M���Jo>ԙ~�h`Y�f<Na�;\6�KRh�en`������>�Xǩ\����:�2Lj;hz��d�E�顣��%�M�H��K8��,��ddW�1�����.��>d��9�2C!��{�ؗբ�t��J�u���=~/��b����U�#�p8-{v��x>e�i.>4Q�Ҋ���R{��eмf/�]<X�<�X$�T�H/m��e8�׀�<�V�Mh��2�y%J� ��7�U~�m��{o�e��^z�q�0���5�bt�3%��,:�	[��Z���c*�Z�gea+�E\K�4�2��_��y���Լ�RG*�Sț��Q�ȏ�� ���Ϟ�S�&��{V�P����x�8�S����~���/��U�}��u�]ݳ���?�㭧��j�V�z�f�����j���{[�8��[ҮS~��w�x�k����hI�Q�~x��(Y�JBdAb�RL��1����S ���d�TA�
~�;����3�"y
_u���	���%����oéx�D��ҙ�z�w�J���h����yP��dNi��_|�]���uD��
�:!�K�
�����)Ƶ5Z�{v��}��9
��o{|t��2������㩬�F�\�4�(�	3�j0���oV
��������*�g���C�41��l�_"��ֆ��G�
I��S|���z�j~ǩ1�G����#�v@��rG�A�J��|��CG�}�1q,R,��j��mN(8P�s���C{�iҗ`>`���R{=�X�3�|��ؐ��p��|V����z�FKr
y�j8�NG��fe�!��b� g�m��qws�
��@=Q�d7�_�8�h5R��h��b0�Q?�����:�\�Q��B�C���BW�KQQ�4�4u,��O��~�5�7^bLO�V�y΍�e��T��e%'eyJ+˄��|̦�{�����ᮋoؾ��
��������mR��*]�i���gjD�P1m,3)�"�����n��,K��[΍�f���n����jֳ�"�
�6WF�5A>�,�I8��I�3�*���{=_�Fk#�8Ʋ}���<��C�N�R1L��%�
|�-��Jg����μin޼����܀-��F�vN�{B�g޻ܶ�%e�:�
�''ai������Vo��ISO���%�P�h��I[u���%���1ā]��-�����"HIN���}�t��ArA���<�,-�4���\�����َ������p2�n<z=�uy����礷8���N��f� ��e�
8�8E�|�ڣ3ھ�yR`�E)Wz祂N橲v�ͽlDF`���c�Ȩl�?�jQ9 cT��%%�D�W�;����$ ܤ�@�
l=��u��b��L�X�_
�gj�/�ꚳM�`�Q�|���6f�yjw��89lN�����Q>P�a�&��Ğ���Í}�	�y~�U��	�CeـI�u�Sg��Ox�`"ޱ��w�9��������<i4��w�f3�v���^C�b����Ql��;Amo�ֵ��U3���ZǖV˹��ܷ{Q$�A�Q�����}͊�+��l.(�htA)n����.��qHӊӲ��4T٬�}	*���v�nZ�pB	1Y(�'>������2��t��.�����ާ	|���>����x,�fD�AI��f�sJL���l��W(���<)�������򤂤r٥٦�g��Z\�<7��"1)���/��62nN���`����8�g�}��[����;hv��1*��F�	��r4f��Z�[�֭v�N-�d�ԗC�Y/��󀍻�p�G��a�tZ�O��
5*Ds�jI=Y�i�b��>^ʜާU��c�s��u���1�Tm���]�8��~(�5��CS����#!D�$Ӭ��үm!�ڠ����fOEө"���K��>���ۏ���#Ɍ�~mZ��خ�O�$��cy��^��ǧ\��l�qVd�Qc��]
�;���,
���g01��`;�u��%s!a/�?gr_,hg	��@�e�T��ǯ�Ӫw�ܡ%�~�1�pN�{���܈]'B�4\�I���UA�R7CđQ��Ȣ��	a�V�H̯�\p-@@�S����G$��T;/��cȐ���g�9�H�V��x�h�W
l_�D'#�l]�c���	9]�	Ʌ�lb�0�YYkɛM��5=Ü��U�2#ǁ6�ʣFGl���Yqo�����;����T�R��h�hj����|<^O)��]YvX�萛�s�_mG���<^������D)7FS�eWwv��lY�H�ZH[׹[���Q�tu�:�1n�c��o����?۾��H�Ȼ�K��
~=��#lj���C1$��1����pv1��g�����Z�S�6��c�x��j��ʛQo�:շ��S׸��2cNn�x�,�=o^��L���X�\.ŕ�%@��2�aM_��4��,e���
�VmvyK�#�oW��+���r9���o����e���2G-�w�v�i��)L���6���Ȥ����S�� :�SP��z/G�`OY��kYH��d�e�լ˒�6�#l��8��6ffL�9cbE�J6��eY�cd�ҸBz�6t1�q1�͵T�h���^sOC�
�]��`	���%���Br����ATMP�ox�,�8��v���5��E>wq*��c���0���_M�!�F:�/oXe	Z1ݨ���9�գ�������|>G�4��V�]�������:
39��C��:����S��+��M�T�7Oƒ߆�M���o_�jմx���1uɤ�D9�m�ޤ�yq;�#�Ff
1��Q[.�T|�k��Kt{��d+O�۷���*������0��}C�H�}T�\�2��ܫb���q��_؋6q���k�’/W>c��TNk�Ɏ��X�����ZN#i������)\���.�Lx����ާ������Ab�{���^�hs
M�`�����\��ܠ.Е���P[��^��QP;)W�M�y����ҝ�'C)�㔴��t�ڔ�a�j�p@r?���Nd�?Sɯ�S�:r�|�����?�?�������5"Ѩ8��M��m;��v��Ea���
�g��
�P�IQX#�n�X��Q��Sf��=�@$b�X᷎�Y'�ʻ#�����g/!������Jʙu#���,�o��/��Y.����oN+}~������!�v:��dZ'�\j̉ه�[�&N�f+�N�p�:��
[1��B�i᱾CIy-./���|s`���r1�	o�<i�1�c�V�fW&o>�f��V2�����ʇ�3e�;)�:ڛ��CxT����0����(�bw1p�)o|��"�9�9 ��5�{Una��xi���[�<tk(U������f:��Կ	�*���٘��+UE�{r�HBo��[}�rR�_��I����;0�%T�j;>ub��ߏ?���~��|�<?[V����M�[U��
���v�x���DC��A���ުM5��qp����ː��p����X�O_��eV49��x��Ik$�/bZ2���: |j��,�s���o���ѭ8q�κ�ڣ�o�e�i2@����/��08�Ł�/�SW��d�_&^T�WW��J���*ّz�cQ�K�=4�9�Ѫ�����W~_�O� �
Fe�K��C�*��+7����T��dP`%��R&�?F�/��o���ag��&�u�|}���jz�{�f�}rw�I)(?�'��)��5��izC�轢 (��Tm#
Ӳ�.g�I0|�`���BQ	r�p\{�W���Kb����9Y��g��ŰZ_����������۫i�T�����9�՟�?�<~��CG��sZU�.s�(0v�\UߪrK�"��m�U�sA#���,ez˒��%�����}1�QlZ\
i��W?��J�7����cI1�7~)Z�:�mjL6�2����p=��-ʼ'�y��_,��+r���R�\�O����m���D[���h|���E2k����
��*/2�t�Z&�.�m�O�fMKK��]�$�*@'��X�n��Ȋl쌳�L4���9�C7�s�����Kq9�*���jzx�$bW�W;�.�n�e$�C{�%�a�@�|%P*C��'���5��S^g�}l�)ğ��R�TM���*{	ß��9���,�Jq36��g����_��s��ُ��������������������N��w�qL�m��,�ߴС�@u��wzq�ղ9H/�k�,�{����So�ӻ����A�M5YT��\|c3u5�5Y��/vh�P��;�V�)��I���ɳ��U���nX�b��0]F����tq5���~T�?r�|��dP�{���y0��\�ɲ�W���E���ͱ��\�Ȭ�X��
O�CX�L�U�y�uHJ̧C2pn݉�}-��"��R��y��^obh�-�e螗99�f��X���\�[�9��)-өdo��tP�l2��Q�L�v�����ƦE�0�]�
b�Ĭ��͹rBx٤B�' =�.N�.,ʋM� �!H3u��X�4h}��X���Y��<��?O�������Q��L?_�L��1�����]�dF� bBSud�h	�IȦnt��]C���eڌ��ꚗyVY�8���E�ص/\!0�'���1�y�MII��;Ϲ=<�ʭ��#h�_�B^El_����9�#�Zҿ��[�O�r1S0���M��h���5��?6mL���� b@6�C:�w;�ٸ‹�j�;���ՙ~j{$�(<Y�}s��aQ|��]�Ddk���3dE��u���Y��r4��ڟ�ƌN�:~�qS�F�Mn5�g��"�0ݐ7w�孨um��+����`c
��yPMǙAO�J
ɛ;H���"۶둢0��o]6���_;ф����9���~�"��{e�P����I߻�ï�y�׫}�����?����(��N�.T�[��Fm�{��NǡIJ��G�����r�L��ݷ^�b�'w��$\�]����s�{��r�2�ڞ������8��mp�6��}��X)�/:u��D�c�	ԯ�\�)�l����Q�e����t��%B���z�Q.�ն��O��R��Ƶ���fF���[��O�Z�_�7gc���軗 �9l��}�իpw_٩ ��BM�쳾�#�mX���>?����b�Qj���L�2�/��9��L�e�[L�nh�&��
0�y���څ.�:Z�65a���ba��e�a���n���t����
����^�͎���C�g{�<�������_�j��j�U�%�e���v˻Ny�c���Q����k���/XEC:Wd�wetl�iΩ��YmfR��s]C�J�0�[�����X�M�kwB�y�L��sQV��wfA����c�Νv-.4+yK}�6ڮ=�|	y�];̺Q٧*\�b�U�Y�6����}ϋ%����5�]�X-�IT9�'`�ԍY�Ֆ����ċ���Oᛦ�^+r�QEh:t�4�(b#�c �)����$��y���F�A��<Q�	H���6���#1Ix�&��''�z�9�}
��sq>���EXHթlX����^���=&D(a�z�[�ι����OH�9�Ĭ@k�NwH��Jj.�oc�79���z���=W�9mO��
/*�P5(vC���AH5����0���_r�:����z~�ϣ>[>Si�!2ċ��1���~:֣��+���0�~j���Y	CU7k�wN�I>;��s�Q��Q(-��VЕpZ[z]f�-\�C֗�
w_<�R��̊E+rё$���i�m��'l�t��JlH^�4
�@�f�Α\�ڐo��z�d�P��|��,�4��]�RUg��)6[TL%�zW;j��<R�X0��|�1Ûz���[.V�5�&:	�'>�*\�gVnH�?.�{��]�c}�
��t�����'��g���)[\�VY3eH!�^��i1�Y��ƌIv��n!�P�XҜ���v8g]N�2����ݞ,���}��s���jt���f�I�&���aY��P(�Ѓ����J?�o��vXa�R!28�3�����:'/{o��[k��S
Jv�4��s�d��.�}+�WC��5Z��v���K{X�q�A7���	���~�t蘦�{<�\q�an9�j>��.P�vT�zt,2΍rv�qzH��/�<���|�fy8M��~y��$ٗ땳�R�z��I0��$R>��I���g3�`�}-0��J����rcH5^\�L4w[�~[ӜТZ��9�?�6�5�z�G�
5�7i���Y��%i�o�qj^�����\u7hg%їm����E���,�9�Xհ�n��Ͳ�BYְ]���m��G�Se��	����?���c��Pj�����-_��Y0Zs��KCb��ͥk�kZH�k��[�R݃o+X�K&/J}��@���ȖPQ[�u��~:�<Л\�.HB��c���R$��?�f���5��O�7�JO��e5ͪDz���UV^�i���"â�~{
�h,���GS� /W����9���d�W�W��ϸ�N�R?ծ���.�y�K�Hzur�Lw�)
O��4��,�UYl���TM�S��M�S�D趸<)7gOO
�UDc�V�Ds�ДP��'.�&��W��f
�yl=�6w���R����l(�~��eu�>k���U����+וڭ7�e�ԦW^k�ʗ����S�H/�;8�6�*.W�&%X��ؕ��Y�.q�6����be�*�\(x.�?�P���5���Ѕ���7�߲�S_uC\�ׁe�lY����j��� O�Q����4E�*G)&%�d�Zof��
��s����@M�R�%lߠQۚ	3�97�9�~��Ap��*z�ڼ�lN�/�"��pn|O'�l6�D��?5@R09�˖�⍦5��Η�Rm�3V16n�*E�D*h�e�Z�</�<ϭ�
X�ۺ�z4��u�(�H��tw_�"�y~x8����T��-<A���~�DdH�@��zu=���V��-�։���e�4��m�t��UL��=u�i�J��&�_�X3�[N�����؞���fLF�6��[=��b��f��u�eY���.�H�2�|�x�⼕ցغ�,��o�Z��4�A禃4��$oVD62�k�6��b��
/l�c��V�k �
��UǮ�i�:��x׭�\����o;ݖ�z}xB
,,U:ۚ��1kƾ�.��!o}O�5�����T�D¤)������5tQ 6��dpc�N���3��B]83w����E�6�H�ќ3^(��y�9]@ �BҺ(�lV��u0^�^MҡԇR¹� �T{p���!���BӠV��:�Z��V:[
{�ɩj+
��D�?�!��J��q����i�;�HC��1�C�&?C
�Z�w��AwP��\]tJ�x�������D��Å	�KQsN�)�eI��l(�c�c�r��$��S�7bԶAj�T\���W�#�vs��_pQ�=R`n�k޾y�om�|Y�=��HRᕭ	��`����~�~]D2���P^�.�:����
%��o|xm�\t�j\3�����.s����cW��)�&Qm�5/9D���4i[��-����V���j���Ę�;o��܀/4:i<B����ўŻ�������6f�Y�H�jײ����]���:K��I
y���`��\���[I�j�sʝ��%�+��ݷ�
Cv��X�ڲ��3��f�3J��(o<��ʊ���:����1�g7��>�.u�28�&�7G"?t���}��ࠋ�H�wap�V��A�C����@�nP!Re�%�'(U;�ޙ^���u٫P��GW�N�sM��f�o핔GK�bY�*KU!��ZhA���X'��R$}�Xq��m�u�e[�]�=������r�������YaG&���N��_�g�>���S?�)�ˏeu�,���W��j�WuifJ�K���Ƥ!:#���-,e��t�:y�U���~���w_":D��R��70�X��	���y\�o<��]5.�몍Lt@h���f$��u�KB�B�au�g���un�Kc���-��I���2�\!\����=��B���(Um�]3o7vЬ �D�ə��G��~t!��)��5o�_8�US�-��1�Ǖ�by�"X4��v�L��Ѡ������6ٛ��a��3�>t�n�l�%��~ƛ����}��ݡ�����a3J�����'@Uڙ+�\���j	[7�juj�<O�bpV|����V"��;(��P��Q����������$^V�&��U��*���fHs,�+AI[�Q����#:��}]R��Ŕ06J����/�}�YGo5Ti���>�m��m��}�KM�
���p8Tx�h�
��,�'����ͮ�K�0���
��h��o������Q�8m��뚨_�­���*6�,4B�����ş��������>)W�Tŭ��N�'��A�Mpb��r4!)���1O[�^uX�L#գU�Lݡԧ7aJ�}��iCh��{_KDzA�lt.
�ʆ�O��jefuo���/�&uխ`+���g�V[q�ڶ���آ(<cSXV�;��sI�酜���*-V�֏�NbDY$?�u=���p	C�7w:�q�46�z%x�3P���KB��|�&��Z�y4���j��fY-����M;����&��Oj��*-�[����y�H#�HL�yB�iG7���
��uPl%F3�hM8��4�q�h�w]+-*�@槷/��K�*��ۛ���rf������Dc�"��w�K�v[p���y���ϫE�e�m��(S��9��u��ݭ
�Z\8ɹ�f�y>�܌�@��U���RH��cZ�i��c� +>A?�\)����z�a]�+����,vJ��P{+z�H5n���7�V;�(GJ��NY͕K��j���Y�e�n���k�7-�ml^T]���J�/��ı��\(�|5�@7�'Q��W�Q�Vl����в�V���.�Jb�T�}��.EG*kPd=Hq)'����3$���!-��>�t�,��e.cYR7�y�Nf�;H�X�T���0�y4d�:e=s�c�S�DbW����f|�.(0��9��M�q
�����0_�I���v��J5+��J�mW�|�*�(˖S����b�8~#�4��^�p�F]�����[��o��`�Ѭ1=����*�J�	M1d+ܽ�q�%Ǜ�R�2���Rя'��^ce15�mx�k�F7����������:]��뮜ĩm�J\�,��{r���׎��YG���F��(��Yq!�p���'7����T�s�fO��.�lxpe�����\y�Bn�8�Aem:��0�ri,Y�<]e��?�7&CUP�v��
��ɀ�
6�Ypam���uT�8��U�km��nU����lXsȅ|/o�xn�
�x$��+���������A�>	Z��Q��`>���H}X��y��KC$bKM��fr�s�WϼT�+�R���5�z�O�����O޴i�:VK^�����YBs�(
DZ]�/�U����\�3s@�D��Ҭ
�`�y��8���H��6�䵒F�@��Ջ@�tl6d�d���y��w��v�
��:��^�f���v�9���X��sŷU�*_�7�������NRc}�xm�\���(�*]э�%e��	�_U��s�:�1PjMj"'�k�\�E���߼�o����7�y�Z��Ϊ�HV�fm�hE˪���5�dMXV��ŽJ�&Ϥ����+��\T`�`�k�Y6R�M�Z{W��uzl���]�c���ڢ�+*�
w�zlͲk�F���?0���@��~7`c8�m�/U*�訊B���U7ɗa��l�l~���M��KhBr����вB�����C���;���pTG��ȓ�'DX
����d�T�Ʀalg��u��r�w�+Y�}���B�^e�u!˔�|��q�|kӴi��f���:5�P`�pc`�߮k��u��j�#J�n�¾\���4U�P�mj���U�=����:5@�%[��ZЙ<;�U�a���yW�l��,'�+�T��#5���k�1�<�����4i�Vi�)�7�3pTy��,
�.�ͫ�Q�'
��*�a�&y��0g4���-��t~��G?���J�Y��e%P�&b���RX�rf�S�T���)QrC}�܇N�Q�M��v�JI`-��ؗM�J�yڌ�
��@���o�^�7�sW7�VG�r!sV8��P����cJ��p�������JM�)��bq�	1�U҂��	�!�V��P��Mw}��2�yɋ:�G �{��(f�	�j����ߌH�$Z*�"!��`a��Ae)L�zQ�*{q"�C�G��ā�G��Pk^�ͮҤ��l������[g�<�ƻ�7�\�
����	U�j�H�+�ff�v�7�o7H���]���ݷVm���Ҹà��(��tֱ�9��3LX�5��_*��u����k�d�����v�j�,�2�utŴr&�fM�*�c�R=�@�ݱ6:��%Rm�U*�6��i4�#�2�{d#&�'�"�u����������7T�J�������+ɯ�A��Q�M76�I�ff�%n�܊�)�!�?�OMQK� o��b ��1 �ʻ*Ծ)$ֳ�
r�+����[��+��X�N*��WN�6�:���f؍?�ނm����6�j{�z=���#|،�m��h��`�5F��4�4"c
>���ғFl��ɨ�[ta�־�����S@*y����jfW5�!�5�9�����ʽ�p���.�Dm}i�d�_O�oHϘ���/�ꍬ����m���o�6���h���C�{��6gk�Ƕ�k��#-�C��,�����[����b�y0:��r�j��
ш��zi�ˢU�|w&������V[!7氐]�}��WS+H�X��B�fd�KFn�"F`ƈ�/7i���ͭ>��9H��9�0���^�P���]Sx�eSj.�Z�`K�X@	�Dݥ�u�Q(2梫[��v�mJ���`ov̹�?Y��:[mߥm
��h%���j���3l���b�[+4�lj6��[�6�MZ�20T�> �~�b�Vɠ2���N��k[��$�8ʤg(�T�@R�F(f�V7Kܑ:�Gl�պ��
|X�a�T�<��C�4L�F]�0B֠B)|0
�8��
�ד7��L#[]e����X�
���b�^J�����U�r����k)���W	�߲��.3��Ǻ`x�#.��"M���<#���P���k����f���`���F]w�{[	j�������HU�z������.�RdE�U�Oo���>��U��ڿX��#Y>T�<��{�XT��U�t`�E�M�`� ���;�C7�etf���֣%�ӊ�]�편������=�o
D�wʅe�k�"�b��[�3�%�<�Sp�(��n�7�-[m���m��V��̏D�Mh�D�P4Q{i�T��Uhk��6�=ͯ:���O�U��A�E���w�UTX��i�婓�K�+f�چJ�Z(�*K��ƈx�:�}�Z>��$�I��Y2ڇ>i�&�e%�A��f;
�R�b�8�@Ǯm6U�8].!�=���թ��^5HF3�i*$�hj/=�:#��mvSU�¹[��6�n����h�5m3zdӾ]�n�8Ԋ���A�n�璋�:��Ua�����g7��i��EV�IN:a��]�n������e�p�g	�Ʌ^��~M�'��i3ګ$��4���Ɂ4�z�5�W��J�j�j�$G.OdTXm:�Ƿ�F���2���\��<��:�sn��/wV�`��r+�Вޏ9K^�sLA�2CZ���S�釹>�&�L�*�5`7t^Gy͘W�-;0E�S=!;�����p�:2�����7é-��^`�:
0�gCO�2�<�PU��n�u#æD��JW%�ʳ�g{-��~:�~���
Ikz[(\1�Ŷ���z1�T�R�ںU��c:L]rz��G���`�j�v&R�-�4Ӈ��ò��L'�r��nCM��D�C�:�¶��N��{��km\M�lT�����)��U�F��������
��1��xT�6m��ѡ����#��fs)���eC�'�w���2S��U��q�������k�E�Xt��Z)�8K��B)�mDu�K��˪F����J���]���B�xԒ�4��͛����V��L��fs��E��)9�p�9i�l�.k�����Wb
�����:eE�8���Z��4C��3r��m|�/_�,v�_Vߏm���˭�����(����<���FN����^i� �z��u��}u
��V�+W0�Y���foi��t5iN�'l����ɛ�&Z�2�J2J�X�#�
��}<����Y#SX7�=�\����e��l�~�&7��AW��ݭ�=ᴠ�΁��l��h�A�
��V@�+�D~[Z�ǺXA�_i3���]�_6G�~_�;�_�+�ͷ�:�5Zym~�v��o�O+0y[!6�v�b>�t�o�����b\m���-�JEZ�-U����)�IO(�D*��m�z[XӼ��^��$
˨<$��.Ka�������8w�EDâR�``�P8M.^�;�k�`[+CEl���f>�c%��g.�5���#F���D�o�LJ��į��)M!���y�������MI�ۛ�!z�4��E�Z�4�T;Ps��r;47�lo�-_'�'T6?.�d�
<���B}�U��Z���a�k�i�'
X�u!O�m�X=_��I�q�
���dV�`A+�lp�.$�q%���zF��o;!�
A�e@�MɼE���ҍn�K��-�Ņ�=�yR%b���5�I+�{B#f���aA��@��^{�>��`���"��ZQ�q��w�,*X�Q���������Rq5��,;<>ϼ��7��($b�J���n�g�6�4����j�~de�[k�rs���|��Ծ.a4{�l��
wis�Ғ��-Tg���̜��n-o�}]rUҡ'S�.r3�&`r&tlG��8�7	�UvUL�Wlr��A�I��
*5��a���Β�w6�H����2w�6L�EofӛU%RP��~V꘢J?	4Z�f]H��pO2��y������Z�
x���˒�ID��i9S���u��V|Ӣ����w��5g�W��Z�\����)AUI�`d��S�����<U��n%��)r�k#��$AO᭽m�~�Z�!Bi�W�ų&K�h86)1���i��a]��1�>�Ŧ2�"u+������oA�uf6I�����g BG�"SלE�
Q�/\:��[�?c"���$W	����8j-ъ_�~VֆJ��:���e�vmxN?5?�
~h����z6����ŚD��߂��5�͏�3�v�c���s�b��۰�y`��7�
p��]��4�t3m��>�0K�U�����g����˸����xuA�Fr��f3�k�)��%+)���/$��6ᜋ����
HQRu@�O�ZHj���V^M��g;�s�"�G���F�u@�/�+s�T�`�"$/Nr������%����4������������WC��I=Z�ʛc����������i�k�|�\Y��1�h.��}�p�k{	��j��A�d9��۶;��|�Xߢ5C���h�"*��L��:��b:.`�+�b�j��
C��c�CU6��JvmU�[�6k�.���1����E����Q�*��I��J8B_��n*�PO��4a�>���ѹSON3�]\�n>AA�����ɬ�C�ؐw ���׮
�NR�
e
�<nRіG
cR.)Ê�Xu�o�4)������*������i���=>�W�h	�4�:<o���bge���we��w�׫T]�o�ޞ��f���-�ȵ��j~Iz���99�/[�%2݃K+�-����D�e���X֘<6�ړ܇�u�4�P���E�9�p����(��-4T��>N��=ҥ��+|��*�&T�pO��Uq�ӆU:m�ы�]�Sz1E��EmX6��G��J7�ɦ4��B����9��F���0��P7��.R!��X��S[O��E
�
��82�o�g�m�>���Z^T��z_�C�r���1��	]��[�V9�����Z�T]q5��X�J�J�*>r}���L�D�n����MyD��%��Zi��%wv�>��N�Gwv~��=0�-�Y�쌋��W�m����r�n�׿�h�:�3{A4�@�HI�^�\�W*}�ߐ.t�u�V��7�r�E��j�r�K�L�̭
�r*eՊSə>�q%����ZƙG�#u�f�jR|�p]W�@��0"c�3�P,3�.Hi$B�(F���ůUe/�īZ�.O;[<��0{�D��L��:��)�G���]D���\�ե-��rf�'G�m��^����N�d�T����@����X�,���;�jC߫~\dĜR�ϑ�,J���&R:�6|W��R+u����
N����6.��tw7(�C��g�TG�<��F�j.�**>��}cU|7 #M�b;�6�
���{F�|��� q!7�wmK��‚5e[]d��)�M�ڃj��M��u�����\��5��2��Q竤>��
�
/D
t�7� �M+s�p�Ыqv�sM��GR��vC?t2��n��f���O��nzl�������+��l��Ȗ����]j�ܥ-˺��VkR�0��$�ܴ��6�q�w��33�"uϵX�22��/g��}�>L�+8�I�ѫ�K��4bV� ��6�hcq�q5W�����8�^��v)L=�)M� j�}��T�5�>�����S>�Nײ�H��p�.�����d�������q����OP�mPc��,$6�-��+Л���2��͇'��X� �{�A��4�=	&����P[��[�R��t��V3{�� ���q�J�MF�d�h���o�^��Ŀ�l�=�ż�#ج}ʅ�Z]��8��k��=f'p�4tI�
_!1f��L��j���*��4���Q��v���Bc�Wݬ�k�#�����U��)��
��q��*�E��w>�Q2��w��{��($c��Tw�i�\�e)��ܵY�|���eQj���{W��mG�x<2�k����ໄRV�W��M͍����b��#t�Q�p+E�@M�tQ�*D�Ks&����gߨ�e}=y�f����`�eQ;�o3ίˀ�P��DZ�^9��T�r>�S.��Z��zu�a�"^�-�<񹨕V��	�����%fa<jq~n�TῥeU�hs�Փ�
����N��܊|/���w�*��b�'k�S��WΪM�Sp�R2�i�%��T����1�uv`�
W�l�G��n�VX�1�(*5�����#6�3�Y���:��s�/X��S��;� �=�ϕ��"r�\�Uӆ�������O�2<v?�Ǎb�fx�]�$֮�>��-
�el�^]���66�
˙�_	϶X��B�j��;I���IES�"�ݓ����'9$�]���XW�p�?��4t�p���4��T|a�R���
�՝�hAQ�ֲ�"�*��鴭���m�v�,_��ո�1O\E V�^�o�7�R�uVCe�$`A�f�q����y���(��=I�+
�fbq�ܮ?&����5ͼ�	2��dD�.�U�^r�h	��6N���zB��;��!Q�%��Oe!?����k��r�Xq�Oz���:�5�|��j������:�P��Mt��/�M���K��I)Z���.�5��a�E�t��RުJ�]0<D<!If�G1i�=�1����m���j�SM�H
W�����w�S;�%G�$U���e_�-;�4����U�U%�����5��d���Y$K���
�r8|��=�\��K�m�����c����O��#Re�7���,!��{�L絵U7o�N�z>$*��좙SӲ����� 7���1�G+•!O��2
����hu�������LSR)~�LR�y'7�����aU�.3W*�ߨ�R���*��Mk�m�s6��D���jX����I��QX��_�	*���M�V3z&٪�2��&I�����`_�� ɹ�uWeEvl�Q�Q�]�������|9�� ���x�U��RZJ�qk��M�V̬
�V�4�c����c��yY�u����U�|Q�b�2)����]V�. &Љ�[����k�čGR\�S"["L=S��ȏ��������X��FN�`���B*e	��K���!������-d;�`5���a�Zl��B+d|c
g�nX���h�UȺ�jT�O/I��s7[��0v�ׂ���5*�l@�����1�s�[u)�`�S��5غ{C�j�y��,�F�#{���1��^LS����&o�q���Tw���U�ȥ��Q�d��6���4Z@�������	�8���>󬎕���e�cV�����c��j�����]7lWU�*���HI3:��8�Жi.=}��t^z`�:�z���&aƝ5�_�V"��e��l�{�v~4�g�w��]�kTj�O����0����6D��Jԭ��7�R9����dY��=ɐ���V�qn�7G�HOLO����c��1 We6s
k@>Jj5�M!'�s���{�cF����G�NUW�Rc��P�n��>��u��m�l�.ďV�޻dm�P�_�I�a����m�o�3�]�1�͢��[���}��]j���65��sв��/Ԋ��XX�Kg��F���2:ZMs�-Ҫ�t�;,��*�WU{-�d�
�Be�_�(�څg�+����֭e�4�
�f��5�͚����A]5�ݤ*��WMow�_U?м�(�o(�D�ɘ�w�;���ю����-�(g�"\�N;�	$�ԕ>W�,�b5::b��H�a��Z�Y��O-Ct:=eO ����)^��c�=�4͛���)�O۲
�7��9�(�惮�Y*�(��mK�=��6Xń�PD
XNʤqN�T��C���.�4]�nCU[�\�8���Nޗ��
�C���uK�%��׋e:�������W��
E�Bj�ӗ�g���d�I����4�.ڛ��A����2S2���=.�|!"�{�R���7�A�|`v���Տ�<k�!�*�
1����
�z&ht��\a��0�WlN��y����y���pN�E��-�NM���������)�����]8ㅢ�e`���f�V�ѳNj=����y����,�7������P�fm�����ӈБ���)%�n��].S�
%֌�X7���W㹬��[��&�/U�G1ut�š��{ �y�
�cS��(���KR�F,6�TI�m�v$%�0Bj��y
}�a��1�1!�v;���9�8�2�Ya��]0��e�*a�bv�ܟ�n7�w�zչ
��!�����F���o��̆6�%��}�fs.��	��^l�
J�J�RӺo�-4�}+Bp�"�n)�
�]z�fz}�tE��AE2�v�W{-_�u��l�t)@m{l���7�
e	��7��.<�إ��3�uA��|�<O���ԣ%�!T�~��#n�.j�f��ZL�:f��Pm1�Ej�lZAX"uP`ɷ�[���]`V
����9ttXTc�j@�L|kR;U�I���)\dV����I��mD��������R���a����jMo4N\~��4���J�3�>��7�p�6�\'��4{I���
U��@(�OH�����N��׳�f��k����,�������TKg�ޯʮr�iPk�|��As!|ԩ��"�D뭁{[3�%_��Y�ּ��*(��Oh6����C?�����<k�O7N��"�/�
�Q�<�Y�q2�7��L�Ct^=}P�
���G�^~�D%FV ��ܡ���ͰQǙ~�T7�Y������W�!*5�Xh]��c>�FM`�G�����j�/^g-�bh�q��|���}���qV������k���#]�T$��n���3u���V��۵3޼+��I�T@0�q�s�"�T![rٜ���l��x>�z�x�	����53W���"�l�&�b�@Y`��`��)��NQ�*֘#�m�E���S��7ۦ�7��'ޫ�*�pN�P-Ѷ��鲢�8F@��q�v�%��bصEe{�YWa/R�V�<8݀n�W��B8�DB;k~�՜K+�<�hɕ�ۉS�zǛ
��0f���A��bk��}̓�)�>$�D��$e;�y�l���V��.Q�՚j�o4���,���Ws��*�.T�����߾�	�1t$�K���.p��e�E����nO���TƤ=1�
S��v�pv�][(��lT!Z�kb�nVC�Y�1�5���t3#o���qj+a��Pc��Z�|vxl�Ǩ9|�
-�*�,60S[􁤃�D�^�Վ:/��4�yy*y�<�y;4�ѓ��%�����z�""S5�f#LX��U�s����.uYQ�>!v��'�G��'�G��S���R��L��U���x,��&Z:~h>���x��p_�]i7.K��(�bޱ�ԯ��f4ɢ��K-����ǕN�5�P�B�hc��Sȸi
q�rObY1���Ql�,	�ng@Z��Ѕ��C�]1,{�4K�m�k��j�u]G<�=�J��E���hJ:t�`��O)&���n�*��[�� )�ǕPS0�Q�
g�Xգ������ &Qlgu��6��:4����gc�<�
-��	�A�m�_z_h����Cm�aY�>��S���Wbm]�\D�h��16�|h}�����y����9� [%9���\$3��a�u��Ӥ&.��-B�5���o"Ԧ�6�-Uu=W5�l`�� �\.)�둛0~m(���e�m�]Ϻ��2���y:/�#��I'\��^�,�U�>l@g�1�3�u%4o��%��L=�,�s~�|�Ɠ?ˍ5c�I%��źDu�b�*�3��h���'�\���t�\��u�zՁ ǣ��`\���
WH1Q۹Yi7M�BT�p�S��(�ʠ!@�6�)�X*}�e!��s���T|M��?�I8F��X>V�>@�w=����wT��F��ۃ�W4�����o�ID����jҙ�20�W��]ԅ���@�I��������L}�aM��Z��rQ"j�y�I�m'3�c�TԽ���r�-��xʢ���>��)J���.���q�'�lK�os�`��(��/Hj���kkƺ3_6��Ӥ~�QY6v��?(3��7
V?���uw�Q��`��42c���Ώ�O�fh�6��6��)�.��'�7}�k�Pܘ��&�.���~_��-�!�)S|�
y)-v��j�w��@��c�=��Sh؂�M�*@��̴ _u�ok�적x6By����</���.�O	���]�	�_��f�[$/����Ybu�RH(s��i{���s��\�����w�9OLc'cW��L�uL�z�u��J��$�M��Q~�:cbCOUH�T���rͥΊ_��ʯqQ���C��u;�!�^��>FB�w~ӬFD*(2j��FՅd�e�m�Y?8e��ag0j�?M��!�d�%�5��o��[8�gB��TQe�c�ͦ�`B3�!��<,��K���h� ��I��1���*(�Ӄ�w먰�ͬr�G��f��+�9�l���(���k�,�ԅa�4k��
cY�-�a8�
�H�u��/Q.���q�v:��Qӈܴ��nS��[�����)���\�1�L���f��&�Ɩ���
�����RE��ܼ����,ڤ�����/�y2�2��&d
�n���~�2�5H��$ys+����� k�sv;9x�sr�<��.�-&��q��~'	st������C-Ty=��BVT�g*�%�)��f]�L�V{Rj���s{�9]�Ie�z��ܝO$j��}^��"]�&��w�W�ׯ�;	@�.��\�a������x
��N�������2}���{?�x�w~ �^�'�3�{D��T��
h�R`R�1��b� �'�|�;1a�$�Q���/��Zry�y<=�������m{.(.�x/U�d�G�١@��K(�%�&:]
�T�u7��@�qb����z�c;�0���>pjƝ��i᭖(�'Xҍ���X<��ȋi۴�
����
�%�NC?��m�L�_�ѠQX��!�+&�o�`Z�t�ƳP��S�?�.�$���,M������(Mμ���'����Y����K��r�b��R���]�;�f#��[�,$3�\�}&M��	�LXy1�E&�N%שj,�*;3�����^�B�B��s����2t�X�_u�\T[
ßU���<\�'Wnp1���
��:�/
e�n����:_������J苟Or�ż���6�w�]���tO9w��|~x8ݟ���^r���긓R0F��:�keo^���J}�b��7�[�<�
gZ~��ͬmu��dռK��7�Y��y1W�����ɘF9��r��No�7��ן�^I1����)��y�Ƈ�^R˥,~>O��������iy8Wώ�n⁢#)�$�!���auϊVa��&�U=E%�K� >j͉ju��v^ݚ�)�­��H���|�����ӟ�P/��n���߿)˲?}7H�^i�hQ�4q���,��置+#���1�\6�N��q�sƀg#��ߪ��9�s3�!���Ie8��`�K��H�h r�AH�T���$�.�i���"����>�p�Aj*�l�7G�� ��u�f��g�8Ž��?��'7OP���K����R����Q�1�>��b�UAo%�[u����o�����cn���aΜ�����k�W���!4#��/F�-o�K�:e	���Ey��:��/<ޡI�F.� Y��<�NW����g��6�M�z=5�(v�����N(��jli�7�ЭL}��v
E"!{�'G^�uʾ<��y>�������K�!�<�^r�7��63��`Ix�%/A��l<.�?r�_��in���S8S�Q���^]׭!W�
�5�nW�%�*��Dr��Dy���x�ǡ;���%��A��޼��|1��z~�<�~��$�鲔����M��n�y�i|���_�:�v�?�_?� (�w��[�Y35�)�:���lt0�,�����F�w9��>���7�Q����>�=�g�+��?����%��Buuu>�\k
ݰgK���o��jV�w�%u?9�
W��b�1ȁ�:mfS��'KbðۏZw����xx����4�I!��o:O�C��q��j�_|.��@v�Cř��\��jdV=��ݟ	
�H0�����ĺMB���a����i��vA�۫%����\�3J�S�+5�[�<�9�����0�<ýUg����Y�,��9ަ�8A����5�9�C�lc�=a0�A1iҭ��%á[ؗ$I]�����ު�Z�u3��W��ȭ��i��5fe�y�>Eqy�P��scT\Q����UÊ%�/�Ɖ�I�Qq,r)丼��@�E���k�����%I��yYXZ�Q�%��(���R��.�~r7J:۪鴒��X�U���mZ\t/3if^g"�ڡyv���c�2��yx��Cz�dv
]��s��i��*J��T�y�쀱��.��|N��]�(�U�Ӳ��p|y�������C�
I ��A-Vt\�OD�gf�z���I��r��6B7'�h`ZB�X�z��c���Iw����Iu���������6��p�b��rJ›��C^��h��r��X�#i�~�TЕ*�7.����,Ř��e=�:Z6��^���*��)�7�d�:U�[�RX�0j��
�T)g\�R���:����}���͓�/$;�q�Ƨ�|�� �c���!�o�!�ٙ	��3��G�pi�P�ѾJP��_O1��fd!6��AԵ�$$�bU�%�%�f�W&q\2L���z��P��8��\�_;����\w�46%�6p(jբm�u�+�4��*E�^f�dT�F��;��M��%v�t�f���ֻJ�)���
����a��v��&�\1��J�7��0f��a�Z%�&H�L�ʄ<'A�\�̞`�ka�[`$����*b��cO����(��\YG��t��0ݷ�����Pܡ�{�Q�C���Ew��o��+��x,�өCvrx��i�\������Q~�7O�y��[7/nO����'I�"~n!���G�16l��hAk����zC8H{B?�yb�I�lll��q��?��%�?�a� ���w?��������>����.�zhB�{�_�$�5�
���[�c�.)��d]7:#s$�
��X	�N���4��SW��R�4�Ӹ�jc6����!�#3F.�>�?[�I�����y͝A��(�N����$����xe®K��H����\�.�Gm��vG�5�u��|-�ɚҵ$���+�b�od�:1���dk������D�.�s�K�b�K�'���{)#�6O�d�����Q� �L$km�=�\�ڌ۶c�E㬕(��b�"�ט�W
Fh@;�2��f����Ņ?ֽ>�y8���9z�빡tC�����֐B�n�v�X��yV�7Blf@7qXEա��P�B�d~߾�ŷ�ŌU���m4��U�kWK%��pɯ;���uē%�م]f��4��֑��;(,w]���#���M�b�X���p��}��B�E����x���o�@#Е"zC����#h����.�)G���6�$⣩�f7����Uij[��CI��ĝIS%�Tv���QnV>A�w�XW�*RYI�H{�c���` �m�I��a@�9mxJ~�j̟|uw���纃k%
P4W^4��fE�WМye��.�ɇd�ho��'$�-6���–���؀Ƅ�g�vm��<����:���IyOJ�~]������YW���h�M�Gksy��1haMMޭ��==R�){B)\���C�K׉����k�e(�l=j��&H4+�!UOC�8��!F�nc3���X��٬r�R�)�k_���ȴ��g0$�ST���vj�f�Z��-�|﹪�s-,�FcUן�j��r=�%`u�ޣ�9N�� 6�꣟"d��{ғ!tGKt� ^F�h�s����&���xqXQjd�Bz^�|�d�0I1�@���։��}d�}A��j�,��ۢ�i��I��p�S@�aw�0��u��|��vs�$�$6����u��I����cT����
5]��B�'ɥS(�R2�	W��~
�\'��q��v訏n���Ml�(�7=����+�^�LyN����^��%*Uq��ӺR�;*�x)t:�_�L�jTE���R0���ǟ��d���qw|v>���Ͻs3�*�g?�j�y��Fbm�˴��ſ��돾:���>|~���O~��ͱ��np%l�\r��Av=���pN%���Cb:����|���F���^��"��w�=A��[`	�e]�;K���ϔ����ͤ��uy��R8M�,4�3��m��J��=������[edK�O�7�1i��r��V&�}4A���yT3>�[gl-y�T�8y��bā�mDә��9慔�sD�����l�g_�_BFQ�{g�����?
ٶ_����
�U�Je��q+�-�t1E2�>��XFy�{^V��C�S��̽��;HӴH�+�����CYM�e�iJ�F�9,Y[�R��1��Q���
�T�\Ӕ8�/9�KJ�4�St>"��t"<xt�&zm,j}�է1�e�@!��-�#r'�晿~�\}>>������d3̃Ѿ�`���H��{VeV7��w�/b΃E��g-���'9#R�����6�H.�#���$�����4A-6Mab�WlP�6k�����	N�I�ɍpQw��>�b�o}�;������������g��}睏~��w��G�}�ݗO��w��/������_�>��r���G�����H���rK�E���In|��E֢sK�ɖ�QRl(8���P�&!ڄ��_�Rwus3�v��ж-��E܊��ݥ��\�W/����WL#W�-��u��uy�i�J-���u\��՝��*�[��:��k�UZv�Z���&rf�gcd�dO��9��!��x:��<�^��7��5X��Oа�#T�zC�y��7�	e��҂�|!�$ϼ�6�5�Hf/=���o`���$����L4��$M#9�)��(
3��&,�n��z��H��̱4H8�6�K�}�P�J&���H���G��Zfl�p$,\��{ÅEt�LJt��;�,d�B�yb�b�5i�"&3�Vbs���8T��������r}�n}��|�!?����d��/��\X[�J�N�~�I{P�;�"�ږ�Z�\�h,/�����7[]X6��I^��x="��%-�U� �1v"T�*U�5t]��hB='트Vau��������������c�}���i\��s�Nc�����W��N��ޓo�����ٟΓFI	�?�٧r"]������'�>���|��>��D�}��>x�&z��]#wԕ=F\u���yD{8�v&-C<�la�7��}!��ީ�V�1^�j��Ȕkעzy#ַ����kf���:8�1���7ђ�⨁,�v{�0R\zu�Rݹڂ9�ơ�j�S_Kh��O�H'���ȑ�K���<}��ۜT���3�9�O4Ò�i�<4ȇt��0b�
z�^��zJ�ZX�N������V��K&�̶Ɣ����G�T�̴#(d�7ͨ�)���}vGy���o���z�1�������L�$��2K�����|>�e_PY/c�|%�l~�Q�$�m�l$K\)O���z�E핸����ua�J�0��R�ҩ~gݴ@j!g+�:&lj�+��Lb��зS~$'��M�w펊,�1���d��<�$�I���o�2
�ơwN��E�,`?t֬ *@�0E���c�g��E�kq�Ų�����V��L�c&��?<=\�<I�>��<G�i�38�%�l?N�kD��zUO��3"-p7��{�R旷����z�������pw���>x���n�n�_�v�ߟ>���œ���!��^��v}���ӻ�R�~�ɯ}��ws��I*������_��;Pp��9
z�S��#I<�/Y ��F�'��bh�\�;<}�l�۳���-���㛻7_%���2�n��f�t�\5&�f&�NXu��z'І�F�b�5�p���ߥ궢��R���Ŋ�NJ��Kʕ�mk7e�Ys�P�����UT�7h;�T(k�Sd��l��/Q�ޅ-ՠ�Hܚw�h��;�}<���5U5�;B]o/U���Qw�mW+�+'Ժ�+��V/����Jz����y��l5��$�?���Q�|݃���Dɒ@�����a�ϜvQj4�΄��e�'Xx���3��)���{�|�"�8���;�zo��8V�����,*Y�X2�Y��p��m�ۮٺ4��=�3Jn^6���7aUE��\4�:Wث��T�a�<>K|�������}е��x�)�����ҵx�Q�+�N���Y!R��5��f�jJi�<U���7�����*��g7��ƳDё1	{��3��v��ż.E��y�2qy}���	)@��.�~7��?�=����ȣ��/�Ϙ�����>��������]�?���I��/���������_��Ͼ>��G_~q��yz��I��������/�����J�����%r�TA8�#�T�zp�|��4�ǫC��K�����ot���'��͓��'�y�J�_�W�qP1���H�D�ׅa�T�\�t�5���W�߈����m�A+M�Bupu���.ԙx؈Y�a\iz��rH�t�*���l��>#%�nφ��r�-�+��W��R
V#Ux�=S3�P�2�h���#�bU���V�6!���.�ە��w���1�[�J���w�4d����*H��[�$�
"澌@ў$J������v��c=�B�Z�WK��$��=��-����_���nm�y��)�TT�f�L.��;bmBm�q��-s۞�o}��M���*���z�ɋ|Fȹ�^��B�v@]�^��!|B<�"��n9:}���-�%��]�U�Qx���[\�s�R�c
{��D�shƖ�Y�5ꦷ��mBцSAgb[wX�Wa7�:t��|�04P4��r�[H+֕Ui�%Ռ���}��r��L��w�5���7}����C��_��������{�\��|�Y(���R.ɋ^��s{����x{�{���'_�o������/~|����w������L�7�zq��y��˻	#��7���:Hᥞ	�h��G�Hn�� �'�Χ�����p��a��ݰ��c��f�t-Ŀ@G�1��r��X�uPYc%���Y��WT�ti�x���s3�l�26jdOYe��10'��A�tdl�{���y��L��������zUs	��zi1�[�
�7r���A�<�Qm�haQ1T_d���/�"�%�)��p��٘Pd'�/�m`J2�����8�Y�jk�(9H�8&�A��uMM]���Q��R}gs�;�F&�[h�6�x�AO�tա���ꛏ�7����3�ݜ���d���CuR'�T�jV���K	Iℱ���K�� ����.}�x0�^e]�):`xSۮ�O�=���K)�Q:a�^BY��\��M�p����+�����>��N���C�Y��_�w�Ã��C8<	�k�
�cw��^��^�=�<�UPV�h&�UL�&V�m��a��i�������AL���o�}>)���rH�Y����7���<��f|�sә7���~�P��O�^��ӫ'��/~�������7/_<})������,��<���_����~�ѯ��\����jL���'�R�__�������o��C�*�\�qY�@�׳V�_� ���ݫ���|?��>�N�aB�
_�J$����,��|���Rݻqv(�wfT ��{�9�\�O�)S�)-�.�0��Mg��DmL�y���l9*s�e>6-9&�6uTW�����˜��C��6t׊��o.�
P~����I�tGj����`�I��9mײ�8�b ��3K��.ض<EhJ��m>Э.4w��e�2M�QT')Lg+��'���f�m��f1���6��+�/�i9���Lʨ����K^��S�U��]�U[���E!����;]ө<H�:/g��S��-���*�M�z�/;�Z �gƸ�Q�*u��z�����B�Vx{��A$͊���1��0����8+�m�{�62;�8*H%���2�g�'��{v�hH�Q��.�W����m�m�Gu6t��\7H�{B(��U�J��X5�G5��*T2�t�`X�s��U�"$�k�:�Z�e:��]�~��};I3�đ��g��t%Ozs�?����~����Ç/_ȏ�I����h9a��x�䋻~�k���_������������P��ه�7W���~�ٳ'�F�Q;v��H�~(�i8"�����_���ְ�z"a��p��� �t��Ϗhu�&��b"�!��<|o	�;6/���}	Ε���/�琹���.5k�h,%o |�$�F������)�E��FM̲��1�l�}��ա9w���ӣ����ȁ~���t2����^�&DG�[јg]�U
1���y��r�R^e���M0�T+ύ`i:�6L�*Y�l6l��2�*�U�(�G/�O���K�z�h��tjR&RR�,;�C�,̾h��G�^�<솝D��nw�:vtږy�{X� V-r��c}�aPႎM���K��\�7�e�����r��w2:�%���{]z����7��1��q�Rע;j�76�t	��L���^q��|-�>xa��se��Y:��&���IY�ظĶn�~���ҋ��������<�����/�I�:�E�lI�Pk'We��T;�`U�~޳�R!U�l���Ѓ1�Zx�@p�ܶO�\�%�+6���f�^u�5�z5h��_��מ�ܘ?��{Ϯ��n%~�O�s��_�`��c�y�tB���~Cܠ�>����{svׇ�,7Fw-��r����?>��cI�p8h��࢚�`��كE�ө�s'�W��;mK���r�\�sD����.R�JR����O�V�U=
�ph�B��nN�u�*�(q��V�&D
ꕢnT1*m�Շ��&V�r!ƕ�d�u�ZB�mNz�+�$�!�Nڣ�>А��%i߬d�ns���Qν�:�@^������wh	�O��ӄT���$�K}���lt����5q���A����vK�Bm�4�rm���1�S"5�|���9�,*��( ��O|�KXr����+'��ug��%`0����R�����Aγ��>s����B3DŽT��Lc���ç�W����x���>�X!f��ă��(�>�+)�,$���1\`1O���e=R�THo,$t^�:c�Pd�*i6Hb2��MJ�<�G�U�W$Y�����'
"����$�~��x���I���pA�5��X�!b�ܫ��Ɋ���Ta��L4Գ�x;�3�ŵ�*S?�P�g��o-O�0���=��BII�I�vuy��Q3rEt���
���8��ϧ{?^>A�	rX�-;���+��!��I4_P{�ӊ���R&��P�
<.R�:�B�b�x�e\쳪�ӀA��.hYbܬ�Wu4��ᢍ
dY�N҆R�
�p�t���^>�9'O�d�*��.���CU�[��d�,f4X Ɯu�A��f�܈�,�]ԪQᮔr)y�����iJ���Ҋ1WY���'����=V�x�›r	�hV��G��`�R%*A�u�ےi�H��P8ί'l�0��|��]��>(�0�Y�c����[y(Q�		|]�5[��#Yԇj�j�Vսi��s�ma�E�7��	�O.]���N3�06��/��w!g�
sRT���]o�
,��~�,tzBA��.U��P����O��~2������W˃��W���v��5/���Ms~p����_q�:��b�hX����a�m��Yr���>�֊��u
M}���?�Y͎{yR���D[�� �?/�)��e�X�3�Z��8>&q,�+(�w^�����&��SS�����*[/*�ʾ�̿񛼩u��N2�-K/����5թ��O���9��|4A��t�6��'����}"_r��s`9����+,6�h��=Y#!��O`8����d���:�݌U*�Rˀr
���wo�)�S2|�ӻ�(_�����i�}_��y0^>{���|�7U��D�#�j
��P�d^Eo4t~��W2��Kt�sG�M9�b@]�*�����T#T#ن����
�EP���~�������`D
����B)���S���`�#;��*S�tru�4����|TY�eZ ���
@(U\�E�ô�yET��������l]%�~�?�Ѭ�.Lnb<�q�d�$[�1.m��\pr٤������μ]�c�J��h\���C:����&2\
,�z���jrjI1��������.fS͏$�r�x7t=�T%��a5����!D�B�F�a-�	(����z������N�d-�=�����)����*D@�<aI����Y�pW@I4���0g��Rf�_tw0�"W�����9�]f�3z�V�4��S��"1W��u~��w�4"���u�;K��|�9�!磓w��Qæe\�|�?}$�"ɛ��:e��BpU�h��*Fe.�m��I��	����<K�@wt��7v�=6�y��h�)�rqa�C��9b��������,����w~��iߗ~��G�w���c���{��K�|1��<I���|���zD�������������o���ጝ��;�����ֳ���٫���w򙂐��W����\���?��q�<{�?���ʤ�[](���:\�M�TH�z���Β��$TJt�F�ߥ�E	�H �sې���lu�p������y��@[�h��Zj�7�`
ΞY!5�b�PL]�]�
�YB��4��l�CI�#��c�UQ�l�����G����yl�I%x8>�$ q�Mr��N�.��.�J���Lo��"��s�O*��nwu��\_G)�.t4:G�W�MT*/7�r?��W`#�
����ŀ	9�)qVcfO��J-�"�̪^�^:dRwՂ�M����l�O�V����\��~�>;3`�7�e�W����j���sa�L�|>��?���tCN`��i��vn8��375����1�J�)�� �[�dC8�t'Ȅ+�e����������A�aɰ$Ã���f��}?OrjF�Ɠ�͹�t~s~#�I���U��s�ȡ����>��r�v�f�]��N�X�W�X����VB|)�iu���M���OWE:�/X
��]/�i��A��B��U���,��+���S�����ϐ������Onv��[��W?�я����7E.���?��.��?�e�N?�я��?������,�c�Ǜ����i���n�w�_��w���o�|Gj�T���/�On�}=.�>|�[�>�Cw����|rX���/~����|�r�"}�B��9��Ԟ��]
�Nw Q�LL��ƝΒ�a�]�����8����7��Q����C��3�7��-�JVT��(��;qZ�������m�Fe�*ϒ$v��E�L��]7����}:>�Tt�18s-;���Y�j����a��@�
7U Gt�ɖ�1(k��Cy��n�q��׎B�~^���{B60؁����-�^R?����J)T�2��D2�b+L��hK������,_Lm��@��#v��-_��<��T��-4p"����]�%qIĕ���`v��^���ം{/�ٸ��cI&�i
�|
n�Y*)�M�c���=�`���<9�R?L�\��:d���(�)߽��;�p�(th���g*y� ܜ��i��7�c�d@:�&�8�g�y��П����_�o��C��G�gӘ���M~���/E�q�$��9���k�ΔA��%f�w,jNP6���0dI��m�5�:t�#�Υ{���x��$A���u��Զ�����o���x~+��o>���awu���������%_��O~�o������?߅��{�z���w���"�hK]ws�{�~���?���;�]$���n��o}�w~��;/RYX��A�����}z����i2Ό3�rS��,�JuG����O�h–��*]���B�]ԩ�[�b *z�j3�,�e�юj������?R9�:�<z}�4�ӏ���N�U$�Q�ϡ2��)��3��+N'n}
Y���*.ݜ�?E�>Z3&�ROHg����/k$!�`�c�
m�D��{��pq3�#�`
�`����s��A.�)���J�U��D�(N��]3^Ҟ��3b�&5�]B�+��Ά�G�a�􅏺#w3xpX����!�Z�W!vͼ��sR3���M'�����9� �����#��E
�+?,\��Н5�3\C�O'|���'v;��Qm��R�RI�Ա�g4��g��?�ly%��Y�n~����/o��I�C�a�[�'�
��O��)8�2$"�%��~9^ �?Og9W`1;�����264s:g���z(�$��+G>��ߜ���<Ǜ�:�;��PVG��H$�Rڼ�r��
��=jhWV6�F񚍦2\=��+�U�_-3�ao�ђ��}7�o�|��s̆r�G����w������j�����/n?����Q@i�ݼ�O���u�׿�ݾ���ŋ��W��-����?�������WW�n���?�H
�_��������"2�?���}��[���?��_���D��,���@t�\�	{�.K�+M�M�|�J��d�5�[��9=��b��,g3�^�L�:]Ev	�"!@f�xµ���k@��A 2��kW|"[���}M�X/���I�
�=.=D��$�T4�x#82u��{�!>o��J�a	Wy9�KN*)y]\5E	) ���P����4�M)���E��]�k�Qe�����]�Lȸ�Q2���Ӭe�ր�
���?�-���ID(��f�$NR��%�^/F.	2��np��q�Os�{�����r�&b���jlR�PmЀ+)C�A�������>�J����"9C[B�@�������&�s�ƒFW�!�V4�#U�,բ1E�4d!�U�U8�C�ɐ�9��-?��Y��.�3���
�Y7�f�n�!�8Ǭ4%�/��h�%���0ٔ�����q��h����w�Pdv?����q�]���4�AΒ,���I��k�Q���2I���s(�f���a."*�ʱ6%�N,HH�J.��kI����7�-�_��Iۄ�
�C膌6!�$0��K5�U\�P"��Jy����$��"�1t�6��=fM�?t�!�L�G G��6,`���8Jj���{ƹ�t�:�u��<��y[8���}ח�~��c��M$	�_�{����j7Mˣ�-��r�s�����,�?��VG���R�
��#�c�A��[�#RU��x�b@�2��V����P0[v�&�g]D�[U���a0�e4	��%�k	y��$1S�0��C⥙"�g�.�S?���_0;�	��=!�<
Xy`
�8�{��"�Ĝ[�Kz�����Tҁ`�v���
�b3�œS'L]#eP�*r0�U�@�L�-9�eo
��CD����
0�Sl�Y���l8�;��`��`��{#�	SN�tkZ��#���n�R�ZI@���SB'O;��I~2k��؞�lj�#tcr��u05�Jɪr}o�|������;��
C�w~,}$)5x�)�����S!�_p�Ɇ�������T]죝�y�����85��,�Y4��#/��ڲ�n�����f� 5;����G �
@0i%I`��ʗ���$H��Q�r�yM	�����X셯��M�f�d�Tu�+��<��dt�%��q�]뛫rx��Gc�E����� eȫ-R��M�@��ήF�L~F�&/�������c�>��iē��QM��0eB����>���>��g��ཷ����%A��w�}p��/~�ՋG�{+����g__���,t�����O���9&�>�?}��/~�^B�<�_�oE��y��O�xN��N��óz�����!��-#_��H����#��xf��*F�,�0^�l�:`$��cH�V;H8&���v1J���:7��]�[�*��)�4�RAE`M��1��O�Eŵ&F��IK�,��'e_ ��x�֌���H�LM�{�d|��A�E���(�-�8É#�8�<��u�c��d�Wl�8�zs!�LJmA*�R�^B��%��K�t�Q|��I��e��NX��ٟfĪ�`\ge�������խ���S�W�������I�
�M�v�׌K//V�n��)X�ds��۝��n�q��يK�;q&�D�9�/�q���&��&(DQ�Њ���n�T��;y���"v(�Y��+0��r�]6���Vbz����ҝ߹�ai�>��L�# ���tM(y�|����A�u���*�OF�y�;�d=�
��z��Ԝ�RY^Fl��4���}�i93~')���d7�Ie�F
i��N4-�!��-��`TE�����W��u^��ySC�x�G	U�sk
��������Q��r���?z��?������������o�_���_]���ǿ��ӛ���V���������VPG�ޚ��&uF ��z��!�gUI'%,��͇���N����\J2���O����m�nJ���ۿ��ȾCQҢ
l�9��8r&;:��w7��8�4z�A	lݱ��>88k���)I/�����|k��ZE�Ҵ^�f�1�����&� �n�n�n�����G[�q���d�	�`�x�!U\�a�
�i�F����1�ntF�p>|���0i�
Ψ�2�m8���ɗ$�3�P�/�J Ga~F�f���C�@��U�[�w��$���н��f�:$]�r�10b�%���ľ��C�{?��+﫛�S5�\W�jw;>xu�h[�p�
�<$�/�t�k{]����֟����Զ*�2��
�-Sƌ�q���S'�e��MQD��-c6R��)ɺ%�$`�A�Q/�]��h GU:��Ev�t�\�y~�1S�ErvK-ؖ�>~hο���&�r|v3���K^1[%�t@F��;��+S��y)u�D+e�C��D�/e��~4F�XDSQ�Vj���-hL�>^g�r��iS\r�[�ӊ�H
U�JNE�v����5S%�e�h;���J�*33�y�;.�*/�.�(��S��W�%)\��@����j��\���re��������_<���7^����f,3�o��_��ǟ�;�����~��g�e�d�]l�\Rs�q�ƗL"�~��|SCS�	l�W5��O.8����J�]�W��?z�	[�?�
�pX)�]�3��K��ӓ,�ct�!��d*N��#7}ۓ��ɬ��������ᐵ����?>�3)d�4�Oٔ2�{%L�ժ��mBz��K)+?���(¨l���^J8j�-�೮�����x��S�h^q���a�@�+�GS����J��f��R��, br2��(GN�c�얩M�J���Eu�lS�J)I����T�.	i��e��(f�P��,�y_tѴ6-\r��2+8�H�@ ����8t��ɘeA�zI��nx��ɇ^�gK��~� ��dC6��7��.k_d���^ۋr�+vr�J��E��U���!�Ԗ�k�̽T�v�C?�!��B@</b��2��C9��Q\��?5[wrǃ�E(���XT1$
�NR�%�����m^+�K�����W���a��(,~�5��F�V�b�WvS��p�Y{qzV�al������e����-����4N=��x�	&xRN���G	�[�X�J"��t�[�i6"��ƭjG�ML5�^yl����]ΐ2d�x��
�ɞh�k�����o��p�b
�4�b>�w��/Qa�m�m�-?��{?~�M*)��汳Pd����f�:��U����W)a�{�Y��y��n��_��U����˧�Eϴd����C8�֢تvB2�Ʃ�̍MCr��UB.g"|g�8%��iX� �L�ȶ�$+���D�TK��G2��JV�Zmע��#��Ȯ�PPB8��4�UQ�aH�!8_g�?��I-��j.m��!�9G��;\ʞ��mK��d�2�hk{=�����4���I*
���@���*>�xN�^�[h�� ߽E�*�!!;Mg��Zjz�ͬ�4n&�}�Vߖ`��Ɠʴ���F�֘�h%����|a���2��P��9.)�\O;��T����T�w��A=,͔���x3��/�o$k�(�r��/�Qb���������%���x��*� ����VNᜥ����7	1�^�B*�!O���<VY�*���mY�K�}$i@VS���͇8��)J��gMn&��s뷾9�69� T��ft:����q8��Gӎ�M��YF��r���I��v<��NY2��a�2�sI�p�/P�PN�U9�:�#�|�*w�|��xaQ	�%��\>���9���y�5$Ő5$�D�������	�F"`�7����ϫ��K����n,U�d��͗#y�.��O��!��~�?J0��h�[��V.�K��_<���l���������}�?~���Y!���h"�J��d"�ԣ�n�*�ch�YRU!hC��|�)%�TϨD6��ۧ����	ڬ�R:d�5F�R�i�ōe`7�R�V.h�ɯ��ZI�$5���U����A�5D��C?Δ|����Q���Y�c�ʢlQ�S�g��Nʒi�-֘��8��V���-nf����;�a�G���A���(�y#�����NKr��	�	�5^H��Ģ�G�DZ��u��~�z<p���~��`4hUI=C�t��\�Qr&/9��]���������d�[����2�;N}�B0�*$�7
~�l8��M���O�A�@��:�,��S6�A�m��8��!��)0�����f9)P��Z�ze+CVj?O9��B�!�ݡ�5�y+�a� �"i�-V��1�W��F^���3����[�o\Q�
������%Q���c�^���y�����a=r� �
�.�����rt86K9qa��9_ �y0
�k�;�¡J`t���H�j�[�	:�m2>Є�@i���r�3��E?�ղ��g(R@�e��e��']��0�Q/O9��c�_~�ѫWW���O��o���v�Z���w��
X�Rq���LJHE���������w�վ����~�O�������7��ٯ_<|p�c�`����o�QN��>���?o
�vF���j]�t�)ɵ9`b��E0��#�kB�m@`�����ٙ���8Z�[֌�:5ު?�Y��`�e+�PJ�;�c��S�0�̋&�q���h8�@C@����!o3�
4���q��t�q�i�BR�E�0��QR*d��
L�&$�}V05�6aʩ�WDl:�tg5:���`�MY(*YŮ��D��-��u��1�J�S�Oh�ɒg�ա]��Z�g���lg�����F!M:Ž�w��MkI��Y�^�.`C����f%�v��\l�v���̯�9ʲeLo{Y�C	��b�a�p�]�L�@�D��L>v����iY��^o�ƇvaBHIN���d��Cgld`@$D_�UiJ�6td�4�PeQDd^���.f�ͦi���[����Ė� �r�i��/EX��W�ʖ�,,�����D�W�7��/���ps++��w��+I�H�47YS,%�((v����Hy�#+US�,5)|����!Ad�I��_��1�wtL-mLi���#�:
�𵻹�$ieU��ǭZ��@cK������I�h��o���?����?Q���;�<��ͷ.���|6��e����i�����`[��������?��_�u�A�Kj�קc��?y���bu*A�����Y�0�F���n9��T�]�PS���m5md��7�3�U�|�Mc�f<���{+�K�I*ô|k���3o�
�T&��W	�c��,d�l	=�����Z�PD�3�ϵe.φuUgl�����Fe��T~���$/u���F�p����;Z=2��P
�a j��
E��H�_،�$�P)�E��j�$V�!$�r֣v�SU���V�*�XBM�V����VW��$����Z:�NAN'���ݒ�H�T5j�ϯ�y(�6뗮�!�G>���un��_�"Qʕg���DI	VZɕ�f�a���уV;D�"a��C
��e�9Ƨ�G� �%����F
���Y�Y��$�CNP�%t]{��cuyu��l��U�D��=��tw��A�;X�nd��k�6)<NQ��:w>u��/�_KE�C��
�m%t�R��+$�,a��L0`s�){�`=h�К�½�|��W�J~f�:Q`P�S����1�)��Q���Ԛ�#�eg���2�3���\.Y��`H_a%�Y�'aF�N��:
�+���굃�7��Շ�~����8��zq�Ϋ�ލӗ_߼r�F|��������}Ǎ��B������?��o��\\^��s����~��l�������f���Τ,	��;y
$6�]Aު�]��@�u�<��v�P|r�S�
��<e��Ӭ�,.�N�����Ǧk��*0=i�@!G������3TbTE�����KH��Ϩ��b� SOT�rL�G�I<���T�M�ͥ⠡a$�+}]��,��)���9�!͓
�B��hu����v�
/< ���UL��jBn��p���N�أyVr]d_7(63����U�]Q7Z^�ߨS���hH�jĈ�����(X��ӄ�k~f$�HY��$K`-�M�,��_&��AE��f���Ḳq�y�)��f����g�#l�!������>�2��,�.)�&|�A�blke���)�J���-B�,)�4a��	�S��h��R�EE�b����>h�!���LцF�S>�q,�&r<R��*돭Tұ������v�1�rTIq�I*�v�<�Șd�m�2/z$�)[�(}}dZf���#�%%�ϩ{��f���&.�
n�Y�H�&Ԇ��6����ɓ�n�����g����(����H�T��r�7���]��S>8�}����-�3*����g���O���w_���
�|�����/>}q��U�M���O>؟���o��r�y��G��bPs�����(?
�=�y�7<�a6q��L��Y��D�=+��
n�73tLU�ZB{�K5Z�b^}"���*�B�ǘ&��Zfj��T�Uef�.�҈�3�	yfY!��K��A���o(��IP�@;
9+���@��$�Ca��\w$]����
ܗ�Q�DG����n7;H8��i�$�Yx�C�=`gG��
�p쎐�*��A�)�\�8z|!S0Ȗ�^"��*9��t�s���=Fc��
��=�N9*�]�N�=�����U�o�J�E�&'%�c�+9>#��u�)�]\�D���b'	r	�l\���K��UnAB��<X	 `�X�&�������k-fB��2v�v�v5S�\-��3f^�RH���:��r	��<��ذ�4.�|A��^m/.%�O]I#OJ��6����}��^�c��c��y�㝽}�w�յ�'�2HU���ܜo�|L䨛����w)]��i�D��UіeB�C���p�?Km
bns�ȴk!�(���v����s0x��=�f�p�\n�&�M�˪��Pr��5��T����QIN�V_��˄�C�����o���#��Df���O�����vU���E��>�Xn�7ߐ#�~��'�}�;O1r2Y?LR���q���9�Ea[���W�4-n�ݕ�I�	|���eM�V&Ґ���<)ދ5W̆��]�w���KyE�v'�'J��P����X�L�<[�����亠���fY���꽤�=�o��Y�Iu�,9��	|5�a�ɓ)�7ۍ�O�	Z�3����'�<s=���Ѭ�v*|��YG��y�U��u�Q:���ǻ)�n�d��:�]'몗<��ɦTA��H��"�uȠ�%Rr�z�6��X�Q ������BF�4��/�ײB�y�(�Bf�hA��ZG#�K:�,>�Y�I�2֬9��	�v9�$���
��c�'PH��"�p:aR/�X��3<tV4��S.���#��!D�G������j��C�e�$#�eY0�| p���l	B��Uq0��<����곊"f&�2A
�o�����5K��F����l�q��q����ms�5Y���K��@Ots֘�3�=d��t-

r*��n�LrT7�|��g,-'h����ɓ+@�F�꩎T�^00]�qe�"��4�����hׂ� ��n�����O�ݖ�E���g�.!_iT'b��h#�[A��nl�;�ۦy�����^N�?z�����L�����T��':��Ԏ����^��`�=D��g��V�������h9��������/�������'�<�:���V7��cи��3d�Ֆ�5S{����aS]���d��O$�j)�@cwd�R���gɴݨ�[�t�0I~	Q�@�L��#�/ٺ���5A��x��*��UY�2��,�3OL!t�ޒ��g�|?R)��Y��ϩ��
@�0'�%�	���*" ��t2�xٹ���Z�8M��0��Ě�ٝ�-�A�cv�w�ɛ%���\�7�
���!GA��	��
�W5�ZQ�Н���%�*(.jϊ	�]Y�.���n�/�2�9̱��D�s����j��ݑ�3����b���V������Q7j[�m�6���`=�kA�Z�m�j�ov��j�m�i��v�p��	qʢF���P-nT�<�xžl��K詹U�8"���ˋpRt�ws���G%}i/��C�
����m'��}I�K�^�n��Bk(��
d@�@���.8�><V�etQ�	�쉽5֏Sw���&�|��⮖dIJB��A`	�P��2lA]i,Ѐ�����e�Qk��au�Z֭ʽ'��2�\��pk’�BZ�8�E�K�>���S�*�ُދPL��Z~@��'?|'��S�Dδ1���~CL����O_�ك>Ǔ�O^�rx|��|�j��l��g���Um�,��9�;kBGG&Ki�1+Y�LL7�Ͽ�r8��U�nGQ��]kH���$��F�^���ʨpZ
��0b<�ژT�p
�g��]QO��{"*uv���g-/��*O��(�����H�����SWg@�Ċ�6��*g��:�ɢ>��*�Q��Tϋ#�.jE�9F�(��	�qTPS�0�}{�g��-EH
&:굎9>5�R�q.Ƣ���Y%t���=�� �P�%�MI��*�U /g��8 ��$fk�^U}F#W;��/R���ȋ4$O�_f��#�e9a����1���+�H�/����x:�3�E8F���|�'�V�4Ha���Q
���C^�o/.�}+���̓��nH~A&A���m�Y^�`�ޒ
���6J�d��4�F�{2�v����d4�S�"�z��dujd�O�(�nSm�T�_�E���\ċ��7��Q����N�����%LK���0�� �r��Qp]��0��J+�#��y6���3Q��Ðv�۶=v��t�&��8�⑼ <Bjv
�4몚K��KZ	��de2ua��J3���Qb4��u
mVa�2y�}ǒ=I��l5yYm1�롭X
e`,a�X�)�t��]4��L��%�:P�l�S�.&qg��K\ŏV��{��eNa��ioH�p��|�n��@/������V��:���'/�v����Dl�s�N��.��3�nD����zy_��|��$��f	z_X�Ə�����ш�j�
�)'�jH�
�޵�l6�Ð��co#X�9r2��x��,�T����;g���K|2���?���h�����<L�k{$%�X%(R4*YW�I�0Q�����$dY��m�!�Y<�B��qw�	f'�>�ש�����F��J2��x��#��Y���R2m1,��_bԊ#mB����C^�ϲ���,C/U�dRU���9��$�Z�c�qF�\����)���y�!c���.��Tz/�P�P�����yMo�Z�Q?��
еF�$q�y*禧'��VP�s��ER�UL���[�팘����ԗcY�	K�\�&+'��لٝܥ�9���]���N����9�s��
T���&/7R;��T�l�q�̛�y�Dm�"�Ԛn�Fɠ�8
��������zY���q����,��^�@uO�+fI�m��p��<Z⧹��}[M��C���$�3�y�I�Ks����q�.Ytgv���NF:-2������ܛ.�jO`ɀљзJ��I�PZ�q,��C���/^~�ч&M]�&���vJ��G���^{�W
-�0�Q�@��� 7H�(�Զ�#\v�Ո<����K r�'��q+ݗ-WZS�ĸ��C6A`��j���.�h�A�#��&�,����7Q'@[7�ƒ�	��fQr��d,k�=��]���a��ĶP:g2-�YV��~DmˤH���ͺ�T�K�u��b��
v���F4�x�"=�/`�f�C�NJ�YR]+�6K�`�reh
���j�?P����
B@$�����<�y��	x|[�d:�5@��0<�߳�A�rlO�}�R����(egsTye��e�}�b{��%y��-ua�++\^�%S�k �橠��$���_K��T]��du�A��*7���n�CGқ�H�>ڝ�>hj��o���GЯ�ʡ��Sh4���Jaϊ�b{6�^�I
#˯[��wmw�R������׹d�;�K�*�	:4�d�Dy�W0�&��r�eI���F/V�k���:7f���<:@�gyK�7ΕD~p�����Cߑ~E���iE�E.ee�o��W-yH��1.��0'���>��.&��N��SV����<�c��{������n��Ȫ�C�HpL��CfX���TD�,�����JGX#���xO�qY�PO�F�Btx�P�y������4�+)�;D)�Pg�-�Iy���HC)I��tC�\�,�Q(c��RZ�;�۩�@��. �E��$��Y"�B��v9�,2����W�F=1�X�s�qQGH����uYj-p��ҹ��%8,7"�R��hX���U�>ge�P!�YԞ�v�#^�fk�W���e�'�D��A���Re+))?�Vv���m�p�Y��D�ż#-�z0�ϱtf=J����x]�H�U�F;��΀k���n�X�F;�?,�h��r�,��O���*�%�6�We#�Ϯ�4e
K
a%Y�@�h�$����xO@�c���>��4]w]w�?�?5UyV5;��v�23Wg�'kǔӓD�T\�Z3���_6gH��IjoncZ$𝣞�t¨�pY@N���t���u�
��Z+Y�p�*�p&L�35	*�f�����\��,�Ҕ��c���t�0ܦ�G��	SIt�X,Q����QlDERd��k^�:ɷ�1��'N�aWa-*���N~�r�����~۽��~w8��aD��)�L�i�F�1�܊՟�W�Dڎh|̜h�JS���+�.w�AO�Z�*�#(�CE�� rJ�
�V�)* C��*�G:��>a|VyG�1wG�����֨n��M�l��h$�֍�BYHZ�^��t�S�O�J�VS*�UU�����8�?�/!d��ɇ�;#�;�2#�O$͘�f��g	��X�~1��i���fu�K�_��F�n�I	��i��@@V�`$��Q��dp�J2�B9]�9�'(:�H��SϬ�,�6!��ڼ�ª,���h����A�����m��b�G��iQ�m)0a��,$�qUN	���2�4@�Ts�6U����!I�Jh�ӗ+g�V�2�����ߪ��ے���:��^�T��}����'+Y��G�li��ԏ�'��F?�
���8�T�BHPi�fQ7��F�S�'E>�7
Ey�.��v\��$�nas���В�m���'P�p-�v9��۹��-��X@�˛��(}�A^��n��x~�lϫ�
uZB#�
��Om�w�رA�W#G��Q�]av@Fd�S�#{�<5Sk@��T-�J�Q��I+54-g��ag�5$f�����#���܄�[u�i��3|C����NV��qK'��2f�qC���@�ڢB5��W��e�L�Ck�G>t�W^Tk�CP	MS�)��%�G������;�D��e:��x��T�-�P�a"��n�=�5O��ӆNr�X�2�{��3�tSGKXR1�$)��x���l���(%!��B�;��q��W�8;�=���������-��³����Q�(Uh;��0�#htnA�ި�͢5#6��RP�Ԡ2h��nӭ��4���=Ց=S�9�Q����X��(�Q�-��b�>�@�P�9����X�^���h�A�D,��
,@���s)�S�X7-�>K�G�Q�|��Qm�7zp�R��{�4�ZVnA*aw����d�Ƕ�I��:�C��$r1K��Q��s�l%���E��c?�NS{���������Ry]T���l�)kX��C�h�G�Q����!��
r��'�eC�#˚��^�%���$��fJ�IWTN~�2��\��x$����/zOY ՝n�����fw�=��Q��y�-$����tZw�e�@�=�~é#���~�9�D��T��β�Tu=d�a��
�%�)�E�����ʣt8���\v��m�x�4#[�D�@A�^���eV{�*�f�����aNa�J:	V}�� �����'绸��R@JQ��zz�^�,Sp:�"�95?��W�8r�u�6;yf�I��#��)MC�������ZV�����������0ɚ8�'9�2J�!8��] yca�b�
*p����@�w�>�TK§G��"׃;�h>)�A�:H�6�RzI�1��N�����ܨ$l�z'`��C��_PRa�z���R񠌅�;6�]��u�,�of��˃x䅵!�e��O0Ƞhd�CX�0{ND� !�!��	B�@h��a�
	����Ca��pA�l�F����&�7eȳ��O[i��%V�����^���$[D
'ߋ�Hnٝ0�
��%0�Ҿ-,q�A�;)�7�1��^�ak������i�x�O���t�M��������9�/�����5�X�O\�ة���
V��Ԙ�LA���|�nk|��C�"�	DX��V�W#�8����<�Ϸu�
�<0�d
�4�Ɠ|�����G۝T�v��	/��r<�/�f(��8[j�����?��z�98�<�<u�J�fh�\��-��Z���o$�}'�|�����nTZm\̷��{=��ژ_�39�e����˳%�@6[}|�#e���k?[�H�Z�y:��qu��~L��_T��@i�I�� �N�1�`?�zhf��s�;:�{4R�/{93VE�,��}�S�T����_�(�KH�D�.�Ή�T�!�ǽ]�Fɴ4����Ѓ�̐�0��
�"��As���A�BA�dGa"���y�Tf�2Dy�"Ӗ@>�L����'��=�SrWF+
��u�Ԟz5�V�#+�R�*�	�v�1S�C"�b���&�8��Lг���8S�{�8B(��]&XhR�?�#	�)��{��Mv�,�s��WOhrb���aC��w���*(G���>��v�w�d~d�j˜�*Ѵ�D@�<����� -f�H��Q�~ڌ��)�N��(e��J58Hm%��Ԓ#mB,��US_6�g���+9{lc2?e-�*�
�pgI>1�2��� ��p<�@����+�(��bA���4��G
|��%�UU�9�0���f�BK��J�;�V������盳�l"!�I���]Gp�0t T}��쎐
t��+3�q��%�(�J��
�I<;�{q�Ӥ&�H��8�L8ʶv?����B���~�0��>�R��"��}�́��b��U@3�T<�-����S���0\%�((|,Ÿ$¾���C��V��I6��fZ -a��&�>N�A���K>�ʚ�	Mm�܈�8��a�½�8
~ˎ{�(l��T���x���Sx2,'*�* U)rM�Uaf�,�'4c2�;G�_$f��:�uz�R�?l�?�łn��9(Ta��pS$8��d"�F�LP�v(+#"}��wLf�+1���F�1�'+׫��Q�)�
��yGx�L>#��&j�Ma���|�z�_^��L���K��IE�LAm�T�˟�@c���l�\�9O �y��(��y9��TG��L
ྃ��4[*�wbض�H6�1/�L!'3���O�8���U�T#y�+!T�|�7�4�N�[���C(���%�4esC����e�9�l�&7|�1�#mJ����jM��*�W�$��$���x""xx�c��DO�ҀA�VTؘ��5�Ys�-k�SZ˸{�&���.;)�deTu�ք��p�<��S}���.�xœg&�*�1�c X�h�_���<~a�%��u�0i�Ңg�����i(�խ���U���zZj�f�cZ�@�؜��U���{�R@�F�	Y��
�~�ʨ[TR���Bo����S�a@����ы���-����0�G��=Ӣ�X�j,1�%�$�k�ra$4M-�:*�t�����Zl{�*��A@;\tv�U@Q�C�uz�nyR�V�8�z�>�$ŹHp��\&>�i��C���Z�r��H[h�4�u։�#O�31:�sX�j����M���8հt6�;��C-�i`JH�u�#��S~�J��5�P�Et+X�1a��KbDY@�?پ�;�)�$JOQ\�6z!
�(Ƌg�#�YpOH]h�ᓸ8ʖ\P�.zD��b>"��8;I�&��:����O~�t�p��`��O<���I>U'�,+41-0� �30[:9��d�"#$_�YBQV$�8mR��"�ls���c6b$��%��nW�m�j_��d�N���&�m�g�}��q��pj��XYS5-3�׺9H�!��
K��w�٣�Gg�3)�2�yi����N�t�T9��@R!0W�p�v/���ʉ3��qU-��M3QZgVfEd��U#��=ɣ8��l�e�l`�ܩJ᝙���n�%��hTF��1ݜ�'����Sh��}o��4���������K+_�0[6��]��n�ddH#7���M���li�x�IS]؏�N3;@9�tQ��[����.(�2�0M�yղN{m�cD�R�|��vyy1)؄lA����kGuIl:?-E�W�co�=CP�C/�BU�#2eX.+�^��Ϡ�D��fI^�����3�!����-#����&�R�1H�%8�K�,��<�Fp���lx/�>�5�B�+yq�C�q�_�f��F�n�F28��ۆ�K��SРb�A�RԱ]E��J���҂};��:h�*z#
�����<eB�_�a�8Ǡ�ia�1

G�A�ك�a�9[0�Lf@��)�G�����!N`��	�g���͛j�s�OFy��\`�N~妨�r>  *��� ��KUҫ��g-Od���,�r�ó���i�ݎ�H��9I�&��H���t:�ܵ��ضR#��M�N��E����j���6����Bu�l���"4��"I/Z	#W`"� $�JY�0�P7�=�r^�2M�Q��\-_����U�s�[��@�
�Crw��f�tI9��SG���LA��-�Z��@}4�
k�2Th�%��*!�H��ۿ��_?}�����ǿ���w���O���O_���W��_�����o/϶o���G�~��ŋ��|����|�O��9(hK�W����um<z巿��_���7������/��_�Oo���W_��~���˗/�"���>���7�x�~���}uq�k�$�HZ[�^R�t�Q�֌��R;'�Z,�p)����{C?s�I*"�F�����R�1S~���<Ʈ0�yCg[�8겠����Q�f��J�-�I�dP"B�P(uȒ�(�ӢZ�H��D����M@��Z2j�QU��r
(�2�%�x�j�#,�2��m}(\�/X9���@3��](�1��g��`!�"�nS�T�T�"C�g<=:�]HѦ�%*���S:�gG�g��b)�a�|��h�Џ#e,H392	5�͓Kj����~n�r
��a,e�Yʨ�h��u�lRVxUV�k
W;����J�a��w/uL�ʹ��m]����P{���(�6�.����{�_q}E�p(������\K��d��j�BC�����,]��Eή�;��!�����Z�k5)������si#�Q$��L
u������i�y@��%�.���}9^��{y�m���ʒ4uUe5Vt�/�	4I���A�պ*$1+�=hޘ'���*JvV��KlD�Z�C"��g%x�aW��ɑi��+L	�v1/^�����7e���=�C^7Ͼ|����'O�Y�䅵��ݡ}���.v��噄�|���4��|�|���O���o�=����^=��r�����<��=�:����{o=����g�7�z��ٟ����f�M_�����7=|ȜqQ%��$J�I��D�h��@�n��:x̎�����!����|�@���N�;jH�����<����f��=5�o-�|&����OV�8�%rRi*/�H�րvX�6�,��bQ��€r&����6M΃XǙ ���:6��W�JaGJ�c�B�`r]VxgF�*�%M<����RP���6NJ��l����JK��4wDU������F{u��4�)�ҌK>:X�JAq6� U�K0T��ړ��	@y]�G��j[6�܏�е���q?�����]�(��P��1\�W
H��
n��I��c/���B��k}�_4�.�e�!��h3$���ϙ$2�ڗe��Лc��ey�R^[%��b^R�>�2�zA'�2-
5�.�zӇ�����j���
��b��=I�8o&�֠4;Z5�3�9�7e
>T{�����B+��"��c9e�C��|� e��v�9
n�ۯ�/�O�[ל�gEs�����X�P�����e.	QD�*$�_�dԾh�A��b��nH)o���W
�(ea(��c�hbbj��W��o��)����˯�|�Ƀ�ݯ���t_~����O6����O~�㯾��#����w�}�Ï>z�ѕ$_�z�3�����_��r��s�h�O>���/�yq}��|s}w�=����vsl[���C?=�n_{�@b��e���Bv��I�S��f��(�;�o�jf�O���u�
=S�����L�q�BX�]L���GE%1��H됀%��;NsU ����ޢYT���*�h�p�Kƀ�L�
�F�\2*��2�"XA6
%F��E_���`gT��Rl%ӡ� h�_��<�T� �BB5�4���  Ga����oQ+��v�TV���c�P)Z�]:Y�tl�Z�*>���i���L!�Xb4�t�Q]@�Ud�ź>K�D�B�c���U�yS����|'�	�1cR�;.t$T�P�\�
�E* �8 ����t��;��+of�?��^b��%i�G|�Ǻq��֏�	��rY,mX����%�k{ �t�,��kr-����.��b�/m׽8��������7��7`��]���]�TE��	!K�Ʀ����q
};��p2�V�d�c|C�"�y��0�anr�;}���~����W���^��U��Z���	"y^Nk�
7u�-��ݶ�]����Z�z01�u�4�U�OYQ3�jI>���m��[Y[i{Z+���b���on7����Ƹ����bWORUy��(�������?��{���ޝ�ϣd��{o<������{��Ջ�7^9��W�$���_��o���'r#R?��d��݇o<yr���~y���6��Z$�o<y�����ʭG�i̷&U��sM�D��ǚ^U8���� 5B��;�%��S]�i��SA�S�2B>c��(a��LVo?I�4�po�^��8���Bdm�[+��kBP��E�o,�U�ֺ�8ఀj��%h��P��l��u@O�
�,�Ԟ�$Hm����7"�;��D56�e�`��� �WΦ�>��x𪷙ݛ:��b���[ ��3gA!&�3�vH�U0y˨���>2SK�Y��
�I�4�����Tr���M�m�jD�I|�_th�v�Rx�w$.	}�LF�P�Q"�����t}�$y�;���bwq��8�횪A:0��(Xw����a/E�T2���rb�a��l��rS�o��öHI_d�	Q�b�OJ��u@�8n���_~t���*��ݶ؝��2����_�m�5K>��%�T����J�*�
���c��4�ߌ�;��u&1/@��p|�UA��6�+��y���������Z���\m����8����	���=�ǃtv��2?��6u����m8��雐��P�i6I�$���{��c	>R)�}�X�GrxQ`:���ޕ�!g�v��^}��x?x�
Y��*K����W���~��$�����7^�AG;N��O����'`v!��OeU>�:_���'?��T>�*v6���Sj�%Xs��$0�
<���tO�͕ԍڅQ�;����ǽ�9;�!@`
ݰ@�(F^W�^��_��ǵ+�3�(��&z��SJ-R�x8��=��Ϡ"��+
r\
�L��lm4����NGKN�2�%�g2G�P�q��?�]k���g��~r��[�.���1�i�b��f�z8�šD��N���Tz���a��F��a��lj�����H���P�I���
e_t�PYֈv�X��;C��#�u�[B�q�20�F`\�����(�Ʊ��|{6�BN�1J]>r>Qȕ]�MYl5#D���z9N�q�?��y~���U-��+��<�xД�<�C+Q�돲�w׷R�A"�b�j
I����V�r@,��T0͙=���0�J�a�J&�*�J�%�g��}���᫏�n~P�ol=�`�Ap �7�6eh?I�E��O�9T�e�H��#��.GƇ�Q�gHF�S��#++��c�
�!tΆn����ga�4��ܼ�z��j���zE�_MZ�Ky��;��y
��� ��3����b��:+t�B�|�rt����MB�[`f�H�d��Q�T+�$瘬b�N-��
���Y[<*����D�K�x���d jٴN}��N�0���j!O&H`U�Tm�T�b�ҫ�˪�Z��Fq�+Q1\��T�!g�o���|�=���*�x:e��Lȓ��Z�6
��;ٕT\�Z!�Sq���LC�CI�'�M�X�q�Lw��&7��Ufb�:j�I�R�
�hyU˱H�'x~3�wʖ�a7��RH=��L��yɤT(�Qb�S�GY�MSQ��i�LO^�S$*i��q\��|��L�nUK�(��[O.������>W�MYz��L}r��Ε"��4�à�9y��@gt�e���8y��u��R�֖5f���o��]��m�*���ق�$�O�r-�j��n	�ƞ����s7�Cw�ڶ�|=���%;8;�:{xyv%��D�D��w�~/yX+y�g�Z2&�E�R����:�˛�-/ɷ!(\H6�W7`��D��b��n:|r����?�~SW��o��r��].��*�
���n�E�z�8�P�I,i���r�3���T,*_᠀L� ��]�#ۋ^�ͩ=�O�>ve��t}�޸+�pc��u�XJZZ��-	���N�Rb���>�����Q�,����+H�*p"���WpZ��b�{�ۿ�e��?�N���"d)a���K��J��W�L5�ƨ���eV�&D��]y=&&���h�D�*j��Z?j+��
���j!UmW������P#E�l�L0����F��&���?|���~�9���ll4聆��B�}m����ch�h1�O��<
�=>�I3̫�\�N����#Mg��OҌԋ6��LApW����zPT�EQos�r� e�N�8�pr3�>O�N� 
4��1Cgt.c�r_֒M��#	���,��}��p�,��b�Te���Re�gR_��Z�� ���q���nU��Ȉ��fw�-X4�aaL�?Ƀ��07p�“��Q�8�6kŲ�@ V
�M�Mt`�K��!��;���3I��m>���v���'�+E�TK�:��{)�"4����rj�ݜ�.v�V$zU�pڷw/o������3��{e���Rf����s��.`H,m^�Zsݹp3�K�Q���k�������<�ʂA��h��"��,XʠJƾ�ky%3fG���Y:���)ћIEԆ9t�L
E�D�q�}�R�MC/u#k��$�1�@�c��퀔j��;s;v�n6e]�W�o�"j�&�IIX<����1�1�#hC�5�
��@�+�H7�ȕ�t`<qXI�Ͽ~\m�1�1�X��T"�0S�*�G,hLl�S)S���jRCJ�{2�.`yaT�D���M@Q��tSQ$A�,Ew���5��R��H+�Uw�H�+���*z�f���@���'5d�r�|��W?����u\�zrN��Ұm%�rdI�A�D�F������fLV�G�MNM��C�AWؓ�!7@1���ۦ�,�Fs��N$�;t� �yJh��O���²}��(��sj����M��d��{߷�6�T�&o<��Zxq@\p�L���H8����� _�����q��be!1��L/Ǘ��X]�}��VY]Nhn���@z��IRhE��b)@b$��+8�|�i�PR��l��dH����Y����TE
@��`�g$�!~"@�=ۜo�f˒͵S�?�*Ƒi�Gu��4��J���q8��ݾ|~��an�V�[�1̽��d��3��>���a{yJ�9�e�Զ�󰾓��O�m7���	έ��w٩���=�7ț��;z:�d�����UZ�|j01EL@8p0��K8��o���v}���8�>dgY7g��WM��j�V��qn�5�$Q���G
��=l+sjY2�${|U�������uR�a����f�Q�$(R�Bk�
q١
�@��Im�4������շ�٠��S�Bs��H`�%�ه*���,S��@mؾ펇NI�t�+��j�Z�-���y�~52z(�P�V�cm2/�3����w��i6�t�I�U����%оs�ႻHh�G�z��ۜ_�����4�2l*)��q+��h_���C2ggw��U�D��ȋ�!��wu��!����1%xU򴆩E�����`�A�Q!�|�p�&��8��^r�)PGo��%�)fj
V�Γ)�L�CAkU�ǎ���U��
�r~��p�v�0R��
N�+�^���O�[ƅCk��s0����֢Ěϣ���/u&>��e�+�]	y ��NFI�]�_�I�]�X��*P$�"�-��f���1�$h�7�q�5�"�����j�
_lꆀ�L��l6~#������0��# dS%���mdOJ����|�t{�����:N |�5,lb|*n%ue�?�rq��J��AmցS0W�Х/2OY�A��p�9
��|-U_V�զ��tS�A}�Jl�Y6v�$��~��a˫�,�����H��ް�c
d����$b�z��+w{x�,Gw>9�T�E�=^��k$��
:�����Uʶ���W��n�x{^�b�U�wT�WFe��2����B�eʂ���[P�y��]{�d�K��?
��w��iC�	)x��3�3�;-�sµi�\o7����U��Q\A�X�޷�����m{���
���)6[�F/Y�4�P����)a�h��#1
/�����0��E�"��ძq��;���)���ƴ���D��'W��"�����i[�`�YOFN'��FΡ���1�)P��P/{�P���)K��@(��)�]3�GS�R��M#�\��3��\@z�HR�y�k�Y��Zг��$ۄ$�:��I-���ް���
�Z�n]̬c�Hx�"��
�.-REM�=M��Ϯ�	LGb6�J:������C$�8DZ9PI��DG	t�[`Ⱦ���*؟�t)��LybP�?��� J��fC��v�g8��b�t��8�O}�@�k��t@"�<!�G�Qɉ��f+��������k[b���dg���3�n�1�?�(�Cc1�b��'j�g��"�K^DZ?�xq�⓯��&+�/��s���q���`���!(�w�$�g���A�A������V)r�(fI��@c99������,�d��\~��B��%��fy��uʙ]��q�ً\��ز�n+Y���s��\��q=���nN�-N?�L�	���f��*6�Gk��G3��i��aѠ�	�?�,�K�X���x$�v�.ʌ*�eE;V~
�wwT
4���3�Ul�$l�Z�r���W�RɄ��!V����Ѭ��Ï>~���ᖉ�76$�P3�'��%R<��/?��?��Z-��G苃d
��E��%�0�F��1[}G1��:{��p�[���=/���{C8�x�8�z��2\����ѝNL*~�0~}/��ӅZ�5�.{�h*��E���f��x,B�����;H.BfV9�Y��#�J��R�y
mIE�˚Gu/-DWƠL)�0�0>��p���HB�\�$�5T���7�Y�#	�%=!�[�����_��� [
��g�T�G�+j�D9�%�?�E�=I`���ӡ'S����\Nh�慮M<���\A�ٞ�2k���
�FB��ѱ��=��I*U�G'�]�\��"
�q�%�+W*b��Y��������3�˳��a���Ɂt8o�����k���"�SH���]����p��>1�&���4�ޕ[��$�R�<��M�LC)��FL�����"/�Nn�m7B&��Tp� Q4%�Sb�� K�i��2�記C�|mK���rV�&��y�ժ�����Ě��U^��UI|�:�[��ϣ��S��	�����b�$qt:�d��.���?z��k���}���G�>��3�����g��}��W^y�n76��v��d�"3�}k{��{!�v؈�k���WYB��(%�2c����^�|9���"�G��@6���I��	镤��l6��קÍܫ��Z��fw��B�1@����((�G��p�Q�=�+��r���:�_'��=*�ނ�f ��o���O��Z�J$"(���8'���=�䇮<���n!���Bʙ�2��3���;�d�[�GJ�2rKζua=�9 c�h�T&�.(�@�4h3��%ul,�a�J'�f$���]���U�Y��Tr4B(�#��|�%ϮU�Ȯ�%��s�4�8��L'�
�%�
�V��12CD�@�r��6�x:����xD�y�	�r;�B�@ύ��F�=R͟5�˳s4�q�HB���A��TM��tw<^��~��C~
�} ��Av4z5�gs�\�B�������
]9G��E�械ࢎE���ӡۿ��~�=n��LPD�a�<
1j��_6b2��.������]Y�<z���i�]�p��H�$/��ȳ�{�L\�>����rh��1!�R�ֆw���4JR�$�|Y��f{�Ԭ,����d!���fjm�<��c��0Jz���n��ٌó�DžM�����`����Zy	_}��Y]���V����3Y��Mc��Sww��Q�B$Q�߼�j)Jg����]�π�/�t�'阤Q1/�ԇ�&;<����?�����2�5��b[
��򠟾�γ/��_�����,��Ĥ�'̄�gJ
h$�9=�Z���:E~��R��J"�b�{���B�R%��mU� ��ZÒ̚<�A�6q���Q�.����pQ�a��p�H�j-m���(�
�C-�2�F8�U#�NU�R�!�T���v�W�<��M���)��>�)!�	��q��@D��h9��G��(�Y��nx43�J��SMyH���C�>H����X����1Z�cU�=1��t�����jQw�읍`�a��󘜎r�W��;X$�4���l�%�X"}{<I�����Q�y>�R�n8q���)�S0��T�h����h�����Z�X��dc+_(e���_�c��moN�]�z?����P��'�:F4���diN%�,�QLhX�"ݣENrʥQXƉzP]-�Vv�qZ̈́d�l�m�q������-;��v�g�P���h�R	��h��CҰ��3���Gʃ|�%�!���}C�v��s~�A�fW�9;���/�А��x���)�������Nz�w�VdU���ukz���D��X3��8�#���	b��6TҒ���Fピv�I��%>ʓ���a\Ks!Y��9L��}u��i�wМ��맻��ȟ��T_�Oc�J<w�l9��Fv����3��l����p��+R��ü�A��c<8$�V1$�36LJ���[�}���ފ���sC�a��Q!��鉲!�ٱ������>$n��dCXS��+�ɝ甊�h5,�ʟx��w�l�i�T*���&���4�J�(�D��̽My�k�P*؊��<��`M��c;%[ߛ([=7�T,�M9bTB{=`OE'>�ڽu�Ps6�j�
�M�Aߔ#5���u�6��<KC�<D���<��)�Dl�/ʑ[cG�U�� k�Oxk��3t����'b+����1F�f���>;�h�"v�X�
���H����qzU�<�iB�;չ4o	�xR:��lf|t��sʹ�W��MiH-�yʊ#���[�Qݡ��	Kp)-2�DT!&;l�������5
���h���ԙ��
ٱ
d��mq�t绲y{N�p�x��B���>I�eT/Ss+N��H�
�0}S��T�J=�)$uB�Ǒ"�M�_!)��{VZf�,A��#�<�]y����E(<��!�}�dP��)5��9p$5#ͥ��*�FT�z���dd��U���偐e·��J����Q>I:�k`��rә��ɫN&<�\�ij���S,&m}��o�E48�88:"˺#2@s4��ɪ%���)���q4�����!��f�?9��$/#�H�8�������åb���
�ڦ���G��o�n��1dS0@�Y]NfW�O~������y���u?#��n���8kqW헕|	��k�| “>�
��˓gg渭���UIf�ι����K��%���ٟ�������P��T�,�Qh�y�?G���;sz���v��4O,�j��6��|:mO�7�?�(���N8�,≋K(�Ck���0 �(Z�?w���0*�1�x���W�,��b��)��	�7���*՜Ӳ)�/�����*�Z��:r=X)����
=��	=��~I���ۖ�fnҫ��@m9J�e���x�ؐ�T�(�>�X�f�-8sU��͋ā\�~�\�M�Y�f��X��:=�5���7�
��op���6��xi���~{i�+l�A?�-�2�&��*O�'s���(�y�ki�e}:����n���g'��@�o���W0w5��%�H�N[dUȎ$�?���䍴Ө��h�{²�0�K^�������F�ө-����_u�L���ljT���K��m���mK��Ԇ�N}S�S}��3�	�dG?�.bn�x���;PWݴS�ۇ�G�N�������o?��_��,������_^}��GX�����ߗ����'�{8�^\�}s�ݦ�8|<W~'�;u�$�2�<?�_��M�đ�Z'�c1�	C@Ϧ?k����1W��H�Xy���
���k�KF�Q�&�~�kH1|�O|�l*��m�#hy�
0ybQ �����F	��-�ɨ���J��#kV?��(�@PU��	�a�`;��B�ɮF-v��
�.ci^�V���dT��0�II.*���z�'�*Q���9:{\�Q�:�]R�4������m�!�z�jLM�'k�
\&V~Nd0G��a�I���9���S�A�D#�=�Z�뉿f�"!Sཀྵ�Etw��B�R%�)$7q�(KY3u�Ҷ(�H�J	��4��<zN��I��/]�׊J�aDQ����kp[��'�lHp� T��E�GT!Jr7p����u�=���l燮����EN���%��ڼ��H�G���A��?e1����u��uu|z�'��w�Ns���9kM#P;%������~h9��x�
[d��n�r��.����K�S�G�jvB�E	E|�<2���]�Y�M�F���=�*��9K�(1V���ʕ��/��:�|z=q��a�0Ɇס��V&Y�y��J����s&N3�b����e��,���g����?�����|S��G�)������#��z� ������o��O� J6���Oe;�����O����g�L�r�	l���z}s�o�'�d���+�����F1�����0�P"���jj�S�u��]�<���4��I�W��Ĉ�� 7IY�.�P�p��e�%���� V�/!6i�/f�<I��k�|��&�����7�}�K~~7��	�Cɶ˧�N���S��m5y�p]��i�%��)5��W�A�<���O�ʳuv��Ԇ�5SKMEZ?���̠̌v�@���L$Y�$c\r�N���k�5�Iqc��'�4IN��:��j�AR��%�ga�Z�xr�X�W��@�)�
֚�"��w�F�ɒ�Dq�RF��0���$�+M(�����!* pFZM����y�3f)�"F
㲚T�3�%�%�i}�嚖�P���	(I�(
nz�k#xb�#��c3�r�
����)�<3]\KETU�M)�0f}��]��ɣ�b??������W�MWĚ�sV;,�N�}]�UٔM��$���ϓ�YJB���9%M�L`����pUkb�q�P�	�:���(�$W�"sW>a��� �e�3��3N��Í�|I+�6�<�Ql��-�yXc�a�ƻk��p�"�l��d�Vē��Zj,�:�"���>ߝ�չ^~B���owq�q+��싟}�a�G�n���7/o#Y$)�A��v���?��Dƍ���(���&�G�^�[�3� ��
&���R�����$93�|="�$ڬ�׃l�=+$*q�L]1��G�3�y��&خ9W�LJ�U�>����W�O�<�sSB�M6�:���a1B�Q>���6X���J����n��T�}u�'suu���76$V�����:�P�1u$1�M��P��2}M�]��%q��B�r������M���Ut�4ndrF�c���b0��@Z��$|�9�b�դ��5��>[U����c���狣CGX&�8Y������"O��Js��	^	
]v�=w�e�¼jM��Gd%���2�$�G��o�Qs�/��@r��r
�xT��&O�Pň��.�I��z����'�r�N�����-J�ʟ��1�����ő	o��n'���7�k����LP0m��<�Y�����&�$�З���<֗˥��m�|���*~R��C\@L�,uO�t��3�<��eAo�:?�Dl���L���4vS���0���$�$��LU&�쭰���758#֘�0����jW��jP�ޛ2�x�H��s�{U3�G���[�5SU���+5L�h�R6��b�I�����rA8��������_��5��J�:��KE��o�`�e��汽��l��pj<e�y�h9�T��3���j�ȶ47;�Lߑ�gK��dL�͎�rӪG�9��M{(���R�1�ꀊ�����e������e-Fd)d7R̓�R��Ê�4<���e<�<�&��K��f#�
��&8���s�CMt�3��D�Q��o���b�Pܑ��g퓱S2,��ገ��ڲ�0+����j��K^�~�L�HF��<ʼn����q��J�D��1(�aC-+	_�S��}���;�<4�g�y��4�v�&M҉\�HJ�!OQs��ঐ�BKUÓ��!�i*�aq��#"�T�PJA�5Օ�OD�"���3v(eoBW�MGO��`BŜ�N��֝Z�
V0�pt�-�)�Ǖ�Ͼ�'�H��$P��v���D�C��M0��M]���P�^�z/���������P_��iX�r�3�0]�`2�ܸN3��V�ͣ�(������Y�	��͐���@�R��
�3��'���F�'
6���B�f�h|���z�� �'_�3OQ�.����ﺖ�Sdh	
�;��5���QЍ���ӻ������9+љ1���;��i���*�2�@�
b�تO�L}�G�-F=�a�]�OB�����j2�	KvL��i_3Jp��"��}+�K�g����x���cvmiެ
�l��9��"�?E»�{Thb��pz��Q!0�ɚc��A�� .q��SL&4iP����K��c]�D�NRX�,o���k"�O�=�@H-�M��P�Ø�?�/:؜V�>�h�*꘰�	�������Vt���
50��M곱]@�])��įQ	����Q
��Oї]x��
���*]��lZ�h"�pMb��X�Cϴ��J_�
�T�m�Hx�|�9�&	$��W\�z�@RD0O�m�X6��W�	y�Æ^�ZC{6Egu57-���p?X��L��Ѡ���z;���]:�,Z�������GN�4��Lw������~��b�����$����e�V�gK�p�yK����1��LL3�q��.��CJ瞛K�~i����Gq�W����ӑ�A�-��rk��\�b�8���6Q�a6��_f�J��m˹�Ms��G�w�O��ܣ�����7o���s��\!��2�Q́9[Iθ����g�ڙ�G�,s���
�E��
�O˕E�+=���_:�	�'�qY��?���l��[���5���?��ӟ�y_�f�|+��N�mU��	'i8�T�����B�$.\ޗ+͚�X�55�5Nu{a=H�4�$�{Bp�Z���pL"7�o�����g$�&�8�u�a���zNG�0�-��ʟ�m6�?Lt�q��tz<s�=�&�9��ep>�|���i{�S>�b'#^[�eYDq�'�^��h�gz;�K�.�A43�g���qj)	�.+ ��r�",��B#�V��J<� 	O��>�$.
G9-g=�k�zli,�+�b��U��"�?��?��$7XY�:.���PK!�]A���2]y��д
���ؤ8����7U�q%�h�|��г���P3��H�8��68�ފ^�di���i
V�z�|�4������t�R����b��k_�
j��j�!q�4<�g=�	<N|J�d�{�r?�����e�y�ޓ@��+�#�ӈL�.G ��UY�����e�t���۬؄J������Q��?[w��l�F���^*�J�g\�Йu�˥��Ǟ��pU]��#������M�a�-҄�3�FF^�_�:�LK%�4��=�6���E���T6�4Q����!\q��Ó������F�r��5�B=B=\ǘ�L����u���O����G��dW�\��[���\�t(��ț����x<}�O�6��m6cw�MR^g��;��1Wh���$z�� Yi���Z�"���N-
�ቕ)�K�i�K�8i�fS����b�q�)|��(PQٕ�K{ɧ��mX�3�A�_��=�-�;�5"+Xv�5��9��]��Y�h�^���i7��HT�0���!����X�T�%�����i��do;����7j�O����Q n<y&��
�*�����޳�+FD���AYC��V�٥
�0	|_I-R�&P�PXzq��^2��lA��Y&l(�H��<�k�����r������Q,j�i��y���f�pw�z� J���5�am�'m�*dH�Qa���r���h4�ࠚ�3-_Ҩd��-�	��}ù(Bh�1�]7Q�eP[R������� �PD�3=��s�£��_uc�)���l�CM�?�X�߫��#eKԉyMn��s|+Ki+��N�[Θ�8-OuC�Ժ��l�-
�ݛ��g��fi6n'�M�>C7O�=vU�·ZY��ݓ��J�3�O~/۸]u�oc���9Xw#�ˎ
X��t���p�8/uy���ظ�g#� �9-�y��C�Co]z��&�`���.�b���:��J�:�mcRI�o�&����7_>>]>y�ҡ�h4�g��w�矼�-T}r���錐~��e��!��3�nT�,��qP�Y:���<��7uC��m����{@"N��#<�'5L�P���>O:�"�H����.�&������sYݐ�1ŅE��D���7��z�-X�*7G�ב'�m'Ic�����>w,0;6���E06�}���4ݧ�+��D����Y�l�d�p��1��v��g�b�6�\8r�@�;_2P��]jbd�Iġ�)O�<�TYe����:�6⺸j��1f�/2�$��oGe'DvY�z(ApO��S;|^9U���*ѓ~�֒s$���������
'�E�M�T�'�+[�8&�^��8i\���Ρk5����q$i0\�ƎATd
o�_򙵾�\+eeL�x�,��2��&`3&�"y�:�BS�e��V���~�~�0�U���~���prϘP���a�7��ᩜ��_2�	U{�NbR�#�~Oі�5���(-�8K7�&;�ڪl����~���l��I!���tw_>
�@W����C�U�H�,pca��u��l^�����-\E�df�5���ݠTa7�f�mW)p�Z{N�҉%U�V�xMѕ�'y���SK�P�/&�ܭ�[�<�lD-��dj�b����4�� Y+;�S;qy��/.�0
b*B>υ�I�x��:,�6y��CC1�bCx�$��f�>�΋�E0D�"��00+�Q�yo��]�A�e<�ͦ���v>-�݀�mi�8�a�c$֩�\�dq���8s%�n�m_��\����%��ѡOŅ�cm�
��`A
�n��4ugZ���I,��u�*��8�q��EU��X�"�/'%kg.���5.k N�c�w��C�xt��Q���[��*���LƝMԦ	�u(b9f�'�/SF�5�i@�p�~�[J�&�o�sQ*=��aIS��WN&W`��ў�.S�N>�����㵆�T��j+�H���Y���Y�Ԓ�$2�/�3_�6kHh�ʅ�:���$�9�c�̲�t����9Ȩ�{�&/bo���D�M�ML�]�9*�L��a;A��O��}�	���iH�,wO(%d�^�:a�-��>�#9��a
%���=�BM.V��=�f�<C�OƳC<�kQP����v!��*_dy��yS������ŋWIJX*��.����cu��)�\�y_���J�߬FB^�f�hJ�D�:��'�M��$���C�Ե鸗�5�P9f~vX��dif]1�+W���h���:�=���Q&oE�L܈+�g�`T� sd���H���B�����bf�iJ�O���~����㧟}������'�ԐE6��Q@���Y-��#;Hb�)����Вs{.�,���$�?�g�ij��z�_�>"��X��A?V���Q�x2K0��9H�#�4~��
�δ�\	��<��U���(65��Y�q��f�R>��]�l7��C��%W�s�I��SJa�}�+���3	�R���-���fv�^!yBDB��7b�� wk;�Б��"ܑo�VyL��"-L�Vjs;��I�Ӝ��:ij��Pm���MFx�2�߲�M&yL�l��xn�6���͓@���L�/q��$抹$
6)p��J�Ey�l�`�c�	�GM����+hd5P[f�!��9k0.g��]���7�<���q>r<kM<qSHW{K�
�-q)qpC�r����'1í4>z�e|�d�]IА>�dv9q>tR�t~F3e�mW�ϲ�,�� �"UMp�0&bF�l'<e�|�B�4�f�+�#��NDxw�qF��cyq�pby��2.R�,C�t��-��d�x�rP6m�V7�!:�R=�9��!Ec�M��;��ڀ�If(�EDŽw$:D��@��0��Y�G�~!�6�Hb}c3���F(-*ZЮc�ZJ[\)���<[ӝ�ҵ�[
��A���Y\�q������'/����a�},���͟����/��?~ps���?o��d����zMB���\�@�X��E�)��4٤�zm��g6����
�Yh�Ѡx*7B��Ң]4�;_.��z#�.� )l1O'5�aj�.f�����*P5�`�b�q�f�,�(j��1�{�{d6�w(�"OQ�j�XQ���q�yl����efVM��}��z,@�����#�<�mr�#6m��0"&�J�X ��5�s�k���WJec��kj�.`�4s&��0?g��h�A!�Y�e��G���)X�Vm�A��*��q�e��t-%9�-%�1���=K���<��,c�M�P���S4�m�Z�I�SDSZ�pQ�S�<|�L�%��g���y�A�Cݣgpܕ

ssV��U*Ġ�Қp4��F*}P��
2m�sg(W#�[>I0�殲;"I bj�Y��V�-�G�n���gw�5d�����f���e��N�Ģ簃:G��C��{�cU�����3���{���w�w茶Et�k���ۡ�已\����񗕤���;�4
?4xa��i����i� φ렡�B&5�����(�6�����o}�Vx�i�R�fnE�vW��bӐٺX�6W��gG<i�NγZ�<%s�;7�\sW;�u���K����_���O?zy�Eq=��/�E3�^�e��ǟ�?�-b�͖�"Ǜ��r�O����9�]�k��g�~��������1�-���l5��]'zFٙq�X�ʙ��PA)����4���s;>v>��yOp���� ��6��=8oGה0U��xȎ�Y�1k�:���@b~������/��R�}�a�4̢�bJp��ޛ�o�.*��G���!E�O^�Ѩ��t#;�Fˡ�k�U5��A�x����4
L��mOް&]�<{=�P�Qo�(��i���)
Mdw�T2��3^i���ũv����
�T�i<[h�pˑ�s�"[R'2™g,��"��~U��Jj&�j��y���)k�������Y(��i��μ �%��<4�	d���5�0��P��Y�{\�ϼ>��Y��9�^�\����̪p�q%i��I������{�;��:2"���!6i�
L'
�S�u5��&\���EfV@p�$�:���DT�;���t�x��ע��T�x%��0
��"��E��w�n	s�s����f�5HSד��I�	�j
�VT���p��l(Z]��j��$N
fx+ڎ��ↄtF2��F�F�ⅴTKL��U)Y�L��DL!D�m3lS7�C��5Z�6��'�^�qY�x���_���#�F�?��g$u����9-p��W|��>��Ջ[\�6�;ݔ�wF&���*�բ��ւ�l��T�l	v,�XD�酱fXu=mS\A�,o�n�;���}����+�2O�Qq���e�42[�
6^y�,Jfw=�O͛�<z���G�VV�E�#�y]�����>���p�Ʀ�w�""�LF���8����v�KU��{�%�ɉ�t��$\���ed�.�L<i�NV@�b'�<H�����ʩT¨�b�Qh)d���,�ꩪv����8%�F#��(u��D�i���a��6�)�3���R`e��$G2���	k-D�u��ݮy�{'�י���sF�'!?��8�dw�t�\���q��K6��Q��R�c�t�����cZ�<
���>ަOBbHL�2e�-��y֍tN�p1xĴ�������ȝ�A���&�o`;'����;fF�x�l�My3[�EV��n��P��q�]
f�q�����H{(v��+ڑ���̲����۷o��Nx�$*e1ۨ٭%n8��FN-D�E~�9�\�ؙt� q��ŷ�Rm`c�:��d	q�i�3�N�R�iLh:�'/"R���AQl6�W{ܭ�sfl
v"2�����w���/붒�ᅪ�h�{��+���2UteY,Ȕ9�q�kx?���O���?�Wx�Ob�1�K=1w�S�51����ױ8�����pb�ÙIr�|�͛�g�a�ˬ�D(63��Z��D�l�jh;Vw!��ʵy>�ơ�h�����e��ˀkE
p���Y�p��E��]����	�#�_�,�s?[?S���
'KÖ1�k���EL��j^�؏�0��N��|a��gz7ɼ��C�]��ϩ���j�J�!���㗝\�-�Fz�E���fS��/�ȫ��n�MK�RJu�{;�
G-�~86����X6�����Q�B�G�o�bs�2��ǎCL�u�̩Υ��i?�$J��Ҧn沚?Q���d
�{�-��dcI�!�w�W���f�j�Y�$���33�i��.��C�8y��<��C�j��D
C��Δ����&�rHw�XN�$#[\��(G�ӳݓY�Om��Hm*�Z��˲�i'�a��4-�Yc�f˜������7"����SYV��_��^pD��9MS]�(�,�<��p�f��(�(T��!���ۮ�r\bP�$�-�;�Ge�����*�����,Aq|����ӝqmm?!1H7ۮ<�mE�&�93Y�|O�̋r?�Y{�oh�`u{�^��`+g鞧�����*immVFP�K�VC�I��/i	�5=����XV]J3�X�C�@�\/gV!Ǭg�^�I�t��5�A!�]-Wɋ��I{i{5
�xaYfO|x��c�׌O^ˌL�*���'z���v>v�õA��%��I�nxAHNiP���.	H�^����O6Y�4(�ƌgS�gBo�PMf���
��cy>==\NG��x�f�y֫B��0�TY��]'f�x��R3ڄ6����&�a2$g#�bE.�A)9�Xh����B�r@6��=�8�dp)n<���ma�*
2?P8#�q5yFJ̓#�Y�Լy2�R2�/F��X�u���@HO�4��0�jcʂ�ˬ�j��������lpR��9����<[��K��j��~���3��n1Y� ��^瓪�R�f5A%��&�GV��M��dl;z��9	%��H-@6��_V�+�P��-�7�p�=�1������`�4�,2>��2N�b�E�.�%���m������~�o���۟|����D�r3�r�W�)��z��R�U5��Y���3$֎���옕SN�wsf�KCTN<gC�V�����I�����"��D&_�xcW�����>(����_�.)I�a��`����������7����fo��K�>�}~�/VG�5)0��}h�o��"K��%��Y#K1�؟�Q�d\
OU�c��RF��á��_}���)Qh�y�_����Tm 4G(�8>��dgJ(ǖ�c�%�>�A�sȲ(�	΀��YX��,�$͚X
	�J��$�,�����ҘwI� 룧~�������g?����E���b�o6�nw���d�$/���&�~��9B��F-���@Tti(���-�aJ���;�L�@�Ad[3��ԍ�,�8	Er�ޖN��
[��m���\�*���W.�o��I-T��Q�'�.*�O�����_]*�f",���H*hLl׆�@O� j!#e@�3(�C2��44���;'�y��D�vi��njX&�J�%��h<l6�X����}eЋ)7����訲��~d=(�켔���Zwc\�	a5rs�e�՝�fm�8
X��%/¢ov�3xV�1�wE
�(h�t8��x ^
!A�#\��~�b�"�Y��_�x:/�Ԑ%�<�|iW����c�6;	�����B]����YƂ4;�
�Ĉ^s���s/��,�� jX�y9��}��Ǵ�h۷�%k��7�+b�	������Do���uu<>�}W��(a�~&�e����b�vn(ucא�"n���ɺ�2LU��X7��[��'M��O���"��*�E�]&��dL'p��Κ�+ώ��f���=J}s��,�ih�F�Yd�"NI4h�F�"D
��-�p}�p���!��ӞT�z�����ں����e!�&Q8�QO@�(K5���r����%ꍄ�m��5d���1�<o��������t|D<Ă�p
�~����7��wG*G����cK"�$+����td@u	�b���My6�1��LH=mV��C�Da_�!:��2�Ń�(�W7�XP;G���L��MY7IÒb$�qX3��EV�y���k�l�
�;�^]i[O����1{'N���A�M�?h[��~*vȳPƦ��E�Jq �y��e�h�]�FpLΚҋ����d!v���U���D&3�e0���8�V'XFJ�첤4!�t'mI���cYvR$t);鵨��
Q��4Bu#�P@L�wy�Q�*�i��&�vz�TG_���,�O9D�!��2��d-�R|4o��b7m��M�%s��瑪�!o�t>�����o����6I?y��7�)	��]��!��@o}��ib�c�/����
�j�����,٤�S���� Tu�b���K�G�I�/OC�D�X�8��隧cKX=�=A�,o3Z`#�~
p���^��Y.��K�ֆ6��b�����,&s� ���V����o�6r��'�q �p��0���i��Tv-5�$}j=��nD����q$c/�~2�i�k�v]�zjŞԌp�Ȁ��+�P;Ǵ�
kH�
ܞ�#c1S���&>
��X�MY����1��7�y�d����ɲ���[�m��/i�!�"�c�0�i,9��z�NנR���-۩ؤ[��8��ާوo����VU��n���.�Gqa����4p�@��ּ���pވ���-�%�c^�-{K��\(1R7x�8PUnSqq:t(�e�j�X��\�Wg��.-�ȻƝ�\K]vл����6�N��������d�x�M�?&�5�B�鐥���6�1x�QI#�T���,�����i�YLj�ﷳ�\$��Qj�XBV]�ݜo+��E>�Q�
�?CP|
}(��n��~�#�����C$fJ�ֱf�L�
�5<^/��;X/�l�SG,!�y�ha��UU|aS���KxjE�52�<�iEF~�3�ZB�=aH<Qc"R�TQ T:�P��U�C���P�l���Ñ�dN�^�n:t����Ψ�P�%61Ei�c���R �%�g‘Lj�L�;���E=�DK���^x����<l���|����A�ɲ�}4ͯ�޿}�p�b\����W��I��M�M��Ձ�ڼ߈�I�L�QU;�;�{�C�⃬C�AHg_"΂dC�O��)R}��/�}�;���ڒ���HC�,��3^���)4�`��
>:�8o	YD��*���)
�b<�,���+��Չ~r�E���°�MR�(����)��L�F�a{�@�Q"�c=h�A·!]}��u���(��Ӆ��K5���_����>�nl]�:��[��q棔�/g�ưI$�����њ�˲�P��-G(UU�{�<>>�m]l�N]�>>~����t�f��>�`_�q��ee��#G{�*}��}�`���ݫFk�W�g�,GwB�뢅��� {%ڌ"��q��w)�J�7�dP��@2�B<Y�0��n
�PxL��sO��rM��z���s���dJ��� {�Ab!q놇3�6�&�j`����N?9����K��$$O��Q���Ny����z��x�s��7���_QW��:�/DZ��3���.j��v�	�>G�q2J��j��{E[lj>qZ�{Y+�VbKG������L�<�@ҿHL�):P��<s��۠\�ڕCFQW�B�0O�Ӏ�U׭��X��HS+�("G��ݥ:�{�|��b��U}{��8��I��nS�$^=�n��bA#���U�o߿gOۻG��
���s�h<e��z�7�&�$�����
g6�?�6��~�3�JE��*�/��d6�jx rql<�G!��;��Oj�x�R�>'<�x���dYb\����Z.6Ĵ<����ɀo�K�I
�XDld �@(�`��:M��+�#MC���j\9a6D�ኛ���uL"��4�s�淿sT�+'c�le)1Mcq'P,�&�Ɖ𶦜���x2u���
�G�N�e��m������|�@�Q�I�&52�zj����t	�d[�;��8�(���8OBNd��HS�'窘��Cv8\}��*
����vՄSs�H-�(��r(`�]Ai@���e�cq�'˜u��jN��ȺIb�8֬���ϲB�a��l��XCؤ�H=:��:(͒9�/ܹpb��ZCC�Fu�&j"�!�	݀ZZB ��y�P~�}κnCz΄,�$�C�Y̍�zVui�(�~���n���/���BQ�c��W:%(,p_I�+ps
6R,�ӈ���a5Ȱ�t���G��qh�IӪ"���hr��k|d9I6.=���Łke�:k�)ϓ�w{T�^L$�C��Щ���I��q%JI�L�Z�O�@T�	�$y��2�.U)�3]qQ��v�:&9���=~�fcB�˶{:���)�����;� �x|BdO�Ż�7�N�U�&b���TD]>R���HtA�Q��&C����g�/H�z�� }���B�Q��"�CٱG�����0�*�q*�����4��,;���޼E,�䳏e>��sV� `�On�Z�M�����ڙg$�>�P[ː}�K�7����������#��r�l
l�K�����>��{�w���	�����$��իT6%���t9�֐��{����߿��s���:�yH�s����_����'	"�ޢ�P�~�꒦���� `ɐbR54��$���x��M��d~�� Ny-�jsi���KVl��ɩZ���B��iɈ<^�'�-e.�6��D�G�I>h?DLG�x{s�H�Ja>E�Dy�%��m���@��e\.-�[���T�s���88:��=��*+RA���-�3� tV�HY��O�h��&�{.�GGE�à�q��0�i����8{\�7'D��L�1�Y� ��r#�MK�/%��\�Y�Մz�(
l�Bػ�p=jh�T���Զ�����|�2M��<�h"��!�	�>r]�G�	>E�ijܯ����B��a�h��@ #��#}�^c@�����bŰ�ɢ�Jܪb��IL�Fx�I�Et���i�Vc�#�	�p(;P�Z�*r�Z�X
|�
6P~܀ʳ��T��K�[
�&	��/�$ΨE=�]N�g�M=J�,���X��4)E�V�@��$�����do�(^�z�dgl���k���pJ�� �1[{�U{JF�n��H4tD��wۍ�8��qx4��տ��F��Л7wi�0�t<5�8uia#?9��d�e�f��J#p��=VA�4Xvy�����c��,��w'�+ɷR��
?D�!�E�V'~_�#~;o����������?����z��-���^__�D�f�G�ةQ���{��]�iJ�6�j�?1l��ul�����C���a��m5(�_�i��2�A�&#1��k�1�~�ƥ�U�:����أ�g8�j���=�6%
2M�}s�$�9���u��T����{O(�Xe�H��P�Ĕ&�]o�$�t�a�g�5�'����Z�&���Pn�ΎY�ƻݖ� ����O�
��"`rKsoN����n��'���I�³�0�t2�@ޱ�,�	M�}Q^3��Ȇ�7�g��dO�x�KR��xMx��В�,�5:EQՒg�k��T |NTW����mc`
���f�y&�'	H;��YP��I,y���K��e�	))pl6ͥ���d�Ymd��}Ea,a��eם�eQD�hH�%Ze�F]�G
�aeH��f������5���t�%*F��Q��	�Q��%BD6U���P��MLDZ�a�w4P	l��Zv�|�Qu&i��U��H����\].M�D�z��ٯ��p�5�2Dj_f�_�X%e�8W5N����j�o"�AK�F��ԉ�f�5�˱q�ͬH9�/�g|,�Q\l��#�����v,ȷ��>=����YʮS�g���vJ��j��G었�QL:�8���	�9�I"���m����f��͐�!��x8\Ʈ�zxoRD�B�����?�ы��?���Sx]�q��h�a�?��(.mWҰ��?_���,id���uO�#V��|�ݗ_�6yn��#؄�b�P\�{A�i�sww��:������_��O
���⢳J�P�X�P�L������*A�ī�@	��������T7c7Vu�k��L�8B�*μ!ީ���o
$x}X������/�+D���5�}y�/�a��%)wW�`�_�/^��ŕZ� Qx{l���댜[�#��K��Qᷖ���%�8e�1�ZZl}ҍ?>\ei[�8&�@�ъ|�K���5H�R��ru*,cI��J&�Ӭ�.fk^Q�4
�S���j�7zH#PUt4RC������w���h���k-^yo��VK"�d�ɷCxj�,)ebr�]�TK��X�������
�9(��Rۍ���6y!�,��4����!�3�fT^�ȕE	�o�S�a����Vߴ�WJ�r^&�
0�
4��I�Ɗ����r�PS�Qd �ٕ�m��6��1n����V/"Ay)Og_�z����� �43��sy͋l�\�H5�(�eDؖN�
�ԏsr|��T'�4,��@"zҞ2?�G�	�@aAO��#��]�ĂE�ą���4�G�<B1���M�h�\�#�D\O�ĸ�S�>��]�gx��8n=�it%p����u,&�hnw��+��'�4�f�{Vд4�B�\ijk���ؽ~�
�E�ş����aN'��@i��F�pA!Әe76�~�<ʽ�I�RU��Ѓ�Bw�r]V���&�L\e��pH���qܗ�W8'���V�J7K!���\`M@=�:�kCkA��&���^N�6����n���^�dY�� �>���L�q�v�Е�8���1���533����T5^�7]�R����5��|����[�|�S�q�"��i��n�Eѣa?6M������H�~���"C[ʳ�W�<\q/��'�q�.�	�\G�`�\<�^���5�^G�h�޳��hO�3�H�^W��O̕ �v~O�!�Lˉs30��Q���E�t��.v��v�o�����~@�g���n�'�7�u�������#��%K���\�s6����A��W�֍�QG�B3�0*�t��rJ(CK��-݅8�&&ϖl�2yp
���e�8�M�M��?�2\\ٞ�a(\��#� �
�t�pij,�O<��@fu����GV�<|��|�R��֛����>�E�Q�۶�ȖC(���q�zs��d$��i���^�-�X�('���'�$b��c<���Ǻ,Q�\N��F^D�-��DL����MMº�
?"�['FW���L����J�2)��؏�M�ٴA��j�S'w�H��f8�\z:X���x�o�W���i%ڃ�@h��;+�ݚ�J����E}�?:�id ��@:������~|K�{��̲�ַ��$��d�dX{� ��v!�Q�մ���3�#�9�	����<��9x�9l��"�
#s#6���2)iL�ʰ�"b07�
W�JO�F���w��a��I�7Nh@n���ڀ�
U����Wq��؁b�	�]���@mR՝�9��[�zmؓ����%�Ə߾y�������Խ��W/on��R�ͧ�\��l�a��.i8D�|�MI���9ў,�q��R��x��	N�pb[i5���D��H�P��k;�,3Z�G�T-�|a�`?�v�^�	ː=����euf���7���q����8I�H0�K�vED�+��HyA�?|����#鹜Τ�=����
M���͝ZA���K���Nԑ�`;��@��^ 5��H���S�$w߳�iO 7~?�R�-eO9p�%�8Q�&N�=�p\)�쉿��4�<��i
[F&����F�t=�K]�ݽ�;KRj�E�8d�,��nq�S�c!P�A��U��Ì�_��P�t(�vty�0��'mL���~~W>�{�O��W/�yQ��;������yx:'�||zt8�.��b|����]�8��}�m��{[
�[����m�	�U9AhT9���S��t
�Pa�v
,��fFP��?s�+,l�<��#l���U���rZ̄WZ��|���*�	�o��n�l����Y.��~��+�#W�H�xn�ƹ2Ap�zp	�wV�H��<��̂�e���.Z4XѬh�z��mwM,�����!Q��1�1��9�\��f&8��_��Tz�==!{�J�)6���KB����U�7/�>|Y׍�w=��Bދ-�����
�t�P}�[��0w��]ꚮ6���U<$�|Ì���0��wW�4C	S��p�O��w����FꟅ2�H)LD~$.R���t�?s�$s�j�!��h!���K�q:�N��+�d�����}d���z���.l�I�f"oLu���}�z��t5��gBG�ĐOB��)F��?�n.j:&>���^�Y.�W!����!�۫�6C��Q&�Sqݰ�ǡ��\���,�GyW�4� &�-�mY�ax$�M�|%��]���A&)�Z���&� �P�3���+U��|�I��b@��s��I%;�E�YFr	A/K��A�<��y⩗U�z�j��@g����dj��L�N�:�Ј���2�nlmNG���I'�H�	��Z��a���?����� Z��tm��F8��&
G(΂�/�,/�"��B��xюm?���2�<N��{����o�����>B
���x�����^UWx(�$.�~���Q?>ݣj�(�1h�O�8G��_���BF��
�HW��
 uXp�􉚨]#�5Tgۛ�p	2f�i.�&A�lԖ��;�!Ri�<�%܆+y��cݑE�+r��މ2�?P�
�C$��y�i�,��g6(�"ɚ��2�x-DƘl���V���K	 Aˮ���PkC����qJ:H�A5����ƹ!�Ȉ���>y�\Ϛ�H	��'�� j8q�0�$�,��5�*b
V*���[�k�b��'�W)̛����m���:���� KwބNt�o��v�I��yt#5v"/��HߟUu ��"�"�-��7�+q��KW#��C�!�w]s| �h\�a��y�I�@�P<'�в���
�Q'~��(u�\��;���k�*���ޕ&�"֧	+�8d$!O����ђH�i%���	w�G���A�4G�2
F��H�|[�ƃG��j܀��қ+�$Dɵl�0f��K
�a~C�ԥi�sٔ}�_�ئ�+�Y�+8��r�>
��gS�>'�]aI�IXDy!}[�j����LHa��
���s���y��$��}��l�8����u8�LV�Ʀ�dc�"EQ��J�
��T̮B=��GEǺQ��S��x�r�ē���'����UY}��V��_}���Շ�po}�өc�L��{��<�N���n����Ŷ,��ݽ9=�Qx{{�ЋI�J8�4E �;��q���u�MPlv�|z:O2��yl�HG.�^�A�'!��d�o/>;;���e9�8ղ��&q�iY���5��	��Qp�K�̝p,
g,¢������a=ȏ��v�٨��U�ձȪK��x|��R-Z����f���~s(vܧ׿{���w/^�Z�֣�7��a�`�4Gq27���alR
�]"ɉUX-8Ņ⥃j\��
PJ)�eq��z�H���z ��	AӞp�v�8˷Y�^�&�i� p���#��jO��˥·�v�hG
'��Q�T��`�"?,��O8�"����a�ZQ���
�62���Ȩ睥;"~��Ǚ���:߯�!Z���ݤq"�B�{��X�q����ܻ]��H�&��35(��P��o=N2�l��G�%�\dx��r������Xx*2�ke�4F��o����f�汘���c��N�>��&��xӨ!�X=6]*�f,p����L�'*!)�4=��X�aS�u��M8�]>�6�/�Y�u�ODbDx�uDZg�v
�p���D:�6#f�����on��B�l��Ƥa�Ir�`�?���8�p���x�4�eB�
�q����m�{yp̊������:2�����%�I0�y���O%�w�-p2���o��WX����~z�/�����G�����-�mH|)�<��p�ϗ#��������j�M���	MtpR%I�<9��=i��vCSi��>��ܜ��/�	����~w9��OO�^�ėJ����i]��ǯnogןƆ#!�x�
͊(� e�sdrUҷM�/�*�-�#�ի���씪�]�W��"�\�3aYu�ŏtss��W_��Ljb��.��g��������?��o�U[U�/�䏆����~�����f���W_�tr��6�f�^w����/�_�}���ߦ_�f>E�&���_��_�I�T*XG�r�k�����k�.;f�Q2�H>�F���ϱ�M楟���	g�a�)�Jb���\���G0Z(���w�]���q�J��t'T(K�Boz���E���U�)b��]�Ϝ����$�?ɢ4K7�ۖ-�Br�a���F�Ck��O�i@��{t��'���ā��b�]�~�?���(���h����h���Փa\{&�Q�eB���� /��Α���ܝI
pK�@
Eox��֣)�1�yƾ>�sK(��xh �
IJa��ט�E��xQ�ɨ݌TX�Dlj�sG�[��c���y�E)���tK2�!j�ԍ��S�"�o��*��?�����n�ȯ8z�I"�܅/�B,q5.��1�>*n�aHX��z��L�p֔g�D�Ag�sv@Q��M��r��`7��z&T��a��G:}�I��q�{*�#�;K?q���'dF.<�)�L	��Y�ww�/߽�W��
�߼A���&�����'|��v�ʼn�#4��7WHdpB�|�I�i�]�T%�y�H�6�*����̧��pHҔ��ԁ$/�\h�Q�Hٰ+_��Ĕ������
S�)e��guQ��&g�*�;C�����Lp�˳�\�5/�z����Qsв޹�7�K�O�{{���ǟ�c�k�fO?v�S*�7e]��l���?�f���SdX��7���>���d��>�c¨��dw���:�?��#d���Oo��1jq��\'Nno%�ɪrH#���gG���fJ��	���D;X���YK�g�4xgVv�3zq��0V�25�w��|�m?}��ۛ����r��K�t껪��7@֌���a�Y�2��TqT�
��+�ܱ.+�΀�MS^��Tu�#�_����K��'�v��U�;Dy�_�O�2K|Μq���G��&�.�x:���s�S�_\Sj9F�K#���Y�J5Ƞfo"��az�c����ڑtS�		�V�8�'J����b���b�Mȣ����_�#o��F>n��y��tPX��&b�=�RJw�ը�Yؘ8����%0�z�5m�1[�@s,��ʑI����z�֣TC0P����i�\dI�N��]�>�OEš�C!�{�j��f��yi���MՈ��D%�ar�n`B�@y
i�R�ac\��Ga��,�OǦ��,QY>U8�&��xT/��$=�p�"G��s�4�R\~� �n8$��O������r�{N__����zDO�p��/����EI�ǟ��ܣF;V��w����vlf6-���4u-v�z���?�dv3y���^.�ͦ����tĚc��X�q]��?�G%���˜�?(�n���dh1-�8���\�o�ޝ߿�ا9�չ��SH�
m�t�M�Z�yԌ�gr��+�3��ЏW��Xi��������9}�4�ڋ�?���	���P��_��?"	3O^��5}BTl��T_�@�x�K_�s5��j��U>�Hl���;iD���E3E�y���Ǔa�0��W�����HdS2��dI%����F�t�󈋦��2���O|����T�ÉI��5��o���b{a�}ԃx���SG�dn8&�gP]@�;�C�P~G>%�]?
�fh��{FZ�"��4��ju��o�>�S��+���8H*�xtX��8�O�o_ݾB��r�C�r��E��8��a����5n|_d�M$
;��W7v��M����TJd9�LOG?6#��4�$9��µI?C�XLL��,!���{���T�瀉ڀ`��u�o������4�NmM����Pp�8���a����ڑs(Gsi�P��`�K��̞� ���!��pL:x����h�:�]� 5�U�oQ+������u����X@i@))wفj�>Ě?=T@a�<<۶	3�N<��R"n`���xv�^��=N���[V'@չ���uS��p��QUQ��3N,H�L��OӴQ�l*����e8�b'u"�!����6�fv��=�ͱ��B�8͌�V��H���t\���o������mY����ϯ��o��N8!������^���՛�?��Go��Dˏ~��;�&��"�:e���{<��oC��h�/����-ۇr��
i�}��r��y$)#�$����b��\���-�<�EJ!y<;Nʔ��m����e�E�ES9�$4�����>��=�&q3������V�yR]N_�����_�/�Y��<TLi|9�$Ӆ<<?z���>��:!4D��W���_}]u�~�=�����F
OU�et�W7/_^�D@e+^�1�Hp$��fucJ��X�"���P$�`&�C�J�X����O�\6O(
�,�Z�|����y,�}�٧[�S�C��q階���#JЛ�dc�����~���3��YӐ�a���7Zݜ�Q�՛�~��H��ˁ]N���e�>���k�˻��VY���hڇ����a�v!s)9	��cSi��+������Q�Z�M������Op#�@�hj��DŽ�d :�E�ZD*�{��3.MנP���T�"eb��܌�B�D����㖻�P6�$Mʾ��vIs��Ȫ)��A��`1�UIaS�$�PVs�F�R#��tY\ꎲ��L����CU�e��wP�F����@
���uO�
:��R�y᧑C����4/��u>>
kA
��}@����n��6$8-B ������]�8~�]����ɷX^Qr��&/�U�̌�BB��p�y��PƏ���H��<_T�8Uuz<�e���f͖�u؞����uk@ah4�@�MQ�Ò%Z�C/vX�O�~s8�/�p��h���d7h5��q����U���s��;w���}k)qvyy�������x����%�An�W�IZ��ۿS)���g ���������4�Ƥ����Ϫf�$u:
���cJ�3{J��p+-I�u�]��M�X%��OM�F�Q�����D��e���������b~r���y�$M�?m0 %H]�&�)USë�O�Wa��?�O������	14�q��cNlwR�Q<nj�l��\6�d6�f1�UH��R'ƨh������7)��:#˲�1�z��N,���k�M}<�+���xw����6J�4W�H����n?�g'��;���I�3�������~��TO�g�`���%:}�X��G����^���X�2[$(�o:H����9�G��e�f������\�qi2	u�b�j+d�ȯEa��{O����-$!G����EX���m��}`yx.���U�٪�-�U�����<N0���c����2�D6�+\����z�l:ދ��tBO5����#��0m�)$S��������ȳ0t\��v�E!��Y�Dq!Q�]6���YY)�"�n���R��0n��ɚ\��"�T�ǧ:I?ҝk�V���V�H��̪eY\79��eW,ƥv	�f�I�~����P9�Q�̌�x6��i�Z��Q���(t�	wa�Ax'�&�yQ������Ӎ(qR�
��g-����[Sy�����~�nj[O���L穇��4�";5EV�;�1�2_��I���Dx�F)�U�cH!<Q�P�j�Ne8�r�O%�;�M!�i�P�_
�ܡ,�4�0�y��l��0�V���$Հ�u]����'OOI�nno�3L^���n=[["��A���ޟ��^�����gu��b}u��M#+��sg�yV��J��<L�D�6� �=��I�1�&�ds����l���G�%꠰M��BY�D�y�j�Kqo��\nL�X���S������ϯV�|�3LP�
��2��'5[]T�B��T�I�����"�3��>=�X����^���>�{�
/,ᰆ�(��'b�t�f���/x�$򐛋�f1�_�.DID+NN����;���Gd��К�V�HL���飙}7;ڔ�(P��R�'<v5���hs@8 �Z���We����;��W��P�L���w?�vy�{&��i]�ʠ��l�6���7��ɽ(uf_�!�<��z�N8	B6���$A��j�8���e٪a&��F�o��(N�.��^�|a��f�I�z2��e;�[λA�[
�WBPFPX�q}�q�1���IM��A�R�����m�Y��	)���.�\!��KQ���~m]T�S������V߮���sdvjs�;�RN�.w%����8ҺeT蕦( Uۣ���Dq��N�#�z��tB�"�
���]Q�j���QH� �z��VG��y�����N��L��T.pRz$R�K��X�6�Y�PyL�#����J)[��zo��mU)̎�����9
S�4Nj��,¼�<�|���4���$�;�M�B
��rڢ�������{hܣ\��z!E.�*��ARw"�2	|��Pb�\�q�Ȼ7�
��9~�O8����1	�,3��=[� �..��l)�8_��i-/M�� )z+�F6�G���\�(MK,��D{��$�aᱹ�~uq�p�jlQ'�н��2����y�{���l9
�
1 �?=>�Oc���I�� ��+�r2�iO��+B�n�,U�E����J���m7��l����%
#E+��:ʢY��%���c�j䑲V�瓠�e���:L�6�ϩa��E)+1QO!���r$jZ�>�(8=�hʧ�8�!J���>��Q��UB�ث(�$%�
.d
ϛ�y���ir���1@�
p��f��v��nk(��g������C���F��A�t�$P���K�V/��DZu�)SETu�+�5v2���x�ƸA��е�d��h��b�9�2=�5J���t�p�sFZ!�H_,��j��>ஐC�(.��&$�p2
�%<�	|L{K�DHؾ��㈈��O��-w*Z��`FQ��uH	zV��넾�����&]]~{R��Bc8Ɏ�h��B� S��[Φ6U�X�?FO�}V��k��,��բ��1�c����5�R�����4|˱�D��\��u>��d+L�Hy��8�C�7���A��Rt�

���y?���o�,g����N3��STi����W�SMԸ<f�8��A����~/�,��a�h�7���6M�
�h(qˮ�d����T�Ò�Es��Տ���
t`��ϟ��A	h��2�I�OOO��e>��0�q�XV��Dҍ�{�uϮ>�m�yz�?��>����76���F���c(777>s2WIV↕�r{6�a�7��V�]:����'�w��^������G�k�����+@!��CPj�(�&۾Êg�S1iz��?X
x��BߣS��:��F�5
{K飔�Iؿ=S'�Bz	�B���������ݛ?���>*o#^�<��H��r}}�!�Jih_���m����iwL�>$P?t����/9���w|��C�����
����'?��ɫiL���`�
1}>t�'k*�/��P�P&e�'�5��uމ/�l�2C8��*|
�XM����E@f�T]��z���|�;�n}��G.�<c�fYY���݁�z6_�����ځC���h���R�� ���7OHcj��)j�VH<�)[�.��Ъ��-��n�

䰺�xDہ�ϧg��$�⨂�<��F0t�anY`)�q�L�4�3�+�zTI���B�8ipۛ�Q=�J(�i�l�[�+ͽ��*FF���ؠ�.(؝�mVs��2yYɔc�@%�o��4J���Y���S�@����|��f��Un&�ܞ��7.���\,D名?€��5U��y=�S��Y�?�OMC���.sQ.�M~1O��2n����.x}��C�@*�.�7�*�*r�@�p+��Gu�0ˀz�βz#�d���du����<�R����m�;�v/�3�BV��q�$�d�,@<<�KÝ/� (M3�RZW�a+��/���*++����/ή��TMO�x��a$�2��cUe��?�q,��6I����<
H��J[̗y���v��l��8�,e�ٿ�TʼRO{;�Y,��T�@e�*}�t@��K6��켮"��j*�a2^6�[*g)�z8���P}�5G�l�>?�U�g�48�+�r�35����q@�B��}�O���[Ut�vM+��/����֌��_�������l�Q����^���I�I��m��Z~��n�HM�`,cې��tI>jܟ���$�܇�+'���y��
��@s��=�<=�^9�@۶Pn���	`��4��l��e!��i,L��,EU`d
7(�E�έ��|~���mmG��9�˫X"�Q�E��6ԍ��9z�%��}N�8~����[���l7�#����s:�v���r�?~�>���
����!�O�M5�B;�wl�p�F3� PD
K��_�.+�P%�7$��r��,��)�R��:�=z�
?d�������0��DX.>��g���)�%5g,S�)�Ļo�(I�^\;��ʵE�.O������w\�*)Ë�Z�<l�_��Q�K���[�%,Ux�X����ҳ�q(��E-:wҜ~���]y�>�O')��F!$v��,����M�e9B�wY��kC;�Hb�T�pB(�qĄ"�R
J��������	JG��Z�MЍ똍���S��Ըo�:�'D��� ��9wѡm��wX�q5����,��={#;�
�����+�r����If�8�3�8��g�g�߿�c`�ן|�W�g�Q�Q���?{�'@$��h�1VV�s:�%E�1���VD�q�G³G(Z����$�1�SܑejX�q�ن�C�"e�u&A`��P���8��i��˪�6�1�l�x̖�f7��YP��7(7D��4)^�GC7Q�NX��7~4>!,��Jʩ�d�$JykۦA����k�B)\�E�=
v�i�
�(�=R�Z�����W�'랪[�f��
���M�h�i�(��';���P�D�h��	�j�wmx��P����N�#`�Bt�S�������ƽgIh�	q;�6���wDx����1�C��.��+E3����=*�CC��2v����!��m�����|L3Ih�KĝH����
�v/^n�ke�p>wpSY�z�wqy��޼�W,G�XMۤ�]�tk6	uz�Q���͜�^S�M�v�P1��G#� =�<��(��CK�`.C�Y͹��==eX�ٞ,�0]��,��)��r.�ia�����6d^<�����m<(	.�K�
=߱D-`�,/��H�By\,��+>�zM�Qzi�T�k�I*��$��#���;?[�����ꆒg����'�21���b�V�]�e�[�?G7�<?�7Uv@H�������������q]ϲE�.�&��q�4 �]��M�E�E�	q�'��G�;������Ι�O�>�y�=M�;�^
�&�9_ֵ���~-�6&�߽�	/A�R`�S�
!�Ut�`^^����bu�����Eۺ�&�`�\��b�)i㡧�6%`)����YY�^H��3%#%�p�.���ib���C�H���j;��T+p���n���i=4jR
�0�	������vs���4���-��3"|�\�Y=#~O�,�RH� 
���Ɨ�L]|LN
���Jʯ����p����u4�7H�e�u��%�*��Q�Nw��X�Bﲺ��w7����mŐ���ps{s���5�A��+���&��r&'��0��[�!Y��G����˂����[�p�Qĩ(��c{�n
�T������-)��nA�N�S�7�+$���tz�<��L�cc�0�\"{�$0�4�
�1�DE����i�.�ğV/X�&-MyZe|���5DZ�~L�c����b�\,�kh��r6��i}��FY!��̛.�Ӫ���n�2]�=�^�y���C�y��x�9h��8V'�3B  �쨓Nh�S��Vئer�IWMѻύU�o!5W�0;�0]�Z:�]x�(%a���L�V��Ч�+Z�bVkt~���(�ƽrV������{O��̖3���RÒN^�pb�ܱ%��ɛ��=l�q&����^<;�Ϧ
u���֪�g3zY":H*��A��q�hhC蜗Y�%U�M�:o��8�Ҽ8[�64C��S��EJ�Ȁ��y0�nj|�7L�q����q��:oy݄ܴ�-
��Z
�'�8;���7/��d*L�$�u`z�k؈_Y��T����0�6�E��==}���W�=C,�>k]0!t���(���&���x��dw�q��o^\�=;[�fS�j�sg�m\)�FJ8�'p�~�x��߿����ӳ�dR�	�
-;Ku�S&Yp]N�������?���6^��D�Il��@���lh�ҳ��+�P��]�h̎ �5�i�y�^]fY�:�9e�dPI�[��beE�񄲤�Ûtr�x��ce�8�gw7�4��A�T��x_��
X�؝|k1o��1�5��_THX�=^��KT�������1�*�ԱȊ�����h�G�=W��Z�<Y�ϰt%o�EQ/��ȱ(��<�l�7-_[3��P��D�r����`�����•�<��^�pQ'���u�pN�z�)�����e�P7�]�̖5��
�2�;	k�8zH2�U穦t�t�l���j��X��5|w��$�Zm��|Np�̴��}��󙧩yLm'ϰ����	+�6�pڍ�;���	PK�6`=jN	�����e�(�Ql��H@=����94*{�m���[��w��C]Kȼ�'&%I��i�*.쁸��]!�V��A�l�\�Tt8�O��Pj��@�j��5!�O�=�3`�\Q;��@��Z�TwUt?���yxxs�H��&�0U҂���-���^'��~�����^���\�q��ƒ��38�w6Dz�=J����ty��8T8C�*�<�,j�JU��(�ټ�FMXbp���f��79�2���8E$�� ����
X��Gq����ʂd�B���8pl�c�j}�s��Ì	C��L�	���9˿��?��?"_'��Ç;]5�5���b酋w��cvu�^/<ّ�tr�勫w�o�ß�����?��?�:[�{�淿�
B�gR���\̈�ӎ]�eY�dK
��{�$J�:�#5����/_8�_ʠ؛�M��'Y�#5ٶ<�M�geq����|ߤ��N� jV���[��[�H6������P1[��
�u�0"�U�z�`p<���q\ySgC��m��G�߮�n� <�T*Q�t\����g6�6�!�/.V/�ާ!B
�	�V]�T�<�˞� �	��ʘ3�� del�SO]��ɅJ>��R�D��
eˇ�ci�"�$�4巑F�~���"�n����K������fI
���֐e_�0�k`J�M'��]f���AR�+��令��p��F��lnA�qv�ՃD?�u�@7f����O�I�9�xZ*��e�S��@�B[�xv�Sn��#K"5���MvX_����x��P=3��>U����W�>�1�iPS�99
�wV�#��z7a�6�N��7���!N���x,�R���8%�
za���6�t��0E����W�E����Y���b�(-�	Ixz0X��W�?F�$C:O���}�b^iFZ∭�!�����5�%��74~�~�C^������?��]��ق��
��@Y�v*t�`?�a�X���V�%����$b����	N[��WYY���joo��.�Qys���,�۝�m�1Xxw ��R%�g}��(�f3��;�؈�����$��K]с_�&��.��B�[�τ I��������1	'�_~�K��_<�x����`��t��ц�����.z���M�d%��?_N��_��o~�s�����,k�2�a%��u���͆�@��L�2�;�
�B�� ���b�̋����}��"}�'�G�y�#�/���h>JLM�(�j9�|�H�f�t�B��'<nc%���}�Xf��p{R�=��hd�I��G��Czl��tzev8 XQ]W,�VԒ����d},�!x�	��S��S���&�N�TMPؼ��R�·F�R���Ⱥ��)�g����A�y�k7a�KJ�)�#gV޺-�z����r���.���T�-�Y�7���.�k�H[f��:$\��>@�"����I�(п0�4l߯���£��Cӫ�EF��a�
=&ڂ҆�g*��DV6qY�d��/�Tw�����ES���u-^+(9"B�k~�ہ��_8J��XӦ���ЪD���U�W�
��x8��J��>��1
7%=D�"K��F��NO��EY�I�Y��e��$���:
�׌Ǧmp�)�h�b�,������%n��}ā�1�5�7�EC�f]�$#b��W
rL�C,�!��'���W,Ai%O+4�an��,u#Mv7n�BW����W�Gn��V�2;�\��}~�
i��`"}7 /5�R�Y`��~e�n����&��v,�l>�/�x�Xs��ƛ�lt� ���zP�s��uGI4]���6O,�nx�w��6�������d9�a��e
�`9n�D�x��:;~�Ҭ�߽y�˯,�&�=���]���Ǜ���cT��ϟ/��q��ޟ��_nn�����,(�/��/><Ŀ��
�ۿ���Y9j�?yIJ�h�*���v�p:���y��y{��a�������?}��׶�F�-2r[֟~�L-�~��}�f�����}�Z7D���v�A/���~ųÔJ��}��;��y�|̰���]�|�����\n�2}��X�5�H��o#�U�w+��δ�_���|�vR����d��3]�s�!�e1��1%x+��,?l��ys�����|��+��*���l0���uS=&�1t_}�����T���߿ǒ�Xګ��7�IX:�E����CWox�DM:d���6�| յq���<r���,Z)9�55�%Y�:���=��mnwi��ˑ�=�l����d��͒L�����	��xL�D����Z�&��P0����9߆>9>�쀓�n�4����Uh#
�˵oQ�z4lcJi)M{�T�p�_��
x�EU�_L��
�dp����EZg9��V�`:�-�˕B�h���@�v����2bp�l:��Elb�~D��v��>����p�OE�,P
���,pt��"��4�rzZ�����v(�2�Qf]�4e�T��5�jrb��˳�lxLr�ٲ�������UE�K�UᜓT	��uc1�"�P����_���ז�*KǮ�<__��SeM�i�yvr�`b[�*D�d]8jc�ۖj�R�+�oU�k¥�}��ճˁv-�-s��a%�<;ڦ<����=�o&��槟�O�:���{���p�N��.���)œNj���iQP�nd�bL,�~ww�����o�2U�qg<
-�l(�}�����k�Y[�t���ݻw�w��%���0�]^�g�}����+ɿ���j5��Գ��Tۍ����߽��.>L]���b	����7]M��6����|���m��n攋`[�l6Ś�)�BO�6�\�"��9�t�0t���f�R�9J��x��T�;�W׵�Q����;ѐ<Te�� j�1�%��(b����b��\��i��8��"XO�O.V��B¨�TURd[�{���Y��w
�3��k��!�~��*���C2��n1�]]�O�����]L]}1
�3D����v`������9~,�ЃֳA��u�BY;I5k�tQ8���X�K#�*N����D�����w��%C4�Ҵj��|V7u�n۾�VdP!l��ʚ�v�6���22���@��>���N5d�*U��h�M�!
�ZkilU<d=4����О6um�:X��0��3���5%���S�e���>(oZ4��Ծkei��	��i9�҅I�f�1 �P��l@5��N	4����'�-L
ن��b3���yۮj:׵�.�.�k�p�٢�O��8��b:	]�G�]-|q�x���4h)&+��m$�q,Ń�>�q��	����3,�����e.�.q�j�4�&!���#��z�vh����T��d�˒����ԩ��K�'x@Fn�W����2�"j��dT�c�*�:��mv���i�D4���u$���1�I��~�=r�ׯ_M����]s��?D�צ<�Z�Y���W��^��kʺD0擳牛>�bY�8nS�%,u�7؇�Dه�4]�0�d��O_��ӏo��Ζ��}��~�\ퟁ��^����|0�/^~��j��a�[��x�����8�î�x5��]!�.f��ǭ%�SW��lv�2̸߱��l�4�駷/_�vB�~7��"e�(��^<���y[��g�Z4}��c�i&�m��Ge$d�����)���]��3~��H���#ӕ�N�ԃf�q/ΰ�C%�Z�S����6&䖵X��$U�İ���v�A�<ڌ+`����h561���.�3�ŀ i��ˋ9���#�"��Fp�u9��k�v�����C�cީ�Jm�N���xܣ=5���*D�ڬ����N󞦶]O�pH#a�N)TC��/K�>�2�'�9��w}��/
M�Sɡ��t:�ˬnZ�>P�a8�������MK�p`�^����1O�Iೝ�`�p`�v�݇�E^ ���f��48_���߁p���Щ����z��z$�ϗe� ���է#e9\k��4��$M>�\3�M`Q�T��J�վ�v�v���;R2+34�I��J`�H!'��A��)t�n&U��R0�@n����2� Z#ѨA������#q��b�I�v��zu6
B��.�T�y~2)�@	/���v
;N�@�@'㩮�#"��T3.mܬ�4�G����v��q����
v,
�u�����б�"U�N���'�*�9�R;ȁ�L<�������bW����@�r��8y�:U�L-�z�cBh&�9e��q����~�on�<�<0qk�=_=��r:}�Hk]�'q8���3'�_̧g�9x����d
����6���,�8�e]��!U�?�y� �
I'�-/�g�j���g����G���?+��l&���F���#���?L����d"�F��˛x�c�`1><m���=[-�ӉmcT.,���O�a�dz!A�yr��w��,Mb��l�0\�)(u@]f|<?&�f��@�M���t�VE��������w��\�m�?�}�	���E�a�ٱ��4>�E��y�%m]�����>�e�EN�b�8��
�zJgIBK���\,��-���u�����Pg�>٬��'E����Kxn�b�А������5��*�S��ix������ �Ů-�%���BA����gi_ӭ�aA�,���G���䷮r��#�&���F�U�TIl�r�}�*��HB��=�
���� ���f�"b�}	^I���@�VN9o�����r���HR�$�0	�˝>M-+k�$H�Ҭ��,ű��%`��f���oQ)��6$C�II`LnZ�\n
hNQ�c�i谋���(�0�t�hR�N���[Є��M�5i(EQ�a���0	C�-6����Ɗ2!{g�wk�1Xh,`f5~�T�Ä�U�2EQ$	��S����`-�ea�,�?�.4��0���x��
ժB�_ђ@ѪS���d�6G��׊�M��*��i�R�����(Ey{w�p��Y/f�40W��]��H3�߫mY8�
D/�t}�E�a|�a}�.�����<��������W�#2�]ݖX�l���w���k{��{��t>�?�rL��>������.|�;�����,�� 'e0~������/��M�͏?�e�U�)��{vy���,�&��r��Pf�d��ݝ%J�������jG7͌���G�E��5�<��o�MfS�ko�\��j�f=�k�,~CJT��kMϒ��Ԕׯ^bp�nn����!��q{�Q����Z����-�$�4H-Ї�oj�"��d^�u3 pۘs��g�8�i�DZ��|��2�$�6��eVT�##Sߊ]��$�u:*'¢���]����BV�j��(�L����G��s��~D㎴N�fz^���uR�6�Z�rl���X#/�F�8BIb���qD
	8nQ!���#˳��#]�U��X�&w�
�p�3#�E�#U(�U�k�c��Ծ��\�T��E��qe�JN�>��������$p)��PX�
�B�4̟�/�vV��r�>��ŕ���
 �!Np���O���kP�f�>�it�‚��DŜiy��ҘC�E�B�g����C\�Ʋ(�M�*M�k�dT����0��C��x��籼�b}�6:��Je��Y�8�y���=���崅��HkIQ8�W���g�0\F�G�S��AR����� �"#r���R؞h���-�Y�c��4��'�"�z�2�4�<=�����Q�`�X�A7�SO.�ڙ���o�
qD���veZ�C���x�>�U��Nֳi5���A	�t�h�ER��.W'6�����o����.��y�WEvr}�??;;?_�C��WⲊ��~�����l����|yy���w�<[��ΏI>��k��t:�<�e�H9�:���.��!�L6��7?���x�W�����Ats]�uR�'&�驜e�f{����-f���9��z1A��~w'�c����4ˑ���&��x�M1ADHq�
W�l~��B��S'�M�l�l�����p��❢x���c��'/G�
��EC5rǖ���xs{���'/���7��ȏ�cٸX9=O&-m҅8�I�����R@e�Fj�(b���Oդ4���ӟz�$��N
}��^���І��m���$J����Z5��}�t,6QF�
!����d_�?]o�Nۧ��S����i�^��ǻ�~���D�Ȉ~lJ�GT֏j��;�-�I��t��h�C_��fh���?�\�>��u����c���|�`R���iU
k�ug;��Q$�M'Ƴ�d*�m3?;�^	2\O��dZV�F��R���_���*+�$-����!*���{��T�/�߼��ko�K���c�n���9�\� 8����*��R��̋j�y3�Z�s�/kC-Κ�.��Y��i��W��z`�&"^�3��_�V��Y�����
#h�hP��`�PEWf�_3x��D���f�oH*&X��iAIa�C��r���t����͋��s-�pUu#G��u �����1z:"`���}��jl� ����l*�x�L�`�QզC����S�ḗ�g԰�~1�x����Fj�dUQ�]w<�����v2��6R�����r⽺\˪��Õ���jZw
��W���l���/^!m(eE�o�����~���Z?��^�2��v�G��~���/���~�l5��C|8b�=<<�2�~h��:��Ē������ٿ���̆�G<��r���П�V�~�mҲG�7��ص���>m�ì��iqU
�=m�̰�s��]��ʢ~,�b���fW! �E}�>_�D�8ɡ�����U���Ɍ�A-�U������e�x�<lG���6yT��1�b�|�
��@[YHnq��1XxT��>��d!��j�PI��iJw„�:E���(������x�������g!����	�X&.k�������zw��"3Ց�m�?l��M�y1�
���O��Bh����2�D�6kk4j?)��'�`�,,�!j)���`��@��O-
���Opw�(�jj����*�H���o.Zp�f�^�H�\h��p��`2��lN��h��q��Ȓ%e=Y,�i��6m�%�$��j��µ�4K�"O�Z�6_LO�[����Pnd��:ϱ�@oZ����p���bi�;ƈ����01c�V���*��ЭZV��56����Ԛ2�J�bJLD�E��tl\�J��q
KA|q��n �#��*䁩�DzN��q-����9�$��g�4Ȱ�?ա �µs��P�TeSJ���4�,W�8�͊*MbL�ԪL���'�!i
k�
-;n�]
YO�S�*�CD��bi�g�5�y��󇾷���,�����l�B�٪V'�Z���2:�ﮕB���Gd�ˋ�Ϯ.=K�9�,���KE3��6�L����?�k�i#�QX�q�]�3�**d�ca����$Y{�����L�+7e\�������
����}�G��?�3�^M(Ґ
E�1+��'�����D���o~6[_F��ھ8[�4�㈿�6��x�aL?�o�,�3ż��3z>�<��#����wE��5&"b����i��z�a���%�M�R�x4-L�E�a`\�ק�AX�b*�1��T!(�"C�<&lai	��:�N#��,5�
�C�LQ?̮�Nh6��C.��	@�
�n�P�T�dIT��y��:�����*���"�lǐ���lnKe����?7) �6�N��}F��L��:�U3���/�La�{~�H]aHI�,/�ੜ����6����
�[�Gy�^ӄ�����,'�1�Ҏ��W�1
iO�O0��Q�<����+s�;��BbS��P؄Ұ�N���j��<P-�
�u��QCYRn������3��j��������Y��|γ�����n��<"��@y��`V�PeA�Ձ���Ħd�1ˑm��)�c^%���p�R����V4DLٷ} �����qݔ~o9�B�zI�"�����ɉ��w:�@�W�
ϞѲl9w�����Q�W0��}lF�����M�5�O���4JJr�*)@��'Ψ�:zh��Q��Y�Z/pYG@6Il��~����4����3T��	
�m����Ͽ�tݰ�:��ḣ���чD1�_߱B]U�@J|o��a��W�:M�zB�BVqu%>n��U���d�{���^}��KS�ϟ_�<>9�k��H>�d�\���Է����]V�hǓy�����p����h����r��3�iG�&���F�̇����.@��;��?�}���`�:J���l�8�"s�W/����<�6O��?~xX�=�-�@!\�� Ev��wm�\a���߄aHQ�`��L�0��@�t:eݲ�on�Zw6b��o�s/�]o2����H���ÓnPPI,��[BϘ�ǀ"�i:���>[[�%8��8����n1I���Ś��f*�M(��ZG�F�7E�6mXL��bh�̀����x.@�eTOs,�+����#'�'�������d��,6ALj+*��� ��EPT���y�G�F�g[�!��X��m190�i�-����3��%LȆQx�
ᾶ=��6PlHqfӨ@VY�x*$bC��0M�OQjA���3$�qB:-JrU��o:Q\JT��+�J��"�(�UD_�@�ٴj���;�_"/��~����r��{���Wm�?D�Pz��̤%�H���f�C��zv�E>�S���B�z�2����Eoo>`%�;a� �>�I�u��čvU��u@?{�=
�E"�`q����vQ_W���\'�R�&�� �G�G�
�w�&�a��tbz���n�,7��YJ���&�	��A>\�o|~��?m��t�y�,z]1�&��A����"I�[+p����.�"0����eI0h���g���r����혧@^\Om��_}YѢ8��ƟL���C�;6�`Z��cW�+,�B>�C?d��vOO�O�Ka�M5Ǩ&5�I����Y|�i%ɿ���jn���}�W/_<��,y���t�S�黚���뻴(�i T1�_��o���ɿ����G[���p8��)��]\�\M��r��᧟~��Z��o:_�]\��q�T͖��W�%@38�}�����|6���_-�+*�X�dM��Z(��7?�h��M���y�q&�<�
��?<܆a��a�y1_�Ţ$�<B�Sd��`I��}�b=�,�1ز��Z�a�Ӊ}���&�%t_�,���O6|��� �ʳ�6����Yw��۾-�c��'my��V�Lf�����6��'��j�JNM#��)��pf�8`�U�*��^��bw���M(��X�H����[�F��~�Q4l�
�zܶ���"r��-)�`HW��%R�0-�ѓ|(7��Eq�=eC�8���M��K�0�2�B�T'��pv~qgX]Rl�&^oY��Z`���TV��W���r�=
�.��	+�dv�JJѲ��6X:�P��r�x��YUc�ESc��,�@:_-�?�}��v�O��Y�%�?s�Any�}��n4���l�
���
�i�*�O�4��X���R]�������2� E{V�Vx��	�
���1U�^I<ЪZ?�JJ��	�tHr�b؞g`�[���ɛ��������j�\��U�U�y�U7�w��	��cSlCͫ�;�C��|fC
̩6|�"?�*X����KP�i��݊D�(�ՍY^��!������7�z���t�;���k���7�ߋ
/�m���g:[��GU�-���|�(�Lg@Ae�^�lp]�8I��m\�@a;��Q5��}�z�q�"���X���%u�ee��b���X��b>�@’Is'�nזQ��{i���o~ai���w��@���~Ļ��y��i���m'�^���Ͽ��ҡ�9w����Vŋ�g
�"�L�A8	T�UC�*c����;]"K�I,v{�|yyu��o��q`&��'����$�	��XU-�Z�����ps$̻�_�ͯ1����ӗ�eD�cW���Y�f�TkeBe8�ȱ؋�a	��㻤N=;���ޒ��A5LĢ�}tg�k�w���hohtI2�H����^)b�]t����)
g��.��$�v�Cwr|WY��>�a���Y�W#?�U����2E�^ڋ��cj4��Q%|\��F����槱�AS3�nX��K�f,�B��L��X}m)�dC'��Taf����@���B����]�IC�3Ԍ*Eh;��1~�D���7`�\[��o��Yaz�Dj��(ܽ��V�J;zXs��?�\ԉlv��6�Y��z,y4T�	3��hz����y�~���b	��KJ���uzD�sCΊzpG�M�Y̖�2�S=w������n����$yZ#���=fޣ�j^W�U��lY��򘤈Z6��U����-Z�`�L�\T� <6BV�J��j+��+��b�t���"�w^�����C�\��2�c+wש��Z�$�!��f�bF�婰�nT�&�@�~~~���1�"q�UUb]�>_L&�q�م���b}qq��ͻfP�pv<�3��Bn�?�mwǼ�K_-V��m��<��%�CO��A�@/�+��oݙ !�!�J'�k��d7�jf9�۪��b��v�<ؾ�qFPL����߳��X��ʠ�bNXC$�IQ����ߞ�X]W�/���6Ǣg�k����[����?�W�Y����EuǶ�	�4����b*�~��|y<��C�ĺN�Ο-���\'3�!�6����˲�n��?��3�u�=R�dlw���� ,#�,M�u�}1��p/��`:F0�����竵��A�q���vY�[�bΌ��Te�l^���1>�[�﫳��ھ��C�����δK�c��2����H�u�~N���CZB�&N�zQlĐ@�g
��T	��e.*�z������U&�Z�S[�C�
^ΩǓ]Ȭ�д���G�K]�"�:���AOI>/!�&d�D@�U�N�]�$z!T���HG�F���L�an�o��?N F��F�G�TL���֦�G���f��S|�\(�#r!�u�7��J=�)Oض<]Eę���l�������ou�E�`n�p}�����ؔu��"5���/���������//^<ˋ
(qu6�^����*���1�F�oƇl8�ȶ�LJ{Eh�R֞™Jy0��%�>�(�C��Ķ�܏ wȑ������A��S���Dz&6-eZ7�xaeSϩ��5Xӱ�V���%�͎�� �i�zO�Jz��ԵM�&�)�v[��"ClJ�^��Bn��;�aX��l/G����SQ҅\�Mg3���4���^J�C��鸴�i�X�Z������aS�I���D���c����w~���T
�Q�"�{���>�0�u2�~�W�zPd
�n���[�^��)%LyF>�h��g��8���*���q�'���x�(t= 92���jq
�N��J�~�ݯ�����_��݃�,€2�b�R��`6��]gsd������W�^Pܞ�T�p�DV�|��mV&x�����B�-$�Tp���ZL���_��i�����j��7�y��U���~�7��͵L��l�K�/G��>{~���a?�M5ӝ�/B�?��ɀ:l�qtǰ�,B�`~��v�	64���{��?���߁R�BQ�{R�����l��DT�Fɋ����"@&bS��X�bڗE�pw��8���(��	�h��|,�?i�!2w��RSD�.V���,�$W�٪:��=�C�i�R�v�X��ġ���N�"��:,��N��<4�
�_{��^ЃpU��8�[��g
ű=C�$<P/��N\I�~��m1���Ζ
k�U;��m��b�3�4�O�����	u9ػ���~�X��PX���v]P+`׳�Y^R,��>P��d��]wD9�0�d�T1�z��n��l�q�${v������M\7KE�fYDE;��N�����1e�M]��`�z/�:�]��X�x���
�=�"KdT3�B7��qo�����uH��*FL�}/&hT�P%���c�⣮��ԛʽi{,_��`>�u��h
T�N���&(:��*�v��x�wH�I��ͨ���&�*��TC�n��w4�	"�ݾ���܇c�}�,�����&��Qd����/�.�6@˞o�y�6�� ��^Q���h�ass���q�c;@ʸ!@	��[04���r�ȣ�:�pf(�S�;�B��-W3Y�~cQƀ�ʖ�xm4H���W��MږH�${��@�A�|���nU���
��/�-��������_��[ǝ�e�$)Q����EW����t$�ٳKL��lf��{kTt�v���@x9ǺH�b1	�(_!��ww�c�YB�����������-������߼}����KLb@$���p��f�2,u��q��/Er*��Q3�(��$Du�i���h��~�Z����
ޢ"'���’=�)��ϧ�0�"�2w77YR�^_���ff�.J�kV\i��i�ڏ���:!i����	�ZFV�����������R��e(����*���zN5��t������b��Ip���VYQ)��C�A��S��4K�N��'6�NZ���5�T7�!�%7�E;#�� ˗D����FC���1�$�n�M�˳��,�l=�[�r<$ü|��v���6�J��sI�S��t���⢬W�҂���5	�kT�q܋
5ϛP�I%����G��~xw-�֗�}"�l_o���f|�E��?���b0����7����m��m������.��v�r7��[ۖ���
\'+��>&��]_��3EU�rR%�#�li�-ˡe�ua�v(a�ƪ��<#�k��K��g�K���|�G��Xu��ݱh҃�JS.AѬ�?�̲�(:�]ݕ9����t@,�e\ѠŐ{�8�-VL0@��9�	�p�ł ܚNo~|��@يmRW��'�?��W���1�)��۳�q�k"=
��n���w߿}���/_��-%�
�mMQ�~f��t��z�r������\�j}��'
OƩ?0����F��6a��w��x?j��_~��by�)=_.]?�d���L$�4�V��s�0�on^ j�+�v�0�$N��}L��,�n���
Vu��Vbu%x6@'Eu���cLf3�L�P4��vE�ڎ[d9�L_z�*�r��MZ��(v~��e��O-0V �����R�i6_`B����ѳ�g�������GM�P�
�ӵ�"����h��>:5`�Ͼ�ʵ,�^<�C����/��A1�F��o��6�8+�a�;��QT��n{0�I�YQ'e��9�:_RJ��wqr�w��ѩK=��}ҝ����u��E0�X� $��ӍP���^j4�8��RDH"![�t�QY���dyW/	V�U��5�q	��
�m#��h�֔"��J�<j�y�N�<+��"AրDh
�9MS,V��`}Հ�Ҭ;�О�[�/��5�U�����w�^رim�T@��!)ȬJ��R�Eq\��(T�uq���޳ْ,�K���W���f��A�A������`�>�>�Q��"'`�=�˼z�z��gj�,40@O�z�f����ke�V���z�9�����q=�8�[4��/>��]���]	*��<�%,��0ɣ�E
��<�59��1�Ir�u��b����%���Ж�dNqY�0�:D���V��Z��|�fu�,כ<-m��"�R��:�: hJC�Nʁ<���yn�]cM��IQ��	��F�=�$]�a���s�(�~��m7lMoF�v�W���gJ���ݡh�5�����K:C_w0��š��˺&5I�B�XS��8�N�Ʋ��A��
j��l�"�����B�?�MEذ�zU5��Xg�3T{?K~��Cl��'E^����O�G�aӨ~���`��j{�u����+�QF��2�"KI��50�,�z}OƧg���|1��<���y�?�ؑ��#�M�"��fY���w�j�;>+��	�nF��H���}�8}]�����6O�t}uV��d��y�+�g��?��?���dQ�I��Ĵ�u�=??ɢ8x9�,���p�[�I���$�����ZI�Ḣ��4Z-��^S��~�� ���|ru
8EP]u��a�9��Iy-���daf�:}�](�sN�L����$6��d�S�z%��@k�E-+<>m�a����8��Y�������$�����No�&�o� �9�3�`Q��l��v�[Mj���9����#+w|4�^�d��Zgp#�8ԉ�0$�E~d�,��6x�3���"u��M��>����gʤ;AG)��)��Y/it�鵗��S"xWˀ7�%Ș�����A�d$R�Ѥ�јl)�I�ƒy�f�0MQ�p)X+['��*�fzLQS�@Kz͍E`�+�H�hT��ȍ�f�����K�����u|��by�t?U���>Ӱ���;ke�b��z�#���a�8�Q�ٙ �q�ޤY9�Lۺ��w�')fC:k�z����1hƒ��jm�3
�tH�@E�D9�y4�
�P��~���f�
�B�jm�Etu�f�z���1���4�?ܳ-���>Yխ�&7A!jҕ���f+��yR�Q��jz�CZ���j7�e�6����0����Sp���c�U��	�X���@�I�	�.Ðt���;��Kl�P�_��
���/,��tÏ���wms:�O�'�ӌ����3�靎=N2F'���s]UP�f�3����E&�㞣�<S�Y��z�{xz�ײ]�q+�+��0�}A���v>_}ry��`ڎ��I@�Ɗ�A��hZV������qDf�	y���%�g�}Y���������G��o�=�7�nx�C�u����l8X�j"�#'F!)vQ���z�ے�m[���}�(��umJ@O��$QH�7��(�XQ5Y���Ʒ[�T�:�0����EC��e����ȼ�|)~׀C^�9稺�
4�_�$pz7,���mL��������n>��{��������@w�JMzyy���hx��5�8��֏�,�9Ƌ�3�E�Q�]��Qpy�e__]�Ŵ/��=G�G��h�?ϡ0��|v~n�GH�?��e��l�Z2��]�2�J/&cɳ�����$�;H�P�h$.R��QV �y��I�^�-YG7>zO�]C,��u�$b��Y����;]R�^��u̍�?")
ӓ0Q=�e��X�7� ^
z���	����2��K��t�9m�9���M��EU",��(��ȁ_|���^醲��w�w�O,/�RgvS?=?!q!\�]5K�$:!о�b��4\��a�^���P�y�ql?ͲµFe[l
x<�&a<	�O�f��
�R�u�'d�f�mȁ*�M�<�m����&��j�$z�6z�H숷����|�-*�F�A�'z�.�+�9N:Y�g�󋳁�A��l� �T_����|���Yd�깎*�Gg8CRwW7��P7-�_�4�嗌�	]<����t�<7��7����W
ێFg�=�,�o��.��Ӊ;����
=]<�85{:[`�9�0�di����h��H]�A�&���Q���]�d:�i�>�L�E�)2c�7��_��=[��o��x�!�<?=�4�J��f�(*U�N�x�x<�4А��?����^\M�S�s��Eק��G��ˋ��� ����ݡ����{��SQ!��I\tw����s{
�Q�����Cq�e�&/��D3z�'��<
�y� ��54�v{��b/��O�ķE��ˋ��hD�b;��25n��z�G����/|�0�	����C�!k{�*GC���8
��f�o�ێ����_޼�L&�W�^�d�s݆�\�o���Ҽ8�(�y����M0B�9&�.���,�iU`���lS�{����/����s틳)��,��xh:R�x��Ef��������0�겤N�^9���p<	sH$\̮�j�Y�A���J�8���ң+^Dr2*�J���S�Jj��FR��NM��D\'��f}:��@��1���(q<�C0��\ɰ(rC��a����^'�P��`�2�,��cz�ߓK���G|�mS�WB�;m٥=B�z؅�̗_}urv�d}������0���d<���OS_��r�f��g��D��?���t���A}��gӓd9�
�b��tT�Q$�BM�\'�������ԟF��4�T�E��u4��"�"��
O",
�&ԔK�Z$�Ł��5�)�6��i��9fYd䍪*5�\��>�qw���tL��=q��(ʽSSCF����b���TMQ�Zj��p��$�f7j������av0-����G5σ[���@Ț��$�N����HL��r�Z���s]�����s<K7H�A��8;lV�&�~H8p����n�l��>ϋ���ei��ݠ@X�����XD�wV�?���|�tyvvuz�߬޿{������~2FEb������d|��
!:�������l.�/<�>���n6��9��v
M��B
�E��������U^:��%A������(�=ˢ�@I�|hMU����T`oI-�i���:��t����SH�~�����H&������|
��>������(}���X��N��h�VY��U
���8Q�Ǟ�JE]�UA,��V��Q)k_=R$)���� �'S��<���G�����úć�?�����wuy�!Ϸ���[�<Ґ����옒�Yߔ�=��E~)�l�D��Q��m��GC�ɢe[b9�D�L�kS�#goMxn^5�aICӴ�x�XN��d��_����E�"i�~�tLrszC�Ho	����(8�%�lYO6D1����4M���5�m[UQ��˫
���H�a�P������I�)��#��o�a��	b��;�eR�B��&ۖ�R�Eyxxx{��3�Q�Y�irM��x2J��?�����Kr�eGO��!�NzyuA�[�Ĕ��W�C�����p�yeUGI��
���m�X�DXdؑf���=w�W~h��܀,��$�G���ǩ���}F.VF7�N���H\�γ�>i���8D�*�ps��fQT�4�lL�)!,��L":3WpL�c�$>�}�c�&�!��%�<ư���<�������
1Rq�͖4�E�b'�	�)X�%�8D���[�殫���׈�*��@��Z�����?���vm�@"jB��cZ^�E�-�<Mݡ7��>g� �VINDR�D�,*<�sR��0 W.Q��ꌗ5ARXbm�����퇿��8�4D���	������yQ�,�k]�?}��&�9�D�]�;���ql�o$��p�Y�����3�4�N*	���?rj�6A��a�U�p��@%(��˲��LKe��uP��%g�!#ɚ��UL���F7�wo~����at���&�-���k����c��j��~�w���a�GF5�8:����'�9��A v\�D��_��ZNi��Ȃ�8��ˋ����dj�a����Eo�huJ+	yV�f������
�B��p����<yzZ�|D4
����I�sq���3 ٯ������#���=���4->���?=��cp��ȰA�^ODF^�kN�N�yUUk��7�G4��9�78hHX=�E%�mYvH��@����l�b��@�w�\F�c�{`�`9������ى"q�"x���X$k��t0
G��:.`�j�O��l
��U�:YV��<h��^���_��&��\n�:odN��ɢ�ij�ÍOΰH� +(�?}����y{�GE��Ͽ௞�LڶQ�=]��=
�ɼ�,�[C��Q#؎+����7m��O?��$5��B�?��~��t29�w�A -0�L��2�@?���Sڨ�8����6��:�b�j�&�R��Ն����2��g���6�pC�_OZ�`vM|�j��]�ۢ ����v���r���iL�t�s�NO�Ɂ��O��,��/�r�w̞5 %5U�qL!G�,H�3�Z7:��$$MQ^�T�)h�;�$v��9�o����;�\%��+i��
��n��4?,�H�k��Q� C$!ARAP��e���d<F��(�C⟺��D�����t���7���%�(XM\&�f��L��fh��r������b����{Q`�"�5�����+��l߾��L��M�ɳ�T�s�0��$��um��"�±E��i$J"x��O?�]����h�ے\���p�s����Q�mR�oO�-'Fa�cV���O�㛷o����?�������|5���7�wa@!uw���?`Æ�����'EV

q) ��CBu�/��E@G����x�$�i��Lئy��m�6n���'���G�\W�W�����;z��4���Ss��ޞA]:����'1�B�l�d2t��o�bT��8��P���Dhֶ�����[�&o�^��Pa,4�����z����N����n�ف>t-��v1'<���a8�b�b�|��E��6H�Y��=��wq������da2��z}�8?�B���FU�B$��0d��h���HݻԀ���ix��ڎ�.���������Y')�o=wr2I3z��0�՜Ăi$%u���P&v-���I�eͻ���}���\�L-UA��U�=�#��>�P'B ai�����h�'M�	��ϯAb
���$��Yb9�$��M�,,�,�Tw�l���%�8�H�z��1rt{KO׃���'�(,H�_�2Oy�Lƞ�벭l��D��D� d����yzÃ��5� ؒ�D�1�8þz��dd���y5���4�O7b�N�]lS��x�=�e)�S�DYHף�o8T��bAo'y27D��C��ǥ����\���_@��B��F}���Cgؗ'�!���a���|�@��8�jU�v2}��!��Z�f��'C���j�,��7EӢ\�~J��͋O>�������9���+�|���l��{2�_|�駟��!/��[W8]Q8��aWE^@��<�y6��<
G�nF_a��k[��.O�cЏ��'��~�C�L��|�yAQTP"@��j�2�ᠢ����!�9N�]߯6�}��,�/&�i�ON���MY�<?�t�tY�����w�7����ˤl&��g/_���
d5vl:�p8��m�{UՑ�����(%�\�~�⺪
�V����@��ܟ��;CS�8�����(��I�(����"�]dͱM�k2�C��-�E;�[��2Lݧ�U�:\)R�a-+J�\�2�e��1	XV�|�Z���2EұjT�����2.*E3�>ٚP5V5z�uuu�*�a ץ���?����?-6C� $�5O�D��-�e�i��8�d��3��V��`H�i	����D�@��f�2-�5�qVS�kV!��CF�k�8�)V�u׵
z��&��0<x� sGME�"R���VTNd�ぢ�ـe$��	]��mo�A�;���~�/:??i�&+�N����l�_�E.ͫ ID���Z:�Re5��ܞ,�w����'���/����V5Tҭ�J��X]8�{UU�N��|�O���k��M���h���7<vo`X�Ҩ�X�&��N����@W�ɺ��j���eQ�VGzAr�E
{�w���%�hZ�g�/=t��ɔ�=0�&朌�I����d~r)x�z�ݔ.��ڪ��dX4L���oa��p��>z�f�$i���?==8���oQ����%bLQ�#§����^��b����y�[��?��!L���
�gR�=X�;�{wˑ%�o�ZM�˭�ɩ�Ŀ��������?��t2R	L̇`E^DQ�YϾx��H��c�����dX�����/�Yofӳk�rV�%~Eb����`mߣ򟞞v2C
��j`��v�R��t��Q�m�^̗�A�o�ݨ
�\X���j���������i��/P^.J�t�G���ď��O-�zq}��뫋ӓ��J-C#2�B�yQ
9����y�!/�	ٶ��z�0XT30&�������'�1�m�~x�NN��;����(O�%�`0�}R�\w2�F^VMY�l�%ӓqӶH�2CbWU��g%Lr�kA�p��#%q޼���1�Px��c2ԡES�Y��[,�O�A�Pd��pG`g���i���\�HC��dGC�>�!_s��2��!N9�_��2əg׺D��V���|n�"do8�b�0(��>J�(b}�v!M�e�I��H�I�t��[�s�����E�6�YJ��m� J�� Dm]������o�y}wdz�r�ƚ���$�yA4�$q�\�FD����_��l�@6�t�[#�u))R�����摸b���{K��9�²s[�z^,Ԛ~ �(i
w��d
|�z����h��]��FI��7>��}�Ĕ�N��[��аl��MAq4�
��ܝ�ADy�tx��Fw�T�&_�E@K�Z�i�q>�u]���j���Q�
��y�1���
)r�EU"*�Ŝ�'�H븣���8������1�S��C���C�E��݁�s ���	�A���[�o��ߐ89g6���]��S�HCVH=�ˋ�?�ï�i!�ĺ� ALh�X�>ʛ�D���7~��'/�.N�'/�}���9�������Ib� �/�|P��߾yw���\�W������:�������zM�"�ԣ�i���y2.f�w��k�zy���o?|�Q5��g_�w�7��^����/~�G�>�q�����W��͞�P��ů(�g���f}7߶e�|��}��kj�e�Hd��|��ݻ�o��o��� ���QoM��2o�=Jѿ��稜�m�D��y(?L�<���G��P� ����A� ߁&����]WR�#7u��#ߧ7n�}��p��x��F����^�t:���d:��1�8��( no��2xK3��C���U�M�%@3r��i���{`���;/[&KZ��)�lI-KM%M�p����������d�� j�����B02̸? �d��"�y|, '�ug���'�Ь@d����Ga�R"+a)r]�
�U�n����w�O~�:�L��IL�tWLl��m�){�=D�f�
��5�S#�p��q�'�IU������Y���n�T$L�V�(K���#�/*�Y�(EG��/�eQ�;NP�VFJ#� #e����"���v���~0���O�����2��I�_��xss6A���$�IǓ�b�:��ӓs��"D�~�NJNN�H(����'MHJ���~V`G�Q�2iY��}�
�N^�3�/^�$^���$���w���hU�ڎ�?��O�ApĆ�S#�{C���r5�,E4��9�������2�S��8�O��= ߂^�*����i���p���q�$i̋��v�**��x�>�Z�O05j�Ǜ}�_��e�ȓ
uޱL�4]ϰyY
��럈�����on�+I5u��G
;d�JMP8��^}����~���-��Y�J��a�2�H��@�t]���(�����/�������x{���T��
E8��q{yQΗ+�^$c��������z��"[ض�S�㏯�h����\m�[�vD������brr�f`@�v���ҙ㨝NU�<k�7���u6$L-(���&	N�t:q-]�]������f�Qt\�g=�#��
Te5��b��/�u��q�-]A�-�w7۠�N//�
���Nl��!�5�x"���c�߬>����OϮ�����kI� lY�@�m�Sg������F�Tz��,�k��c�,I,K����q��W��v�!�3?>/��ӳӺ�w�*p���r�ºB
�Ѳ4Pd�������]�|	���u<�I�{U��<��0Mp�Y����(���g�u�uz�|;��ٺX�?��AV�<?��]��eh����,�%���;/K�E�8lG�,�UE��\����<TiT8����I5��$K�6P{��ZШ�5,����A��NNd�����r�W%AǞ!�8�_�8��Wu}q!��" a��?����#� �>OSC�'#�����i��\N&'���q6��O��O��.�`��uzq�YF�@L��D�2��h���e1�:��j*��?ʇ��m�ލJ�<M�' )M
��)�wz ^�J��Nh�j��WT@84F�cр��u��}�z��!�����_�z��s�jZ��~Y�?�|�4��J���4eA�ǿ��W��
@M�ċ��7�o�eY��?�'_~r�\Ϳ���O�:��T��$/r�h��,�G�qtd:e[OHGU^�iY�~I������봨�N�P�G�����i�x�yV]�L��IH�}��@B�����8%u�`w5��2��"��`Y����~��7�!]]_"��m=���a��{V�U���/^QGo��Ji����P��YU5YFJ���=M��{�t�N������#��5�B�t�.ί�|�e��������Y���>�'�s�����5�x:���?)cz�GO���-��vw-
x����l��*N����׿�����I�RX�V��ب<��Uq嵐��ϤҞmM<o��}��7�,���7�K�3ؑ4=��fYDױz�>r�v�$cTYp]�������yv�X4,�A9�_�-���x�D��i��_�@qw�,x'��8�W�s
������r�����j]��9�*|㺪iJ�* ��3qS�� ��$&ɣb��yyJ�)�8����1ŵ�kqIy����g��x2�ۆĵ{Cr�KL4H�H�=N��&���Io?�g
7��N.]�:�ŐI`{؁#`S��N�m�ŲCD���H72>���"]P�p\gy]�iD��������w�t�Am���M]"_���t���z�Si@�
�L���/��(�;M�|��FL����,�H�g9��j��?�lײ������=ӔH� �y��"���ƙ���8�QT-����T��Ȱ5�e��A���Q"A ��f�Y��ˁO&O�Ҥ����7-�6���OO���N�%����`'z}eu�940ׂ�c%�e4�ᚂf�%���/FC�e��a�TEI]N���)�@�j��y�~���󱣫f�ě�>��ǻ9!�Hˢ8�`��f+I8J,3x=S��l��q=N�f3�/�⟑줦г+��-
|��b��mq��n>�E�;Y��ͫ��<������h2������8�H1>��e"Ӄ���uU���{�x<�vgg'�щ��`�Q���6��%��l��^�/������"
&ꪨ`�MY��"/��'�2���m���5F�14(+�
v-����%���/��!2�뺳�{���I���Z�=�}�+O�q$�o+�R�i��p�C!��4x��`8�M{��Ȥ�@S&d��'����?���������^b����Y �����
����
d��L�8*C<֤`	���4�i8��(�q��k��EI^�x��*�6���77iz�E�J��l�Y7��g�p5�%i���c�
D���.7�g��./���%��0N��-�Do����
�~8lCWn[��&�PTyJ�N����n߳N&����DC�d�Le�\K8-�EK$���X<<�TCƚ����WUJ~
l7���%8A��2&�P �+2z��JtQdG��F�L���Cn��)��r�������Z`{<sz��U0��Ё2\��j�Uز�\oV�M_TU���4��{�##9�(i>���=�(8���2�	���q4=�qC��
�*~:{~2-ƍ�=�|�<���Gz�f	#J���Y�ҀS��]bM�X����	߿���g�e�Y)Ⱥ�+�&cY�~8���uA���<y��o��N�>�<�d�Ϧ��e��7U���ټb8�?0����b:\]�V�o���:U��ȵ$~v��3ep-�:O���	�萚]�Z��_���Tͺ�8�I	P��z:�
T4�ϒղ� ,�f��(���M�݂Hm7�����yR�������z9_Ó��/��%�Ws-sq6ONHU�?�UQ�<W�eSU����<O?|���e���tݽ�W�<j��+�����5
2#���q���f���X>�';�MFfD4h���lI�
F'���������-N��Շ����z�,6��c��`�T�a�KhXidjQ����Ѹ_ vɗ��z^�|p��a�۬�
'7�^�=�nj�[�i
�0���MeE�'�J�����7ww���5*d�
ă�]���������^l���/��6���s,�+�G��\֍i��b��Ξ`[`�@�HI��/��$8����Oq
AR����q�ݍ�>ֶL���\��A��Pf��M֌ �Κ�+&��8IhL���R�_��sr�A=0���>�x$}�g���L1$e�2V��v�C�Xm��UKR�7�I���?6����(&(9N�-�/��T;��z�
�l[�)X��֒9��ˆi �����E�*H��2��l��?�Q��a H�?	�,�6M8�V:GD�x�F �,ͯ���!�C�E�!"�9@O�$�@7�:@���Yf�>�
N~Z��!i�<><���T�&�	�?>��0f����ww��zH�-����j6�!����n+z��T���t��s���K-�i�8ΰ?ĕl��74����CT�X�%?J�I������y�I:ö�f�dp�c���A�bjj�|�Y�?�PVg�Ǹ?�D��b9A%8j���
�A��l!?�[���U����t<@j���
�w��4蛺NV`��\/�C?D���[���h<��<C�]\])}��0l#�J7}�ރ��l�ֶ�:�IƧ��C������=O��5��5���O�q�K�=�Çw�ۿz�)�!��H#jؕp�ǙɳA�m�a�8�yS���-`�%���U��($�v"+8�,���h���o�݃}��.ͳ��Բ�dѐ��z�����3HM�4�2��</�)		А!u��H"
�x21I;��`@�`��ެw(\a�{�6%��p㇡f8���!�L����v�&� 
R'�>j�~p��!R�������uEj3�D�#�n��EJF�) c��`.�
��#�v�/.�A�g��7y\>�r���`zr���@
�&��#C��b1{���Z!�?#C9�UƱ�����b�q=��	�"�����:)����71����K��]ڊ�@2lɖ�$Gm���?ܼG��Uy��=/7����̔���EZN��,7ۼ�UD� 3PU������^���jl�^��$��NJ���}��oB����$�� $-���)K�9y��� �,;���I�^��5[r�&��T�Z�6^Q�4Ynw��A����HS�/d�iQ;=k�L��H��P�^��,��D�`�#���1=�
l���ڤH��Ǟ��i�F�p	��|d��0	�ӗ���k��N�9�_K�^l��ia�7덦) �q��dŘ
c��@�#}Z����<9�f��r<#-�����b��'''<Sk"!����!�ư��� /�n��0�(��=>����aδ�d2��&<2�B�`�u�Y��E`��c$�r��d�4$e��z���ͻ�����Ԛ(q(��t�O�~v�B����e�Ez A�^fZְ���=/ۚ���-��e]����q��d���8u#����߬�O_����aP����Y�n�s��y�u��	&��%i>�Gq�s�">�$x(� 8���3�-��4mde���f��;d�""0�t�^U5�/�0���O>��`_zn�b��$���n�X�FjȲ|�\��y�^�9O�����vݸHF�3�L��� �T���7������@�$��O,������BΪ�_�xY��OFF�)�.ey~15�k=�=����t
	C�q~��~�,
���O�ʝ:{<�o��d�	�t�?��p�
'=��(Η�~4�z��&m��d:�X���	�\�5 #�Ǭ7�tMCB"g%Y�ʤNr��n���Lq�_��;�~p�5��Nڲ��`���^����x�Vil��j�/��|��$�'���0^OGn�L�:0,��&*`�5��WU>==�-s@��R&�%�er�b�0�Ai~�;v��t֞���<cel�D4�|��\��vm�C�I�j�^�ఞ��!Oǩ��$E�Dmq����"�"�k2 f�Htª���Y�(AN5u�ݡh�� ��@��F�h����Ze۴�r�KV������Eq&ťڎ=P��!G���h�5nj���Q�^m>���NF77��l�7�U]���-�Ab-p�l�o�Y��k�
����چj
ʌ����E����d�B�:3������d%�j�Z����n����0��3�;�wtIU��;`J&�UNFcEi�P�q��s��jK5�������T���*�n94�"�U$�����3��&��ݛw`$@��~��2��i:��j0�C�4�P ��½`S^�|������I�����$8��)��f�/�'���oxN��{gD=�;_�O>����Y���_	�z�����A=-W���Wi�&�y�}���}��'//gFÑչw ʓ$�ڎ�Z���/o��=��8:n��e����Ėu&w-H��: ���`���ԤDz��(A򚜞m׾<x��МN'8ۂD�H�a���׈`$J�G���vC/�E�l2@!U�G��Ϯ����Y�_��[��|:�	��l�H�WD��׿��6��^^]p|#)4a��틲RDjd%]��*NDʅ(�c�g�c��#�r�mWU�L�,H���������0-�sN��T�5���� ���׷��R�l��v��0TM`�c'��i,���atI�9k��Aq+d�7��}y��3�#�펇�)G*	�V�@v@^����}G�d�+e�R��_\9�i��"U(���e��RU5g''IX���X0U~w���{��������BF$%����R	�I���-qN���1Vޥ渫�u�,+��}�_��mEI��2|�%p�"��qqy��h��#a�<�������pĂ�	�?R���!��$~||>�v4r��)@�0Q�AU��Й�h(e�_*��j�lS%�i�c�6j��Ͼ<L���
t��э�>Ye '��a��$�wIRG��fK�~]�0X����U��%� �:���N�8[�i�b r�ޏ=���-��o�$I�1�l�6}�c�4���;�́
x����h�zCE�QyY؀s�v���Ԥ�jI�_ƣMTM�`W��_}u2&����JT���"���@��}��/��T��3��/�+@30q�\���q��l�,��h� �>��f��]�$)\���+�x�������<L2���ՋӓO�m]]�M̋m�D�Ȳ0��׻�g��
���ϭ*���pR���ZW�����ݻ08�l�0�����i���V�u�:A‘ΩC$I@_��sA�z���"��q߷�A���z�?�~�r�r�8��|�Y�7L�4�{2��#[��F8�")�9��eI��[�L���;h�H B�e�������H���@U/��z���d��l���w��%��	�rXj��O>���~y�X��ɚ�?�>v�9l�@
�?��z4=9���EY8�f�mF���:�8��X�DѐMLН�rq�������]�� J����<ױ_�+ˬ(�<���O���iٝ��n&UE
SX�$>�A�0��3H*ۇw�Qr�}��@\�0B~�8��i9]5�"Y���[r��p��E��z6��;G%��ZD�-Y	�kA&{ER'̫��3����nE���G#cz2�j�4�+��*�(p��b���O��]��H���t�z��	�L/pYU��M˒�,hZx�"���C_p6d*�ɵ���r��x��;ϔM�i!bu��&���<���ʐgP=9��ӓ1(�n��
�G8Q4$x�5�!�Ϋ<��}z$�!M5d
wt�~���]���m�5
6�!�d�d(3q� _�2�e y}/���G|V�dͰi��E&w/E��A�!v��	�$�q�����eYچ��ƉE<�\�i2��%�f�^"�<�4%q+K�8�R�A�3��2*�opFL�4�@�P>y��1��4 i�\��?��	li���b z�$�r`���r��X����f��0L���Y��Q��يL;m�_���~y� �ܐ?n���M�W�lzhc�P<�[����*$d��}?�S���8N�d��o������|6C�}`:�6w��Q�T����hxyvҶ���7X��3�vA�w��=��y����$C�=���J���⩭3r5��mg�4\$�Z�bk�d�?Fi�X�X W��Ժ�(A����G�#�Ͻ�E��W���<>>d�͒O�Gԃ��{�h0�կ~��҉1�-t�N��Ƿ��I��?��e��0!��$�
E�4u}���WH�
ˤq2[�i��p����j��	A
g8$�>�`9��1L�(��0j�<�Q�A��4Oqӣ�gE�m%|��M2��[�R��9b�iP�x^ڑ�X����G�;���%�˼���S٦�����4R|�������e*j���I�u�˷��x�HQ����v��2A�q����CM��
���J]��08 m��� ӫMYN��\�����4�u�X��aI�+I�ۭgٸ�jd��j��6�$�j�d�;�$�G�[�I��2p�(H"Y����<>��H��2M`m8����(K�F��i�^���R#����7wEY*�f�kN���`�4I�>"��%��2/b�a_����a	<;�s��M����ͩ(\X$ҮK`.�Zd��e���9j�L:������r�gigSDJ8�>�۠�Z,ə$�\&KJ�$(������I��S�"<���ζ	��"נ与����_��y��~::ũG58�פG��/^|��_��c�����zo<�ȱ�\<>�>�0
�3�7��Psyj�8N�%ovaB��$E���+�;�	z&�u����~��aKQ�ƒ衉��{��=\6-'y����}��|�i5z�"|v����*ϳ��|}P>>�[JR�lȨ�,�
�m����n��D2G���DOO��р���k��p�
'Ռ�?cۚ�����\3�D����a�?�a74�@Ļ=O340��h�j&��o�_PG�ػ��Z�Ѳ��g�� e\I�X����R��Y�8@�XA�Z�r�m�����_ޜ]]n6Ԋ�/^�y���+�-�Ԛ@@腸��h��o�Lਫ਼M��~Pf�
o"ɒ)���cY� ȫa�YaL�>�Ra��`��=I�G|B*�jz�+$��6N��6�D���`N�?�8��L�GX��{08��
�`ԧ�v`��9I�v=^B@reF�� X�
N�T%�(��p1m����f�At�Yk����#O���>n�ީ	|�&2��,���I��Hiѵ��)?;�}���<@`����>��p=AB��v�&9to�*ߺB�TR��$�
tC�dcc��=�(���F�$�V�G9l
��w���j��|L)v�;m]a!��=n�|�R�U�z����F2�d�I�+�*��TW�n�"��#�h��(P~<�&��.���{yy~>�,u��0s�d3�0��u~z��~{��������@�x�C�{Y!	�W��Q���@V��be8Cݴ��=5��Ԣ��%ײ��cY��j�W���o�f8`L�"Ne�S��8M��CJOrKd���%�FͰHn��$���!���hv���sEE��t����4��EmsA0_.�(F�5�c�ts�ݼ�{��BQ_��U��|��9#���=������ɔ��D��l�-��Щ�KT:X��y��HW���X�������L��ʴ�7�^�8�,�?������e��`����]�^C��`�P`�mj��7��x�r�n{9
�PN�n�n+��\C���I��,q�P�iNX�5E��j�GE����g��q�HB�(�Rg0N�{9�{|Ҙ�Q��5�[�m�Q�T���w��<*%(��8�)*��g�	�T���I2zuf(n��,͟�M�kn8�L'(�u|u��ы���z��0���J]3���<� ���'����<	����(�&0��#�e]����o����g����@BAD���VT��߲$jX�DE%	*�Bn2l�-��z�h�cٸS�J��A(�h�ƒ8�{��y>Խ��?�#��^��䖭;+��);��Tu	@��G�H��0a��(�2͵�1��Ώ��H}��weѹ$��:9Dw��-ӂ�0�PDiв��Q��}�T�ً���
�n�mH	_J�"J,�����!Q�-y^����nG�͟X�V�XA1�}P:�}��zD$��)WM�wN�\��ޢR�Q���ik�0b'�L�%�%i�b�0�sy�-i��-}ɖy����Ǣ���������+����p�H` �_\_�ҡ���xy�b2t����#y!2����q"��J����,�����_\]"�Vo2�k*Bۤ�e�����~�r�Z���~��|�Y����]ov��<������T����M�O��v����GY�˚��-����EH>b���C��|�;�cA�N�QRA��\4lOVsMÿzyF�X�����oYF��G�
��j�@��1�3���} ���ȉ�J��áXEa�D:;]E�=��5�6q`x�*��5yY�(��=���|2��z���)%�qĔ��K�NNP��\�#|E�8���V% =n�G�fJ{�;����Oso0P]Svcq�W��`c�Ϊ\R�$+u��"G�]9�k�z0����-�"�[.	xeQ������[�5����)
�i���Y��EQ'�(��>t�X��[�jԒj��B%�����.�@%�5�� ���(����%U�j��i�[Wk�ʰ5��
ovX,j�i֛}\�K�s��VE�颋������"��BN�I��S�f��i�T���m$�����ǟ�8���Ա<��"�*�B��%�.>OI��H>��j* �t��N�촼Ȓ2)�}4�I�7K�\YHP�Ҫ���Q���d#	����Dܗ�y�^	�{��b`Mp�8s�`��9�����!��,�5]w���#�eN�,�'����}+K�*��vm�4$��e�,�I�[���4�E�5E��X�$YrР����˼��0���8�4�a�Y">3bm,�b'&��33�P�a�m��Ӕ�.�Zcq��{2-Wӣ��4�DQ&�%I��a����UY�5��W���uE��XTY�)��81XR�s���Oi�Y��:���=���͇"IG�>b�!;����s�M��-P�ɽ~�$��4��֚��%�GDž��H�-D^/� N�,C&J2 n���Q�#�CB��q〢��'�;�'�'_s�&�B,VVre
V�R]U$$r�d�i��8"�0�'|�b�B!r{N�^�,W+r��<zr��D$K�LBI�����>�X$Jl���fIz����񖗄��<Kpʑ���6���� ����88"ڒ�J�Kx{s�
�@��ьc��v���������"b�![��������;����\��LA("��I">개Uy@�F�z14�]`��i�t:����(HR�!�O�^�#ј���{��_�a�����{S�N�j�.A4��$��-��?A�@!v�Ȋ �vb[.��		l�L��2�h��G,��2$�ϼ��������iH����s~e�^{��⚡��%d���{�Y��S�
?k��"HqaU�Q0§2��"'�jp��KH8�p��S\E�,v=
�����64µ�͂�P�%|]��t�E�b
�NDa;��|[f��70^�q2=�6e��?w���`̦B1[q�A�eV���	���ȑΰei�*E㛣
�pژ�r�Q���U�5l\@�7�jΡ�n`r��V��I���ހ�s}V�`F��r6_-ߴ��"-�L&�qdb0nO/�N�n�ti�a֜�Prl�1e�	�Yd{�0
u#��-8ȧ,U`�QFQ�O��v������<x2��-@{��7 Pە����HD����&y�>�[{����X�X�֏��;_�b�zVe�#8D�FЙȣLh�oo�%�`A�M5@@A`��5=X�^����qvsrt��ǣ�iSS�Z7D ����^6�f�H��U���7�no��pz�ˡk
�ka��#6E|{r�⥮�v��2�|<���Q�����+����h��‘i��?��)"�y�
۳x��tq%-vk�vb�s�ጱ�Xgf{&;�ۃ�n�+��h�om��@���7�F�K@���s��'��}e���#��þ���O��ٜc�7�ܔ2�,��k�>5ϲ�|[9�:�Iy�����G�h{�<g���7]}�g4��1�a�Q���6@���iE
u��u����]�$�Võ	�����<���=ģ�
�_8��=�����766��0��������<xA0�X�l�퍞c�,#i����t~���6n�=0t4f0�q<����6���=8>�|g}}�E�x�1�ٻy�`��`�8g�`8g�7�9[��R3�u�.w/��Q�mn���RƮ��i���?}i6��rfY��Q�{Vi4Z�p�<�]ZL�HjX`\�8IŇ��I4��@1��y�oa9���!%`|�h��}n;B��
V�^��]�pZ��4��/a_`�x6J�.
2�8��OÁe�M�8N��F����y�Dt�i�E����ѫ
.[Dg���Ƞ�E^fU�6��^��>������8y�����bU�pdN�.���ݵ��̠_��<my<���|�;7
�����*.,8i�~�q��a-q�]���ݘ/f�M�M���ް��٬�'x\�����o���g{�	��x���0���9���6�.��|]jT����Wc!p3)e���x<L�1�`NO���l�$�XF�̟����;�ۯ���l�i2����؜�R�c9����絶b�ߵ���f�]���5�ko��y�(�F:g�WM������58��].W�����kM���� �u<���_��Ѓ�y��U�͞P]��N��dS"��n���DW�k��._a�+�k#�׭��m�2��E��T޶�����ӥt�†���֔�.�*�~��p,�a�l:���G'�o'�#�˛k�� b:>�K;|��w���f?Y�����9ۊ u�}��ͻ.?p1��ko^�Ssr{m��&GK�V��rLD=뇆�5tq����YV�V�F� �)��ʋ�3g!c{.]�ܳ!��/���\hC�EL��W��a͞@	+�6]
PO�'E�l`��aXxx{��IJ��,. 3V�8%��/3�F���6M�,f�;g5ӆ5��ʫ�7��A��l�O�Kx�,����&�����h9��˧'x�`
�
��<��k��{{���r�P�τo�r�����Y/W�i����'�Eˁ�*OJ�V�Z���aNO5WM��]!R�ʸ��G�EVY��pU-�����2����L�<	x�p~�%�7P��
G��0װ�8�%+�1����Ao9{{����Sm����$'�V#���5�C��7i�q~8b������3��%�r�q����!�w�?���{���.��eӶ�M��Wh8
tۭp�m������VDհ��e�sx�We
�R�w�`D��"���+�	z�S����z�{�{p��	�{8��x�L�̎W)��=�2_�4^�y��<�]��(�S7E���5[�q��|O���)�e�O��p�<�x�dm<��f�z�
qy��ͽ��c�xۭ��X��ϻ2��ݻx��*�����Z�y�~���rht���@��:
����5��]&io���߾�{wŚ�:�צ	�"[�9�'��hY�9k��9����c�c�eð����)v�C))��q]�	|_�$^�gm�=�5:8�xR�N0[l��:�N%6?M���ޅ^�~��+��
T3��NfS���3GÈ�M��4ƙ��>��`'5�]������'�E��L˨���w<���E-�^��/�x�o�m
ۿ��6�'�Ki��ʓ��1|)���*��ٝ�V�N��2�`�QȦ�.]��3��a��l�I�Y��`{�����;7��2òH�����G'UCh�v
B1�`�d��ѡ�#R���Ƅ�8���,�L�⫶]�G�fy����clvz4�d�$���Rmu#p�8Bx����K��]�5��	��ґArxf���¸�'sࠍPK�?�M��������X,�<�����G���U���I�4@���Ƅ�b������#!l&�vؐ���]��p�(�ِٲ�����
7h��Ua+��Xtx2ХU�b~� �|Al>�� ��>V
�Sc�p:Y��`a	E#��V����<?><�<��̀B],5qZ��!�ˀ)ĺ�m:L-�:�V�x �l�3�
t�!\��[wd<ƨ�[���׮Φ'I���ˆw}k��E�J�6%a�caG����n��#hL�
&q���ɱ\F�(��N������#�c�>��t2��{vk̀�r�|��(���0$��c�Y�������� �����؉�*���(
��6ٹ�)�{��@�kǶ6��y�����'y�r���&.5�*��@`�bbOc���aڋ�ool`�(��k�jQ¢�1SrU�_�rLb+�=!8��&@�d��"V L�e����^P��2�7�u���[���i(�X�Lp�)���<N���-�K��H��Q�+ecv�#�X�Q�'M�!���xsk��Gw5�����8�</;�}{1[ �F�A�ߦ������H4�흝s@�U�.�1��`8�O@P0X���^p6[fi��!�a!���I�xE
��jc:=��Т�WC���h���z+J�[VA�Lݗ��L�Ԍ�;FAYS��q�6�3'}6v�oo;����-�^/��۬�M`wlSG���-���ܸ����,D(=�������L�0����;�9�G�����7/^�͎���o�:�u��}�.6�k5cv8�V󛯿A�G�L�֓G�F=�x5���E���ӣ�x�!Ӹzx�0�H���)!�,�i1X�6���\�Z���rA�@/?$Q��Y#���LpH�.�i%�n�(�W���q���c���}�%�q�����dCb]���G�^
g��zD���\$��B��6TN��;99⋓�Ɖ3���kɎ��BE�q'k��]����X9��\1�� �ȴ��`ș�EJcwmȖj�T����O��e�'<O�uˎ�C���3�n�"�p]?Ibb��%%u
���p�;2�\��W]�9{���'�
��U{y|t���1<��S�`��L���*�r~�p:]�%��et���L2jZ�%��D�Qm4�%#�u�bgܲw&��ulw;[�����E�yq.L
|����G�������hztpzw��0������8%c��ң��8���8nܼ+�U� +�}[�D{=X��r�,N���e���=i��&H�Z[['��)�Am���Q"gg+���j	p�"Ά�
��i1&�WK�8ϱ�Jp�Ǔ���h4@�w���� ~>�+؀"+��U�mU��G>��9�a����4U+��e�-�r�f��p<��N�ߺ���(y^�;^��f�l'���01�����u��x�h���#��E���$7b[voY7n܆�(�z^0\��t�'���pë³=`&��"#�f�س�'��B7J�H6�܀]hv8VE9�Hg�q�q"-r(�G��Vʲ������w]����3����y��l0Y�����$bE_ӗLJ�]� *t�+K�^B���S�:n;�3��`4V�G̈_�2�eY��"�9FC��)��z^�n��nvN� 딪yX��ϙ�f!�?����d��o�H�l[X����!��v��L�	�������	�x]c�`!�,<;I��=�9�B�>���U���#��n�x�&Y58Lɕ�on��@�d�86�e~w6��{Lc�����5L�2�ט$u¤�N���E�ǞD0��h2�8^�c��ﱭ�B�F&�� �<>�[BؤOkKΩ�q�4Qmf�����g�s���z@S�ْz,8�u���5��Og���<T2\�
�eu������MĞt���{Sw��u��!��EP�kmW����8�[[���]g#6B��Vd�ýp��h�W��Sq�]|58<y��_-�	�I��1�¹�|�gȶ6�`�	�c&��p�]Ü�M����3�<��[:n6���p�^a[R�=��5+\W����v�H���$Szm�[���Ϧ3��Lb���}NI�����$Y�%s=Ɏ��/���P��un���C��^��1{j9�L��@���B�3�/�&1�{S�z��v���Ḉ��7��sg��Q�O�€���9וQ�mN��̲a�&���G�$:�ш��ؔ���u�pϸ�.�c!��ש��8�ж\R
z��cZ�d|d���G�(�lp�oM�K���қF3,���hn��Dz���7�"/������{��66�pDmk�sG��|�k�$s����nZ�	�[Y ��� �:s_l�|2m�Ru��TU�)@�{y��49�g�?���q��cq��)��J�͋S�y�P�Y*�W7��7u�8^,S�7�gm�mp�p-���m�e$��}q`m�����B�ha/�!��ڄ�;-J��i�_��ٜt*V$b!�3)�'f�a	�'�	Í�#�VU^��4@�M���[�����`�C\Z!�W���S4-KA�:�SN|@(����7=:"��$��<�*f0Z�U�,'�	�L^@�s��@H�0��t~�������@ZS���x�5��/��*ô��r���oPau>���ǥ�x�B����!B7��%?��x��^W��ds2	�2Fo�hµ[='�T��؀3��#���ڭ;w�����`wo�h��2p��t��wv���eH@�s�^��b���p!���]��yN�o
���ܻ�O&��q�
� �#lo{=�)m��Ƃ��0�"5��v��h1�[���u�ߵlΆ�D�����G�����ڒWU��?�P	�u���>z��/�����!�"�0Kq�qV���	�/ �Lp���#����$Xb��e<9<�iy�ؑ�M��u����B��FG��0�j��E-�y��G�y�M�:�O�m�p���Y��}@��'�t2m�<_&8����v��P*����p0�H)+�V0���O��8�,c�+��p�g�-�	6Gi�E��S��gԈ�\�{�n˒�ζZdτuiVKM �H���9
��X
|6����>�K���������FDy^���r>�����W^�Q�
���)Y�tV��ǁX��*�oݲenK�^�s�$����Rx��d��U˲D��&	��D�����*ݺ��g`D�1�p�0��=&y'�l(�A��'��
�-��ý�
Đ-�i��B+oq"�$�99>��a���J'�b,�T#Xp�(3�8��ؾt�����%�������p�	s��S�̺�eZ�#�~4-Y%5�O��qꇩ�u�9N�e�Guq{˺\�	ɴ�>,�Tq��m`��kc`m�w�H�eAD�J���2^��c�����g�eҲ:z���l��z�i9[��LL[�����}��������{UY'B��[-W;�g�|�	������a��aq�z6P��t�ܹ�ͭ����|��
K�)���)ui�<���Ѳm��>p?�k��Nv~���7�"�'��� A�j�pOy�����ТQ��Ԑ���8#����#B�D�?`��aєw�Z.��p������j�E�;�Y�Y���8ͺn��f�<ܖ��1���@�f�9�L��û88�x�с�qښEtǡ�1�p:4�\%9T���Lڦ�!�q`�S�3��b���؛=b\鲀k3�>���܆�*���2��!^�J|X"���p�.�2�UNC�{�Ȑ���Z,�[v�Е���X�6�T��Vs��wd�bJ��*�\�:�(�Wt���+��,YUeN�H�����XW�:Dж`�{����`,����S�b��e�;���h8$�!��2����M��R\���xs��,�|�}	�ȸ��t2擽�8E�H^�6��1G;g��$i�TT[��n�,����1썈����4�+��Q�����-�9]��9���St��*54Fs�
�>ckh)��E�8�z��؃��
�p�k�G"J�
�Jy\yܖ���ɀ�V��ǭ��6�k$��[O2�"�&n	�6և�U�����O�C���8�oII�i�*�J��٘N�5�x����fS�E�4�9�nc���˦�\sy
�_�"�]$)��*M�+�0O�����1O�\�<�fi�L�i��w���Q�]83��p��no�m����3E�]�w�ܜ.���O����g{g���˱������[�s����Z���[��/��p4B�
/�S;����N�*34��mn�|��@0�����
�O=�$���U���.��e^:�������%م���P��#޳?|��[�	�nM��M��oqh�O����mgQ����p8���ըH�������`k�0��e���Hc���cm2.j=��r��5�+c��3GK$CJ�N�.��\׏�`�^��+��A�
��5sX�x��'8����0���7����e�d��:1����pPp��T��h���h�Q��&��D��,�Mٔ�hř�Ŏe)̘k;�u8�Ey�Z�\pc�8��Z�~;�M��D�<�+�YS{�T���phH��Q>��� �[���LH�s��v��0w��qS9�'����Y��QL�Y!�⏀x��R�&�i ��r�VЋ�vvDU��&��x& e\Xv�w�'ad���%�9��qR��:l� �	��̓���{e�.�Ŝ:�Ǣ�R����2f���I�0��(`�v���˦g~�r}���%k��G�ʹ��U���Ǭ�be���҂�	�6��n�4c�s��#ŗ�jaa4��PGd��݋كA`�G�q�a��TH��d�4uO��f�O�I!���pE�$�l� �U+R(9ψSoO�fzp����3��b��x�����d#�^[�W;v1���`MF��Y �󙊨��*�!�m�0b���2�Xm�,�����ݥ�0�X�5��)�D̙]s�r��^�����~�ɧ��Ÿ��F�}��wpx���I�������>�y󭫦���"h���]F�ޙ��8lϴ�Z���?���:�T��s�N2�Pc��Fi��dH���h�RH�$�Qna�Z�ݏG�L�?���
���E�N����X'�fB��x��a�`GHPཱa0�!�&p�N�AVd8p�Z�Z3ج�	�l5�`�(m�0�~lNa��JkX:��d�o�G�S�m�ҧ����<�z��'qj�>[fm�f��q��7H��f��V߬ΆsqaLvEW����CR�Rj����p���9��`�.	V2G��f��d����Ӗ�HU-��	k�7�r�_�y���L�rL���4�-۞װ񽨷���%Y{K�����)������ݠ�D%���B� ��I��G�'��ƭb{%C�`�����հ'�9�a+I]d�4�g݋-�uR���벰)��w
���&�e� ���j�_�5��8�E�R��x&L���a#<���Ǔ��J��,Oa��uXC�l$ē��E�&��+{��|�J���N)w'5G���|��σ+`����F�w���>-��Lj���,�gr�=�-bCꢦ$�����EɆc��3�4(̋��ӂ�Nݘ��Y�,r��"S�U7Wes�����V�$��,�wCVmFZ>�}��F�.Ieh%�%B�����Z�Y��������b�u��������"R�=�r���d�����������;wq˿�?��g�}���/����p��ɺ����Xͧw���'߸t��_���2?����8�c��%�����:�g.��/�u�N[�k>�̳=U�9Z���D�ƶ�%g�|�Z���g��;��m�!��g𓤽�x���ʌ�JO&kr�(jChݶ@^�E
��<�%,����;C֋# o\����i�Rb8��dd�q�uǃ�{S��>����e�VS�_��l�au�beH�Ȝ�(�6R�d�������wQ#N�d�5��d�(��h0�!�-/��LF9:��p�X,3��<R6��qZ�����x��2"|95����aܔ�*r���I�,��(�+�4��)��f����VYm�@�aM�U#릔S�G�Pdk3�l�sX^@
�}C��S�鯆:�6��0�٢=w�
U5cKf4FFu#�l����4���N&�b�>�J[2��dcs7�`\L�|����M
ߋ��gRX*�-(�U��5:���I�<�-;\)>�h�Q�Ƥ�(N6e��
{�J~�����C�N!y�y�F�� Z��	�ʣ��\q��b���&i��ehJ�N������+���-��<�\1�$I�x��GD�Kw�tp�A�w�Cx�lqtx����-��ӡ�PG���LqXL̀-���ݻ{w���4�2�Ζa8���r�/r�4�}l����8��w�0���'S���ט��|�{�`���.N�:�8i�d6���q���IUE��������{��g����_�ꗛ�d�
M�A�
�h4<��,WG��o�r����'�����N�`gc���ˠ�$K������YQ�;��� 
�'q�!���#�F��'�c��'��g~�mo�;�.{���MF�-�`[��/��?�N���ܽ�K�k�\���<3��x��?���=����'r�5Vl��t5�ǟ����w��`<�t��ٲ��Ȓ��v�s���L&���� �*�#<,�b�p���y�N^7-�ѨnP�`��<�ҲTh,���'1D��#3�����4��*H!�M�E��),��3��-�_���]F�BxE�ZOo2�˔�(�Y"����-Su瓚�P�1O
Zږ��~�B�V��a�j���,��O=������K��xr<�?�8^ -{.nvg��M@T��$�5l���~/��C�b_�尩E"n�`�B�,������^ɼ�_���+�p`���>s�#������5S�t1ñ%1���GPems�����?��/��"����rM96
���4�����Яo���ã�������	���G����te���pۆ9��#�T9�$b�J:Ԕ�Cd��Xv���b
��%��P|�O�0o	@�LaZQ���K@��
�?\�#0���0qh3��rtX�rD6�s��	�v�J�@`%ہ0㴖MW076�&� Ć�wъ�lu����FI��s�ՃmB�7_ 6�3ڢ��JTK� ���l'I�ܫM�
�[Nϲ��)Ld��������O>�/���?�:�p�ᇮ�u�'��G������:���X�淾������}��[����1��u�%�%-4�!��Մ� N�ނ[�X�9QNk:�I)�p�(�Q���b��M"8q�Տ���,�)MuQ`Q�Y6�\�U���ڵ�_��W����*y��b�5 ���{��4���~�߿�=�����:Xe��2��Y֕+��x�ؿ0���t�P�ؕt���q;�߻q���H��Op("�L���{��^��m^f�?`��xG�r��&��nX
���n�G�s���X���(���,�qB'�4ޥi�s-��p��Vu]O3]h�Œ���j:�:�NLf��l��i�Z7V�-��Z �Z �q��3�6�!h�:�K�\G��Șk|��O>��G�s���o����~��o��6���wn\��|�}��{�ҕ��o����w���������o��������~;��?���3g����~���q�껞7�K�$��`�έ?��7��x��'�c.^�����'�x�G���ֵ����c�C�=����'�~��G����Ν[��g�{���7^4{��g{�o}�k��O?�s���'a%���o|�S�F�	��I��_���>���͍��o}�?���Ft�k̼�-G�u�i,�SX�%6+�2�U�ҳ����FT+�m=����
�̙�v:�z���6�U
����qy��hld�����
�Aׯ�2
A�J^���
�,C���oa���a Q���z!�tQ[[�"!���z��y��>@<�
��A�-P `�;"O5=9���p�β
`P��‰[QwQw��'������6h��/�KM�ˆ��TO��&���a�}�F��o���>��;��?��^�O/\���׎� mEV[g/d]~|�����渤�h�w��|�����@���/})�=�ߢ^��A�G�����jv����چ��c��IB��1O=�8:���NL��K�iV3�g<��÷�]�Hn�,N>�|v5G�ݺu��?����tJ}��a����0}�ZuEϿ�=?�����F�1���|>�U�8�/W���_?�?��M���ʂ]TE'�k�'�������[[g�<��^��+�L+�ٳP�S��-�T�L�:32|9�H";����5��	yOV�h�*ɓ4ɱ L��R�.��I**�Ǥ�QQĤ&'��5�`-)1@���!1Š��k�X)�%�����l�����$����9��5�F6��<N%�q 7�ߕ��z��g?����G?�����y��2�|����?����r�x��O����=��������g?yG��� 7~��_�ʇ>�Q@�'�z��_?><z�����~����N�o{��_��x�?����}��������}�����sq�z�SO�����bkg�jo��w=�ܹ����}��>�˟���ݻ�Q8�r�W_~	a�w���>�����&?��{N�Ǹ_��/~�c���~���[��|��G���o{ۍ�ׁ�~��/�x6�*~	����?�7��}����Xo6�9�Za���j���PǤ�E��2��gŰW<	K�b	��1�����ۖ����n��O5�v8�]Εp�ovKS6�l��)e���I<G�
υ�IDm�ה�W�㣬Ȗ�%Ke�X,q2����]_ߦ|��kp�)q�a��y`X���j�^�����H�8��O�TUx�i7�v�Fh#��z>�<[��3z���/��ȣ�����?_��h0̖��̱T��iQª��Qk�m���&C�
�E�V�����w<���|�6���
��x��1�T:��dy���d(qyo�8R���г��3��^�$5�q��?ɤ=*���Aa�qgg��}&q��*��~�C����'�	�%]��܄i�����g�][�|�W��3ׯ]k�~>_Ж�ݘ����k7o�����7��&�C��hh�<�V�X�?w7p{s[���h�iO��j��[?4�@�W��\��Z<#�ZR�(�s�ʠx�#�Ȣ`s�_�`��H�*W���up8B��.��2K��j��c`	�6c+��IǒU�_@+�ԕ���Zg�W�}J�4���~HC�dZi���)!H����İ���R��a_:]��[7Di�������ηy|}~r�\�v�Tk�u�&�1�-�����`{Lk��	���*��������zQ�qt|�ܕ�2�W_�gs�= �}�::9:|���@��wB17o^���z��g�x�u�Pu�6��x�{߻�N�˅�QS|ow1��޾�k�_�޼~}/�pN��dA=�X���놩X,��&��ɋ�xz4��A�τs��e}�̅s����Φf�fQEǐ<��j#iSq�m���`�	nX�j]����"~���q�&��y���<�R�~��"�,8�B�Z*\�q��{a���d�`�d�e]��p��3�z>!n�F-Ock���ݽ"+���5����!�Y� �(X��)$;�1M!Q�H��OY2�me�ÂJglZF�[��}�F��ð6�^����~�����h_��Df���4rRY�e0�~����TЛ٦Г������q��?�/s��j�0b�'�N4�+��Y��Vt]ߜ��?�$�.9PK�9c������ʪ��g��CO�����͛�ΐq��[h�L�W���t���M��\��;ˆi�Tq)����<��O/|v�̋x�dX�؀�Y����W�z��vx����^��0�CΆ�hf
����޹��Y�}�+_�I4�`���Z-���~O��^<H%aqJ�?�d�q(�$3�xqp��W�[���,��M!�R� ���>�z�$�1]«B�h����`R��e��M-4�+��m�s������o���
eݰe��=/�P7�yT�m�R��־�G�xǣ=�P��߾y�����^~����/�������=� (y����d2�y�ͭ��S���f���O<q�}����+w��AȆw���0����_�U��[o�~��ׯ]�t��W_�#z������X�_��gn޾��Or�܅��~�/_�N
G���j�ͼp��ŋ�p�w�b�^�}1,��/^��r��U	�n��_��ƥ�W^|�ǣ�̙3W_
'�w>�;v��%��0
���y�@����8�H&��2�^&�~��
�q�Ǽ�3s�Ƞ{��q���M�#�R�9�lcg2�>�<^Q�o���Ln�Y�ZN�t��p2bE���"c���7�Pg�Q2��c&�@:5�Y�³����#������lɏtrٽH��%Iy��)b��\��:�$ꖰ�Y�T&&R�c���6��2iCQ���[r��\�"xe�escr)���۟��'uS��g?���k�H1�k����I���Sp�D�O-�Z�M���������o��}����ۣ����>EQs
�
�Ed�P���a����_�{߄+=M�V��ٲ�d"I����1����0�"�!@�Et2��~�6u���l
�t����h"�+��8��m���F��n�.n;���e�r���R����Ɗ@�łO���)�*<j�Ⱥ`�
h��<OS|lC[7|O]�!}Č��'9��,�L��ϖ�p���t&�z����
�n	iB�&H!����-I�oaD�"h��+{�+�)���g��L��$�tɝ�d'X�-H[�JhH�K�&��Z��B]�9>�J���|$rGZ��%�]���u 2�;�lG��)�%�����X8����m��/�������2(Ϗ����U�3��C]�=i�11[D��VT���������Z�}�mJf�Պ]�x<6�!(�#��M��L��	¡a�U�TU+��#DMd[��;��lI1��5D��K�Wߑ�c�+!�P��҆����,�*��t>ˋ�M�tL%���lvC%8쎍#A���r6]ీ�`����98� 
4���5,#
�$+��~5�Pz�ߊΞz^��%�yp$8E�X"DgW��5���(�I�8�j��Z����4h�7�ma�*�6�9vx����K
�;�V�2��d7'�Y��'
�M�K���)c�)($y\��y�g~����·��;���!��r9I�HI�X�d)�µ�y�����^�[���|啗V4�u��o�v�2_�׉�C�&��A!�|��o�����A�l`��,�2f�,C�9T�vu��3P2����XF������D��cr9m�m?��|�=�{���=��c�߼v�-��\qL��C�d�Ȝ���MV��H�+��PW����γ��ul-)�R������<��Ѧ��9��gQ�Q�~=���/�r2��-T8�7�{bz
a�L���P4����P�a���s��2
�)�m��<��t��B?�.s0n�#����=CYy�a�8e��(����@���$���{�L�)��!���Y�V�,K�A� =1�<g

��.\��׮���}yt����:X<+�$d��Hj�U�H���1�6b��o�;��˖K�7`\�9��D��2��3���u�<>�H�-��]�x�[��}u�lx���O�j"��r%��P���?R�A���o�(�!�:g�?���s�8¼$-�ٙ^bNA6�M��Idاpr>��4�ݞ|xi�0��fI����{�Eb18X2�e�ae�4�Is���"���D�L3�p`�c�a�4̸N'�'''�ERH�p�c��ߦ�'��ʔ\�R�����q-j��̕W���`�g�
2��p9<Ք0sj� �"z�s�{�~�c�ү�گ�=s�'/�(��XS��0�Ēəm��\����0�������p�p�;�۸�U�=�A�Ӆ�$7X���r>7�~�a\C�׳YYׁ`R�YZ7����:�ҹ�"����-��_��e�/$v�b���B�	`t]IJ�d�5�7o�����ݽ�{�\*�J��JN�`��I��kœ��p�Z�|�x���D-�3� ��J��ZU�5IH�τ�
e��ҿ��
43�$R;uwIL*9w�Z&/�X6����(c�W^I��6�Dc�[#D
�W�&�a��̑w�pF|�Í-Ub)
n;��T���-f'L+�K��G�'R��2+��Q�Y�ۨ%v[
���U5��IB���qS��7��=�X��G/�1� l���4���P	��u�w�u!�ݒj�J�F�LCa�q��R? M�h�����S'm��8B�D�+����&Lt ��\S�%	ۆ�3�yP騬K6�H��Sڣ�oP˔�JX��*���j��x<:	�YyM!�!k)���*��>b@� �ǺP7���m���*[�o��sx8<��q�Ʃ��n��,���g5��d�Q���l�MEi�?���`����yuy#�"a�!�d�^�
SIQ2F��r���=�� LUl�p<p��j(Mp��^��FY2կ^�
'N����ӓuaIaH��)A6�l~�O_�	6�ӟ����3��?��W
jf]�s�-��ʥ�G�q��������dV֝�;zߤqR�S�E�.�61�a��L�{�S��y�H�
y��@�������F%���50$��;ٱҐ�2n�T�7���7��K��J�յ��:><Z����	��"�Ԍ���p`�2�8ʢ����V(�՗n/)���@��9DڹLUR�߫?�D��)<���IZ�
+��E�WY=	�c�'�z�ƴ��_.�x6��]e��5�JЧ@�ު���6�
�R�>|���u��;�"�b��:�P��+
�w��o-LO���c����R��b�שj /�t�hJ�u3ЫPK��9������s��$˦���,�Z.�j�x7��8C�L����_����b�;�
ss���5E�O��\E,�۪�R�S�c�p45/��
^X��{��e$�	�����e��U%��ner%)Ǎ��@L4I�W6Z/�8�:ഀ�m[B�����i9�ؤ(��$"��1�	�:�5��a4-�<���v�S$(��e�ǀ�GC��f�2�óU^���̔ql%���5���dKK��e��Z��b�oEí��l?4�0��W����d��G��r�˙{.{B(8���Gz2l-Iy_�h�ED�Ξe�F,"�E\�3����,�����Of4}�������g;������6���7�x�����U���|Ϋ!M��~0�Z������x�|��Ie&��~�"Gd)�,1<�j�[��4R�gR���ޅ�4��jH��=����RM����l̅�9�=�#�2L���c˷�����☚�쟶��;9�P���'�U�$:E��\�R��.��	0��'W�Z�~���u+�n��Zjjt����-E� ��ݺ}���E{!�!�agQ$�|�	��V��ĪSP��Aʂ���%0���|<k�����eL[+�*(>c��p� $M5HØ���æ��lQ�d`"[)᪲�5*��;��M%��$�|�F��L@K��N�><I|͆t|M�����!��)���O��t|���'���}��Z�7$�C��,7|%
���k�%X�t%ҋ�<H��(�7l�֥��S�(���^X�6&�
C�֜�Uqk4��˚J	�y��L��b)6��&��5'�ž��D��$Õߧ�'5�DƵ��Wԕ{���C�[6'�X�	{R���('��i'�wI�'TK��ח¢�ِC(ۨ��~�O�VO�1��unQ��qw0���V�E\b+w2���i�I���g+@
Š����e�'�U9�/�$Î�jч��%��qQ��c����ǒ�i�|�Mח_yywo�����Āg�p������·Ϝ;C��v���f̦��
���Fh^vFа<�=���Wqb���w��ӄkr��V"�G�R�*����ju�b3%)���k�%��$3�t�i��K+�N�ĉ��Y@��'1��@ N}����ʜi�Nǡ6,NjBC��:��5��:fT�P��r��D����"�a~����D	��8�)��^�STż=��Z$h,8%M���P�PS�Y�v/�s�^S6E�;%��d�+	��"~�z�"� �ɄF'�n5�e#��h*}�b���~�%b��5(:���c&��|�ʬ��76�_5g�ɗJEL�TCW��&�O`�d~X-"K���o�m	s؊���D�(������
�
K'\�"��ˡ��b�`J0�0x�
�����p�tJb�x����d��ʘy���5��(
��$m�+uT�g�wd ��܈�;6�4�R`z�ij\EǶ��g�.X[�����L�l9"�2�G
��e�*�\RCv�87�=\��]�2o^� ���8���>�X0s"9���p�#pL�q8����l�8����Y�v#3��9v�͚�glv˺y�lP��V�'�p4q��'S�y�q�&k���r�@��G�>%2� b���9i�zr���w�ކKg���Ɖ�65/��ūo]�_(܈�b����S[�79�eY�6�0�r}c���m��c>��JC�%U����^�ߍ�����8*�PQ�  ��g@Z�u*1w/3"��Ԯ�:{�ů����9*QJ4�95�}���D���>�Ӷ�����iw��mr��Au<<Ҧ'nV�R�P����3���FI�1��H�T�5��u2LQL����%�U��P�A�����F�t��O�ẘ�VY-�(�f�4I-��W���*�@X�	cM0-��,U��R�3��[��$��*O�zM��̖>d[�R��)<"YRc�Utk�)�:Eu�(�P�G1,��Z���6�"�P�f������imd�.ۭ���cِ��{>]�i��T7���R�Lg�VJb=ġ�d��D��z�c�Q��TQ
���W�1K7h�<!N~��Z2u��r1CSLW����f���rU����;|F�¯�HJ����t6�+"���̤2"6����%+Y^/�c$�c���m�u_8��?�K�� H�o�Nb�q\3�2ҲZ��#v�p�l�������1d��v�u��C)
B|KA�A➴�Vcv��(Ș��B6	0(�[W�[��ƒ�Eq���
r#\ߎw��><>ZJKPP�_�7�ڼ,�r22yG!=�XFE���e�E��8!�w4��=�u����'’zL������So$�	ɾ�H�{.2����dQ6D��X%�k�*�d���^�e�E�:USb������%hr�?�R8_�\4��s)��%�v�r��8�׃�l��DA�R7k�N<)�E��H�ޒ��EOg�u2lGWﮒ>�[J-���cC��dr�n���T^M,���,HބU�3-:	�:u�x��$�Z����Β�@.YERb�J1���%��g�j�boI�Y�`KƜ��P�P,�[%�mY�z�"TK���y���1a�0Y�x-�����)�<���4����S���vĻX�'�Š�辌F:o�ժ ����0���2���Sr���lȆm�e��"���i��k��FP��0
B���+JH��U�1�bF9Êbx� �Dn�S�����	�5f�t!Fqrtp�_��Z�Ǖ�dhQ�W�$�����k,����䅴�
�|�Hb=��JZ�.��$��MhO�ve��"��:�X���&xV	m�H�Z��N��UZf���Xie5���Y�-� fVE*[����Z���ʭ��C8!�T
L��#����o�rQU�ՊѴ@�B�[5-�2dM)GKܤ�(MhʪXՖqO��4Y,����h�H�����<�9�����s"yb��?�h A�!��4�k�C�p],�嫻�`H�@���b�y�(Wc�̼�.Ԝ���Ȍ[�Ձ����
6��vʫ:�.��.x�N`���
Ab�yb*R��x�$u!?�֊�w�&�޼QLlH�� �k`+Bi/I=.��)��S� L+����I�	]��R{�%�"b2$�q`�Ŵ�Rļ�����*T�ƀ-1�j�X��`�%��^�J4�J'�ޑl����n��Y�)�G��!�(Ⅰ�^]o1ז��E�u�m�sQv�	\+*�i�X<	XJ�39��T�D�Tg(Z	�<d!(i�[�T�s�!T��ܑ1N�4�!P0��J��x�3c�q�[DW���H������R=��`��z��x�	�a�tNP)+N�e�KHˋ�9������I��@Xؑ�(�;y�
�7[��g��Rk�8u�x���UΌ$U���I��
�b��0���vt0C<=��n��R	�4́M$�-W��;�A(�&�7�ܴ��#�4�O$�(�[�`w�h�ge=Z�Uz��)"�����5��m(�֚��VP�����"�"�{����L�Ǧ�
��oZ@�]*cn;��;p�L�3)�K ���V]�7���E!��QG�;�����*��4�;���"�ɔ8Et�샞7��me�ϐtƝ��Z<�gʤx6��ѥҌp{�R�.k�zg[��]H��sʎ!U
�Ȇ�Ҕ�@�f��M��Y1aP��|z��T��h��ki,f&ݒɼ��$�$Xka&hD��'F@N/�Zhh��g�Z��2��󽮈��8��� ��(D02��U����P�������;���
�I7��i�D��σX��GWp�DaX��Fw���Q�5�)Y�F�o/}<�����(�)UC�^14bG��i瘜��M�}�Te.%O)�9�v�4V�F�#(�.O:-�8F]�@�<E�ɚ�{Q�rΰ�l'��h�V����A�%e��#���K�|��Ԁӆ�Y4yʂ		G�|pt����,�U��Q0OWeٝ<�%8��W���ӹG�Z��T���-��{f؂(�
j��>����c+��h0�e��(+�D4�%c��|�F��8_�[�I��',R)�㺨L���ԅ?��},:Gc!���ʈ&B����a��P+$R2�(Ҝ54)s�܆q(uS�͓\����"
P��E�d����-9t�ٞKk�J�Ic�v��=�ǣ8^fI�{��R�y��p�G뛾��2+�[�=ޣ��[�^!�/�ĭ���*�)y��lѩd�>5�_4�w�V��4�
��2�69�:�?�2{^��&�A ��j[�}l��������n�,r��i)���*6�b1��ŜUhvc���E��1;J��Q��\�hj�iD"b�]�P��-�r�}UI��)�$��oU!�d��P��S�fJ& �̌��}UL
lQ�c�����G�ڰe��L��L|<�X�,K%����P>N�I;Q�_��*6<Ͱ"�7W&���D��^f@n¢e���|.sX��`�?�NQ��I�ť�.$�IT��2�T���av�&<]	��,���pM$���l�����f�.U��	d�wB��"L��m����f�c˼o�?L��~L�(�M�L�^���Y��7#�r��1�NKg�X��FZ�<joe�Zy�'��|3��t`	�gi��l�%/և-��K�U9a#�:f�\Kx��ε�7Ua�T�G3�x�bO�S�𐨚�҈���U��[�̫���iV
������
���66�X�)�+DK�S��\�-4�.�����m��CUt]	o�����0-N�$��r���l/D"1��,���g�-��@^�[2-���H�<Y�p�C���&���mi�U,����N�'Nv�^�菺��,�	�P��V��R�gCQ�mj�/�f��L�51O�:m7��$ve��V�4J�Ʊ�Ȁ��8�r~#�H�lH��4�#��P�ē菓��ȋ]N�^���E�5��i���s̿N����N镪ߕ׌�&hՒ���)�����_'�b|;�+[�F'�Tw���,#�<W��,'KHTKz�Ā_��Q���-�HQo��aA�,I�
�WuD�x�J�Q�\rs�H�j��Ӆ�!Ə
�g'��'ۀ7���IF\=)�'cZS;�c��n9Z����m
������o�#����)�G�WTRe�9�"�,O�'0���Չ����Q}ܦ�Q镺�)��4�[�+��R�Q=lGS����±�L<��<`�A�'�j$��]/�PKc�r�iU�&|[�$&��!�b�����R�c�>d�Q!@?��EV�2�8žW��[Vm��-׵F>�(�Vd�^�����'y�N1Rp1���E�����&�_2oF��Ȗ3-�ղ�˶�3!Y<�`'	PY6�H> ��O�^�G_"��:B�N��_��7�c_"W���OH;�I����SqN��
Ha���#��Yj����^G�l�	>``q=����Y[����@kZ-$�z��p�t�x�S ��^�b���$g]��$F�%�� ?��v�i�{���a�L1($ �:��G���>���n����$Md.���T�4c��N.�V`�G�p6t�
�Q�j�Uu��A��Mdy&9�i�\�_,����"v�T��:M�e�R%c��l5I+x�!��|���.1�y���d'�@ZI�B��ғ������5�E�O����S<�oa����=����(i'���I�T��
̘�itf��6�&8OT�#�<P���ʮ�	3'!�A]�{��8��ݧ�����<*ׅ#NI,�
�56�Y�N!pR~�7U�Mh���:��Bz	��V���M�"3��w� ��������f�1�I�VJ�B�I�'���5SBy!"�
�����TYI�)^*���E%�b�}϶)�T����-鎔��\eE�8�Ua,�t°gm��&�|Fd��^&2f��tg�n��5�F�|'��UͲRdHEO�1V�at�RtG�b��G�R��f�L����U4��a`���PӤT����d3��@an���ϤѕA��ze��ͮ��aQͅ�(칔c���z�L�zZ���#=��8�
eL`�ܖ��Hȉ�T
fb��_t�Il�u��)f��1��6�p��˘j� ���}�
�ʙ�z��.Q�R"uҟ�T�h����jC����8o�|��&T&y�1au8��gvL�Q��$�#=�ڏ^2`���e8�f��!%(a���MG��u)�p4��2�_�/Ȗ�o*+���x�J�%K��i�Dr�\=��i�V�^"?�u]J�p���Ax%�Œv;�(gÓ�~��Lᥚ
���t.Q��H�>ī9ޒ,�г�~�#F��u�H��Lf�]�e�M�Q�F�.�/:QVar�g��hr����L
�l(�J�B���)����@S���z��]KeT�
�=�J���nPo��o�:˵�=���S��]sX��Fƕ�J�c�۰�.�H��O�����J�T1�M�U�C�����sa��,W)d'�V�F*"��6ߥ讥S�V564��0����������T"\2�A`�S��:
pT�n���@H5�i�T%�]����.�Χ��S]	��.��kd�ܹ�w��{�Rڔb����VR�4�����S�D%Z�l)*v�؎K�'�Y�<�<'��F]�6�YIOc7�J0�a0`��̄�����sZ�V�D�$^�2Ue�sJE@����Ҿ���Z=� %/{z ƸW��:K!2�{�·��5��b�4�O'����{4",��tf��� �J�0|{'��a�<D^eY��B�P2�/�Ǘ'��fΫ���1��UH+�T]5��(�jV�4�I���q�9�U<)�X��P�Q��mO�aR��Е0���*�4l��lW2-a�J�D
/{*���h�������&�Yh�0��'�?�	�s,dz��Ӿ ��*��,a�b��-����.#�F;�o��+M8	��%YN͂�Q�V�O����SE2�T6^�_eC�9-&�9�+K�ފ#�$w�f3GE��6��2���zD	R�$��KIxhɴWf.��T2�R�(�rh"©�82��bv�*u4�A��)���A�h���D��r�6D	�:��b*�d+YɒH��9
;��/k�(��t��2��VͰR	��+y��L�E0w^������_�䲆�fI�����X��f��
ߋ�x�	j�Xþ��Ej?�A�HH��3{��lM&<y��pm��L,��%��]N��)�{ȇ��„{���4����+����_UJ�/iS�ڲ\M�K_���8y�;|�V��y��뵟[�t���f�|`eU��
�D[[ܡN�
��S|�ʯܼ~��E�x�@�O�ziU┧h8�9��W~��f�}Jq烟�v���)��p�2⯾.'C��ԝ{|�'��:P0<>%Ĵ>N��΢IT��Tj�����e���\�ge�����z�7��r6`��瞒Q�@=a����qe�1���d�-�]����slZ@�/���G�qg@���h0��!T2$}'��"�A�s5śf?�92�x��Z��#�1�o{R۪�LN������.����A�*�=�L���T��"���T�ϖ��@B?��+�t�����wp�}�FT>���曊��oi@Aֈ1�;ӣG�6��ui�|��Y����#CЬM���q1n&�{=6o*^��&����@�T�V�m��r�������:����Hfd\�ʞ��z-KF.zR
�@�{�����gEV�aZ�M�r^�yfd�%�q?	�s*q�]��g�3��O䜔co�gUsI�5X����iI�QӰ?��3�$҂	ډ BO�'���gS���@c��Ë��
N&TxbE~`�*V`���j�/�����p���aM7��Dw��<*Z1v�ӗ�>�4w�9�W���ݦ�����0���_kH(��ĉ�>�Y>h�ͩ7�9^�ܮ����N�c�Z��:�%��We�QI}h��3��
eK5s�gt3����$�B$�y�!ڦ��񟠩_�`1)��(a���_B=���"�"X;�'���Z	��x,G
���]Ob���p�.��+ۨ�դfo�aZ2��l�n� �.G�H��f��т��s��	�֔��]�5û���=U���ų���=(���~�F�0�ƭ����:��Y�ȣ�
�^ʕ��/�DoR�k�Z�2�w�y�ư�[�P�&����>�2�I�!z��z?��O���	eq�TF.M���|c�fͼ�P�dr��R��v�,o����F�8�~�AD��RM�p���_��<�/%�P ���{��u9�Q�U%�=>xT�:lR�E�5��i��g�k/O�ɻ��)V\�JXo[�����?{�^��}j�n'����Q`u�+(��1��$��ghz�`�W�O�x%qf�^�$����_�����HŞ^���D��F�Kl���V���ER���x�e:���=�d�X �))b�ɿ
NSˢ8�E�<�<�*�
��-���]{g��DRX�^�)L`U	��̙|.��!4q��xq�N=���:��X~�?Y9u�{(sJ�ȅ��ܚ~vN��p�ѷp�)��O����YX�2�ũh>k��/�݆Y�w�]��	v��L��[���tv}�������5����knݧDt
���*c�٦�u^|s:�*y|�'�@G�7c�����J�����OW)_oFrY�ϱ[
!IEw�=�E4d��6����T�zƃ(D!q���~\H��>�P3S�6{�u1T�".�wD�F��ڟwب 3����"lg�A�-�
������>�fz��_~�������5����m�7����K�xA�����/ƴ݈L�Qe�lfh���8v�e�,3i�)8��z�O'�2�R^ey6	8;��9�!{��v5V:$K�sܑ7���A��'C7�N��C�5a�7.%0��<�N`� �?ޫ�)'(�f�Ѐ�7j�����|y��	IEND�B`�themes/blend/v1.0.0/style.min.css000064400000024424151213255620012403 0ustar00.ms-blend{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-blend.ms-loaded{opacity:1}.metaslider.ms-theme-blend *,.metaslider.ms-theme-blend *::before,.metaslider.ms-theme-blend *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-blend .flexslider{margin-bottom:0}.metaslider.ms-theme-blend .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-blend ul.rslides_tabs,.metaslider.ms-theme-blend div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;left:30px;line-height:1.2;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;width:auto;z-index:8}.ms-is-small.metaslider.ms-theme-blend .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.ms-is-small.metaslider.ms-theme-blend ul.rslides_tabs,.ms-is-small.metaslider.ms-theme-blend div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){bottom:20px;left:0;right:0;width:100%}.metaslider.ms-theme-blend .coin-slider .cs-buttons{background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-blend .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-blend ul.rslides_tabs li a,.metaslider.ms-theme-blend div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-blend .coin-slider .cs-buttons a{background:transparent;border:0;border-radius:0;-webkit-box-shadow:none !important;box-shadow:none !important;color:#fff;cursor:pointer;display:inline-block;font-size:14px;height:100%;line-height:1.2;margin:0 2px 0 2px;padding:2px 3px 5px 3px;text-decoration:none;text-indent:0;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:23px}.metaslider.ms-theme-blend .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-blend ul.rslides_tabs li:last-child a,.metaslider.ms-theme-blend div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-blend .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-blend .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-blend .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-blend ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-blend ul.rslides_tabs li a:hover,.metaslider.ms-theme-blend div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-blend .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-blend .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-blend .coin-slider .cs-buttons a:hover{background:transparent;border-bottom:2px solid #fff}.metaslider.ms-theme-blend .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-blend .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-blend ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-blend ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-blend div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-blend .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-blend .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-blend .coin-slider .cs-buttons a:hover::after{opacity:1}.metaslider.ms-theme-blend .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-blend div.nivo-directionNav{bottom:60px;position:absolute;right:20px;-webkit-transition:top .2s;transition:top .2s;width:100px}.ms-is-small.metaslider.ms-theme-blend .flexslider:not(.filmstrip) ul.flex-direction-nav,.ms-is-small.metaslider.ms-theme-blend div.nivo-directionNav{bottom:50px;right:10px}.metaslider.ms-theme-blend .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-blend a.rslides_nav,.metaslider.ms-theme-blend div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-blend .coin-slider .coin-slider div a{background:0;-webkit-box-shadow:none;box-shadow:none;color:black;height:35px;margin-top:0;opacity:1;overflow:hidden;top:50%;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:35px}.metaslider.ms-theme-blend .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-blend a.rslides_nav::before,.metaslider.ms-theme-blend div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-blend .coin-slider .coin-slider div a::before{background-size:100%;content:'' !important;display:block;height:100%;position:absolute;width:100%}.metaslider.ms-theme-blend .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-blend .rslides_nav.prev,.metaslider.ms-theme-blend div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-blend .coin-slider .coin-slider div a.cs-prev{left:19px}.ms-is-small.metaslider.ms-theme-blend .flexslider ul.flex-direction-nav li a.flex-prev,.ms-is-small.metaslider.ms-theme-blend .rslides_nav.prev,.ms-is-small.metaslider.ms-theme-blend div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.ms-is-small.metaslider.ms-theme-blend .coin-slider .coin-slider div a.cs-prev{left:27px}.metaslider.ms-theme-blend .flexslider ul.flex-direction-nav li a.flex-prev:before,.metaslider.ms-theme-blend .rslides_nav.prev:before,.metaslider.ms-theme-blend div.nivoSlider div.nivo-directionNav a.nivo-prevNav:before,.metaslider.ms-theme-blend .coin-slider .coin-slider div a.cs-prev:before{background:url("images/arrow-left.png") no-repeat center center}.metaslider.ms-theme-blend .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-blend .rslides_nav.next,.metaslider.ms-theme-blend div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-blend .coin-slider .coin-slider div a.cs-next{right:0}.metaslider.ms-theme-blend .flexslider ul.flex-direction-nav li a.flex-next:before,.metaslider.ms-theme-blend .rslides_nav.next:before,.metaslider.ms-theme-blend div.nivoSlider div.nivo-directionNav a.nivo-nextNav:before,.metaslider.ms-theme-blend .coin-slider .coin-slider div a.cs-next:before{background:url("images/arrow-right.png") no-repeat center center}.metaslider.ms-theme-blend .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-blend .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-blend:hover a.rslides_nav,.metaslider.ms-theme-blend div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-blend .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-blend .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-blend .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-blend:hover a.rslides_nav:hover,.metaslider.ms-theme-blend div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-blend .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-blend a.rslides_nav{bottom:35px;padding:0;top:auto}.ms-is-small.metaslider.ms-theme-blend a.rslides_nav{bottom:18px}.metaslider.ms-theme-blend a.rslides_nav.prev{left:auto;right:85px}.ms-is-small.metaslider.ms-theme-blend a.rslides_nav.prev{left:auto;right:50px}.metaslider.ms-theme-blend a.rslides_nav.next{left:auto;right:20px}.ms-is-small.metaslider.ms-theme-blend a.rslides_nav.next{right:10px}.metaslider.ms-theme-blend .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-blend .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-blend .rslides .caption-wrap,.metaslider.ms-theme-blend div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0.8)));background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.8));bottom:0;color:inherit;color:#fff;height:125px;margin:0;padding:0;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-blend div.nivoSlider .nivo-caption{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-blend .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-blend .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-blend .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-blend .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-blend .rslides .caption-wrap .caption,.metaslider.ms-theme-blend .nivoSlider .nivo-caption{bottom:35px;color:#fff;font-size:.9rem;left:50%;padding:0;position:absolute;text-align:center;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ms-is-small.metaslider.ms-theme-blend .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-blend .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-blend .nivoSlider .nivo-caption{bottom:60px;width:90%}.metaslider.ms-theme-blend .nivoSlider .nivo-caption{bottom:0;font-size:1rem;padding-top:65px}.ms-is-small.metaslider.ms-theme-blend .nivoSlider .nivo-caption{bottom:0;padding-top:45px}.metaslider.ms-theme-blend .filmstrip{border-radius:0;margin-top:10px;position:absolute;width:100%;z-index:4}.metaslider.ms-theme-blend .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-blend .filmstrip ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-blend .filmstrip ul.flex-direction-nav li a.flex-next{top:42%}.metaslider.ms-theme-blend .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-blend .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.metaslider.ms-theme-blend.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-blend.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-blend .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-blend .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}themes/blend/v1.0.0/theme.php000064400000002034151213255620011553 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Blend extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'blend';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_blend_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_theme_five_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['blend'])) {
new MetaSlider_Theme_Blend();
}
themes/blend/v1.0.0/script.js000064400000000570151213255620011605 0ustar00(function($) {

   $(window).on('load resize', function(e) {
		// go through the sliders with this theme
	   	$('.metaslider.ms-theme-blend').each(function(index) {
			var width = $(this).outerWidth();
			// if the slider width < 600px
			if (width < 600) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}
		});

	});

})(jQuery)
themes/blend/v1.0.0/style.postcss000064400000012624151213255620012526 0ustar00/**
 * Containers
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides.
 * Don't be afraid to use !important as needed.
 */

$theme_name: blend;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-blend {
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
}

$(theme_prefix) {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
	}

	.rslides img,
	.nivoSlider {
	}

	/**
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 30px;
		left: 30px;
		width: auto;
		background: transparent;
		justify-content: center;
		line-height: 1.2;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;

      .ms-is-small& {
         width: 100%;
         left: 0;
         right: 0;
         bottom: 20px;
      }
	}

	@mixin dotsContainer coin {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 30px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsLink {
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		display: inline-block;
		line-height: 1.2;
		width: 23px;
		text-decoration: none;
		height: 100%;
		border-radius: 0;
		background: transparent;
		margin: 0 2px 0 2px;
		padding: 2px 3px 5px 3px;
		font-size: 14px;
		color: #ffffff;
		text-indent: 0;
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
      background: transparent;
      border-bottom: 2px solid #ffffff;

		&::after {
			opacity: 1;
		}
	}

	/**
	* Arrows
	*
	*/
   @mixin arrowsContainer flex, nivo {
		position: absolute;
		bottom: 60px;
		width: 100px;
		right: 20px;
		transition: top .2s;

      .ms-is-small& {
		    bottom: 50px;
          right: 10px;
      }
	}

	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: 35px;
		height: 35px;
		color: black;
		opacity: 1;
		overflow: hidden;
		transition: all .2s ease-in-out;
      margin-top: 0;
      top: 50%;

		&::before {
         content: '' !important;
         width: 100%;
         height: 100%;
         position: absolute;
         display: block;
         background-size: 100%;
		}
	}

   @mixin arrowsLink__prev {
      left: 19px;

      .ms-is-small& {
         left: 27px;
      }

      &:before {
         background: url("images/arrow-left.png") no-repeat center center;
      }
	}

   @mixin arrowsLink__next {
      right: 0;

      &:before {
         background: url("images/arrow-right.png") no-repeat center center;
      }
	}

   @mixin sliderHover__arrowsLinks {
		opacity: 1 !important;

		&:hover {
			color: black;
			opacity: 1 !important;
		}
	}

   @mixin arrowsLink rslides {
      top: auto;
		bottom: 35px;
      padding: 0;

      .ms-is-small& {
         bottom: 18px;
      }

		&.prev {
         left: auto;
			right: 85px;

         .ms-is-small& {
            left: auto;
            right: 50px;
         }
		}

      &.next {
         left: auto;
			right: 20px;

         .ms-is-small& {
            right: 10px;
         }
		}

	}

   .coin-slider .coin-slider div {
		display: block !important;
	}

   .coin-slider .coin-slider .cs-prev,
   .coin-slider .coin-slider .cs-next {
   }

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
      width: 100%;
      height: 125px;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
		color: inherit;
		margin: 0;
		padding: 0;
		transition: 0.5s all;
      background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.8));
      color: #ffffff;
	}

	@mixin caption rslides {

	}

	@mixin caption nivo {
		transform: translateY(0);
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
		transform: translateY(0);
	}

	.flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {
		font-size: 0.9rem;
      text-align: center;
      color: #ffffff;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      padding: 0;
      bottom: 35px;

		.ms-is-small& {
			bottom: 60px;
         width: 90%;
		}
	}

   .nivoSlider .nivo-caption {
      bottom: 0;
		font-size: 1rem;
      padding-top: 65px;

      .ms-is-small& {
         bottom: 0;
         padding-top: 45px;
      }
   }

   /**
	* Filmstrip
	*/
	.filmstrip {
		position: absolute;
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 10px;
		ul.flex-direction-nav li a {

			&::after {
				width: 10px;
			}

			&.flex-prev,
			&.flex-next  {
            top: 42%;
         }

			&.flex-prev {
				left: 10px;
			}

			&.flex-next {
				right: 10px;
			}
		}
	}

	&.has-filmstrip {

		@mixin arrowsContainer flex {
			width: 90px;
		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

   /**
   * Thumbnail
   */
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active {
		border: 0 none;
	}
}
themes/blend/v1.0.0/images/arrow-right.png000064400000000331151213255620014156 0ustar00�PNG


IHDR!N,gAMA���a�IDATH
�UA
� �{�`/���u�4 xY�2JUl�єb���5�� G�!"TA��9��Y��-�0�*�y��㻹4�Y3x�1�2���nb���pKr~\ ����<¾{r���~�k���ӿ�w_6nQ�
��~�o�S]W�~hIEND�B`�themes/blend/v1.0.0/images/arrow-left.png000064400000000360151213255620013775 0ustar00�PNG


IHDR!N,gAMA���a�IDATH
�U�
� t~hЗE}h�&�,�p�R� Nَ�3[J3g�VNDVX�f&�=R_r�ɊՆĹR�A��	����T	�g�-or�@�CI� Φ�3C��xB�ϛ��;N�ʫ�(?����}��y�ŚԆ̏���S;�ɛ��Z�e��i�x��]�6&zU�(�]WR��IEND�B`�themes/blend/changelog.php000064400000000115151213255620011554 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/disjoint/screenshot.png000064400000165515151213255620012556 0ustar00�PNG


IHDR��� ~PLTE��������������

����! ����
��� "��/-�����%'���*)%%
!	��<9!+Yv�����ا��53 '+#��/b�9b�8f�=m���GD*0]|<r�6^yFr�0Up2Rj2i����?=*�����A^u)Ql7Z\���(&OK,747Zs$Lg4m�-0%$Tr<VkFw�(8A?]_3DO~zM(]���������/LdRO6Ai�:LZPXG}���MS�D@"�qn>��ˈ�Z`\?��?JL��1GW���Cd~���YV3���8>KTge>���LasGZl:Pb&H`2?G��)d�vrHZU=���c_K��^�½Ry�46,% =x�<IO1/������ض�����Y|Gn�}]Y��KG4���(l�Og|#"_������1TW-X]lkL)?LSv�utUX��&53d`.������2t�CTde��|w?���3>9��nPn�ERW��dmi2bt���n.-���Zk|���U^��R[W$b|�$QW��딟����#BYS[^��s�����r~�f����p*MM�����b�����-3t����`������PRL���Xeo`���͡�}�����h�@FA������<��:<de`��Oqr��Fd!DD���ǿ����OLxzxA>���o��qqk�˼I���������gpw������ކ�q�������툼��ƿ����<V��2��IDATx�̝l[W�;�&�u���kb�8i���E@���,��@҉2DA�B
�"@k����Md�`�@��h+�"�E�V�Z%Z#5��r�8jQ ���T/vTk�{ν��<�ߜ��gw���{ν�;�׽�uo ÕOt坍�k����?e�h��~b�#G�[vԴ�޾ᾡ�����������{��{���HY�.�0y�w/?(���(�<[�^��c�䙵��SO�7�F0�N��G.6�>7�����A��ӧ���4|>�1j��~~@'��g�>|�
�7�:l|�M�r�>�%ȏh�vT&��~��[�����hz���;Cl�x�S���g~����#�)��z#���v$��O����a�ܮ�s��|�*\��uy������uj]^������:
pz<��VY}c�:�d��a�B�ۡh]	�@28=�:
E�����?0�7E�Scm;��v����7�q�������Ľ��S�o*w�덤R񱱤��z\���g'�m���3��?�����΀��q��}n�c�]�@W�j]n�Gm���:�D�XD�C���`F����^����X���C��F$ lC�h�^���ީHЛ�t'�2��H�1>6���\.������͍|�9�Q���Z"��a����ry\A_0�v�;>�ۍ'^O����i�ahd�.��!7�Ӛ�vVG%�8 ���Ła#,�v�B�,��u����lؕ]��	�;��=���4����l����|��y�Oܸ��|s[GG4�^)_Kx\^W����<<����ww=�ÃA�������F������`!��0����@��#G�����
��!�RGGsssG�HO�l
i�'S<�+�o��s���~����K�׶V��k���Vƺ��{e�ݐ�����g���W��S��ˋ���y�
i����p?ʭ�Q��S����{”N�`�PQ�FM
G����8��KC;�����`��J�@_�@�bjn��nL�ώ�2w��Ffq��.N�������L�%y�81u��=�VX\f��e�[���c�|2�i��.w����q!�{�k���Z
�?���t'��2�3�f�!Cm�
 �����p��P�{CoM
hA��c0mt�"�1
�!LCK��-����s�fW�XY^�/�a���5;���F�����Nf�h�J�����2�~�<|WC^W��ѽT\.�� ��G��GOv_���c:��u/C� ,��������a �ch�Db�6i�N(��L B�3�����d����˟�4/.�+7�r�ޔ�5suz|=V��U��y�  ^��f=^�z)�����5�0��\P��^C\�ߦ�O|=|�^N0o��4C�q\L �H����E���ڡ�^��޾aHKZ�yEĮ�0�����kiy�R�~���R4T��/�{���P�e
���;��;J���2?�zD|W��?��r����}��V�p�Z���	@2	ޅ7������><4��-�$�A��!$���7����{/)hx�x�c55
6
�:�F���i7y�->����<W�bT�H�l1:�Û�ٱ���J��R�9�l�6�(�>���D��")��2��'�x��pKKK���Dz����M�b7������!$�S���`��p��,��£#*�=Oƍ��Z!
��
�i�555�qi ��ƃbN[ۅBtx���p�-��>�vu,�+dJ����ΥZ�CM�H�>=��FV�:;}�z�j&���%'d"��ػ\� ���%a�n�ު5a�;�h�g��#�î"��A$���ǹ
����PD&P�`(t����)�rY|�ܕ���WX^VC2�N�m�;>5�tqb	E*�����r��n��z	�,#h�;O?���x���gR��q��V
�D�4��.�;�l���m���B�ӝmQ�Q&<�jU�T��:�L��Q7��E@n�'�PP�1v��psH�Y�	uDc��B�%����d�(��öbq�i|��V�2T�@*�����[�;�����姙�S�L2����j�������B"M�vp�'I62�a� OlQ\��|��;�E@pC��c5âQ��[MM�!��	�1y`�F��/M��Ly����租/,m.܌!��o�W4���R���x�`	r���B�駘ɧ�m�!��F�=)�p�!�t�FD?����U[��o��C�q؁�)�Qp�e�G9��X!�Fd<0X�g 8تx��
<_-��w��j)T����z�#Z�=����-w�m��j�x)��FY(b�lb�ILz������c��Lqf
b���� �l�/���}!8�"T�~
U��{> �R�<N��v�e��ĭ�� ���D��aV���]� D-��?�w��ō�R�pg<󫗣�����ٖ�Bfqq1���
Dt��^��p�q���o���L�y
�����"
�Y�8|�qXAȸ�A���AK����(� 2
'k��c�P;Nh��1@B��Qf2�c-]0}�1�R�����C�o|�}�Ŧ���z�M��go�(�+f��~(�D�@Q1lx�~o0�:�a��ZztѤ�5�b�.�`2�:�o�o�}�	�AA��ip�@����‰:	i��5�ŢD@��8��>S:��J�P2(M�3�r����O|��^X��a���������A�p�nŗ�a�@K�y5?��}�uXL��
Q�aMR
�:`���c0���\�2�UY@zO����4c�;:�
Ar���R��C�tY�R~+��212]M�y�^��o�y�z�MW��N�@���7���H*�}�$��cP�ݹk.�F{��t�-#���-�tV�Ў	�o�x�f4���+�	xP2@��-H;@��Ɓ��!<��+�5/�v��\}|�9�9;��AP7�Q���4�[~�����K��`$.�ӏv����}�����Y� 8l�ñ�Am�4`/�IpDȹ��hx ?G�LfCT�=B�N����;if `!,�J`�4�mڢ幋#�d�ݕ�3�S���IWK��ʯ�����pU~w �������KIh�{�p!s#W9<���q1�+?.td��|&ۡ�X2?�i=��t����H�P���*��p�����pQ���E	
6Ph��cy���6G[�b�ZKwb��m�&�'�"���s�V�KD�
�����	�6�Yf
D��
��?r@T�ڳ3�����ڱi 4���@s�m�a]��q�

�0Xi x��M��ڝ@jNR�ݡRdbb�!�p=���B��xn����cQY\d�U�Oޙy��L�E�r"�J�D<�S/͜YM�/��ӧQ8�bC�p�B
H@\
K�KN+ṗ�Vw�2{!O3�e��p��ơ�6��TD��?�C��J5(�老f��Ob���u�@�a�$4�7��	��0�)_I�i0�aE��^z�N�2*�s��3+��gSI}v���D*�%C:��\h{\PP����@�tr�Zv ЂH��t���P���{azI,��[:�@@A�5�R3�:Zè������Bcc@S� ���������@k0Js���4N% D�6�9�($ {���.Ģ�R��L6�87��RkS"���$�d��M��LWa��gMS�Ʊ�	DL&����5$��G�,`�88�����Ŧ:�&1��T�k�*X� ��%�I�`�r@G���qM���Ĭ<�]!jg"ͱ��ߌ���)e�7=��3�H��v�c��q����(K��\�
�x�F#)����@���V�̎�Y�2Smy�����R�*��WA�'K"��+�hL�P.�!η�vR�m��Z�
WMb��8fB~��>3�
�
��;,���q��(`b!��ۢ�C�.4l���T�p�EQ�LI�7
Dj�vS�t@`8p�H%]���_u�Ec�0���C�hb�)�CıH�����㕶|[4Լ�EX9��R��,qae��r!Y�F������Q�(��ʿv��o5���p�eu��n2�R`@�u�p�8q�F�3������b����'�R�(dX⇉;���:����R�-Z�ن��{3��T��Ia��<�^�c)��x����Ht-kw���Y�!��'�-�|0��FX1é2Q�V�\�A(d\�F��D�FY�~����?��9��j	�5&y9:�P,�Dg��V�%���W����Z����(
����/��
p!���zI���t��T���EYY�
��W ��(
�rR�н.@���W$�J��R�jN���ձHqN+�ąE�<�N_���6JU^.&@��Щ�ݘI�O��]���Ioό��0҉d2w�Ep7���cas�m#�H���a��@��n؝fA�᭖�m�+���!@8|� B
�T���t]�����/V��x���tD�T��Pe�����33i?$�˫��͑��\O�(���ڸ ���r'.�aB�l�ٝ&��!�0�L��VȾ�	��-C��B�H�X��R��K�M@��VL�s�1,�\*V��li�F��}�s�;箏��0TG��=/.�^�>7{}���P���Z�.v������}�ؾ*������$p���s1{yJ�HK�o����,d�
&��0E�gBp
��
!
I8TS��6��*͙ʋSF25;�M"�x���>#��I�R�� �~`��/����T`doN%8)��D#
��Ӑ�7����z{-�t��u�7P���g��Y<�d��E�a��H���[iG�f�PN ���2�$�d�+h�#�pa���祵3��ӟ����r{�� �A�E0T�PA��#�qS���⁎�#t"�&P�Z�����~����U+]�����g�ۊ�BUq@���y�����9��ߌ懶l8�r�Ӌj��)�0<�흉7�ŵd-���
q��\T�**����ER}�ޜ��G��\��Q� 5ܳh�N,���jP��A�Y5�[E�M1�E�J"(���PSdc�t�Y�.��	�;W_�k��1H��kݽ�#�T�e~"����)#죢/ 	��x+~����i������K���<���﬋[��{���mYtr
�k��is
.Z
��W6��y4�5
���?&���],m���Wo��a�{�vҍ<� ���|��������v$|�FXn|�,�``�����" A��WP,H܊j��j�f��
�ܨ�,$����Β�J�6$+xOB't����5@I��B�?�T�=4
"<}�o�T%����hik�Oq�^n�J�%����fl��VE�2������	 !tw����1��F�n�-\��,�'����7���&L���)���Op�$�D$L�<y���0�*��*��k#F'�(B���40楘ޡ����A<�X����H�u�� 3�6�^>q"id/w�z�%v&v�-z�R�&VQ�
E��%��^�"f'dGm�h������Xw|b��� �-ym�2���w��P����!V�`3�I6�Or��|BmXc����܍��,�#�Hb%��~��$������V��|�г;��m@��X��4�D��#���\Dq��:	\�H����Z<$�Hp7K����e
���=����v(��hKx�C��xh^�xr�?m������D*��:}~�W᪉�Z�`��@���L��a3{:�D=vx|r0a jH#O��@70YK�pYBK�	�SL�ںZp"j�O���,[ɀ�L9�_����F�\*Ύ�ci�Un���3#������n�/�'��\+���[�[������)j��lbNv�����z:
po��ƃ
�'Y:��@�Ki� ��C�!��9}����Sf��f����rEH$�H�$R+ۑ���Y�����vZUV���B�G���� �}�8xc �:�ۀ�G
ڐ����"���a����B"�:i
E%��T�j�$�C��O�h,�ٚ��T��嬟�����啙Tj��cs�8!N ��ZV����l��7��c�u�:5Cp��L�,�+����Au� MKŚ(��y*�c���C�I���.DlQ�3�J)S��TOU*o���՝\I��'�۹n��pi|�%��@���m@�#mݒ�=sTZ�N'���Uu�z��u��:�n��9:;a���]Ob�v�K�����4�P~zk�3�.M�O�_
S�p�#^O��X��H��Dr%����&{�2���Ӂ�d?��r#-��'0a �kBp�Q�s�N��+뮸�%.��Y\~W��Mza�C�>n��w'�A$!m�fBm�(�W��‹q��:�Y\�����2wW$�qE⑄�B	�t��WE3��䔸*�[7A��u6
q��V�p!LJ#2o���y��9��f�RPï��F8�c���#M?�#��V�Z"�`� \w�Z�qؠ�2�ˡ|9���i��ԥ���r2�\��
P�q�h�!O��2O�#���h�E$ �d�����Z���%��>I��.:�s���鞷=���ZQ��J.CUI����<����E+�_�_��f�h1_�m�z�C[����`fg)�z��'�	�*���`Qx�{ 
�7{@�������J!G���&��]{�t��ơ�ݑ����M��:��_�8@YHC4�*�A@85�V���f�x��#��h�4,4������-uo'ss|���Mŵ�7����ȥ�q�Ftt �L,�j�'^8-M�����P�U
�IW˶��%�Q�� n$DYg�{U�
��T��+�bwR�Ç2�sVv}h�B�X��l�1'5��ȴ�7��C��yi&���D����պ��D:,t@ �����T�ND��*�ƜB8�;Ғ] �oAڸ��"R���v��q��2|8�����Z��/z�xX&P��-^�ILMC�Lai��K�G��j$����B�H*��9Z��� ��T ��U{H u0�j��tC��a{�jE:�(�XU�E�f�6��$
�@�E�^⩊R
|z�Ԫ^���`��G���<�,�f�hæ�a�'����	gx���j~ggg%�x<�
F"��T
k���+���z��+�׃�@P�twv�N!���	:l�?��|�&��&�.6?3=	_�BI����;��d�$Nx7G��@��T�-�PP�ahЙ.�I�T��iI�O�c++#�_=��r��D�^�G��D6ߺ���<W7�"
��<���MD��S�S�����S�׏�I�R	vad~Y6�3>�1���3Q �T��D�@u
r��ف���vJյA�N���r���i��=�9�&�&l�o���� I����6o�
��{am����\(��r��ʹQ�
'FFj�������'�Lԇ
��ua�Tϑ]UN���S����]��S�S��B!5uNC?�P�:>��;��P��Fܟ�7�$�h�n�積Ŷ�!�g5���o�KM���(��7���9 r�� $��yXU^�ŝ�\#r@W˽���ֽ�̝D:���\Y�Z(�έ�\ί�\O?����!(JZL�*%��2c��
��|��>�� Vp��y��έTM�Lt�(�$�h���T)�
me4��>J1z��~��'>�QlS��!Qv�LCq����Fg���,�)�n���m_̗���J-�_K�,�W�����7�S�F�旃Io8��RJ>X"֨7�P��xj���u�[E!N����$�8�~o�i B¡'K!��, zRH�"f�X�%\0���[Q^xKA
�1Fk�v>EM��Kɴ������ۗ�^�]���O�����2+5]�4�����e�Y��;x?\���=�tw������Q/j�E-�)���;Ȅ�|}�X���9�(D`E`
�����a���@�W!N
��`1���ĝ�M��1Ѡ,�
���P�8Z,��os�ʙrasrc�̋Kʼn��N[ӳ�D<����PhO�u��`��E�#�H�=�~7�x�t.r��y��M@�T��v�
\�� �C�S{�$���P�˨���b��p�V��(2�P�L�q��f�U�ct�>�	� $8����[��V~�\���6'��U(3q����Z%S8�|:e�ܘ1�'R�����V�d�v�o�R4���u�3��F��`m��6�Փ���<��&�9�F�����IC�R?�D�=B�A�n��P��1�N)c���1%B�<���R.7r��ť����k��L[f�ɭL,�m�b�H&.��$���:�c��]�+�pw�~��ڪb�t����2�$�4yTo
{�:�'�Q��W��}���,�r�8p������^�Bpp?��@$D6��y0,	�IZ����b&zbg����B�-T��f&֖������'�?ſr�E���.x�ˏ��n/\X�Ԕ�ܕ�p]�6�Ƞ��z���4�D���
����ۙI�p�Vz�4������N�V���C@���Ο}���,�\6�Y�d�Mnp��RS?5�����|&6������_����Q�^v?�N��V�]*�{Y ū[O�j�|�G�y��3������/�嘫b}
�&,y�
�f�A�m�<��#b7�9��I�s�m��jD4���q��/�2�р���y%h@�7��>�fq�sV�]̈́���y�2�--�N�;I&Fn�G"�����a��Cn�.�)��km��8������(t����0aX����wx�.�w��.%F���l�)t�R���<��h����W&��Ϯ��ڇ_��
����u�Cq!��3�*��΃�d
��Q�)d2+�M@
��뮏=����N�-'�Ǚ�A
*hy�xq����	(�V7�{��ӈO��]��?�04v_@��/ܭۿf�ܔϬ0��"�!�IC4(z~�
)�4-�oz��o�+���J�I��!H��e*��c�byp"3�mB�_&�)�;+��1�ߺzi;�m$
��_G�S!C_颕�n���<����N�=���]B{
]$�𗫊�2<V�yX��k����"�6婰lKh��kW�D�$s^��'~�PY_�Ͻwz��3�~������hm&�ZBC���Yv��F3�>2!fv΍�$��TW��|�vG�
�4w�lh\1~�!Rʇe��]��!5������O`|���V�A���=�+;M��l��F�T�i\omm����?���'��VϾ�+o���^�}�,�#��t�a-�xB
	m=��N匥����<y������Y�8���M���	pe鎫٧Sx�@
��\���G|ڷ{��@��ߋ"	���i��;�n-O��d�7U.��]�~������|�+�{����bH��Bp8{��X�ua������pw2����d�'��t�Pi!vZ}_���j�Ϻ�>r����B��=�L���@r�kvH5�s�shNi�
��a.4�k��BǏNL4���7�s�����kw_x��{�W��cV�G�ڡ}!�`&��͛X$g�㢮埞Kz"�ٞc�e,@	fi�V��B�Z���`�E�ȩS \���@:�z��gwjP"�B��V��*��hZ��d{^��.��Wi��',`�L �6�	��W��������`��G/L������W�y��Ϟ�k�YӠ#�?�P��Ͼ��/�����z�h*�݉O=�
{G�~�#�)�1�$��A�����C_��(�L4��z����L� ������մ�1�(m��1���9x@$�y@oz�_Y_/�+��g/�ON�{rnarz|ssc��3~��S�Rl��p�88r��'�������/k �Ø7���=��̱���*�$��С�Z�r<=��)CZ	H�:�����k��C
[��I�՛eWk0��u�:w������֓��� <�����/?��J�96>=7>war���N�F�<��?���k�8y��[�GSqp��I��o�F�:e�?�]����(������O7炴d'Y؀[7��!��|��/��J�-�l�k�C.����a^�<G��Hmq���_�X,�m�����,�����g0��g�y���r�)����"��������/�g_�a1S
dgcu-5�t�;6���L��;��tCЇa�+ ��� �
"��C�F۹�6R�q�V��wkk�t���6��d�-[�
�֩�5	�"���-��Fw�C��C�x�T(��&"Sv�
[�hH�:j�%I�MMB��?g2i�z����M�/��;�;gΩvv<�Q9P2���*8؟�q�J����f�!�)�j�!��5�ƐTv�H��>q-74�,�\�y^UT�q�)?�/��Ѡ��K��x����E��x���D�+�g�?p`�U>w�OS�]7���*�_]7���N��'e���?w�y�-h�#� xF�Xb�J��K�Pm��� �*f��o����O6�#��@0�4�Q+%��
�ˉ�j��|��ⶬ�_��O���$��aF�m��q�ǑO�t��o�<�A_��å@�!MHk��E/"��FB��(B�������S�=�6z��L1��
�P��lH�}H�������h�������7�Щ�-���2��[��ݗ�_�L6„��0\�M�4cxa�$�A��� ,��7CM[Z8�K�V�pڎ�
��[Rt��x^�JD�
�*���9�\��4�X�7R ��80hZL�s�,z�b"I$J�HC;5a|g����ӋOğ���3�A��3E�&(�):�(�C�,�Ì!�/jqY�T*Gb����KKh�O��F�L����Hd�����Lx"4;b<�^���ݪ*����m��t^�e�e�U�I�x7#��q5똝��e2����;
H�i�L��P��V��hf�9!z��`���ě:��7���xsq��so_u��{9�7B���@�5�� {i[
j�xQ���,Q��2�t��������w�����5FEA����ɦ�.!I�°�##�*�A���$�бBNS��*�����?��a��0;�s"ϰ^o!����_��/fVu�VK�PDn�EVH����m�-�������fB��Y���є�B@$�=3��6z������!�)�)҇���H�ɾ=h���"*�t��9"]�Q�ς�{,��b��J����7�Y��G#�y����L�0&8�l��N�C�2�my��:P{E���rN��1��v�=oL�a�ժ�"1���#9o��-�<�d2��
��L��S�ApP2Mrj�¼�U7�8�42x���)z��>���"���Fo���1���}`��4ZS4���e��K�@�Þ䵏f|��־	h���Y\�Ύ���A�y��5��/Z��V5�ը���7���Yc��3�`�.5z6V����o,�؄��.�2<̉X�X������TU������.�yY��:��+��/��ӫ��2��Ke!U�L���P���ш	[�e��a^V˱J!��O׺��}�s_�܊��^=�F���d��#�^$�;�4��Q'�d2Y�Ţ-��@G�mi�__7J�ڥ2�ԝ�8B��_��t����o�&�@���!��񋲒ӳ��[l܌�t���Ê�in^Q}Y�U�(r�9���S��S����R9�@��P(�&4�3�B/� pP�~���C)pZ9��i���ޟ_]<��6}j-��1�cP�:�H9�	��U(��q����ձYvWt�G����f2@A5D	��4D��U���\�����?
��'>��v���%1��<(��4����l��<�_�STI�u-��o�b�̏%gVOǫKg~<3?�VM��&��:�
*�Z��ux�Ô�Z �`�kO�ыJ�����Y�5]:���y�窹s��>)��+x*�^܇3�ñ��
��AbΗ����s�X�щ	W#�����4��'LV5}t�L�k���67X���]6XW��k�%�F�Op
�[
;�a�[���v��z�=,k"��}6���h��+�,�-jqE��c��l~6��;��.�v�5-���9A�0V���{0Du����{A��-�|&��S	�ŋȡ���B(ufq����������pY�+�ȏE*���#���70��X��h4���r�kG �d7�.�"p���ΞZ#�6�uZ�e@x��a*������vv�cڝ�����zXU�K����XDFܜ���62b�E�]�uUVQ˕+��Zܟ�����3�����
%R7���e��u���`Y�A,*Z6�lg����ߘ&1�TJ���շ�7���ۧɓ�X-�xV8�#VW�»�� �:�Ad�1����?6�B��h���#��T�m�J�Ŏ�:�&���H���I9��o��d맧��?{���/n˽�(x����8!�x�U�����ͳjB��XYdEY�U�PD�,sB6��33�O㋩���3d�&�Lꯊ��aT���V=�R�'r���
��T�\.�[iR�:I�>�ꗳ'����s
�O�Td�����A'F&0Ȏ�p-G�D�-��*��B���B��E� @n��7�_�`d��<��%VDZh�w�M��u�V���v�ń@t�'v�kSvp�kG;�օ�irxЩ��G����>�3|�f�9� '�
s�&q��7"YhH+T>{|,G��ӿ�Ti�W,A:��Zv�Ãl��=8{=�`�=!�|*�'�0o&�YI#�i��+��QQW?��������-�콚�R�2��U���0
&4�����C!QP ���BDT���o�:N� t�8�n�.]�w�E$��w*�;@��5�@�o��y��.��#�
s,s�a��AJ��.85���Q�>�v�xM{�$r���RbY�7"�'�dGe&I|2�G�f��v[�(�e���'U�sp2"��K�;��T.�Oe@$��W�f���V�_�d�g
=�s���h��<�e�ɐ����v��eĥ���7���7,.�B�_G���Ji��vܬ���*�J��~do� Z*����A�ԁݩ�Z��r]�ީS��oQ�>�=�����v���$X'��uPT!A��iGS�f	k
�(<Qr��(F6�

DDM�V+�����'�����
��,w%�
�%ˇX���D�|*��fR���R�)}����{O?v����=�X^m��Cބ���K��{��CQ �`�~�!���/��,$G|.Wk3~� 烒&`���++��זJ�"�y���D����g�pc� �Q����H��B��ߌ*���ʻv6m'�P�GƗ�G����Q ��pl��>��/V�����r��#�6�w�\NCmW".M�<Y�7eS#�D��S�'���Rc/�R�*�ɛ��W<��c�0��bcd�<�y��QAH_��g��xj-����К<A,�.,����/|p�gj�j�!�_���'�]C"���v�X�,�F\�.��n�_HW��f��f��6�X�\�p�k�55�i1b�~0���'Bİ�mWS�.F8��4S(&�]0��ݛ	/⳼���۬�#�p��ڙ�{��FzE@��C�Fl6������92HbxԐdH(���R�����:�K�2R�	^�|r!H;�q������Y�@��=�5ߍ

���R!�466��a�$8
gޞ�yo��[o��=���H."����h]vCi&6�w�E���rE}�I,����%��e3Y͌A��7]�U����X��:v�����f@�����V���ӈn29�_>wY���!҈���=l���/_{��琭�o�}��C
��1�p������zv�D�u<�H$��_#���H�@PN�~4�ܑ����l��)!Z������w;I���A�`����4
ň̩�E<(�e��|>5�_*���(�q�s�̩�+n���{�ѹ�'��	0D񚵵�����@,�؄�E��:-�J��T*�誌x�N	��+���&�1KK%Y
j+�T��Y�rsd��&t߿Qr��VR�]�cQoei=�ѷ���h&�6���͛�?�vy�� 	�߬�a�CC�q	/i��������{�v�����г�a�ʄ�<h �G'�vD#2�ʑ���M-��Y���3�wL{���_�=��B[V;�`�$�y
D�dIx��kȁ����3��粹\&yd~&��#?��AU��T�=o�-�~f���[�>z��u�6�W?����V�@He��K�W��=��2��Ew�GW��W��je�U��*-�:ک���C����2���5YΦA�š��ci�D�Wl:���j�����1�X�笂.�v����=���=�c-�'��x�|=}4tľu������;Y\]��deT�'�%;
%Mg��L�N���&v6R�hz'}�@��s�'�wuG��z��P�N�:��X���^U�8U��;�=v��Y0��ﴔ���O|>�@:5}��(Ѯ*Ix��H��>8BԺܜ�7���ggb1�ǬzYb��t����T�!��Ң�nU��iv�b���u�O�o�:���c��Vb��$ݳ���L2��ɭ��݉��]L��l���ŐK�E��/��i�g�Ԧ�~r��.k������lv�G� �<�Ʉ�0���z҉)pAz�����$VR���Ɔ;�76�{�֟�cO�o�\S�����H~���հJ�h?��V���>j�9��/uK���&̒��r��p�F���W.�$�kNw���{�s�ѹ�UءRT��"��|�
!��NEg����u�S���i�$ݐ��퇩������7�Q��~���	�f�Q
�Dt��7��R<��|?��ꑏ�j��e�}�pAC��-ə,~�s��ӹE+c!&��a�VS3�*���kҒzt��	{�NA!	gKC2SW�rr7
��T݈B����֡���bA��9�"�������֮�BB�E��
���u3�ۭ
%!�p��.�xnI���_v�$Y����H]Cw���N��>ݱ�"a� � o>�{E����{I�,�M�H�M�]��i��!{��i?!/�.��
{�8��3��l�]�z��H��#��h$��G�?uj䆫�x����M{���)���x���r#�ڏ�C��!��0Y|_؊�"1���|~��'.F�	��	7���&a��;W�^��Q�]ߘ�4ol`<�=k+{�㧟P��,���w�-�e�_�q{��涮ޡ��r��C�[���}���Ӝ��.PT�Z�?1ϦRɃ��l,&�%�>ױ��Ӭ8����=t:n�$笊�aX�l<	�R!�Y	�,~��0�f7�E��=K��~2���$��`_h�Pb��2��O��"½�D:�d���� �H:��k|��՚�?�������'^?r���e����`8Z
 �<���Kٜ���>^Q�»[�#G^9D�˸ �F��A2� S��=F�����n*5��g�mnl��wd3��nNѷ����C5w��-O���m�fkm���ؽ��k���Cb��\X���֎��Ō?EP���76R��T�"��"�Cl���c���n��{:7a�,Y�7�P�E�+!�Br(�3�.���9�t��,y������Ư�+�����Ϣ��Qds6��w��j"�L7d�`0Z��Ն#�6�m�ة����G�W|j���P��Ѻ�QXxiqѹ��0�No)y�m��ĈaE���,1'��$��1'`$)�d���N�~�a*�U_�]��?���K�����]
�������d������I�1:Z��2:���g^�bW[�
�(h��ZĦ7�*ֱ���Y���M�7���b@%F�]&�B�2�D�kѩ[�ݪ���1�IV����"��0rn�����x�7c1�dw���F�g)��+kHt�[UZ�H[̋K-��!����v�E������f
��Ƒ�vVkB���/��r��N����j�^]�PH��K���#yG�.夨��uMMԳ�,6Y�4?�sN��1U�����8A���y�ɓ�}�ߛ�ߚ�988X?Hd���<�~��N>�w�.�컃x#��^��=j{��a�녉A&+3��m�|��a�����}$�K)|�Ü�67܊���p�R��,����,�F�_6����J�NIT˩»$Pt感f�Q�,o�,�q$���1K̯؝f�Kr�~�/5+1�H
CP@�w�8'$/��&f�M�Zb裘��K�;�:�ᵙ�B��7||�r&>_;���K�ڙ�+�Qv���5��r�+�R\\TH�[�BEEIi�<1oUA�(�����@ q�7�d���ƻ��3�;I������Ar=ݓH���e���Y=�a���í���������-����ǟ���h�,o%�X����C(����d�����3�}���rͼ�-�3���(�au<K~��(/���]�d#%�r�q�]r��#�3K�p��L�Ȼc'��8M�Kv���J���$��QDT�X���?�~�C���21Xe�V�VY��Yʌ�#G�Ͻ�c���������N�p�
̿�E�5 �]*�pHp��|W�v%%�uϖ��Z� CmU?<�G��p�P#'�E�d"�"��V6�-g���;;�l��@ܝ[�
O����r������$�ؐ���Q��������S[�d���$kx��~��Yg���Jyd�Q3/e����"y<���Q��n�/
�Ԙ�R�˅�2U7p�I��� �J��Q�ٯ+�D��m*��o;Ud>V�v�H/�N�q8̊�P���u���c�U���֎���G&l7_rj��S߲��{�����r^��U, �(>ZTxe1XМUXx�p�M�%�vU�tU�`UY�;j���B��E�@P����3;�gvi����lm�������#��Lf��N�z���>��wuy���IX��^hhhm���/��DA���3��V%�v��:�>+�"�Xr��]r@���!�,��d$�0*$���E�rܤw��kLvYɹv�b���<�KE,�!�&�R�i�
���o��D��K P����rj
�T	#s�:;i��[^����ue���M?�P}��O�ͽq⮛����z;�@�פ*g�;��\�Rx+k]) �!X�����Һ�RM6b�G��tez2�X��s;�c���Ν�8���щ��k�F�CG5��@����&k~��_���g6��6���VޟgM��w���wo>��̦l�#�L-���}Q1��F�n�dj�H:N~�bH�c	��8�^B��e��Ǜ,=��C
$8��&��f,�[p[�HF�ǿ9�����SZ�t��f�9`�!�s������S��k]�6OD�k�^���?��my��Tydk����i�m����Lr-@Z�ª4�gX��UU�5��V��J<����ֳ�d������0V���?�u#�h821ݱ�ͽ�C��[::1�<X�I$m����j{{�ea�e`a�a,lϳH^�㕏�No��g��:#yx�Xl6'�6ۍ��Rf��O�#:=,�^٭iӉ���9�7�
�Q�-�E�>IXIq���-&؀k��D&\��Gv�o!�H��ϭW�ţЂߡ~������`��F�
�>op��bo4=��G�nX[�>qc�my��։WO]u��ۘ�I\U&v1,,hp�yHq/N��3��JJ��>����Ƕ�Jp��#w�i��p}~Gs~��`0��D�1�����`x�}k�՛���6��P	��h���o�N�Fm-6�hmm�n��`����뉉���-�;��0�ኟv�SFOl��{k�`	�$�B�r���=�n�#@YZ�A��r�M��/��J�!���[��!I�BF�=�����O��v1�$�[77f�Z�ݒQQ�<,��H�73�p�v�!�\3bm���3skk}���_����K>[���^T��n.լϮ�t�=zB��ȍ��:.��F !>.��c5��`HWUASUoI׻]uﶕ~���S���B0����&�b�F�������j{�����U��2���xooA~��+~��W����4�vw?�������!������/�:ҩ�[E*��fj���oI�Sǵ���t����7W�%>��wq	`D6�\.������$��֊^
���+�5E������H"Ro�2ߴ���E�\^��[���C�� ���`W@�c��v��G�z���>���G�D��b����S�?gn�Vn�|a%1���Z�������Ҷ��6i{����y,�P�}�%�	��0y�W��V
�ٮ/&�.��N�5��K�;�a�I��r��a�m[뀈�Zm�ӭ-��ã�4S�����$Tee|��2�9hlN~�—��"���V� �B��\�m�\���Ϣ�d���������IPDҋ��4N��kVQ/<!V✠@�\�2:H"�7�`�hN2��Z�M�щ�?`5#p��Z3�N�.�N1�vT���g�M�<�r���\{-|�~Ⱦ��Gʪ�XG�Ͻ178E�q����T�X�@�۬����]�U/�6�R�E���ĿS�lA.i�$hyI�D5ɻ���k�ա��^���HR��w=��I���W�����t�p�e(��9�84��'�uQC<~��i��\���{��T�
�2�&���c�9eĨ�c��[HG��T�2���8pԸ�N����ЌYbP�1q�h�K�Щ�c���B����`��Q�oQ&V$=�p;@D0Z�ec��Ih�3JJh}�/�m}���F��s�������Nn^�myxu���(��v[���F�q/���i�������������W}�����`~�_Ɉ0UԦ�v5D�Y�#$��I��[EW�s�������YtLJ�\�{4��<�=������\ph��{h��/�}�H�K�&ˍ&��:}w(`��!����Jvd�./�Q���D�&*N�P�j��x�1b_��*��ܥh��14�X���.7���#����Qg0hPh�@=�"�h�O�>���}=�����:=ߠv�;�����>���r��]�Rpy~�
�h7��~��鄍]n��.��8Z����/�RtT�\s
 LX��3�^�� ��n���wM~���d���Nj�y<�{5����V�`Tu�hf��^#����/w�QD�fl��%S�+�׺Y���
-"���/�~MW�tꮬlll����z'N�ܭ�+1���އC+R�֜@r��a�L��==��	��m
�--��q��䊛����e'l���ƹh�=��*u�e�UT��9r��r���������hT�s;�n��G��gՙ�ՕhÇ��'l���Ϫ�i*�u���Ū�R�qM[GYk?���^�V�6�Z���������W{�A�?�&�0eg*w�Y7�r��+i.���,y���pxb,:�����������h�moO#�U������l�MԾ��|��\kk�1�St5�6:B{�_@��������
u7�U�G�z�i2Q��]����<�BC����Dc�(Su�z�BwMPD�Hw��!`�����z��Z��=��x �KF��P� R�}he5:�����%�ߧv�pm�Hٹ�e��QmEx���2�TۋۋY*K̏�(B�b�?�:ט6�2��E��n1���ls�i!n�KO1��Ŗ�C���fS��>�e&���*�RuY;�fk�+&u�h�GPۂ�a��8��a�:#���x��
��^�u�����dKG����L�h�����J,.��/C����~h�:�#�&�|�?�1tk�����LǗ�V��-k7������>�eڷ+�+�ΙM�Ĺ�y`�R����Z��]R	
)J��g˭��n�Uo�;-�tI�L"������:�q����K�6IS�PkD��sģ�AI �Υ3á�9��1��
��#�gh��=�Ѩ�3�]:���p�m�����+xɞ6�5�{���4��f�ȍM�۰D��eN���sߜ�_=}�_;�ӟ��l��J#D�\�h�a}>u�A���[Z������`�7�w'�L=:Gډ��
��33���ܦ6��[�\�?���\�����f�V�X�ߨ����$و�}˖��e��[�hK[{�I�ë�1��P� ��p�Z@�a�b|&8�M�G�GB=m��ӹeI���d^�._�ж�j3�=��Mg)+�b�Z��ߪ�o�r�2n� �hD�7��3�7���8������!=�S�a~D�M�4�7:�Ɵ V[�,e��{� "RW��+�
 � m�0�$��y��]�[Lw�L0�p�MC+�Ϝ|�Y��9�T��Z=^n�/#�R�b;냬p�/@��Z����oG��L������@z��w?�����?��c�)���-��}�GW&�'����F1gZbS*���;-����E�N'�J�
�%�jaa����!�^EA�H�]^
�Ւח�����z�-'�q��d2mj
#��|(��0�B9<�DNQ�3s=d�_��ȃM��2Ә�	��%-�إL|�~&�-��RUV�L�P��?!n5F��0PE��� !BN�oi�n�T����f��N`hCI�Ōc�2����ٷ8t����<�v�\�T�B�yKT@�X�$��/U]5i�[>z4>
wZ��[�)7Z'���[Z���ߟ����Qը˙&~�<�J���1�r���_}��)|o��Í����Ŭ�X��Z���1�eZD=ZA�������y��0�����6J����h0så��-�C��L��׎�=PDKe��pt�*Pp��ZѨ儥��yu�HMP���s���ᘿ�5:�Ʈ�Wsd� �/�B!�� ~�N��y�WO`���84ȥ�ަQ��
J�^v\�߀"1n�:��r��|�ȵ/
�_{�>�v=�-~����x"A��,�?@(�Oƙ��v�QK�w� �@�e`��U{����Ê��v���mz�޸T�����2���iK1���CNVPN<^
�-�z��B���*Ր4��ry�X؛�sX����KE�;�d��|cn6���L$���7�1��au���*&��kL��R.�a�Rʲ'@�����-�=����(�V�H���	C�~K���[�3M:��(�?.�H�9�0&�.�91�(b6kr~m��{��$#���7$zj�@13�ň�А�D!�K����#3C�=�z�==t��~���:��>L`�X�OdY��Rg__���@:ZZ��2���w�����h�w���/4�˒��W�q�
N�6	��'~%DI4��R�{�����;C������[��Eҩ�������@��l��:ź�\ٹY[�M���|�o
�������1�Q��ȋ\�4����U�E�Z��%�LG�~ɺ���_\>��,>&B����13H�a1�2+�j�d�;z�Q�� ẓ5������S6�t��=�B i���PC+�X�a��2�,8��QO�G�P��	��2�[���c����M�a��67UA��شf�;
$��|�3��-�����[[A$������唵�*���,�ks��]q�w��`y��?�Z��;|��w��1n���{���@d�.�+�* )W�-�%�f�����Z�٨��&��+�����j����[�艋̩{?}z.7A���G�船M:�q���/;o����bE��H��Q��=z�B��s�e��u6�A�7��r����j�F�ua^��+=������ Bv��1F��q��o�V:��=_���#�!l�Co<q��	*U|\��7�pB�pb_8TV��/@��o�5>���1�Bӫ�����NK{pr9h��Y��YB\�L9��Ć`�͔�o*��Ώs���1S���h߲�T@�:|fu�{��@=����w���E@��fa�
n����{��Fb2N��tm7��{����~ag�RDSS���g�DJ��j}֐�%�E���Ϧ�͠�%���8���9R�[&InmK��8rc���7���6-缐D���&��<�^�"��O��o7��)Y��hGDFG(�v�$�B��4�e�E��>2��gS��I��IIKT�)���h�71��	�Y�V�"}H9靷5�im�'��W��*Z!1��B�Ic	���2PZ0:v%dw��:�؍\��������J����Ȉ`����n�5�08�:��뚯��潉������_z��?����~{q>kJ=x�gi80�@��!Z���?��t:�=�
q?�
�ɟ~L���r��� f�Ɵ�[$�R��M�	��Iy�6�O���h=##W_y��Žoq�	�\z9�0�hG�
�h�h�ߛŰ�=6��c����MC�<~�H��S,�S�DUwa��~_2$�x3�6�� ��4�Q���`b���z��|~��-NH�����U)"�:
�O��jq��� 1�c�����[�V#�0����!�U
�,^55{>�Ӓ�[���{[�ɣ�;��k��+���}��Ǿ����O��M�CRk)��pIN�	q(V˕���
HB:pи��N�Ƥc���lf�?����+cD���ߙ�VĄ&�RO��E�,��������=e��T4�1�HR*3� ��ld%�$��y>�g,���9f �ύ�c��u����g�2j"��RM�;T�%w���Ľ�Ġ�}0�Lv���&��޾��;ח����-I�C�b1dqT��uG�JnL�Tt��Y�v��!���(��'���
g���:� �\�$F���1�;��٘K��*�{�J&��׺�Ƈ�KC�{���B��~�Q�rˆ0+��0ܓ9g���,�\���j�_�G4$q!�
�)F]2����ө�(���c��|@�9�;�\V=�9����P��y����Cjo&�/8%>�ӣG�v�.䊲�V-�a|��dz���o���<��j��KǑ��9q����n�eM@�����`��`&��i�<��2+A&3^���w��e�ɂ3@���r����&f�od�46�$$f'*�#V26Dy��buw6:��i����ý��\.�D*������թ���$�����LJ������K�~���>�]�Yu�MDm�l�\̩
�Ŕ6�C9�o�>�Z,&?x8'�vS���ե�����Usƭ-�ד&1tJ�Ĵ��tE��8�FR
0�%���>k�5��2��֘
�G+@��	0 �5 ��A��yif�p�xؔ��n����w{�gN�7�1՚��4!�������|b��4�m�/�ל��g��C�tfb!��}��v��.o/E}R�f��\5Ls��V����V�š��`>��� WE˫/�#(�#t6������W����۵O&�����o�Z_Yo�_��O��}�ß|{բ�}Q�6���":��L|A��a-���k'��tt�6]&:'���~�H�ۼ)�L��Z��phm$��`��j��<�@bq��3�"��K�D4Ɣ�M
���W�)��ǟ!&��m���mDƊt��,
��ǎ|�ᷝy׻>@�]�I�1�E��t�zG���d=L�����y�zk����;>���m�_�u;�YQ*�W��"xb{c�+ VNN����S��šෲ�HT*��
d����)nT�]�f�`-szu)<�������R���Tj���-<�za������i�(RKK�#��롍R|���8�9��Y�7nn�B��cs���B(�%K��YkЍ�H�IEx=�j�z\��e6h="�1�٬�O�q�r��$���^�f�`�C` {Ѹti���#��":=<b����ΰ���79q�̻>@�˂�xi��pC�_���&���(X�f���D{"��$x�(0
fZ��`�\!�j��C�0�
��q�훊D��;�C�aH4R�Z��_�h�@��J��]A�#a��`�U��H�����F4Z	ʤ��Y;]�������;���F�m0���Y����R9 &Sq�]g1�	@r.#�i�n5\8g�k�i�:c@!�Zs�Y�e��������J�0��|�֘��
u�_g	x����/�޸��
��`S�IP��IIqo��X:�-aW�_�(�N~7e�3�dxWB*�̿K��k3�1"s(t����7'�moi�ho�`���������g�����Y޸��
�V��Q�
c<�V����JTcj�7�&��Y�<;F�P��?���F��Pr�oz�K�{�;���������.}��wo�}~��o�{� �$��/����)����Pvv��bn3�4���@�@\������W��bM8�),��FH�)[�q�d|L13A7���o<`@Ĵ"���9	�`��.�x�U�jx�C���ٷ��A�w�[�R�_V�T#����=���	����h;���v��
�Y�6�}\��H���?�~y�ᴻE�c�����)���|v�NV����*��N=
n�>wD �J<���P��u�Ly~��7��B�~��K���
+���K+�B�R��~�닋��Hb����;�E�����7C!��B֍����ɯ��W����6����HA�x>���y �D�F����ިE�y8�y��������"|��,.ra��v��i�(����j�!bⲚ�-{�WJ�ҭ�'N�9s	�C���տI��!tK��ӥt��%1��[[���=��I�--w�)��.O���L?�0J`�d��V��]�PB��v��v��J:6���,���y���+H�4�A�Zͺ�.qץ	QP���^��g��5��3;�x~w�n������@r@�ooK$^,�#k�-��a�I�V����z�oT�����ӛ#�q��ٙ�v���ֽ�
pcӥI��b�
�������Y/�'E�����f4⧀@�~�͏I7M�,�}�}���)vw�,.2��xIs�_�$��z�ك���� ��'�d"N^8�&󙎎���͔f���I�ɣח�z3fl{�@�3Y�LE�bq8��-N;x(�Q�د�#�4�+*�1�*rV��h:x�$�0d��(��(�ڽ�>W�^����=^X�����O�FV���3C!87��o4N]���oF��$�vg(G	�&'-�R.�=����K�3x6����<�bd�Z��x���]|!�J1�|��H�.
�P��c:�D/�v�!y�����x�s|���9�,a	��Ãg�`�5hHr�[�Q�J�ۃ�Ó��Lr����ݱ���4����}(�F��Fj��C&�A��j���٧~E��~F��C��@�Z�p0Q�@�	-Q#^��LuM�n��7憺V���Ƨ�W�����wo'w��*�U�
�9z6f!��Ch��{�v����Q̑#�Zp�Z<�� ��j6�&}*FmJܑ�O!�G�w�w�0I1^� �Ȧ��M�C�h �Tb=?���_�1��,���gO�D�Y
���b�A�i�oq�Ȣ�ש�Cf�\��A���=������dK�N��/kVצ�RϮmcK�����Ґ6�-n�8+�aqB�l�Ě���w�c �ʊ�G��%A�!q��8�p�nŵz#��������P׭�����K������|���pb��m�}�4�ER�H���N�7�h"�#%4zܵ���ؖj)B��Q�$��C1IQ675r`]Zƹ40C	P*$���; aY#��RHJ��K�:^���"A͵FqY�b�D@n�8W�v���L\�޵��2GzΜ	�&��""�0�pL����{U{~�=�ϓ&F��$��c!�{���rbv}�Nd�����|��Ű#�� mV���c���x,�Q7وV�x)�b�
�)p�}��#l���@ƻ�W]d!+;��ݝݝ��D~�y#�X@��>�,�O�
 ��*���4'ҥ��̌{�)���k<���Ei��J�@C�縢1b�l�"* p��
a�z����;����DbD�&���KA�r+��s�r�G���;r��Y�uio��׼.�V�␗;��n��q�� ���͓r�[;���78YX�L�[�זL[.��-��Yg�d4ْ�1?C1~4<f��b����U(�G��-DZ,"*jp�|K&7"�;�c�pQ��h����w���"/�������\ce@�B���yû�E"�ۏ.1�U���f8�]����9�yJ% 2���Z�F�T�Q�r��Ab\Sn�+H�G`SF:0�����s���_]}�����c@���uȈ��0@�ʼn�Dd��B���7���~��[�p�m'�:E�
뷈�TS��h&�箞8��<t�(k��;����ϱ*(���J��Ը�x�.�t�N�w?�������B�jq�bB���/JL�@ҩ�Po<qI=pU�%8O
K�,���-,��A7aowW	6N�d����7wd�>{m��O� �D0^���|��`Tsd7’��-�j�:s�~�ڮ��3��
 �\�r�:�b�H^��zRa��Z"'HpG�_�F�������	���wns��l��~�og�!JZ�7#"�����.�����+K+o�\;t��4��afpP"�/�~dq?x�-�`��ל8t@:����z�683{�fd*Vw�5�i�B�]�>�M\~vQªV�!N�0���L��[ߛ�)E���9uR)K��-!���4��X42�(�TVKU�qW�C]���:�SZݛ���vy��8AH0��ۏ��G���CZ\�H��˒�+���7�1�۲`8V�1y"�u8���:X��6���;.L�N�ɢB^a
N܋�l�{��P�e#o��ƶ��p�L:\"Zf6�4�����)�Ͻvn��d��"�A����(�E�|�(L���Ndj��d*�jx?��cvJsBI""�\a�d��3
^)us�P��r�M[[@�K+�	@ xH�!�� <�(���J���n�f��������8xLuww�6����v3��M�fc4��{��O�R���!�9J�KJ̢�(�Z~a!3S�8�a@�F�E�9��nUg�ޣ���j�Ni�[���'%r"��6��x� ��OR��d$.DDD�nj�0).���]+b����[����c"�ox��#\TT�M��5�"�i�#)��R\&�9�,O�,�:�,�7��Y( p�F~"W;e�>�ٶi��%Ȕ�㊙��F�R�N��!�d���G�*G��"�ϊZ�a��R�vGD:��~��An(�W���W�jޝ�B2���VJ&��?,~��ٝP2c�hY)"$���L)P�
i�\隙p2����{�9�9�QAhֲAg2ƒ� � ����_�"��%�;�ܼ���^�L�}�j0=�i��2"��5�H*��Nhb��X���>y���]qQw1�,�<��� bR\�˴�O�](��Oň�����<�[[j���07T��L�-i*��Kz�H�L[�wj���b!�[��eiJ�+8௠	x�DG��zwd��p
�c������Ž��xL��v���MPj��N��|�;_���Jӕ�4����<a������';� ;���B�n��ђ
UזBF���j�
9Ј�1KmP�LqM�D�����{OYOO��,#�R�@Gd8�P�Ĭ�G��Un�����x��tg����\1n_^e�_}C@��b_�՛�Y�R���"1ވ	»TI�z�C`ˇ���`�L���RCKG��^�.�X�k
h�	�&?"jV�k�D"V7ݏ=�0S�u��
t㸦�����;��d�vvw��71>^�'�W���G���R�B�^J��$���r��L'+��D��`ʇ��I�FXbM��A�F�@ :-ԀB=:E�tǹ鈴R8&I�m��
�P{��ft]pb'0b��N��OT7���6���o��}LT@�����F����U|\�@KK~:�6�?����3��D�:}hJ�,���1��e��N�5�E)�<����{��(� !�
c��O&��܀�%�ܽ�V�P�_Ou��w?��� Sj��%�k��pxgnx��[#!�����x�?��F���g8/ ��re��ۭ͆�2�1+��'��''5g��3��FI%���(A0�+�
��Se�d����9,��6C��\d̅�*�-"g�_��g��J�~���*
ri;���5yP`��ƃ׏n���D&E�'����Ѥ0f�1�Ʃ���
�[I6AJL��Ύ�[q�%_��y���ՋJ`���-�D���^�����������v���N-X;=�.Ԇ���E2فG�YܝcV�EV��OlԱ��7�O67����%j���\!��]F\�K�(� ��qX�����
�Hy�y�`�y���'Ϟtr�yB��=&4���
%G/0�ʸ�#��=o��ɽ���Lsg�$���G���	r���MWv�3�J|hЇk�`���pV�8� [��M@@Dt
��Y�u�$��!�<���o!?�U!�DU<8w��8͑
��J��x�;�JH�T�~�����:7=t
���_�!=L�����dm7��X�.�є?�],4"Y	����W��{��;�������>��$��mT� �jW1I,��S�7n��&��7!2���L��&T@��ٽO�P��$R�B�Et��Z�90��#�9��=D��?y�+�	������]����u��L��Î}�U7?tta_�`�DO-}8�s}�S
l���ԕ�M9\.��p
�~���E��+
C8s�Mi�.�
+h{����
 ���Ѝ�t�xin||u��k�\*\����dr�@�1ْ���?ܽ[��T���u��1��Z��[�ef�H_̡��0 �(�CJ'�����+�X'EL�������?�<#��d�MN>�҈��pϏ��5N�=�~I0]�*�
l���ϝ:�ZH���ebx�؉S���|���<��S��~���N}@���f�$�ȸ��]�  ����w�^��h��=����L�օ1u9�y�jv�p@a�)!��DVӑ���ks%)1�������ÔWV�|
8�/F���r->O���/��H��¬����ٍ(Y)�I��&a�S��gd+g���~AD"����&*�#��"�"���w���?��SW
Ϧ<ԘLS�b)�,�L��d�j?�Ws�7����ȗ��y�)��u�
f ��-��̖hHrr�f���Z�]�a�^�@�w�7 B�!x���R��/��R�
�v��J�Q
@�i�C?�*����O��1�J�B"64W��"�@�!�_�c��oi�NF�����(�{����	틻�\��h:F��e�;,eK�"��!(Ÿ(�oY��}��&�A�PzR��(ݻ�_h��`�������B�\�t����9����h�$ܔ��s�/=G���s�t��l�Mox�>w�Od{Y�mި!���>r� ��m������jq�[׶��sHc�f�J"�8�G�U�������pv��\D0��G-5�&���������|<�"�E��Vx�o�?�I/ud	$��_	�v>3�]idv�õ�da1��G080�����.�_��a	���¼�|�M�m��E&���t8MD�ă�Mi�Y�t��F'�ioD؄�V!����wȳO�Pђͻ�Ǥ�n�(�C1�u8v��\m[���:sz��Pu�� �AZ��9�ri>͐v�ÇN��c2y�v"��H��-��%)�d���N��7RO�DŽ�i�aV�""*=�D���"&�Ho]������ �!�.�tuO����Pi��.E�Z��.�G��Št1�>N����6]�nwTiu��a��%̀���$�:ĵCĤD0_���F��x�$�B�{��bQ�yƆQO�!��3�@�aKs4�}s�L�Wo3��Vz�-��f�'�&_;~���r��Qu��q�!��C��o�FN2�u��6�웛
�<,ZI�b�,�*N�\XJ��ȿLrv?hkcb\ćZ�U�	(�,�@%H80�(��\����@�c+ɟzb `���j�6(��c�t���;�]o�1�Ӡ���cL����>��/g)�3{����--]ቅ:�s�!B��Q��<M�A��R��!�4"C���C������6^�O_-�<��=�z�S���@1�X�(#��NӃ����~�g�?��M~H7h����O��=��2�e4��L:.S"������̪�0D�s�i<�H���[��V����N���H+
�ƈ�Q;q!�8�
^H���=_���i��r�ソ�󥧤$-%�c�R�p�xW�2(o�Lm�4�]�u��]��u��(�ё��R�D�W�`Pu�u�+q�:�J	�(��b��#0,��*k�B��K�K[cg��l�#S�p�^�`н!?3�^���%9��5��&���m��۟���H��(�FrM�5�h�h�g���+.T�ΙIJQ��B<�6�?�2���������2^em�d*u�IM��* CȮ^0�a?y����bBKa7d�5\��J":�x	��h�.V�xKۚ"6�-�sPX��hZ
��o�%	H
|�͵��I����\4�N�R@�j�QR	@:�V(CXx	%��l���2x47HG���!�u��������3��YtV���ݡ��+�g;�e�Κ;��QZ�I(���6�b�1��[7K|�QT�ב�K�d"�ȷ�t���r׫̗(	�_̻��Y�`v��+;�ڏ0G0ܩî�Zw��ω}RV���@�_��vr�gC��CH0Jf|�������kR978�{[D��6~G��3E����Yl��0&�EM� ��Z�P��ecL�኿�˯ND��l!
��:$*�`��C����j	
RtC�n|�|��XC)��B�
��.���Tx���Lx&2!
�t��P�=h��������٠,&�)��B�g=�U/�WhR�r��hG�ny�ʠb��!x[�+i��DH��#yW?������˫Wh`�T��gk���_���~J�@�#-bg�q2�����p*��ƴt�!B$]����"��!�]���tI��`C�u���t�Vd�8�$�;O�0q�J�E��
����,�%�Ҳ��߀+ˍ�Z�?DE��I�D��O�K�@$ �Bv�2���R�D���6Gf��Q[;��P�b'��x���͍M��UbB6�)K��"L�W���%����U(�t�Hbl�X&/�����1�*1�֎�a}Y��凟XL�>y=s?�;��q'A{Y!�U�u(u��ʄnf����ھ�����Ҩ٦���4�Eר�T�l�"�F<gr�H���εqәUy�EDKJ�Q"�����*��`dEJ+a�չU1�����era�\Ks�?W9t���$!�9�_KoE�	�vք�	�� ��
D#�*��-	�-!;�#<HǘC4_���{����E�#34�b>[�A�� /�1'ߌ�_+k"��L��\���Z\�
s��:�Ȯ|�����:�����>��f�x��S:����M���lh��c>��b��66|�|c�"�e$R0)94'}r,�@�JBiqq>��P��_�q�3kj�$�A�d�p�U�ŇP+�X��jU̗��Țe*Tь�*�;]�(p
����P7{e�/H'���4����Ē�%�@�t��>v�p=p��`pf���@�FF=�vX�&��n��-ՔtU�7kU�?��r�%!��#�<h����(�+��P�T76P�]W�
�h��(��!�d�2S�,�n�7�0N�	������mMM":	!�7�Y�&g����F"CL92q�S�]��'8X� �x�8-���l��
�!ǯ�t�<��t��!�ŷe%9�ii�B���$�
"XL�� �G� �V�!�~K`"<�}��?�y��JA�o=(RGF�OE�3������Aw$�^+@�e��5+�HKh:l
���`e�<������<��/��&d�쬚J�Hg	$)%ra�x9ꉇӜ|�yY8�f�q�F]w��<�k�Lp_�;��a|/�JV��o�u�S0��>�}�L+�\-e��X�ZN���w�tF'�c�@��I��h�Ӛ�H��^��UZf��g��
 �t�eх
�(9�ؔJ�A�Uu��
�!�z�A�x��_@�[�%��Ǩ�F�G�#�@`{�e3wC�#8��{k�ސ;��z#AO�(�j�&�h�e��~%��g�T����В�f}�o�AE�
�j���D�R�O���wY��&�H�LZ�*09ىǰ��;<S�ك�����ݧ��,*�'��Kҙ�MK�(uiʒ���^����9�RW4Z�5�	*�Θko��R�8'�������@�vC��U��T���C��9�Ƽ5�LAVK���{]�� FM	8��R��J�M���1$�
�x�/
�S�34eՓ6��1� jr<��{���>:�n��N��6��de���2���+bR#f�"�_q���IEQQR��I��u�6"�>#
.[������Z5���u�s���DO+M��=}�;;{��L��Iz=�N���_�|0��a�g�S���R��sYx#'���UH�s�Ӣim�[���V���P!��ٔ�i�X.�I&���f�A3�1}DA �O�}׮L���n�C*�=��� %T
�鱬�0T���!�?a�M�EE(��A{;F=�`.�.
�I��I2�-�Ӳ\�?�Գ��W��2?�kE�f=(�UI.�0���D�:��5�4{G��V;p�
2`2�l=��*s�]����p��_{���p5:�7���X��7y��܇z���f������w�o�؉k�Cu�����i��!���t����`��¦[��XP���^���{���~���L@�͈+wN�uZ�� ���'qaˆ������d�*Yz,=؎p(6��p{�j5��rbfx�Ͽr��P*\{C�p �H�4��1�y�oq�,�+ZY��r,6�$k�W>I��zLmKieh�s�>LO�}�X[��2&]��O��Ԓv��(8�9����5�c�7��`���Z;{ZaE�ڽ��W�=�O��z(����ۇ�/!sx��N��:��)��Aa�ʤt�0ă@$�%約�HoC\+����g�w�����f���!�E��@��w�2�!g�7��ns��܆zO��,"jSl.ջB������i�kn��Bpj{ ̊,�z�>�$|��!�ElG�
ؖU7�W��(� �+~y��g�)A0�b,@���F���)|O�-Qc8*@i�\�rP�7@S�.���� }CM
�+���C�p��mdN�0 �l����	�_��G�zd�~b1�2�ܾ���`�b�ݽ�i�0�{�bf�/X|��e�*��sv2BT�r��g�f�%�ݚH*�\a�����$jL�2�jB|x6#q���2�Z�W�TU�N��!B�����?
ìv�Fu"1�K��S;�"���,jS���µWx�~?�8��@�=ζ�񾂢����O�W˾y�8sU��L3*�ɛeƯ�(
�Yu��5g
k֨uHx�/Kp��{����-��9?of+t���ҌRz�ިsS��)dj[
F�5�/[���юGڇw.N� 51�8%m�Ȇ)N����rgjz�c�4�R>��r�(�l�Qk9G�贶#�8��巑��p?X�ӹz��0@	��V)3U0埨[ +]QX"����ِOpT+�]Ѡ�I�O@J���dž�U5
|��$g&�U:;[?�>[O'x��T H�ׂ��;|�Q`	�>8���8~s�l���JD ��y����$��"Y�^���2�Gi��p3�,�$�����������b�*yX���������
��}L�v.(*������~x���Ͽ��n�0���Sp�f���5�����G��R'i���碗��pB�Qm2(�ŸL>��iW�f1�^��9}��ȉ�����L�d_]ʊ�	�l#K��Df�D��̒���� �f��KET�4l��
�Q�(}��S�;���H��?(n�P����`D�x2�C����r���P``�3�����Xt�fȟ\�'Pf^!/���!@� �OZ����~���ti- ��F��K���ꦷg��U֙[�1q�Ei�]v�N���/J��ڤ�w����T�f�n\�t	�K�l�����s`��݀�u��\Ȩ$s^1�Kly�p�u,د���\�U)'Ǚ�iO��RuO���LC��U��\u���5�R�  ƚl1)�=2�H��$��6OL�L�þ�Y�?��Ė�݁A���g[���kC�i l�m�/_џ�P
�sfBL��w��"!Z��S
�8��%z���� a�,+̱���i��|*ZxZ2��d^qQ�6t�9v���=��حA����1*Z|�.�f0�d�Mt|�H׎��ǻC���8P$q8(ơaT
ϒ�q��0�B$-m{��Tazq�'˸<�ݓC��իO�~)S]��iH�JԞ�+���<I����D�D�
�Q��Kʔ4��ڧ�c�3��}�	Mo��A�?0rضUk�����Ql:{6g�"�./���)�װY�٨1|~��4\�	��3��uiw	k��G�Ba�4V��e�uh��duA��LA),����Z4'��ᗤ�Z�����Ş��'v޹2=ueV<5�'U�޺�F���dMM�BX�#����z��`��Xo2���&�8��%�,���@���t��������l-��v&�3{��v��$���s%lb�9��X
�̋\+� ��`�x�!Q�ժK��^H5�G�hc,$\���B�z!�9["
6l��-�Yq8ݶ���6��i�#:�Gᔥ��^6�!K�U��Zd��2���#J$���"i�-(�H�Ȳ[�Q������|u��#�.���<�&�';����o���Հ�#�h�Jmz��������eu���g;~�\�zk��o�8�u�����FHZ,L�
1�E�
����x�[� �8\��dwww�j��'O㯧��I1��O��,��xJ��M�Rcc�,B��s+�PЮ��Z�y�ĻJV���;���~�p���7Hc�d$Aч7���A�e����m�w�H���8S�28��T8

)Ш���L�W�'��+�OF�H� �U�"$)�@6��<֏��I�����s�@�p�[c�%1���s|h�~ɚ�Ç�}���[98<��(�
�IP4��.M���AOi/c:� /�D�8p`ǁ�P��G�E ���x<FV�N���KgP���:{�@&�3�jl$���W-�Zj�TwiN�Ayae 5%�#�enj`@L$���IW���^2��Dr4��d��c!�ـ�F|�B/�k�ܴ�~����k��lĆ���fq��'�iH��s��;��|
�kŮo���*Oɔ�U��!���� �L�s�.p��Z�-s8*�6�o����8��|�]{쑤�\�x�ҋӓH'&!� �J'Led]s	`a��ܺ�, /�t���v��cǁ;漑^�.n��1%H��uXn��%V��h���N�GݖE�"�o�:�jl�9L K��0դ�(����G��Yt	�dL�������nl--k�-r\=ѩ�>wx�rC���x��>�7<8G����F�dQ�������T�4��4Y9�*k��/D͔-4��Dፆ�L85��7�|XQ�!�_��\�-4��g)�Ĩ��b��:�LX.@g��z㢴%�]�g*	:X)-L�
!iFmA"��~��l��Uٱnߺ7��ǘrENg	9^��e;]^,��k����z�Mu!�< ��Qo֑##ʯ'&�&'���������Ҭ&A����<o��9��	Lze_���Q���p��w�~xp0R��V��-����NB>�+?ђ����#5τꊮfǑ�M	@u"�"
B�^��2�>��g*K���<�$y9��u��5�%�9�|���B!�q��[E,Q�PF"�q�ǘHX�L�M7��]��HJZ���b<-*�*�P�6����:�Ol���U�֭��5Vu���]���~9���S,\K\^H�]����������{\��G��<ayGPu,�i,9��@b\�U���-ņg9�>�P�ug��d_i�m +�C��Lt��m$03���N��k�xČ"c/>��Ջ����r�x�s���9nn��eO?�Y�8<
��@J^ovD&�h��q��l<u�g1�C1�MÖ��Z�����'k2��IvNQ>9_RPb�FɃ��,�w�z;���`����p���G�E!�/-ȶ�{׭{���x���}U��}����~�����u "'�VK2��XtO���١��8xah\���Id��P�XN�r㜳02TP$��|9ZE81Ը�@�FC��Xs��̖/*b3��XS0:����,�&��MM�}Sa���i��N�v2n����-28z{���A\�n[�%�_�i��*�R���#��Y�ǡ'���=<��M���m�ں�������M�؋�eȍ�`9�o�d$�#a�z�B�9�����bH���j�6��^h^��sb�p�����&��=�E<]�տ��r�[U������w|r��HˎUǻ�}ľs^��!�³���H�Q�Y+]��pʅ˶=���
������EHК�\,���݊����_ѻ̴2UG}��Ŷ��;|�vT������g Ȫ�	��u���#�٨�����Ϳp���a�a��k-l��{�
A27�;�!��#�IA�C9�=|����'O����'�8�D�V��`4?\��im,4���WM�f��/�l���}�b������~>�L�r���X���U`,Ä~|��d�ʥd�ߚ�:�aPHX��l
��w�8y�^ֽ�n{�'^|���u�������uU�0$s�iYK�t�3��p�8c��c���@,��c��
'P��rUT�0��oV��\̬ƶS��|�ҝ����9v�؞҉��/���0�L��@#:�S�7�;�s5��nyf��)P_�<t�)%�� �ˇ���.����"�;����g��ס��z�o�M��#�Q��]�.�޶:h&���S%�p�4��IТ�t�����}�3MBQU$H���_?�d���gҐf"��|��g��L8
5�[���@�H2w����GDXB�^�;kɵ��?�w���s���WU���w��{{�[M�ʴ��:e�C�{5`���7�Zn3 �05:]u.$��t!4�7B5�QZL�i3�C��M%�����Lc�!w���}|l�T4��n2�-_ {J�x6u؎(�6B�;��P4�r�#T��*tl�wL���kzn�B~�ȿ%�z���G�8��\��c$�UQ��Pt�)(� V�z��龜�_&<���_8�wd��H�������H��i���O��wn$��ޡ��W{�
䣲����NO��Kh� ged���Գ&E�*aҩQ@�{������ݷ��7׿�қ�o�1O�����s�R�������ҏ1u�,Y}�~���]�hrY���p�@ã�?�`���^�頝��������cj4������:&��W����v
�����0�����!��϶?2�r�^��tǽTF�r����`����D���؁�cǻ������:vy��lގ[������"�*֞���uVŠe�jU[1>��g���z��g����?��C�i���~R�x5&�"#�X��9��A&[��]]����3�>9`R7�:�WB�\��7��K7}�Ķ_\�
�a��~�xʹ���k-Y
�S ��n=:��wq<XI>\�B�`&(r�	��8e-#ݝe�u��*i��=��'v�szz����?{}�OLw�Gc�(h��ˁt�̬��Da*RO����Do/��&���#j��A��Q0�ۧ[�^Wm�g��sT췮���ζ��dY��}�����y������zx0x��_��25�F��T�M��TǷ�P\Ȁ��


�y̢�Y"���C�nF[HD2m�b�D���`��E:SB����F�����B7ZNJ�'��hx��s��=���˗���{_f�t|�!z�gx�R�^^V�`f9��w��S����U�?u�� ��P�uL�tݞ�#ױD"�/:�pd+R3�b��,l�f�Z~��{��J��FH�Ÿ�	
v
��FN�r�/��A��T��I���W��D9!�"��� \Th���9�_����>��k���S���L9U���u��d�Z����O2'�'�"���q��)7	X?�]fi���8ͼ�W�� j��(���w�������@�o#����W�|�����}��=1u�s?|��_��9��p&X�N:x���H~(ށ[�?~z�=�p����L�p�â�y��'n��-R&{�b�
�m��	B�W9"���_��F�~�o8��W<8�<�����(%L<�H�0�I��ʕ�D΄!�E�(\�	$�����	�u
tOt���^h��,��5���y����"5X�Fq���6���;䷾y��׾��G����v{�V۵�հ���sT�"�c�K2�3=3�$]6N� @�L�g�V�����D6$]�}ef��~��O߿�ї��o�}�B��6�\v�Y x��l�FMAG��s�_��^�7�>@��n\�_��
�=���������y*��4AC���VۯG�W�^��]4e1,��ʖ�Hni�#��xZ��%x�I�A���<�Ą�e������.e���툑4����4��0�E�t��
=4��LMי�z~���[��x����w�}��L��$�NM�D� 3t����.�I#9��i�����[��Z5�����r���9lR`W��`&�!�-[����k��2����f+i,�~)�'ΕD6��N�2
LJ��#o���G�L>�V���/0Yƒ/>�Wwvo�mk_%����w�H.bBB�"i���:;��B3j�_�9�f�1��Ȣ�� ]WO��
	�q�
ы�–�\Aϣճ��e�-�(?We`�;c�/��0T�Q^Xq2+���4���h�L'QxI���]�:�z����l��_}>�k��?�;���Pj�z���?]y��~_�Y�ު�ؾn�nO�,�mϋ�?�z�+t����v�X5:j	'���z�n�	�5hhg�R	�$lA�r��q�����`����j�p
�{���o��"�[��t,�B9��O3٨T0�b��c���!_�m��I�,��Ctg��90ku�4��:Eo�G����2K�9��U���e�z�ɰ���8\��;:7Z�k@$�H �Q-HH0�?���dhR�4IԄ�TPI�lm%�u5����u�N�}�����'�x(:&٭v櫟�U��OX��=h��\�Lӷ
߶3��w�������%��pW��0�[�Ad��M1q�A\�+$�`t~	Ґ�q�x,�ڴ� X��������/����ߒ!�W)��W����{��;��9�7�����/�(���rp�kn]��P�ڹ:)iȱ*�%��Tt3,��S��y�y/�p�i�� m�
r��'ްO��bOƀ������&#5M1�$�,��I�Q��R�[g��sQ������1����ܯOcۛ2�-��E$ڂ�{e1�ր��m��]��]�<�ݺkk��D��[iW\����,�k���^���]%-�����Bހ4�d�e�,���IP�r3a#��Rw��;_�6��_��b:7\s�S��1��M�q۝�{�`.���"�6��o�#�ۭ�{��T��U3���sM+�df)	j�S���^�������Ş�8
�Z'���j�\����@'܃8�2���o0̠
+��$Z��(%�H@�JfA4�Mm8/{čy��v{�w� ːOް�	�&]H�B��#X)�C�l�]��ߴk5�7���	�$��a�) 4KHF�<PGz�$��y�y&�и��]�yP��@���8J���"~�q\4�~*�{o��᏿�v�W�oI�����m��T�	{�c!�w���/Wa\W���{[��*�\�(ݛ���TS�Y0A���F�%�ḩ�H�g��5nK
W:�8G�qf�,��˸_H
ͬ$�f�]$�$�EE����b"VUN%�X��᷎�^͏</�lo>�a�^�p<����c)A�yV}���u�N�+��.�Լ��V�˥�Ų@��oc%p@�LJ�6�-��?6�)�2�o6�N�u��&����KA�-�]�����p����^C>/�<���.��_�!�r���oƨ���k{neQW�1j�Qw���2�X�gIRZ&7�w�I'�w��4$�g��	���!x��b�F��a��[�q%����
#Ɩ%H��`�Zb0���nꊞ����)U�8p�P�/�^:��p��V+^q��[���:RͰ}��e���v4��)�6K}�`W2u�Q+�7�[nI1@'�Ȼ[HC��O�)�y,�.�qJ�E���2恡��&����o���ƛ��Ѷ���SdIhB�W�H��&BK���9��O����R�Qԋ#g42���Q�T��D��1�S��<�
֛d8;�#R⤈�(x�`x��
gC(C�����l+�Hf�q�5�,]���`��
�s%H�$�4\Y��wka���G���)n��Ķ뮦Of�*�d���9��Q�m;Nэ\�esƳ��lJ�ڄ�$�;��>D����� p7��T`�W���ʆ"@��ΛXW!��<��
�q�a�Y)����ڵW�p���O�H�$�6���P�Fr)4��_����}~������q�^T�����^e��4UO&�2%�{�r%�&XG��y��'!N�'0������2Z,ć�S����,2\WA隦�d�T,\��Lf�5K5#�G��?V#�5�|���o^�l�0��=�9���EWL�>(U�mD�g�8�3�6�_�~B/KN�uuG�����xp�0x+T�FYɸ�@!9�!���/�(lL�Nr����p�2Ag�l��,L1z�
` ����Ui�L�����!�ț�<�Uq窿����A�Ao)���[�+*m��NUg-Or)d��iHޱ�����{
�v�!w,���ũ� B�YB%�d�۶^�M��Tt�\I`�g����Z�e�-%�6�E����S�w�|�mw|��p��C�!>�4\۰=L�}�r��j.�W�p�{��)<�J�ՇG�����ểCx��\�$�CII���)AdC�%^j���V'͎%�bl�*�h`��׀u#[�3��i\�E�b>�;�Z|0��8�	��Z�x/j{k�Z����m�.��EM��6BEQG�z:a!��Mu@���}�FDlňߎr.5�^Dy!W��߈�`#�3��lZ�b_]c��6�kla"
�� �̺�0�t����n��J�*�����CNX%�	�Nű˨���{6X<�iA�7���H�f�/%w���D���G�8k��)�j�`�#�\���K���[�>f�����aong'����9�W�/���̍L���q��ԓ0���@�-۸^H�j,�z�]����!�zqa��bq�K��m.�K�M��d��f�D�E�(�"�[�e�3�}�G�HD���p�W�􄆠�Ƨ�fAH�~��<ca  ��x��K,�0�@�t+RM���]�v�o=���S�u�~�b��w���=�=r�[���_�}�$�r��E57T�Ă�%$�8��p$7
 n�ȉD�t"� �˼Zð�bl�{!�=����{��Jb �06G
�<�j�Ґh<�n��L��WJ�D�b�L<��k�B�(����ɮu/�O���zJO���hf������t2Y3�]e��O���q#
�mRdC�a����b���.)b�H7$�F��Q��\;^�AvA8�@Ő"�b�4,�9�q��T�E�k�
�7�It��ϝ���}���[\+j~E����y8��{��=�t�Ȁ�y�Ѐie�^�}:PA����y�c�uPa-�2���c���#�'4䀺�8��o�<g�=сC��s\.��m�{Ǜ����D�H"�X�W/��?|��5��/`�/���K�"��9�}5�<H�!+Խ����W���
8�p'���!e5t��
U	<���RtBH>e�?E0�9��S���NL�h�P��B@8��0١�b0��83���<�h�@�^l�њ~l�j�Mա�U'	�9y���������g������~2�}ڕ�ڧk*3Ձv�~�ë��TA9�7:�v���B8BG�iK,��3�/W�O�ے�n/�q!���2��
D������?W��6�px�e\�K���~�S&�{��Ss�@���D	"�=���J�<�↪̏4�}%_�J0���T6�O;+���T
��fڅ���f��t�9��e�vq6;�����MX�u���C��u�N99������щ٧I-��Xl擮Sن��jM*E��[h�z�	w�a�T�C�'/qw���ꗻ[$�Y��٪Qjt�Vr�V����i�S7�Tߧ-��!tPUP:�x�t�T-L��~�jo.]�$�<*�+�MT�����/6E^��<)��ܘ8J���F�b�;���?
m}G|����,yW����:�����a����^S=��{a�����HjmJ؊�����j���sk���i��l��������h���<�<���8.�N˃��q���2<>e'��#H4/EE$�k;9�K�=V'�H�.5�G��:��0HCVG���)������܁K
S����w�:w�O���۪,G��a�m�k��FycS����J	g�z�R��hHH*�
�WqY��<y��2/ζ��v�-.�0s5�������f��k�r���x�'�*�w�<!�$��3�$�>;��Еg��d}E%�O���b����w�v!�������$��=s����JZ&���2�c�j�"UIKӗ���,ZQ��(������ǃr�&�}]@��ϏO�= y��a�b~[�%/���8�Yk�0V��q04c����*�A�1Q�vO��M���O^,O_����r�]8�!`���T�y�	kE�n�TJA8@�-�+�P
�k_�֡s�(�l���eQ��N���T:��lԧJO]��|;��x�2��jY�{�
�_��)��`��k_S��ƺ�+��w����^?�ѡ�XB��\�h*h;���ЎR���^�_�c,�F�]6��X���c�/�r�b�D7��;D�.��O
��
��ɇ�?�����.K��
].d[�Պ%[���΄G�gz�S7�
%c���?��
h�ȴ�%��.^<“:(���ۮ��W�\�\p��q�EI��B��U�ޛ`�*�pa�s��$rB4c���?(mY�|<�����nk�l��-�'�@k��b$?�ҧEFS�{��?~�ݏ׷oo���k����+�v���h%� M#8��Tw�!�x,h�������무��}ߡ}N��c!��X�M%�|� ��a
�Xg��������?b���̐χ��4p����(l�ϳ "f\=�Z�����VҵA
eU!��=�z~x_�?rd8 '��O.P�,�.l����};tf=�$	�k�"�1�*��Z#��A �	�&lú��vM�,7E��-��i1e�o�E���-����w:u�w��Z$��Ȑ��‘/�`^�)����o��<2Τ�M#u��V]?j��t����؞xiF^�Hyn��,�K��+�d_���M51�S!/��q��vy_,�4�"�{I�(?>{vrP��hS���B�M<�<	��M�z
����H,P�Q�A���
{?�}��?;�lZ�@1���ŋ�O��Ж�%!
*_J#9U�1M�l�j�:5Uo�:4vv;arȉ
��I�e���E��]���U��<p���	�R*�G�ַ���״�a���n�>�"���V��B@����+t�S��컆�߻�ئ�&�C�C@��B"ܒS�ԧ'!3��Ŵ��<�c����r6a�1�2��"0B6�1�bv��鞞,N�$���yߧ�\�U�/.7;+J3}~�ȕ��Y�)Ԫ:�v怎!}r�@*<��a��.`�o=qAҢ�Ż�/^�x�8�����Q쁈�"��A��6>a4�(#DJ�C�:%���Z���  ����M�|�����2p���"2	\Un��mge�1%���Ϯ���O~��_����۷<���\��*��H?y�tN����c������i(����5�|8�S�,�� �y���>n��C�gh��<a���\�⾚�Ӑ���)R��[DHZ�]B��M+t�Wˈ��֩,�{L���>Qv�Q�]v�����g��l�� ž�C}�t$I�f�B+2L�@ge�W(Q��D]S-`ﵔT��Y�,�"��`�|r�d��d�@�Q�-��|x�)K�+��<��\�%����K���j F�z��ꡫw��K#-v��'�S_��(;T��Q�J���O6�̠�m#Pl+��;	}#����u0���'���OPBt�Wj,)c�������o\�sOXy�?<�������j� �X��緱�]���ٜ!�SXL��҄u?��!"0��w��D1����w'/~ۜ�e���7DJ�3�qY7�TY a�F3Hj�ø.���!s�
K픂�V�}Y���"!!�m=�wS�Ƿw7�o�~=�N�mN��CKg=�!tD�.3
�C8�j ���eh�h��@h��W=�4j�>P��׆X*��|>C6�L���(蕎fY��)�)�`�1��O�N�
.P������D+LOe�
���D�fK�����V�v
E��,��`�n�4�=�����/r)b$l�KN_C�|��|s��K-�}�g��8�0�A�4B�a+g���V�y
B.��"�s	 B��\�ôy<�$��.##�:*��4)��e��$r�WwWϾ{Y���}��^�4�4�֘�B�=�"�$|^Ň0�|EZ���%U*����&Si�fBf��+l↷��|9g�����h��&�C���枲4��s�푔~)"r����3��_@�(��b\o���]%�7¨�	�O��
� ¸�Q8m�GO��M1X��=k��˕���}W��o2+�>�R���Mp�y��J�$B$�)vjTh�S�+9�"�{�T���Do��Q����(B��!�"&+UiWS�X����v~���\;�T�r3�
1Aߘx��Zr�	!����C�\�p(����l�Щ����@d`'�~�G�l�9F$�-�r�-F)��Y`�D1�VF��߀��5����;�����}�<�z*�M���Eއ�ظ�gk�kՏ��͌�u	4��h[oW�"���ī*Bd�Р�{s�:�J�Ӌ����g��]������T��/�i��^�HtU���Zٴ�vK����Q:����ĢAm�R�f�}eyR��f"M)�3��i�ħ?�����Q�9h{xSS쩺���	�� !&�M6�}wOY&3]�ďW��d����l���e|����L����*�����|SN�	f�խgŨe����Tvq�!�qp���U�$�痄��"H�D@��дr$��]�Jk[x*~��(�Q�X���e�e����y+b��6e�����$\���]�:�]\<?�����[��P~>��a�Z�0�$��#+�
�(�w(�� �^\<"�s2/4c)4*�!#/Ob���}�I���6���?�%�&h�m^�Y�y�D�F4;�ЂFs��o����!
���FC�N�~���81�O�}��S"�E!�T�#YuOm����s��ꇯ5$ȟ������@����(Q*^���K����g
��	[�\�6Yc#��v�P��
$���eN��C���q��̵���<�,U��|��t:]��a����Ɉ}�rzQ|�
N�����
Ӟ%]P�eXV���*�H�ۈ��ƛ�0�Lw@�X5��G�׷ă�D�����O��� ��>�ܤ��=ig�T������(K�A8H��jJ*)�#�O��R4a8�V�1*�b��[`�/(%���d���*ݟ��J�b���P?+?6��ƒ��pv=o(�KU[��6|Z;?�x�w�m��a���D1�<�H�:J3K`C;x<���l�~"1¸5$l��Fb+j'��l~��.�_�"�G�w��:$n��c$���J�y�����¸���6�l.E����A�Uu����3�U�<7<=2G���>��?
�������R�$��,S!��]����V���ǂ�TJ��&��O�GU�МBd���)��X�.<0w�F����'?<�|�H��n��a8WD�2�z������#ƴʍ��O`u���dC��|$L
�	�6~2�qO�°ͳ�p�`

��i�ܘ��Ԧo��n4�&PB��0>\��-�o�P;4�����L��k�$��J\қ��c��0�Dw��
��a��*�J�H]i�V*MS'��R�Ⱥ�R9E��Ԟ:0@Aؓ�����"��aT2�n��d�l�ޛ��ܴ�=,�^JQ���UgH�}.;��.e0��3���׍����R3A���B�1�<L0��A�"u��TZP}5LX~�e�q�6�
��[e�L�3�gA�*7�?xJ����j�*�W�	
���5.�&�z�we1i�Ju:K�+׋`�ɑ�:!��o^^	�M�:�V���������r�H`��W�,(��wD�d��e�����k�����{���}q�{��%�:c��aw
y�ڔ�B<�gb4iԪ���d�����?x��z��=E��D�cI}�	������umX�@1i�L�0���	1�<��؏C�8�<��ⲅ��!�x_�j�!1�X�P�V]*0�œ�. !�1wT4�
V0����]��zx���0�U��N�Ԧ�BG��S.�-d�qZoY!��5�
�Lk�RJ�����M.vF7�Psn��8���cE���]	�{��7S�b��Z+kZb��s��B�Z�!��~_�pau�z����W]�p�"��#>!� }ĺU&�ʍm��O���2��bt�Ǿ�p/��q|���_�����lo<j���/J�b%��k
x��5)A#q8L�X��N'M��z�s�1��.�#��	�4�5<����a�F檃�Ӽ�6������
��dv�;l�d�V�.6�5���.po4�8u$͍��>���a[.�)�2
{�Z����g��S��Ӹy�8�x��������N:�AWQX���ؾ�Z'�df‘ߟЖ��&��6��~��I�j�>^WCoo�͇���._��o����XY`�|N;\@I�2��MSb&F�]��;�n+N0Ǿ[�8C"��1�O�$�����D��L3�Nq�9F[B�
�41���yXJ�^|!�jnF����̦������K#�nKR�ě�V�	9�1C����m��\��%a�����"$�:�'=VО���J5��&+� �|�ixj ��8�hr���T�'����xy���������{����]�1d$UR���m�������^�T����p�����@�]fT!�9��a�y��1Kyf�����
f��v`��Mr��lྏ܄KI�o���o��X�m�,[JAU])B��Ԉ���
3���t�Xw���{��N�J-Jq����s~��m��0�3w�<|e
�0�m���9�`���8��
t�Ak���<贄�6N��QЌ�Qt.0Z����>"x���3L7szV�SA�B!d!�Rc�q��ϳ�'8��NN�w�~�e�^[��-?�V��y���NT��/�i���%�o��7��)�/�Ӟ��^uĐ��
���R�#V^�[�k{,��l�hC$�V�Fn���ͮ��x���d�?��6���yЮ�<;\n���X�X�+�Egn�k���5���d�8 Ɉw�v&��P�x|���~��*M�?M��5-���D��L#!�HD�S=���bҎL�\�:������|�<X�?ceGJ!�D��^/��p����u}(��H膈5r�Ѕ&��kd ��	�	�41��I>ϵ�p�7�/G� \)��e�c�����~Bv�Y")k+5�D���Bϩ	�2�gX��כ!�j�_�U�t�%S#s#��SX��}d���`,V����N�q��ωaL�����"}��J^�U�w��F�vHk�&���;���x�Q�5�tٳ����َ�(Y�-�7V����[�?�|��~�D�7�%y�s��6zc01����%�Z0���i_Ɉ؊��l�<�]��,��q8X.`ZA"+E�U�g���sd���(%�7h�b٧�B,�)���_D�z�Lm	�a�����Y"2�7��N��1p%y6����"��@�4�_��V��C0��	F���..����K8��Z%Q���÷�����d:��x[�N0���O������~�}�'x�ȱ#i�wj�ˊi�4���NO�n
��˺rD�.j
��ʒ�zu�Z��†��KYI���7�f��Ya��6|r�u����"���d�m6F�3�g)�����b��4�%�Lzr=�r�f�,��f!�2tVm�����~�!: ��a�<C��z��?UV�=��;�)�Ӷ2� ��:ٶ ��=���P��X��T��3!V�8
9=�v��Wj.~�	A���d?@؎�0��uU�;W���f�M��bS�T�v�,1g#C��ⓐ��&Ԗuzܴ���*�F>��!����ڽ��Q*����Ã���3P���(|�'ά��G+/�-�֚�-�.!�$Ţn��h�
"�����X�z%��P��/0xq��T�̹�O�����%]ב��+��;6��rJ5��ƪԱ����/���#�L[�lz�
�#
T��nګ�<H۸�5|f�v@�����q�,�F�w��o@p��a˩.&�Ƿ��r�WH��g6�����6s�aN7~Y���@�*^ɱ����"�� ���Si>Oػ2�[��|�Q��*�|�;��Q�~��>��x�r�0)"��k�=�_F�p�/ 8s���}�Cq�K��m�?.@8v@��v�C�ɺ�=4���1\<ta�RB��7T�}S	R�����Y=XB�t4��:C:-��U�x����~O3�lߋI�@�<
��8=���\y��ܩaJ�a7�0�%��ŝ�35fP�H�&��'�~&��:�a��:�:g͠���0��N"�r�bV��r��센��t�2դ�ϭ��٭�~6c�p���›v!я��:c��(�oF�	�0#Y���lZ�f{�\�&(Sh7�>4hH��[��C�Х�ɫ'�u!]��w���-}�eY��w�9�<G�|�TD��	���#��/��5�ƀ�����Χ[����Fc�cȫ6I�z��	
���9��:��d��*�A
 ��
pYӚo[�X"8U�L��t1�K���X'��!�Ώ�<��o6�]�u@�Y�ya�����>�\_�U����
 ��u�w�&d�X.������z�&��0�rp~�+�Z�1(�n�+o�T��N��}0� g��B��JԖJ,���r�X{��>�\p�%��:�H*�Eʓ4	����a��.�`���q�2@���vVn	֐�?�K&�۬��l��W^Q��s"�����o@��BC�bQJ�8���V"g@�R>�ަ��vA��P�����I�o5#F��p*��u���̨�	�H��+�`�$#����z�o4M��U��(]�#+���Q;�Ji/|q8(˳(�b;㾇_J̨���u��>G�J�Ԅ
3�Dʍ��$A�/]o�W�Y@l��[���)B�U�~���UV��$#<Ҙ>�RU���z�.��PEp,�BI��T�
ч��|
 ��:���Ɏ}R�Us���;Zy��OM)�kh*0�v��X
�B��i�׬>���i�m��1����_�Zj/��˭�.��̋6��;-��2���j�ق�V��^�C�QQ
~:?�*O�mw\zYP$A�g�l����	��P�|�J�=��
�1^�h��mX�t�"ݖ)li'@�~ޚ;�Q>���*����@���ͤ�fX��"�D)-\���H!Ȁ%�d���@��8$���M]��oň�2��@+N!Jv�|db�]K�Np=Te�{�
J��a< �9[q-�hw�O�ݗϧ����#�]��!�<��^9�����=<�|Dž8~9���=�������������_�~z֧���ϯ���"�м���ǧ��Bt:+�
�z���X���*"(:1��Z���M�T�� ��t�rX��H�]�޲��*{S@�e:yi�mP�@����g��[o	>�*�!$�`�§��P1Qr̺�a-�R�҂H_Ҩ�V%;�����Ph�*�Wb�(���m�0i�@��S�ǀI����e�pz:���?���A��~�7������e�'x��y�pe�����ׯ�W��]\�f���Yw��a��z����Kw��]^����NG1"%!F���A�D�۸K3��_g*�u��/@�u%>B��h\�����◕Q⊕���P���L6BB_'�X)�,��3t�h~���mBy@��8�l��1/L���у��rD��(��@�ZX���y��N��ş�I�%R��UUa� D�?���q~|@~=�����v�a���¥�/O��n��������F���ׯ������;��{}�:5���.ڸs�O�'��|
T��2�B�0�B��1�#E�Dx�`�(��E�bvJ�h
�Q�	e��; h��4���*Ii�R:7�����e��c
�'`��
��d,�.2[���b4@��Ω��[�luWVF���E.���E���|4x[�G���ڻzݲ��KC��Ո+�cY�XS���d/����/LJ�Ǜ//���[�q��rн�?���A��������Nv��������@=󸽜x^\�{=����gIY��;�������H �>�&��D^�7���2�^8#��6�2L�NP�d�ݽ�:�(��>�f��IJ��	�U!Vc��K�x� ��8�m�1FP<Q�w��/�e�澰��ZD�J�B�Cc4�\mpͱ��.A���9��T��2Et1m۶��l L*�JJ�b#��`6��[lXRTs6�n�Oz�P�-�*A�aH}���Q�e�U3��s�������K)b(J[<�o'�	9y�Ц�E[����Vy(j\WL&%�J�Ih��vd�F-�L�y���)6.J<�xe��)��182�5�
vUv	}F��l�6+uEE� l�$�H������O<7W9����u��+�O��QC��5�Y��㪩��S���!B�F��=��!z��T�'�{d&�'d�H"�����R#9ZԫC�QH�'(��QOǓ7qx��$�q'�iE���uNə���:
W�b�Q��(�³Z-��.R�<���kC�����B�a�:bMg���/%:���r�|��
$�c���v�G����t/��b�E�e��q2w*
�Y���]��/�a��z3�nrl�.����u#a�$��@`vb����6�c�"*ީ���J��ć�>|&�b0N"97�#�e>�������B�KN�12�8�5"3u�Y�Yo/0�:1�c�Q@�l�Է^�b*+�E\P5*7ASؐ& ��8��3��m��$K"?����������`��f���c��2<��JYǗK�T,LW@�>��`3�g@s�V`�8IL���a.]m;�1LU����V*<<-C�g>(W�(���y�u!7Ae
�{n�bI�pkȇ9���'���,VH��8���'^��3��x��1o��Y�2sҗ���t�.Gkݱe8P���N�'�,V��+F*���*?=b�ٕ�iLB����h�xj���o,,>�&����k$q�K�ݷ�}�N*�T%���DA1��
��V�k>s'$Wͷ�ep�dd#�	�bY�M�be�^	W<%U<�H.��Gt��Dk�_0�
V�`�§J�?��j�`qu�c��s�2gHz�D˓	^�HI��VkW���Vxb⸼��[gT>�/�����Ed
�$21�Ƒ�bꆙ�­+�e�U�U�S��F����Oܿ���V��0G��,�8�������A��f�T,��9߄z�0� �^X����f�X�~P�)x�U-� ��o)A�5n��Zi���
��$WP�0ӕ����N�Ǡ�FY�v�9R9C˜����(�LD�z����ľ�7���N�Eن�'�CL�+���C�a8&HS�@,��R��rccD��>>�ߑ��C�U캢��Tb-y�jSVkp-r
��d��PH}�F�UaK�ܚ8���
���Jaþ"�ͦ�CMV��CSo p���k�^�_lF*+|Aa�D~d�uV�50�]"a�/W�Į��[
��fʟ�7'Ւ,��$�^�2�j_��QpH�N�'���O~f>���a[�/��/\E��J�$�&~��w��$�ݐ/m��>�W_j�
y$6g�b��H�d�~$�R�����>�p��j��|n�n���ϧ.@���-��O�Z� 'Y��ぎ7ͪ7�ϐW����5u_}��ߤ���Q�;��U����(b����-RRl��,"� )��&B����nc@���l�,��Fb 6i����s��j��og�=g��lr�{�{����y�
�A��gv�o]q��Z��Fha�����蹵��!H�=	I�cg��T��8|��Y�p蘴�R�K2������\�"�Z�*��x#$M����c���g^�9fo'f��y:���D�H{���օ�l���%O��4� ����*�S�c.�%��`�[��ڐf��Z��#���4�˂$a��o��c�.\-w_��'i��N�1g��\�jk��22M%UC�7������B�*T��Dp����s��X\@�2��D�r��J�����Z%d?S�5�d�L[�%O�KGI�Eρ}�q��^#$����1R��1-��*��+ջ�^3�{�H��xIsm�H�TJ�f-٭.N��f�B@��fZC�`B�'p���)��?���Qf�:�ϺG�@&���i���OSeXc�}v�gW�d�HI�n�怮`duV�s�\Y\m
�;(����~i�R�A�l��M&P���J�3��D����i�	�q��퓃��2����ʑ+X�H'�`���Ù�I����3B�0@"C"�z�ڙE^����c	V��Ҫ|>�:���]`&]H4��ئx:
�p�u9N�լ�� �.���j�Ğ���ucD�z.��E�K��~x���˗�Q{8j�Z�j�^��:-����Tj��E���I�}�{K�@�!�][�@�LC��?�π"Iŭio���U皂�KU�dMޯծ4�%1��']�ܞ%���
��ARJ'ɱ4�j�X/�B��,U��'�F��-�Rc��u�?p��z�,�b���
��,�f�-G3�ykKي�y$�
��a}w2���S��lB��g�&]NB��M�~�ݲZ<ڻ:�N���h:4A�+��pWP��!�dҙN[�N� �~~4z�l4�7jg�#Pɟ�Tڕ�Az�C�i��"qX���P˯�a:bx�EM2�VWDР��C�{�Z�9��D��D��`px߉\�aJ#�_]���t�)����~�=�Us�����J��l,�Y,n�h}cc��*��k��)��9b<}��-qp"��h7q޼CC���<��re����F�x@�����|d�9l
�=��/:7Mn�k�vr���I[rpO��QvCT{hU����P�|�;���-�{�>��s��@K0��cFHW�!��ۅ�n�n��m�%��X�x:)<�<��(�D�S�^�j.�	�U-���fp�P���#f_�}��S ���U!�pw��c.�e����	X�9xK:��[��G�,o���P�foW)�3>�BQ�-=}���P%��Y�B�{4)&����8�C�$�{1������Zy���U6��"ϳ1we���:�c�I�E�^]��3�~gE��)�w�C࣯��N��2��L�3�r'`P3n6r!��'�;<��C��!��<B��O�s���{/�<\�N�P�C�-3$:�\��V�'���܃y��O�z�/� ��"�z�5-�<�
�c<
�W۽?�oT(|߿�}�L'���o�D���^o�����Ζ\���!����]�	gs.D}����g�њ��5Lʬ�ca��4&*�����K�&V��D���O���n�L9b���FJ%��9��î����,5��R}�W��w�`\�@v.��q1��V�ݪwh���k�I��0x`\��
B��!q��p����T��R2�i�T�1�`�l:�7�ZE��7�F	!�4�n6#�ٍh}E�����ja��@4�&�*��;��6��,��5"�;>ĺ癃�ؘ�b(���	�xW�gl�?Eޓ�F�tBGa��4�	�Ei�����i��r8�T[���jgRa(��,48Л!�G�W�n�A���ڐ/P����c��=D���$�
%2H]D���,b�)F��!��h��P����?��
�&�T��a��R2B���mzW�a����a'_m���jW˦RYAzT�Y�;�qH`!n��f�t���6M}�Jhv��C�p��q�s�BLw<!�ʇ������'$�4p�FI
�%*D
!�Q��UG�DL�<Ǡ)��Gz\��!�ۭjkԮ�i��T;�j*�V�ٔ"0&�Q�J$ ,cG���:C�<f%��$�'�;�BD�jV�Z�c��w�8=��q�&O���ׄq���Ft�1�@�p��kܷ�J
r��������0�o$\d�J��{�?R���`E��x��S;Wb���� $�<�9ǮIAL����Tp�;i���^�?��x B@D�ո�.@��t8v"肣>��W��+ "�N�=�1�=il ���!Lv�CT���?-��.�N���%����@ͅ��Ӏ`�ç�������	)�`��r����sbg:0 2�Cާ�}�79(�C�!  hU*��� T ��:����@<�2 %��� "�:@�CK�P���8�>6*
��	��Q�@�!�s�&7�tP��%Ƚ�k�9��M�i���(��I�MN9
��R��8F^^�'B�@��2y�v	̵nZ�+	{s(8��_��9AZ]bd���X��PR�¨T�.T�xB�k�g-BZ��E}�HQ��n������	2��LPh���������m\�!���G�!�� �&&O|�'C���E�0d_�
��T�aD
�����z�<"��=(��mK��ĦYb��σ�Y�E�$�e=,F�!6�V� ���!Ý�AW��yw����|�}[�8
�~;e(���Y�,�M�s!� @���6�U��!���qY�b��:�GM��
���FDb|.���Ԗ�
�p(�IV��Ġ���p�����nA�5
HK�ĺ\�G �$jV<
�i���v��dV!�y7_F�o�M��~���a�$YY( P�uB�+��0��Vn��@��}"B��z�����?�,}�d��(�YV��E��-%f��{�I���tH�BK}��H�G�ӥ E
�%)οZ�3
�)��`��'b��-��#R�^���x�1&!Wa�q!(�}�7 ��Ip�y���In�{�e��eG�v(7.�hgaDlO"���H�!*��e�a=�g4�(s1<Գuh�N�ZYL�zC@	
:���,P��@�d��2
Mr����>�8�4�q9�12$���K
�ⱊ�!�?�z��G��nHλ���P�e��0�N..@(��l��.@P��B���1��^�A&V��-x���Aij@
����l��&�!�,e��$K ���� �Q��
��(@��ƀ�
�E�`0y����{�@�yx�{?p�
$�r�w��t�)[�R,��E[�P)�̪oy�l�j@*�b%8(�!O+��4vZ4NXe�������I��L�FGR�A��T�!	������i��x��0!�D�ז-�DT "�BEaX��H� �>� ��q? �ȐE6�l��c�bu[HAh-Z��|�]�1 ����j�!��g5P�A�I�C�8�h�OU��z�����E�",��I��dD�����&� �4&f�(�Hx1*��8<F��N��
�R΀<q ��E9Nj��IG�"�B�ᜠ��/@TZ�
��@48����
�נ�/Z��2�<�`�6��ހ�*$'��Ծ�Α�l<.�2a��=��,��ȧ��v7*���!&��aw�(�&g@@�HV��2dmC�I��NO$�9.�@qj�8�1�r��e���@m%��t׀�ʄ
I�(<I��F�j�AQ������|~w��$(�$|��q��#Χ2h*vB��rh8 ���Ը���hI��$%b��	~�G Al�2D��?���p�=Š�D����C��&B"!��=\��:
�e��@�z���:�]���2�ъ�o���i�2�Ds5tg{��;�Էh+E��~�T_#���P7?~��o]IR��ݾ�.�je��[aE�%f�#��U׾��36� E���n�uՍ��/����O�d�����ғ�{��c�gM�U���K�@X�ܺN�Ta��YM�.i\��ї��b�����?��Ka�FY�XYvV1&���xHi�)��pGLJ�q��P�4�h�ġ�q���T��A69=Ҧ���ק8��r�p�^�Ë!q�9ҔC�RG�T9�$�"VÍ~p*��s����/��B�\�NIEND�B`�themes/disjoint/v1.0.0/style.min.css000064400000026560151213255620013145 0ustar00.ms-disjoint{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-disjoint.ms-loaded{opacity:1}.metaslider.ms-theme-disjoint *,.metaslider.ms-theme-disjoint *::before,.metaslider.ms-theme-disjoint *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-disjoint .flexslider{margin-bottom:0}.metaslider.ms-theme-disjoint .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-disjoint ul.rslides_tabs,.metaslider.ms-theme-disjoint div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-disjoint .coin-slider .cs-buttons{background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-disjoint .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-disjoint ul.rslides_tabs li a,.metaslider.ms-theme-disjoint div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-disjoint .coin-slider .cs-buttons a{background:rgba(255,255,255,.8);border:0;border-radius:0;-webkit-box-shadow:none !important;box-shadow:none !important;cursor:pointer;display:inline-block;height:8px;line-height:15px;margin:2px 10px 2px 0;max-width:130px;padding:0;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:130px}.metaslider.ms-theme-disjoint .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-disjoint ul.rslides_tabs li:last-child a,.metaslider.ms-theme-disjoint div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-disjoint .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-disjoint .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-disjoint .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-disjoint ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-disjoint ul.rslides_tabs li a:hover,.metaslider.ms-theme-disjoint div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-disjoint .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-disjoint .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-disjoint .coin-slider .cs-buttons a:hover{background:rgba(0,0,0,.1);border:2px solid rgba(255,255,255,.8)}.metaslider.ms-theme-disjoint .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-disjoint .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-disjoint ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-disjoint ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-disjoint div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-disjoint .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-disjoint .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-disjoint .coin-slider .cs-buttons a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-disjoint .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-disjoint div.nivo-directionNav{position:absolute;right:20px;top:20px;-webkit-transition:top .2s;transition:top .2s;width:130px}.metaslider.ms-theme-disjoint .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-disjoint a.rslides_nav,.metaslider.ms-theme-disjoint div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-disjoint .coin-slider .coin-slider div a{background:0;-webkit-box-shadow:none;box-shadow:none;color:black;height:26px;margin-top:0;max-width:40px;opacity:1;overflow:hidden;top:50%;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:40px}.metaslider.ms-theme-disjoint .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-disjoint a.rslides_nav::before,.metaslider.ms-theme-disjoint div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-disjoint .coin-slider .coin-slider div a::before{background-size:100%;content:'' !important;display:block;height:26px;position:absolute;width:40px}.metaslider.ms-theme-disjoint .flexslider ul.flex-direction-nav li a.flex-prev:before,.metaslider.ms-theme-disjoint .rslides_nav.prev:before,.metaslider.ms-theme-disjoint div.nivoSlider div.nivo-directionNav a.nivo-prevNav:before,.metaslider.ms-theme-disjoint .coin-slider .coin-slider div a.cs-prev:before{background:url("images/arrow-left.png") no-repeat center center}.metaslider.ms-theme-disjoint .flexslider ul.flex-direction-nav li a.flex-next:before,.metaslider.ms-theme-disjoint .rslides_nav.next:before,.metaslider.ms-theme-disjoint div.nivoSlider div.nivo-directionNav a.nivo-nextNav:before,.metaslider.ms-theme-disjoint .coin-slider .coin-slider div a.cs-next:before{background:url("images/arrow-right.png") no-repeat center center}.metaslider.ms-theme-disjoint .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-disjoint .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-disjoint:hover a.rslides_nav,.metaslider.ms-theme-disjoint div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-disjoint .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-disjoint .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-disjoint .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-disjoint:hover a.rslides_nav:hover,.metaslider.ms-theme-disjoint div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-disjoint .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-disjoint a.rslides_nav{padding:0;top:20px}.metaslider.ms-theme-disjoint a.rslides_nav.prev{left:auto;right:85px}.metaslider.ms-theme-disjoint a.rslides_nav.next{left:auto;right:20px}.metaslider.ms-theme-disjoint .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-disjoint .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-disjoint .rslides .caption-wrap,.metaslider.ms-theme-disjoint div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);bottom:0;color:inherit;margin:0;padding:0;position:absolute;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-disjoint div.nivoSlider .nivo-caption{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-disjoint .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-disjoint .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-disjoint .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-disjoint .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-disjoint .rslides .caption-wrap .caption,.metaslider.ms-theme-disjoint .nivoSlider .nivo-caption{color:#fff;font-size:.9rem;padding:20px 30px 65px 30px;text-align:center}.ms-is-small.metaslider.ms-theme-disjoint .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-disjoint .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-disjoint .nivoSlider .nivo-caption{padding-top:50px}.metaslider.ms-theme-disjoint .filmstrip{border-radius:0;margin-top:10px;width:100%;z-index:4}.metaslider.ms-theme-disjoint .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-disjoint .filmstrip ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-disjoint .filmstrip ul.flex-direction-nav li a.flex-next{top:42%}.metaslider.ms-theme-disjoint .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-disjoint .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.metaslider.ms-theme-disjoint.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-disjoint.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-disjoint.fullwidth .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-disjoint.fullwidth .rslides .caption-wrap,.metaslider.ms-theme-disjoint.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-disjoint.fullwidth .cs-title{margin-right:320px}.metaslider.ms-theme-disjoint.fullwidth .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-disjoint.fullwidth .rslides .caption-wrap .caption,.metaslider.ms-theme-disjoint.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-disjoint.fullwidth .cs-title{padding-left:20px}.metaslider.ms-theme-disjoint.fullwidth .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-disjoint.fullwidth ul.rslides_tabs,.metaslider.ms-theme-disjoint.fullwidth div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){right:60px}.metaslider.ms-theme-disjoint.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-disjoint.fullwidth div.nivo-directionNav{right:20px}.metaslider.ms-theme-disjoint.fullwidth a.rslides_nav.prev{right:284px}.metaslider.ms-theme-disjoint.fullwidth a.rslides_nav.next{right:20px}.metaslider.ms-theme-disjoint .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-disjoint .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}.metaslider.ms-theme-disjoint.ms-is-small{padding-bottom:50px}.metaslider.ms-theme-disjoint.ms-is-small .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-disjoint.ms-is-small .rslides .caption-wrap,.metaslider.ms-theme-disjoint.ms-is-small .nivoSlider .nivo-caption{margin-right:0}.metaslider.ms-theme-disjoint.ms-is-small .flexslider ol.flex-control-nav,.metaslider.ms-theme-disjoint.ms-is-small ul.rslides_tabs,.metaslider.ms-theme-disjoint.ms-is-small .slider-wrapper .nivo-controlNav,.metaslider.ms-theme-disjoint.ms-is-small .coin-slider .cs-buttons{left:0;right:0;width:100%}.metaslider.ms-theme-disjoint.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-disjoint.ms-is-small .nivo-directionNav{width:100%}.metaslider.ms-theme-disjoint.ms-is-small.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-disjoint.ms-is-small.fullwidth div.nivo-directionNav{right:0}.metaslider.ms-theme-disjoint.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-disjoint.ms-is-small.fullwidth .rslides_nav.prev,.metaslider.ms-theme-disjoint.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-disjoint.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-prev{left:20px}.metaslider.ms-theme-disjoint.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-disjoint.ms-is-small.fullwidth .rslides_nav.next,.metaslider.ms-theme-disjoint.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-disjoint.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-next{right:20px}themes/disjoint/v1.0.0/theme.php000064400000001621151213255620012313 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Disjoint extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'disjoint';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_disjoint_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['disjoint'])) {
new MetaSlider_Theme_Disjoint();
}
themes/disjoint/v1.0.0/style.postcss000064400000013227151213255620013265 0ustar00/**
 * Containers
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides.
 * Don't be afraid to use !important as needed.
 */

$theme_name: disjoint;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-disjoint {
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
}

$(theme_prefix) {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
	}

	.rslides img,
	.nivoSlider {
	}

	/**
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 30px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsContainer coin {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 30px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
	}

	@mixin dotsLink {
		box-shadow: none !important;
		transition: background 0.2s ease-in-out;
		border: 0;
		cursor: pointer;
		text-indent: -9999px;
		display: inline-block;
		line-height: 15px;
		width: 130px;
		max-width: 130px;
		height: 8px;
		padding: 0;
		border-radius: 0;
		background: rgba(255, 255, 255, .8);
		margin: 2px 10px 2px 0;
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
		border: 2px solid rgba(255, 255, 255, .8);
		background: rgba(0, 0, 0, .1);

		&::after {
			transform: translateY(0);
			opacity: 1;
		}
	}

	/**
	* Arrows
	*
	*/
   @mixin arrowsContainer flex, nivo {
		position: absolute;
		top: 20px;
		width: 130px;
		right: 20px;
		transition: top .2s;
	}

	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: 40px;
      max-width: 40px;
		height: 26px;
		color: black;
		opacity: 1;
		overflow: hidden;
		transition: all .2s ease-in-out;
      margin-top: 0;
      top: 50%;

		&::before {
         content: '' !important;
         width: 40px;
         height: 26px;
         position: absolute;
         display: block;
         background-size: 100%;
		}
	}

   @mixin arrowsLink__prev {
      &:before {
         background: url("images/arrow-left.png") no-repeat center center;
      }
	}

   @mixin arrowsLink__next {
      &:before {
         background: url("images/arrow-right.png") no-repeat center center;
      }
	}

   @mixin sliderHover__arrowsLinks {
		opacity: 1 !important;

		&:hover {
			color: black;
			opacity: 1 !important;
		}
	}

   @mixin arrowsLink rslides {
		top: 20px;
      padding: 0;

		&.prev {
         left: auto;
			right: 85px;
		}
      &.next {
         left: auto;
			right: 20px;
		}

	}

   .coin-slider .coin-slider div {
		display: block !important;
	}

   .coin-slider .coin-slider .cs-prev,
   .coin-slider .coin-slider .cs-next {
   }

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
      width: 100%;
		position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
		color: inherit;
		margin: 0;
		padding: 0;
		transition: 0.5s all;
	}


	@mixin caption rslides {

	}

	@mixin caption nivo {
		transform: translateY(0);
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
		transform: translateY(0);
	}

	.flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {
		font-size: 0.9rem;
      text-align: center;
      color: #ffffff;
		padding: 20px 30px 65px 30px;

		.ms-is-small& {
			padding-top: 50px;
		}

	}

   /**
	* Filmstrip
	*/
	.filmstrip {
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 10px;
		ul.flex-direction-nav li a {

			&::after {
				width: 10px;
			}

			&.flex-prev,
			&.flex-next  {
            top: 42%;
         }

			&.flex-prev {
				left: 10px;
			}

			&.flex-next {
				right: 10px;
			}
		}


	}

	&.has-filmstrip {

		@mixin arrowsContainer flex {
			width: 90px;
		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

	&.fullwidth {

		@mixin caption {
			margin-right: 320px;
		}

		@mixin caption__text {
			padding-left: 20px;
		}

		@mixin dotsContainer flex, rslides, nivo {
			right: 60px;
		}

		@mixin arrowsContainer flex, nivo {
			right: 20px;
		}

		@mixin arrowsLink rslides {

			&.prev {
				right: 284px;
			}

			&.next {
				right: 20px;
			}
		}

	}

   /**
   * Thumbnail
   */
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active {
		border: 0 none;
	}

	/**
	* When slider is small (< 600px)
	*/
	&.ms-is-small {
		padding-bottom: 50px;
	}

	&.ms-is-small .flexslider ul.slides .caption-wrap,
	&.ms-is-small .rslides .caption-wrap,
	&.ms-is-small .nivoSlider .nivo-caption {
		margin-right: 0;
	}

	&.ms-is-small .flexslider ol.flex-control-nav,
	&.ms-is-small ul.rslides_tabs,
	&.ms-is-small .slider-wrapper .nivo-controlNav,
	&.ms-is-small .coin-slider .cs-buttons {
		/* bottom: -35px; */
		width: 100%;
		left: 0;
		right: 0;
	}

	&.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,
	&.ms-is-small .nivo-directionNav {
		width: 100%;
	}

	&.ms-is-small.fullwidth {

		@mixin arrowsContainer flex, nivo {
			right: 0;
		}

		@mixin arrowsLink__prev {
			left: 20px;
		}

		@mixin arrowsLink__next {
			right: 20px;
		}

	}

}
themes/disjoint/v1.0.0/images/arrow-right.png000064400000002737151213255620014731 0ustar00�PNG


IHDR* dX�=gAMA���a�IDATX	�VkHdeW�\󞙭ZR&��jf�?�\�$�!���)�*��?a�$���"�Jt���@ӵ��Ļ�e-����q��<��t�3�6��p�y�9�|�{�>�B�q\��!����y��^<���(��n%M��E�q��0���z���+����w\�X�{���JL��=X^^������`�������ė�	�c� �^YY������@��f�������< =V���߈��x��gJS�H C����h4���������[)))Ob@���.H,((x����.��,;� ����qwdd�fvv�S6�Y�,�3"�#xH^�yyy�:::Z�j�<��e��u�L�����o����U*�����4C���b�$�*�*��������˥��i��l��N�	Қ����'''?���g-P�.�f8H����J��7����}5��\|�����1�0����"����?NOO�***��x$�99�S����‚t(�I:Hҁk@^ll�;


w0�0���.;'H�www���+*//���sr���%7}�� �#��s  �ǁ��|###�JJJ^���ʈ��K��{g͸������������v.9P��&,@–��xppp@ii�K999����>>>\��f�j�*c߈�H��Q��H��6�*��?H��.����|��Ϗyy��찯�/��!`�$��8I1$��p�:�ciL�^r!44��=���
�9�2j�z�JTL"��}���;�Qչ(�����OOOW�a�FW�F��$�:����P����%����I~fE��]7�7�GO�������6�K�v�z�Iɉ�a�Yzmmmm����흝��G[ZZ��Ę�G���Y�GOFB6]lɱ@H.knn�ZXX��dҮ<�8��7����>MHH���$�M%`�f���y9F��/IN@^�x�--)))/,,�5E4|N�鰰�����������5�(8��EiiE���(^��w�9*u'�8�|�C�����'&&�����^�&�����y �rr[(E;f��N*wI�R)A�:ZJ6Z	C�aA�����{{{�UVV�Ǒo?�V��`��eׁ��rx>a$)#A��/8v������@EE�����>>��U���Ϟ+Bz"�����ʰ��O5�F�
r��=�TT?ْ#�3���D���w�{(�����j���z�gL�ae1�XgR�:�͍�Q�B�޸��kgggMM�8>�G��I�1�"�x=7#Q�	������6XWW7U#A��H�GBsZ��$�������c8I��*�U�GN�Z�D��8��JfH�a�V깆�j$ŝH�F��
Ϣ�����=�
H�������o�VL�b�IEND�B`�themes/disjoint/v1.0.0/images/arrow-left.png000064400000002772151213255630014546 0ustar00�PNG


IHDR* dX�=gAMA���a�IDATX	͗YL\U��Y�ad��Y��H�"Bb;�Eh|��%&�x $}C"%%��&��h	&�������m�af�n8�;�����?�8w�]��{py��2�P�v�4i{�Y�p����!G�x&�TX�z�ԝ���+++7�F��}r�r����yC�===W����988��Xf8�A�Й�"�V�����{oyy�[�-�جA�C^gA�����muu�a]�"��poAaSౘN�&)))phh裵��������;
�T(�b"?�N2٥���t^UUU����\��]�J��3���hkk��}��!��w���R5999����7666~6�Lz�.R>a^\\�iooo���.M�t
�| ���O~~~����盛����̠<k6�M���---?ddd|�eB��D(
z�B�xFK�l�Xu>����&''�����؞2��,^�8333����=r�3<�H1߀^�����&�䱘�o��Q��Ӆz��.��1�gQ�x��������?��+�%(��	8���" s_����x�[uuu(�.'((�}ooo����7���;��B�m�F����C��D,Q4�8�,&슇������L�o�;d��������������[=n`�pF���o8F�sV&<ʪ�2w�lu��;;;z��ю��{�����pC���&<���n�A��������P#
;�z�����!�3�5=�P/��q�W�����e���(
�ry(��c@�܅#�Y�/A�?}�8��>�1�sЅ����[[[�C������g��+-))ae��ٴ�E�UEc�a��rK�
��钓�?inn�5777�^��gwִ��}jj�fMM
[R D�O�ANA3$��#j z��-
b(	}%>>�zcc���n�z*_81;;�USS�e</�>��\�ThQ��Nj��Mh�%ś)���BuDD�oiii:>�i����(.^㰡K�c��522ҁ����D��� ږUO�V����yFO�@�Ӄ��a]]ݗ����&���</��N�zXXX0�)/D)5��yE��o�=Ͱ�E$���k���R��{;&&�Mwww��aCJm��,,,�NII�7���/�-���ڒ�ƻ���bfffzlll2�.�ⰹ������O����EN�f�XAӳ�t
Z�/��jҩ��`�?��E�A�B�C{aׯ...NB����]����M��"���@ų9
h��{0=m�i��%���f$$$\¿/l[��@7�T��Q-
Q@����%`�����%&&����0�m�5(ְ�i�rO�/Þ�

�i�I�b=���aʰ��# m�(ַ�-4S��q;(}��P��䏀����T��>RIEND�B`�themes/disjoint/changelog.php000064400000000115151213255630012314 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/draxler/screenshot.png000064400000146611151213255630012371 0ustar00�PNG


IHDR��� ~PLTEQOLNLJLIG���IFE���TROomj���troljg�����ߨ��b`]������������vur`]Z���dc`���|yVUR����������۰��������xwu����Ǿ}zvhda�ÿECB���YWU���]ZW����������|�¸��Ƕ��tok��Ñ�����ige&�i#��ِ���ź���/�����Ȇ�{|wr��������7�����̕�������������������ѽ��ž����������@>?���������':���������������=:8�������Ľ��Ω��������zrn���������&+<!3/0=������mfc����絴��Ŷ��������Ǽ����ͽ�����˻���������$.C���ȸUr�HGO76A�Ͻ�ns;;H�{uPOW.5H+h]\uie���z}%&2853ɸ�a{� $?AO²�Li��vv%Ayx��˽Mv�÷�Yi�������J`�ZYb�������~}0,-~flhv�ppx�������(/���p\h���y�8Z���ڧ��_�������z�28������kq��+���v��?f����_cu�v~������`PYn�����=R{����"Q��
���ESa�(XGO+b��n~^V,Fo�k �������EBpPP�#;�qa�.C�V[5>{S;���?v���cNB
.]E
!�Y5��{������ś�o���ʳ��^�lbt(�a[𜍼Mf�ϼ�����{��9j�~[��[˼n�{;�
/�DIDATx�̘͊1�Se� ������b�-x��O�"�	.�x�}�]��ݫ�y��>��8�Jf�����=Ie�����ۮ�	��H������@k%�b;`l�����!e�c� �2\���oq��%�����,N������P�V�C1m)F��Z��3��C-/?��gÃ
Oq×�4��u�n�Aj5��jd�2%��|Sl�7`��<�p�"R4~�V�dЎ�8�-	�/9Ɔ��	��z���J����J��`SmN�qw)����֟Xdw�B�ز��aSJ�f��VN�9
WT4��d1�u�����$0y�����1�P
F(_��oA�on�W#5vDZ}^��]�(�8.�>
���ې�D�l�;��
�SAl
���D5�D���`S�����B0�����9�Zr�`+��F�D>&��D��]�e�bKܛ���ۆ�
%_i�(��Au{uV^_1��-�Zi�Rs�}͸��/n�Z���ێ�$���P(�.��B�`	e6�2}�"b�[�U�Pb�L�$ Z�Ï��5�^F|ďJ�(#1_�$A�ÙuT"v�!Ej��idN��̓8:��mL
f�E�')�-
��u�x�3��N!L�y?�KB���})�f:'V��X6$Rc��2�d6�BK2Z�*�XP����fT�%��Z�Y7Ig�S���JL��r�kV6z>Fo�:�{l̰��<�P�pzG������6A�	t�����D!�I�B�H�i,w����@�G��yͧ����R�g���g�LR���(�d�E!D%�����I�����FZ�Q�ׂӔO_y'K;�D:]%�Ҍ��e���Qw+V��H]p(��5,������	����C[��F�	@��,�B����|��{�/\�)��X{��ս�7�VY-��
�l�n���z��A��I���N]�.Ҏ��CYTu���g"w�ܧU\���|_���9q}�.���W�a��W�*�*�#ϴ��
~���l�Ͽ")�����ӣ+���kO~��{���r�+��k𔢥o�Sx���w?�y�v���S��k>cLX�,��>�祽5�̀�؅5�������&�"\9>o9Xa��z{�0���^X���ђ~�4 %%}�U��G�}���ī�/���Ǘ�^~҂��Q;�a0�/�:-.k��҇`�C@���/N��@�ࢋ�t0�36ҳGw��3+j�ŏ���8?o�_���ث(�}���q���8kǑ6������x���z����eE!wt�ܬ�Y�cY���Q!�D���"?���_�@�����;��$g�����<;{��׳�*>����`��L瑽6�-��n��4�jL��|�W��f*k�E��m���c���~}7�"�Oa������ٶMyd>侹qc��c���M���[��V����F�ío$��hc�K=keoDx|S�N�h�	��bzw�ҽvY'�ߏ�&��K�܋xX�$�
�����^���]oh��W�7��4�����V���1\���	��"c~��}�6s�'�]B�N�p������^y����Z*@^j�4����3�H��mߝ�,��i4�-�G��g���r:�F{�|���c��m?ꬶ-��o�j\���G_�\��r�/�&�Qiyܕ.��f�&��:R��ӛHe�2ݫs�$bu�]��s��W�6xn�|�1]r�m��êȪI���Ƽ H�*o{��A�ێ�bͣ:Z�7�2L��l���zW��<�������J��Շ�{���V�`R
L�Ę��"���I���$t��(�+��~�wYi��I�qvӿ]5���>:k���Hym���?�r�n�\}�a����q?�T;^�7�.����m��`�=�1o�]4*tV%��M�_J�n�e[gF���=4�&QX�ImW�A��6o�~����f��Lk����U
���oۺ�l���;]e�m�^���7���
?�*̈́��ͪ�8/z�ך&�l~W&_�<��^w|۬Z�>�%�W%�E9_��㼜wTWN�zT&N�!�-�W>�^yf��=� ��D�سk�0�u�/�z^������s��jW��o�߼g_C��_�<lx���>�F�~@�U����un����Ah5_�
)[����\��6ɾ��X��qQ.�
T�����!㳽%�(c�j�Y9Om[l�Y���'&�ʢ��"k������j„0���b���ui�(A���2���uYF���$�Q��r7��f�f����L�O%��|�7|S���('���q�t��v�J�#��ٕ�_���_^����* ��B�Dz���T����ܺ2r+{��5Gu�t�~��J�I�7��ئٲ�c{<͊��7�ѝg��%�p���
{��V#���zu��
b��Z��*7�f����1iPT�8s�P���:֭�ZٻnoǓ�.��*�4$���ze�����tW�)���~���2�lo���m�����F5j�������5��f���eM�l��|�YvYz�>Xd��0(�o1*�B˪�g�
��J��c�Bg/�sq������@���/��.GB�x-D�2@�/	8���kf̄C��!� d�@�.,ˆ�(I��%��S5��*�a$�.0a2A�c�8B�	5���A$�` ��9�7{��Q�;I�T�$BK�a�,q�fB��tc�D�8u�D��АH�LJq�ԁ��%1Lt�H$`J5����P2h���\`��=�&M2(�{p=�fARC��<�����6�ob��4C����
ð�U�5|��(?.n�BD�(%Du�HE0D����}���'��~4nj*�.t006Ac
-0N�O�0MI�\��,SB'�003���6���	�I%�㔥�L�A�;�4ecAQ� ���H�‡X�T3P�F�?�������:�1?�/g��@�#�gg�*����A}�]�*�}�)�[���=J��㟆����L<�Qà��U��H	�(�"�Y.@�<�@^S�g�͡�\a<�ρ�\(�St�9�W-�O�hA_u��_���0 ��?$&%��������Rs=��
 �y�D~�?]2��.O@~�A�	a���HS
����/%诚0��/�^�]�B��h���߂MzS3���3_M��.C�C��������_r��� ��pL���y����K b��ƈ�#d��+\L,R���o��)���%������2H<���]Qr���Z��'k�[�I�k<�[,���m���	ti�	y�5y�T��]�  �Q��9��o��7	

f�V�&���1��}�
u��0n��L4DH3�tC���F
�.Ē�F�L7�@�e�M$��q~ҥ��	�12�� �N�n d�Sh��{rd3���ָQ'SÑ�R�Dc2]w6��0u-�.�X7����>M��	��i�v�C3�u'�P#f�GX?/J,B{c��Q�K�t>����\���q͐+�=�A�GċO�V�˧���Y�$��Msc��=^�8����>�]*J��8��h���8����F��I�|rl�Qck�������雨�p� �w�"�m��9��	f��e�U��s��ę�[?�2�[c�%AS��U�bpKY 6���V���U�%�h�ϵ�����Z�eu��[�&
�i�Q�����&6T�q�EXn�a�8Z��<R�px�l�lN��䅼̜oD�J�E�\y\2D\E�W q����&�z��r��)ߴ9�o�I�y�Z�m���f\��c���mw�aѸlK��ԥST͡lM��x~�@Ϸw��Q��y䣄���<+��V��s�&�}�<�A��7}��4�����ڇ�y:���{|~;��������7��C��ʖl�����=h�q�t��^/�\v�ކ�;t���E��U�2�+�;U�n�75��;]���Od��J�Á�k@�� �Ѫ������߿�;�7��`�V�Tw�iu�_5���N�.f��;���N�!�M���RU�m�u��<��ט�c�.�Qq}羝�e4��q�M(.�e}�U��ȋ�8Ds>���\�ae'�����UTL�!���Lj�V_��n�4��m?��߯�����F���� d�N��0�Ÿ߆��Qms���;+�h�O�y1�֫�}��ʱҤ�w���>�RS3ng�z�$Ou9|.d���d����_~��S�]�������[������N��C�~ȩ>��M�o�њ����pTޔY[N`�U�6edg�xܰv5*�>��)�n����m��ދ���ڝ��-���m�O����/��|d��̬o�Ԙ/����m�6+gz_���<�}���#���M��uZ�Yt���(�w5Ɛ>�U�������8S�+j6��Ux��j٦�V�)�~W��t���X�����J��������_�
�s O4�R
W x��U�Φ�G��7>���]���"�viѕ~X���wVޖ�YS4�S˦Qw���<�,�'E�0.��*��Jd\�󑗀����ɦh"Guͮ_�Dd�1צ��j��U�$Suں�ڬ�]U��M��uWn�U��H�cFI�f���&P��ZveQ���Io�s�&$����!��o�ݖu����V��3�޴��]�g�Μg������4���FH}\N��Q�U�\ï�/����+��3���Nf%&%ub�R# DX�A���$@ɻ`���7M�7�"!8�]����	#	�L�p�h])�q�������U$1��B�d-(_J'���m-�� ˢra!�&���Ҝ$��)��^$(yt��n�a�
��`g}����$�Y'�t&���Eh����0tG�Ē4��ءO$rhI&-,�2H�(��,�Q�+�ͳW��o@.*J�0��CKI�0��%���r�e;��|X=��b��_
�:(�^"��v�`��%����nDL�Ă���F�C$t�tpv`v����0-��8�g��%��	�	n�`iX�����7*@��Ј�H�$���`!_��B�R�?@��i�W��X�� �+���a��z�`���b�E�Q1�y��Ɲ@nt)�"�Ɛ:M
�M�t�~�ܮ�,�t!q>N��?��e��p7���|Hq
�@�+F���Fe�^x��3|!���j�Aw�ԇٯ
-�E<;�c�d���(��g
���lE�0L1#�>�2��6�Ͽx��]kr���.��3.��۹OOI� �8į����!���}�1%���p��!�q#�4��l5��<}(���ypP��I���}Ɋc��.T��#k�dHn��h{4Q|ٱ�F$�Rž%�N���&Uf
ŗ>߇�o��+�����PU�Ӻ
��%�3���0�4�����:�`��w�To��
a��k�=p�:�ͳg�R�ꥦ_���b��e��f-�4y�1O��(5x��
�/)���t�M�>m�n�z�)4d�Wǫ������jj�m�
�e��8@P�4:[\�9	��
�TG>^������^D"`C�չW׮Qas~s������S�s�
��b��4�D�c?wq]-�8�C0�Âd��dČ^XZ1��h�|� �t>J7b{�M�0���1����b���x�|H���f����V�9����o����m'u���G��Q��Md;���AZ�z[�E�&�.Za��=,�����*}Ж�#[�#���y�:��j���E/��E�)�Qs~����'�_D4 �7@t"�t<�~�6G������^����M���ܼ���J�Y�{����r7����1���Ũ�0(�B�{�S��-hc[G�}���f���W�+=g?��
*�b�.�^�w��24C(�D����:�ps�T��V����rd���^�Ћ�f��yo6�ֺ���/0����2�Y��*��q:3�E���a��"�r(�j��\@QC������w��z�+��rk����_��z�U�w�����?��Ǫ�q�"��H��A
�ׯA̜��+8{?����qC(��Nb:	
�K!�L@�O��f �-\�35<�I&�@R��$
���X�r���D%�`���J�>Ψ*���j�&�>�P�������2H�zI�E�o�'��bu�nRt�ڲ��4��+؀8C�kN2J"�XU.g�^7�(J�����B�6-�:�ݩ�	�hO-~����E�Wex�n��/�5 �w8�)�k�~���$o�0�-� �'�������u{�O|*�'&�+�g$�Cz=�Cچ=Z��s��$ת�/�W����ͫx&���g�"��<"�YB`���1���I����;��qcҥtyH�){O��.7�HT��!���4>���ὐ�U���$BŤTў����t���.�M�`�i��c��s�IH���I-�}VB�{���&�l�W4mؚ/mB
�g<�ⓐ��3�W�M���g���~V�����ܦ ���M��G^��d�{���S�=S�'�j�щ�,�9��!����B�9����i�:�R/N5���*ɱ�0{�+(��9�e;j�a�!0��l\\K��e���
�zŮ%����{�^EvS�63u�x[t& P4D��d|!N�1`o��㽂>�"{�`�ZKpy$�J'9�{׉[�͔d�x:N+r����BQJsYށ���@���������Tl��@B�O`�u�u�z��s������o��H��
���Io����F�ɸ4�2�=��[eF�;��e��z.��c���N���XLF�;�Hy�^��)��y>���˖�G�ՙ��)C^��<X��C��&�L��!+�!��O�_��ݒ�$���ڋ���[��Ԩ���kA�0��i�_91�_�� ����,Id�>	��S~�.{؃!D�!�&\o5�!�Ϟ�y�?uvAAc�vw��٥��y�ZX�&�^�u��e��p�=�n��r�w��| �.��VM�*-x)!�q���&Ղ������z5��Z�<�6�94�N��wE�47��n��iݼ_��@���s{�1����t������x�1��&,AH��	e&F3��/��#T3�(��)aI�
d���{"AЧ(�a:�����
�"��H��R�5g
��&D�A�}&Q(�B��}�!	����ھx^N9#�B��%�l�Z���m� a�*��\⥐�9�
��>$3���	�Ж�s�53�����†�j�Qx��Ӳ|�)c�[�p{�}p�*�g�
�IFa�zx0F Z���T��
9^�-&(, �-
!2:9
�
����r�*T�7"���NDB�9cd�3��H�F�Qlw��c�=#3�H��]M���
@�`-x���7�V	�B��:	p����\ǐ�fxH�:���~sӂ��vv��,G�T���t|q�Ya��I|=��G�͉
��˽��z蟤`6���
������7L�'d�i�xEW��w\��GO&�vW~�9���W?ɜ!>W�7G h�"ֿ�P���|�NEtvu榃.���.D���=�=��R���C��q����������3��3�'�ћ�Y�>��!�-Y)unUG	H�U�D�$�o��'�߀����@(�O�H��A������sj�){���5�����ե�)������Wځ/�w���`�C���
T��?�>�wX،P]��H�N�-PѨ�����7&�q�&
1A�qCt"�U7�6�D����\�s�o�x׋�qY��g���@Xp(�@\% =�6,-�*$�m�}k �
�֦o!I0x��ά���V��p��r���b߬�����â��O!5%}�}�T�d� e�q>?D)����b�Qp8BVl��&(@J��"��2���L�=J�2�vgY���	�O���0�́$0�m2��0^��Q'�Fi��V�l tJ��L�O<f��<�a��������#�C�p����8�2�G��<�m��Zuꮽ]�W�$
�ww����۪#������m@�\�ٰ^��nHjZE2r�U�gP�M�*.�F,�c9]-߽B�y�U
��֫m���v�ޫ�8��U=$J0g3̧�2��6�r�V�m\Fm�m/:��U��K�(֝��٫�t=U[d��7���/v+��wc�M�Ow-1�uW���F��ioP������z�|Y7ec7WH"O��9�\�a]>o�pxy,t���`���[��I�ͦ�a<���U=��E���D�*�*�A6,��v��u��r���h��ݢNw�([f�]�����ˆ��&mgu�`�:΋r��|i���n7�����L�͢�E崨����a<�t0�ø��]�y�{i'�:[�2(��l~SA�+�(��ۺ�ic:,��x��UU7v�l��L/7��]�o�:^hL����"��(��E�ˉ����xuA�~C�.OΙ��I'X�O"�<�A�9�er�~�n5;N�@(�u*�Dn�Q�6����-�D(�(�T��H�X�R5�lTUy�H���L��6�	����O��<q���,6�l�7cZ�T���lb�r{�/�w�	7b�Ǐ��c5���uR���n<�{7�1p�W�Ĺ�}��^?=t3�{�ƢLne6�7��c�<�R^PN�UN�X��gY�(�T�}��q�=�#������j=9m���U��(���lb]���QZץ��A��>�Vr:�����,�c����";~l����2&s'{T-�����\��)8*b�ϛ��^��Վ~���Ы	M5��|�+�.��vW�,԰�7�o?����e�����l9�K�B��dC������i6^�槥7r]�����1ؼ�ܬ���)�$v�n�0�|6��G��8�� {��?��ɶ8T�|�f�,B�*ip~�.|���>D�Ho��<ћ�.c��Z��<D����:(��6Ѥ��N��[u���_Ƌ��n���z����L�6�d�U��U�!PƬO\�F�W����;B��Kפ�D8����~�;���ޠ#�L�aiٚ��7)O�M�gm�Zǧ`�C�ʽ���f����M�>����Xn+<��'Ey�;��Y�kS�,�iv\k72����ED��)���UU<�x�OG��(}�YY�$/�.��U��ك��J��8��鬈Oe�|��k��9gPNz�:֑ՈZ�2-Yj�ѹ8S`�W�C^WV��������ʞ�1	���-*T2������F$�JM��J[�0�\�����I�V����6��8_�����8b�f�vȩ��M��;�BB%����0�s��4�4.��T�bDI����L�e��J�(��J�5
�KR0����
�s#9�4��p4	�b8m�Q�r&�g�&$��P�9R\��<����&)�{15JL���
����Ѻy[R��J���ъc_�"�~�6�X��憃��/����0�0f>Z=!-�g�ڕ1�0<(X�Vo!��!�Շ��%��K!@bO��@	S9ou���mE?e+�Us���mi�笓�
�T�Nq*f��S�H`�\e(n1�PR�S	��(c8P��!�t�%|�P#�RC߀�
[���pq�!D��>g��iғ�Ŵ�P3�c�2b���{�\pk��2
u)�"U�R*տ�[*�խ�_��Fi���tm+3���h91�k��H1�^��ŀ�o�PC��OW
:K���{:�5z"dH��7Sj�{Z~���}���z�h�[�X{��y�5�|��7J�|#�:5�LyR�;�[����L�R!���i�x��H�xY(���yD$.l����R)J.�8��Cc��v!������ɀ�L������#Z|hC�`M����C�����7�zۃ���Uo4�?�-�H1�^������]ɹ3YX��7T'��>%���8kU��`�9QF���a�%���[I�v��?W�����;�ϩ���|�ל�BP�vwwd�����d��9!!#46Q��|���yc�!�Y�ɜ$(�J4Vi�	ULH
�;�C
����)��EuJ���*$"E?Q�#�Z��(�hl%�d4�<�O��6^���3��� oP-J���a6+P�@kmӢm��V�t�]�H%�������-���PB��O�S?����i2�˿3Mij�?'�H���$i�h:��t���a^IB�)97���"I��s;��$ә�NFw����T�\kp��' Stȋ��8Fe�T�gX>�S��᪟��k������޿����y��~��z���!�#3�1k�ln��]4^��	��&3��}�`6Z;W]#o��}rk�ń�+�8]q(�㺛�����8\iyZ]5ƶ�ݷs��﬙�m�gM�����K��e'��:���jS�L�_����郚`�Ӑ�M:�V�$)��8��s�vpE[M����]:Ż���A�&H{\|jO��r̠��.�Fi����	z��$�t����E�g��K甂ۉ�����.�~���d;V��'�_@.7.������@md�hU��p0�V�U�p�QH�Cf�q�h�$S<�u�v�	sTS��l,.s)n+0(�1��ޭ�F��*���+��hU,�@�~]Ke`�����,J���`���fP�AW��"�^
W{�&�"�Gm9*�:�TL�ڤ�z���%d8���a�4:@!C��B�YZ���mdL��Yـ]3-f�ʦI�h����G�e����+���e�x��_���~�<�KU=�C�Nl.����V�8�4�6:�V���+F])�Q�c�(X>8V��;�<�+l\��M���>g�����Q��$���y�1}�����
঱oI�#m�4���	���8�#�U~f���L?�X-�q�$�-e�<��"���F��s��(���
�d��Oz��]��\wu&�lK,��rz)c�&��B�����z���<�=d���񣟟k<�զXb?�w4��@�˟�x�'���B��Ry�N���Ԑ�k�ׇ�תd�`��v�D��mT4@�(���p92��\���hإr�gL��8~Oo+�/VA4=A]"*S�\�׌i�W5nT��T��\$ԥ�|�+��=1f�3����B,��bةf���d�z��blD.3Tm@dB���S)Ir�m�] {�
M�pJ��w���.����z�_
�U��4�㲎�2�WU�k�� ������������(���x��߼�r�w�����a`&���̅�.JIJ��ˇ���W��lEq%�b�Zj[��ε���&�����/�\M��@ET��~���~���H�\�Y��VpS�U�J�½�u��E7.��g��mՅg�qs��M2���m����d=�//6x�o��z%�W�U^ԡ���o1)-qݻ�n�mo����f��������ӯW��f�n�媩oO���6W����vx���Eq�X6v0�'ES��.֗���hP��pq9�{� �^V�$7o��CxS6�\�殿��E��x�N�ܼ3��jV���+~ﰅ�W�V��K;O���f�oGF��Q����!8u�w-p����ѐ���W��O0_?U�YK�G"dTs�4�άN��q��cq6u�Dj��e��j�ز�2g�j�y��2qy�Nq�N��Ā�	�pΌ���b�c�*y�#ev�(`P�
��E���	k��xaT*WV�H=��#YܶI^�<~�ijj�*�41e���ag��F�ڙI��,#�M���P�����z����/j�Q�e�FZ@�oʢ�II�3?�hK7F���̦�5���U����21"왈�
�X�c��hȸ=�4d#����2�@u�����̑F������ Ҫ���^��^z�:��y���� }��zq/7�W��K�ef?�JE�qH��$��.�ao�X���ƚ0�{��A�T�e����g�g�\�U��{
��Y׽�XN:4,ѐ�4	>�Gz�8��A�9#��B'Iϖ�:�8�P.c���k:��@��$&t��%��A��-�OxۿP���L
�}�}��}��ۍ��3�_�@��eF��)�Q3��@�C
���k8$�1<#s$�Cj���i	�у�yǪ'�	���b�#~��L®�ί���?
����boŨ�s��}��=��~��8h��{WN������s;4t�ˡ8D#0�cW��6ŷyn�V7�G �E�m^4�
�a��	�u��M�b�1>���(�$�s�P�a��dk����/�}D�'��6h��-9
��Deu�Nh��\���N�����^�h��֤�\k��'Ӭ�`�l�|�A�l�����嫫Έ><>>n�.�퇇�z}��+#
���[�a��
��ny/:�$��o���!+�Է9�XY""�V`�����&�h/(+�S?�����m��ouWi��5�FC\�X���2.���w�i�R���D�;R�����l7��x�Y�h�@,C�n1ͥ@N4�G?>�F�����󺁻��H-�ygD�nK������>�
�E��&E�[�>G3�޼r���i�� 	؀�x (g����g�L�1��'���	��,�#Bz�
l��83�ܥz�����ܷ�d�lƙB��^���)SP`2<��	��N�7�I)kA[0hT�lH�j���N��/�f���BMD���P�Ds�z�ο4�'G{���}g�w���;�G��+Ak�tM�B�UEB��4g*ra�~�$K3Q8�"�8"���zn�#d�'��nU��(I�C7NQ-�5�IV�"�SD�$�Y�
E�ZQ����k�MG���/EZ&Ie��4�,��c�t�k~�l8Y��;�
�Rn���|y���v�ታ`*9
Z����\6�\5�_�ͥ����.���$S�m@Qs���Ki�I�)QЬh�&�*�ņx6<����0w�̎�x他[�� c�9��ZUu��5��^��b�V#��J�,,�D�)WEI�U���,Q����I����KjsT�87�d?��l�?��ajr.��88M!��	����8�ew�Jѥ�(�,��I�Ms�l��fs��%�(�$�E��}~�x�7��'��=��ޛ�r��� ��w���؅Z:��u��ɠ�_���dL����UT��*L���.;�f�oczZ�2#�^ObT%����c�$�i�Ίh?7��~j�~�,��=�#�T����S+<��鳪.�aj":���}+����c�������Dn������ެ/�
�4{��?�-�"X��K�p�~������%�vu)h:T]P�p���E�{�9|l
��0r_ԑ��{�~5e��L�4s9�(\'-lFݼr���|����f)JE��E!FE5�EZ����`�u]eq�#;(�4M���C�v��x&D�3��L_@�x'�J�gY*�Qn'q��M�uM��B�E{���YӬא���s�>���LA���Ą�O�c�b}����P%ZѩL�F�t�U/RM��:Nxo���,�DJ���x8ahXV���`2�-^R\�:rL�_�Y�`ڏ��`�Vθ7�;Qu��p��G�C�_GΪOf̰8�e����c�49����?vV>��~��1tXEq��oVY��ƒ�:�� ����X�3l�0�Cw�ߚm�n@��o���BI�n2kz?��&#g�3`Da.7�0(&T���=�6#�iņf������{E�sX�|���w6�&�x6C&���<o"g؁���M���1�D*��C���F��a��0�qNαc{�4QFt����g���P��ّ����P�O=����*��B_nLH3����<������%yh��TI	�ڗͧ��,����������eeG[;%ݻB!�
��u���lY�����X��� ��븹��w��!�;��Ze�wP�hǜ�)�v�n�G�����gm�xRY�RC�,g2	-!dl82d(�'q�b7j���'�l�)YΠ.�t��蒏��<~,�(�	����z�U��S�89�,wP���י4���e"Ɵ.�ݝ}0�r�S��a�;A�� AD0AN:A����:�������/�}�[x/E��p����(?=���m�_�f���Mu��*9~ �� N��=�+K<vw'AT�݂��6���6ɇ���M�^X�yck�c�"D��}Gd��蹮��E�������s��|g�4]#Z���8e!��؂�NB��3ވ�n�wS9[�/�������Vv�F
z�Bda��˥�k]U���q�$��9�.ֲ�(Ð�#w��mƒ�e�zDl�Ю�|#0�|�x\ӉD��O�_�d��O�{��hx3�s��Wi�X����6�h�K]�����<jJs�p!����2�ز�\��B��vW�J���9���_�1�~<=*�
��x�]��Iz�#5���j� �gJM�
�TF���ỡ"-HJO��3A.�+����E6���SR�x�r5�Ȅ�8~~�{����L�@T��eY�;�'QdȂ `-��ք#�ҽ��� ���j2LF8+t�Қm�����cDH@RDo���a��ǟ�D��4�+�#;�Hڰ����84�~_�M%�@H�"�[d\�u�/A�B9b�YO�t�"��ݭ9>c���}v�@[A���$A�����#�KZ��f�#]���wbj��d�R��b���jS��IE��F$\Ȥ�Kؾ��.�1��T��|�u�v\�`S�%]��%?���-�V".�
�Yϸ��fnte�e�ؙ��8[4|�6�Ѭ&QR���s	m"�xu\]�d�������-��PDE�Թ,d��5�RE�OL�#T(�ZmE��,�x�"��%rO޽��ٙ�n��?����ٴ�o��ٰ�J �_�-O��=�MZ�Aኒ&r�?��$�B
�����h|<��4�	b@+'Ȅ��,���U����˨��B�*�!��
�ڧ�D7z�0��)lU�E�[�;�����e^qL! ��'����jDƁ(�ƉgpW"�ʭ���'�!A"H
���,��D!R�ae{:hWO��I��|߉]]�,F��Y�H��,�E�ou-�=�r\۞��J�)1�V+���JeA��N�Bbt��DyA?�V��f@�]Hfɞ,��GH��8�B���?����?��K��'V�p���9+�����j��w�{$��s�xgo��f��!���]�ȅ���n.�&:���2D7�h�Qlۃ�c�kU���
��@�ź��,'�(q.���"�+�آ.��v	�À�<02tQ'�[�$�Q@����?�?�<�'��\(ፓGN����朻�ȚM��@�^�J%~����6h�r�,�� k/�vj��4OQ�e�+W�z%�Ģ�e��cA��K�!a��\���W�X�M�-CG?���M��#�x!ݔK��vKx�[�S����U[�sZ���m�^<[��4����?�=Ymu+�0��S�q���]a5���	k�Dcfff�Qs2�NH4W��Au�l���=ę'����������au	 :x�:^�̲?[1�4Ɏs�x��[b@r����R'���kί�7~Wa@�'(���.Hj#�ԗ����_ZL�lL��OO�Z7kz��P>|��F�bL �n�ZfCOeA�#"#�A�@;���1�6*��;\��z�@���Voo�B�T�+]t�����Ż�K�97��W�V���A����-�q�`
V�"ʁɮ��K��W�oU+l詬}����s
u�1zqx@A ޡ��B2��
s{iP�<Q��2P<�ϊrX0�P����Ŋ`{<~hk�\<���JO�[_i��Z<����:��ɰ����Y�ؙa@�L���t,��x}(�D`;�< �Р�l����j�9D�@�Cg�~�.�D�	Kq��ܸqKg'"6�nوr���
	u�7�?���(ʚgE+|��?��މ)�=]�x51Q�8��Z�V�^��Qj0������hK9���2�l�z�9�Սy�	��"�C��I�H 	�G7M�`�b�4MdEU.l�ǰ�2V�BMՋ��3�G	M�OPѶ�I����͈>DDóq����CӗM߂�ܺR}�h
]�2T/?��x|��D�\��w����G�GBd.�l�j�0f2�<�"( =�I
�!Y�&�`�o�*�B�G+�(ڍ��b�E��<�](�'���k��3g��n\��f�v�=t���3���6��=�(�P������փ��!3�
�c�"C�]���x!���E���y�(�fׁI�j��/m�7�����@L��r�-��ʼ|u��h�X\e�"N/�	$�k�B���Q�潉/$˵��
Y2w�G�!H,h@�%�Ȃ��S��y��"�ܿ�	��&/����do�KJ��vF��u`�ׁ����M;��#�\짗g���H��"���X�lxbj���}g��ѓ㭙����}����	���X�Y&V�_J=�����$r���Xv(�2<����M:L�c�(9�"K���(�	�
���gʤ���199888��@R�=f�d����N%8V�Rb�C���2ex�^ro����իx��՘i4f��O�ܹX��Nh�T&�la �L���΃D2$��/�Vb�2�1�Dl��G(ɚ���h�xK��,�s�+�5�DFF�����:)�<Zf"�����ϋII z���r���q��00�c�j4��3cc���ۃC+k��0�0���h]xH>��7�|ìмU�\���с����Hx&�H��k��*�0>�IF �frWφ��7��짏GGG�n�>�`�K($n#$�L.����F}hh��Ǐ�x0��l��=|k<j�<<˯�|�o)��SY�p}>�L�6��@�py�.�����z��,���"��O�Ev�mȉB�&`��B�"!��|��=�4�� G'G޾};���ȃ��'���
$%?U�`�엒��SP�����c�
�܊�L�[vjI�v@*�;�&.�n��x53<��i}x�l^n?Y�~�4I�,�ggij��:�T��T˛��Z�;%/u���T����F�(Qf)�$����2�����R`TI)E}"Ѓ�k׮�<t���q�sS�d��m� ��?��?�����D� ��B�G
���S��T�w��`:o͌�`S�屇c��OV�v��ZrJ{|�q�4�Jyt46��*�K*����X@]x�,�}!�C�(�8>5:�h#:,2q��kc�ɢhpn���B2�t��1iJ��%4!MlBS��P\ҥK�Til�Q�5�BS�H�(�N��b�
�����{���V��w��{�]���<��n����������L�}'I�p�|{�>����߿�@���O�}��ϡSӉ\������j㷍;����z�~7��ģ�����*�Q�"l!n%�奩'��r������!	�ꄋX�xB��A`RJA������e�c���P�s�҂��t"C(��h/?�n/b��5��@}px~j�|�\��k�6�(��!��VT�#�r�_�g�\n�NyWM�ߊ�8�� ϑz]���]��h�R^___^��֦����#C/��'�mֱ����
��Qg�i8���>m���3�� �6���\��Z��R��K��f
�xG
?�;P����gj����` x�����w��%�H��Z2GZY�T�J�������4�$�d����;dOr�����@�錹��˘��k����L�xf��>@�\�~�v(��h'^��o��K��`Q�M��j�����MC6*�(ѠEɜ"@�I��[U*fZ�������5}�|�1W��x��ꪑ���9*%�'K�V�OOH<�\2'��YH�*x���t.Ur�
������\�Y����5mH[�X�	�ۭƒȡ�m7>��m��l%&�@T�x�b�&�Q 6i���$߶ST����k�5�|S�G�����鱱�k���im^�Ge��"���V���	Q�u�m)�~�����]hj9��{DS��/����uɇw+���wF�C��p�;�޳��9�q�����`�~��"-�@B��,��f���K%���7����_T�Ok�]j�W�$Co��,�#��^�,-U*$�X<'�zsq8G".�"U?��]��E�_�Wo:zu�����\��K�@?�t��>��� S)���!���'�?8i�1kI"�N��V�#A¨0ѤN�p��fX�G[���!��׶��SVbKm�m~>x���\S﷊���[�u��@��J�X�ʈhŋr_�E�h�@H�
�tg\���E����_V\.U�2��=vw���s�L��B��A���C�L�qlR�.��e{@��A
K��,�@��
So�lj����
M�L�Jn,7ԥ�ui���.hi�_U
/Д��d�-�������D`�^Wo���oy-�~��矗��&�l��=ȯ������0#�
�w "X���;�8"/t��-��7\�:b���v��^���tcA[�`v�_��W�J���~�J�Q�O���tn���VKm�2�Q�~rc��!�rY���.RB����d0�4��U�LE��ƽ1]�k�r*v�~�����c��7���S��;��������A��p�+VL�S�9сB�[E�P٨���4p����pdS�ƣ@�X)"���v�ի��-;���}������'���'��<@d�Z-��oo�1��qce%}u�x��*l��{՜�vS��ߏ�N�t�{u�=��yo����T-pOve%��*>�����z;��Hi�_ߜ4	8 ���$ A�cs�(�K#�I��p�&@�x�w��ڼ��.�.\�V�J�N�:�o�ANb��Zmr����h�ye):��\^O-�5RLd��PB��E��ۋH��w�<����:�v��T�������\�߼y����]�JS�ᙞ3�^���C~U}��-B�Qh!�&┶�3
E�d�R���(�j"��l�qC	 ؖ����-�r�K���~>שU��)�����804DX�Ep��Z�Z�^�������/�~a�F4�-3�$N�:O�ZA�U��zHo/�N�y{N�7>xԳ��-�+��`�=��:b1'�Y|���m8�A�ḯ8�E��`x�dC�8�
H8!�l���-�߲Ea�eV��l0?��
����W5Z-EE��2�{)�$a�uѠ��L�������y<������ |�k�j���h���=�=�;b����^��;#���v�KWJ��Td�`���UaW'��x
���W�0���^�6��~-�l$.��<ԭDX6A%E"�Z��T�a��f�zK�I�M"����0�� ��*��ֆݑ#�L&��=Y�l�e�z�y�I�t��u^��gêB���£�l	���N �1�+|��#�Y��j��HH�V��h��T�,�A,V��"q�p�2	�v�&K�H��q�zx?��m���T����V#v�
��Ps`H䑡�=7aP��r��������xw��i�`wר�]V���N<uӈ��<���lIUH���R���
��BG)�N�0��QYv��WiH
!8(9�׼0��Q.T�P[c"BϫB���*-�RmۃR}���Bq�g�lIo�" ��4�V]S~�\���-�]M����7�L"xL���WK�@�Hq�3�1w)���J���P������RP��$�uH�d��s�C����^����P�X$�
h���D�W�(������u��R-�n����e��%��R.]$�D�f�����������_���': DqQ]f��E�`\�v�{B1�#\p��#��s]WLfQV�\�,�1�t�bN������
]���1Mآe��x*��D��C�CX��S$�U�� �A/�BeE�.U@�e�5O����5�Fy/{��EPnB=S�¥s_������"C��4�D����h2�F�A�5Z���'��$�,�02�w�ZJ�2|��z[�!����<<��P�cZ�]�F��n`4$ә���hN����P��0"�+�:��*ͭ��4�hV��.�Zc���n�H������p8����׫C���E��&����3�z{�^_W�QM��h@Þ���Dq9Dz�H�gt��w�z܁�
yeY	��C�^�w�%@<#����ײ��JeSUb�5(�(�pq�P$I�$�_���\�̿&�b��r��j���8qP�n�����_�^������q�Gw������̵�׮���\4�����]n|Az�W7����G�u�]�T��H ��w�NW�r���=Ro3RC����n�����'rr�D��E �Gd�q�O�E��p�����ADҋ(�8�&��*3ch!��@�^�M�������3`�ɠ7���b�XL���XĬLo��3��]��:�H̒�
�P����W��K7�Y�J~�uI���N��h����#�$hc�)��Q��7&�E�����gN�
 w!�bQ`̓���DP��_�AQ�����m��A�N>��E�N��\�$0��l��k_n�e��!&���/&��DWS��qO<4�#�+;���Ng�~OL7�+��������x-.����o�÷YZ�2=t��$
v"�_Y�d�h�*D�X�j ���Xk�5����F*�Aؠ���`~C�~����R��'7�5$��-�x7֓�թ�9�pD�#I,�G��+f��`P(��6P:sF�:rilϑ1$�P̒�T�Jy-���z�n�g�����F{�]�̂w0k+���k�UkEV��Z��)@�1�K��P% �aP!�'�XC�/*-���=��}D��aS���/�C�tD.Md��Hf"Cw`�㓹���š��dq2����� 7�xʈ[��}���w �����dvdh���tVv{�M�]]z�V{�����t�U���E���X�0f���*D�A8E*�H��@�,�s��$L%os&�R��akaU���6=��f@L2H!�VqL���D�g��H	xq	���"�O��D�Kp�K�ր�L���G糅���=�O����V*���J�덦��~W������n�Q�4	�Ȩ�H�7���[�QH�X7cq�v�d6�A�A�Mia���6*A�a
��E\�ì���^�C�uj�=�s/�Y@r�$�x|O���2�T1B�A��G{��]�5�x�I�S��$�ͷ�'<�ݳ�t�`Q!^�FG-yo4��M�cg��b�Gv����+X�8�h�"G�(t�J�A�h�s$( f���e�Pu]���Mf�O�D/��C5}�@��3�C2�4\e _=��<7g�����,	�/R��P�g7,��^g��>���@L��a,o��S
ί��J�h2��+�:;�=�~�#v��v�dӌC�"�zB&��@E�(��P�@�4���A�E��oMz�/hl�H1UU��i�x�;&2P�N~�BV.)�,�
ߠ@(	҅��ć�O�Y4�5~ONv��l ���9��%w6���}YWa�/��K�������lz��z�����,���L��4�(w���S�QB���
��$X�����D�?Qݾ���>�6����
�"Z���g�E�<!����A�B8���Wt3��}Fen0����'�c#��@
�4�@�|��|_2���/�����j�gϾt�ph0R�p� �Ȱ�r#(�šU�@����ળ+�B�D�����bG��Ž=�������Flin_�t@C�1�24�'���xd~y1_,�9x�B����fqr�2y0Y̼�{z���0�9:;D\įA��NE���ͪb���\2��Ҩ�}��t�}�ۯ�Y��6�@��C�p�H*Y퀄y�@�_^b~Z�fU'6�m\vR��6�`�1E��cM|�NE��q�.M\��dV���㋓�H-�3�!y�D�@���d�$�'Ʉ8��gW"� #Y��RkKK�1d��,@ �@��I�H���d����H�l�u;�����
�n����d���E��,�L;ఊ@��E	1�3�a=ʟ���N�X�o�?\�(�ܪ��G2�$�� ` {"�H`g`@pHd��j�c���;�r�����x��o�^-�<�����k�G4�o
$Sئ�ѹ���%ا�m�l����9�qk0��A�-�e�������8�Zώ�.nYjw������[|�7�+��i��w��L@�{z�I�BS^�d��^$��1��ꋏ'���+/�M�^�X���ӯf-�ӳ�B֛���}�E ���-�����q�?����X�y��4l���"+��PIآk�z%Ivs�!Ȍ+�?�lNC��l����IM��;�Bx�*	��ҿg�!@�"�ZV����$~����"��M�`�u9��c�����Ls�F�K��&M����{��7�qyJc���/�'����=�`�;�
tc56��R��@���v�b<h��+�%l��fYg�gH � =SSV|O/٣B����n�kzS�|J�n˵E�1�7�����<\oI.�$�UHhz�A���s��+rk����㹙F{͑-ɲ��|6P�Yb�>D*�,�Rs�ۇ�D�ި7�������O�y�9؆``��
�Qߠ<@���x`+bb�H�&@�*3��e�P�$�t�RҦ��MF��y������G9��
��[�}���L<S��D�����$�f^���������]ŷ��Skk�ǭ����x�P�M�}�#d��>���K]x[5�#@J&���o���E�m
����|��Jq��n91�0(BDz)l�Ggς	'bF�w��*�a8��[u�X�F�X���_;����c �f>��g��4��4<bq���z> �˘Q��C��ĕ3w�&�/\� �ɵ��a�{�텂��-�Ә_%ow�
��Q��Tj.��C�냷����<�;<��D��)�b�L��G,	G��ebl5�:��YJ��-DY��]�—�[Ļ4;����yӛ�JlܭJ`�Ա7�.��/}90����D>�,�������ȅ�s���������s��?��]@ؚ_�z��{/�ߐg�Ҏ���z�%W��s^��SM%SZ�?�8���z�՝�`b=�AIV�W;�EP�f��ѦN1�~��\|ڪ�8
��#��W�V��Ugc�*�u�։UTVV���1!"|!ue
�"���͘e*3�!1&�d�ǟ��;�r[���{��>����snam���۷�%ȸIouuI�(MM�U��2�.�w��vC�,���6��Pfo�I~�t-���J��ؽ{*�����2.ߕ�a~����ye[p���gx���^��d߾}�7��_`[1W|>W(�0��f�l�Wyh�H&��dfd���79Mr�����%��ֿ�ٟ}���@>�9<��G@��7����$_-TV$"�8���qSQ�$ћn<������w��6L�V ���v<n��@_Ot�t�}��8
�_�G��rm�Z�+�a�(1��!ro�D�����H���?�g��/◻�_Q4��,��j7����y��(U��TW��� �H "PnڲZS�!���I�5�B`���AH�b+�ת�ԩU/l[��Cf��y���=m���n�,����Y�d;LJ�e��9Hf����?�`P}��'N_sDKM�\O.��,��0 ��x�m{G'32���N����V�W!j�V���=P�E"���"�E ��!�"�E #��o:�\�6�����R[
(DE�+c�t��@
�kAح�5�'�On[_������%�e�C_�@Aņ �J��ˏ��@����WkVn�I��S�z�0��)M��_4VxAydH�r}�Y��~%��"��H%Z�-�"A�,��z{5!T��>��)�T�Z{)���E�	�-�@Uc�hY�����wg,m̿q��Z�p®��e���VF�����C�g��E�-���2�_�(��d;@ �oT~�䦴�hOU07)@��H�]D/�8Hf3+C�ɭ{g2���L��d�
�)`�k��cP�-SDԤY#�I'pS��}vc��m�xc�*���®�42@(�g`���%���bw4-�/��{�2�e1Igϟ�bjn���Ƴ��gEZwBd�g���}?�z������0��;���$�}��)�r2wRx��\�� 2Va:�{8�5��A{8|�2wpe|�WP��/G$&wqnZs��k&��ٷ$T.!�lq�Ȣ�.so�K�E`�$K쮆��������y�ǟR�z&vGL��ˤ?�T��8R����~��0Ť�KC��W�$?�5O��� L�\�$�+Ԕ�Cw7=G�����+f��q���,�-&V a;�U��
k^D2�n�����w��Z���BN›b�T��,�k����!(bH8�!J҆u#,���E�(�T��;���W�3�9�&;��ky鱗�B��ذ��M}�G���2;#��g=*�ԖLB�N����q�Vʾ_:jkB��c�{��r=p���أ����1�@0�'�Jy8�*ǃAO6��>�MlJ�'���?����Niv�2�uQ�xM�'�z�ɧ��u%�#z9K“���-sE��[)=Ykն?k?��h�\z<Rq�ۑ�H?�c��?0���'��B��K B^�'����6��kÿ �!!�?(�{�]�W�c�\[��X�qD5ƴ;��?y�I3-R�Cq��R��'Ɖ��@�[�5�MUU�D�'�{��Ú��eDX�k�-�@X]����%v�^�8�1�?V��}/DS���8B�H� z꠽�q�����b���@Gjj|nN&};'�\/AY܃9����48�ol_�^�
���]���8���Z�‹m�Ơ�SD?|'�'�u|dzx櫈+�=�Ve@��$��՗O� U>_c�'�Q`�<Is�So�	�"4�ӅB�=�j��PB�r.�o��-)�Q{t��_�����q�6�����1*g��a0ĸ�`E �-6�L}��ѣO��R�t�	GSQ���hW�%�h㑺H�h���h���#�#���;�@�W�XY	����'O}��ӏk��$��x��_P�vF�ĕ*z��p�$���&@��m-�*$X���h�ު�
��m�BȲ@h�JG]8��PU�>|����?6@&��؇T:&A4�C=w�ʔ�N0I���^�,�D�/@$�j[1��`�jF;W�Gf�g���*@��{@�6Z<lyyP�6fv��u]~l��W��[U��#��CJ�/� D*	U�B�5b�^ٸ�L�D���)D�
��ݧ�H���ĭ
��Gs(zu7Pl[�ߍ��c*�O�-���?����� _��s�$�o�>w�#V]�����!q.��#��ic���L�̈n"ack�erdu<-��$�n���w�U�*�"�ѣj�*cn�΍W��]�1o���0��w�_*cv�=
����ձ�#*��d��^Q&N�@��>>P��kwe�����ؓ�v"��,�F��g�F'���&��Y�|��.��sm[?0�U�)��anqs�H��B��M�E���A�����}�W=�h�tu�dS�Y��a!J*Zm�*0	p�p8��%�J�٬�!��3Zկ��d]He?M��8ku<�ڢ.aݧ���Ҿ�1Hlv(�ǜ���MJD�~��B8�t{o�=5.t��w�}E>�ܻ�j�d���\h�"ub���w3��j�W�����!�s1���5��p�/���A�K�$6��^&�z��������z	,�L���YX/Gk1%����(�R@��՗�[9�]�p�	��ҹ3=�	�Q�������x6���_~	�~�,E ���~���6j:�h����t�N->�;��B������!�'�@�~�+'���t��r��E�A�`��,y�c��wO�	��C�Q�&�x�,�f`�_�0�X�4&�mHh,jii�ެ�b[�����a���K�]��9!eЄS)e�
�Me�+�8�L���'�������A˄+
u���ww����l���m��H�/�m�t����5|	�ɱ��n2��!:z�E�������H��2�y�(�m�x��� g��ki)��2@�A���?e�L&9$�Îq
�%��;�N�Dr�o�U�9K�&W��eD)��u",��E����C:���"*��AR� ў��ï�F�&`�(��P�D��E(d�����w�
#�I�c|e��ɖ�N",�ˈ��������oڻ�
��b�UVJ緫��k

PI���T*�"&�(5-@�=Zn�ԺX�@�6�;�~�f�+�CG�x@
0�b�no��cJX��Xi%��̫c�����B�|9�>��� B�c���l
���	F�������ܻ=���ʭ�#2�Ϊ�Y���<O�yb�%���")!R�b�I	�Ҷ76q�;�2&T������j��D�F,?@<8 �?�J"�4�[$Z��h9���rOQ���^):+�`��(�.�.]G��H�3vp9��I��6@�kQ��?wW���S�I��P�@8�A��*fĒ;s�����?�)�LUW"aA���S��5=��M��L��	m��7d�R&�x@�Xٹ��Ge%9�����FU0���,�Z��� EB�٘�.�<M9��,�����˜��,��?0��G\�ġ� D��m��4W���߯�������
���~�dbwl��H������C7�8�[-�����}�7�a��t�
����'�57�B�<^-w
k���q:�U}�J֪�D,��cR�,�������:�
�G1~��+���(�>r>[w�����E{���{+bE��16�w搉��P�V�-�m"� ��+�-&&���|��/�;\"��@DRI�a�-r\?����#����MQ\!3�w@��L��ө�wf��qQ�U��{����3��@H�HF#WW0xhX�ZY ��P�܄
U<׭��d{K'.�
c�x��9�3�i\[q��ކ�0����:m���+O
%n���b��K�S�uy���z��/P��JFE��[��Vƽ�[�k��2��YF�|�?"4,��v:ӽ%i���%�{��s���R9Vn[{d�m�oE�"��P��S��
���C��(	�BqD͂?XĘPop*ym����܄�8��J1>�)�V�Fq��P�K�$˔�KE�I��I�u�_�<�/�M���a���~���j;�����yČtq7	d0�,�|d{2�&�̓:;�jna��VK�5�����.��UT����[ � Y��7�9G�!�"�MڰN�"a�+cWL��A��A� Hy���ǖ���S�����Nl_�8X����8=޹��Ή��F_��5b�$;�׻'?�w��v�m����G
7y��We�.NB!�hࢩ�f�(5���"��uH��6r��G$���*"$uW��$ u������ �	k�rQ�&^�H"��<��;�i��*�����㐂쮼z���0�M���W������s{���yQ+�����lTRU]�$�4ׅ'�$Gr6QX�{��]�k�����ℜ�yVdyXYT��P�
���%��`c�,/V���ru��xQ,��ioo���d���5��Չ�<�`Q�z�SV'���Vs�$¥8?q���J,^/�gY���* ��.�x��`𻩞���r�o�m����߿�� ���_�@�p&yr5~ൟ�>]���[����fff�۽�97�@�� �!��u!��)����T���6�\��
���̷��C����Cg7��8������g;�B�'�x���E/dc������[\���V��ous���#�8'�b�D��o^
?Y�xY����/�K}��5s�,��d���M�
T��\d�=�5W�����]�s���������r�v~Y��
����>r3R[��G�"����)�3���7`����E�ڐߦ�?�a��
�:�Bw7�٬j�=���5�[��[�b�yk�_�؊#/N4=&�JayaJ�l�v�^CH�٫4�%�hv=��AOE�]v�g����%.������I��J���=�Sw�8�a���AC{����=\q�{۞�'R(������m)K
6��~�H�^6�\ �,�W����P�JWj��n�F��4.Sq��2�]��Q�nX+�toٴ��Aڦ��d�V�D�HM��DˈP�3�Ƹ�a�a0~�͖g�=���w��}���s�G�BT��r���L(@�v=�j�b��!bԚ�������9OF%T�͹5�1�&����^��I"?�N��`�Ş�$���I����I;��6��89B��l�
Uz����~�}�8��xS�#�<2�y�oz�ң<!7e
<!�"f���˻?x}��H"*9��!�X�Ü�y� y٥�!�K��_��ӫV>��Z��M�&���O�={�
���#b>���l���hMk,�:H!�?���rh<ˎ\Y#�U�V@ӭ�=vp@w��U奔�^�X�F��7 �1�S�E�R�	.�G�-}�F��sl�<�a�oun���r���-��w��Rq�����!�k qW4�wϵ�EfDq��m�(��`���]��Jk��+DT�b�$y)u�Aơ�;�{�r%Dp<5��pA��筰���|�����I�� "��2QʎeeLe~���9s4�؀����
��`	�Lf�s^U����J��u*ˉ28~�����a/��%^��Β�>9ɑ����o�T�{�w�g�v��w߽�]��!AJ���,�2�-��`��M���'V��"�Ⱦ�ׂc�������o?��2��� Q)��!"L�KXt����3�`(
��X��-���m�%دI"�y��W�pVI�V)u����.Gm�8�K$�W�ol����S3�$4�٥�B�[>;0���qI!�K�fV$Br����?x�����^���n;�}�k4;��"�2y����Y��0[Bg�8,rLF����_�r�a��KJ��K��JSY܁.dRQe�ChuI@r �Z#��C1UYP٠�`0Ty^��*Q"a[�ʹ{��a+a'���������1&��<*=h�y�V�2�FK$@�ٰE�Lr��g��>�<����G�~���(�]��W�r�Z�_��Ǩ�̤=�Ve��-hH$*E�,�`|��.9t�φ!�m�<�R[vW�E��,+��]���(*aQx�1��\Q0uӽȽ|�Y����<B��EV��M$%��y����Ť?��E�[�NN	����//����O���/c����1>�w��;�G('Ynx�kz��.��J��^z�����{�#�V��^���y�����=vM�3;�=+j��R+v��#
Yz���Y�@�FqIQQ��g����e��Ә�����{!"��1����@��B!��������`����S}��dʒ~ǵ���a*���Հ�BB����S�S`�b5T���Xv6�sg�n��L�7(@��[|��3��Tc�6Nl��Q_o2��@غa۳�tKKK5�C�����#�����33��ut~��Oj��'�Rs$'	�R�x��;�����@
��:�a	Yg}�
�t�B�T��	�'r�Ѝ���>�����tZ�dH���wR(ʆ���U��,��ڐ��cťbCI��bo��ג�C���[%�M��R6��;7�`��-nA�n0�g�F�z熅cۗ:��]��I9t�Hm��rckwww��AK��\�������G�erǮ�_NzhN����): ��u�v�c�4T���!��&����E0i/� 9cC�h���H��2���3�T��,/@b�p�f
"0��Ii�ϖu��B~9�o�'�.
&���*�g�$t,x��
P����hwQ��È<�ccÈ�q�n����!�s�r�;�\�}�����x ������*}�a��;��*j%�0�F���}qK�<�%��VH�b"��q��}3c{��P��u�Co��kb�fD��\�m�q���AS�G� ̹*8���WU�K;��xP@a�����ׄ�Aӗ:�o�����b�M�Zȏ�+H�KF��B�X��i��t
B],��w�3P{�N~w`��?r.�8����=K��=~�!G=D\.!����z����U2�j�B�3�
�v׭�GM�(�ݠR�ZZc�Z�($�eo� �Ǟ�IA��5��&3���.d�������`E}>+�����s�Uʄ�u��~J&}�=�x �vH9�ݸ`�
�hL ��THxX^Kd���d,��%�VCls��d�������R��q6�u��H&����5c����!� ϐoϪ��A��UF�Ja8`�Ũ��n��NK��?�D��͂�Ĭ/D\Rb���D\v�;���KJo��C�X��4W��F\�
/!���,�)��`���k��Ρ6��l_�"ƧLc�K��8�iQ�~�s�xH�iu[�@|����)ј?����!�e��lk+o) 4sɪ�r<2�@�(�-@9�O�I,�c׵��yf�ӣ2�JW�h��zC�V�B���Y��y�ww��ij��Sd)d��dݓwBy|�@��ڱ����-j�)�^�%$)A�t�;�RL�F�B�Z�#M#~i�R)g��D.p%}�8�d�fv���q(��B&����w$,ƒ<��i>
j��G�!��
��6U!+�����/�������������5�<sUvl�L��4�ו�y[Z�1@܂A��B������!�W�$�OC#��M�n�Tb$u�K�C�;qkGa1 �G;"�kz8*���O�-�]��A�&8D,#m��I5	ƍ�e,o4Ֆ�$�]zF�P��7|��ۦ�&]�1�ed��Dr����f[��!��,f��{Ƈ�����D({�T(=u�-!�@~Y�p�i�OA ��"|��t� ��v�3u��jSo)f�”�l���Ҳt,@P�2��&��.��3�߽�dn�� '�]Pt�8D�A��wMeLˤ��,_�������BZai�R2b�X,�G�[��S!=�Evf�xt��8��6�%ۇ�QA�x*I��YH\3j3������l�B��Di��2
a��|5}c~�-HH��3D$�0�;��������*�]�:�.-Z]��Sg@` �خ�uƝ�Կ"LH�I��F?H�<$Y�D\��ƃW�+��:��3O�[p�2��z#$��q9*U&_����cu�9"�+�������LJ��@�A�3'���d����}�Qo��(D�g�m��ٌ�4=4ZY��Ɣ��&�����aDr0���g�N�o��No�9w4T�*���?���^�J����)�%/�0D/�aG-ج�|�#D�H��F
:�Lr`d��L,�y�X!2��KU���p��̄À�|f�w���k�V�0ub`h���jK")I���h4���?2��q�8�@��bA�9�	\耇3�CRjPz`-��K�"���<6��6��>0�@	"���Ⱦ��������T���$��z^:�Lj	T�P��!F&wT�~a��½d��]�-&�S
��R3?��/ؔAͺD�[<vM�A@N,*���Մn�a�b������L���� f����hCN�69�0!���2:�zg�i���F)�h|K	�<-Xu[[�vX�;L�5�>@T���qx�KQ5�F�@���a_a|�'�_�\xIkV������ٔ��Ī�Ե�IV�`�P��c���&�0H*�}tŢ��.�R�'b!xtis2��Ӿ2�<��3Hqɹ�Ί�Դ�9������9�&=�4
��$M���e��$�_h.�u���n|�)�zQ\�Ŕ�D`��Tbd��8�v�vFs�6���Ps��nLb�>���%���ˁq��!�dw�±-kֿ>8<s��f�?��ϳ8 ��������d�a�N��TWW�*�嵤���+s�1.����<{þ�⭯*
u>�C��B̀q�����	ڀvn���љ
5v5$�J�h�������9"'��Z���!I�_v�u�2��3ʊS\a�<bz�0�/PE�[�b�%4�W�4#2��&vN���K��a����5)�
����No�K��s:�[�-�G�3o]:]�j��2����:tJ���0��G^�%��2>x��nml�prk�ЩY"Y����h�K������
��Rn����ֹ��D�ž�>���Ʈ]���lOg��ry#��Q�Nc��S��cɶ��АOxh˓#��O?��~�ѫU�h��nL�J�!D�VMT�-BpC���2D�@D�#קݙ��8���'h���I���_� ���R�B���#� f��%��4�/�L&���(��K.d!�ݤ�O�.��� =��.�E�;"f�1�@�����j^U��k��Ź�����w�-*p�,�,��a�/"�V������W=1��T�km0<��!��O$�D���S������~�&�k�'��| I�`�hj"�,����5ŵC�O�4�:�.����{�w�����O���ۼ�!��T�6"���k2]�@��cq��s>E�*%b�aG-lÈV�$-lh��>(�tw��m����J���yL�9�tB�@E��7ab��wߛ��A�br�'�̢��Ng�)t68[U)���8��Ʈ�7��Wo_g$��%rEgWG�v#�X�,�)�˜�J��.�+!�/�����ם�D����x�J����$��[�� f;��@:uC���[u�[���?��nI��+���o�fH6ӽ�������;}٘���ÿ,-k�/��_��X\���#9�8���j�u ����tM�ܙ��j��4�o{�y�+�O6O��}tn����b��ӻ��?��S�OY~G�2w�)~��
��� ��4�w���k��}Ρa*�Z��7z�[��^]�,W�b��h<�kjjr�"����
%�8.��-+�<�=}����Ѩ�#�!r���x��L,�Q2i�k.%�]Rm���O>I����K2ݙ�?_�f����7ҹ��;�lP(P���=P����ЍOmw�
"%y��:"a5�\2	%݂Kʻ�/��\e��J*�z<���[�?�dy�x������?v�1�xf��{��w�hdd��9�>1q�=�Dr&z��S!0CB�� ��CdH�O��]=ٞ����.M�F����)B���J�s�S�9F
�C¯�=�yji$H>��@.���6���ʹ.�>R�X����:�d���0@�Rf��5X9��'�[NV��ϳ������u�䌍�6L��j�ǒ3�
O\���\�r9���/�	�Ԫp�:��U�"�榡��,a͛`bV�.3�Odx��e���X~�q�wx�hޜ9��)���{���3�H�&&&FV�v�9Өxe��3@��$$�
N<���PV��Ʈ7v
H��S�!����#�472��jF�,��ũy�D�§uZ8��r9|(
mU��E����#W�@==�"z������ y�1�R^�ٌ�ݫ��y5Qݽ��i�U��Q�_�����yaf��֎[�3'Φ&��;�/�B��/���H-O	�]]��&펤��1I�(��!a�Z��I�-�w��|ܱňj�q�{�u�^w��K���1�`�9���鑕/� ��E�;�y�O\NETP�x���{�P��A����������=_p�]9�47��~�M�a:!����Ou<�c�����(\UU�PY��G�$li_C�ֵwɶi�z����lutE|.���z$z� �5�=j]Z��r���b�ߤJ�����6��E���?~��oe5�}}�R�y�y�酥eܬO����c���j׭z6����M����XF�����?��H:���K�W���9璥�̛w̜�� XL~��𚞞>�7+.Q2�\\�x
����+���R���s�=�����(�
uDR��]|̓����B�K����X�4�S�T���|衇��F㎉��⮨�8����� ���+x fȟ��V_O�{:g��8D�u�U�x���F>qW/0� )/�{�^�=-<*f�{��B���ӏ�|��������pE���b�_~�}��̓A�[�m��G3�t����m���o�=(6պ���Q�ȸQ��M-o]w���"��>�r�`�s��ǜ��6�"n�����B�Y6=>W�oD��)g��g�;�X�(C�
�!�k����ꥌ澮�Q�=��	�X��m<�����8��i�-g�1�>�+�x&if4�!?�|<��?":Ү
|ed��
k{�U�3.~_|��N�wK��&��ƒ��ZRAt�� v��e�L�ڪ�8^E,��Kl"��Z�҂ ��5P�lI$6D��-��D�A�h����2`�'P'u�!�A�eT\��T�U��s_"~�H6���;����|��<44u�����h����+�x�n��]������ZOt��'>���kGwv��S�R�+�~:r�b-z/�s]t�p+Td!�3�Bl�g~��q{��0�{������Z�C�,�b4�	���`VW�ã�׍S+Cc���㣮���$�#�i�-UX��>Y�y�~֞��M<j��g���n� y��pԒ�ԡ#Vs�I46X���ߨ�6�)��]
�D�՞��f8f}��t+�X�#X���=EI\��(s �Z9)
�'qabj�걚�5�g�+҅���7
9梁fFD��`��xgK�&uA��|����c�;�p>��2�&
,3)���J�M���9p��Z	n�8PT;5-�0I�
[�!��-
<�*6n��:����ER�ߗ����z,i�J��0a����,�]�]��}}sc̷���	nc�8@UU,���_w���Ǭ0Yn.* �{��H��Z�1>�_�2��T
�,���^w]�e�~�s�:	'BK]���64"W��n�
��\�`�Aj��+��ڥ�?ݽV�@p_<3�k�c�f/�_��C3L��}���o�N5`+)%!�U�	��l�kY�ٰj�[�4�M--�~i	��70���	L�{޼s|�)x� R�@�!���ӓ���<����W�,d���T'%�P�Rtzb�a���A8�C�<7/m�����|q>>��56B(��a�\��\�Qf��w0[�kI�{��X�Z�[w>Ƌ�?$:�,8h���V>Aё��I���i�6!��a�P��O[�Q����v�,9��'��B�;�/w�.-���nu���
�s�����KO<���oo/^g6��f�ٴ�1+�ml.#���Ɉ�{�^�rBh�a���K�:[!�V���b#)���;�o�?��S$A�@�&�ɛ�'�N=q�p����jf��"���"B�%��A�1K�>�z��}o���j�N��#q����T����rX�a��AsĒuU,�sxpqKތ@�k��	_��

�q��J��ݲ����cJ�Ԙ���0�XB�g�]�5�B�ť]p
 ��^)�x�򋉽˳?������Ca�J�jib~~�ғ��zI|��wߡ0��z�97W�/�i�Z�
���b8Z�m;#9w��\.E9������U���r�#�����I�	bC��됆�hrL�8<uͽ��'��|.��|���7Wp@��_xJ�C�G]N���p�T����E~��\��DǗ+9�d#�eH���W���pl��cU���Tj�R�����ʴ#o�q�|J8���iY�,��F���4���Z�"�!�n��_�w�~�؆�����]X�����.�oס@p�CS�<a�ʺ�n:Ut���.�d2l�tS+lL:?imZ=��(���\�=q�(��"~��
񥂇�2#	Y�ᛯAt��F���������p�O��I�]��
J��b7�B�B<g.�\T\��v���c�1:ҕ����)�M	�3��МbP�3:#����۩�c�̴N��UX�$`K^���=8}//Ļ�yZ1'h-���	�w�6b�h�����[���0�\�ua�TdՒH�0E]񡥅��4Y�ub���3C�SU[{#x1'�R� [&��ƽoOo�o�[G��\0I��
tyN��&�����\�HxK���j�����݂ƶ<��@�*�$j�Dl{��v[uR�v��>!�^Q�\Ȧ�x��L2k))
��Ǡ�@�U�Lf�(����i�h���i��5:7286�no��x�KHDj�������V�+�ӗ�^�v��B��HP�jlD�DJ�u{�"6RF�Q���x�<������{����#�#A(V.}yqhvvv�g����i�.
������['uz9mB�4A+��ŧ%H�{Vg�r^�F��Ӷ;-S`)�{wGZ(F���\�|3\�����C���-7N�"� '>p�$Fs/> ����u[]o��&����(�A��~��t�Zq��c�#�Q�<*�L�aw�(�{0�����8��\†/�c܉��� �#A~WI8������?��I���2�T��L�9
���d��$aL���-b!*$��mr��p�..C+�*�eS
P�ׅ�3C�C3�}��Vp$!C���RU|K�~�!4'���x����aR^kj*���)#�
GҼG,�š��
���O	�Ǖ��F��z)~,B�=�@��u���L��|Q��Ex@t�r:��(���dNĀ0�	a��L$ծs��N��P�vfؓ��Jyжx�H�(!�{��m����ӥTy�ąD�\:�EP���Y���������Nr�r��
�p�cl����_��	Ɗ;H
"�x,,,LM-�kI)E*�e�����?|��hVG��Z@V8���'+9]�=����l���pᚾ�9Wq]����T�
��i3�����.U3����lln�% ��	f&w���j�V(�A��ͷ_p��߹��v`�����
R�lV�:NJQ
F$�JB��aը��y�K�Rٝ�	)�\��[9>E���՘*&$D��qi4��R�ۇ0x03��!UU�VK=z�Ե�*���������r�]?���	���R���n�`lP�N�M	�O3a�2��)x�#�A�Xgi�y�X^Z�����h�	cCI���Й�O?���'�tc*���U!x��=�Q��E��!Ͷ���V�A��䰘Xb' y�����
.j�|}����$�~ ��.'�,@��Be̕���6���?h� �_��N�������1�8�e�2�==�i�0����P��N�7���e��\e�^�W�
vtu�3U�&��H}}#�>}3o����Ҽ-�?�p�C;r0�)g�
��k}ꐥ����X��g!�;�5�T��/2��,.~�Rs��ˋ3혝�9s�C�6��$tX�'&�LxZ�(�b�*-_̥�Egq�0�W�hD=e�
€��4�}K�\qN�B��b�4qaJZG#"����n�!�%�`�*:2� ���*z�L��0��c��V"��b'����k|�ACHE�X�0VWdp��#Z���o�b�ړ��eIm�/=]��Ҹݕ/†@
���Y<�Al8ڇR
u�|�P'�����Q=���OG�9�x�B��=��V��ֱ���m)(SV�����>D
#���^~qa�X,-N�j�h��H�rM����93�]F���/� HB�\����%�C�J���FgE��	qCӴ\�MMe(��5ĆX�eCv�a��Zc2�s�/9>Br]T&�`3K*���8��W>�����,�߇`��֞�n�€l�Q	����(�P���a��,$&���I!��11�EIkvn�XdntuN�]�GB���3��CU��lAE@�5ZqԻ�x����TV/„�W�F��ô��S�Vم���G0r�1�p��p	3SK��͗�4�����\�x�5�RF�်,O��\|���#������n�X�b�އ�ڜ��26Y����ܜ����r�ޣ,ιSnZLi�kY�O���d)��*���A*������e�@5��l��X[�B7mW��m�$Vɉ�s�>C%$�t�z�N�JV�P�R��S��⦇�"Cd��z�[�[ѣM)H�ل���B���YɗuZ!���7h��
��������C�/�{��s�����9���ۥ��E�xB�D��Bb"��М����%a�Jh���uz��pf�̅
��F�zo�Xo2i��)���,
⤺�����@�����1+���3����+�fs@�\i6�5�m�ֲ�@k+�@Q��
�)��Ԃe��?v��Qbl�B,&[
��ba���4�\�x�f\%ː�r��\5r�����L���:*���Lt�\�dy�+w�'o�I�l�#�a,�p=�|���|��x�#Is�4D<*њ�$^
�����5��t��xܹ� <2*�K�Ќ��SА_��)!j��$2�˗��(��L�s$2��,��RE1�y����i��&+�d`��q{�GT�IA�����R��{��M��
�l��rA���GP�9}0��7Vb~<$��X7ֶu%�,̊�(����3a�2�L�^��6]g6���������n�D�@�
�st��x�*Y>�4е:���v�7b�70�q!19�~b�Ix^1J\$��l�d�-�O�C'Ӎ��Za��.-L�dϠ$�1#X���Yp:��s/��j74ȃ�.P�5_�|mzwr=�A�ይ%�V�x>B�id�lκ�9�ŀ��[�i4���	ȁS�6����fk(�5@'��@��w@4�(�pG�E#�.��M�x�e�Hi�vM�Z$d�~�e�iPO}{�b;�p�j�QP�t����CLQ�]�ًdjUz0�ޣRϹ�"�qlߤc
&r���n6QU���!������� �Q��P���E�$=\��U–��ዋ��"��p��|v~~�����s��}�K]�#�d��˶���3j�T�s�є����K�6*";F���������ڽw%D+�u� ���n�=(X5L�t�]�� !%4A�6 �`G��Kgg�t�NVR�X�/K�Ym���ٶ�g�ڷ�,�HMە�y\F@�VMj��}ƽ�(`~��*�ç��2d��ly�J-W�U2��.�9F_`�I!��S�N�2�l�dJ����p���H�k���ߨ&L����s5nQضS0_��AF=�^�b�����Ut=՞�rA�������9�븺�ό����S��Et�q��zgnJ'>�� X��M����u��4r}�:�R��&q���$<­�U�ǃT�F[����T����-��<�A�˶��;[�d����h�޾�ԉ��L(j^�s��usn���E��9����`�L�����ەE2��\��q��������������UD0�x����'^>�[,�~q�A�Cd)�yZ�N
Kx#6�U��w����K�L@_��3�ž���S�e�� "���<�X${8��xЄ��FO�T*�Ȉ�r���iB�͠I9��75u��GSy Q�;v�~�H\�
�)�|Q�}-�C�С@4Hh��Ғ7%��rg��
RRI]t����i��X��#�40��y��,B(k�ךg�5Z�^7"����
Lf�D<ʐ�\UQH�]%gE/�{K�O2�W��v�Rr�rxo������Q�����|kV�샖D�{3�H]p;��K���>:��8� ��A2�����G%�z���&?H�Ţ�ʧP �B.|��tml�:@��$�D�X�p��8�Y�<�lM�G�<A8I����cH�
��G��J��k�����YXG�����7�N'�Ƿ��xlZ{7G�Uw���>ȱs�!�Dj��rvj�s:=��=��\�,ݞ������.Ch�qRqq@ l2�c�*u^��m9�,�ŧ�*�;��b������ɢ!-�l!+d���Z�\�VWhmC�G���TA�d��r�ԣ��9Lƌ:�:Ǿ�<S�ϑ���Я��m�]S�R*��d9h���rO���Qi<ؑ�<�>��m�n��N� �a��1�E�LvMT3��|8��5�ʍ�OH�bu+
y]Y���ƷBA���x���{�n$d�V��L^v\{T�)�۟v8����!�q{:����e+T륫�#3���ƿE9bu
�#�O�s�z���~�'Q&m
��fY,Lh��)fwI��Aξ�6��7��C* 325C�|�
@ଫ>~��W����ɞ����\��2t�ů��
6��Ap!��DOJ��6#Ó!7]E}r A���hIKxj�@"DX��57�n��'CBN���WdzL�꣥�YQ`e"�l�>ha#�t�Y��D��t#����%'Ə|I�_�S�%A���x���*���!�[LM���~?����{ƍ�g��sД�~��Q]ա��0�K�]�`�,��z�C9��<:��ʎ��x������T)��pZ���}�9�9�<�����݂���q�z���7e#|�dg�ܸ�p�=a��M��_)=ZB<���-;=<�	��~��O�0��c~�,ihe�{"���B[�s�O�c����tG%�}�m�HM<r�U���7��*�H��5��L��ܤ���v,{R��d�Pv�+	�!��4|!D�=��Q��h@|�{�v�ͯ?�aˈw���l�]tzŠ����@O���>�XZ�+�Td�&�Dž�59�]�/#�۠0�]C�W���eǑ3�#�"/s�l��)\RlP�SS$<5<0uO�\�e�w\��;�	h(��V� �	��@>F�>@n���.�p�S)�ڷRY˗������6�@HG��LD��1�z�`@�r8#�Y�s`ϙ�����]˹d�3r��D���&�Uv��Pe��Ȃ�U28a��{��V���c�C_���Jr6��B^��T��U&�����V~[+��/M�.�/����;�]�<f:pM�`����/�wI;��!j�]2x������7ܠ�
2���y���7�C���ε�q;NF
3= �怒6k֮�g��
�7Ew��n�z���UZ�ld���MT�ɁL��z��Y[��=��Gg����׫���t��6�I\�T
��I||�B�Q�b���
L�D�p��:$N��
�@[X�$��Vu�lU�ӗO�|��2�w�d�|<H���9�}�9�[w#d�Qi��.A?�=�~P0{�*��-^��M��7���{���{�!�8� �db����7�kw�Q�2kU!�H͈�FQ$�T\Hp� �G��4�<Eul;�5���.���E��E޸v�ڸ�"s�aQ\&����?U�e@�F=�,�[|�E���.Yه `.�UR���@H*��l���ڝ;+b�e��dSn�Y�<zQҦM�Y��N�����q��84�
����m��<a�~˗gO����s�z�&�|H�x)M�Y��V5K�i��`n�!��5�V>�e��Tm�u�s��]>v���'��ߩ�z�h�@`�)�AT.80aP��Q%k���T�f�D
G� ���#*fG�F:�	h�����@8F��VcM$	<��5"^�|.��m<j+���FPp�z�	vb�a�f
�Зb�y��Q��x�z9J�~"�H�D��!�JV�S|��=;�폍��x�M�7�oK��Fؼ�(��D�`��Yzb��2B܌��ôm��MQ�A2y�৳���|�*��+�?4P�lny��/
���Gb���nT%d,���/ٿ�\+(�;�����W]B��³���/��	u�q$y��z=�\@	ΐE�AJ��Y_Ȏý�lIl=�Թ3.*2&�@D�k�V�A��#$r�ڍ��EV΂@��{���������XjuP��7�<3�Ƞ�@���xf�H +-b!��JZ�i��ؖ������LtД�1!�W�ݙ�&��Gc��U_�z]r:��N>�C��r�,#6{ z°o}%�[�<��W��v�?�]{L[eoPZ��hW�M�nŮ��v%��m}�m<eΉ����Z|�Nq3Ei�*3�h�a筯V���b�h#�D�t1�H�|k|���|�����^`���=��9�R���esh?�_'�Arɞ����P@�A"n�~7X����_�s'u�h��ÓV$��֚�|�:�qdA�O��i���igeAUS����PPP����sm4((B��#������	ؐoh�z�^�R�9���Ba9}��KYܝw�-/e]w�{���HF�3��
�3>L+B�qZ���F�h���勪���E���fk[H�iB!!�J�Dc��exPT*���4m�>x[5p�ViyX1�0�+���qt�βS@����{n�4�on���7�,9����t�P]w�Ŕ�iq�j�����"�s_;@3�1ʼ��_Nj��g��69���nl*6Q��ψ)<�M�����+򿞴#�s:YM�؃N`2��B]\�W����"e4�Э�VM;-�J��i-�^��: z�Ia���Ρ�I�!����U���!P�\d�N�Q�wx� �,���[{D@��]D,�f��ؔ��2��K"DB��*�E����e
��1�B
�Bi_�5�)�h~�/���C �!F�s����O<w��MW��؝>"�6l��q
`�g3�%�Oݡ�0���	k"A	�ן�~�b,/�bM<�lf�j�����6HPR���<�
v�T�_ф��iq����[�^P`']�Wq##bwhG?���ByV��^�%��[t�2��f=���h ����v����]3T��JT,�Y-�H�F,eQ��?�-��	�+�˽��:"!��TSGDp`��F���|����R� <%�p�H��v�L���2�	ǹa��������M�>��S7?x(g�>�n;�N�Z܎E���.���K��AA�
b4-;~��O����$76���V}���c����@]���QCЙ��Z�Z0ԜAk�p�s����M���h�@�dc9H�@�a�e2S���s*�R��=�*G��b���;�������i�{�P�_v1e��)ꛃ�����u�q���L��-���5,oBaT�'D2#m�>!�5�J��l���Jå��9	;�+���*��@d�y�kY,�Z)[D�L���#�-�]}iɵ�J.�q��dE�����Μ���^�Yʨ!�o$���h���20�4��x��&>;[|��Ͼ��1�a�$�|��T��-r��-'��y9��h9�Ŏ/i��*����P�^!~mO���\�i��"��2�a������C�-���a���gT_؆�.���Pʨd��Ci���H�r���D�<MB�P�QN��f�B֠�D�
Aa��IM!�H%�@H�<�����,Z��'���.N^�i�r^�l<����U�V�#���a���6�`K�l���WS~D�R^�e�����׎?���'�E,�B̈́Gs(�}��kMM�%�ጆ$�h@�N=��G�=������G�h���MO�֦�
�?���rNge�Vo)�^H�8k���m��0����j�����6}Ί3�A�n�G�)3<�7�N_�
�� TbG���3���'p�H���d|z���E���b���Ѐ�XS7$��Tb*:5��lB"¼]B�Q�s�*+
�V�=f��rz�Ae�����*�����?ߍ,a0��̋��y����jZ��.,kt��UXi���7w����"ཡ��ڠp�9(1%�<�'Ǔ��yPj���z��#�5����B�}��oLY'r~Sh<�U�ZgA�Ao��jݼ�N�����@�C@���#Cv�a!�ãֶ�ۖ�#'
�1���lV8����V��a,�ʸv…��PV,��P�6&��d�x�_���WO]�T�]�x3��S7L
��!�<	��P��<�L�ݠ�=�Ҙ�{أ6�%E�f̬�yZ�_"�=�<2#�ۛm���y���_��~���P�woZ}Κ�&O>{Cm����X�EF��<w���5N/[�j<Z�.y�i�r��ѩ?�x��~{$
:�"�/���r��;쒋,�S���s^P��A	U��
�=x�#�t��s0t�Q��.o>P �[Jq�O�I��N�G埿&�z�t�`��y���v��a*�a��7!1ڗ�wu�
q��Ȍ�8�-A
�>���0�R3)1[5��w�ٽ��5[��>�j]�KH���݆�5�L�khm�
g�9���眱漋�lXs�'��ٸ�2,��_u�5%�]vō[��pc�&���)C,�<~�������j�8
w�jG2٘�7 ����~;��x���ڔ=^0Rj��܂�s��A;�ZRZĿ��C���"̢
�tXNa�]eS+�G���E`���n��u��ꁊ({h������3!�c/j���rx��-�~�Y��O�6y�.��cE����iFYvn��ځ^$��`���a�7�\�(��\�,[r���;�t/�8qb���,�H��n�hع�R�r�8r�F�&����b�:R�ڏ��]����?5O�9�P�q��
8N����<wr�����f8uH}�><e���r�y;��w�}��d�
��Ud�z�(��7MM�B�/Υ:Q΅}Z(닡�h
���˶���fyz�V���(� �h��&�%��D
����d`�k24Y�(9K.R������s���)�O�wo�eۃǏ�6OB5@)�?�ZXڑ����1��``��	ʋ�!�X��UMAN�%�18��CY8��s�����+�ӓB�x���GmX*񩽸�A
0�E@��0�w��#s]��?��/��)� dߛ��7Wx�p{zH�ó`�����eT"c�IF���d�3�t"}$	z�S3�s��\^wt���L-�X��o9K�Y�߀��#U�����MJ��&��L�Sei�,�3��!<P|��̉��UA��(p�3�@ �����x��R2�l�����39iG:��y��'z��	4K�!t�u���@{檏 �k/�y	?L���l//|}8!�6��O/�ft���g�K��$�κh����Q�%����-vO��^�}٪��M*��;�f��.�����G@�z����מ��eXP0��
���@2OZ+�+��#�V�-ƒ�߈���'*ܤ�\���r-B�BFD�,���hFF��Tc<�C\κ��B�����1VTJ'��bM�]��¾Ė+�ӛ���.�?G>��љ�3^I#j�z@4gn/��xW��D5Y���:�W$�^\w���G:�+=59���P);���h��@�J���z'�p�M6�r�ʕ�Vᰛ�����p>���޽b���������xz�5l_��^uɭ�S)�G���Z�>|8��0�[��'�
�Ʊcv
2V}�
�|"��[$/����h%�9�"�ժ�	����J�4 )�Z�J����ii����/��H�M�II�vE�'�YHB�$�
3���:1���W�|I��8z"���u���ߟH�j�n�
1�P�RNo�M���rQc$w�9�ҕ�
E}c$��/�B���O�Ұ?��|�C$EEO@�7\���+s�p�g�~|Abn��Jl�kz7Wg6}}�D�	LEߴy_��۪Q��"PN802�׬04�2>�D�}@���9fq$7sic?R[<������;��S�h�ߙ2@x�BF��������x�!��wV����y�1�h��<�����*���(�6�.�RApJf�f���R��Y(�u�Ό�fN�H���P4�����օ<�Ff���B�	cz3�D��Pg�=L��[YRFn�P���U@"�eÉD��LT�R˔&�Ҍ��Z0kd*NaTp�A���W���
��>/�:��Ƶ;�GD��@�R��vh&W@1����n8�`j���ȳ'!5P��x�pm-!S�2���}O�|�F2����Z��6�N\//p�܉6�Xe���ʊ��~�"�W}{ ��3`�f�dI;���u��1�	��.��<�^gz.�Ĥff��7�'�;��g[ba7�I�S��<����鄱���Z�Kx�!�I�Pg������xHJ�D�S�M!�٦���r��fT�?�Q�F�L��h]��T���'nXV��ߤN�ǩVu�iY�v
r�=�� ?,�ɵ�� �R벊Ec�� ��y��	�;|��HE�
���kf�k
��%��j�WUq	YUc������-���Po�	����D���-�̌˞`��/K�.��X��Y=���b�w����a���j���r�E[F�΁�v���`�/��{��aA�;�J*F�e�Ч(��T���I�&�DmӘL�כu5v�1e+�R�F�0�I_�+0UXm~�
�@������7��d�;"L�!��脆Q��.R.����iy��K�ǔ��I�*P���0��k�+��:��lf~��/��;����ˢ�]���p��]��V%�\N���R��g��#U���6��&M�RA;�s���3@g�q<|	�Ak�	߁���̧�=��Õ���ٲzE�T��J��A�!�pp'��20,,˴�!��;;{�-h �ۉ3� u	"2QPSH�
ruJ���=�Rf�Za����\���k<�G'b�!#/7z����B��Н��3@�$]cm"�t�0D�O�k\1��z�\�5�U�X�z�j[�N�M��L��n�7���ޢ��/d����ͷ�=u���[K����i���g�^��Z��w�PP��Զey� z�����9����a����%���e�maV�p0(`�2Y!Eo�oK�s�[�/#����U睵��U��(��6���LA�Xi��
���&�TW �C: �&!���Dd�8I$Y�P�Ti�J�L�+��r
�S�
��rO}��r4�(<g�;��T��ͅ�`�.�O\�A7��R����0�D��[:қ��SqbXW��1n�lm�t4��\V+��j�7,*�>��<��z9�܏a.5\��頶����c�eC��z�}[�Uy�a�ɕf5_��=l[29��u��ߓ�
�l��3������GV�l-�N��N�,��?ɄD(§�����(�"�/ذm�M��W�i�<RZ�@c�o9�?�T�l�ٚD"�V��_�9�@6
�PTT��s�uf�Nb�Y�F��7��j�S����Ma�ljKA��GA�*�Id�]-��&9������C�_S/ˆ�˯�NA3�D�``.�I'7N�i����v���
T,hm
�ݵ�.�� �b�\��%l��M�?�V�D�@Y�������;{N�/q�[\�p�U&�9��Ďִ�\W�m������D�JVYHhZ�ْ8�Xt���Jy��[Y5��L��Hd�Ly��p��
��(A�ܑ[ל���u5�gWb��T�d�|+�g��8&J	3p,�ZSCCgQ(׬��
�ْ��+���t�x
3�0�HfT���Y��kP��k�]oR�\�n���tv�C���}��7�Qr��rB��`����z��,cˮ8�_�T�������^g��wctH���*��M@�1aSX��#/M~<<�
+@оu�_V�M��=��S�:��yI����%��V �s���ݴ��O�ȴ�aQ��h�$��$�Ѯ���Nҋ?�>NH��څ�c�e}e�,�b���ܺ欫W�krmXnv���=>fN�?�'j�B�v�n�/��A��l�}" �V�
E欆�\]vQ��,5)M�G
��dV(�7�J�
�R[=1�A��V�����0Wmr"�F���1���O�(|��kN�wFƵ�4��V^�M�mB�G��I���]��;V���,��PTT�-0R�&5%�Hz4��4&��t��1i���_;�Pp��	]��NY>ϭp�w�޼�
lyo���9p�г��q�b�)DJ�v�I�쁎�elEf\��������Y�Q�rW��0Z����C����s֯߸��ѵ}׮��yC�
q�~�v\�C6��A�T7�~/�cVC�Iڠ���5f�	۴�]��*5�$��&S��)�dTK�f�Ԭ���C5�F����e7���3{ܞ�0�ۊy��֘#�����n=�&q�����.�$/��Ȉr-�R�	W08�ڠ�G���`���\;�do��C��MoPU�to�5�ކɂ���1b}p<L�
'��17����v���i���ߓ�6�gh Σe���E[�_�Oaq��0&K�3hdc!*��ЏP�_}��pB+L��Wo\��ez�]]�U7t�V��\t�A�02�%��J4�\� �`Ic�͌�
�	YR�4۬�j�f��K�6!KMC&?n�5j,O5�p�����(`��F�6
_N�u��ɯO\���\�+����^���=��7ɪ�8�c��WU��o��������p��^Yl@�g�>��+�Mt�i1�"�/�����\�o�=�t�11Q�p&�$�ڶ	�Zl��*[��~�9`��h�
��y>��{����δfz����+Bcq~@���6L��30@0H�Ɓ��6뺞��f�ۆCmn��x��"��d����CZ�m6
uH $�Fu�F��A+t��@�Ԕ�e�d�bSv�9d�	h0e#-�
�C�yz�Ƭ��$\6�Z�F)Qn�,�ɉ����(�–�;��_'�߻gn�W���D�0v�5���m5v����
��[����|;W����g���)Чf�Q�����/��~�R��_����q���l	�*qVأ��1]<�=���*�p&D;"�rsSE���1��\��'ya~9��t�t���z�՛l�V�����{_�wx ������X�U�#{{�;�jun��G�`6�Q@K���\$�H��	�,	ZY�in��,�6�I�œ	�σo��`�.Wm#
2+N<�oh���C#�;����E�6��ti�*�#x�|0��+er�9��:,l@����f����ߵc,ւ�4裇E@���G��~�U�r��d��O��DA�[i����.u'[���H5�7�e\�i�OA1�Ef�E_�<�,��gNISpIkP����ž;0I��`c����={wv�v 9���x�oA;�KT�$:��,|�	p�H��+���J��皲$�"I��H�B�.U+�B�P���D��
��=&��A#i@М�E��F������Y�J�ؚ��O>闶n޹	p�PEak��u�}�@X�P�XT��m�h��x���6���LJ�R��r?v.�;��޷�ۺƓ\;bLy�|�z����<��,��6=��b�o�ry=f��hʘv����Hh���6/�{��,Ɂ�X��s�w��̕0�뱄J*��u�F"��kY�u׸q���2��YB���b�� �[*bb8�B�!W�̊\4g��H:�\	Q�B:u.8�I[�T�جl�L�)��l�̈�J�I��(�w��C¼�S����J���_��l��~�����W��sVZ7�Rqr�5����P{�ɢ�r�MVG���mт=�������=p�雞۾"�;�eJHʾ���N�V���&�q^��YK�e�
�MG�!��#/��{�?R�O)am���e���v���Kp�ox���D�� DK��[^��ؘ�[��ѩ�S��C����V����|�b��e���pQ2�yӎ�[ӘIEND�B`�themes/draxler/v1.0.0/theme.php000064400000001762151213255630012140 0ustar00<?php
if ( ! defined( 'ABSPATH' ) ) {
    die( 'No direct access.' );
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Draxler extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'draxler';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct( $this->id, $this->version );
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style( 
            "metaslider_{$this->id}_theme_styles", 
            METASLIDER_THEMES_URL. "{$this->id}/v{$this->version}/style.css", 
            array( 'metaslider-public' ), 
            $this->version 
        );
    }
}

if ( ! isset( MetaSlider_Theme_Base::$themes['draxler'] ) ) {
    new MetaSlider_Theme_Draxler();
}
themes/draxler/v1.0.0/style.scss000064400000004557151213255630012367 0ustar00.metaslider.ms-theme-draxler {
	
	.flexslider {

		&.filmstrip {

			.flex-direction-nav li a {
				width: 30px;
				height: 30px;
				background-size: 12px auto;
	
				&.flex-prev {
					right: unset;
					left: 30px;
					border-radius: 4px;
				}
	
				&.flex-next {
					right: 30px;
					border-radius: 4px;
				}
			}
		}

		.caption-wrap {
			bottom: unset;
			top: 0;
			background: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.7));
			opacity: 1;

			.caption {
				padding: 30px 140px 200px 30px;
				text-shadow: 1px 1px 1px rgba(0,0,0,0.3);

				p {
					margin: 0 0 15px;
				}
				
				a {
					color: #fff;
  					text-decoration: underline;

					&:hover,
					&:focus {
						background: none;
						opacity: 0.8;
					}
				}
			}
		}

		.flex-direction-nav li a {
			background-color: #dd6923;
			background-position: center;
			width: 45px;
			height: 45px;
			background-size: 18px auto;
			background-repeat: no-repeat;
			opacity: 1;
			top: 54px;
			box-shadow: 1px 1px 1px rgba(0,0,0,0.3) !important;

			&:focus {
				outline: none;
			}

			&.flex-prev {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%23fff'/%3E%3C/svg%3E");
				left: unset;
				right: 77px;
				border-radius: 4px 0 0 4px;
			}

			&.flex-next {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%23fff'/%3E%3C/svg%3E");
				right: 30px;
				border-radius: 0 4px 4px 0;
			}
		}

		.flex-control-nav {
			bottom: 30px;
			left: 30px;
			width: auto;
	
			li {
				
				&:first-of-type a {
					border-radius: 3px 0 0 3px;
				}

				&:last-of-type a {
					border-radius: 0 3px 3px 0;
				}

				a {
					box-shadow: 1px 1px 1px rgba(0,0,0,0.3) !important;
					background: #fff;
					margin: 0 1px;
					width: 24px;
					border-radius: 0;
					height: 10px;
	
					&:hover,
					&:focus {
						opacity: 1;
					}
	
					&.flex-active {
						background: #fff;
						opacity: 0.4;
					}
				}
			}
		}
	}
}themes/draxler/v1.0.0/style.css000064400000005627151213255630012203 0ustar00.metaslider.ms-theme-draxler .flexslider.filmstrip .flex-direction-nav li a{width:30px;height:30px;background-size:12px auto}.metaslider.ms-theme-draxler .flexslider.filmstrip .flex-direction-nav li a.flex-prev{right:unset;left:30px;border-radius:4px}.metaslider.ms-theme-draxler .flexslider.filmstrip .flex-direction-nav li a.flex-next{right:30px;border-radius:4px}.metaslider.ms-theme-draxler .flexslider .caption-wrap{bottom:unset;top:0;background:linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.7));opacity:1}.metaslider.ms-theme-draxler .flexslider .caption-wrap .caption{padding:30px 140px 200px 30px;text-shadow:1px 1px 1px rgba(0,0,0,0.3)}.metaslider.ms-theme-draxler .flexslider .caption-wrap .caption p{margin:0 0 15px}.metaslider.ms-theme-draxler .flexslider .caption-wrap .caption a{color:#fff;text-decoration:underline}.metaslider.ms-theme-draxler .flexslider .caption-wrap .caption a:hover,.metaslider.ms-theme-draxler .flexslider .caption-wrap .caption a:focus{background:none;opacity:0.8}.metaslider.ms-theme-draxler .flexslider .flex-direction-nav li a{background-color:#dd6923;background-position:center;width:45px;height:45px;background-size:18px auto;background-repeat:no-repeat;opacity:1;top:54px;box-shadow:1px 1px 1px rgba(0,0,0,0.3) !important}.metaslider.ms-theme-draxler .flexslider .flex-direction-nav li a:focus{outline:none}.metaslider.ms-theme-draxler .flexslider .flex-direction-nav li a.flex-prev{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%23fff'/%3E%3C/svg%3E");left:unset;right:77px;border-radius:4px 0 0 4px}.metaslider.ms-theme-draxler .flexslider .flex-direction-nav li a.flex-next{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%23fff'/%3E%3C/svg%3E");right:30px;border-radius:0 4px 4px 0}.metaslider.ms-theme-draxler .flexslider .flex-control-nav{bottom:30px;left:30px;width:auto}.metaslider.ms-theme-draxler .flexslider .flex-control-nav li:first-of-type a{border-radius:3px 0 0 3px}.metaslider.ms-theme-draxler .flexslider .flex-control-nav li:last-of-type a{border-radius:0 3px 3px 0}.metaslider.ms-theme-draxler .flexslider .flex-control-nav li a{box-shadow:1px 1px 1px rgba(0,0,0,0.3) !important;background:#fff;margin:0 1px;width:24px;border-radius:0;height:10px}.metaslider.ms-theme-draxler .flexslider .flex-control-nav li a:hover,.metaslider.ms-theme-draxler .flexslider .flex-control-nav li a:focus{opacity:1}.metaslider.ms-theme-draxler .flexslider .flex-control-nav li a.flex-active{background:#fff;opacity:0.4}
themes/draxler/changelog.php000064400000000115151213255630012132 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/bubble/screenshot.png000064400000423175151213255630012166 0ustar00�PNG


IHDR�x|GtEXtSoftwareAdobe ImageReadyq�e<&IDATx�̽=�lۖ%�����<��^���ha`���$<~
��
l�-$Zj�D�%�BE�D�w�Ɍ��s�1׎��8_�!��ӽyNfF��{���s�1�/��B1��1|�b�/��3�~�^?��~������z���{��+���0b����^�������w�~O��$~�8_Ӿ�W�{��K���~����)ۯǔ˩ĥ�s.K���ZÎ{6��v��	܄�'CN9Dz�SI%���Z��tZN�)��{����e�-^�f���S9?�e9��f��Ov9���=��2Ne���fo�p�KXJ>ٯ�l���(K
yt{(��^?�hjoQ[)�I�|^�:�����Su~���S�~���7	�>D��>F��S۷��[퍷?���r�Mkv+F,)?���b߉�!ݾa?_�}Bn�^+/�>"~?�6���A�����횚�r�k��n�"��DZ������V��n��<����Ƹ����|��9��޺�-�Uإ%�t���.vy#�c��x�{����h�L}�g�}��x���b����z�?ӻ��f?���F���X�v:�	���+��G�
+�.�>U�}�%��O)�x{Z�%��^�B��KA�[�s�q��9a����f���qu�6q�,x\�]a�w; ��p��|q��X-x�|�s�}���2l�Ͻ^�M�
KQ[>ěߍ�6܄ps��+_��q!��x��~�7f|!��^1_qFe^��k����/�xܙx|��J�-�bژ7S��߄O��?YJ
l��{ۿsǮmI`q��7��+�T�j�&�o��Oiͧ������{NK��i;���پn����a�����b�.�V �|]�j҂Hi��qa��}�bA-�"z��j�rY���wġ���Ab?�/�+n��:��Ŷ�E�l�g�-�j�1�m�N�bw�b�*v�}�n�l�*E��HY��d�q�}e1!�j���5����w��"”EW�.�D��-b�G��x1qD��!���F��'���"?����n�>��H�ծ!fn�����y&�������^ �[�i\��_�5X�����D��Iy��b��%����G��T_ i�x%��ځ��O�%�K,w�C�+.��wōF㖰�]�{$�.�$�^�.?�%"��?��q\D�a�_H]_�wq�n+���l�3��8�����D����."�wc�9�^�6�(G:~��<k{�6�1�+nc��+|G�vJ�Z�[Ï��m\��N͔�����x7O~w�6��j�d�z<��������~�Q����d�+f%�:����
�Xd⊳�m�h���`e,�*�x����֒�4,J�x�9q��v�	酅��
����^�֢E/[���d���!��m�h�'�j,[��v���d���[�RR��b����V
�~7�b�ӑ��V��^���v,-3��D�~�+�nv:�^
�e�2X���ni�؋}�]ȷ�S�xQ5#��f6=��
���k<�jyQl�X��G��9cyD�n�K�����w�����cZ\»G�6��l���oE|3�QP�Y<���0���RH�l,Ѷ��=��F��l!q���=c˃����1f:��'"O	��7�ٷ�X�_��X�\2X�=����#1L���x��U�箭�m{�F��CĖCf�3�y�W0=��%|.���{}̅��_^TE�1+�^o��r3lE��3C�}Yw���D��)������#�	�~�h^�
���C���/ŷ�5Ų47�h�8<]f���Fo�6�l����V�.W�[���8Q|5�<��P�x�|�ȇ"2%����ct.}����&�3Q1ګb�&D�ָx�[�-�V�p�P�,v�ސ��:���U��#w��螽cM�X�o��!1�B�����,�w
��m����d	;}�p,�:���슐��ſ�������M�iG�����j��9�5��IlE6c�K�2;{
��Ĩ��� �O��~��"��QN#j;�#���TD����l�7"��� 5��Gd)�7<=U�}XlF&x=+��� ,�ٯ�S��Xd�b���"uU	��n塕]UO��1q��E=�>���pM̈�)x�]�v�ᇼ��7O,��Q�<8[\���@0jMA��GJ|��[d�@�'x��a�	�d���p?�6�8b.6q��#'Gѓʫ$�o�[z�<T�u����,Dg,
��p����tŰx˾=���UP���5��NG@O/j�C��t�$޼�k�7o����I=3h�^!_��e]>��٪&[ {'h�'X�D^�箻K<"aY{�u����D�Xr��U=����v	[�K�p~D��<�*ņc��mC�
�-t����-J39ؖ�i)����ap[:d�]V<�J.�$�΁#�b(1��p'ͅ��������<kOu�*�#fT����UF�20��~�PDIc����b�Ϩ�&1�w�uwX�8:WuTCa���_�C�b����<1�.D(��D�EOx�O"�jv�����"�J|I�yV	v~�f�=̳�9�2���s�KeQk7>}Cx�v����8^_ػ�£#j�D)�W2_�R�Of����Z&U�<�E"*覲1=��:?�
��Y��� 3�'.V|��,����o��t�G/N�<T�f��yT�2�*���x�5�7��̺�#��qŬ��N/R�#�G>�
y����KW�욃���ߠkqL�.v+��sxA8�0�w��2&n�c����۹.{z��-,`%�a�P���̀��@(+���X�k��!؞}�2�����<X؊�"j�̰�J9����m1a�
�o�����j�q�kֈ�f�,(�
1g�Ru�JOQ�vlaK,��vd�@�탰>��k^$z,u-��%lv�mk�oV���XQ�jKZ>���r���gndօ���ۈI���6�.^���-����V'|��*��~�0�L��:�4�T�	X�池�w�`�td|�#o'�v��8�>�u0R[j�F@���ց����-�\p�.-.=d�7��q�-����B����U��5�`D��q�`Y4.��!�!(����}2"�]$����Ab�)h%sL^�p�ư�2-��ʖ�F֒:��~Q�
i�V����7o�b~��E�3�"mP����XD�����S��*_{Qpů��ߛ^ݾ�q��u�&d��V�3?���q�JGxJ3����,
è�
����X@���ҰE>�q�(��yi;���ucg���_��deJ��T�,��7�����*�Y�KYO(���5YxLƏg��t�) ��
�ڂʋ
��VW�Wrbi�z+�.��:�NA�S���eJ3D.f�H7xȯAy"�w��L�e2���=�V��O���Y��'��a�[�ǵ�R:���w&�����R@��"S]�f�Q2:B�rb@︭�B$zI���R��O	�q�%�E{��BV���V��aFA
i90W�!���V}z^B�s��s��1th�V��JT�[��w��0���� �`�#��$��
�$6�����PҌC��#�)u���_	�c]�k
�p\C(e-�&��REmO�~#�#������;���x�Fa`�����D=�Ʊ����*�«����G�\�/:;����&\Iŵ��#ąk9�]m���ኺ�F��� � Iy�A�����w�2X�d8ض�s�l�`W���b&|�F��W���lX��m%��C�����T>���5?Z��ܭ�G��r��U
;nh��+`�����XRQ�y��m���Z$ہ.����Ї#��7�^�ܧA��0.���ixeD�B�AR�Q/c��f����Ȯm�nWQB�lK����`p��Ԝ��XS
+��)��e<'�I���Y
��fU|�ylc�b�K�,�ڭ%	�b��F>$���)�ꘉ�+z��p����VU�D�IiG�j�1-B����wґR���Ĉ�"����uWA���T ��y� %UG�����pߕ���.�k;sn<�NN�|�sp�b={*���Eg��"�/��[R���.� ڶe��?�����������ƾ��k�����w�<����r9�+���zV��P�8��@:�e�J�$q�Lq5t�[,���Ԛ�3�i�l�e�D�P��pz��� ���<�����A�BK<�ۍ���ٙn�P�*V��{�T˒�<�
��hɎ�˓e�������Zq��l�BDDa�Mm�mnX��}����w��Kc�a����(TnP��kX��z�ⷔs/����m�N��-(*b��U9
�b���&>I�d'
���Uxx�X�x{�p���*��(�B��BNAze_�F-	ũ�>D���NV
���������ۈyDP�3��<W_���wS��5���-��Ji��=�l��9\�z��` K��Ho꩜�A��XfJ����>q-z�GX%�N��"Gt��R�q�…|��<�:�%�P��c K���e��Rf+<��E]��?!����Vԕ^;&�M�q}Eg})�\��`rs��J��bϒ�Ѻ��u�"lDo� �C���t�sv6�W����2br��]�s,K�"/-������ԲS_��FF�m�����k�2^x�2��NH�N���vہ�
3���~2&X�fi����GU��jȊU�K�Y�d�.�sf�_�z���Y������<;�'��
�ا�Q��ZP
rLG2�dDl���qSK���iwca.�=Ǻ���%AaaOԢ�9�=XB;P��Q(�nX$�#da�M����6$i]�܍�fRZ�|��Zy�7O%����l�)o�d����Ҝ�I.H8�F����Sz=^ی�����ߜ�Ѥ%:��3��5:��9������q�Bd��b,���d�o��&�փ�W���T$�PI8�'u��.�oHz�/�MZ�*��U���ʰ7h�m�md��[����+!� 2��aa\֟%˾t���WgDǸ��%�
`}�;�wԋ�<���D;/	�}R/���M���.�V�=ܓe@�Z�Cs���4R�B g�X�-4� �=����&_�x���I"3���Q\�Vk\�:���-�������8R\=8��>TzU,0�r��LT$�x"T������r���Bcs����"��p��:!��i�K|-�\��J�8ix�a�T`�dbgVKH���}P۫;9��m���B$:w�P�*�N@�py`m,�-:��Uu�",�^��%�o���U�-~W0W�KE"K�����
g�;�d��gsG'�Id�j�>��|�$�||�>��p�%�j��a�����{@�5{Xb��
H�h,H��RZ��F%|�t�#^a�E����|�W5�<gƌ�Lo�NJ��t��V���p�FW+Π%Z����`�\π�'i�&)d�ʒ�U�7/@�$EQ�|��]L�#��V�:��ل
U<���pf�Lt
��Ϲ���V�4wV�H�b.7=H��h��\j[B��O
�Yi8�([A�2�ڂ84B�-G�ݔ�tKo���.����!�UT6���$��A�$���%m۠[Gp���������0���_�a�Z.��.}�|���2�Tpf���]�~n''��H'w�
"1�+�216���ԐFd^�>
L��T���n����	�B��3s�����|َ�m���U���cF��#��n:�9	�8ņ�EV�v��'�C�]��Y���12��L���sוܝ#,1���������3s��"���x�a���
�<*��<�7�*]�V|M�W�]�8��}�{�L�(����V|�?�rf�S������_kb>�ta�*qr��7a�1�ޠ�Nr���9�+J/�	rEm������ב��n/��]0W�v���������r�0>��Z����$Tb��E�S,���Ve�4��<�xm���q	q{*i��_�G��/��`��N\JZق�S�fA03ˏ�Q2�'�����`3r��0]�O��a�u�Ƒ���Ud�&�zr"R����u ���`��Cw!2�@��˛m�F5�<*l�!wĦ�U�5�R�>�m�鈇5|��,�k��)[>9>?*��.�$:�{���jB4&u0��ɥR���<�y��f�S�5N�d`?�
7ib�ғ���E����b0�IS�'��H���v�2��d�̳���wm���6���y/�!`��A�_ll��S]�_G�Ulwe��߇��+�+�:9l���xO�z?�z�E�M�3���JayO_��j^�S׼��x�?�7����M�F����Tz1�ґ����m�P��	4���b(�
T�@/q:�k>Q����
1H�%J�v4��	��Pg6J 
l�V����κ.��3{�-�r^ˊ��;ٌ���|C����QR�pb��2U������U�c"L񘙅�D��\���f0��p/��<�Ĝ�2�,�	*e�I"�C���
q*
_*�PP�j�nē|�6T����?�ϰ��M�h
)��#�x�'vi֥��RR��B�@'�T<](�6�mW��{������J���b&U��H6��k�Tu�{z0����}8/�	��#3�O���)���2~N�j\2�w����;���<X���]-,�u����� l'ME6C.��ΡfgbX�%^�/�S|ͅ�5U�4��>~�|��}��~���.%KG���C�<�ԇ5C�)�z��>g�ݯ�nR-�
���Qj�E���O�������ݡ<eq�9zLK�y��\ҩ��T��MByP�@>�|��tE�g���_7[e�+c��,<Y6�VvmY��1I]Τ�c�5Pu��ڥl��Ɛ�Dꗑ�E,�����N�P���m�0	D�����t��t���a���#FI�	��O�jT�@�ڎL
�z\Zt�D�
ض�)-<wEA�=
;��;��S�]^�!w`�m�{�U�3F�n��a�<�|b{�'2�k8SN�;f�NL+MP��w�쑘_�n��� �
�S�M|&�"�;;պC�K��bm��t�|e�::tz��/����+GRш^�S��fQ1�����c��2zT��ճ��=ˈ���jU=��Ti�����7q��b0�l��=��q���ʇ����?����;�j��������v}㚜:u���bX�q%ܻ�ķ�e7����T�o~�h^��8/.��tf\s$��
�5�D�gFf�x)ϝʏג�ieV[��G�zMv�� A�
b�V�ܲ���"�]"rkpl�WKìL���J$Y	�!����y���l�1�]�ʼn4t�q�Ʌ�%Ԑs
>A�:���y�P�Kba��H��ۃ<k�-�\H#�C�8�fG�,cJ��i �lo���[�Je��Z����~!�m-g�`��3�0I�8�W��65/e�\�Ί�C��pbI B@?�1�G�VI<���_�:$͜;�[uV��$�)�F�A$J��k��25�r
aH Zj��@�qsk"���:mv�t����ξ��������[�Ţ&qv
��c���U0��ҏ�lw���
�e!�����t?�5e�TIepBwr��9�-��7
�ߣ���/��o��ӟ�y^~���?�������������W/�f�wD�#pL ��v ��jM1���[m�2�xͤf�����ޒ�Ǜؖf[Q-��V��
zJ�GW�i�̊���`a�x��^��z�M�����!��s��hY(ٶ*�����E�r�*�2S��+D9!	.	��#$�plh�V?/6����o�!���; &�I	>E���OG�;��6$;�Ik�7�%�mA�T�7&
KU�'\�+q��^`e�`)‘��H���L�=��+�˨�NȬ��\Џ�;)K+`Q�d����u��[c��0ξM'��^
�+���+,\TϤ�������W��tM]�\)vG���L��k���NmV��1z���rz���Ũ�$��|��ԍ�}�4�z
�Na�����%�X�:m�0��R�IO2�ϓ�	�5Vat��풢��f4�;�U�b�����Z�]N�/�w[?�Y���/��?���7�����2<�7�j~�n[�3Mtb�m�t�F��̦_�8�����*a���i���<�!Ms��ֺ�ZX��ɇ-�Dv!�ȣ��,�G' ��,`B	�-
�w��T!��,�hIBer����S&%���m����s�H�`SZ�ɨ*-��7��R��J�UQ��ɒd����f��Zu��kh�9���u��L�T#q
XC��$��^t����e��tH�v���Q-S�S�N�n���ʇ��aidan�W��#D���
۬N
��҈k˻�)ľ�c��3[b+�	)��*
9�4���B��T���g��]��y�=��4<.�G],��D��P�`��M�ci��L2
����A�&�U%5�UC(�qyY��{�*��I:vgXD�� ��)�)�g�.��^��:��JIEc�0K�=�/�I)�����dG!���-��V���4�w�S/{�����Wۇ����W��Q|�ǯ���)�m�ޯ^I����r�`�������j���=��M�uA|.ĉX>X���
�i���xa�SݨD�ÃUm|;�a����+�-��JK���Ve��Է�/0�`�"Y�cp�Tw=&�O��u0ò$"���LJ���sY�N;,�I��"��/�蠙�8�w�re�&Ӽ��=
���8AF ��L	��0{[*[Z�?e�����4�����ֳ����#�,�`��^W�5]��t*_��fYa��
����E�H1tQg�	��;�Y+ZZł�s�O�e�}�y�ٗ����j�Y��?�\QNc���8���z��'0��uD��F�)��HF����]@
�;B���Efv�&��r�sW�L���Z��٬���H��)1U���.%�2V�r����=e�R`���"%]�������,=�P�}'�Ց�|z��m\ͯ|+��S_
2�1�g�j���g����>����C����~�G�u����d�x�U��6�w^6�lL/Wv*����p�™�CQ��1�5��
��bG��_R9(���jBT�-4�HC�l6|����bag�04�2�VȢ�h[�I=�H7�f)k��r>�EҘ��{}��.200M�tJ�5�pZ^���gi�����Pr��	��ݐA,�I�@))�
O��t�Z������>��@��t���&q6�z�)�iÝix��a�zgp+�'\'����(^_�m��E�<1��c�"yѕ���O��}(FӋbA�jrԂޝ�&�	6��Yh_e��i�B ��Y��@�9MF���0���ڃ׎a��Ј蓣�&Y]�Fש�]�oM�G�(uzv?����b���:�H�Aic�b�b�Fwճ�]��RK�p媨D���!�v|�����k�����㍭�_s����w������B!���/�>�VI(�F�i�c����^d����ӱt�����:�^��m���H�	�A�5���qa��IjX����F8upJ��)������%KV,m�;E��SG�&þ�!?��#	�VL�B
�ĩ�0������R@�
|d��L�q'Z���R!Q��%ީH�6�%ZdB��7e�]��>\lݛ���}挢Z0�HA��e�x��vc�Rɟ =,�Z���D���Gj�6r+оT�#��G�Y@C1�U�䀍��Dw�,��z:�X�������`5�}��,���{��C��	�`�
w��4U��9Tgi���)��&ZW��O�@��	�K�$�x
�
�<*땭��B�R��_��@��ja��Ms��"T�*�֨�S���n����qJ�މ�-8�F՛ވ��=<�+��0i��ǰtyQ��^����U�/��ߛdy�;�
S�����ƭ����f���J82�+K��Z^�I�P��S+K��,[�N�F��Pe���Χ+wFx-��Crn���s�����6�b/��L&�Z2j�e�t3m�H�����{���d-%j	U~+rl�wm�SN��#'o�YY0I���P����5��CG�����FCN9�jf�����1�
�D�e�(7*(�ش�up��xTX�1m��NGLi�
�
W��1
�p��C�Ž%�谯��.�̙�����P�TOg'rВ�4\YV�W%/0��><�Y�C��ƶ��{��v%ۨO���}B6I�ScY�X�@�:�&��]��c�;�(�\��K���#�p�3��0�m���>7E���܃_���_�SxC�AΞ�
ٍcY�و�Uh�?��#�+B|�Y4b����4���?��c���`?k+��|S��]�5�{/��Tc���#��(��L�h��'�8���sG�9 �B�&y�7P�ĕkfGK��`����yu� :W��7��y{>��dg�dUj�s��c[cy�[��,r���5�Z~X
�j���i8YYL��9�B`=V�S4	k�Z��$$/��U�������^���(!�'�T�5ˁ(F7a�]M�W�IMî8��$CךD��vrG@=��$�dAV��R�ۓ
��W�ˍT��v��;m��a����R��l�It!�ɳЌ�����ށ4���w��*0d:� d1�
��"L:�u�`�n��{�a�����@BRW�7IIޢ<��%$���PI*:˦쎍�x��G�+p�N���!��'ܷϗ:EC�)QRnǁMքA��0��b��8��I����w5uT|J�dUF}��e#��|��{�̶�VY�b(�����p&ø1~�>�"�]Ѯx���tԌŒ4���W���h�j[f��))a��N��Au*0q t̋�i�x8t��;%(�yv����-���eG[���]�/`�Y��1N֔u��ך��!����Q�<�&���À>؛e@*j���?��&|/&�Ғ��d�̛h��,e�q���	WgŞ���g�*R����[7!+@7nZn�/��³�W�P�&����L���o𫒦�	H2�ԉ�w��	��z椟��rT8�a姕�T^�">o��\��	��ԣL��5�Xq��(��}�s�u��m�i'��!`y
e����.WV���1�����jL�}��$��W��X�VY�nq�b���ϦW���՘8��h[��a�K�(r�X�>��5�z�o��'V_�W?V	��Q]_a�``6Wrhrl%NͧC�����:�9��
!
0�a!�0�[��+�s_%���%Fu�]����Tm��uy���v��Q	(;sYf���)pc_8�bֲZ	8hw{bt�B_�k_yl���5laY��l���Uf�e(T�pg,,�tsI8��ǹ�\�3�"'�������.�����jYI�U�ƫ��genF���1�0�A�1�p�&��б���H�#�g��# Q�cyGn�<���I���61���B�F��=�&(�ˀS��� �=��/�>gQۥm��Ǎg�S��
h]��B��5h�F��iU��A��8#�n�E��ޞ�rEw[Ůp�Lz�ܲ�w�	��gXl��~�$�֙�A���i0�D�VC=E��ZAY�X���I$�ԀD��ܳ^����?�z���]����:�h�K��L�TLx�bĻ�@�Sw��m��=L�*�ۘ�z��|��#���AP���(uVD=�i��`���̣j��};-�\�����&=,?�~9=��\�Y�y"�$ʤi�Y���ʺS��$r���('��@b�-hr���;�3-��3���DW\��Ŭ3B��d�u�#�v�Ȏ2y��F�	����#���Y���;�(R�G�Ƣ�S�H
;��M�b��֚����8hM��OY޴f��[�p�e�3���:b�n���2{��!+�
���m�,�z^�x�c�#�.r']��֓ɠ�ҕ\4Mk�����J�t����i��p:1����i�1	Wx��8iz�0��䘮g*��g�~}�-\(���85=�˘�I��z/��}�8��[�1B��C���	�5%���|Ae�M��@��S��y�4R�u+A�A�7�1F<�n��+���uٹXǤ
�]��݀�mB�.Ki�e��B������^5�g�dXB3L]?]�m��-d�O�����7?�t^�:��_>˲���BTA;iYʶm���%!_}0�"O߰��	���XX	q@�I��O¿�n�gbO�k��P��0{SD���C��I�J��*	F���fR�ؑNy���zx`�k����;�`^°y�2NJ;��7
�BAZ�O8���l$�|�$��OE�kXVMbǽ��v��0��g
��\4&�F�_]^]��
��m�e�
r��]����Z+%H��.�Y���㝧��R>0"9��@�$��9)UB�
����؃�,O1fz�sq�#��!l4ޒ�tdO%.�.�x�(q�'ґ�!�s�gP��܇w���lj���>�U�x+l}���1���Ы"�F����>GJު$����K�|���3nGA_'���ugZ2�{�
Ⱦ�$���,�,�{Ã�?0�j՝�:�+��W,�
`�Ԋ�íFkd�TB�^I���u" �* !�t�!p��-��V��o�8@��}AG&�M�������Js�,�[N����c�Z�<;�rlh��IJNr���@��{�qԄnr�MǴ^�e��hj>ī��*�p�^���&{b��S�r
6��"Eƛ,�9���PO��A�!u�Ro���X��7�5�}����r���>J�%���Q��&�R�v��[}�V���j�P���{H��&� �dK���0Ms�/��=L�T�D
aJ�y(�"������؅\�����5�������-�-0�'�
�d�1��{DL�f'ky8�F�kv�G�9@
\<�̡B�����=%a�F�Է�c�
�_s�w���~u�N�	/<g�^q��M�81?6�4�u�0��*��5:'s�
���cC�i��.vܥe,�(�V4�ȅm',h�s�*wXm�3g�/��������oII�ӊ�Pmmt��V���E��HY$b��Y-9�,E�����)���+#*^ݨە��@!���N_�.MV~+�m�4�ܗ�B�M��9�X����(�Ҙ-�iA̙;���&d��vb����b�5���}L�{��iW
�eSӧ��OK{yp>����ΐ��H��Z��Ù4�rY�9҇>
r�R���\��/�O;|���<��a�r�'_+�4�C��T�FN�i4of�M~U�0�Ȼ�峸�Ȩo�GY�u �X���i���I��(o�eSa\��&tq�^
��	��34�EceNƎ���4��f�G�a��M���D�qR~��9�׻]B�7��x�:M��a��Pu���*%��^)��<���HuQ�����j �m`D��`vΝ>�'l��Za��}8>�w�}�.�ߞ�N��Z48�9�W[s{���2�a�)A�%w���`�!�Ȣ�S�_�t^�O�����&NS�-I�|z�Ӣk'���s�hp�f ���؈�X>i
	M�1���Q~*�
(m�t(&+�/���C�{df�nA�"�S�4�FĖ�Iٜ�
�m�	�(����wDq;J�f��
 ��ġ��Ii�����Ij��sYذD�-�a�4ڱ�v��@P���v�ٵ��b[�c��`2\�oÝ
�w
v�,�NS�#���0�Lz)��-Z�Cd��%�;�^jEb���aܜ��@��*�}�n���D�ju����t��A�*ӕ~(T	��`���Xe���"��@������%��U�]H����e������1�7c��2��3�
��ɘE��mp��HK(�s�ߗ�/�_v����-��PA�����q9�e�$=�����hX/�r�g��lnb�5T��k+�
˥s��
#��Uѱ�����7KK�	�����FQmэ�9.�*��>��H�Ê|)QB��3����b���D�]�@��9i�d�$��Tx�8�r�:��P���%uJũ?!����k�c���n�	�T��z(���
(�G]g/��:`� �ܖ�N��v4��Y��Y#ڹT/�n�n
H��c����~�ܞl
�H_���Ӆ�:`��⨻7��urQ��<iX�K����x�3.*���F��؊�(Ԝ�frm�"8�j?�-�&�=���:gS�5Z�=
�D��&_�M�\��L��C�{.2���|K8�]�8�p�˯�<��j����QO$��vo�u7gΦ����/�4Ͻ�ѫլ_u�>ܠ�yDa��@H|<��;���1g)�~�<�N�Ls8��l؈`��*a�8�z7?����َ�?��l�G�	VAb��}e��:�1���`,���vEU8Q�[o;G�%��`��f���?>���$�sO�%�Z�g1Z���ć`^��{�S�^'��K��w���=h��Є��h�ߨ�P�Y�F:6iZ��$B	�H�LJ:d�J0v���R��`rc�}�	x#�X2H��h�m�B-�̵�m��B>�L���<�t5Sr�ƽNd�*f��!�OY(O8�&-�ִ&�1)LI�>+��E�>/:%;�|�wi�5��Vv�L�ݭ��ߐ����?]�c�U�L�vs�g�"g%��.Cl/t�t����7��V@��6�[�nc�x��aN7:��Dw�T�1��	N>��O���4��v�7';&����tJ���a�8;Ɣ��d�7Gtd�s��{ju�~BS�&��v�a��؉cD�ߖ��%Ϙq�9�E]!�_����yL��@u�%��x�ϖsA�R
`���t�g�2粀��}�Ṧ�Ӓ�(�~�8����>��<2����\��q��Vj������*����"�
t4X�
��n�:�J�����0$�2Q͚N�)+�ۯ��@��Hg�3�n�gP�c;#E�Ň���u�U�@%(6�C&�#4����_�,V�mj(�Lc��'��� ��6�)I�ɦd�}����1{�����Ց|27��p�OaX|��Գ��p$ڛk!�`�H3D�N�|��?�q��5�}�bo��d�d8�[Ԍ�6�B���oIu�;��?R*�����[�ꅫ���f�&_i&���p8]��*�;:�c�����ߏ<7RE�D���B�_й�� �5M�8��}������x*P�D��̥��!��|��m����.kYs<c���s�`���5�O�a��0��E2a�:�5�j���S�8ń�K65pn�\�5��,M���f&NI�� A��ajT��I*^�*x�˦���8|�N��,xT�9Qܳ��h�Z�ڟ���b�V%K*��T]{�ұ2X P���S��s)�3����In˗8%�{Z0�<[�Ղm��cٕZpB0��na��Tu��=T&��]ۅh���d����D�
i�B��Iy�u���W_�^�D�0�u�Pڜ�F#6��&.7FT��[�J)\,⬫�]dkF��N�Q�=
l�H0�{�b�ײ2��څ�a�˭�+�ƍ���⫊�[�.����/=��7b[/�p�Q���e0\����|��yX�6�q���p�̰����JA��i�H���;d"r��������6Ԟ� kN˚֓��}�-���&�!x.5=ߒ�����8/k
8��m�e�9�������ν�k���~�A�ɠ	�qk�
�Zn�\?���r�N�g�g$�W�7w���	����Z(��T�U%B�����߅�D��V��T�`�:���R	��,$>��C��5���zHy��u�biU���]�8�J�kS��rnI�
7�ke��arץ�g�!#���cC]-gE>#cP������aC6mȓ<��RT�n;<�;G�-��	g���l$��g�����1An�#b3�R�8����	��3R�G��K�Uof=Q���{z�h$��J~ެ<L�C\��C�&�����^�o�~�*u�c8>|����/8#�T��h��4���U�TIg\��~�^��/�>O�~��M[�~�(��IA�!�	
S绷�wO������Ç�@.��K�T�C9�y�՝�la��ɖ�oS��*ت����z'���>�m��Lĸ�*v9p���|Ù�1�.846IvmI���'k��+n�R��S�)Ч��2e�����̄���ŅdCUR	�H���M�NZY�l�(�J܀,�
۝�*X�j��h*����i���8��5-A!�AuJƼU�v�t�S�[��*�{��
�
��7>t�GQ.�>ܧ�gX��޸4#ь�lr���P�q�2.�pR��ȑ�N�1�S2����h�8�O~��%g֔h�M�l�C�
�ϥ�f��8���	�h���amLDž����4R����=�I�M�Ł�7�8r	~�q�J���=k|
_���@|��A��d>����,フ�Wsӗ�����Q+��5���~+9�d�JI�l�t���D{x�m�_~��-��s<#D�T�kɹȳ����?ىb;�/ܘGS�1����&*��:�NSh(K̗�S�ʰ
����+;Ƞ��2�7�H��Wh���YZ�
f���P���O,�n�P��%ќtP�C��M{t?0Z���^��j�0x�ml��LK��0#�_Eml0��b�1�Z>��
�9��ܒEU{�W���<�A�2���i�>�K���ʾz�/O��rp��H;�H��(SjXڸQN����c�&g]5�0,	
*�%��3����,��9����[�Mn��w��GB?�1�v�~-����G
g�9���(o�8���)���U�#�PI ;h������۰������({���Z������n�Fߏ_����S���@]����SMK�_��q�uth�+���Y�ڳi�0�DR	��'\�"���a�g��"�=��_>��9�N5r<�ĩ���'Q�����9���SH�ԏY#ЌEd@.�FO�y�/�djj"�,[�RI����1�f��I�L
��e�rJ�	�|ç%꫻����N��r� '��v��,3be��$���f*��� 
�L������fC>���4k�μyͧѶ���1�!�m���C@q0�x;�eA`�Ljd�N�*�U�v}�@��!׌d�aG�tӾ�<�pn��2���x
����0PxA���MtO��t\�ib"�Y5e����r�n.�1���ۦA��|ޔ��_��W:j��i�Co,��`�&�H%N�d��-+��*�?^��e��4��n�v�"0,pZ��}�#����L�"f̺�������c���ꢇ�L���M�H��}d��=�-lK|�5��O[-�<�|�@�<~Xs�$z��LԞ685�˒Ҿ�p�"�
FPw���� ���]�0R����?����(��L8DR:��y�L~#Ӊ��D��!�9�8|Z�-ԭӢ�=�,q\:�~�e�Y�vŤ�rv4#SFa��VC�hLFU�.8[�,�ȧ�QE|�`3
"��&
&b����{��Ͳ��/a�u!2�J����k��q���+�:K���>�$\ENq�˺�D��\�c�N��kW_#����G)Ĺz�\��O�z@�!�Q����w)
��A��qY���h��ڭT��ME��w�É&�0�hOlY0D�J������ĝp���Hʍ�B㭸�&���i?�X���՝��R�x�	mt���cLu�s���0�koF��q�L�L���ZC�sp*�/�x���9�;��+�Ɂ�k�1����s�XhӔ���X��?�_.�aY�pT	�<�T,@��hC`���R)����
�"o�,�AN����ZN�°A%�ܓ��o��v��F���@l����òċc]7�fw&������|^ޑ��m.�|�l�hz��&���T�}��è�
�����NGެ7��`���"Y�y`O�WiY�m{�)<`�;����ի�~ʾq&4=�
��o;�!L���j���q�j�w��"�
V�
�U�5���A�>���w�!LG~B�����U��~$G�!6t�Xqv�حm򟏴$�C��ϩ&�J^˲$=A��P���r��0���ػ-��ak�m��܅q�ޟ���m��#я�ݯ�3�Mk��9<m��y�C�^p�T�_�0��{K=:���
�����V&��K��d_(>��LgT�M�,���8��D��p�6�h�Cb��
�D��m��P=Hp8��+ˑnGUՌ?�,-��2̸�k��2��N@����H�?xA#)f{��?�.�9�G�}�s#�2d�0�F+��C@"�[��,=�gT%�Z�p�]ʥ���jU�8@�u�
�
�x��e�^|�<�|�8�`�CC/+�;��J7���t�J��	����A_��vP@��8�h\�Uc�
���[<z^�[�՞�n��g�Hs,v��u;>�9qM2���SQL��RW3%E�8!�T/��-v��x]���i$�6�Ge�r�ɄY�D��h�TPN��_+��1b�L�yX�4'݀����_��+V�������%Bu�3�V8��/rEf�}\��}��M�d�j[�Z�h5��7�@���l�ygOp�Mڋ^
���3�'ۤ�9?�K;��q9̡��95�x����9����+��pE���@ɽ�XSE�
�)2�H�X�5���C�҈>���n�Ŗbe�C�3m0��;��:A�.�D=f';
��7nd�Q���of'
�Y�_�Og�i�U��$?g�j�s�!�U��d�#�½��F�&b:FGH퇀GJ~��MV �����	�=l�daB_���>G���F"M���&6MV�l�����d�<�n�r���<-:��7�N�v�(nn~,
N��<t�����b{*4�c��J�<ywe�"��')*���[�<��j@)hXƉɜ-4�/0ԁ^��
;;�����x�����zH�PC�Rq^���=�}���0���"�t�O㭮x��ǩr�t��*a���8JH�B�;�릜��wM���<�t~��Ӻ��ڶ[8�k��C^N���.٩���0��V�?Z����O��y�T�K(
��a��d� ��1SK��,"+r \
)T�3�����j�`-�E�� X��Ef`S��?�s�F�ԏ�S�T
w���iT�~6)
*�@I%-��q޸���rF"� ��V(W���Z�·)q��m��T��Q��o �ٛTRR{��w�K���-�0����Ж��'m� ~���Ɋ�R
NT8v]?�^ǥ��P+�6�i�ԥ)��٪�@>��`0���AD'��A�Pw`�+7Y�*��d�q��5ԖtY$�Q��s0��P�Dö���\���h4��m��=�+[��4@�$���'�3ȘH�1��Nj�_K.u�wMP�1�Ekx���7�ҫ��Q�����t_����b�ݯ�ݸ&I#�Nٝ�I�Y�ݍ8ܷ���\G>ئq�|��U����/��?�O��b�d�Â�Yl�aN8�KI?����_¯��W̛��H�e=��?����rzޟ�V��	�ٝ���Be5��nʨmj�Ȱ��,8-(Z�[Wd�ݹհN��#(���p���s���d���}	F�Y�����_�u�J(��
��b�5eOES�c�Msî��N���E��'�6������h���9�mŭo�c$"�~z�݉-�돛-�2�E"�Pq��	26��M�֑�SIP�Y��}�mk]~q�����Zuc�v�G�Wܰ�&�x>��mȾ"�Ҫ�V����|'��M%���Ԝ��Gl�\����n��ڒ]��+^�D/�PU��qa��>/p*�ੲ�0���q�)��

�3K0�Ǝvsʭ�`p*&��8���������!E�J�����|B
�n�-v0���qC�rs�t��b��Z��~��%k��
���5���t�����Ãb�#���g�1��r�){�c<}�mX-����?���_����0K�r���z*�!�adT��i=-�wLHGͲ�Z�r�cY��%��d�a�aX���L�P�{�rШ9�Tbj^�lL��4�g�,h����M�	f�Pg80�%���B�.S��;���i�<�O���f���!AB��J�A"(�uX����Q7��TXg�W���/!?���
uf�P\�rʼ�j̕]p��9Z*v*
:<D��{�.��16n'���+Jy��»�����3 k���)��A]4�g8��Uf�у�|�2�v���j�q�H�!
82�}W��wDi�?������(�|��(����n�f
�mpY�"�q
�i^m	)����^�<�ڢ|�*�ʳ��@7��!��S�g��������)6\�S�� �|�}����o5;3��N���9�� �����Cy����2��p�i�:A:�5�KY�ú"�XJ�~�D���S�~�T��B�n�z.�M�k~8�+��x+$��R��s�i���ł��1�>��
NM�3����.T�6Z]^!��MN�r�u�8ob�{'S���,aI���<,���D�,�r|7
��W�,B�Ah���] �ytK-9��xԺ�*�&�h�Vjr���y�7d^�
X�@�v�kr�<+з�l{,T6�_Ѿ�����j�j��Yn�\
��8�0?F�Weu�U�N�y_9�W�Ň�U�}q�R&�����}���'���f�K�,�VH�2�`����C�OcD��T��چ�v��oλ��F�G��Dq�(	+���W���Q�H(�)�}j��	����!%��hr^-;W󀩾T�<��>3��7@�a�p��L|O�=W��8f^��x6��鎇u��������N1E@r�<<�+���"x�Poeǘ����P�9�5K�>�y���Ov9{
k��_���?}z��i���Vy�VE]`���/��d�v��mD�3�l����'Wi��>Њ��9�Ҫ�<�*�-�@u��p��c���) ���
��e�khq>lu|�N>�#�ip<^��@�g`]�qE���� ���v���Lj�j�R/_��$U�C������'w!Ak�ba����Z�1�>��V2$�|�F���?]8��+���i���2)���|x������'��LDT3!T�%�҂�l�g�Ѳ:&��U�ǫ�
*�J���2U{75�κ^g��]�{j�D6��
�$��B�5��%�6��Jc�uXQhƓ����T�g���߀�h�١�����ڔ^%������ͯ'g�����t����w0�
i�C_#�Y:������op�lu84|��U�?��V2x��,v��&�s|A�͖a�)�Ŋ
H�X�e�5�ͯ�/?���XV��}��v���m�Ƃ�m�-�l#�i�����>��(�'�p����R��s(){�:��l�q���R��u;+�Z�<OdM,�[R�m�5
U�4
j��Xw�z���Gc�C-t5�+E�y��XPb��[߶�i���V�.h�Bb�5	L��`Z��.]��Q���`�m �m�>�[����=[���}���߹�~�$eX�#CgI&�4[,���5�)���|�)�	�;��g�fHdY��|�p'��|�.����B��pW'� $M�D�
�EQ�������է#���t�6LHR�(�E(t�Q�N��m
Pw����N�ſRy��j�x�W�{��6t~|0�U�MrB�%9�^��i�|�"�ٵ<P����h�{�p}<��Q:��jS�ݜNv2�id����R_�Z�i}��0����[�P@-�쯡����vaO1�.ź�9]b�ȄP�h��R�r�ev��eYE+�VŹ]`���lw��>\W�:r̛�@ɽ8��i������vM҅��B�J>mt_�4�b�M8r4�1�T�კ�BLrS�UtA��g�]D�������Ͳ�
��2s*�v��R?�#��Yp��A
�������1����E�){F0��,�]�Pn�%7����$0)���p�ց����bԯ��>�JEo㱓b�}Jp�N+:���rȚ��5��\���Ӷl���7�EWm���͖O��Jƹ`��R�J���p����Mt'�����%(��͕g�o7�G��}�T������Ǘ�����nt:�õݥ��:��Q��k�P9&��ۑ^�f����H���/�<n�b+�����D�e�"5��VJ�t^3ƪ�͊+�`I:�-�E!�P�8V�=_�K�-/{��)�˳��j�xA�D=��^�!Y�P��bF��.��-ʠ���P������D=����<��;&���\�
˄ʤ>�p2h�q�v��g�Lji��7qc{�h��O�qI��R�N��F�S���!X4�P��@<s���&����N|gS�ӋE��^�}��+F`�$J&
p����0ب��`b栊��#8\50q��˕�ɶs��//����f���a�����69k���K~P�խ�`5Y�#��@���=�Ն����}�L7�Y=4?���l'	�e7��}�"řS`�ְ�gƮ�*=��
8Y��}����DY�'����8���D���J��V�`�c��/�o·~��h�Z����e�P�c�fp�՜/ބٸ��������/�
�pz�~P �
�T)F��XnH7C(��1L���>�q`?�,�B�g�#��P#&N~yg����/�$��Ihh�n���4��2��V`��&����{�U`
�7�S�G9�Y��cv�ŔӲ�Q�6-�Y4�)� ���$]���+8��/��֜���
�XFk\��{�(@s�*a�T,�$LHt��j(e�:s��<�#D�Z��]�4^$Y�;ֱY�_����n1�"��u_��1���AS��YfK�g�j�C޶���s��dY��-�~��Gۘi�ܼȅ ���P.���D�"����o�����L��ni;�1r9�3�9���Ҕx�4��׳�����W�]Xҵ��B�Fv{����?�s]ԍQ
�{K�>Z7�)2���!���"�d�%:E�j�b�C��I�Ss�t��xwj�ڴ��<����w
���Ԝ1n���J@��d���^���{��?�/~ŰR��Y�H��
��_��l��m��4X�=Z�^�f.(��-ݏK�p~��A��s\���Ԭ@�����tN<`4��/����7^��x^W���������On�����4��W���$��	�>��Ae3ק���h&b{��@7WP|j|aR"��+��̨8t��p��S��dj�87���r����(Ψ��!l�k�r�x]K�ylI϶��%��S.,���V��Ǥغw��7���v��X�ɲU〧��
Hեr�*�=jfLE�cw
�H��=$J�HR���.S���Ze��1�E��jab��@��ھ�*�{���q������,���vя1�m����8�u��G~�[Œ��+[��eaͰH�]���	�s�U�P5(RE�PO�<�0���9I"��V^��<PFڬ�^:j~%_:Yzw��7�KǷ��~�(��}�͔	wE��xgH�Ω���}�O���ҖB���j��E�����d�����n�c�7�8��~��R����|</�T����{��l<��L��
s������������=�ˇ���O��l)BŎ�l=�qJ��Ctj/Vj�D3�&���]r�4�U>��S�De295C�ˊ!:ܶ0 ��ɴ�c�I�&]�3MeQ�/��!iNi&�
"���9��W�D��nh#�;�{�p�Zp�'Y�4��1S��_����~���q	����}��$�h빇����x�%��/�2|ti�m���o�?�;��˝֛�ٵ/(�D>��H���n2I`N�������(5�����a�R����ط��g�������1���nס`��a9��Q�4m+�f�/��,rp(�3���$Y$\���'e&��5TR��PAo��qؘ�=� 4�g������בB_��Ai)9������]�G ���J�	w���V�}q��x嚃��|��M��c�^�9k�
Q%}�9:,�Vt:֏�NY����7O���;El/2jl��zy�ĩ���rZ����m۟��>]��,���$�L?@ʶ��������n�'+��_���lL\�b"�:�g_h�g;�S
b�52�_@@5�QE��y��4�?��q�:�&�cV
V0�h���Y@�T�Ut�$N�4Ӫ38���c�?�7vl��ǧ��AzYT
s{�K��.�.�*�����D���j".V�?���maj�ˉw���lpC�@�s�F���FA��˫U�$m�q�4�M�;'5�=�~sZ7����EGP�+�>��<	^Y�2�g&K(_b9EP�:�.\<<a�M��d�X;+5��q�'�k���)�=Dd�A��c���fg�I�p�m�>-��%���4��S�0�h��L>(̧�Z�q
+��Z[Sّ��*�nH�9����م�S����O��_���f�O=���a���E���Fq3O~zB�~��
�wLJ^I�x�v��)8�b|���\��O?��E+@���!�~�?a1j�)��"�k��Ǐ��Y4��>?]~��R���,u�~<?�����ϧ��F�Ŋ���g�GZ���z3��s:=�(.z��zZ5H<��	�7&>E�ʐ�D�� �;-'Mv��98�/���̹p��ԛOJ}��:�e#.��Y.��(�q��t[g�Bz�:�Ƶ-+�x��$��TKe�q`pT��3�J�;��-�\�d�ᦡ������"��0dX�!̒"��>�E��HZM�A��?/�d �[��^��v��\�U~Mq[t�M1F��dr��ο�d��"��I�g��䃬�1���O�$�@v��*=�*�I�,,'y�}Ęӯ!Ȝ�qT'�0N(tNWK�<��B&e���(���9B
��qNW�v�kR�*V���w;��dA��B����.����#f�/����*��r/�#_�
�rc*:���}��n^h>��Z�3~������t^�����?y��\G<L�j٢�٪1���?� I3�1���e\OO����o>�d�"(>�B�y=��O��������
Ї�U�y��u�V!�q��O������>����'���r18�"�5�q�{'EӇ����æ��ϊ�ǮW�����uB+��8�"�$L����l�>=��*�%��B1��2Ͻ���ߎ�L
���C�G�|�@RlӶԖ�^�h�%KK/[E�h��[�D:����"�=Y��tU{q�X`v�]Ӷ��[ٝ)r���O���������O������*�<XW�Ͷ׈�[L��|x�E�mj��'�j��Z5z8=�+tR�����]n��K��߂��}�ޢ�c���x$\�fh�U��IA��uK�k��ʎ��M��S�u�+�Q�bz���s2��#��0��(e{
�_�9�i%h�ff9�F��3�7cj�V�������h�!f����R���������]�+!��(�k�C�R.���xc�����M.���\F���GY��(�y}|H�_��ˠF��h��yCW`L#���i����p��_�KW��ذa�Zd?<�~���r��X�w�Ql�?�N��i+Ʒ�L�`����4��\��Xi]<cn������VF����2��8ee
l��0&��eр+���E��4Lc�Vl~���RӞ�������8o��_�D.0�0�b�>�%D��2��F�_�K�c�<+�E�쮩4�Yd+��>"������U�HU�=����ٳe�y'��Z{>��j�dɲ-��	�m���M74�v044��"x��?�^y#x���&� :x ����n<�e˶,���jPVe��=����>��̬T�`���u��s��{�o}�o�a�:3��	�Zuxvd��y���?��[�N�
�>�􈳍��tMj��V\�-��2�"[�w+<?[�1T5MU���f���p���f��ޒ�l�EՂ‘ͱ��_���)�I3�=PP�e�UT8��6�x�pڧP�F���P(U��k��o����M�iVTXrAi"xO��!e1Z�@��q�)9��Ue0ٗ�Oq�@��2/��8�Os�`^�W(���2��z<.
�8N��/�be:haΈ�gz6�lʷ�7�3��*�7B���_x��qs[9��h��[W_6���D�ݻ��й�C��]@�ڮ�Z��0�Y~W��$Y5FX��Dt�W��-_������?�j���V�9 �W940�߭��~��7���Re��Z�L��E.19�ՌSH�t�B��MI)<���d��Y�� #�k�D��QQ�]��,u�scU���V�Z�yB��eI��|gE:Fm/�c��3�n
B[�2b�GvR�2 ���8aY�Nc�
� ����5�uYJ���U��
ްl���fY�a��j�R���:B�XA�I���_��b&��b3�˨�:��lT�"�M��U�R�7Y�|;2oWל�RY(�Ϊ&��x:v`cL{�^]7��R���#8�N�<q��Wq�WEiL���nν�������D�d�޹I�rqY�S:�Z�Y3�mjHiVo*��ʘΐ��x�uΏ’��̟Ϫ�+��O���,[�#��Ց��NB��*�l@�ο�vNiΗ�G�j~��>���W�����m��8��AH�@5+��ԝ��S,�P$":��6���T?w��,#4Be��~xuY#���!-	m_�-�Pu�bzH)፜�S��韶��O�IYe6�����O3�)��J^(6� @I�t�q�at
G0ʆ*������{�#v����jmķ/@��#�J��� Iy9��w����N[�(7�ռ*Ɇ��ja�N�z� �
`�@�v�j�Qc���dX� ��A���ӳ=���*+��IfJ�0/�</D8�MB��M�+��f]�ܴ}w���0��fg�Z����XL��ʫo�S���6�cȀfp�#F4A-:���e)肂��ģ���^�	��i��c��X���M��	�ѝŜNG��s���Xq{�ɳ)��q#�Q�,h��&�UQ՗��*m��<�H=&���Vԓ���q�)�y�5`�w�
w|N���$�L���ͫa�(�e��uk��&�H�s���R:�#��ws/Eu�J�1i��~���(��22e�l�U˹[�mW��9V��B����pEm���H��&	�dˊT�S�@r���]�]�5m��4��R�sjҶ��PU@��ǭ ������C߸�*t�}�4TO .�N�<�|bfzd�I�R���w(%�%U�M��<N}��q��x�A&z�$�D�yU�i]�"&8DTp@���<�J�3�#��
q�G���$;�Jᮅ!5%�0z�G-
���8E̳�q��2Kل0��p�@�"�EI����
)��װ��4���ŦB�����H�WP��@����=��[W��b	���Pޭ�f�d>Q�Yt��|B�+��~1���Ӆ�j�$��e���by�L,Ȗ
��
O���;#tH�aaq�C12�N��a���/�-�7��Hjn�ᨪ
f�Z1��rp�J%ʃ�P9+ډc+ n��h5e,�hLwpU�xb6-�t�ՙWʪ�]��W����\��c�݋3[���7lé<��O��gY
�Ӂb[[�w��7�oIh7���r��JV,�GT���
�C�����e�%�Zر����������x8ϞR�uc�
L䶬��H�,�HI��q��i^���j.w]��f��C�C۠T�e������̯ �<�"	��H5�}ݲ<,Ei[��R;W�1�*W�����}�ڏƃ��U��׹��G ��\��ΧLK��$~�~�T�R�>�����G�|�����ͬ�t�$��&��g��U)�g"�[ҽeY�A��*��.@����S
V��y����#�\yq��ȫ�0�K(r�`R�}V�-�a��R�9@rR���4�C֨J}��^�[���*b��VGN+^@O8�kLY앹-)}�X��"0��[f�1b�^j}��1w#Tv3w�Ǵ�pGf�&����^bH�ͥ-�(9�M��!�\p(��>�tc��,�Sd(UJ�K:�f�_χ�s֎y��e_)6����=~�huD3<S���k�sU���rt�h��FU�g&�),u�^�T��a�I&&2M����I��EZFڮ��T%-����U�=��R�u�R%YR�mؔ��|G��vTu�*�+��c%K��o�]S5U���e.�vU
U��#*��Bs����9c�Qܟ	'.
thG}(�u5VN^1�)�0@��m�cCR:�aY�8y?΋3�w��9�2)o�#��>���~��5a
�,f�;�TbZ�hJ�
]��j'?�<N�z&���:��AJP�&���@�B;��(g�C��AK��=���:�J�����M��Q�o�8n�ז�{�mDcC.�t<��/�nM�c7�(������L�@'�uɴ�ue�J�l��!�S��r.0e0�o�:Sh��7sF�`��Ɛ6���&����m����4�I�4ӮԈ����"[œx��G�2�*b�g�U�'CJ�D�JRHE���{6�E�6�myiJ�҉Z_M�4}Յ������[��G5�g`
�hecq�h8
�j�a���8��SX��A��0緁��cO�eu4���+�C�SÂir�v��P��,��nqm$���q��ܬ��ʪ��ؑ
�-�Hd�H%'aͣ�k%
B=��J�G�쓽��T�:��Z�+S�rs<��%�	"�M��R�Nf[*h���w��.�\RB@�Os|���qE��f(�ZU��B*�5�Mb�X�
 ��Ͱ›�iP��f-�1�ۛ�{�3<�]���"-u
�pXo��0͈�$#�3Zwʃ��Xq���\<ͅ�V^�a�<l�Y>�y!x*�Ds�8c>BhQ��U��vm0b|h�d�CF(IL�FR�|�����b�K���A�/��_�H�ሌYI��4��֔
T�ć��,��$*�Y�R1�*��Nv�h��Ѥ�aK:3$�CkKY��d�r$!�<�,ꐇ�'�D���5٪l�PȴʞL
��[�R���\�`BV2�qR�<͸���/��G=_�%�B�Ï1i<�Vu�<�W�.�M��ύb�	T��ǔ����|A���/f	c��p�_����
�2�e�sCV4�?]%;���IZ�Y�S���T�4�q��y_���+aN�
��0�����D�rf�!}ZWQF�2-T��?�LR�e�k\�!G�A��jWB@�Q�pl�����45�9�����$:���]���h��J`���H�#�zg�Z��~7.���W��.X��t�"<Aeˈ��S���=��
��a:���͆ª*�^���
@=A�"@�Hp��o
� �j]��I�S�;6�'�����"E�p�p�(���A*#� �j��l�E�]F%u����h�N.s�F�$�of��[�UTl�����r��3�2)h�n�2G���<D-���j�WQ��`�ܼ�yr
�P���9?ۥ�t�2�:�շf����/��u� �s,jϛ�����1�łr�OB=rS5�U?2ʣ<C|nVx�*`��96��$?�|����̄�t�̋B�=�IG�.�iB�|�$8R����$U���f+�J�Q����� o@p�L
h�`S�/m�-�&ɔb�~t��A��_$�5���
�5��U�=�������~�2l�*�Ź���M�vȝ
$w쳰���@[�- y��'��H�r����o�+²>�n�8��,y@ru�,~iµ�j�z�#\��+�:Ů� ����j��bF��_���#ė��c��1�����q������_p◬͎�R�ר �ްk�{ThlC����ĸ��,�e�pⱒK��zA�˶��+�y?�"�AK�&n�`�\�_p��MJ7���}:,�`8LJ,C>b��'^�?�H; Y m��k���u�s�v3f��Q�#%d:54U}Ie�ܾ��o֘��$���/��\.m�ʪHC�2�
��Y9���g����
A�ǖRx0��P5��Qݥ7�=΍R�O�	ٙF0߷u����Jl���u&�S�ht�8�fk]m'���5Բ�=�&��WZ��&�G��_�:���6q��*��
���S*����P�r�@�A�w'�ȹ���RY�}'U��?��P��ť��B�QC�+R4x}L���1��W�9�]��C��>�C+l nxl�Z­Y���<9Jo�"�JlST��BP��MF	��1�w9����0�p�*��Φ,�T�x����T*�E��
���i���	�������OpT��ǃ�NU$|dE�_���6t�R#gɭ�;h(J�W����T�E7N���_�:�%{��F�klY�d����ч�P� dU��x��=WB��Z8�J�,CeI�����8�l�"IC!�s��`���G3'l���Ƥ�|U���3�ј.��$�{�ZX�se�x�G���sy�b�dU�=b��[�UMY�)���@
��o!%�x0��˘���]f�e�����=R�8ͫ��g���Ǩ?�8u��1E�wU�^��u�›#
�e7�2[ҙ����L�c+�C�*��Xb|-�4j�9��s�w��Y�Z�ʂ��Bb�2`F]�  �4D	7��<>�/�«��+������(!G.ACr4�'KvU)u&���2OuF(T�T{�<AT
�Q�Wp��J��(�Ag
�1�^������m���`1M���[��3���A�i,Z!-�/5t嗰�v
4��TlEY¼��(��'����U�G�����MDzx
�LT?��
m>)�2�i���D�FS����?R�T
zv����&>c%a0�i��
j�M�����D_
�UZ�9�=	���J��}(���SN#7��V��=@
xW��ߣ�H/�t�:�S������C��	NQ�:���Ŧ��z�!i��=m���I�8�������̵�X-�qW
�Ui�"�@#ϻ�|��>rɞ"W&
ĘɁH/���Isb:|t�����m��&x��Q�/v�K����9镞��?<��6HT�,e�T���%��B-3�U�Y�5�����KXB����3��i)��l�\/<���Pm�@�^I��($ՄU�Ɋ�mp�裚Ou��J�-���	��*A�K{����>ǜ|�oq�|Xp�D��e��б�N7���W��'[�)̽�h+��U���0�Ý�����	u�"�4-�p	k&�����(��1�g�3x��d'K�� OLS��eC�&�թ�
�Et[�'��'IB%
ORwQ��)nn�J�r2�qe���$�E��!6��!
�Ȉ�k��՝�\� /'�г�ؖ#s�ȺC,��TBN�
X-�F�	,��<��i
A\��� M�t�2d(�>�����=��(>��h��q.��j���f/z�����!Y�g�h�n�����R�:(�'Q�����rD�44[7�{�f�|j�%���p����K�Tq֖���:��g~�L��|�P�ɣ����N�9�3r��՞A0���Os�(�(۞q��\�A,�+�T6�n��
�	W#	���e�B0�����i&�U�^2_���`1�rg��ۡ�bS�d�hU�@�.I4�n*��q,iQ�9��$0�J�'�I�C���&O�S�0��-� ��cA�D��NJ�d|g��~�� ����]�4T�0(�P��fW�I
��hG*<#<��;�.�}kW�tlXj��>��.26`�0��f�����H-ɕ��U��2�
���,�i�C�W�F�{cFGa.�j�:S�!+�2Y�x�C,m����PU��m������ph�K�Y�JzX
KH�9�&Ǭ�j�2h�O�{d�\�M�!,Y(��ܒf��Z�%�M����T�Xg4��c��Yh���3cÞ��X3y��	�)�HN�UfC�L�"�@	�i��T	,�S�8:Չ�?��[����+��U�Ķ�(�ÿ����C.��F�Ѽ��y�e?^�iU�R�J��)����ɜ+g���<�G�Y�|��xN��9j�$,ZG�ת ��/�	#Z:D� #�`%U�܍"x ��4�4qz4����Pc�{89�-�l���hzV���
��bv�R߭�F�%M�D�"g0*�^��|�l$gdI�Y���$�Jsƕ�8)K;��$�#,d���D�	.auh�s����:)~�Tj7*�TrY���m��@���ӻ��s��en�D�V��d�~��`��6:K�r���M��	�|���܀�,�.p��K"jU_��gO�v�P��`&
ܽ
�YK�.ތÄ��h�*�p0���.JhR1�j2����k�l=��JL&6H��!y)�L��VV��^�7��>�Ma��GN`TY�S0:M���
k���KVJ��aT+�lia��E�Q�g�����8��ǎ��B���ĆT5����cK1s��Xz�ЕhU�|m$�x��1/`�|}ټh�1ő?�)��}(ryx���F��V	�P�U�LE�u."9O��l$���Qw��
�yɅL4�Pw�]6��}�N�JA$��TUm\��gl�ں^ި.)��30�h]�}i�����%�
D�I�gKĪ1^��n��!����7@dRF��F�`
��؂��������O�9�Q!�}$�i?J�+Ie�F�7���Ok�r��.�E��h9�Z�y�QJ��.k���˖����R�aY�q�&Q��o����v��HX)��|o6�4OH �n�v��O_���/��_����|p��3�.�n��Ĩ+#��-���I*�u�X�j�+�NӔܱj��F�Iq�F~Ȭ$-t�-H�Ղ\����r�h�V*HČ��E`،��A�ꐠb�W�M,A�j��D"��K]�:�,M�.6����:���5�GF�"ٳ�q<Ön�J"��
����x��LD�^k�I�>�J|�;v�t/�Cc�b�<��^(N6A/��y�uu��}�PuR)���G���hc���;��aYk��Fbe:�ͫm-�T�q��BM`�@E��>֔l�Z�l\-1�,�~WM���v�
^�d��R[��h��LʱDk���M���E"'�����-\�Q�j��"z9QuK���<>-C�dZ���D�F B6K�Pi�g�8(�[gYH-<a�A���F�4��l+�hc*V����
��r�L��\qtz@�v�^
Ǹ�뼗�D�yYn��`�D���B�5������F���
�)9O�/���~n��o>z��:r@:l31����j�@�B�&�*+e���j��	�XcI�Ud
C�c�Q[=���r���"�q%v4m�\�Y��@�~K���q���Q�5��M��M�7���~�"�Ϋ��qKj�E%l��yԞMZX�����,lV��'�@��JG�2X!����)d{^@v-����g�G��ӗw��]�_L�X�=�1�l�YG�b�?}j4�\(œ�y�V�wBp�KJ�`/����gc(�Y:dU`�!�H�X��V%��H�ZH��~
�|�(f#hl���qkr���̖�Mi�[���r:Є�OE=��E�e���Qz�ɩ�=s�6�Ve
��+�C����N�qA
38���Ȩ:Y�eX�1,��/��p<��.[15]�|��UK��u��H]JHt;��H���Y�s��K�m��l��� ��cg ]f+�"7����>n���;���ٯ|u�˿�s���?{�m�֔�(2����f^(^̭�՜��1�P��_�]��0+�n[-�e
Igh�;�~�f5�W�xS�o���i��V�l[R	1;�b��HQUq�0_1M���x�֞���t+�N��"#��o<�Rm�|��ΐ�1,�P]&�������>�Q�&E�$�J����
��r��<;%|X�[̨_U�؜��>�Ό��^�/�y���	�}<!:̹ݏy��rߧ��)�%����sѨv����k��~.%��ՠ-<�D(�YKUTr�I�׷���2�յ-ʦ�M]Tu)�&��O�Rdg&[x�*� J�0�
��)�.�<P_h�r1&_VM`-2�BȮ;�34�+6G*($�A�!M��/N�9��1UX���)��V5��%�K
WDG�/��$�W��tF�P��h�(-�+��+wu����d뿂�e���8�i^�+�%��A�康�m�+�<�W[�8)�!ypg���|�����_���~����\�������E���9�g"���p�@닫��,�`�&az�؎{����g��V�BctЦx�,H@ D�(!�q�>E�'}b��3|B:��Ē���?�8D�"�@A��:u!��d��9G��(�����Y�1��PG��l;
6)�1巇iJ�Ĩl�Þ�h��b�έ��v*6�QY�uL�2�Rq���7�����^����='+j�k]ٻ��IX�������ijP�M�,H�s�9'�g8D愜�]R�cW6T�pnFґg$��WP��ܸ7�8�q�a$9��.޼ڽv�_�.�*���6��J6��Ĩ�e�:��J���Q�g7�,'�
)VR+�L�� B�B.�j/U<�n�٩Ph�6�*����]�1E�΋|G���j$q���NAs#���{Q�|�y�:R�:�_M�A���0+J�
*��� �oQ��#'IP@*;{�?�=��Uxi��k���1s�4�8:�
��Q����{W�e������מ*��S�C����V}���JB:�8��I�sI��lf�R(6rc�X��R*D�������yi�a}~�L5���WXj��Ĩ����r�dCg0
�tfT|�R�ܔ÷6S�-bO��&�P���hw�)r���������v!�j�6C(�0%�KEeq�����蠑F����wi��w�+�Lڗ��x�`>���Õ�d��Kx9���Y�G����pp35Rn�6Q̶��`c��}��%�`������ð�J�D �(�Hp����_횫���5�[P�uE��/yPg\_S:%�ېyH�0Zp�
�!5M�C�&�U_�Z��R
�/�8m�~[�g3=q��a]�ԊAG׬(�ڎ��9Ą���`q]��~Z�	C?�D��$�x�����q��
��R�I�d�f�Q�K�C�W���y)͌��R��p)�b�~Y1A9_�l��c
Z���L��h7��B1�zӦ
�7r�\b��ԒC�������o��g�;���(t�`�Ah�E��-��y�Y�����3ݶ(B�N3�΁{9��P7�)�I"�
�]t��!nKƕ�����&xvt�h����^d*�&�D�0\J�%��0X9w�G��aɜ\���z]��̥0z�ᔮ�,��T�e�Θ�=q��T&c&Ls�H0h�	x��H�D��l.�)��3�G�������칠��+i��+}���g��K�GU�a��o(��f?�M��d�[o�=��	�_AKwڕu	�u(=�{!N��R�ը)}K1E2�$�\�����t��RbȉTu�b�v��Tސ9��'��$݀�0�e�i�m߭˺��)!�3>Y[�f67S0َ	�i_��<ՉOƲ�~EȴF���"���O�Qr-I�$ެ��p��XWhK'�9�*��4T����5岀W�U�U��J�jߵ�/L)p�����#��W�uA��]��Z�Y��0[@�
�ܴ��ڼ:�$�G���b�@U��J��s1yOTv8#��C�6�MQ�_O�A�n��������`#dZ�M9�E�?»-���&�f��#*�K
)�1����$Ofb*��6y���a!N�ޢ���Z�ͦA��
�L[oV�G�����t��|�E���D�����^Ơ:za�L�i�v�TE�'���)�P����o��j
�3��}�R��H����d}�>Y8���s�$s��)�"�_?Qv�^@�~���^��kc�6��"=�mmҹ����i<3'�ͤ��Ed	�٘I�(�㖎&M�:�*�M]]��k�A"A�@�b�q�K�`�U��9,mVE!�H��ȁ3,�;N@�7��l���Je���(D��X�1��2ai<�-Lte?�.��B)��m�D�[�0���8�ӌ�i]abl�{���
�^Ӄ��KHG�R�ʇ�W��w����-+x3�=�̠m�V��#yV��D�'�P��p��n�yƴ��IΞj�������
̬��Y�Ӡ�f~U�<~�S�TL0�D�J�S����ViY6i��"+B��SD_s�S$���Z�|��rR�5?.�Z�S��cTjM��y�H����jcv����qD!��A�*i�oA�+���IbМ��
�Y�>�J���Rlu�Q��؈�IKTEV�G+ՖU0�I�6�]f�.f�NL���U�)�3��@�:w�$��]w��z�/L�te�‹b����ߴGe����Q-�O�=d�Z�L$�y��We��o��j�l:Cz�59sQ
�v�k�zh��([��������Б���,��,�U
iSQ��	���k��E*3�x��'�o�Qw��j�� l!C$�=�Ń�&�K	y���8�G�wJ�fv/�w� �.�$R��sW0�w}���-}�S�̮��HH"���ʅ�5�dd~�i�z]���(�|-��蝩$mY���Z�M!ɥg(�4@>�pQB&�+��̈���I1�X	)@�P�t)4H��8w��*6��!n^c��!j����(I4��F39<t���t;L���xP�Z��2�`��aDP1�ɣE3��v�k��9�Pv*�"�x�|`ؽTʡJ ��U\�A�~��k��1Ž� 6��3i3nLV[x�MS�1�;����N<���Y�˹��UF�p��*U���=ĨW]��_�013G��$���f��p� 2iw^D�$�����f�[��e�s����)VzvJx�qR��ʜ�ы��:��G:k�,�_��ߍ^��f�xF��Ɯ�Ωu���PY�Q���Mh�rm릆�i�V�<Z�$,KQ�,��biۢ���o^$��4`O|��Ä��C�'�W-#��1(��Os1U��%����$	�{I8е�s@�6�Lh��
�̀a��5�g�"�\�vF��BS6	���!ɚ���v�dTN{�R������$l�u�؏A�8J@�n=R	��tWU�#x|)	�C��s�kwJ�3�WK���ܪ*!�t?����aW(^.��f���p&�I���rf�_�F��I��P����D?.�vg��]Ti�5.jC�uX����~���+w��V&Ä�<�Z�Q��������_�H���
%��XL�������������%1����R�Q�3q�ͧ��S��9OY���yy�uBC�W͠Pb�ۇ��)*�J;��<�b�X�,]�,Ӯ�6TO-(X���y8�g#X����މ\���la�傔�d�]=��L(�l:��P��L�!%��!������Z[��7��Uk��M<�r*��R�I*�uR��
�)�����?��_|r}�=�4C��B�[2�>���.I�%^���H����Џ�W�C3��Y�N�-�+]��H�ϧ�|�u�
��j�Gc,���]�p8<���������r(B+q&�9��G�bq�A�E&2O�R���`�n�s7)"�H��6M�T����ԯ6�`�3���F)ˆ�4lqA��M_�1K�1���2�h)���Q�e7J9�r��56[Y��G��������FZb�BS�F.iv��ed��.e�.�6�J��I>���uߨi���:*�/ifY�]/�^%	�NpS�Ԛ��[_K5��c�`���?
�g��b"*K�M@�C��B`��Mpt�D+��/�&��H�J��UF�q�N-�6|g���$렑)[Xf�#���I����31�,�c��l�jх{��6�a�@`�®��Ҥ�m��l�W��	���P�統^�ڙdN�*m����`�<����Ѳ�3�|��������X�2���Pm*�#�ؒ��UP`�9b�!�do�)����on�/������{mEXj@��KR�4-�zT	�]�t�MJ��f�����3ml�J��}�-����I6�
$��2Že�]�p�9�!<z|#_�o���KD��r	M���#���沫�A�� λ��<�.b�$�m����~S�-����*��X�+��S�"�#$r%�oI�Q�@�6?*�h�`��6��#,�
��slKՈ�@�'��j���WJ�֖����N�DZ'g�v�?ve9�9w;��7-< <᠈O&,����j�b�&��z���W�1n%iT5(�S26P�,�����y�0���gő@\9��І�b� ���Q�N;�9��W#3F��,J2���B��hNEUP�|�s0Z�	K��
�N�g�-��&�]l�b
�C�|-uC�[�iT�$�D�Z�IQ�.ySm���#�)�]LC����M��ݫ#�=�m\`�Q�YH6��)�߀4��m��̜=Y��w�I�������T5��$�G��~"(%�B�E���d�45D�z�@	��:|ohL9D���wm�w5l�T[�	�l�
x�Y��i?�H.]XV��d�
��@I���j��β�$
T�@�ՂsDI�����ǷOӜ��K/v�/ڦDc������W�(]C\�e�ʆD5p;̒{Jժy�����q��a�JBn����LZ~�y9�0a����e��&&k����o} G��B�ڒ�2!}�k���9�KGf(�")ʺ8�e���؃�5�K.�j9g0�FV�7�DV@7W;��ٍ]8\���6��J�wT�z�=z�Ճ����g��NjV*gLQ�%��G�+��f�\ޠ�ҳ�Sp�%b�$��6����S��*�Q�R����o\��mۢ�o1U)]�<v�ՠ)�T���������	%g�N��|i=���Qu�U�F4*7<3%|��"�+�Ն�E���	s'l�Lj�v�BfS����rz��GA�����is�0�Ͽ7�A�f�Pڿ��׾{�,�wH���"n�TдD�$�T����9����������"`Հ�o]��ih�Ķ4Fa���dY"�Y1�[�@��2��`G3ƕhG6yfoݢ8Wlk��a?���o�rQ�ao �
'�BN������ԙ�ٵ�?�A$1��C���N��G��=�ƫ˾iJ��9�s�4��ƜF�G�y�ИS<���0�o����a?�I%����������~�ϖ�P��0�(vBP8��,���ʗ_����~��#�<�̘!�ZE�TI��:9�@��WĀ�f�m�
��B�m[_��a��������R�<[��mP�M��-,��]H�j�,pܰ��jI&�e�/�U�Y�)V�H�T���p����_���#h@�C��z�ݔ��ű9噹nn��1tP�';}%ډeS��l�o���Xihk�u�L���*���@q�:L�ղ0Ϲ�}X�Ց�jZr��iT�W�IH��i�2��G�3��_Eh�d�G<�W�
_�S�Q,���,�y�;�>��I'+����N�mX5���B
>W�����Ͽ�h�%�B��)X�N�Ԭ8�e/�_���Ʋ+m߷J�$,z���
�\Hl��%]ZVY�P��������b+Rt�2Y�u"��T<���R'�y�5| 7b/�|=YB��D�e����Q^@#v$X2�]��j$�J�C+F>r�d�K"8
�;\KD��b�W)LP�E/�Z�\+�r�G:�����v�W`/���(u���p�y|:Kn���UF���9\���u됕p�jf ]̔l���tT�4탛QŢ�	���(�#�Aˍ�K��~�	�}'O�2]8Z*�!�:WB�����$���JbD�M�ŀ�u͛�-�6��U0����KG4�]f���C������1cx�Q���j�,(i%š�J��Ֆ���r��H�i\����+��� S&G`%A��2���_��8А������J���%��� e��B���IՊ}��2�&tJy`u�S^B��-`}'=������G�͘W̹��S~T��^�jEo
Y'�S�;}w`Sq̀�o�;

0ⴐt�e�J��� $�ě�|{X���uͥ���tdIq.ҲhK)��5�y��9�f��ϋZ�˟di,�3(�R��$՚|[)��_*J�B�5%���d(nS׀B4��e��Ot�ѓ�g�C��L���@2���̐`�Cx���Û��,a��]�-������i�rn���7�x\n��!IJ2M�<B=z��8,��ogI�q��rz�k��֟?�,��4�����[���P��R�V"Cv�f�ڷ�6��P�Z��(�.�~U�T�ש�x�3�������ր��˾,��ղ�f��7HIj@��QJf����0ٵr�$H]���?s�X%!�
���m0���VjXv}�-9U@k�ꑻ���Š�Q(�ܩ|��^�
�
����Ċ"6h�!��wRp���cJ�-�N����փmN�*��Sڼ͆A=�����Ÿ�ccE�d�P�0�^:�܈�ثV=��|��E���]�W��{u��	�w�ѓyAlz��[~��L�̜'Y'j��H�O5w�N��Nk�����y�o$٪�a
��n½���k�^��=�%�4�����3 ��HR����$p-P��
���ez>��e_K�X��D"�T�Xv+��8JRH�#f��w�.ɘ�%D�8�\HT������F
�� ;F��o%�2&z�d\54�w�)?��y�)`�$ޠ&����9P��J�!�uf`a?��FO�l�3+�@5�� �<#N��r��J}zU��p����X	Z�$��P��8IN8��'�5�$�zfC֟�N�Zi�u[cq6�Oi��JP�'DA�̔Aaⶨ
#`m�ü��<vɳVg�$\ti��`!ȗ��ɡP=AS�J��ө��D�
�Oæ� S�SyUcg����/���z� 鴥%��e�ܸqZ�,�%1G��6%z���,q�E�����qb�u�T������
!8Q��6�� �,�
��7FY�Fꦑ�4i#��i�&��*B�U�$�40Д�^ǍO�[��ŀ����F�E���/�i:Y��X)�S�?
�u�2<I�j��\�&e'jc�ƽt�3Q��fYMh�ZɫL-�g�}:Ȫ����7e�]���P�{;27����D�b�Kb�­�����aZ�`�*�`w!�
z!�${d&���ժJRj�]W��/XMI@V�e�s��zq�� ��u�L¤Ipou�E3
����0ɿb38��غ�*d�Ta?�E:蓔J޻��>x�+(��cw�����|X��`_�nwQ�H���:4�i�jjOe������j'�uZ�X-��~N��$�ć����$���(t�i�;DƠ�s2X�P~�kE���q.���D�zXIƒN���Eg\�Hv���*�Y69f��^5�	f�.4+X5`�ʁ�JYY���X�[���H%L�*�#$�PN,D6	1�
0(t��;R9��(�^�7���|�d�E�*1q�|�&��:X��VM_0�v�q023�{y���Y�������a�B:(��<N�nI�/S5��l�d�\C��?����宄ՠ��ҝ��h=�3��s�o������h�bU��3L���I~�8�c�ꨍU�E_��e}!F���#��G�F�YEq&V��u��^Tq��[�mk��IB�H�zp��޽���S��W��Cc8`=Mh��Z��	�
���%舒�/��N;�3��#5�dO�#N��Pd�,EH@�O�ˊ�H�z���y�p�x`���O%�8
�R3j�'�7��:4P�A��ˆ�Ews;�fw��=�K-yG�g��;,!=Y|3�u#��2��O��| ���~�������M��$�M�H��[׷��8��I��6�\�=Ju�L�]f#��p�ƅ�3�kI��$��**e�EML$�H�W��.U��D�~\��R��m�A�b�PJ��O7�X$R�]T�%SYc��u�mӸ��[�	�i<�E�Ņ��s�ˎ��@�63
^��:6p�)��F
���^�gk��P>n�+I��$Z�d�\ݴNr��= �v?��{��%�@�Fb�
+@��Eves!ߖ�۬Ɉ�>r�
�R�iQnf#_�T�2g�W�-g��!z���
#��_L'��9	Ri�����p
p|j���V��t�"�\�8}6=��H�'F��Vq�K|�
���-��$/�"����9�c7\�I�oSx=U�4"l��kh(i(����/�xx	0�|z�����[E�$Y(�����D-��K48-�0�1����	Z}��#�8��L�35$��f)�`T���9�O��*r�$Aw[u'�>��N"�r��7I1f
A���	"�]W����NJ����7[�a��}��`��O�^�[�vѯ��~v���ޏ���[�{��*f	h�bE<���A:�f�I�jzX~x{��'	�����=�CZ%�]���v��4He�:D D@�U�6�����U�w+�h;7p�����
����E���l;)�%����|B�RpBYeME���F��A,.�"O1-�*��%�'�2���Q	�i%�$��U,�G����3UK��.Na���N�u$�v]�A�«<�|QӹuW�S�d�z�B�'�O>�X9.�H�jH?�%e�U�g�<bf����̜�kD�e�j�t!�"2rKi��Hxǁ��r�7PQ�g��'��r	͋��/ST0�q�S��'<��r�;_�YO��2;8��^*�P��c��p��&ہ(���x�� 
_Bq�BI�˴^�E	Cu��d
d<	,G/������b���vJ"�_*��m`g/�d�I�0,`�@��T6��g�B�
E���p�C~	$&J�O���H"�0�lG�����8SE3�͵ԑ�ŮەM�cX�@�����P��e��=1_0�+®���������`&�P� {C�IȀ6�E�\1�
�
:�6�M�u4�|"F�@�}�YT�lea����9=�w�L�y��E�����\����ʓ�=�upU#�N}zg�5UѶ�m
�m񐵹4m3�Nۆ�$I���2E%�-����YM��C�P�G��lKr�U�/�a�2{��0�����.�KT�h�債T��Z聦:�U��l����)��X5M{��@\eg��l��e�K�E!J-T@�C�;��I⽩%G�:��%�-R�9�i+���\H<^2��l;�f�{ʇ��W�&�v�;�tV�$^��:3�^1�;����'�J�NlzF�!k���!�҉��6E�"��V�[��v��$:��nXR�3Y�+�[L���;����Pa\�`϶�r�C��"-)D{")��4�eΜ�>��E�(`+���ZP�%�.j2X�����5����p<���-F�-�)�Q��%�-h�b�2��&��A�}�A	��4b��d�p�k��]���
��- ����
F���)~*�B����� �`z�b�0�,(K�+�$i^�N~�б2���N�y�D�"V��A._v��U�Ph�rQ:|"f��]f��i��
G6�+�����.�$�K��id�˓J08k�����!0TH�l׺uE%��J}�K�$'���@_BTUY�IhIB�Kp�K�䔳Iя��W5�ǒ�UM�%��|�y��U��$�g�"zt�E=�s+褕�����Z�.d�9Y����_pIj�{�E��
�(�.1d�&�Brd	U�r˒N��H�%�|P�%'��01��|�%�@�\ER,ŰS�e��ʒ�Xb��U�H�͕����R�
(�G�z̋K/��J�(�zNl�<Wr~�&�UF���)Л�S�4��n=��՘?7�0U٢8vӆ�R?��vȮW䬡��/�w�$�j�l�e-z��^,ɹ��
Y	�֕x"3�
`�
!�U��,%	�-$�����	t8�*2,@P@���HP$9X�(Gd`���ط���v����+��Al�ž?������>B��[WH�q��鴼W�S������-��#�hxV@	�)�����+3�Z�C��J��y�)�����a8�eq)�Ctc�5Ƭ��j)����=Q�m:@u?,�eK'�䯧aY'�Ɣ���6tM���~
�A�ے ��{4v�O�<qف--k�uSS�|�(�H������#�pf��m�Y���^T�w���~Xa�k�=�嫯_>��n��YA`O��n�'$c�/�[DN�/W	[%#�Hœb��x�Ӑ�Ty�	�*��En]cFl}MO`�О,V�V��kN�QU�dD��bZA��y�ܾi��B��A� y[���uK5��H?%�ϔ�4!�u�g�B�la��I<@�"�Zi:�
js8��4�؀U���t�i�
�B�	����V�̫C�t߷�Nw��E�V���9�7��ѳ��i�U�8�b�	�+�Zwv��}Y�msq��<	��4�$XQ�jp��˦��5�&��ò�DXJA�;x���`��@�A�J�z8�%j�[�e�uT���Ni���8�09���4�4�7�0��@~��w�K�8�^�ȫ��T�:��}t�'����y��J�0�7C��k/.Z	g�O�o�ø���xj�[��8���IJ�b��
�v��������Cq��XB���b��:RIh��ؽ��mb�d�y5�7�G�ڎ�EZPɜm�./�讫�i��?���@��.�0N����u,S��խ
��0�6��T��w���]�Σ�1z��I�Io)��S�{�H€�
��aX=��QIFLEM�ʛ���l���V�ؔ$h	I9�lgqP1����W+&5j}
}���C�R�K'?/I{%�rLRK��PvmJ�W�)H ��^hqa�fO�,])���gqM7�	��D�e��M�9��$�&X�:e%���*�e�1�|
M:��l}w�1얧D���t[��`�f�~���/M��R�&}�2�eD�t�U��h�L>%
d�aq�{,O �S%�2�ʁ�85�J�����꾗�2�KӶ�D�d����������U�T�<~��0�
���X1P�ۚ�B"��T�T0�Kt�%w�-���h��Bw�I7ގd�P��ܰv��l.7c����q%u��d��P�� ��y^�Oo��0���k�˦}����q��w-�.�e�PR8s;-�ey:ǫ��.�G77Ooo඀w�	Ș��U>�����i�E!��N�HL���nB.٨Ed[����,IUW��H��^<���l�^l���;Ʌ{�����l�OP��pIo�.���w��6M��qIC��r��B�sǟ����_�����{'O���>}��g5f�R	�3�P�i�d��6�^cA_/~�;�\ooB�JI	��a����SP�?�Ov
�! >�� K��RabJ!�C�hb�D^�Ƀv]�
�*R��LLH�|fv5Ts�$~9����#T���/t0k�k3F$H�m���T���j/��\��:	S�.�l�Qn��5��"�*t�TS���9�:si?:N���r(A����i:��yGf�|���.�92w�9�l�vn�zb?f��d ��)�7�~��+_���>p� ��7�=�~�A�t��� �4�U�n'���\���}�8Fr
��e�S������i,�̍6s4R���4MMנ�Eֻ��
<x�{W�E�m�2��D�2�RT� �.p�reݮs<p�dD�Y��Z�pW�73�J�x��U�Q�у��~�O�i�$��A~Z���43������!��k귾q����?��ܖ�Z#�*n.裛ò�ae��SØ����&$�����&Dh(�G�:���U;�Y3��MUv����]S��S�2u��2J��z�Jt�l�Z�G��$��~��׿yF��X*h)�<�h��H��J8{ڀA��	��Hw��.�-.��	7��lX
��MUPf3����c�u�瘈VG��!�BU�,�{H��e�4J/i׮������Om�Ms�B�#y. ��U�**�� 9�.l1!�d);���,Qs�iA"D��^1'Rpcd�3ڍ$�Yel1|ф8���y��C�'����^���ᠹö�T�J��y�z�}�p�������|̞1
�*�e^ݯ�����o~����n��z\�`������ק��Z��e��U^o��e\��g��\������E����û�;O�z�~��_s�ɳ���_�R��y
�@G�"�X!�/8�7�o�B`�I
�t���͔�/�w��+۪|zX��\��W�R��{�L��b��>}Y�Hw��Q}��s�ej�I	� щ0h��(i�y�R��Q��fLC��ه�\V����Y7T���x���Qr�/<�ry��힚
��x�6 ���P�j)Ba�ѻ���O�u=�;����T���������7��R�l�v3�В�U!(����-���yI<2��C�hĆ��7��$�q��!
k�T+`�}��5}>咽:t��t�P�:l,蜛-��- zKc��6Q�:J�y)I����%�I��29Y`��}]7wf�U����p�\������B���Cb�6��\a�(ɡ|E�)�Ğ��zN
���?���&Kg�/��S�%��W�>eJ�|Tz��Q6�X1��2s��S�6j*r�z��l��<�>x:�?��G�����ベ��-�����z�~w=�x�RYHP��~X�{r],���$��������ۏ����7��+���ޖ�m�������\g�9L��vE�BKT[[x����vX�����ʶ]���$F�(�$Q��.��-f��3���?y:<��}�v�*n+Q*���6����{MeS@&�̓a�3�ֹ��
�V#,�6�U���V����e��6V�W*6"����I2]�&Ԗq�%"4M���?��������)-�X�@���z�ɕ�+@��}mw����qJq�<YR�@�l����
��0r ���\U� ��6�Vєm��̎t>�`AR��Q���֗M�0�Fᑖ¬��ab�ّ�z�wc�@u- �5c���1S&���������d\C�R�5G"�Q��-U] d)��aH�fYb^�O�)�
O�M�󬕥b�F�%��`�/\���ě�6aw���j>W�0�	<�^�i3�g�nP��
b�W����T����6�*u�����XLOO&���ۚ雲VvZ:~���4~����5�����Qa�8
qf�n�D���剾~y�/���G�߻����j���wo����ߺ�k?����������N
���"��"A
�UAβ�U5X���W�·I*T�?�YZ'~M�8C3��pmL�"�=r��<z���rz�Aot��^J'ِ�A�"UR*��l..��q�n�v.�u�q]�J�����B�!����e��"GZ�&��J5�J�c��cU1~�͚�:��[����o�MMJ���K8ڻ[s�K����u#1Q>hE�W�����"	��	y�e#��(�����j)ߩe�ꭤʕ�M�:h-��4��� ù�At[}[Bܚ:�`#�b�
N��d�="H|r����;HR��2�L�v�5)׶8�hq
�'��`�!(bR¯��PΆ̆����������<�tZ,$��Y�.H�(�����=z�rե$�]���!������T���ep��R|X�FE�U-+��#5��J�q��Vw��2L���rԳq�|V]��G�>�K��~�Y�d�+��7Y*�s���8�LI�dx�B�_y��/��?���/Ns��M�t���87�c�a׎�zY��������~x����[����>����?}��/>�=|k}w�$}�h���w�
Bz!��"%T��$uXp��I�x;�@M;P���]#)�c�gu&7m�5N�4@�Y2	W���F6���w�AR5)%���1oj5u������Ӄ�}y�a�o`5��~Ǫ��H��܏@��\fc�D-B�xqq�
���#�
aH�/�|%�d?_���o^uv�}��HB�o��(���i�?ח;��$",�,^����L��5��֕iںm�J/�C
()��xJyn�£$�����1��B,W
���G�/T{���C��*�EU����f��\;��Akb�*az�yΫz����U����R�Z%��(8,�H��$7F�&������gBo_�#$�!'�Y&�<�l�O�¬wf�ԞE؆Vԫ�&8w��U��L
HU���1�&d��Hw��,V�la�N��@	>〕��|� ��gE���d΂����t�W8�3D�d�x��G���u�fk�g9� ��!�Ƈ��>���~Z��%;q�Ǫs��>l*	o�o��ç������m%'�l)��ׇ=�>�����ti�K�$p����(���v��hj9�/䰇@�D��+E'+�u�Ⱥ��`��Lx�'�ܚ���pأ	/ K��(���Jؒ�{3�]Y��Y��PHb�
)��'v�Ei����@���K���Ž*^B�T+d�"ԥ~��]�K�+p��D�"�P�����~��˯|��}����ݻ��k�]m%(�`�Iss�uA-&��+yA)wD6|))F@,߹��zC1I"�C���k�+�@H�"��/��JPS���J�0R-&��"��`���~����"�C#ҡ]DW�u"���rB\�j#q@N5I��{o��Nn�F�1�����4�SƾPc�<DY
���.��5G��f!6Lq^���N`�@�"�:�8"���7[��������Q�c�WL��a���z~t� 9-�!�"-���x�~srD�ݼH��)����(����$��a�<�lq�U���5�����.�����,t�,�F�g��h�g��z���]s��:q���O��?=�_�|�P�������~Y�{Tv�|��pO�)q���U�d��,ɹ|�8M�����W�;�JIEU;�嚮��Iw�)@$KT.�_<����A��q,R���ʇ���Ʈy��a7�dh�H_������;?�λ�ߤ�'��'����՗~�s����
��D1�4Av�\�{���r�]{9�)Y\�g�V�W?���ծy��\�Y��K?�z劯��[���g�+�W�Hz�޽���87Hi!z�Bb��a�]�����8����5�.:���<a�!�V�
�_���'�k�䡠�uA�h:��kʩ"��k�46���H�@�n�y��|o,�U~�-21r��/����lڳ�"���#�]��m�u���D�V��cK�  ����J*�R�vش�� �`���s��ɲ��A�¨��
�T��d�NS0��RO�6YkV��s*|�H�۸Xv`��@˘粭t5��TZjN���en��7`�D��ܕ�:u܏��س��̥������	Az"���(W��F[�����"����K?��?~�Û��fx�0��'����?��G���~��|P���oVOo��'��.�{�s)�����:��~�(�Zh\?��b�v��j�k޳C�S�Y�8���_���M�C�E6F��...�0�ܣwo�����%{Z��GW�{��2�=H:R=�U�sWW�Ǿ�������_�^���k������x��W٠5�
�rv�4KV��III�ޮ4�����;J�m�(��DmU��+��_���?���U���o�����T����~�da��8�]i߼���w�߿wy��b��S�Hݓ{�J��T�S����
%!���"��u�O���|�PG�r$��I��� TH�\a(b��"���h.j�N�,�2A:�g��5}�A��5xAP��b�a@��?�(�3��*lY-��U�۪�
0tO�Oed��1����¤��(�Z���Ȃ�A�Ґ���.P@�a+I�~�����H���	�����w�۩�R�d���/��sww��
�O �g^)�<k)mN�Oq8gA�G��K?�N�#��~�����*��eM� �N~aN�]��An���r^II��~��e����·�7���ӧo�Oޟށ'Jl��o��/��|��Z��7���k?���|�;W��?��n��^��r�Cq�(��BB�*�C��BY��:�����Gۛ[���a�~�rֻ/�o�3�3=�F���.@ 	,@�C��)p%q�HŎL��IpA�I��J2AP)��
�H#���0������˛�~��{n���Q
��{�Y���~������rm˱�
j̷�Z
τ�Q����7��i�,*U�С�`��鱩�q%X@g2+��cwK���+�g&h`�)/}�?��s�bjI�0���j��=�EIw�}/oV�t�F��>\:q}kʷU�	����ҕ"V|\�ζ����ݼfi�����6���\��n�F���%�r�����O��[�I�Fè�ž�~�
��+cӥ�m�<�2���7��;��Os<�Ҫgi�D�ұEL,g�>@�%z\x��qV����i�LI�*��[6�ՀH��R�q���R�@ �����V�e��r��bC������g�1My���N����Ip%��6E��HM
,�+w
$Ħ %`Q�PRC$y��(����L'ӂ!yN�����U���1���l��du����@ś�l{�`9����>=��z\J��–�mr��[�7~`���Gʧ��ӥ�fB�AA��)<5^7����_�w����O�c��ܷC�8J|}��/mo
G��,*
A�^��G�
�j����L�����¡���5K����M�~��ٖ�B@w�lL�1>1���M8b��Z�t"X<�Q�����t苁�o�fN�3I֮��б�$��@���غ�
���'�� 
�u49��[���y�2gl�@���F��Ȕ��{���b��qQj���$-P�ت��_)'q�K�Z
M�ZM�9�m,7w^�9�9:����,}��k�,K'v��`ab�Ѽ������7RMX[ߡ7��tB����"��l�֪��,�<���,ͱ��Y�^ԭ��[�
��Y*^��1�1�SR�I���^e]��J�x�YPkW!(��gX��i
G��$7��*�(G��
n������!�����a���G*�����꧲�RN5���E�re"��t��ʌ�V"������J˭�~U�������k*ڹ�*><	��TTF�l=�2�gr6=A�|j�5�*����"��=@oΊxgl��/�co�m)Z��c�W�[��Ɓ:rB���g�n+��t���%��)ɮ�d�U�xNL�>V1���
eT(r
���'��+�W�e�����k��̴}�G!'����`�e4�2�4%��S��I��(Q[yJ$�ì��S�u�(��ȫy��d_�1���0jؘ�]��*ŘCFC�T%X��&�5�W�=��Dp�K��X��u���z��`VdR��$w-�(�
gB��k�;���>rg0���L�`0鵖f[��gk�ek��孿y��+W�7�0��QF�-'Y۵O�9�n5T6#�sFAD"�aCF$t5<G�p��w��~Rx�1�X�瀜��4jvE�����!%�{�d�	a�"�+�.�5pEݦ�ȶu�C��-X��'V
z�y+=�b�-!����焿�8��{ӲJ��-C*�����8O�\+�ቀ,Z�a��U
��y�-@.��z+��BeibB��b��M��"��z�3/4>��\_�[UW�j诪�Y^��հD"�}��0&`U���Mt���IE�\5��79�h�Z�f����om�ǧvn� �꙾6�
8�I���]��)��q��ͥ{�sϧ2��Ķz��:�a���b,6���XG�P���2�*(K-
n�ݵ��Y͹՝����Г�)B��`�N���� ��G�d��P�$�E13�@a��MK�m�8�l��/�V��a��r-�,*+�Q�����	�R�Q!�!�Q���r���X�r@�bg���&`"����Xgt�	[Q�`�F\Mu|c�1tu��H��0E��$Y�����I��qr����v鼕�n\��D�M-U�|����j���+�V�ˤ�Nj���Ԍ�mwΞ8L �O���<�a3Mg��:}7A�ř�kq���:�(AIί_�KKtn�e��Y����E"%H#�w,F`<�to��%ςD}w:7�P�X�\��v�t���J�5�ZA�Qș�A?�V�H^�CKE��\W	�c���W�ҠvR�j7��j�����)�]U0xrY��Y��	ᤧ{.���-���Pia�ϫX����gA��q5K��Uy�U�^{9Ѽi�֊��l�ɦK��b���/W���Ϻe"!����g�]�1־��(�8�S=����\��7b_Rauo��N�K���M2��,*L��4݌�zE���\�
�n���l8a�u�FY�6�v����`{�`�Gx��x�o��l0IM_�v�&�3i��2�ʘ�0l�AQ�2w\����I���;���z�;�K:��33N�έj���T�U̻j�����P���ܷ�~��;�Q���.�Z�ӓZ���]�1oG��k}	�zvT�3��Q4C:�c;3�_l��_1�`���~e�r�?>K��C^���lֳ�uǡ�'��o
	����C�����:�W��e5=� 	�Й���a��֮�͚��Q;�嘖�Z��c$�Kȗ�$5Ӷe��R�#�Rd���nXrn�=�Z���	ƚx��0I�#��R1��L��q��l��z����T��Q]d�5d�2S���j���1Bi��˪X^�
dՄN�N�����i��hYB���ŻYR��[�ʌ�T���i����Z'q4��v$�T�ئ��:�<R�~�t��'R��
s���8���L���dS�G�B����w&��UZ8�"�w�����ә:Sr:LBN�U�7ք�o�-��f�)�%��)�����M��KQ�E����k?������kzKӏ�ϨZ
C���m�kNQ�ϛ�b(O�l0�|��5]�n�� �z���'Fty�9ҡ骠3�$a؋y�N�ү�޵�n�GQ7�z��5g��Dev��T�X#务CG(���A��N�<��њ����P��ä�A���=z��=�G�u��b'�,���Н��i���th
5�Y�A��T�MɶvzW׶�q��^9�BY�ygs�����V�J����̊m�ߨ]�r��b'̖Zn��^Ӈ���A�f`@b�fu�Ao8r�h�ux��i�&H:U1#ǀق�0+�,tp��>7^�QH:��#���fdY����r�I�9nP�–�e�s��]��rX!$K��-��U�>�?+s�|�E��O
�t-[�J*=*n�^��,-Amz�F����j�Ѡ�Q�Ya-�i☌U�]Z���$��On��0���ĀyF��Y�U��<�rU�)�*2R�
�8V�(��)�	�B����g6ČA�>i��A���EN.�6gXo��}�	��Z�
}�d��h_���_�)C�	G�O�|oD('�űg)B`&�t/kQ��:QV3/9�V~��_��u̔����{Wf�|�(Ҹ�N��B�o�r�:|ʩ�"�D��ad8z������W��fU�qR����5�
�a4�F�2U������m���0��輱9\���GA7�BH:T�Xx�,����+�R�dJ���.�1�������݉�D	547�JQ����Ư|�0�ʲf鰬ҵ�ɢN��t�^���e��M�v��K1D��(����BQ�G5�T���e?p��#GWY!���nwz� �\'��"'��q1�r:�� �B��lZj�1U"�׆eQ�D	u�u�-y��S�AF�� h��Uԥ"ϯ
�����$�db�o*�n����V��p�Eϛ�YJ9��RQa	"A��'���Y�L
PDS~�J��)#eI��@���u%`��_���(���$���*�A�R,ÌH]����"�t�A�i�TU(�>UǕ�P��0���,�yT64~��ū+�WV�f��SD�ZV�}^-SW�Q���&�*T�blX6�l~0ӝ����Q���¨����;Hߊ{%���oC��&q�ʜ����9i���-�'��{e�����rF`�~���\�m�S
�q��/\�Z���(�ov&�T��V����t��s��ǍU��B	Մ	���y�a�&�!Vtf�"GY�d*��2�c3l�����(I���^�3����a�,�*ҖQ!��dmx��g�u�7� �f�GM
�Z�Fՙn�-].9B5L�N�E��gf��=�e�_��'a�kbٲV,g�2g\��3‚[Q�
�cF[U�'�i��f��`.\� 
	j��˹%��|�_9�����r.��;���W	��<�+�(����X:�l��R�j�h��QܴA�5M}q�a�z�4�����*�"L�a����+u}5T�%�r5=腐�����e�d�^V�4zV�C�Taf���&�J�������i���6*��u��Ge���AXN�o/��PR��)A���*��YH�
�6FK���'YW�Cj-�J�栉��Z�c���h�&8[<���jϔ����/�d�"�SVN"�k����ݤP��ZE
գV���ܟ-!v
�L�[��4m�'��[�9��6��F�A�tL���o��a�#Jo��-�rS)��]���*1�R,p���?�������Ͽ�� D�)���J�[Rr�>z������PgG�(,=�vk�8@`*"z
��!��'��,�+�L�Q2��S�<��^s��.ݟצ9����'l��3L�Q���eyF(�Ep&�:��,��Y��;�Kn+SӺi�`�+[�^��8WRe�i��������ͭ(�)KHE��t�օS-���r�1�6�Ŧ����0ȍ���N@��c�Z*F���m�t9�Z���TG�:[R��S�Đ
a쎥�����jq÷-!%�A��� ��C�zj��_̐
�y��Z����`6���+�P�8�AV���S�YB��^�b��N0��I�&�X��&����(�0V��	P
��*�}�2%��*+Y�afS���O
�T�x
�~T��c��h��7�2���Y$�~2���#,�p�����JX��6
�v���2T�G	�%���"����H�6T8 ҝs���X%�6���F���C��P��Q�3�X��9K��0�/����ʝΙ���1s'T�+��U�P��}ÕqKx�1V5��o��p>(�k���|��N�Ew��oա�~�!��t���	K�3��7H��,�q�f*�v��QY�ֿ��_y�B�Y{<.Γ�L]S�B8�/0~����-�QZ�ͳ�B�/��-��4��Z���pq�1
PQ�W�,g�C�f�t)g�Y���F�������׆�o�`��aQY2���m���r,��!p!rٶ��g���2D�D!�ggy�w����Ƌ�/wI^֔%�V�
�-�)W���V�庾���6@Ša���v���ѧ��}�[n\�F���`�d��GQjkbN��و<6S���t1o�u)�5W���aײ�(*�à�ѣ�6pQ�6	~�ڮ�h�����UTq�1��a���N�@�bD7$j��,�U.d��EG��]`�i
4�"55D�Y�°�V��a�h��vRML���\iW�ċQCQ�q��Qq�j�,�.�\]^@ሼ�t�-|��6!�Q1�^E�SW�r���&�J0!+���,�1a�,�8@|��dd�b�zx�2腔%"U[���Z*沢Y���u����6]90��h����U{Ad���ݫ�W���Sɧ�m��� �$o%9�zq�����j*�o�1�e��#zs2�B�S�����k���b�+@��i�/'�:l�Ǵ��\�y�ѻ	��8b�‰�� P�����6��mhu�{QJ+����h��xh���^�i�Qq�7�n��W�j��8#�؅�.�pc�
�o��C���;H�pG�]��*��k�6�aQt�TYh[I���UN�'�m���)�Tj�4��<LE��f�k���.��)5�^|i����D	�
!�8Ӵ�]��Z��=S;4#�mS�9�"a���W6��A������N�T���x��p�.lM;"�iF�A��y���L�x�D?�N�j����
[��4�0�Aڍ��-�B�pz�����6���5��-�7ԮM��PB�O��F�E.!�N��N��0��>dv]Iur���m��h�!m�p�S��a�*o\�+%(.��"�/��aժ���A?Aq�K|T���)�za�g6��@�'�T�we�}��5TAAPdx�\	y�Q�	Z)+wX��_^E+"�G*���,Q��R-����ۂ"������A��<��ʑUS�HV��Wq$I-Mf�8�2P�}f�J������c?kA�D�*�Q{�;y��o6����	~����Z?M=�/1IW�����('�ı5ϔ�R�k=�;fHv�&Z5��w]�w˱S��'R<x�z�Ǐ̷����i�cK�:1�����w���Ӌj�st��_�kJ�%�7�@U�"Bht\�0��������+�K�H֑��j����9t.����N?�S�	������r4L�	��+�հt�!I�X��#e"�l����
Q
���p
�׆aKO�^��hXԂc�b�\�t�~����S���M���ec#Nej��O�һ4L�5��T�Qnpdz<�h��O��~�"㇙��T��Q�3s�c?�A��[;�ޘ�PB�Ne�ew{s�J������H��]ϯ7�,�a���o
�#[�kbk�)���`�Q�uI������,,��Ù���u��3�ml��71SFE����,��)�T��ݚ�d�&�qA�
���T� %^ƙ�J�S�2%����|�"3P”�P)�9H��R���5tQY V>�(�r,�r�jG��{�-�P�K��B4���,ɨ��<����X��*��Sű(7�P�oY
VdP��*Ca�Ž���|��Tf����|�v5s�� o�2z�N��$o�P�N"#Q�-�s}��,Jd%tه�n��؛���� ^58rr2�ڍzf����W��_�}���ڎ�0�@v=0
���U�aɞ�|����h��H��r{4>t�QW�qڞ��I��{�,���,_h�ud������-�I�,Nl.�8�w��NH'�q�"I����p�v�F�N`�ZcƷL�}�\��K�,�Ŧ�v��4��y3�E��vK��#��S,�`5��t��z)��8%�X��պ;c�;|�]�C+�Ҫk���#�^8�'E�Z�U\�ҕ�vZ�dH�e�1�ugn֏�����[�p�!�]���T�TG��C�9�<y2
:�`�G>y�ԝ�����ˣ0.v.'~��l�u��T"�_�-�Q4�Ā=�^fy���ѧD��`,�+X�Ս���ޯ�6��tj�"F�K�w�4� lH�̐U#+�0US���6=Ͳ�#Pa1�TBn\�d�ah�6Aᄰu_�)D��\	^�'*'u��U�=�z&B[
04���6��u!W;M3\�����	��"`�϶��D�Z���>&.bȺ�#<1N�Pc��U��j�V�[��Jc���	�Pg�@�\�v��,�*�b�������:%a���F�L��fUӓ}ʖ���̘�?��B��4^
��*�ڧp�b3�QLR���H�)ex�F1ޡ�l4�Ͱ�-UjB(w��Y��3w��(����l�
��v�_�Ͽx��V8�<\�u�xru�F�!�� >q~��L���3���Ҵ��l�i���9:sL�RKߐs�N�3�n�g�p�0��O�/N�8�Q\���_���-w4P{3��{�7:Q� ��>���_�Y���*`(,�4k[F
g��#/k�0�in�D
�7��c�{�����ܟqtj��JI��~���9�qu��x��&Z\���}�R����_[���^"�2ʓB<Z�-N�'M�h�.O-�����N�t�d��b�'�_X<����ן�>��/o��Qw1U,@^�s�R��,�B���T������#��035}!�����̠�-��<N[	b�cµ
K��m¾L�FZʳ_)��h�Ǝ�9/���`��X芯���L���1yI2AD�l!e쩤@ E�n�
-�ec�
!�5��r�����4bI/#����J�.���j�e�z̈́}2�S��Z�	n����a�J�t�*͖�%!�v�^h"Մ
��`���R�T��7��\^I���a��1�P��~p��QD�o4++˫���K��V�ތ@�"�i�t�*���ӆ��e�>�;|k�i��R�`E!����@Æ�uz;P�Q��d�sF�-,ń"���BOJ��(��ˤ���I�ᤆj|�F�ܳ�Yd�|�ZO$�&�F�t\���ù��ܱ�?�Ӈ�r[���YgM����r���7,��v�>��������ew3�t���l��$��F���&\��%6�.wJC�X�Н^:Jfi2^34Hx����i-S�Lm��������;�5��rvj�n�=�C^�]�����Z%0z#���k[��_ze;Ì��Ľ�fO�Sw�|k=���.ݸm��H�ӧ��]sgt����t<���9�=������k�N�'ݧ��~�RL4�����N}5�����]9K��(��(�dL�����ìWc#D�������D}T+�?�}LRH���#e�.�5f�HAҪ�75+��s�;��K���J�%�A(o8���beV׊�U��HD����h3
PjyD ~����kۄ̂��cnk&=+Р*u bY�X������(S���Z�C��D��d'�Ȇ�i�
@ �L]ɺ	��S�F�iL���e����⡕����z�Nj'� 
#eħ�WB!YVR�q�>P��L΍������
C$�}�]?�=��{N�8�n�\�II��kׯ}���/}�O}���pM�����Δޗ�8����9Ipyc��4��Y�9m�7=��v>�p:�����S��x{��X!cX5z�y�d��Ə	�N����y�Z��0{����6�V�5,�����bu��Vi���Xn����8}`<K���~fvc�����wI��@�Ί��v��ABw}cs@,�	������8�a^�L�t-���������^�Y?wvyv���o^��ug��:i*�vae���������"׊���-�Q>�&�o?��C�	w�*������]o~~$EguM�Ь��	{�\C�����;���Zb�K/_l���$�N�~�:��߼��x���;���5���a���%�IK�拂'1<3	�5t�����,���@ �eB�y�J�@*D��*A�0����\M�K�R�r@��3�,�����0�v�b�jF���$�1���+�-:�T7���C��HcKa-U�L��dLI�Y�:vp�����Y��O��W0�;�)�P�
�S۲q=VI��!�(�@E>U�$SɄe5fҥ�*v���7���NWE��5Z9|�}�}�G���鹹z_�ʳ<����'�|�+_�ru�9��:�%�sB�Ք}��8���n@Xo��}Q?��c���������ɓ'tk��*ˤ^�9|����'~���Ї�I<��E�躡��rڤ���yM�MU�,*���Q��Üh�)��"[�@Hu���ع�O����A�^d��/WjT�+s�]g�]�%���Ȓc��]��qW)&�LW�S��;%Q���v0�g�~͘Y�6�ْә0��A����t�/
KZ.3M�N���i-Ǧ�ARH�~,+���/�4�R'�ٕ��c5!/lG6]���#YT�r
���ԋKJ��MS��8�	qh�F=�b���^^��86�;L�4��t�Q��5{s� �z=���v@㚬?��=�oj'5k3�8�;���W�w6�-)�a�Gr��mp׈_�/ȗ��+�*�=��˳ԭ��߾~�3
�f8�4iZ���︞Sk�n��e=�q��>!7��.��=���3V)ׯ�pAȕ^K�I^���oP��vu�L���l���è���k)&Y9>Ve��9��&�Y��
wfZ��-PTN���2�Tք	7>��+� �XS�gH��&�J���*���!8�����)3M���&@͡כB2��s\�~�	PeR�de_/�[�L U�W5u�*u@�N�?.�.��?���/������u��v�eW;G8,k�X���=����~�?��8�ƅK��>�<de�:�MO�ѧ�wP�X�Z���_����{�9G��B꣒S�J�M��#����O|�=�<��/����fc֐)O��{�*Щ¿�?��{��W^�i��ծ�������?8J��IL���S)��{���X'�P�B��՟��c߻|���u덌��1.�P��Ϻ[�`�PLw���L�.�������ѥz�K�#]�j���<��V���9P�|9@-�(hҴ��󚅹E�SĹnj5*FR�~�ojl�
Ǔ���ʵ�%B)[���΅�Xe�a��#b�1=5J�(�����m�������Ww����0�����ux�*�w�6�TYԋ.^�G)�@�|�j�g_�8e�������~
����˖)�B޿�~�g���\���g��z�
�G����FQ6;��I��������� ȥَ�����0���8L�Q3-��ep�U����F��L�J+����F�J�(bē*�9�8g��S'�ӎ�TP�9�@+'CE�SI��4)X�PSS%�=��^�ʽ�`H�#
��.�5	�lMs45b�)�N��Lӓ*�PD��T
�)+�V�lT>0%���_`�H��_�rE5t�$T��+R4W&Vp���(r��i����M��E��	W����O�Ͽ����OE*�����X�jB�d���c���G>�}�y�9L��yw���y�]���F��FT�����'>�#��ʼn�oN��wO�<���Ǯ�o<���[������\�2��+�j:&8����^[��s���(�5�b�K�xX|��M���i+V�%�
��Sz�}s�*��Ҡ�r�(�<O>m�<`�-H+7ՉG��iBU�S͆Qȶo�R�\��o���	���#9[s5Y�˭�$�B��J��p�1�2Ҧ���U�=5�8,;��9��Q7�Q����٦V�0�쇐�Z�{f��
�I�4aO�,�8�R�[�,��K'y�7Gi2�Js;�O���I�D��3^}�ų���=[O��!ϼ�}ᯯ~���3v�=p��bFۺ��:��狚v���
��k������|vǶW��$z���3T�PI�ۃ���f[t��0�rDZ��M�C,��L� �wm�b8����s*�_��.��Z�i�
)�A߭�p��
��1�8e��Z,tP���+�����+_.#,�pz!X)���cGS�S	����J���)z����0K�|M8����7j��G&�+��;vzJ��w�pUG�cO��5@�xUՖ����CV��V�e%U�����O~�vl*@�,4J��|���C?��Ņ�'��d�J�8����{ۮ[��<s>
�G~��gΜ��VJ��/BTz?������w���]ݼԻF��'m�B�Q�0*O��0D8\|bR�o��y�f~|_�x���*7ub:�2l�:m ��m�''�[�
��U���{�ݔ�ݥ��Uq�OԠ��hj?��._�;�L������vۿ���Ŏ/dm��#��e���s���UTOZj)7R&F�ѩ��x�2�Ё���NW�63�7��Qɣ�Y�f=��-T��A�4� /�s�%o
���`�^ӵ^��FC�8+�'Yd�f��F���_��K�A>�.��n��!�ih��C�V��|���I	y��xs�a\�M1�o\�R/v��sm�]'��6�X���]�i>�����p�����	��z��@�lnC���{W �Z�~�3
�߳5Kc��;�0c9�G&L�x�a���<�,���VK���A�8�<gF��)5ݜ�ٺ鹎k!	�PI�H�G �L	)R%�Ds���)C�ǩ
�1��pn�2��E
���=�
�J�\��ʵ�Ǹ��#���PY!�Q�d�O
��k����"�2�ߢ�P&�^���)��ʹCI9�99�a����21ZW>{�Ѫ��ʹ�T{�*��"����v������?��0s�η�K�K�<���_��/�q(&�7�8B~���TT��.~��v�-cq�=u�>��C�V� xgszX�r~���������9����|�(��]s��?Y/�gA��i~����o�%־�ț�\Ș�.�zn����H���N�;�q0D�c�xe�B��0��Ο<t������ԟ��]��7����M�뎞mu�VM�����U�e��9ר(Y*}�����t�� �2��WN�P#�n�F�^
㩍��j��s�֯S�UM�����t}P& 1�N����A��+�W-s�m��3�_�^mBt��V��5\�L`1���N��77�b�4>�������|��ڋW��A�d�{����i����)�,�$���[�Ey8
�έv���$L���sq}�̹�x'�^t�*3f��W���k9�_sm�H:`ԯlm��0�Fΰ���eR��@��ɲ�V�U��J���X���h�5xL뚲�ΎJ�p�u���jG��܀.����"�t*�S�v�����}
#�,5�&f�qQ�5�R[ˤ[�n��Ց�Mx��,��ݣ�0�A͑ȱ��UJ�2o�o�ʫ�U�X�Gd�Dn\���T3&�x�B�d�ac��_���?���(`(��|KP&��3��V��Ͽ����Vc.�ިfU_���нkiPU.zT����w��w�h���.�w��|���|��jۦb��]n*�|��Ÿ��Q���~���B1�J/'*�j�ܗ��[Jw�\�p��|��锂�i3A�{�R`��}�06F�k�׮_ܚ�}�V��~�+W�Qb��pL�-|yE�wl�E,-��)�����J���<M�e�w��@�7S+a���Q�i�����z�k
~�6�(3Yq�6O��L�ji��WʆE�
A(��[��7�"Po�)9�ӂ����׶�nt�\��azǂu�?ki���z���l����u:��-5j8e��Qy�
uTY��[4��sW�tl9�z�e�6�-�[�Ӣ?���^Q$��i��b:�3���v��[�}ꝼ��nöl�t��
��I',���(�Y�(�L�4�ޥ`�z��y�cw���mo!�O%3(���i�>d
aJ�L-B�w� ��i�(����G9ha�X�$�y7mY7�yҳNbBY�a���)�;d��Eڤ�S����X;�L���Cؑn�OS���8��G*���U!I]P���h�&��X�	s1D	R	S��UM�}��\(��J��-���JZ�ѯ�g��/���!lu���
�}� ��w�Q��/?aBd������\����S��/"H�k�����?7����|t�4��ǎ����W\ �����)Z~Qʃ��of'?���:l�A*���[���/z74�1�{�+y�����L��'˄��Ji��	�
��a�����q��2}������q���u�^���	�����8<��2�# ?�&�=E��#�`�;ֶ\��底_^˳Z�3��e�-���o��j�Ӱ�Q~�͜i��g��k����ڕ �C�m�e[w-�Vl�����[���nl_����̉6���$��W��B��hp��'�X��ƨp������{��=p�c�5�t�Y���k�}�s�d��x0��3��k�ni�L2����.�tvF����|hX8ِI:������"��EU�#*UIV�	\ڳ�m��9{�;��z��ӱ5�5�g&��N6꾑�jG&��@�ɴ`P����DeŠD�_����'���Vꪋ�J=�AR���^��T��2e=0�!�1��V�P���?X%`�"1|B�t���4Ǵ<�)2FO#,P�V�3���(�0(��q(u�^�x��Ȣ2�a�W}�yej��j)eE��������gj�U��"p{��#z��'�x��ի����b
��۵�,�?�z�4M�?�o~��n�,K��f�N^x�o~�ۖeUEJ�Ȼ==T�NI8�%~3ڃ`�T�*9]��^G|;���5�X$��k����5�4~��f�r�.٠̨�3�4�!�I�ԍb����QR��z�Q.!�u}[[a�6�ILp�jlW�C(R!��y"Y��
����V����9��?�s~A/�s��Ң?�4�K��:m�dq&_��}򞥧�q鞇�=�,:���;]�B�G<��;��/��k:���M�P���[��G���v���6�g��8��
�W��0(�:���y��p���"H.�W�k;�0Ud�i�d=����+K�_<�N��"M�	�i��E��ƞ~#!�`S��7�:X�aP�e�I����.Ǧ��ڍ����A��a��
U����}�$�!^��CM���(ɕ����>���]�&P��T���R�� MR�;�A��l�4P� �K�j&�e�A���`�gz�dD��L�Ha����Q����0aZ�C��<#$L>�_�0��"��nj��**�Δ�1gUr<�L�`����Χ.RMEq3�x���r׹�I�����:y��;]�Jj�[���UT�t1�7ܳ�مB��c��_�G��EQ��i���[��紼�D K��ߤ�7���J���M���l��M��t=����c�}��`k��ٛZɛ�rv���D��ҏ��?������rr%wuM%�A;vš+j���l;�ȶ3�֚������X�)ܐMR��[u>�d�%��w�B�o��L7YLP:W�Q�,F��̦ސ�������Ҏ�[��1{��ʵ��7�\�}h��U��'�N����9��{V;5����ϩO8��3�=b�B�)Y�,}�1�N��k��ݫ/�
V����ҽ�����+/vf4~[�=u���Y5m����K0��d�"�A�����p�fc��z�	��#�5���ienq��Co{�"ӱ*��`g8��R�k��Ӎ�9T��]��w}߁�N7\��>��\��l%��2`�����N?H7:E�����L.:3�^���Fu�4��D4Z�.^DX1B�R?.�\*�c��S�����e�	J���J��1u��rxT�X��`6|�A�D֎T�z���"�V
f5�aAaoj�oHXO��1͚���'�T.>��Y�G"����0��BAWQe��S\2�H�����_F��8e�HWiE�8�v�f:��Ǿ��o\�x�.�F*{,̰n��}�>6��/��f�	�����O?�$I�ݾ
"�G[Y^~���x��W�Q�v���%�@�Qy�0��^ �w�S��{^�|,��zN��q��o�c�0��S?��~q���9k����࿃�:�#�2++gj�F�ٜ��IXi9�e]����ڱ@)
�P��	-���;Q�M!u�^KPeK�t�zC;K� 4V�u��|S8&�"S�W/�Ҵ�Z[[L]�s��i��o�b���|��=�&[��D�;����E�`�6��̲�%�'�˽�u�W�i��.��Ωw/	�������ۋ�qϜu�#-爭ϵ�am[�}a#��	�#�l*�H!EfT^��7��E��sW:����m��[!��~�3l-�z&���2�����隥��!4̴�1|[��nh0=KKV��j*}Ay�
�$��4���4U"��Td�ƛT"���܂�O��1�{�X5��T)`��ð�8���9.}�T��G#�C	q�e��DZ������s���^UpU���0-���)*0��H�Ex"�j�1P���nP>�
��l� ���N���)�fz�h;+��s���'��3=|?��m:!�����S�R��z|�+=�
G_��_)�3��53��#���q��#��/�V�o��8_������̙;���o_�\�����_~����0N5t����Lh�V�i�9aogv3�a�j��f��*r7���ē���;[`~*��'�"قW�#jE�g�{uۛ���p�Y��v�-�Jʄ�����
�(��`&E�/���U�ʚ/	hPá���:��{.�-��
t/q�n���|�\�u��\�wQv��o=Ȟ݌^ڎEg��kݗ�^k��G�}���Ü9N�M/x��%|���_��A�3vv����/��}�;+��G�_4�i�[Y�>��*.�M�ח:\MT���AT"���;����ik���1�#�[�XZ�#`�기�I��$ȑd�Bۉ�(E�Q����(a��\���0
�����
��.�$�z]t��Jf��t^p:�9�U�n�Y�!.b��p�P�D�E��Y��B�ݗ�ayT�(��
��3�
,�m/H� EdaE�Ls��e0X��{!P�,Uʖdic=���W�s*8�
Q�h?ac�+�A���Mb���#����ʩbP	-"�����?���Ѭ�~@�V�ȩ��җ���w�}7�I5��s�s?��?�f]e!�d�q�9�a�}^��_Q�S?���|8�m)ݭVO>���>���|�~��4}�o��Ce��Byc����x�Y�wF9���-Xo�3�j�]%�>��h���@Ԓa�|(W*{I�EG������~Z�/:�������e����a�l0�)�	u��J�eQ��<�5e,�N���v�B�]l���&3ҶKǓ�	���K�]�������^�mC�m�tZ.w�A��eyz��w�6[�뽬�#fq��R�ҁ[�X2�^���3��kO���(����ß9�:QK���K��/��K��lɣ;rry�ӌheq����>5�r����.�	aS���Q�H!�.
�L��0���<��u=�W�O4�җ�NR8N��Z�Q��1�Pc�q���b4�AB���;�tHx&Ά�0��0����8E�2�Rͦ73:�����B�I��JT�LN
�7t�U04��A����I�ƨ��Ouu�%����`&���ꡑ�	|g+d�b8�'{:�L�@�RV�:m^�Ό��*�uz��i8��S]��t�ƣ4�ƨ,�fئa���F	�T]�5]�]4�9��A5���?���sWᷜQ�;w�ʕKS5+�=~�Gl4�����:z߽���j	+�5��L?�
?��~��{�y��SU��~���g{�1h�ޜ̉��?�'��Hh�;�V7����U���o&F�[?�+v��cJ��y����'���I���S,��m��gZ75�s�{���g����G�w���H�/��%u+c-�Y��l��,ozZ�*�D"�z��l�;�,)�̣H�5zlEs����q�CG���b0��yㅫ��]:����平3����--{t��6­nJ}�0a�6��.���y1+�!v_]��Ѳ-�߂{W��c���{b;9w���CK�oK�#�bd��K�A����~^w���q��e[ܰRe�F��%2]�ު��^k6�<G��@Բ�����r�}+Ǐ6�ְ7�ʡXI��B���&gY�i	gA�X����q��'I���
�cfI7�|�T�$��c6/^ݎ�<x�4|�]J� �Uy��P�P#'n��B)��q�	h������r�n"R�YT�mA�c�)R)
�q�U
��pF8b�����U�Y	�$�(Q��i(�x�!<�>�ۂr
� �)��m�FTap�j
Ք�u���]S;����v���w���/|��YMU��m�4U��~���=���~�M���Go�vt�~��ȑ��o	���7�����?�i�Vq�<ơ���?�����Zw{��ln۝�@q1�|���)޶	=�G����|�Fq�oz�}M��r6e-/a�P,�v�i���S��F��>zl��ߚ�6��c�6k��J��YZ8Fg�VH]j:����9�7�w}#����['��[vC�
n׹�1�&��_��m��L_���v-)gL�쉶����A��I��6�t}yu�J����L�NI���ǒ��Yɟ}��?Z����]���oo
W[n����rq�b�΃X6W�?�7/6F�4�����.�F��
�[#۳g��4���P�AM�	t�5�*T8L��di�S��8��W�,��5��'qF��Z�`��$��^��e$��y�Y�L/UH;�����<��O�~����O�ó���rS���6tDr!�j(*p�Ը��2qj�]�j�.�̩��
`�]:�� ���6�&b�+apj�j�E��:|���	�c��R��"��fe��X���Dx.7��E"�qJHKż>�n��TLPz����JnL�p�@l�$�E���#�=��ލ���<y��~�f��_}��;���m���m[O=�m��fS�h
�AS�y����,/C�q�j��s����O}�S����Xd��W�`}���#�gT���I�)S~K��]��}-������Kⷐ1���l��pJ߸O]%U�ULܖ�ډҐ �v_ޢ��4
Pׯ�Ź���Ƌ��j���ʅ��ID�'�^�r?���.d
���нT.:|i��Y~}-�>��'Ь5���e0ߔ��R!=n^�xc-|5e��"+^j�k�O������Z��/��{��N��t|i��I��O>$fa#��.����+;[�F�M��r��x:�Fa��GF?=|؝��Ry,e�Ư���q��Oq����f.*F�TcF�]+K�j{t��͹��<��B��
���P,�h�"��)��*,����~5���ւuu?�ƣ�2u�)4��Q�duJB,Fa6H�Y7ȩ�Զ�Z�&P"�l�����Zbj�v�n�g�|�BO�ڢc" �	"�	�ZVeѠ�m�\��w�$
������MT�2�EW��u<��8>��И��`�$����\�-��i�U� �K�Jc	�*�� \E�?CO����[e��&0�/`%�8N/��%��Ee��F*�u�z���25�ǝ8��w?��y ��9ͪ�Y=�г�>��/���,S��&��^=��7��կ>Y����x�W)����
\�oJ]ZZ:u��3�|��r�-N�U�\�X�"�;I�`�4/�:W����~�5��F�P�������9u���R�k
��f�)��I��Y)��ɄI�3�O٢�;�\?s�����N��2��/��V~X:#Q^��4�2ߙy�L)������}���<5xi;�F��P�6�fj*���Ȑ�R/�ҫ���;���v�q��旞^};n#S�����ss2O^���.6��պ�$���i�N��
����u�y�?�X�Di�׿�]Fٽ���/�
�BX��`��_)
a��3'��������l,·y�iZ2�]|���6�r��	�� P'5���8����q��j�x.5&Ôy��o�
iP��g�oT\][��<&hD]�0.�,�8��~'�	��y���PC$��D�/���й#�g����rѰG{CoDfXJ�C�QIaE�Qy7G���e�RY<�g')܊
	���G��ִ�Ami)OO���=%(��'A\���p�4*�a\37rj)��U�8������e�2Df�E+K`
��\�]˕I�1�ܚN��)�����Jϗ�?4(��bZ���7�եM��W_Y[[{�wQ}؏��%e�Ü�;�rL`����>q����A_~���n���?��(�~�w'�b���C
髣터�\&6/o�`M�N�}��r��shQ��o6?ȓ�6�o�r?^1�@��- Yyl���7��7{��2[����O�&b�
��JW�Ɋ��g.��
bݲJC��F?���՞��0�e+���X=/:?5*}��Δm]>x���w�K�+��S����]x&�z*���b֘ˏ�:{�������Y������w�a�NG4��Ybu��|�A�m��ȇyK�nKZ'��y���+egc�t���庾����_�|�~����O�狑j�<�����q?/��A��&vQ�̣Q�6�4K�]ߌ��ݵn�mS�i�<���2���߿�3�\���tK�ښ��[����G�u�L\Hf��#3��ۊ�݈�d����)�<B��A��Y�ġ���P+*����{:�:[�^Y�f�3�ؤ�_h"�Rn�
�(ccY�-�T�H:�[6�����S諡o䆧93�v���=O@�����|��K��Z��f�N<���+Pj�&Ј��h�nC�aX�Ky�S/I����LP�Ɯ�.8�fe�I�~R�@�b�+�5�P!D�9����^��!QG#v��Gޢ�8���+/�����?��O~���n�uуC�� ��MC��ə�'Q��{y�o?t��i�����o~��ߥ���ܛ�⩮]_[����2�0�nm('GZ���~?��Z��}��BfyS*�����"g7ȚoN��q|?���ګ}���N���WY��E��ŝ���̮�_� |��5�*;���Rx�Ly��D�T�Z)}z�z���hI��,�|֕�����#�Enزl-��+-�b%7�̺юsm��kǛ/�j�J��|���9k�䙙$�,۾v��C��6s ��%�g_��}e�,���`F�+��@�ko$Ir^�{�G�uu��3=='�8g0A@<@�k\jyȴF�HI\�$�ʖ4[��K��ve+����h+E� �xAA�3���螾����#2.�p��>�̬̺��B��GUfDd���}�����sN�="�Z!��h�R����4�N�%׉D�<S�76���r��˷�F��ëP��ܲ�<d#Ôb��E�A�pܺ1�"ϡ��W��/X���g"�8�y�e9p�a?�p־k���VH
���eL�@_(F���m����9��4'JH^��[
*\|���(���|B�1DzB�Y3��3)�vDOy�`m�I�:�--���t� T�����HkE�]h��_~����z#�$e������=טl6�\2�[̀��o���L1�G`FQ*l�Z���c�����/j�|E��~^je��ǁFt�ಲl-�>��1�^�._�<��g?��O~V�ѰP�������.z<�FgG`�aM��<?{���?��=w	�1뛏<�(���ֻ�:_��7~�_�܀�ջk1�j*�6`���NOs�g�U��/�$m~l��� �RQwgx���:�+b���Xc�M%�'��N?$:y-`��؂g�"C�}�����Hy��-
�F��N�$��:�F}Vl�$&v[i�$�u�O�C`��"��f��S�RHsA�b�h(im���0���G�_^���~'�\,��7��F�"ω�_��s�?_�?p�ԛ��ʂc8��ҿXϙl��6�э,駎-/���.�w=���ž6��|�$i�r�"k�_���y������Q?/Tk��hk��E��EJ�g9��1!˜�2�c%*�M��t�"+9B�Z+YJ1�Fe)�K�Wr@%�*�>�	jADy 0~蠡�k(Vۍ������U�–@��$��D0�{�
�c��D�r�`��8��z��o���x^
�0/�[�x�D�{h
���_`�r�Q1�GK4����F
t�)P�.,��3<ۅj3n�6ΰ/8����N�*P�Z	)l����ځQ��
p(Q���E�L�b� ӺV�~��?lc+��7����g�}��{�U%u����i YhB���-1=��r�ŏ�7?�����b0����-����������Fwu�s=��1&cCGy��v����q_p�f�~��.Z�;���E:y�Y/?�'�~������o�}��7/%<���ego�v;�~�'�e�ڡP	Q�J�����f���[*�*R��OgE�U�/Tm�֚TX�W����Zr ��I�e�:2)�ԧW]�=z��]P�}��w�]X��'�U���ʕ�߽0�.�S!Mhz=��ܠh��m}�9��'�������0y�g
�t �X���\��f�^5Ro��5O5��4�aк�a˗P�y֨K�W�g�ݶ�� O��0#�	���r�Ȁok3�h	�3 B�F!¼;-2�
�А.\�V�(��`'��:����P6j(l”sH�IU`��/pBMeu�v��}�0)}��`~��A��U�i����6��a��;�u1��L��_�Cϰ	�M�Y��/���@g�c��C��8o���P�9���al[�C����@\OBmlℵi�������!d/��w,�LF��6D��7|�3O�>{R�P��Q�2��g>�|�S�:ZiF���+����s�U>�n�g_Ix �mmm?��s/�w�V:@ՓO>y��ɣ��X���������d�I�����a؜�ݼKν�T�C��9"tFZ0ņ��Ng�ν�X�N�d�W 7��t�w3��s�[��-C��:cK�/\X��,Ԋ�D�FZ:Ik�['���j; �	d�=b�K�li9��m,��E
��D�4l��FL��(���K�ŲF��	��������yB�8�T��8�v^O?��qax'���H�w���e��?�ʅ��4e�e���䡟Fg9$��zo��7H�&]N�s$�)���'>�'���:�JV�	����`��!F��Jsw)\|lup��F��^�a�4�䣬,t�T�,׊G���^=<��Rɋ,.��>��11����L��P7���R�*QTG�S��HW���B�Jv3����(���F�+�:qo���~������I��$@�r�vP�4/u$���\�Rԝ<Amh1���4��)/� ���'��p��]$f$�
�ҵ��V-��Fy
�
-�0܆"���sB�\tQ�X%���P�`�Sz�Nk8Շ��&���=�ǣf���g�3ƄÙ��?�裏I)��w�>�7�w��@�K���{|N+@u�~�U��&��Gm��a��|�ӿ�:�D��A{�Rt"gUt��i�pd�+�۬���-��JNFfN��y�: ��\�;`5�V3��Ŕ�(�����q�{��W�:�~g37v�����}�����ֲ">Tzm�MŖ�k�A,��M�aH�7�Qʶ0S�1��8P���z���Ez��Č��|��u����Y��-:�OҺ�X@�#
�����o)���$|��?J��/K����9�V�LL�@5��-oo]{yS$��0�@��'NI�Hn�0�b8ut:��%�y|���S��ۭ�0;�vCp}�*��B���,zk�8�2���Q4L�������p���S���zS��`ʵ�`*2\���4���_����uh�NG&�iC-	E�P�`�y�/u�\о=Rq����ɱ��Gq)�%%��<|=Q�6�W�Fg6S�Zs�V�D�-x'[k�4��M�9,���. ��`ZIVE��	�	��`�P��ʐ>b��҃�X�ả���K��������Tڧ6g�F�=���۝_�����tTM�gGڎ,]�W�\��?|��i��g�N��'���P�˿�OnݺeU�t/���Y�u�~�:|�p�3��?#s����D[ӃQQ��輼}~�G;J;B:�l�{�q�8I������I�����k�tЏ�J��Ű���J��'e�^�S2j��<MUj��!P2��i��*c���P�H�Rs�l���������
�4޹Hj�hj	l��$��h���/����4��9#��}g`/R�IK~��U�Gh�3‰u�9��<I�T;F�g��l�eNF9��)h��l�X���u��k�5'���_]�����M��Ԣ��~����%���U��t��ϰ��SBC[���r8ʒ���Cm��8�\���n���o��N���Kc���> @v�d��r����;C5���L+��m��u�����:2�)u��چ�OG_P�6}�D/���1��Z���`0m�槈>�
�k{a�V�	�Y(��-�U��8`����;lI�cX�bfFeu��������E�poÒ)R���=���(�/�#�ҵ�.|4�}�G^DŽ��p���O����g�'S�Bw
�8���h4���ԧ~�1�z�ۿ�;����4�U��S!2q�:�X��)���ÿs?/���ٽ�}�{�އ�J$�Nt�UQz��̨,�t����g *��K���Z������#g.�u�BE�|h����Dͥol�UnHj	i�*�A�hӞn���.f���J��i��(�E�O�$��]�r�>{���� ��F�Z.��zk�Xm$�Tw�P������j�$�wQ=n@��RlE��lD_Q�n�#�$[X������V��.�X�����BӪ�yO��	��a�}h�%[b�"`V%u�3y8��|�Qr�c�9F�H^�����\�u���EOwQl��~6jPv��N���\m�(qu�e�;�6��P�fبGv���ą��F�P
�5uԐ�,��Z�n�B�0� �~jk�M�U)�^��dl�n���!���*�JX��1G�S�ya�|�����`��z�G�9FV���6����~N�&��
�P#aa~30�U1V����e���G�雯]��~`qiA������W�)�+P:EՌK�h�=~
>��_��h<��3�,�D��ŗ^����Cϥ�H�s=u6����Rt51q���V�V���'M��� z$��k{�Cu\Y>���ҌNϒΤ]����+3�o�z&D{�[֥���ͯ^^��dW׺�O.�+zB�_��4�ܒ�
�sb�$k�E7�-�Sj�2ؒ0�j)�[��>�7��N7�-�J��w�#��Â����1t�9��U�2z�KB;eۨ)|�����]*��9elU��_�kY��E�c7C�<#��g9�'|��_};��+';�}����o�λ��w�Vo;�'P�̑�0]��:d4qQ��NS�0�G�
��|�5��Ѩ��]gs��Q��/�X��i3�&�J�1N������(�d,���DL��o��]�a�/���]LE2€)��P��vU:�X��
U�$0���L
?�hV#��X�w��R+e�&P����(�׎V8:b��3S�4���:������J�)Lx��{t��F���3ԅ�Mz���b����МP��):h$���[w��3LB����Š	0��?�˯����y�R�j[�icy��>��>���z�Kz����*��w��O��k7�9nT3�+:�S�Q�
D��!��:%5c_5��R����{�"��"ݧR�_$���mf�d֎tֵo��f��t��<_������VT�%�Y,��Oo��__��c?��}j�wv���~�<Y��u����Y�h�R�*A<Ǥ;2ġ%�[ԥ��)��ԢU�&�Ē��A
�؊j<(�+��6��6sT��-1��|���~�,�8%!
.��QT�H�Ƣ��ζ��e�	iY�a�'��;��{���8u��l��\<Gi���t:7��k�Rl_[�Ե�օ��kŝ��Z�.M3��a��u<R��x^�:=R=�n��6��iH�~��[�v��h׼S���k�>�4/�yA:ٰ�q|pD
��[ZV��Y�yA�3�����Gꄥ1�6�F���N��Y��$��S�5�f�����+�>�& @���4qj~^FôP$�RQ��m�؟�6�ڔ:8;�B�wj.TEfg��f�h�,��D��ad
-��(�pFX4J���M@�(J�Ӯ�H�i��zXw�r���Ⱥ<��o
��gq$f�V?��Q��cڶ�O�����j�PRMF?��B/�9�B^�Hky���ŋ��wT��o�j��ƍ�?�S?��^�p�5�4�����	Ӯ��^�w:W�ݓ�%���qHIx�3�~?��4�s�t/��V��?D�0
�Vt�;Km�O��a�#��|w}1f�0=��G<Y.-��@�i�^No�)W�g)	���(:bk
�bV	K]��J%%�"p�>ÒjFrv�6-Uks�~B[ڇ�J�D5]o�nI��>ڔO�=�|�J@5m}‡�(~��s��U;=�e��yn��~Gl���o��btm8��,���Z��sM�38�'���zIY�(2/�˞L�N'��L**V��ΟXx|upu
�v:�#),��KK��%�{QI�S�^�%�7�$��9Ѷ��)�F4��l�TS���Z9�p��q](��h<��Н���B�p��K�)�؀!�oaZ)�A���m�5��T؞?��&L*�M�%�j��2�Ν�h���i�RXPq˶�pE!tC[V��]��Kʩ�F�N�-Q�(���&| Lc��i���Ф��hS�z	�P���zh_�p��,
<v�i�,YMㅯ���}�P�����
�$P�_�����;aX#՞�����P�g��^f�i�����Y�v����;f�J�V_���g��+/�0��	���YY����tK��]s;�t�����J�x_��?r���g߼�njs�O��Wb0C��!��#��k�Tg?���A퓒�2�iߝ̦$��g+"%
"aE�a����-�x�%�5V�B�4�t)��f��Y�-pS����e�!a�$p�/	�	�7�I�
�Tyt�R��<�pI�V-�c	�z���]4c�M�[���]�����&3w�!Հ�D;���VP��C�3yj�,�r�����z~{X��уe(���l����3�Dܹ��j��bU����jxM�)����@���~�bb���
]5%3�Q��	��I�^��
�rr��~�z���G9��!}���C��
����j�ֶ�B#��\�_c!��X{[�8�~�Gؙ��d����
F���q���y�vԉ��-A�e���-Q�A�\X�����h�ZH�A����x|+G�@g�8x�I�p,3��S"�b�0T�X�Y�B��r����US{�!��$�%)�Y�AQNT:��`�,`6��;�N�:��*t+ ���W��s�}�{ja�]�ǥ2p�� �����O���C������{�[T�4hZeJ�-	�Q�)��}��/���<p��9@�#���v��ʯ�O[��a�	Ûp]��Ab���!���t��0
5�K6�%T��
ׄ|�<�}c
'Q9{��U���Ц��y�hU~O�V��N!�������8��Q-~�6T��ڦ�2�5%bA>rڮ1Q�'p�o��M;�l/�PSx��
�j��Q2���^��.=��)��L���7���N��s�X6�U�\x)��ľ����mu�)�{ԃ�0�ҤL�F_�	ԏ��%
�Z���’�1r��~�
 F�Mm#�r��.���[û׶�Ô2\/p��u7��9��}t��BK`5�F�pkd�
���,M3(y�n�h�	�����oo
bPf�1w[�ֈ'�0/��U+;�N�Nl8���O� }�C�|Q~��
j)f�ϲ��Us욏�\�8��B7c�:��k�/􁋂��6�J�ª���7F�`�vr^�X��~�3�~<�U`��2�,l��"<G8NY�D,s̎E�\$�cL��9����j���ŒڋAól4�b
Ntܗ���y	�Pv���˟��_4[����p_�	@},�C���3����/�uX�����8��s���Ut��a�}�C`����ko���ѕ+W���J�Vs���_h[�lx��W���o��?�ǿ��#�aT��c�tF���Ы�UҽI���8�B�<��Cܵ��^�۹r��Ǚ���ߓ�j�~��^����(����}'j��>��ޣO���%t��@�̀��<<JO�%m5Ѻ���p��L1GY
�Fpg¢n��"�6�
&�����q�@kr,�B��P�S��������qT�-6��_`ƃ8�O�}+@H��(�Ckb���$5[7�˲�S�gn��.-��Ֆ�?�|�w��\�OBw��A�B�)T��y�W�U�f�z�bnU����-q�ڮ O��F�c��9�t��Q�mc�����e�8h�H�3w:S��=�a����?p_�b�:��ړg��_����eNT��0�VO�Es6j�B�ֱ��%S(<|�1�x�dP����o��L���HbńA�z������ͥD�?�g!��\Rf�k~�m�)�Gd�*N�c̨ia��旁�RRm�j�L��K��QDO5��he�lb��)'��P��%@m�'�@J>�?��W�	?����j5�'B�
�9[�Dg����~�W���������~�:E:��qUݨl.i{a�`+u�ib���?���O=�裏�9s�Ѩk	{���q�ʕo~�o}��N��l��-.�Xxyh���&>���!��mD�~5��_�pC�w	ّۈ�3��g��lM6
gz�x�lxٮ��,�'!�JwY�4����GM�|�\}x��'�&��͓T���(�
Km1���
0B�#�:7�ē*"���L�'ԓ��^�2���h2�M��ܢ�m
�l�F��k�ʲ/�&����T�Qx��}<%�WQD�t�,�$%�ĥ��$��$�̕\$Yq��N���r륣�5���xg��{a��;	� p�N��P5`@?9�ZT�#q�O�֋��g�{YZ2߳<ws;�?�_�Zu���(�<����X��B���Z۩����S'הol�v��<ř�
�HLeEY�[M�p�ri,����~�	�wC�8�t7z�Q��}����N|�[f\�‘����K���N�C���ޥ��&��(t5V:�"A�0��gZp�u�P���Y���-Z[a����bN��9XGa��
Q\m�.(�Uʵ{Qi��E�C<��{�Y�BΞ?�w?��w���v�
8�缻�s�ƭW���/�t��-(�}���J�i~���y
=@V��i߉�O������(5W�L�a��9>�l��V�>�n��:�����d鷯�Ph��^G��A�=�eL~X�f<�����6�vT�����:����(��n�k2^��IY��A�[lAHr����Vǣ�3B.�釞:��O��uz���a�V2��es��bb�d��q,�tP�}��-n�p��Xӕ��c[K���5��R��@Y��\�Y���GH�uZ�q	6��B��
�И�h	a�+/���x��3�8O�pO?���?{qt��yŌ�8pѲ�4e�ݍ��dq���,gJZ�:כ�EA��a��)>dI:��^��\�p���R���[�5�5�%��
�K~X��i�r����(1}��=�TYVB��%�4q�.��.Th�k�Z�1��J�e�4菠Ksa;�
s+��8�NG��o��9a?��,nm��m6k���(҇��Zuja��LO)�7����Q�
+xI��(��'Pg���D�g�A	7�S$PT� ,<�=Y��Go�(K���QI�FҢ�E��#
VQ�JH5e��\(�\b셋�#"K��h����8)�T��
l�+���F��^�k^�@&��5ش�)0���hU�A����ub�5��S�ݝ�9lcN��濍M�z�&�8=Gol�㔍��:�7̈H)���$dR�W��lwh"��f[���WZu���2)e��&VV^Y�]%�i���@Snw�K����(
�_j.sIX.+Gt#���z�@OMct�9�NRZ7�RCTEu�

c�`��M�/q���&�]TB��-[�eb@�M����
�w�
#2��h�g�#
���$�D��v�v{x����M�4��,�Ĉ��5V��7�����3�\���޴F=`h�7mK�-f�<%I�\�f��^��0
�Mi�J�EM�._�0�ZXk�I4
�2+N,�V0��D����<g�� �2p�!��BS$x�~h�n�B7���2�'�J�\x�߹���~����/l�ZYq>U�K9�2���D=�ﻰj��Q�)�Bs�5m����9 ��5�j����(u�3�
$1T�c�����1KO�`����o�&E�Hq��0MN06Q��ݸ�P�f�Է/�I����4{���TG�R�8��@���#w|��I/�2�U*����q܈'�d
꠭�Ö���_d�Q�K�7ě��G}�"{{�{zLl�?h��0��� ��Q���\P�]��Stbp3�J��O�u}:yw���_r�K �!~eB��T�\�8-on��9o
�*�qgk�`S�+ה5�V��'E�H���O��D�:��3��S�$�[�	�C����r(�:~��g��A���Su),�G�q�v���
2)����|�F<Y�n^��
-�0�
�`�'sJR�
(Ш�9%T`�<��x���q�x���k~ݥz?^���5]w�q���`5�.�a	e̖��=��;�U
�`q��h�xZt7w�B..�/]Z=��+q�ܰ�Ņz��i��=\xs�8����q
%P3,�(�:	CtJT6�Tu��-����n��y��P�˛�M��"/]�jL�*96�J����E��\���Q�e�.
DCN�2�eßq��B�j���Leh�BS'L�P���	F��Tw��
����0�H�
�J�%%�N��E�8�h�͇J��1F�ӻ�����:����;���WD�����:����@��9�~��&�Ԍ�JN����Jz��������k������^�UiB(9m��/��z�U�>�ɞ����Ĭt�k�o�8B�Wf:>qEN�X�Q�����^l^�xH��s��g���6���h��ERcI��=�4Y�Ԃeln�����K1}ҽIdW�+�hS�2=�t�)u��x��)Kޠѐ�R�O�ho�Rt�';�*�Q�楬�i�Snvq�kD���=�p(�.<t�r�l8Tuy��'�/���~:�pb�2ku�1�jx���u=��}?x�b��&:(|�Tq^d#x�k��kW(���pb�NjbgkX/�1��F���pg���U��@��m����3d9���pp�ee��)��(�*q����	d#G'Bdf���O.��Tй�{c-}�h�e�
`;����g�����p��
�Qf���)�V�]Ȭ,�<���XT��ы�d���
2���[�d|����r5��ac`����h̅����*�»Y��h�Q�Ш�f�3������!X�*xLV���ͣg���r5�Al2�/>�%T�t��F�#G��_�{�s���\CJ�V}���/ռ��~%��AX�;�xԬz�[���؟��B�9��=�ҙN�<��&�[�$�8>��d�Q��>�c����;��kAKN)o0�M����h�U
8̲I\�6�j�����prC����;�Z�Ħ�ś��h%�y	u{b�e���HJ�ΰ�b�'Gy�m��CV�l��0)wQ���f�e%��O\�A
`���6@�g����ز��
�އB',Ti�[:Ղ#E_��T4���l
����Q!9<C,��e�RX찲��x�B�:�x蹰�=�
����C׬�歫[wn�7z����[�����2-���z��P�]�E��k�B�'�/|r`(tU�Lx9L�4-�@=��-.�X�fvc;�5��/��^�/J�q,��Τ��<QT����’��U�A��*�"-�Q���K��G>�bdf�=���p��(�����ڍFw�Qe���K�E,�f�:���s�/�Ç����t�4����L	"��1���)�{����j��7��*��!���Wˤ�r\��{�t~����2�pu�!����y�};*�9�U�����ź�䓈扁)�b��PEw�d�_����Y���7ӋO�EPճk�?΀,��;�.�Y��\�6�HzK��.6^ F�\����W��)&,e�ʼn Rl;R��tD���9��x[�F�n��D
H��(�pO����;l�/�C�����<�0��P(a`15��b#�����`�壼����w=&�71Z�2i�69�RXE4hA��m�	zCcCk^t;� ��Q³<�Zi��v�5O.ԇ1��j�"I�ɥ8�c�?Z��E����{Td����e6LZ���r{����[�V3\X��LdQV}(�	��3F�y�G �̲,�e�~2J�(�}`�t`!y�b���xg3_:�^<���05�N��:ؠ�*M�����r-�x��;�:	�BT��?~�&-R�~�UH��Z&9�tN4�p�8��
�fGr4�C���F���rT�/��b�;oH�t���3~�XjŪ��X,��Z��^��pp���D��4`���Ź�8�sV,3�c���Y=��5�+u�P܁nU�[uЬ��t�(��O<�^�rt�݊�ߢ�s��%�(�vE�3�a$1�c���ޠ�k�9��+2���fG���}Y��1Q�IӦk���%<dX���������Uzs��ܔu�W?I�l-�fȊ�l�/�ELEu�2�����2�-��_��۬֠>�����F�i:�̚�.�zW:"7J�C��S�Q�RsQȅw^�y�F�Qǂ��H����9SF���8�F*�N�?!���$Îƛ�*��f��+�&����rL���•�Ht��B?�۱�zͅջ�9���� �];�"�bSeʟ{�S?��}���k��sMJRK�3��`hh�
���P��3T�zk��ͫ͞��ɛi��}�G��Iu3 I�<��Z�f*�*t=�o��KR�|
ft�Ѐ6�1ܴg&�dH�:YWE����(;U:�PTC80�(��6~H��}�I1��
�؟Ggm���w+s����ԇA���j�L��X�P���Qo�齯�~`r�n�G�w��N�)�V��z�yu9=r�� �R��<{��+X�8����?�K���_��ގ9�,u�~W�@:��gn�5��e"�!j~�H�:?�H�Oz�Eo��1G�:��R�-�K-.Ăd��G��k�j��;�#��]Yg��Z;��Ҳ��)#`麨=̜�ںa���x�^��h�g�:�DD�\���P=�F�C:P�D�ow��Dݩ�W��ggôd����̚�V�w7K�Z'S q�8��^����H:���N�jɲ��1J���;��`�*�2�wnn_]߉3��X�9o�����o_��s�*m ϲL��"+Rl��a��M�{X�����c^�����W^���;)�6�����l�v/�����BMy����P	��X�h6�zn:���Y�d<UW�R�t�~$|�	}ߵm =�,�Ql��q1�ؒ�Z��+e%�4���6q�ЂjV@:��B$e�0��`��6f@��Ԋ�$�c���v:�Ru����e
���
Hl̎t��*>�pԱjl�`P��eUXJ��Z[�*5��^`Sq�4_XMFs�$�L�N��!#+��A��z$u:0U����g8W�%�fI��)������ڻ���Go
z�̘4=h�N
�T��B�_��SM/|��6eӁ�*Um`��9�=lK���R-�f/�L�����We�Њ�~�Ҝ���ѷ)W��ZT�|
/���Aص>P6ڦ<a�Ĕ'�MY��&�V$�_���C��=��i�����_�Gl�5nmKK�k�A��"�+eo<Ss�Z�\��:^`�;�r��6{��`�N��g�E�[�[��pfy�)@�_�h�����
|4��8P%���e�����2���7���
��?�
T�b�N�$|�7�2���v#h�ꖃ�bY^쌲��`;J���+_��9���Z8^B�,�qZ*��x�ra^��bԪ5.�R�c�*Kõ�AY>zʺ��ö]x��@;�4����h-��@۶����M)Lb��V 8�䋢�!����҉]�Z(���D�(�A����t]�i�d�PD	}E����U[|BzdE�����C����-p�ɴE%U�7&(�۩����1�X�̎݌�����@��!i:^7��Qd�U�~��:ܧj�
9���g���,x(l3������nmP�>p�L+͙a�B�G,��)|p�uw��1M����=zCӽE:ݒ���sc:@��^&��f���mЍ(��yd0'p�=�nz�XKv^���r��4�#��J�rn$�FT&ԹD�@�H������gX��>�j�Rv��4�[*�,]��y�m�4F���4��ʊ��[oX.�ג�F�u�����!����B�z��5�փ�X�߼�5�$h1�"!R�M���;�#��,��F ȓ�N<�2�;S4/Tg��%q���hܐ��Xc�i��-R�40�<wi�3�Q-��%p�����c8��B�Rnږ�P�I,XQTA*FGE�����sq�LҴ(RQ�s�я8N|��N�Ŗ��~�p�1��#1"�۴�P��I�O�� �3�`B�����c���:P�n�DܘS�O�+LԐ�@I�(����%�^&�3�X2���x���R㉙����jg�R4�H*��j�	�J�)�
�&���^N3:K�;'Q��dq��a��p���	H�}M������޶��@���^��?����W2��a#+��<3]��oLJ����/%�b�͌��%�Ldء��Ah�f��	�Q�����b��+�o���˹��k?���!�m�6�\4�NƯ$�K�r������[��ٓ��M��
�dȥ'�{�����O��'�j�>�)u�34��^��&u/ho�c>Ɗ`�b��%Z�F�`u�!u0	���+=-X�9TPA��Z�¥G���FKg��,p�]�r�,X�I�a-t��"����Nm\��)k<����f�Mɢ��^��h9�[���2�k
�Q)�!G/`i�io�yI�8A2�>�e\�B+<��*8�8�V⬀�J�;PL��*����zX��G��#N��<@�H���8��]����q�dԀ�$�LVs��`���į���}�H:o��W.�y�z4/p[����xm������W����<�5�E"Fc�
�o�Q��sI��=���2Y=�p��,����E�mw�P�Bt�"h�,U�5�@=��?mĢ����k�g��+�F:6V\O�f��{d��@ج�m゚3��Sq�y��ۑ�s�&5#n��e�`q��/���k�Qv��J�Fp!���Z�)SKQ5;��gx�˾�v'���cb����8%���z���J[�;�Fج3��R��٫��kk��l4�̼�𾊻j�=��o�?���/[��ُ��V�:��6�(3�d��Ӕ_�K���	�I�CQ	��u��� /Kf^ʹ͌��q�u���n��a8 c�P�AӔGøH��SK����͗_���L��ah@�4JD'.�	<���>,/@�O�'��X�|��b�g͚ߪyi�w��e&��r�\��zo��&)�-�2!��,XNbE��-.�p5���T��Dqb��i���@<L�N�˵{�p���;0�JW�g|�5��_�|k
��C�!�A6*TQ�Z��MK����4�l�Л{P��JM˴�\趣�+!h��&:���uC
���L�U��D,�\�R#��S�N�„�xTUCU	������z�rj�PUj��b���jb�n5�	��.!�������J���}��Y�c3� %�������tE9�w��tO�u���ha4A���j��{Ա�#I�ԉf�s=�3��-�?N@܎��/j���+x���p�~ ����e�w��1|W���t��WkI�u�/�'��_O��Xg[�'�>��<E��7ԫ/�Qɬ�rl8Qb��۝U��j8�Urg;���F��ٮ�ZCX�2�X^��E��*���dr�N�e8���u�F3D��Z��n=���a�9��rx��w�`3��̵�O��.T�$h������ao�ǽ��n���$�"FJ<t~��b'�b`j��78nK�a�oE�0��CZe��\�脫��j��]E5���{h��{\QV�9�(-)G���w�	����WA6�M�ݐ$�R�Ir������园f��&�,����w�KEtY@��������TۥcS��`5��P��[`���1Gd�=pC`�FZr@IL2Sr|j���`���o�v��CU`h"Tդ�O����ړ�Ǧ���VX��]����)J����*����C[���Fz�Hu�_�4����ч	��!����m�M6,v��*�[��NGε���*���3ݰ�:�m!=�*��Ț�K��%���O߿�ٗw6��4Z���	���B�y�}�W���WΞ0��˟�����Z�#�������g�7qIj��K�n�3�"�}��n|�2�c����,�a�C)R�8Βt�ҳeA�[�4�����p����yA��E?L����;�m�����j�j�\_�o��=���`mI:�S���kwP.51B�1	}�Ѩa�:�޾������{��d���`�.{�~�H��;�	���h�y>JK��
w��sM'�,K[�Z��c/,���c4dAKYCkA�A����Ҫ��[N����~�%"��΂c�	;�6��KU�NcJ�s��+��V��l���>Gm#�X�T�cE��+jtآCI� ��Å�;��$�������}i�!��P	�~�h�g����(��b��+C�;�7Ʉ��M��4
�.a�]I�@�,�Y��׺c�4�j�W��יu�<d��g���8�RI��4�k�5w͑+Q��1eS��y}ƞAc��jk�#�&����M�9�?��f���ɚ����F�ca�RO_<��{��^�_���0s?�{�o>R*!��/�8-�i<>'������S�����u��(ж[G�6cKa�N�T��npF�I���ˤlF�N<��,.��o9*��"�q��j�j+�-فk�f��r+7O��)�A#��N7�
%���1L� �h�5ø3$P�����3I�2��~�mj�(y�n����"J��2��X�'�lp�;����B��2�Q8���ad9r�(����ij�L�N	*�LC=�Lu΅䅈��BQƩ8�F��A^
�0a0�q��/���RSF
�B���Y(N�hAc($O�%f
c
�rc@�'h3�R߳�*�cY�1"��d,��غ�-��6����\TM
I8��5`)2���W�D�T^~�K��5"SPtξ�M�S
��!��%�+S�U<H:�蚮�T��p�Ef�g����'<N�Z�|��T.;�+A�HC�t�m׼s���ت�?���۳�"1n��8���ۖ'͟��3���E�����&;I��{���h��~�}�Dk���X�/���,�ȉ�)��I��+1�Ŗ�)�ӣ0��H_ɾ�yǦ2�K4�����Av:��ww��x�{5�3�����W_�
2�YC!�O/}�������J�n�Bǡ�(�z��tk
�����O`��|���Z�ߏ�x*T�0��k[@��<wM�Q���i���;?�*�� �I�~�
�"I����,.yV��-�_n6y�A�f�z╂��Ė; WQ`��M��홈J�wh<Z�`G��`{�����;��ga|�D�e*��[*3,��%TD���b�&
C�M�UA�Q��2�Eu�~�-;�)���[�e�Ah�ԔLSL��m&�b�d%󺒫&��4/�V>-U*�HZh��B�g-�KW�z�P6/��C9�̝f��ƀ%�^o�����2�?��(�0�$���i�1%�A��h�����ڋ�Q`͍~W�o��E&yC�ĸ����t�B�ȗ;\SJ��{�+�dM�p"��&��
�������ԅ嫯��,�������z�>�k�I����EZ�
��T�2��))Gk�8KFz��2G�X/�
��{1�"��UJI�Hj�S���%%�v�fb0,1+T������e��ĩ��Vöm���=�_߾}m��Ѭہ=����a�֣���")�i9ao�^i�]�0���ul�Y�)��J34��o�aP�wlXf:�W���>T?M��,����<��0u`�
�I3��ꎻ�0Qw�(�B�%�YZ&ӣF*Kr۵�mx��2�V8�	G8(���3C�l�wǴ�pu���-��u�\��R`��?������РB�a3�4ot�Y�ؿB��&3Xf�V��c���Y�K�����oX�Ȱ�ğ��׆>Z�PMʰ�F^E���\��u4<a¢�*�q5���JM��&�3c�y���;2!fv�*��z��d�]��_��]b�'�kƄe���T�{���ۊ*2��;&�&�U,�)Q'3�`��&v3���/�C6Og����?(6��.F���w7#���'��~�k�_��x�ҩ�yw��'���ۛ˟|���_U<��~��K��f#m��G�P����6	�#�EY
+3���~�Vw��P���0�Z�B�ԔUd$�Â�%Z^�h����޸�q�%��y��Wm���;���۷�xGY���vPP^
4N	<`
��J�uV�W��Ve�4��Q�x�KX���\�
|/��.�d�2l!A��:�c��`=�l���,����%R�~�D��y�ӷ�% c��'�f^��ZP-ND��"�%i���fy.�¡H�-\�
��H�<�Щ5�җk�v-�P�&i��`���Z���BwKۍa	�ﴱ��J3��t"�p�:���C��jȨ���=����:�T�z�GPB*��%�4�/r�������ƽ	�J��`�d�c����t�}E&Wӭ�
�R����d���PMrh�Z}�i:�٧��fj��f
��	��|z��>�L%�Z����=;��H��ZyUk�rɎ3T� e��?t��%���O,�
�ޮ�RT��SP���Z]Z��w�o�n��_���՛gol�n���xش�1ʯ����=��k�$��)��p��ʮQ�����4�e�$N�(ֈ�`�0f���
��%�'�ؚ�Ah�A���CHm�(�m�zӳ)v�<ʔފ5��OF� �u�4G�c��`))�l�p��!+h�}��������B�D��Q�i��r����.G=��y2�|}}�+��ջg�6�rlŌ,/m��lԬt-�ͨ�N`�7ߏ�̅�a���~�߳������*u�(GY�W=f�(OSm�\�aF�~X���g�'_1*x�'�x0�2-KDm��Y�L�����Ks�������L���j�^�Ԉ7�n��I�-�HD���^:6�C�W��3FCմ>����*}p����W�C�Xc��'�g#�_��*��#W����YT�}����k�f{X��;~�&��`��Ef(�̵�g�Ԟ�r0ۚ'��$e_���n�ޫѮ��#z^t�܈�Q�1�th���	���O���A�ok�su���_�'�3>��%���"�%nQ�;��:'oބz���S�C̖\8C�&��V����2"�"�4���*ݢ�S�'�`�u#_���;���1U�h�(��„:�Cü&��Ա��)Z����P�1����֝m���n�k"�2�N�:�h]|�f�o�L��f�6(�-ˬ�qs`5i��!b�h�6�.�\R��H�p㤉h�^��_|k���T�������ݝ~���Z��B\�>�dW��}�J�Gs��(t7�u��~�O�@��h��j�5S��
ݦ��+W�r�n���E1̳Qɡ��@��4�\{�����H�$`+��c��	Y(I���(3�#�z^7��$��c����
�R)���cj���,':c��K��S��'�,>p�ɸ�>V~�	�­�m�'�V�P�km���$�=���˰�`��#��}�}mx9��Rs��c�P�(CN�
*�yJE�l{���G���Ù���5���2�����nLd`��JB9ܐ8��0'���8��@�O.�s!�Ϋэݭ����\����$8M�Ǣ�)X��~�f��
��r��i�!ɐƱ��a��Qt
�fa���`��D���J
���6�C��\P�)���|�yvy����o��EKy����H�(�${��Sn��2�u�W�zF3��zۖ�F8:8�YQ�$�1ϴ���w��`���چnܸk5XkW7��q2伟d��.������YT�	�W�G:�<+q�m�������a���w�(�~�z�QwL����1r96�
ݰ�{�m�P�n
DeK#Cݺ�
��X #=�e���zôQ�n��t�?n�)��F��ʫ��>J��+t�)�/ a��2x-��	�3(J���iX�;�Ն>/��׼I�k�!>*-��dhBU�J���=��8�`l�0렠f��j��wRbI��F������Й^�޴w:�u=�Be��9�J�/lg���…�^]��Z҃m�ٷ�mIgdYj:�P��<�\�nGm���Б�45?j8Ґ9�y�w���_��mnKZ�í�Z=E�!�3b�4��$T���X�|��a�3[�KzF6Q*�B�j
�� '[[��!qW%;&��$e4ӻ"����R�Gȅh�S��X�@�|��FzuU9���
Z6*�K�;�Zf	���ö�P�do3��Y`݅k���<�|׶�%a��m����Z���8lv#�xi�#����Zײ[�socYve��s�|�s�Y3�HV�{`��V���DK-hh�`�`H�	6`����0��_��vCC�,�G��l6ɪb����Sd��;�{����!"#��Ȧ$2�̌�x�{��g��^����Lf�zQ��F9��n��\d(v�����5‹�nЃ"���ZaL�I	y�:��7��f'^��N�!vJ�].���.E=L&YY`�)^e�٭�Q��<���
�I���*	@5aAI��<ӈHBAY���)�����u�,���pZs��\�s�VX}��b�>��b\��V��a����fe���T���s2N�ќ�d��X�!r��g��9Us:7f�;yNO�L��C�����O��?�R�c�/�ğ1Oc�qLk�f�JR�\��^�ˎ���	��;I�����7(6����uu��+�[_Ur`L"d-݁q8�.g�
�u��gBO�p��b~��X��`���7ߩ~����;fp�����C�9����r�Z�1n%�ReE��N��?�u�Br��4���Q� ˛Y��dq'��K]���hvX;�苠��a�o�d��헧m� t.�򠛂�Ac�dF����%t{�(I덝���喞4���5A���BA?���T��H�;F���~�9w��iU�ס,�P��%�\�=H�(�y;�b��>�Du�#��I

���3h<T�R���@�2MM��`��Lr)[�B��
��%v!6�R��0��@6তC��N+�3��X)����.�#,�u8�jN�8�l��ZW
u笭S)�i��Y! -��zyɧ50�������,�������~p��K�?�#�f��˛\M�[j��R���^1u;�hTt�zb�_*��u�8	��	;b�o�+����	-f��sC��M6��}Z�����DV3�ơTƓ~,��pi*YyX�W�����pR�U�Ͼ��z�}���j�@�V�8��b����ˎ�A���-ʆv��؊	Oиs�<��5�05��E�}{L��yR��)�y��4mDA;���:�t�K��U/ب�f��ݵ�,��:Pn�K]���5ZO�L2
�{0�s�s�~D��ƃ�)=����vzY����T�a�����Ù�.�� #ԖM��nj1��H��P*�P�AƱ8t�0��F�B4ЍӞI���<
SrC��Y��y��t��!ԶI	/|$�w5�jDbc�bZ�@|/�c����@3�i�8�m��W�[*~�tu>�"���|z6�SX�tOP>i.g������</���|x!�n>�k*?�,�\���VO�UI�;�O?Yx��؂��ؤ�<E����369pjZ�?���#3��!���\�v�Sz��Ó�:��$������)�����HI!CSU�)WbUe0������c����ӑk=5x���q����oLF������qpr��&P"r��w-.���'����;�=(k�g~���E'T׶��$]�:t�^��wcx5Ϗ��KV�*�3��[�e�d��|�w�&u#�L�g����v\M*�y�'���!Ď�.��ڗ?z��nomQ�8�3[�`3!�Mi�q�S�{^'����]=Wz�YNq'���׍��n���TUcCF�*\�f��b�9].�� �+v&�y�K�f>�t�sL/�z�	U�
��PbH�9g�B�_Nj
�;�
��􏔽KVh�jze&��B����*/K��ь�t�zO Q�2`o�������-�ԑsQ����j�2fi�pF����K�iT�Ċ�^�u8�1��\���u�;�{��kn�oj��չu�O��j����J|���&g�����,ٸO�n����T��pQ�����ɓ/EԼ~�{�4ǥ��@�6�3+=&��;Y��U��좚~玺�)�Qe.���D���0�U�<P'Z�Rbv�k��EaO�C��b�E�D�8���=�����r�4��u���pr�G���q��X�+V*9q)
ڧ@����k/���݆@�솻�o�G��?8����@��JaD���$:��T�d����f���M:�)Y����9�VF��`x�W���&�<��Σq�13�eEMޡ���2.�B'+	�LS�q���	���&#e�	�U�ك(ES�:7UVg%0�)P�5׷�Iņn��eL�ĵ#�ف���0R��Do���Ǐ?S�� �[kp����+H7+�`��n؛oYא%H��%�(�Zn�\���9�Ʃ��X�Yp�ӑVс]V��3�R8���^��>O�r�;�b�����S��l�n^>-΁r�K���O��곰�?�]��P�4�J|*��S�3O�
M;N���i�Y����0����bBk�sY^��o�ܷ_����/}4.twfU��;[��(��:�ށ��u��W��K���֝��s[�+��a1'���ڽ������y�7�|?�G�0s����%��k����Y�d���h�W�r|�~p89Sn��^�w���xw�P�qjU4�
dwM'�'�R��t2-+���Is���n�
��)�;q1˲��$�C�%� ;~���+��~R�<��v;�Kõ�����0y0'u}01֡}
�S�TMM���(���`�I7�ih��
��$eq��a!�i�`k��y��H�(͛EB���-W�?��ݿ������v	�%+���L3W�m&
9�>},�
<xs���PA�T�G�9)
��uZ9*���TDYA])y�p��e^[N���S���Y�~�"�埅t(GS%Y���v���@�I�i�\aO�~���ܿP��>��ק
X����,�U�)� �B�~���BOf�\�,ݶO�Sg�ggs�$���ccQ����a멓Ng������b)����*�A�<�޹���c󇷇)؜�(���j�7��`��L���7�ԓ��K6<)31��w��_V�K[P���W{j�s|�'�9���$2�J6�L��K���{�t�$M蓧�v%m�t\���tLw�Ү7�nG�B�=��0�j�GE&=�~��ݿ��_|xp�[Ju�A�~�֭j�f�,I(�b�;�@����j������n���@WkÏ_x���d����Bn�����h6f�
q��ΖL�jZ�S��ա���Q�������q�J�tX��&�t#E;��WYY�)6�{q,P�u�����i��y�&�T��B/�pQI�n|���0�J��4��w�L��	>l.�4+x�q�H�v��lU�ȑ����MRee�e���lu�w�8dm"�bo�{+�״�̈��D{sz�oNx^�'�����s������OZ�K�9��/�1&#WD�N
<>[΃C��\H��w�����������Q-�����I`�J�&�l+�b�z�ڴZD����|�D��UȒ뎑]��|��J-�=NK�6�v7����|F�{����x񋯼��o��?���,g��ynsL9�����f���û�{aC��?�Q\��v^#�.zϦT����L_�����N�fc��G�����8B+�:)f�c�I�v0L��#z�?���k)~�K�J��ƽN�G1)��qB9]��^}���Qr�I�3H��w{79�J?{��h4I��s�KW��5�t}�qA����A>	O�$o*m�����Ё�Ls�G	ؤe3��/��4-d�*���&G�Z���!���VV͕-�����G��qae6�\��|&6H�~k;S���s)f�k�bK���Y��� �ų����"��|�SȘ�ڀ����^pP���<w����A�·�Y�/�%3�a�3
�Ssu�ֺ��r�lG�աe���i��F���s�b��™{�-)��F�3>;�%?��uN�f���<�?hkB���<@��M����`�b.�d��Ū�(Ĵ���xu6��-}x97n��R.�m 5��S��Fz�N��kW���dZ�<v���)���ܹ3j��+ݻ��ww��Jq�a���0�Q��5��ٝ�Z����l���}��Q��S�%��{V+]��l�`v|���hXfƩ� 3ҋ���I��:+M�Q�N	�� f�����h<͋鰙�jSʘ�Md�׶k5>�3ijD����n?Ǝs�n�J�2ϋ�b!z��[M=���q(�*�r�|~+9��nt����K/meir�J����"�K1Nî���	��^�U~<I�	�I��A&/)�.�^lT^�9�#P?W�p��Pg�f��/���~��J&�Z�a�׬���Xe��:\[g�}�8ˊڀbJ'��(��1����b��tO<�ljc��(`(H�Jѓ�Ś#e��f c�{Xɨ~�S8�<栬풗��[:��<+z�X�puϫ��:ϏJ���8�shV�"��OD�B��i�=���*��x�b\�<�H�^�V�L�ja'���xVSbA�ȈAbu�H-���9K$�D��³�m���K�o���v設��Q�����f��t���׿�;�;����=����5ݾ{�~�>���z7.jw�t{��W͌`�Y��-gm=H�$N������7�dE�20�&��"7e%g�L����φ�����3,?��ٸʃIe<w��gE7�i[n�dQE9��t�׷�hܺ7N��s�~7j�l��?�����w��;��͝�x��<,�jmc
Y6ϲd�s�USk���Ha�e
']���k�w�݃�!�D�u"���A`Ь��u7�(�o���B#�(�j�\�p͔-�)b�d�w���w�H߫�)J�<�"͠�,_�������=C��|�%0h@�B�؈&�0��Apt��gMTx
��^W���$�,L�4�jݔ����𷷽AM�5�g�S.|-z~K���)��H��js:;2������8��C�,y^Y�\�K��k�>FzX��F����\��7è���T�eN���e�/!�^��K�()kX���L�Y�H��R;ʹ��g���\w�K��5����2/(��/��]���DU�h����ΉV�gs�\�gサg�0�J�����N�o�qcg��O�Ͳ��׿�����g�cY��q�"[��͏6/li�&w�2�
���Y���X�ףf��hB�~8��m]��8�i�wo�\�w��e{'��e���}�Y�%�^�:�n|��.<{��-�*������$���,��YN�PZT��9�Ջ>��>|�_Df�����/\�>�h�9>�9�I6����R��I胵e\/O�l�;Q�������w�ҤY��[�:����r�a�=�MR�%S~��Dek�-�bR��Tش��
`>F��B�zZo�
/��aN!Z��Sk{�bYY>���L<��Xl���0@�HoT6`* u�)Dj�\�c��*&�)I�� qi��(B:r��rمeh	|;�c?�\���Y���z��x�*oI����uk����2`���K��?y%���r�p���]��3�A��Ӌ�b����auF@>&N�;0%%-�S�B]�޳N�9/|.n��8�щ��D7���Z�B��i�RKZ�?����Ӽ���'9
��[gl���+a\������ii�g��'����~��o�}'V�s�^�G�bw�;1��/���wo�����r�R~e�/Rf(�{�sұiq0��b�T�Oҷ��:�U��ĝ��{Gw��%w�u���9yR�9�i�}��z?"���'��ӎH��ѝ��8'`s|��E�6w���Ӵ2q��}��?�)0:�J��_{am���y�T�Yʢ`���*NCgI[��G����b�O��F�q��d��(IR�E�rp2�-3��UZ�k���z�
/3�.�Y�Ϡ�,�� :,�'���bq.m���mj^�eb'hY��<�eX	�Ĭ��uÈ^�b�1}�E��F!�l�dž;�t���Ϩ`���ծT�f9�24�^�Gf}@�ś��-XY&�>�^9�sn�\�1�=�W��8%�=/��6W,l�]����p���(u�Yu�ޜv�^Z�|����ќ��*�#���P[������b���I�%�ʽ�<g;P�!ax�Q�n��0�&�����iK��
�9J��(�sw�y�^q-|�/�g>,<lY/v��sL? #���ผ%5��x��(��P�/�������z�_���M9>��b��.��_~�+�ى�����0Y⯇���Q��eR߹��`��y����?�|t���~�SBhk��V�ǝ��~�w6+G�ý�YV^�r�<)G�ʱ��Vk���}�Σ�x�ި*'�T0�@�x�r�ڏ�+W.`F���e��$�ReY��2��A|�(��zqท>w��	�iEЂ�ɋ_�q�r|�.���Ćp���둺1��
��QD˺(`�!�q�)*幁Ԯ2&�ig��DX��t��b$(f��Vp1֫a!�z�c�X��㺻�B_Ѝ�^��ϊ��⋍b2�;d��BŔ�Ȃ��oF�9@���+,�SU@ ^���L��,���̃2F� a���"��>�����w�Y���w�c&�VV�>�*’O-����oh� �<�3uj@G>�X�Io�H�����zB.��
[�
�PV"%�R!��K���ȥ;�'�	0K̿Ӓ��H#�WNY�{��9��q:sqꆝ�[Jݙ��'z��j'�<���@Epn�s��*��8�m&�W.o}t4�RWb'S_�~y���/^.���ݯ���L����u9Lņkj%3���z,�;j���l�T�GG'�*��;7'o}0�Ȗg�6�(��������~8~��w�R\��W���ȝ��
;�l?�;y����I%�'�37z���z�ְ�Ӧ�M�u��w���0�|�w#>(����=��$��rJ�(�Uu�n�ã)�i�g�(%ǓqrR�������Qʉ�v���M���|A�=�0��]S�z8�N;���_�:P8t=��=��h��uY���puH�d��4[&����^�
_FR%�r\��Pm��6����6�DVDA.��SL�*�珥!0�K�8l1�Ь��gt�7�l�i���bjд@���}�y�}E�\��	x��|�d�g���WBբ�tvR���,��'�c��\RF�B(F��.��6-Ж�P�"@*�Ju��輦d�Hڱ������/��2Npdն(Y3Mk��+�}�F<��+��F/��^�3tV�+�JI^��l3�
��r��he�iJ��A��K����L3��.�rm�ˏ�;�?��?L�7��F�����MVwt�ڇGf��D���+��XwL�q�Ӆd�,���&���H_�¥A)���P�B����D���ҍ������I^4����z;;z��'w��P+NL:-.�D����a��=��#Gm���E��Dv�;��G'EI��O��aA��ˣ�dJ��C'�)�+�Ӊ{���$�G�i6)7_�?:ΦE�~|{���[1��I���u�Y�#����i~0Π�)�!��z))0�	߸��@�RԠ=�e)�`9 ;��N�T[��S��z�鄘R����)v�wrK����.8�>%��V��$�\���(��1�Jʺʠ	�{�R�
㼍��ԩ���K�m�4O3'_�9�:����6`qoyI�>K�8�R�2�1�6O�"Чj�b*B�&J����B�Sc
��{¥s���\!#<1�L��?�X��Ve]���u-�*�T�W���L�.�Q���L{�̴���J��%ZΗ\�"�2=�
�2Ŵ4��mӲY�I��[��m[�19R�񤒵�5���kA�_��$o:�ELYȵg�]}떨WW�(6Sn��sq���$�~�5�;f;�f�fM�fR޺;1��_�B/�ƃ��:e�����n��˗�퍛��G����ʥo��׷:��������e6tI�|)5�qc�ԲF��J��i�I9�2�I:͆�t��IZ��I2ɊI�%x�����B��8�LG�g��3W>�����"H��S!�qQN1,:��E���,����������G�����
ncM�
��1)a�*)-�cF�)��}�����:�p�|^?�l����r̛2t[�o4��	m��q�	� ��.��a�<\�����.����W�1��垧�����bL��m�kc�ӄ�䲳��&Y���ﲾ�
X�-��D�1:Ó��]���O�vf��]�b�ٟ�}B��8HQ�RK���فb�ǥ)^y���s�֢4��+��F��N1r�X5��)��
�5ǻQ�����)F����kQ-�F�tWl���V�+�s6��x�	��he�`�w�
�\�ӊR>6"$��/����S�����y�8����<J�f;����ɦ�w���N��������o��.퐴��L���‘��J���������0�?)��(�Wƽn;�{8��fc��������Wo�x��[�}|XM߽?y4��2�Bl�嫟�&C�9Q�q7���QJ����.]��N��  �kPf���:���rc��|��'��l��y�窟>�3�73��=���K=�g�L�<K��֭��L���
��$M'U
�1J3�k�G!Z]�Y�d+~�05�-F["b�;���[�+D�W�x�cr;y��!Љ�*p@�@}\��Ⱥ����z [���v���K[C2ZQ�jXЊuA��,O�°��`WW��t8icNt�}ϕ��u���r�G����fN��7�V�̓?�X��O6+��Dž�
�.��C�p�VYr��XH`
��h��q��CöfƊDz,鮆Q�5���ƀ��L�C�G�y��綮��J~�B��&�QÐ-�̕��ac���PΩ�m]~%��/�'��lWnx��u靏;Hp��EP�����n�-O�9�L*=1�0/���9ʚ�����������p�G����<L�;LJÓ�����E7��,k��dZt{qo��8��84+6��Q�8+KG=�������5���?>�mt�?�����m����?y�"Iv�� "1:���������?��v�����b�UQ\]��N�w�h7���$�I�z���q=���QQΪ&�CE	�\�����(��b����GS}�q�4���_V�Yyu�w�"�?�+�nL���gY�
%�\�G�E����<r�aQ�����0�$f�ەܴƣ��]��Fv���G�9�N����O���n��hJ���{��"X@A�Pÿ�P��ۏT��U�/XϪbV� �:�&��MF;�cӼelb5?�j��0��i���|\a�_[�e=1��M	�2��iu��\p�NM����9�Ӭ���
�P�B	��J��'��,�kP����Xt2�0���
p&���l�Tc@KϹN2<�Q�ۺ,M^�2�o���^�Q�t���y^����w,$��U�˙�m�G@l`��0+�h��"��
c膟��4zM�F�ѫ��,��բ0mwz�bl"����b��E��4�~9���g���}ӿ��h6������ڑaXE�����ݿ3���G�io3.A<3M0z2(���xD��w6�de��l_ڬ�gIQ�4�y��~�A.����6�0c�0�}O:~�����n��W����t�(���޾?ݟ�>8�<t<�u<~���Y�Q�b%zF�_,�Vqc֣���7�s������,���A��,�}����ҵ�W�N�}�7��4�*T�(��^؁���y��Ŕ�Oa��RQ�������ӆ�[C,�8g�>n��ŝ��%x�^S�Q ��(�B�v�keh	��Ǣ�*�QeE1�=K$iUݔ@�P�I�CSMeQ{ò�6�37|a��j������%_ReйYX�����i�^��|0�&�����nG��M� :��,τ��cu�3�c�s@T\���'B]t��&��t��#C#m��V�;~����� P�$���c�\
�h�JSh9��BB�hX��{G6���	Ԧ//:�s½��B�4�E�R�9p�C=�U�V��s+W��V<0ox=Ѷ��3��>���éRK� ��0�b��>-�/�N���ЈB닱��/o��;:�T��ş��n���q���O��4��/�uv��>��i�=RXe�]�N���K[ɴ�f�<۴Zs�
T�E�ׄ�._�S���j�� ��E��ƃ�o���4���#��?���7˩r7:�iZQȐ�ۇ�;�� �FE�´
��\V��^��HOC=]�{N����Ƀ��Q^慢7���i���9%�����e��*�(�z���YEa����u��� ��Q�G^��ǝ0�_>�N��Yc�G����OQTh	fAhP-��,7�n� Zh�@n�l�((�FQ@��r=�ł2�n�mQc=��z��25�$�=�/E�y�fz�e�j�-c=oL��В�y�KKR-}T�[�OUN9m9��s��Z���<#�u�Ϲh��3Oi�=�#)V��`N�����V(Z�����P�6��;��D�B��Feda�+�(�3H=��|�X�c�ZH3��yԔ����.�4@��@�(����v����k����Q	4:[�I.���D�4Uk��5eC]pQ���FZ��E�����o���7�����-e&"�~�K���h0�z~��b�L1��~ς��l��ׯ�]����r�*M��ܙ�d��o�p�+ϸ�j7��k�䉪U5�^莦�d�=:��
���l%N�L�\�qVP���W.~��ׁ?�������t�p��A����Z'�e��p�//�⬨)��N��L�a�@5Y��� ,�^Ơr�cB4�k-�!�%����lM��K�k_}�[_�w��e������/}pw@!��?�r���չ��աP��^7�� 
�ёU���	=U�e��^e�^���w[���)1#�nRN���K+�4��B�B��QQ�a�ePZ�S��t^T��wk8N��;���#�=3RQk<��%K(�`��>r	�ScmC��,�E{�ֲ}L�z�?�
綃��?6W�'�ȝ�H���Y2nZ�?��R��)RE?�Zx��}�����J&���PKe�6���J�'�p(��YS��`��"l�Sa&��,�!,1.g�j;Y���H�F+c��pB��F��{��*8*|�Uo���e\���m�
c2!2���m(Ȇ(Ԣ��	�j�b�o'���v|6���ʍ������9��*�8Z��_z���'S�G�~�}��W�}0Z�Upo?�7��Ӊ�=��{�Z�6���?w���?��|��08�޺;��v�f='xp�эW^�ع���I�G��K!l��G~�7׾�L��H^����V��51@u���z�K�:���x��U)�qv��jP��]�f��C�UR�j�t
�z=7�p�lm�c�V�3�F�������e��Li�d�K�>�Yw��aF7�SlC0�b�f�������K�iI)3�`��q�Y����8]I���,�t
:YC�ưZ���Ǝ8��!�B^ޖ��MAB2�QM+(��
��S���nj�~����L��]��Zm�I��M�Քz#.Az���M�k�Qr�u
����2z.%��I�Ym�/��'М�s�-��ڟ��I$�O��'T���Z<>�,���"}%�[p٥5h�}ӭ%�NH��B�+��:��z�#/U�Ѣ��CI�<[�c�E�όub��eQ&s��eG��V(;@��B� �v�-D�ͤ�E�ұ��b/����*��_��?�����w��_�t��;?�����f%��1�X�Fz�rIy�J],=���f�{x���i�	�~�����S����.z<Niq�U����P��P�ѽ�a�����1{I��E��9�dp��K{?z?q��(�tesc����;S�L��v�Lͳ�K� _�z��݊��߈�z~�i�޾{�$I�g���n7޼�>��������
3ƅ�ߛQ�ً/^��µ^4��.�R����/]�‘��l�OQ�
�I��2��t��]ߣ3)�=ʃF���PdM�_��^�M��`Z�3U�h9tP�
�^Xw<���Q܏;pe�-�j-�4�2G��q��X�5&��� �4��KF1��;7v�p����p�5+��)�k
Hwj.�p��dU�E
��Ӽ⢕�z�(�3ui`�at�`R'�2�Am�/c�e.]�:-6ց+�p�`^��b���V8�4�,�&��W"�C�i�F�C�2j��V�E�EDS+dQy�L�֍�?-�a"!(\��Ħ�v�`-r(Z���=�>�K�j�Һ̃'��p<�Y�qKL���+�K�a��b��J�ﲣXpLD�VR��T�i+K��uc��ی��6{����¥�k۽=w'jv��R���/{�y�ƥ�Vb��_�e���r�d�N�gF�B-6�rȁO��$�����?�d�\��0�#U�M�z�^����&ɡ�{���7�ܫr<~to��Օ�{���3hdM�t�կ�̟�o�v���߻{gkw��Wө��/��ѽDD�*�
��;��A��g�G���x���������pr�xv�����J�P3Z�UERǧ��ā���@�u���4�`:
�:�� ��UAAD;��$e�wKvqd�w�
���q:��ì����t�8�6C͝@�ԲBo����&)�9)1E`®�N�Q)-h?�^ͽ��хb�R�]e�PxFA������"?#ؕ	�K���k��(��Еp��Gq"@�(@m�o �)�\��Cn��!f�;M-讀��(�sc;���(�*�,�)����q����B�aQd7O��[c��j�m#�G��
X^��݋���"��r��U���b[��Jt�������z��C`eׅ1�AM�@e�R�p�7��5�������|�p�PI������f��g�žX���5�x�Edxy���ʅ�-N4�xE�M��H�CI��a�IG����˛�ԇ��(�Sq���"͢�v���Y���,�y;��03lU}("�CoM:����{��fi�&�{�ni���:/�³b����x���kJ�����^o��L���k�>w�8����_~�����`F��r�����)�`�iFP!�|T�E�K�r����������b'�(H%U��/ى��B=��-�̥���9�z�������U��Y_�ƴ�<J�'bBG�Z������)
k��2b���)����@�Ք>mՄQD!f�崭����(�S(L$5|��i�Q�I�&�Kzc�x��\�h��l�@K�gI��D
&�>L��y$�jl�<�YP�]�
'"�E:G�3��s��.�D5e��M=�0im�h�)VJ�m���/�B�X�af>�,[!���!�^򴮜j�8g4����.�)�ƿE˱w��g�j`6�QA-OKw�Q�_1���}�(�G�ZWm<߇�����e���h�T��&&�i'z���C�%,��^�m�2��Ge�4��稕t��k�q�oĜ}Y�=F6���|�N��T�(SUd�(�H:�@t#h�L�bT�!!P�F�SN!���t���U�6ل �E�Yf��3D�B����/k���k�*�C/�i��Nf�����+۷�]�x�NS0x(Y�f�~�ƕ_����������3��7����>�3J��z��-�?����we]�dk���/ewCM�Ge-�x2������"/�4�����8�eu'�)pQ^��Sf�l���K�8���4�z�"ߥg4�����`��gY��J�>�s�O��8��|�ߍ|�0
�-�3k�[�����E4���Q5,�(v}o6e�CH?-)�A��$3�|�)I�~��-��L�� �XZ�H�tt�^��	JX����D�c}�"F���:�Cm
F>DGs��LiL�K<NFl�nj�#�X�e��9��D�n�8�� XT|���x����H3��Y�X`��ٍ�'�K3�$X�ӣ�m	�	��s�q#,���g�W�<�U�ЅrیX)ɟ���.$�Х��'�Ԅ�@(� 4Я<���[u@ռT��t4Th=aY�g��`$i�
�3+5�W�$2Ai)�RL�ߧC�� ����o�X�Ʊ�t�L.�q�����B@z��7� .!CWF.卺,�a�<�&�"Cp�a�s����Ϯu��~i����k�/G�Z������Y}N��3�Ҝ˘�ˈ_�J���G㲨���]?�
o\��
Ņ�|}��u3����>���UÄ�E���ߛ=���g�ވMy��ɣG��LJBu�:9�s�꫟���|p���c��~�����F��h�ϺĐp��V˗���jT��k���Y	dVU�Ӝ a�O���u�:R>v�CȨz@s�l�*�C�vc�N�D.�'�F��
ܞG���v�Hf��q@��{.��#�U:�P]oj
w��MӲ`pR��*��8�*x"����O���Քg#BR \Bg���*iiC�'�X
�M��V���6�V��@��eS�y
~�Q��(zU�#ۑ>�X{��T�R#��2O��p���̑���i�|�	�r��xj9R6W	�Ӫaɟl@z��<5�vOө����yW�qam��I��nn�B��r�r�<��
��<ӥص�A�
1m��g��q�(UR�g�	[I�k�+.���k[mI��wܵ�ʤ�%�FX��5H����>X=sA��Y��yr�
�����v��kW7ַ��vҺ﯇^�F=o=2�)��͇ui����7SK����5ˮ�H�,���H�$ג�j���F'���F�o�Ϳ��woM'i���|���ի��_�?t��R�����ʴ��+�a�އ{w>:�M�^���\L	��>ܸ�}������������fM��B,(}�Å���lFw?-�Ȩ�r��B�+&;¹������^�Sz��yW��m�	Bt鯕	�X1�@	��XX8��2[M��`͏BPI馊<+(�@ӓ�_(�1Ǒ�Nʣ+����|��,��%&��!f�{eK�l<���~0����<���e���A��>=��t�u�w0g�����P��b��m^9l����y����W��U3���/�dY8�4�}�iU۹1hR�fր�	����y!b��i�U�[�9oR����O���	>�A��V���#��B�3��h�涒�2���i��p�Q����y�xv�!��Ë	�=+1�"cJ:�	Zb��r���,�_<*�)Hi#TY� gH[�筄Q��*�s[��j����+�W:-�Ԕ4��QԳj:�oʃ�vY�r�R�s}��삍
�s�&(8�9�O�O#7���������],��,��\�L��9KJY5��{����_xa��0��.2��+ן}���$���1�
���_}�O��G{�$}��K�/��!����'��N�W���zoo�z�.��'�����{����I]5J��~�
F��+�k׿|e����eD	M��P���3)�?�h���s�`DX���(Z��Rc�,��P�2oN�oGA��(��0'\�f�$x��$瘀9:�N�1$�y(�PO�t�b����z�/�՗��w�o����Γ�HՒ�pm��;�rm�Wb)�MuWj;{����uдТߕ�F>�%�c�p�$v,<-�x�€��b�L�3'�+���I�,Y3U[������Hc�g�0r	�Zi
3�����3p��hG|+B��J.+���22��g��J��xb.�Pt8���uƩ��C������	�Ԭ�fd&$E(�2��M�h�u�PՂ/+��N^�<E�F��p����L���Z

"�{

8I���9J9U�dI���й�_{�㕋��:�&�]�r�B�*�ez�C! �)Ng�m��K���-��
�{�a^�SF>�ys#d�NZ����J������(�))����I25�����ҫW��=<J�K�c�y�{��]_���]��/�Xz����f�YVӭ>)7vz7?8�#ʱ���!^TQ
�#�8�_����U��;��zN/�QX`ʤ�6��2vݵ( ����;�@�ɫr��Qk�Q�N	ĕe��|����Ѓ#P��;�[�r��7`?�e�!禡Dž���������wP\�U.�p�B���yΝwn޿��hF[ޑv|�|pmv�=�-}���M�b$$�+`9�
aٜY�<.�,�Wu酠� ������E ���&�xt|+;�r!�Hh'������e��v�*�iZ�'ĬO49_�˖��?��pUj���&���?%��d}ʐ�",��7;>`�t��pl'5�^�X�=�2G95����C/dL/V��–4�����viNKc�X�?v8�
�2J-r�sn� �);��F�D�Ri��h#
��p�ӹ��}f�ڋ�;�ou�n��Ộ����`
֦��F�ۑt����yiVȺb�Iq)�-�AV8�,�5�#	���9�M�]�n=*��R`3�����~6(Jp�=���}�7g:ij�
�8|�?�+�����h��ƥkW<:Kb��zH��?x��Ӎ
T��&�B�HA\�ľu�a9�5i��b:V:�=��YY,G�9���pw1����Jڕ�̪�$��j�.�u�~���/��6g��_�
O�z"�>xP~D�#O�p����f�e�h:�<nF7��iQ���H�y%�q6s�V���ɻz��g��V�$���mt����B�hd;�F��(|}a�JKЪ;�R���GpDvI˲��L�rT (��+�
�N)��a�LbI>�e�Y�9˅��eP�(�<FM:?2��M͜.?���c��΄���������j�a��H�4	���K�b#ϸ0>I��)�n}V����E�?�L�%�Lz>tvc`T2}�:dpN�ڗ���fx�ˣiq�n�\��d����a�o����gb+��2骐zf(@)%�X��	��Z��^�-<î�цi[�J�81�����!jiy�<$G��R	�ƍ��R6��a#r�,,*W���/�&�:��`��l������H�����?��a��������^mԸ�%XC���AY��JF�ã�O��IR^����o��7.�����{�[�}�b�?�Nv���k]�v�������r�L+��Q�(����`��i)�g1���+(�$uC1��rQ�:2�f���K�\����gi_W��B�G����e1K�M�,€��h|/�@
��j8Ň^�� `�z`oIЏ�8�ɩ�A�
rE5�qyB�/��J�-
�Ԕi„dE��qX#��-�����o���%��T��dv+Se����րV�qt�YA3B�`�@�]>((�R�J�F�S�&�^I�et1%̔"��8����O���k����|�Xa�y��N�0�J�Ą�ǂ�k>]�2O|�S}����Լ*�9���CLB���c5OvL;� �΍b�qk�=,Z��΢�aq5k���{����+��Y;���i���V~TZ�E�XE
׹�jfe=��a]��*j����x���N/�:�v<��Ôɥ�bn�n�gq��#pb6�,Z�e%�\���fR��#�z�u�L��
�Lн��ȕ<i��j�:[����U3!#�S�t1��M;� ��E[��D�Ks!�^��s�ރ{��X>=�F�<���%I��~'��P�����'�.?{aP4�������{��A�#E֡MJ��A�˼�Y�ns�q76�'j-�����&ҥ�Ŕ�����Y���FI�Ns:,��H�HvpLvTS��E�.��-뒩�t�i!�F��TM�����&�§SU��ᙁ
g �}rҊ+A<�E��s!��5�S<P���������+A���5E���~6!/f��Mj�p'���3����h�[�-3Z��}���� ��h
�E��F#ѥ�b�h�"��̶�<i���X���hYL�":�m�K�67�_R�3�bq/�9�aA/�O@Xr�3j��wN2gU��cu�����G�loĢض�[l�W�o�XP2�B��R�Y7��)�RX��V��v��̭
���"���г���.O�ѱJK�s<�k��[-G��@���de��æuq��%��
��Q���������<����
����̜�kn�YS*�>�F�L��.�X�)���K�o��]L�b��_�z��O�s�y�f�����b=ء�f�sD���9��q���7�ݿ�+�_��ٽ4���B�+؉��qn���P�EA^�w��t�>���ϒ���37��
�A���!f�Y)K���Aǰ}��������/~���~�/�����q������K-;�?�)5;^�F�pRRs�[����0���Ŝ'|�
B�.# 8��B��K4(�������p�]��5������V�����Cɰ�{p}��Us�d\sM�/(����?J�ƶ?]���n]�7!������9Kz7
IL	��,�B��_9��Q�䇋�%vGtBfE:KCS��\I�t��F/U<G����Y�^���̮Z�>O�Ԋd˹`K��;�辀n^�R�s�R�jP.���(��Sy�9�_bi
���`�ԥ�U�,ߧpԩ��<�46�e�
!�!�e�� ��3i�Q-_�X5�X|�j��=�vj�G�C�~�Y��N⺤�%
��4>��8ĈWC"����_�D�q!CR[V��cv��V�E�	������x4ZP^��
-�ڐH+z/
U�I�tX�"�L��Q�nZ�1��Cź�d��An�����U�S`Ҭ��a5F�Z
P*����G�$���j>�s�`��ZOs�AZ�U���CzUW7����a�藾p�"���)!��(9��vw6�4V%хlg���sJ�j���r��&��{g���_x���|�{�c����BՍbږ�I! �_��8�P܉=�qȘ��?����̀��h�*��l#5ƕ[� �F��=Ԑ/��(��o�N؉Q�76��P��p��C>��dθW��G�еV��)p�3B���c4x�&գ+�V�S�d Jj\E�b��wnj��Q�Y;d6!@�(������3u��$OK��ճ��Ui3m��Z�lbK�f�nGyآS��̯^�-U64�3�"�Z:%~^����_
������T\�YM�|�gy��v�5���9X˘�{E.�wV:V�M�|��L;��~�<�L�(��9~�����ZlX1ry�V��%&s���^�l�Oæ�PU����R��a8�>�^��<�����z��fl/[�����όU�5;�dh�r�Z�)5�VIU��PF@�`Z}X��:z�a�R���?��Y����H�s�,)Vm}��@R���3� � 4�9yN0���|��׻����;��CG�=��z��l$v����xF[�*u/���
�J6�1!U�y���E������Z��K����4�,��[7>8���œ��_����GaQ�9E
��7���w��)�%����i�w.%E��c�f��;�)�
�����>5�e����^�Ҡ��N�7�V�T����Q5c�:�����!��E�D��8v!��`΁'�A��8,�F�"����^]���<��X��U�L+�b���:�.+v]�I��ѬT�9�
��w���E����U=ɓY��Vk��ZY-6$���e��趰�m�L[A��eX'�ۖz��,W��s2s�F��Sn��T�Z�^ψW���f_�K���1�sK��밯�.�9*[ujo�Jss���L�%����OM.q��*��	�/�=��-G��L���Q�.�v�)(΂�Z}<��*"�tY9#+��������Tmk�+�,o!��w.A��m]���$K�pzɵ�e)LW�^5+0(T�zӨ�����(��i�}��;V�C�LIp�R�B>d-��F���Ҭ�,WFڊ,��W��R����g��y� �L��c��B���\�r���qz2N	�e���,)��^��…�8��8�B눹m��,3t��4/�>~4z��àx@Y�p)�y@4�*�{^��?>L{��s�L'��!7�]�I�J�}���"X
T�q?;�.}ϧ�N��߉CϧgǠxQVI�8�X��sx {�ClT��U��\L���a����k�p;�>���;��NyB�u8bJB�n�d�sx���-��h�!�����Az��
�a/��N�9�t�<+�Y�dy�S��U���h�|yqܙ�|,ó�<8ĝd�B�g��_����VRB�B�<O�o�
?���&�p�-Ň���9�69n�m�X�}�2���@ڞ�<�ǓR�_��RK�P���4�i�V��u�[]c��p>ȃ�:�=�͢6/`q��}_.�q�bd�%J���q��=5�J7,wlcX6�b@mX��Nְ�I�X�c�k���H!���0�*�62K��xU��c?Nc\����0���l@Ħ�K��%`P7i]��f�hl5.G'�AZ��nc�V�CO�Q���������I8o�	ac��q۝�/S9�~4s�����=������x������_��?���{�K�K)X�:kQ�ы�׻���i��
��!�!*V׊<g���q��f��+k�Aq4-�vb��qMYZ%�ԡ�a<�A8]�ɬ��Һ�%�j4�8U�xR(9Qܣ�
��:��E��ڴ��&Ό�����i��6�r��qX�wd�A�F�Jd0%w�7������f��1�"-��8��K��F�`5��B�R���t�qJ�U"ZI�}��PIk\h����z&#YHϚ��U��"ĩ B@�ߗ.��q��1��f�5o��=x��o�M�Ek�h��5w[w�U!�~���b���Y�3�ԚW�j�����ְ�ιuqd�jEP��b�g���Y󙆠�}Z�~	��XD��9��o'We�O�-�s�|"�-�����	�eWY'����3�{k��TI*sR��Ld�آ (���"�kAl�'�n��9��C���>0��J
�$�����n�{ϰ���7�����{�@_�~�e�u�g�����C��!'z����z|�K��'|���WLAN��Iߴ�^��B�:9iS9��
��HJC�b�ZW�0�X}�Z���y��.s�±Ԛ.g�G�����B�հ*��r�bVʼ-�Ǘ���paw�R��Gj�ѻL� �7/�Fv��jݚ�kUEkѣg��D�޽�+�%<1�,�<pl�Q"�RIϊ
�3�z��6o��K0�vwDv�x(R���~w.&�I�x�8���;��G3�w������`��疵������B�AI4���E��ʒ�RX-�τ8S$M'�%�����n�K"j�~;��&$�Iu�F�J�cy�b�a���$���K�)��2����!���p8㥍Al�b�%i��v^�L�	��0���t��Y��6&h��69��QW���D�����2$�$�K�Or�P��.�E�����$N��:*R�����ܯ����h��DO���C�p3�bL��R��%p>I-e�\���:�fp���y��	�y.<š�5�1�Y=�Z@�	�W�iڬ��K��յ���W�ʶt9-�^z63���?�]7C/�U���48|�x�D�Oo�O�]9h32���;EJ�j^�D^‹�w�G0�������VX�L�/�eI��{)b�E-j��}_��4�QU��>5��!����|l���QY��"���Y)e�`a�+�h��1C�_/�t����,���׽��[.?瞇��J63R6<.j�Dh���êy9�����Q�ey���ʜ�}�[�Rm��Do�ЩhIWa��@�y�gY��4�T*'�ZXʯ���M�t�d1��٦�.s�O�zb�&��b �u��}'2l�J�r��Ϩ�N��jD
U��si��u�����)"9�!.�
���$a�2��xCO�!��"�zGs�Z��CASq
J�%�҅ck��6ҷ@$D'�����V��AUxTT��Q�4^0��l]�K�(ƗI�26G��s�}�x҆�Fmj��:!r�8��4�y��*�l�L���O�G�x���۠���������<��}��#��R��.�+s@��t-��m�*�9�Yg{b��i���ꛙkZ5,��
����gꁂ��к�۵u8�&���;
l���@�|ݎ�������X!J��1wg�pIE@bBg
�RCoT`�.mb�h������XgC��K�({x,�f�-Z��b�1DžK~`C4H��ռpf> �C<�b�����U�Y�+{����:�`Ǵ��^W�eq׾H/��ձn9�y.�����{�=l����[A�@�o�i�+t������t�\u�x~lX�5�WP�Z�3ư��3?^�?�2�O�X��rs��0�]���.�`6QT�s���J��<�� W䦀oT�v��2_�
^E�'�ހ��H�-�=^V�n�]~8�=Ƣ�P ΀X-U��(�F��,��.W�6��؋�J��{�¡��Db�@��
�V�� 1���&U=E�G�+��c��r���:��${���3@A�U�2�װ8f��_�V���L��L�������o/AS�o��{��*�QU��^_�\��e��^��%LC���ъO�v��T��E�
�`��a@�(�@�m�*�S�=cL�2��vnqp��G�
 gn�I�<�zsA�d��l�jv�I�5��a5�}�C��k��_�v���
�Qǿ��Kk�Ӗ��]�C����P�N9�V��.{g��U�;E��W	�Or	��!�p�"+͠��3Bm
�31�����4{��9/y�ö�9++��%�Psb��t�԰��r�(GD����p\
�j9�+s�������Z�jL}��]$gc<�g���?����=t����0��wx����bp��$;9&�`l%��EϿaÖup$S�O�$f3(u`X>zl@YiJc�Bq/�>�3*&�����h�����ze��4�3hi���t*
�!�-��Vm�&����@9�)��*�s�x���A[Z����]JQl��h�u�_��+f�!�{qi��B�S�a����Ѩ�<�H��5�I4O^�Q�92���\��/�w�O171�S%�����s�%��Ö��"�1�flwHw�U'9�̋c2_zY]�|=��i��ְ毁�c��"�:�cx��tdYN�@a����K�=T��\�"��e�8�2T�ZU/&�� ���9�ӷ���t8�Vp]l�.NSl�3��i��j8V�\�����ˎ	�nw-�M>g3�4�A����Lp�f�S���tχ.�Եhg�y����>c�L^�iŬ&~�� T�>�������o;x�Q;��U�:A����M�ٝ~	Ae��.m� �}M�!W!<f�%ˁa��k)���	^ƹ��p����Q��=d�H�2-���/�u\�mOB���$<8G�bc�%�� "���eĪ	A5�je4��}�v��ǯ��@�{��IW2C���@%<%Y�q�\��5��E�x�%.��x���Y&t�rG���w���,��dY�X��Ս"��,Iw��n����FTrh�q�'k�8��i����b|2Y��{ig<d/ِ���a*�X��QR@�����:�[6��vҥ1��dEA��›`�ϝp�^��Q�~`Y^�zئ�wi�M�B�W�Y�m]f�����!ŏq]��R���+�#�%kU2%�1�jE1�$N��N LT���<(����uKDtI���\(
���R>���]��)��U�V� �W
�x���\�\��g���4�u� �>�W�V�ί��D�џBR��5�������fU{��J==3������:��Z䣢LvDR�?� T�-C�n�qc����>3�[0�0rR!��0(�m9{(١�$*ٕ��|D��|�B΀�`�2�X���<O� x�pzvƕ'�.rg$�Vv�2K
N�Z"�U�2e�\G,��z��Ux�3�/\2e�$��a�y�
�KZ"7���z9��c{z���}p���v��>~G�9:1)��n?]�ا7��r�vT�-t���swt/�����~�_#:�����,)*�KD��'X��Z�V_����ʤ�h�K�!h%��т�b_;,r;�i�WD�J�M�z�h�L��T���̣(N��T�~�7�!�ͱ�e�D�6��j;)t;�99���Z�>*���P��7���J&�助��shVR`�L�����FGGd�G���<����"�h��\�:�E�m��f��n�w���kw�0w��8�`�H�L����nx4%��z?���}�,����;r7��r}�?��EN��c���.<rg�ĺ��h��C���O	��G����j&L��̚�V�H���>�u����!KR�w���3t]�K���WU�V�y��f����Gs4�0$�x�("~��ݚ�v��D��o4Ρc�+;6��1O��"Y�6�{�5��0\,8�P�_��*�d��)��]�]^ϐ�z�� ��J��ʞ�F�3;pP��,���d���#���K"7��ܹm��avd%gz���bQzt�����O?::��_���^�����M�)�F�\ቸia��DG�4�[���cE�cT��nJ;�P�:��3ª8�4���>�"]�x>�4Y�v����C�u�ء�`��%�'G���b�뼢�]��=+U����8'�9���^_Di��!@
[)�
͆XI��r6?�Ǒז�›A�d��a��a8�� k+���WՋ;xP���@2��h�aO�k�4��3�Ź���dd�h���ye��J��� �D��R(�ncr�%��Bc+�Mg
o4-�!�ڍ����\����j ���Aqs�M�m��+8�2�!��cٻLڪ��x_��7��B]A���{
>����.l��ڀ�o'���s�k���n�͓!7%^�@(uX�Ne=w��s��g@��Ԛ�m��<��s��ʘL�h�*����ވ��XuF7%�ExB��(K��XA?�{`�'5��t�6X�#�jJ�T�DD��3��TQ�+>��%L�Jp"�G���=�����S5K��Ύ��B�QGN�rc�㦾�2��<L�Q���go\���
��\'>k�<��^�{`q�Ʌ����eS��ξ�G����q^G80�Kyy��񔟋S|��4>�XGC|�#��*PLӤ�Kp���F7¢Gg\R,�����k�y����)p���me8�{Z��.�:�hH87<�U��6'���iB��8"?)E�H�]@,*��d9��&r>�y�3G��.�;��2���e�N���N��6��E��dC�B��늢xS9]#|>㢐aN���~�8h�J"�DY��C�[2��V+�;�uY�R�J��v+�P����Hd_M贾O�\��P��Z�E�X'�k�Uq�˞9ɺ}��HO�ב���Dݒ��&��n��zT3�m��ZϮ��Y�a�%�SN�Auv�S˾�FnYHO�S��ԡI
H�\)��;᫠���H�*�;�x��H���tw��ݕ�~���j��5,�z�zT�\Ir��B%��/
PX3
ceq�ÇX����
�0j�d,a!�`E�U�쐻��6b��0;��d��^dY���
$+�b)��$8��@����:1v#��b��Lis��(_�	�4M�/�k�<�z�x��/>�H���H�z581޼q~)���@�!��z�o-%	n���rqT�Yz6&�8�Z݉V�UGNHf8ؖc@��iӸ�S�!،�8X`�l|p��h��6�C/	9����WL|�#���n�[�Gf- ��WN��r�
��e��z�&4��T1�oO�@�� ~'K9s{���V�vA��8N��HD���Ð6	ةU�á�V44��]|0�	\gl32�󶄹.�0�%ې��8��,M�����C��#L�����7��9��7/��K��ӡޜ�F�OHN��o���E���� �a�)a��	[�z�����v,�/�N�m����){
�.ۖ+5,!��e�a��$7�,\�Ţ@�~�K�eky�t���m�N�7���u����	��e��*qI�p�304vdՈ1�E�]���Cv�¡r��g�>;���z�L̰�'4짂�t�v��$��tN�]4��
�8���
lUh[��=8�r��x&@ٱ�$�Q����ʸ�߲��d#�f\��ڹcG�U�̱'�`Ӻ3��-�'}"5mY�߶~n���"�U��6t����$�\��(����(χ9�4��Q$!ޑ^�ތ|�i�'�*���mQ�ss���^6�ɐ#M���el��v��.��yu��#7Jo�O�
M"�4�n�s!��7�
�C�ٟ��$A�1�~�U��AO�Z23\-}�K�δ�c%>�I�>&Ƙ�M] D�'=B崤�%?���i�`���{.#�*ϓFt�ƻ$;���
��E�%�9~��Y�upc���6�<0ι	��N�H����ג�8�v�~��'��-X]�
�~2�n��TSj8�ʯ��XHB����Ȧ�������jP�A8�O6>���e����g�
�RnC�k,�{�:,ҡj̧����jl����eP�T@�O�d��.���K�Zo��$�x�s{¨�1���|�����Vj-&یՉנ�q�c�ʿ$X��I�2҉XW�~��5Z׍�ҨG=<�y�}�]���1�1yMU�2G������r��<��r��^�uB�b��VO-,"ؘ����=,fss)_.t�}K��Z���d���iW	��$'ᰮ�zT���@��oX?�,�=�c���Aܦ��Q��<��h �w�)�o����+��W��S!�:�Җ-��&���ca+��jPP2���t-f�id�i8���������ь�V�.�B��&[��93~���o�un���cJv��d��5e�]�{m�;������B+ef�����D��nVo(�o���#X�o���~~3F<;y��N�4��S����3�J��.����ȍ���g�fq���Z���Ř!�������c�is�ł-��s�-E��%4O��Z�:x��)ؠնTo���u�G�>u�p�K�Jii8��\3ҫ�z+{�*x��*����m�;M��G��Bb;	��MJ��٘pb�i3Z�0*�nI,[J���^7Y��/?t�9g�N|��;�ߴn�sb�Ӊ@<"	��'���GNj���5��V��D��z��H�ˢ�Y�:������%�j�ZA�G�Z�L�2�7j
�+�|y�m��K�L��~��@���41&9���X�%!k�>�L1P�(X��ǹ�Lc/U)	�Ϥ�B_���W[a�yѦx8hq�E$l?�jX��X(i�k�9��6�Q�~`#/+?��B����R�L+o��@]�M�qڝ��U�c��`����X�?ڰ>�
օ!�S�^4�Ub�v�
q���E驩�vS*?$�����)l	Om|j�d����*':DLȾ�@��ĸJ+,-�i�P�g4���A�!bwk@y�L�>�v��J�y�(��]cׁޔ�m}�����]��g��&�6��G�03�@���1��[U�j{�a:\{R
ta�G[[TݺZ%��3�hW»�Ѥ�r�&;<��Z�ѕa�Oc89.�1*Y���+'��fO�.ֻn�M8d��䮰��y��:�°`���ʲk�E��ă�X>��;��p?�/ĉ)Ӹ)6��Vh.�lPVFݔ򸰴u�j��Uy|i��~v�e{�"�[ݼ���Ԅ�=�أ��u($Gwz��lJ��#�~�b���i�	"F������8Ɔ�H�M�ǹ�{G6UE1

b��:�i�|$���AJ��2U����]b�U䉣ofy�2�����"�?�J�-N�q�cmJ��Z���p�����BQg�9�+�u�
�����"0a�UKa��6A����˓���i�¶�N������@�r���S�LU�.Z���I����DT���"Y����zF��7SN�Ƕ4X1�J��j��
�h�B�_H:)� ���
U�EXq�����,�'�s�8�Sy�a��>�ڒt���$��)]��@��ܔ0��=�ÔQ�}(Øw?8\a�1�����*"��H�q,�2���ǣ�r8���(,	릲,W��{�h_��W�{�އ�!�:o�R��UbӔ�r��{Rԑ�ťaꨇ���>��h0� K���E�/ �y.���x�E\��y钑�H��N�͌�P�g4>v��S�t�`�G��ԅ�p�)�	$S/x��cnC�k\,����7�
j$��?ZK��9�vP��-�����"���E���.|A�=Bq�`<�2b]�ڡ�n��@!2�
��������%��N.�Q���ȉi�ܛ8R��
,�HW"P^��-����֞~��dK�f:�O���г�s"��e5�)��q��[��?1�zO��+aA���%Tk��K�x
��ڨ`{v��'��ݶ�37G^�4TTd�]U��"7ٸ��ɡ=���ư_s���*
�����G������A��;����I�#=��fދ2�_���Ks��IJ� �)+���쳶��<KYy�p�F��(��,��`D��l�J�k�T��H/l��+��8��N���cˇ�#�8��6{�p��ޛ|�މ�@�IMF�s����I}m�q����v����OM�njCR5H9K�tz�6yF�ڈ�dMJ��Xl(pF\��ʉ�@l?A��Y1V��?�ʕ����u�;5���$���&D�|�GZ%*iw�ig��=I93�14~ʌ����
qZ�q�9HτŎr8#���IT� �.[�;5�~��R��0���	���U�wUg�!Ɔ~	N'.�#e��	�,�>�C�?�(��^���nA}}�Y�t������P
��Rk�j�zj�K�'���5o\W�u�G�R�s5#�<7���w�U���Y�/���ElJ��ԝ�'O%����q���\�B=W��ru�4Ohx"����w�¦���~�UW]����IR�h4��;҃�<���D�F�QNI\�#�o�=�x��cG8T��8�o�`0�"�_��o<&���ʈ+>�K�v(���WN����+v����?T`KX�]r�O������ݷ�tS'J޿����(L:��ri����;/����ۿi���s}ڠ�FIi�`�������y����!�Y䇞e��h~�����ѸHIi��V�)������{�c�xܷ��S9.��`��Pʼn�bK�@�S&3�,h��.Ϙ��$�^�q�T+�CV�q>�pz�b�ƌ��PKȽ�ܩ�/�r�e�WBb!>��L�!���ڹ�K��<)c=)Z	�ŷ�N!A��J~����BA׶���9#I�ă��Wd�D��՚��Nl�-�7�]xv��:�wAm�]c�*H9q��6R�⣔�����E*�#_�R5��e��7�T�mYaN�M�Waa�_�G$��N…��^�./ȱϡV��%��HY�N��s.�->Q�����x	x}��[����u��
=�r$���I�YyVb3�Պ\
J��v)#��De�j�;�+bk������߽k�w�>|n\p����c���|�˾��/8t�~��I�6����g>/]���,/-9z�+w�Z:y��O���{.���G�~�K_��g<�nؿ��3����*��g?����z��/H�tϞ=x�?���^���}볞}������X�����������ٱ��{����_��|�ɥ���n9c�w��7mݲ���u��[��/{�k>|��N�\�y��_�m�7l<v����]��³{��v\�s��w?���o��k��У?�S?y�3��}?��^�KƞYY�
;Ur2xwz�اhPr�#3j�{��#y ;7*�A����F��A,j4!�W-�ȭź�xi��R�~��6.�"�OpL.49sXPI"��h�
�*9�1���e��E6�<zI?���,�e��a(>��2�$�.��/Eů�Қ]L%�@���%����g��u72���Umç�1xz���qЅ��÷\���Գ����
ؕ�����I�N�i�6^<�ճ�th������ղs����Ba���q�I��@�d�R�Eb)�H��b��T��s�ި��z��_lPz3��Ho����ޖD�zц�x�G���2ʂ�ظ�Gf���*5,젴+�=i���Ej�:̈́�O�4X�n��i�n�C����[~�7~�ѯ~�u�{�c���_�����׿��[�n}��^�~�}��~�9r�����������������ï����2����G������^u�w�孿t�࡟��۽{�O�������կz׻�+�o��o.�8q�e���o>�#?��x��_�{��G�;�u��p�ͽ���v^v�ϸ�ʫ���:t�����;.�O�n����������q|q�k�?�‹����~���>r�C���}��Ǟ����_���6n�d��E
~�wu�w��)~5��b��{�M��bu�~�l@L��V�ei��W"����LO�q���|��{lK�Md|�g9v�R���K��фN��QVa�7&�l
���6�-�\O����Ne�T�(�ap�E�ܰL��WƊ�bJI�7�5�>ƹ"�*��.�E��cPThrFv�cD��f���cŢV�xF���]T:H1�u��D=�n�'o0��b\�\��9m�bgFA�M<�Xʆ�+�U��7�T�i>���)�@:91�y�����D��D��tY��D����DVv��\e�E��J���)���R��T)aؓ�5N�-N�ftJ�3�S�."E�l%�,q�oQ�52�L�`��H;���27T��!���0-,,����ƛ�v�W|�c����/���糟�l�ӽ�>u�wl޼��x��'�:�T_~�A�η��C'N�x��}�s�}����3�x��桇���w��7\���'�z֭ss����#�߿�眳���.��[��O��i]|=7�t��x����?���g~�m�?�x���{���?���Y�9�‡��{b���泶ac�����Λ,���i�u7�u��g�ر�ƛ�w���{��+q'Y`iXڲa]�ߑ�:֮����ړ�];LՈ��b��-:^s"�eᅢ���[��ĩR�B�C�V��c�ub"Σ��o�V���C�Rd��JW�d�I�~e�P[ԟ�K���=�R`E�ِ@J#�ܚ�����ɮ\���f��F`k��a���<��b12P�ޖ;��,8T���\�1*�R&����J���R�*Ǚ�~UOhFy�t�!w�e����T�6{j/�	V��xْ]�m�D�#�43����NU g�~v��{���h��Y��.Z}�v��m��V��e?3�.��*PԖ�K� �]u�C��'B��֜��j�
S=
��{pl%+T_����I�UD*�~l8„�š�Êb9	9��e�b�T�̨qI��c��X�l����cI;S�Q_[�S�w=�e����ʾ}�~���/ӟ������M�Ї�ڱ��|�^<��;�\����u{5%?�q��ڹ��o������w�m�v�Ygmٲ�ί��?��3K<����W����t'��x�������;w������?����v��|�+�������/xn~ϳ˯��صk׉#G;q4^<~�5ߴ��>��%;/�;$Iɋ�:on�GƝi��O|rӖ��7n|�/�۸��<��[�l��?}����fh�f/s8�Gx�ub]�%)��"$��,/��?M$,c���7�"T��N�YS:��Y���>9��(HIO��"�\�I;��G����ЀW�{;QXKaR�t<$A���h�OW�'N�lU9�ɾ��f��_��/�‰(��2���N�]�e�NjU]9?K���q���.��GN��<K�zڷR�I���+`��U���������6�=H�6���`:�V�Ǟ60�B�O����޲����p7D��\k:��PX7�bѕj��,a�)����c��zG|i�v׊)����-G���P\��p�/ml�S��!�9
�ZYl����J���:	vȠ�r&��
����7^z�%x��ݳw���7�|��>���px��g=��㱎��>|DZ^�w��I찎=r�g������m\x���O����?���]��t���پ���/������^�~=���޽��o߾w�^l���n����ǎ=��cX��v�_��V�W��������k:iz�=�ڱc�`yeyi��B����������g���āW_{m�xdyqqh:�^v�p����gl�P��7�y��G��ߺ���}�m=��`-�\:����"O{����3��,Il�OY�ľ�S�4}�2!U`V�٘�	s�.� �T�,{
U�f�W��#rG�K�ñN�I$T���s�ɼF��`8&��@�{?�n/,�Sz��q�On��KWA9'� ����(G�G�#��P�:�E�9�Q	��p��`=gmi0J�+��礤_����q��$D��4�>�uB"u���ΐ��GC0:������։��Uc�6C!�Іڞí#���A�O���D%:������m+�
������NMH&
�Sd!�0�:�T�xa���,�c\T� ��3�E���hc������������T^�a)}�����꧴o�D�*�\�)�a9���fX���kamg�7UM?!]wY�H�X7B�a�������$	��q��k�F,���I���̪�p����r�_��_��],�Y����v�e��lI�iD�*�[x2�.Or+�$�)4![�,�̛���<�H���낐$�ubqpS���f�\w^���zitl�8�4�����Sl�q�$��+�;-K,
:Ni��6�z]��[�I���#�C+�|ye�6��>#��8
y^����+"r���D�d[Q��2Z#�L'�(X8�}7��
$r�̟�ve�3N�K�1|�~��u�+�xU�`<X!��R2P��@ca��.��J�����>2�]�X-� �����كTX.-��IP�0�K�D�\iv�u�!�S��6��:�J�Nx3��`Z�`�L3T5g�r<��x�[�>�vQ�D�S���$$�T�5�T-��5��ڤ���3�7܌Xљ"�d,E�H�1��w&�G�}H$�������E����Щ�� ����54����d�l+b�ҞV��
(��Ș�F
5�Z���ء[,�0i�ҶU��@^��XkAKp/N����}���&Rt�@��@�&ȅ2��,Ma��c�-N	��-���g�mX�.��
�-&t�ӻSn31�e�T��5ɌAw�)��a�#�d�~���2�C
_S��]E�,���v���*���а<
�YB�易�#xJ1oH�n��>�!�A�d�RT��a9^�2vy���֑{��rH�S9wc��FJe,6qI>���$�N��C
�+;��%XZIj��J�/��Q�%+��q�r5�2ĺ�Ȅ�F�C���HZ�z����3f�Q4V'�9�E�ж��W�b>�6	?���2��a�B���v��OU}L�q&ϴ��mk0d��s�О�!MWɈ���~0dz�|�\8��sW�/�a�9��^kT\��.KBP�*�b��;.Z�C��Qd,�z]�֕x�ҧ�Bv1X��A�ZR�V8M�<���'jjs�S|
4@I����JHm�e{���P5�7�6���i�����7�?oN����z�F�縉���byX,.�X�?:{��i��up�a��U���UӔͽn��FحЊ+�7����br�M>�J�<Į�ئr���2VŦ�4��΅bo��aW��
S,%:�*D�@���Pz痀=�1�������oWE��/���?�3Oh��ʱ�kk+Ü�I��}"+�Z��#òWV4<hΨ3�ε�|�V��b��"��:�@#2���L�=�ގ4X
����m�5Sr�@�׏��<e��l�UI�u=��e}���s2ژ=L�3yZhz$�!y��#���vC�\�3h��2�NEh2�!��\ъ��p�"�d<�ɏ4Sv`
Ta1�f�
����������i�?�/߆���bs�{������jQÐ�x,�R2��۳eq�i�_��.�ឥ���5�FBh��m��nq�5mN:�YhW� x�V��ׂ��5�۟�ly�߰��9Yڻ��g���*s�D�����Q^������H0��:01,V�fL��G�w9�+��e�!� �o���9���
za��qW�s夊΄�{�%F�"��7'�	�Z)�yEL�Q!b_I��J���PIZD��N�LG��.��-/��s���cG�9^tc������w�=��l6�%�x#�?��jL�K���M.oX����$jlWU-�
K��}���
�Y�L��M�A�VX��yFI���"L*�vƩ
ϟv�����T��Y3�~ٱ�;�ݜV��"7�w�iq��2Tr)�ۏ,@�r*X�!�س�����2.@{�e�rxU��"E�1@���*偸��O���=����1������qT�8-L�}'y��&kzq��f��ҋ�.��Y-�]��۲$r���¥�{��^B�Nc=X�?��sF���[^ۯ�GG�7-g�0�T�I�E�S�Bzq��Kq�($�[<8�d�ݥ̥��M.AV�X����dZ'~�	��1Ѻ4%��D�!JG+٤bE<�͒�����Sg]fd������ƻ���m��|�]~٭�n~�����!L5:Ε݆u�
��2ǰ��}��m�jƋ�DQc��,�^)_�X�,>�����匘��d���7
Uи�AM,m[��^If�`C��'�G�'��/�4�V�Yt�<�3�C��d�	�_@p�~*�[���յcX��;�6
��=�}��U@y��(��ok��*p��'��p�<���rި�!�}�6-�I���Wc���0֪Сm}���Y}���O�6ζ�gRk8d�V�?N
'��H}���^�ٶuS�ȧ�3���v`\K �Ѧ^��:�
ø|M��VU����*К��ډ���s�S����ֶ܂�:c��$5����0I�l}Qڅq�^z�4Kq�r�S��y1��G��G ZL.�,��7�U���c�is��c��|���&_!�^y��#;1U�Gɻ<hNH�623<��d)�tcZ�
�XWJD�.��%39����c�]�7�;� ��*�����D6��ö�^s��a�q���	l���[Mah��C�9�M�9��v����6�t����_/ı�uX�����Yi���Dypf��U����'�c����%��w܏*�~�߷L��%&�.)��j��"wg����jV�5���{U=��۪z� �w�m��͵Q�3�����xpXH.����v�t\��}��#���\\*�#
&&4��(#)I��,
�U�~�8��V�O^���`4��8&�+�O��Ͻ�����N4�5�olj�h��,v;��	'�3�e�/�͓��0�
��ԍ��F����G� og��n���?���G�dQNP5�cHy�S���f�:��%�±a������H�<.?2��p^š��hUS�\�kf�`Ă�$����ư�C:��!8�/�T65i/t�Vuk;�^�:�n&�x��m`^0��*F�:�j�S���-���TM�7�r�Qe��ID"!���1��9���?�&��p�6u=��#�;��c�D��v��3,%Z��?����s�hh�p�7�[7Y�|���F����N�%��j����&M�l-?u�W�����7~����EulT�Ph�]��/�	�(��k��$(	~"rָ����''UEbI�B �Cи��ܤ��FO�i��yV��Ձ#�~��Q^e�BFk�V��ư\Y8p��yvӈ+��)��\��60m��_�Z1��]_�6��6�m�*���s�<�T�#�+��Ŝo����k�r�s
�g��Q0M\4i�j�>���6�lGٔ�w�J+缉���sͱ��X�6�M.�1VMd	4VX�"f�5�MhU�L��o�ԡ�0���������A]Ư���=��[�����>y��굢�6ϱMo���2qF����߬��q���cV�n������TO�Պ�;PF�+���X9�&�f�,h�I�BCj%,���PJ(AuOR���d(����R��6V�,���g���T<>���� ���ر쉓�yI>R�R|qQQ�bo*��I�Q���C�U:&�t=׉�/jA&UU�Z�T�2��eUR�	�5�e�=��X�o���
"������K�υ�V2Je�L`����pƆ|F��f��z�;����
xԍ����!F
�)[[�#�p.�a���r�=�
�-h>�빜�����6�dġ��b�z'h=���&�74��u���Z�;n�ь�P��T2�;��t���ӳ��OaL�*�jVm
;�ƀ���M�;��v� ����&T�K��Ew
�S[=�]��;����g��Mp�x-,}�T�v֨��pU�&����e��J?>c��	 �l|<��K�m�Z	��ْ<��`9#��^g%��8�Maì�qVW�4)#"(�����PJ�*�1� ���L'	k��I�'��}�Ș)k��A��5��Ưdt�_X�~�žN��[����G� ���ԩ|H	�St�.(�x�nh/f��JS�y�v���Ci�+�O�ِq��:���#�ـCW���ݭ�1���?%�J1�m|Қ~?���z+����i����8�a�qK-XWQ����O�#�fMM�a�
0���U��O�`A�"q��hJt�.l���f땳�{�)i�*d�i�y�wP�i|X7��5+]�+Y9�R7w�ԍ�9j
�J�ttm���9���n����-<��Ë�{���4f�c	�h�QN�e4�H4Q�������#,F:�&]�"�NE2=�Y����MlW2�aZh!��&���9�uR6�s͊�a��,�щ���ډ�,�%��L���4�
�yT�rxURkTЪ ��3i�F�i��[���,#���5#wp�W�5{^��ej�Eo�	��9#�T��c:Ԥ�&f���|��9�ֳ�����9J=k�!�kw�ӹOP�(.�N��)=%h?��:KD3Q�>~f�j�#��4�[0龥��f��E>�����>h�%�v�<
��}��ԣL�8�|��B�r)��N��m�[���eR�&@�U3����3gz'�b��P�vgĔ}	��0X�N;���m��-�ܘ����4�7s�~��Sn��8���W�g�Hh���>��4�fK)K�'���L���)�X����L�L1�|f��b�IG�Q$�,�3c�҂�<ڞ���	$��}��ho�u�yΗG�a<��C%�U�0IIm�94�XU~%��W���F�s"|=�-�!`s<�?��Tv�3��'3�N��C��&[h�Kl]����,@�뜼"�5�C�x+���:P�4��p%��N �I�X��,QĒ�cN��7	b/C��=T���@sZQ���IC�"��儹�t�L�4��hY=N�i��6HXR���,
i'!���U���B�3d[䒘Y��T,�}�*!w�ȇð����\g4]�e�#�E\㨢���J3�[ �!y�q'��Y�����+Y$�Q�A�}:��#t㘧�*$π������hm,%$+��Y�	�ͺ���$����|�����Lu^r��0��|w�7BvZ0h�Ԁ��.M����kk��z:�b�_�eh�6��6O�<N��>:�/%X\��:Q��꫑f?9;�(�Ҍ�d>J�ʲ,�(�@�b��dW6�3/�l�2$ce�0�'�΅l��Ӿ�曾��xы^t��-�\:x� MP�ۇ �[m��l�U.���)o;#�xS�*qv,P�e������
���9Ip���?bN�4�cG�O9D�v��;��/@n�ҧi��Jtl�d���D�X�}c�V1��l��F1�"૜<0�rq�s>x]?9�F�&��95�{�p�r��<�e|�BH��Q!��u����{���RA���o�U�
A�rE�z<f�d�
vֶ-�z��6��?�C?�Q���)>����Ϊ&�����4�	��Ӳ�|�~��Zs��g��+�Y�޺nݺ={�����v��e�w���<�����7��?�W]y%~��˿����sO����6�����]�[����}�s<���e˖n�����oy�[��Ķ%��S~}n�ָ���y�.��������O�SVd�.璦-`4�u�Y�o����x����{���}��{�We��mVI��&����B鄼�N�U�j+׉Yr�`�1{��)39�Uw�r�,h7�D2i&iᐈ�Ʈ��J�$�#�x2�8��`�u�QX��A�L_�'�9V��E��́����5�&�7�
/kP�����+=B�d��0(�=���@q��[�+�x�-�X��[m�N~p�	mdl;��!eA3U���Q�]�G�=zo���s�_�̚'�+�2��x�4
!eN���SU��px�7��v���L�������7��
�#�C:>)�?���o����y?���������}{����h�.��|���6��?��O|�++�3�<��/�[���W��5l�C�1������_�E|����T=�|�;�����o�6ߟW�ڮ�Q;�v��g|�嗅������?�c��Q6�n��1;Z˜�Š��gjNLeG��:yW����_�<�J@C����.��M#b�y�U�h�G
Ҥi�^��ʌ��/��b��`�"ѝ���&ܒP~�"���5�� :�ʐ��:L0\
K�$L�8ac�sg�M���'7s�p�u�ok���xI�edv-��jA�҂	ҧ��Y���Q�fzo>��$��{[���5mg췾�-fs
Z�m������O�:�3n��wa��R��A���k7lX�wJL8��F�����?��΋����[�y�_��������;�����n�y�{�g?w��y�m��>��~�_Ěu����\Jg��p�җ~�����^^^����3n}��?�}�w:���k�ũ(��q�_��.�Wtrq�ȑ#��8�]u���7���|��I�狉ކ�$˾>�����#p	���.b���}!P�/f���S����1¿ N�}�*-V2�����UB�)��@��m�b48�uI��DqJ����f<ߔ
E�ۇHc�%��Z�T�0.�/k?�ֿ��ۆa�4�z��x���]��LF�����o�V?��{i�X�� _�_�,�Q]���*�	l�������?�|4��7���{����u�]w}򓟼��+��^y�U�����G�
u��1I�����~�����I���򗿼iӦ�����>��_m�(��c���k_���}��/��W�Wn���;v|�S���W<���^�����/+6?p���SO~��}����=�=<x��xV�^���ܾ����ޔ#����a�{���W�_��m��v��A�[����l����ߟR����{T��!.�8���'�="��k�㔼1�	VQ���K,k��a�}���$w��<�r�!I�h�8-B�o6�H����p�G��m"ž�Ź�M����@�b=4�5u/����pkT����`�k(��L��B��kԀU>�G��4��D��\���˓O���1��ڙ5u�բ�m����N}��8察�g�X�Wv������z�7���?'��*�_wҨ��z���x��l0N�u�r�%��C��/�o����*��
?Sla��q��];���-�v�X�y��G�b���ܵs�v��Y?<�,,7��sO��V~�7~��>x�9��#~��w�{���l�e�y����y�G@&��g>��w�����/߼�ly|��Ζ���x&M�g>��8��8qb�
\��p���i7�� ��"hKS�N�$�0�j���(�۫��F�WE���$
��؈��hN�`sƊRQ˼��� ��U���$R���Q��|\R�2���	5�\�
���|�������23��A����mj$(��X/h+y�^�U5�A���y�)�Ɗ�C���z�V�f}�v��벛��S�T-��C�9��Fl}e��8P/����F��*����h�h
�ym�7��P�4��)ک��5��㻯Z����3�#�E"݇��M�]�5����d��͛3J$ʌZd������z����׭�{��1G]�/u��uJyq$��s���u�]٦�ڵk߾}y�_s�5�_�&����"�l���!���?v���o�q�}�?q�I��5��Y�u�	����sÁ�Ԇ
�?.���@I�s|�a�J7��ڔ2s*Z�_��7���v:w�y��^��u�"�C���Ji�.'�pE.�A��E0:1ӉQ���PD��B��)WP�s�
��%�k�9<bnE�T�l_,O�ゅ��+�Ձ�f��4v��e���>��C�(d�j�>'��ca�9f�ڵ�򃨐���d�bY�q�
���:Uc�\������*��
�ʜ�Z���l'X0U��zT[����;!�ݯ��7QL�U���Ls�=��y*�>�&�[���/��(2�3Y�	�u���܈?�`m�+��k��)�[�G
�\���qDxj�޻'X��ѝ˻\m�@}b��ЉGq��f
;�kHS��\v�e8�'q⏸�
I�{��-[�l޴i<^}�կ}�k�������k<��⋱?~B�~�Mtlqq��`�S���c���ߑD�r<��Q�_X;0vaC�1�|Ϟ�$cȳl�޽��\�w?���5�b<.���V��è*�<a�S\`VI�u06W0��"�C	�.8���!��\�ȆwG̬�������x��h���k�D\�iN���Xi�`h�Ȫ,��\ �
���u��^�;Vh��*��4u&��*��2�!x��k��Ȱ��$!�7l3�',j�Z�n��SU5/��8�K�o���K���.,43=�VO���*���[׀���Ɇ�0�;"[똼����	�-��-;c�aCF�	&�+�*20�}��|��1���=���J��o��n�7�p��]X��8���~$�S���
��={v��wc�C�Yv�W8p�СCZk�&�h���8��.�J��?�?�����?r����/���o�%���_���'�x����k�2�{�xo:�`�s�
׿�E/��o�v��4`�����>����؉�Ȝ���#��C>����M�6�ٳ�[��[8y����?�Ht�Z�j�*�+V�7��x�wJ3αT��nU.���sx���Z,�+�Yf} ��*G�r�*��O�D�H�%f6h	�3���_�q*��Rq�2Ӷ��
���ϐ��hph����&K���N�{�=��b!3RJVSVV����q҄W�X�m�e��[U�w0h�����F�/��Xd`i�e�Nclͅo;½H��G�$Q�'���n��0�B�{|2�b�Ʈ�:?h	za����Q�����ฯ�%�&uVu���Z�.�/��K.��밹�S��s�����I����?z��wR�M@���/}�%/~16M7nܹs'�HX��y��?��o�&K���)Ê�S����`az�?��{��#Gk�����=�ݿ{�����><9����߶m�؂a�:�������&��uo8x�0�6P)9�4��4z_ѥ�\s�5���9�|zsssQL���ɟ�����Ɇ����J��ۯ�\ͨD�C�P�b���:4�9�?"1
��uF<HF�ߩY	rp֍�J�����Xc��kp���u?^�Z����Q��魜- .3"Nݧ�����ְ�Dh�t����N�9��0to|��l@�7�o����pXo���٭
=tC��#
V(Лh�`�/��&�}�I;���]��q!�N*���v���]S�'`�?�A�&W_u���4I����?����;��bd�n퍩�X�>�яb-8���e�F�O|��y�k��>����(��_z�o{�[�oߎ���-[�������_����7���b��=8p�c��;/߱cޭ��^������t+��;�
������݅�h�U���>y���?�3?�3�|ǟw{=�b�_2��L3Y�b��v6�d�N����S+a�2<Q�/�4K|h���V
���'Je%��8v����׊(��"W�u�9`��v�p"i
>�DM�as3"��s�vIfuH��6	ꔁ��	ጪ�s�{�*`���_�
��VQk�l�v���졦KB=ۖ���Iu���=�]ͶVy��x;Ӧ�mMa���U�	k�M�����-Vq�u�=��[�<�A�?|��=8�(�����F�Qn�Y�>�ꫮ�w��G>���`8]���Gxh��u�}��x�y��J��{�}��~����X�`���h�Կ��g^u�U����kߐ��;k(��Ƒ&AU\{�57�r�u�����|t���=�H&��#3x�.95��R4��.���HUR�����"e'�Y�+C�.�,��4�%�ɡ��"�H`2�jW� L�T��Y����/�C�n�4��$	�@�$��<V�MjB�pZd�gB�cSTI!�<hלp��Ki/����6�Rn�.��e�uh�?dTL'��n"�$x�/]�&]�6f�5<��[M������;2�B����~Jt�ib����ܞv5���f�3k��1�\�.e%ag$�x���O<,:n%
`E:ZK!`�h4\������rs��'�xO�@Mag�Ŵ��G�A�D��v����-�q^..�)��q��h���΄b��v�;h�`�鎄�%�D	m�^Zn�˜�*��ׁ+��,%�;�v+Rʉ���p�(%��-F�*��s���w*zh��+�՘
�8)q�#�"X���N�qv��*��A�n�f�*ɬ�~�VӨl�ь."Ŷ
%{�
���H�v�"ތ���\�mFf�v	��K��S��Ùt´�a}�I�=�"vUsg�`!DMǻB�!v�?�Y<n�^k�޼SXS�f�
��۬�r�RkZ���pz|�>�m	퀼
 ���a��8+6��X_u��[�FH�r"hh�����>�G�vΓQN��A�B�/f)���Q:٤�b,�/��)uY��F�:����;�ǽTb�%��y�!��)�)vA%Q��$��Y�5�<����4��{���ct�Y.)�ƴ�Y���&m>��Ӗ��p��?��l�U%4�M������T� Dq-l6�Z��7 |.�kg$R��*�(��m�0�|0u�PA�l|�:kG���}���w�Xeդ<g晇�i|�Es���#�D�oK~b�8s��9OÔ B�$���!k���r�i=C<��OE����IL8д��Di�z�B��R������PI3�[��EP'��ʰ�"��	��yTn�E�N�T���������/|�T����G��$Xw`�Y���Ӎ���X[��qc�k�@B�UMV��H����k�V�	�3���P#j�/=�EdƾǛO�#��R3��j��?95ym)N��sx���Aij�����0pu
!L!�jr�_T�eƟ��M��.��I����J����٫��`Ɔ�59悭@��<mI�*߄����ek�%1���rc/^��ح=2����v*���P�X���ʄ]��zu�'c�b�U���w���/��-��p��m��$"h.�4��4��k�-6
߀�%�ZSt��L]ᵷ|d�]��6�T8��S��sϗ�:}���l�"�V.լ5!4���8����o�%ժ_�p������\7ý$�\�q�!�&(k`g���sv�qt���$���K=Xh�1�0¡�k�����/g���#�2@h����Yj�ԮZ23��w�S98��51!>��ֺ��&^К(N+���4d�ɹ��՟ �|Cc�Rʴ/����Th��F"ڝ�&�1�J%�
b�%,��ya3���LJ\��#F�*'��_��-F�a-�,9��XCpX���l,o
�T;	�D݊����C��"��ʩ�ܾݝ��ai�~ꠛ����pzk�3���c[���W��V�N3�'��mAT��#�,����!S��8��f��!5Tv�QKn��V��FA@e��GT���M�3��z�Ox��1��MjM�N����j%�Ǽ��QD?l��;�&�T�f�1�xxB�
Ǿ�i�YY���@0'�����#��-^R���q�T��>�LJN���C~��=��oĻNe���E�c�AM:p!ηʴp���U����p�7e0d�:�U�lA}�Z���bK��1�?�V�E��� ([0{|�|�Sӕ��
̒��=�D}�)FRm�����
4��Z����oV�u���k�V�
t�
Ԛ��~.��WE�B"�]5w�je�)�6��/���<��� �B��:"���}����yl�E�]{�A��y�{]�-�z3k�1���6����^^p�n � �fsgI������$���c#lC�+͜^&v	��d� ?v[_E�&*�1�D	�B41N�v��k�HN|v
&��ӰVkC?���U]Xa���)�ԩnm�Rp�6�Z[о��ZG���k+�	H+��fG���=�O���ղp���T��k֌�M{<�u�* 4aҳ�d�����Rgn��$8�)��s��k
<{˜�&�����gm�1�
-M��(Ɠ��e� �>B�*�綨\���-D�QUJ�0�PJS$y��c��놄D�ˎ�q\��d\wd��i*��a��-WS_�44(e�����G�@�.-5��o�o��Mc�w��v��<��^"(X�L7�͟�Q:1��Y+��vA	q�I8i
��� Q�
��,�̷�jB�9Qû=݌Ư��Z8_��ŮR�����5����?��X�g���4��!9o�m���]u�97_���c�l�W�:`�L�u�뉖.i!��J�e��� �l�/�X2b��w��I��"m4�~�Z)�$���J��r�&��k	y��{-A�
�hOzI�ĥ{iy����6�A.��}�p�p�(8|�<�Ī8��PA�X�v*ss�V=4l�	�^~b��4�D�g��0�C�0��B�*�Th*r��T�DKjp�m�yb�jCT�]�^�No2�B�L=W��[� ��Q�4
,L�F��O�Z�J4��8kV��d%/�o�-�����'��[!M�Ռ+�,�5i9
'�
c��L������0��=ɼ��$� ��9=��,���X�%�˳4
4}���ړ��rqs��<΃ȹu9���[G������A����@Լ��֚0q�Z�6�z��Y{��S{j�5���n�h���(�"�n�2`g�X`�����+}�����4l�M|���+�U�>3��<�-̪����:6�f2��Pg�ߧi�UTa���3}����N�`��K�Dfd�u'X�OaC7޿��J�=�
�^0�I�F�=w�m�EC!���Z	O*��
~"VΔg� o�M�Dcȳ��J���qy\ҝE�7c=a�7�u~�� ��[�P���)aàđ�/_�6A�m<ʣ�PK��G��Y��auQM�l�J���}��.'O�`�4h����2�]���ď��^����*g>@�������fDm�fP��ʶ[9���W_�����@/�"�Ur���zӂ�/�����p�5\*&R3g�����~|rl�p�x���> �j��$�� �us��5�T>�Ia�*
�q����Z8�$��b�(�S�����*����w��t
�U�kj?Zk�
 �نD)p���ut�����vR���I+=99���ϤhM"�`[��'�MӞ��=4$IEND�B`�themes/bubble/v1.0.0/style.min.css000064400000025055151213255630012554 0ustar00.ms-bubble{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-bubble.ms-loaded{opacity:1}.metaslider.ms-theme-bubble *,.metaslider.ms-theme-bubble *::before,.metaslider.ms-theme-bubble *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-bubble .flexslider{margin-bottom:0}.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-bubble ul.rslides_tabs,.metaslider.ms-theme-bubble div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;bottom:30px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;line-height:1.2;margin:0;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;z-index:8}.metaslider.ms-theme-bubble div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){width:100%}.ms-is-small.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.ms-is-small.metaslider.ms-theme-bubble ul.rslides_tabs,.ms-is-small.metaslider.ms-theme-bubble div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){bottom:20px;left:0;right:0;width:100%}.metaslider.ms-theme-bubble .coin-slider .cs-buttons{background:transparent;bottom:60px;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:center;justify-content:center;left:auto !important;line-height:15px;margin:0;margin-left:0 !important;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;width:100%;z-index:8}.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-bubble ul.rslides_tabs li a,.metaslider.ms-theme-bubble div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-bubble .coin-slider .cs-buttons a{align-items:center;background:rgba(255,255,255,.95);border:4px solid rgba(255,255,255,.95);border-radius:31px;-webkit-box-align:center;-webkit-box-pack:center;-webkit-box-shadow:none !important;box-shadow:none !important;color:rgba(74,74,74,.80);cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-pack:center;font-size:14px;height:31px;justify-content:center;margin:0 5px;padding:0;text-decoration:none;text-indent:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:31px}.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-bubble ul.rslides_tabs li:last-child a,.metaslider.ms-theme-bubble div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-bubble .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-bubble ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-bubble ul.rslides_tabs li a:hover,.metaslider.ms-theme-bubble div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-bubble .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-bubble .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-bubble .coin-slider .cs-buttons a:hover{background:transparent;color:rgba(255,255,255,.95)}.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-bubble .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-bubble ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-bubble ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-bubble div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-bubble .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-bubble .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-bubble .coin-slider .cs-buttons a:hover::after{opacity:1}.metaslider.ms-theme-bubble .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-bubble a.rslides_nav,.metaslider.ms-theme-bubble div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-bubble .coin-slider .coin-slider div a{background:0;background:rgba(255,255,255,0.9);border-radius:50%;-webkit-box-shadow:none;box-shadow:none;color:black;height:70px;margin-top:0;opacity:1;overflow:hidden;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:70px}.ms-is-small.metaslider.ms-theme-bubble .flexslider ul.flex-direction-nav li a,.ms-is-small.metaslider.ms-theme-bubble a.rslides_nav,.ms-is-small.metaslider.ms-theme-bubble div.nivoSlider div.nivo-directionNav a,.ms-is-small.metaslider.ms-theme-bubble .coin-slider .coin-slider div a{height:40px;width:40px}.metaslider.ms-theme-bubble .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-bubble a.rslides_nav::before,.metaslider.ms-theme-bubble div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-bubble .coin-slider .coin-slider div a::before{background-size:100%;content:'' !important;display:block;height:23px;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:23px}.metaslider.ms-theme-bubble .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-bubble .rslides_nav.prev,.metaslider.ms-theme-bubble div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-bubble .coin-slider .coin-slider div a.cs-prev{left:2% !important}.metaslider.ms-theme-bubble .flexslider ul.flex-direction-nav li a.flex-prev:before,.metaslider.ms-theme-bubble .rslides_nav.prev:before,.metaslider.ms-theme-bubble div.nivoSlider div.nivo-directionNav a.nivo-prevNav:before,.metaslider.ms-theme-bubble .coin-slider .coin-slider div a.cs-prev:before{background:url("images/arrow-left.png") no-repeat center center}.metaslider.ms-theme-bubble .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-bubble .rslides_nav.next,.metaslider.ms-theme-bubble div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-bubble .coin-slider .coin-slider div a.cs-next{right:2% !important}.metaslider.ms-theme-bubble .flexslider ul.flex-direction-nav li a.flex-next:before,.metaslider.ms-theme-bubble .rslides_nav.next:before,.metaslider.ms-theme-bubble div.nivoSlider div.nivo-directionNav a.nivo-nextNav:before,.metaslider.ms-theme-bubble .coin-slider .coin-slider div a.cs-next:before{background:url("images/arrow-right.png") no-repeat center center}.metaslider.ms-theme-bubble .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-bubble .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-bubble:hover a.rslides_nav,.metaslider.ms-theme-bubble div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-bubble .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-bubble .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-bubble .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-bubble:hover a.rslides_nav:hover,.metaslider.ms-theme-bubble div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-bubble .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-bubble .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-bubble .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-bubble .rslides .caption-wrap,.metaslider.ms-theme-bubble div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0.8)));background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.8));bottom:0;color:inherit;color:#fff;height:145px;left:0;margin:0;padding:0;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-bubble div.nivoSlider .nivo-caption{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-bubble .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-bubble .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-bubble .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-bubble .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-bubble .rslides .caption-wrap .caption,.metaslider.ms-theme-bubble .nivoSlider .nivo-caption{bottom:100px;color:#fff;font-size:.9rem;left:50%;padding:0;position:absolute;text-align:center;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ms-is-small.metaslider.ms-theme-bubble .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-bubble .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-bubble .nivoSlider .nivo-caption{bottom:60px;width:90%}.metaslider.ms-theme-bubble .nivoSlider .nivo-caption{bottom:0;font-size:1rem;padding-top:25px}.ms-is-small.metaslider.ms-theme-bubble .nivoSlider .nivo-caption{bottom:0;padding-top:45px}.metaslider.ms-theme-bubble .filmstrip{border-radius:0;margin-top:10px;position:absolute;width:100%;z-index:4}.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-next{height:60px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:60px}.ms-is-small.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-prev,.ms-is-small.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-next{height:40px;width:40px}.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.ms-is-small.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.ms-is-small.metaslider.ms-theme-bubble .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.metaslider.ms-theme-bubble.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-bubble.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-bubble .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-bubble .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}themes/bubble/v1.0.0/theme.php000064400000002035151213255630011724 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Bubble extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'bubble';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_bubble_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_bubble_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['bubble'])) {
new MetaSlider_Theme_Bubble();
}
themes/bubble/v1.0.0/script.js000064400000000550151213255630011753 0ustar00(function($) {

   $(window).on('load resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider').each(function(index) {
			var width = $(this).outerWidth();
			// if the slider width < 600px
			if (width < 600) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}
		});
	});
   
})(jQuery)
themes/bubble/v1.0.0/style.postcss000064400000013004151213255630012667 0ustar00/**
 * Containers
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides.
 * Don't be afraid to use !important as needed.
 */

$theme_name: bubble;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-bubble {
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
}

$(theme_prefix) {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
	}

	.rslides img,
	.nivoSlider {
	}

	/**
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 30px;
		background: transparent;
		justify-content: center;
		line-height: 1.2;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;

		.ms-is-small& {
			width: 100%;
			left: 0;
			right: 0;
			bottom: 20px;
		}
	}

	@mixin dotsContainer nivo {
		width: 100%;
	}

	@mixin dotsContainer coin {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: absolute;
		bottom: 60px;
		background: transparent;
		justify-content: center;
		line-height: 15px;
		margin: 0;
		padding: 0 !important;
		z-index: 8;
		transition: top .2s;
		left: auto!important;
		width: 100%;
		margin-left: 0!important;
	}

	@mixin dotsLink {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 31px;
		width: 31px;
		border-radius: 31px;
		background: rgba(255,255,255,.95);
		color: rgba(74,74,74,.80);
		border: 4px solid rgba(255, 255, 255, .95);
		box-shadow: none !important;
		cursor: pointer;
		margin: 0 5px;
		text-decoration: none;
		text-indent: 0;
		transition: all .2s ease-in-out;
		padding: 0;
		font-size: 14px;
	}

	@mixin dotsLinkLastItem {
		margin-right: 0;
	}

	@mixin dotsLinkActive {
		background: transparent;
		color: rgba(255, 255, 255, .95);
		&::after {
			opacity: 1;
		}
	}

	/**
	* Arrows
	*
	*/
   	@mixin arrowsContainer flex, nivo {
	}

	@mixin arrowsLink {
		background: none;
		box-shadow: none;
		width: 70px;
		height: 70px;
		color: black;
		opacity: 1;
		overflow: hidden;
		transition: all .2s ease-in-out;
		margin-top: 0;
		top: 50%;
		transform: translateY(-50%);
		background: rgba(255,255,255,0.9);
		border-radius: 50%;

		.ms-is-small& {
			width: 40px;
			height: 40px;
		}

		&::before {
			content: '' !important;
			width: 23px;
			height: 23px;
			position: absolute;
			display: block;
			background-size: 100%;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
		}
	}

   @mixin arrowsLink__prev {
      left: 2% !important;

      &:before {
         background: url("images/arrow-left.png") no-repeat center center;
      }
	}

   @mixin arrowsLink__next {
      right: 2% !important;

      &:before {
         background: url("images/arrow-right.png") no-repeat center center;
      }
	}

   @mixin sliderHover__arrowsLinks {
		opacity: 1 !important;

		&:hover {
			color: black;
			opacity: 1 !important;
		}
	}

   @mixin arrowsLink rslides {


      .ms-is-small& {

      }

		&.prev {

         .ms-is-small& {

         }
		}

      &.next {


         .ms-is-small& {

         }
		}

	}

   .coin-slider .coin-slider div {
		display: block !important;
	}

   .coin-slider .coin-slider .cs-prev,
   .coin-slider .coin-slider .cs-next {
   }

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
		width: 100%;
		height: 145px;
		bottom: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.8);
		color: inherit;
		margin: 0;
		padding: 0;
		transition: 0.5s all;
		background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.8));
		color: #ffffff;
	}

	@mixin caption rslides {

	}

	@mixin caption nivo {
		transform: translateY(0);
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
		transform: translateY(0);
	}

	.flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {
		font-size: 0.9rem;
		text-align: center;
		color: #ffffff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		padding: 0;
		bottom: 100px;

		.ms-is-small& {
			bottom: 60px;
         	width: 90%;
		}
	}

   	.nivoSlider .nivo-caption {
		bottom: 0;
			font-size: 1rem;
		padding-top: 25px;

		.ms-is-small& {
			bottom: 0;
			padding-top: 45px;
		}
	}

   /**
	* Filmstrip
	*/
	.filmstrip {
		position: absolute;
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 10px;

		ul.flex-direction-nav li a {

			&::after {
				width: 10px;
			}

			&.flex-prev,
			&.flex-next  {
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);

            .ms-is-small& {
               width: 40px;
               height: 40px;
            }
         }

			&.flex-prev {
				left: 10px;

            .ms-is-small& {
               left: 10px;
            }
			}

			&.flex-next {
				right: 10px;

            .ms-is-small& {
               right: 10px;
            }
			}
		}
	}

	&.has-filmstrip {

		@mixin arrowsContainer flex {
			width: 90px;
		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

	/**
	* Thumbnail
	*/

	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active {
		border: 0 none;
	}
}
themes/bubble/v1.0.0/images/arrow-right.png000064400000002762151213255630014340 0ustar00�PNG


IHDR&/�gAMA���a	pHYs��YiTXtXML:com.adobe.xmp<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.4.0">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
         <tiff:Orientation>1</tiff:Orientation>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
L�'Y/IDATH
���OYƻ��a����YL2	��q�C��	�������m8��?�dA`xtA\��($8�c|�_������[)�n�����G����sέ�H$q0����vL��B
��vu����{{{����W�3�́�������8N�av��������cD�s�C7�������[�<�����]����300P5>>�g-t��f������r�$�>c5X{[[[vbb"[|��5#����?8x��$ö��uO����#��8������r��A�3��ӑ���10�.f�
^0��@�q��:ϳ����J� [�Y�$�YV��������d��沝����g����$�žb�fggo�V`^�y�};�Y]]�1hg�����DA��D���f����鿢��U6ȡ�s��a*�C��}�˶r��F�`�f��AR1�10��^�h�f��\.n���}�Ā;�%yoc��e�A}�Mӊz���p�LxM�0��c�B�f___�4A�?6d��h�Ť�1�A�
�4VS�jv��4����M�6��6Z`��\lS�.b|��{s�RϹ�ќs�4��1�T<YǪ1J"�I��4Պe�Wu�r�a�@��r���X,v��J�"p!�L�`�@g[�1	���|C{�b�9���Չq��>�b��������������#�)��1���>�K8������jn�uhkk놤�>��j`�pgggpaa�0��<39��l+����RX/q���gl�*jn��Q�V��1�J�</_D~`4���s��j��C���`��l9{�j�tQc����^�-�7�X`����7>�����rॢ�b}}���j܀eE���\i3�}���u6Ic��r<,G���4�����^�K7�Tj^@�
�b�3y�Kb̏Ѳy\	Ԯ;\B�h�a!���7�G�&x��բ�D���X��VwŲ��n�}U|Qr���w=�e�B�����~4��?T�h���u��/�R��5W�����Q��%s#
IEND�B`�themes/bubble/v1.0.0/images/arrow-left.png000064400000002762151213255630014155 0ustar00�PNG


IHDR&/�gAMA���a	pHYs��YiTXtXML:com.adobe.xmp<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.4.0">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
         <tiff:Orientation>1</tiff:Orientation>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
L�'Y/IDATH
��Ko�G���RHP���\,��H�q²��C��"��/T�]8
R��?���s�"m�l�H��l'1��>�0��3رF::�g��{��8���9���ً����SuS������Q,���Ʀ,P%r*D��0Vp�R�����}��ۛ������*���\dyy��5��b1�ߊ{ytt��id������~�6`Q���cE���F�eY�h��w�>��g�j���uZw�D�d�,�)R���pjmm-K_r7_-�Xɓ�R�6Q+����Z]]]Q�?Cױ�5��1RXR(�CLR(JI�jwV�[f~��ۜ���י�^$YXYYy��1��;^�\�Y`i���xAR��p|`�BueQĶ�`�)7���#y8����f�8)�1���f4���D���|���������!4^���b;U�N���ɟ����H�䝡_��:D���w��X<
���i�[5�yv����c&:)�1�w��X�H�yu5����e����< �b��wsF����w��d=�1��>��Iu�@�y��7��@�|�g8D�5�鈙k��󁁁��W �3��R�:������C%Zzomm�D�g*��f��+�|�?���";�=88�3::e^Yso�E��;�ɼe�fu7�)��X,�5o�����,;;;� �Nzzzr�s�"B�� �l���[�v�ǷI������A����<44����d$j���#��0c����w��W�2I�l��
�C�l��q�@�a*����n�|�bV����F9�	$p���NLtĎ�.x-�rI�9�f~~~ӝ�`�O�A��@Uԍ�De�|>_�L���ρ$̑PI��AQ�|<�s+
���^����/����b��5�k�<yI�����"g�i�p��pU下$QfʔD�@���_���S�t����d�b4����W
y��B��j)r��v���t��6�koo��T�bpV�m�|��\��ммOj�H333<�"U\ߺ��Z��{�DNIEND�B`�themes/bubble/changelog.php000064400000000115151213255630011724 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/precognition/screenshot.png000064400000100306151213255630013417 0ustar00�PNG


IHDR���LtEXtSoftwareAdobe ImageReadyq�e<�hIDATx��	�-�y��s�]�
��;����DR����%U$J��TTQ��9��8r�R9U��l��T"[Q�%�J�%���LI$E�H�pþ<���}�n�̟����9��;
^�{ϙ������8K`h���Md��_G���=�����:���ٞ�>�߱�	��
��W�A�w�=P���
���Ǖ͕m��9��^�{�_m]�yhM������Ps�?�~&����> [D̮�Fs�?g?H�׺�A�;ZO��~~�0?ɟ1��$,nq|_��E�s�ۇ�}���M����A&Y#b.��"~�4c^�0�vkhC�h'6b@�t��8.1~�$����S�g�8�p�R_�I��������ZKI���r)OH�QYh&!ic�H�X�Pż��Ff\�k�,W��)���!?��]�r8��j��9@�<tȠ%�auИm먟���E�yd_g2[�Gmvد��=�I��Uk�V#�[8��;6MB/��S���~��� ���~�9��5�d���A��J�NW�#W	t�2%BO�ϵ������6��>��;��10��9������9J�Z�óL��@U��f�rZ\��bq��qs��/�}�*�D�uYgk�@�girXsE5&�=��Ĭ�cpF���&�֞��&f�m#VSJa���:�N�2�cn>�������lZB���M�Pn����Lݙ�VXJ������&V��2̯m=�8�m���(f�}e?�8��1B�L�}��|�"4N���~N�d���=r���u;%Ԭ�d�f9'M��E>�V���
��eԏ�(�sX
m~ޮ��]!gB���E�����:v��**{E��E������ڈ��dRbp4�y�ɼ�1U��7%�
ڔ���Ⱥy��S1uJ`ڬ	/UK�M�v�}6�Lc�L���n�c�aBt�oa�N��f�hC�zG���"�f���>&\�W�{f�]�bx���:���Y0��g�]����iNI����qMB�^H��aI;X���
mhs`z��z��ơ�x]ծd��Ɍ��_��=�A�B�Ľ	
�a^�f�r/�"���>��IV�7���(��M��7�=�d^�I���RͶ*2�I;���^����2�T3�lC�C]��M�I������J��r�0�u�f]2ajן.�i���kK�va�$��ݞ��l��~���!��ў��U<gv��
H�5aUv�ʓEQ'��kɛ��k<$�]c��Ç6�����.4��n$��^n1���������w/#�RDŽ4Ma~N@�yp6����8�*�y�l��,�����E�as�������q�A7κ��I6"��ޯ�����/�CZ�q��X3_�ݡw�u=*�X�h�Rhb��&�V;���cr`����m�Xr�H���芰�H
9��a
\@C��o�úP�����3��
mh��DF{h��܌��1WZ�jhʐ��FÑ����1��V;�|���h�r���BE����f����������4{��,e���+��ǬQ��R���Zi�����8�>�1�=$��u^�]��KUxT63V۸l����T�Y]�
j��u.�3���~�S~�
�ǻ�Pн������Y�\����L���-hc;����O噒�+��\JX��Cy�5J\�@ �PA����� �6D�
AY-��徆�਌�:��2/�9\����.�b(����K�6���|�5�[HQ����D�z$!�O�C^��]�E�M���fݙ���d���;�Oö��6vV;�%�0�W�L���)��\�8]"*'�,]��$mi��ɤ�a�ADU��{��9�0�el`�$o&�=@Z�)]ݚ+՜p�(���*��s�,	��yG�.l}r�e�f��4P� U>�{t/��8ͽa��=�8�5�L~���B� Lh�����D��� Knr���R�h�c�oz��ͭ��+��p�NOlm�@���f��!���"��#Sk��@D�ۘ��Hӹ��OU��'�t5u��!�sGm�\!��)�� h!�U��͜
�������錐5�^;k���e�2���E91�ܥ�P���;���
�3)���j��m����
`Jl��+��zm�Ǥh{f��b=�ʑMFk�I��@�D�',�pN,"�\��U�cuõy��y�P%щܬ����Za)�&2��Ta�u��@;M�$�T���#�-4TP�!/�7n4q�s'�����}�=E�U��j��*I�QND��g��'���E��S�/�a,�jO$�#&!�m%�6��>�8a�{n�&u-r�[c�TVI pZ�芯�sc�]o;��z�+�PcH��^Ž��/�)� _ߴ�F�]��BU��k���t�5�2�6�RU��ϻmו��2�~$���6��ͱ@
�iA:�BH�ť��C�2��
m���f�!�̤8!����%�:[1�\�����!_ad�h�=
L&ueT�
���t��!?��kUggh�oZ
6�A���*��k��)\���O�>5:���4�\�U�kj��]`Ņ~�������)��Rh�±4�}���;}��}�`O�1?t�R��Ex�2�~����<��,�f,8]���J�y&[8��X��%/�7�`H�s"j
J`�A��=DqW�/��"��X!D�ȓJ��Y=T��'�6y0�
j�7o�ܨ|�6B��)����޺�-]hS��e,,r�0�.�U}�����;K�3B����s��S�Ryr�h�?H2�U�>�!�1O	��8i}�W�0�hk+?s'B�/��
�T�9a���І6���K�U�F$��Y;���d��4K�X�yj�W\ͤ��4�}1zM�v�Ѕ	�TM԰Olfw�=�]�[M��lI���bs�a u��3�yv�wٯ�Y�;��)Y�y�3����a��$t�|mF0��sl��В�����kr�:[-�|I�m�inj�u��Y;ބe�=�u$S�R�J
��1&"��.?�j�v�֙G�5'���-|E����=�=[��xYP
�Z6�����Yr��B�ZZ��,�W너B=�k�#'$�c*�7-5���^q=C?�U3�{	}/��OuLa��(��
��d�E�*lw�d�ʖ�q�5o�7d H���ahXk����,��M�2�!�5�y ��Φ(��!� nr�����(6P�����(a����%�9��U�J�z�a�9��K������}���>����:�3Ǫ�%��敖�ٱ�u$l�>���������m팬о�5��S�K0�s�<��<�����t�6n!�D�՛1���Bv@��]Q��3bSi}��0U53u�vfU�����/C�(���j�G[(`�w��w��Y��^�r�$��	$Tt�k8�#L'LK8��g08�'��TR�M���6��u�A�fD�:���Ю����Z9Ƞ����X����5DdzR5�u]2�f����LB�=�v�{�{
P���Qse���Xً�_l	Zk�A���K�*c��b>c��940m�p@`��E�Y�:�4yn�FN�����nTI{�q}��S	���"��"a�U:<14gr�1�^�����"؝sb�2O�B���T�q3m8h��'ve~+T5��F`�Nf�b��Z����J���Zdž��k��W����.��α��gT��$�6s҄8�֔4#'�Ȇ���d3�P�����*���m�f@!X��ky�8��;لX�0\���`^TL���.� ��-�x����9ʲ�%�MX�Q$�LCb
y}�3K$@�6��
--�2�B�i߂s���B�6��
�K�������&�`�Z�.�T'���YՙLLjP5�U%��5�Sꌑ5�wk�P��2���H\�+	=�aȭ�c^�Z�Ma��s0a؊���%}�[�b�窍+G-�–�j[�a�q��/���T�W�@5���[2��Ϣ~J�τ�P�ʕ��fB�}���C�lO#.	��\	�M����aљ=7O��(�}z��3F�$-�k�ɮ�)E�Kxn�y�V�2�;�ƙ2	CU���eٯu���LX!R�42����+c�U$�MZq\����	UF�A6�B���Af�Ξ?0���g۵t���+��B���Z����*8wR]ӯi['��t����K$t��CEE�����ɤr�����{z�����YJ!���JO���:�&**��^��H0�ïm夫�����̅+�l:Yɉm�Ҟ�YA��
mhC�kMuVB�\Mn��a�1�І6�&b8�X�	����;�ůmfd\�!FiµD�VR4��n�^6�&�M�s���ƹXY9�N���__BN]t���BZ�J$�S�B��)Y�L�7�:j�N>�Z�����dOJ�~o_�O���g�(��N
鍬�����
��N��6���f�sF�p�'5�c�B�iv}��1�5_;;�H.�'�dE40�����7�І6��>�.93f�gFbú�`��$3��H�'֒�D�D�EEs55�����������tDT.]��)��8T�=����X���R�VZ�S�f�!���J�r�ͧ�J�WM ��B�Ն�,��hZ׵60��{����y1Ⱥ�)��׈�F[��K��e���O1������&wc}:�H&���6���3eE"��p�H@���}Ҳ��=��Z�-_����D�tST�w�Ug}#��G'�ʵl>�:M'Tė��k�ߊ%� ͫ�}C��bc-�*Z�_"\��Pu�nE(i����rS�
�$`M�+�#��{E�R�<��E��LO^��^�A�g�s�!:�vf�2B�}lDh\{�ֺ�I�Թ��{�QҴ�av55���P]K榕v4�.�V)��%�9�������%����,kZǐ!�)`�%D�"�z	s�!�g?��Q�V�S�dJ��cN�&��1e�O�|R��+��\�$��}0z�o&��綒�6S�y�yg
�X�<��&NE5Lw�2��o|�g�9@�(=
�0�s��F��QB��� fL&���2�M��Ԃ0��&y娾T0W���;�`"i�ن���S"����"1����`���#%�q������X~����������_Vfh�,[P��a�E�siVC����,�4$òs�^0��H-�j���P=K� Mca�GI�ѕ���b�s�5s�49$� T��X���Th�E1����A��<�B}-��L�C���08�6`�e�`fm*���{�1Q�@�|^K�ڈm;`>����Ŝ�����E�T��ҿ��*�W��4�C�|NϢ����B�L;�t������%���b�Gu�6�[�w;�R;��������^�v��eh;��U��\C�#a
�����kh�����d2�@��6R:�%�.���S�A%W���GHB��u��"3���E6B��ê�.��U�i3Q���t%u�w**��)�ʥys�b�����Y7�'s�ֳ��j4�>/�΂�:��-Bk�ϸ�*�P@ݦ��Ao�$^�,t7gԌ>	?����8wN>-a�B9*�6��C�J(�
���j�[�S�f�H��F�p�V�ng>a2�UU~߮�;ϝ��w�}���m���[��ր��n���ڃA�%�Fyfc˘#�z�ti���DM�2�;�3��8PmC���4���K�1����Z��!p������a
	��h"�h2�B�c�ˡ�Ԟ��� +!L�gg8J~���6��	�ا���byV�~%�Qُ�#-�F�ge��L<��
maZ�����3�@���������~~�·֌���\MS>@e6�==�0$�veIZO3Y	,����kFiT�RH�q\�Ь��j��);���]�V"��Z�I[�`8<*i~Z�Q}��l.����.�)��&
��Q����Z4L��BJ{�B�w	a�UV�І60��͵�@���A8-thC��6��ȢR.�I[�d����)������!�+�d�T��h�Q�2�Y��9Æ�t�*��|�HD/V�F�|"�
)3�n<k��QeI�u��}W�60�A���\M��¼�?Gv�@�64�g?�KDv}�7d��y��^�6����pB�jb&����L��5",�B�@�P�H�.�J����R}���1�	U�E��[���k�`�(<
/K��šU~�e.b^��~j]���
�K��R�T/O�Lvl-Y�S����@Zu���6���L�m{‹v��M8s��6�$�B�W�+�P(GYP8a�'	o���\�Ԟ�"@XX��0Q���!Qt!�k�!���k*�̜0Sp��ka�W�k���ғM�*}h#a7p�X�}0�aZ�"ܘ��6/&����ƲVB��®�/����u~VD1A�Kh�\#��	��fX�)r]㉵�R}PR�\ώF�e�d�
��,���|U����h�>�~U�y�0��d_ i�UV���/Y��BA�q7%*T��]3��̴��BΣ���<����͋S�}
#h�G�r#�%�H&�{[��X1�Z!�Tw����IH.o���T��`#���t'��"&��q<�Ć֌��"�öW��p}1�.�=͈*u�ٙ�������[��^S�%�گ�o��i�n���7I
�P�E|\�^U���
*A�g�+$V�>J��MN�s�xIZ��Slm��*�ks]�+4�s�țYZ��h.���4)���)3��'�0�o�=�p]��$��@u�5d!sD��х6}��������m������U�=��~ɴ��x� �f�����xQ���ϵm�;tc&R[�(,&C+p����NGP���;d6�#�SlQ�0��h9d��x�}9�����q@�5�/��5�i����d�1Au{��U�C
tSa#&���e�M�}2�; �p��9*˘������0T?>����Ւg��.�I9�n%'dl;9w#
�&h!�h��cr�.�5��\�v�a�џW%��vf璡�~�:a����!����L���o:X�Yܢl[��s�:d^k>�T�\�b���-"$ѥ�%����i�y��Vqͭ#���3�
5qvU��ȧ؍�n�hH>�(-cV�%�+-����hB]Ʉ��~y�L�c�#"C�Y�M�갆����v��F#x�`:���n�V�Wa�3��t)է��Lg����&|�"-@����\W4�6NeYr�9Y\����}�h��k�*	��@�>�Ү&T�9MTl2y��߅��/��/����{`�h$��-C��D�;�J����t�����ۄb���p����\R�V�-,8��������j}��e��	����"
Ƥ��@!��›�Bid���L0�7����
tP�K\P�+�S�=�1{c����ߣ�]�_;W6�����`k{y��0�&aʮ��J�.5����V��;R�U��llu���t���Y���0'٬�Ū�c�13-ʐg/���ף�@�{�	*bhC������^DOb���gf>�����={�\�
��[o�
._^��h	����'�e'��
��y��$zU�.D�"7mS��p�Ǚ_�]1j=v�]���Ī?C�l9H����]֙yDlln�_|�����/�dk+a�a��
_�җ�W_N��������^�d.��p�
���"�����A�	���4��JS�	/����=��e��?�����3��U	j|�)rQg����(�BY��M���(rP�5	�M��'N���k�q.]m%��M���JN4&���y��Z����Ʉ%�Ӕ�^z�q��[6���<y
.%��B�;{����$B@�_a�f��r-��ja�m���_s�&�Vu:��lDĜ��lG�2
�}����(B���)f.T��q2��:�r)j��-�%I���)#�s1a���BH'h��3h'�V�uQs�$�8�p������$f�t:��d��a�t�к(��DX�j�nԮ��Ж�B���&;�ڄi81�q��`���Cþ_ �W���Þh���6�Ǚ�^?���C��H�O��8���47*U���T�vu���`�2��ƣW_��C�u���w7�#�V��|��q�wX;�U%LM@�X9A�V���A7�-���*�o��ڒ�*~�Y/$(��|�,f��d�QT�|-���H%�Wl`T�)�*� �OH���B�+%ϡdl�˔`1�(��R�	f���Z��2H2�d�ҔHcV��E�?F��nF��*b_fC�m���8�"�05��}�a$�-��{���r[�Ҽ�9�TQ7��d<By��e|I��c��%��!����~��Rylݴ͖P�I�H
ѷ�9��Q"�1�e I��5��
T��t/J3��������|�M&۰�<����᤬�F(�H=xY�egTII��̱i��,H�.(12Rȿ���C��"'���[�ID�:��X� ���pf
A�ta,1\Uj�0U24I
�)�ŬR�����i�IJ�f����(����؋��Y�C�E�/7K.g<��;�y��L�bQ�U�O���4��mx�g���s�ʫ���jw���e~ ��/%k3��&%�\�)����q�Kq�(&c�ʪ!
�)��8.�%u�L��#Nh��q~���M�,���7Ν��Eİ�DX���C.�b8)�JF�����Cy�ueH��!��gLC�C��;N�]�~��#������.�a����Y�8���Ar��[��@f�!yX��䈠$��g�gz��?�(�Q#*ȗK�T�:\�.�h��)	c#DP�u��جjCA4f`���dB0��<
�ub{�
��������܀��fB��Rɟ6c%��$l(n�)���Y25ɒ��/)O,��;	�J��"�1C��������򹖆5I`Q�V�L�'�F��f�	�1�:C�~E��SSJF\8sM~X���뮃�K<�P��A;E<��{�)�.�?8�W2cM31bDh��λ�h�0�����ݨv��?�a
�1bЙ�vee��p,�($��T]�$k�@>��r���N�BS�QP��k�j@/�/"�=-	?�z+�(rbi�g��X�Hwi�,ՀF%� �%��
3��G㲰&���m'�����Y]�1F�;}'��q{��*(� �� lu4�Ō��~�&����锯�d*���@���(�X��5,�e�Ph� �5A�����+b���-&鑨��e�G��qi�d�8�{�(��$ʙjQ> ��J�&��ĩ�D� ��դ�ݎ��
�Lap���,�YaC�L�m�L]6�
ּU[��#NJ�h���Z�%��I�a�&J��*�I.�䰱��QPE��Y�󑙯�:��R�ʕM��P���&L���3U���������EYFz����"�� �l���4�`������~ Kc�00��b4(i���U"{�`��r���&�ʋ���u�l�U��,W�^��:>`��B�x�:�8��,��~J�X���X�3�8!�0�yQ���O��I3!�H�^���4�nk��񚹐�p��м�)sX2)�C�hcwnצ�Jj1/�ȽB3)i+��Y'�����Onҝj:jϤ��4���.��1�:-�q�rjSg=9 _�9�乮�w"�ܛܢ�TYa��V�$
�G�7�Q>7#��_���%P�b)izE��h
��8B�nt��X˹�� �נ?#2]�T#�
���s`3u��N�܊5D�2�D��u�+��:ǥr�t������Fk�y�;��z�<kd	��5(|=��k�e��1Z訩t���C3��mh����q�����T ��f��~F#4%��
�-�����W���A�1}��:~�F���@f8��+�ԨT���ۚ��R�^/O���j�R�BZ�,�ҹ
�a�Ja)9�@��R�	�̔jׄ怾��o��_���`�m�y �8.����v���=��=D}l#�!��0�Um�hta>�����LVrv#�����j�� Uz[/-K��K�jp$9�m%K�
�%�<�8�xN�1�P��l��[��q�"�C�Q����ٽ�B�MQ|�i5���{a™�X��ۀ#2�(l e��vR�� �����[�/Z$���.CCu�*���!��z��G��(�J�>�8���4'�-d*� !�j��QP��X��k�W���skXZ��rSj\N�.�ْ�ʟד��
[a����Eq�5�qN��PI�����μ$>��,@Nh�qIj���e��.%~�	M�6����p�J�š�Bk9�}bw�eZ�p�}$�F	i����r$�O�x��l.���+��c��jQ��G5�M�U��0�"�PDo��%+��j�����Jxr�~=9���F�ďI��v��2���a'r�硷�N�,d��Pav��x|!���r��X�ă1���Q��� J-l
�|���k��$q��ŀ�� 
����,��:���[�A��i�0�ع����U��'�&��g���ǰ�,�������U��.�g�ʣ��u͝$��^��KҥT�%��WK�#�P�P�j��E��y��p$�Ѓ堖J�Z0Сor
�;�c���V G͏�*�
<���>�n ���1es+E�4��C>7��(7WG�	��>��XQ�ﵪv��eo+�XS�C͸f�s��6i�s)Xt%"��%.i���b�M����,=�]Я_��HX�.��[@����ˆ�F��_�"#�*� �n�z�ZI���ǁ8�fLE7&�� Su%�*��B�,g�ɫhx�X]��ܚ..‚o�f�$��L���&xNT��]@tv��
€�8�n��ʦeQma���&�{�
M����T�nYP�؁������Lm�g}8��ﺉ�{\6����Us-ε�	�c�c�9�`[sM�q�nh�(K3�`긚\��ʂȏ8�Ꚕ���/���W��Z����C�)J�Ǽ�nr�L#j�݌RTq'�"3
���4��9Eݘ"M�����c2��|�H�㴌p�~˝�T�ŏ�&���u��$���D�L{Q�>DEQ�Z3>Q�ؽ��,5�A���|��2�P�R+~�L$��`�Qx���V�M4Ә"ę�����7���u�)[Y/iKFm760
Y���#�T�|��=B�&$�IfaL���R7e���
�G측d\���А�4��r��a�4�hӂl)QKD"�«ꢜ�:�kL!R2���!UG, 
y��b�M�{��a�BR{��d�:3P	H1sL��a-�~v�l��c�%���`i2|�v�Y�KLC��U��T��6)°�nVRY��H	�`Z
��]ewl4AUZ��[q��y���xmp'@8m�L�l�RsQ�33e��!����>�X՜Ѭ�Y�����Q��
d����9��I�4p��uI8!<�,�$tj�I.��DZ��FȾ�ެ�U�}u���4���=�9�%��W7(�#��
I�Ɠ���j0
��┍��)4d�����$1��u�:=�A��1���Ϩ�>+a�؃	�iͤId�q$I����V&S��ɺU鬮1{��*N#jr��0
�~$a��c2��b�Hҏb��}J���0��Y�!x�E�er#�S��8ö�:
�/�k�c"63��ֺV���7c��Ti��82dY�5-���2 (��
�0��P�.��\�4��H�P���Ƒ_����9	�A䮉炎��D\aTB_�'�iL]X�a�s
瞻�YI_��m_&,���/��4Zh�D�9LG8m��T�S�"9;9�YpE�3	�59aP��YHC�Q	�%̠vA��R�͙Sd����g�4�&=Wa��5�6AP{�/*k[yTPniA�b���d�hj�a70HgI�&ԲU=2$�2„�6usPg.�:�]�~��'Ug����9Ce�C�NJ�!?-�`���&�>�|��$����A�����(��
s�B{֮ɇE�n��������L�J��<H�h `	ySB�@����8�rd�b��N�U�94gl?WU,�9��7qB6�G��)�<."h�-�a��;ӈc��0�Qf�Qj�B�m=J}?�G��L�0��^'B,1,ST��Ӎm�$��Y�Q:c d>�/F�J�(�JLn�*�`�0�])��ܩ�HʦZ0[K�ofG�F#$��d{����R�GpQIxH�EP%�ry��
�=GE�O<�a:�&�N��d�'�3-��}��,�@TǙ�xFY$DcBMF�
�f#�%����f�
�YJ2���a�R�v�Q����g_
7EMKt5��C��:Hn/�DC>
½��K��s�2�&�V(��p��Y8{��o����=p��7��}�UP?�>�`�����x�1�l̙C�3.�@z��q2ٖXQ��8qΜ>W��`�=p��cp�ڣi��3$��}�d?��67�7I��):���a5�0�NU�M�$�Q�@Ɛ���ms���-��c(L
B$�q��Q��0�����_���޸����7O��"��bMͅ$����,�Va):��9��)loo�$��(�^��N����:\���5J6q����W��2���Y�v��h	�ϟ��0���M����W�GN�ȑ#p��nm�ru#9w��@��F������:G}�z*��Bj��a~n*4�������\eϥ��� S�p=ALD��*�umBK����������xJY0C�	6{�67������?�����'������J^�u<6q樏$��03c�9�	c`�1S�������6a>���3O��o����^s-9|VVV
'�0\�X��.��+k��>�;ok7�a����N�z��X*��>���A�39�Ep�q��/�Ü��YE��tҟ-ɢk��ry�>Vp�]_Ġ��b�mN&���tl����v"�3�`9a&n�bLc�od��勗���?	�(��?�S8w�$\�x�.33�4ݩ1���;Z�=)�Qef�(� ����+p����׿���_�_���~��~<�p.N��/?	_x�S0�.�G����7���.���6�I�K�͙g�7�q�����
gΪ��Pӏ]3��3"͆�u9`����ή�2\S/�.n�������L4�j.YMY�L��Iՙ����b-�y�����XeQ?<�*u4�ۻ�kyL)�g<��������w��>�(�,����	�_{�������o~s�9�ͭmnN���eh��r�#,�/��Uc�\*��)u�3�׍7���)�x��7�w~����p��Y�ڗ�����ݷ666`{2���e�w�����Ɗ3���s���6t /z�����]g&,c�����r�H*�H��H�<�8n�WKܽMg��(�w��	H*�����ǣ��O`yi	�y��忄�^}�=���~
>�$�z9
��̙Þ�{a�nַ+��P�a� ��sŵ��D�i,�&ϙ$��4aJ���]ܯ�w��\�#����=�~���P�N�SgN�M7��	�`�i�(5ܿ(����J��C�F��a��>Y�>j�P�c#W���99Ӑ7��T���C�5!Nr9h�%Y��Ð��j��q�*��m���!��@A7t������UN�Iff]d���3Ib�v.*r;��Y0S�j�VV��Ս�p%!��Gp��8}�4�ٳ�k-,��G��smcmm�;�cQ�.#�����9���<5_Q���Y�Cf�b��0�	޽��w�X_��h�-���;�_��'�ҹ�����
���8�Y^���k\�*aR9+ ��a"Ek��5�:�aN
c�
a2�C�Ɋ���]���6M
�rи���jO�QP]mUxgL�q�U�I� ��ַ�07�WA%�;�L�ƪ'q5��J�_�?"ry�����@��)'S�aC5�l����>S	�:!����K�B��zq���C���$Z�2\�p���9�$��C�[�>���½>��������������b��$M�{�T��D�"���#�(�2�lXl��Y�ɇ<�k���3�s�.�7��:����pǛo�G{���m��?�����k�;���9}nx�axۻO��Q4(�KZ�@�="3����l/y��l�B���S���)>�v�P3o��1�(�‘�aK�;��\��e3RՊx1Q�8�����lk���VN�!���]�(���`� *�/�$�L���%n���g>���d��������Sx�����Cp��7�sO|^�Ux�_����_�i��(*��D�����|'DZ�z(V3
�gtdZl�13���~��������x�Ax����'>�qx�=o�w2���i�w����K�<
������z��gl[�;�y�G���v @��҅iͥ�_'���Ru�m�G�( ����"=�~��Xe�>��)�ObFd)T%�
?P��n!ɒ�F���"Z��
8����f��������"�����9b�w��K�	I��/���p�h�g�z^H���O�<‰�y�߿��̾�󰹵���yW��9sȅ,,
Ic�"ȑ�=f9'Kc�fF%���v��K/��K�p�����u�L���k{���췾͏��7���%x�;���^�-Q�����"�<g�TJ�ɋ2�K��ӄ��z}�'���˴K���I4̈́��p���<���M�%�1�Mk(cYU��v 1�>�d�(������$���j��&4�;X6� �]��f��3��54]�jt	^��9�Q��5C�5l��˺�V(����Z���C-
B�ٻʵ���1<���~.'L�-�����*|�??�ӟ��W�·��4�:y
>����1l\��~��g�ٓ'93�8��0�<Q0�S��[`4�*d$�dkc~�a����F�o���W��N�L����M��R��H�������?�6����x���k��j�l4Z��2䎔�gg��FGY�f�,KN$(�?��6V�?��|�U�«��[�w
_|�
����8C�lEO��	Ъ碧��vFQ�9�'�B1A�}V��J`3,Sw"r�4ʛ[�'7YD���>��)�:JI��FB�<�3=�q�}������ɵFiIbQ�I���Q�@D�Y"OȑC�&Dy�3�Y��*_ZY�'��"����d~7��o����s�!�w��UXM��$�w�<p
\:w���'Me=�H��e1*��0wbQro�1��3���F�����ݛ0�{8�{��s��ŗ^�����[o�^{�e�׿�/�����?�qB|��)x���p�n�}�����'�#��q�H��c�b�����kJ�7#��������!*(�����m+֦w�L��$�,h\UJ�*��:�s˟�ke��J*�iĝ���祄��P���$۴�ߡ�#M�PM��ш���1J)3�汼��x�u����q����kp[B���ӄ�3�~2��/?�9�x�bB�o�{�y+�Yݟ:ͳ��0�SL8����ᚃפ�=�l���A���/§?���OL��G}$aP����9"�Ο���w^{�eX�p	��������5G���=ӭ	�8}6ab�o�p����J��Z��Z��2�)b��w�|ω����%� O�39�K0�;���sO��{D6G�J(LW�I����Gﵒ�HE���T.�(S�-��5��)��
�Z����2�(�ْ'�2�))�O��SPo3! &�K8O�T.�=�쥕��1���Pn�����;������ñ[�7;�ho�Pz�_:��O~���S�=�����#����N����6��e�}�'̈1�
�t�M��:�y��!����_����%�'7�ٟ}
��C���3?�<'�Q��;w���7m���;�o�x��k����Hߜns�gk3ѻ�f����^%1'�T��r�i����T�,GY2]�B�cs�kw�{E�?���E.�Vz�J략<�-)����/���U�ڨi<z��,���]
��k-n^
��Vk�bi�k����y��H!�E�m��D1��g�U?lr�Cl�5�T�O��La�I���^s����B@l�Pt�������|�9ʳ��)l9�R~�wx*aw�y�bX��DXT�>�\�ɵ�_����۟0�=׊��?�����߀��߆[o�VV���
,%�:q�\w�
�[n���DkY__�O�����2��G��#?�	�Zrs��cb��={8�(�[+|��%�`Cæ�~Z���@hW�-���B~.���Ƀ-ޡh �4��/��n���(_�P G������_-���`��h��h��%n�ޙ�Od��1�99r���,� >�j,˛�<0c=1���4yoe	�Y���ӄ9\�I}oz��p��x晧y�J�y��<ٞ$�� |����;{/9|}�{8������&aW�r&�w�*g^_��`iy�9/]��i��UƤ��}���=��p�mw���.m\����*��lno��彥}�V2$�Vr�  l�M�v�	�
"񁄒��=��Л�^y��(R�v}�!I��p���oPM�Yԏ�Z)Gg�s���m�����L�����@�[��ɪ�)�
�$�oFL���2�ʘ{D
����=��F#�M�"�c�i��0ͦ�[��
x����C|{2�	��g��{��oO�.]�ȟ�vuV���&�_z�k���N4��ĉ������7�G���~Œ&�w3�j�N�c�$��uef5��?~�-�auc�_�rV��x���&lM'i�)�d���u��1��\�(�ǃl��MV��ir�D��9��
%�N� t�*��+�o�-��ufW�o`���rz��h��ĵ�A�#������C�ػ�����ÉI��}hB�k.���}B����h��.X��9�FEy!�c6�{�p	c>�/��	�p������3�g��&�I4��0涾9����o����>�����qM��f1!�EM�\��D+a��DKY]^���sޣG�rF��C��o�f#J��錙��Cf�y+���5�HRf\���E�>��Mbz �G4{G{3]�{�g (4��:���gV̯i�9\�os,F�RjV���!�a�L-4���IY&��2���j#�h�KB3�f��+˫���"��z�������^����p�����p��e���8z��`Q\�.����W������h7���;y����?񱟄3���rLس.�;�h+�ᮻ����@XK\K��z��A��'2�!9���sҳ��J�e`���Ц���?�6�6�/~��+����9}\�ߊ��(�l�ef������"�8K\�.�n��s#���>TL.�aL&�<�Y�A��g�Ie |&i��.���Q��(������`ux�������r���Ĺ�%�8+�ġ�ٻ�{���T;y콏�j���8�2��t������`J��Y���η��믃}�����;���L�a��v�p�ù���r�y0���~�?�O�С��{�
��E���-�ițS��P��f�C��S����d@�/隮�G�����^�Mdʞ�qD�
Hr1u��Qe7�e� ��km��^~�Zq���O63B}4I!�}0�H��y�h�Ckv��Vc1�#X�껠��Y"�r�@�3�Y��L	XJ�70E�8&�${Zq�a�!�q�Ⱥ��X���߈y��#��L���2���[Ι#���[�S�)�#�����0BX^Y�.���O�ܑ��
g��D��GY����9�`�Y�q�͙{&��EL1Fq��i������O\X`����(7�㾽����SL<$E�1Mikk$��A�O�3e`�u��X�슾��ޅ�>�w�-���
�c�
cgm��`��.G��{Hr-P��ձ涰��6r�7����=m��
:��Ð�.��.R���}�+扂P��K�2eD�q��@k	�P��p��]�3��k�l=��>���
\�-�`#�ٛ��2E
U�r4����gzL`�aNpȴ�-�]&��=�a��
�ɳ3���=���f�������A���	�b9-ӌ�1N3fI�!�H"�RᤕV�Y"$e7
KI����zAG�o�s��V��X�B�_��FA���Xڡ���0���kAG���̘b���ew`�ƴ�.��QD��@�\���_�^jM5/����l�'%���	B��#fAZtU���G��d5U�q��A�D������zu�k��lF�X1)����+��0S����g���%ZϘk���?p����w�����s  iD����B���!p-,K�d�ommB��^-Û1#ևI�-1'=i��&���G����Gr�D�s�f��b�F��&�h��W9R��F�������Ϙd�5��f��	H
a"�3��x•���D��/���y�&#{�*%���E��Q�<���B�ɑ��:�A�6��CT�5���39�[���R�dHZ^IJ�r�^R�s̒vYv9��f0(9�U�S�i�iĵ�=r�{���Rv_
]��
K��T�1	��#�Ƞݹ����9H}?[�mXJ���B��`��`��PwR����?����A�
���N��Z��L0���u|M�e��|��	}Rb ����;�g6�g 6���w@`.��ff+�I8^1�Ed�h���%#����>=.I�s��'�1�rBi�si�u�<��D�Le���|@�V�3�6�]�?5[e����Ȯ� OS̬�ƌId
������_���Αz��~~�#?R$�f�h�TԪ��…Y2��i:,�Jh'
1�T�e�A)#ܤ-0�U���,%�g"n��]�@I{ i}��p�e�+�X�s=z3���\Q���7��=��,2�9��́CF�2:oH����[�t��jC�n��QBl��eޫ���6Kj���(��� �J�<I͡�����0W������C����q�V,ah�끸$ϴ��Qu�߷i�k̴u��U��xI
9þc�l��D����2֏�0�2�!u�or��g>���I�ʙ4���r�VB�H�Z�ɜh�k
���5m�|mɕ�X��fr�	&�̴�V�ZP۾C�
�f���#Xm�a��B�~kROS7$Gzv�R�C�q(ᚦj���!��F���Dm$��qV�\h")�V�®c�@���RtAVS�$�xI�(�,g��P@�����1s�o�Ƀ�r������%�<U$]�I��p�8�
��E�p5	-p�j ��/F
)^v<��_�!~M	6 `X��t֯.\J�I�����/Zӫ�Uj<9l�H~c��DP#�9���*�"�~�F#͉yIZY⎥*w�	��x��)�p�\��d��×�qy�I>�Ҩq��F�u��(�U�w1[͍4�Q�r�{���#�tޙ�'�Lo}e�w�kR,}"0a�D�,wj�Ԣ�r,
�eƆ��L _���<tR�2��E��uS�?)��d{�9�7p�3��×,�+Q���ߑC~�R���;��I
Bls�PF��!����
�-���=�:X��i�%��6�Oy.��}��Ҽ&�pmg�[پ-�T:��^+#S�*�v��M��"(V2[
�Df4[��W�䴕?�{�#����_�RL�T�-{�8+�Z�r��$�Zb�EH*�}�PW��]��eH��"���;�Y2��/�]bZyrg6���#I�J���l�VBsCI�3j�w�e
l�#��
V!���<������(pA������5�h�#$2��<��5Y�9�w��w jլ�d���0�[�2�J%�vD�TY8E�M��3��$��?��$�XeL/eM��	��p	x�X	��Ą#��]�5��xĚv�h���3V�j;�)��}�p��p��
������ �f�
����"�| v�n9�����걱��r�]v��VV���lO��Aei$�[j&X��.i��;͉C�6!�S��n��s�1�
fa�<v_4F��w�ޕ4Q�%�e&�`���
{��(=��[Q�:^�<Ϳa�;g�I�I��Y�Q����Y�>��%F�4�4K��T!��io"xsB3 Ø�5e��lmn���W�ҥ��֘Ff�0^�ΦG0)��@y��8�:_^^�q��1a��1)�OD�1����e�a++�i�le�����
I&D����J��j��T����n�ȔN�G�"�D�2攬��9Pf��+�f��_,hLQ��M̋�G-u�"�d������X�<Bź67�K���T�=��l�U�XB.��Y���t[�e��u2��ٰ�G�(7]8�h�$�2ۿ���hRu��&KZ�a�2!Q$�:��\��'
��Y-7*�AʈA�,K�4E�R�{�d�őxG�U�"�`N��	67�yQ���䩧��x�;Ғ�,3]��@���j�a�s�2�*���*.l�p��ock���i��QT)�w���ϻ�p�|C�s�G�.�[���1���2�w4�Q�"%<j ��I���5����b/�
ҙmF��*�k�M�mm’�VI���vSD��j{��X!��ڨ����@wiZU5�2�X�=��u_]K�c��V�(���צ�p�9��`XyQ�\rO�7��f�n����9c�{��O�E�HHƜ��a��_i�X���`�2�9����K�8���6#R�|�¤,Lc�6�֌`mm
.^�kW.s̓=�����կ~}�Q��g�� ��$1FQYPeӤ2���Ŋ^moqM��bZ�ˌ�"�Rd���ԟљH�9L�E�E�N�Y��ъ�U҂���YF�,�r�Yl&@�!�և��P3d��fo�C:¸��9Ix���*,Q�︿I	��7%��zkK��vU�#ȑi�:"9O5;�m~�1c����y�m�ų�_|�9س���p#\{��1�DL(9\zFI����q����Z�%���0?�e�V��	��E�P��ss����P.���eGO�dqpJ�=*>���e@���9c�L'��D�ܟ�kpLxF�@�/�/��r�
\�t)a"�`cs3�6�k����ĉ��3O��o{��Ih���%��Eּ��´�	OvL�UV91�;�'I���L[�`�3�q�.1&����y(�U���%�HCvP��}��ɋ
F�� 4K�@��#�:�D�2���r0�j��EġB ̓[-����`�;A?���$��q�E���"k�:���
-�B�ɱS���J�7ӂl:�e�	�7��;�4:��z03�����a%S�=o�Ο?/��<�b��c7���{ �L��+F*E��5'%j���%�������A�
L�?zM�LF ՛�XfQ�}&�Tę�#J}D���{�����ʚQ�ٛ�"§R�+2���N�VV�SȒ,ӐA����.]�˗/���4ò�y��;��_;���λ�T!$�Qf����23��,rf�~.4(�e�]�r`�^XYʂ��D��'m/g�N�|��HOt�4nF��f@�Lɣ�����.S뜀��lWi��,c��v_:Z����/P[��Nj8��K�{�h�D<���̜h�kY�*[��;�ab�-�&�ybs{
/]��_?���o��o�=% �B��CL).v<��6;ܤ�zd�kC�M5I�GI��jSU�&)�I�,
_er�%\�(x�������2摇��]β���\r,N9&7�P���Z�w�MX��`��Z��>sHkv��W����e^r�A�sP�8���~a~���}��,{��w�w�}w��Ȏe���O
��
�R!"�&	�J�K�iOS��2�G�E\	�Օ8v�uY0eZD5Vh��΢�Ӝ���l-r���e�1�Qf�J�%=��f��}�TO�皭MK��:�7��ԧ ;;}M$M��ϳ�q�6R�3�)Qͪ_kX�B�}�!$sfRXf�X�h
{�Gp��ka��:��ɒ�Dm�������S��`��ː՗Ӥ���w>KӈP��C2G�ځ��M����M=�#�0E�s,i��y=ٗ�Iv�,�iq����ZL����e6�8&U[b}N޳���?��ϋ,��i�e��a��e&�g��\Z�̿�&ƫ��Z��c�ֆ�d�*�=��?�G�ر����쳜��|�-Y�!���si<�c���E����*��d�/N3י�f�[�D!#FOT2WIE̠�II}YCż��RD9KI3� �T6�Ŝ;��jE�M�f�_8T�i�U�Ʌ��g.a0�l)ݼ��@�5�Y�.m��8v�DJ� ��v��Ŵ?��L�ࣱzs���@Q�	U�M�<2L����ҡ��%Ç�#P@�,
�]�m�5��(�H���EG1m�k!�¿�Z�n$������{�~��8w��{0�#/蕩B�V��Z��P�i����F��y�{`Y�ɔ�x\z�'�(�+�½׀��2��f0;��Ç�}QPD4��|�*��U�T�\I�Xq����|6�+Q�j P��@��/WI�]h�gh���bt8T$��v�a~�!	��vG���`9��ljDg�G���w���*!֤;%����H<@��FT�4
˃L�T6DP�D�(�@*�4��rMD��b�B��\I�+�9^�0�L�`�:+1��0�If�b�<��`B���h�Tk"��C�������"L�\]]�h�h'�@��l*�V3���83;�0�!�ʈU:\s3�1�����i�VbV��(�/��OEVgn*��/e�#Xx��3�&i����7)��+(vPbܤ���u�O(嬥�u�Fg�V-�j	�'�i��d���%�����5*B{3�-+���BS����
>C2V��(�	[�����%���mcn����׎��S'�?�A��ݷ7�����,42m�����T�L�rB�pV��`R���%��F��4J��'�duy%�k��(*�p܌IMsPG�%)ϵH!S���0��Y��ɓo$Lc�3E��<x���:V�(/�%fKh��,�AQ�i��VQ—�3J�ZUa�G�2G:EEM���0Ku`����bNU�#��Sj�oێW�fU4�2�P�I[P�P�n�,��5��CFJ��?]�375E�$h
Q5g�{�R�B
��_Lu�'��%-����yH,{L�X�L�4�l|X8�s*�
�Ԯ/߻��G��֯����:�Y�n��	�ւ1a�O�\��W�Y��:R�a$�ϋ�E���92Gul�:�N	��j�������e8y�d�A]�C����Օ��Y�2\���q�Jx�{���G�e�	F�-B���������;�UB��y�I���ntT�&L/���]��
F�]��1��~�0�0�6��u��5\�]���"9O'l�2KM֥��@��-"��?K�lS���o��+�,�R"+i�$�AF ���+���p�l�H�L�"H�d&���,�p�}0LKa�ܩ.�U\pM�#�@���>���d���KA�a�(
��=�$�5�u��J�(�!L�Cg�c1Q�(!�<s<�12T�r�wL/cQ^��``��iy9���"�-�<o:��^1��E�fH��=DɤB�D���<�,P/J�͆#׵���:C����Z�Gյ�{���Z���D���Y���(򭞧�
+@䄤�;ͭ0�kPJ��Y"��s�c���d
P��Q���iMa���ʢ��b���H��1eN���Ԏ����pV�$�3_�b���S�s~�E�R�y�6ʀ��3Z��f;�Nϑ�R�s<��Xf�|n�lZ)�u:��//��?�5�5B���v3O���;���#h0e��?��j�rٔ5D�	���ddVʾ�THC�@A���'YBo�"��3< � Z����޹�4
ۦ�K��Ĝ��hcQ���s
�F�u�0v�ֻI\!0M:B0����t˄�b�������,�9QH)���z�a��`s�+>U�s��B���[�0��X�Ľ�`^�w\d�ȳ�����Q��U2Ӣg-�&���r����D%.�>9�4�\5�5r��N-`j-uTNZ�-�l�S��jrA��r*L���䍬�'��h9FɃ(�C��\�i$�1cn^**gyr�s�Θ���'��`�7V��K�@�Y8����5|��Wk�M��G1�ૠh���c����]޷�aeZV��B�u�
����<Z+�v4�aA��/��*����OA���ad9g���f7*A+"�H�E��L4׉���)B�5�Q}���F$�����dC�K	��D�)-I��0F�jy3vk}"�:�H}<icou�A�Dn3�@�L�A�`c���Zg�s1�s�M�������;�SH0ζ�F3p-�UK�s�=��~����|.D�鄯�f^��(�u�o3޸�	M���}��5!@]3�el����u�z��]T�#�ԧ��e�
�
�(�h��'gM��s�K���@;M�-r���E��a���]��"�;V���7���������fM��pu����E=��b3�l�;f/���=�&٢�"%�JJ�!�WA��U1�&ɇ�ՙl��]�����50
�,�O��j&�񭂩z��X��{�����T��<�M�X���5y�hy�n}��Rۜ-ת�}k��f4��R�iD�#9�u<�@ݙ���͒f�_���z�V�gZ	�c�c��̠j��[nuiD�E*�nMDS�0O�N���#���y�:�/��2�ŖhzQ�2��d��ve����y��
ê9��
{b�g%��X�X)P�kܼ�k��8�V�+�	Umߖ�K�D��!��������B���!�SY��$�f�!VN�sy���DM ���:�`�����w��I�hs���vl�=�����<_��]��#��]�'����q�q�1�ʯ��}�\DU��|a��2$���##r�2WgO��\�kq��bd�L:s��H"nM36�'��%��B��h`�A��kNy��&��C���z
������l��^�i����O�ao�'��\����#��
Z[��c	{�ɍC~c;?�IX�z�
^-��1S��\�'2wJ���>�m;�u1��xY�(i���2'��aId�v]3H��br�LE(�ŹL�.�S �YUU0�pu3�kO�!�Tkh��<���K�q��˻=q�Ka�E�Z��,GX��AZ�m��C�%���X�]Qu%�X�{Ĕ*mK�9�Z�m

E1J�U9c&�~����nQ?����5eiQ�Ri��Kϖ�AG�u��Yy���U*��%� (�q��k9P"t�?�(K��	�R+�~�nf�I�P��L�Ti:rFV�1�2,"��e��?�ۑ��zd��T֋��$�y�&"/jO�̀��X-f'�ުcO�O��S�E3�Kh�~���@J%��qB�@�hYD_�� ���Q�5P�k@�&K�GC3'�����>�[s�@�ſ�?�0Uh��H'�4�V��w��3��b�ݦԯ:�;��k�3�24(<O)�̧>�N��ݘIeJ޳�o���u+���Q�&15�(��P[?H9)��}�����(�2ش�[<kl&pՄл��G��[0
2�l�\��j��:�����T��L�L�e�H����`?���4_�iM�l����w�}G)\	'����@Ps��$��j�5�_02�s��o��ļ(�8�ↄ�AX*i�r�>GŘNIJH��M(&��Ն���qҸ�/��i�Pr�:���$����>��؊���M����X�Z��h����`��
"
�<ښ���fӏ�j�BX����Ɣ�4h�[�cP��a:�S�`ߢ�	v���ѥ#�h56��\�����64þD�X�eo�)V��	��[��Ő���-��|q_��6�f��ƺ�J�*�m��ڸJ[6�TH�6�R�OA�FI����m�S\۾��ẇ+M�l�����H8����-�Z��1y�o"*b^ʖ���0��PL(��y��j
K"T1���7�(4�%#�(�`j���5�i����v��8���fY��v�І���A��YY�}h���Eai�%����侧�^��^�E�D�=����Gk��;Ju�ə&�J�{��vN-��C�����qw,5�(32��'׏�54'�Vj(�!{֨Ls�g�,��-�q�U�Xm{g�km�#�k�����
dh��;��5jc'TϪݎ���3�[���
jy���S�3��!�[��<T4Y�a� ���pI�nҼs�D2�	Uv	�$��@�]\M{ڕ�Y�z�WO�$;�Ԯ�6ĀF�k�׽ B~�WF�>��6��mpm��F��iZ0����E�͋4���1���J�{0��\a?e�TͰ&�E��g�W�y4��
��nG�{�9�
�ɳ�!a��ܺD��Wg�Ö/'Uկ�6�a�����w�p�lP���Ŝ���n���":K(%l?Hg
D�ߟ'�rO	���:ϋV\g�$�8�bm��vPf1v���=�N9���lJk�D��[�n8K�zv�a�Æ�%0�cS���M"�<�*̵AoԆ(��ͤ�F#���ݻ��������ÇaeeE��A���G��b��={�p����ݪ_�Ʉ�42]�L�P+�p4S�C���
���:d e;_Z���"G5W��\&��_yσwy7���[*��*����>���ݏ���&��T&ѳ�J�&�&D�\F,����?��-�(�����}��)������O�i�t2�ޣ?/�C����Cp��o���u~
��C�����L��O�>a���-8t�pםw�uG����P~�G���I����=�+�{#y��w����ؿ����g�kӗ��� f����"k���F3{E+	���%�����[��ژ�����ˡv%��f�ƴ����������nx��W���}~�����	x饗��G�S�N���Ǔ��Q4�s��%�Q��w�_��S0�ayi9����{/,//��/��&����K�_�)���7�O<	���矇Gy$�n�._���������I��n����'����^~�x��Wx��`���U��?�4�}�]p�]w�g��s��{�y+��}p��%x�`i��'����…p��s����{���y|���6�i���׆����濯,/�wlom'�z���]�� g%�a d&T`^RW�&�qS@�� ����e�P�5?C+k9ع�փV4��$j��4�k�]�|;|�3����ַ��D���g�����$���o�����{�9��;��o<�
'ɳs8z�7-}��x��p��q���ٳ���q���s�E0&���{௿�5����`ee�3�����	��2�>}�>�����,<p����W���䚋	sx��9#���[�ĉp��I���ﺛ��._�̙���Ͽ/&���ŋ|<��5�?��o~3���_�넡����o�
ǎ���qxk2/���������ԧ���8�C�ev,ӏ�]�e�[h\J!�ߥX2A��>`�ul�M7��7^�Dk`~F�G�1��776��p>��Ϟ;{���&�/%�ʕ+���3	��N��O�+�e*�z"���x����W��u���[��˴�=��{�^�
g��w3�ϴ
�'��칗/�q��������K܄��|Ϙ�V�`̔��k�9�[N���믿���=�{�q�`�������-%����N�:�Ę�z�����w���k�����Q҇�t)Zx4�z
}
tP"/�C�R"6����Bjq]h�iD�Fౠ�ަ<^V5���{�k��T����"��CIzW�!�Y�s%��.��u�W��Jc���Nu/����氭}���i���p��y8v�
�,��o�o<�4���~^�D�~!!ܗ��i%�'��9��XK:#�.\�D�̙��3�&Z3�\w�Q���Q��w�É�-�D�����7��3���+W�w�l8�Y1��	{���:|��_���G8�x��֒�}��?��/�k�O<�WpG�
=��w���n�b~����p�~8v��|�g��0�ύ7��ɓ���㌃��Μ=��g�a��׾�p�t�m�q�4�i=��C�/��S^?�uT A
(=��J�%���}�x��蟩t����_�UpAʭ���PF�vC�@���XIwMP�v�omwӢ����鄽�Oؾ��HfD�90�^8��fj�Q�6I�&a�	��R�	2���,t�}�${f�z��ÿ���;u0'�3ɝ=S<�i8�Z���sH
f�3���}6M���1��i\cI�g��l�0]��Օ�<8@0qOjƛ�lmo���U7$J+p///'O�,ظҹ��� V��r�`�8|����J���"M!��8.�&7u��Ҹ0%ePH*E�0dF�xG�L��o�ē���1dDV�eDq�4�D�]�5ȳ2�2�f�8}�|�S�i�L=��g�u������y�ݶ>��)se�$��{�3 3߉q�g�kJ}�#>^ƤD��A9�ȓ�ُ+I�K��`�ցd��Z��YҲґ,Z���Ɓ�"9q]�G�v��P�:����r�ڈ�U��O�华��f�L�aL$ʘG�{j��}��ɨ#��m��>a�ƙN�`*.�� �J��&�������7]AC�]oS�˫4$:��nq4��	�C���m` �5i.[��< Lmh��ƕZ�Ѵ��;���$�����#����2h�详�j^"�j���b��)i�%Ɍ���lu
^�˖/��Y�Bgb����c�2De%p��	�����E��;�]P8��<J���T��Ђ 9?_�� �����p-�k)ik��rD��6��ݓ�0�4]��"
6-�4�;�p�|U{;R!��y��0�t	D=K.
�Z�A��d^��l0a�nx��>5���Ii�x�HJݔ�_�/YN1
s��`�;�Zj��&�/��NFt����Y1m�b/�*���W!C6�P�26�"{({NHK.K�f��$�آ��rXH'P �fQ;,����ф�k!�,8�X�M-%��I��t���JX��H5�H��Т�R��sƉ�IBl��&D1��@`5�T�����4Ϸ�H8&UӨ��Պ�Pn�"��Y�[`�%��U�ͥthw�
͛A�-�Ys��}T#��`~��H��XHf��t{L�S@��ph��%6��I[����>��!E�A*�yU��EDU���TX2�uq��_PPL��>��J�	��9�O�������}����à�dr�{�}�����ɶ�!�<U�3B�����*R˝j����~�a՘�E�q�එsg��dtM>\B�x֚�/d�V�v��aLù��2W��}�s�yٴ�(�Y�*u�yW�`$�vl|��ʾ�]�� k;n�?�bV��e6�N�+=�$ڨ`aa�U-a��>�>7��D�������T�~�b^���p�l�5�q��n ����ӑ4mL��J����E@���~�)t�)�7=K�sUv����\�*�$:����E�n�t�����k"�&�0�g[C��hg �B�w����Ѐ蚴�݁<�S5�!�p�7��#�/���/e����)�g��J֞�ȉ�;�7��^�A�J�-�B�W�9iXd�G)V����F�B�E��<�7l�� ��
v��%:���,���D��`o���]%���.!�k�T����|�o�:c0.1JMB��ȼ�^mQ%vbBq�C�;&�D\5K$���AN�p�K��]�øb<h�yn6�69t��AضA}��2�S^h��rMX.R���b��A�]�E�����%�$�C�+����5�$�y.���g)����ب
r���m(����fj��J �.q����4 t��w͏lt��r�*^������7/U0m,~��C�5��ՙR`�	x���(�X�@���TO~��*E�Zp����B3��k���7�8A�pg۝��4��I�]�\\�d�^�)��~�\z��[ZZ��(�����ӟ��'���7��e���
M���֮\�◾��%��u�M��"���c7�К��'O\a�sظ�mnn\<w����쨁a��<�+�y8&ں�����x�a'5h����o}k���n�q���d���m:�Ql�Z��+A;����ZY=q"�L&��5l�����0m�0C�І6���mhC��2��
mhC�І6��
m` C�І6��
dhC�І60��
mhC�@�6��
mh���)��qm��|�
3�꾡
m` �;p�ɤ�9�mB�ܷ�m�?��������Nљ�
��|��S>�^�����i0,.ʹg�4y
����	��?��?�o���w��=�=�<�}�]p�7��7ߜL�o������H�k��{��=�|�9£�>
��~�>}�����~a�n�a������ȣ�������'������b�'���_��7�������9\]]��G���-��;���Y@ǭ�R.\��XD�Tnĸ=X2�n�l�236_\2Ͷ��m�M�|��6�L2�D3�	�L*rKlшZ[5��9?W)
nW��$M�'����9��vM222�mW-Wa��G��B:�c``���aǎ2�dz����i���	Ǐ��N���5k���(4��-��������2���>*����Ϝ���ìY�hݦ"11!
���Q^Q�u��H
��
V�&e�s�VW��o��'�V+���Ku|�(�w�څ��^ܿU��C��l�*���RRR��������\C>��S\hn���P.\U5:.X��lZ���DII	��zN�S%all�2�o�K/b˖��`�c6�������V��<yR�eUBCC�<%�/��J2"�V�g6�U\TTT�mk��W`ɒŘ;w.����qޣuĚp#R�g�:��o�ϫ�v��
��hr�s044�կ�FXh(l���m���\�v�z\�I�8�o����p"r�w��Qdef�ĵ��^���ƩS���<}}}�Eb�^����+�����ٳUG��ގ��IH�$�����BZl6rssչ�jC�ŋh�2hl��DR��?X�c	����޼ysNHH`�aNH��E�;��f��]�ݘ�:_�j|BM#����Ye�|ۊ��q��PWW��Y�>���E?M!C��f�#C�h������)���:���Z?Gq��z�>=�Oį���Z{//[FE�Q�ˎ�4S2����&��[MM��Ě�.`9�Kց����`2�Rݴ��{<,��H�_����Ju��q���M����@�@�K��&�=�)sA�F#���&DC.�AI��䬞�=XF��k�����C ��;K�{���Ԉ��~O6����!<<۷���"ež?<�P2���a�H��r�Q�3(�76��â��)��9��2')oW9h�ᮐ���g��.T�Ԝl�)�b��С��n�_�s8jۅ͓�innR�b��%���G�T��T�Ӫ�`�}{�8�oj�7)�/�RK**ʑ���y4��c�괐�ݷ���T��\��Q�p:�HH����cbb��dc2T.Q��F�����?.��l�-��ƙ�p�ft^�Dkk�J��4��4R[[��[���-~�	�Zg'id$㶪����5��[��C�j���\
Mo�O�@�_\�����k�ί1�&���l��⡍�˜lD�Ʉov�F?�S����y���Ab�H#�����.��t���pa:h�c��$S��?N��=�`߾�1�G��`����xop<��ms�������O���i�o"4��a������@~���8'01oG��ɧ��V����*��o����G�S�M����.L�酵�.s��@�&:Y��v~j�[�q�X��m��7�r<�t�q�4E�&���Ę��z\�c�G��1o�S�/�FD��O!�T\ع�{M���]֎������8}M��8��ك��|\\0�w������Ɖ~SC?�EB��������_���)N�6�DAADAA�@A1AAA�@A1AADAA�Q�)�	�O�v?�QIEND�B`�themes/precognition/v1.0.0/theme.php000064400000003501151213255630013170 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Precognition extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'precognition';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
        add_filter('metaslider_flex_slider_parameters', array($this, 'use_manual_controls'), 10, 3);
        add_filter('metaslider_flex_slider_get_html', array($this, 'add_title_to_replace_dots'), 10, 3);
    }

    /**
     * Add manual controls to this theme
     *
     * @param array  $options      - The flexslider options
     * @param string $slideshow_id - the id of the slideshow
     * @param array  $settings     - the id of the slideshow
     *
     * @return array
     */
    public function use_manual_controls($options, $slideshow_id, $settings)
    {
        // Only enable this for dots nav
        if ('true' === $settings['navigation']) {
            $options['manualControls'] = "'.titleNav-{$slideshow_id} li a'";
        }
        return $options;
    }

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_precognition_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_precognition_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['precognition'])) {
new MetaSlider_Theme_Precognition();
}
themes/precognition/v1.0.0/style.scss000064400000030404151213255630013414 0ustar00.ms-theme-precognition {
	opacity: 0;
	padding-bottom: 40px;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
  
	&.ms-loaded {
	  opacity: 1;
	}
  }
  
  .metaslider.ms-theme-precognition {
	* {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
  
	  &::before, &::after {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	  }
	}
  
	.flexslider {
	  margin-bottom: 0;
	  width: 100%;
	}
  
	.flex-control-nav {
	  width: 100%;

	  li {
		display: inherit !important;
	  }
	}
  
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs), ul.rslides_tabs, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) {
	  background: transparent;
	  bottom: 0;
	  display: flex !important;
	  flex-wrap: wrap;
	  justify-content: center;
	  line-height: 1.5;
	  margin: 0;
	  padding: 0 !important;
	  position: relative;
	  transition: top .2s;
	  width: 100%;
	  z-index: 8;
	}
  
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li, ul.rslides_tabs li, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) li {
	  align-items: center;
	  -webkit-box-align: center;
	  -webkit-box-flex: 1;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -ms-flex: 1;
	  flex: 1;
	  -ms-flex-align: center;
	}
  
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a, ul.rslides_tabs li a, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) li a {
	  text-decoration: none;
	}
  }
  
  .has-carousel-mode.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs), .ms-is-small.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs), .has-carousel-mode.metaslider.ms-theme-precognition ul.rslides_tabs, .ms-is-small.metaslider.ms-theme-precognition ul.rslides_tabs, .has-carousel-mode.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled), .ms-is-small.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) {
	margin-bottom: 10px;
	margin-top: 5px;
  }
  
  .has-carousel-mode.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li, 
  .ms-is-small.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li, 
  .has-carousel-mode.metaslider.ms-theme-precognition ul.rslides_tabs li, .ms-is-small.metaslider.ms-theme-precognition ul.rslides_tabs li, 
  .has-carousel-mode.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) li, 
  .ms-is-small.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) li {
	/*-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;*/
  }
  
  .metaslider.ms-theme-precognition {
	.coin-slider .cs-buttons {
	  background: transparent;
	  bottom: 0;
	  justify-content: flex-start;
	  display: flex !important;
	  flex-wrap: wrap;
	  left: 0 !important;
	  line-height: 15px;
	  margin: 0;
	  margin-left: 0 !important;
	  padding: 0 !important;
	  position: absolute;
	  -webkit-transition: top .2s;
	  transition: top .2s;
	  width: 100%;
	  z-index: 8;
  
	  li {
		align-items: center;
		display: flex !important;
		flex: 1;
  
		a {
		  text-decoration: none;
		}
	  }
	}
  
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a, ul.rslides_tabs li a, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a, .coin-slider .cs-buttons a {
	  align-items: center;
	  background: #fff;
	  border: 0;
	  border-radius: 0;
	  box-shadow: none !important;
	  color: #343536;
	  cursor: pointer;
	  display: flex !important;
	  flex: 1;
	  font-size: 14px;
	  height: 93px;
	  justify-content: center;
	  line-height: normal;
	  line-height: initial;
	  margin: 0;
	  padding: 1rem;
	  text-indent: 0;
	  transition: background .2s ease-in-out,background .2s ease-in-out;
	  width: 100%;
	  height: 100% !important;
	}
  }
  
  .has-carousel-mode.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a, div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a, .has-carousel-mode.metaslider.ms-theme-precognition ul.rslides_tabs li a, div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition ul.rslides_tabs li a, .has-carousel-mode.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a, div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a, .has-carousel-mode.metaslider.ms-theme-precognition .coin-slider .cs-buttons a, div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition .coin-slider .cs-buttons a {
	height: 1.5em;
	margin-bottom: 5px;
	margin-right: 10px;
	padding: 0;
	width: 1.5em;
  }
  
  .ms-is-small.metaslider.ms-theme-precognition {
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a, ul.rslides_tabs li a, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a, .coin-slider .cs-buttons a {
	  text-indent: -9999px;
	}
  }
  
  .has-carousel-mode.metaslider.ms-theme-precognition {
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a, ul.rslides_tabs li a, div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a, .coin-slider .cs-buttons a {
	  text-indent: 0;
	}
  }
  
  .metaslider.ms-theme-precognition {
	.flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a, ul.rslides_tabs li:last-child a, div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child, .coin-slider .cs-buttons a:last-child {
	  margin-right: 0;
	}
  
	.flexslider ol.flex-control-nav {
	  li a.flex-active, &:not(.flex-control-thumbs) li a:hover {
		background: #343536;
		color: #fff;
	  }
	}
  
	ul.rslides_tabs li {
	  &.rslides_here a, a:hover {
		background: #343536;
		color: #fff;
	  }
	}
  
	div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active, .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover {
	  background: #343536;
	  color: #fff;
	}
  
	.coin-slider .cs-buttons a {
	  &.cs-active, &:hover {
		background: #343536;
		color: #fff;
	  }
	}
  
	.flexslider ol.flex-control-nav {
	  li a.flex-active::after, &:not(.flex-control-thumbs) li a:hover::after {
		opacity: 1;
	  }
	}
  
	ul.rslides_tabs li {
	  &.rslides_here a::after, a:hover::after {
		opacity: 1;
	  }
	}
  
	div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after, .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after {
	  opacity: 1;
	}
  
	.coin-slider .cs-buttons a {
	  &.cs-active::after, &:hover::after {
		opacity: 1;
	  }
	}
  
	.flexslider ul.flex-direction-nav li a, a.rslides_nav, div.nivoSlider div.nivo-directionNav a, .coin-slider .coin-slider div a {
	  background: transparent;
	  border-radius: 50%;
	  -webkit-box-shadow: none;
	  box-shadow: none;
	  color: black;
	  height: 70px;
	  margin-top: 0;
	  opacity: 1;
	  overflow: hidden;
	  top: 50%;
	  -webkit-transform: translateY(-50%);
	  transform: translateY(-50%);
	  -webkit-transition: all .2s ease-in-out;
	  transition: all .2s ease-in-out;
	  width: 70px;
	}
  }
  
  .ms-is-small.metaslider.ms-theme-precognition {
	.flexslider ul.flex-direction-nav li a, a.rslides_nav, div.nivoSlider div.nivo-directionNav a, .coin-slider .coin-slider div a {
	  height: 40px;
	  top: 50%;
	  -webkit-transform: translateY(-50%);
	  transform: translateY(-50%);
	  width: 40px;
	}
  }
  
  .metaslider.ms-theme-precognition {
	.flexslider ul.flex-direction-nav li a::before, a.rslides_nav::before, div.nivoSlider div.nivo-directionNav a::before, .coin-slider .coin-slider div a::before {
	  background-size: 100%;
	  content: '' !important;
	  display: block;
	  height: 30px;
	  left: 50%;
	  position: absolute;
	  top: 50%;
	  -webkit-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
	  width: 18px;
	}
  
	.flexslider ul.flex-direction-nav li a.flex-prev, .rslides_nav.prev, div.nivoSlider div.nivo-directionNav a.nivo-prevNav, .coin-slider .coin-slider div a.cs-prev {
	  left: 2%;
	}
  
	.flexslider ul.flex-direction-nav li a.flex-prev:before, .rslides_nav.prev:before, div.nivoSlider div.nivo-directionNav a.nivo-prevNav:before, .coin-slider .coin-slider div a.cs-prev:before {
	  background: url("images/arrow-left.png") no-repeat center center;
	}
  
	.flexslider ul.flex-direction-nav li a.flex-next, .rslides_nav.next, div.nivoSlider div.nivo-directionNav a.nivo-nextNav, .coin-slider .coin-slider div a.cs-next {
	  right: 2%;
	}
  
	.flexslider ul.flex-direction-nav li a.flex-next:before, .rslides_nav.next:before, div.nivoSlider div.nivo-directionNav a.nivo-nextNav:before, .coin-slider .coin-slider div a.cs-next:before {
	  background: url("images/arrow-right.png") no-repeat center center;
	}
  
	.flexslider {
	  &:hover ul.flex-direction-nav li a, &:focus-within ul.flex-direction-nav li a {
		opacity: 1 !important;
	  }
	}
  
	&:hover a.rslides_nav, div.nivoSlider:hover div.nivo-directionNav a, .coin-slider:hover .coin-slider div a {
	  opacity: 1 !important;
	}
  
	.flexslider {
	  &:hover ul.flex-direction-nav li a:hover, &:focus-within ul.flex-direction-nav li a:hover {
		color: black;
		opacity: 1 !important;
	  }
	}
  
	&:hover a.rslides_nav:hover, div.nivoSlider:hover div.nivo-directionNav a:hover {
	  color: black;
	  opacity: 1 !important;
	}
  
	.coin-slider {
	  &:hover .coin-slider div a:hover {
		color: black;
		opacity: 1 !important;
	  }
  
	  .coin-slider div {
		display: block !important;
	  }
	}
  
	.flexslider ul.slides .caption-wrap, .rslides .caption-wrap {
	  background: rgba(0, 0, 0, 0.8);
	  bottom: 0;
	  color: inherit;
	  color: #fff;
	  height: 120px;
	  margin: 0;
	  padding: 0;
	  -webkit-transition: .5s all;
	  transition: .5s all;
	  width: 100%;
	}
  
	div.nivoSlider .nivo-caption {
	  background: rgba(0, 0, 0, 0.8);
	  bottom: 0;
	  color: inherit;
	  color: #fff;
	  height: 120px;
	  margin: 0;
	  padding: 0;
	  -webkit-transition: .5s all;
	  transition: .5s all;
	  width: 100%;
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  
	.cs-title {
	  margin: 10px;
	  padding: 20px;
	  width: calc(100% - 20px);
	}
  
	.flexslider ul.slides .flex-active-slide .caption-wrap, .rslides li[class*=rslides] .caption-wrap {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  
	.flexslider ul.slides .caption-wrap .caption, .rslides .caption-wrap .caption, .nivoSlider .nivo-caption {
	  bottom: 50px;
	  color: #fff;
	  font-size: .9rem;
	  left: 50%;
	  padding: 0;
	  position: absolute;
	  text-align: center;
	  -webkit-transform: translateX(-50%);
	  transform: translateX(-50%);
	}
  }
  
  .ms-is-small.metaslider.ms-theme-precognition {
	.flexslider ul.slides .caption-wrap .caption, .rslides .caption-wrap .caption, .nivoSlider .nivo-caption {
	  bottom: 45px;
	  width: 90%;
	}
  }
  
  .flexslider ul.slides .caption-wrap .caption a {
	color: #fff;
  }
  
  .metaslider.ms-theme-precognition .nivoSlider .nivo-caption {
	bottom: 0;
	font-size: 1rem;
	padding-top: 25px;
  }
  
  .ms-is-small.metaslider.ms-theme-precognition .nivoSlider .nivo-caption {
	bottom: 0;
	padding-top: 45px;
  }
  
  .metaslider.ms-theme-precognition .filmstrip {
	border-radius: 0;
	margin-top: 10px;
	width: 100%;
	z-index: 4;
  
	ul.flex-direction-nav li a {
	  &::after {
		width: 10px;
	  }
  
	  &.flex-prev, &.flex-next {
		height: 60px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 60px;
	  }
	}
  }
  
  .ms-is-small.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a {
	&.flex-prev, &.flex-next {
	  height: 40px;
	  width: 40px;
	}
  }
  
  .metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-prev, .ms-is-small.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-prev {
	left: 10px;
  }
  
  .metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-next, .ms-is-small.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-next {
	right: 10px;
  }
  
  .metaslider.ms-theme-precognition {
	&.has-filmstrip .flexslider {
	  &:not(.filmstrip) ul.flex-direction-nav {
		width: 90px;
	  }
  
	  ul.slides .caption-wrap {
		margin-right: 110px;
	  }
	}
  
	.slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a {
	  &:hover, &.active {
		border: 0 none;
	  }
	}
  }
  themes/precognition/v1.0.0/script.js000064400000002205151213255640013220 0ustar00(function($) {
   // metaslider has been initilalised
	$(document).on('metaslider/initialized', function (e, identifier) {
		// if .ms-theme-precognition
		if ($(identifier).closest('.metaslider.ms-theme-precognition').length) {
			var $slider = $(identifier);
			var $container = $(identifier).closest('.metaslider.ms-theme-precognition');
			var captions = $slider.find('.caption');
			if (captions.length) {
				$container.addClass('ms-has-caption');
			}

			// Revert nav and slides order
			var slides = $slider.find('.flex-viewport ul.slides');
			if (slides.length) {
				var nav = $slider.find('.flex-control-nav').detach();
				nav.insertAfter(slides);
			}
			
			$container.addClass('ms-loaded');
		}
		$(window).trigger('resize');
	});

   $(window).on('load resize', function(e) {
		// go through the sliders with this theme
		$('.metaslider').each(function(index) {
			var width = $(this).outerWidth();
			if (width < 800) {
				$(this).addClass('ms-is-small');
			} else {
				$(this).removeClass('ms-is-small');
			}
		});
	});
   $(window).on('load', function() {
      $(".nivo-control, .cs-buttons a").wrap("<li></li>");
	});
})(jQuery)
themes/precognition/v1.0.0/images/arrow-right.png000064400000000331151213255640015574 0ustar00�PNG


IHDR!N,gAMA���a�IDATH
�UA
� �{�`/���u�4 xY�2JUl�єb���5�� G�!"TA��9��Y��-�0�*�y��㻹4�Y3x�1�2���nb���pKr~\ ����<¾{r���~�k���ӿ�w_6nQ�
��~�o�S]W�~hIEND�B`�themes/precognition/v1.0.0/images/arrow-left.png000064400000000360151213255640015413 0ustar00�PNG


IHDR!N,gAMA���a�IDATH
�U�
� t~hЗE}h�&�,�p�R� Nَ�3[J3g�VNDVX�f&�=R_r�ɊՆĹR�A��	����T	�g�-or�@�CI� Φ�3C��xB�ϛ��;N�ʫ�(?����}��y�ŚԆ̏���S;�ɛ��Z�e��i�x��]�6&zU�(�]WR��IEND�B`�themes/precognition/v1.0.0/style.css000064400000033446151213255640013243 0ustar00.ms-theme-precognition{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-theme-precognition.ms-loaded{opacity:1}.metaslider.ms-theme-precognition *{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-precognition *::before,.metaslider.ms-theme-precognition *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-precognition .flexslider{margin-bottom:0;width:100%}.metaslider.ms-theme-precognition .flex-control-nav{width:100%}.metaslider.ms-theme-precognition .flex-control-nav li{display:inherit !important}.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-precognition ul.rslides_tabs,.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){background:transparent;bottom:0;display:flex !important;flex-wrap:wrap;justify-content:center;line-height:1.5;margin:0;padding:0 !important;position:relative;transition:top .2s;width:100%;z-index:8}.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li,.metaslider.ms-theme-precognition ul.rslides_tabs li,.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) li{align-items:center;-webkit-box-align:center;-webkit-box-flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-align:center}.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-precognition ul.rslides_tabs li a,.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) li a{text-decoration:none}.has-carousel-mode.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.ms-is-small.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.has-carousel-mode.metaslider.ms-theme-precognition ul.rslides_tabs,.ms-is-small.metaslider.ms-theme-precognition ul.rslides_tabs,.has-carousel-mode.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled),.ms-is-small.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){margin-bottom:10px;margin-top:5px}.metaslider.ms-theme-precognition .coin-slider .cs-buttons{background:transparent;bottom:0;justify-content:flex-start;display:flex !important;flex-wrap:wrap;left:0 !important;line-height:15px;margin:0;margin-left:0 !important;padding:0 !important;position:absolute;-webkit-transition:top .2s;transition:top .2s;width:100%;z-index:8}.metaslider.ms-theme-precognition .coin-slider .cs-buttons li{align-items:center;display:flex !important;flex:1}.metaslider.ms-theme-precognition .coin-slider .cs-buttons li a{text-decoration:none}.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-precognition ul.rslides_tabs li a,.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-precognition .coin-slider .cs-buttons a{align-items:center;background:#fff;border:0;border-radius:0;box-shadow:none !important;color:#343536;cursor:pointer;display:flex !important;flex:1;font-size:14px;height:93px;justify-content:center;line-height:normal;line-height:initial;margin:0;padding:1rem;text-indent:0;transition:background .2s ease-in-out,background .2s ease-in-out;width:100%;height:100% !important}.has-carousel-mode.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.has-carousel-mode.metaslider.ms-theme-precognition ul.rslides_tabs li a,div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition ul.rslides_tabs li a,.has-carousel-mode.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.has-carousel-mode.metaslider.ms-theme-precognition .coin-slider .cs-buttons a,div:not(.has-thumb-nav).ms-is-small.metaslider.ms-theme-precognition .coin-slider .cs-buttons a{height:1.5em;margin-bottom:5px;margin-right:10px;padding:0;width:1.5em}.ms-is-small.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.ms-is-small.metaslider.ms-theme-precognition ul.rslides_tabs li a,.ms-is-small.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.ms-is-small.metaslider.ms-theme-precognition .coin-slider .cs-buttons a{text-indent:-9999px}.has-carousel-mode.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.has-carousel-mode.metaslider.ms-theme-precognition ul.rslides_tabs li a,.has-carousel-mode.metaslider.ms-theme-precognition div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.has-carousel-mode.metaslider.ms-theme-precognition .coin-slider .cs-buttons a{text-indent:0}.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li:last-child a,.metaslider.ms-theme-precognition ul.rslides_tabs li:last-child a,.metaslider.ms-theme-precognition div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a:last-child,.metaslider.ms-theme-precognition .coin-slider .cs-buttons a:last-child{margin-right:0}.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover{background:#343536;color:#fff}.metaslider.ms-theme-precognition ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-precognition ul.rslides_tabs li a:hover{background:#343536;color:#fff}.metaslider.ms-theme-precognition div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-precognition .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover{background:#343536;color:#fff}.metaslider.ms-theme-precognition .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-precognition .coin-slider .cs-buttons a:hover{background:#343536;color:#fff}.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-precognition .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after{opacity:1}.metaslider.ms-theme-precognition ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-precognition ul.rslides_tabs li a:hover::after{opacity:1}.metaslider.ms-theme-precognition div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-precognition .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after{opacity:1}.metaslider.ms-theme-precognition .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-precognition .coin-slider .cs-buttons a:hover::after{opacity:1}.metaslider.ms-theme-precognition .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-precognition a.rslides_nav,.metaslider.ms-theme-precognition div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-precognition .coin-slider .coin-slider div a{background:transparent;border-radius:50%;-webkit-box-shadow:none;box-shadow:none;color:black;height:70px;margin-top:0;opacity:1;overflow:hidden;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:70px}.ms-is-small.metaslider.ms-theme-precognition .flexslider ul.flex-direction-nav li a,.ms-is-small.metaslider.ms-theme-precognition a.rslides_nav,.ms-is-small.metaslider.ms-theme-precognition div.nivoSlider div.nivo-directionNav a,.ms-is-small.metaslider.ms-theme-precognition .coin-slider .coin-slider div a{height:40px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:40px}.metaslider.ms-theme-precognition .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-precognition a.rslides_nav::before,.metaslider.ms-theme-precognition div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-precognition .coin-slider .coin-slider div a::before{background-size:100%;content:'' !important;display:block;height:30px;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:18px}.metaslider.ms-theme-precognition .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-precognition .rslides_nav.prev,.metaslider.ms-theme-precognition div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-precognition .coin-slider .coin-slider div a.cs-prev{left:2%}.metaslider.ms-theme-precognition .flexslider ul.flex-direction-nav li a.flex-prev:before,.metaslider.ms-theme-precognition .rslides_nav.prev:before,.metaslider.ms-theme-precognition div.nivoSlider div.nivo-directionNav a.nivo-prevNav:before,.metaslider.ms-theme-precognition .coin-slider .coin-slider div a.cs-prev:before{background:url("images/arrow-left.png") no-repeat center center}.metaslider.ms-theme-precognition .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-precognition .rslides_nav.next,.metaslider.ms-theme-precognition div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-precognition .coin-slider .coin-slider div a.cs-next{right:2%}.metaslider.ms-theme-precognition .flexslider ul.flex-direction-nav li a.flex-next:before,.metaslider.ms-theme-precognition .rslides_nav.next:before,.metaslider.ms-theme-precognition div.nivoSlider div.nivo-directionNav a.nivo-nextNav:before,.metaslider.ms-theme-precognition .coin-slider .coin-slider div a.cs-next:before{background:url("images/arrow-right.png") no-repeat center center}.metaslider.ms-theme-precognition .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-precognition .flexslider:focus-within ul.flex-direction-nav li a{opacity:1 !important}.metaslider.ms-theme-precognition:hover a.rslides_nav,.metaslider.ms-theme-precognition div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-precognition .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-precognition .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-precognition .flexslider:focus-within ul.flex-direction-nav li a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-precognition:hover a.rslides_nav:hover,.metaslider.ms-theme-precognition div.nivoSlider:hover div.nivo-directionNav a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-precognition .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-precognition .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-precognition .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-precognition .rslides .caption-wrap{background:rgba(0,0,0,0.8);bottom:0;color:inherit;color:#fff;height:120px;margin:0;padding:0;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-precognition div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);bottom:0;color:inherit;color:#fff;height:120px;margin:0;padding:0;-webkit-transition:.5s all;transition:.5s all;width:100%;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-precognition .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-precognition .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-precognition .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-precognition .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-precognition .rslides .caption-wrap .caption,.metaslider.ms-theme-precognition .nivoSlider .nivo-caption{bottom:50px;color:#fff;font-size:.9rem;left:50%;padding:0;position:absolute;text-align:center;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ms-is-small.metaslider.ms-theme-precognition .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-precognition .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-precognition .nivoSlider .nivo-caption{bottom:45px;width:90%}.flexslider ul.slides .caption-wrap .caption a{color:#fff}.metaslider.ms-theme-precognition .nivoSlider .nivo-caption{bottom:0;font-size:1rem;padding-top:25px}.ms-is-small.metaslider.ms-theme-precognition .nivoSlider .nivo-caption{bottom:0;padding-top:45px}.metaslider.ms-theme-precognition .filmstrip{border-radius:0;margin-top:10px;width:100%;z-index:4}.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-next{height:60px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:60px}.ms-is-small.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-prev,.ms-is-small.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-next{height:40px;width:40px}.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-prev,.ms-is-small.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-prev{left:10px}.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-next,.ms-is-small.metaslider.ms-theme-precognition .filmstrip ul.flex-direction-nav li a.flex-next{right:10px}.metaslider.ms-theme-precognition.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-precognition.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-precognition .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-precognition .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}
themes/precognition/changelog.php000064400000000115151213255640013172 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/nivo-bar/screenshot.png000064400000122726151213255640012447 0ustar00�PNG


IHDR��� ~PLTE���:;9???PQQ666MMLDEEIII442SUU���%!+(%0,0<7���������E`}BMEW]\���7B;_a]*63Vq�������������IVT���.1.���Ľ����x��HSK���Kd#)"�²������u��y��Խ�B\w:JB9BGEMP¹������Ql�������
3������.�¨���p��]eiZ\Sfie^p���Mh�}��ζ�P_V���D</���+���u��Hh�|��,-%ionTk����51'*7(gw�<]�PB4���K_qNZM\v����Cb�YOBIG@���?5(txsV`g[kx0?-�ǬTftHW`z��ʼ�<5Vxoz�]h_���������Ī�?H:l}���z2RI=���#z|˰�mocw��Nn�_UG������3<AFA8p�����VUL���e��JSA\H:Ŷ�6(���;M\ee|�p��ñ�gi[���,Kmvtf8HS}�̈́����gP?���htz��mseVG��u���#<3gXK���Ru�6I0O{�kxmf`S!?���`u�=SI�����xg��@P[c����’��^qh|~q|_I^z���u|��/"-F<Sf_�����p�����|ZgS+%^D+p]LsW>���|kZ9,r��*G#�sa��埇f)@HP<&V��Pi�����|g���gM2�~l[}��hM�Ѳ����˻���BS6V`F������h��j�yCq�)S��s�`E�mW����J.�ɧ�U9\0$�iMw��6f�sG/i&�s\9Z$6<6"�I8��p��IDATx���_��apg��q�4�o���r8#�!�q02G3���"K��c��&s��B�J�bci�`w��I$�Bq#7.}����K�y�g{�����y�W�������+χ��_��
d� f�����ɀ�c^�e:t�[2ill�Y��*�*��O���t#����c���P<���,���8q挽��oƝ���2�-�38��0��:f����LX��������,>�uze�A�E��r���޹Pd��C��Uc��`<Q�$���=�L&�r�I ��Zr�L&k��9���3H:�� 鮮t��x���
q��9��ݻ�7o�{w��o"�zI�%7��co���ǝ'���u~�w'*=)|�t���w}@>�x`���+����h�S�-P,�_j���e��k,]z{�,�Q��{�b�L
%���E��;��#
8z�G6� <�� �H��%.Ov�۝a�-q��j�Z��I���e��6�8�r�R$�z(�<�w��S6�G��9��M�S���;R/޾}��/hO�q��)S޼ �.�:w�!	�xB���7���{�����+?l������I1As�4�6݆�u���w��@���ɂD���@V���cE4H{Nxtv�M�H273��%H+K�*=a�8�t$)�5yv%=�J����u�;�{�H��)�j�)���=���==/���&Θ�wޮW��;�\H�-���&�ƍ��/"�H˘��?zy�ن��6��l��e�+`�s��
6b�wkh�������)k�ԩ�`�"���
�B��}#'M���+�E��A'H�a@��HT�r�_4�+0俀���HM&_�F��������{҃ ��y13��9�V�nj�iӁ�/�ܴ����CxK��~��,@	�<����׬�YA�A�֭�F�t}h����
�!�'�� � A녋n���Mp�DX ;1kQd!D�LAvo013��
�1r��)I.33�:��H3c�@�aJ�H@/!E�@�={���'��>�9� ��6�@$ʰ�H��*3]���kΘ��ϟ��|�ܹK����c�L��I�$�����k���߱��l��6����h��tM��k �Χ��@n�DD����Q���� �@�����&N�4��	�ko�J#AZ3��DVS*uU�3��+S�Ǔ+W(�ؿz$�z^�r�~M"=���Y�#�=A��1ځ/�u8\�9s�l��\�r�BOSSTsB{	�7��q?��
]��[��nS��F
����t�iY$1�x�X��-na����_z�:2r�$�@$���
)��,��S�X�U9K��Zr x���1�#yš��!=8�4�e�"@�@��8�XO|��1z���x��ɣ��.�6�a���8�3 N1��A��Pd5���P4 B�����ӛ�������榓�a�%�����$��=j�H�tJ'�ǹ�\�I"*��<.8�:L�DsRW)q5?v���B*���K%�A�p�����a@(�*ܫ�0���<�1z��+��o9�լ��˫�C
�d��"iؤ��0h#9@c3F�n��T0)�`	��I�� �^D�� io��@��ɡ�ׇ�$�Č�%S��<��C�-���C�N��J+
�^��W@����äe)x���pV��a
��©@^T0eA�|D�z
%�8�Ұy�f�PE�` H6!�L# ~����I��P�@(R4"�/ \�I�p��	���1��
���4�!�D�S\VI0H�� ǎ���cOa��=��A�(�۰)����\�]� -�%S�|����==t�ZAt$�)��S�N54��@�[�]�؛��+
<7.�?6$8����@���DWc1"��� 58`�WpG����0�8<M2V�6� bW$�`�����%��#�<����PIPa��
�b���^�� .�`�Z��\	,��c�=��U����Q�(�l�-�-FC�����괈1��X�^n6$z�"��!��x{X,!B�@$1���DO�!��$�G<�v�'�8�x�2�h䠈�:=R��؃)��h�CDp����S � ���[�+C|A���J\�{~�Ak��&�FA����!cG���?6�۸��c�cbT��l�p�R°@B=k�ID���U>��c[P ]�J{�DE�pQ"Wj�v��� *]N(�&0��U!��]�ۇ�#^��JpZ_\(=b*������D���T0ƒa]�Dv�� Vz�
ف�֐�B%��AiG(RIxW�Z�����6��+R���h�>$)�櫻hH�,�.������(4Y#�7!$�g�d��',p�D.��`S)gI�O���w g�=��g:혵�(� YCAt4]�*j����"�Ct"�D��f��V� )qR:n"�@?���yϹ'��sν7IKi��{ν�f��LHRP��`u�$�=-����SD��axGY��M�F�	�+Z+�G\:��ߘ��ᘃ*�ӻ�58 �@���w��8
#3��^�S�I�&��gk�y��T]r��`C��
����]W�ܺ
�@ 
*� z��<b��4���q�A�0���/<~���ސ�0���&M��Vg���@�KCM��xp��A
V���A
�"����)�2G,�>ӭA#����y<>�>�̑��@R��W_5�/i�^F^@�TٞpĠ�x�A2Bf��uu����P��JZ9�Xp�q#�@�	��U�48<�A����+�\��g�ȣY9�R�#<�A��sf����ql��&�!�1K\��D"�)~�X�Z�B���V�*���<Qk����[���-5��Bk� !8xd�PYp������L#�(���J1���؅��r�T�=�@�	@y��Qx��k��9,~�#]��������8�D ��pڬ�^�����0g�YV)YOP�c>XT��$���!���+�G�5���q�z���H�'��/��� b�2\��b�2M������k�Yd)r~i��7���c"a���E.��1Hɲ���u$�����[ާh�-���UK��"��M
f�''*<zz�!�l�sT4."��b��X��A�jx�w=}�6
$�h�!�"���ݨ�(.���ʆJ^��V�H�őXq���ɱ�8�漦��&^/��.�0�n�S+�>�a ��$�jxD�Q͏q�^.��,��>�K�[:�d2����KK	�k5�I5��}UM ���h�$��_^C����2�s/7\�V2�"�n���n����/�E�J�R���b����,o����NSn�P�#����|�<��+�zϷF�!��U��xC�h'��(xP!�m��W$��VNJ@"`�A�P!�F�-��H� ^;1�E.AL��D���ԁ�Aa(T��՚t�ρ�P�F�!��ǩh�S)]��T$�%Pt�<��n��KB@��1d0 f�� <<>i�@���r���ʈɪA����P���x���ߚ9���� 
tg��x��v\�s3e$��5��e��h{{���fQ�b��E1�9G ̡��J�<�C��b�^�i �^���`�H\����.m�۪|I���>��� �'�:�\#d�H�w����b��B3`���w��P@�y�BR�<�������H]ms��N�(�lBA���P�EG:�F�F��0�usx)1���ǥ�G���Oo�д�<�{�$�/�{�f��0�k.�=G�+/e �8��L� �s�¿�)"p�
dDl2��e��*Ω�SC5<�i,R�]a�З=�-���4.ԋ)�ll\R��&�Ċ-�EU�4y�w-:�"��g5��&��3��mE$�x�K&T�Z��B�l�GK�%(���7������"����������p��p�>|9tK&i��2J�2QO"7���8���I V,^�j��OQ=eD���]<��UK��Bxgb��+%�f"8=� %0h�1X69��!��$����Cã��`RH���eDW^j+���	�I&�x���DdRX��� �0�o��8Z��P	 ��`dv�@$�����l�)lb�)I��H"ՈU�@Bg���B�Hɘqq�p����4�A��Fx����xN�X����šG-H�I�e����֝󝃊W��͟�,u�ryX��`DR�]����p����+���E�8_P�咺@�,2�8��"�	�8���

H�ɘ6�9�A����T�Ǐ�e:�����t�a��C�:͉*Q�T���&g����G��!�h��< �ÌlI��켇��0�,�����tDf>�—�+���,�/!���sÃ
@�d�A�� ����["8Hx8����~D>+��9�L��Q I�.1�qP��� ��� �zX�@Ą	$'=L%S�a���S	��KX�E�2��TH!I|C=d�H�P
9��M0�q��	I(5ȵo%z��Hf `�{u��"~�xv>��y���6��:[�q�n����D�O��Vaz�U��Ƞ��	�-~L�]r�M��A$1)ki�� ,�AR�ʃ�r<��{�<J��.��{��ϡ�� �@~"3�"��$0Ν;�c��y��#��w�eB��w���]��Ɛ��]A��_}M��U���Q/}�y�*�2�=�!nbA�
cMMꦈ�@��&^o*�1G�=T �ǣ���]y�=L����A,�V��r�'�:����0�CP�ި�7��4���a���tQ1�I��RA5R�!,d8l ��P.u��eB�^�^�]
tĦ�\�}?���=lj��9�9gf4{?�}��}Ϗ��%4siF���G[@�%$�	L��M�X[[��Ek8�
C�SX�@����Բjd��<@����%��%��G,r:<��!�<�bZE��P?W��\*<�W� �}~� ���%�$ �
�i�2I-~��̥h~��d�h��3�9E-rIh
�+s0��8m.�H,��X�8���C@�8��x�
Vc/�R��S0�\X8���$�8
I�A#B@�<0@���zh�@n��kI�L�ȗe �`�Ȗ7�Z��$&3/&,�<,������[�n�Q��]1�
�qPD�qQ����GH��U1]�Y��`}��A�BƢ��G�-ӕD?,���DfD�/�E��e�U�W�}ۛ���VUE�=R�s���Q����+�d�k��L@�(��Z��ڭ[׮]{@���Den���Fu@��^�$���J�<�!$����Z���g�}��)�/	Y�P�98���սUnK4j��qF.�J1<��A�$+��<�_Y~��J�?���L�������a(�`�`d"P(1�S�H��$�Lo��&fGF�RKw
�f�y�+dG�.���
���y�A�������r;'�ep;;-i\#8BV�@�Xޗ�|�C)wu�..;	<��P����E�H?��7J[K"�����"UD.�Pn�@@�l0����u����G�d^�

u<�&��C�x�X�,�aQm�	�h(�1�@�!>VsPS=�\|�iǝ�5Y�x��r}�)�'���tɨ�i��G�p]��E�KR��Jr��T�$�٫@r�$��R��H�|m	�x��2��4;k���p�%R�P�J�<0}`�����@8�q�<Ee�sM�s�!��1�x؀9�n�BiyB�;��rwY5�H4�I���2��N�'�~ U*�~�f�x3�DD~R�R̂Dz�h4tS�v&,`)�']�����!�Ҹu�]`���Cyx��#;�Ž�3�T������1t���iL��I�8��4��ps�B�~��W!����r{Z��(D�mM�8Ɂm��2�H$�œGi�	�tw�8Te
�F��
<�'2DN�P�<$
�K�kjQ<臺?~��=0�G� ��a*��"H�
p
Ǡ��m`!e�X��$���A!")���Y�I��!��#��k*�a�\A���c	��e2�����"h���Jtw�Q&R��йԥ��v��hH�(p��A�',�t*;���
a�~�JV�Z&�T�TYd�,A���d&	I�'r9���Y�CD�,l�h�F��А$��V��+�,rqW�~�`�`�H��{j@n�Z��F�d��y�z�4�,�j5�Mh��YU�'ta���w�2R/h�
�r���d�%��82�В$2��,F#�{T�TD�0��$B��y9��+|�G�e"���G�XR���vko��!}�g�mO.$p�,�1��xN!�Dڰ��5$�T��$���ED�y��NS���<���1+&N�:�)pH������"VC���"
��Мx�K,YKX��"^E��2H�T�D�a��U٘G,Y׊��W�w��b����W��m����H#�+ҷ��Cv�&��n@���k 9\�,�PX�H��JI$��'��X���A�eb@z���*��@�cQ傆��D�"�D�z�G(�	�!=h#.��w��@��GLp�4�sK��А#�q��v;�^�wX�D
$(x<�|Zҟ>�����j�(�@�D�'"]��Bŀp�0D��_s���
42%��O��UJ4�"R���!�������<Ё>�p�PGϊ��������,n�\�0�:ǧ��ѹs���j��eݢ��Gb��m�5�ë���c���8�C��D,&�HH���U!��qXghHe΀d�d$|�}������Z��SV�>��4�ވ�E<�7Ow�{&��'
b@���z��W�z團h�u2��-����2�{#�S���J���x�-��e8��'&����:ʼn8��Gl��H���夞I�U�2-m;�a��1x�iD6p�x9x�2����Kj���������@E�Z���d�^99�K@�O1�b@`Wu�M_W�z	{Tnع�9�=�\��Bdˑ4x�L�m��"�2�<�#	�,�1SFB�*��%:a��z���%P�Mu {��E&$b�E�XBE�8H�p���C�#�iD��G�~� ��u�_\vr�U��'z�,B	�vqw���~ �0YF$�$$�q �7�+8���9��JA�2H.O\�I(�`��c
 �'�gL`����x�-.������Xw����‚���~��ţ=� �vz�R��׉���f�D8:(���"�0���s�
�vR�$>���'���(����фF�
& Qm��Xn4���0�h%��O�����SVn��CЕ8��$�v�Q\�h�KP<_H�����*վ���C8z�\5Yē��s�����Ν�y�����֡��a<�8����d5�A�
8$mB���n�ݾ�,�@�Q���噙����#	��pz��P����,��>��2d @�kȉ,<s�p�=RW
&�t�X��i))t��i�@�3V�8����9‘���>]?�c�4ڐ:��5Vxz�C7��c�F%\������G�4���qd$F��]S[����F%�ih����eW��+���̪h�F�,���r&*�b�,�o�;Z�����`�g�9�$5�9�ij�i��B�x_�[oON�����DZTxha%��!S�$?��\-�jk�-t f�f�!$r�10MJ�%�'�¬�ܬ��ͱ1/�L��	
U
e��G2WD,]�X9�bq�#���XxW,���أ����u}S%oyv�c��� Q:�M�NO;eth������d�vz���H��-�
�z�m"%�ӳ�@��`PP��Jr�U-MW;�f�f!�1����ǀ18��࠶�+�3Xd�{ϸ2EO>1���s��
K( q2>�nnP.GO?�J$�߀�=�`����3!0�u�ޓ�I�ï����$H��С�A��g���E��s�"}1$d� B�xH(Ц� �h	�›Z��b&rI�:,C�aD�ó��f��6t���J�����+�X@�%w��*?���WP!;�����6��A�ԼLU��l((��-)�(P8�=-{\Y� bY��~��xH��Ȧ����A�'B"�
���:������}8fP�n	"�4[����;�Z�m�i��0uk�^�C$���.v�HD$񠵱��q{�c���`�#��D����./��ܥ�.��iٜ�f?A����Y��D���8)����B�O� �<���%9d��3㑙PP�a@��"��`�%�W���t=�v��b�'$���!��4|zAOѱ�u�;G��;�G�Ck�M��/�XY�B�Ⱥ�LЊ�����jC�bY	��7�xL����:Ȅ
'y��j��V3;z�‡��%��U��Ռ��mݝ�%�@�����5 ��Au't�N4���JG#�/�[�y��`������@�Ҙ�2x�9̛�>��c�������d:	"jV�p�G]�H�YW9#�i��_�'^��5�����S�	p�GD$��V��ȡp�.��.�p�HP`����D�[��0�@��L��W�4�R�<7|�8ϓ(����*@��SCǕ�yg3Y��K{DH(������s�`pEP)�W�MIݤ���A��(HCE��į�f
{�C�V?����ݵ�U\>����L�pC$�ԭ�-�΃ܭe"=��l��PN8�jG��Ng}�D���;�����E, ��L����fy�<�b�*¼	:7.<��a���>�j�I�QB�><TULX�[���"�1�,@�	�+kd"#�D�"�Ľ���C��aO�y�`����Z�`�����p A$`�C6qU�1s�3��J����8d w��" ""q��=	�
����_���on��?%axܰg+�C$bW2P0�P�~ӏ"XiWU��V&~�������Ph%t�MDEz ȘLŠ��u%=����=��S�	"0�<ƭ�0���D�G"�C#uu+<|���VY�\'w�Tx<�y���������C��6x*)M���0iYK$ګI�&���4L
?�~
�Nlqڊ�.�#�`þ�� ��U����<��"����2�Gv�4l������B��YA���ꅒ=���.!�ȹ^H3`)Re���t፮�H��d���+�<��Y�zө�	��S`AȀ0��t�b��
��G��9�
�:���H(�������0l���pt;����E+�hQZ㘣	\�cA�p �R���"����ɻ��K��:r�gq�L7/�j�Q��y����eU�}�&��Z����H����<&ow'
bp�y ���DǙ[$$(�g��(�.%V�Qg S�o��r�#�0x�	{�A�8	����'<W�������'��"�?��)E+uO�"=1/��/��3��	�Tr��`�*:l��G"��V�@(g�o���r"�ȟ�����z�E@���,���"D���;�>~��H��Á�m�w2d!�	M�DH��W�2�=-%"���|�x0�uZV"���	��r��{����������Y�C���)�HvG�i��D���J��ex����Qآ���٧$H){г��W|�ioɀr�!����K�
$cZ��!"$�$\�*�HD���Ge���;T�A��gZOp���	8R��#D#�nS����?�#L�K�c�q��4=�I���
��G|���\�X�
${��mm�]�h�8a��M6q�a��A*�H�<���S:�������9��"��Q@�A�Ԕ����ѮYEN��{�楄�	�%\�/��BIL��&<8r&'�y��~�E?+"��o���u���:��?z�q��$�cY�'���@���_���5�2��V
�I,��H�B|���DL%��bau��ӨAQ�)$E��b����R���m|TV�Jm$�`!(���Z�>���c��sNNf����{��y����>{�J�1.�O�;2լVA��I��p<�ք�-��G'���(W�#<�UI�"J��E�n�(��y�a{q	N��n���
%.�@�r��[�3'�A#�x`��1J�_����c�����۷n�&�
G:���r�wb ��ShG���׿ı��>'�����9g��Jx�ɾy|@~�=�_<�80�e}��L�<K�[x��fT���!&r�R���3�'B�TAJ�E
���<2�0nh�p���l���8����q���D��H��?e��w׀��
9`hːot �ZO����8U�⌆�&��\-�(d5�\'��e�|n �͇�6�9����(�K{
��H+8�D�(%�H�W>]�
L)v�PgK�pFR95�>�h��瓫�g���Gjѫ�O�F^\�+��3,���Z���'�j�@��	
�\��b ���D��wV(��+^:��s�P�'����?��<�HƅM,~q~�9>UVo�q�5rK�G�P˪N��.c$+�_b=_w�����#�EC�d	8���:��_=���kp0vR:�	@z���Q���qx��A��Gv�����Op�Y�ݲ�JӎZ�1�\�����.���8��p}�<�8p���o\^�E�,"�x%�!�U�D��tN�0�����]@2��Ń����b��_����9������P}�9�de��a��p�xG�%�!�G�XED@$�m�	��)#�A�P�;�jx������-��2Բ$�9t���_�H��������	����n�ֶt{Kq��p$�$׺�@@J2��C-l8���J�@�$4�l����Ͼq���(��<���Q��힭r��&����u]g�c	��T"�$o	G~^GR?�(�һ�1��1J��cy�q.����#�k`T��20B#����	{��y�3,9x p��l���UF!��FhO����BʗА��0'�A6&�mʂ�$���iD�Q�$�E��LLdWTZ� `��F.AI)l�d2Iw�M��x��9���D��/��M��1‡�<s
I<h$�<����rz�Of6����\d����ހ) �u	Eߪ�5��ž��n�m<��i�@5θv�*�|"�s����R�#�5�])��JL�t�U���-K�,��*����r��yy�޿=�T�2�/���ph�zP�<�G���Q�D�F���|現�����^��ʻ�_�U���/I��B����q�$�5�HL^�
5� ��;	$y����-�5�B�6F�5lC}1����߄�%��9t�]��d�C�����a��P�kP~Ш�Wơ��9�����߻6F
J�(Կ�gA�$��z��2ewb�A���ȡ�f@�������H�������/�jw)�.G�2�uMfW��/��U��-�
vf��M�����ns��i�])����O�'���Pa�_@i>Q��7���}�/j��Tʧ�l��G.��&��`pC��8�df/�Ɉ��S"�J��Z�4���J��ttW
a (��a��>K�8xjQ�^�<���@��[!�Yކ����c��C
��"W\�b2P)Cd��"���-�~ę�IxPՀ�R;%2���;���'���k����(��z+L�'^�Vk���E�3ܨ."��_��]�$�,�4��+�����{	 I�	W�
�@'841�C^b=�P��s�%��U�W��%͞1��66���X��$W,2=�N�j�QRԘS��M��a�Ž{��?� ��\����ky���Dca�� !9%N�*T9�T�ҡXW���I�0�
o�BSZJ�X���j�]�D�-�>(:ψ�Bb���R��F`@��S��$�1aͿ/�)5��x���<��Y����Bc����&�-�"ْ���A��}�S��@�w�fhgXW�,`��E��yC��@��$G��D�׸=-|�ϰ�V��=E�D��!V�T�AQ�0�K�N���� �V�$��ݴ�p��{��u�8�Fd���CZ�$Vf�x#�@p��DH����б)�c�+��J�䝎�ߢ�tR��&��$QO�ݧ�oy��8C��B!$i)�е��p�z���<+�I���H2��N�����0�޳� �6��f�_I*�=eEc�v��Z��c��xT�����B��(/�D˴?��|aDҷ���u���j�hr$�ü?�.�H�<��6,$����MF<�wV��_�	m7M�y$�Dǭ��s�K~�j�Oy^z���#]K�X�L�Ac<>$����ު.i^��CL@C�����[7�|:�.�L�Y���(ED�"�-
�,<"P�#�/a

�>�>T��rKM��u�az�Q	_��ax��5XLd<:P�0
�5�c6E��V�|s�H>����5���D�c/����X����K�c�%B��.��c���������s�ͭ"���:~$]��q
��e��23�i�.F�½�4+��X�;өq�dEFpde�Yw#�����6��Q*g�M
���${p �K�{@%T�O��������|:`����i�Z���”i����f�Éܓ1�]@��5���Gg��Kx�O<�D�:m�v��%0��š�Es��/������BrI�Zr$J$�[� rk�9�Ȥ�bߍa�p����<�KO؉��j���69f#��6�:��H�( "b(gg��!��s�ש
2x��V�&d���3O�xb�,�p`s�$�s�G�κC�g�?��s���42͞i]���W(1�5#r��P�8M�2��3�f��
��&��A�Ղ�ql���T�g�T��ꡧ�u*���‥|��<�xdy��t��#F�!pз����%@P�X�{�ջ�}��ҭ�n�z
�Gn�.�0��-6���*�g����iN���꺴�a�4v$ڢ���2�X`ʐ�Y���x�gݪ-�oQ����~��©g��E|�Ces��ʬK����qI�ZR<B�Sሾ��q�Á�Y	,qʺ�X֡.(݋@'�aj��P��~L���N��Cv-��d"a�5kp�H�d�}v�fS���e���6�S�m>}����	A�
��b>�����X<�7 �Q{$PZd���.	I���H+Ï�_<�U�!�9"%��=\)��\���_�88��wL�R���S|�;J?�|���aȇQ��G�QJR-�?�q[�`){L���=z�W.*P��{�<��?%���vJW��5m	Ya�4�)ے),)H�������^��sZ�%w����z|����U��x<���dQ�y�&J&ژ��VA�� }��3�w���KτY��5![�u	����@��$��:���b��$�_�(bᚗ[0�I��H�l��CŃ�cDjn�8�@�M�4�́T˟�X��jt�|���_��ÙZ#yd�
�TL���}�����fnu�)g��Z���y�E�F�T#`F�X&8d5���8�-�<�����}�o�	4ģ�0���n��n
��S��L��eӮ_��i
HJ�	Ѯί�l��?�k���V��&9^,��18��j.�
�4T�&Ea@3�ݞ|p����y}��T�[���BRZ�$[q�H�Q<b����8�ndǖ9�Vq)6�.��F��MJSM;=�7�{7��&�!��@6�W{�G,�W<��N�[Oh� ѽc��X�sTF���G�e9��i*b��%m��Ɍ��-�A�< ��&�x�[J�E�s �U�L������n���Pn<{��:�]&�I�Հ|��ŝ�̨�D[�^f��ۿ��)f�n�jĊ�kD��G�H�B�Ó3��fŽ�J�|�����&䦎���?�[���Į�m&��
eyr�c���hHk��ȷu��e�W:��P6�𖝩L@��hx,�md��D��+01�G���3��J��+P,g�M���-B�#���,J�������p� 
�z�r�C�A�Q�%9��/#��@J�d�a!9:<�qT�cVU�Kn
^��-��5��2���bM@�e��j��䇎X 9���*5�+���<d��3['�o�^7=}�Ŀ����#�^Z�+`�2�x��Ҁ���gN!�	��/��@�"�:��� �:B�N���=(��B�55{�)9��2�,* �lA=ڣ��ɼaZ�$�E�L��Y$t�5��/f�ж�<��+b��PѢځ����_��|�͝kI��eV��j&�`5�V�Wv�$T������K uy�a�|$�e����k,�VxИy&��
F�;���pD& ���	���*�`��$%}t1n7�
~D;<W�c�+��֪^�F�d{Żh�7��]6�PfכY5���C�R��H��f�e�\)+����z��=��G^١���C#��q2o�-${��d 1ԃ�j15(Aā��{��~���Zf��m�m5�qo	N#���
wo���WJ4}���`L9$[�x=��u���~��ٛ�Hٮ睹UR`�E3�"?[!bc�G�kΒ��@eZ)�x�&����c�3�ۼLJ�뗢�ց̑L��ƪ=شC7��w�N��S9���h4�<x����<����٫)bQ���|W�N�K|@��-RO�<��p���oц���R�#��x�O��G��?k0�o�Q^_�䧉��?��
�qOi���~Z/}����:�t_J��(%��w�R�5I�JQl$���S�e���u\�+{���ɭ��J�	r	U�^��T�&�4*�u���
�Ј�`�BY�/�Θ5�(��$�$�DA��A�S,Q��]
B�!),)V�	)"�I��l����R�ҥ�^�'xν��r��쾙�-����}�VV
��YD�M�{���hr���S(Yɺ%��@Z��왤���j�l�p���$�V:C�E�+]Y���x?ɐ��KH#���H�5�8KKY��ۚ�S�s��,�����GR��ٷe/JM�����L��J�ۈ9�g�	D()~�,Ɛ�����H���[7�/'�t��f$��
�<���H��pڂHpi���귞R�V�7{s�`$������Ջm�Y������d+�۱ "�@Zu�D�����Y�QU�z@ Ѻ�N'�@�F[ѥ�����
$] A�ѵ�|��X�U�D%�"4�H�:��ů)LM
3�!�k�p	��G�FO��y�ՒÀu;����F�.r�Sbǰ�,�!Pl�Fb��%,tF�l�;9"N�E �M$����:��Jl�i��b(���(f(
2)�(ξE�<��% 2E1�A|]�:����oa��ܓ�{�W8��Ѳ��g��7��s\-fן% 뢦F1�x�DD�\|V5q����[G���_�L	�/bFޡ�[l(4�lx�JiK����A�S�;�)�p!G�hT""v@�)z�Ne�>��jA΅@�P$Y��,�T2Aϭ,f����Op,K|P	�.@����eJ�fGSu�'�$i�7��2�ڹ����,
i`/N�VedXl2�0GE_��
�/QI��̈́ŕ��ӹ��D8��hL��f���P(��̩*�,0y��y��8�Q�l�~��eS2��f~�UdH�&��K�s(������,es�Ѹ��؞�C�ҾM�)��a�c錾��jXWDvǡ�bVH�;�d��K@�~�P7~!��)��'���Df�∉��ևo7���[����ݧ�(b��F�V<�`V/i�i����;7��
�l6>��MLO�m7��B�Qpx��=V�\�q�#9����l%�1t�m�_A�œ�{+�Γ�k��c1P᲼ޟU4x?;�X��Ø"]���3�h�><�\��@�ރ��B/�F�%UE�)$�	Ņ�r|l|�ڵG�ks��LL|}�����������K�&�7�d��&�U.шy�rB����js�ׂ|�I��(�kum�f��
۠�c����W2@UvYg�O׵�(�q�+��ةY�bK7,
j+��r܈�h�)	#Bs4�^��[
k D�=�Ha�l�P���k)X�C��C����3sԂ~;�x��������ܾ�;6����n���"��x��c�a���6�������٨� �0�<�t�1�
��G�R�Ӳ��y��\����6�	�14�K�i��-�Z�X��"��H�0��5�W�����)�:�]^����ْ�@J��2��1_��"1�'E��#���{KS�ӹA�H�/��s��,�J�b�}�wg��iu�LiA���FG&���s���|�L	:��@F�\�#/��&T����`�1�uحN�v��J�)�r
+�D�у��WĆ���A+K�t��N���wk����5ڙ�)�6�e`�/����[ƅ^9{��~`ĥY�G�%�>�Mȃ��ߞ����.{Ξ{ǫx#�~���P&������/�-�ڷZ�%�2�)��F<�Irߘ%5Gn�~y��
}D���n�ݎ%Vg��C��C�@#�
�y�sCCnߤ�#�l0Rt�P$I���6��G��Xl�T1�#�:���5|Oho���;@�`�$M��=�]���(��߼��@��"�<��#F��]�D����P��+gy_�g��!h�ʛ�Prݽ�����}��]��#��H@�5^���uk�㱏o�lw�&�w�
V���Hhi�,Q7��3�	zE��G]B֋MHdI�5 .5߿)�#Z5�e�ytxY����%{'��˒�T�$f%-��
�ͦ�с����]$5v�6O�-��ha�{;zfO��R6�V�\�v�ZU�՛�\�\.��8H&�������;HؽtI��m�j�qu�5'd��v�q��>��[���X��*;�|�X��k�#�Gω��
��,T�mc@�@`8p�&��D�#�jV��x�����L����D�..|[��5
�ӹlxt��s���@�V���&�Hk�-2@H��c� �/^�NI�[�������U�a�m|#�Pu9<��� ��v����هd��P��c��_p�B��}[��OQ'ı�����}�X��\��Ùwr���R����|��^����Dl��>�H��dA��ٹ��K�]`����&nO�-���	d��]g�=��F��`��m7�
B{a�w�(�e���C��ӌ��"�,�HB��D$�9	1�c>�O��Ք�6��&�:���g�T�����Z�AC&��O�J9�K�`!D#jh\����rc�e�=_.��轍x]5�Z�!�JL���<EǛ�8z~�z��߾�3����,-}:�]��ʼ��ޣ�_-������M$�uҒdq8�{��ŅOO�:�l�ml?S��������\�d��uC,A�W
�����J��f1��3/f�bϥĴ�RU0qk����au:MQ�I*�D�.B�N�ꃠ*>��DX&GgW��ظz�T����u�H�.>0�}��Ũ9��櫥�m�A���йB^�,�=Bn���g_N�'��+���N�kg��ӎ4���_�B79�ZU��$��BĈ�H��PH�&'�D���
H����am�قs��o��A-�IdY%4�
�rx��!&n��ϕGJ��
k�"��$J�p3ӗ�$ٴ<ٴ����ؚ�oY�N�=m���a���I�
ʪ�t1�N�C�~2�LFp!w�
'׳���V�c�=28]7aѯ�bK�/Cc�7Z
'�A�E||�7�O���G���S,`�D�ꙅ<l�ڝ�K �+����{b!�(�Z3��w|U�2n�DЪQ����o�[7^�X`�щ���3;�o�mU�o�Y�AȂ�E
&#Q�C�=7�NL�D۸����
D������i��b":	)f�b���p�l���d2-w��&��d2ۮ�	�
K�t��%��#�\B��>.�BV��#���@� nM�W��:>}��Mp�&�TY2��k�2�� �h�_�$�a~�l�(�"�bN��)�	]�6�X��ŅL�Y;����鲴�����Q\b*��UJh&Ӟ�ʓ�O�]��81�7͌fQQ�f�#J	E��?���z4q���G�B�Ly��6���L����Ls��{1CO���+�+W���k��E�F�h�H����&��2���s2��2c&�2a��$E=d���`�9$���^�H�R6hX�!���\�CY<� VW�$D(��R�A=x؂�����yg��>&i�n������<o��_�PH5��Fď(bi	~���p�qB�T&���K�K�
q�n�ܦ�E K�mc��H��喷_#�eo|�	�M���]$F_��2lkM	K�".�Ӵ���!���t���t	$�DB��m�KG�.�+4Vۗk���l:>�vN��.�6�Hٗ��p���f���^��R�����[���Ws��$
Y���˛����e��ݼ��h9��b�䤇s�z�W�`S�N��>��"��
$O��\J�6��_ݞM����?@b�p�l�F��p�ض���q��vk~eZ�GAx�\���%�<��wŴs(eyy<++T]��lWT,�M�2��Zͦ؃D�h�����e��sQ��SeI��͕|�2g}ۛ�f��w��'��嚼���'�G
fN3�H���0�(~L��`���"g���Ƣ�g��~�y|�e�X��J
�q?~��䧟ԭ~�ps<�"�0!eѠΧݵz�Tjڈ���L��q�<:

�h0�6(�a�$�Q������h�ДEs���(D�W�enR��lʁ���d�"�����R��CX�Q�����3�<�%���ZZ�%?#_\*D�F�M��/�9m_+گ���ρ���{��
��b�ԺO=�])�zt]w;d��j��Ҵ\.���
J���jM��L4�S���Ce��t�䶩'��Q܍�cZt.ϸB��ZO�U�-�ܺE�>?���!-K�CM7�v�:-�8��B�GF)��� ]"��;Xgs9��MdmB��� �q��p�[�m1
{��m]V����]�2��FDB8O!�2!F�S5%Y[��E�P��i�)��O�By�tM=Gp@(e���J�WxM�_y��抹��x�Oo2��F߼��hz��m��AS��/���w�ɟ]y�Z�����
�����K��t��:2�`���&�ss�T��͛�v�,�:ۃ��tL9w~q1�w>�-�#r����y��t<
�d��c�V�ja��,ҡ�)�z�΃@��ƅ$�Id=km{=��2�\T�M7�@�i��<��c7–�D)��Z��kJ� y1���e�.$�o�B	!��)J�<��-X01-���ӏ�6i#���G�nr������a��䓋����]�/��rX�E���%���y˯s%e!��D�EH�4�zp������8@�,�`-m�J�V�Úr� r��0�8?�����
9?=���]�r|(����"
��Cot� ^��VA��} ���D6g�c��?N�ZrR?-�yL� ++�@QZ�u���8�e�S1H��l
��@
���n�)�
$�P
y���$���E<�(=�	v�Xm~Eϯl������+y�=be&����ɝON�B,t'�(-h�N?<, �`Hg�Q�*-����B9�@�r&g?_�6x0kש���q��:�Zwm�bFRU�&?�>!X��?q)p�~�ͩWm5b�r����K%n�!0����D��@�H��%�0�S�u��2R6r_!V����
�-HXf_!d��y�Ͽ��
.�w�@�B����Y,6����C�S�14��M���m�������2h�%�y:�W_���zg�р��dr�NO_|�c�|am�۠`w��tT~�\����T�*�S�+�L��b��z��z�1�����1j�N��h�S�UK���Fr&e���d
$��?��@�[�#�PV�74�UW@��~��tY�����0IX9@pu� �N� ��Ԅ/�R" ���<`
�(d�r�N��)��W�Y�5��C$ĸ�p�r�@H[0�M���18;5��k��?�o�P��#yZ��W��8)�svכ��ְ՛�y�£�ݪe2�ómX�mP}DmA<d��Yn��,�N�Z�����r�����o��U�.���iʯ�l�vˠ]md:�yDHƂ��M��;yKH����R��_XPT�(�w���߻w	$���O&���4�Dh( YxH��Fsb�^,چ����j���#D(����%[�رUXZ��+
Ű�%'!)�n��v����n�^'�8�C�A�g2�dF� >�����8�����A�5Z��숹�^�:��t::���Z2�8�F���RЛ�|�̙�Dtb���m"V��PŊԒ{So|R��B:��J����lخW9�ۓ����8�\C��Hnz��鬺X.'�@'�IK�G@N%���� "�0( �@y�O'A��(TH\�P�pt]Fe�s����7��Y{�A)F1��)��p�sEr?YF�_��+p��n�1T8!G�:F2iDE!����̡D"��F�þ�
����M�1B9��l����|�9�vi��"@N?��r���������Ww~u�{ak�,Ҩw�ZT��e�ąBJ�'B�G�*�)YӋx��h��[$��� ��$��.�F�D��N�'��pgu5��H�.=	�x�\����)Dތ�EH��%��d&�D_R�K
Kf2F�!���Xqi�-�]����c�	�X�@�x�l��H�uY��ڐ���"ؾi'�Q
�
���$U&@y
79�88��7o�~p�)X����|��R�T��N��і�H�>����u�
IV\'5uñ8&pB�����WH|��
���=�|�w��o�:p�p��y��V��R�>��|�WY~ϣ��(�sr>��&�r:�F&�B���~<J@d��p{|v�ރ���}�4�����A��3��e��7�,�����#�Cي-8�ƅqj)�!�2\�Z�7��.�&���j�%�f�H�?Kz���I�澝e2	p>��������C�ǟ]k�Y
��F�M���J���T�o��V������fʧ
iZ�]���o/�;s��~ ����BQQ*5��E��Ώ�o�R��|����t�k3L�V�;��D'Ui2���,r,���K$SJ�y&\sq���AS��
-�$���+�27)�M����G�j6�dŖ�tlTED��
��M��>8n�V�K5�`�D#h��(ێ ��]05�¿3
#{L�G�W�P�/a&Q�����>(����.?/�vZ��Y��fۓ�Z����o�lAĈǍ]j,Fe쿱���_~�1��<}b<%"��K����M�g�Wu�V��a�� ��!�d�*I�'
V��U�?��u�f>�^�]DdX-�8��U��t,������|"�o�O�~_�TH'"%M&�8�d	Ib�F�@R��镵��]5�(��
������#;�(f2�nnJD���nJ+XYs5�p�FT�zC�wk�"^3ML�ٹ(@2�?(��www���U8(:_����ܾkպ2Өc]7�v��a��k-�ɤ]�PEX.�r��m�-��یFi���Yi���4�C�^e��ɠ��u}R/�4Q�NO(��#�ތ �H9:jw:A\���հ�m"8b��{�5O��B�	�	��9\D� �*�i�Bv6�"Q��$nt��Yl5��nHԡ�0iR��J|�x����fQ'�@TGp�h��H�e���bY�b�����d�`��)�BѠ�Ԋp(~v�{��L���xAh�4����L�߷��U�v�s��j���v�w�d�%o��l�e���v4@�
�4xH��n-V���=
�C�ƹHd0�Q@��V�.�0d/ TT��|(��} �}�7��K�¢�0�y�Ze�m�p�oOF�>��
�q�&Xp�A�N���D<u�ˀȺ��G�E�ʼ� ��,�x�Р��۩��Q6FIt�c�IX8��o�E�0n�ۥ�՚�?|V��=β
�8p>8h��]5'�}�iu�M7���|��Z��_�]��6VX�{[|�Ь�l��ի���P���k�"��[�N�C{,���U�σC���~��f�=IXd-o��zC�M'3Rg���d2 
�$���U:L�۽���~�LY���K)�̮��*׳Q��c���
��f*��s��ѯPR��TG$��O�KvS����4tԤc��o�DnWiw��!
�K,5�p 	��݃���L�a*� Y�ئoE:]��:d�{�ck�r����r��;�
g���a�6��|�H��d*u����ߺr5y5�\
�R@ ���,���R؃�Cz)�@�^��o�c��E/>:�M?:��&�j�`�D��}^���BҤ,� @,�L
+u��t0^h����?�ޒ�Q4�8�.�yL$�#L�\�e�%���ӿi�ܕ��^��h��멹9�G��R�b��7�N�PiJ2@2��E`����2�]�fhP�w���5�G&`L�v��l-��/8���^_�&V�Hi�|��[��k����l:�8����p�p��s�֜ﯼ�֕y"~e�
%�L�̨�$� �( ժߟ���'q�5�Jv"�!v!~r&��?AcЂ�3(�
��d��7���Z$\f6s5鏔���>E!|
X!e]�G�WK�?�.*����0�	w�?��駟��N����q��R���.E�l1R�:ɫ<4�)X�4%W"��S�I9@���Q#�ZB�8h	��;XE�pԪ���������u�@�Ȁ/��~�´ƪ赽�`��/�����n��7v3	{94jw7>��-�`���
�Y�%�,���VU,��=�G�ӗ�l�	W��j�E0N!���E�>���o�!���n�L\
���R�_��h�y�I�m["GBڣ��a��dc��+�T�\�)4G%Bb�38ˬ9ۭD:W
fLO�Dܨu]�%-�*,��f��76tse���
�@�cz���������i��I��I����ǃ�.@��H�]{p��C����yi���_��c�ͅ��, @R{v;�����o��n�;���`-䆂A����\v���A~�(��(��ɸ?�-@���%����6?�Lۥ�1`#�;��v����'�- Y�.��w�����H�t�VZ �:�b�X+fz�~3��P����#Ȇ݋ 8���e�a�������#EB�	駳g�տa��$�~��
���ut:�lW�o�%7�0��!MMr���ICK�w6;�y�$'�z^�v�K�����y�>�6�sv�y���Rڡ5��H0�����7:F�1"|H�l:�vy��X���"���Ba,�=J69�����3���^�q�QE�@�x�MMY�g@�]V�Jn^n��?���{�D���]�<�����+�r�/=ד��T}�.Rξ�J4�`�Z@�*����-r�:����0H/@�R.A�`ˬR�@���FG'��#��!-��,DV`w @����: �1#��
��ɖ6����[X�X^a�N��L�����2��`�?�к��q����	�`�	�l�M{oZ��J�RX�?r����Z!�@.�IllQ�,+�2DEU?��XQ�,fFR]����+�~G	��	���J�&��m۶55�Wn���|��IOOʔ����;�FG
	��a�8bKy`�aq�ى��>�/� �!S+9)2�p\D!K"1uv��X�#��\��ur��8$м��#9��|��CZzI�49	��W�Y:����	"V��TtˋhqY@0��h��9ۗ�⮍z�Q�)��B<E���V���a�q�X�!��;� �kȬ|"�F�Cn�w8
)�W2������1|���3?�A*�IL�a�X��㯜9sn6D@�qr6��������N,�L�.�&_����,<�w_�˥3�R9
���F�߁!+���V(����N���pbJ$&�R�a�)8�/� mŰ, b�@K�#�LD�n�Z>D���b1$4.��@�4���!+��,�8a|q����� 4 XE��H~-<O��#  �8�ţ�>�.���l�5;������4��
&I�_��+V�b
�DY@�� L88��I�DR�⹕{��ʙׯ$�(yO�bQG�"���ޖ�H@����B̄��8�i�l�ED�[�CI�BD���g��#����,Hip`2Le(��Z@&Y��-��9��f��÷�޼q?�	��p���6��V�
���9���J�=aa�0v���,��W!`ԅ1��}�qd�~f�|x�ޓ'�{��EV�SYW
]��*{0��f��项�ӷ�n߾=�����]��5�˧7#�b�����.-�K?��P��a�/�VV�}��Q8�UJ��LG&k�ߝn���bq�ȎL�2�����^7� �U� �XE�)���L=YP���$O%(���ʬ`D�(�L$�H���yx|A��D���S����M@N9m`1�t�$����/@�k�kD1��A9ܰo�Q݈/���%��U�"�	ϻb(�*�_U��]�xC4PF��RQ�®�!R%���Ρ۷�><77�y�Rq���F����lanx���|@���������{�?�+E��Z|5�u��#�X��z����|�u�Ҫx��f�Y����|Pt�+.��-?�r��Q%���|�d��H��`SaI��G�IdxlL�Dcig��]����:���[����|��%,H���]�$s8�(�)�NΆ�#�x�ɯ�"u�?e,#͐e�dm����A.ad�@�2�nK9���>��ï|�d%�(w+A�x�P+�S����#4�P��v�R][���h.۷e㥕�{'���\l�B:�-�j�t��.-�Dz��nt�r]�
��Ү���ل�CtH�c���d�Z"*��FU��R;%���d�*�9�$&�\S���!~l| ^o4��8{ʱ���"���څ��O�fPl��.�"t��I���M��ҎZ��M�:���&U�4��ɱx善J���h��8�ħ-u
Y�(���E�l���J�ҽ�����=Y_ϝ E�����|�p�,���Փ��BH�d����T�}/�Ra�yWב�'w����d����x��p�⬵�H��O�=5���F���)�YD�]A����)jI�x�hd,��!@����BD�wW�#���� 
:$v���|	�%�h��k\�)�#8�S�q����DCJZ�U�_�-׆A�>�f�B�DD���?oม:$�C|��Pz��[[]�^��.�v"6�P^,W����D�c9g	��9񃏭$��(!����b<���F9g������ ]{O�;�?5�͝�KG���p��ײċ���(��p�U(��@�H�*@�#<��8;�:!`?Q��P�!�H���Ȳ:@�-��٩F@Zb|���.�P�C3�I���f�@�����RQ,$� �����vfIϐ&��a�d��<���AW�c�J�$�
�NJ��V���u�%�RJ�!kk�����?�ˆ3n8�1�8{�5A.���|t�Hڟ\흝M�s=��T
z �5.@w���%�JZ2��#�E��e���B�	DK��C�S�J�$%��3�ct6�g�Bd�6����nw��3-c�j)�!H|�Uy{{����	�-P���P'�7� �+���xn*'�}),�/����6�i�'���H�	�K��$@$��n��ٯk9���l�\��$tH�t�]�]��� �d���B<�
ei�[Y(����^88�Jy|��@��9?�J�
n������[@X��01Dg�ax��v*��}a��GQ;\1FV��;�X:*?0��r��p���'߲Yl�R
"��:�H4B��.�D
�G^����@v"��(`bp9�#��y��ǃ�7$Í����i�*�W��s��j��kk�Z![j%|��w[9��3GK�r�S>�,^�w�'��%��x�C�i�/!�=�{a�G斺F�Yx����M?\�?K��c�IT�7a���F_���A�TT-NM�*� �@pi�C�Da1m	3Bz@��8���.��#v���*�y- &۶���楑��?H��x.&5_4/�A�*:�)x�<��^�[]{�V�l�dU�yw0ܼr���O�B==�>�|�V�g��ݎ9�%�
�H��*���Ef�!=;zH&����p��j��L�ۻe=� ����|h6�%Č�adUOѲ��,������Rਢ/��$�<o����miY��>�ߨ�=��%�:i,��t�8 �z��6
Gu���jP���#��g��M�I���E��&��<�ز�@}��{���޻=�V�t�C���e���!==������8�D�2�Ʋ!qȴ�%�;��R*�F�0�M�T�r�{�����%<�I���$����ã�q����]Q涥��a�C�'FDJ_��)���$3�G�T��p��D�Spd�Q(]��K6��tֶU3��6�].i�|Ӱ�l �dK#a'�"%i��6��ҥNi�x8��
ߥ��tL�>��s����<����A$�5_Y��1�;V>���!���&͎���s`b��ޤDV!��!���+%2��a| �*���k܃ܵ�"�����h�<�^��P\c(�D~����[hH�`Y�e�ӎ�~��D\h�P8�Hh�@-�Ll�`��؃x٪?�6	���]�#G���Te���i�^�ꅴ�
�l�v�e�D�2M~�W\�E5v�X��ܼ��I��W˔�g|^}�
��v�?��w~�ç��2�����gN-&d��y,?1q��7��b`r/��Bt�����Tiy��@{׾����z´`��=�+�<}���{��=�����Ը<AڑN�Gl��pWr8��%���a�7���t78R�d�s`m�H��h�%�6�E���������H�sn/|���]|jC���ӲS�h����Z������yTHDP_^��!0ue�0t�(���R��
���,���@��OW
D;���=Z��
�v%�����}{��Z9Ux���X��:%WV(y@d���R]H��@��s�NO=x�׿���� 
�/��/7F�⾪�p��V��yG�-&9۔�'[��q@�Qc�^��H�B���������Ƃ�%v�W7�.�8��<;9�4B�*:��dDUDPE�+��{r��K��ș��`&R�򅗰����S���h@&�vu�����Y&��AeNpX<^�Z�f��K����!U<d�EK��9��o~4��%�DN���d�-��×/�J�?8��4��C |��)\ ��B(��\�>�!�L���Ia�)� S����Dtv%��9��H$߱���K*7���J��S���u�D#y�����x�b�	�V��^߫t�"��=�h����C�F���
�yG���JB�H{T��҃61�I^�i�ݭ���������0�4��u�&C��b�]��;����c��H:0���Տ���g{;�I�I+���؊����T2�p�K>vy�X�F��]
e��pH׾6}������� X[|$��M��
;Z�;8ϒF���y��.NH�Š	�no:�D��"��Ae��ў�O�#��3Zj~���A ul�0�?�/��Pl��	��"�KB�l��Cqq0�e���l6e�h�T7��#��.wu>�:i-NA�"c1��W�ѐןz�����،$��r��p��IVr(���{��l1�M�q8ogs!�y��T �,.����o!��م�/�|r��G%c��p>�H�ً��>}��ڵǏ�W��_�I����T���jrc�x�(�Ϛ�G���3jۧD�\!i�����"��cV2J;�<�Q��vL�M@:�e7���6Rǜ��}�yX���@�L2��>���bxR:D(BKl'�:��׶I�L{f�O��CT|�s�!�{������z_5
��|`�;�c� gB
��:J2�*;][�b��LuQ�Oy2ZTAaB����!��
._^Y�����T���#��D����㯏�%O������&M;�)S55��^Whtg2�,`��U�oV*U^�.S�DQ%1-���;ݔs�$n�
Kn�e ]��(k�F �AB	RV�-q�3
�p�Z)2��)�5��
A��;�sp ��
��U�����(*e��A�8��ԧ�~`$�u����B�,o�):��ߍdӸ�+����>-����:o(�0VV*��z����H)5����
��O�%֕�w��
�R"�?%�D[��}$��0L^��f�w�GV��=�+�q*ɔbeFcS�{	���F}8���A�tk�%9�JjDz�
����j���	
��6߱�A��R 'y�V��Di�`�:��*�����j"�"��m�O�Nрt��Ct����t�U��1X�蛞^�ղ��>8��٩�Bv�wz���|��)g��*���䮺����W9�P��N����}o��z��7���HJ]G����WD,��7�5�<kaϴ6�*oС��[�J�!1�ϟu�!�#�M�#X?�%�fȆ�4��i���<[�@�};���$�F�eh����}m�^��L�!/҃�c�K,&u�J«;�S�5�Ô�K1?_�dx뎖��z��k��+�����h/�V#���IJ֦c�>ێ&f���!�X�\���')�z۬E�B��t#�"����l���>O^�C�U�k���f'.>z�����=�J�>Q�jO=��{}.}qbG:�t�8��N�v���J�!2��:��
��>��)�����b��m�Cu_f��P�:����coz��u�q��y��‚�V6��0S��ь}�?t�,�Le�tBn�$��K:Xi�=�;�H$�PA]xޫtm�/���e��-�
S�1�L�I�&��zӫӱ���t���OpR&\s[������C+7ó����v�/�P�P�����w��z�ʫ��� R''�]�y��o�S����Z(�I��ۼ3�JN�A�Ȯ7>\UT�24[?���-3�]��(D�-ĩ�E\J�е+}C����5�	<]aU��d�i ~���}U����G�#���\���7R��� ��J*C��hN��VӐ�vT���0!�(�@�_��Q�ņ��؅�x(F	��lto<SΤ��Hh�4�[�Q�K�)h�vTB���0
��غqM�r���sQv��	#3�UT�{��f���}?w�w͌��vBW�=_����T3�(��Dr���!f�0�t��ՎM@�[�i�ķ���"<��h�s,��e|��*'T{�E��]�P�"Z�'\�2�o�	32�Ū���\1~?d�x�ON�d�+d���W3Pmm2j!�6XXX)�+G1�ֲ^ȁ�)�~�g�/�V�S����+��:�-�����ɗR!�Dru�#je�Y�>@���dxʲi�kx�>��l�yD����UvQZ�B��JI)��|�Ѭ$��Z�����'�/1�y�� Yl����E�Z����m+@l4�)5#(H�b�A�]�t�&4�ŧ�D���(�Y87�v������J�m	K�󋁪
6=)&���7��o�S��+L��k�/�(DA��`��H��+S�=��ٜ�z�S�l�r��e��MM>�G���=-�(�0�j5՚�ٵ�pap�4޽�Ż�CXW�[*�a����_x�Mue��>�����$.�[fǕY�}�N͆��`��Y'NVOy�UM�����-a���:��
�[�U'���.r���2P��8�,��5
�>1���ۮC㸳���:
n��Ca�{�q����
�㘈����pu������~��?��UW./���#=_#Mx��s�qj~1�HщP��f	���r�)�;������3�9��)�
�w��x���.�rhq��3�3�RO(�m� �p���w/3��/�Q0���,&r����D�X��K��+�й�W=`��;Df�.�h��S�f���vif��QԸ8��5��5��)��8��01d]2�J�ќQL�FDN�d�6	W��4��2��X�X@DP��k�����ϛ�J�R~�wv��r��AT���c��K<���W�Y�[5��P'2�]�k�	�M�b˵K28��^e�=�.#S-H="��ΥX��h(���9���������:��@����U�D� �f�?o,,�Z���"g���p�&vy�P�PH��@�f�`4��T1'ۘ
%��>�(�A�#��T����ь�>�f��g��w�$�̑n詪���xdD��Q
~j��L%��;�w��U[�X������(�q&����\�…c/2�;��\S�T�Y��^�)@I���2�i4$����Z��L�瘢1lR9Nn����C��g�w&�@2.�8U�9s��T��~�)t�/���}=���Ǎ� K�[gW6��^Gey�-=�R��}c����A��şoI�)�Ce(2��i�(/�9�Q}
U@�q���fP@T�-���ir�l��4x��	�!�
�	<^d:&��X��@��nRO^�*5�~�YK�ű��|�7���	�rz5�=L���w�Qv�H��0��C�i�ڰx&+[L� m?�'=��`0{�J�J�$�ڟ��Mo�����3rM~�#��ǂD��O5�D�!*�
�.0\�d�[�R���<�SL0��|8>����=%������^I���G%Y�
�E�0��?��ȯ�� ��!ʦ����%����;w�F�+g�WQ�t(��EH�<r,B��Y"aJ�Za��A������o/�kе?�E��t"��u0�P�6̡;q���	��_H�a�1D4%�挤t��d��'���U���0i? �k���ɪ�㦍o�>F?.��SR�BA��Q�ڐb��B�z�/�iSM��f��є
�l�5�#���|'���:�#��l/h�
�L�qX����+��WV�Rr������Y�LX�,v8�)˨_C�;�ɷ=Ɂ#'e�R�Z�\LH:��j�J5�!L�`�f��
ʭM�
j�p׏g��81���о���j�ґ}2���z��B��:���
��0�3z^�P& Ӆ,�l��ĭ;�I1^�� �XdT-Υ��ɰ+�CF�F��sn��%6�%?DC���k"���b�P�%96�A�� �s
��~���Z�*�n&��R��N-
�	7vF����!^�S ⍌�q��0xȦR�yA/�,F ����N��d���[�`s���7��}SC�oV�@�(�*7�V!\Fڏ���_<��9D�-�j*z;0�x��'ij���$���	��,Vd������f��^�`dW�.v`.t:RnE�ӕvߌ@	�{<���Cwh���� "����Cdaݿ�RW���4s�����%�yX@�$4�@S�i2-֪Ձ�]D�K)���H������@�(|�y�2��{�-�E�Զ .jyR.�5��N߆�P�D�g�R[�ÔW��N\Uaq}����o|M����k�kL�:;q(��B�zv����~���������c�.��v��}���|'Km�8$���a�؛��Qf=��2fW� �I�O&��R�11����|$��+��R
����dB�L�"���J��k������q�Ȍhw'�RȔ5��L�f$>N��s^Zb��5��!W�:��G�%�0}��(�5p�V7^_�v?E�7I�0BZI�N�3��U�k%�k���w��o����k_��[z�EwT�Z�uS�8�X*��k����.{��?8N¶](��k�00�~�xh�M���[�kY��覭q���p{�$@��� C��H��|~
�+����nr�ݻ��wUI���s(���+���H,Lp?�E�X��.&�P��b~DUY�i��rI��
s�!�λ�R9֍	B60Y�q�A2��DG���ц���	�"��n�L=q=�WpX@:
 ���̣T9��������w����{�{���Mc}P��,w
0�%bC���T~�/��ؗ?�>��,�-"=��W!�p��_>8~�RgH���� 
�G'Dq�4Z-�4�
P��̤��CJnYV�ک���f�>[{��PR�2��w��� ��ʗ3Ή&�Q�p��&&��J{
L�E
���up�P�h0����O����]T%MC�H^���h��&CȲD�H�& *��hJK!�G��O�"v/�KKV#��s_}8�?�����ʛ�/V������#���o�	`��%P��#o|�ر��`Tc��z��p��<W9-�0�S���S(�u@T�=�s��q,ʗ��K�
����l-&+)O�҄�h3�O�z�brBMev ��u�������!�6�Rp�W�@�+��46&��Uu�"	`��8�"�a	 �|��d)��f�G��$��A�	7pZ�o"�:�̝ۧ"�B�!n"%����+2�h�	�3���e�M@���-�z�����L�>j���#o|��^D�p�?��1���ȱw�!�
m�i?C8Gd��ܱ.���.��Q�\h&af}&�dJ
���0	��;���A�5�!��EV���D����C6�4^��w$ �̤(P�Q&)��ѩ�������?mb�{W�DO�>�;�}5�m��Dc��n�:�$z��Ed��
l�X����C������p+�p��vv�;CG�����Ad��—_��p�����;�l��'��Y��hs@��^U��y�`�����8^��^�#���rD5�vv:�,à�#J�_����cE��e=���j��B�<�x�Q�Qg���7wB��KRn�M@d+&�n2�������n���O)Ƕ�PK�;�Pu����/~����14�;�P/dv��a��������S▿$n��]�ї?���Q"\C4%�A�Qr�(K]W����dlbn�RS��lM^*�
��P�P��Ry�F\�z�*D�p�w���$�,@ V�W� �{WqoT��
�c�qS�. ���!yz���XM�v2�L�8i�u3����-���Vs����~D�K�N�}:��Fo��!���ʜq��."�5�L#�	�?��ǿ�~��0
zs�B�����i��YuXj�VW���@�k�)= ��W���abj��tS[ښ1�W�Zœ�?���H0�� <�2���:
H��U���i�ΐ��T
�@�Cl6<[�-;�xH��8�wUQ�	�_�F�������:�]N�L`>��掽ޖ���k����X��4SCe�i�a��CfQH0��{*Ph��%�
���Q=$g����
Q�_:4�ŏ�#㍷�z������ܓ'����i�6g|?�K�/�ba��ުs�%�@0)�X�h�Prg(�[H�[�̄e*�`b���lٓL���P���f!�0�<,Yn��x�y���T$:�����q�IJ�Թ\^֕�5���
f�&$���H�7�F�x���yQ��Q[j�"�:
�|�3�</$�,TX�K�(`S�b�J`��S�1��ئ%�}GsSw*Lh�#�)���p�u���M���O�����<���O0r��dT��
�>\��\� �9J��� �f�˩2��kY�i�f8iByN�n��8b;ڮN��_�ܵ����ِ�3D�Y�ܺ%�z�4SN���3�?e���zy�\lb1�;�<�EE:�.U�0�� �a���}>*L]�7�-;TW�+��G,��6�?U
�J���U��Y��xwA��M���IM���P����}�%�1�!��H׵�f�,���(ZL��F� �	�(��I@�Z:�iX��wnt��(p��kF�(0 �
�g*wg
q9V�RX��"��6�aF���%�
"�
�vp��4b���O��Сp�fBx�osչ��uya�Q�O�	����T�-�<�y�߼Si�K"�Yj`>�o������߳Z`���@�䇑͖�N2yY�6gC�84��{���
(��]��XPd�+�����*'z.�75$�@1p���p�O@���i
�$
l� )�F&1W#I��_QR7�D�Ȑ=�ԗ���q�``v���A�ѐ�|�J!828S���𕗗Wx[O���w����`�r���z�Q��s�w�3�yo^�Y�Kǟ AD�7u�"�Q5�H��Z"Q�D��B��p�^#&����Ƭ�*�F��vf�ȪThne�]~&bZ�}4(��MD���a�+8#RDH�w-.6��(�t[/��pS�
R�U�Ե�&��!�@�P!^Υ���-�	4.bu���̊#�1I�>��;Ԉu ��¼��H0a�o<d�+�ܔ��������<>yC�axr�xi�w��vqд��ݛ�Y��ь=���.fE]
�[�L݆J�!��ɮ��a�ȷ��H��$��r����2�)���YDQ����&u&ҭZ�6��.���!z�BbW�.��T9WdEa��4+a�
-Eb�� Xc�b��.�϶|!�G����#��Ca��9��9Y��҉�!J���?�}�%27J�Pj�#
 �+�,�IB�.>G�	ʄ�TSC�)0>���N;�� �
5L��\b�@�֐CQ�l4�|����X�.Q���)��� ���r�"�*�(�yUl)2��X�ΰ[#���A�xXD\�Dbsw�3�ۘK5�U@"@Ш��9�m�.M����Jm�W%
Q
�T�����Q�e�(2��f�ielL�+uXpuh蠓���"	P��R[[6��x�+��lz��%~�V\��կޛ``�MF��^f�=�{���"�����D���ҘS2����`��U�E�]"��9��2��ci�ԅFZ\���->|�@/>yRu�~݀��z��ҩ)FR�����δ
�Dޝ�q�A�Hb7a����hFՃ��K!�Lj���yJ>���-Bk)�#��a�#&V��Zʀ��/��Vx_������!����"Z%�E�\"��V�D��dL0HE`��-*��t�����K|yQ'�b�ڀ�oPü,3�Apa@�R��HǾ�J��F��kk��["-5��;Dz�Iť*�1`�P��y��'Lz�.��"v	Y�*�r �Wˑ$�'��56�R
p
���beB�d�r��Y�B�@z� a��?q9	"#����:$��� �
��`QO��tO��i��8�S0��
����,q�Hth�j���<x��))P@J3!6���m���8��i,�D4��zI��W<}�,�[�Ό�g�b�������0���#O��v\:�3�*Kf#������0�AL-;���"Dء(�}3���t�n�V�Qέ�5�Z�y�|,�I?q��2�p	��A�b6MqM���)*8�^��#GUF;�L��i�5���%��!{G����0sK��Rr��?�-�H@��x���]p�,->g������l��:o]1 M�C�ag%Y�l��bd�*脗�o@d̻Cs�)�e�� X������ `�5XY(�x����o���3�Cc��l��E~�v�S�A	�)��L�,gd�"�9�`}
_�1�2G"��\��h�1R)�2w�5��P�q��P ��oچ=��5 �B�۰o�Q�€(�`�3aVdOu}�Z0���\�V41�������a���q������ޫ�w�rL�1d�[Q`%rw�yp,��@G���4+��3ˈmЀ+�qt��}���}��'����T�V����HO]���0u|'�6;��T�����BVFd]��F
�>b�	�C�(U�(�Qۡ�.�W?����X+W��k����$@�>j��W���٭x�Gf/)����xF(~��W�^���K�|��Tȯ���	8�&yQhXc௯\�"L�J����M=k�T)��*S��2�ߢ�5���� :Hb9�R@�Y$d�\�2J��@��ɢ�a��go��&W���s\�̛>�J��b�dԖ��A�	��컭��ha��B��q��<Ni�A)�����?�=J�bd�$i*ҍ�n�ak����
I+�l8<��6L`�vg�G��1���2+��E��_�"H-����F�E���32+D�1�{�I�3@P��C����:���ǐ�MbA�p|�}c�.,r��"�8�DiH���O��/?���_��s����~��[���8�۾�&�Y����||>X��#f�����X�e��@�8!n�D�U��V��F�7�R�pJ
��g������q��Qjʃ��(��P��lHZ��v��j~�	��ΌtJK��&��$c��]�ɓ��.W~��'��N�<R^��׽����;��������&ADC�/	@�Q�d��G
ݛ4�S>1�?��<E"�bL�Pl�-�O@���؀H���]��v�:��ʁ��"o%�<,,�:>5x�è`�S�*��E��*f��J����� 
Y����Jl��Z>:y��g��ǿ6���x����7n�^���ʽ��5��5-<�,J�����뒡�>�,m����
��p��SxQ)`&�̙���Z~QR�@�C�G9*���<f)?�Qd�U|&��#��x�S��r�۲a0�H`bf�p��D&
n�B5,������0@�		mRp�ok� 'h�1B��#��πO2̏�$�3�i^:����ٞ���i���B�
%�lg���t�e�Ǜ;�w������u�N�9sKY$�,ݵ��Ru&�Dzf�+�
���k1bC��0�"͖�d�/іjTK9XtYCQ{�De6�@B�$�i7?�@���N�A��ŏ�!X ܥ$u �$ͣ��K1xD�e5�DF�V�	n� 8���Te�6NE�.��r���)��dl�:��X�3�S@���#Wt��]'+��q�����D�'@�u�d��^I���o�}k��~X9�
I4H�$��>F�2���hA@�m����Ս�be�A�o����d{���V��P��ժ��I&�d��x��(���n��R��@�$�@p3jd�0��X�snXJ���Z�.��L��`9��dx�@��q�
Uޑy%
^?�E�bTE��xp�&�r����=�N��ъ�\�!Z�֫��ҏ�˕�H�oj���	�=�N�]��"xH/<X�%.��4iݪF�H`���>�q�j���d�C@��K#k:ݙG\ޞ���,��a�'	�Zt�b�V�mm��(fG�� �����z�:h	D$[/D:��8=<�pp�aq�%�6A���m������ay�	 t:Ɗ?�B@:5=j4Jr�Ɇ������N,�3�r+	)K��<�9�?�әqj*�R�.�^�}���p�iϾ�Tw�x!}E/��o>����>J��l(#)דb�.`8�}�i2)b" E��D���a��X�|3V9<�����#���a[���A�����Ȣ����O]�X.�zl�6M�@l�֜�|���^���JS���&�Sm��}��C��.���ퟙz�Z%���O�l����V�gR�w��nc�"��,w���eK�oL��/��
'X1e�~�S�-�}�4Ua/s��UkF��ił�󿪭l�U���,�]Rn:�(��P����l��.��l`�{9j���f�6���d�Đȋ(����	@�QT��1�?�B��㏰Ν�c&~��i�� ��ꐤ�(�o@���{���"�Qa5єu��P��lC��N�������/.4"a����p���T*)@�£�2W���teZw�P�ǁ�qoR�xw�ڵk/��~�VGw��ܹ���}���r
:��_ �_�Yl9v�W��l<�@1"	�.I
�3��'0ieX;TQ��U1F?��A>?�_RN�P W�n^� �X�!W��W-�Nʟ�H�m夹�d�@����-��)�#��d��z�����L�4�<��ɤȆ3�4p
�B�<��/�h\�����1X�9a�)=E%�5���d'����kY���$���3?I�w�Yl.-AW��i��L��P���0��#>	j����
;T/e�	�*����p��
~j?��P�R�Ǘ���UA��r-H�OZ�ړq���-�_�t���L�qh��Hn�$�.L�!2`��bt�J9A{3�z$)	�;^��2���`´�Ԉ�
k�Ҷ'(,����Y2ż�
z�h������=�Ԧ?I����#e�)>!7a��	��w9n�P&q�'{� T�E��r�!_`�����e�UX�\��ޚ�}�t�d���h��y���}��I�O�����x�宽}�׳"�x?�qG>���7�e����O��\$�@ �[
�W]��yrc���޳���tS���/���kn�mϳ�p&�X���b^���;7�6�Ν��H �,-�|�������: 5��g>L��̇I)H�q�\��VV7��v���D��K�X^�{�,�	���J�*A�)K-��4p5�~�"�V��L)�}�gz	$�^9��|�}��hU)�u�����(YLb���
���E'�n���F��DQ��$B	��|�M�#4\����v4��J͹I�E�x����i��+�77ʢ�ZN�u�uE� Z�d����zJ��z�O+Of�*�oQ�(� ���yS82Y1-��a�0b�G\���Æ�p0؂������=^,Jɢ�����X[/W�����B�՝�.�o?dS/�s��tͲ}cA���(�
�	����yG����� *P�NCj�������4M���	�s�S�J���KЖ�MjP�W�^��g�#�V�@q���RӔ��W�w֮a�UK˖{t�+#�}r�X���k��@�Z�- c_;���
H�#��Q�E4�3����_@l���VR}��b8�0b���>����zы��
�U��\}�H�<H9���DM
�*6����B�2o=�		+&�1����9�tB���
;��!���<�D�re�/@�+��)��"�3ò*M"�a�T���`�ۢT��M�rG��E��H(H�'|}t3���Y�ʑL�&�ɇ0�Sp��B�l�lr䄁(ܮ30[�Ģg��34;�q��ֻ�
G���!�8#�`�Q'�Wv�c��姁Ռ��╕�k@g ���[SP��@+�*��X����Bڮ_�Y=��O�IRS����
ņ��XF>d>CRa<�7$�!科
C�'E��Cԕ���]4�uݥ�u����sȟ��
	Ys#}]���Z<C��7/e �8g��F�	�X�M�0�z�t:IC�TR
C��I�AE,����E�a�C��d@�o@҅	�ƈO-e�ƚ�̓I2�3н��j�>$��
�V\�A�jY���m�1k;���+I׵,�m�֣��KCxT˷>� �x�KC��iA4c� .� ��H�m��_����H����S��^d�,�P|��Pv�(!>�0+��z�1%�tA�$�Vi^�8/�{0&���&)C����kC�S�M�*I�4�4n�AsjFD�7)�Z�������8,�����i%�>x/�!vB��0Y	���n���pk�rW���C�(�%��؝��/�<~�di��uC�Ӳ�_X���L`G=[`C`�͠	�4}���mf����IfC^�!��J�e�,
�7�}\4�yY⑹���n.1��,��L��#��Ȧ�V��ߛOɎgQ<!Q���d��*�٩�L�:2D��`�d3����"�D?*ٶ�K�a=;5ITG!p�X�cx"fD��y�-2D��Pߺ�%{2s�g(ٗyyq�ⰂOCx�~r8���p8�?�wd�}�D�IEND�B`�themes/nivo-bar/v1.0.0/style.min.css000064400000005623151213255640013036 0ustar00.metaslider.ms-theme-nivo-bar .slider-wrapper{border:1px solid #333;overflow:hidden;position:relative}.metaslider.ms-theme-nivo-bar .nivoSlider{background:#fff url(loading.gif) no-repeat 50% 50%;position:relative}.metaslider.ms-theme-nivo-bar .nivoSlider img{display:none;left:0;position:absolute;top:0}.metaslider.ms-theme-nivo-bar .nivoSlider a{border:0;display:block}.metaslider.ms-theme-nivo-bar .nivo-controlNav{background:#333;background:-webkit-gradient(linear,left top,left bottom,from(#565656),to(#333));background:linear-gradient(to bottom,#565656 0,#333 100%);border-top:1px solid #333;bottom:-41px;height:30px;left:0;opacity:.5;padding:5px 0;position:absolute;text-align:center;-webkit-transition:all 200ms ease-in-out;transition:all 200ms ease-in-out;width:100%;z-index:10}.metaslider.ms-theme-nivo-bar:hover .nivo-controlNav{bottom:0;opacity:1}.metaslider.ms-theme-nivo-bar .nivo-controlNav a{background:url(bullets.png) no-repeat;border:0;display:inline-block;height:22px;margin:5px 2px 0 2px;text-indent:-9999px;width:22px}.metaslider.ms-theme-nivo-bar .nivo-controlNav a.active{background-position:0 -22px}.metaslider.ms-theme-nivo-bar .nivo-directionNav a{border:0;bottom:10px;color:#fff;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;opacity:.5;text-transform:uppercase;top:auto;-webkit-transition:all 200ms ease-in-out;transition:all 200ms ease-in-out;z-index:11}.metaslider.ms-theme-nivo-bar a.nivo-nextNav{right:-125px}.metaslider.ms-theme-nivo-bar a.nivo-prevNav{left:-125px}.metaslider.ms-theme-nivo-bar:hover a.nivo-nextNav{opacity:1;right:15px}.metaslider.ms-theme-nivo-bar.has-thumb-nav:hover a.nivo-nextNav{right:0}.metaslider.ms-theme-nivo-bar .nivo-directionNav a{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#565656),to(#333));background:linear-gradient(to bottom,#565656 0,#333 100%);bottom:0;padding:.4rem 1rem .2rem}.metaslider.ms-theme-nivo-bar:hover a.nivo-prevNav{left:15px;opacity:1}.metaslider.ms-theme-nivo-bar.has-thumb-nav:hover a.nivo-prevNav{left:0}.metaslider.ms-theme-nivo-bar .nivo-directionNav a:hover{color:#ddd}.metaslider.ms-theme-nivo-bar .nivo-caption{font-family:Helvetica,Arial,sans-serif;-webkit-transition:all 200ms ease-in-out;transition:all 200ms ease-in-out}.metaslider.ms-theme-nivo-bar:hover .nivo-caption{bottom:41px}.metaslider.ms-theme-nivo-bar.has-thumb-nav:hover .nivo-caption{bottom:28px}.metaslider.ms-theme-nivo-bar .nivo-caption a{border-bottom:1px dotted #fff;color:#fff;text-decoration:none}.metaslider.ms-theme-nivo-bar .nivo-caption a:hover{color:#fff}.metaslider.ms-theme-nivo-bar .nivo-controlNav.nivo-thumbs-enabled{bottom:0;height:auto;padding:2px 10px 10px !important;position:static}.metaslider.ms-theme-nivo-bar .nivo-controlNav.nivo-thumbs-enabled a{background:0;height:auto;margin-bottom:5px;width:auto}.metaslider.ms-theme-nivo-bar .nivo-controlNav.nivo-thumbs-enabled img{display:block;height:auto}themes/nivo-bar/v1.0.0/theme.php000064400000001704151213255640012211 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/*
    Replace 'nivo-bar' by the theme's id
    Replace 

*/
if (!isset(MetaSlider_Theme_Base::$themes['nivo-bar'])) {
    // instanciate the theme
    new MetaSlider_Theme_Base(
        'nivo-bar',         // ID
        '1.0.0',        // version
        array(          // assets
            array(
                'type' => 'css',
                'file' => '/v1.0.0/style.min.css',
                'dependencies' => array('metaslider-public')
            ),
            array(
                'type' => 'js',
                'file' => '/v1.0.0/script.js',
                'dependencies' => array('jquery')
            )
        )
    );

    // Sets the slideshow arrows
    // Can use text, svg icons, Font Awesome or any icon fonts (Loading a whole icon set for 2 icons isn't recommended, so svg is a better option.)
    MetaSlider_Theme_Base::$themes['nivo-bar']->slider_parameters = array();
}
themes/nivo-bar/v1.0.0/loading.gif000064400000003311151213255640012476 0ustar00GIF89a������Ԕ��```@@@DDDnnn�����ܤ��$$$(((000666>>>jjj���rrr��������Š��PPP^^^������:::������\\\|||��ↆ�hhh���fff���FFF


������������xxx����������������������������֮�������������������Ƽ��������������zzz������LLLRRRZZZbbbBBB<<<���vvv222���***���XXX,,,���NNN���ddd444��������游�~~~������VVV���JJJHHH"""���������&&&888ttt...ppp   TTTlll���!�NETSCAPE2.0!�Created with ajaxload.info!�	
,�������#)-��$*.�6:7�
%+/�70=6��6��=?=��3@?�
�;E��7A>��B;��>CD�	�;+F� &03	8<݄!'14,<	�"P���F�`�!�	
,�������;WX[]�<UY-\$_&�JOSHTJ^*\�GP��2�
#��7�HKQ�:6�L=�FF�'Mij�NA�:b�I�T@�?R�/D��924I	::/E`ӃA&V,ZJCaT�T9Ij�����!�	
,�������	
i^,�CK
jl�8^ghQCRk�"dN<�h-P�cf�m]�,>�Jnj�2H0�T.-�43��5GЄ`eC�6:�f��:=σG5AT770/6�@C(CBA;@/܆F	r� �Z�@!�	
,�������?(N!lG�9'g[jNJ�A#HlF=B]O<�T&28�f_L;�9V(�H�J,	�kW�lf:�U�olǐTr�<b�JmK�G(>�N*#�F`8"�p
A�/`9"0�7�q�E	"T=36n� Fo)!�	
,�������aoe&?�	+qe4H2�D<
@33
%�F8<;�J @�@c�e[l�>8T�Bju�aB7�K�Aǐ�0�Cv^�	��ur�6b?ՅY)�3T3�+'s
�6F0:�.nt�n830�֭��!�	
,�������0@9(+A�TA8cJq
>�`GT6:"VVA�6@>/�B4eb�=	��oR�TD3�>h���F^���M'�0F7�BLd�63Ӑ]jl�7ۅ&NG�+TTc1SOJ�vwn\-Yr<�A#iΔ���@!�	
,�������7=?;>;"0�:TD	AB8Q"�6/37;(I@�0=:�GJ�73��QfA�6��D,<��3e��34�.��1&�2*^�Z�\�<N|��Zk-xcVz^8�Oyrvj{C�e H`�X !�	
,�������7:FF6��63FbDD=�&�:E;�A
.�TA>3�#*N�	D�K$+�C9�\T�6Jc�-��:�gY(�DZ�eu�,A�KXq��oPt2Q=FAl!�+ OjLM^a�G1N\@��A�;themes/nivo-bar/v1.0.0/script.js000064400000000266151213255640012242 0ustar00window.jQuery(function($) {
	/**
	 * Extra JS for the Nivo Bar theme
	 */

	$('.ms-theme-nivo-bar .slider-wrapper').each(function() {
		$(this).removeClass('theme-default');
	});
});themes/nivo-bar/v1.0.0/arrows.png000064400000001470151213255640012421 0ustar00�PNG


IHDR<p�}O	pHYs�� cHRMz%������u0�`:�o�_�F�IDATx�ԙ�s�@�?d�!.�q8P�빺8pu����s��ZT���K�̤�l��fs3�f20!��ww��c'����0�����q,�I�o���4/�*�Y���f���L�=�2mۻ�-���p
d��Y%�_=�>�����v�	�w;�J෬���Q&{��^x#�(�U����)�乪&;�捨�@l��'��"X2�l�1,��j���6�l���?]C˃A�ґ}��	��*b.����$r�G�r�v_��n����q�c�[y�$�dG�B��E��
I�w_~V&91��k8�B��1�*���B0B���N�P�c:���'g�B�3�*�	�m���%N��"
����q��ޭ��3��z��7�_{3��Q�����kKe�k=\�;�5��l��c��H<JC���S��ܒo;��̳V��Qͮ����7R��M��������`�89T�Uͻ�he��k��q��N�cX�[��u�ʁFe��.�����EkrϘ�3��fX*�W���\yO��đFE;��7��[2�|D���W�Qq�0V#8=Zj�}��Ӕ�~��յL%�&���V0#\_�"`��*S_��q-���#�X�%%gw]�ub9[�sk���v�R��\{m���Q�'�ô��R��0���Jb��,z:$��>i����z����<IEND�B`�themes/nivo-bar/v1.0.0/bullets.png000064400000002401151213255640012551 0ustar00�PNG


IHDR(��
�	pHYs�� cHRMz%������u0�`:�o�_�F�IDATxڴWMHcW��{y�qb'�c�����E������?ࢋ.f�HK��P�l��Q(ͪ�xu~H��?�h%��F�F�B������}r}�d�s������sO���B)�0��,�!��d�e�Y_B)5�@���NьT����@bO�"}
�Ğ�F�s̢�@U<�"���i�l>��>�{8ظ@0���GX��L&�(A���$��FI��>::���;�M���p6�
�~$�|ssSEQp�N�S>88�����T���Ǭ��z;gff���b��p8����N�
�V<��l�\.g:V( IR�i�����vww#�N�2Fл�XP][[[W*���9�Br&��!�{l���Vpt�����������������/,,���+�g��Ʋ�Q;�P;;;ۺ��=8==���>0Эr�\�|�XLJ�@�#���7j7Ie�Sˈ��NT�
}�.2�漕l�e�ؠ#�d�T�@��aSz������5U���n9媌
\a�ob�a��<���&���o��XѨܻ^��B��:�E�������>���*�P���<+m�$���J��b�筭-��ͩ�DB�f���ǏE��'��\���y
�mp�Đ��ekk�ft�b$�>mnn~���@je��`����JT���ɽ���X,�^ZZ����)
@�/E��5��k`�q*�|@����������ݾ@>==����G\L�%�`�
��
CCCc<Ou
�������^���B�z�V8??�\.�Y��������4���Q�[��r���_@{{������R��ɲ|���B*��ը�I�k��ˮ�.���n:�V�	WWW����N*�����Slhh ���	Ci�Ȋ*���яE��gd�ݾ800�
����t:K&��l6�#���ی��[�@M:��VQ�X0|��d��lgg'V,��j.��}�j�E����dWccc���lll�ggg���Mt��(
����i�O.q�q+#�=F�j���?�d2�]\\��F�XT�"ur���&3
'*Ȧj�M�(��Ќ�I�?7��	7���76��IEND�B`�themes/nivo-bar/v1.0.0/style.postcss000064400000006400151213255640013154 0ustar00/*
Skin Name: Nivo Slider Bar Theme
Skin URI: http://nivo.dev7studios.com
Description: The bottom bar skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: false
*/

.metaslider.ms-theme-nivo-bar .slider-wrapper {
    position: relative;
    border: 1px solid #333;
    overflow: hidden;
}
.metaslider.ms-theme-nivo-bar .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
}
.metaslider.ms-theme-nivo-bar .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.metaslider.ms-theme-nivo-bar .nivoSlider a {
	border:0;
	display:block;
}

.metaslider.ms-theme-nivo-bar .nivo-controlNav {
    position: absolute;
    left: 0;
    bottom: -41px;
    z-index: 10;
    width: 100%;
    height: 30px;
	text-align: center;
	padding: 5px 0;
	border-top: 1px solid #333;
	background: #333;
    background: linear-gradient(to bottom,  #565656 0%,#333333 100%);
    opacity: 0.5;
    transition: all 200ms ease-in-out;
}
.metaslider.ms-theme-nivo-bar:hover .nivo-controlNav {
    bottom: 0;
    opacity: 1;
}
.metaslider.ms-theme-nivo-bar .nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 5px 2px 0 2px;
}
.metaslider.ms-theme-nivo-bar .nivo-controlNav a.active {
	background-position:0 -22px;
}

.metaslider.ms-theme-nivo-bar .nivo-directionNav a {
	display:block;
	border:0;
	color: #fff;
	text-transform: uppercase;
	top: auto;
	bottom: 10px;
	z-index: 11;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 20px;
	opacity: 0.5;
    transition: all 200ms ease-in-out;
}
.metaslider.ms-theme-nivo-bar a.nivo-nextNav { right: -125px; }
.metaslider.ms-theme-nivo-bar a.nivo-prevNav { left: -125px; }
.metaslider.ms-theme-nivo-bar:hover a.nivo-nextNav {
    right: 15px;
    opacity: 1;
}
.metaslider.ms-theme-nivo-bar.has-thumb-nav:hover a.nivo-nextNav {
	right: 0;
}
.metaslider.ms-theme-nivo-bar .nivo-directionNav a {
    background: linear-gradient(to bottom, #565656 0, #333 100%);
    padding: 0.4rem 1rem 0.2rem;
    bottom: 0;
}
.metaslider.ms-theme-nivo-bar:hover a.nivo-prevNav {
    left: 15px;
    opacity: 1;
}
.metaslider.ms-theme-nivo-bar.has-thumb-nav:hover a.nivo-prevNav {
	left: 0;
}
.metaslider.ms-theme-nivo-bar .nivo-directionNav a:hover { color: #ddd; }

.metaslider.ms-theme-nivo-bar .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
    transition: all 200ms ease-in-out;
}
.metaslider.ms-theme-nivo-bar:hover .nivo-caption {
    bottom: 41px;
}
.metaslider.ms-theme-nivo-bar.has-thumb-nav:hover .nivo-caption {
    bottom: 28px;
}
.metaslider.ms-theme-nivo-bar .nivo-caption a {
    color:#fff;
	text-decoration: none;
    border-bottom:1px dotted #fff;
}
.metaslider.ms-theme-nivo-bar .nivo-caption a:hover {
    color:#fff;
}

.metaslider.ms-theme-nivo-bar .nivo-controlNav.nivo-thumbs-enabled {
	height: auto;
    position: static;
    padding: 2px 10px 10px!important;
    bottom: 0;
}
.metaslider.ms-theme-nivo-bar .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.metaslider.ms-theme-nivo-bar .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	height: auto;
}themes/nivo-bar/changelog.php000064400000000115151213255640012207 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/nivo-dark/screenshot.png000064400000132600151213255640012614 0ustar00�PNG


IHDR��� ~PLTE"""���"#1-"+'+50'$w��4@:Hc~������������GRO9C@MWU������Wq���������187+0(���FNIQj������F_u>JG���63(30;0������WZS���<K?���������!0!������q��
F	<o{����ʻ����DD>\faQSM��yVcY,��qž�^fj5���y�����:;4
!U\^�¨_`Z}��]PD������;F7.+���+	EN@@RGqvs%:5���dv�eYK<���,jmj���E<.��nO
y��϶�Nl�U`h[lwaohHf�dsr��*=&&���\p�JXEgu|TI=Խ����SeuN_WVu�����4k~�'$Iax�ª�ggaRB5��l˰��{d;.Ŵ�PND(_c~�2(�åz}zbmZ���oYO_LuhW^K6>_���x<[}�ŵKZb~��,D;fU>����va[eQw��p`Llq`<'uzkH5"p����~�~oqWC����ɱ1H/H��a|eNRA)i�����jaTh�wkM3@:@'��������{wpdk��2HE(P"���kxi�a4hGI4���C\Q5Uw���Xv�cA*Y3"<MT����mUV[Eu�wu�����>qTle%:i%��uw��o��~ZA���Q�*Jv��������ˬ5#����sW�bH���?n�=V1S�e��Fr,[��H"-`'�1!���|N5W 3e����-Jf�Զ���������v9(��g�<4ZC�]F<O���>{DU}O)�ӫG8�ӽ�;IDATx��׿ka�nr���Ipt����D
�y�H)��V�J+��%��Ƶ�����*�K��>�s�o_sڮ]|��jm��'�M��r�)��r�)��r�)����������V���ş$I��t.WǒX�����d?���n�j��`s}}����ӧ��f�w6��A��^dq�����9&KdY���r���b�͂Ղ�����×�e��cB�_��q�-t��z���von�Ά�Y��Q��q������(�",�Z.�ɋ��R�y����w��я~�u�`�
y��w�A�vJ���I�/V֪�&{3��"0@&C`� i�"wo!���p����Y�2xy3���k�))�d|�ES\�}��"]=�H�]�×�"㝃��5��l�d�-5��|���AdYXV�*@B�(��]�7��<6�)
�@�kL+��i�]�0,z�bF�Q��O���ֱxV��2������i����~��	�� ����#bE�⑈8���t�Dfm�F�mgCܔ'�`�D�*8�	<v�k�L��|����1RZv�ce
��Z�xP�wq��'����%A��ty�Hߴ��@Yt�_
�?-��p��X�ȃ.��#g������_ ;|�D2� 7�H<�'�-�\�=/M	�5<v�O'AT;� �Ԝ�kó����C�s
8�qޱ�`��ТZ" ��
�q�l6��h�Ի�ң��ʣz�4����X�@gy<�)�C}YI��
�����a%bq��*Dq#��L�(�"4Q� xڟ>ar�����ף�
K�`1G�ʼ3G?�s���HC/]U!����
bH��B;0H2�\�04<ƀ���;H*��i�
�t,�?��"�YhըDXڰ����@t�[�X >u��z���&J��D���D,�988߰�)-��3�y@ȡ�|k&y$��H�W!��1MlU"<TV0董�y�R���k���-�͒)?Cb4�h�bQ!�xA<#ѸF�d�>��FD"J\�/]:�	5r<ڱX �kyh��`TԐŐ��0��𬊰e��*.KDҰ@�H�%��i��51�4�;t
˸�<�87��s{�Vcפ5Z���0�K�a�X�$!|9E�A�PC�<^ہ��u�FE%�ד�aE�����ȅUb�Q�>��>'A��qR�����,�RoR�9��f1��|E���-�����5>�Ѥ$�l�Q!)�X�$�D$B��� <n�`��+����"�hL�=KY���XO�"qv��OK4/AD�����rdA�Ey�������2	9
B��޿��a�[ӊ�e���w�%ۥ�WA$��B-����볳dvvF�Q��;E��j��Ȋ�t��
dJ���~�����,�(�P������3�<��^@�@0����C�yTM�W�oJ����0��(�ti��%�6����:��BD���&�X��
�����1���p��t�D�A���}�u�����yk��|\�}�ihS�F/�����e�,�,��8��]�׹����k����
w��Q��
�f��,�!$�E���/�AC��I!	:��"��+�,-�|��^DJBd�Ax(/�"O_>��<�.��鰊��?�|�|}��"x,��L|�́GmeOm�t��$��	�-s�A�
yT��[�W氄j���T� ��ssd�G���.��=�b�F���?+$	RB�ݿK;?<�d�lj���z��_rY��pU_YY�թ�[��&���-@@J3�A�9/���,��aC���QEG0`���y�u4_!N� :SW�d0"=2e~�W�<u�
��7	pR9qb�vr�ӑrl67��C�I��2�._۰"���ʞzM&�9yM)Y5�!j}T]��$=��7�Hh6�h��^�Gf{�&:$M�1����[����n���rf5;N�8�_с�sb�g���K�P��8���pB�BT"Y��-��˵ӭ
�L�p8CCÝ�z��=Z-Ƙ�˪k�8#1JI��=8����U<b�k�,H�R��L&��1���P#�"��?*��L���y¹E��.��wU5!�Dl��YU_���2�@��!����ب8R���k�U�qM[5��@v�C���s�e�/M�&D�����B��IL#����RH���Z^!Ԃ���m��a�]�~�8O.�u�3�h��?�w��$����3��H��
�Hw�U���X�%��D�f��GI��ܩ%��Zl�G��SQ#�p̠�S�����#�b:�~�Ί���Y� 8A�Cb��!�&��t1ɰok$�}�MIJ�M�ն�t��5���p�լ��6�>�#~Jr�����ގOv�Lb�?�hұ�v�0��;�vp�Ǵ�d:�sD�&�"x8K@ο�"�I�R X�qN
� ���d��TXq�~�u_i6[�v��n�SH�z�S[�|��R[������r"��k34b���G|]��	���4u�2�œ'�?_x��6"p$bV�|����o{�Q�Qy��>��RI�,��A����2ʐ�	��ã$A�$����O�l<xDi�U'�x�B��U�q�jI�����������Ӄ1Rn�n��&O�w\P�����1)	����ȵ.��32�@�g�*��X#�"� ZH��Fb%Eq�Ł�����bj�
�rx߾}��G.��@�&͆B�����Y
�Q�������s{��Z�㑆���Q�����,��.�P�D��G�Q@�_$ ���XP��-�Q�HZ�@�"9r�0K�P1,��#���.HR�D���P?|X9�lU ]����y蟾Afs<�5D�i��C�G�I<(
�p�{�}����8�`���7�"��Hz|���%Ҩ"y��@�ytZIYj�s�J�i��w:c�Y���$I4`m�>���A�]���!`�oz8k��O�4k�|q��58.I��C���(==��'߹�G�^�KVS�6Ԥ�h��H��bEo߾��H�K�BHx(��KDm���,��QR�%H|m��=��@��T��W�N#�E�
"%x8�̒D;>���,�5�լ=zE�'�ɑ�ۣg{�c��+zr��'kȂ��pM[0)%�1�R�I�2bu�2뒗�����iLDARDi�̒X�S �i�o��2�Pni�+��o�J�J�շ�u��0H�V�w��!X�d���4ΰ(���@H�����!��-C�pAs'q�pB[�Dh� �
qڴR"J��l�4���Gr��%�`��
8��X��d���E�q<ă�
��u��0U.Z�.ĚJ[j���b1g3E�R"9���Ǐ:.N�e6��S$Γ��H��9�M�=N�������lᐩ�b�fN�����)�:0�hݷ��8vsddţr��/�r
s(k8SȫW���W$=��C)����wW���z��H�;� Q`a�J�CN(E��Q8h#�;� �:r��z@@$tx�Y|\Hٱ�C������p�G�� ��ƀ���)�s�v<��#ֶ�0������0������xK����s�,i�I�,y���Y���֠> IPt��T��qH�g�f
v�*Ǭ�2�"^���K�#"�	��z{��Fk�.
D�I�?V#�2G>/�6��9Q,a��?�1!�<y��s�#*d���{;_�D��M�� �>^T]�A��#��\��Q��b��*iKth;F�C�2�B���CAu0t((Dq������l�EAA�8R�2T�8�����m�{s��߿����{�P���H4����H��9���۵�"q@��+&b$8CHVW�҂��;YH$Gy"npI�/�! /��8���0�z��Ȏo�ʃw��A���}���٨�;�E�+i�����������t95�$2o������4����
�-� ���%x�2�$�>pH_"}@��S�<pE�  �{*p��.�~QW�:��j
�WDH�:�[�h�)X�#
���L���9Ũ����r:����L(
Yzs:�����.d.��a �	�_��?��o�����@ a����J$۬�1�@0�'��%��w��D�P��*I���tN	$�l�Ԗ�<�T�GƠ��-��s�!&�G�s?��Bo4�L:}
�x2�)�6�Y�V{8�)�]�8�����^
_�#��U����Ǽ=np��F4vCA�M��/���9~���^4�"�6�ĭ8�o�[�EA� &��,_yH�04��:�# ͈8�G�o�=�s
>�����w/.ND�I�#{���ݝ����k�vϛ�~2�΀T$a*�ox��7A��Pa�Iȇ a_y��#�@жPH�W\"$#�cD�Up,�.>���Ze�QY������.ph�8����'������"�P~�DNr�^^\x�;�8�G���v��oZ�/�kk�n��ҙ�ЂF�HQ����G�g���n�w���a����%N
c��I�I$�@���R��MVP�6+c���Bl��^9%y1[�s�<xI���V��B��S�"��vI�s?����L/� -�&	�H@�F���t��1�6������Z�O!�ܧ��o�HnR���y���h�d�EL���H�i=�h�<6�ֵ�����.j
���<���S�t��\
.&C+ѯrV��E�ݩ3�UQ���r��X��`L���H�;�������R���m��j���%1�#��Rf��������f �������@h쵔-Z8�$Mc���$�����Ǜ��f	b�)���{����7�Lc�Ό���3��@�ixT  K�4��,q���p��G�G���Ж0��N�zu&{P���O�}��.�����Z��4����AË��w6}1�s�C���zԸihxk�/,�%��}��$k-4�{�@e"����!l�@�`�I�H�8���C�jG�
G�!��D�W�z����d�=>m��l��5àQn4�L�F��t�'a����&��C@���p��wSOg0��Z㷴D_��&�#�'�Wk�б��jH>Z�:d"�H�Uy���������Zh	qk�+B�6yI&B�t*�)���Gw����`��P<J��_x�|\-J\�#)A�$�@���<��q6:��}1��L��W��w��a��.	$�j�
$z��֠�||lUV#��XXXʾp<�\�LR�H��rh�I��#�ʜTD8$��G�!_�LrV�Lst$Wh��_��9J��-<
��+�2�e�.%ç�q�F/�  z��La�"��m��=*���x����$B"�C>���c��ᡱ��q��&��cep1F�`����83IF��BI"���MT�^o�)�6DRGGZ�|�HL������h�w�M@�;�#S��_���"��ĞF">�g�Z]_�к�W�o?zd���޿H�Y2���{����W	H�P<��kaL	\��"Y$
xX�����w���m@�R�e*e>�*�T ���7�ǀD�T��a�����9k.XEE&S�Y�p��!���"u�VZ��J���1�[�2QUk���T����@�D�C0~���?E�$���bpl	��<*.I(���G���s��kN(�V��n����?�<[�l���"� ��Dc���)���Gy�ɛ��38��6�"��D�5ձ���%��c���~�:�Uy<�/�S���T�^F���?����j}�$��D�$$\��>�%�T��c.Y��ʱ,��Qs�.i�
6}1|��H�:Q�u$�0�Ac4:�B�:5T�d�]X(�7T�Ko(�*�|o"��T�qI��0��T�H�9ׅ���t���ʟ)�+�YYWM8��t��h�+L7�,�y퀠�ږ�d�0��DT���Zy�@�*�B(x��$;4�[��̯��d ��֐��S^�h�I�Q�7��c8���h r�0|�(�mҧ��"��U�(��'"�l��A�D9�i#� ���:k|I6�"�w��2�Ǐ�T6ߗ�e��! ��Z_��*�NF^�w�<� ��X@�5Ļ	�#N�C?D���qock��7iYLN6f�!zdoOY]�
@�x�Tb��1������p���m�/�{��@��V���Ua����^J��ũ’tqᎻ5=��*�����/��]Zn����@f�4��b�~E��Q�D�d3�42O[�[�p���Y��c�<2��L�d�كȦAk)Tn�{DD���|Ȓ9&���v��$�{!z'�w�vq��S�#᎔% �M2�We;hl?��t��_���1GDL���B����J��H3e����0�L�*��2�ʤ��p&w��#����n�%�h�bѐ�G,�`��8�y%��$�J�E�>-+Ix��!�ZS�����18\�__���g�ʷX��S4|��HnL2f��U,�"PZ$����Eb�>�ȧYE1'g�V$�@j^wf��rX^Ѡ����H���+��)\��"hVIY�D�(�H�!��IO���Z_R����H	D���`ky_���+ZZ�C��X�
L r�CP}d�@"�.	D�b1�[�RiK�y��i�H+H�H�ҭ� 
*p,�B+K_�2�@v�JG�#�چI{���4jKG1�yeI�C8�?{�!��
D����7��(,�5zY\���=�ռ���vϫ}G�w�}jd�<�Tʡ����0Yw"���@H�>�q�,5�I�9�)xt5�͆YTT]��L�����m���{�Q���H�E�� !����V/�p5"V[����A6,�g|Ck�:�8�ĵ�<C�����!�3�0x��Y�/�p��Hx��Ƈ~�:_i�I@r����''���OP#x`J�sW@�I0��1��7��YC�S<R����)\IJet���"⢥m$B$����ρ�����8>5��ط�b8=�M�*nL��hdg��S�@8k:����̠��x�n�=;�Z�;���~zV���̫ ��>Dj��%�a[����k��k���lm����o�\�
�ݕ9��1�p��ry�y��b��BG���E�r3	&�a�M}��
#��D�G�E[8$�<1DQ�gDJ[*lF"3���Ek��)���x�=�"}Y���$+�t�B:�ӟ{�AzqB�H7���\o�Z�l�Ko���)�B���D^�L�A2`�n�h>$9ET�=H����OU"$��gћ�Z%H������ceE�E{��������⭿AeV[!��N�&�D;s�*�J8*,&Hw�hm�-���$!���8n�_A�]�|[�}9��l��y�:�h�Hޠ� Ь��d0Б��>�|��%�-�f̠ۨ�aje�](��K�������}9�]�.r*8"b�F�P�"zY�r�rmv9����Ɋ^/�@�Cu�@���J�~{r�ޞں�����‹4�6�84�ћ=w
�T���)�q�A���2���E�&�E����1�V��&�i"x��R�9k����ԡz������=t�wܠ!�����%<�<*d� Һּ4dZ! �adw�.�}g(!����Eg�#��#��X:Y߹'3ac�U?
5#�d9R|�[�&�fDX���'�R�H f��S	�x|����朠�s^�$��x�
���6�TElm5̉7x�����쐫0�p8�����0wv�p���D���kR.��*K�Í���d Xd}S	��mk��
�E�7o����*7I$���%"TY�%e"�Y����jē+�$�q���'���KAA-9<��D�9z����br�C�CXA/�27�A�f�^g��-�v��TX�<
���<V�ġ�):��@C��5e�ē$w(}c�~dn��*�$�w��D���#�|�fL&!��*xA�[mC	P�ȸ�W�O`Y[
���'��:����_�{�֏4�w`�Q�M����R��=J_O@<���8��Ȱ#1;�'���E�S$��hO[�B�-��#u�R;d&7)a"�=�����iB"�v,wڏ�ON^/.��x2L\n�2���L[Q�r>b"yc��U\Jwy�*m��R��R<���ݺ�6����7�p��0����c�D�r�u譕J�c�Ð��.�h3���d����|��(JA#�$I�Lx&4�m$wdS���>��f���%Z"!�F�}X"!q���y�#���q��%�5�6N�����11�q.�a�1�2�#��EBj��SH��%����_5����O`�ե"R�E`]��y��A��T��
�3W�W���s��s
8�Ǵ<�X�-��ݧ�f�؜��AA��@�Ʈ��AD:��F�]:��C�
l��i$���$��WZ��n,�
�M�K��⁘��T���C�%�ި�@D��*����x����H�
%�
b���cT�D�*`����ɳ�;�C�^ٌ$��@ɝ{������j����#��A�YsػJ 8����ۓ�;+�"S�"P@e��G��b�QL�m��4&���XAd��0J7k�L��"a?*_epg����qT:�!�$Q$r�2{
Z��鑜h�n#L���Z�f&�[IQ��H�WI��)L2nE��x�|D��&=���0z�8C�ыy�5+�
C;���N�y�,��q'9ꀠ��v��w.)Zq>�<d��m�����/+���}�9��%h�̀���D�$8u*������X��� ��e,I�ߪOV�A��"�R.;
m����!Z+��>#"�yhK����T(D�*�4�fpz��?���{�8��n�%H��&D�F䐇�QF�<�I���ǔ"y�>,��0��8y\��H �L�Qo�kj<�>t��t���thL-��[��:w��$�6?�f��B�8�EnQ͛,(����%k���N��͜�n�t�|R��D��̐�Ykf�pI��a�� P�Y��XU��Ǯj�Y��j>�R��
|����%�zt#���36nK�H��P?�iC	F�K|U�v�����3��I'�y��y�M��HQ<�K
T\�[AA.P0�.L4Q�v�D044.W1�K�{���{U�z�[�uO��x�a~VUwWO/rȫ��5�E�,���3�!�{S#ÎU�;��;��+�tb?k����pR�
�J#2RwJu��钋��2���H�ܦ���ӫ8C�h����.S�mF���4�R�H<�)BU������,$V� Q4PP$�n"�BHwz�"�(��}�dpi$]W��gnM�M�@�h�M�(Px�*���X��>�q�K�D�f�)<�|0N������:X�5�K9�,���{�$����� ��
�{:��G�����0h��|c
�;�+.s�XQ/�r3Ni�D`�&rUY�r�B����X�a]�D�X��� ����u\��~
V� pt�l$�����4��p�}��c
����{}w7^�A1��
�p��s'5/3�mu��K�@ 8T9V㡀q{�A�ls���"b]�낆T	V#�;Y�:#�c�@����6��%VϷWV1[v����b> �o0;�D�*Xп���=�񟲐�u�+a����!	ȏ��t���6ό"b:��f�d���s�P��q�i
nORm
�� ��1��]�:�:bF�F����m���1�LY�S��f�/�[�7�$w���7��]
@#8��z؟*GD��_\D�L؇Y|�"q ��A˻mEd�.�
��-֥09_��yMO�J�µ8��)�ָ��nkE��-��Ү
%x :E��9+����֩/>K�/f!^��s��^�b��n wm��<�
֋k]V��T~`! ����G �F���X��@�ė�z�bV����(�ЇYTj_kr��ˊ�0��S*r��_��NH�x&
�i_�1�/��q����$7j�ڗZ���7Z�|�|�\����d��b"����b(`!��ŦUaQʶ���#4L�c�vH����8�2���0M_׉��2�Mc��z��0>T>���
��dͶNb���bbaMtMJ���t�i��U	��X�|��屄=4�&������B��$BI�%��V�`0�c*	��� Ť'�{�T��7�Z	01T�b�,^�P�u��H&I}J����ɐf���Zֵ�"�U}+zJ�B_Ɉ���m�,�J�+�M�m�<�����dࡊ]z��Oѐ�"{��h�P��,F_�kYH�,���n>EAw�F#$tu
��/�B�W���z��K�o��1.���`���a`q�h�����*8rp�׺L���rr���,�ū�W��f�7I����Pʳ�O."!�f>f�f�ܬ�e
-v���%_HE��U+PH�BDl$50G�Ӑ�W�ćA��=ksQ
�	��‰Yt��
�@R�,�#��l�bu�c���DӋ�6�Jԛ#�¦W^�q���[^_�|U��?伦� *�Y�%���V�: ���k��HY
N�DDy���1�A�7Y��.��
L'2�A|&S#��y`��2{,B����%Q�D��"�;��ԠUy�#�l3��ps��
�T5�p�H�t���2����< b-U�A��k��9�����(� �pr�-��n+X��k�<+4��T[$=�:�)��6��0)�t}�L'�?Dҍ��}�<�/��;�z7�%|W�<U�(U�bF�&�Gp^1���61�m|����&qZQ���Dz������\�4,�ʐiA)�s��}=��E\!B�O(���Ǹ,&�$�k�D�F��B9y����<콮j��|����᭔"�~*�[o������̯�{�5.+4⴮�U85���C	�mQ
�M��|R����
��	�KU�P�=�]��`$��NV�d���)p�'u��-�M�7��+�E������2@`X�Z�7ş�/�%2ҿc�*rT���
�hia#����PG�
$�"�׼��2��z:W�h�D�_�rV��
���@�+XU�F����U�:bz�
X8GF��b��*��:��U�Zg2�T�;��T�"�+��
�V�(��ְ��p0��(H����yԅ�{\�����
^������"ˆ�A	�y�d��W��H�Q�w�y(���aam��x�7��n7�` o�D�(�g���^G���:0�}�8]T�<@��B
DVqćQQ|Yi
�
��HO���k݌��K�
�[M$H�kQ���Km��m�XD������3�i{9D��8T/�pE��?>��GoS/�������
I�@�_1�&c�ɴ��0�9_^u��$*��׻S�;f�6z�">T>Z��S��G�[���>����-����T�Cvs�D��XGD�'@f�$=��Rn����QHX5Y�oQ{�De�[�o⊑���o�Οg�(
�$��X��	�"$������hDE�S�i$
B���d�B�"��Ja�x~��5���{�;��o2��{νw�Lȷ/_��X��f"&@Q�%Ⱦ&0`�]5x��F^��>@
�XNC������fQ��Xj��6bTd%"�Mp#'DEɃ���C�g4�Ґ0���F�Œa�?�9�Z�{e�+��)Fs��Y���i�:a/Gwt�C���E$
SX�e$�(}��W犋���HhK��{���@�^n����3�*�|̾���\ET������}����(�U�s����&�T�c���I����!�>:���q 㰆���+�"S��X�T�h��K't��`kA�E�?�V�����D�XSp ���Ei�>��3x�GL�ޡ�~�؀G��b�w��,���4�O2/.�Wъ�p���֡zߗu �?��|ڊ��)jxC2"��g�۲P���ݧ8�X�h���V" N��C]��@ʇJ�a%+��I��1J����A�&ˠ
)�6��B�����H�$��uSO?=Մ�� ������zf9�RY�l�pWV�W�H�aD'UT[\pnQC-�9���R����H?�ɻ��x��O��8p����Ey.ul�+���.�p(m��5Ǜ0�\�ӥ����*���@�G�e��z<������G�4���X�N����aB���0KD(W�jmүҺRUT�%�����y����ۗ�����߸�Zo��u~�c�]�H��K��WdI��2J0�q9�M,��'o�f�d�|�:��G&o9������"��BH���y��J =$6�g���a4�'k�y�ҥŕ�k6P��*���7�2�kf%��Aŗ~�Ʒ޼|�3�����4x��U�e�
�5u��:d��S�'V��R�Cw=�>=�뱟�P0-�
�䴙��ȣӚ�:�7m!} s�c�r�6��$�2ha��/���?�4���(���=7�zx���k���n����O2�!�pxKH�悃�kt���={^ݗyL�ܞl�l�2��s_q��]�8�<b��#�"Í�ÇA1v&��aW2@a�:
4=^<��J,�[�֩e���
�d��Rj����I�]���=��/߾�<t|�T�a �d�[��2L�t'	w���W��&�v|=�s����l6ٲ���ٕ+���!ȊW�C<d�C��"s���#���Y��[�Lzao�mUm�^�FRAZ��Y�����BPd����yq�x��?j��v
J
�ZL�Hp-!V�H\��xi��W�!C/u��₮��t׋���ы�I
^<)�����M3��I2�t�n;��;�$�yo���MX8����4F����ֳ-tV��n�z��"����
�������1-MKB`y4qZ2Ō���Ɋ8:6.K�_;H�m��C[O�n/p\�;���3Ćs&��Ϻ#��`>�ÿ�luG�6�
���ذ CY_�����' L���(a@��sC #v�b�W��t�p�|ŠΤk�)ϖ�W��覄�n�>i��(Q,��7���^����	�ʣ��/�&'GGS�u˗+�֬'���`�2��8��E!AD��:??��:33�u	RJ�`i��=��F_��ŏk�a@BE�D>��r~�'���2�i"a@�
O��A:�J�9�^q�ZCs+�NN���n�|�,�B�g�{6�h�䳯?�-oD�~�ٙqO~���ZK�;GŴ�� �f��*�L�m�M�N���ChI��Ae|��Lj�!+�k2���po6OU�R��
�v:�*m���(37�unA�ILt��������!��9/L�7#_&�_�&��������]���@�9�?�[�w�|��G���3V��8��~;�9�.�ݙ�f�a�	sa�<��X��}VoM�N4hx��1�����#B#��zБ��W��ՙ�p�4�ڝ�l'k�eGNA��Re��ep
�Die�b��qG+�j����e��Ƚ��[��`�n���Һ���>�t��i=��l������ؼp;��Q-w�J�������![Q�$�@����?~f�p����ȗ�:��Fź6�`G��D!?�/�p���X�>�
�>�B����cK�֎�K�QV:;��S����~e ��T9�_�mۥ�]��0�G�u�%�u!�aٲ��^.�WFr�_2M~q\��rI�cNR���O �ǀG�a�:�F��x������y��Q���	��v>Ƈ
;9��'QU(X��#,G��Kr6@�F��?822bYL.r�* ,1k�?�=�I�Ϯ��=�Z���7'�
8>�"���rj$l}e�Α%MQ
k��j����r��w���l.��(�x"
�4�!���)��v����)\�f+�&�(��tE
;��l:-��h���v����z�q@�%���
���|y���Աzjam�p4I�Ե���
����ڶ6�A��H�b�
<u���7e� �;�O-MCȗ!�I+a)��f[�:��2:g9{��7�?�0��՗8��RU�S����kQ�ĸ��>��)Q�y��#�^�
�"���p��&��Rʣ�P�ES(f�L��fIx�����o��[��CAҺug8+Am�mWӝn'�D����R�٬-.�	�!�<���$��HR$���U^& u��"n=�I�]�wt$
/7`��D‡�+�HςCqWYP��@���6�"I�3%�x���?(�%[*�/��45u�|i*�(��uXIo=�xgf���n��BK#�5%���B'-���v}���rJ4!���%>�2�8{U�hx��������3pv��i�r	�Ǯ�o֚�Y+��B�nݺ Ȝ��ԊQ��ܝj5떪�٬< %׭��/ �P�\�T����L+�Q�G�Q��SK�h*)���
CR&Q"��`|�6���I�:G۶O��c[�1��;mT!�*U��e���YfD��*���B@��ͺ���9eUf���O�d�i�
�b:>�U5c�oU5k�boj
�6��h�w�ْP�q�ňB3��VM�a/!
�{LEp03�mY+xZ�4Р����~���P0 K�gº#�����L5�)�<Z��p�;5���_@��XQ,t���X*�lY�S**r��AN�9*Dž�>r*L���)��Q�
y�@T�^��ہEV,KQUjj�pk�)c�es�_H��3/C����ᵜ<�!�\�od�0:Yhb��'Of6�=%��P0�Q�ynel�ƴm���r�k�v־����+GYLq�-䦀k6�ϟGh
J*c
��k�uF0a�ڥf�N�R�M���k�~�.' W@��u
�/[M�T���G?�:�U�0�˪�@���2P&� ]�b%��M삫 dv���PB��!D��,kVR�–�E��lXA`W���b#���~��w��Yu�>���y���y�8���Fb�^��H�0�N��D�J=>��>8ƈ�i��5"mp�P�#�\N�Mz`��!�?d��q_e׶Xs��EM��rt��)W�x���÷C�g@j9>�k>$��޾门�s��ӿ����w��r�^���X,���!�s|v���n�4U5*�W��j��y����.��T��:"[Z�!?� �s1&��?���ñ}|�ǧ7B��5��p8��f�<8h���:�Z�w��p�X\"8n�4�9�� �)����h�� @�y��x�Z:] _��=���6<ldx�1yE�{�����3�x�\��1|������,�܀�6�O�+s/X���pv�]'�m_Bnԍ�n���L�������jR�R%B!�$T�ު���W�����_{�E{{�B�ڗ�P�����{L�c�c����a,
������1����{����-����/�G�x}L�3�U�Ap�B��Ȏ�Z�{y�����D٩�\�)ШNdO���#��H^Ad��2)%����H���K ��%�r��x�Y�Q)�S�Ui�|hU������/��| ����Z��8�h�1���n��zѸ���
@T3n�MDY�h0X!84�
��Ls0�F3{������|��ǡ3��x�N�*�%K���$�7[��D8��$��q�]g��俀@�PU��r��!��������M�j�� @��W��w�c(YYV�z����T��+�H�F=��u=��hAQ��F�2�Ќ�~˜"Dt_Cn�
p]�-����:ֲb���ߵ���A F6
g(�$+��ϬC
�����B����N�8M��\
�K�G��[�Yg1��d1q2��ؼ�r1=;q�ٗ�q���w3�\�j]j=o��Zh@L#@9��h>���"3��V^�0	R�Y��d��T���4r�s�@x�"��f�2�u
dORFE��m���9GKB����$PF�!��Y~��!kj~?G�:b�H>��
[T,��׉7��̻����~���`	��L)zdu5���Y���@��"8�V��1��l˶�����_��2��M�=��'��ؙL��	)B�ҽt<�O&�
�٬���1�SJ>_��nI�u���;v�NsN��(
 ��� J���:.����g�hr)I�'�k�G�"�XF�tH�K�;�9���-�E=��-�"W���7�]f5�f�H��K��zo/��­>��l�_���C�|�>�/�r6�Ñ��$�Z���K�A��G��W5���eU-��X�ǭ^"�"��n��uP��sbƱ=���O��G����ęH�|ٯ�JV�����
��L��I��`��?ܟ�/�"��yX<.��u(\�1�D�UtతX�r��er�@"�4�DA�Nk�@��Ƿ����������/�8�!��}A�} #��a_C�†>A�z��#���U�����=�dF�ğ\[Q˚��I�3Q�	Btq�����V��OH�q�n%B�p4߭2v��V�桓P�L$P��H3g4�= ,����r�1&j
�<�u狓���ɉ��E THRD��*��
�)p l�Yֲ��Ƃf҈�&>��r�16!�S~3ًh@�Ȟ�D���:��h6ө�͗WV�x�w�g@2���|�m�)��׾d�w|�_��z����g>�{M4D_��2+I���2�l��|O���&@��yvߙ�����'�a�z}{��:f�A:���tx���q��Bʸ8-{�
;ѥ$�u��dB&_�<d	<C�?�V�3qH�8U5Q�S�-��������…���H�c�M~���A��`�>��L��A!)BsXh0'��f�zg��&j*���MET�/?����f*>���t�OT�^��_�Y�~ַw�5���DVB�ȋ����)�>=]M⤨\�>~�խ��x/�?q��تo 2Ѻe9�����2[�wF��Y�
�Be4��'$�#%K5�+���>^Y	V��`8�a����cѡK�U�����Y�I���0D��Pbu��IER�)����E(Y�CX��4z"��4�+"D"�+4�
}s�D��<D�jF��e�2�n�.��@�Y��SK 	.��v��U�[w�����;|��!��ؔ�_�~}�|�WCr ���@��>��.�:털�<R�;;#P[P��ۮ�mb<�H�H��	�~���H�'Y[t���B;(5$p���"�u�q,� �%)�X,�+ڞW.$p�]@�=P���d��8:⩧��GX�r�6���UNK~Q�| Y�T��|a<�π0��8ڌ��S�_�y���s{�C�[F��&^�jU�]�[�_.��5�E(��?~�Z�q��H˶�o�<d0ѭ:��w�.DH��x���큍:����_4��ER�F�<�vQW$� &�$���$Q�'�{2qEB�
$�+�*���hP�'��x�4�Ez
"���3��z�=B�d�2����;!��6MؔJ�]� Mt��4$5i`&5x�R��~zf{y��o�| �����k��j~D4�Fz9K�[4s0sЁ�_�����5-6���;�;�W_-��qj��	=�t�r�B��B�.`�;(O������w&$�9����������>�C�1j�'�!�-
����ZH5cc{1�t�^�8>�$FHvH�R���E�ˈ׺m�!�����8T��[���9���|Ig��C�)��lO�Gm�!A�ɀ��kb�d��+�a9�9���D���?��u޻
���!Qԋ��U�(J!�֘5��;�7�X�/�Ⱦ��;>��y��TEa"���i�t-L.j!�P��UGHŠ+���3Ǝ3����'�ԟwd�-��-�x�Gm&yc%ªQ�Xh��˙���Kɚ��&	���H7
N}�3�!Zቇa����_/�<^��i���: C7�^BK7�w�Ѵ2���
H�0x"���$W�\�!)}3�n\��.T���&��k�L
�?S��2;���;�����=�GR��z�/�/`/�\S����Dt�㍪=r\�y�j����-��Z��!@��Vuy�Wݺ3�ضE�G#	Q�R�p����@��21��b	WJ��_@x&�,��7�;�c�`t�P���Me����~E��•J��!<!j�ȍ''�ij?ut4��iֽXH�,��8vY� `)��n�����o�י	O��R���z`Y��ȋ��q�Ϳ����z���76�^x��[J���O�( ��5 @d���werBݲ���ҍ��KBvߦI�-f?�}��:؃�Ԭ�&]+�OMn�R�f [Y���cO�t�G�h�ݟ]��pxi8��o �U�ad����j S�%��I:�WL�/T����"�nkoa]�M&��U�.q�z<�nj��ͣ���͸&F���TvIeS���g���I�cY��$�4���ͧ�y����/���uҬ�H���{�/�3���r�7Dڏm&K(�rc��E��F����I���dL��0��d��
"���	��ۥ1tXw�Т������`wpp�-��#
'c��$�Qlo(�gS ���҆�N�$]1Y������g@�A�4�1��pPH���K\ݟ��p2�md�)^0�|a5�oN���v6�M}�A��69A�2"b�K����y�bó(�/�R�d:��~9W��Y����ޢ<�L?�0_w~���w��F#����7je���ko��$5���8��ж��o$�S��߷Qj�;T/Q1�Vٌ�J�a��߱x1PF���X8Z����� ��P��MV�e
#��%Cd�/و��Q-�U��1u�x�/)��I��q�3�;x�m�y������)�BE�쿰Z�v���&]/=���o�r�z6[b3C�Шb��b�HR�pXԪW�Hu_6�%g7���y
i�|��Q�fS�C��u�a��g�Tɂ��f���r�v$>������G��@������팬:�lN��Wd�8�R8����ݭ
�����z,�)yD���&>���%nn�,{$@\%y>p1B�(C�PB��?�z@X�[��/��B���ʝ�{���DZ�Xy ��OE�_2��?��|��d��E#E���ۉ�Uz�J2|�-P����J�|�Xg��9[�O�4��KQ�7�g3f��X"�n�[�/ҝ��g>��{f^Q!R�"�65��nޖ��`hU��kOnX�`k���pY���V��A8���g�h4�e1E�E
Y��W~(���Qό��I٨
���
{����:�ж�0��|��b�\
A�i��ApbϤ�R�)ˇD[�	%�d��"�hڤ�iҔ�ҹA��;*�*�Na^����+���{N���O�4k�my����Ǜ��
ׯ-no����۔�7��C�zt82H�[.��$�*ao0�LL\�����l�Xu�SL���V��j��6CXau�jx%���Vv����QP2R
�Hi����V?K$ꅬN���t��hWm�yw��[O��]չ]Z���?��*n��Ϡ���}bV@�1���R��Q��xE�F� ���d=&Ip@�bP��4��)��J�������v�.��II�)jd&\#pș�e�e�H(��~m{�+j�Tg��N�,�X?���s�~a����Ō��u1��N~�Vp<$�h��*ꀛ�0b���J�ҳ�=M�CrM2)^*���1{�������FZ�n9�v������]{���a��}]ߟ�*�W'�R:p�Qy����E�G�i(���N�f3�*��s���Yؐ��3=�pMh������p��(˟̅B�N�� v��<K��‹��*���ە���y}d!Р�Eo��է��N2��k_A_��1���=x���,���@h���L#��O�������d��o�|��2tAq���xA�[�}�7�@6	?��2RЂ;A>���[�)�i,둺��j�`7�t��H�%~D�p�f�B^�ǒ���z0��Ί뚺���?|������M������p~t>��L:��V���l���5���k*\+l$���,�Zj��%��ĒD#d��$����!5#by%dyYS���
�.K�9��|
	Q۸r
p㋩G3��]#m��K<:Tf�b��/Ϭk,*���=��<L�XޅI��R$-A� ��Z[��S�͓���l�0����|~h�\|m�џ�O�ɇ�ˍ�/�s�*����h��)�c@��i��ձ�^��e
u�� ��x �ǶV����LTu@-�56K��#������'�O�ݓb�|)�:6 _EaרA�T`��$��s���u�
��<��
���� �,UV��+�9�����!d�9�sK5&T�0�R+�Nq��/��зi����;a^�#�`��	!8C��)��x=o{���o�q<��6;��6~x�b��)���C�1���ĉ������.L�!�wL��N1>�A��2���LF#tEӓ�ir�l��Q�D�zYE����`��E�U�|�k�2q��˻��~xlkL:���\��f�k�7.z��Х��'�ɡY�-��m���d�������b�F��A8Z�=����6��vMa��S[\d{/�'n��W�?���Y[l';�(�
� ��q B��]�P����o�t�+?ݸf5Od��DƼ���%D+�!��/�g��R������p���Ȩt+�QՁ���l$$%$&+\�J:e�o� �
W+�r"��g�/E�gg|������9�[��,s9��/o6�K��+Jr��fK�Hy�T�����C�J��jW����XiL��S����i�P�W��Z�?���k�.��L�E�=�s�od��I��l y�xzR9
)��1�8{#U0�}D����)�0<]��*I4���J;L��D�*�� ��E��=`��f��s�L~�t/ ��L�7�� `-���3���o!��(TLP<�FAN�)�K��+�M�q��%rD�#�$f�kH�l���A>L��>�Z}3#333##.^���y���h�?���l�T�OB!`�6�������[�� �~j���L��UU�S�$dU��@$jU���ɳ/��h%�s�B�������D:a8���N:Ѫ�mB��_z��p�4�ze�'���c���J�gQ���M��~MN�]4�,B�	9��T�v�@�C8����82�u캏b�D��XB�0�ƕm�I=_��,\
�7�2`@�N�>F-�?f?���1�}���O>9�A4���K�\�5��4s�4���$���o'[/��ɴ��z�Z�j0.�����-��gHm���p3S�IU���69����֗�Ng�43�jvZ�ॅ'��idq ����[��oev:�$-�_a�+�'-�on6�IKs7n\$s�u�Uja��	�ɩf%�n6	YM�$�9��e$��4�1�#~�B���bj���+׈���T�~:�-�;��`�gL"���(��
Wnz�'����3Ք跊� 9yO�zX�C�����|� �����PPIJ�pւ�a##R @�dvZ]9>T���En���^}�Cuu��n�Rb��_����g\1��X�C�X��r#٭/<�����4㒎sq\]��P������T����ƊG"�����'��`��?�ͱ���;Q	Yh�J3U����z�I:�{X��t��K��;��1G���5��+�d�<d�I��I�H��uK�c_��gU{��s��"��<&�����ft�y��A>ƿ��/��;I3��pq?�j[�6�D���έ[����Xt��j�Z-������vp?����ݩ�}�M�]�h.Ż��34���ˍv98�쨵so�J��[�n�6�oZ_m�A߾V��X��*9�'"�ω�Z�^RI����A��B� �I;�����A��$�uiGݜEO�!�9ØΝRY�FƷcxG�(���Ŕ��P����C��$R�HT=�d�_0X�z���-D�@���=D4@���`�a�M�̘FFF��088��g��ݩ�Zw�d��N��V����>���7�K��Ppk�>sy�RZ���?��P&=��q��.����G�r�%c���4�����|�ޗ�.�PPx�q"��D��z�RT�D#�oT�,!L!�X�O"����!�+p='��s�:�Al��C��z�s�Cp"������k%y���=FF�s�*�r�"B�0�]�����0���wɃh�؁����Bw�F^�S��G�Lɻ,BRb�� ���Y�y��;;;�R�t�������%f$��onM���c��\I����e�Q9��j�[�<94�'�t�K�!IZ���a�}��{\!�C8>/@�H0�Ij�GX!y]��(�bQ�J'1��ܔ'�W�urf5�"�E=����u�8���1�
<DB޿��#QK�5�\nìw�%wN�@�NÎ��D'�,^ہ��/IH�x�@W�H���J�4+�GϦ�=e����\.\x��՛$��]����g���,�χ�m����C�e�]�P$�FH��N����J������~��I��&5�ORCH$�����_��}v—8�SJᬲ3�醋�P�,B-��_�N�B!/��r��)�U���FQ�<��l�5V�b����K��7Z�����pX��w�7�X�O����nO�Mۤ�`�u�O��uY~M�jF�d&N�"(f�Wti��4a|$&��c$��݆��s�֦G݉~qː��
.b���;���i�]�E��� �.������O	 �W�G��c@B�3��춛�[�O?MSq������ߪ��������}�޳�S�q�d@���t�*��v	BR��'�
W�0J�� �E�i`��"�oHT��?���q�*��ȄA�vc�{��\
�d�bǎc�^;7DaQ1\��-
��N֒g��e��8*��$�R�\�ĬZ rH4Z�d�T��S�>"�|`�0��+�^��0���ͫ�aO�����i1_d��k0m!�w���g�|�5��ý���͢O��=��vrw3�� ��m��Cj�V�9��_�y��/����@�b�!�)2��:����]%�C�b�1G�򄛅\����.�h1�wV�x�.����wY4	���
�9[}
�q�`�(%�HO����E)6�Ns�v��Q=�F�.X�%�!�"e�b4��.�6݈e�����jQ�0]�&��)l
˜�4����tLrE�/:����c<�~��L6���Dv���MZ��
k�e�v_)�-��:���	Y�L��drz>�ws ����1C۹�+&s�GP�\n_a�85HqD�S���d@'G
�����
���QE�ŝt���^��4�u���u����.J[�ީ�e��ǵ�=3�z$.�m(R��Z"Id�A*S��:;d����O�"����ָ���3cR��Ώ���19&��e�N6ꗏ�8.s��'F�'Vle��9����l�D �*Z��WgfZE�pf�,o�<nu�2�ɂUV�^m0�$�6�7��H�7;�|f��,!��k6dsL�ZE�8S۷�q�!�����O�v�1�^�{����?�9Y�-Ӧ�ゐ`�.�ǔa�>oH���i.�|����c`MN@�����)FU<��QY,��0xu ke�u�z�]�l���dҍP��r'�J�݆9����a����
�@���,X���#i�@4�z�=!�eZ�X���F���kW��~�Q��0rd��:���-r��*��z��`P��m���~��D�����3��3��G�D��{�ӣf;�×����?b��#�m�oe#cg����ݼg�X�s<j)Pֿ��M��d�1&\��/� ��4*�
t)E;�Q�l�cA���`hD�c�ό�Ȁ���dT9��v��a�Kh����)�A~���!��_W,���C�ŗ�?p�O.�3b�֊������DJ��(���|
S0�?���e�d%3�Xf�L�+!n�v��mlM����
�K��9V�R0$�z]�E}���Ww7w7?Kyy�f�)����4��S׾=:�Cn�n���m�
���)����<&	BWz,�ݴa��tJ��_�M3�顗 .�z�1S�C��ܤ��:����3��dZ��M�
��5[s�^F���M4��k�ÀK��)�.�����X,���Q�ԁ	L��=����?N#����"[Bb����܏�z
�M�Ƕ�z?�>����a�����R֥i����ً
N�A^5��*���,Q�JN q�8�{��\{�Ӱ_$Wy�zcP0�G1���K/KqAaY,,���*�����w5�.��K�ᚣ��ʦ\��`}K�t}1����,��+�����-6�|�k�r�aѨ'�,[���3���
@�k���v���w�ߌ�����R��C;��2��7Ϟ>��:y�R�$��U�@a#(��2G_�I��r�- ����i>���j�o8���႗r�J�q+���$��إx���S�ia�$�����@ [i�
�v*ս�\N����o^�RȲ(,�2
�����i5�Bِ��v�F("z�йD�ef*�d1^o4��翼�n�EÝ��ty洩_�t2�H ��po.��������jgժ������� ��N؋ɲ���_9��u�Ǎ��D�H���G�O�*��o0YV��_�q5zmE�
�(��>7�ύ
I���VR��h$��
!S�*� 
SN�OU���葯�B�"���ς���C7�(*N��P}h�^�
��LYJUG��y���S"�13�)Ld�)hd���Q�8h����vO���MX--��]_�T_�1�T!^G:v�zS�:`Fえ+��'(r����i�G�*��먛�j��vv�Y
��X���fm=����5>T`^�7�|	�#B�}�
J�	px���t�<���f��Uw߸d�8�R䇎ӧ���L��h,��ֺ����D#)5.�tM} ���y9��R��EB�������]V���i��)m2�u2{�������d��Mn���z�h�o���\���I,W�Og0X�.F(��z;4�S�혆15�i�����2�H�Qĕ�x�9�y�lV�ۍɲ
<EׯO�<r�-��
;�d26�' �1���7��A�;gh��E?n�y���}a������C�t:�%O/
��/W:�!�}�6Ox�1"1�$�%	�Ŵ���U�����K�X�{BW�>�S��""��D_�tW(ő���Ny�X�H�o��Ph�+��f��`��Q��%,�W���|��*�SȨr]$��7���F'����O�x���!d<��	��_jI$�0��#Z��@����R�%
��:����@�n�#e6��|dx���-u�Cbe}���ūJ5�;��P��ȍ+?�Ьi ���[��2���?es�%U鸛�?�����=L�3s�q��X���-M�rHqW��yh��5n��͊��Qe�H�����EvOb�O���Ն߃����$��EKbalў�d>;iK�O�P�и��
rŻ�L����A�u����˛^zc�̙�o �g��h6N�6�8�����
D�@Y��k�7M�`R�Yy#�z��}��p�L٦�զ(����d_jW��g���	 1�8�
{�VL;��>%F�S\Ë��p�Ç��Kg��/$�	xf��'⩑�;�o�沧��S�uxaE5LR
/��uT���޾� �Fm%�*��4�U����% ��~����O�t(�p	;A�����J�HL}~"o?e-�"p�&�ѐP�e㘬Pl�$���J�%(�{h<�c��W*�yc-���r ė9/pW�@��L
�AFQ�DUԝ�Φ&�?G�o�L��k!�����С���Lgx�@�elzȯ[�W���Up������ڴ}�Y��>9�o�c[�����e�>�}���ĺ$��G��?�|QN�Y�����;|��v�5��z�V�ĵ6�Ux�T`*dhf�%{_����E�@���F
����d<��uO��"�vZ�e�2�nt�t;n��Dž�p{�cxBp�t=|9�'+��7�w��sYNcK.���kϲ�o�K:
^�=?<�k�/N�m&�X��w#-ވ-�&��L%���Y��q�����wo��CW��*`YE�36��"���x��Ґ���[�}�{�J&c��e���\?�z�J�䮙jb�	�!�C�0^[�����3���"�v�v�M
���Y	�˱���������
���+@uB(�p��_@�*��x�r�M�ZQnb9�g��tR��Ƙ�Eh+��br|"�����xW��@_$2���(��G�t<�~�d����Kk�`�
@K8�d�:������z{��:��J(��i�%������..&���ҹ4�xnW/��U�`(���ش��؎eu�t�Q��~pK۞z%�WP�w�I�~^�E����#�2�z��F?.ԙ=K�
^$���=�I�ҽ�x4�yCBM����4}*u۹����e�ų�q<�dGy���q$�w��a.j�v:�)V�1㕯pC=�l��X~�r ��2��6%@��;�Pv;��@ �Ęa��D4
�-��Ƶ��-��[]d�"W����{9^睽ğ���U���w�o����L�� U��l�����
R�§�?��"�Z�����5۪�����b���%��������[Ն�A��ZQF�K�z���#��P�P�±�:4����Pn���W�;��qTU��&]�*	�T:�
8���V�4k����͹l�7E���,��)|Y	��j\��x)#��O��6��x�4�^p����_/�8T)��ɇ���e@��(P�ៈF���I��c��>�cS�a4�N���*qt�3{�k�O����G�;���'�"/"�D��|��yDU-��Zр%h<�)�c9�]�@\I�S�ϡ��
��>�
�ޱ�u��'� e�_��{5H0!κԤ8�N�n��r���1LuM��if��P|*ž����*ɕ�HTU׺���S�Twhr;�#Shǟ&�*�̔�_���!'��[+
���,���E�G�E�[Ӡڄ�
�*�>J$bTb3tdgV�	s����0��y���xS����KG�e�*P�J8�;�mHk��n�����APY�P]���IWW}���
~���N�h�Ψ���y�С@yӵ��M�Cg+J<8=D����U匤i�����X|�c��-�ri:���|��FIP��VWbւ��:`�9���5x����>��iwl�Eɧ�������<x�L\�e��|E��*�ʱΘ
���:���Nm2�F0��ᶅ�rs"�?X
��QL�hi���
Ŀ��w�k��+��&恑����o�G���;��_�*��J ��rl�v�~�پ?��գ�<yQ8��z#Μ0n�S�T�a�$`q�$rU�+�c���V�I ���T��N#�����:��c�2�Û�� OA}p��c��n�
s��P��m��2�vw/�>,�=LJ��c}s,䭟h��K�VS���(hii��c�M�����>p�M,��RC J�1\6�NE3P\R��x4�n�"�v��^#��x�?�iʮ==���ݷ��������"��;s�>�ْ=�>0�3�����|�ƽe�|p��:�7���Q�J�������l�,�6p�hԣQ\�>0Q��-i����^�Y��3�Y�JH�o�f�/]Ꙩg៧�z
O�-�(�_���U,��ޤ�)��]�T^lݽbz������ٻ�	
Ɍ�������x@���
��x6Z�u_�_��1������
��ea3�[A�K"r�K:+(�l�R�G3�RȖ����~xdf�xkxaa��_���/����T%��8��f���a��F;|[p �ѵ{ujÑ��1�N��ޱ���w{��	���H��_

�nJx'�&%!�Y�3�����x��Bhȧ�v�V����y�b�����F����@i�
}��7�
�ʻ#������ظF��h�9>��#5�<,iѶ|�L��#iLkC��U*�,�t��18��@eB�K�i{S,_�-��~` �u� �(`P��fF��x�7S�"����#lꗼ��g�>��w~�����=��F,	�J`�r���`��N�ޣ�>��ƍǎ����`��+�;6���W�>ظ��Z�K��O}S6A"'�Ld?��D<�۴�Y�u�f�m��x���bU�O�v��JK��R��=�4&и���އ�2d��W.��+�h��@�]��4�/�7�?[6pОd�Nf�F����n�e���|�`r6���ਲ਼u�B�b��%�}V��j	[\~�e��D.bhtT�:�AS��c���z3�v|yA��!��g�n�2�%QT��#|��㊠u{�o�{�>�}��pH�9�Dd�ګW��:��X��0�c	��-��@6o>i� <H������ܦ�oy�l��$@
�q��`A�]4U�=����8$�+q��۶��gH�/L�gд+��5�9Yy�p�Gv46���7E�be2W�sI{���Aa^�0�q����sY�qm)JV�y�Ph�n�f��h2}�RH�U��)��cY^zQG���8s^M��5�30�jL}c��%��0���1�'O�"tڏ=x
��ѣ����c��>�=L�l��s�O�`�!�x�Yh�'������C*"E�q�cZ�̕?���F��Ũ%�݊
�^SЏ�"�9q��֭[Qdf~��)���t��f[ϕ��|�α�ȡ%$J�y�)���f����?��ȧ��o��kS.ds�ݖU� �0��Zgiq������oe�*V�Z���ݘƖ7K`�S�r�F���E�O�5"���A�S���8�C��!��p����W���Z����~pu�������;ƪ��,t|<63���,{�) h�w��(��S�KO7�҉��B�k�e֔g��ݰ�n�bS�
�tX5�h�Z7M<5v��a���In�<�9$l$RQ�V~X�x��[ ���X�-�V5�-i�q���H�!y����R�>
�/-O�jf\mNߞ�5��&�������D!3&N'҃nF����4�f4��24i��Q'��'��au�l,�q�>P5���b"13���?��s���ͬV��l�� 乹�Qd���__��z+<�GL? ����Rr�_6{(W�W��l�������i�%����C�N�:����@�˶m����4Þ�[޾���9�@p%�]�P���(��
�8t<�hɧj��;[�-��k	�`����X
���=�+ɊZV?�����>.��KD��u��|J%^s;Z���<<��K�oR�L"��A��@��:���~���~t�k}�XM
B�SY|��牠�&�51��_�DA`!X(6�ei%c��6|6W[����v��X"0�1<�ѩ2Q��E��z��6��S'NmۆSڶ
@x�<8��ʜ���&_*o%A��]M�Z�'����.C�5},·���H~��+M�ə��JwT5G=��OҀ+m�^n�V!����5H�'�0�@W���'�������x��q9 �_#�M�=!
���{V�ZU���7%��O��ԁ�̏6~t������'ݽ�����nl�>�<I�|Cx��1O7e�@"!Q�����œ!C;[@ه��κ�̏��.���A����V��M�FƦNmC3�¶S<o���#��B��Y�́�E��$*o0XdŇ��|���h��.�ZT��\{3�/����㻧+KXI�L�.`�I��E�zv��c�?=
$���<�[�L4`�P�b��s��,��>h/3A�!�9.�KC��i)�Cp&���=G7j뮹n�U�`Q|� ����r��+�&�noXذ7<�g��%�…XHFqŐ�mp�q�	Q�Ie��唃�?���O�|�W�+���xo�*�ʶ�s9?
���n�f�qːYB���,RUC7�n;u
N�B3�w��������}�~\f��5���1JC���ֹ/=����/731(9pm��D�9*LJg�9�m�o.��i�����5A{a~�|���ߓ�<
Q*`���_�8��vqaEٖ���`x���%�`Q`ye�Y�S;]9�a�q.��o�94Xަ3~ۯ�D�̐I���S<�Ǔ�S՛#Q�P�w(��0��i��"{^���G�~���'�,�%���̥�X[}��ML���M�#�vd��Qc�Ǣ6՟@�z�uC(��!ٺy
�0��“
����&���E9T���kM1�e��tu��ask$J���4��	aB|�L��i	���҂�؜�n+4�?2���~�xT��/����b	&煕	��-ئ�V@�ª!���F
fB�L}��g��D����Jm"���T{U�����Ȳ=�{Csa_Ue9=�?��f�3�*�=�>$<�
c�?�|�hZ�8�!o��cNmI��[M���D�;Sh�"a9uE�1�
�9���Kj�uh��^Z�^�kQ��ؙp�?v}�h�&�:xp�IT��D��w^��fZ�v�{��o��K�����V���!�_m��� g�霢*��(AU-T���rSs1�Ӈ��\^����`��Ӏ|��c��i���F�i���#&W�(�>d���>c�x~�U��I3өU��a�\6�h3|����*��Z�\��%33]/VKI��y�0Q��Gj�V#DV2%�k)���s rs��	8J^
���X(�#ʑ�^�۽�w0�JW�=D�n�ߗ�P�-��M/@C@]
"@0W�
�d��d��F�
Z��s���q��tϭf�`--E�zN�\�oa�e*��԰���mr2���Y�Ŵ�k��0�@q(�xx���t�c\��W�c}���"ס�A"^��2k��jʒ4�{�#̄�4�R�PI
�/�]�����:��K\9��:��i_ !�$S��j��z���b�����$���"b7(�R
L�H�^L0��xbY2�a y��r�fR��@:Q�q�3�bZ�Ͱ�q�r:C�ɜ��8)XP�ç���.���1D�984�2}?]P[a�52<<�Bs���:�ߺ��^b���!D<�ފ�8�a��!�P��df=���R�C�����T�8��L�z%���c�X����r���-;x��W�CCd��u{�^VS�O2Կ��?��g6�pKyiЬĉ�8 �Quh0;�v75b����BCP�)\�<N�Qa�|��:�U��௏�HB�����A���T���*r���B}u�Nu��\�Jy��!zh� p�hZ(8V�;j�/@�J���)����%�Ic��WP� �<Y=�Hp� ~
�L���ʇ��p�7C��e0	pp۹-������P�ֆ�u3�����TԿ_�r0���D��Ɩ�:1[�����4U:��Pc���+�6A#�޵�ƒ��x�A��Sm]M�F �LM4IsEŘ�':��9%c�"ai~Q�0�b�l<e�?ꐊ��KKY��>vx�=h�p�DFҳH<��w�aXO�i�2�nhe���^ˈ��6	���!��!AB�;bh,���ƞ�*:��	�{x��=f;j꼜�{����*��P��b����7�Vk��,*{N~��_�
$x�߀�X�R3Ĭ��R�y�¯>��W��WD����c��W¯����l�j* �YX��?���@�k�T\_�D4:;MG��(#u��h�Q�|��\�7��siI�O��*%u}���!�����U;	d$�8D�RUq�D�ݩ�Q�`]jP|��Ies�������s
����S{�dRw��,rN7S�I�i�
(�/����P�R����]E%1H6O��Z5�}U,l��D����y�d�+�Rl��0�8mP�w�6�s�N��eA�Xg+v	
�@���~���w9`���
ψ�añҟ�x�Zt�am��yb��ӷ>qB�I���\U
=�Z�?)��2�ʲ0��ݹ�p�%(��Q=�Dp�Өj�K ���.m.ri�:����٤B��H?�,�  !@$Ո)l�
 �����[�^�_�d��}�8yo�N���8�<�y��9�D}6�1�Q��\,ܝ��ʾC���:_�.������d���А��&����7z�+�N��5������f�m2�!4�q|�k���s�=���W�c[�f��
���Z�)t�L�J��0.x���Ý'��
 xt�'��UUK'��< ���S.m�C��\��l�^ԃS]7����l ��#I�M<�@��L���c�d|M*��|�^��l5� ��R,���۶NM�k��+�/��� �K?Д�s=�]�'���a�K�7ET�i��H7���8�w� ��h* "�_��J"�S�lB;$$��xHOX������X��D��o��ž��G?���G��$�z���B�2?HȣZ/L�Ҳ=e�����7	hu��o��@��b�i��.�'�ɀ�]Urn]<�����*Hʤ��${�V���@6
��r҅��y84��bP5�"���أ�'��pa�� ��+��L�E�V49�0<�Y�f~O�H��/먽���ԭ���Fl�dU��6�[��G��0~q���i��r'�0YǾ��}�
f�@u\\䣏e��^
r��@�q3<�9���LP�׾��?��>!�װZ�q^,�A�p�|�7c��h1H������O
p��L=�Y�'�8��ER��M��"���Պ%@�*m0%���n$G�
�%4����M�%M�ƒGi�1Q���K#�B�lF�|���B�N�n�'$�r�?�  x�F���2E	n����5=b:r�є���;GS�G4ű�M���^��[0�b��\@��|�!M-��������2�/����QG���Ғ_Cږ���f���5S���1����W^C�5��4���$���zu?���CG��?��,!l��B8��W D/JҧN��ȕ!�VbZ��'���5O�/��l������<&�`����M���4����"�9�.AHC�x 7���a2 ��'�w�
��By^�~V�a���|$O� :b�G^G�����8���V���r`�W%R@"-YBH�K8��JVDY%$K@���� ۝yGC+=�eFWxs����K?�n�V�'����5��~�_ݸ����?��o��mP�9�QԹP�Pd�3l�m���������&��&�����`{�h�0RO�0>h=����<��G:9
��`�}6���o��]fU�mi跫�����r ˀ�^�,�CX�d/��u
y�i� 9q��8ל���V	-�9�X�B��/�B;D+�����~{-��Q}K�5dE��$l_�x%w��Nk�9�\mjɦ؜޸щM]�r��`�dh�#�8����[�����xk��
j�����p��R�Yw2��b�X�MqDA���Xsyn�YZ��9�ob���K�άG�ª]�֧����RFLf����(+������`���i�$�!��[��\z�bu�X2Uj�l��2�0�! �Cb>�M���6�t�8����ܕ�x��{o�_�km�6���@#��7�:p���:m���,�|j��NH��u���G�{dr�j�a�B���km�8]�=D���.z���1��^%�����W���7��F��[_y�+�g�s��:����7C�����b��
<Sc4騇��͠�i���L��^ ��"�}y�B���޳�lph�|4
�:�7�+��`��q��Wf&�$8�K�+UE�'��*ɛ+�A�;�_Z�S� |���\H��FFC$=�	4d_�׫*��3u��Y鉞�sl=�N�	A��F(�3�,���+C.lqai����1/��T;s��ĊYMF�&�k��Q6l�LX'~�|��������>_�
/,�0Nl���w�T�+�y<6�{~�<��e�Cf��"EuD#)G^O�T��mc��/��~tS�3G���]B�Cm��HETZ�I���%�ʏ�G��a�����rSP��
��%�����ג<"<����IESW7��p�N��/\��IM&ӳ���ю�fv�3=�{�|{@�_B�qs~GW���5Խ֯oi]���9C�RW\��,����F�+�3�P[�zX����]�a�ƍ�p�ܽo����W�R1��h%K`��+��8M�FE�3��溋�js�q��}1��?"(|�����l'��Iʻ{�?풂��5�*��
��L<�$ʷYQ^�	W0f[s\K(���Z
q,>�R�$A�DmS'-��E�K�h�Y�
,8�qM�:[�fO�j�q��ptw��&aoċ��w�z��H�}&��n�=�<�YeQ��S�6Lfn*�,0��}H��fa����*V��3�-�a�E����s�޵w���u��	������8�	N_:��
�N�����j/��O=������g��E�8���,��X}�����,����G=-K�#ɤ+��#�1�M'[�f��
�R�)�=D�Ydk���h��,!G�V�6x8��/¾GΚp�ƛ��r�)��}d%�[��)�v�7��;o�$�����bE���.5���.,��W�;lӦ�W�ԩ�k�(a��*�L�r�"���N����s�X(>�qݺ��\�<���
5�P\Zuh$�Q�n��5��]�w�R��)ݼs��E��<]�_
IzaG��D�	�W�d
)��1� I]ٞ�\4����2��Uۄx�E<gj��@��qR������9~q��!���&J��܆D��A��D�Ǧ#���PaR>�Uq���`��ך$D�/�B�H6���
�vB�:p<̢x�ּ��X�x��?��M�J����pA4�h�c^$�6�s:�D�:�^�?�_Xꀙ~pU@o �[�~���#ܵ�΂�c(4�z�m�w$o
�h)Q�d߱��Q�����(����"o�\p0�)4���!<H.ie��Ԃ��,���Jl�be�����Z��4��)�xt��M���p�J���l�N� �,�K�@`�6B����q6BwH��O����j�i��E��w9���d5���b�v�)�&$��F��+���R�J@Tzc�M��Ԏ؃vNJ��4�cs1��҄A�]D;��CԤ{��b�`�@�3�k牯n\y�i�Be�q�)^]��}q~��nFA�(�(Ʋ�v��I��x�|�Ihp7-U���T�JeM�0Ka%��_��h``<�!+!J��-?��������ȩ�"D� �A��%��"��` �M�To�[��12�D�����@�	���_�L��>p�2�9�rv�	�E��jS#�V[��I�,<�V�<?xx���3��Z�Ш����"<���ʽW�;�"P��#����~�0-v�$��+>��)϶2Л�Ľ�Y\T������&��`���d���a��.��8ҽ�{����NF����YtC֊�*��Ⲝb'�����@�xN�ǝ;w�nv���yXy�D\����Rn���M�Gv�s� ^DZ�
B8���	�Rhj�|/��Yb�h?DŽc�Uu���SL���|> �ϱ
a�� ������$�Q�U+�T��S�bH�:+뺔�p��O;*�� M/7]��f043	��,
RyhSwU�뗚���
�� B[��nr�|�3�Hyno��ۡ9�T�!�뎆�4waZ�H���
i�R1��юӋ.���D(bGD,U�f��ɣ�|�ɣ):��"O=z�λw�xt���[��$$BD���cS梋IO9���c�N��{�	�l�w�c�u�t$!��L47��ix�b+\:W�,�� R�j��ۗ����:���;v�3��}:T*itX�L�c��0?Ş�@��.���'Ss�t�FUmD�'\/o��q�)���ZZ���5�>�|�6�%*n_��\���zl:v/�$�!���n/���<���*��[{�N""BU����E&"�rK�@]:eEsD�	nD%������V��ͨ
��_,T��"����#.s�w)�ʥ�"_���/�L��V��%AM(E��8�q�Իt���Ѧ_���h5��@���wt��^3!����R��7 ַ�`K��Q,�a��ZY<1 �+i(��U��b�#wʊ���}�8�,VkS[I@2����IXʌ:�D�x����ٗ���3�>J�����~f��3Ofb��ʦ-�~��l��=��-^Ԕ>�.ن>���)R�8G��e>>�z�e+f�"2�4� h�ԣO~�wOܹ����e�yB��(���R�bʲ��ȐS'?���ͣx���lB'i�(	T�k�H�給:m���ī����;���ڂ����g�\x'O��	���ʬ�u��`3��&� j��ȁm~�\�T.��֫s�L�׬㰕舃2w[�����#�6���a�TcA�s}�z�g��ƅ��h���(��
k_�l�{��P恬@�������h�r��$�t�J��i�'��Q��ưaqG�L��G�
�ܡ��/F�uAI��^����j�����/pL�N�-���1�Y�6���qt���9孪�� ��@22�O�ŧ�)g�rB(��:�lT�uA���3Ċ/i�Mi��D>d�t�ٓB�S�x���Z�[ja+�z�k���b��D���U������'8*ڭSXBsO���~ޱz�[���?3>�A����C�i��#���q��jR-QN�pc>��h�u+��;�H�g�Y����ŤT��*1Jb�"Q�t�{��.>_���!x�T�g=�	 �wTWT�1.E�"=��L�(����'s�~u��<N��|g��Ĥ�H ӭ�Kc�v�e�8h��H��7/�#��]�/�pD_zz�>f$+i�)��((�	�m��3�s������.��P^�*��m��MHC��ؙEn�V�B)����=����8���gL<��n��g���9j0��$b��vH2/<KW*��P�$ѭ�!� ��	d-���Н�!����,>�s�ݿ��.�t��
��;�~ܑ��Đ�"S�t,�X���SxrS�E�G���@􏙽��[G����Bz(`1$-]��:�UU22��s�Ɖ�?sE�ׄ�W轟ϯ��d�b+�i#;��^���g�����*�ʢ�xj[)��R���MM�8k���������4Y��yqJ�Z�����r�)3�����=}�b]������I%e^u8F�e	ɪx.=(wXY8��F��b"������VH'@���A`ȓ<�����N[����Sd�'O����� �F���3ߏ�c|��p���3�%�~j����d�-X⒆@oq���P��P�b��R�=�#�" ��ah��

�2OAr�ak�*������ E�v������܏�����0�^��Zg���b����Y�w���c�]��=%,�E�D�h"�(�<l���ر�t:��=�JD)��)�lx]+MD��s]k���\j��"ۿ�ʣN�ӻ8�#-QD�;Ŵ�A�T�t� uG��2@Ss�؅��拱��Q�3ZU��0��ȶWȒcuc��iAD1�`�.�@�n�)/y�E�W��{�_\����KU��I��u��*k��Qû
K3��$�Nu���LN&+��_�7 x�C��	
��{�nX� ��-[�>st���cZg�}����EX��I�o:��6k::�
�#*V
�,�}$-�@j"Q���md�[�t�k���a�Aԋ�8��*`�o;;�T���� ��y@6o3I��D!2>��%և�jM؃Ԙl�/����F<U�U���(o`��F��.h�Mն8�����9��\��+� ����bN=s}���W�!�`UqMO�7Q�{�h�*�k��U��AD�4��b�rm�~�
*Dw���\G[(֭\�v���=����R����HuU$���;(D���)�X�����8v#8�G�F�eF����s$��y���J	A,Qӝ��H'�l�H�k�����{ �,�䈇��1`'>YX�6kw��)q9��.?���~lnD8�٬�[�1��j��9 A7�TP��̤+�0��?LW���:!=�TO
!�Zu���y�D�3�B,ԨQ�7�Ű�aSҹℿv�|0qo�H}=�c��2�
>�lE.�a�^ٲap�v��+<�1�eKC��.5��Љ�ҿ��U�Y���2 V$��JC�1���-�e�y�{��W.�m�:qT!3�u���<��FZ@Na�m�2 ����)?������a��P��-�����e!D=#Q̱��@/D�+p&�&!�":���������©�6�-t�g�Gn�S��7�J��A����(���q$�'�nwh�O'Y�S�|�0�s�K[��nذn�-?X7��v�.��3�V�B���YLkڗÊV�AIij#f�s՘��z�	�mik�����XB�����7;q�b������Hq���]1UE�89�A�'�4�f�C�W�`�$��	&��@:f<�8c`.L]�@�͏R��6]АO?��L?}����p|��JGv�߿��K�\��|��Z	��	`�f ����.F������aL�����dAtie1�C����S����|3����m${foX�b������
Glv<��pų�nbk�xo� �)�@�De�ha���֋$�Α���[�#J&#�b�\_"��8s����b)��6�`�"�eet#+#��fn��a2�	��&]hJ�tM"+s�.h	�i����yQR���"p{!
���B��<��	�g��v�ι���8a-������Q�#%‹#��_�	�,�RՄ7@��;�	hy�sXV!��e.@���ᄏu��s�J��ƆC1>d�q'h����< T�9�-�<��AM��sɹ�3^Ʃ��b��|������� '��fZ���*_B�@��?Eb��8��'W"���>�������|	�v2���N7ٯГ}�g�36��v���+U7\t���#���.�I ۵&,�
�#�"����Q@]ף_���6��'�-\L�ͬ�L��'��������@�te[a,$��額�i�̈́ۀ�6���x��Z1�IXm���E�n���9-��pP�Z����ݗ�#))W_���;L�OR�]���L#ԣ�̇p���afV���4�v,J��
�!D��c���4�=�N�3����_�������!����P���t����@l$��x��{`(G0K�h�S�7��xX�wF���0�W,����IB��1�(C�
�RT�jC �!x������3����O��nH�� ҃d~c�l�΋��i—���M60�G�{�h�5({e�I֊��-.�*���u������h�����o�X�����b����Z�/D<��z�ۉ���!��~*i,K�͉k�
�!�<4şv��_?G~���=��`06���@{tIFF��݉�Z
��p@���l
��u`K�ӲT�l�P:���N���"�f�4�@Uqa�\pHhp���cX������].=PGx�?7@u�~7�cw�dp3Wr���E1
��'tC^U3̆T�<
N؊�;�q:+ȗE<��
8�L�6��)]���D�5��ҹ��W�˦R����ӽu�訕����˯j����cpO e�c�$�u
Q�5�=�9=s{b�y�#hx�ơ��&�>���$XN:��/s���=�5�~���/W��M��`'��4�:�j����t�g}�?��{@H�U�/��P�P��m�qD��R�]/ S����b	+q��h	���Ur_0p���x@�=4��\����)ۣa��@�(ː�t9�5q�'�D��	1�Y���,�&W���g<���ўG+���:�!7I��c%0
��?���5׼?5���#j��飱p��H�li��������e<;+�0�]���&���*�8;�f���8�g�^N<w��G_�����ŭ?���ڏ��
0��>�#�e��J�j��m���tA��a���{D����i�n�Qq�Í>,sr4��f2����䚦>�_�� �8�.��1�D�S��y;���1GLy$M4p�ɀ��vq�1�H�Ń�\A��G��O�qL`��|��)��]�ū}q����@mb�@b�tR3i�drj�4�2��*0���[H�	@OԚ�	��
]����m��љ0��?�G����Hz-�v�ʈ��X�o�ei:�J�T{y��h�>��5��˦�"���0K�7^�R�^��N^K�	��F;PySq��oE�
�B�����&��6I(�5q�kb�e���ś@26��:	 ���WA�V9l.q0a�@��:>j��$D�0��ӿ�%ʐ8�G�ݧ��'���iۉ �
R���5P�:R�	��<ɫ�'���X-)�3�-1�m�[��� ��f��Ab�.4c&��UN ��`�z ��Y�:J	y���ְ)b_����F+wa&Co��c ����ȭ[r"�8si"\�f�;�DZ_�������D*�23�����#�f�xĽc��ܾ�w_'T��Їk�UT��өC8=�jm�	����,V�����]4�bL?V'���ؗ_�7����ˋ�;��k�|A(B5>0����wVGO��:��
�Ƴ=�lO"���c��a�p����H�S!2�Ֆv�F�h yI�p綬�	�yX���'�Pj(��OJܕ�蠄�ƺ3�gRך��%^eP�X�	�7�33V���Љ�
���x��zq��)D�Od2 r�$(	�hm��im�@K$�$װU�&�tξc���j���Nrd���Ǜo9�e� k�	����X�xHC*���r�A2o���W�<H��"�7��rV�FD �س�&���g �D�J^n+CmL�S�j$���(��|6qj(p�@���2�������m�#��:�5 �C����L׵囎CD;#�D�����%6ɃɊ��0�wЏ
��x[T�)7����B�/m"%�-�)iJL��!X��ڨ����db' 0�(�a��8���(���ն0��Q���^K
`!�~.YD{6@�:���+�Z�|�Bp�)�Lt40򷴥�+��}�@�f1�0`��X�孃�"��~��o� H^�7^?S
���gқ���1 d�L���B^�@�b&�R���C_ 5�ktObq.ї�h(/�
��T}�����`ݿ`i#)IG��up��n��<"�8��Lrt>�(H�UK�(��䤀4 Wq�ŕ��O����'vd��%���r0��w‚�2 /=�]yfeewSS�=Sl"j����ԭ����g`���iduY,_h�l�a�Q���7�.���Ra����Ky�4��#��vN�0�Eܡ_L\MP�a������W �L_bS�B%K]'|�? ��\��A:b
�]��G6P�%��F@��&@���a���~."�|��}:=
��2\���3Jƀ��7����Rf�{f���5�f�x���+"9�v��	��5ԏ���c�zeC}wS�#�_r�m���3�c-�u��Lț���g�l`uxz���ޕ;a*ګ�ko����a���N� �Z�v9ZN�ew%��<
k!PF;en!���΅��:8����3]W�L��9.�Z�6dS(��-�d$�#�^P�hI�7�"��>fC.�mn"7@�9jdt�Z�����:,�‹��h�d��&KB�k:�qҼ�û����� ������ǿ���|w�+�ל���t��w��9����Dg��+C��(*��{c# x�LN6��Z-e
�	��k��ή��ɻX��7��k�Y
&�VeV��HI���.?�%�&A���"*À'�ï�z�{7s�3H9tg��"�hYE^$i!��CT{4@,�,IE���	��ߝ���	Ӝ<Cig�v̰ݎ�B8�#<v:uX{�>��GI٠x
��8 ͦM�n�.�
��~��YLs\C�����������nh:�K�2T�Ӛ�<�h�K�d �:��4��t�E����b+���m��-\�ԅ��[��:B$��"s�mO�\hk�ĭ��+d$6�uAk�\��Aɻ
[f�LkTVs)%z)�H9�E��"\�
�%���v��L��"tK�آ�'��#w%�_=oK|yatߋ�V@b=��ȝ�r�8��e�CU�ty�dс<;��`&4$�g
i��>4
�#`0�<�1����	&��y�罝-�X۞��l�fH|���Dcs�QǛ�DVԵ�JdG�@!4xHE�-�~\8�&���j&W�Cˡ�?�U��+
qZ�
WR�2L���Y.;*��
��5A�ì�=ǃ��?MC�b�h�Ұ	aU���Ur['r�x�j!3�|��45B�H��;�!'H���
z?���0�N�Ç�!,���a�6�AS��J7&�6i�9f���L��h�~��믿�5V���8c>��2��m��W��!��:p�gQG��u�VD��h!�B/(�r�T��0���H�gǟ�
E��@V	�d�LQ�_4T�]��0H�b��TE`�Q�5@xؐ�
�7�-@L7F��
-���A�l"���j�<��#�<HT����Pb�aq�L~&q�>&�F��w��,c��
�4ڦ,\�������I~0���e�X�?�N�6�:�{���w_s�mr�H'{�oe��T��`��8*�EV��1�!��J�@�["�.��b�VK��HZ9��	�t:�1��Q"�4/�+q�!4x�7@��oܖ����ԕ�-’��W�(d���.��Q�U�֬�,	%x.*ǻG���%V6�7M��J9s}!�@���+�xd�t�$����w����g��cO�J�>��`�R�y���B��(c���m	�6���\F�����:����������Zs�����gČ>�ֳ��8��z(��c��ۘxb����_�h�g�	�|1��'fe�2�C��-����R�A�u7B��4�B#����x�O��E�Q��,�����|�AS�n!s ���ۉ�Y-�d��_a!;SX0
�L�z�U�^��^��V��އ���Q��x��"�Q h�B�q��y�x����9�B|�z�"�i�C|�S_=pe�+

r�ŜZyH<�Qa�}OcO/x$�k�O�{�q�]�F<5�96��hu8�����V��+�4
-���r���2%��<����˹cjz�G,2(�	��*�/`��15r�~�{����:ewŴ��S. :/v�~�.PD�$���w�W����i�W�n\1�`��Z{��넰2@��
�U3�e0�&	�Ln~�O��1�2��â�
�$DF���=_�R���ɽ{���~��IO��g$��Ϊ��n�}����;���X��	_5��u�A�o���;�D^�z �JҎ�2��"��cRd�,I*�|�@X�-���z}8+��r(:��fq�b9�	xȖ�K/�jr�W���8$��f�vjz���t���d��]`&X. ��+��+��+��+��+��+��O����0`����AC���B����|���:�O���m�?ɋ��}����q�|~�S�b�EEY���y��5"��|��k��9��-����ڹyv��nd�v�'g������5�?}��8���f��YgV#_kI�h���9u�!9�z�~��JM"��g�=���*AMz�+���c���a"e�"�’)�ڲ��2�RzI?�yԿW	o��c��
�R^=IEND�B`�themes/nivo-dark/v1.0.0/style.min.css000064400000003662151213255640013214 0ustar00.metaslider.ms-theme-nivo-dark .slider-wrapper{background:#222;padding:10px}.metaslider.ms-theme-nivo-dark .nivoSlider{background:#fff url(loading.gif) no-repeat 50% 50%;margin-bottom:10px;overflow:visible;position:relative}.metaslider.ms-theme-nivo-light.has-thumb-nav .nivoSlider{margin-bottom:0}.metaslider.ms-theme-nivo-dark .nivoSlider img{display:none;left:0;position:absolute;top:0}.metaslider.ms-theme-nivo-dark .nivoSlider a{border:0;display:block}.metaslider.ms-theme-nivo-dark .nivo-controlNav{padding:0;position:relative;text-align:left;z-index:10}.metaslider.ms-theme-nivo-dark .nivo-controlNav a{background:url(bullets.png) no-repeat 0 2px;background-position:0 5px;border:0;display:inline-block;height:13px;margin:0 2px;text-indent:-9999px;width:10px}.metaslider.ms-theme-nivo-dark.has-thumb-nav .nivo-directionNav a{bottom:0;margin-right:5px}.metaslider.ms-theme-nivo-dark .nivo-controlNav a.active{background-position:0 100%}.metaslider.ms-theme-nivo-dark .nivo-directionNav a{background:#222 url(arrows.png) no-repeat;border:0;bottom:-36px;display:block;height:30px;text-indent:-9999px;top:auto;width:30px;z-index:11}.metaslider.ms-theme-nivo-dark .nivo-directionNav a:hover{background-color:#333;border-radius:2px}.metaslider.ms-theme-nivo-dark a.nivo-nextNav{background-position:-16px 50%;right:0}.metaslider.ms-theme-nivo-dark a.nivo-prevNav{background-position:11px 50%;left:auto;right:35px}.metaslider.ms-theme-nivo-dark .nivo-caption{font-family:Helvetica,Arial,sans-serif}.metaslider.ms-theme-nivo-dark .nivo-caption a{border-bottom:1px dotted #fff;color:#fff;text-decoration:none}.metaslider.ms-theme-nivo-dark .nivo-caption a:hover{color:#fff}.metaslider.ms-theme-nivo-dark .nivo-controlNav.nivo-thumbs-enabled{width:80%}.metaslider.ms-theme-nivo-dark .nivo-controlNav.nivo-thumbs-enabled a{background:0;height:auto;margin-bottom:5px;width:auto}.metaslider.ms-theme-nivo-dark .nivo-controlNav.nivo-thumbs-enabled img{display:block;height:auto}themes/nivo-dark/v1.0.0/theme.php000064400000001707151213255640012371 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/*
    Replace 'nivo-dark' by the theme's id
    Replace 

*/
if (!isset(MetaSlider_Theme_Base::$themes['nivo-dark'])) {
    // instanciate the theme
    new MetaSlider_Theme_Base(
        'nivo-dark',        // ID
        '1.0.0',        // version
        array(          // assets
            array(
                'type' => 'css',
                'file' => '/v1.0.0/style.min.css',
                'dependencies' => array('metaslider-public')
            ),
            array(
                'type' => 'js',
                'file' => '/v1.0.0/script.js',
                'dependencies' => array('jquery')
            )
        )
    );

    // Sets the slideshow arrows
    // Can use text, svg icons, Font Awesome or any icon fonts (Loading a whole icon set for 2 icons isn't recommended, so svg is a better option.)
    MetaSlider_Theme_Base::$themes['nivo-dark']->slider_parameters = array();
}
themes/nivo-dark/v1.0.0/loading.gif000064400000003311151213255640012653 0ustar00GIF89a������Ԕ��```@@@DDDnnn�����ܤ��$$$(((000666>>>jjj���rrr��������Š��PPP^^^������:::������\\\|||��ↆ�hhh���fff���FFF


������������xxx����������������������������֮�������������������Ƽ��������������zzz������LLLRRRZZZbbbBBB<<<���vvv222���***���XXX,,,���NNN���ddd444��������游�~~~������VVV���JJJHHH"""���������&&&888ttt...ppp   TTTlll���!�NETSCAPE2.0!�Created with ajaxload.info!�	
,�������#)-��$*.�6:7�
%+/�70=6��6��=?=��3@?�
�;E��7A>��B;��>CD�	�;+F� &03	8<݄!'14,<	�"P���F�`�!�	
,�������;WX[]�<UY-\$_&�JOSHTJ^*\�GP��2�
#��7�HKQ�:6�L=�FF�'Mij�NA�:b�I�T@�?R�/D��924I	::/E`ӃA&V,ZJCaT�T9Ij�����!�	
,�������	
i^,�CK
jl�8^ghQCRk�"dN<�h-P�cf�m]�,>�Jnj�2H0�T.-�43��5GЄ`eC�6:�f��:=σG5AT770/6�@C(CBA;@/܆F	r� �Z�@!�	
,�������?(N!lG�9'g[jNJ�A#HlF=B]O<�T&28�f_L;�9V(�H�J,	�kW�lf:�U�olǐTr�<b�JmK�G(>�N*#�F`8"�p
A�/`9"0�7�q�E	"T=36n� Fo)!�	
,�������aoe&?�	+qe4H2�D<
@33
%�F8<;�J @�@c�e[l�>8T�Bju�aB7�K�Aǐ�0�Cv^�	��ur�6b?ՅY)�3T3�+'s
�6F0:�.nt�n830�֭��!�	
,�������0@9(+A�TA8cJq
>�`GT6:"VVA�6@>/�B4eb�=	��oR�TD3�>h���F^���M'�0F7�BLd�63Ӑ]jl�7ۅ&NG�+TTc1SOJ�vwn\-Yr<�A#iΔ���@!�	
,�������7=?;>;"0�:TD	AB8Q"�6/37;(I@�0=:�GJ�73��QfA�6��D,<��3e��34�.��1&�2*^�Z�\�<N|��Zk-xcVz^8�Oyrvj{C�e H`�X !�	
,�������7:FF6��63FbDD=�&�:E;�A
.�TA>3�#*N�	D�K$+�C9�\T�6Jc�-��:�gY(�DZ�eu�,A�KXq��oPt2Q=FAl!�+ OjLM^a�G1N\@��A�;themes/nivo-dark/v1.0.0/script.js000064400000000272151213255640012414 0ustar00window.jQuery(function ($) {
	/**
	 * Extra JS for the Nivo Dark theme
	 */

	$('.ms-theme-nivo-dark .slider-wrapper').each(function () {
		$(this).removeClass('theme-default');
	});
});themes/nivo-dark/v1.0.0/arrows.png000064400000006020151213255640012572 0ustar00�PNG


IHDR#s�F�	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATxڴ�1jQ�g��o��3�!V[kHi���4���Ys�@B��b�X�9�mp��Me������,��,��,K�F3p�|>�E�Wk��x<ޟ��|$I��Tk���Kf~�{Y�q\��Y�V��LE�`��p8�q)�yޓ�zW�Tj�BA�Tk] b����0�<�`�"��F�e��}bf "s��XkA)e����(M���v��R
c��f���0t�r��2�����c����@�ݞcf�(D����Q�Z�+����Wkj�Z���4C��u�q`���C���O�o4t1�RCIEND�B`�themes/nivo-dark/v1.0.0/bullets.png000064400000006112151213255650012732 0ustar00�PNG


IHDRAMξ	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FuIDATx��?jQ��v&~�P�U@p�mR�����R))����3\	�v�+Rm�iw߼����ȟ����c�Z��ySU��Rv�:���{Z���1Ƈc-"��3ڶmڶ���r4�)%��H
`�)�IJ	)%03��ADP�	�D�`f��{�>w!�P�FU��pw�*T��9/�ݱ�n�)�k�8-�;�W��tO�?%�/��#��f�iL�7����Mg��W{z���<H| �5U�0^���r{�f�$��0�p8Bm�K��&N�
�g����ۄ˱��*N�^zXׁ�o����;����a����/��B�RuV�:�k�?ʽ�p;����3ae祻�|�~�}K�j��8IEND�B`�themes/nivo-dark/v1.0.0/style.postcss000064400000004732151213255650013340 0ustar00/*
Skin Name: Nivo Slider Dark Theme
Skin URI: http://nivo.dev7studios.com
Description: A dark skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

.metaslider.ms-theme-nivo-dark .slider-wrapper {
    background: #222;
    padding: 10px;
}
.metaslider.ms-theme-nivo-dark .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    overflow: visible;
}
.metaslider.ms-theme-nivo-light.has-thumb-nav .nivoSlider {
	margin-bottom: 0;
}
.metaslider.ms-theme-nivo-dark .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.metaslider.ms-theme-nivo-dark .nivoSlider a {
	border:0;
	display:block;
}

.metaslider.ms-theme-nivo-dark .nivo-controlNav {
	text-align: left;
	padding: 0;
	position: relative;
	z-index: 10;
}
.metaslider.ms-theme-nivo-dark .nivo-controlNav a {
	display:inline-block;
	width:10px;
	height:13px;
	background: url(bullets.png) no-repeat 0 2px;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
	background-position:0 5px;
}
.metaslider.ms-theme-nivo-dark.has-thumb-nav .nivo-directionNav a {
	bottom: 0;
	margin-right: 5px;
}
.metaslider.ms-theme-nivo-dark .nivo-controlNav a.active {
	background-position:0 100%;
}

.metaslider.ms-theme-nivo-dark .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background: #222222 url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	top: auto;
	bottom: -36px;
	z-index: 11;
}
.metaslider.ms-theme-nivo-dark .nivo-directionNav a:hover {
    background-color: #333;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.metaslider.ms-theme-nivo-dark a.nivo-nextNav {
	background-position:-16px 50%;
	right:0px;
}
.metaslider.ms-theme-nivo-dark a.nivo-prevNav {
    background-position:11px 50%;
    left: auto;
	right: 35px;
}

.metaslider.ms-theme-nivo-dark .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.metaslider.ms-theme-nivo-dark .nivo-caption a {
    color:#fff;
	text-decoration: none;
    border-bottom:1px dotted #fff;
}
.metaslider.ms-theme-nivo-dark .nivo-caption a:hover {
    color:#fff;
}

.metaslider.ms-theme-nivo-dark .nivo-controlNav.nivo-thumbs-enabled {
	width: 80%;
}
.metaslider.ms-theme-nivo-dark .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.metaslider.ms-theme-nivo-dark .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	height: auto;
}themes/nivo-dark/changelog.php000064400000000115151213255650012365 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/databold/screenshot.png000064400000105105151213255650012475 0ustar00�PNG


IHDR��� ~PLTE������������������		��������������ֹ�������ʵ�������۽����������ٱ�}��~�����¨����ī���������� 
��x�����~¢����%��s��y��o��~�����y��{.�������������������%{�����}j��������������������½����������!&/��ظ����������vlb!*�vf&,6��u�����c>$M-��sĐ{X6ŕ�!(������-3<������L^*>��̔{�_MT&�yfrbWe3�~m�P ��u��岳�Ϝ�{qhp=D!����pa�G3ǘ�iZO���ȍqrH.����߅K-wvwmI>��tWUU���hggS;(
���5:E|j\t��|t|E��{�`3���~}�X8ܰ�ʠ�]^b�hW���[?4��އxn�����ӱr]�mS�tC~=�^I���rf��o{VJ����h*DI4+ˢ�MJHonoC?=�������}n֔b\NE��~�lB��k�@FQ�������Ƚդ� ;ܧ��~b�cMS_͇X�d؎Jlt����麫�¯*���՗}���q3	����m]����~Q8%��ˮ��޵�߿�Ӧ�_gt�LˀEx�������Ղ�͞��4/+�k/ҵ��|m�鵜Ԅz��r�θꩠ.w����s��'���⮁|��5O�X���‡S�϶������{2o�؉��/Jg����IDATxڤ�OhcU�m�.�a����?��Vl��!EC�MlA�BJ@�D":cA�� �p!Ȉ��+���j��7�ND]:;2KA�p�w�n�w��K:���ݗ�!S��9����j�z��S�րfs�f�T�Vf*�Gss��^3UL��.����z�߮5:��?���N�ӂ��^o�����O=���OBO<���Cw]9�gFz����i#�,���i1,9�>���r\�հ�7ſEml�݆��L� �S�j��ī�E��}O��Kof�B��o��m]��^l�:�Q��V�����h��@������C=��u��}{�}ӯ�Y���*��j�D���-���D*���Lon�V3T�dk�l�3�_U�o쌍ɢæ��Ȫ���\�/�&�Z�f��HL�ao����y葇߿���d���h��ۿ)ø�?�a��b�kыn�w���(
�EFlnH�&IKt�T9�!�����d�d��)OٮZ��Y��w�)��pȈ��y�yS� ���x��{ ^�q�;y�l�5 $b<�b��=0�V�2�`q�DX��
�Z�Y��ۭ�!���	a�I���q`q��$���
�-�m�8x��;Y�]�Y����ڭ��Ӱ@L"8Ur�\�7������P!���
[�<�~$�C W�����xdD�D�(�| �F<d����a2�:wT�T��R�@�D����.���"�;*�Pi�?2�C@$:�$�0s0�#�ЮP�3�76�w�����4�P2�`�#:�* �fJR�4�����!xT%���$�,9�' O�@�0]�����rG�G�+��$�"2t�؈I��<��`	��XF�J���R�1A�31�,,�z����"O#fE /�֕dl6�=���Dd�� a/L�@�ċ��P@!�H����&��Jy�ȩl�#��%"˨��V��z0�"�^'қ�<0�C�+[�|.�+s8&RR6&�(��d!��X*q�Tƒ{wB�J��C!�Y��BÀ�[�ދ^(����=A�2 �$��ƃL*Ł����h�$�c�Z��D8.l�"!�$d	���Y�X;_�Sv9r��T-�ㇴ���~�_owz��Y=�u�|�C\EHw�!�?�EHd��y E&4/����%�R����C1�!�X��!p �S��2(��U�ʑ;���; QeB���"�\.*����8D()��R��NR�J�xM�F9L�N)�G�y ��H{�$����`�*��@�k.�Q
q�ޢG�80}�A�x$
���bNA�x��G�T��,@M���f�����~��5FdT�����t銯@Ȣ�Dw,|)�1YK����q�a@�.��
ɟ�ʀ0hM��sD,���8d
������p0P�=��D�w��DDM,�PN�C�H�,����ɀT�ʃ�*���,^y��h�tN*EjX���4�Y����z��f��Ɩū��@�9$��?���]��R�X�	ix&�����	�4[ꎙi�Õ�@@�@L�y��^[F�j����^o��/ �q��x
GҼ
@$g����f�v��*�|c�����s����
��f����C�<�L@|ؒC��%�V���l�z��5sY�1K@�+�p`n<���r.�g^��R�/���.��'�"9 �six ��(P� 5�!��C�Sb����Ȱ�o!kow�aV�@h��S"�Bb�3�j���y��D$Z�K\�(���H4�:�>TU��J����l�H�i�g�Z;h
�����{�;`7��;|� �
���T�:���=���#��+~�H�GHUu�a���6�q@�˓,��%@����.������f���~W�,�L�#%b8��D5����I�T��v@���������r�0 r�dL|
�w�2)�VGA�B#����v���Qy �V� �qs�,ʳy!���D��,N:le@�Ҽa �ݝ� E\���c��Yd�Rtȩ�V|H��
�lrn7�r�X&ˈD6}��,X8z�/�{��&I����%:�Lk"r-k���\��F+��=���Wr�fF�5~D��o�\w�7ԧ�����x�	q@�C��@W�P*�!�h��v�C!�1�@��F ��Ɲ�>oBJ��D��1V	x��H��D�C�"E����il7���)$�"�)*�����N�H���Z�U:E��T��<�$�@���;Fi]@  �u���A1 �"ۙC�;�?�b:WJ'�Ý������Q�E��2�ql wâ���́1�!3�!��@�3�����7Hˈ{�^�Σt�\3�j(n�����y,�$��2��3��y�D�b�@Xx�^��\�o���۪׊H��C�Pru���C�"f�ɝ@�9$q�u�;`��A&������ns��$��D-�����Vɀ`�5 �D�p۴��CRȜ����!���!8b�t�l��K�Ȼ���Y���ʎ(m��H㖀dH"ċ� D�b�d���� ��+ ����d�X�׵w�A���֋����O�d�U����-:�l���+wȉ���"2B��9d3W��r����& 9�b4N�}��׾�D,t[�FD	E��`�7��C�_��D",a�"ݙ�|Z���m�ɳ�
YRD�^��2���B��kD��t�b	B�P��������?���~��s�@���zk���R�#���<��W�Hu*�hc���@�VH��N^��$ Rt �����
���l��<���w��}��/�_��o~~�ᅬ>^?���i"�`}�I��P�C�D+�0�!
Y��A9$��@�"U"�Jr-��@��F�|�Y�>�9����KW���^y闯�����7�/y���_�no���Ąi��Hx|�8d��0T�sH�"!	)#�j
�iȴ�Ev�J{�
X�ǪE+g�X�����ED�~:�~���A����n?c2W���
�OY1d�q�:>��
��K	d~>�`�
t,�$�dWNsȨ��ARD���e�P�"��յ���EI���O���_]�rx���7.���͛G@�rș۱��p5 ���q��ǔ������;�@�<��9�D@��Z�DJ����h�!����V����
����ޅW^z�/]x��޸�xu���O$�?�����z��aF*<'��Fx��VW@t��/xc�rr@d�����x�!�N�jAb��B�uQ(e��TFD���B�sf��l�2�NجJ�0B �.Zά��T7Ev���n��QCEA����Bt�E��}�;���j��|��G����}ޏ�|@�amc�R�2�_ .�7��˝!K�<��w����J܁b� �0�U�Ʌ��a��M�رG����{\}�/�5SW�\����ȓ绽�/@pj���)�0���5�v)���;� �=U~�-"@`;2�ϢK���4�����<Z���G���G!X�ҥ�>c�0F�_?__�H@�_l��Qs�[uaXl�Vjs�Op��eH�ԣ��!u�"������~-����σ�\Z<x�D���u�88d1
�Ƽt��z-���|��������CӉ�����S�)f����]��P!Kl���:��>BϬ�T�W�q[c�>��'ᡘ0�?ko@|hE���Z$@�C���^аu���p("�
ZsY}+x|�����p��$`�l�r�Lncv(����k*^�Hؠ�YG
�f�zu{��9D��@$�PW�'��9���E���PJ��Ȳ�8
JB�N!
�A���沃���!cd$k��=?>svccy%E@��sİ>$�O��4�A%I}�,Bb�)2�Hw��� e�?q�������{Z��D�Yv O? �􀔄<f�S���Z=)C��ʲ�p8�ʆ"�#'�]�g�.����0?9?99	$e����՟�]��8��;����L��o+ą�O�C�CdcQ�S	�Ap�*�B�Pnw8�u�HZ���K@J=M-j�t�f\Yd8	LD
"�!�`�{��$����#�Ǔ�h���"� �LOY�����\�xz'��!�i��`E�;�D�ŀ��#��`���b"�O��!R��E���&���ʛҶ
��!���˄D֙HIhO!:����Z+%�p� ��N�v�..--ml��'3�o�!==]�៯\Y��s���64u�!�
��F��
d��A,�?��D�e�ʹ���)��[�D!K;�x�:�B&���;p�C��:9
ّ�1��;Ӊ��ѳ
�����o���b��P��kW��X��.A�v��a��?w�<hqv����6zLD�~ ��j[�R+!�Zc"u!a{�A$�C�C@��k$���	D��L�t����~L��x��Xl�^�v�U8B��+`�Y�B���k$v�8��e1��UH��҄�J�!{�l�CD�����A������v&��Z��g����k��.Y�8��J�Ap����N�8n#��[���a��d���cH �@�C~DV�A�|���c��t��ʟ�/��P(�µ�D�	!:d��Y�;�riv:�퉗(
�@@�| *hљw��!������E\ P�� �4�7i �a"�D4�A�Q^m���.dt,c$d����"2���&'ߦ� 7m�e/}u����"��XĄcn�f@��E�	D$@v��x�X.Ϻ2�ć8�!īD��R\%f {p�τ=!H#�z��	�	�C�aE�Cb��
r����9U���0n5�2�8?7C<:U�wa!�,c-b����ً��
Z�����p玖�RP����u���$>8��b ��PI��@��?��x��#���t��H��J!�c'�4袰D(b� T�FOcC�F(d����gA<~X��@$�8��M�s�?澛��~R�U�b�!�P�5�X�Rl9�Pp���Ņd��
�D|z�U����|%�@;�to[����M;9-!��<�2�|�@@�sd��2
�v�R%����Qe������tG�BD� � ��rfI��K\����`ul��HQ���{b+��!��;Pr��G�uO؀h����r%eq��#�Z�p)d�nk���B$��+�^� v����d��0M��ݜC�J
�,B9B^W�Vo�~R�iD=~���j�R����(wQ�
�&�CU�e�/U
�D ��m�z\��,��R^��V{��'o�	���AT���n|���a�Cr�RY9
�G����y�q�,�P@,��b�k�6����xoj�$�
���Lp�R{���ڷCD
D^��U8d@rH�O��@��C��B@��R��O=U��W��},��h����C�)= 91~�����8�zU��G�"�Iꇥű充��Y,x#��Xs�s��ƊY�M��&��y���e��C8�H5܁@t��-��_=�_J�",�{�kP靽m�!O�nj/�o�gV���D�x����t�y�|'�a�VV�O���7S�
O!bz
��_tG�:� t�&'V��&ҫ��F��Le�cH#6�e@B�4�fn����"@X�Ł��H�|�,�D����'�^_!H���~�����'��b ���LA���D�y�xL��`o(pEH4�H�BɴJ$˓�ˋ���.�lf2���QL*N�e�N��UQDu�d"�����\�[R��<`�	 �<I;D~OɍR�C�`����Ku�C�*b�!�s�,5!�Y�s���FXe�`��@�L�lbn�Ec�'�M.�������rnp0��N�$#�O���+L�4��C���!;��.740�)W�>% ,�C���z@ڎ<�w��2�Z)�H4	��HJ��-�X�W����>�y��	3~&===�H��&���Iܻ�2��Kѵ�G�>�u�oo��I�Ī�lx�"�`ࢥ-r�,'����y�i�r�o���V�0���Q<����p�{�Cx�(��Ś�r�a_6��2�� `[o�@^` �)A�C�ǒ�%8@�
�`�I_8d�F���ήd"���v�p���3�=]��z.r��7�G>J���P�0�p�O7Rg�k1��݀Pc�0d�(�6ȭ�j
V�x� B8
w��J#��,���ہ(x���8�r�v�����p�jo@�b��q�СF�H�D--2n��F�w����LwwD�3�:�y���x��L4:6�|�h��c����T&�~?�0�Ѕ���US�W}sH���C�P@lRi��[d�C���̡��Y^6���J!��s�7߬��2���ަS�.�Cdotq ���A����IuzMc(l�� ���A��N���;��;�эL,sad4���f.3���90L#l:�@�����O! �w��D��J�H�w`�	���K�@`�C��x��z�8�E�(���m
���� {q�h&6$��c�C�.��F�@ �( '�'�>��Σ'�\�z�gpe}-�X[�|����rx��v �	;	Y���g�C
B8�}wD0�����PX�c���y��ç'E���=t��X�z�|�H����U�*���Z�M��<��o��N�T�Ğ��Q
<U��!��`���T(1��`ݬ��l�h<>~拷���wC�F�'��Z<����I�e�����oZL�T�G6�h!��m��	H��x��;�->�Z}�h���n�@MK�0ځ0��?5�a"�J[��:�o; n��F@�"/[D�C��e��-"����� ����4
�dr:9�N&�֖R==7��\Y�
��;�%ZAE�}woR��?�(���T�@B��=��!.*>��n! �C��7���!z���|c��zB�# U��^^u��b P�^�@L8�9�C
r�)���d��2;;��N��$�^[;�0�z0��LO�'�I��L��ϗݽ�C�1�^B��
�$"8ȳ7�zs)a�t�tE[g#q�Xķ�C�b��D��4K�k�!�$9]9cXJ��!��Q��;d�F�7`H$x4	 kk���:f�ef6zve0�38�a-2fS�}��H'?r�C�
N��XO8��u.��m�Px��[n���5�>@)D���-l.�$�V�_�%\�F��J�>���09[@�UU��*�׺����)���6	't�������WGL,Lt{��=�D
��D��;�X�����{&���ʼ�%��lߥk��� ���.b"�`�!.׋�p�Nw0�
P�(0��>v���n����W%E�% ����Z�x��GM���D,��u]a�0{	H �O@0��h"}�#�ֱ�ú�����B�V1nNc�ȕ����%�+>��9$���C\�;$��ׂ�~�ͷzD���d����$�X<4Q LD]Y�&B/�mi�c���-�Hw{�Q88����Y6�s!��adD~_�}u����陙Y8d�!�߷��rj��KW��r�8��DW-I�b�1��!jt�<�	�}�p��xR��^b�C�qq��[N�.Oy9�E�����}y�r��� q:�j�7h���7 ��Q-�Ht%f��[)�$�_BZ���_]�E.*�Yb���;#�a$��!.���"^��C�'����*�(`A��E��A�Yn�DJ���Ii ���"�(��	98 [Jjj"6 D���v�RL�H�d�My8*� (*B&"֋ߟOb<mz:q�d��zom}%7�<y�+�w�U#H�yzw Դ����C�X<p*�`o�*?��S:K'�"@J����LR�����p��^V{Q jщ8�GNX<}��6
�
H�	��*b�G�؁O�-[��J��ά�&s=c������@� �c�"x�mB�D`�C$��?�D�`���ŷTO|��~�e��o�i >��9��ƿ��8�pM��
�R3�����h ��Dr�!��؆�li���4$X����G"��:��|On,94�����`o��կ�����"Y��	�m��T��� �,!r��ÇQ_���������Wp�I����ӎ�����r�0,% �B��@�G�	M��C�uH+��"x�G�IJ!�%��I��(�g0'�3��)94����������?���;D����ل6�a8�VE�"H[�Ń�s�6��
��*�SL֤1�()є.JI@�B��l47識KR��
䤁���BO|�ٝήi�����d7m���;�7;֪*2Ono�%�h���,�yߴc��5Ƶ�ȣ��֐0
��	���: �8��f��Rd��v��]�m�
� �*�
:��!!���D�X����B~f���!)�NES7n��dҗ~�i
���LT��s��D��8𖡞j5�Ʋ�!�?o�	m�Z[�9B~����֝�6"jݲ���i*�g5c�T!��.K���t+B��[�ܰ��"���v�����p��Ҳ@�A!���C��{M���b&�HQ��`ډ"��`���B�4��yU�V�o�Rp~qq��4�"�_Z��OMX�Tx�Z��f��ЀlY����݁����,v�u��1
R��=1��	lLq8��!a�<��c'�	��ҥ;�TU�8����BD����6?lZu�/f���*+��A��@����/_R�c�c�o<;_�N�"I�,��K��$����~X�W$���C$�*~]�g�{�;��;M�~���D��`8xu�h�P؄C�o�U���$ ��'�����g�7���+����T����pHD��k&�p����R7BL��J"=l�hD�<����MG���	1 �ێ4H�P��a�q\Q�Ye�V>8U��n�g�5,�\\\���W3����='�"��衽
B
�,u#��h�H�Q]!�8lK1}����_��Q�ORv܎�L�{<'*�;4��ͽ�21�͏� ��@p2����gnXk���hy !������� ��2��ha(��a���S�d��rA�F�R�w/0�<33���z���RE�v��S�2@X�Ń�"��vH]9��� +a�'s�6����p���t��@��_" ���]�����{�^��18(GGG}o�/`TD���*��������U.q�8pj���B;}��ex���}���C�"x��)�eLl{���& �ߖF��D���*�,c�"��,����x�<V\����9�i�*2��G�q��ԧC,ș@x�{�6FtT�W��"�����A,��D2��uOR�x�+)�;iA
>&rSCo���H���?�O �!����i9Sx ���Vo�S���쐽�}"9�~t��p燻J&���-�����`���i5&��[$�����ji14IL~a��q�qlM@@dE���bU��f��W�\{�!1����%8sF���F�8�����<��
&zcr<��/~|k�d��o� ����~�X�	H,b�V��1�s��K�8��t�h,�3 �!��ݏDKr����%[�B�p�՟jb(���˝�R�c�o�z�@-M\U�$�VsP�Iq��/ �M@@D9�������!�6F�R,:p�\ЀP�"�������
ꄏd�X�;AiJ������T�866�@�n�/(�ZI	�����&���0�+Km �!D�F��Bڳ�1��YV��_�u�:��,BT�L���Rn����t:��x45V�E~͂c�P��xhW�;�J�nzٳ
�Sw�QdYz�+�r�����	�:{G`
�[��_ie��&�`��v	�ޣ�R,''=4;�^^c1sQa���!(��)u�u�u������ ��hRDGm�ek�1�n�	@�X?�v����p8�a�`��iM[�D����~3���<Z���$�!���P�Ҫb1�/ �S='�g��B��������yo+>nq��~����w�|_߭��Y���f^vv�1� g��ON���%t˪*�,��6�C���+;��C���UY'{�r�_��]����!a�Z���(;���$��]���/}��<Ƴi���/����f��hunQ��J+�͑؛�R�@�pw>���a��n�
PL+(dՃzPQ�Z!*m�"B*q�8�B���Q3�J!��&�,Sv�);�����=��^v`�t/�{�٣�}ޙ�_�&���;��l;�a~<����$���N@����W��y���΃<��,����u�n-/e��$�ԙ�K��V��.��ryr~��&��ͬ��@�"���%�C�n#G��J$Y��(�̰nq�yЋk���@�����,�n��(2�gs�2P�°�ˣ�50�e�x�2S�Tƿ���͍�Ρ�G��/M_�L@�]#G��{�l�#�`"i�:ܓ���a*J�u��ÚL�^fS�(���@�;	�΃+g�=@B�����E�	� R��1�Z.<Ɨ�Q|[yl�\̎..��_�M�ӗ���7`"O�|
��/w�`\}�B8��@2�S%&�q�l�=5��l��eX<.������r�&���U��%����jN�݊��c̑J�5W��>�fQ�k4���m�E֫5S�X��28�q�}�/a����Sdnd`��+�`�!&���:�#�Z}h���0�8�&��	�ϟ�����ۅ�H����<(w�5�Sց"K84<SRb�"��l�J[LuOMM8��<���H�s�K4q��GO�D3#�	K�lƪ�5M�QEp���b��4�ǐ��&UAaM��$��DRd���@���B��G�?;J@�d����I#�//@�"��?��z2)�n�'���M����Y��y�����	y�. =��0�$:*IfXR�i�#H[�Tlj[,"7,�x��Mǹ����W [�K$\g/���4]�X��2AuK����fI�Ě�4�i*nӬ��Fdh�-��0�R��B(x��Goc��W��KHZ���ȥ�WW�U$K��͞.~>���t@������'�WHP�
�@"��p�t"ԫ�%����d���[�����PYR���p]�i����P�f���7R[��R���HBU�^j�rH��o�E%�U[����H�.ɬ���2���2��o�@(Bua'"���
��Y@ۤ0��C"��\:�ɇ_�8Cƞ;
�H@�L�={�r�	�}#$4�
r���ۮ@���f��(r�Rt��:$cڬ^�YLc���M�IBIs)���kL�U)*��)6U�cx�*�T5⹬�knUW붠jzI��>Qw���;p����j���}����x�u��Y2  R(�Q��
��$�s��Ma�5�0���П/N�����W0'r9�a����y�Gޱ�+$<�MF���G��\�`�T"�w�=�
Fc1x
yk��kU�G�D/�U�s�C��!���g�k�WZirbh0��n@��eHg����DfGDz��!��իŅ�2�u�*�����V~���76��p�A�S�$T�����
A�W�5��:G���X����~�<q�d�B)�
�N
ᮾ+>z�#=�C @22�]1W���<�!(Cf�ΑB�f*�fGiv:���`�p{�B�0�����$|��nyH����?T����]!��1��$22�XΡ��~.�-�>�@"(�
�����;y�g<���]����$��D�c�G!�A Lv��՚�
<��Bx��!uO��p{ne�R(��H��7�89H��0,�/����ۿ��qV"���B�r,�C!B4�B��`�
o�C'��ned�Y>�G�odr�� �rH>O�������7��*\�K"�o>��B��#�������}�j���~�⦎}�WH�	U C�_�Q�"B/s����e�@�#:'�@����`�/����766֮Q뤋<��]Is ��
�G`=�R��OL�`@���n���ȜL���>�ꇛ�>�7��r�>�yH���<&���i$-����\߸~w��:%�H�Z}OO��B����h�H
�E����(�1��&G��7�2�M%��8��C�rKz�!�+{��dǰK�Ӫ�
Ij�mՇ�H�S���(\��N���k^�@@��N���#�N䣗N>�寔� $��##�ruR9sf
8|K/����2�x�e�	���&���5�p?_!Ih' �)��YrLwͤc����Jj@�]�Y��u�@5�գ�"Q)�鎞PTM�U$լ��w��h��"�#k��<)iu�528����j��&NR�'r���6)�XH���
i�����`�?�<VV��Ldi�RT8��D�(c��=���u���_����|r�_�A���` �N)K2���4ˌ+nDu��C�W�u0�L���j����̔�$�t5��Z��(�zCu�J1�@�Q��b�Ֆ��jM�4����=�%��㤸������H�ORw@v�����VeqGH����7	F x�
Y��dy	k}	�B��l��hhr�ʕ�kf�z_�������0��@CӖ�@"�+����D�X)*�#Qה̘�wef/"^�[HJ��t�)�ˊ�	+�dO�9���=C���,�4Q��][tfH��,1���
��YoR5z�D$���R���Mj���r����i���Po�V�=����JF�B������/��g�����c��,��ә~���R�:��"VAu���A��vt_&�ջ)&��a���ǴUEq�	R�"�a�.��R۪X5�Ը)5Չ�52'�v��	h;@&��ڑ8�Z���c�uJ�I]1�E��ѵH1@�Hs�� Qc���Z
��_���׵�&���{���8Cz�����Bc�hL:�ʤ�b�U�*�	�1�p�nm:/*�&��
�����t�U�a��ߨͰ�,=М�eR��]'�Y�H>�w�Bg��υ���2�l�?U����m��>濧Iu�*�w��je@�A 
Q*��|�t�kh��s���~��.G(�k&�-~�,��Ј�֑�|�^BA?��*���K
�XL!����O�̩l'oA�u�̻��e�So���9g:���p��".׃����9'�g~�H��?�3�q���؇p���3 �������,
�z�W�U���ǏWm}�doN�v�'&T�Z��&�-����7�H�P=��R�Ě�./7{���(�Dۏ�[��HP`!��B�S��KA,ۻJ
d)>��u�3;����5S���M��DP�/�8����g�}EPD�P����RV��0�w�	8
�te�dj��ݏ�h	��R�c�w�^$P��Hw&���u�M��ή�,N��]��Χ����q��G^gk�֭%W�U�p`@�Q���9V��%&"����!H��SX�*�����m��)����h(�m9��;�n�|�1~�[ԡ�$��Q�Y�^a����������֒��ǘ>XYW��`<g���Z�z�����#`��	s�}Mhnį�_�ގ%EL�q#J�$��N���:0�+���]������:;�D���`�5d ��
:!nk�*�y�	KJ�2 ��Pm�\(�',A�@{G>?^R$�ɵ�>���[u����>�&ܫ58
cӸ�F�|�ԗt�̵���#H�?��$�2��H��`Î>ש�^؉Z�[Kk�h���Ye��XYY�oJ)�U�J
����\qq+�N�ԭ|19G���N�T���ʣ�RW���AdW;�'t�3��(.o���m�z�UNNbԋ��:�9q����8\����IU�7�m@t�ja'J��i��'��m·ak�[�`?ەx��FD���X�W��b����Ы�A(�Y�i_=<RWw@(v�yR���Y3�!M��k6G��͓�P0T3����Ǹ�Eo��G�&$�a��I������m�\���6�f�p�~�:z0���4��y=Y=�y���G�n��z��ފ�W
�ͦ �ʆ1�-+nr��֊���,�vE��<-�e {9T�B��@EI��9Y�&�s-�d��+3gK�2h�lVb����Hg]�1t��  �[���P� ��JsD�'��H�9�����^F$o��7���op_-?~5߳�>+��b0���l�.�1�ۥ3�
:�N�SE|��=Y�6[Z:��|*��e�t��Uژ��{[���Һ}�0�TpǴ��Unfg�T�xZ.x\]�e�rۢ@@<��`��B:;G���/��;k��;�ѕ#� ��ر�[�����+D-v��l1C!�z�B�pT�9&G�!s
f#����D֚X���%�۸����Y���v!Iq��	v��k bꏨ"���=Y��~〉zL\�fa�\zΘ�W��3��2�#�q�.�1��3��,S:�m@wJ�iy)릻ˮ���dQ(��+�m1�@�Z�H]U��P	B�,�P&�B�@�92Y�(�z�D�JJ��H1z���)JwC����@4�9�B1���|�{����V{F
�/���o\�X�W�>+���4�L���'ZWqV� �l�o^O�ɘݥ1�Z}�v�.&�ng�e��@46�Vq~���\m+t]z#g`v������r���� ױ$	��	 �
�;�^D���DD �y���j�2�X&x@@�� �"]QʂD���-�O;�<����?��xe%9(3t�÷��탲���6�����7��Zk4�ѣ�o�tZ��hA7�I������d
Xu�|և�:_?�r9���3�ʥ�uc��E�q�z�c>�ɒ�";�ɹ����q�m�@���������D���˅�U\a]�J~�""   ���xˠ��#���A�v��KS�������k����'�p�Ԍ�C��>sDN���=�q��>� �����E� ���*%��Zm]�4l�E��+�ܞ,=�rWЉ�?_���c)zȿJ4u��ûc܊���f���Uw&
Iټ9	��\I����D�)$OHِ�y1�P��X,R#ao	���Z$�] �#Dek��-̓��Z4���o�E$Py�2�"R}U�5�"�Ok�s�s�|��O`��ٿ���ɗ�t��0���D@�+T��揲dNκ��XU�U��eh�x �2e�\!K-V怇X&��?1��H��7D��3��p=�����#,�<��q�{}B�*�+ɇ�����s���{z��[�^$�S���R�Y�Y ���
�| ,�5@�TB�BHY�d��w��OYb�:\��3a��.��DR� �{bhdbd䍡��������a�`q3����@ee� ��9��3�^�,���_�Ȟ�&��ש@����V���)�y-�$���X%"��B5S��o��a�\*�_��"A�Z�������=<�+�`�6�Z{--���qT��G��O�b�̩�^���s���<~BM?+�(R�D
��H���Va]Hֱ#�'��e���}�hxP�#�^,�
2��Uz�0�L!��ʔ	�T��������������R�w<0�q��)��'����x�Ҙr�'���;����rj��-���=��ľ�����~f
�<��<�������4��1K���P�`�%$ /y�
� 'D+�I�jp���Lu�8�ቡ�arEm�X&
+��h��6C&�f���x,`v���'=�Q�A�ԗ��@����)	d�_V�Җ����S�o`Oi�l7ma�o�:3�l���y@�G��| 4��$ބB��j�@,��a�.�ʋ$(�v�� H$����	"2�YLg�ŽM���z����[���g<�eC�d�-�d�?�(<�g}�F�B�/���zY�E���"0B�O��ZV鬛�&�ǨU˥�ܜ���4\��˷dhL�]�-M��i�]ԋ�_��*7�T�sggs���vf
�����Y�!W&��<hVXWw��E@��0ZrD�\.�������Q�E���

#6�"�@�c�Ws4��j[�t���ƽ�x06F�j���L�:ŀ,\CN3 �e�zYF�
~��T�sS,+c�M�N�tۺs
��,.�i���g�+��GsB�ōV/���6f�X�kK�F�V~�Oխ�D���-_!������H*�R6M�>X�­8�5\2S�Xn��R�D�'`��R��4̀�ު����"^���R~�Ν���'0O�|���S'�N��E=^>(��"�TȒ�Y��r�-hp��ԥXV�:�M���)f�U\����m�X�󞯃%�ؚo�p�/c08)Q�9�Ö�~��7�B��}�(���;ׯ&	4�H�����$A�""��jӞ)S͐��a�L*/��~H�"��:�ȌHY��#����LdX����XX�'f�=�H(����?��< |$�!˝�/�e��D,��5R�ZV硛

Xe�t�y�4\W��:`D�sCQ$b ��*�wkvv���:�q;M*�v�r&_d�)k�;�y
@ZM8����""<��$�p�C���A�� �P�"�@0�K����pS(`�"P�P��~PY[���t,ʀX	�c���&&�X���)�t�L��_��VؐM"�HeP��hYґ�0_�1�|���r����Yk"R�`��M��:�h2��aϻs�FSO�����1��5Y!d5h�
! B�fȧ���I��"�s)�,�G,�ׇ'�{?xU)��$�2����܂��v\���p��u��wLN�WG�pOh���3�X,�˂�h�J��p��>��7T�9�lE�K�Ǚ���PAޖ3��л�2�l9�X�B�Bn$�]]Ȑ�	���Ч����Y bD"E�*�H&��JĆ^�8���dr�@���5-��m�����>ؼP�E�����S�V�5|QC�/���!ܩ���͚;���a���N�@���<�[���`V��P��8��(	�ڈ���"y�]�Oؕ`U*I��X���Y�nn�M��b��Gc��x�o��84�<S_�9FY�^�j�8kf�j�]�@ B�Ø��K^ee�9�$"��)�D�,1�D$/,,�!g����1�X&�b�%�����2�}��HX���ў�	TW�{N�={~�m��=S��q ��6wքj	�$k�x
�Q�RG@������n�VNfH�R	�H�!(�DL
��e��XJ�9"�c����;�l�*�HS��d́�^m��d�Ğ=X����D|��'8ϾšzZz�%0�7Aϸ��&f�lZ�u|κD��	RG)4��XŮ�Co���D���g�Q��'RZ(8'�ʊ�4KG���E��)��1eQ��4o+��T
A�o։*y��2v���������bQ��s6���S���R� �-6q��3rN[�S��P���PQY�t�ݏ�1 $���"�B�<p aQ��C��X�(�$���FQQa�,5�4U|����0���W��d2t�i>ٌ��ʚXh<jF|��tĂކj�����ŗܻ���.�xk�p�J�m@ig��U���0���s��*��Q��@V�rÕ7�+*�B�7ioAþV�{�`@H-4�-*-D�	)�~�=�L*��;"1FǨ3vu=��5ӡq�{
�^�L�;-���⁌\�6䒂�.~7�ښ"xu�@ܖ�UR����t_D��V�Juܹgq��3���<�L�/�B{ǝo*{��e(�H�+�
y���@�DD���$��VR�`!�se1�FQi���d-1�
M�KiV���?!iA"����<Y^^8Y�{����F.^�7X��e�axܱu��@�]>�)t�wk5�6�oy\kts�.�y�r���m�U:�2`Fus�n�$�T���V�ù�2SH��<@��L�����Ң�"��s@�d��°=G ),���g)� ����~ǎ���`�@���=3-;D_������y+�P͸����y�ю��A �.��s�|�T �&�R.���7D�C7�	���@t�;���� L!O0 �qǦM��N��$>1
aV!! �Bw%�$J;s�I"�$��ccz�Z`�"���"rZ��%���E�0r݉
k��`��3�ۛ:��9���#Dz�P3
6\�

�:���@.��d���(��s#��
��
i����<�W�K�f�%$ h�q�}FE��S�݋A
�GB!�H	� �]Tԋ��@$��x"��r��d����L�D*�	��&,2	)���ˮ��ND��)��3���U{�N���� "�^����/�Py9� U!�E�h�Xљ�\FS�ѕ���0������a3!�{�1d��K)(�W�!���B
)~K��,3P�
|P"��u�W��D�����,�}�a�M<�F("��c2�s{���p/�r���e�K
 �{�
+@R�8�����D������/��̔�#��P����,K!��'�:! HYtyQσ�"��*+�{��4GPM!t��"�쐀�� �is �p������퇣'��?��w��,��*��u�����%nq�תQǠ����
�-b��L	�c�F��b&DY�L	*��jҒb�	_	��Pq�ZB_0�$�w�ST�'���~SY|�7�{�=�&#���Qz�%��X�~��G�\�t D��!D�B���W�![��^&����z:�
�-�e�k��]v�s�\��uY�fE@W����
DydhFm�@A�%
 �ѣ�N;a���p���Y����^�0���%"����֗��W�Lj���'��@��R@��
�7�@P>���!��Z EHpp��w� ���6���#��ix�[�fJ�ld�DV�B��B��	Guh�d��gq�Jt�N{�@����~�y�1W]u�5[H`�5�8����~d��B����_��(D�t!�#8���fff�`��/�#y{'���BaF�|Ó�m��`ٽ��o���7�}����@*	��^�l>����X�@�m���ŕ� ��3��@.Ye��*�<}��e��HznDu�L� �`�}h��4j��mxNw����#��dR�{���m?��'B���l�\�u�"���j=��	d��z��/  ɲ��<��A�u ����< �Gn�K�	4l�,�����&�y����B!n��P��K�l'���ȟ<߆��ag��7D ����F�;۾!:�{�HW����7��q�CpE�~���� ����Z �B�ZFTW�܋�*�6�T( x,��t���2�(�_)��J"�cc
�ťYj�E`�:�a�������/䫟�ȗ8���؂�y�m��G��(<�`%ҕ�!��:��@�!����\��GAy�qk�ܲ6���9�P+@��28�T"�5y�1����-酖O�y�OR�R	�1�Ʀ:�_O�\ �v�pY�>o�C~�Hx�6@�x�E��=�1n0�L�S�[ G2K���

���o!����< :�W;ԥε@$��t� R�u���t�����O^:��OfN�����z�Н��4~������CV\�n�����
70��
H��/g8�ᙤ!�e�(KtW,�#8�T(ȝ
H��!�^�.+�C/<Q"����.��j��o\�H!9���|�X4�r�'E��8#%7E|�O��9��0�b����>���u�{��`��i8�Wc�wү�p�������<w&#~�>���G�udv'KHA��o�B�� Y�5FU�:@�ע�䵓�q-�NEcq.��'�\w��L�M]�=��ց&%ٽ;1��wz����n'=�/�F�;��v6��um�^��)���:��c��ٻ��#d�r�
���@nH^Pϲ��Ua�=2�i^�)����R�6<���ҩ��u.	F�-`*�-&ӣ���Y��������j����>'ګ{�Db�>i��B��I_�j�xi�=�9�pXyyHv���|���ZO���K)�L=�rl~ª�Hy,^$�_��X��@ݯ�.D��䔜�KFQ�67g�t�	��t�c:��yR%M��n2��n�X�����ŪGz��;�	������W__�)u3�u�{���*)(�ȟ�{�o[k,�Y�M�j[1�'T,.�r�N$��T�1�Ȋ$�c	�DZ$�B
]Ѣ��9G �Tq��32���`dJ�&���ӻ8,\V��0��MS�P��r���#����g�|>JTF&��[0���ī��V2�����
oV-X�2�WW�M��e�/�]��ޢ߽>���wYgY]�8r��# $��|qG8�Q�3x��FG����-��h,�%➚��D�4���{LǚA�,w��Y�$>{��4l�9f=.
�DЏ?����< ��7;�����^�|�dY��^�����|h�d�׃Ųڶڶ�ܶz�J�m)��W�x�ο
��C�,�-Y�E�����K#�x8���zZ�:'�[�qhB�c�U�Z��.v���
�32��^�t��=���;����p��'�,bB0��ݻwOp�;�������\.+�Km˙���{1��`�[�6V�Mm|���*��@�B�T@��IK��y�h*����o��UԮh:Y[+IL�#dnX
n<5�cz�R�dPP�甆3��	�����B���ML��-b�3�
 �k  �,-��,/[2˖%K�J�Y�"0�-��KYY��}���l�`u���p9d��=�4c���_�"H��GS���hB��۶v�Pk�+Mİ�j����q-||�T�k�%-�[f�ᴞ��8@�U�3�
+���k��gtK�߯�d�P�@̘F<s@r0�‡zx��\1�+���%c1�R!_lX���Œ)Ȓ4�Z�)�� ���U������}�Q�?��5�rRDK>������gP.������B����<�1�֦�#]-�<��KJ��9�t�����	"2��-{<�>�l&���SIG�L
y����r�o��$v�C^+��
�~�`E������Z 7����!���lH/k��X��Um�pZ�N����g-�L%����*?����/�%�n&�s�1����y�+b#w1�!HO#����VW'F���3��=$j�o�tNR�$����M#����BvN��q8��U��ҷ�*F2"8/�b�Q�S����#)ɱw[y�3�t7�'�mC������il��ƴiWF")�"#u���|�Q*�I�O*�CF��
���h�(�2
��8����x����ɝ��Gt.K�ڋn�}ލ�w�oF�Y�]خ���޵T���̢���+��Nk��$�E�kL�p$��VhA�RjL�َ��,�l��I:2V{��	��C"�	� ��~X��U`@^�e]�>��K��X)������c�����V@�u_5��P�#:��L�b�ً���8���U�NG��j�e�%�-5Ŭ��d�+F�D,�
�UG�����( �W�u �u�П�-@��D��cQ���,���;���F�K�E��A Q��\F�Ȇ;�#i�8:;�O�ڇm��F{N�X0�Gf�?b��C_x��Ʀ���{��~Wr!܅3���Dd�˝7�TI�*�/SX�[u ͽy�!�_v��9l%@e��9�0S����;�+ �-@\.hH��M���U�^����-M�'�?Nh�q��=��h���p^��n���	�����Ff�wu��%A��o��J	&B�H���"0��@� ��!8 =ED?��Br��
��;%�<�!��o��q_]���q�\.bC*��������R�E���6[��p��>�Z�[��TL��.W���8�'��\e|�{~~<9��&o�[>z��M-gk�ۦ��ITӲ˰_�G�;%ė��U��p���(��e!�m����1�ӥ݉�y`����t��b���rȌ:�8���x���gOI�S+��km��qh�\=n7��F�}���םL'�� H��xjf�6�;1��~Ҕ��bi$�zd��Io�LӔ���*< \iS@�H��2��n�* �a���X�VΘ���|��� 8�������Gm6?�C���q�p;�uOG�S��si�L��:HHy���ןrdn>���.D|y9���}�Di?��y�O![�����&�"6N����j(1Qzչ3�]9��m^x��8�3�~~�{�ʖ�f�<G�يSK�c-:/���4B:h"A�N���y��!$��g�t�5d�������� �A`/̠n"��$?5�N
I]îC7?\��엮m�#��=A���;ͯԝ�OcUƥE-�)j��FQ4���q	
F0L�bD*�F*X�qA�⨭(���U�B5E�(�$�1�PS���d����=�]Z�Չ�|���텒����{�o�(����
�tZj��Ϧsk�$���0��<6��^h|�W�����W~�HG�ID���9 H�8R U�K ]%@��!b�@f��X�h�hzz)�3�zFO<xj���o��$��=�H�v�Ӿ����gO����x�s����K�ߓ;�>���LR���i����W��"�3�w����u�+���a;��,}4mr+M	��I�Wl b��P�w���Q����:�S�棴du�&�N�f�?�Sw�Gٗ�Na��>v���#�U/lz��i�&��R $uzLVv����W@��!L;@��0FE�@���R��M���ϰ4���N(�嗅5ZPh�Z>x�ׅޑ�$�/�cݦ�ӱObùUZ"9f���]��;���M2
:C���RV���C�!�+xT9�������o�������
D�!X
P]8<��
��%]	W�z�2�)��S7�ۻ��{z�rc�dT����X�Dž��F�`V6^���#ޭ!�,�B#�/+��4�nz�v��
@  �K��+��F,�ZZ�Uqɴ_$���K��"�[^lwH;d*�^L����lژ�vdAZG)d� <9!�����E�����7���y��6.��.��h&�e�\
Y�[@� 6���B��-눿��]h����P��������#���&���Mgm�4o-N�vea#)f��d�9��m)�]�|�OOz��b�iW"�+�����:��r�_�=�M%���B�ZIz��2r����ɳ�q�)�r!�23�#�N�5���y����Q��O�]x�t>�2���x�E2~�'Tl:}����ݿ0��nUeP�E��x�;N�r՞=c{�d~n���V�ȋ
��i��I�5���P(T�B*��'Y:V��	�^^���3i�D�E---��vM�h�5m�ߧ�f�	qx�j��m�ć���Im,(��~l�🵵��F"|
;�ZZ<����x �!bO?kf��ٍ&g"�zy�'��!�4��MNI
�����ў���C$�H�%�ɝ��\y��E	[ !�|>v0
��G*�TON/?�E,5G"�(�c��p���{(�YNR����<�m�ޢ��o�1��x�FN3KK��&L(�a��H[WWD�-�+���U�@.v{�K3q�Li�"��8���z���R�9*�D�'�^<�"&w�P)�l�Lw&S�Y����|�ˌ�ܼ6l�ƨ<ο0����Tvr�J� V��v���ގ���1U�┚9�*�ި>DV��mW�l�m�&@8�

Y6]�8��Ig���X�F�ؖ�(�c	�! %���W�hȪ��B���A��e�\~�oNo���=U�d6���zA.G_�+o/.�Q�Z|�1Mg�������H��^�����r.1���Gi٢>��H�M�{��W�����*��U��P Gr�k��9� �-#UU����W����pH3@�!
���7��9�Z���=š��3��B�� �����@����i���b[��XL��$Nv6�R�phr�{)�RX��˕�C���O���>x��.���_�A�!�!a$��u��b��R�t��=`�$�T!_��,H�l>�#���i�yl��?��X�ή���h<9���"p�j
x >�J
#H(�A�D���=�C����g���qy:DR��5e�q��B�<N���(���
�o�I
�s��g���F�.��(�z��ܵkpWb.Q�����Ur�0ae;�up�@!��\��r:��f�����w̑eHܡ�p�;w
����ϯ#��$mďC���_�3��Gj<@����;`^ c6�5�x�Y��)�U&K� �
"ښOo^�.*�k���g���֒��+j$��&�S#�k��-��&��5���@8<�� .�I��$�=����	0ؤZh �t�)5�,�,�����!�����l��È�0�$h��)�t��W�����$>�(n*������B��Χ���M_>B��QL�wfO��|�H�N�B�4��Ї/�JR��<]�����q�8:�2��B��WF�P�3<& 8Z:S ��@��/rn%�� ��[mݬb;��	�&�'r�4��<�9+�Ӛ�_^i���.���[=ñ;�/�v�0}��;�V�N-U��H��I�	��x��5�/o)ˊX���Q�I'���,2�`�Ll(1��.��F1k�n�q@x�CT�QY@�h����$X�9�r�?���J!��mWO�wJ�@��2�rʅ(�kV��h-�J�Z�`ي�t�k��3K�~�䵼����c*�!l�r��<H�d����r ��ԗ��9EQ� �f��FQ�P������� �K
��!"�U���4��.�UL��uu���?�:$nq�3[�d{���+OSe�j��@dn�%��?~?��Kg�ǔ1�Uy��M����In�\�����h��<����Cb���l��
9�R�
���C�(�2��m�H-� U�®`���N�, � �W
r��P����a�l�Jb�1E��ү���W��~zJ����m�J;&�C$K��6�i��<&@�"zx �v{(���
�A �8��P ��O�"]�G�f[�.�i��P"D��ı��@��&��hXiP� ��v,}�JG�2"r�;�����o��]Y��g��� �TeL&�Q�Rgl`���tI� �b�L��5���w߱URs�+�gS"�����Y���-2@��V�Wq�1��Ν;�8D�T�@9hM�HPvZ9��Fr�}M'7iok�\����m}q�4����
�0X�6�)�,���S�Y�m�P!��Sm�byALy��6ST�"�
D�'�q���YM!n�z�'!�㐷����AeV�K�8���2��PB>�Ci��R���	�C�dȍ�$]p�o�<-���Sg.�S��!i�� W-X�Pr.�7����@��#ɮ-��_z>�dl�C�i�Jb�5��fz�	ZB�I$&���k�+[��U�g�T[�������+N������|��&�Ʒ�D�kf�@쐥@I<��;��(�p�&�j��
a�7�9��!�B�{l��S��DA�;�۷����	����Ƒ"�Wtlt�9�٢IZP"%��k���v��.���)Vr���!��r ��&{C�QBأ�o�a����j�C�d��؃�j����&��|*[��q�(��J�\q�g�����KNa(���coɨL^ Gk�=��Я�z�grϨ��Y2`,cp�G�#Fj�S�Zٸ3*4\ O� &�%�vQ/p�A��X��C|.�2��X`�ȶ��.RR"��v����C�xקD`b 8�!�<5���H�
䔿r�CD��4�+���lM|mx�A�h#3�I��gl�Ac3�u+�+kb�8q+F;���qO�]_/��M�a�J��ʁ�D�!���)�f��G�<dQ�x�pҏt���D�?��0��fq�Z��\��9��
Ĥk�t�7S�X<�a�5h�'�E�$
$>B߇@T4.��Ϯ���p`X<D��t��"p0D��u�8�D<<L�:����� *�@[R{0�G�C.Q �Ђ*r�}�5Ѷ+��)
V�� +�)D�R�b������y<1��jn��ܾ5b��
�믳h�����R_��QeD<̤<d	h���wsg��$^�8���f5�
�8���+��@D��qbu�
�.��y�^ ^"ڒ"@,�7 "������l����`"���H�����p�4@�_e�m �C
P/����m+��ژ�}��d�Z�K��A �"z� Z4�eV��;J��C�&���r������pr��FpI�E� ���1^�!�th3ၰ���A�qキ�u��0@�w�H�����\2d���_~i����! f2���+ݭ��z���NZ�-��Ť>�b�A�@�c�S]
A� G:@��,��w@����b���0�:�T�SSԡ�J�8�9�ԩd#DP�HEHqӈ8��(���&�FB�H�.\DDD����Ϸ�o�of��U�Z�ffw�?���o�5k�'w���б)t"#9;�_��	V�ZS��7͍ �nx@d�&�f_6 ��D���9"/9�M�m������!�%��C,j��
 TI8D�� ��@�]�^x�!��!JnȲ�>J$C��#d��7$!x��G�Ld ԛv����i�^����6�:D^ݬ;�" [E�pU���:$-8
��d8�pH�Vx��ov(!ϴ9�S�:���q����[V�'bur"�� eR�D9�%�,�F2^�IH"d�� ����Ͷ^V	�>K�ϒ�i�	Y�+g��t��8'��
i��oq�_���9���d�d[t����ED���[o���FYè��?��_ ;�@�Y����59/ �C�x�V�2 ��da��p%�j���!K�~,���1Q��T\�sP�W�C�������ܠ�&���2Hc�C�	�n@�1a	
5Y'�l�!5� �*�p���x2��C0	mq�
�$�����̢�D*a�Ņ�Ж���!��T�?�H=�A����K1H9؀@�3��A������D�
$��Q���Q���!��J	Gq�]��;^1�l7@�!"�_9���(�""�<
�&6M�!��C�ԫ���!��ܡ������7ZW����^���ջ_�) �"
�DȚ]��]�#��{��j�&�2�Υ���'��2ȁ���	�R�6���@p�8(�� �\L�'���V�z��<L
��Η9:�C�/�14% X v�'J"����G��+�PK^��^��@�F�J�@zHu��")�yi�X^�
=c��A�.$���d#B�w��𪓛'�8$�LR5Q�w(d�C��N@�q
�H�DŽ�,�"FDA띙���Mֱ|�`=�"d���Y�t�۞Cj<|q@�C@�y��x�ziϠ,B���*< B���C�0 }ė��C�Q�D�	�H�䖅��ʰ���0��� "b@�g����cc}��g7xn��'��}���Y��!}��6R!�%�)��Jk�$`�E)��Qx$�ͭ9���^q�O�Cd��C�d*̝��N�u���PA�"d��E^�Y#3+�++�+��+����9�)27
���@����"�Zհ(�&�3�l^�H6H�b�H�
�8jh0�s�	 ���zR�FZ�@B=-3��2H�GS��d���e"f)���<��I�`�@ELН�!�H$�z	P��*n��(,�����!�Ytq��1+�ۅ���!�T�Cn��$,BR�}_R��>
��,y$A %f������w?���矿=��k���Br�K��^��Ɂ��!�%�.@���#�Pc���A@��BwP�I��� ����@�
 �tv��X�8���@�[��$,�|�<�Z��������#Ǭ�[���oأ�����d�R}��d�#�C��m�QH;o���T$|Px�� bL�<]�C#��b;s���SrK�i�`�����[�2����ҖDZS_���{d�������I��_^{$����n
"� ��X����(4�#�A��@��<R����R���/� '�-1�8H8�X�,bVc�WU�Y�¡r�-�2Hf�@: �@��t�!��z��!��U��:�����IDڀ�ő)x�~���@,��J�
G��V�UIqG4�AA��!e��8�� f�:.�zp ���溏EX.�I��	���@ā���BV;�%4��,9v���ׯ�l�����@J����ŠR� 9���{� *�0Bn���	�j*�ԍ#=)d�v�%[�I�Y$;��y]�m)@ش J����\p�C����|��;?��v��(��5h�p@�-���JCe'��҄C�"�-$J��E6��8d0M����#�D8<fѨ��&��drj�@t�C@�8GM H@2���G��Y�Ƚ݁p��/K�6
IF<�?�
;`����?�!�!�e���$�I�h�N͓e(99%��Iݑ��#l������,�@	
�ڋ��Hf@�K��R}`�Dd"2�Dp ��z�O� ?���GN�FB���A_1I�G�,���bVR�Ye�␘��-���E��:�H��N���Q��
 �;��:�`"U 3�7G����G|yu5����u�
k
��^�1!����%�x	�p�J�IcuK�H�!���0�O'K@�tH�c�/9}�$�5���涠f	��zZgTh8�����B��y���{O�Ѿ@I��j��H00g�D@�R���t2�p ��u������-��L<Y
��zF�GX$�8����@���Ϭ��d"�@(Pu����!}��� �\Lv	ㆡi�0�R���g��!�q�C<���{�U �i�F���=q:�F�B���# ��bUqHN�2�AD*��>�@&y���Vx���6�ԌC�R¯�3$�R�`�,�S�ݵ��Wq  �v3�0H9���6.���<�	 �#�AB�ws�qxt<H!b���8$ �=a8�~�A��@B�D����C�Qq ����%Q�*
����|�ƞ"R�!(��!6�΅H7�P�%R�f�u���	�!�,"@�r��Y1���W_�BDcv����pk �'���>r^����~��H��ݹ�����%�72X��C.�-Ұ	@&_e��@��E�0{�� B�EZS�����G��d�XX�"��`k
��Fo.h�a�rY�<z��
��!z�ʁ����!���Ðsj*�+�n����vg�M8j���c�Z�E�륧5Ӻ�5��p����W+��G^[��X_����1�R�<�ԭ~���V��`ϥ8��:��. �E�rPc&K@���䭀����
9$�
a+ #��� 
���C,�|C�@���_L"�!l��m��`S���
�v�
o��QѮ�:���;#"��1ѫ��@P�-�[1��������w2������P�z_Z1"ܶbȾnH�d ښC::,�D)���ޞ�rH/��$4�A�a���v��K�!?��K�U;[
 ����*s��`! �D6+F���מ��y���w`����1#�L2���<�.F/�����˲hxi	Y��������gO|���F#���ˬ=[פko
,�D�(�q��ye*+y�����K_'�t�x v$�G@b}-��d�'hI�z�]�&�(���@�,�"2������B�;$p�DV�G�n/)$Ye�;5�T�ܺ:56|U7 �R
�R4n�+�Y�peT �h������D��s%�wHf���@de���-H�DE@������$�{�]�:d �qȑ9d "��q��5$ �D�����IT��VG�G�:D�[�KY\��{)lm��H��^�J���ak V���Á\�:�������ݻ���ē����<�"�d����
� كd�G�yd�rH=�kz�E�%`�ݾ"X5���N�`o±kᡤ.�;"�!��C��_},�q$����!.{W ;��#ե��7��m�~�S�Bc�M�yB���B���(J8��&�dq�#�P��Zu��l�����Ł@�ݢ�C���[�6���@��*��l�*+r~d�,^��+46TVg���:�é��!����)h$+�];h�e)D��!��z��Ťb��� ̂ ��ڂ9H@��{Ŷ��C�r��/����Q���R���# �0�5:���<��@Z��8dc��af�
ek��H ��]��P���BDb�ރ\"=="{d �'/��[�p<}�򴀼��TA�9���۪,���m�)���tw$�$��:xH��s�hI3?��q	���֖� (yO	{�ߩ��8�$b�$�d&�<�<z)@ ��?'}�ް��C�����A;?�"/I}q�k��z��[�8j�}�>�O������?sy ;��������S!�% _���\�<р���q.J"W���!HsY	Bk�67H�Q�L9���cJ�Ž�p���8l��"���R�Q�R�
 �%�u }��I�}{�x�_��:��c`翾���=�
�\��oI?_I����~��o������B?���<J<ɺZ�M�#2����Dh����_Z_�e�읯���e@��覥&�J䁃�Є�B�bky]y�vu���ᐤģ?�������ـ��g�'}Ȟ�y����^������I��h@���ώ7 {��i]C|[[[�[�����C�+-�
U���&�w�!�;���id�љ��
��q(0�+����M�p�@�������!�����=�t֯��Ww�g�>���~�'����Y����9�7�췽�ܑr�2��x`ia�DD}��-�Q
�lVb$$Ydfb�*�ցD67Tp$����rvH�I_��W;<�?	E@;��A� Q4
,�0P١�����C��7 }_�ӯ,@x ��́,/�@�;V��7�9��5��4�x~F�G8�ޭ(hd4�!>X d�"��=�!M�$ \�v �D-c�!�c�������z��Hd�AA�@�n@����y����@�J@��@���<4n�Vx+���o�;Ԣ��������ӘH�c���-*<��36xL�OS�!
Ue�n�@�5v U�Gq;W��F��/@�D<��[�_)@��y��xm�G���tH' '�N/l|HF��DQ�S�r�\5���Ԁ����0Bu{LI�T���C,T��շ�q��)~����ū( ���rd�ERߙ/<@ROi\�I���>����JR��Qa$u��������F��.���GF*Vp?t�-ID�\�h�p�B��pUH8�F!2:|�N�!=Q,zQ��7$�5Df1
��Ѯ=pi!
`�G;jo��n��s�rG���������~�_x��rr�w{�_3 '�n��o��<]�
<8��$�!��x�]/�,�
G6H�d��SY�����^�W����"U�C�S! dP�
"1���4u�B��X��/~֓o�<�zy�@^����_���q�q7��1��Ʌ�]̸��C�]��&d-����h��W����"@@�#AW��V~�QI׸9�Z���d��%`H�pT��	H	_�}')�[mj ��H���i9R��,ã��9�
��1�����_�Gx7��k;�̺�oO==�<- �.x�����y�C$~G�#!Z��:T�K�V��2l�ͼ��m�Рf����6��#��@G:��<��	k�n��q�Ǒ-" .�!"񪚌 �9�[��Y@ b�\���'�7><���jx$k@����
��*.y�HN)���z���W�(..��a�V��1! ��K�KOn��s(u(�4B,���2&b���m���%A�Jo:�z�'x@����o���&DV'2�@�\^][{bv��0HQ��IdM6�K͖�S"�W� �&���>����~(�EHO�u"�H
x���i�LH�@�0�P�����DB8�� �*D�E�;��������w��
YW�B�2�_F�ߧ���K{�����D0$�`C�0�&T�	+�I�&rR�nn�	Ʀ#��@���f�8��0������z�&w�
�mW��J6,2��ݏ�f�g�C���8d��M�玼��))�S6�a�O1�.ox�
(����B�CZW'���*����<f@FH۩�T"K��H�-�����d
�=��Ci)DH{��	�k[�CP"@����#��Gz���/��%�J�4������B���vh_���\LN���7J*�Ɣ����k �k�ߡ�'�&��eG�c�s,�$�Iz�d���.��g�tk��<"$px1 ��x�֧]�)���t]"V�#�Pd�H����R���j#A
���ZSWOP\r�q�U���xF\v�N���a�qDIW�_{�h�������/���&kH�!�j*�v�
�`x�b����b�gA2����w�}w���燘E$ѻ;P��j�W;��Aa�����U��KzV$/[�eqv�A�1w�%��4�{3�"�j��wb��Un�ٱ��`����2X
�5�F��A$��6�z�%Ȉ
L>{�c�!��疇��-B�Z��!ks�?L?|��`����!N�z��d�V
�)��)F���]ea	L�w~��W�����ASV�����w>�ҿIEND�B`�themes/databold/v1.0.0/theme.php000064400000001766151213255650012257 0ustar00<?php
if ( ! defined( 'ABSPATH' ) ) {
    die( 'No direct access.' );
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Databold extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'databold';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct( $this->id, $this->version );
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style( 
            "metaslider_{$this->id}_theme_styles", 
            METASLIDER_THEMES_URL. "{$this->id}/v{$this->version}/style.css", 
            array( 'metaslider-public' ), 
            $this->version 
        );
    }
}

if ( ! isset( MetaSlider_Theme_Base::$themes['databold'] ) ) {
    new MetaSlider_Theme_Databold();
}
themes/databold/v1.0.0/style.scss000064400000003544151213255650012475 0ustar00.metaslider.ms-theme-databold {

	.flexslider {

		.caption-wrap {
			height: 100%;
			opacity: 1;
			width: 100%;
			background: transparent;

			.caption {
				padding: 30px;
				top: 50%;
				left: 60px;
				transform: translateY(-50%);
				position: absolute;
				min-width: calc( 33% - 60px );
				max-width: calc( 50% - 60px );
				background: #fff;
				box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
				color: #333;

				p {
					margin: 0 0 15px;
				}

				a {
					color: #016fb9;
					text-decoration: none;

					&:hover,
					&:focus {
						color: #29375b;
						background: none;
					}
				}
			}
		}

		.flex-direction-nav li a {
			background-color: #016fb9;
			background-position: center;
			width: 60px;
			height: 36px;
			background-size: 18px auto;
			background-repeat: no-repeat;
			
			&.flex-prev {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%23fff'/%3E%3C/svg%3E");
    			left: 0;
			}

			&.flex-next {
				background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%23fff'/%3E%3C/svg%3E");
    			right: 0;
			}
		}

		.flex-control-nav {
			bottom: 20px;
	
			li a {
				width: 16px;
				height: 16px;
				border-radius: 0;
				background: #016fb9;
				opacity: 0.7;
				border: 1px solid #fff;

				&:hover,
				&:focus {
					background: #016fb9;
					opacity: 1;
				}

				&.flex-active {
					background: #fff;
					border: 1px solid #016fb9;
				}
			}
		}
	}
}themes/databold/v1.0.0/style.css000064400000004322151213255650012305 0ustar00.metaslider.ms-theme-databold .flexslider .caption-wrap{height:100%;opacity:1;width:100%;background:transparent}.metaslider.ms-theme-databold .flexslider .caption-wrap .caption{padding:30px;top:50%;left:60px;transform:translateY(-50%);position:absolute;min-width:calc( 33% - 60px);max-width:calc( 50% - 60px);background:#fff;box-shadow:0px 0px 10px rgba(0,0,0,0.1);color:#333}.metaslider.ms-theme-databold .flexslider .caption-wrap .caption p{margin:0 0 15px}.metaslider.ms-theme-databold .flexslider .caption-wrap .caption a{color:#016fb9;text-decoration:none}.metaslider.ms-theme-databold .flexslider .caption-wrap .caption a:hover,.metaslider.ms-theme-databold .flexslider .caption-wrap .caption a:focus{color:#29375b;background:none}.metaslider.ms-theme-databold .flexslider .flex-direction-nav li a{background-color:#016fb9;background-position:center;width:60px;height:36px;background-size:18px auto;background-repeat:no-repeat}.metaslider.ms-theme-databold .flexslider .flex-direction-nav li a.flex-prev{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z' fill='%23fff'/%3E%3C/svg%3E");left:0}.metaslider.ms-theme-databold .flexslider .flex-direction-nav li a.flex-next{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z' fill='%23fff'/%3E%3C/svg%3E");right:0}.metaslider.ms-theme-databold .flexslider .flex-control-nav{bottom:20px}.metaslider.ms-theme-databold .flexslider .flex-control-nav li a{width:16px;height:16px;border-radius:0;background:#016fb9;opacity:0.7;border:1px solid #fff}.metaslider.ms-theme-databold .flexslider .flex-control-nav li a:hover,.metaslider.ms-theme-databold .flexslider .flex-control-nav li a:focus{background:#016fb9;opacity:1}.metaslider.ms-theme-databold .flexslider .flex-control-nav li a.flex-active{background:#fff;border:1px solid #016fb9}
themes/databold/changelog.php000064400000000115151213255650012245 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
themes/images/ella-olsson-1094090-unsplash.jpg000064400000462235151213255650014730 0ustar00���JFIF��C		

	


 "" $(4,$&1'-=-157:::#+?D?8C49:7��C




7%%77777777777777777777777777777777777777777777777777���8������S���{|��o:��ifj�}h��D����@aLsK�4�mߓ�*��ϳ���vt��6�`��Yķ�~e'I�q�i6K�ւj���͙�EV=����x��qf'�SCJ�Z6��
���8�����.�z�T
�վ`O;R.� N���h�����.��x�>q�������VF�|��%��Q.kk��Nw�gL(�)�>�wV�Ww���u���Ĕ���k^n��.�\2�:���-�͗)i�����ȟN�N��xC�n��v���O7�*��j�p�i,����6�7��?�e�+*��lW���_������X��/$�qc��mv�)Qp�DK���_��΀��>���`�S�j�Sy��=j��y��̴��իVt[V�����L�V���ҵ��������h���Ú�_2����!P4ek �^z�D��L]�w�O�^
飽.�?�<ׄ�2u�klj����I��O;��4rڧ��Yɥ�*��
�4k�¥�s9�K�z��rv�,�Mx�'�&��|�v�52(|l���p�)�CG=#����=_B��Q4.�OW����w��u��^n#�:Gfe%�@.c����������o�@�2L�q�i*�K�&��3��e�����טO(�9�e.{V��/��T��ed�Ϯ���S~�zJ��ô�/��U��)�uH��T��w)������󡤼z8�& E�V�Z[W�i���K���%�/���m�5s�&z���-&rRoiQ�{06�b����X��>Ի�v�bΰ�M1�\��`0��-|�O;?'���o��:�1a�2g�l�i_ۇ�~���?A�9�}��JM�yY�t�l����fW<�4��Ӎ�!�P
�����Ƀ�=��h:>��3��%�H����b�Zh�w���9|z~����"��d���P\���g����M'�u�Ǫ�?�2��δ��m�z���y��[;G=T�Cf��Ǯw2�N�λ��f�q����.��y�K@:���ư>W��6ja���ã��4��apD�4�Z�x�Cu�}sog�Q�JV�iuݜ�>�/�&�����
tL 8�Â8�H�]	T[o�ּ2	�SQ�)r�Z ��Аf�s��8���Y�5�GuTy��2|���kc]Wu�r:\�}N��g���9����S4ׅhf�.h���貞�>�:��u���O SԖ�N�*�O�3��jL������F���W7�1|��W��f�Co_>��g@;9��QiD��C�_�"n�¦��z
0��Z�76 
�:	�p����T�Ѡ�����}���\�f#�!Z���t:_C��.[ǡ�p~'�<.R=�m2k\mm-����0��4�<у��}LKF�T(�͡��*9��Y�k��b����P�I�}b����GXn��_�JGS�y���Ep��E2)4�鍹���3�5���ݵ���=v>�_�P�Zyj9�α)���Ǯz̴G��h9M��ݠ٫*�J�ᝏ=��s�ΦϠ���x��l4��L�!|����%�8�Ik��+�榭�:}��,�e8EXڸ� $�ҿ��K�\���3m�GR��v�'���Yg�
���+�Z�q�D�>�7�w��F�%qYl��*ʍ+���u�j΂�@��mw]?I:JC�wbފy&n��š/U��
I]=u	ѕ�[k�PAP�� �T��溶�߯��b���m����;+��	Zk]�A���Ǻ�E��z\�=�����#���������//ݝ���>��HdGDq�xn>��ь�CT�h�G�=-E���a�k�ޞ7�>~��}4�z'�ի���s������N�j�굶��:�~�<�6�/2(�]�Z��ee�
1�Z�[SKQ�!9���s�A0]W�-4�\sڶ5�)�XT="Y�MR��Q_hL��O��ccYS�������M��!�_S�cg��t >��~���z�y��G��kės޳����>و��s̫�T�R�V�F�s��W3��g�r�A�U��k��RALmN��\���`gk�y&T^_��,
�U.:%��a�s��c���kgj�ի���o�б�)=*���;3C��m�ڞ�&U���.Eچ�'Qm�|����P����v\[�UT�\F9��d"�SR6R)ؗ��K�L-/NTױ-%o9w��Ez}-wG���
\��е'�<@#E��5�E�G���!�r�n����D_4�'JU%����2wB�U�璢8I��yL�͓���>��~�L��h
q�Y=��O����0.��.��7?E�:�����E3�<�����h��E��+4������G�ϑhcѥ�����;\$��t���ur��n�`�� HSƢ"8(�qٙ��*'w����9�=H+�קCa�g��}|Z-��P������Շ=F�Ƃ��ڈ蓽`먘p�yμ�Th�=vT�P���v��ڶ�9���=g>����F�2�����E�����4���ZJxq��u��c�}l�CC��Z�eI��e�=�
	U�Uj[g�T����<�ƃ��Rl��氳{��s��D|��������R/U^�2� =kZ+�^G��ֽ��8��d�1ٿ/�m��zӞ�j��4��_n45�ێnd�<�
o;�5���?bFw��[�+��3ޟ��[�i9;t�h�����+����y��-��=��Ƣ�{*����wh��x<êl㯧���ٸ쪻�s��"Y��C��A����Qc��!��<S���9ɉsș�}x[�h��g�Xn��hj�==Y����W��)y�^�5k紶s�H��4Pյl���~��E�[((_��d��E3�\�,�[/n�}	�k��4^��	�{�]��_�
�;]q(%�/k^��Pb{b+�G^%�曂#̛S��7r��N�x�N��6�U>��4�9o����n�`�'-т�Φ�\.�0t
�A\#Hg�^[rj�s�df���-~gO��<I�v��`�V��l��^o�_����Ά��pih�˄ڹ�fૈ�$�J�M�\`�~�o5�z/?�Nx�z}.�^��t�Y×�i�+|Ɓ��u����v�s�p���WI��[�gC�`G��ϵ��ii��3י�7���}��\1�y�^n�WbZ�Vi�=��i�<rI�#J^^�e�K�A���B�u�	�'$�m���-��l9;��eS�#�t�{�m��鱨KL~o�U^���M2z�+�5��T��q�R�Z��j�/�?M��e�)Vx3����^M��N���|ݯ3�G���i�l�$/ �B�%g�8
,�L�W=��|Q�H<E<\����C�a��G���֧���
�l1��ʳy���x��8��C�Y��o�e�)�NԳRj���^0S�%7]������1�yv����Z��ǧ����u&UW4�!��O��t:d��>F���_����Z2��'0�g��\ڵ�"J��qW�f�3�ZeY�]�O4	qL�>�3�,�eO��*#L>Ss�=6��(%d[[�~ӫ�����$aX��;^��9�"�.�u
1��-��Z�h��f�� l���$1�!�\�������zv�c�/:�_V��^٣���1IyO��n�6"��Ͻ���Ac�L\1K�>ǘ4�h�����c�谺��o���s��kL���I�U0�n;
k��t<2mu�e�����s�ʽ.`�O\5Sc�&x���o:oO��G�?����x�'L�o�tbA�+LQkƞN�Q�Vjח�������đ>�]i��f�x�l�����P��':�fZ�Q�/6(�ƋE�n)�8'Hm��#�,:�e�M
;�u6����_M7?��s�fM�
����ֺ�P�$52�CE��D�ݩ�@�M����p�1ɨu»�����=�r��i�r�h����Y�����*�~NI窹i��'�z�Yڟ*�y���s8�e��x`i[L�re�N�
�����>��.�[r�D�끅n{	h$�.�1
W��=���|m�p[�Hv:3x�p��o��7�(������s�I��R;ra4�@&�6	c���B��p
-I
<�ʭu@�����v�����r|�t�L���{�ږ�Fl!`��<?�r�h��P�*��Y&��NP�t�;s������ws!-x�'�p	r˒�梘�{=O�����݌Qd��s��U�Q	4�>�|�G�[S!��Kr��~Lg��S��p�0&����fpD(�j|�蚩MS��iQ ��E���#XAkɕ����.��KM8�:�QRJ���H�")<��7�!�D1� &��R�JÝh*��!�:����Αl��S�����u�\8�/������F�3Н�7��\ЈI_Ӹ���G!6�����5.4�nW�3\����g��\�BA�H�H��Ӹ�����z�D��u�lt��՚�.}TOi�{�svr�i�hG��eEv����&������V흎����Su���ay;S�R}s�.[�4�b���y��{O+&p)�,,��6��Ԙj����B�H��7x�ћ;IÍE�Vj3BO�Ě��U1+q���+V�˩���o�We�PO�7�d�u��ңM����w�S�gA���}ng�鐗\�"4F�2J���ѽ�w��O�CA��|�8�Ȁ4'Jl;�+���oL��m�%K�$�Y���Zç�ƃ���H�{m|��6=��X�9�İ��:��V��������3_HB�
�~A'����Mi�<K�-(���!p�ZY��<�<|��+��}#'��=*�Zi�0]�;8��ԙwI��&��ty5��,3@��;�7����[\���Lг�'s%���6J|���TA+\����m�U]f�K�ua�M�e�hT0'�a�ij^Jrk�}��G���	s\1�N��7�<o���8��p����=K
;��Z�]z?m�VW[Ϫ4�5��.�Sg����]7��L��� j'�G��;8���}�����z�Ef�/DU����*t��P�iN�#�эV�P�Na6�N4�Kg�e��[��E[�d=i�z�z��,�.�'^��r��w�q���ך�y�
��A\��VvӮ�o��4���紺6�Ӣ�$EE6e�����
�UN���4����݊ɡ�,�H���u�篐�Xa�y���C��&��I�.�x5��}�{�<��=�M��O�x~��:.�y�/NzC����S�[S�Mg9:�+���3������h�6I���4A�n��}��=���G���Q���� k�r�OP@�UM:
m�T����y���z�	��~��>�MqU��}�I�\]E6��䁭�����m>;Uӭ��!�x�����p�^�_���-l7��`\�7�j�S��g�C����~U���j�l��r{Rz��r�M�/U�[2�)4KBi�j�Wt�ޞuy�&�ƕ�"'��2*�ǩ��Ok�V�S �p��g��+���|���÷{y����:m=^Bvs�r�We�����W�E�8=���?@���'���ۜ{b\�=]�n�_��g�����iM�K�הUVF�yo`�+'Y*��3*�~��q����}����ٸ"�쟘�
-��sY^�Z3�N��j㉔�ކm-6gN�d��6��t�5��ЧU��1�I4�������4T�]���v8|�Dی��R�/�^v�N��5^AWnEF�:,��l�ޣ��K��K<��h�֨��z�{�I�iq�Go�$pא7�KsХ�;�8�=Vi^���6�?p5�a�,{�o������Gx��y!�e����<�G?̺2z�;�c���lČfڃ�.�
넪V��Sߓ�?Y��ԱJd�ʀ�^ni�^o�b���J��|�*0�v�ls�=����ʫ�� �
T�=U��E�bj:�e�_���2���uzr&�H���s+���Dz��Aud�c�y8�4�����u���ϵ,N�,U��T�©!��Zpda�9�*��x/p����ܲ�6��lDf�%����ެz���gl����'�i�iM��G��o�"��󾦋��cI����w��,����!�	s��Ro���+��y�ŗ'��Wa�l��!3*N8ʭc�,�c��
ǘZ�5Г�4VN��yQ�5d>y�g�nZBm8ד�fo�q��Iͫ��)���FVu�c�&R�eu�W
2�~���섌��ȉA.����uQ��n����|��i���]��&ޟ;���uHm�9�#?�Z�h0t��9��)Z�:]�,�y�e������e�.��Z+4|ş0�vO�k>�i�C6mL*�>�7�jQ���a�Ow��_P��V���oD�f�ѝϧ�֫�����c�{g_���}�Q����te��k./Q�4읝&Aa9�Iː��9�W�����M�i@����v5-�(�v���Q��v�{y�V5�X���cUí��2(�ެ��ܯV�NK��T^g���������x�/ �����;ޞ��A�B�[~��~��8x��s�=��N�
әWѹ��f�"ܳ�]��^*�E�V{wO�E����x8�N�C����4�	�Fj��~����Wm��N�~M{/�Isj�ث͠2��}s�����W[��P�5�?G��$yk��{�N9�`��~���?wo����pz��^��W��=5�"�毳�9�y�G�4�d�-�ܻqi�ZJ��fn�h�;���H+���t����n���FJͧ�J��ݣW4E�j��iK�5������%��y�G/��+b;]�:NlΝ�,����/���6wU��t��*˨��!�SWi���cW�|h�����u��`�E�3��Xk)�H뗭���ia�F
�7��m��E��o� s��P�=�u>)�|K�;t>od-Y��1w[�������<��!�S�nPã!��}�X�<;~N�'��B:����ɷ��g_��M�Ð�<���ָ�3��Mi���h4Ƿ��`
@��+��O-=6c���kE��G���ɫ�ud}dd\0��������ד�
��a[��3��js�y�A
!�:鲎�ռv=���K�a���v<Z�3��Uj�H���[V��y�K�(�&��R]#c'���Ezh�%��8g��s��蔆C�v�t��c9|��hu�w[��IR�)DZ�a��=w;�y]C�l�9�z����9��
�u���Xz�U��L�7Lz��]�ʝI��g�{�Ǿ�\��Y���W�)��ȊN^�->�^^T�+�Ʉ�<�WՍ�A��8����7�Y�y�rkb\����������#��g{�Ze��<��Ը
�]��Úv�����?'�����i:�=��_?�G��cb���\���2���0,�Լf�tf����K���x8�'��7��Y'9&������KCsH>ZV��X59�f�Xh���-ͦ}k�G/���	1��
�������5(�����-`c��u{H��_&ol��ݖ��Yw������"��-��KqupM1=d�G�A�qLs��hnW�s*���^.	�����3��kl���c@E�np�ҝ[�ke\D�xU�D��ϛ��t���yu�u��������^�7�$��G�qAX�?<�u3�/]B��1��^B��	�.Y��3ۯ
��.���q�Y��c��!0���f���gI��ž�\���<�]|�$����76N0V���n���h�����t��;0���ԧ5G�3Ք�1*ܶ��/F8��wT�[9�W����M�5b
T���i��5��?&�l�܇`�,�..�
?J�3��H͊,3\���|���~���-���r�7_&�9l����CO;{=���<�n������g̠�<��']jj̱��©ɻ��=.�y�F9
`�7|�ѥ��6�jLӻ�Ɵ.�n���
�l���p8g�����Ǝ�p"<�����z������Vc�4�6��:"�<��T��.mq�ғ�>D�����N�&�{9��#BX����&B+%ͼj>]ӕNL�I�l�(�!x
R�I.h�z�S�}�I�9����1s�~B�pzX&�7��y1��*�-,-��Xڈ��q��g)/���d��OWO�}���>�N
��*O{�U�gJ�`�'������Vj%E=Oб�c�2X�̺��RH�.U�ꦇ^����/���n�O�F���'	��?\:�ͥ�FvYH��s|��;���b�������ٔ9t�/C�Y��7~�9�w�YvbK���Qɳ��/�y�^��`��G^@�3a$�� OZ�"�}d��\N#�xNR�LD@�茓�u$�8!�U�"���5���>f��\k<����>�z�jr���)��ŀ��Z������y�Gg�٢���חo�y���
���o5���w�s�'��&�L�6��5����FO
���$��i�KE��f�6���l�S�U�/���ƟL�h�M��w�Ӡ�*��oY��~mOR~�\`qԬ5D��WQ�u��G�߽�8t�Ľx�u�Vu��9	�mM���b�b|���n���,�m]���#@�8�Z�g�M�4Þ�3N�jn��ơ$���V�tUΐ!j<��
��=�ĩP�[�t�˾���':V�s�K�}��wǞ�|۟G����\�����5�	z^S�8��5:fі�-3[��]��c8��ϛJ{�3�;|��BGKԻGE�q=�z},��L4�RO��� ����uqf$y�o|ﻰ5OY&�|���e��
?;�\Z��P�Ʈ87h�:e��0�����w�&G��:���s|���<�u�_/���3���%��������b+]4f�4S-9���~�ra�-�S\S���X�C�.8gy�M�%]�m�Xz���&�b�3��lP�&���6�?ӿɦ�
_��F�M?�=诜{�V��t8���Ο��y�7�n�^a)�ݓw��nC<��\����6�����M�3��mW�p
���鰋07Rz��A�K��<��.eޙ�\�rj��;�=ϡ��rҷ�k]�Ϣ^wGq���<G���<�}��VjX�ag��jU�_���q&VPy}�Y'�y�>�-r�w��k�	�?�� &mLj�<Ƀ`}"�$*�Q��L\Zs��Y^��*�=�;�m���ݿYa�ęS��3�w�a��d\f��_�i|�^ϟ-myV}|9y�F����a���=�*�,�窊7�o/������h�W��6��H���Z���fGu򞇴���M+N�1����h�(��e���ۖ�^s����㎺�;�Q
���(�us�/��`A��)��ܛ����O���{c7��}/��o�k�{:ȗ���]q��9'����<����ej����!Z��Y|����.�Gx~C������8��� N)�9#�� Z�_HϟOv�u��W�&�=��\%���Qm��n���X��zу�!r����-�:����u����k�qC�Ֆ�_?�?�{.*v�7��-h0��e����p�9��k��6Z�qܯ�m:�j��"{���z0�;�mX�uW�~�#��G���S�����6���ҥ,�ף':3�D���Y��o��9sh���¾�ϼ���������e�;=o���ٗ)x���yc!�l�{�I��۟��<�2�Ǯ|��0�yT$�2#������x&��u8���Fە�r6�ݵ�y�ס��?+�%o�Z�w5�h�\1x���}�8���_�l8���=gw�
���Kj���9��/24<��f�%��j
M��<�H���ÜS����v�?�v�[EbzG�-�k��;�_D��U1��T���fU�/������q���z���^]���8H��M��>��E���4]�g_��?
gN?b��]L��<X���M��N�g�ޫ�O�p��'Yͭ�w->��Ͻ>?����y�Ӯ�������x<ABA�a���7W�j:9H槃�?��/�|{���psh8"�7o���2Nk��Q�|;���s��'����'�U����ۼ�4�t�nl?��K8���|��6�L��=V8�t�=�W����l���Չ�g�ե�Y�OE���GFM�4�s ����&	��p$�勎"��W]�&�zN��Mb�J�.��.��ט�&�ք���S�!Ն����x��ki�o[.̯;�ٵ]��gۀPf����]'�.�8r]܅��׆Һ�u�� �?��x<��C`w�]�^�:2���}�s����/��[\2�zJ�ǩ�2��[�W~��0s>C���wF~nߥ���
�'�a�xl�\)��E�uc��<���mqU�az��hp/a�YI�6�e�O�e{F$���jZ�N��6����
���%IXA2磊q��}�Rk�x|�zDB(�w��z�9�j�Iו���.�έz�4�y�g\�����E��ͬ7���o�7W�������>�_��e�f�>�YG��k�����瞿#��;QU=+1�*��@B�e`q���X��fD��֝u<=�/7Ӣ�K���k����-�]^�[��Q��A|:�/����6�� ��4��}^��=F�~��^Ƴ�a���}�^{�|�������z�u�2�G��FC���}Ư���}���/�~d��U�w�1+E�0U��v�jKAW>O�z_��s:<���[b4�>"Q[//�Wç6W�c�O;���l˚�&������~�(��A٭�����LlV�C��J�j��D���o��V�����W���!O�����m�'�1��"��Q7(N5\�!�c=u�H�)sꩮ�'��
7>ٽ��z�O�5ogS�����cn�4�h�de�{��}���3������a����4��_[|��<�:�5�YF����o�s�/=�+��l��հ��w��?饶`���~UAw�������jL
�I1�$"ړ�@c?�}<�*	���q����-�i4F�\�y2�a�>lO�˞u!�$��͟��Zezg=އ��&ٴ4q�ӣ��/�뻘z�M˿�}���zDb���x���x$�j�4�\�
.0�?�^����q���u�輱߮nM�v��u�}�}�v[���x����vSV˳ct�U��ƛ�B�d�Ϣ˗�c=���\y�|;��OS-�|���?��e5e�����U�g�XA��o�����ȸ�[�e�KuU�ok��B�e��=�$d����ì�S��D8���/�=��I�Pӄ�E��ὦZ:��<Og0{x�Z��$9#�L����z���YwM4��1���l��Z?O�:fYy�/�߳�g����ߜ=��>�/�z�8�@&x:��J���-}�\��G��qW��?�����?k��x����ӣ!ٶ�r�����xƏ�+�р��ꃽ|��9�[ńy��{1�I"~���Ԟ���߆�ymo�K�&r#8k�V_j���R�<B��V��|�Ћ�љ��X�uVs�ԦB�&監cJ[-1p��'�A��]d��&�!��b�$��7�ͽ��;���0&aDJ��pw�4�SYgN0�v+
��BA$t95��{�]�3��B뿊�EK���e�.gTgm�^s������wL�1K��qpO��x:�F$C�AB����W��繉�Gs�z�ӝ��e�7̽�+)����]���
�쬇���{����e��\��6r]a4&k�q��73�����{VWa��cs����������4��*�t%W�2~n����u%�wIgIr�A �H]a)u�C��\$\����}�쳾��kM�P�z:�4�z6���֔�:|�j���s�a � �����=z��ԫǣO��#��c׉��9���o�Δ�?鏗�|Qh�2�<i�x:ê@�
���q:�:%�_��k��c�*����..�:��c\_�O!-�
|Sqǟռ|Q�5�ֈ�^�_R��6���nkS���y�����9W�y����f/yb#g��W|��w��-�z)Ʋz�а^���N�.�����o϶뇪�[��gc�l\̈́	�JR�!x8�����$y�Z����[Ԑ�\Z{�3�]z��^�	+ܡ<���|ٓ$D8�9��y��s��$p��us{|��\3ь��7�u����{���tc�.�QP�9��P&���2�6tΎI��"�FL������s��x+ڽ��y{2Wׯ�{�>M�^Ln@T���&Y�E�;4Bz//׷��
�,+'�M�!����޲v��?��ٜMƦo'�Wi6���@S��s���Gb���=I�cvx���
Z�ujhN/a�ӡ�թ�;�=�{H5"R5)�l�)9�@cO�
U\Տ���c־U�FW�]o���~�g�ʺ���D��a���UO"�?��ud���\��ͩ�uZ.�>g�N:�r
�y�{����W���\ڊ}O�0�pȈ�d���H"�oK�h/7�w�ߦ��k���e��ˣG�8Ow���n�M����&a��/�w�C�Cuݨ������r`�HEUe�1���X���A*a5�|��@G����b��:���~�5y�Y�tF�U�#E�ã��"�ϟmoK��qE����3pjE�3��&M�

� �Қ���>Oq�A!�-�}t]��W���=7M�M3���n�x.>*��DC��HF������q^�&���)h{yq���A�c:r�����aij �B"):J�EhD	�E�T2!$X4�O���۪�=��m��z��3�]!�~M�~yu������זD��GX��ӿA�7�q����L����L���&9N����`�Ɵ>�����n��wbwdR��;S�%��略n�;��c�������ƗB���6���'��.��伜P�k_:�<߮~��PJ)T}'��!�w���.㻺gq�ל˃7>�qҒ4x8�Y"m�)���K�z�E~���aDž�Ƽ��Ii�ϳ����B�`UE� �uY��&��**� S���rp[Y�����~�-?_1.'��d���k����;�M�O�=<��a��5�ާ�az%��/��:5�r�E1n�d���-\�x�^�f�Tf�I���e�y�[��i�|��o����v��M��f�ٷ�l�$��u�O-�χ�<϶�o�ǚ�����R~k��GѨ^�'�!�ʌ�<��VB��&h��L�K�~	�t�/A��H
�%M����?�剢�rH��i���|3�y�D�A��p:ep�;�M��Y����c��ޗ/3{3���k�l:<��1� ��h��6��xaZ�=k��V??譖We/6|�FXn��g3���c��3����l��e��{��j��#�����g
,�٬v��K�Z��f{�R�M��C���i����K����{�\��a�F	�'�d�գ=�
��x'\=|ֆI�A*��2A�7���ӛ@k*�A�d�a�|Q�g��ϥ-x��z��}E�������`D<r��w"�O=$h!�Lܖ���֏�+ʊ8t��u���q��B�g�����e2���y�;8��]4�g���-C��K\�����X^ˬ���sP�'#��s�X�x�r�!{���������k~n�������&�����y�UP���z��?���%���0bU/����X�olu%��w�d�3�-Tu��^jΧ��U�}O���`��P1I2��ZYVZ-y�RŸ@�&��u�BB�!q�����p'C��W0�V6��Q�n (-,'�F��+t�\t�GN���	4iH��vW=c���|ӱ�[�<����s5��;{�'\	m��M��/Ѻ�����[�{�y�W&�4X�v�Ӱ�Ò�0��
�W,;�jO��܁:�2Ze�~�:�B�
�^��3�U� Y����˔�ߋ�Sy���fHLkB�6d��� +8ȁ�(<2���*eX��U3��<YPw�Ĩ�5n%A��
�t
|Ñ\�؅�1!��KW֤�aN��l��]<�<f&�1ͭ��㨢���y�*�m�;N3���
3z��NlGf���ֺu۷���%}i�8ᐊj͆4�/
/����M�>���m6��\I-�_>�Ǯ:����lh��X�9A4Hr�_�>�S�E�/��_7��(3�z��a�$�9���k��� ��e~TZ,5�:ej�jC�y���@�}kYE]	�� gF�el�Ni�g�Y���#C;Z_I��/:�}][��X�ף�Ϣ~(_!Dp�’1b�C-U�^���q�����y�*�m͋��]����fǝ�rT:g��0��=x���!	Pf�?M�6(�g�8�p�������+xl
NS��m�6���E�y��M�a�Qix^�]���+�K�)� 'P�Q]�^QV�Q���k ��2��x}��D@!2�j]ߞM5=T�8J�q�y����Rx�U��i-e�ز��k.�U��j$	O��Ѳj�ߏ[gU՝�^*_����d%����a�{���Q����p��4���m���V���m�q�O,�󜯯���䉐�C�v�u^ixҷ�}O�I6披����z�$�)���l�j�nk�cP�oWO�{RV�CK7¥�3ay�ֈ��}a�`+��ׄ4X�5q-x�-t�T�p�<C..���d؎�4��eb�]E�tAtW�T�3�Q�J<�z�Ĥd+�Ƶ���9C��p��+��p�%
<�S-��MG!.x�cw��O�'����U;�����
j�j���ô���W�F��_���^c��9L�D��K᪲�9�m)�Wc���d�D"�
�<Q!M)�~����s��1�x�z�)��=ja �Vjj�j�X�)��a���Ìf�Z�$a�4�v7�\63��33\Du���rS�E�5b�
}.�f3=)�U��eJ�7S��p+M6�"�,���-��=>�y���@L�i����z�7�/4��k� 4��7?S�3�Y����ע�n�6O��r�De��Q�yS����eI˿���¶,y���7FS�E:��Җ= �I�q���>���IE���\�hL�j����ǧ��o� ���	�g�l�M9=(S��
;E�n�s�"� P2�9���Mp\޴�
��x�%��pq�]�v��MI9�.����:�"�7@:2�n��U��!9��Ź��o��Atf��N9l�:���.So��	$��o_g�)2����sYO>/�ҽ��~4�-�ewV��H=�v���������r��7=%��s\�s�ut��w=z��
����B#��I��Q���/��r���Zz�@�B�C���7C�7 ����J�eVͭ7S��g�E"��`k�ף	�5����h9�u���:k�b���b�S�'v��s�M
,3A�h$A�
��ĨvZj��l��:���O1��	��!�U+�G
����Z~E��K��ou��Y�*
����<�z��c%���5�m)f�-��ow3�^q���U�֞{$�6���N陴�W�\��i�{i����_�������躎�I)���Q�'���'/='OF}9U $8G��M��:�
���q��z���N%~qĤ���[#�SOKB҉�Y�@o�bG��]A�="�|Z����ml�x�3@��pd�`��]5�$�jͿ�0��]�Z�*!�FP7���Z��2���<��_9������UWs>��w��m�l��?��y�g	�w���E���Y�zA;�����s��,T����2�ˢ������a�<.���L��BL��k�;�44��"�sk~̶���R�@婹�dc�>&bwF�C-(+rJD�/X�.>+!��iK9L-
kR2bL���w3x�Mő2�H��fS��&���g`�"�������ܡ3)豹SO<����PL�����e/Ѫ��[�������9gq���U��]I�g���gU��y��M(:'J�7C�~ka�Z�3PΜM�������ī9Z�H�-/M�.�2ڻ-��F���^	)�D�#�\�/O��t)<�XN�qD�7Ց�*`��$`!�"�����x:&�p|(�b�
�qNJ�:�l���X�2�L��L�@�@g���p�!C�[wM4�u�0̉�9

֞x sv.ӗҳ��S_3��i��h����c����y�Ϳ
��<Ou�#�i�I�^B�2�����m�Z�3F+�:���S��ȭ�����y����}L��I#=G!
|�W=��F�ʈ��N9a�M��{�)p|l�<�`�T�&jX�T�&C16��>�uupy!��p<�������:�w�N3�H��kBU%qF�6���\�/��g�#I+� ��u�o[+ګ$9Q!�]y����y������r��8k�o�9__ԭ�����֗�rd�/��G��^1kQ��2Q�=�
�\R����|��pP���m����4㸮6}k��;dl�`��`:e��|U9�"A�Fj��hM|5{~)��u0�U�O�0ĬGB�DCTאh�<���x$	�%Lf�j����rR�⡢VH���f��g�آ���l��̡�"���7[���O<�<����z�O�|�8N�w��vx�=;�zʟ��M�}�0��)�<��vi���������rn��v�W�>�'��O��;Gٓ|�~�3����d��Q0(4���i$���"K�p^d�0}wUhs^7�
����4,8�-�k�!�^O��&c-M��eѣ���m(g=��=����0��4�(��S5 �.C��I`���4��w~�o��|y�qG��4�w��<�R�I�X�F2�@(���?�R���x�\�����3-7��l�J$�.s�_�M4Y�zm>�s�C�����NyLBP4	�8
LI��D�8��aU8��|����� �#��GC��Z�e7��PU�x|G��.O��D<gQp^O���F�����%z7�m]��ƅrщ�C]�(̯.��-r��1M�a��FK\"ċ��(6��ogt֝!���pNX��ߪ����w��ecָ�~}���ȞQ��#��hh��_D�h^r�J�CF�mD����W��	��l��t�W�x�<����B\��^GC�
8��y���N��=��$�'��I��4����j<LQ&��xqN(�qOÊq���8/��<Al�H$���+��;2��iCa]��u[S.zm<���J̍x:�GT��{'3�H"��>�͊*]5B
�n	���_p};��6�e�&Vys:bR`��}�{��s��/��G�S�i�吲٪�[�KZ�)��l�����m%��y���
y9Y沥�yWUI8��B�gZ�@bU��n 1�h�-�ƑP��mo�_r���ۙ�1���Г�<�m��qQf�5�44�g����O�`�xQ�"*�>�}����+&@�̺,g��pӆ��͍g|.K��t}u����4_/�G$q?�)b)d�79=K�?��og�W����8�3�!m��>���<��cZ�Њ��Y��k���n��N�eJ��ں
7�5���xӮ���3�'E'P΀Z?+�pWjmM�6D >'��.@K͝ ���d�p)���\,"hd81�]��PU��4)pT)�YԸ?E���8 ��H:�}t���Pdش��v�֬m�����'�ȭ襟HG�;�b���&��J+�B�\f�7�}M�,t=��l\��<�q��sS�x�ێ]��j_��I���ca�N:`ӣ&:�>5��3b/�pW��x��p�r��N�MY�
�,s\U����M�E�^���R'����D��k�z�;�
���UИFix��pi�W���pe�P��pT9a����x<�\M?*P C���4À���A渝�w��^���+���3�\�י��4�r�I� ����Z+��E���g�b������s��R����[�n�nLOG>bިƆ�����0hB������;�;�1�\���+��\�B�&��ɺ��/.I�kI'�2#� q�7�y�5�O�\��'�0%)*ï��cL�	p���4|��O��\��⨫���`L\��C����)Œ�8��t
�����U4S)��_V�g\q�^��v����,sV��tˣ�]C/���pN1B��j�5[_#����v�}Ń�`C8o���s;O��D�Y�BגNe6��eE!��1�0Ke��h�]�A͊\S4Κ8����2��̘����j%��1�S c�]gF�D��T���s3�9h�$�&��	��sNK�	���q8��\�g#��ݒ�|�_8+�@��#�."����W�,4���*�*e�+�`�c�S"I�]��Ϥ�,�l���[�x�c�}n�^��_u-|�k�7�Ӏ	���Ѫ8l�=O3�/<�foᝧ./e��3>���k��1:�qz�����-zE���>�J��!��E����!4�w�!`�˞�.Y�r�tp]d�|���|��P�֤4X<�ǧ�߯�ͱ�\VU�Ƃ*p���%�lI�j*�::Ϩ�S��C|�����	Ge��D�(���֞����-���@@�F����U\g��n�Q�UG)U�	֜�ѽt]^����<���3�@&�6�\cEr�,��'����~�Nis�7c0����<?����]=d��k��=�KFK����|��Ο�IR%C�~TA4��x���Ɛ�9ld�s��y[\�"Dq�i�bTFq��@"���:ȫ+�����>�y��긟�Ц��f�7ȾN����}e��؈KNHi�]y�y�^�U!d́3����(*Q9�ɮBT�Pd�Ҷ���N_��,�Ǭ�rt�[�����e-5�����߮~k���)�f��h��U���ZaS����(�o%
�1�NJ-x4+�����׺�I��Y�4��H��y�w�[ ��
��డA*J\U�,sC�v,��6�	���%��I��@|d�|L�,7���c�\�?�r�w��P֜�':�=�F�N�T
�-9Sӕ��e�*//>
�	��
5Dr}�����Z:����-/���A@�
��<�l������o\�^fϣ޷ק'��e��u�:��>�2��9���S�t�<^���aP�ٵف��*����~�Xujm��>j[����q5��=#�$�I%k!��w�Q��2FBzΏ��D�!�l)�:5��|��Ŏ\%�*�3r2ns2�󟈋�'�ש�͈�����si�D	�5��~����0$nT<���\����,��UGX%������d+B̔Gf:�۩�j�.�3yNj�pU���b�}�$��o4cx;]���OG�R�
.��k�����=����-�_/�}w���#��L�:y�ӌ�3'VS�{*�ί��9>��7-q��n�����&��Ӳ�f{�Sҏ[��/5��E�85��(��;Qr)�U���,sp���K���r[id�,)3�^d'��0ֹh�"�
��O�<A�3z���8�m(��R˭�F)�5�+8�c��ԃ�T?Q��B�|�Aƺ3rcJnm�.
C��"��� !@I_
��k'k5֕�Ѥ~�o��^9ע��QxO,�����#�7��ݫȻ��gl|.�&�M��3h
3�*�Aa����|s�3�+`�C@��o�Ra�tDh�q�F�A�*i$L��*	CNr�P��5��o���3‚"�����BAwY����ʗ�/)VI�,�3�1&rs3s2d)*]���!�nt!C7V�`rDIYf�^UJ�rT�TJ�J��e~[�u�pU �O���Ov�{(���_;�(�.�!�OR/&��{�7�O��i���\�g�ޚ���}�#�9��>5�l2�So=ݹ���`��*3+,�k�i�T��xVj&����"��M0saU�C��p&k���W�E��xqI���3�>�z�5�L����̏2��rf�U��i�K��'�\�@�H��%b���Zar�<y4�'[{���^Ze���_=r���9��p]	�n3����Ц<�Q���[7�Ϫ��Ư
��6{7a%/F[~�=o�r_���G6������t����erR�*}��t{U6q���VQk�GG�n�'���c��47=	i�h~B#���*H)
l]���#�����V^+��7��'�H�.`S9#q�OV#%)�"+H�`M{��e��|�u��i�
�+�øy�k��>�X�Na��,��#*�p���N��W����^&r<�N��u�k�plx����;�Ҵ���<�&uE���|o��Q�|�.o��>W:|K�=�::LiKFu:�[�[��>�u�-q�0��ڤ��x T��u������6��2d�`:�Z+Q$����Fp�c��<_�!�"
M�0�a���&U�Z�TT晫1
V+!��C-�ȣ�"Z���j�J����h�:�W}x�CiT֝,�T��3���UuY��o��n��U�w���4���=WѼ�?��C���9��^gI��-Uҕ�Z$��D�x��O���>pݾA��qi`�ܭ�	xηG��z�Ң>4v��ƁY�:�Z�HR�\*�L9��IE6���'D��A��.Ug�� "E!�."��N�C�>����HƔdiꃊ�:QS`�٬�G�"��L]��yAjFƖ�h�S��sZ���������VwU*���nMxʲ�Ϡj��uck���C��7�v^;����߫�嫯�]/o>��Ϣ�iTh�܀�Y�Z��:y�އ�{��|��hnGE��$ьT��}^�z��/2MV�w���=	T�8���?'�#\s���B%h	�v(#��x(a�t"e�ξ�������}9�0��3PK��)4G�٬�h$��B(�QI�n�sez�����m�h�2kyW�,H�-�ɥc�#̚au�Y�{&�{.���_g�:��=��e�vE�x=�nL�2�Z�h�6D�t:9P�FY��\�>{�
gW�|��Y/7g��z���,���ݵ�L�
�F���M\*�b�ϡ���7`�
cL�LR&4qT��F ���<.�����"�H<+��/�m�����,w�}@�"݅M�as|�@؂�4
W��J#�;:�jRU�~9dBs��*w�F%��4ӚLl<�}X��iQH+'V9H�6�g�.R:_r�k�u3��Pd�/Wmny}?���[�m���(=>:?G����s�~\v�C>S��R죰�U2��w����qE�/]#�M�sf8^%�F�׀�]�,'Zm0M�5�HY�qj!�#��}ND�@\p�!�$"#��g`H}*�~ji�k�����UV�8�)�)�j��)�ٱ'YMJʳ��VO�'��!��]�Z"҄\���,�-��4�Ш��t&�z�FXf«CJ�nj8�J�c[���GU	��3}�zv<���w\�����X��Ag�3�g;>.�O��1�;=n��d%���_�Q���Ls��5��-��oIZ���V��7d�Ѭ��eV���.|W���b�� e)<�8y_0�H��/p%q��|jaY���,Vj�Q���[���I���X(�R�؋��^"qGyؒ��6f&�	�T�
��X�۝f��e�։g�����•.�h��l�h*�U��5YVe�)�f�4eQ���Zu�F��!:;Z������������a�i��P������]��si���'��%Y�y;�
��ב��p0Ss�Ţ�'<k��p|�tc(��tC&�y���	��&!���Pn%E>������\���+�]f��skH�-�upD���mH}��Zxy��A5�M8�"$�٩+:?'Y4j�׬�x.n�E&]��z�Yht�f�z�Mg�޿.�M�<�ם�_<uǤ�W#E��wv\���x����ގ�N��[�p��&=[��o���co�l�{���?�����b�Yϊ�v$9(t����`1p����"����>�2V�EiZ�ɢ� 6�\��]|��f����LӘԓ�Z\ޙ��ڿ�5MK�Gj$�p�]
�t=C*a�F��Z�U,�	̂�>�n:�����ې��(<bZ�xZ9�����\�Δ�ӣך�iS�`�O�{Hc�zym¾4��d��kZ�?.�|�o��,+���dѿG�4��g����r�\vr4M=I'/�>%>�*C0�~k��~��xr�!��"LE�R�:�9T2ƱA�u����
z�@#�^��V/澆ʲ��@���?P'n��)94r���됢#ZY�35�6Uc�]1D�4'���ʓ5��s�vnV4�^	�ҹ�N�U��gj���eY�uF��j�X�Z]:)c�KO��Zta���ENǡl��\�z��k+㑓���
*��ƾ��U�<�ws�է$7x�:��y)|����_��1�x���S�B��%~������Ք�k �������������	Ԉ}\Qg��B���O��I���+ɺ���S/՚��� ������䩸�'��2�6��틤��W��<�y�i�������ծ�$�w�ʭ�K�oE�ufWg���j�ח��- ?���o�q+/�B��(mc�˗Ʒ�	<L��MM;>s���f�=���ܰ�Mf��%�ָ�:G����-ydC�NF�C�x}Å�q,H`Gq]�B�Z����J�^�T�%�Ґ�.!'�p:T4xb���" 0@��K�#�<�P������؟�2B���Už�sTu ���$d����(�
�kF�ʭ�k6,�W���G�P}D@�#�I��!�x���9b^��L�Rk�Կ[���{(�7���"��-�|s�%��EM`���ǪT5�
�T-DG��(l݂+���o��1FH�5�M��Ҷ��{�1�2����ҩ[v^v�$(ӫ
��E�*�p8�g|��|�x�H�y0��f��[�3#_Q@珤�ӯX�
����!ey�O�J&-��\n(w����Z�9w~+� 
{�“��7;��d��5��k�G㮸��	���8X80�؇��\��<�7�z)���kl�"f��䠍Q��'~�K�+l��
�aJ�ޖ_��V<�x�1&)�]]��l[*nkF窃]nBq�J�OJxra$��O:��@GN���O�X0R�w�����KXekJ��%��y�r
*�a�C�rI2���Ro{�H�%Ƿ��ߴ�L"��jVH`�0�]Mk�L`��Ickz��QSװ)ù���3l��,ٲ�Z<U����9�b�-{|*��X�uX�!�R 㪩����-�̾P�,�Y�U�e�|*�E�Ф'�u��*��u�pIbY�?��(���-x�]���4W��9�"lh���r����r���P�4Q�NLn)0ie�N�;�Y��cB�?^��e���W��I����"�׻1��+vK�=�o^����oV،#�0�^�z�T�TA	-��fj�ա&,�=���ÍNJJݔ�1I�f���c�s��u,w[43g�xN�bIo`kU��BT���{+Φ���X0���d 8ʿJ�PU�A��X&�;��yD�-� �[b����kq��aJ5�?Ϛ�J4�y���*zQD��(#�Y��1��	]��z�l�۷&*.1Z�!��5�MM�΢;E����MU͞ ~��Z�1��������nS0����1�J#'��V�i�	����r
-@+%�]Xx��wff<1�v����L���V(�sh	OX��7M?�p����t̃5g�ǻ��6��Dz��[ŧ]�\t�V�T�Ư2�Ņ�Z+�a��N�ٍ3%��E�����ބe��hsl�X����^٤P@0�nO�Yey�W\�ж�ÍM,#Z+�k	�`z��潊�#�]��L ��g�ǹ��1i��YC�roiܲM�D�������)�N�L�#AL��{+7�sB�b��`1�Ⱦ�N$<"�T�5�����,w���kJp��W�nv����a7T���GaK8�	Z*����D3^�*�'H��yn4#����j,"h@��ٮ�7�.��P�f����4�.�lK2Y��޼"ҰŃ�	֌3EgՉ�"��0�b	���(#x�蜬|���n0�̴Emi�,z�*�`U��K�F���$B��P�8+��Gi;��H����
؃�E=>'�8e+�xq�a��iɛ9W��?N� �:ֈ�E���y��S�u\,��n/�p8X߸z�B"A�C�r
�!�!ܞ1W��w�Xk���6|�q������m\��� �Yo+ ev��T����'F��^�T����;�ɇ�����+�2��+���[�� ��
�[+��jp9j�0a�6�2[Z̆���� �K]��AH�*���K,��%�O��P���TG�eR��nC���>�4�es�p"=�$��9H�xA�q�4#��k��f6<��83V)��J�+�n:t�գ_m�P��SG����Y�ά�U��[�*":W\���{����z�p8P��x#X[��
�&�A�^�xΞVbP��Ү! �h�$H�;�^"��
��x���kd}���6��c��ӮE\�m]���xx�ۍ�K�%��40�1����M��>;cӉ����br�U�6b�`���ި��Q-���,Q�p��f���$x@��^�UvTcա��Z��_5C>���RЫ�I�=���D�kW���h1��� �)*����䴨��+0��"�G�$�ql����#4�/H&�7��d0A7���7Um+�q��Vh(x"��8HNJ��ܱ������L��\�����qY���ǖ�Z��(��P��D9")����9�0\�W
��/^֡/5��a���=���Q�Z�ǰ��YC!Fm<,cׁਪ���UG����Z̫+6�'ݡ`)K*g�RZkB�ֻ/8�/�9U�Sl�L#*�8�:4�|�h�+��2�`�� C.?O�c�pq���SZXֻM뚚��,[��WU��XjPWALڭ�ڢh%�0R��Z7~�X����f��&|Y~a��n��$p ��+��
ΣA��q�|�,Yt�nZ�	�2D��׍�Ū}�*	��T�k?�r��ϯ�4"�S*�[o�sز�d=4WJ-��R��#qR�)�|�-`��"Tu,�DGPÃ����fS?͖ŋ,x s��LB��A�.���@�@/��r�5�
���rex��>�Ą���@��%I�t��b%ȏz�ώ�
+��\L��KY3^qys��:�F�a2�u�68�����E"�+hy^Z��&IPH��[ٛ�'���+���*�Y�ve�W��^��ʭ��Z��h��לZ%���JBe��Q�����>�A��ST�p�g���*�Dp��EF��)�����Q��%R�Z�I0�|�))�ŵ.�µAg��,�;˭�W��@-:b�_S�(�y7ՙL̶��l�;]�5���r���ɉ��׃�|)�'-�J�_2���;d���#�kL-۴�$z�S
?ѫ�-o�{m{b�Cc��ֽ��Y�����rX~�X��TZ^-K�禷��|�T8ֹ���J]Kp!�8y���,ȕ��m\yp~{}�;b���1���*	haz�<�*����Z���u�T�2i��pLE�]Ԍz�̺�/���W*T(3��X��mXTn��!��쌨��yq����E��.���A<^�,^�ַ7�D�
��"����ĉ�̕��eH�EjU�"����%Ҭ�Ė55d���?UK^�Y)���.\��1���Eh(a
����|ƌPĖ
�`�+ḽ]U�b�/=�@���:��%1"Aƈ3=a��
�3.xnu�VT�f5Y�e}r�kHs��U�h���p� zX�t��z�
Z)"x�X�6ef�Y�`�X�����~䐍�z�۱�.撑b�83)"��*EZ�VSf�&N9�Q��+ˬ�uϘd�Ac�Z[MX�K
�^�q0��{�lN���A)����eeD����,WZ�ʪ	�Z�9�o���0q�1�<�k�/�aV'��B��V�#��0S)�
�es�
*I�?�]T�X�Y�pȷ>�ڱ�b�A��Me�.S�x<4�\`�*9��,qh�g'��v��!���O4ʊċ����O�%b�;<y�5�����|��*�ED��*̦�P�F�&S?��
l�@�Ec�4�׊ޣ�e7%n
���$LkV��f��T^nXe����}�v�<>�T�)�W+�,�?�S�@J�G8��6g4�$ϱ��]W��S���]�m��2rqfQ�Uc�h
��a�q�����X#Ɣ�%�مa���f�TL�T��5��u�����^��8�"�,�(q��<�E�LH�̾��|��uX	���-�.VNEs���q��O��4��8?Lk��Bb?��tˀ�q[dD�X%��\1����^���nU��O>ͭ3R��bč;4�$N+�Hxfl<#cT�&�l��2d�d"ρ��h|���r��B���ܰFJ�m��yq�3
։5�1�,x%�/��]O��<,�:]j�#yE�mC���"ň��5E⢼0y��bD�3-����۬ĭ�Αhũ�>c֘���
|�u1�o��s28F�PIa���ď��?��x����]�Ї��u�m������)H<d����/,�Vf����T��RƘ�%W�)���v�Sv#�q1�ڥw)3`̓�������-U�/
?�6�o�F���!�p68�él(�4��y���)Aɟ�9SjXl�.�x��93'��*����Zf�p�6eŖ��y���g�y5f�n�sٓm���Q��"�*0pyi���~K��d��|�8e��4��q���O�������iJ��S�_y��W�E�U8��~�ڔgEǟ煛�,��x��zؙ7晌��&<�d",X�Dx8%�����,��+�Ő�G�Pz�7n�˺Xk&kA��;���ŧ��Ƶ,�Lĥ������Z��p�0A��nO�R�:�ݼ�:p�I�<^l��_������Eq�������U�E��ԏȫ�ʛJ�"��nH��q���fV�ݜՇdVZ��#)�n��˕����Z�H
�j���	�D���ov�a�A��D[S��N���[�u�d�Z<s�ŧ\Qr̫�ؚ�*"�̎UXЄTs��*1(�̐j����T� C:�f�X?c�x�<�JB�8��L�������\Ѹ߀{s�f��!]�"�?�0�x0�åቆZ�`6�Ǯ쎮���*aNKb��?�2�R�/�Ԃ�`�L%�fcyH3���Kq��Eհg�F��Df̿��~��K)���&��dJ+����V�)��%Q��>[x���\��F��,��DĨL�^4=��L�� ��r_�.]B�>��0�=��lK;�[nS��Y����E���W�c�`,j1���,�Z������m�&c�� ��&�L+�c5��Z�]�!�P���V��Ք��$�l�K��\&�b��40ׄ��;�Uy�_{�%x��!^TT��f`��FE�;�nFE���/���x0Ŋ2���|$���Jdd�R�[.[p^�0��c�b6ё�~,sl߯�
Q������B+�Ї޺�W2,�_��W�Q�}Q��Z�.��A�ɍ%U9ƫ,��h�����D��g�AZd/��z�����~��������cXc/@��xJ/���y��
�i��k���7�\�k�mD1�╦�oex1/����� @Z]��k�[.�YH;ߋ��v�a��W��ʥ�2�d�lj�{���pO�i[]�+�@Ba^�x
S����
n�;X؏V=%MГ)[q�L3���tG+��WVF
���;#��G��ʌ\xY����|o|���W�L��ppa���=G�E�rx0�]iO��&3n��qM�-{�?�X�:P��4a�MO�rR�up�ݲs<�9�f_���튆l�q
��}@*����L�#	]��8Y\��x́X���
��l�`��-2���+�����Mh�Յ�'���nO�#��',��.`	K!D�.����
|	l{��X$Ŗe�oah���$��h���a��5*����<ƙ�1Q^K6g�����E>5�u<�u��:��카ط�w��٥��s�u�:��j�4���W�d����k<ka��+�|���X������xZ�{q�Ω\��+3�Fj��Ķ���K�`�,��Z�$9��#��x����ס�~[�vX	f(�S�P��e�f^�Xb+xWsȟ6��͖*@|�a<c�1���Ƿ��ə��g\|1+�8�+`��e���rQ���n��^�	�B�5�+��Z|H6�63E�|{2:s�-��!�#�+,�z�����ۆ��U��k��(j�'!�yc�#&�^]X�ģmvހ�ԏ���nUL<�V�IKʱ�%Mo�h��VSQt��+� �|���]px>u;�j*-�EHBT�O��[��k��[X�!���̩Uz��JJ�0�`:��R�)�Ϛm�''�[�:|�.���7W-��g���[��ǃ�aQ���ֺmG�7PO���7+`�:Ϯ=U���Y���Ls���n�;%�im��A7\7�kS]z�u�m��u�;��	y��ZZ1-�������P��0������o�A4�!�A6 ��Y�'�y�䚱�jʺ���3��=	�R%֭6�����۶���i*G:�Zֈ�R3���f�#���ooJ�k+�u=�f�v���=�nkpGW]�w�l<V�}�jY���E�_�Zbo�^���|.�Uc�u�
��10N�z�����+ׯ^�/���1��b�N��(����n-#�,����#�>�b��Q��e�MzG7�*�x���4�>Mc��bQ�V�3/-�Y�ؖ�6K*}�춀�lE3d�E���|~�1��c�?�7�7�|@�_���_(_~�����T�!Q��a�p���5;v�ߡ�L��sJ���rV2+�!4��+�d_+�,2�'=�O��ȅÀ��¸�(��?Ǥ��O�_��Q�9�g}���
����&�*<��	X����Z�ʭAV�l��W��S\_J���HHh����\z�*�V-M��ʔaE�>a5���k�r�;��}������۶�5�]x�^w��Y��A����j��:�ݦ���ס\}���v�,&�/�+������Uq�	�,K�K�-�eW`�%���}o{�o���y֦���b-ۖ���K1�x'�E"v�L�p�J���.����	D`���Y�V3�g�/�=�a�m�g��ε�=��>=a����؁��^�/;�"��z���;i�n��A˓*����fN�QT:�vE�bfXU��&gn�;v�>5�@y"9<u������c@���%U�nZ(����:|���E!�O5Ăr���«O��eR�0�/�!�Qv�3sDq��z�njv�۶���9���\ʹb5p'^�櫾�M_*[�R�ƈ*VW�+�9�z*a]-�Ţ���/��!(�
���[���؃��%y�u�����5|�)���jj��ka`W��C��a�f�E��)�}�-JM��8>�tɛ��t���|o�aָ'��@�|�a�&4���_���-ҷ
�A�ۊ�D-i�qE̺d�ɍ�;p�`�1�N62ߙ�[�w��L3]uʲ���Z�w����S���A��o( �h�1�i��BGt����V:��M%(|l�[X ���D���Z�<IȷZ��&���i\d��v�k^{w�7�{��"�V���	v��}�gbQ#(� �Rkw��{jwߎ���aQ�U>��gn��qp��V	e�K�˱q��yȻ֡�t�k]u�# ^G�A5��_��&�l6�c]���`�����"¼�|�@�_]
�f��1k�v�ZU����b��mV���SD�M�G���kZ�|u�WZִ �d}�~@/;�����Y;�P��)s�EC6^(ށ�쮶0�,���?���V�!Ż&or�4E@��W��ū:嘴�<��ƹ��!�C��kZֵ��.�����Q;v�߿`�ҕ�������͝����"9nǑYo�����_*c��!Z�B'\�b��h�J�=�}/BՖ�S��}܉�^�grݦ���DMkSZֵ�]k�]h"����}�Y�6o�榀��\�:�G]x�A,�����H��N2"ϐ�����רK��B�^�	��n�|�԰� �kֵ���(�Zւ�o�q�D�u��p�-q׎�\H3Et��q1�c'��J��ڑ�(J��d>Y�����Xn��ی�k0�*Rߎ��Spq�����Q��5��{��]��FXA!]5�M5bD�����bB��<"�5Y�1e)1)�{Y���i�U-L�?��{� A��,f�Pc�O�D�Y_�*-�_�VCM�u�T=� $�Zja�C!�!x��\Iu�+[G�<V�tB��XweK2[�S"�+��<���z�E��.��s~����޵�r�w��v��`�#9����c6����bqI��4�$e|�heP86�S}-���|*�ѣLS�SO�I߱��]t��RC	f��Hz2Mkε�P�<�x5R1��{���p�ofof`0?a6�Υzt����m�̚EҘgG��Ǵ���>0�l�[ƣ�f{�D�	�b�[��U,�� ����yc�?.�F8Ů��ϯ_������b�/�|W��U����XCR��V�N٘���=z��v-NAn��os�6[Y�`�8ik���nN@X���s�)���7�}o��G��>�I.m[!���SF��n!���
>aJ�۳.8�z]:�a�;3wgu!�eyb�3*�|ǿ���"�K�f���N���xXN����p�Ǒ��򮀐�����h��}�����']j4+��a@��J�����a��[����!�{����xQ	�W�ZWUjl0)�X[�Ӷ�l�z�|�����ּ䜦uawq`����5�-_�O���8�WO��q���?�va�t��z�e��-���s��Tҁ	�W��J�EN�2[�������/����}���O��/�:T�z|~E:T�O�Tk]��}��$�-��e�/4��KF�Fj��-��{H����X@�ZX�R(�ȼ�0��D/e�x3_������5ӡ����V��rK���V�]������o�_���m�}���,��,�����d������b�/��^Z�Fƶ4M�C�
��c�8q ��6񔧁�|
��mﰰ۾�Ж7#��p�XO]�5uꅗS�F�E� SgT�B�/�2Hp�M���֊#FX)T����G�⵭`�c�0��8��xC����S>��+����A!1A "Qa02#BRq��@b�3�$C�Sr���P���cѲ��?�=\�:�k��HE�8:���.�Vd7�i���2r��X�Gf��O�S��u��\&�}[�-<R!�+�	�-P�GCB�db���@��)���i:���LL�g�������p�&��h70p]So?d{,��}�1Pg�5��녳�+�P���V�\
����yeJ�E��
v[B���;���s�&2�ۯT326�K��]�/��78��S����5�!�����?��*�}�'F�(�7�3YxD�>���YG��Pi�7Dk�s5S{}�$�•0>��4�)���3r�{qe,�T<7}%fN�A^6�\'ڧ)꟱oP���8h�W[�T'3����[����W^5)�����>-꫈1�a*H%��&�+��+�K�S<?H8Z$�g`]�E�4�6YJ��hY�80���f9���G����f
�]�n�ղ��e�6�P�S�s=�N�ӼGUv�
��b����9���gB��!�o6ُ�#;uB�24*��)���X��U���"��!�#L
(��F��O ����*OnPu�eq�l��v�*9����ja��>��[��J��2�N�F���~VI���
��_3�����E�uJ�����kG+����/�~		о"���6��Qpt�4I�6`����]8op��q0�T4r��J�%������Y��s�� Hc��S�)���ʠq��Z�uÝ_��5�?3��l|�� J�y]*L�eB(�q��ٟ�5^^�N�F���s�P�9�8�t���Q;��R?L��L}!}�7#S�r�s���]�s(�	ꡙ�nt2�mKE�9[�ͯ�C4�)�d\ntӆ���F��i�,�"T�7P�$�c�K�]Q7<0~ꟂH�mG��Ӫ�6e�UN�nm�QZ�Bx�η)�s8���Q�dX	v�]\����Oa�f��j��h���5w�7����	�<�O��q�uD[n"�-�,���ڃ�6wD�x9�SSEʒ$&��y�&�O#���-P
.l�}�[$��<�r�{�m�H�E�F�.��6L�xf�6.��� ִĠ�
`�.����v�5OF�0���M�UM��9�JM��N���U!FIYl6G��M��	�n�KB�����SO�폻�a�˞�.�t^V�Zv�)>Ta�t]Sbs�|)���Ν�|���E�%5����ٙ���@��Pp�ݙx��`�,}Fą��@ט#S^TpAM�\J��uR5���/��r8<�Y�٧��ĸ�ÇV��k�S��&���~V�Nh�$�Ӌ2��S���1��œcDxe�uxf�/�����sl�]n�o,8p��
~v<�y�eN��)�ӔvD�U���2���t�hxm0�G�~
�,��8捐k�~�B��$��HOw���g���qvi��eǟ�l6F0�e`Q7;���,��NuP[������'�\�;.��{�(�^({Iw̲R��ҳr�f����R�|JL����VG8T��u��l���ӫ��tD<�̳�M.Q���M��E6��'9�N��)�G#�Z�f�q���~c+�
wG��W�T(6�.����k��w@�����X�����E"<���O�;T���\6�%]9��ŧ+%�SYH�IF���8G���C��U,�t	L�ܛ/󏲩�5�':����<eQ.:��1'��+�o�7E��
m�s0�)��:���B3.nA��Ae˙��0[�̃�:���B���N�u8YN�#tJ[([�y+���-��7=�@�f�EhM��������2�A&��3ec7%6;��wCĹ��0��}�.<�9��Z��/�ݬ���E������6�1B\z�z���.��"~�6��Lh�2o�H�~L���ɭC�Ƙ�����X<2f�]]3�66Ñ_ϒ�?D���+)��=���}�|�3��Q-��N��L����P�>��.�ۼ��F#�D�P-U��O͢��%S<�W�sDvNuHk�c�3H�e>P��S����:)�
W��p���IQ�`r�(��d^�!J�6�6�nC9�{��	��+3�k��w����d��F��UR��9Ҍ�x2j���eH���(��ȺIN��Mgs�-��F�H#��%��V�t*ɮ���l��+����@������m�Y��j�Ny�l�9�Sw*�Q�ID�V��
�Sʮ������*��~����#��R#]�Ȝ؞]Ģ�'T�̚n�Wu�1š��{�(����4j�(�K�?��ʲ��)���dJ��S�0�!N���O�O+tF���b�;3�4��� s/�}Q��]˲o�|��R�+zJ.�{��xl�(O6��9��n]�d����.��k��8F0�Ͱ;)+-�����<�+�I蝫�kl!e
4�8�z�ʺ�bE��'\o�X'Ӻs�'���p��^{y'?3gxN��bE��6}�9?��F�|���jxd)o��;�6���NTc�6I�2_\ ��u!4�B���?(�06:,��=���B��hB�НN���(�9�)��f�l�2,ȓR�&��3}�.@��ĩQf�(�f7�Gɒ������9��X{�Ve��5u��B�òl]�,��!uBo�"���3�@U�L�ݣ�#�����R�N�=���_��X�Dj<��wpǯ�G��M��u�6Sw(�����9�p��j�5것?R��ʛJ��1ʁ|f��Sl֎V�:p��7��9wȀ�,�N�n��J����tRU���_-q��J��F��s;�r��W�ج���uD:efQuˌ���dÚc��"�0N�}1p�f��P%]x�^^g�1��P��8y?�B۪��^��l<OgA��jd�af�eP�r (>��pj��Ȟ(+�0���+�]��Q����>�x��ӌcu:,��t���)�Q�K�^-i�3T:�2�DjS�?B�7��Nh�3~���f��M�w�������ywS��/0Q��A�a6_�k�l���V嘕w9�׻�z|J�@y�(85�>���]yT�K$�d��3f�&�i�{gj�d?���!�u����yFB��D�-��}eY����TT��ݳ�C��̱#n�{E1R��?*���w���*�I	�eH�?JQؐ��8��0�Q�-u�t!���&;(�;����d�ƌݕ�T�8��Y:�㖓{�~�tj����
��Tg�?���)�?�Ge�&��T.%Q�@T�%�:��F9(e�s�	�ok���Tm�� 4ǶR�q�,̍�SG�U�ث�9�����6�|J^��Tv�l���G�K
��Vc��>��\�hkn�pX���UT;�醷//�UkD�Y���UN�r�l��!���z"������u7ex������/QҲ�)��c@��[b�}���b��掊��@Ro�k#u(�%|���ln�.=8Y���Mæ����uVPo�"�fZ��|ʝ^v���劽�Y��C�t6���*p��6�� �n�+;�4&x��!�Ƙ�t[U�uO'�Bnr���R��d��$�g�8���9�W>H*U8���l?�u'�w�~O�w�1k�\e���R�G�8tC�$
Q�M�.b���g=���At�	��+�٨����k{.Bv^ �E��Q����]_�B�KL�B��)��9g/������B׉�`�T#��!tS�9 ���~k�<�\�]>��m�;~��NU�D6Dc(�
��,qk���gi�h��f�w�+.���F�=�Щ%xn�	R]�0���VyDtY����hP����l�f��b�3�)��8��)�F〴�A��{����m��M���ޑ�[����ܜ�!�ZeYM&9g|"��� �	�-s{tMͥ�&�� ��LF��e	�&4*\q��(�ه�5�t:Vzn}C�e�P�n��_�B����x������2�v_�(�?ep����~a��9�ޞm�Y^Zur���9��qJk0$ꯄk+1�2�
���1�YL�s��	�
ef��DǠ��׃bTh|�Rު�z"���>��0��yY^F#@!!j��M�\�e��c�Y��I`�\�.���I�6�)d���u5C[镓����w#�Gc�������#	[/�����?�����+R���a�ah���T��T�]YD�8Q�i��r�eel �1��N�E�szX�Qy�����+�\9���,� ��1�h�t*>���/�]f����P��E|
����y1�SG���ReuY�����ȃj���Sc^`��Ei����ƣߜ`���9�����녰c(H^5X�n��M�Ű�5����@ȝ�3쮙�ʾ�3AS��o�N�
�V>�����J�Ùr�6P�F��Ҡ��'Uˏ)Dk��B�5N�������I��E
�'��\}Uϓl�ln��p9��(���O£�`�tVQ�]���W�1:�S������P�w��YĬ��	��\���?"��B����r�\�))�v@W�}�S�tY�{4+��oŪha�̠�h��C���qʕ��|/�=��o��������!\�J��0V���BՋ+U��̣�袟uQ�ħe"5Rx��5Y̼�4�SoxE
OE<Vᐼ:�m�2��,�T�Tk��5�"[����(8��=7jߕ0;(VE��ֶ'1^
l���d�숤gS�]NgӪ�}�}J�r=�Q_E��å5�x7^�� &��/�2�>;u˛�r�*M�����s<O�����(�d�S��w<)��| �a��k�?�ܹ�0�[J�ę���<}�7C/�
�<��ÞǷ�
vD�w�k�������f&��͖f�p ‡�c�'1��(:��\��:z���c*0�9z�kx�J�^Kʒ�x����8�4U�T��LJh��6N5mQ�*��?E��̰��d�:��5�������Q�S�$	�����L�T�!fd?P���O��4��裊�xl�U��裋)�B�H����*)�el9q����bKJ�M\�ි�t+��\�����Ę(��Eee���:�d8��+è[�Gh4���-��~]}�Sj��Ԟ��MCu	Ůh�~E�7�!�}�¯xN,lL`��e��N�
i��#J��L�Vq]xe���b�J���M&pk�I�s�+�]���d^�6�'�n�ʛǨ�қ>�Kʩ�*:SA�#����4��{VG���W��M"�8���-Z�Wcu����:�we�fP�]��m��?;?�H	�����W^Q���L�Z��h�z�@�4C&mVo�D@"lu�-���L'D�ʤN�Ri$��aS�`��<[�P�>s��[��x�mOk�[���wNq�`*��6	��2�9C}�˪hUi�:E�c-��Z��;�P�뗋�}��R�O�B�)���\��I�+�9U���UʲV��GC���A�f�)�����hA?��S��]T�WL`]I���è[��7,�J���f�T!R�=,�bږ�';'
���4f���iF�v��6�9ލWo�h��fv�((��

�`Yf�Pnj�Y9'�,���¯}�~g�N��'�>��9���좽œC��*m�H!R��T3�M�I����SN�5ՠ/Nad؀�Œ�>Ta!ASö9�B������,��^
�)����0V�����&�A�{�a����4l�W�[��+.�uP�G��O�Ǫix�9Bn��v+-l�C�/���O~��N�f�p�f��i����g�r��b�|��*�iٶv鹤�(Sa����S;�x4Z���5Id�n��+&�W�E�^̔�f�0����ս��X��TX�
��$}S^y��(^��a�28�Z��o�e�Ҥae'��U�?��!��$�M�YKq���L�n�����ꭧ����x��$[��)��NmT)VG���V���������Y�ɕ�j�↻�wY=�v�Q{Cv�����2'D�WY���L��
M��S�Ѻ�Z�M<���T[Y��v�mz���â�NW�~ꉦc@�8���N
�C4�(����_��|�4��[`�b�#q��^9Y���J��)R1��^>ec��]���N���T�8�+C�8����YÏ7����)��j���}��x3;'S��� �VJ���h�=��.�4�M9��MW,NQ�*���w;��9~=R����ԲSu�M��j�?*�_�i��7/�H��9� �Qk27��0tq��S���s�h���	V��ŕ�Ы+.e"��	
	�Y���,�P���o6��1�E��pwN���~�}/�qf*0�	%@\�gT��+�`�Ŵ1�X��p�	�TQwG=x�G5XO�69ޘ�`���HrΪ����x�"�^7���J���2�^Pm���N�5��Aal!R�>��^줴�Eցş�U��:�Q��Y��끛�;�8�^�}#��=>s�2���J��L#胄��'M�;5�����7��a��Vv���U�w�z.��?E�I��a%rIÕYx�XF�_��I�-�&Ҥ�u6	�Z����[��/��u+��9D��3�0�W���Q��۰E�$#]W� �z�O.h�S��L��M[����Uف�U5-�M��X}��n�(���V��T�j�+=�,�=0�HVYj�*���]�Z�B�������z�ۄ}W�m����Ԧ7i��x侙���R��
����*��Z5E<9p���t
u�t���h�����~h1�:�x�����r�IB��v�'��e�Z�\aIL�Z���:���� n�V̂;'Ө����ȁ���uP[
{���tB8�4IB�3���"[��e6)�'*�<���ue4\�T˳����|AH�Nx
�� �5"��G��x�lƦ��x#N(��XG�f�=�G.��r�=,��篏&���f�ũ�B�X6��B���`�+&W��&;�s�Õ8�ߕe�M^kY39�'E^���{/
�?�ج��Op$�|�H���"%G):�&�e{b����,�j�w�_��J���Yf6�}c�L�-�_"�3�~��l�	QS0骙Q�\7Ჳ‚��C�����r+a|%��r�i���2�t�L"����
m8����+!V�SeU����U>Ga��!F7c���(a=��q�g�Re��
c��\��\��2��n[J4��3̲�\�U\�1��U��3mVz�it�ϙ�1��ֱ��
���MԼU�%gia��*�|9=�"���-mUY�V_R�
V���A����t�+[�<FzwoR���]�P�T�-s�cex�X�n�[*Ծ��I�,&�*�	A4�� �Y_�*��J����<v^�Ec��*�
l��6F��/���<�B���s�|�d��2�E�N�[��t�>��^��,�(V�$|-W�����D��KT�S��3�u\���C�4Y�^Qe�Qa/}�0�rʺ}[�V�R��S���G�����?E�9�	v���/
��r�=p�T���足\7R�
˟+)�%��:�Η<0 ~�0��9U67݋b���,�>�Â�Pj�>�S�;~�2YDcɋ�#�^-`6�xg�'Wa�45�B�*Us�͓|N����龡:|*П�SlzBki�n�SO��,���] }���`tL��lm���ϋ��g�vR�kt��
C/vɀ�p��#�y���|L�f�w�_M5���83l�Vj�8G'�g��l�(q�����L4�+c������]G�3��5Uj'��d�Ͷ�0/y)�1����U˙{���L}�U��qiQ�Fۡᖐ'U�vo�>T�8�O;t��el>I)���ņ�V���+~�r�:�Lφ�N�ҫU��4	-�4���&��L�r�w�9��VNV�8�RtX�w��M�,/�b�W�/�M�ގDr������A��`�(a^8��9�G.�ln0�*�{�,��׾g��3��{���þ7�w&�
�8=ե�z��"�TK/��s.o��k�yB��8l ��q��_Y���
*j9�m�	^�wԧ��@&QNf���bS���"��{��cwwY}c�{qayʩ�pЛG��~-z�>������
���Ot�<ԯ��k���e�>�~�
�{:�R!�	�LҸ�h�N���OG��FV\�=ٝs�4��QS�r��*�r���9��YYEc�S�?A���4t]J�k��MJ�������P���6�˛�V���0Yf7(Z�]]s���Vp�"�O��lj�?*�.R�Yf�J�D��ҩ
7r�7�=�jTc9��u���lS[��g�?�-�y��������x���nQ���L�e��3�T�R��)����eBi�?6k��c�����~��ŭ}���:�4n�V�X�Uj>�x��5����a�j�)Mcs����u,�
5�~`���K0�W�VÔ�+)��0���ר�k��:��M�HŮ�3	�#�9�߇�*t��zX�NA�=��y'� �}�,(����;RaY�5��%J���@�l���Jc�y�i�x���w��*j�4O�h��~�!�Ι��ON�=O
�'�ɴ�^�T�E�p���YL��2;'�~|��BCN��2��z�r��O�_H�ǐF�=��UF��*�o�pM���1�y�E�!����_�R�����!�e?B�B��-������Za5��)q�����A�ft�c,'S"�:�N�����2:c��M�>�)��8OJP=N�![D)�+K���pCU 5)����w��:uL��/���{G��N���s�4���~��A�׈_�7��B�_��d��x�]V��+=3X�y���5�/v�c@���-�)��6�7xT�����}�����nW'R����6�l��k*�a9��EeB�8���.<Y�������M;-���+a��z���ᛋĨ�Z+�P�p���h����f���p�j��!wA�9B5^��q���8��
��Uk{ݥ^��LkI����e�M�����s��uDR�l��[��Q�܅��þ��Y��So+��M�&��nQ�L"�,���/��x/�)^3}ۋ�s)xB�S��Y�Nk�(NhS�V��(�3��r��.|t![ue
'�������r�'�q��͠鋝1�����A�IY��L�A9�
�xNw7���Rl�1��|3(��_	���Ĩ������e�gDI�d��W�O����8"�6}��`tN4�!x4��9�8�:� Z|O�+|7��d�{#��B�V0i�D���Oz�˲`����-��z,�-ͻӪ{G�m�
&�A�R��������겒��w�<.vz?�
�t��ꀷU
7�%ޕ�2X'u:�d��~W*�ᒦ`�7E#�0�����2�F�H����cN+DpZb� 5�]2/���+J�S7RPm�Y=�����X�_j�ݚ�Pw;�\��f����=Qev��k�8h����A��=�"Kwb5��Sh,��$
Tc9�m2�#�q��;ߤ�YhSP����o^�-�XSh;��5�U���L 
F�f�J-l��/�[�xG3}ہ���7�+fx;#.q�%u�HYB~���׎��J݊���+}�-?E,�e*��6\W�L�ĩ�t������}0���d	2�:��
,���s>�O1넸3��'[*M�eIÒ���������z�e��Ś!K���2�����@�����y��)7�\�I��>�������x��v�O��F�ŭ�
\������n�<�ށ��=�th�Mk.�:;�
��8J��M���ߧ�[�Y[xdW�S��0��Z�In[�&s8���� ��Z`��\�����+)�/e�B�G��:�H���;3����*t�rk�h�H6�.v�{��d�e[K���UK#��9gt𴲮h��p385="�T�h�?�/
�|U�:��G�)�n�O�=�
���W��*2^T)��^���-g�V��RO�E<�QCô�}y9�3	j����u����u2G��Ʋ�������A[�+��:��t��C�?�'1�	�{�hi���)��UV�voDY��������f́&�TtJh}�)�K�,����i��X��j&���U��*��e��V����Cw\��E����q.�xvZ��yb�����O/p���e8�J=|���E7V��Ӆ��
�����Y��F�'��]����!�*�{]1��#���o�5ۦ0K��Q�F���v�"�c��$t���Q�k�;"}^L�
�N�C�uR2�R�ޫ9 ����S��Ky��N���'��Δ�r>�\����6Ʌ���jW�l�~��s��lå� 闲{��@�ڐڳn2۩�Vd��D���_�^�F��)���	dX��X�f�6&{�}:tRT�S=�r�}:/]SX��1��K~o�o�~�f:V��4{��Tː���W��4��ǩ��u>r�������R��j�_�=�޶+I7_���9�@n�ioK���nuST�T�2ZF�Ƅ��T�
mO�e<��r�P����S���7$�0s�5x�3�F�{ ��p��uY��7�I(�x��; ��Nn�+��5ee��7�	;/��D��Us:a�p�2�
myi�c��s�]S����O�u_ qn�
�
��%�!ءU�>k��P��xo�Bs����L;p”�=��w�㉥���:���?U~(?�5�ôp���x1�t0G�Gp���z��k�+���,������ex����4ס�q�����r�K�C�ZD&Q|S�L��P�r�A�z�i33��F�;�|�x��gTvW�L��pwL���c�d\d�C�>�3�\!O��A���T:q�9�S�p#�V�B1�u�L.���fvo��@��ʪ7,N��d��U</
yI��^3j:`4J�I�Y��N�m3�[�h�>ϧA���K)Q��:��/g�f{���R��/2|�!A��=����O w|{prh�p�-��2.��G��rc}�5M�E��ڇ�c���U?��t�n��>�ƒ�RD9�w��������,�ϛ�l�9��xn�z�F�W�]�x�zj�<�~��s#�@Ӈ�l����x]��ڗ�~����da��\�3�_�JuvK\ߺs%�c
����=���B.n`,=Ed�I��-����g��N����9�]b%g��Z�1�1n���ߺ����[�8f�`�v���uS
�:��f����1*�Ũ�_��5ٴ	�ĸ/���&�?���ǘ�����2}r���P��?���?]�������l���ɍ�T�"DI(��f�|�6R9��\;�J
�wu�6��T�q�Ԕ���q�I��T��8AT�����'
d�E+��}+�e7{s}�y�pG����N�㋕$�uHsRsNo��W�g�:�1�f��g$}ԂC��d��H�M��'�@�bڨ�#����]1
�c��OU��a�uh��������aL��^-Bѽ�^%KY�A�54
�Q�d1�d�Xr��W:<;�PT.>��f_z+��3}U&rf9�Z4��oU��57�윘�L���-�|�a��ppɪfl��#��_P������=W�7n���"�OD&�ꍯ.�F��	�2�3>�1�=L!���]�L�I�/���#��+�@����]t)������)3	�VGp����)�9g��#�-���Rz/v�s�IU�TY]tܜ����B�����T�����/��j�?D�
]���Z��.za�)�Y�+w�Y��J��Qg�f>?KS)P��@�^�:F��c�%���[ei�	�2��Sz.���t�����3`�����Ἤ��<ݕ��PcQ�N�(T|��x#�(8�`ga�Ԯ�R��/��!�Iv�2�	�鬩����]�'d�E>NF���A�Z̽c�Q�
��S��o�8��-��h��q�,�͢�����Ol�e�U+7<�o�Od����B����Yh�ޡ𧼹��*E��#�ܬ^r3���� ����h<��ƻ��S7h������E�����t/��d6��4z��tj~�;�+1��%7d�3vA����3���颃�b�� �l#U�,��	�72��K?
���S��6WS������:�l:,�e9N����!K	�F�h1�l!�����m+٧�x�m�&�Vf������GL3i�A��Ϲ�s4� �u(�i9�o(�3G��E�ڃw��U+US%:��j�&��i���ʧ��9�eE!��MM���[u��5:��{����_7������z�z��Tc⨱Mi�:h��#��E�κ��J
��{,ǒ�4I2��[�8G�7u�1)��"Vd_����w���uQ�(�@;]d=�*�q�>��=y�EQ�g(쭙�§��*�Z�~Ш3���1��`��Lo�k��e&��ӝz�(�;e�L9�YY?�&`
ׂ�3�o�c���T��4p�ɅM�)�agl@eng7]
g�!�D8jtY[@��_���:!��t�N�u?���ss�kJmV�a��A�6PU/e���R>#�gnSYJg��T_�:btm�s�wjT<�:ǻ��*�-��.gl���S��j�:�=�)uF=�j�el@��'�l�W�����pL�pN�-��A��帺�Fܣ'4ע�P�2#r�R�=�1f߸j)�������\~�l�æ=)���5S@��v;��e)�kc@��uM$���1����̇��	���Bm*dR!�"�t�5��
 \����9S�55���t�EҶ���w��j�����P����Q����m�y�)�� �{�v�F�?l~��6���R��5�̦��R��J��{��m�Sc���c�j�-8�7)��\�R��se�&���x����
�������L�N c?�4�d׌�D��݈���ne:-�=67Q+����P<���*�%0ߪ��������i6Og�����M8��]J�!	�A3�ۍS�OVI)�f5s=S�E��M�rh�Rg�s=M�%G�z���簼l�]��LsH�uY��W7>�蟺���+űpNef�p��H	�q��ũg�S�^����Bm&m>����c�0�j�C5:G]{)x��u+��pӢki�L���;�$��T��6j��|#�uS�����hC����t�6������N�9�p�`z.�&���r����´̄�y��ુZ�^�?2��?¯Le0����P�N�=W%��O���#�ND,�������\yl��ly��;'ź-�JM?2���\��o�eM�t�?,(����6^#2˲u*��eK�s��Y���7�Suox7M�F�+.Z���u!���l�A���\j�?�O}W�O;�3�!5����ѕR
�6�9]�鍧���(:���8��Ⱦ��⻦�Myg�&�3�(|��C���":*Dsk��E��#v@5(z~&�M��r�"ê`��94�l���u�ӟ�o�>ct��)bv��+�Oe'E�쮵Ԁ�t�E�g��'͒��� �f� �M|v�?�����cʁ)�
�7�g+3�H����M=�(�'�,��9��5�Ϟ�.)����r{���F�\�\��V`3�4���:���K0h����]���J��
)U<hJ��L��ك��Y�-
V�)�S���@`Qö'�wD�QG�N蜜�+�Lj?e*>���q���ϧE�����5ڷ#����|�6EVsor��&W����S�L�-�#�}�Z��n�1����N�ZvRyq:�*�ic��@���jcc)����73tV�V��v�nVh���܅����rL���h�U�)U��ڨ�Ӣc��
��CAp�tU3{�UG�
��SBj�k�j��*e�3�z+�,�M���/��~#�z'���D�z��v]�Ꚙ?��#p�
£�*]U.�.*=N	��=Ԏ,�����T�����t)�4��(6q{z����T24�;��\�tv�����tf��a��l��Q��6 ���후��c+#�i��V�4��>	v�mPN���@�N��:lU�Z5���3A�]�ə2�P2����K�[L�Y���=��bm+�9��+��Tr�i	�6w6�@T�Ֆ��Rg��F��Y��6
&���i��V�"�H�p'TBs�iU����SF���7�S>p���UG��S�S~B����?)���O���T�ԯ��'9,�8;���d��ܞ�n���E�ߪh�|�9M�O�q����l��~d�qM�~�3;B~��¢̝ʢ
��y�#��6���4�6���� �#	�~�Ǣr�߃Ž��N�RZ��S���I$�)�=#��KݮX)�!�ļO�"�P�]M��ե�S+�H���ʧI�6�h�j��L�w��m'�����0CZ�P���Ꟈ����x��P�5?��^�����詏U�&h����:l�>�Ѫ�eS�U>b����_T:!��<%QN����)��s����.׎f�Lk�彤��M�?�'��y�^���)?��N�M�q�S�Ml�F�N{�;S�G��/oāM�Bn���Xv2�G�y6A�=�'���n�:��SQ�vP�>���1���*n�Dk�:��F���]@����ڌS�i���2�`$&Ӥ�l��nZ-+1���
� �%9�3��}�+'��p� �tި|˸]�(������tD鵁�[d�n�
�O�h�0V���&���)��e3��2���S�7R�r�ݗ_&Z;quN#��iТ�ps�6E���(�U��T�Gu�2��\,��g>�l�ˀ��^������>�����r�Q������~j<�
Vv���D@Y�w}�&�]8�P|*ǐ�N�N�#�u�˶��Ǿ=�t�h��:~��Ig0B����pn^輆7R��_�l�L�L�i�����ϐQ*�����o�[���p߇�Ɇ�Il�V��'(�d�S�6e�tr����
ё��i�P˯0+ ם�C(2J�xsk�D�,��S'�J�i�e�׸خ�8J=l�=�]�MC��=�|
(�߂�[�\:q�:J��r��D�s��z\�Qٝ��Jku�d̡ιM�ɪ�Y�.��%K1��T���\n'%"�J�
n6DЪA�����T�yb�Lܝ�w��&�h�P��wt@i��L�'V~c�����e����t�PN�;q��z#��We�Wl{�x�O�?�o�"+��T����L:;�e�tW��"SI��x!�mW,٨���}Is~r��=�l'|�x�sT ���(�LвS�~"��|���T�O6�Ns`�K�8�&�N��wNG�g�B%�3z�]|�������1�\]O�:c_"4)�����f�I]a����uˆ��B\��	�yϪ-a�(M�C(}?I^^A�-����kk�*ncY���l���Y��r�/�6�}���1�uq�m��U�|�S2�	�����R'�:�	躵4�:���]�Szcy�8-擠Gt	��ꄛ`f����u�UhHfR��՟�O�Ko���p�b���|Á���+DBs: ~p�6����u��T\f���>�F�T��d
�`:�A��10�����ɓ�U]K�4Le	�ޢ��$T�Jc�do��JQ"
�n0��F��m�9�ZH_�p�T��Nn��!����8�b��Nv�96�x36��|F6�V-@�;-F���*�@:]F��.��FOek�i�IL�I�R������[�S�	�2�Lh�@������<9\S�W9�5��@N���P>�o�)�&}��yD����>K��q�mS?_��ׄ�1<%J;��c�����a�*~^�0���,��}�,�[ͼ�)��1��H��L2Gp�W�ܹ�p�L1�Ti?3?��6	�N�·�K�QiT�˾;+�
�tځӲ$�UY�Q�"��~��)�(4�k�S�m�ev�8�Q?EY��W�¢>��c�6�3���b�m�Q���}#e���g�a��7�09��	������co1��M���>����?���8윻��
w�GtQO1a�'�>�l�3,�]��4�bl���� �Īb�D�'^�l4T2�ey�u�Pz[��$����a�l�T�I��P��a̚hu3~Ã�n�Tc��V��4E���+݅kh����I�l��]e:�>��	M�9��G�4�9��k����*N�d�#�T��
|��o�$haT��ug�S��c�P�n�T��*�DѠ@/�s�1��S9_�)��U5�®G��Dz��{]xn�?v�;�P������O6C�T�{c,]p{�h��]]�et�~m�!����l��$|�X�ἷ���,��¥Q�r|��1���r��y�w���t<�M����
<�TZ�cU%0��a�2��t\�_�N��s��c����Ƿ+y�8��N_�7�T��]U?�7g:��!�!�+�_ʏ�"���I��@P�sgL�9����՝�YP���9Pf�[��˗�����>#:��U<q�@�d�'S�ɮ.a�*_��Q�p9�z,�=��S�E�ú<=|J��{����+����7E�5R!��w��q��[�-�6��w\#�ea�,��?�e<���͕�w2-s{��mT�W84j��](���<s�B�ϩ7a�C�f�M�ICf�S�T�e8���N��O��]�k��yP�~,��x����C a�:"q:��Q
���|�g����عCe+5`{� #)�����oXB�i
��o[�#��E��}�(�J�G58Y��L��[�|Gh�J�p� b�y9u&��u�@���[�8�X�㶈�|_	�f�uO���ԯh�3=��E�I�-�<0%6y�Js^}8�	]l��7����k�](P�6p1�9�!48�s�G™�i:���P��0}*���Y�5m�$�����E��jԂluY�M�jF�Ph@&�.�����QuΊ�����hj�B]r5GB�o3��Y�2�h���O�<9u>D����ɴ��z��X���k�%2���k@�\�9����A�=/�z)���t@��02��Y�]w]kr�|�\��d.QmB	�u����'(�ԼS��m%fz�]J���p�ܜ���l�c�A��uE�u�}H5F������)�+���u�/���';�N>��s��u���CG>�enQ�	(��xD�<�l~�P�m��f�p��*4P�x��I(7V�L���gʛt:��vY粆�Eƪ��`�Ӏ�*}5���*�V��$�՞��y�	���U
��Z�4,�!�D�X�d+�C�������O�)

~�'0e����vS�O+nU����T+�Mf�n������I�y�D��a�J5'�����Arh[y �ELJ�:/a��g�e2~���!�c"����(�J�
0�U-�ud��e��)����+($��(���P.�'zl�`$suꡠ�8��
͘���ʞV���ewu�T�,�Y�̽�\Dg�'9Ҳ�)n# 	�F��f��vR�
�_u'1�*�' ��9M`�S�l�c�6�1�J�3�8OP�Gv��!4�
;��j�/�:#��'�]I�&�W�n��ct�]�v)�Jt�\���V�4^�7t�i���&�-4�9�G+��J�,˪C�,h�����J����S��^��[�b�nT:a�N=�
�5pM���;�~��7$���Z�h8c\�
�<wA���s>ʘ_)N�=ʟ.h�?0G�G�(�����¤>	����P�W�G�N�W5ŗ��]r�ѣe9��'�w�UXl?*��?ܪ;L��Zb�VU>v��"*��2�
ޠ�;���F�5r��;��]4�Z�_CW2ngH�C!��%�-{\�t��
GT��Mw���~͔��-�(g�N��Б������%Rk�I����P�A*�����psYe8�N
�
��i��M}Xʶ'��,�D�yw�O�!��S��vT�����O'HF��܏��[�V�Vm$�����yS�,�411��v�~ʙ�j��g���&�h�-o�TX.�f�Oꋶ]P�������0����=�RIGe�v�6V�3�&r�HNkɤ��UcC ̧�|>���J�N7C k��S����1Þ�_+UG�O"Fg@���Jx|8�+ħ�'
��Yt��u�tD����̿���߲�|߄5_@��Gv�حd0'[)��=ª�L	N>��Tz�f�=�C��R.�VUI�.L��e�@_\:��{�� �Q��o�s�b�3de���d\*��*�ʫvU7!<���e�U�uP�p�T��n�S�-A���=p�އ	w�'1�>��/{̺'^XB���G�Ty��)�d�|���'�U�/�?�eS�����e�93քL�&uM�^$ �c��P;`%w]НPA57��"z�r
�f�:��7>w^2*u)�R�������2_7c�|�U��S�����7Ъ�>��«��Bz+]5�EEĈ�T]���vEF9ܿyyG��
�d'/�G���'��n�@zD#�Q�!R��Q���C�?
���
�MX�U/�c�|���C���@���=�J���z�e�U.�{/i�V�W�
]����V�h�[��ƭ*�����U���T�
�~ʓ����C�x	�����Ҝv��$�U4.(_�J�j�0�R�P՘a%tR嘫�kڟG���MQ�&���ۧ��k�{��Y�*li��q��?~�&N<��Y�*��eqo�vNE;���;�9c�Ȟ�uQ�Z��Y�D�-G�_��)�0�P�)��I�w�0i�6uzo����M?�GQT!�������w��2��&�ELn��(t+����b}*�LJ�Q�s*�[S��p�xԁ�eQ��V�����E��5jl.y+�*w��T�{<��u��:��S�
*ئ8N���@���l��+��b��q�m�^e��n*�X;���1��ǀ�x��?�!�.�c�n�-µ�d�v�9M�Ӫ�{lp`�^,2��|.��a�.��ͱFmW��Pk�C��2�>�K•;����S�R�!E������ʕk/���B�K�Ja�J�u��\���쐫R���|VT�8���1M�Q��<7>Ff�0�N�'5OŸ.���(!1AQaq��� ������0��?!w�`��`��ͣ�[�P,��2[�1QZL�L3��Ũ�S�~`[�3�O�
�����\z��g�k&�<*�c����z��AÆ[�����RUyc3�ԢɁ>j��e�W�K&`�K_��\4%K0�|!��!W�}�Xm��7:�V���&zJ���	7�k����J�"T]Kq/�����*�MS���,ۭ;�W���M�"�
Υ�WԮ>бl��ǃQO�Æ���H�7)�Z��\W��$�ť���b����P*�X�[�I���!Ѹ*%V}��
l�\J�cg`�l��u�q�ђ9^+��lWA���5�l�q*��%���J��B����psP�u��jjQ�"'��N#���G0qL�-�%ˌ\E����m��C3Ң�!�����`�ԡ1�%(��v@S����*�Gܤ��q�G���/��fGK�d��#���m�����6��������8H���ӟN�sw�1,u}�U�b+my��=�[�;�*�0�Q����K��H9!��8*��Ez�/?pt;�%U0�&������+o���m��QNn�T���1������Pi�aB��X��Qz����xHp ;e)�ݿ�j\4����w�&� _L�	={���k�˥az��:���em	�1�=i���܌�U3�ۡk
/����ݒ��),�_B�)7.�v9���M�s��Yct���ԼW����S��xU���\�����J�0R���%����W�`y�G5�q��sW�1S�������5�W��J���f�SS7����]ʖ��9�U����_����'�0�ԲYa;'a��şf�OԵ��3bL�#�2�B�Ⱦ���Ue���f��|��vJ,��+/�s߅� ���|hW���5.0	�K���L�P�4��U�dkz�uj�x�il�r���W�����Ú�L���Xpf2���h�;����(���FV
��Caqg���5'/R�:�E�j�^ر�1z�Y���"�/����5(np��b�xY�`�.�/�.tj�bWSpxUS0z�Ju�^������u4�V$�C�r�d�ᵈx��382�=E씒Ե�ר.̎ܢ�Z(�{���#�RTzq����rg�_Sw� �-Nz�f�i��^��ߑ��*
sw�	����.ͣ�8�#����Z'�&�z�/�t�Tx�c�1K{[�ƃ
�Pߪ�B\��b�h��J�Th�
Q�}�P`!��D��Ok=L��K��]�;,,�,@��q��U+t�<t�S<���`�x%���İ⹃g�R���#�,3�"ޠi,N�<`�u������<=�xT|"�n|MLq��f_P#m��Mb�8�A�R,�W�	G��n2�]T�%���'b�T��\u��!Sr���P�2�Je�k�ᰯs�zs=x�^ ړ-n�g�J���fD��R(� Y���1b"��Ș�6~|��K,pi��ܽ-m�#�����R���Y�R꿃��*��喌�Ws�i�w�q3����`J�PD6N&|9������_����v��V�nYn�/�|�,�v�%�b%9��mǖY��K9tJ3l��h�kT�UY�d��j�����y��W�p�_3���[�5�q+\�t��0[� �'0��q9��W���G�qbm�E7x)�����7� :@�Ķd�3�?�'Ԣ�x&?�f�<��w�jn&*8F���dS��Є�ex�4Ĉ�NI}j�G4�pl,��?)�5o�������wO��ջ�]GV�i��F�˜���S(�	FS�*��9���3;�:�q�\~X�%D�D@�t�&���;�`�r�V���B��� b�o^�W{4M����j=�P�X �˨���QZ�B1�E5��q��qs̬��tD�cj�n��eX��%�rg��U3^;�Y*�̵b+�P	C7��O)1�.-9u��CP�/Zԭm[(��%�A��c�mZ�/���v�Ɋ<L ��h!���i�'l?��ʆy�Ա�,3��Lz��wJ�	؎J4ʣ�VVjT�E�C��me��S+��
�N�Z�t���cR�f�c{���Zo;>~�{�+�G3�	P��q�G)R�T�q�A/7��vƙo̾_��Hx�eE_�q�|̍J�:���cS�'�b\���Nc��pqp^%�*U�����xFٌ���"��T)EBiRˉ�PApwq�r���^3ĥ}�`��~�˹y'��T+�	P.4j�S����)Z��!Y��L(�-2n��d�en�f\� ��mL9���*��?PbE�dF|W�C�xa*
1�R�̡���@���6���6%�`��2��)M����:�4ÒWR��������6ʣ�1U��>�;�8nPS��4��J[��&+L���_^��|X�
�FÆ3}���&�:�&�E����
K�J�Uz��ׂ=%1~+��CV"/,�
�B��*PS�s�7�S�bc��@��X��\Q�n;�5��AWc�qU8���2�����o����1+F�?�}^`�k�Z@4Ǿ|�\����1]�7J�Ϥ��
Z�Lf�E�u��2��QՒPa"E��=F
��c�g\�f����]=J�?�*�
Ŧ���fl�Â%[���]��J�ى��2�.�=$jR­A����_qT�Q]Ja�#�V��L2�wq��; �y�ρ����v_���
�`y �i)r���0�K��fY���\��X�H��iPw��sj�4ʗPl�!�">��L�n���ݪ[�@i�6�6_�qow,��<n1��\"��u�f�� �����/��/�)G<A�ٛF�����E!\�o���H�� ݫ�Ri�h �X������V︰]������f�_�V��qH �U��19�ZU&��K�.��\_JY�a��c}�c-A��1e�f�p4x*%�7��x?�E ��C�a���2�އ���GeWhj>ػ�T8��LǺ�/|LsW��@;R��l'A:����*|���ZWX��in���|h
���U��,�k!79]�l�L�
�)Y��w,d�p��T�* ��w�@�48e	i�Cބ4�2�D�A�\Yʕ.\��R����3/A)����>ъ���pPw8֗��Gc�M���
İ��"��o�B��tJ�0�Ŗ>�=�.���Q2�����r��p�Xz��_����nBmTk�*��"gQM7;d��}@�*��Q+�!����`��+0��qmL3�!�LԴ�u)��JM�0����l%D̸�Ra0˘���x%��-�c�@hQ��6���4�����Z���i�L<5_2�sG
r��C3�����U�v���TKg�X��qe�'73R�s�P��	U�Kv������7��|����0��6'�"����0�v�R�,�,��Y�+o�/G���fz�D�A����rxX�Jĩ�w��68%KH�զ�y���˗�
�.c:6'�_
�KU�
��|F�
�Um%u1^�f�^�8�T���sc�w�����Kb9"�l�n|k��U&;��M9w,�Ŏ��:�1ԅ���yya�<CD��*L/�����^�t�a�,�	�W[��1�s;�縚(ĻN��q pIeCr��=�5���]��<c�iH8�-��!B�h��t���3��G�6��Tvw*��9��eԲ\�俴,Rm*��R�z��{C~�
Gq�%g3P�ܱ���%o�9�Y����_�D_K.��|� ֹ�����AP]Py�gm
.��[G��ZZ�����	T#�~�
���q���cJ��c\�w���s����}4�����=�؃s���+��B
��r�(kԨ[0=����
�:_Jpw�_O�|�[���Ҝ�Y�)�z�.cuĤର�m( �-�2���/�!\�Q��F�c����W+����e閂���{`���}J�[�Tʁsⵕ�!���̯V̼�@��]Ǽ����K�n[���^�Ԩ���z�f��
� �MU��U�cp�O�0����Z�o��԰l�N�K���
?�T�~T��
R8�I�qQ��0.W��@�-�w\�Z0�V
�ާ����kK\L���8�<{�&�q2�^���Z��03���-���Y���-5��6��;�K�!��tJ��f-_�=��iM��D��,lū=�a�f**��J��}��s!��]E	�!�� �w*��8c�L���-�-7D
vG��A
L�qUl<ʕ*W�<:���L��)X�K�a�&L���k��\����g�I���X̮�7+C����
�36�7,f�9�\1Qu-�&��@Vl;� �9�3Nc�&�V`174�"[6kH��P�F�1�9ڹ���0�
l2��ʂ�)����cPDs#	�^F�">}CsX�d׊��qm�B�r�F�.hX�f�1/���1̵7s?֖�V����bY–�J�w�Ѓ��r��&XW�^NPq����YT1pL�y���U�ph%Zb"�^OW2�L���D���5�O�Z��7k��0ˆh�JW�v�	��V J�p[��b��jw4��̀u��w	E
m��D�(�O�X�4�p*m4LL�ĺ�6?q�En:�}��nYƦg��4�ə���JO����2�TE����,�X��tL�clJ�d���ĸ�ݵ7�uUČT�/r��63�d��_��yј�T�ိ�A� U�6�m7�^��:��Rћ��c<6t�����r�q��<3��^z�|C|�6}��1�7����50BI�O�<�����Ҙ,����`x7*Y�X�����
%�x�ә�!��3s�n��j9��jߦQ�u�N�>���X�2�m�ֳ<B��GQ�\BE��f��˿R���R�xf�
_��)�q�;��wiW��-�ċ[�
���.���`�6R��`?	�H��R����§�3�	TI_��)��<�y�m�U��P
<�Ԭ}�8\�v�A�C}ZE�m�G{�Tᘼ�7N!Wo�-_.X�r԰+��#n:��B�˿���r�Q>�z��|��}�����e�$�T�C�sR��
��~rT>�ж�ĭ���cWm��	��l|�9J%!�%։��ᩢg�{���>`

��V���&�B��C��^[���ƁĻ��1,jؔ�Kk��ڕ�u,!���s(��|���CWs���;�L3�_�<2�r��P.�e��ZF�l�m�?1���.�>�
��#d5��A^.�J�$�_�{��|w)v�����[��ԥ]�4U�,:������N�h:���{���j�1�QZϵ1�v8[�e��:*�fk
�	{YF�1�E��tT&�����?�z�-���.&�`����#�"h�B���[�lTJ�l�a̪��W�;)�>�_$���2�u.d&W_�
Γ�K�J.��QŇ��*U_w�Bֵ�/��r�4���|�.�Z@w1^8������ʯ�4�߀�i���u�Է�+A��Q��E�����gLT�%�s
SMS���q�\���ǩZ�IA�N"��9��Yd^j?œ�1�!;
�Z�p�y\�+z��D1�5+W���bNn���a�f�4�=��!/�A�0VZ�<`)=��%�.��zL�Vï4�A���J{"���n_/~���~2m���a4 @��.�Q���
��V�3���;���Q�{�m��5�{�,������b>�ԥ
����U���Y���]��� b`<�Pu4#�
z�m����Q�h��Y�ϔ�gg�XKb�Spe7sR�4~�t� jtb���@�X�
_.���<{'\�(Ih@����r�����*zK�װ�%P������1)!�5���z��Is���&9c"c�|N���0��J�<7�)Ա�����
-�Kϩ�a��n������P�e��Sj��V�pt!�����$J����`Z�
�,���2���,ڥ���ܨ�|O�K�4?~�����<��@������٣���ec��껗�3\�
F�+.\�5�Lý�ƹU-��4��0�Z�G.X�Wښ�0Rɖ��<@5���JQ�|�6w�+�r��T�\�PPB�$�1��/�k���:Z��ѩ�&�Q�U,���a��n�L�MOl����7�P�AGdN�zrN���[e�g/s�Cu�7g���X�K��E��{R���B6�J5�o��*b����6AK�����[֡�w�*G���r���ܲ�r��M������1d��K�M��IX(��x"�Qݠ��A�0�.�pĤ��A}0�4�R�Sy%�K?��i��H�.`m�'��j��(�P-��4Æo��sB8IF_�������&��Q���L3=e�v��u�U������NW/[�!0��*�����,v�2���p%�+��U/?ԹJ���Ӄ�̊psԠ,���,0���%�%��B"���f�a�	q�%��-}/�eGLׄ�}��j���G�p�;��
�U��>��	閞�%%�\�o�rҘV��*�(]3�g|0ù���X�#���Hg;e;7�����KjS�/�6^	�����d�G�T�0�as)Z!U�7^�ֽ���Q~����)ej��nD�k-C�e���!�ym�7�y���S&��u*�1�I�����3� ҹu�ڂ��"�	�����繁`V%sn8��	��.���V��Ax̵=ϛ�.*W2���c�t\qT̠����Uz�o,������2��I
=D`k�)fb���W
b�w6,�YiX9�=���GL�Ԭ�x���'4	�^+e�����R�*_r�"
̫�DU)�0m�SȬ���m@����u�����˗T��vp¥K�7۹\�V���!7UZY�Flƕ�l/H̶��*Y�7~a)&�̪G�Zz����^��n>%�eCs�yU�-~�"TXm|�ص�ٜ^�D[��������&�/�U$�f�5`�{��BX}E�<A�Q�9�;0�H&�5۲l�ƫHy� X��1�z�����.����*����4�5��eg��]C
�37^
�B
n�e�:��b]2(�J�7�,��h��iܩ�g3;`�/1��P�.^|�u���ꗱ�;�����4q�B�?�D�ۃ�k�*;���ԭ������T��A��w���ߍY*	|����,_s"].	b�TA�y�ۂ�W�G6�(����,�7FeE̦֟�i5���|h	�Ú�R��q�Ĩ�h��SO�f��\T��ʿ��\���������J�`��%l��ی+�j�K���z?�tH���,$�`�7�Mr�e��t#��l�;��<�E�8�'^��Q`qps^�P�,���7/)��6FZ�c�������n�*g�nz���⠖�3�+	�H\�׋�4�Ӌ�G�b�A�</�,֮d� �g�(3spNa��K�8����͞�|�����c�2����`��Tw3��D�^X�*<��.���������x0�-qc�L�}��&�1�Q\ZPV�x���j�ӭ����#)�ka��a�#]>¬�	Um��������V։�5*��|���ug�`F7����]J��}0`tT;*�7��_���4�9�����[�(���;C�8rsb������(a�9�G<�/e�K�~?�̦*�VM��V<i�x�Y�^d��P�~CS!���=>��_�c��G�i�D�Ǎa8`����W�5$g�̞�
���q̗�
�C�Jn^&�fU|E��k���:�2���-��슈�Ԟ�*�/q�v5��� ���
y����#s�,|��f*��&9�?��W�r�61"�;%�
P]{���J7Kd�>HK�p��ܥ�%������t�X�1���a����ͯ2�g�r�zl��z2^t�+�r쨲�]�3oG3��	ߝ���)ZWܥK��V]~���pB�䢏?����[�;~������̻�N.]�R�ͷ2yj2�2�Qs'<5QY�!�ǁ�K��Գ%��rt���*V��r���sGL��eǀ牁�
�P����3�j��Iԥ�hN��瑘��t���]��T��Q���
����+'��G�:�
ʍB��A��)h��:a�P9f^'D��F����*z�����Ϩ��gH�����w��ʽ�7i����4P0���e��tsCͿ������wX���[A��a�T�=��z��W�g����h��狹ov����3>�ɦ7urK�8�6O�4��tׯs�F�m{���s�sP��CW)����������R�r���:�3�!?bQA�r��,�Q�\4�QO��H�J����)���dX�5��Dt�ˎ�)��1Nef}�F�U
e�s� ��sFX�
9����1Q�P*l{��L@q�e������@
ʝ
�����xb��%�Υ.�n��8��p�a������2e~<*��LDX�R�����$�SGD���j5Kq�惸!n��dVO�r:Eel�:r�ŵi��K��e�w�Q���B���Woq�>�nZp:.]����M��x�,h���}���Ġ�%�B^�f��9�������:�
��x_3�8����E�Ͳ�`�t�P?�Ͼ.R�BFex�ʀ��N�xUk�nop�0�� �6�����.v��
�he`�\��1b��ad�m����Q.؆��"p���$';ԩ+��R�tę�K;G(�4�Vj����Q����:�E�ɕ�%Ǧ�%�Va�˼@��+���ׇ��*�-��
b���A��L�ވ^�h9\<�%�K=�w���z�hF��*W���<!1�,j�HJC��-��^� Q�;XƢm�:�s��İ��h���q�l����?	�7�$d-��9S�]�|�w�����,�)X�G�	>b�����F+�����N'=s�븥l�H����V�e�[��NHA�1OP��2銔�$
&�h����q!��2��O�*�L
��6?!� �EiTH�N')^�ȩ͏ט���Vf��e���#�T�1�Ԡ}N=Jr\����B=bW*�^������ap�n]ُ9\[�w�E߁��1�5��Tee�h7��Q�\u��A���@Y�K����B�R::���#) �Wl����e���ĩVs-O¹�Ϋ��ij:��)�1���0�[����n�zLuu2���6���>��gu���|t	�-��Ƞ�
鉮����h��:|r��g�u,7���՘�P�@&&�X�P��$��[��_u>0TA!P%Kkòc�R��s�4�왬��.g�d"AXe�Y��]7��&-�*	�X�.S>�w��Ļ3eK��o�YCP�0���Զ;�\ ��C�M+���(�޽��sd����7�(ܱ�:&EG�,�j�)���M%~匹��3�Fe��(��rq⿅�=G�,B$��������⸢�W�16�Ę�C���D��y����v�|)�op���/����VS7�%-���_�vp_^�)Ky�Ῐ�/ԓ?��h��~�n쨵_�G�M�Rr��q�eۢP:
z��,@���$�U��z#�������x[Y�<~��l��KF���uv&�]��dC��ℭ�������)�5���%�C��]��LrCsDMQ,_P�c�5%�YĩY�Q%ڬ�T���V�]��0e+"ZDeH�xL������|��F��/�9j
�|�R���r�y���B�?��V���+�3��ϹA�1*�J���jߨ%K�@�+-C�0D�8�nU��E���p�?-��k�<8o<|K�����Gx�#�׹�g]n/c���x����@�k�/��GlCє
ZW��	�o��n��&�+h����@��Lܮ�Y��A��`����P��gQ�Sx�QVAپ<K�,�1P�r��{��E��#�r�3��%b�P�Įc5aR���e��bLN#.6ӎ��~���A����s1�K���j�XpV���Q�F4j��7
>(\�܇�"�)�*1��x�e壐L�r{�,��B�x�-/H`u+�_�2���}��B���۹v��L�����N�VF����V��!i7�.+���ʟ�qV��Y��?��{���_#)�vE!݋�Z~Ϳ���Q	R�x��^:�i��.N^�+���|Bߑ�p)�ܹfR�,�<A�!�\��ec��cْw�dY7�z���!5��#r��ʖ���ɴ������&"c�����'����d��+�)�)kq�J����O10^=Mc��2�^ N\��-3_��o��gO����r�u^��<*}��5��I[���ø�Y����^ŗ�(M��e�b�˽ޖ(kĺ���݃��Z1�Z��[�ϣ�[�s�����3_Ґ�,O�k�7T�E];�ks���:x�\�	�e��W����rSIw.�8��LV9M�k
�jk��̨`\?�K��s�c&���(��he�(�sZ��-�WK���7��,g�c��h�;�B�Uy�[E�J�1��]C��9�k:�`��iu�2A�Cԇ�fb�Xli�:����_�r�n���r~Qua��0rj��{�5E��H�w��Ի��J_���yٹ��`����6���+�F�:y�\pnS�	R�>��Q4���\����EM۸e���/h.M�eJ�pz�k��?���{|L�6�+s]���Ժ=�E�⿞�����:�ݽ_�j�)��JkFA���q
�q�9�|�LuxR]�_�e�����^`@�_��eL�R$[;��cg�,U�L�*WZ��<��.�j��h�&Y��33�J)E�f����t�ô�ndLJ�V%��D|2����TԹgS�߃�C�ܪ�}x��~mA�ز��E,廄�isM'�X���2�#�_�Ns|�6���
�1�Y���&�p�M���C/�xq0��"�Bܭ�#�K_�Ò�+EAr��U�Q�� �Nɢց���/*����s-ڷ��=��g�`��C��ܪPU���~9G�C.WDf��Z��%@�n!�43�oD�w��!ᕉ�y�}0<�0�6s�*�P�y�f�5����F�}�^��K�O�-4��~`Ms�m	u��@�z��t�9m3(��LC�ʰ�C���3��߯�W�O��.{�a���i�Z�*�KK_�&����.�h�����>Db0�*_^jo0H�R��Q�m�0��L\Nf\�rLD����ZѾܒ��a�R��Q�������:��{�5a�q3k_sI�Ľ��z��j����dk^qq����`����>��CA���:�iۜ;\��`ڭ��8<bpK�����!P\E�J��>w�0G8���6x����cG
�.Ӓ,A��Jb�r����%�9�C�솜[�k��
Mm�L,$4ϸX7�-�u5�h�P�:�ZtT2˼fT�&z+ª.�J���,�*W���Q]Nɶp����4pAuL`�8�iwD�����%�>xq��P�(����c5���B�E��3l��*:6�{.��O
�0�8EI��A�B�aH�_�Zۤu+��U�s,�
��&��}j��/�&[�ļ��|�K�w�.6TE��p��^�y��lj[�E�W���V��,��,._�<|D�����`�M��kFl�v��}��ǁ�J`���$,�U�e��C���E��Y5�-��3c�jk���q�����EE:�U���C]_���RD�t�g�_������Oh�:�y���%f��NXKļ�+R��l�6?��4%���Qa��n%[+ѿ�!��	rrTW{��os7����jo�;�{��Q6�R��Ԙ�c��ߑ��p{��1�31<���9�Rai�}�^^��,�Q�>��:*��>X#s7)Q��S�!��20�\�6��"�"�%B�]����D�fk�:w}r;�4�����:�{N�9�e�`=AK.)�*���L�Hw�%q�g9,:�8�7�1(�p��BNs�mN�YSJ�]�J�!�o�BoQ%]%~/�j`׫���4�^<�]��>���1�#����U\��i:�D~�넹a�����]�TX�����M�6>�pK������T1�+/SI�(��^�.��!��=���1K�����K�wp�w2��/�ĭ�/�r��X��+���n��M��h2�bs>��r��f>�.�
ބP2�-�� @�C����ihi��;;�C�N��B� ���yDb<�>:��z&wp�7|%��
s���cܵn1��|U�m.'�Թ�dV����z��$���^#e�n�F���"fa]��)7�Q�ht�б*7
�+1��=;�t�uR����b����Zlܶ��Sy�0�,EL^U
<za�`��̴��8��+���-rT���u�z����b�����7��V�_$����*�W1��x����L�i�JȄnik��`�^��v���ȡG�:���4�,���>��P!KϚ�&$I^J����Wa�d�`�bܷ�a
�����X�S2��dD���*[?�I��Qjx7���18Gq����'^)L�43x���gO�	�x㨪/�E^Y/��+��%2�݃|,�k������ȫ2C��)�ܩ��l�'�2��n��&L�u/�3E�3OQJg�na�����Jѷ�<R��A僵&o��0£������J���>TC�en�/�d�Ɋ��ԩ(`%��[���I�B��~�m;�G��TyfM�Q�SBj4���~ �^7�Ѧe�R�
���37��T�d�0���?��
�+�_��1|����FƄ�{��U�{�����9�{�e�L�o� ���c�����GH�)�Y��!��+�R�,;%���@�����ϗ5�c��2�.W�5�1ޥ}U��y&2Ͱ�q#g�Xpο�n7����U�S��\ �%l����0o���$3]A�Ww��S9\�f��h]D�Im��`�	��v��.-�̛բ�:5:Cڴ��פ�A�湥��<*�Ӛ���#z��"�n��{}���3�P�����
��E���Q��F?�QmB��	�|p#��fP���J�7\�GO�SIR�J�ؘ
&�:��7�j�F�������m5�:e��3�y}�Y�����.[,M@���ʲ��x'3�dwd/Q�,N��Y�Oς-E�W���&=:O䂇&�~�Cї�{���}�f����+�RC�5L"��,��y]�F��!�Y|A��.���RQ�"#c	�4��EB���6��8^��M�>+q1Xv+�gUv`���dlͶ�Q]7.	�l-H�Æ�ft��l�OSa/�8 �1�'̱n��7��L1��
��w�@��u=A1	�-��S3��X��Fn�O�Q6���N��-y�<�]|l��:�[z��C�lʃ+�2��~�`�pkї�	[�g���1�:�Ǐ�Z�b*\������&�V�|Y�`{.'dE�
��*W�;�(����&U�~�D��Ec�R����fT���a����(9}���0��6�G/�Vx��@���#�J��:��Ofj�q
3]Fpљvu:fS8�i�n
"ܞ�iV� ^�4����f�PD�/�@�*5�
J����A�~rAx����q�㣩[�z�WDc}�i���P����ߛ��,R�Kb��^'����^�P��D��r��Vi2)UY]���Ux_�9}���C��W9�D�'����s
����x\�m,���H��~	��*����4^%����W��b�;���E2���%B�E(�﹔��#���`8e��̸K	��S�=12v?�(d�ItxfB*K��v�
��,u��1P��2�i��M��ܸRr�H��W���qv����)�0�5g��tʖ���D"Vg�!�����tkU1��q�Yts3����gdǨ�د�Tr�Z2:�|�j��Q��i��ĽB��M�x���jo��#���;�P�����p��e��CDK��Di�+�\A�PE�~r�߹b�=�t�oP��
5k~��	p*_��f�����2���F����w?d�#+S���`_S}�|v�A(6�>c�؃m�~Z�j3j�U����Zܫ��F��.���n���5r���BU�q�On�.�Y��4��fJ~�=����f�
��3��\_�i9��ͣ�<�`ˠҢ�\)j�{`P^��D�%�0S�$Ų2�
��q�e��؎�O%��p�Kο�j�A;�4h�?>��u�� �+��@>�؛�X�J��o�L��i��^5q�\�	�.��Gt'�i%\�xT�i0߅`�A�ɟ+�e�;��"X�#gQg��������l��È��3�7u	��Z���/�Fn�1�:��~YvGF���!(GN��躢G"s�5�0[D$<6�"hԬ�s����s�Gr�[b&Oԫ桌��/ơS�k;�w�h�#3����\:~f�j��D^��|B~�,��0s����f�oS>�YX�f�s5{��k�XU9W���9���?���n�f����91�˖k]�[�������
E���������Q���"�D�q�r��2x�z���O�fU�i��}E�Z�g����P��/Tu5t��w��_��|��%˩r�Y~ox�9��!��b� �R��k�EC���g�i`��Q�N���d9d�eY~^�t:���%�h�R��)���&l�7��p���`���$�{�a��vNI�����ƌ�W�*�me@��;��F�
ʄ�P�!�&@V5o��x!�w7f���^@~��-0�~�ã�3K���0UV�бM�d��ix�c����8��Yh"�kqG���{ƫ�X�|��u(�_G��!�ˊZ�%ڎ�s�ØG���,��`;;���͞0�!I+*�걇s҆�W��QZ9���=���@�r��2�ol
'�����u��b�i�t|���¤���-�@����._��*��Fe���D�sc���mRf\�3JC�q��A�V&��5q��|J��*�^�m�v���@��#��8:JN�R�J���7,77�As��n�����{��?�u�b�Kv� 6�&iĆԧ�t|�Nm�W��^�'`X�dB�q���7+�V�m���E�?Éij�-�=���>�yAr�3�P
..7��]�0��o2��sn�º��	�e)F?���2�MA��L��"̤3%�mc�B�H^�ӎ�Nl�q4��f��=1����;�
n��������*m���O��S�Z'�o�"@
��^J�h��S��A�[���7u�c����5��8�r���T��F��a�ϐP|\�r�,����a�L7��E0�A
w(l/��G�z��7�5�v��@�-���.8�EW�5/2�0lyP?0�d7�\�� ���I^�t�����'Y���|�L'�q	j�"m��E�T��C�Qwik("���T%�0j_�M��J�7,/_���#(�T�o�#��
�_�M0J5��9�s����,P(��m�ܩ��#�
�Ӝ�^�����
�ص=&6��9��V(���Rs3�*o濸�}���
s	a[O�G��~ӹ}��_3�!9��_��{�F��
ˊi��q|
��_�qE�_��.,���wy���E��PK>�'�xHe#,��ɴ�&�6Ø�v�EEp���HU��Ѹ��̢ˬׅx&e���RɊ��g����^
��ͥ��Wm|@��1W����ϻ>�_���4�ċ�<	�8�8���_�������Er�/ �[��`M#a:�!E���sm�˄���Q�A�~�`�d^��&�IoĜ��yq�l�W�f�[��=��G��ˮe�/��艘�/G�iV�n�Q����S����7��*��}F�͝>�Bڨ�\&P��q¯��*�lO
��Ky�1���YVa�~78��s$��.\�,�jYY٧/S��,�}B%J��:�%B�W�P��ʎ����mc�\6
[�l^�>�1�U��j�����`�
F�_'����1[l|Bj��=�Xw@�K����.���8O�eb�Q���ʆ�ˀl�sXc���`�ǚ�+�Tm}¶i�b��,��A�s^�%J�E������.o��.�0�E�9���Or�ۙUn�h��1A��%�X�}1��\6�x9���f��*߱b�4;3���u�5�p1?f/�H�]s���2��}E��4��*�9u��AhV�����F�;).�eJ��J�Sgg����a�֓�T�IPP��V���7���ʆPD��y�)�r��+G���*d�s0�MF��b��	pe��b �/Ip(�8��E*��N%x� �O_�Mw,
?\�:�	^._�~�\�b�JI���AT��s��%V�\������w�7,s�7,��������1X��sD��|T�2/�pe��\��8l�r���s��ȪNH	\�j>�.�Kˇs�~ه��LC1IAk�YJ�/PP�X�N u]���xe������l��u�b��'�B�d�-�
���Dc.���;`[r����9!��q/� ]��BS�!�y�'��F��_}�Q�Uk�y��	�\��p�{�džT�h,A
��S�ߋ���4K^w"�Eؙ�Ӭ�	ׯ%)/w+s~���`�CQ�
�ό��m����^��B"�]��A�^�5�A`����j`%tw���5n��4̋-����E:�gN����ʊk�+�,U�rC|�S�Y���gr�\qzzc�+�J��X���p
������%E���"���d�!�+��F��p�l���F��$�/|�����78j������Vc��ajp��[L+�fu_�����Y���{�G>�8��5CF�Kr��[�O)�LF�"��q�>k�p����~L�P�����9�9��r��"��1�QGς���\Cu���\�/����(v��;�-��WU9��S����e���tNw���>1M�s�	�2t8��G.	����.0؏C�����E�]�#������Q�`A]�֦�tb�C�p_脪�����w6O�p��������h/f�Dظf�_�#$�r�ێ+rܻ͜|��q?k1]W)�g�u�H�����R��s�%��?3?)��U�ۼ�ǖ�o���k�W�W�X�?�=��Jg��q���)��5���9��ph��PL�#�q)qx%��l8����s�����e/�_0�#�>��K�ߖ���R�#S��;�u|o��e��ENio��eI��s;�e��o?���P)�\C:���?���r+RߘЮ�k��ߖ���NF[Ơ���x�ƾ��o.�ph��P
�pz�Q���E�/��r�RV��?N�u�f��Q��;�2�ÆZ�,���S��4�-.�Hn�=̯�c�ţǂlx���A��w�X�O�`(wy��#M�t7
��(7/�v�qc�-�s("�Y�/��x�B�RXcU�����EZ�-J�W�7���E���*#��gF�x�h^r�����:�g����sR��v���FSs��.�}��0(��
�@�>�	h���D�ۯ��r�����T�R��J�*V<\�KO#.q��W�o�Y��GЪ�y������!��6�oa=v��s&D�wM�YI��C�,�58�^�y��\Ɉ��&Sa�G%zMH�	T�s7��`HA�i�˴�Khf��"�溉�L=�Թ��]�,���\�5��_�qA���̯��n
!��*Q
�<�De74ww��n�ᆪ�G��W�h���o1%���i����ejT��/6a��;��x+�K-sy�����-�=L�S9x���r��u\w1K�|&��=�7�j1�Q8K�Z�L���P�N!~}��k�.�����AG��Y�����(��4�����jx;9&2�#����__\�(~���gѩsC�&��8���[a\�*	�Z�R�x��^��M�fg�"Х{�]�����\~"�~OہG�ťq,`_������38&�ᘊ�-�QI@�����A�j
Z;VS���G}��B2��/�ڌ�e%�i�~����'#��	YP�X�;����U{"G�j�Pv_��6���R,�6�j�C���#�eenk���\��v]L(`�����{���9�T��3}��p#`�/
�(������f��Y�= ��w���j!�fF�an�s�����T�J`��TSe����.}�q�����o� [�x'��������P���c×�^�qcQsv��cK��s���Ĩ�P[���n=	f	s�
%�E�g7`J����\���*W�'\��6�%��p�V�1&�%G
�ۈ*�:�0��4҇�_|LU^^��6���l$X�����pJ%���$|$���Z�(�m�kL�(/*"�*��M��)�Qp��Q����S�t����c+��F-�Ι�b��r�r�=G���?�n�l:#E5S��
��gR�茔�!uIo�wg��Gu�v���SO$�2�
����z'��Զ�}�q����zH�+5��`ȣ�^�����Սu4AY�,c�8�y��<���w��P���@f:!*|"홟���~s��me���J���4P#�8�w~?�
�	��DN�H�8"F�>�f�KpF����V�7_�9H�L6VeS/
¸�P.��蟖��+ܪ�._��f?�Zo���F��%w[�j/���o/a��@h�l��T9&
�j��R:n$�å~":Gf$����QF���C�CO�K����E�ah�9�h;��N{3o��f2����A��D�e>�7�K���@AU�e�.^m��r�,
<�ž+�:��%C��K����,k�JXr^�2VuyNɹ�\3��'/��%���/>�!''�Q�@^5pXLZ䛚T��FUgu�Ʃ��?]��OOx�F�fb�*�V�ax�D�j�
y�
q��f~y< �1� �����+���FpU��RƦ9_^�\vL�K�v�׿�1l��Np������^��_r�U.�9�6JŖ�z���	�w��PSMD�d~1r���)mQ�N�iK�"2��5��R��#dט�J��8�kМ�nKn�ކd�i�$�t�(9�'�
?��4���|�L<����p�ez=�ώ�%�N�p��1��E�&�8�Pk�2�:uq�4��G�Fͫw/�C��af�w*�
U�V��Z��Ըb��^cBX�~��R2aIe��8
W�@P8<]�z��&�䄶v&€��\=���n���Av�9����O������֋�l�*S������\;}�JC<�)�:bO��Zǟ愱	0.�^X*K	��S��V� ��<v���1��}L֥,��3.�z�r<cY��\�r���q�g<��n���'r�%\K�Z䇺�U���e[�=�Ө&W�_�as���}ŗи��֌�I�#4T��]��Gr��
&Q�YI�Zc犙H<���2�|!��yN�CBۣ�����\�!+�#ia��a�E��hޟ��k$
��^a./3OiK(D�p�{�v|cןyU��[�z{�7U	u�E�r|�r�����t-Nk�Z�_�ʞ膲�1l��%u
"~���e[���C�Ћ��O�5�Y�^e/ii���0�"QX��w2��f�����ǽ
۫��Q�Ƈ��(.�Wo��i��XΦkBs+��_�����,����[�Au
���9�v�^��^���s.������r����9�Q��Y�o��A0a>3ŭ]��
�IZc'��g���E)pe��R�g�S�����b���>R�k훕�/����R��wQd�~�!q�G⿊b��U�{�zޢ~Vp���˗QWӝ�Imus3+ �3�57�	�na�����`�/ɍET��v� �8��n�>��7�x8�ʢz���r��ߘ&eEWp�m�����!b����(H���5�q-�|��.�e�!u��r��}�
�+�������0�V�Aq�Q�3)YyX|���j�̰(���ɽ�{������vzo·s}D�@�L�����0>�A+��-�>�5�=��`�D�X���G����'U�
�NWQ���ܬ5Q�F�U�p���*u)����\��G��*2��{�r�����9�FCu��#�^\�Q����Q�Vn���{���X��r��+cgQ]��k谜L�x͚�v�*��� G(�f`fc�e��
�Y�7��H�C���T�?r�ʼn7�>3N�b�*"��� WBp�-장�C 9gN�:�j�>�Z��j�n�ы}����)R��J:y�A���%��=Ӹ�s2��r���F{�Pș�V3�bkVC���4A�pųue�YUS�@(q�'S�/��A?�C�� .(���%\_�W�)пF��<_�/��G�����X}E��M��qN�~��M�|i�=qw���ٕ�5f�p��-��g�Wqw�5��-�~`vX4��˴�lK�e��-�.��m��5g��QG��7�Am8��˽��zb��d��-�}�=�
hb��)��c�/��얖9�����%ᦾ���9^�#�������s}�W��%����*�>YgV�p�9�����J��Wb��ʬ�膟F�>�y��]�[�� �
�‚�o���u���1�r{��O�p��\�v�xg6��34�P����֘-�a�O\��D�G/-_̧k
1[���s���-��b!�q�^��c����^8Men>�>�������c-�O�*q+�O<ʸ!����;�s3��~)q�Q%V])ʲ�D��bMEx�S��R�J�5
J�������<�%5ׄXj#7���K��l������
�,n��Ӱ�~�A�����n�Q}$�� �%�����T�X�{��2����G�]ϟ�>�^fx��?PXY�R��sY�ɞ�Z�bb|�0,��R^��=�|
�Cȯ���ꢅ��I~�y����l�+��
!Y�S]�z&�[�]+^-�	f�5�땆��6Q���5����'����(X��L�C|�"9je3�+ܯr���>�֘ex���W�)��0����ղ����2�"����ZD��5���\2ʞ�*eJ�ג�W��f�o#��X�W$^�F�MA&Ae�<@SE.�/u����f��TRq0SV��b�7�D��#�רx;�,�Ɉ>�ww67���Gq�V5��iT^��9���Z��*]@��\�Ƹ��]��8�YN߹��>Pv�9�nnk
�Cзk�8�r#q� �s�g�#b|�	�B0�� ������}��-k=�0=�F6d���3��2�Ɇ���Ω*�&�H�d��,�IZ�IW�c/��R�����	bUp@x'�\y��3�D���%0�o����`p��ϊ�T =J��*W���<�X�?�\x��x��8��9�eb�m>!b�iq��l[P��!}�*��XC��r��m����3Y�L�q}A���e�eZUrG�v%��_�>"{�����0�?2��=\ɀ��D2a����IRwH�s��5�^b%ZXx�N2�y��Vֿ��m=,)��ō��$9�q���N6�}��fy �(�FIWq`�u(�HFaȨ�Q=�{/�#bO��JN��20%b�Q�A[	���8בxS���^���Ϟf��k�x'��|J��U�J�	{��?�!�ʹ�g�b���3�GL���4��5�+cE���g2�*�* [�.Wh�X��˸l�
u�Ĵq9��U�e���Z�:��P� M&!iW^Z����;�(��|����/�'1#���_�����vQ*���+�x{�
U�m�Sv��`����_�h�V�$!�q`űs|1{�:%�ey�*~�d�Yr��Cm�Ա�Y��r�j��vJ�xm���Æ���-L9g���,=_�N��_r��
�	�0aPR�.�~�8�큏	Q.����K���.\��
�^E�}@34�һ�?�%g�ε��
$�x��OLDrY�!�Y|�u���-gqF&�N��.\DTP��i|�ߨ��/\@c�,��b'R}QEz�e+0)�¦[�̫c�a��ĊǸ��S^��r�A���6�M,�9�Zk)���^�#l���	��y�0\<��%O��s��T�W�W��g����n4�(�OS'0���O�Q⦘e<ܣ�%���.��-�s0���3�_d��1��]Ox8��B��\B�gTȍ�>ae�O.\Yr����0or�*Z6a�7��e��T.�P�Vei�r�*0(�b��CW�,��Z5��A_�/p],���ߌd�Ѧj��a8���4B5{�W檠6s�:N�2)|�6���F1���^"�PC����a9υS1�=l[*ַ��A=-G�E���Q��7�N�3� (1������/��gR�C*$H���/�`��Ȋ�d�a�I*ڔ��W�L��g���%`�,�d��9)3�RA�f�B��#҉x��F�T����H>
�!�E�X*�
b^"˗.\�sd9���J;4@n�
K��vnͱ.{��,[��Ә�6�u�_M@�
���W`��K%m߄0bk�,TG�H"K�
�b*<��=����Y�[P��f۩��2^���(���߆5�c�6����
����g��P�!nZ_���i�ˁLT�T������Y���e�]Kī`�E�uoo�����U�6�@�:�N���Kn��� 
Qǃ0�÷�%��ԬF�X�EFjT�zo�?�����|�tD��	l��,�=ˋ}K?�%��S����9�u@��I���.j^%�u�YU��\�sI�K���.P�#��k+m���Xc��Ԩ���v5�Ǩ� ��z�����R�st������@��ܢ�����я�(i�#V�k�6��lL�����L�l�m���z���?�q�.�����12mQ�u3$��W<L�MŰF_Z�b��QV��c4b�˸�e#��p���'ɠ��Kd"[e��/��p֚���ǚJIz̸�U���4C8�2�r�^�ĝ�O-�z�����K��gfa}��f��8e��D�L�΢�:I^��-�{b��s"x���ʺR�
���f�p/E�e��VT�q
H�2�9wT7laX��:
�a�xl�qA�xYK�3�����T��l�9׸��\]G����!6:��s�b$�QWkYԩ
}x����K�_5>qWf0�:`�[�G�Bl�X�+�����Y����{��wF]���[�/�J�=2�J�%�
��bp�f���1��qdh n�enCE�@o����ʕx
�&���O�k��g¢/��dS��R���"�&	�!�bp3���\�ܿZ���~��5�C0�YԦ�%��|DCׅ�f�
��0�"�z��?J������ez�����>)��r��f`��� ]�wp����X���P��6�^�j�h�P�C��k7@Z^f����0�-��o����0i����NF�)c�)�wPͱ7��:bN3��WT�@�XJ���^A��,�
!&8�sU0����7�Z��p-�V2]b(Ꟙ��*k���[�@�\��;���D���Ⳓ���o�e��w(ͧj�U5[t�G&�{��+��	\��)B:	�=��T�tK	�U%�*�kC+u��R̖��a�
v��/]1r���	qe�*�+�v�(���ư�n%^g-���̘�̨a�c�Km�f��\�T�S���^����r��0~��R�#�2��9�ޢu,l�쯩Zߩ�v�Yea�#B�2�Vـ�tQ4�*�GR�Y�E���p�+���kG��`?�c��)��,����9�ݒ���y�|���W��E
v1�)lr{�ĩ`lcY|�g��Ӝ��!�u��q��P˽��`���(�R��J�����L*b5�6ƾM��1��jW2�B${T&��'��jў'�a�p�da��
�(ф�@6J_耴��+����\Y^�g�Na���oRƠ��8�Sv�FePu*3��P�Z�MZ��~ �+�#t���)��g�B������{��s��k9���x���#M/�k�s����\��`��h��U���F��~�}t���S��d��^����ш��-Z��4?H��Է���<�.�[��q.�˻Ş�z����^��>��eP� u�0˩�ΡS�WP�gl:}ks�����EW0���M����qq����P�E3O�q	T.�m\�|F���Z��9Q�5�[�����g-���Z�p��
��Ÿqh����wd�R�/R���Pk��e�P޳��Z��=��ũp���6ø6�Z�N�Y��	�/�z��W2�e����v�蚆e��ŗ�pL|)�i*�>�k��Q\
��c:��Ʈ:�dk�:S_�*��q;^�����(�f���%ꟗ���n
/��]K�/e�R�*����ϙSG�L� �jq�2��{�Ž�0K�TJy�b���\A���YJ�7W�,��*���@�\ړV����0^��Z�\�Q���2~&l�_��#T�3*��lʵK���:N30��+|;ni���(8%;�� ��`�\Eݑ���+���
��˳�P˦���K~X�� ��y���e薻%�ʁ��l�H���(������2�ZVbN%���+1.TIR�S�xW���(�)�,`����ܾ�.[3�SK����͒�)
�;e��.�22\ʭK[j���趏�~���
=@U�����-k��j�C�w/�%�Qn�c��n �I�Ρp#��f�^ ����K3��]�a�Kt�-�����5�(���B��wQ�dR�ך�*��q(����'2�W3�E��3K1wy}C.�kMRUsX��V��D��N���_Ffi��8��)�����ޙ�C�nT�2�[|C�z<�)�0��
��MK���V�����K��l\bnJ��Gp���\�@�%ܬM"�	��q�0�ijB�q*��J�R����X��I|J�)���V�ec��IԔ��]���2�U���1��9ne�Gҗ
����q�]@7-�F�S��
$_P��ca��Y>c�k�/�	�38�V�[3�Z�%UQ��ؼ�-tg��v��JUjz3S:;3)8�s{����kV+�:�˒�6>N�H9��R���.��73�V
��P�J�����g)GlG��(�z��ݬ\��L%y��Ƹ��ٵ�*.�C��r����:�nX��Qb�~������r��G�˳8���(�9ܫj��h�a��3D�D���UA�vnPu(�nM0�=ψ��]�Tf]K,��V�|����J_d��|��܀N�^�s�/.��s��X���Pئz��5��c��hJN�h0n�=��m�L�ÍCqG���;'[R�Z���e��^ol��?Q}��_�u-��H������ۢU�&�Ѽ���%A`w�_��pc1��?q�[�����3Ń+º/�Z���߮|���q2Uܱӊ|��ۋ�
�W��J!�kwZ>fR�����p΢��J@%YP8ܣJ9i�r���F..��Z�,lE�����0�Y���@:�	Pf�L+P�Wp(��o�a�q\y�p\Vg�����1x������F�n�J��[�q��xz�˄���ux���X̿%C��AkCeg�[����qh2������X q�`1qZ<w(����+6��,�u�9
�`��c��5���F�?=K鿘�@m��]�#�B��רl���,)4�
h��;J㙁��6�p~a�m�U}�2��!�Vx��z���WԪ�����}E�Ku�_�.te~�7�,�ϭ3���,���:���8x����5Ρ��&�Q[U��-s31�m�fmk�NL9��y�y̶�6�����űm�h��Z�5W�a��"B��1
ˑ��`+wTS�7!/�*f��#r�h�r��
!1`o��,�!�K��-���ԩU2a���Z�<ö́�QO�z�X3L��Z�$���G��[�
��R!�qQ�E�t̢b�;nq�D[��}&%�Vw�1/�L@i��-PV�K����}]��f{/�f�l���)(��`�iNEp!�q���ߨ�69�6���$�^�}LG{��m�6BSLi�xoZ��7{ �{��oN�0t�[+}E'���ǭ�@��^&P0V��e�H�a+(L)���5/�L�}����EtV���tb���,-w�%
{��:���f_�F�l�l��0צd�,�"�^	�eͺ%_��P��r��0b���E��?�eά��ʨ�����;��K�9���p��c�V���7���;�~`����*.�9��~��?S4NO�n~��|�1M�b��Q�*�6�棖[��x5=����_�%�wզ��}�m�-~�m��4ƝSQ�a�o��}���y��t���K��@q]Jp��a�K����s`��R�&=����*�BY8ep��e�Xn���>�Ǡ��O0@)��u��T���\�� \�� ������FTe�]00�
A
xx�j��IJ%�
�h_EJK�P��͛Z�+�ʨ%T�_%�O�����a�WT����,���!9��nBDq�/���x�-����o/�h��M4?,2V�q-c�;Bt�c,�_�&�_Wk�&�1��ɣ��MhƥU�<�H�8L�9m��U�v��3�`�عx�
���&�y7�+$X>�7�\�����s�V�Yl��蝬Q`S�~e��b>V�J�C�3������7"ͼ��A�B���%m+��TIZ�]�s?�������J�&i�s��#���<0��D]��pǹjp/I�&���ls��R�3��g�uT;�7ܿ>"��V�J%9a9g��l��O���0�l.;�TZ� UO�k�g�6���D������|)��T������y���\�s�`›c������ʕ+��j��_��J�@�j��Tsa���J������
A���7]���xfY�y�*؊���2Do7W��������*���+IJ	"g��qw[A����ġ�L��rھ!U&&�.���2��`Un.ԣD����r��cٿ38�o�������r�'�r?4[���Ӹ�_�[F�.u/�f^bT�q���SRŖ0
9����⢫q���>�@W0���M��c�5
-��`�9�+�E���j\Un�/�zF����=��|Ö�TB��aj����T��yz����_QaX2�R�z�g0e���r�P Pw-�S�&��%�Y�S��]K�I~r�2E#�e��B�`�t[^��O��j��G�.�aiqtԿc��vEe��rt�Z�p|��h�J?��t�)#�|����􇭤oɘ+m��6�b\���r�����A�[���s���@�K��������&�Oȃ��F�a'껴�f���uܻ�/H�d��b��-�1?�p�P
	���שS)c�k��*�P��3-�bVK����τ�ԛ�1�\�4��	^�
��9�)5
�9���Q�<*4ܺ��(��0`�\ؘ�n3Qg��jc6�!�\߹w��m��|˗������g~Bݎ�/2L\���t��t����A�QH���C�j9��Iķ������]/d�y=��!�_��Y�N�g.-��o��st_�Kb|@[~�K6w
��Q�{1fg��`m½�}=���,f9��B�^s�@KQ����W/�w=A�w`ja}7�f�����&j�=��e�d|�L:�GP*e�j<E�
���材�Y��L���+��3�r��-���V�
M�DD������ q2E1���" ���Ρ�2a_	�T<>�ήbu�X�Ŀ���t|��G�"m)7�>���N�0��3S0[(�Z���ŕ�����ޠ�?$Q_�8h?,*���y*�:C�d�{�j��o֢%^*��	Xi�}�(-?,��2�������.[��ʝ=GI�?����%e8��lj�#K[f%��γͺ��P
��0�(��po�2�etm���aXdwF�毋� �TP��*�]��Es9Қ���t�Mf�M2���4�I�%�0 %/Z�7��+�Yfb��9}Gr��R�-�[|ĭk�}��Q˄+ܪ$�}1T�cl�S��T%���Y���s7Tv̿�5w�LLK{ �8�3�1�q�k�D]ڗ�r�O̪�2�b�Lʕ*�@��%}#s	J;Vx����\��S�e����4�\���o��R��m�X������!�}�(�k3��
z�A|�ʭ'�('��ø*��XT��ܠW�j:sZ������4��D����|Ï�EȮ�Q�PɖkL���e��Xq��`WM�F�{�r!�1���L���	��a�}K�)�\�M:�J�7�CO�."ܹ��F!�����_�c���:���Pq�A�g��G.��c��5=�ϊ�Z��!��#�P�P��i=�#����TG/���‰{�_��r�����(!1AQaq������ ���0��?���x hS�p&]��b�9Q�;5��em���]{��v��)f�h��0Vl����U��p�۽�5��]�Ѫӊ�������ۆ��4^�i�\�%a�n<R�T-.�a*Y��`��%����4n;����X�G����T��þ�`\UC)tPvD��o`��+B���$�T�TP��
�{�V�+�YJ�T��]�1?��H��	����X� ��=���Ҵ0���F$�:2���?��Ȥ�Ǥ���g�B~b��K�
��QĀ�Ut��Eh�����Y_�G� ��-N���o�Ȋ���@�	w>�"��U�r���l�K0ڃ�X���w�JmE�M�@�P�;
�i��o�Z�?"-Z��l6X���JQ1� 茤e�$ k4ܻ`�����U���c��و�a#�R+tp��FY|
싰��{+�����|X�_�buX�����sMDU�v;����^GGG�hq(P׶�#�^��\"��>����P�e5���Z���x��"��c�`��*W��!���K��Gk�}��ōD4<���������"�GR��{���+��__@�݌<��T@��Y����;%E*�_��sKܹȎ�7���=m͋�1�S+�#�ٴ���b�~q9�*��|��8�!��R��e�#�(��N��(�{�Ȩ%�H�o*�?:���;�oh��U��<I�
�e6���Dž�
��~���^��o�P�1�@�G�*/�Q@������-�\�ᄹM�nb����Y/��M��K�%�-q�@$	��U
�ױ:�)�"�Xi{�ߙxb���YZ�v`ԛAdWy�Y`Ar�K��j����2 a�X+Vp�K�?H�Xp]\���k	���wG8��}�����.��O�p��O�&��fi��e�"f�����y����jlP�^1T�ZBFwcQ���*F�'��qMF�SQ�(
��5�h1�P7��]����QO��6�f\�_
NGiv��P�F,40��GZKxJ5�o�m�^��4����ȆM	���`�`U���l�Ek/X�E�]6���Y؀J6��������ŷ���e�Dӆ�SU��$
#�����I�gg�#i�F��A6/@��@"�\�����I@6�1��-3�W^M��Қ�P��j����D�n
�Iu�?��h���k��Y�"A銥�=cWۦ3,��E�X�PC:AdԠ���+��w��D�U��>�a�0�k��g���.e�}�j�D�c6�)�"��r���`񂢩3aY4��VQ�ڱ=F�*+@<�I[��T�@j���D�k%1�?��k�?�������Dg�����'�����
�j�XV��[���6��4#ahqq'Y�HʣZ�|��/���}�٢X%�Py����UJ���Q*tǔ����yb�,c�\ˎ�k��M]t݌��2vԩ�@�I�[0 6�����F��"5����V�ًp���@$(���P.ʫ ��h����T@J��EE��]~�֢q����/G�E�L�N��sb��Q��9u�ފ�;�V7Ї���Z��,�
4}Gr�6���)X�u
����N./�ǖ��9g��ȱ���լVL�I�B����Ӷ1�Y��r�鈇B��#��g$�#�g��j%ܲ��V�4�����+v�Ly���q��wb�EW���3��9X�m��
��M��yx�S�o�I[*���2�1��u)�טi6h�}�6�P@��.$��D��ym�`T)���
&�	X��=Ly�Xy;�G'u������b���4���1��"���P�\�:���
����`��U�N�f����W�{�@��	�D���Ҁ��‰�h�=��Lȸu�BkK�����Qo�
۫�b��Lj������,��W9������oȌ.U-�Ph��@6�4�E���KZ\�:��H���똈�8e��j����n?���!�Z�K�q��+V���>����hWd��!l4�Q[�����Z����=b[�����H0m-�f�%N AP �����w��@�Ǹ���� �CN��n�"_X�m_�F�8!/�&��6�nA��p�>E�WMԮ�/+�:e� S�nI�"<A*�T��6P�(	�m���#^#���/�24�*R��
m.��Z��[Ty\m�e�:�����ĸ����>�R%�����Ӑ���'�eȊ�F������vXܨ�!!�k���q#
�xcDu���}%��ِ�VK�Zu��b�X>��$�b� v�V��t�i=�SsAQ1-H����P����|.6�8�r�t^�GH�S�jA�|�9�DJǿ�H1u��?�1]�O_��t6P����f[DS����A��>�ﱫp��	S;5�IY��y�jN`�k���mb���
b���x�
�R����"�"��J�D:bܝ�-�Bx*T0,�@��2��˼8>1�-R�<�{�����rԐ�|�{��՗1���ȡpD�(t14�)�@��Z�R{H!c*<�F �+kN�����U?���jt�\�m����
��'@��_q�r�T츏�q�A
:���\�7U�^�T��4~C���"�H�)�;
b-I�]�ATȡ�?#�Cb�9+b!�A�F���1c�K�RM`�	R*�
i��DQ*�%�T�o�R�����-kV6�㏐����"��bZ3;H]J��0� �9��S���j |����z{�A`�*���q�D\�z%��E�w-g�d_y�F�Z�l庋*`�������@�)څ�Y��m�µ@]� �G�vc���gdj^��܈*�Kw�)�m�qݚ�n��!M[�I�vLn�H�b"0���X�b�
�Up�/�y��W�� D�u����(ad�$��9x\n���a.X/���A�aX����B.
|�*۫H��@�X�yU�>$��_��4 j����m�����
�'r�h�� wpН��3;^#�*� ����fZW[b�,�R�� �q�*j�
�@�� l�Q8�Gҿ���s�q��`I�����`49�2�q�N"�ź�������`!-~E���U��t�M�!�o�sW��hl�D�:A��z&ܦ]�]3�oX��YU�$R;n��Nc��P%�K��� �Ao�z��`� l)�.W|���M��Z�������
\��i˱� �q֌�9-n*6E_1~?�ȕ��Xo��]�E���G��]D\�q&.W�
/	@��g�>J��R"�$�2����N/�+�s����
,�`�B�;��E§
P�呓;��f-ֻU�׾�ht^���V�|5�)��{X��h��)/��ڇ-���|	N‘k��[����gf�y)}
���1ƚW�D��r���e�Υ_Q�
���
G���J,�I���k�;��*\�jX�e��p1���n�'7r��i������	�~�V����
/r+��������~o�ٹ/&
��\�}�rr
�)5��Fm�`�T0	T���>.<_�>bA݉v|�A�\,��Q*�P�PJ�mU_v)�>W��-'!W�m��b(S�\ZJ��-��(
�,�~:����"���WZ��z�q>��<6��}K�	�x���C����ͼJ�E�S�4��UoӸ8R�������v�U��"H��Y,"k�I>�.f�B%�������*BØ1�\m��~F�C���P���*��`Wג�Ϳ��!c���ݫ�Y(b	u����q�b�������@���(��u(�XS�W����Ȳ�C�\����a�CG|c�jQ����\S���n,����l�1P񪻦S�jM� ���E��.Ղ�����EW��,&�q�[IJ�mn�BvW\����ݧ�@��(�#0�;��0��+ɏ:W�AoUIh$4�#!�JM���
�*�?"��ʆht?�"Y
��ms1�!vd���� 3E�;�.(�w^Ե���F\���٢� 6�"�(;8�H�YjX�c���9�=fX9-8w�ag�(z:4b�NU��r���S����Fh�!�������Iq�-�c4 ,����2]�����p{�t��
����`����<J���7�����PI�6ѐ��m��v&����T�K��]��z�
�ݗ�Bҧ�$E���w�:s��ek4�c��)m&쵗�F���GJ0]���
�Ӣ��U�?!�P���w���\ٷa�5����]���YNs+*��4��G
�e��Ȋ`��!��h1.�	ϒԮ�� �{n$Wn\IS�cuT��E-�W���{���`DA����z�z{..��u.Kt��ZJ��F���X
JlJ��.��R�-��P[?�?��ݜoE�E.�iD���<R�,��Ko4���(Et�Ϧ�_�%�N�*f7�=��h���.:��ĻT�`i���^t�:�5g$(��QW�G��Y�����b��FQ`����*�hv�cX�]_gؚ5��d�]7;�m�!�����4�
���/�n���'��db��
��e�!c�����%�4����U���La*(Ec�7��v�J�^2���
��-
�AQS��{�hP�J<p�����:�h�����.W`K5�S���T/��Z*���9�L�P�)
N�
G�QeO"�����u�D({PA���O�%�=�W��MO�f���r���`ڟGk��.^D��華�S�Y�4({�U�˿���1���V"�}dy�E��$�c�̉����"������,(��17w�y^�M�Q���y�K���|��4�gI)�J���pC��0���/�qR���L	Ngv��������ەt.�_���t>���UMP��!#M�����P���|�!�K�M6A���*(EiI��b��Nܝ���,?�B�h?nd!��_���lEU7�8M����E�{@�c%+�v{�p!�/��>4�)����*~�0�z!�L�j�ą%9�9��H׳���i���1�蒎���`��w��J���S�.�Ϸ�H�6V>/14z�9��X�O��D�1T��UX�Z�TQW��T�~CF�-Ċ�"7��!Q�F�绔�#�1H�h45w��!�!��.5���v��T�ie��x�B�N�V5�[�����0'"DVb�n(=#�q��]�`6�s��Tzj=�z��%+%\��
��Q�r�
]QCw��Q�#��]�CD¦�p���E�}\~:�M��AMЛ�M�"m�!qZ�ј�E�KY2������ � �5S��a
*��o�9�	Kѯ4DWŐ���a�8콹ª�1D‹�j�-�YEZ���(�6\�"-�p�	�	br��7R��l�M�H<�mz̥��ڲ�o�Ϣ�T5�,�EVZ��Y+�G#�b�+�Yp+|T�PC{w( 鋖不dVUr!�@Bi�Ɗ@6�Xݟ�^
�8?z���o�cu�M�?�Y���%+�j��R�h�����ܥN�-R����7��JV��c*��×��W[)���p�J%2]�%�/�
Bw!b2�'�2ǜg�>����y�vu;k�	}-�_���='��P�ƀ�W�FJ1�BSk
ԟ�
�㸍{��byqb�QGZ �1��q�,ME����b��q�� �1��AB4��=��hO�1��`XT��G��(��FF��RG@{+��D���S����������
t0bk��$�H+�Pׅ��X�i4���pԬw�S�|����/#H+(�걿��*�
k������:�IJP
X3���^~�}�5��S�ҪG����6�WՇ|Au�!9eJ��;��Xm7B[��Q�P/�K��k~ "����u�j�K"R�A<!:G��^�$ 6T\%]��֝^��.�7Q#���0��yL���^�1�D%�p�|M1L�g��\[C�c3�š���9-)^�tY%{�����L�J6_�`� Qm�p&�:�\+�p����������^N��]h!x^,U"܌0�^��E��0�Z*�!�ҕи�
*Zq5	��"E�Q�.�J%ZmaI�lD/a] %շLk�H�q��
r�
\�O��*`;<���ϰJ��4���ny�8�(�p�&|���/�A���Pʃ׹x�-�ŋ��#�ב̸�R`��*�U*5��;����+�'3VJ-�|F�h�1O�<�"�S�����:�(z*%<%C��k�P9r���%=*p�Sӻ�[�w �Y€cM��e'z����B��]�R<U���P4���#"���\4Q���+�;^^�T�r���� �j87b_�^G|C��r�;.�SwT^�.Un|��j;��ΏM�aQٿ��Tx'5��8j�5��J�0�l/%_mp�"P�R�ƥX!�Ҡ�{(�l��K"c��F�<�����g���g�<�Syk�y`�k!'p��ʮ(l[��c�,VF���r��g���)J��"�C��%���+��Ōh��^n�wQ�![�#*䡊�-�,m>|%"��?!�p@ڀ������J��
�9W,�
�
ܦ�Pawq�	i.�'7���p���n����ڡH_�����/JU8.Ũk��$P&�E@۶�9"�U7*�>��!3�F�^�H0��=ak���Z�6S�N������"A0�{�aL��m�X�j?�����/�zC����d\n
�a�1]���(����nH����X7;�²��X��	=�D���p�e�р3y�J1hcCu�>��a�#ڗ(�M%��Z�:��*�VuO�D ~�)�� ��!�ە�b�����%�NB�Ps���aB�,�:��f�^�����"�.�`��>^���8l��I@v��7tøpD+��� )�zK���
{y�[#S+!Xu�Df�a�]x�e(d~�A�x��o�T.�N }z�pw:T��i�{HQk�HpK���o���'�I�MHm\��+��+Ǘ� S�Da��+ގ�6K���
�ö6����]߰��Kct@m�2��s�7��K�—�57ij[.Ƃ��_Q�;FV8���%vYv~��k��jt�=O؋�dZ�~D��F���o�51}#�U�%[��P�:'�˗q���,�ʄ�J�#,O����:K�5/���C���Y����KP�b+
f���Y�S��0)W��Ԗ,[�=N�o�P;\�-��\9�'��J���_�
���V�t������[P�{�-QQ�D�tA�,=
a�m�9�-��"Q��N��2��P�>s�i���)WQ X����І,�`^h��G/�k�OXh	��ɡ���1C����x��
]#H�+�x�-7�࿒�r��*��\ �s�T���D�*���,P>®�9o��
9 �"d�&Jӯc`loi���d���D�`�q������;j��
�0��(�c-O�7��p_B�0r�n9W"�"�*+�3��t脧��g."�:��@��g)���r�U���������Gl=����)n��s�q	^�Z]6��]���^r�n,D%]v�5���%m��/��iڇ�6��'Z�N�,�UGܲ:H
���W[��>Kk*�X+,�-O��7GAc�"1xT�`E�1��p\���U��v���z�!���T��V���V/���#�9�(�2����Fp`0��
xV�M�M=/0�j�8�A`�5��y.�OW��n�,k�w�z����t�Nu�K���%�ؘ�3`֪��k�_�#o���x`{�b"�V:n/��
���9KBsi�|�!u����4���r�,z=a��%��B��j���z#^j�?���W�z��D.�����Y'��NgdE<���{ߙ#�Eq�ø�r��UiqR�bm���ؕ�5��R:�dB����W���/lKHv��˚ZSzfr@��F���q��E����IܸǴ��j������L��!�J2���9�\U�F��������j�J����Cf���)`����]�8?׼D�M�	�4��v��+�kNI� Y@��GSAX�J�1)ŜJ�U��QU�0�����`��햃��g�4S- s�qK�k��Ԯڊ\�/��b
���/����g�=>˃<�Y#����+�<|15K"%#�sW�;g)B������M6���n9dm�X�x}�hp��P�m��#���*ߌ!Tj�L��*�.F�\,Ⴜ�[��h��Zs��!�����'N�Z�%���Wd��.h1�����x�9��j���d���R��rH����x��u.���� -Tj�-�
����%����6x`��pU��Ǹ���`�%TPZ��*9�^"G(�2����-*�x^��F2����>��TXl��k�x����r~3��_1WQu}���¯��?E,@z���+�s��5tF�[�3��,�kV�_O����}���\|%�%��(���.�"����%�r�먤EZ
���v��.C(F�
]��U.���Ȟ'��	T-m��2���p��&��̰���^08^_mFR�"�/ņ���aKy�.�9ӑ�
U˷0����h��qA�cl�
/�	[��Jzt��2��� r�����x�5���aJR_d�IS#X�z �<|B�mY��	�n�8�T��
 ��œ��"��]p N6�a�ר�V����l���hwB��Gk7��D� %J�W�4]��>�G�,�����^@XR�]��B"If��O^��[��_˘��Ȗ}	�����I@*�����>Ȁ����u?��B�C���c����5P%��hq���
�����HV��Y_�-Ä���Y+h#�:e�p�gꬁ��4��MH��ο���=�du�<�������7(��B;>\E�+
lT��]k�s�Cj���/j��ԿЋ��@@N�WT���E4*�*mJR����@�na�%CK�duV#�%Q*^��(��AIib�.2=
��]+��E��-�oC�}�/jXT8
�
Ѷ�Fu��`}ZG��[G�dZVe��Z�U�6���/n�Y�U�"R�Ƒ�B�&ͭ�8�.z�H�����e*�] 0��(�Om%�𹂮\��{��/2�*�a�*V6�w/����q���+�n�J�0�k2�/��7��{�H�fz��d�Qc;�~�>B.V[-��DtS�P�s+�x��]�
%���ect�i��[?s��w�,�l�:o9�)(?b��D�������ܺ�:=���&������)i)1j�Z����kB����-�s�I�-�^`�`�{,�J��~BV��=�<t�w��|B����aW��{\��@�CެkG�7$�>��aP�"O��#uJ�z{�bS�=��5وFY*�䢩���3�
�~,[N�*qa��C��8�Y
�ґ-�T2�+����)�����*
χ����\���5k�G�8KP���s)�����%(?�*�y‡ZO�lJW�h�4	��¡�	Ҳ�W;��
uҷ>�Z��
p�3�T��v��!�(>���q_ŀ�G��E�*� ���l�83��*��"V�k�JWE]�[�=�*������Չ��\���8�����R�>D�T�C%"�@]�x��l����\�Z�Uֿ! �BHzѶa��]�ʋc�ڇ,��Tc�N��.>�b���e��Ő���D@b�P�X-�P
S������K��9�>�h�5P_`���#�U#2���F�&x;�5e�p�B	�1�؅"s�9���o쿆�'y�EЎ��(
�B�P�A�H�<U����}%�a#pi�x�H}�����Rx8"�jp�5O5��r**H8�@Ѕ��F�y�'qӰ,�Z(��|K{]+X7��~@v�����5�
��`,g P�X����X(��7�����7�@�d�&�'X@�g��N���"��)��zF�`��O�q:����+Qm��S̿'�=w����F�e�n�a�X�U��2(�+�Wȕ�z��
ˀ�b��k�wtz����\�Oha�u�; S�X,
]�T��\��+4��Xո]�����/A)�F>,�!��RU�kTwr���z<�R�vDr˱4�ב�B�9��R�KZ]'�h8����A�9TNRndUz!m@���;�@� ��uy"F��(���tn�}D*��{C�\��e�~���!��t�1�,/I|�ӡ�o뱬VPD����Ԩu�la,��6i����)C�ؚ��㊃k-Ѹ��'������������'�,�?e,��g�9�<��f#"Һ�_�Z��E�9=ρc�6&���e�\����aM.YP�P(&��R�!t��A
Ʌqo��=� R��g1B�-s
�T-�،õ[P��3x�V����oH���ŕ�.�쿐C�\��DKm�����/R�ɭ��Z:; FQ8U8��7rل�-$^��r��Za}��&*���}e�0,�,L��t�^���b����U���R����It=�y�ͅ�="T���1�j��(�B*ي����G�S�ΆTb��>˲��W|DPv�n��:��f�+�ZV�'B(P1e$�Xz��V�,;`q!�4��D4�V���5�?�����
ޚ�B�$�[?n,j��x�d4��z�TZ�J�2>��D�Oc��6T�j-u
-�d7�����)5gDf�>Cd�J,ˢ\n��E��o�]i�ڀlse+h�M�j?��86z���X]P�Z�0���>0!T�qO�@�_�'
�ui���G+1@���4����$4�V�ꡗ�ECg����G!��
���JQ�./_��Hđ��t!Ŧ��0�T��l�7��a���U���B5,@^�*{K��ǜ$�信�U���"8?�,bѩy
�-��T�5���0sžA���Y��2Z~t�T��E9L#TV���;9'�<\�(���Zn��x�T���`��!Xl���kP?(�}KТ����������W/�4��Ä��:��7>E�rlQ�B��9�.T:p=��k6�7[��@�vFkYzx������@\�	m5�g�!.c���9;"��!/�����;p��O�C���][;�#��X����E��/L޻h/5kXP��V-�D��D잹چ�4�Dt���,R�5��UX)Di��C�,/ay�yE�T�@��b�*�'��6��d(��4���`���msS#����̤)W���c���z�*]����+8�5V��,�J��@%#F�k#g��Ρ�Ħ�M��-�B@kX*�vBVqxֲ����i�ՉpKL�"����yg**E�ew�^���Z����V�yB�3���*��4P��؝�%��G�!{w�IJ�%�e�|��x�^Mz�\mM۲7F�'@�8FӇc􉄦�O�b��l�s8)`��V�*�(�J_�_f�Vhv֕R�:K�4|�Fa�r��W�i����BRT���g��v�L$S��oN�`�[�I��_�V햢�����i
zp�g��h�dP�͸�H�t�'�{UZۯ1 Jt���m�,[8x�`�5㺆�K;�*U��w�膇x%יn ���Eut�ni��*����>F��ü�<�(?��ة�ʗ�οe8ޘ�k���H���ad�c����NNG�s�p�H<�W0T�F֒�iX<Գk������
.`M"q�����g���#gk)�
G���N˜*mOQ���"t+룒�Ҋ}�Q��eg��%���P.�Y�.��{�Nmzf3�W�%��H�� ���[��H��Դb�,=b�ѣ�X���U�QD�٣P0� ‡mԾ�����#µ-DnNz��	•���V|#6y%g>��q�+�����R�)[w/"��/�jʆ�Aq��zT���H�{��8A��;�۱����J�B�߀4��e�REb�A���A*R�%�y����U��S�8�	�B��?��W�u�Π�t�7pQh�-t�ĦPp��E+�h������P�Oؽ��!F����?��&����~�y�|b�X8�B�ҝvK5qް$Ԁ�Gv(�Ɛ� ^U�m6Pv���*Ce��-<!Ă���%�������,e����� ^�u��
�`z!w.�ĤP���� �X�!X�YU��P�?��+���ᘧ�d�h61z�4��
���<G�dN�T[�*	�2֓�T�5�~��m3e��e��/�Ah����cQX��tN��3�����.iц�=\����q�^��A��^S}!�-��V��<�Lx�+�Ѫ�F���F�p��Xj����R�e��3���~�y*�%���Go�x���J��U����cQ�PA:ү�V89N��	�&���qq����b�Ƽ��ۃR���FnP_�on����%�_e�m=������;��|=�eQA�kPQ�TYg2�qSd��B�$)?�J��ʡM��:���)m��b�R���b��GY/�Z���Wh������4C�0>MD�t��H}�[�ƫ��Kꈔ���#"h�m:U�d�>����Wu� �6�%F��M���ΰ�=��p׳M�5�@����#-�E������4#)�]�K�k�����}jG���v�Z�.
�R��j��R��Y���'�DU!� ���O�r6h���!�<�!�E�6�4)�C���<)15�Qp�ߠ!���Q�:��1iаC!Hq~�2ڒ��p6ET���#{��З�q*X��l@e��r⤕Z���L��_�ɼcú��EZ\�,K�
սFa��k�D��m�e�?�L4�:�<U��
��c=a
o�����
�.¥���	�DU��D?�\E�����}���ʖ@X8!�1��&��&�F·-)E�J�.��k8�\��Ȕ�۶�ߣ�M-�QU����>1`���ˉe�-�"�EX���	
�Z��׫��J �9x���-�
�����M6�@9N���S3��e�3�	X����R
Ɩ����gx��H�y%UtA$��N�kH�g��C��L�_�R<Ȼ���l{\[�fP�~�`�a��
�_>:r��B@‚��)=d|%�AJ�����$�X��w���C�`�$UI�՝Rv��S��`uv�#��Jjw��G��)`8"��
�<��,�8��&v'��m�$dpEDi	
О6�a��h7�#Fڪ^����Y���ƎT�
J�t���/��o".�\�¶�
mV�1U�W�a#-�DW�a>Ab���{�b��V�yc�n?r�5��a��!K"��QH��cP��<]��[̰�u���X] ;'<�Wp�\�2o��刢����mˏ%��`%�� )�Sod�>0S_�}�Z@��
���D:���n̮��F�t�������Ī_�@������zHY*�
F"�pZ����l����C�#}��h���@��`A~��J���"_LZC�^Ġ�U� �4Һ�\Uޱ~�u.*�X-���.1Ek�'���z;��M]���ZJ�b��
9R�H8Ҽ��Pc_����>B�HSa�J�@�Hj�^/pC�p��AL���0W�W�|�����Dj&�u��@Ut���/Uc}qA��5c�-��4�7�������
����d����5^PzN䂀�X��	���i�TP�u:��◁�i�Iyr�H���p([��?��yAl�]A������,[\毗ߦ0P����_v3G��|!�ο�7��㒠|���5V�i���@IMa@�}2��Z[p�b�=�h�}�tk�NX��9�gkJ�Pܨp<�%/3���uV��[R�m=����G�%���y'3o���t�$�S�_"PJ;�D��i��>.D�<*���0<-,>��q�i�cLu\	��vھ�؇�a<�����Z�8�e�	OLOh!��ؖ�]3��Hrq -J� ,��zX��j�F=�=��`��-F���F�0mCms-%i�r�H�l��C�'�&',W^���
N��Z��/6�{�,�W���K�(����_����i�Z�(��ڗe�W�a*�?�&��m�%$�Zx%�2�&�f�Z�F���<�e�~F����b<p:���u����}���ˈ�]>�J(Z!�:���]��rڎ{��B�?�~��$�
���7͜�x��D���߶@X�I���ʕD`l;�Abl$���Yb[�<�~DZ��0�((��
w�x�C1�x�C[h�Nb���h�Z��"D%�0����X���e��Q�U�L�[��X�ƞ����y��F|/D-�k��j�͍��#+���Q>P�=�+O(��"a��>�7� �
((���~�ƕ76 �:)�H<���|�N"��]�B���ϐ�z�wO�ad�L�q�D�b=1-�H������ 5kG�X��0�cE��-���
�[��bcߙB�]	c�B��(`E0���u/Gۅ_@Ge�X2��S�TT��wB�1qT���.Ub��:��U�R,�F14��ͪy�����J���E�آٸ����!X��?a�	nj����B��B�b�Y�si��M۵�PC���PXd#�"�X#���Ҵp�	�8��U��b )\�\V��)���"�ee��%h�
WYp(P��gJ��>G�s+�"��p������[��#�j�F	.U63��e�aeT��96�s�	l�S0��ǣ_��[�hƌӈ�%hjŗVJ�D&����E�qC�a��J�c���9B��Ԣ�����+�%]���YH�^�W/��j�mjj�+PH�?e>�_���Z�xkQ��n�;Xk�v����p[����Ր��L�
N0����=�/>)�^yf��~�������K�/�*��y��^4�����^�I*�I��Z�L�"�l8�����+k�L���q�ևK�G\�ŜD��sDi��(����KR�*��\�6�ɕ�Ǩ�!�Y���PQ\2��jX���1Kz����hbB_ي�uD]e�Y��?���d@��k��C4�dՂ�1��X&��x*�������"KAL��-�
���#JVYy���9ll^鄯h]9����A���QkB�W�
(��U�3�3�AW�7�P���/��3,�.�;������YAMC����U��'����O,f�}~pE\��WQ ]k�HI�+��6�˸���J������Ms�xŌj��\�1ssu��U�`���feV��A���d�P�	|=���KC�|��G���1k��������{�(!P-��@52�h�2uj����P��p'8:Gsh�~�FV�h*P[`ځ����/l%�7�k��凞�p

�;�.j|��ԡ������H��Mm���U2���z��ee�����*���PTc�	P�0�HTe_+� �SG�j�$R�ey�K/�uF����:<հ|)��Pa���vP�x� �������d=e�)s�	�1�`�B���=&K��y,q[.%����~2�z�~�q�XSx%-r�= 0�M�`ۖ��8��P��e4H���@
WdWQݹ��6-���+�7QI�+��MYjg9�y��^�E�ebEZ[��wyH��+�%��狉�0aT-h��e<�,�0(�z�p%7�Z*�Ʃ��v�Vt�`B��B����H���{���%4�������8��)]�Z�<��\z��KO�9�o�X4U����_bJAR���0�⸊F�vJ!:!̙UT0ֽ�z�A��e���z�-f�zʁ�
"�;����2���M�nJ�߁�J4`Ql�����+�˫�k,(����c^1�f�ȅ�i��Q�:��r>�S�������9�BY�>�}��J�@����?�{��P�T�����ر1߶�FO�<&�ځ�^�0��s>�-�:�k�c0�_���Z��J�jN�Ҽ�%�\	Q%JB�
�<�J�#��rf$5*)���a�it2��h�Y�YZ��|"P��b6���R�}��&wϤ	#c�J�i��[N��
���Up���>�K?H�m�1���-�j����mIFm.GIZ�̔H]s-#��n�]�
��q��u�,���{�Jw�"U\^�zX�M\ZE��rD_�r.,���"��EF��]7��*�%3��,T��i4��r�NԵ����V����(�t�ewqi潼��E>|��$JX����f������b�3yV;.Y����*u�,���Q+�V�s��NJ��n�����J7�eB0�DL��GF���O7�rrbh�kj6ؠy��#��U��Ha�rR�Q�vBh�#�����똔F���ԁ���6����9}_U6��D�3��Qȭ_��c�4��wS����)۴�2$
�0��@R1J״)|���*��M�Y��X=�n"��n!���q�6���.���F��C@�S����-�_��ݵ{�G����q䶿��>�6Bims�t���w�/p
��-[-4��>���O���y�`���B2�
��+F%1C��r�)���} K�6(�d��`p��,iMm]�A�/��Y�䆬�*�ܢ���1�a�gQ�o��KE�R���1n8v!�|	)i�Ue�
'u�Kc�/Wj���x��w����CCu߳��')�ѱ���k���P�j�͗�vQ�(]m�j�T2ҩHtw�sH�W�q�r���
&�β�X��`q�:�o�bG��C��K���t��K"%y��}̏H�\�����?D7[�I��`�.�|vYÚ+#(�us��)��R�
,/jч�����1�u���|#h4���J�9��q��+��07*�Q!}ь�v�g$�	�j���@zp�*CѐQ6���V�Mn-}�M�"��52ۭ�q�N6A�9Tr
����j�[ݠ�Y��_�gκ��W�x<"ե���+ê�-�ٹܼ��20���2�Ӎ���E&��iԋ�Kt�7,¸�(�E�ajD�
^0�tBשy�(9�2��e�]0�Py��%��4ƯT�=�����mj�棶�R\cO��#|��)F�n�aM�U���6*	߰@�������E|�d?���Y+<�}�-�.����W��G`��"4���}{����7X ��4Ay��@e�.-pFY}��ЫN�M���i�r�Z��"���A�U[��I��%���H�T�[.>��(��=�*'���W�ش�l�F����9ƥ@4`K���A��V|����@�v���ϑ��-cAC��Dޫ��+���F���NJ
E����:f�@Z�;c�Ʃ����H0e�d�g�!+��	��GZ� �
u��T�_�H�j�6J�dF��\�w�ņ��)�������^`c@��3�����g��S��"��~����/ɥ���ߞC&�
��T�Z����[�d�YA�NԎ�b��Q.f@!�g9���_#�W��[�Z8��"�
�>�t�)d���Q)~�%|�Cc#�,y�1��%7�pC�H�^�h��Nchc�O��%��M^�;̹eZ�ޣL7E5���n}.c�6F�,̠�C��G6'�'ʥ���t�� �@��;���_����)�2KV�~�W�V�pX�
��T�V>o�
�F@W�M�7��hH�0H�߼�ԪmQ�2�Z��}v�����\��9�T���a�b�Ħ��no��#AB=����}1���M��Њ��0�X�JE�ߐ늏��tX�^_b�pĦ�D5Ü�%,0z�ۓ� U�&<)BX�Q��E�\CROE�.\��p�X�US�x������MG�,s�v�^9�!K=�0H�%Uk���í�6��9��Z�w�+QȨ>Y��3D�XL�u��n"���P�?.�	�s#�ڌ��ܮ�B��h�͂T�$5�,_���&���t;V0s����lwo�uԭ*_F���W�����Mwu�`G��e.\�쇱:	�ޗ��_���l�Of)��ܨG5K�T�a�U����*��;�8%��	��a+���l��~\E�$7�M�qKH��Cn^�t�\K�T����JB����䰝�cqT�at̄Ł�殞b�M���݂����w��U�hM^�]D�P�N�+���
�̥���1m�"�QM��o.`(��kB��� *�}�	�{b���Uϱ���#
2���<�_�ʍ�$�	�d�"���	)�pB��g���O���_%��-�Ȝ>ĈÏ�USu�(�*��@O�ͷ�U6�`��|�CghG��Ѹ�4P���G���M�8(������UV��r,���x�	�V7G���{�.A����A�C�	��^��>a��/���jI='�����G�*��	FBbEh�b��z�
�1��pM��#!Wָ%�X3�(U��:Ey{�O�eX�ו-@��d:����&�'���"bw����@�Q�-��Ļ{aDx� (<��Wx�)���
5���:��%�!{ϒ����
�$S�0NDa;����DT6H�`�*�-�:�����éyU�5V���!�ؕHq%7%J�����"Px	l08!~0�_��#�쨐��س��K��Uگ#2�R�!����UbOE�:�vY�o5-��aJ.��Yr����'�4)�����	a��!��d/�g�r�u���Vݸ�[��?��;98H�la*��
���ta0�tC�o�%��	��E(�JjйK��q/K��a&ԩ�IH<V��K���X}XCk����#+w0a����'׳C��8�$?TQ���x��qUX���y?����S����;�fl� �t�hDbWJz�����yQ�r>l�A-�aT�.�A��Z����8@(ɀXQ)�,u8���X��"[@K�P!�c� ���n��f4"�0koL�D��/���pZ=(�AD����H�6�|�O��D,�����fW5*,e/��B�J'g���]2�ؑ����%�cI���GQ`6�j)N=͖��7> Z��Q�abT�U�\%����pz�������8�LV�T*į�TJ����1$�-^�olf��
�Lu.;�]K���
j(
��m�Дr�4l=*�U�����-m�2�Cax�Q٥�6<��)�8i	���F���#��dj�ye�F��I�
^@��t�̡�Ջ
ʌ~�ע��rͭ���U������V�fؽ̙�)�GZ�dn�oȞ>F���b�AT ����l���33�(Em[�Fxww��K`B<�JM%�qQ�>\]�� !p��3�M��Eض]�BO*���>�x�)�g��V����K���ƥD:��<��Y�x�)T����
�C�c�%]���"\���a
���}Oe~�ꀻV�,�c�
�gA�F���D�<.��%��'�a'�1c��e��Ao$E4��(��}a6V�p��_�sK�W
F�X3���x$��I��w�f�5װ�8;��a����F�b���6\��Vӌ}bK����CxP��r��k��ĺ-|��ʐ�W��
y ?��Sؽ����-�s����$h�@7��_�1�c�0	�ep��[�ܾ\�n��[�"^�z�'���{���&v�#+�^Ae���#�����|

���g�0
� T�S�nHԉ�|T0�+tL�S�k�}��gP ��:N��ۅt�?hPn�������T��.��ٞ.�Ap[83N��y��1����f���T�0Z�с�K�����k��븸�7���6�^UŸs9��b,uQQD�a2\O��4��8ܠ����i�ta�G��f�t�1�Y^�乩���KT�{�NDՃ�ER��t0p��`񛟵0��Q{H��Q�آ�:�"��܋���#��~�BYQ�.=�\��)��Er7e,:2�Z�E��pp�,�^{�V(*�q�E
|��L���QdGO�ܱ#�P�xj"�d[�����@���
Lj������Hߥ�d(�qZ�d�\9�2x�f�q*�1vc�;J���Q�.0RK���\7�ZBKYӱ���˨��x������5�)���c56�YER���T�`��7�}�gV���nGR� �3�{
��pA֘8���YO�3����#Ky�	g�CE�r�F�*��'t�\��O�0�0`�J����(М���"X�leu	��2����s�#+d�+����m��`�k��MF�l�*+/��;�QrWQ	���Ù]�~g�//)���p4:�d%�#��*ˆǵT�*.ǧr����c

Z�vB2�n����KUU�b�\���dF��Xg��Z�P��Hs�v��C���y!pY`uRAY�YA�p!h�y$����I�c�@���|��f]A��6�ȰX��נ�s�K�1F��r��v�/x4���Ak,�����	��W�K�\#`DT)vz��#�^�fx�㞯@���8�ZR�ib����7�1�ng�e�_�q^Iz,��E��.?���1#���\�]
�;
-U�jZ��`���2�c
��Iȗ7�G"۞f"Y�ۈ4j-��K�HI�<-���[T�X�5
�B�D�W��V�"��^��f��>ϐ�����M�z�W�
�B���$�P�
�r��۹0w�� d6�'đ�(`�?��ԬY��q\CLiW^b1�Q[�v�Lq/ C#z��b��#�@���C��nj�5qQs��>/��!t�	X��
H��cݰ;pLX��b��@=:���jW�"~qN�Qj��<f��KHΙ��̺0e?�G�cmZ��bv�����p1/%����h��]F�]�6�
�!�U�1��U�Y�����
z֩�+.����r�T2n�­�%0�AOf�M�
ǛA!p_%%��
�	�옽�x�?�xTJ ������ZZg��d�N�sv���E��.cJ�,*���XW���;Չ�]%n��m�"A���%mlH2�$M���[o}���D����uQ��G�M[�&�D��')R���f@��ih�Op�n(�ZËM]Ǖi.}�k�xGUP(�CYn�*�!��Eu�C?��:�8��&T�ܞ�L{(��iX��	ܟr��^m��X��Я���Do�����B�t�Ǜ�]�[NC����^F�ϖ�dEE�)��[�m��%2�Ej��qҞ����y�7*2]EĤLN���\,��!UI��{H*}|���`�S	P�\��o�"ꟺތ!;Y�8-Ϫ�Xß���q����F�5�Ӹ��c���®8
�@�+��ɂ-\�8B�5��0�0~��O=�ˊ8KTk�U��6/�8#E��)G�Q�}&�n�b�#(���H�ℾ#����p�A�p1n����?Yi�A}㫂s����s]Y
G� p+�߄Z�G�հ�yF�b4�ۖ´ta�k��8^�Ŕm�t�R.�+�C���>A� ��D'�����N��Cط�{��i�X��1��X��9��r�V���OAj�98t��ў�
�����<aU@�ı��\�!榾,��
�V���j+�(<xg3R�����6I��6��R\����e⾱�`�H;#���e$��J�PS�Y��W���pl��.��ha�R����r&�y���?�n�V�A~u�ʃ#U1+��^c�"Ƅ���:u�hm�em��_DYN��u���H�O��Nuq]
��W��-?"�z����Br2@�7t�3*�O(\g�K
��K�8�%�����Z����'0���*�q���`�n+p�K���P
����wqz^D��s�4i�ȍe��7�J�R��,�%�\��/C�O���v<��)��4r�S�z�m�0�('����-6C53Sj
>�2�wNIN�y��}���^��C	�\ E���++��	����[P#�ߕ
��cK�$���(����z��-X��غ�+�k�_�ױ���8UQ�X�tC� ͧ�u�gn�Gfﻩk��'n��|�	�}.����%ĬF���������B�8#$��}��!#�#ut�/f܀i2��XO�0T@B��?���[ 'K���)U�j����0ͼ����«c�E��D]�������o�&�SgR�'�\aA�@
V��r�U.}��,U��	H&�c�+���cU�<6���	�`�������X����a�)���{5~F,lb����s,��f o �aW��Z<��0x)��Ն����
��D[c��k��/�%J�-�@��!\tkLJ�~G�z���b�
����/��e�R@�+�du�Wp��UT�(�g1�7�Էz��`G�g��~�J�A�)�����GثK�q$[T���gI��X<@+!~��������=U��B�!go�����Ji��c��m8����mSi��p"-�t�D���*6�,z���y��Ӻ���Y�~
��`�w�P��|: h\T!�&�Sm�ԗ��4��ZPS�0�n�p��+Wu�Ơ�)��IL�M�(|��cQ�%O^��B%A$��$}�"�H�pS�!Щ�OW+ᒎ_1�1n{P����@Y��@b@�@�����+�rUy����uM���D�r�"E.���[�eQmj��{��slh��4Nb��e��Ņs#�V�9�ҝ�^2�1N�`�iA�aq�Z�Σw��߲�Z��b����E�Dc�x��d��"���x.�BWv�(�X�Rj�o�0�%SE}]cuT�c��ס�v*0�]�+A7�"�.�!dB���-D%�cejyU���yb8��'o���#:��@���ǂ�p~�(���"�A��18���	��~�+�'<��y����0�"�Gx�l^��D Ae�y�+*9�%Vρ�T��|E���6]���B�;�?.7ii�
*=�dR�����A�5m/�H��!X2�ՁX]��?)�5����Y$
f��w�@�6���U���J�۩�C�L!D�_!�Q�zx��5�s؀J�Fn��Q@r���/���Q�]ܷ�����n����������	�`7�L�CjR��5��Bd}�[zF�0��0�^]�6M1��aX��U�!�b�gA��/�� P;��皗�o�=‚gB��ax�zz�\�>C�Qt6��PU����o��R��x�����H�2�&��i�����n�#��ԫ;,��5
]����!�{+ϔ%t�$�Pj��Z&��r5��8�[UU�ك��
�J�~A+Z�DeW�8jL���(���H6p�A���m�"X>@B�[����CH$MQ���hPtM�œ��GH`rܗ� �F����ml�-��/`���}��~�wBz�Do��iA+��T���9��#��maK-��e���e�ex�"�C���/��큧gm.���~�D{P� L@3�/-]��
Ѵ�?��n��S��Z�����%7�T�����l_V�++?����m����_h!.���dS8�%���8��n�ֈ�U�k���Sr/�@5�>��n�
a��~� V������vT��w�ZF�%�.��	BT����C�b���!e05T�`�nF�w
 (LH|���]�L�3�wt�9�iL^փ_����������z8E��7v�kDQ^op��EU�f<�R������4DB�Hap��F1���x̌� ��q	2���b����T�Z��9�5@B�h���7��_�X�i�6�_�R��Xn���>7(���eO�Q+k!��9� �8|�b�+R����ᖒ�-9}\(�qPC�ȩ-��Qx��Cw���:�jw�:��R�\��Ҋ���k��
�='T�d��ȥ���\�jhy1JJ��V�F�:֡�A(�`<H�ݨi�T��?S�_~#5N(��X���TY@�u_�D��={cG����ᕪn2ܧ��.5�G?�֯�Է��eIm�
�ସ������!Wu�#Ԯ����
y�<<��+:�*r;W�t�w�`.'�>D�z���ͼoqd�-�]���3���� �
�pe<O�eRP������0
��� `�Be�<P;���Χ#'\�+*a-��SΧ}C�%ď
���D8��ڔ�/���R��9�Zp��
bp釔I�X�Ɓ����.���ʠU���W�i����<����#���Q*�{�ũ�R�3Ho�?�s.i�Q��8jӔ�4��*��Fďk��(&>��,�Ka�@HXJD�M&����о�,�u�@�����~Eh�����9c������Z�?�^��@������W��5����qR��n�;wG.���s
��oJ8��xE�!���W�N4�ә��gX	^�hAVu�c�y*��g1D��zfm	M`��C��)j��
�xw	�E���u%�aҸ&K�ȧ�߸�.�=V{�R�C��*���I��9�r#�c�a�s��������#��[ܫ�LA77¼�$9}O�d ^��f�s*���.�H�ZQ����d#T�!.����G��ă�[�F��X�^��[͸�Uk������z�\�?hLP��K�rYC@���II0�=����	PQ�IWn�Q��|�9p�U�7%�fr�1�+AicYȿʊ"�`�5/DG�S�R!���1��v���=R'�P�*PDȒKk�J��՗W�D���&���c�ۡ�7Ik��_ai������
���*ðK"n�H��f�X���C�κ1���&:�i�Gb��Iɠ�?d"2�Zb�Pa�^[��eQ/��+[w�劉��>Kk��!�NJ�o�"��_�"���{�����@����l�S�G����E<a�@�B��P����q����7��	�
&�Q�ݜ��Ņ�ِ�c��C5�r��_1
�K�B�_���X�f�F=����?�:!n��g;���2���պ�l��!G��!�}���a����f�*>M��/���������
],�}���1�;$QF
ҾnX�P�����<��%W�Rd>aΟX�5�I��:�ݔ��(��	�(�"�:���,�n�a�o��4���Ʒ�U|���5齅�ӞUq�M��ꭕ:�
D���h@#�'�j�3�<�d/����!�����C�`�KD�Yn1( ��A���s<D�%E�����܃��3����`�7*>�B6���ඎ(~�{B��{�����l���S-�������q�W�g��x\�r׈�3VݼrlA�+�H˗p��@����R�?�Ų�tZx\���pD������r䊋w��@/W�>YF������dS�㈜�o����B�4?�G=q���5�}˳ �ej9�W�7o�����F4�no���l\Gwd�m#��6'$7,Ґ���ڈY�݄��5�|"����W�:8[Lų��<c��$��n��	�"Q GD�_¥
iԤ���-�jf�������i���q���U��lF���|S�r0�XI�ֈC}��D��ީpJ �so���.۔HuY6�w�8Q_�0b綝������SR���ɧ�e��}���R�K�N[&�E��;��|� ����hm�&��y%�!K@�⡥y8��UIJ��B[@�bu��y���b)��A�Td�A6eM�{��n~Î��Դ��&�Ry�0�qm�`�3j傮9J�db�ԃ��G�D)�� ���,�^9Ii��`�E���	F���=�֡:�Q(��&�
JT_
a�/��*��$�V���)��
A�~���^;SɃ؅P�5SjF�>�����
BXY���{M�CW(h�ȩ]���jd�غW7V0.KwiQ�{3j��=#� Vs�P��P��)A���3N�.�`��+R�1�P*�{�˺��8mB��SN�Wf�!E����
R�쥖k����v�N���8SES`�-˗ۂl:�{�2�]Y���{�Q��r�ӧ-�p�((�Ea�G
n��*_����=�&iog0��#5���J��8��&����x�(�K�%�A��s�bR̘���K�'��4�"#t)l��"�H������GˆU�
����j�P�R��Eg�z��v�
�|3��LQ�®(���4A�Pd�b����W�qY����b[`�W�e����~���s��ۇK�f?�2%���	M�(iB�E�\���lU�$bC�����DYSٴB�V�C�<�C��ոa�Y��&���fK�W#���lF�W�*�Ȑ�k+B�� ��_�s�v����Ք�~n��)TǸm��|�j�W��.��=m+G�����(��+��
�c�����T.\!��F��%@�˄��X��| [�56e���;|�r�yb;x���n(�k�ɟUXx�e���0��^
JTW$m����s��� �(�#N����'_�TC���H0	Z�b��n���wR��m���5^\��X3Da�B9#�*�!0���aq���'~hNj�-If~���Z�3�	�,��aB���i�!�|�xv��K")V����i�#د�����Og*�9�@��n���� ���9D_<ő�%�F�1�W*<�b���G��е%˻���>��Ma7����Ǽ����5�U:�b#J�[u�>��[ޘ�>KT�E7�Ռ��x�jHtXҟ��Ҏ�Y^F4�²B����T&���Ŋ�@����T~E<�(57�5. �Z�t*��#r���v`��,��nBӚ��ߍ+S�:qq�
�a�
O�)��3p���������6�*���T�0��OD�J@�1 �Y��օฤ[��၁I��:���(�ݔ��8=��H.�g�-R���uJ�I��a�U \�W�e�m�ȶ�ؽU�l��!���wF��T#��ÂD'�+,���S�i�w*�3J�]�%���)B+O�;\�()�/X�,��`J�
yk.�ϗq�tF:m+���P��8�i�%�d+`?��4}�W���X�z�=%�dZ�D�K�DeH�ecx0厳"�Br���|�du�;���:�����o�2�C�36�#�B Ҡ,����AN꼆8���j�J���J*0�V\hLjz�x"#DU�I�5B���Q�?1W+<��š�˂���<��.�.*NU�������W=b+�7��7��-P�dEWN3�Q\���K����e��ɼE�&HcS�q��LT�yXF�Z�%�m#:˭��-7z�	m*�DX�.ߗ���d�wjI6��xZ�z����4�t����'�A
�Q��a�ցEf>�y�}f�-聋�C�+ZX�c���5��c���L�Y��0bd���8A�V�ԹyGe�!I�����־>0�hW��Q'R��t���zc�ٕ�Ĉ	{�H���3��F�b�ʶ�+�A�.	"P>@����>2�F�QX{a3�GPF˯���}�'(���b|),/��Jը�D$�B����1^б�*���>�����s�++���Yij���$l�F��tn��(��*�:�9?���)�3��D��Ũs�_?���5P�-�a09��#.wO�R��l$7�hھ[,��$y�k����b���������0�:�)�J����/�)��l*ȗ+��@��' h.
�X��NC��0����j��$	�Ȏ�
�9K�찷�v;u��@qX����,�@0�������h)H�Mk��S�%��s�.��&�R�G��Dj�tG�^2e`8^����ث<4�M�m9��M-�CW@{ҽe�X0��AXi��*P&�||�
U4 .ͦ��|�Z��z����3�;��֋�ڕP֮�|�%~�V
�ȕؼ�#�_׈
��TA���h��8�7#��z��S�ȝۖ<B�
�|�b�v+G��*{e�]B�c4҃
�ly �%ȗP�ɦ�*o;�r��@iЦ%���=g���	J9[���W��L��.��eyai� 8È�j�#n��)�E�
�%'�/�/�G����D�����g��M���JK��f��4�E�Ms��{0��}��ŋ��<�R6Ժ���u��-���p�j@�G��"����<��ՂH����T���
hW����[�����C�\��0���)�^?��xC��~�qӫM�9�g��j�xG�5i����/O�%��r�)Z1(�Nl����
�kb�]g.F�fڂ
�+��.~�>��?T�L��g�Ⱦ�65P�U�LZ�D[�ů�����˗P/.��_&��a^�K�ػ�7s?������<���璘�UYE�a;Uίcr���`�
㶷��+?a�6�#q���QJX,������W|!ꎅ���c��Y
�����v�m�Q�n�F�"]<�E˫Wc�(NO����ly�ң�_���A%c���F���(�ك�����]�g:���� ��Hs^�+]�Ȋ㊊��?ac��,‡m��"�Xm�ݓX�!X֙����z&����	����y-��l���F��@���m.���GG��</k�B`�t��෱��D�`s(�)��
��J�>��
)6�����]5���z<�	�z���{�ÿ`�p�nc��M��/U	sTעu4�Q}�nm���QX֭^�%(��q
��OR@-�=�5wx(�i}�Ó�/ז���u�<���X�W�u�W���IuQٴ��ϑ��<ߺAb� q���|�a�c-��_^�ZZX�xP	x��/��66*�,�4�z�[�c�e�m��mpF-t�����G*#��"0�H_��f
�*�W�h�`T6�!�Y�`��
虞���Y_4(����G���[k�
��D�\k�՚�b���W�>��r�C�6�@�_��_{�"�h�F��q%-��NG/aUKj�Pׂ�[��N��I��z�W��k/�O�JQk4��Y����RյY�U�C:OU��k���Z�D����֞�)�F�J��]v��x.2���+��0qX�Fѷn�I
bQ�B�e��<�.��*�+��ȱ�(�/�nt��=�;@fD����e-p��/�����5q�9��A ���f�J�n�'����@���Ư�#lsD�U>Tz���FP	p3*�t�)�������7B��6���F���YQ栿���m�1���e�p�|�^Ҿӈ5�ˡ�Wyuu�c���h~z�ދ#]X��O���%����
M���"�r�_��iGG׏��K���L"��V�
�_�����0�ɗ�.�8J�$t�������k����4ʵW�)Vېm'�CR��3�z�M�ӵ��_^�~��']FB�#K�g��xK�lK���n�����K�����*�@4�'$�r���ce��Ek�#s���B��n���i1
�x����g�K���C���u��-2�J� V�'`bǕ��K	�j���-���=G�VZ�x��B��J~���K�c��4����O�Az���Q>8=>���vm�B���5 ��oK`F��莌i��GRռ` �sa� ��h蠬ci�J/�p՘���Y���!���J��KF�Q�_�WZ{�{����`o��т��I�@劃��b0	���J�[)�Tcĸ�-���J&��GqүJ��N�E��UZT����@�,�{XA]4ɩ]�:���X�VWl!@���7-�U�p�2�uR���vE���:HI�x%�6a?y|��n�	iH�������!S��@�s�F���gC�W���IE���$2�m5%�U�	���Y�x�*�=*a���s�	�@��X�0�����3��s�tE�T14�PzȮ�1���Z�lX���2sÑW���
�lX,ʈ.�@�H�h�JB��IoKܨC���5Š�Gc��0I������Bc�Z�������R�����]p����������g z�ً�Z��G�0��H�%�hq�Q�$����*<����~���K@0#D�*�)�
��O�
s���d�
�
����C�����%<��C5B�בP%8�`��f1S�kwb) V���!_����iɳc���#��\G�y�~Q�A�`6�3��V:+�P�c`-�HLFC�ȼ����+s����w�`��Q�4?�C�*c9����qU%�IO�d�ѡ嫋t�9���%,���ť�
�*
@H����iZ��¤K�����#�9|�z_�y��\�bmO\,�)(�"����r���6ġk������qQ*��@!D��P��t��K�D����wX1�<�R��8�P�L���QJ������=!pS�9+���#�~�
6��� �����Ck����h0��l�	g�$��K�=�׸;�O�v���Ah�Z�"m�Ut�+/�N��2{�C�(�e%Z�A	br�S���G\{���}�݂Qk(pIJ�Ը��1���cJ��⥘Us
��U��~����PԱ�`�h�c��/����(9����[ic_�9l�wi��o�����z��_���=/��5_K���@�3S��l���G6zH	c��e�b�kpi���(֣+�ڑS��p��CI*�zՊ������_�����
��2��s����;"N���_*ڑ}�A�v��}���S�x�d�q���[�F(�^kSg�`S{��B#��b��s���d'qStB�P.�����+�����Y(r��B���~TTZϮ��HGEt��Wpk{cCJ�s�-/X��:�\Z^.��fnRp@��%��j"��$�NUVZ�?��KjA�'���WޣP�@�3I����U�"�}��1�������>j�T���q�A���!�s���jR�Q1��وI�Q#��X󿎣crph�v8�r5h>�fd2�A�ΗQğ���H���#R�x�ʖ�g+���j>��.�|�ʺ��N����/�񈷤~s�[lM���DRR�1̏�;(�����-Aj��u��֯����#��\g
���4��7����񛆯�~_�-��Ђ��v��:5�߮�s�>��+�A��JS�T�P�M�{�%ը�VYQn��AE[�DT�z..p��%��`�����l�Ԍʬ���a��Fs�2��,la�����Q��(���
m��0��ত�i�P�ȻԠ��,��<+�J;���ZE���>�X�0�j���e�3c��N˨���ȥ�x��-X;���)]���Q�S
�<e���[+�����sM���
���*��4�<�WwΠ��ޥNW�e+C���u�Hsm���Z+C��]�x��o��!������ɶ�rW��:G��	�/hP���Y���<���(K
z�UQI�7���Ӏ՗Gd���V�W��փ��
��2;�o��UU����_��_��}@>J0�o"�g�GJJf��[�p�>�W9`��p�P���uS�	�ʡ�{j,�W���{���+Ѿ�e�̹m��B���
��8�g���
��U�qW���V�@�w�hD�ݰE�����r�	Zٝ:aqQ[��ն�$��H
���!6����Ә4�~�=;���Z�VV'�)���B������g�D	MTfw�M�����SӤ���#��`xo�/�ju�,�~ �����
: 2�PMS�_��%Z_�	�s�V F��Q�}�,CQJ�x����bA^�s�)RE�2:��c�����$��Y�Q�c�?���?
���9{��4�H�Ķ9r�ϊW����8�&NR�(��T@��5T��R"�#�;��aG*���G:ae�uJ@(Eif��˄1~�<Я�ԺM\GM(���Ȧ2���*+x���h�V����Ջh<�Ӗ9a8�c7�Av��{xn'b~uM��,*W!q��.���[DY�C��E�*�R�����Q����R^8%��Q��K�c�#}q�D.c��ra���Ό��Bi��a�N��_|R�C&8� ==b�2�P)a�e뜔�oq@�\�����pA�b��kolgqV��EӸ#(�ʃ�2bV�����X�����7O�(d���V�ވ�	��Q���Y�m��-���:\�`#�^p,x|	�E��mf9(�mPnx����X^-��F�P�l��X���M�O�q�AA�*�N�o��c� ��`�>�
DQi��b-���x�ڃ��BӇ�F�)��9e���u�b�W�)KO��T��3�ᇒ�a*Ь��l]5i��.����)��%��e�7�Q�XY�P}@i~�z�ЅO؅Rڮ���dj�J��k�� �7����V�ȏA���o��0	bY�%/h6����o�Z�G��E�a5��	�����Hm��]���pu,p�e_/�(|�͑7�Զ7�^	m��(R��ڸ;J
�~A)M�Seʀ����i�ev՗Qa���ׁ���oh�1��r�U?ш
���.(��A Y��e�Z��J`�����a�Ƒ�)3a�Me��G
����5�$m*���"�ϵ�9
ρw�X�4���O~�1]+ ��/�k�C�2�oX�ٗ ���#�G;�tB�Y"�%��a�1·fo�t�R��	�q�<*r����à�hK�㘫�='Z\� fϦ9a}�����>"�p��#�$0_����p�6�/A�ݱ�l
,cȵ�Yt1�G݉	P�MK��q��X���(�l@��}~�6��P]t�Ĉ�A�"k��}�U���Q}�[o�_�8~0�w0����*�P-/�p��
�d	|�hj���[ڽ��a�@�h����޶�դT�9��r{P�__��m���Y�U�3��텹1v��Z�׵��M]>��Dn��>p�6�G�Z[h�{.c��4��sZƒ���X�PB;�����P��1j�����N��*�"��Z�u^n$���P��;��Pa�ŜD�*xOY�uO>�2
@��NS�f]�v�]
�Iҩ`��"��J%��x�2�.�^���QOH�r&kv��̅�Ώ��	����@��;݊�����/'�,:�~�����+��e(w�$SN�*fp���r[W0\��@P ���Yl�f֡Ł8��(H�'�A��'�o�;B�#��.+��	���#�6v��N�ˡ���_�@nߔ�""����ߵ�o���q�z��T���J�s��#���e��TJ"����bn�!as��\�ܦ�QC�
et
�<���Q���F����>�6�/+F��b�j���j�cS�� ���!#��%�w��GD`���G���ӝAU�#��#����8�0��/	=]��0����V�_�����V�HYeV��AxX�vO�H�X˾�k�-E��p���2�$.9�m��~A	��t���J�j�~�=�?&q����S3"�\!�G���!Lz�����[M��4R*ÉtqT.3�?�5U0a��Q9:(h�/ȝU��sڀ|��V���tF��2ף�1�A�P����@�#q�	, ��5�_^?�i5�i�(�+�d �c��s
#�LD@d˧����+�{�N��j�~�t��@�`��d=�����R	6�Q#�>�5,������
����h�%c`�FTh_UbZ|��c�J����P��aDn�
я�	B���"
��#�4�Q��"}/�2,�TW�D�
�,vR��u{�[]�fղ����k������zk ��o���.�+6��+lG�%���7bf�c~�����[�=����Z[f��iS*
@5�:T��1�2������^DGʯ�neߌ���$�0y�ѩ�
Y�U���[\�Ы���D�l.� ��_1�B��R�^���,F�>��1\~9B���?�xTlyϳ$q��m� ���q��j�>�N*v��)~AA��������2;�(�zp�y�u}B�:�����Lp��Q�������Gˢ3I�A�Q
��`FX�m}�-�jFv��.RA�]a�\ѐt�O#

6�g��4y�sڌ|���:r���\j'�����}���D��P�":=m80��1�~\m��:s����T
c���u-Jåj@Fe�B�	�j�f�ǣ�j��m�S�>��e���.x����pE&��!/�u��G���V�?n1V�����b���F��7j�QZ�p�7ZM�$�������=�2��D�N�����/��W���9������_��7Bx� _��C�a\�����g5}�`�#^{��q��F��G�M#VTa+Hs\��K�,C��4*
��l*�����ċ��m�
1��zz:�=�a}�+=�h�e���n]��,�H���� ���:a2-�}��B's]�(�@��,�I��g�8�p��)�l�y�R͛��q�yA��-���9t/��l��݌�� ��KM��U�0�c��I�b�A�˕ZUT�L@�2!Uu���,#�52_~Gr�+	@+"��|��;N�,֟+
T)t��К%�D��:��gy)^�"�ײ���Ջ�B��+.�Ko7k�'
�H�i���B�T�T<��x%(���5ק4Z��Xb�\��Am=��
��TՖ	a>\_�lz���"f�;) \S��)S�@.��5U���g
�թB�<FQ�X�9J~de��R��X9CU�o��1i*X�_�'�e���H�Yzn��
��T�3�x2�S\�+^Q1��E���[�N]2�w�:
X(��D���-t�_;�{su�l@D+=���uG�Q?���w��l�zu-�X�&J����S��DsĴ���\1V�b��.�$i"WDT�\�� �U�c\Y�`�&�����#?灍���#U"))ީb���]1�^c�������\TY���:�$�`e��qTŧZ��"�uÅ�J�B�/�l���
���^��b��X��IN�P��[��%䍢'�`uS*����o��{Dz�P�#�uт���d�*8d6]�T#2�lX�����w��/H[��ek�B�P��0!J`��
�
�}g���?�=%)��R�=r/P
U�D�=&�_	�5�xH2��p����;��t�t`�T|b�\�Z��9W�F�|O��,�����}.Y�AD4!�v_c�=E-�R�kJ�B=`4��Ӱ�\�����mE���wqb�a��$l��J��#ޠ�.�a��WB�����/)-J��yz�`���q��"E�����m��(R������%^�8���q֢R�qc��Q���g�k���oD/�;�Z���x�=��������V�q��3=?��6�S�a��-�Ž����ّTz��wt.4�E�p�Z
�r��jÄB�Կ��M+��kV����t���BG�-#�����ZҀAOejr�_<IvPJ|�R�eԧI�<!\�@�c)�@j�����~Y�m�%F�e��=P�(�p��_Nʏ�/co�<N� ���A#� �X*/K�<`�\���5�^���|������دΣ"��<b)�y!�J0,����s�_��#�?��6�"%In[������n��p>��m���ޢ�C�x����Z*њ"�
"4N^XěK���~�¶��˨]h�MG����?�r��#�=}�y����16��
H�-��;t/4"�Q������.�jl#(��l��Un	 1�@���^�68/��keѓ���^�`PKޢ�|����b˼���qn&P��G�째G�LZ�TTuq��e���[{C�Ĉ�Fe��m�mE��,�c���h���q��`�B�oޠ,,R�/}hS���ӄ	]����1F�Gx(Xڑqa�4�T�l�:���5�D7��	�0=B����S.0�Fn�dN8PA]�����9V�����mH�����vㅸ�TU*Tu�k�qĸ�.�M�5Q:�i��F����~�.@4��+��,�
Q�����\2�΅A�=kB���Fx�I�T�=(�^�좯t�
�;��'���ȿ���}�
EĨ!�_C���Yk��:�e�C�s�Zw�t�;���������c,�D�а.~)4%K�W�‚�uB�T��C�(�r�x��`�/Z�^y}��=Q�YVǢGN���&)� 2�r���ƢP��6���eZw*d��M��SsbrcXw�W���ur;"������hg�n�ŧ�*i�������ŧ��
���z�%�V��X��8qwq@v�H�p�3P���� �T"�?&����ʆ;�3���g���Q�7HY�P<{���&�s_H�9�С�ت������#U��h����^��r��JGn9J�w�j�F����܅݇m����b�>���{
���+v�O�t��쩸'�	=�T�K?T(Y�[�r�88z����+�m�"KV��]��l�� a4��O�`^s5�+9��_�j|#�0{NP{�����n)1�� 8T�p�`�0�� �|�%ռ\=w��ǒ��%v��z>	�V��u���Ԏ!��;�
�%o�0	=!ꔳ��i��9�\�7�,�[��I�؛XN�ґ3ŗj�S�/IQ���mc��m�En�H�4�~\���n:�t�d�p��q����J
�H�4/�˜Z2��`Eo�"&9Q� �n�S�;���˄�s\\��*.>X8����J�?M$O�Cd< ��v�x`Tz��Ѥ���Mޣ#��`�(<���D|%�
�(�.:َj�lAh_�r�qH�Dr���3Im��A�eA)����n��
�C�E�|��q�P�U�K"�&���tU+�
��!��Q�(�o���D�0��-��WO�rԕ�s��ER����(��@�`o���{�����aE!Q�Hq!���`��iX�$5g��lB�M
�i�bє�q*9}�����$���j�i��[u��,��bQ��Q�+���׫ԧ�o��"B��e��W�Y�R�.x��5I�
(�� !o�٢�r���T>���?�H�V.t,� S���%Ӕ���'9��n;��H���'�U����#.���E�OJh���]�l���T��T�!����F�H<��J�}N%x��Yy��)�-%5e��D�]R�L��#�?n��n�z���K�؝©:HFmW�*�i����m�U�����(��l9n+�����Ly@Y���y`�ǯ��0���֨e�hqt��AT��!m�ȴ^����i+�熹�6��b6���.���>��b����8��4��E�u�I,QO�_�9ڪ��cv��c�GQu� ���������F\R���``AEp|�����x㙃���R����T�,/.l��e��(tſ�l��L�=�g�-�e� q�)h70[%�ǫ�^��)z	h�m��V7`�֟�A)�/�.;t6<��C����� U,������|�Xʱ�j�W)�/���J��������3b//��);��K��ڈ�q�`�ou�Rq��$��D��"W�rU��Al�ٰ�,ʈ�Q��
r�؀T3W�,:��m��*j�.$Y��e5G����m�"
r������IŚԉh�fe�"��6�5��bqD_Gza� �"aj�#���b<��q�/�*���<��h��U6rp�Ce
�������Wv@��Z�p�Q$���=�q��lB�w���/@�)Z��f	�D\T��-L�nؕb�!^�xϚ��u�}r!>A�<iE@+�7�XY4�Ȗʽv,�W���6��lC7Z6/�E��n���`X��2��R]�p6..����%���SL PJp?��`���YM�+�	����Vw	}9�c�4J
�C�EԊ�!�1*!U���!�qwzB%-6U��TJ���u�R�"�������<�V6��df��Z��jƘ�3\(�6)�1��mq%�HX،
\�&��ɘ*��aX�H?�Z?��`*(U�
4�2��8 /~�H��[�y�,��	�>1�4��g�`h�ۄ�,^PB���`Cõ�.��4�8��}.�C˴X�g퐢�QA�䷟�;�XAl��D0��%ǥ�x'cr��=�
)U�&��}L��%AY��!wu
>�e��Ue��@F��B�&y��"�9��ø�*�]�{ ��/�צO��2��9�Nm���B�8ȠG4�aOj8��7�!҉��o*Ӛ��"�0�V����1�,�wE<�8��BD�,��*ݺ�<x���E�����
=�#a�P��ҶS�ED��b�����	�Q�O�K�ՍW��M
X��(����&ī"qg�2Va-n�K��x"gv�U�A�k��N��&4㙰������o�"TK
7���aZ�i|�������.����B�(J+���vK���rª�	ܕ)r�W���;�-X�"�JK8�DN�ù�r�x��t$J�9�\cl o���r����J�[Pz��%~�1�ÉUn��*�IŽH�E0a	��yR�W���*
bPE���DrG���Xr�Yb���q�R�R��
)+`���.č��{ը��$bv$H�-6Y�a�.:�^r<4!]���8'�~׭e��[, �����
�((�|�J
u�Ρ0�	�.
����
H�칼�����,���U��|��lh��d@�#It���<(7����$�X���?��:(O�*�)aa���� �%��բ⶚�k�4�W�I@����ѵ~1�"j�ḅ��]����菴�X����&H-� �c��hggS���cR��o�g�o�J��D�ÂNz=���?�i	iQ/�GMC�hn&`�9�:5�9O���A!�)��Ym�@쮋�(8�}�3�+T���
19�Gb]�[�B��X2̰R���u|����ڂ�|#*DW+|C���E���4�W�B��Ao�m$��B m������X�KB���\�r�è`D�F�}
�2������D0i��cK]#�>��U�T�-I��İ_�~�kr�ҩ!e���A�l}'T�6����vE��Ĵ
VS�ˆGdp�#�ā��b��X	Jidf�`��C���:�0�~dG�ں�ڭS\ʫ��'<�}�\�u���Jb�t�M#>�F����eH���^J-�WWk�A�LJv�Z5���<��}��A`\��\t���5���'+�S@�,��Vƒ�ѼTOE{q�\�G��K/�uZG�Ah�[?�P���ڏ����v}�#���N��zf�)���̄�g\	n}֖%A^3��q�Z�ص侇�b���ї�if��M%�616tG,V�)�����a��
8af���RM�C�����!�~h���;K�NE�!Y�/�f[����W�c����C�g��P�1r?T�	k�w����FX(�c���t	�-��؁)qˊ,�w+*;ȣB3���-ތP�f�QL��F�^�2q_���Y�j�If�ұ�°P8������P�ά���Ւ�S�
l� �{�i#�d3B�U�H|�	pR��J^���]��;��>��_P�iq߫�D@4_�p�e����o�?b��PaHk�=�߰���|+ �T������J@*^9G#�	
E;7>�,)��0�zW��XW�Qy�
�]����x�v{9N�/ ��2����U��u\�M�i+k5�=���'���_Y����c��w����~@vٯP���%�ѸlY��+
�1K=���SL�v��f��k��g�|�鈀��岡��%�(5�@X�\E\M�(ȩn�S��S���}j��:���5l7�J�������Ld�ꥡ�R�똪����VU[b��^��]��Y]p%���D1�u��*���Vm=�|���h�%=8�p�F��Ѕ�8���)U�Έ���h[_����������C������!}��)Lj�G�YOZ
�q
�&^�y�#��j����2&��4/|Xx���+��iJJ�_�v�Ø��Zj}%Zo�Iͩ��
\�PS*4�'^��"D��|�Х�xaPl!T� mYUE�Xjh�6�.�1+�ɭ����%(!tb�tN�
�o��	�R=�n�B��y
���L��Q)��&S��PL顠���/���l�|���H�i��;8"����q�q0�/��mJ�X��eXG.�6�����B��;ף�=�MW��n�"���7p��(LJ�F�x�^mݿ:�:�i�,�O�t���y*"������D?�QK�]WS59�|��J�{���;��+�4���TA��e�E�v��V�9��K�����s
2剒��ه.-��p�z8�^�>M�%e�K�B���qIG��[}T|(�{�����k�/�%P�7
�M��@?�.����XJ��P�ݚ،������$j��|0��؁t9/�u*�L$AKvD�Z���1��F�v\[`\�ڌB}���s0z�F�����J\TeHd���NW���zcK�@稠T?�҈+G�-��t��=�]6ȩTo��|�<mnӵ���铚��mDHRr<ܫ�P{3GK�˲��xZ��`3E�\�M縿�g|�ܛ_�A��Ev�᧤R������s(0�c�@�_�?�7h�d�����Q�}�T�K?M0@���F�������,2���9N"�Z�?�A7�3X\R�5�Y�-��{-C��=�uy4I�bP��]d�&��^
��)�M��ϰJ�)��*V�1k�b�صK���)��W��'�c�F��:�|��!�K*�#c��M�y=�t�g6�Ʋ>���UKY��p�c�Lz�x�G���н�n�Dҋ�<!��lWL��nU�rՠF�¾F�*��~.�g��=������h�蔚\�!Q��BV�� Z��u0�]����A[�꼌���ߑ�R���t‚ =��C���.�@{������W���]�Pj5��kCt4�U��
ʧ���.�I��.�OH��� l�5�΋T
1�*F���ƪఄ&g����c*X���Y���`��t�V n�;��{�U�<�`"
0!�Z~"
��RU����pg�iT�C�Ҁ�������P���ʱ�ҏ�������Y�ݶ#���w�A���O��X��r��
u
T>�l@,Z���4��_��0���(��W�G��>~��ݴ0�a oOaC��,�N4����tZx�c8z�q�
l�^���k�p"W=Nr�\U�tX�Kӱ��w׈���N������+8؍�J��ќ�=A/��	���E%Բ�y'�����[�5�VE)
{&��-��9#B�M��y�����]������m��m�	��sk���D;964��ϱ��Go�Z�؍]��V�F�9_�T����G���� I�Rh�"�`��,�,��],�ʩ���ET2 �@��NRXY�7[P�8�1�+
��=Zz�}&����Z7*�Mf���bEM�{R�a>0�u���"=���
Hn����QK��"����!�W0,�(-9l�����p��U94n��5e��ES
�Q� 
�0ڌ�%�ܛ��
��h�r��~��Do�>FQ����%�!�%n�t��Keu}�)a^�V
q�]�Yv#g�U�Cuo���`w�?�Hr��2P�����Ht
*kj�a�[����ˇ�/X`y3�p��`=�/���q~ú�H�]�3�"��U��M��VG�0A�+���6?+�§D���a-��U�쵥��Z'�����gMQ��,�K���|D|
����KG*Ё�L�⸛�eF-��]F�QS��TV����/�� ��	Y����@���_�`��''˂ oj
��jSI�C�"��
"Z���&��+
G�u.+2�y�hW����C��#C��;�=��z���M��v�2
إ�����p��>��|��=���ܠ�CС`�>�#D�Ū90���z��mqp��t���\�qn�e{q���)^����ԋ�&���A�Q!=5�D�PK0���M�a�V�
C�y%*۝�� U����s��:5T@����1 �"i�9~�b�]
'�,�V�����"a��
�va.�D�oH�l"���D/%K�H���D.���O��+����"�.��l��YFR¾����v��,}딠K�sjG��	S-�o��AW���z��r��z��/�p+���#�^�=c:?U�a��8x�MʜN�|+��G��]�`�}ieYg���r�D�yJ���
P~�t���f��r���dd{*�V����3E��������
����,;�`��L`_Aa�a�IP�{�����$�D����@���NϤ���C��c���h~G�U�uW.�YU��F����E���wIo%�h7��Z�	t���os�'ۨm5.�����ǀ���8��.k��5���د����/G�9�))*�O���]�F��D:��q#j�‘0p<e��l��@@�Y�
J��yn��iM1�p�7R�Rܾ�B����!X�8!Q,m^��m6�{�8�` S�!m����JO��B�w(��a@�]��SY�k��~	�f�y�V��	n4|� ]Y�X��"�#TU
�[M�vރXH
p���W-�,���e+���ܜ�����Ҋ.�HT����k�mT�֬hP���jT��5�j�Z��b��Yk<�\8E	��݀�����3�,.�(��a�&jwh2�JBU�M��N%��)N�&�i�y>��a}�!N���O��-yg�͍|�3wh�B�.�xa��G��+�T׃�3���A�ep�KPP�М�y�c��i��y�Xm��Ng8�+Me���@��M�)������ؗ�`���K�NJa_YQ�Z	����^z����Kjں`!���cԫYzB�hk��z���5�.(���m ���yq�ģ��8�
ݹ�}�Qw�{�s��4�`?�y73�oN%�*e\��_��Y��*�b���V|��Bh�5��B��eR2��N���U;pK,����*�鎔Ű�Z��@*hEB:\�{#�c�����:
�	b'�$X��H؟�/X���0�_ ��ZZ��u��"_X�������
�0*�H*��_��D
.:��"�Z�^qX��$
5el��k���A��s�b�S�6�Do�B�x���X�G�
� ��^C�<�D��F<;:�q��c�,��H2̕ڶ!�7����aD�
"�p��l�r���.�EW�q_��'��c|홖j�����^X\E�)%������˱栛�R
��uo/���9�x�b\�����ʖt����C�< ������͟��S��
$���m�^�
K�8
s��+����_�]��p�4"� Н��\;�r���^"�c��"�a��0ତn��?���'_��];�d"K]s�.��Չh�(����[�^��X���a��D=�E.݋k1�^WPP/�XK�_^ K{b��A�V��-m�9��P�VMo8��Ai|�TnU��W��h-�c������T��1檕���G���D`EW.��j�-�|�8��v�쨕W�x��`('�wY��q˭�����G��Ma�R����]�o�$ ]�[u����Ӱ����:_�2X�x�k
�y@�<(�$0ht
�]̸�/5���a(��}�x�
j��ˑS`���jy�G� ����\�2���N����N��A�Z�4��������t�T�%3n�#K���E�%m�#U��1�Aef�y[��'�*�J����7c�r�wT�vT���f�ٰ�n�!�:�h�~��c|	�iU�UW��.��(�c�?���\	�R%US�Y�N{�M�L6;�S�U���e�"X�S`ڋ��*��*�(�K���;Rǧ
o��>՚C����_�m�U�"���˯V^���]�]b
O�4qr�e!�;c�!�*]P�A��y���(J�w�
W�q��tp�Hʃ��a�SE<\P��.'V�O�|��z��.j�D��W�R�W���l�)��q�(@����[2<Sa�DQT$����o���\l���#C*�����܈l�<���K��*�*dP?�T�H��@:�_��	q�(�ް'x�������4oa"5:�|�'�aa��Π1���9uO�쨢�Y�tgU�6�
������(���"^G�N$G#�&��`����ĺ'>�з�p ���(r7��V�%�Hč�Y�pnJz�k��������E.��}�6h���s��$�S21��D8��UKH��F��Wô4_�D~�N}l�s�Cឪ$�k{s.|DB��-�4�F����cLepve����(�P	u6���
��+�@��^�4Sx,���KA��v���1o��;&
?�QS:����}�JI��K�j�h��M�t�T�� h8��N/����2��K��hIl{��F�#&b,)$m��c!V|P@t1;�az��������t܍
#䴂�Z[������8����hAF����	�[S9E�W����n�?��UV��@���)���B+����wLn�(�|�����'U`�EJ�oU�n��\zY�#�*R����piB��
�T�V���s���S�f0DFL^�9�IVc�!nD�x���\��v� ��N�4�O��	������`�d�)5�k��.��(5%B�
�V��$�_P����MF#�>A���l������Z��e�UZrE)��V�ȿa����|�KJ���}tE1ZJn;Q�]���)���S%�9@@dG�Vh�Epx����o��3k v@b�S����1F�j�Y����,�Q�hSp��)o=_Ɖ.��c�⭁�4�kh�\7`���BC}������
ء�"|!ӣ��c�: SA�TXv�Kߐ�0I|l����!��6 6�ek��]�0�"B�֨�R��Ռ�8�>�Qw�(&����5���St�p9�ʌy_a[��λ�VmP�g�*v�G��TV/�:4�v�x2�Q�h���W��WQkKʼv�h,[Yt�"]�)"/4=���m�Q���5���o���e1
Yde���**��-���!uFf�����c�`�-�q,��D׹o��]��w\���pI_�
〬=QA*�P4��gh������Z�qt��f�qyÊY'�M�8��;N��p����v%)n4��MW�Q��t���)-�(0��
2�KIX	E����p"�*�i�D�~R0Ѯq��FZ�cZ�TqY�4�g��,#Ѐ������剃p� �t&Rv ^RѤEK��9�S��[����I�5���9��z��0�n�<�8�/r��-e��F'�r��oP���]�V�%K���g���]�
�I�&�����>Ѥ�-�k)a��?y&V�~ѵhF�wIUAП�Dƽ�A�Z�����>w�GC(���D[�9�0݉(?�V�p���R�B�UpC�/W�ٙ��0��"�Z�Q����V��|T��^oN���ä[:�OlDK��ء�B��x@J[���ei*�e����̝�����T#,.p���
"�wU;������:�P��SO�9Xe�g�Q��ys^��MS�lUYg�0XLE7b-킱����صeD�����	@t'pX��h���F� �ml�+2������sl�\O��[T�+� Akܫ^���UD?����D0,P�i�z-�H�%D} 0}a�f�6����L�k@��ס�G���\)3@K�)a٤aMU������T�P���$.� �7�o-�,�՘��K�P-kaeLX�0J㉥�� Ǻ��%��'�����V���C�nhv�o���_���#����PP]ߘ�6��֧B�Qؠ'��m�큲*E��p���ą�mǴ�U��5rA?u�X����bZ]ln��펐��5�,V���S�^�ܢX�H˾/������{�ֻ�-<�z��Vļ`h r�0P�q�9�ʬ%��|�au�Ej��2�,h*]ƌ [�;���s
�y�� 7�|��梘l�c��9; w�&�)�MӒ�)�x�,��Z�4i�`�����d'0:�qqU]���W�{.�%;��48`9�!��������ЙZ���r����r��	�.L���H�ǕE²�-V��}��
�	J�GX�'印6X��u�%J�V�Z�ܢ�����?%�Y�&��.�D�`�#��D_��碄�Q�+�dm �!���Ch!uq�ً�bڼ���n��CA[�p�s�@Hα?�貟hk
�<���/ДS��\�E��WZV��B���~��^�\��<�Np��T�T-]_J��Ȥ"�p^�Eb�!��z��
�2��X
O�u���J�rc�0���P�n:U;"j/1r؝n��DK��y�k��]�~�A`� �s
�[O�b��
T��XFc��0��aQN#�/Ey���_�����b�Kc`09^O�3p�S����]�HV.=y	"�o��+l�����7|�W��ׇ������|5% �JZ�E�Ki��`��p�}Tm���p����0ʁ��p��yj��8�Z`!�\
��Ěaj\0�o��r��0vv�5vă�Em�=A}�U2�*y�
���?ºf64X������k�R�	���" 0@���X��I,�]g9yǛ��}�3
��&d;ћC�? ��fd�D`zY����f+7�,�g�Lf6=����X��"�~��M�_{1ob�y�A�C$4��G�ufU��~��h���=��>B,�Ƙ
^�\�x���у#"UM
�*�������A&��z� |aR�Vioa���>|���  �
�� gg�X�K[�����{0�T�1���	,]�سAeNN����W��u�m�1���lm$��Rk?�dh(_rg��H#0�0?���P߆c�UM����{P"�,�Y���U�]����`v�0�U��[�0Ɵ�C	=��J�?,��^<�
�B�+� �\��a1Hsg���
P�0}D<��zŊf,K?�R���,�eg��epI�~Z9���
�Ei��B*cC��y*T� ��n����`�I���;�a��B��
�@
���%��-+X��%U2�]k�A�qYI���g��<� 
���J���Up�l
n�݄A��ž�6�@~�ϝ!�@��u D�K]���ٍA\EU�e!�W�DV/e�����<�BX�*�։R��TY��I�ݚ[׭0��~'A �a*Ty*D33�3L�X0:�}%˲,
��E&���\����fR��H�L1�*�kDEDE8���5��0�w�!��ɰ�&�t�zf,�'�u�� ���t0L�Aә��<(�ވ�[V��mg{Z�a0#�Cxn���c�Z:��]u֡B/C�BZ�p��~U\�mN��ÕS�3ϟ>Jy ��H�	�OH��"8 0�O�L'�t��+	�P"�x�+��]e����acц0a�,����˭�J�C�]oQ�*��P��t;�ww{W���	�z{�RqkP@&a��Fd��s �3�xe٠���Fͱ�EPv}� ���佒�D"E��V���t����kY�[Ҟ1.���Y�r(�ن1&40�߳0-h�g� B
�(W3��!ى�h(�4��(��B�WY�~!��h%��z�@"Ń�]
x��ucK�c1:2D��_���_/�p@��K�`z��J�a`�{0u��R����j4pЇ(@�),	US���`�!�a��X:0��3�g�wbz
��
jn�O@ca0-]��Eaܹp���aG�|oG��ye�jP �Nر�A}����YH�f"�ц0a��������;���n%* ��=�$�0�:�V���,�gy�a�A�:0� �Ƞ�xDH:rI0@}���W-?ӧ�x�T�dAD����#�9NCƘ�	�e�W��։��?DacG�)m��
�[�Sh��0�#�#��V#�h]�C*�c�I�n�����M<�����fr���g�[�x�����{���"�XP:c�Ɇa�4r�]��؅|���Uվ0�0�:L0���L]���>Ԩ4s�cY�V+����~��K=�y��{��l�؄u�`V�=�J�+��D���!ē1���W*�Eo�!�w���ZN�3B*��Ce�T��[�Z�Vt`M7�x�f�����c�������` �T+up��P?��e�z��,��� �������z,Ib��Έ�!��f�a��xU�׍�ǭ�5���t�=���O&�b�5��1�����8
�a`
��a�q�(AބM=n�Fa���q��/!OD�Hm���ׯD�c҃YXa�34��������u`-�E�urMv�u��G�v��e�q����I�<`�,��R�i~5�A����L��40���z��^D�F��&n�����'U�BK���ڥ�kTUR	�>�Ui����*�^�L��w��z�;��S�cƖ��H/�&� =�đ�ha�սO`�m6tz�A^����t9r\�V����֤@��\����k2�"�X�C���N@���\���8�X8�c�%l�cnjI,��Gv#�)Tt7��Q	Ɔ�r�jxW���hd(���3��02�SZ�O:,ႀ[�X�J�zpA���iH��*�.��x�T�NUH�,[
M[�d--�I$�&-@J��(����P$t��L/KW��Z>wIfQP�]C�LP�ᥰJ�q��q�X�\�ԥ��:�һ�u(Uֶu#��R�3�jN4XG.��P�!��z�3�GHx����tfFba��-���j��f1�ZVlr{$=V�9wg�[]�VL���e�`����U�]Uv��<�M�)��I�S��KW�Cr���!��K+e�8�4��q��`;@�$�9m�vB������2�AEDQ��F�J����p����\�ǭkZ�<����=e���mV�#GE,�ʭ�H���j��0�%��*+Z�3`@����X.L���v:=��\v`<�X���_�3*�^5�$VwS�k*�X�Y@I,|��eX)zު��T���,���,SK���-*D��TT�[k�9���V���P&n�fm� !���-�~izTЖ&of�"1{?���(t�}���tFF	!1T|��Uh���,M1�o�$	[#8��j)!ֲ�	�#VT-U��xu�Ea�Ioe���ta��-���?δ�|���{���hzG�k�-*��),[X�b�UT����ŦffJm��hGOH̀:ؑ����*��ʼn[/NVF�2��\�@���bI��&[t�і���&akks0�Y��˞ճ��F��Ʉ���m&�(�ķ�,��@��&�σ	�32=Tج�9��0'�GX⇽"�\��XC9"��0`����|��7�^��lі�����L`��gZK3-{��Y�}�0�0w�D%I$�r��C((�E�I��=t�	W�XT֤��'��[�F2�R%�LY�hR�������݃�0�P�=+�^AV�*#��A�Y���wwj�%��d$�I��[*";W4�,�GudW`ȣ�?
䰪�%J&0V ԑ*GQ��V�Dp
s2�I��b��?\�$�f�[��������J[]��b�bK��{�j�MLj�ŷY��k�i��(i����%A�hd�߃���]i��#�ǐ�Ns)궭Ĩ���Fk�K��3?m�n�by�cї���)�7
�.I&\�;��K�i��7�L��bDiXCŌ+��
�
��f���z�X���s,WpۗK(T�ha�
��1Þ;!�3����^�����)m��p0JMq��N�yV;1�@�<8�ڕ]̪`K��2�`Y��h��c00M,�a���Ueb�].	��֫Ayj���r������^<�]a���S|�~;���wM�ʒ9�ˣuL�]�9�9���U���8���W�_�e}3�a]v
J�u��D�&`C?Dr*!Y����GWJ�,��G�y�0��*��m2�C9�̵i�33?}�cbV�ls���Ri��U��e1�Š�����	zє�*���X�HTZ��]"��� 4����XB+�H&�3���u���djX�+�T����j4�0�0���#,'�c1����Tik	{������e*Q����G}�]5�B��g���5`=���ŗ�H�!ƭ-��.jT#�I@SM��V\*�"��N4��~I�X�����Z�Ԏ!��
6�ic)����b�<Z�	dY�U�^�j�g?�-j���T,(�L.�au��i?���WG�V�����bg��-��XA-�<sY��v�;�1�0aa��g�ش�P`@�t)U�Ŷ��Ʋ�ʎk��%QU��Kl
�B)P�(���{Y�:_NJ�`/X�ܹ#�����sj��$Ҹb�.ԗ�d����1�ܶx	�QלI�@���au/@��-3�l�2�zAdf.+��96���W���:`��~��3l�7�C�!���p��s�+V�T���x���;�����?6�N'0h.���/[��g�¬�P\�E�8��-ve�����Q]ˢ�t6Rv*�^�ww�=Ux�­[�ku�UJC�b���X�2x��e]i$���^rV0a\�:]SW����A"T���`�
<w�ɩH\��삵g� ��נ���g������?�SQ_����%,��E'\�).�����w��E��,1�M���?ڊ
��Ji$3Ϗ�B�p@�v��X�U	����A ��:`D��G�sA��u¥
|�̫����I%��Qs�PwDo�wne�EaLx��B��)}8�jНU(\1�1�/�Ki,�++X����� �Z�&��A�>OìW�sA��b�GKh�W!L�+pl4��T�u�	�?�:�RZ[��:�׎4�\�xT�/:�(�fA`X�j���!��:؆jŀ�>��B���=)��,6�@
�K(/+d6�MƤ2��u���g�L�^Mv/��dr���Êf��s�ƍ%��T\9X��`V���GRR �Ί�����C��%�tz޲�:�%V�i�u��}�@���R�Z���jH�A�W��1�lp�aZ�b�Lj}�
dz���v�є�CA���ߎ=�9��baV����j��y���g����U�j���+_�U5�*�/э9r���*}3�Z3=���.�Ke5�|�ԩ�)R:��ǭ =��=?��d`�Lr�����C�Z�#F(P���\�sc���P���m�j
��*�+�ވde *A�މ%#؃�궥���G��gј����q��Y��	&XU�0�,ZZ�TeP�&
�ݔ �ҕ�eHΝpB����7����J�b&f	�}�ad΁�$���نb����XL#�7~Z�@�$�$����h��c
�:vG����Q��R�|�20td��t�D�@)R8l��@��a�ߠ�|�X�I"����	bI��5
V������V4�a�qŒ�%J�(P�B�U�d"oB"؊���1_���u�y����;�IQ?90R�1��"(|�KI���M��$Xa�!��U5���R�d25f�<���HoA���P� ��3�߅�K{-7z������~�LDU���fgwR��
"�T5�k�
�vIsa���ha�a_<�<������gx���[�����t�~0�B(D�ŋ�>� g-��Gx�jJ�
.l6=��`�X���3Rе��Ů��33�y��dž\��V1��#&���$P�f1bK�[�ZбsY��%V;��Z�Y��=����*�C�������=�R���0/�>@��hafm�oB�3�)�U�? (��0E�cF�Z�ed�ŋ*��E�̡J�5�?[�U��?�fe����~�.7Ig-��	#�	޴���C0��MСX����4&�:�e� �B3�+5�`�`�(A�+�.f~dvE����o�o�޽n�If'�4���C�U@:0�O��Ņ��P 0��.����Z�Dffgb�
)Rp�U����Cn��Ԏ�wwwtt~L(P�	��M�Y���vl=���DU��I$�����B��;�s�%���^�D%#�T�@e
X��� �׭%�)��޳����@f��˖-�y30�z�lEQ4�ŋ�����L}��9���,����U��DB�R1kT�[�`�$2�+�ϟ>|��{���
�O��p#<�d����ߑ���ٯ��[ӓ��qy%���4@�G��V�ŋ)%B�'`P��47�^�zٙ�ηw~4���}��GZ�N����\�m���D�e��`����nQ7?�gJ�>Vr��@��'�>B��fg���}o���l���� �dffw��f~ xX�Nnkcֆ�¿�ˁ�Lr��*żxuB� P3<���Ϝύ���z�/���
33?�0|��n�����Ϗ<�����Յ�+��W��+�7C;E
��B�"	�t���[׭ٻ��n�B�����x�|�󙟠�,��@uH�gD�����cGWW⸂�@�*�\�Z�����ׯ~�������HZ��PO$fd��##�LeRDCGV���'��
�x)�����j�0wPI�((�".v@a6�N�ٺ�[� ��v:0�~7z0��AP;���J
��8�O>J5��T�e���X�R�K��b��U�Es�S���#�w}o[��",�0�{������"4��
�*Q��C��m
Њ8(%h@3�Y���Һ�2"a�-�z?��@��Od��wwwKz��B�?-�zk�C�mB����`�h���	B	Mh�޶W]Uy!���\¦H`���"�L��f�I;��X�����¤}�AJP�3#���A��ho�h��!%�t���4@��2���: �B�
�*Q��w�333�J�@z�wI'I'w�sa��
+�󟈁���8���'X�Y�Z��i$�KkE��ƙE)XT�!��B�G�%J�P�CY��W3t�H�����m,X�sa��
+Z�y����I�ɀ�E`���6=������e5�Ʈ����Yү�&ffa|�(P���k5��e<�{�Ѐf`�n�E˗6
��
�f�	�a�`��~3�ի![W% ��˗���l�Rq��/��_p�6<EQ��H3�#0��%
f�Y��k5�~
�b�H�'��/��Ǐ�+�~LkM��Y[ww~Z~s? =!�
CX�enl�]�����P�-iZ�a}eb浅U@�������33*P�O
����?����T0�� �u��0��_�|�{��y������	.I�ܫ�U�_��vW˒���(��{���3<��Wϟ><x��Ǐ���KO@ >�s<�g�?��z�<'3��U�]�;�r9Ҟ"VK��9uY��8�MH�o`������s�y�ϟ9� O|����PS��W;=\ea=|ҩM&��)�6��RU˵���eU�X���;γ33���3333�M33��ɓD0t���1��(�u`s+�Z��B����m��:��RUW����f�`y�G��Y�faL�B=�:F�&���;X��<PNE�[�Y�i`C�s��0�Qrl$�Қ���2�:ɳ?@��}�ф�C�w�ft:=��6��C�0�K1�G�r���cs�[�o^�xk]H��a$֔�Y���:Ϝ��g���@��ݛ�������Ϝ�Z	���*F!��\�k�/�.��LW��;���	-Z�N�Y��&��0~������x��_|��<���Ǐ|��|x �Q0�;�p�!O8I���H��5q���Ӈ�.`a0�eW�[�����ʧ� ��g��}琂� 	�N����	V����	оMa
�dC�z�f�/���̧�:�Z���� ^�1�R���ڎE<��	�Dt?3�>��P!=�m0ג�T P��gC�(�wI3��ǂ}�"����Z*�4bI6�X�c+�B�\��M����[�ffu�����}��ǩ���@���^�&�0(B�J�j�+h~V�1�]؅A!	k��kC�k���5O��Hs�w�Kz
�gB�ע����׿~�i>���R@�µ�����gWh~�qb��c3�Aڨ�s���w%U��$|��wwwwa$��Z	��w`���ɻ=L��c�8�cL^�:$�oG�J��,X�K�gB��9��л7���g�� ����a\̆(�;?����>|�#3<�d�ptTv��/� �2B�: �VAQ�Yʼn$�����EU �g4ZB����!���B��s���2! 0"@12PABQR`aq#���3��?�xj��?��z�L�J�k͞��:	'k$���hw��N��[յ��+�k�|����p�1��<Q�Hb�B8������/M_�x'�Lm���x��"Dpœ��C�m�4J�W�x�ҍLоY�Z,����§�&9g�d�����I��id#$��d�=N���D�yقX��H�G$�>X o����,ͧ�6Fܓ����Zx�Ư^�C$�-$���i�_�?�F̐"o,�i�Y�v�}�b��� �SQ�>�T�d	
��ͅ�E�6��"��O�C�I'�=ӟ#���]!�B�O�д��m̓�-7�B$�M��li�H[���$��؄���W��!y�3b�	�s�L�G����Ҋ���̭1�zsW#�2@��dyQdļX�O���::j����HKd�/�ɏ�Iޢ8qy:�����%|f�H �~�^����:�{kgQ{��:�p'�}��6hSR�t쏀gi����
�[���r�J�7�	��}U�I�a�9����Wŧ���H�����IGUM/�#�N�&�3x�^4TI+r'�`���g�zt҆�~�Dz��5j�U�]Z&���I����8��W$yQ�\�E�"d�Үitj�~���ɴ�	�`�A/�!!�S��A��O�;s�8���h�Vh}*��T�S���0d��ɴ2v�����W�(��
j8#��<�jc�B�s�I��#CD�z^�4[&�҈f�x{1�;2��pgk���?;���u�jC��գ��(�M��v��l���`ɋJ!��C�6r�'���(ؗ4w;b�h�<��X�zj$���>�z�RUS���f�C���IW��5U]�N��Bs�>�X{a���Y�[$=$���m�d�i&-�����m�hf���_��3y1$3�9�ot���7P.8V��52��h�dp3��J#4���5h��*��kM^���o��aV�L�b���F�Q�5y��t*���� �h[&Li�F	p4O�υ�V�C�H��$�J���\�*�O�?�l�C&�"��ٝ���U��z]��E�[&��9Z��U�$����J4;I�C��?�'�J!�yFL[=�C��f�>	�
�[si�BV�I�Ou��J/H��E:i!�5xI�-(�i"�xg��W�37�gd�+1|��w�>
��HH��wE�g�!�i�[6K��}���GP� �wK'd�*�E�u����+ɡ�C�`O�GQTJ�l�Z;�;�ȩ�h�H2B cd8����q�K�4��;J���V�4V��읐��J���U��٦w�t���s�zLM���TI&z�^���i�=T����H٭Q_��%�J"�&/��;1�Fƈg�?�	���DuW�M(��i��;�d"
�#2B'’��J�dZm(�l���}S��Fo���/7�O�;��C��ޚ!�:ʮb�j0d�"�h>��)5=D(��hۤ���4������	�7���h����D;���كOQ��>o�C�vcfm�$3U
����I�;�YͰK4"M/f	 ȍc�F~�S�-#������d�Q��5�?TF���|Y������}�0gf-�$��1y![N��C![��;lFK�j�^/�f�G�i�3�lV�F���l;�ؼ����5�IG��I��0B&޴�v�ſȶ2[����Lw�b�N�fJ�f,�I>�H"ɚ=��yC����$��+W�$����&<�rB�٦Jٓ	f�:���f�l���I��6N��i�F�"�6�f�����FW��ZGO�Вn�F��$��+H�zNۢm���[$�Y�A>R^��6ɮ�7��d�du_����6�-��d"Y�E�	=(��%�0:�������=ב��O�M�=�2GMZ{�v�}������Ly0��,���:N���F�ޯ���U�dɝF'bcf��B�;��W�7�&/5����h���k	�/,u�?B�'Ifm�d��d���ǒ��vћb��x&���Q�Y(�fm
Ќ�����6�i"�;������>����&:	W�ך��B�NȮ;3�{0`�1�������-�}�w�R$cf���'c2K"�A�R���2"P�OH�V�/�m�1+����ht�
η�����4O����V`�ވ�x�+���+�JRT���̓A��"Y���E��	d�B!
���f�/�>���V�]�Zc7�"���^�'gI�b�|�$=���:��m���0Mf<�}G|�����=���Ԛ��:��l����A��u�5;l�5���^�n�I��G�]i(��U�"A/�#��=6�Fb�;�Zk�4:�w���"�&"=�}W邎�i��-�9=��&7˻�f�ڽ����1Q�`���&-���'���o�2`�m�Y��M�mo��T�4�x2�ئGQ&m��qT��K��Y
l����j�ߝ��[�P�!�hd�����K!y2��C0f�k�-�;�
�d�	�!��Y�O��$�O��J�;`���I�kZ_�>2b��`ͥ�#ʔC!�� ��$-[pw��ZY�9��HW�B!�gb�u3Sձ��G�9f�]��������J'�t3K&ɢG[�QB�����,�Ew�.��K��Y'–B��RKU;9�M�U���ɲ��
�}�����u
�����$ȕ��#YQQi1��	v�?r#t�2���U�'d|��@���	zx�3$���m����u�J��<��K1�-<�ė3]
����#]�l[EeJ�i5�����jT���#ԏ"��G���952(Ҍ��	��wTv��+��`FJ�<�GU~уY�w^ML�j�%���w^Y><����_����d�bؼ"/H��%i�f�Ỳ8�I=E����ͱmoH�}H��
̊t�
����1�:�2|X��L��T�m���W�9�H��$%�Y��tw��d��B�O�ȼxp/<I �gm��I�ݝ�˒���S��!|$�y�}���:�$�jbH�1�h&߫�!��DŽ����O��O�|v�!i���[O�A6ƛG�j#�����y��\4S�e�_�P�����C������磂S9]5Sݒi��=$��Ϸ�Gp��hD��Yơ���Q�Һߨ�$�5Nٴ�&-.��*m�$��|����=�lhQ�RI}�z�	wɤRƬ����텱�SW�T}{���O��ʮ�f��}Y�F5Y�O��ѻJ�G��v��28��*��Y�$�
ο��Gm�}���ϟ/��D��T�{�[�i�K�_!ݱx�⎟O�!*��v�J�nx&��-�����9	�Ъ�q)UQ�Kd�H�5��;?I�.\p��Z���l���	��%xX3i�7[��ݳ����u�� ��0gdrC��H��!���<.�*W���f�	w�Gw�Wধ��:��x[f���ī;?<&��$qj[�oIMi��eI�iD|���H�F�o����F�Ieo�A׫�u_�l��k&η��th�0f�$f���c�����:JjgR�S�W[�S��6Q�5�(��hpSԡTP�¢��*��>��1�Lc�Šelc�4�P�4*�x1x#?�+��YcbB�$��д�`���I9���c�1�!_���q��:^�S����p�x�,��\�͠�:��>�[>ꄄ�d��LU�[ M��2�l�A����@�b�"�K�7z�)"�!���C�'S+���gl���b�V�?���61�m,���S���މ��m�}HBSP�dڊ-;�I5w^7:��_$�-��E��N��&�T����ZI��:��t�Uc�J'�E�s����M���b�7h:����ǻ�_��u��ѣ�"��A��7:���˙�c$�"m<����C�~�U�6u��E'F�t�th�ж��,Tٲ�_k?�_�ȱ���\�y�^����Gw�Z}�Qի���W���^�S�EB�J��K�$d�+�\�*�����xYP�5|ݎ�Y;;O��|��M����T�3G�	�T�?��~
�;V։��"�x�-D��6V������y�+���d!x9�y�#�GH��$��K�"�'58oO�����r:���t�UIG���=j}*_���Nt�`��߻{�HW��I���w�*��U:�Ɋ�ӿ�|�wlLBg�۫�m��k����Hۍ�`��UGS�9�����" 0@��Xj�M�a���Z����;�oUJ�DR:³z3��`�Ʃ_���cp��c��Sj��#��Z0�:�)�����PWG�w,��:�x��+��Е�k�jO�X�QU�*D��Ļ$���_D�b� QU<p�J5����y|V2Ȍf� :��S[,Dv��CV�Wʏe��J8hw彶�R,��
2	Ɗū�� �	�P�o-�Tc(i$����Fh�CI��}�k�� ��7���0��(��t`P}z���k��a���j�[���Y��S�,
���
\i̲�m�{�J�`�]Tn\hb�"!�{�]c`P��fy"3z��3@� �V��� �8�SY@
�\��ARָ&�/�ߩ�:g��Lt,�7�r��"�is0Cq�#5�-V��zH "��V�Zrܓ�#;�-0*�P#��xd*@�C��k���@��ʔa���/7�3	3׭�����A2�3zǬ����缿�\W��Q�U�g0t~ E*�Մ �܆��!����(�L ����F�T��'3�ft�H�91�@sl�gل�k�@���װ�X7C��4WC&�.l�k�ȕY_"��ʿ�LwG� Z�RW���oA�
�Ƞ�ւc2�fR��H?��:��)M_���p��fŔ�������Y��*B�¾@AV!�yUuDz
*�l(��-�{rYə�s���*��{� �VR���Z&"(�If0��"�$�_���j��ꠋ)�N�0#=��,?ZX�9!UX�,X�0��P�<"х��]�5���Jf��Ϫmc�&DžH��h�=��=�!ް:1�`-b� �!�Ԋ���,�	L�tf���v��L#����}�ix  ����]�_��$b�<~+�\+C�Au��\��׵�*S�B�Tj�wV��f�qX�*kuũ)Z�b�C���8W_��	I�0
f{-��'��$���M+Rq��}f(!jN9�Z�X�����`��|��?��}\kגQ�$�A��+����ز���1�Ą��� ��:�IP^�R�LA��R�k9T��wo�
�	Y�:�}���e�Z��z�+�jz+�+�1J����.���L"`,X'���TN'�R���k��Žh`��?R�r�װ�k[�9ImmQ[��G�����0��\0"�u�T�P�k�G0��h���
�m��9G�܇��f�������VP�<�*U_Ud���N�{b���b��ǥ*U{���i:�L0p��@��'Lh�)IT"K�ri%�� $����К ��Z�
տ�6�w�Њ�`�\mk|�CJ�MAH#�8~5<_�)�TIf,Dy
�g�F %�(��{o��, ��D�:\00}�G�qEl�Mq�13h�#�@�=�jm��]��-e�Z�ѻH�&į�ԫ�d1��3,<�f�א�|`�S�z��)�[T�9=���g�	0v �|���D"5F^a=B����@a*�ME *�\���nS��rZ7b)�Ԕր.L=�@雑ɽ�3A��b��A�LR!���,�XU�����b �� t\8�$@�Pc�c	�p� a��V=M�~+$V[���&zR:�>H�(��
p���r�Oc�0��Vփ��X!�2$^�f��V��Aw���+��TUE���P��wzX�:=f���&z�
'���V�ڻ0�z&ۮ�;�$�aa<��[�@`&< �aS=��V��=gb��;u�U��D����(��4?)} R��z��#�IP���A;��s	�0�,k���b��$���@E1�`��le���z �!`�މ���<�"V�+�v�c�Դ#;H���umtet�b�u*逈!��T�?K�U��j���,�@��T"���t�B*�}B���|�������y�<�*,H"�O%�D�⸰ta�&+�CW��� UXC9,��)��ҩǞ�Ό1���nE a,I�"��BHa�a��W-���A_<���Cq����"*y\/,���9��z�'f�d3ґjʃ,F_�,h�`��F
V8�ʥ,��	b�XW�BZ�rf� \�z.`+`�L �Y`8測��t�Ux���ŊV�j���r"�&�Dϊ��—H�A�Z���kB�`�6ز��a-*�D�	�с	�n0�����X"��� �GTFFA�T��H���詥��	;X�`��}3n�:��V~�x�
5]���mg��uQ0KzR���eg4�S	�G�J�B�5�
����If�ta�Gd@cB���v�]V+C��N7T��1}����@3��}�%�U�聙b�GH��0���p�J��q���g������8A��� mk/F0|��+�I,�R�ҵ��`U�*"�O<�c�� ����I�B���+fV��*\)�Vq�hJKa����GW8�� �a
�rQ�g�Ē]�Y�*dX�C�@@*A��Y��%�����G~e�4���Gx��!C�f�]��DPB��)�T��+6���h��p�T�܄A3TFk���=�I-�i�,���E��"@�SVW��W�IG{.=�ֈV����tN��z$ޏ��=�zV��Mn�ʅ�V @Y^�8�ʙ��T��)���izH����~k�NvIfvbD���(�`��!H� ��g�Rx��Wi�u��U�XU�M��<� F���@?$��wf�B����0$����f�T��u[Ku[q�V����.�v޷K;���:�I$AF0~pJ�7�����\�2,��2��[}��фbJ	���tO��7wf�A���:1	�N Ƅ)���F�g0m��{Y��	0�,l6�*�x��"i�AF4`�xZ��הܖ�5�U@��ee\:�o.���4
�4ɢ���B��ޝ\E�em��X�P��!�@m�J���X@R��?)�a��t�<���(d�0A����7�qg��"q��q�9��U�nk��������	@f�f�	=��M����,�Dwt��)h����uQxzRR:ݙ�L�T��>|��n�fn�Aل>�Y���Ʀ�79�7*�!� �4�40����ՙ�z��Mߍ3��u;А�
�`Du"T�h(H!���a�����f�:�va�z����MK,�٫kE��v�VhJ���@�Wjʫ9���1NW�`���$���H*��?�$�y�Ŷn�e#�ta*c��
ׅB�{m{�Y,UO9���`�1X�0�1a�(�$C7�Du�V�!�R��Dq,q�Lh�S7�C0	����*CBP��=!� �NU+5�c�c����e
!,@�[����I;��ta�1�+,�:�4�`��Jk6E�,
���a�|�	�ϒ�+#�0�N��}�X�<��
�``}L�C����N��u$
��	[:����0h#���T��8��n���ɞ|��3<��_ֵ�E AыN��2�i��1B-�Ȁ�w��!��&}
�$��j��Q5�h�Θ�L�q��Z8���0���	���L����b���J��Ԏ�Y��R)\n(v������v����3 ��0ZI0>�@�`$ze#�h�E��[T��,X�ǀ��J��$�;�f�UZR-~�Xv`�|aT2�i�\Y�/؇��{2��3��z�S���RF,2�SC��VX�,�$��+�[Bh��z�=VR�Ma<2�3aA�ŕuz��j��I~�������t{��wz�+Wa�2�fB��RB�,c*t,H�b@$2�OB,{��(�$�ef���\4�~�jK�S�epK7My��OЊ>y��{VK4���c(5�gئ�`�#��Y�$QlN����� ���_Ef[ HC��F�|�F��+��c�k$�ݘ&��$�M�E}`�t&�
�,�*:�n��C�X��@m���f��:��JK�m�,�$BcDh�>vCWe7�+7 wv�m��N �t"��D�ϓc�7wv]@��g
>+j�͖)�1ƤYlHe�	����a���q�6�R'Ny����gqXhd�yk����T/Y�u��&`�$� �?�2�v�Z��8�[!
hf�kk�Ŗ�e����f?���H�]Ɉ�{��
�-U^7߿mbD>�%��0��D$tf�:D�aA�c�#$t��몔T*�Y�~3�~��<��pf QlAi#3d��)�¹iPP��cl1���Z�%�N�!��v#�D�@�@���B�a��r2:ATQR���g$0���`�K�B�Th#� ��>D��6+��R5���<�%�kN5\�����Иfݎ���zʔaцG���Tu\� ����?9�c�U�0��aXu"���X?��z�����D�֜���ƹ�¯�<��E�'֒ ����&b���XB ��V�|0��	��䵬�w{%_�oo+ca+cX]��3�OC�Xl���Z�-^�-hU�b��96X��t�D0���H�!=; 6%�3��
2� �>p|�|?�M�E��K��H����e�{��UZ�'f�f��\-�ıG�l,�@��V�X˵��:X�z0�d@�,¾lD�HlJ��A�}Z��`%-A63����~7z�w~�:U��M�{̂	��0��W[��坠Zj�ZY%�Z�� ^�1�3
�1���,��	#�F61S�x�c�ݜ��#�0�g�P���>��~�-�!:��])|d5�Z�{(��f���mj�{6�][X�g�.�d0��� X�33��0(���a#�N���(U�ـ*֬X�t��o�P;�T,�`.���@}=��8p޷w���fA#1=�f��t9f,TBA�v�31�)Y��+(QFb�V#2�[�w$|���0��@E�hN����6�epᡆ�fc�L3a���"a�z��[B]����QUɂ�Bh:���0f�E�Im�XO��(�A�Igt,H�:�40oAÇV`!��=�,]��������P0̙�g�kk�,��a�zC5,{`�@",�˜���D���"��P@˾��bAހ�Y0 ��ߢ~6a���!�\��ϐ��2���4M'�m���L ���D
��rm��{�
0a��XՅ���S1�3U�עڌ�����vb�������LW>�t4�kd�"��zK�n�
�`���H�٧� 
��D �"�eh����0h
dž)�Y�222�N�;7{΁Y�� !;�}z��0ֈ�I�vV��\��A��,[� �2��y�#�e�H��E��0!$��Š�� F=�j�1���˗W��[y����V�
�w�@�4��„da��2���[DAB�h�<E�i
�$�X�ľL�V�Iknrʁ_�$�$��]��@>�I,d=~R�~s33�u�I��)c�����39h �;6�����X�7�"(X��Ƅ�t�n�f
kZV�A\�VP����o^˗� ��
�
�Ϗa�0�z�Y��B�Z�S�$�靟z:P��YT,wrW����"��MXI>J��^�c�	�����!�gba��+��h~�z�X��ay��M~s!$��Y�n���C++��s�=đ
(P;WȚ��1	U<'�Zl��Ua�N�k�+%�p��(�QT+;���D�����:ض�=�/�g�?,�0(@���$�$� ���

�O���_z1�
 @��!A;���u��t��*��$c-	�T�Վ|�;��a����P(�P��t:3w}{�/�a$�bۻ���)E���,�!�� O a0���$(�<�w�,�/�ǻ��XBU�j �Y@���5��k�aro�~���_���o�[�~����|	�Ʉ�-���
[��e,���,�����a%�������l�pj¥ZP'&�І�c�1���&ֹ�6
���~���<��?�o���y��`;�Io@�~0�;9r���3��-���ꀫV�RՕ�^����2�#�V�xY\�l$A�8�0x{yztaE-ao@@U�r���5����
�:ρX�ǟ>a>����Zֽ�i�߯[��z����w�W�� uz��%�4-��:3#�<�;u��h�yy�����z�8:� ��wk��|��*��?|�u���z,���=�wwwA�A�����b�-�Y]��&�+�� �VU)j�E]���	��Ah��ih��ֵ`��>T	��uN��*�QX��R<�)��`�!��Ѻ�a=)�|��t?��j��`�~�B��³�����JrE�}��``�#TƏ'!�.Xc\b�hoZ� �j���B�����XT���ϟ>|�(CB}	�d��0���ftf��Oc�
.����}���c��0e`�qZ�:h�r���ik��Օ�����n��fM�=4%ٛғ0;fff`P���SG�����>�⴯��En-%�S��ذ��0"R�g4x���Ęќ� �a,��6�K8/����z�Z�|=g�GY|����3
+J��c[�bē�:$��0�'�k
�ǵ��r�\{�9<f���t"ŕ��u�F�r^��J�b`	�� �����~3�Z��oSCz
�ר`!��#�N�&`�'8�@�s�֛=v>7L*TA��~�)��������n72�`B�UU��M��0�,��l/q$��n�H}z��ذ?�*h~#RT�Bh;�;Fk�3�`_ 
T��8b�kߒ׵����3A�3��f�tEB�j��5�%'���(@�RR�E�D[��f���.�}[i$�N�	�oe�
�8p�`D����V��|���X�4̞b�P�x��^*��{~C���
f���C�tzВ}��W3�E�v+��~i��G%�������y�Z�����e���,L
'X�I&�A�	>��������Y�1�M^<���i/*��8C�)���渒��'�kz�R33:�[�'���F9MR���8�_�
�Rh��]B%uq���fc49p��]s>�imޏD��i ����Ç�^��?���i�#Q��?��㇬�x+48����nQ䛋��zB32Ip}I���1�ʚۍ�h�JB94���iZ�����/0�cOA���{>��N��|��C�	���޽��o^�����b}o������kM�ܖ�5��a��l6=n�����>��KF-�Z,Q�Za_+)td�m�U�CG"���l��*�)55.��<��M��M,Y�R30�� 	�3��������E������߿^�;�y-y��m6����n�z�N���z�A��U�!�*X�W3+5Zl��h����U��'h	���S��ky�{T�Y�y�)=gG�t@���t���M-��-�
��'w��,L
���׽�e�1��$FQYXC@�XC��zR������EN5m���j����ԊMV��kE�BID�Ac3a�{	0��3t�73B��_ذ7Y7A�Kz�	,'�dr�ƸH��Ɖec�}2�S���U�Lj��*�������C�Kr�wE`BK"�7OzN��b	�I9�"����a�F�C��Kz��FHB���A`B��LFNG�0S	�����Y_���p�;9���֒Ifw��u��T�dUS3A3q������[4�B<�0M̊���*�)�;c�=`:'�*�T_��z�aaH��8*���?"�n�0Eec<��Iw��m�/m��C����,�Z$hOBaj��n���M�`H��� 3!��	�!���^����na�� r?P���f�.��y�96]����q���0��=�,�j�q��bܠ&fk���7#ߢl~E�dEE�+�j(��l1�D�ã�f	�bt��!a��!�`8;�^��.|�F�>՜�X9sa�nj �z�G��9MrX��>�X�%�Oz,.�O'���_1�г��C ��-��QZJ��5�w(><3�1����l.zc��$M��3��;0F��%Tta�i`ޙ�
],,�v}�Ra��Uh�����ş��n^B»��=<W:lggk=�P_m�䚑A*8�U��%ET���H����@�0	�4�ЙLa!Js��A��P�Օ�S�`�CV�3*k�h�+S~�װ8uu��HwB�c�
�agm��������ae�jD��ij���*�0��W�b�p�<��&� &n�$��t�U��1aG�33Ϝ�=e5���p��A�{
�i`�͊���g+�RWjz��͔�Z��a[T�UU�E��$�'�Q� .T����3�B�0�Aٺz�'D$��S��(|�4�[Ѩ�~~f�W�~?��)4�����E`eH�ɍ3Ҟ3X��܉�%@N�\��㲫��Ń���P��y���F�ơt����j���ؽ<'w�fye�c��A�Ƴڰ�;�љ��Y�Byb�t6�D�s[��0&�\0
l)1���Lj�@H�ƴX3lT [eֻ��j�`�g��+唦r��$0�3r:a����"H�L�3��1! 0"@12ABQPRaq���#�b���?ld�Z-��#����+�yH�Dp4.,��'6�����U�I#L�*�OH��A;oJ��@��l�Z�I���L^��$H�M}�n�QB��zm���zi
袿RG��8+^�p�x����!�4����(���?���K�g�i���M��ȯZ�ISH�SW����[�Z	�jNj%[�+����F��;D�1�9$���7&(�Is�"�m+�i4u:X���j�GA�TS�jG_���`�ԩ(���Emǰ�4���H�1l���<Z-<pG6��$.�_�mƬ�?K���O�t����*}���N�f-�G�ZQ5��]�A"d#;�G��K�t~��2َFy���i�g�}1���FS�d!2m&LYWZ�p����l|2���h��UA7c������l}��F�إ/��H�lo�V��z�֪�������A*�2��<y�v�.��#��"��*O�>Bk�iα�1�6dž� ��QE#��dm�,
LEO�ٝ�{����2~�6A��|y�s��OS��<	�{�VLLN�!��շ�o��6�6N��f�{��"j6�Q(}�Pץ���;�x�	�lo�U8�'��P��I������y�c�l|HV[q�7l�3lc��ID���;?���-/r��H�c|Zl����-�GI
QI���m�A��
pI;�H$l��{$��^�Ŧ�i�$����(�M+H�}���H�v!l��Lֈds�$p�-4��:&�viC�j	0J3xd`��I�B�V��n�H��H_[�!2�H׫����AI�O�;5q��j��x?�U���$W$���xd�$�Q���R$ƛ9!
	zv��LW�x%�6��c�4�6E��wL��&����*H],iy��6}�eU2���"��(�����i��MI��Fj!��;�d�o��M�B��j�}��ɩ��,�:��}�B�
�H�I�d�6�$"^���N6��C�KӒI��?��lvm^3�M��6Oe,д�DlZ-G����n�����GK$Q�H�$Kݎ����zP��C�f1��ϐ�'	�of�rM;&�|v`��i3�F���ɏb�k��A�ZFɼZI촐�����$��>5�A.�Oe;�_��}\s�7Ųc��Ƕ��x���G��tZ{��^Ⱥ�d������<�l���+7�6Oat�]T���'�6B#���6M��4���FI���I����Ge��5h|���3['���E���1��{��ֈ�ɋf�"ӻ��"��g�n�]�H�}CDus��Q�=�U	
���;)��E�l����QɎَ�,��,3;7�i��A/|��/��4Fȴ�i4��0t�1�-��\Y B�ӻ���&;D���)$�P�tjbD!$�3�$���mH�l�o�ɾI\2A��q��*H�6��P��51��㨟r�[�O��ؼ%�dh����F��=T�'A�b�ۍ�o��upE�m�h�04�Rk}D�!@��&���߉��� �kqO���{i�I��䎣'A�`ɍ�%l�b� �v�Y
�_#�j��cVwN�#@�Z��K��ڈ�!:i�&-�G��`��yF6cfLn�P�ٲx7o��]��4N�G[�$����TQ$���F��	V���z�i���m�vC%lTz�(%���m��E"�Bh��Ct�N䈲UC�_�tZvA=�m�xe�iٓ2c�K?bL���Yvqu"lm�Cc��?��#dT�u���ٛ�Gm(��i"���	[gl
!����r��1�H�y
�$&K����N�&�[q��$l�O�V�W�<W�MNX�D^LH�;&��ɍ�>�	�$��N�'l�7��7�7�[��"������N�U�W��`���#c�<y�ѶHRA����Ť�����Λ䕳$�/���UsCٮ�B���o+��� ��ۂ�J�Ƀ&{��5��͛�"���.ٶ91irG� �ӻ�>Lw�c4�(V��f��3���6�;`����C�V��Q���I/bDp�1����x ���'kD�� ��n��s#hj�ÛM�o֌l�o�g�xpKv���;1���3�˛Hѓ�Z1��;'�0I;S"�xW�Jً�fL[&;���>n��D�J�3;3�$�	�OjX����`�옶N�=���*vg���Đ�%��	�N��IےU�gvL['I��(�!�7�����-�Z6�N��)�$�U�M�`�dŲ`�o�����
�x��k���I�i�7��86n����0�J�L�L^u/I�����$7��r@�1��|���t�"��>V�;F�3l_&;��&v��6�xT�x�v*zl�D��N�E�����hd��d��V�l셲-�I*�Ȣ	|�C��	���T�C�5=[�l��c���%o��7�<:��f�Y
u���:�$��^�I�wp�E�&<��S�$�b�(2$Ov��F�����hD�!P��d�+0�dQ��&��_��?�L���g��w���MgA��w�`Ij����5U�+@�b�	
�&�I6j�3���iCo��� Đ�E:��a�ʴ9�"i�S��h����������&��ۭ�MƢ<�nI�-V���xa�$�_HP��3?�ɞ�B'�2*�&M4d�{85��>C���1�;��t��U�t��-?��I$Zy����Zi�7�jc��t�"���p�$�A�9%��i��?�B}4����/����w�Tđ�-7�$�}���U{(�v:ޔi�M?�Hډ���ߧ|vq��x����5*P�'����)���j+U^n؝���&8g���-=�;H��4��i�o�?B�U��u{�|�[e�O���Qy�'�LI]/q�P�S3��Wҙ,�����^�e�^Ƅ-��i�􉾯�&��I��{�^�2	$�O��4Q��[��p����ȴ.�Q�C��Eu�v��f����`My
=#H�K�3�zF�������m#�G�A;`����1�H�'�޵�9�>�ȣ��u6IO��F��x'd�sU厕����A<�9����I��+�&�x+T�3¦�h�����Y�E?�N�O������{
��D���5t!	��@���l��O�I$�TQB�Bl���csf�{�����-���и���Ɨx�#ce��|������"�T�p@����:�l�c&	ڕ����;!B�B��?c�1����=���ɪ��<�H��sNQ[�3C�΢z�>D�Z��~�DH�I�b^l��I6B�!B���c�
��i�1�+��N�_�
s����i��i"��1!UC���t��B���^�O�#�l�}�nc�1��c��!/�C0&П�h��L֤k������-RB���&If.�$���l��!]�c�1�b�,/�h���W�'4�5gĸ�юod�-�_������m1��cڅ��c���� t�WF�v��$zrE��ƈ!m[��pB%�@��%��oS�G�Uy�5Z���H'j�H�-�b�Ɔ1ٱ��
��'k�5uYW����(�
:�����j��3�>.�(�O�6t�'�?�z���4yp|v����C&���)��ewt!mc�(�Q~�Y�h��ͱ�h��h��7��&���%��'z�W�t>������=�����f�/M�-0izJ����t��T�y���
xᒷ�3����t��|O
�EB~�ӆ:E��ȏq�;�����B���ű����ޥ�)_�?�Mt�R�T*�GU$�GM^B�EDV� ��Doƒ�`s��H㦥%Ӂ��1�1�E���ݛ�?b�$P��<vx����٢���
��Q^j(��x3���X�ڨZ�ޢI!�����C��F���l{�5f!p����/QE�Y�	���/d��������vr�̊:��I{[�z��a/cH��Bb(�MC��	��_���W��|�xu	�1�Y��d�#�c��E�HHHllllc����]O��W��"t+.��d�*��>Lu����IB�		Y�v�z��S�S�q{mv��<�xo�_c���d!^l՗�B<5�P���%v�����<4xh�>��$��^e��<J|�Z+�j��2A5	�N��|����@���yv�F�1̾�
E�+-��EWeEl�Z�"�I=�[t�k]Y�~�'Q(��:��H�(�H�5+*�D���Ľ��c��ݛ�d��2P��P���[��۫�@���t2P߉���ICz���5{	�Mj�|��F�Dz6��E��Vȴy��;�c3��rK�C��c�b��Ko���&2:L�1m.	�!���:[o�E�Q�P~��|H���t�:h��Cc�7c!l��S��c��l�6c�ة'��wo؍�9's���
,ƪ�W��b͑���>��u3B�����hl�P����7�
P�o��F6�'Nؾ/;����i��>4�F��|����w�I�=��A$��C�5+G���y"�|i'��GW�߉��4�����$%f��Z�ۨӍз���Zml�y��v��7����v:�"v���Eh�&�ڌl�S"�M��i2IUt��t��餅�T	!72<8��ƚ|ȳd�?I$����U�1|��1�g�����l�ؖj�|���w�O?�줠B�?b�LE��L�6�#{�W���IE��+�c�j��Q��{�B�b���}B��j{ �EE�^��%���~����o�d�д���E�a���vcg�Djg���������)ϑ��v��:�"��MI&v��4�?sK1��zXݱ��%�l��(�3�^���N
ߩ�҉�vI
�~�l�M�l��&ؼ^/.���ǹ�����uy!���b^��g�)�����++�6�hbg�?���_F	މB^ǔ��_NĖE�y5Ղ���~�
��O�J���B�ڧ�m$�?Q׶6I��ػ1���H����?"��B<8xz��d��&��$jz��1�܂�F$Q�S�F�a����BcV�x�C�Ҡ�N�>N�69}'���?��S�!�Zv��
ɐ���o��1�鸞���͡��C���x����ƶȅ&�����F�M?ь�|�4i$�����E^�n���f���y�������D��xuz\P����B����ȴs��7��H��M�i���b4�7�O�D��?��lDZ���B��$еU�&�T�m,�M$fΏIG���*�F��xk�UR'D��$6=�iwm����E�Mrbͭ)��B��M^LtV�g��-߭���c��w��7�{�ˆ����'�f1�"��dF�b������f�]>~�r	�A;����5:J(]>vm��[2K(���UZ��6z�M~D�xy�t=T��K$��ZI�#��(��<�l�F�Y�J^'��i>;Q���lc��vK�D�V�T�7Qy%i�5l��6UO�Mj�ht�6)!�t=B}T�[�bFF�C�>撚�7�m��CH�)"���_R�R�ïӁ�r:7J3�B's��M;2e�߯�t�; ��df������i����themes/images/andre-benz-631450-unsplash.jpg000064400000476276151213255650014453 0ustar00���JFIF��C


 ("&#0$&*+-.-"251,5(,-,��C	,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,���8��������� @� @� @� @�� @�1 @� @�4�
!gF���CH@� @��	�tp:�.��<8��@�褨9Q
TsДkiU`�R2���L@���Բ!@i9�F�� @�	 @� @� @��& @� LA�p LBCH@����t @�
1\B�4 @�B! @�@��A�C�8H��H�B���Vi&��%�;"!@�Q	�q�qەLq&�2��$ @� @� @�8� L� � A�A�&t �ti��|A$	�:| @��! CH@��L@���B� � �М
���L�L�����R�!)�:%u��<`�xt8i��o��19�N��� @� @� L@��b& � @��� C@�Bi&�$�� A��u�!q4u��
�$q�h!$� LBH�9��p�*v�=�CA�T�\�&6�D����
@�>�cIhH9Q3'��=p�f�� @� @� @� LA�@�1	�h: @�C��C�����	@�3�ht}B�1p A�� � @�	ִ��͐L`4��BQ�I6��f�
�t�8�aPp�8�%:���H&D�(�+?�( H@� @� LHL@� @�X�4��!�@��i�:�����t4: @���Q0��S
D�������Ek5�8
B��j� j#N0���g���4���*
a�Y$ä4�	 @����	� @��:H& @�
1	�����A
 @� L@�I�gI�RK�'N<,g
c��ڇ	5:_�40�\V�;$������]	D�P40��a��.���ђ	��
��Qc*P @�$ @�1!� @���$b:Ή
	�t8	� @��!�@����i$Z�&����M�t$�u�Q�AK�|By�9��b
��M!��x$K�ѽ`^
\
��,:p�i�<��"�X5���E��'f @� H@��B� L@�b[@�ć3��& A�� BA�A�� @�����@�G�v�������А*
s��0��:�/�{���j�	��\�wɮ!����JѠJ�uE�Έ�O��hpp8;�L'%��d�4a:�r8�� *��"�(QtHPb HL@� @�1gA1
b���C���G�pt888γ���)* ����j�ޑ��;5<|R\�AJ��������$� �:h��U���*X�
��N��e�Y`�� �z@�ݖU;��1�V����w� :2F%C��Qb @� @�	�!u�$	�h:�$ A�p:8���ppp:Q�@�$T A�@�A
N�B�K���/�-=�L�TF�r(,S��.��ɡɰ:�7&De*s�Bƍ���T�q1�ǧXZfdU��船�i"ܴ\"«)�@�q�\i�Ф� @� @�b:	�� s! @���B�����! @�T �ri��@���@� @���A�Rp'�4�u��55�
2��%�%EI�STU�Yd�P��$�E:ì��WF�����"����Aq$f�-ȉ�S&+�N�=�)ז�ʅ�M�ƚ�M�@� @�	�: Mu��b$:��p8�H�@�A��(;C�*� T �LI����h � CCA��),F�L�1��&.�=�^dj �eV�rf��cX(+Rc]�$�"�OJ@�SaR'BA#�U���`���t�2�!t�&ͪ�^��
����D�֚�'Q�h @� @��΂�b		�H Bp �9���vNP���L�Q(�
��h*p-��6�1��q/d@� � E � �Kc=磦�K3�n��$2]��"
�AZ�s
O@�:�Ye�D�r��0(��4nW�U|���<WEPAT�����qB� .N�RD	�*-�@� @�1bb Mt � @�Z� A�ppv�A���
�8h+�$VgA����A1R�*�C�����(8WABd�qS�e֪�L=nk-m�eI.���y:�:Nt]Bj�f�����Pܛ��Q�rP%�W�.ʩ�@p��Ez��&�C���6�r�C���� @�	�]b�	�H:88& B@�@�� @�,���r&ѓj�0-Z
>�B��Y;�ƴ����h�M��R��8���M��s2NU�(�P���� bӐ\��p���9j�-@d�p��L���e��jareԳ��u�:4+���̑T� a"ZMF:�U�
sNEQp8��E� @�·� L�����.�AQ�9����@�9A�E9�e���\Yy��-� $&p,+>0�\��d�PQ�H8��Mh:�.���]²�!KzoZ}7���C�#���=��u���c��Ӥ����6�=�7WQaQ�@�IDLjȭ=�t��!�R�$q1���94�Z�C��!� � � L@��!�::�$g����
8 A�� �:J����]��F�j��U��1�E0�3pq�r��t�(�T��c/��`(T���=B	x!*H��f��=�t9�v,�J�\�t�+�y���dT9�*o��t��֌6!�"�̅!"�Y����TИR%��s��q��t �ܫV���#E(�ЀÜ��& LB� L@��A� �! @��p:>R� �Аt A� @�9A�MpcOR�!Z��!���ZeE�i���;㦉P�.`�Laí#�)JO������B\�_����u�^gSX�7�mr;�~z*i�5�Y��
�,����B,�4���-7s��u��꜃Q�Tpq�X8A&��&&Zą
�B	�b���� @�1	�RA�@����9A�@���� �RE���w=<)\�Q~��u���I�C�6��ܪd���3�T^��P�:��f�)�!'x��j#�b����Bb�1K4�Lyɶb*
9�:\ZYWI9�0
�4���
Hy@���+M��)�a�'
H�0M��14�:�����r�tW�J.�ei LB�h&! @�@��$ ��$�g9� �u�A3��]�{L��y�&���n�M���Lp%W2�����~����d$�a e�z��:�	"��A5T:&#�|ߠ�h�G:ֲW.\�&$ȭ-M�^�V\bRi.rl!h��H|�"%z���j�Q	@,��$SY1Zi����X����J©K�,��&��4	��bHhH:Q�@���@�tq�C��p&! � �����):z�����H�
�/s^�++��Y�lZ>o�W^����^_�˓�*�r$V�c���sx UiT�cS�fGvq
ot�LWB:���;��Á�1����sMXL���S3,t���>*>��ΗQ�Jv�0-$HSF�i4H4F5�6LtD*��.�V�`�B@��h:�����! �p:4v�Q� �"P L@��q˃���9�I9�¦礊�z/$kHʸ����\/Q*��YhئzH�Υ�چ����u�=�q���hd��9��U�T��1�Ȫ*`�:���Ԕ��:M7�l�=='�Q
�MXg=+��$z��V>
B�:*l�����(�+�f�CӥQ����s��X<3���&�
'�:$ @�Zbt:�������m��[VI^�])9S� ���I��6~.i��E52f4�-X������7m��ny�����{7-@Δ�b��I�f�ƾ���EW�r!��U���4�+� �=
�
�gh�T�jFUs!T��QKU��/�	NA�I�i��Zל��q	*t�+՚�I $��]��)��i1��Ht::t*\�u�&@�: A�t8$Ɂ���t�9�*��OT�v��J�s�IÜrF��l��ME�ÏD��kB\Kp_H���\]��3��k
��0�5>Z��ٳY֩���l�77���yߦTR�k��+7�EG<��\�(��B��p;&�Ѵ�XdU�*�dGrn�s5�]3c���T�s=Y69M�y���EAbbb�	��: A�LAq�%J����M �ܜ�`0��Mt,'��/#�``</�RY&f�C�;3�R�ARl�0΍���J\�q^ʮf�dPˎmK�zv��bQK�jR4����ת���?�trӼKsԌk��H��g<����*b�UƁÐsM���- ���ܗM:��7�k0�=*��G�g���$�]2�^���L��ˇA�8 LA� A�T A�A�� D��*vJMPhp�:��|W`$
$��Е��ԢhLON�y�r��N�%�@Iz�"����ǵMÜ�dA-��I<#��T	
C��MDlg= Uѐ
��;��s��G+5�39�i��Q:g�����`)�}���Q)��S��l�mL L�!�.��d:a�ӝ���'�]F{��}pۗ��h����j�2�Ɖ���� �t|h@���A�@�����5���u��
��S�4y,rP��,T���p���.�,3?4�e�iKI�W�TA<`APsI#�V�q�yըhJ�@9:c�!�!:n�Q��ʈ(^����.ߒ���r��a������S���D�l.*�m�m$jr5��	$��st&hZ,M/R_�_>SnDe�K#��â�]\���H1�>sX��NP!p:$: @�C��@�Tj��$U�ESƺ'��F�1�L����M%Q&�M��&����9	9��"U��64H	.q����É>����A=B�
V�K͕1TXi�Mh�6��iJ-M�D#�I�s�m���ʵ眙�[�륍�Ɓ�GQ��8�"�դI7]m���Vt�/���qDq�6�SZ�C]��Nqw�|��bs�F;
Θ��OT�¾ttJ���t @����@���zg�,:E�AL�Q�<��-^�c�]��
�P&x3�Dj	��6 �t��A�[xx�d0Ehf�UE���q-L��g�ex���εE���8v
 ���Mz�vZND�7�
�Dzs�����	�+:]��碛y����J�Q��tj��ZP�� �W9�'BG4�-�oa7��k�<�J�3�`���]鼊w�w4hUL/�N	�:%M	A3�xWA��9�4��
��m���O���}�=|�X�i�N�Ԏ��z���� %�pz�R�%��j�ӎ.4؉�UiR�U8J�!u�m3���ϓ��A!��IsV-�i�:p˹,��a�w��ˣ,�5�;|켤#Ib�-���cq~��v']~zߎ����(�P�95:%E�47fy�>d�
Ԛ���H���o�Y�[$�NaP	�j<��� �	�:	ˁ�A�yW�._,��ԗ�}g�"{=v���CV��f��@�u�Z�A`�.��s�RJ4�I1�d]K4E;g]�"�C��#/*ZeUBD�	z�BFV)2d���Z3C���矬�U��?Y1��1|45/��5(�Ju6;:ic��uC:eb9y���S��h<m�O裟Ī���j�Z=C�G�:�a9�>�<t��\���ʏ�A�@�p @�����������1r+�6���X����Co95�l�>7����Bt�j�U��&���W�K9FOl���ˠ�V�)�6lb�*9��i�n�;�q�
�U%�5���,�Y��Y��<�!�4A�ze%C�)�&�)���;3S"�!D���T�5�K���Ϣr�n1�j���l�I���&t&���V��!�zzKzд*My�2�0�0���u��R��-�/��A�t �& NPt8mF�&K�+
�P�Д/.k�Pۇ
��=|�չ� H3
�g�⣞���jv�5E&A1���^e9�j�5�%m��)-ȴ�2�f�ύN�lwUW����#B�D1��Cj����⬺�a�]���ށh^�z �
�C��8�.'�A�U��z*��U���y1�U��:ϯ忩a��5jH�.
pI�OPlس��L���V��׀�RO���w�p:P��B@��(:�Hu;��C���'�KՖ\�8�IJ�;sd
��D�NHE�c1O>Vv)p}�,Dv�<��QFqS�g���$)f�'�(p]�mTg��QFEXU��5�%fstb�#/L�6�:O�i�}3��D�ޜѭ��e:�N�a�2MJNx��k[HJl4��������W��g<gT��z��|��V5�h�f� B��� �<�"ӫԚS���$�X��~��L�t�|gI�u��:N���H3r��f\^f��v�D�#gvj�e	
gSȩyf�8^j���
s)��M��Ҫ�38��DmCJD�If�T�U�.�7n
!S2̫�\3FS�E�$��l@F��f���H�
�RN�3Ԥ颤J����2(���k�n+
#M���t�˺c��w8���
��a�t^�j����0��k�4x�Z�(�U�rtF	T�z^h��ig�r#��A���s8	�����	�έ/���B/4%ͦ��5\���Q+�j�e��P���Qy�����Tѹ��6���5W�?=�ÈT�Lh͢J��ecZ�d����G�:5i�����J��mM��Q���h%���\��X�1M��0�^ܢ�kٻ��i�=1%�dn�i���H��hzyN���e��5�z�=��Z+&�"�_����A�'?/S��)F�sx����:B��ttu�$b	�.�$���z�=.+�J��5������Ҭ�Q��A�����kBk:u�{��_�fl�RA`��[��zG��DhZ�H��TS=������u�{�9���T�-�݋��kQ5E�7�Q'Q���cSy�K��-y�W�U>���=�5�44Ƶ�d�H��J4w\�Ԁ��g�OQ�~��m�Bn�ij3j���O�"1n<�f6b�-Ƅ�MVv�N�#����LA�M!t8��:p7<k�Ϡ�Z�S��'r���-39r;��,�(;M�B���Ѕ6��u�S�6�F�<V���dd61�֚շ�2X�In����զЅ�Z�0�w�-��k�ͺ�>}'�LC�Ц�f�˅��N)9Ѕt�Ɠg��>���nkυ�w��P/=FK �kʎ�>�)f֧��E��&:t�-
MuQI�)
n1��>~Z���2�����P(����΅C<�2�>}��88�b%C��tI�H:�Ƒ��H�s�E��ʧ#���(Ϲ�$���j|6_a�2E=&؁c,8м�T*�DoD��U�QƆ ������:q^u3�UJ/lH
��<V�x5��>w蜝>z��^5r�Y��EN�Α�yAy�k��j�ѡ˩��=L��c/��:
Z��y�ĚB�"*�ެ�^����io=nH|�؍��7�SEF�f肌>h�if+9JL)N���5���T�E�/�y�:ιL�t �3�p0>��j4���mj1!�.���G�>[�H��
��P�������M����[»K8�n�\�54�;��yY��bP�j'K�@�� J��L�Mۼt{��:�9��s4��V�%���o�����f�L�k�J]Gc[��s��j��s�����$J��tZf��\�O?l�_Y�X�����Ahћ�O�M��;�0S"&��m�tS�x�{�̉�m�M�'�3<H}#���N\·� @�Ai��:7�bu���3��z��:��Gmdt�e�V��bM�yV�t���Nm!��Uk=
u4ZoQ��n�՟*iZ$��zњ�"����5��Ҥ]8�ҫ:e����us���Ac@��uFd�&`Y�75��j�W���Zbn��G�1过[��Ú��M��^D�	��5��]3;����T�Y/С��5zKO�o@n�oM�R��<b�;E�b�m��ԓ�α����%
�9Ք$Q�?:���9�˙��p]m4� �YБS�B�����bY�SqEڳq��o�_��Wrޟ�D�5��1�Q�D�
Sf�5Űr)V�=wx�E^�
1�k�Z�S�mzff���e��KMT����p�������{&d�̈́��J�Fh��Ƽ*J�?�+�2��8#b8nc�\��3�-M0�i"�jz�[�Y��й{cMLi\�y~��EVc*ʎ��F�#�Ag籙p�('֖&���T*J��^�X0�yy4�pq˄�E=T�m.��JԌ<��<:{��.��%�D4�it›��<.�~��EMq䲳v
6<�!Lu�X~����5̺ghD�i���u��*���(lG=N�
�Z��!3e�nF��:�\��Ѻ�R�6/�Ei �](4݉���4�J��4l�w�a�z�������9�cҠ�4
��Z�ڦ�_r��Ʀ�!��/�`"t6�m"�x���g��F�!7s\F�t�X�$UfS���<�w��s֓�9}W�eETѠ�*wR�j�@�5�B<�u9�{�ҡ����Y>��z�y�d�����og+O��,(�P�>)��IQ��r��zM7
%��Ր���v&��u*3��Z�Z�hZv�,��#˶磷<�s���yY���x��HM��wuY@�2uDIv5%�I|��=�'�q��(_9m3൒�9�c�,R�e��֣IT��!k �����d�������m0μ�&�.)>/;��M�Cӭ	К�HF
9q�y�3�^w.k�'j�Trʫ꫓D�uT)��g��ͨB!L��i.^�ܝ�C�l<�~P���R����J�NU+C5�n��)�Z��J�[	~�ߍ��б�#�d��K1r0;
���
�9��Y0'����Z�H3��`�
z���Ji�xk�`Z)��; d�bb�+��6������C=�GD��rt�ϫ��8N�8�Jk�#LF�7V����'X��J�O^��
�f��-2�p�«��EY�8����';�������f���y�
h��IϘ��z r����Zo%ߛ�&���ܔ�<ι��t�th�S���~5�K{�i�[�F�L��1�N�rN����u��,0�i.u��0@��S��བྷ/��y�P
3�<奩�˴�Q��L�!���)ؼ�,҃
5�i�}0ԑ�W�dtx�:.�;!�΢���V�K�9*��[>���K���^|��i�^�I
�ԯ/��~��:n3��i�����B�c�-�c�-q��A���zzz���a���,��,��i���q���n�t!�5q=[cҼQ�L����7����J���S+/8ѐ���ND���&��/�8W=Ƞ!o"���^W��ś��lu��^�$�M��)�js���j����t���� ӂ-����q���W�J��̲�E�(��3^X����d,�=7���nf4�x�a����5ţ:Z����p'�DV����?N�=xO�g��Y���P� 0�."y�SK���52S����h^w-:i�IG:���}>_V���i��;:g��r���q_�7K>�`s
i�$�IX4��:���O<*䛩Yө��Szi��zF�9P�7��R?L=b����J�*�Y~��S���ˉ�%�Ԩ�&��6��R��N��$2S�i�,ҋH�4L���F�&[�wI��'CJ��cC��_ǥ��o==,EF/^v��q�}�\t�|�{�9���N����s�^�J���{�-[��mO:ڼ��
3���!�����0	�5ݭ}�z��jš�^M0.?�z9m-ƾ��@��f�]�"��y<nT�nv�B�4��#.��N�|�qT�˭���ԃ<��4/%y���egB��Zh�ϜTBՈ�j�)��̭�\��9R�����)^r�h4�p5��,�|�f{n����M�|��-
!��w>�]"*4m�*s�*,d�i��Mh� \�;�Az_����3��A���tr�x2�Rk�7���D��<^�~n����>���+��g��O��X����$.��}�v
�y��V޽{�:ل��F
�/j�z"~QN�A�_��H]ew†��\�T��*��S\L��3Zx�50Ԋj�Βκz.�q�\�-Kр~�@;rC�zzM�+F�f��:�p���I��sL+�]#�3�6�&=�^�I
�ɶ�mFl�
�9hUY�����z5ͪa-"$�"�C,�Y$gtT����AƁ�̓��
Nf�'.a����1�D�t˖����r�J��qy�W+�籦`�ʶ��{8�l��3�ҋ>��H��l1������g�<��x����`�rF���O��!u�
�F�k�Y�s=3�QU�9���a�x	�z"��m��8��0c2�ռ	d���五��=�JK7���zz��G��H��ti��<�����q��!]Mߝ
-4 �F����0v�����@�7l~�<
K�y]��dV�:意W��by�i3�z�>y�����Qz5Y�y֪J3t���t�ij�U"�Hj	�;��x��I��������sg����=���I��O~c7D��F�]#ۻ9\�L'O������9�Y<w*�$BK�S��g��!7�:d�vz�3�\�����L�ڐ-����lZ�Z�R,���u*\e��
�Q�Je�<Д�ǯ��z7�ۏ�Em�]��>PΟ>��u�ɦ�N���B򆣐�l[-�Uu��-[��Qd.��K�uf�gG5
,�o�(��z==dzϴ�`�z$�7=weg��9�Ҙ^���2�7­��/0$S�(5��:��x�V��f�ieN�\U��k�}p~�۔6�^�L���<>���2�1̘k���,	E�w^��\���Ip7őV9)4�
σv{k�鿎’�Lki�tʠ��:Ҩ��*C,��f�t��s=�f2�[Ut���eH��H�F��Ӣ�Vg�k1}<����t����.�1:Y�%�%�z5��;T������g��7:�P�u�h�s�!ȷn2�eѾϢۜθy��U=�{��bb��;|_S�SG~fi�R�`���)N�Y�V���b*a$h�AGvD��l�V�X��==yݷ=���Tδ��N���yݪ��0�[��2����F���Ȅ8)�q^�y�,�mgV[���1�1�NL�6�`�塮t�%E��M�WIU�CIp�a��箯�箷L�돐T�3J�K؛Y���M��Fv�:���[���K~c]�Y�4n��WdS�x�S�$�����O�MUTD�&��ێi�3��}�4��_���P��m)��������4��#�u��
���s-3SOL�Z���J�-��&��4�#r7�$��B�`m&��K��H�a,��=}�j�ez1���U���4���t��,�+�*e�s�\�Q���5�5��C��S�ߚe��VF�1П��z_��>��5g
GF�YUj\ʣ(�E75�Z�q�O���ut�Q�L����DkM2K/DU������O6����9�ֹj�|�Z��׆t�bh�]�Ҍԭ�Ws�r���%�J���8�}��,���D�����9GV5t��=�ˣ�L�<�\�+.��nJ4���V3��;:�c�����*����M.��Rb�-�Rq��W�����;���u���8RmM��I:�
�bv6�z*��h���u}��+fVN�#U�tyki����u�3	M��}��c���m��:4�kNe�`�N5%�Vu��L��2Szi�E�
�8�	(��m�M2�\��z��fjc�*Y*���X(Ъo+!Hć'Ay�dy�P���ӟ��s��Ũ'P����G��{�F�r�=:o��r�|�L�̚N�):h兝	g�����m���>t=<��t�4,���2��:,'������lk�d�(��K;�>�j]�r;Hȼ�d�\�i��Gr^Yלq�\��F*��$E�4�u$m���s��b�9��i�����uf�=s�t%��yn���'
���Uasc��,n5�57:ӗ8g��S���MP�����
�%)�t��ի9��[U$�B\�Rk9l�@��.����q�寷~{	��'��bEZk#m[�#Z!����oҳ�������-���h���}�7�|�k�	U�H�.�i��O���zao<6�ϤL��]��[,�=\�F�i�oL��`�����^��=�b+Ġ��g�P
��aY����[�'��=�0ę��h^K2v�����0H��֠p\	8Te�T	Z�DŽ��t+T�ts��w��f�N���z�3���:��N�٭�v5>W������u��Y�,�kB��h���돂o
ךM��[�\�&�T��EZ�r�,m��vu?+�	Ht��{��VNn�zi1�����~�nj������R*tk��}�7M��8�m�Q�δ�c止�M
.G�d�������-W~oг�zo��k9n�Ԍ�t�-�Fۅ���&|����KF���܂(�EPLy-E�ڂ��
H�T��Z�	��b��ZA��Iٳ�9"J\��<���SL��;.M�n��9��5x�X������y&@ȳ��$���!��K�7���n*B�+(*<�7��i�����Eicmz�-���mD��f]��T;Q��{;������W�G(j�`�}!� 0:ƒe����y��c�4m]Ać7LduZ��X�<v�sL�R*YUt�J�|�0�A�)�(
9����ch��-
9�.�������>Β �JP��<-M�B�XU1NڪDM4Hv� ���뮝��zv�"�i��=)�PSzy�j�RT�ï�Ng�3��5�³�o9#H�ώC�΃T�;��7ˌ�S���xy�H��%���}B��,6;�T|ep�+E]I�f�=�a��e�����~[�/4���1>7(��!V'b|��8��e��EE<� 蕮��W[��T���G�T�v�n���(���U'I��|T��5�tn��)�z����C�o��I��QT.��B	ӰY�@��DVs
�+�tQ��u��`a6��$ذ.���S��i���X��5Z`
�>w�Y1iʓw8j�F�d��Z�l�5]��<�gH�9�)Ŗ�*3���$j�_\���:�U9P1�6�8/�~���p޳ro�g���O&i�GTԢ�!	[�>!��}��Z��r�ۘ�X�a4}�Y��>UQ��y�y���1{8걇]2|�O<u��5�	�	Aa�ƚ�׋�z]bp�Ϟ���'.Un\bx4)ÁT#*1=9U.��0q18sS
�w֝��:r4�δ"���8 �tSUDF��U]��[/@�,k��:�ck�@��^{-���)o��:s�κ]Sڣϸ������i��sQJ4��ⴁu�y^��{9�vk�V�Ψtt�޹c�R�E�Y1ܹv���Vz���y�&Շm��2!	Pͻ=/㷡㾗+�.���U�<o��꫇T���QIhG.�'�ۙ�c/���מ��3��i��J�h���<���q��W�����i��'�$�2�(
�+���rƃ���\M����f��i��i'aN#r��I��@�M$��ɰf�G� 5�J½Ι�k�
i%3�z�Ԉ��T���k~�:��|�=ξ����_=&N���Sͺ6#����I��n�r���;$�x�бT=N��/6Ӛ'��FX���:7�8qMF��`&>jI�ѱ�U����F��+f(eMz�qkH+*�s�{�z�oW��~��?�s#u4ܒM�t�F�7ۗ�q��(Vb!�<��n1�ޯ#uʘ���(@�QJ�����.
�ZO��΅��4�q�ѡ�փ4��La���[�Z`A	;�zK*m���EM�ju�f^2���m"A� h���k;���>���m-y�W�S]��+�iFTѡ����s���ֵ��-e�}��y�kε�$"�zE)��)�t�yZ.%\M
�ƚ��K��c�u�.Eub��W�Y��5� %�Z�K�M��oA��C�>��O��R��L{8�n.(�oq�����Z�*E����s<����i�f�
!@�L�R���m	\P���cIʁ��܍�g�Ѯ�T��-&z���9`�"՗�*�Z�+T�G	��MB�ge��O�i��ٌI�)����ve�;7/9pL�ACb�M�(�дns*�{f3�Yl�׵DwG֫i�gnA����J�W4b'H����/h�[���(871�sv(�R
I���O��塘Ԗ;i�ٳ�ҥ�f��ט>�R��`"1d����U�Ƈ�*ΑF�i�b�p+��db	�9�%��ۊ�X
B��10
iB�h4�#�U��TkN4"�:QJ5��kQ��X��.�IIM2�^\��N����kM,�B�ձ�?�
��T�3��^ѵ�<�<Ժ(�͑��;Ƶk7Yq3�S�V�z5��S*�z��%4�Yw�un��SL<V��5úg 2��]���L��p��t#�x�t��&$�&f��c�mho=�st����UZ�~���cuµ�֭i7�zl��'�"��hruծ���l�fbX�2�Xj����1@�wU��Nq���W;�:��aX	��6@.�b"��Vn�P�:�[��C
�����N/\�����Hj�P���Mg����r&k��Ѕ_�)�y�$B��=&&�:�a��&�%�52Y�˦l���oO(.�A��y���7��/Ӳ�b��m0�f%�*��􌪗��f�k.j= .Y�g��c�[-��*"����u6繶rR�M9AY�EE։d���v�Ѥs�o8��cY&&aT���d�:A��2�4���.� H�]���:�Y���͐�)�a��-"�:�C��s=օ�ڬ�賦_�C�Fd��큡�*bp{�>��k�Tƨ�V���	':�+�RNx9U4�H�\T��&Z��r�h���f�9+��^��.����{�>��x����}s/�rs�"��2��c��^y&��S�Sѷ�s�Y�2��m���m3���B"wՙ����I:O:��}
�ؑ�2���u�"䲣�\��
�0�i�S	�0���R��b��
��	�.�x�"��a�CR+bӺ܈�^]J�S�x�M�!�k`xe��NЦ���T��V�=&jX~!U~��Uvg\f�R�pڞ��&���9SQ�x��s����.=��o�O^yt�
��|��Iz����<"(�m)W�uҎ����	�]i��:Y�/�=���t�j���&�`ɫJ�"A�J�mOT���S���}�yE|�9�c��� )mI"��F��QT�!��W����nW2wh��D��H� 6і��1��]���ͫ
�RǢ���)�iYV�3�a���7�y9!W"�_BEz.�#м�U�9�=W���o0�gcY�^Jf`�ܠ�hoD\��a����zFk����îv/1�k(`�7Ͷ
)oS��2�����O���&�~��Y���M	��e��=�R*�L�U��VEa�*����H��vt+;[j����+W͇y�Lh���G��$�����cQ�(8Yd
tQ�m1��r5 :���E]4��m��Z��&^9K)���1�\�?:��Y��3���q�� �ڨ���eTU�=*h�
^�'*|:�l��v�i>J�M%�.���$�Ё�|j�7��ծˠ=6祯?uϚf9ER#�*�͖����
<�l�b���:D:(��Z�\gPr��U�c�{U�}��I�KK��	�D��Z�[���O�<�iρY����;c#�tӀR�iU��pc��Yu)7=u�o�#�6e��W,�z]��퀺�L�%��?;]�m��Cs���-|�ݹ��Z�^����͗�+1Zf�@.�侹X�0���loV/#�\�{#���.���8$�Ɨ�Dæ�=��Cu���W����͢�iꋪ�Ϧ�:��e9:;!}e��-'1T�i�4U���A�"������]Nt�r`�M:0�`k���S��A>X�+���.BK��t!C�p�A��@�]�M<l
S�]\�
s��<N����s�f&�
v�.�z�J�F[l�oϸ��:h9�R�^��z2����<�.PI��@QSkj�F{�|&v�<No�x
D`�����?=@a�K�gZf7L#�
w�w�����
�ϝ��=4�����od�|��m��.jT�Oi�]�_N�np�*�G#G�r^�Q9����ʤ�TzR�u�ыό�\i\�DA8fD!�w5�m��{"N1p8
xY
閚���	֜iai9R˱r�r��6�\`se��C��3w� ���ۖi��5Z��]��|�������a���7O+&#!�n�rp�<+�T��	�0LE�q%
ih�d��?N����ˀ����Լ�^sTW'��nl�#����a�J�rДU��e��.X��AZI�	C�r%t�꥗�R��L�e�6���y�ڃ�`�9�#H�;LN��0�-�ds�B�ʪ͖�lN�V���0M�tv�	�#	/K�Z��8ij4�~瓹J����Z�sA�6�f��F��H.�s����q��A��Lݯƃð����j:"T�l��Q3���Z��s8�h�P�@�0��3^c+5q8,+���\�x�p�4Ž%�3��|yV6���L�{*!#��Chpq7'2rT�@�:��Z�F�]4�f7����^k���"1Q��y�N�4��}����{1�w�Ro����<��wL�y���zeƙhw;�����j�d���E��f1��Wj-�fz��^�|%��ҩ�R��h\�%z�EE79#`��V��QF�J—,i�x�'.�Au����^w/+:Kڍ���L�+�����P2�s�t�5h%F�X6yE��jQA�p8%cQpi7
��N�r@�N�Ȝ��-,���F�<j�1���JL�}��$q%*��B��M��YjH ��\r���ʛS�n��͔�Jδ���k��r�Ǣ��w5+�F��M����MS�]Qu�������>�<����Oe����4]�[�fR����"	��*�D���Q�}GU\ZK��l�٣��V���1Ŧ���U�p�(�E��I��L�y�D�Q
�eB��4`�d	��\1US�һj�E$��QZ�tȫ.m�75/�I���VhZ	2��5+�f�M@�a��z:�Y�ʋ�'t�MVWMS�F��h)I�����\�s�����
�Fc	�^�Ǟ���Aϱ<6�aщ�sWF9n�@���
��j6.��?����@�T���.�)�E�p���QF�l��\��T�n�Qӝ�j�|�U]�4S3О[�K.)i��2U0��&�i�%1TKD��T`�l�g���ɷ�X���&�6�ӊ����A�_D]���y��0��<
�cA�ˉD�@����y૤�䛴;�"��e�j���6ft;�W�<[վ󗣖�O6�eg-�Ɍ]��Z����.�W�C��9�(G0[�/<�������	�A$��cJ�\�&7�?#P"!Z�꾢��,e�\���ߝk��-*pYTi�iC�Ν�x��C�:�L�\�E��UU���86�9S�N�P�x1*��(���a%�ͰOsN��lJ"��sկ���Tם�˜�3�*�(�5A��1	�J�3D���NH���q��$�AL���7�Y؆{2.��vt*�gSn;}8����!	�K�>ԃl�΄���pzp�vZ���X�6�yߥ���~�2����:r�����i'r-��pm�/T�U0�cK�m��0�=�)��RMi��L�⛝��}�>���6�]2����lv�Rb�3n42��2��@��*0�@�*�>�t8�3�.k�ƞ2TY��Z�	Ѵ���!LA��J4_ezA����A��4qM�tZ�
N�U�����]+�Yy�����tݙ�R��d��-o�}�k锵)S'�:�Yִ�g�|�V5/V���r����_-m��Ú�<l�oMq�lؔ$ߧ3Q�e7���Os�IB'�U�͛U��y�z�#m<ߞi�{lHi��&J(`��H�=���u�!�s#y�f��[)5�V�Q-�z&�2�j�V�I\ɋ��'Ún*�3OL�;���8���f��bi,��-�9Y��ږ�I����o�=�\*��Mp�<�"VVj�S���l�F��8M���EY�I��9MH�X�`$�eǢ�g�x�Cg�}FYC�/�z��i��~�*ۜu�߳��4���I�&�d�<8!�G��b�ahz�R4��b4�>���訢Q�
�h#�bXns�l���fL���UE*�q��D=��@x��f��'J�u&M�[����qS��c`0>�EQB�L�3�?*�)�m�} -Mv� HHt��҈T�l^y�3��h���3U˱�ԩ�h8��Zf��y�Hs���`u˚s��o�wr�{��{�o/8��s�w�=��O?v�i�gI��n:�Q
�Q�>1�BDӲ$��b#U$�J�*t�\�gUf/!�_L(P��U ��c���}.��m��2�dR$LW�c6���z:DZ�؋���¬���7�'\�qN3�S��ET,�V�.Eto:��ڊ�,!����u�s--*Ne�\�Q0�ɻ��h��La�5�]'�@�\���p:QK:C��������1DZ�>���+�ͮ��AZ�qۈ+2V�����C60��+�m��%DU�5z��b�n�p~;yg�]�755�Ԗ�������'0��TA�u��rX��[�Ay��9�:!t$N�u�W@�r(��$�'ƺ�P
��ͩ�B�C�QUw��#+!�1i�*aABn��ˢ�ŰUju���"��↪%WU}h52�s9�(m��\z$b	��U�B����9ZBNEZ8�L��L�[��t�z�ۋ7 �qK�u������Ɲ�����
���A.*f�nߙ�ș��x��	���"vr��F�����͝�nj��+��S\�z��V���zJjD�����T��.>'\��M¯�Jm�A �MqHN5��ָ��!D���� Ct�'�h
��5oHm�V�oTɫ��%��n��۞����ł�p<,3�D:�3���p:�΃��vH,
���;�8�n��H�R7�ɪBhtNjvaARX�!�Nxs
�8�����
g^��.�>*T�y[np��&������DL���ޚ���5�-�5�6F�cpM1h�14n�j��
��`��E��oL�s�D�Nij�1��C�1�h$��!G�6�Af�ݢbk�̉��9
UeY��t�عC�aWn`�cF���pB:�gEѠ�8����f��
�Q
fZ�0ި��hD�����Yy4	�m�tL�\P�\�7~z@�C�d-�H|�"�d��*ξ�:��8DVt������
3��u/&�,[�SE>]2�MTUW�0�W�	�B�H���%�����S
�B�Fth8���^�Z�'8,����D	4\��8�u�u�5�� ` �* �p$	�@��LATL��@�*-Y]�B
�b���M&�)�l$�7I�:�5`�5B�Q8{�!lu37�F��VF)�,���l�\SOEZ�Ι��4d@���p�f�*�T@(�w�Qu���%�¦�ehn]����	R���΄`���88K��]TR�u��b$���-���U8^
�4�P� @��@�@�%��Jm�H�P8]b��a�V@I#C�0�!9��8�"`(���^?o����N^Ԯ����ȖO>�bi�M! l�y���a�7K�U/0�B��.R��&��E[�&�K����U�H8�����zB����Hӌ
B8:G��=!"12A# Qa3B$0Rq@b�4CP`r���%DSc�����k��[���k���d� UhU1�JS���sIpI֛Ϝ� |P�_
)]��o�ԊX����ZV,b���v���/���"
�����X3p�zZ�q��A�>?�.8�d`y�b.8���q��I�QǤ!��0�<�Vc
�'Ϗ�,U�"	�U�f�`������ښ>��	��Ic�ާ�]F�}����P����Ⱏ��ڳQ��c0�ձ���z&2!�Q(��⁈����cїS�>�������R\o�ϸz�`���|��J�hh�:�R8�1۟�#$+�����S�?�RDgmPd��9$�����H���W<V��9���+�V#9��8���F�B�q�1�'�X���_���ϧ5�5��1��6������ղ�bW<P��G�R���{�=\�ru���<��ZO��ݣd84���2G��m���L��YہKl�{��I�ݵ�q��`�k��GFRNp�,Mf��QDgmTd��pEc�~�P�����
�
=�|1-3��xGa�ͼ:����X��l6�@\Ƒ����x��MQFcy���Ħ��}��b�j<Bhz,�j��Q�Fk>�5�b����S�8N�<q�YD�E���k'���S@R|
K9Xgc�˚\����e�UտHTP�Gf��H�r�$m!�]$��q���H\wy�_>k�DB>���W�"�6�;}��qM
�x�٩�`+Ȁi����ȣ�0O>�f�=�.qA#W�p?���
���"��#��Sj[x�kq�.���&S����"l�_Օ��o+$W�{#����n��6P� ؿ��og`b�X��~�lRO�+���;uvwݭ�z.�T����3��ʲ˰��y�qZ��@��̶�BH#4F="+�v��t�}BշD$�Q�k��"�R���Q��플�,02ɨ/��=�$f�q
���#R�K��E<Ї(Ϝz�C��xW��-n8����6��k�[N �R���_t��6y��5�P*Ln߫���_Г���������Vd\�
�d�7U�j�X�Wq�2G�A�l�v>)-��c¥�RL�����>�M�	J�4��%�R�a�Z�y%�I2�7�`�q|���F�,�f�����
��.h�A�b�>V�i#`qR!��Ϡ�k�^Z�ƭ�6;��;pMF�4�O~�<��.u��Kl��(Q�HV������G��'�
�Bik.��O��R�`棑��jJ���)`���c�S5���2����N¶���ד5��F��R�Fi	��������Z�|Q���:�*�p)�V�3L��G�Y��+��j�x_�P���������qȓZ��^�G�Ԗ�5g9c��(��a��?�h�d�����&�]i�id��a��$F<f�P�*�֘��.�ZE�lL��&U:U�X�+"����/U���6G�&W3�3/I�t��s��R�<��5�j1�����)�5�P�_Za��枓wx~1ݚ�P�8���?��Q��i�n2h[���_`��2�0D�L��Rp�W܀;R�ԟ��6���,o'�����k���jLCe����{{�~���:G�I�x������|�H��F�	;S�ѱ��u�mYpd�V8���7��&0{�i�O��9V0�b�0�4��Krڐ�մr����+�L\�psG�c5��gjA
I�6^��ڀ�aj�ˀI
?.�p�u�ō?�m���摓�ݙf����4��j.���x�Ǩ��8��j&d�F`cTYJ��
ں��H�)e�y�&��A���ɣ��h?�h�L<�B��C�sF���Z@pȺ��9��(�4�t����ۍ��j~�B5H�'�pk��Z+�o��;4q�`���uFh�7L�Ӡ�&�ʋ��b�#!V6O*i}™QI��]������@��b�#q��9���;�k��&�B߭ͺ���	��$E�$�� �>���"��u���N������������,sȨdTID$�:�� �@֠*�߸���U�8��2XqQt�;{�d�N�D�',H�L�yZ�
y5%������������Iq.�щ���苯x4Wc����N�U�.d�I��r�I�x�g��,�!���W&+f�

�K��%_cӌ�A$C��&PmS����t����#����f������]:y��$�������>p����8E�-d�b�>[#p��a��y�c�ҡ.Z�⏷Z>�'8�R�h?�v�"��<S��.N0�������zz{pnZ	4�&��~^!������^
[�F'gOA�hi$`�1�`�? )ϒ3�#��5�v���I�5/����d�~�s�}��
{hCL�di�C3��HT���:��g�x�L.�(~�L}�3�h�3Ȗ-��<HFW�e�cr�S�����ڦ�J�#�	]���>�kI�W�,�_�Ey�c�f_���Ю���X�IC���1/�Xiz� �X�䴅�]T�3;э�ȥr����LG�b#ɠkV �dr�Qbǟ?�p�R���Q����K{�n�
����("جe��\��҄�H��R`�⮎����Kw�.	�⣌������3��9�D��]���G������#�yu�.�?�*��m�W��+j�
�ϨU�3������޵*���4�I�b�Z��D`%aD�:nd/�ȥ�Of�H���c�.\�q�*�*)�
���S���l�c4�8��5�ELiخ9%y�z��E�Z��6@k���=����W7H�1��\OBH���d��*�W�Zfh'�Ԩ�lҖ����Y�)ݮ.ئ�u>F�P��G�6�r†��)�g�;f�)��tv�"��-��ί�:�Ϩ��V7�zI53<�Q��Be�]tb+��n$��R����g#�h��A�.7(�nNG��?4��#!�T����
I�
�L3&/?%�O�-���+��0�]�%Ik��9��������b["�j��H���lo\�S�늊߫�£��r<PL�4~��r�WBN��w#!RA��Ѩ�v�WO��ϋU_�]�	��::�\�{����r{����B�
��N����x\�?-�6	⟈�x��1�ɲ�o�ǡ�C�1�gޘ��Eeq������xI�Ȣ��"���%K�{�ZNJ$�|�e��8�N��Z��Iy�S��V�g>��
k9��yj�(*6�g&h����0�~�A3(4D/��2֮��%u�c���kӜĸ�i\N�jI�RL�Iv������ھi�`;�U�N(��ml����^bؕ����2��h��u�8$�K�iVB���0��by����c�8���.?+"��%��$��Ρ#�d]�,�	^\As#�I&�+�>C��X��<9?��g��?c�8��cB*ֵ�(q�K�q�5X�5mu�N�n�ݗK:�J3#�a��
��N"D�iN�NN0=1_�K�����Y�����L,��Kmz��O�F�5���q#�y]�h��CdV�^3����<��U0K�O'��Mv��l��W��l������JO�G�`cv.ğH,Z�,�˼R@�r�[�rb���`P=G#�8F�Y���ܐ̼�nrFh�$�'��?$�=�b���s�$
!dM��S7�L��U�F�9�K(K�N�D���+*|�}��N}}8�
��k��Q8�E:���L肏��������X��<�(���\͖����DR��t�!��v�w������&���<Ӣ�tm�"��jAvH��^
���5Ŵ
e�ɐ����)s�����?h�@��&]{)Ѷ�uٔ)z(�(���O�����$8thܡ��nу\��3Z␕l���s�[����IMIs�ps�@piyϢHѶQ��Β\���I�%?�򽵁Y���#�K�0�mc$ѫo�%��ӏj��f�_�#�i$u
��6f��ysD���Ph�����j���P��ν6�i�2(+))̥RR0�+3��kRA"��c��oh�4zcw��5��T��л�k�0�Z��Y��2�͠���0�q�g6>}n�3��~��jze��G�lcu-�{���._%d��Y�ZIX�"ȭ��3�.��#�h(�Q��=�M�r���ZbuIߦ1I�t��E�.3�-��b���+�#h�ž�^�d1��o���4�/T�T�>dU��&<��t^Лr8FTa
?H�N��s�M�;*K��0�J4�yo��z����Vr��Wf���[l?<Vh��j�p�Nأ+h�&��Ru§,d���� �G�OnE}���X��=?��3t�}�"��!5z���IX�ϊ�qڹ#��9�?��1��Jy�I�R܇��>R�>�g�+s{ֈ��|�C�sz� A��3�5b�yUsc$�È�N���%N���x��p�D@���{��w�|�ˆ�DZF�ӌ�HX�����\�#|@���]MA#鋔�N��6��wF�<M���vf<��\�(E%��A"��%��B�AO�I��3>�T0n�e��.Ȉe�"n�1$b[}LmB�F<S�x4k���5쭊�4�n��y&[�_E4O��.w-�G>�ڸ�[�n�/�e�G����b]܃棕��e�q�c�IS�� g���k�8�悓�
�)�AI�rh�S�v�������r����TRrk+���fB<���`A�UN�"��V������������qP�ӗ�x��>ኗ�v��1��V�r1F�8���P��<�r*C�Q�Je�P�/Ԧ�%�Eټ��Y"9S�����z����Wt�i:��Dg�5���q�M�69�2��sQ0F��B�4�h��++���d�̼�<��FXTsO;�c@����<�⊂��_<�4N
��H"F����	�Ir�6ʵd�W�z
��qRN�w����H��L^@�-Ų!�5ޞ��x~��гN�u{���)`_�k��9��4
�8�m����ϴ��9�L��CWU��}�5��n�E�ؐB�0�W�0i���8P3��g�������dԀk���z"�⏟Ч
_đΥ=�<����4��3�o�ԯ�E�菣#�/)n
K��o� ��,�gT:ĸP�#�_׃ܽ��T�����]0� ��Y���9XܫMb�_��I�	��0N~
g��Y�)乘��*>3QtR܅e��e^�Z��q2�ղ3\���O��/�����l���|�ld`�q�[�.��� h6�'�_5�#�b�g��t��*��)[�7҈Au���GF]�J,��:�d����|�h,����(�q��-,�N�H}0��P������̤�����q�SǤ��c
�r���[Ŗ���)�����P�|c�Lq�LqXS�ߤ��O��b��i>����j��O�2Bmܘ�.BT��
����q]7``�b��z�
�����+l�$�+�QYي���-�.�0�*���l���QA�]�L��;�!��v�kUd|�ce��A�g�咏���1��|b�F\�S�[�ɮ1%
G��#b���xDհڿk�0"m�w�J�ǁ� ��Ba����%���m�����if~������t��}�f��i(y�ц���=/߶�5�a�^!$k���Q9��+��p�ec�g_ۦ�v�BFe���g��7<�*o�M��jkZ�|T_O�O
j?���&���=iv<�	>������ecS�Q����s���es��|�
�˲3���\�N�ƭ����E~r)n2i�D�hⲺ�;��.qC�1��ԱƳ�uT��ksK�e�|tĕ�!�(�F���4���i9c���?'O*
3�a$�j(v�w{c�e�rج���RQ�o�"�@R	�(�35���nAFC�0j��5$c�zD�gaD���bsw�l�j��C�բO�3]l3�!]�JJ{X��P�5�(��٤��#���Fr��)r�r����Pڥ���ʹ0E�uS��f��hP��(�
��Y�K�Zv�1]aL3e��gH�,O5�i�;aM�#lW���tS,_$��Z�^?���v��nU��!��?F�G'4���T����	$@H)o!���K~��{q����t�����I7���K��p3]>+���k�:
ӏ�C�㊍�Cl�J��G&�����H�*6>MI�l��LT1u2+���q�Z�+�&�u�ʌ���M��1X��G楉`���T�$��o&0H<$4<�:��]<J"И��G��5��[lF�*�i�f*���)$�i�-Z3��8�(W⇚�Q���#`��\u��qĒ�2�tv�֦2�_Xzk�c/՗��F����w��u�˰�i��Fj�-�]��f�9���W��S�4�"����At$��e?��=��P���>�K�E�ƫM�Y?���mjY�c���Di�&�����!����՛4�$��=j;)f�-���H
Z��K~�M?R�w�+-��H��N�6���b�h�Gnj���-�q�?ɐ�.s�o����v��\O%Ļ�2ZL��/��aQɁ���N���!mE\O�m�L%Lp�r+?�$-i�4���#�c���TH�>��G�sF��D�.vr}���(��ɯ���@/��M5��P�q���g���H�;kWQ[����]�H؝dc�����}-Q�b�����W�uĮ�+��#���#��w+��+���F�	$�T��D'��A�Qk�4���im�W��BF�q��Y%b�5.���%u���8�!��`\Hx)+4�K}$�㶣kfW.r�r]������sH���n�J6r\j"�9����zP��]�Q��L7��O�2nB�j�l��G+��i$FWrԠ�h�m*�-��&�l�9ш�������W�4�'i":2@�&VL�Z�vXx�f�2Ϣ(Q/�N�:�𹯧�[��z[��M<j}��"��<�.�Z��U˰��՟0NJv��ں �����-�@"��������?"�
��N��s#�"��Ǧ(��l��������W&�5�P+�JSŧђp+�	���H��tEr�Uq�_���K������!Xō�O���h?z��7rh�����VÞ(j��N�E>94=��,Ny�Ǐ��~2j)�݆�	K�(_�"��*�)�Xyt�f�\d-,�9Ci���9��Nv�.���LqF�%�v�V��v�8�k�g�����i�<��� e.<p6׊�irv�M5�E+Lc"S������T���{z"(�9��}�u
z�ݙ |�U����4��$c#���!��8��o���74_m �~Q"�M"9
,ʩ���ގjlu���r4UR�B��v%�-%�1|Em�}�D�v�-$�d���qc<�4�
$Gl�C	� ]��HO����о)Q�Q��7!a$��8��iƾ���,uom(;C��4�C����F��R�z�B�?�QD5rfg��:t��K@{�e6�7��H�}c~�۴��؜Ё�fЩ���C��6��`�z��t��7�[��������8>��nL�D��)�h9�*�s�n�����K���p��mu�j�w��x����T�+Im��i?�@��
�@�H	�<gv�>��9���1YSi�;�9�h� ��Q�a��5��:�IƁe�ۗ���L}*�7<��\(-�����bgGu�}AjK��QŚD�O�
Kqj�\�V��y5�̱H��˅u�A��pk��?�8�����1
�\���>���(-ڳ#6d��f'��5�~ՍN�iG���u��ug���NJ�\Ḯ��ǗB�̽��d�K'�k�ԫ����b?�
��I(�O=iB��v�#.��.�ͅ��m�^\������g�Q��-c��������Q�u�5
�|�>Ǖ֕Cbf�q��K��o�	:��a�"�H��`wU�꣆�K�|�I�"}�e�s�&���e�qI�آ���z|���x�kfƠ���*)
�k~���槾O�6�{HM�_��\���y���4��zq�H�7�y�''�W��}#���ۭr�h=Ϋ��QQ�Բye����N����	m$L����
��g�H��jte2>�`�[���+�8�`Fj+�l�3�z�j��+?c��<�3+�s=��Cp��[�t��ǟ[~��U�yı�`�����}.S��i,�Ĉ�Ehv���t�R9Ǥ��
���Q\�馠��@ڜ���mF>P���ZX&�8�|٩�U���m��qؐ�6(�\�y��U���8p�K-��NvU��"�)�Q��紳��Q�	�Ջ�&��$��W#:����+Y�S ĭ�hO��ۓ�ӽ�꼙๑�U��d8f�u�C=H���"���x��B����U�<d-��E�Q�K!�|bk����{�K�z����B�L��������X�^(..c�|²�4��t�X��;{u$�
�9<:���G��T�=�>��F8���RF�T�&:o�yv�*8�+�9ӯk�����_��F�%\u.2i�+��"h��B�����=D��(�J�apFv�y�Y�i�%��e�x5
��ƥo�M�+�T�M�n:�F;T��;BҎ��n�8���������vz�g�s�P���O7T� �}C�kBhF?�Ԍ�M��W��5��I����f���5)�պ�i&�q/�ÉZѸd���\oS̆=T��������n��c������v���#�W��!7k@0���=1Q�x�/.���
N��k����=�V^���?�Y�vx�6��ys#�A҉'m�c�$}�>��>�j��$�$e2K�Ƀ�'�#��#�;jk��B��m��$�G��ر���tkuvr�յ��{�Ic����]��}un�Is{-�{V&j�ןޚ�#�H���L�q��$mMx�YF
��`�s�I����;�t�Gt��h��yY��)-Wv�!�3�(P9��V^��^2��/�5l���i����y����QI�VČ)�y"E>҇n|���-�gd~�_h��I�L�� ��/sz�WU�!�qB</��[����5�Tc4�y����M����hњO�f�`�]*Y��{��Μ1>)��*�)v9�uUܽמ�-�P��ؔ���*�R[3�|��6)�v��K v�~1��R\<��x����	��O�8��0$2]ʠ����ܳ����b.&����̠�)n�q
�"��?H8�|T�>��?�4�sK
d�B�Ĭ�WcCȧ)����G��V�TCo�V;�&���G�g	�j�7����^�2O+m�B5ُ�����ܳ(���������V�md�T]��g"�7��x��+%����e=��I�?m{x3h#�J%E�4
I��Ea'�[�r8o�7�����\)N�i�����`f���mGh�#�Hp���bn�e�s����s9��}�����

O"��6_��Ү���C&�T�>�k�)R�2:��z'`w���"��(�|V3X���J�?o8�<���I�i���ex��_?�_IaP�vb�(�^3�M�WR}��A���*p}��2�6M�V�<Pg#����*�(�	����W��.�I��yL�
��~��.w)�Z_��A��� �m�\QL�#Q�[���ڰ8��N+��/�G�OYL�]���@��8�h+�3<EH<[O
�uS4�@��w�P^I]���mt��{�(��2o��P���Xǧ�(DԱ��{�6�����c�?����Z�[��p��{������,(���jNT��#�;:O,�$c��F��s�۴��{��`X�#�<Ov�;s���
���඄�m�f�}'#���)K��*>=>�5���d�8Y����*Y��`�p3�6�o��1�2��\�%������/Wm	{����u�<U���,k����|��;'F=�F�i�W�D,�F,�2��u��l���~|䈘�����<���6�ʳm�����XW�Os4��6�B�q��7n˜�_+c�ڤ1��&��f=Ƴ��p"��/�3^y�}:�[�J4��rF�;����+�w?�I��-���T�R�5u��rE�?9'��uc��Q������iT�#����ܬ_r~�&>�c��"�5$�/��?�
pv�Mn#���BAa�[k�]�E�dLa7P?jI�V�@V���2E�]&do,c0lfl"1����
�T0���!0��u��"����uǡ��$M칻T��Qj.��"tǓOp�"�N
�vV;c$&e �#by���?�X���ʦ�]�Lr����x��ߕ�d꾜��V #��%F�+-����ogSe����Dj�T(��C�uC��(�S<pBds�^E�\)e���$�R���2]���In�K`W�5���qlR��6-�]�B�����V}������j:�h���i��o��`3�_?��8�=��C�q���|R�y��\T6��|��uM�H�`<b��o	,ǐ�����֨�69�RG��R�d���N���c3�(Z�G�ė�X����	a2"�#XС;J�Ƹ#�i��>���f=�6���
���͓�[Bʯ��_�[���7S4�M}A�ge_w�A"�uC��?�S���[I�y�~�[M��kt�Q��I%��P�-�z�`�	�F�1!q�Ǣ[H��M�k)hb|�y*�7�ʺ��WZ))�6�)2 C%�D�"H�e�S��rsC���h��HN�zR�;�%e� �����{�����靗J#&��T��3�
�j_��_��Q�g^��H�ҙ�O�5��G(���Lv�t�5i`�6���l[�٩����g�}Sf6�����3��I�7lK�����-%�K�~g��vJA����;��j.ͬR��٩dgl�Q����*�{u �]g�v��0z����8mO�RG��mF���{�`��u<"9�)�_5r��"Hc�V��.j#
,EIf���R�5ЀY��<r�*���(1�Kg��N�[H��V�I�־��RV�6x$13�ꬶ�lQ�S�a�9��*(��a#���u���带�[���k��5N"kq��o{��	�.��e���d�S��`S%l�2��	����=�w'��(
O<}��)�Z�Q=�k+k�6��-�,�9y��F����H���cN%�%`��9Q�LHf(�㋤?�mI��Օ���m�3M�*1�q�7��¶*y��+�'��ؚjK{��*h�'�	���U
���؇uq��}e��{	F�ވ�8�U��#!�
U��Oǥ*9�$�fH8���h�~H�?�G�?�h�eR��źh@]�L쯪=g��}�/T�3<�@�F7�+�C)l;�!�V�G �a�B�ߐ�X�^����Ҿy��Ԅ�G$O*����Yi-"�ݨ�"�Z�.��$%�W�S3ɴCJ'?ɠ����1�J�L�$2�`��#&�΋���Xs��AIN2���[�Y$�]�P1�t�(�d ���N?yp7E[4h����n��Ix���N��W0��v��A��Kr�4<��V秦�1��b�2W2Z�eN��H�!��O�x�~O��ka���T�:��鑁Â��h�A<�+@��G�[5jH؄����c�J��t�3�#�Ml�H���Ղ�Gl0�-�)`�8���9�.e�՟�[���/��pW3*{sm
�)��iG�	��� zxa�(��ij�R���kko�4������[G4�#�h����b.�j�.���4lv4�`��}ٟ��<�!�y>O��i�b2I�����/ug����{�_��挭7{|}�_u���'ќ.
��y4Cg��
�I*i�k��op����d���$����̩��c�"`�}�A+���
�f:��0�oUΝ9f�*��'��5�Us� �$偖U	�e�x�	')�J߇�|�>��Et�Ð������h[�/�,*�W*1W�
`M����쨣���{�e���f�b%�j+�Y��xG���G7I1�%��V�=�ʮ���.ܜ���V����
��(��DM��������jж4;���Ɋ�Mea�⿸sA�Y��}T��0uB@�ʳ^�$�$���
�Lו��c�������
��[�ⶃ�r[�jO��G]�ѧ?܁�,��m����p0��ko�愖�I��U�![�O�1��.$��1n`A�$?qѯbSl�ڍ��oe^�����=��Y�y��wd��hy��{�M��͕��0� �Ϋp�;)I���yb2��5�i�sͬr}�C�I��VS��i�3���L�wW�Ii�����nS��H�)%���讝���8q�<t���:l*�W�s�q��M*R�F�����S��U��+�h�\cM�F�#��i��I5ܐ�[�&�Pp.[~��k(�d3��I�*(����}�<k��v���6�eP2T��y�Z�+�H�P��U��V���{�glF����$�/�GhWV��i%��2�&�@'����ף�Oq%��sk2��*��Q�I�����O�ip�Q��}�Z��gN�}����u梘�w�����Zee��)�9���pz�- ]�5����>+Oއ��﹌���q(�R��j�9F!EK�ўy$�9o���bk9���Qe+��"��
�op#S��V\"�o8���Ҵ�b<֤7w���T�~���F�\�Ef.d+3V�)Xy�
�n�ԥz����e��Wwmuq�p3j�^��"\�v��t�lna�6�vi��	�r����T2� �a햮�FT�nZF,�,��MB$ƾ����9�h��{�f�
L�\�Nۥ�/-�\����;+��v^��?�Ԗ�f�ñ��H��=��ׄG��F~Ou��K�{3*8���~���C�k
m��n��{�|T�$-��������NYNv����c���)�Q��{�y-ΗhN��}��q�Y���*a�Y]E@��e!�%!�d2��J�H;iդ�!T���HB�*���#+-����8
kC�r���a[Z�O����`�,H���p�DBV2�v�5�E�� D���_Y��u�js���_�B�E�P�+`)Ėj0ǧ�p�
榿g���ipc'�7�j8Zv
�&)�lH��yvN+�v����Ƒ��g�C�H�6?�?�Ǧ+�5�����AדS �)X���Y:�nÔR�⭁K�7�b�ɭ|�I������F&@��H�)��"�s[�w�^V���\��W2��%u*A�)�sV��f��er���H�Ö��S=����E�3m�ݔ��d�è#�Y9-/Ѣ�-ÓREK��"ν�jG)���JH4�쏓�"�Hv��ʛ�%3��f���r\���^P�6�1�5i#$|HV����Z�|�)�R��y@��qF8�&�@��H���qEjZI�B
�����TG���ܟݐا��,x�D�7u�R3پFB�+�����v���}��+I��G��C��|QC�8��^��CP��e��(N�bRe1yZ
1�i��"�N�َ�S��v�lŁȊ��t�D�D�L�F��<�LjWQ��=y�ő�L�N)�֍��
]�R�4���.�++��qw����Ng@Ա�8�x����V�͊3h3�P��]t�x��@������J������k7�y,dm�5��I��B��wo �����>㫗?���Q%��k�2N�b�:`�^���	�Z���X�	�Id�,��.�3Sv��*92�B&sA[����C�"���[B���\��`���P�U\#>�A���`��ڬ�X:����y�*�S�?��ṯ'b�N���x�K3:������.e�͵���ߔ�`Ś�-�ֿ���*���1�y�����E��C���F�W�.�K�x܁B]I���B�!Ϛ�E n�@��5q�&��G�
K�eUl�T���d&�걯�4�Q����_�J��h#��ƭ�d��X��n�������i�)�:Hy_`��1ǀ���LM5�^85��c>"�SkƆ�)0dㅟ�V;s��u��_nG$,W�R��M�l��4zYIM3��[����9v�X����,�qw�k%�������$`��X�e;6�q��.����d��b*G��Է1)85u2u<�J�2/.�Kq�V�M��d��ܴ9�)O�)�'W�K�+����1U8�������PY����e��Y@\8�QW����.J��Ud�D��g�?��������ⵢ=Rٌa�HY#��Z7�M-�gT�c1JP�z���<��0���w��թu�!�n[ˎjE��L�kR�Ӆ���B�ڤ�
:r"��g���46'qKۏɊV�
ެ�����0+8�����u)8.0��0��
�ۆ����%G�y�)��#8x�Cn�\<�J]%���N_�ua��RFT�U�#�Ƞ���ø=��u6c�Β�M}��3�
N�qs.�s�A���S�ޑ�#ޣ�p�mS�֫�];��s��	YGo�e�¡�#8��q�sYN�uV���,v��}+���#!�4e<��I@v���qG�<�~i��K'���y�ՎE.1�H;X�
�$�zk�|��L��sX�
�q�<^ ���|���������I�\o�'���9$�.p�qfMs1�f�)Gu|�J�?��lu�Ū�dj,������e�v�����EX��n�@��j��N?�Gy_��Z��/SFdH��٧��1�ك��wu5��a��9-�B��%�;E$�Ģ���l����ȥN�QM$�V��F|U���](�=�
�:���Y���dR��
j=��<%_Q�+n�22hب�ն�HWgaKk�]�I����w��䊍��]�4]PdcӋ�u�(�UY�*K'	��0G�I��9���S�V/\���I��_�(B�6���ٓ5��d˫���Vs��A~v�LrjO��W�]��r& ɑ��� ��.b,��,�t�I*�.���<�H�aY�Gxٱ����9���
 #ù�⵹�|h����\�\�&��rf6Ť�g��'o<=(�w@
�M�G$�;�/�}�U��;���y���˙��t��$v��֣lV="��C�֣��\��7���q��M�د<|I^G���Ղ��A�Z[��2B����Ox��8���q����=�����֘�f��I��0��Y%�S������gu��+s���?�},��Q|U�$�O�O����e‰�홂��������Fb��,RvG
�O���v�޷�dQ�G
<iԞ�d`�y�c(� �#1�ϪO/J��d�M�㦐��GrN��殣��v6������lQ�*�%���L��!5ڛ3�K�D�ɇ\l��~��\�4X$����v�a��`�z|9�F�pV&S�3M$�TNGOW����r�
̑d.7'4�↺>}��4��Ȩ�~���Z<���^�����Tӏo��Nj9V9q�
�u����+9�	�S�[k1Ŗo�N�4,r�W?4%p
�}5�V8����ț�{�8��������a����۪�[���Bﱚ[�cb^���n�:����/f��ҖQ��3�;lⱇ�΄֝)�-%��^��D���"�U��F�h4�MM�R��/&����1M���W�zT��,J�u;cR�����(Iۃ�FBj��ê�	�^�F���:w-�a�bh�&��e�h�A��x��.7\��6p1X�R��0\�&�P��w���"��o�����`��rj?.4l�_�;j���S���|`��q_j�EӜl|��[����T�ՉQx�|]���5"W�C1��J�����*�@��:����H��qQw�/���:�a
�H����ל�78�����p�N��+ �+���X��1�uq�`��E��ڬ��%�Z��ΰ��i%sRVʉ�1�s��ѭb��l�k���Ѕ,g2Ǘ��D�M�3QE�����l��o�H�߫N�W��3_�'�2)�Mj��.('�ci	���MD�Hr�]Ub]'o���T�Y7Uw�n�I�:��(FU���{r�w[�+?�$T��+2.C.��#��T�3�)��Bq��5<+�Hy����b��mE���q��#_7�<��O�ڈT3�`�J����W�&RW�����u@���>J��жf�%�$@Ƕ�#ɍ�6��.���?�#9�W��ұ0I��}FM�"�(�)�rM-�Z,@o�>��I2�+ޝ��񇭪9Y"��0>ʠ�*G�^��{�0Z�����S��{����mqQ��վp	�M�g�.��h0ڭdd���ٓ��d���ƣ���O�Z�-/#�m��'�8L�^�k��Dh��y_X�&�������d�
.�j�(��5̃�h�����yt�PG��N
*c;G�}����B�5�9�M��0�r�'7P��֞E�8QE��f���O=(nW%*_��&r�֑s��&��c���#4(�+Z~���X6y{���MX���9�Kq���,b���h
��׼���j?�̕��J#U���蕺H�q4I"h�:�j�Y@w�\@x�Lh#�e�RG�P;��QzpԱ<#%�Y:ڝ�M���V��$����4�ȁ21Z-q�$��I�*���H� *��Ʊy �ހ�D���V����$QJ��Lrk��?�4���AQ�LvH��"X�Lx��c���Ev��1�}����齠S�J���p,� 	ךn���.����E".��J��HY�g�72t�����]�sO~{�&�M~�'s^Y���ucm:Zܬ�j���n�2��~ը�����H�2�_��	A�/Q{$�J��[�΍�C�^T�RA����j��N����
��%m
�~dT.cs�^1�ܧ�ᖏ��qI˚��d����e�q�Oņ�(�dS�j�;��[�)9X��*,`������=x3�Nj�Ӫ<Ǖ�!Q�)�ђD�z*G�K}"���]+����-@���y������w!Cn���l��W鱋�sYil0ۋ[�-�(|D�D+��p�������7_M�Mig ��p�}��>��5�>���q��
�!�j���Ƒ#W?ڔ`s0|⟥l�R�k$��O���3V]�q��,ж8+�U[�dP���B=P�r��XH˜��z�#f����}7>�6o�[S��8	�)�RuZ/�p{w��RhF�9�5"˙u�㬡�~���qN�JG��T�Vm�KӅ��BU2���ڻ��EςE��:�D7p���4�P��µ	_mQZ�w���
�#{���'���
�[
m.2(9F��ϖ�j(L���*�� ���N+$���^�#�45f���Ef�@�6^�\���)�\�*<c���XS�����5�ݗ
fA��µZ�[lR��{~юi�Q��o�=��d�A2�+�-4�:�\�C���9;mQ6��FOH��b�_L
o2y7q(���2���KT�U���uh[�Lo�YLM����gvb���@R�G<����\95l�$�oCn��i�c�?Q
��g`]vv؇�h�#;U�T���N�6>���k5���L�3SD#lz�DW��T�&��0D)�jo�[G㚓�?�Z��s���4ś$�L>sV�TxF�{!�n5�1�K�S�+��N�&��=E`��
�����8l�*�<��b��j'����$��<����I0�/j�g�bt���i_δ�l�6'�Kw���/�!���(���f���=��&<�ڿ��z��;1Ia+m�Q�*g|�.��P��|�q�SƴdР^#ƫ���m䇶P*^@�(����=�I�m�!�he�_*jN
ri$h���E�v��8U�����Om#�[Z���R}���m��ھ�m�$�\C$}2��׭$���b69�G�oT�ș����怂�r1P\$��AJ�ך	����K���`�qG��4N�e׶UA'aڱ�v�Cfۈ�j��a�s�j�=%����$95��̃�N)�l�sK���) #��6�I�qE@Z��MLT�@p��5�>�;,ɃS�ڶ��~<^����|�q�T�I;�O��+�ޑ�/��m*�4�9���^Duh�G�Fݭ�y�,����lm�_H�i�q�I�4�sR}9a]�'�F��Q�X��dgL�8���Y������|�;1o��}�ڣ�������$rk�FJߚڃR��]S��y�_m|��z�7���;��~�ݏ&hr|f� .P�A čH{s
��R%\(���M$i��u5������#�����X}���k'O���]A���Dl����y�Jڬ�#N�k+X��+�t�g:(��|;�B;�q#$��T��cSc�q��e��!�h��h������|�t�8ݏܬ�H�F�u���	�a�\u��7X�<v�㷑�A�sPJ�.��f9�Ԅ��_O���He�}�b��E}J��ѷo�}E/��Ww��d0��}��o��},:N؛=9�v&�b��2�xÁ�J"f&v�^A�j��e9���D��.�MټS��E��#�sS}���{�@"Gi7��a�m̖�L���I�9����H^;W~݇��L�#w�c���>�Ls�TGq$]J�*?o�*���S�-�z�7��m�������c����
��"��]Lk�i���pO�~��ay�x�`Z �0u��ZN
��%�lT��,,�s��h�<����n�r�UәnX���S��|Z<Gɯ�C�m�����~�+s?h8k���^���MY��5���49#���VoD��Ƞ�q�
C���Z� �I#o��N��Fڿ��vrIHm�V�;b��r	�V�d�|Eq�o�[$_u���)aʮ�>�!���*���a�mn��4�,�I��ƍ]5:���}�c[P_�_���Z��vf�hx�C���~��:��F�g�S�ۨ^?�j�Ɏ�F��qS����u)�'>���3�F��>.]�lH­�L�WcJz�=8�j��cl$��c���Q��k��q����
���g5��$����>�Gs�I��Gé���L��EG�.�oW&>��009�ҳ�X���~j�7�dg
�|������L3.Խ?�?)�<qqC*������Q�b�z����)�)����x�lf�dy�Q�&QJF��/��2�=�~(�(���*N0��D55un��4�(TEC��l˵�~A�"�l����<)��ewə�~���A�Z}Qn{_��n�l鰎Uu9_���E\�r��T�>4m�G�O#
z��Sy����ARfrdnOL�E?����0�Q��=\=y�Xz���U�#fVa�@��f����v�ț�p`���^�i��2��1�l��'�O��V�D���pV�>:e̲�M��0_��4�mq�L�����!��`�v�I�����#�&h6@�Zy���@���B3��c��G�Ϟ1X�(�j�s�}����e">�N�l	��:y2W�6@<��j@�A�%�����U@�ME�U�,	����
X|U�{8PV�E�l�?J@���[���b}�Ԗ2Ao/P�e��0X�_��>�:�w�r�f<��6S��Ss�{r�����0��L�*�k�~�W�y��y�������%0��xp22H?���Z��g&��[�Ӎ��Q���J������t>z��9����*�
���@W�=6�NM	רKM���|��V8\��p$�:�Ԥ�	�q�Թ��i}��kʶ
�H��SA��W��Z��-'y�ɶ�{���7���þ�61VV���g^v]n�E�7;��o�������"�W�7Tt�
�w��t�*W����@U��p:t��*ۋ���5j2�ݳ�S��B��9�W)�j���ب^k*:�@_���H۬gjѬ��2�s�bW�j�^b$&����5i�f�H嗒���Q\�,���c�Q�G5�j9d��jŚI6�ߔ'�*)t����˿�ƶ�%��%���R�0aV^��*��01�,7{&�P��9j"DLq�-�*jH�q�F2*(�D���]��<f�mV���.郹k ���|x��"��M	��-�Bʈ�t�z���k���Y":t�����cQ7��8��Q�g����uJ槑
���|dP�lԗoq��c��u`|���v�B􅝤S�)5��FI
q�#QS����e`����iE0�3�S���J7p�|���b��3�˅@�E&>itNJ�g��ό5��*���߶��7h*��aRt�E9�X�$��Խ%�~�����)�\�&d'$��p|�lz���M����� ��I��ich#�.M�N��{��G�,WZY�k}��@�N��:`�z�,��CIҏ��Pu�>���YD{m���]��P4��O��E��I���-�E:tl��ǡ�)<�{+m�k��䲯s}&���U�-y۶�m�
�-��v��⺨���f���Vk>�(��>iu�>��K:K�<CVm7җ�x�,����O��c�+�n�%��;�81���ל�Ծ����Aơ��������T/rN�݃�	n���x��F=������Db��U�w3Hib�m��C����x�Ġώ���o�T.�N�*�5�J�pV$��v\�y
�is����\е�}{02r9������
�$�[i��Y�l��tN�:T%|>*��RM�+9���Y�`���T1�S����c�%�BJ���y=��Z}�� ��#���s�sR��j�����hj
���:B����G$L�X�lyr��G�$<��LdaA|��t�V��@��uU��'�s泅���0�s�f�>�sT����s�K��G����Q?+G��w=�$��
�F�*s@���@�q������#W�K�嶊�,;�H.�!�-#�������LT�<���3�l���Z�z���u�1��ɯ���XF�'��52Ɠ8uRJۖ�&��/����e�� 	�Ng%	���!>k�x�#1�d��3PF$��H��@��x��=�IJ�����n��v�>���9]����f��G�����6�Y����MFb��y�vPpب�3 ��3��CR;L���\Gm���K!nX�j�/���x������q&���ݲ����$]�a�UG�l�F!ӣ����<Ӻ)�y�O��� Ѯ�ܺ�R��(�Q���A nO����PK��ͬSZ@�r�d��N�YC2�>�9Z�gb�ƣ��(] _y��	AX�������B��G� o	�c	�z�u"��n�9�ǖI_1�	N5�����،��b��d�<���:�x&���(j���F����r���Ol&��<S�*��ڕ�a�5^�U�6*.�i_��æU��P?�"�#l�d��r�W��J�$���#ɱ�A�Ytb���[��$\�P=��;�VvŽ��n|�����a��o��{�h����I�gu�EÚ��;��v��x%) �d�qಔb
b�i`�J�4���\��
[�3Q�O.uJ�Ū��{/@�[����9|*f���#t��X�U$�:%G;��Grg�$`�,��殮�����Qfg��pn|m��T�%���*Q/�P�e�E��T�����M_��L
�V����b*y:����y Cj���4ɏ�
f?G��0�P�a�S�Lc	=De��v��g�H2s�裻����y�n��ɞ9a�n�:�F߷��W�ۓ�8��s"��xZ��k��9�7��G�ʜ��F�*'��,o���d[�T����c_4��[��H���=W-�7
_ F��m�	�A��]Q̢i�1�]���'��s1��R8������mH��)n���A��!�*r�;K���^��1��t�v�>�LO"�[���nd��~��棸�V�b�#�c�
Ghe"<��1*
��I�y�_��gW�H��+�-��mt�C���hD+o�{<s�ݖ�r�t^h�K�\�nTʑ`�w"�&~i�-E�����2��WP�xss�Ǐ��!(9���Ql���o)��d{��],cK)�>��1������Q8�Tx�
Ց��T�/�HFk����,ry6Sh"�lq�/[i>�������%�� �/E�o��@�M&�@[�����q��v�*И��k�Gc;7��;�0���@wiN���T�lű�I�3�`���N�L��������\��G�v�y:��;���g�5��Q���s�gc��*aS�Hd���#�ц4.�˩��m�i�����~4�. �-C�:���ˣ��ԩ�������	>�д4��b�Had�I�MCd�ݲ��2ڸ3T��iu�������w�s�F��3�u�kX����~�Wcfˬ���G`�CsJ��
n�]��Xȩj�`-,,C�s�1�#W�s�iHz|l��RU$x��J��g㕯�l�uX�_v�K�����㯊��Z�$-��p��pf�s��H��m��/7�ML�($�
�h#؂SʜVr��~ivh�8��+���;srݍ�l�>��~X1t���-/��Tb7��3k���Hq�#7�$R��I,��‘K�z&b�Tq\’6B[��w�I:��Q�p��h�[y�*����Vle�8o�юٯ��񑨼��g;Q$�NhQ^2+�j����˨��U(���Ƹk������i}�F\�L��M4�y�jbr*�V���c��m�$F����I�F?�;��e��I������J1��sL���8ݲ1�q�֍c�.��E�OxZ��CP�(p3杶q��_����<��;Ͼ��Kӟ�n��3��(#U���ҷ��c��a��Fn��Z��Ű���H��X���m��+��#S��#��OȦ��l�5������,�;����Lo�2j$ê�^��?ؐg�$��j��h�O�����#�-�n�Ǟ�j-��rO����-=�Q��n6���Is���l�9%��F�����%���QY�l
���N�L�����SF?څD6_�tGy{�'ļ�(}��T��7�MƼl�N,t�G�=�d��pr�Ҿ�_rҪ!|,8ʩ.���TjY
��Wa�G�1V
�]�"bn��FV��:�_�n�YWH��v�}������������V��l��{��n��Py�e�����O�:�Y#�9�B߷��O�#c�Bic���]�#c��dq�)Y�9
��G�^Lҡ��
h�Q=�I�-��ӧ�ݙ��:u[nچ;�d�yW�{Ʒ�±��{�2�V}B69/0$83kG�j
�M��x�5���]�q�k*�V�<|~�n{�ǝ�k�b��!V4ě�������u6��@�m�ҭ�)#w�cy��ᭃ�Ҽ�T`Oj�SLfaƃ�� �����l�J��j�%a&‹�|�j�`�ֿ��.�2v_��T�;�m%$P/�N+���C��x��/˿q������!����[�^4�E=��aH�완Cx��a��M�Rʋ�]>�R�s:�"�yY:�{��-`,�`lr���+/Ӡ�T��Ms��K��5����>����OAOw�Q�(D{(��Q�K��lA����1go�o#(�*w��x�N�_棜�ve`�Fu*cu���I
��Z4��i�l$mOVa�H�~�w6�B��=.��+kZ�2+�ֵ�zb���eM��.νC���3QL%���~�b�SԳ�����6p�ě���^i:�,�&_|���.�3�z�\I��'H�{�����C�lP\�s�T�YC�9�l�/�s6�ը��H�B�V��:�#q�^*8̛)5�&�ܩ�r�͉5�9m�G7ճ.��y����()�]\M<'XKx���8�.2jU�����[��sY�48!��Z ���|�}�~�����ro�q�RSܺղ,�C��8D�Bą����H
��~W��hb-AԎ�0-���j.���5A�jڊKG�m%�CWLO����D�F����nSd�FϚ�;K"��M�@�c��wʜ��{�����~�3Dx$�?ν��.U4O���L�u������^��z��4�WW��:��]	����2s���Q0|��[�U��~���Xw�&M�5��γ\4�]=���h�Kb���Ѻ�W����8�!�i;j?�a���Ie^��
�s+_H$��L.~�"��#��K
�
P�����Y���[$)�L�Oڇ�e��X�fUf;�e&9N��2�@�j��[(���}1^+>���$��'*�U;9X�U��y�H녏53�����=�Y��Ȃ1R�"��≴��F�K�$P#
p�3�#�geQ���v�lm#4|&i�r�H=����W,$z��<��5xX��T����m*>t��V�.�@'
�B�"�Ui�_��F�P�P@$��Fp)�I2Z߄����s&��KKf�]H�i;r�r|�}Y�pi�
>�D�J=���O�A��0�������yd��H�t�Q$���{O�����^(kl�_����v�5�W?�>�z�,戉&+S�\�9������"�'��@�0�9���f-^(�N�b��V\�k�Qp�`Pyn�|-5ԣ�-%�ȁ�{��-���]%;Ik'Kj��Yۺ�1�Nh6~j�BҪ�\}m��Z�h�ٲg!p#���[��cP0��:��]'����
��P;E���Kω����`g�Vw��ݗ��=VG�wf��1]��M��}�£I��vy�u�#����#l<��P��3��mB���0��ҫ|V�W`�D����8�$��殮D�us%���L(�#��5�&�O 7�O�N��-�Ab9ڡ�]��d�A�� �SD~ޱ2#���[R�Q��5�6�B2�M�G$��T���VM��bE�|ӻ��c9�#�� ����C�JsPI�0�cԐP�;d�X�ʮ�ʾ�Lٓ��{��钌<mI�r�t��3]:T��X
1A�B�!["�K0Bpy�c�����<�	k�K�Mi7�����_m�i$�؏�%��4���>^���+A��e�_���N���t���5ffǯ�_q ���gϤ������=`�f��~�q���4uF���iU���t�	U�If��}C���}��.f����Z��x�_�K�6�.�S��]�R$X�Ҧ�r) ,`؉B*�/��)�����&�}��V�����N��uk������ń��`=�G�I!�	E���G�1Q��B[��wo�쩕x֭G;dҨYJ���(Nµ<�Qq(��\��Z�;:Ӂ�WnZ���c�����N�[���y䉶���i&\�?�P��,9��[Y8��o9	�aQI�H�'�t��|C"�t�ᎎ�ȳ+�J����y�[�,�21�z�O���|h�Ԓ�p��Է3�%믘�oA9�g���t��?����y�Kr�sM�fT\	���P��=�ʮ��:���1[�<��I��܄�i /�@'�Kx�����P�������z08�
����nb�m��*����T^���_d�c�{eb��px���#����#�H5QL-H_`�Id�,�F��u��R����0D.(�x<W�+汚�8��j�ҹ��.Q�4����4"��[����q]ٮ7�2|�FFh
d�\�q �®20u��a�8˻����.e����Q���J��'�eP��j(D�6����n��2�\�ϲ� �1A�m��ۋ5++6^��^�;VI�.��Ԥ��p�Z���m&zATb�����VY�n�wU헦���C��Pb��{��<��$kw��6?�9�Uf��ZK�1_j��F��7��-�[]��3d��E���&�Q8jg~�x�PEE,v�+#�5�Z�P�"'��P���k{�\�-z�<��H1�_�-dq��GIdـ�¤�!�?�Gx�e86��o&Mb1�>�}�
��(G#-ڲ*���[���k7�ǐ�i!�f�[{uV����#�R���^<W;�CߏuM�%��m�n��%�n5SRI&��t�py��1[��F���E�ny��

� ���j�'tB��h����QB8�i'�X�:M#�eX�&���`U��@�m����3��Z�����>j@>+�:m��\��\����&�3Ee��_��4��ȡ��J~�9�X[X����?��T�G���Jei�H�M���a-
I'���|�p�Z����K�Q�H�uq�D����I_T�e�(�����dWU��8�g�PvZ�q�R�5Eg#(ɚ�H��y5�|
W/��"@�KN=�TU�8+��p׆(�.S5M�0Gm�An"MIn��j)��ܖ����D�`��Q�D����R���
������&��{��I&0<���I�O<��90|�j\����N+s[�F�>)$(s����or��Lf|�h��f��\[�m������Q�����y܏���F�I7�J�i�+���oӒB)㵁
F3BY@T�S;9j����b.Yf8��h�P�eʆ%�֚X���i؞�)dtl���R��'�s���Q;�X�
��AqR����$�P/��<~֩'2�P���K���B��=�Q�j�`g�A;6�c�c��Ǥ�+�p)^O�e����V+K�ξ��T:Z<Zdo#i�S���
N>(j)���A#�����v��D쫡�G��tn5{�O<Crb�z����-��M��E�Y@��z����7�.>�|9�����'��UHr)�
[~��1G�Ƹv����[��K	I54Ú�9���>�W�eٞi_8�>h�g(n~k�%@�i5o�I՚.9u�ܘ��v��{�-��1>6!����GϠ�f/�٪%�n$��v��5�0�l��h�MA�1q���*����1��U��Q��a��E�ˉ����/-N�����9�q2
�c�e���cG��R��h���P���kX�~շ������ץ�9�����uUS"2��@��f(��G�we�|��+�
���F��ߣ!q�͕�c��d���hQK�J����F*�)8�4��Rj�=ʯ����'���E�k��p)J��J_5�96S���%�B����Y�FH������5�<�',�����_uH�HS9��T:�0H��F����Zl�$�H���GQ
�˅'�����l-�c��.D�G}FI��2��4�~k�j �`ۮ��4So4E
��Y}�����^8�?�U��Mė
P��]$kh[8u�od�S�hXa�esgt
�ͿS��s5�0������Ң�r�����m�EO1&䊑�8U�<�)�f�����IF�Q���_uq��<���O<���?��<������Y�z,O��F(����:����$�y���/�	-�*�u+�8�������{vo4.�l�	P��_5s��\w#+DQ��e?�7�H,�#E�������յ��Ԉ�+Ђ(� ���	�Lr���OdT�I*t��vP��q[We�qV����vc�pF��$C'Q�c�͓�<��o6���<���E�K���78Z��:����g>˻O�(6��
=�S%��D<&j[���K���@�x�uv���T�j�t:7i\H���H0���_��q�i����E��c�I�z8��A�H�Z�!�t��sM����>�; ��x�ny���m@bJh��R�X+���aB�$0���l�P����ᵠ(
\`sKo��m��>��𜬎���U��A�P����`$�6��@C�8)����I���G�Yni5ؠ�1N�����޾�y���X��1o�����ݫu;dA��OQ*�d���T��v����NJS�89�h�M�2
X-? �#$~���3]�5#��5��)ò�S��i�F=qQ��aV?mqn��G�����^^�ά�ќ:�L.����(X��W&���¦�����|��!SD�I����jU�s]&�a���z_)xw�h��t]7#W�)2����,k>�p��j1�u�<��f���;İ�cH�rĚ�>�5N�y:O2R�}n�OwZ�]6k����϶�ۑ'��f�K�P��9��V;h���2��63�o'�2� �l��IX!�ך�'���>��5��1�
��I�#p�[���u�+C�5ر���<�4�G��'�u$9<R�MAx.��F����Bͭt��5D�X�݅��a���[&�����6F~�"D'u���|E�x$�
�.��R�J�ZCڝԗ�{�b����@U�Ll��e�=Q�4�"��!��R�\�M8���m�~��!xÂ��EQ}8?�0��P��ؼ2�3�1&?lRĴQ�O�1]�wU�8�=S��#�L��M+h~�]?=�������O���t��$��$Ӥ�3�Lv��a�b��W1�¬/ <�ԎG���"NhZ7ԊM<�HI,MH�||,.��I��{�%
�0��S�9�bh�;6�&i`�20>}E4[5�/�yz���_"�9 ���X�+���Y��}9X�Qj6�Ķp�(��o܍}q�6͛���W����T~��T��$YCes�5�E�}خ3�x���w���}w��\�4I<�����G��)m��d@�;�z�l��<Bq#�����i�Q���X�� ��ї1�kyIA�k�Gq%��R�x�~�'S`E-�.[q+�ߜ3�J�y.q�b�jI��85�f9vj��:
��ѫu�K�TF٩�n�uօ��4���2͊
��A,F_���W�K/�-D����[��Q��}f��g��m{$9
j��:_d�=Kq,^y�r��.1H�7Ww<w��8[V��#�Wq�L���y�V?Lo��qԌ#w�>3�uC���O�C�?�X�d����=*��s,���h��P�\�"��w��4�٭������E���G:R��.w��W*O��1'��4J"�&�H�`¦���P���7�	 ���|�+"�+�@lzjk����A�!S��Pg@� _��L�L^0���lv��t�q���Bp	�b�ۗ��h�R(�G`����DmS͜c�D>�x�ۥ���ni��u�PF�˫��4!.8"������T�4٫��_ſ]�eX���G�2n֗,�?�@:QNJ�H�B5��%��Sݞ����<J������.Ւ����U0*9���o�'i�kp�}�
=]k�Lz����!D�/yyͺ	z��΁t98J��v�ڙ�a?�t�i��QJך�&6σ�����L(�D�8�ftl�?R�c�������?�Ֆ�\�I��l���>��3L��}�V�G�V?z�.��=�jة�f̪�jo��o���J͗&��g��v�.iԜ���p"��x��Rs_?�O�?���X�}��k$Ϡ5�kLӀ���x���Z��Ԛ���E�Fj�I�iu�=9W5-�"6цb��j�N��m�(�2i�℺�6��E���x�E�#5�9�s�4���g��4e&=>)q�?�ꟷ�j=MWC��dp��
)��C%��D"F��J��w'"�i
�����V�E(}�WWX��=�z��$�ܒh���>h-j��k��@��{�+�����4ȩ�pM"u�C��T!��#��=65%��F7U۴��^�%n���|�گ���� >(ŏ��-Mt륏"�^(G�����i��!�ՅJ4H��M|z��$j�Ϡ�G1�ɩ���x€�W��+���@�ɠ ��763�o�5wd�{�kG���:я'$�(P�y89!G3"�q�l�8���nu5�5�ڞ�gl�D����B�ni��qX�}��oQ���IHm��a��{�ۋ�cKX[2�$�(��S,�=!�T�џp}��,�B1�d'gvܦV�Kx�lG�fk�*�2�9�
j���*��e]��V������F9W�=W@v�2p<�O^�߫�Q�9�4�A���E5�����_n�J}�UXI��O�W��
�����O�M���q�C��Tq9�Hc]�����y����C]�2]�:l�/ӣ�yg7NIP��<Q,R7�;�#vL*iQڅ��Q�[�V��*H��RG���2b�/�
�j��a��
x�~�O�0*�w�s�-iNJ�Έ��H����K��[E7$	%��P��a�Ս���Q�����nkN8���.tL%�VN����g%y�-�
<^@*�>D.B�B�㋭���*��Q}>�dդ�Gf��m/Lf�����p�ӊ�挟�d��I4�d��
�Iz]G�~�|Ewۤ��]}��Æ��iy4}$�_�5in�S���ly��:��t�H�3@]db���`��n^����c���d1�&�9䏪��4]�`h����1@z4F
q�����H��ZtnN�l�$*��M��Ee��hm��A�N�����n�-��?���%w3���l���D��x/������6�I#&�9����$��7LK��į���l��26i!E��+c[V⺣��O��:�T���O9�d@;�
���2h�+S]>+��,�
Ns$aMJͱ�摱�G��8��L��=qP���E��C�F� �FqM��3�D[Bȹ
R|4mH�V?j��l��0+��hH�#���6w�n��<��!&;��-�����S���&����S� 
]����^=�l�)�B�?N�]8�y!�Q��`�o�:��q z�l5�K��,)d���QJ�
j�F�C������KyLrJ�CPV�dU��yfIeɵ�D͝dwe�Zs�Sq�(�@�G�k���#c���f��4�
��*eU+��B�q�k8a��:�H4l��ɽ_�Hw�#�&ҷt}O4�+��M<��x�'0�8�E~�QkK\[��i�*x�#�T�����J�A��o�b��u�����u���?�n�
����i������M_���s����	5��J���|Ӝ�)��&�u���{Lt�yv�l��f�$�2b��izi��4<I�n�O����I�m��kQO����`ݹ�J0��U���C�j(c�)��4](pj�P��*x�������~�x���hj	�ȭ�n�챭���Ǯ�道� �⁥��!x�B�q�TsY<Q=�i-���G̵n���j�
M�{j!�i%2U���2q�F�Qb?���i$���8�ĕ��S�7�����Ձ*qL�+Ud����;c���>����
��1����~>#�wL�k�و��L����P.Q�\��]�N�ҮP��u;&�a��^��5%�7	Cw䚎<sD���F��4��@P��˅5<��2�W�����oy��PCZ�\
�;'�0v��F�����n)�H�E?Q3&��h[�SC�#VǨ����>�r�\��0~�w�~^���n#Tҝ��q�\���R\C�Xˆ���t��β�^
7���c�8����8�eoh���qȯ��o@�5s���<�ݏ��6���L��Ⲃ��o���5�RHF^D�[��O$M7������~�V��a�����?���c)��sX�����?�u��۫�TYaY0n�gX�*���(�\0�
��8n��r��[�m��Pi��9=�C�O�M�5c�)dԵq�3��,��;�Lr���S��З(΋�-S�|V���g�9|hO���8c��9�P]�cSʉ�S�W�4�Qͯ�$��J�9<�����R~+^k 燾�<w/�q�/q,��h��O���Odg�i�y�<sϠ��LY�,rG�Ffv��Ǧ=5�����@��iaqz��U��~�h�&e�Xx���S����چ5�μTYFϚ|Y#&����Y�r���Cϊ��S��竵I�C$W�K;Ϯ�`�L����Z������8��
kZ��晿j�����6}e���'n*�-�2<�]���:x�Y�(G"#�$;U����\�l���%��SA�&4�l�?�_nd�E�%t���[\�G����ly���rq��hv��3K�]��|������u���m#�)��V>(C��U�c9���m����:���B��[���]�`r���61�T����V�h�oH�4�-��rjK�b��`��4n���P�?�Nۖ�����?�E?��'�)t�F����x���_Ǡ��f� SS�x�SA��sf�JڟhoU�g�"��6D�@�E!�z�����a����O5�Do�����tˑ۱�+!ʿp�1��}��Y��(6�GL�9Y;���ӏ\��\g��'�>��F=<��9�6�5�M�V9�_5�=���N���Z\Tf����q��P7R�E۷wnv�8}�91毅���P�&��FөRF�ȝ�S�����8đ��=������׻P����dV-*O�,n�t1r�|b�+4	ԁH�[*pB,�'�?Ӟ���Q�f����+�A���ǶXR�n����p�Mx�?@��k��qY��h�eEw#ˑj�����^��b�Lg�lx]=ǜ��4*��[j+���S/�9�J�N�jowԼ;R���%�����M)c�ٔ]�`m�Y7W/rS|
�k濜q�m�P'>(d�R<h��z�2=ʉ;Hi�!ح�&)�n�5,M��kJia����`�Ph���W��d*?.Z[�ݑ"��7VP��%�_n�FKD�E��s�ݓ�^������B,u0M�=d@p���Z�y:�L$T����cݚ�v��B�ɳd�j��^�Z��uV󵼛��v�\�v�c�8��zr7��wX�c�O�<)�#8��ٹ�E��QbF>rc4O��8��1R��+5��[����>��m�d*efA��b��N��8�+�I�����)�:P�_#5�w�+�Ƒv�E�D�;>q_5��r���|s�1J��O��?��3�&�_w$���s̍]��K	a��1�r"v#�D��a��<LQ�q��K3E����0#�'4�eUΧ>�W�\���za>�(/���ll/���ƷHf]�#,��l�H����۟�*�\u0I*RL�N�-��9q�E��^=�_=��6�)v�f	.�ʻ*�(�,V�OcF�h��x9���!	�Of`�]��������$oɭ�G������D�[C����9��]w� R�I��.�Y�ZqO<ҳ��`��W<x5�O���({��4�Uַ��|�^(�i�y�`t��c�$(c^��@]j���d�$v��8��4}�&�b�Y�P�7N�rH���D��N>>Օ7sI,����37�T�E��r��8�Q�Hگ�z[��K����N��b>b�g��u|sY�\��ƌ6�1���HQ�
��5�<�!�P��q.D���FA���3��j6Y�k�J��� ���q�_s�L⮬�!��Ê�G��Z�T>�3g5���=$�����G���(�Z�&�H�j?�n�f��Ƣ�̞�R������8�ߴ�2�wH��V�$%��&$��~�t�"�0C�|�e5`�������j߷��’4��9��R���h��ؗ�<m���,��ڳ��Y�d?՘{@ג��걤G8&�5-���Dcp
�K��
������G�lJ��V��X)�tQK�l��=��R�;�1��7C�]�#x,M
�^X��Q�5�G{��?����>#��-�,��7�:��8�2^Z"����H�pi���Ƣ]��NJL�R���64&�A���Kv�m4�����5�y�&���s���'Өv{J�=�����Sg��̅=�l%m���2(zk&���f�1��4yVB*R�"*v2�nx\s��/ӓ9��)�,
�{m�S�t����e:��N_���4&@��0+9�=�Ҟ="�x7�♶bM+��#��g��WǠ���-�=���w'.�,��(0�*ٵ�N���L&a!]i�/,|�g�[�]��iF��AQ��1�=5�U�|K�&^�Io7��:7�l����*=v8ɺ���ԑ��lf09������[��H�{+������9����c�=�wb����
YNJ,d=Ɨ�f�k��Y����R���[��`2��c���P�t�.7Q=�EX�R�$���,-k��<6:�i-���*@�;�M��0�����w%VXQ���!��=#(�M�IFy��e&Q�#��$��Y��1����<`���V��95�X��ҵ\}Im\�8-�	el�ܰǬ�����������f)#��G�(�LV�C�O4GȠ�Poކ(���a�N\��'��qϠ�~��W���
\�"6�Pw\ '~:2��2R?��$�C�3����+�pk"�V����R���N����O�p;ړP�y��#8��6fbOǞ��^xZU����x'1I�+��
�٦�G���m�e����Ird���幦��߹MU�{���x�m�X��k��Sؓ�M.�4��+8�hy���;o��$��>D�W_-;�c�z?���=i٘��jHd�ش,ƽϚ�E����ǑREѓ
�����9O!8z,l�!\e�7��=bFy�a�4NNhrjo�G�������w�J�$/�ݗ�
ݳ�ե�E�?tsª�J�"H�9���5�R�Q���,Q�h�4Dz�Nie�ۭ�Υ�s��ϊ��1J�aԎ�585�lx������T�,m�M	�8��o�U�FN���bo�0��P�L���C����TⳆ�U����!K��"�k#��JOt�u+���튍@-��v�,�̿���O��@N^�1��.w}�4�p�_�2�lQ�uR����5�P�Uq�Ӗ�������ϧ�ϧ�<�3I,�c��5�\;걢�q�l.�|5μS�{�Hb����_2H��O��o!?���$p�F~�]�3O<�=�Np
E���:֖��9�m�����7�+��/�ju���r���c�(g�Aq��"��Z#�+9S��S�X�%�2��]���c�?��]E�2~�cϮJ~����#�?��y�oA�6�ڹ�*�>����K�s��m�j�d��q�>sDc)2c�[	�W��w�S�>���O���5��_w��@s\_MA=�QWQ���YB��7:��wEط�F�;wf�E�ˏ�p������^
�Mm�v�q�x���n
庮C���X�^=01\zf���i�X���Q�U�Ȭ`�^�4�j7�nEX��N*�S�q��ur��L����������>e|Գ#@b�WJ�D˪���F�ww?S�A�6�vVrh��~a�P��M���di�y�7�?��ȩF�i=��*�QnXG'T[X�yc�psQˣx�@����(IYA�|R�>�Y��(��l�?@�H��U��IZ�$X����휺c2�2��+�ƈ�ݎ"�V���
q�3Qƻ�\
p�1W�t���s+�3�1�<Ӯ
}49�c���5�׃<{�k������\d����K��QČ�d�cсڒ[hV93�[��ٚ���V/�U/ڼ�KN�ꬸ���TfW�Z?S��J�1�.�om��/|pH���i�b[�k��G�M�oY�扬��#84�g�(+mϜ`�o�5P41^g�n�FH��)�
O�QX�r��x}��3�:zTm�U�Wڞ�(�HF��R�۷�dVW�F{������lN*���Z��e¨��-��E�����c?�9�G��՜��@p٦���G��)�C�.���1Ԏ��}�E�0��R��䋮�l�
;�n5� 38E���u$e2��O���v���=���+���y�U�Ӛ�����e@�՜�����"�U8��s[̹�$�\��!���hd�}�흿%/*X�;�I��\֌I��]�U��kz�c"�ķRH��{g�5��#���ƟN���H�1P��>��i=j{��_�#wy��F1�Yt����Mq��y�DPe���o�q���Y�ת��N��k♋�?��n�^S��~��܍;)����L�IϤ$�<�g�~�bޙ�K��G�X�+�_�_�y��_�q����j%^�+.�3�T��fX�{5
���m�jn��_�Ƃ��a���uvP�f2v�}�q�Ч�	�m�+止�nؓc�/cG���J�qa������!��\H�Z��\b��u����t,/,�v�5�v?�]��=b��#����Y漚��b�i��c!=�c�/����`?w���#�m�Fwn<����_5,h�o�/��x�G��+�rހV��G��|V;Nr=�#���H֢�_���s�X�q\V�����_�����<�T�qF�⑱"�*o����~kS��g''�\�
>5���과6ˍ6���Ot�90NJϦ}�I����A��C��ӌ?~�|t�
���[�����*)b.��
�>��9�g�d��^��� Rdg,KĻ (y�9��A��M���ˌz�[}���P?$�_��y�y�����:1A !Qa"02BRq�@�P`b���Sr�3C����
?���k$;���K]D=(��oE��X�.d��ئߤJ��M[O���x�U�M]�1�C*zacC�i�I�Il�J�뵼/��z븛hz9ZlC�L)s�.�Uys�m�˧��R����P��	_I҉	�]*&�˓�R�ӟ�:S�p�3�K)��i�E�_c��Κo���O�ќ���M<M��?�yGs�q�i�NY���e�?�4,C��U�>�b-�(6��Qo�;�KC��gԌh�<z8��o*ԏw��d�M�ЦF���T"it#_�MFvך�U�Ȯ����GTU�.�C���:���$[u3z����C�5Tƪj{G�%6h�����_��<�,��[!�R�xt��r����^�%�j�O�ж��]QSn
�]Ek��n�H��0�]�}�hW�K:a��Lj����=��"��vz��E*V�U)�+]+C�n���;i�ӧn�3(��|7��+i�Wqm��#���o�5J�<iqo�]T���u��V͝-�G^��V��lW~)��O��{����p?��%�E6O�H���B��C�M�'A{t�]��U�Pų�$���p�RQ�Q�:�KgSe<Օd��M��J�O�!��҇�Ƕ���[�K�(w܏�~�ir=�ARU:�oEc�v�:+��G�8c)ӣ�±��CU�M+��EN�����GLG_KHU���
oRB�������/١�P�U)%,�C�.`�d�Wxϧ�OhK�*�*Wr(U\[85�r�b��~��Ӥ��=��n8�h(l��n�.
6�Ĺ�?�&'��'O��R[��X��1p4��<�U~�(�p�Ж�\z��-�m��[\^ɝ�RY�?��Nt�����T�7(h�38)]�׸��,os�ڿ%��K����(k]/
j*z�(KhG�\
�	Wm=[��v�`��ߩ�Pt����5����.���Q�^�����.���6���[-�t/7m\z�m�������gGb�:���MȊ�;9z��R[-�YB����Y�
�o���R,�����T��*��q:�p���B�bvg��7�f���[�#��7Q<�·^�o�qm^G���G؃��>�� 2���]Kf�m�L�b'�qm&�.=Sa�˝��kdr�nW��d�އ'��ah�v?�ޛϩM���Z�e]���2f8�s�⇪�{�JS�u�+E	خ9湜+jkZ�ul�h�,r>f�&-�rp�4踗c��D*�,<,K�n�Il��ۤ�R�_�|�Grn�M��{-.�;דj�J���Y1n�Tw8 :1���ٚ�
��Տj�Y,�[M+��]�������b]P���YP�ҁl��Jo���n7��P���#c;�,�C�C����Jm�܅[Z"���"����N���
Kz�"��˸�%N;�#��O�C��VQXx›T�yC�nUد�%5�!�m~%(�:�]#��a8 ��s�WO���0��P܍u/E��Ԑ�v+�P���(B�Q�M>y(��%�_�
އK�G�wE�b��X�ʃ˱U�����X���,�Q^�������\=?i+�t�����h��fU���,�"��/C�=�V!T��&�7���ҙ�!�:�;RK�EvH��z2t��C�&`��t�Oc�a��ɡpP��6C��4"үrkVYEV��9-�ù��t��0���P5XrG��D�԰Wc��6VkK�z�R�j�+T�˃�/,(����$;%ܩ[�%.�8H�a�~�J�iD�^�A��]Ts�t�
UD���qn�E�f�R���A��]n�n`��J�H`�?���H�=����_�Iש\��rt�d��:tD�؄���
�X��:��*��T�5�l�x!�+IB��*�[��4��!{�x��]gZʙ��*9+��{��h\�?�����'ҰE�,�2��'�����U餣Y6B�|r<�]]Y"T:6��O�^Q�?7��T!E4�R�fo�����ྮ��"{�ߺ7cY���qf�[�R�R�
�Gy/�0�S�؍�_EA��C���p��q�G,\jV�I5M�;���%��HY�Jv�Uԡ<%�G�J����rE�KoA��I�F+;�+�J�ڢthP��H^Q
oC���'�sd7�O7�!ݟTw;�����q�x�X�G��L�M
Q�
���Z���E�NQ�JPH��hbs����_�QQřRP]�/��O��!��l"͐-�N��CJ�̮�E�"�O̰s?b��J�R�����i���B8��S�D���H���)�IE�PP�JO�e.E�}0X��Y���O��-I~���D����2�-��qڶd���J��3���.G���(R�+�ʕ���(���+��g�ž���BI��6@����f�<�V"؇}�2M��\��MQv<80E�/�t��t<Bt�P\IrV��roG���j~��&b��R�����B�����>Vx~���I��|�px��������?沩�T�ڈ��1,I���adlkZ�ή��U��QStB�t�gZ��
��aj�/E9Er%�^�~�Zs��*pT���;��#Uc���Ue>w)M�Mʴ0�X��d�>¶��)烓�D�/���u�>N$����P�@�O����i�n�"�.��"�u,.r~�}����(������W�W̹��R��h���pt��t�����/��*�Z�_J�{�S"��C�s��rƺw2���k�`Pn�!:��]�TC��	�}�[;�u�Ɋ��%���օ
*��Y#�ˍk��+E���DE�y!�X�5+������ݸ����K�}6���pXiՏ�r(��?��\t�h{�y��>_���ɽժ����%'�{�\ꈋ�I}*�J�3�:?���r�So��.JP����[>f��X"�c��K~�QP�f���
�������rW�_1�\��p*U��m�uj^&H�z�OݙS~����
��<;
o\�(e��+�r5[�"����>\K��p/��ڴj#�ۑ��Gs��(��+���DV;I��r�O�َ7�wE7j5��_��0�
߱
U2��ȗ���+}]��r��X:��N=�)f��ا�kWr5O�EM�X��h�B��}�M�,�s��a�m�ߴ�(��ME�2��3&ChQ���hC���S�R�t���19%�}�Q�+�W7N�e�S{��z"$�1
6Ga˝mO+�V`x��7}sŊ�I�w!Uc����H�
�����䠷�6+c��.d���P�e:�n��QE�Ԑ���ǵpG�Մd�,��=�zCc���w��'�.�E����'�ȗɝ��?U�+�����3	�[�R�"�ZKB�rR�4s'u�ī�2���
�}�mIb��CuDN�g,��_5n@���ܥ��+��-�;t�Ih[#�֌��;"(��0˙@��h��
��d����2d���8"��G���e3�飖v��	�KM�Ot�#��d�?tU5����i��,��|&�.NH)�Ct钂��s(�,�Q,#������}��7�������Ԣ؁~�3�FYC�\n��^,;�jȟ�'�s�'K�*�cҧ��sС�!ǿ��<�H��O��aޜZ�f[�K��Ǒ=�L�b]�E�X\�Mρ��O���1%0EWIJ(^_m4̣��Oے+��M���m3���±j�X�x*CvC�>-`YE*�?�Cf��\����?P��>�B�R���?�Jm�2��&w�R*�v8[�qC�u6�Y�q>�V�ST:�����60�r�[s�q�����v��ʕ��¿MZ�\���>W��^(s���zK��	�>d��9����"=��_��N���6�W�X-\3-#7�+b-�v��H�C�\34G$9,@�!N
����ا�.%đ���J�g���;lSx`ɊλT�EL��8�mO2x�^U��R�gq��HUw2�W�7�?��rR��9w��DWڅ'UÓ؃e&qS�or/r%}�-���6��_,�u�a��ʻ"+,Og*��/t�'a=�VUƕ�J��=��r�ђ���n��DV��0)�r�w+VєE��5�RȦ�$E��1*҂����.%�[pw3B'HS���>۱ٙ�c���^�%Ȋ���t~J�PC�(Wc+��*5�G'b��2�QP�pG�Ì��H�J��HG%w.�g�e�Y�Ee�Ws���wg�u5�#�nE���	�s�����*N�U�+儧��-l��0�Ȱp���7Ұ��Tޑr�hX#�+A_��D~�~��g6���V���T�R=�KY�}���:l��7܋Ͱ��^�ڇ�	zb���O#�O��7U��k7$�н�B�^�j9<+��=�ט�.��3'��K����1Op���w�>"���NY�ի7��'�e��b�v�;ΧS�+U��zS�");���Ϡ���5j�÷,�V��b�P�o��{&ۘ8"�#��l{QN<��,�_.NJZV+�bZFQ]�YZq�W\O���G$,qu$/�07�Gk}7gJ��dP�YrK8*�b%�E}*�VC�lx�3�Vs��X�Ƅ�!���v�%=n-��7ƕ'aﱘ��}�'�F<�!o���(uP�&��A
�o��k��\���ݦ�̗�Dk�֟�U�u�d���a{�T�żL�j�=�>�>N��GK\�Kq>��%����W�Hm%���#���|);�M��G3[�2�	Sl���"ƿ<��re�s>��T�,r�*��U�ؿ��8B�X8R�K���<
�u!����P�)hq%��YÁ���~�vy9�e�[N��U�'�(w��5:���"<XΝ�G�7�/��;ͺt�y�ϩ
��h�������{�n��짥�sz8<Oƥ��>M��N����>%���2
�s��%o.���r<�[=kn��)�'���K��^YҊ:!n��8Δ�"uo���B�J�8d.��ս
y{�������~UȽ�T����ڕƮ�T�u��*5&�冬��Ԛ���f#�]��tV��������V�8B[�A*�G���
�U��.��[Ю�p>�Cr��&�5_��ܮ�FP�+y��US]?:+C�Pڙ�N\M��klÿf��FTW8wR^��!��{W�
Zq	ˑfQ\�{>��rWs%ن����v�C�G3z��vdJЪV\���5��X��Q'�	
�!?u4.��m�lE���Q�YE���K�*VT����~҉~�a�q

Ыy1�Xb�ȴEZTw��
6)��!�rԓzzv��'��(g2�ⱁ��䧕.,�Ы�CAd����y����<K�r�d�ު��@�D�}����ƞ�\��v�kg&��p�e	A
�e����CS�,�t��5����V;���gި~ӣ�+ᙦ�{N���X����^p?q��� ٖ;K����v�\�n��ܫ�ɝ��![Bw?�Ҷ��'�R��b�0(Tt),�=Y;/��	n�tp�(��VT0Ese
{J�ҿs":j9�Z`��S�s����V���5n��\|��]���[W'i<��*�^һ�;�2�'����o:S��홭���y+��y��v�E}�h��O�B���O��~Y�C�U����G�-���E%[���a̺����܅ք[��\��_:+���y�J��12Ο5yِ��:�t!Ȟ�+Z��h���t�\;dE=̋�R���V�ڱ�oM�=�����IՕu4r����C�![.J�^Ȟ��"��
�̔B�s�C�O7ܽ;	~��h_,I�J����b}[�$
�r��jI��j�C���F���w���T��b��Ln]>_����=�nR]�E�/���܁����ސ�DQ*�}��
��<+TC�*��A,���p�1�%wb{�H��:��M<��O�hy�Yq-�ΚI��A��h��{��9C!�e����\��Ϳ��đ_w%���)8�b�[�vUaK��}ȭq���Cr-�9��՚��F�Qi�ΔE������wS癧]��R����7s�	l,p��)��vBܭ��ѓ�=�>m����;�gS"� ����j
��߻��9+���9�'��!���U�m�8m��|=�_qY;����L4"܍VT�B�)(��ǧQ�tx�"��<8�.4w:z���!o�3��t��[�%��R_%s��K�^}2�J�J�K{��+B�·y=ּk�-({���,�
ۑ{`�,�m�I�Q[�����e��6 �!m.�$>֬�y+c��7)�4���|�W���Gm0�c[�k%e������s�#/���,D8��/��xo�|�t���\�Y�!��9��ƚPɁ��Iv�Yz��s��z}�̕��T1�C�c��W^�=��Ae���[�v�z�_������W"u]_�	n�㰕Hx;90�����Ք[T�'�%na��2��q,���=���)�nž�=fB�D��Rz|�?��Y�b��7mO3(Uf�Icb&�gv%�']kV���##�h��(vH���u(e��Y>P1����
-������`�:�S�R�"^�ӂ��?��#��(�&�B���[�{��cԶ�:~�EwDv�҆hw��� �8�E��>D+���;J�TF�s�?��I�C�M������U���,�$Kc�Ħ����U.;��{�9<=�aq$-��y��]�t��f^%��Eg�9Sc�����C���؈W^�ҥdȟ��/�"�Uȕ>�{���n�3$+����9;"�~�n�6��RV����1^J\�9e��r�"ߚ�2 {J�����ɕj�b":����n�(P�a���N����5v�\[�Si5�$�<E�tu:��i�0�1-�_��.&E�;�R���|	�J\	m��\{1�p[�]���|�G���t<M-��K�Cy�l�0.nb�l�}}��B�`p�e���C�_�I�G$}˜�i���]�Ws�����hq%xQ�:�+B�=���w!m�x(~oN}�*�0��ֽ��B�g2Eh"��t�u�J�r_�4d���0�
o�Q�R���!s�&d�mNN�K2y���S���n�ݞ']��A�:���1*�"��?�$8]Gq!���C�'�j����99H�QM\����=�v���J�U���GF���*�F=7�����Ec���L��(vL[I��6B�Ev̢=�W������C�t�A�fH����<�ɊJKW��Q7b�f�W�i�u�|lPV+T��=�o��>��d�j�b�]m&-�22)��������v)O.��Gb����S��Fe�|kKr�؇e��e��t2��K�)C�6ڦ���]$.��"{�]�؊��mܩA
y_&=h�1,Tj�Y9tD��C�����.��j/�G�8�#��rw+q��QM����Cy!\b�^hj1�F7�$KzJ�[z
���)Hj$;in��_�
��T6��u���"/r���oE��N���x�)�K�_��e]�zI��!fV��8�j��CΎ��<�\B}Q���#g$:2�#���G��Ȱ���D��|�)]��t.���THQ6�+B;�z��KaS�x�P�B�©���
�A-ߦ�ѓ{��P	���o�O'y'5���)b�.���r�6z'a~N�s�ɔ)6SjgEkS���jއ��>�҇��%�E7e6|�I�l��AA=؛<4鯁�O~�N��K#�}�B�~�p�����}%mB+Iނ�'B��ޭXo�̹G'���ϔ<RB�v���QudP�ѯS�{���M��.�AIw ��x��ޙ;���'%k�+]�؇�}<�6��a�r�RyљR��7#U�[�3���������b��;�˹�[��+�Y`�X��
�'�i�.��r���U~�r��Q�5Z,Mc�z�R��]��!��;�'J�vܪ^���;lt��>�Ģ��#{M�}���c�mO�y+��b^V&E�ppR�II�ĸr���j���(G�\&/�Q܁�cQ�̐��Z���IO��K���KWi+��|NkA}+�[O�w�O��v0!z�;��Kj��ձ�S�$Q&��H��y�b��OU�/�
	���MЂ�
CVAM;���W�Nj�R��X�
����.��b�9�ބ�e�e[���\k�D1�*�.����I^��/3���36-�;��؉�xj��B�t��.}t����U����q�:���8�:�`Rr��_�8Gq�	�Ó"T��/A�(E7)����{>�W�c��B�)s���*ٞ߹Z�~uC��f2�^�݌WҎ}5���>D��c\X��!�O#ً�SķbΆ��#��5�G��ߠ�iD�>�N�������T����mġ��������h���,�Ӭ����Q��O��퇓1��9�>�s�Ȅ�A_C�3Ew��^�*�b�y�4��J��Z�Z��x�,�W�sd}+Ӵ���F�P�ؑA�i�X���
 ~n��I��S��WJ��CqhRW�SƬ��E$�.&ȸƶ�%%m"/z���*zC�ڄ:�J��7�2�Պ�G���R��
�(b�ܢ�Ev|FSnNG�S������>HuD����^�������sϢ�V���s%
�MrsC�w��%�����o�P��������*��)1�_b���YP�QZ�e��!��˄��]ܺss�����K�פȗ���o^oJ,�*ӭ�Kj#��95�g.�7܉�,-=��1:��r��B��$0U�Ԥ�X��_�(��#�N��z��,�v3'V�<	�j��0���v����IEg���w�2�=�x�~�˼���k����n����|}$,��M�]�d~��$�>�ءLMM���R�Gi?B5U&�f_H�1
W��ޣǥ�?dvުy{
���\h���)vd�R/t#��T�}yR���.
��w"u�ɆP��>$���v�V"�q�D���dE}0�V#�zo.}����^�U����������^g�U�]��\�5a�M1j�/�lVe
92=��;�w��M]��oU�s�{���z1��ƩiSoQz�_LP��ϣ
�Ԉ���L%1�-]5��Cft�jM�y��������ӹ�RބNQm����Sz!��e)���e
��r=�Z߃�).���z�����R����J�PoB'Zh�U+�0Cn�C�Y}'KQ}���2�����F���L���TEJ�oS�#u�U�ݒ8[�4�{-إ=��l��ķ�_�}F4��jwf+*����$WGvv�4�B��J֢ ��)M�P�o}��P�=���7'��q��<ɊJ�+R���W�����Co]n;���5��i+,N�����ҵ`�y����#�2�|%ե��Я���C߳���˓��μO��m*��(��H!�!���k"�d�w.?A��/W��+!1AQaq���� 0��@�P��`��?!������;�5c�b�~/���c�L�$i�l�@]�`E�+����d[Σ�>ٛ�9m��U��X��HJn#�++嗒�l��Zl!RM�\�AU�;��X�M8����X�W����%Ź��Jq.
������SM��f���
��\�K��
��!�j��h˃m�&����nr���%N#�CQ�����qS��ʛa��OZ���k\a~e�P2��8�`�u*7��2�e��o
K������Pd+̳��f([H��{�w�J�J�7	�~�$��’�������W���nÓ��������|�|�-�i������Z�f��gu��⪼�7.c��.����`�Ѱ�4�|f(�Lyg�f�%�68����o_bTN��1�հ��=�Jh�/��� �m?�#)\>.6:'��C`�_ܩj���.:1"4	��3*nT��l��v���\�z��'������-���q2
�H���B]��t ��&\Bz�+��sUjNH5[鋛����|+w;6M�V��wx����f�TO�r�����B���P%!k�l��͕�P��n��b-�,.\fX�Ӡu�Y�+o2�7s��}���(����i��v�7[��J*�#��y�Y�7�����׬�C�G�_�,�����w,�@T��r���ܼp�?�s
��{��j!�_���0��)�1H�j�w֪��:�K!I|��q3�(啜fs��F��Vu_�g�r��_�#�o��~�31����.�X��g�W�ޮ?H�#�{J�1�Z8�m��X�(��	��=S������\�S�f�HD�>){�1�1�s��UK��
ˇ�)����­o�%�b2�[3w�:�΃��;e����j��s:��n�x
ݣN��+�Њw�7R�=�����+��濶P�A���C��e��s1�i��M������}A��!b��ͷ�,Uo�:�46���@�)ٹ�Uř,�D�<��ks\�|�g�ox�����p��e��-"�,�T���8*SF!��B��'y�l�B�VEE�݂���̠��uVi�,DiĿ�T�h3N�G3�������C^b�H��]y���(~��e�a�_#�n�Ƣճ̺[W�S�[�/0���DQ*���8�y�
��Da�Q��]�N [�G��'7�0�>�#�B�@����ο̳����m�pB(�԰�h.�`h'i�f�9P��QU�K�_S*�~~s,����v�N�ђ���2㈂��5o2�j�F�R�}�f���P�dZ��}A��I_$Њ+����h�.~��!G;�2�̀ĭ���W;�q(�h���iu.����R��&�AAnL�z_Z�w�c_t�R�w��q!QN_���K�@i2K��+�[�姂8�ʄM����R��q>�&�x�=��X�M�X[��VcM�� ���'rV
��҃
x��H�c�#����5�
��YCz����0�m]��<$�����#�[�H�\d�Q�̸*j��4��Lv)�ECw���9v�)-苎���v ԧ�Iéj�6fdD�f.^�Xb���B�d3��\��S劳��Ly�;��
����o�S�p.�e�?�91��e��w�(��)-#��z���3ƕ\4 j�RŔ�k��"B�N�J���}4�4w4����W�4��L>�Y�KĢ����
"�Z��LE�6����P�^k��pF�
��u�E jCަ�MM�S��
��_}�#^'�,�X�<��_�~`h��U�C4xG���K�k�t*9� 
��S���d
��GVv0�Sc�O��er�cڙ�D}�5��i�5�����^'j�|j�8f���T�S��俔���r��/����_��ҫ�����*׸���3�8����T䰷P<���M�o&TV7-n��R���ya̱^f���r�*WL����*��w{�3;5�F�w��*�2������SD�+̻��\7�e3��\�b�XZ-�>�Ap{�댝r�}��'V�NԹFG���q�֟䉀AEB���o��|L�b�S�g�州�A��0(��U��ϸ�QC���ʠ�a�
��-��3�gT��G_
��0�7��+�#��B�9;�!*>I2��l!P(�mE��Smk��'(�L�yl���є���&=��<M��7�ಌ�t�D'���%;
b��\��yC3�`����ʳj�bzi��S��w)٩�F�k}�$0إ<�%�R�w��K���N[K֛w21l���ۃ���s/6�P-]<;�e���wCj�&#CF8�i;J�
;��QTr����
�2�GƟ��b)Q�6��<~E�
��gh�^k������5�xG1��%[���� ��d��
"�
%���_ݩj6�]5�2엎�px!�"�����+r�'r��s,)�ڏ
�|K� f=��e,vI�Sj��`
���
64�H��;�0p���繡m��V�[�Vҫ�{��%y��T]K��f��e�Ǫ�FbG������#H�r<C2�؇n4u�s����(���8~��ySN���KKc��s�/hP����g�� H��^b&�}@�9�U�<v��;1&n[BXù��4�;�!�p��tx��]��Y���]���#
��
�!�������C�ʑ���]ʯ��+4G��^|��=�1�0]�`�x|�E^��9���*W����~�iڜGLj��S���fO^3a�/�]����W�' 6o��f�������C��Y�9�Ca�w�l�ņ�b0�[ԁv���	��݅R�
w���.w��U�b��G7�7�q�iZ�,qcj���C��/�Ʈ���|W&�P��9n�=Dic�)���F[9|�ԠUjY�̻��|Nm����>w(����,�6���=�0||�2�ٲ�T��WǙa�f�w3����V��!Rฎ�k]�0�:�o�l�`:X��9Z��$]2���9f�΢	j�IF����h|D�_���6P쵧,<�������WPy��ן�Y�XcK���ܽtf�\���C�;&iT*k�L�.\L ݵ�L�A���*[�����i}��|����M�f.��H�V6.�
�0;����k��l>5*S�����QU�̲�k�����L��A���`��![��U
��_����zq=����\��v��З.�f�ZD�S̳H��p@��-1n ���u)���\UO9�ا���YM�؏�۫��!],���0Ł6���u��ҥ㈕;H����Fv����O�$��;��U�q
����eJ���/��1�f�vܮj��c=˶S�g�3�'�q5�����_�M����
�d�?P���ƚ�iv8	nVA�]�l^� ��e�GDy��J�f�ܾW/��6%ܩ	>��Z��\�B�s-2�@mv3Z�L���ߪ�����E1G������f8��m/,mQtiJ�*��W�-j�A��ܸE^�D�5�"��=��"��R��@�廚�r<�:*{�0����a�W�M�L�Κ�T�|�I?���a\X�7CE8x�Z�Z�k��M��\��0Q
�-ʟ��
?S&��365o�1�J�a��X���g���)\u�˖R{��*,��?��I��&ƌ��Rʣ�`�4�TU縪)���l��ɼ�N61�k�Q�L�̽��e���`�}'���|A�{s�2���BS��pB��?�x���T��:�l�R��3��穆�j��C�+u\�6���JZ���.��K�]�o� �IWc�cC�|�>^%"��U,|Am�P�(Z�|v�m��f��R
��_�<�M�R��p]=��,��5��<"�g�\0�C�!!ņ�tD��8�^��AXslW0��A*�[���~awi;�v���.#l�� O
*�U8��Z�_|K;�;9��6HTe��2�e��7���o9�Z����0�roE��Kq� �Υ�ӲXR�K��k��CE�7��i|j
��Vr���,7�"�����tg�
���dQ�=(%T�8#|bs+2�I��i� �N}��7�J�R�]:�g�y�i�LKWI2+�0d�pk9�e���c�O��)x�ܣ�j��K�{���5)xԴ����ٷ����̡��.��ɏl�����
F��`�!Q(U����En�#�&@C�Cb�9�!]N��z�g��?�p���b�
y�p��L�&A�6s�[����*�9��
x��p��8�`���3��,+%�E���k�"S�np����l��Ed��K��Q`����W��	J�_�����f�?g�`S>�M�f�����59�jQo��?rѢ ݑ���T��TEz��I�p��V2Jv�o�]�>���D��B���Lb�qb.;	L�TИ�6����0K-��1Y��VU[��`c�U�)H�ݐ�(1m����G�$�c��do3/�sZ������A�����">��R�����-#QY7q��+�;��	��e�f�ݥ-�z"L}�x�l�b;�-p,s_i]����Wʾ�[���3�Zf���-s2��g3!���+]�0�m+��+�k�7j�W�[���,�ڙ��p��V`(@���[a���0��l���" �d��g
j�,�~d~ɰk�.��r%{<�N�U>=M4c����0�,-��㙜:�(�B���%�?�HI��&,X7L:�a\�����.u�������F*W1]���"e��$�t�0���l`��ݣ�CQ��"��LF��^��&���F8r��S�j���K�n�&���o�,�9�HR��O��uL�#{�A�Z&��x�zѢ�x��������0z�j���
R^���<Œ�
��k��Ȉ�u㼃��ݘ��4@��5������^��I�2i���jR���R�K�2�~?��4�1'�%�jdL�K�=J���U�1�Ls���s1J薪��l������~a�cx�g��V=aT�R���0V��*)��9̀="�϶_T�],��J��Dm�n�A��0����4�^�Z����;f�H5��I��o��JI}�|����x�]s�/��7A����S^�
������v�&&�+hl��U��?�J�lf.~��
m���
.��&(���;����n���="��嬶�.]�3Z��a��?�
m1a}�gJW�Ե�1#o�}Ҩ
d[P�J/Lc04�	�F�arC�S�=Nc_�{1��
�T����	P��
/'P*rr�O�.-|�ΈN%���f;p=���.db�n���\MH�CO_��[E�1t��&�V;P��5gdd�}Gg��s+�qv_�J��;oL��w���,�v#U���gPYVmå��
���4�[�j�\�U*�L�+��b�9��C�0Kl��À����ؔ��u�����*��
י�P�UE��6UL�1UX'���
ˊ:�nd4T�)�'��.Խ��lg��S�T�T�7x�r(C,�l�n���K�u8;�gm�VmL���Tlx@0Aӆ����
����=��0�>c7Y��V����^�?d=%Y� �,���,I�f¸���,��C�A**^"�i_�'�6x�z��VwX������:x@��c���/v���Djv�S������ -iN��L��;4�pL�~����8�
��IC=t9�RWo�H�V��Hw�hF�\��U.�
��MA��p04��y%�5��WE�ixO'r�G�7P��w0���@W2�R�/f�T3�G�`(�B�eߘ�0)��_uB��e9�
�:#<Ⱦe^E�Ѕ��J�}�94�t�[��D:�p�;]R��W)*���QE�NVq���1�Z՟��<]����-��V�ஷ��f��+��B�G��;Y\Ì�c���\��Ƽ���B5��J�Dze�g������R�Y�z�i\�)DS��)L����V��	^ey��8�����%��Sθr�鮃�R�%u3CMH�k�\p.K��Cgu��c+��n�C/	Q���0iVOPǢ�/)},��|J+�l�Ln���ז����(��Y����B~�.�W�+�='�=�?-��<
\��T8�8���Hv�pf��җ����4�;����,����T�����$D.
Q4��L��p��K>�����X��p<�p�����j}�0R��_.���C�}�d!���f���̂�z�E{���V'_�*�W=����H*�m�Bu^�X6N�~�۫o�F6��̤V�´|��C��8�8L�` >�N1P��o��S����(h���a�6_<J��Tø�W����N߳�>�N}|t�إ�[R%MAs���5p�c�����''�ف�������!��
X�l<BW��m������%�Sj�;�>\�Ī�'̨�8�c��[*A[���U��e0��o�3��,��|�G+;���
��h����k���|������_پ��{�5nn+[�`2���G��n\��HkYSzq4��7�`"LMh�_�<G�7'��/���iK�)W��o��h=�.heB�d�+7S/�0��(�d7)T�ʢ� ��QX�����Z������PV~8���Ey?�hFB�� A�i�B�q;>�j�����xJ�dN?��c�	;g�.��{�$���jy�@��ч/��G���`�ǩh�68vy�*6�[8D��F�������.��@�j�X�|C�3Kq4�L�*qZ��TUY!w32yE�YeU��]��p�P�����17�d�SP�U��\�\ı0[�(����m��]㟩�@�Sm={�!�����1“��:�2�����I�A�<��N+�D9�p^�R��/���E�=��F��܆ u8��ew�f{�ޏ8=$T�:�R��w�B���mk|F&���ӡ��3�*�Aj3kR�5i	�4�Gd�m�W�V�+̪���������TߘԽKj/Yb�S�k��3	\��j0�Y�2ټK��r�1߸�>�r��_r�l��=�1�ʦ�˨=8X��F�����+�
�D:.*�"g��b�ǕF�2����
Kj-cWܭG�eh]���{��J�~��\����|�����W��ʵ
�٫E�6�|ep�/���c�
Nl�bS.o�XU�l���~�*Y)����n>|v8~2	X�<�p:%��,��M�f
[��|��2�ܚ�\2���G#��f���亱��XbRmT�ku��3)���	V��v�S��X<���[���� X���-����t����Q�,+2�^���
�p�s
��V�#6���-�%���7�Mx���
Xva����O%�D�pzgpd�$(3Gw-��:�=#
���*i��JY4��L��V�(���/���i�<t��୽Ɠ���(���<��p������u.�M���.<@��
����r�,+���&p�.dX{����۪��X��;n�=g$9}@��"���W�ݜA�p��U�g�Bf�.c��f�gG�-�0ѿ��>�?>"�K�Bp��
k	2Ƿ]��O�#�p9%ŭ3��²�@��.��m�̺���Ts�Lo��?�?�����1�<�c����*��
�f�SH)���7�y�����g���m���qa�0|z�ɮs+m�)4�ԡ{j��:ʇb�(�3W�-	���!�&۹�7��|��rq��q��	p���P�1�f����8����o�sĢLltE@�JA�_v�K��F�������W]�Q�9�Pt���
�8Q����ੲ�"�N��77h����	~�Q<1�̼ſ̌��;�_�^j&
�	@��6Aa�����,�`@сk�^&p,�����.J�K�gq�|��(ae��%��R��2͉K���V��/}K)�x�	�9�R�]�?��#@<bpT��� ��ݶ�+O�����8/������X��Fɢ]��DV��R�0�7o�9R���~6�AƔ*�c�A��ą���)��t����9����SՋpe�8�j��.5��ܥ`L_c`[��2�e�ZP
�3�e��I���f)���2���%?���T~ɂ9��e|t:�b�00�%%��LsP�qp}J�M&/��ma��b�ݨ���gd�o.�↖M	,"֧��F+.��n�~
ƮL�w+�����Xp��A���/���ݼG��=�)z?�.+�b���|�L�@?���T�����XC��R���3D�Z`2M%��lw9���6����u�u��7n_��+�ݽEZs .�#ه��0���v�K��
+����לܧ��c�}�̼+Ug��Q��T�v��-"��0NL���"]�7l��߸�*a��p1�0$Z��*P����k)�4��UE4�p@g���?��bg��x�H�Ǚ Z�+iV�˺�D���x�~A�_�]��
V�f\�������+���Ze�T����>���/�U��I2���KQ��/�w����C�]NX�\�o@���q,볏�BX9K��83r��-��,��0b&F��}�1�Z5��v�Ƣ��U��.qI�I���������J��7.mѢ$[��3�I[ ��嵫v��F5��{���{��,��z�<�P��%����^>
ŕq��
����֣�У�V�-���/V��eZ(��6F�����q
�7��3��f�$��C]Z�v�Y���˨�\u"њ��-����8��]��ɕ��-�o��ѶWV ������(.J���Y��r�Z>�
kk��Nj1�G��8����0yy�Rv([4z�%^.9�Eu�c�*����9�������@�	I%�GN
���:�B��E�]���-[o�$.�]�&.���xF^��ê��a�j����+�f,�(o3��z:b��3¦~B%זp=�^�J�Vmuxx�xq
S//̎!h�5,�t@�(�!\���R�u�F6FL����"A�M�	TfX�I}���Ņ������p�̳t�ߖj�]A�A�[�c����v�/�tZ<��,
��Rc�L�<�LT6w���W���G}Ln�X�b.�1�0�%����=A��W4�N!���
:���yx��0���n�7�����y:u��H�
��e]wpm�:�;������.����]��	��f�¬�K�Km�~g�z��@�l�F�D�(�j�>�W^��ҽ��q���;��~w���m�S�!�nS7<\�Tl��������r�zim��/�Z튵@Y�B1^ X�պ?�_r�6%d=�\i
�'=��K�;�o�<c�C�E��V�/���H-��#���(�b�.�L>BmU�TM?3BՇ�_1�*s�&���L;P8j�1�%1�DJ��B���R���2�+Y��r�-��\J���A�rdcdYQM�M��60�!��NU3>�JV�J���$}Ge����g̲Al��2��/�_�b�����F�w�%����vg1�bt����<[�E�f�+���3�X���`ͻHN��N���RR�5LȸlPҕ�e��� ļ;Eձ蔰4����	�FaA��y��d[�׈��m�����맘����M�3�L*[��wE���U���8���D=�@�#�9J��ViU�!ys��聙k�E���c�=��J�l�8��pB�n܀�]֍.��ݼ�4��r�&�=^��W|�S�튋)�m�
��wG�?����m�)���[�^#`��#�d8��~�L�P�Ugh�̂�"�%�s�����+Y=����� ��%(6��2c��@��M$��fg�J��
����r�Z,̽(_.������

L��
1�r�iU�3CM\�f�����Q��
+��3���:F��
�&G{2�\9u9�	c�	x��ŗa����/4�Į�V���c%�ʀs1��p~\r�B�99�ѻ�q�ˣ�h�2ү�2�ҭ��L,�e��z/�^�/|N
���-V�IuiP.��Z�R�O�D�Ka��G�?��yܥ[v�Ai��A��4�қ%�]�/���m����f�Zw(��y��Ô��!du���['��Hπjg��
0�hi��r���4�h�;��P�����*xpN�r����%r��1����ű��X�eZ����ۂi�	��j��6�(
8�1�x�p���gc�/$^Fbh{��E�����
FT*ز���L��t��fԾL�i^zG��x���Ǹ�A���Go��	[w��P�{l��&ӧp����NO�N("�%!}�T/ˑҊ��t��� ��Kk<�)��\3��q�����n�@���b�mYSAhx��И<�ZW��Ee*:q�t�ze�}��l9op��홿Y�3�����
��y������~0<ߩV��`&�ߴ���)��w3>���֓�ɦ|���3<�%���j���;��k��e�F<M]�X�%����FÄ��B�S�ܹ�����W6��*P���	�oT�M�Ncؿ�I��/r��	��8����(q� ���_h�+��7�P�5*fs8_��\U*�'�x��L���tDv>�%����T�����s��������0X-�,M��
v��ĸ����(�]NXb��*0�k��ѷ>O�.8��g0�}L����.-�$�m��%+9w����oT�^f�a���UA'_����/��ea���b�f��	�vԼy�Jd��V�y:�ήP�P�*{�3B�gKW*+���1���۲-�l���4�f*�%���ʍc�0"t�xxM�#���/@2�hd��Jo�J�:CA��Qk�n�aS����F{S��?��^4�m��W\�s��)���	�hV�������4����Ŝ �*i��QCԳ҈�D�B�Lj����n%�1�UJ��C�b�4��J�e����M��l�� ����(?�,-�x���7�۩j��`����e.2Z�%Ϩ�:��+S�~��=� ���k�Z{W.g�s6��&�͙͡U��q,��1F�[K�1�����ٸ�"�Af� 3��[5I�L�x�:%W���^����;)F.o�������rz�#֬3�渙��j-�,ݾ#���4��z�)��"^uq�(�4Ã�4UG�s���]�@��qܪy��fq�h�oذ��c�.��R�x�|ij����q�o�p�8	����nagKW�?<F�z�İܱe�2ר�
AMG���䃨|��<�a��8�y�O�cN�N��|�{��W�D�C��4Ct1V����1�R��C��8��e~�ʰ�'��� N�/XE��2����s�v�r�!�p� ZØC_c%����F��J5^D���B��Na�乫��6�\F�~|˵V�rX���ĺ��+�DTU�͠լ��3#'l��n��
�=LEp.���<��d�]��|������9�u��b;�S��eni��g�3��1�fC�.�1|�r�1�Z�o=`B
Z�p!��9�XM���\���E�����٨���0(����EA-/#*���.m�O�g$�O��_���s�/s���t��9��Ġ�;�]{��˳D��VQ{�M�1���h	\O��b`sX�S����d>ɇ��d�Y���-��eq/��d��#�/$�?�i�m2X��Y�4�������fU@�����;�
ܩ����:��z�'�6�.�gɡ���FT�c�*��>�u�#l9�;�zJB`�wH\��(��
�cWY�!�u�'�M�/Y9>�&I��1_�z7r�yF��8s�pb }��?#��V@�2N���E�y���.��)ɨ:99&NF�Qֺ���-��i�mF�+N��n)ǘ��9��5��Q�ն�8���{&R֙Vc��=A(qbذ�x�ڌ���q�PWM[���x�j(Pz8����]�sFj��0��K�-5�X�`������7�0!��/�r���WǔAm�6T�o�|@���F{�bq7�-��@��M|H]a���E0:�>@�^#��A��W��T�s1���$W�h/`�c�=їݛcUJ������U�~���2S�F5Z��K��8��9�hs�1Xj���Q����y 
���+A�T]X0jܺKL��3N�}�4%Ž���P
K ozOw�7Q��KɋΣ4��Bۀ\���oiQ�#����h�t����6A�	b�_�\��z�`ۦ!�L��;Xs ���>�3l�/����fֈ��f��GXM�+�n��РT3�u@���5[�9V������V+"��h_1�P��k��%����Zo�f��^a��{��zDxÆ!M
3癋$��[�>�c~3=Ki�b���PV��ʦ���,x�	�(��Z�y���٨���+S���DE�e�[ʹ�|RT�j�K��\�8�U�|K/��sI+ʲ��	F.�ݒ��M:�OL٢~c�~����g�,1��*s����[˳�a*T���X�٣)7��`Euqi]�F.ai8G�U�^�l����FX�t���H��E�qp��E�&n)��-�.��_��|W�V�/A.��5�!��f��O�(Ym�Aw��z��ʱ	`�Ģ�q��ۃj~Q	�.*nhI�p�+ H4������cx��b��b�U��ሹ���D��^�G�ӵ��̰O���n4���;��$F��*�Y¸7��͉F���	pz�WV��(ߠDw7�!{
�r�0�1��"��X�"�Gm�04�^!*p@g��kJ؅��a��E&�	�m�mA���^��\^3���nK�]��M)�PV��̪�es/�t-�1�<����24U��
7NK�qyq�%�AQ�p+f&�oKwy����^,چ>�,*d%���q��+!�	[�L.$/�c�<�X��5�3���7�p�^[�3(MNc�8��.��P&�r�̵�����3%A�bwЖ�ٔ[
x�V�;_٩_;��y�b�qbe�heiS04;e��dwu�_�|���Z�&�U&q
�]%㓇�-dn%ހ���6Q���xΠw��3�%	��׸���x��_�#Բ�C-��WS�
^T�iT�'7
����~3Ymy#���
��x���M`�V�+���P�,yc�C*%���i.s���T]���E��^b�\�u-s��������������t�hwkXkbx䉠�KTs�1�?Y���i�QZO�	��f�������EX`fMɬ^z�Ax�j�(��h[\��fdI���U�����]�:���Q�R��d��5���R��7�%%����i��ؙ-)��2�2��
�|s}u&�l�(�孈��FsL�OY��mWqy�[V
���b�e���@���s����K�������hy�c��͜]��킻�7(u}N\n��H筕�E��
Ek�cɅ��Ќ���\p�ڛ���o�qQr��[9_)�h?�PL;D���0�[
�6L���5]��-�r�ԭ]w�뢢FJ[��wDGb��6���*ɴ9e���p�������U�^PZi�F�H��ʬ�T�����Y]I�	��9��J�W0�³�t7
�v:}D�r]�;)f9���������*q���6�;���W��F��0�l��a�m�=�(\8�D�;MӂT&�rG1�D��E��WԪ��X�V���V� viBf����#�_2���'�0���c�Q-Wf�gg1�����[7�2�Յ^S�A�c����
<⫨伿�K��+g���9*VBU~�Cp�KG�u/�?0�]��K�ztS�xF��|���s���$ &�A�SY�h a�̹�g��
�g+�ouo/�F�\��N�m�s۩���gqE���˸{#5�򄆁���f��y���}�A���S	����;c6<�2�b�.�gX�+dž;Vb!�;��+$���2���_#�G7P�&эD�o1O?����Kך1l(C���av��
�xK�V��QJ|��5ς%"_�7-̣�v��YJ0s����e�*�w-f>�2��걗���J��U;z�-��.!�9�~%=�a�O-^H唛J����Ҁ�j)w�𕪟�-���G1�؍��ש�>��iO����pS^	m��:��:�O�
&�or�Ţa� a/9�5�Ft��&�f�h��L�+�.a!��^�^E핲�ү�
�tNauΎ��&Z�̘��0j��*;K*�G�C�1V��[�\�@�z�E��<���0~IK`�Y�/�q�s9�������=C�1��L24L��DZqyG���o<�����-�Mo�|�v\?]�^��P�KR���G�Z<�7���N�L0F�8�bg�U�訵^�/{9�U���{k��6y�Py�G:}B����ny��#7���b�"�C6�f�-��2��Q��ʛ��4-OO�\
�U�N�t����#
�x��*�ˮ#�9z3'��t�#A��֣q)t���Est�2EQ�b��ThMю�{�}���4�sKU&.ì$���1H��J=@��J�E�|w�5i��s��<BL�T���;������0���W*ݪ�9�:�c'Z0��Y�<m7/lZ�3P������J�wB����lIl�<AX��~h�2��2�pC����r2ƨ5�m����r�_1�)�m�K��R�kn	�� ����
4b��(�.�ۀT#���z:��5��D��ۆk*��J�1Ȱ��iE�q,W[���s)8�K\so��
&�8�|K�*�R�vs:'Dq\$ۙ�ʈ`+�Y��4 �8�L�w��8�:�'�p�&�l�&�%�4p�!�c�v��jP��%�U��jI�
h㐔o�CԶ<k.. ���av$���1�k/�qZVg�Y�����SC�о4JB��f�;��]\��T�Є�`��P���Q�-��C2�����V��Lr�ck����TY�-������Z^*����1b�NSm��Ҷ�#Bi�%��"ײ ����A����<(��%ZE��̅Y�Y��Lb�{�w{A-O����Kˍ��E
#_��17���#�fz̊��>Ȱ�:�p^�q*�a����@Y�,�n멏�̜!�JL?�GN���0F)��390{��s8��pGP���lev��E��`����+��#�G7�{a����5s����[�nZ�;a�K�q�J�q#�(�umo!�[�x�G����mԬ���fmlLR�V�	�ܰ����W�AtC��ר)�e�'X?'�\�Q�Hm��\��F�8e�\6�3��*�S�����.����/�����g���v'�'",p��L,���2���V�Ƶ.vA�����k*o1�9'b�l��kd;��������a�W��{�\G��I��x�'{����%��<騯%^y�͐m�|ˁ�S	#ne�񏵔WOpB�
pq�ڎ7J�p-l�:����,����_�Pj/%w���~!� ,ʶ�e��ꈸLC��a��Qb)�3
�*�	��_�2f�\����ɔv��7^�?���N��f'|k��$˧�(�Zܜ!
�W��������Q5���Ⅳ���.ᇥ��&n��|�
ou��O3�2�4
u.X��p_��W^�U,��c���˸��9�n�g���	�����2��l
\)r��0��֞}Ef��͇`M%��ŻΥ�i;�y�7W�z�������u:).T�n[+0@���c���U4���1P����\��:چ�Y�L溨ZI��m�*���.|����^��76����۬
V,��0G���u��&uz��@o���l��O�D�Z���·��)��C�t�>>���r��h�/cvx`�Ƞ�H�^�|�A_�V��D���M�;�
��X��g��;Oƕs�Yxy	W���C;�JZ��.��%�2�,���s!���e�8�v���vM�� ��d2�
�ԍ��֥�̩Ls�-Xa��x�sW�J�}�€c�Ɔ���V�ԳO;lͳ��VSg�]\��0��>"�4���I�cyOĮ޶��S/G@���Y�t��{�'�5!�懈�y#ѓ]�B�m��4��<A^v�D�tU̖�zG�.�f�����{Jp�%,�Ū��ΣoW����=��TV����2��u]��l�����/�:rCT�䕰�/`���q53��N�0y�h�k�%�
�ɵ�f�k��b�-穪���V�q1�J@Y�<0������n9;b��T1Y�,���-���}6.p`����)�K�#��+˕̼�R��\�*[T�;r���F�\1,{s���Ӓ��s�~�A]�g9eUR�-]�ܴ]b�^�]���ݙM���_�g�q)��K�W�^���P��}�r�@�ڃ���%>�*��K�]���jX�h�ssҡ*FSW�3]���������^.^̌]o�w0�~|/�qϘ�]{��X,*�Dj/k�#�W}DE�٠�(i��!���@�JC�&t7z#����Em�Z�4g��{�c�O2Ӹݪ��P/���lZ~/�<��ǤW;��U�*�R�j��_.��{�?w~�͆k�H[N�h����W��%��b9fzF%%;e��N�l�J�ߢ�����Lc��,Cv4�`�
+��{`���gJ�{T���m	�D�"�a�>p�_�R�W�pѓ���#��/m�B��<�K9<�7�$HZ�̪��°M��5�eSJ'H�d����`M4AlYr%����T�[b�8�p?Qf���L�]�Q/�]aq6\��?�$�ZNচ��2B�m�S��b�����D/��T]�0�,�RU	a;��U=HJ�	�1�L����xx���������/�+�>+�|jWs�IPK��w�A6�����u�>|ǖ?r��152Y�4}���#K�.�E������*�Z�Ux`�L�b��g^"4���ћH�JC�Z��۞F�0�����+T�^º ��<����3�@�W$��3V�(\����T�a����ShOH�n���&@�s-< ���̲��J�)_�qx��X^��:M�&��x�b//�Ť�`_�C�1Y��s��Z���.������X��޼ߙ_V0���f'|�p��4oD���F��B�6_�R�EX|y�u��B|Z��[�I+���c"i�3��y;}y����*^e&�������*�nEˊ�b<�\�p��n��3h��V��]����f.ߘ�5�^f�����Vv�����ei1�`iM���"�b+�:K^ছ~B%�q�½Q�n��iKZ`&@�Q��C�C#vߤ5��‘�N^X7kG�̬�_�ym�ʯ`�02�u4��.�{;�q�+*氆��!��P�&�4fg�+0�/n�uO6�\�0�	~%�@x�乇R�k��6�ٙ��[L,L���ż€:�����z�����V�w+���	�ܱr��R

�;�kL�ý�������F��}Y�Ux���U�]}K�2�/R��8�M
^�������*�(�PT�`d����f
K�q�d�p�(���A
�%h<L�x�$�!N���W��̷��i���v��8���w�I�DN�p1ś�g�ǂ|H�0�+5)��/;�Ć�L\�^�}L�Jb��)�x���'$��1i]�:|�jB߈*9?1�ź���R��|��a7)���X��q{�Y�oT(�{�lE�.�*����
c�/�N
7Y;����2���r>e.?�����+wC�&��y���%���4x�*Q�0�(m��,;xD����Ak��D!�R���iE[�'U)�]�W�e*�FQ�%��^��N
�{��
��o6Ӹ��ن=���FƉL��r�]@�vܧ`��P�ۦ[�v�C��e?�,�cZ�Oq�����Q��V�/�b�������-�g,#�8a��Wn,w��}l�KZ�Z��2�&�)Y�ٹ�+9�tv��p-#�������:��ޡ"C7A�5��e�v0nܞe����0���į���&�+P�K��4��O`�<����e�ZH�A5|�J��o~�`�p�\�(�8��#��������e��9	x_�!��H �q��`����6�;Y{'W]����?/*(QY�KK��CB����d,���JY���D�o$�6�L�#xY#��~�5��"v��\�9�mļk�ܨB��[H�`��˴��XB�Y.i�J� ��8�3�o\�NX��^�Z�ƥzS7�7{0y���^����8J�,cC:a��QD:%=�5��x:��9�����-2r�"���5�r����W��w,�J����)�������W�+q��𘌓'�ߝ�6�ݫr4��-�;�dLk�9��i�a��~"�sԠ��r̶7����SF=��qNߔ%J�S^��ܥ�Ɠ�a�#�P,!�s9�-j,SB���Oa*~6��:�h�}��`yC��
<����W�+�߈e���U��"�wf�T�߯��G�v^
�*͟����Q��V��d}ǫ$�ԝVX#*�/rg�:�ps�}��O{��7�Fk6ļ�r�iX�;:�먂�a(NuvK(Uᘂ���d����
F���9L�0��ĥ�<�e��1T����<Ž��e\���N=��9���K��L�s�E
�`'bYK��MR��,8���v?FӶ̝��G���/N

�*��3�1oK�&˨��wf��0.�1����w9�tF��*��q�W�E����^��� |A?���Y�!�]����o�pDN#��l>�y��,�ꦱ�4*�A���}M12:�꘹J�q�w|Aڞf
�%��hEƖ�|dz+xL~�WX��{�(̶�1j{GųA�&z%RР��������>��pg������K.�����p;�D��8��^�8����eq704fb��b�e�����(K���’���Z+]2�X�]!��*6H���zf0����k��O�&_��1��b�<���J��^�}�L�8X��m�J�IU�0Pxv�QJJ.ӏS��e��N��N����i���
Y��h�9�(_�PJ�DM��pc.��]���e&�O	_}9\��P#��cu��V�e����8a��(�e&~5@�9`qϠ!�&��+s�)<~�ޭ�q
��t{@z��b�jo��Υ#�[y%�b�Ʊ-Ki�^tY-����8�ͪ��P��D�/K�����q�/朜L�*��;Cl�+6�IIZ1G06��r��C���'����:���bD��'q���]oH�VJ��/+8jrn�o��T�an�pr��~��8�Y��ԩ�Tyn8�A8��M��0���6`9v�����uX���P0�9�ܪ��	��θi�%G6̭��;ٗ�
�D�ت%�	_y�/�0�T�g��S>���yJZ/��V�d9��xЙ��U��<���q���-��a�dY^}�5/��&��"�lD#�T2+$@�p,��l#-��^Y4�<�W�S�Υ�W>���f��/�N�7_��l*8��j��)��؞�lx�ɗ�� ����}x�ywr1V�{�m��C,���r��p|��
���eY�^b敡�s	lXJ���t ��Q��~s����t������]��a]�v���E�U�qv�4'�*�|�c����7=�)i �B��(�(�A���1�44�&ls�x�9e�Un�}��g��(�%�ka^\�8�+ԨT�)R�n���R�t�Q=06�"��(�Z�NoZ���`
�;?����̵`*�W~eF(��@V�F�bf7�?u������P�9D���rO��P�e牴1�5hc�D)Pm{��D�+���X?��������*�f<�Q/�9��5�^a�B+b�.�X��|�d[�Ϫ��ؒ$%c���Y����bu<%([0����y'�X�WG$�Th����S-E�7F�_��=J����|ȘI|^IļA͟�	�J�L��L�T�q�c��5�sy��v>���r؉���V.�$��ĸ���w�8P�M:�9nr�=|�����PZ��O�uO�u8w�#-�lUI��i�Y;��?�f��O2�Ʈg�R������;��W�+a!�p�d)�x�,
A\ݎ��$]�+.�&"�@��?~�KL�/D�v�Ɍ7��]��.�����M2�~��A�C�#֋^����&z�Qc�O	��r�SE_�����	�喱N�|�x��Y����b��{ט!��7�.��S�t�6
/��U��	�t��>�œ���K~/�i���PO�S�Oщ�k^c+=��6�i���w6�g���fTU�&
����^럸!�F�0i�@W^"��f�R��fYuv�_�fk��+������Xy��}3Vu��c��.h�'&�A�D�eU�]�p�
z�J=~�A���7G50���V�yM�^&�#'LuO�c��S�O��&n�<>�ªB�JI2��u��^�@J.���nfgK��Ump�E-�"�C,�Cӹ�(b�y��x�d,�%�c��^/�N5
;�RJ?�P��
�\pa�����;��A�aO�-ReU/���e)S�`ِr��ƣB��F�(�CM.�L�)h˄�<N��1���n����irc��N-{�k8���g&�<��j5��nn�g����;>E��#��A��ƨ̳��^�a��?���Կ;�(-B��#'��+�w]mJt9�����bO.�eI��Y�X�B�#��!ng�̊��{���x[��Cp�9�ˉ����T��c���q�<N!7<JģVJ[�$��!}��=�U�g_}�s�kA^�`�KՐ0ֲ�m���X�D��6�����X>UŬ�a�ܳYWA�m���F��U)a��:q�Z���^DCQ����L�Xft��ӥ�$�z��^���+!N�o[ax=n �'��p��L|�p{0�bnT�s�5���Šڈ{r
+�e�u�o��p���C�{uׄYd��G_�v�����`��!�3������1�7uDC����;L�F�31���k��<lé�����Xʬj�R��I��2觏�*�cB:��F�s.�T�X��2��L�ܷC����R�>v�Yh�=d�G�5�ݎY�<L��7o�]���	�a��9�Y2z ��b�w3���^���P�B�Gp�XY2^���� �fWYt&R(6��I�~4���r3��̉_z`��r����U��	��1Q�7�u�r-W�5���W�3>nH��:���s��D/�:]�jA���B�X&���%٦�(@��K�#iW�L�X�F��
�x@
�j��3$ֿr��/\��_hoN1̡L�nhjUE�8�b��;���L�Gs�����F��c�!���@I��
_2�*%%n��Zi��jj����p�'�@5�㘄�N.$z��3O//
�9|JTEY&�.c�k�-=Y\@˓Կ�շ�aWvm�!�k�#r-�����N��X�f���С��FWr���~�!Ʋ�lI��c]� :�(��I�ڸ����i\ߴ)� B��C~�M6D{K�\�q�HJ��9���7�y=�K;�'b���k�U�Osm�K�%�§J��Y���:sٔ�@�*�K|��g�#େ6u6��7>��5	�cW��i��F�M��:��w�r'���$��Uf?�mb��͞���4�e���ah5�T�b��*D���ExÚ-T�P�����ވ�N/�"�.������M�����n��'�n����^y�CcI�I��L�$���0��)���Z�€�;#�%�8��t}&Jš�Q��k5:W�:���i�'ҏ���7C��6�1$���+q��s-�c����1�Z�*4<|(�6N2��Qv��j ��!S���ᗣ�1���*�5,;��7��v�fs�E��!�W��aM��;f:ߔ��/�v���!�ԁ���̸Ϲm�T���e���@�z(�j@��8�H�)1)͠�گ2�>�ġNJ���ꓫ�]�����^O�S��3���u�Y��J�?�Abj��`��󉴦p�׾	M��R�a����oG�hI!+�~kW��o
Uc�[CL\,[LnCp�nru4)�I`�d��P�m��k�B��ɂ�Cep�P�͸��h�NHQ8�[b���b§0Ӗ\����8�^�Ƽ�7*��Z�-�a���M�W�����v��<��,m�8�?T
��	�Z�U�c�n��-�ma��&D�q�J�����(Zx���n훂��P�{!���M�?�ŵ:�A9�%�d���ƭ��-����$���P�Z��V����nPÁ�[i��⥪�=LFT�׮��c�J���-W�j��3s��G:D� �v�o�8)���1�e>O�m�7�f�Y�
�e��OM���h��b�
�&2˜���We�,$�*6E����N3��P�_��}�Գ�0�/Ք����J�[�j�
!1���EL�K/ܼa�3i_Ƨ�XiX蛄�lnԽ@�l).�е�lm���gJ�Tp�d��R�jv����p34�S#f��*k�.S"��CpZ+"������S,tǙk�o�A>���X�n�B3��~�u��C�7��#X�G�p>�x�j������#�J�Wq��3|�=L�g�j�Z�<TU�fNT*����5Y̜�F�Jq���F�_W_�Ұ��qWm�*Ł'��Uq�Ԯ5Q@ҵ^bC"�J�1E��%C-�@�G�}U30�ciԲ��F�8�/9a�<שSM�qs[^]J�p[W����V
1����ņ�`]uXMO
0:`��ʗ�d�C^�5�kӰi#���&��|�N�w0���>�]�=�p�0�ܬR�N.~������[�vs�R�x��̍�,��?s������㎩'Qg�SXe� �k�q[�[m/���e�=�fW��#5��K�16v���nK����+o�y�`E��-�����P��j	ثo�RF�w�^µ�S?�8o�*9E{N\�t�l0�c�¦��U�z}GeP{�1}�Y���^�+`ȅi�>���kFo(A8u3vx ��`Q|ܺ��H��明�%�Nsyg\(k���QY�9{E]@d�ؖS��Xue����Z���W�sE�)5�N?�u�)lQ�x�HK
�R�k���m�����B��c�j\�d��
s�07�Z�ج��̰Y��D�����i��Gr\���Xn��:�˘��B����	瀀�xY�^�YC�MhB�t3��k�qs4�1����g��Q��������py��3�Tʭ�WK�/��c̹��~���j�@����6G�� �N"`.�~bv��u�!�p���c��]C7A���g2����Z�7��:/�E��Kո���V���rw/;y�g���{�d kD���F�}� t����&���'x��5�=��+˪f��(�a�˹Vx��\b��6<CL�)O����,A�.�������L��v�U�M�vK�3�1>��<�r71��'u�ڸ�P�)ЬEm3g�f�[�I������8�U/Y{���c3�p����o5��}�nR�ܯ͞��U3?9��V�K2���و	0����Tk�3�pS�i�����
`����fwAWw�����䆠3%��S����9@�9�LY�^b��s*{78�n��賂�F6�F�c��N��o ���'�e�]���U��@���_��W���/ŏ�M��1�|�Mi���)­�IP$:��1���9R~le�,�:_�f�M�'x8	�����L!���%&�m9OR�F�יT���^��� <b@��[e�D߯��->����啌��6b���Qt�NcV�,	��M];��.����\K�Ώ����'�X����W6ƥ�1���ky��X��]|��:2��c(;?��Gem�{Ǵ�V��6�~�`T�=O�R@-N�
n��S�\�
{�u)OI�Uۦ����\�բ��0¿�w���:��8��o�ZRya�Ρ<�]%�n��.'/Qۤ�R�?�p84
�5qc���`�&tR���j�I�k�+S��[P�L�$�b!��Z�u�y%ioC���n*G����W�-���;�8D��Pb�{;�K�D���/V�WlI���,�Lo�?���������R��V�V?�
u�x��q?ej��]~��r�1lf#?l[ʆ!���e��P�|8���7�K+�kBj���jr%1�/�g���a���Uq�3���K�kDj|������
�Z�e�X^��+�͙������N7;�d��3cLj0�ƂSJ�߈���m4:<K��5+'B����I��Љ1��-������O<��Q�.V!�J�!��"���]�3G�<n*���\[�^D[k���_����/Z�%I����xC�%�M��R�s�X+=�[�;��%�qy�l%N,����T����Ϩ�k�ͣF�f���۞Ʉ>�`������:a𛹹�K�u�ۖj_�@��My
�
�u��1
{~��+x�q	�S�E��£4s��A��̻R��E���
 �n3<ځḭ�S�|)�Z�W�/C̯%F�e�a㙟O �(.a���k�U��Ķ<���5���v�S2�ʏ[k/�
+��([�D��Ĵ�.�e�758���]�PB��KP�E��p��}��zI��o��G+Q:�`8>.n�=C0��W���F7��*�����g;�Zp92�b>� ���;!�����!�#0	A�t���x�V�:/$�5-�|D�×��S�91�%#w,t��L�\�OR�΅ȭ���Ze��m	£[V\�z����Z����2��p�a�:��.�[Ў(��P��
���]�Ǧ��(:�a�j�ͱ
��,C���\1:�RS�k*�ԧ/���@�'FKe&aJ>��H�3��>��c�e�S�/.�l��T����s�gW8�\���C��._;kil�K��� �|��SPj�m��Z�-�S_O�x��1,)�2�sؕm����ncŃ�����7�3�刬/Ǘ��ggI$�SK-��c΂.c��ή��4�A����a}�VӯqVL��_^�6ޘ��:yE���S;j��D�t��Zԥ�FnT)��(`)�b�[+�(�G��A�2��\\��j�1��	p��Y���f�w��ʬ�0C9�.4\�r�AW�(�*)�O)��Fi����7A	���^��\lAg�	h�2���o����3Mn��ms~���n�p�S뗵�0���GиG���o�06�>��ɡ���Qh��1eUy���,�zc��d�b�
̪��`���'������B�;~�}�K�V��Ģ�Qe۽��Zk�"j��y�)NJ������+\&r<Naw*B\�&�ŗ�p��-���/!�}C�;����<�T"��<ni�?5x��[[k�.E�]���(�����;l�]�Ȋ�m�w��1�盉ʪ�$G;�԰v��vf�,��K�h�:�l�h=�%ŽJ�Z!U-��
O���[�4�+���\�1Za�/e���F�خf�����2��j+�߉Ҷ���n%�4�hO�����cT-�..�R
�s{��9�Lns��cFbq)�0����[��5:�G��	��q6�U�
��~��}�"�*��w(5�_Fc�sŵ�2�"��H���O��������OQ�"
BZ��ט��'q����S�?���h`�a�6��sv%@k���/�aպ��,M���S'��R7IJ���DFq��Q`
����*o-tr���n�C���
���.楗ٯ7s;��"•��_#�yYP#J�[g�*�+�1ore�	i�
՝���s�Y��&��8Z��b��c�gSwjE�g����L#U.��D�u�t�D���V�:�HN�O!��J1n�h
1��aܺ��Ytw5����g���7#��QU┮�qJ���Wf`�2#̕r��s��y��4�N�EC�]L��cՆ��'�Ik��/�]�E��7FVa�1�o�p
�ق����s9�di����;�B
qxR퓹��.��1��]{���DKNXV�� _5ĤZ�D��Lf�:�E�1�ڥ_Bb�!]�Se�A����8x�.�Q�㐉&S]G�\P7L�R#�-��7aZ��Bn��o�=�*�ͺ�r��f��`�r��v���1W��牳�è��F_-�W9f5n~�j
*k���Z�6W��6�̼�%3���ܯ�����|;�"���/DƂ�q.��u(�p���z�˗\�vK��8!M�c@�����"�9�������mh����� 
8
w+��UP��\�ǿ�b�Ռ���.��9v�i�_h�g&��j�,�����2�Q��7!�r�|�x�U�-M{�x�L��\_�o��r��,����GT����*EJ�->*t�&������R��2�Du��"~����ٍ�`���8�_L�u&
�
�MF��e��d?�C#���t<�XXπ��tN���&��k2��w��My�#'L���'��2��yM�w\ʃ�˸⡆���7�w���`{N'�Sd���wB�P�k����%�Z^%�]�����j�@
@.��,EՒ��;�Ŕd�п�"�����Sy���FG�-T�R�i?~��'���-��Ϊulj�/����-Cu�r���q�Ln�J��#�	��"�
�F;�X�j�_��-�;���X��H�RB/����1�Ӊ�;�(!�ߩ�)s���ۙ��A�CKǩv�s�_��0[~����	l�p��
���#���
��(XO�4�D��0��L�cv�UhC;�L�1Q����e����M����oh�k����(��q1���Ms�j9(�Ry3=S!u�
�|v�@���*��(�BZSm��V
�\U{3�J��2ݖ��H�u鉰�Q��r\�o�������-��P�l/�7�8_;TԬ+f��ݲ�`9�[|�%��s�|銄7�HiE�uƕa[.:���7�H�x�0X�]��p�/h��d�,�A}���w�}��L:5*x�|K7{�82�.h�ܗ�A̹�_r�y�.Q=񦤒��l���4^T[������<��FJ1ܡ��ыr�
ؼ�@�e�ƴV�A��LF#�|0���[ȁo��Ee�[�@՞%����IJ���i�;̯,pĪ.vfZ��\���X
[����W����A6ͼl#q���)�1_�(����&�SE����Y�0X�RQU݅�a�cABv�|÷F�����s�Zט�B8�/1��ϴ�� ��]����)�8s�+0��*�����N%����S���A�:+�(��;n�<>&�[��@Pѥ�&A�7.�U|Ee��Ñ��ZL�5�G�N���y�?�����Z�j�����JP���.�nP�%*"t�9Y�Q[)���ۨ��;|Ź���ƪ .S��k
cI�1L�)���)g/sf��	�ⳈA����/=@�1	���2;�tV��M��L�P.��0I
�����#�u(�~�2�0�p����{5{��^e����2�g2����{��|��faH�S5Kc�LJ�DW'���|\9�7�(���-X�:ai���\T�RƳ��hy�T�,ܣ�[�߉}��:�!�e-�R��y"^��AMO��U�C��E�h-7�OQ�p�#���k9��ի.��i5�X����M5U1?�s�"�[[��qr�l��[X��!��aөE8��jQmq
��f�Z�`:�QZ�ҫ���u�Mh�\B��
��*ү#,R�<��	P=�F�^{`p���%ޫbX:��hN~љ���au_�4�S����F%���V�R��5*j5#PB�m^��h[���l����L��>a���(;��k��*WPN�K�1�$l����ۋl��6�a^�����!Q�Y��{�ڪ�ڇ�R��^�/���G��а�c�{���{�Sh�*?�\�%�O5\\y� Vv�
1��18�s0k3�^�|,Y̻�>.o���x���b)�/�Z�	�����1
^��i/�uFB����;NrMedrזȔ��1]�+�>c�ǧ���Y�W@����oy�
�Ĩ,���8�����ʑ��Ļ��c���YD�e�;v���ϧ�K7�f��+7µ,F=n{�"���W�	��K]�%]_҆���"�Vz�r�c�8?�TԁP�#��L
�}�̯�o���^�S0J��L��s�\��������!�S�u�*6��p0�B)e8N��ܬN%T"4l�w($
��y�&i��i[�v��Ѹ]	�b&Y�y�ˮG��;%��1��T�B��^(�-m�
��6�#��f�:DE
ޖ`���W5Ȁ�;��*�8�;����+��-w��_G�u����j
n=:�Φ���ƪ��ȁc�tDi��2�����Q��L2��ȱD��9�R�{)j֯h*�י_���a�S��u��,�S�b;�0�T��F��TC-�-<J2]uD�����5���r�Ӓ����yw(�@�}C��٦�W{<I����n�\恽o�Q&a{r��_��L5�(�k!5������aϘF�,j��Է�������+��l32Xۻ�-Ԥ�Wfc.��bt?R�vȫΠEUΠYx0V��oޣ��r�\
�m㤼���@�n&�a�'{�h�~8�'5��h��J�=�$V��
[��}��,d���fVñ�O)9+�^%�,�o�L�v��ey{���u�j��|"�H�x�ACǙTCu��m�Wq(ꑻ�u��3�Wv���iRy��0+�OO2�Q��Y���fi+➥@���zlJ�4��^��"+f�Eaw|ԡ�J(,hٍ4+��_�d;���=�˺�q��3��0��̾�9���t�".�����Q^P�3�%)P�8e.�%��
�UJ2n�$[T0eV{�G���Ã?�•:�@]��r�򙨫v�\�6�(���|agDȽ5ԳM%E-u8���w��]Jx�U�J��2m Eu����~�1���l�ौ�˖/Ph�}M쏋�]�?����K�g��k>#���\���u��Kh���*Vfg}B��0��3�����1g閜nvE��Z�6��)��Qc@�K&�2/�/�S�a�
�u�r�
�4�q^��v�7���������(��M.�A$�xS�iEVc�%�/��q6κ#TH�Ø������l[!�~]�J��Fo�d�ܱҥ�¦��,�Ow�X���V�ks��mK��ʚ�0�#�p+v����N&Y����9fL�/��3�K_'�lm��TL��q� ��ƀ��zK�m��*T!�K}�&,�	b��A�i��\Q����Srฌ���@�`������3��jxe�E�>#g�<��!u�'����1F%���r�Z+�gk�
7�f$�{�2�ʒ���k�2�K������ԧ�	z+^9��?��[V�,�DV[a�}2��ī����Op�>gt�T4Ra��V3� 92�
A,�9H2�[���0g�l7(4n`70�(¾LY��̘�b���*³��-�{�蛿ᖹ(PJ�BT�܈F�B¢U\�d�n�ݱZK�n'&m7g���7��P��(�q�
�3�2�eU/3.��sl�wt�WبSb�d��f��_�
p�z��HWEefE/3bmx�\����s���)�A����
|n��@<�
v��p�A�hq�����T��Y�e�e�8��0�X3�#A'_*
������	���~R���^�45����T�/$)1X��%���c�k�I�ԭ�Ȃc%
�t����w-��i^������*���Dy�,��[��5�C3���2bTq3�Z�k�
b+���&��AJZ���8��=�Q��p.mG)��/Nk�Y
Mv��h�e��A��6���0�u���$�N�W�j�h3[�׎�ԧ8
n�2�o.`�T�q�A��u�{���ZH�$u����J\�
j���	��d�p7�[�,	F�����QH����0{0Lm��ʲ8���k.��Az�� 5p����U��{%��h�K�����ǼPXشkC���%�D����ھh�Cf�YQ��f�ow�2
pD���
���Z@SV"<,8c��$�c-�d`�S�6�)�~��9	��p�_�dBn�Em����Fer5�3�0�lx��W*�&_1�x�,��/=�ܶ���TF���8	�"������?7\@��Q��������t��_"�J	L��N���彥�\��Y4����S�������K5(�q�[�k\��c��IƬ��\�I�g�s}~cu�G�KB2�M�)d���
v�]�؉���v��ZqĆ����b��K0��t���� ��Y���ө���Kg�ܪ���v�����`�r�.4�����G%*�z���*k���ڶ2�Q{�Wܦ`�w��É{���s�:�����������ƪإ*�}%?�,�=K�r˟�(����N��t��s�Z�`��-TK[S�^ax���>��%/$Z9/�(��������ܿ��_��UNI�C�P�U��.�(��[VX)���6&e���U�K�<�ک�]��O䉯��i��ro̼�J3Ǩ����|�'�<��F��B����pK�.z��u,�
�ʙ�q\��sϒ^x^N���̽�Ħ���u�x"9H�y�Zf�����P(��2UBs�r��-����Ly�� @3���7;�YR��0WŎ
xK��O�35��̤(�AJ^r5=L�,�
���V�=��� �,�'��z$+�l�	Յ��;������K
����YyY�6�3�v���_�|��[�h��
�X��$��.b��s�'��R��X�M����+�Awg�B���aZ‡qMi�Z��4�K�xCP^V��E�{�K�
jb�@�ٺ-�rha��u[BAɏ3Rm׈��߹Ɖ�	b[�GY�@��5���F�Q�����g�}��2єl���s6nb�5��M�Ҽ�,-y/���9�[���V\.]O�6b��օ==Kڸ�DY��p�����w��Ʀ�2�����������+�W�.�X��.������2����Bw��U�g+�pˁ+�Z��"+<2F��.�~F���eҮ�zJ�$��ҿe3���Qn�bW?r��������4�cq�jC�
�����J��߸jq�{wS�,9Cp�>jh�<�����q2��Z�p�K�T�/��]˶P�F�0'+���Q,�t�wLs�29��h�L�\�˃Q>���_�T�����3䴲��w��9�W�l�ŻU��UZ��P{�҉`�]���IJ��u7�s��x7�R�Y|E���y���d�pD�k�V>��ꮴe,8{F�JE����g�cmщ����t�O�l�Ϳ>Ŀ��w�۸ޏx��D&���Ƶ���y�0��!9S��g1��R�A�eD��Ef`W���	�z<�tO~�'q�%׵�b�Y��d��w��r뿩E��:��SYMŇd!��wg����b�˻�M˜|���-fl��C2�V4��s+�(���oqqN�4�}z������
0B:S��BY�{5p�u�L�},��8�ۛ�=�������g�.��RV���N�N��
���Lsl�"�HM��#
�O㡺����P$��5�>�<����+�,|��1r�����8���nZ�!�n�{��m�4�z�G�s��3�*��x$��{�V:���ž�t�_�����zX�ո	��WGTar�&���~!|�!V��9&��V3�ibR�q.����ح1W��(;��3><C�Լ|�Пz�/����0��N
nr�Ak�d8CS�==Jy��r�<��WQ�5LLٔl�0��j��<ٸdhqC_�q��f{Ջ���A�M��?�h�CW)��Z�{�
e��z�����TK�Ŏ��&	*w�l'�Mf��K�YX�Ä\�7�.����mj�m�0�#z���(Mx���-���%%�jq�T�4E��@���T�e<��M���ʬ��nC����3Y~�rB�S:�}E	�B,�P3x�P@�ebf���mE��~�C+z��Q�J<C�e�D#���=ϸh���c��%�Q6s�:��V�����h��[��Y��E���r���n|�Y[���-��:!��S���G�진uor2�e��l���V�U�Q�\?��.�NH$B�z����!��T!�0#x]���\nbXȚ������
����aL,�4.{ �FӘ���\�*�Œ���<<�����_Ը�C�Ns9�?��7�&���-����]��lܽ��t͊�	��(����o5���gGW8;@3����cr���֧��-�k�:��Y���Z>Ҡ�,�u+(T��v'�����pFLXY�*�~W�S2цi���~`fٍYyQ�GBh=�NW�dS�
�<���՛��&��W=�z<G �3F�i�W��o1�P��&5�8�*��e�e�ׯ�&��n7��̿���:�3��Tc�o���m�lajtߚ���QTQ�Yk�{���,����[�d���w���\Gvq� ���;�A�2?����68�~�V�U��R�.اb߈����H��;=>��I̼�+�vː�MJR�����й��}��{�ܱ��6�J<L��Զ@/u/�Y�d���hi�	V�0-ѣ8�|Ҁ�|Y�V�W���b���n�{J��J«#�aa��2�Z��3m�t��$f��>�#b��R��,��T-���Nf]��)Ui�e�Չ�P�,v8��
0+V�t��5�{l�iu�J�qq��j�eV��2���Q��18�2ÿp��إ�
�����GM@�SR�"��/�:��!:l�A��R �9���:��`�u�0���-�*��`Zַ��ZȕM���R��.�������|*[VK5�8k�y� �/^�Sr��ܩ9��ڃ��K�]�z&v�Z���n�>�R�lo�Vr6�����騈�f�bV�
��ޕu�ȿe��?���VŊfN*#af�}�rΩ@kے��{�\N<�Y�a&nn���aU
Rֈĵzhf�52��l�#X�6���ݭ��7�DP� _0-���.2p��˽p �FW{M-
B��S�38���ziS�C
���эK���Uʕ�[μJ��ӹ�o���n�W%5�=4��+q}�{����XP0�ѣ��*U�In/�<@�J��>,|\�L_�}:�Kݳ'���+jx�K�\��	����e8��}Jx����!�Թl���ZwSk�S��O�� r��<�	�/��r%\w;��8ғ�GQ�ˆ���,���'!��lkdž!���9^�P~1�g�
E�/>!0�m������[���Q�9~)�b�I�JҲ�_4ʈ�e�Rي�^&S5�����F���ګ�99�`��V`�X74�w��1��g�ܜ��.a8�^~)0���#�ԯ�y��rfq�gr]mi�қ���j{���v
,���;2��^~��؟7C�%ۧ���c�z��ho�G7h��	�є��@������B��93<�4+�.Z�1������нae5�+D�6�7��H�$oFyu`�gR�y��X#�+._�c�3�k��sv
K�ߟ�R�uԵT��Ŝ˽������1ɳ\�kg.jd��*�
�6��Xncج�Ll��aO]�َ#��v®�!���Espj��H����T������=C�s�����j�rT*���ե��V�"�UqQ�_��)!1AQaq� �����0@P���?�����׬��� J���Z��襧����}�����d*[kH�]|"��h�_�A)ܡ@�k��?�ȤRv�ُ}��
e^F��B"�+���e�Z���lR���?�3�q��J�y�+΢.PO�&��R�8|A
X�%T{�@�
}c���� ��67@T-�>УdH(�kDPVF�b/� �HvB���"O�^��꾼��_�?�3?���,��*��@č��T��YԪ�Y]2񉥚b����`<Z�%20���"`�MlH��b�n�v
�=]�qP,� W��U��Ʃ`��oQ��M��A�:��R%��=%
Q�+���1�Ї�	G�?�6=u����,>R���7Dy
L�D[��J��ؘ
��S��
�x��@�0��@׀]�h*+�h!ik��	&�,���1(��

.Y�Ċd2�)[aŐ�g"s��,)Q˰Հ/[�ж'���V���y�ޡ��
V��?�k%�=��M���SW
.\��m���O�G���}�	�T�c�Hʩ(�"4�@@E
�b8̂	��1�\%�	*h]�-�Y�P0*NH[X��1���`�@XQ����3[^�V����� ¸�����2�t��X)%A�Ur�(1b��BU A�,�#`j߲T����q���?�����8�
��̨H��4�?Q�Mf>�C��Țf���%g��%b�Dق�{b	ܺ���9Qh4u.�Z��ꄴ�W������
IҖ��-$@+\�c��3K��Q��_Ij��x|��޾\~���+�`�^1�uh.9S�C�.--5"�@��ەa\-����ۺ�����gY�g�j�o���?�?+�$?��k�R�~+�$��x��B�7*�����Fש�.Ý����IAk��L�? B�c�p	_��Qޚ��!�ȕfR��Ld.�Fm����*r.��OC��ݬ�X҂���7@�� q�$��}������1)�x�0J5�F�W
A9��8��:�M��'e���5��)*�H�s���(=1�}˲Jw
�4Es�V/g��O���H��u����U��\�Q�?�b
�e_F�E�:���$*��~�Q91���;�F%O�����wj<u��X�t����3�yE�eu���C��w�䬦�xˁn_VﰋA��Ԧ4d�pc�$QW���]��u�E��=	-�4\���T�T���E4��q�݆1*�s�NvRR�.�WO�"�>1�;)�j|˂l�/~X�
�������Ǎ��<$U��r�q�V��)��-�ҟ���k�%S�쟫r��[o�4^xc��
���(l"|C��O.��.l��
��T~���E�_��3""���cq��.���ٯ�Q�H��	���т7b0p�ho�P90*7�"�+�H��o1}�0��\y��BḢ�h��n�Ū.�+�e(�,��1b	�0X�C��~J������jT�k��I��–�u8U��%\Кz@R�9%�m���0��,��ĦҺ�=׾Dy��G�П���y�V��l'��r�.ha���$��03D�"D��4�.�����SRF�a���붸zà�y��Ô��R]E.:7�J�
YUN�Y.j��1�������X-���ݾb5M?؉\g��5�����T�u8ŋ�,`2�R�
�%��#RV����-F��_��|<M�H'ڷ�
�6U���p5Zv�EY�ZY��#3g
��B*��xW���%�m.�^��
�bdK#��rb)�o�Vr�̙X��B���
7�����j�W�7�~m�W�.�/������T�����Z=I�]'�-�4��צD��NIt�lp�1[i|��2�b|eeA(b��[>�[�(cISO+
d%�D�U�
�:&�F-Caϛ
��E[^���e�(,���B�KuJ�Lʍ���(]X��TP�E�Ec�Ž��a\���w@�U~%W"ŃB�4���(,�QM�q��/��@��.�vm);l�����/@�r�|��'�.Qyջg�m� >��H��?=d�;��)ݣ~�p�MӒ����5������O�U�b�D���Q�Z7����|@rX����(B����
�����i8�n�<f��b��h|	*���;x�T
�T‹Aw�!EWZ;�c1Up"q8�)��㛴d6ebל=����SP�3f�v&0X]h��W����A���ZzK�a~>�mf>A5�7G�2Z�?�7��+�#
jm3�ʳ���6(�f	���٢��3�r�}� ��`Ge,)>Ր����?T
-�zC�D�ES���UA��'��z!�AUx"�8Z���kV7��,	�s5���G��+�_ȉ�?��M("Q.'�|)�ug�-�:��A6�&~k��"�-Q��D����*�#�)�n'�?z�lL���P
eQ^�%_������(h���B.�{]uq���X�|b鑻���K���������Ů�����x0J���L(�cfl`��Hm����C���O-�eO�w��@���m�/�9�b�҉�I,�
�YaF6-�DP� ��6 ��#I�!͝�!N~	]IDޒZ݆"�y�N1SeT�ķ��%�j��C
�~*���Q8�x����E���l%�v��G��;!�@��MWo�
&n��������?�~*�
���A�Qb\a�J��,�^�T�2����&�k	����Ě4��>K�J�?��g�Ù��_�IP�iR�a��;f���]�(t
4ʈ@%hUj��B&�`�y�m7D&A���-Rۭ�g0�~=��'4V5��y(�CDm�����Yj�����lht���Z_e\Bڱ�|��>�i��}E�T�w�H헑+�ϓ.�Z�7��{�`�K�*�l��ۻ`%���$��h2���2���d҂��
ZD�X^�+���L�P��N�ҹ �T4���t;�UZ��$�KE��'�E�
�4�i�{�&U���wk�u��A��ɺ��a���V~'_�D�l���gWbB;b��./Kx�Ph5��ҋB��ܵ�S�2V{K���⓪�uܫeVW������=�5@�T��[P7T�<��Hڱ�wb�R�)j(��%��i�0�EG�4W��`#
�XSJ�U�����l[���#�b;����Bb9_,v;bܨ�.�Θ�5zr�RD�Vh�.ǯ�j=jSNjU�!c_��+Z4Av��U�7�*����.`��t�Bty�6�.�d6�6�>k����7nC�đu�G������H(���"��g��T��S,��Fu�T�%E�i���3'�a�((0
���j�Au�����<%i^	P�`�v�"�皣�h��t�p��̈�(�,�T��UԵ��?��_Ǐ�r�~s�La[_�qT 7X����v�TaP�_l��U"k&ԓ�HTU��t �ʕR Y*Y#��LE�Y�վH|�ӷ��/��l>}G� ���A�c�4
_,3�]1y�а�\��7�8��⯏��5�H�j��eZ*�Ȕa�,I��P���L����,����9����G���#$��X��f)��۷+�c/u�2-��H�b���. `^N�`�ˉ��E�D���Ԥ����j����M�E��_I�5Oh�e�H�lg�1ƻ��lY+aD=}Ƅ��9��C�%�M�o||_I>N.+	����uWm���dQ~y������ݩ|ƞ�r�"����|�������Kl�K%�^˜�tShTP;������:(.�n`��Y,��pѺa�h¹�0���~^���S���ƠKbE�ʭ��M@�
�b�!o@�	IM���*,rt�������*���+�&��0�e�ZY�r̾���P�Tܸ|PI����z�"ʬ�\n\)�^JLc}����j�eU>�iE�F(>���+u璯��D`h���q�BdP��T��T��	R�:a�[*
�%)Ƀ�Pgz����R]��(t-\PA�/��ԫox�V�B��� ���O��^�
�X4o�T���@��+-�?p�CVe��j���<��>HG'��gv�k�Rs!�RE���>PX���e�?��z��G-g�,|b[��[�1F�(K���J�=�
ʴ��v���� rX��W��K\���\�&��ڴ��T�z���*����ER��6�����e��R���F�W�T\�e-j��TuBbѶ�P"1�~)���\B�����1?��	JJ�&΂Uw�{Q�;�>���kT�>G��h��U��!�?8;*�@yJmп�koc^~)��{��e�]Y+�C6
��=b��]������.�
Csx�����|��H�[c�:Z�ssp�s���G*Tǐ�G�k�������e;Q6��M�+\�
CHJf\�qWѮ��0�{bj���+c���$�*�-Սa��P� �
��_%��j���K�S���٨�~��0~	�]vش��nm�5
^(�'5��t��/bYlW�(�և�U�s�0�Ҁ��X5>h��y[Ǧn#V�@�IF��(+��/a�&9��XP�Qr�aҐ��)SŔ�o�	�t.�@�\�L��*��"���`��dJ���N0�	@UټJ�6�� &��p�0�5^%�d��F��3ʈi�	�@�nU�E�`��5�3������K?,�U�����b�R�!q�D�0�Ն�������v�2��	k쇶�y,�$n�L �B)���`�n��tl�?� KA��A!ÕT�o�%0u�[Q�B��q�g ��`���E��UC
�/M�!��]�(�Dh����U�!v!x�W)�c���=@��꼜���
BT!��B��$#�\���i�bV$�[�@��أ?fTk
�S�Ke�eC���e�9bT��1j���"5s���@�Q���p�p�4/�f;^(drb���E����c|�΅��)��1z�S�����o������-�9�0�IAM>�C'�OI�E����TԔ_���4���&�ypӛ/r��’��d�(�\}l��]}�>ǰA`��l
�1�E����2��`,,{XZ���{V��c��)��AI
�V��������B�� ��O�0�v��V̅@<��w-�,>��0���0�& ��e�_��{R�f=Q;CWA��Ѝة��$��u���J����sYy�O9je��+"�J��l�K�<��l+���P�7��P�h�[��	L�*�QWe�z�m�Ci_���V,A|��Eb���,9�����|X��}00�~��s��ȎYD�l�!��/1�)@��Y�a��o8+���^ͮ�T=��߷�ȭ
����Zr�x������!�Nb��?I%�M�6=$��;-�b)N���R�FP���M�!�eтH@�<�9�X��{�����1u����J"����S�K���� \M�m�p��L@��FSE�v� sه"�x����kKW��5n�ٓ����������?'���G�?5h��6�	��jtEi8?X�'�v"ޡAR7�lE\xC+\�L%z
%v|Fq�T��� 9`li;������v����Ը<-(�5�*�/M�b
�3	��V�Q�6w��ݵR˯!�e~F�R�%1�������[�j��~�!W���̥q
5U
��h,�G�*���o�B�Z��qR
� ���Q����4�H��y`~�d�2��–��U-c��3����#߄m\��L>U�_O�2-B/�F0���r�,y�Mw�ip
&Z�ĝ�d���2����X��l+LY�p�AlXk���EK������_g�R��@lK�{��_D'AUX؊�����n�w����J�Y���5�}1a.�Д�D2� ��I"\� �Ti�,p��PR���a�B��E`
C�6���<nfkc�a<1������?'�?�Q��7rP�)�s��DM�����U�C�o�Rݫ\;��ҥ�J�g�qd� (A�"�^�n|E���5m~���*���A��W����S�\�[�q]1���Y3�X��pL����!��A���l�p<&��b�[�8#��C� �DU���YW��d�����{���m�i�b���[נ�
/�aW�_���Vad�tw�lv�M(�P�_�����:���Bhz�!yʀ��%qE�0cJ7<e��,'�����b@WH�������ʅ��ӄ�G����y�����Usd�$ٷ"��S
&��y�m��x�v��bMK(U��2f�z2�]5�~���=aa�5#J��X��4�X���,L�c��T.ejU�A�7go联R鮡Y�h���"���c'
�=��]��X�Ӯ�`Ts��ӟ�vWXl?�D:�I_�������J�;�B�RRJyJ�_��?@RZ�˜wwg7�h�ZR���ͫq8}�gp7+�(�V�����v'*�u���JĔ=Wj,MjB6P��1�8o_�7� cR�����]�}��i��!�F�D�jZ�%U
�}8La����F�H��Z�Px���3i�P�����Z
2ˀ�A����
T�l�Rj��?�3WݽG�dE�C�b�NԪ�eڢG��@g�w�s��~�j�/��	�*�o �A(�$�ؖf`�,GwU%��Ţ_�)�4����+�Z�`�����Q�[�p|DI��q���_��r��4��N�-��聊ڨ�Xj�
�(�.g����sW!�,Z�`m�m�a��h����lP�3v���
H5.m����@Q��=��b��Nz��	�bw���I�h�n��2EP�h���P�D��Q"
�e�#H\�Q��Pd�e�� �����W��c�*l�~��]0ic�(��O�Q��p�]d���#q$-k�
X���-�.d�Y�,^C�[�$�e��z�a)���5��g�a�)P��1����S��:�0<~�]��[���8��������Y�!�|)�\'Eһ�ɃS���I=	WH4jl,��{�le��.���<�\x�W-芵�Lx�[�jS�/y��8T@��Xi�P��P�%aJ70�󰙮Ph��B�-л�PٯqH�t,]�G�R
;l
��zI�w?QY��`�+CC`5�Е�ӹi���-F:T�w������zj�8 ���QN[�2�k���i(���Ef�Pe�lV){"��TDA�r��}�P�z�%m�+��8���O�/��K9�&[�9\ƚ/�6r�W8�q��6r6��-u���)���B��T�5"�?��U�z��
�<|�i�x6�,����,*�7��)T�K7xKQr��S��"��*�LA�����Ȑ������;7H��.��Q�nJ僜� աH
zD��0e�T
@�6��(U��H�e��i�i�%�\����(��*��$:c����
1,��W�d׆��hO�U�K�h+}�ܩ�GH�נ����r�#\΀VMD�3�(�	�EC��,�%[Db4�D4B�BQ�y�bbLQ��)R�F�B��å������|�n�h�aW�f=�Ap=#"�ή,�׿PXex�H��
��	�5�J�f�?W���s%��	P�J�FJ�e��������yE���I��lS_�1FR<�Z"
oH�&�|�n:%e[�F���ֽ��)C�e�ZB˥�F��0�����6n��)^҆_�XS��+߉�l���m�A�N�slj�ҳ_�,�!Ԕc+�,aS]ěF_^yD��h��ޖ��A��Z�}�8J��k�)Kk�*�{
�
��DUdo?p�48���Y3�^D�ʙU"s��Q*��"���ԧ��*X戀�j��c���FEa�J�3���:��B�T�
+[~vo-�5��!A�i㒋�|�9%b�a��{*x"CW

�2	��ł�u��y�pL���%���G$Zy#؀
�T�9�C~��.���ܝ2�dOGwB����鴷�HY���ۄdnC�h2���w�Z�X�|��F�a��
�k��_�@��Lq�<��S� Ĩ���^�B��e����a&�
�~*�=�����b��:"E��R�H���vUnT�X�]�,פ�kn�#��-[C,�C���7�짧�Ѫw
��������~����c�@x����6�<��Y�4�y�"���Ʋ�G��	2��E�2�����ƙ�\J��̰�� & lq�P�Ѿ����np}C)�&��<�����]��"Yh��m���R��(/�
��+����%H1����Љϙ�����p/ɟ��p�P�4~BQ�%_�UJ��_����BU�C
��!����:�8/�z��a^��j�mSiP���e�R�IT���bT8�t����쬄�t�����l�Q�B6�80��8%�j�e����{��P�E��T��ʝ�#��W�]|4,�逓qz��Aʰ��m,����m�D�\�6�L�P�Z����у_`-|�g��A��[)o�C���8*���0�H�F:�5�TidD�\���a��l%%�@	k��jD���}8n,�P��sWk�T"����6p��f*��3�
t)�K��r���r?��0���I�
�g�9���Z..:����C�z⽈p%�F�A�_��@]nrh-�"���W$K���kKj��D"8*�A4�w4�C����Z�LF��F���~���es�ث�Q�d߁��)�R��e�D7��#�x�Z�߃-���	W�놛��!��MK���^�D�ٌ��/�zr�D�nz> �Y�-�|��/H|�b�j�(�C����"Q?/�^�]���*TUrJT�%�N%伩X\����@^{Bԯ��&��(j�-�K�'�k�����¢���b�4�Պ�vvo�(Dr	���G�|�&�	�FY}1Lҁ�pR����E	�����w'b.b%zx����]a�5�Ke���{)�N*w�@����=`x�x�G��ju��}T�/��8Z����!z��'����J��ܩ�Fl/u�ʿ�7��	|]��.�����k���m R����&�P�Tw��D�>%;4��F!��X�\�䳑����9C䖚�^�.h��jq)�'�B(����^�w�}��VCl�U�ƴ8"�^��g�.�X����q�Ce,}��i`���^4���$0b����p!l�8�бŃRs���#ҵ�N��d�$Z�(V__0I�u
3�h�Wv�� ; De�4HN��v������D�X��e�V�	�_a�J���%@����F61���xJ����Kj��c6>���ܫ��
��2~O�*0�+�!ɤ�l��g-��Ɗ���w���\� B�]@�YGO�ش£x*}Ɉ�P��
��mw�p��H:JW����0�*r�0����5ql89��;��SQ"dM���� �.���.�F�)%�䪴,�U�@��؅���h��{/��$\T��F:�p1>t�2�.-��Rޛ��*?w�,�i��KmA�M<�+ܳ=�_}�W`�gC��{*>��C����{�"�{=B�b����%uCo=��U
O�n�g�C�E*]���W"ֿ|��W���n�)k�R�w3D�A�eq��
��N�6V�P_Pr��4�|���UZ��Hm<�Y�`ͩ���"�'������w��4:���)�8�]�� ,ަy�Q��j�8����ݬ2�E�r��:P!-E�uZ6F��]��)�$:+�ŐѠ>�����C�XT��-?qXR�g�D��@5�4S�]��-2��5�NUN�*�e>�/��z\���})��
X��:�ҕ��G��zP����fdz`ƕn&��4t�1�ߤa�5�btHF���?���"~-�)�g�`Dn��4�D��h��C�|�
��y�1�w� (e�Fi>�A�	������e�\��MHY�
��!��m3�0KJ,�D���X!��]G$8X/c�kG� �Z�(,Z�Z�qP��TP�X����TX|T�����>v��J��!���A�Hӻ�0����G��2�҂-p���U~"�
2�8Ӊ����}��C�a*0>�B���O>Xw�Db�9�R���$��}PqQ錆��U�}�0_�4##����Z.���ۑF��^�������*�AaT�B��£���ʎ��F�z�R�F��%>d�@�^�5�7Lj����a$'!�B�H4�1�U��	�������k�
r���C�v<􎄔�Nx�I`��.���)ψn�DP����~vD�([d�o*:%�FP�r�O'!�����8
�Q�AV��_q�h�NS��T�T;%�á~`N��
���TK��log�H�P�Ø�n��p3P4���$[�V��6�������ƪ����!_�-9�!N�v�nƒ8Q�a�_�������,��ۗJ����B��c�����g��W�NF�E&�B�b����ȉ��^FEN��q��q���[Q�����-���o����Q��̠�����v�F��Bi 
Ø/��P-Uغ/EEB.5K�R�r�S�ʃW����LV2����w�;������ǸI�%��f�B���	صt>��1��?�@٨N�C&�/C��9s
�ďsh��G)O���C*�"�Lυ��\w2�/�ѣr[�,��&���zLJ���"��h�y�
�H�j�k9ܵwpU�
���!ֈ=�\}�ǖ��[t��ch�]����4a+�+d�aVꌿ �u���r����Aa�D	p�*�bZ
�����!"	A��M�|����P��/-х�II���]`�2����ë��a,}�HT]�@4p����Bµ����$&�S��p;���������#^�K��w�h�n9i
c,�oJ���F���F,��U�|D�}�^�%�M�-/���[h}d�Y�
��&�C�	��>�w��v���zXgc�Ge
�x�!�o��P�W�~:�����f0�Ic���4��V
a���1PJ���D�X��ؽ%�"J�
Ap�ds\y��+Y'/
!�F��lX�k�w�r#��.���B.�[�N�ڶ�
rHU��&�@�O~X���Z�|Kϔr���FQ�J�r}%}��Z +�f��E�tE�֠j���p!Fi�2®��ߩ��V�[}�0�`Ջ�S��?`>�W�m$G/<~1�%��7���*���n�;	���ש���"�K �=gwkO�%+�8 ��Y[5�u�]i��~�bB�@K��ugu�,��1r�HT$��Kk�
U��/X��
�NZ���A~F3�2�L	l�K�0
���A�6!Sǻ��΃b[r�&"�Q]��k,�e�6����#JH-�+�сW4�%��Cx@�<�f���:������;��E��1�7��(��R�A�򊅈�7�o�3G������%��N�0����	��d���'O��:�Z��g)<b9,��� {��q�t��~ݶřX</�&� U���a�i��a�Q��B`^9R�0�<_	�:��4�I�ŏ�_�`��)x-�ʸi�m����d:Jazo��`��k%�)�%)�bQm��ZwK!>�$	d`��,����ù[t�W��е�x��4B6eRR�s�p���Fb�k��T��۹A�t_��X[{/sP<��ȭ����~�s���"3�R.5	4�7��%���j��A��a��a������y��8/P�$×�5�P*p�f@^�gm/�����z�8��(<-\��W�Nw�C��cRS%QS��
�պhPzKT���/$7�.�ͪ��yY�V�p��gX��Õ�Ӵ,55A�ߢp��/[�D�!�@�+m5�mj9��\��+P̕��K�!�R�-8��|L��%$`������}�-`���ka��D�56�Ps��#1��e�hZ�^�Y��ڽxA���wFF��ڻ���N3ᵟ �r/� T�p?,���r�4�^3�(y�z�3�a6��A�U�ޮ52UۖMzE1#6�K�����o��>������4?��ۥ�$	Z2 ��e5���,u�ΐg)Z�7�P���-�	b!l�d�p�q-1��)>����G�����.��j�cHwGL���2��,(W��'�*���+#��
{'+�P�e�Ee%}=�+`��7�; �v$Bb��.6���X�$�w=uv�?.�mƓb���2(�E^�-�XP�)����:=A;�}]��Ɛjԁ(���y��Fk�G/���� �{�ß�A�B/m�Q����� (<��1Ƌt�|c+Mt4�M���,igp�/9I��>`��'�����7���ʩ�^K��o�_�!-`��)�7��UU��cCxYu��d���Ů�����ĽY�]w�Jp,��X�5U.�5�x��zb�/��`��X��S����.�]�S[���q���-��%��3{�B�]��`{z6�|�C�A�~Qz:Η�Y1����+0�>�����6���f1�Dp�hؓ���\����w
��;N!.k�u�5�+O�"Z�)א�`��oN�+��Ԇ�o�H�@�r������X� ��"���D
��I
	[6@��#2�F��4L+�r���cQ�ס	mi���Q��x6�:o�m�N�m���$��5��!o�u�*��^uy�����=�����|!?�X��5�%~7�L�e�[�T
�L�&�Mi�^���^�]���q��슩�V<R%��v9��4�N\�Ѯb���k�j���*�g?�i�RyB�`���+�*U`8�}��Wga��~1��€��F\q�
�I�)PK�s��0h��b�VJ�M���,�Zo�l4K���,�J���Ɗ�ޕZz4%��&����'���#��F��a��@��
t��1꜀�Cܚ)t����y������
�-~�m�����&�aT�	o����|��96�%����>a]JE�.��K��@>�/�0����|��p)�Y��#"��̢̺�&;���u�蕪?X��ߞ�#8�b[�A��(��`��e���A�Ĩ\hp�B� O*�.���UV���̘��1�$Q�t����W�Pw�B�	CmGK`Z
\%F�Y�����SQ�IO���J�jx0�dF���À��q�D(���ڻ�$�|�/��h)�Q}$��]�U�Px��r�ҏ�.�x���1�����z(�=]��@��K�8��bܽL�P8k��7[�*��V)h>�a �܅�4��"���@.�5�:��g���U
}�\%\	t���Ȩ
j���,�D�H���-E\-�67�x�����ps���T|ԷƷ����"h�_E�)�c{�m1z��˕,	�rB�7����ϡ�Ӌ��]oE�X|.��oˋLS��q6�����+V��,.�U��zeo�8�%����n[�e�pJ�*�R��f?��7
P*$S�
sH]^2AX��M�8H)�#Щ�#���>��e��K�l��5D�iF#�(����L}��G6K40����)��,�t��ȃ�H�_캣���Hp��4�1њht�0�e��'!i�6vh�QW��.U�2�K���
��F���1=�hhKv'S�j�F�g�V��c��R(��<|�O�M
��K�)~6�⩰C��2����7Cf|q�yYv��I�!�B�*
�IE�6 CGr���y	��Hz]�d�j]����DEj���C��[���UM@�ॻ�V�6mm���8@f�5��9��uP/�`N��~f/���Yr��`)����.n?�D[�e���x�߸aJ�٦�]�r]��0�S�Ym���n�E���k��
d��\Q,Z^�t����?5�?����B$����(���q�VWs^��J.z�ac�� Us�"��K�ۢ�i���"��-��Ö@�~&f�I����̫(����J�x�T
ZAeT�^(��f{�{a�Yp�O^(���G�)�F��Y3�wIz����%plw� ���4�
!���
�R�����V4C�=˰R�<�{d�E#q�G'��x{a�k�M��@\}2UJ�m�/��CcdZ@=��O��]�DYk��K�1�WP�{"3Q��V1��4H�M���8�@�ģ�m�^R�X'R� k�o�
������L+�U|��\?���%:��s���=b,2!4�%�2ڈyP���D}Kk�e�%9<��8>����a�|�Q
o�|Q� �12�) ˃Ә��L�m�
	���k*(�S�(`Vn��62��S���-�|qr2���A������q�oM%~N���E���ݴ�K	*��[��+��|�KH3�A
�=���3콇�ǯ���7|"��QJ��N�U���z�{�b���憴�e�3AbP$
KXV�jv˸���8���Bҹ������^���g�~G�V���1z��y���^YZ�:5"P�+���$����RD��<0�5}����/��ѩkMt�~�V��V��Պ�J�d]�qZF���a�=���. u��+�|�`:ie���N'
b�Kh"yQfkz�L�� k�e�F��=�
�
����DZ�4�G�z7K���� �d^���9!La���F��D
ڏ�E�g|���:,{,��4�T-�%j�Cez!��Pq��*�z���(����F�VCܻG�j�6R�6�+���ÄHV���Z��u*��L�;������-��i���Ǔ�\,3�r�A; �j�Y��1\7�N��0��f����9��+V|����?�ѡ^��9K�	٣b��,��̛�m�;R�F'LPگ�e���.0S,ی�V��3L��A���Qp�M�@G.�U2�+7�yҷ/�pR�˗m�R=(&�1��\F�"5��0�|.B�^��D��Knv��Ub����W�� ؼa)0-A��a�7�w%C�hzS�S�'���A�5��\ڣ�o�r���)R�i|�[Y��K�3\r�"����!U���a��'�.���6T'*i���f�Mna�#��8�Ԭ�y8	�ӈ���G����[��p��>*>4y
:�xU��G�*����Q����1GG�_]���ͲT4)� ~xI���g��g`j�9S��]Ƞ\)+��%.���QUj�Ta��'�#�Z)G�4-�6E�64Ncb�~8�nGi�-荺���^F��n~_�R
T�|�&��P}�Em�yO��8���SJzB��8��2Iln]���W:��5M�<��Wr�E�"�V%t�U��V	sq���56ӑ��+�91��l���*2����{����~�\>l�T�\�u��~�*�|�)�v\̢,j�1e
Y���V_a*�_�N4dG���0>�im-@>E�ȕ�l�g�l*���8K1-K�v
L^���VO�K��K�Z��!C� Z�ސ�
���a��T�z�i��8c}�D'O5Ļ��Se�	�!BhYq �W��z2V�:����e"_�!o�W}�^5B�9f�[�U��NQQソ�IU�^��1W(�Զ��p�g�0���u-	���"
P�B����C�˫�j*��-4��c3�AXN�%@�.��aBSP��gyh�s_"E�#��n�E����������
���&ҬRt�_���IUQV����,4�N��te�F�g��q��D=�@���t��|��Dl�#W)����"�Ѝ$� AVB��e�]�"ûG�-�ە�X&��K+�Q6�ku9��66Q��N�cȨ�S�N@PQ�#�-�؎��)b�B�d�F�f��T%����,4���B}�~�%�`Mj4�y�`[���
���;�z��1f�s�%�Z�~��c���eF<��,��<����`
8���;>ѡMUdS�P>L)�TUt�cY
�M�5w	�{��3�̐a9=��E��E�bmYӀ��0Z���2r}�l�Ե�RA+3&KK䁷�C�HԊ%Y�ń
+�>�yx�O����PY����i�M���l!��j ӫ�#z���<���cWB۱Q��W@@�	A�@ह9�k�WG��+�DQ�{0bLR="W����t�I�4���Ƙ�=��l{y�E(/��GA:(��g����5��~)�8��,�~����M.i�l�����Q�����
z�gT�E��MQMćQ:�@�T���s�,�{*���O
u/�A����I�i����ň�����3L_�/�)���8M�av��2ڄ� �&�i�QK",~�"������P��*!�s��!����
m�bF�*F8�S[�6M���?L�Yn:L�kQM�A�ق�hA��͔�⹉���nr(+�:\�'��V�/I�y-�]��p�>��X��ltqv��+�L.Fw��~&����,�V܄M�@(,�Ze�ex��ʔMeL+�T�kȚ��/l���S��G���lTy|Odq��`3W�(���,��Z�]��>�Ŏǐ���!��R�lZ*鏼'��oX!�!�|o���юрe�����Q�?ו
�d������(�"M�w`���DF���f�n?H�lsLT��MS.���7pw�G�0�����-x�"�e���Q��C8ݫQ߅�Х�b�+�d"TF�*�Q�ȗ�~K�t�NC�_��A�ER
�w8�^��s�t�&�n�b1sr���_H���L��UQ���Yg��!�Q�<��߻���֡*_\{)���F�	
���c4��q���#G�d z9�YұƷ�Y� ��iC��<ǔJʾ��Ƨ�@��X^�X~�~�^�r��
�ti�K ��}������K�^�!��VL��jņ?��؍kk+ؠm0�,�ßn�%�r*HHS��>{iuw.���D�2,�qpy����˷���~�Tu1X-
q�Te�:Z
�*JYG�%;ĕ���}Aj���O!�,�񀉱f�}��� �W�G?Q8f��c���fZ���=��@X*%],�
X(,��9
�S��,r^9�R�>y�VJc�(�vk�us
�v�j':��C��d&.
d�����m�5������h�ք l�z�4�+��:���`I��O��̒=!�~�`�T=H=��o�Jɺ���k�����zعl�%�Э��ܫ��j&lK���=<%W�K����Z_��t?��0���.9DD9�Q��p�@�u`���_����oð��@�^�-9eW�[U:!�AT�*R�t�0�X�����.� �؁����
���"��{��{q�T~JoHS��S��֖��^ٝ��,s@�/��{�";+���������v�T�������WMC�
!���О��J��A��|�&��W/�6fI�%ť"���q�5�"se�-z����]_ZT\6��Y�B�栳z�+�'c���l�s��bg׈f��M$MS�����͖!-'�V}M�.�Q%~谤�&�?�!������g��[���஫��a+ehk�z��s���EE�{�+��c����Z��AQ�H(����H���/�J R��hVSՒ��<>K�e.�<��׉�p�*�4�[���?�8*���x`9���΅���OlQ�["��?V��_��jj:|6��D:.-�9K`[5��K�;"����}�ӈ[������W���Hu�eÖ*��3��}���������q��`3�������C�Mu9K�~SmK��	R���$J�A����>���N�pr`���B��Z�
���EF(A%X�	��f���X+W�s.�ī��t�Fq�h�_U�.k�i�`�DLH#���68�$�1c������0չ�kt}@=��u(|'	=H��Od��"��I��X$�B��"��:ٔ�@'���BPp�X�h�@����P>h@��2 �M�=M�Q��Q6v���Ս��LT^��p��\?��Ld��sd��Oч�\��c/ln��VK.�
E@�2�v�l�����F��ԍ�@�ax���aT	#H�Ԛ"+��N*��*4�ض'深X��*��w�(SR�ט:;���_y�V'�J,��eв`���W7pi��Y��m�?X?�^ ��=�W
E[x
k�E9X-(܉KZ���|��)LW��?סa����#�Ph�0
���	@��^����N㌥�,`AI*�P����r�u�8F�w^J���o��V����N��7<����Pܠ(K�X���Q�BSB�r�nq�Ă.��.��������/�%2�8\2�x�9�M�+}\ě�ьɠ,�?q.	�^1?���$�I,a+d����J�u�`���%r
�����\;QM!K�����Y+Q!4�n�+����V��<�{Oސ�i�3�I�6��U�AD�-�+��>�T���4=�I�0}�#K�􆺺{,5�YO�gz}Hxh�V9 /ȗB���2��Z)rH�m��1���z*G���*���*,�Өf4U�`=��F���+���@��O��d�`�#���ݭW���'��������9� i��t�ޕ����	�0mϭcX��ϻ���z�+Ij�]E@A,���X��fƔ�~��j!��
pj�W��E/�Ma*Lx�3ń�r�x=�{�zYX�\�h�@�f+�*�w�p��=h7���7�`>�j#��QQ�m��фr������2i5��{W��9Y�%/`�{HZкp��Q�L���E�	d�*T�)(�9�e�TXj������AP��E��Լ�ozK�mBO����'�嵯2Γ�a{I?�+,��V������6�b�3V�w�h	V|����E���1�E�h=�5`�ϰ�!��S���ʖl"O	l�AIb��V�NF5����8��
����}uY
��*�����y2��Pb�}/��F��O����?8NB�N����0=�}p��#I��mQ�p�\�	�R£+T�
c�Kf��7-�;O�R�ec��)�����p�+� P���΂�`�@Ba��l+>dC�V�_L.������D6��/(��/��N��˗
8�����[j�cƅ}@`�|%���Dar:�˳M�Ka�9cx�I�0%�J�@EK�r�P���� �B4�!!)| g[��Vȑ��9-�ݸT��4�[@U4ځ�B�Յ�wo�:������
�qQK��0v��8�ry���V�\��@��@�����k�D�Ϋ;�g�7÷��EL_��F6�&�5��1w 3�*S�m�,i������U��,���Cl%�ag��a^O��Ǫ�A��6���ˈL��E�쨚p��
��
�B0u2ʅrX>%:>�ͨ5����L̳g����Q5�c�s-�bYU�E���ӆ�,>��p��L��M:��U<�,�x
TB�;��:g��	j��x>	g�Bi������0�"PGZ����J��(�'�'$E����-�;��Ҹ�`x�j��x�p��m����{�uĈD�TEGK�(�
]l=�MqM�H�jx�+w�n�?����EWU�p��q��u�S>��
vn�/�P\��U�>��Π�l�6'�$xNH��Y8y�8���ڢ��\����;�V��ۂ6G0;K�&��~�%��
l��j5�,�<����p|��<�5�N�@{yjo�Jm{O����G���E@�b�`��E��]2a�f�TUh�p-o����!Du��rqx��g�_b2��~�V��Y�	�]nP[��P[�����@Ba��n�+�B����mP���,���pTh�:��q��X��,ȫ'���O�-�Wq�B&,l	[���(��b��Z�P��I�?�Hc
�L[nҵ�Q�G�?V=ی����Q:9��+���
�,�0��ʒ����^���W�ϽH����0�_A��8w��
�]�V��p�Jz��T��_v@\բ4[C�"��S*$rX�ۢKP���d���X�=��\L]x��B��|��
�_�o*�ԋN	�}B�{\kCi�4�w�n�+�Pqk�{rK-�7-1.�f@��"�n��{V�%�j�g�K+|�i%x�Ys1���T�'����%��|a��a�k�/`����\C3��ȳTe����+V�*l�����m	@�G!
��!�Ryv�Z��t�r��_��K$�bp[���9�M��LW
�IF4t�e"@�Q�
�������=�`
�|�̲+@�H��÷��i�)!n�J��	[ދ�F7����Yv�Z�e�L�˾�L�hwO�,AK�<\�	��d�*���H�� ���E㹠 H:���-7C3���?��}��S�J�R
J<��PF��H�؞~��C]��J]a�.�W��4���x�~�U��H��ǯ�U�eN���ܺxF���³��!UB�+`�6�x%������x�X �PN���5���D~ψ�0p�AMJZ�*��"�TA�D4Y/Z)���
~�:@��<46Op�V)�=�%C�((���
i6K��1}��6�Eg`���:�+�a�Zܚٸ���TCԜ�o�;��}�X$�q���W�CaՖ���fz/c.�V5�PR��az}F��c��B���z�S���Y\���JC��T5k7O`v�ۚ��.�a�B���s ��Jā�Z�A��.�ַ�F��\ޅ���4�C9g��>4y1�\��o�]@�^T^trr/���f6> 
��p(���!� ��1(�cckv6�+`P�wi]*��
�h�:d���H�t��ؽ�K�y`���Ģ���`���.�;^)E�E��`��k�UC5/ha�4ѕ+Z�4N��o�CT��ap������$;�ȘZ)�0���f�#���KE�-�>�����YhUeRIU��r��r<�I�X�ŹZ��+��c�o���
�g�GD+��Ȧ��.��l�˯(��ia����Vy��,a�[���9��['���e&"<�ԉ_��i�~�hu[^G�$檇�<9�
�X��6��\�h��c2�{���r
�m:Jj
D�hM.��]�R�֙�X��S(�,\n���ñ�|:�e*ـ"`-[e���W�S9��^C�D���M�s>��<�Gze���1��b���x�q�&�0
�̪����Q�  ؕm�N;*�=4If�90�h+庙z���5�|$���4'��4��+��%�ʿ1|M��P! �P�k�*�i��
\Ґ��V�SOcj�M)X�vG�IR�@�MG��':2ؔ���\+�n���R׏P%Bڙe�%u�w�蘐�-���:�0�\�Xh}���x���๱B�Q��!�U�Ty���2��Q8kW�!��?X�_{@�X譱J��H�앻c������h;��s�gڡ��d)����
��<zc����b��n��6Aq
�*������?�AY�1���#���QW
��(�6]�Ԅx��R����ec���Wq��ƛd�U+��O�;�]�r�h�pY��ms�����oL#�;.%3�B�RS��,Vhy���:n������6H-���c%FL.>���=>%<��ۋ�������#d�B`I#��
�h���m�~�ƠT4Y^��b�%�p��NyB��39j��%I����-��Qm 7�9�x'����Q:<�y��jHSr�/��Q���0"R*{iGC����U:"e�KT	i����Q[�q�p[*7-3I[�1��C�5׮�����`��3�]�dg���%d�l��h�ɣ|œ�%v�?5w��^����M�ZPh� қ�]�?z6}w�2q)�|
>�,�k���X��@� ��%3����t�X��W �f�N>%���G��K1g7M�T��
1��K��1��pwb�=�W|�b�	nG�B
�+�Q��,�xZ���ƉHG��DH���V�6ߤ3t���TJ�9��A�,����eR�	{K1�}�P�K��-���*���}��Z:T#~�pʋd�,
��1B����V΂,%d���@�
���P-bZ�@- �c�t0��J�"0_=�?4^T��8QAQ蒣�|K*`��)���Q��-K�‡�Z�����Kh�[ԑo�+����J$
x]��$L�)���4E;�2�s��1w�ʾDƛ`
Ǫ�+�#��/#(���s���%�M!4
-lZO���[�U;"Y�eح�œ��"yXM��T~+qx�P_���b
>aQ�$J�3|��1��+hf�h�g�؀p��C,.��0�ש�
'���!)����XXJ溗����M�K�cU�V|A���6��6?P{��C���nA+�u�e�^��U�J�1F��	j`S��'�6}+S9���0��B�B=��7Z�fBŷ��ߙ�|Ϧz��wz�?a�����cc=1
��W7�#��@�Qg���,-r"��:#ze7�hX��u��]]ӛ����^s�O�����+<_#��D?P����B�d�%^ݘE{,���,ÌEqP+��fJ@�����[��Uv����C��m2YYD͆�t�h���YO}����<�v&1V��{0���x��6^i�B�Y�L#!
��_�Na��F���{&����Q�PR	�T���ճ�:�{}�GA(���)�
��ma��')�q�r���H[9�(Ѥ��g�V�$�*]�����'�e��VxyP*(������l?�*
(�HU�A?��}�e�ߐ��۸��q�_c?�7��6��A�
�+���gޡ}NJP0
	j@�=%�幄�ϑU
��A:N|�T,���Ŋ�Ui��У��-���s��o�]5?H�[�_l��Ԩ��H)j�A���l�>CDR*Sƨ��vCO����2��[E�/��*��2����B�e�B�n�B*b�{���͆���ô0�d���G�O��):k�%!�^M�c{r|��(T$��Kw�n��؂ؗ�*�d5^a�S����b�P�R@�A�/-��CT�s���48�6��m����e��#�i��H�d�ܝ�u�%��G�ƄЙsU�muM�{�����4Zڄ�	��J��
��E�e���*�G@y�p:��De�W��sI�4Zl�G6��x�

v|0�̉���Ca�MeE(OYB�;uL,Qc�� ��fnR�9p@}"^+m*劁QMT�S����(���f*&�U�����[�X��_��q���fGQ^ܙU����Z����VӕAa�n�����7�,����&RցԸw͞�#�+�X�8�Fs{t��>�'�i.�gjAN�-�-i�*xy7g��q�M��q�5,�غWz����h���/F�#��F@�Eb
�$�W���~�jv�3H��|�y�+?���Ͳݫm�l�6�,�%_�
�8l+u��-jxEl¥~5P�	��?��E Ľ����R1�����]��5����eM��0��N�A�,(h����(69;�8�r;���wUS�TY��n�c����w���YP9Q�:����<����;�9�K�u\r�!���:�{�uF�IiwnW�1��&�X���}�$G���5�AWa�2|��@Z��,����
�APF�)6����OcĤKEA�qR`x�{\�dÃR��Zckg�4�I��=Y�DK
6��V�>�hň�o�1���R [ ĚM
��j����S�ݯ9��f��m��񑥠W�q÷T��[�%��������ߒO�ˇ��	�w]�o���#U)��Ο��DB���3��7��5��T�A�� ��C��A���(�n��l�V��1R#�k��)�/1BV�4 %\�%.7h��@�]�P��XK i
���*N�L)�W]ıb�Tj"�8��	*�$�K�L��SB�E����<B�90�)�B��B�7�֑��D�P�F�B���aL��F�{�ދ	�"8株�g�ͱ��Z����_�v��͏���T�w`��M�R��[m�W{�*����/�괼�yY��E��/�|�B�Fn@�KIe1���A#�Mk)�")�)2@7I�Ln�QV��G�B�OR��Z����IZ?$9�W�=�!`�YJ������c�J@V�����"�(�a�vU�m�xߌ$����`N��$S�k�[q������KcG-�U�,:L�UV%*ܰ5����-�c'�XY�C#al"zdxB��*�| �ڻ��D_��Ia��i����|�t��vAPb����bk�s�
Jֈ4���XP��+zlS^ۊ͕ƥ�	RX�C#����0m�%C@.hǴ`�zE��\��Џ�%++���!(6�K�0
hA�N��Uۋ�X�~�Gs�W�2��6�����ʀo0���%�b��Op>�p)K�ij{�u Q�]�=��I(<��}U��&QTT���4����0
��]�h����K�C�A�s��E�Y1��V�-��:��D@�	MHhOT���3��ܿ	RJ�)�n�#_B�o�lS5X.��l�H���8�*k8y{�;*����Ce�n�Q$	���A*ܤ��A�voo�
����P'9i��
���cD�,��,T_(���c�*�0*/���	��Z�u���q)q�D$tN�z#�yl|���E��:5�ظEo�{,�½�#�C��L��T��e�6��ds��/�P���-�Љ�̬^0�\+��@���{7v:V��[[�]r��5���p�6|���ԩ���za��Zݺ<��9^�%4*@�}��r„~Ѝ- <�'I)�!�4V�	�<��� �h��)YX^xv0t����к���&�ct�!B�y\-UX�9��_��S�3E���،��]�*n+�Fd_4������דqF���[�y��֊&�'��D��
i`v�`yv���Q]\@V��r�,��AZ�8X�CU1q�(b|�c�{�N>Q��
J�ES���rr��S�
B*���j�Y�aO-T�e��o�\���B/?���9���7�Gv��q��"�xl��"ʱ[
��.)�&!��2�����p2��Fґ�����4f�v�t!�UU�^���bpEoߜ�W��ʸ���蹆�(ؼ��qz����.�2�[@Q�Ϩ�1�y���ᴢ-�ܦ�:0(M���{t<p�N�M��yD�~U���zH��k����z����	����b�x�R�A�hX��bߪ���1�Q��r����E��S�i�ɏ�'o�`�rd�:a֕����j=��k�p]�ol0���!����-@�
�4���4ĵAܩ

�m�&�)��������n!��<��$/��_�
����c�WW�6���;��$����S*��1Ҋ�>�G�`�x`n���!M��,]d@�D��AX������;1kO2H�U<BѪ��dz��q�|Gu9���򡔰%�Gq��9G���|_�S��e����G�ŋ���j5��s�<ջ�˰
"pp%)���Vu��5����{2A�"]�=����W��˯(����C�"�y��PW�R����Z�p�Q�]�������)�wx�F8@x���yad���T�8�v7 u)����/�(�(-��m�F�'�q�5�
�\7ҏt�gb�8S��8�%a�g#��� �EZ�ݺ���C�G��8;hĪ�w��v�J#�-#��z�yP-.o�*)2�]JZ��D�(�~��AP�R��3�6�W��)�C�%v5]n�"S�Ai��_e�����*&#E��6-57P���� �X;8
Y_�v����q5P�Q�EE�@��5�e9^���Q�y����6)�����h2��d���&)��Z �	nREe�Z>�57�O��jZ�w��&��erhDQ�.�����%��tWȃtnI��	q��Ur�GA�'bPZ@��=���HV�$�O$A�/�£1����/E�az�	z�/Ƀ�Z�<�T�Wμ�T�븗:�w��eP����"�p�,#Ø��*��"8�o�F|�=��R�P�u7�U�1���bR>�t���dB��DN��x���Q�HzD�y�bAH�\)P�Q	2��	E:񒤭4��X��@t���R�騤d�I�}%�Isl�R���u�U>����OT��y�E1�ShDF9"�hmQ�e5�M'c[\�D�!\� .Q~c2��?�'�g�T��HZ��K�4�,�P��n�yii�8�>�Ӓ��z�mu�^���a���3�
��azFەJ�[��k��
��4w�%�<F�%4t�h�H%4��_����	I&�5H \��
?o���~a��D��85J]��_l"�Eը)E�C�u�~"�X��&Z	���q�+�r�Rٷ�|��$�ѥ����8�[D�a%��A��e��E�\���s��d�6X+ޥi��%�9�o���6>��5�͌$5M���.���cl�)P��H�x6H�T_A��EI*����**�
40J�I�(�-�B�,���y�J��;BPy	j�-D(����ӈ<�����R��1U#T��,֮��& �@]�W���_���#Uq@���D6�\�e��	u*ib��(#a����Ji5:k�k�	[�K��/+�y�E��"���	J��ʫ/�O$�%�>uqێ���.׏��,�Ӹ�Q���x.l����opˀ��CqPݐ}������A許�bFE���$b�s�遵�3��4[J�� E���)�"���7�~���ĘR��eM�s1��*��w�5Fz��B|���EE�?q8��)�N��c�h%��D�~`>��H�E�J�}n�{2�(�QX����v���R���fq0�U
�H������0�~��Dwp��Ĩve��+�,�.�Y�f9t�7���w����y*%�X�ȩ ����?�}����H��Vz1��%Ҡ,������D�pW��5Q�)mV���x�N`��-�S;��J�q8�j[�ׄ9
L��QT-A���o��1(%|���񚙫@��Y���E
�T�Ф"d[�c]n�Zcֶ;<��ҥ֖FӇj�k�N}��H'��Nj
}�e�ֶ�po�L?���G��KF�/�o��r+p#�r�a�{ʁkK���1�Ǥ��O�ϰ肥��*�G%><�s�|��xX�@}�-�FxceD��\4\,���M\Cc�
��)o��/�1}�9S�\ʻ�.�ʁp��e��1'�isK��ʺ��j��F�[�b�G.SV�J5r�
�H �q�֯�aul����d6���<���_r���B�Rة	�Ѱ��T�$�b�ਊ~�
�n後*�K6��y��v�4hLj.J��(sw��v���5U�=iSG��e���4���5ZAHxUP�wt/��ܢ���H�ht�T��%�n���Id�K�S[�?^/�L4��;�Y�_"Y�����Ҥ";�ӋUհp".$P�X���V��O,T����e3#e����E<�-�*~L�L��HJ���o�[��c�sA����d�U�BB�_��T-;�iG���8��0-�ܯ�����Y� ���JQg��$�U���dB6^e�
��ڼ7 T��s ���2!l�L���k�Ծ�:�u��z��/CA��CQ�\���(ǶѨ�k�N�	<Yj�|��;�
�o=�dr�~L����ʱY�̙�h�QWvƼ��^�7��ŏ�x]!���K��h�cj�!��C_J��
ol�{��ix�[�6B�Y:TԾ�(�;�Z
a�C�I�c�#>ޢ�(S��x�k+c����tlz���'U�mbSt-�wރ#"9�)�p���h��|\���xMb�L�"�o�ϣ,��G%�y"�7-~������`�	e߬+�,Q�@�%x?pA�dU!P��Y��>ˑ����a�]��$t�������_`�2��w�}�C&�c�o7{P0�N*��e����I{nG(\O:ʲ��؛s6�H��K���-��k�e���~�Rzʄ�7�~1�B�b�/%,��e>��z�j�O�?b���:3ou�d"���~�뽸H�0B_W�>��7*
M��1"��,j���^�n���}���^��-�H��2�l��&`�%�?�!$��0��_d�#�k�$P).J�a�P�=�[�� ;Tx!5�n�����X.��!��	-:5�<DnsPp傺�l����l'?q�tQ�y����?�ED���*�i��Ak�mETt�z�����u�hG+ �O*�1��<�i��CX��4�R������i���:}���A!�ދ�ᅵ�X��۲pA�mc"�W|Ô����@�r݊T'cꊱ�%@���K�/*��E�jV��c9�G���<����kw%K3dM������H1 k�ȈI��@�5�܀�{0�o�l����n.�9�O���Ş��	W@��v(%��^�A�U�=?Q��t��� �F�Fv��m����)�_���)����G����-��J�3F��4��J�yd�[�ȅe%�sMq��R>�E�\�\�*���IU]��5#;m�K#6`>��oV#h��Pi�u��/�C� ��AzQ�ʆ�*��^����Q����^µ�裮�P{�B���S�:='��v���⫐G�W����TL�K�T��cb��c�mb×�
Ȁ£•9�a��]��<���ԩC|�F�+�"+��-�� �(��-�6O���x���(���Z��5�_�k�H�(�y"�<9��t_	��QJ{�a*��B$B�U���1HBͥkz�_D��+����Y�
Q��+_eV]]�K4=���W%��]�krV��R������>��Fkw�� �LBZ��N�ug��Q�6V�-m47PĈ;c�`p"$9�Z衖 ���Dr���/�/V��̫t2�U4y+���Th9i�_X�a^���\$U��p�y[��E\�M�%ݗ/�Vҩ31BJ!�mt���pEP%�TC������
��k[S(1E
���k��� TBh�.���)u8��O"�.&g�$h֙$��أ�&�x�?�.�`�` /Ie��-}�|X��H�GS�ҥ#*"+|)�`^Eq�*
��^��} �����=j�.DE9vlO ���ŭ�p�o�@
��������7(8��1�:~�|8���%[Kh��슌>�4T�1�6�sk�.1w:��i�>*˯��������K�2��.���$��p}�R��\����,�w�¯�t�RYE�AY�G�̷��}�݀�퀻��2��a�����ۿ3
{�m }NZ�(�'����Œ�O��C�QҢ��!K���.��1�c�c��Y�q5R�3��փtw1q;��h�
P$A��ӖE'�U����]���G���ϋ�Fn���j �s���掁�C=[���x�a��QMa�[�.єY�k~�)7���s�������Eg��[և}!S�H�%�PO����P��R����B��R�����#�){D�.Fo�U��-q4��Q)6W��)X ���q��B51(
�x���4�w�^�8���@}�/�bY����T���\ ���&��_�ֈ-֥�G~��H�.^�q�$d���	{($PȚ!3h�kG�TX�[�?څ���omcH�D-�"]�Y�����?6�(Q���MS�Z��R	���8&Іِ:�V�2ê�":r�D��*o�;9f�4s	��>A��qB�Z��.�I+P��S������
&Ν�'�)N�h-X
��16A�yo��L��ߊ �06s�A�M���Ը�5~����Z�	"=��B'���`�yMzw	lf�P� ��)A�N��:oZ	� �ϟ��!� �Z@��P-)�k,�(|Iq@�ܴ�PX��{���aIX�qԷѺ3�o��<X����s�M �����`�.h�L?ޜ8�XG�N>X�6)��W�I�fw6]8.I��9J��ER��1jdr�#A'��|�(��ul.�S���/�!����ۯ��W(��ۭ#���r�Ⱥ�<@��3��Nȁ�}�^�Q��N�n�e"�R�D��
H�c�
�(��A����
�l,���e\�1#w
!�ǑF�	@�YHV��Nr�\����t2�qUEE�u�B�u;�au���搜�}څ�}@��qH\,�G�i��������#B�jL�K�
��D�g"
�e8��e���t����}�U��]����~�<1��J�h j �!O!P�u��AlnFi� D�B(�,��͵����5L9�|��L	ak-�-x3�>�G�:v���Lsj@BPD�I^�s����{R���+�}V\a��#�EV*�:�0�����qsr
�ݱ�ޥ�(��
J����-Pb�A@�s�.ʗx[R��x���}������ k�	�����
��XE�"�Î'LE
�8�mф"��|5l��%al������:���^�6��qQT����&-��{V�<<%�z���8��QU~A@V:|��Uh�	EH@^
|K7C�8���nj�H����"��AR�/���P������gU���J|�O����j@��%lZn�AӐ+�<��F�q�
D�FեRBq��(A�����_�َ*u�P����+*уO�7��Z�7��g� a;�l��UiU~Bj����!�JW���"A�IÝ�OV�\�S��}pMaZW�����l�M˘1m�[�q����V��c�tr
r�G6��t�������Ԟ��I[�ؔ�n�SR�*�a����DE�/_�M`@s��F�B=E
2�������K|��"Ql7K{���� �]4K�60�W, ���$M\����k�Kr�tJ���C�Pp�M��%��%�n7w���+yc�">�B�>bv8ՔRӵ��Q	�(PB��
Eܙ��}T�D`�)&5�}�IB)�cfds94r�h"_�u�7JLz�[ �6~%ݟ�g�5���9"�Ӏ
aʀ~B_�+�}�E3GLyX�S9�P#�aXE״�r��$���uM+�%�Fb�K�i���Bb�F�/ @Zu�Am�G#�Ukٗ�S�3�#K`���\r,��c(K?EA�…�
BʆGJp!B�(V�'�w���<[��\��"[�
���L�%�ßHi��	�>ڂ	m�1~����ߑ��_k"�z�c���kp��p=����"�&ؼ�mҡ�f��GI��IM.b'K���/��)>����,}L��<���=H���ƭB�y����F|{��@@`
o1��(7�)p��5�5+�PSjv��ҵ�@�Ձ8|K�V�1t�R%B7�<T�Cj���B
�PeV�!�
�]�˃�Սe5rY,U-�u�.��D����$ׂ�_Xb�!)�>�<�%-����;���+��D	=sI�~�+tԶ��� .�uj­^H��ӫ�����B
	h��������P?~�|(��Qܦ�p�(���bG�E�?A�Xt�N��6�Ƚ�Z�s���?�y�)t	n�z�4]�}�U���Fi�5��!�`!�0&��9Cе��2�t�>ïE�$��%�B�I{�ȶq)�(���*SBϷ�}�>��}��B����"�hA�
]��J��4����q�\9�F��n�#K'xGP}��w_(3�@����.-E�D�i�>��Tҷ��8��~����a���������;P\L��-� M�GLZ�|!C��%ϳ�"��]z�Ayb�N����^5�b�\0�b�50�����Hi4U0���bƷ�׫u�ڃ����V߶ �
ر}�	�n���.�j,?��e�OT�%���"��c��s��������̴��P��9�-���w׀s7��M�ɤ&��Gq̂�r� if$�^bJ��lF%���$����Q���B�R5�Ȍ�D��lI�:a^��������j«daZjT,��A�4N��e�vP��d2��!��{#5��U3�"X��Koܴ*�2���Wр�X-���)�q�6�&�-�	t�p/I�֫�t��D*��7BTI.�;�V�ǒ�/���U؜����jrǑ���
㑍J@<�Bl��m����1��{@0�T�y�����,��'v�d��>�����bTx�	hr�q���)f]���[j�\��T��'~���h�Ȝ!U�/�ďk+ܹ߳T��̺��^����� v=�����
;oaLHP<�rX���`"��6�*��=#m� �:��J��qc��ַS*]��߃s��<�Q�;��oP�
�i��G-�X�4����yoU
�P�P���� +m-����~]<X;$v�4f@��K���8�@F@���)�."/�[
����llj�F�w��P'�u���|�+�iP���l��^B[�z!��b�
���x��LA�,����u�������J��yP��C�P
wP\�G�&ղ�b#�^�h(����(>B�SS����<�&t����{�[~�R��F����x.�F��Q�.o,ő	K� ��愶B��v��/�v�e}�DB#�RV
"?�?�j\zi�V���P_�D�غ����u�ŐR�(r��ߦ~�B"ʇzr8��p��ɤu+�r��V�
�9�����R�\,p��I`r���M-pX����gR��Wb4�
������ڣ�'N�t�@Z��t�ߤ*��C씣-��I�Aӿ�7@�A�A��kl޻�q��2��J�lH*�����%[c�\�j 0л���K�A��D�W��/�i���=���=T;G`kp8����<զ�gn�P���
�r�b���������&�
=��ij�
�R��)H>���/xM5W��l��a���T��ҥ7��6ƷV;���TԖd#{{y�@[	/�qI��H^�\-��j��8�gKu���������Z��z��N'�{�@-� �e� @�*:|t�ʓ���vP�ݨ�_\���Z�ր�Kj��E%�d�*q(�Q�N"28�bB)!�0���=�NƌR�ʢ��K��![̂�������r�{��Ȃ��>�N��%k��\�`D�󾯘l�wc�:�^짶a*�|�~����]8����tf�a�m`q�1��s��ĉ����/ri� �ɕ
�r��t�b	+8
�ڠF���#)8RO�3DiW�c(�A��%{�R�|n��$=���{�K)q\����΄������C���T!�lհ��Hl.��&�%Q�T�p=;�m/�tMvt��S���,���퇕ħx��>>�����y%'�I�#�8�Y���g�HY��Ur���v@����Բ��b�U$,Bi��f�f���Q0x[||lˁ�w�rR����}���@��@b
!�� �����
\���L�ȑ��%<nSk�xKי9k�yo��#��d��c̦��ȱph<���b�+m*]�CO�J��Aʟ�ܲu��������j��>5��M�����������M�e�*���|K���p�f��A
���B;���^��ͪ�dW�zH��X��ߨ�`�e�=9_��g��H��M9B��\1K���`�"m��C^�f�#�YE��g3ؕ�Ə��8ct4�"�A`mM*���=]^`9�x��o�,��flv��2��je
@C��i�mSN�|�Aq�DP�\o��ݱ�5`Tõ�o ���A�]jÖJ�������h�`чQ�.��K-�`���G�Θ��i���"�+�N�5>rR&�ޏ�)y1,���Y���E�,tNC䇺�}��v3��bC 
����>��ԧ4]�2�07X
����z��Lk��F��y�h���`C�,�A���<@���q.J�U�u����Ȳɶ���ŷh

��-�Eɘ��Փ*���bA��f�0,Ӕ�@�#��ϩYp{up�u[����\V����A�W
�؟~~�
��a��`�)�K��i>���Έm|�n�IN���A6T,��s]$\�����`
��B^��@K�Dl�'4)�Q�����9`m8�����B��Tq3��!�glM�V��銴�D�\<�8�tj���# 1���-��G�"�3����|B�݉IY��T.��!$��/�?�
����S����xЕ|�>��Io���)ֵV �Q@�2�⃑^x��>I90���*��� bU�	@����ie�i�ᇖW�`v8&�
��!i]����nE�-�r�*��&�FS��й�q��7��� ]O�;�b�
����������H�ű�9� �X����Z�B�WGVkQ����Q(�)D��-���lv�~�u'H��ɀ��L>�0(�/2l�8�Q]$&�����.�{t���7;��ƒ��d�sѥ�0=������.�B�D�]�z�]��l�o�]�@�W�������,S"���8�w%P.��@S��*$���N.Q`ׄ�$ـj��y,�^
���45
U���)
j�Z�+��k�sk��lJ�gO�T���Ꮼ��rhB萎ڌf��.��sNGd��䁆?1_�����-hD%�ˈ`�2��{��������^L���Ŵ�Sʄ���@&���B�u[��/bc�J���њ[�,:[�:��J���9Rp%��O�D���6#D!�*+�ó����HA6��Z���(g��Y�Ru��N*�Q4��(B-�htPt�o����J�В��GB;��
�^|"F���[v?ў�t|5\�C�,���%/���@Tl[� "�lx�h�({/ʏ��P5�G[@@��O���q����hz�;-��̴`1䅬�B���\Pq�!��.A�4�j��떦��a��/&�Vh�4i����Wq�:���^�8�^Gad��=M��ƪ	�*��=�ٍX��g+ѕ�<�%�����E��\pj>y�Ĭ>|��	��C-�%aP+���=�b��妇#!W��b�_Q��q�s��C�-�ְr�[��s�w�C@�ho|�x�5�����u0NI[cB��Aa��N��^��ga����zwh�1�"�O�֋��0���
P��`\���a��֢]��-�ܵ��-�T~2��+PsL��5UU �N�Z��,����&eŤ	ۢ�,Xt`�XL���D��d�^�!�wU)��]T��Թ����ܷ��G��8a@B�#BjZ����?{�:�Z�Sa4�Y^�
re��$-3Źt�ζ�q�x+J�l��`U�GSSCe �4���
����H.N�l
��Gކ��,����l�VY�"��1',��866J4�o#r�x<�+��e�����h����3O�/�
�y��u���yώ��@���$EH�ۉB��*7�"iKt�Z�4U�W*�P`Oe�U
rB�'!eeo�`@�{�䰅JAN�A�
}�ɉ�I��<�)*�`�d�o��[��4���P�,�G�G�WW��*��t��j"�s�����;o�ڍ†����:�7�\�9�{N��YX�`%־�k��D��_�jhrG��r�Ds�|�L�v���}C	-��2���>��ݗLd�x(
.�LD�DK�e�]g���n"�-?�$@ŋ������	F�0j��eB��N���s�p]H�&#ELγ��L�_�Q@�<���a�� W32
O�F���Pr��w[A��幄0.*�7��O"jL,<����Z�WyD�9pB�n�F��������4�jdz��q��|�e��o_`�L$#X��k֯ap����M���Xs�L�Y��YfU�o�ō�ԉб�}�c,����}T�:w)jkQ@���v�9�؀=�x�<�$���^�C[Y���m��(�g��AP"�5���K���X�L�����j4���aH4e�f�@E�p�5��R� �z/Pr�\�r�Ky� �,�i� �J��{;B
�f�z�Q��-��0��c�3�� M(�.��U��0%��􍩬u�L��2���E@|2U(A�8JH�\������Խ�R�H�V�����_��-7@�sU�(_p�,[�ê�p�Qٝ�`��#��U�|K�j}W�(N{�#NHuS�a9�H:+.�X��T���Sh����(�껀��� �ƀ����@��'�5����'t�����>�'9�Ϸ�6Q�V�8;G��)�:'�%X�������,�f"�������c���y��]�Äkk��1���Q�fy�;l����R��Q��'������������X��J}�7����FUV���}���oŧ	�h?ql����3��	_�V��X�d�wr��*���R=���~�5��@����G�����|\Z&cV>8ΣIA*�x}�����f'Z�)��P�,.�+.������h�j�,�������ږ�tQD����X��(�=�A�� H`���R8���EsIJ��͎�.�x8bz��=0�X4���(-U�� )���<�˕[`��,*�,��*����Fӥ�-���=H�P�1AC���L��9Y�t�X�s�#��+���F��-J�i��G"
�1��<�ZNo��&���T�J<P�kU���c.Z}Qx{�0~�a�T^�%ot6h��T�Z��nH��_��J|��Z�b��It5�`�j�x��!�R�c�&�W�%=\B�M!SP@���R0���T�! @|�~D�tJ��w7B�% t|#�))����Z+��T�$5��E�#���Eo/��TGgfT�	��Z
�W�.Kـ9)����_���z|��.�Rõ��Žb8�Sv.0o#�4��7,5�7;����ټ�$֟Հ	uO[���=D��_O%�U���EF�ĹD��r�Q�T�Y�JKk�"�֌��5a�(W�/����_���iLa|
|8z��eU�\KH�E���c�es�8@9��,S_�`�L��az�+��#,tZêUZ�`�ba�IK��V
q��./3����*�0`u�}�*��'
��ZR6&�
�P�*Q|�X������
�uO�W{P�3�0z��B����W�7D�J�ɾ��O�C�Ǭ�j�R(�|�4�֎�؞�ұ���	����eˊ,hx��(��*�����(��HΘ��h���U�Z�(�D�q���Uyky�	��\�4����"�B�btZ.\V���<��F�[X[�=���~�c��GrȤ�-T?���*�І.�~†��	il��<�~�#DY!�P�c }����4��=)D�z�TW��iS�ش\w��1s�!_�����M�A��n�k,�i����b����²�ɐ�F-H�6i��#��k��'�J����$�HƧ� ��k�Ƣ�o�1*z��D,�p���)�p���0�)�6!o9_�C.��y�F�	`%Y�m�l���+�,`=.�a�$��
-���8��:���t4i_�0��Ph��6]�}���^��p���p	̫A�Bɵt��@&�� =Ċ�BPW���<!�,;�h��9y.�D8�כ��0�WQ\�rԞʆ,R�Jq�B]W�6��m��۱���H�XC��/!�eE�`���Ĩ
XqH�O�-��Dp��_�C������,�Ĩ%ab�ڠ����<������)���¡�Z)j`��Q�Of��{��>���׷�q,�6.k�h����Uq���X?;���x��PREW-	�،I[�i�8'o�Dh�zk�z�ݕjFh�Ĺ�+I�CR��(��d����
U�+�ڂ��f_��	p"R1�=W=�j��d

�h6*5b����[�X����<B�yzB�@��ư�!C9�W܉�j�a�$S�Y�Җ1X+�0@p���*����D���8��M��)�[S�ˁ�Y�Q��jP�i{7��m�� ��X�,}3n8��F��-.�oH/&G���r�.Q�Dˢ��Eg���b��V��O�=��jb�߱e4��C"�����h��VF��Q����O��]��S>pʈ[���qA=vzB��b�� HPĕH%�5(��V�H�\�9`:Q�vUt�P	�����-bA������������v��z��r�#-��+�t�T���p���I����]�f�{]��'wD��Ơ�-r14�^F�p-��T�Љ��R�ȍ�[s��N��_v��Q�,
ߞ��rf��z07,�ٓ��M�e!a�
Lձ���k�+�
A�E(�P����p��ߐ�c�_��=�{/#H}����d1�+'>�Wt���+K�
XIk`�AXp���i�J�Q�ޅ*)[�nYa�Ġ��	@�@\�g�sPF��@4j�c��B)xY��VN]�p�Dx�jU.%�K�]�ǭ���]�*���̵T@۹䗷au�S|
S��U�,��
�ۃX�$~�&��ʉ|̩�K�R�*/��3V��6�̪�)	�J���4��p!h j��H����
0�vEi�Q��EX�|`k�ވ�aW�`�W�-)���}��ـ�!<Q�!u��� 8 ��F��g�;krͨ0#~��C�:A0QY[@��}5��kR����`�~ W�$�^��y�E�M"�*�ڨ�;�<6ʊ��2S�1&��F�d
�cr�NFԁ%�1aQ��c�6p�.=�w��Н���C!�H�(a�R���T�=q������9eu@�Y�@�-�Э�Ah6��,l�`������.��.0'0����H�Ci~�r�K��5ȩ磗�l�m9}�|���,��
���d�VU���a�E�o&|��/�;�c1e�58��!ڑM�)�C�������
�'r�I��6�N�CP��#A�ܡsk�[p�]�Eф��F1D)۪3�1FYUWk��� lvP�R
�
1��	u8��*j�jj#��7���PS.}��xK*�$m�ł�L	��u���E��
{��א�T�W�"շ�a^�2V���b�/���Xn�`�B�b��E.��5�>��w��`�+�mJ;�v�T�Z�-a*�*S�T��I1��UY@5�.���#��36��x�c;zU�X�%�A�p�(>5��%�=dg��VA��F�Խ�
��T[�"D�Ӕ�.����6���{Q���
pӅH�\���eYk��Kj��DY/��Di苒�^�*��	@T2T����EY}�Xi`��щN+��^��0�R�@q�h��!�A)�s��D��ȾL
mF�H���Tk�i�`j4"i��H$��Pr1�HM�������&���f���@r�b�Bjȍ�`��Yz�aT�Eȕ���2�A.Q*��w_��Ї�}�:�u��	NC68�G�c����"GZ�Gޟ;"w]w�61�"�N�r�Ԯ�3�wlp���X=�X���P%V ��WSb=�y��xxXaDAw�|8�� ڈ	v
ӄ����6��]iE���0�w/$}�!�*��\�\D�?
�KEe�7��i>����E�YbhL`�ʹ�*���J��EGzŴ&�T���.S�KT���Q��U� ��#
�G)r��4Y�>�U3��
K�#,W	@M�W�$�N����D�5�U�* Y���-N�T�%����!�+�Y`(��@�G��]۔���[_'�7�
�A��VwB�,B����p�(P�O{*0�����R��D
a�xE�ȩ��:8�8cS]����,bp`EE���w~!bV8�b'xY}�I*XCk��"�[:Z����Qj�)�
��|��%��`���B
���,��@،.etF��h�'4���Q|y�#[�9B�b��P�F��i��E0n��'R�S�/kс�+�\�Hn���h@�4U�!F��)�Vt���S�e3%b�)�����v.8��]��6�}��ڕ�:
� u#���M�!M��ͽh���ZI�ԭ�	��ؖ�:B�-C�G
�ҋ �V�"'!���e��B�œ�,�ּĀ"�v� �DrF�AE�X����vr>�'�-k���_ڇ+0��:��iQJr���LX*����ݧ��F#:�� ���G��,'5��@��!7��!�-���3ʨ�X�	�E�iH 0���`Ռ›%硸‚iB#/Ml��3]U(dԶ͒��{y%(�)�Z
k僢��_�".
x��H�(*S\��H�0���]�w�ɪ�.h*/'�9�@+�5�'r�v��Ց�O��P��˷a6s*�|\bk�b��`�x�ϩD�s�
r‰�ǡ�[�E(��sp�t��%���J�_5qӠ[�`�
��G�=�},���	&�>�c��U�~%5\+�	Q2�7�!�p��)��-�.8��`t�+A-p��P�
�2��5`�m]lZ��EcY�5"�,HXt-L"US�(-�J�]�
|���y�U`D`��`4
�"��ں�e�N��j?��z,�� $B	�o���q��O*��@�u��O=c��!ゖԠ��/�����!RR�8�/�0���奬vFk,��0��d*�qp�$���H�P�l��,Fw�*	�K��j��8m��f�.��q�DH%\4C�S	U��w
��XӸ�	��i��FP��[-�0
'�iQ��E4���ǭ
�h���-��r%���b���c���(
G�c��l`�Zc(2>��.�Q���?���H���^.���o�P5����C{�ā�~���gT�J� �9�?�
p�8��,[��a2h�������p�J>{+�9�aZ���hAe=�cu�U��+��*7��+ה�z�^��t)
vƓ'H��J6��B7���{���nԤ)(F��=��E��8*L��B��fZ�*Ɛ���ݮ!x�a�h*i���Q��8%5]hw�ac]�h��*����Jw����/�7���;�Q��#6$��Ʊ�@%,y#�����0��k丂�^R%����`���,sNX�3K���F�t�|�4"W|!#h�q.�A�F�j ���b��bP�
�;��"+�fݗT���Z��
m����2S�{$2iEi��F{�559�K�k�g�%���]���x��l��h*O�pk�(���N;#�`o`r3r��VL��H[�V����8��<C��%؉�p�e,sj��}����bZ����V@����Zc+p��`��i�ZvXo
�3uo�L>�v������:�`ڃ�0Z(�°C�_X
*�ś
����ȖՇ0����E�2Xek>���M�j���TF؀
vy!�b�	W�8��m-1�5ƃ�C,�1�RO�T��`a�a[�l���Z��,#�NV�cAZT��J��(I�R䂞�_��G�7	S���t�ox��J8���#@��{�-�u�x(��n�pu��h��NV�M��,%�ʫe�l-G`���]��G�ߌ�����(yT�����U�
j�Ƽ,�?U����?��P8~��*���J��ks`W�OV+���v��F"�j�)���t4TO;�3:�
_�hp��סP-c�5�n�*	���f(X,��]���l8j]1�M���ޕV�7h��Ui�J�Q.�t���RW3V<�.���\j�Q��S*Y��<�Z�1g��vw�b�)��`
�����w��-E(S��I�w�K�B�^�#���}.፯�3n���CݠP0>bb(����ԇM��ru�0��<H�A��cVҮ��8�^b�2�6�g��.��Dx|��.�O�Nś�ٞ
�|��B���|��SkP�"�`QpR#�ڣb�H�p	���
�*t�]<�b*��2�Բ��W�DX;�z���%���!AD#/����m ���9#tv�
	icM�8"���In�k_4��^1��!.ƮA�:.8��PՋ�����B�p	w�*��!���O�U�k�F E�ܴ�{�m�#R�K��AB䁊����"�Z���4G���ޑ�o�CZrD'��#ڏ;��5[�XSy�k��>�T\6�*OSW;Z!���i^����_��h>z���*l�&���14�?$!H�y�m;�E�u�w\_����`XT6�F&�-�,%�T��S���q����J�dLZ�he�/|C�T�N�<�t�Cn��B�����*���hc���Gm� �K��d�C
*cJ�/�`۫h�	�4�!����D�j���m��
|��G�(@�!�N�|��XX��=D#��F#�`A���u��9�KR*�m$٠Dv�Ψ�5��\<\�q�e��r�.!�&�B�K�Θ͓ Ձ�ҳ�@h�Z���C�0�;8%�2)b@��)�src��v�}B�
j��
��Џ�H�ӭ�;�Y  ��ʾ Ǥ� ����[�7�֔��JP��q�k
E(FL@�V,�\���Nn���d��X��dG�QF�����T����6��ӪG
D~�
��tm�Z��,�L,@G4�'!�ۗ�ewK<D��Sh������3x��T�����re�XD	��;���f��47K�,��D7f��0=�_�m��p�4�,�+r�.�"�B`��g�H眂����/J�F�@k����q�b��n��F�|������Vwu	�:��աeN�6/��)Z�e�u�m�V�H�-`֫��2��d�[�ž!}5��c�b�P0D���$ʒD��`�g��`�$Β	���9���DINH�d����r��0�
g� nhU�-I��t�����HF���>Le���xeс(�����PH�F��S���[@B�)m��Υؼ5`{�=X�_1`( ��q7<|�@?��԰�l�
����=�
�%�1�[|"��Dn]L��Dm���%|��?M��UQ�Q�LT��%��a=���ob�ƭ�Z92��X�uU(/X��"ӧ��3�4۸yȳ䇨!�=����8��/���"���]����1iɤ��XM�8�LD�T"�[7��h���|e��ݝc��G��x^�L��`��+��x�o���ȅ^��;�>1#����j
�@-�����+��<�bZ[_$'b�(HöUL	I�h�0������}
)���B)NEZ	6�Е��t�/yb��j{6�C`4.��@�A�s�������.��\J�J;�{|0�)��4]RP�`��,ȱŧRh�D��(��oW
@��e�%�q'�����*w�7��J�$���8_�˙ݠ?P�,/�!��(B"���S�Eh��k�3�](�8�Ŏ�*�`�B�T��[/�e�*ʨ.j
8�ʌ6S�ɉ
�H��6)ea����G�-X+[s�v���m-��Ma0A��mB�7��d��Ԫ���
чP_���DXM%���Yp��QJ�z��.��`��`y��8��l͏_��-��`?P��o���3\l/�i�b��%XpU�te Jc\�K"��4���T4uL+|��%R<��K�@k�A�z.: �	�*�SU�
��kl�1&��eQ)�Z�D�6��H�I���q���J�`�X�Rq�����#/�jl�S�l��ɜF�}��;2�4��FQ^����`��hc����h�iJ�}�a�E	�lu�&�*�i��bDj���������Һ�������"G=L~$�_�h�"�{F�;���@�B}��{h|��hl�+	�U{�8�ٻ
�h:�2�`�^/V�yȻ$�z�z:��W~D�!�n�)��8���pp/�Ĩ��J"�hg���9:��.��ҠG2�X�$
��~�\qp�_�.4�26�G����*$D��.�4\��͠1nɁ|���x��W���=���h[-��-��.���.��&�TT �
�@%� (T5��D��
�X�(	`QՆ]���%��#��ohVH>:8�Ҫ��l`��ת�1�8�@"XſB8ZDp?P��u��NW�(��`" lW�qS:I^x�[\�B^�������U��C�Cu�{]v!/d@j��G�Y����y�����X\�Kh���ƅR(�$q'l�^����*�����j���W�����,`��J�{��';�]�!p������x�AdP�!i~�5;v��)�Ձ�U!u��@�����
e��<�E$��
�L��������j֪�U�X�A��3��J7c�!z���{GX03E��+���;�Y1�7Qf^ŝo���8t�KvǴD�+%�v����X'�`���e�,�!뼓b@l���(�L�Bj���f�f9�|G��H\pl�p�F.Ց�3d`?H۹'��R5�$J�c.p�
�&�*�%Udo��.���p.;�P�K�K
��?�wh��"�)�z��Z��w �œw/"�V噢��Z�R�T(�d]("�������b*�MhQ5�Nd����.��8�Or����ǜo�y�*�YBp��!r|�vG:i����,UZ����.��v����y�����fX��)<Ͻ�L�_"j��w;��c!�
*vr��Z�[�"۬����w�r0�5'���R�d宅<	�4��ʀ��H�W�������R+�I@��<�l�_�b�;1J�_��1�1�EQ%5��m�%k�����R�My_���~B�d5n��q/;S
.EQ�*��ao���OE��Ig%�X۱���r��Y���c����^{*���v3ȫ��S*�hKt@E6X����`�;�=W�KF.]��"N0��4�\@��w8]�jj����	f�[�wC~%�ĭ��`�i0��7��]�޳�>��Yr�����<��9�V6���{1j���1ۓ���'x��fY����`Kt�j�&
�%R>1ZY�ߑ��Ǎ4��8a����(�Z;�W։U�Ο9�2��{l[��q��ۂZ7WP}�#��۷-����к%� �]�0��מG��)�>d�Q�*�!���u�*u.*�|�i���Nl��Z��D��#ZUUՍ��
>9�_�;l��%���R� ��s������.�V�u�@�J�lV����.�ޣWEK��$�'����~1�E~�/�����%ǁy�^%�v���"����7-U�_	HѠ@:�1f�Fʎ��M Yp�&
R9(�<8Tlww�mA�(���gU^ӷ��+wu�ëke*B�� ��<�Nh�h�{W�Ǝ
<&�Q<�,NB�&X5>�� �Zv�*m.����F2��e@�3+��P����j�~X�N;���y7la�G��~c�����I�������*�T�Q��x1�{�Gkn�`Ml*�V�|%�F�V����#5ɜ����z�����"r�)1RT=t�}L�t�9�Pha˗.)���-V��#	�)ObTpY;�̿c�f�l�8��*o~%v�Y����-P���0��E���^�z�D8N��1J�Z��)"�_qH����k˯�"�߂�����g`r%m{�mX���j2�hP�K�Ǘ�T�ZyZ\~��DJ,?���x����lH�J���c�kj�bU����	���|ˀWEE��`�襻�h1;9��A��A*�Ȳ�&@3	ڸyGV�k*�/�v-�K��ǎqN���n�x e�=b��q
+o�����O5(�C:E^��C���c�Q���2�i
�D�'/]D��ͪ����8\z�7�\[�,iiߓ)�˸�N���|�G�26�_:���:T(�G�oW�劻��葩�+�d�(�

���~c-h�.�U/�By
�S�XP@����K�}=�7%W�t��z��1>.��`�0<J
u�*��QSubw(�Y|�ydR�b�)B��m�D42N}���a��j4�"�¥(���Dبx�j��;�E��Yb�]�k!�A�c�Y���\=W<(&�b��J���Ej-�Zڛ��jawCC}H.ru} �]�p
[�QF��؎�o��Q_nS�T�����$e�e����?	�[��%�@>��U<����rF���V���DT+� n\�BSU ��z��y�i[|��<�˛.,?��B�Է}���Ү�� �H�s����ūİa,JZr+����ķq"�R���ڛ��.�O��Rq�T�X�m�Jj�P8d*_*l���v0y'�ÎM���*�#f��y���#�s�ߔ���)V8B�9 ` �>��ܭ�?GVCMp>B`��ɈU9����0�t����0E�ЅC�,T��@ˊ�f��KZ�D"�p����풾�� Z�ǻ�\%��6�g�.�S���w*T�cmq(����"���{�\G��>�{�nO����k�����(,*�Ȥ�)�n��T�Z\���"�jx���iq��&�7P`ֶC���i��^Ԯ���t]F+��?�R��R� ʟ��# 0@P`������Vb12>��G3?���Vl�y��g�L�噜߭��Ͻ����������9��>s>2g�Α�3�ޮ����KG���i�i���W�?��sϟ?8U>��?�?���ek��_9��3�aR�!�����<�_<%���L��y�����ϼ���޵��f��՛�&ϴ���c�`g��;7���6�u���y��8�ɜc��A��b۾�6���)���O��p�������e�=Uŗ����ek��_^��4���ff�5��>6j�+���f��?�x|����B��}&&aכÁ��0�N�'�p�;��fL�A��s��1�ɝ��XT�F1���~��_癙33�,��ٺ01���9����?�
��aa�x�=̌�}���f�d~Rf33�{��bG�R�f3TEl�o�9����c�Bu�?鱌~HJ�_�ى���G�o��e������Z|���~I^��7�̘��>ߣ�k����c��Xw�O���]cӵ��1��c�����̛�Bo���A�`f$^�U����c͙�L��~rf����fn�w��� p
��a�UUXwD�Nj�û�f$�svh����1<�c133%`ͨT-�c�tHJ�<~N��&u��}c�� �`fW�~B���]��2���#?�:F?�HL�c��`��~�n�x|<~��[ڽa1����c��cӛ��(��_�����;�����䕕�1��U]�8|��-J�����?${_��c�:;כ�1�
A#�]�9�����ݣk����9��339���&�ٺB9���d���!3��'�*�V10�q����w�*%�+,^&VY��C�|Z���C�Y��%��ff`5f�133V�c�aNJ��9��V
@8��%A;���M��<S����y��ʧ+����V1��LJ�����PX�fG�~3>�AǙ������?���39�|�+���%Z��ǚ?�|�&f���sU���?&F���T#O�;��ת�>�7�u��;j���f�_�Z��j�	�����37}z��~��32�fw}6٬?�a?A�l�wGf�v�z����X�M��Bn����&�102Z~F]��ww�f�ww���M��0x�����D͂p����&fL&x�����n��7�ww׮��'�8sEF?)�������B1��c�2�:�U�b�G�ߛ������HMY�������1��:�eax�8�bp0妰�I�ę!5UUH|<1�*U�{��ܶ���guUx��c���C�~�^W����3#X�n� y`�����VW��a*�3�����p��C��i�c��J�ƾ|��a��G��Z�*Ջ�v$><�XFV8̭HF=���v{ݏ2���^�_���zp+1���a��sf���-��yV�J���K�2�N� ��[�eea�a_!v���m��~[z����YUvڵ��c��J��I��z�wY���񚫵��A�+�M�]���eeS�a+�::���l9���m�tO�o������Bަ�v��ݳ�M&1���ǔ��?*�Wc���e��V�x5Co�yY�y��eWH@>I����m�l+�[�elF1{��]K���1�LHǔ)Z��c0�����0���J��E�x@^����b`��Nf}n�|��������3��jy��^�媞rc�DD�B�n*� &ba���s	Xq�TbKLѱ���<����_9����1����m-,\y�B�|��)����dx�5��� �0*dDL�jV����8q�DNU�����ƹee^���J��ժ1����Q�c�3[z�03}*޶<V��s2<y�=q*Vz�]��[s�k�1�a÷�+g�X�e����ap�F�����+��cV�Z�k��W3WUu���#_%@�#�xE]���V!�r1WWtF�/k�I��5T���1��	��ϛ����5���b#T�S3��ׯJ�30��݉����"�g��q�گ�+C��X��4���~2�"����D��+3,�9�ok	���11�f3U���!�C��v.��m�޽!�a+,��ƅtr�"c5����,<#7a2aŲ�f�I����e���!K@����1�#VV"fs}n����,#�=�*�2���p����ŏww}z�*'�i�2�ь�Z�����,^X�n�ǘ͛���	�2�*S���5)zAכW�b˪��K���Mz~�N�#�HM����,Z����ǘ��l��Z���&q����e�)R���Y[����-~�8q����+�m���c�*��k�)��V��Ѫ;�-]���Z���uaƯ���9�ˌF�Z�+J�k��k��//-�^��?+��b���|n��y�X�X�
/��)IV
ǃ�ūWGfO+K��N1��1^1�ea�;��姏�_ε
��ZYz�.���י��Y]f|f1�>�a1�x�
P(RV^��ŴD���B�H��	V1�Ǖ������LL���< ��ͬDŽi��
E��<�1����7�Ӊik���^<fb[�h��jB<c��F�JD�ʌKo0���$e��eJ�+�6��,�%B��;{YG��rԪ��3"1���IS��[<y=ț��/��@�x��&��e#.�)YQ�F�<�1�,3i(T�j��d��Zei���KzY���#R�f? �0�S�L�k�3?/&5)Q��~��!*�U��g�1��1�f�U�@���J�����cÛ��M!o�?���.�cG����B11�<z�ea|VޗU~��궔�V.�f�RZֵx�1奥��?�W~-������[���k���_6��{o�x�z����;��F1��=�A-鷢Ŗ��]Q]�Lʕ��m�g���h0X�$e����W��e�a�n~����}����GvZ�I�殮��e��_[󢱌x���e��u�=n�sk*y�j�ik,9��X���$3>3���Q������VlxǤ8�W�,�x�c*���AL���2�en������~N5KD
@��=�gm[��o���!&�m&<c�C���5UE�xF?5|��C<�+Z����+D(:�B�x�G���撉Y�7�R�j�80�umz�I_���f�-�c�� yU��%k]��aTbL#%`F^����۬O>B���޶��G��Z����.���/YXČ��w�;:�,m���++	J��%J` Y��0�sEUX��%�
�+�}���e��y�Z���z���?H���ޒ��b��_�/�?;�����
�k�+Zä���)�������?���������GFyϬj���V�'0��ҟ�?�_�U+�׌~F3��?�H�U8�="��XA�W��j�,[YKRS�c�2ʳ32VVa1�ITX�0���bZ-������<8G�p?���1�02����t�%`�5b����3�#R�
���1��ͭ������a2յZ�%ex|�Z<ޱ�8�g7��ӌf��W*�M-�`�s�����И����-ʴj�����K'W�fߜ���i�*T�@��[�3�����fu��̅��e��������
�^Lƹ�1��VĬ�;�b�Y��m\�͎f"5��BVn�_���0�y��?ԙ�O8F��{�h�r�<����R�%�~�F��@>731���a�#_�~6/� p����\����aé��<!�<�ı=7^��Jx�hڴ)�<��ޥ�V*|1�����5H1}�g�:|F5*W?�ק�'��|1�#�v�3Ϊ����m(x+�ǟ8�O�F�����팱b����Č�䞽)M�`��,c��Ng�#����ޖ1����od�\����|�*
-O)��[�c��V¸������w3��E����
�>3�&쬬 LD���?;mo�jt�-XL&�.�m[��ٻ����+��Y�4w}6aPӧ��׊�޿:q�3&Dc���s
,��ao�ԕ"����w�3t奣�VVUౌ]�W8ӣ�www���w�8�����D�
��RԵ�z��ǂ�<%��B3w}mU���`���U�>�,8L����ft3�3<�y�a+3Y�_�R�<�U���9T�38�^0�5Nm̨�G��|j�^�������_�[�ɛ�xͫXC�T�jե�"��6�YY��<U�?;���� d���X�|(�l��j��׸����U]�Tj�v�M�Q�k-���F$e��5��2ܨ�Uc-4GGv��݇^?Gw��ǚ������5k|���k^��vo�T�m[l&��e��oή�,�����-igDt��(���c��#����\��X���B�`|��X����R�j�6f�xLٟ�Z3++����或�!7�t��=;�3f�F�m�%C�^33+	Wt�tc�������F�flj�T��6v���X�2�I�ӄ��Q����eH}g7*VO�y�Ԯ8;��-?Jݽ�+Zk4�ז�o��c��ǀ�K�0�N}}����񋻺�.��kS�z��Ǯe�s�/��O��[��G�V1��xC�s�����ׇ�͏_��c��c%xL��tk��V��~������Qw?��W�=e��YXB/�ݯ���>�1� d�8�Wj�?����R�+��HBc	�O�>��v��++	���Gz�d>ϔ~Q0����c����g����`I�����33 ><�KL8ǀA�=f��'��!�0��9��F"`T>�~7�3:Lڪ����E~ŏ�\�!Ç�w��g�0�l�噉��s&�H�=:|1�p�fcV��%z�ߣ�!1��u����+��8�u~α�V�|����p�-18�����.! @0P1A`"2Qp#Ba��R��?��#��5
�)�������@�O�2��x�1��B77��\��9�O�G���ϟh����[�,�)����6�:)��0]@-#��Z}�P�����~�#��;�SS�Y�I��X�MsQ��/����ӊ3Y�B���2:��z���b8p�O�͡�����O�����M?'9��s]iy@QF6�~�e���Ϣ:����5;�6j(�
b�x�Q��P�=rނ���n����3�E�Z��_�	�'p�'�=��� 9CXe�B�6h䟶�T=	�D"��6\l9�}]jBp�У��iZ��Љ����rk��h����A��Č �MS��~ /��5��|e�nO55�5�`â�Q���g���"�0mFX�v&���:Q��ڜ��)�[9�Ju/����p'�ҵ(�p:6��SXLZ��,(�C��Tl:k&��pQhк�7�J6�l�	ҟFO�����Š2'������N���#fom�A��B�	dTb]J5�5-�_zi
l�!h��|�
�<pS�
,��4)�d�_��3{[֚�c OJ�G��~�cX�hr��=�-<$����ZJnC�F+�,lr鶄�R�
(۝E���؍�Q��!k��غ{EBs	��P�]m���6� o�a@j���`��0�ֹ�kBp_�CG�W����d4oN�2dQ�	�wZ��qYە��h�;�<�Lx��(�2tQN���n����Q��"4l.����l�����Q0�������֫!��2�J|,���>'2����']	��@�G‹�-Sk]lGnQ�e=E��V��&�{�A����Y�@u
w��!�X�IS�J#��_����j��8���_��'�_��@�'u�c�e�|��# �s@�lTT�{��S�mQ�t^�<�����S�]9���)��D	E?�cZ����m�����"��d}��2r��D"�@
0N+�fP8�d �z�Z�dxD�W<�����r�NaZ����E6��?%g`�5~	��jt�X��a>�����'EB�{ p��m���E�}-�Q45
,��o�h=n0G�&����l/(�
_n�q·��Ҁ��2{�u��ɹ���`��`S ��I�h�j鷦��'��q�
���G*(�6;ն�(`����zj
1Y�(�~|�RW@]zB!F.�ZG$���(����&��7�P��dIp��t����<�=�6�o��F�~�j��E���6�J�I�3��! 0@P`����?�L���n�?��$�B������癟�~�>s;�[�&v�̇��#��ẋ��s3�.Bf'��g���;�z�Z?d)�?O��?^��t��ۺ;�8J���?o�s3>�o�M��ۭ�z�XC�+U���d�����ř�-��|̛��Z��pGW_��0w1��'�L���k��J�a�M��03;�332n��9���� 5�Z��T���������k�o4���ߓ脬KU��3<���ٺ[w���鷬��o��>ο�ޘ����Ǐu}z��ч�3<�?9�|�s��3?�q���t}zY���f���p�3HBfq��g���c�ș�1�٣�'	�q�OJ �N�&DL��1��g��ww���1���י���ސ�8�iXw0����߁����T���߂n͇�'�ft�!1�[,�&y�3>C�o�d!�bg��}����1��3<��BW�1�s�o�ߒ�c����Ϝφ?'��^��[�8s��%ez����?�	�$b"f|�R��6�gX�n��3�^1��&��������	���C�X���?
���gW`�ߒ��"#��k�ٰ�;���ǵ�'wÿ�ݏ��5y������bLc�m��8p�fc1Bߜ�۱��x�c�#�[h�a4�#���2�%f�	��[`��im�!3��O9��D�]�H|h��1�F��Z�|Vǀ�a�!��vT���&yD���	���ސ�9�y�Z���p�!<����Xu<�����W<�yıc2VVT*Ѫ?��k�9��L��<��Bf��B���T��>s��Z-Q�ZLb1?ў|���3?��;X|��f&|f`�1���HB3�aR�
���Ԩ��B��%W�?χX��HC�?�Ä8JÄ9�q<&pA�-.�Z�k��kZV�G����^Z�2���bg�s2n�4HB&c�C��C��^<c��&f�[6m��UI��iZV�͚�
����T=����x�c�a�&1�ϐ�Hq�]/�ׯ�wׯ~������*V��\�f�l��[�b5�W"�?�O?,cܭ�02z�W�x��t�*�b޽U߲kf���h�@;��+*T�m��`¹�I�Z,�
���ffF"g����<�X��]��g5l�`�a�<͗ע���%?)+*�kYm�Nj��έ�T���w��F&T���c5f��3C���cǤ:|�Uxp������VU�e���j��s4wY�O>|����@�N��0���DKp�1�t��4z�3�	��h�g�%@*c'�ɢ5�l�ֵ՞�rշ���*�+��g���Ϝ�!+�#�LI�^d�ĴL�u�2j�����c��T�1y���ڶ[Y�v䬬��1�u�e�.�V#�"f��[��O��P	�Tc�
���c�@
ԮY]�c[�� ��̥kB�Bl͙���X�����؄�O>s-�lc�q��W�p+R�<�[Rź@��c���2�!���q��δ�
�&�[[n��y��?����~<��	�X���13
�kZ�����ʈ���a�D��x���%c¾J�y��	��Fy� L���*[+t��1�{�3��g��<Դ�&�r�9BW�je�������G[+���ͯ5�=z#����R��I�R�1&1����c�3	��d�&fTRe�K�(	bB%�����e�<�g��+���m�iJ�����Z��x���8����T#���@9f��-�,x
�n��B2я++++˖��1k02�k�%C�c2T��fe��@�J+���XU���l0��O�f$%S��^V0��f�++[/+��VZ[�����K�Q�SH��\��z/������e��{����VT�T�/)V�	XM��-mT�Gl�ʄ!���j�F׽�o[W~H:�Fa+++%���BVW��J��-��^��fJ�F[�v�>Z�p����'���{]�խ�oՌ%~��eC��ꯡ�uok6Tk�|W��	YXJ�yD@Ƭa���zm{6��׭�*VVzc����1�	[RԽ�F�.��l���xBy�*̨W3 ��k,!�����?5�-BV�����Z.����]�۶m�ס���`��bf`fA�Yh���V33�8�o���J�b�]��օjW��333	��FV��2��m[�Y�����Z���e]��W�kPU�1&�W�a+1��Gvfd��	Sז���)kkz-��m�VT+��XըT�fa	f�VT
J��e�c,��v�%"2�yGuUY�2	b��[�\+J�+b�ڣ��ff@�+�#��$%]�ci��k*��쬬�#���fy�d"�x������Iem,�غJ�?8˷�m��V<;�ݫD�����Y@,2ݫ7���eB�
�j�-��c�̴c�`���%e
z�k�J��G�Uv2������-[�Y[KO�%'�~q������K��2�
5��]�ޛo��*�myg�����&T+S�?���o��a	Y^1�eKù�c�jV�������[��c7���!+)��V͛����c,��
��S�eeeKG������}zm�Ϛ�|�LF��BP���O���Ǥ�S*Tkz�a+�1���T�VYl5��J�@�LJ<�<�!+5kk?�ulݵ���󕌱j^����:�VRZ2Е�����Ig~X03%a�BR~Q��7��K	�T��T�zڭ|��U&K[����~��B��<���-�?���e��7��������m/J)HG�ౌ
�U�[V��>jfy���Jͭ�6����^��I^�VW�<4h�͛�9YR�����L�a�f�f���a�����B�����X
���#	S�^Z^?2��Z�r�\%b�exJ���{[�oT�
�"eeQc���&�-+*ժ��p�![��t����U�]�Z�6��e��U��l���Tj�*VS���h�zqWkj>ŏ�YV��/O����Oյ�p�k��"<��F	�����o0+����oK����b�mKkkY�|5�j��gO��J�<ڷ	T}7l�f�n���{[t���g׶��~��O$!�d�YiH��рc%eef��BT��R�͝�ͷ}zm��V�p<��ѪA,�oO5>�R�T��	���>��Z$��a1(Zя+7���Lmʵ�Z��ii�g��%eg�n�
�%��u�oK�ץѬ���h��@�৆�j�A��|��8J���K��Ǐ��!	YX�U�H�X�J�<��o������_WX�b`��c�U�"C��˷u}o7XJ�k<�i�+��R�&T
Юb1�++*r�њ=~��&=&���f��bR�|Z�[�LĄ��ߟ�Ѷ���f����j��X�{~�l��w�V���D�"aZԯ��{�%ec�K�ZV��:�$�R���j��Y�
���-Jذ��m��п��ָŽ�+1�կ�&��Z��iie�̄�YW��9@�ka�_5�+�V.�!	V�2ͣS�3���*X�.�l��4�����f����#��u��y��f�
�Fme`�e�	��ʵ�l;�:�V��k�RŝY�����03�>Mc�`B���p�Bj�l���G�ݽ�k��[z�KU�BW�]�����V�mL������|���mٺ=bfV~r��--��0��X�D�Q��¯B����S,Pk�D��M�k*���v�†�ekS2ф�0)��
5�j�)oM�b�涬|�Rյ]��r�DŽ��~�kE�%a+5U��?;����jBVW����mf���mih�2�L���e
�h�U�0�i_̭]�y��e�z��//Ƨ}F��Z4��h���_��ʿ�%VZ<'�~�c���[B��˥������b޽1<�F�<�k�Zx�W�9e�&蔭2~sH��o,��b��M����$�C1-e}z���W�p���h�j�c���JËk7nݻe�u���|�k�Q32�V�`ͫ[U�^�m�z���KF
]�Z���K�ږ����-�w})�BT*��>�_���T��M�k��UUv�B&�O-|��Dʑ�~D�e��k���ib�ń��������iR���_��b�f��B6�at�*��C%]l�Wwc�K[W�z�:>�z��ߢ�i6�ť�NI�D8��&`io^�zޗ[�����ea��D���U�"��p�B�7f<f����=��ֈե���щ�:�3333�"Z���YW�9Y^���ߧ��>Q>Cϊ�����m���[ꖫ��ft�h�ެ�ьf��<�S:�5K6W���%e#����a
�L��ma
�ճkZ��U��v���W�W���r�w�w�V�ZZZ1�~�33�~�n������ih��Dž�G�~k+*�`�F3+	XMm,ٲ���V�7u���)r����eeZ��aǏL��1#���g�*�ٱ�י7�v0�`��V�%�Ǖ����[D*T���
z�J[��>39�%ZJ�ŋF1�'p��ӹ�ސ�݄�m�x�߽�!�m-��C��I�f%���(V�3?�J�j��DŽ
���O�0&�%N1��b����ⰂA�UW���bí�zm�֟� y�S�g��b���U������n��?���R�Z1wұ��>I��z�U���U{���5e@+孋f`@Ʃ�~3	����fʯHJ�1�c�̏�s�yϒ�IeWx��C���ZZXO�Vz/3�kZ*~-.X���$��6�0�P��G��s#��_>jf'��C��~X��ϒaR������L��XA�)ZV��<Y�q1���LJ����!J�ń̙�?� fF?DE����_8��*R�2ť�3x@�i����[R��'�z�fgO�W���s�	H�c�"F=ߢ1��+(�1�c��<־-TxL�*
�[F<{�?6���kO���&|�`o*W�mr��K���Ǚ�:�<ޒ���ǻ�7�kS���9�X�o^�^�X�iɥiO6/а�fg	���+iu��V��+��?��a|<~!*�~������e�8BI��oV����G��+/��K]/�3�����{������Kv�c��NOs���c�7�ُ�5W�k*���Y�'�ֿ��7b&?G��8J���&`VR���k�1�fa�&��Գ��h��a�31�,��������{��o�˱�z"V`	�ih����V��K~��c���e���NV����úYK���1�H}���3XǤ��U��x� FZ1�!�q��Gx�E��;��6]�5N2��ۻ�M�:�1�3?�����y������XB1��x���f����n�'�����H>��/���o��7f��ݛ���Cs����eѫ��c323�ww�M>�w���n���G�b����]���d;���7_��={l�v�-��?8B���u[o����z��?���������M�h�x����1����+! 0@P1`"AQpa�2R���?���G��p�}03.��#��<�.:�j�|�|1�����q�?���$�&�R�dnȞ��윾!�
(�����}��[һ���X�u�_()��y����2���kDž����
Q<i#rx#�����O;s�{VS��-��&N_��͠jjhOǷ8ɴCP�(]���E!�Nم;Q�l)�؍��'
h��n&0:�5[���f�Т<XF��)��-߁�4
�M�E�S�M����Z
�Ʋ�L%�x�G�Ѯ����xC�@�)�S��hQ���� (�{'죁��ڍY�,z6Ӡ���6�j�r��#��#���(��SF�x�uT\�Ł��j����N,<4'
\̜n�j�$"�_XJ?�2��M��)��SQ��L	ќ�B|�xQ�ɧu�?Rr���
u��fo�1a=��G��$�Q�5���_�&^���iƫ�B��=�„u�17,��4^�t�(�F��l������h=
,��P�MZ��#��E�g��s�X�4��5jES��Nĩ]^˨�	_�@���5Iޅ9%>7���k'<�.��������4_H&�*xSG�B�(p��%�d&�P��eJ�*(��	�d
:옡Yz��h@��/��_!�>���H��p�)A�Q��O	<P���B����C��d���'�G!Q`�5Т�I�tE��6��� �M�鯊���gH�)A2s��>���]!t�?dz�
�H܄����N��kc(�%�5��t�:��A=���ؚ����k�R4���}h�8��T(Q�3���Dž{��}F���m��
\|X��Q�xC�O�Q��;o�	�jNv���XQL��#���Q_(J-叨�J�n˨�H�3����Q=�=�E�һ���#�32i�뤸SĞY�}�*)���J��e�bSϏ�}��;�=h���+���dz�?W鹶�:�=>�b��_�cI�����themes/images/olav-ahrens-rotne-1087667-unsplash.jpg000064400000160335151213255660016055 0ustar00���JFIF��C		#,%!*!&4'*./121%6:60:,010��C		
0  00000000000000000000000000000000000000000000000000���8�������IۘS@��P((%@P�h(�@@@))�


UPJ)@���(@@ X�@!  �����(P
@BP
P@(-�Ph!T@� �E� ��@f-
@
hPP�@B()EP
P
*@P((���B@B@��  �B1hR�@����ABTPR��(
((� @Qr� ��A��)A@(JPR���)B
E

PP
� ���������R
j�(��@)B����AJP��
(�� @
 �B$��FA !!2f�

PPj���PPR�Z�)B

QB�P
�
 (,��AX����� 15B���V�P����)ABh������@� @� �H"b��B@���8Pj������(J
h��PP
P
PT@
 
�����A2"d �
((4J�)@(�JM ��h�T�P4��@� ��2� !�@���D@�)J
h����)@(JR����(M� PR�QT�P @�!%$��rd�B�����)@�Hց@A@)�Z)M�Jh@���	D A��@P! ! !f \�2@@nE)E@�


MP)M%-R��� 
)A�D"��̣ �@��ʨ( B��(�@(4
T�4*��@B ���
hUJ*�FW&Hd���2d��E�(2"�Xn�PPP
	Z)��AAMU�E4T�M(@B@� %Z�����(0C&IXd��B(�C �",UȠ%)��*
5Z((%()�F�U4PhD �

P+E4il��!�!�DXBX!�H@d�j�AMP�BS@��E:%)JQZ(�hѠR�$�U(( �

PPPPA A�"��2Bb.HB$$�$�*�M@��Sf�&�h�Jh��)@$����h��(�@@� D!	 `2@d�I.Hd�A" 2@bQ��)AS@ѢցM٤T()J PZ��4R�@ ��(()U� 2!�XC$�FHdɓ$��L�$N�)SE5T�)�h�
U4
�)@- R�)�h��d�
S@�, ��d@���BV ����\2d�r�2B��j�4
i5T�MIMU)J�MR��@�@U���((
HB(�C �S2�s�!�>���H2�4R�JR��*h��h�(  	KV�
h��


�s��3��q�q����3����=3߄X
R���"~��=��/����/�ϧ��9Y � TB&V�d��1����yz$�b��//����T�SE4hU(4E7Z6s��s���E^��ܽw6�BV�P
j,[i`C$�E�%cQ@)�7��;�;���n���q�'��/�ϧ���|z��� G�vlѢ�AA*/�p�pO�8~���'�������5�\���~3���}=g����*��{ݞ��$��<����t�*��/�$��^���u4h�l٪�( )J����I�ƫ&����A�1 Q��:}Ι�GLPR�d�RP����P@,}�?��8}.�]�t���ۗ.]1׏=����/7���=�2�� U��%-�ײ���~7��W����>���=j���矧���ӌ<�_̼��U/�I�&�_;x�3z/e}��y��;�>��~s�׳���~�/O-������)�f�)AA��~G�_��Z�,�&^Gd��۟��s�ʗ�����\����d�<q�;P����QKZ$p_M~_:�m�������m����/�����~��O�����5�;���v_1��2�ɚ���_�u��}����F7�=p��k���?�/��?��ߒ}F�f���O������<�4�Rqϥ�oܱ�f�'��?8uή��������?�ţF�h�M.���M(<��]>d|�k�2�=����~ƦANQ���_���~ާ�.�rP+�\���z�M~ˮ?g�����.�����rPPe!���"��X�t~z_�|�����F5�]�G�=��?Sg�?���
<q�3��_��R=g�ZA__Y�?.k��ǣ�o��͛�Q��~����5�d쟿�~�}7g�p�\���r���x�ϭ��G����_���yl�H�`��W����F�F�ƪ��E)�g9~Noȏ�W���n|�^L߹�A�~��].������{s��\��ȿ�xu��.W��۟�]s�7�������c\k��N��wן���+�_����k̟G�x�f_�s�Y~
��v_���Y���Z|8�H��Oi�3Z�|J�Y��$�9�S������/�~._�9����'_�:��_����\�c���=8���g�_�=�<���d�|�Í�O�|�4h٢�)M)�F�K��7������g�o�?_�=���/�O/o�-O����s��'�e~��)��i��	<�׳�u��t�b2��'3i��x�VODYyW:��L�Z��8��\L~�/�B���Ou�a~A�:��U}�g���K��ʞ�f�ϣ_+/�/\��Ӎ���^��x�fn��סw'��8��s)�ھS�~}�����=)�F���h����l��t�mç�̝ӽh��\~��G�����q�+�dY���?���p��ξ�xc���Ծv|ZϢϟ�)�z����3��]���������v���>Q���=3_~_�Ϸ:��5�l�˶~A���?=es2~;/�]|^O�w����k�Dr^)�WJ풼�zW���:��O�]~�ؓ�<�u�����7u�i�~�4h��Ѣ���_����{����g�翗�`{#��2z%�
��#99�iz�C�ϥzG��+�^�¹��1��j{sz̏)���"�~��S�]1��.}QZ�y�un%�f�zr�7o]%%��*~}����GH�X�l;�s���q�e����rNV}v�<h�zS�ә2�:w9/�6�kּ�����o�;�s�ϳ�	|)�?g�.��lݼ�ˍr�9���\z���nטW�#���v�����>���\��FoԽeɤ�E���"��N�t�d}�k۹�>\}s�3��
���*����	���u<v~�:���=��:'��^-��^c��ӏ�1�s���j�-���$��ߝs�~�Է���3���问>���Y���]�ײϘ}3�o�4�~��>tw�+�8'˯�g��Կi;��O<}���.|8סq-3Z97�#U�1/�_
ǡ}���љ�/��ҹ�nN��oX��4�/J���>�_(��poS�y�|���֬��Ӷ����Y��K��ǔ�|�O�g�^�yy�d㩔����՜�����{D���~s��澥��x�D�ì|t����v��_�5���ޛ�|#�NG8����l���θ���}3~"�O�/�_)>ĽL�,�_a�ms�u6d�D;F��0S�mz�6���pZs�����}#�|���y��w8G�S�r9�MY������2�'�S�'ƲW�q��(��x���ĵ�a]e��^i���j'�4��%�F�W�,՗Q�}���>u���|��֌K�[6��sl*�~�􎤷��A:���@m%�I���A��D�l��J�h�Jh��i�� )!HS+�P\����l�`�:W[2iF�%��'C�����>^7��z��q~^w�,�}+>���S�n�\�C�/#�j�vh�.��d��C�RTv>�N~޼�d��#$Hq)��F�PSE�JPh�4

(R�

R��6h�0d��B��N�E���c�K�<2��E������YE�d�7�Ѻ�n2pJE�:��15N�p;Y�g��/Mg�v����G�sJ�מ7��k0�N0�R�(4��(4!�J

��A�gJ�M�����1Y!�S`���/���ϥ:��7�׍}I2�)��l�v��
@ͽ��y��R�
�;yF�t=��W����ϝs>���>��5�s�4����/8��:�>���K�}
�@-	��������S@��JR�R��2�ٳ���t;�㪎f�<R��y}mg+��'���_;��?@��O���<�#��>����|��u�Er8G�/v���q9�<Q��߮kӗ��͝k�=�s���s�̟��𜌒�'c�OA�6`�t���o|�z�e�w"�	����P���)�F�)SgB�t�K𱿭��.r`�-t;G�8���:!9�~raxG�}w?���sߑR��&���zcԟ:���6�ۮ���S�yL�ڳ��_�/;6|L��g^�Խ��ǀ�����35�:E_�g�,�h�e2w�Rj��w��ZR� ��g��|��;.h)R�h�����
��ٲ���}uR�e����Ƹ.�E�>�����O��򙯵��~���_����k>���9��<�y�1LԜ�ԝ넴�U?Oۜ��:8.Su�M͗�ƾ2�_\���/�})�πt=2�<�_�/�~'N^g+���p��6{�����ϯ#�w�Ґ-b9���`n���R%�j�J
R��6
B���4��_/��zu:�7�u��$_V����f����^PK^�j%���e�Lz	[HS�.,�z��И�͛�c��N�~��>Q�/�^2�9D_��\0/ԿD�$p)�>u}�/�ϛ�~�t���\�~�ןN���/S��=�����d��ST4P��4PSf�:|x�̚=u�.Ω2�Px��<��^�tOmnߑ�5��\c�f��^������exYꪺ:i<���<����Nr�Χ�ξuL�LK��"��F��cHv)�trOi�#�q<��;V�����?C۟�R&H� >|P
j��@h�h�����4hٳQ��gv<Ǣ���0����痮�$f���^�{,���u�3�y�^��٣�Vh��M<�^G�/��sX���ϲd�h�h�h�>��\�K̇K4f\�����!�pi5^��y+֞z㋭�٤���}]g�t�L!��2|��J� SE4R�6l�M)�gC3W,;׌�ڴt;��eu�3�s^��OA�y��OI����j2q�'BFO�ż,b\��{u�Sޟ�:� $|V�-�|<�u%�
�2d�!��kf��j�)N��}=g��L�z���q��迮���2H�C�E
*S@�Ѣ�����F�P�Ы���+�7]���;�!�4x�9����Ps9�e��O)�^�5��Q���zk�]y�2d��Ҽ��\�M!�@�t :Y2���=:�e_M�#�����Y���1\c�����`ɐ�sVi
SF�E!J+F����(4hѳ��V���(!��l����8�4u4n�y�����0xc4�4bUf�����3�7����"d��p^Q旔C����Ԇ�C���d��:��K���6��{8׎�i���S�?��8�0d����)����S@
Ph�*SU�fXS@�
SfN��4��N%�`�f6z�G��C&@1,)�1�Gk?]�?B�ō2C$2S&̙�d��2����yːg#&P�2���/�0u�[��+ֹ'#����D2p�s0|<���)H
j�4R@�(@�HѪ�)�4R2�d�!Yt�<����Hf!I��{;��OEl蔦V�@l�Ed���35�#%Ĺ2C9�ʏ�e�q6�O<���F|&��v}~��\.L�<s4�����
Mrh��*@h��)
�)H�!@(4R���\�)k@�Z)���
R��F�2l�9x/#�ޑ�c�>k��c�.���t3Y;��j}-g�2yY����R�
�RAHP
,(�)

��)�

��� ��,v^����_E��J�s<��\���˳���'��}
cf��>���M�@�J� �6d�R�.BR� 4hh�@�
 )J@)��)�ζb\V�ּYs^t8����8��hݜȻO~�9f�,�y%�K�6~��!M���F�)�d@@PS%( ��hf2h�H����
B֊CG�:��Y�xE=�O<xe�Y�`��eĺ���+���
K;ճԞ����_{��Xi?U۞������4�P�@��!JPh������
��,(4CÍ-���B�1�g�^���R<��9�l@hɵ�"d�tOE�;�<k�O*��}����zj~��:��4Z�JPh�҂��AH
Z�� ��h�ZB���4)@�@���%Is����RI�e8/5�g�ơ��Ά&W���9g����k��K��6e��=�����h���SA����!!AB���$�E!��F�FD@�� 4h�(�G�_:�-v��eru6J�q[�$�N�wA���"4-��;�M�h�M����]���^	��iAME-h4B�)�� !M���3*�$4
���(���L�`)�h�!�*�&�GT�9������S�d����k�f2��Cʼ%�.SU�N�kq���H��=[�4�@�JSF�@� (*h�i��™ȈPB�X��!KPh�A��\�f�u#�^�jG�zLe�h�E���T!�9�<��^ǖ����$4��e|�9a��i���l@ѣU�
B�A��  ��@)hA �P
h�`����7\����^ɪ�d踌�+����:��OE���c'3��$���<��v��N2�λ;'�:jj�SK��)�

$J�  $J�(
X P@
()�؍ɢ�̚M�NFM�5T�R�6t6*���B�����^`�l�4y���mR��Bi`4Tѐ)A��ѐ2�h(��@R�3��%L�)����ɺ� �Ne��2s;'�j&롩2�s*1;�"��SD	��
�@��!��X�!T�PJ@@
��4PRB�!ADCE!�@�"6Z�8�!�$0SE!n��y�W�h�Ե���L���y�)A�P��(�) ��P� )Hj�� !��@�h��:V�q�2PPC&HB��L���(!�b�ك�Ԧ�9٠��(�M
d$)(�@��H�� (�4
B�( 4�*�))�K����8,�@n�Pi�������J*@����PP  ���A@� J	@XF�P���C%!J
q0fTh���ZR�E�`��(J)@)�� X��)A@ B��� )
� ���M�3)�C&��A
2`��B�@�����f�S@��ESFMHJ

@ ��()D��@���$�$@d��-�4d)�Pt-�)�D4
hU()A��AAL��&�@�%)`()Bi)��J
��XB P@��!�$��@@@ PHB�M�)�Ph@��+E)�� Jh��A�(�)��2���X)	B�2B �!�H��)�C$  =�hh�(�A4��B�����0��)
@@@�(2R�4
�V, �2 C$���@e@!�d��ѳE�MPR�BAMU4h���HB(!Q�

Pdl��d�B(�Q�@BD2@@C$ 2A�B���h����()�(l@��@@!AdR��H@
h�H@B9�p�Hd�!BA��H��DBE�2B� ܲ��M�AP�
j���)J!M)�䀠�AAL�E!J!L��!��2EʈP@@ B�L�!��P���2B@��
�Ji(-hR�)(����(�()J(�%���!�� �Zd�!�&A�d�@	&H���J@�-gh4��F�E()R���2!J
A
� 6R2d��ѐd#��,!@�F@!��!� 2fL�ɐ 2�j
*F�T��@��)2h��@��C&�2
h��!�# ��
X@2 2 �d��!��C&H$@�54h�ҥ(A
�@������)�C1*���eK�L��H�H@�)�A�P A>��j���@)�%�@P@
��h���!��2�( 2� ��!�d�!@f@2�r@@Bf�hST!�PR��D4��(�@ R��3��@ !�Q�&L��  !����@d��!�C ���>��)�

P
h
*��)��+J��2!�
�P
P
(A �!��¦H��$dA !BD2R�!C �!@�K@P



PM
R��))�$ R���()��ђX����L�!�
@
HH��ɀ� �H  >�@�
PR�
@PR�����HP!AJPh�)J���A`L�@�d���B�P@	!���2B {Ґ�P
4�(���
S@�
S&�)� ��� �2Pf2
�ɒ)X  2B �XJ
���

(���AJS@B�PH��Bd��$@d���` !!���{��"�
��� @��4
AH(()@ d��� ("����ʡר ��R�E ��U()@�!
2)L�!(!
����@��
P!��P2)@MP�(
 �2@�"�!@!(!�@H���� !=@P�h( PA@(-PD`( ���( B�H!.@@@v��( (��@��@(d�@ f \��@@��
JT�@(
Pd�@H1V@@ �A@@��(�P
P@@@��DP@d�@ ��;!1 AQa"2q0�@BPR`�3Sb�#p����C���?��-S�m�$�
�򆞴�J����e�T��R���\5J��Xxj�d����-7ʜ9�F���������/��WLm��t*�ڙ�T,G��X�z�Ԝ��F>̧Խψ٘�^�>����e��|F�2����S��}&.�'�Ya,��Uu��\�sī�N7S}�jpS��"��R��_�R��S��S�S/�)�]��*�\���~<�^*�T)g��J1Si?��bcaץ5j'^�&>zR�)qRl���t-�Z��1�E8�!��<���lp`�n�s�#�F�|�$�?��&���`�(�����Iz/E5��0���Ir���O��JJ.t�G?v�E�u%�2�\���"��i��2æ����XtY�~�]�������`f7����*�ҵ)tϙIU���ӷc��%:#Z.���������N�|Ad�/f�1�SM����1��+�W/qU}Jݹ��c>�Ū�j�Į��P�<�h�̣��1��'���
�O��8ڈ�i���+�|W�N�l^e��J)Š��cU5��=Q���K�iU=�*����Jj|���8�(�t�:c��Se2�-��]2xxk��T��n��Q�I��?�W�1c>h�[��@��US�Z�ĻI#N�����P�Z-��g���Z�X�?��*�R�S����jU�x�1mp�q�20�U�n=�*�_t����僈�p�&#��Ǹ��Zr1��-^]�u��H���U�q�>�v��E��r¢��S�(e8U��x��8�f>����N���Rʱk�EUJ�U��V�ƣŢi߁80�:�X��$[����I���Jp��k�ת#��N��r�*���{#�WUUnZZZYذ���p<%Sב���������i�ƽI��e
%�حR�5��S���-h\?M.�w�Gr;�LS=xkj�e�cUMz�ہbT�f%5��V:^�G�S*���J�v)z���S[[3}Z	��*Ħ�
��V쮻���Or45�j�-vĊ��]t)Ŷ���j��Ĥ�_�k���t�	��f6*�ST��M4�_�1q��s�Xu*j�I�Vv�rxX�
���l���_��0?�x��g���bUC�QnK
��_
���G��z�WC�p�\��Uo�����5�KKJ�����.}���)�Ҋ]J��B�GJ��ƒ@���v�̸�\�Bf��d�{}��10�4�U:���֥	~��
*N�m�[��ʫ��VtV��W�~Sǩ2�u2�ס�k?A)e��?�*e(�R�a�
ɉ�u0���'�$��K�''�|t�jO���4i��
[�_S�C�0�x�6���҇����?�%}Q�%��?Ώ��/��[Ȱ��R�cE��oT[OASKq4�������i=GJ��"��jSE69�TPttd1R�嫙�R��_aR6�rc'��#c�}s��o&�-~�Y$����u�-uPֺ�jMP&�(��bWTJ�]OR�z�ӄ�Y�C僊��R�+�ˣ+
��Ns�obK��A( ��kԆC��ZWJTH�[ݯAS#Nv<=79�Z�*��H�*����uW��^��-nE�K������<l5��q��s�ëj����G�J��V�KԭG��%x�_�zIF7�͡V,�=�����y4/rSCQ�/�UM^Ž\{	"�$Zr*�*k�T�թW����T�.�H檴����ܮ�}
6صǨ���R<r��1b1bĕWvZd���"yhyzo&����12F��lX���&�R�]�����0*{�P4�l�m9�H�塩�yz^�I��	=J`������k��}_BB*�5����B��D4�R�,q�4H�'��ī�C�r%ȱr�X�7)ZnGK���;�H��B�[��MAV�J4��c�ܫ_Q�0�Ƨ�N]K�<JO**�rd��g�!$��	g���HolؖP�EO���GQ.��xi���SM��+����qВٲ��ZiI3���ޱ%V�/E�Ҋ`���\�׫�B����D��E+w%QV�*4ܫm�RS�SO��(��5�
��ly�O�q$w�nU��nR�r&�E,m�e	I��Jk�V�ĿaH�lT��-������*�UH�
Ȧ�qP��S��=��G�d�՚!�r//�B�ԧcr�R�}�QN�Kй��<J���y-���u4�B deK���--�Oʉ����������v!N��3:��T�Ri��i-�iнt/�,D��Ԯe�o^�����\���WS��l��U�a7VŔ���%^rt�L�)�%NE.�K�(��S��<�b��*�u:��Ⱥ��5�Oc}�*�sf����yz�A9U�S%�]�uIP�G�(��WV��u.����u&���Uw1��r.]�[��v�%�(L��B�:�R{gz�kP�|�Z�t��<Ůt�W{��E}�k���O%Ƥ�,�jjK5$�Ywb��r�I�Or{��/'-8#������wf����^��	f��\��s��Q��ĦO�}1�t}K�q�
�jQb��"�92�U\��&P�|��{�����pI̸���uOd�MMHy�]�e��F�z�E�Qw6�.�"K���M+d��ɥ��,Ԛ���s)n���P��Md�Њ�O9��y�7R*�C�C�C�C�I}x��D"�B-]WB�еt-]WB�еt-]Dv!t-]WB�Ѕ�(�2�ЅЅЎ�A�;�x��CUR:��$�&�u[�6-R���}�6��e��W9�;�zCd��r��&�	Ò�j|����'�Q)�Q3���$p@�\ŮߌAA�ZZZ7J�,JEfZ[�KR����3�[%��#N�����:������ʽ�z�e$��x���:�YX��̒��œp^]�ĮU4�*�g�I(���M=�UԩEx��˂�j���0��J�T�%��&��Pi�e�PC ���je�A���`�]EJ<�
��[MZ�8���&7.C�T�����9I$�=8)�i�E=Kg��@�E�i��<Mr��*���.Cʗ�Eu��|tW���]kܿ��u0�Ui�Fphi�h2ʧȻ��
��,�b�/Q��
����s�"V��E����v��XFVU��-KWS���'��r�C�M
�Nxj���67�<'�:�!���ȃs|�T�R8�(�
VK$�����丸��u&�������/�}
�"���"�DWN��
��-pAM'Ԃ��V�ԫ�2%(���Z�H--,,E����T��D�1-p�5|Kr���*��'�(6���P<�-ԋ�˜�ȍB44Bcy\:�.Eƅ��\:�jJ�
;�V����6ˡ���b���dy�Gk�߆H��J�˖p.9�p�
�O�/%�$��f�ߎ��0K�I�H�U�f�|p@��A�P@��YNR7���� � ���㟓+/���c₞4�¸c�I'�?'ָ��H���������1Ʋ��䡘zTI$�\USdA��qZA��L]���Nߠ'�>8�������������������ZZZFl� ����I4�(���v�tS�eAiii���#�#��M��Q?���c9$������������I$�I$���Qs��evkR�')�Q$��%��ٺ˳�����3؞�����9$b�ez���C^Du�s���e�݋�U��M:�7͋)�{����wu���I�Q�甍��5��Bxc�����.=�嗹�m����ܹ��$��,�^�79��S�|��3��84�4���UY��O�>D�G~��(����d����_q�c��|��O˟�2����/!1AQaq� ��0@`P�����p���?2��sO�0�!B�!B���!	��!O�!B���!B�!B�!	�B�!O�B�G!B	�!O鰄!	���'�!B~��!?�4ř#!?FZTIn�xc�.È��'o/�
�K�y��f�l��TK���iKcM�`?J�{�����&��O�D�*6����M��B�!B�I��/)��yS`jX�#��Y��!B�!B�!B�!B�&���R'�Z���Ǝ��ǀUЫ�����!�r~P���w��ퟪ_��cj3�|���Wӏ�`�}P��^�%�}�.��,ps���~��"���$!B��/"+��qn�z&4^
�c��.��!OЄ�aB�Zt��2��cL�3�m�m��ї��m��#r܏ʏṉU��C˿�=^ �B���������y'|�{H��bя����3R=25��u֮���y.�]��,K�E���Ha�ݻ�q�<�9��C~_࣒�yu�J��s�ZH�[�d˳"�pB�!B�!	����<9�V=.D���w^���1:.���
k��u}�Bgd����ǝ+'�Z�g�4�Kt�B�!B�Io�b���u[��NU��NE�͕�/�/�\�Eue�:8��G�{Q���-IU�>��9�Y��u=�?5	����a�t�K/k)�?��൪d��|ݕ(�וjȦ�s�lv)?��I#?f��u��7
���rYC���~g^8�yo�,�vp���?��%qQ�TQ"�i5�+,s�*H�O�'�ҷl3��3�c��D�M�B�x{���	6��
�M䓛}X�>���CDX|	�<l��1��>rU���1��Eeؘ�-�����kSi��$�CgU��HrEv�qE�'��`�h��b<��U��-5�� ���|��~�\��
�3���)�uS��o��xCڞ��W�r��FP�:��K�/��a���L	��sb��O
�	�T	x�a[c̒z�߃���R�
^W����w|
���b�VvNNwؕ��n5��ɰ����q�M�.b����'��f��q�5֖U�"i>E�&���U�ځ��~
�b��m,[�ߪM̳h�Co-Ǔd���b��^D^K�dž��al+�5�9D���G���L��=��/�ƉdR�G����4l�E����`[�qgB�m�H�^6��f�����.
�ur9��gy���z^[��l�a���p<~�}��Ƴ�,PN���Г4��x�	ȕ�*��Hq�8'a)��f!1F�K�<N�1���~΍�&U�n��ҷ0m1�������,|����&tE8m�iw��j��Fu�>��[h���}h�f+w,
_G�1i���J��N��9�
��ҕ�ke��P���i��[cE�[�5!��9/F~
����~��e������y�J�+�
�K�kk|��Mj'��d������2�X/��d��2�
�ǵ3)���ш��p-bx����Fs�S���.�^�����v3�t;%�G��_��p�!���$D�#�y�H����G&U��I��t0�`�_�6��!�2N��"ۣ�ܓ��:���H}c�����x4��l��{�|��;E�i��p��؇FXŠ�:���rN��Ʉȏr�y �ޏ	�$33�L&���3�K��Eo0Zk����9De8<�*(�om�j~ř6��w_���5���m]�ԛ�5� ��a�R���1Y�o�KQ�~�O���2��=�M���.Ģ
/~����"��Rϰ�!�p'�`�_�2O��pCd�M�<c�B,����~	Sq��cÊ�?�l)'�.
��t��T�'����Lw
	M̥>3vsv"���C&�q��Ӓ�+k����q�C�WfK�>h~Ӏ[�XC�Qv�2{�*'xF_1
̳��~�zBm��"�e��M���O���B���l���
.�g"@�o�ү�acɴݡ*���df�
@���rW����
���(@CFxB�<#=
�}�}��yG�$l�f/�wq��^�P��ˣ���t�3c<����taV?#���nc[=�x0餾����^��
`I��il"�4^�#a�w�J*�pu�ɂ�UЍ��V��t!�w&��쫳5���_��d��5�����ykD6:Q�Hd�B#������r�#����A��g ��<��_�����f�oHx�ϊ͗�
P�V�^
Oo��~EG
��9~�c�)pm�`IQ������l�l�}�Q��k�|�.�L'~���'��&���ٚCd����]�}	?�/b-n�nd�e�)F�A�w��o�M��^��/=�R�d]��r,,�t��'�L/b���E��!���#n�~Ⱦ_��+l�%o������IL�9a�j�K�4�a{]���|�i,i
W(��z0�$��5�(n���iv�{s�*����xc/(j���(c'�KF3G^�z`����ퟰ�.E\�o�@�/e�ጘ� �e�V��r/#����B^?%x8��NV�#%�^Ƭ���-��"E8��ve��)7_��v"9�"�m�Y��]�9�;���~�r_&Q��"���ro�a-Η�g�<�Y���X���v�}����_
OBl��`{�v#��G.�nlXt�M��X�t噂�X"���)�J��\a��isؗx6�{�7�%�����v��5ݲ<��4�N�{�چI5�V7�F�aFʺ��"���e��"��Lϲ.��&�2�x�r����%�i,�9?>�
{k��W�i��H�>(��)�
���=3a���S����K�ݘ�m~ǃE3j�{ҍ�Wjx��h�3މ�Eu�͹5�T�D��vk�>⾈�>�,p�ljɧ�,��{��t�Q�	�u���d�3Ȥ���|XO;�(�[�o&Ƀ�h,��H�>�9��+p%���Ht�y:g�SqQ>A74n����D����c�ҹ��JC"h6���x\��5��Kl>���*��cM��%b)kaw�)ӧ�o�ˋ�/?cEćL-�vydv�����-wF�<Cg����t$��C�֗>��0a������_z,�:DtA�<G��#�+l6^1.	|��ĭ��苤GH���<�#�":Dt���"ZL���I��&��7*R��5yod��z.�{Ao��~��b���,x+f�ORCw�ůd�Yz���6%w��6�d-��O��;73��Ci2Τ�w�c:7�<�A.���l�I�CHC
޾��Y�a3�^�o|"�`��.��eV�>r��#'x��&f�@���	�!Є&��c}O��ד�=4��R����W�\��E���*D�虛�!l��>��e��'�y'K7<ļ&�W���=��E�<_C���k�"n�C'凉a��/�MaDa��=�;�7�/�Wg��b=�ve�M١�u|�0�*��
'�8�iItpY�;4U4"r�2�zcp>�x!���
��n�>O����p�Q�F//�?�}3-��1M���/G�Th"�_�Ęt�:W�"h�}���{���FHz�L
���zP��zR��w�C��'�Є!BRl����B}9!�H~Iپm�4n29�]
�NM�{��d$ņD�y7O'���Ӎ0�#�*s#�.�Ƙ$�D$�!�6�96�yij�X���y(��"N�:L������A��Q-.�_�'�<ш��w�����}�V�r9�(����p|�v�0Q���'�&�D7zeh�%[��Wz�����k(˩6��	�0yc{���0p$3/M�h�r�Hd`�J�3F쏓Jt4m��7בKq	DП�r���x<�\��9
2��En�F�|^
s��g�zi�x�c��KqND�V�EЂ�d;�O�	Ս)�{�$n����<a"REه��{��
����m
���!+#c^��Q������'���!��'�_fDIr$�x��_��{��$9=F> �!%��ăS�����B{�K��O���<�xGN;+�&k�R]��.����7�Kdkлz1M��
��A^![,��])~�?�CN�H��9��KFBnq�w��?��{�؃Oa��a�[B}�2�!�[��Ɠ��#��y]f���<C>������\�g��Uv6[}���hep���2����w쯜�M�a��v�(�����H\�H�B	h{��uCZ��'<�L�4`Ĭ����N�j����/G�-:j�F��~���U�7��cwK��E��uI�
�/��'�zY19Mܿ'�M�4�*�D�G�/�|G���j�شDl��M&KNF=FNtx6?����6y��x�W\��>w�����y�(B�!>���L��g���,]�6���{Ҋ2�#��>���K�/Ѓ}z2�be3��J<
���m�E���O1�N!����'Ц��I��z#bh{A�a&xB�����x}hC���D�����K�ߦ��ߢ�E.�I��ޯNE����<�T�!���.�-BP����5i��i�`F��o�G�����Y�l����b.��F�aB������X��g�B��Ik	�h�t�N�N�Z�#W�&���"�L�u����ir�+I��x��H�\�T�]itR���(�&��a4$,~�+�O�
�B���?����r%�y>��-����J��K�t���)K�/�JR��)~�JQ���e����(�M��e�
M����cd��t���;�!�;��4^��p��O&�
��!���5�0U�
�
�~cⱣ>���ZF�dǡ���Oa����%�N���n����N�ó�n6Vz<�%/��y'lo�+�z�L�:�D����S��s��94�u�~w�/�2��ǣ�1��Ńf)p�A�
o,������%kɡ:"�%z��ǧfkΫ���7���$�>����д1.�#�=�W��0S�ܞ�pK�(�z!Y��z�8b�����Ɖ�g����F�p\8<NŎ20�p^ё��Z��L=&�q��D&�L�Of���,�>N�:�I�N�<��e��1귃q�_"�����ZM��;��oH!��{%>�
���Y�ꚡ�9��^O�E�	h�Bh�,k�<�7&�0��C�Ѿc��U���j����&�nS�%���W��Q�Bi>��O�t�Ť8�m�\|�OD�m�)A�o�wE����Ƨ���]�uo�g��� ������K���G����7�){)N#�����K�ʗ�-��W��w��S��.!1AQaq ��0@���P`����p����?!�򃰿��D!>��!	��B�u	�����!B��(B�!B��Մ!Bz!B�!	�aB�!B�!O��!B�!B�!B}��!B�!B�'�!B�@!B�!OD!B��B�!B�'��!=P�!B�@b�HOT'��!=�!B}�!=p�g��!B�'�XB�!B}��N��y	��!BH�!=s��B���!B�СB�!	�!	�!B�!B	}�!B�!>�!	���xB�!B�!OX�!=S�!/��!B�!B�!B�!B�!>��!=@�!B�!Bz�B�!B��1B�!B�!B�!O���8B�!B�!B�'�OT!v�!B�'CHپ
)��B� �!Bu�!B�!B�D!B�!O�B��X�p�'h��'���e6�aN�w!^��X��,�B��	�.u��8�x�i�'ِ�U���z�!B�B�!2!B�۽��w2,�e�0�0�7biZ�g��J���v~B�!�(����E�S��d%��)%�yFM���m����c�eӱ�j"JSG��B�!����7喇�NJl!>�B�v���?�QD�+�$#+���M��A&��O���x%p'VT|zU�_AP�u6
�#�r@r"�Wm��=�͐�!
+_ɧ�Dَ�E�L�0Z=���O���1N�m�7Za�_P]D!B���U�����|��)��$���̻�.��`U��M�|�!B�-��L��D$z4��!	Ԅ!>�HB���
���AO�=�S�!�%�\W9�cza�>��t�MT�O-O�M�c�ޟ��x��ҕ����'y��?���{2{J��"m5��
�3)��Z3npb�J;:f^Ry�l��.��C\�3ʦA�>�+S�g'G�kn��Po�
s���pƻU6�ƻ'�6������苫gtY�{�݌��?�;vFՙ�Ц��[�j����p/m4e��ߑ�o'����ʝG##�,��52�ud�ȩ�m�0�r�q�#�U���#i���){G���������N��cF�Ȥ����e�Yez��H�I�G���8'�����cb���ض寏����7�t�Ë�#b�&ϸ�;3�~��N�r��p�L�*�niӗ�%�E֞P����Ec�R(>6�t\��Fi��f�r�`��)XV�H]���#�:�0
jZaq�:�_�"���w��&W"���� �t�Ж�*�K��<�����؂������*o�Oaw%�ё�~;_��$*�?��q�V��Ύ6�\!�+e<$�F��	���!B�!B�jED-����)����@)5�x
Ë�R�=M��=�pii�C~�R�'$!UU��*T��;	��S���6g����tUfJ\�3�V�7�ÏTl�]���X1��Ȝ)�e�,����D��(�!XNF�z-8�i���I���:~�6���ߤ��{�`]Q���X�}��T�6��$�
����X��ڤN�V�{�V�}���
�꺍$z��_L����x��sx���BF(��!��)�\ �Dk��̵1�Y�O3�R�<���E���pN��14�1��FK-�z�?`D���3
3߱�txR��O!:	�-?�0�����h��QJV�æ�Z+�$�:�E{�`�F�B�z�.3�?'{��^�L�.�****/R�(
��� y��+�M�_�(R�)/�Z��6�c�L\F��mC��\n�����26���|��#F8&����l��5ȫ4&
�ON��i���J���91�RJU����B!��nRd-X��V�D,'�?H�BK"<��Z�c�wqǁ�_
:F~�u)�k�Ɲ�?dcJ�E�j�����R�\�X�2J=��j�����	gk���K�8no���G���YTT�'�!�{�x$\��e;����Q>���?�]�0м���O��`Gc�2j���O��a�Y�Q�,_�Mn�Q��v��7�[,�ɝBB�,��hgwkKy;���1a��j�ajV��g	DZ�1�B��Pm�l찱F�`�e�D�)/q���d��t�D�$��u�HM����X����51��J�&���t<��b�b|���fFFB�!BШ�����$�5���D*W�@P�8Xk�w���D��B�M��2JL�u�UVN`4�H�˓a��7��vK��Z���|�UCE��ێ4�� ǫ�`���2�G�Z
&�����ݹ>+�a5������ ��=���8$�nE�gx���q��,L�OA�UWJ���ߴU�D��p����������,�c��X��O]��q��������ȟ�cSɲ�	��z�4���\��s�&������~��#����1WEM��W��4E������S�Q�&
\6���$�?	�*���U+�m[u�e�Fv�%9]�_F�i�����I}�4u<���n�.G��^�*��5��;=j�N�FkQ�[�<:c'ur%.`�N7e���^�(��BѾ([4T�k�&���J]���W���3Mb����!B�!B�!#�{�K��'�Me��v����Y4hY��u|�RU7r�1���![��j&���]�nƣ��*TB��&2#ۺ�q���B�*�o*���
8���G��;�weKNڑU~Jۮ�+-ǘT�x&{�8�]�4Ю�A�3{qge-ۙ�3X�a��#N=YZ&���6��R(�5V���J���5h�QxdJ;ȉ���Ÿ�D��{
�头mcV{5�Ǿ�յnµV�����MʩTҴX��\0�<�l�����VM��:��^y�nmFN��W�u8�����RLRى5�xo$�0ޘ?!�H݇q5���j{�ξDv?���! :t�|
������Wik��ct�;�f�!n�΂U'�}'Xk^Ft��D�o;&�T�d���B&���F�Oø�_�
N�AW�E���.�ч(���rs�Q��#K���Z�2�{}�O��6�*�=R�Zw�
��Tw�ܝ�8����n�g��"�a��4��}�H:Q
Sh߿c3S����5��CTׄB�挳��jj�ج��ĵ��� �~�k�Gw�$�Nw�u���	o�p��K#��n��Y�>o�����ar��@q�U�P��!���4	��A]7�՘���nh!�(�]���9u�aL��M���n3�Q񕩹���8�#�舘d�q�z��ʿ#\E�^�w�Z}���tG���S]���]��K�"��ѹ��T��q�p�����'t���>CȒXyH��H&��2��?a�/�������+I�����Z�C����z�c��2Ԇ=�������!�J���R��o�܎F*���Q��EKU[�QvTj1���̭�`��3�R�2����&ʧLMWȧ(wS=��`5{6�H�����u#`�'�cd�4	�Ƣ��	�"s=
�N9LI5���l����tI�,B?R�MA�
�,�l:k؅S��t(�.Ŗ�%\�!Gq��E���a�x'+R�8a���'���f�����m��5�N'�VG��(O��!6P��م�8pDP��g?���A�o����~YЊBHK�y�\�j|��!U��gA��e�X�n��7ai,+�hsʿ���P=�-)�DD%�o4��nD��l#W�B���tH
�K�#&�qa-�3+J������c����3�$��63�����h��ߟ�i�^O�8�}�tR%o������께����6�lȌ��1p\���gwm6s�u�Z�$�Dk���U������fJ�N�9��SN6��oO�{�hܽ�v����v��\{	=I"���]ͨ�BM�h�[��%��4-z9�w6��G��F�o����}�J�	l6Y�6���y����p)^^MZ�#��{��\��~-�5���F{��'��1�O�HG��i�勀sJ��a�g��.�����&�Kza��8o��}�y����ޙ�o&{7���j=�h��=�<���v.�Aa�;f\Z$YK�T�""��"E�"��8FKy7y&�t��f�����4o����G%����1jS��߹��r�B���լuu[�`���)�k�3"ί��V��v�ɶ��Y��p�B��Z�|ڏ
�������{���rJZAn���v�g��WF�]V��V���=�:��|~�]���$b�^i~82�=՛R6�vX2�F�#+�(]HެJ�<�*|!�C@Q�­d�2s�{6$�k��ݝ{N.(��O{��O-�Ef�b���w�"U5�h'
�[�f4��-�My�N��f�7�;g��.Ѷ�bM���K_p�m�����O�E5�o�w���K%���ٔ���y�m�O���wzc؇V���Yr`xO�F7�*$m5)�b���i�X?8����|1�Z�j�!���|~Fc�����n�A�C�����ݬ<�}�F��WDĊ&��i�q4�"�[��k���FOa�l'|���b�Y7,Cښ��=��!͆�]J�H�}#�CNA�E�=�ɛ���Ս|��၇���8L�� �22�h����x𑚺���6<�_&��$�I%�tm�7�eG�D���4zq��u�:�ϓ�Z��7�`Mm\v��Sk#t��1��:�w��_!1�
��w�9��>��BԹ̆W��Q�x��a4[k�M�d9�,�C�u<�a)��n�X�)�l�<��9���N(��K�9�F�����V���E��9*�>6�gmC\C���,��zYoBR&n.�-���V�)�O�LL�`�߆J2��;��:L�ƫ΅U�0���ĉ�|�I���݉�s�[w��Ί��̮BٟjZ��N����F�ȋtk���Z�\�5���G��E)��/��$��Kܽ�Ҕ��80E�_s�+䥻tq))]�<����	�G����|�#�;~��nS`�gdvGlvBF�j��)���������r��`��v����O�'�N�����8�� �>Q�W����bM�x�8⥃^��Y�gaX�Y-5���b�,
3mѭ���+�K|��<5��Ȓ��
������bl~�um�g��"��3M���lF�w�H��Z���Xvcs�m�7䆱�,�����s�+��]�s�W1�ǡzׁ"�A��&o�Y�dO��R�\�5t�����g`j��i�Gf��Fu��ܴ����d�ߝ��~�
�1�	5�lJy+�	]D�	4�-z��J�b��^�+j�F-q���n��MǢ�QW���w-lA��տ�Y�LX�'a��剘��<�vM
��=���~�������МF�(lYeYBv��Q\	��q��P����[
�
arޤ
�0C�&�&�~u�
���=��qL�ǐ-��.�
�\ܱ%+�6��$�쐝��0��IM(�m}�,!�~l��W����Jp�m69��!m����m���2�.|�p��R��!��J����+/�['�|�Z�џ�#&ӂ@u��B�Z��,�A�����DiF��)R�E�x'���=Sн8"0c�
_Jl�/ӝrg�b�!	�s!�e� ��Q�yy���k�ߠ��v�g�B�7�4��0�W�Y���%c��<��FpX�ૈSax��$bz�;���g2{��D�<�6���_s`�"	����c������G��/�Infkks�ߐ�}�g$���k|1�S&̪���#5�E��;]Uw�+L�;e�G��[�S�ę_!���u<�h�Dz44�͌��a��F*���P�EhPmǂ�Qa�Ȣ�R�KO#�R�pUv�9���x���O��R��m4�3���!������z����
]�˓���L�V��
H!D�� �fB�>�Q��xG���OVlj��:]���ܕ���->��}Ȫ���+1ml��;��Ӆ�.���ЦV��O�:ߠ.[Lu�x��Nc�4z���kF�H$��C3�$gM8���S
Y����f���v��_p*ql�����E%冉W��#����sI�o��	U6xƚj*[�F(�g��omɔm����cDh�'�S)��*^;b2pI���;0G��jx#l\ӻ��4�{�)bԺ���=�/T�	"]I�KU]"Z�N�O
�>�X�H��ç7�]�a&[�����Ɉ37^l�L��O"��|f_�4ld�I���������G5�خu�#z��"l�4���5����К�Ɛkp�z:��2�WI�D��L� ��A��
MB��R|���V�l^E|�b�Ӧ�(�o�GW.<��jX���~�_e.�+�$]5VB��7+��Y�
���,��Ŋ��k��
�
��C)�ٍ����7�>��ɏ�r�F{�̘��PL�N��;Gc�ɫ����^��.���H0`��Lz}��������O�.�?��"�_N��հ֙�趄'�V�,`-��b����;a��[Fm�>��Y�l�O�˗�F�ciVo���2��=߃�GM*�Bt��F���[�uԄ�jVLl�/�Yu5�&�|�#�t	�5##(j|_��.�c��<`�<rD��ŷ�~�U���
�y����	����v����&�L�,7
�[w�H�f�v��(GK�����66���h���yv�BEs��G�X;Z�EC��*��g��XF��Ӓ��ˁ���7G��z޷��J&R��)JR��)J'ԽR�M���F�ƸSd�&	�`���D��c!l�C���;���	'�I[i�2R�I�„P��D&+$���P��Oq@���y,�M�VB�l�0M��售��3_����i��f�(��?�X/sq�'��
q���Z&��!:��I�j	FkR�\l1�~Բd��Ά�xK
HBh�Iw�:w?�M�4F&Yq��&�
#W�1�F&��+wE��J�4uML�M�¬W&<�IrCR{�LN���՘���:�,0^���+̰R�s�kk�Bt�!	�iJ�R��XB�BD4|	d�~��mFx��/$�/�&��7V��	�t��L�w).���Ǵf�B�,�����p/E%nM;o	�M	��U,�d��hD��=}�@�]�Mܾ^�s��3��U�fF�+�݆����Q�,F�w[�袃V�o���
��W�^�{!�w0c���2�r^�x��I�QjSyZ~��8��iP�n����^�Gt�y��j���V��R4�,����"SU�h�YD7/��g�B}R���/J��()�J���`HQ,�*(+V���5�9(���7g�%�{�?q���^<�%�-Е�c]eÐ�I��l=7dž��R-�L��≠o�X$��9��pGXe�9�<�6����
��l�f��7�t�+���������i��!����+Z���
��v	q*$��Hi���+rąo̫?ĥ��vw`�����מ�a��VlIh��HP�b)K֔�a�B�'�I�tDD�贌�A�41���@�C��
=�Z��I�=t�!��xb'�i�BBV��`�B����%4dj����gE{P�I�N�4�6i|�XH�U�FI��.��B74A�[�a4_e�S�rǽ^X�f&;��}8 I�%�h(�$n����]�܉Cx!j��T�y?`M]͙�Vճ��֕h$���������r[F�7�&�7ߑ�`}�ȭ������!B�g����(�E�L/ElV��И�Ȥ��C�6��N�MY�т-�CX��CS�AG��֤�ZR��Ŷ~O/r]��0ڲ=ؓz!�(Y;�؊�{x5*�M,}i�'�ܮདƺm�	�[$	�r��L���ӱq�
J�h��󱺑���[lG�y��s#�!k�b��I4�u
5�0�+�zȟm��kZ�T��*��o(}W���*R���`нS�'�R��Ehg~J1����)l/f7#܌K?G5
5B\�F�G�&$���IBO	�/di��e�<�@f8<�ۼ��%6f�gq
�F��?�Bt�x3�Ep;�ٜ!-ȏ��&�A鋃��c]��E7c#:����5�
֔�WE]��=�$0欭I���$B����J(%�Et<�X�!w��B>]2�t?=*D2� ��/�g�Mg��~L%�v�hK�yl�{�A���<������D��7�AW4M�_MVdw�>�i}T�)z�JR�]
TR�ӎ�1ꞈBu��좱7Խ)}F��<��t%l��f�,y+�Q�YhE�?:!��u	e=}�	D�}����"�#/�#;ӊV��B鸶��0�90���kf��f����ԿZ��/ZR���R�
R�)JR��J_U)JR���U��٦%؜���rm.;���VŖ�<΋,�Q&�Q�.6�ɿ�bІ=���W�"�_��$�7ȇ;,j6ִ�A�(��SE��Ƃ\�B��"j���:�%�/з�!+����[�-/�Ҕ�/�&_Fz�u^�8��h�|��s��ȓ�v�%��m�lNj�_���$��.�mu54Q4��T�8�r�C����*]�-FRXwg~�UŸ��n�$$��&�[�����l�Y��7��	l6ޣ��k�g�]i~��E�!=���W�A�v�C�v{
����'&�F܈�W΅%�:�I��^�L$��5(�G.�ԡ�	�L�q�E����jr�;�ا�����BZM�BNjg\��DX��*��3��Z�-�k��+
��k�3�V2��~�	H��^��	�k����I[��8���C����b�컑���?��V���%ƞ�-��ٖ2�Ḱj7�	<����0�Yb�2���p8h�Y#)78��p�Zh֊V�a
��#�!(bc����D&�N�o��'���'D4V�p��B讳���a}s��:�*������$�Ț�y���IJ�l�M��JKf�Դ/RPo�:�A�=�aiܚ!2P�·|p�S�C��1��U�خc3�`�	n4[�$+b�f	�")��+w\
.��1�M#F��R�ܰ,,���R�D�KVׁ�=ƶ��k9��(by �r�X�",�݄�	�5�/��xCTO�)��K�L��砈�YxB�Mj�J�	cO~��*HF�l��$F�Q����܉\66��E��i�}���Y�@�-�i_[~�)��R��)JR��(���>�Z!�3�8з���%.{�	q���*�K-|�:�CS-E�:bv!8�<5\���Z����a.�D-'D�\�!�o@֩��n�z#���j�Qh��T^^�;>��^��ؚ.�~Y� �Q`�]Ǡ��5yd��q���F��	5{�=�E*�9���)��
Lod�1Ww�L���z��3�c��kQvZ�e��d��/h(�����uԱ43���U����Х/JR��_�K�N��I��Jk�w酨�E�m�	�;f��p�V,��Mr�!��4t[�L5��4N�$>"���cx��
뒒��M���4fp�
2�d�2Z����ҔL��t�)z/�J_�J_��Ԑ��۪����3�$\8\Dh��x����q�JB.���2ܦ&J�d����fw6أ�/R��L�),	5b%�R��&�=���bl����T'��#\�O�<y�Ɂ�1!t�JR�=)F�D��U�&�H�$Պ��BE�oq��^�v�_���}7�җ��Dӯ�B���	���K:|���f�;u�-��
���+�1�{t���F���J_�T�e�z.��e)Kҗ�})Jy�X�P�bf�S/D>����}i��	�)zR���ME���-)�6ߣ�t����a>�'گ��)z_�}M��Y:�,!N����B�=S罹z4/[�W�b�Bz�Нa=��N��=����d��Ϣ���d�B���!	�!Bz�O�y��>�u���t���!$B�gҝaB�'�t�aB�!>�D!B�!	��*z�Y��!Bu�gY�!BH�'HO�>�D�'��'����O�:Bz�>��?�aB��	�t]HO���u��B�RK�/���>����Ҿ�z/��t�J^��E�w��/ӿB��7�U��K�/���zҔ�)z_���Ҕ�)J_�J_E��R��)JR��)JR��)JR���_E�g��iJR��)K�)zR��Ҕ�)JR���K��K�)JR��/JR�%�o��A�aK�*���KҔ�/��o����KҔ�/ZR��/�R�*R��o�zR��)J_E�J^��ԙJR��)KҔ�/���)�_�T�/���(�JR��)zҔ�)J_M��oK�iK�t�F�T�)JR��KҔ�/ѥ�JR��)JR��)K��R��J_�JR��}T�)JR��)JR���_�_U/֥)~��Kҗ����/K�/�/����3��*!A1Qa q���0���@���P��?�y<�O�~g�pO'�y?�?�?;5��it�M&�M4�M4����c�'�~��?�����it�]&�����˦�i��i��ĺd�M2i��i��i��C��'�y<���'�����I����i1���]0i��`�M4�M4�M2i��4�M4�M4�I��I��<˦��]4����y?������&�I���K��t�M4�M4�Li�
4��
4�Li��i�M4ɦ�i��d�&�i��4ɦ�i�M2O�ɤ��H���n�[�k|O��y<�\`��
0i0]0i�
4�M0i��i�
4��
0`�Li��i��d�L�i��馚i�M4�&�d�M4�~:[��4�L�O���5�u�'�O��.	��4�4��`��`��`�M4�I���i�Li�M0i<K����M4�M4�L�i�M4�~?>����#Y�[��x<~t��x4�&��pi0\4��
0i�it�%�M0i�
4��4�c�
]4�L�i�
2i4�d�M4�\�O���0��x<yq�ǃ�x<�LM.�4�y?#�3ɥ��#�c�ǁ��3
�c���ǃY����ǃ��&�Li�M4�M&�&�M.�i��&�M'�R�@�%�?'�4����Ǔ���x1��1��1�����L4�
4�M2i�M4�M0d�M4�]4�M4�&�K���?�K�M4�&M4ɓM4��YS�4�i�`���0i�
4�cĸ&��t�0\y�M0`��
4�L4���i�M4�M4ɦ�i��ʗM4ɦ�4ɓL�d�I��p��i��#M4��M4�M4��
4�/��&�i�M4�L`��4��	����irO��&I��������̺�ЗO���L4�M4��`�M0i�
0`��<x
4�Li�M4�y<ٮo�|�i��d�I��M&�M'��?��#��i��i�i��4�M4�M<L`�L`��M1��4��`�M'�G�ku�뮹u�]o�5�f�Ś�2馚`�rƟ����d�&I�|�'z_��O�I��d��`ɃM4�L�i�Li�
0i�L&0]4��Li��4�M4�M2i?t���]u����M4�3����i������!ɦL�is�&��{����ɦ�.	�\i�Lf�g<��<|1^7�[����=^&��>V����������<g��0��Mw�q�8�>	�L���`ܿ�M4�e�&I��ipi���
1��_���񗌌F	�x���i�����{���'���L�ǀ���2O:d�M<�&����]^����w�xi�M'�5��ˤ�t�
<�Li�La�iq�M1[�����x�{�M2i<����
0i��i�M4�Li��`�rnj�3Oi�M2i���]4ɧ�:4
F|O$�̗����K�M4ɓM4�b�1[������q�&���M4�c�u�]r�|K��b�O�4���i��4��p_x�x�<f��&�y�Ś�.���2i��it�\�>|]|jՕ�>x�M4�o�-ǀ�с�xǎpt�4�M4���4��x4t]����~?�M4ɦ���Һ��q��ɦM4ɦ�i4�i�L�d�M4ܿ<��|�w�:t��:��I��"��&o?�Mfp��xo�t��7,y��Μi�&/������M���h�&���u�,����M4ܿ/�V�Z��i�~���zO;�gM3�-��ז�g���O?��ku��0�V�-n����#Li��fp��[��޳�\d�Ѧ�i�M0i��<GK��b�|��F+��g>�
4�L��\�i��4�M4�|k�T����O�w���s�}��`�
��e��O�/�t������LyH�<��?�x��ךi��x�<g��i��i����|9��y�P��ͧ:�+g����
��N>><S͹�,���6�%9z���O*'�ߜ��p�-�4ܱi�Ln��,4}2@C 2Epi�ܻ�I�]�A�^�EN�|pV	<_��,#�CON|�4���[�{L��24

-`�1ε�c��)�ej��G��4=9�>
5�χ������_���}b�o^�7�3�K��Ƃ�Mxz�Y�s��n0��kۧZ���`4ŀN��J�.��=�W�n�8yL|a�|]v���k:Շ�^����
�n>V��z���<�~���n��6>�E:�s'{�캏�5����zS�I��V/B��<V�4n���|C����\ס��u��,�N�O���ٻ�V�ִF�g��	�ot�t���0r�4�I�-}.ak{MMm�S����+�5�	�4���7�؟���0�y@,��r�I�r��?�mI �kׯ�V�\�,X>�O�˞��5)xR�.5z�A��*�5��n;kv�/W՞�LPG�/�3,��T�I�����<�M<q2���j�������}��*#!��G����ƃ,+�W�g��Cר;��"��3E�uy�׼i3�ܿ�q�<�9��8?F"�q�-.�@�j�:ǯ2�o::<$�i0t�κ������׭�q�]'S���&�?CW+���xx���I��@������0uE�o�RH�u��E��s� R���r{��P�co���٭W�2��0�I~
�r}>��C�0�e�$�q\��~�k��wO�z����܍�߽�����?{��	yf�kΌsO�f8&5�Mqi[�n8!��F�R��׻�D���L�4c����*�+q�M	�8��e�l�/Y|Y�ӉN,�醾AF{_A�dZ����8�����&`���Y��2�y�yD�oc
�Ds�8�@�8���"{waʮۘ���7�+bjv�K
fu��'âd5�
�,�{�����.�^e�>��ij5˝�Z��%ѥ�bz�'���DŽ88+%��Ft[�L�D���:��,;~�t|�N�{�9p�8�u�+��`=cK�ia��7����+��A��L�v7�t�Oe�Ӄ���j
��4i/��"��dT��=�?�}9�td�r�3�m�P>����b�!��_�4��&:����
�Mc���(
��j�1�9~�>����Z�c���*G
epP�?HC�+I.\�Q��3T����݆?'��s�K׳�b�@��9?�+�#�x�.(&�;�PF���S�V��+�Jɾo��u�ma�nZ�r9����4�N���X9:u�{�Kwfj���,~fL�T��x�'+=g�$��:�a�(;��x\p�1�5�ŏ
ȅ&�B�e�6�~-��
�75b@��O��� ���
N`�}�%T��2p���nJ�6{3���Ѽ
�GΊq%E|�y��y痼d`�>����9���7��}��4
S|~M*;�Qrj��niő�}co��Hg��v ��n]�]�t��3�����Ǫ����~ホ�N�M�t�W��0�q8�^7�3�7�S�m�4��Q�>�9�1y~�)On�/�i�T`��%P-�w#�KO!+k�
�}�����?|f��W�vONaA�
/��QO�e��nv�z~��?�Ǜ	݀�@�u2^�h��Uz4ie��LW5��k�x?�x޾J��^��Z'Ӥ`4����V/.�A���Vck�+4ZE���!�O�����s:�<mDlV����W�@:-��P�=ݢ���UʊZ����j��\"�R��)�]�r�й��6/?p˞�+��e�t�Cf߆�̀�!����+���Ɂ��:�_y��:4�kݎ�Vn��8�
�>��z���q�x�_O�2�GԮ��n�F�؜����RM�D��p��_�����*�9"����9u��b����R�k=L��I�.���N̊S�`@O�GFU�,����dӽ֒آ>���b��—��Λ�
�^��4{�Ds��ϒ�TG��@>��α
>�CU���ba'<�<
����^1��.�$�9O��y����=��ˊ��c�ff��a�.��W#���I�0���U�����{�$�
����xӈ�&��q��a�y,I���ŌƖJ?mx��=}���Xcj[u/O�{Ǝ�ϭ�N@�ﰀ���V�~���&���TOi��E�����DF|br>��Q��t=8���=9a�ߞ��_@�¿�L�j�>H�+wO?Jų�<9��֭e��֐����!J�:Ȧ�C�g�
�,���@^c�s3���O��Ԧy~�"4U����	#�_��0�OD��|�̃@��Z-���:rHę�;�6o�� �qy��?x���'�.M)	�:�V,�G'(�#���J'����1L{@����#|��=�ӚsI3Eq{�`����Y��$0��Ϭ��IS1N8td�r��������w����q�q+��Gu���A
v6�d�(O;����:	x�N�lv��}���X�x7_���I�0�!4$���e�����o���P�,"}���qa~��+�7)�����0!�k�1Q-�d�fhrw�{gf5�����]X�8�E։��?K�y��	�5;�y���䨐���C��ƿ��0����8[�>���y���(-qOEr��x4��Gk���X�X�+�/����\FT)�6YqSW�K^�c)H/$dnQD�W@K�g�п��a�uC��x���Z\`�p�n0Lz~fN7��Ձ��	���%�zB���02�W�B(:.�1��Ms����x�U����D�\��S
(r����q�*�=h��,K�}*��k���	#9u0�����8�n�Cn-�0�C�,���.D[�$�s��U�ߕ����}�l0�/a�k�W��f�S1:������.�H����=Ɍy�[f���Bg���	﬉���%ͼ(�r �LJ+���ӝ\Hr������8�
�n��O��$b�
�ꦷ��=�d/
����q�T����?���G79Z�>���&��ߟt�r��{��(�����Ǖ	'�"����� l�^�9��q4r)�N�ՊG?O�͐
S>�e���� �is���rAnx/������<~���r�]��4�y�?�",��Ȭ��|)��n*�?��
�?7x���	����]�mue���Ή�҅ �&1�q�٘�S�tq�T���YV��f�Ff�-����D�����?�<$�#򆺜��~�:�Ø�<�Z��>1�t��_���(������TF�"�f>�u�'~���ʂ�gQ=��ܶ'���:P�p��r25�_�T[F>��\f�)��1��
Ǩf0��*?s�28%8�di�w��[�=��sB���0^�<a���4�8�9�oY�c��=͸��uL St9�!�H������H�Y%�AkqVҴ>�n�d�o��YVE��q�Nӏ�1h�֢L>�k6\9���d�V'���Y�|-~���������I��|�%R����Z��d:4���;�B�D�+8�6�\ǧ!F<X(Bʮ��ѽ�a��+������\��!��yd4<q��{aRB$�c�Ͳ�P��!�'i�;�)�����q��8�b����㥜n�JV=Em3�(��8�<0�?Y�[��s��A�
��!�ă��aӨ"H�?��p�;�K�>�Jq�h��5�����d���c�z>M�h���g����p�G��{���۴T�'l�z���i�B��bqU{��u��ܛ�K-�z�Ư�̼��Nj?�zA%�]z{�΁c���8�C;�-_p��^`� ��gx�
�/��}�k w��=8	�rGӭ�2���ԕ9�1
���O8�.O�7�R��S��us;Ɔ��\E�q-+�сf�I	霂���^��xU�*|�<EB%��Ѹ��bJ{ƈH�4b8�������O�����7��c�⏯��}c��׽}=��3�O�� ϼ~����.��G���9��}�#�祈m"���O�5�2m�LD#���(IT�&?�IF�YrBy�($I�f���ʰy�!%�g,1��EP#��,�.��҉Y��}L���pO�%����[��P�H���@>�G.Z���0��(Y�a��_X��r3��1k�k��g4��0�$��n4�� �Q���
��j�Q�w����`Q}�\�1�l\��DsIT����˩$��q�U�Rt{s,�'��co.�]ۇ������?�,�>�(�K��9���_�2Ev��/5;�`A˞A�`aB�����V�q��M�K���̷���|KfC�@V_y�z3�Խ��ڍ_lt��B:k�4~��$�Ƞ��2�0�(��,I�9({sg�q2tR
�)�fv�5Ѐ�[�l��W��n"԰DwǶ���&q�'��NB�#��h��9"���
��c@�$A(_n��`�wg�crg=�.��P��ְbC��'�s�l7|��������9o��O�A4�����h��"h	<=٤�5wӜ��5�t�辫P�S�l��zݚ3����	��E���s�0U{ь�[��&~�0�s��>�FCy�}js�!qa(D�Y�0�8J5#V/:J#옿SA~xU�.K?h��]Kc#|DG�8h��������r;{ή©�'%S8^U���㞛x�6q�r����u��J�,��I
NB#:\{����q�s�29%,��T��u��W�"�ɴG�n^%��VkjegUJq����.R�y�J9!�5s�P�҈P���q�|�_�7���UL�o&|������p����w��E��
���k�/�ל~�W�>�{�*��:;��7�J�W��Bw5¦����}�B�w�6�9i�r8�=C���AU*����
��?ο��9�߯��y�Gˮp�}�:"�c��Y^b���syx���0o��!�b��/���}.O|��|>Q�c�Y�?Cџ����o��$�g�a��c?a�,r�"�tٿ�b��Ue���~�S� 8��oŃ*w���+�'\�5]i�ւ h�=���	u��⇈k��i����'�82���]�?%,���d�=I�F��H��mV����F�U��!8������0s�Qd~�e��i������>�\[۰���yڝ�{�k��S����Z��j��l�Ìo*I�>02�
���e �
{���0K��?L�Mׅ�.f�5�.4�uc��̠D�oq�m��=�`U����`s>Sf��_x�4�B5D&y��~s�i[|�?���0���� m ���ꗖ��h�:���A�c���G��d���79s��ŝ�����d8_|�ͧ��%¢�w� ^��A�{��#k�a���)۞b��j���.�+�P�/��-:p~�	B4?Z>���R�&�#��(?����|a���N�r�xs��fe���m�y�s@q��b�`"��_\�>r�Ǐ�0Q��ƫ880O��M���������&�>�d�����|�7����p�~I����yC��nH=-�:�����sq�s�9:��n�)�A�c�cح�����(N*��-��*�
�	��z:>��M�/+S�q�̰��|k#�XHd�
2�2ѧE<�ek)Ύ}2^��� ��~��:C�>�5Η���⁙>	�ܒg�z{�-�X��7�
��,`F",}'9�c�C����._�ш�ol��=����倣_���R4�g_.x
q�.`�b7�v'�3�?x�b��&v�}�fDn�+�e
��g__�̪E��>'�0J����l��^0߱�I�)��k�i3힟�Ǫi�����?�P*�YKL�X*���>8�au���=�k�\Y��2����B%^3��‘�G��HZ��Sx $_�Ӊ��9n�\�ؐ����C�cKd^���N/s��N�ؔ�C�_Z�Bm�j3�;�x��5���\J���g�8�O�c_�
�\�Z��O�RRM����9�C�u�#`�>�Q,H-�Č_,��d�s5��P����b��%'Q�������P���K `O���@^
��g8�?��n�LA}z���pyQɏ����
C �>ޘ�(������ƷXH���A��~S��+���}~��tL�lb��xE���!�#s̸�1r����ͣ��51�E
-�4u�ڔ1+��_�&bz�:�aĹ�4i��T8��y�x#*�؏�i�=4�gd�-\�f��J�r��#�����U����Sw��h&�P�ͨ���AS��&e�S��t.ʟ��͎GJ���9�(��}���ί�h�=h������P�i��V�L��dr)�r 9�r�d��
����DG�,�L��.�&%J�S�O��8��%���j8��
�?��G��w	��D}d�l=O����Z�����&���Z����
�V	��^�я��b)��4Jx~��:���������-�@9���v�e�&ՏU�ub_��<"�;�U.;ϊ��CH�{��L��m80��'�[�C�eD^�@	2�=��k�{L.�y���A����q����t��B��p�vG�镨���˩���}_��/�ѣc����%lDB��}f1z���iM<
�o�v��gb�9Q����.?��k\w_�����	Ɨs�E�}fH������h'6C�'-�9�=���q��!ΔNS�2q��|��p@���!+o_\�߉ȥ�'��*O���=��N�����d?��!/xo�s�ub$�xP1�1��ŦW�r���!���椝����`�;L/���ۆw�L�{u�岷�os[��뫭�8�x��i�?����^��ѣ�4N���{���=#��,��D��`uʽ��W�lj�^������ ��
��πd�Z�q�\H@��ɪJ��r���A|�qmbhd
�t�g�<�~�m,'��U?��NFb�=,9~S�q���0�3:�7�u���r�P�t�?��1���ʗ����5���z/d�{_,�R����
_9�8�dˠ��C$�_��3Q+[�=�����D�DB�aTQ��������>b�%��b=��{�B�{d/�K��-���#sO���da�ָԍj9)���}b���9o>�Tܒ^?��z��
Ǟ�p���n"d�O�������sE}#��������2�?�ҋg����u؈r&�f0K�ヺ^Q��SM03C��:M2x�M'��I�jhh���������w���|~�}�K����;q�n�7��:u0���&����Χ�9gz��|�8�x��L���`��+���5��y��wt�`~tOm�Mu�����=��閄=��h������Ht����*�nm>,��#?�������VEi1L���F��4U��D�>������@ _��ޢ��`Q�G1��BP:���T�u���� �X�L�\������z-s�Lmp2�h�On1!���
ȟ�y�AB�l��L�ۥ��(۹��&H���a_�� S�_no���pu���¥��]fa��A��1�S��Ê��rnd���͒���oѦ*�ɣA�C��O�,){i�+�e�U���仜�e�	��w�{M{ӥ���	�G��5��w��t8/nC�C��Ѹh�:d��
gA�n���M4�gBw5�n
�0zn/s��t�ǩ�u��d��A�7%���5�
�7�����g�/A[�����/�C�����r��f$)Ά �v��gŸb�۞��Pd�+�g0'�(�߈c���*�{�T����b��r�Y�+�4���q��-Qt�6���9��Nq��s�I3з�T��,R`�ȿޫ>V�$+��y?�<h��vt�+���!��H3kL�8?{�E�(�L��Π���񑈄�!�}��T&,1GK;>�ֵC��(iS�ܓg�x�
8�;�]'(Ҷ�z�Z���
'�j�ğ�u����dl���F��u��h����_@�.�Q����u*�_��vh��.\��
�"'�MEAm����B�(tf!~_�� T�6o�w��O����/~�0\2;t3
c�o=W��:�����.��w=o���4
����0��i�,	�‡����Np|�/�sa;��1�:@.d%�^J帹
")��C#�͐�����%�����CÖ�)Ȗ̔�Z���S�v�Q�-���x:?Ɓ9�@�y��0�~3�7?A���g"e���XZ���=| \�pb��0���Qp�c�p����\�p�ujf#��|gI/�_�@��.|�_���(��ç��ҽh�v�2v�\dO�G2o|p\�>����"�_�K�ȋH�%r}`�ѡ�*�?�=������?eȟ�Y�/�����$��&IK�lf}T?�{���}�)�$�\u�8��Z��O�ߌ��ޒ��Y������޺8�[��m�C��%�q�y�bJ=3�l	��ü�n��83�^Z`	I���
�:�	$��C�M����:�����޹�HF���S���OTb�Jw�l���9�����$�q����M�]�8q�u�����%�/�`zn���7ϝ^�q
`���af���9�d�~�DrL����ו�-F���S.��MQP�X�C+=%(�:�s Đ��]����V���#Е��֧�����Ĕ�%N��s���r���b�W���)��)��h]����U��g�`�?1�s E�ј�
j=}�����@�1q�M���m0���Ȳm0�~���q���"����p�ˢm cXg&�DS�-��.(]<�ENn��ͮ}F��\R!�
d��3�vDu�+$���x��0�\��>&��M����y�"r}���et�C�v���Ցa�����I�#������;� ��m��YY)��΃;>LnI'��fG��(hqIk~�p�����~�
m<��'�=�_t>��r��,jR��6�x�*�����Y�w �����������5N��88HL�z�آ���K�x1����.
����^�&�.I���٥�1�u�D�=nGiq������	D��N@[��_�o񝏒����@���J^�Ɖ�o<�aq�T0`Nyg�ܑ̽�Ak���p�_��:U2��!X91��P�F\���5_���?�d�[`{Y�c��[�j�<��8;�<T�/Ft{ɇ���o`9{�@��2�,�$�}[���	�9T����Ag.)$�8�6Yj`�DJS��b�I-�L_�g��^�>�r�%pд~k'���{!�m1��Wa���,mBZ��U�+��ć���L��pq���P>�ő�L1j��OWNyłO�Zm�ˋ��G�:��.Wdza�
���q�ZV�B�f~�W�����XBH�2
|�q��f�C	f}�#��sK�#֜
��~�x�P�g�acs�5I���Aܣ�3���~���֓���V���z�DL���]>'}s?��az�D�Pn���ut�ZMf��F��fc��dp]M8NpF1WW��ӆbt�oY'W�ޮ�!��0�<v�Ơq�8���93��0G��I����{�*���;Xv���R��Z�\I�w�1����ȃ�9s�~��B���?X��\���ϼ(d_�i�]W��*S&\e��)('�_���_Ҫ���^��9�0������}^����r��"�;�~?x�`A�q�%���%x�
���Zg���({0@�]/+:b���@K��
CшI�)B�L�p$A�:E~z��
����AtK�GD���s�T{������d#,2��Kۖ�5m��@
#|�!Y���B�O�0(�_ނصC��7N�d�����"�|cE��?]g�hP��*^���t��l��q5�����q{`0���?]b ���锂$��x:�C�\�X*��p���5�O��XRV�'���3����Y�)���å��)��}O�M�W�4�="��ϛ���A�Mt�׭s�Y�Z���w:�
��ο�����{�n/�c#��6z5�̧�^��G�w<F>%��gqW��;�
���\�[�^��j�3�m����m\`�Eq��eV�	#0�"����j�Mo�X��9B��8����z�w��[G�H�U��)A9A�b�឴�X|L��
K��e��l��=���[�4���,A���V�ȎE�Z��^��c,h�<��9ж'�f`z 2���'&�>��>2������N~h�>������x�c_���*8u�a�֪�s�6Q�� ��CprI+�I0D�Y��-�s�\�135γ�K(�c�i��VZA�M}�����$I��F��D�L�!k
�̚��v�4���TAt�=�=uF|st{�@r���BH��p*�s��L���[����v�7��c�¶?�t�f��|/�_-�4���{�	�o�>4���$_/x�z?���*��� F<�l��\ԓ?�
��\����No���\��5�9&5����Gf0n�Ou��9�#���p���cYq��:�pr�Ӆ�`��4�2d�����aG�F��P�;�d��j�����1\ʬ �W�3��y�� u�+BeL,>L��A��]
�f��U��w�"��N
`�fE�9)� E�Qc��JI%Lp��$��ҽh
�"!C����ؼ���=�`������.�LU�˙V�3��p�/�r�%����@Ֆ�h�C�*&�!R��H��B�'�b�b�ꖈ+�+��z\7���&>E�	s��e��|��*L*�A�$Z{�"�ÙA�+p�S��;ﬔ9��qOo[�IpB��d�|ه�$[��Fߖ�o���G	�1^N D��5] ���4��ʚĬK)���Q�_��ub/GG�0�w��4s��Մ����!��"tXXH�	H�nm*Z�3��w��`�׬��'�P��r}�����hC��s���k;��9���G���W��t���:bP�S�&'�˂�-҄�qL��|~�v���Ӕ�}*̠��R/ȳ�e"�K\K
4���\�e�ں=AV����B��o~!økA�v}���]�"���*ĕ�ze��!���t	C!�!�!9U���V+>��|�%j.r�Fէ�"�O�i3�=M0�J��
x���[�w�2)w���	ID�ϼ�̪�OCb�A+mL�穫Ȃ��=�2ys�w7�h��E�������!����f��#�[��kq�m5B�LW)U���8�xK 	�Шz�q$��GuȾ�y�x7O*�)���}�`t\���h(y���4�L��W lƘXU8�$�����M�3�i��(�0�����K���HW�\��3�r�C��i12ڼ/��1�֖O.��i78�U����yp5D��yN��dn9�4ܼc��߉�cc���`	��8�D�y��1���3�0��g��7�N=����ޯ���$�"R|�UΠÏm\�{Z٢�D�.^
g��?əHJ�A���S�_G�4�1:%ʇ�3vr~��pnB�H�I���2b9�%1,���2��p{�r�=$\�+�E����:nj|�1L�Op5d�x$�ȂId�8��N��J�rИ3�+H�����ۤ��e�,xG/��pr�hחG
��SR�dםB;�/�h@N�sV.r��I����`�iE�3!�B����D����z�T�uWSC�'Շ�3�sX
Z��"�cBB�Z�k>ɊTp
��70Z��ph4=�=���r�`Q��X�-0����ap�4��C1��#xY"/��ys�����b`�_�2Pa%�>3���e�r�r4ˇ�C�r
��5բ�#��-��Ȋ�u��d�.3�K��K�/:6?3G�uq�La���D�M:�����<N�l��=7W�3$�yף�gq����Fo����Ge�Z�/�7��z�q��4��`&�D�%$�gMq��MmT��Y�W��\�O\r���Yü�TYrȀ=e�"�	�9��z�����D,j)�^{fp�v��Pxx:�e�����w)�Ā�}�w�=��l�\{rc ȃ*a�*R.}p�Y�*fN
�]��@��t��&
�5F#�a�
6C���ct��F�� ۟xxu�� *n
�;h`�(F%�㚴�1�>��[�F��e�����c Ag��1Q���
�V|�y���r��B_@\�R���>��9tcy���E��U�[����z���E��Z��o�4���j�:��V���g٤�OD���:4�%�5<Y���#5!�k��z���w{���N����<š���n�H\���Iu�.0ԑWY87]R]�̑�d<�ܡP�X-���Xd1�á?�x�\��eR���<2��2�>ᓞ�i��8��@��֊Yw8_��b�ųL�O��i\�̈́8NF�P���?���9��z˞�X�K���t�����}fK=X��.[��,���zd4._3<��Ƈ�����VY�� ���z�Al2+9#��KPbêʷ1Az��Q����B�(c�w�-S�ܵ\�k{"�v��>5�H+�V�/���QM�f��]{3W� ����eꞙ���N������gӯSۭ�޽3�t��|��_�MMO���s#�)��p���"�w6��욇�n��L�7��ᣦb{�a��#�e^\����e��
ֱ�K�p��h�n�Ytr�.Z+Ĭ��yR�(-�,ap��/�g�w3��!�L}L�t�!�0����3�r`���|c�|LY��v8aY��)�c&�s�=\3:�Y��d��=���s�{�a�t�Q�zȪ>0����Ā���`�,p�:�P�>S
$%�����kRS���W������ �=a�21�c����f6�+���H�`
 Z��.���{zp�����./�N�����ƗM����ƺ�3]CF�T�i���vMƺ��g�x���n���a�&����u�z�j�����q�_Z����-Ȯ��`�W�	�c���|	�a�zu�wĻ���\��[�۸{n����G~,�f��[��+_m�
7�b�8}��׀��<�X�k�gr���O{�"Hk��+�s��p�	į��(=�/��W�<����.7��t�����ʂR�Ӈ�ʪ��S�?�2�A��	`Q�A0W	�n�;�$ZwZ�d�K+�W]ۄqOn��&=����5���0������MM4�C!�t�����^�իRaï��f�{�5�u��L&�g��^���p����=��F�t^�)�?
����Y�o��泼71����猷�7�uuMgx�G_�a��w;���W���^���:�&�r��)�{0 I��|Mh��g��H:�+�ؙ��>t��˙��0��X���Cl�|XZ��2�>���҈"��~��P
����{�M ������h ��Y����vB9O�����kƒ$INA�ҠL[^)�t��\�}�5B7��q
⿣	0���;M�eS����G�0t�/PZ�jx�K��wja:×].�i��t��K���L]u4�i�:���.��/��0����;�]&�Z�oWS�j?��V����8u�����|�o��:�Σ���ަ���\'Y�/��oWQ��L&�ѣ�:�9��A��^n�?���Ys��F�r���(�W��nL�F�Y
?'��7�{�ȔG������-���A�
D9&˷��d8�Ⱥ"N}�C���q��q,�=�u�J�nA(��KMpB�CW�r_�<2�s�J�qI����;�2�:2�p��0������e��xP4�fbY�[2�	�,o�aã]q�kq��3���}�]٦�<1�����M1[�	�`x��ߣG�0h����.�Q����hhk0�4i<پ��q��\x��q��5ˇ����Ɨs���\�����i�36C����j�j
̡59@�'���5�­��Bқ��x!����@�?Y�`t~��8�,��*�㇓�L �j@gj
�&v7֕�4r�VV
���_��,'O���G�L��)J:��z��X��$�ԡ52'F�6T��G'���Z���4M"�-��83��R)�+����g�Ȩ���-"n`��3�n>n�1;f��#q�,�.�߂ޮ_$˯��_2�:�a�GAӥ��4�|+�h����_�p��.��|@��Y��� �M44��w�u��a��ǎ��C�T����$��s�)?Μ�P!��!�'.4�	{�=>�7^���/���BH8C����A��%{�r�s�^H?��@��C@y�\0�p9�P~�vP䙟d�1� ��g!B���4PJƱw��!OX@��[�)H���C��s}�X�s!���fՂ7}{%K?Xb��@U�"�*�
�m�6��xPQ�2|}k�x�\EI:1@ψ��.!�l	���[l�)0���4�L3��k��ٍ4�����4�.GS��0i��N��u��)��L���O	�����f�h5�8{���5
t�jjcK���;�f2�>S1��¹@9�&^c��pK7-
�/���Z����9R��v�B3�?8��\B��V�T?Yl���
�e�p�`8}<�/9Tۚu*��.!<�B�u3�d�S�ѥ|��`�NHa��YS$���Ƣ�c��"�d�|dB�'��U>��g�r�>�&�@z�7}�qDպ!h!T�1(rz����#�o�c��/ͺbۛ&@��p�_�'�
�W2x�)��#j� �ct��.	���@�0}L�@�<K�-��u4l��:�q�4�ś�6�k�is�W]u��d������G���700�-ǁ��up�r�{1�MIȸH�sr�SY��=�EI��@�=�i�T'j�[N�z�����YjG�g^�.��;_Yx"�r����LW�`�@8�
�������e��~wX�u�;�2"H��W&�,[�C��1*��&�g����-d�,m�p�0��y�I��5
w2��"uP�E{Y��B�44�!��j�}���D�Y����aVu���V?�P*K����yE��d���#I�pd�3�a��]u�u�\:�)��]�&1�Z��I�{��9uγ����&�]N˙�1��.�'�u��2�u��x��5;f��z�Uš�փ�jI��8o����ƋU~>sа>:ÚE}S%i'%�5BfTw5.�
i`;���e�h��xC�pj���-�D��p���.|���	��~╉��e����
�2�����҉��&	~��3�X�$��%/d�����e��}a�O��7�,i�W�	1�2ćfmj�\�I��|dj ��
٧���8`iG�K��,95`B����9 E9��0#������B
p��L3[�S$�7,7s�pM���z�pMgWY��	޹^��:�7��5��n��-�,�]r����x�]r㹭�_����f�Y��3
�k�t�xf4�8P�sm����^�!�ia�C�/ϗ�ص2A���3bb�w�,@gUH�YH�u�Z���x?��P�F�T���WE)
��s���d�p��1f����8L�W?
`����O��|���z�R�g�i�U�����(ǧ֘�A ��0 ����^o��p-�\[=���)w|�p)9�/��S��O���<p9Ҳ���ĸ<cɂ��<�
����o�٤��5=ꛎ��u�j?�\Y�߅�[��\:�|��
'��\8őY�p+���y�5�<0.ۄr��ac�Y�ا��)x/t� �R�Lh��- qޕ
9����{���L:5_I��(�k������ʀR�F� ���� q���82\R��vh�(�5"^�ۓ�wG��LIaVɬ�"�P'����C��LL@.��V\:�^�����Ȕ��;������i�L�0�ƺ宿�Sǖ����n?w�隧yg{����֫�r������5�	ֺ7�-�p���P��2��_��]4�<��u�"�F�L��T/;�=���j9t�t������s5�Tpo{R}�Hǹ��E�����f�5���zr�^�'��rUpt��VG0��\>Df��W*a&Pk��X�8�}�?u�B�����p?���H wƜ$g�#��<�0U�*/a�r/��e@�H�>m	H'9�|�����X0x����7e���ɋp�a�w`�a���<��D�j�f���5�I���t\�M.�O��|WY�[�]4�I���Ír� ̻�L"M�bU4>��YD�`�V�Aȱf-8.�W�0
g�k�LK�.p|���<�'�	8n�re���P��-���E=�q
>�j
��1qʽ~�Y0�`���@�u�-O�(�c�@(t����SQƴ�5�i8u��N��hu����<.�Řu�M�K�S�S�&����44�I�f�C�f�N
4ɦ|G���r��t�w*�	$��Uɓ[+ty�=�[��{�e:�3l�!�=���J�0�,���15��9��n1��ܺ�0gm�_�p����T��k�u^7YʻЗWi���i�Ly�d��]>�6�=b�	ǣۮ�Řu�_w=�f�-�|ܾ����Yg��u�O�	ޣ���ƾ�߷3�����<,�]���u�]]u��f�š�K���t_:%��y�<y�p�KO�j���ʞ�vc����eh�����A��$�@ܙ�����f��s+���ZGQe����p�|ن�������M<��4]'��MS�L:�<�}:|�\9u;�x��]&<_3M4����[��xu��.0�o�M��3,2���x�%L��8ǂ��0WX|��E�1�w�Ro|�E��L�1b;��O1@�ӖfNí®�?X�kp]0'�f�7�u��a�+��uL��|s����pi��4:f��&�yb4�x5����4��f�š�u��g�uu�[��q�\:�q���3��~��\�9o��j�
}��U��wg�Ow�q$�2Ǎn�Ҙ�#�t&�#Rk��G�K�y���/����/S@ܼx�
<L�i�]�ƚi��CCCL�4zttM<h9��L:i�I��[t�	4��Ƴ\>8�y���y��˫�\����{����jNۨ�𹷂a�P!���4�<<�����.��5r�iWxu}���15���k��x�b��A�M7/��è�&�4F�4Ռ�g&��ɦ�_n�����i��Y�[�G8<%��<˦�<M&5�u��"�+���Y�]n|Y�π�10
a�9�[��������x�N��@��$d�t�]&�.��-�x5���p��K��OWGF	��j�i��|&�i��nY�.�Opi�]/���fC�A��|�/#M4��#ǎGY��LGK���4�K��`��.�WU��M���_��ĺi��0��Y���[��3Y���.�e�ƗLd��	��j��2`�.��f����M7<Θ4�x4æ��y���n�U�f�n�M4;�/�ti}�o]]oSK��5�A���~sO�]&��	|K����o�5�\�%ɦ�4�Lc&+3�����i����p4��|]#O	47
5h�`y������0i0i�iq�WK�	���$���s��ux�y��
����]��]&4�Ly�&�M.�$�&M'��2i7:�Ś�]o�5��5˥�0t���~t�M4���</�>��'M��~o4�K�n	����1Z�s�>W�N���u�z1�M|P�]Gћ��.���$�z.�����CC����%���g��%�馓Ś��l���]u�[�h��i�a���MD��x��0x�Þ�j�\3����/w�4�ˮ�ޚL�:i�&�8n^C��L�0x���<���LO�)��wS>[��n��k?	���tɡ���K4�&�L��̷Y��k�]|WWžk���
4�t�&�����r�9��F��cO	�����iυ�]q���3.��m�x�X
��M&��.�2oZ������ܵ����_���ަ3�\�.OɃĺO
��w�n�}�4��~*n\\4�f�.]u����0�0����M.��o�d�tO�&�.���4�M4���u��\�
.����k���X'�Y��.r�r5��f[��K�
�3Z'��-ši�f�[�t�&��t�%�M4���|۬�x�Y��5��l�i��_����4�ź.I����|��,�
�w��4<K�'�Y��qÄ2�Rk��.��'�:�m�{ޜ���\u��]�Nu�]n��h���|��x]u�]u�_GL�M/sK��<M4�Ox�Ś��]o�&���\kx�
ox^�f���:��8r�f���:��u�u�]2i��|��o�
@�u�[���=��9gW[��d��]ο.�w]nOk�����~6e�����2�Q�Y�_7.�-�%�y?ЗI���p�&宣��u�x�$�x]uWŘr2:�\G��w-tj=MƚLd޵�v�G���5��3����~n�_��w��|���*j�(kp�Q�b�
��]|n����]|]w��@�D�񿕙u�]u0�]wpL�iX�9��<O=��~����8u�����Q�8�j�������u��0ɓD�'Y�8���Vk��;
f�뮻���4|[���τ�'�t�\���+�^�r�ˮ�g�=wX�뮺�6k�0˸x����>�iz��_7[�3]3]<5x�|ι<M&��&�fM.�K��Cx ���V�}3D��w:ή��kn�W��\���|Y��5�B�'��y.���|J�n[����p���]p���n��uƳ[��|�]5���jjx<��
MNf�&�O�<�@�޵r�Xq���º�o�;��]G(hч]u�]n�]u�
.�d�I�.�4��o�vk��w�|��x�k0�z��®5�u����w�7-���4�|M�u'Τ�u:��[��;��a���N��_z�Mu�2�r�Y��y���]u�[��.�뮷Ĺ&�g��]u�]r��]o�-�.���n<Y�|�o��,�q��ä�t��M]GS�d|�#�K��kSP�:�L�;�C�q��ܵ�1[���|_�Ś���3��Fj��u�\��/����5�]n���]uî�n���͗]u���r�%ɓM'�f�Y��a��u��u���]p���8����]�s�wo�����tx���Z��_Ѯ���e�n�w-u��.Y�u�]uë��k��뮺���]o�f��e�.��|٭�g����î�뮺���r뮸n����i�宸wV]���:�I�&����<f�˸��뮺4k�����<�����u�x���5ˮ�-��k��k��.��\:��]n:�ǁˮ���]p�u�\:��<�a×]��u��nw��q�8���q�;���]tku������[�.M<L���[�.�p뮷,ˮ�Y��K��,�,�\���̺��Ǜ5�:뮺�����k��k��u�nZ��u��uî���<���\��_
��+_.�뮹n�]r�]uDž�/���.�뮹u�.�u�]r�]u�\7�[�.6k�[�̺��]u�����뮺�|�:��]|.��]u����]u�]p뮺���ˇ\;�w��u�f���]u�]u�.���.�u�\���[��.��p��\�뮹u��]o��]uî�k�]u����຺�]u�]u���[���:뮸uîp���Mu�]p�|�uî�q�]u�r뮺뮺뮾8�[��\��]uî���˭�f��[���.��n�]u�
�k�u�]u�lÇ]u�,�[��u�]u��u�O��n<Y�\:�u��u�]u�]u����]r뮺뮺뮺뮹r��]r뮺��]uˮ���
p���k���e�|8�f\:��Ś�k|ه�u�\:�|�7���kt�O6k��k��e�]u�]u��u�������f��5�]u�\:����-�f�Y��ku���nuî\:��~k���k|ٮ�����,�u��|��뮸o�pi���<�]4������Y�
�O��.�O�%�I����/��  0@P`����>���o��Ǩ�=ϑ�3�y����<y��+�q;O�}��N��v�u�>��;O�^��u�a������?�{��:�Q��=o��:�9sa��=Oq�G��xO+��zO1�}���)�}R<=/��v� ��#�90�#����|�i�x�e�pr|/C�z���%�G��|�Y�yϜË�=OK���vg�=oK�:����0�#��zj���9�3�=G7��pa�ըxA�>��O��jt�����&�zu��z��{��:��u]��j�A��n��O�?M:����c�T�5M\����Ms��wwwČg�4��f���S��4���^�
J���+�+K��u����f�qW�?K�:�MF�Q��~f�A�ר�T�UA�_ԟ��_����M��X�S���?G�W]�R(��WSN�U0�[ʬ&��0��0�n�mH�ԑmTo^�
�H�Xa5~��xW^�S�^�GJ��U���i:G��VC�ƞ6���?A��?M:��.�jV9#��\����:��(��:��]�v��&&j���a,R�K�P��\
���?���:��jK��8 V�ܪ��4�۷:�)��m�N�L�)���)<.)ґj��pUƕ�?�WR�].���W#�*���*�M[�[�
����[p`�C5]^�ÇU�ӫ}�߿^�z5��ʢ8!,n�F�V]�D����6�jq%�QV�Xʪ�X�#��"Uw���N��\�U UUUUX���u@��ǂ����,mH��)G�PRn�]�X2������o.�p�4�R!�*��(.�@ˁ(�]�1�Th�b��UU `�T��F�Ƀ����J"UPa0D��IH�Uw��*�(��������UY�[�f����Aª���*����
@������v�۴�	*�	��UUTTT��p`×
L�U9qUUHpf���n�K��hٳa�nݛ6'������nݻv�t�۴ӷh%m�AUUT�UUT��z[[`��]V<h*�)AU�?���)w*�HD�T�W*����M9W^�V�u�{�����*G��"�+]ª����UTqU�P%FQ��U[�I�uo\���Uun�>Q���-���uU��IDpD����WV�S����d�w	ƪZ�U�cE��%�ݏ:�a��j��XG&vѥ:Ugi�+��Q.�
�%�R�p
�l�ЕGZ�F[��4��J���jM% RU%Pt�uQUwckxa�(���E0X9i�UunS��T"V�n�
��z����(.�]�8x�mH�z�����HNN�L80�..�`ɓ��90���3c��*���ɚ��Kd���UFUG�Vj�������k���J��@��+	v?�0�U0���]Uʈ
�mj�������XeRQ�eFZ����=�N�*�SUbU"U%UUUU T"UUUUa��N���w��x�#�U@a�%S��*�"8|'��y�l8��
��'��c͋k	�"j���p}&zN''e���cT^���v�F�]���
ݻv���.�X1u.�]Á�rq94��N[��en�8��0
����w��1U-my*��F�A��a�X񪻻\��T�"�NUWA�p9�����l1Uww�S�\�!��&	UW�xL�${�deܪ���
5P�a���Wv�
�>�����r�}�y�}��p8�q!����a�#���/�ɓ���X���r9#6�G���ra�N'A�p��a�>�t=DpF|���y���0�Y��<�{�9e�p}��|&�͇���'��x�!���Ã���s�9�G�3��<O�����ύ��Ò0�ύ�'�o���p�����aK�̰�n�_�|28;a���|�#/����0�_�zϰ���F%���C'�<O�}���2w~'�]��л�-�a�&ۻ��89?l�/��aG�c�?O��)! 0@PQ`"1Aap�����?�\�~
EJB�'������L�
��u~���.�c��0d�Y����{��Ń�2`Ƀ�1�o�g�v�fVx'ج�}?`��D���t��<�2`Ƀ&�
��?'J+��?B�R��]a]�C���2u{�~�S���.Y�#�i�}�4�Z��m��Ǿ��V�it��ݍs�4�8=�%�).H^f
1��cw��o,�<K�ix=��e�;Xg�&�վ�itcoI�n�.ƌj��/�BBH�q��_����gY��|�T�EJ���.ɲ2�	�����AGJ��KX�mS[��/à����=�I��=!����;�gC~1�{�V=�?�61�c�1�~9B�!B�!j�!v(B��4�5����!!]��0[o$�$�Γ�O
w��^6���7K��WE�f��k��ݗH!�c�N�t���G�=�8��ψ�\��u���:�|�q��;�����" 0@P`p���	�;&d��?�{�T�1���;��9�P����{�;�9�=W��ìs���y���z�I�׌�Ð�6���1�{�a���a�q��7�S��>�ݭ�݊�,xs���=;[�]˻����X�G)��y��Q�Ρ�p��|c�qg;�V���p��$a���60�1x�!�r=G����#���Z��zl#������8��N!]�A�H�=&�
Zt��i��#��t'!��m�/�t�|��sk��:M�C��[�a��s
3T�?I�k�g�4�[*���q?9�i�4Gf�Q�H���:u��t�N�4�N��!�������s�].�D�4��.����ݍ��~I�.��g�?/�-_�����z'�%�ۣO�~?����kӤ
CMt(4�(L1�XƢ��r�UPUi�4�@�%i)+N��x09f�tj�_��*�����O�GC��'�ꁤu��O�V��+H���0�t��4�pBj4�MɧO�[[өL���0���U�����iMCF���O��wIv��!)�(*��pa>R�
 ʲRUPo�U(,p�F�V�֪�M?!P�AeP��� �P�݊����Iv$�a݀�(���I�+w��6������T��`��U@[v��m#�X�@�*�P>~4i��H�
��KW��+}�*�eM1��m��JJ�#�S)#�Sw��N�?�*��!w����]�).�*��D���*�5I��#��J��T����g��@K��v�l�`P2�h��eUU�%Q�RZ�
�&.�J�����C
1�\��d�8��[U��a�I��UUUUT�F\�%&	@�H`V
݅D�2�ͬ��U��[��Q��jK�a�J[��L�$�07v�������~�ln�l]_N�W���ө�wb��H�V����*�w|&Iv�.�E��&En]ݐ�	k�__F��Q��������������
������ب�]��ݭݭ���S�?5)Q�����
��-ou�/A���@�ؚNa�G+v1�|?(i�3G��70�I��Hb��kwk+q�D��-�-�.�1
?&��J���#�w�8�;*�!+�r��ܻ�K����T	HJ��ñ�U���;���
�`�(���)+���B�"�\�҉
�[����Ĥ�PJG`^R��&
�6;͎IT`��K�X�n�?�������������, U!�eT�2⪥�B,w�2DŽ��i�&L9��@	�Ӧ�]�:R�`*���0�a��2�,2��c
81UTr�wr����rGa1�`���9%نD�Ta�Gc�j�U%x�e�ܻ���.L���vU`����V]��	wL�U'�;7x���uL%�3w������ַ]���X%V�q���XK[2la��������ݭݍ�]����
�%:|q�7�۵��F�̜�%Q�,"VN��8�k�*�3a�@`��1��MC����3�nz�UT��a	p7�W3f�t*��2��T7������O������pxA�#*�UXa���}C��U@悪���kd�#�'�<J��b�ePV�c�v��d����tɚrGe
�v;�≃���+�Gl���2l@����	U��[��z�a�:v83w
�681v8pCc�0uov�pvΩ�ɇ�uO�.�x�\��an���l3w@a���y��orG$v���	3t�͏ck
����6���o0d�?�#��,0�SA�e�7$�9ͬ6>)�m���x��=�}>��q!r{�O�r1�G�0u�Xy���a�9�<�x�P�<'�l<�a�<3�a�!��?�<����<c��O&��0�x�w�.���&M��A���a�?�������2àw]���;��fuH�?�a�a��yN��pGXmpF����T�M��K��+! @0P`"1AQap������?�\�T�Ť+���.IY
�-1�#��t+Hz�g���"x��2|'�`Ƀ&6��}��	�&�3��kbB>۽D�a�e��[��~����|L0d��2cd���M6zb��Z}�����OWU'c�ϲ?�z2��k�t}���VE�"�uB(zWGŤ�G�zM'�Ιg��&�:�g.�U	�2n���1K�t��:�%��|.;Srb'fiIڦx�)���)��]��~G!<&xHz�-���m��=�vDVB����c�Y����c�5�γ�W��+�(��JN�1��ÞƤ/�_jr�[�_h�B��ެc�1�c�1�c�I�Ɛ����r�a��6Odѓ�xs���q���{�:v/)���'"y9��=/��N'it�R�<u��jo���p�ʷ�/�F�y��^��z������themes/images/fabio-mangione-236846-unsplash.jpg000064400000355561151213255660015305 0ustar00���JFIF��C	
	
	

#*%,+)%((.4B8.1?2((:N:?DGJKJ-7QWQHVBIJG��C

""G0(0GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG���8�������׬R$@B"!$Q*KG�P�� @ ��P@H�
DZ5§��1��0C-��
H���	�E��l2S��,[Bּ5�h��&'S���C��-k_��p{p�<�e������W��If��]9�v~^��2�~�� "D!	�)�*A@DA@5 I�F0@1��`chdh!����)d�Y"d�Ű�.F�L≻����^��]�5p�G���<���R�~Ovo��i��z�[dr����|��P"�DB"D��
 �Q�%`0�r�0����8(�1��,�2D�D�d�=�'9�x�=��,�윱&�-�^.7~�/��7�y�t���9Ve�BN��$A)���P!IH�(�D@D
�`��j�S�`��`0C��H,�@HIf2D�p�p\�}��o@(����$��K���p�}|ז��|�y�9l΂ZN�	�3(�̋*���4��F@��H+ �0!�)#���c��#@00�@j��1�Id�k"y�5�;���?����=E*S�He&���<|�O+�=���ӿ�}f�Ξk$J�&r�2��6�,�����D�T �Q�@`0����m6F���`1�0��@�`�
�$���ɒ$�k�����^��'��������9^�l����`�����_W�E�Q��K�c-9ގ_
}>z,YSVCX�!H�����BH�� ��`Q`�a�`6��`0�8`J��Д�1�4cP<����D���y�w�>��/o������i5�X�\�+�������k���������MJIM<Ɣ������zx��s�5����@ȗ&]u�S*XP].�]1f�T�5 ��1�C-�c�!�((�5h+��X�0�Ƭ`1���9>�����y���<�K��zz?��ƭΣ`!�M��Y�~yq�V�=%��&�4��<���z9��o��U�^_Yҵ��VE�1L�w3D�'��Kڗ^vn!@0!�@��0p�`ՌpƬ�@Q$
���#Pc�����<�w�g�{�q�����}=�����+��(����YO����$�cp��8R���>��\�>x�}��F�G���DV�Ru���k�e�۹>�,P�@�
P�bi�0�0�`1�0V1��H�c�`��!�� 0 9����N_����j='���-������gCRV��E�a�ϓ׎�]z�zl흟K��u�+q�I��$1N�(��nr�=;ܾNu�2��j]q+42iQ2�E`����� �p�c��	`H5�D�+�`0@�`1�sX�=������vO��:y���}J8m	Z�D�r�]Y!�Rr}<��w<��cJ����.�yS%���A�����B呆u�zd������k��*�شB��C�D0	]�5`5J�5Jd
Xcɀ�`�$�P@�����h�zv�{i�~_'��rz��3���1e1�<�ZA�)&>���翏dt�t�]�����k��ۋ3�Q�ģ5U���E��^�?L&E���Լ�7�V7�.��@0�� �)c���Ղ�F
�1�y
	+�1��`0`�c��?\xN�}m㓣��u<}�}?���>��<�n�[9 L�(�:G��W�y.[��
�ޟ���r�^s�1�~�8sy�' �����>{�%I�c]^~���,�k��ߏ-�9�3Wnh�@�(�aJ�0�� $�2j
��L<�bh1����#����]�k�s��ߛ�|�nߩ��}|�z���3y��2PQ��,=3�彜z�
�~����\�s��~5�-g�Ƿ��X���\յ�u˞�z
V�%�t���3�\�ΩƳ���ז�[3j�o��8- �j�Z
�c��+G+�&0�G��5+5Q"qu���k���^�>�
<�N����<�O����x~����հ�\�
^O~2˩˽��o��}},���<~W\Z�C>�=<�;��6�6�Y��g�=X��Mux���G��M��ǯ��䚵��o�Ǽ��:{]@�0
Z
��c͐�c@<��`5`1�d�@�0$�h֭G���N~��Fw��^�;�ӗ/\p�u�o�O��}F:S�G���
b�z��s�����t$%�6'?����7�_/�GYlj�.��e����r=~L��ϮU5,��SN���>��޵�1��c�D�����ϛs)t�=
���C���Y�&1���cY$V0M^�Lc�@���t0��UN��뗊��Vw��~�;i�|�O_��o�w�����g�Z�%s{rэty�aVMK'+`�7p�z�o���.1��b��g~j9�o��
�q֟_���+ǪrGZ7,����GY��?^?;�?wZ��<�RSs�~M�75)�Mt�lQ���5�j�'�L1�XǓVՠ5c$!� �cE0b���s�lζr�u��zϙ��ߋ�龇����í���`�s�r�s����r���3'�OG\��W-�=�3{9rn8S�}�cν�>�[].�[�]V�ׅ8��Rfٮ�.�m�ן��/�?A�|�C��I��Uպ��ߋ#k\����y��`1�Ơ�`<��$
Ư&1��c��LBp�
0��ϻyv�u��Ԛ�v�g���f&�:3ץ�j��bS�|θ��W�Ք혳W���v�:�|����z��m�q��+YϾ<������d�[rëқ�X�:��粇d��q�&;[��盙�w:���c��CA�\�w�o?Yߝu�� yH��c�c+ �cc�D� �8(�c�AAUy��|���-���u�w/\�z���ᏧN��h����s���嵛5��
���e��-#o6z1���7��.�^~.��.2k�/��屜Z�G:�o=I�z�^{B{�&#-���j��kˋ^/^~�x�'���x����%Svt�e��ՍIw�o��-@�2BV1�XdՀ�0$1�Y#�,m6d��8)�
(ɧ��p��jW)���?/z&���ϙ]��zo�-������_,�f<�]E,X� !���f��r�޹���Mr��8uÙ�����s�Φ7�k}�O5X��=-J*��}5t����������k3��8��-�BM:ĵ�rOms���ط��N�V(�����0 P�5r6�.i��2��I�pQt�b�3�24#Dp�c��<���^�V�nd����I$�z<�����.�v�ϧ7�+����T�R<��(�Z�YF�[oliէ˼���=y�~�����o�?��?UUYR8��z����y�o�飣��71��o>�x���ľ��We���7�n�w�v���xC�˚��]��@��`1�p��2���	3)�!��StD��@2c�0��1@s�������7�g���g�ý�zZXW&7�����:�v���v+���U0֮�1�
�Y�N^~C|���M�C�]y�~���n9;���<>�vv6���M΢°����ө�׎�����q��g�Y�L�8�ޟ>�t�,������s_��yNk�zn�b���5 �J P�H)���0����.�t��s��^�z~�gP!3,�ޞ�<�}�&�b�ʬ#/Re�Vzyl��
��Z�3g������p��y������s�8��:<>��њ�P4�2��[��Ԙ5���-��F������J��2�/=��Y��|�z`��}Vx�x�~�>���l�4��
8c�C��ĆJ�ԙ��Lc�t���`���o��A�'���v;a�:\�vf�2����Ǒ�v���VA#,m���E�*ZW�?��3��Y�uw��O���˥�=߫�����&�c�N�����nq�]�5VpT�ߛ�_I
ue��^|��e�a�Μ�Vk�>�?W����B3L���OU�E��>�)d�ӆJ�CR%`8c�`0�pS����@�x���<v���kL�`q��ۚ���9�Μ8ܝ�'�ծ� �4T��ҹ����Ig�fzW.��n�OC�K5�C�8��r�s�ߛ>;m�I�+�H�n���e�u��l�Lڕ�T�fl�N^{2�ץ������y���~��Fp�9=�v����޼�@1��É4�NC�c�1���2c�Ɇ�2�҇C �h���G�x�}wU�[�O��ԡ��Қ��xU�w����1bW��wb��G0ӛ���>��'\�d�O����wrݻ�����8�f�^��,�c����*��I)$ͳ]֭-j8ĵj�gR�T�;��̜���M�n�a���o�dY����[z�vN���[�N�>�dYJ$Ʋ�<�C �d�Ht@����y�u��J٪�F����\Y�����F�n=
I�;�$$r��z��>��.h�l��Ye4��߯����v�K��2�ߛ6:�}�����O?��d܎+�2-H�5�&��])\���Y�b��Ե˵|>WX��g'�[��Ju	<���nG���v���ˏ|�s�g�I��Pp��p�!�h�0�c$��eh�H4�E7���}����gV��W���|�o3X�t�=�n�W��[�K{cGE8��M� ��n^�|����:sd�%R�v�y�����y<���=��_?�,���G��x<?n]��r�-�dl-�,̅�>�5�*�y׭�*��O\s9f�>V�ީ�w�Tp~�Ͽ�i���?[to��f]�7m9�(1�VH!�ђ�h�Y$��`)BT�R�HSM�J�D��w
EμW��y>�z8��Mo��k��q��٭{^?�-~>���߳��������ޯ�B �V.ܼ�����:sa�6C�v�p�ߍ��z��/��W(�ɮ{�W�ΟO��9ug��A��	�󸬷''W��|W�׬�Z�sB˲t�r\降`���}5΋!�}�X���t�=X}_?��9oY��~}�U�k����5��uq�0�S�d�$��p�c���J��b�M�f��y�=<�Y{|�q���_^�GU8d�;�$5����]�`�Mj��o_�޻	`�˗�?5�u*��\�fU&�=:|����Q���x�}6I����l�Oc�G�γ���s�B�������`�,Q�o7K���&���z	��z<|~���}��~�Yjp~��N������ng,�^���ӎ�
����z� ������Բt@2V1Ԡ:`� F��Q�C� #gՎ~X�b˜�5�1N��k���~�}9�
'��|���1�>���zrz|�S|�^{���ú��%���|����=z䖄��Yk^m�^j��Z��{��W^{�:=L�Î������y���z����|��ȝ#u�Ec�s�LИn5��꼞�U�����z珗�'���g+�7��\as�:�=��꿞�e��<��N̐� -F�cB�v1��!��
����|G�����Jp��W6��M�˝�j����:�e�~��>|�u[���_g��k]�f��?�n{l��N-�˓6�4�jUm\f��]��ߑ�<_�k�ٜ�;�s9��{���N=sut�e�l��y��>����\W.�zž}^oI�$�l���-�r�W����h��j��\7���c����~������ю������X� H	
 �b P	"�Z�<磗��r�XUj��1^��5�wIr���S�N���]|\+���/7U��͙�N��[����^�����g�|�5g+��nWn6E:�����ՍbJ��z5b��2���|��ۢw.f�]j�t������os��s�՟Z֖b�������]�+f�̋Z�Y�=|��q��;C?]�/�eF8�����w��>���ye��_�cGN�
�:$���S`8A@@�Y�<׫����x�5$��{����^aT��3�>���7U�iyxz��3Қ^~�zyc��g�]cO����ze�$y�\�y�ϭ�r�cQV9%����Zf��.�W[e�q�\�+4s-|�����̚o�X��n]�r�l�=??EoLڊ�V�ǰ�ʝ��X���δ��r�Wg���^�,k-x'�V8k�-���ݓ}[��\���z��~~�+钰
%c�v�%\��w/��W��]R�e/&���\��y�7����s�]x��MԳ��|�=|�y�˼�i��%�rt�n�n�Ե9g�n��W�T��o?N}s�7&�ĵ�ntMN(��(/�7%Iҗ��G:W����C���sU��<Wg^8�ע��k�d5�ؼ����c�yǩ�W.�\��f��f�׫:�zA�^Qח���#����N�g'=�[��������J�+FG`1��τ��hu���:MU�;ܡ}G�=�>�5����as���9�8Y�����^�G?V�ɾ�c��n���qڝ��׹�Ul<ꮸ��_��:�cz��W5�w��ٵ�\�ua����3��/�󚛫SV=���Ӝ7���}��zx����{&�IYhp����w�}��.�z���9u����:{�Y�
s���H�<o�'#=���\��1��_����u;4t
� ���T���*��=��t���zS���~{�68����k��ݹ�gO��C�%��nz�e�����5��j�z���kt{;>����id 1����:cʮw3\o_�鬷6ղΰ3X h�:N��~[�-GM|���q���
r�^oM�>�x�㏏���ѓM�ۋ0\{�y8�yv3ۥs�p�O��.�r�o��l�޴�t��=ݾ)(���7�NN;�1�\��e��^OO{�zlVJ�r��B
 G	AG��^���ϫI�5����[<�oI����_(��_<�������=�vHo����ϫ�s�k��;��|w
���]���g����Ѩej�+ܔ��ϼן�x��f��g'�f	+�7�ju��9��k-W����.�1��[��M��~>�Q��vs��[�/�z�k^�"D���<�x�y��שsL���v|���y(��WKr��껮��k�̽\��=:�Y9��q�U׏iyz�mΥ��Y���~4ь���A�%f��M��^�>�my}bɮ��6y�>�����o��篝�Ә�4t�V��g)����NŲ�OT�ߝ�:w����Dj펎t�����yj:U���IcsTJإ[�_�'��(��	���F��ă=F��aJ´��~}X��n{�/�b�p�>nO\����o����N+^7~=};D'�}_�����Q����|���\>�eb�^����k1��Q�����뿓���y��y{s�=���Ɯ��0tР #)���?��z9�n;yN�u����2s���2����_7Zs�c;:yk����m�ç��v�{��3�7�ig�O��hƮͷ;���wSS�;%����Ĵ�ϛ�+,�e��j�9�;4E��3�B�WTEZ�^���35M�3ޭc;�[�+q'G;ׯBq�����s98�'N�.r�z�O�rИ��X��q���=��Wg��tNzw���f��1Ӛ�.^�/��CX��Q�(���o��-: `0���@�K@����ϣ����~z���~��G�,��7s�?;��_o,o?��8I�s�6v�(�{8��t�j�:wݟ>\wϕε�ϯ��ާ*G)-ZGR7QM8ɔ�VQ)����]-UlZYm�N���6[��F�ts��s��Y��Ǫ7f��g鞮��^>f�	Vzdv��֧���+�=��U,r�z3��5L�=�3�˓�y�O��=W��8�׍w���X�{S�����~;�R��u�^�3x�o\���.b�d ��C�0��y�?��6�<wy��3���^�O�,�q&=����\5\e�i�:x��~:��-�{�$�Ν�}=3\��$�9�?E�3hŕ,�nZ���E!�g��I�1*f��$�3�^��緻��ۙ��59��i��+��=:�}3koX�0��n����qz]�ؾ^�|�;����곗l�����g���z<u���vg:pz�ѱI�ӣ���x9냗���Z�^{3�??��}���z@8P��@t�+@��>K�+_�ǣ��َ�W��kL�|g���z��ֶq��\�gRy�c�Y)K9W�Y�v�l�-*Ji3����|��Ze�!]J��'5b��%��a��rF��J�R%�J�בߗ����ϧ/&�-�;�:��
v�N��F��j�
H�9��YY��]�x{��|����+۫]|��>�j��q�Z�6�7è�8�t1Ӽ�=8�a�G;g�:r�/G'���|oQ�h�����i�	�m��������:���K��f9�8���ϰ�~����Ǘf�t�)c����t�?A�'�h�p�ާ�z�Xk5�]�#�^����c�n!�W&���mr`Ҙ�f�iD��g�;��o=�[���>�f|��^�1��z˽�8�
b7ҹν"�Y"�E��zgf�~/C��lЩk��.���u:f�t�Ӣ���>�~����[�Ӽ�x8��ߟ��׆�}
y�ڻ���l�)h�!�\�t��W!S����徯��v�z;���6�\�9�=�a�w3�/��t�ż;���Z�"Ju�t�K%�B�_?
��j,u�4H���,�YݝﺁY�
������<�K�=t5�o���<}^v�V��2�9��+�k�e�u�b;�3wd���W/'��z��m��8�p=��N��d�:=�E��>n��1��\^_��\�>�y�k&|����^�En�8u�:L��
�I���h�qd��79>�4:q�Ϧ��<�����*s�pפ������}�}>^�����X�QYϽu?A4��r�x2뒖��D�Eb���QB�ڊSx�/��8�J��;��ǖ�/K|֜ޥ����4�-������zva��3ZVV�s���K&)������ޓ��Q�r���/Nn��oRY�N��h̩ӝ7e�y7�5t�g������Ӎ��
�y��Fz���=�cUL���H��[
�=�~�nTr�mϧ��Ϗ\��q��xܮ������y}����[�R
Nu��-y�[uZ�b���
F��@���J!&��#�U�Nl��F�����d�cCtᖔ���ێ�s�>�WUu‘tg`���$�Q@�rc=Όy='��+r\h�@Y/W9��X����C���D��Nuߕ�O��U���+�V��<^����
�|�>'|�|z8�g�g,d��dQ��
��9e-����x>�^����w�_>
r�Ǝ�ŕ�N؝vg>KY��{~kU�v�Dʹ������<����M�L����d�VV�V(j�#n���ҙ�S�.y�MVe�W������ln|�Ny�.ƚv��c��ճ=��{q�"�mRf�+���ҫ�K���3c���r��{?��q��v8Fۥ�[Ӵ�ā������k�Н:���Y�\�w�xYq,�q��3��aZd��w&m���D��٨_5��=8���vg~���*�u�Kz8o����~V1��ӕ��-h�-��]���s�|���yz�����1+|�:0�vYny��K�����̜z�\��GG���_m)��{<��/.�n|�].�q������x陭�$S^����=cvN�㴪��J��+�޹�$���N�XIm����Vxz���/���e��9u��᳒oU�[�W�>��e1nw�!��[�I�yOg��ӏs�^�;���r�k}��Y,�NJK����X���z�[��5���Mz-��=���c}�ne���}��V��x��=9�s�#[0�m3���3���\=.~�Z��=S�L���L�1�������׎�o3�5:Ӧ\o~��|s$�-���d�C�Z�/O��Y�W�yy�2�?.���,��эx
u��g>�q�]Y5f���-��޾:nK9��
ku�[n��8�w7��q�t�v�y�����y=eϘ�yx���˧'�=o.��8}xz��c��7N�=0��~>����>�.�=�-�|���>�VߣƱ��܌�3������9�Rέ*�3ng���>^yu���yۗw��|����]�w�8󤑢ac�A���iĹ�5�|=������?I�'���6�wy�˜r������ֻ���O_.�}��Ϟ�K����ýl�q��n�>�R�~����qT�ڜ���N�Z�y�)��tݎ�U��>gO�������M�����Vl����=M���r�:�}�]4K�/>nnN�.�~ܻ��y�����o>�=+�ճ�oı����%�w˧=�t�󼞜&��9U1��y�Sg�Y��lHs�Y��+�>���W3�Y��$���ӕ����xSyiֻ\��ܰ��^�1�k��f�x	q�\����ͱٟGD�yn�[0�����9��u�>/��5���;]^���:����ω�\����ܻ]Ϧ�WW+�;�B]?OLJs�z+�l,���-�ꍷ�[Şw~f�v����_?O&}qmi�_C{y���r<t�f�|�8ݞ�N=Z�fi�ܺv��;s���ׇۇ���#|My������V��;9�Ïi��\5�ἆ�v�ӑ�v��Ms�2����޾}�?��''K.k�<������N�n��*���i���k6\�g����^\\��ľw볡<��df�{y�����k;��g<�s��N�{7q���r�μ�vgkOY�`�ۭ�>�j�����م�.���O=h���f��������2�sҍr���Ͷe�L5oϲ�F�<󛾙h���ߎ�#�v7鯣�O'�ӵo�ϫ.xf����[��ӛ���X�֏#����}8ݹzlv�/��}3ߝ*�w<�ޏ>�����[�4Ι�y��\}��;sܞ�Ǽx;��]m�tp����<f����O>�ϙ�y�^ooAҜ��Y͸����[���=
b�[<ݱ&)�z^�2h�����3n�T�3�w���=����7�՛�����}Y�sU�y�׏�GLQۏf��}.��u��B�G]��x��j�n�v��h�o��G�:�|�:�xh/ʆ�Ǣ�]x�K2��X����;�?~:�xUW��^�^�5�/�ۯ7=isǾVMOX�js��]z�]zmy	�=��^�/+�=7>��NP�x��O�|;��p��j�}�������5�.��/�?/�9���]饼����e�a����v�3��3�k��#\��5��ƽg�gN�KF�ޱy;�:q6�r�|�>gO��KY�i�(��>�w~^&�����#��ݫϜ^�Pg�fKϥ��s��
�zc�ە0�Mv����Q�֜G�|�t�'�ͯ�Ϝ����җ&|�B�uu���ͭe��n��}���Ѻ�|���_W�Ǘ����9U7�&ֹ��0fV���ry,��燖�>�Ӟ�k������GȧX�\=|}�ˍߝu'SS;�Fs5Ϩ�ʘ�w[�����;mRmj��OW�o�d�ӑ��OO8-���ߥ�:3\+��5��q�IJ�ѓ�\Ξ}�q�W����[�b�~}<��>��y������Ƹ�ɗs��ݣ˙z����R���?N}��?��������f��'mϡ*ǯ�wH���mcK�y,�g&g�΢jf��-�����7�޻'J�9���뉛GNWg~�����[z�♆m��'N]]�8Q��Iӫ/;�]2��}�M��՞u���<�9��j�V	�
ݬagd���~^�y�Y����۝ן��ߙ�>p����/�=�m��6g��s,ێ�z��Y2Y�N��6e�g��NS��<��=�M����g;_>W9�9��Mxq�����Õ|��ןm�Y�f��y�Zю��L�Ǣ��}
��b����6)����8X_�s�}>�G:3<�:ծzd�fLY�s�kF}s:W�e��s�S�|�	+�-ν��\���ֳ�s��޺����_>�nZ���_.w��~g#��~�Wn|2nĖ����f�Lrj�Z���XQ�o�7�ޞj��}w&���*��y��@`S䞌ﹺ8]xy��˽%�o����N]��g��*�4����/V����rKݤ�����],��I8r���қ�8�\�������p�����ӏS/�{����321̓�絫q��y��^^׬d���U��k34�\������o����
=d���s��^6D-�k�>_G�د+����t�Μ���y=-q�'��e9�OM��-�7~�Y�u�,�%����E�zY�N�q��9U��US��W&�{��n��Yh2�|K��>Nٵ�ѝy�l\�d�&��}1����3����댳�_
.�U�\�|����g�
�g�ױI)�9��������u|�:\�\��<_��b�kGLj�s��ѩ�:n[Z��G�v�%�ZZ#���r�~]��l�jӍ$�e���+�s���b�w����.ĺ��ŞOCu؏3=��5N�/��ُQz�����{K�895d��s��3Z1���Ji~u^u�\��J�.�cUI�sE̦����|ݽf�
�q�:0k����I��s�;���R���/o��
�JZ��U�fMst떩�%��|��*,O��p��^}O^�՜���\z��;y�<�'O���/�]h���χqms�㭾�}\o6��Nή�1q��ݟg><�k=	�+�X��s��A>�'*k�뾷���1w�o�:Q����k]���=T]8�R��Odm;[}�CFu�N��V��&E�]k�O!�x%��L�jЎ�Kӫ�Nw��������N~_M�y���>�ٝK/�{8����l;�G:�s�'X�H�`�-�l�ʴ�\�ϓ~l�1�OD�=b�;�|�l��g���ӫ�nSx`�ˍ���=�s9�9��r��Nz�>m=f&�.��o7����p˝S�l�T�4�_���כ{�Y?CN6\+�\�J��]�9�����e�y�gu��3��8w�ۓ��TRэ$"�L0;w5�'\��a��n��e����9s�~o��z�����]Ͼ.���],���\�b�,�M�޻}c���,da�knY�E�1��ɟ\�=6NQ�OD��r��|�����1����r�ں�f��|��bn������c�y��y�>������g=:����q����‰IU5��:6IF~�yqq�?�d�BH����'_;��^��s�ѭ�^Z��/\�:���
��'BQS}����0�
f:P�ͷ]e�x�~'/3S�'=-�����6x�����/��]����^�nl&��3��;�S�氳͙�̷ִHP�A���5$�uvͿp�I疯#g-�.i�U\Nj�����������=�nz���z2����6�g��W���w��m+t]R�R����q�?�TlD�aH�ys�z�F��rM��qkn���9��4E�4j$���u�I:y�=8Z��Y�:��a��қϼ�:u�CLf̺���I�D*��v�/.��+�9h�G.�֥UD.l7c~��wƙ�'g<�$� �#d*R�Y�J���і�8h���2��^rԟ-f�^��r�t�K��Zw3��y��͝�?&tMJ2�1�>G/��r��Ħ��V}���^~�#i!I"�o��|���RK:5���^�7��[Όۖt�h杀��ý��'���%e,�Vˮ��m�|��5�����}.:�H�����]y��M�Y�y�U^g�%R�5�|z�ۋ�o��sM�@SPEed�W$Nh,�l���]�n��v)��R0����'�'ls���;װ����}����[��<���c�sI�I�

@yyr�|�E1��c����KJ�`�Z�@�s��;ܺ�Yh)$�BN�u��t���eMWs!L�]	-7]}o��q�^��z�zn:�G@�4?s�m���G�٨��;ͬ�ט���ϯ&�d�-��^��8aX"H�-rE ��`�p��Ky�LJBI;>�<���8��p�v]�����μ�iK_��g������4�֕Ƿs��\w՜t/-�F�W<��/�x��F*D�MA8xu��n7-S#C0ԃ7Mu��y-��f)�ҽs�l�uc����L2y��Z���*�n6��Λ����v���J�g=8�ze���)�rE'&�ҽOS:gN��5��X�
���FL�i�[<�,��l�"CFu��9:���s���u�o7ˮ�:p�:�K�������>~�d��[9A�Y�Kes��I+�H�)
��3��w��OC%����M�OI���(�S0��]�y�p�kZ���dH���%�r�fv&���寢M�dH��EK��|��៤�}��đƛf8������Zk��M��ʨ"�+"���dNSG|�O���䬲^���>���-.}��v�ʳ��=d�R~�,�z��9&�Gb��n�wR��:D����fg���b���c��%��+�u����U���u��Y����d�WiL̗=�f���i���g:<�_��zN�=�s�~�`1�gʷ��z9fƣguzsR��':+��T�V[E���r�9��HؕH�SO(��ղZȒ�HKw���gR����2k<�*_X�+�K��j{�o6�?W=]�ij�7b�ܦԖ�l&��%kX�
W-�f��N9�������|�=U�%��k���Eu1�3=��m�6��}c.-�Q��k�^�\���l�ٝ�9�hC��ky�5���=}&v� �C<�x�k���G��i�sY,�\ys�f��ȭ:��˿��Ԍ�LĈ����El��"�q�;ю��F�U�΍J"�$�p�.V��xZm�.��}7�inR�D�GfBH̭Y4V��$���o�3��v�v42a��a���v���۲頂y�p��8��]�j$�K�/�LB�]&��LՒԝN]<1�x���x��glh+@�HF���z�zx��1���Wjb�����4���&x�ĺ��s)&�I�Aw����3���!*�UB,,a#�.��iW�P��5W�K�j�\��c��^_��=�־����̕)���DY5X�2(�e�,$I��Ǜ������1��9vNj�ϼ��Ƴ'��r�X�\�k�U�o:�SGN}����}9�����\�b��w�l�CF1
D0<~�Uѕ�+�\=q̰d��Y�Ϟ�wX�H�Y�:�}����;5��aj���,�md��R&B]F�o[�T��cW��6��s�x�\�O<}��=WS�֌g�aJ!h�jrV��T�"���V�>Nt���h��]�.ۦ&y�1���{�o>kY��K��Ku����g�j˓��GL>}���<ݸZ�I�s���1�$j =g�v�ݰ-�5���-is���Jss ���V]Mo����NM�;%�Hi�J%ad%��TN�Z3��+��%��/�ky�:�z�������W��Z���Ⱥ��X�Yº���j:�A,�z1L��v�Ζu�X�/^oJ���i�2���RE#Ab޺���o����v�Ue��#˥�������V�X 1��\��/c�������e�*W6X�t�l����Z�	���V�1Y�g���4-)l���Ecs	-Z�%���͸�,a-��y���j��{����y�ʧ+��1j�8�cUX�U��j�m�7)ed`y=1Y֛RF^��Mf�<��b�y��aq��� M�k��vk銺�ٍu�	�9�7϶��t�p��ƂD�6~y�ů��Z��8{y�MmT���.5�<��iiFl�m�]Kٮ�a	p��d�j�J(@e�:D��g����h�2�7&7��v�:�y��,z��y��S��a]$��O:ɮE-j9��x��"( �f��q�:�:�κjA�7yb��/Z�vfk�D��r��M>هo9әӜ��i,����t8zrs����DJ#�Z�F�)�}��zye3���w�]�VY.�t���$�O4���%7�ܹ�Q
��-W;�w]����Ȝf)�TgQ!M"��ؕ;�%I)Jr+&X�ufd�����F����<��5\���n����kRBX�R(�E
�1
#��d��k������;X�\�Lr�Z��ru��F�+C���ï:n+�j�&e5cS��goG��N�Հ
эB@��#:|���NT��׏G�:�9퍙�
*�W\yF�+A)��FȄ]��{o^��^nՊVq��i(�s�Ԇs]�[���Zc=��5(�)�jJ*[RR̄*�:|�4�g*�Ui(jj�‘[
C!RH�Z,�r@U�y��<�����"H��]r��4�ut��y�{�p�h52Y݌�÷��rItj��9I���I��y
�Q^Vow�soN{���y�<?������XK��E�S�|��;W��D,���Y��z"e\�5n+[�,��[c��mʋ)��?Hj
	,��W���V��RP�z�b2	4�N�����sDnq�B��QK�g&H�&��.z��2�j*�+A@Q�,m��Oa�t�$�0�Z�f��;�W:z�T3������k4�K2Qd�I]$	Eȥ�jk�5����Dr�9Ћ�E
�-�E�M�t�VB��sAYb��ٰ�@����!m��T���*�1[*Ul��M�t��Vg���sm`��2¢$F�\��'���)z�8��:�)�QEV����}}�o�� �BF��VDG���E�gLN�jF2r�R5d�R�&�%VIc#,�I
���]K�
XK�9W9n/\�JI*�v� �L�:^�!�u]������f*��)���d9����MWa'Q�M-f���am+$C剢v����:���3$�e	P��_g��N}ƌ]Jc�H�U?2���Xf��vU���A���uf��F��b�.^�]
kr��Zq���b�U���֛r���&U��E��[%�H�,�&m��ek&�,ר�uH�T2�
3kMs}9�Uwk<6y��Z��H�B$��ȥ�\V�5�p�׌YdDG4�̥T��/K���bԎgFi�hJ�Ab#��%�T�@�ABD�ʜa ��,����f�u�%B ��3"�K\�Z��ny+�sVijd�RJ���U��ͭ,�o�bIf�ca���.�#"6*#��ڦ��٧\�,S3
���[8��HȌC$Dұ�A�/��;e�ڥQEX���.>�u9�u2he
���ЈB8�x�� BV���
��D�QaIR1�ID��]i�ҊLɂ�P���ANR2ċU$WE�j-�����$��T�;��DWa�����t]�y��#r�î\=seR�rtV�̚�*F��A�3G��.�{3�&ؐH
��"5D.�Ʈ=�ϗ�'Y��2TCB$��7�8���VFAeJ�*r�ZR@�1X�D�k����djY�ig�ʛ���ʦ�͌�sɰ�e�P]4gTؓA���,ԕ��(CbU%C��7Н�$,{�[Ǒqd��R+��.{��(5I�R�A=7g#��vY6�V�jR�FZ�������z:��c�4 ���D�:pա/+Y�!R�H(��՝W'�ȁ8@�,^�֚ܨq5�s�##m,ʔP�U���V6],
��N�;VQ+�U��jJ�@,d�.�{�5#%Z�{|r����!��%�`5D&��zx��Rm9�\@MM�M ��[���.�y�z�S)�ա�R�~sY�H�P@\Z�@D�V"H�"$�%��Z�]�Q&���hqN��+�!S��Ws2-	r��Œ�&ethFHWW:��*YU����^�S0���E��c	l��ecԟ���9X6��ki+�)���s��f֩H�t���o�ˮ�B��
 �!5iϏ)p��J���Z�°��,�V�j	%+%vt[Ի��4���J�V��*���#QAgR�,�j�Ԓ$B�A$��,�/kwg�u�L�|g&k�P#C"�$j���e�B)nv�1k�a6&����]Y�ö5k8˒꥔1��h�~��[��C��Ӏ`�r;����D!R����i����P���,l@2R�,P�]j�t�4�M:��&� L���ֳ�ԉbВ�=,��f2��Q$mݝv��sB�U\�r�땲�meX�  $�jE����\
Ko4�[&�''��{+r��_nw�A�y����ώ�0������+B
!Q8kJp��؁^]ky�T̉��%��4��*�r�I�mo]tR��9��	�ASj���A]�@��:!1A"234 #Qa$Bq0P5@CRD`%SE��w��|p����@�א|��� ���A�YՖ�3���*u4E�Q�5����*�ӹG��G���wS��si��dt�>����+c��A@Օ�S'���u�:i.C~Қ��
�?ڪ���Gd��/����o���r�.!=��nwE�C#Y4BUI��m��
�<��#��T?LT}�;��TF�4 �9�,��"���G!� �*�`�*bs�תX<7M�En�� �����	��ئ�.�ǵ�C����l�s$4jf3IsP$pRFH���s�ߐC�]��ӕ �d�l��2���{)\�bh��C�E:F�+r��m�J����{T��i�����Ɔ�\l51����cutWd6L�\��d r��ҿKh��N�O�N��v]�9
�{A!>���lt�g�sU_����cI{��v��.��uJ��u
�X�g'M-��u\�q���U�i�i�]���0�ƀ2]a4�;*9���Iw����(�7)A0�
JY'�h��%��e�>I%kd�s�#���@D��?&�(^�����)�4G����#q����I�`�����P�o�W�'Y���{􃁿�5Ģk�_*����T���4�P6�Q�=Grr<‡����;a�P��r�@rp��T{
s�0��B6��� ÛKw\�d��F�g<x��	N�wu!m�����sq�S��Ґ
�ݾ���n��̳�%�`�P/r�;uo�^��J��T~eW/q—LR���{E�:M/�)�<�%C��!c`��s�SUvd0�
���
fnM}h�f����$�޴���l�d!�����-�,��-&�yE���
��7FȜ���X��]o�anV�k_�&\=��Cuu��T��}W|�vA/u�c�v(l��5KX,�+�
?r�����U3�x\�\�����S���{���/
��H0XC���4e͎&����ؼmv����WAOpj���#��Fn�xž�W&y�f%
_P��P�9X�����<F	t��K��	}�a���U;4F���O���e~9� ��HQ��;TqT�g�fhk�1���:z�Lu�;���e;Һi�L����r
�
oT��zu/����[�R�a�|Ϲ� �N>��md6�������Jmd�V�}�����V��jZ�T��ߓ=V���B���D��yio+��bm��ApZl��
���v�Id�E��A��(fk��7
qiS�y�
N�����(`X=�\�9�
�r�6��
/U�p\���O�[(XK��ké�:B�G�:U�_��o8\?Iծ�O�:�w��G�w*�(lA
)�q�ٳ��g�J�	�:��X"�����k[J4�$}D�1�`4�S#)ƚ���Tz�K���7��d6B�-�d�ၮ���@ ��}w���y�G8�U8���z�~��1b�Jl2;-�Ÿܹ��vQ��wV�SA�sT�>i��C{��C�3��*:��by�r0	c.?�۝����
`Z׽��T`F�����.�
:�qTʨ�ڧ�.B�����+����N���]$�ٱ�7-hr�L�K�@\�Ίw��{��!��^�#��dN���*	��7u?�w�|&z�m���g�l5,�OQB�\��X��3���`sf�%��P`��Wɨ��8F�Hxv��_^)��2_3�ct�68�&����f�wMX��r{)ʹ�$o����2��I��os��=��!�k#t�S�n�g��d1V�62�VzYYV��4���^�v��S�+�4�-M�����#Y���m�3���ԑx�ޏ�><�=sL�K�B���u2�&�l�Ԥs��s�c��{��eo��ap7郿L���F袻�z`���=I����ڀ�'���*�8��Ң��t�NtT�)�S��Bt����t�͆,H��W�7���M�W�����1�I+�yN7u�����掕˛��lF�֤Ÿ�9v�;��F�P���Y�VHV���VJ�~�������0�o��av��:�8�錂��+bܭ�ñV�\K������XE�cl_���X*�ݵq?8L�Z,fp�����/��͆��v��:L��
���t/�?/�k��--�
�@xRI���<�p\C�O�7t�nP��*���?�r��/�/U��@��?�9i�`Q�\Kݠ��<�{�>�$�$e��;�g�a�7����*�!�
gN��R��`���d��e�M�U;��U�p���
�����$�GX���x�.I[n��/��_t�_f�Ws���Cp�0p�����(#n����Q{��O~�������I�\��֦a�q/w�l�
q�6|�2g�:il�iJ�N�PG�rY�fI+j^�`�♶#n��"�V�2(�ܙ�U~�T��k�n>�[+�s�_9v�I�kl��c�C	�R$�J(�]�m���@
_t.HPߨ4�ޕ�ce�KYp�˺�t�:���6Tv���\���?U��m�
�ܥv�Rd��3��h.���6u$��;L���;k����\�=.��bym���?�TTGO�kk$���H ���Yՙ�I<N{��@>�I��}P��%��E�P���п��.�Jn�FCo�r���% I8���(=P�v�rQUc��N�*�QL@����� �D�ԨY$op���?<��yp�r�7��~7�{��Θڪ4x�u1<N]ї,�m�C̟n�#k�_��l��o�[������L�e.x�Jۉ3S�T�L�T"Ӱ/��8Zc6�f�~&<-P��.��Lq�m�`�-����˿+۔msρ�@�R{���?XQ�r�����6#��R��R-4�~�(n����ČG��#�B�m��~��i"�����K��~P���W*�H(�sg�47֪E��-7F&�'��~�$1�^)C�?�>��T�6��(��b����Ix=�R�5Sb�/��q&�HL��>뉌5B�B���0р3��D"@j�r6
�V#{��7/��8�
���M��PP��U��U�.L“�+� ����wW*?8@�F�(S"���W_"����k�+\(=�jOQɞ��I=�@�<��dXl8R�bm�$
P�{_���T��5���[��T���OI�T��ې$���T�m�@ >�]�(�D��D�2?)�E�����2j�f�i�ӷ��OV46Qz�U��Uz.@����[�-�<��2G��B�QA��C�)��'@���~�6�@/މ�P{�ʗ�rg�z�������-|Ԙ0�[譄[sc{����ҡ����������V��M���b���]$�X!�_d�B�*oI�!�"���������H��U��3T�)��6�N.�p�F���PQz�O軕O���3z�C�VF�4~�G�[��)��+�i��"tl���͑����Q�}W�힨\���lĸhQul��.�љal��#���H�$��z�y0P{��4}@?�01ֈ!}W=�n��TޛB�G`��k� �T���N��&���=B��~(��?�AE���w*�I�l���^4u�������ƍ��l�<�C����n��S������1��i��TQ��NO�eS_�/B<e��`
��x��ӽ��7Fq���]Xw�j��T>�X8,������V¶G+���QR^H���8��U�n���@!����1`[7@(��r�������nT�Іɇ����O�=7e7���0>gxk�Ht++��-��E�l���]�����[�@o�~J��Ƨ���ˇ{*��}YG�����{+�+�Lc�W1���
��Šb�>H�k�%��{a��\|�o��P�Յ�Gdv)�`]�nB$��F�r����اg	��d3um�o���E���h�n�-"��yʟ�&웸O���ܣ�
��C~Q���G��G��G!���6y�����F�.��^�W����V9Q�y����^*�QN�
��B�>��X��E�<�.0��
г�Z橠|.����ҩ	��ᘳ	��PiZJ�ZJ�V�����5�-{_���}�Q{І��#m�wQ��G��s=cc��f7x`)z.+��NYt�5����UT����F�-�]V>�]͗�N>�M���xr�C&M�O�jgd7N��t���(�t/�k�C[��Ա������S�\�m��Ȯ���
v��O��"�~,o�d���p�``^�w(�"��<K�
<��a�>��Y����(d-�qo$k�l7�r��2��5L���o|G=�4��<��8��K����W�aac�
��ʹ��
�m�ۺ�/~\_�T�=�S�>.�ɸ��ϱM.
j��RM,ɱ��(�|�ti��撮�1@r�k_!�/��id�FY��T��-��nU���^��M�C��	ZXI�?����a����҆oQ1�����b�>���p� }�k[&W>FB.��G�\�9�_�tr����g�g��Nh�`�Rǻ*pC�������/��2��1���{������L�^��-�\[ӌ��U�r|I*�ܻ��QJ�f����gA8~�Y��nc����NI����,��_��O>��h�Ki�ywԫ��s,���t�⁚樯6�}r[�&D76�"�0��t��$� �@�ͺ��G�mv ߦJ{~�*��A��6
�ۺ�''�*b�P�>ꘁ!�D�ta�'�-Md�� l�|�\�,��!j����1�Yѐ��l����l�{�3K�
I���Skb�5��@nB�� ��u�#�F�WN�s#�摩�4�W�E��[��7�pO$��n���%���"5@�8���߹7ܹUz���f��:/�����4��
���"�9N�Q�i�q���W�t�Ԧ��61�OVmM`�
��RGь�$5f�b�&:��d���CM$���@��i�Ra�_Qʕ�Ƌm0T[���&���R\���
�"���T�g�#�A@1�y!u�x��O,� ��BA��Y$�!���Z׉�B'B�!!h�y6��u4:�o+%�hÆJ��+���et����P��e�ƒ�TJ�xt͹k�Yp�<X�􃖗��D��Án���W�L��n��Awı>F5�}�'���}ÕO�yTє�jV'MN��Y��&�[`����E�i��fˁ�[��nuR�h��F����*���×�rSZ�j�I�C$�K  K,�'-�����2����.���Qp�7�
I�E7�U����uH2Q��)��AG�\�>�����r��U>��y��9Q�^�'F��
�A�<��N���Y$&W�]�Js���n.NPi ��-s�tl�i8���:S�k�QR4�c)�;�y
��Cd���o�?8Ed.'֜�q3�2�Y�]CO(�*`4��Ȅ�A�����jm���W�L� wG�A�k��<j=jb^�r+
O�yO��٪�]�˰@@��$1�����e���x%� ��~�/�/�����n �y�}����G$04j��Nw��I4���q�^�rfn�~ʘ]�Ko��l�!�)�9T^��O�
��z��LX(��Nӂ�v�A}�%4f�J/��Z�������=@�-G���@ҪdוT��t��!8G<�4���@a�e�&�	?�]1o;�]�N\/יq�$m�F�[+�D
��7�B��,:�����`��Y��e#�6����\U�h/�O�ܛ�«���`���,�5�h��X�ͳ����T|P4��q���L���Y�^J�1� ��i��hs�!�Z-X_e$��,٦p2�P��Z��L�`Xw@-�m��4��l��S�T�Ǯ�?��NEU�1R��)��(=�q=��r��u�?�z�;�W�";�aZ��-q@\�:jz�[�N�vBK1�[��i�ŋ����Donܙ��?Pr8%p�O*�-|���F����(X;Zd�������!\ ;�KM+�qԖ<H��z�1d�'��!����s4�R5���^��M�q��n+d�Y���"�h�_K�̝��L��	x�����H�ԕC����0�-��Na�Q�x�-j3�Yf�O݅
��t7\d��������kt
������'1��qt���%Mo�7�V%ÿz�ȠWd�F���dw_˝��=��4�l����%�B�0�Z�������yU�!B�@}0����oۓ6C��M J���.<�	��4�3/в	�hv<���fհ*�٩�>�\o��Z���:�,{<�)��=)c?O�1+$k��d�s7�#I6t��M�4��y��c�'�)�G(�����:)c]t碓S(*�46?��8#/���j�8��4�0iZ����YgXU�OOS����S�V�`��
�	��؄�>�A�خ1序����w)�"r������ �i��M �A���}�eI設��\?��;��e����^㦞���'��Z{8|#z���8��
T�q����CV��m���t��j�8ct<�I�r��+�왲M�y�����~�&H��L4������>�.[�/���Hh�}R���@~�5d��vV
HXS�3[�d��<���d7
9d���d~�
�.��U/�G�U7�*B4�4���is�
=H`��<�����&f
c�3]v�Tz�+�[�M�ha���6꣫�V:ˆֱ5�:��f�W��*��-�qo@�H����*v��eK�.ʣ�,�H MuˀQI�`L:�!p�Q�~Q�s�v���!({�^Sp�w��6
m`0�X����u���U�A�2��d���uY�G�7e/��sG|�PpNp8\��NM�@<OVo��q~h�Pm�$SEf:�_�AW��B���P{R����Yp��P�]l#c�s$h(j&��nU�	�pGa�wCdr�R�x4Ё�T�"�ڹC�1?�(G�b��C�xʂ�����q�ߊUK����l�ӷ
�v p�-N��QM�Q�7�s�<C�r�% �D%K�U�ޘ�_n�츞iTy�27	�lD��=�pUN�R��Q���eL���S�����z��H@��+-#�k'X��R5��z/�;,
X�!k��U�aU��"�֒��U�B��������6+]h�Y1�iO��Mo����y�s��l\_��u����ƍ�8@����Z+qPD��$
r�qQ�+���D��@��$��xL��۳LuR*(g��l���X8.����,a6F�+����^���B���Y�'C�<�PzMU�6ӸDmu#��{a�"�H�M�a����f&w4�"�–;Ul.��a�æ"�]?��r�e��*�A�bR��)��W{
���%v*��1E�R�
n�t.��OI8�AI�c\����j�,tqS{�T��H�i����`n�`,�`k�
�r@�!�;}�LOü�߄pOa	�15�tk�ݵ����T�B+1�a	6RfGY�B�o������d-���*3��L���_r���ƴ�6߻k��c�X���ɗ�c�y޸����y�[6<���j�"̉T�2t�j���jja�E�(�����m�VHJ��=r��):�"ЅS調RL��L-t��n.ֶ�
��YJ��,h խ!۶�����<�_,
���G�"U�
������J���]��ʯ<5���O�So
cE�Fâ�����i ���˞��)�-�;���4vC]���a�)}'&��)�����YHI$.���yh'a��.�]Qc5��ٯD�X�&l��c��Y�gYg�)�ES�ş��ڙ������
�G�Fo��-D�ؚ%�V���
�w�0>���B���츇�j�~HUO���E�Z�#��j��Q�L���as��mr�p9��.��l�K}I�NKT���k,�"F�j�c-��=�/+P��t�!T��_#ZҪ�Z�Z���S����O�Q�i�o�ꙧ�c*�B�&�ާ�)��Ǭ��_�����R��#_(�Hd���xs3��{|K�,�
/r�B��#�Q�2l��򲵖��n��@J��=�3�A��f��a����q«�YD�6S�RZ���-D�rB�ºlc\S!�
�Fب0�]�7@Yp�c������>�;��Ф	�2S�ҳǂ���P=��X��^�\��}˗
70٦�(\�m�?��~�J�j��܂���S�)����CA�{10@�ɕ%L�F�UK���c)�='�5�;��M�B�h�!x�C|��m,�(��\I,)�M 1��
kv���SNʛ0ȥ�	Pߡ4j���@��+ex4�U�
ImM��y��n���d���r���B�QlrK)�9ֺ׋&��Ql�)[}�h3*?r����	�
�r�˧�E�V�
�̐�Ѳ|M��dA��|
��gT����
�x_�j��\>�S8�,�%qbᄖ�	Ub����3�~�3���@���p���+j��;T��h�^��'js�亵��bIX
Ot�E���R�DL��r��5/�t@�@ۃ֌l���Us����$ݑ)��Mw��T^�)����Q�B٨y���\��׋�8�֣��S���=�ѽ��+n��k�p4�ښ�`|!]]]]]]jZ���jZ���jZ���jZ��Y?
�?�Ȝ$�R�� K�+?�@ـ��H�M6J��r�`9Æk�&�E�k~8��ZW��n���q�6D\G�P�a5�r!Y[*]F	��µ�]��Y+�d��߾z���t���k���.�ЬB�?%I��8O���+n�0�
�I���*�B�=�Ho��ș�	���+`�lQ;�J�k�Z��E�D��2�mSY4И���
־9��6��X���3�6sF{�($��,���xa�ݿ��IT>�)����%M�Ŀ�_��2��a��UF��W\�f�ʞ��L�J`��f�=
�c䅯��RԵ-KZֵ�kZֵ�k����ֵ�kRֵ�d<*����Ϥ����C� �D*�c(Qߦ-O��&9::㟋պ��7^&��_U��Z+5(|�Q���eY
���h�n��>�P��B-�ZŲf���|K{|A�fr�u�B���+�J2"�sk�㺤�|3@��v�A�b-E��7]7!�H��:�馎�]�n��u�&�-�4�&�Bؼ5��$?/d����7Eu�8�wGr�n��?i
�|��L��d(GQk����[��I1-�],�I�H��1���H�m#�&��1(1��7��6�_R�7�2�n�I@�����L��/�*8�%c~&�O���EY	cZ�ƥ�jZ���kZֵ�kZֵ�kZֵ�j])��s)�lo���f����M!\7��c�o�)P�|���o���/l�S�)i�nj�g�2�Ǎ����=��q���W!&,�����w�^�����'���V��2����	��H]��z6]&�:bt{�飾�q�f-4�\n莡pN��K�@aY����q4���R��fd�o�j�xt�6C��&n9��,�����ck�*ۣ�W�0��I�\/Օ�C���6]�/���h���HZu�'7��C��Oz�f4�c�N�V-M�`浐:�����ҲV�-&ڢ�ik��f�˿��&�Pb
7���2�߼L�m~^-�uuuuuuuu~WW��t��b&�P�^9���)%k��x�����n�ޘ��T�[�#�v.��ֽ�.���;��mES�\�WH^�ЋZ�B��ZW >�#���k�?���/���|d���_:�ϕ֙u%;��Ĭl����%i!���+.�,٬3��Ұ'<9�]Bx�.`��]�g:O੪��鄝13��U1:Sq�s�g��wN����r��
�c��o����7N&�,�Y6*�%2V?�W`���t�c�Y�*?*dwU^�����p:Q��S�znQ��
�����n([ԥa0��B��_;���R�RXL\�H"��qog�9�ip �b����soX����PX�7�˲����P�$n�
�>��#�ᦘ7p��
�N�\e\��/��4a�ʿ/�_Q[*����ܭ���enA;S�Ď�l�j��C;��E�F
�E�#�Q����YQh"�C#�wS�]�\��� ��7��|w;.��#������M������~�p�Y��k��T�Wt߿'U=�����tT9`�r���g
�
��ܢ�ڪ�Z�\���\8����ip��Eb��	1	�,�k���#��n�]P���]u�]_�T�uJ��܃��=�=�=���ζ�$l,�B�4T�N����Z��\*�AʃD4A�|c�HoÞ�ɣĢ*��N� �c}M"�YI��J$�w�ѩ@d�hX	�.u�ak�Y��670��z2i�M�l2�H1����C�� �-%X��r�04�f5�x��P�SnKKd���i�XJ�v� m��pLk�������^���i��͓��@A3�f^=P�����{vE�[� -p$��!��gwmd{�KYA}D6��P��o�;{�p��w�rj�ma�r�
�$��ݮ��1P�t^��E�H���]h�
CY�xRTFDleMkHkA���/@bQϹ\4�(b+��D6��z:L��EЧI,dn�n��_����W�*W��r�Jv��;R�P�L��!�q�L��Ed�ʍMD�&����W��j}Q �oD)��Q�VCuX]��6��F����!�����WZ���f� N���Y|�A��l.�ӥ�����7m+����<LDa�� ,�;I�B��C}_��]jY.Q��3&�f�����R�T�2���]��t��R�S�N1J�^-61Bdi*8L1��E����&k����JX{'�ė$��|!��Y���GuV�a Ym5��t`�{|�v�FW�ou�{��S)(��̇�M	��M��|n����3q`U�7@�$�P���B�T!K=��AF<fc~���F0^�$�Ƃ&�d���
�
��K���ڙ`�t��e{c{��WF��\�R���R�9�w�"ƥP�Յ%��A��VA��`#�(P�\"4V<J��sB�B(c�>y-ы�I�65���5���x�#i۰0�P�ԏ�Xv�J�&՗/������O�}�)�Jh�hE?B2e�sL&�뜢�H�O��YZ&�F����r��6���4A�hl���[�o�����ӨYz�Y�T�3���Sv(���#[���e��5	��
B�ʸ{2����ӗ/��U����tg��͍d~B�s�/�gБIQ9/���@_"��fE
Sdթ�2I+Z�Ѝ�q.�F�b���2�GR��F�����2�N���k����p򲮃��q0CtPޖ�9���6�/���(��(�Η
56.��
�;b
��%���7l6�ک���E�~��Ī��Iī5���|��So��ᤪ�	k�~
W�BT u4���-�,&��Ê�ET�"�%���F?Z��B�?��_��i�OU��N	���d��a��Ί*F�Fbm�d�EGK����fG9��Btx%2$퉳�ѩ�9�=`�a��pXW�p������1�T�|6Sh)
�������M"�%����,��?�uJ�ۇ��o�n�Џ��_$j��U6�?�U7�S&-�k�Z�e��*[\X¥��T�Ԩ��Q�9�QSze7�r���R�� �Y��T(�
-gb�Z��S�$�1���mc�4ƴ��j�\N��N>Tc���
� \%)���x�?��KCm5�/
ii.��{J��F������)�I�o�T��X��a�>(Νݬ9��n�p��P�?,���YU#̤��Hzn\4��8d�f^&���U;)�p�Q���#�(�S��\4���ZR�ډ��N�_�Rn~p���ESz�T�U_�Xݿ��M��FK�GЁ7ބ����5�<���eSj5l&s���ۭ�� �g/u0�w��̐Lb�CU�=���W~�#���9�;@oJ(M��0��|��� ��> �1.�k��`��v�\:�ύGYZZ��l�E��GU105���4P���Ɲ�g�L1�e�f�����������c3P��t�4�M�k�n6�I�S��YC��;��uL~�C�r��"O�[e/�R�7�E���H#2�R�UTu:�gV�6r\e��f�FX�^���
�Uy������O��K�/�EG�4\^Y�P8M�j�"�����{��+e
����°Mߐ��Bf^���_U�]��Cʸo�	�b��b��B���M��&l��#����=R��$nl-��(��U�K�
/8U���l$iT��J��Rjv*aqÊD��rg�V��O����
�s���Z*=����b�t�?�7��)���Ki��a�&�	*Cc��9%.!�|��Z���:�s�
���1Qtf���O=���G�tj��*(D�PqJj�CD�yL͘��i�}Z��;����Vʛ�
�vS;�/�r���<���i}�72eE�9q?P/�J}���e���} T�G�YT��
Iɞ���Ƥ�9T3[����еè�H��^�~�Sz�U_Zj26�9�i;X�	Sf�$6T_�Oa.Z/g	���^p�Šgu�#K$�Z��n��+ܕ;݀�͉{!�Mئ���<�C�y
�6˾��>0�uu&dr�`�yW�AI}f�ي��
��)y3�&�nTg��r�	�(}Y�{=U��.�G�S����F�<�U��
N�\���}&>'B �I�h\�ڪ����s����n��J3��&2����,�dDT���Y2�Rʔ�m��=�6f�#�
��ê2d�,�㠽����<��0�ʸ�s�Aa�F�|N!-�G蝽Y��2�FSj�GZN#l�.tT�C!l��i�3OB�s[��*���3E,`͐,l��U�����j��/+/=d��#������U�M*�Z�����"Dn�}UJ|l
O;�Qѡꠂ#-2t�

ij�m�ZEG�TިU1����_�:I
�׊H�דNl����- ��X��ʦ#$��t�@���	�*������r�C�
쿚�b�ߤ�n@e&�AI�9Ļ���,S}R���vN�;���?ݱK�9R{f*oX*�H�X,��7�z��9U����(}Y�vr���]���E}b�C����Due�"�[ ��D�zn_�R�j9$��cH$i��o|J�C����c��*�o���~��dф;ˤqvA$�BfԚ("��P�6�N�XG��>^$%}!l3�[#��9��K�6z{D����d
l�2D�82V�R��<��[��u`"��DwPS5�:��KɏԩGb�<��%�P��I���o��]Mn���E0�f!ir;C��=e�/��]�cK	tl2��0��݅��X�/BF�g\���>r�L��y:��Ok�@�R��"��\M}.�<Õ���y�`��2�Wc�[g69:��y���/'��ze_ě�
�Q�5�y�)�#��`@�-�\7�ƥ�Qʓ�1E�B���C�9p�Qʯ�=C�P��&l�;�5�.y���3���Zzj`�=b?�U��ظ�yT��-0�1���-��RG���\�n�8\*kC<��n���ԟF�JhXK��S���}8:dp���	��Ӟȝk�+|�Q��B� ��[<QJ"�*��4��p���fSN�*5���k,�Gu��U(�:Cu[w=��x@�ak�8p�Ѹ�-1,��!��j^@�<�L6(b5�mkI+U9�J��/�ʷ�rm�i��D����oX^����꛺�
O����H��Y ��'1(��xSP쨏�Uq�$���a(n�z;|@U���!u��܅�*��۩����Yad<��<!I�9Kt�6�A7Ι��0�p�c��s˲���_Uʏ�1G���H�-�h�#Դ#wT�=T���Z�y[��:����//k��Lŧ��ʥ�E7�W�0`"ƸX�m��r����JOn
.�-ETݥ�ʒ�Y�s�$�O�3%T���W>�6��tm}tm���C�rG�pt�'�+e�XX����
M{�`��G,����f��_M�Cn�!x���I���eU���ѥ��u�s�U[�!�?CSesA
�{�e��Q48������{J�k����jع\l�}��r�=&�(FR��@�)�D
o�
<JC�K��I���n�΂aa{%����6�4A���r�d]W���H.	#t6�(�CWU"�o㖮�K\d��o~Cu�� �H��n��. ��KN�,^�Ip��6%?�Q��\;�F��xT~Պ���xQF^�46�'Q��P�[�U,T������.c��?^e�Ce�*��6C|��:�sCߨ��l���2��9\ m'"ޣW��֫�e34�^7p�{��v�NT�&�z^)(-s��<Q�R/pj`f���VCk�
���Uz ��1Ұ�I��{�.M�*Nn��UW����,����4􋍮�J���8��>ݱ�@��J�����\���}G+d�&�l��A�/a
��F��
�y�Yꋏ8)�u�,�<34�4<H�=�Lf��l�M���?C)�HU�g�,�Y��-�6�T؝��y�	�;��k���7��,S�)hH�$CtvC��g&�G�{.��L��꾩�t᳣��ⱶ9Ƃ��5�ֈF�����\7�D�=w�/l���P>��Ia>�&��Q[,�-T~�5eQ�A�J�M8C
{�[f@wp��Z�l���~w¹�eiW'���Q��f�CU}
��H^n�v��H�Dܺ@���*%�ч�ֳs��W�IUWX����C搖�����^��#$�����<������
��Q%����(�1�P��k�:�`�J���ӱH�"q4m�L�l�{.�5�
�թ:����X�*�H�H,}G�I�w*Y\+UO����o�s��JK��F�<x��p��ce�F!�l/F��zJ���.�P��R�5������uP,���
Q��&��C̙�[r��XԷ�4�@Hu�-9�.Z
�m������8L�b+�Ե]?�mf@���P�qQD��Vƪ}Ċ��1A�O�]�d��l�)�'(}g�p,��p? ��9���U�'�M���G��QZ_�2G\���]�KX��ֱ��P�������uM=LcH���j���X<FA��c5,�f�5��X^�$À�Ap��1w&���@�bn���Cem����0�AW!e#��E7�z��;\�E������p�U���=��5Q�9A��I�1��M�aMN�vZ��8�o�e;���\Rݔ�W��D6s�q��T�G�'��6MCt7L�.�� >-UM1�K��X�b��-$��WrS7��B>�V��r����FȆ-4[��D<���4e���Ī}Ċ�۱D/#UO��N�~�/�)nXZ#q����B�ǞVP��D��X��:�xo/c-6�呰��Ij:�k/�~]��:B�6�C�1Dd���Xr�"�����SSHL�Txl���p?7�I��J?���0(%���>M��n���S��	�y�)Z�,��Y\����K�_��)xc#-�c��	�рol�O��ejBW�u�s�'`��P�?�ʛ�.ܻ)=��-v�VyY���1;`����@�/���r0J��j�Í�yY�B.���Ρ��u^<!�֟��S#:��d?5�F'��ML��.�2�R��*�zD!�U���r[!A�D�����w�I��I/��쯅C�cU>����1C�S��]�(�[�H[�*#�x�k٩��,>y��'L�QyW]33�@ڢ��QP�\����Nu��Q\9��K
�aB�����(�\������E��-�c@��&w��Y/��瞠�[,4q���)I���R��}���!�����0	2F5;�n��9��}�,���X�a�ܴ������M��Bх�`+��[r���<a��ӵ�Xʕ�*`~	�m�Ol�.��.�/ds��B�W+|̬���	r��j��q�����e�9�&����BǨ��"*����T7Ph�<��/P�	e]Y�Rk����*�*�/07��*?B5��VU�ߖÕ��T��U�;TN�5� gaܛL�n�U��U�F��9��T^	��xL�'/���UNȥ��(�{ӛMȾ4@������4\FȢ�2Q��訦lLrmdR0�'!�w�6F?�p�VPI,]`)�N�nV�Fα����])��������&���0��0O���n[%٩E�l�M�9�_us����[&�p<.����|�8��A���k��e�`0��
��Z�$n�6�L�uM�U^i�8�J���u�J���v��0�ϲ'p���k�����ʓ�F�&yi
hM���e8{[G��_�[5BS[(����@�,���ȇ�5��ٱ��s��UQ{H�G
w<����`�zcA�f���ZᏦ���C�!�k���0�[Kѭ��p��/�+��3$n�͌K�jY��Kl�=�8{�ý�ٴrf�Ӱ�ÒL��-���.�A)a�>�c����m*(�q����\�I�n��eu�ͷ{
�h�BB�z/t'%���C��ݱW�n[ Wr��ɛ�Y�t�N�P��yf�J�?H!�j=�A5��IA����bt�=�i��󟓷�2�pT^�5�=v|�Zdvc���ؘ͹���������iTϸ�@@!��>I<LpTM�0�h�H��wUO�]��O򂯌=n���A5��U��UA��IN��I�}~'3�&��'S�1��x�&���2G43��ߦR���!��D��n��O3K�Ŭ ��OY(�C!����g�V#\,���u�#���Կ�r9���G ���Z��q��V`:^�������? U^U�1���g�ܩ�����!�hR�ʛȊ&�RDn#Hi1;�.���a0T^�5�3+��\lJ���v5`"�ѐ����-E_��&�@�p X�@V
�n@+�K��0f\���%�����[4�N����r��M�X�����x\��9�l�c�ť&H�Q������$��ץԡ�����~J)��;��ӕ�6�d2@T�X�V@.�d��ۧ�=���cwe�.���h�q����W��hQ���:s��ծ��6
�[�������
.]0o�c{\+#��V�i6�����^��_eS�L~�@�{@�L����,���eT��aQ>�$��˺���wT^�5ŽF!�m;ݻ)c٣n�:Y�x'z#p�q��5	q��a���{��AE�)�ca��涰M+t9�3t\\�6(��mt6���5�	>"���
0��ƹ�Q��W��4�E%@�ųTH�5���S$oH6��eeg�A/���L�����Π��k�b���n,��e�`��	�����w��[@���:��6<C1����b+]���cS������+�D��m���!a����P@�������`� �R�&.���E��ZUMk9��B�LXʧ�&E���Ou.���g���N�ۦ�#z����Ґ����~��uTm�PPc��V�\�{�'�7Q�P��Y倲�u�*����*�]!jq���dm%Փ�`.�v��M�c�(�ss ����f��]b�E�-�{̏.0�wR��?�CW�#˨��+�W?$��ڰ8#�mK�m��c�T���.4��_JXz��
��{���5�!H��Z5�jxG&�)�i��jd��c�s.��W�n�p�`���� U�w_�����Q���m��s�9wA;�g'*�UE.���Zv�3�w��������s@x
���W��\��	!i$���4���:��ȞY哰y���ڨ峌fĭ������h���6*�/�}�#t�X`�o�EDp^�i���y����^^I7� �A!��(��g�CB��)���矅�T���)_�ҭt�������z3��ľ��p�Y�#,e�PVA�hf{n��v��|n�����2��{4^���mu��=�]�4ډ")��Z,e��"��"/�.B�����9 �{��tߢ�I;x��`��.��v}�l�醇�
�Us��n�R��C܆,��7EK�6�Xi�3�˖w�m�h(0 �dՄQ%��m�VJ��Xdym���쬜�. ���d�u�o�����U
��Tı�R��
b|SZ�z��۶���s��˗�ZA<�@j+M��`��ը���
{�4�vkj��B�T܊�D�	_#A44�p�#S��k�$��GP
!���E%I��zX�N�	 �.l�����4@a�����T��Yl�ʟg]{�����g��R��7��Z	��&�=��;|vV�#�l;d6ɮ�rp�V����	�qL7OX8Z-��#}�:�v�imz����bB�'�Jn_�Kp�$
����A�҃>�P
��]�/U�0�к�q~YYS6�~Fid�)iŕ��wD�փu;u�m{DQ�o,0�=��t�`$��>gZ7�N;�v�9��kq	��|�-q��dv�0J���t�Z|8~�׷����4�@6��2�Z�.��VVy�aaqZcUB���A��Hqt}_���/bc6i�AS���'շd�cqRҶg�OJ�2���i��3�y�wE�"
�q�Ii�)�QJ���b�:���3��,�d77�����8l��s��!=�o`4��!��u0��@;�?��M9"�A�|AGdS<����\Kp52�2�e4]i+J;r���VVVVVV���B�jWOn��=��d2F
���/ak�<%��Z����6�YQ.��%��b�o�c�}5�����^Hz"_v��n�ZF�9v��2���J76���;sq`x[tp��aac庺�U��-���P�2
��B�{��18Y�;�}3�9�ln����p.��]sQH$u(i�H����S�r
�!ے)��,b�V
�T���,v��P�N!� F�7
�A����8�ŕ�1Ǹ�9[��d/�1�,���������3�)��S!�(880 یX&G�i�#��iZJ�U�VV�
��ΐq��jkZ���)v��AS<�)X�eee��@PS�O�
�Q?�T��d>��qs��	��e�W���(�.t9�:Q���T]vCN��GI31/@���,�D��~�}r�_�`�j8�4��&�&~�M����j�9�p��kN�3]c��ŀ���,�؍�Y��l���Ǯ7�ב#풇tm� ��mb)�,�����x2�ZPi�}8�ͬAA�'+6� n5YdE�/}�q�jl�-�:b��/�*IL�V!��m���*rwk8ZW+��\v��i�+��=�\�6Z�7咀����v��\m3m�O.��r����	�*8�b�U�����#S@.2I��'��~@�ܘa��J�X[g=eS�ֹ�)�1�J�2�O�K��R�hlR�Nl����++./+��r��;��’V���Y�0<�E������$e6f��Hv��B�(z�ј�(~.��[6?��+}��ͯ	�|2`+E�f��ea�X�;`E���o��.c��</V����X)�, $.ۨ��5ν�΢\M����N)ݓ�3�s�S�	���^��.,��$�Ԁy-6y�Cې8D�C�\�Z�Ե}�	Q���WPZ��0�Z�7��5s�\�bB{/�]�I%���ܶ>�}iet�<��2� G�(}+�,mn\�
�
6�ctw�ph�%y5�6TS�/�
�]]eeeg��7��2����
y�B3Ls3�]5#���o`Ьm��!AW�M&�P<wZ�)aȭ�8B�7�J�k�.�~�� ���8]��6 �Q���(j8�p��(8����#q~̿wiA�_�ewdu��A(~t���G٦�)�¯�^���GP��
��]�M�2�.�����-��#e��p�+�,�������77
/Y�W�lQ6.AI �fY3�%��ѹ���3tH@_�o��("��0M��-�1�c����8=?�D��9�Zæ:�'�m�H_�]]\�Ej(��W%�PI��s��5��M��Z)<�3k�+ :��,U��Ɨ�y
D���Sʏ�#��������ă*Aà����!��"����ai!Fͱ���"�X(�s��^�6`i������ �mkn,:�n\���
�}8A�^-8O�Z�9������;w�?+,,,+���+�p���ʷ.��"����C0�I��z��
�ū�����U;�eP5Eu���*����/^MJ0[���~e���j'��g��λ���B�v��7����P]�f���b~�d�g�2�V�����*���j���K���]$��il�'�eە�[�pož��lo6�et��!-)�Ă܁l���^����2zd᥶�]����2��<������
��u���͐�F0w��Dtå�,���6(Y�{�`7�
.hZ��Z���֥�_�%ex�4F+E� ��5���殴���t_!v�
�c�n^��~H�n��CE;5?$��X����G�W���^�
r�cq���%��֥�˨��k+QW++��c��SPZ{������Ϟ9��-�`�i�_�f���
��λ#��a0�_�]qb�pb��j�)����~�A�ӶM�9���[�4���盭C�t�tkx�EѰ�k�)�'ɩ�u?탵�C_bE��}�[_��
�iH勫���`��e�Q��k�4z�+�
�q�$����is����7[o��Xj0�I3��IIlm�G���+�X�v���[��O���$�7WWWWW煅�p����E�ù��J]�i�=#�f�=��I|���q�|�w^k�[�n��s�E(�\#nS��ݸ ��o�����倠�Z-��;�R7͵����yƔ02zw*��#���k�ഛ��􀅐"���}�w_��/�+��XWW�\+�k��1vf�"�|I`�gፗOy{�y~X��v�6#|���7
�D#鱮~��]]�]4�
�Y�KR&�/Mu��*�i+IV*�[�6�}�@�7a3��kE�*�(�A�ȍ�+ �"�v���
k�bȤՃ�H�dI��]�ڛ�yV�]�����.���S�&�<�9g�Y'1���[(��[�呾���w+%X�%i�O/��6e6�(��r�5JlȣlAjW6W*��I-�2C��|� R��I�-����$�<�+��D��>R�K�.b�ת�(r��֥�k]E�]U�]U�Z֥+��wT�r#�6=˱o�r+�-��m� l��E!aMpx�2�]�����"��?.
j��K�SrpZ
sH�!q`�5�l?.i����+A)�D�iD\`VF���ʻ�'�e���nV��X,"Tt��F�?���k.j*ˎ���\�`Y�i�>L���8ͬTQ���p���~����B�b��;�Ʃ��p����+JҴ�|�I��n�Ð���[$r�����A@�����98X�Ƶm� l@r�c�w7v[��x��4������Ɓ��`7Ư���{
@�R�+�pW�ut��Xc6YYY�I�
s͛
fJ+=呱4�$Ζ��2�\N��7K͏��ACk�
Ffwt;�ܻ��}��B��w��wZ|`�O�n�-KZֵ�Ej*����G��
�p�J��VCe���j���-�W��"����r��[��@��E���F2oؒJ�L��`��{[b��!dH]��9�+��{�����u%�Q�0�[�<� Bs�ɻG��ξ9�e}Q�|p��1�a;�U$8Usue��l�<��ʑ�*�y8�E�u�]_�
㛀{�<F	\�hm���@�=X��+���婎�f�E�@��/��~ń`�ܔwB�)Ĕ[� ܛ��c�Ử�	�g��v�+��>7l!���ʱ(��o��%��Mk��t@fB϶�߽�S��"$��j�qo���T~}(���I���&ܛ	-IL!j+�����8�5�A�I%h����+���r���qz�j�a��u�n�v�9���\���p����	�	�s�lヨ�4��{b���ط�m�,F�[uN���|���u�jZ��VVXW=�g�e.�h�lB×l�퍤�Z�.��BpI;��~R����k>�Gk����"d$�8!�93~[`c�	����e�+�̎?ܸW
�RԵ*�D�$�E�*V�[�~�lZB7�e�
�OQ�Xr,��}�
�3$v�W
�F�H��-Fݰ��pA�Y�6υ
ѻJpZ��WAvC�+�c��AHO�P-k ,–V��_4�l��2�rm��Xn�7�h,;!��P�6Q
RY	p1�9A3-��ɸ	��ɛ��*�x'�o�����R�������e0���~x�w�r�Ǜ�q�\��!v���ݯ1�1��i�ؠG|)"	�cN~���8&�����X�d� !q�|������{�r҇+�X��cL�̧�E��d��+����$��2����H<\�&�Yv�ܔ7M��G`�hR���(HS��@�#�N�]�ߗe�<JB��PС���eeeeeeeeeenu�D�$$l~a��nV�;��+++�����7�8Yt��ې��0v"ą�A�n\���٤�Fr����=�\!q�︷`�e~[r_��L��1�o H�
$���|1nH���l+�j�#��h�I@bò�!�wRO(5�O�/3.�~,dÖ�AG��]m!*�r�jWZ���jZ���jZ���jWRE��OBc�����]0�(��6��6��<��� ��@9�-�"�� �놸q{�[��{C�Nf�gh�(i^��	�nl�ZF�lӯ���W�H'��D!Q1A a�"0Rq���2@BS�#P`���3b��rC��cs������	?�c������r��_g�l�-4՛3�sll�b�:�G�[;/v/�D<�S�)TV�n�2�l[;D��M8���Z'�F���*Ϲ�b��:�Ǵ�N�qJ������}ݙly�N_�y,ɨa��]��������N�S���%ܵާ����C��cA�c��_����Z�
l�W~��S��$J'�Y-�Se����+�l"p��͆|͇���f�uf�u6H�C�C%��!G=��P³h�k���$���-V�mX�9͗�\��(VlU}[2�
={��)+���L��9
�v7��E��hQ���F��8��M�f@义�!n\�ר�N���<�OO��$�K�Xރnn���?O�
q[D=��o.�De�)�;�q-F�v&�f�s"o͈�+RQ��B&��ݦA��ɕ�G�.�����T�<E��&�B���fc����mdu'/�s�?b��m}���m_Dmb6���E�m��6�uF�.��%�m�Sj��m^u흥�^fN�݋Nea�CއG��b����.�<������5�g�H�E�smͼ#��]H��D����ċ����T5�d}K�P��js�H��p꿕�k��l����f_��c���1c���
.��E���?w��TJo]��#r���;1{Dg�z)��h����[+H�|.ˢ��*���*ˏ�(��J�f͛6lٳf��6l�B�:{~#��߁��hS��M9��jwY1K���b�ں�Hn(���}l��Q��b�[�x����~Jly�,����SȗA��]�C6*p߆�ΰ=J9��b�K4@���j�NVy�"����}v�%o2q6�+͙aJ���|-�U������^:,,x�k��r����x9D�kBPǤK#MR+�c�M�֍�T���ɵ�|
��Y��㜨�X[	�-H.';��_8,_��xX����.�_����n�3�
��P�p[T�����sZj����^��.Jc�'�׫�[��Vd"��Nr�›���&�N��p���ˬVI!o>y</KI\���ř�q�+^F\W��ئ�������(�r��N
���Q�"iG̛��4&��_C)Xo�5�(�Z<2ՙ`�s�g"�R�S�=lsz-F}ͱ�x4�C���,x^L�ny1��S����(���2&��e�7;P��k�$�C�ž�A9yfNS�a��v�2��������JU��ғ��M��y����[��"&��C���7����z���ܦ�K�<+�/���(�k���\���Z�~�jj�.K�x�._qU�ˑ�!ӟ��d�4�z�uu�ǀ�^��5�¸���u��e"K��P��ݹ��ʞ|�'o�(Q]�N��kj����oQ��e6u��̹|-�b�=�ϋ9�Gv�;ny�B��K,xK�/��nk����4ߩr�p��*�O8=ѓy�D��%vyi��>���f�	'��g�(mΩk7��!�
\��<5��;�<�)fX�
�a�}����.��,e1��MKR��>�q�6;��Ż
k���G�)�hKzy2%���c��j����_��M��!�F��,nE�sl[���o
P�1S�S��#�}��ٸߙ�[al�����t6�/)�)�X,o���?�.xW
˱O$�ܦ�2g�(�$���uRC��)���=��qj=�N��g��c�_�NrH�Hp�3�$.�R�!�y&֖#�Zp_�������S�sEp��%ѣZ��=�]���S�y�7���i,��k��RSe��]�\߁��vU�V�gm��r�ȹς�7�o�p�sYt��91MO4xW
˿����˿��"��7*Zrcݞh�+H�c����EǺ�D�fg�˾�V�ͻ��LTՄ�%��-�qw����/�����۔��w�]�����]��L*��*Q3�R����>_��˖�J�qK�F)��$U�_�>�r
���l,\��$B���!!"CB}E��
"��<�|E��G�]�5?-�
�rd2��&��-ں�J5�_�.*jN
��x[���N�
x�>�<m��|/��l-�,U'W1Q*��匸�Z�ď�3Ň�/�3�$�ȔP|j���tlUY�/�[�~p9!M�n�й�����[/=p�-���vG�nS���j����Ա���mB�=�g�[���gO���o
0�[6<�/]T�)�TU=nVY��:��,:��2Ȼ��D�'Y�)c�v1OvY銟��X���*s��%G�����&��r���Oi:�X!5���v�Y����.h9?�.��F�h[�ܤn���#F���~[.C��'A�N������>b���i��}p^��K�DK[��E MՕJ�*�Y��_1����vn��̉�#�o)a���&��W#U�Oݐ��"�ܐ�n��$����T�ͪ��A���A���6!7P�ui?�z-9�&�7��h��ḍG'��"i�9p�»�E�~�h��*�Z���l���T�X^��u��OF5;ܒ݋uQ�'V�g*�d�
�<��S�~DN8�S"�K$����؆��iO7�W����'�����r���΃�R�]G%�^ndi]�m'y9�oy�/����sDpA�n&Jh���X���T��殅��U=8��!�?A���Ds��T���Z��x�c��=�"�Q!�DꞌrkT$�����<�^eT^Úv�δ�
�KS�k�"ޅN�fvVm�͋�6U�Y��Y	N'9؜�ʼ;*����ŮS/��;6�6[�ts����;k�V^F�l�Y-���
:	���O^c�2��q>�;�)�܅C
�'�!�JKF%7e�|=))���_<s�15�A�N
|�l�L�<H�e�C�'���!���gjt5���I�C�Ӂ��;nno�Is6��0܅C标$v�IjQ,����f^�|5�ٸܩ�va�,[�m<�O��)%��
p����e&�Z���d1l��)�=��f�d�TI<J��F��s��ȚmJ�2����!Rtw�$��|f�
���C$�]y
.Q#�����TNxg�"Q.y��<.�Y���=�鼪��Q*��&Y|a�<��e���54�D�Rc��$R+�<r�ȴ����-�=�S�Z/?�<���QI'�'�����U��f�,%�,_��,56{8��k��OI�p:��sZoP�nb���S	JIp���bX_������B26��o}�SR�R���/���h��ϸz�*�d(�GIe��3�d9sZ~%D�jK!M|p�L�eV)}�4���ވ[�Y䑞������ډ�.'(�(*ß��O1pD�D[�'\+!([О\X_L,ǦE���ߒ�Mf��˘�����5<��3�{Z�U�#XK�߆����i��as��ÔNDsVfͥ�`�̎��C5tE^t%��Ǫ>�ez}���Ya�f7&�O:�Rcނ���e7��A��F��[�i�4�hS�Il���bɧ�,�rw�fŰ�bع&N��0�y�g9gn;>
��Y��<77�9��FN+��vJә%%77./	r������&�i���^��On�C�MM������2��O��B�Dt�6~��я��]��Q4렛��օ��g���r�U�ۆ%K�i��yQ��f�~��Gcb/6�$�Іn�'\�W����\���Y�s4�F�B�Jb�)�lȶ-����:ʇ�b��n;<~H��D�=��{��vܲ�����Yhm[�zJ�b%$�ILi�:p�K�/��D����S3�_g���3�χ�l��(�Kћ'r��U�E5�N�d>��hġ���.�<?�c�X������8Zɍ�U���Q�
RUb݆'4�ٓ����r͊U�Ӆƥ#���CH٢m
��)���,)yЉD݉Ka|/�s�r�����������!Sz��G�E8��X�>Ӊ�i"�Y�b���1p�K�E�p{�!̹V�$iD~,�"6������˃�blj�$x�����U�)�v�8|��N�ov��M2ǀ�ܲ���؍tb�j���6��R�p����:�����~iލ��̾њ�)��c�C�m�V%��U4�w��^t�S��	a6��aƿ�Fi��<�;�EԸ��\�q�谓P�@A$���w«��i�h����#���8>�brf�&�tl�jd�\ۡ1s�Q����V��5⚝f��L�a�����п
��ڝW/�)���c��.?Dž��P%4v�oЛ���L�#�Qr��,|(�s!�\D[�P�y�͛''�Nd]���ttJb����u����ԑ��+)�M�V�,^
u4C�x5�k�$�px)u�/�xP˟�x|h�L�#����9��Ȝ*i'��õ��M]#h��H:�Rˁ=�I5�殏�K��'����N�x�ᘤ���(\����7-O'�#���6����K���2�?�6�.�rv6�(F��9��S̛� TE��6�zPS�}brN���K��Z-$52��
'�l�+͞&�M����i4,��R�Nb-1��<o�CI��yff�S�?ʏљ�V��Ǝx\�.�~�#�t_fte��D�Mf$�I�d\�ɑh�� k���R!t�t��5m�R9_�o��d�+!fʽ���~Z.�����$l�]��ڸ�Vx�'�n:�#f�]�1���!M�ۘ�;DNlE��yr%�F�����@-�荟��6{%�إ�]R+�ĺ1�=�\m��S!��	tkQ��ÔDŽ)�4ͻ�F�	5�Z�����)�/��Ď%��X=8<x]ÙȺ?4�r~���pn�=r����8X�" j��бbɕ���e�ݔ��QM��U3���/�3򑴪��H����^!���
�F�Jz�%�M���[�ԥK�Y���DQ:iDC���7�Y�f�/A�)�dp�A����� ]E
'�c�X�s��,�G�3i�6��LpE�@�U�xZ�FI�,��$��2�Dp1)N�2�жm�Ns5�9T_�������|a�"q4ګ n(�i�(Ծ�Ho�
7���5T4�(��̲���ڙ('�!���Ч��c��82�6$�~�IR7�%���|7]���C�E�!ēʬo��n�N�Թ��Ou�)��ĚO>6_���G?3m�&n��
f�|͌�S6QC/��B����3���u��N�s�j�r�g#��ŋ��O
��Č�L�K&l"��R����A��C�u%&��f��Y}Ս
M1��+?"U�N��F��J�ȤI��hօ����L����yw�����Cꄗ�H��mzBm#�}�R�͚>�z
wi
*k����]���Ϩ�VR��N��o��`ߡ#~h��b�y�L�����:�IK3e2�&Sȏr������$�bQͽ�=u�Ng�as��9��F_hE݊jGҢ���*/�7I)���W_tJ(�ѻI�Mf*�9������ޞD�<8)��
IhxX�Z�~�1��rd�Y����!~����A�D2'�l��5�ȡ�R8W��C���(�2�����7�{�UHRMg!�>�|�Nk\N��x���2����T�NYK��������
���M�9����ٵ�p'If4���GJ���I�N��"U�k̉�-��
��:�Lr|񁴳iQy��n�IȍmIo%)�BǓ�Q8T��ID�ܜ�NR���dX��!qʨi�)ɖO1�E��!,9q)���s60�f��P�%�~�o�#��.�Qu�O���\CC9�l���jMê�=��A�\�	���ds�6�,����ulzcr�<(�����
�ܭ~����e�,��Տ�S�nS\Ě�h䟙
܋.��U��
�~�S�&�NM_�9�J����KMp��%�
M!�&C���D��|l�O-8m�8`j��CNO8\�|���Хt��0�IB����%�a�B^L�{|�\���	u�)��fxW�"-_���]�����~Zc�k��|�O<�8�;Ӝ��9Њ��R�Y`�Վ��)�g�)�W�Mu6��6��fI�ƺ�����$�'�J�j�"]P��J�L���Ѕ�!d,LOb��I��6��
�'������r�6쐲s�5Sr6�vã̿���߅�5R�e��5�6�Ɗ�D�N*؂*䥙�qf��U�$Ͷ�]�#m�Y�x�p�{ukb(��"���nO���}�����N:�uC9��_r�.���*1Bᐔ����/a12͜f�#b��se	�Nd0ɵ*\݆P6(c�մ[��G���),�!r�騜��	I�&@��kQ�I4�'�MP��zH�}��#d�NM�*�!]�5*�ۖDQ�9�� �f��tгe�Q�SV?�
��d�
W�b�~�!Q�Ѳ�ʺm�'�I�L�8�tuR�6�g]�����[�d���I%4���m�����/2'Ssm�ڶߠ��(����53��Ҩ��6?�*Ң�(ZR�+2���f��Nk���U�/�f_���#1��bd?CgB��Eĺ
!�A�8���Wg�P�DKvW�Lɫj6��ҳ�M���͹d�Dm�Z��5c}�ʤq���L���|���L���L�3H�f~[��
I�q~8���V{$Ȓ�F�����٩�)�$���,�M���� ����6FȂ%�Ѳ}M�<����b�
�[��H�w�M�[�=y�4Xf��b�\2�r.XZ=��#���JO��SDT���N���s)��TO�DSI��N(Vn4}����
��y��hچ�hk�.�F��f�z=E�l�:�l�sR��j��7��.��.��C:SI1�7�_�̾
�rri������
I����
z@/��m!�o�*���N	��T�K��:6��&@��MP���Z?e�QJ����w�D���s�<X�<���j��������c��pD���'�8��M9��r!u�Bނj8s�T��9/�
u.�:�4G�9���8�gY�#o��'�eH���k�$��m��
�����qu���>��MԜqg�^D���v��:El�Hb�-5.Bs�*�ia���).�T���Mˆd�(�a��g�����.#¾���L�"ة��F�(�z�-�쥺����f�i)����TSzJ�-���z��cZ�,�������Z��,oV\��M����6>��u6�(]�2�e��rԉչ֘�����̸��,,r,\�6II��)n�tY<(Z���w�Ȼ3R�E���Ř��S�n�m)�r[�IZC͡�M$E��6�I�%G-O�l�#R�$>�{��A���K��Ԝ��R*m(֩�E4�n���-���;Ru�D�)M�V&�������=����~=͇��"m$���/�h�[Mɑ��I*�MB�1���FOd�R����O1hX�)�5	tK"S����,�,,].k5M'SV$�,����qMN����:E�����Sm�Ս��]s6�8��SZ��%�M�-1Z�JY�*)�������e�/��j��E�T��g���"�&����ՎtO���E�HM�*��J�(a��Y������D-D�rr���?���uw�"�����
o-�����Nq.O4V
!��h�
�z���≸��Z$*Q�\;_�7�8�rRMh��QU�ס$�r��^���E��Ս��&�Uĥ%�x�E��̪�k#��	r|ȩ:"�w�Y�r���sV,�h����I7,9�$�7|P����s��6M��#=xےoR�Hˑ|/���_�as�˖,\�9|�X\���G���<o�2�-蒒o���2���M�̫O&$��������\Ļ,T�Q����v">�،c�[��U�	�EH��fi�|�֜Т�60&�"�lZN��8[�8e�RK��uo'���Nt6mƒ�I*��2�-͚�z�=�������]��$%(V�3n�i�_�)��!�J�����N)Y	��:�fN)fh��AJ�S�4]�D��4S�$U�(9���9��\�piZ$j�M+��1&��|��0��I�I��sLU��\,4��R��Qi�|��Y3K�~7���c�l4e�w���%�XX��-0z�3��#‹�%1j��x���}
���4Л�^l�c�MɑM+*��g��FK,>���C���c�},��}�U5Q��}��4�ۘ���k�����(O�b����-�.J'�����xZN*UMH�P��Y��59�Nf�~�j:D�~O�W�:�QL�ՙ@�炬�&ۮd/#(p����ѳJ5�z���f���k"�䬞�9IO
Yr��C�ԫ���i��P�eī<ɧ,�-�
�Vi�̋�ңSM8g�j�b�PѬ,6��{���,_wE%!K�|.,���x|�e�*ut/���爳nZ
)����!qG*�5
O��Y�.��STR9��C���.Xy2x}/�F��N�^ck�3U����eRȂ&�?g�z��b�.%8�pƔ� ������4���9QB��UL��:��uB��'���3��C�S8���d�>�<L�
r6[��C"�ˏ�9�A�9M��UM|�.B���o4�!7���������l�-�9ㅦ�i����ԍ�Y�R���|/�v�&�6�<n{�/��2�ػ��Sf�}H����ahl�i�!��R���R��||l��b�<g����?#�_Gi?В�RK��M�<�%�˵V��*����G��
䳿}��ij���œ�wI����b��$��j9|�g<�7S3#�n��9#E,2�F��,�K1��P�'��s�U"�ݡ��r�ى͹����)�Y=����R���by� ������55����T?�[���T��a�<,�*���65U�<�2��)4*EQ�ln��Y#S,�0���a���I���j6R��:�F9�����Jr.�<,_�Q9�TM|	Q�	��T���7��kD^jF�k��QUV�3�}�B������H�A���N8a݆$��ړ�Z�yoHY�{�*c�U%(!���v�F��,՘���Cl�r��,�� m-QN·�r��;E��)�6���3g
[$����h�z�d[�y���Ϙ��p���T�|̉�2$��ycr|Y'3|O�TiL[��,4�՛F�����J�aw�˱�9#fߝ%�#�/���"�e,�,�����q\�~�&�1�v�?�h�EU�u�M�J�gl�C�����n�^%6�6��T�6{�\��y�hV�Ʋz�҂{���B�q穜N�SR�����{���I�Q��V�'�<�̻��tp��lj�Kɕm�����R�3	�V�N��v���G-Nkv���5����<�k�
sޕ|��=�&4f�|G��ޗ����ȕ3R����|v�_��B!`�$�.���uΣ���V%J��3�s������:�6Q5�8�Jf�vzȚIB���"��݈�2�&��S$i�2��3�dԱx{�7L4B�i�1x�<(��|�$�
ck\�4󙱉6��f�7��5��9�\��!�
������|9N���C4��l���)���@ߘ����Z��/�[BI�Yc/\%���m�
�Xr_$	(�+��F�$�
��B�ȅ(6rs����A��>��l�i!5uSϏ?��C7�����ԕ��#gCc���Xb�R�U�I�?�2��3�pz��?1ɷ��<|,#h�Φ�����24��~�ˊ|����tDSl����DM�˂�#�g��7:�	t�>�ծx�,�N%,��Qz�\�<.x��П�b����Lت����qh�ff�/�!Z�E!v�
��j-�iD�ýi�d����3�/.8b��c�����*MQ�O��4DZ� �(����\�MV&�ѩT�ya�*c���g�$-�,?�<Q�xg�:s(�I�_J����_�O�7�D*?f7�4�r�zz�	�o\r�<�(�<H�){�<䞆ћFm���E��EԎ.�VG��
���Lɷ&U��2�		����d�ᕊ"]�F9��x�\Ҧ_'gf������.(S|����ƫ؋5�ٸa�v����q?N4�-U=M�����)�E�%�<��Y�9���x:#=𗑢��^xHSG��i�~��'�+�\��g�R#��/��σF��%>�ȷ�M�TR\�ߐ�á�y�^����Wb�\rGfܥ%Û+5Vf␠j�;�!��g�s�"i�T�{P�b��kh���?֏۸�I�N6�.b]F��h*k\�z�Ž�֙3�4X����b�S�W`���]��\����w,9��Ґ��\X[�CJyw�-Ɵ��ρ�3SA�A����CF$�!˖��+(J+�UД�.j�2���N(��̣LJ��#g�䢕e�_~S�گ������h��p�"21�v�5�|�4�E�9�tџ���7+��E��,Y���yb�wJ%Y,��e��6�U������SB���9�&^�gܦ���>��Gkikq5��jz�1ХH�Ku��A~��s�أ�ɫ����Y��K�r�A�����%?�����+D�%�2dĖ�fWga���Z�늯�t5RFW�t2�dC��X���6>.���1�n�]݈Rk*f%�2�m�b�D����w|�-�̯���%��^f|!���<Q.�7������S��Wė%�R�&�5Yδ?i�@��G��9�ЧDmR�u�ͬ-��D[�M�S�H��"�c\ՙբ�ٻ�ʹ�OJ�g�vR�&v��C��ê���T̍��Rh���%�6/U�rA�)�X�b�[`�X�2R�&&'�L����,������+�"}�L����5�L^互�*��ɍ`�1��n����V�<�ҏ\5'-e�����d�q���ȋ����I�C�j.��B�{�y�>k��yCc�7���7U�Vy_S�˙`�.-g.	�]
�
g�0��:XTxP���'fO�ˊ��SC�[pX�O��J��%�k1���z���fx�
0�С��4g���ʻ�X숓�E��lX*#O�:�RI�1(�4B�[[��'8\��>ڊ
3��r���Tk�a�j���&�-��7�!I㯱��j���R�>�V*�����2�}Jc(A��!JW*C49rx{ph@B-�<m�74xn9�i��؏bxO����.\^d"B%ÔC��:X�ʵ�+g�p.��5ԝ~�n��z�l�}�K�!lz�}��-������V���S6���|x>ķ�9�D�I�l�z�Jy����hf:#9
�K%���fB��Ō�1�>pS"�&F�a�̚�'�6���)L��"b��tc����*�3F�tZcbž�i�d]�J�Cʍ�a<'��e��!	LYe�WЬWx4��ه�uא���{	���Y
E
�F��G���#�����~��78u�Q�J|�B�M`��JQ!k��K7b�Z�ܴ��J3TF�������Cu��fO<3jl���c�أ��W�=�1%�$�L�q$�I	"e<�Ԓ|�b���ɝ��RwT~�2�Z��M��BD�XHHH\��x��ɚ�X�8W;��ȑ&�C�+C.��hԬqv���ٮu}
���������#�̆-ڟg�n�')���D�\5[�1�c�X�����(U)��փ�������ق��Mj��n�����|��Rb�Lp��&Bg�B#B���.��̉`�'t5�!�R���p_�DB��A�^l�O�Bbb}p�Q<Tݐ��AO�C'�,:��un�{�NB�k>�F)��9��d�r�y	��"9�?�Տu/
��(�AoD�f�f�*n�^I@GT6�ƹ����rN� Q����&m��e
��{7����CI6*r�I,r�a���ڬ����~,��Q��d6�>b�.�!�KȓǠ��pm�x91		E��\�b��c�^(ϗL�3T|���%��Q�2��w�܁䵋�_g�o͟�S�$4��nH˒"��ԍ�<�D���{Ν4s�ɓRR��wlx<3�?�UE�;���K�����
�V(R�"T�$.O��fy��f}C���UYl��>F�Hs�ƌ��51ϑ���]Eč�g����F͵y
L�+�C�ҕ��W�*�.�!�cO�}N�P�*n�ޜ����H�^D�E)'=u6�I�C�{I�Irb�Z�
��$?��?� ��_pfp�
���̃yi��f�h�t��'CY_��k#2���WǠ�˕���dS��x�>���"^�)�
�2!�1{����\5���]po
�=�`�Y>�33F�m�U��Ŧ�?�*���k�N�����m�/�6���JDl��E��k��v�|��XY�U�6�OTm'�/���.�i]Uc�/|\�C�Ӓ2c��	Ls�Úx�̄B�/1�Q!���%�TD^�C�ٺĽX��!&�*aȥq�����b�W�iEa$���'ʽX�x3���S���)B����-�>��A��%�����9��I�ҞE"NL��D�|�}Q���T^̅@��JW��C+�
����W��M��L��Vǭ�MƟ���]�F�?"��Hjx6)�4&*sD,]X�.�3�
�{��,$K>�19�S|�L�7�c�K9����Ғ2��|���|Y�*��2Y�aF���5U2��o��
!�d.tF���%���
�C-_��Q�iIuE����CC����MM�
�CЀIy`���Q���'��B�!`��Cqy������k̤*�Ȣ�qdy>9�uv2�.Fz�2�<4k��,r�1pGNc��֗���S�B�
�dH�3B�e���Ps\�a�C�BDד+1�1�O�X.��rKS�O�R37�=Ӹ�/�I�)/6.�JiYw��xx�����[D���������pg�%�E3�
9�BL~�I�)zB"���c��)?1�`�YWqabs��?n�\���g�m����|:�������2��r���dg�x?�	�&!!���,h�\���؇.Ly
2����|tV�R\��
$)Bk����P��}���5X,�9�����Y��Xz>BB(g�}E�f\����
��̽FUb�]����셃+dj_���N��{JC�<._��n��y�Wf��g�	H]
W1�#�dP�	L]1�*M'�Q�l\T��R�2��c2౜9�B�L�a�?p֏
/���4�_}�eV�c1��a!{���/)u����m�My��}қvm�'�is��h?�Ӌ%�s?ԋ��mܾ֎�\�q]�j������uXP��c�؋�*9��S�D��аb�.�V�x��Eb]ι�e���˘���ϵ^H�ܨ��Rj�Ί|Yp���=����My�2��B�憺��1)��’��I|`�T~H�"��;�sf�^�ֵ9/���/~�'C3��G���M��@�Y�&�d��6�Q�y��hi>CEQT��)���a��e[�
.�^?sN,����\�;�wHֿt^hR|w��xd�D����B���!�3=9��EV��rg�uه�K���}X�E!K�ӏ��i�RXh�i�虢��)���.ٛϼ]�L^3���dȓ&L����9a��S+���)!1AQaq������ ���0@��?MF��r�E�'��;'_�i�&L�OGrL�������t�9t��?�U��y�]1f�~fM4p%�&����?M4�L`�L~!�LL`�L�
4���Xx�6��a{��9��9����;}�=�zc��BS�Ꮜ$K��pa��i�\���[���Y�ֽ��:��ā�Q�´r�NI���_��7D��w�xL�,\_F�k�{—$��g�\��)/)�5:�@����4���'���d�f̚d��L�2i�i�����=:i�������i�4�M�|&^�ȵr~�T~�i��`���`��L~M0`��i�M4�L�Ɂ�}��� �X4��`���{�0��b�W�|0a&������(��:`)�vY��^Y�)BM��|�$/r�+���2X;���
�<���%o�Z� �	3�n��/�xA�����#1��G&�2d�!9�L�2d)���M4��?3�M4�Bi��f�.i��i����i��4�i�
4���i�&�~!��0`���`��9�>�9�q�-���k.�
�e���&�:.[O�5Hw��ψ�Γ��ڟ'�s�S�9>pXǾ�Y����G�����%/5G<���y)�0��(���������I�J̚d�&L��2d�Oy&O�4�C�
4��O��M4�����~&�i�&�4���i�����0i��4�L��M4�O�`�~�{��00`��	��z)���b�b��Q��"W0.b��gƿ����3a�ə<92�^�҈q3R�Y��� x
?�L�v�y�&��{�������ƴ����HP�L�?��ߡ�U��w�4���˒�ɓ'��&O�~L�?0��4��tƚi��i�˧�4��Li��i�L4�M0i�L~M0i��i��i��{�p`��Ld���&/����ߍřß�_b=d��™��7��f@��v�Tz� �<f���y���9������i}�05�4��C6�Us;B���a��i�;�e�3y~|�`���Lח>'@��-��1K@>4;��d�39\���7��K2<f����dhB�H9O��&O�dtɦ��04�CM44ɦ��4���M4���4��i��4��0`��4����i��?!��i�L0`����*�
���wT�)D�˯>�8����sU:��lKG�>	�&�K�xg�'�يj��0�Q.0^��l_����kOeT�>� ��0���AW%�BRI�ă�!�el��ȅ�����<=�<S�.�D�7�֦\X�@��g�m�:|8�s6��>����L���*���g8��ߊ���}p����L�Ӯ~�'�'n��&���M4�M4�L�O�4t�M4�M?����`�M4�
0i��`���`�t���i�
?�i�M0`������OI�x��x�&��g�7o�/��	�kTC
(\�õ�s/E�ϥ�y>wu�����d���I	~��t�?�ׁ8[���p��
b�<I��p?Q�f�W2�5�:�������Mx��J�'��^8�*I�s|��/�[���5<��4���x�b�?��(��`��ڿK��#ڶO��:��92i�M4���`]4�M4����i���M?3L4��0~f�?3�4��4�M?�`��4��1F�Of���aq7��P/=g�/S��V��-"� �?u������P����&C�J):y�q�����w{m�(u�cs'�m�@}j��qb� c@���B�ǩg����\ߪTX��5k�C)��DGvmAgcy嬊��	��v"c��U�@��FDE��q����L\G��~�Y���"�����#��&MM4�:i��3L.�i��i�	��Li�`��4��
0?��i��4�M4���i�~�`��L1�����@W�M/�i�%
>Oy?y�����.�{�R0xk�t�ϳ�[x�_��kUU}��l��{��ף�t-K��Z��3'���b��{��>���g����P��=O��#�@��1]F�����y�O�K���q~��{�
O.��~����98J1�p=~��cO�����t������O7�cy	��~!��~!��4�M4�CM�M4�M4��i������i��
4��9�i��0`�&2`t��
4����M0`�M�!�z�>�2d'��ę>�2]����xF9E���܉0Ȟ��3���{z–�p��al�OZ�X�0<�ߌK^�÷��³�3�@������;X��ī\�-ϟbX�
��{Ǫ��eв���<�n���G��z�
�<#W�rF4$_/��A��K^�D��~rG��$���w����}c��I?a��<_?�7���|9��Z��L�4�M0)�4��M4pi�������i��i���0`���`���
����i��0~f�`��i�L���i�Qow��{>�q��F���X��0$L�RB�S%��g�A׈c��3�P2PU�/Ʉ�d�N���S��S��C0j��ʑD�f��U����R���h��1��Y�u_��(本j��G�[�AG�r�}���<��k� �"��p+�fC�LEo齸8Ʉ�=���7�2	����]����[�0�/��w��7H9ĭ.L�i��i�����0~&�`�O�`�M0c&`��`��L�0?���i�����i�����$���U�ߟ�s��'�)�8ԃ����}Y@�0������˅ �Zqr,G���(.��K���Џ����V#Ώ�?�b�?>n��2hO�>}c�����mQ��r�:�
<4���1T��^ir+�;�/{�κ�^�l�����#��ė��+���x__:�!�rv�=9H>o0��QL�
?��b���
U���?z���t�~u�r��O�t4�L�4���M0i��i��`t��0i�O��L4��
i��i�M?3M4�L0`���d�7��\�_UjÚ�_��]�@��RM>j��9�yK�'���]ڎ�O�o���R�������yjA)�$hX�5#��5�Ƿ<���� �0�=k���s��Ư����7u��C:�e\j���~�9y|�gE����a�Ne@ʌǷ1���Y�/
����Px��u/L��#�a���Zu{�����LH�_��d���=�1ϡ?�{0����fn�Li��`�M4��柉�L������`�
4���4��L��
?M4���`��2i��i�M0i���L-�}�4k���t4�������
i�M��s	�v���=ʹ�ֹw
\��i��Jj�"�;q�xj��P?Xc�.?�1,}�p�T��1���,��Ķg�wt�r'��J����l;2���y�13���b��Q�����W�Ne��$/�nQP���#�tW^,��W��|���'/��m���rF'R_�[�nj��à
F�8�ŏ�}��¥_{b�Bߎ�OU&O���0W&�z�M4\��0i�����L4�`��
4��c`�L���i��4�&M
���ݵ˓w�>]��<�.7���z.���Z�3?BCs��$�Ҳ����y�q�yy���0��&����Vόe�a��fC�c
�qo<�?ע����Ny2	�1��S���]�$?��>�[���+����!A�T��"|�~L�5ԌX�Fo)i�|h��܃��(�EG�������y��]����|���C��־O��ύ�_�4��	�w�����.�O�8�I/M4�M0i���`���i�M4��
0`�L0~L`�L�`��O��L~&i��i��i�yW��p�y�|"?߿�1��3Ӧ�|���N��
ʅ4⥀\�g��z<��&b� ||�>s�C��˂�5NS�r�,X��WS�>���#��p���y���8���
�<��*�x��t��?�	_�ِ��:~�G���G�!�����['�C�jsK?�.��oM]�>:ߗP��4�0OE1j]Ϛa��GS�,�3A����j���_	����W�r=�N��`�k3}s�P}�A�h��<G��xW�ת%�A��>񝕂�:i��i�O�i�i�M�
4���i�?���Lip`N�4�M4��
4�M4���L��\�̠2C� 4��W�z��M����)|5[Cp=�9��q�%��'��?���n8���-����3�Լ/��|�� ��:w����r×�
�D�A�/k�ok̉����P�>}�xmMl[��t먠|gN���=q�k��K�9����x�~--I;'�Q�5�ե�Ӛ�Q�����S�c��)����p��r[z"��
z�Ʒ�a~��
��ѩ��?�^����J��kE`�jӁEg�,u7��^�����B���퍪������`�`�4����4��
0i��4���L4�0`�`�3Ú~&
0i����M0i��i�/� �9���>'����fy���c`:+Y��V�O��1�A�h]��+�s�>~��0/Y���-K&(OcT���2�[��vy+��tb֚N��H�<{�d��;�}~3'��I>;��vz�
�
��֧ۄ�P��m�qX$�2Qˇ��K��Ѝ�+�(W�$���Ar�v5$:ϬX��9���{r�:<��j��USX����/�[�l8�y�k���M#�F��R�i�&V��L�?L�m���K�X�4@�7y�U>pj���4��L4���0i��0`�L0`������`5
"����`�M4��47t�.5�?�%N�&��9�A��a��G#<i���q��ʜ�~EY�	�nh�S�z�u&��E�3��������2�̚�|��nBW����00 �L�I�j�1!Ґ2�iulj���y�'� �?�p4�%Թ��Gw�o%JLA)�6qJA_ɀ��<+��V`?���܍����%����|�~��3��O�3�� 
�9�!�S#Bvn!�Y������4�&~?s��?�1��d"��S�J�Ʋ��*�X�F���M44�0_&
4Қ80`�L
0`��`�L`�.��QꟀ��i��0i��:`�I�'
�A��Qd��=�JgK�g͌L{����˚g�W���A�|�o��i

���#&y�n��W�W6��/�&y�2vq��9y�/N�E<O.@�GuЎ�G[	g	���3�}=#�J�
T�U0Ad�����Mj�Zӓ��J(�9D�*���~�ب��Fӥ���x�k�Vܫ��5�Q�1.$G��4L�����f�b�E �~��+�3�a7�ǧ�t��@��L���7���˗��:?� :yD7���?=�1�I�|d�2��c��x�0��`ӓLhL~{Y�
0`�4���4���
4��L4����~M0`��L�?M4�6/����=���R�Fke���.ѓ�;�}��l�'�n@D	���~c�~��6=L|��N���{�[A�v��x��8C��.����jRSS�*e�#N���u�!u�i����z�;��?�Of�,�h��/%"C\��H�ғ�K�l�(��
DX�{>PVa8�K��Dg��A7����1ˌтǴ��Q��bث�?�����ɻ�t��EFq��U<Oc���:�Ox�(��}�1���>nj�����@�S��#'W����N馚i�L4�GGL`�M0`���0`��0`�L0i�C������i��i�rb�I��=��?	-��3�.vf�1�<�pmؾ*2ҽ;���Mܹ�����h�@Y9���K�^��8���C��T���sB���n�ߣt��{ʮd����.am�0��.<8��^�U�a?Fk{�A�zd���D��Y.3���5�F�Ng^�>���9�.B/�a���2
$s`��_��
�u�y���l� �z�w�y����(x��E��#��$���Z��v*}���K���`3W�Y�y��)��/羱D��o���z�M0i��0i�
0`���0`��0`�M4��M4�M0~'�4�GL��&�My�~.��>fn�%ኦp�M��e���b"���Vy�H�c�^��7�R�����x0?��#�zNpӂ>����/ΐs�>���@¢�8�>n�H��7�xp '��J{�S����ߞk��%��'�<��LƧ�<�ʻ���n[���=��K��yz9_O,E����Q�0�
�9����"�NC (��_6{j�S{�p��-_	�z���Oj�
9�h[�=;���u_o�5Gɻ��KT�M�&R"~�)��������/8�{ej*��4��7ɸ�N���$xk�'t�k[��\I��%:i��?�0:N0a�0`�`��4�CM4��4�M4�M?M4��ym߬�:m.���%��Ug��k�$t��
'B��c�d|��9�_)Ǝm?��!͒n�|a��v��}�Y೙S�ȵz��
�49�8���=w��Z�Lj�]K���H����H8p�z���¥'M�����cI��R1w��%�1H�f���s/ ��t!��Eી|�eJܵ ��!3�:��B��8��>79_�f��'��a�p�#�ғ%�rr\�L���_��T�f^����#�n���#���f�(`^����<�y�����md��i���p`�0`���0`�`�`��0`�M0�i��i�
`�׼z����i�-�*=���|�ޭUS�]qI^GS<��N���D�[����[�ϜCvC�G��3'z۠#�^
�󁧔ō�h��_	!�L�_sY���]!�|�p���!�^���3�H���Ԛ�;���ɒ��_�<�h�Gor%J'9�g�ʊ�?��Hɂ�K���ŧ߃+����8
\�f
8ˮ/�@�G�u�g�_��#���o׏1���3y�>��8�vV��<�X�G�����L� ��|����i�O���Xj��4�XHK���Ǔ?�~&�0`��`���`�����4�O��
?3M4�M4�M.�d�I���h��֗�9q�YÆhe�O���"����L��}����	;r<8��|j~��ڢx�4�=N����+�� ��z����U�.��*Ҫ3ܣ�<;�g�N��O�[�sA:?[�.�a�s��Jy~g>~ky[�b�y��2��ʥ�|VC*|uʓjھ|��><� O~U�z��^^fT�'���D�q��p�kވ��^�\�U�ʣ�`��x�5dP��K�?2�����ׅ�x�<���L��͍o���<o����븁���#�Aʚ-_]�UJ
q��S��s�Ĵ�3����]�(����(ܜ�`�L4��L0`�M0`�`��4���0i��i����M4�M2i����yu4��uM>�A��8d8�� S1�LŞ'����L�u`��H�rn���|��*�*bʱˡp㰞���ε�@�t)���|�ff�;VA�0�J9\zy����"@��D�a��v��?4{/,�2|>L<���C�O��x3��8>���h����/�=nOO��C+75*2q�nW<@��B��bEo
OZT�Z}�5@Ӯ��,Sӊ���"Y�4Z{ͩ蚋�Ƶ
����𺿣�3��<x��Ӣv�%p]�f�=��]�Ƹ�'��=��8�N	%�i�0��+��p�f�ɦ0`p`���&
0`��M0`�M0~f�i��i��i�M4�M0���`�q�u��=\[���;n��*��9���?;��"�����f���"
t�ͫ�0 �
�.y�4j�p���X�\u�}����|b��x� ׆b�p�2�h?��G�ɬ�	ʚ�xj�Ώ]<q$�&%�O�y!&8���gZK��pl'¿��{rR��p�@`������rZ���x�NW>�,E��+�P��Й
�8���;=��SG��5V=q�R9?��[]����7�S_!;�f�������^<Oc�Q��ϣS[˾��Yi�s�W�ؖ�_��
?�n2��Ϥғ<W�4O�i�L4����0c���`�L\`�K��i�	�9~O_K���W�J��g�d�be���;�V�d����}����b��Hn2[Uw��Xr���b����w�=������p���,rw<h���H�GC�7�g��ޖ,���x����2N�7����v��->C��7�w��b�7�W((�X� ��r,ͯ��^ wx�ə7�<:~��g�2��^!��Ӛx��\�7������y�����?8C`������j��Q��{��U0�xCy�/�/��Iz���4C��7�#� �4�6cX��j ?9�D�C��2P�i�DA��Ɋ�i
����4-@-B���$��ٔ�pȊ��>	.���箧�gٙ�]���?P�d@��"h9t��������>�}�H#��d˲1u���??�`����.���M/�ˇc������M0`�<
|ԇf�S��[:N�oE����r��/�h`��[���O�~����B~c���wM����uޒ��W`6e:�*!N���hk+�\�C?f��2)��C��x���2\5q
���w�M�	/�%�!��^�~r[��cV�����~zj z��tf<���&x^2��U�zL-^���'���:��%2Kd=�����O�S��\�V~#_�F��'��L����E��׷~�������F>o��
=a�]�̠RC+0EP��{����P~a`��2�0\���&Z(��
d��9+�<C��d��S���$��z7V{]\U����Dey8����u����0A�py��(�A/I0"�+�Ow���3�Q��O�A�ږA����-��H�����>����z�˸���.ri�߄�b>��UF�~���
`�i��4�M?Li��8��n=`��W3�7���
.#�Y�y�>�8���z�3��4<�|�V�_�g�<����Z���1� �-�;��=#Q����\��T���/�R�Ȝ�>%[f}���T��5���:\ ���4�n��A�q��a�&�o�&Q"2eMx�3}�75?æX'��lW�7vړ!�!��P�?O�����j�[��'���ۜ�3g%]G�(���M�=/�>�:��r��P�����ZS%n�,�O�s:[��7��P��+��(L&�+L�Tt^81��>s<����pE|�aWڇ����9�xL�?����<��.X�ɺaO+ 
��>Db{�ɹ�]u�h�_:;|�#��r`^�>�����m�|~��8�ޣ�.��R��d��0n�d�p�I��?1�����4�O�䟅t�O�7:U07��y��;��{����~ۉ�,O���<V�P`����=��r��)P���"-{0��i��e�qIM�H%�O�c)�3J����1�=���K>qp �χ�ҏ�{��A�d"^�B��P
���	�/��,����P�>p%���6ԇ��!� �Ɓ����0x����G�T<cO��'��!^+�U��
�.�I��y�G'���^�x�w�~p�:���G�>���7b��_SQ�x��|$��ܼ/g ������;2��΋�GC.�R��¨Q/�zpL�9�w���z{��*ԑe���(y�Fp��G������f�2u�ew�>��>�ɀR�ZY��ǵ����#��gݢ���[�� $�?����Mg��|8�v'p}�D��}|�N]�G�||?Xh�S���i�F�ߏ��,ǀ��1�0a���0i����W���.�1�9z��8��W���b�k�RĿƏ��~�Z��<�yz�9����P|�<�~3��
������0d�C{�\qv�ie�Lxj��������&|�p���<I�A����˚�Ì�x�T���N�����l[��1�e�L�*���K/��#-�Eh�'��T�S >.F��O���'�ef���P�y9�X(?msX|���j��a��NO�*~@g����3���8X}'���MV�|t����!�hez�s~N"�
>���
� '�Q�gt(�
8 w��~̷�|�g�P5�J?��䇄p��8�n~�$f�p��g���|��d��c��ũ�v|?�e�zj��7�2~������2<�N��W�q�L���X'��zT%�54�J"P/��!�@�~pL1�`�1�����_�O�����B�|���Z�s#|>��UԱ��}y��?ΐNs:����2ك�����z���X�)z�U�	]&�rP`i��⛣�?ȷ�'GA�&�'��"Â�z�%��j�i5L���oP����1�\N���\�T��K��;�~�q�hλ�
���nN=�5>Z��dY�W�{;���O��(����.�2��L�"���~��\o	Z�j���0ap�B@�@Nz�(g�猤�z��9�U	�������`��2^e>�u�xSh<p���R�̄-�<E������^<��{sV��xۘDE�7o��GIG�������2������N�V!�����x��|4�?����?�9���x+%�+L1��\����]��`��Wg����d�x����_�����c���w/���~��/gg�xo��Y�
~���̃����h����ܿ��� ���"'�� �nj��٫{��N1pR�>�S��h!�}Ni���g>��L#/@!��>K(�HW]�נ�<�
���(r[����a[(�/�f���ȭX=3IM�>u�@*�!�/v������B���o(D��8ʴ@u|���
k#P�����p(��Np"9%�\�	9�|QC��ȑ8���DK�n�����W���FJ�(�QSZ#��ӏ.,:`���Y�=4����T�V>P�(�|C\�7t=Y�|�?�i��f�l+�f�у)>'�&<h����
>�Q�WMBe�r���sV�7�8{�����������}�C
#|�xz�_�	ʸn�!:��#{0Q������Y��y���?&?�5�_���U`o7��
��("�6O>����?�>tA�8t�O+���Z����R�-F+��M�A�S2�S��|�:Я�r�(�=
���&���<ʨŠ�p�y;��2U?Ⱦ�(x ���S\3p95V3���&gbby���d��Yj�K	t���jƇ~�"�痘#$r���aY�;ofe �|��4%-s
��MG�W�_.�&M0DF�<e¤9���PP&p%}��r��C�Pf����}��|�D�_�Vn��	�O��%��Ø�g�8��;7`��}O[3)x���~�5ù_|�����J�/$d�)|B=�a
�gMf�'�NԱޱ��{��^I�o���|�l)������Ǚ�|w�����C�\;�(�'����=G�28H�e�}~�7���o�9�� ����S��
׍�8]|��"Ɖ�GF��5���v8��K��d�c�8q�:�î����]u�;���[O��|�2Օ�|���(~�����|�������5��q�|�)��]��-���Z�#q�|�N)�t����@2�!U�7o騋�t¹\��7DU.wH�'��}!.Dݟ�$x�����р@����)��.s
���eX2�2s�.D���{\�he���ǭ��5�#��kt�1c��a��VY9���(>����
�™|���w��2 �P9_��Ĭ�_�/W�8b��ֺ�}�ϔ��c{�ߌ�Ed��'��pت�{g�(�w�`Ko�E�x�h��8�C��s�T^��4�7F�W	��n�����>�L�}�E��N���O������{�O��������CPwz���r%ʊ�	ܝ��C������r==9���c�;x�ɞ�a����LK@���?�����^�ф�t�x����C�Q0���O�`4Y���*�.Xp�ï�G\?���2���q��A“hd���|lE��n{�?�5�'�S���#
|o���|o�L<����
��Q�<|P���c%h����%�\=MZ�����?�|$�[ɟ'�Ěr��[�׎u9�����
�>�D�/�w�<�n��T��+E:wGw�W<R�C(˗"�����_
>�")�h�����Z�V��ݬr�v��AH�m�N  �����&�9)�i�<?w�Jx�Vn���wT�F^�|13��=�F"�Q\�7�>r`n\�,�W�\L�-�����*�w��Ï�6G 9싑~K���Y�����C4#ӆ�������?�F��g���\�W �ȀnOq�:#����q�)"j�5了9�k�e̲g�E��2
� �pr�v�^A��G���#��`o�xA{��A�|��ױ
��e��U�*Z���?��?�ƺ뮺�����C�f�^u1������=��c�9�Qp��5���_Zߧ�;��ѻ>_bb>3��s%�߸5$�� 0���}��vZ�wB�0
�)���a��
<˃���o�>P<�����>���R��Nk��	�xe)`��.X���N�t�2V�f1_~4vcEAȣ�\�#��f���}��EBc��zб��g�!�%��m&X�zAr{�|dO^*��?�h-���A���k4N�/s�W�x�'��K�L��/�Τ�ʡ��:�1���_=��TO��&��,�(@�>��|�����2�u
a|���o��� ����r�s�����c]^�%�_�L�z�S;�����ɖ
*�ya��|~���ZEN��Dv�nu+{�VC؈'�Q��q�RU�k�����V�8��<��}Q��X��5��r1ï�����\���xj<��'"�^䠱���3S�!��1��E%��]v���(�KA@����H�3�|?���iS�������n��B�c�BU���*3�2�1����?��?�!��ƫo��CO�`���7�(�sxT�5�;���Wp�87�(8J��60�z��t�6���*%�4%�?��Pk��M>#�Qz�
QV�h��G�:,xԫ��b�y��CI�I�\/o9�@W��h���$�փ�f��>`�=��@$�à�#�i�
X3�K��uN@��2��D��(�?8�/+�y�}�$q-
Kn��7j�#�M�~���U�%�64N���њ|-���"�. �L6����`���c����w�`�M���{4�S	��9�<;=���]�<ɉP�o킗v?f�K��ȟ
.�zbXHC��?S��7�S��ڨ�-g�0�I��p�.]u�_���u��K����Y��,���i�
�d���e
`D���k��
����>�s�64?
�	����j�Y�F��XB�_�L�Qx�w�:�޾l��ݜ�'$o�+����[�4APs�ϙ"���q�M]~���&Ho�ʕ���:J�O-S��9�z�;��^����,oc�z4$C=}�P�Vc3%|̜#�;�x�P��P�S>����Ld�����D�
8@ N�1����
O*�	�P�ˎ�����h��M�g\������6)��q�f�����GQWQ��B�/

��J7渂=�"�*�~�&�/O&&�j�G� ���L�����s��\?��7/�}��������[�/�{�џ��>�����MG?�����0��_XHH.�G?�i���us�������'�������e��!��t���~��+�c���q�0�n��n]u��=����O^�y��yԹ�ب�x�p�_W>������O�����J؝�՚�6�Ʒư���ή{3��^�צ���(ʣ��:�g]�i�ut���x�U��d����E�A�#\����c<��y˦U��I�h�{��^u��4�ј���d�
)����+���P�/���,yC�ޑI����g��2��R~��X���|$/��J;��V�;֧�g����h���&��z�*d�w�8-�=����0J8����(���d��Bv"�Kp1,��2ǝȄ�O��!��r���g���C`-��|�I*��MǗ���W���j����wK��O����z���ٷ�M������2���o��;o��d�}�����������j|�H1vo�H���(|�S~���39L<S���
(܍j{0R���#
��h��=\�{�ث��h��s�u�]u�]p뮺뮺��9���Yd7�˜J!\�!��Q�Ƀ蹐y�ְ?�F�q�K߭=�D??�\1���f����9Gʇ�>X�!B��Տ�YHeA�ep%'yt�M�/���X���aj��n<���_�
��C�d�K�̇ sUrG�n����H��&U8�fE1^�9��r�$gOY^�$�>}��
y&%��d�uR&d2�p	����$C��'�0�Uy/�0�e���<9��
m���Xf���ɓ��|{��E���&�+�Y3t�o�}�
I���"K�t4�. WQ�VI��
�0�b<�қ�/��ٱ���[�NM�-����XP,�%�+�Oyx|Wɫ�rw���Q|"�L�۴ц���ʢ�7��
I�@T��+�����=�\��0�O߾���&��뗑�����9�A��������>R�������O�@���i�#����`9 �E�:�o��~	�ѧ�:4�ѣF�g�
9��5�Sي�EgOY8��T}��Sڴy��O�6h�1��g���P3����?�_�1H�
ݥ8�
v�j]x���
_=���E�,1�-�
#��ȭF�;C�~. 2(���qB|�ā㋄S�084� �G��������!|z�
g���a��޺�(�jb@�2ha�%3u�?Ú���DU�Qļ���Z�����kb|�Oxѳ>��8�Ӈ�m���J|�)`�>Z�p�y&�u��ː3��Ǟ���8B,���`�{=��
neac�0)}�}���#+��E���XW!����N�R��%=YxU�-�k���w���s����Q���dU2
�"���
�kn�.I^N�N(����
��{Ϭ��2B�������v�;�A>o��7�&��it��ͩ_���:��a2V]y�1�,�=c�Υ��w9Y{O�^^u�N��9�u���"p��h>\�7���
Dr�ڿ,\7p��k�_��N�I���eZ��e��n������	5��P��3M�X��;8j(:�y笏�{�����\��p�>g���
�:;��0"V�!��X�؎K�Q\��xJ|�3K�n=�9��Cg��B�6*� ʑ]�dp]Z׹8��M;��O/�t�0��o�a��T��68�&|��~S*��tc�a����1�Yx���A�����d��z!��K��0��_�"f�����g+}�8�"_�5 �T)�q{o�x�Uo�ޱ� )2�vZ��x�Z�\�:m�Q+�L�C˭/g�'�³K-ɩ��#����嬒�g�x���1��C�0�@c�l|��	%g&�r����s�i���l�^<�EQO�h�b&?�^~���fA=�sԍ%&@t
��J���a��t����!R��V���r����U�
c�E���~��LygS��p�H��2�{��'��[�a��+�����9#�-�����q�3�<�9+0y��I�8P�$%ר
��Eh/��3ǜ�>2�)���`��4�Y�w1s�T��m6��L��)@��_��H�H�L@Y�v|��r������-����\����Q�HM!b�����DM{q�%ړ\����{b����^�T�*-D���HaA@�ٖHt���$�k]i�J����(ǘa���U߼q)��_X]	A+��X.`R��j�\9���������(9��_�_�� ���!�y����”)3��}4y���9�k��2s Mh���c���F��'^|��C)����\:ę�{K�<�d���$�rL~�<)�v}&���Ο��w��/��"	��O�hS�o�?��L� �J��;�SbG��э
����O~��KӚ��i�M?g��Ö]GD8���x�X��e&��=4:���8���"|.�{�<��x^��?�Z� ��c9T�[�a�9�2���>3Je�㷱�C%ƈ&^f�"|�`ő�#[���"�A�Z���e�k�9��~m?���萵1o�J��z�4Α\��|.j�e�K�X��y�(K
'N���x�&d��J��"�\��._寯�p���������Y�N�9X�C5�����z�\�^�U~��r4�!ߓL�2cV�syD�b�<��@yS(�/����C�tQ����K��u��4�D_�}����\�t��8c��w}��1�6�Tz�z�LH�@��s�,N�S���+�O�����y���r,�\E�N7*'�����c��
c������W
�ܬ��@{��fH�0��u��$�*�s�bP��u$3[�9��d�|�D�dZ�:�ؽ�p�<��13�|n��m�����R�|�zK<c�ʂ�|��[��
�*�v-�\q�o�ߌD��'ogW��Ʀ4��9�1m�1h&@����P��u�Ɍ`���	�I�"�{��š�8g�K�Z��8�Jh*9�2�f�ܑ�N�~�O������̉QD'��P|�"�����6�3��8��ď��܉F�`�8�痮Cܯ�+f�4=�t�;̉s�R���LԿ8��nA��ӫ�a���d���(�R/�!�1����!mg)ڀ�uڣ�8�d.S̤�N����I��!�M��'�<0jq��t�l���0�(������y����x�}Gs0�2|&�!\��Bd)J��/��%l�=d��3(�׳*AE��ɣR���!+D��hɤ=j���a;�8'.j��|d
:E3J���
�zܑaz���pUR�K�H�vG�z�ό�~sD�8H���%�\t�ݥ9(>Cw��9��>t_Q�3�;���T�����u�'��w��\��~C=�/��9��9f��߃$�p�����Q��<p�~K��I���{P�?X�g?�����g� �e��o�Oʷ�j`_�3��"C.H\�ONLj�-iC���-����<�֚
�^"aW˒I�Y@�+8���!�눚�O�����a�x7��p��:1�H�C?	ܺP�E;"g�E�gά�xo�3̊	��u��oT���a����ޟ�z�E�w�NF����k���ɯl���M(���c�:S���0c�$"f�J
!�=Cr�E29��1e�*
�������k�n�Q�����I����,>2\U�	0N�磦����Ob=9����ྖy���������Ut@vps.�:x�ۭ-C�$Qf8����AB�	�:�S�0d$H��?Ƿ7����i�q1����I!:d|�+u��K�d��CǗ&��֜��`��a�2T�(�_K.dR.#���r�)=�����\I���>E�?y�|R�~~5�X�i��iW�k��7㏜�A��X���~v��3V�jS�&<��ɔ��|���GW��5���p�Չz�\�ϴ�>/�kW�L������%?�?�#�A���h��?���:��,����~̄�bܾ�_"���R���3�rZu����1>V%�T�	��D�ٿ�S�7�\q�3M�_���>o�ngmj��&	ŋ-�~��Br��+�i���+Hj��9�i�?��٦�s_:�Ϝ�xn���y��{�m�p4C"���BI��g��/�����W�N����	~?
[�y/���	6�^��01��OK%��ɞ�����ٝ|�0_\~5��d� ��-���"�+��7��3��e�q�f�8|Z�O��Y�뗐�d�b∖�0�p<�n�v��DF�9�|�����yt�*d*��}��K\�a�M
<�`�N�oQ�̽���)5�uj�t~�2�q�w�.�$/r��;��ȅs"�4q�5Ȋ�$��X�+�� =f8$�v��T%�ư!Q���TD���sU�<�<�+η5�3����Ǘ�w�ߍ^�&>�̱�c��[�����1J.'}��=�����D�fK"r�8g�e�t[�=~�K�_ˬ����h}�,�g�3Ѫ)��uk��FU�$�1S��p?0>�!���?E�Z, QnQ9��;��q�L)oDṗ��Z��{s�ѓ��#��n�R=�5~��B_4"wg���G�0���׈ϐd�(	��PL���G�=��$���B��'�>�-�n�|�����z�D�OX
�B`��G��}��7��r��)�r#
�����]���ϝ���)�/�پ�A�7��U���!��$��)��@��ǻ^�,�r�'E��0<ww���E'��Q5�Κ���pE���|v��ۧ�����eUX���$9q��/`�J'�d!I�F�?;
���y|u��t��0��x/i�W����>��\(��5��\�'C18���
8�+�&���.���sD�n\c�@�Xv���}�@�L��'+�xRup/��s���3%�|�jS]|�d.�>}oݯ�~����o�i3�t79��}��%]��D`\{NS�_��3�(+���x8���j��*/��Q%��xs$%��eD��\DP��RіO����֤Q�?�$<_����B�{����C������|��/ѵ����nL��'��x�Y_� ͔_T�%g���&����n�xk�#���>�f��^ׄ�
��+��-K)���k5��j��J�\���NT��uw���/����2��NQ��D(�����ͦ���.	��ٮ1������󽗺zs��?�����u�.��F��������*�x��gs���cv�=�bZ��̏�	�w;i@}����
U�={kaVv���A苠���"�G�qt��e>�X�x�&�	�ʼn��Qj��=4/�O�-;S�}S�>�S���&�i=�Ob{��a%kB��O��I���V�w+ o\���A�L0TwP�c���\x+�W|�$O�jҿ�N��\)���ᄇ�����Bj���_�X�������+̿�/>ͺ��=�p�<܉l���O����o;�(��qK���s��CS|�R)~��Lb����(Y�p����<�P�$1D_������#EU�=�����Bw^'��G��[��.N`�+uΏ<���?��}���[;�}_��&wC~ݪ�ΦD�������ta(}�6a-�x��(��^^O7�ąL0�O���*P>&k7���\|����u�0����2���xlx}�&Ԩ�:�M�o���,H��1�q������$�"M!�b��8O�������yW�B�w��k^�C�H�ԣ�����":���~s39�����\Ui�Y����4v�����p)x�����X��rT��5؎��{�2��i�*���I���ć��c�/ms�W��|��,Pûj����0���"�mqs?��0 h�,�f]
?{�,E��L5K�sj��o�>�r
C����S�q\ }ק4d��}��/����jW�Ȝ_�`-��%�X�@�H����p;���3@�O,Y#�S�.'eoߌH��0n"����hyr��9
C��WYl�K��կ�C^�c�[���V�S5�P��k�����L�j�����*cp����?Ţ�8#w>tr^(˔���6�s��T��ÌH_�45�ë@��q�s�G������@��ܑ�;*uE	%���c5���!o�:��G�8�m �7�e���QA�npXR9sv'���m�h>�jy-/��U���Y�����_����o��|_���k���s��^q�����$�{�V����6?!�f��c7���@|�JM�τQq�3��=��~c�	���m����Q�1n���!Yꗫ�>2yd�D�������C�nk)puW^p���ƐVn���Rˮ�w�ٓ`D�3!�[��O04�W�f
�P0|_}1@A�1s��WL��O>/����0��LR٬��G?��@a��1���#�D�c�5�yè�(����K:��ytR��"~Nj�F��c����
�ަ��U��&��=F�0�������>���LHFj��|�JL~��gp��QɁ!��c{�{a�G�y�ϋ�@�}b Y�=>��z-s
�
�j�=�>GʴWã�����
��x��򅻐|����Lԏ6�tz)�
�š?i�j��x�?�ǟ��n��<�u��k�aѤ���'.:Ow�1MF=qb|/��t�P� q^X�g_	�y?4xM'�W�!>BÜ֫?�ː�
��t�,G�3����W7��!����s�(���x���?Ls��K��=eg���<�1�����$�#=Y�'���\�����X/�ث��sg�m�Q��������ь��c��K��m_oG����3���|�S��p��*�P�&_͠!�ꌇ��t?	M��N
��_VhgaB�aŜ׌����y��=o��1d�uO��
 q]!�󦳷s�T�M;��X�_[�k��t�aR#�m,>���'���޲�C_��/�O�Og�&�J�sCL��F�L]�$�����U�ž[L\W��)A�%MD�)�Sݚ�	GU�LOŚ�^�j�c�L���C"	
��("r�YcΙmx>A�ϋ�$�f��
 x#t�œ��B}�����ٌ�K��BB.磾��<�?xE}���}�ZTꅆ�U�_�
�O�r~Bz׻���;r�|*9@�/�cQ���(Gw�����O��M��N(�<$U�{�\��>+>3.��#���d̋��w=�>��-��/:��zt��Kq��{W�
�<��B)���_>��}���?�<�i�<�}�R+OO?��üw+�@���l�7���#�
���<���t�t��:{�|g��З�T���4g�n��?yuC�N��h]i����Ĉ���� ��r[��V���SQ�ჶj�@6�G�Mk��'{���4>4w炋8�L��|-G�S�65�A�y�.‚�`\B	?�;�Z���|��cG����s�����L|�'��JI-��X�=�gUP��J�P�t�:W�+�?�qn}��7��{��o?	3�z�:A't�;|*�1,~�Q��3yy�/�SxA�n��!kߛ�T���BC
�`z�GE�ŁIc������
r��_���?9�U�Ǽt�h�s%g��M#���{n���ւJ�!a����p��Ȩ���^!���(s�4Ѱ?�:@�uN#Iw�>H�9D�~h;�[7�-cG����W�z����j?6�qn[K�Y�ѫ3����/�1���OYR��7g!�!).
�O�hn<���H̩�|𙮠�~�PB�M���M�ɬ���
�6��Y��#?}�g��GYb�|�ł�%zz���Ӆbx����g��
X|���]ο�<t֋�NJClU��FEH>r�ZGï݂�W/��+��G�e�`��g�����|�����nf~_�����+1�%N@�pǙQ��Z
�~�����_
���T��a󕒊�4���165�RG/��?��(�h��*_a���o�3���vxK�=M~�nI��6��?�s�/�ph�����<������PA|}�*�O��
�&��_(��egx������F�O���F�pj�0=3�2|��ݸ����d�+�f��6��=j
�HV��U{���c:|���I��_�.>]�r��qd���Ƿ���0�%)�xD�3
V�;�E��t���!�	_�ġ�X�WJ��8��+�����_�p�G��9@��id�~�O���~����$�Λ-�ř_�B��Y�#���J��V��+�1��+�m}�F1�D�����E\ C���us��:�}7��q��T�OE��Ne�ė~����G���kK�g���l9���$㪯�n${5oB���*ɒ�r>���d_|�o�[>e��>'�������h�ܦ��|��M����f���l���0�jRh��;��R����3
�>�
;��O���:��?ў��WVk`�c�aC��r���ߜb��N�źA���Cj���V\I/k
�KhR?�A>d���fAE!Rh9�W����7�u�*��ܓ�>?#���T����_�X���E����6!-���z�ָ�C�|>��]D�U�����H+)<|9y�d���}�����j�N�gّz(;�Nt�>�@�#x
_+��:U�C��p/"	�Q�f[��aR1g~YPy{�?nZ8�i��XvFI��$�j�g�ZА�}x�sZ@#C)��"��|��0�(5���o�^~@���|>�c;�!w��2j�ȗ�O)�se����*�:��Y_�5�?��
�$�7qG��f[0)��վu�K�h��$�F���z�pۊ��W=�����B�@�a�d~�0�&�Tf��{10v~�����n��
j��3+�s��3���d��5Pr�‰��?6��u����„�o)��Y��H$Gì��)�(i���6���'���7d��0��I���O.I}�X�q�
����΃���+}�w���=y4�����=eu@L�����:1(�/���{xU�y���2O8�G�d�����=g:P9���|wWE$�d�=2��P�וo�(�2��{����:�8����I��ϕ�j��>r�|{a��=��x������O��+�������%��O7T���]¼<�@~GR�x��BHT�, 
*���\~[�3�는|qp�|��H<dž�Rٞ���g��D[�̸��SǼ�ft���7F3��;�ʙ	<����	ǔ����C�W��x��l>���WA�8��~7���*��%�c?�t��ͳ$��Q3���m�{���z�Pj���wK��#A���dAxrjH�v>:W��f$|�4)�F��M
��站��������9x%'�<a�?����0�<<�X'N��(̢��%�MDH��8��Q�ɺ�>������
Uuq��|���_zr���IM���Y�X��{���m?�3��I�ԩsU�.�߃f��8d�V��?AjZJh�_8E�.P���i$�|l�;����T���O��[��n��9r(�������9�7J|����x_X�O�������e���
���C�7]�L��zf�ץ�|��y�!)������>��q�����򎁬�GB�z�~N��� �^<��K&���"L|,bxhW���=���,4�U*���^���#h	w��6OHx��8�q'\�>����)��g���D��Wϥ�OE��/�
ES�r���GA$��M
�6��D0�^I�h��;��wù���'��iU���0-|!��G����Lq�>6�}:z|w����������~�5~�Q���F��4��ն�:D(�����=ʨ�˕�ϊ��2�Q0�`�qp.Fs�E���B�|+���܆�g|���)x�q��$������b�'(i)+�œJ3�x<�~��劑I�C&��L����^�"�[�ݼ�/�J\�ӏ�a�=�G�<��x�v�����8�!->1(W���#��Ƣ���gm�vط�`��$��f%�s ^�&!�Rtʘ�ːX�xq%�zh�_����P�`b��~qq��D׻�t���E�K�Hb7椙���)�mC/;������WT7m}sxs���bd���w�y0���մ$��L
�/'�^{�Q�տλ/�����|4��$�u������#!d:�m��1Yf69�Ya�L�-�Ν_���K�=�^o^�Ts�a0>r��0��̢�s$(�UpjC*������ylo|�S���h/ݽX-Y&/��rտ���ˆc��g۟�k��w�88�`_y���etݏf��EĹz��h�Y̊����?r>�pB	}wC
h�W�B0 � �����>O�3T<�|c�U'7�5��Ǚ�_�|�_��znP8y�8�ӿ�
��q��Y��G��`���o�:���:^���S�z1�����>�۠&׈����>���g��HmƸc�k�ɸ+u��gG�KȎW���l|�e�Άc2�I\��G�p^�D,t�9���gB��� ���H�z���|�W0�Կ9
�ĉna����>a����hi. �y��gE����tq���,J3OG��e�w�u���{�p6|�����Y��i��,Pү���x�™D�s��!�,A����[	��ȺB�Yο�x��\d��u�n-&����>E�4Ӈ�	��kn[߀�K������OY2����������������j�0�Z��U�'R��b�z���˘��o�v
m�-��\����<e����|f#��i��{��/{;����,�0��˩j�bèjBQ��a���ȯD��k�i|��Ǡ{��f{;��~y�nn�t)�i�)����8c�����~I�<�X���l����_�M9�9|��1��?���q��<�E����:�>�g�� ��b'/pX�N^��|���ZsÞ���$x*��͔��������;5����(4W���{�ܩ���'��
�v@��w�!�G�:]@Wd�uj���7ү�Z�8H�?L�X|�i���2@1�H�2��2Y�1|�ų�ɥPi��QQy���j�y�Ղ+�pTzP\�Y�w�˭�U`'����G�w>5
pk���g��]��}C�	\��Vǂ���R���~�g�2�u_���f�ы0UMP
�U���K�0��QTq��Ra&*�xҨa@ʩ��:G�?|�$�-�<��JmsQ�-���(epM6�~uq��K�}jֽ^�/��`G�Ӓ'���~�&/�P�=��G��rr��w*'��S��٫N�\9T6���*����|��(���,`4��|��0I��8R���6ˑ���7^����k��E�&cʫ���J�G���d��s+�=�*H�ȁj�~u@z�|MV���\q�k"P$H��z�w�X�}�~X��W�j��j��J��_����=3)=	�D���w��4����������L�Xw�f\����
�d�8`��<��6:��G {?�$��y��f)���5x������χ,3zބTh	���2Ʒ��-�HF
@�D]
_\E>&��Wn�G�RM����vy��G!�0��k�ٔ��Ng�<:Ĩ�!b�*���ʥ[�� �Z'ü�NY\`��ʫ��w$F\ȧ���V����;.T>�����Lb���	�`z�h2�j�9g޽M7��Y�*Χ�Ǒ��Vruጧ2P����٪=a���I�s����eE�����nVGx����ۑ֡k_qGYN01����sק���Dȼ<x��Hᾫ��;��=��4�8�p������ �}]RZ��~tG�>����m&��b�I
��A;�Q�ge2�YYÊ�3,ϭ�.W�/���Ωk|��]�N��o����!%6����|�d��*aR����d�|\?�M��3'������
�׸.������7��$���{�߮�Ɨ���'�|g�A�#�0�uy���m�9�g��z�<MBLe��<��N"�����n7����3�q՝.ZW�|����0�>|7x� pv�X	� Խ3�RaLw��xS��<	�qbD�(�5��`�^^��h�_CE�c�Fc�3�̏�ˢ'���Y�tx/��'N�rT2j�~�x���`��fd���|����ɋ��i��jR�8����@��O�E<�F[聑"��X��<����|��p���� ��I���j�ʿ#�sȁ��w[�|9,�a/�<��םH�dÎI���s��W),a��꺩�[���ѳ���8��#��t����">Y�:�~�d�~����&A��§Ƨ����z�4�<ΰ�P��ۀ���`�A�f��������$�!���o�U8����&
�0�g��?Zş$�F|�w���<�?ۊ�sO?�o�>����N\}�y�Y����<h
w_Ț���g�l��?o}����û��<y�?1���	<��9HC�8�(�]�=.z���udUp����7G�-_�T�*vd$x�����@�ɴX�pN=�5��(	��.!�$���1J9CD!f��Yg��� �0�*�2J���8�Z�L�V����S�̌��J�G����8U��	&�%���c�c���~ud��z��y1a�-�aY�Ԩ�?�p��y���q���)���y�ۅ
�qи}��x�R�F�p#��2�V�*�;9���n���F4����;t�Y
���rTz����	��Qf�'n�nz3�:x�i��<�(�
��dF�?@kd��֍��5���IL�l\�gW�ÞO'��=_����{�+���@�=i���|�sW�>.�k�v�x��I�
�s�����w-��0�DX�ȉ�1�u�j�{���k�A$1�c��9{�������R笥K�&p4�γ��
�qg��1h���/:.�	�Ç	���jj:��~)��t�_˼~w�2���L��z�~��`�h��}�=�0�#��M����HQ�PZ�g����W���!����S%�_fY����N�%�t�&ڀ˧�����`��<�P�H\�a�)>�ِA_��B�b��g�Z_ON����8]W�X3=���h�17��\�|����������9���8���nԶ|�Y��Uy3���&6$c��H�� w:���WH2|g�o8������r@ؑ��F#��aW`�gγ�*�b�		�z��Ҁ|;���F*��4��R��Oj�
�n�yaCu�~9�YG�pJ�|����;��C)�p�q�㙬��O��6�_�G��|���C���}�L��r������i`�PF�gD�]"<�FB�~7���>\��D,>#���U��twܶW���;�bP*��%͗�ҫ��_��sn"�!�&P�b��G\d�Q�ru��ϖ�_Y��r\���=x����iO��őe�"�:�,�����`S��ѮZ��=��&�ɕ�0����5�O��8��g��e_(?��Q��,���W<�2�H
��Tzt?���#
���^I�#�-x��!�8:���8+�A������'{��
`�7%-����F�d�.mU�G((—*Dg���O̪��"y�sQ?C��q���;]nd'C�Xy.|>��a���0s^'L�Y)�+�È����i�_]�9�ί���T��m�Q�8�����G2��Y@�"�����f`���\"+q�Zo�&cM�<�
�I�)W*���`m�χ>W��8��q�Æ(��y���^�ߙ�$�˘��6�x1*��>��A/�y�-����g�3$O.�0Z?�QP_�2`��l����}d��Tw�W�S5�O���	����5 �p�ep؄���K9�)��9�
%>���k�	~���F\]\�����r���Cxe�'����QJ���h1�܈�"7D�]�7O9�~_�������T��n����b2���-�Z�!Y�5(�B����i�0�F�A��]�~�.Z�3e�i��j��x��-�&�9�ҙB� ��&r����C�Ф��S��`��P3�sC�4�7ʩ^�@r��*�<39��x�4rJ��"�1�/�鍙T4�w5\O'��"�#?���G(�ɺ�X|�r�y���o�FFL��)�(�Е���L��a���@Y�L^�zwU��#�HE��ؿ*���A.32�Ɏ�D�����.�I�_�E99����R��À���#��,�+e���t��K/1,H�8xמ�YT&��W�#†
���u�|!r��W��"�C0�P{f�l�#'�����xu�^���>.n�.Lx�{ݥ�:�K�ʡ
/WG'�\���s��dխ��dƒ��L�:�L����!�O�b��{�JW��z��2hq}s�S�C��bkQ?l��~�#B�������|�Ζd�̢����

�7�'Q�*,|S�̂���ճ/��S�FxH~��,a��5fS��4d�
r�J����JF��k�s�ޙ��a��x��N��]-M}}D�)����k��~+<낝|��H����C{k���Cy�tсf��'^�?.��L��Z�U�iʈ��
��&#QW���8PD��������L��-�x0���jq�y�����<��%6O>&d�O��R�0A�����
�{{�9v܂*=�&�y;�b�_E���!�� 8����/��x$a�*��&�:��9�#�F���"v��	�3H|�P�|U��2�[�|��BD��s�,��Հ��$牊WnY��_'\bD����2��$|9ص�S�~2vIpS�c��8f�L��{By<�`48V�h��@���Q�7Pd��@)�y���%�e*G& �RS��ܮ8�g�
�&��DpC�O���ENG֫j��y�<��8'�v�G�:׼�x�(�r�N}7�7 t�}�HM@�g�-A��WFq��&�*�?���,��u@�x���5H3u��+g$���u����.on���&�}��]��\h}s�I�����no>Sl�i]���q�n�s�(���
�`5n���|�>1�<m�n��&lpH��_�im�^�ۭS��b����a���`=��C`�$r���֨Zx�d"Iۡ��?^\Rt �t��?[�i)�eH����%�;�>L�/��äDKpC~f���;�#����T�pб�ez����<$�qiM5�\��0�C+���c��!&	7Ц��"���d��U��Q���?� �.78�o>YM��K=�N��01��7ὑ��eK]!#�.�y�2hq*N9�\�I�?"��U'#�Ύ�|�_�x�,��ZzCP�E��N�&�Y|���=nZ�}�0@o��x
S�����c��嵸#ō5�&{h`eQ=NZ�eh������\��<A�f���2�\����.��J�z�O��	���:~_�g�1�/օ��dq�G����������<�Hޕ^�*F�\*��x�Ɗy9��w���cb3��D��\�f4�W���|���S(�/��O�*�_����w�abx}��o����'��s�������0�2����&u�z�z
�Ϧ_��r�S_��G��D�k��V��\u������oJ�;�N����'�:���y�P���݌w������J/�h�i�?�� 훶��.p��}�
�T��5��b�a?�<2/k?Md<��)	�5I�k��LV�{:̠g�(a=�0^�\�	[7���E��
'M/��*"G��P?	�B��� S=��&%�p�Q�>q�1�Ʒ�����΃ah���ņs��G��LQ����1�dH��o�V!}���D�盙��f��0����bK�����K��ﳆb|���7w��? aE�J�H@]o�$���2��5l��Փ�ۂz���
!>uKf�g{�)U�<h�R�L�=�r��fy����#���9[��U/haS�9A�r�7
á�3_"�:�>�P���~� hȮ����j��B�^.��9�WR����dB�/�)�,V�9�%�B9x"����Q:[�V��"|�y��_�3���+��d�W%#b+���h���9�{�10�pӾVK��֚sf��=��:�tL�9�L>�n;���zZ�7S���+�M��=n{����$��Y�n@@���_�ȩ����
	�l"�`.#[�9I��,b���cM�A�ȥ
'<\+2��\4�Onq����Շ�/hk�@b�Ô�OA�D�����{������S%�|��#�+)��x ���QS����P�E����iA�g>Jdf�{�j���点ڠ��5q��S�>W�<�Vs���_G�ƏZ(���U3�0��y7{|��Iɓߞe��W�� 
S1�A<9PZ4�s��1�G_)�m�[�U���s�\�Aȋ��2�'�L���3b��I�[�`��ɾ������U��3�Y��D�u'��d�����s�ָ��C�/����.@dn>"�󭗯��4Y>0�<�>�qK"�ʔ>���z�*dJ؄������;���l���������9<�.k&��S��x>+��bP���J×����du1z�	�π�1h�IQþ|�ޟ�|g��^|�/�a��)�ӑ�E�HdD"���/�?�o�I>�S����9O~;�����o$5˷o��o��Ww��5t�E�?���?�q_�O��]��l��&]�PPi'��}h����I����J�y��{"��j�L�kA>�b���Ǟ�ܼ+<�n��{8K���Z��.2Ơk-ǨO-f���?YY�>f���a�{���)?K��0�g�mx|���&l�~p�z0�f���8�x�,�C���U{y9{�<�����ϙ�	=3ZI[��6,�.%�9_Y�[\����xL���ҸI�V� P�����\Ry�u�|I��30�K���e�N�5.�̽!r=<�I%O%�ϔ�����X��v�sq|�>fZotB�v�1�#�X�#��]�kA��
�	�8H�!��3�4Ek�n�K�~S�\޾�&��_�a�?��ea�4�{��p���y]~:���~5 6=�����t��1���{�L�����
�^�vu�����U�yXi�#<.gW:t�<��3��ŏ��AZ�>�r㑌��L��@��>�as���aˊja0�����X,|��o'1�({^t�?_��4�P��H�|8t������C��Q�M�vϮ��dϨ�b��?���n�7N�_�[�*�Rd�~r��J:5GB�����3=�=>�T]T������U�����3�b���<�p���t��_=��t��;�
�ʘ�a��9`vRd^��c��v��15�GP'�D��>��Ez	uS h��r9ƙ��y҆�|���b�����#"�b���D�_�RLy��l�������Y�q����ƽ�*��	S��d�:�����R�>O�r�8ܛ�%П(�̈y��@wƾрH�҇�tȧ��\��{Y�m3�pa��
�A�\�ۢ3ѕ��q(8�{�Np�K�Q�L����ϸ���l�2.�F\@e�^?9Ba	��������υO�*+�a��)&c�~S�E;NW΢�����=_�oGNӧ˗LO�7sׂ�3���f��N�3H;ǟ�c�З2e#�T�n6!��W}M��n'�� �՗��ΰ
>v�
���_�~n�\����c��
�'��yp�ή��Ϝ'�x{�	�1:O4����LReg��:�	ߛ�0'��62�>N��'�k���9|��ƪSX���)|1_�q ����
���?�3�b)�g3J/\���|�MX�Ԏ�U�߹ʊ��Я���e�c�ʈ;�o[-1��r�S%\��;O-�ɜɳ��NY�D�h�F'��fU��p������s:n^��w��L��.X���tZ�bVf|!�Dȕ�2(4\��9��K�����$+�L%
b���T���`����'�h�R��5�G^֮KN�{���tI��.����	�,�`Q=��o����/2�;�<�����L��{\��^+�o�`j??N0���1@�(Ⱥ��_��t�Y:����WɫA��Ґޛ=oÞ>ҹV�U�h�^��9�͊Y�?oϻ6f�y��w�Px@�U�>&!�њ�����o����]/a��۫�<�S4c��w��+*)����Q���
�y��4�~0a �CD��M�W���:�~�|�q��GQ�>�t�P��j1��I��<`�f:���"O���]
#��0���sM�cӀ?/D�\��<گ�������<>	��1����U�<��D�"����M�c4hY�h��h�I�����T�YOW�m>��?��U]�áC��!�,�hG#��́?KpjC�s���3��K��fpwPZf
�ߓ-;sɂ�nԉ���tp(��`�
��6̚�mN8RG��=��o��UF8$���T`~=eG
�� �O��x>��b��̖`V�F].2]��f'��#A�(�~��NGr�sb'�d�WC�&g��_��R�i��"�����E�
��+�y��
���Mq:�f��p�*�dmUZf�R�g?>��[�8e
=�֕���^Fq���Ǭ�=\r���r�����Y�q�=q�*��=���>!2�1�����eϗ����s���n׫�,�p�y���/_a�Ȑ?����t1
r��/��̻.
{к�<'î��� ��L���O�z�����s�'�kϳg�4,�_�H���5�Y��ˑ��q�0�#�'�1e�
wH�>t�@}.Q�*.j�����	�����<y>;7l4������1��h�a��J�3�
VgR�i��G����y�7����O?Z���^kפ�:#���lw�0}�0�ޣ!O��I��{G=,�<-ਏ1�.v����~GXI^\�X��D�O�2j��梏���,���	sWQ�q���9��G�Z2�*M��=�\{���㒜~�7���"�d��5/|�LxR�o�<���b��s��|���H�����s&+|���+�d‚5_I�/�w�Ya�����?x���,���?�����.W�1��u�~���:������c�W�z��8���ST�����������%�Z�Yr�n,����LR"�s�
ǒ���|�ȡG����ͪ�k?C��u6���Rv����A����\�S\��Yƺ��9ӗ/7��΁��-<O���/��ē����EM��GJ/�X�?��[��|�	/��5�֨�;d����F�]���G ��Տ5"�Y3��P�����'�i�+_��������d��w�N������f!��Je�A��L�+����Hj���ٙa��rV�9g��jA0�}�q��P�㴟<.�]�����x #��
����A�q<|L�|�#F�0��x
#�R����4�xT�����z.=����+�WI���<�g��Q��ˆZ^��\8j<���|��zG	�m�S��^�Kܠ�<�x��8��|�Y=�
y�r(IW,�?�u�|�����vt<.H�Z���_S������_��C�ž=�L��m1��*D2Ƕ~��Z��a�W�D�b9xw�-O�:��R���p�=/L�$�.	
D�0
��Yu|֍��32���8�Ju��~8��~!L�sOFf`�#��q��
�i�fBtVf���Ү�:׋���?� +���'��V�W-�Y�(��8�u���5= ���;K���)�+��;%^1��|�|
��x,S��K��j�oWi�p���zpk�t��I���a�<����o�g���~��	�32\XW��^a�`�O`*�$02��\�{�\L�X���Nz<��a�y�|���0E@���u�.�`�/��|��ʞz窵�^!dex8���,j�=W@�@8������\�\-D[���1Im4k�P|\��.倦i�p��� @[�/Z~�	��RT��Dу����؄LvV)n�v�����[�<ۺ������s |
x�7��{�"��La����"1>4(����ځ�(]���]��쾿n�6�J��3��wl#<�9KC^�.짳���~��Z�������}�<��'(g�WJ:��	��0���1���rO.*��g�/2=1ρ��̡���O�q�w(��qbd�:s493
��g������^��<4��T4�}'<.�OO&�?N�'��q�'��s����yu�yC�9_yq\ɯ��D�Q��*���	�K;(i�+�Ā;�1��驲|�f2��<��S�9�$ש��c�/(ơ�xLP�~X@���������T����ɚ/ �yse0ry
Q�>)�%�"V���2EMO�����ud|�L�Ȅ�ՋL��b�2��s�{�D����
Q/���P×ϋ����SK.D�T��
`:�eb��r�v��j@�~n���ѻ*��\���	���v����f]@gST��/��bt�	�&B	�^�1A<9"�����
8������a��]S'ߺ���L��̤YO��A��xs��t�l>ݙ���e�z��.4&	����V��L���
Ji�<3���Hj�]`'��4� ,L��W���"��Ⱥ���ʯK�u�y	�$����DZÜQ�\O	~��<j�$C	y,Vr���?)�]9�_8Y#}�������'��fx�xP�?5�!��XH)�Q����8b֧��x)�8T2��e�yyD�jϊr��6e[ZDH94�)���Qy�''c��]�{a���0P��Q�rk�Ñ��t�p�������)4躯�Ȝ?��@�?f�{�R��{�U�<�o��Xj<�B�Oz������4�	J���`��us/+�yG"��� �1j��!�[a�rk�y��r}ܤ9?�����"U��!D�r�/��̴��5Z���Xl�.%O�G���zzO3<�+�A���xg�l�d}L�ϯ)�KW��WcH��pyuu~t��2�e˦���4�~0d��G�D|:?�C�!�:�xr#�M?=1�� z��o��Z��YCe�k��̿���sZN8�\�]>"d)��)�8����S���B|�ä�L%Md%C�^������Ǭ7���Ѐ���U��
�_�񯐭G8�����fHzm϶���&��]H�Ǔ1z�æ)��iҗ�h���P��4R�g��H��O9�w"����	8��Ts~���(�_�G��4!�\�	��j\�pގIS'���
Wg�o�~;>�FU)���@�q^@�K�C#6	���!�>N�`��`M�Tw*#�����sU�<�-)�I�rx�D�e����=�wK7�uU�W\_(dz�ټSe��C��^ѹT��ִ�nEćr\9T���sߊ����Q������J��o�?���X�m����Օ��Լ�=&��s"���&����_o��A������Cоu
���rF8�e
L�½��:��@��q�ϴ�n7h��gv����<������1��^4l�#��d)��)k}����Jdܬ�Ln�a��t_��8��e:���.��9��f�O�5#W�+���r'X<\��z1���#���k�7�+�y�fJG���V��zw�/R�����G_�������:��iQp����ڙ;�;����|�]X�*�E����84Ćk\I�����=܈O�(8�@�>0�P��[i��Y��,��>�h�Q�����p؁%�,Q��!GK�. �����g�K\2��3��y+r�8E�^e-����O7>��w��'��+u];4�t�0��(N⎼>�15q���r�	���*�Ts�0�|>�V���V"�Ȗy	�g�1�2H�r�с�Ȉ�W�O&��.�g��­�D�/��*q�T�$�T���!8�V��HA�#�_""伞��0��h�Q/�q]!�,�ex�)����X<���=���������y��U���@�XaY,ʕN���2U�c�
�Q|��9x&D|a�C��S�~��Y�\�狙�Q���y���/�����<����]M8���O%p1-��񓪞���b=wf�u��@Z�w�(~+�5ؤ�0��+$�!F��2$�Rq�5@ۚ\�/<2���
��T�5���Ǽw����īzb�PT��ArGX�LG��k}OrV�]q���ח:����f���j���nR��x_/�f��O9$o��oN��x�5A�|��Z� ɑ�S�
/\!~R���W�yq]�i�#���dZ%�z[0
�ƙ%)�s��9s���<�Uu�n^)��*L ���-al�L�N��P�<f"�|Gr�W"$�5�ո�M۔�{p��؇��^��֢��<xp��\��e���T��aސ^8e��|e_��ZY���)<���N�M-��p�����*b�j�$C�^\��xc|J̔)A�Cu0�j`^�s:'w=�O���.\ȼ�#K�M~�
,�օ�_�����:�"���-2���&��똕��?sX�G��Cpg'>�T�܆��Ri��S��@�����뮤��k�~��ѓ��w-��&7g�{4��Lj�����9h�Gu��CLQaFM8��&����(��Z����_����G�w�{<\/�?����8�*%�
�Y�ʔ�nP�ɄG�&r죎���ĘG���:LT}dx���/�0���p�lY-�<�$؜3Ec��"��/�M�#��=�g)G��&&]�J~I�җ��xx���0����8�#��#ɨY���r��^����Cb�� ��[�'0Їʹ<�[n�f1и�����A�dyz�'2�s:�g�?^�C���?�y7��~�CA8
~�9�s�P&d���<�
qXi'���ʋC�`�Jtp��aX��U���u� o7��嗙@�����WÂ�mf��럳��T�D���k���+W�z��o�N�����D �����L�a����&�DS�=:/�H�1�q0@\G>����|eE����fU��y�{�L�S/�_�i�IR:��?O�=�{{QP��2Qg��\U�#��'i�h�=1X�}�<�<�y��%�UF%��9!��o�}PL���W�aEaئ&L�����^A�%zt��������A>9����Y��W
p��Rju��gF3�o,JřL�C9ï��5y�$������0�x�ه�^�"��$?	7��v>��ɦ�҅A���� �^��1[�J�J���U]�2<�eU��2b�_�������LJ%zQ)2��9���6{2v.qb����6i����ծ��C��0484�K���Dם��X;��`��RB6&J��T$|�(}�џ�A�7�ϛ��%���ۘ)�ß"���\)��3x8D�:t@W�2f/��%	G�ψ�|�G*�t���Q�{�Hb�����R&��~�p�=�لUE�.I�rO�,���/1c����ρ4������G(�O��ɉ}:�k1d�ĺ$��+���Q{r�`��*.���j����LX�9��(��H��绠,�r�B�uIǀ��n֐r�	����ݵ�V��w��;�-�4���esG:��U�d,T��%��`���I���@y�/��E^�+�+�/A\���:Xb��08�g���4O�K�㖮BtD�n{c�:B��z�)�I�rL�u����}TZ���-���:C'�s����0�&4�\���Z�+�Ƶ��s
p�y����,�'45�Ux\�gOuJt��z�G)�L�A��u�}�t ��tN�#����ބ�!����c�t~�	����0�.��WD�[�[ӯ�ОN���|ʜ	�r�����G,G�9��'�1�U�?O�Vt�:���xC���� ��7!1 A"2Q0aq�@B�P`����#R�3���?�vB���6~	K���[!
H�Y��_����k�
cNqI���Z��zH���I��ė��\w��T�5��C�cG؈�e��]�i��ض[��Zo��<���4w�x�Ul�2�ʼn���kŚ��J��v�����B�'�k����#�_�h��K�M�;d ��gڹ��~��"�$jJ�h�����K��M�[�n���jt�M�B.N�(-�*�bG���G�"R�WZ���b�
;!��B��Σ��:��ζ[-�&u	���ҏU����ܜ�IO�����i騪CD��b��7���)V���oh'�(|�l����u�Ka��X�l�b�X��_�kN}^��N�����F�U	�����?O�e��P䞣�X�b�i��&��:�'F�:W߶�b�bV]���<��^�Kޅ���^���Z�4j��Q����<�F�����vBm���ĉf�xC,�6�E�>F�ʄ�}�����B�&i�Є>
e��C��ɮ,1�":]BJ(��"F��\��2�+,��-"M�s��\<.F���Bw��Z�����^�!�[ߕ��<XГ{��$�+�Rl�[0��x�b�"L���Ŕ�5���[��f�����_5�H���>
~Pȏ
�6-���q�ؔ�$�_����f#DVZ��ܫbb,H��'��1:[��aK�*����8Bc�Ճ���3_�1a
xXQr�U�S^�%���hl�.0�P�'H�S#�e��I�|5�#:�[�we���e���BT6Jt[��x�~P��!�!�$CN�娒�yL���J0H���D��e�Doqe���"�,�'Bv!n>E=�C��C��l��M	�*��b	�6k�ǒO�(��5��������%��N�Λet�{(�2��!nYk7��������`_t ��
5��^6JBVF4>��8E���R��Xo�oq�Gd96^,l�1�1��qxC�H���Z��i�4��ޣ_�8�7�t���13�Wb<C#�!!��F���v]}�>�X�^,��d^�[L��Ms��Mi��'d=���S�I�9q��#�l��WB�e���<��'�(B�o�bmԕ
S��j��H��{K��^�J����Ⱥ#$�R)���+�Yx�<^/��/�/t>Y���1�R8��!�-+������IMˑ�-��j;@ro�11��?������jm��AI�>����a�p4C��� ���)Кg#�aɦ_�=�^o7���YQ������l�R���D9D��IrŇ���N0%6��#��.oq��$Q-7[�~��:�hQC��D�,�F,UbKb�k#�4�8�P��u&-����_���/7�e���y�m�AU�/�1��%șp�!����gB\��he����;%��
�,�w$kIt�נh��+��\����EYc�n/k&��HdV�b1�Kg�I��-���c�Yy��/��N�y��"��"�DU���|�{�lC��Y'�e�P�G%&�,Le���ɧh�ov%�cf��Dq1"Kq"N��/����{�K��pA�YQ��>J�CD9:]��Z5&��CQO�1������y�_e��,��ŗ���!��Ȣ����	[���l��=�%܅F
*��|
�1aa��(�$te/�54��h�/z#��e�C,e�䐘�.� �,�(��b\ᢄ��\
��S5���h��Oi�n����x��e��,��,�����͖^!��)'[UP�on"$Đ��2S��.9Vĥ҇;�xcdbU�$Q[��r�bq�H����Q{	�4��X�#X��D��.��lkr���Gt@D�/q�2��D�)��-?�����Ԗ�%b�e���e�l��7�e��/_�N�n�xDy!�$4&I��'�5]67}���$V9!��$!�(�$���~D�F��B�y�cddGrL�BXKq�]��nEЙ5�؊܃ވ��5�%�Jf��׈���4��|��5l�Ye��͖Ye��,��,��/��}��ߏ����C�I��ct�f��1f�D��x��4��/IUۮ��CB!�_�as���D�؈�����G	�L�ކ�2$=��|���?�#S��i�5����Ռ��e��e�Yx�Yx��ŗ����x��7ظ��	Ѕ%N�4�Ư,�/�!���I�K+�!�b��(���_&��CXbCw"x(�%$.lyL��B[�JT�?�2,�>��	����8�e�b�,��x��e�Yy��/�o��G��İ�,O(H�
N�K��H�CB�韩��V5Ȯqz#�����l�I%�bőCc"J��"�<�bC4���?�D����>MOc�ҏT'�Ӻ4�Be��P~1x��ŖYe��e��o7�,��/�C���%��)!#��N=RH�IIW�gI'xl����/�!��|3���b�lxiؔ�S��)1-�1�!�+a	�B$�j��d'LO��?�i�S��x�����%��"�(_�\�Ye�<Ye��x�YB�﷥��
e2�Y�QmZ<����~��?�x��F��R��G(ҕI�r��4��p���'�B�z+�_�O��-��[�Hl�M��Ÿ[���[��%$鑨�������lH��2E1	

�D��dd9�D���UF���y����~���#�u"P�Pq�6X�e�Yx���ظ}ͱk㵻,Lr�΢�e�%�t�-�����xƟ���$���#��xK{?R�4`��+��ƺ����~�ދ�X��Q�	i��I�e�#��)�+!.�e�RKz^D��AH�'�"�$�b{�"��[��̡G,HLQ5&�(��!5��y����|x>8vEY�SD���p�ߑ��,���֊��ŖYe���e����e�^+�\��uO伧����#���zU!a"���WgN��H�#�������z��d�v4���nJ
t߂2��H��7[���~MI(W��JJq�\
u4�a�"�68!���Hkf%���(�{
X�{��Ĉ���"tGY�G�tvH��24��8>/	^�MJ�Z�M1���=�b�,l�G�?�xl��e��,��,��x��e��e�OE�/�=(�m��%n%�X�#�"5�˱���>1��]��)
�)��n��[��M$��K��~<����M8K)�ZDb���?u��R�Hh�#��1��.H;V-�cxsh�[��4'�'���">��/b(��?���_�<���9%�Cn�l�2ZjJ�A��,�
u+V��k,�Y}�Ll��,����/Ye�Y��?j�&���bBU�(���"<�r�X�O������ֳ)(�b�m����r'F�LPJ�\��7bTRj�(���qO��ThNz��Ml���+	b�JVI��W�o��CЈʍ��|H��G����Z��k�Oڈp5����^�G��{68��M��J�g�es��Ye��e�Yy�Yx�_e��,I����iKݱF��B���Gy�G�ȸ��}�k-�I����.�ڿ�a�TQ]�z�
V&JJ*�	Q8&��(E6�vV|�˴-��eS8'�_����Rco��H��):6f�n�5ڱ��I�T7�Ɵ$��O�G�i����54|�a��y\���Ye�'�x��,��e��Ye��,�����?ҷ�!�l��e�.�"�28X�h���R�qX�M����;ǃ�C��n0�����<�O��b�,\�^�����<������)DjN��43]�E5T�ҟ�Xb��e~_�Kԅ�?c/��%��OEOu�(��|��q���Ye�X�e�Ybe�Ye�Ye�X�e�X���y��#�(�%%c���Ķ 1����!�Xb?S��c� �K�E��b)��U�,I�T�.����Cϑ�#��#DS����[!'[�2^�<$2>��I*����%�%�
M	�Ƞ�pk�i���]M	z���ό>	%D��*!'d�l���M|RVYe��,��,��,��:�,��,��BSuKAi�cc�aDQ$�6E��$���X��pAn1����L��=���.P���Ce�M��1M>*�uSm��骟b�U|�eP����\a12\���w_�R�7Sg%l&Y?�h�2W��G���O�ɡ4� �H��#�☕�|#����
&>Iz�3[A�xp6YgQe�Ye�Ye�Ye�9Ye�&ii��vLM��"�\b.�d��~�7����yc���C���F�<,4#_�i��(�W��<5�M�=�j�<��G�-f�4f�6��]�7o~����V/��"�#BD9$�Ț�{|Y߿R�S�8��Cf�Lj�e		s�4^Œ�'��i���/ca�����h��ca��(�i�=��pkm/�^�'�*���)[�$����e�Ye�Ye�Ye�Y�Ye�u~�B��[��<�!;�/i/��Q�O$����r��=����ab�?Q��L��2
�,Ҕ��Q)��>q��qڏ"$!e�΅��q)�H��C�׆����u��/�G�rR�+�H~�V�E��$�H��?ɢ����Q���|�(���4�i�,�=��8����/�?p�_��Lz���&k�GS�ONzR��Ye�Ye��,�΢�,�Ρ��O�~��<(��jP��i2�_�o�<��|1rxd9��E�(Lx�9��4�"���d�����Ȗ�J$�(Hy�^��A��~;+����Q��Ģ8	���1�]�
4���%�ן����_�?t�ElK�41\�'��G����E	4��B8����_rks���%����5&�6��e�Ye�Ybe�Ye�Ye�Yg�4|�&���&GV�%�?�?����ĸ�|���|�Cie�P����ӗC�Z�c������rYb{����[����~��+Cd��-�$J
�� �/�$4?s/a����<1��\��h=�/#Η��$���io�,O�*����U�*���Ƨ�D=�ro��e\�%���Ilѫ��_m�,o
��)�¢:$�N�#�pi{?ȸc�W�0��>H��(h�M�Y��x��Dp��P�#l�њi�&q�,��xn����)�#������N��SB��"Ib�&�¦�#��i�$���?�/$�a+4��M��p����˒<��.W�Z��~�m�D�mDRRCT��Z����K�Yz�}���kQEvii�Y��&�:R_Jt���� �f��K��-��~k��q�]��dc��K7�Enj����,�V`��Z�[>DƎ;��t���2|I�^�3�'dy$�<a1�I��oT� �K�^�Q���\��r��+�CO���_�.�zif|��/�%���޿|���k*����I��"3V-NG���_����Q�Q�Q�t���gI�t�'I�t'A�Γ�i-x�
�J1�����ᶸ'5��g���u�F��ia��x�.�Wv���b(�V(Q8Y�AI=��3�Vl�[�5�$�I'u���d�%��Ƚ�lL|���I��X�$���<{��o��N]=/៺������i�s�>H-�.W��x�>�������(�(��p�Ԩy��c^�/��tA�t@�΃�΃��?l�:���:B��rC�ĈrG�|�q��+D?L�v�_w���#$�!+��f���W��%gI�Ά-6-6GM����'쟰��_�MQА��)��V��tCQ�}2�M4O�M���1�H�H�"x�G#��͚΢���r_Z��/��u&A��c��ZD�u��&FVx�����*�Y�>��>E�%&��D�ط��j~�M��#�k�(A�t�t�'A�t�'I�gA�tk�\7�*r/q=�H�����׵~����Q��
y�O�����eb���b*R^�i*?m����:"(��K���~�˱Ȳ?�5���;N�>I'���P�#�dJ��h��{�4$$HK�]�Υ�U�xӖȽ�a���YҬk|IR5g����ԥ^I?Q|��u��%$���^ĵWCVKB/��i��t�"��t�'I�t'I�t�#��q��S��D�D_"�G\2Qm��O���9z��rC��;�,��/����y:�#z(k
=������U�
�~F�[��kb
�Ɲ�2�c�T^�^��C�"��&7�
u�_��ZEQF���!���2Shҝ4�"��9F[1;K�BQQ��qlC�I��_*Nߏ�R�i'�<Df�Ġ��ƪDt�gc��H��>�P�]�QX��(d/z'�!;t67B�:�-�?��$�PH�gB�����P�"�|�?<�b�x��d"�"<��^���~��$>�r2\2f��
n�rƍu�d=��4-�/�%��p!G�����GB:Q�C�@�K�p:W��%�$�I��acO
Z+rL��R���K�"xHx����cgR:�%N�%me��o���؆F��k�zؤ�,�I��͔��q?n��QJ�"�!��D��"�
��.�%�,X���	���H�
���%c��%�i���$#��I�,��KA�4��y�0ܒ'���ۥK�$�!�II���#�D`�|

�w?m����s��t'B:���������Ȕ���o�i��%�rd��+"22�Fm#M�_�����F���ti�P�}Λb愋ŏq�n>��{!l�5�D)�"�~5LbK��F��7bdvW�&��JK�4�C�IQ$�qJ�&��E^m�Ӱ���'N-	TO�v�p%��"��Є��$4$N7����S�i�+?i��6oaE�9t8
p��1��4!�I."5�kҊ�$��ay��Fm%k�'+�rn�xf��o�JO�''�q�ȣ/��_'G�zr:hzu���8�d4կ��c;!ᅡ	&������x,|��kv.0�_�~�,Oq;�-����%H�Rm�d�⎤���uU�����hZ�{]?��b�u~	��6ڿڰ�{$����I���4ա���j|
���BY�C���(���/CD���ض:O-�V؊��ef>P�	����4��J�=��!F�����~MY~�o�i����{	-�%�{��$&�G$9�#�IN�6ՊM�{����7(u�n�E	��H�eug��6�ԕ�=Y���&=]O�	M����'n��~ءHP�\�|����B[�kv'�ň������ő�6���K�i�P�u�6��-�����w��o��
*-T)��cM�<�;�I�%$�Bj$��,D8Y��:G�P�H�x���#��<1pQ'��\�p3�d���\b\{�Ȉ�����%�_rҏ�/`�����u]���'q/І��V������E$���%�-ׂ�c�g@�ƿ��Z"�+"��^�H�(K0�1p>H�rƪW�'�!������8���~�O�Z�44��aB]V�k�	uI�=���3o��)����W���c�	�I�=�!�٦�7ؘ��L�$�,H�" ��H>K�\2/a��#�4�c�1	{��%�s���\�p?�жH~�Kd�O�F����4��?x�k�V4'��lt�ce��Q(���k�N����st�A��(��c8B�\�@�Ol2*��I{����k�Z�G�<T�N�<{�cO܇ �c�(����l�k(j���$�<;&i�}�dG�$x�q؊ ��H�Ǒp���a��!����3K��>{��$8DW"�����IR�TIZd#�$J
��L��ȃ��{B[׆'�Q�K��|��/�\K�_/�2�b}KcKI�Wd�%��|���'oaY\��bΟ$�!��ظ��"y/v"��T�7�G�6����~�I�"Ԗ�f�d���t�ˆ�	�M{bؤ���MNk��>F�I>;?cY���-�kr<
�{	��&7�9XH[�^"[2<c��"��1
���^�i=�7�M�{��"-&�-�B�c%]WC��:Hl�A�Et�$��%
���+q,7Bs�����Sm���"C#%!��[�qE��5��6�ܾ�b~�,d�|����F.?s���%��)���D�Oa���Xf����N���C�{{o�BJP����%#8x��cƓ�,<>4$4V�[4t�;\�[����)�ȭ�8k���%�f����(r^��{P��'V�Z�ʼnm��G+u_VՄ%�Z6�5U��sDMX����M.�~�G�|.1B�N�D�$�DG��$�1rK�J�������I���k�{W��:"�[��OS������w�bझ7�-D��I��f��
Н�	��k%S/sC�1�2<\C�.�+�)S ��b዁�.�u��e��%4��d�d5U"Sd����B(RIx�QXh�"!�&J5!�ĄK���(�����%� %VVX��b�e��G�.Ir$>P�q��-��D�T�%*�H�{�/iPղ�$�I�r�|��Txu��qrޟ������|�o�K�1��.t�%�2J�B4=�yH����(q+c�>^H�x�/$V�x�����S���Y)%�z����$��\<I|	�l��Y��%/+ȣc��r)DZ���V6�����2-��,P�IBc䱺E�Ye���G��O�p!y(�:&�"��n�U���n���?��څI���%T��-��.M?rLu�O�_--�9:�~�	�v�jc(|᱋f;h\�ίP��.^M�RM	rG��
�cd�A���<�7[����D/��̕��IȄ}4�	��Ea3�,���Q�"�w=�ƜZ��:_�*:Zދm�>1(��FvEw�,v�&Kd&��X}��!y��'��D�_�k�
��[��ܔ-5���ڛ��|S�NNWk��ש��Q��|e�]�Bf�������xh��V>GP����'�q��(�\��x��X���Q���ΆF		wV���"��D��uP�B�ܕH�:R]�o��#��-6KM�%�Օ��(��V'e	(�1ܖ�D��O��ظB#��%���%1�(���7�e��'D���"	.	��{��Y%hjƩISǓ���и/�Z�)Z�.X�c#Ŝ���I�$8������"�+�V#�rt��i����K�(zo�|��	�� �:��)��D�/
�P�(bEb(��t�Q�'�ܽ���h���#��DuE��4�#�{Ȓ^�����k�1VJ/�kq
�{���(�BE��w�%�K���[,t���;�3�DJ$�
�~H��j��}�c$.F�,Kwb�x�a��	*��Rm��p:h�P�����Xc�H��(N�՗��c[�O�RUD�"N�M�3�:�%�d^�]�|a�F��?M���c{Ye�X݈Lksȋdy$�2<	5���"�+�������
������+��o,���"�|�;�^�[��7Jإ|a�}˱wQ[�%�E�^_$�̄l�܂D�C{�)496.p���չ&(�Oy	lQ�g���o��<�#�XN�ȗ��1T<�(B�k����E>0�2��C�Re��M$EuptHZlzr%��#��+5���1���2/q�d����/��(�J;�Kb~���C�$QX󔆨�'����h�!Y���,bk}���EQbb]�E��b��I+�P�n�����K
"��&J,���C(l���&�8$��Nj����;��JC���Y�ӱ��CxB[��b&2(�"��Dx{�X�BEb�d�e���l[��l���|�r�'d�
V1��wC�����f(��Zz����+��'����cXBx��Wk��d���B{	�6!�p�%m��LR��$-�-�7�_�YT&6DhH�%�<�'�OaW��w/�1
��L�_m��Ʒ��%ػ"�:(|�D�Ã��h�}M"�b�|5g�����c��$�~Gڷx�%�m���X��d��%�C�E�GرՄ�d��%��.�D!SY�V�Xe����Mٻ�CXLBT'eXXe����$�b�7*���ސ�w+sU���BO���FH[�w��Ó|�1����Eb�W|��$����,�һ�>�OQ�S�!a�BT9�C䑶,bٜ�
	��!-�IZ,���&&K4&^([
��P�v�M�M.X����(���?��6�����bcv-�*c}��2�<��/��(�-2Ph��J�,�=�=�쉩�4��7Me
�YcB�rĄ!V(�2��F��P� Ia2��,H��Ő�S<a�_sb�ʮ���I_�4߂Ƅ9��Ye���_=�؆Wc��q�?i�&�Ȓ�bI����F��V/	�!���� �IZ��L��ؼ!mػP����R؄�{��6�#����	n�����];h�(X��t�4�E����+1�Yx�ر2|HҾ��e������8��,e�.��LX��Q%D%h��P��m�$%ܑB�*L�t��t��&ʙorP�>~�%[x"�
|
1��.����k��Z�f��{�dM)ڢ�:/t-�(�4&<!�1��h�".��q�B���ŋ�Б�ƒv�"Sr�;�����%�����69��U�J��c��^�O��Wm4,u
�IZ:F��$��d%L��O
",����ء�!!�<"�Qb$��+�V�CCb++��l�hԓ�͑�ȓ�I;�ka���-���(I�,�C:���(�9kEb�S(����C9(�D�:lp:�bB#Ox����(�u/"En5�X�BE����BXi⾃��6=9�-)���1��x:w��Rl�x�jᄒ�y(ӗ�Z~`Bi�}�LxgM�%O��e�X�k�'�Q$J;�$Q��J�/!a
�	�����(�$�,�,^+�Y9R�|����[,tj5�Mt�B�4����
2\n)f�Ye��p�;y}���%����\Q�j�
�ƒ�EnpP���C,��Еaa��y(HK7�د��Bc�ش�ƨ��|�t]�����&�����K�R�6���%Hԟ���C,��Wm��
b�/5�F�r$I��,�Ċ+
a!��/	�&5LBYe��]��v�^�_f����#�QE����S���Qy�RM|��'��}&1b�V,}�C++7��zcw�QBx�m���B�B�bY{�f�,k��l$�#U�/
�\(klWҢ��3Q'�X�t|S^IjJ\������}���We�<P�^/
a�|X�(Xclw��0�e��$�a��l�^/�ShZ�S:�-���1}*����e��"�dz,��$V�(�f�g"CBY��׊n�#�]�+�H�ǁ��GIEQEb�����"R����ON��+/��w�!�gI�t�	2��ß��.����1P��>���D�<��/ܸ쯪��b�b��e�?��u�<'���bxll�/
�v.��_R�t!��ʼn氹5���}QEvǜ.���I�We}5�����8�9
℄����?AviC�}�b�"�����YE����f��YXMc�6Y�y�a�qc��,%��s��G���s�Pɒ��P����־��X�o�a����]�c����k��7�K��v'��6J	�5��<	�\�ﱺ}�q���xBB+���cb�_M��������X�8Я��܆/�+�,,QC]좊�(H�a��w���H�p��ӎ��}��H�&)?�ބ�Ŗ^X�ĸ���w��կ��b�b�Y}�	��x�JE��"��O��*�c��r�,R��!Ȳ���x��4V(��(H��B͏�K���k
�����5!1A "2Qqa�0@BP#3`���4�����?�#޿�_�_ï�A+�`��M�ӃO;����咍�BgJ>��|
�D�t���٧���(�Q_��u��rqx�h�C�N)ge��"���<k>��~K��E���2ő�C�TMҪ�X ��ii�kt���̒��Q��{1h[&?���:�����Eu�T,!�F^��1�hG�إ{-�gax�j�CW�Q'�f�
���m?S�3J�"���=����������'_���D�H�퉌����=[5�''H��Oɧ��{!1��D�IO��S�
H}H��#�^�D�qE����~�C�:���M��_ث�tW��$i[#��Yd�)��'��ى�dט\�N�(��]�[���D��i��2�։1E��K*ƫw.�N�c�p����)A�dhzG*%�d�#�#��xh�#�$!n�t���M,wȄR����!*���
9����4V�'^JLq�L��oA/K$2/(��mb�Ju��&��9����&JD�=�86�4Ny��"Ye}�_%Wqc��kl#��ruRP��k���w��Ϧ�(��Y&��ގ���l��d����Ί!�s��$�X�lY#�a���p��KN>�ӏ�н���1]���QC�D�OK>A�����8�k��u�5��Rq��{�
�.�%��~�g���,���Soal�R%+�)[�,	��Y١g�(��D�-5?�Pqy>E��d���(��W�9N��-�D�&��j�>I��iz6L�?P�[.IM!''d`�����bp���!}Sx�#���Wc���t��J�H����]ˈ�hye#�_$��AIS'�б�::}���W�FrI|�gN�4��ĉ��xov�Y)Q)��B���QF���'���˥����Q��tY*�Q��6I��j�r���D�Բ��Yқ#�������JNL�!G���L�;i?.�~��d��(�rF$!�Gi>�2O%x+� �&�(3���<	db� ��>IM�Y�8ώF�AO�Zr����X��׆S�2�D��#�$�=��>D�ѵ���f�m.IM˂0�P��ڼ�6-��>H.I"��%t��+�;44i�E��1�C_���%���N/#�l�e~�q�t��4^������H@T�)��s5=dI`�m�Ӆq���D���;b�	l���,����4"Pm����b�BP��X��Q'p�$�#Iy�	
�/��H���)�L��q�SV�%��JY�v<�U�����Q[W�SGB�S�]YvA�r(��Hz�OQ	+da|�[���nX#}�й͒yB5=#�hM.G<��.Y����RT6�)�iq�.��R+��~T5�D�C��;ʙ=�G#u��(���ÂZ�8\��VB�'�"̍_Yi
��-�v�O�Qo�D{��j������b��L\��$�6��o$�<;�6C�1�Q�҉"<�L���Hh�����$��װ�rs�[Q[����F�H��O�dy5y_8�^ҚE�1A!�CԷ��*,��������$2dFI�o��Q��%Ti<�"�о�I��B$��y>��C;�|����-7�7�>�?�������!��H��ܧi�ΐ�mo>	�C�j� ��ʇ6�=Ķ���Z!��,���7����k&�rN��4��l���%�#�&���$�F5g�zQ/B�L�'�_�{1�}*��K����\�Ma��pu	P��ׂ�ފ(��+jڿ����OS��%50�<�6�}ɬ�ԖȒ�2&�� ��yN�)ˑE!�^��P�[K�>�O�,�7�.�2�!b��ƚ���E��-����2J��M�"[�n��M��sKZ�D�
8)9_�88����J���(��(��U��SQC���l�H��jz��0�>	B�C&��!5Hn�7'H�+u�|l�"SH�����$��fO�ȍ�	cnbcVh�����f�r��}G��KЉ�>����f���\
�
)�Z4}r��KN��"��Y��E�~�gqL������P���I��Y[J-�0�Dk��N6��Ɋ)1���9��c�G[d��)ܰi�9<�Y[O�ƶ��%�B%�T�67���"L��bOȑ&@�oL�Jو��2#�?&��'�#���(u|�4�5�FBeW��_S"󵚞��8��u����J�$Kk/nvLd���c�Hsl�h��&K�|l�e`�%`J�h�+$��TC��%%�Z-e��G�șأ���bt����O�2�OR�qO�Gf&F_˯��/;#����F
�8[=���ie-�̽�g%�R�?QM��4�F���m.�F>G+�1HLO$���De�B��䖋YF�|�(D�ɫ�bX%�E���Lx4�B�Zw�(�����Ed�E�s^�:n��-�|
m����[�5�
-��D�ⱳ�$��m.�����S�B��dT��S�3^�N�T��s���R�rV�Ԅ�,�H�,���ѩ�d�n,��L�����L�2ƨR#+��-e�dH�䖣���Q�
���i[��	��"��ـ�����K%�dFK�r2��Q�ҝ:dr�XƄ�:E��Ok(|셽��ȪD^����H��4ߛg���2��B6螕e��h���
��_����B�ǂ����J��3M�E�[X�f��x"P���>�ٱ�-;������5Lb�dQ,LO>"�Ok�k�-"Pk�p��+F��D�#O������!*�Bjk�Գܔ+�(��Q_�,r^�Z�-�E����d��i�X��E؋w�A�E�ך�k���,Ő�IY)>��(�rRV�������!�t7h���r"Ph�k(�N{���uؗ��T�xF�Ԩ���:Sԋ�\�1�;2��Uh��?;�qI>��[E�KE�-�#��ݣE�dJD9�Q�4�H���j4�9\S%�Ii��(Q�_��+�o��
̔���H��Rڊ)�s���|&+�>QKo�^rnYx4��0r��Z��;��o�9d�x%&�MQ��(og�����eR4�%�ʮ���D^n�+7i=��'º5>���??v�%6ݶ)�ɡ���]<��c�U�ܔ��ۓ�#!4Ed�"�'��ξ�Z��W�G�[4Q%�f���%����Q�4�BʑM/B��ѭ��*�P��!4�:��սWi;����y�}��o�
��j��%c��d���h�(��Mhi��KU�V�'c�ҕ&Jr�;%��}"c��j��\(h�t�j��ŭ.J.m�Ѫ$�%W�Ɯz�{���7�!�pҋMd��no�F�%/b�E��P�3NB{7l����P���ס�r^�FqdY�<�Gi/+>���8�Zi�%KfkC�뱧���"�Kж���I1�4��&�	�a�Q	b��k������H���ӖYu���Y�p�M���}�?�Z�<d_UM�D�W��A`�h�w\m��ϝ�i�#�E�r�%n���C�T�Q��>�B�V�~
7��C/E�R��[%?Փu���"P�ue
x�A	mD=CtHԛ��GZ-d�R�IB/��(��:�GZk��M���_>rI�"1�
Dy4�o��k�9��c�2�3h��L�Ԗ6��/+4xec�9"N�lH���Z�C���ViO�qͲ�7q_�z� �<�=ǴJ4>D=��{"1�Dco>���H�8T�:����ڢR���4�ri����]q��Y-7���(b/�Q{1rL��U�a��4Y
Y��iϭYe
����ȵ��|x4-'���R%��!鐓�4�o��~�|
y�%hM4[�4����j��%�����)H�2%�����o�R�Ւ��"D�iIF������"�&�,|���ODž�^G��)�
L��˗⋤�cx����}�mIj��|�Z�t�dKZRI>��,kM<Hyd}H�%h��K�f����!f��K7��g��O�2jQYɠմ���3N]H���M�m������(��'q���/ܪ4�;K}%Pڊ(��Hnj�Ԕ�x����{��Τ�/%dt��J��4�T"}b�!c4���/}?b�%�embGIE4ӧ�I<;'m��aR����vǵl��A��.H��&u~g�%%-Lq���Aa&-��6C[܆�eܟ��e�t}�)G�3L[�h�����NUF��������?@��N}�Д>j8a�)&�N�Q[�E����#�Jr�'S�y[!	w�K4}J�~��y&���>�}o1FirK��>�������e��%�[�|R�qm敼���ˢs�!�2�cy$%�+(�D�J�B�n��%8ǖK�y�Ksc�\�E�	adY���'>��� ��ВJLS���6t��κ�SL|^����ӌ�}����|�����Fn2��L��Z�����\?�]Pf��EQ_�EmEQEQE6��9JX�i���̒��������'b��R���OE4�5�R���O�~�<��f��#�����6h�K��,�y~K�EB���Y�
	���U�J.��9y9}\݋�"����T���|�����x"�1K$Q,`ԛQ�N�94�\��߰�D$��4E�X��!m��ɬ��HY�����Si+!��%��$��Қ��FI�����?�q$��P�.M/_�C�_䖤���ڇ�+D���MK��(������(��(���������N(���N�,��	V�W)�������~a�%�b]�}?�Y興���ĽOh���������!A�8AA��4�Y�I��|*#�/qa�VK�<��
���ZO'\=�9��Mv��9:B���-8��y}�Ь&F�����ҍri���tj��[�(��~M%�<%���s�eB�4�����O�
k��G�	N����߆}��_��A)�����ى��Eo[QEm[�EmEmEm��%>����'��K։b�K$�L��XB��f��y;��8F�a��/J��	��g����^E�YI#K�K��1��+/vX�Pи%]�:WCn��B6��J=
�ﳍ@�'���k#���i�D��C$ �M_A��ir��-=I6�1�$���
MR͊Dj�dr��F�o�S�1J�izdj����|Q�F��K�ɐ�d5���������a�{X��w,{3�Pi����ӿ'䗣�7�zjQMr��d$��Q^(��(��+j(��y/�$��%]?�h���d��+�4���[҈�>��zQ����W�GbȾ�Ȇ}+��ki�EHzm<��]��%�I�vؠ��1#���+�ŵ��h�����C�k�U�lo$���9v$�Bq4����	4B	����S_����H�.�#1J��e}?&����)���5�QK�P��b\=��j��HK�JА�o��5~v��}nw�i���Iy_�Di��4\e�،RX(����+zڼQEQ�Q�D(���x%vO���$��O�F�.��S�G�N���Wɧ�5�Q��!ۅ��#�CM7��Ɛ�d�S��;���O<O$�g�E	!�!��؇��]YXݾ�pƊۤ�ȩ�r5l�RcY)
�w�H���ư47ө/rN�v��*%X�TA��ԗ����E�
$k���}~��XD����W�G�z
�	TIs���T&}3�����c«%�$����/�%�f���d=+�EoEx(��ڷ����d�Gӻ���D��|���'�N��ɨ�$y%��+����~ML�b4�X�N��k�CZRt؟��V����'C4�ŵ���X�61l��.M!*TR)���\HxxBˡ�"��JV(�]�P�����1���P�2B=M/bri"R�NX�&j.>Mb%y
$kr�2�͚�M�K����|O��Ir.F�6�F�Tf���Wh��C�h��apI}�$��3QEQEQEQEQE����}D��FN�(Th�O�'�|�M��+�)VIE��0��圚�Ѝ(�����*�Q���'��iw:Y�Ԉ��AH����Ie��=��p=�ok2P���1#��Ye��F6�/1��!�5���0����H�^���~�X�"�it��P�Zr�pCN�85p$ܹ�
'�F������-H�'��rJ^SM�u�E�o���^�Ib_�~Irw;o��]�߹����ِ���cZI�;�����-~��[�EQE%�}�D�$�)}ϧ�B��r�H��Y���#)AОH�X�u?V|&uI�ǻF�gi�A!mB��
vDHkk��ċٌmVKLeP���$ۿ�섪$+��Y<U�T�"D�@��ܝ�4���X!�o�����_a�DP��]��l�6KN^�K\�8�k�+�ƶ�oB>��M�"���\����h���F���>�QNjh�Ԩ�M��M�Φ�9�}�	\0�q��Ye�YgQe�Ye�Ye�Y�%D�r��	c�j���x$ՊN.Ũ�TR�r���X��5��#�%o��ċ��o
���ub�gQԽ�8���c�g�t~���?R��hs�?������E�ݫ|��,��RH�����W!�"�$�rK"X$����j�b�d����
:_��ʗq���p���i�M=5b
���ZHӃ����*&���R����q�N(��>��?d}>"�I*O�q�+�J�M׹����ɥ�0�n�;������:Σ��:����:Σ��55�4Bqj�H���٧�����xD�d��pw�Ll��4�G�ؘ���F�]K�S���-��R�cj<g�X���gS���	
%�cb�,�
�DHc�n茟Q&�	;�a����9d��o�MȘ�+.�;��;���]2o�h��(���삹1��:Q�d�I�yNMS!6�drG�h~��nϩ�w�5.�1i;5w�;&ڃ_sI\��!�i�-v�#�	pu�CԪ:γ��:γ��δu���:���SSvITG��
w�5q$��TO�Ыh�K��5mQ�Z
��yJ���]MhKk54��tJ�2dI�#�^�L�����:'�(O�9{�/aiK�)�1�Ȏ����[8B�v��Bc{%�9.�,ҋ�W�N��_؄��k
�����'ɦI�v�٬X(�Y'��1����~f!��|oC!�d�fD���r2B�E\��B	�P�%�Z8_'�R��B	��5���a4�$�-7�C�r��Ǹ�e�Ye�e�e��m��	;�|�~T7{Q��Ӎ!�8Q��G�ƾ���il���K־vԛ�m	��:SgB��Gq��(p�t�#��$a�Ǝ�9�](i["�J$Q�88:pt��4�N��vVmv�qBY!��%�G�E!���(h��k���",���=�����k$Gm'S_$?K;#�0��l��#�嚾�|�VS�b�)�ugQ��Y�ζu���Rbr�s�s�r|~H�ūLъM�I�AZD�o.��A8;4�ܑ����?�Qlpc�D��,��Q�KQ�X�%�i��c%*bօ�=X_#Ԇr~�Z�S��HW"�}�8_#q�Υ�9+��BK�m1�{�^�+d�/0��6)�؝�Q#&u3�ظ(�%�!5��T�Ċ P�H|��1�c��&Y��HD�"o��mby�Ybd=l�iI
I���GH��t��Jx�U���}B}*�'��M��Uȟu�U{z�\w�ݾ�t�Ȕk'��q��ְu��h�:ζu�b��\�����?b���������*��Ms�tJiF�>��B',��u��d��Li�R*,��P�j��zrB�j�Q�HE+�B�b>]T�Y���M9���J��ֽ�<�?Yi�,d�m�p�܌D��;�e�m�ri4��	s���TI	��TR�"$B�D�IVP�I,����X�ȥC����bc�:�'$�
?S?Q{����#�)t�P��ՖKQ���F��j�>�~�\�lm��m
�%�L�^��iq����C�٨�RK�7�,��2V�Q��Ъ�p�n��­�P��D���B���b��\c�{k�S��~�Ծ�ԗd9θ��r�Ӫ%)Rn��#�!�qzQ�����b�%�~��Ay
q�'�_&��ohC�'�j��-���#���~����8�hzS�Y_bP�YL�'���9::�<Q	!�ӗ��#��
��;xŵB�
�D]	�܂�I	f�iR��%�=Is�4�wf�"9�΢�酒}<�i�|�
}6�&�M�3nT�hsF��e�Y,%�G��Y+�>N�I7D�6B��|�o!遫*՗�%L����ii���KEAՍR��$`�t+�PHp:-�c}2�or��l�L��t(GN>�ӏ��q?J���D�����LsG��i���>�izMOP�<"L�$�K�A�Kڰ�� jz��?@��h���,MP�:���K|6(���FK��MƜ�C��{>���E)"�YV�*ρ�D���L�^��/b:��_��,Ҝ^��o$����&�]��UTd�#*X5}�-�%�5dU�7���^����f�#D95��$��܏q<�A��K�B#�Z�4���܅t����rS��Y�W�ET��(�|��I��0�~�1���$՗�&�,1��'C�v!�
O¦�և4B���$�F�	AU.IA�Q�o�cI�:%3GH��Q6���#�D�	�䗠��~Z'�'�_MNP�#A�
u���R��������	'
k7�'��څ��d8$�[x�vюHa�([!�X�$&8!,�2(�F��YDer�#5W�������,~MW�����D;��(f��`�&���jzc�.Q.Iq���

�r9�"�i�T~Q-��ɮY���&}J�~H�����{�b,�r׾GrI���]���jf�)�B��xzd9t�b���GB�%�$IY+4��X�̒���(�	d\1C�dՌ}.ѥ�#
�Y�qDI������^S[��#v%�$)�,�n��FI����iv��bx%��H,/j��M�HB��Ox!ș�������ls'�?�Q�E\~MOA�H����d�
��~dK�<��C�j?$E�.Iz#���F��|1�D$��i˦I�s[UN
#Ns�RL���O�"�G�VJ=-1G��]��vd��:�G�^P�MIp7D��o�ho��֚i�sJ��=J�<���),�
�4���h�z]�ĉ�E��bbXD��=6�(4�$�YF��\��WsWӕ��%�����ĘȬ�|6<`�4��ゼ����jN�AŊ.�"$�_bJ�#�XC!����$�E���X��\�\��Ȅ��	
���$���T.?&�����"s]5yRGr�@h��L��d9D���,���#���gU;c��D�A����`s%�k�Bv���Q�
f��O�&)4�'b#��-8��F�8�dž$�m�d�ОΎ�CM*:��6cd��[�{GЈw"��5�����O��-hMRT�$.�^�*�O�K�F��!�W�"����cC��M�D����2�����qY�S#��f7L��K(�$Jڊ��5=D�#+I,�O��i<��n�+�߂#䬚���,�O�W���O,^��{�"�i��!!�dtX��2K�O�VIz��p~���D#Ce�Ce�t賉į�r��I�,��SF��E�'��Lb�I&ݱ�X���o'���h�>G؇�rh�S�$�4}h�C��2�E����4hgI|���H�N����`K�1�IRC��Y:%�Qj]i
m:t�<�ld����,�d9Dx�ŝ��b��|�&"K&��݈\�rI��oS%�$�U�~��wC(pt�8:�-6���W���;�B:,P]���&�3I��%�O�]ʡ1��X�'ܲ]��mq���\�̉:B�,Ӛ���)5&�Kd�Ji��#�H�J�T41rP�&ФG��|"
��:�Ӌ��"<��?��M�$1�I��I.�A���Y4ߕ��S%bH���#����+Ke�+�i�H�xG���$�H��;B�E�ϹCX"�I��pDk&���Qt���f��m��]\1�C5}L}��M��)pHC�,�m}�.Y��:.T�B���Hdy��X�$GQ�TJN\�^��&s
��iF�{�����у��)3��=L���dU�QQ�j�N�^�Df�'lp�	`�l�+c��t��3����	`��f�̙��$�F��$���2zM�D�%�% ��A`�N��7M>Ȕ:�0�H�4��V��F��I��bD�]Y$�؉&"+$8�MpȤ�Ćj�Qe:$K�QX#��M>Q�Y+���;�Via��=O�Q�w�]ȸ,$)�)^A������o�GI�I,�k�V��o#�I`���j#(�#�� �IN��&>F$4)4-F���4�)2Rm_��'�	F<�O-:B�n�'x!��f�t�M�"XF�{�QE!�Ay�'D�P�p��>�8d���#��$݌�N�P��+���D�H���g��IRq�#��D�֜���8�DHemY(���ŏ��(�m�4t_r0]�D��X����&�if�5��\Z��\��%��^�@쇶�����!��y{=EX��e���f"���{Do��oo$�,uB)�-�M���Օ��cx\�Z�*!��"����'�
vՐ�����t���,�S��Œ��Zq�&��E�J$��>�^O�'���,B/S���$T�[M�RuƮ�6�v��&Y�&",��,L���$?@���	�:d �,��4������C�X5�JЕ
�ai6CIE�5�e�o���y�^{��M!��X����o%�e
#i
��%!�YGȒ�"��?tIb�n��%�&��%eY�r|"����B����$'D3+.ƨ�	�݉�l�69Y�薟S�J
r%��?�$�cG�<���y؇��&�F�#8>E�F�ưH�K�;���)S�FV��D#]yF���&[cB���i�.�5BV5�$h��Ġ��(Ep��C5������o&G�=D�%��&��1d=�(�-�d8���7J��^�Cc�"�Q(��Wm�I>�6�ٓ��&θ1N"e������
�E$FvX�3��ཚ�Zi�}7�L�XϦY�׷CR��d�G@�L��&VJ$V�%vV
>
���,!�#������~��8
��"dK�hr�ƭ���	�[BW�jC����d�H>�P�EVղ;�v�i��m
�^�	l�أ�
�-5]�a�䪆"$퍉
V���H��g��=�dK�)��~z"N�2�$����q��h�,��@L�Q
�=�"4F��ټ|����<���^VQ��#�ҡ�����Ok,�Ǻ!"�
���7�tG88���G����qm�//#�Oԏ����� �MU�7�x���e	QD��
��0#��kIԌ���kvDD���C�ce"H{i�1p@Oi�#َ4$P�2�ٮ屽��"\�G��G�4Il�9{
Y[QE
#EIQ"�)V�YeP�D��$I�1��<��&��˭��Iӱ���ɩ�=7�4+��Q	)/f^��t)Q	l�ӱ��[1�["���n���6�G��K���lj��M�g��2~�!�Z��Q�"��~J����И�)�Z�p9�E
���X؞�B��EQ[-��8��)��k���h���M�ŋ9:p!���j�//C$�,�����QN�x�H�Q"ۊ��k* '�c[PІ4!��oe�vFtFI�H���
m.��۱�f���b;ْW^��/c�!���d�H�Y����i!͍�D��6i���!��lh�x��e�-�42SM�5D���݋g$Nj�&g�Z�h�W���I?K�?�ُY�\Y	9/*#��{��R�)	�w��8�8/vX���#4Z{6Yb۰��J��v�w���ݦ,���C��Z4&�B���q�R>�]������%6���%d]1<	쇵o(��:cE��хs�irJvP�H��[1���؞7I^�;���1��(�
8�����qǂ�J�;cDY�{8���?
���bc"莢.ķC[4v=�h�"�%��y�Oy+C�F��1���ًiD��>�1-ИؘՌ��P��űF�%4���k;&7����im�E�gBdRC���~Iؕ~ܧI�ql���R#5C�+j����d����*(���ގ��$Ų�,X�V%�Ge�*{M`����,�p[�Dࢄ��e���T96��Y(�	Z��ciG$K9#r��O��F�^�d�ho�d�b�a9{��>���%�WN��$F	e~��}�D ��($P�JK����'Eb��)Y{5��{=�O,C�pFT9�GJ��<�gd�z�|����r!䲶��%*̱��;=��
r�b,�
�$IX�)�J��$�M�(N�!����}�m�$�X�\������%��$�ܒ�[Q^D��S��H��2�c��c�����%��7�Ct1��E�^�gH�ȉ�d���d�1���Q�ȝ#وe+��4"�^IQB��k�Ir�C�)Q+l齛�8�h}(M��;��r��{����g�����dq�s��	�I�\�%�{2���YcG�Q[�b��x���j��"
H�P�	�of��$�
���7e�������%khJ���=�J�{��%:9gGq��-��X�D�+�nJ��(|��_(��b�-*��F��GJhp��D��e�!<W�{7�/��j�i�Z�oeD]�B٫ku��cg�H�ɊC��,D�H�6I`�$�e�e�݋�'"�1�f����Q",�1�dQKi2B��uv/k�Ur9
�G+�Ҥ���ؕ��鋤��/�K��K�Y!,�?��,��9��뇹��?Z'�}�6�>��{���E؟�Q�rq��C𽔋e�gX��s��r�6Q%�b��:h|���h��G�5�Lo{6&Y{<�N��!ArǴ��b8%*�mEmGm��`����=�ԁH�䤫�ґ�>�>h������D�L���S�%bE!$J"�T�;�{5������Cҏ���[^�|P�emV;�:��%�eՍ��sՒ�s~�eVȱ���X�!�B�kk%4��b(�Og�G%*D�)�/"BVQ(��4ۢ9�?�%hq�rN
_$z�u���RV%Yc}L������b�b�gw��I�چ��#B{gf�B	4u��)\�{P�dF�#C-Y{6&b���C��Uх���θr"�Yd��Y�S�42�4&Wb���4y:P���}�Q����|2�����85�9>�a)�¶JviB������
�x�J�+ݫ:h{Yd�X�{�11���/d=�͗�*�QcȞH�F��x��{)
�,�Q��w��S������^<"R�=�����dOi�Bx$�6Ye�$���(�hq����:$��>,NR~枚Y|���)�E��XމD���Q[Pǽmg;P�/f4"["+q��2��Ւ�����fE6$�5����n�Ll{�[�+��J���P�'C4�p2�7�VO�ڳ�K���C�(�#<k��R,N�%�Y{�CC,{P�b�r2��t���[�|������r���=�f&7�[6Y�*U�Ye��EN�;E�L�آ�(��Dž�>P��tWq��s�l��c����6L{1^���:�b~rt�-�D�bEI��"LC,lx:v���Hl��JBd����bڅK/�M�V�b��l�riK/"��,�Σ��:�����1��E��lR�=�jƨ���j��ƶ[6^��!��������H~w,l�/�Dhe�cvF���H՗����j��Y��|����(���J4���k��1=�f5C+f��[1xյ`��H��賫;!�5�M�B	gvJI
�E	�c����B��-����h���=�%��Ye����^����dŽY(ׅ�{�[��BVP��&4%��"��!Ȥ�����V6���X�����u�l�;[��b4�41�k�~�ݪ��ⱽ���'����kw��l�ؘ�{Ye��kc�C["�;�ȑO�?q1���j_1����h���.�1!��b�g�/i#����,{^׵�e�/y!��e=�Ћ,j�7����{�{1�
��ڎ�!��e��r#�d��%;(|�c�-���)[ݑ�CBڰ=�B�b������e�8�?�!����آ�I1Ƙ�V�L�
n�,YV�XŻ#�|�PĶ��C��'�{7�al��E[�B�otKg��BY;�,��,����Y{��-���^7��&&&]��hn��2�[<�-�,���b/��ȳ�BඉN��2�o�P�rtv�o!�($R�������%�#��u�j(�/�~�	�E�d�8��^�X��h�+f!���aE.���JW���l�}�����Q�[2�C�)٨��H�����Ɗ�H�s�#��,����/k,��li���ǂ����g"���IV�tE�C[����themes/images/yoann-siloine-532511-unsplash.jpg000064400000102210151213255660015157 0ustar00����ExifMM*b���(1�2Ӈi� 
��'
��'Adobe Photoshop 24.4 (Windows)2024:01:26 01:49:42�0231����8��nv(~dHH���Adobe_CM��Adobed����			



��k�"��
��?	
	
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������?�I$�$�IJI$�R�&N��I:I)d�����:d���I%)$�IJI$�S���I$�$�IJI$�R��U:�T��X���m���
���ݸ�?V�}�Ĕ�I`��^���C���j'��A��\8r�X�>$��Is���Aq��]�=�X'O!b��������%;� t��:�y���K�E���c�S���b9IK$�I)I$�JRI$�����I$�$�IJI$�R�5��e�\n��q�]����n%�FE�1�9�C��JW-�1}A�iʪ���,��/��e�]]��Y[��;�߾��a�*z��V��w�R澻�^�_UY��T��~a�=��`���k���߾�]�c�n5�z�l
�[��
�G�~�
��Q��~}�z�m8�5Ō��ݝ��/Q�g�o��)���c��i���_'�k[[}�X��ncl���닡⯮H����w��.7�0_�����j��m��/{N׋0�so�Q��{?���Pg_�Ϋ�=g5�����Z�ߨ\�f�UO���&e���˹�76����[S6�|������+���XϪ��\��e�2{���ֹ�>�l�鮌���I$���I%)$�IO���I$�$�IJI$�S����[_A���ѓ�ڮ�t5dYK�{�um�����_g�+�>���L쮸�V?̍2��N�*��)����vQ�?M"j�ܤ�j����'C�98YY4u3�t����?��5dM�_�c^�b�kny�]���}���?����:�78S����E@=��(4����,3����?��!I�b�g�{x���"���b—�Yx���}�VZ�貟mb����n������1b�8�klv!ⱷur}&ݳ���������Qctn+��v��nL��ё�H��NC���'"��t�-��h�EU��k��{����r�$�}Z��]Y�2����]g���Z���]z
RI$���I$�$�I)���I$�$�IJI$�R�+��X�}R���M�ݐ#s�Mv�zp���ev���]s����$���F���"��+*���[�����ϡ�*9�_#>�3*���w3`e|���T��B��s�!�oV�F��>Ο��K��R�K��9ķ�S��H���A����vm�����::G��>����C���X-p;���3�5t�﹬h�~$����xއ�W�o�-��"	����T��I2L�$���I%)$�IJI$�S���I$�$�IJI$�R�9���$���>j���X�SljJs�ă%]eq��	�R�'I$���I%)$�IJI$�S���I$�$�IJI$�R�I$���I%)$�IJI$�R�I$���I%)$�IO����Photoshop 3.08BIMZ%G8BIM%��}�Ǿ	pv���N8BIM:�printOutputPstSboolInteenumInteClrmprintSixteenBitboolprinterNameTEXTprintProofSetupObjcProof Setup
proofSetupBltnenumbuiltinProof	proofCMYK8BIM;-printOutputOptionsCptnboolClbrboolRgsMboolCrnCboolCntCboolLblsboolNgtvboolEmlDboolIntrboolBckgObjcRGBCRd  doub@o�Grn doub@o�Bl  doub@o�BrdTUntF#RltBld UntF#RltRsltUntF#Pxl@R
vectorDataboolPgPsenumPgPsPgPCLeftUntF#RltTop UntF#RltScl UntF#Prc@YcropWhenPrintingboolcropRectBottomlongcropRectLeftlong
cropRectRightlongcropRectToplong8BIM�HH8BIM&?�8BIM
8BIM8BIM�	8BIM'
8BIM�H/fflff/ff���2Z5-8BIM�p��������������������������������������������������������������������������������������������8BIM@@8BIMD@@8BIM8BIMo�8yoann-siloine-532511-unsplash8�nullboundsObjcRct1Top longLeftlongBtomlong�Rghtlong8slicesVlLsObjcslicesliceIDlonggroupIDlongoriginenumESliceOrigin
autoGeneratedTypeenum
ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlong�Rghtlong8urlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT	horzAlignenumESliceHorzAligndefault	vertAlignenumESliceVertAligndefaultbgColorTypeenumESliceBGColorTypeNone	topOutsetlong
leftOutsetlongbottomOutsetlongrightOutsetlong8BIM(?�8BIM8BIM8BIM��k�Ƞd���Adobe_CM��Adobed����			



��k�"��
��?	
	
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������?�I$�$�IJI$�R�&N��I:I)d�����:d���I%)$�IJI$�S���I$�$�IJI$�R��U:�T��X���m���
���ݸ�?V�}�Ĕ�I`��^���C���j'��A��\8r�X�>$��Is���Aq��]�=�X'O!b��������%;� t��:�y���K�E���c�S���b9IK$�I)I$�JRI$�����I$�$�IJI$�R�5��e�\n��q�]����n%�FE�1�9�C��JW-�1}A�iʪ���,��/��e�]]��Y[��;�߾��a�*z��V��w�R澻�^�_UY��T��~a�=��`���k���߾�]�c�n5�z�l
�[��
�G�~�
��Q��~}�z�m8�5Ō��ݝ��/Q�g�o��)���c��i���_'�k[[}�X��ncl���닡⯮H����w��.7�0_�����j��m��/{N׋0�so�Q��{?���Pg_�Ϋ�=g5�����Z�ߨ\�f�UO���&e���˹�76����[S6�|������+���XϪ��\��e�2{���ֹ�>�l�鮌���I$���I%)$�IO���I$�$�IJI$�S����[_A���ѓ�ڮ�t5dYK�{�um�����_g�+�>���L쮸�V?̍2��N�*��)����vQ�?M"j�ܤ�j����'C�98YY4u3�t����?��5dM�_�c^�b�kny�]���}���?����:�78S����E@=��(4����,3����?��!I�b�g�{x���"���b—�Yx���}�VZ�貟mb����n������1b�8�klv!ⱷur}&ݳ���������Qctn+��v��nL��ё�H��NC���'"��t�-��h�EU��k��{����r�$�}Z��]Y�2����]g���Z���]z
RI$���I$�$�I)���I$�$�IJI$�R�+��X�}R���M�ݐ#s�Mv�zp���ev���]s����$���F���"��+*���[�����ϡ�*9�_#>�3*���w3`e|���T��B��s�!�oV�F��>Ο��K��R�K��9ķ�S��H���A����vm�����::G��>����C���X-p;���3�5t�﹬h�~$����xއ�W�o�-��"	����T��I2L�$���I%)$�IJI$�S���I$�$�IJI$�R�9���$���>j���X�SljJs�ă%]eq��	�R�'I$���I%)$�IJI$�S���I$�$�IJI$�R�I$���I%)$�IJI$�R�I$���I%)$�IO��8BIM!WAdobe PhotoshopAdobe Photoshop 20238BIM���http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 9.0-c001 79.c0204b2, 2023/02/09-06:26:14        "> <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: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/" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:DocumentID="C3CA70DAD567AFA24EF686E78DCF1DBB" xmpMM:InstanceID="xmp.iid:f88af509-1bac-2643-accc-45977b2266a7" xmpMM:OriginalDocumentID="C3CA70DAD567AFA24EF686E78DCF1DBB" dc:format="image/jpeg" photoshop:ColorMode="3" xmp:CreateDate="2023-09-04T23:55:27+08:00" xmp:MetadataDate="2024-01-26T01:49:42+08:00" xmp:ModifyDate="2024-01-26T01:49:42+08:00"> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="saved" stEvt:instanceID="xmp.iid:f88af509-1bac-2643-accc-45977b2266a7" stEvt:when="2024-01-26T01:49:42+08:00" stEvt:softwareAgent="Adobe Photoshop 24.4 (Windows)" stEvt:changed="/"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <?xpacket end="w"?>��!Adobed���		





���8���	 `!10@"2PAp�#3$�45'%&6		!1AQaq�"2`���5 ��BR�#3��s�40�br�S$6��Ccdt��%7pT&��Uu	 `p!"r��1AQBRb0aq�2������s���M����$	 �� A$@	�$�H��$	A$�	�I	 ��IH���� @�$ �	�H� �A	@  �@	I�@�	 ��@�H�H$@$	@� �H I�A 	�H$�$ � �H HH� �H� $$b�$A*d�BB�T��2hH7HR�d� �V�	
S"�)d�� �HĤ�Y*��%$U���[2
X$�,
�@,�@%A ���@*�A)(
$��BTL�H ���$���A`�,�BIµ��2]/*֑��$YR
��"*H�u$�H9����TBI�Gu�:g$��j�lY2A��b�I""�V+*\,@�W9��T@<��&[�)L�p���7t�`4��&���s��(A��4� ���A��:�4�b%,B�(AZYl�lJX��J�I+$�@ �`�8�,��d� 2�|�ב���"X�$Y�����ʕ$��$�I��D���!J*����ڲc:���\����)�A�;����c^��X�Aǔ>�=��R�P@&@����{*	�e
V�X��3f��	,{I�ښ�q��b*@*x��/�G��4g ��<ﰧ�Z�"���"��uщ����fbb@$���_O�>����
�4�	�ğM$��� �|#�y���>�fD Ip>J����s9��h*��A��;�}�TA��^\T}p{��E�A �壭�Pg=�KA���*O�.��ƙ�X�Ԉ������y�,�1�uhA�A��:a�5�Fq�P�TR�����^^�Td5�ĥ.��8i%V*�6c��$�$�H�J]x���8�B�TR��BA3���k[D��-l����YT�͢dY��A��%�U.u��c��j�I�u��L��1�HR��
P��	R:_#����2U����2j-�S�:�H��d���Y�'�g];Z�V����wY��>�f,)B��R�_�q�� ���'qg-QW��{��jܫ�fyL�_Q��ÛL�2}O'�� )@R�Y�T���|H�̜y'I;y�&|�W�kڵ;�'ť���X��tvu%���O���5�V��{2A!J�P�Q �Cⶸ�ƬvӢ����4�C8�8��5�/5��'B��M:�YzfZ���ڔ��/c���nYP�P�TƔ �����6:� �T����m5�g!�?����-:��:tzI�rm��i�y�}'��$��**�b(
��D�1�"@���rk��8�^��$���:�]z��1�l�V^�g�:=>���I`J�A�P��E(|��_]	:Q @E�E�읊�g�y��5Ԯ���b%,�\�K�Dǥ�,J�� ET�8�e��u�6��i�0Uv�_�s�����Z} ��;2o��T�n�q�gh��q�P�g/�F֮I~�c�fX,��
��qʕ1:5��.k�}�z���W�O|��v��	
D���ޱ��%K����~��;JX��K��c(�6��$<)�7�5��+��/G�>����1��wK���0��y������F�\�Gl4#�FM,�l_����,YD�PQU*bg����k�gNk���]l��	��yY�Or���:XƘ��1�\���K��Ě&$�!R匒��)���el��**�Y�b<�k�n'��n'���眝��j�'�ܸ�B�_*��U�q�~�iaa+�������4�$EaZ-�$��8���M�m5%�$R,�\G���<'n�N��Ov�.�p���!�G��l�Q�|c�/μ��v��ɰ�3*��mY�`1�D�Z�l�X��x���ť��`
��q.#�3��{g�p���^��U�q�������d�Y־���_Ễ!k���$U�,L�	��V\ĥ�b3�}=�X��� ���ag���������ҵ�!p����g�>�����O�?�|��x.�6T���
�ĒMm�d$��}O���R�`R����F2�3S7��
MN�T.L}y���rߋ��}���??�K5�i��,@�Z�P�Yb�L�h1�)b�+`
T1L)��S��'Z%aŪ�D�$�*�ЅMFV.��I��s��b�+`
P��Ƙ��Jv_kXK����N<�9�=�"t���%I ,
��2�Z����ϣ��,��(*�I�1�P뙿j蛧n��i8�r4+�5b��#�K����!nV.�(b���{RIe��@)T(cLi�����|�Z�jF�r��e�ҸP�ZU���Z����"��T�Ь�$�X�B�(J��_�Z�s�bRI&�b�i\�T�$	 ��r6g��#9ȶ,I$�R�PĔ!h��ȍt#~8H�2�j$�U!�VH�)�i1h�mT�f4L����ř��,�R�P�T��&h|˝x�Ee1�1�T���	�$H2�"_S��5-��KR�P�T���MqG�F�Qq�RR�<��6����M[)2��)�l)������eX�B�2����Ma0�b^=8�h��L��J�&E������ٍ��kd�W���ʼn�A+`
U
�� ��0�	�+�c��r�HX$�&BK�P\�k�����b�&-%����P��(c1L1�*P�iF�����%�.\�h�+wK��"���̰%lJ�J�c*b1&��1�jPA�X�S�7kdɥ̅˒_),I$��
 �1�&\���i��$�,S!�oVјˤ�L���K�
T��b0��$�e�jƩ�.YE�$3V�lVj�2�^�WN��Ab��@AR��b1Lp1�XՌ%	[K�l�ٲliY�NJ�I ��H�Ђ����b1eF\���IY,�25�l̔��2$E�I� DA �
�f3R*b1f�H���l�c9��RLIz�I-��Z@��f3\�P�b0�b,d3�c1��U�')-SB��4�@�BP�
��3��AXT,e3L�J�X��I55 d,H(2��*T�T�R"�R�2$�1s)rՒ��t2��+U ��"+(T��b�B��$�K  �
�+$�IbK&�LI`*D"�ARDIzV,����'I	$R�d?���=�G���!�AAAAC(((((((((((((((((((((((sK~7�y�(9f�f�'�61Q���!�B��8�~� �Cц(sL8��P�="�>�9�`��@�1�G�@#��;�>���*(b��0+���PPPPPPPG��1����6N"��`J́�*

�����QQ���uPYPQ�8�Tx��%@�����>�*#��`��B��0�P����0�L�#�B#���#��}(�( QG(((`B�/��AAC�

A
��*+2����0���8&Lk�I�c�`G�xB<�>�0>�cT�a�{�؎����U�s�/\���������;݀��}*�Y?�0YBʀYB�Pp�1��v����sEG�4�de]��������
%��C���?�
���^	�vg�ӉV�u<YT
�8`�˃�ݯ���N^O�g�kO�y�q��WS��J��iC�+�|����ns���!��m��^���e����G�Ǧ08�D��T#��^���x#�
��oQ˱�((((`#.�8 ����:]�8"�����#�T"�ҿJ�*!EE�����}Hp�`�������P�‡/�J��������QQQQQQC��������������8Qኊ�� �����ӊ'�@PP�*8×G�~(�0��.�P�a��ꟂC���`��TT~8AC�y�>��XqØa���1Qも�-�G�c�qyt`P���9�p@�Äby�**3��EG��LT0�

��#�q]�eB
PP�OQ<�AEEEEGҊ�<�?�=����tPG��=3��3�8F'�#���xFG���EC��G�

EEGq�EEG�8"��0�#�TTx!�\ �/�E���T1�0臀r���PĔO*<C���G��1EEf�	@�c���N==@�zc�"����EEEGЊ����Tx�2Q���v#���'`9��	؎_<-젠����������AAAAAAAAAAAq�xZx
`OœG/��P�G�pYVU�eD!��r����(`0�'��x9d*�F��x27�<��<#�����9x�!�D�����9v<P�ːr�p���̐኏*�!̟ہԓ�^���8@�.�s#;���ے�u����}b9|#�p
�������Q*+2�T}WbC�c�`����������*��t0�0�

C׆_j�R�{f[��E�]SY��r�M9�k�����a˰��'M�c�"��Q0V����D鄊i� #ꂉ����z���B<,w=P�@�8�0��=Ŕ���\�66Ʈ�H�����o����#��8dO|���'��U��b9|�!���|D8�v#��8p��G/��>�z�	�
s�X�AT���|E`8���z#���a��І�=h�,p��0PC�G�X�����b��a���0��AvQQ�a8�48ࠡˑ㇡R�y�"�	�O�0<A�/�=2���!AfG����C�AC((pG�<P�<PP�qG�"��L8c�q�'�8G�c�"'��Q�8�Ax!� ���8A1�p�#�#��p�<�x'����q3�LjA^�"��]�죌Td8a�Q����!�Gև�p�.�^Q(�a��Q�"�/�"����A���������ɽ�l[���T}��;�p��
�%D�� �J�Ž��9�>�P�̈́ʲ�!�{���^"��U��b��TD1�@���b���"좢Ve�DZD"�TVd����;��f���K<�!���� 4���F���E���,��ƉC~�<~��R���e��C�w�C�7�D���F!�z4�o����;�����(���5���K8���o��C�-��\7�文��$���}��
���h���z��T/q�:|�g�|�@^l	�k)B�e��XSo$/vh�f�S.�b���t���P>�eF�f�l��cqu���XJ�Յ:�c_Y���!W�.�"����}R�\m�}N�t��v��+��{��ܺ87��Mt�.��ݰ���u����������W��>��XڻWcZ�CZ�E�v�ٴ:m�T?@�K��?`��;M_o���UH�`�d���V�#fK�m傲��v�+�u�/��%�������Ÿ�2F�X�v�X֌��u���f�=�xc����z��~��A�Ӽ���<����+������;���ծN��������\�]�y\���=�2���`���$y	4#�	.>BE �����#����!d��Zu�N� �>AS#�$�HӴ�I�4�|	1ܼ0���S��[:�6�B�(��W��
,lIiD�w�)(�in@��:[A�(�� ���Q
@'	a����֎�{r�Sw�	s7zD���'rrm
�� ~�����ߔ�UN�ACk�k�[K��%x�yt�Ke�c���gt�Vw�[[t�j����n��U|ʹ����~Խ�J�k^��8{t5�Sgɛ�ބ����{sH��e�n��m�N�տ��xqF���K��޿
�hxw� �t�s�7��xӨ"g�:�d����{��6ɫ򕔬�4c���u�#|w���n��9��p��ȟᥘ��ʅ~R��9�ա;�g�vv�ou-�G�ب�c�}>�bL"�;�7#.�x�&`������+��t�a�,� D"B��w��
S���̧K�x�%�s�Ra�>0t���&�v���0˻X|9���#��
�%���'ۢ�1
��=������.K']<e|Bg
!D(�`�51�?�L
ݧ~�`�?�t1x�p���(�g0Y�
.>e�w��g�ڶ����b{yg'.��ەt�2%yK���|��F��>�Q��W�H�Y�hyQ��~TnpN�t�U��+wH-���sչ��c����G�ü�֥��ml�o��>[k�/�lX|��Qw�:�,��?,u�G�t�n���;�WCZv�H��8n\'�dLP�OO/F[��{�Lɵs�*b��Q�U���L�=�u-.�ZZ�bS���mMS���_s�:_�2��C��;P�c�q��om�d�N���2�C�r�����ko�@�1ڈ����R�M577Ti�
��p&�ۗtLp��y��.��|���|��Ů?T�!�:&�W��M΂?R�k>�HT��B�]F2����V9�6�>T�V�-6�>Q�؂�-��ߧ��4�c��{���6�k���*�ݤ(*Y;J�dȶ�{ů�zW-E�k�B��w��ݭOǵ@Aܷ�$"D#���\�-2*
E�Z�7{F57x�xGy����7�H�����?xtz�
�������u��imB�����۲��m�Cw�����ёM�v�:�j���u$��9N�.G�map��	bD�7�V�ƏR�|�)e>Sf��լ�
�� D"B$C��s���p�i���w�75@��J�C����G�v��L�����m�}mEv�ܩ*k6�R��͑6C��>����2�A�	��:e�L���vzE҃W��a�۫�ә���@�ɦ�f[���\�r�=�OZkrnn�=�s�6f�>�۵W��U�G�dVS�dٷ]��6�Qr�;�-5�_��-�M��.�;i}�Zv���5��u��i��]���\n��[i���vP�4ev���y�����T�2$��6{-�'Td�5.�R���Zl�?��:˱(�wq��{D��k@u���nf��6+
֒���H�[F�ۊ�?�m7�1�jm:�KTTj�	����i�_$i��������:�T�/�n2oS�ud�c��Z���^Nm���i-������ �Kndږ�3+�4�[6d�]����1�|	�'�ʉN)�	L�UsĚkX��
�%����l٬x�5��f���2d�hT�K�&>�2b��73W�5�Mi����c�I�d�}MF��{T�	���5�L[*qU����q����m����F�1����f�ڟ��7'KK��[ish�ehn�Ә�ۆ<�Q1D��:����ڻI�m%I��}�wD�����&+c&n~�p���VI�N��>@�W���tu��n����|��3p]=�%Mqc���+�n5�E���ϝg���O��Yl׵v�Z�P�SH�Jz7���zOm��j���r�"�8'��{D���gJ�ZJ|���@�BA1��,�Y��iQ�d�2^��51;�fҷ�SHuƞ��2m�p�Z�'�]�s���n�NfcL�_8�9�"l��0I�n2�]*%�H.���A��q]SO@c�Ty\������!ܑB򮜷W[��ܦm.��v��R�蝆pv��V�{m�3�ݥ�Q��! �#�|�����6�p�_|~��%뭑�.f��I�}�d&���\u>�2U����ѩ��W5�"C�&\�c���r�+JpS���~Y&d���ż�{`��E;���匜�Vx�6L��=���<̩k2��4D��$��݌��f�9��`5�R�S�͸�RJ�Ck��F�o�n��Tכ}k�܈�d)�ɕ&�E������ 4PW��v����!�`;�윜��:)���ה�]��{�^'L{��ճ�m�s\2Ƌu%M*.�-�0sB�����)�뮜�jڭ\���m^�٨�o�&N�hi��϶v3-�LdCX��j�����˷j�v�u<�M�6�r���u����s�Mx9�k��a�����N��Ǿ�Ԓ4֛�n���2�����A|�:�ES*�2Ha|�aŦ��ْ����I1�!s&�fp��=�SX����o�7s�)N��u��v��R�rCnz�V_>d�f��1��ߞ�[+C�i�%���젩��:�M5X2�Z]/ܹZ�M��ߖl�����6�l�V���󠴓-q��t����5��5>�9�]]3o�Z���A��2��&j��j���EY��&^w�{	��@���o��t�S�\�����^_v�����Զ}��&�if�S#z��&�3l���tu2gQT9d���ޟ�ȀN����v�ٴ5Ƃ�D�i�?Cyև�GgG�[�j#gc%TH��L�Li�C�=��ˑhٳ1�E��=��]��ch��嫶�jK���=J�7I�F��h�H;C�9
DteP��k���K��rRX詧l��O�_GD;�Z=�ww'�!\Ѵ�Hr]�/h�Z��[,�ւKۖۆ�Vh��/Tӗy�M��\sJ	���P2�Q%�-A͆v�4!1����KpL	�)��4�Tu�+6��ɓ<Y��X�� TG,��;�������uF����;ew��M���{�C*���Ϧqt�K�nm�����4]��:��������S�^�
mD���q���m~���!z�:�K����]<\��� ��)x�-ϸð�w����N��d��m{7�D��kQ�-:L���R=�y��SP���ֵ2�w۽ѦGQ'���l�!��,I�W��d$u�W˯d��\������iLM��F��<�f�a5�����&��G�����Z�H��yr<�v��u���^�S��N�,��@����J��D�+ߔ��(ϓzJ���~J���ߒ���H��%{��%	�!�I��(��U�2v��7��	��
� N���2���o�K�oV�5�6�IV\%쮏l�>�h�Rdl攗���7�f��ƀ��,FF��K��zB~��-f�嚾U�|�B4���1|��IF�Ih�dK(H�
f/��L�ˢcѤ`
�k&�q2�}��V�`�ˎNN���]_��:f�Rf�ޓ$L�.�r��S�5��f�*�Cm��3�n�7q���M�}�p45����w��n���m����:�Ӹ�ᚲ��,�5��g�̢�����G�KsÜb��-��:.ym���uE�e)�^P�����>�AF*jg��.T�z9R�m�SͲ���Y�Thg}~�IY��̗W�,B�~we�5[.K��|�[R[5���*�]@��� �Fm�'TYӪ-�5w�K)s*�&H|����eV���]:� "�1墜�D
(�p+Ɋ?F�F<W�eŀчJj��'��HB�@;$!Y(����e���}A�}I�}I�}A�ux+�
�|�W�/�|�W��{�Л �:I9�1�n����KN���	�<�����O�"{<���O����e#i�g�:_�+�2�pju��50�&�:T�{S�19�W��8Ɉ��e^�Д�%9N��9�,�V��es��-{����5>�QCS=ن���=0��-��vNX*d� ܩ��V�4>�����N��_1:�s�3��tTVx,�A��ҿJ��Т�	p"!2|֌�	� 
���L������7U]�!��ߖ܎����+PX-W�e��S<]�N�5�1[�fx�o��ҿl�x�c�`����L�ʙQp��-�g�'Z3��߲�1h�e
,�M�%�	�tƘ��ׯ��$��ZM���"G⾐_�ZM~&�W&���
��f��7Eh}5���8�ߖ܎/�@)�\A�?S�r{�[:@	새�����M]K'�JC-�:�#��e��`��l��}:|uӥ��m;���N�<p�E�o���=jѶ��N�]L:J5��v��Bsz�E�A?�p�S��pS�
�/�j��C($�fi�@�\I�O_��I��4�H�����LJp��.;�wc؂���	�E9�cb��S%�H�AAtYz���� ���YL0��	C�AMSQ��0��.;�N�{'59�cz�`{9�k�I�1�0ˀoX&�E�kFKa.��	m�2�5;�����`;�㻧v=Ӛ���sS��S��޳%��d�8z�"w�*��)�[z1��wod�Gd�ˇ��P
9��Oj��B '��1�k"_-�@(!٨�����u��&51��MC�po��t����)�<'�9�(�<���*cJsJ�VP�� ��� )�)��)�[hR���A�4
!��1�弨�`[�eNj#�����5uNj{婒��+�d�� ��-Yz��K�.T��Ơ@E��e@bV^\!e(�aDS�!9��Nj��-Na��S���}ő{k�1t����)�R��cXSXSY
RKA@a��p��{@�B-E�9��e�9�:XN��/���id+!E��l��j\��,��&�@� 
�@��1�2"�QjsS��B���,�t��-:X^�^�FX^�F�	�Զ�
�֠՗�jkPoR Z�{s!�S�QoBޮiYQ�DFBIbsS���eYQg�k
kSZSZ��
A����:��Ū@"����2���F_Q-	}e����C����4����F��(E���lG��Ր#-�{M^�BX���X в��,���EeYTP�z�YdU�eYVT�� "�����TiYJ�W�W�W�W�W�W�VB���@�?�1��?�f���2�m�ĭ�s�v�Z����3�?̦�O�M�zh��I��?��+�-�]����@����I��yO��������
�\�aN�Z��|��U�(tǥ�~I��{א���?��kk��Y�-p� M<�ڝ���V�f�QB~։��p���.hu�YF�d&7lM:�����*(^��D��׍�F�(G�A~I�.B~�G�2��G
ډ�u[j���(�4	�/��?�#ҟ�_�zp�Ҿ>a��u��x([G:���Ω�8[���~P�s���n���򏅻�-��l�ǃӂ��J���j��D��a�3�'��f�V�S��L���7Ro�|��jB��V6Z��H��5���6��!~Ϩ~�a�ԯ��?W��?}ơ�+m@��~Ǩ��,�#���T~�x�0>T+�jf��V^�x�&�W�uO�o�{�T�&�W�uO�=+���g��^���}+����U=����Ɵ�T�:�=�}*���)�&�U����J�v��`|����C�@���a���!�i�v������#��c�1�H>4hVO#���2���?��ð���S
,ob��d����{���"�E�t_��o��}~/��~ ^�r����t����?��/���.�����c�B)�"����T������/��E�נ����_�@?X���W�(����D���(YE�5�{Q�����*�@��A���.�����;Y$����A�Z2י�����$���������D�)_qU�_r��}���K��Aڠtv��>��\6</���f����\W�[�5���4���8��Ff�l����p�ySCk��Ms:I�,8|�§�1���<��8��X��#gn��AѸIS�[ƒ
�L��g���$�w����6�H���H�<�hϰy��j�U
ӠҶ�A��}��
����/�_p��csc�a̭nmY��[]Gs< �T����<g��a<��vdR����hv7��]�_�{���ҡ���P�e�~��T?YU�\<��
��?�������-��է:�5�a�8lE�F�
8�a��8�AU�L?H�@��h;�LP.��4ٰy�=�
	���՟ر�UX��>P�4v�X��9t��~r�A�����܎��ܮ��ܮ��ܮ?��Z#�x�ۤ=��֔���$�2RV
�oU��!�s!��������`�^s��T'E��Ķ��-�G��1�(C����u�Ұݵm>w�0�X7�ц���?Ǖu�[)�u��Ǖu�:�y�ηs���V���V-������a]����hİDvfV;w��9B���"`����]�cϛ�m<���a��m@�͏��WKK��2~B���w�{���J�]��w�{�#�O:���8b�|��K�2�sY��{��\*k�v��㴅чE,�q����&����ZV��*W�$�~L����6�z�‡$��y�}�u�(�p�^2pQR��}�K�dF���m.�)#��V�;�E��	�y�X�DrI������{�����d�_Ƚ�'�EV��_Ȁ�<����]n�>��7ƀ
��U|a���as+]���0�Zχk�F��Rws�=��c��#��*���q�!���2��T�_���4��Pͬ�]LNS�D�_���܇�x.+��6s�[C�yYl΋[�bL1A�����h���sE9�����3zV��Kp���Xn_�u8~
v�r�m�M�2"�Z��&���+r�����;�u#��|@�yHE�w�y$;\b��c�)�����3_�ݙ_≿
�f�5�*���޹@�C��I�ֵ���c›����,BvL9��E��{_�{w\F֚�h$
��-�g::c�w��9U��(�-�-q�Ev��ӑ��'SF��O��&��6����H���w��4�Y�m�#��*��F��v�A5E܆=��t��p��+@k�[�3�������!����9?�o(�{��_�;�%h�ʶ���m��ϙws��3�m�ex�]햝[h�|���o[��o[ץn\	�#�n�Z��6�~�i��mJ;v�-����vx7�-�ri�<˺󑁉�'�ڻ���m�����xϡ�z��N:�jZK������/�!�8s�n�n튂x]�.W���+�m��ܾ���˯k�N�^��Wr�K#�n���z�64��K��6�Wȭ5i[�]ON�����m\���:#3�7�j���%i��.1��$h���N�Gh�^	�7D�1��YM����Do[/+�-�G�=U� p�o+	�g�/XGeOнV�C��y]/S��U��]rX"u��Ƥ�wV��VMt��Dn��r�"h�F�d���凈+������wR����i��1ۺ���:Ā��V�-	�-ۀD���j%���ZCB8�z��l@�j?膊!�PA�P���eKF*1w!��� ���
�z$q�9W"؋�Hp�5�&-�[)��42��&�F>��ڀ6nY�k����6��V�1���n�d��h�VS6f�֊��c���!��ڟ�b��@+Ld��������0}ѕ]7ڿ
�H�^�r����kǴm��N��
!���h��X�;z-�~��c1��o*W<ek�Z�w�{P��4Ưh<Ī6��/mQ�7#}(��?H�J�� 7RF�S�'����v����0�a�F�U_=��:��n�f��O{F�Ώ�C���o�F}f2���2�Ӥ��>К�(�E����`��i�26�X]�~����S$��z�jv}�=*��Q�7t��EV;���l<�:�GJ�IQ�0�>U3qu�nm�c�^�u�Z[��%m��^�\E�k�i���>F�m�F�L�g��2��i�Dz�����;���4�����l��mx*Ľ��)CSF�(��TO#2���Ӡy��E��\��vz��R�>Hx�*��`��7
��/����Î�^�u��-��޽�Ϲ"�5��o�]ݾ�O�9��U�}"��_��H�w���ޅ��t�w*���H�w�����Ƒ�.X��4�r�[iv߻� Mq#ccp&��J�s�X��KW�����F!��}:��R�v�i�����M��I�v���=��ew��֎��EEcwܩ4�HC}n��i?����zՠ��zd�k�U��Zb�׸⋝Ҡ�58����N�Ɗ�GV��<�-��l��S&V�T���f�Gb��PS�,�� �s�lp�iqgR�j��gd�Cp+G6�;0�V�S�r��j_��2�2n.i���4�PxϨ�+Mo����c���T��]�δv���@��7
�Q�ŭcX+$�$6��M���H\X�ƵA[@/m�u�piiu�K���X�is�d�ۂ�(��ռ�
3��s�V.�Z%��Bpc�'�N~�Ms
����򝆎صi�lB��$c��r�N۳|nh��J�w��m

Τ������]%�Xd.��Õ_�%�X�0�����Y)�k_��<��!�YZ�W�?>ZWƉ����U�x5���Ew��a{&�x��~����j�zƛc;�d��w஧�.��;;9�Zk�FQ]qZR -*��W��U�~�����f$�@��bdU������E�wj�7P�Ci+_V��S����ͭ����a���mfk�X�wdB�i�t��Ȍ�ZuԢ9�ƍ9wnB&�g��N&�ɣa���˕�MS���l`peĶ26A	�+.��N�2ׇҿ��eE�:;VXb%��yq
-_A��-.4ײ[��9t� `��^���gc�t�3�4
heh�T:U������%��$��+�$9�����kD��\�:ҝáZ��*)���?κ&���Re,�q�/��,*Ǵ�If|�xpŎ5&��|����E(+
��M������U�{�o�zW'�J����y�a{ ��.�>-
�V��4�+�es�.��Dm�\3uV�u��
γ��?��e����팑��?E3�޷
οm�\�Y0
��_]��EY��(��9��,�fH�aŭ4'x]�ִ�d:&��y�	&���3򇎖F֍]�V���Z�Y#�>G�����q��j��z�Si��H�.ݍ�aFp�
X���G=��o�MU��@;g���t����z�d���B�^�ab�[(�N�<8�N!��:C�Z�N jTT��4�N���!l]��@$T
�5���[f�F�T���+�$�������`���yG�hf��ؓ�1�@T�Č��Ήa�b3���m瑗p&��pN'��v��Z�ʚPqyp���E9��#�w���w#��#�	�~r��܂]f'V����M��d9N#7 6ѥ��Hi�#�Ѽ�F��y�x��Gu��sWmD:G�s�E6�j9Im~�#g"%�-qjA��We�#Z�׸7��-
��$S���^�83����Z;G��o��[��/�2B2�͕ơB�sF@�ǂ�d--2�:���բ%�i$����8�>�2O-i�M����6�rP'1�$��;�{�n"�Mc�Γ>�.�{CD�0�>ͫ.2���q�&�{�z��$fRH#j��Ý�آc�nk��,\x���x�F��9���\�ns��U��!�Mm҆O=EN��8չc514�h�:c1�Ƙ��q�<�3�hvL��M|Y^dz�C��Uh7Ìڌ2��@1�:� �|q��N0�7���-x�˨��j&��Z@ A�:�6��1�h9�MA����ң��:(�|��K1�ܤ�8H�C�q
��h{Gƴ�J�B����?hw9qu)�\�-�t�s�ƣ��fk��+f-� �lT���$�,�/���]W���P�m����+!��'�t�Hf=&�E@�!m5�Y�Y�]�}AND�5Z����-�;6��TQ��(��J�	)@	r}��-�c�|Ǵf���*oQ�x������Q��|g�C�x��]�R9�F.��󱹎]��}l�hT�;Vյm�u�h%Ǣ'.$p�(X3Ho��o�+�&�.�օ���B!‡�?���}jC�@���7���H������Oi��~Ep��H�$�Zqq
ˡڊ��J
�6:�1�W��� �ǽ�4?��б���П�=�Pj+J&�G���؂.o�bp�:�����RԷ��<��<�d��,t�.�_>/�|re9$�;qpܭ'�x�x�� �h�j����'�]깿�{�r5(������w�T=�
n�%�>`���];�M�Uwz.�;Щ�|�j�ñ�=[-0"���'>�^��
4qu�eO�F�8�_�!��5M�c��S�ͨ������üڃnmd`6�V��ٽ;S���m��2I#"���5K��I�,���
;�jI�2����NG|����ݖ���^�]\GN��I��B����Q,p,����@�;�sb
���L2A�0�hNx[SPw�T��
'�]Zo�t[�mv���'���
�'m=�Ý
�H �Z{Kz&�w�'�hw?N2ݶ�"vI"�
v�4=�ى��~��jfw\PWz�I���
�Ln^�C/D����[;��
<�f|� ���q%GI؊�J��J��!����F��@zܙ��BrS��&�Z�B��I�ܧЪ.�o�}���ݱ��U��`�З;r�r����T�#pi�R¤u@�ʭ4n��'/��5P}#0�T_ɕ˻�+\�2

w��aV�x$
��7Ҵ��%p�1��
 ��9��]�����O&��޳V�WdӀ9�Ȣ�U�<Ƀ�-Q��?XSw�V�\Q�18�i�jŶ^Һ��k���q�F�﹭�쯶4�B	�9�^�[PP�e#w-?EdD��@]&jPe��E���z.�|A�nQ��Դׂ�^0Pr�?a$�[Wo(;%N\��w�\�n��(��R��j&��[��0\��{�؈0<s*h�gz՞O��V�KOXs�GF1��f���-:S%�m��K�r�fe�ns��t~4�N�T�H�#��z84���\G�zS-�{�CR�J�	�I�ɓ3@���a�A����QƫS�F��H�3F<*λ�^d0صR��샇-M0�p�
�PZ�Ge�G6������$�6�KF����s3�r4�W������E<�-^[���bnH�i�kx8Z�b黚�+�E�[�!�e4�<��=^�[�#������@�ڠ���v�v'6#s���b���<j��y"��=��R�m �Y��w;��S�Y_y5N$4�E��$�W�YZ@%�g;�U�Q��
��O����������v�Go]��tv��G�27�H�6��[P����jqU��:e��x�n,��#�S˂o�pI1�m����T�V�TV��k]-c$hp�*�76���F�ALP91�*���p� �y��pp*e���(���NB�7[7 ����v0ުak�ߊlF٤Wn(n��TؚZ-�D@�x��F�ͣ��S_�q!cd�v�5Um�k�Ԭ�٘n�#�۵gm�w�㊠�cxhPَeN�``<"��M�4����Y��1�'a%��uw�&��0�F�F�O��\��k�c����O�D�6���5+���x�i�s	D�Z��l(��`o+
'���*ٌ�a���N��;f�g��;fp\�K�G`�\
���2��c�[�B��o�\�Z���D�T���j����\��Zڟ�r�bҼ^�[�Y��Y}�aM�U]���J��l�ʯ���wb������x�9���ZS��Xw����-~������9c�[�R��[��+/����5�ʅ�Z�w#YB(�Q�����jǷ`�/�'�xֱSN�D}j-\;"����'Wx�j�a�c_�E8�D
*��
�3УWu�4�B���"�%�	pB�5��(�R�Zy�U��:�;�V��Xf�[��e�s.��]Q̩��!@�Q~E��>5B���Tem8�hZ$�JQ}�;&H)+�]�P�#+��,����R�����D��վeqx4�nv�c�9�L Q]C�z$�2�Xݴ����N�'B%���iD�LO��ܨv+inp`i�*/�
K\�m*���k�B���A�S����w��a�
چ^��%bq]��•ܵۙX��e��%|b(-��&��Q#��5�P�R�B�m,ml��ܨ]��lX����F����Hѷ�V�΃ph��LNr
9�E�+�W\�(���D�]w%�r�uܺ�u���+�y]r��}�X��W\��QKP����45�S\G�Ŧ�@�^��B�J�ϫ�Ff�gfi�E۳+�>2�J;i��
�n�0�U�A�n ��mB�;�h@T�M�㔬��F�VR��EO�T����°r�U���õm+j��.��W]u��,�uO��[CPv)&x�II��*�`�8r4�����o3�
�Q��k]�4.��V7�
�V��c�Ép��+�r�Tf��O7�Z�јKqN�x���'�$����Cn�F��Z�i6������<����r�aSğ��;�5�B��[\��3Y�r-NN�k��մ:{J7�	��ʴ�=�v�v޵�[��}Č-�#q�1��Vz���ާ�;�E23�-���)k��œ�&��
:Lcl�
�X%wo�6�,��W��A����X�]�bض-�b��c�b*�*�(�
�[�Ȋb6�Ҙ'����(�zF�ό�Ď�K��B�*	#�jRES���E�
��լ҂�a��=�Z�S�mޑs=��� ��9����»�e�B�w}�{�ͲI����*�}����c"��u"�s
���A!�����KjD�P�b��{��v����M�K�I~n��KN���P��]�\6�
�@o��2:��Ͷ�&��e�_ȴ���pu��kh��{�F�E}����Z���ӱaq,gV'l�)E-�.�Iӣ�maƔfق���X?�>��7 8|Kh<X�o�]c�W��	�WR�؎$x]�2h;HC}H�h��o�E6���{��;<br��1��;�+!~QA�NoJ
Ԩ�Y�"�Ӂ
��Ւ=��iR�>�������l�:��2�.�.�OQ�v���Y��mk�SγIo��� *��?Rs��2��_T�7��
"E��`�ږ^7�0�;��Q�vø�r�\q/�g�_:�y�Ⱦ�g|K�1��9MB����
%#�W��L�l�hƊ���*+���b_#<�L�=h�a��ţ�b���0�Ki�9A$:*����5��`w�Iƒ0�V���(; ���US#j�8��ű���Տ�.�QuY�j�Y�2G�1��F�,�_��}�ܱW�j���ahU�Z����2
��&5�a��I���n���{���|�3�9�d���{C�>Up�R��@959YL�k�y��(�s�v9��X��̾���<����������
��X5b����e�UXF,���w�ӽ\�+��)��C���񦏠r�O��\l����#�����9�
H#xY[r�S;�xWߕ��1]'W�S��An��q�M�

�ƶ�u��p�U��}b�s��UN'cGVڃb&�NnwKL3��.���ۋYjhEhN��j�����*�5�~%��%<����
�Xj��e��%|�VZ���Ԏ�β�L��Qq	�a��� �+��8'=��6��*vR�z��S�P���h���.ӽ�iA�B �K\1���^u�$�Z��,�Y���L�,�t��W�V����@J�?(�+B���,�ԜUc��ʽ�s�|��ڸ��
�۸����q�z_>�s$m� �'�-�S��S_p�T�V;�Sh�<�����MB7˚W0�Z�'�]ϓ8
17���&��S��(]J7m:���J\���M�0��U0�NbH%�|��N>ќ�A|�zC��Bp��O�J�*��	�C����N��5Gg��zJ�R�.r�ٍ����W}�ZD�H��5�-6`�Z̙n�sMv�GJP%t3��~0����]���k��ގPChxxUk�P<�iD�W�X.$)Q�J9�kƪjk��]�x�i��8�F¸������>~�C�z�
T<x(<y����؇���lX��;l�b�?�ų�?����ų�l[���xp��l�<<�
�;����.���themes/images/norbert-levajsics-203627-unsplash.jpg000064400000031342151213255660016041 0ustar00���JFIF��C
	
		
$ &%# #"(-90(*6+"#2D26;=@@@&0FKE>J9?@=��C
=)#)==================================================���8�����������)HJP ����� ����h�iA
P
!2���@!H@��
@(�!@@F@
P�@�d�@h�� (��
�AAB!d�P@@R!A�
)@ ��@ ��!��@B�(2
X@�P
�2)B!d��ȅ`h�
@�2
)B! �
@P@�@�v��
P��H �B�@)B! ���@v� 
H��B��	AB! �P@@�v�%)
�� @� ABPB!vR�%(!@�R � B�@� �!��@(  vH
R�	ABE! @B����( v� �!@ �  B	J!dBPB @��`)L�2� )L���2 @�2`(2)L��)R�AJ!d� ���2v�2!�P�P@�)H@��� !@B���!Jdv2@PPP@ R�� !) ��JL�� )��2J���4J@�2 AJd �2
L� ��)���� R@��AJ B���2)L�D �d����@@R(!L��� @�� @�2w�(2)L�
P�
@�JH�@d��i( (@(@�2 R��@@���2
�]��
B�

@
P�@�2( �A ��H
@��(��ђ�������@(" % 2D�2�
HR)@vf�@�2A�&��h�@��2@B� �
!�2؄ ��� �P�4��@4�hdd���2��@AJ ��lB�PE(���)L�
S @)@0J�dB! ��X�0tŖ@�!�����M�FM !��@�
�d)`�S�4� ��P
��))L���@)��
PVh�!H   R��Ni`@!E�4 (����
@)@`
���B� �!�4���
XٚFAA�(@�4Vh  B�d�"t�B�@!��4�2
�)L��y�V@�!�@�B'Ft ��,����
 4ɒ� @��)`N�Ҁ�������ɢ�2hɠd
S ��2PdB @@2@d'�i@@@R���)
@
PB� �4B�ɂ�� �Ab�PD��(  ɢQ����( (!�dPR
C)�B!  ��_�~I����4��@2RK��!@fh

@P@RFH@�@��dQ<��ȟ�t����B�PJ"� )

��2H
��@�E2d 	J����hP�$_|���d�Q  )�)٠�A�|�����B�"���BB���R��֯�Td�*��� �ۛ@�f! (�H�j�Y@ 
X�SJ"�4�
�R d
�@d�@ K�P@;E� �A�T�� �B
XHtdQ�, Ƃ@R�@y�,B��  ��B'FiD@��
@����
b�I)B�dK!�4� �Q@�"���d�Z�"2�� Q%@��NiD��@�
:��)@&iV3��@��A�ꔰ@��B�P��
�)@2P
1V�f   �E���y��@@�2B����PPE��"@  �EK!��:�j� ����sJ�e���1V� ��dY*L��!ݚP��@B��i@@� d�@&*�@  �4�&L�!��(@ X�@B��4��@�(RR�0Z@@Q��+Ȝ�YҚ@X��t�B�@����,R���4B��(�B�5B@@A�ج��f�bϝ����hA��W���9�+:#�D �@�:
P*PR��M��0`�	!( @�Y����������r���d����~q�1����H@(��\�U,P�
@@J2J`�5T����K2D�_�x�:��gҧ��f>Z0`'П�+�&����>_��\�j�X!@ �u�(P"�� PQ	@�3T�� �ٓ=���F#�k����7���/�j�k5�2�?���oir��(�B��P@)ɠ@�@�(
�F�D�  �����=N����?�W�3�3_{]�	�;+�O�r�B}�/?:�۬q[���H��vgAA@@X�`�$�͙��B�ˈ��*����?�Y�-�����3��u�g	�g�콀�Ѕ�@�(O:�"D �@f����%��ύ�q�/7�S��m>?:��l�c�>�ڳ����d��~�QٝJU@@�V$@ ��5d�kX�x����w��=�Cg�=3�ك��6�! R��(@
�����e��{�Y<ӟSĦ���>*2�wg�!��f�����
��g@ ��<�T$6f�=OI�G��6y�`�8�4#��I�B )AHB�)����G����@B�)50!�zg^u�s�`�9�}�@d�:�<M��R�P�΀ �g�A@) %e��@�=&�υ�I�&�=�B�2t�<Ot�
� 	V
U �*�
B���eB����� 
@TE�����#	Nc�O�=O�=@R�G��y��PhE)R��)�V@�2*�!
; (!�'��+�~4-%X���"����Ns9�r��r:��>��(�G�:W�)hC&
�kr�((���AA
AC�H�DH J2C �<�8�c���s�=��=��0s;M@���u]; ((��()( @
@  �y��'��R�4�5h�@O�O�=�.� P@�)(@P@��@J�2CU���,`�(��� d (3@@# �Z@!��)�
 ��!@��� �Z@!�HB���� )
)�� ���J�
PPd� ���@( RB�@(!�P�B���B!�X�A��*� �� ��(2�)@�P@�
R)HP�����H�*
�@
R�
@R��
@��T�@���  ��"�P@	P

@��
��R
@A @A �J��$=)@# ��H)L�%HRU��
@P !*T.Y!��D�)A�!4�%H@( )HP@HH) ����!%BT.Y�@$H
Pd�P
S(
*eB@
�@T�Y!�P! �E@��
MU�
@��*�A�P�2@�E"�P*PE�(X(!@X��@�@4B	P�d�"�@�(@(��@ P
E�PB)��J�FAj� @@
�@�J� �jT
@)AR�@ �R�T ��(�C@�X ZBIAH"•!�R�( )( �2�	P�D!J  ( �P@iDH
PeIA
KD�
%!Hd��A� ��R�Ԥ!tD�IJRIUP���(
H��H�!Hd�(A�!�@R@��Im��bR�@R
@ �M���(A�!
R��
J2P@!@�J@��	JQJR�$ 
@!Hdѐ�A�h� ��R@�
AB���( �M��!�!H�JAJ����@((RR�E�H� ) d
	PP�a�@A�@ ��( 0@P`���)ȡH�rhw‘!���[�m�f�4�	��;�j��Xݑ�MPE�Lք��P���X4��'i
EО�N���*A܄j �k ���h]ƱQ�Egr�
ب�P�8s���C�([6GxA!Ko��d&��}�T�Vv��p'y	
Л!C� �ȓ3_=.�
�wwwL�b7�`P�m�Xf���"��#xPP�5��
�ٔ,���V&6�t8���cd�m���±|X	����
At�R�}�_6�		�3{±H�
�����!I�P�]a�~��
�[A�k!7���_���@�����X�8�{�mhP6b�Bn�P���/�{Ϲy��
(t&��w�;�����Z��կ^�z��׫V�z��<�O'�ɫ_���)wB������ҡB��AШQ���Q��B���%
<1B���É��h��ФVoQ(���{,�y�F��؉B�fOu��p�ؑ�(��wP�<���61���wC��v�D�F��<���!¡Dj&�ܔ?„n�q�5�1:(l��l�n�#t't�:�a�7��5���t�p�o�8��l�m!�*5���v���K���02z�����y;����p���y��f�����tD<�/��<�p�F/y�ϼ�׼�׾{���{��~��/���C�7Ѿ��_���E�/Ѿ��_���E�'���z�݊;`l��"	�8>/�F�4�ѣH�N��35N�71rc��(n��R?Ƌ�eb(x��;�޼�F���ޗ��E礡lPTF7+<��P��EVya�
�@��6���G�(GbTjj��ƄՋԔ6b(���p]dCc��F��z�yJxv�f�4ű 6�QߔS�K��N��5-l!�*5;�����N��4�V7Z����L]�bTjk4�vEa`�򿋤�Wr��Ӿ�����c�=��?߱��0"ÊG�HT+4
�Q���6d�{D�����^�F�~���]�O{�Q0�(V��,EF�ghd�-Z������vE�w�0�� �݄:�Q������Y���]˺�N�.�ށ7w�V!�zQP��W��1��ds�>�~��G������?��睻�}.>��Yq��;�z&����n���Gj�(�<�c�n�Y�H�^��M�z,H���]ř����c�۝L�.Z:]��
��P��4�hʂ�Q�bgq1���[/��z�E�8�:�T������л7Ò<)�
��B��$�%���o�����+��{#-�>݋���A#/����<aC��A����J%��l�v�1a���pqu�V(L9|R��a��www��wwwwwt�-:t�ӥ�������̘���fa�:S

�AE�4��e�D�cEZ�󹼡�W��<���)�*�G�S����;�3y����h�i���3��Gx�Y�%�J�)�xҁB��`Vd�hl�3333333333I����fi�c��3P�z����,j4V"�e�����b��K�5n�H.���{�f/��ľ�թ�S�pujիS���bիV�Yh��cEb&X��3y<̞ea���G%��?����?����/�^?�^!��̙���3334ٙ��ŋ=�Ϡ��9)�'��V�����EC��>6>k7�N�`c��H#���B�`x<�0<>1�L��Îbk�e�zq���>��>��>��^��>����������>���{��=�ٽ���h�eg3ŏ�X��z���N�0c��MB-D�J'���k��c˯�1�0���������<��~�7��r������eq�$y�8�"��Ǥ���Їm�:q�8:f�P�����4,n���"2����a	��ӥ�g+��dFPe���!Gf�4ٚL����fffi�X	�j�k��(# ��7C�i
�I��i�l��̀ߎ5�O�4ᓠO���;QNJ�(X�6F��⢅b���X���E�I��H�Ed'w��������ڷq[532�6�l�|��1`�&���m��k�l"��w�8P�j�(#����
�HG��C~j���xa1X���k0�Oa�A ��f�3LHl���k;�̅!!C�dd֍
!p�*6��b��
ɩ�F���6"�`L#��b�Ŋ�E
�%
�ܛ���I���� ��#X�T�$�En*���̞`33!#&��ww@�gy�H!ST6��Z{懴��S�<�5A33]Eѹ�H�+4��"��_��H!"1Q��APRST` 2Ua�0@ceq#BEbp��Cr����34����?�Ӧ���������RA7j � �	�PAjj �&��G=���Va��Q�y{1Y��1Y���uFa��Q�<���h�:�D~^^�+C���<������o���\�I(lo���1Z-����:��I�������]��U�o�f�/\�:�WS� s[)iv�V%.Pj/<嶾^o�# �E���G�%��ATSR6:��<���G��J�ي>�!
��mm�l!h�qҮ�gk�+0�_.|l��X�,ςN��D
eL�[u�E�g��+�j8e`}�2�>�~X{S�+�jxE`}�O�������<',�S�r��u\',�U�r���p\�-�\,mW��U�r�6��\�M�|,�W�r�{���
��pJ����	X?q]�+�k�%a=��#�����z��|=a^�,/�W���.%�X_�ĸ�a��,;�b\��,O�����8���T���7%Xyx�U�p?�Q�QG�Q�L�Q�Q���T}�7S:"�u3��u7��u7��u7�����7S;�L�f�ga����n�v���n�ga��t5��vY��K[���n�oa�����������F�
��%�%����|9�q\/Y�h��6��Q���b�����aY��0�ZQ�y{Eh���^�ZO�h/h-��^�+G�4���GS�h7��h�����P�,:CfV0��.��A���W+@k�
�V@I�������c��uo*h-�֘��MJ�j�#���dh3��T�0���%��k~��h$k��±��(�fDY�*5G���/ᘱŋ�f,c�1V�x�u\,#
��6Y���M{4��u�PAz�M:2�a��s�
<��������i��4�Pe�a`~�v����Y�����IZ��X����io�Yb�/+Me\�>���_�\�����4lr�ĹTkc��|�r4<�X�c�Ǿ�|��?@ɽ�$��4"Ijn+!���F�*h��o�l��u�Vh�ȍ��j��`o�g�t�V�6��t�Y�dlL~/KE]�G"7�-�_���Vq�n�ˬ-> u��!�Kl�w���n
f�,���W��7�2A��`ܚ�CMg�r��I^�(��/�Och*Č����o��=��Y�i�{s.P�_+�O����4�,b�H��5��m��3$g��a˔�ܥ���"�����k#$?5�m<:Y��w��-��[����M^�Ž�W��_tVn,[�U{��«7k�Gl�s@)���ZVy�~[Z�Ec�5��'��3^9'˸��l��0jI�Z��?R�Ũ&���9[#Kn�jX�5^D�9ġ�43��*
��LdUV�ЍLhWm���foʔ��_5g�%b��杔��7���('����H�2�sF�С�g4t1
�����}&���mM3���=���#j�����d
[UTҁ�m�ڴv_�O:�S9;@d���LX���dA��֕�X����zq�j6r�l�5g"�&�<���3�tl�s�Nm���l�pVt�\s�+�m�R̳��2��d�_X�f��R4x-E[��2�$�k%��iS\�Q�+嗋[�9WWB��>a��u����p\�\2�A�h�y6��
N���1��m.�W�s�2g�X�4�Ԥ�N*��H	�8��]۝a����bt�\�fH5��rr��I�c��>�|��!ZBҮO��߷���k���h$����X�
����OU���Ō?������yd/���r}~+[d�G֝͹��֧��L�������B=N/�c?B��
��$:��+5ʲ�~7A���4�1S���	Sc��<2fR��g����f�b���W��dN�)腟�sg<��b��3LQ����$��4�'�!d{F���(�Gͦ�c�PQ�4K����j��̰ʒ^h v�Sa�cC���nl�Y��U���^>�2�n������.
(Ͳ�T��/�H�zA��Rܓ�Υ�1���F�e�%�e�n�p�l�}%�/������v��\�\�:�Z����ٙ��~}j�Y��@b�ۭ�mY��g+�۞�^�+=���6uk�>����f�a[V�Q�{%?�S�%;�S�%?���O���Brd'�B~���'�	�'�PO���I�)65K�)v(؈��YQ�ٶR�[��� �Q������Y�ųV�^ҭv
n
��6��QEQEz�$)�e���H{q{J��42������T9�$�MMMAݡ� �@���!b���#2pV�dH/=%�@�S���{��AR�O�s�$�����o��]{����[��� P@ AY���X� T7/��٢�YG0�	)ζH.�{/��Z�a���SWpJ���|'*?W�*��U��|"��%i��*��W�ʧ�U�2��U�2����E�+�<!���Cq3�؆�g�q
�=وn!��Gq~_���7ᘆ�3�_����Gq~�n/±
�}Ո�#�Cqt����a45P/�+9�O1��s�������8�J��+UA��V�w쪵SфU�=q�.�j|���>��L.�6&���^�oW�9\jA��8�'s]_ȭu���*߮�Cm�^�z�{o_x���_{"�ׯ��}�4;�~hw���ɥ�����_���w��ͼ��]�;�w��e�C��y�]�;ɓ{�{�{r|�{ro&�����C���ƻ
�s�Y�ra��Иͥ�$����)	.|��
��(6ϼ��9�QPl�栒�U�:al6S�r!��)���u�.��K�B3�4��H��Y���;�<��ZX�e�L�)���GN�!a@50�{���`&
L	�j��
�7�v݁5h��,�����P	r�Q��
&���F��
0����
@y���,��_�I�s�
�����\�Ҍ�BKz���}]����& @AP`p0Q1!a��?�k��C����D�:�u�롑5O@�_A.�]�t:�u�OUH�(�.�{�]�o�����F��I$��F�A#xXAx�H��V¶U�UN�_.�w��k�.�P�mㄪ&�Q��WK�Tjk�;
����
�S^�T�kj��j�kj�\	R�m��NI$�D�Q(_��(�#	$�H��8J&�3�1z3�1z3?����^����^�����f|t3��f�a�f�a�f��G�|O�~���s1z>��Nm�	C�+Et��؇�+��%J5�W�Am({��-�#fDlJ�kg�KcT�[5��Į�[����d�w�WKxC�X;��kf�W�I���Ng��^�>�!�0Aω_��·�,$�'	$�cįբ�C�5�C�i&�sķ5r�+���B>�ؾ_d-�S)A� ����q���j���>�_���'DAAAASAǍ]@�/ �#"��J0�#cD�PG�t�x$DP�a)	�R�$�I;T�w*���1_�4%�`��%�:V��D�	q�r��ָ��<)ri��=��#e��I$�I<-�V3��I$�2I�I&��-�`�5f��EF1��VήR��I��"��0L�'Z"�8���tdԺT��G�W�P���eDt�qDAΤ��@��@��@*�O�*�O���O<XM2I<��c
�t:腌t	t2'v��& `p0!@�1AP����?�9gq�<`��w��N������#�/P٨�.h��08�W@���/��08����`�������9F�
:==~a�tkW��R�q��:n?� z��׬�.�u:�wK�������ܯ���8���z��[�A{���X��w��߮:�u��x�QE��-�QEQEQEV����[QEQEQE��A�j�a��(��(���l`q���T~P���themes/images/dorigo-wu-14676-unsplash.jpg000064400000377672151213255660014270 0ustar00���JFIF��C		
 !%0)!#-$*9*-13666 (;?:4>0563��C			3""33333333333333333333333333333333333333333333333333���8�������vt4p�!�d����M���Z ��p@p@��5�F�����0�Čzj�
1ÓHV�Z�����W
�JX�S���:�EZ�j�
Б�4,��KI�[��6�y�a7#kL&��5���A��W��"
�<6�t�3��J�_"b�R76n&�i��\}�]�f/G�w������v��/�ǁ�ϓ��O���z�sm����U�~�F����/����
A0�g�!!!̚D�jBZ ��@ppp�qJQ-s
�l`0ƵplC�q�º���P��
�c��W#��������u�Q�!�zKb��p�ػR�jk3l���/�W�r�5e;��+�K�����:�Є����F*�uE�g4-�ab�t�K�zu�O�)5�V���p���F�T��z"��;�����8{4�z�6�D44�O5�Hpɒ"d�Y.d	��	d� �!��&��DM�,���"�<-�$�	��E]�؛�-�)U�k<�w���k�	T,!�M�r8$�E�u��@�5�rvC_-mgu�Ε�]2lig
+\���e���U
�D*��d�	��6��S�����W�)mM�B��EZY[�CX�P�3Zc,�
A�"y�O��KhX,�"���@MHHKR9�A"&�888%�%����}J*$i��4����1U��J�j�
��52����(�V�b�S���(6�Q5,!2�5����dBd6����ie���X�洄�&��54�� ��b�{69�nz�ЧQ"�K��3��:�	��7ȁ�D��Tғ��d�]J��R>s̐ ���)d�B�@H��%�0B͈�9���0&0|&����`�pZIfm��*��-u�%�f�lF��s�-aÁ	>d� t4�T�iD�.*R��ÙlM�)��4iD�ذ#���3���@��6E�+#r�9_Ik;|h,��jV.3��:�K"b�>Ch�pn��bΊo�{�@���9�
[��C!�2Bh�s�4A��8$+�(�pp����L `�3H�A! �]C����8��g�T�M.غ��+�W)P�����f.	4�=���&@�lA�>i��!�4i�n�, !��R�M8�T SF�h}C�y�:)��%ۋb�
U�*)ٛ�Uܛ�$��4aZ���Α,�����hHB:��!��KD�msrA�i���-�$%pp	H�a,�4ͦ�0h4,�ȵ5ji��Ү@va��K��4�(H4�1�p@Jf�.jE	����D���4N�K^�aY��\b�gT��j-4Ng&�8 �d���N� �*�\*�MjF�
�p�d�E�EP�r�����H	�d3���p�
�.2B��R�	&�0F!	pCR��16
��IcDJ�p5MɤH��Y����"˹E�B���„K$rՍ$͢@��Ve�PIv�%�K��3����Ԉv�Pr�u���;1m�9$d�RH�R�$ �r�KP4�av�2��~��Q	H�|�g
Y!-C8R)d��A�@H�Z@���'̄ps!�6bp�L��2hB��3����4�7Hm�T����p�)��幤T�(�l*R�	C�h�B�ئ��I��0���D��-C�%Q�d7&颗"��@���$\�5Z��ڠA��,����.
C��C  \�6b �@��3�w+hĔ�R�h 4� M*�,��2�jIXM�@(�EpKBѪb��@ �g	�r�Mb��9�sR����c�0����l��ЂP�CD�F
13S kS.Fi��P�f�XB
P�������P71@���1�sD���"�1ȸ$8R�Z���
nF����$�ԋ�–��x]E��T�+\���hD�f��j, �8D1d�`��Wbn@RѲB@Ӗ�F܄9�R��U$��0i[D�0���OZ0 LI��MsD��B|�
jZ�Bt���!Iq@�5�r�?9�@H��!�4!d4��\
���d
�H�)P#	DQ�<�9�4"��ơR�\�l��6X'T+��P�g ��մ��"l�*ҬҪy��!�
�@��HY�C��@D��b�rNX����
@�je5)�D6�؝H
�,�m'��9�@�Y@ C5k�㡩�9��`�(1�K�@�P��^��E��MD�5� �@�!�e�B��E��H1��i�,в��!�b��H-��Z���i�
e�+`&�\�A
@�jv��>��D"�$n�E�tCR"nDC h�J̍U 	��b�Ũ�c�O�5�\�1J!#

kK�~����G�B6H�3A�`�@�\���J@.A�iM8f�	��P�E&
�p��av*�j#3I����\�T�X�=6�a\�r���Z��捒��!
ppY��&�ej�3H����>� CKj&��1�@�5���*�ML��H�˩+;&M�5!��J���D��L!�$	��	N@Ab
8��X��Ħ��S\մ��2���s�8;h�g\ѡB9pд#4f'��r�
MT��Ĵ�K\��" 8D2����N1�i�B(�*�Xv2CnȒ�ZS!���1H>[Jr�9u 	T�mV�\�H�\�*���L�"�
`�@	i�5�kߖHHK$$
�`I,�r�7!�-��	m.�&i�\���r�m*�k��Hr�CXА�:�XpCP%���Md�EìM���"&B��@�Z64��j��QH`�YPJS�D���Z��b����$�
E�2�Y��")��`��۴�%N$+�&
��b�
i,��ѯ�@`a��C9�� ��š�`9��d�������9�ppCK�!́t�D�`��X<RЄ B��JX�	P4
p���{�J�u�([k	�P�QlB2X@�\E���\�lI2�^tKVD�MsѤE>[*	�ԯHp�`�D��	y{=�H$�0�\GB#0 �@AH��0�`4"楄B�B$hY�r88P�	��؎��H
(�N�X��L "L�J���cBRX�8a�ː��06H��d���4���S�\��u��&�g@&�R�ӍY��ѥ����zd�Ӆ>�P��a�SX��IAV��xу�t�ks�ĀpH�\>�4��)AS0��d��! \�.d�G�!
K�m�0���&�Vj�%4
$D�4�`"(�d�i@к��B⪤�pH��j�ѣQ��ץϸ��VGW6/gm�'Nm�p�_����ݳM�.@�޾I�.��Cj,@)�զ|���GԼ/f@�E!48	6��KK!a�J@�d���ť,�K%�6%�-C@�k��	�Ђ܅%��N@8|B��d�!�
C�	b�Y�a!��]��*��H�B.��c�[F��˱Qg-�97��L$s^��7��t�ū�5�W�:�y:�(�/HN�ٍ(i�tc;ca����H�7�:¤*�}W��H$\¤b�IR�4�	"H0@�����b�d�d"Q�Q$�,Ez�iM@!�`���1b[��B��!-(�����B\� .d��E
Ne���Ј�EƙI��;�VuĨ����I�µ�h���᪙���uv��{��'��5�n8�@�Z��T˔��<����>��M��� "y�d�`@(�J��K�`��5(1�
A� 
ps9��t��`� @X���b�#d��5�`RŰ�```�C@܈�ԈR�@1�=�	H��)<h*�Ձ?L�,����	�cHiJ	3��j�MB�H�.�+�%�j��F����;
��g&F��bA"H}���,t2j\�o�T�)j�`L\*,K���B�`�2C���H�D�Fi6\���批�깺u�{\�2X��
 \���IY��Mc�`,�T�����<����֥�U��L�`Ƭ*t��)�
U `��k�%
r|����e�v�5�--�j���Wv�5�P��
L���pfk�v-�Ι�FX�1��k� �1��C��	�2�C !��`���:YZ�$H�"D���)�T���$�8\�Aض��!`5��	inM�Z&:K���j���%�дc`�%�"P"� F(	m���24օ3AN�1��R�C��#�7���c��-R��[�T�lv����?tN�5يw~K���学b�
bCT�}���\ȣ�ԈR)��1�.``�"*`:k�!(�E>	�&@���M�Ő�HF
�lE�p��%0)p�|�SS��  .�ľj�+��&�M 	nE�1K"�O�aj-5c@X�=8i�1&Q)�'G=n�v�k��%��F"���k�iLts�st�y}��x��9�a[H
*�[G#�R���@a-ؘ91K,����*; �EL,���LI�W�Ҟ�\Ck��$p�\�����	ဒҬ$$! �X��h�r�S媢���ACr"��p����OL�	�	�4�
E����ef�) �S`���|��Y���%M�t8`R��'g�c�1:9��@6kG�E�k�5���kΣ+��yݦ7�&B0�:�s�N)i	��9�	��Z;d��'f*�O:\�l3\P� �o�A-H�k�25ԥI�[��%��u*h*@ \3M��y�+\ats#I�G-�UJ	MH�!#!�����%Ő�L h$�R;SW�i+!�r�s%�0|��Ӣ�e�M.�4�S))���S"�C5t�̂�;Jl��*��P@(�v��:�8��rmUs-t3���Bv䛐	n�磎��Mr�і�6�Z�)��	��,�Hg$�G(1�\)������T�4�0���?l�o4ܒ
W���r���G
X��g2`A,`0
R��,�^�GK��l�F
�C��9Y��X�5P��Ww�s
mgm���
hst�y�vE'�l����:�)r�%�B�[P��!H��r-M������`6Z�V��Y]]3
���T��������!�&\�C��r8�Bڐ��P�L��Q`J*`f�ej�
zEm!4�̄2���"`�!]��`�[�aR�@B�h��!a$�KR��B�T�4�E�����D�[\1H@Z�
KhB%�F0ܚdT�k���$F�� `@B6p��N`z����F�K+��4:(�P�e�P8s(0�BP�@��N��\>T�!1�X���5�z�HX����㘶�@�� @G���4��b��&K9"*D"1�$!�0�qF����Ӊ9�:�b���4!�b%���m�h���
w���r1 :����CD� b ��00!ȥ�MźBD�5ͺYQ�E�A!��
.l)E>�B��p�T���K����D�Ȳ(X�(jGv.�GP�HarR�MXC�sJ�4��"�	�MHR�؎��&�0�Ȁ�ڨ�T&"].��,�	��K|�Mm��h,���45�=.hh�2&Q"!��RBX�ڛe�|h\��c@D�@� �Pc�s  9�.d���j@C�R�|Q&
@��T��Y,04C-E�ON�T�zI�U�	LS@�i�((�y�u"��\.h�!Ȁ�d8���\3��d�T��+*`���O2�����à���5.E�	�tWR|���)�[��*�WH8\(3��C���@B@	���9�2�!���乱)@p@]G��4>i�P	�湍LDN�颚
K&��ԥ��dC@�4�P4�`n(�!(0�a@
�] hG��H@�V��M��@���k!4
�`
�=3c�@@c1s]K� BhY�l��p@0B�\\�gaIU+�U!�@p�|.gC�G)Cb.S�+h)���"���$$	8�'H�G,�A)�erB�1BuH	v   P.*�!H�2M�:��t5�?l��-�D��·-��#�-�@�0�_7� &�F��� `�
��S�F�	��Di��Ss=[�'IM@�U�SJ��@@Hps$9)nBC��!
@@!j͒Dܥ�"�qHZ�J%�@�SC@.N����.����H$�#U��ڭBF�V�H(T"
�LE
�D�̻r�!�A��"��)h�Z1�#�H`K�&��5 A� `�	���J4�B%ԭ��9���Q��,�J$%��k���\�5�"�:�5�#�� @��,�m�R�\��]2*EbY�bwr�
X���|2���MK���8R֌
*)��GJ��8p�K��ށ��L00jT���	�i���8	9d9��&�d�C�E"�HHC8!��ሄB�d͊b!g9�pM(���
CP�Ҁ��&i�p�12�� � �Z�����e;3P�.�̸E��TX�식N~�d���|�{a(���f)�Khr�g#�U�\R��E3��HR�@@Mf�A�6b� �6f���Hp��	5-ԍ�HEO5 C���`���lmKg�J���qg"�渡&W0Т[\�(��`��@\9	�C�d%΅�&e�SS]@�:��Ic@�ڛ'��8Չ�Lx9H5#[���Ѫ��S�(d����i�pŠ�Kr��y}��@��4�A������F)d��
f����!��TI�Tp�89�.Ɛ��
�)nP�}"�䁨3�6p��皀�il�ȵȆ@u�2a�gJr��SM%�@6r�Ӥ���y-�瓅bK3h��ɓcP�D�
����
q�j��Sg4���*y;�_�H4H宩&16 ��@@A̔rԌ�Ȕ̡r-K$8	:�h�Y�s8d�ƍZ�i����!Hլ���?"\�R$*�@@���r�hE
C| H[�H
GP"pr}R(�9r8r,�;)��IK&���O�T���b�K!�D����O�J�����y}�Q�����[ 0 �p�T�T�I<���.pC!����̆H�	�� B�G0�%B��P���(�"���@K -b�+阄��2!��5)�%��(!�Y�U�C����Ü���b� �a"Y
pI<�'�#��	S��*�)8|2�<�5
$CBĺZ�7� $�F34er"g �4�2����BS�p��d�#��C9�d�0I�Jp�0YH���΁�R��s|O
G#��:�b(S��s02HP�^a�-�q�=,�H)e5%CKr��$�P�&�RZ�
l�
�u&1s��`�%��JU�K��U���5��!�o�y��[�%\�-�\
��+g�+�&-ͨђ�B���Ʉ�[$9��jPL�H�)*TˮhZ�s\��A�E�3�
HK!�C��r%���I�M����Q�}s��饅���3�9,�m�s�
�ɹK�����=R����^�kξ�B.e�'N@��(����r�5��<�k���<�Z�l�#nO�d�tS�w���l<�?mG%���R0rx���)X�M�	,�B2���4ܙ���y�N�2JBY)�X�bY��X�+�N�:���St�/4T�!y��)H@p��	a#+h�y�V6��>˟!�ϫ5w:ы�~���\}I�0�;h�we�sX��f�N�o�򓎜E�oqe���{t�jV��ɒ��S��*F $|�	��ȣ6�c�u��ֶ��ߜ1�J]������ߛ����/����׶�ҍ�P�t>^�[˜eR����mؚeO���,0�����&�E]&��qZݴ���}��2�,rR�+�
r9��a#�����fk��z����v�+H�|��ʾ���Y���e3�%��%sR��ռ�
d�oƙ�o��Җ��r�:O����8,��
VboH��'eMcV������z�l+˪���FN��k���HK88U�UͿCp��Cf���p���B��iK|��0笌5��E�:J�_7Z�ӝ���}�+<�*9��X��,�+W� He�{P՘��pH,V\�A'�lƋy��=?>�NO)ΡVs�Nt��Q��H�~�2mPbӿ ˵K�&�G�ND�)�Y�v��ndV1�A$r�e��1{ȿ׭�}/-�n�فS�T��g��=�;w���|ov��e��.�r�ZN���g�k��+L����k�2�f]��Sm<���}����|݉o�l��:y/c��=9:�A�gG*4�
X6�@~�\�{9u>�%Z�����&gt���|ۅ�Mk�KכP�JCi)\�l�a�6���:�U\�f�0�ti����[LȚ�i�ڼ��N1�:d�T�5n-��:.�f��Z�	t�"�ҧ�aE�`�\뚑k��;�EJ�Ϯ����ˇ�����!�;�z��^�[ǫ6�SS�79�
�
± �g텉cy��gH�6�0;�?m<��k&�4i�ɸ��yZ��Mʩ�gO")�o�5�#��:s�j�#\��XH�A���-$�jm'l!;�J���,M7;��i���GK\�*ʉ�!�z�j�q��Qy��uÂ��6m��MF��gZ�eSj��6)u&MÛ
o�B]��zP�R}�TC+��67O[s���p����o��G�f;gȶWfK��U�F:Sp̺�R/���̾M�%��!S����??���n�]L�;�k���K������{(��:G��3�ףw"��_h�M�H-�a�Wl�^q���š��Rs%{K�t�.I��+����eQT-E>�f��:Ev�&g�˫P�^�4��EJJ��:����2#[Ѣk6��2Tq�ri��*��\!rѩ�T��%���6�X!��r�&� !l���vS���#�o%��V�w�g=U6�X�9�I	mcS��тUE'P��Z�4�cL��b�o�o�^�1�����}�sdN�:X���{�h��Q��倫�X���7�;���We��;M4�QM���#Lf����6sD�1�|����KK�6�݂��L���i��4��GIL�%u*��Q�MH��\n���N�}�\EZLpJ�KCEQ��R:SY���9XϠ�Vג)fɕ

�����{�k������N�g�����x
p�T�wW���x���m�L����
QgSlq5��c@Nn��/C=���G�M9�4��<T���~�3�AE����S>ת�=�u�na*����-|�W\$Z�9i�ўOG*��v�Z�8�E����YtlԣLW7nv�%4��wW={���vSI�]�>�"���BSc%V����4�I�E:̪t��8M�HV!њYLy���f}\4��\�Z��U�69�+e�������e�s\EI�*Ѝ(�-R�w(�g�7����R��>�=��_-K�ͨ���.�[��|Y���Lά<���VD�.��z�1ޞ�Y>5�W'Qsf*�{y>�;s��'L�O[�u4��G�шXu���=p7䠱�&[�ά3/�f����֊!Uj���d�m� ��8O��7��)��j�_t:I�Q��]}W?m���z��*��EP�d�,�2�Hz�����Y�G��U�n@��c���@i:i�^惪6�a�"�i��7`�L���|��9���E��M.�U�@[�]�z�������b�Y�SH�3��VZ0�e��N��]퓮UG��1+r�i�r�i�{K��qbu�^��WX����-�z��@ւ�j���Sp�Rs��ϼV�t�Rgt�y׊d�ʔ%�[�ɺ)���Z�&Z�Esԡ�
��u��)�Q��-�:�,*��e{z3zf9�V�w��i��+[�dg�C�mu���P
irKls0ڵ7iH&h�R��kQ^s�F�+���u�}���&e.��e���Hȩ[�Yu}S�z�g��˚�-���\��n���[r��+�N�W��w������@
\u@�-�9��TZ���t6V��t��C��W�5��3�os�YV�uɱy$8B��(���JvӚ��?��#�S������Yo;*���7�"b���|#�7C(w��:9�d���W����(d�if�.j�*�h�VRj`ֱufכYp֛�Cb�����N)�neOvQsCI���:����̺�o��ւ���ԭ�h��ԗ�>B���tr��k��<��\�r�4野g��"��x{1��kX�Hِ��Ϣ��$�K�u鹺�F��+�/6'�]tm�|���ם�/Wi��Z�5VuȚE�Պ���z+_;�6&��t�ز��jeItd麳���R�!SZ*�!!�`ḓ�t�ު�.i��X�;+]���B�빣1G<��n�3Xl&Qe4��B�F��:�\U�y�0t,ѓˉ�%��w6i�m�h����9*��\����[��X�Y��8}:;��ʚY�^��o[��G���k�Y:S^��	�VE�i������a9�����P��"�M˹	��M�{QO|!-L�md�ck��{�݃qim�x������gVnE��F�gn\��ፕjk57��ȻJһ��P�=n�Q���E��ٴ�@R!C!0������z�83�c	KrN� �Ρ�*	��A�g5Y��]�~�~?=<�sB�!L�q������6�o=^�u-1�o=.�Hs�9=m���\ȕ\[x�}'|����͟7�/SO
@�����uR��ݢ�%�
�;y�楞���f��S�=�Cb�sZ�b�s�Tk'\�d�J�l�'Nz�KPڭU�J�y��2u�ד=����]0aʳ5M�6�z�g�ѽn��،$�K9�O� B�s}$�ǽ7N��E9�	��)u�Q .X8S!y-��s^q��<��*�QUv�J/=Fx���	:*ïM��e�o�u\�)k6frk�������k�����!!�y{=�i�Mq�}ī�	�U�b9�W?V_O7���DJ�j۬�gLҌ�yz3�ih�GV�虺��^}�W�ѭ\����YL�̭t�3��۔���W�m�jI�xiM��s�\������nF�E��������ׄ
�'$�P�9��C$d.	E����Q��V�*S�����:���A�H�-��ph��,޴ŭ�%�ʼ���^��&��s�G�_
 m��z�x��k���Yo8������o��=%{.n�I�������Zmd��o0�8���NwO6�,+
* l�ٚ���3��Ɋ�JԼ�2����	�Vۛ����e�i�����-K+�P�V��<=9�c{����9��9�Z���I�f�LJ��|
� �pC P2Y"���3~�+�ѓ�3V�`m��J
�"FM5SZ^"�*���\W�^{
�+�b��v�(W����ڶ����1��ADHtA���Vy��
߱���zg���nf����lٚ"�����4��O7��V7R��Od*��?��mm���X����Y�>���FV�ڹ�ͩY���O'��m��Y��sg=���k��"���,[�JJ2o�K��O2��*x)�!a(T���qE�z<�ؙ,A��r&�m�E4,�2��N�V�H��Tٛ�C�K[�.ʚ�-t�[�7($L
b�	���۪�^�c�ӕ����|v�j5W��6��8�1�.�Y�>mnz�H�s��V=8Yk�s{\����u�&�S�K���
fc�u��n�m��;hj������LW����m�E	I�:��]�[��+떝%e��u�
ۈ����ќ�U�j�ӛS��7J���yT�̭=
f����Sir�h͗�$��L���N����[l�E�M9��ر!�U�Bp1&A��o-���]��WJZ�����ډ��%!�J����?�ʓG�-�]驏v=d��ӽ=�^xygu\�mE;	{�~CG���岵�n�-k4���h�4�^���4AӮ�T\=���-t2ݪ����]=��"��L��+��
C3ՃbTUy�ނ��u�x�9M�ǥ���S�7�7I����k��@p�����@�+�r���4$|(�\��ɻi4a3f���/et���$�>���>�
#�⼛o@z�p���I��J�W���x3-��U���s��=x�gѢk̯�z�t��K�jD�]�Sy�_�3�J���oO|}v��h�MV��UΞ�q�|�KƜ4
0�ഝ��XC��޺V�o�C� M�����BtJ��W�\�m�{�sj��W�L�E�S�$գ7>�ں5���}�C]N@#�B |Or��Ij
��P�wU��T�UӵR��S��Z-�T"��I����j�M�3�zLڽ5������Iʳ�+�ѫu~���8�'�eWb�wZUMqՑIg9�u�l�D��Zx2��,�Ù=��|�T�>�j޹��cR��y����Kw����W�j6]����9��Ρ;F�C��Ɯ�F@�^��C���X/Nj�F4oJ�̩[�Qn�ө�|�;oR_��r$N����4��������
��Օ9��qF+R���4բ����[�#X(3@3洜RN�t���	ZU�K�suTX'��C{��i9��HԲ���YhO�J���#�A����R�kVG�/[r�r5a�4��n4���6���ش���h���>��\�FoJ��Y�E�ȫsf^*�1O��7�bRT�9\��E'\}O7n]�`.��i���!*f�i�7���7�Y^U	�O_����3k�A4
�&I���-Ix{=<z�U�5]\��{p�Z�����:3p݀�f|���u�V5u�\���p�&��r�O̩�芭'{�W�s���e�f[v��{����C;ENd� �~Y9
>���X\����6�
d]Ki�s��4�u�”��X��Jڭ��A�d��h�%�HLN��	d	��G���%�y@&t��(�k�V'�	�f��~4���Zw�Yf�t��َ��ܗ��h��QG��)�o�4�-\���H0p׳�1�������y��ޮWj4���4nT��u�� �T�٪�E��F����r͉����]�vt�����Q:��o+�ke���^��rF�h���8Ԭ_�\W���՟�u�2�����$�s���G��<G>s*eF�)�j�Ja�E��*���J���i�3���ں�ٟC��2֌�Ud_/�j��ϱ�����L��Ua؈��;<������-�֭#�CI�E���m�Ȼ��x�i��vf��9�̶�&h�U��cI%%��&�*bVk$T���Q^5�o�rA�vy�����3E\Y�TΈr@]uP�`{eO.s���[k��*{�V�����eXܽD��M��+�!U;��smo
�}mM��g���z�$ǧ��ֹ���/'�NT��p���Rѳ��g��X4�8AW��d��?A��
��R�/�fd#R�RY����^�Ϣ\�LJ��;X��ƛN�we����΍7�v-��ˮ�F��l��5Z�v�6��0U�^�����1��?>��wZ��z�͍9/�xz�eiC��(:�凥����:È�;�(R��%�	���n��o��뢽BF��0���K6@g�[&.���$z��~�8�*^D�)�yr�b��)��y���E���̖�OC|I)�BT�kk���l�z+���}�OV�d#-���.��dV��kX���n����M;����������6�ˢ�`�4<Oo���R�}᠛�l=79�=Z0ky��M,|������\��"��uC�(�m(������	��p�G5kJ,����b�c��3�*�@+��JY��60��hu	�ޕM"�eN�*w�$����7'�~�赯�t阆�в��η��1�8�$��Lyª���[P�3���E��>)�ۣ�*���kFbt��ً8VQ�J{YR�r�ߖ��5��j�75|1d	�%��K�	��W��Mnd��l�~̴�kjN��[~��
�Js�"�H��94�ς��rg�Q^�vxa|μ�<8֡z�����}�5�T��4vjk
H�f�7�w�ټ!9\�>�N�S'M���[i$��E^�M��˒��3��^�wG�]M��x���̩g���f�^���K*�_��zi\1ń�y�1苼�O��7~O�:;�bm�J�rݮ���|�I�N]r1�<�Z�,��;�᷐���� �؈���Z���[5(h��t@ȋ�է=9��]bښ�}�:��x��ut��]tb��7��I�`�;ecۏ�\�zz��y�3lz�m9�j�纯5�a���{��8�j�bmAeo���p��G\�F  ���}4#��lF�EXg�zb�ʹ��>:!���Wz�(N���m�3Әg-U��招0muw���.�
������
)f��3؀w�Ū��瞋��m�]TC$�:"���B�eVBb�\�SeVf��hŤ3Ý��9d�~e���˘���Ӻ�ߞ\U�:�e�3�F���t�P7���n�U};��X�m3��diZ��q�z'8�
�T��|�B�O�2��2Q�z1�E=:n��K�9�t�F}ò��Jp2A
�pm��ێP�>j�>k��=�K3FuS,XM(k��j�H�w<������L��"���l��鼬��h�҇R����W3{k�zK+�1q��U��'I7�����nA'U�e
Нo=�h�:��f���+��+�!5��Q�'Fp?�g��$T��w�ɩ�:$�N��g�ׯ���d�xY�Gô�˚aN��cL69�7��7>7������=<��~�&qʫ�Y�c��V����g�t��ZJ|�~s��L�2z�Apj�[E�=��N���q��n�*�_L�YgƘ������.��΀䒌t�f�>2�SuOx�h���j
��7ުR�����R�V3^��'�G;k@F8�r!��3Ϣ�Xfb/ٙS"��f��A�I��<�R���1
.\�l���C�ʾ����Ґ]�!��T�]��ѹ�������4���X�Q���Bʸ͹����O��毾���g��1,P�y����c�`���~/V𮴖r �����^4�#^f-�N]�?_�ν�nG�?7��/NVB�ݨ��22�VY)����8vH�iۿ��s��N�5������C������TM�K��⫎���=2v�[�(�����,�k杫�Ȣ��v�Vt�}�e�9��+Z];krcZ�����Kή�-���4Y�
��r��5,���^�V��K��==n]�8�BM>��z|�^z��,z�Wy�ߕ�t2�D�Z){�:[�ۀ�#=�qWo.��%�Mfٻ0�;Ycփ�wi�:bi�=\z=g.fu�m�h~�t޵e6
�G���	ە�5%��oF��g=CN,��I�9�z������k��kt��ݸ���
Sn�/#M��nҮqU�(b2�Q����Nr�J��2�"3^�-KL0ܒc���2�����4�������:}=1L�3&�DжH�ڪ�^�n�;4�)�%"+�_7���<ٯ�m�_~]H�����m1��~�7鸻�:q��afr��M�cK��+�U?����֞r��o�B���
m�Ŷ֊�5Z�.s�T1�@��:M	*)<i�{�2^Vc�W?�QY�x�"�l���Fr׭�������4�eTw9�V�vVn�6
N�7��
wF� L�Ie)+z��
d^WE�f���)c7@(<�ǭ\��gz5���]�ք����M��9�Ҫ�U+M�"C'>JX��L��cK*��2�+���3@�Cm
S^q�����=�]?X�K��^��j��������y�iT��V�WV�"�8k�̎������PB &�_O#-�7ƞ�?>N�w�'�a�y\�V��4ʕ�
-#��韩��Un�\�
ڡ��b�F3�՝5��J�7������5!�U:&]F#\���Q�!j�7娪D��Jܷ`��&z�U-'+r�qk�2���~P�`��}>�4�\|�t�Wt��4J5���Mk	�'=�*�ٯA��Z+K�(�[�v6�zB-{�_�dz3+Y7mV����u^o�����W�H�3{�A�l$*�~f:5�o�tqMEY#ė����b�}��S��6Ǝ��K�g�qZi�FDN��>�Ӯ�ϡ�
����9J��>���?3�/��c	�z���~��D&!���%�y{�X�K;Y$�UP� �t`,�6�s�Μ�6bu!ʬ���.dN�q&�:���JF�:&‰z5캌��5��@�+��٢�t7��w�2��Z�zgK��{e�gM*R�����^�ͩ��_3�%������
�<L�dNm��Y�Yq�I�����:���/,��8�ur�
��
�f�֋������b�cv�g�)��O��״��ON~�|v�y�=ylOK׮�����_�:��g���u��+)�zj\E�'�d�r��e6��f�"�ecX����pT�����K[��"���6�/O˩|:5�:�C�3���{[�;9�iAѳ���c��9��Nm���p�A��uz
���b���v�!�D��yدAsz4`pyQ��q��>�M}g�],��|Nƙ��N�F`�W����lU��H��7��<����<���@�QJ�m
���y6\�\���ǖ��F�2�󳟒�lL
?�vަ�x�٪�wv]�m'�!�~_�b��y�emC���g\��f���gIϗk�Ms^m���NQ�
K�E�)^����9�F��m�M�}��y;f.�]Z���:Y��Cl3�*޻��¥�Yo0��i�Ԁ�ҵ+K}=woF<�IZ%j%��9s�����^G*�x�~C���fn����6��ˋ�P�&�^��<ƙo[=|ξ���#��:|My�������SRS��M�\���{Ա���s�[�N����]��<YJӟ�䆟�Ꝙ��SLA�|�#&�M*��偕Z�N��ֽ�]��g7�����Z�0�p�+�Q��FE,�zѝj�fi�͹�>r��T�P��U5���g�>��[**\�P8��׳K��y�B(h�0�U��������l�Qz/���CT�T"��(f�RH�2�����.�t��t�Ԍ��1ݓ^g8�֬F���集���C:��a>\��~�#F��&E�Iy�y��_�K��e�\���O;k3:��^jO�9eN�{���6
bJ۟5��H��3�
|�%�
�͈�P;�iZQ~�+�u^�;��X�~x��*Z5�6��`o;.l��ϫ�>w|A����V��*�^h����ѹ]���ާ<s�Ϋ��o�3�׈jI�E�#�M�s��s`�9�GgO�}BǤ M&C�T�V��UH�^JZԚ�Ͼǯ?<��i�dApW�����owx|��|��s���9�ˎ��@H��������]Z2�T�g�[�ߋ�o��Ϯ�l�#�B4�l�a#3�ٲ��+f'H���གE�6Z�C�KPR߬���.��i7Լe�Q3D���]�KB�������5��H�՞.��
�):-l�|b�-w���<��E}���K{�J/b�nq
&���3js�;���e\-$�tf�5翞ƪ�4��K�F�Q�^nK�|z��e�\�ֺ�΋�)�=L`
�>U���_� %r_=�<��+ޚp��i�s�%�n��h��z���gMpVf�a�|�F_�i���wyH��ƛ����2���VvF$O�ֳ�Ǝϻ��Tr��sw�T1��>�^�����]j�.�l�L�c	=&9���cQ��&
��� *�%�γ�%.�J�s�5��ԓ�8"H�t�~��M�"����IR��eí��'l�4���!�0��F�
)�K����y����H�Yg�Ј�k�Ӭ+�ұ:�g��kf��H
yraw���c�&�vS�s�TzrA�b����x�II)��eq����_<|׵���>!~D�7z-?�5m�Cj
d�'/��z�v�j��J'ͫ�.��;��R�Vis�d���7Z^��A��ʻ�og^J�_���ܘ�f^��Y鏷:���P��c�69L^�B����n���v��vt?vD�s坽�m��55֭�5g�.�;����izZ&�^���4��$l��5W�{x��>`tM������>�k�G�c����<�nm11F\�%��4�S�Wk��޾@A��1D�"$dG��z�;5"O����z���`��.zv�R�f�]/EiCΕ�Q�����2�����n|�N�kR�͗��jc�{���m��Q���y�Ʉ�ѪX%J�L�؈o#�i7%CL�]
1$�\R�Mi�����aZ�m-0zy��ik,m�U��w�O>k5r3�����9�]'N�K�'�&Nd���έ���h�Z�<�ʌsc+�2豆;=�ti�^�^��ˮ���ۥ����@���p�{�z��7�糿2j(3�:5�~Ykc�r�����Qs���ԙ�4�#Ov�����joD��(�ΘlQ�jkϣ]d��N�ǫ�������H�-��f��UyR�Yݦ�6L�<��i�5&�+i 
�t��m��'>���^�g:��ztϼ��Kl|����,�,��pQ��K�T5jv��U�>�ʊyK����Fv��:���<܇F|
�fg�z'm�.O@;N�eY����[���^ŋ�Q�V�1�ŭ�e��yx��z�����ϲe�y�+�U�]5��Zy_Kȡ:�?��W��P�_�8r��ӃNoNvh�4ŸX�ȥ+���w�?;���L�i��ߛI�:�������[�����fz	��k�z�1�R���W��ZY�[a�]N��:8��fu6�X���<���g��Wpo�E�;��]O+�輛)�9�R�Zt�r�sG/[*���Y�y����,�UJ���ޝ2S�
%:ױw�]]9lj��8��O2��6!�6��B���N����z�^n*�>C�ק��e�	��2�:5	�=��<���n��/>o�jٝ�\��k���C�EL�ɪ'v�k�*����k
|L��^��o�J��/��]z.����p��i�26z�y�/O�#(���J�,�����r��"L�$�_�m
޼�/!�?�3L�N�*��o+50�hj@h����C�y�H�R�^�s�6�f�TU4�M�;X�R��5J�	+pS�qJT6et�g��gsÊ�ź�r�UH\�_���423=.�w�3ώʦ޼��J��Ioh�C3=3��ZS�ᩗU�ΙiM�-I��7�ϩT<�d�"N��y�ޜ>/��gKy]��R�[��G;ֳ'|����(�W�>��7�1֧=�7����2�1Ҽ杚�k��<}��›�O:�┦����
�]��1�%�ј���Q�x�P�vr�Q.m�lHM1�)z>-S�$��t�T5�Ԃ�k������5h۲3et�軆V�Y����I��L@��$���&�1�ډ�uOJ��z7��j��Y��}*�y��[ڬ}�C"���7!"1A #23Q$0B4a%@CRq5PS���������/�<����A9||.�mB���O"(�N#��;��0�b;���&O�Џ�w6ma��
b$"�=k�&}M���5
��C��f�
���y�M�D�<A����ݶ�B!�hwo)��n�8X�=�5���P�֦K	a������%�|a}�� �l�e��Z��񼦦�u55�u5�u��5멩����A��	�eL�Eq;�\�|	�<V�b|�	�_�u1�e����=[���7��C��@8���zƣ&�����Q�`_��>�b����#��П~��i�nno�Q<C�e#n!h�&
�ED74[!����	nA2�Lwن��_ss��,L���h2�x}{�8�3����צ�5555555�u5����q�'��k�A& ���s�E�F��Sq��9(��'1�F>�:�S�ת���~#
�"(�<N3S�jbX��﮲ܖ�3p2�s[�8���7Q�\P䂑��q�<��77	���~ ��bac�۱p��Ϡj���;�;1�؜�Ϧ����;��
N��5555555驩������������jjq��g���� ���zA���^�	�	��m��D%~���3��x�a��ܜ�</9���r����1")�aC��&���1/)Yj�dp���\�Ssp��L�77�}D�A�E��'�d��F3��Gx�	���[p�S~��D+
�3���55555�ө��]x������~��=���`:�}�?��-v��|Ŵ�Ź��y%�	u�����	�oQDS���A�mMk�h	�#i�Cn�7777��N�H��E�~"�	��fy��p�a�v�c��	�s@O�י��������558�3����׮�����5bК�"jjjjjk�^�A��Ŋf�1LF����;0���h�L�y)���0�C�w7��������s`[fx��, ���߮��;�MMA�N:���_D����|�[��s�m�����=�䦄o0)�ӌ)�u55���8�3��8�M~��.����Z�_�A��0&�+� ����q��&�
�}Fha�h}u55驨����ߧע��L?Q������j*@�^�oS�'sq�N�}��k_��47x0.����v���&3���8�A驩�q�f��N����q�f�5�=w�D(��E�h����<��Nz�I�Q�#��4&o���=�M��3zq��}u�Ѹ�z�A	��C��g�0�O��B<@4��3MAT���驯MN3S^�������8�~�~�N3^��jjq��g�P ��f؊�0V����j*�'�r��(Zs�0'9�X��f�u���ss�f���y�os_��M��ާ8�>!oQ�?N�F�5��<�d�vɁ4=5558N3��58�3��8��jjh�>&��q�����#�SS_�'o���;�J��^ �p�/����S��-	�נ�E��'~�'נ�����3s�ߩ��~����H���*L�C5�'� �4'���SS^����8�3��8�3��N��۝�+��B����p�'���:������g
Ť*"�45ߣlO���9��a���S��<w8nv�V��o�MM~�����)�r���������k����'���&��F������� �	���MC8�3SS��8�@��Fv���ۜ5�3Bq�	8N�5�׉�N0��5��!I�p�'�p���q��ي	��#�1�P�!x��M�����a��3��l�DmF���nq�o�M�L��C^��]MM@ &���?@Xp���@!Y�q��������M~�=��OS�8³S^���:��0��=L��8�zjq�'��3�T�jx�7,]N0W;DO�	�������bӡ��mM�9x0�Z>�nq�ڛ�>������*b"ᶶN���e�M~��j8�3�צ�}O���`�jk�QV(0x:��+�
qkx�y�׮�������L@�q,�&�S^��"k�spzo��Nq��N;$)��jN�����3���s��j1,g0V��c��;Ba����
 H����u�3z�����a?�s�&o�Lb�DL��Be���3<1�ϳ
���jjjjk�S�j�@'��,���&�<�]MM���l����nn}�555�?F���S�I�55���k��=5빿T���@0�3��	��,�y�� 3������no�P
��m���<O�v's��Z�=B��0�g��8�3����`I�
��'@�$�&���������555��jq��������ks�����MMMz>�B&��^��'8LhDЇ�ny1`�>��w���o��q�@'��[,�T,��~�NQ��-���@�����bMA���'lN3S^g�q�<nx��6"�ŧ"f��B����z���������^�К�	�55鹿NP����	��1�3�鹹�Q�����acB���榦�����.��mF3~a�1p�+��`C<��q��oCKS�@��=��;%DZ,o�ol�쯉��]B=��Yb�����׮���ߠ��׮�P���Bۚ���������q�}5�z�ѡ����g	�qW�+��7��')����Mzjq�����no�}��%ĠįP��j��<@��wwXH3�o�ir��i� 6%��%I�@�i�v�����ޡ?��e����sS��8�N0����q����߮�u8�>�����]�x3���'	�q�L�gl�ۜ!�nlBw7�Lx@�g��jjj�f�79@�4�7��^+���x�3�59����O��
LZ	��ȥ�	�D�@��^}���EBr�1l{�H�h�7
l��t��w��)�Й�N鱮�
K�s"���,hX��a��f��$�
[~c����p� M��*&�7�}�f���G��jjq�3S��L��jjhOPO��B�{�ߩ�>�hM	�<Mz�C	�s����gE��u�NJc��q.~L�P�\�N��>'`��(h1�J�S�!A�8#lՒ7���<V�,��.~P�A�	�l}E�/ɮ�
��`��;�K��~�:��{��y2�Jjx�k�?�j8�&k�MB�������"Q��ۜ'	ۂ�8(0hF��8�3��5�4}O����&n�5��}�B
�8�p(�����3����
#�����"��Z|y<VsN���3}�t?@r'p������p�ME�g�	��P�n��(��<N�C0|ԍ��ǻ_J���B!����p�4gm�R��Օ>u4}|j���2�3����7�ө���&�u��q�f���8�3��f�Iۜg�p�'3SDOǮϧk����Pnh�jj��3QTO BH�ggnj'�9N?f��E�<�`�M@�䁿��F��f�#����s�A9��F��4����DZ��p/�h�A�G�X����%cR���s�M�"R�|35hx����e�	"wI!�?�nr����555�f�u54H_^"jjq�gBFN����ק�v���TPw�5��1j��N��d��;#^x!���5j�5�gjp�^&�z8��	�4f����&�4L�Spk�����?X��T��
`M'
�0!'P�^'���INU���}q@�:����{�+�̌��a�w��P|��0X���Ӟ�9�r��3�^�D�8�3��55554g�,+�M��pM�g8^	����qB���SSSP��T�ٝ��h	��V�%'���w8��ޡ>��jk׌�5�Q��s0<
�NZ��Lw(L\2P8�Wp�c�;�U����G����To�XD-�{.X�lGv���p��(���!"��{_�� �&�{�}u�Ii��un6'�ճ��x�S^�����	��3�D�f�8��MMMMMz	�:�g�f�u;b�� �̠�[�2_�xy;�5�5��9E��3�И��j|@�����[��R���0Χ^NEo�=�r?�ϔ�(�g}�
ѭ��7�TV{��$��q�w�o�WZl���U������W�5�0R%�x���������\��`7;fp�D�P>�������Xjj�f�����5u��jq���5��q���9�Ssp���;���ߦ�B�;厼f�����ќ[SZ�r,57�O;�X�&jk��$�*l��P�=68F�EMūϒD-jr��)�r��@���zhŜ�O�]�Ĭ�.�q�����9�X|骸���צ�`��1��L�=�Exc�
���fv��8��V;�kMAY0�L�G�z��� �_�šR&�F�F��b2�!C8�3��gp�L4��Lњ��goP)3�����:d���u�qj�Zno�s`M���7�ę��j��P4&y1+mn&#��]�M-m��a3�ي�b��{g���qA,��W�O��[P�;�Xb�����[�E�b�qI���U��'tN����"��oS����px�c�]�w'�h�N`����x<W�b#�A&:Uی�#�s���&lO��<~��f�4g�M	����Vq�f�4LE�V�(�����3��k�
��^&�O(L߈f��[����bg(=�Һ��:e�S�$���s��lD�Z�@�Nac;6���+��
�@y7�����3���x��>�}����hK9�x���9N�w��x��x����7@Б��Nf�Otߑr�����|�N0���d�3~'��v���cd'�L�0O�5�('jp�g�5<����'9�s���)�O��s�`X"�F���Q#���F�w5553^�3^��7<���0��PE�'zs����O>������-9�Fr0n
��M�6U48o��KhY�QK?l@�'�9Ns�;��;��
�r3fnr3O扝�����g`	�h�nno���s��u;�Ql`ey!�x	�Wz8�0t�5��9���ø6 :��`�'�U/��&��F�zo�nnnn9@a�|x:�Bб����L�׮��g�jj؍\D���$��'�~�>�s���&�� '394`����4
@�1�,|�s��rs��#777��������Q��
�~g-1�j޸@K�777�ֽ55�}��G�x�{�O'�S�A�O���ߧ"'&��9���7���8Zl~��Zno���Ĵ��S�aX+-3E��@��nh���C~M*�Q�3��֡0���ہ8ϩ��S��phM�9�^r����7驡4'��wT
�f��a��r?�{p&"0
z��ߦ�D��<����Q��53�8�@L���9�S��m	���9M����h�79M��؜�'��]~��Nf��k��#�'�M��B�3�-��$A\���H�'B����9�<�3_��')��6`�џP��NS���<�3�o�.�F�"�" ��N3@~��O�}^&pY۝��`��81�Pտ�"`�aC4f�����9NP��r��������{�Z�f�X|�sМ��"p�m��#C�@!h�&�@�Fm��o�^��؞f�u�777� H��~�Z�&�j*����К���`Y����f��@0Y;�u�4��نk��Hhh�5N���k�o�s�p���q�f����55��w#>��ߨ��<Fq�9Znl�a߮����L��b�@vLoER�"a�l�E�v�lM�&�3p>�s��9NF+9�&*���>'rbTۀ}�fl��Fnnnn����G�p�L�g4f��M�M�O:�D+8���G�+8N�)����cSSSS_�jjjk��jk^�Ӕ�3D�0����q�SC�y�����P숔����X�Y��SSS�Ng
D<&�Ё	��&-. @ Q����&���	�MA�r���;����-���'!;�A`�r��JL��r��4�B��g	�p�g�������N��ӿMzn���8��S�}8�-[�TN;��g��P=���
I��X;oˌ|+u�l��ȃ��"&��B��v	��ga'mDP��o��A�@�f�7���SS��x�X�.�8�3����y�}|͙�����lOBjjhN�؝��������v�	�q�f�5555����ק�C���Bh@'6w<BI1yp�p*��{��u��NF{�5h�4-h�"�@�Z�5��rԱ�~?t��<4��,���Y�m ��Oq`���d�g����ӹ�����79NS���rw�,�,泒M��؛���5�]C<�?���F�X!Fy�}tg;f
�N��!���驩�55��)���鹿F�774ws���>���.K��懧3��3��vFۂ��.7�zUF�O�H�͈O�=�?v���j+�c<�3fm��9�ٝ���°cS�?sp���߮��@���z�&��N"p�'8N��f��M��9�9�͙��M94ٛ01��=
�Mny�ٛ1X�X��9Ns�NFr���G�<M
MM~���Z�B���}z
��f��� �U��1��?.ṏ��y��֧D`��unr�n����!�����f��F�� i�0�9�8���3SP.�Qnq��њ����<��}riɧ#9��Fr3����;��;�S��������}��r���BlM͏O�XEm�P!0<����Y�^������	O������Sϧ�]O�zy��驯O3���;��fϧ�2'��@����9�I݆�Cω�x���s��>�S���Lbq�PMÿQ�M�nnr��~�v��njq3�0(�"q�55��<N"q��4g��|w	�P���'%��'pjr��9�����a؛������a�m��_�&�<�3���
�5��g��c
��-��N"hG)�Bx������ zjjk׉��f�����M�>��D�v�N8,�'k����6f����fr0�f���79@f����>��'���~�����776&����ަ�V�6&���x�DV"r�&}�ڟ������9��eRD͉�4az�C�,����f��rf��ŵ��K]~I������ی��#�;���?SdNP��ЍC���iD��X���3SZ��:�8����Z��]�x��)�Wr�uJ|�g�=�=O;�1z�Z���31�vN='V6~&�dQq�z3�r?�~�����s�,Ro��}���S_�ssssss��9Nfs����ߦ�w7�N`@��������nx1�""�S�[����NS���ő��K1�	ن�S2�b����{���0��k�EE����2����8ʩT�ȭx�s��Gp�W��3��RӸ����F��Kǿfཇ�چx���:�3fl�f�__��U����BHѝ+3�ї�6����[����t����#�潍y@t�Wv2��������7��ב����?h���{�� �q=���;�<��{S��9NS����L���W��z�0�)�ǻz=GY�=[jS�FC�O����s�l��]�۸��?������;��ǂڛ����)���r���M��Va�w��/�nF���jvP����d3�c`�ڲ���e�=���ey}�
m� ��
�����.��,l\�/=��{#t�q��-v���X�hj��x�|ln��L��R
mvMp��,l�Ԙ6_w#n���|��5�j �w�4��,h-�6li�a;�;�;�w��N��1��*��SUÙ�X9^O�^�g.1�+��1���4�VN2P��Pie�Zۘ9����T{X�2ʕBFɡP�nÒ��&E^��Pd�Q}aW�"�&�ҍ��*V"b�ג�W#,�iXz���鹏o��~�3	#|lغ�;hB_g�������yKc���ގ�ch��3h��P�^G1<�$�ؚ 1�Qq��Ox�DК�}��Bk�^`ؙ7ح�u��M�Aj3�2�~Cu;���T�6䐿��q��G���RCi<��%W�4W�q�����.ըѺ���O��~_�(��WPE�;�N�b>y��Q;e�ƿ'im��)�l��ok��B/7-H�B��J}�7i����W���fJc��Lb�0�c��NS-&9���}��G&��D9������/οBR���6�a.ȴ�3��k��l܋�Z���b�l��jx3��8�2���d=�fxC �Z���]�h;<�=��b�ږc�BV��o)vA�j68Z{��sv��vF�0�B�I���[��4ɦ�8%�UR�+$ߒWТ�A�ZW�cݴ�6�B���İ�v�\ַͿ��ZhQn��|����m����}|�$�q�->bvOslw�k�h��<��6��R�nEl���E�i�s^eX�.6�i�+̣4ӈ��W�+3�If_���m�{2�'�]���g?1�Z�,�>
m�xY���W{���}H�<����!.fV�u�w�̴�6ق�Ѕ����rٗ���ݸ�vc��e�e��Q\Ls�b;���,�(�����x_
�������rd���g׹(8>׌������fUù��۫A��"��h|u�e�85�U�X��{ή�m��^�na��|�Gt��T/G4.����J�ދ��ް�'L�շ,4]R��=\�(ơX���ZL��x����e�;K;A���EǭP�*���ѕ������x{�T ˷���b[��s�ت���m��Z���{O�P��1�[8���n��4�۷�܀�nP�@�~�(,�&f�V!Hy�$'���JΨ�t�9m3�y
�a����9�gRv�
���{;��Ϻ�?P�'�����O�g,wZ�D�������r7�g�����0�V�ꢍ��a��6G)gk���&����@���;5��.�%*��[nv�h�d�L��*��`�>a��F����i���-�T;� ~�q�1�NZHI��Lޡo��؛�	u�rv޻Z�x:�PM�D�Iv��4;��ef����ڪ+&P�j�d(���Pi�j��C��fm��5�S#2Ð�b�0}�����V�����b�=F��JrԾ��̼�U�e���!����^Ap`D��E{��o��N�(�w*�h׸Z�J,&�0�?�@��R�J�'g(�k��?&Ug
Vw�����2~t���霑��uHp�Jق��<l{�E��l�U��Z�񩸥��Z�p�[��W�%�ܫ�]���~Ml�t�ֿ�#CQ@t�����)r��Ï~�'�s2��IFbҺ�ⱽx�~�����w~A�ܱ��������Cj*�]O)�o`|����N�=�eEV��[C�&Ʀ��!�ԩpj�[˙D�*�V��M����x����D}�mr?m�U�[m����+X@��nnT�,�z=kǓ;��؞�0��7��QZ���'��N�;r$
���*iY�~s$��T��
�>��P�S�K�dS\���&a�e˜�����i���jKm�ZQ��"�tc_w�W�Cg��XjXΕS�&̕��99W�Ompe2�"d|L��r�@��n��w�l�N� �\�Wz��6�;6+`~l��:�*��}�Ec��$E���=�J�D�Kx�����d]���F�Jߚ�qL��8[}���d?
�]��`�.�����]��u�^�*d��8���u'PP?:8Ŀ����v����N�&d���l�@�}197n=qq�`N�<���3�����(���𛔺��Qп(ư�|�/��7n!#��NֶM�Y_�nV��ܩ��(��~�~C)#����H�	��5�˲*�\���Vw]��k�������Ar�<e[�o��D���ʑ����x�eh#YJ�-j1��^u��rf��/�a`�Z	Ȱ��au���m~T�@��$s�P�� i��k���H��(7Ӿ�nW�<�{Vq��/�\���-�H�2��_+���X���*���D���2�!R���X���KFH�0�tX���j���w�NW�$4���(������t����P���F;k�67������?�o-jRw�}f������ٴ��P�6�ݵ��s�}�	g�3巑}�)b�߮np��4fS@@/Nۼ�#���gT��
��ʟ
�����E�Ķ����iݫ~�µ_��]���ņ�'0ux"7����E�Q�D�\�V��Ӹհ�@��Wo�Ր��UU�1�T+q5���SV�տ��
���X�Af�Z���\��0�e��ËF/��(�!Պ���A�L
Q�9�pa��AeX�;u��m5�r��Ĩ�᎕�eOm��M!4*���)dYnW"vJ�7�"	���X��j;�KN�3lL�vg�9R�N��VJXo����S�4�Wc�Է\ѫ�ϵu�oDž��P^�ˌ@5�w;��}�����-���;��tw�\95���	���c�~5�]o����<���!����1��Z�l��&�K������d�w��i�u��@�
�Ln�S�k4�@-����T���I���Xk�qu��na���ꍞ\��P�`���۹"��Iz]e���X���r��
�#�1�%����u�� �/��ϲ��o����9-S�ӳ�.
F
ΣV�N,b��*�9��GƄ��ڿ���s��\��k����x��/��|�ܚ�(��lIdrN'jDV� ]�а��a+����L�b���
����q���/=�s`�J�p�or�.6;`	�Du
�Q�A��r�tj�+j���k�\&B�#�Z���R�
�
��WnJ��*�嶔"2br�ۡ�ŝ�6Zl�O���{ee�]�b㠸�㸕t�[�8���=L`�ȟ7|F��F�ח�[���������MC�ñ��n�]��x]��9��q���z�4@��Mͯ�]D5n|�\{m�݈S�SҭR8Vz�5������}�+8Қ&W��0LG��[��<`���TP	Z�Y�?l��Xq�gLF*rm�i���ܑM�)���[�9JrE�,N����5ⴛ��!Ǽ^�i6P�7O˃
ն��֔Ϻ��KF����sX�����t���Pa�}���Be\���3�������Ym�I��lj����P`��*�zUAr崊k,5�|�'&�T�b
�Ϸ?�Z�S�s[/������dDl}|��w�ksǠ��>@3��I��8���6Yg9r'���r����˜i�1��˩{H!)�7����~Eh�a���h����� �3n����R�AG�;^QK>��:��Z��%�8���i��=��[�]���@��n���}>��&���s��X�Z�� �j�a�(��[g�w�M�U��u�[�q�䘘�riw�\f��������y�Y5gP���V���W�YPX�Z;wX�?i_X��:�<�����WQ�+�Z`�Ի"��KޫAQ�^�*�'B��^�xE�}�N|�:���@�SW��愬
�(~��	�a����ЮS�Ǜ�d2�O���jl��,�j����$��{V� ْU5���32���\����3ڈ3�7��Z��0��]�S����F����ж3<���0#֑�p�ƴ�4\)��	h���:�V�+.j�J�wD�F���*��#��?�a���J٭n��v��W�q*Zwv@(O�M���Q9l8��g�<��Q�S�g�m�B�T���2¦�e\4�7Yg)Nm��ϭYf>jd��e�����ՖpsfN9(�mH��2�v$Pv��dq�[ՠ%��ƌ�@B����|����oM�Ӟ"��eS�e�<�қ90�E�h�V[�:������3�HֆZ���Ѽ�<�^��ewwo��r&9�$�Gn���k]�����&�-��vv�zZ�~Œ�]|֜����C{{m���C:�Pý5�eǘ�f���Y�xV=�)���GM��9y�J:����� ��m�ѻk�V����Ł�n�Y?�4-�ۏX��B��^w[�fr���x�&)��]Uocn��@ڹ�E�Zϔ�:u
k�5'j�W�fGyh8�<L�XW��H��%+��`���\eb���cǦ4�a!F�
�촩{}�Ae7��Z�P������G��w͇q�e�؁����v"��v3�e�}��tq�����e^�k�1�
0���8�5��4-���?\Ƀlb�ը)}�q.r�T)�4"�A��e��jZ�u�.Nqq�p���x1�ʽ��4�U��X��x瘲Ǻ���>MVi�Vdw��,���1�E�s���a]*�F��3��Y#�e��aw��N�����dES�f�|냟�[�9�h.��
ٱ�@}��������-���JX��D��-+NX��UȎv�N�u��(��ؤl����k�a������i��`ܷU;H�u���>�ԍbS�;�\\�@��}��,5c�'�6=v��l�%Y���k����V}k��@�^���h�J�]Of3D��ʷ�K&]�:�}���ǧC��	9m:� ����K��9y�P�����C�I�r���[���j֭vhJi2q��n{zڵ�U<<��{+��r�Q��zN�[5}�v��,_.���Y�a�-c��L>)�UL�`�،EE�������U6�gX�az��,��9z=�9�U_�.��N�|m'����s�,u3�<��W�鹿}��R�^gg���Ce
��M���4�XB�4[|W���v��[j�[rm�x�"��`?3_�_�b���/�VYR��>c�+&�$��6�7M��121������G�:�z��݆,��8�R��ǡ�(j��=ͪ4�p�F�>��.�K�A�Pi�ظ���>%MA���c7002�A���cy��na���8R^��6}��:^���%u�m������\��T�7��H�OϳE��jT�,�8����Ń�8a��T"[�w����7�>��=I�j�+�
�,J��Ӝڭ.�#V
�^}i*��o���9[^?7�K�0-F/Zm�E`zɳ*]����U@���Y����
�*�}j��BeYz�Ah�v��گ9vN�|�&ev�T-�P�տ
��7��8����$��}��Ī�Ë@N�r�.Z���z��ldȤp@��n�R���g��rÎ�>��s{�5����:,�wn|pO�L�K��޽����m�=�L�t	��ɸ�=���M�mt-rJ�p.�
SN Q��{��X�ُ<�|~7�<
+%i��5U�NG��x�E���V+�J��#��ڰ�=���Y�s���6`�/��w~��b._��!�-�6Z�gd�i6����g�#%19�C�lk���f-�;����g�i�q3���qYU��ږR>�%V�s:7m���|�S9���L��cf�܊m���)��Sqr,
�GSJT���Ҷ�1�-����5�e�2�*���\��6T=�lM�?��h��z�*���8��`EN}b�8�(�7�:a؝�jKpoW[�)��2ʖ�^]Y��vJ�Ӿ���9�=6����L=Ʌ�59�׃ԫ����3�9I��^�u+@���fI�Њ��oPI��&�Տ��&`���XB�q�Jy�c�����YPweXz`����t���t�p4��z]��軧�f
�Zv황@p����h���y�dsnJ��@1���0�$�j�������Ǭ;S�G�bw
_Ͱ����E����ֳ�l�M^~\�)̹�Ky�qao��Q���w6�Da�����05��d��-oȶ�`�������,��sc<ݓO4�y��l���'�i A����Q�_Z�i��ل��y|�W�I��g	ڜ8��3���G����Kr��O7�>U�U��A�t��3���eJc�e9�[c�xsP �B�n�騧Ɩ�ڋy+u*������f��K�Y�;te�@&��5����mϴ~A��&��Q	ϭ��@U��ݡNp	��V�*�颛+e���\��Ki��L�h�.��
cBu���.���Ճۤ	v.@,���\�������E~�7�ut�I�-�?���cΧ�yL��5�Q�LD���(U0o���^>�5�-�:�vk<�k)�m���-���=�+a}��J�-�UUۓ�>ۙ���V1l�x�Q��b>��~�O�7�p���V�0�j�֮���j�~��b�\hvܔ�:�2,ֿ����O�P� �3�O`����%LtI,<oU�`x*-�N�@�#�\��a��ϋ�Ad�ɧ7���Xf�N
;f"
��,�%	HYU
���'�]��i�縺��<w'p�m�ǜ�p��?0l�,gm�4��Wl����`�PO�"w�8���Lk�t����AL���=+�
0�^-�Ҏ�Z�‹^�/��\�[G���<�P�_r��h�99��%9h�]j�ja��b��Y]벷$�OP��t�rꈶc	]j�;x����S�YL����z�]k3"����2ܬ�DD�6�ǧV˭�o���4o�y	��m���u��m��
�`3�ͽF��u�2Y��z����gP?몙
i�J�V���S�{�B<�cݾ4�R9�+��
�p\�!.�����'_��}�����t�}�^g%���>�ݹє�{]!I}ei�wn�m��<��@�],�֣5UPƳ�jt�g��R)�[R�q���Kgdڙ_��8;��`�������w8C�#0?t��P��,fK358��f�NK9��	�Yݝ�;�si����3>_GO:vʷv���8S&����K��㳷0n�:u���ӟ�ze�O�D��G���Y��B���-8�b1��ex�=l����_���E�vp��mL���#�&]I��2�B�<bZ���Oq�CdXw�����X%2y%9
�6>�=Y�8[�9C�9�wadP~d�������,��z0�K�����;E�,��5�E'x/}i؊8�����(���֨0n�6�����Z�Tꎓ��ȱS����0�*��T�f���Z�l�&��\��XB����Q����������Z�BT2-t��,﨤���:�Y(!/�ާC#���K�v�ynk{S����k�͵
L�B��&
���`Ť�1k�[����*�����.���o�oPNܵ6���#edkNs]X��_Xxn�j������wê���]�3%}�o���V�Ե���<<:-�����	1,���/��gl������L[	 {�a�k +�X2m:]��t��~�������B�@�=�n����ctc����ȭ6������E?�����r���8�߸&�ǻo>1��S��cw��Z**5���?6�u�T5>�$&�dVb`U?�n�3���Z/�=��w��*�+?:T�u)�*��x�=�KD�"�&Ե�����X��'T���/3�����FWJ��>|���%LU�o����8�:�7t�[93Ø���}Y���K�UX�4K,��a�k��u9�8�j������ݺ��Y'�u;Y����Է��{��D�;_V��E����n��}�9����u"�#�-�J��k�����HB�l<j���##�&=�"���)������L��&�3�,���x�&��zB0���*�Ŵ�����0�ג�ڟ�-r>|j~�0*��[G��ˋ��RJ��O�����Î2�m��zFZ�6RM����.�ꝤZ�*7�NWM+�^z�[#��7���11�-��W�?(�բ�a��0����o63�E����"������:nHs�q�{�
�l�2��e;��v����;���wkV�.�{F���#��mJqrC��.�u	g�J���4��M�a�, hw?8nr=�S��
�;�;˨o��;�gr��NVC�s�E������Ӯn���8y	}
�s�q@��NI�S�
f�������ȓ����;�)�֭�`ћXi�Ъ��._H����l�-D�¡noݰW�J�� w�G��ђ�\X��Q]��.�@uGN+�3pR�ʫQj:���P3!��]��^�(�[��X��噟k��3�;��j@�?j��s�ꆱ}�>U�i��d;�x�K��L]�:��\5B��=�����g�k�t�yӈE�X�H�NX؋}�D���'�"�J2;��{��m�{����j��ue��y������he�f�UK۫�|�X�S�ϻ�cq�·��Ǿ���g&�g�yߕ{�yQ���/�+���7K~�P�yuJ�2��F��˩L[�2�W�~J�?���]��c�9x#|�!����h?��]O��'Sg@B��9�3��+q����	ev�5[�Mg�apK0���a��3v�&bge�v��?�vA�n���ct��)�F�8������b�b�&N6-7���R�9��/**��6f�S��z�Vj�Y�����ev�ީm4�Vi��⯔SzZV,��7x�ǰ�p)�9<`������
i�������l�f��u�~��eh�NE|�6�[��T�ݦ��8�!��n�j�s,H�Y,D����'�b�)^�ʲ����v����C��8ͻC�V:�������3��L�囹����c]�]g;��*(K@nThb
QP��l��̚�i�,O�K|湊�=�J�aS=�1�=����9��]}�m#�e�|�U�2ܯڥ��qX9
[Z��y;3{~�ꕲ�3�]�vV��z�A���߶��&#u;Ž1��̕-���s�(v��=8�t��}�z���w������գ#��ۍ��S&JO�	Ʌ���||���R��(���_̱AP���_�gVf'���'{����&w[���M���h��o�ڇ�1^-��-DZE+�ګ�5���yN�I�w>�}�lQ��A����hʭ���%�eث��ָ!�44;秴�y�Uz�ä&Zq@o"��,��X�����Q6�R%נ��������2����
�=��ϧ���S�,(68om�s�+���,a3z}wת��U�ʁ��c�(�p�_����w\���B���-)�Z��*���n>OH�?�2��
�r�v�ܣ�V_��^Ӵ���?Mfl>�~FR�s)~��_�.�7�ȵ�&��\�\{r��C�ݿ����Le?N����fء�t�Ku
��pdn��\�xa�k��wfϷ��
J�_�.E�\F?�_ZC˽q�w_uL]��@r�r	ư��³�ӈ��~/w��Ιj�{;<m�-K��x�Ⱦ��9�Ū��y���7�6fT�{���&V^O�)}�ƀ�Z�ߴ����S����b�zc��v�ėA��V�6~~#qe�/GP���cC�y�U�G�eW��{n<��{�R�g#��Wp������`=�p����N���M�k,�
��I��2h�U���2
C�v�Ŷ�kK���w-��Ӭ��"9_op��l�H\L����O��f�^S��Ov�K3/T�i�xl�!�c�+{
�y3(d�X�pʫ���ly^?�+T�T�ly{�7ƌ�O
�z���76��5SV?R�H_陯����:��˦��p�E�?�xn�1%��7���ӹ�r5�WeI݉�r�,*�+T�nŻ�xt��ܹW!�)N7nb
c�e�o�*��_�v(rz��)�^2�:�3���1kN[,��fk�]�B����]�͗����Ų�yF9��%���x�Z~�e!XP��-����Kl����2���X�Hv��m6�AN!m�Q4b�m�خ@i�XY��~=8sͨxKm&������-���U���?OuQ��b�!j��K�+��Me��J���-�;�h���<�"8֠m6�7#�Wk��*Ԭv�W����X�י�n�4~��6�@���.<�IO�sd�r�y8�ꦅ�$p��u'A23����K���:�f'PFk�.�)���
8�š���1�¿O���>Z���b�o��d��U���3>�l��lO��^ƞ�K��Š�1چƭ!z>zv���]y�H���:��[����|��+o>����q����d��j@j�Eٷ'�ae��#w�-�skgv��[ۯ(�P��&p}0��;wVN6s0+.W��tZ���ŝ��F��1�g�j��ty��]�z�N`��u����w�鹎�&%�ҩ�WG���{+��X�ɴҴ&9��؛�cxMq�*��n6S��wK"����H�C��r���.l/;;����@�cV�HG7|LVb�bb��cV#"�X_�s[�]n�<�2�,��f����WG�u�IFE�t�xO�A:s��|���F+�/��9s$��ΏK�`R�61��T8`6����M��V��\��1�'��M�����'He!��	���yB1�bl,��_�k��Ŵ�r��:}��M��O��@��.�P�/?�J,�{��	Z3�O��j��p%�����~=��
�{�rh�^��P��K��L��ͮ>��
��95�b�-�
ai�~�W7{�����oR�yk
���s����2O�@��n-�N�n�nW�j�ī�c�vK��y��O�^�G�>�2��M^ґ(�	�?+��+%-W��]J���J�1Σ���n�G�K#9d�$�[m��/�5;�������N�b�#�
'.@�z/��s������'�oOR�X�������6E�`���J����Q[���n�����������X��F><;rn��vZk��YxJ�4[��<������Y��vU�N�{��T+6���	��їf*VZ]���p��b%~�p�%�*탖�c7���̾�
�MQ�]E��.�J�Jɩ	���cs��c�3r{�%�iU(�z���{;Xp��d4���oS/��h66]�ӕ�Z_fM�=�pݧ������WD����_li��	��PQ�ڤ"�Ʀ�_&�����$���5����n�y|-�"rz��6�NWc��ܻ���?�Z�Rݞ<��T�Y�f�bQ��b�m!��_�S�팓=�>!�"�]�2+>S��]��m�Ccy��.u>^uZ�Z��W�5�Z~n+f�=3ц���ES���^�7Y���O���_�\��?W�q��?��^:��j���|�9�͌�Lٟ����^/�sX���>��ϟ��_�K�pd��˱k���p�َ��/�c��Lԑ:"n7N�ya���!2���T9=}��G~��a�>σ����^��q���v|�ev�$��(�pp�N�`�:Jdr��k*�i`c!���wc�Y�ϐ�Q�-�0�_PW�_3܏����/�8��'Lm�׏���o)�t�Q��!Kp��v���;t����ce�w�,��ł�;)�C2�z�XՉ���p�g=	�^���晘O���e����ᐺ�
�R��~=�v؊����4�%�5]�u��cܬb���Ⱦ�
�'ܙ����
�&E��Q�Xc���Tm;!:�5��v0��mV�뛑}v�E�9��El��jPo�b�����ɂ�T�7���r���ڔo����U?��mn;>���dk��v�翿��
���M6L�z.����]��VQe3�j��{{5Uokc��'Q��ٌ���&��Pm������F?�R^?�/X�����ݠƮ��؛z�M�=�k2���B���Z\��6s�@���y�Kj�!LV�U.��jr��0�O�I_��v;W�<?�a���WY�[8UR#3��PC``�;�{��}	32�5�W�����)�Z̏�ՋK|^��f�'\�{�^��q�&��@�� 1le�6~놖rC�F*eD|��ŵ����my�����dnhs�/�{�t��4p�A,p�%uט�d�'�����]��os��lZQ�=w�O�l�	��3cؿ�F�7b؛3��2-@6���6�A����U�yv|-�-?s.�.�,)Ȳ�������D݌�nJ����c�6ic���ǧ��K�����Oc��a��UXM��'����ק�;ng�"%N�C
�,CIӗ�⽼u�;����,�xW]v�˧��{�lqB��4���TZƃu�ϋJ�g7�fW?�{��2�m�~�19��]?��}�m���V!n�B4��c��p��37�.G�75�l�l�`�b���綃̳��[�X�[C[+�˟���Q��?��A��t|)$���1�u.7b��?��k��J���u9�d�x�����U�.˲����˕ָXm��vĥ��Ov�p\��B� ����g�龶x�UF��8����f�Bq#F#}�v~ч�c���w���)�������{31bu��s,7֛�J�A��/P������Ӗ��at0��EtR�F���阎|����~��򩅔���ʦe�4��Wo՘��n����H������ؕ�"?
}����-Ϛ�Ǻ�]���?*�Q�~�v������`5J�>�(�o%vN�x��[��t�jeu��w���2� �Q��YГr����s�?��j���A���)G�L�n�#ݹӟL5�u|��Fڛ�A���CZ�0�������I麰	���0�*�!\�Ѱ�O��`&�O�֌e�j�]��|�S���/9�S!��<�ʮ@e�t�|��6R���Y�<h(MJP���n�]�*C^G%������PWq.+S��c/�)S��n1�
��pT��1������SCZ:����y��=?���-�IJ�z�QEo��c�N(����x�l�m,`��+p�����@0f���,�w6	0Y��O� |S���(��|3�m���1��:m����[�Y�2�����W�n�v�{d2��\�5��ܢ���U\���XY>'��ԏl���gL�y��^��א�m:���p"d���6%�n�,n�̾�^(N�Ex����,~f[k&��E_�gǔ����|�c_k��1���AP"�Eâ�wjH܀�Q�1�U�K�����u�|���R*9vұȑ���ƺz>Ck�f�4�:%S�0��E��8��ӂb����/"|����[�23��2�ذ���]�߭J�˳�˕n��g��5�U�{@q�GbV�#�+�le167-�c��_�nK)��s�G_�����k�8��t����{)]�	��%?�ۍG
̬<u�F!����^D(��u�s~B���߅�s��ܔ�9�]�C���FS��Ǭ�TW��ؘ�[Ƹ�����%n�-������yjo���r�#<��,l����3�+t��0р	�&q����R�8e���`x�kqZ[49���4�0��^UfK��9QX��M������Jл_��̶���n�a��F�NS3��֜���eޟ�o��6C���5���S[
5a���1���MWkw��ѐ��#��TN[�5�����<�/����+�-ɋMz	Ob��I����2��z�"}�[�Wض�3
q/��U�m>n��������,ɦ��3(���s�ƽ�l���,W�<+�PD�ɷ��ݶ��ne�UI[���xv�k�;�[��N[����Q9��/o�]�*h�iy��J`�.u�H�yG���8k�T��̖�b�
��T���X�(���q���;
�^��dct�6Z����=f�x�03�ҍ�`Q��%h��7n�;Kf��Zh���6 ��/|ri�E�DKZ���T����6��|�����y��&҄�f�,Z"��*��G���N~<7�����3�����g'Ak`Ò(�8�>����d����ޫl��z��$�}A�x�M6��n?�U�	�mG_���Y���̳+���l� ׺�o�ÙyY�e�� ��w���^[E�[�wI��(z6bKq2+�x��5m)s)�<A������d�?>�V-'v�q�Gܸ�h�|�I��&��q���|&����c�^�G��+�{����<r��s�8�q�E�I�mWL�G���X�䜮�U3���-�k��_Eʰ�u������&���,�9<���t��,vY�1���}�.�a@6`h��������ٖX�n
�Y����r��Ie��e<�6iq�̄���g;�g|Z��{�DJ�EX̣����^�Wܲή�Y]$u��U�v6C��b��o�]��so|�*��Yk�Xl���M��ހ�Z�	��ķѩ����q_I5��Z[Ȥ�i��>�ǀ�ς4-_QpA����"�
����h�cX���z�NX��:�c�]��{�~#�u���6�l���+b4��&�������K��s0�Ϩ��e� T;|k���QO'��a<K+��j��0+v"dE�u�t�]Q��nC$��޷���Ũ��=�L�w�g|�w�x���m�{�|�N'P�#��߼Os&�C˲r*`l����G�͞��<.&S}/M��t�;�Q��)�(}̖j�q9�nw�q�۴T��d����O_��ݔx�>���M���y��F-cn�^Bq�9�ˏ�2��•]���S��p�Ē�'����(�=�8c�F�Gk��7�r@��n�q�Yo�eQ�.��5Q�2��|���S��PJ��#��w%w��(���I(���f��}C� �Z":
-c+كn�jE�_l���s_�ށ���Kx!Q� �Y�_,�WZ=~B.�+m��بB�-�>u��x!���C�~5>'���N|���_)��P�nrӳܹ*�=�ה����b�g0�����8�@
�� �Y�-���a/�r�C�	���1�|��[�=���vˮY�7�ד��
o�=~���;���#v!2PT��%��'�ՙ�yØnjl�X�=E�uv���L��]_]���
���L{�P6&^[m�.5��(���VU�HS�/��jUsv��X�����)�}6���/�ߩآ>e�c<\���9/�WT5���\�֚�0��C��X��"�bZ�6>�Ѝ�/��}�K9��0����yl	^��R�'����ʫ���������6%�^*��O�j؞�uq�Ӈ�h��
�DZ+~����S�9��^8�k�� ��I��:����b�߈���A��6�0��-������Ͱ�)vvP^<�&O�,�<����0*�e��a��8�;l�7!ã���
���|�?F��N�;����b5�	�13�J\|z�Se��s�r�ߕ��d�ⴢ�{���>G�-<Y�pw���(˳�ޛe�����)V��/J݈�΋M�u�ҭ��U���I����g�$�ȥ>���֥*�_±(�@v�G�wJ-��� ��O�l�u�R�-�y�'<��OEͷ�W�O�U�xI���$�����ZslH�#��s
]J�m�Q՟���껺���Ωr�Wn~O&K;}_��18��8�a���IZ��ڌ��T����V��U���Q��'e�
J��p�7:B�^n�EO�+��D��W�'cD6�фn&�p����^�V۟�3[�7JD�����z��'� ��7��
GT'g+=kS���Kﻥ���o:��VV�kƊ���x�;��]��Mr��^�ܾ�l�/z�v��&�l�����t	�
4q
�Q۫f^���P>��Z�l��
z��&�Ty|On��	�B�f)ф�>`]��_�9Op�<����#D��2�|7����ÊA�[a0��µ���M��Q���u���[cV1����B�	Ј5�uV���� 0���9B��Kr1�1˵�̻6�����[����D���g�
N�?
	쒶1jZ��X;�vW�h�Ee�WR���-C]4����i4?{��/�h��-AQ=�w]��s�֊�b����5
g��;��uc�[�l�#�t;����,C��گP���4�O����ܪ���ߐ�1z+7�i�u"��A���U��1�xaV���ƽ��l�~���l�Ԫ���i�J�22|&7MD�X���jv�>x�:�����^'R��S����Պ)��yDe9XN�=QA\�|W^�X�1�|% &S<����>xE�-�#7&3�}
J�3|�F����������
�d�k��+W6jsT���,�qA���1>�f��<B�^�;�|r6��o��v ���s@�j�>��]�Jm&h
����ӕVG��Kr2�v�	h9nx3�s��G�ܴ^�5����Y��ST��E���)C``�:(~�Ш'qt�����0B?)]�^��Gx�	��$�_#I��H.
�y��ʑ�T��^Ҙ���)�15�А���J���UK�+������,����6=�Fb�������ħ�8H�N(yY�,����g4�<�+�����-���^��u*��R���ٿn��u�N?C�?�l\_���/���m�L���Ӫ������9�㨔Z�QF�����\��w\ŀ
=T� ���hϹm��Zʲ4����u���L��{��^61nj��,�/ŗ�D����ʮ�_/�\�"���r�t�Q�v�_,vp0FY&�k@�\jmY����Ϩ{�m�⽪9��ձށsJ�WX<�b�3-��c�*��C@���&��Ȭ;��Uo#�K4j+>eI[�=�+մ*��k
cD
o$o$��E@�+���k�XO�ɲ��
Յ�x����P��s�k��j(
{>�������c9��HF���:(ん��l�ݶ�2���
�VS�Ŧ���Z��\�vk�k�>ǘow�Y��gv��Ƃ�G6�@[?n
���άL��s�~�Y&ۺ�cV���o��A�����wΑ��k���G1~FE��ɣX���aʢ'؝Ԧ��fy�д>ݒ�18�4�&GY������e�%��	GG]�q��ڪ����`2�r��OOҷ5�ϣ|��Ra����џ�@���1W��g����*�h�����sݧ�;�>Y]MS�]F��#��
Ux)Z-���d�/&�Z��u���C>g�Q�،���6�D�{v��e�r�6�iiWO�J�m4"Th�̰6'�e$�l~ͣ�5Yaݰ1�ǃ��eWF�8��Ȟ�&�T����7*Ӌ�0��|��J^Ɲ�l�>�!6#;���5�;%�)Wl���i?g�I���f�8�l�H��+��m�ͮ��݋�$R�W����4���7VmV��S���U���$S��>����/+���e�w�O�Ӧ.�k��Ʊ���_�#�?z7t�e�*ɷ��̣e��(�ȣꌫ]�����������c֭�ɿ�[��~�ʘYȸh�'�)c��k�ܧ"���s+F��ƪ�|�����u2S&��Bt���\�KɸY��3���_/=�1�[��q�/��u��~���ޔ֟P������:oU_
j{c|�f:��5��s��\�p�bi�T3%�.R�#@�0�<vq�s��� �˳��Me�.������™:om���r"e9Ȧ��W�p���������>�ssiqdǻ����c�3FuG�(cfUbd�rJ�*�Ѭ�!���[!OrS��1�&�y�M��-N2�vֲ��^�Ŋr-����Z��ۗF���0�suJ�J�=�Z9Ra;iZ��[�
Lhb#��;y�B?$����E��3�^8�{���~#�u��s�mj��+ٝ�Vv�w��L�jU3�_F޺�m��Ӟ-��r?ч��uJ��u$�H�� !�`�u��|G��^�Z����]�P���a�{	����V����KPn�d�-���M�������wex����݄,�JQ��-6?�c���IJ�S��+N���+?�cc�X�EhJ�'�Y����l�>ZVOn���ѕ�bW��'O�߲ܩ�Sg8_@��t�_<���>=�U��E�6Z/*�UUf�D��l�8�����q��*����K9SH!��i��E��hN*qܹl�a5�DQ�U�Wu�?^�ctϷ�EN��.��V7�"dYZd�>c����wJ
�VP,�(oW/��\|��Og���5��$�)��l�+�>I�l�X_�_�,�Դ�:G#�y�[VS��S�/n��#���2��x�'J
��ӊ�R�ܢ Ĵ�5>8�g/��/�I�s h#��ק�&��a�}����b�j�m/�lw���h��^�+��9"���K�ܖ�٫����:5u+��Ϧ��4s\�����]Z����ҤkoZ�M�{�[�ح[���k�_|�K�[P��
k���
���7��1�#|?�R'��`������t�i����V
a����*��F�
�04�n;���bV�V�E�6�4
6'�`�Y��o=�V�J��5�d[�������p�5�Ym��~��<q���l]1���x�58}A>U�<kۄ׈3p��*`��rhʷ�^E�`�Ơq^�����w�x]B���8�3mi�t%J��9lF�rւ��e�E��P���`�[�)�O�
���̻߼�Φ��j��j�������޿�jw1�IUB�k�3����qb�A�R�0Eқ���lU����:�Ռu܋P�<��ؠ�[�B^�p�^88�F�j��C�R���=ܜ�/��=@9(����mDV�fZ{�jE�q��6��I��v`?����da�y���.��)1���\yƽ��2Uc�@��W��e"�nK�|����?�iw>G����.]��n8�}X�c>���'K���6�b5:U���1˅k�З�,�mM�6�o�3/.�k�2����6��6���Q����3�.;4�ͻ�/dv(�f]���}c�}_e�ET
�J����4y�H@NO�#�s�x'Kr>u���0@ZuedӍcs6f�_�1��c%)ƾ�8��4�5�=ک����¦f�8��s��뗖��%Ǿ��sr+\�׆���d�J�ί�1T�aU�1��j���sX@���#�c���xd�����nays.I(�0��M�Rj'(n���0��b���A1�VN���"���K_��Q�?:�1lJ�p{9�
Йcs`"�������bv^�2�x�r���%���m�ok)�>N5�([U����m�j��ޖ�1-��Ë�6k�U����[W�$C��υ���Q���E��]؅Thc��IV���a���4��!�b�c�#�*���<�_l�9�	���A�f�?2�]N���lE���w��~;R�*w���ˋW��{D+��8�x!~��+�7�-5�z2�`^�s.��3�l�j��k��y�pQ��R�k4�u�7����K?���'R�乘Ǹ�Z�Tb�
�(-[r+�����.��.Y,�D$ϑY�[	��a⚅Ü�"��י����,[8�I�Yoqњ����V�p����A6d��O�>gW7ˤ����/�w�a��w��q������)۔j�^q��bT�>_Ӫ5��[[�["ݺ�^�7������)qp�{DBףF�q*�D>b+!hm������8��[j�T��<��R�8��ب�B�i�E��}��k^-̪��n��彦����R��Í%9)<i���n��.�7�]�E���S��+�H*�pٮ�ͶXh�>9)Yi�Un��W:"/��_1��S�~a�m��]��Nj6��������4�6
�9���͉��6|��B����ڃN^����ۚc^�T
i2��Y�71���*$�B�G�	}��ʲ��NEB���0��UA&��k�*Mr0Of���A�>�#[�^@?r�j�ॖT�gH�b��N��ۨ��I,]ݙ������3r,0�7ڀ�N{�a�������96���˂Ή�w�j��.D�9�/����dB"rk:�c�4euG���[o�>M���~[�U���{��#��*n�ex(�3/�үU�6�bِ�R�֒��/0�JT-�Q3�v��������xz]X�?��ԉ�SA�7���%��[�T�b4�H��"۬o�n�@��1>YV�/L���.��Uv&U�H�z'-%Os���2_�TZ�
6�/F}�Z�frV3����ܳNL���l�
�^kMa��cpk2k�҈�cVm)`���8\\a��Ƣ�����g�!j���ɏN�VH%@o�;��֯@J��>A`@	�Y�"���xU+�+���nq
�i؟%�)��<���F7?5�l�o�ᱹ��I�x��Sc)6�y�x
)ճ�I�-�ې.�c&1M�E��ԩ�<�OP��
�%��gP��P���ɭj��'�7�g���/V?Wuл�;��4���jZ�Y�]�ܟ�����@V�<ND��w��إ�R��N�OD���J���c��=m�Q�w��,�'-=��8K���Gޅ=9�;|~��%8�'�f@
8[�S�c��m�#}��L�~s��V-�
�����w�Pjw`��j���a=D�;�+$�a1J��I3��{���a�*&�����/�<O`L����Q1F�|e��.~�����43��|Ea���<F���u����*��u[Z{�k�����g#�6�0W�S_Q��3U8λ���U�Ʋ�ͬV7�I�K��o�o)�<�Ϸ�ܡk+�O��
m��x���b�K��}Dg�񜟵��Bl��.D�/�>�@����L����`Er<B�W�}"&}6�����������{���Aj�r�Ս��'-�RvO��┴F_�q�����ʀ��>�WT,���}���O�)�{�i��ĺʼ�9�� �d�l�d��u7i����\^\M@�Ĭ-M}���7$�H�O!9���<��ɘ���f�D�Ϯ�"���)Y�[�ql��w+mNOOz�ZN7O։J�A�fB��jG�Y���ԹtGX�2ⴵ��UX2*a�����ʨ����L��Lz/5�t@:p�v�ݬ�vh�|{��
<����|�%m���+y|���&V����F*�)9���#�:�����9`DJ�U}6�r�S�͂�x�5u��c���R�j���U|����M�3\底\k��yZ�Ԣ��cYWfR�1�JJ���j�v��w�s'*�,��]j��¥Ȫ��^���g�|X;����}����J�K�r��~;������t	��'��E�P��ZV���j|5���{7Vaj���̧��a̺��Xlh��UT�@�Gj��ܤ���j-(T���lN`���E-V�8�8�.��~r�Km�UeO����-z��;�����@_�ߴ��9����	�KL�9�Hm�br�븕�ƾ�ao�`R�j#x
w��ǃ�鰿}/"���ݜ��,2��s��E�`ng(����N�*�!��8ɳ�\�ԭ�09W��q�H�W:��-�j���k?��5�Kߒ8q��ݎ
��������
�q�-dN�����)U�I����]����j2�߆��[J֕���.�,�
UF˘F��<�C��
wo' ��6,sZj��;�����
�1��+��3��j��Y?Yx�\�Ƽr
b�k2Tu�])@�ݬg��5��X
�vCe^��v�*I_"��K#>���M�`�n/s5G�)>b1�v&�_a�y�<O�j+q>[��]�6�_���J��L�;�ߒy
i�`n>"l}��~5���>R�ݬ�5��r�TB�0r���r��ڃ�e}��v�����,�&���m�|~;h�>+&��֝V�_���K�w4L�A���.uݚ��m��H���P-}5X�שˇ�&/�,l}���g� ��+��r�����1Z��;�g+Dȩo����w���tz,ģ����j���\E{;���x=>�)/W���:W5j�V:|/�iWƬ�2z��:�-m��
��S��EЮ��2g���[��v6�5e���?Z���5���4㸗R>JX؍�A�Yn��������ܣ	/Nek�j�d����Yp=�����J�,􊖦,��ܡ���<�B��r�X�0RWU�+í^�]yOr�]�����Ǹ��cW]}��"껉ڷ�bc����N?0k���fכ�s*�\���ӥ��?"l���n!�6�B2�~�)��QO#��YSh��=���Y�ov�u��?��-:�o�PNZ"�[�B
j3)>���*XW͖�j�mm��Ἴ|U�%��Z���an��ɭg�R�̌`���)n�ta���G�U���2��� ��~ť' A2�Bˮg���˚�D���9y)�[�n�_c��77�[OD��_�o�����V4�=��n��}���\��6�+g޴��
�OOJ��(KG963s��72됓����ķ.��9���Z"Ա2j|�@�ܼ�yMB��)*,�c��nVz:	�Ȍݴ�	���#��l2l_��>U��a,�)2���Rf>���A���M�?��.A���F�
oI���*vá$�e�Y�w��/ v����*�r��*��mNk�Ƭ���v%5�v�-XPc\��5����J��|V�^Gf�-��8��!����=��=��o;����歀
�?���,�����1(�cv�pvGdQ�������O�q�v
�O��F���P��a�p�Y�6@����[�\�k���3�A��;���=q�ֽv՜����3>rگ�xO�V&7V�x��*�yWm��r����>!1A"Qa q��02B@PR�#br�`��3C�c��p���	?�A����%asp|���5�%R���J�[_�����������/����-,�8+#��{����#+�׋��;�4������w�7��T�6�j���{��������?ͯ�?���\4�Y�õ��~�����!^�_���Z�9x����_!��?̿��/��:~M~j�_�^61���|�W�[�Z�b�E���i�B��L["�JI�����k�Z�!qBb�RBԕ�di�#B���?�N�‘V�A���>�S�j�?���6>���p^�Bb�!x��_%|�����S�.�T�l���"J��2���&�tEP��!���8�K�����+Ƹh!
��Ⱥ��K�OR����/�W�h��Oǧ	�v1�ױ
���r��~e~���o˿��]�f�U�5Bh�9�d:�k����\P�B��ή�/�5��è�c����BV5%b��"�%xW����,�v嗅�#��CO
���_-\_
|��F��|$���c��q��̺�5��\��*���忔�$*�OT2�D./�?�?���5�?��o����c�+�H
���_�1��?�d��I���,�/塏�5cQ|��pv�~����\5���@������c�$����b��1�c�Qp�?ȿ���	x�����n�������W���j^���K�ɱ�}D?�oŏ��/��>+��V5���B��֜�^
��aqB���?��k�}1�#	.��J�t&�F�<U���5�P�./�?�\_�	���|��/�Aۋ�>	�(*�e��w��%����7�~&;�	�m��D1�c���c�>��̨�^+��S�p\��x�^-8W��Qx��.�>\�|��)�Ƹ.◁����(B�L~�C�$��/��i�߉�O���K��o��O	G��<ZW��s2�>�B�x�G����h�h�b�1`�I�Sz#-<���՘�,��b�O��S.'�c�H�v%�ɦ�I/_A�
��6��9I,��Z��3��}*)����ur�{�-�}e��V�G����.:��v}MpҕC�4!�苨�[�5�t]LU�cc.,c:�քff+rIS��%��W3t�1�.~&?c�����iUt?mK���G1%Vt7.����z��6�V%T��e�������jI���iS:D�K�M����"�z�ܘO�>6>���3
U2헃��_�n\.PH��;��وʷB�V �9)I�ĝ|��ݣ�m*hFY��s�r��Ņ�1T{Y���	�u�eᠤ+�d��_?��5C�̓����J�jJ��;f�Qҧԙ���gJ�]{���|��wkZ���Aܱ*z�����bK>S���J�[xQSrQ[�!�5���͗��W���,ë��R��w�y3}$e=��ة
�$�-J�؛\�&����أM�!ɢRKBmǠ�z���fRYi��d���H�hk%Ū�V��N������r�F&f�F�b9jb���H�sp�x1�rʥruc�7�B�Tԏ2V��z�	?A�3���a��5�\,:�o*6F���KucU���cʎZ�ɻ��W����n7R^½6�X��;��}���Xm���4�T>er�L�	k�'�
˭Q���?�.�*��%��E�q_�bQ�)�F��#�aW�i��K5ԍ*�?�F�$�0��o�N��E}���a�r،����*��i�Q�Kr)���0+�T������U�SI�U��Ŀc7��Q �FC%DsJ�7*7��ϢB|�h���aect[T�^���l/�OB����>5�6���3�l��m	��=G�h:��_qU�$P�	ۄ�]����:����d��f�~�n�%��a�����Y�㨄i��3P̓��U���k�Z����*��
K�H-D��T>V?oR4�,`i/���O7��R����������0?ژ��`V��r�MMST=5=J�u�>����;��������ض����U��k(���zX������7ͱ?s6x�\5Ԝt��Z�$Q
\VBӆ�o�Z>�l���3�SǡX��1\k؞a��c�Q���_~.����NM���z"%kӂ�b�]I�]4�C\�[,.���f�\r��K�!o1���c���'�9����J�;Z�ڢ�YJdT�0�,d�ڂY�`�2��`)N_Zdf��ݽrh�j���OwA�[c�����Ѕ���\��0�F芹\[��H2(�j-
�ffB
-ن�G�^��=K��:3
?3?S
��NM��Öz���k��W�c���a�c�41	�;��Z�ӅM<v��FW��A?2���=D���bR�r��җ��CBw�,�.}F�ё�!҇�+��uވ�o�_c�'~�
F�!(�'R7���w|d1�������ݏܼFbE��E6�a���aƣ��o��QJ��}h|6�|>j1&֣�	$NOfJ��7�'E'��-$��>m�M~'C�SGJ��F�C_�aƴt�����
5��+Lz�c$>�s��*F��4Пd*5����c��C�$����!����5o����f�!N�S�!*��c�e��J3�'��
Tu*�K�w/ۃ�]�J+ɔ�z�ԏ�����X�h���Car��4�j5�P��D�X�k��4�0�S�~�F�Izhb��u'��];�S���~��W"M��jt���ٗo�����F*�����U�y�Ż	�mh,K\t�^�i���я�:��������W�c�I/��z�ޯ!)9;�su��,zU
�jǹ&�j�Ť-j��mSjkڇ�3��=�0'��yc���Lrv%�U��T-N�n�*�u#�BTD)�ֺ��bq��]H���Q(��#�Gr�ԛ���^�L���
u0]k��e�pD.ƋȊI��U�8?�C���&�6!B2c����^�X�7��hK�$�Zp��B50�~�|�*V�e=LX�#^��V�7�"�=�i˩8S�v%�בX����vF5[Ԋ�4��|�a��o�N*���!)l�z����)�wB��Q,D��M.�ӊ�鹋,���BU�S�%�C�g^���\���IEG�4���$$��=73�H����Q�W� �����r�fщFE��f;�C��%.��eE�O��z�S�'}�`�Vden�{>��7��R\��cT]���֝I������o2*�%�,�S�xV��)��4Y�ZnF̃dH\�Ws4�O���1*�д��¯�0�Z����QR����Ji����W��0�xB�r�%C�%��,��.bif՘�H�t�T�����z�՘r��S�f
'ݘp~�Uw0��FU��5;�|ћˊ^FU�?Ɇ�4��'Gܚ��G�JI�d����I��:=t��W̌S}ȶ����&����S̄�9˱��U��%](J~��Lnd��������Ń^W1��'�^��ւ��2-�5�
��Ϲ�]���K�:�p�!7m	dRԚɢ���H�iI��%y+��z�阖���m�װ����‹��`Ezo�k�Fd��z���ıhOy��v!w��h.o1�=h/��&H�1?�t��nW�͘�z�P��?��J�sM�~�
�S��oSGwԉ��(䊽�.j�>����$�GBU�N�U]z�%J��*�w�"C��5�;�S}x7��j���
�Hנ�>��Y6��!�Ì��]h|4(aF1}(5�AWȋ���
SrL�m=�£�mt)���Q���B/�R	I>��L=?�N�$gq�#;��#?�	���J����%�X�H�8Dr��aOʤi?1��S:�fb�w�<?�Dp�C�d ���0շ�����8���1GΉ5z����Ri��ų��1�'5�!�c�����({i����ş��<�y�\*Ԕj���1��I�t�&�ђ�ı*�GB�2��!jz�j]6�bV=	j�&�'��f
�^�i*']L'W�^�Xmh45�TjW?��D~��ԩ�:�Ae����	�HU0�r6FR렲�\��AɕTݚ�
xQ�*�FO�Ò]�4��nK^
U��GAR��^åv*�'N����Hۨ�Iڕ0�]u}EZ�5�Y�v&⺴C7�#�Rښ�����&���RYu���+�h&F���
B���R˫�;�F�-�:��D�ZT�f��ϖԡ�^�>2�ެC2���E�X�]�.�q��QV��i��!l�W�V:�bWܜ�կ���^���\�b��JJ�G���C࿓��T'FiA.�#c7� �1&ԝ����$�l��f�K�t��gӱ3_2
!����é%.�-$���m�J�����HĨؖTF+Z#ԋLt[��b�0��3��1[ԝ�+��(���F�D�#���W��$EHj�
w9��>�4���Ҝ�r�Ē���I�d�X�ߡ����v*�]D}/z�;��
R��#*u0�Bd%^�I_Z��wl�§J��hƄُ�>)T�(��Ǔ}(bbT��g�E�=H�'���p���]��3��sa�$����r_kC6���F�Fb(��$�ʾ�Ȓ�������&��#UOG�(W�5��$����BR�������}Isl�z�Tb�ͥ�>%���O��f��i��ɹ�
������^�6D*��RN	�o�Ҷ��?�&����~��+��`��Bm>��Kc�{�H?4*y��ʶD�u���Tb&-$�v�1F�G�q�҇��ژ��ơ��D*.���Ο��i�%ʶ5�n��ԉ����\6%����Ү�$�9{���ʎZn��F#�ꑋ��|KO�f#~��3rQ�Tz�Q0���a/��Q�N��F5�����Ķ�s~�ȫ�dF��1���"C$K�ň�
��!�mW�x2J3z��Cy�uJ�
���
8���_���Y��Z�Ɣ��E�QK���br����<�(��e2�n6��7Ssis���(����Yy��T{�.����*��	���eU%B5oqU�J�އ�g�"���O��Vǹ$��'bm�J��+�Zt�b?TMN�QdiV�j���D�:z��Vc��*N�yI�����a�Bi�5#���݌F�i؛MkܝcӃ�#m�c�R���I�&�"F��Xp��n�%/��1��|!=���U֛��dH�����Ccg�B���kK��o�k.��E�΂���FX�D��5����lE��UЋ�aG���b��BO�L'�O�u��Q$���zy��EO3�~f,1�kAҗk)��a1e]ksT2i*���>I�G�~$����$�����:D�B3�p���N1�f��*"ש,Dl�1)R*PhsHY��Y:TU�Ȭh�b/RU�d����y���$Z�uF#Ly�[�Aѽ�I3��ܕc��E����Oq֛���hu�mܢ�O�9Itb"D\4��1�|UhD��%N��~(� �"�D�'[!��BT�T����\o��g�י�
�#
$ц�"(�bIȇ��v�{�z�c�[�4��7Mla��TUtT�򧹈��Ŭd�+��O�%5��D��ܙE�~�4ى/q�k�z��bGS?JD��G�Gd?���I:{�YԴMs$l�	F��KЎ�~F��Z��1�v��+T���Ƈ��[�Q��*��|5�I1/QVT������:-�^oQ�4��;����B�!���\�q�Ã}hr��0F#��dkR4!JR�*���5�bF/��Xe��Ǐ���FgN�&��	+�\�VWNF[VW#����DK4ڄ�:��\��H�YQ��y�E��)i"���l*��K2�pf����*R,����wn��,���1l�f.i�D+fT���Sw�B�*�Q!��n)�"��hm�C���o �̖�t4ͱ�Hď���s�,—�WF,��5%R�u��z�
fd�є��Rxy��0�?�f�DJQf'.mGȊ�޴>XåH����;nb<�(bU����Beӂ�CB�6�N�l'{�ש_"7[n)uB�c�^ģ����Z1���kؔ�U4�ݐNjڔCY�e-QX�?3+z\��ϴ�bE���P��Y��3�漢�)u���`B�V("qK����^�4�:��r37���L1t.����R�)�V�~c�$��W�‘	eϺ܆YyЄL5�г}f]�v�v�}�V�X��:"NΦ�U�����Iam�Ft�Є��Q��ǔ�;)N=��zH�H{h�Z葥Wq��/j1�Ʃ$F��46�'Z�+��R��Q�1��P����%�5}��d��͹:7�5S��O��U!����0ڗG�+�Un�d��f��:0Z~DT|�<<�l,&`D�D�j
����1nbV��ƮF]�9Wn]
�F��_�Cî�'���"N����g_�!��BaF��$�%��C�0�
T�c�#�%Q�N�d��LeD�(2L�)6BB����
L�}��-�!XT~e�T*w1�}X�PQ���78te9�����z�2����#�
>�'f�&�0�ۣ?uRrI�WQE��fN5�ɷ�<���bR~��z
��^WS�ԫ�L–IF��ъ�c���â#g���MtD��SM�j)#5V�v�:5�N�h�+\ը�����������fYy�����'�5N�1��Cɘ���"N$���������JRى�2x��O�dӡ����.��*��/�N$�Dک�6�ED�ّ���R��&1��%+�"-K���Ȉh�&9:���+DU��=LO��J�]?�0���D�K��K�ZV�:Ѕ��ܮ&�J-4�EF"U'a�"�Iw!Z�H\�<جCK�>
��0'���I&��EF)�$�%�q�,(����?䚖cyz&<Oq<�J��Ws�ю��߂�KAr�W1�
i�Č���􎬻s+^	��q�X��"�-j��T�h��r�RQ'�x2]�\[q�n�v�%:����d�Ժ$5UЄ_�0��ꄔZ�T�i洺����:�qdhbқ4B�DJ�䆘��!�Д�٘�%]Y	�{���dCۊ�eD�6@�b��]ˎ�\�tF#�%t��%�R���L=х�!NFF����	�$��I�ԭ3�R��8���lW�
W������
��5�Ia��10�$�Li\����(���g�6��GlBJkUS��0�4g�z��o�M�#��
9-���9�-�O�!G�l�tF"�6����0�	:j�a���jġ�K?�xP��1yby���Ti�H�b���4�
؊\�JA܆Z$���sI����R4D�����.���꠩G�D$�U!�b]ks�$�V�c^�\���e�0+�ձ/5�T�%TY\]Fb�?1���3���E7ݔd`a:�N�ŗ��:�$_�$+��P�p�C�cC�e(�+�CTa�u�lA{�ߋ&V�l'�h����8S-���A��W����*�+	/A��'l�I�0��d�W�*&'�©�awL���MhF1�����#��Q�'M(���1%�BO�D�%us6ք�Q^U4صl�r�$��{h=Isy���̥q/�'5�bf������O�$N���$ba������Y���M��;-ψɆ�m����E�~�8����sWЋ��R���r�������sQ�����z!
��0�"��$S�4ԝ*�FU&�P�7}H��k��_�бcR�~��eRq�L�*b/Q�:
����9�JT�eKt%	�,Ɵ���q|%rq���J1ls��3��AKɐ^ƙ���޽GJ�BШ�-�}ƹk���'b�ʜH{��t�a���F+��_R��jHu�]ď����!e1�S��r��v��J�,�-�N�l�Y-W�bC?B��)�l`�C��Aa�dщ��C�`M��8�v���r�Uct�����+N᩹'�[
5[��W=l%_"��[�AM��� �ܪ'µ=�U]�G,�ƴ>��/aS�
�|%D�����:�fl}Y���l_j&�.��`�>�
�T_�{�)�,9t�(�.̅�������"a��<���
�,��JjZ��8Iw>
�Dd<����NqDԼ�n��R.�U�	��m��K���X�Z���	W��VJ/�C�SQptf,���1[y�o�#����������7��؅+�Ŏn�!%_3��uJw!���9%�J��FZf��IN�0��C���j��E�7�`K՘i�R�k�Y�}�u���q���+p�D�����ه�+T�i���u��J��D>\V}.ȕX� ��lW�r�l��iQV����I�7_2V�#�X�kQ�!V��)�5K�9e�>�˾�t�@t%Zu!c�")y�C1���{m�#K.�q� ���0Կ���&�Q��EIj��S��sq����*��c�����
��;)nS�в�a���.�5weH�S� ��ǯ����0�2��%�F5�r+�f��Y~�Š}['W��Q��i�t�x�6q����z���K�#;�y��(5},}67���oY���0�
���z13S�Z=�nR0�a[�4E��kQ&��o��<���<z��=�?ؓO�Ƅ� ��%�S9�ԏ7CߡD��EŌ�hu&�ܝS�a,D`4I�4I<�B&��[0�:mR"��M�]A���R0*�?s�D\��"ɇN�qc��UW��V��Ɋ���8Ijb/#�.�����)A��hh�fW��_�Ӌ��ʍ�ӡN�
^t��|D�\G�f� ��ۃ�8J>�6A���Ü�73"OJ�P�+<�!����"�9_ҷ*�2�Q��Y�Q�v�Tx/��+�,!w/Qjr��[oV�ԃ�wD'��ܜZ�5Y��vۃ�[�T��%vG��:�o-ƝeO"i��Iեv��$�z!�9c-;�I+�:���d�t��	Z"�LEѓ����_T:ӱ��>^��a��O�Ŝ��#Gȅ�S	����n�$�Gь�v�C7rn5��Q1�����&��mu��xi��nY	?�/CAq���0O��	�s��Ú�3-���&�)��if�^�؛�3P���C�\�7�W0�1��A��b�Wf���J،}X�|��"2���;is��#�*�u��H߫m���T�6{���Mp���#j���RO�$�"�+a4O4:3�m�h*(�o�{աdR�ya�\�.���RC��F�*Ϥ�*�{��S~�+�\͋�uџ�{^�;}�M3h�#S,"7&�ktHq�#a�ɓ���iR��j�N�Y�N�Wꇙ	�!�*�1*����Oѐhc��)t�ˠ��BW�A{�R�[0�ﱈ����J1]^�%�:4��d�R�1"��0���ŴF��pԺ���#�L��G�U��|SM��Ċ�hn$�}E�M�J�RNQޅc%��[��(����D�Id����zT���x�b����]�N�V�Nm�a��RM8�0����:w�!Ѓ�Z;0����Nsz$>b�{f㻠�8�K��Y�iA4�b���4����P�-�\z�Է
V㠢Y.���܌Wt4�MҺ
�B�GΝ)BN2�ΫB_�>�k����4��A���+�A5��c'�hK��.h�Cn]L΢�d���x;l3A՘��\U}�D�'���bĕ|�L�g��E����-�l���<�G+1d5E�1��cWМ�(�{�I��X���֭�L������IN��[�^nR�
�q��l;�SؓDgmY���#~��b����Zv,���G2�&�g��k�%�,���y�%^ȗ�}%��r�PVU�p�X�w��rU\�q+��[�˫�^1�
���F�����5E�hh{�eh]=�Н%�–67HMr�ԋ��]ۆ+�%�
_�C�%D6gp�R����ka�_-Et�#A߂u��u�{PJ��1��ؓ��&���|M��rhƅdٙ�tt0�b(�3!�!��j�I�ߡ���CY{����W�ԃ5��I�E7K�EB1�KX�e-طu�Y�S2���B75��%��R��BR#8��*G�_��inW��0��,�BT%b��#X�ijy���,�Oj�^��4��b�⯕���sM��Dut�|���ŕjW��D:C0��U0�)�V]���sTQ�}OcQXz��]F�o3�FƯbIUhI��J-΃��!$�r�Ɏ��χB���4}�N���x5%�Q4��a�	ىž�V`��˛-n�4��R��6�'A�Ϗ�Eȴ^��ɴ���lԍi��O1Jo��و�D��<���b�R{P���&`��$�(Ώ��$b?q��&�<͝<n$R航�V�eد�a�&���9�Q����KZ��R�{	�Oj좍	���O������[�y�UI��;I�MU>��ᮅ�A��W>[�!�U���SB��֥�G�t���Qߧ2���*y��hGbn3[2JTӏ�'把�D��7$%��2�ij}��У�S4�K#�H�-#%.����|�TM��A7�	(��‘�#F��l����u��G���MB�DCWJ�`�aɘt$���҈��eՓ��#��L5��Zn)�`6��lU5gS�rਉfq]�YH���"�4e.�ɪ�t'[y�or��29��%U�hpkțe�E��#Hg?�R�m&�i��}%L'&l�x���Or�&��z#��J�q�p^�˨�Qh�B6>��0�#Q
5���n��R{nK+z��ނ����
HV���%�χ�b�V�RҮ��9}LiP�{�>,��v-^�Sz3⛒��r��_sFjj��
6�'�Z�0��)��#T����-�pZI��d�;V��)tF�2@U�*�{J?�
�zP��%�L�i��Q�z�H�v!GZK��و\��]RU��,��J]�(��"RC�=�q��:ȫ�n>g��KbՑY\��U���A�jΌtRz�J�xG��W~
����.�4�{��GN(�qe��^�x!�e��1b��gs�z����Y%�^����ܼ75���8��T/�̉z2�K�Ĉ�v$b+uD��A
�����ވ��LNJ�'9�܄bH�tV�
w��s:6N	y��;a���t�0T"�����''���v&��,�u�2U)�:��&h��荵��QR,�\��VV.ܬP~��[��"��#n��-�p\"�,�*��-aT$��/�u��f���_M]E��Tj�GӪ��Zn�Ư���e�\-��-��ZH��U>�)�\iN�"�USJ�W���SBN���^�WC��t��D'G�4�z�+�>flb��eY=v$��aY���{�NT7ڢT���'�&���w�x,�ǔ���m�V>G�5%��&E��Qsnً%�`~#�J�ɨ�^���\�.E�D�Ӡ��h��8�-���'QU���Ke��셚B��O�ވy7�>��ZKQ�a���(}����=jQ�6V+y��q�ɻ�V[���L�q��w%�,�6Պ�7�V�5�[��ьV*.9��GqQ�s
P�!4ʜ��I�?�TE��:��F��N��w�F�t$�T�xW���О��հ��Kl7�aj�W��E��i�i/3"�!����\���9bM�aΏ���������¤��C���y�9b<�|��셙t���h�$��ƤC�3�BC>~�rE�9������4�Or�b*�f�S�LJ�+�/A�uco�Sh�d:����+���u&���T��/�1^Hּ�I(Ɨm�5��-�BC��<��T�s�(�S	��/ħG��I�i�6��Љ͑��u�'ͩ�l�dn����*�jRJ�%��?i�5]щ��q8K�1Vn��9m"Y��|�X��I&�}�xu��ۋykԪ�?ऑ�]	2N�]�Sn�\)����b�O��s
�ZL�_tb6�c��}�Iu#9$��<�th�i�c����Un&�A%�%���J��/׃����.��7�k�T{
5�Dک*ћ�f%��,�:"�BNSb� �g�.�YP֢��4�F��6ga�TULL���?�oI��9&����lsE�7&<�;6a>�E#Ar��܂�[�؍�A�Ȼ�^B�5ᨬ��T{
���-A����wj¦"���a�Y����JR�Hƫ�,N/�I�[l�GФ��+��$�c^���W�2���o���V��䔪�0R}|~�ZD�#���6(Pe[���u�I��������(��rRƭ�EEP�#��*	b(�y��(r��9K��8{
`C�H�o
�(�Nûc�<�(�lϪ�}��d�T��b�BLw�E���H��-�L�bH��q����[l�*�i{��o�,�{���&�~�i��Gש��X��QҶ%l��U���sj����}#ro~��.QI�[�9h\n��Qs
U�O��.�=�:�F��^���H���އ�Z�9��DJ2��1r�?Z2��c~�O��k��5�;��F�I,�G]�x4�jB�Zؒ���ҭER�M(nm��$[-�ɺ2/>][����P���E�]�,��Vo���ˢ1#���s�s�ُəe{I�n���Н�7�AԲ�A�Di��
����h�j���m��3j��Y/�z�5��+8
��J\|�|%����7\�#�5�C���1EKt*I��|�dh�$M��vC����
�:a�q�+�P��$S>�����!���o�|"�<��Y���"�U�t�	C�w95��u�7��:��O��J��t'�b༘�eQ��q���˅iЍ'�뎤5��M�fa1i�	_bd�Ѱ�Eq�!���\8��lO*%V��i#R}v$�-�?2��!_2�Ћ�}��1���NM�z\Ėy���)l��Y�HEŎ�˃DTEP�M�bt�wf\��n��%��I��_B�G�*�*�V��4��sC�hFiW}φi�]����N�;t{3�Ļ��J��X�47*�ч��Bq�F��}�8�-�zQR˩��'U���ߠ��J��V��U?܇�u?�9��R�MJˤ�F�_�&��X�n���:^��J�z3���xa9G�X��YG����;����Ó�o�L�Z��-QU��VM/"RlV��g�aK&�#�����
��(b)�TqR͕U������Ä�j����Z5 �mds3n�
�r����6�I+Qp�)$���{u�}t�w�*5����\�F�'��zȷ ��z�e��У��O�ԍ�M�Q,�D����HB/bk3����WoB
��ܬ�P�݊�d�a�?>�������^���Ջ�|�5�!	�	2���JJ���EN�&�Q�NZ�҉�k��d�fQD_�%�6����5%*_^
f�G-�AqB���Z0�qIi����AG2�4��F���U��(��D��н�2F�
̷aQ��&�G���x��Ƭ\ڢM��$Ŗ	R���ݗ�F�}�Hʿv��5v}yh��7�빇m�..����:�^�B҇թ�9�Uqz��,�p�j�7Y}̕�љrSTB��I^�m����i�u��^�*)���Qޛt�Iyq|�r,��V56��d*�
�5�JP�J�,!�Fb8�l�K�ÿQ&�YN��-�0�5��B)v���tT�z�h"���I�|D�]	ͧԖu���
j��J�]Y��U���k�ע9QvY�!Q$M��iׄ�����(���7���NߴM=Ŗ[T�'�R�D�u�!��r��%�e����+/����(J�c�WWUz4#wŦ����Z�V�\ԕ�,�g���5J	*KՊ�&�׃y���qS
Y�:ֈ���M�AB.₥���,Z�������f+)P�Q�z�I�}bR�҄��81k����T�$)&,��fh����Q;�d�D�2
p��$�G��hF�OV�^��T���pՑ3N,Jq�rʺ=G��+��ԒT�Y���.�f��zDvON�5��+�����~�a�91R���NVٛ��|#�+��\��%�\�a�CGQV���g�����C�ٵ0�p���+Z���}����Bz����VҲ��+��S�xp�bN��]v1�^j��"�Ȍ��Wa�J���nޤ�O��Mk�j�E�!'�_Ri<�V�Z�H�e�j%�	���4��eԪ�-~.��V��v�U��a���J��0�|��S.,:™5m��$�aO�L�l�ڼ���tb��5>���2�)�5%n�#4�;Ȏb9[�������\�!r�z�_>	���-ѥx=b*��ekeB�9�;�x���j�[&?��婬R��`��:j�Չ�:�IK0��A�X�m/�B芊�?�ݏ��B��Q+�Ц�470�oE�N4U�$��F�j7���Ld:M-z�5-�W���=в�TB�ҵ��b(��C�Gz����V�YԬ�a�oY"_Xҡ*�2{��Z�&���7Q��r��E�bᩱ�����χMuD�
Kt�W4;w�*�q*!Q�̛�k�Qe^}�3�eѩ��
Mt2'Ѣ4%Wы+F��&G/r��)c��XȒÉo#o[R�"�D�j�x��n*�N�VxkM�gŽ��]K5E]��\Z�5�"ס<�
)��˱J�!gv~ۈ|���>���44[�nR�ͼ�}�Mh�
���C}���KܚO~�iK\­*2Jר���s�q�Y(�3(b33��r�^j6=6��;��K4�d.n���Z_���U����[O��AQ�w�N���v5cMw-�d:��&ЇX1�3^��U��G~�^T���i����Ǧ�^��o�ՒUz��Z��,*���;�v-�NCQ$ش����妵+��LE����W/��s߰�-�	#��^��e��H��Z'۹��+S�a�6|�	�塍�������Ͷ��{�В�Q�4~��'*�1+W�5X�KԭI��B])��')h.u��!ktE�Ca*u.����BIB��3�YȽȾ��"�ަ,�OtQ���UĎ�j2Վ]�*M�y������^:�:��1*����Ne����F������Ѕe��WN�ǡ)I��UR�A�4�nF÷Bn8�V1�Qӡ~v�~�>���9aՍUn���"V��(lslUP|?z��A�]����^�uH���b�-��Z��rU�鱊�2�G5�Y+�t3�����Z��w[�g�eƑ�ȕ��S����>��e<�}��K����kN��z��]����I�tऑ�GO��ʴkRVZ�_n�{���H\�z�S���X�Y�9��Q��f���1�}Q�X���TmhTM��A�.����������#$���l;
��+���{n=�kz�M��J�o�.r.Iqˡ����߱<�h��$!1AQaq��� ����?�)�0i���1��?M4��
4�c��p����S�D��S��a��K�Ӥ�Wܡ�ȋ�B�rN�K�e���8���`�:�r3!t�[�!�3E2��pP�d>�\��A�l�N0�p���qk��<4�0z��Ut��
�W',�6�g���˨c��[�Ê@���ʈ���uڒT�@DG�	h�j�t�U���T̹�WOK���<�e@Hz�_u@�9�gf�O�Ɵ���c�1���i���
5�t�����#��u�q�N�[�����L9����"�x�R~�9������-�G�}�,>�t-ʹn8��a�e�J�i�.3ɮ�u&���yʃ)��+1�S(!P� 0����)zq�w"1slvi7�����ϣ_ a���puAo2�
×)S�f�N5.� ��[�B�Ʒw�+W?eK�@���8�Q��\_t|�
CL!��o�+C��4`W�,`�4�B?����:M0`�ٍNQ��T��8���.j{s�\8�����)�%�0K5��!�*���L`u���0�0���5\�rN:O��#w`��p;[�WKXs��ɹwL�BfA�~�4Dq���G�B�������+��SXse���16���X���b���5�:j�
n����hc�=n�Wv�[��0�gN�
6�f).-�ф��4re2������f�O�i���~&ћ+�����j8\	���f�ẖe�9X�U�t�,�@���R��OS�2��ԓ1\Xv���V_˖��c����"hkRx�E�fwp�#�,�g�\�B�e��7����Ü��_N���S?A���P34C��(���|.��m˥��uw���7��:�&1��\�b5�)�?��w��<����SN0��7_�˫�c��h��pL���S,pB_Ʋ�ؘ���t���O�OW
��r웥ќ�C.t��8*���u�W�0�L5ˣ	�+�#C*��Ip�s�,:�	Ȑ�����e�J�M�f�9���ɏ��+�e��/Ǫ.U�&
.Z��ot��3>��xc-,>~�Z��gK���~�4���瑂~����i�N�֗�yt_�u�F�`�a��G��g�2�g��lb�5g�e�3�r�|fKC�~42�%	q��b��B����&�N�D��
�υr�۹5@E���,����3J�!�
1�Dʶt˅t0y�u2�ӎC��Z�;����2��?
kH�եᕤ��r`O���]��k~n0ix�Κk�����gM
0`��(g2������%�h�0��0�?��f�WtC.� <w�B�y�/�4eHÐ�G�i�ʅR�������i����	wX
�]L�\.0Pԣ���T�/�F@�H��{�?����J�0f��ru�<��@{��8�8_�lg%fK�+�>�/���M����j�Yܣ�>��03rMC#��a1���F13q�~&0�z�掿	0%������?M4¸���0���$xcFA�&�1a8�$t ;�\���j��r�]U�v�?+?pb���$�.1���?����nZ�<�>n{�nM.2L39w�q��P7�4�p�Y~1��	�RS�rM?��;��������0#G.�qa����O�pL�	�ĸ����?�g�`�Lk��R���=�1�hs<���W V�gI���pW�LSN\�1Q�n�pߌj���\����t~�������;1���q����W�z��̈�\xj�j�F�	���fUp�]f]K�p�!��?5��V�4Y��)Y 9�!�a�R�Y8�nj[�;�~*����ba�L7Y�ݰ7�`�g�*Y���uˤ�5E�7��S�����2���.H����d�结�S-jd�醶�����!����
5����1�9����l2ۀ�4��
7AW<~L�D�Z\c	�cSzM��A��?��8\2��jWUπ�4���=�ɜ&������3��S��H�r���e��&�pkJr��6e2̚#���e�u��Xhpo
ƈk�����j��9�a+9k�1�i���pu���\��<N,�8�fI�?��7�����2��Sus�$7~8�d0?9�n0&*��܋�2���a�1�\U�!��,�[50��[�W
�t���A��C٫��iLh�=\��QM�/����Ĭ�f�J:\��Һf�9昕\hV��'�n�o���Ÿ�ᄗ	+C��z���IC�c��&C��D�>Įq�~Q�r�2�u�� �p����`
�?Y�2�r>;�
VfM��r9�
>�b��<4��8�t0��7.ZA֤��YOH�g�f_ET����		�\�z�3M�s���0b��&J
�^]�6Ѓ�����dF� e��efp�J�`V&#S(*n�.���c��.,\5��yr<���5��ZW�;צ��E���Ds.��y&I�^:�p=��ΐn�+�T�2a,��\�%�Sӟ&��<�j8Jn�g@�9}�.�08m�`FWfѻ�T�S�Y\��p8;�P�׫��gC˃�����w�?�ɓ���1#�t.0��8e��,Κ.��@o}�<1�8��xW"HL�&O
>��0Dr��]Y����?����q-�.	���
]�3uA���Қ9xxtS�N\,���g����� �η0}��NZ��
tRg�B-uP̐C��G��a�}��_�Ѻ���AS
W9�D�;1�8�t`F6L
���b����s����4d��\�8�c��i�L�ɒn�V4iXn5f6���q�&$+��u�:L=ns����@қ���u�Ҍ3�G1k��q�7����	̙��t��Lr�˔7$0��*�@�ŗ���¸i��+ɔ��Ɓ����Kk�k0�s1�~�k��#�����C��-;�|��a&����GT��6���D�>�!jS�K��������hW8�9���O�&�q�3���	4��7���%�����u��:��]j�;���q�3!7����aR~JGfi,����A���u]n�^~q�~���
� �nH�Ժ�\Ԯ>�`��*��K�&q�
>��F�
>�S��ƋG�)W��3��
0�,���\
4�$�Mɦrd�2d��Ã�k3_��Ʃ�d������X��\~(�0F1�8���ji;̣�N����~���t�����p9ln�#npfK�s�ާK��i3z���sZgf
̨�ľ���*�sf4s���f<`Ķ����u��_Z	���c�	�٭�5B����ocX�ZP��NF`�]���bd(5Nj�Y����E?:�%���]y���y��a��Q4�7�?�!��H`�bPM0F9g�r�Cq���y�����-I�*a�3#��[�>��3���(�0�n�4��J3)��Z`���s�[f(���q��q�d�n�骳5��\�B*���qn��E
�?w���}z��<�r�0!�ժWQ|֠����������\xGS�Ww�
b1y���+�eM&�#�g�駺.��"`���91L�'�D�2���#��3���\I�A0�]4�0��M�L��(��O�i8��1�'n��fL��D�7�\�1��4A���&�]4u�y��:��?�iF务s��	��Q8�åSX/.�2XWzϭHc��`\ >\�Ӆ#G��Gz��{��W�)^�>���>�j,]_���;���.���nb	Q��~-2B��t0� rO��2�<t�p���p_�h���"�i�zn�S? ]r��2������k�c�F�q��\�P?�2hˌ]��r�$�����j�\K
i]��~21	�w�ѡ�'mj�Fȭ��s�Fva�*�\z\HE��ԉ��29[�(��Bb���"Ob���T \�.[nC5:Mo7t?����B���e+�R�u����ԃ
c���Y�Ƙ7y\��a�~/C7���4����č��V�X�x����l��?Ma5��L������sv��xE�Ys�
h��~�D�U���U�cs�'��6o(�)\r�$2�a �E����@
2˼
To��@O<5bc\ip�6���qq8&��ˀ����-tlk!��&�����\e���!�Ɋ�:�jz��6��gd�!�t��Tԟ8G�!���1���gR���5�]�g��p�Ƥ�h�q}\gW:i���Q�y��2��ڎ����9�c��Ϭ���V�������=].j��Bqk�'7eё1O���D)5,�ƽr�C~�pT��ȇx��pj��3*�hp$�~02�#��\�:~T0����?��_q�1��X�[���& .`�u7�pf�����	�&ye��Q?zt�a�O�3�Ir�~Rxfte5����?���!��\!�&��%�!�/S �ř��q�?	?&rX0\.�&	�N������F����4'Ṡ1��n�D��2
�ws�
���+��#��?�pMr�e{���r �CC�����06`�7t��i1���W�c��X@n�;v(~:i+p�\�NV�7��r)ꦎ���n)˙��9��k��f���
������b�Ssb}�,>�	�5���VdS�bD�~&9K�~-�
��1sZ�~�IO�~��I0'�/8Nu���6󏩿��a�)�\I�!m��0f�W���M�*��:_�Ш����K��D�c��g]�L
q�2�I�L�
�5Y)�
��TF08@)�Q���1=�5���F�y0�L��y��Dx�QOC�)��0K7
p�"g�\0��<�N��mM��#a2��K�(⪿>�
g׍~���1c�u?�v2���k���������fS�G�T�U�k\��2�_���J�����3��Jd��ʹw;�WC�2�G�rn��a�_��#5O�/�Ywu~	�t�.l�
�=N�<xv�uI]G�-͝rwI���i�a:��5�Gu��Q�͗;���໙x�J��5�K��j��LAS@��z��$�w8N�x:UJ�ji�2�A�M���MXI\��9S�r�`�i�]���r��
a����5����}�A)�U4��G�.a±�fP׌2O_�ye��.SM5�ņB~+�k�]6V�\8�(5�h�r.�T`�;��Ȁ�'�6��N��)���
n��랭�n��8e��#�>q�dK]r�O�苄!��r�gIpB�$��t��V�2wvk��i�,�gy�1�SA�
��omH8<��lL���M2��e�M+s�i�436���0�	�����4X4>\��y�©�!Cv�D�5O��T|.[��e�w��r�RCp�[��L��	���0+̤B�9�f�b¦9�[5:*���3�-��.@4��Nb(�{F�1s�z��1B�n���0�⮘��ъ����L<�_�7�Y�+���\}h�F�!n�C	K�
��˗
���2���Q�tT�
�4��0`�o�9UL��S:���a"8�=G|"9\��7���Q����:m@y�ٸg*�
>c1�,8D�֎
U�a�J������͢<��[�L@�>����y�k�r1U]�2����CApL�b��Ԭ�AL D��*<Wb��1�$���4.T����6��\�ƀ�K�$��~8󩦊�Wk�|�(���`���0�ʭ��Pܠn��.l�R��&:nK�1��P0�:S��]u;�!�I���)�^��!�wZ7�1��k��ޚ�rfN�.*�w
��3��9���b�#s�,sޫ�jw"�e���W>s����~��ĸ(qH�GET�"S�����:�6c��p?��p�7 0��D�q����r��n�C�:Pj�vQ�2l��̟\8�3tnћ���"�6!׭	��r9�������+]h�
����e�ߘG;�.��ѹ�3ͦY��:h�sL�k��לX�/�%8�|r].� �>���%��xoB�\��D��g�9�c����W�"��|�5ۃ�WJ��X�>+�:�?x��IT�ɉ�k�!�5�9ڮ��;j���O�XM�UĮd���r=¥�4U���0ۊ9�w��.��CH=����I�h�����4H�w(��I?�p��5}�o�|1ǻ��|8�n��Æc����{���?����6�V�1�l҆�l�tR�U�[�ྺc=5��M$50�~		��gj��^�xۜ�8d\i�������]�.U�7�_�9a�C	믿L\�&k�b{̸�̿T 2]i�6HK1�u�C
�eEc��F�G��qs�H�8���0m=tUf ���H��Vr�A�Ms/\�X{�����0��ؐD�B`@��2f�E�b��I���z'E��&W2MG	��080a�:�L��WLQVZ�Q�i'�����о�X���7�z�����/A��a���?�.I�?�ۂp�8���9�u�	���e�!5�; E9�ܪ�8L��`��aSG6�r�����WT����XvL%�H�Lk��0t�,��=�7��+p����-0nb��(�wf%?	�w�խ�w�bq,\'��,�y
 �q�@eUk�L�S�)����1�aMF�¸�3*���i�)˙gL1-�A&u�BL-�[�ܳ:Q�*B
�٤�y���8�`LG�N:}�i7?�e�u㎆@����0;�s���:�,_ʹ�p�u�76x�i�8\�����k��ؗp|4=��8��Y��=���k����(_~?'ީ�`�vjB�š����UwQZhxk���NV�.��K�p����p}�(`���K(C����^dS�j��w�~��=0�Æg�ɟzi^^�g	��zOh��zc7V�k��%�~&E�qh8�
�cnO����ޮ����_Ȝ�
�0��o�q�:����Y�(��Y��SXg�<iu?db�?�W1���\����q+]x]./Ӑ�'1/�0��D���V�L�\�(62��eF2�$�r|0�^c�YKd�M�&���~�
���W
��s&��d`�Ej�z�<���9G˕%���ppp.I�%�ypp�7�r�l�)�kqpj`x>��i���q����Q�~<�.)�Y��V��_����s�k
_����g%��ɒe\�i��c'��k�qxQ�a\��X*�0O0����Q�7ū�s%�����L�2�LH�γZ�Z��Xw0�g.Rx̤J1�F1�^D��y��n3�t:؁߃s��9$1�C�<�E�e�eܠ4v�&���&��%���
��0R����<K�q��ߵ��|q�%��p�Ldt[#�����p�
Ŧk9!����M0i�8��`���#���L#��������1���.l��Օ3
kOr԰0�f�X|a���wĤ}��@j�a
+.;�0������ۖ���=�"YLv	��a�f�K�Uց˼Ƈ��p'�t��R��$�1��v�ǒ����[��x���#����f���q0�qc� �N�&�`��Dd�9v�[�q&C�g2ɜHS�~l����4�L��0��g�P�~:z�����u���\�� ��i�S�L���ˆ��
,�l�_�&B���sU�U�u�\;��G��q�V�;���LWї��W���xw�z��a1�-�Q�t��.�Y�W�0�80�8����]���\��w�mQ��0��Lh`���Sa�`��̻�F�~*d|O�e�����N��#s��51�?�4�L���������t\�5MVW񁠺Bj/���ω�! ?iW/T�L�r��Rۈ+�Hi�cP�}�З��!
Zb���j5�b�!��u���TEr�K�9J�$*�JU���}�Q�������c^EŔZ(�نǎc ƚ}�
-k�9�0F�ކ�>|�k��t�#�\�㄂d<\V�p~%u)���/L,IL@�w:�{!�z領�����գ�ԙM|�P�UL��΄���օ�[��C�O�(��^8g�'C.n5u��a����1�p�k*�������V��qf~��ۥ��P���d���|�x�ফ`K��L�(�Mp��ek�Ud��-r ���o�ʤ�Y*���L#��\���<�+MϊO�>�;�5�����p�O!���^d�k��>Gy����;�n>G�#��|�W���0�~�?���fP�Îk�k�uր�C�5V�MWH
�VeF��S�}�ޜHY��%���L�%��N��m�C 2��c|�������
���}�x4��'Q�7܎/���d�&F�%5'p�p4�0��'G����bȏrN8�)�����\����gۏ�_��Y�wI�Ѻ�f�V�MS��f����s.k�V�`Η���cM�(L5�`�1,~���8Cъ.'�d�&�۸�&�g�	�p���L0o��0���kx����``��r�n������k~#B�^�F��}��¾9���/`�~K��2���[�c��Y��}�]:'��r&�����s�tM0s��M�H�`_�*k�#i�R�0Aw����yMcY�J�޸�/}紆O�^+����+��+�/�S�\:�����L���y�8��:b�"��-��q������x�
�	�f	�[�d�C�q����e{���y�u)r��H�͐r�G^�p�A�D�7c��}c�X���ə����pj���2M�R,��Î�i�*Z`�K-P*WL.��Ks�Λ�;��T��DJ��i:dt�ցӫ��Hc9Y�$gM��X��<8&rL�����R�:�n�|�qJ�:w�#j�Je�V9˕1��.K�9��㣁��}
#S�A�-
#�AʮU�n�qD�Ul0mW�0��o�,����7��Ȱ�O��乏Ę��B1�U�
ΙɁ��&qD�z�>p��h��f�C&�[�hgպ���@�A�6�A��Ƈ������[�a�X�/㏆VrO�T���o%]c>��9�<�
��`�D����],n8�6�D����>�8�C�MF#�eMXU�DY܌�J�3���o��n^9W"���Ze}
##�vܩuȎO�������w��*�8#0�K�(d�̀��R��j�Kt�N�C�ϐ���5ޘ�MS�Y����u���@H���
�m�g���~p����gacO�0J��i����-j���Ť���np���
è��2`M�F�0�p��Y�j��p�f��ʚ��
��� ��tc𣄳��5�a?�q�֚:�R��L��Փ2�B-Kr�c�&.���3T}5�3(�	��|�_�8��Y\�>ق�+O�ӥc�q��弄��Ū-�*Yq�!�M�85�b�-Y<tp�Ơ�5
���X��!�P�&4F�b`n��9~/9����#�L"�l������h��SQpq�[G�G�p`�w
��rT�K�b�7uE|�|�b����T�]yU�2�d������z�p���N(N��
�&�����缷�~��S@�:'G��z��-�&7�H�S���#6U�"����Y����.�w����4�pzd�؛��4�~�V�t,ϷL41��\tC�W'ҳ���*a�Ű{�4l���{��w��B.�*��}Jp� ��cӟ��@e� .��bC�:B$�cê�W����S� 5WF��8�s���>F6f5�`,�K�m����>��\i$52�1.�)��إ�+U�<|s���1a�L7����w�ܨ0�ֺr��p�2�q�
�c����q�b}��øُ��t��4C����4F.�\N(d����S%���nRۀ86���W��X���V�1ۗ�����ˠ���,�iʋC|�8h�+���<\�L�|�pV�-VS�/�ǥ6\y��`���O�DK����kR5�C;R���Fq!UM�#�#A��6ɆC�?Nua�`1�|�� >�bt._���ki�.�)�$A~�r��Q�.]��a����<�f��j7��A!\~��c�W
4U��J+g��r\t
an�O��s4���v�3�>�u�M��1��c<TRm�),��ӮY��Z�_�T�Dp��I w�2�t�(_�}dĂ�񆭠zf��!S�*� ��V�
|I�d�z2�q5��T=����>��Q��<���C+����|�Ża��/���<��O�$j��iy�@�=�+�7�*��^~B�Z�Lr�NN�;
��E��H�܍B���[����ׄ4��ŀ� }���[��p4�Rp��9Qnp��!lt���"�v.��Q�}CJ#N9A�.�p�8��8Xr��ytIog�Y	H���(IWH�
��D���V�1�Dh52�aDB��ž\zQ90FIN�>G��xˑ�}�(b���Q���r�����᪵F� ���+,�#�2#�3��;\�������2������|�Q2�����|r���}ϸ���j?|+�K��Wi\�Xh*�����s{��G�M0��PP���!��)/1��N��Z��@��L���U��y�E/��C\e"���x#�2m�8���.��0�l���4�F}�6�/L�y�(��qx	m< O07Z@뎀̿��<�A���,Or%��D�S�
�e��[�\��5(V��TD��y{w.���4��
nBj�	���0q�P6[Q�M���	�c�
P"�x9��J��u�`���+��,u�.e��:��9�H෤�8�ȫRι@9$�����V$��X����+A�^�]�� !�
��
8b�ћ�1�ΕL��+�`TD��Ӣ�3����Ϭk�N�X�d�FR\Ad�<E��ir�+:��*�����{��)�+,ǐh8:��rϳP�!Gri�$:�6Q~c)V�O�A���9��:3�R�8�������8E2������\%��P{�+g����u��C�V�6�~`*�\��z��;I�4���ݝhٗ*xa���fh��&����1��� a ��	1���	z>x�����w�`y�p0�b蕞c�~#{
~5KЯ镈�������U:W��+
����d����.��y��,�5�����Y�$b19��)���u �'��5��^%]}�@Eo��z,�L�*�(�%�(
&A8>��n��X��Q1�������#�74<���C��~�T/���J�e���C��֕0�3O�����My�d���#���N
��o*�s�<�rY��T�Sqa��0��ـ7��1��RU���N�̙���m�e�Ou������������p�Z�� ����Mu^A������.�i�hW�x��.#?��L�LC�%M5&}ZJ���D���Hk��+�q��ϲ砰Z*+����f�T����b"#'�P�3��d<��L�C��)�ٸ((ȫ|:���8(n�b��1a(>�Z.�*S�H�-�!:�S1@�?��B\� e��S�@^����X���#�伪����+'�-/��c���{A)�׽,H�P���P�7$�i�=�{
��������"���k!f���rd��$�3�0�2��M�^��R���#3���!�������"�aʏrL���^��W�������M�?�A H9`�a��j�
�q"-�bX���ǿ��n���/��6�=���.�z)?x��pF)Qs����w\]\{1���D?��"��H�$&��.�����tU�:��_�<@�SD�~T)Y����Xۘ��m������គk�?�)��A�6!�a�g/�)��8Ȏ�%,�������ˍ�� �>%��:�5���>����w����g&N��ɯ�D�?<8_���e��(��Y�$e"gF�.~`��fA�# ��4��pMiHj�2X�ؚ	:L>�^�jK$�^�&#�A��ҋ�(����/'4�iU��J���@(��B(hHR�E�Q!���T�sXX1W�j�}�[�eW[=4��#���s��*.t�84ɴ�,�E.9�&"�]L�
TW[�dzv�L<�\���ǵ�����L����e�zj*������З�%��վ2���GM?� ��ƃ#� �d,��x�!KH��4�O���N�(U�w�s ��Д��h&�W��{��3�In�'�@
�
Iq&��������Mv��0)����}4�VW�X�A*�`��A������T�ha}+����(<�ũ�kMͪ��5^�mT	ܠ~A!�2�+. $��7{shuZ�C���&�1'�#�����:��*����u���|��dJ�<(����WIi9�7�o1�S��%��`�2 z��>�/Cz2��ʌ(��Y~>]�a��-��@�����
�2;*�)C������W���K�Nj| &�'�s(��ہ؈$�rM$4g�.�\< /욻�a�u5h@��A��Ɲ�`��o.a�/�CW0�n]k�`᫤��+�A?)�@V��y֙��.�,V��Q��j�p�]��d�E�R�#L�9�0+�M���)�����"�r��
r<�z����	8�c�b�_3�K>]D�c�� �/RS2�#�������Ḑ��;�|�[�CO9aC�ɘ1LN�_YZ���Tts`>�
f��Qs�د76W�b)7����H�z�пp��~F�ɢA��[�g���N����Ƌ�������ը�D������.��&h�%7
��ڔ���$�|���{�a>�kvd�!�7&us"|j����"�a4U.q�_�ܙ``c�5���(2��19}����C��G���ɓ��N�?��2��n��(s��pu^�aї�^.V2��h�Q�,4
?��)Q`���M�]7���W��#�j�X���~n`�q��-IY���ph�v��A�額�+�����3q�C�A�!��CM��
��5��ҾNLix_f8U�o�8��2e��Wr;�a��Ť{�)�DS.D��w�]ċa�J�\IE���1��iA�t����0�J^e�-��BSj'���X���0߳)�'L$�J������t��cǔ���)���bW�]�[��*Ԍ��UP��9A���i�����<�y~p�a>�A�/�i^��+=��wv���\ӒOE������"O��-k�\],l�?��5/>�7�v!�9�hZ�az��9Kne��x����w���2:��S��
N~
D�i�(���K}\�^�-W�:�}��%R:��vb{��=�&2B�OnPA.={L���hI�Ԇe.����8|�1���~L���h`�8��`�ͮ���Ͱ�]'�q�I��������F����,�?����/���S��
��Π�Yd0\O��W�م9���0
���W,�R�+��])"�<�G��IC�(� �kψ㱿�`�˄t��_خ,�O�҃���9M}ui�Zk��ۂ�x�W��<cI�]�!<Π'΁��<g��P����(�����n'�����\pO
��ӌ��iϸ�e|�`X��L�����K>L�w#�>1a���8�����}�c�.��L� ~J�s�&�T����b��p�D[΀�X2)�~�,xp8�>D�L���/��%\ӌ�sA`�W7m $�6̤a����ϊ��9�n�?p�YE&L;�>��
�-د�=����n{�%�,������do�����'!fO
�Ks���&��b�=͋�le�ӡT��1��D�p�i��|���j^�dS>�؆�LX��#���,�3w��ľ�q0=�
�k�Mj���\��'�2�s��a�p�EFZӁbʢB� :����ͷ�V�:�ف���c,��x��&����0�>Y0��V@f�ѣ�52�Ep��qmp�q����3���L�Ak������U��*.�x;��7��	
���5!�z}�I�B�	��c�f1�0�q�9aU�M>��wKV�Y������\����/��ա|a��˽ӂ_���6YoR8d��1�AWCA`���c9'�+�Wvl`�k��n%�ۤ��U�ȵ���͡~f`���!���s�W��b�L�Z��1�t�r����AJ��p���]%�V
+t���'�8�c�V��pFF�[��X����_��������Z1_ы$�E�_�,As��qD��5׶��X���P����~D��C�P2�򳊈��$��p-e�[�a)S�{��♚P�1�$�<��dG>C��..�=�1�D	��~7�H�o�N9�"��6(��G�Q�o\�?����pV{��5x�b��ÀJ���n?(�Lٵ�-�8�#�"�S����
D�2�`��LB��}7�q���4��1%��$˜vQQ0R\m�+xO�j���]\T
[��á�g�S�D
Ys�s
��29r�u7�������(���	��(�?Ƙ�f�a�ND����J?N��␁+c―A�X��b����p�Z�������"���냘XqH��dz�[������������q���@�}��Q~����(9��f�,Ib9�B����s==q�r���2@�������/�S9(�:������4y"�0�>�N��r�N��KR����ˑ��pG-�>Q=��S�xDZ4()=5�Q�-ǵ�m>���q��Wu�7�u�h����K�o$��/,�xـj����)�e�x������=Ж����c�VXgE��T�e�y��䫔���z<�\�����E� �ܷ���H��p����.I.��O\=	t�o웽I�n{�!�e�6h�ɻ�!��Gm�)2O����0����㕠�'ƹ���|`R���t:������s�e����d�B ,?�T9�����p/'���$
�����N��ג|�h��viĴ;������b��O�y�����&��O�B	\0'ʵw$�	��b��0�YTe�l��۞�TLm�[�"W� ������R�=�p՛1��̐�B�{G)i%�R�?߼q�ؾ�n/T����/m�(�kTc]���S~f�1B�08!!;�����xz��º�3��i����E+�`�[Q��nr|�%r�uw��\��^>�y �n����Z'fg���5jb����1�5�%��Li��b��9�
�<�1�������?^�.��<<�~~z���1ވd��
����:�7)_�	�^��q�6��4g�N��Μ&�S�3�m�r�9ɂ*�m��Ί�J��9�f�!�+��IOS^8m�҂'�8'��W���ܨWvٍJܜpJh�����!��z�8`ц�>5�ZK<.`�%�}��Y�0�G���F�q�3�����S�sL6)���k��/'��LV-ʁ��lXądgM�0�vri�?	�=�6]�bɋFW�"�'�/q�20���w$����猅1�g�c�H5M�}�@�r̈?������gO�Zl �ʗ����iP��f��g�G��|���٢�a��*���0�L���p�۫�R��$8������%�9b�2��!��`\�
��O�.G�O�����|��ԋ�e"'M�q��c��W��N/�SK��)�̉�N�bע�<:z֝=��co�\tG�C�8��~��s���@�_ĕ����ekϭ3/�h:�=��T_ё��
����=Wu	G�M�dhf3��@�U��ˆ7e0@f�O~����k����V�M�VK��T|y(d��ƒ.5�(2�2��'�`H���H&��';^uV`�Fl��8�2�0���^��X�y��KfH�
]pA�d��h�D�����^��6��a+��=�:��5;ٔ�N�u�|T���Q�a����@V�^���!�.����)�mBX>�-x���1z���g��'r�i�(�rK\�+��b=θ�Z,�;�OCM��2��`A�6_X�u���o�V}�5�,nt+�w�6��*�Z�NC i��_wf��"��J�`�U�q4FI���nl��Z����9D+����1���4�)3/�]��k��9��˄ۑ���S$^-�����=�Ypb
s�N�`�1�$��
��7�ړ;Q%��ğ�F�?��,�e�<gfl�h8R����|u�����,/�W���\d)��A�11���ئv
hf�bpWAc��8)a�����y�7 d��d���.�fC�0W�Za�b��9U$¥vR��%��n)�S�}�b��=HW3���½��{$���m'�p��#:����_l�d]X4�@�Q�- ���1��rhd�)��Ž�����:��u��2���%���~�I�ɗ�/� �*��D�#�=�7$�xnm)�"�IM���p��	S,�>�w��������;�� L��2OPĠ���qo.��ν�S��I��1�Đ�Q*b22�	S�1�qQV�����q���k���M|�rt7�q��� ��aL�
����Z
��#m}��e�^��p	\/:���?6)��& ֩���4�D����J�\ۛ�q����_���Ly�P �q��18*q
��i!�ӕ��Q!}7�)�L<|&�����e9#
��O5`�q��Al�����T�\7�l��Y�ϜA��M���ʚ�	p��'�[��ɟ�,d�G��.#H^9�)!���Ο��U��J&��zL�"{�d��P1_�WE}�$#CdžN�7�C���z_�?���;���eN���CH=:�.cGnjQ���<�Q@�����&�:��k��'�;�R�>�>94�(�ry=�{�C��\Ɗa����Yo���6y�H
]���8�o��
���n��z��_��Q��Jp����I��׸*��	p~t�ک��S$��(����u�e���@P��'0��>L3G%���'��A��Y�1���`kԒ�	��(2�Q�y�6�8}�~5�V�cH��q��}�]F2�����m�EB���
�2���e���Yo�\�A�Yb�u��q�|Lz�N�2�D���*h���9�	��܄��џ8���O�������T�AO�1֥dG���\�^dn�Ƃ���X�sY�S��^
W0��"�j+tj|��0ٻp_~��59pڅ=�3�u��Pn ��/���I$��Zd�a�޿�5#�>Ky��;��"x��e|?����'.3�	��_=C|���KUѷŰ���'�SZc>~�f��Y�ol>0R��c�=�b�;�~O���C%<�X�s���;t#�4WY�GNW��/]H�C�d
�mf�P�Â5�(�q�TAxq=�����ǒ��2�e����5���t
�[eΣ\>�4�p!GՔ�L��7-*qgxc�芹0�GtY��9����]!BE&L�áY�eG��?�m�j[�z�&T�aP��LS��'Ǒ
��]�9Xa(����r�5�����b ]��L}��	^�7�����4H���"J�"#N��ˋp��(�?F��B��zU�c�� 69�X�V�ӂ#�..���#��]��m�p!�!Q���,�K���.��e׃���Q�$˜,/�`l�y��]�ߖI:��&��Fp7&�!�,7��Jg�V
s{��[`|r��"\�<��%
�O��f4��>�a���{䕭���J����\�_��`���2p��pS;�អ�_]�L��x��o��������ߕ�x�Pը�f������&�	l�����V}d�QaSH�9Z�p�C-sg_~'��O��:��3��qU��F�a%|�;nșu�ӎ�;׶�P_y[<MI���
���������a��W?\� �h��h��Ʃ���6y���{�q����;cl���'���iK�i����P�s�py=���zl$�sńn.)���{XQe�,ε���CavW��Ks�:&4Qr�	��@&&�}���R�i�ZqFc�D����s
���<�(#��/N8�!�U���:3+��w�5��`#�^��f1&_�>�Wۖ���
�Kc�w�O�ׄ~��
�81�,�抖�����C�⼙r~���[�>&�@B���(~��gR�5>"�
]�e�l��(_y����˫m��m��b�|U�c�&\������n~W-B|�3=�OC�GI�L%�rs9�x�$	�^�1
��e��w�F�${��@�tC!�EW-�����c�:�+AX�骽?y�%���E|!*8�b�����O�\�^�I�,ũF�����K
>eΦ;�N}�>k��g3M���p*�N-�tN�����Vrv*� 0��
h-!�k�_1K�q��r����}be�OX?�pm>sǼ栢�=j��6!=��ID�����BL�k��Hl�(@n�#�y�-ݵV}ɮ�!���p���������6��!�0�pF�І��8���c�]﫚1�1�pi�>�#�cw��8(�(�p� ��À��0*{)��E�Ѐ^q_����ភ��B9q�z��KE��7".Y�ѕ��z������%~?��-}up��N��b��_@K��R�C��,j��hi�����D�S���v�f4�'���.�WO&"Z�]^�g�'�8{�-�1z�΃�U�𫖐m?9C$�u����)���Ϟ3��}?�P'�yŢc#i0(|�s��L:<���3��d T���&\'��p�m�_�\fl/��r~W�<�%W����T$���W"���M�^\�;�L�!��1�=��ۭ�o��5�䞳��3��ux?Y�5�Y1���O��R��Ds��*���?}4i�Иl��&EA�W(�F�B�3�ZY�km�=y�1}���_�&&��߳B[��ho$uZ5�1����n
�s��^��
"R�iؘi�W��6������Ϩ�x�^�������?�9�e��r5���4�q$�߽y�(:��1�TV���4k�$��T�������c�o��b	?�=��%�8�M��L�sۯ��u�Y�`������a�Z��Ga��МO���,��d$��<�R~򰨬�~���$&������pS�1P�1)��*���_æf��/��:��~�ϱ&g�yb�IO�}+�y�fecF9�5q!~�� ���] �ák����`C!ut�K�2��H���ʘ�7�a�aQ�>�K���%%�J�b�y��	��ebeV�����EO��_�4�l����2�C�uC�7j��„�:c�Ya'p�� .��0�:�P�nW�#_�|�Y��ܴ��G,�'˔�=�iy���]5�I�o;�c|��|���������!�-�W-ϫ�AGr������=����-�?����ts���*��F��yɟ�rDHLM]R�aē�&E�.�=�Dx>��\=�� m��XMJ�-6ް)���dL�$sR�\��'�a��^��.��3:���jN�aN���V��I}�@+���pS�\a&*��lL����~>�ǯ~��89��1�}�Q�?XN"%Ѹ�A?l]�j�"-�M�t�=q�4��j&-|j?]ϫQg�6Vh�����2��)�`���K��W<�sm��g���k�HVч?Xxaɷ���a3�vO����"��p;��w��z|�X��s��=[�}��ƒcj�O��*��l��ة�W����j�?�#��sV	y�AT��C+�j_L��)���1}�T*�"�wu���[�����G�DgbB�eFttr�P�b��5����%D��1�h��KѸ%�齙JO������GZ�%J�R\~��V\�.��z�d랠�����>0,��(�?���@b��[匓�ћM��"m��ؑ�;¨f�Tɮ�1�:h�`���>̧Mò[��k�Z��El���	�_�מ=WqAO+�45��`�����?�Ҭ]��C�X�:�m�LL:!���b���� 덧�
0��%2�a���	y+_�8p=6J�#���~�`��l8c�ф2R��>s�"t��l���5?8��<�ۑ��x�7�e6}g�Y�����["�,�þ�ڔ�#��>�����.\��h`�y}���q��Z�5�).=�^a�B�x�o�A��~}����b@E�Ӿ=;�3@�4��?z�iU����9�LF�x��ϕ��$��9�8O�1hQ��i�Ck:�"C�9��P�� �0��u��:��J�9�\'-�@x`�|#���7�̤��Jch��t"JE�G,�:'��#8�Mx�C�:�6G`�5R]L�Pxo*��C�&)�Ŀ�\��uO�2q��r�~���
�g�`����dcp
���_79��dr��Ha	�B�����4sG.�OO�[�M�����:Vw�I��a���pI��n!@�Ybk��/i4�HE�w/� ��K���0a��
�n�0-��^�&�����33��
��,�d1��&p�Ii�m^N8����ʗ��ɒ�;}1�x{�ub�u��H��IJ8;�L��W&�08�F������&F����f#d�`��c2+���g�����C!W��<�S�~��ژp�}�����I�'��e��]���,���tc%���'����!��W�����k��լ&	�?���-���r9�<>���?Fl�2�V""y�F
�Yƿ�Ѓ�3����>��#�N(0a�I��:�2�=�iA_"`�>��ah�r4��_x�K�s���!W�/ɼ"ܛ������ϋA��Z�9���\KBY�A��D1A��
�J���r�Q9
KM���A<=Ų~�c�J���W�L���־��˿ؼ��FN����9K�VըW
��C��A�`I?��&68�#�f�@�?��H>��W�S�NC2��\��iA������v�
��DH����'�5$>��(X�ƴ��DK\�2�\����|�YX�L�!�����
@!^��.ǘjIˮ4@Ϗ�alC�����$F1���g�˝��󍡤�$��n��đH��%G�̅����BO���D�/uء#޺�+ː�n��~|�rn�ɽ='Q��8��M+��ㄗv�p.�]P,�=��v�����}��>���2'&���#�=OM�]aa3B<��9A�D�9Ԑ�1t8�(g@���aSI�~�\�j�2̰�a�\o�+0� ���Ԧ'�Ǝ@��%~ ��1�T��������F
�}�p���n	��u����|vs��}8խ�y�=�/�:�Tj��C���lB�i#ji8�R��e������Y��jh��w�}V@��df3#�)�=҂K�⮨���H�.��H��N%d�>�1�������kX�����,"_֓��LaT?NuV~�1�Y+�Q�9�4f���.��u���<={��=�3by/�ȝT�g>L\���ӿg6S�-�R��&K�x�	��o�ɃP�x̢���	,����k`S�힐V*>'5NI(*L�3�.÷�%֋��N��H|��!�5��.�a���ÎB\��d�d�H~p<>�2������O)o�tA��.Zkmr����\I�s�N�Ϙ�W��|^J]��~
q�XG4NN�M�Oo���P"��﹞��Ϙ�>7K�n԰�>K:�ʃn����3�Q`�Fj�@$�0f�R�K4��O�g"3l�� O0�8Xbe�z��1���O�@�p~1�\�zzPw�I�4D���~pa�/��q�5~�_2b�g���EN��*H92s|��o�~��_���\�S� ��:KX}I>��C���G�Q&PW���,����)��h���uS�Ъ�?)g
��CE2}�	�W�nQw�,-���~	���75����^&:�Y$���U�?{D���'�2as{
�4i�Ċ?�S�
���2E9\�������I=e.Y�@�y3~����OG��}�����C���.a�_.uT6̾��	+}k�Iց�j�,�%�D̜F�A�ۭ����8yZ�jXc��b4�L=h�|
�(�2
2r��C°S�s�یE�\��z����fr\��4���y����?�ٙ��D��˜Kk����c������$'�)�b'	�Ysu� ������<���*�p*ބ�Y�|8�A�E�Դ�����d���+��.uRl�#7�?��a�^���Dpd�aBl��RQ�n�<������v&�(��\��DVe��e��I��~��C��1a[��`���w�V�o�q5\��ȍ���9)�0�O�1�
c H2a�"�2�+��E��J�=6��1�"�1� XNe�(�ei}��a�ҝg���������~�lKuLǁ�<P?�L>��q��`�[3��j�l����eG����M?��J�>��+��t�����ɗbR���a�x���>�MƸ�!�<��{�8��ѐ�n����[��ٿ�=�i>�e��q�C�]-��ҝ	�L?�����h�}����uZ/��3R�k�5|B\` �4���23�w��YTB媨��	WQ<�B��������A�Vg���X�h�cC'x���1��<V�.wc-'���?��ʑ�r&G�k`�m+���\����u~#�4\�u0�~_���$�Ղd���p
}���UN����bhV�<��-t�d��ai*��
�y7�_1��ʴ͐#wLG�8�(�uX��	���㽃��2,�G�$jaW�4�+�y�м�/��6.����\b�`��Ş�aG����[�>p�R���k}]&�;�1�i�>��I��HI�8��h�q�Ab��]�0L��Jt$|~��O�"�r�Q�v>�0��e'D�,�����*0�)��hѣ�2@�i]�`�����㟢���_�pĬFa/�$|N
 =[p�ˋ�}P`|
9��	ў���`���Mx�i5i��Y<����������?ܴNG��mT��s^�;�\~�C�]�)�Y{!d5��31�[�z�4��	�^��a��7���3��1�q�c�^8D�82Ȳ�:|��V�s�:��
���	��N�˗?k�d�0��S�IVo��%�|��V�z�k��z>c������91j�����LEў�I�
?�c���q���2q����6�~�
L��m�P����:	^�Em��\U١(����N�>tc�A��Ë7��+ug�r�ޭ��+�*���3}(���c��{����%����c�Ϗ�8�Z���Tf�u��)O�<׈�<R�o������#��=[�CqnQ@�w�l2�'�c�K��д�T��NJ�^�𢳿�^Q�w0$����\�����O�� ����PP>G+���`~�u���1�d���,��R�o��+�hI�
�kF�<}�G/1�~���^�º�qb*!�oݞ_��;t��_R�FqL��#��X���5��>W�QW�֚?��T$^C�p�e���S�X��	=�����EOULv�'�|�)�L�D��I9�Zx5� �飴!��e��?����`,1�*��ơ@�|��U=sd,�t�
%N\�H֮��!�R���\9�b��'����7���K�AH#�:~cT�����P��
y�=Y4H�i#��}��e�p:Y�k���� :C��Dgy��w�]��A��ڟ��Ø��Q�� jEf�Q�XU
_��'P��2#�GX^��-O��2��X�}#g�~G�;�N��D�=ۯz����A</�&e%/�%�C��5��#MA�v����D��Jk->����������
.����B���~�х5�8l�
~��
T�og4P~�z�J��>{넍���A�~-�C�J{��؉�
}��o��G���$V��,E��B_�`��M��� E�10��
�[�
��\8eh!�$����({ˇ�=Lcu����W�ýcc
� %f/)qy��U1�jd�d-U�q�v�~�_qT��I���)�����d܆R�?�\�E
�+��K[���/D~�0O�FU?D$�_�0��t��@��pE�p���!sѿ?�|�ai{4��(j�H����4��/�j��+�}�I�MT����#�^<��Y����-n���p�|�b� 0z�%�L
T`�tk���v�����ɇ�sf�BFw���8��>p/V���G"�
#N.�fO����
Y5v�5�ۑz�몵�%X�2�Y��k���J9�T�8��#*o��Pt�'��c����Uq�ä�h@�<����ʥ��x�N�e�p}tL��ro|>�����H�-0�	g=��p��:�މO�G���+��|F��I�m'������:&R����6��_�T24���˯*�X�zs�-?�����	���	G�uc����G�rS��-'�Pa++�i�
L�uĜ.#@��q|ě�����Z+��ⴎ�H˕?�-;��L��X��6�.}l�]1�\@��cx�`^fO��20=5��:���O�ZU�5{���?��S��׊I��%��s�w�>��R���oC7�g!��9��F5����@'ܶ�]�Y�O��-r`K�W�`�hO�<2��G�}{J|`"��~9��o��L��}&B������F�<آ�)<K�	�|��RS۔�H���;�8e��&$p9v��}_.�C��!�3�J�\�8��R�YA���ET�H�%�L-b�q��x8�ƈu�EO1`�4���7����kt�D�E�おo/#�8҆iJ�aN>�ϸ<}:��O~�
}<���ف�W\�w�۪!��Y)�?�򽩴Ũ�G��A��2�G���]/�*�ό��ʶ-���@Ad>�kB��q`2�>I(�\��s
b|.�U�>�#S�PR�\���%���/�!-a��#D9p�3����ML�<�}~�a�WÄR�.�f�1�1�0�����8����N?1�@�W�<�w�Q>�+�,��ד�B�7B~�=�
~���*�Xy�'�BP�N8�w��'�����'Y���6i����e��q���[���n9��/�΅|�!]dV�0� 7M�����
\�K��+g iK�N&0C�EW(�2d9/bJe���i��G�wp�z&s��G����k�v�+( y��/\ct���I��I��u��0�7��ߐ��A��#�냻���u�DŽ�`��	WD_�]Q=%_iM�]#���+7��q������И��?����0�h�jF��������Y<���tS>] :Xw�L�4�I�������e�Ta	�����“�c����C$3�C +��(
�����^Ա���a�C�1Dȱ/��,���&h�h:��L��B���y���I�ka�6 f������I$�$2e��N�?G/�.J~�u}�)�A?�Bd�̉xf������t��T�YX��SpwG���������r�y���8�߆���!�Ԓ`��p{|��H|�Tzw��.�?z���`4	�� pK�'�nU��%O�ʇO)�#44�%�vd�0��k��8X)�lj�>ز�0����y`p|�W��X^i?������]�Ꮥq;�^Cx�10����GH�L���D����L�d3������^�=����ͱ镽T��z&�m���x9�__�8c�|�g�e������@���3Y1ڗ��.
1v�I�yg���#�E?�@�
J}�=��	r��S��P}��2�nU�~O�A�1y�^:0V�Ƚ�Ɔ��Ar��ՁN�ǭ¶����f�I�H>\�X�M֋�~~��S*�V�̈́�p�.����xH���Ʋ}ߌb���h	�	N;��
�<M1p_tJV�^������<�E��#U����>4Tb��`��-pW��-�;��Z�nqx�1H!NC�S�:~8@�9����B�)�`&`N�$$��_t���R��̈-O�K杄�܀od&@$�3}��*��Qi���_��L�-(_���X��l��N0�Cn�0P������O����AK� ���G3!�sG�)�x5� N\4��w8�lL��'��r�l�P)Dg.k���rtǓr(�q'nXC���~�x#J�>�FT�ʩ�" �w�WP@�n}�<_!�u�.��QX�i�
A�''W/�D'����$�)9�f/�{��4��kĠn�R�4��י�C�a�4$�}��@�����7-����
Ku!�/��`Y~Yɾ��@c��hw�q�xѯ-T�&V@a�qT�W�}@�ʔ��ҡ�3�hY�jCԉ�RK��]xJh�tT�#UT�L�][����Հ	/Ɔ6�94���^(H�r�4�f	�f\��_��%Z����&�K�^�P�î�0�1އ��U!$��\LJ����n��b;b%�9p1D��˘
M�.H��L8�y`�V~�wD�b�/�R�P&����"K�Dk�&�������Fea�	c��Wˁ��ĔƝ��p�}Ey�5]B ���:C;S�Bܖ9(�ԊL�/�5�W��[���g�I*�n�Ƹ�;��}gg�[A�aq�,�:rR��5>����m���.O�L�&����s���R����Y���,�k�*(��w�\Wf����'I�"�F9��q9�L����x�Ho�u��$�d.F�Hc�)k�.1[�RH�����s�A,�%��|�AU�C,m�q.*�?SUO�Y�.*m���W-�Xo���@l��L����p4b�D�s)�[�*��Xƺ���|l=���פ?c�:�'��D��gu�s�3��_�����Pi\�2"a���
���|�0���\4T�E��00̢�3��yI�>.rȈ��Ln�X��4�"�?�2�ɭ�ToÈ�v�kL�Q�0�1�x%�s㔸$��U/C��:�L��z��Z^#�O�@���2����p�b%�ta�|����rw�:�O�L5�E�pt� J�qf[�~��R�>����L4��`�:`�3N�~�m��.�Ux�2({�?sg�"�@��T��5�j�2���Y�su�������g��>��f�!�+]
�1��|*OD���/po������ ��8��>x|��(��js'MXR��|�}eD,:��9�"=~���⠿&�q�xL�����h@x��t�:���?Y“ G��������,�8oN�����OZ���,\{�`�T��
��b`�_3�X�O��^��'v;t�մ���]�BkH��+��'�U��_k��b�
qJ��-��QN���S�ˤ����K.��tE���r�[����=^W4Y]��6�O\�,:�'�&EE�q�I��+q�^���'�Nu�H��|D�K�B����+�g�l�Q�>A{�\dE�}a����8���/>wܰ��4�#���4����n�Mp;�>�wB��a~�w���Ħ[�d[2�+���^3�O��F�K�2������l��!�pN�pN;׈&?xk�"�,ͣ�6�V6d0$��W��W'�>q�Q�P�g"����I��0	�,!�̃)�e�x��\�::����.\$��d�������j��u�1[�Fm~�x��+
����3b����z��UU<p�3�����1jA�f1V�:��X�r�̊��T	�L~hs 	+}3�f8~���b�Y��|�+S�{��o@�� bC���O�ي3��kŜ䲬W�]9|�7���\YF�pos-�>`p��&0K��E��k#���_�?L���{�����dsW�&)�������)��6
|��pC�����yu�cⴺ_��2��f�
I���Ԡ�P�J��HV��?�*b�F��ȟY�(�.�_N�
R����(���s����U|�ϋ.I�A�s
ȝb5!��$	��@|���$���F��Ǘ?K*��c� 5#��S�"rM(�$� b1H�s�Z�!��`���Ăn���r }�\�H�=�p�M�7�I[3�I&=��W��W:/����iϗ0^wvՐB��34W�թ����j�A�g$@K�?�`�5�U�s��Ԡ>0�8�	C��ş[���Fx�.�����8wф�9]k�F�_�����&�;��L�L��]����9'%�F>�8?�-|-nP��?!/,Ha�����=�_�����>	�B�������Eo���8!�++��v��]�+b�����uV���5oʫ���
��6\@C���R�?�ym+����Y��Ŗ�,�h��%�ve�����_F���6�	���~6�=�hI�A���̆a�G��٠N3��+�
��T��͇�.�tGSv��/mI�5s�?m�CD��Zք ���uS�{�<������=IG��C�+�'*}ɺ&�S�bqb,�w�3��s�y�Â���&����R�LL�5i$�=rg���%�B=���.�$*Sۇ�R�r9B�x\�\��[��ˊ��u΃�ʸ��EY�z���﫼kt�hʮP�Um�����0	��
O�w+2(,�'�L�ϭ{y>*��wWr.I�ʓ������A��.|����O��vyVa�	�)�����yb��܍�NOu�4H�;�h����#����
�|��׾���
ۊ����"6�͆-Y�����w6��0j<I%�6�M��#�sS<`�J�Շ�'���p85>�p��y"�\X�L\*��B.DdSG�����ID���i��z�8,�x�L�(��U#�xoG�~̘S�e�~�흞Zx6���Q!�2��l�>��`p��;��s�đW�����Ft�= �:�ᗮI{n1x�6��S�̜�L"$Os��[O��-� E��%���� �χ*s��dvS3C�2��L�����;lXF�A�b�<�������w���0������A��(d�a���:*��ց���[p�0���7�1#�,�+�v�'M{�C�@��U��Lx��Y��\z��.���0a�5
��=�����^b:[�UJ�|�&��LS��
�S|�y��.,�7� e�ѫ�=tL�e3~iу���nw1��P���ï���S��u�*K��=X��_�����`әa륮�r�W��M�:a��9H��:�Nc�-Z�c(ը�Ȁ����Z��D�y����.#�ϛZt&s$��"	.
XR��H���qe2�	{�k�W�UD��Jˁ�O�
՗T�~�l:�������<v�!��yM�P���'��$�6�KUm��tg�ס'�!9�%|k�C��o3/���g��sd��GQQG�2G<S8t<�/1HD�}��5����X�v�KL/�S$
��x�i\�qS��$�h�b�}���w@M��[��_f�%H���A�>b���|i�.�6ߚ���z�C���a���w {�1m�P�:��1��ӈ�g��*|P-�ikB]�����f2@4xXX1J��&�4��Gn@�t��t|`�^e�>>?��V?������A��P��W�a�O|�-����(�Y����K9:m��Ɏo.(�Q�$�����f�7=!��Lkrn�\��:��~�Ҭ�
�k�S��ߦ�a��05J���u>�q�<�\�T�7��ڇ����8��Nd6�����n�|W�)3X~�v�3��8q0�d�8�F<n>SO�_���SE2N/H�L�&6�b=c -g���V���@���M�5O�"F4_����MBឹ� ���x1ƙ
��\[�j�R&؃V�p�$,?�VQ%�|�B&�v��d�(�9HŇ��iV?�TK��_��S�Z��
�*�s�~���,�8/��#�7:�	�_�L�\��`�:�i�*Lr:�n*�����8m�I����T�j�a��~�+ᘋH3�(O�
���
-
���r?�V�K4,�ʐ����b�R�4�3��>�p��2�q>���sT�W+��*]0��1�*W+�f��`k ��ݡ!�_,MH�'M>�	��H�Xl�KR��M7���fU˝�C�P��e_/��hBq]P�	�N�7T~�yfV5O��d�9���4}
܋�� ?��	��?�M �:��6�:�~8�G�-���יu���3���W��/�t+�:����j�~q���f�,p��r)�#
��E�hdُ��f8�F����;L�����{�f6z�q$oӏt�Kۅ��U,_˃��D
����:۽N�S�,�@S�P2 �/�45/-�1v^U:�%�L����?s���̭@B|�<seE�G	r��%G��>��dq��gP>�O���^-ْI`�_�W���rU�u[�<�-�$�����ӒN��À�nXVk]�2�ո~J�N��&�NMaE2AJi�bG�dj���~@à����0�Ppl1ba��a�ďՖ8�0|�ŷ��+ϥ�Q�w������#���`?s:*'Z`
���E<T�>4���g���ȠK�������a�p/�7��f�"0��w
�����;��b�	�zrk�KM\9���K��ߌ���ǵ�}��]0g�|�s
E�\JIϟ��樀a�������Q}��7wH��r��{�a![�$�Vx�ޙ��I)��;	>}cTY�N;��3�~�F�A��+(V�}�gLj>3PC�Z��(?[�ϩ�ܖz�ct�?S�c���~��DY�����%�Δ=q�O����<w�+�F ��@׌�+�O��a_�w�f��3�0<��ڠ�R�5Y�$`W��B7�����$�)d�U�O'��V�b?
��Л����HC�0'��ǽ�x8�����T���>���������@"�����V� ]������%�{�fn��W�Qr.r�Æ��^Q�X�K�8JE��6=�;��!`���3�0�	+sx��h��_�S�1�a���`����x�+f��=��{�K{��`S�hH�(T�-R��k���2_	���O'�3�jj��}3 z��<�>�p~���������q�4y/��/X�T((�ݛ�ߎ&��8�F=�9`�|�V.�q�H��PQXS0���r���W@�*6��.�
�n�8sq2��Gg
�n�$p���΢�e�Vxg���b��f��$0z�=��du ?1�2s��=�C��_��C����e��[j0V�gqZ�?�?�as ��û�.&��������7�u��3���0��r�1n���dVMK.(�廙�~���T\?kT�Qk��`0�r2��Z��k��
�L�������s��_�"���yQ�񌨱S���T�){�����ba��Z��$U�>�Y y�:���U��̾c���zNXkf��߷�sP¿&݈}e�WNh[�묣N}ᨤKb|��>�K�	�+#
?._H��]�@|���tJ˥��c׆���+��U}���Rb��iC�A
���g9���>��֡?�|q>����x:�)E񃬮 	/|�s#�p�leT8ז�x~�"����B��z��"q�
n7ׄ
�?x��5����uޖ�bD~r
r�^et�i�z������i���0��?�t!N/����Ar�� Et��\5V���r ��c���KB�iAA�`A�ȟ:��c0
LZ��p�rpR29=��φELxg�~s��\y�
�$��
�_,l�=7��?I�������q��a�B�g��26/�5h��\~�J8eE��m�j�e��{���ʩtԕU>3��q�	�j�-��8x7E(��J��u��s��t`/�p�������e_����i��cs�z{!�'Ս��ߧ�gW���Û*�}8��9VK>�A��:⋎��ќ6��Y*�@'Njq⨳J$}����xZK���=pe�C�0(��}��D"�p{��hW	E�~�&/�eV�3JF 8&ZQ��s�#Y~��j}I�D��ʶ�,P������ٙD��	p�@��LUy~#�to�tw�K��1���r�>u��a�L�R�2�����Ot��纋o�����?6D8�nO���
��;����N�?��2�I���0G���W<��sG�X0�6�PK�-��"!� ��8”Q~��.�Ms�_,2(�R�'����uѰ%ii��=��ź5�$��\B	��ph��
4Is��z�k�ѓ$rVg�4�v�����<~�1�A���(����w��>�|h��ʹ�(q`�0���׀��Ǧ����j�1���@�S&(��P�䙙��m�]<H�.�OE�1�S=#����Z'�X#�p��/c��[*��=WǑr�C�O���r���}����O��"�=D�^̆P�w���š�7��K�:��[��L�Hk�t��x(r��'�\�C�$��P���*��
�۝K*�����]P c<<�#�.��|� �A�a28�1���G:K8=����7���_�Yp�SOv9k�j�:_̪�mr��,�gA�~�Ծ�WxV8��֏�xL~���ex	��Ǧ��LhH�M�ҦII��Gr��ΠM�貐�H���N�ɧ"�φ������O�1��*9�����}q�pe70K����siJ����,/���PT��=~��g�M���̽z��MW�L�J"xa�1�ڝY�ZA�HO�~�8��ǃ��~�`>�w��%
9 an��ߣ8�	��U�t0�������.�V$�L�h�\�i�U�"s�����>�_��da�����KJ���$"ѐ�h��-p�i���>��\���V{���~3d����H��X��9bRfÄp�J~w����r���)��=����G��I�M05>�u܏ ��?�uP'��Q�I/�ґ�=w�����^ToKW9<m����AJ��r}�-�.S���J_�OM��+\�ʖ�q�_\xc���E�9��yl����T�pjFO�X
/a2ʤ��p��y���p"�qڡ."���p?� .�"0�7�S�^��>��y~�S��l>�X�#�
��I霭�f_�LDz�Z�����M@��=ϧ$����1J&]��񂶮��<�ƚ��!���/l�:����1��?�.��_��PT>]�{�̃��Q���j�����ġ�d%N=���b�Li���,iA>��8'�s��2�!��Ӹ����" 0@������:�٧��3;ʋv#m�5��=�HuYfn�`T��R�k�W��:���nz�י�\����3��)Z�y"W���W/34�[�'g��[��w�;�33;&�_UH#Va�G�U�
�3wR��5�R*�[/����,O)�׎�u��t�����A�?[�ٳt�:!�7w{ǥ�X�F��GA�s&y���c�+��S��g����X��ֲ�?5,,bA�֠�Mz
F�Gz&���Y���zzL�0��J��wz�tA;~-T�G�z:N���O|�EY�Z���`by�tM���D����"u�Z*�
�ш�� l�٫1+7��Xăe�Ǫ�Pc��W�?��GGg��{�g��v���%�F���w�&�^��3�P���11U�D o��u�ꭔ�|o֎�c��:�&�	���`!
��>�J�J;���M:����<��Db&f==Vk�^��d>���tz�Mߢ?g[��� ����WO�{ �|{fMUVftLC�L���޶n���{�G�`���G���Q�Vz&�OXoG��uu�Y�03�!�3*T��{������=z�vn�;���l��w�ި��ٻ�oz��O����W�̌>����~7~=n���ٻ����í�͛�OC����{����d��٢��z�ޙ�	�:�&`)�U�|��n���â����v3wG�z��:ttv*|���[����L%]���1>��!Љ	��w{�S�݋���w0;�Xu��oc��;����:�BD>C�g�-�32g�wtf�����"�䚽l;vM�ɰ�1�J�K�������&��� ���g�a�c�������;h�����
6��Ҭ:ã��׭��Zԡ\�?o�����O��tvn��Y7�΀>7G�ᕋ�,Ӽ�~M^Ķ����c����3�32�<̛�gY�C������&���ٝgȽ��<c�޼�������~5V0�!��G��|��������z�������6�X~��m@m����s�sߚ׭�8�T+_�Ջ��t}��B[z>�w�Ztw�Ќ!7s>w�<�t�_=�]�K��bV{��ۗ�]�Z�W8���^��������G�Ώ��wGww���::#���&`vu�XM�U�RʏGlR2ַ	�zW��������q�u�t�z&������vfL�3���WEw�GWO��	��|���@�K�'O>|֫�kZ�xʕ��+����hFfzީ	�3�'G���dS��wwwwwwGww���4����
�f���n��z�6����u�H�M�G�����)�~j����%�%elW&�c��n��f=ftu��f��n���G�i�L�ϳ��)�C�ޖy�zo�K�9�Cb{��q�p�n�遞|�ά����z޵TffM��3�K���!5FΖ�
�ݛ�+֖�W�߬�5�ߒܭ�p��T*��1��ߚ�m�vyɣ�www`���Lf�i�utwww���ϝф��^�^3�z�����jۑ9�Z
�j�֥R����)^'�����Ž��!~����G/���9wFn��:3{ș�3>�2db�Bn����!7��w`���:�1E��Bl�i�J&��A՘��VmކՄ�Y��0GO�3wGwww}���޹/�j�TG@&�~��w<���Uj����m�[{���w�*�|����ȍJ����I�*Tl^�Ϝ���u�0���bP��wj�ގ�n����4��R#T��<����l�W�L���1��&cG��G��C�2/�jq���ۻ���L���fg��]X�,�jU�����w�lbx�;����9u��>|��䯔�[a7t{�;��#�m�@��X@��B���32b5Ȥ���a0�;��=o�dٽ�Z�*g�*��=/��!`J��wH��K�|��W�遝��0	�tu����v/��I����[�z?�3&ff`}=��Zy�Q�G�s;b��޶f��:��wwww~�'���B��E,Ĩ#��O^�hw����fg�u����3&�]������X�����w���Օ�Ϝ�>�a4���z]�GwO�URh�n�����ׯ^�wwS�R�s�鞋��#�����ߍ�0;�``y��٫ڼ���dfdD]�/��w��s&����޷FȎ�]��7w�����g[�'y��C��z]y0*�,>����������ګ3Ϝ���<������www�f����g{����Q�ؽk�_��������}j��lײn�������wtwwwwwt~s�vAm�����j�ỻ�Bn�}6���
�E|�J�=�W<�������6��;:��3<�������݃��ٻ=@B/[����]��Ӽ�ã���]��s�97m�[�ٝlrTLH�<�#j�s333��l;��n���L��gl_[�c*�g���o{wz���=��;���������W��>m�^"n��x+�}���;���P�)�|�k��\�>|�`L	��j!�	S;:�j2l웻�f�����<�M^/-|���`���dR=.���
�zމ��EGwwww`��1��|��X1�7m	�Kn�ǯE�tz���B�����$��n�[6lL���z�97s�a_!����a�`&a7���	���f��@�D��J�M-��j�cVo�jW��y�:�-�w��W��6l��5�ۦd�a3
�I�U3����31���ɘ3�$ɟ�31+V�p<�ʔ/_'�\�KP+��Ե?���P��/œt�<�d>�,q�UY[�%B&oy��&y�
?��_�?>|������<'�x�y�x�|�Q�fa�g�9��x�ĉ��'8�Jʶ�x��ʜ|��9�����am�k��hWς�<?�x��}������qM��6��	���HP���~3�jV���f0�oO$N��+_����8�\b��#S�T%��O�Z�ġ{�r��_uob�kv�InJtG��UeE��^6��%QL�'�M�������B��VMQRa/�/��x(�3+_)���8A�,V(��zyNOЛ�	�$"��eZ�8K~/�2�[q��8ѩ�V5�ג��`y���)QЄ�i���0�t	b!�Ґ��f����X�M�j��[Afv�pF1	�����c��8L:��6�kQ��^�`g��ފy?G?3f���U�ו����R˴�5W��w�l;ηuXt�ʕ��ɱ��<�̙���5B%V=?ƆleR�Ò-K��'
E�=�e�@�g���l4V�g�V��ej��k[�F �~c̹�o[�6ĕ��1�O>a<�e.��H�F�D`D;(ǽ��0b0�y�Kjs�㋰�ުۺ�)/�ݥ��մ94��ZZ�+,U�,~b(�/i�+[�3��� =�,���q]�V^�Pf��VÌ	X�dbŬ��V�f����y,�	ʰ+(�<V1���K���W��ߔ��Qkm1�� $�y%b��^Tq���MI���p��2Е��26,E,�uIgz�މ�Y�!�I����Ұ�l� j�B���(*�n��f-Qeg1^&��F	�Z���"L�j��s��VjV(��k5wA
���l-�2�*g�]�(�̬Y�gz>B�Ǜ�_�����6J�&�~�w8��/Z���l� DɄ�+�֠bURU��r�x���c*�r�ʄ�#���V��m�z/���*5��eUZ��y��7��3�B*��Ĩ�3�K��UZW�_J�>�z���FD� �2��W[%kiQ�L�+V	2� %Lg)X���]L���J��"�k�kB��[8�t�m��}A��^��&�A���=PY�	���HʙҖ#	�+�Z
ʻ{J6k_!���W��XFc+�,��СT���5���E���/8
�����hV��m�#J�}���f��j@f�0��Famo��o�fRmݬJ�
�eeG��%3z�rB1C�f��՛5?�0���w�[}-g7/����۴X���ĬgTi��G�G���r7��7.3�mI��(yČ �ӧ��I�bd������;�����;[���4c���Tl�啣+ry�����ފ�3����jq���ӥ����5�=��p��z!Ф��www����f���&�!�)1�ky��U%�+�+z��`�3�c�Q[n�U���L8��x�8�>|��V�1���F3��7q�V
 u�����V��]��3�v��'����9t�cf�
�,F�K�A
�J�Y�Yݯ3`JV�1}��t�U�Q<־a2='V��wfd���<�P�/c� &g�˺���~|�_Z�,��V��/�nև5��5��XO,HEZ�՘1-:�<�����9�ZG��ŕ�iQ�k2�;c�fg�!tWw}n���'�ηtwwv܌����@�ֵh�j*X��%K�k��l�򟦗���QwI�D�vڸ��;��m �D��3ʙX����;���I�2Ҫ���\�W�j�1���R^P�KU�r��9*T�aT�%�������)p�bB�H�	P1��Ofkg����e�7~wwWY��3�@�1Л�%��kR5jU�%��k����,=5O5��m��TGY�J�R�v��-V����W����q�[)w�B��],r[_^G�����������X�^�4�Q���%�]:z[r<�/�UXҴ*=r,�D�	�˵���U���4�>��V5!�_�G���3�x|&�խ�*�ۊߚߞ���<?�f\K@�pG��9NEݷ-y��?����cd����Y�%k�������y6�!kZ�PVrZ�+yec7k	�&�����韡e�z*ִ��ߊP�g�śyfT�?�F3�j�Vͅ�tuu�� �*YV��8x��S�ơQ \���Z��8��9Ey�%k��j��U2�en���J�3T�����y%&Z����#��[��~&���b�B�պ��|� ޵��ym�r�֍�(T<�U&y��?���_��>yx�)Ue�<u��8�*��kT+�HB^�խLa_)ZW��	�u�V����t��-��P�Oi�^n#��'��DZ�8��/$x��E?Mj��#R���
�@33�9օ�Z$ޘ~3ϒ�s[��b����Fʼ\��-�od�=�_+��j��uV�K~�?Ѵ��cJ�A�O-RͿ7M�E�_�R�q<H�|y"��"�����)PL&���#7�ƞ|��1�!4�r��!�U�x�+�v��ƙj�j�'+�KzPjkB��SFfdB��(�B-��**V�E�Դ�cO�i���?��kqmyK��T�N@*��U�1�S&y({�k��KF�[u+�ڒ�3''=�UP[��ь�D�^/��b�ҹ3��A��3��]b�L�|x*�D�T�={�F��F������5�����k��F�[G׳��W"V%k�A���ד�z#Ձ�T�̵�����E�F�wf�����@fj��U��y[r[��@KE�%��1�)�~�
ĭ�`OUHů/'<��32g`��Řt�S<��g\�<ڨ����ʻ��fb�yڤ{~/�!+��D����U�^I{�Quj�moK��Yh�wG�m��i�h���ff^�,��z�A�I�^&�Z�7��k�^2���Z�0U�7-HV����"J�W<ԋ��}5���: <el��l����TIVլ�Qk22�_�Qcm��m*�R�`�����7�䭏%<x�玄�X�x�ӈە�y^W��+��~b�Z�xѲ������]�R�.���
�v=)0��P�ރ6s�% �͊�
�
����d��9��f1"�|���S���튄B,�E��nF�����Bm�7U���<��y윧�d�Z��fy	�O��f�fXu�+�,��0�i�w�1%D�h
<�V�	/*�'|��\�z�W���J�גn�RC��+<�<��6�[M�=�IW�G�_�7#T���a��]�5�Y^�.�VV&��ȟ�欳�X�/�Z�Vz�tƨʉ�pm/9%D���R��Z�<.��.��&���NK����<y�k��~���+�_$Yf��{��MǼ &KZ����^-�Yjҧ���&)+�Xʩ��P^�Yc�n�RUm�	�����9Fz_M��a+z�0�Z_���'���W���zq�X	T�m؝h�0q��n?��e+i{t���� ����~~W���%l�zrג�OB,ܩ����''CS�V�������:��`��e,��D�y�=K6��+DZ�,�#j���=���
�k&T����|�8+��_���Qeh�D��ێܜ~1�yS�P�jҪR���B�\�VJ4���M~�U��J�/�aXŻ++�+y�������G�����To^B���a*U��^�������F�gT��Y楿�bZU��]aV�^�����:e-�WW�b�2����ΪV���u����HS��M�X��)J��[�R���C�8��B�Z��f�K�~�Z��#[�������UyX�)��v�����F)8��U�*Aj�dJ��D��k_?��_��)�+/�f�z-��7���Fng���G�0�J�^��������z���KV6
�~C��׌ڍYS��U�W�UEkR��:j�7eMٱ��$֬Ϊ0i��!@��<��*P�K���:���#+J�F%b��gA�&%F/�yD.�iȜ�r��ib����R�1/Z�hB%Z�Vd�9n0�ԯ���|�-*�iS�a2�

���ܯ*�B�VU�ܲ�J��x�q� B"$ܨ����E�-�s���8hq���U+n$�ijҁ�pY�K��g#YPXya/�NA��zz3[,D��:�[`&5�,�|�3x���f��*�j*F��k~K�"�#�V,#+T���,�JqQ��?G%�v�\��[p�ٳ��)*.�('-aŞ�i7^Zr�嫌��3
�����Pڊ�wf�X�#8��薫��ciW��|T�+z���3�Dl1��0	����ֵ����5K*W���W�Yg�㜑<4em�h5Z�m�j�_H���l�m�n;
g-�/������TkQ�m�fyEB��c�q+�^*���8�K��z]������Vq���-[ҩ+��W����,2�\\6�N;<�-m��u�V��ה�Z��O!��Vr�z��e��I���@I�*�,�+fڈ������P%�kJ׏��l�SŹ-L"|a7�0�	G�~����9?0{�<T��
���NN9��JԅU���B�."��-y��_�r�J<��̭����_��%.Bѣ\
�����u߆��s&�x�,L�J��V��J�U�-�*W�o�Xق��Y�����ڼ���x�V��u��޼���e��S��o��*דcu8��b�V^�8���D�b�Mƭ���âr�da2��1���Q8��B�������&����0H�kUj�k*R�V1inIZ�V��C��[<L�\�yx�B2ܾ��������EZԬaTNJ��_���8�_@�+�Z���,! 1A0Q"@Pa2`BRbp���?��2	�C���_4��Բ�|0H��ͻ0HX�3ɟɏFy�2���V合-k,�'�?��L�����e��z���L��{�B�j�d�(o���+���Zc#��$��HI
��dj	|/�,J%�u�v�'��22��_��!��I(��t�i�����W�h_����(��F0b}p��$N������4�q��,|�������@��c��>Lz���o���A?�e����ޣtW�q�r��/����G��ƿ�m�4?����ٿ�2���#I��1��L����^�$[1ƚ<��H#I���fO/Ŏ`��$�P���$O���2,��5���.̢��a
���-!1	d��l��
	���2̌�����FAԉn���D����[Be�	-=�FM��|c�P��;_�/薙$B%1��&$GZ�>���0b�f+ٌ��R2n'�2c#H_�':k���'�]N��D��'֒�&#�)���df�<DB�������?q{0O�"{BjuN��L�d��oرVO≳�+m��#�	�zc$K�P��d>��d~�]�*FM�&]���$<�IG�?�:��@����#]����B�K�[��B�i��$���
��~�����@�t}�.�#Q���B%|Q��6�2�z�ҡ��2v�4B|'�'�d~���B�|�ĉ—��狃$6��$'��ƈ�Cc��
m��?�b%����B����nF4C'S�H_�?�����_32&?���K��� �)v"x!i��_Ч�$A?��N�lzKTH��_��c���j	�Є/�_���9��Gą�=�%�D�r�J̽>��B�����LHK��}�_2��1�|�����=����ƈ�X�&?�|��l��Ɛ�	�|���hB�v1�D��,��		�"I#�&&(ň\�[cc��=���B�!B�-1�(Z|�]B�D�m�ȅ2��$Zc��!	�\P�$/�d���c���9%���.L���#�:䴿E..G�1���?�=?�HB�1���?.5�Bdp�4�)�1��{���"6�%$^����Ƕ�u�Ld|P.3�0G+�����R2��!���{�1���،O��d�B��d���zR$��gOW�斣HB�=�zred�dddf�ԗ���S�9��B}j?r h�`�sFMJ���c]c'�b�ш�.)�
�?��7#�Pfe܍���z32����G
�?���vYZ��h���1�zc

�/I	-6^�BbE!1
$O)�c��N�h���%��(e
^��d`o�{1e�BZL�%��$5D����夙c��j
$j�[|��W�l����BEn	�2u��֠~P!"m_�'-�*!��Ȅc��<bJ����dԙ3'���R2)�r~;���&·,r.S#7����Z7�B%�7�����C�(���|��(h|k���K<�����K�(-�1‹�C���l���H���&(�	"�b�=1�H�3�Jp��$�IZI�1J<�C'?�>Z���E�Qη;z���TB(G�2,�B�X�H�^��n�{LF:BLS�2�͟�fP6���Ѕ"o�	)#�CDz�z��P�rYCM�H\gpK&�cBFEY(�	�"Y|H�H�[L��r��b���ҁy#�d|�$���
�	�yA��C+KU"�c0F05d�24���b��Ep�o��Lz�2�.�	�"I!.���9+w�G���BzF#]
�4���JZ�;j�Ō^�P�?�ؑ��d��)(���h�!3
I8�t�AZ�/p��li�H��]��bbcH��ƴ���q�ޟ(�Fy)G�P�,cc2h~�(���Y8?ѯc�?�7h�1�JӒ��p�^�b��R1 Z�~Zk!!=CB101}��V��I�tH��\h_b�v+;�-��?���"�zg�cRNS�1�HM,z�G��c�a�]zD$^�
�5�le�1"�cL��C\ɈI�D�}��Ԍc�rB�e�K-�ᘥ��f^���j�d��>�c�|^�{���Z��{d�,IB�-ˁ@�#��FKY%FCl�E,B�űNْ22�B���V_*,�GRB$h�@�,KLRF�H�7��$�Y��E�F�E�$���ul�(�A'�=S,���l���[��
j���prd1��t}�3�?�B�F.u����hzQ�,�
��\,�/TIdHD�c�ƆJ����(B?�Q�L�z���#^N��OR�Z��&u\�_��3�dOCc�9�2�d�C�2t��Ǫ*OȲH�ep���ԍj��#�zoKU�ohc���pN�jue�.$d���{� ���'RD���?-�Z.������ k(<��X��d3#/���Ǫ(���d�2d~�+�oP%f?ȥ��Dk�4B�x�JHR,�tQ[������q[����Q�Q�/Mo(2�c&&#�!�†�d���"��[��k�Є.B䉡��A$��J�!�7�s&s
Q.Hb+u����2���^#�v��G�zh�b����2��ӽ)1�}��DF�����F>Ϣ/�\V��5��D��#S�Օ�͘�P��Y�Z��EpZBbn��Z���O��K����#$fJ��G��V)1hZk�ƥ����~?�Zcd"�X������5��JI�葥��Q�P$A_�F=��b�3ix�%g�I�7\#��T��⌌��32�G��Пg�FC��;��F�9ԦB�)ej��K�J;L�*�ȴ��(��<I�I(f" Q�c�fC�=�!6&���%���1�#�Пf�b��=���n4֗	��c���;��W�k�P$N���61��L}	�L��8dt6���쁡�zZ�&(�8%� �&B�LY������c$J8A:�H�!	LZk�!�O�Щ��B�G/UƊԡ�5"���/c>��d�f$oMph��ō�P��R�(�:1�pzL�#�f,BD���}
����T7C�^�_b}

}�-�#�(�E�YE���3�B��D>�(�Y�T4���̽��Ǧ���m�4�,�"��C%
	E�J<V��{��_!Ɲ�hx�b&�1hIؙ�C+rW�-���LY1�%ј��Ɛ����	��^"�b�J�&�(J�[ ��"�=�?�h�_#1�fV��lc�X�B~��B������c�c��2��8!�
Q:H��"K�?C$$'�|h^"�y>̺b�`�}�
�23�&�Ů)�!�؄�1L]�t��]����Q(��!�Уi�!�/f0bc-�WF?B�l��q�#��}�1�,����F"1B1$�ϽY��%������ć4'و�m
-J���ƌR�ɡ�}����F��Cj�pc��RW&.��H�����>�(ɍ�^�E��p!"U!�Y/S�$�ĭ�/bHr�X�b m1�?�����#��,�j�5�tde��U�!(�K�F���O�|
��b%���.���dtI���oN
Dሎ���ղ1p&�9?"��H�i�ć��ٛ�d��?���Y)��R&����D3˭G'$�2�fO+ m�1�	|3��y�S�Q�>����W�1n2&�⬑�!$'�4=AD�l^�C�z/�P��6���Gޤ�?)'(�HLC�I-&��C�)2m��!i3b1��fR*t7ޔ4~#�'���^?
i�9=F��B2͏�NHL�1H�dųB�M��c�d��
vc�H�LR%o�8��������m�a��p��-�:^<��X���h�J=��f,��444@���<���Q;�!$K�Rc�M"�kT2�Պ�M�������FX��n�qU���'FQlm��B�$&A#�Т��D�B�Z�	���NO!
E%��cL�Ћ#R��cD�H�DZAHlm�}�%���E�c�c�/�}���rZdjq%o�N�GB�@���H��,\ech���b�KЄ�:K�l�YL��}���D��%1�@�hI4�-�(>����	�.�d�pı��$v�%�2}=F�1Ǒ���2]�i�u�=��]�Ց���ICNH˅�w��ŋLh���%|1��1#�;��Y�gُb/P8�!Α�������d���
;Hc�&dB��G�^��$-O'M��$���2�џ�a�*c���A �T����6�F��Bԑ�(��K	�B0]�/���,x�����-Ib�i�L^�d�)'��<��CG���#k���t��"�Ɔ1�p9�g�24�P"�-1���FL͙2�C~�ؽю=�(�r�NR&�m6F�n�V�-�
�-�����4�m����� �7#��cD�]�.
p��֒B���>�ⴟb D�5D�Kq���]

��s��"\$fH�.Ʊ�"�d�UX��:�E�V.Q�C�܉q�O_b�:"�(?)!�DbT�F1g֚ {�%�r�ݒ���t(�P�CL~"���Dv'���!�~D�N�qZs�ԗ�����,�'�
E����&Ad�	Z��IE��/rV�����5Y.��u�;�Ffmμ� �=�(���/r5����~�Ep��8�(�����\lE�"djt�rd��#ǣ�$�?��7�l�ta���d!���|T��p�A%���$�b�v�U#Ɉ�!�C�%jL���]j��D�"H{s�H�^��H��@�F|�‰r�� B�^��(~��$��ED>��L�<(���e�!�B��&�|$q���;�R2�$>2(�d'�y*2˲�bJX����N�PX���
'�Cy��ƙ/�O2NP�l�YT*.����X�?-ަx�e�Z�����cc�V���,��<\=P����lhM����H�˕��${����Z�YB�s�%���/��侇������رd���P&#.($O(f-Q��Y.F�<��b��6��/D�"v���C�9Q{�[��v&�x���[���9s��ެ��܍"������ؗ[�8 �Zi��q�kJ���PN�rx�ǖV,l�1<i��fE�0C�2Ŋ�ؕP�r�.��s�D�BLJ^�L�V��dIB�^�uc�����'<�q�ՐF��!-�����'��бV)'o�.��z�.���t5fyV�Lp4>2V���<[�q2J�G�"N>�r&,U�%(y9=#&c�ؒ�OC�زej8-=H憖�h^��'q��^ǹ��)"ݒW"%�Z������t��'�D�1�"�ыP$.��$�n��C��YH���F�d�<(M��Hf9a-
�T,���y
eFMX��.��P@��IB%�4�+���"ǡn�,���:�6��Ą%h��ۍ�ϱj�R+�<�D�O��C''�,�,���wB�D4f���.=h��2ʼn��1�cX�<pCˡH�R�%'�Q�⥞YH��<����i����vO11|dK����N��q�x�$�5o�
�@�=��di���CZI���r�z�S+�T=�&��<�G�GCW�9&�B'��K�<�<\G�$i�$�֔�R�rP�M�fI�Ho�>-t?z�i��:]ID�C[���$-αbo��#Lc���Z�m$6�
��g�!�H�l�->U��j�s�ɒ�!
����o(?��*��R��(�Fyd�{0�<�Q���M�Ye�	�!��ŗD�ipiH�x��yb��&7h��l�M��c�i�?C|Y���d�!��$,m�H#����B�َ*�>�$g�%��'�ע-���Y�ٍ�%,CSC퉨��cd��1�eВ�4���6y�FI�D��$t4�ĒN��،QT}��I��qd
�b��&�� ��"{zRG�6T���[E�R_	BG�5l�%�
���ɲ��
G0��OrA:[Ik����^8#%C��I9C2cN����)���x�7������RH�b�Y�*��2�5M��be�����{t?�#]�YB,�<,��/}��Oā5+I	��zi�p�9'.��y���4��Q�;<	L_�`�
tOz���$��W��⽍\�(:x���p�fQ)�#V1����k��d���6%hl�C<��ӡ+�	�ޟ&<��12��B#�5f
�9&ϡ�fX�$x���%b}�V��h�i	�(>�6A��o���8��K�F$����pGf"]J>��d�-WȒ�cг�1xذT4�ɣ&�͡$J��L�h�����I��x�㏊=!㑋�<X�/mE�vA��$زD-a�1]j{!�D��.G�c��X��FXQ8�5l�3,�Q�e��6H�I�"�:���;��)�EV������9G�f8�hyvȂ�p�d�PAqµ"J$x�cyJ3t��3m��B�S*E���d��_f?ɒhP$���~ʣ�#�#�11@��(�t���"Q
��߱����41��؞�fM��"����ɳ�1��E�H�4'���" 0@������,��|��J���	��`�#���fy[L��R+9C�y�<mG��q�{Y[D�*٫���r1<g�<�ɞS��n���ʕ%L�b#�|o�c�x��.����V���f\�)Ekպ�g�f�1�8���?�g�����037٘��I���UU�;	͹^8���P�X��O�x��o�ʪ��!r����Y3?)������h�[;���	��3O5o�10��_3y�L��UW�>5v�_,��Y����U��`�*�g�g�6&0�b�<fE��a�����U]�L��:w���?���������:#����r���f/���f���$j��3ֵL��s����yȳW3��c�����u��V�9�� �|�5WH� ���0be�Y��9���?�3���|T�*���3�yR3`~��� ��>7W:��_9��1?�1�����~����E�fg������y�bM����#333?o����u����� g�`fý�3V3�2'�);��0���&�n��Uc	��33333313=rbLG�3�B)��l�g�Mc��ɾ���2`x�x���Wt}�.�6��312'�3113�yb`fg�30<���L�x�ɟ���"�u}�Q3;�*�?��3<g�L��33?Y����b��x�����33<�g��F��w����;���̘�3�d#��fUH�3�d����<��������?�Α#��|����?�ɟ���3fC��Q���3#Hk{.��<�~ٙ��/��dٿ����32�~��o�2%�n���'���7w��7wu��������#�33�������͵������s�O�<���㫺~6?я��1<��?h�33?��!�"M���`g����T=Z�W��Ǎ9V���Z؋��fT�97|����_��#	��3&xg�fff
�����*���;����ƿ��֬fRc+^\k]K��ץ��mռ�P���������)�]_�囻���ɘ�+v5
��� ԯ_��z�!δ[�zo��*�&TLɟ��>Q?���03<&fd���3�?�=H��x�W����-��B��n�Y��33=J��3�1�������?��,�Ę����뙙33��g�fL��L@@HU�R��X���V��x��M8��^�Vs��o��Y�1&�<d|�D�L��2f>E��Y��|��-�wK6�֜͘�Y�FV��>5(B�P�N�zFek�`�Gw��x�>o���n��I����2��b��fc�08��=p�¿��+JҼ�'^uU�~\I�efv깚UKl�9��!'�&!���>2fff&>rg�C�噀Fr.�33�M�G�C�f0�~Cվ�Z�l�l�q�QK�^��z5jեhЧ�S�� }~����"ď�Q���7F0w_���2�U�����ĺ���fn���nµ)Xٶ�ZQ�����cV��WlOT��0��Ɂ�03�!�1�x̥z
C31���WSw��T+S��D�;��Z4j�]a�J����M�Cʎ���"j֭��d����C�33<<"ff�`z�5L�33<?��E�|�f`�+�۹���W<
���f���R���ݷ�[SʯE|�z�dɻ������!��)"&f'�w���k!����,���������;6)�����]��N��'�o����eO�f����<f>7Wvn�>�������0�L�-���e��f���Օ�5w�<��oaə�w_�~�Gv>Y��7+DɌODbfV����W3?��������#��%j�fff&g�݇�+��ww�������</�mf�K��q����_T���ɢ������*�ȹ����	���
�Dk��Z��j������f�w|f|$|��a����f����񙉙����0{���n��y��D��������9��Un���f&g����R��.�����������ً=s33��LƩ����3�|�g��B?�����ĭk[2�ըz5����8̙�������������-�WT���������g�͌���rfG�y*��4+��W��u�͋�����)�x��?����L𙙁���6o������������L��� y<���&.�jԢQ�=�ٿ��u���Y�7wH�t����1?����������6ff"bz�d*�Uf ff59��L���ĉ����#�Z�I�ȫ�^�m�1�%y?�	�U�#��Ս�[n���Z�z�g�g�_T�;�Y�
��k��p+n�{�X���ɘ��20��<�dD���Z�կF�Zک��5�n�L)����S�f&ffbwtf�{{]����#����[��j���:E�͗w�r&L����fm��%zn���谏�}���*Ҧ ?&�ff���J��D�L����X��͋{+�j" 2V0�'��fx����L¾�&�L�f,�fd�ɻ�1�`5ȫ��컻��2w<�_	�����/��ZU��&���	�Z���Q̪-��o�0�Z&�z�L
ԧB���\�v"�n�_%��ꏍٻ7ww}����Wwwu�}��ub�Ql\��ʹ^n����3+m�Xض�>�}���t:�f���|g�'2���E�:��ElU��Mٻ�[�~ϳ���Oor���͏����_��:�ۭ��o�����Q��d��A[׫ַ����>?�NT�Q�u�T���W
��'O��o�tz��g�}�a�������J���jQ�R%zlL
�_j��wW[
�okZ�"���љ�Ū���]D[Z�FĤ*�V
l�a~]>�Z���Q�g����Tx��ϝS�kʼ�T�:133)\ʑI��ZV��$ʢ�S�F�+�3kj����U����q
�V�������ժ�D
�Q,eZ��P�ˈ�c㳪y�%C����|��yW�u�gS���nn%T̋i���Qeb���8�^p���FV#3j�ef"��Z����ʼ�OC��7+[LkX���fL\�����9�D�g2q{�g�bV0���To�Y��5��h[w��>?G*�#�T�W֔�m^�0�y���~�Z���m��SԬT���M��l���ک�c0}�C��1�U�c	n����k�YHL��Zޫ��'�i��ZsΣ�9J��F�j���zۛ�Z?%�"��o�j�kҭUVb����*�j��e���b�Zs.մ�L�EO�:^�[�:��lޫg�z6��r�ߛx�	�D���m+bʫ�x�eK��Y�x<�a|�U�y��V��'�v�7�>GN�V�G�ke��V�Ѝ��[Wu�_�Wֽ�����~�kZ��
Q��VR�y
�*���&R�-8��8�k(LLګ�Egۍy�o�o>��ckڮ�[Z2Ӛ�k�ۛ�����ШR��K_�oS��׳�)ڭb�`&�M��I�V1jeKT�ZV+ם^�~_Kʴ+�U�Ig�j|��kЊuJ���ضћf������O�ӷK���g����OG�}{��W����R���ϰ̤QfT�Z�k֬�~[[��T)[Uc��O�����ԯ*Vg219�50�ꓧ*�D���_Z��קj��+:���6�����ꏍ+�{貶��Ӆ��Kt�z-:�@�Z�y��ٍyٶV��idV�%�F̬�z�iϢ�N���_fzU�Ҳ�{��R����6�N��+j�E�[Z��-*Dk�<����tT�6��"T�_�����YP��]j��fxٵ�^�+;ޥK@�ۼί���^�T�5f0#+o�z�cv�B�=}mJ�kW�V����}'"�,S�ޜ��X�YD�^�iΎT�,B�|6����#�4�o��zJ�sm�LL	X���8�J�.V���w��
�^5��G��0	��L,�qթJ�T��eeʪ*���K[���,X+Wկ.�>OnDV��2�~�UljͥRw�ʚ=_aegX5Geb,�&�ej|~mg��Ҷ �R���W���eJ���ZYc,��J�ŹY���x�F��e�R#8��4Wv�l���7�=
��{��y����j�w����O����Ow�:�y�\��Z|^��N��+��N��-�y���:6����լ�K�n��<+�!�tv5��������f�5ki�������ٵ�0�"ORI�P:���,T�_��g�3�N�9t�ۍy�
�l5>�V�r�+9ʫ�ߩҧ�5��0�3q36$�*%X�x|`B��ˊ�+ȁ��hի_F�����b��gȊ�Y��*t�b"
̴Q��ϫש�Z�z��Wj�2��mV��խG�Usu�y���*��a2&E����MY���ʘ�T�C�ZV��S�[��{Ӫ��`R1R�>���X�B�I���#�� �e
P�o�^m��[�`•Uy�ٱґk	z���v��	��&�f�QXFTKF�n�YWUut��eT~?[u:���I�ШF�*5�����:u��+snu�ֽTkk�Z��
�/שs�)���{����j��m��1k��:סhS�k�7ٱk>���c2��hy͊9��a�@eL�\��9qy�h���E����X>/{��N*u���E֤R K��he~7��MjQ>M~e{v��DyS�G��P��TF����\F�YQٚ�M��tY�kVdA���X>��Fŵ�س����[i���5��@�m�
�l+V������҈�<�^��ʔ+�[��Z��eeK
�t�_�؇��y�?�[��p���bV*�u�ŘOV��Ң��o[ޕ���M�޽
7�������f�=AR/���ecT:Z�Kѹ����Oќޡ���ʵK�^���yey�9��?�>U>S���׬>�j�uD��-+[U�Ҙ�/�+[Y_R����x�o(U���#D��:���z6�ìPkZ�(� ��akZ�J�K�nt��*�'���(�z��R���ԲK���z�>C�:��厵�|��š�S.f1�Y�oWMQ[Px׏����<J������fV  V-V˫WFU��*3�!R犌��ex�����W�g�à��P�Z�O������DB�8�䞥
B��u��,"�j*۟?��9u��Z���nWz�ջ�ܯ"Vl��&�DRaW���&����[�I������t�ys/*���֟'�Z=z��ӽ���۝�R�v�em[�����0'.|�z�Z�~�r�ەk=�}����TZK	ZbҸ�^��ï�>
~
i��A��9/|���U��b�V�"T�y��Bcʵ97w��W�|���Ժ�ړ��|��ۏ/���tz�����*�*�ۭ�˗�����^ޭz���.�Z��
�+��J�TH��#M#ٔ�_�vd"�ק�t]�!B�������X�j�_b��V�@�ƮE�>�wk`e�[�]X'ɯ̭��*q��<�[S�?������r�I^��%�|�tX��Z����=AW�}�FV{{{6�:7�͉V� "ج�����z�+j��գ\��AeiZ�\̇���>eү���1S�`u���mo�שj��U�E�h5�ί�*�_�n�O/�^�۟���^ջ:t�B�x^�ƵT�f�;6�9OT��]�U�9�7�;+�G<<�__�z7��3�jS�Ba���T�kU��f0~������k����nM��X��7�j|�w����������Z��,��m��|W�?���)ũV�[t�E�[��T�O�͡�2�KA(�V���V�1��y�kV5hֵ+.�eE"Tj�Z��	S�V�H$l58�%�������jڼ�zח�c�/�lѦ/K=O�N�r~����<�Tϙֳ�9}u�j}�W����b�VS�ط�ڴ�F�QC�*��v�7*�"ֳ7Gf��®`i:Bk��확�KU�k�����כr�P�;�Z��]��֯e�����KN]���YQbtz�Swj�F⢺4�۫Է9^>�z��[k8�0**ʣ���__Y��7_b�
�����o^�* йI������U����#[rB��N��#Lk��+�k��z��Q������S�;�K(ujuY��NG#�iY߅y֝��py6�mfek�M�OQ�=�f��
��3"�f�A*��ma.���*�VJ�T��q�ִV���0�x�j�Z�/6�4kԕ�]+�A�2�R��4jM��ϒ���9|n���/v�V)\�nJ�a6���EUQS��.%�~Y��J�9޵�*_PF��m�v��|˹z��,�
m��O,ÝV.�YQav�cR��ݷ<T��Vҳ������զ^g�~�9T=}�uK��P�X��L(DZ���V���,��s}`{Ug5/+m�x�^I�'7Q<�e����
� @�/_���+{�T��k�oO\
�ʒ�+޴�-T&��aP�X���j���-��y��$cV�9�1�T>�*̭Y��Yl����O�h�y}L�gWw�[T�
�ʋ��Krh���<{v��x�N�y�|`+j��&��(�E��AZ�+V�^�j��T���a~I�eiѥ��f-Rn�-(�x������h����������K���I�+��j�ŋy�^r�N�SХkR�*���[<���"J�KX�m���kT z�l�m�H�Җ��+{X�����fV�����-*�8�^Q����S*�Y�tU�&�mW3�F5
�c(�9ɵ/�Y+�>*���|2�oj���f�N_N���Zul�·�ZV���[fը���ecz:5wv�_i��撝D-Ø,��t���-���́b�7e��3+�T��	��kf&�-��0�
�"U���׵�j�mVt�V5b�c\�iU91*�3tF�fn٤�܏9?�O����o�r����x�?	��/�N�/O;X��Q3Y��ыo��"�@Z�sp����K�ڢb���2���V*V���a|fd�J��[~ձ�zd [���jc�O�O���'J�:���4�T*�K�̵��7���Yj2�7*t́��Ur��r�F
�*����H����ȹ�Z��͞��—�^O �μ�;�?4�>f@J���s	�7��_�^h���GA}�ɭ�`
�^��kZ�UݠM�U��5b�(�^�f�c2b���[��β��5j<�}��=��U� &UnG�µ���֦�6
-TݢʡZօHۣ�mY^YV�0�V��U��V{bncӥ�}YU���D+�7A5[ѳ��֗F��Y��(D��J����*m%K�Z�zuJ�sv�Z���V����|��ޮ[��U��h)��Z��.�jr(V�dj��3&|�����5��xb�ĥݪ:Lzj�>j�Z�ke"��j�9�r�2�*Ƽ΢��e\�G�����oQ�nt��ݕ�K޲���ī�~h3ߧW��a%�m^��H3uUU�����	�&d��n�UH��t��J���^��R���]�Ff0�kKJ���t_k\S0^��*'Nt�>��T�iD����v4��N�ag�&٪�J��x>��X#Ҭ������2�T�|�̧2��Գ1�^���&6J�բ�T[�T������Hƀ�H����kȷ4�k��-)5F��J��
�}��V�;߱r����Y�z�����%X�[�[yV��4���Ydj������|{K[KV�j��)��ֵ�۔C�����@6z��WF��T�ՕWp猥oLJ�ؾ(Z�Wh� l�7�JH�v��mm���.�~��k�N���P���ǭ����̩KVՋ2B��G���5{<���8V�؋�E��z�ʱ*ef�ҵ-iaP�v2�<�Jꑱ�T�Jֳ*%mki��?����%�Ug���g���/!1 A"0Q@P2a#B`R�qbp��?�~�
���X��+�,���{{R�Xe>���&�!zn"Q,B�Ql��e!�9l�����$/��
&�y�Z�|Z���]�+4Y��
?�л+󿖹�\a!��_�͊�6�z���R�DY�1�ċ�4>�(�f�
���h�_�_�_
�]e��c��h��{�d�+�謲�C�+��EW�7�Hc>�c���}v��u�����W��7�k�|{�+�H��R��u����th_#�5��-:4_㯂��42�AB˿��zb��^(���v_cd�h���$Β��‘zFQe���Kh�^�$DU�b+���_-�LU�#b]���e	=�"�6��D��O]��B����F��"LM�伲��l�ٮ��c�ǝ1����
Ȥ$!v!��!|c�c���c�kx��!.1Xq/�!���$N�!J[d+L��rx?��ï�Ƅ>�
�(�Lk���d��K��f�El�Хچ1���Ǜ�����7Z=F�/�W��bgJ�ЙX�t�V��W��(|"_e�DB���j��$��o�,�ب���J�Ŧ*$|e�_f����G�%�W�וڿ	���LJ�Ho�!w.���xxu�X�6�F�$�$���Yc�lvh�ewhw�<l��Ծm~�Li����DDE����Z��Vư�/�?�_.���YCE"�{u���Ck�_%v""�b�|
-�}���YK�[��QxU�_��ϼ<QXO��?�_�e�Ȉ�LR�ȕ޾d������bc�64:�~ʾe�Ѕ��/��y���!B�4P�!,'�G�+�B��l���᱿Ů��LO���m�(�_�dž?�cc�a~�v�ű"��k���~jk�X]�(B�x��B,�C�e
�%���"_:�B�B,���^W�?}�,}�TQX٪�2�S�>��d��"�""�Ws]�	�����Y]�1��2L�%b��>	G��kD��"(B��XBeB�1�HB��+7�;�c„/��c�b�^i��|��}��b�(�v��hl�6<����c�1�cc�k�B��,X]�ث�LHB���)ݢ,_�Hc�"�+�Br��gbY���B�m�>�+b���Ƈ��k/��(Xbٯ��v����{E���P�he8�y�>�(lc7۱U�!W�e����Ŗ82�)lMb\
|(B�/�xc̄_�NJX�}�4>�E	
N�/"N��፳T4��LDE�!!�ɱ1��<?��P������Coe�%�F��,X}��1��}��hV&"$p��j�����f�P�F��Rŋ�"5b�$kC���e"�S��k,hu��"C.�6(ƙ�qT/�Y
���wG[:}E"2vG�V�7�䘱E��_��c��}��YL�!!B�Xv;��Պ���#C�Cbx��J��Ol��q�{�T!	BL��F�$�#{"(�.6DQXT%�]�������4ZIj˓�(�I�Ш�b��C��1P�c���gG����]��b�(����ŕ��/��W�HF��w�z�}ѫ�arX�Ӧ^4k����]��{�AlNT�(�G
m
���n�/$9DkH�\-�E�f�QE�#\cg�vH�T����lhb����Q��b�E��*=�Z�!t��f�Q��Y��ű�bB�~�\�,��EvWe�y-��Ѯ�e1b�T{ow�(e'g:�z�ۢ2�	=��t�~�
�[c�(�+��Ht*�.�^�bbV�	m��:��?=6��h�)�R����z'&�GLe�V��O��5���ǍZ=����$��1���V)�4Qk����پō�h�VΦ,TR#Ӳ)"������污��c]#�J��cOD�d��$����h�>��o�)h�il~DУz ����42i��*%[C��WbP���hM��i��!&�	Ư�$V,��f�Y�Eᱣxcz5G�"��Bc�S4QyL�.�

�f�
pHo\����Y
"��S	2,VF���Z+�*�+��>��ֆ�]��Z�
�~:41�����y"G���Ԉ�X�ة�a։e��V���V#Hj�(I�)�C�.U�e�o2�YH�(b��D��i�R��B���b7e���
�>
�(LH�}
ɱ��B�R^Gm�61�&��v�[BlI	��c|�|��.B�_v�5Xg�/v?�.X��9pO���W�&�l}4�\
���D�lBb������H���)��-��z}�#�e
���SE�p_�!cb_�r)�"D�H�K��E�hTZ�j�b�V!Y"�$,�.p��LS�
"��AXDc�?N�D�D�%���
�6J�H��&�}�X�lB�#F�������U��[D��|
=
��d���
�b�49KB�IrJ��Y?�d�ZI�1�t1��b�h�E��H�%���*�3���QRǸx��]��Y���w�/�o�:���_�Y�΍f�CD|���Q�ȏ����<�I�C��!)p9�҅B���Ԋ�hI�Xc+e�.�!�p�5�Y����HU4F[BO�,�b����tɯ#Q'D�8Q�D[�z=6�L�n-�Gb�����94^5��(��ⱦ�]2ڋ?�-�<��R�
�����E��މYk�!G�Ȥ&��y6$Z4؄��!2(�
��IZ:�!4l��&��}�1Y4h��;d�����vK�2Y��'��Ih�Vu�1��M�"��^�섕�)"N+���t�D��I���� �֏yLm�-���1�]�2U���Ue&���1��#B6YE�Eb�>�|��:Qh苴:�j�Њ�,O���2���ꢹ��f�U�{!�hw��h��!/"odM��K�HmU��Y��P6lO�s�#[=9.D��:�����'�������J�&��|�"�{���{=��+�{-�:�R����cO��4VP����H��ZC�W"��csd��'G���"E���E�QCe��E-�R=��oCL�b,BŠ5���͔��be)*��<�S�z[�ӫH�^�F�֊�D����_Dd� �z=�ȓ��lix�Yu�h��$�v��[���Wc<��F�]�^�/��$���Q��7Ȅ��H����cG�"�ղ+�P��M[Rf�3L�,*�q�D���K�dZ��ԴJN���Ԑ����46�����Ь_�ѫ&�P��s6r�G�gb�Bư�D�6ɾ
f���y/x�_����M2^�i�'�<�!�H�hUDK�؋š�ƚ�G-�VWeѣBPV+�ѣe�1�$I=���.�ݒL�z'E":"E�r4�K��K"ؕ����GI�S��7�X�����|��&W��Vج�^t6�\c�Ѭ>�t�2-P�vĥ�e,�(B�2��,q��D\M^-��,h�c�V:�V��F��"�'�J�V��ؙ�45�!���,�G�l��&�*d��#�	�!l����GE�VS�t1���Ev�͌��+
�X���Hlc�]���bkC����j�yF���j[�	���/.J���"�&Ŭlhy�$��V��G�b�)h�d��=$N�&����H#�z�zl�����#b��/"B���m	�K�hؤ'�ٱ��Cm"�,}f�V3C+
ʺ5Kn��5�7�;-bQ�b|<�ӗ'��ݬ�mb��2rVz�
=㪏M�g��PgA�(r�H���h�*��P�Q�^��7�)�G��JKg�-��>�Mq#�^Q�G.&Q��i��!�:Gd�I�6�g��lhx�X����%�H�3��m���[+,cC,ЖV"!sL��:��>��e"�D�m�s! BO��v�E��F\�[LkE�y�n���cl�[j�oE$&�C�dZ#-��%N�tݓD��!�;Y�
���D�$Njb�"�V5�kCe��T�"�,LC�}���/�v��l�P�B1a�&�E���6k�������P�zMicc���\F��������G�͉����f�a�&�hI�uJʉ���=T)C�G�����Z-��M�C\gW��b��$ݱ��e�����}�ﷄ+EgtS,�X�T(�#e���7Ւ�VϳT*4Ȫ�}
��u�l�u�t�b^$���+"Ȭ߁�?���Є͚+$$,�vh�hٲ����h�#��
+d^��FQE�2\Y4M2O�l��X���DR��/��TϬG�U�G���E�D��$�� ��|">H2�k�YR6{����f��5C."�#Q#h�Q��]"kE"VN�[T�E1LU���]W�VK�6t����5���k^
�&%�}�5��$�oe7$t�b�A�Q�
�`�(��E:d#+��$I㥌u�=a��˓�HO�zqE:"E-

"�t%�R�
��%�GC��
Dl�c�NhBn�!1^$��V4�BBdQ!D�I�\"K�D�
����Y��t*�1B�����V��6_cm��1y�*�%-�kk<�1ٱ}ck���Zh��z�M
h�OJ��|�:��#g؄.ɳ������.]Lohm�%����6��^1���П��V�o6{�Ʊe6h�C���B�'�I��7��Ў��2bo-�N�G��Rh��}���eb͈��l����#x�V_=�r)B����'��Yȗ"|�ANД-���rz�[?�&E��NJ�ˑE���U>OW��ڙRѱ�.E%��S�I��/,���k���e�Y4�h�T�_X��j��=��R������,�E��ؒٲ�H�ʼnMh��?�Ȣ�^(BO4ƛ=5�����/�ō��c�Ĺŕ�Ֆ����*,�#x����j���T�6�&7*�#f��<���T]���dd���i��t�/�47ٻ�1E�obKډMiȂ{=-���'���b|��|�w�N�7�m�ƅ�G�)
�lihxF�)f�Wá��(�"$VX�"��Ŋ�Ν��{(��*�l�,���HRC�XƆ1�"�������kCCB�lcT&���lk�4�-d�5L��Ą�Cob��B�&�>�8��b�=x;d���NN�.�%
!�2,Q[?��ܬ�AE�,�bM���ѥ�ބ�&!1Yev!x/
�%o
���גK���X�U���o(C�4��7����>�(o�/Mh��%!�h�[�v*p^(���hq$�%�*�F*��}
�Q�OG���z�/����.Q�z����S��De�Ɖz��:�Pؖ���O�[-��N���΍�[+4�yx��TI�lM�K��l�4EF�#ӏ���P�g��<P��Vb�B��y�3�c�"�hv�Q"Ш�2��J�f�6YC��R5f��,����1���P���elM��.
"�M�XK�D�"�$BJ���Z%����%��z�L�ݖ��b�$P��5T%�$6�,rcG��z�D���+}�:B(��֖����lc���t��<(�������%�Od_��i���#vl�x���cQ�Qx��C|���vZC�������E�b(i�{�3HeŢK��4�4����)�Li{��S����}Z649x%|~R|!/�z���=8��w��KCd�:e�*&�>���G.)�䷖�S���f�DQ�ٲƍ�O���	rDK��ŖV��"|�Qg������D�>�V$j��h�hM;-b��ؔ�K�8F��H�����)����b�$�
�FL�x(�"U�%�$�Ŋ��/U����Qm�RY��zq�d<	�	�%t�l�!׳�I��~
:��D��Yv<��f�o��zBcN����Oݳ�H~sE�P�c�����ih�4���b��L�c���2���Hlb��z��F<���=6zd(S��D��!u(�u�TdΙ$Z���eF�m�I	2ݐD�/�#��1�-h���Il�tyX�Ѕ�X��O���l��͉�C�1�
lUb/��\�^ȋ	,!a-��Z����
Sf��$k-��a!K,hf�$�[�+Hw�Ǔe�?���胓�L��{Z:��5B�ĭ��K}�˦�!y/I�V�	���zj�=��D�4�t��fϢ����o,���x�_b��UBG��i�*+b��"UCH�^�E���{��c�:^�b��l�;�rبLhvk��'��I�-QӚvS����](�!�Xeݛ���Uyf��D��:�#���>�r��Q	o�'5CN��MhVI�+��tZf�
ro;6hѳ�"�*f��F��<k
!�Dn��Cf�P�(d�<H}8�N��{ŖI1K��}��'�)ب�-��hЄ��i�BN�*�LEĦo��\�)��yXg��蔉$t�~�?�2C��O��V�E(iu_�<
#V\Iz�=(E�rK��!��$�cO6l���!��|���v}e�QkFB���|��VZ4"M�T^��"�ݗxV*,��4��2��}�e�O>�k�
�m��"�$~ŭ��՛6����!�P�!X�^
����؄Ɗe��b���mY˂~���͑�����cb���ޘ�BlL��e�ċ�C|g�ݢ�(�U�,K�2ް�ԋ�h�P���wg6T����5C݊ģ�:���ܹC}��I	�{3QƎq�����ބ��i�4�=>Y��z_�����}���t)KX�,_��.V�6Q'hN6��+8ƍ�k�B��rR^����B/�*�U������?%�Qf�c�k/	��C{)�&��d�2�8,�*<aKDR���^)�Z(��B,m�P��X�WeD�T{[x�h�n#��g]1=��1��{�4=���NNą�6��K>�cƳ�t�S/����QH�Ν��&$YL��t^_8e�$�z�Re#CRoE����-��#H�P�"E��N�Qh��b��J�a��o}��)�)�G����U�+؟�zi��ۓv�G.O��,K:D��K>��TI
�
��m�W�����R�6^��!X�6_b���B#��C���ʣȥbXle1ШJI�I�oV#b�	,*6oD�e�C\�E		��Ƶ�*ǂ���~ѷ�lK}ީ�'��z�g��z���1��F���bJ�|e3K>좞��ț�S>���p��&�5���f��b�2���y7�X[��b�:x:��7C���IQ�B\��z(m�(؛Ѻ6xg�P�X�X��)�'��x��6��vT��VF.�-�;�
ZK��'�tQ�%�%��Y\�$�$�/�$b���xGF����H�(����	$���we��5h��6�g�H���V�cOD���[$����l�,���|��>
vZ�%e������d�ԍ��E�Y'���#T$�d�7��=��BZ4&�Ӕ�Θ݋ԏQY�!b�\rv$YX�E�$�Ul�qe3e$�eJΧhٲ�+��l|	k����46ɍ"Uh���t5eDmk5!y,���Ĥ%E��ؚ(��m	�3�X�ݎ��3C-bP�!�gG'[�oh��7�A:b|v�Ȥ'Ȭ�nEF�YLm��-�I"���G-�W#|Hk��2:��#����>�Z7�'���V4YX�%Ț��^)�T�X��͉q�|����]�΅&�^
���:Y��'�,�=��x�4$)>���tM�q?Bv�6��%����ƶ1?qӮ�1.K-bc�Z�T)r(�QO)r[�t�.ˁ��dd$?"��X�hݛ/XI"�
����(B-e�z�&�'�cC�ttk	��ehz��cC^��;,kE4�*v=6+�����������!�C��H�z$4�'�d�6�_%=���֋gZ��,�=6�X��Ɩ�"�g����b�=�/&ѼWo��.�:=::��L�(����!>p�Y\1�9	!��g�e3��_b�]�(����P��(~Gɢʶȶ}
�pV�V$��Z��X��y
lo����v^4!��X�H��Ƙ�8\a�H�,:8�v�.=2c�5�D�E��ȡ8�)ؤ�(�m��P�
�ؓm�2�ua�<��V*�ؗ]Vn��Y�ѣ����B�:���m�\�Wm�5��|fƕaإȓ�<4��5�6o����$j�U�V�)�\.��gC�.t��e�Hw�2EU�;��/r%�
m�h���ab�.X�$��Q]�+ؐ�x�6F/d"�z�蔹g�96uKD�8����أ�)	-��pиCbH��ae���e�Kd>����/�1�,i��\
�4[6Q�<Z�Ӭ��$��Hdg�>śE*>�c��u�N���L�U1ͷ��V���7��냓�g�CCX�cHw�(�h��\v{��*-BŬ�FV�u�7�pԱE�!�j�֨�u-�*(��|��NR�t�W�yhi�-lTxCrv!V���ōK��!$��Ƈ!�V�hXvH�����J�V7���q{7��<#CLx�����R*b��G�'�tO��y)
��1t��E��themes/images/wabi-jayme-578762-unsplash.jpg000064400000200144151213255660014447 0ustar00���JFIF��C		
		



! #'2*#%/%+;,/35888!*=A<6A2785��C	



5$$55555555555555555555555555555555555555555555555555���8����������AAJIEE��-HK��iE���B�j*����{�*��S5�6.FFvRjK���)Y%f�6˥E"�W 
��Je"�DR��V��STY%�:��׏��Vw��Q�d�P�E��XA.+J���B�$�P�B%��Z��K��ea2�e]�Ȭ�fvefVe�ef7 E@�+-[*�bK��dEF3C+2g=g;��*�v�Z�[�,d�ei�c5�k�,&�%�7���B����bdB��Tp��"��DXP���Y�Vb�,Q��ʳL�M�eL��K�ɕ�PA-��@���8�=q�2"�&FW*�R�ٷX�s�Sm��Z���5gX±�N\�Lכ�
P��@)��\e �E��K@RJR
T�ʲ�ʲ2Fw7\���TP�P2�V:�����A@��4�����,��z����k�7	�e������ B�HdAA
P�� �P) ��&U�S;3Kd�m2������.IV@BZYMi�MY�u�XcX�HB�R�L�VVd�R��1h�u�����PRAA�
B��AHT�����e�Z�Y��7k9Y�U��$�q���+���$Su���m9�5�� ��I����-�<}T�
PJ2 @@PAE�22�JFM�sg$��6jm"�Hd���W+%��@	�1�S���N7�u���!
S)�,@ 2Bge�����@)@B����2H@�
�I��FkP`U�%2Zdd�\�lR`�#L�q�l�\��Lr��Fz��My�jJ\J !�(KfVj�AH@@

��aK`JKT�X���)Q���.FFi�dE�v�\��l�&,�K-[�+����
h�m髞�hAAA )A

B�JT)H@d )�2�-�%-�j�P@*Ji�E�2
d�rnM��,��	�o2$j�T&֙�G>�q�	�)@(121)�@2Aj�@����$�¦u@((ZefI��bE��6\l�\ˋ�PʖT�@)��t禬��7[S�QaA@�@J@)JQR�V�
�	*�R��JC(�222�+3���&ƶRűnm�k$� *��BR���4�\���ϩD$�B�@PBRJ�2ى���A)Bf�,X��u)����Ve3�)b�aHs�XU���beT�)l�K����j�1��ֺs�sX�X��H�(@P
@)(J��PB)Ķ�P�����+*ٳY�Y\��H���1%��v)k3&4��$X���dl�34�\���&u���Ԛ*kqan��5�5�m3��T�@�)@�E,�d��X2E$ʮ�-����K5MIK�&i��e�R��g[x�J�fR���q�|�b�Y��r�㮞}�����5���y�ʷ^y.��e��2��.��.%�Q@�	aE�d�DR�P)S"ٝ�-Pȅ!�0͚͢��qk�W#�f�͚nM��WI�.�I�Scw���d0My�3zf�gxJ$[rL�b,,�n�k9YM�e�b�+�^,u��L@,!��	D��D @����P�+6YLV����j�)(�)�f���gmnM�Mig�4K��Q��Xۮ[�Vd�9�u��w8٧;�՝5cf��Yڙ��z5��L��r츽9�!�u�����\�L���z�ӝk��FI�Y�SVn3H�t�1!A)@P	@�)1PB�)�k l�egf۝�e��g�tcqrEe&�M�7�c8��3V�N���yI�m��ם������Y�L֫*�Y��Y����&:�g|YީrN����7�������	g<��.vjlB�@P
(�,B�� 
@�L�HE�4�ʷV�fܙ�&1��d�FZ�I��XR�i���2gm�ḅ$-*�W\�>w�k��S k��uÛ����s��]���MMj���.��εN��R���@(�*bP
��T�)Jf�V�Y.)�es���JT��:��ʲ��Y`�&B�f�\&��2L��1\��\�>u�:��� b�X�����=��Bl19�D�vzn��Yؚuy��]y���Z �RbP�)
2�T�J��))2�4β6�d���[�(�h��*�gTȦFE�V"��e�,�14���MYh*R�*E��J��Hk��:�ޤ�;S3$��l�Y�ד:U� �*\�3(� S�KU-�b��"����IL��2��̥�6ۍļ�R� Z�2�����L�!`�TB�<鄻S��Y�e���Q�JPU�PT	,J�a��$� H�Z-�"�H �TT(�h�T��dR%\�Tȁ"�#�Aa�)R�+��U���ɐL�P
R��)JR�ȋ�L�"���f�-Rʲ�Y�g&L���k	�UZI.1+3#"�'ϻ�K�P,2)	�-@��Q2��@X#+@-�2A@)J��"��ERPU�)����ɬ�.V�5�BR����#�а��(#3#c9�f�͜�uF&����p@�,2!
�B
2���B�
��ZE��p��P��B
��` �2E2XU�f���K�X�P�lņ$Y.+KJd�
���d�%Rԑ@\eK([��@bTE�" 	J�`�� E�%)MJAT�*V�e�ēY�w�sR�)JՊU�f���e��,
��,1Y.0,�YfIR�J���)J�,���e,�*̗#8��3���a�]{B
PD�P�)@��AAAK-&AK@dEgp�����*P҃r)@����$b��,RB�EL�R,f$1"�˰�-*�$�d���l�r��u�n�
�a��(�)�B ��*����
(��,��i ��QAAT cX�@VP��TK��Z����Z�5�HR��6�Mg.�Ŭ�������de�fz�He��+ P��I�QPJ((�U��B*�RР�����䙨D.KH��$�bIeYFFHP22,���S#,ڥADB��U̳,�'��)@���B)(B)	��
��AJ��2�! V�-��bcX�P�RUYER�"Pdb@R�P(Z� 1B�
z�,� �H
T(Ei�"����A@��1��"��,aPB��� ��!
 �)��¨
!R X-QK(XPY܄J�F@%�UI�B%RP
@�
��
(R #�F76� )
(!H
D�R���"ԫ
�P *�(P(�R�)�B�U��%Z���B�@PPR@P
��T �B��-��L��!@@�Z��R��%�7���P� -HP�ʩ@(�g[st�8ܩ)A*�P cXk	-��n�e�-�(��.6Zf�)1�r��Dst�@ 
(Z��JB$�s�QH�%3�5Sv5�����|�f�Ϸ�?O����)�cf��d��ˤ�lBUD�Z�%�$�{��L�َ�2n$M[���
DJ�E%)%�U�+�@��Č��t��"G�y}_��,�<���Oӝ��]z�\��}G����/���b�2>+Z�c�YJ	��� �si���?'���q�ś.��o���G�x8���ab�P�E
QHX,�-�JPI`�(���6�&������{i���ގ���t���R�����3���ˊ�Mg�Z��Wfu��ˎ�eC��zzc��K�G韟�ߚ������*����W���}����@
@RE����!R4@�Z�Yw箴���-swn��;����?=��ƾoۏ���
ܦ4�su�d��㧯�dHd���Q/�x�y��⸳��1��޽g��P�b@ݝ����U�(_FR�w�Pe7��))Rlλ�uѹ��6Mz_^;&~��/��>χ>�m��_����h띘}'��w�83�������#x��VnsYg]<���5�񆱷�\5~�>/�ׯN��\�2 �ռ��PA���rw��.(RW9�n:yv���o����|�w��ޯO�񞎽~����_{��}�ߏ�������<�W��gv��B���i�;�/�^}c�����X�� b
��|�5�H
@3����ӝsk0�d��nεjD&�9o�_$�/N��{�G�k����~s�zcs�qv�LP�����;M��
@���Ӕ� f�\l �JK5�ȩ2��H��i*�yz7�^��1��ߧ8�{���꼽�{���o��w� ,H H�
�޽��k��FR� ��b���K�M�^�,��}
��
��1߉��Q�9�sG>���;���/ɻ�@R))�n@ɢb� 
��fl���N�|�V�q������rѧ��D��)�uٝU��m���G���J��7b�t�2�1��
���n;o������\�N�ᅱ��OԼ��??��ϯ�����>7��N��_Zk�����֝�[,�.,���t��6����o<��<�O���}_¿k�x��;�6e���?�^�+��h�>s�>K�=�~�=�~��û�㾇�.:�HD 3�
b �t���@[!��쳳����~K�|�7��e�gy5�ǧ_=�ǻ�~���\3�?o'K���7�獎����\��C��l٬@
U����3�^�
�t�� ɨ�P)s�cYg����F&Mi���ϱ�c���ןo7��}g
��
{]��r�����f��<z��)�����ݸɡ� ���Lo8P�!B�%]�������ɳ=z��M:cg��^}�g����t�����|���|�~O����0
s��)
R4dL�ٍ�>ow���cy�5���z�n��'s?C�ױ�}&7�t���~��ÏO��������dC9��R��5�"��}�c�x�яG����q��U��W�ow�1�<��d~y�����w�����|�_�{��w������T��
�q@PJ@d����HC&�ά��=R��w����xL��O������������~���?9����yz��N��2�ً��Ɋ�=���))b� �׮@��$���~�l��9�L�Ʌ�w
F��I���z��~�M�)�]=s��z<:|=�}��|�G��Ӟ�t��9sh��ٞ��(( ��H�t�y҅�;�,5�ϮRo��
6�\�����MZ�>��tM������/�-���z9�=}���7������C�Ġ�2R�`�7��@3�R�l�����)�d%�e4�	vN����Ӿ]|7���YΕS^_������ǯ����f��������ےB�qgf{~��ϱ������h�����X���!A b�)F,��Ӽ�e7.k&�/���v�퍹ߗ���Ϝ�[�~���ç����y�}O��|��}�<G�ţ�2b�|���1�q:����*�d�M��7#%'F7�y7�^�X&@�݋�r��"�m�o�x��_w��qgv:��ߍ���y��/���Ϲ����>wK���8����z��G�9��[����xň����t\ĉ@��.R�ßqIVb�Hd�:�|~�?��׬}'����o�~�����}|{8v�돢�������t�yv�>o��Oξ����_+��GL�վD��}��5�`�����L�n.�ի,�ݍh����8�u����o��sta^��{��\zh�k����.���pp�z>^��'|��xwr��?�����Ǟuf�j�:yt���@��MI�l�XY�v\u�$�2 �qL��O'���{�O�����Y�}:7x{���?������_S��L����\�����_o��z��
m�n}�����d�*��f�y��5�\"Rȁl�12_C�����|>������~<.}����sӼus��|�V\��Yve��~�\��|�+�}_/�{�R�u��;�\���
@�Η9N�׮@�@��.�}���8u�<���f/�����������ts�]3������?K��W_]�|������u|��<�<�R��\5�5�� �,���"�w&�# 
@
@R��R�(������{��>���O=y~�>�іg�}�'nZ�;���|=�:�,ǧ˷�i�z��w�3���ǧ���ƶx�������7���~_��D�u���ۅ�ښ�1Hz�����N^�jl�ll��\��\P�R2^�����x}{2��G�ק���o?�×�<k<�oK�ߟX�I<u���Xw������;�����<��r��'�^g�˳~}z�?�?%�x��ۗ��p뿞�_�RZ��1�^��ׅ7cӅ�5�dL�������� *�r��=}�~�g�����g���yz�s�)�<|]��o��w�o�Z���7�����Ͽ�����>���~��cϚ��_#^�w�+��o��3���:��S�ywb�G�L��o�d��(R PB�V R��FK�ǿG>��==�:g�����x�;2��ߑ�����o���|��X������򾗛��>�N=O�����ӟ?G��}O7��>/�|�_����|��o�y�S�|ܧ\o,7�2��dbRźwr��y�{���뎞}:�t�3����s��>�����3�x=^ϟr�G��ޙ�s6������>_{���|__>m<\v���v�yޯ��\����|�{��z�v���{�����̳X�70R
����垞��ջ�/Ln�N�>�9���ݎ�_��n;������S��^�5��=>y�o���y����o�~׌,�3�����<�O��S���loG,��k��e߉��s����)/F:�y�}\����>����kf5�ۖyש��s��]1�ׇG-��z�}��[�'[������^�N;yo�=|���/������߃���^Ǐ��_?_?��)�7�~��5�=�k�����P��k@6M�y�}|�ܪ�8�~��ofo~�:9��}~m1��~z�<�{�/on�Ǘ���t�'�~��=��g��..}~W��g����~o��Ͽ��|�1�x����k����}�:�o�x��_�-;x{8���A
@��( J�ŀ ]����ӫs��N�{�6��=�n��n�3|���^FnMup��ۖ�;yv��p�rt��߅\���������||�s���ۯ��8��}_3��?W�<�_��������ݝ\��Ɍ�ݎ�����  ��)Z��
Cv:��t��>�����Ǥ�<�/G?S��~5�pz��7��9~��?���#f5�Ͽ����y}Xk<��·���;��Zp������z�t�?3��=/'��+������}|)��|�?��5�Y�1�1@�) ��q��Y�zg��6s��kn/o�w����ן'n9˖go&s^��ٟN|{ƛ�w=��}��������?~�/_7��|Z��ϫ�����^�}_'���|�GΩ�x���飦7g~?�ɔΝ�TH �������ru���cq���㶭s�]��y��^�َ�x�k�Ȓ櫟{���=>}�z���L}7���/'�y{{|/�&\�h��^���v������ۇ��|}�w��{qy�c���g=��9��/~]���R�@2D	ll�N����u���s�ỗ���{>�&S]�}u�V�q���8�����ɯ|���|ޯ/�����?�ׇ�ÿ+?Aq�����{<��g�dz_��{�^��s��÷/Y�?Ly����Vy��x�K&D!��)pՀ
@��yz�9t�:�g����m�r�S]ƽgf;c�k��㧣���y{pz9���o.��~~�:g���3οK��W_^M��e�^�+�~t����>���_g����|�Z��G7oF����9��k��[�&rkvuլ��AL-Jb�ݛ\������,�)0�.�5t�s{xz�����Y��ػy��~�f:T��y�.���y8��/\Ɗ�������^��r�GO����}�;V��y~���<^�7/o�v���G���\%�\\��Y�����&}N;�;���{���<?Fd�\�{����s{1�Y�=t�ϻ��n����a���p��oO���뼱gv{z^OV:ǩ����C��>W�}\w�w������q�O��_G�bh�.��۾Mg���g�f;u�hߟ���)V�y�w>�zc���u�\��&,�����r�_�>__��?6��彜���������wR�Hl�7s�f�3�i�ë��<�r�?n<���禽s�kf;k�f����
���󾇧<�?��}?��]3+�<>ߓ�����[���x���|=Yٍ���q��&�rY�zKvgt׮Z�2����ծDɬY^;3�V�%�&��(���W�_�:c�g���Xz8���
�+�y�(Mup���]���F�9�����:�t��O
[�r2:9���w¹�c99�s����k����s������x�x�g�9�{���G����'Lg����,As���,կ>��ռ�Q���
��^��sLR&K�o���ϧ���<����N��ǧ/[��k���Ϯ�㯇�4�錦��gXo<�{g^�=v������|/W.�����:g}���_Q�����{{^�G�~_���{���_9���g=���c���|]yr����ף��>�/O�I����:[���z�.kDŚՃ:�ʵ,ő��ƬJӼ��k��]���^�)�����ˮ���:��8z�έ�v:n婭j�8{�:9v����|�.Y���˾:��{َ����寮���?Ͽ����|�����o��=�����S���xw��^�;'���FY޽r�y�:�3�bֈCX��ֽ�f)X�)AS�����#���)
@P� ����ws��Y�����х�kv/G.���ۏ/^8^7W�r�_k���/�߆�ϩ�z>���/�>�����������C;��=����_���}>^�]�f���|>�6���Ӏ�wc�Y�7_(ۏFQ����뒀LA��5e�X�()��t�ͫ�5��TDs�����Y�.;��x�^�>�s��\������~~w��&1�;�����;����q�|���/����:c�>��������?;�>k�y����v��Wy�����7�����nu��]��Vy�ϞƶΝ|}\]�x\�b����f&S�sdĦ�b��:���s��
ER0��65��<�|}pS~���c4�e��NG�n;o�N�[��z����gN�ս��n�����.��u���u}�?�������GO6�c9�c��3�}�O�}��/���_=��x>�R��^���?~GG�d��y����z�t�ێ�w�Rs�Lu�ɫM�yU7#
s�]��J��B䱈�*�K1��I�t� �^���y��tV'�˻�<ލ�ן�壦0�,/-���Ƿ?^[�o��o7�����鯨�����;3��>w�����Y���������|�����r?��f9|���f�ϥ�qޝ�/��g}�mN�Nn�J�,ĥ��t�Xŀ2X�7.1�
@)PJJ�3��"�-���V�;��1�ös|���s�����}��w���e�i�~����Lz>7������g/��G������x��E��v�o���?+��^�O|}w���{1�z�4��:y����t����Ӕ�o���|��gɬ���\�P��A�ǧ?nx�2�����8�n��v:�p�G.����v�����7������}/��\�?���w�/�����}^N^����}?�8_/����r��юN�.�������;q��xP2��{9;���ω�}����w�<�)�
�Ś�͌.c �A�ç|D6g���^�}��zkۓ�.n���������o���cv'���ֽ�_Ly����77�����ߏ���ތx��k�����=�ٞ�_���c)��^��zzq�������ɋ95� Z�I��:���툀F ��J	!1"AQ 2a#0BPR`q�3@���b��Cr���$4Sc�p�D�������?��"Q�ޏeʹ\�W+���r�\�J�*}"��DZeJ�*T���}#�ԩW)@�;
%^�S�l{FT�R�W)�B?B�K����S�4(P�B�
6ʝ��%\�R�O�p�Gf6B�
zh�D�S*T���fT쏎aG⤬�k5�đ�P�B!
�%��j�
�>&�*T��ʕ*�r�J�E;aZ���V��
��Gf6���G��r�J�z�+��읒�N�Q�R�d��;eO��
��E
�Z�V�U�v�an��#O��$��?��
6����8P�Z��B�aB�
;N�!B�G���B��W"{r�\��6Z�-��+

P�G��z/E��kPj�
�i��
�h�؟�'l(V�P�Z�V���
���Qz����)�N�U�1(Q
��o<���Q��<(V�P��1�{v��
Q�qFv��o[‹��5�
��5�[�j�nB�
(Q��WpW�pS�P�
;�V��{V��VX�|!*�r�J�*T��g�����\z"a8ϳ�B�
(P��P�B��A*T��킭*ҭQ�t�R�W+��T�+5B�Z�V�T(P��*�`�c�R�R�J�*T��B�Z��*T�W)W+���r�J��R�l��Ǣ�*U��r�\�W,�AV�iV+�иz�-ꥫ/nO*T�R�J�*T�U��r�J�f�Y��B���KU�[��o��u\zq�Wz�-�5t�>T�R�d�S�9W)R�d�;gd����vʕ*T�r�=��*U�%\�
�)
B�HR��r�*~������t�vO�r�W+��R�O�%J�=�R�N�R��R�J�>џ�#��x��?ZT+Jݕ�(�5�7�	qE�����m3h��-k&}�=�S�T���<��?x]=�8�� ���*�6�@�M���Sk�`�t'W����Os�t��j��{G$$��&V{Ag�1���rt\>h
��Lj�!�LO�k���
�V,N�l$�	�٪�i�{
�3��N�2Ua���{l����M�<���׻�F~
�������*�=�7C 8�s���K~���I0�J���2��8�G�����ܕ|�j2ʒ����]�������Y�E��U5Q������C~[7j���8[D�O��(MȦyỤhU]s����xgc�T˼���L�L���	~��I��a�J�^Ka�f�X\;���2��f���r�Dzگ|�!��ϒ�_U�nq=z"�㚴���p#��*v�jv���m���N���j�Ov����H���(��*Dy�2�njP��̬�ɪ^G�e6���|s%�E@��2����C*e��P��G��(�Q���=���1��#��\-&9�O�;͒�Ԅ��x`�\UzF�[N�XNv6��Z%�':\O_L{D#��λh<bG�'ϻ.p,�Ȣ���>#r�`s��U�+\��Jo�j����,-z2Q%C�G�rX<)ƛt!c0N��S�IX'3tK���U�5;�f�&U������T��O��������1�'� |��	��/�g.�_�fO�M#BIv�%(f��+��V����?h�Ǻ�ɢ꿺ʀn�rٯlO-W�M��TN�:#�>�i����P��<�	"[#B��dsY�{�9�E�f�
s职��|�T�u'�<�j�1�����%�����������\�z9�&S/��,FkwN�mLô=����W��m"i�ytd%4���4U��.&I�h�<�
%�S�1�#�v�P�^wl.�S|�,���a��g�j#?�J��K�__�&L���9���M��t_�4/g��*�M�Rm�ō���ᥧ4U\m�R�k�OcI�>\u=%xu����5J��X�>I�𴭬�^]�o ��-�ƍ��C��#�O� JݘӲ�}8j��~k�TX�#;�!pvR���S���4^]��B��i�4���$�I�ɭ�l93�����O�n���w��Y���n6���m3�����p����	ݓ	�����\z����F�w���,^N���p58΁U�է�`��s�9��V��w�/���/
kK3�Up��:�'#�
��ˢ�B���x�^N�����*��}��Zq�^R�j��qq�939._
����-�H[��z8x)�snѱ�`��ˏ(�1ƞ�-�BuT@y��e��\'yI�q�+AS�[��9��C05wU�{i�ٛF�̪"���[�o<�M�P�|uU<��PIU�j:����
~��%�g�6On>���dv깦w�橰�D�Ձ��7ՕE�ɷ�*�>���}1�ǟ�RkjX�����	��j}J8f�*��q�s!�B~%�<R������N���≓>�_�����Iض�Ldt�P~��2��[mhS5AЙB�f�9����o�H��)-�m���@0�C����0��f���~6��g�bᙀ�W
J��ș?��ŒՍԣ��Miv���ɻ3���	<	�HT67����H��he�V���}st��S&�4�lc�8�����,S��骘��t�{�^���D�u��B�[�B#�UjIDȗ�u��~�J��Jwx'w籴��D43�2���S���(a�Yt
��R�a�ϛ���y�*ti0ˡǟ �X�N��Z�t��{�����S�{YOQ�G�K����!��J�O�ģU��N�	�'�s�3�&�'�!�bSD��U>����.h `��gKz;ـQ���-����"�Q��g\��V�2�[��{��6os�����@�]�;���5�y�K�u��vZD��w��DI���J
���1��e�Lꋧ俻5O���$�KaS������x\ߙ���:4�:)Ps��T�C�Nmz�.q9�KH�kPŖp�59�5D1����\G/T&�>���1��\�k��X������7sG2�H���B��˧ģ����aS��R�͟�U/�o�;�Vn��3i�&:0jS����4�t&��B��g2���5XO�Ռ���@4�
��XY��ꁎp��}XvC@��I�l�y�1',52�Ԫٛ���AͭQ�i���gX��k���J;���e&�;�W����O��:51J<vR��xZ5%`��u"�O���
�����]��JT)���F��t�z�e�q�q�d�a�W-�g+7Ե��^j�AE�v�'��$��
S��e2A3*졠4*��\�}[�T��?�c�
�T躡���l��q�9&�߈α�~��K���ߒuJt�w�����e�x�/s�NC�_�g��]I�̑2d�Ƈ��GR��=[I��{��?����,���d�cz�ߢ���@�?}��o�eq�H�
�0��I	)�aLMso�4۪p�m���<(��>z���A����?y�{��w���F������j7�"8�`����eW�+ܧ�M�'<>�6��5S��.�wl�V���÷��UC�
�scz�c)pa'�:�ۜ�:K��U7X�W���_H�<���Sݛ�ô�`4�-̽0��2d�>Ƈ4~
%Y��k����&�"�7�Q%������}�
gyT}��V�8gT�e�K
8x�ԪXlF4�;N�_���Ho��<�ml[泏��\#_u��� q����UlM��CC?�bew��oI�U(}���	t�M�)��KB�9",�v������֝Fʕ
GI���I�
`h��U�&S�:J���}�)�j���2�~���6�<�n!y�VT�Sia�x���$j�1�0YM
���i�q=ѻaA�0-��_�@Ԫ&74�s��e*8�CO�9��Q�`���x�B�<H��RZ#�ō�N���(�G������q@��{�y��&i�FR�O�L+�b�YN�Aa�lq�=c�	��U�xFOZ�[C
�;�9+��
�{��R���$����e���m�*���,f%�i[G��R�R��\�G^�3�a�����6��<v?�̎��K��wO�(T��3_\�U<=σ5j{��X)d�:�q�֪�[�%מT۠[�F/��
���Lh>x�p*��XF�D��qO����ԫi`�q��`U�p~)����q�t�w��c��6Z��?
��9��x��G0���!B��[H���h������Z-5)�o�;�T*T_U��(�5�?@�uO9�t7���P¾�g�^�_X�W�B��xיO�=��|�/'�;�'��hfg�zcQ�ϮwXV�����qLdA>��|��?}Wr�U+>I���;]}~:����T~�d�m�'��vþ���g>}����T�(Ę�}S��]��QmH�[���
��䪵o� z����Q�e}ckU��0��
^����;7����3
O�1'{W���S��4TpUq<u8Ԫka[��R�{�=u(2�4�T�O�� �L[�g_�}h�p����O�b��{�D�hwa��C䳨`}J`��P��*,�ԏ̬MV�0@������'A�m �N��m��K�D�9z3�N��V�����z6��*}��̕U׿m*�P���T��>n?�ƁR�>�u�)��T�����h6�1���T�ѡ��?�/�E��q&zR�����;܇ ��;�N�FT�:�S�`UkZ�/0}no�x ˀuP�i�%U�t���y�4��eLd�R�P;�@YQ��=S�~�+�]P|�Th���T���<��u��0�憄����q��Ovy�
�K����*�TlS�T���T�w��w��Ti�mڟz?e[��i�f�n��W�Lq�{����K���>MN��wC�T:�a��Ù���yj�Ha�֩�*��@X�w��&�u��^tj�]�sv��c�~Ar�ܠ����#���䋯)���r�T���[ݪh���m�}N���a)�eM>�ڽ��*�.
�5�B�ki�Z��Ot'E�t�jr`�-�|;c�6�I�@ʘ�jʸ�:7�M��n��۽��璧@0��_{�����#����SZ�P�^j��皦�Q�`�8��D2YK��WQ�k�9|�
�f�9��}���q<��5��y�jO�Mk��%�k~��qwˢ/�^Jo�F��|���-�Q��a(�
jwU.Ⅺ�8�/��]��'EN�h��A�5������74�W*,kr�/:#T4�7�[�'�Xn,Q���N�b[us���j��ꟻ��5W7�O�R�޾,���	�om��E��%m����S�����ߺÂ����Q��>HM�f�@ӟ>�@S���R��#�.��&�4Z"gD޿�u@���_pe=#E�ڹd����T�y7��Mf�ꆛjw.귪5@�=�(��L�reF5�.:g��|7�T��u��o�����Z}��w��y��Tt�-�;�&��xuT���L����>I�����o�z�\8i{�uC̦Pu_9�ɼ������!�޿E缡S���
M����M�׀���!����&�:"�r���N@
�E���E�%%Jo���Moa���vh���T�R�~ô(pw�Xj�,'���T��7����.�.��>��s�[0�����"sp�5�E����wf��W��t;\�W��bqM��\�ɟ�5�1�7��X�b.�4Ƨ�rn�(���4IOuڦ���s]�^C��q��?t֗:�V��6�OU�.#�!*�L�&��0(6�t�?T��Nh�ʫ��'e�g	λ`nJ�k�y��赎0�Q��M��e:���9�s�|��S���S(���%1�}�pٺ3D�3!�u]ϙX�f��x�~�T����f�U_��gs�ꀿ��x�D8D��\�/?�wg�'����PJs�M�k̩�~�~���a��D��L��IA���l��!��@2	��S��i�ʪ�3ɣ��~{�Ԫ��
uǯM�A��NrO�k�i��D+K�����>�pi,���Cs���A�U�Y�xis��Nn�*4wN��W�b�V�Z�l���.�h_�Ml���T��8�
E1���ψ�PM}�y���C��D�g���Gb��Ҥ��� �(E�T��ѳ�P-��y��&>�=ֵ��sr�4�(�5�wB�v��/5X}��1��rUٺ!�>*]l��a<�{w���L�T��E1ԃ�'�v+��Ŵ���x(�z��,��|��w�=թ�~�C[��S�ve{�p�n�η�|ʍ��@O�a�.H��d<6]>
�������Y��GE+��[�d�����i���Uvz�9�&8d\yx&\���T�J����CG5V����fѢ9��晇�;�C�~i�Z�9�_�4L����h��n����Ò��Y��I��*�Kٽ��R�i�zsߍ~p�L����n�pS��,fT�r�3����֧<�Vn0�m�y�:3=�l�9�?�hOt�*�ݮ;D)�籭N��)�J����:�M皞�0����v�"�Ϣ��GUA�eI�ۇD�9ʮE�2މ�n+�bZș�Z������]X_�=�0����.��!�j�+f�ӿxfT�tU�F�y3�����]�Y���$7�VI�'U�Hkr4���NY�r��a8�,4�t���R�$�Ga�	��L�S�TϽ��%l��T�/;���E�~��kb�l���Uk�o���ư�y	M��h�qv�a�ژ�ƍꩶ��1/����2�����ʐ��=�R�<L������n~���y�Ơ0��*�OL��_��
�@'�k��ЩE�4R�{@(�:6Gb%�ݴ�%Q��^���@���
o���D��kU18�d��V}���ʥU�Zf�^�D�N�n 4@�l�_�;U�\!�z(�H��}S*n(�fY�7P�者�K~�se��C��rg��X�xc>σ�e!Cp��UN��<�u��:	�@�DK�UXB��Nqv�cL:Qꩴ�ʡh�r��
S���*��h��}�d鈦�S��{>�ְ�c��Mԝk��!hv��d(��$��G^�`S��^�S�? �@����yS×��D��>L��ja��97����>�6��oϒub�?B�2���Q���*�~�����}i�K4��Bn��/�F��m&o�_F�O��_e�`95b1������:sR�&�U����VjT0���%��!kGu�#%���	���
6��F5Uc-�J��F79����ŧ5�ú��:g�k;���X���|
6sDm��=�
���"L��;��<}��6��*
���ɗ�tQ̍j�>����N}\U\�qT�6�z��EI��5V[Q��H��W���<���ZGw�^��xu9���0�f_P�����'9��9N�Q/���Ox�5�Q���

�S���U��kth�sNkFjr�Ɗ�r�9J�'`�`Cw��Q��W�0���,Uk�J	�k#���5��pN�Bݔ�e��
�{�
��O-P�J.�6�� ��f�3�����J�X}ݥ��R� �wbN�*cR�8�PYHn��
�W=�cm� ~�E��X�]�����cW�E
Xj�uB�J�\j�s'�~=�l1�5��S�I��{�bJ-��mA/�[&4T
2�Lx*�\�\��#S��\��НM����5n��h+w�>�@��J��N��ᶞ�U��B�)�5%I������y��ɚI���(��iA��I:�p�!�ː\U_�'�Þ�_B�W�pM���4p�&���uyUk>���J���uo�qT0Ь��m��wE�q.C�.f���hF)��I�rn߉�}O7Fy輛NN!�Ϛ���/(��	���Nj���u)���w&Q�C�6Z>���@�DZO�g<��n��=���G�f��<}��ݎ�`D�6|�����N-kc�fH4�	��9�u0'%�%�� ���P{���6�c�ļ�`��<]KV+�n��CF�����M���O��uc�����Q�z��uG�1<N�S�����7tO{0��X�Ъ�j�.�B���sTS���o\���J��T��ts*����4r
���tdy!N�k����d6Po`��ha9��hj���0�y�:��-:s@��J�� �$�E�._�����ʗ���r
�WV}�2S[9�&�M��C$�;i���Uqo�wXa
Xl+h�����qbr��K���׷�a�x*6a����,}aY��=�!��j�Ã59]�DL���y���L�STٔL��#�M�4t�?$|�=��h�3+��U��uN��j9�H~��drP�M1
��g�)S���xj�^PuQe>
}v�e��b0�(��.����M�e:xZY�?R�M؟9[�����È��ѧ��}R�Q�Nur.#�$�Z\�u봈�Jf��L����@JP��=��2�h=;`�5N�;�Z�TN�U*a՚m�Q���؃^����J�Nx"g��Y�J-� V�sE�6����9��@*�q	��(4�`h����a��jA�R�8
]ɽ���Ǿ�pQ
[C�ᄿ��0t�J�ϙX�ULu[FM��Z�� ��9�vZݏ�7g-���r��a6�厐��ط��pS�nh!�4^O`DSI'$m�V���=�:����UHa8�1�{���6<:�aj�D�rX��������EH�K(f㫺,���̪�����SS��rg7*�(�>�}�+c��@�U�e
y�AvC2Ul.�';����D �W5��S5P��:'/eJ��fʻc4E�;6�PJ���~Hq�v���%Q��K��Ki�?���*�l&���	����/ac�W�<�7�4iR�=�5I���9�%Pk����3�T��(����y�=#
	ϩ�}���N.����~-�Ge��U�-��ɟ�kK�D����k�>�.�4��&vIN��%f3R���8ϳw�s�5�>��TH'c)��,�qtCz�F�)KM��N��9�8[יG3��I�9,#]P��j����s��{��\��'�}W\�%B�2�ۑ Kw�<�'�Z�uk�����yA�f�p��)�����Uj��-`�&S5�%Kpm-�f����zv"vY�;X�u�k{�ѝ��N�  t���454��R�]�U�����ܘ�8�bj\�lk��{)�6e1��r��jSȽUn�"��:+�~<�i:*luJ���mF��؃ˢ�A؇𥉉��[�7w�m6�m����V���r��Y��T�C0�4�w�s���vs�;D2ϰ8��9�����+!1AQa q0`��@P��������?!���k?	?i
ƃ�>wh�u_=D�K�OBz���m�_0�I'G�A#�[$�I$�I'�Eh �D�C'Fk�1���-
�:I$�$�N�IL�%j(�e�F�#�$ll�|y$�tOs�����		y%)�I�^,��c
�O�OZ!��{$BԂ�4�I�A�������|,I:G���'D�RD���"��At �4GP#��t��h�#~;cc�L���I:AAh�d�+�I1����=k#V:0O�60�� C#��$�t���4A�c᠅�b N�L�:��I韁��#V�/FD�#�s�	$�|+�:�DI�Q����u�K��|� �:�k$�W�4�#F�Ԑ���u�G�݈$CL`�	��	�
�z�ID:�I:'��j"�]�D#F�IQ�F������b-X#�돚P�:��I$�u�$�zcHZ	tԅ��#��j�`�HJDJ%A.�B ��4��Z�ٌ�A����GA�$��1��$�H�
�F���Dt��Xj��2$L.
v+�!�
]
X�.u��:b�I��i�fD�B�"�$�AiH��0�N��6�-=�	2m06h6#�h�iO�`�:�K��+�R�J�A$�$�G�����D
��$�4<�h4ZA�t�B)�>,�$���9t���I���v����P#����� h�6�i�l?��5� �:`�<8 ��
�AF��D�mӒ�M蝄N�bq9k:W�I$�I$�� � GD�P^C[?4��� �t��#D5 ���A��F�!�F��i�YW�r.G� � �<� �*T�,�zd�~[>�F�(J^	���U&�R-
'�HL�ݎ��ljS�d��I��}$ΐ�bq>�!ABQ����I��$�N���)$�z��$�N�� ��(�@����H�+�� �EÌ&e�|�>�=H��I#�"G�I��$���%D:?���b܍�LDxg,��\щ�́��VG/�$�z�=
t�d�I�i$�H�-��y�R^��IS�d�R��ܮ�0L�2zRԝa��{�{�DZ���'jЈ�ԉ�I%
�a����I$�O�$�I$�
�ʕ$u#Dt܂�\'I$�I���$�N�'OM$��kB�J�$:c� ��T�_�j6�$KrI�:$�I$�I'I$�z����yԑ$�$�,��AAGT�I$�I��t�I�I$�t�t�I$�I$�tI:OʣH�I�#�I$�N�I=��$�z��I$�I'��A1�-AG�RQRea���uAj���l�HyB ���"g�;�Г9B�C�HȒy�����<�O�2=IƤ�,D�$u\�.�H�c�T�L�Q���}�CZ"���-��j�Y$�;���#aMT�����A���i$β?E��I�PI:��"�T$��O�d�I𧢇&���-j�4����d����/b��lV�a���3��8\L�[�שǿ�L�����r�ޡ����� H���+6mʊ�CT�lt�=zG"�Tۧ˨����N���ZU�-K%�c!����&�F7�M��" �ݣ��R���x�%n���7:�%
�L
q
SD!m�
�qT������٢I+�ݖ��md��iD�(W��)�yc^Ԑ�D�~D��'>�h�7q�\�W�J�k$i3�rQ�qR�M݈��\���V�d>TM�R�+hm�n+8�y�Op�"U�s3�����:b���EJ�ȱ�6S�6�.�Q��2�A[B�ԡ��C�
����*>`�^�$:-�.��U��^���c�FP�/�,ý�^ĤR���'�q��{SX�$�Of/7tg�m+�uN�i
`mJ�T)*5^F�I?=��Hߥ8�ç�H�W�������D��}�7[�%蕢Qi �r� ���f��
-�E���Mޤ�N�F�X;wѹK��tw�j��*���..��p�������R����UT�Q�Q0��"h���T�!��\�t[yɪ!$]�e,��0O#���l��R��})K�z�n�҂p7j����8;F�����ksw�;���t��^����1}j��JӲ����Jו��O��L�\}m�Q�蒫.�R����4/�S��0>�@�z�8P�Ǧ鋥v9�%��W[�;-�+"�2�R����XQ�̭�5��
GEk|
�E��"�R�rW�Kx��g�UH�<$d��.��$
��b�*p3�׈+2�w(|m&����h��YrLtO��Jc����5b�е�
k��V.Dԋ��r$��#پh_o��hD �����{��U*%A}OK4�T���K8�Z��Or�_T"�����mő��z���^-n�ɞziJv�5�1�K�16�l�*OJ�˰���R�g�raM�*#7�;A�2��P�A�6����.�$J].Y��X����7u)��(��[���>O�A��)F���Gg�}���6�i䂤���/~�{��s��d*5����൙be�<p�
���
���,ɸf�"��vvdK�z�9.r-{�w��ݐɛ�7v/B��mD)����>'q������D�¦�H�k��Ċ-�ᛊ��#\��� Ru�
����"K�1vC�����?B5+2q7b���w���
iJ8~麑��G��"#�W|֘���W8�E��!}�.<кOiOmwJ�F1��Ռ�뒃��T�iW��2�_�*�6IhT	|��u\��"6�E
�_^�!�����q	�X�	�;D���_��49Ck�ɚ��b�8���?oK�Ʒ��)7��`]�as(�z�ܝϰH�c`v��V$!��|��(P�ʑ�U�IM�l16؆�6>�j���+2Ex�*��=���#�紿l��y�OտW[�f�{U��T��n_�a5;��8ʃ	P��~n�P��xC*�Y�BM�A�bQUچP�A[f�+�$݇��)��5��-��T|kJ�O^��ԝ�qj��(	�R��&��I�j�5�3@��ݩ�0o�S�=��Y��5��$'�qSC��!r5Q	�`�����%����z�Ⱦ�BQ�[�YwTH��˶��2��D��)����X^k�ET�|��p}r���G�$��)��
Y�e�樴Y���?f�d�_��*��
I$>��ϡh�,�����ز�*/���.�X1m�n�¤{�G�
�ҘDz[��2J�^�٩�~�����G���>��i^X���-~�)l��zw\^�l�����K�w
k{�¯�eQ�d\�r	�٫�!'��!B<��D��)N�B,6�2~
�"$�p��A�Z�V�j�	�T���Q�i���0�;i�;lo?~��{��Vǥv�v@���Ȫ3���q��9cMۑ]o�4�ˎ��eMż����p��>�$���Q5�з��$�M"gU^.Q�9ؕ
�
ٓ�,H���\\�7T�
��MB��?0���a*�=^���eg��Վ�B4��K�/�*�!ꑝ��&�$�k)��q��ǒ��#E-�6YK�Du�B}B����=QH9P�-�frk"g��/F�+_�[Ej�O�d^�U��=Y�;4Ln�!�2�����o�'$�ނKLa�K��X��Ȕͩ^�D��u_ U�J�(�-�]�D�f�}�	�$iъ�:��"�{\}�eoiw?�v-�,�vؕ<�%wzT䕄-������fy�Q�5̜7����R��fraL�?�� (H�	K#sga!
���_�cS�QnN���S7k]}X,����0&��:#�{������=�����޻��ʻ_������α3s�M,w�BVOC�7PtJr"��a����X �*\(��;Igx��6!$�U����X�)
�'U�l�a���q������Bf�˵�×���˖&ؿ�ܭ��܇%�����������f�$T��.�9�����؀TS��i:�H[xHw���y�"�,����d�M�6����F�%xɎ}���U?�@/a
�ڣ�v���#��B�,'��1�_��J7�g�|�}�~���~��{_􏫑L����*�w�����Y(M�ƗNP����gY�Z�HL�
����=�*�Z:�H*���{:0�|HKI_�Y���L����^Q��]������<�E���g��<쥸�;�(��
��l%�ﯷ�����;��q<":�/�T��$��r'�e"��2�ePX$8|�m?�NX�غ��|iJ��c��㣌b�[�T��PԴ�]�l���L�VF»�,��/�V�+��N�d$b�����$[[7y"��η`P�9�z���+�wopZo��Aś�-�%V
(�_�䖢_A/L��2����_ago'.%����%�m�;��~[�ӉGt#a_$�C�O��9ɑ���ۦ�gD.�`���~����7��|	�K��	�wi�r?�J��7/�6�w�n��G�-�SJ5���?��a��U?Ӊy��ߡۖ�1n�o�a��D��f���^D+'�I5L�#�t��B(e�#}�G!'��m�r,��������ە)o~����O�*;/V�6.����v�^�_�A+^�S�gԥ�f���[����
��NvCx���Sv9�v�LW�i�	*���m��#� �ț&��[7!�R�W�C"��\�1�5Xo����"��6*Z��"�N�)��1o�P-1k��8�UA�{��;��;&�w��X����;�w����|GUKw�)lޙf{�_���Xa�~��ci�}��ȁ����a	P��������&����W�{@������Q��(G�-��e��D�صثB���]���alO�&F��Aз9��w�l;���ZMb��`MO�;��;���3\;��{��NĭHTX�� :���'�̨#j�`�Kv�`R�k�DzǸ\2��1\N���XYk%<}��P�o'/�}��X��h�&����(�	H���ī$��s�*\��a��"w���%T�.�ڦ��-
�Q����CtP\ҿ��8'ܷ��ݎ�z���2n���GY�d�F�w,D�{�mN�Dfh���)e����\u#�MK��s�Bun���p7.uB��m����O+��}!�1�J��"��2���a؁�Rժ����含�ȉev�Jy��.�
��FД�j�I)˒�~!h������HLj9m��Ef*�E��	(�o,I�Sqx�p=^�
��S�N���Ԓ�l��4��J����n�Ѩ��BS1�Xw��XKа�b��dY$X�Q!�~$Ca���N^�e��4�a|�m��)�i*Vx�N�e!n0�Q�'1�2��k���1����ɖ���J��f�6[��)�{җb�IV\5��2�(��w�%�[��R�a�FT���aU~�H%4�S$��ST;�ʬ\���j���6��-��)XJ;�k0L6�й[L��ܽ�D��Bj>X��r*�v���W.{����\ ��t�W3�O�Y���z�Y�RR:�rc�6&�2��jK��?m����i~���	V�W��J��D���Cvܔ�R*)���¾x8*+^,y!�	Y�X��"�r��F�ȸ�= L��JT#��G&��b5�$���
j̰xc␕�٠Dn�1��B����IASV�D�x,�pEe�!�J��ʏ�)�W��0\�җe���)��EH�d���h*���췐���6m/�UP4Q5�;�~�E7
s�B��U�^p"�z0?4�xŲ^�,�j��)8W�j,G��Q��Um��ɥU�
{�th�8���=ޏĚ��L�E�%R�%�{��9;vIB�l��ڮ#�Y\�oDM
�B�ȴ������1T�jv�#>�!��'���
�E'���"%�\T	@�ml/�F�Z��J���q���M%u�b����
[�W�����
�C���I6���>y���L�Y�#Ge�E�ƈ��M:@�b4>�S�f�W�y�<vY(^3/hZSPv�f�rA�y#�C6	4���b�7���Ջruz2�j��t����M���=��a�}�$��FZ��-�4�[D�]ش�V�`�"X�!
�	<M����z�!����Y2_9�&��n����LIj[�?J���P���G�g%Q�ˇ�w�z�\m@Wfv��c�
d�l��##�х�$	wv"��dn���$К�0KҚ	�D���Hdc6�,�Eq�k@S(E��c�S{�j󌁠~A�F�	W$B3�(SU�ib�SD����ޅ��2<����6�\ү/$2SCHH����1�I�֓&B�i^��W�T�2�v>�O���%��ߎ�2H�e�7�qQ	R}a�-��-���%��^_`�AIh����R!isl��Ԡ��MW�;�1�:Q�+�X?���f��t��`�Z�*5����UD�$@�Z���u�n@�vђA(���E-/��KC8�4i�$Ŵ�4���!�R�al�M̶�ҟ��U��X���W�1�6z�^|��ޘZ%+}<�-�J�Yp�_��-�+Z	�f���\�a�8#J�DPz�	%����h�Ĉ�=,T��Urt;B̖L?n�k���-�$����F=��󖆚d[ؗD-à��te*k5AS+ӌ��0��Ȫ��;�
�d ��_Xǿ�%�cy��`��`�™g�����%FX������&�i�Gj]U���u=�"Mx�ZJ\��;�#�C�i>"pJ��#D7Ԇ�\oC��)i.̌��{�p"�j�󖄮�
f�B�2H�w�"7�!p0�`Ƥέ���v�s�)��㷞��R�o��w��V�����U*�]�-��&�V�;�(��[a8�_�%R��[��lp(�r�v)&�h����!
�^h�qzXHBV�N��I�4oTj�:���f	�nq�p��RuRo0<l*:kn����ӣs�a	;��Bx+5�����+��$ò����W��)��UM���+�Gܕ�
�Bw�_���/W���I#>��JFtVLQg�ߑn������NJ�rګTT��g>4�܋J	{�|����%�$�}!&c�Ε`U�i);Sߦ����F�V('@�\XDX���N�5s���sd�r>cH1���}�?fI�}��AF�G����D����p��c�%��J��d���1��dc]Xɫ@��~<�ҺI�x
��p0�h�U�a+$B�$�E���R
4�/�Y�%Ģ�Ǽ�:g]-��+(���6�QhQ��HUV�V�*���v�;+��8���%�UM�?���S�5�]��_s�ވ_��n.#0�Z��L��$���:&�9�)28�
�V��"�q!��*.���*&�ih�KL�X���/��S�W��g��!�AO�Ͷ8����X�%�劷��v�W��j!F&_�zH�l��B��Z_�%�����	�-�ѭ,u�f�;/}���
i�9�[f�K��(�y�}��K������l�sR�t"Ci��M��$���ȫ)���h��OD�ɒC�����%j,;�W��[��TP�\DVl�2��`{(��rQ��e6б����3S#)Y)�+�x9�'I��T(E�w�6�)��Cw4�(ZNӱOw����Id�݊��G6u7��OM�U6�Y��I	�vD�̋,	io��_0��J�V��&7�^B�4[��}�B���H�G�"��v��si��t��2�5[���6�u����.)6��Bǚ��(��5�!�w�E��w�)���mp��U�u~�s�d���5�����d;�ׁe��x["Z*!3vme��Q���"<3�5%8H��i
DU�*��Tr~Ŭ̸��O^�=����&U&vT�`�_�-�|��ݍ��b�������؜f�_`���,z�Ό�
��j���巅�_��+!1AQ a0q@P������`����?��&�?���i��'I?ƚi�N�5�s�
��k�Z`�xk�`�= a�T��z\u���A��N����7�.0�:��t�7���M'W�ߍ�&��p��3�ӹ�^�:�8��Ρq��1���u��O0zqy��&E����4���rM&c��g�/	�`�\ua�Ď0�A
�ƦT��zdӇ'Y���·��'��>�]p��8�����/A�4��^#����t�0i�~�!y��tM��9C.����9LMMw|���M?�~)�|ό�c/��]u���]u�L/@k:JÌ�M4�c�J`ǘ�K�^��Ì�a�0�B\�\\�˾���à�:�S[�����Q��]~A�:M4�|ϐS�f�E���	��fH8�9r�:I�k����u����s��ܦS��_��p��N�Y�u��3��W�Ɲc���0�3
�4iƍ��e�z�?�:�z9u�,ץ�MuƗ��Y�u�\8�Ddz c?3��>�|'[�[�.2`�g�&��XW3c�d�K�\c�8=��e�އ��O��>'C��F�VWC���i�>�Ԛi��O�t�c�C�87#S���:�q���Y�̎��o
�Ύ�'K��d��T�ծ�|&�i��1�τ�O���u�k�N����O�sӟZ:�#��Π&2:��oS:LI��aX.����A1�Х����y�筽.�ޓLt���5�5���].�K����~N���aL`�k���u���^��/�����t
qЮ����"������N��_�ɓ]�+�4�M?�:Li���c�3�:
�k��Lᡦ�`�:îuÎ��\�����u�MoI��l�i��IL鏁���u�Ά4�n:N𰺵�L^�<�5�]z+����
�S`L�|
1�>F�4�Hd���\��sf�t�馚~��t�:]o@�~P�~p�S
��0���zk�o@�1�L`pc�[��F0�7�z]q�:i�Rd��k�>��	�[�L�u�������I�i��5���u�M'�t�|C��:Ç��:�]MG���_�uaⱕ�&zf�az���Cp525��.��42�u1�.S*vZsC[!�<�H&C��"t�|N�KԆ�~S�~�����_A��xi�	�&�g+��:/D�`��bq�0M|W[��id%p&��g���<?��d��w�z��{.r�Lּ7/��g��w:���pO�N1���`�?f��>�/�ӓ=��Xa���g5�LA��x7/��S�ƛS%�S���:�Oy�j!W,ʵ'J��'N}����I�y1�t�i�Eϭ����C]�u�1���t�#�&~矌4�4�c��7$�կ�-p�/MO��`�@��h�
:*����3 `�F�c�Z/��%�p�:��p�na�\��e|ƺ
�虙5	���"����g�>?�o(w{^�l���~a��4�&�c�S�~^�Ws����p:L4��0��h��W
�+�1(���`M^�}����e.=���<9�)�`��]wJI�ph�\f0���`o8g9�M�*�B��WtӬʭ9��
;���
��0�i4�^�5�[�~�뮿���ϑ����G8��t�z3�WG�fh��i��ԥ�""b�����@�0\i��>�FP�8.�7��]&�ap�Z�yq|���<:�'*՚^	�'8EN�E�w�lT1����V���5�ψ_�?����uܟ9�4��7bLVo�I�h�=g@�f�����0l��,t�'M.[�yn0T�fB�x�w3���<mQ��t��0��7�:C0F�v;�3�̈́]
CD(aL\Q��=移��XtI�&>�rt:�9zK�'+,a�7���Xt
1�ށ�t�4�P��j4�4<��7���pn^=�a]0]4��u�_p�n7 k52��5�����4z��2V�}�t7�>���4Ӣ|
���i��i8�Ӥҙz��>��0&0\c2��tՌ}=&�3]�37�#�q�1o#��������&��
����9��M��'Muà΀z�
�MG[��u���G�T��]�����9nM:�4��4ӭ��i�Lk55:�`�0j�L.[��o�ׇ��OTɎ��]z�뇪��t��8,	���q&�F`�C"�c��q�]w��`]x}&�`��4�&��FA�Ӿ���p7����8l��<OBi��|u+WD��i��::c&����p�����]zY��5ס���u�S��1�C��0i���\`�s�cf��{��ޒd!��O��������tk�[��N�>�A�n�Cd��N~|n
��>GY�^���`�)ptM�Y�up�q��t�&� ��0'C��&1�����q�cG��i54i�iy��f���N�^N��
���ƚ���i�N�T'O�ϗr�j�xƫ�'S��3�`
>�tO����Fk�f��uf��:'�1��Mp�Y�#�Ǻh��^������'��N0�qǼ�y1�1>L{�>w�:3�2���q�l7��fÄ�Ǩ�4�Oۧ>S�i��u�[���Y���u�8�jj|�2u���C��"�c@�	Ю�:^�\:.#O�G�}��9���Ьދ�;����0<�15T:{C1�ir4���c�.��	��w+\}�΄��y�Ի6����=�0R�A��U��\�E0m���o[�n��t�t�uݬ<t9�W�_������	����3\?���]�
��-�aYW_G�(������?�zF՜.�.Հy��:=��\�ܸ��X�yXz���Đ�CSn����y2'0��kxd�M�p=���m
���r��\���]/a��L�@ޗ��;�����ѧ;8�k�jՎ��a�3֟��{�z����N�'��B��p�D�a�n}Ճ9�	�g���r]��z��۪��8��L&���Өp�Fg_�k�����>߼3���w<7�N�>�44��/ɀ�L��d�9�ɒe�k�0N���u���n�F~��8ߥ�g��.0cC��u���:����2Zt�5���w�k{����&�r04�!4`
��}�4�ᾳ���ʸ�3�k��fҷοn�����뮺뮺��E�]p뫅�����G�u��LjM;��L߮u]/u�a��,��I��;yyN�5�&i��zt>����5�8.���i�K��K���WMny��.���u�^���&5�pt���={{=%7.�.���gƫٗۮ#��^�F�����i�뮺�t�/K�k�o[�������f�&�z���Ժ=I��q��u�_�3~؜�S�E�t5���_��$�|�>��M4�4�N�&�|���˧�?�55��:٫��]u�[���i��M4��&��M4�N��`^�tt�9�v:#�u��WWWWW���~K�O�G=�SӊU��4����:8��\N&SI��4444����d���47��뫟�u��3]u�_�F�g��ù:�e{h��s���
#
ñ�=��yy��D��^
1���a'�J���H�gC��O��	�|,�1��~JS�#��NǠ5�49�
4�M4�M4�>1Ӭt~S�n7-ƺ���c�_��@�0��L��4p/�_��8�R̐r����ޜ�����;i�.�h��/�V
%2Ե9`��O�������1������?�oA_n�n^�)&�]��h50�Z�ōqZ<H=[�"qr�5�Q�Q2�:����z.�gY��i�I�S\�:�.�����5����0�uÁ-\^B=ކ3��<�50*vL���	�9S����p�������;��?�bA�]���qq;�
	�%��,�rh���2EX�f;9��N�y�Zr�\�#k�`bZ�x�2	k�]]o���X����0$^u�p���}�˻ڽ�Ku1h�19�����I�I���5��u���k���r<<3:p��O���,VG�n?��w���8�r���.��Ϸ0�vo�'{�<��7���Æ��
d'��������b&R�9{�D"�c
�/���C���'�I��4�FD�
P�LhhGKrd�K�rt���=��ro�>�ӡ�
*Ё�)���?�������{9�$�Nh�3�>-�"f{iK��NY�•�,U�L$����尲2���.���ϥ��蚰�/xc=����Ҝxʀ��=��|��0�a��U
q9�V_��2D�x�kb~�����mk$����Йs�)���ىȟGJx��bLH�3A�q!�����Qq
�/o*�W�kS�?�U<=���MkUz��
��6?�'i�~c�)��̬�ri�Hxw���Oi;j0Ah[0wٗRH�ϭ^�E ��ȼ_�H���<⢄NN遱G�zx�M-����YT�3	��G�4=̂�u��*+�cL����K7���lV��S�x����|:�&����?����WW��?Ձӑ��<��e�߷���]^䓹��$�SQX�x^������8̄1��y^��f|'c��Bx���� l�E��h�LN0���c
*-=�=�Q�3ܨv���N�cF'i�^�_��+���"Y�\r�%�o��{�
?�W��o�{���5��,��W��(_.���\�Q)J`
X=�i���3�\�'I:N�.��bo@���E�su0L�5�&Y�ǝ�'�o��AQ2�_�$�����x��{d˪�k
ݒ��ǜ%J����'C��_�"�X����D����ܑ�|��^�WF&.��>gG����N+�����J����ˈ�س�U���)2}�Ҝ�Q�V��^o�/��K��1/kx��
W�yt����S�^}t=O��>rt��^wm��ɠW�����q�U�L��ˇ���g�`o�"\p1�:3�x��4�-�Kf�-XW/��x���=6�?���=��g�/J�w!>�ϒ�'�^�A�#��,�~��8]:���	����3�ԬFI޹"^���,���8��?�#�V���x�+��~��Q9g�38���ˑ��vn���r�
q��?
����Ź�U���2H��ӆk�뒡��.!��g��4���z�)���&p ^#���'xүz���N��N/���I�`3���E�����.^s�{C$���u����rd�a�^ϩ��dZ/�|�KS㯢�r�o0�9�u49;H�+��T'��%��'p��y���O�� )b�r)����/�-�q����/���2i/�?Oq��x�d��¢��’���f��Ni��-�q����O��}�+���[�{�!��lZ`7��ԕOO��/}F��98d)�=��p���򕲚��+I�%�e�r=9$Rvc�bw���=Ff���4�O�j� �x���/*�*�pm^X�F{��˗O
��:�(/d�lm�F=��R$�؃�������9ڌ�3�ώ5"�깱��M���X���nn3��]&�.��:�}�?��@_?�๒u
���^���.u��?���l��;��:ʺi:P��bi�1^S�� �c�.��%t�QD=���s�9d�DC!�r��\n�'g����a�ܻ��k�I�8w0����{��i
c����%���ݼ���z2q�t��A���4����z���
`�妏/�Req[�3#��*[��Ҋ_�
��7{���NY�����#o�<3Ä����w�3y�;`<=��	��_ߟ���T�0g��f�-[���I���S�l[_��!'�i��i��YzO���6�
$� J���_�ܕ)k���rb�,��vv��h��t��%��>����a��cR�ai7���/�����(
M�ݜU�T�q����۹���~���.s����qƹ��~����-?p�f��!/��|i��M4�I�]4�5�뮺����.�k��O8 4�?�*t�޿yR�o5ܓއu]���GJ~ӏ�u~�=:��h���ϝ�
�������黿��.����2��\��C�ʩ�Ǔ��Ȃ��~����h�����Z��zЭ"
5�~s&���t�w�ǭ��i�a�s��NF��Ŝ{���L'��:NGc������g�o�~g��1�u(׿�4��;A�*��}�P����z�����h��M��6��������2i��w���/ۃ|��0��n&���yX<�N�
c���_�����t
Õ��&Y�9�Dri�q��z>@�}`���5O���`�~���x]�"���{��P_�x>�."�q��-{|��.�\���w��rm��@�^�x3,�9/��u��3���̀Q�W�xCЗ�zyb�5�v�X�Y�����{�|��g��&j���S/I:
�$�IA�Lb$���z5��G��u���C�z�̟_�����U)q��Հ�E��4����+��}�A��F����0\�/��44�������\�+��C��\���w���u��T��]�zq�Ž�۝w����U���g-���}��G<`���=~^��j`��b/gI>CY�w&�0�-�����]&4�|	���4����W�K�gS�K��&��ʁ���(��0��������x��	�J�����v���q�����Y_z�7�W�qpʶ�����B���F;?o�,�}y�P@��7ۓɝ�ρ�W���i	�&��i�!zg�2��*�cN��:-W������2ipb�1����D(�8>�SF!A��)��|�Z���~(	>㑊l��u;�Z�$��t�������������땖O�
�pG������Qۍ�uR���ˡ\S�cA�gd�:y/��*�jg��㭽N�;��*���Q��QB�i�j]G�ӡ��p`2'�\ev.%�<�:Bڒ&^e�䄮i`K��q����i{*�4������0{ݑ���e��;�<��/	[��N����D�z��v�EFr��x}�D�U�^m-���#D����˅��̯^��*���i0oQ�:�g�L��.�J��HĈk��K�5�`�y��3�!��,�@p��+E��jq����5��{�O�9�C�����E�S$�]ۮ��9�<���<��8���,}�>��/a�o��Z����S4����l��S��g��f�a���b��<�T���:_i��F���5gk�#b���'٤bD�p0&��^�:(~��N����u:ʯ�s��O"���FY'�Ɣ�����t���#��G���G2�UO��|u�_��fF�qH��x���aoެ'ۇR=�G�g���>��>�Z�|o8t�����p��lp��C�i���c*�����z1�b6y�H|�?���t'x���L�#��>��D;��CF|G|i
o�S�
�LN��ׂ	�́7`�Ǜ�Н�O�6�Ry�䧷8�P�[�k��i��?kL��{���ď>�?�����C��y���w����[��a����NG�w������zAQ���^�V�Qx��u�T�g���KJ��4��O�L���/�k��܀�%CS W	�� �8�W���`�>�_Li�p��}�4��<t�`m�?�,��c�wp�7�}��"	�����Gon�O3졞$��f+����f��ߺ�}�Jsx����p�mz�{�꿳�}��O�P�L�P���5��̜���m��;\�y�u.BTx��k2C��k:躛��N�K�Ɠ�I��A�z^��n�dE�^H�Zsߤ��\+��8��	�U%��%��- ��9Ƽ���s�a���ι�.��r���wy��r�S(�c.�`�`f7x�����f���q�����z�ݪY��ϰ�>�<�,Iϰ��6ʝg��@�\=�s�4���3N��z3L{�|CCvRtXO�/��0em�2��'��+��h܉�̆6U2�����p����8�x<~�|>�����wv�{ʬ�;��i�x���%<��;>�/޻��p�1�_�8*fv���lU���.�ܲ?�>p�UU9~�|N�_���.�����m�MKX��}�r$��������N�*\�N%��b�|��f ��#�9q���it���S�0i>�S�]6>�m��bV��|���6�!�#�����b�)L�߇3��F���})��d?��.ߧ:0d"g����7Ư�%w�>�̧�W�֤zy>�<}1>�"�C�U|/�c���<�q�sO�أ�I����YlR3�l0��I��,�`��{��nK�kB��9�~��jI�����y��}ާ���pIH�nf����T{ݲ�{��F|�ێ/�������!��a��I�\�I��]ۖ��[�a1=��7AU�ҧ�A�U}��Ȇ(�4�V�w�_�Ew����_�ǻ>��~��ވ��n�|���xxŤ���������c��?����Ö����O����ޯ��ܦ�.�o�+�a�=�]μw_����g�����;�Jv��9��<��^x�z�c��N����r��W��t�K�c�� �T�n��i0_����3�1ȥ�]���1��u	F��>�(��ʁ"���4بU}�����'��!���\�'��`Ԉ���;�C��nM��������:?klŇ�����c{?���J�{�}wf��?9W���N�>n՟/�\�q�?L�NȨ�=��y��}���4R��=�ODO���%P;��GW^	0��[�?��<�e��\��G�E�4B���z�A�_���t�#� ���8�U�FzB����+�9�3lZ78D��V�/��U86_���;�T��s�n�#�m��vabo��G�'�A�;�]�o'�p�ζ�ݲx�G�+���lJVB����ǭ���~�'��{"�#Ol%"��}��������z�G�X$�\]�JwXl���.*�/��\���{H
�n��{}�Q�Co��;�0_�>u�c������%�5�2.5�Fk/&)\ ��ޘ�a�jϣA�?�q����o1����3�]��j{�4�W�6��^��rQH�3�>�io����c�ɑA`��cq_�X��v��g")Wי������A�y��/�ξL���|8E��ƛ+R�=���|x7��Y�Cix�ryN��*����g��d�w��,������;��n:K�l%��hi��R�����U��`���4��F%�Ү���'�)�Ћ,LA
�E_���B���~�pd�eq^p3E�9gx��a�9��ޭf�I���y�1,x��nB�%��w����^�!������������{��p}g�nа��8	����?��nE����t�����?y�g?����a���p�ᓨ�{�z��o��r]_����kϱʝ���Y2�Po��B�/��Q���2�
/�����:<M'Y�:x�a���ᠢ����q�CnUbbU|w�P��HW�@�r���`!��HJ���J�7A+`@��c�kI�<�9�}�����ߡm��?x�=U���]�s���A��Ŝ�}��6�G?v^��)���zϗ�_��,s�v���#%Wq����V?��v���xdf��^}i���F2}�ܶw=�����d4���ev@�;�P��L�'��Z�Q?��3���X3[��5�g�pCۆ<��rC��<�Mi���;���#�G�x*���df�Z�C��(<�3��{ZВ8�(���``�5+{�1�Z��8o~�bU�A]���q�
����˜Y���i�ֆ]����5����a<��I[��|�D�_�Wש���g��۔p��c���\?C�p�$�'�;��|�d���d�����._C�s���l$R{�Vm�>��:�3N��L��c=#�B�����t�ʏ�����u*:,'c"G���i!F"��6봩��5�g$�Eق�F�Y�j�U\��%}܋�t��\�����(?����D���^��#���)Ӷ �	{�Ǎ•aG�_~�_�4��Պ�K��� �ӻ�s��y<�M��y���_?l
�����6�����P�^��&�E�߼����}�jǏn'ڝ�����}=c�����0{�Q<3��˘?��}�U��Acϫ���h��|
�qv�g�~C���f���7]`�*�WE�l�E�>�
�a����)���j�<�N5��e���9@�vWE7��
�~�L���0��no"m��j���T��y������J~@��^�ї�K
��&�gl)��]8��-�r�n&�qW�6���#��܊��7����Ƃ,>$}{���UGa�r8�<�i|�~���`%�����u���E����QXJ�p�Gە���gP�L��0��A��~D�����I�N���y�`�WT��<���JZ�q��43Z�t��Bh����v0?@j~��T����30��fV��uDS��0ۗ��#� M
��6�Gw������4a��	���N5��C�7�.�K���N=�2�K��|g]����}��D>]�#��'��<1��w�p<aÄ�|��a<����Z�X��Mz�\��A��V�,6�a<���{��x>>�x�D*�4��&`�^��`�3�^�=�q�i��?��ކ��{��,��0
�_G������P�z��i��%�#�p�^{�T-s�ZF!\�7���g��F����̧^C���DL�H�O^�k���8꿞����/�B�[G��4vX���3+���� 5��ρ��w<Py黷�>,Οoт�F����wV���y��W7�����]�6���z���z0[9=:Zb8C�.t��ܹ�hT{�w���)��t�Q�N�_�n
�J�5mǖ�fjGA�	�cP?��>
�j�
P?x`=h�l���(�vK>pVn��?fS^���	Uz;#�c����)]Y�w]{~����s���?)͎9�_�7~U���ܹ흴�=��;aL�z�G��/���v{8����L/��V��=wˊz77�oǵqU�ג��!��?��Y�����������h[&��\f�T�?�G�H��i$��E��ʁ_���A9^�{a^sM\5�a�ʽj����
^ph	^���5��&\���V;e���CrȀW���%�vs9?��``���ew3��sM�ϑL�=&)mb�7f.�
8��x?YuV{s+W[�!� .���uV����x��?�e�ݑ���p��?�3��<q[�0�;��A�C�싋n~�&Q��Z{��<��y��{�(�s�Y/d���?b�o�w�xw_��qk0���䟹�{�r���<�.�"J^�rcBjJ�s9 P��y@kEE���C�ƽ,!����P���K۞:G6_6��ή�/�f�vK?};�(C#���L�/Y�I�7̉�1yC\=��[�Թsq���RJWƒ����G�E�Es1;����l���՘3�9�.�t���o�_�����\����ފ��������`�ܝ��{��h�W����Y���b���DW���g:e��Z/M��ޯy<��Xo��oA������}����O��\T�<똗�꤂�NO�(�E.+���S �<���J\��c�5�P��V����pX�����oʡQ�6��3����x��rz��O��'�E{y�P�+�whTܳyOMu�^�]u�`b��E+�R�<�W�lg���۔��3ә^�a��㱓�B	9�]O�jx"����"��mN��}�1�b�}��97a�C���r���4��s�{�g�m\�w�w�:�;࿻#�uČl��o��n�=�y�&�;O�7���������/��&yX�V^�v/��.����0g�ʬ��$�R31D���@w��u��:XE�g�sq��qy�8��5��!�%g.���P7�ˍ�w`����2kZ��4�O9.������:P��������9?��˸jf���i ]�8X��B��z��TńS��P��ꚮ���R�S���~?ͥ�5"���c\�����9b���}�<_x��������M;������P��֎�U��x�$'���G�˽}��x��lّG���g�x��(.TE�����1_f9�y�����olO:�o˸Ԓp��v�W�� ��9WʼyqV�|T�ƽ.��¡8����^Ժ�:r�'��b���8��'�G��h�1`�N����������9q�C"øe�w�Vi�c+�n-N�C�K�263�8��p��s��mN ?Q7����?s��b�򞯼�o8y��.q�̢�<��*×;��s�7��x��јFŦ����ci�xOG�q�g����3
��u�}柿��|*�q������&��w+*�3C�ܥ�t��T�I���C�cU=Ԝ_EG3�@[���v���:�èH�:����.���̔8;��WJ���:2��3w7����h�No��[�ϳ�q���i�i��i�I?�����\z0��с@c�Gm�!����q�"�{i�O�W�[�5W���NY]P��p���>n\Ǵ�~�I��~�}x��c`ǝ�Y��]��8?B�܆FB�u�G8L�y�gT���̅�>��/���^���z^��w]c�|�H�&�O{�Qw�M=@�Dwnp�
�Wl�K��7Ƭ��_�dǔdY�#1]��r�@xf��%�t��Nt���1�X�Vq�zY�.���A%���	�X5��;�����ŮyCH×�(�ϣa38%a�i�׃��/Ǔj�N\ƫL����Fھ�0s�C�عB&���ԡ���#=�`'���U���?]�F�M������Ѱ|���T��G�O)�W�:S��'��vgodz���q���>K��i���3\���N�#W`��s(���_�x�|+ǜ���&7Šq�0����֝?���z
�Ƴ��9�a�s7�"��i����t:���|a$OyK�~��g�y�$P�t{��`ȅ�}�!�|�Br^��|4h{�g�5 ��Ʈ_OXo{�u"��K��.���uB�ݪ�.��i@I�-|1��G=��,-R/0�|܃I-�w�v���V�^3ƈ��v‚�Q�<s��K%�σ3����&<�wҞ���,��ޞ^8��S��0�׏���o7o�ۭ��.<:���\5�	�ec\�̄��N>��0L�0ʪ��3��t����߀L��C:pk��ؚ��W}�M1����Xz>�%ɋ�ܴ�3n
��b���s� ����p2����W���¾�uy��N��3�ۨ�|8��sp'�>�I*7���&��_��8w�t��8��:�������i�0HZx����-V�����@�^�(��G(|��l.�o��;�����7�I"K¿�]3�*���Y�MF1>�CEH@r���垵���#���qQY���epˠ�8tq��x��x=��G`�n����Г*��z����n������������{�ç��=�`�Rr��`�|���Rɻ���֗@��?F$^~U��"��q D�^:��E �
��
���	Q��F_��=��QC*�@Hb�f����K���8���V0N~�=�0����c�z�yB���4��|>;��N{v��b=`
��{�\��X�N>|{{����88�;�K=�&���qt��.��8hC����w��%g#��Ճ�d|�4FEȨ���nz[�2՟��L���/9F����w �dX�7m����2��`�Eu@z2KN����Aߜ��/���;��k��s��'�&t�G
*�Q\���%}�����/s��"��c.��\����q|�/<��/}���{x����WO�1���ɋ���pj�^�&��m9ܫUu�/
2^L�  	@�c�l��Ncӹt��5�;�L7?�L�06?���GU���W���Y�JQ�<_��	��q!‰��	�v?�#9�{�������"��n��'�$S�ji��?Jb�' G��{4�ߙC���J���A�8˜�^_�5ԯ>�$<Ϸ����v�i�~��#?m��vu�H��Ԛ��ĺ��Q��c)�2N���$�zI�1���Cyd�W��/! 1"02@APQ`#3BaDq�����%}����T�R���jUA����
J�*	�ʕ+��W�r�J֥C�=��/�
jx֥J�*T�ZT��.n���7Zn���@�|�7M�t\��e�a2�Y�ʕ�����wTJ���jT��a3�o����t�pn����]�.n��x�P~A��k�#��r�2�e�D�&��z�_�忰���R�J�v._�\�a0�	���.^�.\�.\���j�j\-J�+A��X�/��:ַ�Ҍ�R��	��a�/��iR�}P	_=˗��+P{Η	��F�˗�^���2���|-	2���\�T�R�J�+�R�kP~K�A�h;����u�r���*T�R�ԭ+�á��<���R��@%J�*TT�uip�74%��J��{�n_e�ܾ˗��*T�D�%���hB�Sh�!�J��1�r�7/[���˗�r�2�J������@e˗.n�~�.\��!T�Z*T�G��r������F��iz\'K�.\�pp�\��o���\���ˀ�%J��D�P�F�*Wُ��;k䯂�@֥v\�/Ng3�mJ�r̳�ۗ.P���/�Zo3t'PL\�I�K��N�kr�!�$�Z��%J�_�gX�	�.����r�_eB4@4�s9�/C�pw+PF�&�(J�J�.^��e�z��G�;oK�._p2�@�z�*4&\&TT�+�JҌV�r��u�.j����\'��P!�j%�ҥT���.�e��&ɲ�DV�B>�	���H�J���	���R�J�+���K�F��wQ�eB5T�P	FV�J�V��	C[��e�o��e�Ҡ�	��S�'J�~��h%|�/��jTTe�e�u�s�r���\�r��ҥi]��[ԘLܻ�+J�/������T"V�e}�J�KbX�%��5C�/�r叐v\�cgZ�8쯖�AR��r����r�&n��/��z΀i]��{�\�r����L�\�fs��K�.\�r��5���g2��9�ʕ*T��`%|J�;�.\�r�(��J�r�������P	R�J���}��r�˗9��{���e˛��r�._��O�,�R�/��_�}�Ҵ�r��e˗.\�fY�t���˗��gK�.\���r���\�r�b\�,ir��\��e˗.\�r�˗/[��e˗�.\�r�:ܽ.\�p�W.\���r�o�/B`2�˗��B���L�}�/��\�r��R�J2�4���v;hJ�z/�v_}�r��._���F�J�,�R�J���9���uJ��^�,���r�;�.�ܾ�S�Z�m˗.\�r��Џ��ڑ2��*T�(�Z�e���r�֥kR�J�*T�R�ʥJ��7.\�z_�T�R�Re�sR��T�R�s���J�*P�v\&\��_�fY�jW�T�R�J�*Wi2�˗/Be�u�z\�r��T�*T�R�J�+�w.^����vW�˄˗._�W��޷�	_cr�ж�	��._3�����\�l�0��@Y۠�u˗.\�r�˗.^���Z�.\�r��\	�~7�������w!��Hi��x����ľ���ZWp���O�ЉR�J��G�4��|�����:u�l�B�A�8��b�Ad�0��� }�+U��,f�R3���y���b��*�K���F(� F�p+� �,J��q��"�ى���*T����#A�u+��Jԡ����J�/��ӠDUR����p_j�D�C�\����ɶ`�1-.>�݈;�rGP���,�0�\/��
�7@!k�z��X�V��M�9�*�(%SlZ�CJ��_}���(�\H���`��I��Ĩ��B(\ϕ�`������,���^0�D�e٢�ר��/K��4k��0�J�
��[�������
nl9�u5,.�D�QUe�)m�q���P'�cbu�������7-�T�P�G��L��<�����/�)��ɟ�k� �*P'�≌��p�s��LN���MNbF��	��Wh�A�?�_�*G0 ?lo�#��=�:���( r���W��(�E�*s:���:\(��E�T*�ۃ{A$�dġ}�p̬�H@�@�v���a�2]TpR�T�ZW���]�\����&B��,�w��7�I��(Ɩ�� zQ�I'� ��ڽ���*�@>IEonqP~�еW�_b7.��`n\�
˃�
)��<H�n`������@҂�\��	#���"��t���E���Ԯ�*b=���͖��&}�m��-G#� Ba01,Gs:���홌�}�n��ʼnb#���XXvX�8Q־LIi�Y2��
�h�..��s�e"��cn�����}�@��X��L��j�r��U�@�܍XHP�X"���9k)�W�;½�$06@����Ð/��ȏ��	��"�*V���J��0��gvk#n/�vmp(��~vbJQ�94
*�
�a�
b9P��,�Âo��D�n7C�A5/�$��P�2���Y2�a,��4&���m9��'P��L��>7�O<9�QY�ȸ��Ŝ��ޘ�]�z��Ɉ�\�p��8��m�:��4!�$�P���Dː�O��+elȮ�H|8b~�!�J�8�A�l��R�zfu��ӄ'JT�]��+pa�����_կ��#����r��#�[��b&8$F[1���y~���[��1����r�s�O�3��0�(���Đ<�I�C‚k��\;��Ύ�m��e)���Z�f���	kboQ��q�,	Ǐ|D �\@���]�9�s~�ocLg�a0�:�Vs�e�eي�+�w��TO���"�t3����n�1�qF�67I��h&A�P����7�W�Xq�Ak5�{LS�(�3�0�E����s�[
b�aR�H,�y+�'3��z�}@F:�!p����Z0���Ċ��Bg3���s��jϴ���3#@=�e�P���1�c�T���X�6G�M�Db��\8�(	�3�8ɐ��V�"I����
��4�$�B�}���˗��H��]�$�{�ϰ�9�2L�� ;V�f6rƱzJ��%ݷO5��;�lK���"`D;�^�;[?N؛q���HɋS�a��E�
��۸]@o�&_`�	����#p�2"dj4����M�������b&���?���
v���meW�ep���zlE��2��|
t�����+�j�q��5���%iR�J����j��m�ɓ(Y��O��4�	�DG�r!�	�:��ٟ'��0��n|h�K��ʊ���^�bВ<G3.ʻX�;r9U�U�2�@#�az�c�]�L��2�=�=L�g��:3����r\B�p"��č��’�Dn�q�L|���!�Мy3�(��O!�@��%�I��R��.MLy�D{[�s���7΀^9�gH@gɪ�d����*��l��euA@+m�0.5��:l�ع�B�vQ�A�/��������?���A�u_# >	0�@����@Wʦ�hHAQX4�%��k�,O�fd�Xq�,ĽL�J��2uF�~��ߓ(��S>�6C���m�=,ˋ,[�N��+�r�\��$! #�����0�Åp�U�����n�쯳0B@�{_3��
�C)�?�ข����O��J��̙���6CIXp�ٳ�<&�X�s�S�P7쨦�gˏ.��"�8�r�6UҊ��E���B@�'7����4#�x�-ИO򆰈�H�u�[� bM��#=y~����x쥲�Z1cSa��QqcI���{����aA�6c�M ��9Ԏ*(��?�+�����>�&��f<�.��|1��>ѡ2�^�S���dw�	L������D;��s�S+��T�����b٘3s�*��p����
�Az��47n�����@��r���J�����f�t�n1�������c��&LʞN\���B�L%{�?P�v�N�
l��@3�@�Ib��Wn,e��A��'��ks>g�HYғ��2STY�x��@R����@o���>`��I&]�ӟq�-���c�0t��T~	�9��v�
��8|��9�OG&Zf1�B�
�3�b�Uqt����2d;f<U� �{K�,xb�-�ϓ�ĩ�|~E�n��?=^A �gq��D�r`W���)�"{G�?��P��i��2!4'�t�\�i�Ug40c�֡�H�z�@h�L�q
�Ï�#q��W�한n�1X:|�Q�rd͏��b����������)�0�1����s5�(m�:�J�����Z��
�J��
��W9К��/�r��F�q�	�prC��QZ��E��C1څSߟPo"��E�V�Ս�P�_+1�:n�1���gN��31��(�WڔI��(s�QK-��*�����**�M���E�n�T�p/�h
 X���8O&e�G�EL�а�Fs:|J����b@��W�#�̷_�}�:`���;�ӿ1Gq�)�YB�T�q�L�˟;g��O
v��p6�ګ��ɑ0-�6V�h��)�PQq���	���`|2�i5��
�C����q�7�;y�;3!���r��‰��l�j����q�.~m���얘w������[ -�$�C5���,{�9�*�ybI4Y<e���Yȡ9 v�sV&<-���)C�%�1��D	_֛ �	���F�&������^��m�� U̇j�ɋ#.��	G}N�0�.BM��̧&rr�hl��VWYbC����F��J1�[��7;��>m�f41�����@��rM��I��Q���qC�G��ù��A3���,Bx„?9𜇁�!b<
K
�ޯpŏ
S��U1�Lf�u}+�{qcA��+\
T�/��Fe�`?^R�9bM�oqc@��T�Q����8��q�$��>6[B&м@����B�3�sGJ�s�d�����0���	���M�]����ш��awM���ʄ.<gm��V��UBX)a�C�ًw2�
���/��g��m���HTX�$�j�D9�����P�@
��
����UJ�..L>`30��$�'���}A��%Px�`0���N�?�`��q�?��ć4L��{�ZX�F�T��3n�l*�G.m�H�C�8�$�4�#V1d)�Ĝx��K��d�8 ��Y&�&ѵC��Ԩ��)#�˯�	bc�8'�T����d
���3��K�ͺ3�,7m���l~`>�ܭ���}�wn\�F�%�.D5P]�̪lH^����A`�[bٶ��q��!$@�b��0���e7�\�&�7�?�ˁ!�Ʉ���a��Z)�	�"|:p((@��2""b[
��Y��mp����.@��%��w�L�CD�A[��lg�|���!lI���&��J�ؖv�����$6v�����D7d��
���4�s���Ɇ��^"��UC<���6I��� Xs�ay��ኚ)��*�g.�v�T s�2�l�&Ӌ#a��[o�Ig�F��!S)����������Xͺt��*���F�ɳ���p�	�n	���\����a���w7?1��`Q�9�8��`?Q���� ��y��T!l��͇,!��#�D 3eT���\��0���؉f�{PW�X�?5�jF5Fe ���
�
bǶ�I�J�B����C��TQZ	�pr��7Ba0�a��с�?�fT�c�P�U�Mp��h7ͱ4�F:�
�rc2bOn\9s��͇]@p�:�M{A��ʃ>Wu�ʼnqՈ��6M�y���}��6
����:�
�zpX�
���*.:nR"W"f`�gv�?���	�7�cy�l���\o����P�M-��Q��0��4�B��.:���afk�R�q�����1*l��.q�9��L�ǫ���,a-�����S���3#��� Tǃ�+�G��2�E[u�wz�U�
�ݜ�ȸ�j�ʨ�A�<�q$�¸��.�5�>$	Z�$Ѭ&��:�(`"`+t4qȃ���Bק�R���7�vf"	��_�n�ʡ?
��0�[�X���԰�͇�Wn~��dT�ҥ̹�g�;�����qvMä�Y9���2��S���Y�4oT�l��˘'�qb�[}p1���W�ҡ5ظpcjA	�� �?y��,1�N�p��4[�?1��`Y.���:�g�"�c_	�&�{�ErI�O����h*��j
�g^a����q>�P
#�]��e�Y�������?P��F
���|������F�rdi�,����׋��w�q�B�
=@ʣr`��\\7w�� $��9�BO�TP��x�v��5�vd*���|�+��ql ���/#P愡�������x�	����^L �6_��Ap�����ZT�Q�tg�b{��5�eȶ2g@�k7XA|XS5��$�K�[n|���Z����
ĥ���28�X��	��1�n.S*�+�v7A������p�Pa����`h;��(�<O�sȘ�,"�-��..e�s&*�0���wq­�21�H��	��91���(`H2�
�ol���2d�WU��?JG��e\k��d�ԞNd�)p��:��ߨU0�;R�w��X��[™wʃ��\�A�;�;��?�(B �u�z���j>��ʀT�ۗ&Y�,�~! E�a�&�F��" %���U¬�X�c�َ_n-��al}^��%AA܁��o��!ڸ�D�=N�>v�(��w6�wq�3�����A`aľAm͵���\���57~b�Φ�PI�d�+���|5�D��8'����	�h��4(N���f�a��q?�M߈�	ܧߺ�tl�I=J��.��p�����YޝH6�3�yCn�ɱ�=���Dx
����좃�H�P����Ɋ	^j�Ԉ�>j�TT�(�z�L��������yw��
�ёb�I�N&����c�(Q@s����_;��#3��-�B@S&���$�;Qb?!��{�����N�1T��%ͫ��͒1��1���Ø�P�?0P��'�f� ��U˸�<h��z��Z��"{�&Y�.�r��y�*2u�C�zdB�(ʨ	��cQ��Fs��Jа��(L���ۀ	��@X�M���Z�s<Bj�{7[�n��R��OQ�T��[�`$�l�Y��"�q�L
I\m��Ą�9	*��aL�G�*A6�����1�fT��*	Z���_}@�%Bj(�!�G0x�&�b��*^w��,gjR}0$��#�f�@ۦv~1~nR��9q��e\�͇�ff��*��U�.��-��c
r;�m�2�n?fظ�m��(�mԘ�^�
����*�M���*��]��-r���P}��%�ND/P�_/��E'�򅙆��q�S�|�e̠Bg��¨C�(�[UQ��ŋ�P�O�u��Y��0[#;�b�/QiY��1có�_ Al7uM���+�+@A2s¦�r�� �D��� �#�C�$J��-��X҂Ҙ@�d�
�"Q�C�;p�0	Q��c˘l�r��g�q>�|D85訪,󑂡$&<LXp�Ã}.��DŽ ���$��|�ϫ���R��ؔL~M@8ՈRI��5"������9!1AQaq `����"���02�@PR�B�br�����	?���;
��M�/rd�:�A5T@�B����%�.wp�`�T<�7�PC>(9�r	���� ��k-$�H0�ї��G��m�� �١��>C��T�Aﴐ�v�?��h���N��Y��p.��~��v%�ol� �s�2�D��@���{���?Dn#�s���/?P���!ц㝃�
_�����2�B�`¿P!�=7�fx�+2�z&�Oq.pu�r�F������.�5��Bt�;�g�A� �;"3��u/��]��D�f�~�]�������\n@� P�f�Md��щSA�=�h�/�+����zf��EJ�!�b��$\&��h2=S0����9��N�;�Ƞ��j��O$��(�ۺ.��\��"�a���z�U���h����aߠL�r�5���������J�]���Nc ��\MNAT伿��9{<#?��_>YAJ��W�U
E�;;%�z�$TPj�j[�<9ה�vuR�2�k�nRs��}��`S/A�eR����'��z/k�A�Ԣ���:��g��K+*������Q�	��Q��s5Ζ
Y�4f����U��;�(�d�i��h�%�m��#�S ops�d���Lr��^]�:���p�GP�Q�����sQ78�h>���ڲ.�GӺ��~h����S�s���!�J<;��<�_d�^�}8�U�ŮB�9�@"�ꂂ����
�TԮ{wC���G5��w^cj������*TC/L�K{J�7�C�=Jk��e�_o/�ځB\Ӏ�T3��l�i��[`<ޜS^#n�yY�T��A�y��T������ /�ZA�ӹ�
��MSN�P�Ӏ�Q(q��Ní�vmv��S>+�ը͔[��#�M?Y8�A��}v��aT�O�5�"�/��Je��O�#�~B��S�#S�>?�A�=�O��ɯ�p���a+�Mza=��(ƀG�>���Φ���>Jڮefz3���V��`���Q�o�*��h��:)��2��N5���q;�6)<�s2�_R�?��URz�y��TE�j�Q9�4#�fE�Lƃ>����Z����ͫ*ϰ)�0�Q��t��؍�8�#j�l��2jꏅ���bº����C�����ծ�&D�5��W/Y�>�|�sA���Xʃ��&��}0��{d����E�g������ԵE�|r>i~�xX���A�_�"����!�>/~�$8uk��?��*B��t\.����{A�#-��v⏌�2���<"�C�ey��y4P���(ͮ�� 3(���4_3'��闪�"�BB���������D��Ƕ
��h�<і��
��/#>�3�fnԚ!�9H{�E������ot8��h�|�A�Q�ɒ1� �z�+֟Ҁ��d�"��\g�j!�G�F;��h�r�R�uɋ�d�p<(�o��uh~A���r�lz��E�$��B4
u��f��F7�d�dp>Q�؀�9�`�!�4E�]|����	M<ܨ�P g3`���K.}��]}��Z2Ƨ��h�T�8PYIJ�q*[�6b��x��*f���9B�Ԛ��ks�e/����Jf�2�.tͲ9�!����:�`{Px�UF6�PG,��\��RAs�����)�z��v��UG�%�cϢdH_bxO���v��P�\�rs0s��]35JS�L�)��gS���I��y�y��On�$��)�>�Mq�S������7�mE���]C�� ���;_�Bt�{)��!��Z3=�)ԑ�{/3h{!<fk�\M��~�ʔ�T3+��jU�r/'�pED���3��P"/�B�@_���P���')���J�o0ێ]ט����i�&�׋�M^4
- <Bވʧ�.jMsU�&d�"�@�e��{,�8i�i�;�Qڀ���بL�*���=��ђ�B�,�Ё��sW|Qp}�p��L�:�CQ2Q�u7PepE�d�xm��C�q����$ry�J&�<S�j��|�^\��\��3#s��M���0�8戏d;*m�L�~��P�%F�����8U�Z�,M��ջ��&B��l3	P#�@��E� SOp���(w��w(�/�%y_Z�l���U-ӹ\J�m0�&�ɐGRg�$�mI���D׆ɔ!R�j���'�AK�!1���M�{TQ�ڔ����D��;O2�����ʶ�5����C�A�t{.N���Lj�v���.%N�>����z�J1��!F{�;\2����PxTa7g|U&z!��q�h�y��(��;�S.zh����ԣ�!)2����~;3��m���F(��0(`��
8�L��.f��! ��FQ{mW��F^��{W�BX��?w8�&nA�r�
?3E'��4��yP�
G�C�ȌPp�����k�(��R�yw�{����<�4�.C�
��臐쇻����Ϊ��}������-vQS��|7���bv_p��\�5J�Ro�u����2����jL�
x}��C{f�j��ؚ�j�����P��cG�5
�<� u7ؖ���0! "102@AP`BQ#a3$Rq������'R%R�҄�K�.Y�e˗.�0�L&_�_�.^�K��M�7@n(���3t��#J�k�*WMu��e�e�r�˗.^��Sd�=�=�6	�M����
M�$�6B�ҥ���7Oro�`?����_J�R��A���.\�N����z�@4��J�*T�R�J�*�!HR�L�*�2����`I��ՠ�+�G�t?j 05*T�R�J�*�6�4�6�l�e�D��Д>ZV�._�p��p�L:��J���
��jT�R�B%	R�J�*�5	��J��S#J2�J0��H����P`XT�P��J��JԘL�?�_I�V�/K�L?��A�{Sl��֗�r��LY����AֺI�M�r��t��%@�fp$	6��%jC}/K�.\���t��L�U�8��~ �ԩ_Z��T���p��7��b���Н/�����\�r�p�L/7K���t'K��
�j�X6�V ?�q+��J�jT����Йr�i�_���̳�7�)&7	b_�eA}5*V�.T�@��.\&���Zs(�3i�L���JҥJ�QT�.\�������bX���u/��*T�Z�D�&�6Ͱ��6�S�l�'�=��“eJ�$Be˗��ʩp4��fh��4�.�.Y�`?)2���[�M�a2�J֠�WE˗	�	R�J�Bt��\�F�	��61��ɰ@�� @�	Z�9����R����/�.Y�eR�J�h.
jWO�F�	��P�P�p�r�nP|7.� "�g0�\�p�r��e˗.\�}7����P	R�J�+ZքT#�������>?��.���@���"Y�.]��y�B����r�.\�l�`�?����&�R�XR7@ T Ba&�r �`�E���˄�`0,K����d�0�a0�st
.\�pk��^�._X������t�,M�����-7M�4�&�e�.n��a���0,�`����Z��N4�p�!0��I�* .*P�q����5+B@���&�Bu��ʁL�6�*P�tܽ*TR�R��*V���kZBe�m�`��PK2�:���ܸL�$^��_I�(�
f�6��*�R�J��p%ܭD����,kJ�J�	��\�@�|w	����*T�R�͓d)6ԩ�T�(J���!aK2�J�iR�kR�J��f����P���a�eJ��P��*T�FT��S�OڍjT���bq8��˗/K�.\�,K�._�r̳�T��ҥJ�*T��,Be��t�e�g2��zQ�eB ��.X��z���J�
��r�˗.\�po��J���r�@5�q	��K�,�3���&ɲ�=�l�DN%��7	�n���p�9�(ir����	r����|�+��_kpD�*T�\�ZY�g�R�J3lʛf�R��(J��.\&YәFY���*T��ml�6�&��+�r�I�R�iR�}�T�P�H驶m�a	����"V�*TT�Z�t�R�@%M�l*T�R�6�@�Pg^�ʕ*T�R��R�J��bX�&ꅥ�3����F�/B �J�*q	��J�*T�R�B5 �`��%@ �j\�	� �2�M�l�R�tԨ�R��+��˗�z
*T�P8�K�n�g3�GJ�*6���J���*T����T�R�if�N��
**T�R�J�+���(N:+J��˕ҥ	�E�ҥiR���	� !���\�r�.z/��*P�*P�%	ZЄJ�*TT���J�**T�](J����	BV�*T�������q�]W.,|�a�aR��O�$K���2�*T�_r�.\�z�]˗�\�r�˗.\��ԩR�kr��r·��.\�L�r��J�+�	P�_
j�q�˗.\��j�*T�R��R�iZܹr�˗�U�@e˗	��˗9�*T�>����}�J�T�*T�R�iR�J֥tT�s9�ڕ�cK��/[�.^���!T�D�*T�R�kR�5J�M�T�R��̳�ܹr̹s��~z��@ U�!˗�R�J�*T�R���f.��J��*T�R���[��mR�J�+J��heJ�*V���J4:�T�P�ɞم+��'�e�`�J��.yԳ��%J�$B�4�p&�	x���Q�z�V�+J�+Z�+�T�pL������L��F%�p�
��&f�&3q�{���p;]�.L�Q7
���ܱr���P����>G�4��=B.8(h��&�0�0zT6t�ډz��Y>7~�̳���z^������Y�.��K��0d+A�+� ����S�٦#�� �sh<N �B��aF]��X��K�2�*����2�&Fl����	05;z�]����C0���N�dU�{\o�W��+��/�P�	&��nA*5X$b�2��,h_�)�ƨ�/�M���Y�(�=^�_G"�o����0�?0�<�!I����0�C6o�a���	�À��s�V��*��2��q��F\.�a��>�����!�+�P��>P�0��b]v��lA��
aM��U����� �T|!ȅ������?` *x(���W�$k�<�NJ��w���8�=c�R"��maf9ܤ�B�R@H+'�l,�ޣ�:������Ӈ
d��Ik$�a5	�n�П��(�B���ΥE��%q��U�P�+�^�BI0�����Gk1���J��m��K��	�M�|{
h߭Gw��6H���Q��>��������*�Ⱦ�#�E����p�?fvP����?P�ƜWQ$�j-�0��sh��"�<��|���Wq�"�Y+��쾥RƆ?J��W�z�P���a?ɯ���>t���e��q2��U���D���em��s�M�����js�f�18GRS�fʤ�ڽ "1S������j<��cM��Z��m�G�PL���d�6:��+6'S�s`k�ح�,H�UM�p�q�F��i��H�r,�5���T&���}�` q��U`IOQ�@0�R��L�#�X�
-��#3���Ee8p��TV �[�Ƌ���������q�T��\_̀7�+���+��4
LLgp��fS����f�R?�D�jB�tM��;D$�d��Y4Th����h���t�\$��v�ɓ���]���=v )r2e�7͂�E��͍��O? =�t@@�IMq�Cwbb((Ql��@�� �L����S`T�퉃�s��\��v2{|���)�Yr"̹��=C5S��g���F,~0�;h|Ѹ���~A�
nq	�
Dzn��ZH56��`S��`mQ���`4\(�sd~?Jo�x�����ϕ��3��t���T-�%00b e��+7����@��	;�� m�V+�lhslñq.(5c;M>b�J�c����I���h�h�EM���e1�,��L��	�ad$b!�Y�k�Ƨx%�X��fRG����P�>P���ǘ�X���?e��X�аc1G)[�o�#���@i�n%����������p������L/u���@���=c�@"ߎV
��T�8�!#�1��C�b.l!�
�R��A�1,��-��^F%�p�6)�FBY��yq��(ۄDV$��W8K`2�'�+�s����pߋ�@�ۧ�O?-��y���fʄ�B�V�@�V�9�Q>�2��/)1��Gn�%���1U�
�TsG��R&B�(9>v"�,�G���L�;FlY.|� ������诀
*�!J�+���0�B/�� ��_��ӎ�ú��w@@N(�q����Χ����L��=C�ڥ���b����M�v,ÙBnl��{�Õϛ?1�e�D�/K�e���s���6�r�`�����=W����1�� p�!M��Z�PFc�iK��m��Y���օ�**��S�L�ō��+��c�PO,V��MJ�|���+��0�Ș�5���y;�<��g (�X�=J�����R�/ch�*��	����h���{���I�?�>w�t��Pq������R��nP��`^y8°��es=!�2�<�Ph��L�-�Q���"�f�
��f46�F�?��m���۽�k�J��*
��@����]��Rį�\��"�]�T�%A,ih.3#i$��I��L�C��'��<b���x���&1�3?�lpr�5ɤ�Z\�v��2�J�EʸЁ��Bn"�	��SJp���x���s6�5|<�����?v耟�1<�EZ�)��w
S�
�ge}�1�D^H,�@�-��g
b�~༰��J�m��(�������(�F�d���A�A�ƀ��~ں@'�zby(��Bkt0g�5��}������%�P�SP��/._���p����� }$��E�%�#i�E5����ډ�>�#���_0!q��+@	�	S��/�����-��la�*�����/��8B����W=�������C� 31��l�ǨT\�lg�#�dPJ�l���A^ٛ(@�@�R�r&��b`'���|d�@8��%��n�r`*�jU��[7H�6�O���l �V���{���7��w(l�{T j�6����f\��*�<Ź�|\�f9���'�M/��?��<��~��A�T$�.M��r��<$��@@=�6cp2a�6F~&�`�E��V(�p��БaE�%S�p�Ssj��,�M+�QH��{D>D*�@
��	��;�>�j�Ο�c��y��> ����H���`����Ȗ��dŁH��|�LS���'�1(��ڻ	 Fq�2`T�ʼnPh��V���?�y�E�r�0�l�h\k�m�1x@1���1b��W$�o��ٖe�s�g�	�ȁ�4�	��%�q�;ƹ�,.�g���������
p��е�㹻�V����>�a��+=e������q��1���.fϼ��4�Qq��6f�
ɫ���fw*���0�,|�>0L,N���)�Th㈞%��J�	2��\���4�B5�R��x"��ObP@��Gqˑ���#s��`yŲ+d`��T�N���3���'���LkC6c��3W�1x�^��-H-��6V��h<�b�'��+%@&A��GQ�B�p�P�|�b�[wm�v�%��iI������*
�b��N��J6�n.*��"����|�(aDƽ��K6\�9���g�+h͙������Qy`�wAB�.
�-K?̈�KDƫ��`0�;f?��.O�S1���E;Ap
��b�)
Lf�cl�܃�PU(6VzʼnQR�,[��a��hP�@UAvϟ�axq{�d{oisfإ����\(�rk# ��H�	&��ʏ�>�&5V����)ÕUh��sT�̆��V��zw Qˑ���h�L��1�鳩=��vRK�d�'�@����^�Á��P(D�@Y�fl����l�˶�1cϔ�%�*���KS;�
4��n'��K5]u'�ƫ�8?��n�I���]Ñ��q|��b���B�`@����Q����=�h�;��J7=o�vk��ٿ����-h*���6S��a���˄ß(A�@�	�!?�@��0PIcf��6��@?��Zbg��,�S ��t8�DB���Y�q
8d>f<�3)���bH����]ϵ6�`Vm.wN	�bР��I�l��0z}�s�KU�K��Cg7�O�\��Eę�V�y���w���9�,�,m0y�����aAW*�$L�",�2�T.&�>'$���*b��	U�a�_1�(+A���U���lU�4	��wwr�Tl„�\�!�ɍ�K�]���\��"j�͚_K�h����2(�QQ�&�d�@�
�9T����p6�
LPV�������#���0j���-(��)�����˓w\c����V.���
pr{g#B�b{Tij�p!Ow+;���9˘�;�U�U�^�
̙6���;W�ɟ�	'���^��@!�o����%X�^����ǒ���f��y�Q��Z��������)g{�\\r��L'����`"흁<`)��w���(��A�0���(�G3+��v�p��w3�OW�DDij�f�2�|��q�8p ���M��jr��TcB10�R�.?���K۠��<�LhX��a�A��`���sɨ��d<Ռh;����@ϛ�	�f[�1���d�T.�XS߶��pO{�$�sҌm~�ɛ>p8�^����Ԝ�؃t�F���'�T$y*?&��$�A<�?��0��WM� �@��ۨ�@(A�X��f�lO�m��U����	(�%ЄP��!�
nh��;&L��0e��Қ϶$�s{���"���4>����g!��萹��qcذ��vղ�|��`uG�X��$��G�n���l�#sspv��'*\���6e�N��x�#��@�!h�eh܉���I�]Dpx.y���Ԑ�(:�5
��'1G�Q.�!p��˒)F"=�h'�[�9ڶ�&ݸ-���h��͵E���6r��h2��W�*�y3�A��1���X�j�ft��p�n�&	" ����3N� �s�D�I����a5~�1�A�(���?1�p�hO�� ��"Y6�G��Ɖ ?����
�f
D��?P�l�����m�q�,�ME��L��l�ʠ�9��S��Z�+�ٱ�;�8��!cP���Ya�۶~���pÝ�1�6
`A ���`�p�A&�2��|���N>'us?1�,��1����j& 4s|+Δab�%\e5�XRK��"n#����p��L
�a�@-е�W鼅�.[*bS6Z�Se�Z��\w��Ǒ1�mf^�+��_�'
wO�vSc	Wr�+�|�(�xd4#Y���EL�z�Ƅ�H���ọH���MK��&���a5�q�à�Չ$S�
���#���1H.�57��+��@,@iPbe�D�\�4��q���NE���%����I2����UF;e�<�6W�ćq�S��f10����m\b�99 �q�X(Š��wܵ�Sf�����ĀvwQ�{\m5�0!+�!jR�M�����p�A��0�	��BnpC�Q/�a�
�����f��,���`��A�:[\E�Ua7��q��<��+����� K8�$f,���Âp�F��
���
���l/�|��TI����rS��[����
*d9[�ǻ��%��dA@���n^	$��.k]�X�
@���z<�&1�P����
<��\$�ī<K�p� �� 0,�	�d��ꀝ�;n0	�L|�(�h�4L��(��&6l�Kۏ���mw$Q1��RN�D*n]��4�وL���=–��ga�
Uwgr��� ��	jp!���@(�j V��AU���$��c��pj~U
�_0�N/�Jִ �Ј,�#@�����$�����o�9��h�˗�lT�A�
B�Ose�9h�-�
�̪T�Ɩ�11PBK���
9x؎��~!R���g�~j:��)�A�m�q1��	<�U�;~�O��h��|h��	�#Ƌ��\B�6FeG��*P�H��A�`����
�p#8,�$Є�\6�aM…�F�Ӹ�p�2;�L��x�� ��a=�qqQKm�QnFr�R�8�ݑ��4�rb$Y'�s	'��%1�x�Q�z�0��E��n΄�Z8Y��j$ʡ��	��ƕ�'�J���w~�g>ο����cH��0	`BI�Fj�Ɉ��|9h��ҝ��\Pb8�4̪�F��يo��Ն�`uj9HLݸ�	�x�[�U	����,_�{�[��a䰦��^3d���L$D(]�}9 �o�N�eU� <Q$�N�,�.4�P���Ա	��̳��o��6#ֆ"��F<�����������0(Ql��,ۂ�\LD�U񟏪�T�11�;`�c�
��!�Y�omjѹ��D�7�w9�����
�Z�9M�r�'Ew�2�T!tC�cʦ�sf�;E�}�%�(n�h���'�Ǐ��ljb6K�f.((�����1(��Z6U�¹fk3��ޔR#���9]N�˔�����0�Ǻ�q��4w=n�7x�G7feȨ(Y���B�1��2�r95av�r�w
q=�7���a�"��r�"�	�)�5p،��ɘ��*�j�g �_!s2b�]��@U�gaar�c7=֣jx��Y�-`����`JK�7lx�� ˓�UfR�h�]�����aD�&G����_w��9!1AQa `q���0����"2�@�3Pr�Bb������	?�ј��:��o�>E����w;��1�m�����A����

�a봢Ǽi]R7�en{�[W1;E�+��9ir��
���w��B��0��^�'��K��!C�T���=?�w^��J�O�w�|�ks��~p��ʐH��|�֪8�>��Ƭ���T,��ZO9Ŕ�B�E�Ֆc��B�Ff{O{ZV����u���(AR�w����=�1	�W��Le�f��moU�C���q�J�,�_������E3d�Y��C�}	|���{�ᢛ��7��u�/ع�!E���������Gڳ�l�U����s�7�D.}ɋ�q�A��v�M�z1��ܷ�D�V�l��2za��B�K��KQcrܕ�R�~��K�KS�,�qya�Xuy��K%ø����p�oR��3�K>ȗ���Ǐ�&2�Gܯ�
y�u�쮐����>�WQ%L.{U�pc���0���|��{����Wc-�,��f/�q�R�^�{��B�������C��_J��(`!LQ��/t(oR�����$/��^�ڳud�n��qu��c��Eo�x\�!O{�~:�Pԯ��.���eĐ�w���V���?M�{����1�釸�"KM��'�\O�i��+¦esc��I`8hH�Kb]=�L[��J�y�9�Qq}����'�H��p_(�a��>n����M��
:wc�~P��H���\5$�1(V^�����7��߭�/%�?�!Kˋx���ȳ,q��=�Ӿd�$�uԕ�l���+��*���A�]�K<=��jToL��P�����lƺ���(IX%r�����K6�����͒Y��U�����_D�,�b����,�$.D��(N����=0-A"V3ň��ܛ�.��萏��Y/�h���?1r'k��H��VUY+*�PXw�[���o1}V��(>����ԞK:yw+�x�/�?�r+�(��װ埢?�g���Ya�JʢٲY^b޹�oȞ���1K�SY%�}	Y϶��}�/��w��6�B���zJM��ڨ�*�=(M��~+{��G��LC���ʒ_+�C��Ov)|��Ub�=xtZ
X#��!O�,ޥ*�6���{��I�uC�,�]1�S/v8Y���B��w�S�4%ˆ�l*�̰^�|_�ЦpŲ����'�
.�{�w�-.c��
(���8���_%��~�l~�E�B�pZ��x�b�#��
xgŎ6�^Z-�����̥��"���r����&�\5:����B�TXY]��<[)�?�U�]X�m��ڦ=���;��"z
,�ȧ�RH��t1��=��|�,Y�VM�|Е��+�e����7���?�~[ί{,{
.�}�k�qc���Ycԕ�H���	Y�bအ�TH�U��ؕ�.Q��.��Zt^�C8�*��qs��V:q?�a�
��	z+�Ua��p�%��㨤��8�B�~�F�
Oy��%�)g}��g��[�1T#�e�
��8�~\
ޡuE�G���������.Jw��W&�
�[i���8��C���IW�(H�����nR�ʓ{,��{��U��E\�hHE2En�����#���럱R��%?dɽ�z�H��J�;��)���:!GQBa̒��w1���{9���pK�k��m+��e��?Wt)t��;�����Qc�9g	�(�s����5�$J�2S�>vB&�ӾENHQ�Ԕsu'܅J]_��?��;�t�K��;�\3��O�Ws���[[8���|^For��*�K��-�Nl���e�o=]�sc�_!R�{�s�qy�YTYq$����Q\��Њ�_I)W�����<�JȠ�wc5�����5t�EsȊHc�z�J��%�=�b+z���8z���~(�̮X-������A]LnF8�o�Rw���S�`N�}�+�)no��themes/images/danny-howe-361436-unsplash.jpg000064400000305563151213255660014472 0ustar00���JFIF��C
	
		
$ &%# #"(-90(*6+"#2D26;=@@@&0FKE>J9?@=��C
=)#)==================================================���8�������UP 
P� �3D, ��x�G���� �|�ܡ>t�(
C���GB�4t,6��b  �M�<�
�
$8JA�Q�C4A� S�@�(��8Qm ��  
�A�#B��:PE@JhP ��*�
@JAD�� ��@@�Q@@���
	@��O���
��$(
 �D���@@,g@
$-@(�� ��P8A�@�,g@
@8@)��(�
 �HX΀ @@�@ 
 	H�>t�B�(� �4)F�   �"*� � ��-M�(��K
PP@�� ����Рe�PZÄ@A)�AT���(��]�ӄ���@��(�@������jl �*�J�(�, �
��JP��B�K%�f ��� ��@@�P�Hp���% �Vgy�Y(l�M�N{��!+��0S���m
� )�@�M9\ΏlL�5C-<��GY�9���}�MKu`�e$;��P@Dm@��,8S�5w<��ӱו��k=+;�:(�k:9���0b�DDDD(�8⬧s���]\�\�c�A5L1n��P�eh���@���)���6�祍z.zsq���kgN*u�6�8�`ѣO�i@Q@@
t(�&�Ly?L����nS:�J4Q.e��Ѷ�����P
ő@PJAa@�|Ջ'B�s���X��Q��Tqe :���s�
��{��Q@��Vv��@PJP�@�t3�΢�',R�����Ͳӎ�J�晼�d�;s��ߔF�t�Oj�!i!@PD
�����gM1�EZ�)8���ǚk>��a�2hVn���F�:��/I��X�9�`:�ܺn=����Z���i���� 
���+��uv��K�d��T(�3�X������+cX�h�7�}��Cn}�3lK�r�i�"^[�-N]x���=&��f:(�� �
� 	\e�#���fy�:�\�l�K@�B@@�eqyvԠ <��L���˜�����Zr�L�Ο:j>,���/�qi��^|F-�g��cf7�
 �� ���eW���Z9s�61:�^�T0J�=L�
)���)J!T�:����e�l-c����r�9��m6�G�I��:�3��s�z�lo+����uxY���11p�f&��
<p���%Q‣�p
T�̚��
՜ܖs�LHa{:��[]nj�cRΝ�N}��$(Rj�$n7�Ϙ'r��>^����WY�{d8��Kw�Fi�U<�;���w#����k�ԔCǸzmt�~iQQ�#���Q#)��������Š�V���C�]��}��	E
UƳ�g�I.�D�
ͭ�n%��]���㱲Ҁ� rAs4��N�k�g4�t�KR��ܚ�myoN=7�كsI$��55�_��)����,4����p�����=e�KR2�TP�"*���%�ʎA�Y��H�X�2�:s�p R	R��#��)AET�.�1c!�IԑB�����P�J��s���x��/�1x��l����s�Ϣ,��u��C�K���\ޡ�2Ô��K������W�7��G�E���U�|:Qj�����e�"���G*-�mל��V  �
���ET$p�XBR�� ���) �R��
�
K4�$��4h��9�ő9s�^]9�חu�0��s�1�8�s)����_:9AAK����cG���������@uR
��!$��V�����	E��Y��6UOVӡ�d�"
PT)@��G�
"J�6�EPt-
�� �PD�#A�f�qyA[$KQ0b��	����~wbY�2�!Ձז�7Y:�L�5�MDH�EA�K��P���u�ۖ6ٳe�E�!*��R*B
#3<���ݬ���v��J�
U5�n!+��[��(@,A��������B$%�p���`�� �DEWZ��|�kE�q�/N�&i�K%yԍ;]N�cF0a�\�>5LqW:F�$
��|��e���w�8�-�o�%��$��
�ay�)ϣ3xoO���p��|h2u:Y�X��l�R�4*#U%KҒ��QE���S�E�Vi)@Qb�Y]9��UAQ�T�
AET%p�眷j����
r)�+�3�X�x��.v�F�#8k��gs2�m5��X�E(AHC&�������e�U��O��[SH��\�k�k�)�g?��d8�G�����5;*5c1u��;�+�uz>�񺄅¡��/$��&��(���0Yg�Z)l�)F=�ٴSTM��(�K�]y���
�@@��TY]US�t���N��5^�:v��e��u��6�N�/ASb3������xv_^g3z\S��
�*:/����i�z��{�ȸ�\���PVٯ�C3��dGO�*�4����z<}�LI�K��X{S���i�2z�Գ��Y+�D��E�.-"�p��2���,��P96e\�q�/@�ʅ�.�TPY�Xj�V� �, ��H%�*9K+3�;T�U��u���9�zM�ҮlL�W��Ϫ�F�";9K+���yI|��Z��
���=c��Z�Dk��rش�sXB�hѲ���>���bU�ϼY���=6���w1����]��N�^�]Iy�9`��p�SEKK�U/�t��/.�eұ	³h��W�Z�2�\*�O�Z�p���^��#�6r��%��V.�Tv�WY�]�嫼�NG6����;�J��̎�_.���v|4eR��y��N��E��-�8��ѣ`��10��?�PdW "�Zp��K��"�a�+��|Z��	91���Y�X�U��/.�K�����&��z\Tuw9�[��J����
�ˮri-��X��L�Ι70�޵|�I��ғt��|�J�%�J�ǎ��wfUCZ�t�źx�l�:��gֱ�l��f=���N:�H����?��dȚ�n���n_n�'X�U@�"�UD@AT��[�|�h�z��Y+��Rњ@^Z�9ȍ�ҡ|���GY��73pu�'{˷aϭ"�xg\"(�Y4�u�_..;1�mi��u���Y���ύK$��sR���:�L4�5����Ξ�"�
�=|y�z�݌��ʢ�kg�J�ꜭδ��&6uZ\=s�]$����a�8x�Jt�d=] <}���UG�W#�8��I.v�����e�=a�aQ����0��:r�w>���K��u�mb�P�η�^��J�2�Ne"�]�>}s�@�g�Z!�W:��3�"��K2��YH�i�T�|��\Fz��j�GY�4���&]�N����)��
�<~�����t�nm�'=O͡ӕ�K��mb3O�O��ex���AB�!� ��_K�UG�6��T��[�����
��4yp�#/-n��h程E�*���9r�8�t��OC�{;]�Eb�0�$(^˼�Q��mi$�mS#<ӫ똌-J�-T�ԖD����N~Uö3;r�3�7ks�	^%���]+k>�޾t��,Jjx��w�ˮ��+j���d���H��v�������1s^���G
�
Q���HVXp��Tz,(��%鵟M�����P�Y+,I 4���#/�~��)�l-}L��������-c'Y�/7���ڡX�W����ǭ�\Z�Y����D�\�"��|�ubȒ�sJ����r륩C/L�E�w��h4�)���m���&6�JDJ+����M��,]m]ԯfl�n�w淗iw�j�7�H(�B����(���DZEt(�R��˹���+q���k�C����PԹm~���q��k�s�t��u��r�7�^}�w�cuJ���������@���	�"�]�@ψK������Rޕ�ˈ�-g�ӕ�Φ�C7_�@�s�/�\8��.{A),`�y:<������69����b�P�|Ζ.e��.r���=��5P�T��Ѐ�%j(�Ԇө`���4Jt4��$��y�;𻝙�$ċU+�A^Ge�gZ���T�9e�i!a��c�>/�-~z�d:<�鱶�D�L&�� �:�{Q��qyt�S/�Ԗ泺bgAS#al�ԅ)�
�y�\�g.��ai~f�ֽ�&4���K�i�8r�t���aMLO.g��N�J�jZ�]I���p��,A˭��I]S�c6��@͙�,)�c:���Y�m��5$C9Ԛ�Sr\�l�r5dYYd���g��]y�*b�,�q��VG=;��Z�YК��!E����aq��Kםb�Y}��9��a��R\йQmv��T/s�R.��cE��t���I��\�d+"���LJ劃�?:Ƽ�Fj��ĝ�I�[�3sx�ͩ�3s��V�w.����LO��κM_�|o��1��G4��c�<C���i�ΥGW%�a�r��^�$M5F�e� �fnM6�%�hhɗ�
�Y�3����c�Qӟ[�J6�K�O*+sWQTF�N�Kbӂm�#M�]�P��=0��(4�.�<��W������HjEڗ0rS.��$�vS)$y��^q���r�0ް�/w����&m�M���5P)����r�d�>��n�X�K}���A����Fb%-M��+RD�j�Ωk,Y����������,ZUf�&t�A��4��G�i�t��Q���Ҍ��J2Y��}����=�H8r3Q��ZQ�PWgC��t��Z͙�j(6��)���䊵��$%��N|$y��grg93KVԗ�ocY�:�BZ�s�a3��H�c
s�iG\�8�<�Ԛ�Y���C-�4"�=��$�'�f�cU��i��7�Ri��jIc��Um�4�l�u��ᰋ0�c���m���A�v@Q�:%h����%�Q�+�FuV�4h���m���\��ڜ]K�`�]j�Ͷ���V��r4��֫�$lM�J�¯^|<�sˤ2he&w'LV4�^�N�=vf��G
1˳�SSZ������Ɂ1�N�<�ÝQ��k/�kM`L�gz�Ï��j���w;��,-t�:�Y�5� �,G��>�#GDT�`�)�J�i:�ǟӷ�����ʀ6V\���t�� mDA��c�I��QG(��(�!K��VKK��]�����J�V�w��I[jy�3t�"r�N|u�K�w�u�A ���If�v���g�)��pw����B���{�1�/9�>��L����="5�s��|�ʸ���2�z�;X����캚�dI��ɮs�B=ȡ�.lZI��s56f�b��&�Hn�蹰k0f�I�<7�sA��*��
@Q	[cDPPD$�Z�9�(�
 
A\��T�e�%���Y�|v�SƆY(��ή�o�yw���;��V
9�kS�9�xˏa�y�H��uF�#5��Z��:^�������a�=b���g�m�h�����չ��	�snk_�R�mf�����o�)��[Y��jP��S���t€�DD)EPt�!�@A,KcI���a@P� U�b��zs��wc:�R+1$���d�F�z;�^�
�;5���sy�<�|}k��^xq�sz��"*4�ո�W���zR�.Ye�Y�+iw��^��5���w�Ɵ=�[[:��NvE�*�'n7���z:����ˇ����eE��%H�� X�
��(� �� !�@Zj�B�@"x�-�.]�Z��q�뛪1�F�U�&��w���p��P�/W��K��v�of�=%�)�9�)�	�2��򼾘�0$ؚ�)5]+��\�cCYf���H�;����R���Q�kc�j�Cy����7N���Q���P�����"�(�R�%( 
 ,��(� R�n��zh/��7��b^U-��:��GO>�K=<Ŏ�׬ιM�yg�_G���L�J	�)u�aD�װp��Ө��KQ.mb35�-]�Y�yԃJ�Kd�QJ�4l�V��FeG�,�Q�Q�~1o���8h�(�A@�(DP[R�Q�*� 
P")`@�

��X)`�
#;Y�>==&k���s��s�>�h��#x�f��+I�Ma5�.���%�U�7�{�[�L�W�)��Vn��R��_s���^��n`���`�~����`�[2B�U��-�Q�%�Kt\���ʣRcVe�>k�9v1�RX�l�T�K,��VV��W�:���j&M�K:|���XeB�� �	1�6F�ȳt�bDI*�6�R��U��+d[R�����(��E�T��m���}��2V�w�s�F��/����;:%!,Krr��Jk���8T�ӷ�� ��[Z&+�7%E|�ԂYw��M�J��Q�-d�Y(X���Vx����D�R��q�d�f̷��'Y�[�2�P�
�c:��J�/�K���DͭZ�Y$��>�歗u�]�J�f+�tY���.`��M��j���X�zgq�s�Sq%k(���R͙U���+��Ix�t�+�j7��̚�ˤ��|��9���ˤ�ɋ����kYnt��)nZ��l��9��:b�}ڝ8�˶\�i&N��R�:[,X���icQX�F^�a���7kR�Im[�MT�ϳas=�5ε�k��S��%ma�+M6��>�;��o���BAbE��(˛��X˚���M<�W���b5���s�[�-f��vK��K
g!4�ݭ��E�4��l-���ZX����	sjj�Zp���Q��k<i��u���u.p1�M��*���[�����4e6���mI�{;t�wЉ^V�d��rOjcWu�łY�f}fE�bD�-l�ô��R���g�ٳ�����M��yd�h��&�+�A�˧[ێ�Ċ�JAde���.q���97��-kub6Ng;�.Md���Z0�v��:j�@��zI5`�6��N#;՚ȳ���+��Z:*c���z������ 
8R8esܻύ��1�3"_����ͼ�YPh�m�rߖ{��^�4���fQՒ"	d�—)�V�Μ���~�ݸ�N�r�@�R��U([MkI��Ldz|�w����#.��&���͢B��=�iƎA�
���Y�XٵX��.;jVN{;3�J�u��j�5#�������q$�7BY�R��["��[�"5���9����:���u�0�����z�Dr�i���5Q#μ'���N5���4m2��Z[�E5���>��)�;sD$X3WY�2��G�-���奮o�E@R�t̋V8]�X��6�m\��"�n�Y5��+�J�Q�W8~]�l��Q
����>ϓ:�ەJ�/K��{z��k�5��R[]�f���ƩpQA@)暹�֭Ά�	0���R3����:��3"����'^���"��)�������p�7�YT$CO#�Gu��>�2�1Z�*��=��-���H8h�p�A�������IcR���L-�S[u4�*�f̜�9uK����+�,����t&�:wLHv�� �Ӡ@!�yY��"���PQ��o�{�����%H�!c7���x������;}��j
��>O�Q�56jX�]c�V���>���@A�ANP<��J��gۅ�p�(
�+�v��2�}�1V���E*,�f���h�kT�|�:ۡ)%�=2������+��4@�YAH����5QsX�'>�qkqY_,�>s|��Hοs��~���Dq�/�J�%���ћ�,�]���O߄)(���4�c|�^�ט�#<QA@P�ε��L��
N���)sXp������j�w:yj�o�X6�Q(����F�U��@�R�.L�rM&v�XF"�^iq�o��Z����:��<���%�jeH�q*@�l�__��di`>W+hET@P�s�vN�x�KR�$uAH��
�rB��J�0��D"'[w6i�-��@Dfk2��.�u:�(�HF(��G^Uq���D��T+���VK�Ʈ�gV,�MN>�����$UD^Y�}r�]B0=*��y�@���zU�D�H�
��:Ύ�L��:m �BT�&���H̹B�K�Z�E�D�	"�ep��b
)!����@�3��zF�D�ǖ$�RWMm��m� ��$��9P����ʱ������~Psc���G.k<�����$��[�k� ���Y��3p٦��Lʗ,���:�ۃ|>�mD�R:�r䨨�$E�h�ZR��)#ԓTrM$ ͛Y~w2���R
aDztD�X�a��dZ��u��WM}�$)@V�H�Zȩ��f}��4�P6�U�e�Vv��HD�n5�5nJ��)�
��"��!B�Fʂ�D's��x�%Lr������[΍�r�՚i�Yr���-K��gQ$k4�&��y��^Y���,���b
e��e,ř�i��[2l����8�}yH�,�Xq6u.�)��˚�6�Ie�2,�#]h�i�eu�� �2�nW��W:���!�J������u���r�jXPE�fB��s:Qfu��YW&R-l�^�T�Q�=6�,�KDm6�zH�QϬp��P�j�I�ƳQ�I+�WIV�՜n�cQs&�չ�R;,�]%�f���2PN����B�71��F[�E���Y(�Ǭ�d�����v�a3lbh,c��uB��l���=e�4$��.�zRd���*�&u�)���w{�Z�Ivͪ��ۖ�O�bm2GJ�����SY�ΰ�K�Y�$��ej�̋f\d�(�^M%�*��Z���ͺm�M�M�ՙ�Wr\�m5�<��J�Ϛ�6��"�4Φ��l�)��PEζj9p!�9l�{��+��Q���	�:L�"��3Ym�Y���Ϋ��j0���Y,�;uu:䳭I�Y�x���͌�+TL�:R�����4�s�g�ɫ9�RHP�]�w:����:���ff�Y�1����b�5�#4i]/��a5!H���Ws���gD�i]X���>WX�1�lت�L`�
bL�imՌ�#X*ɩ5]�Y롎�\��7�U���ej�jY����Kl�LC�[Y���;��l��U���Y:z�%�.YZ$�1$�SE����k��z5�U�V��5f&[vf�%��iQ���w�ִ1���Z͹����j�4iM��u��6e�no����l�×+|K73ٙ0D�1�
�M�α���Λ;�gA�B���fk��թe�X�����Y<�z�y�`���r�:H,�gL��a��c�)<b����Ƭ�������uu&�MJ��u�vlM-������!BZ��K��Qܷl ��3$i��ؗS)ܖD��Y���C�.k���4�}eHu�Q�X�C�Z]9O��qj�4b��kd����2��5��o���u��\�L�񹞕�εēj�#W;��W:�M�M5E����DZ��Uj`�
�ٲ%�n=�6DU�v[�h�@����&Β��柝ZΡ��f1�s��Luڛ�:r2��J�V�wq��}��v��k=֮u�s"ʺ��%Qŋ2aZ�b�wp��pѣ��)\�k+��Թ�4���fhk3MI.u�+,��G���w4���t��s=y_��,�V�c:�4�(��$.禞wy���ٗ�.M35�������V���l{Zx�E�l�5��CN���7�S��ԉjj��k5n.�KY�����u��a&���_�ͭ��d	�]Ug>!�{=t5�Xbj�:�T�Z�֗]/����U��	1-"�j�2��b�Z����=&W$(�i.jY\z�D��V%,�e	����e��ƹ�ͩYYq^�1R��,�%jS�tU��\����ҕ�e��lK��m���O��"�K*�+���Q�f��j��^L�V�Hl�j\K���W�Y-��[|u��j�Y	��lk4$�I3nMtMT�$t�{�uZ��:s]��<�	����ԧ�u�H˘�E���EYe�Ypu.�jn��3[Y��%��J4����c棱%q��JMr�VZka�����J
:
b-�5�陲[��id�_Y�s��&���W2ʑlҚ�cD[5jM]�ζ̲H���#�jF:�W	!mx��W,���"R�w�XU�u-*4θ����E���r��l��s�i�H�L-f��.Die�Α˙
�5��inJ�-��N攺J��SR�e�ZkNn�qz�_55Id�1Ѻ�"\tm�Y����� j(���X�V�Y^.X�I�دR�؇:Km�y�Y����Q�4f��R�O��s5����+�kJ�/M��`��2��|�K�R��%���Uu�B�	����V�4�,�S:�3Y��a���s�f��VBYt%�-������W5F..f�K9�5/U�4�e9tH�T�T�c��R/�)��[�%Me�I�J�n`��u%���&����&l��Զ�D��lbB�Z��i�OU3o
��8@5*僞�����V��˒��W:�uE�f$�I��rn�&��/�J��HV����lֹd��l�H* �R2*+
�M*YL��e����9��սąe�*�K%]���h�.Z��F��P��V�耘���U����!�ꭒ�-���+F\�D�IUf���/�gpE.Ԅk�k
Z�I����.V�U�K%g=t,���#%%uVKň������s~�X'�Y���.;_�JˤW�tu+K \�ܻ߱��)MH[1���K6njt,�MR�I"���ֶ�Ƽ�:XMMg;�c�����\s���j�ؒ��\��f����4��1�BŹ����!�UlV+��,K+��7�X��ƣ�V)�R$��晝ә)iâ���+����[�vh�Lk:��X݊����ƒ3M�h�4�r�贙���U��h�D���q�zm��a��765m����I���o.��b�V��ϩ�gWl�Y�e�,f䥘��k��fe���}�w�s&�jƗj)�-稷�2X�Yߣ.��6�gx��݌DEU+\�_-E���huS1S[5���s�ر����G$RܴAa���b��`m�%��)y�����ܹqS6�R��#f�f�1b��g,sO��j���D�-����~7�וr�����C+����\��9�F��LT"�u��ji�H�%�e���b�rh�O)-�e�3��(�,VIY�B�d��J:�Q4gR��>��+@L2����,�W��;S��-�Ve����2��՝b�uIm"J֦u*8`�5(�����Rj\�ՖQ��bUV`Z��KjC�JD����aª��%�e�Q�KWY�4���mZ���RBrW<�\k���#HD�!U���ĩgT��*��,@Og6�&�<Ŕ����
AD(�ڐ�['�2rQ�T�)��fV%EB�)�(�K"4�J"�e�h�J�,� �Ml
�"�����(K"��5�-sѵr&�Zh����������>�;ߥ5P`�!�~�*���lt!��$*�e����`���+�(�	Am�}�j@FD)bOt.����A%P=�:VSѰ�����J�r��B"����у
��K)Q/���E��ʩz�z(e8p�,pRKu��2�$s�Κ5lj
�R�f� uf��Yh�+U�6-ǚ�gƙ��������l���
bf�7cFC���TK_,[u˵V,ڶI#�ܼ0Q���i�$�\��Ҭ���$�-4dd��@C:�1�Ise���;u���"<�h'f9�*��nY�	lB%��CE[5_#
�ԩR��.�3���e�(����$�oˡr��K#0髛FkIsчQr���9)Bj���R�n����J�To'=+����:�����3��"kv��Mc
 �3Tղ��C,�ŷ	ғS�k@� .4�3e���5bMYM��<�7�M�KiD�˳Y��j93�޳��y���-�X�E�Ҋ%�Ϸ8�5j���e���^�;Y�K.<���M)�ʍ��Qs��X�M�Lℕ&�,f٬�晼Meu��%�T�m$,�.ZHY&\ؿ[Z΅-*"�<e8Q!E*R9f�scG��8��0X��ZT[A�9��u���Z�u�ʄ�2VJŖ僉)lH�Q]b��762��z���[EH��&��cH#��5n��%@Ie�Rx��Y�Z�ư�Q�Ǭ���\],���/Msđ��$0p���"$V��:]=/�+N\Y`;�fz�(�RYCZ�ut-M��h
(�i"
 �G*,VYQ��RXbk!�(	D�fϤ2�Q�sY�э�3[�Al�Pgso��h�l2�dn����DHU�Q�
Ks>��â��ts5󧎱�-��G"4�ZlIb�"�<p� �T��E�%HUbI�5��������X���D$�me���A�Sa!i������%[���^YQ�G �!H�r)+%���h�q��m��3)50�.l�&iC:�57�9m�:Ά���T��g��kU����s-���d�3+�����l<TG*XJ�	]y��yu��=b]F�ؓDFf���QAPQ���a�0�揲H��%(C��� �B�A@��@j�-�"�(+eQP#Z��V������
TE
IV�J��!Q��X�P�j���z�(B�o�h\ˬ�ɤ"�]bp
&��_V@�C�ҤmE�$��r(�U�����J2i���ʪ�AT�Y,ZY�iEEV҂�0u�
����JX�BZ�:Ii�,Y��Me…��:I4r5Z��R#Y,���j�5w|�!� 1s��F��!4�"�yKD
#isSE�QA-Ѳ�Y�B�IcVD�((ȪFL���P* �E*�,K�2k)
"��h��Q�P��(ZH�)j��6WXHMG5^[W*�A-��$$���#�mdes���7R�5F5�b�̔�k+��V�&��(�@TD����7:������8�WX�¢�,$�P�?��9!"1A #3Q$02@B`4%5CPqa6���s��e�����=��s��'����H�	�q}�0�=�3��� ��9�s��q����"<�8X���?��q�@��ݜ�81�?C�9�q����?�#����?��?�
���?@p���?��8[���3��A�z?��a�Z����!�~��<�����A��`����?��!�a�q�#����g����\����������տ�b��uOv�,�Fp?�g��������0Kϸ�V�7Yi���I=����b:�ϻ.�i'���_���S��#ԜgT��W���G�����M�z_S�"�^h�jݪ����u$_�7�+�?�C����m���=v���Z�iScF���R��_��~���=����7��S��^�[l�=���T�6����y�/����}�I��?��k�7�`��7�c������č���\[�b�)L�)U���u=c$۝�Ӭo����A��Y����&����3�@���5����>�FA�Z��X��+��������0�x,��1q��)�m��U����Y�[�L�
zuW[V��ҭSi՛53jt4�7[�E�4l\�뛲KI�{�1kCƝ;��҆i�8CY�ӏe�U�	�~3��.?��q��s��nq�g3���_��]E_���<ﺛ�z:pu�5KBkB���ho��ꀶ�����
���>�u�4u�'�8CKn$���=yF�C�g=�W�e��@q�(9�y?�vvK�ڸ�1G�]]�pik<F�n��������Qu���Y
��Q��	ıj�i��!�sE����[�U"�ߴ׹银�Xl�i�u2k���p���f�v{�ӟ�W9�s����|�9���
��՝u�^��C�V6��w�SP�m,��mٲ�f��;$}zR*�Ͱ�[i�hZ��KQ"�43���:��|�W�s�Z�q���a׎7.�j���{z�E��`ß�����½@�bFs���b�5!i�u/X���Ե]/��G��q5��=o���խ��/�:Oa7&j�+J+�%����+��*nureʽ��ΠՃu6
��5��Y�9�n�x�82�,:��t�:Rim�%��A�N�eRR���֘X����mWOQ����lz��
KW�@'���y�R��bV��-۟k��P�����nn珲�δ����Є�ϛx�&oa�:�gY��w+����.�0��ث$[��:�:o�{t�?��
���7��[�y��?��	;���x�����ULӞ��Ϡ��0`u<��a����%�t/������3w�U��ة.ˬ7�^jz�;I]�{���=��)���G[��N�}.��_x(��WWUXAR�q`��:36�'�%
e����N�d> �bhN�^�%]������ytPM��,�:���wI���m�)MF�K�
mn�qd�����pB�>�[�*V����M����y 괊��c�H[y�����Ҷʓ�1��q׳$I],Ą��*���/ß������ީ�u�ԡӺ�]�l���,�n�����,��I3v�V������k�hU����/K܂�çw�8I{��.'����3ďi���ð�V��̺�x��ۥt�K������
{�j�;U��)r��4:�$�_3_ݪV���������	�L>��͆�j�i�k#Q���i�su��9���[�0��|/��k��A�N+}Z�O��5���7��ן�f���z�k�*8?S�&� ������M�Ɔ���)�ݎ�X�.�m��Z��u�_!"��u���Yލ/�f�C�WY.h`��ّ�3<�'+�P�o���|�i/Z�iz�-��];I�3��E�	n?QZ���i4�,��i�U�u�����Nb�Q�7/8-��?�������)��KU��M�=U=��2�ne���Z����V�����V�r�j-\���l����m2<|q�""�m�T�}wIZ{�InA���q���f�u`����l�j*�a�Mj=;ҕ4�z�ێ�6ա��ÞU)і��ԵJ�8��P&���R|�!aswGY��W
�ը�û�U�O�:��đ��5ms��V�g�mz�7�l�=8
r9b�T�䳾��X�m%]
�����}V�CPMsi֭ x5T4��2�E�1Ti��*�־'�ק�f/������nS�lfjr�����)��
{�\�یN�֗ �Yk������#�����_+��Qr�z�V�\~����w*y�h����$..ʙr�l*��PP�I<0��4}�Oz 
��gi�0����	#������2wG��?���퍺x�l������u��s�J���U�z�[�hmMB�V�ZH�j�IlI��T�K���N����6�.tW:�ؼ�Orx^G���$K��	���/�oQCה-�Wm��QsW�6�i��Q�A�t�v�{.�^��=f��j�q�����k/e����꒕�!�;�\�]X�K[w�EJ����F�ݼ�-~.��t�>�m��l5��4����Ⱥ�]����w�u�ӑ]��-���������n��ٖγ�+k����u�z��i�c��ߚ.���U�^��[��-dz���T��d�(�{�xi;rE:p}���j���G��-��N���W�
�� t�^W�����c샧#����8�驸%N���iv�q���+�=�=��<�;�Qg�{����7�q�7��~pu&��To�{���s���6�q%8���k1Z��0�{S���%�F��Ğ��e�S�����i�¦I�{*܈-l�"M_d�c!�mј�6�[{Z��Ӗgޥ	v�ZJ�&����HuW�����{s����0T�R�Y�G���7�UIVL�޿���hu8�]�"���x62�Wֵ�z:�Ӭ6B��{�zj�����3��J�=��t��]�k�S���{V���}��G�!�sn�*����8�0��ݝ9vV�r�.��%,k'�ؽ&s�>�=p�ڦ�{(kj4�$Oo}��!�����d+�z�����GU�ٞOn���/
J�kGn��#�}|�R��K��g����\T�Ŵ�2}�mF}�4${��n#��<Qcր�!aC�Q�L�S��Q���1�q�I�L>�Ϝύ-��5�3�<�,޾���͜�#��S�nS{
�zv�I��Б׆:���5POW�W�筏=lxoǟ0C��랽s���~�7��'w��%�@�o]��g���0�^s����ϙ`���3����Ϙ��ױ����f�F��O,�#N]�r_�0[�y����9X8t��ϋk���r���>�;Kvf�~vS�k�d3��K|F]CQ�����*eJЬ1�����|Ì��Ϙ�����>b���E�o��w���z�6�<��2o�c��{��IMwKt\�	��s��8�Bi�m�W1æ��~,_��:4IeN��OvG��c�	?�����|O���[�����O���~/�x��N��y?����ʟ��/[?�G�Z��*�>����Sk�†�����Cj|�2��z�;���	�cܫg�}P&�
Q���5d�C��I�YY���Ͳ��cOM*LU��tVlT��{g�:�q��s�S�dO��~�b��X��YR��Y��u��?wk��^�UP��:���Լ8�[PB�A����s����?�ͣ�ڡ������)�R*l^�Ȭ�W���~�?�;}��'x�w��{.
��s�R�ΥϝK�u7���3�άg�l��,`�YϜ�ϝZú�N|��
ͬ{9�[9�kY�ky�kxv��ݶ�3�3�7p�/gίa��Ϟ_����y�a�|�a�w����]��0n�����{�77�n�T��>�7��o�����w��687[��w{����l3�{������{�wmz�W�$�ˆe�(@3E:K�Mn�f�[UuGR8�I�������=���45��vs�jj�5��ծ�맙�
f�Yw����7�54Ű��_\�5Z�f9�iϒkN��6?Jj����)|G�t���I����ƨ��]7L��
���f~�==z�\鎚�_JYeIU	�񞻌��g���6r9���6�~fu�A,�OY�{F��L$���@�AU�E�#)Š��`ծ|�s�+�* ��"ȺBNH��0�\8z*,=����S�Zwd�+P�<'W��+�:���LJ��a�>z;�,秲0���խv�w���z-�Ńf>�`q����O|�T?Gqg��=y�#�IzH��G��#��Qg����8(Â�#��a?���_„� �B �|�:�3��������k���V#>W[>U[>U[>SW>Y[�5�������嵰kk��+��k�]_��|��|��|���|��|��|��|��|��|��Ua��Mc�)���=|:j�5����|��|��
4��]�ʞ�bb�M<�]>��=��]l�F��G�ܝOWI�sݛ:�SLh"��N���Y��I�٥u����۩v[�d:~��WI~��)wWӽ3���6�ݭJ�^�m���2��rФ��#_W���[����l��]�z�RY�;�rW��M�씓K��t=@��b��CV�2]����nd�c8���o��>�>�#�3A�j��$�¬��Va����,c[F�iUnu��%�(5p�s���t��Eʞ�@�����I�/��[�y�ǡ
8����$l�#���I.K�hvEe���m���Z��TX��-o�#���>�]D�{��o��M�Y6l��n���=9��5Q�|�`=ބ��^��s����R���a9�0��#��a��g�煳���l�vG�!��;	g���~<m�'#�B��|�>x�<M�'��9�9�olj����l�χ<''<-������&��<g�_džodžl1O�+ⱞ;9�[��췁n`[c���$�h�
�������IocZ�)�C��>ӫ(Q���!,��n�]}��e8mgG&��6g�қ�6�8/o/�~��('��uv�_�ˮ��>ڂ��M���M��ݎwz�
A���Ha�1�.|DO�j�Kz�����{MZ��=$w�g�GGc���ʷ� �
�G�P��S����I�Y@�{R��>��2[�M̯<�X�%YTK#�e�2�1O?t���c�z�e'��ʩW��{��N��^��q�aKViU��5��SeY•�����]X2�����1�r��O+�7ԗ]4QG���^3��%?�;T�Q5����٠���
� �f��nՉLjO�3�*�dU*���j�x�����W�<����!��;�f�/�`���<g���*���<s���8���Ф�^.=�x��D}��_4����f�f#ߙ�ۙ�l��c��9�;�?~�3�L�;��3�&y��|�y\}���W�+g�瘏l�6	,��D�V�2[�D~Z{���`�r
��S����:���\�4�9o�j�H���P��-�R�u���^�Nt���GO[���@>�>��D�e�9��]����vF�j��mp�ۇ0ωh=5Η7OV9��ɠ��7~���9��a����ӱ����i0XzE#�T\�
Q�Z�A)r���j'��]���#��РEC/r�-����]����`Q���E��x���(A��se��^Bz!
s]��rL�����JW�1��D�u�(��XU`�ՁXEYsfM��)B�t��	QCR�D�=
���un��Ml!�*C�F]U41H�� 
[��-{ޘ���W� �-�"��ʬ
��92f�̵5��nw!y�{]���G�ܱaw;C|M��ħ56�Z��Ğ�si7�D����ݾU2��K�lܣF�5�+X`��M�qjJ5VH�`rn������6�ų���?V�3�6�6�dٟ�Nsi(�d�Ԍ�I�3��"� >�<��P��LǞtgA�t�P��=Dy�C�x��y���:g�3̙�L�'�̙�L&y�<������1fL�7}K.����)T��ǥ���{�M,�1R�	�� j� �j�H7W��v��?K�;{!m�/u5--cGGr�J��v��$��hI�ՈΦͻ"{���)>�f�y��Í��]F·��ӊ3E����J8���ѝ`��Y>\�r���{a��9�3�'�9Ǜ��.Z�w���/)Dr�*��B'��>�Ќ�4�
5����ȩ\
�eK
�6�@Ϸb���l�A0Ό���lu+��E��i��;��ha��;������-����N�eW�s)wY�����􄧉'�N!�
<Mf��b#�h�O��1#�h8�G�j(�%�8_�;T���.�]�،uY�M@����m�	�f��<�,ٯu"��Rqk1�'��P����#�'�6O ��?%��4�$����y�a�%B����^�6�$�51UBP�aږ�X�����:.
�&���`�A3��@��r�@�NC.w�w���3�lyQW�Tr�H�j���Ш ��gb�;W�ڹعڟ�#D+����bgbgdy�vnj��� DX���b�kp�P�R� KqU�wv�Z��RyR�l�Z�R���%���8�����;]�����r��=�	����N5�Q4���_L�W��$���٬�:)�:��b71������"|�y7:���'Ӳ���_��8s�"�C�$E�(�1e��\�?��?R֧���I�Ij��􎱈8:c^n���q�Pw�)��?c�M�QHytp�p��t�6?O9Ej�D��M�ms�^Z� ��zi�Ԧ�_�-�/~��/�jIZ��7�C�whDa�u��]F�:��c
a�����z�쪾�"�l�$��%~[��8�C��BH�%]t�-�4Śc�QV��� �g�Y�!;*RA)
r�:s�L�,�R?�e��g���=����Q<�9�8(3e"�\8�,�:7��B�Q)z���v	�?0�sZ"2��h�`�D�sk���p���ϧ`䞋���h���6F/:w�[5�/+����r �=4D{�hs�E���h��]�^��HԜ��Դ5�޽��Z�����z%̽a�o��H>�M�"Y#�#-n*T���7���~oW���iW�v�G�[ȥ�����%�1n���DU$��T!����
�&~�D-R��&���RJ��
B�
^�b�e"f�Mg`���!��#� ����/0\�:z�0��g�$3T�/L���W!na_������?�>s�����χ�>�f��7`>���u4^^���$�i5�䵞h�c��ե�M����M���S�۷�p����%�m�R�����?���p~�`^0��~�9�Fs��<`�،5�f���$`E&[n&;�|�+/{��/�������>�`���e�a�m����\�"T�f�w	�/�kD��/�sh{E|���6z�]�-���.�>�}+�&��l��t��|֗2�{D�Y�<2g��>'�帥9=���װj2l�}Z�ݙ2�OF�vǧUl�K:D�f	]zyϖt�~i���W���Y��r��1V._X�L�����`?��X6k}��r��k��@���:��x9�2(�l��Ocd=
;���AR�9�_�{�n�3֩�ә�C�Kw��գ
��9�h���L�c�_2�r�У-��82�sYS��o4��H��N����7��Y�{Z�/�gV̈́fƫX��\����ֱ��z�)�[���Z�p�-�F�?>t�P�&Rs��K��_8r�rps����S��8����9�s��9�6s��*�|���C2��r;_)�$��j2�1�T����r�8-Q�ƹ]RN��
���֯my�F�����v�[�~5)�g�/�n��T��ZW�MmҪA�e:�"��H��@
�D�|M?���]�T��\}��q�c,�s6s7��l|���2�>��e"Ɣ���l�トՌ	NX@ҿ(��g�wvp��5^ں�2��ZNQ��.2r1��r��r�s�w�FK�b�e�M�㵲��2�Fy�k��d�ԠM'���<�;u����P ���u�\+g8s�����:��ʵ�C]�����T���^m�Ή~Ρ�&n˕�7+��Z�ͪi��>k��z�wC]\֚�D�-��JW��C��j�}��4���Ν#����'�k�~�*�GA�ۚ����t��d�պ��������`�}�/]n�u��?n�u�����~"l�#�-��F����#�<���!�#�G���#���j�����|C����:�W���X:�Q�u���lm��ޚLe���L�٥�=E��~ ��M&U`Ө�N��sܙO�M'�/K)�3I`�y
?r�L��tߗy’��ex�7��-J�܀�S)04�`�/g��ۍE����BI��Eswz��Z��w��[�=[�Q�vo�L%�:稿�z�:'w��i�sEAم6W�j���b1,��Q��Q�6��j,�Q�1
��N�x�(�
�v􌼼�\��7�����#ŸY͒���]_��[�(���0�*0�;p���'�w����Z�/,B�:V��a�kD��_n�����!�BW��K��^=~�r�*ݒ�h$H�GDh�e�hfK���82����꥽���~�������=˧�=o⸽��t܂���e�dWHBY�N�9�N�{��4VW�K)�s����G�]�l�4WML����vW`��i#&~7��|�~�`��|��&�6ys�pM�\�\�|��iO�	��6y�	�L3͂l��`�g�gvΉE~����3͕�3䀙\��"��2چ*2��p 1���펜��b����L�e�v���JLF^��6Ӌ_�-϶Q �'E3m,1Y�g����K4�Sԑe��K��0��>�5V���C6���'5��$��N;��
�����Z������&�>�.�S+{s��>'�Fp��6��#���Y�{\��� �a��,/�sT�G����ˌ�9
ZR�'��&H����S�3�Z�3�SMޅ��̵�"��q��t�)�C�;T����}��7��ǝkBԵ�Yh3x �u"m�t���y\^+nI�'ɯ�θ٤�5��5�b�ъ�;%��l��zԎ�����
�u�%I�˧�!�;��r�y�T���9��9%чqp9&8&�>	�	�y�y�M�a�\������t��#.V����`�>,�f�8�6y�M�l�<�$��r��^�$�K��	ݕ�<�O+���y�?���N�#<¸�|a��8���2^L�'+(�`� ʱ"�-/u�8RS�����P�i.u��ZlT#�:��J@V�[�tRl���6��d��(̀����omo��cV��!oK��Ş�,5b�RͺP�gǶ��)r*Lq�2��A��̗�(���Y�F�� �7�+�PnL��Ns�s�e��f�����&l�
�_����>�W+�<ntq_���a֤���P�)�C����ճ����p�P�r�2�Nm���`N1�e	=V���ց�s����G��J/�p3n<[�랾*�-��ӗ6���q![Z�� 2T��+�ۗ����K��@>٧n���I�J���nv��F{��c�0ϯ>���r��s�|�l�	[��v�P�,��T���g�a���[|�,>�
���s�Y�(/k�<�c���'�.����i�<,����u���7
r��0�u���>'#V��9�4V9��l��R�Ԑ��\�/7jg^{h"L���teut\���aq��5s�9�/�y��l�s��&2���#�<rg�\��i'��]�*�;[5���'�.M\JRH�����b��DS�'����,����kb����;��Zbe'�@`;/��IU�?mUg�X�%�3���C��'�#��Ϊ�=�����=W&�i����+�U�4i4}�ob�?NZg<"n�j���kݳ��)^�N��IhL���Ř�:�{�Ϛ�i�&u�gB��:�N��gT�gV�Fj=OQ�Z��� =#v��|���pN�|�+�3u�C��_]v��c�X3�s�ܾA��Bq���v}����{w��NG�l��U�"�F�2D�x��ѐqZ3�Q	�~�ь�A�
�Hx�@$*e���3�0V$���5P�B��;�#�46w��Q�d���BIïL)�j�9>c�U�̖fo���d�	�*}U=���l:�˳�G����:����)6�t���g�D�"��T���f����������/���֪�;-E��z�W��:�����ǖ*��w�˗*��f8ӿ{�'�<��\�˞yrݗ�+s�������	�=�R7r���^*�K�Y�d%�3�W�;`�ZI{aZedN�C(�K��SiHiU����x
{���5�d��w�TڣR3ں},.b�8�6l
s7|9��;"��:�sW�������we�k�K�E�u��݁^���v��}_S�{n�;�Vge�R�Z�U&��6m��E6U~͝�Χ��k�΁��0���q���W���=���a��f�gh���/ z�O����v
]	�<���'����kP��g	bB��'��Y�;]!��"�{@��7Ohc�\��i=aj�Α��cY:]	t#�4U�#�'K�!y���-v�~�Uz;]V�ֽ/F<�D:;�F�t4y������<��tuy���cV�]%����3�]?VP&:>���:>���ӥ4��!~��B$-��iM�T���c�!�:�TLJ�K�<���X�3t[�s/L��G[�Řn�X~֞�� *�/��B��g�rM��Ry�fwT�}��U���u�	�j��YGt�>����dܴ1#�g��i�m:�Nsg�??��o�c�㴆,�F1oGVC!���%l=E�›M�Z�a���Ҿӵα�F�
M_Y]{�Cu���v�J��k�P�Y�"IWgO��(J^a�������#��}�l�ܰ��Şx��y��ښ/N�H�j�*$c�X�'
�K�����`�@��k��C�O7S6�m�?頋nA�E�9:����sN,�qa3e�9�7�G&߽9��q�&N�r��G'z��ω\	us��)�GY�>����^7h�߭JRgӬw6R:X4h���F�;������yop�8	��A'
�����d�U�:N�U��9�duDw~�پ�{%��	��l�,����f�{�8��(���I	�*%|����	ZwV��˜��7<�a;L\rx	p}�Z
�[��Q�4�YZk��"����ڻ�K��faMRk�G�"rM�'6��ܗlژ�n�RHf�9�n�T��&��f}���M��S
n��(ZK�^gX-������o;&�Mq �������M]�a/�,{�F���W�͊��E�fx�xoښ�I�m�ˢ��Ib�9������x�K�c6[��IN1��m.�w�AD��	ǁ���)�3�h��ڣ���e�l0�PF�;A P��ؼ�X���{`E�@>�1�5?٧��%?o�0F��g�3Ƅg�2�1��̜�Dv��w�T�Ρ���}㧷&��?k�����Μ���q�H�[�|u9/�]B�N�����V`lkM��5�k��*$qv�a��8����K"�Ⱦ�k��rO4u�ZX)�p�x��$1��Y�p�������AӛM����é�V
Ғx�K���99��f�=~���4b���+|:����I��n1 �n�f_�>��+ndBH�j�4	�q�{ڻN���߹�hQkV6*�#�?�WC��0��R�%�y��T[��:6^��__3�vL�L���3�|)ܐI$N�`qnK4�%���\�{'b���`��,o#x��ہJ�Y�`��>�Q�4s�➈)�]OjԶ�<n��ʮ^J+$BY����Udi*B��3��*�0���,�]�ET��(H�4o!�j��"E(�!S����$�&��-\Q������ڊ{`�
:��~��zk>̫�<Ȱ�Tg�s£<*FW�V�&c׺u��߼�Xz�U���z�N>��Z�߻�:�O�}�=�ltַq��N0V�ޛ=6zc���]�<�F��5ńS���+�����>�,���׽h�*����k:w�\��7?x�W�JA��a��&'��F���h����)1����B���)VD���|Mh�<��꫹Z�<��{6�еK6a��L�����~�9��:Ěg�Sfj�;q������b66�fN��LOg4.E���g;s�9��E��Ov~��NR]���L�3���x��Ek0ʝU{�̥׀�j�!�}'���;�P�$hGm&E
H���jfCq$^�#�.XT�w��J��[�fQ0uV��;��RE�g�؝���/V+n.q��,RA5{)�
{H�A&�	p��tJ�ySȖ�$�Q��5k�vgI��{
�v
w���f��AYRz�Bc]깱�M%�3����VH.�T0L�iZ_*��ݠv2�T���Kvb���9���:ɴ�jى_���
�2Hrh]����>V���ì_~�s�)��B��J���4�*�6q..7?��˄LrH�#�kD��dc��>E|�0����ө��([�[�������X����8���X���|����7�	?�<�20��/��k��K�������D\0�m�6�t�9�}������Va������xeͧ����h9V��"2W5�҈Vi�8ωj����ѯy�4�KN��j-KZ;/�/vAo�؈� ��<�]I�����}V�
�Y>��ƚO����'0��/~�ҝ+qt��]��;�r��/��}N��G��4�I�E��(��]�"H���v�b��+Al�1�CO�	�v#�A�h�����)ԁ�Q��$M�`~ k6P�8]̂C�/�u��YUA�n��G�En#�n���7	i��K���%�,���K���n�c-�ڈ��onN�kh��{X[��Q�0��r�
� ��I�)Sc��kR^�z;2{��v����6ySKeH�n�n��L��wMN��P�i4���vR��F��v攓O+:�sY��G㑝��s��;��G��?��0��`�>e�_ȝFy�<�d�2a�3�88Ly���ǜǜNJ��< �!�#�f,��Uz��Z�=L9�!�SX���^d�b�O���<^�.u ar.�S���NZ,i�J�HmDر��t�>a�����L�?0�����W$�ͧ�Gƣ�{X�����K��(�2�	�0�8~��Q�L�4��֩Bc��E��zkTv݀��Iᝤ��W�[�Զ�ӭ=�l1iu���"��M�١���e�E�C��Z�褎m[qn.4�ߦ��s�ۋ���5�/Lj)�����λ�Zl����fA]��KE�7��Ś�B�	8�P��ōj�§�p�78�W����L�'�r~�Լ~ݮ�)��f����
�O������4��EX�U�fZ�z��/[w�e����tk�w��뀊 s])���G�]fFW��4�\�h��s�{J��5�#ji��`��p��H.��M?,�I^���G�l��2��*Q�6��;t�Q�6;R�ǂ��&vpZœ�!���^ͻ�U�7ٚ��LT�Y@9޹޹�\�\,�ܹ��r�+�)���A��r3����#;s�8���fq��q��s�����7U��J����}|!ȭ 5�bp����ޘ
��q�l�Gϣ>�=�\�?wU�Ob��Jt"jw�Q�n���!�wg^���K��^rGw<"(�[b#���*�ʒ��;Xi�f�W�
�wa��$��D�N�+�n#���[��{Ή�Oq-k�^o&�<g� �6Ic��7Խ�l���KI��� ���bA�e�^�N2I'kiI	"�$��]��K�ĺ�P�I��
�-�#B%�?��2�YH�-L�*Ik%�hޏm�k6�th:L��5�x%�"�����
e^��DfkI<e}sԗ�a~�P�]6ӿp�@ȉ4qhe����iez��ZP-�w��MqhY*�Y�P��"5y2����k��G�7�툯4.]/V5��F�I�v�\�X2���;
]y�R9(_p�����Y+�v2�uZ�h!,�MU�׍%�U �b�b�b�0�g�3ę�<I���c�x �<�<�G���秏<�<�G��׋
X�U�=,x*ǂ�gH�zX�T�礋=$x)ł�y�#9���E
Q��Q�M$?sF<}tR)V�'�!wY9�k;���Y�'��%��|��>wϝ��y��?�I6yf?q,���T�3
(>�E@��۫!#C������%-�byVP���*�*FE�'��Sr$y��u�P�Oe�C *��s6�*riz�jP
�u��ڰ�ҔD��kO'=��?v���6��z�[Cd�۶�{�-��[�\�R�))V��؍-�nȢ:�9
=Y�I�=�X'i��b��qa;ff]���f�$��9*��?ͷ���-�����c�wν�85T0����2��q��VyK2�&Y$���͓
m�k9ຆ6e�r�$��ї�қ'��@m���r���*�O�D�v�֓3(�U
j��}�*xG"K1ݮ�DOr(�D�se�$"�dK"Mf77W��fTG�����_�p�����\�{*�LDn����Ý�;;;;_;$�vI���Ip$��/�l���1��J3�l�8�;e�ٳ��8�&�'���8��X���'��X�,��-��qg9��Y9Ŝ��Y�-g��YŬ���m�6����֏ߺ������c;�����f��a3�Q�ͫ�#tގ�e-Rhn�����py9C�7h�/駥�5�2F�rݯ"ArϕRP�������8&������@�Ӽ5����LW_A�I2���}���I�V�%V]��-�!7Pe'�Hg�N�x�뗺���fF��lS�A���Bm��.T���*��ɶ��LM��:��w�ęU���WVw��{��R���~��Y�)��AU��e�cl�S&2	ՌR[�ed�M��Rק���R�\��%u��)d�9�C
m���q��H(�e�3F�n-cMFj�]iRY�2�i�Q ��	��'����i�-Qb�)��� 2c�w����Y�D��ZB�[k3��V�x�]�9��6����Ks��C��ԄW~����CS���'���7ny[<��S���l�g��|���p9�'���g�g��Ϝ�=B�\�+��sԮ)��<�q竏���G��<�q`�z���ǂ�y���Wz�s�Þ��p窇=\9�a�[z�0]�=m|k�_
�-�����P�P`�����0�����0Y�
�sh�M���,��!���
�;F0��3h���7Qt��K@�j���.����Ql0��9@����i.
wBh6���l��Y6�}f�Xf�mR:={��@���^��:���ݖy�r�H�+z�uW[B�tBN�/��D�����F
Fx����\{�]Ű/��d�H�]L�.U��d�q��F�@H(���F&X�H��5(2���@��d�Ӵ�//Hi�jI�,���`�e�B�A�f:��Oj4 �'lQ�B@�݄(�V B��QV6	^C�Y�w�ڥ��RW��GG$
p:���@9c���T5��I$��H|�R�����<���{�C��k�ry�������kb˓��a�e�ޣ;��p����˝���;����3�gwgp���9����㜓���Fs�9�;��|���۝�;3�;s�gf���������;x�\��̿3�
OgUڇ:�����a���O�6����l�	�$��n�����.�_~��^}2���iw���]�{=�Yج|�I�N�m��]��K��V�
���6]i������o��ti�ǽ�wd��G��CJ4�-�<=A�x�:�=d�wL�~�+������d�8�8���S�i2A�8��\Nk�������_;R�(D�e9�xe���Mګ���.R'YLn���#`�Ȁ")<���2��-Y��4��L&
"ȅ��װ�4�����!��R�dw��42�K�Cq&V��8��fWe=��b@f)v�a�V�w\�(��/���B��gn(:;V����=ᰈ�CݑwtUQ���
�6�����r�.�K�s޼�b��=S�T;�z���Q�����kK�6�e���~��b�f��ߺ4y��G���y��E��4Xz�@>���{�ǧs��M�k�bY!���x1ߡ!=�����J{;�4�	c�ў8]Gaa�U7>��,�6���;`�[MM�썮k����E�${-\���f�\]�����w:T�w�?���=��~MY�X��i}��z�~�6z�=�c���o�ԧ���N~�5�`�j�o�U��R1�ųM�('���v��"���qvZ�n�u��?2���mU��@з��y䵾�f�֚��o?Tu���m�v����O���I:��-V����"�	�[�B��l��u
\��X:���xrCڜu�_��s�g�c�I�t�Q&�MD��F��=�f+܇�zU$��N��Z�,�/Rr�9�Ϋ�Ż��ܢdg�ț�qOm��f�8rs���&B�,`�r�"�k�Э xb��*JÎ�+�qW�.���C/	��$���)e�HG!�9��a�9y�=�CDy2FJ�MlS��v��@�ҙ�Y����Y!N�5/� AY��Xt��$Wu��\���k} \5��%�.����s'GU��������ս��I���ω���Y��a�L�=Ia��$���޸@�'�Ճm,+[[Nb�<5�v	%�hOH�o5~���O�{	!0�܅}�������8:k���*����LB�8�z|�>߉:u�4ٚ��\�!�'ST�Y�N��H�:[��3��}5sn��!��t�0�"�4buH����%�5������cZ�`M�ĝ.�M�=�hCK�9���urӲ�%�hc�yyj�^����l�$�hL��=4C�M�K��N�me�*�m~�A�5�<.j�ٛqӲ�X�^�ZN��@�<��I�*jt�[�5hu�)�aB���ӈh�XY�zz�|�
��Kr���!F��|��N�uQٚ-U.!����b?OCv-�
�;�d�8���L�w���I�O��v�����
�n�o�O��96u5�]��nm���mLϷ�:ߦ���L���[���-�Hav}R��R�3M~�yh��<%���O�'�[�<2Z�l�vm��� �b�w��ī�7!sa�_h�5j���dX�Z\餂]3��A��� z�r�\X<�����u
�d�����UK���WF��9�����-)Q'B���𯁦r�cif1�n,�x���@/"w؝$��SB�cH���IJ�+݂kfB��V �����T���>3,��U�j��I}�W��Z��WŨ�H)�t�[�A`��T��JO[[$��iͲ�ی�ng5��k5kZ~�D���IN	�G�k^krBu5���e��Q$��Z�X$L����KuGHx*Z-1����c�%=f��z�����*J�&l4�Fω,��>�_��
��캡�
�6�R�&;T�o��BN]�0Y�n+S�<�,$�=f͍���c��Ef;�$��K+���w�ZZ��j�D�!�[�tn&����MP�f-�zU��+6i�3�S[y�N��+6��=RQ3$�V�MJ���� W��d�;0kw+nQ^�Ou�/5X:?��psS���y�mwm<զ���ð�
��kI�u�U�wKF.O�/��c��1YI��:n�2�5��X,J��H�v���ҵ�����5���[�Df�ۅf�ߛ�}*'��?P���wU=V�`�t����;�6������_���W2A����H&֤��I��Z4�w��ʧ�*ש4K\H�$b{��Tb�m���KV��})����B8.����q�#d��S�900Iݼ6�{�C���'�s��Y��z���,K�G����O(iw��xr:�v0T]��Uc^)�̈́,�R�d
f���"+%�QS�BQW
H���"�8u	=�P��L��D�� Fgj�5�x¶�YM(╄q�< �3�)c
w�� ՞8�o<�H�����}Sׁ��k-�8�w��֭%kr��d���zk�hef�b߅Q/�w"�Ki5[�i"ywR�K�,�<
d��ʳ��,��!�e���͘u�lHkj�	:z�����]���)�: ��ˮž�b�0�<���-RhL�R𼮉uX��V�J���>An��!R-f��ݜ���.����k�
��?�����mtTZ�����;R1����hP<iK�Mֵ�VqKE�4e�E"O��L�03t&�6#�����h�Py=�O
���d2K
�:�+*�U���8�4H�*�!eF�
u���X��@5�fט�{%emX��C��d�o��T��e�^7�*v��'/wɲ*�yf.�xmk5�&�^ܣ�W��^��	>�	#38�J�c���F	�<��v��os���8�Ȝ甑���i��2a�b�G�,b�Gj�OPD���M���Hv�_�=#4t8�I�p�y#r%�䃄˃�߫^���r�`v�s�̼���:�} �L+&��~�'�X�d*O��C�d�"w$�T"/��V(���C�ۤ�����b�jò��7d���鎺p(:�g����i�~v4�cUHq�R�}�u+$����������`��՚����j}Sɥ�ۗ�+Pd'a|Ǩ���v]$�(�x&24��t�}��a��o^{�ɛwd��ۣ?��3�!��k�;6�*hgL�&�/�H:{Y�G)ځ{�-����x$H����l�~�+���3eN��e<�
*�&Ɔ���s�պ~eZ]=Y�Jih.���-=d��E_�-�9�m�IY�F��3H�Z}ƻ����1������f���捨q5����g�E��
��V�&n�~��=gRnŻ��>�t�ƾ�cWv��G�md��l.�	j����jS{
�]G����S����z����}_A5J�'^��~��4ľSGk"2������1|��Nt��Z�8.�A�k�E�QRw���R �D5���YK�}��W��`���#�9��
hS�ɚ�D�V6#�f��,O���7*�L���=Gm2f'Z�5~�3��c�J�'�9>,u9pr3N�Ҕc{J�3�~���l��Ύ���Qt\ǹc ����'|�#����Yp�є��r�j1�!�heA<�'�m�7���`鍆��b��Ã<]7���xaJ�����g9��{�\�R���kY�����7>Z>�l��5ט��]���*�6�̖�U
^uXX�
�.U�_5�V��f�L��3$dM��_t�]=�;pf���o�~����<��������>��>��۞	��3�'�����{4.�m?#W__2��
��T�4������;�Y�I��P���ձU�+C�^�k$�?BO֞���=<9�!��M��t�t[�Y!����E3m*���5�[������k:��P��2�Ku7k�^�ź�	�S�Bټ�ݬ�6����ښt�U�5U
�s��8�}����ٛt��Y�kY��2����݈�=𠎦�KcU�r���&\�~�?�0��~r�8��ؼ�ЍӸDX�?C�#3wF�ٺ�V\\?V���Ʉ�/ �E�ђ{�p�˫�s�V�Y��^�α�j�6�He����������y��;Z�+�ւ3֢��wʶ �ɶ����Q03̍EUD��J齾eo�c6�q��9��s��i�yX��g�}��	+�W]�0k�;Zi��"�ZbΡ&��[�WQN<kf?����#q�װ��[�p[�$,vxb��Œ~��@�6�u�� ����Q/�5���F�����E9�,��GZ�.���
-a�0�����jt4Z�@H�P�^$1���b8*N-��=��KnA6�3���-�"G���:
hJ宜�w��4��f�-[��:�kN�E{ql>���WW_u����j=GNx�L���{]f4���
�����x`W�F�
��?�;�	p:����3��޹޸\f�\oj�GW��l(u�pW`�~�1�$�22�?�}Y4�Z̉":���[��:v�>�y����).|J�����w�Yۚ�IJ.:�"d��7�������)j/�N�:�TZ}�rzz��b��(u#�z\?���l�M?+c�����εM�6�-���A�R��L�;5��d�yv�[Z+�⮫ċ�2����qe pC��{���
�\���� ���Qb%�/E��V��
��™ٝ���H�s�8���
�s�0��4���mԕyE`�(����u�ǔʬw�6S��Yzx'vt�A6����@���V�۴,C��F7���a���$���iW��\$�kV�/����X�mOLQ�T�v�M?���Jk��'f��Ϯ�iԮ���Z?�����0���<a�X��C�(��8}����ѳ{B�����V0�)+tC�Nア+�������R��N�V��v��p��g���ҝ��%ݬ#�]a�VE�(ʯ�z�,��J֟�b�����Z��n�����6�-lV'qZȕ�I^ݙIj�t���y�?�ay�*�	�|
Nv��wg'��ݝIF�y����߽r�bHP{���9�ī@N9�b=�%W�B��/,#���?B��|r�x��09̈́M(�rn��nR�7H�埙����e�k#�ꢩ�H�WNxVn[޺��ب�c��~s�L�� �V�8�� �;��Y�N�T̈́IFt�3j(�X��;��9��F|ʠ��67*De�
�h�cZIV4���={Ӕ�?�#���#��|F�l?:a����۪�Bz�H�"5>��l��j{d"j� h9������9��9�yϋ+͝s��ĹU�vd��I����Ώ�
��㏰a\*���		��-7��"�	���x��ӨGS
�t�j�X��buH�e��9��[e~*�)	|d��<X�
DC'�v��l�p3��NG���q�q����"�H:6�sO<�G>E��.Uc��JR1��P���q�oӀG�c�Y��p���2�G�����}�V�J�F�8	��ڗ����*I�;u�&�Ꞔ�}��~8Gtu6�Y�L��L
sª}�v��>"���9�U͵h��*ǫ�{��j��tlTA%}���Z���Ԥi�q��w���؃�L��㶜o�K�z�kM"E��Z�3��!I8�sǾohP]��w��B}gM��=��iQyo�h�NE���OF$��ٖK#Mhi����z��"W�ۈ�!�?�����(
dح�Y���8169�@��
�zm$��v����0g˨�ʨ��j*`�V�5s�]EDN\jj�m%G������%Mt�t�P=̨0ȧ��ZM�+P���ӱ�u��@��d�W�
�	�V�<3�|d�y��'��d}��bB�K�Ԣ~	�
Q�{��}}�����&�(t�'�wuI�_�R;))�� ��E�4ȁHR'*[���=��,�O#F�X���Α����0�DQ��"(��T�Xǰ�wRY����j�[������w�9�tt�����4�
��ֆ]���o)nI�8��;�6wg9�s��8�E��\k�����R܎U�kuVk�-&��u:��m���m*��S���xD���B�"Y�_����A�a�}V��Cp�V��f�A��iGo?tk��������#���n��P�K�oY�F@
��oQ�����o�Z�X8�2{E��y�(/ý��/�I?��
.ɣ��d�3|���S�B�����8�_<�v�$��"�u�iԚ�t��k��"|4��ˏ�����
c_b�
�T��mu4*�N3�:���v�mp+���m����{"G�w?i]��pSm<	6��f�{�;>k���V���v's��ʨ�{ל��u�jv��x�/�M ��Z�xY�`�2ʶ��a�2G���¥���R����"��0�t��ϩ��zT:n`�[��MLK����/J��1!ҙ�n���S��¬wu!8��b��N��U����Ν������}5����9�ӟ��;��N~%��Ӎ�u9xԗ��y�uc�ћ�(Q�M������;A��;E��?G��GK��Z��Q�?���&��(j�e?l|P�p�� 1��~�
v��?K0rs���|�6��>�"�!Gv{��s���Ȍ
��`IJ�5�@�s�.5U�y�Q�w�U;�Ej��ps�����퉛
�m+�|���u�V~���n}n\���&�lE�"ul�:�xVR����s�k�B�&��E<k��H!�T��Wr9S���<X"�x���#�ħK����0y�rNJ~�����޹oՒ��_�;����!x��CuEI��~I׈����~@~�Ow��T��M���mn�iBy2��B��5m�����e�g��}�����_�����js�hUxE����EVk3:M=��kĐ������9�Az{�]�E����Ћ���	]N���kٷ��dE���[���e��:��u;
n�ܰJ����w�k>�w�S��H�d���'�9���6'�X�R0�[b�2����p�.�����=]�F�V��Ey��=)�i০G�(�Od+3t�>�n��G���Xiy��bɦ�b�uX��U�j�I
�I��4�i�"�P�*���HG�*��G<U쐬��AV��
T]dcSUNv�[Z��81����F{v;�����'o韲�[J�KbL�i��<}Cj'qR�i}�>�h��;4N�Su$�O�^��4��s�0�lP;�6=�H�>�*�]�ݤ6Yi�Q/*~eԫ4q�%ޢ��:�R�\!�n�	����������Z���[�����k��ݠ�oY�mSep�-N�H�^��l�]�T��EU�#i2r�]i��I��V�V���I��ݝ�s���7�5g���d��&R:6�~Ͳ�h44v�@}�=��N8e����&�j
����.�c�y�-�"�u!v�7�kC
�W�����۰c�>�^��7S�F�[V��rY�TEe�R�/� Ei�Q�=����X�%ՄwH^Eosu-8�J��E�K�	=���ݓ܁�
u�V�5�Y��M��xEN�,C4Z݂Lv���\�릟�45��R���ye��/�Ya�W�`�<�K�gهf�^X�ZJ��y{$�G�
���:�5�I��!�z���q0b����Y)y_Ɛ��R�Ƨ�6���^���zQҳ^l��"��m~��b��ݑ�<�c-"�Ō�8�5� �e�^YR��,���Y	��l�FXG@U
˖*	�ѥ�������׹�����w\�1-h�X��D�'�£�����������IiU����&�E�5=��0�k�$m`�7�W�y��2�fH"i<ij6Kr+�r�
�K"���be�,�U�O':�b�z0��i��F)�����֞��fњ�� �v�(�%'e���轊b��̏Z�714�Y$ȢHbd>���<�( �ș��%�(����x&]�ʈ���T?>w��1���;RRմ{+Dvv�Kv��Z2,0׷fFK��-�t�zt���^����W���J|]���|a��x�.i��4g:o���EU�g�=8�N?ō�_��|^՗�|X�������j��tpMc�V���O���g&�m�ozw��1��0��xk^K5���~Hl�Z���v��@�MR�^��
N�ټNH�2�M��Cf��4��8�?Zl{��Wi
<	n���Žb�f��d�Dz��Ե$D���҂�M���h֮�i%�۷J̏j�(���ɳ�Hc_giq=�}΀�L�u��$�:��� �f�1$�b�D#���,�XQ�m��Y�/�<�?d��G,�j,OAꭽk[�B������k� ��<��I6�A*�Y�[�+��O��k�����jxjC�J�Z�����sj�Ye�T=/@Z��~(o�L�k4�X�8�Nݚ����-f�ŭp��i5�ė�H�X��p���Yf1�g�Xa:��Ҟ�݂�c)�V�:��=NRΦ[��C�W�f��I皻�ib�)�$Q�V`b�9���5m���]Zy��i`,���B̓����3�|O%E2Ix2�*@mC-iQ��io�U7d�Y�1
�A!��[��;3�P�&�*�T!����~H�F��"�=���4ST�5��s������o�D�tԔ�u'@��8BDKۢ�Ă���Ζ�1Q�!�	:}Jc�eb�Ȟ�,b��2�iW�!�� �B��Y-���e;�����k�Jc���
� H�[l��f�ul�9�(l��sF�Ek��{�)�Y�h�:��J�Y�`�gT	諅�^6�x�Xvj����ì��lwO�:��ó���6��H"���#���&��W#xVi�r��	Z�"����H��=�y'^�,�%%����b��TF����E�Y��kP#��:�vH�Xi,ۚd�4_W<g�O�n���g�d{�,Uu�W�f���@�ߪ��
j�j'��8�5d�I=�LM�
����.��6sc�S��Y�mg�x��[�V4��H��Z'��$�Z0"�i��ᢚ������#��*D�w�F�i�Wm�A�m��h�ov�8�G}�T1u����������W�c=��mnܥ��r�G� y�A$>�m��gô��Y���kj�a�]FR(8��S�خ;u�O9��í�j�#sL$Ƶ>�J7�M
�����Ϭ�%���ٲ�r��]Ei^A7[ѳV'���U���Q,N�?�$[2MZ�Պ���W!�y:���L�M����}5M��|��L���J��n��og��[��w6��c�����bX��S��‚I5�o_�%���ϵ[OԚ�e��F�tJk��\:�Q�`	.�P����ԥG�viN��[6�n�O��f��6�Xo|�"��
cX�d�k�ĕ��S�j+F�V+��%�N:��ST��'�=I(F����R�k�;�=��a=���ΓOkb��6�k���g�ʫ5=`��E3t��]h�4βF����`65�Gm*MZ�.E͕G����X	��F%y�°�o����x�����i�D�C-�R��܁EO�ے���Z2뉧J&�g')j����]�U�JK�,��D�4*�Wt�'���WC�Q��qZ�SRSR���Ɖ�ս͌�I�̊`欧ʐ^��*�L���^/��a�d�RciQI
'�&ћ]|(����n؍�J2
�OrO�Lԑ3�A�$M
UU���f�5�ѭ��F�f���Z������!�	�x/V{�V9�����V������QZCP�^���[�4KQ�	�)����K�,���Rh+��Fj��U}uH&��ՂiA�	
�]��<h$����dg4�W�I#Q����lȢ��snE@���%
Ó���!H�=G��R�1�5�M$Џ�Zjk���Z��NŽ�6�ı�B
r:UH�ւ6��y�5
)�[�0�AE���B�53׷	d�nK�E����-|B�a���
��ND:�Y�Kad"ƚ�W5�����+�s�@	I� �`�hD#�$�TG�z��e�֦g�֒�OC[�|+�̗Y�j%�<�)+�d�C12CAZ5E�JP��Y�v�4������/l{
[V�JL)E1�@���6x\Ƅ��ʥ�D�v�R�S劏<���:��g�Fĉ�p
�$�`|��$��2��JEI2��ё������ޜ�]�T��+�dv>��'�v3�P麸jIRz�iZ���;9����g�k��k	��zӼ�M}�XAr�b���EMh)��!�an�o$�<��%��B�f�&,L4�Y�#�݃ڬK�A���O'�I�$��X����I��Q�X�A'�W�S�KN5�
Z�[(��=V�{�{����d����'�޳@��{b��)c6��9�Ո�,V����&��U��Ule��b�U��B���u���f��`��_>�̾c�+?ݍ��o`A�e�f=�޹l��gu~�Yf�"�Gʣܷ370l/ֈ�^�U�1�ۯ�Z�VH����f��H,�c*ե3�Q$�,6X����rw<��&�\�l���z�VV���c�	�Nj�[Y�4�2�-G�,��f��[3��w�uu,�^��X�l@�a���
s�{��I�}%h��Iޘ^�͍)�h,h��d��!�4�,y�ީ)
=�ڄ�
�YZ�{���j�9m���Wz���3;���ٷz�qRSڭ�J���/I@TƢ�;��=B�Ȟ����!ZPi�F�,�K��j8މX�d�Dw�K
s����w�JYB^jP�2�1z6�h^Ycb��r�(%��ŭ\�"�_$��G�&>f���H��6�%�S\���(���-Mh�������
nșή�J�C蒽	l:B��X�C�L�5�l�>�ڔL��a�s�Y�Zkec�6��/��k^��[y��)����g�w��u�p��7�eUzR�tW�+���)�
�tuW�ʫs~�u[h {Z%�Ķ�.�5�6"��fiZ�X�m�VP,i��e��womU�/^��YVH���׆)�F��<�.�e)��2>��H�BY*v�2�Eq�Z�L���뾱�iL%�[T��&'�#�F�M#�i$�I��O��~١�Nyl��8=�j>�V��hQ�O�FY.Uo+��b"J�M2xf�4k"�x�	c a�YӰ����*j�"Lb/'��ԁ�+����j����$��	G�9��?�Z�@��.���t�V���i荻�ڃZ5X�"lba6�Zѫ=*�ձ��[�r�!�W�t��Jgv��O~�ժȩGb�8y�W�۩˱��Y*Ep�T&�k�l��X��(O�8Qj�J˒Ӏ�Ů���50	D�ҡ�g�Cg���U0�v��bQScϖj�8
��㹅WIG��I6pwv�H�<ѹ�<Mf���J�f�����W�f{��λz�U�14}�$����׎!�|�##�&�$qC4r7�3/2k�$�$h"w֤�����big�Id
���$, ����"IK
9*��B5�TM�jZ�Z"�#@BTsD�$���bXh��8�d�"
,Y��<-N�E���j�v�"&�j��*E��� �+��0V{0���ܩ~'�:��(���V�"E}����ma�����y^w��5�;E�=t����j���%�9}N����Y��N�1VK���c~�i�孲�y-��yc�=���4y::C�q��*X�uv�
��3���u3�����1�<�I�.�_LP�Nz�T�%i�)�6�K�^{h�i�H�l�8��e�c�3V&hЬ`{�+��"�(W�'mtJ��-uX�|�;@�8H#j���ԃ�?MZ�iV�mR;��N#�&��ǩ���T���}�r�y0$u��-a<��IR����P.�2�Y���%hS^J�iwk��hXڲ��ٍQ�*��C"��+%�Y䆫ڱcnb[̓č2M�\�j������q4�w
EMez�x}��&x�=�-b,�@�d�<v�N���
���m�0�;jǨ+��LN" ���_Ղ$�/Y	$���>zɸ�E�I�۱̃%��VqܠI'-�B29~W�c�k��=��EΞ�^y��m�Ө��ȯ�˹��5aR�P>�Q"d�_]{�T�h��~�לX�2��4k]+Etd�z�D�	�Ѭ�US���%{�ϓ@���a�d �;8K/�Ӄ�ގ7��Z�ps�-t�d�ހ�c�D��Ex|a�e.�(��JPRU��9h�T��w[��Ob���i�vakcr��\���JD����&:�vԨ�Ta�ii�W��!pC�<�;d�D'�$���r5�U,kX�O�J��C���p�I`"�t�H��.�V��j�󲣇��T��\��k�</��Ē�E��"��b��
�+kC��N�!!�K�d)�RIf�ElH�Z�HU�Wˁ��X�MP3�T���X�C�a�܉���������g"
5���a�/�؆�"	�]a�Q�]�Mz���tq!%h@=�S� xZ��CF5�A
{���
� �D/2k n;�UR7,��� #�Dv���[.����z&��3̲��e6�S��(gLg;RTJ�$���1?���cN�<b�N��Y��Ғ|�P��+j䖀*V���r>l5�Yׯf��H���m�a#���)'���Y�r��/#�V��+4�����������91��	&�27K;����?V�ٮ3;�=D���JU_(�OM�}�H��XۉP#�H~���J����=��~�eVl@3��q��);Zy�s��,��9�>��}}�(Ay�b��R=��{�l`���RL�bQ���&����:~]���q�.�*���B[~�^��v��(]I�@�W���z坑g�t�6N��HW��P�w"��n� :�FT�څc����Bfp$V�4�h�}�+��8,��� ��^��o��==�'}cg_Tz��#=�J�,(�X��F|���h����v�5�4ʆ��b<
�!+4�	�6
�X~Х+����
�����"g<`��F�7mhCAݏ��q����r��2@
��*HPs�r��xq�S���Ǭ�5�
��#	KƷ�@��f�[�L�:p���EL�7hoJ{��4*_����M���!C����m֢cC:�,�9�At�4�1x.D�"����b[u��J������(X���9�gJ�.,HaFjO&�s
q2F戶nO-ȘL��=�%�q<.<v����>��I���.������<=�<,Or�0r�$Px�ǰ*�$w�z��}
Co��3����UN+�	<��i����!x�)O�RL�����Ny��9��v�2vD��|v�i�ĉ��W��T�HP��
}�eO$HQ�FW�%����t��ɽT�x���d��C����DHú�p��	��oň���d�F�2��M�Y��q2P��9j���oa2VN�-B�yE_������#`]��HW��Y�Q�?���iM�]��#{+橭�����V�I'Yl�/	�:sm>�m�����x���p�j9k��h] $�VZ�2I��x�oh��t�J���܊�Bw��i]`_G,�Ao�Y��1.K.��[(��k ���W^�_�֬�#�{�yZ��b�6C���lr�����x�9�l�G'
YT�Vp�����[���R��l�"K�����U�2����_3w[T{%�a��G���a3I��$Eu�<��R�"�Y�z�M)�����řVrT�S��c�#U�c^Z�1��2�Cri�D�͙ᷔh5e�/�W�h������:��hY���$p鍎�ŁXd�cRY��tR\�LJ�U~}���.8��>,���@�sʁK��t��4	9���Z��v�;<�d�:�����РH�x\@e�%��<��y�K��Z����
�UI#�@{"�^J����V��E�!���;t�Ǹ�A��V���pJ����'G��u�,#�$����yL���ۋQ.��!�<�+w�au1�iba�z��Z9���EK-8�`6L��Y��2ΒF���)$��W�����%h��x�OK%�p��rg�3�KZj0�	+֪D�o��'���n
�*��3G�{s���{)Z�V������(k]��4�F�����$Q*�ȯX���9�Z�Q(��T�4�˲x�/�b�3D�����5WJ�V8ZKe���j���l4>x�	d=Y�i-si�ZWD��GfGu��%NMw��q���TW����i�NZ�lX��
n8�@���TF{�ެ6~�i�4
�RɦZ��-5k!`��0�5�F��������U<b����[�}A�*�2���$�a~�2��X4�G���%��/Ik҂^��,ʢ
�֡���o"�2.޵YIMN�Yz �I##��`�䣚��~ZAr�#ʼ���$����kZibL�xddH�.ܨ�Y�Gtb^L��w;G_r�XG��D��$��P�i����;6g��o>�+�������K����f�p	�*���$�e�, �N�O>T����X���@g
�Z`9�tX�2U��(�M,B"0'�{�^���<M$�2�u^�dV�H��6a�*�Җ�8r�VN�0Y
����',L�;IBR,a��;`4�����k%k���Zj��4R<�
��H$��X��K
`%���[U^��5�ZV�RG�j�x�����t��֜q��;*��4	2I�H䅔�t�w(�E�
d�M�OOSՈ��E-?,�^�GqY�����?0�
���Y��$�&d��,���vq8�A����-*K���mn'�=�K69Bٕ�4
�U��Y�aDU��4W#�Uz��vu#$�Md��L��ð�{5� ��*�j���[��fI.���0��y,�VW�7�����ε� ���<��N���L��h�n�pyl��\�b�E���բ�(�UT��C�T1Ř�O؋/��E�{��:{�<Q@�z�snY^���R���O,%�6��Pr�w-������וh�[kF���뼍TT��r]���T�����J�������
����R9�b�$h�ۺ1eݻj�$��)	8!�`���.m�kk	����L�Cu��V�����mχ�P�o��C%�����%��E<s!1��3��l <��$�	��X��״�Ρ����l�)� P�]b�if�*�yk�9F�\�X�,��Q,��"BOp�ֺ�]�u��6)�]����$�k���B���Qb�v�hgT�nD�"b\l��=6d��/R'jx��#��K�|R��Pf$�+�g�	;���%.c�Z"�<{h 7L�g��\��u����2���WWƝ�ڊ�S�
ђH��e �S0	
��#P�z��EC*lk<n�j'q5���i��r4�P�̵�C�i��b�Z3NRQ=+��Qk&4���륮��5(���C����(5nօ��[.�$/"��R�r�"I��ނ8krmۧ%;+Y��H�K0���&�	lHЮ�w��n$�2U}��RH��5,�~�G���i[DoPݐ�ݚ�N)�j�z�
]���^��Z��7j%q%ƙ���9D_`�Z�PCXh�Ƥ�
�����	�K��%>4����SF�����x�̔�X�am�C�A�*Dà��8�5C����a9H:[rW���_&���&]����Hj�A*�KD�8�O�!Қ���5'�U2
I`�ۧ"����5]#]Yh�M6��k��>��%,P��4_[���ϗm<�s�ک*�6jm5�4�K
$�m�M��l�l_����+�=�6��EzGdG)O�6n��4[ʼnQm׵bϪK"�z��{��]V�+ʘ(m�4���_Q̭)j�V�O�f}E�Q	�֒G����w�=���DEw�N��k�"~]B���ZTN����8ԂS&�Qf�,���Ž���:ңT��R�j֚;-��'�<�@�!�[�`�ۀ��郩g:&og���Ui�.Q���X^�v�B�t�� ��VNPt�r��$G,����x4�a�T�NcGT:�=��%����F$=��M,3{���䖛��ȅ��MQ�iӅ*N�Xx��}Mz%Xǡ����Q��ݠ�k��4�����]M?͊t�F�]�1	%XuH�I��r�i��d�/q(��U<-X�h.R8)!�c�L���t�"��1�]\A9_�0�)�z<�$�O�ջ�%Y�	��k�3փOZշ���t�)�.��7+6���dh�j�PA��#�=3@0l���̤<z(#�P
4�}TU�I����2(
K+fx�ZN$]|f�{�Rv&F��P�b�u	ߛM�Qz����~���~$��$�YZ8�,Ӵ鏜����(ra~�?Ȑ,1����+��<xP`����	9�$�||�'�0���t�I��XV�L�cD���5���
��aY���Y� g�<J��İ�J�Պ�U���b��*#�M!��!p�0B���� "�"��1�=�	h�8`FŃ���`_ōlL�B�K�	�Hf�]ET�l�����*�ǬJ���]sQ2�-.н�S
P�p=�(��f�e��*"��񧥙�b���qED���s�*BౡϾ
��}Ȟ�Nj�$��e.*p�����#��qNnE�ٞn�x�
��N�l��5�ު�c�j$ю��Vϩؼu�k��لA��X�{`�����G���x�xpE��'�E�;S��#xFxFxsq���	 ����������g#)*��9��9<9��<\}�
q����H	V�$�PJBs�8X�%Br=�x��WN������c,��Q��Z�;j��J:KEv/,8b���䁁9•��=�`��P~�C���E�d�U@7���4Nc��gg �1,`�1���C�$F�y�g�D������Pʯ#�ف0F1!T^��0E�<	�3�<aA8#�n�)��{�!�
`D&ft�L�B}����;���c/�IX���x��b (6�K�VC#��'~$�Wg���tq>����hҁ�~i�=:���<}�S�q��"��e�9��GZ2��3�9��ڢ�>�=!�*��L�&Ϋ�1���uT�$�CGC]���c�� �fv{�}�}�h�ӈ�[`L�����0(�b�9x�+��Ip���#%I]����mUR��扬�93�'9C��cڝ�r��{��/"8\��v��%��{mOԈ�
����eoȵ�g�L�����"�-{6�0���I[wD��K�m_�J{�Q��}e^9��LF�
��Y���XZ��w�9cܴsw��WN�R���`��"��<}c�t���A��U%��E^nuX�����`��g}pY*T�N�����3v�ϲ���y�u�q��adg��UDAjz��N,�=D��\]�����%q:���#��1[��z���ex�JE������3�Tهc$yB�[(���{����ޏ<)*�c)*s� gkc��d3Z�b��o�k;�U�=C�Q>��(�uP�Y���Q�]�l�
�	+j#?�D<���*��%t�͗Q��Ow�k�G NG
�=��i�^&��h�Psȷ��UH�c���7]S	��8[��_�Z��\lщ��Oi'ّ�',�l�w��0�B��Ȝ���v����ϫ�Q\��'�;ӽBet��F�{Br1��##zd�X��P��jv�d���kZg��,���ۅN�y�	Y�oK��ֈ����R�O�x��U�i��MY��g
�I����SeY!>�7k%��c~%����%���pb����$���C��ݝ��n�_�FI�mC�Ew��^�;Z�*��m���+t���^�r�[��B��[�s5[�j-f��Y�v�̛:c��V�+���'g&�"~�_���s��mv�$7)�*�AP�Ѵ�i*�+��R-E(#1°����p"�2H��b�b��G7�{y��d������}��	��=�S�[�����
�5#Q�S���F�{m(%�O:oP�Y,t]� 2M�[��H��;Oi'�ҵae;�;Y+��#�@�j0,s[�
v��Z.���ڶ::���/�ۅi!hc��שS�Zz�h�o2��ޙ�kz����p�_���F�izzB��R��Y���G�\�JsJ�nf����,J��j66c+�S�B�R�k���&��;��H�B��6�%a���B�5��k�~�����)��L��-Ib���=Ʀսs�^��O�_cQXC<����҂��u�N �M��n�,��r�޽@�Ͷ�5U��ui����n��]T{���g��y����{�����d�G��`U�
���I�{q���(��ٵX��uMh�rW�{�V���uab��isTY�m%�.����Ty.���uqZ��X����Q�ҵmF����B#�����q�v�]J������T�gVo-�/h�K�V��UF�m&�ʋkuƭ�����������5`I~.$��IRg�C������阞�d�ѝ���������5�@�{�V���'���4����/_E�s%�*U�E|��[��N�n@ڊ�{'�T��Z��+\�(۶`�_�*�5���Z�KY�[����^�g��S��Z�u�%�Xh�ͷ`���$�ͤ�F�]e�Y��[/O�;�5�P���=��zm5�	I��1e�E�F�y����H�*�`���r��0��Hx5i$�V�#p��@��w���Mj0Q���7�h�OV�“n�3�B��S*r��=^ϙ���Z�9�UJ�!	ؤ@��@%�eB��bj��5�Ū���#*���Cv��3C*�<�����9�%Wh�\�T*��QQ��4v��@�A
��Z�)����� �����!�����A:Y!V���	�y/U�\w�.��$	}r�z.�WL��ϓPNIZ��4�Es
EI|��vOYf(�cӑ��~���]|该Z�z{ZZ��Qt��Ñhi�O���Se2;���U�士�4iV�>�R�zum̨!�]3�
/�Wh���V�i�Kжޔ�@J���R+EҗM_��@��`#G��e&�>�h�����j�,��=t�F�E�1UQ���M��/D.�~�wݑ��_gbƦ�HՍ�-�AZ��Q���O���L�]]��ת�L�JE��v���{*��[oNFE�K�I&%Q5�<�kil���*�xU����qV�����K35Vc�����T'���f�F�ڵx�WA�@��*�Eh��=]�g�r���U�/kT���#�>���,�4r** �"�/jgo����u�?F��ƀ;�-���%�Ђ�e��?O��)�v}$��G�44#��!N֋�ڤ�������1���C�(!,S��i㪅�k�$^S?Ti#GS�t2��6T旘�� ���j�o��k�Ɛ�J9F���=n���}����:�;B�+�C��U��(�����P�kR�+�Z�+��W�;�Y*�5�miXO���bU2�g����b�{`�;�w���Q�V`�c��1���x��22Ð�YH
�6�n�<+�{���j�*�
��c��WD~G�P����y���'�'����*AV/3�;q�����
����
�I������&h&G�4����5���x�$U|ml=���T��O%=[�]e�M�;aEJ+�
���M0�Q�+<4�jѱAn8X��{�<fK��D��QJΉ(�� �sD0s�hTRk9p��$xg>2lUi��Td�U�;�<�8����gh<�_��u<_ C�VcIik`״�nL��u�*¼���-�w��~������M�B3r�H�� @qT@�	�B�	3��K>������2�Rr$�R�+����g�,����6�Ji
v	>i��H%蛔�d����O�����gkq�"���hk{,�k�2������2���	#�d���
;�+G~��M֙uӔJ�	kD����Gt���Ym��%}��,rY����
J��W���h�!>ev.�x?G���^)�K.'yw�Ӵp.~�?F
���-ۗ-5H��efqZ�n���3z���׫$�Ċ�"�%��qp����}%}ǹP�v���3���|�,����^6
�CbW�w�k�E������%��x�������tՌ�R������(�	�'�b����p„{�Pv��#�PV>�x�pT��'�����G ���+���s�q}؃�q�>��ӏ�}����h��WA�켲��S��P�h�s0�B*e�`��9 q�s�^?P��q�gn�8��8���z��ȣܫ�=�9�	$�e�5�îF�*��k\�gy:R�K8�ᶝ��Uz���詩\A�U���1*��!���~�����` ����VNӀs�l�\�4�
4U"��G��z����n/0�x�nI����Ɇ~�h��%B�(�����]+�,�
C��@�ۄ�{��t�3v�=���ي��
�`�P0� ��{W���~�0brp���mU��͐�G�9a����q�<��N���Q�l��g<p{�l�ap��$�"�F����L��8�������A�g�q��0�c�a�*��<LC��Ƥ�۬��.��S�����1��$���;����0¦E|��3�~�*���"yuD��1��3�	�HRy��^,���)Tk\�[X?N� 򱪃�s�Â��٬����H#9pH�Y���
�3�'#�.�g�����
㵀�
���?�,�} d�*qɔ�C\	�f��%��6�oe 6p��).�x88�S��8�|��S��w���&X}C���M)$�*r������X�KS��E
��%���U��UrK�}�}�s�p�=�ps��i�ӝ��
N�pB�
p.	ՈG�8`�nӜ7
����pl�EO��Ki��%#H^@ZC�������9%���
p������89�Fv���g$��‡���1���,�]mws%���$vS�k[ �7Q<1r��)��]I`	i�,$T��#89,- �?ҥ Ur÷ߖ�77�o���9�s��i�ӝ�;H�ÁNv�8�iƏ�
���X;B��-��N�do"�ӝ��pp)�b���	�=�IN�T�B4
���;Nv��8Cq+$R3�
6p�c��9�s��I!1A"Q2Baq� R��b�#03CS�@`r�����PT�$4���p����	?�|I���L&	��a0�L'�L'��Te�q�����8����Rm#��&z3]�zjw<��4�乞�����_������uE�O\S���N����3D���&i�O�b2���j�r�@eB/��Ϥ� �+�h:��Z��G���K���Ȯ�B?�Z�+F� 
q�aD���8��}Z�Rҥ��򞎡h��yiȶ�O�:��O��{$-�OI��4�����ܘMUg���$�sd��Z%�Z��}���l�#��%T]i�#g����D���>"b����aE>��LFe8�q�eD�/!����0���/��S��q�7���%X��vSP����r2�*J��=�
�h�U\�/e���3w�iR+�Dnk��j�&VL�D+��ك�Ȏ�4U�v=�����*x3X�k����-��uP�jk:���U礷{���vpR�6�0�ɝ�x?߂���_���/jƚ���E�W��s�3J^�p�Y�؉X�Af�O�Oa�|{A4VT�d�-p�bXylU������	‚'��\��(?7��q1���+e�����]Q���0�y�Yy5/��@�{,��bOk�pÛLP��	�,��{�'oW��z��T�
�Km���>�^_Ð	�tF[F�
����?���XY��f���ݡ�Lm�
j-�2�aj�N�8�W�N�<��V��ߟWK>��հ-s�z�|�f����Q�ڃO����օ���c�g���/��;|��5�C_`G���MU>��i	��M�n��F�@�q�ñ���V��cu6��ċu6p�<�q[x�賃��ò��&I= ����e�Ύ�e�(v�iPA�3���^��VV��i�g�X��g9H��~T��c��G���VvJ�~�`
oG�B�
�T
Z��w�D���������g,�Q�恙f�̈́�P�P���B�Z����m���c=3��r2(;	�����2a\�7s�U�4��Z7]���jxA�L*M�$���u��?f�A�xm�1�{jN՚���M��c;0�Tj_aT��]pMJ ��9�Us�;��v䞦��E"s�F 7]����nv?NҤ�������FQ=L�UG�c�p�ڐ�OH�}��#�&2�F�xZjU����'���z��jk�zD�͌��w�e79��U��A���{qJ{/���twa� 9
��9�,)E+@;�e�G�� �
(
����Y����ꨃ�c>�����֯� �Z�,��M�/6%����^��
WY}��e=��I��[h��т��I��XB�!kux�����-�U���>B#��Þ�:�ϩ���I�4ΛO��Lև������?���M=[���r����B��~ �(kI6�\ln�1�GÔ�*:m%�|}�:�V�M��UK|i����;*��_�X\%�U׃;y�P%-�db�Y�7�keԷ���o�KA�]�tɁ�K
�4�ޠ@�)l���e��i\�mV)��%��o3����w��<���+B{���j�+�Iَ
�,Z�ug8�Oct����f��Z��[�1=�C�cu1l!�6Y8n�zʇ�f?d)�'��æ6�A��|D�lY��V�KLw��Zp�S53R��ZMR�]d��������-NG���WX��׏�e��?���"ѳ�α��K���Rm�ZK3v
���MpM�6W��O�J�t�cV�7�`}%��Jӥ<+X�KE�o>���OS-j�T|��GF+��,�
K��8������7��K�D�^�~��_̳D�Z�}v����Me����'e`��X�F3��"������L�]anF2O���*kN<X��B�o����I�i�~�o#�ݣa�Z�%|��`K�\8In�f�2�-/�y<�Z��@�D�Z��|�/r��_�(-�H��-�[yʑ���G�,J��b�8�Ҝ��S��A
��]� w�9��{�պ, ʳ����:B�X����j�~�F�	�?i��LJ�A	Yc}̽�ь�����m��k��9��=!d�^�^�^�]5�X&�%�-RDe����g�c7~�7~��<��|��*⮁�\�c�uXsY�,���`O��r�9�i{�$�U$��s� �NK�k9�p�y8��>�,6�/Џ��#�~�Z�
��q�:V���K�g�s�#��A@�-8nj���ߪ���L�9n�u/£� f �bi�{jM�#�b�5'S��U���^�7��O�˒��ji*�_�Ӹ�A5e�V��OZ�V������#Q����Z˚#z�v'�	I���Y}��~���J��g�\��0"!C<B#D,��-��1�P�ƚq���#�o�i�5���v�ʴ�p���#?�a����L�̱X�h[��
	�4e�B X�b�E������7�g������>�%�5/5-5�5�_-_�z����r8�.�*�rLק욚�,>R,���9�;�'�7}�o�
Ex���Y��[���*�Sd��M�=��[�E��%M=�Od��4��5�Kl��4��5�Ml�[4��-�Md����O��=T��*7�o��xo D׻��<(f���xn��^���Tt��Y��ض����d���zZ�����c�2;���3�/`J�(�>�V�9�`��%��.�չ�ӸE�<�6J,�Y(�Qd�ߴ�ߴ�ߴ�ߴ�ߴ�3�;\&��"�kT*&���w�"
�,�&~�
=ʾV3��*�"\��L���Z�I�S4��&�&�'�����o	�gѓ�g��i�r�#=���v�T���UI�Mp��ʆ���cm��/���}�}�@�7S�U�<6�ߤ$q�Gs��z�$H��x^;KL�].�\�b7\�9L�̹%�/�Z�yb}��:¿xWՆz��'�E��,X?	��@b�d�@?p�p�~��L~�1�����S�`?�!���VҦ�<��M*yKʞV�<���Էa��KUt$�
q��?H���?A:5�M��F�P:�G���4c��H�Q��YY�gbB�y�tXW~9w��
���ʨ�W4����K�2J��*nA8iU�]�X��f�n�X�ۣ?XlC-�_t��5V}����W�Y�_�WgMè��F�/Xpx�|ɏ��V}G՜fd~�cR.Z��,Oh1����0��a�e��Y-�[d�ƈ2��� �"� ��"�X�ek+YRʖT��*�*�+�*�*�	@���e(YB�P���,�e(YB�VP���,�JD�}�O�b����
������~����k��6��m����;��X�l�W�}�����e�Q����'���-5m��0jkxjL�;��4���M��R ��ݬ]K��%�<��,np��{�����qzJ�Q�h����^䗊�������k�[6B��GGq�W�b����s8r��KM�<��	���MM��D����	�b+M:�P�L�L�K4����
�?0�0C��K��\,=Y���q-2�l�G+춙lx�f=_��sP���
�1TҖ����Ҧ�J�M;�I �;}�
��7�)�	ǎacBд/Bз��4��ZX��Z�֗4����X�ic}���;����;����Z��4���/i{K��/�j-��e�K�\��������MI��Pl��5�M@��P��^��^��_W�U�e�~�}�U���檅��j��ٯ��m��h����њs��?C�c���B�4uy�8�F�8J��Q���ו�����B�!*���&@^�!{n���8�t�x���`�Lʚ�Q�+��S|m·���\sUȮC������Q�2�M��yYF�[���Y���S�c�x��!��q_�J��a4��5Iw��x��R�*�ȕ�6�O]���.��vD~N1(��%�q*���Į�W<�M����@��?����]���3x�Ycs���O��Yj�
%�Ϝ�W�`7y�{<)����3�Ʈ2B�g�'�S���E�1DIİ�-2�.2旴��3@3Dhl�A"*ĉ�^e�Pf��I��5;�Ap1�~��>��+_��~����V�yX�ʇ�T>���U*?yS}�M��7�TҦ����O*iSJ�E:v���嬩6��8�b+zM(�@�˰�e��iG��m���7g���r��31f~�@#��H�q�!z��j~��+�j^�İ �J�Zz��~?6���������I��"���-��/�����jmAe%[���[s��X��&�x����FXn��@s�Q$fd���b�N��:ۨ3��T
�"`\����H�6.yYR��������g�/���2��*�J���rǟ��_�4/��遻�!���>8�����jnM�������@f�����AW�Zy�{P3_�=Jda#�^�k��k�A��r����p���9�3w��m'����-������4��K�I��:����?1���㘕u�H�x`�X��.
?lJ"ך�cy������v�m��4?�,���h�`o������f��fﱅ���[�ah[�Fh�1�c��9�c�9�cǏ8����<BZ�q�^���K.��[n
�}����]:ue^V7��������o�����J%Bb��*o㛮'�����k�s.k��"�����c;����X�_��V|`��DN�/�uM_�+v��e��q��7q;ۘ�sgIR��ʇ+��bH=&��f��̡�#�O�I�l���J�hC��&�����!�?��zn0l7H��N&k\g���.pe��E���s�2�8@�p̱y��Z�@�x��:�)=g{?�;A�,p��j�{$.Q��L�'�gV�8�:�ߣ���Φwiݱ��h�A?,�Ao�:�������]�۝X(Ö��Om���?y�/����+���������;�G��i�?����Yn������yS��e���,e��q~�:�XÑB�b;J�]��>һ~�-������"Xs�,��,��Y�`�������8��r3�"$U�`
Ј����z�F�*6��S�F��e2�h�B*��}���2�_mk�J�|R�N���y�jm;�c�tߑb���`τ�7��F8�����;���j��֫U�K(S<�f?��
J��#�趌y4V�@3S|�_5V�e�kl3T�V�s�j�Y�F�������Z6X�R=.jl��MEHmb��৸D�{t�Ct�J�~�Ħ����[�)�3B��3A�y���4�y��B��y���M���]O���'��ܵ�SMa�2&��j��/5�QֻB��֟��
O�3��&*�5�g��<�Z����x�~�V���j)��W�1Wކ��㭛� ��x)�f���?4���b*�2@3��[d#'��9�����]7���@��F_��9n�ZʖT%k+X�{\��=>pk�g��	��y��K@���Z����*��}�����=%�H��u܍�!���ג15�s5u}�����N�jꚺ#++�s�a���8�׽-�"TQF�_��?�0�����6��K����^s�����is�Y�^�ڴ��t�FE�B����gl�W��0FݹI�,k"|H�@&��=_��|U�ݕ�]�3�D,z�q='���4i�Y�~GPk��y��D�=#?�D�u/SӾ��������5��	��?kv����w���/8	�@��5[?���@��w���Lv<���w�'�3�O�Y�|v���>s��᭏���g�Z=}�Y���n6��_�0jMj�w�}��s�Ǥ������R����桇�#�<r���%�_�Kdj�κʯ��2�,�m�$i�~��|3� z�� ���X�)�P�M/��py���*�S│�mO�9<M#�oc��g2ѧѢ�:ߞ�Ѡ-��u"y����(������nY�m��T��^,�d���'Ƴ�"t�N�}A5d��YPֽ������jK�dWO���z�)�,:ʊ�1L��ad>���~X�~�n����׳�	�C��n�L
�Z���?������U�q�F6��]�И�~�{)�b��"�i5�finN�6)�����=G�1�:��?�:Ŧ68�ؘ�x�h5Jӆ=�i��i��i��I��k��*~���.��3�G�Y���a��W���;��?'��O?W��L�� o�N�����+4��Z+Ω����‰�W�ԥ(�|,ߝ�,��[���'�)ϗ�`�q�0��=���m0<"v՟�Cz�[?ĩ�a�'mI��;_�+���v�*���9�������̀ak��y������e��&���krƲ�(mb�9�y�3Zf�~ɩ��K���膈4Ҫ�Q4tM
3AW_�=?|�t�s�����h��K��U�_�'����T�o�����W5�k�k�v�D����#T>���W�ɅK7�?U�Zw��/�j,�}�Ql��!�&�c������!Qg����t-�����5�g���N�^jVb��oh���kiZ�OH�s�}�}��~�M}_�%��:�b��b��vڡW���?]G�����n��w텿l-�L'��ߴ�WS�z�k��J��t
��Q��|��yO/_f?���g�'��|W��B{�VЀ#�X]�l�ݥL��}O�a�H;+��c�~���[s7�^�ab���L�&��1�L�a��
��hcc�(�5����*C/�ј���~e�X���gA�;i��ٻ��BH;N}Wo,��L��Q�͎�I�-���Zs��fTp�F嫆V�?�F��	c1�!���j�ķ���~���=���J�Q�
��ѩ�ν��F!s�:}�� ����>�yJ����)� f�@3SE��@J���wc?����'����	������gv�8G�B!�=D��Y��7~���{}��O����c�~s��1.o�T���5?�1H��
�c�z�`��n=�k�aKX�¼�
�����z�IA�UzX5;��-*�͝ˏ(8A(�0=�z�4���G8M���i�G��"|����4ljo*��d%C��� �~hM��,v��H;�
9؟Bf����?x3�������A_W��U?�Z*Zi�O���
�wa���00�[m�������?���)���J�����z>� Y����c��;7O!<�w�@'�X���;;�g��~u�Y�{�=��Mi�_�H��=�}�C��~��!��o��01�������[�l�ȟ���vyٿk�j�WO�� ��hT���c��S�EB~	q�[l����jR�V��?n����b�a��Ɋ�%�{B{s8�H��5۰�y9�~i��|������1�s�]?�h�H�q��F}�
h(e���m�ގ����b��1_|�Pφq�����_Wu��o�I�bA;i�#�a���?j��#���yz��	#
��æR>��?�V?a,����?M6����u�S�3�����1�}D�������O��dk]�Z=����%��._��}��/�\�i�as�=�����M��<z�T���ӟ���K��y�Ӝ�5t~�ҫ��˒ҜC�꾪��c����9��啟���~���
���������f���U�M&�`�&�i��T�k�FEe(�N&��:Vs���%mR��Zz���b���j��ϑ1�H���;��n8'��&�v���`؋�<ə(:7c�s�gf��a;�����
76	J�
�׉�(2gP2�1ާ����uKI��K�z�d�K"�d��Q1���D+c�"�aY��13�&v�	݌�"��D���>�n�!0�x0�s�ϧ��ɀ�"v^�O��#�0��2�n���"��s}Y�O�v����ޥ|�X�~��{w�4V�%�5M5�r]1�����h�1�XV��`��4�|^sN�y��ӿ�i�i�i��Q���Q~�)��9�*��`�QF�>����&���i��3KAN:�����b@�R���҄
�z�
Ku�i��2�G��-��zN��
-�t߹��P�I��%�?,rQ�׷���*k��U�/c-M�l FH�^j}��p��&�SmM�p�h�e
�E��L�7�%�R��<�=�L������p��p�/W�|K��I�G�C�J;��rC��'�̟c2���V*#߃�Ü��yC���|u��=ٞ�b���x���Zx%U1��_5�����jmzr<*&��힓%�0^&��f�5Mm��˯�;۠���ug至Mj�`-=#R_�=#��M�D�i�up����S[�F�Wu�*�7No~��5�:c
k뙭��Yf��^��]Pr�O9}�@d�0�_��Z3�Q5��k���2��9N��S=(J�5m����g�x�¹礋(L�ז��¥C/= �'�zk�u�5���M�~H��=L��h����Equ ��4����y��
]���t�_�I���ܫ��e���Z��?,�~���T�=~��l�~OC'�FT���D���>���i5��=�q+�W����٦�٦�~W��<g`tM�N;�
�j>a;�<���e�ӆ����_��T�#�Ǔm)�OE��ѭ��ެ�0(�̨c�+�R¦B��i�M��_,���X�Ė,u��<�9Q�'��s����{Y�;�'�u��oW��;��6y�=�<�qu?�f�y���v���_qR:��q�*�ty�����<����p�>0S�'(��P<�v^�o���#�_�R�!�c,�IR�,���Y���*|I>�o�Le��E
��
a-W�U���q�z3��eF8F�2"��M8Gu�o1)�ULJ�]����"�Ī�U~#ȗ㌒O'����f`#��4�;{8�4o�fZ�_[���x�*L8��5*w����+c��XB2
�������	���0���9G�QmʤpNc��(�~a�8;�fa��^��]��[�"'����kS���V��)˃����4��S���v�� ��c���z߂<�c
�2�i�V[YV8R�P��O���Zp��9��]���{��9�F�j���B�"
���# sω�(�'��
k.2D|�����<��yW'�ۧ���;t�q��Yж�EE�J��V>ұ���h��ej|'�z
~�O��
��O���~A<����Y��|矯�~Y������Go�:?��ٕ�H�r��N׺�Y"Z)<���4T���d�W��a��{T���Z�,e~�k?�+��
��|���-���c��5"�Ūp���y��ߪ����꩐N�7F�G��TZ*�yJ�{O'����-ܙ�?,��U?�<Fi>^���j��W���)��O;� ��y��8{��@B���}3��b�m���Z�6㕎pZ9:f��,�+�F����������ن$Ψ;��H����ÙX?�"8��1���zM��O�I�����De%����Z���0��_���)z��&܇9�!Rv�O״�)(���2���;ulv�0����r���k��]���a؍ߏ8K}�#�w��7i�d��!;�g�b�C:�q)�"<F��b4
M�;2�0�-����������Nz�uyl�]/��L�	{1C��c�����Z�ym�ym��e�������p>?g��?��{������fz��,�y��ϫ�����'�0�x��a�~Ş��}�.i�MY�lP8����������0���~��o�2����TX���9z��Sy���G��̱�a�hO*#�s�JW�1��y'��'k
�����aD����i��7C��a��f\��b�cОf��S2��ǫ�@�Dm��a�%�霰oz0�vr��[q��)o]���
�f��հ��YG�E
[
�9�����Gg���<ϔ��>�Y�	�ؙ�w������eL���w���B���:��o��(�g*m�˱��q����DQyRy��P΋�j��1UH��&a\{�:���Hg׮a
_A����>�N3 ͐'���>f%���=��'l|
�<x�:�Cb�E��"J�B�B��+
B���
ʪ-�Ur���V���$��&"EH���W����U��U�T��T��R����9M��!����f<�Rk��<����3�yN��矯����gO����(�o��
�o��7_8�)�IH��s�M�G����~"��r�	
ЀeIN�;+�3(
\�Fg��\s5��E�=a,�_�)��w��`A�F�����_1S#�ã|��b2�;���;�'t�'�~�m�?gx����� �����P�c/k�#(@l��8ʠJ�^Ęv�۬����~LD0f��c
4�Vi,\�C+�+4K�3Kv����畚'�
4���l�Z��3En٤��4V�&���:	��qY���r�]�&i��4Z�6�4��6�'h�_>:��;:���x�����Oe�[w��KTv�+�l�_��+��Z��/��bx8�Z!��)��#Dh��4F��Z#Eh��o���o�
����4
~ٟ�3���L��o�'��l'����s�����(���FY����������������+7�G��
�4����s�����|=�V\_��=@�x�hS�<����x/���X?�,u�Ωj<gx2O��+W�x�iv��"��d��+���*J�#��;6{��;Ubs�`M?�O�����y4o_y�ʌ���y��'����:�B���� |LFI��ꮭ,��iLU��g��������@eJ �&�9�g��!�����۷v���͇X����y}yE��Ͻ-Ŏ�-�6ί��<�Eu�2�U��fNy1���Xr��5�C2+�p�*��
aepy�k<]8�0W<4�x9��$���@�b:�f����vKp�SR����X��v�F�f[c����MܦU�4p�OPaa�aߕ�_��8�#�e���2�XD"�B!�cL�z�.��|qVVh��&�X>�C�r��+
³�z���q͸�`@>��mG9	�r9�?cK�4
?"<��x��W�(�Vv�]��m)�
��p`��S����wZ(��(���N��]G�������Ò|���s���k+�[b�G�W�41^�"��zȌ]�f=�t�{O)���?�6�~���#��Ο)� -2:��-���*����9��>�s�O3^�7�zK��C�W�c�]b�=s�'��œ$yGv+���Xx陨��r�,Г��<���J�n�2�m�5���.�iR�n	�8Q��P�|@K6ҋ���xv�D���Mm7М�%��E.��$�l֗G=[���8��#�jUv������w%����Dj��Q6S���y,ADV*�Vb� �"�,X�(�"�_�b�3���0������[�[�Bߺo����3����?��s
���n��P7&L4~�h���~��?d��
?lZ?i�G�ģ�bQ�2�>�UG���T�9U?s*��c���x�Km��:X�����A'�άz�N��@r`-��6��Oeo�~���
��/�;}!�	]ajm��2�����:l��.�'�/���Qa߀|-�7�F�i���5z_�5Z.U@�ĿK���Ӕ���Q&�?.&BȄ�~q]��U�݌�'�GkH����*���y#��X!���N��$d�4��3KeaG��vJ=��A@�> hyf�2�=�
/�����m~���W��p��2P�FbX���a*�~��L��=#�$rUb;0ʴӳdr�*�ێ:Zz���4��T�5�_E�S�rXFVp�b��*el��:���-B����$9�i�!	��ѕLB9
'���v�c���icKXe�,2�-2߸���-ib����e��c��:��,e���2�H�#$j��5c���W�ƫ�a��a��a��`���e���a��g��)�qi�q)�qi�qi�q*�qj�q)�q)�q)��]_s*��eU~�*��U�ʫ�Ҫ�t������*O�*O��>����]#�񹝺 ���w��xq�lۼRN��i>M�Y�fp2wq	T'��a"�Fy������%��I�j=]���Z�Q�'C�1�vڻ����M�-�_�O{�%�P��e��T��9�Ҕ�R&O��Q�%Ԛ����-�Ủۈk'؄;ۡ�MYQ‡O��&���MM�j��a嵒�É��݆6$���2�|���kp�ǵ������L�p U2�c�Ya�l@Ky�m=	�����28R�#(.|��}�tn�{O.��Q��L)n�����/QX�;�Rq�������TtP�����f�y4Up[0*�m�>f[�`(�>���:ͧ�zG�؝�{J�ܜ�4��
�g�}���C?s*�'vLNç�J�TҦ�4G��#�h��4F��#Dh������,�D�W��_��߶n��n��n��n������������������������ao���������[�����1��c���?c���8����8�Gh��}����}���q��	m5��/�IR�h��^�DzJ��B����5�jm��K�4��-S���QbY��j
��"���
�pA�kx�tD
��%�����;���{PSeaUN{�[QM1����j[a�4�Ug.�	hI�����GF�,|H����X�N}E������p` �Ţ:��$�[��&:y��ø��pO����#?=#��^e��w�1'�/uPz���m<��o�;2���O'
?�*�`e8���2�<��f�9̱���R�<�-5.���څF�"�J�c�,��[f{��c�L��,�Aq;R�a�D"8�#��0�#�0�F�W��a�?�G���t?��^h���������P���/`C�jӟ몚K��.�p�1-AW�|%�A={��>v`B��׏d��^t�U��I�#q��AX�S�}&��1��:��ino1j��[A_6�z"�y!��:F����ՠc>4
�����{�٧q�������!!�sȁr1߆�3�'�:�u�@�#̈�ʌ��T�z�s���Ye�z`���!mæ1�M��`	��B��
��1�<�m�!�`�L@�>㎃�r�p{G�{�-S��{J��H��v���j#;���UJz4�Fr�|ؘ��Ÿ&��+N�h���<`d�K���#��m�L�]/?����/�ˏ٥��5?ɦ�ke����X͈,�������<�e���{�G2˾�\��k�ya�X�y���\X�N���c��˛�f�	���K�R=71\�~Nf�g�7���X\����W����^?|ׯ���<Ԓ���POѦ���X���/��'��Z���5�� ���\�劫v�k��c��C@�N>x��bN���Z�Cj���	���w�l�,'�����%��]C����c4�����`����g�p��P�����X���3M���9f@Zi���\S*j�``�M%�U�٩�Du�kN���`O��yΞ�)�;��oz�1s�&3K[ t���&3#0�"�+z�_�L�5%���̴�Ҥv�9�#��g8�i�0������]�fR���6H�@�����)}ߛ��K�r�_q5�f�n#X�e���<��ag�`��w!�,���ľ����ׇ�/���[��6�1�s�e喝:�!�>�����q�ľ��y��U���W��rk��AUV�,�eI)�*�1�(�y��f�_}m������5��gvW�kuN��a�����89n�jo(�r�]z��5���MU�;���w��/��j��POI�}^{.��;ˏw4�=(X�f��0J�m�_����P�����'����@�%�:������]I����l��K$�a�m���>��'����OH�jW��@�3P2��M{��v���I�C2��	�KY���뽪.mҷ��Q=.�9�fzR�RVb��
YZ����<�rg�-���OL��x%���[Uf2�6�D�ۍߛ�/���7�j�K^�`I~�E��ϻ=%~q�g�5v��
�:�g�����c;�^t�QT��iVMB���������t����3�U��\�s3n\�n���c�s�Ϻ<�fF �tz�Nʹ��F�����=n����~\z�ȋ�%�^�p[ށC�S�ù�Lt�4���e�1
���0%J��B#)��v����� ��J���Pv1Xvic
���h��z�W�����>ee�e����N�DP>bP[�TJr�q�T�瑘��Ь��:���;/>p�W��G�(�H3���,kE��OGjU{=Hy���En�Mՙ���~U�5
�����^���J=t.������>�医����#��_y����2{&݀?����g>%������f|$f=����HAʐ��N�X35�9�̾��`����y92�T-���Vӌ�!�8VQ��c4�j4��YP�Dͬ�:#�QԞ�%6���9U��̞h;@�dD��kX�G��"6�7ԾV��H(�a�Zj�,�fk��f����V��%�э@o�lк���ކi-k�pҳ����p��C�br��)��iVW��hŏb�2F%W�o�)��D�=����R��HF	�8�@Ң�r��f��e�Ҫ�c4SiC��W��+����/�a{N9?H���k|/^��C�@+6��*5��A�l���M+�]6�{��1t��\���u�vO�yM#�MB�S��҆sCb�>���XV�����/���Jص�A�ek�ؗnz�%|����v@}Du���zf��Wc�И$��5��IG�j­��y���]ej��_�vy�,d�2B����q��j��f��K�����Q-U���)���t���p���u��o#d��Ln�"U�a���
ˣe��|�D)�;�̵[�"r��Brr%�#ĽJu�f_�D~Q5��#�3UZ���$|��Ʋ��kU�^���(���p���������7-{,��
1��C��UDt!枲�"��V,ߴ�щ���{�T)��ѻu��FW,�&y^~�|�z�������=5��<����hm�3��:M�G�Ә�Zӌ� |�UMJ��[��k���g�o����
�(kuA�p��zoT<3��m���A��zFԩ�`�I3�:��\��ꛌ�XG5��m@�-�3�%���R�Mem�-/�i��[c2�lZ�\3��v�
�CA��	�ޯ��p���׌�K�;�c���_/�3��K���b0q�f��Ǩ�-��*�MS¬_�����ܰ��LV��:J��u-��|+JnF��.&�*�mVe�2�~Χ�I5O�U\�;�A����W����4��M+oP�+h�3 %�%�!_� 8n�D��0e!�(�j�F%
���������߃��@�rf�����\̞ Ub8�l&ZTܜ0��X��K8�+��p~R�	�Y�xS��l�m���j�����:��<"�)z�J>��L��$Ӗ�k�������B>\F�S��힑���z&��K��l�W���9�ձU$nx�̨>!5V����Y奲xh黭c�K*y���)z��p3�eO
�����D�Br�s��z�X���uU7R�����*P%�Y��F>l9�*��T	�~��2�"=��l��s�T�ĥ�e�N>F�(���(���ч(aŇk+�"�ӒE����2u�8�p��9�����D,9�o(��K�*2@Ĵ/nxa��L
��2�s�^��(Xw��Fm��*��F��P͖ܮ\bhS�)W>�q=��N�����Ԯ���j�
4���VҸq�3�HX;0����ҧ�Bق�& 5�z8i�͟)�^-�3�'L�}�%��SX>(o>�˶Z>�b^-
T��u�W�Y����bj��x_"g��� �w��V���ab=��x�??W��|���	�*v��0/&v��)ٽ~s���z��+m�>�.��v$�@b*0M��;���e�2� @�L^�:@��:�ʫ�U���c�i��9RR?�q9���:�5W�ס�0�0�&��(B�N�Cɰ�@�*f��#ۼP�p=Ȩ���[k�>���@��5H���"�M��Nb�(��L?�u�ҭ������-^�� X%�7d���l���P���8��Fq��'���,�i+���*G�*�%z�K��͉�j�O�/�(�ؤ����˴3vr���К����((WjٜJ(6�0��:B�
�����V���i���rKa�f�����>a��KNp�5�kqPR��	�d��{��7��}��Q|�Si�8p?�e�CqQڍ��dĶ��#]k�2KR�X��c����VE���s��y����0�h�X�wi�gf�]�M+[����*���„�������Rf�k=3���h8��G^T��i�B�2�*�qB`��|�s���&����^�'�	��b�o/?__�
��ab!-��b�iZ�a�nD�ٍ�ُ�F����nٔ.~B+	��V�q�b4H��ŋĊ�Z��n�=~���'��v�u���KS��D�Se��v;�&����ؿ1�b|�� �a��6�8k��:�e��<=J�w{I��Z[�s�ĵ���|Yhj�2J�iYg��G�W��zU*#�q��;P�i��F�wa�z.��Pr硚
�b7m���.�Ѐ�ҀZ�ۆΟ��o��T���c�A$L0>F(�3��zύyz����yz��q�,8U��o�o�j�"�EC�ZGbO�4�rO3���g��gQ���4U�
��a���{��Vї­46��ϊQ�T�4͞�4l��Á4�.�f�a8T�w�c�%}��1��-�5�̴}�#Ւ�x�`PU1+EC�9SWh�'��":�	���wdc��9~�º�Jg�Ai�ӀN�%������)6:g%&���S�)#eT{P��|]q3�P׿��j�R�
���P�����g�6��:����w���V��'����R|�g��U~J����9�o=�RSgÁ̱�Ҿ�ii��PFs.e��	`ķM�_�ӡU����B�W'����57����z���
a��ʕ���|6x�P��}l#Q��f[]��BᗜO/W�hxo���*�߭�Qx��R��[`����F����:ᦤ�j+���`(�*�'��0	d�Ģ�=�����|B^j���oC�`zg���&�Q��RzVzVzVzR6�a��^��;X3Z-���)bX��$~�]矫��F��l�x�;c��X��T�|�J�Y�O`���%�:�3�� �UhBx91n�y90ې��S���*V�G�t���
6����V��lp���&�����U��ԩ0����u���L�gn|C��T�z>���
;F�>��/㟤�3X���me��K�%�c�s�G�aa�VوŁl���k�+[w���*���R[ٖ%W��֊ʁ�yOJ�n��z��y�J��jb����2��X�Lb��|�rxb3�u{Ӎȸ�ᑁ��PQ�h4�l�od�����"�F�磩����	m�lr�!�!��c�*Q�*e��_�u�����Y��Y�x}E���JeTEr��$��?A�U_iJJ�[F�g�
��s��'_8�~���f���Q-i�_�	����_�[�;���3��MF���]�[o�����O��D��uKn�/0���^<%U�ۇ8��WE�jgy�>P} 3>�ո�ڣ��0ȊĿN <7�eOYR��W;b�d�1\�m�Ojɣ\· J����S���t��f�	����x����[���Oa�l!U���+�sɚc`N�`&��T�2�#-5(c�a�,�9H=�r�|P��Os
�I[쇐�>������o�C��@*Ⳛ��~�3��5�#1�g�P>�E�݊��z.��	���6���P3=�<yOGjg��$���C~Nf��4w�;bz?RYy�z�Ii^�>eM+iP��UUz��.����U|�zGM=%��8����OJ^�\�ъl�T�k�Mo��z�?\KG#�j������h��1��Wb+c�Q�/'�<qp?1�VUz��N:/l�b����0�c�MEˏ��Y����G��ieἱ�s6Υ��s\䁜azK/���+X_�TdB�c���g�,!Z�K����JzQ��\Mw�?��j�J2ۭ'�2`ks�{V3D��{M
��
4v�=��3дOE"�	�Кϓ�F�����k��������������#koW�>��"Y�O?��MU�ww�����}Q�U�����U����g�kd�릇_=������i4�zV��hW�6�c/�0K���>�� 0������0+z��+u��X�|�8���s4���mf�����^��
?������ �zZ~��W�X�)n��.5�7E�L�9���|#�&�!��}ќ�H~�R����N�ٙO�B<G��Q�~�����B=E~ެ~�"��W�<�?H@�X0��3_}�5s���-�?&&�Af�F�肋Д����×�����ay�m���D���ڻnD�ݷ�s�2�����f��Qyg9~��tǗ�2��[O
��C5����W��=&ָ �_���C�X�����Ϸ���I�-UˁS.@�onC2���09�pA��fo�,�a0X�G@b%��FC��|Ľ�`8���*\œ}���ܻ|R���9a:wIR|�|�GMiܧRf�t�,{��݋���!s*��9�ӏ���P��{�+��礵���q���݈�]O�K/��?�|�1j�t0���lK|�xXfĴ+�D��^C��B�
�q2���<�lL�P����/;��7�(�j+�c��L����D7���!*��2�O�^��@8S=#Et�,��?�kM�A���l�
W
G �L�H��N��S5�v�pk>M�9�4$���?܉�.Lf��YXg˲�5y	�}H��VꜲV+OL؈+q�4���R�OMT������LB'�N_��,TR�[�f�R��{���=!����|g���zWT����l�y�ӄ�m����K��� ��"SˊWf��Z����M�Cg��i���
�g��]�/�%�25;�ɫ)�ۍ�wV���h(�i�5"s]�;���Q�mÆЂ�2��v���rMM6���Z��V��ӆ=q��<�i����KWH�P�����lԷ���b1�tv�B�2�q-���=jB*��Q�<�1�[�1����8�!r81<y^I�D�H���ʃ�����+��|�X �Y}l���uS�?���e��[n�{�c"jUO�j��3R�I��u1�A��|��7�c�= j�a�A�+q�e����vǔ��LeO����4��+�QX���S�|���&�͜�%��u_}9����[�J�R��d��e�W��9�D~�yr}���c)�\��Ɩ`�����{��q��HZ8%F:�[瞟X@NFI1X.7��;~R�f��P����ί��G�	b{j<xX
a�%2�̩�����yyL5�r�W�J��r���JT�rq�{JM*GD,['�;����Y��b9�,�۱������q�N��J���q<��,�(
���A�N��̶������N1����)�Jh+D#�����#ps�u5��ɀex�G*q�p>�=����Ԧ*g��a:|��@\����Y9�T��+SI���~�31m��Nz�wU����t
��<��=I��Xx@�I��j��ٱБQmd�̹��DGZ��7i�/�ԝ���Y���vV�_u��c��:c����Gx�h�>��O�_>ae���H9!\����.d��_;��n߂����{K������6���@�ik�_��2
 �`c�^�o�Guf2�)Ԯe�X�AWf��$��t���!�2֮��j�U"Zu
�3����X�3_yR:?"U�y���<�U�I�H5i�I��,x����o�I��~A%Z���M�h�U�
]�'�-���O�y}&pv����Ys*����Q�0�4��ps��L[��%Gv��՗!����^^�H�g�:E��۷qNT|��t|�Y� ��8bcޖU�/A�cW�����OQ���o.���2�䵕�c
��we���R��JK�3S}��������n-���]��o<��]zc���{������-^1��9$5���MCZ��KGO�j^�n@
,r�K-W
��5����b%��o*�'�
��c�vv�ָ�O�rȍ�)��ʩ�J���0 m�w<����/vSV�̬
ٷ�Td��-�euf�Æ�h�����^��n3��W���WE	H�K8%��3L^��z�Xy�U��~�D.�Q�X��|��6�k�G���jЯ
������  �G	��v⋂繖��$��q�Z=��/\�*(ʶxiy�_wG��M1�]�S��M[Q��AUQ��MW���	���Z&H#p q���� �;����D�~��k�ݛ{�b:�J��j��g3S�!y{-�'��Z͚q���8A{R��	�g��|�J���[+�WEC��S�A��=y=1-������W`�2lC��%+��'�Ďx��2���ϙP
ev��*`���0�6���9L
����@�C�������;mnL�M;������q�!xȈ2�	�\�[�g���+��d�1UYρ9��,+�x۸�.@���/���#��p�p��pm��{Q�+��Զ|������k�T�Wu�rRN���7�*��<7�nl��"T�\��|�"�x*����=H�аq��U�-i���f���[~'<�b��ER�Nx��KQ
�c��_�d<L)<n0�jw�{�V��/��r܏,M;Zq�A��A&���R~R�� fb8��#
���>���H*C���#-�h��wo>/,�dO�wU�o�����1�`�e�eJ_�+�V-�JZ�n�ѷ���7���m�G#'	��n�A�Ő��,m]ÎЕW�s��,f�{�İ׫Kѷ��`�K�ᾒ�X�S��ˍ�W2��B���%����O�0YN�g$����ˍ�T�,M5�7y�̢��
����T���ԯR��Y{��M0��l!π�1-�
0a��@�-U��Ɉ�އv�S̨8?p��6���9�f��׏ovZt�Hv���^Z�5��Y�9P3��eA���ǀ<�k���b'v��`T*JU�?8�\��U@�հU��f�nP�x`��^[�b�1Q�	� X9��6���DTm�~r�#@��督�D��7MA��]�P��H�l���iR�A�+=��F�8���τ�"P�Է%Ӈ=�3H�w���G�L��3�V�/ǜ�-��]������Kc�w��z%Ep6�s4�U�iՌ�m��G*�Axy�{oԣn�1ʃ=��y4w��M�Yv��/��@m�+��M����҂)
�K�_�3ѯE��?+\��E�\R׆���Q�e�J���^���	m�;lA�j�εlP/
��_��Z���HN�o��i|��ݚB�f��h8ܪ8�k��àM���[j���|3�b�ULJobzD��s��Zj�&w;[�5�����7<OH�6Vߦ&�F����l�GIn�,!���x[�T��8!\
���.�����5zEL�3,�����	��1,�}���Z�üT�`QC��y�U%n��S��Y��_�}�G+5��b���Y��y��x^�gNe��`�1o]:�',�Ѣ��,��j����ʽġ��8
���w��ў�+��O����
"rq+�N 
WPP���\���z�,��%���)�@vG7������ű�6cļK�w{����9��9,c�����Y�l���Be5Q�V�ߔK�Nv{6��fj�h\��c��j��vP�Ԟ��1s����JZ�p �}f}�pQ�J����?C:��3fu��8��p@���y�s����׹�1�nv���i,Z��~�|�B)�V��+(��m�_�G$J��;g�8R/��y��u�--]N�&A¯�^�R�
��Dܠ{+W��e�XĨ�yXp��an�#���Rw9�~��D)��A�Ԕ@6rKDI�l��U{z6�̾�4����q.D�?���V`���<_#/.��E��C�O��e�S��+���	���sc�y�~P�4�cv
涚�r��Z8dF�`;�C�0��B
ǵ��v������˙�'@3�K�հ1��m��O0�F#���F%��`d¼�NA�a�{"�
�:/����^��U��CGd�BZ��`f�b��M�x&BT����#�@3*AǴ0Ui�H`�A���m���%��<dc1+[GC*f��
��`W,O��1-Ǩ��:?8�b�<�,�u+*[,��v�k�+F�S�����9�J���6��FY(�p
��
�he�H�SZ��2���E/�H7��yD}��)O�$�~�
�����6<���8�Aas�̸; �V,
jQߘ�o(7Wݳ�0���((2��Îao?<�\r;�B��
נ�T����6<��:��r��<���zH�-r;��O�>�Á��q��n�+���j�7jY],82�*v�2%埢���V̫�s' M��r��f���35D����:��|����n+��l���˺pL6�)Q/���a�:�c�Rs�-\��Z��F5���!S��ܞ^Ym�Fv2�<���2wa�!8��39�`?hlf��c����=D������a`�ϜN|�B�=W��8e�3S{�;[�c��[mk��ۘ�1q�|�c0#Œc���`K.T<y�m�e�0�3�yq-d-�;n������W��f��Zr��ݚ�Oly����,b�p����7�ܚ�I�׉c8Q�8n�ZT�1�<�:�)f�r3-p�9D��a@��j�L��N3#?�җ��'����D{��L63�"!H�"�a�U��L�G�,,�?S�Zs��[Np`e~C�i��">��
���S����b�[ZQ��6_�1�Pm�֏��)�u��.��H��9���^�R�� �bP�͗&�@�=��(��ʑ�2���������E8';SA�T}�� ����'i�ŀa�q��3��a+V��c����tbЄ�yJ��x짝��Dϰ�� 9=ĩ���@p0y$J�3.~Q�#���?X�?8]�֚�we&Mew'�b=��0��9��:V��V����}:O.K����Kym�M��=�N�eg�#m�K��:FU@{�ٔw� bA�g'�~sؕ��1�ʶ��|̫�AeݱF��PD>-��+{����F��rKu�s*���<̵}�?1� �G\�0��۰2@Õp�����뙵��_�&q�?(�Ĥ�q�jׂeќb1�F���&���6�s�f���ϿV����(���ա$��M6~�1(c‡��E��~GWp7�\�"`�(�9����݊A~��2��!�����?Q)/S���h�|�-h���3�!ϞޓN����'�� �Ȝ9���.y�eH�Ny�t�@徱ws�Q���U�&�'�ߖ9���eXS�3�[���L�.ކ�u��{fWKjQȱ��Q�8:��-a����+'���s��"u�	�Ɉ�Iێ�a:��*`���>SF�n�҆Be8!�����#�^�KR��f����O�
��� $q�DM���n�{ҕ��.{���>C��~Fkz ��	�B��C�0�x��IG�z�
��^C,�Z��$��'p��������Ik��D���Z��
�?
�cq��r<�*��(��#,:y�@P ��~����CrOH�����%OjX8�8�aO��ܖ�N6��K/��<��O�7�=��R*�_8S'�	��z����|Fa�ɏh�*RP�g�TJ.]K��f�� �)���ѳ���e7����W���ڪ��#��T�}����uE(p~Bh�u��3H��<>SF��b{�FX���!T��C
M*��&
mD����判�x �2%G9�GiyS�+�p�
�&��|��j����ڐ�0�ĩ�t&Q�Π�'�3�<Nz�V���V�)f��:��iU6�ܹ�}����m~	��U�r�FǞ�3=�k���M5꽔�Su����L�|�taȚ{m:bz.ʪ
Sz��
�q��������4��H:)�e���400W�m\m���fj�.[�5U�8���nv��RW�F3��?�0�,2w�!�LJZ���
�a�~ӡ��%%D�N|�\�Ŷm죹̦�tm��2�)r�^��(d���
��� �dt���F��Dc�'���a��`�lW�Ȉ����S��',q�"}7M;W�]D{�_7�{��6
�yl|�R��M�hM�'����G8�{��ݣ���?.!����r8��7c�=3P]����1X��g*��8}0� ��?(	��Y�|+gsJ�>>����;8�� M%����>��8�`#�`�?^pDG=g3��ebʟx�6y�C�v�S��q�Db�����q�π�d״�
�q��x���C�FYXj/���=��b��_�39�a�n�a�POo�$x��xLo�
OX���'ɧ����g�RĬc��c���� �v0m
yp�
а@:16�Q�c�FM�	N֡��%�Fi��	�1�&�Og���GxQF���і\]��=����V
��A�	��.��܎��}1>`�1�ʕO���@���GU�T��Ux�(�.��͕'D�z��0U�X�e�	<�u��k��0�"Z��wGi�eA�f��q��yh����Ŋ̷�PGU0��sl#kyB3�1��*ޫ��X��xTFc����,0L�y/�P�����S�X���� uf�����Or�&#���7^a?y^s���_���n=��xy�1�]O�V�2�3-dm�b�U�B-h�R����ښ]w{+�|}��0�q�R{Db�e1�+��lw�,o�<�B�6OCoR�B��1�@	G�<��W�g:� �gE�*:�D��"�fyo��į|�B}�,�	gN6�� �s�h���A�x$A����y�Y8������Lz�5����=M[#U��aU���a�>/(�+R<5�,�/����>�E]���8�CϠ��G���Q��;8�p&6�Љ�3�׈��qJ��c����+Rߛ8�n�g���F`Q�\'lt��bӑo��9��3
������9l�&2�NП�9'��u��	�]��y�H,��Θ��s�1�1����0���-���$5(�����D��O
���nѕ {�|G�l;�A��֨:��w�:���;�r�h��o"�K�-�b���"ps�y����fW�3)����.L,��`��!��N"��I��rì���A��!x��8��y��A���_ym���J׫(-P61�DvkM�|�X��ًn|�?I���8f`x�>!-��`8fs���c�N��;��@��;�eu�p| �p�D�Ӎ�����$={8�O�J�QIn��&�Q�l����'�7�$�pl%G��`ʨD��0}Y2Lr=�b�;8�P�u0Ķ9X2���R�^.,���[T5z0��F��c�s�dJ�p�+O��+z�t
8��+��:p}M�v��Rrgi��#���Pي3V� ��yg���Y}�
�D+jՑ��0?QnOH�bx�D�0an{BVϟ�
̽Kt8�+��T�iul��U�h��v�ea��+�#���LPT�^�����#�Az�p�8@D��Bu#��m��~Q"��GXJ����vb�#���%����Q�Ow��Gc�I�=������c�����ʼn݄Ro/���3��Q*\�S�Fw��#�צ�#�a$���;�(�mN��[z�c�tNx=�����
����G��{��t�^��G�v/V���nǔ��Q=z*k�V�`����K�y���#����Ш���4ʻ�6�0��QO)`��S)n1���-
���o� e�z�6����)_���o#)٪-�K>���a@=�y�"[ckk4�c)�pJÇq��W�~��0GN �P�1�-�q��p������z�Ʉ��c�H�S�h@�}�\�<p9��MG-��M�gQ��Un�@S��z�Ǩ�uo�,�[*�mjǗ��9�X󘃈L�@f|�Ay=�u�H`'���!�!���I��p?y�1�>�/y��yG�؏(I#�a;_0fC���|�mT��C`q6��v�aߴ�x��1�.���Y���\V��N�=��a��:�=��"����e��+����,z�-���}k�#�>���?�����Og����BU�0�j�.q�fnv����v�	&e��N�1�Z���<�2��*D8��n�v&]�Z�~n��!��n��Dft��F�!�����v����|$��,
p\�pI��Xr�e��Dv��z�qA�OX���8Py�z�>�X����L`�Nz��uzm�9Qg#q��O�B}ˈ�J�S��/}�$�?�@y=���?y�����!�R+<2���X��8�aǔ��8�6�A�e�l�re�uZl�>`��#���c� t�hDG;��&�;�ۜ����X́�<��q��:n��ӻ�dS�{��#;��v���1��݇�av�#-��xs�̼1����xPf�^�g��G,!1I�(cBa����I>~��G�̌L������
H�q2~q
�1�W�\�T�x1ȱ�ݠw��� '���q�|�n�$��{�˜d��Ѿ�dDW�
R2��y���z���X/9�k�ʙ�I<��)�Q���e
�s�2�f�����w_�,hbj�}���
�8��k(�
������b߂3��-Q�t�?&�*9�Q�P(�@~r��(��K`���c.�р2~��q�<�u����
{D���s�?/1���'�������s̪ҟ��\�!3�ʸA�"=f�S�ۃs^8o�b��|�<O�|(+��.r>s� `��w�V�j
��T:��A="�Ǘq���hȎ�`̶9�g��*}|o�n#���y�qP���R�#v'���s���m��2��1v�i��s�N��ZU�E��q�o#>F[K5ͽ�^��
�-����ªu�G
[��'	b���o0e�Y��nk<Ɏ����D^S�4���T#e������>��g�"`c֤��ʊ�n��Oa6��D*��9��b��ɞ2�l�,���������炧��ԩ�,ȋ�\��n�E��W���D��6����N���XG��V��Ͱ�D*tzK�	����,E�a��$����
��lNwMN�o;jA}��'�~r�X�����
��Yj�y?9�w*+��R�K�e�`M��2�D<g����X������S�s2N�V"��C�', /a�0���c�IBϟ�1�Rr	���Ir��2�v�jjP9�.XB�I1ֳ�������ҩq�*�k*����¶�_C���
;|5�f�V��~���}��(~�3/z�q,�#�X��j���L�]�?�55��� ����Z���u3P�3q�c3��G��:���]X+��y�]ǘ���;,f<�%�~�&�1m;:�X��p6���i��9�^	>-�=�����u�����cC/Cg��K�	�S�k=�v~�jj`�Y���Dr�y�剦[��u��:�����\���c�3S^�3X�O9n�CvL�U��z>��7��)Ӡڻ����3�z���p'��;lJ�ݺj�Lq��ľ�^�q�D7]���V�ݏ��\7�x-2���y�l�T^���_�`�U|�}��3[�w~��kX��
���F���#y����u��l(��lŵ̲�+���3�v����5Wy�('��'ήf���\�%�V�l��4�R[�)�6�Q���*%>v�E�H����t팦��&�r�c8����5f�
���R:��m�jo�����,ǽt�Bn#�g�D�=:m�3�ǜ��4ǫ���k�~"/5׵d呥�%
���b�m
�s/N?�G-�>������]�	���y}�8-+� �C�oK<���*��^q�-o�hX���,�򗔔O��,yy�t���[Z�5'����?6�juG��=#�Bߨ��mO&s/�9��R�k����HY[�f�Yc�-]�m������MV�<��P��j�"�r����J������Nܷ����\����jY�x������^\��)�9��#���g��۲��f��`����Y�l�&���l>v��s����(-)\�T�0��3M_Љ���ҫo�*	��)�>���jR�1�Vi��^b�H8汘�~{D"N=���G��%H3�,E�Q���X�,D��c��E�+�4W����ۙ��x�����f��85b�@���4�m�/Y�T_�^e{�ͺ���9��A��V���%J��G�Ρ~�–8�S�Ԙ�K<]�<q�����ġ���>y�aE\*`mY��!1,����OD�z;��i+M0�qg��@�G��	��k�y؊�	�C�{_��`��Ua��Q����U�z	ub���Of�8$��S�e�{�������q�Aɀp9c,���:����h'�ev\��Q��|Q�яp~�q�/~����yLb�Ga�YJ��R/�d��|��œ�<�+a�`���t�!��˜��9?IkW��:����?��	�$Q��
�;�#�A�#����X����"|��<��=z�9�bM#�
29�0�>P)N�gx`e
s,U�ss�����alW��s
���Q��aPg�����3�s�Ћ�^��e��τq0K2�p�;�G����1}C�U�l@�7�^y����Mk�����;6y��Ǡ'��+��L�|;���83�\��S0�7�r2	ϯc��X�B��=��'ͥ�n���5�i�s~������Ԏ���g�!�b���x>��{�8�Jr�ۓ����(�>`z�
݄ӳ��9�4B��'$z�@�<L'�G�����pRO���:����eIJ�v��|�1k4|Y> ~PQ�ΐz���P�e*���!_�#��6��,�Wez{u��Z�M8��O�d/������80^�{ʀrW�gf>.D�6���\���r}�(�T�X��z��ު*<�B�X����ag�9���<�>�M�~e�8��a�%T\owS�X�N��gijCZ"���'����#�}g3��E'�`B1�,ʙj<�>�}��Ȧz*�Enx�'�ސ���������S[����SX^�dOM�{|���/�k4�w3�k�-�5]'�/P�-�a5:���0Vk�R�nrUw�a=MH���G�2��?��c3C�T�Yt΂:RW�&��nǒ�M��1��4�4�}���-�c�5U`yMJ��{G��L�eOe�N���6�v7Y�bzH��ك;�//�����N�h�*�kjWuQ������i��%�����xG�%A�#-̾�<{}� 7��Ӕ���!��2p����m�X�Ekx�y�OH�n�+�\OH�k���FO�j�d�k6�>sYN�x�גg���ڮ�ed� !�X��d�OB�X��W�e��>s-	I<�%���G��ݼ�jC8������i�u[`�jU{[�~��3�e�_�'��}�1X��cp�p�2��{<
j�Gj�>n<0�玀Cz�֣�8ܤ�EYx�Bn`~�۔����&h�v;�&��4�3�ZEO[�f8#�pϻ�+�Gi�%�(��Xq�Q�s�@ d��̾�ϓHA}�[�tQ�c����5Uٳ���>z2�=I��|�.���%�a=�?�.���l��Q������1~�_=ЭCp7]�\@��%�̸%��lѱҕ8��2�ho���*�]U?
�1�g�N�n�k�+5:[P�Fy��+é��K]���ԭ�ȉm�[���;r���D�����˂�"�j��\����8��Jc���(��GEb~`����2�A��m�5�u�bz`�%�l|OLW��c�>dK��_g�z�«��6�e�3SuW��j���3�#r7����ӓ��>F+�dž��;L�T����5��=��̀X���q+􉩾�o�}��j�����0O���,dw��y�<�ӆ��4�"��`P�t��
8bc)��c�o9e�dg������2� �7���_���>ʯ�ĩ4��U�3�������7��]�i4����2��n�~)Ed1���V�*�y���Q9���c�}p�_��럭�iڜ�9��e�ǹ��o��܁�9ʌn
?A5!_�d�+c/�bj�F8>r�`�Wکs
ujW�^An�"���<?3�hc¸��@��6x�ɍ�C���3U�,6��{�9R�J�1ԃ�-������g�	��X�ZZçx�QgǾk��K�"g���WSF�`��q)Z5���~�0���f�{WY�y�Cl[^��`;�4���~�^�T���w�Mڵ��j�p0�r��װ��8)���[x'����K��Up[l%T˅�Ȑ[ }D�j��8�C��4���ax'vI��Us��ɗ�!�:�3^��*i=#�g�6��S=�e����D�Y�Ÿ=Ĥ
5�5�&L��YC\�&;1�i}6=�䲐����U�r6�K`	j�ՀyJ�f�>�@��ޅ��|	r��ݸJT�]�{���nX۝�ҕ��ݦ�\2�GG��6v5t\@�-\��=81��W���1E�_��|��Gj�%M���R�8d�h5)ccbmՎ2�>FQm�&E���\�;��2Ȥ(e���k*~)ʬ�*Z�0�?9y��9�[xJؠ:�[�P`7�#i�oSk�~�QH�UW��#�j�z�����ڌc�bWh��Ԙ���ߦA��K�P;3�kU���km��y4���*�}�/���߉������P��I]�y<}17Qn����GkЀq��3�B����s)���ݻ�n�<�KUڀ�'j9�Z�l�y	��)F$T���[��Hr�D�^�v�q*��<Jx��\j�p!׎�jC����u�{@<sҾ΍��j�5:Kt!z�`[!p�s�ތ|��{���s*TVL#�(1�?
*�������ĩG���$��?Y�Wָ�z���*��^��|��v1C?��;LC[�I��`��!�AS*;���=1���b+�x����
X���ۤ�{@3���"���0�= ��	e����R�q6��,TP;%�fzm�{��s��x뎦X�v���0�z�A99�b�$���>@D+�@����`��;�����1/��_vQ�����c ��JT[�^��A�����5���2H���1�ԥTXy�JX������c��`OF��#�P���*�+e['�o�[�$n�I�Z�N�K]@m�[�D^�>W9X.���ϑ�Qm�W�e�Q��r�HD�:vc�}�!4�c�U07�8#�#�gLm����������0�8R�s�/�l��җ�k�?%��P&��oI}�i�,~�]U
��w9�fEٶzV�-�Ѓ�&I3^�&w=D�e�X����xܩ�G�Rd
}�L��֭�oF�	�-B���9��j���5��u<�#nei}��Z�_�)56�&��wd��!�{:'S�|�����.g(9s
��çKS��^әR[^s�9_�v6�6[�ʒ�$�_t�2"i�:e9Ue��ݽy�{\��ۀ���jGƽ�Y��)�16�x1U��(�=:�خR�oP@���A�-6><�4ӑ�Z��2���Gg�9�>~��� ��_��6Y8o���c��=؟_��8�A���y��q��z�{m��L�!�u$ŅPy�IJ�C�3�Mu6y��fQ�jQ��3.�Y�?'��۹1L���Fl���1��מ�wm>sTls�q�������N7�YXx��L��J��2X�=�8�̮��`9���d��s�e���?IS��bU���߬�Թ��߮#{P����'�G2��)^�r��ya1@<�
��3Qq��&3ꩋ����w�3�0a�X��HW�90.`�BO��H38>B(���*Z��F=@z���g�jvo>Q��I�tx��8��.1�؛��g����x0{P��d�磮�}��v8���۪��z���MR�^
��54������#ӻ��~�QU����*������i����4*Xtv;D�T3�/�Gt
�
@�f�X�:�|��Cv
:	�����(a��?H��j�G���8�e��\(��X��
,�\�{O��&��=\b9���`9^:|��T�.�~��c{�}�[�U��[#-��Ϩ���?
�snO2���<�`ݏ�b�2���O��1��X�y��b>�<��8�OFP"�T�w��6��ׅ#;����Ixj�\
��.�;ms�
WQeQ��r1��,;�}c�X��H�@c�������i5��IƟ�%��5;ʼn�)�*;��{Y�P���y�}2TWĝH�b��hn�j���̵\v8�!P:�q�Îq���*��`FaC'r��~�<�G�ͩ���3]��p
;�o9��x�ذ�Ǭ�>$�A�.=D|�b�s�D��+6q*��V�s(\'LKm\��/h\{U�j���p�4O]㈕{C�<Ls�3�v��<}J +��%�/9���8���&1���-�L���w�(�#��Quv۹G��nݲO�~'=O�d0Ox�����D#?�D�TS������7.p��`��&Ϊ�]Z/���DmF
�_'�3YZT;%�ܹ��Ae֎6"fX��=�>���{�egQ�O����±�?���O����?���i�<2��@eN��Q��x��`2�ijB��Ȁ��O����>���3�GX0=C��3�T�xs�a�������Yl�ӷ��m�7��1��� �'�r{��#�KU���90ʟ#��㴬��_����d�E��O�T��� �BZ��(L�2x�"�gO�:3�VQ�y���#��e
���1�<��*��
�
��R!c��?C�
�ȏ�N!�D}�Kv�ԛk#�GC���Vˎ�f�y���C��a����7!�<D���PA����m��<�� h����Qa]����("?����}�
<��F��0��
�W��:G_0pf��0�x�]J��
��c�TM:���9]@#pd��v�
��ҦK���g���p0��`m��R�������Y��Z���p���ҶI�*�0Fn�Ǿ�?)�D�"�#�"*��0?�[��A�?��,! 10A"@Q2`BpPaq3���W�*�(�D�W�?�ׄ&ޖ�����e�C��!�+��_�:��
��֯���e���?�����9>���}x.��-�}����ä*�=m$DDqGq_�T��Ve�>����֑)93�+++�w���˼�LSk��!��JX��U�I
��=~?�2��ޒ�t��6R��a�H�����ҾI��DDܾ�f���=�.��B�N7�An?���lZ_�#�v�=iz��
�����/G��#�KkKk�F�%)���gЅ���un������{K����$6_�$T^�����x�"NƈBT��X�$<�ޓ��(���9�_�4�GZ����S,�eX_�|iŪ[֮��"c�X�D��CtK��g��D~�'�b/ɉ����QQȨ��o���2�}��1��֫������X��/4��?�&Rꢿ��]�izm�?aSg���YީJ��L��œ9�6,�9�d�L��l��l�ŕ;d2����81`Д��-U�Ğ�wHI%8]u�*�$rH�6�9��M��	�����,��,����,x��� �8�2�!	�P�hTt���쌌���������������������,��,�����,��,���,��,������,��,��,�������,�����v_���:::��ׇ���&�+++)Y�	�R}�N�ƿ
��VS��{�DDDDDDGBB��)JTU�|)JR�?���y"�
����i�uB��˦-�%񮅒FO~
����p8'�C�.�x���Ddd���-�����+��������*����)J�����
�T�7K�%����w�'n�!7�MS��I!i>ʙD�z/~_��� ���m��ߊc�[KU���U�Dz���j���(�eb���ttttttu�������5_E�F	R|T��B���Nc��	O�"t}�=v~Gr.����)x�䉉׊��>4���B����I�S��~�'��^)v$c)	��o�C_�BF!JL�To��������~�O/�-/%���Q�/�z�ggggeg#�ɜ�ɜ�͜��g&rg&rg3�ɜ�bȥBt~��?BB]	IRX�'��d-O�xV�C�K�7�͜ؿ!����~��"?QгH�sH��'�i�iah�,������F#� ���}�^5����G��j*e)W�'�ݢ�4HKOK�?~��1�ׅ�++;?qع/;�*]vw�_�.��~�t}�x�q8�q#Q��%�&R��Z�!Az��D�����&��C�7
����~W�yҔ�%/�/�c��?^X��O�$���^�"��̼�:o�X��P��z��e��bd�"��	m"	k�8bpGpGN�,�8��B��YŜYŜYő��Yő�23�8�&FF`�$c�~S�K���R"��O>��L��R����y-1xc��e�B�b����z������3Gֺ1B��т�����!B�ZKP�8��!�M�m{�/�?^8�St_�Qk�G߂D�C������^FJe����k'��_D��y�{3�ĔF~��!:?��O�r�!��FFFG�O�/c��9>�q?�Y~�#�?7�/$�S�?�x�/}���.�3P^�ٖN4����KYz�2q�g�%Д�B�`�M����)JTtttTTDB""D�qD�^��%�d���~���,����y!���訨��tMj=/}�ٛ��
S/g&��'�ID���y-4�P�8!�0��н�������|�FB22��226qdddgdg�;(��YYYɜ�L=��BW�{��% ��ttd/�%��DDDDDD%�DB	�/b3HO�!vz�*?�W�(���/���G��!�zf/Y��9#'���9�X�+9�V/ɚ�k��3��&__�����b͟���G���b���L�N�?Q����#g�:,�b�4rL�oa'Hi��8�4WFًj����,��}qbŋ��Gqg����5���\��ŋqd!B	߂��!�f�$��B헸�}��O]f_�e�Z�WqE��r;h�M�)��a{T����FId��KG��F8L1_W��ؗ]���1D�I	TK�]#/~��Ǣ�U����������������߂�����dXKؑ5DПbu~�E��d�,G���֗��!:u�V\Z���"H�$) �gt~�F���]ы��v6tЗB�t%��c��؈���.�Be+(�YJ��V�p�E[�����v��im�~�c�g�&-⯾Q��=�}�Q/��g��^������h�����T�WbM�wJ�?����2q�/BG�����B�b�O�$DDDDDDE���"8��!��qB�/����1m�^	.������LIC�FYe:��d��������~�e�|!"���?ɀ�&'<���g��Lx4\E����r�Y�r�Y� �>ˍ.
Q�.(Y�r��,Z���,�x�3���� �����2��W�/�x#%�(�q�/SHnز�a�����r�G�fJ����������Db�ELx�vc�g�iQ.��b�!,�/�1'�G�ӢO�ʼne��	?B�+D����3�BN��k��O�ףߔ�2N�Y�TTTU�QV��dbf_�t��#�=�x�F���������o���/����	�X�Ρ�(��*hQ.�_V��L��.$ű�D�"8�L3�_�3�%9%����u]����JR��)K�R��)JR��.�8���Q��(�(�(�(�q8�(�J?����&�h�=a�鬔9��-t�i�\Yf�=�� ��ֱYZ�L��#�y��C�hO�J5���8�׬2�]����Y�<�rF����^�M�w)�(�p^���)JR��7ʔ�7_$G[���3SV!f�piޒ���ԝ]䄓GD����dbBB[�#$8�zY�}F�BK����<WEFM	�r���lM��1dz��2�sBtMF&��r����e?ȏ�����&�	�B��!>y��##������x/�}
kp��-#��� ��g�	�+ebQv�GIQ>L����L��eb�Ʀ,��PM��4&�=Ff�Ho�����#ה�!ߒ^�d~�������;;;;;+;)|��)J]Qz~=�ؐъ�T]!8Z/��-#�i<Rk�K�GI�,Z�_J68�/b���z�q)�Q4+(�]�
�2�MD��b]��2�#;�������Y�9�s����1?U������`�x�,Y�����G$rG$rG,NHY"��0N���Ŝ�Q��9#�H�H�H��ȫ|�Q������������(���%EEBh�MB�im48-�zB��7�����=�ix��v"~ӅfS�#�N����9�#���z'To�p��^�X¢c����X[ђ�N��+�_�S�!$DqB�-5��&FF$������ę�����1"?�O�$�(�(sI��#��"!c�8b~�$��L���NJg��p�4�����P��!��нm��f�9�~,�G{�0�$d�w���^ƕ#R��^���ݬ^��&/di�����Y,����͢e�HO(%�#��Bd���P����w�I^�g���{�M׎L���5B�Z_/�/JŨ$A�,`�4����wK�m�Ж�&����1KЏ���������#%�d�1�lq%�R�bآ}$�+�?k,R����x��>��EH�p9��9c�q��I{:�Ǵ3��욂C�L�L�tM���$$A!)�^Ǐd�D:�uK䦮�J--/���U�ؙ�׊�Zzi���1<�}�6؞K��O"���|W|��p�L����~�g��qGN���8#�8bp�x���p��z�-�=�,N'��⶙�!eK��]	����rG$-C�81c��C�����q8�0~�r�	z##t�O���N'F9v~��I��8���#���%5��y!�����"�eG���i�xq���/.'H|Q�خ���-/sD,G�f8�rEZ�]��Q
c�_.P������x!	k�v,DؙJ.бlu��
�_”��*������t]"�T'u�l����!�T8�5�HF*��ؼ'��sX�Kߒ�FRBpn�	�����rO���e
�0��|�� �_Ĩ^=-qL�	x/)�5NG߂�fK�����"x�c��]6�2���j\a�q��4����H-�D&�J!|S��-�w�"M��_�������W�B�3�##8�223�_/Ķ�Qޯ�QP�_%�E���I��^SP�I�3�~�G�&���TB^Q�H[���!�+^�#�i�E�$DDZ�Q>������Ƚx?~/���`��N�QJ'�Q��H��eI�SG&sG4R�E.��(�)J]"�I
eG,W�x2�A2�j��)JR�
�QJTTR��{����$_�R���2:�&��O��b���,U�ebtV���(�.�.�)ȧ#�G5��9�uB}�&�b{�Y	U�6�M�B�kw�2����N�o��)���²H�rG4d�/~	���)JTTQ2��҈��B���"	CZ�����%ЕbI���ɜ�9d�n��S��P_=���!jx"�x]T'���L�؛)J]&rEE(�i�G&V˪�|,)^��z�)D���/Ƣ���K�,I5qBB�Б���1!��8H��"�:R���k�PG�1x�H!>���b����j�BU��BPu�	+uc"/{R2*S�SIw��Bmn��M������c���k�8!b�Вd�~�]�ޓ%>�^������]	�Z����H�,E�eNi������kЙP���Y����ޫ�����t��i�D[}i�'ײ1�D���Ļ���A�/G��#�M-FV���E�����b�ixF!���o�Hue
вt~�	���)��=���TT���Yz�}�Y�ݭ=%t���z"f)"�L��ji$6�{��{Lq4$���8&,R::�����}'GTM�$.Ї�h��eZlM�K���Q��e�QS�qHPM��舸�e�qőnt($�ĩ��������*/b}�	
&���NĈD%�����q��c	�$B	xO�OƲ�6rbe2>ʈ�	�]"����[9
}�z��u	�X���rFM>��Q�i2�8���7�I�8Z8$��Vrf.�.ؙz�HEդ��-^�54��t��|!B��d��!4�w��DЖ��K��޽��{��:*+���]%����ZB-$?z�J2*qDIih��؈1!-(��d�_���12Sid��DL��L� �Ą�Z��D��8�mmM�xB�sǡ锥(��elCBzHh�,5JF�$DLⴵ$g1"N'FG��jijd��L�<'��B�찴K��M%�.��]�x�%�FG�����j�L{E^Ux�:p~��qGE�!	4�˸tA.�7<�<z�����Zp�[^Kiw��5�{�\�~(ZCc؟�>�%�O}�~/Xc���N%i��4N��л&�¦��/�{_���P��&��5�R�U��]�z:�Sp���!�q8�����!-�ޔ�����^��%I�<�)�L�D�9"�^�v�H%�~u����D�K��h�|[9ix^�By%�����ļ�z�ۆ�Y!䴴ؽ�A-tXrG4�H�1_:9�
��mjk�k�.��h� ����<`���gы�	��QP��H�H�z�)J��D�Kt�h�K�j��G�"!$�R�1DV&��i�j���VVVVR�ŕ)ɘ��$8_�A8]WNE+;)D޾�)!��$&�L��TtM����������G&Vrg&r)NL�M��_�pZ���D!7Mw�c�����	�N��5�S�'�'���<�P[��I}ώ��!�蕓�P�*n�/���B�o�B"K�xA/�x��'��!B�8B�i��k�x�/�i‹�T�R��:>��:ۧe++(�Q���d�.�EE/B쨥������J�1n�^PO�=R�PH�]ij�â�/r)JR��؟dE�bg�tr���I]�%��A*I�Atr.�� �	
�)�XM�b����&���DZJ�{"L�,"D8�2"(&��$�z)X�*C��8�u��-8(8Q2���;t��藲i2�P�L��L�H�d �ZI�؛Gl�!��qgFG�>�N�BJ2	BR��$*qD[_
�&��Cɉ�]?ZKÉ��HKU!4�XZ$ɤ�9pZ��ZbL�8��В�'�"D!Ɯ:>��S�8�,Y�ĵ����}�ģ)X�9I�v$���ɤ��;�gvA=%�-�'����R]�E<R���E/eG1�H<�0M�
��Zx��������&��#���BJ��[�K�X�""bDtB��1]�����K⍊�m��BÑޒ�G���)�N,�ؑ�+T���B��	�.Г�{��$T_��VR�X��eb��:""!%���!��/�"�;�_$O*���t�B�9��Zi�"!%���R9	�/�߂���—I�!x�TTrb����D"W^�(�L����bO�k˳���·/'~hB���ŸMM��>�5	��)�I���]G��%��VS�B�Y҈��M-]Bx�xBj��.ךL��~?��"0`p @P�1�����	?�+��s�&ff|2""#�fg�'��Ӱ�ɃH�Ƴ�_���,ᜳ33���o�8��\����F�2DDDDDn�,��338g����΃�|gA�è��>����.�".����5���6GT��S�3���=�DDDDv��""#w3333�޳�L�.Y�S'4�3�/�g
�C���&�����M���呼�z��p9��.! 1A0"Q2@`BPapCq�����E���_��T���H��[��_��D�yW/���n��G�Vr/��!��s��J�j겋��Q���FK�c�H�ēhX�"���k���Vؓ�G����^��//�"u�ʼn!|��a�"��Q-}�#�-�~�7_�Q��
����ؼ��S&'���r9Ľ���^��}�M��%����T���/��m�3O��!>���2S!>�JĿ��o~+kk�Z�"��Ŭ�F������M�C�����м>�z��Zu��v�R�я�tuR���	
"Ѧ�ߍEB�ʯ��TX/�o�n� ���Q�__�2j1y4F,Y�iR�I�u�ؐ�^&=��~6pgp?���Y���,�p8Hq&��~���TH����-�,�Pm��ޖ���F$A!����8�J���X1!$_�Bof,��]D��"""""8��8#�8��8�b�'���d�)L2���_.'�L}��#�����4��+93�92��̎G"�Z$ؐ��I���i�3,���������_"Ȏh����������Y����9$sG$rG$rG$TTTT4��	��TU��������������������H��H�H�H�H�H�h�rG$rG4rG$rG$rG$rG$rEG$rG$rEEEB�����/b]k��Q	���	ؕ>e6�4�������v̒^��:��YYYX�YYYX����DDDDDDDDDDD[�SSP�!Bj��������������!B�8���	iXc�L�!8TTTTg�Y)���ؿJ��X,����j��G#��^_��̱�TG�T/%���/FFFM_8M�FFFF-$�<�FB=��!����M'߅�(D����vd'��Q6&TR��)K���~��93�wp�!����ŔM#�u�E���yDD(R�ꔨq�BJ
n��""!�R�2n?8�؇�<;�]�.΅��#<��BhB׿8������S弈A.���/����i/���YX��~ϲ�w�JŪ���)JR��E)J�R��������������iii!!���S/B�f>�t�c\����Fvw�"	vI���0_�D�O��1�x-/��y����|ׂ��������qGpGpGqGqGqGpGqDGbD ŤR�LHk�1y��_��c4���g�k���������W�Ñ����d/�!c'D2��Ο�#�H�������jQb�B�ZK��~��B��xTrG%��R���I���S!.��І!���C}нx]�h���K�bqDĘ�`L	�?J�7�""!%�B�X�B�k�{���'���b��cL^����S�	h�!d,�G߆E�B/{Ⱦ�����c���1^�?�{cQ�����ᒘ��/��K���Ee|Jˑ�X��^�Oش������H~̼P��F>m��3kԤ1]�>�Y<+?#?.G�������#�3��H~D~D~D~D~D~D~D~LNx����'<E�,X�9`r���ўK��e/�И���Q�υ?;?���柅)J�TU�����^�r�v'��?�%��0�{��q���L�9.̙��E)JR�ꉔ�)NG"�i�WH�c�c�^�r9%���q���P����R���^�R�~���k�=���9ٗ�	v5ޗ�!�0�z��o����˧��>E��gȪD����r9�R�K�ߝ/���x}K�x�|��t�<���?{D!B^��B�^/��h]�5�/B��Ȅ��O��ߟر�z�}�/������%���ddddddgeeeeebe�L��Z�~�?Z��+��d|�⅁&>���}�jP�B�	N$dddbZ�ddddbS�u��c���Q��^���͋�KU��?�C�?F_�u��f���}��B���#�9!d�H�R��舘����DBDBH�d��ğ�m�E�Ū|��m��X��JR���_���Ebl�œCtBp�e(�k�~��!��Z�Uk���>�K��&:^ϓ�яx	2�q(��1D�p?k�
���������NJ��Ǝ��Ƴ��LN�pBJ�8���D��%=z]���co�(s9�ӏBT�����$8�ph�b��Q8s9����!&�%Z �H�,�JR����d}�x�y?E1�e�!��!{kH^���J�0�p�?�
QaE�c��Ĉ��
����EPƬYRCo/Q�Rl��ek��UL��H�M&gJ߸���W��Q�ۯz�����N�ttSE{��~Ύ�u��/d��^���������/^д���uYD�a����IOk�:^8�:a���;�,~�K�"�i���э]	�И�$�L^��I�N���$%�98��PyQ;�$��.�bjA!:�L�r�����&��iR�&�d�����!Bh_�#!z��=�H�8$D���7D�`���i��0����ZD��(��RB{�%:ꪚ"x�q�!fY&���u�C�#���.�M�^ޒ�}�K�}�/ZXd4��謬����boTL��	����VR���R���+����^��b%���
	�˜�Egt�	�Ï��UF�h�	�j>��zN��M������ӆg��2�Xf����8f%���ǝ8fp���?��&PK%��4L�9{8dɒ9Z<2ǝ8f����v���&-�Bx��w<�QQQuJ���п�HFB�v}f����_($�~I��Y�,,n���/E�>Ą�m���o�M�*b�2�z9�����9c
�*9!:rG4вE�"�䋉�EL���y26.��*~��|��ط7J_�	�5B"""-�Dt3��G$B�!�ByTTT3s�a�Bx�>9�]-�z/Bu��!z��&N���Ъ�Pȑ�6sc\��m�)�vJ��8?k�!�hY4���k'`�?�pȑ��o���tI�'H���BsWsS��!B�!Ĭ������������YYɕ�]B�Ĉ�/��YC�K��*���g�b�ÃB���Y	u�NZN����;�Y/�計s�!�1�s؝c˸'�Rɞ���I2#�1C�%�2�}N�i+:�k�_���_��!Bj��d!B�!B�ge~=��������������_�|�_J��;~�Մ��\L>O��bfK�
�����
���eL�	���b�6C�Dei��!!�F�Ĝi�#�#pO�'�K��s��&F$ؓ#�J�ӏb�3���볲”�T�)JR��)JR��)JTR��*********)JQ{���'�"]�"�M��غ���7D�0�Kٓ�&b}	�޾�D��)�Bbȑ��ۊ4&��]����8�DU�L���[b��i�_j{��}�!�]ͦ����<o�.���u�t8tBk��B	�!tC����d�=���Im-1!(WIX�2�f/B �<���;bN�v%�b��D�x�j�
u׾���+���	Q{��V�F.-��I
3�������8dp�ᐾ<���9��3��<2GqgFFFFFFFFFF/�6~<�Ǒ�#�##8�qh����ę<#####8��G�H��E��Xdp��Ń#8����,_�% ���Z���tA-N�����?B�	!C�yA:T)�N�&��	S'�����d�䉗�<�	
�!{BJ�O��}����tXVr)i�i��R�1;�TT�H���9#�***:y$sg,��Y���h��#��L�ʕQ6Vr�M�&V~L��&e�$,_����c�X�/�7�f�lN���śLY�w����cu�K�a�h቞	z���a�^S�Ы1ŧ�+��?G�z���T�1����q���cI�_i�X,�bx�&��}��T�t�� �^�sEM�h��R��)JR�I
vC�z��0�"�EL�qk�X�q���lj	�śC�HH_֒��I��(�����Ŵ���е�D�׎�SHN��t����X��Mz�d˒.O�!Ƒ�.�<8�,�A`��N.�2E~�C}9Ng.�&��UjH��������׳7�Йn��Qd�pY8"3/~K��HC��OWQ�"G�p]AH�I�ZAxQx#��H��"!���/�(��"\�G������l�ś9��g&r�Y2�(d�����c�k��]����=�җZ~��	!b��Ë83��I4Nƺ=u�N��/|�9�f�j3��Y3�9�G#����$f��4�0��!�4T?b����kik:q84�ٕY.�YX�Y�f_68���/��L�+�t����2wa�W�4<�1��v�]-/ҽ�KS�k�1YA�Y1t��m�h��g|�,��SH�O���W�M�3,���8s��e�^��B����|���D$���Sg͜|q�=���D��q����M�'ؽ��lH��X��&t�,�LY3�L~�P�rBi�(,Q����_߂�Yi�����2py9�p�����6�L���$Ξ�ˊoKk��C���]���V=,������=�Ly��n�������/�����/	�2_�Q3�q1��IdL�ϙ��F'�ˡ���/�6r(���^�}55�-/�QR*KK�OA`ߨ׼ec^9�ؼ�_\�P�HM2��46�k��'���'���?T###�)J]����^���~ǥ�Ɖ�}	����׬���1H�x����ꉽ�6�::�)uuQD�~�"����$BSk�/*VvFqb��?B�I�X�~���!>�S�S7�&A�,�|��ƪ83�8�����������$Ȉ���$�b�푐�!< �~���ƈ,���!�1-)Hqgq8��D!�B
�j���BDZv_��T����{��|�uNE)ȢȾ��꿽R�,qM��D$DB"vDBXR	#�"�Ѧ�ؓl�,D�\+�H��)%�H�'pe��K�J��Z�l��KI�2�1&F&ZVvF*A8ʞ�:�%86qd�,83�81c�!�{�D�1�###��B�bC�tR����=7DC�b��x�,�(�eH^Œb,9(T�*Hɶ^�\Bd��~�bp�I%�.���"�֓em	�H���"jT$�/bGZ~�m��B6qșN�% �8�I��A&AaN��	-$�5ЗBB�)�"	vHM�!����Y8�ppK�:&7�V,��-?�YF���5�^ȴ�_�?�4&�W>Ĝ�3ސ��ǯZkM�dv&d��А���B�?��Yz�Z�CZ�E'g?dm�A��Y:;�9��q�[��r���$WD�ү�UV���.�:.��5D��)��^�2�君���D�Ͷ/���lY�FM��1T�o��.��D��
��vRB�3ؘ�5��t`�2M�F,2#��d�%#G�}�Qi�t,H�����QW�ϳ&�Ԣí*�#$!�i�R4r~���%�؛~��/B鞅�$ʲ2]�.Ņ�O�M���C�[�`�L�	�����d��,/d�T��˴Fؽq����M�`5��"��3�hI�$�%DP]�$H�Е���MtDDtDD!>�$���MHD?�HJ
�'�$�d�d��	3*,���;ף�-�T�;��uz�e�2L�Q�6���f��n�~�ȍ�!_M��BO'���_�?R�7t�����[�BD���!Yrd�痡,���G���k�Y6F��#��"d�9!<��r+1M��!r4.F���쑐x�F$�:#+�7�M�b���b��+բ�V2�j��V���3���K�]r(����*��ThK�X�#�	��8""#�i�,��K�{&/��d�
��Z1t�+�W��ؒ�T��<��.���X,�y`���I��$uD�q8�ƾ��i�/��%A$(ƅS�'�
(�Dd�ĺ�$4�U�vI�z���ƉB�W�E�ȢC91:Q��)H����/��DC�Z�	����/�PK�.�D��b�tJ��q8�n�E-)_�ɑ�;ghY�"2�$�=��LM�R�R"!4ZR��J�(V�����	�$1�F��؊�DQ1=�ި��Q`��d��b���E��E���I!w��NE���$�{��[BDDDDL�z��,`�-Z�L���J(��7��,9Q;��)Ȩ�r9tr-(�G$T'����QV���Q�_ׇE�e�.�E�g��.��t�lB��&�B��Q�����Ğ�D�"	MQ��N��Vre�&�:$1!�'�.�'��?v���)��5an��$�!wt�5Yt��Y^����ɕ����"�&J$ƦО�E/B�lM�hB(����sS��Ez�k�VBj���W�H8tu���JQý�MC���ߢ��D�Ļ"�E�K��z�!5ߊ;��b�ktZ��r���E;�OTM�Qx!x!HM��,�D�2(�&1�}WI�]}�E�)����z^ϭ^��+9���t1�-�c�}n�D/ea]/E��I�H���C]Q*�bG"_c�z��M��^�^���R�B�e�^��ki��-gHN�
��R��}��2�1-�$��F,YĄ ����~��W�z�.��TU��1=b�CǾ�.	t%����+�$�Н>��1Ŝ,��wzL�)F}�qc�{Z�B� �BHˣ�f*�Xr(���
&!�.��){=���X�ю=��+�=X�f#Dq�Y>�.��##�`��4еao�e�"" �w(��&DDqB��l��b��"""(���I�,_��~�z��␉N��(X�"!/
�E��at���`��ȡ�Q�P�G,(���(H�X�b�(I!$D$q�BBZKt�hp�訥)JR�R�*'E�o�GDDDGE�5ut���LUk�_�z�G���_
R�wkʉ�x_���Z캥�ɖ�Q2���iJQ2���DzH�zKVi����.����tO�*[��_
_��K�R��WƗ�R���i����X�N��P��	���Q"B#d ��%!q&�6�bGz�/*R��i-B	H�S��?���(DB�B	n	��Z�hH�]#��Q��
�T�)|)��c2�1���Eee9A115�G/�Y�dbLI�P�q���TR��x�B��^!1T���#$���Q�HB�Н,=�i3�e)h��Ng�+��r�����iخ�1�e)K�O)���S�qD�qI�Wˆ�ec ���i"C�b�MC��h�Z��•�RI�7�rEE(�e�+!P�c��L��j�	�}�G�$DB
�A!�i
L��i�^W�~���R�Im8rm��R��Tx�"6A.��‹��E_T^+%�Y^�����!5�Z�e��OSssI”������#��?�MR��K�m��Kí�ഐ�&���E~4�Z����D&�15E�Q	S���I1q�A)�QW�L�KΗh�U
^��L&�#)J]=O�XrC&���[Z��I{񌌞	�}I�S��h�Q������$A!�'�/�䇻�<#�K�?ֿ�Bp����BLX3��+.�"�5��v�״�,���E��OןZE�[Z�(��!ji2��_TQ����x��ZQ4.%_��HX���H���*8�S�:��"��SBhq��"���W���! 0`p@PA��1���	?�A�#��5u�N�""#�Ȉ������ffffg�"#��:��j·.39gC8g��ˡ�ゑ�u�&E���#A�0DG0:T��z䯎FMf���,����33333<��"6�DDl!1���L�r��ffge��|�e�PDDm�8�+339fffffyy"#'�0F��3Ч�""0��&LF��5���>��Q�d�τϮ9�켤��9�<�����/0}�#��7�����themes/images/timothy-eberly-728185-unsplash.jpg000064400000203056151213255660015400 0ustar00���JFIF��C		
		



! #'2*#%/%+;,/35888!*=A<6A2785��C	



5$$55555555555555555555555555555555555555555555555555���8�������޲�HP@PHj�$�	
������yV.?g]n]M2te0�����U�܉.�sVN��M@�3�Q!l2b��P�b�-Pd�&l� ��Wb�̉*��3(�f�R�T��}.D�ebl�XTb,J�f���
 ��I�&�@�@�	����b�%(^Wi�ֹ"�\��[�1B���gN��2K�hɑe�N���!,�3[l��.�\K����`���J�.P��]�g>JL��br�Yo�J����2�-R��IYB�$�8P�
 
		P��@��l����٫�D�1l0z�oCZ��7b�R�f��a�6a:���Q1in��`���uTE�4]ȷ��Z��(�;�FMZ�DزI�2b$�Ԅ��k7I����	����rԩX�KU�js��� �
�PY�$�%BB�S�[��t�.�dj�oM���,H�3h��K����ǵ�]6H��d-V�jvV*/QL��ϩ22��4�Q:��s�3��sQ+��2e���A$���$+,�KpE�U^�EE��V��},��5$%�@�B��$	%d	�j�v�R�H�[�Y��u���L���n}gfu�
��Jع!�+L��EYb
��lM�F�٪�MBQK�+���cA)C#�0䲄�K!V)�*�%J�-�Am++%��K�ԑ��s|���|/ҫ���}�� ��� H�	&�tխ�B%��M�v5M운E].����v`Z�/ H苚�l�"�%,	ZP�3i�P�غd�X�^Qju�Ny�Ú�Y�
��\�<Y�Zň�ZAL����EX"��)��Ą�-K�_Y��yh1��Y�g��@	$�$	Y$�;wv���V��P��k���ף���eՙ1�K��B�kk,������SE�T�JA	���!v�]:JU�-Ι5��Xb՛+e����x�V���
�h �Z�ADZ��VP�7J�S,�\�yh@Q`�!l�$�*Z�{��n�*��e[;u���l�6��7�ƘfV���y�j�V�y$�M�F�-���꬀5�X�2��,Qb�e��L�f��Dj�k*X�s��3��Z����a+����e��*�lmJUYc*��@
$��d�@��&�:�u���*�R+%��kZ��	�l֌��cn�FZq�j�ղh�dI	KkSV�������(�Ǧ]KB��=&�*e��zD��9N|ɕ��*�@�b�4�[Q-Q8�TR/��r��T��5�@�$-�$	�I_t�t�R�7֩$��:1zs�=��)cr�b�ɑ�2�-���ZBz��H�R��S�w&K�(��ϩJ�Ar�K3\����I��SG,q\�@T��KU���-M�QAR)*�Q*V.;R�T��A@ H,�@$��$�����ZJ��zjkBʢ�:{��.����3a�*���#�e��K%JTU�ڍ�@�S�+�q4���f�^�y"�/�g��siy�.e9V
��[M+�j��h��R*�*���7R�"jL|PJ��I J�*L�h�,ۣZ�:9�Z�׵��q�5xvf��0ܓ��pj0nPA"�J��b�JM�7Uq�2t�3�蚰���X��wnp^t�4��VIY���@I4�e�Z/chQ)�b�$����ʭd���@����� �VY�[p�����o�:��vU)����t��vZ2�� L^ZЖ��V����-�(ލT&
EjNY�rƙ+H=&�S���s�HL�̩+m�HUb*KS-Md�^����.��jY�V��-�y��A �A$� J���4]�RHuzu�O=:���,��B�#w6�ץ�d4�J�#b
��6��J54��s������K��j	6�LԊ��f2\��-r���A�R -m�"	m�����Z��)P(K!��Ђ@(@�$(P�@�%B�e�k�Q�>�Y�Mj�5���N�^�:��6�tu9��j/�@"´�^%iR*�"5sV��g��n��Z�5�gc��b:I�Vvp9�a�9D����� ��[AI$��e"j���qR�6X�V �p<��$�B@�$	YY
�M.��w��j��r{j����d��u02N�=�F�n�,S�t:	l�V�J ^�lͫE�TN�,#L[��qj)�%v�i-+2Jg��\d���3�/�e\�I}����<���@N�z��Ӹ�ϛjaXзE�(
@	�$	YXfVI%J��C]�멦E*Cn�bf���Ք�pך�]E�����$V�Ce��j*�&�I]i��w9�*���3l���^^\�̗8g<�/1iq�ԙ������q��F9�DH�@��Ct���,�0j��`� 
@@H+4i��;r�p	%d�N�+�^�yv�z�[�[�km��f�-�d�Բ�$dYke)�B�x��&�0)�ɼ��6e���W��K0ٸ���(�s�Z�WiLЪ]]j���T��^B,[J� �%�lJ6�Cl���.�,��� �B�@��.d	m�YIY,�k�����ri�2�L���Nt�b��n���yWb�"�pY��,�i�̺�jY*+U	�yϦ[fvmk�^��r��l����x=��dX��
֪�^�D�䥒�EfR@"���E�A�#�um�Y�=��
 �}3������}o�Lk�zvgkQ+Nu��MR�ӝ�WW�u��j���A2�ͮ��qu`�fJF�j��z�+l
���[�؎��R*�q��k	�l跚DfF�� +M���2��fhP�Q�T ��(�
 �Τ��]�S)�\%������� Hn�uN����u3ыq�͸���vw�*��m���)���L�/k��
UX�!z�X����0���j�Ҋf��\;���C6���(�ntM	d�\�r]���֖R�Ed�L�Y���p��"f��	�+�Y@T�T����h��
գ��(� J�����w�w�.�X�˛��Em��.��ҿ5�㥊�E�頴�%����f�����XX�V�U�#Mx^�Y�X���g��Fj���KLw�VV.h���Ma�b�rM]���Z��ed�Jڠ�\€ "*Ūj$^m�irjV�@H�$�Yv:�|ޖ�.���rz�f�w����ӥ�b�.�MMZ�,$D���M�E�Uޓ��Z�>�ݝ���u���js7�7���薥P�A`�ꛞL�K*LIz��6RK*쬋��I6ڊ�W0wl�%d�����(�<�Q�$�B@�$���:�7Γ2\�̷f���=�Cf�j�u)634���d�r[���s�HL�K;Ǭszbѭu�Tc�}��&V�T�����|qz�e�X�4�-ͩb�d�Y^�VZ$�Y\d�bt��U+��$������;K,%��-	T�
$�B@�$�[��S�WVm�N��\::|�:l�d���r�.�J��̝4Ī�g�6su2Z�>�]cvu��.�z�<�^��b�Ƴk>o����P �r�ϝ��b|��|���Qa��Kt�edIR�M5Yj-��2��HA$EKY������%m��$�@	d�Y�jz�Ԯ�u����7�Ι�9-�ba�ed�̲��[�Z4
�d\���t�z8�]g���7��ٍ�X�xg�…R-N��z�L��d�eM���Jx�U��H� DWJI}l��+B.! ��&��jQY��(@ �H*HJ�a�t'~������s6Jɴ�.k[o����M4%p�˹2^^G��F��Y�͈i	��͈���5�>��\�*�P�XR4�.����Ʀ���R���҄��t���Oˋ�u����DAR��%B
&�DE\�RDq�P$�M��+e�~O�zx�y���g[�����þ>��b�Z$�f��֬�bu)Tآ��ӛf��.=s��tjNLY*rzs��vmIel�h5[d�5��ךd
��Y���X�VK��*�1&y��<�4���eBI�V"��b�b�b�D��al$�I���
@	Y�
�V,�k���|�I]<�δ�iz�i�:�繳i�̭MX��ϸ�WH�x��D֜�*�|�^:f��ZPN��X�f]㓾X��v.��{���#���R)uֺŮmXζ撐R�V��͌�N��43Y)dP��@�h��I*�J�(��Ud�������@j@�Y�+�۵������sݛb%�ϫ����eW&�����CD��s��+S�v���>�:�^]T�#�[�㹛�F��$c[�NS�Q���g��6����q&��44������Ź��撶jUܪU���]uf�\h��T��Y�����(�A 
A J�,�t���s�9�ߝu�t��%fX�Q�T�7KF�ՄT���ӝYm�땭�gZ�<�~^�e�
����KoJa�a�1땢a2��ږ]6�q3�M'Uٕ���o*5ϣ:"�\�Z�&3�,���.}e*�-:�ɞ�Lki�L�MC4EYTNY�.�[j�+�
$D	����T%�5g�����s�l�ט��˔T�[.�`���p�'/u�>U��zk2p�r�yݮ�;��O+�����]h�3���ܜ���Z�C]WHF�da��u�VMZ���ǧ�3M����Q9����t��̶��%�9��K]��nlΈ-J	�J�Tu�TZdD�")�b��x�A@� �!hHH^]��y�{�}ޯ����r٥���9v�~�=,ފi�ՙUt�\Ʃk3�ޱ���k��������׆�d��˾V�2��B�]�M.:���5�Ueei�U�J�r��IgF6�g.�7��ڙؼJ��w��蛔2�9v4�Eӡ��������b��1��Vʢ�)+��D/0��(	P	
�$	t�g�^i[�v�{z�{v�Gc|>�
�]�{`�vm���
Zh)3T��yn�N�=9�<{������sr�b�H�NtUgO:M��I��*::��.Ue,��k��V��V^�"効��ՓU�hc=�Vmjk�v+噥\e��R�ܰ[X��*���T�nzM�D 
 H(HA +%�[��n^�U�ݏX�9��'����d����I,�Yc!t�=�qzy�.ro���{��_/����k�;��<��nu��u.y�z^}��]g�����:3�ˬ���N�z�y�vu���K�u0�ZS�
��ćk���'X��
�Cl��ﶴL�s\����J�0�-ec:�JH������`(@��h%BIY��-��:_:S�7����9u1�I�B�=[3��y��9��/�|���ZjQZ�fߞ�.}��8#\��%�O��D���-��o�y��w\�}���c�����u�/�$i��k�g޽�N��Ύu�s�΂��0�ϼBm����i��s�P
�GFIT�V�*uF�i��`�,$�VH� �^  
H�!A+ �J�8�nZ^ߗ�/����X��Ǝz��eӡ2C�y�3�{s���y�xszxӮwn����t�;����/o����g��
΋�H�럨���s��9t��2�ۗ#�=�\���c���g+y����H��:#Y[hor�2��Z]��8f���'F�Ң�&��JєӚU‘9g�p "���� �$I�gk�$�	Y'==ϋ���i[�]?��y>�9�Z^��b�yܚ�q��i���t㗧.n�k�{\}��Ǿ7Œ�?/��wg�����z�Ӯx|ޏ�n^��&����ߤgf7��Ϭ�wʶ.�5r�e�y��m�I5��˥Lny������B⸛p�)�]
�,�*��IVƋ�*�svg+Bc��(tR�J%b��@(�($�AD�P�@�e�Ϫzs�и���t�uю��G�����f��i����zY�՘��M���y=|��ׁs���َ���e�C�k>��/K��ng����?��]~}x�9sw�|�������x٩�˃�t3�z���:Z�+&�]E�����YsY�y��N�UK�]�52�7<�&���y6�*ȫed� \���\�^ 7�`H���$������n�w����u��ߢ㞻ɚv�=<{���7����1�'���F2�\iq���p�y3�����G�[9��}�y�����'��Sy�[����N�O��ď#�}8���q�BNl,ҷK��u�54�٭d�po;�qk9�7�oCL���#Jٯ:ũ��tR$r�k=�؀D3*�H��++
s�jf���z�o:j�� 
$�u�ߓӌ�*[gO�_Q�����^�����iy���9�����w���9��G����伴��7�?K.��;�~�@������]�z�o��>���/o?۞���7e��s��{�x���r�����V�����6���Ef���6j4�5DEƋ��Ƴ��b�&y$r��ZʥV��. q�H�$��(��=���s��� M�I ������w�_��ޮc���|��?�S�8:z�n�3��|��8���ߚX���b��~;������>��q�}�������<���}�W�=^.O��j�=��L/�h��f�o���=���5������o��*�����d���u�i1n�WifF)����LŤ�с�Y T�+#5��/2	 ^��IDH,����eߏFl�X�O7��~oF<{=�'���2��~q;��9~������;�>�=莾_3��'�^:�=M<��_�>\t|�7W�>ֽ��^+�Ϲ����a�������^���=�m��t1�od3���U;�G��KGG����ǟ�Ïך��K�s��m��l����]s����4JX��b���jQ��-�(�Xn�sU��D�@H$��������k��~����?K����埢?1�;��緜��)y�e�{�O��^��|4�7��+�t�����|o�goN����>X=�fu�y��0�M+�QY5z,Vę�3��Krɘ�ey��s�|�U�;W�:m�����,dr��-mޕZj��L��博��L��*"�dJZ�:��b,%V (��,�
J̳4���y��c��~MRw�n�7�xOFr��^S�������9q�s�8�?�x�K�b�5���WN?4�~�����W�}_/������oD��F�51�<���)�2k���W6N�F����b��+�����_0�Xj�UW.M��ɺL�s\�mQ�ʗ���S!VX�AdB�
	V`�%d�fkF=>��=������'�����ȿ���s��1~���>��?C��������z?��>o����[��/��G�t�y��ܯ��ޣ1ef0�l��g*զ��x{�^�����E��=͋��ݸF�X����|�\�6$^�6P�]U��7�E�?XuU.@*�\�LY�d��+!lHD/
	-(�,��io��1�~��_G�����z<��9ߒ�~�&=^��Å�g��d�^_I��?&
z~{������_7��O�s�;x���5�+�ӞM�R�F=J�9[�7x�Ӛ/?Q���0���^oS.��~{����5Mg�&�&]�.Mt�-�9˵sL��t5d��ґ'8�g1������	*I�DD@!�����L���~;�������?��|�w�5��Q7��?�����8}�e����U������>���_���W��S����}:��H�y�tۉդ������#�Q��g��L����ι}9���ӕ�k�9^��G�k��tǷ#X�o�g=F�f�+��]���FP�֭eq�a�	M$�D�5$/	�.`�QHY�
	���ABT�M?����:�����_%���~��8�މ�~���i����O��x���q1�z<���=�K�?�~�5ݻ�����5͖��2oYz�3�ZZF湮Lpz��Ӟ�W�h���[����z/�ɨ\����%ͭY�S�����N��[-c��C9f5]QP�9�� V"@�e �` �(K9���2�Ԩ0(_;�;Zw��/���?�~����5~-���c��1��=O����x��{ߥ�sb|�9�f��:d�_3�ї�9/��=3�wf��ť5U��^�}GOF���D�w?\��=�E�����2�a;[����5[����K;�8������T\ʬ}����Dj��R ���D��� ��	R$��I�Y�[M_;׎����;�}���}o��Zf���p����s���R��o�S5^
Ӗ�y{g�^?j:k�}8���c�ګ��]y�	���/7q}9Q��w���qm�m�i�tK�7Yv5��^��n��L�:�]T�5��jn�q&�\��&rfD[T!"*I�@��V@"T&҉evw����}���S��{�ߓ��}�ko.ߧ��F_�ۗ��g�3����9�r�I�s^��y�\��W^�/���h�N����ME�o=�~�5���6���n*��^����{&��۞D�.�èX�^�&�s��v.ge��yJ���`P ��<�(�n�����(J��$�l�D�.�n��������|�I�X�ޘ����r��B���|��q�qs�ٕ����=2�k�yq�Գ?C�ɼ�:NgL�ˮv���{�E���sm�}>m�5s��\��5���x��N��|c�Ֆ�sٝJ����.s�
a6L��sH����� ������������.O5��ʁH[!J5�u�7��g���OS^{g��s������y��~�+���e�~�]�W����[w�����%�����s�5��c'Ln�޼.�yZE��f�S>��\�X�S�æ��}xo����l��[�l�֬Ǯfsnge,�9�(���Y��3�䈬dG0$�E��P$��H�k��ֆ/Ͼ��x>��~u��K��W�c�?��?Cų���L�?���_{��SF9ļ_FW����e�u�>S������N�n[9=yt&��G��ǓӖ���t2�b�g��sҶW7��SM��>�\m���K�hk�9�M����s �ճUf|��Z��� L�H(�|�ӎ��w���1���ߏK�?���s�w�O~�|7}o)hL���-�����r���u���^���/M�2ur��i�l���ӝߕuˋ�	����uIM0�;\��7/EՑ��]�4�}r�)��R.Wr�MccqU�6Ջ�r@��
�(R$��$@�h^�������y>Ǣ�v���r�-�\�z<��y��m�4�0���;���c�y}��>�i��s燢u3M6X�O?їP���X�y�&_;���s�ϵ����穜f��Y9:�^��k���гe��H��uC4�#6�َ|�Ikn���.) DD���Q@$�$��kG/o��������~_����gC��#;�/�����;\�Ӕ��_'��~ǔz9>��ow/c�N<����oNg��gݙ��Y{��6�u1�{μk'L��y]1�j�s��:oj+#�n.2�cz��Bj�!6V�5��,Y��KQ*�AX"�(��
 (H`P $�飏�n5����ߩ�S���%�ϵ�e���sg��_�Νz��vw���'�����������ӧ9�s,���5&c>�iwty�q��&]㳝Q0�9w��E���p���,Ա��鱭R�cțI9��c4��J�@� 
�$I�PP@$	@@#����;�z<�_��?���+�ߚ���fǣ�>�zn��o�y//�|/O���9{�k��|���z�,�4u����7��\�ԩDɪ�1�c�ӗ��<�������]1�X���>���w�|�Zmi�t'M��
e�!u�S�䙜�^Ь�B""�h�� �̲�A	T� �MI��צ�]7�<�S��?U���|�7�#���9|�C~G3���}?G��y�~�/w���^/??w�{9����^��������Ms.gELEu�k��ǝ�s�t���e�#�>f�/Y�ݲϬ;��k~ i��Eެ�]a��B����2��Qq6D`*�M��d��[M7=�c��{�M�x�=�f}�Ą�@		Ie
�nu�f{zO��v��6�����3��>�q3���z�_7�v��9��_CȎܽ_gɯ�c�x�ޟ7[���w/K���5`�$�0��I��?nIN�Z���XzqһT�6(�Pa��۶oB�3q\��6M�3��s�0�iI�"*�B�@%m:7=Y;�=�F�G/E�"�ɿ6��ߒP�&	K$�Ӟ���;�<ޝ���z=F�V�%�7�g��z���љ�<����O���.����F���ӭ����8��맚��9����z&[ǥ:�Lz�#�\X��s�⤩p6]t�Jٯ:�l�[*�i���-L�iIA Z��f�P	-4��F=m�y�h-7�����!�8޾}��gO����.�+�(�IK�XB��ne?C������{O��Kn9�y�~̣��O31�a�q�^U�>��_>�Y�J=};<g��gN|��ɾ
�=O���?_;��w�o%���p�p�]�gTެ��oΦj�޼��]Z�(\�f}g,�3XQT���Q�@$��������ef{j����������3;d�U�g=_��5]6rތk7L�=_�N�H�j7ϭ˦��mƓI�ю���ϯc����<^��/J�i�{Ә�'\'|���M'���������^�:�^o.Mq���ѫ��Ӌ۞�\�1m:���NGNz�Ϭ��vcc;���w��ˢ�G�&���=g���-��eY��T�L@$Z�l9�%m+���r��_?����L�3��$�kE��d�l���C�}�7e�[�랇�O-��q�_/?_�]`Rf�Ȃ���p�ӎ���>^�Y��Ft�ޅa�?'6t���j�"�-�������N�=sy�8p{y�砶��׋2OLt���ܺ8�������z���+�Nk�XԤ�mlۭi�[��ng��\�T�Y�\�ʤ�l�"qKM����q�ݟ?���u��K�p���e��w�!��|�ucգ;�5����ߟM���k�ؾ�M[��{~�6$(g0����~���M�oq�Ο'_��c�T�ӱ�>o�1����닦�zr���8�2�[F���Dk(�s9���c�:�s�D��z�^�����0���@�Ҳ]WW57�[,%+��MKʄ�\���	 �b(Ii�cӿ����t�t�ϭq�
�g�/ONq�C#6t���z����m<�i�clŋ��r���^w��<��������@��f[N��m\���7�ћ�5輺s��z15��˝�:�}�/>G\\]��8�7�M'\�N���=�Bm����7�yٕk��V��Ϟ�rj�-�V17]�n�e)(��L�&��R"��HP���$��	 � ��nϣg/~��w���@)��<ռ�KDZf�:]o��w?GS���f��NZ�z�w�k���_G��:܀
��}?�}#���rӎ��tN�ƽ���;:o��󾱏S��=�{�a�>����kF=��Ӗ��R�g�Yt5Н65i��b���k����ff�t(�}�K˩��k3�;����")� @��/����9ޏ�,T�H�`��G�ի�����z�s��陬ɰ��ٷĽ�x�i��9��_":*n���^��/���{.kʍ�	�ҍ.�}����5�g}ߤ��mL�zDYK�f�u���'�‹6g��gs��hL���w=,��c�A�Q��-*�QXo,,j�����h�/=�6�\�bA*�K�B�+�$^`
)r@�)@P��4cէ����|�l�i��۳�f�5طΥ��;7^q�<�3d��f�0�ї}y������p��\�c��	@-�%	/��x�y�wϩ�W{�r�#�7���Ӄe���G.M�-���z8c�y�9�9Y]�ɾ�z�su��7&�[9����q�rj�o.�Ը�E�L軴��sPQ�h��S*�@L�
Κ�{6s�2miJ�gKN��ٞ����5c�S��s������z����G9�[�W�y�M������3�Oo~���֥�y��rә���5��]q�զ�&����x�n$î.m�}��]�l��<΄3��l�z%��0\QHԫ��s3ܲԫ5E���+�$�H)�@D3�����{�t]��]�L��o��:E�����CFz�VU��Y�q��Ž�H��6�z��)`�D�Η�f������\��}}�u�-+��~[��.�/�,n})������ul�9�����b9=9�t��t�&�V=��
+1����Z]V�U,�i)�Al����VI 	 �!@@�A	i�cէ��5��Uʷ2�7wI�-7Kʷ+��/��[Ɨ�ɭ|��ߙ���J�%$��BZo>�W���꼺��g�C*����.���ϧ?�U���l%,�a��[Y�V#ٟs^/Ga�YϹ����g�-cZb�f���*�@��%aV	R�D�J�0@@%fi���Ꙫk���pLԵ3w��&Bӫsꕶu���������^o�nw��F�H�e����&�7�^��k����:���g�]^�5��ms����4�eͼk�y��Ȅrꚉ����A��,�0ͭ�d���V�!���U+%R�R�,$`H���-���.)q[� �Zbf��1�����ӝ����r�>.G���"�@	R��J�y��s7[������[���npnJh[%NJ���^lH�ۆ��Vuyrt�#���URy�p��P�J�[�Z�PB�"�R"H�T+��
�@@��(�l�v}/Ϧ��p���̗����v��Gcoǣ���3i��0v㓷����+��(@�@	VT�RI��Lusי�lζc��ץ�zn]x=9��惡��ٯ�6�+����R�-f��\�'>�fEr���4�UXqDekn��b�-��E��-"$"
b
�$4����W?V��El��vٹ�%����g[9uͫ���7o����^�ŀ �* J�*+y`vzo�߿�׋��=q�S>���Vt�2�xVȳ^iX�.��������+�I����X�f�@\�U�[�JE�+%���)X*JEI(�DDS�P@@A�mϡ���d���V�V��7.�V�w������n�*[���Wy$�VV,IPd�7=���^���z�w��_I=���5��k"�@�"��R�Qhç?s��(.C3�xz�����JV�h�DU#v��K�فiB�%@� �H�
��ZWg�y�e�,������X�a*�,��z]�nG®� ��� ��͢

+x����|���y��>�"�e;���m����Ϩ%��6��ϸ�^�;S�q��T�,?=����|G�ZkX�M�ZAC5B��������/�@QPXK�VN�R����J�ݝ&j}<����HR�,�,����;��:tt헯��
��{˦�-H�S�����תuei�i���tQ	LՔ�
��@��f�̐���A	I!B@��@AT�DDAfh"��YYh�������5-(� �.�>��r�}JRw�m�5�ofn�*ř��3�j�뗬�/,�B� �-U�`�!,���PU*�Q*T���LAT�"�P�s��(PH ���
X	V��z��6ABբk[}\od�ԩ5h������\���}��:T�>jvY�8��[)�`�%,�T$��	""@��J�@ @J�Hh��� ��	4cUTt�5��v�j��T�F��E��̘�Q��,�QkR�V�\©Y���HU��$�LХ�A%@��I�$ Hƀ
 B�P"A@�	�e�\Z��!l����w��}'_�y��z9�]n���o��U,��j��M����Ɇ�T�.����)p��$I6�{d(��RJ���"
���
�@Q�@
 BM��p�Ӑ�H$-�P��B�X��ub�*騰�.�cJ��-6S
2IKibQ,���K,Z&��JI�(�J�+$�mP���� "!$��(D�>�w8�@D�HEH(J�� �v���]�ڥ�u�@��),,��˸�cL�粑��5,.[jʤB�ZIj�*@@�D@H��i΀D(����>uu�
 %d
�@$�vm��r�MH,�}�(Q7�C;nDͩs�Q*Z�+��3���Q2BYjT @"&�H+ �`��΀@��P���
H�t�w��Ƥ�d��Σp�d�=��A�z�%Ϭ��U*RJ��-��S)Jڹ*̬VI�%"*��DAT�@�
 ADD	P	@ѝ�ܔB@�:<{f�GNe�]]l���ծ�^K.}b��H�̔I�F��dJT�R��,U*�V$���DD0��% P0@`�����"h(UU
'@�`��.����A��z��V�kZ�u��G��0�ξ 5�4~�b�I�
,�Bj�5����P
E�2��*5����־&w
�N�,X�������ӯ�A�����H�Q\�^���0�P#D0#��<a��4DrI?�r`�� H־:�Ԉ��f� P�7��@C	������x0��C�4fv'�>;�|��W�����P@�κ�H��
�&�����x�����'p�D?��cy��*k�b���U�M�p~:!����a
���id?
|�p~'���~W�B�h�!�P��Hb�����#\�����5Ճ��cFרǖC�3|o�D�y��bW�#Z<T�̪��D��/�|L<�\�L�9<a�+5��x�k�
ȇ���q,<jyW-P������LW�u�4~-k�x1����o�>��k[�y̓۷ӈ"�ﰅ=B��5��D,*���b�O�a��e3d�3Z�&Xֶ�Z�;$�F�'�hy��7��p�H�ԋ����ՠ�[���c	hƚ�s��k���;X8��֌���xT&���;�ZP	�m�"�1���?`�Ɔ4s��p<��-����&v{�7�SS_Z>Q��&i@"��&ls��G��`�q�od��,`�|�C�&���Я^�T ]A�5d-�10���TMB9ֵ��&XDx��hA$�y�����bǍ@��>�Jj�5>���]b�*uy�����k�CX<b�3;�`�=�x�Y���u�o��s
�{k_SRԢ2�S����	�X�@�T��L1���!fx ;
ݎ�XY�1�>"#�xXI� �ꩉ�_E�46+%��*"�cE�/��=�od��Mj9%���v.�����L<�Ƶ��6)���@'�����T}�͵�廻-U
U�_�/w/����=��0�;j�8��߳C�Ra�/H�f7�ԭ����i�MJ��{l�آ����i�-�F)��h������f�ba��lW�v6#��S��P/RXa���Ac����|\ED�u�+���/T�#�-A�k\4�e�Ыm���cc� p����?⣦�%��?ŵ������sJ�V��ΫZԕ5i]5�(��@��g/ad�V�̶)�$ٻ,����-��0BL?<e�1����*��;�a�mxD�iU]=bk����^Y���%���ƊV�kZ_�u��b�9b��	�z�og��ķ����R9���DFB�a��B�D�k�:ᦻX�jj�A-���$������0��6��A؅x�Q7�N��~�k�joq�#�}B,�TxBJ�YLMo����,X�6��*\�j\��k�Ͼ��o�"���5�;��x#Z������
��)cZ��]u)��X�����KǍ���V�Jꨇ�������&ɂn5���[箵���a�w�j�� ��z�먯��
��%��m��*TX�-�b�����~��1�3G6]DkFk\��57����GG@ld�l�b�1�\F81��o�Q	R-����D2���7�"~�L
	�w7~�YZ%�`ѣ���	��F�E+=�I�H�#D5��6w��=��2�W��!�]l��۬�ݖ0�`�{��_qׯ	=IAQÎ���~��#���j|��rP�K"K2Y[��vP��؊�˺��f8�6Hv�˭�x99Y^��k��pf
( �t�BN��VS�B�\u�OV����xOT�Zؕ~5U1{T�������,h�`D�f�m�b�d�۹&����21���4TX�B���\Ƭ�U#+T�HJ��h��
����je!҅Hc�-6W[�FPuõ��e���m�䇀�Q�n@~�u��+4G�UQ@UR�"��: ��`�Vf.\2�*z�Q��C:�(�W�li�*��!N����Y	��;�%�e��9�7��D�a<��&���*�[@�`�p��D��'fj�Mb<��1�!hk�W�
唩R���	��^�;{C+=��f-�a��Z �3-��Jjn֖Y5�|;M���}p��֍څec�
��FP��a8X�b�:2�hU�$��a��<��[�J*ͻ3�a�g3U��U�'o{X��┍^���a~ۃ�8�&*�����x��HN��&�L��E���[,���Oe3G��ʾ��E��[#�r�񀅻�3���^m��=�G'3�-���h�(11����d��7���SUe��1HB��ő,��u(yF�͘!�3d�81����~�f�fN��4�[�F���F=�����`�և�����Y�„n`1�y6`01&]YK)�Q(6[cTʖ�������,0�!%��n���ra�L%��qt�	6�ă%�k�������M��@�I.~��6����uq��
�Z�Y�Q�m���mj����4����'�FBY�o��>By������/G�J���SVD��c���ն;Rx܋'�����2�\/�\��nMUU�j�����,�"�R���?t�{C��f�Hvk��]���eX���[�`/W��VBٗjL�Q.��Z��}~�bc��2e��c�Ȳ��<_��bb��Rʩ�[UQ����EN��%��(YU�݃�u�8De��f��I֡?��@��"������f����2���ɺ�x���FǪx�Ǫ�y\�֚������7�ò�/3~F.H&^�Z�`2�K+��Z�l29`��a	h�1)sܐI�ћ����"�hF�*�?B�[0��!Štz|���,v�ղi�>?'�c�^6P�ߟ�k�Q�7#X1�QYCc���R�g�p�X�\�����}xE��!L$�x�[��+?0~=������b���άQve�}hlQ+8^P�X�W�2r<_�\[�کes���2�jr�p	C\�?�زm��e*�!�T�Ӈ�3fo�j7��q���x����Ĺ5�*����^
�e���N
^0x��h��dW��r�x�Hkan>3b�З�-v0�B�l͙z+9l�`�� �U��زM�2h��@|���>;��>"x���k�N��KU�iN>Myi�))�~v]TfyO�^%�R��gc��?F����9M�e�@�Z�������Y¸�PX�֖�<��|8�Z�b�5e�3�1r}6Q�b��V�l<:��E��E�^7Ţ_���1MU��j����ǵ߲9�BY�R�Q^�wU��z��0�?tKQ�N��p�sf[�*l[-��y
��'����氼O��Ҭt_	�����dx�
���`{
-b���R�K���[�5Jq1dr���PW���3c��פE�����A��� ��zsp��w��#�SF;�՝��x�!�R����'�d׋�k%�M.��J�&,�Y�V���6QavR��;��6�`ܲ��T&�u@�*"�~�=Y9��d����a[�N2�o��d>J���Jٲ�j��̤��€�ج���D`��bV��	@��c5�&�y�h�������S2�����щ|�U۵�xx�2����G{�)�i�˚�@e�S:�׭/��c�=�ku��>�V�[}w��{�P2V��n�G�Fig:���n�	e#*�8]\�("�V�ye^�1�5&@u�e3��e���&ъzؽ^���Q��d�ͦY,&	P��,Q�X�p�<u������<�+�H�ᓂvIc�f��L\f��V�K�t��O�ac\�ޗ��R����R:�$�����k��j�F7��X��r1��[ ��r��2�ƭ��Q��65te��������Y|�Z�}��5��u�Lz�,Z E"1c�$�k��(�/U�ɮMw[��R�~-��R��{������.
ٙa�TdU�U�5�J�îߐ���ͺ쌅��IK"��T����s�~���_����Z��<G����C}锃��v�	���.���!��.�y%��&Ԫ�����"�f�g���L,����mWJ'H饂m�-Ƭ�{����[�u��������M�+*�s�9ynD�x�_��G��2�!�ۙh�)F^�����X�{��Y�}�T
��/�R���{0|;�Aƻ첺�,�v3&����O~6.N5!0ˉ��
��
dC�WP�2�N�*\V6�W�j���V�y�^2��Wc�^��z�@!�&�E���.m�:�:�Y_I�h����U��+Km��-2���ћ��ؐ��0C�O�͟�QO���L�W6#�`�[�K(��_�MY���䘚��5��ONN?�MU�3�S5=\
R�.�"*CF��#KY��&��.��++
�*Ef6��_��>�)��m�䳼�8V��#�~i��ɕ��][�]YҚ�vv7~Ga0D��:��t<�%���U�R[���Ιb�)����^B�ᝃ���G��1,�Ǘ�K$��3���~6D��W��g���8<%kֲ��4%������7�]95��<�_<���\l��%|���'�ӑ�VZ�u9>+51�f�5�z�/�Z�g���®�*�q32�y��J1,�O�먮�t�K0�N�cx����m!�z��O���8k���+�v�x�w��Iv���^�FǮ����S�R� ؤ|*,���g��.����{X�#�?�E�x���蘏Vh�_����2ԣv����у]�M�r���	�����S�kB�yܥJ�-p�HcK
�@���PD���J��|B��[�<�*�/�Ͻ�e�dSf+9~C���`�'��g6M�<��r��@�����Q<���M�e1�;rf�P��U=}
u
�,
�Un)MkZ�-|�L<kR]D�g���*L��%k,�x���=kV>3�'jS?�Y��V5����8��"�l��vX���U_��h�{��v��_EX^�q2�
�I�G<YE��2��\�[����7��-m�2��ס�WJ�y���1����xց�K)�+�K#3G���,�Waev��{ڷe`��@�#)�5|S���oѿvTͣ���7\�?��؝Z���ȴ��� 52ڊ��TD��ml�U��M��`+�!�̰	��",C]�nȷھ;0qj�2��G��i����[��/�3p�?�.K_7!�֗��9}d�*T��V�P���m{7\�mQ<�~����,�e.@en��bDu��޳����?�ψ��Sħ�L_OI���M�������uԈn�ư]M���i���5xܪ�1��kg�`���
p���LR����	�{���Yg��h�x��"ŀ�7p��V{A�$�{l�"�t���^*�y
����/�h�rAI1�V�5�L�i-
ֶ��&U]},~'��b8�q`���{�յn��vf{=��Yi0K1?H�e��B�\3�R=�DŽ��	�Z�!H�z�(��]�=mC�/TZ	*b�/w��~'��X��۰`������[=����e�\�N�6���"x_���d��
�k��'��*���\A�m��P� �t*c*G�<o�����,d����۷n����A����CO։��<2�QVѪ@ڪ���5%}B����"�R�1�#���M�C$+!��y�����f���U�v��b�ű]�z�V���WV���j���h��C*ŭ�Q��AY�cJn�[ɱ��
�~����^X=-{�?������Ķ�Թh�Xu\��T�槡+�,��j=�T�B�1���o�{@�}�x�x��"������c�
Y[T�0�kC�kh�T��X�hEm�;;�6��J��kZ��`����^�P�c_�Q�����5�c?��
vǾ�W}�)�*�
̱j�l�"��1{ռC.w"��@5<�~�p"q���~����j�.E�������+z����)�dH����WiyA��[�Us��`��0���@�a���g����ܿbݕ��u?Ҳ���/�w�/VL�+F�SP���ܔ�7���9�0B~�q���۷nݻv��}���QO���d�9RŬSK�a�iX�
�A��|<u�_��� ��7�x?_��ؿ�	�I-�B淲āj'���Z�<i�.[篊������򲫿����S��i�fs�d�;�G�XuƏ�{�AF4��`�AL,H=�=�nZ�5:��u	��F���[O!G�!������Ye��=���#�>'�)W/�y+8ͯp&�mm����a����g�I^5?���Ug�����k@h�@�VgW�;�١�@A��a���J<wӲA��{Y�}����CN��As�}��پ��k���۶�
�e<�[�᠇��C�5t���ܥu4bDm�΍7��͈&�0��=��S�8�e��Y��xA�C�����M���C	!1"A Qa02Pq#@BR`���$3b��Cr�Sc�������?��@)R���.>y����gXXGÏ�c����{�P�@���g�8�Q�C:ΰ��Ƙ]_���x��~ۦx`H�J�
�T�n��#�LJ
t��?����Å�^�I��6�`���X�R�T{��/���!Ku��g���ٓ*��p�����Q�CY��rrr��\����}�Txd����!a�g�F�� ����u�R��KT7HR�����ƙ�c�ϾƓ�*WN���H�<~��T`�)IP�I�=�=��~Օ�IA�B��*V��VT~ςt�W�c�Q�#�RP
!P&��R�i�i�&Y���r�����N�Y�X�>S�,i*.�D�����%��c��s�ǿ{��\g�}fT[I���;���Ӥ�!4)@"�T�S��N����ǀ~9��2^~y{�mэ���PN��#9�w@,�
�#Y�8c�•gܚ���@��U_���=��b±�e@�??��N�������ϰ8n;��J���0����5���F�T*Wkx�Z�0�{S�N.`8:�\�x�aK|2<9�>i
t����O�T~/(����ys6��N�T!�+(.�:�c���U���B��Ѩ:I�:�X�+��((�Ís�R��3L,(�F�XR��x#Lx,E�P̩��R(�Β��i-�qgH�n>I�m
wPP�;.��T+��EB��r��n���	�L���WJƇ�
5��<,�V�%vV��[��,{�i�W,��i~����ѼaV���4��v|9P�(|���D8#�P�%%j$�%�4�uJ���\�(z����*�,,.�R<r��k\z#��p�%�g�z���Q�>VZ��#b�U��2���R�)��o�\�m#�҂�cÌ�R�aR�r"�!K�R6����B��O�垧�*��2�y-om%B��s{�<8�ݨ��S�d&T�cV�w^JJ�@�B�x0��!�wӢ�נ*��/X]+
AR�}��0�}�GP*u!|�n
�'��ަ�(J�����N��e�w@�
��AZ�N�L���j�w*4�!b�P� ��.�V-S��<�s.
4ζ�D�N;KTg��xt����T�
Ԫ��t�D(Ns�l�P�@,h"e.�:V%��1H���Y�
rn�T�a]0�++S��8�VlKR<��D
!N��ױ���x\݉\�y�gL)*��@D�D(WT)XX�4ʃ�xcS�Y]j)#S.A���Q����;(rӉP�c*��B��A�ځA��𲲋��ƌ�#^��Z\��'5�8v+���9W;�:F�Օ�!��\�Ɨ
5ʟRP���C���K�-l�n�W�,��R��t#@�*�Va
��r�(ar�CDS��*ѨX��'֬jUt�ە�קO�+3�J.�^�Z�XP�%Z�!��gH�CYP��4)�w���н�d�#ȼm0�&��eq�;(*0�eJ�
�]*
�J€�ԓ+�%=
о�P�r��&$���_��s�cN���3�˦T1t��,ǒ��kyk��qG�ZN� JΘP�WUl��U�[�O�.�+�i*�d,���|�����T��^���jQ�����N%8�X��FW޶�c�
څ�n�~���鞯��d�d.k3�y&��W�4D�(a\ʃ�rj9u�̯5mpW5�E���J�:aI^�Ų�sX]����};��1#����v�NWa���F���N�9ZieN���R�!:y#���j��L�S�'����p�]�{`��W����������2�Tn+E����i�g�2��=l�r,��P���V�E@��9К��]p����֩|�Q��,=R�4�UG�	�ܹm˵��0i�֭W2B��X@�댬�eF{�X]j�aN���]�'#��n�:�sR�\��?c�V��9�NV�"6L�9u�*���^�G75i����(����+�M�6���~��=I�(�����B�k���'2�.'eͩ�!�;"���Y�O���{�kTJ�x_^��?	�x�{?�pA�/c�X�>���=�H�+(1��r�=�"������\T��˓i5��U֮�l���d��@�)P�gL�*<�[�ư���+���g�1����m��z�g=ԅ���������zy+[kr�Ԙ�p�8}@O����=nʹ���
"�t����)R��.67a(×ܴ�
��̅��%��WJ—G����ɶ\�U0l��Nk�;�n�o��K�["B��QN|�2��*�r�ʲ���WP�'�+u�QN��#���>�5����N4�G�w�:���.�j���JuJ��K��O�a^�%7�E��!2��[�M�Ϫ���Ҫe�ʝ^�ɔdB�2��� -�������_f���/{�A]qj1
�~�V+z��mS�<��&�e8o�g[i�v*�V�S�syΛ��I���F���P��@�eu'`�iu%Z�YA-!gL,kaHP�cR��Q�4�.�6�d��8v�U���{V���eP<?��eJr��Luw1��y9‘�9F�ce`�t^���\��֥�$"�i�i���X���@��ݪ22�*����ćT.�s�vн��Uu4�QM�N�<EYhO�E����� `yn�����K�̩��,u#M�0�2��w��5Y���/.�
!J�)cH+:eHP�aEt��P��x���S�Dd�8f�8�\��_g:�g�x���SmY��%��*��{;.WO�\�<��
��#��J���TU]�:��p���M����CѰ9���5���yyi��Ņ�~6M"榖ǚ4�-�P,ȕ���c��Tu@�2�3T*Lg¹B�S����:��.U�I�]i}���.
u��
��V�5��D�]�5΄�L\��#���63����u+ÔkW�.T�֭*��
:�hF�cO5�#\(R|D�=���#8��pWP*�`c���I�Ԯ)X���M�j�Gc�Sk��Uf�O��O�u#�Z��J�;�B�]��<A#�E����Ze
��d�����’M=��]q�C�I+�B���o��ͣE���}U��S��~#(���Kg
�s��i�i0J��݃~�^�U����l�M�SB�2͡:���^�R�i�)�v��]xD�
J�RaF4��.�3�'H:t��?�����6绰U8Z�U����xέV��?�&����Q�����X��ޓ��Os#��k���w�ĮUkN�5���}�!�+�\ӴD�`�p;�M����]�=�~��;�'
��8`�密�t�W����]"GuV������\o���=�*�
�F����2�Q�,���6�O���*��A�3���2I7ZN�i��Qi��c�F�_�Mk�8?�Fa�W1z/5O��5)
��*���ԙc|��De�k%wP���ΡcN�R����q��U���k��U�q�7�s�P�*3�i�^e�1��R�>�Rm����U=�ߕ�;.u�a�
�i�[P����2�ˈ �!6�����U�
9ES�\�?�n��U�����͖�Ob���G���+g���Fʍe�z�\�-�����U>{�x���>�ݾ��"�a�*|M�����L5�����]|t)�m���Qm&?����l����~��l3���]�A�^ʴy���%�R�δ9��a~��-]�
�(�VUҡu+u� �Θ�D,|���Ŷ��L��%˩X��o-��oD�-�}�A�]�m��.�[��
���9�D����a��}��}[{d&�t�N�\P�a���_�F�}����\c�΢��%��Ĺ�t��2���sOuLPu+A��>I�k*<7
eWߵ��sn-8��uN4��sm�@�)�#|�|�Ͼ��KS�;B��Zݛ榜#}�9G����v��ȯ�-��
�>[�C�zo*9b��*k������W�NyN�h:����e�!�\+8F>�Q;��_xG����]��5�,�����j�fUs�:/m�uO�T���w�R"�3�/��ʱ*��L��(S�8�׶B��}gA7�{];*<7�w�!F���Og-%ӿ��C'~���ӑ�Lei����ܪ|5�`W����qi0�����D�̻�Ww*�K<�t��T�:|�ht�l��r�%.�Rś��I�ݲ z*�U���]�<�y����6
&�����MhA���c����=&��|���U�H��X�U{WRC�eN��T�aeS�W�<Q�K]��
��]L�ɔ�UY�-*�@ղ�fw��T궝�M�܏"���0�P'|LN�-b�Q����*�#��eiWQ5k?�+�����*�hq%�;�>�N֟�B�O��:���K|�?�庥+��S��=��a�����۲��'�^����5K����ʫ��.�4t�׊On}�8�é��@����d��)����y��[U���U����FS]���XL�p�m��iT�������/�&X��~ȣ*�†�L)D�4�R)�����T
#�6�*T�5j4�a�S8�˧ ����ʾ���i;i)�ZH�U�8�
��sh�{ug�Դ0�����N���9���2����[�Q��yh��T9Y9N��t�w�/�滭��gtjV<#���5�ڹd��M��!�S���r�R�n�����*
e���a>�V���3(?|��eȨFnS��$�tߺ�� �A���Rp?�v��Pt�k��O�rU
+�uV��S$�@��T���(y*�#�0'n���Gd���RƙR���Ca=ߘ�:�
s���x���ÁW|:��O��};�eR�B��ZK�=����Vn&K�t8��H�*4Zi6ַd��
�1��W��x��j��G�\�}`@�T����oH
�ܫ�Y�1�.���Sh����6v!:�C��67�m'9�4�T���s�C7XY��.�B�	�]c��C�w��*V�C�p�l�tvV�5+���I٫��˸j�/�M��P��T��*\�i�+��*�!�Vt�S:e@��*��M�.w��ju���?�p�"H!?�6���ipV��s%5��.�H<^�v���!�n���Qq��5����G����]�X�����5-��G�}z��
�b��I��擟oD�R16��z'S�Ϛ"`��GT|�-kb���{D\a苾������eFQ+*���qL��aN�q
i�E����WdO�KաHV�:CVt�Q��%�;&����;�Nڹ�Y�ɂ�Umw�^�V��3Ѝ!j�
쀛F��*T��/��6}e^�k\�\e�h��)�e�EQ�L�X�U�{T���B�s�>j����\UR���	�Dl���F:���)�a�Ѻ����
�?��j�����w
�����%kvG
6W૧d�W�)�����i�q䜋XN<(�"�c�i&��*�B.j��g��.�V4����h:��g��J�ϴ7�JpU�EZʚzB�!eN���즽��eZ�"��*�[J}U��\�SM�6��V��O�W)�mvs�����K�9��˪'pP�JK{���	�d4��ĨA�}�)�%��.(�Aؠ�䣲��L{��
uVT�P�J����7�d_�^K�YRS�sJ\�����U��]Kb�ú��n�u.�XөgH������UJ�q�Z�w��T�g�&Ӫ�:��Z� �(�vA��+Vd�ﶰ�DҀ��vP��B��u �vM��� #��r
#d�W��;�S�}�.g��?EO�!λ��;+(�e-��]l�N�ӥ�Y�y�-�\�fF��LX���Mzk���*3{���t��@G��i�~���e[�*֢L���iq�p#�[/���V�-��N)��扂S�2ʇA�ڬNg]4*t�fBc�D>��j��SH��<�����Q}l��҃��7z(y!��*��c�|.�4����E[���+��'p�J't-jm�p�e��R��	�0�F�J:�I��y��T���_��YXm�)r�8�xUl�6��ҡ�וѦT)X�k���o
+�n��W�Τ�A�u#!НZ����0�Ϳ���9Lp��[�p�����sS^noK�-ߩCt��.��B�i�e⵵�Jd��c�ejͼ�a4>&�b{';NU:\;���Jkd[	�Y�QM�n���R�F�(���*�qq�>J1خ�wF�Otj��4����'���7�rQv�4n���‚.���m*�M���;��,����a�#��_��.MO�n�bB��e�'\���U*��/�m���Y�W�cx������dt���fc�Ԡ�{\þB#��HDuQq�8M{���?BQ��yi���v8zW���}r!��\�a�^)S��dJ�|A8�FQ��>�tb^�\9��]��V5s%ʣx0��h�A�$t�ZN�5��<S� a�L�²�����̀Ӿ2T27]8�\��Mk�CS���q vR��%�1�aG�=�=Zs��k��:ك��Wm*-��d���Y���/@�y.� ���-_�i�U�E��T�5��cmm����R[�5FUnM�R��Y�op�Jg	�s{.'�>"!�^��J�r���U��Q`�R3��*�C 8�\���^l�ќ�r�2؄_J��u��;���%�YL�������#�S��i2�%2�U�0Jk��XF�Z��D�B�_R\���Wu
R���!^A�1U����
�U�����
Z���
ҧ++��4ϸ��L�S�^�A>��V^�����Q������SN��Q��Iamg�{z*�i��[w�&�#wFJ�҆��%t"*�|`�E��]�uۡ��潚�1�u����w�Ŵ�z����.i�ޡ�uI�&YnB��ZEMӯ�v�%�IM8,*�ȃ���!�(Vϗu���{�̪i	}�(�k�!��r��~�5G�Q�+�t��aN���1��(��}G��v%U�+p�%��F�Rug���L�ٺ�W
�ѧ��s	?��P�]z�Ӟc򝓛��K�4<�E�d�u'�K�)���2��h�EΑ��(�ֿ
›��#��)M*�Y��Q���K�y�p�Ͳ��z���sG��r��-gT�c��2��F;�"s�B�,�r�RPV!]�c��?�"6���P�_��S���*��/?��+1������V�yX��ў�9�����l&�=���qc�� ���U=��	����.j�`�u�C.�HD(X�Fݺ#|,��"�^ߢ����3��D����E�N|�+�CԮeq͛{�`��e��t.�J�,n��3�NJ �
T����:&��Vm���F4�?�I�aߛ�W>)��Uw�C�We@ʱ��a�&��}:�~A?��:�U�j��ڟ�U��3�Ӝ!����Uxn.*��ú��s�pG�r>�ڻ!(j]��UZ�jTfC7��W��G��!�5ς3��4Nr6�eYS�f7]ʽ�?��P�!�ujqGI�+*t��!cL~�ཚ�!�y�˶��.�>��׮�M��"�JA���[�{-Z.�h��Y�I�C�gFFp�r萪�\VGJoјA�B2%L����l\�}.�I�}&ˆD�4ȑ舨ڔ���S�I�m��xAC��E6fN3�uj���aO����[����7�C��P`��^�O��:G��g�U%�$
�]���Œ���e@|����J��V;!�d��4�v�B��Lij�~�c8�n�a�2as���w�3	���E;Z�K]�*�UOl��]#�q{ìx77��r8�݀�6���]P�XmU_٪@����8�+ۈR+7B��3�l�6T�o��<�eV��
�稷i�u��}�^�&��I�)�܅�M��D��.5��Ӻm	{�(=�0�d�6ZPn;�<z�=�P�7�3�^�]عR��)A�pUi�sZ�{+�WT,���V�B�u�eC���Uo�w�y��c�v�<]K
Q-�T��ja�3q�^]f>&�0��9���*�ὖ~鯾=UGp�=�Aԝ��w*�L�z�ҭ�h�;�u�Z#��������ʯNLg�T�XR{s0����r�S
�k��d[Y�`T��p�ßD�)��ܖ0E�d�^��D�i8\Gͱ�T���lg*�
I�R�*�Eg9���\��n�{(�auA	��J>h�����B�=��d�w�j� �z�<ՙ
��#Ƒ��eWW�Ƙ��Ƙ��_�Lv��d����k���Ѵ֟��J�����|={����9��7��Q�K�7J�Y�vSp�� ט�T��{m���.T:��v��:���;�;�_��\;Y
�7\�Ue��f{�U�L�3��}j6ܸ�*�GP��\���+����2�ꔰTT���4�W&��.��BrSۮ�2��k�aO��Tc�j0\Gr��p�w%��Oú���.�*���
|�eHP�xp��A�Vq�9��7�p���B��jn!�i�y�,�Z5*��ʥF�pN�J�GPp�*�3�j���2�7:9�v��wV�c��A�8�U8~��ѯ�=��
A�^�)�(\G�Sx߻UvV?x��Q�7���F�E�I�%�K��{%Ik��0����֢#��T[��Ǖ'���W�k8ז�#UC��UjS��{{W�}��C�"w�g*�լD�"�'��Ń�\�X>t��=�H�����=����,���V}�XpN����Ų�1�����&Ү�5�Z`<w�=K*���;�Nf�0;�xeD�������F^���5j�������uy�����.������[��M�2�0=U~�a�w�!M��S�=���'���
•V��c=���:���a�wE�N�P��=��ѣRdž�J�%�9��(q��IE��z)�|�_H�,:a6�f������<W-�[U�K\�/��yw����4��(r�`���2����5u,�eB���=�|���
�ݡp��I�-�	b�x$ϟ�+�ٺ�Qy��B�YI�:�^��p�����R}���9��c�p���~8ҧƺ�l��<mOd}�����zt�e���'���V��'�����{�&���w��<8����«I��U�)��М���.0����O`����D�e#!X�t�?�7�ƒ�0�Z�
�l(*r��:��P��X��w(/U��u��LL�a:��=�V�\�$� C|���[IŴ��r��r�}�%�K�c��%Q�M�Ph,��T�IcK*��k}�*�G�H���P�F�	��y���M�x1Y�r㘵s�c\9�A�!��N��L�C�l�\$	)���=�T���ݝ�"
��'>��#_��{��!l��l�;��X�	r��B�*U������P�R��Uz�]��̻%�(E�E�~&�Y����y�<�w#���v�J�\6jw(���ؠﴨ_��m.9�6c�(�����T��O�麛*|nG�V��:�{;�Z��-2<��k�;J����=2���U�ƴ�2��A��ɐe%[����\�R�@��/W��ӡC!�!�PTC��!;�S}Zlk� ���X��t���~���_�_�G���pU��Uw�UP�PT��S�&���4)�U�Ɨ�X�N��;��*�"�l�q�3���3�����';���|=.	�i�7�VTk�l�uGw2�Eݟ�;Bx�6��sE�7���q���5�=�r�R}�]��ث��Q��
]S
�Pr-�	�S�K\׌9�*�=���۶��Z��V4�ay�:�(R�t���q�#XS�[�҇
e��ե�>���Y>J}հv!C�=y�xJ�����8w
Jal�`��i�u���T��'$�Bˀq�l���l��1��o�u*��DlS8Ǵq};W��h���9C�]j��ŧ�?�̂���,� �J!U�u(,�2�^��
*7]�����
4%N�`*�i_Q���ݻ��z��&!4}�S�u �],yݪL�Ew�i�\�
o�PsD�s�6�)@�c�U�[渚�6Fa~Us�(���pӥ}��cu
T���r�VT�Ժt����n���8^%���6zf=�K�u��)�9l�YP�������]H	'ꍰvF��Hw�fÜaXP.Rp��„J#u%@XA�_z�0Y]j�
ЮA�Z�Z��*�x`j~{��P4um��7���S�I�ؖ8&�����滛K�.]�3�
MiM{d&6�\�H0�@0�<�5>1�<���"��;�'B�;
BŠR�|�h"�w�5J��ZR�T�x1�I��R��{�����Wm��L�\���:��,)����
���M��"�7N
��)���%ud#�K��!}�.[��P%t�G���B��0���iB���'�t���{��A^H�{�t>��g-9�-�0��sk]��Ȍ�+��U���C�)��T��n�Z�j�E���Lk:��2S���T��B7P|Q����6
�
�O�X��52��]�Tx/���:hVh��(q5�O����X}u�1����K���{�r0O�u*���-�#Z�\O��yQ�,V�Q��P��)M
�L(���QУ�5��x'�d�I��ϫIJ�3��~h��a79U�p|�E�v����3�\�z�n�Lk���(T�@�
R�N�S��N�u7 ��A
q��'�%��B����t'��$�cPnU���FF���΀�l(�@�
��Һ��?cN��U}��*�qW�P��V����M��Fz�wRPR.�J�ob�:��4::�P�e���8N}V��<��?c�g�.�u���dNeg[	�'�7�&��V��r�Pu8ө�A^k�T�B��>��F����1�>�<l����u
���T��K���O�*���?��\�L2��\�9V�	V�!au��}K
��%�E1N��6]P�T,���첄(^z���
D�����u�;cC�B�@m�5�p�ip	��%���F�"Z\���u/'7���5�'Zt:��Q�Ÿ)��^�ђp~�+��i�����x�#��j�F�O����ԫp�X�	i�}<D�T�*PYP��4��
*�{~&�
��KkW�Z���e��%#9���L#:N�5�v����>+��jP�籽��'���it��v*=�T�
T)�������{˝��~N�Si���}փ����H~�k�Wԓu=«��k���i|A�ʃ�����c|זQԨ@�у�(�G�;��k� ;ox(�"���.F�G��_y�?'��, !10`@APQ"ap2q�3���?��y��F�?�lL-f����)״��D�~��ī�[,�����)�FW���a��i�X��k��N�������j��/b��2��]z���($�%�:��^�+R�s���i'k:�mnj��������:�\�E����BU��Kk!99Vk��;�}�n���~
^ϭ���w��EP��[^W�u�!;�Er�	�r�F\��?"[o��b�'�e����_���+O̞u�ڼ:Vm�~�y�H�}�.3�����Vo�jo}f���|�}w{��{�[���=Y٭Y���'��ϼ���{%��\�C���u��[S�<�5�H�(��	�$7E�y}Dv�*/��k�X��bn&�(C(]f�e��ǒ�d�D���[d�'�#C�_�þ|R�}�Ф}��ŵ�,�C�o$tK"OS0�gC(�:�%h������Z���h�y^Q,�n�-"�,��}�Ie�c�
�J�L_�ۑ���s��)'b��[/�d�y��=g6�Qf�'dz�Ȧk�揩C�-�	�:C�"1q?Y!|
G~���j�ת��J���%��y�P��c\1���d��H%�ޢ0�x�Гb�;ΊBU�
z�%c9$X��6�#Y&P�C�E�
��%:B���_rOQUx��B�V�tA�����}a�)���9��.��+DX��d��F*�"��TE-�k�/�
�11��)�

ًO�Gk^F�b7^�5��e��_�3�1Dq"�}��u�j�1%EI�sL~�}���l����f;�.�C'�y�y���6��jD_#����$a;�,�7���t�%ɋf�����j��ۓ��˱x+�0�j�&(�t�g�/�"DeC��k:���/��}��Ã�b��w��Cm��*-v,�E1=�D^��9R�٫�ϯS��zL���	�)Hq��VB4IZ1��L,I�%YbJ��w�ʏ���=�7N��/wo�%ʡ��L\�Z�,��5f���������ֆ�y�Hr�ˑl�?�����춍w�ǫ1�"��M��#����;ؗ��}��u��W6&�?�����I��\�%E�Q��:�%Y�߱[Rϝ�<�}�3������n���ܗ>~��4�]���D���R�b���,5!�5��e�YG*�V��I26�:Dd�תtt��YK�;DZ�,z�*#����p��rIgy����^&P��F
=z�(�9P�H�<E}(�'����ϛ!6�[m����n��&��γr��[׮�
6��H|X�������Q�<�-F*��Fdq,��K;ͫ]�t6B�bM�U�O����I`��Z���	�Bl����*,�k-tA٧����+��ט�YK�5L��d��VW�e�*�˓VM4�T��M�T��/_�CS�|+(jɫ9!�F��z�V�m���C%8��AP��~5��ŏ7˿Z��%Ho���������<����Vi�)���\��v��Ջ&-�d0�:�,�j��gH���Yc�)�����a�d�f��Q��"�8'�*#����n�)���YN"T�\
~�ÑDIB�k�����K�	��ʲ��	s��AR�E�*ʹ&�?��
�EVH�qR:c�$�*�KQ��T�f�Vs�
�o��Z����y^��bb�~	�C����dGً-'ة�f����/(�[Ӽ��V\���k�O;VQ>�3���Ed�"ɭ�V_Hcv/mbGB�>�>�_�휜����LIK����
�~�(�:�VTQYpj��+�
��F��v�-�4��*�;�E�$21k�u�f�Y��������/du���|�'eP�>��ȿ2�0��{/+ސ�$R�{%�k��ϛ��_����(�lRO��l��������tQF����		�`ԭ?� �*��׎�b�J(�I�Q+��x���J�ܾ�z�ѬB_�E�W���71��DW¢�+:޼-zØ����2���Y��Ye�Y��j5���$Q_��s�TQEG�+�w��|���QYV���d��WG�WMzs�m�8ٮQ�b�+�b^���]{LھH�+�KQ�+�ʟ�G"w�ߟԚ��O�}ͫF4{�Č_?�������!7l���=�7����'й_���.! 01@AP`"2QapBq�#��?�ȕ��>�y��~�*5��o�W���i�R�jj&����oQEQB�����o��QE��]
*��vW�����;믲ڮ�q�(���ju��K�+�	��e|u�%�+/�5�}��Ņ�ֹ+�U���>�x䔷G�Ȯ?�z�.��R�����1�N��
q�_x���ܢ����|b�K췅X��鿪�a"�D���V+�]+�_,�^�u1����]�+�bŊ�Yb�]7�K���/�������gN|��/�ǣ^p��}����&�tE����
�c��.9�K5�1+*��Q���w��k��'L�l�,զi�44q�g�,�)%�*��M7e2�R�cx�кm�
��Yx�|��%�,l�+��}k���,��v�7�u�=���+����(q+���y�+^(Y�C���KutE��Mv��1�]	���8�hl�i��6c�\�6�%��}�k�<V/k�QD#�h�iEJ�q(�
��x�h��M�	a�L�9��M,ТWKEv�j�)��ȼP�(��Z��#4Ɔ�����"�$W"\.q6�8!��E%�Ւ(ܐ�7�_7����~ݧ��vQE[6�,S4�,e{��$P�TG
8R%$���E�-/���A����F[Y'�cg���y�|���#6�
��$��#䓡+�y/i��4r�[
�Jo�g�v&��]Ŋ�Dc|���Dx��Ǒ�$<ӌ��F����g>�_(p�;W���7��N�ZCM���)��-�g�b��:o�s�(ʼ�bx��'������%���	�1�ʡ7�����[4���k��D����N�w��]�뷋�_K�l]2?�#�V<�:�Z��6�ji���Fdv���8¤�Ԗ�rhB�g�H�pN{v��W>�T?C�J��QEf��_G��SIr+�H��W�(����h���Y�y���lw�(�
i������S�Ӈ�MX�=��[W{��9�q��鱾{��ȶi�йTjh�4YQ
f�VJv�DiJ��Տ&��ج�镎n\�0s��J�f��v�J?�f��� �H>���vZ�C�t�ޯ��TFn�)Q
V�f�c�r6�K	�	��F�4k�����
�q�f����VB�����"��U�}cO�=EF�?���:ᚰ�.�0գWRؙ��#��ׯ犲1�D�%�{�YH�b�����ϿL�dO��ri��t�N��xb<�N�,��=gU��\x�r]��7,VR�.��\C��F?��j%�Y�zn,�Lq���yN�(�r%���&�<u?t7��J�����iJ�ൕ���?�!���+�8�bH��W�7�}�w�WϽ(��E�z�"{�����Qqd5Z�I��D$"����c���U�u����?%�_�"{_���h��\�Ю�8�կ&���N1�0�5��=!�A���tP�wԙ
_�STn8<c߯�����.��X��;翻r,�$d�	�U~�#��'HOOF$��!D�]qd]{���#�7�^~���r"�4��8Ȓ��$�$(�ddI<_\$+c\�p�B��K�P�E}�1�ޣhӃ����k)͊	1��(��&i�J�
.�}�O����
�7$����$ON�?��;���,�C�)���D&Ji��ė{V����+�?����OWw�i�ܗ�5bFceY��Hқ|4J�#�"��.,�H��F��v/>z�]^/�%Q�O�����~4�ɭ����^E�ė�B�I�_���C�u�G>��}W�ؼh�I��j>�EzdX��*#"pZ�|�憽y5�'�c�l�(g���C<br�;�ݢLj�(dd�'����(�BӉ�$���o,��3w�j~��ђVA3NT�#D������j��8Ia���i��	}�6�"=cы��Zn>}�3����#c��iJ,䆣LR��r7���dO�<K�WE�7Y��M�҄G���������D�����45f��eFE�Hr�T��-
��󆿢ѽ��N}�q}�u=F&Ҋ+�>���������Iy�	*��7k��%�~���H��2�k�������D��WM��.����??M_Ӧ�%
����{��\.N9���5t1�x71�E��<{at1b�v$2��l�&&E��!�Ҍ���O����]�v&6N?�p%C�Ub��/,^qlݗ�_F�&Ye��e�X�)�F��hl�^u��i[,��,��B�_��a��(��+
ŔWeᯝDH�8&~$~$~~~�iHZfԱ���BBX֚�O,���Em'̅�Y��e���M�y�P�B�5��F����B����-Ujjnf�
|uؚCڗ���|���ӡ	�_i�QX�QCtj��)9gg�B�1�<���ߧ��BE��ŖYe�"��EV%:'�cwѾ5�u�ڃIrMS�}V�}+�𾈈�-�n7���y��GQ	��,�Ήk
�
REMS?���qYx�P�n,S,cŖYe�Y	���9�P�ٲLZCI#V~�/�+���?�L�X�,��,�&)��1id`�u�+���l�qb}�o��-���X��jQ)n�7��m�-aD�c�6
��b�b�???.�"z��ߣy��o<���/琅�6���U��,s�Z�~�x�/�,�n7���y��o7�����-A�̓�J*�3�Ep5��͛���qf�q��n7�Ŷ@mW��\�>(�����?mw��������ß����.�>G�诪�z�.�6)pYe��@U���@���5��t�d��sǥ_|��iɫ���ڿ��1�����N�}־�hP�C_i�;�c�����(!1 AQa0@q�P�������?��y�>�]>Qݵ�Lk�pÒ4��p\KM��k����R�k�ct�?���\�+=wR���3��s��`�S&��N8��ÂLnM!�4��&�p������wp�50i�`���ތ��S�+�c�8��i7����.��8�6���8M�%��U�<��7�s�E��g�&1�Nrzq�L��I�3��8��������K��8s��.�-Hd`�2��\���ΗL5�paMAɄ��s{i>%8Ha���L�卸g���,n�5��:댜��}e�53��t�q���|rpppc�(cU��p�q��#L���
wK�\��FJ��E	s��CW�L-Ӽfx-2�w�)��8�S8a7��;��7}��HK��;�\�0�p3�8̙j�z�28$0�4��0����rp|&1��CT�r�`eƙ�a��p�KIŽW �#�;�N;�
�tcr�J2i�/'4�}���Ҝn�3�����[�1�:�8J�x�����Z��0��>''��Ӏ�a��[���L	��pf��j|��s�;��!�pp`��<�)�0L8�
��NCv`��� �o�jwO]ގ1�/�i��ÓW��������L����}���-����>��pu��U�5S�5p�2�^8���ҝ�UqF��e�>	0p�Zp��a��y�eƜ�n�&��'�z�-��F8Oqk�q��9�.:C�Nl�W��>��a����|�O���'���9N���x��8N�1t��C~K�q馇�T�e��.
\��&����u�I�[W:�OI����bD�3�K��veU�f'7��4���p�;����'��y�8�����X^�r�V�H�f�4E1��Bp�;����s����K�˽�u��K�g>�x���7a�0��c�]<������]}\]�ε���87N|7���̣�#�pc�0��Y�'x%΄�ߜǣ�CO����å0a�M��
��0��p:���79��{�-�[��X�u��כ�8n�	�~�̸k5���
�|O�����L��j��x0�̘5O�O`b8bp��F��w{�K�������`�Zd��\h�&���Gw�q�7���hi��6:��,�'7��>(Z�x�xHfp��aʜĚ��7����1�e�g
�
SE��qYz^�B�
&�q�0؃y�ĺ�����b�2Ӌ7�����t�ab��%�����u�4M�y�9��`�I�:0���jbw~��&}p��?��/&Nrf1������M�k,hL&S�͐+�-&:��砸�r��5pu��p�޵�-L以Ι3zF�k[+�c���/�0S��b����Dp��s�����͖g�|j��:�������Wn�т�x���L��p�&�!���sA������F�U�N'�$3Xj�O?xV��u��ſ�1��8r�^[�	�4�<2�>�rP��7G�oR̷��O2�g bg|���f5�X�t��N&���ai�|�r��S*d2d�gW8)�f]0�!ݷ�p��e����8�&�u����x�
��8��>'���������cT5.�f]�ݕ~v~)�]Ѣ˔ n�Ma�L��c,o���9{`2�q�@s�O�Ȯ��u�=�髺�;Q�׽S�:Nc
ץ����_�c���Xˮ78e�������c2^8.bC<wZ9Z�0ҡ5J���g�9�8%oX!®.�?�'6on�k��F�s�WR뻭�0fv=]S6U�h��a�\�Z�q�L�&�h&oT��>g&�QēM�Mc�?�c��tc��Ǿ��c3�-e�ð��\��I�5���Z�	��S�E�`�i�*��t�]a�(���Mi���p��5��!�Θ�{�8�K)�+�X�l�u)�x:�� ���łhܟ�o����b�5��^�E��O�&�}^\|Nc�Ww�L�ʙ�M#����c"����5��6�k�ǀq	�ot♧�]exI��L+.Ih�t�TƳ��s80Cu7��泼���ʓ쫟�r�v�3�
�+����S]aȗ�0��挈����};��"8��p8�e�a����&	�[�s{�#����ot`��87#�����%�awt�GH��XX���7Bo�.M�7H�q��:m�b�r`Gza����u&��n�γ?�xa�1�Lc�	���91��~���5�2!8��SL��}��W��up�4\��*N���7���q\q�pԙ��gTp ����u��0�TĹ3U���+<�W��z�����;�r!�5�R9q�
­�p�Tf�/Y�7�M8�#��f����	�3�g���w�u�����d&�CTjV�řm%����ʡ�B`8�=Sv��K����)�:㸮=�ұ�SIW8���{zΐό��H�>)��cU��Rg(��c]�0%s�Y��7���t�|�������<,_�pD��#[��
Ow�{��2vL=�a��Y�}�І$,��	Ľ'�8�٘Q�x�z�AӦ^������>�]����=��J	��t���ιZ�x��<1�����h<�.0��ո����g�>�M�3/Zp�9�����88<��˜ux/E��\a�1�@ݖ9��1��éD�сwR'�;��wOK�諪�u�W��B���F�&�:CL��n�ӕ���/]��	����4	�8¿n���1ɂ�n��$�e��]n��Լ�8]y8x5x<�7N����Pj"$O������883�n�
c��55�qS_L��SS&��L���e�9efW4\^ė{q�3bꆬ@�������}8���̺h��0��^�\qx�&/B�c���/Wqr.�Ȩ�`#�Z�̌	�ōC<R�0�i����q��/t�qw��}׆@�Yɶ��'&cޣ�ݍ�:z���4�@�?��b@�j�^��]%L�(��&�@�1��Cل`&V�h����r��<�fl3�론E����C��-0
W��
×uժE~��zexϾ
v��4�s�W[�WfA�Z8SJu�}p'��/�8��{i>�d�1l�׼f��c�2TLS�⽸\*��/O��E����2���q��Riβ�[�k�_p�b�p hi$L�N�<,4LWIKv5� �*e�7�!�J���ѹ�,��F������s���0�����^���p3�#�w�0L������ix�{��%7PX�v7`�b�c��*�������(�׃MT�(�4�;M�rXs���Z���C-�o�o�|�L)2{}^MT��J��\��^�%V�Y/��*o��f���x�wy��!+�-��W�!CPaȮ�F�R�!�
�s�"�p�Zn�(s�
�qf�d8Q�pg8źc�p7����\rc+�כ�sX�/�4J��ep4�6��&諼f�.�閦�𽷺�a�}to)�\&v�wf�����>��w�Ř��7��1�+�xc�];�MӌT�}ۊ6�
`d��SW����}���@s#-�b<	l�0�`�J�]�T��C�Q�t%L�'Mp���*!�	���M'8�^�$�7\�!��s�����	�c�x5�g�2��5<�3KC�0�u��>g�� �=�$�xZ� �V�.U�t=1��1e5h���X����&GٝH��b��`��T���G)��ˣ���ʌ�9���)�g�+Ǜ�Nƣ٧��eL)F�@�&�&/E���Ď��2A�f�*o��=���Uf$������2O��8a�����&��x_�W�3��a�Xr���K�� 9��[��J�1�1��`���QG��ơ���0�)��}�]��~m����a��x�`x�ww��-\�N�p.����h��б�э4�cUĴM��
H�d�N�E��I�
�Kp\�N����։2$3
�r�k�¦��o����80n�p��Ow�N���SH[�ŧ�	c��(Gv��L����HC*��$Du�C*�wC�ʢ��|�c�%��kw_��n�
�
�p�ϱüy�dʾ���AF�
�]��7&�S��ٚ@�k��za�����Jh2��Q�ӆU R�@�,L�k<W����K�����6�����4���,�(�{+�j&����M>8�I�����rc�����1��x�O�ֻ.8��;U�=���y�5+=qXo��:4�誸b�jT�Z�9J���2��~�d�w\dLqY�<�]DM�Fr��H=ּ]�8m1�A\ �u��>���a茙�\f�:��8e}�]#��8Z�z�'{7������* qn���\���k��;�P�R}�e����1���,�G{�:�0�v	�sJ`�r��&���.q������@�.��xƾ�pՊ>�sN��~o1�۞���"i��0/���F>�郗�	�Ɔ�Cq�:�R�U�:I��U_��&̭4H:}�A��3vh�a����r�
8�!��z5���L�9^WVG�2�:��\��g��eqH�t��
��βNܱ�����@��~{�߃Q�Tp��,,II�wkE��p�Tp��hQ�,�|�pz`	S�Ӄ��c��"Q>��9z��<q+]ޗ���7T}8����ۤ���1�Ӈf���7�D�a�>˭Hy.�&L��=����/c����Hh�ˈ�X���3���LfV?�=u���.�o��V6�K�R�2
�~����~�ۀ��
�
��u4@�P�O��~���{�2�n_fgo#�r5�15r�A���f5̨9D]�Oٚ&�Yc��
�9F���w)7]�n�L���2\�4!����+���O�O�]�����\c>G�#�o�dRo&�_���™����"n�Fa�:��6������` �)s@��ʔΡMԫ�W���Y�=+�3�2Y���ݙ���Ez��B��QC:�̹ICu��"������ǫ)��L좺��5��`���{:a-�A0�:��'U͞�c�z�3%�:�
2\*ʆ�|��=a��	�w�D����ez0p��l���	cO�{���q��Ϩoͳ��HbJU���U5��'��դC��S��_=��&����42#�����pixeÎ�2�tSL(F���|Ƴ�O��ȰeI�<Ak٭�qj�ő���c��^���⏴=��4�c$�}eӉ���8H&��t��<ݕ�GStAh��y�MޖV����v�
q�(&�j��#�,d�L-��,�Di�û�W.�x��p1Q458�i�������
-��>�V��S�+1�_��C�w���D�=��t�x��0�M^�ĔA�zr�sN���JYߘ�).�˦�pʃ�Q�U�"�Hm<��C�
�3�N�c�/O�>̩q):8"jp��c��-�{�@�hbA5Ua�}s}�-g�F?��IC�q�r�~0t��!
]^TR�E\<2M	����&���8y���k1��r�9^�s�kM�_���o���.����9�����\-�d����6^����b��%�~�U��t?����?X��ܠ7��EC__n��^��?����k�����V�ඦZ�5�'���3�5و�:����Wޱ��a�r:�ұW`S5:���O�}�5����x+�Ռ����LT��:���fŭ��h��S�&��(�N�[�p{�T&��W�B�T�i�����u���@+]g�!���چ�pi��bEL$]8�wf.��N8�[�����Y@E~>g����cO�K���{�.m]O�&u�����y�p�2��A�)߆}���s�D��f�����w�L'E0��j��,4�"z���g�bh�m{b�&�A�ʪ��4���Y��}/��4�A��Qʛ�o��(�g�w&�
sج�X�@�7Z�fD��%!�%ST_��p�﷐ғ^���;���T����b�N��wa׫��z��t&b+�S_�ɦ�W�ᱤfMi���n=1͙I�sωŚC/;���N��������,����X=,����,�
=����c���ƹ�7k0?jGG�34D8��a' ?>���+2����aLե�_��Xi=2�=ߙ���u�*��������'��W���4Y��\��)�}�l_����5XV:dظ9&��qj�:�R-�m�e��Z��Q�`R���F��|Ի��`J8UQɈ�sìNˍ4�X
#Ӏ��Bd�ҩ������4�u�:-]+�xn�c!�!-��*��3$H�.*)a�G��� Qӧ�����>�ۗ4�����{?�uW�š@݆}`����op�&O�/��T���S[[�#�>���G�:zL�/C̀7�c�^�wJc�h�״�%�t�B�i�����c�Ӽ�V��0v����H�6sP��BDJ���
��Y�W�TFN�2D�-�
��v�(�4Y�q��+�����3�]���Ź��'��Aʞ���8{LQ\��H�v�0��d�F�\N��5��9��B��%�
?�|O�1���}�
��޿��
����U��^��e_����ؓ�け@�&p���O��HQ�q�h3�}�?�E)�I+���q�����_�d�0��^�L	^w��_�Ć�U��PL�����l�xh:�JK���z�������:a��`�P��i1��1S5E���c^8����C2�-4H�x�pm`�������:���.9n�c�T�= ��z��-p�3�"�{���	��88���o���e�z����4У�
�����V1���U� &C3}�.
X���9A�7�Gy�2Km��'�O�BE莌����ѝ��v�\<蠝�����ħ��=�����m;&QֻR���2@D�n���?X�IP�<ʳ���N�Xvɭ��n��1XT1�&�5ru�r�Vz8`8���J�2��է�u^�h�M������T����8�����㓗���	�S��V
j�5��]��q�����k8
���&xG��3[�����q����@X���9�Li]9�h�]|��{��bj�>MiA|2�=%��)��2CG�tg*S#�;���S��0�>���j�/�J�`.�glzi���"��~&R�O�?�
Rt�D	�$�B1�C�6
о;�`�.1<%��ES
�A����K�i����D�":���/���\�_�D���������՘��izg��=��8�.H�vÓ��.|o�뛏�ɽfj����}X��%��С\h�P�j�

�����g�C�#�{o/�����XqA��(�:�_x��dU$�.�y�����⽒!���4%" �>=]<�UBz����[�!�����H
��R��=N��eY�"�$��it
�k��u��X��d"g���K�2s�	 �5Ć����U:������Y6�����Fۮ��z�]��1i��K�\]w��Wv�����#���o��w���3Z��0����`���)�I�G�=�K��/W.T�a���׵1՜��1����yg�~�D��}�W���	�d�?���`�FC#ǻ�������-�Λ���i|�#�J�
3�g��}C�YG6��3�1���t�?�{�ȠӨ�y��b�XZ�uE����>��S4�DWwa>��+��j
�⡞���R�ۼWv�u��D?wE��3Mk��M�8kod�R����&x?�x�J��:�q���c9n�a��\K��������7ut:�`�2%��}�¤L!���
����Ĩ}2�JUM&d�b�K��ғ�$�
������6����v��Y����Ȑ����@�2㾜�2��k��C���3d���qP'l�
-T����̽Wk�Wnf��*u��w�C&��ٌ-ʽ�3�r��JѨ�=��Xbh�ʪ�Ys�Ug�a���7���/���bP��pp^NcC� ��cC���,�-���|�&I���5�:��`λe����;�@7�	b�	omqѓ�)-�:�"�ɫT4�C��F�e�2���@~*�+��ݑE�,{�����͒���M�[e�@9ӗ��W����DϷ^�
c�a2��U�AM���oܨ�kE3�s5���9 ������dz���C*�ܻ�nrfX�`t����5MK�&<�列&x1�����?���y�k/�r������2"{��]%�W̄#`�c4�:��PP���(Y��c�hg5�����
�p�=2��Z�_�ǧ�I7t�|�%g�z%�>��E��ك2Q�qDG_Q��;q�#����eW��6���g��a����YtDY�V����_?�7��S��<P7�j�v�d1�F�}o�]���m�r�6���s�B�1�a�p�&P�ƇtXwLn��]}x�d�$��cO��'�Ƙ0_�w�1r`���TWa�`���?��FB�Wg�xj� �z�O1g���|�Tp
�v�O���֭�!�x���;�:ֱ>���}��T�ꌵ�@MqAX��ap�h�(�����:˽@����㶦[?�v�X�h��œ>,Y��УY�u��N{�PD����͠�=w�?�n�(̶R�_ԴȎ��rM"�Mm�jP��˭�8��W���N>���F��!a���s��풣��C�u�҈U �3U�X�?^��7F�=��DK��uPo���"D�/Nڒ�a:_�p���~0����v4�
�������A���?���$!�im�L�3 q���̹�|Lď�!�'�Y��L��|ѻ��a�.2�_o�S>��n�2��`s�=Kp26��u7Dp�[��g�� �M���:u�K��ippi���D�%����_��4�MU}�,#�'o��쬑���̡Ǒ��"f!
�e�50�o�a���of�������h���@�%�z;�3����\&Y}pԑ���PÿF�친zM^+�7��j
��	���9Z�:k��ʝ�*�3�̫���Y.��y]��)���*��ک�k��?�ű!x�)��1{�My�xi�&W�����e
��hb��a��Z�/Ë����=�{�b>>+m��5��ӯ��u��V�X��oϢ�f��fS:��FVt����嘬�>}S�*��M(�o�S	G}w�~�D=��A��ϼ��;f�\u.|��&K�@�g֒W�ipۺe��`�l&��M�霒�L�>d�p("y���:��NV;�.�����)��W) Y�S3b�T�ԩ\7I�~ϳP[�{;��0Un���O1i�?#U���p�1�ñ�����1s�i�8��;�e����y��=���|NN
կ����V~�.��;7��nm#ލ��!���>���[��LT}�:����a�	�i���2��NvOw���远�
�p�?�nj+쮱*��b��oFJlC��'��}p����D��.L:����#�]�	�d��e������k�A�m�Y$0��L5ď�5�Z�7�D��J��i�a�qH82��QGF�[��=��x�#�O�3���rrp�}8`K�RuxV��ۭ<&�s�D������eK#��I�>6/����3��7�w��\�(�<�kߣ�@��9���H��t�;�·�'�ez��P�:��mE��`?�����|�џ�?x�n�#4�4�����w��mr�
v�<����Y��t��{�wF\i�G"��E���R��./׷XE��]D��60��ds��׫���p1��'��4,�ڮ
G/�t;�k�?Y�'��Ϥ�kzR�:}�)~� 	�8]2��ᚦ�‰�CW�/g�]��}�]�v�I_�*��iF�\W&fL	��+����r�8��
�;��=��w���`��z]y�ꟓS����5R��f%/�i���^q��v�~a��b�sm=�g�8t���Ĭ�.�/���j�Lg�3n�i�￁��8����g��
�Д�{��4z�䣫�r`���1'�޼�@�Le ���i��������*O�?���1��&;������l}1H�L��]�rn�>��Z]�~��Y1���V�o�a��º�ƶ����}}�°��ٝ��킢n޷>��J5c���&Eع����7LLoc�ա�.��*g��κ�����?������Ϡ���{>��OJ���7���?G�zW���D�`�	��?�����>�ﳚ�b�~	�i�W����>��5@_~c�����/�=�����+��h�����M(�.nӼ�"*�2�,�O�Xh"`+��=u�S;��VW�6�@���*��R�Rd2�Z�1��r��wŚf��qJ�����׍��pi�]���'��3�|<ǯi�,�Q{�䔾�\:�=�UyR���`��?�����d���\A-��e�"�"	�>`^�:��k�,���4q~�g7�
���h �?�
��4�Q��2����S��(W���s�Q��7
_����tݺ����r��5J^R��2I����1�mN(c�/u��q�b��h�p��Tϸs��<��?���)��a��#�~U3�!�T��n���^�a��I��ε�̿r�O?W��GE��$�����u�h�J�G{��`P��n�؏6*Z���U�o��a?��+��^�~`�DwFa����$��Q;�W�wQY�ӥ�����@��� 'I�O�z����,��}���Ȝ^����0?�s��6#鏸c����ɔ���]!�`�d�4C8�p�2�g��c��
5�eCu��W*���3��>&8%	�:[~2�%�?���^�l���X�}ӗ��2��0v�AR��m]�
?�I|ws��R-գߘ��������08�-�^u���`�p�bZ��}g�8��:�r�Sz��y�:�[��z�~�s��
~p�glH�V��*��@C霟w���r�2QO�cM�@ϒ�:�I�+£R��sk. c}�f�5xf/~�/�ʓΉ����j˹��'�\�S�N}׺�x�
��z�(�9�)>.���aIc��Ҡ�w�����tO�7��~s�"��N�6��?o�ՠY��)������[A�_w�V��-��1^��
��	��k�5Z�U����W
-/�������q\�
.�����ĺzTx�w �s�ך>1����G��WG��⢚L���x���W�N�3��8��fHâ�;��9�4�M4�p-���x��pdG5�F�b֟����i�&���<^�}?g��fD�V3 J�Y*iQ&������1L�{����r���A��+�c��U(����X*~U�6X�.ꓟ�=̦��F�ʩX~�2��,�7�E~�X���Z�KY��46&r�c2�"���>S����9yxCD����
��OLr�:�p3�q�C������`��̸F���ӂt�:���4d�k�;��
�49�6gK�q�=�ds�H=O�1���v1�_�o��onrC�;�o�/�">�>��_O�~�%�C���]��9uyo��s��y��Z���u�����=���#���٘���Aզ��pT`a2��g��ô���ʪ-τ�f`�p] ���N���٫!��,ǂ�a�����>�ƁWj�9;Gӧ��~�뇗V��3*	��c��s;�,��L��L3�f1�_*-��	�dn������jȘ�K�dpn�"'G�?�M�i�x��D�W���I�?Y�[���˓C\�Y���g�'@${N���i���S��Zv���p7�Y�g/;�����S�a�|����Ά~K�T>�E��f}w��d����	�w|v�K�2�]kb�V�p<�ȃ��_��<�A����jxP�10$j�����Ʌ��̘��O
�!�%p�B��E��d��ٟXK�t�?+��?��
���MȚ�ʹ������|;�ӥ�ڸ��)���q`�#�Ԭ�K�g�7\hB���-� �`�?��R2ۧ�MJ�����S�;��t��N�����p�����e�����p���_�ӔD��#�r� �3��"c2��&�4�5�L�'o5��C�H�t51dq�;�Ps<L�^�_h�� �QrIh�2G�7�j��"v|4�U��l������H9K���K�ѧ*�9ɧ�o~at��i�:h�Lb8���y���8��p����*���$d�C�2-q��������A)��8jO:�~���C��
z?�}9��t�z��t��/t��ҥ#\&����mu�;�N��$Ϊ3wc��_����3��R{p�gi�p�uw�.4>a[�QDr>�	� :x���g�އ�2���}'�&_�fcP�A��	�sv1v�z�c�T�K
�S\�\馟�sg��<��� 85��{���V���w�N\Ħ���:�Fy8>�`
|�T
�f7.���NB1b?��:eZ��r���)_���N�ߡ�b,��T��.#�;;_�=��I��B=?f3Xz����P��t�rp#�1�r�T�4�m)֊b�C�8���a�u�c�ff�sG��D\��c��jd��A��W�ٺ�4Ys�]h�}�e��#u�p�{n�Y��-2e��������)̧�0`�#+�Sa��`�94�\-\?~��mJF�j��ھ�Ls�#�CU3�n}�m�ˑ�R)(���J��Loۋ��O��:]���9R�1Ɯ�P{?�'ݞ�G�����oO�3��n�y�A�)��z�q�����u�0�����F5��I��}d������a�]&������Z�-.4�q��o���{���)���4q<�%\Y�h�z�۩�h���b^'��]AT��x)�a��&|�.�au�m�����`J��v�
/���c�a�>ΰ��>�{�~�`_�J���� ʠ�4�~�P�t�p�XG��<B�)��a���LV	��ɲ̱ݐ�:7f�𘢚�`����aQ���e0j²�cXXo�Ms��p)�3{�
	2h��an�p���k������{�&�92�\0C�9H8���!}<�%3dHY�ا��y*��=��L�t�w_Ϲ�BL]�oF�tfX���_�}��O�u�&��J��ѻ�[��j
3��ݾu�l�D�a�=��g1��T��ծ�:ĉ��d�7u䌲Y���9�1�</���x�4��}w\qA̝8�]s���2e�<_v��
�"�y�א�ƃ�#��O�s�a�H�����Y��)'ޮ��	���1g�o�8Z�Lb�L���Ƚ:�ѭS&��~eq5�ʲ�:�|0T���r�0�a2Ҙ?<z	�"�Tz����X������:htV녝q����p�����A�|�����m��!�fqoo,u�5�8?���&p!s�d�u���F:=�3��COӟ
;Փ�Yh�8��#B
�(�뚭Lc�f:�wH+��w+E~������p�.�'|�f=�xd���GY�8lT�G���<��;�K�8~�)��1�3g��i�u�br��+��
�끝�j�W�N3����N�]`�ʎK��}.�>��(���g�<����X�_�pҬM�]�d�a���LY�	(`�:��$�=&�0�0'Q#��c&Sʫ7L�7�W�0Ӊ�����#�i�����9�!�y�i��h��J]��]�~�\c�'�����ta�.�"!���@T�Q��%��…���0���q�+�����c���2Z��2duO��rs�*�C� 0W
�z깡��8�5ޝ3w��L��9�G���Y�:����x�:�v�ƹs�g�p�k�}�}A
�cY���'��̈́��^�aA���#=Qg����k�A�����GI�W!7v�M^�N����ƺ9�̌�\��]��=&�\��s&BaÓ�ˤ����ppD��.�9��2'K��:nMJܩ��_?�c<�זC����&7a�6�����#�#�{2��t0AR.�a\K]SMGu%�?N�2�4G>��x�i`�0b8񣊮yxXe�7�t����cx���p18�����D{�ź��e��.W{1��<�Nя.���R��9
BC��j�'F�Ep�q1�G9)�ɖZ��=�w�(�u��H��cR��qF���y�e�)�U�ys����.�'�r�>8� Ï�r�n��?��햬�v��9wJ��V��
ѭ0��ʨ��}�s+�.׵3���Ȧ��S�J8.\:�tQM�8s�zwɇB^����f��8��#�o'���:�ׅ׋���i��j�W���prrpc�k����g�n���#�a��~���@�9G�R�9��ᳳe��[��h3�Z.3.���x0�r9���Кc<������k�n��x9�뮺!���94ȳ>��1����q��S�H��l�c�VqG�x�:&�f����njC4˜&<&�.��iFqu�����n��|O��91��/W�?�4��׋�8b�pI�'b��A��VgW!0�4���oQq��n�����LN����Ìp	��?��Ÿ�|���>3��
uZY�~?��A�?]g�P��냚)Y�I3���H��=�1��UqQ1�!� �[����u�4�NbM/
C]o�\c9����4r|�`k��>�s�开O�$�'�{gC_NDQ$�sq�s�]'E���v�hX�_x��d�u�cY�t�<v�5.��o���5��01Ǽ���1���7�''�}��I-���
�D�h"��+���W/�׊୸�s~W]Q�Je��(�8P�2\�2ox�X�����q������'�p��"��P��3���ݶ���C��p��`�mWW&qB.@��Ѝq
\;ƹ!���Ml3=�Ƙ�[�כ�
'^NB��O�֭O��#��i�~�t�M�Vi�D;�N!͙�߳�����8pW9A?&e���V:�-�u��d��M]�oO����u�O�����#yx[sP���
��S�]y
זZL��_]	���4�q����T��M4��?y�5��S��&8�|'��?�(s>�}7GO��a�?��c���~�)������1����cJS	�1&Ar��,=�á��
�tn����O����$! 10@AQPa`q���?���
�G�x9��.��[y�s��O�xl��8~��<��� ,7�~5���m��K��|�2�#��Yy~�$��� ��8�<�m�x�68W,���,��,�-ߠ�q�$�y���8#�r"�e��:�x<G�x�|H��_����)��o9�o��l��G�px��x�P|7��
�0$��� �"Xy��F���<,<0�-���6����-�~U�~�x��g�}ǻ�?)��m׃��^����m�Ym�a��&�eVl�o'�o���>g;�s�>"#��|��b��o+o
�k�m�ųg�1o�m�����6rx���c����;��-���c��78l0�e�!��,N3��c���e��8�?�?�6�
�ta�H�lm��<r�m������[�D1�'���Iue��E�/��m��s�d�<<�}\���T����<�y���9xz���x�Y~"!��,��>��\�v�F9%�g�8�m�"�c�$Ͷ�XYg;��e�G#��<�Y�}���<<k��m��q���#o9��~���q�l��o�,��e�Y�O���K6l��a��y�6X|�c�dž�q�����%��Ϟ��|�~��2�	�e�O=���L���:�ط�ස�<�τ|	�c�8��-���q�o>���$���or?-���98�`�,n�xܖ�NG���,��>#��a�9�7�>��;�d6��[/�,�y��d�G��D[o!�G��e��p��#o'�g�}3����<rՍ��q7�so�rx[��JKm�7-�-~���>$tvy>��&��ud��,8�ea2F�� ���#���,-�m�RX��ٞFy>�c|O��Ң��x�W$uk�m�ʜ6��;x=|�A�<��puX�/�5��G��I�>��!������l��^wx�� O�s�Ll`l�9b>W�ϣ��H��!�n���n��e��g��`��	�� -x�l��<6�8�3�,�88>c��w�[�x�x|�ݷ�����a�Y�lq��{��|�����,�d�c�>��	9lw���|87��X|�}A=p�>؏�2����<T?aӯ3�[l��o�ۖ����xx�G�=���G�ܶ�#�m�|�,�x��>�=����O���d�!�|2�xw��8'��x"߇#fI�|o���e�;����[�'+�^7�r��l�bK#x�m%���z�����LJ\��y�)�E�m��|3�x�6��<�G�:�Ǩf�6�a�{�l,�2؂�,E��K	�@~���m���˟�xxI#����w��
��6��Kb�N����6��2ܕ^=�dv�vՖA��3�$6p�a�wo��Y�g��,�,��m�=� ��e�y�%�R�A�#��<o��ٰpJM�
�؁��ls��l�-�[��1oQ���xG�ՒI���Ѷ�|���,��+,-�/'l<��-��Lc�#����%�e�gc��<26����I$�,���m��Ss�S�=���-��u�dAd��'	-��z��;Αm��!�@��a�m��z�5�^�9���|7����$��?�<��e���݆�в�$g-�r��%�,!��p��=D�؈:�v�'�9�ˆ����M�f�1��rw�|!�83���m�,��y}^��CT`�ܗN���S�`p�~If[o���{C r�6�|w��B	�7o<�K�p17��%��x�,<D���$pϐz�x�<3���`0��c�n��2(��@NS���6�w�ݗ�.�q�b4����^��T���F-���a���!Ȏ��-�m����	#����>^��g)%�e�#���[m���˸���H13 v�op����Y�xG6�=�a���tOra�r1�ds���>����$�>9��l�Z�C��%��:�6��,���6V�a��rO���/��%-��\!���r�ì�[f@K�k�G����#��8�w���I��w^V�p����3�.��0���d,6����>��${�WhOQ�`u
_�ܖ{�޻��a.��r=q��pG���_9<��|�}��7�q�er�`��A�ṛlh�L�7���e=�����$>�G�����߹={��FtA}�u�ؖ��"��6O�dgVƿ�e�)ilw���G���<���t��F� ��"��6?��p��=�^���`�S��s����{�����oGS	wX��ʇ؆F�D���d6��1�P��#��,;���-��S�/��m�υȑ#���c,$/m�#0k�tZh����m��v�V>�w�%g[�z�:$$�vVB۸�ff��e	���##!@���<7��!��8~�Ū{&NQW��goYT�՚K�y�()#� �FV�_�nr��6�-2l�����#f�}ˇV� ژ�mB�6��\�X��F��M������N<:�|�M�`���t΄���v���1�gYbX�
 ?l�ZRoR�e�"�o�C�ɢ�8.��Yc���%ٝ���&�cȉa�>�?��d�{��$�.���20z�H�d���IdF���pd�Ix]���k.��1�c D�r�`�ޠ��`��dwudnA��"$�|���|��GR^����G�Xuj��uu�:o�~�p)!�j{��F�`�Y���OY= �72�{�ۮ	��Ae�F�ZF�R9,�a�H�s�`���m�hl�6�zGN�X�q��Զ
�mt�T�3{H
f�-�mL�]�Dw��bk��N��,N�0gVڏ�vw�;;~Y�E�c����gX,����?�y���HH0�,�q�]0���ߤ�`{B+��0IB�0/vz&�D@b ���g���*���X��l���xȄ�rw��q*w�&��U��e��l���2	��
�m��w�~�u+�v����oyvcr�c=�.;m��@f�Zz��;�����bgN�}����d�m�z���3�[��a؃8#����Vm��+�U��87�bxϱ����ʓ����oH���m�3�wv2s�g��o�?����x?m��
�?�'����v��,�P����=C=#v,�lv��{��8Iln�H�<	�,��S�*���Sn��p�˸��m��ܗ��ñ��t�}����]q`}�E�jY֗B̝�2ò:��x#����7#�Y�1�Q�C��!����.��%�^v[|r����[m�����VM���g�p��	��=po���'Yd�}��Bn��g����!�A�ݻ���,��A}p��?�0۴�o ���6x#�V�oͿ�*�un��6��J���2�B�?#� I��н{���t;!ǩ5�6�`��&$z��W�k��ͳ%=J��Ns�[�##�y��?�>��N�y�=)����I�m�p�����w���m����2�;�l^��CB�$�-�?y ��f{{��7�s��{�d�|��m�6��'�ӟ>G~��=$�l�i9�1j;��,��YoqLOp;e�zߓw�����������APX݉�P\�f3x&p��s����1���d�]3�&�ٻR�o��jL7��Ƣ���,�.wd����FgwS.��,%��e�A�9c��!�f����ޭ�n��8�O��S�.��>�jp���㨰��˒]Dq��N�[�⛶�.�Yvb�@��p:"_�M��,�9Ɂ�87����]�'[nl�M��L`��.�>��z�:x./�-���a����t����ė!��q�#�a��9��Hr�����a�x������z�f�`�{�ݞ�����Ǽ�=�ز@�{{��Ȣ	�8 -m!�{��i�a`� 2
dC�O�iV�u���o�o&p'�(]̻��������ޟ�=$.�N���1�%^� ��!^�ϹG�DN��q�D���lD�~{�ǻ!����mӍ��ې��-�	hZ��i�'�+�Z�RɆ��n�-e��A�ܒ��۾$�
��/��$��f7cw�����������"�F9�H\.r�rq����Y�"���l��t�=��aub�>�ؖa�&̺2sc���p�yv8�me�SP���0cnLJD;g^x��)gs��;,��� 1��pH%;��O�&�%6b���`��U����c�v��D�%�ػ8P�] �����fŃ ��C�9�r�<�Y�C�,��²���������V��{�=�fl:زc�~SI	���F��9�~���;�@x#�e�O�1�,pGkz�ї��6
㻿���,���G$�Z%PX����:r@� �_�ԘI�׫D7f0��@;�`�;�u=1X]?5��(��9>��HF���	������ψ��8�Kx�r`p������.�����B\ $��!ޱp���!{� �I�BOM�8��# ��@h�vc�'�Y;��+׌�=�ݶ�a�Yg�}�2�(XX,�,��̱��;*>�ض����\p'#]��	t��;����6v@�? %۽�A�<%��|ovA����@�Ԝ��Y$�ee��(G�>Y�d� �4����녿dm�C��� Y�09�ݟ��c��z�lxI�-�b���rx��u)m�y�2I:����O8�&dƷHÒ�Y�z�r�$��;�9��Z�R�`�2u~I���]��%�w��ܐCm��3��&xeߞI�#2��e�u�1o��,��%%/�I�[l
�>����	�G���u%�7`���ar;�v�k�A�X��A��r�0�e�m��w�wk�����͒I%���kkk��*^3l��\��D��s��$ +wz� ,��@��Ȏ��G ;6��x��8��԰�=�����?����a�$�I�K,l����`��nJa¹j�1��,`�q���"=�+��g�c�p0���Y�Y���/d�2O�I;�8��r��ٜ��٤ԍ�,�6���A�#�Ԑ�_��o�|g�c3Ye�Y�6���%���u��u���h��,�nɓ��	��x$��^|���;�8xN�]$�#�,�xI$��R?$��sx��I %�t�-B�]��b���dm�a��l0�fٞ{���Y�s�r��BV�o�ΖL��<B{���0�	��끶Xe�E��8%8��<߇?��B�FE��8�g�EĹ%�Np���BD��d�Ö��c���,���b͂�2�dl�a�3�nA�8e7/���H>��$uB�K�b_��e��@0p����������ὲ�M�B]�{���a�N�Y6#�^4���m�����g���<@8	2�~���t���r
�=�o���X�N
�_�?�|��dAe�Ye�Y�c�6%��mF�{z������%��l�~#�?��>t�#쏧���,�V8��7�c�������,��>|��
���kd�Y�YfY9�����3�[<�s�e�K���H�_�1ߦK�P)<3�ջfٜ�6Y�|g����/�^z�6]I(�z�K$��#�,�
�����b�ߟ9�vα�][�p�%�A����s>�PY>�,x�3���vl|s�m�6���4�0�����,���<rϥ���s	
�x4:��� ,�8��|O���oI��%���M�q�k��)! 1AQ0@Paq`��������?�Fq�u�նC����ϸ��NrX�94���K!u�9!!�g�7��ag\'�a�gԍ�߁�O��H㯛�W�A�aw�o��m��Z|��f<`�/��8��v�9.�i%��$#��Y�s��<N����n��8�W���		rX��%�Hr�3�����.�A�Dwdq�6q�z����I�D�luc��HJK�ۼ��xg�tA���d^��,p��2{�266��%�1��b�`�vu�|%�������3�%�y�H8;����9�/%�];�d����m�,�S�O�c����Im�s?@��?�Gr���o#���[�Yp�� �<���1��v�Gd�o_���b�� /s�y����	~"K<S�XHv3=�~W��A�K$�l����,��l��^�3���_�r�ٞ�3��b,�#��.�[��ز}��<)o���=~�-�����m�V�ۅ<Cě?.��*��J���d���:�^0�s�-��O�gk��Z3�'��g㟙I|Ȑ���/�Km�~9���e���oqg��d���VԘ�?��;���Xm��'`7�-��e�=�<�x��o'�;/|o:���8yO���$ ������%�8��{�ǞKg\���8X6,a���w�p�>y%�s�G�Cݰ�%���2�-�Ǯ0�Qm�V�Ňİg�����l�ܖЇx�#����%����eb��͝޸$���[�[��Ns��N���Kܾy�q��x��k�����%��� ����c򼭼6p��ݓԻ$9��I��rw�����X<��gp�–��Yg�<O��p�ջ<)�6IJ�g�l��_��d9[�i3�Ϭ9�#�v>!Y�.Z`� ��͖y��.ĝ�r�R�i3���g'����m�l?UB�)�݇f��G�7��;��P��Wߑug���d��˳o
���6[))?���xo�݈!�P�>���,�BM�'l����<N6;��ۮ6^l���/�g'K\���Dfg�8���,���6��5l6�k�+���Îڮ��g��l�9����A�|�s�e�e�q�Y�t��'׈����9=@�3�<2��pޡ�����?Y$�'�-�e�����U#���8�v[�2�s��Lq�.�,�`X2�2y8��,��შu�A��s�g�d�K�E~���I�<5�����Z�g�#�����8-�#�xee�!��͐��}�ݼ7��8	�<r\���r[���;b��6�y�Ydx�m�k!�3d� �m��y�k�̽q����fv�d�:�ð/|��-��$��=�,�6��ߙy�	e��ή2�v��l��Ye�m��=����L�l��|��?��K=K��<�8<�ïNt���,�/�5a��oݼ��f'�l�2=Y&q�ɶ���ܒs�E��#�1���pudY�pq�Y�Y�g�q��a3%��[�C�:m��ܙ�`=�ȏ���m�a�&���6K�C���lx��������,�	��#�ϻݒ�lD.۱�{�u�#�C�X ��'Pu>���� �Ķ�,��w�\DF��?�9g��0�Lt�Y�|��q�q�'�#�V����qɹ?)�KR��ԫv��a��rR�a����ϒ�!=�[g�.���vޡ�z�a􎬳%�^�^��f;�=�v#�!&NGnk$����e��/R�d{�n��F�R�ݳש�dA�r��9e�a.��!ƹ�F,�����
���l�8N���ݟ�@"7S�6}��V,��=�g	g�m�ë{���czGe�3y�$�Ad?� 9����'�Q���7�7ռg3�l
�ܙ�p���K���A!$����?�f�>�{�K� �V��,��8N7��=Nr*z���uX\��v(N�5!�l�8���2�
��d�B^��y���r�������~��.��:���x�,�
J��y&ݳ�=D�b����I�F(�YP ��8�'D�lud��Fs�{`�D��q�tF]���q��m�mٗ�e�����0a�N7-��N
�>�2��Vp%��f�٥������
�f0=^����0؟�Ɛ�VGm��؀�]��B�_�&x,rF
��3����N4/o�u�����c�ζhi�����"w�����r	7�� ���[�b1�cOq[잠KN��Q�A��	3�E�Nq!賴!�Q\�X���I/s�gg/�2��H����rq���(�{_ៀ�s븖�F5 �ǿ��}@�C~ ��P�5	-�!�6=�m�c��A���&7�-ψ,��t%[!��D1&z ��=N�r6��SԎؒm��8�Ư���C�Yl�|9+�NClHų����xc�����;"w���f��ht�Ŕ�`Y�w�&�%Ӹ䭀ɶ�t���ݙ�&}��@����z-�J0a}�m��2;�mX�HC���O	�dg��
_����8yxv?T�,&��A?���̈�Y.�o�i���Kt��h�(�q*��e����2�e>��LK":����Y	b����N�;�B:Y���fِS���ׄ�ǒww�;/ՍӔ/�3��?x��}��n������8X½[ֶ{b��cXw����:i18��,39�������7Ռ��_v��96�ę�N]O.D��8	8!��Vhp�ܙ孟�?A�8�0:�/r�8�u��1#�t����B~����W=X�$�@��`����p�:�١�-��%���&����8�d�˸�m������l��	$���ޣ�[�œŏ�?�~r�m�g���nk�]{�ˋL�e:��Xt����P�q۟3�n� KGN��R׻WF��/	P=!d��6L�[/V�g\*J|I/�k��;�$�/��0�,�	'�����X�غ�	���)��2�P���!:Z��;�C��n�>��V:�"X���D���N��.�D�����$����o,�G����c=�
�R�����W�2$���$oYd���m����m���e�1�J4�v��c,n����tM�ޠ�K��>��|�J��ɜ3w�I������Ɲp�o��b���&d9�g{=��AK�:ɲ0�L�����d8���Y;dh�:&��rVe��F&+c�#P�:&4�'�s� b����/�ݘ��B7C�/|(LJ�F����v�����[�!���x��ؼië2�'$$���� �<gidP�G;�g}X�ݮ�ӓ��E�a	�v1�}��YG��n�Ē�Ƽ�p��X �	���ax�
d��b�~�"܄�e��2^G���gm`e=ʡ���0�u�%Z�l��zL�G����ݕq�ݰ�!;K�3֧���ГՒ�!��� ��{r�n�B��I,;%�Y��ۻ=��n�r�#�Vm�3���=�l!)�~�~,��~���\}�<dd��4�VMT�vJ�p�!�D'�^6@���d	*��t,�1� ��d^G-H����$�Y��c�P��'�p{��|Żaz���N2�Ky<���xp]�c��M����8]����a����
r����n0=,,�!��8}��u{�=$�K�-�#}q�n� 1��~�Ȁ��c�Y�m�����N��ɴ,�8�#�/� :_��6|�Gk2����|&�=�q���Ye���>�!m����Ԁ�+7����6�p��8s������áo����ܛ:l�pGs���3�$Z_�5�8�Oc,o�GFӨt��������+'s��n���ɓm덷��=��	�e�Ȏ� �����,F������a˟�e}����P�Lb�?�sZg�����)a����p��vL�#Ԃwt�������d�m��V���6S���:����>-�{�?�=g�z��x? ����f�e4�p��Nj����f^j'p���ψ����'v��qٓdṟ�]|��&˖�Tk�X�h[8��p��Fx����f�%]���5�+��۠�~�>m"H�x�2g�l��T�®ՏV�/	a�Y����7�rq�Ȥ�:1�M��|g��	���L;�#]?��~��Ew�	��Љ�'�K<e�I���X�g�k<.Z�M��r?w�|$Ǎ�H�pޭ6^����9c��G�'���!mߛ���|�z�0�"_�;�K�o����=OQ�z��?T!�7g�}��J2�i����a'VlX�ð��l'd���Ba�w,��ב?d�iNÐ���L�cGp}�ǯ����g�3�u�#h�I��e\Z�k�Gc�E�ЎID��x� �nuu�M�-��;n�G�:��-�|c�w�q��O�e��_a���A;��h�ۃ��0���J3��[�u5h�M�e�$����u�&[\&��P!fI �la���Fд}N�^�Xo���'�`'#<����%|�e�~���[tw
�l���sE� ep��JY ���!n�,~�;�ߩ�,��V�6��`�I%�u��a��m��x�^��p��_�?��m��q%�'z�JL�2v6������lK�8c�Rq����b&Hz����	��E�<%��ۄ��dۖ�o�b'�3�"R9=�e��,���9#�N���K��<󍇒^ѧX?B��G�.�/�X	Z�Քc�k�?� �����ݙ�c�O�e�[�,�K׹�Q��]�S�&|A��d�|����8��e� �	�m�nɬY'�l�b����#�0����$?e�T�d�BZ��Ժ�'�|�m�p��c6�%�2�T���z�����l�>����큊�c��9x�f[/����9�f��-|!-�,�ķ�:Xʱ�����&���on6}� �o�J�=:���;��_V:^�-�����,�u6�Z�%q����C�2X5�ii��`g�)�=@�\gƺ�c��y�{��I	�Ů$��d�$D6�2z7�?�����ϹQ�E�${�Xa�S�r�
����Q؎�V =�m�,r�2ò�,%]�\�q�x:H�A�Z�����:�/K�K�-�%�e���C������ȆRl���&-��Ta���m1��oR2'�2�'�a��-�S݂��(n�v�g���3��[�v쇹���wԔj��w#%�A����ߙ�;�K[a� vd��DK��
:�v$;%�3XaYq���;��6۰�lq*|s��=d3�8��5��	b�ש����I	�)�Vc;�{��a���F��"a�����m�"a�8�$�l�?&~!�p.��w�i�}��H�d}p��4=K%%_v3t�
�;b�"�m����@�{����ٰ吹#��%�.�%l���R��km���IG�Í~��\�-�Y��q�v��N'am���R]��Ԩ���lg�
;����"ۉB�l�z�aHK��܀�z�֗�����m��;h?{r^��=Y�'&x��Ye�	ݑ's�I��g�:3�?X�aa0�ZCr8+�d@��#������G�r2vjz���n�4m%Y7��in�3'3b�l�FL�Ck9m�p{�W��
�/��h�L�c1
R����Y�hA�eݹ,8�e���9
�$�cV�/W�����/w��o|�ˏ�ɜ�<|6G�,��m�mc��_�'���i�QC���GXdH����O{6밋ܙ��4�xDz�w�6dw��:�}}�_<>���6w$ݩ{��L�[8�1�;��q�Vü��6�g����=��B�#z��6�,�/Rί��Uiսp�a�����=Z�v3�:AI3��LJxN�n�nA$o	�/Q﹫0�2�2�5l�KlB�獃1/�Cg��$��{~1m�!�G�U�!�!~-Vܶ�I�:���6��Y/�	xb٘���c$񜑱�07����|p%ȍ�9�b{�#�i��Q�t�e�n������?���,��8��e��l��C�_R�2>%|_lPP�OD,�r�'�f��w	+�	�nd,"��8���c��l=]I�]q���iii,&9|���z��HK����� �#�������	��e�88�	��B�o���%ռ��r��ǯe���Nc��6���Yg�8�1Z��{77���w�u3��{~�$D���įd~�齞������w��zN�ωο�'�6��k���4���^����!u9lw�g���S���|ŭ^�1<�����%�[m����x����?9��X	{{�wgYB|��^0�����`��T���O!��!ɻ�ye������E���Ŭ���m�8�w����7� ���o�4a��`���8}C'VI�Y$�
����K�aK���x!��3����z�d�g	'����ܳO|.B��c}�
��6�('��9g�a�B��\���|x
��z�Irޭ�2��O �|O�񿧚X�?��r~4j|ZE��
���*ݑ��,d��l�o#d�xo��
�e��΋�w��Wy��R�mCβ����m�e�-���x-�[o�
�g�@頻c�����7�r�k��r^6�xm����Ed�`=�y�z�"x�m�<Ǎ�����themes/images/erol-ahmed-305920-unsplash.jpg000064400000140465151213255670014431 0ustar00���JFIF��C	


!*$( %2%(,-/0/#484.7*./.��C
...................................................���8�������
h�
�"E���(��� TB�!�!A

� ((�� 4��T�IR H@bS)PPB��� @PPR(Y�(��	c�%I$*@

 �T�,`�A J�!
�!��(�(
R"Y!(YCQ!H����HB���B�$JI��J@�Pa	!�Pd@

P
@P��
A
��PS�H!�HPB�P ��I	*%aH!%S� ���̠
R�d�@�)R� �&S2"̈H��i�!B�%
�  DI@3�!A
)-���
 �,��D124��$�!��1�$)	 ���,��R�@����!
!J$, @Y@X	3@���@RR	P@H ��� �"!e�� ĥD�
!H
  (���dPH%D �)LL�H�	�R�	@B�	���B�8Y
R�
@P
B%
@P�P@(�,1@�21( ���%`!A
R%����&2���RB����PR%
@
P@P),��)
()
@
!HB	�RB�C	 9jJ���($


�JB��� ���PB@A(bT  !HBP����!A

@
��HPB�
B	a[t|���z�]~v���J)��!@$��E !!P	) 9���)�!@�&��
�B�R��o���~7�jc���?m�|퉠
((B���@	(B�B %���%�@ 3 6@��
,��BA$$�����6v��x���&�!HR�B����P(!H
�D$�!
���	BH!�PJ�R�!A�LE�HLJR�AN8��=��wԍxm�gnN�Lz��:�=�g��|�����4�z~�����ĐDI�D(�H
B����(@@  ��(%��PHPAA��,M�!@�#���o���-�2���c�7��������5�}/�҉���r��l1�=o7fָmk��+PP@P@�!H

����1@A*	d�Z��)
R��(4����+�G�ק���c��y��7��z�y�����n��u��ҽ/��׉�c�<��G�<ϗ���}���K��J��(Vd����	H	 B@BI���9�H
B�
B�!� !HT�J ���SMyQ�o�y�9ퟏ�y�<��<���q����}���#�Ȧ2�~�[��+WgL>��? M ���	!@�A!  !A��@@@@$ ��!Hs�%
X�@(B�*`Bg(�U���/#�~y>Ǭӕ�[��9�{�zy5��_f���ך"(Iq<��O5A�~[�z�?S@���$(�%����Td (���HRHQ(R��( ) @�T�
�@���8����/�s�M��8��Y��yɯ��չ=o?z{>M���|���~��(���;�{�s�_��-J�DB�#B"a@�( ����$ ���P���=@@P@���LF'
1Oɼߨ��_��W��y��N��^�?Cnܿ-���~��nʸ��S�~���dA!$iD��k�^��Ӕ�� !�)�
 ��!JB���XB#�@$�	@LHs�)
��@
��l�g��_&���7��3��y��^��}]F�^��͏g�oG�cɾQ��/bԄ&(�ː� 
bR��y�ؽ��nk�$ȀM�&��� "@��� �dbd$��
!HPiQ�s�O7���x���t��߿&�i�c��b�q8�q�t�����'�𾯫�H@@�EH���\�[�u�r̥`!ALJ�R@

B���$���P	HR��R���@PR�8�ylR����㦞_��c�����Wn������|���:ݦ�l����K�o�H@B!�1��B������sᬧ����6ԈP(P!�@K	!@%T����@,�B�Q1��.H|s�o!��y�G��98�iǩ{�_g��z���tm��ⷹ������rY�H��2��nk=n��;^�#��a湹���g����um�y���@��@$�HR��$�J��( ()A�IdA�Ae�jKA���N��w�����Μ񯦧g��v|���'����t�g�����Ls)��x�/����G*y�L6��:�4ci���<�7?���յu
���-;]��^�V�(�RI!�I	(
��B����(�� @RX�pӳ�F�;(��1�f==��9��X�u�a��ʧy��{�x~�����_*pQ�p�����=Da�sˤYg[a5#�=��V�9�x<�|�M�oliM�_z-���=�ɑ@ ��P�   �!�H�21
@PSIbq���QӞ����)����9���{<s����-���G�n��Q�~��׼K:~j�w-�ai���O5��:x&<''��2���:�L�X׽�}����3���Y�
PJb
����P�!HB@sB��
F �B�
SA!N3�]b<�v���ļdm�{�ӫ�O��#���W�����g�����ӟ��8�^,ms��]����c�s�p�@ʶ‘��z���b3�I^�u+�E�]4�����}�&�� 2(21)�bQ(
@B�1 !h������J@B�T�&�Q�LG,7��J��ӏ$��ws���ꢝe�Ҥm���uz^ގ;�7�ZO5mad$�_�x�r�s�>�?�7:1��r�����N���@IX��	B�@S��������
@A(����N�:���4�u�q6�;�=�Œ;����?4F��&yl���>�>�;n�)Շ���z�f�櫫�=��3�z�壦{���y��Yr�Krè�?��w�>��	�JR�!%A!d!A�A
B��	!
P�B�B�B@b``pKD��і�k�ֆq=�=��[E<�>~K^��rE������_?Ӟ����.���s���y��b���7����e}�_J��9z��H����#8�^�,~�~��M}^�F�=�A
@
!@$� %)h�,�$2���@Bg�
SN#�8ռoY�s��곯Ϲ8S���s����H�e�h��O?K����ר�sR��c��^�l{�k��?���q��w~�S�hs�I��i�sv��[�w�[�nޠ�����JB�(RB���!��H(�@R"HC	CHfr‰t�S�sq���~�og|��a����|ݞ
�Ro�]�s9������t��uq���N���ǿ�}KӨ�Ϣ�.�z��ٛ����a�Ր��	�!eH@Y@!� !HPC��%`)���R	C(SCs�^vw]:�U����Zlgq�x��5��w���}�3�_	�Q|g<f�����e\��o�zx}��u���o�e���ZsQ�>/+��>姶߳�vu�RJ�	 	B��!JR�؅)( H`�!���z����F�u�ʝV9�	���1ǫ���.h��|����y�?��mN;VԑD�+��(�c>��5ي}	��C���|�WF~��})���ο9���}?C)�J�R�"B��B��) )�
�
((!�12!J
@�S���M�~3����jg�_ڬ�L��v4��z��^���^ѳ[�����<^�Em��ǎ����j�u18�rM����]�%����}w��=N�yͩ�[k�u���O?#����^��}���P�!)(C"@ F$� 116`�)AȀP@
C��W�q���n*��S��^Ŷ�������L�{lu�k�O+������8��	Ȃ�ژ� �5�d���o����]g�;8yu�V�˜����F�3�_=>���:�RPHB�� � ���!�@ )

)!H

S^4���Y�l^Kt�I�_K��G���{�vb}����;������km��#�Sd&���i9��w妞��?Cw�ۣ���=ܴս<�_=ÏU^�9�[��t�w:�r
X@$ !@bP
C
@"(L116!@��Ġ
LL��!@�>q���)�ζ�-?T���7�_�YM�/G�~s����Y�^
��Ɏ&ނ��ɉ5!��-:{,-���϶w��OO/u���S���~N���SN�-{�O{�G��z,�!D$�% ��)�"F(�ى�!���P
B�P@RB��5�'MjR3��:}���OM�}�>�C���1�C����Ãl�Ӎ��oV�$D�qLg1�Z�s��������0����G�C���D�En4�swQ�q�����+M� PR�R��&؉
@PR�B�� ���)AbuՏ����F|�n�b]���Xq^v���y]���z���צ�S(��E��ZI�T�1�q|��۟=�����[�vq���+����׶�{��{:��>�ת�R��HA)(�)

BR$DCf$)$��@	+��D
 �,�?7O��t���p��ֽ3N�:|�>/�OC�뫶Z���zb�ZĒ#x�3���:�*k�|����͹���=|ݦz|��˦�-jӱ�2�y+�t�ϣ���]����P!A )
�"�;)@I@!@)�@P�'_Z�瓗^���ˢS���z]~S��3�<���Ƽ��=uv�[Z�i�
��*D��;bG55��O���>�彟W/_�}N=�>��Ϭ�螣T��-�7���wkz^�"i
() BR��DD���(XBʂR
bd
��C�^:�9�k�Y+�����VV۴��ޯż���=]�7�����<f���p�T�SNl�;��+��_S��(�kƞ��o�����v�=7�o���w��Gl��y�HH@!H@HR� ""	�HB��@
(, (&D0<�u��'��t�����l�;F�W�>Go�>c��׫�]Mk��xZ�� ��F*�Z�c+��ܸO�󼯽���iw�y.�_�xކ��*��ʬ�^�,��u��C}�Z�3!DR
B���W�@@(!HP@���R^g�i����?S��{�[�va�r����}o���]>�i������bDI\QNzi������'�3���}w�����w�����>-�W���n�Q٧$�q@�e(B�#bP��@TDD즐�(��P� (��YZ�㓛�כ�ҽM����g��6�м��W�|�~���m��]���c1H�'f�m���ރ��������kj�kW����NNO����Vݮ��1�B��!

HP(DD�
@l�

@
HPH���R	.9uynj�/.��&��]���~�jjھ�����5�[�=�CO��Z�5qMq�SX@NI��Y9�vS��?s���|��d�[��|���0����}=\���BP

@@1�!��"����H��2�����
)�(��x���
����v��o�A��:���K�z�j��WF��0WYIdeW5gc&�Nn{z�+��O�^����˒���}KW�\~�N�q���J��� �@@����HR�%!A� ( �b
P@!�A�֟'���6��}=���{,m�1������g�'����}�oڸm7c3��2�-c�9�ɱ�=���/W��x�rӽw�mKS��ǒ��u�����(  )�@)
B��1(@@���6�&D(��A
B�!�b�	|ۛ�cǡѧ�>���uϵ�^߇��?#�>w��7��+G�0�#(sRy���7�����^.���6Ǖ~���~}�<�I��c�{��k@ (!H)�!H�*1!ACi#"B��� ( ( )�����|���������z:����i�ޟ2��g_�����ξ{�־�_ק�/K*,9�ݧ>�;���>����?/ӎ�F}�6��:|G�/�r����Y߻�z]9&��  (!
  �1$����LHm���212!����%�@�(��$5+;��f<������n��碘V~A���c?I��is��x^���^����m�y�o��;8=��Ok�S����o��[~/����NNZƯ??��~���{K��P
L@
P@
@B�����)m�����ą)A(1�R���':�x����������~��=�F��E�Iw���������ߎ-�z�m�$�Uj�sO�z�^�-=o.ݦzkھO9�՗����F��zW�9�����v;�H
B�@ 
HCi"�AD)2!@)�HP
@��!��č4t�����7��M:�C�k��N������[�CF�x���K
s�Z�5��=���=}}i�//���೟Ι�9�)�����tµ�7��'��ﺴ$A(!LPM1E !B�bm$)
@R���)�@B�Ġ���H�W��|�K_3�~F��5������V>�
=:k�Q=ė-�1�zq��}N7�u�CM4t�n�|W+�f2�˟���X�-c���ǣ�����]�GI�}���t�

B�D�P!
BbPbm�R@dA
 fB�������g��>G�y�J��g�ߨӯ���\����V��sV�q<&�OO��>��U�oj�I���zGS8z�p�0��e��O�'���[9T�!���	Ĥ"(1�1)
bn$B���Ȇ@�
@1���V#��y*����i���?�ۣ�ӳ^o��E�z�ӵ�-5�$�Ť3������N�]�G��=�=>����DwZO1L�i@!@@R!A@�S�B��iHP2  ())SbbDbqDG����tY�������[m���ۂ��6k=�;rR�fzi�flWژ};>��m�&�S�Ӓc������C @
D�   ��L(()HPB�#PR�����\ֈ�ξ>U�s���oN�h��~%��\�LN6��Wn��Q��L�>�ѯ{knKrg(fS2P ))B�����*!H@B������ɤ���( )

�%�@B��g���<'.=7?LϮ��Mt�m�+_�}v�k�L�kTog��r�2��G��ulKe9�(S PR�LJ!H
@�(1(!�@!HB�����@�
R�@ )H
@!H�q�H�5�5G�掿��By��^
-�.	kEt�ku��.ur�=V=>��}dz���s���Ƞ���F �R�"�b�PP!�&�r R��!
dD !LJB�B�q��f�:Xy�#��z�x��=-�u"�z7�qu:SEn;��I=?Z׿���}c���"�"���@��!A�"	�"�@@S `
@`o���!�R��!A@����!LN#�G����u�GOZ�4��z��د.���ώu�c��]]���9�B�$�+JPP@ @�A@
BS�A������H2  �B#��:��7�����W:u��N͞k(�k��:�;�S�����!�fd�,GI���m��錀)@!  ���)��Cy"���
d1!1)�C��W�����+<q3���3���Gѷ��9�yL�R�9�/�yI���</�{_'�4���
B11!@1)
bB�`)
B�!H!@��!DJC��F�5�Y�S	h��c^�Y��lљ��Bh">�}�}�i�~��_�7��!A ))� �B�CRbC} !H2!H
)
B�
!A@B�B���8��*r!�d�m�Ҕ��&��O�<���|?K����~��>/r�ҀS�R���&%1)RLJo$(�� )@�!@��
@B�����019B��)
3�u|���Ѭ�������pB���)1()!do$P�� )�A@���ȥ(()Bq5Ά-�}�,�F���L�
!AIS)� )��HbR���dAJ
 ��))
@��@1$�
�Jbqơ̍���"@@RPR��b@o���(�����
b�HB�C )�	`bbr̠� )	�@@dB������Ą)��Jo��� �2R� ( �
��L5$�!L�J@�D�1 ��!

@ $��27�)�
R��B�� !
@��(!L�`��( ���R�!��@C�R���Cv$ (���bR�@R��@�F ��0�!����@����RB�JB�ĥ$��dS��$��)@�� (�)!H B���)
@J@db
@������X�
CB	v B��ȠB�� ���@����)�"��!@)
@!
bB�
S��  �(�������H�1(( !L�B�
@@
@)�Ȁ�)HR� !��	"!J@@Ā�X���B����߉B�R
!AJ!AA����!JR)!��J@B�@� )) !�$�)�2�#r&�
@S��%�@PB���PBP)�@%  #!@@�� �)@P$!�%�A��
B��()HR�B�@B���
@
�%1���Ĥ@
@@
B�Ġ�bA!H��
R���)
B��E!���(P!�(Ġ�)
b�)H�� D1�, 202 %12� ��)
oD�@!A
B�@d�!���D ��(!HPP
@P@R�A($���D!
c$13�  (މ�)���@P@
B�LA

@@J@") J�Ȇ ����%�0���$(�

P��!A@!HPR@@�)�@R��HR�&`����Ȁ�oD�LAAAP


�@P (��AP
bP@R
B�  )$�1(!@�ȂP�!��0�)H
P
!
R�RbH�������(1�)��%)
@@S��bR��6�@���
!A($2� (�(12 )
A
@R��!e�� )�  !H+%HS�܉�
B��
R��HR�� (!LAJB��B�B�
B��!�����?!1"A2Q`a#BRq� 3�0@b�CSp�$cr������?��H�J�"��:j��uq��	�'�o)1*�6mPz������
g��S#:�盁��q
�C�a-�b��d�ɇ����9��H�s/eMT�R�S�\��0���ڷ�*U�ff�Z�R�����盤���y�?X�r����*�m;:�tu�-�	�5��TFټ�U�%��{N>�bq`��4�z�!�H�3;5�����ij��iӳ,���U׆%C��\i(�*����̴�+=��oa,e\=Fl��N�y��a��Bt�*{�叽��gVL���/�3@����h8K�X�����5��=:�e#]���^5DT�·+~�L��<&7�s-��D�=�9��ܢ��L5L��3�+���c3��`i6n!�y��W��i�?i��$��Z����U�!g���kn�1��#s�Fzg]�j�R���^[Â���,��N������3.��t�Z7:��q�o|���;��1�W(:�g��'
�K&�JF�#w&b�/
�ox��
Y���F;kj>�
2�A��^=̦�|�{=�~;8��YF�wV{��|ef�T2��2i)�m��,�J�P�傆�JT����T*�."����#�V���c��[���و��M=c�m���N8c��e\��A�֡%���fvo�l�TxJ�f\�fDW'��Фɪ��t�C�����
�Z��o�`5<�l�Dw.|%ͯ������5�f}�G��yZ�{>�h�)QW��v�@���H������Qr�ְ��|�N-�T(�ʌlI�j�[�0�5�ƥE)���=��(?�:���m�;�˴v������I��êfxjsk�j͓��XϮk���x�2x[�`���H�YWnP��Q��J�Gi��kT׺ ����@ԙV��G!��U��"VF��ľU�S�(?���nC�Fy���s��El�a36Sy����~���H�B&�H��1m��(�
���e��1I��iM!����5Cu;��2
L�~�
:�����"�ƪX��N����_��\�}�6f�y�{>_Ɋ��e�Ro��ͬ���#�)T�ݗ��_1��9L�M\X�����J�N�FKo��%��_�.4?�2�7 �ʧ�B�[��cc)3�	E�5u�S���� �mL�����1K۠�lҍAqc*V<v��=�������)��^ڏ���_1�fk�+o5��s^q�L��aO9_1�(�^2�>����"b0��q4�t��6�s0���ͨ��ժ��I��Y�ꘪ�W*�@n{q-jX͗]�ǵE�C�ʷ/�u��6�� 3^��GpŧS�2�=������r���ׯI���e#7i���H�G��%C2���XM����я��vM7*#��f'���*�����1�`0o�!��V�{Z5{��������c�Y��`w��+iJ�l��)aj��,\509�4��Vq�q����7��u�=�����*a��T�7E;Ϧ�\�m�k@�攫Y��K-�[D�w.4q�`�U6i�ʝTV��,iAB��J-G"�=b*F���8�73��4�;0��3?E&UV����9��(`m�c��h����d?L���7�f���3���L��h�V�_ZG�c��eac:k7�Żz�O�Q.m���2���"��c��b�b��/yO��^�%�P[,z���)�]uc*8E���:d�M�6o��㶵N�B^�,V�Σ��q0�)��[�-�6�绪,���5>e��P^�9���C��>��Y|<�c,d�����LJqRۈ_�1,`��`�(穿��Q�E1s-^�(-�8u3��<���"Q���r19��)�1���e�M>q=��&�0�.l+�DV s�s�OO(�ʕr�4�s�*L�q��9]��p��zB�\��2�Q��52���ajv�$
ͣU�����$4��	����`�����J�XP����	s���$�?�n�_IN����.�ѱT׸��8�p���rg�Ӣ�1��\H�1"b�Ѣצ��:\k*�ۍ��Z5	�e6��3x.�����u�LH�
N�DDm5�R|��<�3�u3��y~��ߟ�f4���8��>�O��%\WJ���[1��D��T}fam����3��R�/��P�֛���N�+r�	�x��[��-:�I�v�v�b�[ގ���B��t6a����07��jG�J8�*���Ṃ�R9�3�O���3b�R�s6�9�l>��۳:��c�����N*�����$�A�=�켼�+E�˨3���W��16�_��6��Yy��.s�R��[�mG���
N��(�[=[���:�c�I��{x�u����+ާ?O���jtS5� ���۽���i�K��?���/X}�eX�a�3U^a�]%��<Ϭ��&�	Z�9�����b
r>�(V��{���Z��nP�J*j|mx����[[
L�j���@����Qr旘z� ����N��ơL��
�~�;G��
�<
�Co��f,�����۳�����7{���jbL&������f�S�m�F`�X��w�>h�W�Ӭ��΂�a2{� ��[� l"�hm�.�����0�r�leAE�������_�����T��1� �G|��30�b��ٌ��X��eL����N,�b8����iH�d��}V�u�J\�Q��b��jv���/��a�d#1��Zy)ߩ������c8Nw6���oxI�4}{���VC��˦���&�􊖮�\eo����5!�sF9T���e�iP���lL5]U��x�X�3��[��j���>m 9�������R��)�>1+��=|�f"�sl�N%�q�	����_	�E��������CV��Z6�ܶ��b�1�����f�̥�s����ݕ;���pM�,SM�ҫWU_�Q������mLR��[ݼ�f!,لzT�o�������a5]�fq{N� = J�թW�=��ь������e��
y�|e%\�ð��W�
4�F����8���mL���`7��E��2@י�1�l�PXo�*t���SAٌ>�W��VP�	�:���6
��Y�l��OY��b؛�n`!v���F�ac���UT�k*V�_oH\t��m���H��14�&ה�H����D������w�[T]ɔmsm�.�#�|�xhP��2ѥ�^�L�L����:K������VѴ>Z�b,Dq��Y�R<#Ra�
�Ѯ'�XrLK��^Tj�	��b�)R/rc��a�DJ
�K1:CM��1�U��b�%"���o��X�H��pu�#�3U6�IM*E�?���	E���d�V�1�Sha��0-�Z���*�v@�KgI��V�0�#@L8�i�N�n�\�ҍ�='��얌+����U��g�9M� N�)���:�%����P=�巬w)�D½�t��~�a�ґ��c�q�a�(���DwDŅm��P��Cm�)�eV�g>�X�UN��x�ahs[�%0�	o/b1
��nc���ʍ�Z_-@|c��o�f|���=ɔ�-E��+-ԉ�]��;PL]�1k�h$��0ȕEN���-"b��7�d�{�%0~)K��xO/�\�r%T���#mq8?�%JF�=�ۋ�O�8&���Tzw�H�����훺�p&2��U[a��c�QY��axH\�N��ݘ�Ɇ>�F���ciJ��S)O=�4^���
�WÕ�C*Ob�����F_D����e5��u�!��y�WHD"����R�@���Ҡdc�u{xOnZ��8u^cv����E�/�ȸ��9nV:�/�(��b��K�+l������0�/�%EmU�yf.������K	ih�Naid[ͥpxd�xm0��K��ױtR�1�ER�I�a���t�.!���s_�WBo�{��c̚KBi��C)�:�F�X��K��m�D�G,���2��������	h�Na(|Fm��Gc��=�X%1HZQ�_m��'6��϶�� g˘���
�p�*ꢵ?��E`˘C9��k�r?�ʴÉ_D�JЉiiiiiiihyN��a��;�X+6v�
>)E=�V-��	�����U��T�q�5C���kJ}����f7��K�T�a�����bc.?	P�ݟ���{*�IZ�wBFP�0x�PY�ì��
�o�*���Z5#2�KKKK@�%#)��p�Zh�y�ԸnXf=%֝.w�K��)r�~A��Onc	?�N���0��3^ܧ��Wb>�I�|K�
ӄ/[ǷA5���ᆌ6���.2�7�
��r��UN*m��L� L��o���7rX�f��2�Ҡ��PØJ�E=�*at������Eß�S���\ �IVV�R��ũ���c��@
e�š�Nzg���h�{K�u���sk��a�.��fZ��x�5f��d1��+�W狼�PosiG�b)
����Q�R�QQ
��LM,m���Wۡ��KUr�孤>15n��Jx�8�Z��▅�/�'~Q8k��h71�׭�Wg�A1*��3�&��.��
%�h�x�hc��WZ�a�����)����|!Tm���ֿ���zf�2�U�4��̅eJ
�#Q���eT�VIF�JĦlfK�:T걳Q�İc)��A��B�)�m�5ʖ�B#5e9���0�Ҫ��I����?�Ï~�&#�U)�be<K�`*�1�Eˀ51��c��O�L:�+`I��fL�e����h�N�p��U����9wk��)���+S<��)8�����`J�V�;Sk��P�*���!�ś=��h��i˔l�l|fڡ��'�5%~jdG�^ è�J��W�״�%\2:[o��
g?�gp	�*.{�����*fV_�p�L��,�bRQ�R��f�i�L�<g�=�^��nn`�~U�ҧ�J�c�å�YB�nE��&�2�$A���M[�8U�t������e��\�cm*S&�#�"a�u�Ǖ��)�=������?�h�����O�gB7�0�D����F"��	��,�Q�⳷uf@j�1~ءC��;i����5궟,U�L:�X(�]�Jb�<'����Y�í/4����?�4�7�봨��KJ8��{�
�����"b�u�5����*y��G���g��Yj��2U�Rp�w�~/C��҅?���X���P�N�^�
���-�m�2�~��ao68��0��ʁQc-�,"ڵ*/u�}��q+�i��X��O�,W���8��F�bO���ۼ�{mx����|(z@��6iG���E������)��nom
�2�FY�����Y���l��B��[&�,U�$G���􌱗xR:L���---��*�f�h*���>k���0�TXW�7��[����u�4�(���:Z-�[YAz���2�t��S���Φ8�^�mo��e�c�~�I�\^U�L�@4��Jc��p��t��r�=��v��00�R�=eW�t�kkv+eJ�f��*��F��F���P����y��X�c��{��;�i�?%Zyb���7�L(T�
`���Z[�/���f�􉋠�٭��X��R��@�!YZ�J$C
�v�W;��z��D�IB���r)�|�hD�2�%��-�jm���
e)�>�ì�bjk�UU�7�Z*��Gq�`I8e���7_�9��_z\L��*��ժXwe0���Lbu�O[�KLeH?�#*%�L9�����S[�������.!1AQ aq�0@P�`�����p���?!���0��}_2��%�"�5��g&B��2��N[ƫ�QQdB柣��_��}�%u��\�0��~�jKf�8�,b���R^�Z�n�Ud�>�Ia�嬍���{;/�5�d�gV^�q�\%M�US����Ha��C���-��i%��%�~a����^N��J$�F!L9$T��ҧLx5��,��v䓙�C���g�A@\�Ȇl/�<���.F�&܊_�2�ȧ*A:�&H~-q����Ƶ�H��5A�/b+F+�?�~\ƥ��ډ��c	�QmYuv�ɀN��de�5V(R�ӡ��2YP�prD�����yX����<6�–&Ӌ��v4�P��l5���%��va�Rq,�,��ҍteh���As�r���R"%�ydǡ���w�����Z�ǚP��/Ca��+#V���@Ǚ��F���/�g��B s_��$7���A���iF�}I�_��6�B��e�u��_�K;��%}V'k���z-���G��u�F���ѷ��G��pn��$B��MN�2�Z���"mHغ�C��b.6�d�Niچ���S�I������M�܎�
�6��?���0����j� �&K��	��kN�K�|���Dj������dM�Ƚ��\f���N�ZM�(��)�Φ��ƴ�$�%��/��dq͵�� x��X���*ނJ�J�������,.�mߺ�:�
���H�.D�ˮ	�%ԸC�*�}�}��������������*Xխ���~>��$+c)����q݂Сuh���$������p@�],YE��͈�BaL�|;�k�!&�b������oq�,��f�{����D�����:\�� �ޛ
I>��i�v�حJ�H���
�w�ᧁ�Zd�) b'�=E����1't�����9�JXX����e�Y��CYl����3C`jۤ�Ѕ���%��"��!�)Z� ��������I<OXR$�̉��i6�+�6��P��IX�[��|2���ً]δ)�JZj�ĭ������KQ��P�d�JUvMA5�w����cnP�]�u1��E]�v��;]��v,��O1c98YBW�(��)%o�`����}���|?���:�I+Z�w�O�O9:o���T^̝Ł�h��É�H�O�@&ܷc�Z�T
'pmQU��Y���Y����z���;��}"o_��Y'�!��#�([PfXl)o.1��}�vƼ�E_�7�ܔT�5)9�/���F��a�T�eP�f����j��ż�vS������(u)�U�� �++��xP��-�@I,!p� �Ug�/(�0�L&�JE�Ԥ�A<n-ר��������{��.Lr��j�$�)����������d]��~�b~O��E���l���P���5h��z^��[�8�M8��0���bZfܬO��/#S���a��[tj�*[��E,K�ؙc�}����_<���ұ�Cq�lF���!�E��$��b��,H���HkV��0uH�F#��Ao5$�Х1P�|8�NV�fnj^�-KB�J����M�9G��$��Q�7��7b�s�+bM���A7.��e��
��R2H(%��.-3#ť=�E��2�mn�S	B���sA�=�2���&�5�p�t��m�y�2`B�l)D�M���i#MxVwl/���%r

<�ƛ�z�k�_�G#��Dr�6�Ȉޔ3z��{�(�.�m�PZ���F���d3��"�an
S�2u����P���!a�b��eӻ]��R�4��)%��FV�]�e�Z���)�Atg�Ț�X FN��W�VM#��t�j�H������4���#,�]�I�3o%#>��Q�O'('B�qi�Q��L��*
��ۀk�,�
~������)e��
&���i!� %��F�娞o}QK��we�� �*]�սG�ɩ��5��Y��4�ݳc�\G<�iɨ�6���|�)B�dбƧ]X���I����Mꏻͬ�7V���ƃP�H��[��(�!�7PkMĬ�0��:%T&)���k���&$Y|*
��VҶ,2�S`8̚}B#$Pż�E�|��BF�[����$ʃ�
q�{�(m�BC]NE1{/e?���N��؝g��̥�T0g��)؜�㹰x}
(vuؾ��gYER�������ք�qXkȒ������Fl_A��(uR���=̆Yq~��:�r��7���Qz�45jё���F��.8�J*MV�}�c�X��d!��b��L<����Z�0�f�-w(�� i!N�E�����+"�a��j{���Z���M&��!f]w��P���$A<��� Z
��э,c�c���F>�֤A��i)yu�y�SC��bPe�&.�1�;�
��
��¸���?�J-��'`����	�[������L�T�<1��|�A�pH�IE��Y&�{)��I)����#�BA��
oq��Ɲ�Y@��T6J4�iS^P�nҲ(�N��"���)p�8��8;� d6�"=�lsB
+n�f��y"��o�Y�9��='�-@�`;]�d��)%AE�
Q����_ׁ�dX�mP�q�xL�X2�9�>��-W�Q,!����D�I�:�Bwp2�����ؼ<#��I�zq"è�����'���B���l����5+B����JU�]f&�Pӊ�§L1�!�~������$��w
጖FrZ
v�������t���b�[��BD	Yr>�^��%���hL��H!�6�^M�O��#T˰I��y�J�ı�=���eؼ"�sF5���r�KK(�chfG����D$����̊��v(V	4�(�+�:�������
����7v:�bY��=� }R4:�U�5?G���!�'pB��
$��Fc`�Lv�0�:Nd6,,ZN�4���ʿS��K-��}�{�#Ɇ�
��Z�]�=��qO� �zh$$$j�f����wHB�â���lC�I7�sw���DJ���IC5J�H،~��4��[E�-OB=�A(t ���Y�K���(�,�AvѬ�l�"�I.7��)�����$7GC��҇r�`�4ʄ5�D}�S}�Ma��	�X�#�	pBA����us��n��&ރy��b����ad!���Ϭ�����G�jBh��۽���q���z�f1&5���4 ��.		�iI,���y�(,I�"_�c��@�w�^+Џ��U|-o
0�9e�GD��hL��*�E-ah��2�(:��CB��E��<Q\$�蜢XBn��3�L-	s`DŽ����6C�V^��
�k���#
��ob2ޡ����Q�y\��W�Ƴ�F8ԕP%�𓐲��"M!���N$�}��s��Q�Co���zX�'R���a�H����/oܱ�YЃ�EE�����K�{��H�P���J�#��En�zCf[�%c�ɋB�����B1�t
\����K؍��z�7'����c`�0?L ����IJ�f�Tk*
&�
�4�S��	9�5:�Њ���%9Zu������\�آ�H�H��n����2=����z��Fq;�(�P���aCquC�-����t��	�)��z�Y�ʽ	�k$A'�5����v����eTP��(���[�7����k�׾|�%�	k�P�bn���:��C*!n��E�~��]R�X��tc��Q��F�u/B&[�-���nP�'��д�f�Z��?��7ٌ}!�eľ��Ɣ4�%���mn�S	x&�������-<	ck�d��F�Vs�f�r�TV�XնJ�1<�Vヵd��E��R\O����V>���E$:�>%�[�6�t�LNG��{�,���r9]a�mr���l��p���	�D���(�$k�>�{_��m�6����0J����9 �s����"ű�Q�V�i�{��U;T��XY��jH��(셶���p�p� �DZ0��#�-F�)v�д���Jw \��|T{U��|q���o��\˩ڱ4�OM��1hr�;���(҄t3���A��W�d�a&�
sk��h��s]�j�6
lb��Hi�J2-i��zU���sY<�,����k���Ec�yj%q� �H�[��ۧ�˹�x|����jc8���!9+�t�K��\����Bm(sAT��vn�
LЬ�ۧRW G,����O�NM2ą�q_���tH�Y0�'Ar��#I$s���85W�d8��GL{��r"l�d�	\��������fL�Лe�	#�,�B�w�;lM����U�]!*��LX�bU]���1h�B�\rנ�D/�Ӄ�c�r�v�%6��+��,������0��F6�AlȊF���61��#��-ġB�D�^���_d��,�U�>,r>�{6�H�'L\������BbOb���������`P�,����>�Ng�����z��@���͡��C�����A���H�FC)TدrF��B���m�6�3�&���68����}��6i�t�j��̗FX4�@��>��t1�(�Ɂ�䴑�xK�h�6R��$>RJ~�=�:riǷ5|�O�-�B�r)�h����LSf!�9 �1�6-�ê
ͣR�_6W?s�'�g��/aCDA
�ʺl�����y4��4
2olƭ�sx���\Qdp����� K��ӆY+L�		��ʹ��.I$�k��d��u����_y|�\�$v��̤����9�^83ȍ/�/[~[���N��A�-h-\�Š����߯��8/O�'g��|�8���G�:�^�/B}ǎ��E¾{%�\|p�x���=	��{r_�<<OBtD��A��헹���F�k�;r�z:~7��O4z��9c�_�i�/��o�����?��ף��c��W4��xy�=诋�K�� �L�Dp\(�S�3�y<�Ϟh���O�}=,��w�<{�"}Eʸ��޹l�!=��;/���/U�yo��z�(\��3ǭ�|��L���q>�GnE�/���ס�NG�~\��}Z(ҏ����>}?�gԮYNz䝣��ɍx�\}9����ײ������⎼�G.�|���s��>E�/a^����m9���)�'�v�����¹'��ˎ>E��^�rȗ�/Msy�<����sG���(�O�kd�?��'!1A Qaq0��@������?���ys�_,<X0�Ծ	\3_Ň�����ơ_�_��a�\�>���9��=˵Tk�Yo�^1��^!��?��O
�L��8��Բ\�w͞��co��kg�gR�po�r�ԳԿ��/?�ʮ,�f��[�)q)&
�:�o��e�r�I^�?�bQ�r�Mp���a��y��5��x�yT̾4����p�Yp��x����Ի����K���/�LK=K��<�F������R�JkSd��9�7��L�o���<?�ӟ�ܩ\u)�S>X�b*B�"��|[��3�|ܹs>�n�u*S�X�,��(����)����^�3�p��?��x끏5,�=�W�_eO|�*]K%��\��<H�R�K�/�Ť��wZ�O�X�j�?��wN	~�:��y��\�1/��g'�J�8��ڕ��x?�O�G�/���ܿ˾~��Q ���
ppN���x����a�Q����<ܶo�����9�������LrA����W�ߑ�yW�C����+���G��F�y+��x<+�_7/�C���g��^#�_�2����~&&��ʙG"Mrqw���ǿ1�t�f��(��r޳-:��,���+���+��d�Y���U�S':�b�W�z&���|W�x��aŜY�ˏ���P�fZ��a�eb�X�����0N1�rϱ�w��?��x��̻���+��eqD�ȁ�ln��"_
�n�	x�Rx�����
e���o�t�KдD]���%+3W���?��_�9?�	k��ح����N����_�ǫ��vx�:�r<�ܴ�*�G4�RtJesU�D�0�_�nO�>.���G���5��^Ӂ����-ܶ�qYmKۋu2w3�[3��\�8�Q�y35�.-�XK�F�U�}��\?��ǀ\Ի�#-�]F���>$ħa>Ó7�����6/P8��RgB���S��Pn-FcD-�=x�,���7.~FH_�}��Ke�����U1�:��x!�%D��p�Ơ��_���y�%E	g�n�Ë ���5n����.�Ӳ-�/Ѝi����î.�+�6�J����l�:K�#d�Z>�`�Ŗ]U����6N�PA񗉏ln
yf�<,�R��<�+�._��\u�!��\YY7�qPe�pp���U�{�C��c���51��Y�C/�\�,��$	)9J���Qg�N�f,
?XE*���i��`�‹��'���d�T��J�}��E	i[���I�����+��3ż�żcìs���-��`�o��r�]�J���%L_	�����e�T�?��:��w��e��9)�!�8+�I�E$Z«e�3��XU���j��6���UV�Y���;����p�T�w�Ww���%v�L{��b8op�*
���@��(�	���ʸ
cNbq�\u:��~X�*U���0�u��\2�{�+��U��(�rF ����*Qr�/�=Lp�5l��}xtA�x4�r�.a*q\�&�k��ӎ��3k>�N�u'L����#���F��_��?#U�‘ʊ;QR�i慌Ky��s���Z��h-8��嫂[-�\d��9�A��ܻ�+Ʈ���)��O��\.%�qL�ʞh��J�=rN�SpqP�I^�q�rpK��jP�P���{X�m�G�J���;�Y���b�Axx"1��4՞0@pD�͍�KyP@}��فۖ�,I\g�����FWP��K�L	�`!P�i..[�B�8�|1�j�2�<7���,&��;�.Y�+��r˩`�9�ŷ�ɘ)g�g��/�p�,e�'����ɩ����7�\o�5��W��ۂ��#V���%�fmؕ�A�!x��$d)uU�)�4�}�dY�D���40�B�ˑ#����k<gl^��Y�L� ���6K����-�0��V3��QjZ�Q�w7-�r��Ե��~U��K_;�:�X�Kp��!+��W�ݼ"����|��@�?�>�\���b����Xr�Z�(��h�jU��7�ȋ2�aۋ�h?UkVKU����BJ`E�S+��������-\U�d
����W��.�B�e���pm������%)Z��2�A}�x%��r��O��p�1�1������N�%��W�W
$B���u���e���]�#R��b;�V8�IB��UYbaR���_�vS����f'�S7���:�)��� �}%{{����V��{�T��x
�D���^�1�G��b�J*
�y�c|�]���P	ytYZ�l��`��|�-��8�y�-�<xY�|ߝ��|XK��1�
^i�}m᧹�g?����<�0au
�r周�ō
Xc��<Z�i�}�Ay��d�V'�W���z`&GUK��-���:~�#IV���b��+H��魯R��pbOw��b˗�X{�[	Y����E|��3V8VB
j6��*�.��[���3��͙u	|\/��/��.\���px\�c�SԳ��\���}��	s'Կ�/��E5L��,b�k�\�����x8���,a���SD��
�$�<	�k�,�Q�в��W�בhΡ�`�Yt�?���Pҏ��Qă�8��yvEҪ)��t��3	�k*
�.x�HT��
�A5��� �
���ܳ����YB+o�4�B���mCN�ᗺP:��R��H�*�Û�{����˛������Ǯ�(V%qd�dS8��	]LK�|t���,��>r7�y�`��1�*)1���T���no�A�a%�
���f/Уz�Δ�ݑ��uU������S�q�Y����-B��l���‱��<�W��،�Jø���؊����J��lź��a�"���?�\���.�I�Q�w������(���
��#�`���Z���oB!D���_�d�Xu.	Piіz�qoQ\����J�xX›�g�ŕ�S�<1��\s:�5ŕ��� {e�-���rql���W�c/qiJ0}z�t,�1~G��U?��\��tD�B���;������kw�a
�3��S�;��z@�o�%�p���k�PnN��pE�2��������v�:z��q�Cj*lp�D
aD�IÊ�ZU�!-TO�U�5=�G�T-Y\E��t.��pT�U)/�W�JK!A���fYYm�e]�E���|��-��i���&)e�8f%�5r�TJ�|u^ ���8̠���ŵU?��ø���:�l�<��21H�i������WZIM@'E�"��#����B�"������
��4�˟�m@?��On��Ё��[-X�,WP�=����r��Zj����YJ�(�rҩ}��1d�@6�+C����02;�W�&7h�$�%��I�������+F,�vȱP�8�Cw����l�"aC]Ơ�"�GMB���T��퇎�T�l���W��yA��s_e0��P�{�/��U�WR��u�l��¥J���W���ƒ勨�1�`7P2���T#q뾒w�p�T(��l:Sj�_�q��al#ڂ�Un��~mQ���<Bp��B�d�i����A���&EJU������rHeBh�e^Lq�nu/�M	��t+����e�~�p�򼕫��b�����_�[���V��
�*Ԡ��QJ3���N��aW!�o��tj�w*�K8�T���y���d�+7��e��J5*jS�0�Y���2J{�8�"�%�ޡ�=�dIJY�
������Q�}��d��|�+D�)YKY;71��R��(֍1S��Šf��c��h!��+
F�;���k1d_6�^��8 ���(���^�tu�0~��e.�����To�oJ˛�!�X�	Mn�g����B\h���MY^������hF�{$��1�f�B���-�1c�R
T\8]�ȅ!�6��R4���tf^73���xu^9f+2�uz�r��LLK�\����"K��3����U2�|+/��^J�IL���T��%_	l���Nj*PK��^"F���-h��.Hm���
��q�V��~�ֻݬzb��Ţ��U���Ծ���iK�M�L�p�a�"RL$ro�(?%��f�����n[4+E������!2"�0�p.����FËȅ�f�B�bGA����U:��2O�[��ƙ_�%�Y���!�w4AdȄú���z.4+Z��E`�9��l.`�z�q\�漱L�.ts��X��J�y'i�\�.��WR�fHj3�!}�0o3K��:�K`_28�킻�cm�`*c�=��CD�;�j#��f�%�.� FX�����`����������/,�,�Ok����!�Ǟ����p��ԦG���l����.:�afo<��**e@�,��P��/�����>�h��^�ORB���*��Z�e^��u-���3��fv����]~%J��`ŖS�z�o���z��H��%��5�_R���J=�{�q�*��n׃\��|7*��o���S=�w�!�Q��"	���!Y�JF[��ji�A�a1�&�2	й��!J�9��nK��08����s���S!�Yu%��N�ʢ�缋ƗP�M� 8�r��Nȳ%]{���*�;Nm!Ţū1�-X+���I��e�B]��U��Z"�wn���c������U2��p`��ʗv���X�bc��\a�	��j_���f��^��W35�\�� ����l���8��""�cR�ಕNe��Y]@0�P��H4��S*зR��t{�Y`��F**Uo��໅�V��~<�}ha�-�a5�WԨ[�>�-�[ؘ�(N�xq�
0HVW�#�h��XUIf���۴�//�#�A�����q;(�_�g��~��̨�*�8�s3�`�rqF儣�G|_�\���8�Ύ���U��R�q�o�z����Ej[��*�<�渨��ʁz�%l��	(b��X�'KO�(Ğ��n�o�fE���T!W����8
v�U�
�z�[�C
������UTo��BG�d�)k��c�Ol�
�C�����S	/�)3�*�D.W�f�eG"�×K�m�e5Ê{ �״6�=@V�}L
RF&b�%Ax�p5.�I�G���	q%T�5Qwu�qֻ�]K�'MU�{���œi��7�-��}�t��ߐ\��K:��N>p����c���.��_�'x��as���p��Қ}TN=5̻!do��;�Y�PK��h�d��c��G!�f�i�ɧ�.��|�d{��6�i(����z�8�1�@�b��u��&ȃKN�ص���Η�گ��(`{'~4tE[J�V~��
v9zw�L�OyI'`]�f.�p^����r���po�K}qr��R^2\b~���>�����KIhL�[��q\��_%�xG�6pxQ\)Z�Yi�r���$�p_�W��MEt5Tb�{&��s�Bb3�K�Q���P�ֲʥ@���ڄ�pR�
6�Z��k�P�ms�}�Ip7�AB����WB�~߱��tqۈ��+����Q٘}��أ�ݏFb<6G�e_�o�-/�^�`W[�+wiJ����E=(��b�
)i	_/�짍%3���D}C�-q��
�Jp�9�<,��M��k���^�UfW�+f%����s��� r_J88�1�ܨW�D�-�̴�x��6���Y�e�
��u��U%fiZ��/������*���9�l=te�Q���>��(����	Z/J��}%� R�������<+�H<,9c1�*1i�A�s)�� 1B`*4g�	~��柷���07^B�	��	$�Q��r6� �U3�Wl8���<	~�7�_r�����`k������p�\�nU>�'j6K����_��G:�љ�7�~����JX����%������5�(!*�e��=�:�O��Qp���F!��l~1�p��_j�W�H�.�A����ܿ�U�5w۸8��b\�L�R�J�>2�13E�@B	|!��m�Fԡ����L?ة�fݐB�(]���X2T+�p�1K�eb�-�hwH K�c�fO�d�fd9���{�J�R�M�Lp�@�)±�U��l��%{�)&&:&���6;�%�m�qR��9+��9�a�Eܯ�j�b�Kt�)�&�؛ Q�d�F��غ�j��ch�cڬ�Cޙ8�%��?A*���N�&��
�nW6�T�\o��9#�����g:9R�'�J��M���Ϝ�^J��L����i�$����b+Q���.��_g��}&=��W�,�q��ZKe�%�`��}K7�\l�Q�gwU�����X	i3�ʔT�����M�;�j���k�ԮF\��+���B�,C�`�,�<;��>�O)�����'��T�]��F�@��
eB�д�aR�ov����jpa,4u]���a�`�2��8T�#�T�+���!P���+��x���37��>wx�?"�()L��ZEŌ!JR�	�m�fz�>á�K�Z�2�%�����J8ʔJ*P���x�\�����%J��P73�j�w�	Wh���O�o�N�gg4�Y(�����V�𷕗{����{����'����π����P-ʼn��.]iJ+���@���Z� ;��b�eD�rT�0�eJ�����Tn���٭���WEz%�TG�t�uV����]����a�2�L�1rƯl�3Pe��Y�p��3�S*��qW+���\ܲ_כe�[w|�8��TF�R�@�_�|S��K��x\߅����_�W���ۦ)�X�%����m�
�>�����i	8����mJ�y�d`�PԨpJ��$b�Pf�CIQ�}%����x���_��I�ܨ����)h��z^"���R��Nr!<9f����) A@ɤ��e�龢�ľ�֦8^.u	rĘ��Yi-tJp�f�_���k��/�Q~cš�sk�bZ������W���nϰ���I�E�I�Z�稧�U��g]���O���QC���R�h,& \2�W8�TL���g��aZ���E���#�]2ij��@1�L#NFl�E����F+�GZMb6Љm1��TF�.���b�M��;�.S1��R�Q1>JYO
Tb�|Y�,�/��D�Ԥ'_��m�ڈ
0��*�����e��Ja͔bԹk.��C����,��0�;%\��X�Vw�a�j^��t3g"���.%"�n"l�Udt}�4=Ϟ=�*�O�*T�ĸx���F\ee%[Ͷ�W1N�Q�a�����;�؋h���]>�uL�R�m�,!���p����.�z ht�Y��	��z�\��K�*è�	f���?����^N�Ev��V�O7�^9	u2�X��Z�Ä�<���5�4��,�d�J���
��["V$0����:)t��"�7�D+9���r�UJ��`���e>#KT�5�a�z(��@] �'���J�N�R���-n}L��]/!���-�D0��b�J��֪k�|�+<1��˭�]���R���c���b4�,�f�b�qo5R�Q��8%�G¨�8y��7(p�:�|>�T�y<(e�\i���Q�Y�3+Ȋ=0-�\``��i�� ��̓�RB*�.�j〉��T!r�*T+�l��t�t�s��(��n��qy�� �Y%�����`�@X}���@!�����J�f_��{��)�w�|��®�&�����+ܣ�+R��,4K����Lw�w��'	�bV+�8Y�-���G��$���[)��qԭPQ*@�����%�h�8L�v��9<h�Q� ��W�#*T�*�-c���Dv�.�\K$�뇠�Lk�����U��/P�g�B��� ���,�(�y�����{��S������~fc�Ǿ1ƒ7ܰ�n�ּ�5y���L�0LW6���}@�ʻ��Z�ָ��_��QILpK����dS�Ǹ�RRw11Y/�3?�|c�w��).�`)�`շM�#
�F%�өVV�a]�0��J�$̃��e����id&I�_)��D%�J�.�-��(�dv.�
�OG%���[Q�o���}9p�id5�d���Q��c-�����*ƙX]qS�A��Qz��,��A0q����>�K�dq���Je.L���JR�F7��	x0��N�F��L3.���o�gd�û�o��LpB�up��a?�'���^n 7w%�k��F3#��%�B~ط0��m�ײ�71�A����*%��-K��3n#]���i��\�]�Q�d*�`��]B��d
g���
���/������
�X��g�6EqS�I��e�-��VU�[�W���.eg1����(����Zja���e̓]�Rg�e>�}������J.|�Ƣ�Z7,+)c���Ħ�@�y�.`I��R�*�L���<I~���-���NMEƧY��0a�*hG�k�W����n4IF���&���*�ebPƶ=EN�Z&(��1�#8A��:�"ޡ���%z>���������Dg�}B�&�mSO�XǏ� Kp/�=0}�LY�E�J�A�������e�	i��MԨ��u0����r˭0��#�������]�(��DǮ-���_
���Ժj-�������7��\`e��J.�j��X���ф��I�ȴi��1�h�z�~*� �P1�'���b�eԸ)�b	Mi������Lq�Ax��M���p�O�`ENK�@�A�1���!�U��$3\(����]�[�F:�M���ax�"�K�	�[�4�r�3t?&8R���BԸ�[,�-�k�Sz���Q�u+f8�}��q��
:���5�x8���5���R��Xqt�?���U¦���
��sl��D����T�����uu.��J6&�8���V(z!�A�^��I�����*g���_�MĥA"B�Y���ҥ*�Iї[��x�+7��Wh1Z$Q��11�"PL(�ס�ە�DO5����!jս��eq5�ʆ*U���z��#4U"��A�������IF���[�T�ù���22�G��+��%n!�2�U*c�&W�Wڔ��X��l�l���E!k+��%JSn �:2�sp�ʦ�L�1;�,���V�*��e�x�&���`!�Y&��ύ�,̣+��<��~�5’ݩm��Re��lI����Ԕ�U��W۠��q�P���(^�L�B�%��^_�7�����e9(<��ۅ��d���j
^nq˧2�R�����@��V�L��Y_Y��~@���1��g,m�G��&W\W�)eفcB��]K�r�X�.\��U�-7+�,��p<]�3�W�k%�1jl�/�#M���Yz�F�TV,�x߸x�R�՜l#nx	��8��r�+��A�vK1�eE:a]ƽ�:ea����ʻ�X(S=����WX�^���"�<�>�*�)6��qZk�}�t�$1E�5hd﹏)�Ԃa��}%�E'L��+�M�0����4���^�0����w6S�m% JHNke!L�-:�*fM_��?Y{�Z
��CXT0uCD��]
,S���Բ�D�n�4����m��BV,����7����q%3�IX�WɳL%!2�0R����]ϋ,��81E�nZ����-0ľ����|b+x8�d(�����f�P��5**�w|]�W$�L
o�S���A�@�q:��m�6�!-�<ĺw�`��_�$���k����
I��k�&~�:<�A�ʁm�(1^�p��kl ���߼��bmy�2�c��@H��mJ���A�J8�t7�������w��۪u����ƻ��!H�����p�8l���,��
#u�)�#�#+�f��/8�@�_l�� �E`ܮ��}qs=�%�w|7�K��|�7���bYPK��]9�z�5d�l�9nd��RcU��
@%^�팼8�._8��J��=�Bw��CS��.�sbn]5(����,Զ��-�|[�eΪVi�F�W)��QwD�(���f!��m�3x4��&�����2�o��;ۣ(�+R�9vqd�n��*�^}����*����p��Acb�
vseA��!��.� V�σ�m[_�@R��—�{)
���'�ҹ%%-��SA�}HWM_���+$kf��zUd���|��ˏ4���i��,�~�.-�3O@w��
ʲW֧�+���ꣂ �(�a�"�/	���'L*	���[���s��Ļ`�(�J�p�a���C)�����7��A�X��Y�c�_�	�r�Q���EL5R���VBB�Ze"C�gt��7��F�	J(�l��˳�
/A��U߾�ѻ2����B߼��>FW-��2֠�009�8TJ_�S$���"�!���Ƃ�;���#eF�S��ijk|Ia��PG����c"�^�@���^�ES�૨���@^�֧ڈݼ!������ӽ����Y�/p�qg��S��L薥˼�̦�pN�����
�)T�Oq���@�b�9�%��LP�dަBf{1�P����%��j���Q�m`�*[8��cf%�]��Z/�Կi�"���3�=���sj��/S��&�`8
��)�SP1 �OH"�:�?#�Y��
7��XAT�E�S_$�
���vdW~l�[Y�X]d�߀�ϭ���X�CK��%���r���Fɏ5��V�u�@{�w��w|(���™�̈́��c��i�P��d�S	,
����\���;f=��-���e^�鸓6�ԫİ�n"[��9�a�Q�x�^�%Ӗ)��Բ���ò�~����/r�r��Ә�:�%\1Ʒ��KoR�-���|�U-��P��$�ߍ���RT�n߄: �$xU�0b��袥�5A9b<�v�l�M�V�JM{���(_I�ݿ�"g��Jg�e��2j�b[�����o%ÀH�V�ě7LNvi�����*���$�{̲۠J�MJ�`������}
��+8���/�-��D�n4p@���.dFcS^$˙a*_u?H��V)"-�X��
=�1r�(�����Z�\��5)w(7+�-���x���j�Ԫ��ܪ���8YW��0����xIӌ��[b bj����ߌ��G���VD/ukD�3�*-��fhW0����J�H�Z���V�tMA_�,��Q
*n)~
a�&���d	��p(�f""˥���NJ���f	wQ�ʼ��\�,1,HW.]��h�Ժ��PŦ4���N �j�U[1���/�LS-@F�ژfj�o��e}����=L�XCr��s���5	�	-�)j\��e��X��]�U�Q7�D�V�UF2�mJ����TF�G�+��7�&�z���6�L}�J���q.�jǥS��-���&ѣ����j,sI�.�j�#X���+���5�TKha&��� �U�tQp���9s)�/@��$��Gl[��]UŃ�,�����c���+�Ạ��Y�,�Xp4�uPJb~��.�:��Fu\P�:l�S+.�mTq�=F�K8�x]A9.m��?*f_-�
�I�|g�mn�X@V�/\PJ:�3b�)�/L�g\^7)J�QlZZa�-z0��{X�J��j�Ft\upb�
I\4�g �T��-�J
!��,����/-��[:j8���$R�6�0t�������6?j�v�J�|�J��.	E�),��*_P	Bӆ]����"�P�P�J�q ��y�IJ�1\��L�
=K��8�\�-�ٴ�Y�j(!S5���Q.ڙ���s��U�g2���A�/�Y,t�t’�VW	�d�5;���&�S���V"�MOpU�o|,����r�ឡ/�L9��ZJ�Ń���3(�b�Rʘ����SM�ff-ڠ��4���.� � R�c�%J~eD(`k�A�ZV	�*T6�$t�%NU¥�k4+Pv����v��·x����2���`A�eT00��e* 8p�:���0\�T�)\ƍ�eC\�x����m�[e��R��A�z�.]��-�KG�~��i,hYt�cڳ�2�Xb%�ࣘ�MV ��=�N�e��KM�r�L4���n��
�(�(( �5���\���@��`˖˗lÒu��RJ�bbw��Ǽ�p/�0�̥�0��u��߇r먽�-3����EKk$��Kt�c�_7*�A�iy�+t#a��:���%w��Y�U�[��#�����Dz3ȴ2�jS
)R?B���H�L�E�7�@h���n�%o�P3w��a��21��[Wr�S*�b̑�R�a׎��VY`�:J��T<*����1>3r����ul���Z�3R�*���8��[�����=Ef/4j�f3E��I���[+گj�詳ud���[�o�*�$�2�j�L��Ԫ�0f�s~���,:��]q��������=�7q��q*P�U��f�-���l7�����Q�B��!��U�T�W��u���T:(]b\6�V����]A�Y1�0���r�!t2�:1�w�h����Hc����h'��7�(%}+J�\.�e�����X�#q���#	_x�p�Oyx���j+X������;�*�'r��-��G����oP*�_�hrE��R�W3�%�/9n7u@�\[��]b�f�{%��3�%�Q
gZn�������fX�įl�L�s�x���.������]E��ds6.5��Ơ���+�j�\J��R���m��0�(�4�;B#��dÑR�c)�+2ή&;�7YjYKm%�i�u�R�2	lUKwwl��@�$Mܲ�#�r��n]���A�d��W�][(�eB��{���b�R�.*(��2�U[-�ؐ^�_���f��B>��+؀�Z��b-2�g�}�`X���Qd���	f��[�Zuoر@��88��T��Ul��N��[@��Z�L)��n�Q�QP��k�Lr�l����d�c]��H���f�8���Yx�i]4/�|w|{��10p��a�㨦��G\���/���3��.�%�Ō����G6Eo	7���W)84��M��ҳ��uR̈́j�1LUbU��γ����RN‡�
Wq���B��AiX2{�1�^�>��@Pl5e\6n��v��B'�`J�`�]s�d�V.
͢5|�9(K�ŎQTj�_%�Wڕf(��iݲ�ۊ_�Y{�d�Y0�2ԫ��e�ˬ]�~�-�1�d�Z���0XQ\8�[����$+*�Suu��iJ�IE(j*�������)�R���|1���qIe[,2AT >�)� �+%Kv�k3�TG����,�\�
 K��Z���x��*�3�+�t�M$��FV�aeb**�.nk�aݖ"���u���6CH�
�Ֆ߹F�Q�L
Ȭ���w`�˽-BJP��=2"���a�Ԙ+ܢM�"�e�_��9�=Koo�[�
u(�*���P�β˻ƥ�Q���:�%�R��9�eH�H�N�K�T�Kj��􃵅��{�Wipr�L7���Ż������V�Ų
L���TaFf���M]G6��ƺ�S�s+�nb<��*�8!ud-��+쯰��^+gذ�q]��H��*�@8���JGD.�|Z]p�S�J@��L�A/4f�\�Q*_�V{�i��95
nX(�wR�Y��q3����٪��g!R�i�3�ف��#§tBL��z���P�w-��p��-J*�
��.y�����w�"6˥�)�A+s�ʋ��+q@ı�:���I,KYy���tK���)j[U��nc�L��=���-�c���=ʔVgZ�U�O��.�Ygr�엚(�ԩg���2�x�7��Q!�V%�Pj[uԸ*B��Z�x��+r��Գ��i����L9滸�J���)-[
e�㋬��v�z	�bf�{�^�z��-��݊{�Ԯ��7iP��U<o��$s�#X�����%rĈMp[pG�ʉ�M5-�-`�L�)
r0���L�b	,�Lu��Q�5X�eSh�!�2�B�K^�]��e�	�f�&H٤n8.*�(f�(d��@eM��e�E�U��65.SP�mC�d��\wp�!�p����љo�	��8�+����T.�Q!�,�e,�u)�4O��z��[p��g�IMX��Ԥ)T�l�D��n"Jj�J`J���u.�e$%�8&��4�Ƕ;]�x�����)�0
�b�i�%�e�=�:��Lj���e�bg�1VR\XF[�]}�V�:-�0�S��W��u���\^F�����W3vh���6�
D�"@]@�{�����*x8D�fٮ0g�����Tَv�8�*�|��yYےy��.a����y�=L���Ze�50`��ฝ0�(%f�V� �+����*�$�혼���ħ��IC(Ԡ��r����P8&�0xc��*�}�(�LJ�4�\=��
�U*�ʛؘ�Dh���j������&#u�zO��[�*a��h�m�	oX�D��?���pZ��p�q[�P��i.
�R��.N�-�d��6#��	nF+X��M��J��d���\Rb\m�.|���ʨ%A�pc(�U���k��肽p㹚�D��06��J��W;ĨnYOL��nU2�p(e������Xݶe���B�/��Y�ģ�<��|eFk�U1�%@�+��%>�pZM�)pԮ�;������i:s:��{���h�p�F'�	X�����J�*QP�:��*�.�����g{>�E�2�t�D�Jn�h���b��*��h��+����-���Ԡ�Žf���}�"`����&IX��4q_e\Itp���J�Gw=�&�}�0��B哹����!��j]:�d_dD0�ϲ����ڃ�A)t5���8X` ӬAt���[�ߩk�dS�i�	i�
�P_UR��R��+�ˊW7m̙�V�����׆N(�S��'m�=E����+Y����&Yj�[{����d��p��-]K�_q~��,���� .�#�]�Q3�2�dU��0ZV�"]��]��K�����Vr��ٲQ�����XJ�5��d����N��۹�!u7�(�T�0˜a�˹K�цZ�S�LU�k�,��UJ�|���b
�%^nS�7*��@K��#��M_�����8��<ZJ�}��jTĦ�[��p_Z���y���0N�K�L����J�ܻ�w�4J��z�1(��j����e�w)�X�yeM(��e�.>Cb�J/fG3�-L����8"SfO�:ٙ��2�*��S5Nإ�uy��M����uUD8��`�8�_,�y#1��O]q�̰�`���e��X��WSg�*up����b�3v�`�I���u�pJ&:����2��a��
�K.�2ʕ4�
�e*����०.h�_p�P��2�5�|ZC �R��'W:����W�M�.ȕ��
Z����4煬T@��r�⠎V.\jUL	Va��h�{���(�x�m�Z�-4a����ݒ�,cL���"����Yʗ\S-.T�PN�D����=�Ŝ_������歫�fa������f��PS���r�UCq�w5l�a�-��K2��!l#.�n2˪-�\�+�x��ɍQ�K*\Ĵ4�t�Lo��W�gܸd�
�2"vp�%�C<V,��^�/�f:��+�� ��P��U�b��0û��QWX%cr�#r�gU�
������%wd����D	�\��ʌ������L
;m<��W�2�[�Q��L��9^o~W�E��3�C����UB��F9��M�i��C|6�s����@I��D��X!�x`).WO/	i�Z��T�.��36Dj����/��=�$��b�����J�)ru�|8%��|8�?#NL���p\��5F��B�wdn��Oٽ02�FRg50f�}m>a�E��Kw����U
��ۓ�K*�vJ�����U6�#_�%��d.�ѯ��U<c�e3/���_��1��`5�]2�؟x�1=����n,8�E�S�\�@8�*�p)�ua��Q�8ܧud���T�Y.ʙ6�LǪ������mi����S5��Qh��ķas>����S�%�1XaI��(���Wو�J�U¶�4�-j'�2�D��*"�[�W�|r{����Y�%�%�
C�������F��%���jf0�t���Y���)�|w+����;�& ј+�
[*u-�崒��W�����*�2\�sW*��8ȇR�}�_*�r�L�X�į\��&���JJn72艖�)⛲f[.�,1�^qDk�2�Il���z� ~�K��JP�U]�ıi�-p�)m��&&/+3um���2K�
a� �l���]�)��M76�Ƕ�m��L
{�i(lDD��Y�Ul��D`D�D)����w��}aX���Pv�,�@�ηu-���\�
}�Ol�^ځ[��Y��/�Kzf\��@�U�S\11��UK%�I�Է��K�>��pV�S����e�:�����U����h�P,����0t�
�☊�{��\L$�&�R�R{���b�N���d3/ܧ{",��T�\�����fz���=����f*��d%��c)�f�D
��l��\��ۈ٨��|Y���$��^���B����L�]�
%���4�$@\T�a�,o��uŕ��q�K�-���o|U=��(�1,g)Ж�?�o�m�,��B��*k��W6�H�\9ɩvg?�t�0ٌC�S<S�L�fn��ɲ�[�kRʁ;���k�BP6K��O��n���V1�d�r��D��]<ˊ�_Wi-R�MAK6ĎL�W5�1mj
b��Z8jZ��u-�o�zTB���c<U*��,%�l�I�ͭ"]���n(�,�u�'e_LtEUl��y0E�Q*!�ut�hT��B�L�Pc�����yr'�F�r�D�UTAJ�r��%7k(�Z�����
K�Y�x83)��.��ޥ�j�YlnZqL�[����Mq��Po,��g]�_�vA��a�(-�[R��&'�(����HP@����/7��/�h�F��sd�]7
���ٹt(Kh��\��vY�h�SPխ�R���.�Q��0���e��cqB\��/�нj����u��Y�p�H	A`�p�ի2'���.)�ܠ!�=T�%J&�a�b��
_2�{�p�(��Z��i%r�oķr�G4���x�e��,&X�k��j�f�^x��Je:eV�uO�(�qG���n a�JIM�Q�p]\	a(D����Q�����]�.��ĵ��5�^A?Ρw�]u������e��CvԦ"߅�ɉ_bn�L_�B�0���r�]�{LJ��4�.��n��1���ڈ=elQ����\�cJr>L���b7(Nn:��m���]jQr�[�7(ȴ�%�c�^l��u���i��eQq���e����2��xeĪ�����*��U�k�y�P^)��๕��;��ǩ�J	��bQ(�O�ŤnŨd�w)p5R�K�K]�͉�a��Yu��#��(�%��]�;	���K�����,�,�avbfTK%��1fK���2U�UnYwe|�-ܠ�	��_k/�T��?�P����Q�AP� ea�O�Qի�.L-\�Y������_�*�sm8�E-�����@�X�4�,�4ĭԯ���W�a�[�[e3+�Oox��\��WR�ŋ��t�
nW�\��.��Vه�=K}\�P_P[�
����/�Ae��B`'[���B0�N���z���9���匧�E�p%��nn�LwlF��Wd_0�Ħ��M+�]�L�̰)\�LpQ�A(����*'�����O�@T��T~f��E��mM�4e�r|�+��嗨�j��W�R���%Km��y�̡U��]|��]bY}v������m��۹�\��\b/���sܡ��pT�԰%���bXC�=xj[�3|RV����w��s2�hj\��"�u��T�J����tJb�¶K��9�11�P�����S]̷W+�a�*��	]�m�f�=LVطY��[@�̍�/�1��|hݐ����Y��?/ܰ�e�yc�J�44�=ª����T���}�\���􆩀2�\��J���r��;�T�vb(��եLVIc�˞�]uX���u�-�`���q�:���)B�a+���W�,���j�����Vq��X嘂z�ME��u����d*��S�����@]�o��ek/�ӉԸ�!�1����ŕDE�-ӂW-�If�#�,�����Y/��=�fc�������R�m�2o�ze5y	c�@�	�s2R�J+pX+�/'A�ĥY�
4T(�S���nk#�s�Z�G$�A��a���n�މ}T�QЬ�s�IV�6�8B�F���d1��
J0��a�I���-f�(��Y �h�[��YJݑ*�U`�����t�0Z
�1(�1�dT��+�[U�e+�e����z��x��Լb_PD�����ʖ�qU�J�*�J�m�{��JW3�vJh�]KC0�Ic�U:��ķ�L�ʘ-�80[3űZ�����1W���䣸fU��R�D%�Z�t�2��Z��y1�(Ժ�u�P��\�{�mħN��Ŭ�{��D(�%Z�HD�ܬ�Jz���PΈ�@Ţf�2���*�K�[%�.��eaX�1�[{�[VJ��K��ܱsCtF�`� ��j�&�'y��O��% P`0@p����<�UUUU}~�#���/�^��w���O�<5W��T�����S���Ux����1�Kn����z�!���j�a�x�����H�I����݉��
�0��;u_K�5�5}<P����3�ᕞP��daª�:�;)/�.�I*�6�<9�q�rw�\��!<�)!�:쬯ª��~7�Y~@�/0ƀ���]I��|��U0I燐����?B��~�:?~�\8h���3K! B#��ǽ��E����%��p�K���
�F.k�>���S)�`H��lB�gvŲ
؈�8����f����V�fq��B�3.���wxx�ּ���>�U����s?(�l��/��/P����$
@2N���Fuu��c<��2lsْ'�gc��:�����a@�sutT3��8�'-��ch|�������V���xj���qG�Af¼���C
��3$�<����`p#��[
;n<5�A�E>�J���g<�pl�`Q�	��l/%)�")�O�xR��2�`�vM`��������~�	��a*2��c�f�_����E��)���u��@T9n�PÃD�Pt�B�&W�UWmy�o�Ю6���	�5l�"�)��px�:��k�z�q��֨
���v���FɊL�I|ˇVM���Q2�ed`�B>�������8�v�J��8��f��2�c�H�Y��l�"]:2���-Q�=~c$�ȑE�%���"�1���2J\:�U$B	��~C�z}�}�$[BGmuE$�������H���ueLWW'1Ȍ����G��cL6���y�����,�>�c�u#�#<SF�<�HGGA�VE?�}��D<
FA��
W�9e��v�`�7U��n��O�5]o�i��R� �R6��J��/�;!�a��԰S*:q��V1�H8�¥uҋ�ݖ,@:��;F���a�0��V�&�d7��,��H��+S;f̰���;��p�[5]p��c�Y
f�֪E��.DO)͗�����www}	�\@�dl���$�>T3+~��l]�b<E���>�E���w��l�%��X8��p�g-y�/!ro"���㯘:���`7}��Ç&:��Y��1,r�__j��k���l�J�",�H�d>|��)�A���p�3�,F�by�+CL���_`�M�1���s��B�0~C����c��͏�N18��$c��t����/��ֲ"��(ϗ�U�*A��bdk�u2~�\��D��S��$���+�H�QL�A��ع&g���
�NH$��י(��I#ga��kI)��}.�ŋ�ğ
��aس�h�����V
�?|���������$���H���3bL�l�T�HI�}-y�p�r�n�,�ZG��+N���R����f\R�*�Ӵ÷�����]ݖ,\��.��|wH�.N�=�お`f��l��T;Q̮�7.E����l|WŪƢ)]rF��!>�ZIT�F�"K	��-��d_�J�m����DT��B]�eטc%ۀ��Dm��Y^-����K���cj��t�uQ
B�[�'Fk�/����6S�;V§Ph�P�J�dжXı��Lq���U��*T���,Lz$|B�D1ڄr·	|f=N\*
�}���HdpU�^U�vj
�e˒��]�l����0�Վ�u����Oĥ^�+?�݇Gb���X�802!F�q0~w�_�t��ʸ� �`A�U]�,ƱW��U��vQ��3�U+���b8��{.ɰI%�=ԫ"JA�˟+�˕�q_w'�`˻"�N.�=�*T��×����$T���-�,|m����(�#*F�Ԍ�ⷸVWB&Eoƶ1ey��O��������D��J}q-��"
*�����]+�
������?���*���W�W�O����2!1A` "Q0@a2�#RpqCB�����?������?�G�i�������/��?��RP��"��'�b��"�'*j�%���@�tN��W�	!�b�q�+��_�R���'�k��k�oB+�J�)U���kn�N�%�A�c/N�VN��>���*��uo��%+N�S*]�2d�U��H�$�V�ا�[ȹ"�W�}�O�5�M�,���N��c��'�M{�%�/d���k8$9+a�=h}�'Hi�G�J=c�s�~�R���
����͍!�Yk�99�b�š<�'���t;��^o#귲�5��ȗ�%��b�Q^ag�إ�5dD�>�-��eII5��|k߳��D�����b�!��<�#zUܓ�]�����PK��U�Gw�x����N�ْ������u�:��%��O��K\rtF�uȟڬ\�$q�d��{Ye?`�,��#%TEr�)/ץ-�D\)�	
��B�oт�m��Bo���핒��dR)�;:y-�lQT�N6�'�Iھ��]�ر���T��:}�i�V�8�:�.�J�&�i�ȴ[2%�Zm�t����;)��v�&S�&�{�N��1��Ҥ{��-跴���K�죸�$8��>�k"���%�D�cJ�͖V�Lp�����,��y
�\��t��Gm����D�,�q.Ć~��f��
;:]��'T�y�"�U��$Hrv?��|	e���yb]�c6�
_Z#.�_Oё$*�+�45����s����j܇��NY"�Y�ٝ>�3��5�٣�]
s�ו�,��Dn�h�ɥ�֟'�L�8���;D=�Ǒ���N�h�U1�]�ڹ��M�r[P�^O��E
9ڙ�g�_$_a!""��gӦFq�t���)�~����m�FhtR-�[E��D�.���C�2��Z��cC���y)[4�H��,1K#�)'Lwm���������S+k�
9;��>���y����<q�8h���$���CC��vx2GM������"e;B��w�7��S�2E��H�O�{3�+*4��X(�z����u*/;#�I!I��)��j��m��%��#�����j{S��Sٍ!F7�2[��QGV��YҔ�_|(m�
3W����h��O�����b��zz]m�_
�>��>�Ѧd�Q��mbDo(Wse�x�lC�4�"��^N�6Ω_�T�(j)1�%?N,���_��hi�c��CrH�7�����*�q�k���Oжl�I2�iD�FOiZ��O#\��~%4έ4P���3�	�$�)a�җ&E�E7Lӏ�)<Zo&L/��"+�i��Z�ziU�������jK�U�%ˑ8>�OR:q�J�h�Tƛ����/���դd�v��3�l�R�jŦ5��&��`�jH��Kn���Z��CI��a4�ߣ��3�svİ�~�[ڙ�3B��_�%	4�:�����/�W^�qT�J=�-�"<�^>�B�4���%:��(S���z?Ⱦ̿���b��;u�L=�a�D��Ƹأڧ�*K�J��1��h?���2��P���N1HJIoJ�T!݋�++{�	<���%4r�-O�c��HZP���j+�.�[V��%I��K�4}H���е��/�j���z�:���_�-��e{�Hr��d�fJ?��K��Q܇� �F��Ԃ����V>�Zڿ�T["�W��i}5ۓ���r���������R6>�b�x/�����}2�5���5#�}��~��?ew�W^U(���������n	R���;�:VVʇc�F�	���Q��t�5�*�:���ғ�'�/E�Z5��b�o�����^�g�EW[4�V)pPдU������K��C/�%��EdR�q{X�o���F��'��h�"%��G��e��Jc�KO�:�y-��ES��r������^�QӢ�B��m`�D�������/fYG�ᙵ�
���c���E��|�v�2-��Z�K�
z��J��F�T'���Ko��dZ�q�6Wr������$H�ٍ�(�?DY^aF~�D�6�������v��$��˶?�[Y��c�݉�ϥ���]l�;~�1�����܃�_�{�|?���ؙ-I`����%k���dR]k�Jm�<	�LoK�+��m�k4u��E���,���u��&` 0@P�p����C�y��
��?G9���p���G\����糏���i�&�����(�=���G�x�4����m�DZ�d�_���ܫ�r�ؘ�H��mm	I"KX�k~e(��c�*�=�4t(�ZD�(�������3��m�{{����O�
ص��֍�?�3��b��G
&3�?0��~��ˏR�;:<V�
�I}չ��nM��;.>�[�DB�J&��l�,��0������L~���э
�	Zj��"{귞��T~=��1��ǎ%�y���������(^�&�t���-2��bÊQpc�9��H�@����I���ۏ���5��泟�>3��[��8g�Q(��n�,(V^j���٪�t�sK;�\ޥ�*�-�R��"O��Ȯ��[�>�l��Ԟ�it����Z$"ZG�J���o���e9������4
��v��pYј���
����ʼ��ܵE��@Iw,�"����(J�7JY������4��PlT��|��WR���{k�=��dQ�WT6X�@�,w�7�|�URH�`�;�sp|���n��mb�mt��4m�
d��{�$S[f��fx���+VY��*�ôF�4Zڤ��Sl��U"P��B
z	V�!U�3NV�h��&:�>%JĄ��	AV5�B-ūZ��FR���^�t��
H^޳ٜ�v�4�X��F
��D��k3B�H���=�}��v0�!Ml�q�T��:9s8�:���d"DWGP�yT�߯��spҒ(��Z�(�T,�Y�9a��>Z9�t�#U����O[>L0�r��hhР"�(�e`���b��FW+qI._H���dёh�S8aQ��J�METS�lJ�Putyx�-�2��8�Fi�KD4Ыh�L8�D��������7JC�䃺�:ɷ\���%B�F�J,�
K�V��M4*WR�UT2�F�\J�,k� ����a:��KtՁRM
)���+r�#B!b�z�E
1P*�@�0ԩEMu�5(Q�@���2��bi_p�
27ZiBKfD��� ���q�pAR�T`$Y�I��&�[��N�UУ&m���Aƈ�#b��`��UB���J:D%l��k	�1#�C�5�
�͹a�cǰ�����NK�e�\&+��<x ���Lli�6-j�1�_��@�]�4�?1�QX�����wg,[���/D`���$`Û�2aXZ���(�}��1�����b<F1��5�b��f�ōGB���n�ޚ�դ��V1�55�b����kˇw�'qQB�c��D�2#玹�B�EWMB�q�\�{qR���Z�N��[12�+�WH�V<�n5�k��;9�vR6H�ғL��Ii�k��{���ެjhS�/g��&y"|b���r6��(���]i���3P1��GP��g���ef*YQ�U�G������]��k��G�fp�ʱfG�Ց�d%���t|��U�ʸ�����If����KH��(%G��'W �vq�;���p暙HF�R�YQ�R�ň�<���+�a��G΢�X�t�CE�HW)
, `��cq��ctpJ�=��"$ ����b�g +)�X�6EJi� ց4�Ċh����p�Y\8`�Ns�bsE�[z���1���r���_tp���Iw��8(w��ɫP%Ջm�3�o�s�=0�0�N1��V,X��h���F��TZ*L���%�G��(Q�8���r�E�ʞ����ST�%�K�@����+�s�cٜ�da��&�%d��]>�s�����bu��݅c�Z�����?~ȥ���	�=��*�F?�X�����>1�c�1��N��3!1A` "Q02@#ap��Bq�3R����?���)����7E��M'O��"z�˚I
+,�ҕ�7�����W��d�������b_6N&�t��ҷ��tޛ�|ҟF�;t�L����В��k��#��=B1?�)+>���N�~��Wϲ�r2WGڗZ"���c��m�F�WF��돘�Ȓ����^�K�\@i�C�폪�K��F+�r��+����?�C�ȧ����'���''�w4�9|�jb�m!�dm;5���[��iՊZD�.�Q4����טd���#��e�S��GNu8��������J8�������7��}����'��"�de��>a-}U���%a!�4���Xy�%�F��Q��ֽ���������b��"�J��5�:X੫'.��}Q��1U
8��Ut���\�%��D)��wb׍�M:Lӂ}�m�
E��K�P:1Cعf�O�ԍ7�j�#jhZ��J�k�IZ���Yd���tɏ����NM?�Q�~E�KWS�Q����K��|�\�OU4����I�%�~��qi���rE��5GG�_���l�#����h�]	�2M�=69�Ƅ�rG��f:�{��R��E����R��k9�X�����]�<���t�}�Չe�
[Bt��%D�������#T���1I��/�J,�Q�a�>Y�U
�"bL�Z�R���9�<��Ū����]!�W��qJ�$'� ��.��)`����Օ���!��흛��O>��E�gf��Me��JFpE�rKM���V.�H�G�ɩ���,M��UX�G���<
�����|
��d���#C/����	�R�Nߢ�R����fı�b�YCJ��e��;^L�ظb|!EP�Ϯ�X�
�o�I�rEp/��ȋ��hh�>�N�c���6�'�[��i�61�!��lӊ�)p>�^�YȚ�<
rE�բH�;lؐ���#��h�8#���BHWI��H�	��R�Ҫ&8��ӔVK�x=��x�Ӈ�e��K��m��Iv,c�ck&�$��t�ru;�yk%r&��+vŧ�ɉ�yBK%<
��do�-�=��b_�.ė(��3��Y|�h��Bڋ|�ߔ`�1lr)oe�h�y"*�BbyD�%�X�銇)��Lh�s�q�#�*�/����[��C��Q��%�L5liQԆ�[�{�u�yB�a��-�m�*B��R��'e`�.?m{Z;3�9��$_���GB���c�o�2I�O���e=�V_;^���K�؋�`k�K�Z��؟2٣�ǯ���i���T\�
T��K���񵳥�șR�[b�����D���4�l�W�"LKh��I��LJnsbM&���,�t������Ӛ/(vg#['��[�bZf�C\��Q����<�V6�դ:C��q,l�w�ǁ�K�Tv�9�r����'Ⱥ�o��o�ߧ�/N���Ȳ�ؒ��q���)��K��2�8�KjU�j,�g�3�B�>6ɋ��=�oX;�9dS������_�_#\��
1�(�Ҷ��{d����G�I��q�wfY��;CE�����K���z�n��[d��ҋ�y{Y�7,�|�����D��ܶ�cj�k��eȾxV82e���w�_'Q�Z��e}�%h镘E��R)2ȷlI�jD���9�$�)3��ܸ��%�#�v.Ţ��*)ע�!O	�"�$�߰�hh�d��"��R��gT����h��a�k�o������I��4|��~z��U�:咗�$^�+T��.�=6�:�Կ/r�g�on���%�򆗓&.Ĭzo'��mn���t&�"Fi
�P��YHIu������/�J���Ζ`�<2��'L������H���|�|��Z��rve�%p�Ւ␗;3�RE�tS(LznӢqƢ4��"��"E]�.	K��yK��'d-5[)r8�n�^I�#.QN�Z:^֊,��>w�ᚫ���j>X�E��1���[�^�"�E.<��.7�4$'ǡ���Wc09`�F�X,�4�_D��&J,R^K�(���S��i�od�!!v�o'��d^S�Yb�]��E��{5��d��4/VF�X���ڸ?���UtG�K��,E�,J#���c�=���C�������(^��[.����Y�+s�U�m��(�y�S�O�&{��E6حЌ�QG�ǶwMd�n�Q^q��p���[6E*��ْ��m�R��͖��:y3��U�r��+ϳ�F֡5�i�.�t}F�
���.U��O>qsL�ņϴ���-`��_G�]O��7mc��)�<I"\����K���t���[GB�z�so��L�0j���	[��u��themes/images/nick-cooper-731773-unsplash.jpg000064400000344034151213255670014634 0ustar00���JFIF��C	


!*$( %2%(,-/0/#484.7*./.��C
...................................................���8�������CP)-�"##P D�P, XR,!0, ]�1C$�T:Td���i*�+7mP���QKE4�@2���B���1�v��'.�8�Ct1u��s0��ˈ6(�**U��A�
�!4Y�4�U��IT5�-�,h�#T؁	�`b1m�����##P);(v�@���j`�b;i��""B1l����%2 �#����Cd�M�Kv&�лkTB��K:=x0�8�(
3Τ�6��5<VVi��ܕ!�i
,(b�;ra%�!��@*�!���5��Jc��2���@�tۜ�������OrR-�
Wb��@���b���XZ()�*
��I�� �V�@��� Jr�
b]Z,MItA�Br�����h0����<�n�4a�ĪpOE�G
��A��t��T��'-T �EA@Ъ-���j&Ԛ4�����C�X�8;r�T��ܣrƪ����R����Ҫ�b��X�P�X�((d+H[��Q�).��1\�1cY)��&!Mi�V	"&�M��;$�.���۴�c.v�sbép�i�������1�O$�ϝ����;��zs�u���3ST�]��2Fp F�b�L��X�J�X�pV
���U�R��UL!��M%PX@���D�,��d�6B"`@1�XDS( [V
�*BJP,(,,PQ8�DOd曦)Sd5���`�r&���c��s�X#�qWM��T�4<������?xy�R��]�A�6L�	��*{�X<��;%c��5�n�H��$���P֜j�eSLB�T۴�i4�UFXR#	�
Nr#��Lʠ�2l((T8�J�B0�BŌB��J�q�,V"��L�U�CfUN�t�;h�AA�\sg�uB�B�����I��kI,�
wv ��ky�WC;���)�;g44�,�0�PnUz�(�"�IjƄ�dъ2عt�G`M>e�WHA%��T�`�ZTQ� D@&PP@�nE:�IJ�XX�M��T,v#
���I �C�L�4�\�*���aArKli�:dA��� @h�詺KΚ�Y���b��Њ�dIJ�X���'md��uq��a�N9�1���,�9�{k��(C���zRo#�؁� *���9H��M�H��rF��!l��dK�Iu������ F@���ڈ�@�d4f!dA� M0$�Ц�m�EҀ��*"�b����-K��jwA�dJ�@
c�<�r�ؓ��k�:$�gb�E�C�&P�2׊�ll�v��7��c�N���!zHU^W���ی��S�C'!�
�M��ӨvJʶP��la:D�v�b��5�J��D�XLr�P"# @�Pp @��<��@�I؃Z4X�D��ʕ&��%
*� XXD@�i���[&�. 
[��)��d
�9��#���=h���1fw�B�입c3�R�S��r�1N��%��)KK�a!6�5g���Y�%e�!H�$��Cv�(j-�ڦ���l�Q18��P�M�!v�%E� T�� @� @��jTī�q6��M6Ad����9��5 8��U[ X�"C��|�gl��Kq
N��X����5�~b�ŏRf›�m��G�Q(v�V�*N5���R�9l�3�;�c{��A����Y�;m�3�f���g4�+bń��+D+[b��pK�l�L�,�H�54�&��E�X@�2 @��It��ҡn�3��AS"T5�P��&h �b��ǥF�J�Z��`�i9 c�4��k�����ћ=#�ҧ)oQ�e��K�;H��kQ����G�x4�lu�6�I��sV����
�����rA
'��0��{�$��3Ch���rQ%���;���R�-PRQ@�uIj�:�� @� @�"kS�9b�%��i*�NR�IT8�0FL+���%DX�-��M
�F�c����
4��F�0��i��y��Cҁ��H�vt�p�֙J£N���#���Ye�Q�E�jӣIX�Ҟ��h�G^������"#(v!���H�ą�QL�ܛ��V����@]Dd @� @����EBUP�OPmf,��J)l'&��ĘL	i�]�"��a2^��:��e�B�%�3G�Nl�m�~\y�-�H�����K4%�s�iM\� 0Ҳ�y�%�1��s	2i�>��9�Ǧ���9��΀pb�
4�@�DlYM
d&��JtF�M��+o;�&$�k����F@��
 @��F@���PP�js�(4�N	���	y��Ab�D+'@�/3�(φ�W�Jڡ�䙶i�t�����FMo<���F���a�u�[�M�ݩ�+<�p�X[tO^9y���:3�Z�\g��xbȘ�2��!k���4
�`�
�Գ�`��X)kn��9Bژ�V" F@���
D� @�q�N#JTjQJ��f*��w����fv(*#l�ގ�njV��M9N�f�jZ�-�Q�K�\C��9�4�)���b�eb�X
��1}3
K$ŶelJ�&��}��u����;M�U���)0&LF�-���P����ʌ�i�$���,��84L-�6���C�It��PDF@�� DF@�a
-�,KZ�3������b��NSPn���" �#�&�J�}|�0�͞�C�u:8�L���T�yJ[����P��h�󧬝���pezX=B�'��"�Zf���Ǔ��G^�H܊%B�.���*��_1i�FZ�N�)�

@0�t:�+-Rʠ&Δ���P( @�a��e#, @�5��h)����%e1�
mvJ�UTT"����Xյ��يu�q����ɏ=�g��%@�GJy�3V�4�e��-❒ZG��q΃l�A��V1n��8�9yMT�w'��}�.�w9�����Rb:
�Z�	�ź��"DS`	t-�<�Kt��A&Z��#, @��"2‚"�Aa	J�J�

6�Yގ�̙UP(��pY���$��vՈ�`P�wt�$s.&�m�|sќ�QH2`u���{�z�=�K��z3#�<JcM1��.�t�A's.eє�y�N�\������ ��p�6d5�ld�D�T�K`���>e�ŋ(`�,�7e-Q8��@��ڌ�� DF@��a"‚2�( 5-ъ.�M PnA�(�5)�[����%����Z&ULh��bZ�kt��Nr��J7��q��s�Jґ<�,j�-��-��l��z-=s���ŕ���z<�
G.���֛ҥ�
-�$���e�g�}mn��B1 ��M��n����(�n���s�L����R�d @��A�D��� 9N�ޘ�N�T;c4�V��ڈ���Dʪ�L�ӥP�g]�
�-��4�T�
���,v^
��;t�]tky,4Z���ތCg5�Rd�J��=(�j�wG^-6�휸wԺq�E��\��Z��g�}\��J�t�Ő��h�v�����o1�KP���蠎iTE� XPX@���AaDd
�����#���1�q�UZ$)Z�YpVM ���@(cGX���ϕ�1��V�V�:I�o9��:9�i>kn�K��s�KL�[!P����oQԜ8�o��\ΗTܪu��7-��;<�������m܇z�N�	�&m�
f��J�P�-���������� @�A�D�",%(.2���V�:�-�`SͶ����b �j@݈AHv����tV)Zg,�ӎf��ꂡF����Gfx��s�ۓ�FG�
1���1��w&�-9�c)�َ6��졼�G��C��ђvqû�'3mB̚�������/R	�z�#Z&6LBQ{c([���h�m$���� �P�8�e��Յ'��������
e� ��X,-�)M0t��U=K�P�5P-"`��'b��ʊcJ�lT�r��o�
�+�k��Dv��z�/��5k�힯�����B��ǿ{Y1�"��_?�ӎ�=Y%ZR�v3ɑ>���A\��ﳫ4��͔�c�W��MT���y�D�D�v�qI�&���UaAa@t
 �t��
 @�m@�,,Q�;
 @��"��ѸŪ RiҤ�r�Z5I���E��M@�<i�J�M�D��6(�V�m��Yc֮~��Z�}�^oG�<�_�\�`'��k�5��qZ��mmk����3MYkL`أ�vk���jǧ�>~.��]o��V��l��Bp1
2U��zl�@���R�Ze�$&�&u"�\�Y�
�	�*H� @��UՄDN�
�H���!4��n�U��h)��Y6fّ��Aa`IP@tƓ2iuf�eb[;squꔩ�}X��e�J�حf[�o-��u�fy��K���8sMep�v�K�iIz�v�]U�D�s��<�ݥ�߫fY�����Zf:�Ͽ1�2�UP�O*���/D'([�	I��FX�L�Ze"ڃ&�Z&1��@��0B��
,	�'�b��� @�De�jN.��I�I%�ޣ-/3��J�u�B�$�Ҧٙ����;�QZ��s
�]zI���Fp�����j�Y���wk�qu�5�1�Ǚ�S�6�t\��q�ڃR��\ݜ3��G��n.��]L��e����1Etbp�;�x�^k�N��X����8]�ɦ���"2"�t�h�NP
j�@����a	Ȫ��'188��,( [T�;.��Yhw�ZDiY�y2e.����j���f��v&T��)�!�}?���o�Š����\��~~�r����][�s�i���y��d�V��S�Co�oԧ]��Ӝ�^�1�M�韟߯���Hݎ]�0�,�N*ہ�Ѫ'|b�[�9
Lwhw�J�Z.�ڰm3�V�dE�U!6u!,�S�e�I�@��,B:rH��F�(,"p( [T��RXP�T2
�;杖�.��[VJt������54����z���b����q{��\MG2�8�t��
�;��â��H���;W:���:n�^U��=���Wю��V�znN<7�K%��hφ��o��s�;X���ze���V���r�p�i��
�:8����Mԩ��;r�aBs@�+6�.��J�C��� @�6�:N2
�aH���ڠ�����'-k����&G%v����bDŁ'�1�Ix�ծT�AȦw���,x�mϭy�t�V�Ev��Q�l�3�u^���
!>ui�ŕ�&��T��߯����WR9�����y�v���Oj9��|��Ξ�:Q��'L�ޜ��΂�NԬ-�e�$�:�V&��]:`�!
,b8 6�� P@a"ا�ڴF
(,p FX�",-�:']dPbz�V6�=
��k�hTk�66��2�W6�8��f�A��˗����Ny�=��˟C˼�ˑ���ײ��3],99��R�Uw^�x�x��N�o:Y��먹sWX���'�����â�W���d�W�#MKV�J��9�Lk�}�ѳ�&��h��@5�`���o8Ĩp#"4T)�
, @���!9��;#,T����ű��=iA`���r����,�N��SC�-���e˂���G+M�V���cЎ~���:��{��i=�=8��+[j�G�2���
��2��߯����]�-i�ϟ����Yb�����Fә{up���~��9&��L�Y'��3ж�;tc����i�@9V���(b��2�EB&�8( @��
Dd�e�8�B: @��+؎&B�Xa��Յ���&5�K�ӛ	I-.���c�e�jy���3=LO3�eɷ9U鉴�Mi،�OB�l���x�+N��2��=7��ߑ�W���f�gM#�WGx�"�Oc���#�g�s}�!�>��/��r�t��ZZ�kѭg��-���X�F��[B��D�h[�+�P�8	��	��l���ځI��Aj�����D�@�$��0a���ss#�GaڞNy��',�3�ADhS�YeU����z�in&�oGJ�r	��Y��֝%��mO�zE��ɤq��F>�2�`�{o2�燛���G�\ۮ%�ft�6\�g�'^�g��͵�k��a��X���\z�����vqp����m��Y��r*�E"�B�MeT(�e�t�De�j�@�"e����
b8(8�N����Ѐ�#��<��'.���n����/\��r���[g���Yr��K�{���hé��|��jN't�!s)����e����U���p�}����^�����O���n�G���ǐ^-+r��ys��}�ܣ��sj�ֽ��v��*{����/��
�o}+�Nb(v26�1`�j*A�*�����A2
�"�j����#Q;KE@��ES�P P����-օ���K�n�D*!m�i���������LWlGo,5New�/w���=l�2�.–���H)ͳHT\k����Ǣ_�Lj��p���RF��,�LO����c�g����fg�����2��+j�NQ1n��:n��ol�j!��y����وS��b��@���[V):j�'mPDP�, P@�Ai1�	�T���C�](�h��'k��1GFCB��pB��|�E�>M�	�Uݎ|�k3@�ѽF��R\���1Wir�E�ֽ���n�s��냯o�Ól¢���[u#��8�;���f9�zo�ϖ��/٭%�0�a�;zz�O[)��[c.>ۈ��s�ۗ��+lI��Ҹ��V�J�	t6�6T��6Mg)Jɫ�P,D�D���l�AaI��-���t8�Kpv�J'I�v(--
]9�1{\�|��ۀ!`B�$(�����xh��֙M�V��8�S�c7���:k%�ْ�N��ә4���u����n��߯�a��!x�vM�eb�s�ut�z�2����ɜ��;��k��A��xc�NE��1�{r+n��
+�6W3MQ��mUjl�B�Ui$*VX�v��6 ˕�F�D���
 �b8,	�d@���R8�

E��MQPp @��n�{�wNI_0��hm-�r����Y�������|f��I�#�Eu�{�_M���NU�i�]�|�
a��r:5��Wby��j�9�i��j�a�/S��Z�:w�/�t�j��1ËfK�I̴DxO�e��.^���u���O��{4���.��k�9��[$|m7j;y`����'m�i�ʔ=ňe�dJ�CS�[*`,�U*jj�&!�X@� Rt8Մ��2�
���9��������F�������,�t�М7���<â�h&0=&\D53D�9�ʭ�S��i�JYP}Y�$�t�}y��9⹻O+N����<bq�:}�e�x�ROm9[o�ˏNG���ޣ�����H����߃}�ϓ��y�>�V?a���쭙�Q�=_7����s���L��e�jP�\�h�ԩ�j�72@j�
ؠ�ԋj��H�A[-�� J�6�DP�B;��c[d(�(��,Bا�A0�$��9m�l��){^<�lObe�{.n��ζ�WN��}c'��K�%[���䩤�n�4��p%V%��E;�e˳9����gg��.穝�����W�����<�~F����7S%��S~�=�W���{��;z~~�9���/���x������\0�K�qХeS�]�X��ݰSi+�(r�*4AI�XX�,"((t���5aJ�BP���t�+������[	̓I+ld.�rX��ɥ�3�}$��Lfiv��l:t���Л���Etez�'����|�s�~s���z\9}�+��a���O,�F�n��k��6c�t������|�'���O{毛��q��	�����g�=��.>��:/�AI��}t������v�$d�n�%�4-������!S���H��:�e�a%C��b74��C��P @!T:� �nU����GmAXڐ!e�N]��qY�a��R�V�lw��9�J\��Ob�7Ԝ0�Tӌ	_vpvO����~�I�����rn��uv1ǭ8a�<�OV7�c���2U�k,_�n'GG�����>�;c=�!:򽗈�%��;�&�}�^Ǐ�G�}>�{ۯ�.���,�zk�F��ϟ������s;�^ι�t��}����r��ͮ� [V�
�h�mP#88:E��2EP���A�0�IKn"���X)]��Ϥ�l�C>iX^���ɭ6�7Fq�77�Ѕ�\�v�uk�6u��]b����v�\.���׾s��rD��T�1�Ҍ8���ߡZ���Wɋs�%ٷ��x/G��^�����u�8�n.o+׶�;׭��k���ϟ�8�����{F�$��`�g،�[��T���+�)I�B�4���*N���@�MT�N��1UM	@�����T*��),F����@u"���Nu�Ե,�؞�冘�����tX�=��D���o\�Ye�����a��r�7�e�W5ye��ގ�������,�N�t�]Y��ޜ]�9z�e���^~~'���\<�<�qޔ�ٟCϟ�����g
�9b�v0K0��)�������r�2' b�OÆ{��9��Z�}�b����pbJ�E���Aj�H�

˜�
i*���rY��,F���*c%�ai
�D�`�V��t��3��\�-�y�K��JC��r�!T��BK�vOz96Fy
EV}/�xr��;�GG>��g����T.>��ס�s�F�������#��{yή��������/C�>��t�ZyMHּ��{Q��rk~��’����z�D�jJ��>'�V��nr�����*$�!C	��H��mX��
�ē@�J�p,�hzP�M�J1�L�St�,L�Ub�1&��f�TS��u�n��d�2+*_W<\�ji�Qy��8�O��\���d�'������mыMzye��8��ݮ�k>$�����-�/����n��'?E�7��舔>s����eˡ�ma]�׭�\�c�X��5�
T�A
oI���B�i�՚�e�žۚ��IDݢڤAƭ��a�
'C���m8��T�F
�(P��
ئ�E[p"-�M�BQƹвjT
h��M9‹S`�I�y�:�3R�n�6����,0���<�C�fS��ǎK�_+k��Y�|��N�sV��s:Q\1��J\'����[�S���rg�vӉ����|����,�ڕe��{Q��	���c%z(�Z%޷�G�
�m�9�R蜎�ޫt,z[#"��X�a	eB����XPXP4��GI�0���R����k�$FԩrP)�a�"�@�Bӌ�n0���LT
*��w�
%�5Ѯw��\c[X�nQ�˚�sV�j��e��k���1��|gWg;mUJ��㗩ÛDg�k��/-�����Kp	O����mv&�a;'*�z��L�=��;i�яD���WH��uY��z)�kt�f��<��S-���:����N��tFS��iƅ3j5Jlb	�LGb�I0Lie,�Ţ���SAd-ns�*h,Zj2΂TkB�8�kl\:e"����l�D��L�Z�^C�>f9�O>�
���^珟a�)^_B
�.����޺i�=>,qX��>��D�[�r���霠�o�u,��s=2V�5,�K�Yxg�uI+�������<�L�E��h���u�[���XA�T"�t2�Fg:����(��DՊ��H�&X�1Dn�kJ(Z�s��
M4�
z*\������j"�Ĵ��C�<�H�42�,N'I�u�\�,�7��y���5(�,Kӧ�;j2��f7~LJ�:S�'׫&��	���Ǯ�H��|�q��`�wV�ξ�ÃPƆ��NYJ[�:EV���0�8��_E1�z�͹s�R.�jd��S�=*2֩4��C���k��s��%9�G����&,���,zX�e���`M$�%�H�DН�EC �IUbuN�h��5�C[y�!:�ZyK���)h2��A�@�Bj�5�䉶T�j�s4�:^[b�����e{tg���Z&��^��MZ׷���_=�բf�ڳ�<�}Ny�׭�:V���@��]�b"W���N}�Ǎ�̮�:!^�?;���O-l���td�x��LOg�\���9������I��T�%&��2U-�]f���	����4-
T�R�JTu/(�6����)i�8�8��YUzz�*4��:�����#4*�]������xs�~�\�Vx^��6��[�>��
�Zj��'>�#�[zrUW��~_Q%�an��+���3����,գ�mX��o#�
����}O)�a7�ڱ�8��Z孖�T�+��++փ���W�;���d(6Ԭt�� &����Zd���P1ͶĨ�mH�V�7"4E[Mc�������
�&���X��ĵ�$�3��F0+Ll����\C��D�g,��,,LY�zZ���wq�^���Wf���s���t��y1�3����QOle�p��l���y��RJ��T�t#�bz���fxU�='���LO6�ͦ��%�X>��-2�@=�b�yGU
P0�#~џ
# [E
����3: �ud�	!d@��X����U9���D�,�ah��L��S$ژ��(
�$�����3I��cj���fM�ˡ�Z��艵/#)�馩J�Y笜nr��Ǥ��;���X�=���}0
M?K�/2��>�7dtP1,Ud��GN9����4�SC�<���QZ�:T���æ��E��g��:gw��	��}�*ӟ<�-+4*H��Aai1(�uAa��[V��CeI2%�������u(�!%�B�	��,�MYKLGAHѦBZ�s��b]y�HVt�-c��fB�\b�-ZJ�uь��̶Sj/��/���$�L�r��������m�aC4�\�j���ML�8���%e�R]#Jϵ<<����}H��_N��Fy�t����P�3h�Ϧ�R���Þ�dDfŒU�+UAL����#"�@��(-͌B�@�
j"�L�F�V��eXDST:���9}�yit�I�{��U���L��zR}S��l�Ls��c]7��,PR�1�����ύUy
�ﳖ{7/]}�_.�=]�,}8�y�"�ERF��';�Iy]�{�p:�͢q�i� �dK�WU�0�;�p*��'6�*:/�+�k�C�\�y��v�Ei)�5C�h�(v�̋�K�ɦ
v"r�f*h����1�cAn�0YLrB1�e:�R�g��ki�X4O"�&A��TfNU{c=kYez�,��@��醄={8�
}j���p���[����hM@0�Ez|x�Zl�J)9N�Ŋ1�c{
tL���p�
vJm�"Gj8��Ց��4����V(�&�cW*��D���
�jTTj��V�ut�'bs�Bʱ4#@:C�-X�i�Mp��2�ĩwE �b��E#<�҉�Ŗ*+Ue�5�a��M�����\_cL�x�l�S��ldv�-�L��ɖ�{�ʰ��u��k+��k�c��/fv�ow�&P�-Q��4����\���^[�UP�Gs>N~�JT�m&'bd�f*zg��bI]Ϭ�"�!��Д�*�k�AR�e62�SA�42i8��[(էR��e���
2M��EDD�R�Kud��MjͪBʡ1�N
�ֲ��2�ԛKt�d|�w�lGW6�:Ys�T�*�-�+N�Xm�m�:�3�5_w<vr�0^�×�
|gg`��m��
9�nE���au�a�;q�KT�zB֊(aUX8�nJ�!J��ą�-t1q&���H�!FՉQp.�����N����F�q&"�L�h���6I��U7�*�/*���e'8D�U$��D�L���QR1S�l����b�3P�g�6����멕37�Ϗ]e���=8�I��LoL���֫�e�tbU����N=5��WGVr��{� ܤ���U|`Z,�Lf�5<�+��zN5@�jx�:A�
��nഒ	��%���k�.D�i���P�6ҋ2Dt��Y��
`:
�]�Hւ��d�X�Q�e�l)�KZQ@�	![
u��1g��
Um5N�Ǣ�ҥ�2rEfZh�ݝso��U�z�],pYΥ����|kn�\�r�Y�Z���z�E��ͭ�}(�ڹ�o�R]Y����C��ɛe7ct�g�D
��Ɂi�܂ځ�et.m��؆�������o ɨb>����ZcCuȢ1e�!,F��,b�UmP�d(M��U�L�������
ei"�YMQ���H,@�l��j�YG)�H�����eu'U��%�"X��k��b1^����1�y)�<oL�Mі�=F|��:�5,}prX�;S��ת�`!�gc���g ����k>r����	�
Q���j�I����ӌ�j���`#�T���t�C�x�kv)����1�!a"�B$�	��b�bMKC�؉�Eյ��4Ȟ��ķ�j�b���
�P@P�]+%�j]	��tDm��������� 1�p��K!E=���x/T=;9��8ޜ}:�?G�G�&��^|�K^�
�4D8�R�?-�(n'�8c5����a=	ł\��h�8
I���)���{�Ԅ�5�h��M7���,c-n�SC��`
�70p,)*l�H�� (v����I1y�T
�\�7d�:����5![�T��Vj�1@6�s$�lF�Ϧ��L�<ObF��̝&�-5K����|�jžc��Iw���.u`�;yq�{`�v�S�=�!z�!�Z�+.K荒FY�D���ҧ����<��({�u@�����T�y�hQМW5ϭ�N��ֳ[�槪���T0���3���P�fI�C6� �c��7/Z��0*5��M��jT�t���i���H�oy윝2B�n��֌2�= ���i��tˌ��67���+���]�+�ڈz��|��`O���zlY������o�ˋ��fz���#2u(�����fs8�����R���t%ft���[�L��zg�rZ�D%*[�s�r�V�uIt'�ݘ�W�e��)�J���B��9�U
`�Gt
(v*��Ҧ
���LS��\*j����@�<P��i孉�N�>r0�S�a�:k-�N�k~����z��9ꜷ�R�b��5@�@\Z��kt����=��]>z۝{)�Bq�1��u��5�b��PO%�T��dֵ�el��Ƶ�3�wy��z��9h��W��ZV{L����i��\�=운S���Zp��W��l�<FV�juTg���J�C�X�t�'ad�t���a`��-5��.r��FMU�u�U�U����Mf����V(��%D0���c���r��WV*�T�֎z���?�};*.��;��i�P�D�&���|�ٞ�qƸ�ݮ2���@��C�X��#F��X�G�<�H���2]�vϲf��u���6FN&�b�P�8nq�zaz�p'��؞z���:�8�N��y�����$�Y�����2*�ab��d&��:�0)2!�50v#'����N����t�(�-��b�ԘK	δԳ�F6�h>�ε��
0֝���]���ٺ��Mh�sD� t.�x�L�o��d�Ϣ^�^��B R�n��s& �:�2�i�2��Z�zA���r�sށOLƣI��+�T�Fr]��C�
eɼ�LF�+���S��A�Fwy�x��t�A�zeHSYVT�5bi*��*LS��DM4D��0�e�b�}n#�,RM$�
e&ķ,7���1VG}8�X� �sN�˞��+���k
3��x�N����m�/E|��.����o%����h���آS�vbbN �;s�����UF�5Gb0���Jv��Nj/%k����fjbU���S�Is�o5銴b[�,��)�QZeM��Q��I���
���eX�C5D���M�c��@݁�D�	�:Ur.�jqV�������)Y!�=*z��R��83�4��e���VG�F0���F�
"v4�8s�F�1�sWX�AM�;�NJv�k���!ASt%cT�'A��M�/:�%��Y��'��(�0��F�>��Ǯ�SЖ���Q˝������gƾ�l�)���s��Z��(�S4�9Fz����Re�=.lJ!庠"l�4�Hu(‡��7K�J��	�z*MM��+Lj�R�8��J���&E֨�j��4$.�o����6�E8�s�{���+4�,3����؍�N��E`�hqЧC"X!`)�KQ���U^5��h�B��9����"�2K�G^9�ZuzTl�"g<�-�.�Y
�}kmX�R5)��?(�+R�n�4��P�kOegRdz��H�2b740��1�A�����dh��Y
"+j ڱ�X0�
CC9��|��Z��.�w�>hR�g���ӧ8�t"��'b%W�IrsΑZ�Lے;��odUĨ`;C�*@��`���KK���[T��ZbYMV�u�4�iS�\�n�N'���-��jn&�t�
�j!��3�vb{���&����)Vb���H:̮��i:N�uL�ڹy�sD(8����2=@��q�	$���Ɉ�Щ7��T'Z�&���P4�镘Ղmg�{�c{�
���
���Q��NS��^�P�A��F��)�
SjB�:�r�uo&�D�z�OQQy�2T�NN�1m1�<��מ�"rC���"��4L�'m����ҥPi����/ �d��ev�'anYJ���))�D�2�bWJ��C�p֯!���8A`�-�S-ӒX�����%�i�t�YK��墧�� y�ZBI�\���l��֜V��$�p`�-豐���[�J�"�&���U��C^aY�7���z%]�'��y���s|y�*� ����1��&nZ���j��&�R:f��j�-NH��$UgWaAL�`1
s�\c#j�,e!�D�Z<Y�`�BۈJ�+���;�N���9���\�&cN�`Z�-ĸ��ff:�T�M�]�
5�
�X��#F��7�jڪS6����JlS���Ɋ�k�!�EQ�ލ'Y����=U���6qԮ~F}KMPpF���E
��m������J�p�Y�ZT�t�9AHVAnDmr�NhR X�
i)�9�Z�9\Ӝ,�HT@����Jr`AC�P!�c�8@��ϗ;�y-h�%��#��MS:�Y�[��a\ݹ�g��[�&ip)�L
AT�m�,*Ka����Qv^V�Q�J�:�dE��t�|�)窡�M$GGH6����*d�
c����D���4�mi G��D%0VW��lYOr2li)����PXT6Ԁ�c(�62�J�,)�E��lɃL�H|�̷CJi#�A��2·���Q��M�[\ա�����0����U�C^�B\�]��0�I71�3�9T�Tté�B&�^�2�"0šE�`�Ъ7`�(,q���Kh(��6��
��s�^���Q�X"[�)�BD
��")�9�<HR��h�c��Jc���T�`�e��jX�`�vNLRel�D�"Ǥ�Ν�d�ճ�4i/'#�Z1Έ��y]]B
@��ks��X�	�Y�E0i	Ȍ�Dk�L�7���!,f��B��`IP!�7Ƀ�9%���Z�b��,bX��	/K���2H�`��:eE�t.B�%�����#1�E1��"C��T0P�P	��'@�F��Yh�zn��[DBe�{�0�Ƴ6���b�A�t���#:�PO:/aLS��um)P7���oS`�͉P�]i2\���U�H��J���ܖd��v�!��3�P��,��	�m,�Pd�AԮj���T�i����0���B���֫K��)�2���,K�TR�֌3�m�'C��h�Ɋ`6Ԟg�X鮲F:k�P�*������9&9�d������l�gCk���ݴ���)�2-PTR�R�C�+mh�cZV&��T�L[�"hk��
@����b1=�U��.�#)q���@�b��X�,(-�"�$S-2iI� Z�1������*]��JD�Iĭ�0\�9K�o ��eZ�K	�'$�Ͻ�,>�xg[G
�MZ�2���zl��=f2�����<��9�y�*���Hv�I-�@��9�!ezF�f�Cmi�QVk�R�P<�PM��
��lGC�i,iH�K<7�#&��r��r
� @�
����6�3���JUQ��������$SU ���bq=��:m�c6bp��5�
=K>[�ќ���l�:Ek2�R��p�\�7�7�z�3Ǣ`�̫D])XPw9�D�Z�#��l���;�k�C�b^����M`�t���N�)V��δSt(t��iT�]�5�
�P@��
 @����![D��
�B��Nr!.��<Q�h��$d#a$�휵,�J'Kb���F$��L��,y�Ԉp�Y��Mt>'b���!�ٜ9�Q��+NK����DKvy�~}�s��.��i��ɗt�M�j�D�7���-,Ӝ���cr0��k��(T�
���`7��c�q@�00 ,bT @�A���C��M��"�֖IE>�hZ��
еPD��	���|�^k.��#:��f
��!`{��a����W�	�gϭ̗�W���nx�%+L�\���g�Ьy��!��읗�5�U��%��xC>�����t�2R�̯zKq���,k�A,rA�h#�i$�@
� )R��[(, @�`!c��2@�5��lm���ĭ��*y-�F���M��!
�C�V�ہB���.PnY��"�U3����r����F53���u�[Y��d�0u' ��3���i��蝓�E��5+0=���i�f�Z����S�<jM�.qb5i;�d�GykMFLG<�K�m�f Ʊ�X8HLBڴ0b���9Zp�EDX�fŠ�FMX�B�9�Op�L`�e0D$��4��� �cB���
`�
���=C�j`�MA#Rѯ=U�S̶ԥL��@<U�6�t�b9�YeV��C�(謳w)W���A����*Hok�j�;k,�E*��8�3澍K�>q������,e�4��a
MSL�X�vЉe�@h�PPL
(�B�YB8 ��Ģ�H�Lc�����T؍�*�B0YNR-��K�a 	m�d�"�����@;
!OZ��+�RŶ8R�;$������:['%��Q��a��U��<ףl1E�E�K85+�u	t��&�uC���<w�G�j'K����'�&�=�00V�U�#�8�4�V���i9���9�Ŧ*�K	&]%��h��,TQ���B��&���J�֨mS&Rt�L�L#LS!
l��Lh�2Q���#

TƉ�C �F�2�)���8�t����2����%Y�jZg6��x/\�{�Ϥ��׿=���k5؄�C2�=Z�&�=і�7�=l��b���z�#-|�|�����"5����d���I{	</]��"H
����5�
�m�t��;C��-�D]P�R$��P�"5:�ɔ+Z)Q�` ��6�(d��!AИ�=6,��hS���!c@�
֛��Y�457K1@4��t^���4���Ϛ��S�3�0�˟Z�W��aAi0��L��D@&���4�N���q;V,K�oT��NCLδ��•!^�.�@�d ��n��v&Kai%�� ��ACsIC(LՊX��	+e������M�� 
2H�Ae
	�	`-�H�d����9��L[UQI�D�v��a5
4�kWέX磞N3'\[���l�V1���,5)��h���2ɪN�@��c�[��E�4JX��Q�!���<KT]�S�e����-5�Ƃ���qȘ��Ғ��]�\�TRŸ:ph�B�6(�H�ڡ�*_��=!1A "Qa02qB�#@PR�3b�C�4r��S�����?���� ���\��B�/�=#��c�Q��׃oOx���0�'�`(�+dE�	��OpG~�+��<Eq�A�tt���Q��"���`(Q��eO�
?K�<C�0��+���z�x�'i��xJqÕ[�a8��E��Œa@V�N%l�Y[��Q�	Z�!p!�!���
V���Y;���FT(P�F��B��tzq� �B�Ѱ�Ÿ\	������گ�A���@����ˁ@�x%N��{zQ�9R�	�N3dRT��㭰��<Gد��p�����}F�8l���TT �dQ�
p� �VW�
��…B��
G�'�xF��mp�ثɼ#|&���: ����F�DJ�4F�!D�W���r�6Dl����W��q�[����vD`!�*�4�\�'��6��}=Qť��YGNɽ��������ԭ1i�p#��[B
Tt�Ӂ��ѿU����'�Q�ȣ�Q�n���0� ��`x�d'�=-4S�?b2�	�����)�S�ڄlPxF�b�=f@�Y�aF��D(��O�eo�F��q��N
��1����0�v�Bʈ��!E���-�?�t���Jf���
�5�U���
�9g	(�B�"0��r���#��S:(�?�x]����c�8
Bp������AH(��V��،�eG��u}�����D f�r� ��N���IY������'��`U��.���}�e���"��-��J잂*A�e�eZ�A	�z(�*Ҋ�J|5:M�E\,��M3���u��5�'e�o�W*8����G��}�~p1��#uM=m��&
�-��p�A�u�*"�_HD)�����/%D��C:�A�c?.��`�G.N��HY��<G�0�G�s�6V���À|�~��s)�b���>���{\���p����!�U��T`-QT.�k�.���e.B6��P���nn��X��\؍	��#lu��;+���(ʎ�p�>�??�� �2w
U�+M��՛a�!�(�PB�'���
1�YgDQ�k�+�L+m�]�t1)�VdG]Q��y��t)��}@�c
�B��-W����q�%~�\cb��%k邎��1�dk�D/���7C9�un�J��_W Z��B�Zafn���0k�m�@��7+��@pgC1D�̧�z�~xX��-1>��0n�w�@Q�U�k���B�奔-��{�	�
A�ܨQ׀�[ڢĢ.�v�,��lh��)ַ����en�;�o�Bۊ{c��,��u�ln��ݲ�j��2�M��g���"衒9�Y�Nt�11L�7B�F
c���'��E��"�wOxe|��6Q��
T��#��ǯ�
�9Fl.��>�;���0�
5��E�{'��25��l�ƒN�V:k�
:��n�HR阐)K��[(RcC�F�X,��~�M*E�����xbP�A��EP�S�3@�R�@�j4G/��H���'�S����j>�t�D>�+��Q�sM�:��*,��Zas=@
���W���Z�����ojD#�	����T
�J�)�5�ӨUj����J��M֢Ta��q~�7>в��M��xY{'GW'k�[{�G}�h��1�OA��Cq�`���0�Q�u�򎫔`Pq	�����TTI
�M��f6	��n���?�V�E����)�3j�6���t�走B�x1��ֹ���kMF�Oջ��
��uP֒ʲzB����D/4~���B���W��+��6���B��>�M�q9W-�n��C>�%yǭ�ۙ�So�U�q��1k�	;���_~ �_�یa!�����7[�7�@�
 "�FUܯqD&�qna�m3�	�2~S�6Pe�tN8g�S�i�D�a��ج�"9J� ���e9���©R�A����[<�'���l��
T��%�Q��4�0�M��}Z�^h1��M�m�N}W�u���$ޅ0�G���	�����q����Gģ�cQ�ab�0�>��i�l9���HVY�*�Oe����GE�9s�e@G53�2�\,GҲ�YkS�F�T�[e�� ����b_H�6@fic��3�ZZ�q��:��U#��7�D<�9�~
��4K*f5�bPwM�����3=�h.���)���Y��tdiPGt��ڕ4T_�����ڥ�C�G+��(C\7
2�o�@7b1��p�-����8����o@#�S��DB�Ky��YT��Q�fz{KJ�<�+�WdcZ�weQ����@�+8�]��@���N�x�n��˛8*��i�=�<�Zt�Ӭ�`�*���[h�I��si���d�?�UJ�uDC�f�U��d�:�	��'�� F0Q�&���培^[�H�,�^��A���E�^L^S�)��	�=�8�,�"Q���~��6�i����@&�F�S������w�BlЃͥ�u;����@p�U`�Z˞$����y�,��t ��5�����Ps\,��f�j�o�
�J����f�R��S�ڡZ���*�I��cK�fC���M�9͸^$pZ9S�Ud����)�e6/�+�@4fU���W��D�{��Ls[9u�``�s��e���@�xn�:���	Ǵ-P��>�؄��p(G����"PS�tFx�5�x`*@e<^�'��Y7D�#EE����zm:���M��C_M=�1��|�.U�	�;�T�g�7��Iƛ�'6�^`r�@�j���}:��]�*�e�$wY�{��e�Qp�%m�1��q�)�r��Sp,!r�˨L��S�
��r�r�U��1,,p̪�>Z����C�N$��u}7�O�&b�'�O8�xv��P��Ѫq�&�m
oܧS����Qעuj���P�؋ d#��Lbr�AB�bЌ}�� >�#m��h��i��W*�1�U����z#
%�e6?�d�.ӟ�Qs�+�~TS��Z�d���
��r�L���I�S����1��N�P�Ui:��dʷ����f�y�>�O�|����"���y����yHKwT*��Gʩ�
F�v_�G��-��L<�z&�~A�nFS�u��5��r<M7AO�\y����N�>���X��x*�@ah!4�)�U��p�kϟ���7�^k�B5]����ܤ��^G�l!d�08�C>�$h�C�N�{nQ��,�8賅�/1fk����Cu�ũ�
��E�<}%3����D�J�I��VjZ2��g1�b��T`��e]md�Lu霥4���Q��N�_«q�d��w(Os�<��/>�#P�D�e!���EZP�F鍨�A�����֩M�B�K�6.��(�pr��CO��Ts���S���d4*F�'���JX}�&U��sOШ�9׷Ĭ��VgT��t^k7'�i�Nqq�m�0V��\C����P.DŽJ#;h��a��qe�AѺ�ɗ��"�1�DV��3>�৶V��oܢ�0�ODSk���#�e_09�ƫ+7y1�NtY�RI(�K5
�6�T��nǢe70˴��b�9 �YW�풟O��>��R����.X4�pQc�]��3r��W-AF����;�CO����m4�}�U)���͎�5��mQ3fjuF?��i����i4�\'�ٳ�"{���t'TTb��)�c�0YXD����K:k�fz�H
J4�
VKH�AS(�[�e6����t����e2�m��L(S�w�o�a)�b����̭�)�X�3z��(��NK��=�7+��,ce���Ī����nTA���TfG�F�F{L��M<�7�e�7꼶�N��52�ϵ>�/��8�0��p�Ph�I�̰�
�%�:#N.�J��uN�Q���4Ý�6�.x�B�K;|�z�T��k�Ӫse*�_OGe�fS�i�8"@�r5�53��s����\�6y!�&R���'��S���:��:F���4쉥�G��I��|G*��(�,j�G^�U�.#e���]4<��H���� ��Ԣ�~7�� �֝��j��`
n�z�;&]ҿ������5��2�r���c�82�m�

�F'�'���Tj�}{f]�UL�̕o�yuYzn���x�u�\���%����UX^|�q�R�O�XjS�*���.���9
�T�@�ma��7j��6�{Hn���7e!:�I싨�
�g��fS��ɮg��D8���-F �M���.]Q�-!�ɦ�)�W���J��ۺ�Nf���R�����l��#���𣨅�Qʆ;���Ƿ�&蝪�;'�2��g�ML�T*Nim��0~��4r���Џ;�F
9Lꃫ����������Ls'>�*�?C����&1�.�gy�E��6��j6L{�:��k��SN�[n���-�gd��W��8Ө2;T�.h��*-k�1��͗��C�'��廔��-�ʛ�ct]N���'�`4�yM��>��2�9�>Ҫ:ٲ�E7jF��	˨� *o�9Ɖ�
�Sǖ$:B�]e!�V����F��br�o-|�lت4����
��F���՞�^s:�Z��)�f�?�7Txp����g���!j��9L���P�Q�D<�g#'���7YV[�c�D�<��B��w1�~l�4i� n���a�5Tj�4/�D�v�M9_$�̪9������Tc��f+�i�S)�'�k��:��b:�F���Yi�-�di7b�M�J��:�ߪSf��A�h�����y���{��V*�-د�X�\���7t���l,�Zd)��,Z�u7}����O�Z�ƈ��9�{f�?y;#�]!Iѫ#��y��������GМc�&�&�dz��>�\Z�W��~�ʤ��%e�2����`�����~�YW���9�t^Ѣ�U�nW\,�l�@���/4MĄ|;^&��,�geM�2z�Rr�F�����6���l�W�,�N��;�r
�Q�@Lc���R4}�3-�U�B�R��#CGU4��9O��7; �J�J"�7-	���V��Ti�z��|��,�:
�q�(3pݗd�ӕ�c!�]�#T���d/!���>�^gD���������Q)�n��<�J���G�	������'?LȊ�R���Z��,����	�����,5�)q6
r�]�:��'n�&
U�J�k§F$�-�.�a6�B��N�S�4S
l�RwL�A���C'֜��v鹝f��8/��'�y���=Ժ'��
l�ר����ZA�:��r��R6My���}����^k�||�D}ud�UA����^CtqQ
<�����e�HM��ʠ�L9T�]ͪ� ���S�Y6d'eX�&Әq*͘O�F���eu�(��%��d��)ƫ�uN�0(�
��b�ph�E���p�f�� �O9z*ܹ��nD'�5L} =�F�D�fiDH(uOf�˨�w�o0~q#EN�[{��p��#��ȴ���E��K)��Y\�>�3��(x�@mהlj��Uɚafo�J���huS'���ZMU^ef��j�i6�T�~�xP���k*[�>�J"�c�pz&2���.?�O�˓�y�੖�������0Ъ�7�R�*�h��5�L�d�NЪ=��Z��X��VGfM�7Nx
���E�,�l��8s#��{SW�TT`OiB�(���8D�m"iJsnn�"8i���6��~)�a1��������7��GV���r�e��YYD��k���ؒ�)�4E���ڎi@�w*Mu],�ܣ['�"G�Oc���eJt�1�Ǫ�W��	�I�*s�:f�Snwkm�:�.�A��<�.9�|>�Z��7kS���*��)�dl�;+r����SL�f�wtvM������!V,�/L���4�i��b���ByҘd��W���L��7����i?�W�R�g�D���
il�:�D����"V�Z`T�Re8B?��&�����>ի��������7.n}�Hh�|Fڠ��:wN
�9Ӣ(Pl��Ѩ�M��Y��OTi?`����Q�@q~�yMYT���L֟�|CA�M�3GT�,�{�bD��)�t�7ref0r��שS��5���.���l��&�)��6��eylRhcQc@�\��h_�<�*���X^sB}7~�f#��P|�ݘ�^ ����
�q�M0�yOd�a�*�|���)���vlw*	0���T|�c�kb�3!l2�e��aS'1����*�9���/�B���W��W��8>��d�B�eU�N�T���G�!�	��%y��$�P�oe��uʩf��ܠw�I�3T
m���b��uN�%5�!V镌�����dYR���t^�'m���7�H�g�
ZE�1O|��Tj6��"P`���֜�ď�O��ى-���?rk]�F���=SX�b�x��j�)���(?�V0	T鵆���U��4*^
�&Jɒ�h
�nhxN�HR>��P;5�sQ��T�et�s�h
b�râUz��]���A2k���H;5i��P{f��q�Ӻg0U3�JuGg�T�*���7�J|h�T`{W���+�;��uE��z�T(�#�4�3	��q,���o��4�W���J�
or�ȤQ�u%8AL4���t�Mco�OsZ�"���N�Kd!s;�k�y�-��v�O�~�3U�r�; )Pl�z{��]p�&~⼶f��^{X2�j����>����]��R�U�N�Lׄ�M�2R���2�m�UðL�L�R��L]���)�m�&f�f�R�uuY*�o7U�Q�~�:B�b����)�E�jU�,(�܁�v�^�'&���Y#T�R�*�e�s]N��3�*w�2�	�`:�EЮB+/tc�p�#���`���u�.�V.Q�nV�Fw(�r���:Jm`;/7��)� ��g�Py٫�eR��T
�Z���S���(}m�����-�uY�?�Os�laF�iR�*~y�j5��n���IO"a�T��m�s;���9���"FR���
j�֟u�]T��-��ƶ^�o�Zo"yl��U�M]��E��|�A�'��g�%��x�A�q����ɕ�捓��J2U'�ik����uE��o)����5�W���A�T���V�Y�Jt����>��4h�zS�C������9; �n�e��WqF��SZ�/)���I�QpT���G#}��
G5X�Yr���n�M��%�[����8CE��I����D�1N{����G17^���W<�`@Ѥ2����	�Ц��)=U*u\�^�OsÌ6Ҟ�:�L*9��k�&��j;� �Io�83H���0^s/��O�dT�UM£r�ܯM�n�l���g�T�dyD,�v��R��.'A0���W�Y�t�eB�Ψ��u�
�Y�IY�a$/:c0Uj�?j�{Qa:�F���.@[�a�GOZ,�N�1k�7B��PwN˖�G�
�b�{*l9L��8�=S#4��T�1<�|�\�m�'�2���	�+��L�gMђ�HN5����ra�/5�]��#S)ӣwz��ϐ����Jy�o�q�*AR�S>g�Tyw)�>�p���Q!��\�*��3�P�t{�
���=��WK���GR|��5&�0�M�r�թŧA	��Y�,d�`��N�9��@F"
�6��_te�fR�k���YNiN�%r�k���OW)�U�N��7D�4wE�:��
�j��(>�٫:�a<:{,�Y|���)ߺ���W�6��������4���&7Q7��6��&��h�wI�¹��eң��t3�f63C�S<S�H}�&�/��%�`HUj�o6����k�s2r��y`��ׂ9�{�r� |XK�>��حV�"�jv]� )c,�n��6�������)��8
T�LB�!S�a���/(�9r��N�40?�[���6�Ԧ�or�Sd0Jsw�R�Q:&�qB��`Ro����S)6Ù1�j�:#��#E�?�
�B��~T���Ӛ���h,8�?H�{be�p�[�%�I�I��1�5B����EWY�Sj��J�ڦ������Qٌ�ar�
�q}9�x�H��U4�N��A���+���o!$D�!��p�F�ֵK����N��F�=���.S��p�K-�X�=Fݕʛ��^�D�phG�'�~Ja�Y5+D;������ȹg��C�h�Lyb��� �/uR\a�Yr��4���Tǚ���;%1$�F_$������3Ϊ�涝8n��^�j"�Ӌ�UM�*�Pg��UY��<�hM1�*�L�{A�R��LH21m����6]��������DJ����G	:!
j���}C�.�
U�>ꖩ�7깉�����A�e���]8��EM�L?�U�6G7DD~\�Ä�7E�Jt�7���7�D�_8�T\�tr����(��(��
f��Mw����4Q�1�'Z�e�j�9
�C[5\�s�����1��Up
M/�����4�����=2!���i0�/5�@HN4���ZК�?�ʫ��c?�L�o�D(��J���0��C�0c�ȽĦ�IF
�"#|Y��E��TaM�J=����̯�i���:��c)��L<�N�6DG�6�`F�ŽT�<M���Ul5NA�Y�R�Dzq��L��lg�8��e=�~UkC�	���!T�A��Hꤘ�U���)6Y2����	��f�+T�.��Й䷭Z��x��^�׾�j���O�D�.94Q�)-L�8��#M��+{Q���zb�p��
��GYJ��,Ǣ�p7�N���c�Bk�HOl~^0�;"}��h�m���L�I�-
6E�dpe9�yU�f�m/�J66@d�M9���ݚ��T1I�tXN7�O jn�]��T_I��A�v�x��q�O��m\)���O�t%�R�֓��w�#M���W8�Sh���u�����Q'U����Mw\�������4��Kq��ѡZzR�,��?+|n�p'
P�q�#�#~;��ՀWP�@"�	�(f�jn���S�r��9@Y #̨S�j8�#[�/�YZ�w:yn���R�jˉ��eF��������f���I4��0j�̃�%K����gyt���.�%2�Q�� ᮋT@\����ܡ���d�#	@�ێ��Bp�	������X��cԧN��'�J�:��#�<bP����x�,�qn���P:���:�
�L���b�c�(�2{�j�1tV�U9r�2�V���4�D��
�N��9wyE�i�S��B��T|{X5Y�y~������v�����>���$���^!��3��g@��~J)���}���8��o�����!S�O���G�
�U���FCT��;�'k�x<{!��*��"W�B!G�x3a�6Qe��+\궲�Li�l���0��E�.'DTuA��0�ng���{A,���{7�5��;3U#:k�V�CQ��t\�2��t��S�y6/}��8�u�b.�T/J�.�Y���n���L�X�]�i�1�a�i�j��#�uP�OLBi��ܩ���j��c�n�G�5�J�|!o�J
xc�n� %e�V�5��\_e�I�\�Y�ʍ;grq�,=��b��xz~i5j�gV<�`�VlU<�y�N~�NuCL���V6
�� ��|5���@��,�l`��ӀG4Mpp��s9@Pe�x[{+6���3�)�x>�N���<1����au����k��l4-�l�!$���:��\�R���鱚]�C5K��bs�ef�,�� ��SZ��(��H�uI��7�D5�w����#+�pJ��U���/����TDb��e9����@�xXa�L�+";����LeO�#	��T~Pj��d;�D��`�F�%��Nii�1{�壘2�+UW`����l����#}
�M�*i�������s���Q�����;;�,p�pm׈nZ���{�ed�:�Svʨ߇Do�\t�nT�;#���uG�#�}8�p�gяWV��\�%mu6MNn�afE1����Mh�=�P��qM��O�@N�C�	E��?I�����N���!��4���'M�l�x�N!e^�����4�N��琉��i�'0���?(��#�j�@]
Q�
���B�0'��=@x�%�U�wOd�+!���k�	w�tU�ٛ{19�f�ܷ'�:(Y��Yf�F��r2����Ɗ��9�7_���Q��Ϋ6�����N/Tu8��V~N�f�
�b�-�p��[�����	W8)G�(]d+�r;��	E���A�q -�D�l�F�
J�� ��`;�׀���Ω��Q��M�LI2z 3s�0t���@�������N�ʸ����7�J�ΗA��-O��P�8��Nn	M��1�J0�Z ��6MCTp�U�b�]�B޵�k)S��a
|�O�
R�~`���w[���XC`�6xU��t*�����B<�T�
	���t�]\�Fm��wdn��9X��J%R�{Z���١<^�<;U�}�O�^2ܳ7�>-ż�['jx�_eGAG�!�Ю�bi��6r)�lzz��~�d�.
8�<A~k��Ӻ���O7u�*�r�q�~cXY8V�E�c�p-��t��ĩ73���r��J�N�i8Q�/%H��3����Tߒz��/�(NQ�@�>~F�#���=�
d/�֯��Ŧ �+K":�]Ow�b0�>�1��[��F��r��������?)~��<o��*xA�
�jc�}F��׸�����ݖO��ZΉ�$j����7�����1�.��PT���ք/�Bp�*
��c�d�\���h�c`��v�	��NUR#��?���}����4��D�:�0U���1��\d#�������e��:;����jm����pr��3���/�JP�0#�=��s3@A��k��n�Q�:�Tj��:_���#5�R"FE6�̥���	=U&��s��,��84��&�d�XN�����^�b��+��.��a��jp��;\[*���������\"GLBʣ��]O��!����
:��GE�;�M�q��E�O�t�`0���T�5���i��s�&e�tI{�*���
��,14I�;�ʚu�3�(��0�МY����EP�]m�a&�p�Z`!��=��߃LA�##E=B���+`Q�/���";"���O���"�hZ#�y�dt�[i�\~Q[-1*a輧/+��Ɵ��´�����M`���s��k?��Z`�S2��)���j�_�T��L�� ��L,n`�w��']鬐K�Y�u
a	{�UGdl,�l0a�Pu�c�Oh*����
�n����S��N��BЬ�%	�R��!}�#;�	����4�́C�`(�
nTtR� �E�<���;���y����=�����J�T}�N�QNߗdӘ�u�O$�!4dl��3d���9�
�B�dѺq�:�����(�������?ܨ:�6���tVآqᥑ��'��VZ
����Bne�$u��T5@tW�[�?����
-<�'�m���Ҙ�JW����7?�`���k3f�9
�i�.��q�^�B���?yO�D��f��֡�uO
��?.4_�Wn�=ـ��ߜl^gTu�9Oi]x)á���WR���Bne�j?
vMn�����.�;N�BA��	��{"�Pe=�U&� �[U.�eaM0e�{�33�*�9J�l2�jys�De�|
Uȕ2F��FV��:e�4� s�=}HG�@�iN�S�n|��:5j$t�́wP�no�����'~�(Fq��X"�etNx��J8:�0���r�!�ad?p�c�
u�y�ش�?�R(]�6T��G�P���
�(�3r��eot/[�x����C�Y{'>l��hթMn�;^[��1
�򿲨!�����[�q��:��P��H��R��D��sl�0����(#==���;��O��()S8�EJ�,�������_V�#1��7[�b���W���/j��j�S����"y�j�[��h���!t�]S���ca9�����W�B1�[��A<�1j�N�����
(�h�)���Q5C���-�R0*�|�8J6[pF2*
8F���.��8L��foG&�sr�~�?uD�7vLl�/M:�*
�S53'����zI�2�N�8�˜�D��E�)�,�T_�/r�o�Q����	�j2p�p3�CU�?�9;��U8���#u=�������>p>�`8�p�1��6�tL�+�"�"�05Y��eJ�*��9?L�t˶ɞ�L&�0s�Ug©��UB��s�:�AqZ�
VU�FF�蟯Qu
p�r�GT1o�Tv�(<�'{q��N<y�Lj&��j����r��?#8O	��I��+�
�y�Kކs�L�e�u<��7BPq�D"��^Y�Q|�f�
�*�^L�y�*��N��=��'Ą-t]�\��dN��YB��O(Ԩ�xv�]C���l��h�+L�
��eT�E8��hn��*�#��8�T`zc<Q+L�p����Ӌ�/qb������-�L�
���j���id4�H�{i_u�#6��ʜ�Oz*&�e��)A��oe$�|(=Q�6�mP�2��PT(��*V��WWM���!q�m�9���F�꞊�G��c^	8����zC�8!�Q������܇��*����a��xiY���&qT��r�%�;+�S�"
x�Q�mO&r�`��]dD�Ju�S)���)�Σe�����YH�A��q�G|Jn�L#�� VeO�Q�Lb�
QC��Dz���+\	�x��c��N�	0����T�w-Q�'��J �V��6��5�SV��=�x!��N�Y�
�[�ùY	ݐe�\�+ar�8胰�\.܏Tz��.��KL"��&���B8�Ÿ��zQ�L%���#�'HM�:*����O)��L���D�D6%r���F�R�]Ll���dy�ex����	�ȂD+�ԣ+"x�0�)AF��#��!B��(z�Q�8��q*0<S�8ʞ	�
��=����N�w��Lh\�,���F�d.Au�i
�Cu\�EԺ,������q^m����
�B��
x�B��U;+�[�P���>���z÷�x
��NCq�c��
���Z�Q����V�\���.0��lm3��m�Z�;�
�&VF�^[Q���?@�}TT1��@��uRVY��7��
l��8�!�@�[��u@]D��D�8��ۄ~L�q(YLJs H@+��3�2��4uD�쳓�
?{�r%�J>c�a�1�G�f���,�dti���M�e2���杂���Y��2��1�YYGLIM8B�6� K\'��\���5�<�Ҳ�!q�nқ�J��O�>�TH�,�� F`��uhSp���]�^\{�x�*n(���e�`���3�
o(1��h�A@�)�7°����{l�Y��ka<�.T]�j��1��7BWL]��{)�T���v'^0�����}!n�e����#�H���N�5F�Չ�b��!:�6aeh�E�f��*LAY/�$��k8�S.��5�e�Vf�j���8��ՓyE��;&�0�S�DCDYK����,�en:�VYР#�'��8���Se��#E����
�Z��*8CԎ)�7	S�vD췅2aL�����Y�h�W�E��#u�5�žS+��`�t�w�W�pT��:�5��7(�
�(/0tT�_�U͠A��2�U(h��/���S�5J�ҡ}�"��)��
�(�x'������O��ԭn��.)�J���/R�X;�={���hP
���ld�5��#�	���t6P��9���Ψ��ؠ�4���@V�gqd���T>Q0��r�d�|'u܃J���:�]�6
T߃5ԭG�G�	���7]�"Tf�w
��[�t`';���/���Hn��h!9�\�I�i
]���B�pN1�
鎋"��im��Nɶ!�L^S��	+�k��<
���M֝��g#�(=T�aM���(�ZtGHGDDpk�~|~V} !�-�[�d#Dg�pr��uC3��ZW1F�uv�\�����FA���rTjn�F�X�Y�4�~��ْ��0j8��I@8n�O7�]:�!X�7S��BPZa��u����%#��7l��tZ�;܉�@�L�Y��,��(��N���Q(B�w)�p�T�E��r^SHsW����7�B�Z�p4��Q���Z��S���qN�p�(�V(N�
p�)����>�G����Re6Z�
=Wp����tյ�R�6Ni%yc��T/r�tDJ�	Ν�0P;��Oɶ�
�Z�X!B���߅��j0:�}(������u�	z�Nu���u��U���G��"q�Q+�i�+E��9ZtB�@R:���Q���6���'�pm�jxƛ��i��^&j�"��<O��	�Q�gd'p�%B�6�/tt�w[a�a?�ǯ�����Se8@
n�\�:#%�T4��S�-n�s"OD��`��-t&����0����5pM��D��u�h�dfx%J?�>���*!1AQaq� ���0@�P�����?!�H�*T���\/�K�)6fQܢkR�ʣ0%W�[(l�cǿJ�+�*jq����\�ĸ�����ʯ��\��ĪfPE�L�!p���.o��0��Od��ԹW�#��������U�;x��QL��Â]�

����PA�����\�Pį5ʨ#��<e�}A�:����r��"���9GQV�^�8�32�J�2�?5���3.<�N'̤�/P��fZK��3�4\�~<O�VJ��\�*��&�2���[2�^9|BgqYSׂ{�g�i���%�	S���ʗܨ����T:�^L�����s���%��Hʔ��vT7�A`���e��^e�1��09�i�����fT�#K�5�����:���W�~
�"˅3|_+�0�T�;��~�z�%�E�LJ������y�ܫ�Qq叒���gM_���j��G�y��e VjZ�K7�7�J�D�;2�K%c>UK��Ļ��;���KOi���+=B��dޣ.��3���NJ���A*��+�O��m��S#C�ڛ��cx��������U��>^*o0P���N�E���8�sJ��˟���^||C_�g�g�p�{2����)K���I�r�^-(�IA= �=*5��+����G׋��>~��f,s2L�.U�?2>�Ky��$�Y�r����^M�
/��M=�_�C'��h�G�ixŁ���!�f8�ЩcU�M��<@{���SM��h���Pb,��*���Qq.f]@s)�%�Hq�����W\�c�k��D�c�����~'�<|0g���<�c� �B_�8�x30׃�!�m���;�:s> �h%�Vvˮ#��;�mO�+a|%nd=�s4z�7�%��3`ߌ'$���Qk���x��F�[���	{�
��-�4�	`���L�8#a>��r�T��ܩ��P��X%j�L�=��ᄯ_�?"�����Op�O�1�p<W���~��Jƣ�LlM���f8�s*�����E~��0S�h�EGX�GɧI5: ����0 °�ȅyWd�mг�S+먣g�9
7,�RͩH��0S�5`�F@��F����E������X8�ĸ�B�]�L��Spk�_Q|<�YԿ�{>������׌L��c��!���|x(1-�i���G�>�smJ�gS<\��*j|��.)��#jާ�3���Ƨh��&��A�p��1LV"ieM���Tjf�*�5��3K�f,�D��n��+3�L��\KϑE�0(��iĶ�b��Z��fy��5�hĻ�F���x�zN��?�]ϔ����|��H��|1�R�yK�ZB��LS����y7*kqf��Pøi�8��؋���<�n��[��}��s&�,f��K512�k�̨CS`Ss*F�J=(���ґ ���L%�s����~�K7�-�R�`�0H�,Eq+���X����61��+��e+�������*j�)(�G�w5�D�����&a��KK�&��ܶ�֡�}˩��v��J?�--��Q8bS1�x<nd�9��6�E��O��1,|�vs0��a,c������q;��
�n�f�B�0��ʅ�g:�)��]e��}����VS
�f�C{�?��*7+��q�s
����0�,q~�_��qi�>�E
��]��+�F��g�߃ԫ��������%��>P������������D�W�II7�5���'N!,˗b\���!�:C���
ǀ�3�y�4�S��P��X��̻_2����DO��9�.�{�U+eL�r�y���v�>�8,��K�"�F�56��L‚�:��簗.^�nz���e7�s���K��I�^Hz3�~g߁�g2�,�U����|�G���鞄�=	�`� L&g��`���á+7T!����%�*$u�w%B�r�h,�K���׆�.��#T^��j���VR�j�NM�^��%������Cd6���ܮ��&ϷԬl�>�{�s8ؗ78�0�3>xJF��)��^�n3)���~@��J���
��}�۸�0N"㴜d�u�_O�ϓɸ�'���8V<$8���q� n�E����L�~�vu����ٚ��2�g�ܾYC��b��/���:����J���'��k�]�}�0||K5�CA����4ˇ7�Y�e��k̥�/�J��U?D@%��a�ck����\bc�����
Pđ�g�{T/��K��0��*�(�����|
/�=J�8`�}����#&+.��z�f7S z���S��L��4���_m`]��DC���[>w2���&
0�P
��S����C�RvĕF&�ڮ��`��?��6���,�J.	]�0��*_�AϓL��ƚ�5���a��-�}�a�f9�S�;�TϜ�p��f����6��H���x3�T�����γ?���y�%��S���aAH�
��0���C�fEA���Hg��-���]�k��X<}J2���D*>���a�������˃ߊ�R���ܪ��G<b(0��%=J�*�̵�L��8��fnP�w1#��"Y�ı���f�f��$���
Ԥ/S��4m���S�w�RR�.��b�ܙ�+;���
�I�$��%&�Œr�0A\�������e�D�G�C�.z`�
��c���c�a�����x�"��UI*o"�3���A���漢1~8�O�Y�����dp���������3��)�J�~�����s*��1	k��%X�����;�c�z6܇4�9`���WqJ��6-wR��e��c�L�DJ�X���4F��\�"r߸��&�h{��7���x���Ԧµ�$q��wlvk�
~ �S��]���F�A�M�7���<����r���C���+�0�K�����w�w��;E�1_��O���^��1�E����v���VnP%!%�q,Mh�`X�bbS���fĠ��M�Y֦�vD�D28A��~����r�cٜ|A�Op�#0\=I�r��بS�bo5"�!d�'FbWq;~���3|xN��73���A�<���\��8��Կ�%��n ��M���R��*T�ߢ#�πE��s�Q\c�:E����c0������s)��[����*��
��˘����.�D�A��h�P(x�F���3��Df�n��D�S���RD5�ʕ*��>�{?��9X��͡z�Yz&,b�g�P�Y`��S��ه���qL��<`�s1��_��Ƣ��y����<|��^=��Wv?�J�Uc3_�kdUЈX�r10a���͕�� `�N�iQݐ��)w�\�fS�p�B�R��2R���C�ģ�]����l~��z����4��>L���䀭"@uR�?	�g4Go7��1Ѧa�M�T��%�)���(�2ė�o��
qxn���2}�
���J{�Y�5y�0�R�x�T
/��`��>��YwDž�M�;��c���H\ƀa��ab���^��)Ne1�/e�\�&����-ш�I�~�SF��{Gq	֢E�U�C��#+lkU�����C.'�\S.C�|��Pm�41�
�X�"퓔�k��Z�a�Ei�~��8���L��.�^.tH�S�5}Ʀ!6�_��"�6b�7G���G�.da�w�\fPX�1��T~<*�u.���]�����-VC
�1�����++4J�e�m)��Na��66�1�c�Ku2�#,K-�Q"������K����+����Ȏ�b*mщx���&�����%(4W0��|G�[�̴p!)����!��k�p�Z�T��k�#k쌢�{�K�[�1�����N�iͿ��S��m�q�+�*Ƴ�Y1X�
n&[�%�J<J�M0G.��S��j��0�S�,��v��P.�a1������`��)B�,a���f�3O�A����.���(5=����oY�[���N	�W���ᇩ�:9��;�p�uP���T�r����)�=��.��PBB�!kw���B�`u3���g��ve�5�M�@���̲�/P�t�����|Q�q�N��ȯ��p�_��{H�,�J�jz� ��0���yr�f���VƋ���Hp<�,K���v+Ӹ��P���j��5/��Kw��ܧ)/���GH�n3�
���T�x���Y����BEK�85I�f��%��/�d6�J{0���ix�\2Բ�X��M�D��u;�cI��b/���}���7{���
��&2�RUA��.{D:�x4���3<KKLG�$�*Q%M�pm�?����KV�)m���Y�L�=y#
J����̽E�.��5	�or�>.��σ�S��߸P�^��ZRjYW������ndѶrt�������p�i�j�[�L
0� ӈ��W��x��b���d����X�W�W)IR�B��
ʄq����QR�k��(ns����Oi.
ST��	p)2�#-0�"ј�l��[^#�O�M�u*����	����zg�l���<іY�b�KZ��T/�Za���`]1`��B��AV�����Uq�.�f�Nn}̫���lT���aU�Ԥ���ٟq
�dW�~���+.��r�C
�v\��"M�;Ή�0�Z��x�a醨�䎔�f���q�F!�r&�T壯w;����~�T!��g�F�;\B!^P��d-1�C��v������e�=�6�$�b�qE��S��~/��i_�q^O����t��b!ɿ^I����f�ϗ����næhЎ��[P�e6���/�����=��.��	|N$��4�� �xmK+�r�
�*��9'Ҳĺ��%�%��Q��Y�s�&�ŢE�LB�Q�W��Eb�L���sȹoK��2\ �Ӂ��ؾ���X�Ng�䔢���/N��;�z�R��:��L�#_�(S��v"��N�$������k��"�	��x�������d5G�3�N��~O��.?���0ܥ�1Tl|�c"��%1dG��z�2�7����> ^���p���n>�c�!"�t��ɶR���T�Y��K�T�Fr�ꊺ_�.Kpr:��Qu,U-��bL�E�Fk��8�G���7«�r��^�03p�*��)H��b]\dqjp�<�Zܭ@��x��S�G@����A�Q�u��㽾�=(�fq]:���Q
�v�M�;''��̶EC(a���U�V��."u����f:3*W�k���O�\8��ԣ���
������˞1�a��fu�k�;�K_�(s'$Mc�*�p���Z���G_��w�#�-8���M��'$�1{����hEdHv�
�y�h��R��ZM(�Z9\[�����Za&zR�^)����Y�]�����&��`�C#��=��r�p�0����D^�������5ȿ���.I��7�S�����Cn�rG%�o�i�,,�����
1�YԬ�E����Dп��DW�d��W�1�g��Qn�a P�rƐ��Jp�UC�&G�ejgtw-~��rGC�p��Q`Q�����s�z%�Q�ƥ^?��H�a�'N]<Dq���J�އ2B}�8��=��Jk]�M�o�h�(��V\��3�A��'���X鰿���w���%�,u�"X'�3��7��+\L��0
��/��T�J�%D�b��de��:�dV��t
m�iwn�t����}Q����	�o/Y�v�V��iI��M��<2_��1s���3D�Ա	w�Gp�M�C����Q��9O�~��������¾�FË�S�v<����~�:�������Z&�3r�E���U����縷s:+�y�NH�<�VH�|˿{�).խ�����6^�QhL�G�NB�@�����s��[)#%�ϑ����f*�c/?�p!WI����Il,��l���1܁� 4�d���@J��G@Y:�6��R�c@\���F[|A-��/yu(��P!:��\�c0��UGV�� u��R�
����5��~J�#Wf��ki�%�i�@k��L���cL^�'*�4HY�t]p<
`����*l_&!��"; ���� o�r������T
�R3�JE"�@�����_cV��ΰ.7t�hps*�T��8�ܭ
u�3��0�ѪBM`��}縏��Z�y�~ʔ��P�&R�C�����,�����Ĥ
j��O�N�\��̽��8H�d��P����U��"�8Jy��@��`�Y�x�9�ܪ	q�Z�-��ۿ��6���9N%��P�j�0���#�V��\A��R���=(����0����~��K�Q-�/0W���s4�0��Q���na
����4�+c��~��-v�E�Lf��';���e���;D���j���q�
��R��z�j�4+�2��z��ekb-F*�*�/�4�f?-��[D�/H�BXZ�fQQ��dy�y�Kylu�C�s0�~Υ�bs-�+uds,~{=WԬM���u6bsL�
�
�Z�t��Ä��ߍ��!7�kϯΦ���i���5�H�!/�I} �{$��k�:�w%��'y���;#�K�����sR���De��Di�p9#���b0�i�7�D�.>��u����l{J�Ve��!X�$��m"���a�`=�U���K�s�O�e�L��n����L���`���IJ@=l����(�b�R���qDtL+����G<�eo�V.�;� �4��{�G胥W��Rq�JXߙ�<�͛� �*p��wTi>0�2�D�
�G���5)Vy?�
Y����M?hy��G�^^%>�������E]?�y�px��6�jO���q��C�B�8s����6s�}͒�o��+���0a�U
�+Ok@�Ӌ�.����^�Иt,�CPa����=�<�.o�_��57�B��1T{�6�TènH�iW܅ZI갲��'P�~�R��e��q0:`��M�������F �[d�/ZpʟE
����x�9]¦^�4T�!�ơ)h)��0��mJ�R��b�LT@��f��^O���	|���.����#��J[7��ߗ���-Y*�;5�u0�#5p��5Z���,����ע>nK%�+���/�l�FQv?����F��^������,�ђYf*:�z��6�<�⠙j����Ma��qj?`�K�+���n&R9�f���}&���,_iZ~��	�L�L6TV�M�^�1z֢��8�9c�S�KֿLv�A�!�O�UM�h*AqEo0	q�����بV��!]b�e���ڈ�le,��wUJ�?�?7�d9����7+

e��-�q:﹅9#1�Z�LOp���(�������C��9�e�q�`���D�-��v�^�N8*��EjkF72%.!Uٛbrf^
�,�0�w7"�79��,��
�UKX����b��t� }8k����bɸ��|�z����o@�,�?ƦfUk�k�V3
ْ�S&=Y)?3��|1+�Hˆ� K�.�#���'��X{%�̭8	r%>�M]�	W�?�L&K"����i�Q/m;�x�R�S0h�o2�G̲�=��2�L� ��hǁ
�|Bn���/�+�C������G�/����[!�A��m�I�u���SIW\Cr�Ĩeަ,0{�#�odL��G��Ҿ೏��rKJq��DZ�b��0�ؙn"���%qG3��r��2��Cm澄
�`h���������f|o��!���^��s5�G�N���ξ���f[U�u;�ܪ�Z؈��)	�Aɨ��6"����a�emM	��=L�Tb��zI��2��qw�\B�lp���f>`��hP`�C��U��j]\��#/��>�3����C�!�R���~+�H8X��_���V��!*��M�W�)93k�1.m��Uza��!��.!�j��N��BX��5W�{���R�ω��Yp2����ɸt	�\_�.͏��{���tjW�,��q��6��c���gH/~eP�d��uJ��녘��Q�˵>�F���n�̯���<B�3f��-ᯈ���IuF�u�;fe�{�K�Lٮ�������+����Z��@B��R,��PIk�����!��gQ��q*�TwK�(�����S�7v�*��n�J�r�������:�O���Nj��r�����2��H�Eʎ�U�.����Bg�|�+��P5�V.�č�qU\r�.�j����Pˁ��
�n ���h:���9�7*��_�M�(�;���$Hma�}̥�H��qZ�z�#c$�a��ɧ���D�_� [{%�����@7xf 3�;��+�ֶx'�&�>��B�b(��G#76�1_�m龣�Zʘ	��
���
:��|¨�J���
���n+�a�o�Xd�̳~4X����x���ᶿ��u����#�T߃��Q����n�4ZU\���U�d��W��+G~(Q�с��Q���*[+�j�13[�]�������B�k�F�5������l/��s��f�0 uű�3�*ɑt�Yg�OH�z���F���*����w����v�����Ch��a����i��CsuP;��Ҍ+�,(�d�U�em����KyY�֦L��q����em�}�7���r��`��5*.Pm�vUbk��#��n
c��o^a�7�
~'��	��!�����/��(R�GSF��T��ģ�/y�S
�C7)1|Jt�	2-��
���
�q��xJJ�/�0�ar�j
Ҩ���<�k�X��H�\{���ϟ�
�Y`Jll���a��7k�:�����
��
}��z�Iv��e{�@�8�x��O��R�
Mܦ;c��9%׵<EaEQ���ñ���p��6;�0�0/3���Yv�v$\WQ�_�%�C#w�̼b���$�r����W��~
����~���A6�r��%c�"nhTk� �tu,��`��`� c�0�#�X�i]E<�J�1�0�P���ud�\��b�vL+X(��|�_�p/�5P�n��K����*�C�����Yr<N�j�0:�~�&a��0���O�ʩ|e���!}�fW�!�a)��j��!�Yf��D����.���=�A���DF�+cfB���Hc3���l��c��E_�\��q����s4�[=B�CF⇈ng�
K��q�WP�nT��N'>*�^����)��"��lm��[*Eͣ���^H�`��B��(a*a�S=+W(�[���V�7L��5��.aZ��Y�B�d�(���I�8�D}bϨ�.�����`E9@�C���HoF���d��]̰�3�8"X�0^e`�4��j+s~'��i��8��k=���f[�S�l��&����t

wF4d�A�YJ���j�ex1�d�n�M�Z�U�P�$<�9�8|�Eo�����X�G���_����a~�o�S4�1'�^`T�	_5����Z��P1�D �'B�%N~}B?JK\�f�����qȊ�c\c*����'q{��AA0�
z'���o���&�����3q�`��|�O��q��-&���b�4¯2:M󈫨�h�_̕M�D9TA9ZJp
fn��z����l�u̥�
�N�_�T
腞���XN�sL�7`�q.Fo��,�1,q�N�ƕ�&��6���Bl��P�ĩ��/�AFU��+�"��S��o��
�����:��F�.�Vm1�[Ћ�\z�
�
nH%�b�Z��`:Xz���p�nd:5	�0Sdm�tf����J�r�?P��Fu��M�6O�僀��[��lj!�2�q���/1H]Z!�0�Ĺuәn�8�[�,o���UڀD.<Q����9��R��\bSb?�1�/}E��-桗N��8�YfX��C(�zc�q�yJ��p�uqNr�d��ܰJ�]����#�8�T�¯�=���n_��GR�+�5faI��1bU�i�a�'�pY�+q��Y���ĩG���߇�D�[�8�R�\�e���}�H�tM�*	��WD0�RSد���k0ո���W-�3[�ht���f����dv@}Ǵݍ�SwÏ�j:�F�{�
ls2�#�3���VV�9�"��~.WC�6U[�T�An^%�O�,���kuQ7�7	\D3��D.�'S�����k�hvz�d ���L��z�:&�ϯPq�d�s��.c�`f��r�"
>MM�^Z#g^r�,�	�"Վ�R��-M*QJ�S�7�>��?�q��_h�S
����q�(ЯoPk��,a�6���ܤ^^�;�m��.�GB�U!qnnU�]s)hz9�*.=Ļ����0_��j��B�^�M.�qYT��(�R�]��i��nS���ĸ�_Q�_$���ܯX�w����0�ܷ�&1�ph�3{���8��!�w�c�I��r��g>-�U���/�'�_'�oP�9ķ>(���&�*�@��3{�gDz,ߟ��.?4爁D��L���sS�gFoK����Re�����jW�7���s*��4N��s��￴�`ua�^Yq�a��f .=+�^�*c��Ñk��|6@Ma��y,�6~�/1�}�T�R�[���	��qݶ^��������>���b�{ ��Slz�Q�m\�V30j'g��sY�8^�j����8G��9�-RJǍ�<bn=^+Y��5���K#iU�
i�	����l��*��;)^Bڍ ~epB�Ƒ-h�ң�`5�ī�	S,q*��)��L|#v��tAC>��U�P�?�/�gDpu�7.��ר�c1^C8G߼J��N�ٓDkh
*
����g��$A�r����SL����t��@�=�3�}%�J����ls����VF.�R�� ��AU��Dm̪�-Wز#�(A��8�y �d�:�q*)�Q
�ܢ��%�^�e����i�8����B��y�C�_�4s����L4��U����u3
sjh���Ȕ8�8�!rȞjk>���]Ĥ-�`/���9�%\5�C�Q?��J�:i��9��R�Ŏ*��W2��!�zE?�ŏw2��m�f{�@0��'�0c�����Dx��	���a�>٦锵�Dz�M	��8�*!�-Z|͆%2��j�
����s<�����(B^*0�����we�a�a7)%����B0Pv�ws�|�H��!��
�p<��AU9'�z�uYW�HdfK\�-�F��/�ђ��q|�"�
�!���JNG�f��X˹|�ĺ������r�[��lɦ���&��
X/MG�/�NJw
��OR�!�o�c-�f'�̇�٘;�9,ވ�{��c����B�re5�Y�����}�F��z%���o1^'��_��Wdg]}EW*�i�N�j�����2��~cƼI~�Ù��?>G~u)c��C�,#�5������R�廉��陙x�������&�H^n�x��v��F�WL+�,�L�`crݢ& Osz�Um��pJz����V�?�Ә�@rJ��k���8�s�u�_�&_0��WCp^ ('�y�3-��{tK7���%(��h�^%�K��fŷSo7ܥ��\ՙpu>���9���xEV�=��jc�3�D����ljX���X��2�Ks��i	�tC1��=%F�$�W���e-YcA��hY7%�Xb"��{׀���u�U�yn:�a���Ji��ܥnn��q.�?s�+�0-�l�IJ��*��*��Q�ə��
�:���*�]���.`�1D�a`��J��̩?G�b��s��<Bj���>�+|x�4���'�J�%.�g�SZ�s�����V�R�2�f��52a�/�M�~,�ƕw=1��S���C�U�_[%�W�bjU�&��fa-�ig�\ÛA%�:&���.
n[/�qa.|K�+˨x%�_D제���d[s-���N247Q�L��-���c�%�Y���eYmfH��,�QU����Vg}��E�Į`���S�Q�^8A5��-%�HM�e�%�rB��ۨ�x���a������{�i����b3�����_/��?i�ͨ��8bGMa�a8/2��2KAL���sd'iU�'�ܨL�����fQ0xe�8����\CΥ�x��W��M�pi�[��8%#,	s�[F��҂%e�Z�iJ'��Y�>
�q��Q��xL��P�� ���M �E�;�L
Ce3)-
Կ���eB9=K+^�3ۙ�1�<rsĮi4��[�Y�;\��7ɸ)f��R���F�x�ba���0�fc/㙨S5�V���A&u2��O����u�S4��1�fL;�/���sr�5,%�	�d[�>P���Ls8	�K%������\q�׃^y�_�����_����>�q�	k�%�P���f�4Ȝ	�Pʣ�#
�x����{W���Z��y�*��U!��?�u7���k��$�f桔�l� /�7��̳g��pM���������4gp��JC�j������+��$v#�*�bU��eӘ� ��r����m�0A��}G��/�y�¥LJ�"q��7�	��T����zF8�ҕ�8�����D��Nf����ku�ZC�D�N�;�R�*^FD6����Sf0?/R�u���!5��G01L�?����q�����x�T����t�G����,��>M�5*U�X�d��~�,�!��#���
���|�R(����߇{��T��Ԡ�$����"�M`���
�Lj7��ܾ�ɉ�c4��Xm���}ŴM$��p|f\����3�N<Q"i�#wR�)��D�����&�ODR�1�	��ƨ�TT��j��2�&j�`�3(Қ�Ag2�&5*��4G�ћY���O��4�La�W����N�:�Ԣl6����'h�`9
K��̼Wc��E��Ca��ف��|��0�q�&i�p�Uh�*�.��7�Y���13���G�fV�\�0���K�a�	MT�jPQ�=���cș�T8�o��e.���1�&�S3���e���<�|%����c�bm�:�u0µw�AJC@�
nj�_���e�P��|Q�����L�!�3�����E��χ�����p�:6��pٖs0�C[f7O�la�gZ�q���G�r���,V^�Z��*P:��y{�Xje�CJ�Z���A«�A����G�ebil3��*���b;��&���S����VKr��[����"�zf�7LQD������5s�p˯�a��Ǧ��q�a���_��$c$3�qt��q�l�4��y�^�D����<�Qr�N`��>�sexN*Q5.�&�h���^�J.F^YD%r��s�f�g5-��za6��Ag�b�U
��{��V���Ŋ"��D�W^���l@稫C,���2U �q���d����,	���.͢��ϊ�;�<�Y@J�aJ6�]K�u3X�J���s��Lq*2L�n�J�9���X�^�p�`v��:���&����a�r�#n�q0v �Q8�
��0��bĥ�c��M��y1)3	��3��σ�z�P�uDž�P`���e��Ĥ�-�
��U��✁��!g�UDMC3���v��M[�ϼڏ��O����K4c���eoǹ�q�@�o93[�eV|C��0�?���iu's���T�P>�+��DPD�*�
ϐ�`�=J��.��A
��ߙ�*X��T�d�{��.]b�Խ����v���+S�s�Ne;��1��!q(�ƞȯ��z��bQ�-2q1S�ؑF�`Z##%�0�!�v��B��f���x��e���^�wB+�CiZ�|A&�.�,|>C��T\�0�-���u�CmOLK���
35����"��gqQ[B%��������E�$���-e�	��(F
\,�)�z7��ܯߍ�2����#�!U��)�}�<.נ�u
�=y���3��ExZ�/�VN*g؊'�LD�>�QDi�<~舱�j�r�#�kS�c+q-��e�|$T�C��)4ep?s�%�sY�6��L���&��F�A��
G�]���|�_�s��#Papi�[$
���cD�-ޡS'�p�V�ޓ�g���.\����U�8��B�6F�s���md�rʈ�^Q��d3�7����0`
nYR�b���Pi��U��+�9�20@}p�8[
�{���,~1-n���iܰ׃�쯩Fe��e�:��x<0ɿ	̦�WS��9�8�,/��������	i�a\�X#vm�C+�n��0�7��w�����'��hV��q0#��R�Sd�cP�@�����m7��1%y<foԲ���(���G/���ص5�r�oh��x�_�{Yg�Mʨ��V�=�_����a|����W��q,�Ss04����x�z�:�Գ��F�H
�Y@��FT9b��/,�l�ױ�7�F�ۊm-�􉠹f���.��h�?0�^ṉ���p�T�ߘ���P)ss=��>�'��
x�з0\V�!�;#c���SQQ䯔�~
���u-�sR�-������e���y�R��c��L�drbl���~��!1�k���̺�/�YFW8?H8�w�k�:<>Yf��#�ʥh�ш�G�Ϊ�*;�3.[�h����eAo���w 5g���q|�������+7	��,��6�ϨE���d�G��-e�f
��_Q���#��f�Tfm�Ay�Gt�£6��8��-��0�=���8`�	r��H�U�vI�ŀr���|�����B+\FBT���a�C�>ak����q�b�$��#��6Gs�����<7߂��G�7�0�]q3su3���g2�#7(7��31�]n+�<&k�U�`Ij9����0Qs,�j���<�9>�
��)��?a�����!G��)���3S�\�u���O�V��~F�D.�Xmf�-x�r�tf�#�9�Ѯ�MU?�+���"5Hnm�aL]̆`ju(4Ab�&���~׃j����8�,�&�=��K��3�K�S!����<8��Dܛx�.Z����
T)s2h�D��φ���*5A���%����
NQLc�b]�TeMˋiI��;�L\�s�{fDЅ
�N`�������z�3R=�0X
\Ŧ�^3�(��Ϲ�#N;�94}����.���r�4��C��P����w7�>���l����x��ȇ_��a=g�B4� h`��ы"]�f�T3d��G��ü�((�b%?	5(4%"-[�$j���C�`p��d�?nS)�^'/���C��[���YX�u	 �~!z�s��x ��8&��0š3n&��M�m�2g�̍��#K뿙��w{���:*R��q���������ʊ�t�L�=x�������߃p�^�{����o��aI�K���,>%+\��o��+���f%��{[�0[6{�sb\Yǝj�B�m~5c��h2Ua�Jg��s-y�2����cN!�]�0��g�^�HE�a��8��s�j���ǃ�(ԣ��X��4L�U-�Z���g�J0	�2����v��Q�(�k�26uQ2WJ�$Yv�z��-`=n�jb�����V9b��B�(�q���Җ^ᱏ������j^+�b�X�ߒ��Y�Q_&'�c�h��B�*�qQ���R�r�>����p��������aq
d>��~	��%\߆�rz����
$����.s1�E+�q�|����g3+��3e� �=G*��ű)`׀+5�gl(��Ÿ5-�3�/�Rb#F!Ғ���ڲ� ps��"��oq�*-�j�,F��,�c:��"1S$�ɗD����n_��i�K��P�8��'̣����K�'�b�3���"��	Qǁli���i-�@����3wL�RV0����
d�S��ۇ�u��f��
a�(�ğ��U5+�U.�� �a�L�m��יk�2��H�p}�����9�'�B��%�ڕ����h���C0��u.eԮ��<f)ԻB�K'D�?dz�!3�̊e���ޙS>�\��R�8�ܧ�O蒤���j��A^�*��)�Q��}�*��!_c�U��������4C'��Q���Ba��T�bC郔ј[�����U�
�XCy�`�j�S��'
@s��1*/��%^��U�劍���<~8��:�ze	�G���0(�r���(��1U���+�����|,��u�ܺ��s0(�+r�2�R��/�̤�co���l����N�J��f%K	u��r�,���Y�1�[�����[W573��ۼG���;)ģ��bVw	�P�r���\�c��N���`�W�ן#	�+�+�s'3XE�TsBq7I��3(�'=���g�#� lY������S�<���Eq,&׌G�}�0C���o\>#�L���`�q��w��G��k�����2�3�ۗ��4�N�J�*s�R�4���?�kC8�̥���1�4%�bZm��atJ*�lMr`�����i�Ϭ���V����[_I�e�D[�J�,kN�<K�����,r 4w�W�T�N�8�\bU��^�MO�P���C�z�ٗ�q
ܱ���?3g ��}D���g3?����x7���4jg������pLH�Q���jzJ�\�<��/0�6x��4�㹤ԶU������@|�q��ܺ�-�#�^%ˊ�Թ���e�Y��j�kma�u��,t�r�T��h�	P�V �2���}�y�7׷�B����NZ�J}�!���R������
EnX�1O�)����W=��_^^Lg�~Q3���k���l~i�q8�J��B�Q>�/�V�J�+1
|���4�k7׏>+���s��W~0�.c9�T5�<����َ�P3�aDXWjl3����vŨ��u.n�J�Gx���=����R�֕,�0�O�����[l*��3�\�ǤԼ�i�M���˹h�����,�����%v&����b�����p�f� eN�s��;����R6�P3��F�/Q�BY+q�#��W�TX�=��*
�Ǧ��~c-�1��,3�[�$��0Y��9���/�x��ᨷ�LNǁ��g1�a��|�w4Em^ \���
#�d���o�oW0,��U����@����b=B�������nW��j:��h��K��%T3��vsw�e�+³^�x�F8���fdW ��,8ᘎ_�N��f���U��ŽOs����^eX$���}B�ag�oF�|‘v�Az.h��iG3J�*js���-�7�Y5��J��=%�5��q�����;<��c����z������e�.Uˢ<�>%�8�T!�D���K����ik����qp�����%%>و�3w30@a|q4QS3ax���<�s�7)�`��rK���{��v��԰i��)�9���o}A��q^&SsP�1n~�T�b�M��@;���!
�./���L�D�,SƢf>*c����F�5��P����y�y�+�ߎc8��7*��l� T�#�����C�n>���_��]�X�<;&T�%�r�f�)0�m�E:�T'�s/��	?hUQ�M4��91l/�T�Ơ���e��ک�|��-�X��	�����[�i�qEm�V�fp8�j+f>�[��`�V�	I��J{�&�z���o�����K&�#F��b3W�Mis2��r�+2�EE��7��R��V���i��D�� ��i����c����kSp�f0�'�����Qh�`V��0b\s.+�(ߑ�O�ś}!H�_��OxEL�*�7�
%�!��CH9���v�D+����ɢ�X�5�Y�8.'C�)���>��ݽ\����(�T �D��=�s2b�M�P�j	`��\�,���e�Udcs�s)���b發���23fNfE�(�h}�ȣ5)i|�k�31tƐ���<b
5,O�Ui�{f���T�O
�.�ܸF,euF�O��=�%�V6Bz��$2
0��:�	dP�+�B��n����$�'���;��maԳ(�:��C�&�E\S��,@�F�#
?ܣ�|G��un
r�q���o�r�&���AJ�'��f{�h�[������)�%c�U���pk��hQ5�����G;	�A3Jg��ɪ[H��l�PRf˛����k�����^M���fV%u,J3�����a���GP��7C0*/���"���	�a�
���N=����X�(E�3T�:Hn�K#�ǒs�2E���9�����id	��9��0��_�)�l��	�lϩ���e�X�#��K��l�,�/�R�G��F�f��(��*axO�"	�L��n�Z���r�5�E��3�ԿsI��Ro^
�eG���u)��_`��D��'��r��Ƹ�V�%��.#�`�V%�"\��L90�{�d+���PZ�.�rũ��M2��R)�q�,E}���X�1�
_dY.��bp�V��d/:����{�h�h�6����y�������((��0\5r��D7Ʌ�
�a���&;y�&c�!	�a��Ra�-�ˢ�#�Q.<�����S�V��j� L�
nr�M@p�����^���b'��?3�1�k��K����GsP��Z���'2�@��J�l�
&f���p{��
)�M�+�QR��"��
�\Lq��Œ��S�����=�9a�i���=B+�S���y��
]�6Yƒ�d�ʃ;_"uK�Tr��n��z�S��T_,*��c�2��B���]�,�3��
%n
�({��1�ҝ���S	�R�g�ɯy|q���|q漕���.6�1�%��pμ`�f_��pYY�U�Q����4}�/��H��Lt��8H�t@���x@��1��*;�%i�,(�==K���?��nT�Iw��
��Y�#*�������(����w�T���Hrc0�sJ�'u`�Q�N�B�9�x�!y���-%�er�"�ԧa���/��#0#�5ܪדQ�|���3�шB������~3)�
��.WH��p����`L��,�G�\VkF�-Q�)za%\�e� ����w�L!�bE���Xh�o5l�Z
Fq�d�V�di�ʷi�u�!�n���sIJ��et�B/S�,���- z�)R�\`�n���������9�z�;��s�ÈK�����5a�׋�7*�&��y#����_g���nT��K�����3����-�*CB��89�+��
�b��E��L��ۼL9-��I��}��+d���Zi�����~nF'T�s��l.x�jɻ���/&%���F%ܹF>���^&]�8a]�s3�l1[��h��hC<JQ�,�Α�%}�Xf�ͫ.���93��$�_��/ˏ.�u3�D�|F_�T�~7��/��8�.2���$
�����x!n3(n��TT���N%�j�>�Uj�&L���;�<a��`"����b&ȋ�yq,���ׅt�eY��&j�%�΋�c���˔�����Csb���v��砚Q.�f�+)"��M�d9�
��.�4�3,�Kȗ�MS/HUܳ.~"T�ϒ��1$䚟>5�k$�>b]���<��x�1.or�S~	ur��n"̰��*1Y��(�]��n�f��dr�#����VK�+�L�2��<G�SP1	������m3�*Dǎ�0��e)�<x�̺���~W`�Zȸ>b�����%l;5rĪ�}M7p4�ګ�.�rT��A�O��f	)�ZY-��gr�P,����5�̯&f��Bnjn\x��x��'!1AQa q�0���@����?��#SS��q�&,��
�n�r�j)9�����ӌ����ɬW�*���]`pi��f�3�4�>3!��^B���\D9��F����
�Z�Y�n�ee����_�'`L�����u�/���_
o狸���a���r�<��0��}�~�1
��Y�a�77k�Cu�B���s��Ƨ������op�*�1^��]P��S%�����k�f�w�|���C���������<�~,�&m�P�$����Hp���Yp5Аf���>&Y��&C\VVፔÁ��.쾳t3+�3����4�*�ɂ� 1�{p.?ch����L��M|9�R4|���7�r���);���v����hs=����OK����G�3�£n2�FO���̷���#��I]�`�7���8G2 ��C���ĸ;�p��G�EV%�d��2/��	�w�<����ʪ4w	OUa����t�2�{��3/���x�~C�WM�
p�Ɍ�O5Ve���2jpp_t�rĺ�4_��뀝���Ve~:D2�o�u�/�]���`�!�ʄdm�L��#W�����WC�˘�Z�����y�Du����~��7�11�(��hc��
4$�����e/�84�.�P���44�
���;�y��hX�4A���Ʃ����!��L^��U`[�Љ��X|9�>u[�=���9g^�ߵ�t���q�GN�)ɘ��3x�g�\$��0=s>���̖9�c�ܯ�e����?#� ���i<p�9~.Y���Ն{�t��i���g�k�a_odZ��'܀�_�T�~:���us����5�d�ąg�ێ$r��~�xa3��2p�����C-���
�^C������ǷW�pC�?��U>���Ǝ��*4�~C���
�s��n����:� }~�S������?��*ڂ2���Z����o��晇G�6��z�(s\ʇ\��
W$)�̋��E����!�?[�]�zn�:
r^���u_�E•�l̊�5]q��7���O�f��Y�!��2V�t3���s�\�16H�-n:s$�j�~o�Z��p�zo�#�%<�z�(�
b<9����L����N�0���y�)t�O�:��s��|��W\v|3�ؙ/쿈'�.a�_WF�R��"?�>��Ft	��ժ���Ρ�����7P/;0���j(�:���@��®��¸��>�����ӟh����a����@�h'�%Iz��O��&�х��%?����\r�,��"༈kv���d�L'��d�[7��޳?'��)�'Z�R���On�&�@���.Q������=���D����~�7�`��L��Ӧ�&𮅹���i��zdQ�]&@�'��"}Ц�2��%�e�p�|?�����C�ʙ����}V":8)qn����q>�:�|���T>��$��` �f�f>'��aWL�+_��/�x�*&L���Y����#?f*D�� �BY��p�̰�[^L�[����9N�����⼙"��)/X_�mǬ�}�՗D����S�+�����!��(��:w
����̹%w)��ʰ�'.���b���֕���
�B��;䙇��q�?XZ9=\��gc���+� ��O�9�����2����m�9}�̰R�^+/&TP���?�fe����s��&��ɑ��
�S?n]�p�u�+��b.L�:˺fk���ftw0d�:p߰_3��^����ɚ^���>&t��1=��):��Ox��~�R~�::E�2�0�H7%W.��C��٠)+>~`P-]L�Z�ш)�����/�b�S�f:�G�px�~�����a�}\C+ۊ$@b\�Ȗ`"ڋ�nG��J�I\�7��qr`h��3r�U4��=��N&I�nJ��W@
>�\�i���ˬ�W{�z��5���\ݸ`8��f�~xr��4�륡L��2'�/�3��9ɰ��=fwZƧ��]�k�5{���n�kv�zټ��)�4��Lz޸�D�:��W���Ȝq�g�5*�h�X�����]?��5�6�ƌz�xu~���`el�`[�9i�/�t��U��/�I�/��B*���8���7�ӆf'�0�}K����QRM���n��.�|a�j|}����Q��(OM+L���A�#��.��o`���feA�7���/�{=�S�#˗��â	��G��X���|�hw�S��:V��PH��Q4%�i�{�M���qE���n.SH�Or�L �x�eS(��r�a_L?9��u��u�sӑ�'vϙW8��Rd򁿼�|N��J�Q�m4y=~:�cC�a���PZs~�LH��a�ù'���a���oY�3 k��%�.+	I����:&G��d/WX�r���K+����y<Z�W`Lcz����K�La�f�J�^����9	��4Zfao��"�C暁ԗ
C}�|�)/��&Z��o&�����A��AO+�?�ā@2ߠ9�,�Ф-kk����!%n�$�Rə(��!��M2-��8��C��6	�ۜΧ��\�fCǗ.�^S�	!1���S�����1�uWGD�H�2Q�;��-�#���T���(;�z��?��?���fuqTTpCG�=�5Qk�a•�۷Î��״��h�Yp;H{f���^���z�e6�OA�"����,д�*o���
q2ن��O��OG
S]\�Ϧe���H�h,�$VMWv��|��dr�>�Q�Æ`��E(v~��i���f�p����Z}�:�����T�>�*j�~����
�WP�̂ �X��b�V�v�7Î��ZL�ʶ=q1��8�;xjDV�A�}�k7g��
�S�yTX���B��/���_�_�u�]���k��D��bT&Y���H#�b�x��R�8�cγ#�]U��d
�#Q��F���K�s~�<�p�:H/04��U?��_�[tR���
�"�7d_�2�k��a�JO�Щl��R�f����	�k�S �&�>�
 ���LǺn���_�)%��}���6'���fЇ�/�NQ���]U\&b���`��l�9�0�@̗L��	��������(nwDʘh]�O�e�x�J�:���L �^�L���N��A a^Y����4P�W4 ��}�·+�'Q�A
��S��`���U(ԩ@s��Kf�~�,�2�O�EC��*"h���á��ʟS��ta_7e%z��WKV��q�f�?�9QL �b��	�g�$��@�YMy��8>��\02w<�`���ަO����r�g��_s���w���įFm��i�be��.魨ЍvA�,�i|�z��ҳ�yrc��+�2�I3}��nG��GMBF`Q�t4�ӟр%O7�/�L�3�<M�.�/
*��~��Ab�])}�2@�8�40Ҙ�]�X���&d����Trt~�������4���hb,��=Z���,rh��:Α�E�7x�����}d`Q��*.v�Hܰ`VyJ��uՊ�'�1�Ք��� 5)��Z̫�rO\�4�t��x�C
�Z�Aj'l��xЏ�,:y�|�m�m�EKtw�\�ȍ�N&\1��ᢝ�:�9��>�i�>��	��5���8T��B�@|��?�i�S���w�a�U����xLc�� �D�/Veðg���3��x���,���u@�E���|�~dE�/��|��H��$1�i�0U���y��7yվ��o�wc!�7��G�f%�wIBFL,��}���(!����#�G;��Kj�[a�63����!����
���o@�j�;f	O�_�ޏHk�A��*Hx0���0,�c�+k�X�}a������&&�;��=)�?�4ͧ�08���uI���p�\�\���O�+�zaO�&�)�ӆ1r��R:�Ȝr�p:�~�Q�Ӄ���$�꿆�Az�ɠE��?�#��)���sR��5�������1�ja߿�ky��c3|IZ���Ƹ�<��=rs�0��&���]$8���]���S�Y�`��LR�溝p	�X�3!𤋮�
�u���8��X
G��:������W09���<LO���"��� ��}�Z5i��P�Q��>��q��,�$�f��p�R�I�c�~/2��B�"���!�Zժ@�C%�=)����a �>9��|5d}p�#dqK�	�&�e\2��Mm���H`H{Y�l|�
�n%/L8���������Թ#L�>�d��c��b�>����r�!�:G/�3�O�&��ʉ_�Fx�2���'��'���L`�麠%��2"L"��G] g���7ː��pГ/%�
�q%��n9p}�Q;�*	��Q]�z;2BxF��D�'����\���3�x�a�sh��@?V'�:�p���1��}pn�`pƌ
��P-�py���Ҡ3�7<�]I�}����/(1���F������#��D/��@״�� ��ߡ��N�MPW��+���X��a@<��1Oh���4<�
���u\���7��}a��RU�r��v����SF����S�wx�O0������
�38֘�-V��ߦ}_�o�ϑÜʁ�C̭�_���?�C&��e��dZ���Di�����dUQO8�\(�9�AƼP�����>�=�pp��8�D+�&r��������J�?+��p�����UܶN���C7~!e�����<��LN���rd@�&3�Z��O��FS���C�ܢ�{��18_�m%l}w;�AUᖝ/���^�9�جu#d)���D��#zY�� ���q��C����)�NMS��ȧÐ�-�9��3[�8����˒=q��K��pB��,����+���P���F�-_�B�'٠)���B�~䴩�a��{�G���qO�O�?��1\���#�&P	�e��xSЮ}µ��q�)�"R9$z�&��G9K�_g1 �	�V~
�����d�3���2���z����~�n+�V��㽸��}o8�㼡X��8�#q�L��4��f�^)ۜ��C�3P��2�I�f;�|%�lY�JC�O��dl�R�->��V���a����RN^�(fz�LE�5|+>�u�=�s��Ӵ��5�B��2��]�us+a�u�2"j�[�b��H_dܸ&|����GY��W�Q�����j\)�1��t�{X�8'��S��3��8�P3�;_�D�X�Z'L�"}9��z�>�h�2����@a�`zy��D��<O4@��>u�o5rD��H��U:`qR��H3.���%���e��3�s�{��\�c�7ž�.H\ �.�˃�F*.�?y:8z�.9HNap�nz��h�2�B{��)ɍ!����ա������^���������d*vk��)��/��E|�ʵ:��,�Db~���(!5l�Ңvd'bi���ytu��I_���8����a	��i|�Z�A��]O�U;3QA��I͝�Ά��S?'�D��[�#���kӦ28�����'����0��	5ּMAxț���S	z|ʱF�1�h�?Z���>F'/����:k�n�|\�7��k�Q��,�`�᳦�v��4w���
A�D~W�s4�U{�ރ�/��!^~��[�1�!�����Oq~~��72�4�!���2S}��S�J��e��FU~����Tl�����Nx\H'h�R88�:֍���T~�x6xp+�d�����}.�I��5�������Zg�$k�u�LE�qk�2�*�^ӓ$
�p�s�������s��"��WT^M#�ՙ��>g
�
�1����H����������?�h'���K��\����t~B�a�Qѡ1��<s���`�2�񹉤��5TK�%�=���j��Ʈ
s��@�;1e��2(�#x��ʖ�������d11�Y�>�����q���cQk��̎:`��N�)�5/�Њ��eVۜ��2�$���f�I�g�N'o3���1f
C��4T��\rN��rЗ��|Qˆ��Q�Yq$}�˔��'��."�o���E�`X���.T�-��xpS"��}�\_��~��3=��*�u��/�ϑ�DR� K�Ы��2�V�s�>�-$��
�:���g���3?���9��WR���QA}2Z���_��q��T�����įS�x�+�Z�!��q�s�{�m�����u����1��n.hr����*��x����V&XQ:��|���V#㽘f�^�=��RK8�=K.��Η]M�L�W�X'�b��	Z5���<�C���z���p W� �V�彵c���m��;��������K/���Af����C�1l��W(���Ρ�X�oSQ��g�u_2~��",)/���CD�u0*�ʺ�~�a�����S����Mp4NJ��6��aUWw*p���U����~�O������P��ܮcpO���K}�� � !.M�W���7�'G gQ9����C&(�܎n"b#=NL`\	�fOߙ)@�Ҥ�Q^�aǩ{���un�)��
y&NN����)��U�^_#������
q������&�~[����<DhG���V�e�\m�ͣg_�9{�����W��W�	10��o;ċ�:5�U �<yD
9(@��Ƣ=�h˛��^�-�v�2�'�tY��`�����g�4�ռ�-{.�=�˦ޭ��b���d� 
�|�H�j��,���VB|s[�z��;y�����s`�ԙ܂�ϣY]u��c���?������~n���)�q�]�y��&�`{�����j����L�C��z2�Ap7&���d¬�o��3�+p�`)=g[���}�� �s�e|Jg|O�"8*H�\
<��5�|(G-�PG��.�t0!�3�ps����+�GG�J@���y���"�Pxp��5������:eႿ.G�bR��`��}��'���(��~��~Ӻ&:󙸴�0g�G@������a�hF� ���O�$�$��G���<�(�r��u��W�:�GH�u���#���?.@�\ʸ��0Y�+08t�;�1�S�~#�c��̀D2!P��O��5�x��L���c����e��s�x��q2Y������@{E?f��7�0J��Q9�U���x��&
g#��9���ՑR��њ�&�e�GZ���8�D�)����s�b��v��O7@��2�2�Z��;j�p�#��m��Pf����X	�T=Û_���cN"2Đ���|�F��;�0�^������(���!l�P¯���լ��q��k��X0�L7��shq�P��H�T"=�]�+� �ʬ7�\��nio���%*�q�ŀq���*\���n���)�G>�)�� ��d
  h�-��:���B�e}8�O)'���=����e�N����iq@�.5�%��%>8s��~�Y�����L?���LX������`�c��G:�~�m�`bE��.K�\K���<p�!v8��A<��]lE2L8�旈Q���!�x�P�A�̢"A��������g�)����YO	�XFן�({82��JVT�De8�puW��N\m���)A��HV1e����ȅk��p'V�u"[�ޥ��.^YYْ@��2F�d���Džu4Ty�y`׸�1迼�@�?̺��
T\���4���K/�y\q�{��T��#O*hp���ä}+pV��H�r���_��o4�0�Xu'��_��c��G�	��x�
��Q��䞘j�a�W�u�����ܑ��a����?\�<0И�"�Տ��b��rD^h7��#�w�X��B{��c��FP!�����(�>4�
����-���V�5\>���p�m
�43�@�ۜqRcw<�W(��qq<�� �ar�6=O���`��l����e����ޱ�	���1FW&�qs/�Eh�IbԒN�0���~���OP����=fc)B/���%N]!g��cLD���~L��=���k��_O�,��O�I(+�~�\ϊ[r���(�`f1�}���3C�tͼE�K���	/ ����-���K��G������+����7��`����������9(v>*d��r�|�0�O]A��0=r�m�D��Q���T����W�w�܈�B��~�����[���m5�~l6�*>4d��^���~)�}竭Ȩ(n������I2�hF��*V5ҏ:�9���������{�	�An���
��{�-�T"y?���B�f��FhT�=CH���3��R���
��A`����#�#h�G���ъ�1�I��
�l�B݀���؈��୏�b'��t�j��	S
p|9}�����V21�c�)o��G4��RT��Tm�&�N?i����
�|��s'W��z��Ow�kH�zy�A�9�������_��I����>[k�2_5��G��I�;�]�Cs�jN��LU�	�㿏����!�����|�_��(�LQ{SD:+W3�#��0|���K�`”���Z{��&	2X��g#|&����:��9���x��(T�!�{���
�\��V�)ǜˑ w�¨B+>��-�U�0�d	C����Rw��|���ؼh3J������y�/����sV����9go�(��7��	G��'<��0�5灳������<�'�`B��9D� �?�7��K�$���E��|�*V<``���퐇�Cp�Q��f�JZ��u���Ĺ���f���r��e~�*���g�?��"Z�M�?�/s�?�?�N�gO��7ަ9���̞�kCժ)���	��"���X���R��o4�l`k9�s��1��C�nJR�@��8?�\�Jy���<'�J]���G�,��]<�gs�9$�s���3H�?�	�����"b�ӭ�s�C���ڦ7��t�xq����2��?�K�}�t�
�JE<<�X2��801	_�5X�34n��ӭ)q�s̵�{J����e��r�ϓHN/)Y5P����)B�G>����H���0S4�W���!�u��y�9���8e���/��f*���(��&I�A��.��_l~��*�‹���S����ܶ'��&�C�s��_�0�䏿�mi����B�U��~~�/�w���7q��>W�-_�p��	�E~�:�/��#��>\��@x�y̍7:�(��I韧[�85P:�x�B+�*2��;>g�@�@(L�ΐ�2��3�C(B���$	jŰ�|q�Q����7/K�?sa��2D���	�F�C�7"`?�|��~Xi@3����hL�_K�x�b���"ᣑ߹%ž�\[�ُ��=?�ag@|3䯡��}q�P8��τ���MVq7�`��c
@�^JW���ף�����L�G��\�!�Xz���c����?��[S���e˒*���^i�~r7,ǫ|���y��#/��]�!3���2םpA4
�G\�����F8:�W�?��,��?ċW̰�$�k�?�?���'_͘(q;]`��1񶟧'䈲�7h�����=9"�:�rY��A�怦[�L�g����Ae�f+Jr�P�j�u=q��6�B�ք��ő�a/x�D"��H��4�' �1����QǔW�/��r��oz��U1����?�9���X�q�Y|�Xry��V�gḞg�?������'N}�����X@��a�L�z�����jЅ=\�`A���Oq)S�-g��fIBg~��R��������J�C�̞L��;`�:tJ�?��3�j�Tlo��FD���;t�V���$bȘ��H=����ȈU��6�K��Cƈ���u��CU����.���LŞVI����/�.Qe11P��_C���O�=?&�-y�?�~
�-Ɵ�8	�JS#���bK�|u�<3ɍ��|��4�O��פ��GK�/��d�eʦ<M]�R~]ʟ׺fd<wXQt��8�8��WQ�;�{�,�<�kZs�����W��{��0%YK3�����bd�QN�PO�&��?O�2���L�y��{��C��Mn2�<�5�|��D�� �X��Ȑ��_�Z
c�Zy����~����z�z�N�zL���g��`��8�o_�œJ!c�J�r����-OF8��\���a&�g����'��RI�<Sb�6�$�d}�Q�9��?��/xG�42D}��Alot�R�ܝ���s�T0ҍ;K�.P��������>��hi>�sff�7Eg��%�_��E�H��A�Uv�.K��l��/�k?�5�~g��\��	Q�t�Ja�y��M�Y�W������4���u8�Bp�x�l����r�J:�L�7P�SL�S|tH�a#��B�s�o!�� �D���T�41���´��	��V�'�s��k�?�Pe_��fA��f�9˦�=؇��^�-�=��ѓC��r	5Œ��q�9���YA�\|,�ܸ��e'�:@p����4 aIN�u®!wv��T*���9��-ᒊg�z�R���&����Pd K�,`,y�3��)����_�#�)������H��a��>����Dl���ȧ���i��Ĉ
D���Ӫ��֔SM�9��γ���J�}1@��e1,w���>dR�_Қ�9_C��4��va�����.��4�\�M�d1��r�x�C4rOË�n15{�N3�꽨C�G2�Hf11W�q�"�"��Qe���g��})8��f���f*��@��9(O����ϖ',���_��������&�N6���w��Op��GE"�-`�= 9!�,�E���ɡ3�c�������\��0WI��HJz�9F����^5����T,ea#_]��GH\)�51z<g�d�K_�c��|(n������j8Ӣ�� ��a�'ӖP��hfjcj�XxzI�8C��<�x�ŀ�5��\P`W���Kx�V;/A�8��:adp�(wD��- ��@����e,��Ω�`�qJ�{��jh-��.�K�����g�<%�.F����
ؙ~�W#�_ɂ�;�L:�?����e�2eO���5��*CDr�Q����2����z`���Ox�q��ۿH2A�כ}ǝ�K�H��c�UH~�Ǐ�4`T���
�ȫ�� ��/�k���1����9�I���z��F�ExQ߬8&VE_�s�O�w�8_��1����:׈O\��a���;�[��]!��d�-Lx�>s7
��@��4�3�9��a
�P�Z�\��;��Cp�L�B[��kJ��i�D��*�3�}�9z��ӹ�U�����̟
4#�P4�L�A+p�GV��3%��t"��<k����@N�:-	�ȣ�=&\�����s@.�0j`ř��B/{q=1U�r~)�H�~ز�5C��/�)�^����c�~GO���s��ua;5+�{���4�5�:�r�M��*�5sU�|�/���hk�y�:�	�Z�4�� ��
=n��_�+G+�Qk��^\�@
w�_â���4�4j� ��ך���yөO���<l3�����U�� =W���~1a)�}�B�=�Q+�+��Z�%QG#�9����#���Na�n8eօ	�TC���8_�'Cj?2�S�.���pOۃ�L"
a�`<�����}Me�(U
�
���A�Y��bMV(ji�Yb����%���Z�.e)Hx�"��6epU�a�$F0X�|�q[�z?�|�����R�2/�M\�%vŦA<Sh�t���b��dS�x�!�cy�]?�.0�.���Y�X�`��&O��0]>:'���
�1�7q�C�C��b�NG{�ok��]=׀#��xP�����O	B>9����%&鎻�h9�3�y�:�T�C����ֳ�ٟ�D��0<F0��r��T}��P	3��c�{��#���nW�q��T8���v��9���\�h�ð�̶��k�Gok�����c���6`�LUUWG����%p8�FCX̡㑑:��b �QILGH,���$��r�6Ws�M�r��ٲ�Z��qE#��@>\�k��0q}Qś1�2���%��O�xhu<�e$!�/�r����Q�8�i-� �Gw�j���]UV>H���hfs�&�YƏ�}!�3�z�"�0']���_Ҋ���0�2W쩉@8��R�W����ȵ�JP� �bA��S��q����G�1��33�S�.t�æWֺ]2&=.}p�ɹ〙'��G�\�	�/M�>{��
!WXQCLV(���jn!8(�o�=��<J�2��f>ˀ�a���CW}���#��''U�H
qt��¼��&�E@+/s�q��i1L%J�����0]S�W0"bhP�9�V�C��j8��LV����M�7�Yb���ʍx},��g�UF��3\6^����W���������?���i`)`�KI����`�_G����>'��F�3�g���0�BOfrp��M�ވ�AbQ�2��Q�Ƅx���d9R^>���%��ZH`�B�I����8�ѭLr����P�t�p����Q��A���|_��i(]pP���y�:E
����<��Ni�=������lz����_�h�z��XU�?}�>z�2��������Gs$ǙFe�_�r��:M42O��cƘ�t_qL��K��*eֹFa�����/j�%�]7<M���C(R�iO:9<6e�H�J�@D|ە	�7�"�\RE5i�P���ҩ��dI��Fz�Z&�R0�Gy�tC��b��4t3�2�Q�ǟa\�6��*����������$qHtx�\�ש.4�L������e%ī�fq�:H9�IHCR�S���8���h~��~�����៳)�g�2k=+B���n�Fu02a��L�0�eW-�Y���hE�U���h�g����a�߫���F*���)�90�<qR!9�*�P,����rل�pd��2j*�ao��Q��/�&9�h.	���шh-�5��+��K1i�&��,�碉�f���*�~��9�P?���jz8��*q��c�����<ʿ��>?�������tU50�h��&S	���ї)�5I����}3u�QFh�%���$�LX��O��/\��<|t����Vѓ�����ERtˢ1�>�I#��	'`�\O&�\�U(A���Cޭ��t�D+�"�O`���x�1ތ��������T�Y[�Of'��G@ߤ����YK��� ���DW�&W����9�j��KS��P�c��1�2N)�},>h����L�8�A�G>�D#�����>z5��G�yXN==�} C���]�Fw%��`�c]�s�YV��I�+0'�&�]X�L[��c��7{���F<�PB
.훓���@��[D��C�92�>�b�t�
@��b��� D}Ͼ���2qœʅӡ��s}����~���j�̺���Q#�)�uNe��qɋֆ�w��
�=�	�~|�V@f-Ôx��/Ƣ�B��'�C/	��ԆS���!iK7�3���`�9Op�Ϥ�>9�@��a�2Խא7��;��n}P���@��?�hx�J2MkW���'�3��x�!<�J�����Ȋ��@�-���>8+�)$�1RT�>axl#�ŭG�s]2���3I��	1��㖫0w�kr�%�P\������R��L^��b}	�i�s��O�����a��W`C��
1���p)0��)x9hF�PfXz�C�'�&1"�*����U�c����4�/��\�7D>�_Ɛx��Apz*���g�#� �\�( ZÂ����=�Bd�5e�r���dc�$%��Ml�'Ӧ��`/�ܶ~M/�g�w(;�l֑�V\�Y�ɍM*�f���~�Q��~C���L3�z~�� ������.�c�x�CXqQ|W8q�q3��t<ƀK��_yY�]�����u5Z�P�u���T�1���e���Ҡ��}Ʋ�s��m�n(���s�0�8�#U_�d�a�_�4�GU��)�b���7�_j��`}B>PԒQ��e�pQ@G�6Ry������&.����O��^�邠�T��@#�_�a����0�����m�7}`��Ï��͏�r��W9�T_w�:���q�'�2A��QЁQ�=��ȃ�Ms�Y(
 �Љ֔]_5�`���|����:�z���ߛ�w�2�mɫ�?C���p��9e�w�=p
�~���&����/��OW}�\tc�f���Y�q�4s���J`8d/5�f_&y_�hjx�~8�Q�"*���1>����~n���LH��\
����M+�������+�N��� ���2şL&�?�0��u���j��
	���D�2.h��a�
�p��"�-	@��s���W/�xz�F�R2�8�@���������ؗ�}��i}��_����='1A8	K�W�cl�:����)��Bc.���S��3|��q�'�P"�6B���Q�"��-��^�Sa*k�ƗNK�
v`�GL	��<}W(Q<�9�~c�S�&��N�<��g;�Ƕ$�*�@S�uke�O�В�BK��䬎�4�Mh
SBLyf�����
FE�03���"sʘ��"2�ʼn1=g���5Y�����W�g�o�z��	�����=�Ns.G�H��1Ҝ�DnUs�Pt �ޕ���_����.�k��XEb.,�Q}9�f�1K����I��g��p�Hx]Ɣ��Ycw��q�ˢYdCщ���\l��L�IE:�P#p\�Ⲇ}��Jf!�����ȸF32G_�8"Qp5���\k?���5�x&�_�R��r�J`y�������O�㙠�����A���~Ճ�\����p���-����`*%mٱE�m���O�p��B(C	��j��'¸c�2E�1����$��)��E*�3���Þ*���G�t��䏃�YP����Fu��}_
&�:޷8T��qeB�Z��>`� ��3C
�1��LĞ�Tކ��
�]��R�zcGx���^�`־O�>w�R���usG|n�"���[���s�?7�P]�b��� ��T�9���™W��k�x^Sq1���C89��va!y�=�^��f5�[}����R+�0�L5��B�u`>���%�u��� ?����t�W��f
�p1�=5�ZO�t`�R@'�/�>P1Ѩ:�m���[�?zG����󚌟M͢�js��&�E@�
r|�G>�j����R�Kp�f?���ֿ��0������<_��}i��[GNR̉R�� �W�z)���݊׾��
�N�#�uE�.A��B�A�4�5�=�f���<�~������tR�3������\e�l�0g��ӹj���FR�fP.0�ۃ��A��UE���.���g+�AA�2Pϐ�k���۫*��}ٍ5bi�.j��7�
f?��˔2��?#��N��
ʊ�B�Dž��W�wA�YV+��!'��`b��w���:fpMOG{��d�BN���h�QAf=�Rx����L&�̧}sz���
A��`f$L�C�H&=��n���J^Aw5A�����DžLB>�%��5��
�~�!�$�h�.t�G
�DC���"P�
O�����'Qo��4�Q!��,�O�����t���2v@�0�2��3j(f=�Jo&HUM{�j���Qvè`f(�g��Ie�wT��e3���;$m�Ћ��Z����r76^���w���=4q�5rU�[<�j�_�qAW,}sυc���A���a�_�Hy��ل����?��EW=� z��%�x�]�il�s�mi�b�{����)�A���w�ƹ1ӚC��~
�	��)��]�Է�q���x�����`�2\k�nW�)p�9/L%�w�~].�k;��j�㧂��
�� �ES!Tᆪ�a��s�E�/'=N�\��A�T��Lx��>�^ܓtG������:��x�+����
p��)���8�	�Ȁ
,�g�,�pVx��k�\*�y��Hhz�1�$��X�<�d��:"���2��h���@������n���%H@��V�3,N��O�w�g{MŪ4���u�~O�t������e$�)��E$*4��Es zd�_8uT_Z�
c�ds�IV���yt�F$���/d\\�o�ǼC�܄�_
'�u'�t���+f@��z��hg{���r}2Z�y8 �15�.\s��8,�u��X`GJ�bd��7\�f~B䟏����Þy�s �ߥ�H�!�3{te7M8&Y� (6~#��$��*nQS be���&_���k��(?���ҨS_�0�B0�9pBcP��>뻁�@��xf9	��ۭ�����,
z~4-��]p�y2b����99�|u>RW��J�31��)���˗*0�1/��L5�J|����?���r��>4����o��-�j��U?���]�+�]xrג���=P�\Ky<ߣ.� f�3d��AE�<GLK���Yy	�t��������[VV(=ˌBIsB�e�J�xj��%Fǜ5T�o4�/⸔C��T$�ƾ&+���O�F;�Ó�6'�a3+�S�<˒\{"j�1,���'fj�[ ��"�z��L&�~�b�N�����2F��kQ�R�,��ҕ��Q��L���9G������~L������-8d�!�S��C!���F�UD�?��0�U�
˦G�~�nhY�e���!���D�v!E.�3��`<�ܘc����O�!7��}�)�I�L�z���b�����V�2ڔ\�.0\�)x�� F��I>�p[�!�����)Ap�9~�W��+X�|�]��kZ�#�o�F.� ��ֺ������.*8�؋��BFJ�X���#�~(�:�8�.}�̀�u-L�I���0�gQ������i�V-{s�A���阀+��Ho���_�Q�ō�6`��\�L��P�8y�w#���kLW[���Ѩt�L�3S�j�B<ro	*wWOA�\�JG�<�p�)���`���&��������%
�%?
���ߝ܋Ύe�Xy�žo�"�t��5�)J�U�|�5\)�� L���;�W@���^��0%`V��h��'!��E�z�w�;�Ř�05�(c�i�ʎ�?�	rJ� rr�rS�_�_\�
��y�/N1�ݓ�����;�f?�`�.�et5>s鎌ہ޽��@�̵�Len8���$i��u:�G���Q�\�_iPq��91�o�S:=�G�+NQ�p�؟�X�~��1����dR���A}�|��tJ�b����������&5H��p\*���O"�W��aF
;W���"7�h約]z���‘]v��d�ՑY��'�M��hiW���L����h.VԶ9���&zY�\�H��1���{�ކ|����b�b�����o��t����P*9`}��,Q]Η���2H|�#(���/�Fm�Sz�U��N����7��G(Px���z�\7��d�ǎ���x|?�q}t^54\�L��)}1y!�je��cg=)�30��%�:$�4�sxA0c
^\���LŦ��s ��ٹ/W��V����i�T�〶�9�f#����q��4'���.ple�������$1Z�,t��σG��b>�锪�_*�I�RgHu3�3�V�F�+��,O�-t靻,/�e@{K��B��U�[^�`5*#���p�-O�)��#͔� �E����˕�,��k�+��d�`���U���P�����:O��pJ���Lj�Z�>eA?|s�:n2��=<�h�#��^G+�*��G:�<�����q�Ȉ��)@D��8ů�(I�C���8���|@}4t�ə}D�i$�c��&BP�6"���//�7�+�骵͹���ԫ�Y����Ks
.�q�R8`~��ͷC.C�'��N_�~3u�&�����I��[�#��ʮd�pV��S��nb�0OR_�!��f�AB��t��3�����*��;ڟ�11B�?�5i*�DDr��c"�s��bXw�Q��8_�_�3�c�F� 9/�pY~<��]�:���&����Ø��1��)4e))	�*Q�U\�T$7���4����
ш\�U���b|.=���i��S;���x"�G�Zw�Uy��Ͱ	Ƶ�>�x�)��x���
��B�3m ���|�n�LW�[녏W(a��b�<=>��

}Ģ'Q�Ţ�L�˽g��v�k��MD�ΰB��'�G�\1Sqn�0��-3TV�C��7#����K"�>'
b.R>������t
k��4���>#�l�O��̪���vK���|
�(�8��
`C6��C�qA[�2o4o|r��<<�׮�h��`���*y��z�L�89���ʣ�Œ��O�b�ݭ�L��R��_4�pX LQ-0{h�n���h�����E2?%�hH��23�U�B��'�̇��p��GT�]j���:��)������͇��``�F�3��^Po�̥|cbx�
kPa��~MO�/��ΐB2\�u�h1� �WSS�`KV㈣���H
��&����R�b�)�&Y�r��[���Ou�>���:��.K��<0��[:h^����H�|4W��M)��퇚H�a��ŚF[�m8�u�Yp�aR�x�T���B\<蜹ɵy�-�H"�$�@dQY;�xދ�J/�`�����͢,��\��0�s�:ฐ�z%�}p�u��k�#�L�$��®`f58aJ�[�f
C�t1��SɁ�
��$#��-�_���+��C�[�����p�|w2�VUS��_���.dGK�Gr{���2�p����%9�&�>�x`>婈sD�#�h�W��N���(�߮k�'t���&\{%�z�4ar��@�j�Dgs�m �:۠�Tʶ�E��"�D�� ��B��օ20w�.	�y��zĚ�w��,)��Es�46/�>���
�=2�O/]uKLYuG���uٛ�\��;��tt�ˠ�EuA�_�5��������A��`E
���z��r���b"?�K�R]|	ᡑͨ#W��#�#����6J�?J3�Z%�|"��甧p�@�u}0i��a���?�N���%vd|5۞H��(k�L�O�b�r0;�/�r�D�8KW&5.	�+&
}��Bs(yn?��N�V��1斍V�<Vg���K�R�, ����� �2��C_��?�1��U��~�8f�U��u
*��11�ڹ9�.)s���ެ�����?X�G�f���n: ���$��Z3���_P*F8�%~k]{<�ԕqD�+�s�'��4p�b`��6�|�K9r)R�\w�T���\����H�#���\������]�y�	
9�xU�%	���*���i�CIR��\{�Qeʕ���#���2�8X=rW���+�pܣ�/���V�F*���m?��W�>`�1j�!�#�aJB}t�u�RbҒ����u*b�%~��E��C�����i˺|�B~�Rnn/�)``�Q�k5���u�)��u]2�&������
q�y��ݮ�㮦U���h�r����c�o�8�=������I�嶝2<"�>��EH0	*e��H�Ͽ�����f�f>�����߹$�!R��\��:؆�q	\�����>�;�XaA@�ܜ�U���ލ�^O�t�X���=�Ԃ�͸q��7�iN�(����XU���r��jp��'��o��S[�K����	#����B:�|�)lg��U��4���~�-��#��
M)�ُ:�{� ~"F��Չ�P;eErD".D����y�f@���ڧS���g������
���8���>�r�pu
�r��/��+�R\��g��*�ۨ��q�x�}:z�`N�C�\On�b0�dߠ�^<|�*��HG$!�)0���h$��t�n�1���\t�D�.D���I�`������G��G�E�j%?q"|�#.v]u=?�\;s	rOz�����s�2�sϐ -�uMw4̊��_0@[��[�q0���!�<Yh��1g��]��c�$��p��U�@U?�~�Z�Ơ��r�w�12��S?{�t���������A���/0�2��r�a3R�۩��?�Z��s�w��g�~Ou�%��c>��}&�Տ���-�ki)-ל���|���(�D_t���d�X���j��N�ҟ����{����jy�W|V&�>��OA� ��u����胂��H���W"�`� 	.��g����nH�j�'\2t��/��	���A�>��f	W_~�A�����a�o�k��\	�rY7��gI��#GFI��~����2gܙ%?���*0�ܠj�����1̅ �qsMQ0to�3mF�zWP�K\F>c”����o����W��Fc��釢p�s|����!c�EX�@���
ń�0h�=[�U�'A��1z��G{�Qx�g�u�a����ƸE�W_���^��̲V�V��S^����|)f<a�=��\{����x��0@��#9�����{��#�0���J���V ��r����7P"o�b�r,��ˬ�qP�p�?�J�r�f�f�DL��\'�!�p���H�ŕ�>>��} h*.R�'����ә��R]?����
2O&-阍�cs�	�Ξ*��c�5P<c�]渏1�\��$��H�\����aNQ5çޤ�����g��Gs~~k�N�
�-(����_�8���G�7[��5��>#��s����<��ZD::6A[2���,�Es�o�&kDW̊���cWdk0���2�5�z�D`8,�U����U�`���K۩,iM_�������҅~�����;� �0~���b5����ӫ�z�
u�v�߆�\P#��{<��py���AR��!*�d$��<;�gF��
�[[�u�gA�×�Q�e�s�߉~1�3A(�"�)nC���A_\�}2��YqAȗ��{U�D�
e1F0���ո("7w�Z�vp\r��.�G<MU��A�{\��(��Ytj�[�c�z.0�0p��G�.��ḭË�I����a�QpbRF�.*a9�Cx�������)O��u`��縟�ܑ>�a�Xd����h�p*_��$�v�;LOi�̵PO�]����n=NJ/��.�w��
1����L��� ���2N~v�c��V�R"�<P����a�+��k�J>C03�1tA�u�:��\@4@�x�2�z%�������ND�auA� �VQ��Q��Bj�}� z��tC	�5K���<��LK1�t��<u$!��%��r��P�1C��P-���Nj���g�VN��AX��T@��{
֮��.e	��s��C�B=���ҋ�0��&Z}��} :p0��%<�}#�@|~�-�5\qM,�>d1&��'I<?�K�yL�<r������9�>�c ����jB��*b0�=�e�Yo�pMu�2̏�.{�)�y��[�8S�($9.�,�}�W&��Dԃ��:i��[О.�)�:"��m̉\1�W��+�0Iw��8�-���Ã���mX|���l�r"��k������Rg�fqUScg��7����T/�*F"0p׵8�
��(_��i��Qy���_� ��;j��D��VH��<�k��D=Or�
���� ���tS��y�\���r������Ql{����k����#�1���{��]�Ey�B��w��fd��/�5�C�]ʇ
7��Y���4X`H�2�	�dc\˜��"S���]�"�����ÿ�ݘ����4b������y��0W�1��H\����[����up���b���rXDO�P���ϟ��Vh|�2���uW�p+LVAB�U� �[��?����*\XMJ�FW��g��>aWT�7�P'�Y�K��<٣Ҏ�C;��ϨޔS��hݼ����7�氡�~-*ၺ�E�`�畃��2gGx���&�̼z��j
��qo��)毥Ǟ�O��%Nz�OU'��L)�EOTAD}������yPAw+ł
�eȶC���-z��:
�N|na��È���Ma�^��p�LN0�|3�DG]⏹Rb|�tA�����qjJ����Q1_�7K%ܣ���L�=�U���W�G}��5L��?44�����I ʏ��<4�f����C	Ǣ_��@�a|1COq}����O\3n:Q��p��y{���qa�cL��<��?ώt A�E�
Q&d��W*�i����e�X��=�.9X%��jW�Ӄ�(��N
KN�U'���iW�_2��2�w4uS,�9D:@Z�0�u�;�h���L�\���xfo�� L!)���A�S3��>aBB�4*,�f^�h�;�k
��R�ʑ��=.� A!����B�G��ɂ 9����㑣i�e>����ZW�TdT2����4��զH�k���w�]o�����W����������a��p99+���n�l�t�I}�i=�|�-���	�0�w��r
}-��4�^�=cU�U)�^��?����1a�$����H�,����q�&\��au���{0���ҤE7j��
{��"{/1�~�c�E���j]==2�S���\?��˅s�$5�hd���) �w[��eДC����|��٠�Y}�H�3�4���<�
���>4�?F��u�*b��}r*N8�x~�IAW^܎��S"�[��>#4�^���<<1
�2���d�[�0��"L#��;���\��W܎��/�/��\t�[�r�]ˬ4J�gZ2��3��2N�r
��2�j4���	�2qa{\6�i�M'/��i'�]b��#�9\UP�"�W�
��wI�[�ۓ��ȉHy�Y4�'P<��5�9�@ƽ��zu��LDZ��i�\	��#���$G�ftA�1�T	���?�qp���wZ�ܲP���!���=p�
~�Lt���6�B?�_g;�BE�����Bt˦���C˘i�*��F�~�p9�lO����r'�˪��C���Q[�է�DIL��1�LV
d�%5@*' �+X|2�e�s�qA���<]6e{pI(G��M91��seχ���^>�G91�"ˢ�3Ϛ`"����8ق��~�V�_q�o�AE�N���y��p+�'A9y���R��pG�t�C߆:�38�xdtz�I��ݹ0�9�����I�e?���O���wN2��0��Qe/Lߘd�6W1�b)̂ e(��N� |
y�`9����P�̶>���>dB�q ֡�gT3�L/�r��a�X ���/x1R�LvҰsP�T�J�4�53��&>�Gp�
�0l�w�y�8�I1��jܰ�jIp��.�h�iUE)��uA�˄�{�� �̌�	J\*�����I���1����xe:�q4C|��O�_s��5SMcAh�0�*��̬iM����Lf0�_�Q�»n4+Y�~���7�Ș��x"Ǒ 	jFD$ ��k��2 Z��䑧�=/�X��2�k�
�/��eT�d�����8
ȇ'���/���E\x��<!��H������fOd���L��6��i$~�!-"���͞�W G	Od�+�jC�<�*�
{8�*[��d�uzhy>扃�&$'4��)�+�T�.u�P�u��`�C1.��~J�P[�I����stC���>�:�{���jb�p��70%O]ר����Tg8B�M\��%38X�����fH�����0��(&+�8��S"*=..`B��F�'�*|ʼT�R���P�}��,ۆ�t`I����]~�m���T�0�������$����G�1�W�������-��\��G�"S�7��)n��`"�$��#do��K�G�:�4���� P��E�=�x��=/���(]�.{:�}�uo>�Z]�d
�J�v@��E�O�A�.p< �B��0�=ϫ'�ֽ9�ƞ���T����qcK���
h[�[�9��_�P��2��鞬u����R�2�%���J=\�|0�'���
��8�[��#�K�
#,� �XGP����ġ�^��xw\���g2���+��}p�,�`��Ó�n �. �5�+�J��+g:������<L�{����Q4�Qjg �^��G@F��ᮝ��.�̮A��>��1�.������K5��r�R��)W%�88�V��t�}�Bǎ���rQ��~�_�
a|��	_��B��5�ўX����Ym
p^���a���u�E!'!���~�P*��u(��e@(��7�f��|����G���c�Xr�|
>��L!\g�M=ށY��W4D:\@/�fr<�UƋ}d����~{���0y]m�¼1������^?��y�*��)�9��@��wb���XZh��n*��`��ad
�Z�9@{n9�V����|�!_��A~c%��	�r3�]�&a$GT�V��]�,��q
u2�����&��H�`q���Y���'�&I�[�c�o�f&�t}OOul�5�Pp���3lI�#�A�:�_OF�'+�t�ɩ��T�d�Ñ�a�D�akj�~�T�>���L{L�'�w���'��-{(�O_
�|�L�q��A�h��{�����j�s�*���̩)�p4����4��>V,
2��M`�@eTz�"2>'�s�G�:N��8�E�V����]I㑵�T�=��O�g�S�F�m���2�ܫ�pdQï�zr簴*_��i�e����^#�ȱ���d��-{��q�
�3��*`>{q�F�9(S9&��Tƃ#���c���L^��9��?ߚdA@���y�1�ɂb�����y'r�l�����t&a<�)>���E&$Y�'S�Ib��ס9=��䰝
�w����\�Pt�f'�\��q?$�-�
�p�PJ�C,ˆa����[��&t ���y��!�.��Z����z`�V�[�8�e9p���\b��C���b�
����s�FGh�֌�2���Y�'Y��g�{H�sH�_Ố����1�Kz���T�$�ɲ�P���J��|��?��:����=2��FW�<��´HR����ܲML�@�MOۈ�w�$��I�w�q~醯��j�I#���Ϟ�
ALZ�*�@�*�!g�W�v��x�j�q�X���}���?�?��PN�ү���wD��R�׉��
�9t87��^�%���wa�֣|��Qɋ��u'�&�`Px�EW9��'LYϾ��v
Lj%PI�.fpj����(���Ym�(d=b�Ğu�<��o�O��_0m��x�&��DS����<���#�0"�(�:p>����r*մ��b2�܁
P��7���m͂�|�p�~ҵW���s�?A�dp)P���E��ȹ`���lur�:L�Db�&e-�OlH$�F˟�-2���[ֹN�-q� ���"H�
�/'#}
\]�|�j4YJ&��8&��B|\LkZ|\����Un9T��ʼ�=7 Q�
���=o�=y�=��K	W�-��cr���7k��!H��2���Ƶ�:9����L|2���`�"�΅B��_���vZ�T�y�V�~~&֞c�OW58giĮ�$	�0S����
�mʾ޿"���
~�&4�1E�_�74&�����.'�����d�z&�1j���e�
wuT{߀c0�]�y9�b��G�dBb�8Q׃��@놧Gx�Pe�e��H�B镢�F]Rّ�4
�bU����2�S�+�.w�y��}_3<$$~��~>kO���QE���\����	��iӏ
��q���x_rñ�p�֕pg���RFb T,)�2�	V-/0�_?�%>�^��b50b��2VU�_@�|qj��1
٧���d�/���ZOL4��G-H7��f�s+0��k92_0�x2d����_"���DdԙP�Q��ANEC��L΅iK˪�&��̪X��2 R�܅!	��jC=��O��,���fE�D�?_�/G(.cI��	
��y�`�g�r�D�	-~���<5�G�}�E�L+¿��ni���qY*7u�R���Y&.�b !�h؆"�I�,&\�'�s+�����NH��oC�0=۬"E�q����uҤq�Ji1���q�f����oB���)�Ԃ/���y�Po"nH�?F�纱�3�d���Ɍ>ޓ2�Uf2�`<k�+���.{�3����o� /�mͷ�T���'���|�\�Y�ߪ����q�N6��q�	‘b��͸X�9�LT+VsTF3�����pb�zcH�!7u���<
�)ϙ�RW�/�\�
'�`��i�
p�ω�˅g7�@_u�_�`�:�?T��#�y��[�=-W�M	���h��v4�̙��5��K�)t�س~��9����Q��1��t~�v�Θ��3�&(^����ED� �l�7ף�k��
��Ļ�%�V��ʭ��e��W�3ڟ0�n��S)�lr��x��EPW�L��qĕ��Hf��h
0)ء=�^te	��S�R����v�牓O�?6��0#M�^�W�29z�.�˃��n���	,�J��^A�'�=Nj��~��|�!�����Q��\L�^��q��tt�1�if֡~�l�ȧʃ�q�/�w�%�N,m�;l���J_dC�>���oG�ƙ,��^�3ҍr
���q��8Auڊ�2�	qI@*t���!k'�r�Ҝޑ$�|�}���j����n�}4
������e�;;����a1����t	P2e0<3=d�<� ����^�APD�C.<�Kf���\8.2�_O��;Ư���@0�cK��_�x�Ň��n�5����c��!S4�=/�=*u���&�2�-�Cs�s�P��5P =r{�w*f
� ��H=�K��$^��p21�;q��t��qXBT���4n=�{z~V�+����������ی5,��:dh
��gPd�{�ɹ"_�\��‡�-l��4!�D
g��D�x�����:Y�db.�|Y�;��h&\����/��ԝ��)>�c�N��<��s��5�P�֍'�^���><>"�8��K�-�&�`�Lȃ�	w-	�˓��+���\dOW����g1�ˮ���Vb���$�e�{"!���C���5D��ƌRJ�8t~�>UQ��̸x=Ͳ��*���]�(���0;�O&�RT|�_:�O+�@����.�^���:���y��n6��q�@���>磅tPV�8�Y�t�Z�n0�Y��K�	pA2����ɇ�WO��3V��}�9��sP����s�2a��VT�8<'
��/׺Y���a�W�G�
������
��T��y�����1'�^�k��q�d�9�?Z��V�9��z8Z�}�uy,x�9z'?֧��K�MT`VP��E
�nb�����~��̗�\�8�����qs�p�h����t̡Op�-�/>��tĥ��1�p���~���J$���O^.J��o�B���p8�H��{���%L���u�Pb��X�!ٓ�CN^_D��^I��@e*$��x��mV1����贋��1H
��p׾�}�o3�a�,
5pH@ëX��d�!��\�D�K�	��.�b`-{�����3����4^����X�9��+�!�	�/�^����s�P������(�)r�+D ��)���Ӈ�ܡ�3���Fj��Q"k'E��L4��hѹ���xD�<�c)�0i)��J8�E~��d,\��zI��$����]2G������05�i��SK�_��g2�zSLCp5�k��1p�T��woɇ(���~��0�y�D�9��8��C��_����<�V�t�$���I�h
ܴ�S���h��&~��92���.�\�T2K�^\Ed(sS���R�MNܸ<B"�*��mL�����×���ڈ�`�*�)H��P򘜡P�@�*����x�HrҖ�\��ӣ�(t�5O��ERW���.u�&�$K���1���=�{����̬���)b�}rP�on$���L�F�n�V���7z��ߟ�y� �eYu�$W
G"�p1\��q	:��Uͥ���S����J_�x���rP��l�Rb���2�,acq��)�s��1��Np����
fj���ñ\~%�<!)�
-3�|q(_i���@�B��qݺ̄�̼	�֋�\��&'
�B�$i�şE���"�(Q�HjFR�]�/R���3�Ӿd���$P`�l�r�d\��6|���f	��6h:����ܔ/ّ�?m�����!j�\�P+r�*�X9!���t����J�g����G�xg�G�<���N\��'��u�w�e�83�y�-���0��QsW��n%�ɐA�[u#W�B�4D�u�!X�w��.��G�>�{�2���(�@��~D��/
Or���u^M��<o�5qG��}4a�x��q�w�ar��w�� ��j<�3_Ԙ�N�g���}�����z�0�
�/q�d\����>�*�亝XK4�ȀcFh��j\.0]'ϙB<���E4P�L�8�LG����4��4�ޒj���0��Q铮Y�0�|D֢�tVe�t�&�
9��z�����~b�m���)�8�L��8���Xܺ�Q��K�籩�>h�ʒP��;P���g�'�%C��V��xĦ�-5m���(խ?[�+F��s�7�k3b	�G���}_t���HY�p4QB�5���m|2��>d#8g��.��.~�@t��1b�q�χo��d��&^�󉗲��hH.q.��a�:���‡L�����0`:�'�� U��c��D�(��#\q@(JO�Fҟ�]x&�N̥���T����Q�w)�3����e�]]��e|��:��3sY�7I�N����A�Ie̘���λW*�n��T��֕�3��#��Fax����\��ʢ9f�hv:��9̥��`��s�������r������SZ�����e�x-_������C띶"��8�~!ԕ1P�`�Ç"�5G@���*s����F�����:7�"Yp���z�ٝO��(���,>��	�=ԖJ8��-U�(�ī(v�=��Ps�l>gy��$�J~�a]'��4Wc�,1�(\�NW� ��>�<���q)@*�8;��q'�h�QQ�V�į.[
ky�U�A]�����=�]6_9��S�EȾ܄��G-��º[���aq�8!�3��%Y�1|��[��ήQǦps_��q��κ�>������*��ֹ`dt��;��%��i���D��a���h~�Q:L?t���w��`~�S+�.��R�@����J�C4+�7�p˓�.d���t�,�u�+�c���3�Sr��w�p	4�>8"�Ay�bJ��%~g��y�
�e]�8np*���;���.$\�tu�~���
� �oZ���*�?�?f��x5��Ol:2 �e�$��|(�a5�k
��C+�Q��G�_�̠d��8�Pi�$t����( ���hBk���vt���M�ǧ�*A���8Nţ��σ�1C����L�����f����j8�Z�����錃f@\�*���)Ȳ�+0?Ì?��\���~O��e����c,�������pÙEc�xƒ�+*f����}���t�u��`�rL��D��.���Z�*MfD�C��%�<�`]a`����m��!��><t`�\'�^�2�,]O�f>�=�x����K�[�B���&{�Y�Ov��ɞX���S���a�6�<�@�$��T֫��+�\L�tB�G�c���pqTF`�:�>�x0�M�Wq	�/�]Lp�̞0����.N& }s�����!�����=�aLzx���O�3-���X�<��IK�.Q]q�P����w>FZ���J��ܕm�
�*����L������.��n)�_���1�-q���<�Fy�O֠��������!$"e]z��?�<�W�]����&2����a���	�*qкb�5R���rE0T44��S-T��/�D��*����M�|�p22����\!q`A_�Jړ�������y������9����$�DfTa
t�&(���i�q᧜<����fKRA�k�:s]���
Y	��g2y[CRN��7-��p�?G��
x�'��;�И�b��0�-�!p�C��$U9���E��ѫ
�����W�fV�pQ=2�w��y��QP�b9��=��zE��G�2X^^a�0f�]��{�E��UU'�B�	R��3���qס	��ꧼ�Dz�b/�#������G���֚\�%���CK���-�w���=����m���
��7>�9R:���a\�& �W4��>e�JrS�0���B�t�2�r��a�1�K7��0�W��%������U�\��4p�:r]1ȅV,T=q�hs�䀇��w��9�	�ca�Rr��Zc��ƒ{�0�Jx:�/i]��@�>f;qeW����]n�y[8_�|о�Z��=�p�#�5���=Ht2e8��n�#5
���$�AC�ĢO[�V��5/�\vYO���\1 $pD�r`�M�R��&�}����1%:���pk����*�n5y�|L5@B�xM��T��q{���n���]�I��?f ��M�O5��Zu�_������}у���N�e}�x�j�N�Mw��wۚt��)��O��ҹ�Z8O<�\t�A.���W�c.����(�w�\@���Ss2\�>���PhvL���?�~��-ї�BRiY�`�]\�[���$
9�n�A�A/�\W���
����Q�Ɉ����
�/�a���}�t�q<@�jG�s�������9����M� ?I�E��`y���Ԣ!��)�O�*j<�.7P�����
5)r��Pʷ�9���͉��*���{���O�1	\S:�3����~�)�</�	���D�����\0��OC2?PFN����-�$lj\Q��S&��>.���xi�%����G�	�FD��[%��/�&��-�\���ɶ��;݁�8>��b���9���\DNg	����2#��~��ٔh�����%��c[�W�c����ַ"s��#uC�1�F�����@�(}��"����dF�9V~��Ś�i�٭wli��-z��!�Z�ɐ�\��ܽ�'�L�G#���L�z[?Xjzc߫p����e©���.0�W��_������ y�%|���`�
���;<^Uq�.@�ZzL�i��t�
��.u�\.2��j!�%��S"늈ۅ�\[�f�N'�#X/��/r)�K<Չ�
LaHָ4��#�n�������Z��X�ɭ���O��	��`3����|��^�
L
ʓ�:ᗀ�K��O����}3P�'>�H��
WM*�*��`��#�^0Ov�h�O$�}��q�w��.��O�1�Ȩ�w��p.�?3����C.����$ķ�e��h>��Wd�?�džHӚ~�̌^�E�@�:.P��+��J�?9�����([�e
�`R����|NQ?E����.�q��3��9�³^g���^0���ҺO��`?�����)��-	=̺Q�r:�L�3�P���m����3�2%0�ubP�
'TI�aYGH��L�R�OG���a4�3�L���U`
B��9?
�x�f�z9S�P��ܩT�'	{��}Y44����5t	y�Պ��::HuIO��ؿ�x�]N��2�|pԉ�-f 8�O�~�/��5"��Ğ8{��dO��,�|��}uX�����1��W
9�w�2>9k����Q1];��1�9��O�2c�A�H�4\b����5�2�rטe_2�\������ #J�Q�����pM��̬����"e>~�̨��|�X��7"5� ��Ӣ*bR�R*���z�w��xd=\�<������j�.Rb�h�R�_AP_�qzJj�^��t`�bV;v��9apل.)�"m�f�
#?�	�B���S�\QL��f>h��=�Y�Ӂ�!����ˆf(�LX2�1(�\Q�C�U`U_�Q��B�F��ˡ.j�2.���5�<�E�k@q���@J1c��O��ҠDCr;J�X�>�$��E�p�{�֠�n)p�R˨�`��|ƥP�
Y~h�h|p���1�EMW22\��x߿��?�ӆ}�U�����S);�y�៩���Hfti����uA.t7�q�pNe9��a�!��y�[�	��:̧>��MXf��D�_�>a>���,��;�
@3�-�u����8�Xd���Ptr���;2��tLdc�߃Kp}���&�e������ǘ8 ����e��H%L%�`79�����|jm1JÊ>�D\���h���=�p�@<�'\�{���t)�+����2	Q���F`����
0������@��a��#�V:_!��sk;O��5|\��W��D}t����ޞ�U�%x�p�y���Y�+~A�2?H��S��p�ႼG#��@���-ȣ����,o��X�u�;�
�$~�
�֊c�t�&�����W	�(���(��G]rr�L������q�2Mk�~i$�z	�N �f٩��zj>B�7�h81�VaR��r��z������
k|Ơ������p>��"q����:�0���
�Xz��Ae�
oW@s�pJ�3:��&�y�{	LqN��S��'��+����V�B���#4��7�����ʗrH�Ng�qI���g.�9�5L�ιB��DLd`9^�B��?�̜�ą�*婻�F��h8��q���xJ^}ӱ�	��y��+�J��e����(��Cq�?�P�p�1��
��G��M:�V�2`~��Eo/����p�x�IJ��:��D2.�~X#�9��$r�q��LD-p$�-s��{Ƙq�����W���hp�q�s��{�c�7S����j��[�b��@L�{f�t���1uV�j��z�`�1�+C���[����c�^
��䨸n��5�c���h���a�ˑNs`>2��ѕK3q�N ��s��\���������+��\��4�s��W���c��I�N�aQ}��.C�z�z.�܏�x��B��mLj)�>�/��"�����(̡���@茝�ω�T�C랪Y�F��6�ןs��z:�*I�8u�
� y��.p�e�p9�=������C�7��c�ף�OG(
��B�:ݬ�����H�0<݂����hG
a���e1Y��! 0@P���>�'�������������G���%�7��'��͙ٙ��ޏT�r��ܱ��{H�~��<�N�ٜʶvN�E�;��������{�R�/�}Re��9��i�ν&�~���&g���o�͙�H7��`���?;V�|/3x|df3wy�!n�0&p���?�w�׏���k32���v��q�m�X���8;�Y��2l��7�q���Yy���a�m܏i�$k�K}R�Y�fo�m(y��wvo�s>�r���ο�8sf�ùnd!,�T+f���b�ʳ2$��Mx�}g�6c7�3IR��:�؇��9��?P��u�i舤Ly���i4&��W�	�Ȑ�فo�͇�0?6 �C��)��/m`�t��0��3՞�As	i��	� �&D�J�{�3�ɜ`p�5�3"Bo�a�HJ^R�W&a�Y���&�j����k-X���/��!a��inf����YĘ�T�w�V�a�YiA��4z����I�Mm��VV5B�^a
�L`��ja,p~�L�.�/=��"g���J|2�|.c6n���[>ř�|mj��ٳ3�6"30�a�fofs-	�������3b�B�M��ׄ\�*��]�
H�{���Mз��?�n�n��&~	��<��J�Fo�w��䵅m\OaORo�w&�ߌ�n<>X;��3���̙<�Vo�K���ٺ��E�.Mk�� G�Hp��9�;���`�OI���ܧ�L����S��~��	-L��	�L�sz�������Rg���pxA��T~3��wc�ﰢU�V��w&s�ʭ�p^��k#��w#���pg^a4��ʱ�:1,n���Y�>ؙ��|�����xty��Hǔ���,>3��ǖq���,-��Q�~���u�a�p���\�9��31<�x1�E�if{�`(Xn��֤j��̳�k2j�Ǭ&|
�Μ?W�Da�cH�c���jA%��Aa78E��[�I��Z&�{mo-���^�T�KY�䯑�f/��a�KC��O�k�$l��x�?��N'�RZ��iZ����S
W�o�^��ᯈ���
C�����Lly��kc�y��W&���U&�`{m��Yg�ZЬ�-���,��)�9�w��F	�^f|�����nn�vեZ���*��{^����ږ�Z���<�|'�/JZփ�Y�#��^�����w>��58I��%okV��'�����{�V��7Y祭������{\�����͘�>N
����6O�a�y
2��Z�Y�Z�%K��+-+OW�C����JW2yR�f���xO�n��e~�	o���;��ܘ�i��*5�f����p�U�j{^�z"m�y,��|deo�J��{��Ojy9�<�`|c	o�~w~��ɳ#Y����F+hA����{{%i�-�ٿ��Ж�/o%�/j֧��%�Uڲ�+B��ѵ�֔<�_�_�w�՗��O��vf)��5�kl�F�=f��=�{nPF�4-J�Ui�k���t�_�V�ɫj@)k��E�iO
j����n�Ŗ�_�>w���x�c[�Dy�l��-���iM�[7��=)A�֖J���y�R����)jִ�)��k�o�-����Ng��l���e%��,��c=����Z�,��j-�j��
)v��,V�k�w����*٫G��Z��/k�,��R��`s&�33�^B=`�3��ZY�Ҵj�QG[�0���_%�Z�խ�l^Z�]�@��ʖ�[�{���Җ��[�a��~C?��-��!2g�7�� ��qjb`�|��!o[U�Z��ژ]������x�i{�k���(
��O%�R4���+��`��"����}��0���KY���|v�7���K�z_�-��6�T��--_��=��n^x�=?��=�'���[�Y�n���_��f"!��FᵤKK>:��jV�j_m�s��-��]�;KҲ��xe%�<2��r�{�:�
K���KQ=_㤭�(��Rn���G�G�K��(D�cf����4��Z[��J�x��s�*Ym��mjZ��>)W�jP�zObW�Q����^�Oom�a����H�?��b��˫Ik�D������Cm䯐�Jн(R��m�z�[�k�����x���<O���B�&���֟��J�����E�?����-[P֦���|+�-kY�����*�ֵO�]��S�R��R����io-�o
[�������O�ǻ<��^�J����nХ	��[C��_�������hE��Z��ʕou��/�kZ��kR��B��R��{�I�+S�v��璞Z��J�)o��+���{X��=|��p3������H�D�bZ�bϲ���Z��V���Z�+{ִ����xnyz�-Z�mO=�-��W�JW�k�=<U�T���?�l�x�s”�R���l�������/��no���q��R�����
��-��ґ�+7��JЦZ��Z����7�K�/��<5��eg�?ƹ{W��|�:��x|�oz̍�Ç�1�X_��O�����-=
���
l��Y垴��/��R�kv�)��p�kO|r����[�\�G���B���6�ZP��ũ�7��KVՄZT� [�կ����~Gỿ�1� a5t��Zٕ��ڲό)Y�.��V��{֔��[l��_7��I����ߞZV�KJ��[œ X�?���m�[z��=�Y�����_�xM�	�	y�R��}�դ��ړ��o_
<b�Z�xk姊�*�+�^X@�#�Xǯ�en��V��?'��?4���
N'�`�n�e�t�y�Z���y�7l?ƽ��{�Z�)�ZO���m�[��7bد3�rԽ�=����[�~Y��XL��j�|+z�%F�i-P<�Kx�����z6�7g���&��3��<Y�G�U�fM�R/K�J�߬����s#�Z���6"f���2�#+
ZY��w�O�㷵�Ks�u��j��	����q��35T�����߼�����saы��"3�fDFXaV�=��Ok%�K�[������`5�{S659���@��ib��y�E�3��8�7�����L�ڍ����_5�W�(V�O$�U�����@N5>�7	�݉h|d�!V�-��$ߠ���&�;�33&�;�wa�(ڊYh�8��Oi��<�|ό�;
��ӄC��%�~,OR�s�ΏC6<9��Fg����؂K4�B�R��|r�iJ�x��c�F�N�f�C�5&w0��0>�n�����zL�X!^"��g�q��t&{�}6-�r����[x����
�aC�`c���ݬ�E��d�!��H������Ąfu�M�yz��d�)hY���i�n<��O�8s	��)�2�9�3�>2
ĕ�!��Dڹ�f|o����ޱ�f���\��OO-�hݵ<'2%	���;���%O���c�o��37�D��hL��c[P9cڡ��Ҷ���Ǚ�3�&paʽa�3�RC�Ga����n�y���~��jnD�Դ�^��Yby_jڥ+�j��7�Ŋs8���z��û7��غ�`s3�����ǭU9aG���.��B{u��F!�"0w�x�?��QY��y�>X}��c=�u%�T��Fz�&z�%�s��Ղ`���UO�`S��
�m�����ə�ٻ�����+�}�uWN!V��궃����Ob�i�J��&�O�fM���eB*���sF�>�}cY�E����/7U��ŞhKl�Os�,��h������&0�2*w�g�XA튕�f	��G�}���/7I���`fb�{Z6��{X���r��剢	Y��>H�լ~3>�s���h&��2�����>��t��"�Ù��	f͍�!B�F�J���@�kIs��>F�>�G���2h�1je�S���0�7�>�z5i�mW�Zc[XM�-4���O��x��a3�I�^a���D��g�p��S�xL�������H����X�Fd	f�*�����9��XF�fo��Ĥ�j�����`�}��;�X�mf��r��V-ec-V�7R�HX|�>7��Ìf�L�b�3�6����J�m���g��ɰ��������Ȗ��Œ*k�.,-g��7�����
�B,܄`�`#lj�c��9��h����1�2�Z�V��¨VmkUj|
���*����谳��mʬf�9hE:�
�f�1��Fh���ÇtY�ف���bԚL���ך�y�ť%^:w7�x���2fZ3
������x�=�ه��b�s!�{�m�+ꐋ^R\G�YEa�l9��ȟ8H~��2ZQi���bq����&�3>S��>��ߌQ�KF�p0�4�1�����z�1��̱[,f�b����?�+�ߝ�>��X�R�2�C֣bz�V[��w,P�ٽ&���31�5�iS�_�����ӧ�͙7�8����3Ԅ��A;�
�"�-*|l�I�>+��`w!����ã~�a|�&�EPe�8�)�*m`Q� ����g�qN0�>O��j:�"�ft�ߠ`���*�
A�K���X%J�}j�lN�΀d#�~�O�>ϖ�!���ž���D�jW͑!i[-[��jOV���#hU9�y�0��i�~d�Μ#�̊,ɜ��5@���jV�*�Z��������ٻ�qf�fUC�9��b~/�}ft�t�p��|�zg�2X�e���\9���V�=p}��7� ���o�/	�ޜ��c3���w�1����H���t�s�Ǧ�Q#Qߝ�kB����>�Nn~��3>tT��C����͹h��&��#iX��Xk���Ff|�Y� L�C��g����G��݇����i�]݈F�e��A"�iy�l�a3��l̭`�?7�:����G�3��MzÊ+��˕Ob«*^���`hX�]D�jL�_�n������w��/�����(Ё3fY,���r�,f�fUa�	�rn��~�|�M޼ߵ��ɕ*eJ��j�D�#7`�F�,���U��3�:�٬�n���S��8�f|����Q�"f���Q.U��-4�Ga�z|W�3����_���N������wp8�0�B26b3!p��'�&�:|�faG�s2?�7�l	�~����a��y��,γ�f����d�8�eN�Ȼg5��:ٛ���grg�s!���Lb͌Ff�L�ebU�Z��7�D&�>2nLf�������7z]�7f[�C6k<eb5���5cBa�>7p:���#�]�os�Y�Ͻ`M�񿒇i����m��?>Ł��7s�@?Zg��{�9�7�w�~I�3?�ޝQ��2���e����^g�|�ό~7�s7�3!�F�=��I���9��.! 1A0@Q"Pa2`#R�Bq���?�m���l�O�g���,�KҖ�Փ}�ȗ�,��|[�5ö|A���M��=���1������c��G�(3�1��Xג���L�rgT2_nm����/
;y���ι�']_M������\�/��ę�j^�cDYh]�=�/�Ω�Gmյ��g������$�[�'�*~�:Y=�#���Ф�x0�"u�m$�6B#�0Gf>��o��.'Ł�: �4c$��6}�B�\���{g��h�֘�������O�ͱw��!�A�Y�w�zעt1��sf�6�*;,���.�ZV��fs�cD	��ɴٮ�]��w��/$�|���Ɯ�ǥ�`�-mo׀��4�Ɵ��{=�T�}�X�05ߒ>�n�u�s2c�$hbZ&�#x'k�A?E��>�rz(b�2I/Dv3�=�z$H�
��j��cC��Gy�y#F~�	� ��uGirN���ųg7���"{�k��>����/=��Z6�� ��F�]_1*��DpND�� ��\�$��	�/dlH�>J�:6vw�a��"n�$
����TVH�
(3u�J���HPS�L�ؾ�x2�sl�LZ	��"E,������T�EOtp47h���I�C���*�+�v.w۷����G�:�B0M�$���&��
����LKG��Ӷ��K{R�ȑKh�n{�͞���υ���Zn�|�;H�f-.	m4'��ӝod�;���UV�̜[�s�T1�Z���O��)��.v��	�Y{�՟�]�ڍPֈ$krR�ط$H�e,I�(���G6s::�WJ�T4>Л�J�{�%��\#�wd슟�\vrg��Ջ��%Z/�LZt5��\1!pb�eKG*�f5VR�Jyc�s|���Cd9*Y?B�Ӂ��|r(H���U#ܧkF�!��;���cKGIK�����*����VC*�� ����ƪoؓ�/d]V�F�Jlmnp��C�C.ԇ2C�7,��IK�O���?�������^��ϑZ�w#I
l*�PR�M[	bl�i��Y_�ē�ٍr$�:b
��%uf
v�T��Ri��f�F�8B�Ԕ�)���X��!��cB܁��<��ت����d����#O$���dD2�k��P�DU�EjP�ȞF�*[��
k"[�FV�b��&�)*�j��l_�Eݍ���o�"EK�nzCJF�fӑ��g�..��*�*�#%5)d?��}[1�-��*����M�q���O�Z&�g��R�gW�X!���y�.��#YҊ�Ƕ-է�6�ت��hBd�*{2�LK%��(i�g_�j ��MlrH�h�38*�D
�-L�t�:Jj���@�Pī�58*�67P�\�?1�H�Oj>�Ԇz6����<�p.tF�L�ca����ĦQpN��%�S�N�D@�X!${5K�*����c��Q�$�e@�]cuH�C�T����
zDн�:q�X�X�2O7�Zg%>�K��Ix��X�Kq	nNĹcNmKC�9�ua�l�V��s��N�\�=�Ȫ)�O�r&��ZܢpWIM\+]?2`���"����#kr���c�μ���SI��R$6�����!D��Eӱ�*\
	sH��	���F�-�����EU=�N
�q��6-�����Q�(D-ʖ��
��2�4�A��XY�(G�ӡ�w�	#�웢���ȑ6����x LE%>���G���xEu�!��O\	R�(�:6eQ�c|�E���L(��Q1-H�`q�b�*�T��,����~�������2�og���m�LBl�N��Ź[�5%of8���!$�L$9��,19�
V�],P��26ɨ�#t1�IY1�1��`��L�e�:�D$$.S�YXݕ�/芝�.n�b�$HLBK3(�n̉
�zGN�nR���'N
���X�Ⴔ��&�v[���T�*{!��eP�S�uW<	�1t�%�ӂr,IK!J) cn�dB��6�"�M�L�j�f�NӒD/d��{#a���md��[#�%?���){�$:�r(�،��8l��T��%3�Q�({�?*�Y��P>L`���4�0a�Q�B��5Y&+6��������I���g��3�N�&H�<�]FJxg����q������[���RpQ"K\!K�J���T`|����9T���bYdpa"����ěD�U�æ�ɥ���1)�6`��HB���6pc�pH�1�$Ʀ�Ȓ�ԏbܗ����'#�Ci��t�%��1��d�C!�់�!�%XenRC�K8eEkf$����B�,�ĝ*,�\�Pu!����bES&�Η&�����$[��W�g�wO�d�9,W��SŖ�����݊ ��b�V�+c�y[��e^��<�)��d��'��I$�6��,�V�[Y�@��ġ�����R�u2O��T3�XETՑ�J�&l1			��Y�d�,�m:Q�p;d��S���QҲS�gS�S�p�eL~��Y����\R�Q3ȧs��O�JxD�e9PE���߂]үJ#�ͦ�:\��BB鑷dz��D�#Vn�$l{��r%�<Ȗ�u�8(���Jx!3�N��S�k�ė��
SŒYRWVR��\"�����?f	PΝ�R���}h�7t��Mȴ�$HԢ�[��3��qh�,y�J`���j
�ܡyX(�e<Y~5�um�$�GU?)�����ŷ��Y�폩&�G"|
8b�=u����C"�J�`�i��͑���q�A�O�H��wŦі7���6BȖ�O	�>��-�J˥6:��D4UR�ij]B鄊X�{�Q�:Tۦ�hZ"����E���R&H�p��KL�������Wv�x#�H%;`�bJ��NKY(�U/��}g�?V��]Q#t�(D(��$�,��<3�D��A'Z��C;�ݕ�bO�
�iC�&��Iv��]���'�^��O�H���R��y)ܢ���KB_��\^��-�CU1��/���V�IR��w髭��
��7��S$�hN�!���ަ��7��=�0R���6)K%%[P%��Ri�����$N?����
/�_�GU_WKk�/��GşY5"lɼx/�#��.{s�/6��c��$�\:�6䊲���4�=�ڔ~g�����k+'�Mx�I�m���E0�I���v�=r��A���?��z{x�ݤ�„�dl{'��M�7,u!N�ԟ[�f�H��y�@�����v�4g�z^������V-���
P���2���
��(�9��m%Q:*�fS��:��ˆ�b���'�: L�
�Izg{��e-~�G�7��ENIcd9�%U#��1R��C����S��6���
�c�7ƈՂuC'�͖���C��w�^��QN�葬"O�,�Z*���_�������j�L��;ſڵGbu�)�#L����_�+��z n�l�eyB�$�N�<��Q�OT�e=)dIi�1�͞��k�Gy�g�$�	�F/(K��E4��.�ϓ��

Ӷ��3e݁��X�c�q�6��-�з:��du5BD�����-X���c=�ws�>,�|9��9�$'��dcGJ���p�'V5`ju{� �2f��u��ޛI���%�ɛ�3�2�P�?�	�'��cVt�a�&��c_�fm��q�Bq�����d����͘��f�4���u�߻��`ŲC$fL�ǂ쌊�z�i]
�>D��4`͡�-;��B"��md-�;R��[�g�hp$��ڪ�hdR��sm�&����mh�1v{����1ٍSl�b�#�d�&�BF%���6���ӕ8"Z~,�����k:��F�|���mT���6B�N"NLo���m6ťkFu�L�s�F�y1�ϋ�DfEf�ͳ�''Q�cғ���bH��z1oCя)��eƴb�2gN�:�-�r"VhT��]�wř�<i�@��'����/)^r-.�CVRf��
I�6��ɛ`PfѶ�F<%�����H���b�yJ��M��{���2�`���g�i=l�=+���g�ţɋ��[�G&`�I.������2O��sh�i�M����6�nّ�\	�$
0@���ɝ3������w'n�6�$�"w�dFH2I
�u�||w|�kaμ_Q�!
l��SVt�K$R$f܂-(���{�A��~�>�_#��)���Nm�2�m�%I& �7c��g�p)�?�D�l���6�-&pK Ql��!^L�8����K�vW����^�`ؘ2J��F�"��I�Ž��U�2'���&ѯ�=�}&~���Q7�����N$��>LAΏF2)E$lJզ��za��$v���_�'$�I�B�d�#D�ى���T�͡����؞�w�>�?A*Dn7��%2m
I%��'��'�{v^���I�rR�v]�"V�G�����`�^��G�{#'�v�`DY�]��2s�G��<��F
�zG�����R+z$J�Nı!&r�;�4�"���k�1�O^2$`�L��=�8�����$[�a�M�����?&L_$�Ή ��ٳgQ
	��Ӣ|(�1�L��i0`V�|jG�mӾ��Cx~VL�Kp4`�1x����Y;A��'{�w�i������s-�+�:Z�\�{2?Z�`�����k�1�:=�y �J"�v͜�o��1vN5c���N�Z!E�&$�,�T��1�5�ZD/�1�c�lSy�pJ3؜�i�a�mcVp$33�3t���옳�6]����bt.�$���c��! 0@P���#�{����p�s�Y�O9����;�;��++�VO�w�;�\x�xq������<�x��~��C>��?w���C��s�:��=�9Ug{�'��}��?���|+��K�s—8s���������QA��0�3�?��ξ�p��|���C�^O>s�\��)�a���w�����򁁉�p{���n{�9��8���C��8t{Ϟw)$1j��1�\�򢓜Fx��d�>��P�|���}}w���9�8�����w�_]�hg�9����9��q�͵�e\L�9���{��;��Ϡh��U�;¾����+������]��0�q��`�9�a�{����Ϡ�^V8���+���)/{��{�HT���s灟,���3���p���q�����s�,����s���1Z����2q\��gg�rh�)3�H�d�M}҇[/�W{��!�{��y���c���\3����[��?�:#�8��<峑�b��%��rU��V(5Xd��_]�},Ӝ2&����w8�}<�G��8���$T��dܣR��*U�����:>[2{ܬ��L��D�U�Y�>���^��~{*���.��|?�<�|���y"�WL�3�v�\����%Ԇs}9?�gip~���Zϱf���j�ן�&��w��w:y���T��Oy�叐�}C���a�eּ�5K��-QC��c�\�AO�Ge���T��F5�\M�<<A��������s�|����!����6�n�'�*h�ƚ�,��N��ֲ���Dg;�G��C�e��?	�θ�X~L1�>S�*/����#�sL2x�[��T��.����e9*|�|�L`���ܵ�ϸ��Fp���>�ɝ�/��s�j?�9*qL\A��_\�1{�M�p��s��I�Z�/�S7��鯮�S�=����*Tu���x���~��?����X'��:��3F(����qy��r�L���)j((�KY�Y7�5ۦ�O����2./�zy����>���0=|���\p�;P� y�;�s��/�,d�E���|\���7�a�u�ؙQ�{q>~YΞ/O*�J|��	���2���(�+:y�:>T��ND���^E},�j�����g�'��ze�`���5_�^w��O9���Əɇ���=�΢s��ge��82����=S�**s������5�Տ�e�Yib�{��UO���=<����VH���+�s�s� ��r$����M�]���T�Ds�d��4-l���?�p������J�ORO����1���=p�s���x�2qʰ� %�U�����)2��s�Cf�^�]�1��ڮ�3Tί�����<<����y�\��s�9'�8x���8��qr�}�a�}^�⦶B���ӗ[6m�j�j�/��'��j���;W�8Ò|��Q�LN#��!d��3����F8L�E���Ӄ���c�VR��&�uT��5�~�'��_���"���&C��r�x�ҰzX|Mv�W����U�֥��5N����{j�""�;Zɚ/V���f"`��iٷ�B�Z��j��g��h5���������;L�q1�ƌ�$����S�bcQt��UT�HV�a��ٳv����L��%2r�
��ξ39/:{G(	�����s�|���'�Χͱ.�)�)�4k�K��zZ�cU7ү"e���t
{��.�r��y�����ݮ��뜼���/�-���MK�0��SI8��3�9�fUNTV��2��M�1Z��D���׮s�~i�:�u�pmE������C=\�(�_�1��S�E�;�Krx�ea�3�dV��v��������V�ٻtN�[���k��\�a��1�;D\ܡ.���~�c�?���y�f_���<��6�g'9�D&�ᕯ�J�m�vU��E鿝Y7��e1+e����ͺ5j��rɚ���;��y!�w'.�����Mq�y'q~��~ȶ�	�%	���󼩹׾*�N�O�:n>~un�2�f���m�ӯu�w|�X��:��w�us�Ѯ7EP�Z��.}D�Lh��:R8a�^��g~���Q�N��s�\����e0��������9��l��W8��0�D�J�.��v����.�k����&5��a���ml7��Ϧc	�{ �z��������+�?�A�h3���dV�
�x��ՄEԐ.k���?�;�^�r�l�c}��:�^蝚�f���10��o�ψ��"Urg��3������8���2O�gb���1R�&�&/U�#\�
3��l��&M�ժ�mjˍ[/T��_���L���TM���)a@��w�~�)d�3�^����'ڟ��3��"���s[5�6?cc�5�a��w����Z����4��۳��e�ş�շtj�;�'��5[6�ؘ�I�׮nF���J�)�
�o�1��9Y;p�x�eN�5q��eޯ�p��k���4T�ʋ�����1Z���h�"��������fMn�+���m��_���ș<s���H�z��G������j�Ib1�c��l���)RI���:u� �����m�5��o�5�����?��j�ؿS��Cg�+���bd�d_��|����w��_�jߘOy�3|Ml����y��j�����\�k��F��?�y���w1���/e֦5�ay��rEl��5���,j����.�w�Mku��6&K��p�w�{��D�ʩ�_�q��.�AEF�w��u�:�_�n��7��⿏{s�Av��R��ݳj�y�^�h��Fk�Z�[��L9f��1LJ��G�z�������9Q�����M���tT�ί�ʌ(�]�5�:�-_�W;oM0�k6�����W���w�D���"f��Y����t~~~�����}�z�걋������}4��:gG�1&�/e���ݳg���4����n����y�n}�s`^��U�ˌ
q3��Vo�����]T��;
��m�`~>~C�c�)�n8�Y& {��r���UN��+Vk��UYZ���Z]?5F��[:F�{����%��!�P�^�����*&��SY�ɚ��.9:�ׁa3���C�\����\�?ǣ�d��s��g��t�*��"�i;��#V.�&�
�T��d�5 �WY�骎�N�v�G�5p"6i�5�R�8�,Lp��s��_�w��_Ӂ��u�+8���sZ�KR��?�5Hۯ��.����Wƽd��[MM�]����{�Ur��k��z��M��͛_�"��`Ek�vK�"�p=<RY���|��0�������;���M?3���_ۮ�wPDV��w�&�kd��ߚ�H�?���\C�'&�l�TU�9�{�.�ɟ�3uDk�l�2K�����"σa�
,��b����3��_WO��9�����V
k�+�5�Hv�}ıyQk��џ�%���]��\*n�m�5G��բ��Vd�1k1kF�"LuQP���v�BO��9���Ώ�����ʶb���1jMWr��κ�f�����k���m���]f��r!�I�v�l�h�Q�3�L����
9:���UT�
W����W���?)�?������r�5U}���W�o�!W��E�a���-͚ocZ����Tc$�lרH~��f	�"�U�&Fjipʯ��ϓ.vM�R����?�/_��C��LY��m�"l���d\�5=�5�ḳ?�W�>r���߬���9������|�Y�Vс�3�6O��p��s�;��!��9Ώ�lf>$'�d���c3M�I����J��+��w2�o�6A�3�I�O���3�6e��Gn�l�������D�**#al���yϞs%�\pp&��k�yI>�\���c���"�ʯ�l�d�Wew�;&���E�vuĨ�����.+9m#�~���&9M�k����Ĩ��s��x���9�YJ��tɟ�q@�/?iU UL��m��65�^�z6\҂5;g\��y"֫;����_\�t��˃&f�����R&\��Θz㓉��_{����u}��g8�ْ��q�=�l�je���Uo�듄��2����Nv�4�)�*5I���Y5�/�Y��?;&p���u�6��S3�z��>g��9�S��&L�k;8O\s�w6dT>��_]�r�>[�;2u��Z��Q�M����bWֳ�:����:3Yݱ5��*�Y�q˥"L���%��qC�᝚�/��	�N43�/~������̬u��\�s�*�_q͹���7DI�ZٝL}%��3U`R?��86�؅MG�_�;#M�+�&|J�����5E��a�}C�'�1�3����N)Y��\C���W(���}��͑:�fSa��$��k�wy��5�ɏ�a�Gi�gˋ5��f�UQUV���vQ1��f�\�s�=*O�?+〢��3����q��������8�WpZ0k>5�r��nN�}���_��;/bii<��@.t�+�/ˋ����S�ͧ�7��0>QG��8��9�'�h	���8~L�kqa>������������k\�g�KvgLٍk�t��ŧ�E!���Ƭ�b^�u�θfڢF�h01G:9��t�C>��-}g� '��W��:>9�31lOyn����d|Vɩ��&~g ���a������so5W�&rL�r�,z�㋮�c;�*��⫕����b�H}q��HN���~xa���L,վv}�z�c>�Z���d���6j�O����O��C`�`c_�%�R��ѯ�sl�\iY�+��_�|U�Tz�O�,��O�}1Θ�U���ݳ�^����ӕ��\�!yT�}���P��K��QYYs��:�<��8(gW��:�՚�kX�Ŭ�}��s��Ƴ���!+��=�����s[M��TTL�4�|�aS�A)eD�5ޫ�Q�H����|,�c;�[��}��B�h��:誜�ʑ��kxg,���9�y���s��ed�,�R��Q�*Y�1�W�+?���7QuÎo���~�n�i�B�Zvo?�~9��K��L�:+�1*I��1D�^��Jx�>L
�ji��-c���}��>���R�w.u_Z�g���*r��Λ�392Ƭ��y Q�dٓS�qXd��l��?�Vza�YQ�'�6�}�ƻ��ޘ���d���c.7<�<����p��8�Ó�=p�Q�BV8�b�gS���F���9�0�ϝ�9��MF��˟�?�$�g(��L3٢r�Zb���)��7��	��D�T�Jx�`�>y������>{�9Y���ϬU���M
\��mOΜ����r.!��� �L�0�p{�Y�%q{�2g.�D��)΁�\ҳR��'>G�MV8p�{�|q��8�K7��IG�Z���;��r��깮lɃ"wW\�^5^Mc1�V\TF�.���>v����Dόue&F�s�U���D������
dA�2S�s8�p�3�w��3�Q�i�?�z�W�ŭ�ai����s+\hn��r�bP��3V&4ߧ�(���ti���R���\�ˑ9�ѓU6`��x�u��9�9�O'�|b�ɖ:x�3�pG�U�[�e͆NV��ב���0���|���gd�r��v�f'ھ��eSnH9RL`�Y^MM_����N�����ξ}qa�#��0Ύw8a�uf�w������(�F	S����1񋆵����:`y^8P�~5�O�8-[BA���&}J&�Z��*�+8�`�g?�!���-.3���*��_�f����nzN͋�z�Z�qU����qם��z�kY~L��N���~b�&c,�s/Œ����w���3�ޥd�.	�p�ܢ�<h���������V�ֵ����U:�m�6^��O|i0���t����fWo
��)�ag��e�3����wW?<�gz`၍9�I�k���5kuQ�,ga��
:�ۚg]md��;o\75�EٚN�}\�/��
`F�v&NQ���O㷁xOI�3�@�3����е�2�LY��NL�s�Jv�b
3cy��l��u��ٟǏ���ʲj�	����7;�8�}T��>�Y�>���͕9TV�?σ�1���q��cXb~;�s�w���a.}I�]�Q�fR���������n�(�ӫ}��&9���*���g�I��`c����U�1*~��bQ��mA3���G��q�������Ξ9�C3���>{��8
�ٿ����f�\��.j�����[����`~��g>~0L1#,��P�3�q��c�Oˆ?�y�8�E�$��9Y���|�H��Z��q�����A)�����C�9�Rm��kV�����_CϮ��;�Mc�_#ˮ�2��X�&���3�d�!�)��L=�>+�(�<k	C)���q��|�w8f�hc49���3S5�c]�|I��`���M1�h�L��9����GL�d���w`�
f�'+3���C�xg\rr��rE��3�8��I���\���G�&\�j�ɗ7��TA�$���婘���65�zK�)@�=�:4̯�Ll�L�?I����s��O��y�P9�yXg�s���8�9�	k�����U��&u��n�ծ�ώD�r�"f4j�}���	�y5D���q���9�y�g8� �<kY�xxx�|@�ʩƹ�}p)�z=�G�9�����y�eOj�dV��?�Wپi�U�s���d��#�ƾS�a�39uk�/Ӎ�>V}t�P�'�0=C�c��;���y�S����aE�՜k��ni���떠��m���B֡����DL|㏍�3D�W=���~\����)��:�S"�ᕁ����qCΈ�r���7}k��V�.��3��vL%F��ЕN��EC4��U�A�y��8�#Y܅D��h���p���s;�?�GC
�Ϯ.(t�^|���-?k$L̩���N7��;'U滽�8MQe@�3Ɍ+����e/�6�#&+Y)ɢ�q��0��}�^w�'����qA�x����=�q�2�����8D`T�S/e�=������e�l��:�f�{+4�u)�
w��
<���>�c��s�����(w9����w�����:�riff~`&��&���W#d¶�WܙYP�$���󕕄�8ܐ��NA�^I'��>!���N��
bt3�䘆)����*�V�=2�����I�
���eN8eE����̾9J���>��O*qz%J=�/~��3�?��8�)�}���;뇮�iW�a�$�@ͅfSPd����)�3q#�y�Zf{V�
�q�Θ&s
�3��p���U`���|p.Fw�L}<�8��p�'&u�MO�k(�eD-5�-2�wM��9أ9�;��8��(��S"LZ���@�πa��s�z��p�Ҙ~\��:
'�c���>i'⢰e�3QT�ʉ���ς̉Fr�sT��pƌ�<�\㓆Y�T̞,̝hG�޸��Jp���8zy���y�x>��9��|�S2x��%L�S�L�a��,F����ˊ
e��_β��������8U}��@L�g=gQg�L�.s�>��g_y���=h�ʮ�>�&V��L��q{U�9s5�9Qq��΂�Q?�)!��b`�����d�Ω���u=p�!���1!1A Q"0a2@P#Bq�R�3S`����?�3�:P��~�_���VK�+��?��|G���#�G�Czg‹�~VR3f<�oϝo�>y֋+Kьc�_UGz�k��>/���X��l��~x�2��ϖtzؖ���6=_ٟ>D�൤[��鏦��<y������{�oG�(��e�_�~�F|��{����_����Y��E����ٝo�hf|rW��ɔ!
�^��ߓ����cҾ��Ω��"�Y��4�+�~����-�V"�;P�H���M���-,��_�y$-�C�G�i��9��z�ڴ^�5�En�ƭ�V�oJ-�K(lTX�6�	nr=}��Ȅ?�^��bE��OޯƊ83�Ҽ����pN�~F�-���[��,ɓ0cGFL�9;�6+я�x!�E��B��~�c\~7*(�Qn�Y�/�鷑n�g��=3ؖ��!&dRƏKҋ�8+�:Fs�g�1x���:я��xS���Wכ*,���%1Qb�i�\�����WK_C�'��ܼ	+FkDĶ�W��g(em��h���_ȯ��3ص�������*����GFñ�1�e�lE�,�6^�&1������:/ο���-��:=��Z�тصg�!=�I�<f���,iE���=���z&:��$�Ћ��hŧ����I�U�|�q��Yڋ�l[f$z)�-�]�O�^�;����n'���]~y�ǃ�W��DDK��Nx=�_�n���|��[.OJ�(�X�,h���ZX��%!t�yg"#y#����+��cb�Z?�	�yg�c��:���z.L�e-+�|�~O��=��2��[����,%d�إH�	�B$YzZVN�Wܞ�Q[���b�E���c(���0[�Lc/�	�sx"�%�k#xD�v`���X�"[�;��l�_z�"����VY$?E�L}��vs�y=i�,��x/Fu�8�grC3��c�+E$>��[�߃ܭ��?�W�8-��Qf7������~<i�s�'���<���`��"�:}6J�0*�&�f�R[�8BlL��q_�,�G�-�	��+��P�D�q;�^65��כ�<���9�{�OG���O[ꋑ�(o%xX���K-��'��X�b��iE�F����K�R�]5zwe�<���Hl��c~NC[{���~M�Ώ��tcEb(�+a1��,��޸%�&In+L�(B{j����G=��gƊB�:]?�%.���K69R�U�H�v��`�ۆgD� �<kr<	��JZ*u��ݕ�'���[�֞��P��מ|�"Ւ|��Î�����h�������ə�1t�>�X��iGnJ�͔��!ڴ4��ɷv>YBr�����d���L���pS���(_F+�4Ʋ���Ώ�l�*)cǹQ|����	#�Ea�dyb�VtrvĊ�M����7���E�lr��h����/��H|�鏥#
���:�r�L��%���?Mc��V�v?��kFX��bnǰC�O�v�GdI�����b���(�_�T��w%]�b]Wi��9<�%�CV�Ң�$�h����HQ���HH��݋���s�%���$�IS�{3��c��н���/DV�	��%��L�zؚH�I��/ٸ��;�wY&�!��Qcgs�.TSp�_f�Bj���$��Z%�.6&��1��~��ڲ.�������z#�&p5�'��u�ou��G��5�Bey�e�:4^�X�x$�{}]�"ٍl�iKK��6+��HH��.���l�=*�%w�=Ev*�+tm1�U�K����:;���Б(˱N�BZ|0K��WN��`�$��Yd[��[��N��j��ڝ��OT�cC�ģ��|+D�80^��St>�c�C�s:���R�]D�=<jgm�.lUi�*�Վ	t�M���Җ�[2/��V~K���cd$�W�]��UԾ­Ly�,
XcXb�K���Pԑse�4��4GfB�1{��_ӛ�5�i݅�ܿ��ύ�n�v㨲wm�E��h[�I�$~��n��,�jh��[�O�X�i���]d�O���[���'��ե�)��K	�4���Z�574.�lMe�+��T�Xd�lK�Q]�}Ju�/g��]Dt�;g�X�4>�ؔ��ǵ������z�i_�ڭ/�:4�)/;�2Px-3�6dž���V�9ee�w<�QL�HI�(��c_���VGT�"Q�3�F-�_8[�Nr>ٺmP�Rt)*;0��a��H}Eމ�_������&��~�^��!W̏f�V9G���9,O?�ش4��K�轷󲿱g+�"D^��e��t���������5zgN���鬤'���ĕطe+���{�����[O'N[���[���.���u�cR�I�C�.�Ib��˃��S*M��S��$�.��8���5�6Z��N��>���%݂�Ʋp�>V=3�����k������yV�Y�q����؋(H��H�({��W3}�����N�oC_9��J�ӶFK'�K�c��(�bo(r�^NՖ4�<��
�O��FJ�I�D���V5𘻰8����.�탹gq�?Dd��έT���l��4�}^�8�ؚ�X�nG��>�z�ӟ�pg�Ĥ'�ޖ5�C�mS��Os��M!!����Mn�wdKMS��Q-��x%Օ=�d}9�EJ��`��ΓY#u"�u����mjb{
.ư$�;�gR.�)*�E%h�j�����B��'�)~�_M�Yf��3�/�|�!(��!�4���2�m՞��1�q���yX���-9/��ݣ����Cڰ8���>t�T������u��݁G�4t��cbH�j�,�I���+5�=M�X?I�	��4К�-�M�
[�I`pTN9%������\�T�1�BH��K���%ҍ!v�*����_�w���XH��VI�J�K�Y�3�W�����E-T8�by^/D��d��D�F�Ԓtb��,�)R"�oq�Yb�b�Q&�,N4�.��JGI�t�{(�G�%��7����*�$�D^Z"�qc{�t>Qj�'sى:H�6Otu�.ȼM�ذ�ӱ��������$�6��ٖ�c�/�k�I�>�v�
H���!�pV�1B؊V#��#�[��hc�O$�&��P�ą6��L�v��:Ke��
V�ׂJ�+�-�q�˳��ȗv��+y!h�K�!u&�e:D�d��hm�*��X�"Kc8'�2u�$ձw]����>OZنah��B�3��9L�ז|:{�t����#c{'v�b��;���İ�tݤ7�.�+���:�#{���
�IgHǑ�Y+&�6��6�M�y�%_��S����?KиC�Ɩ�WgQ�j�થb�l��Q�'�I��",�$6����+#b[#�L��&��*�t�iF4�W�}	��Z.T'��GI$�)7t���H����cm�1�O�OrّbBM���:��W�K
�^��S�`�[s;q�_�K�RŘ�]��X%��*GT�K|#�����2��kvH~�M���J�x$��VI�����Qb�X�rt:"Tc�[�`�::���ѡ�|�Ƨ��5b��|����HRi#"B��:���Kve���(�Orl���gO�Qy���Y؟Q��tUCd��ݱV���<��%����`�'J��or)�ux�r�?9'�!��4���%Vv��&4��S���k�tℚ����V�nz+q5��6�'��(w�����K�g̤ω����3',��Me���I���c�M
�"�2{�*��[�A�����d�noʼ3�Dn���GVorI�E'P#dR�$����xDc�ɵ����O(���'��<�e�?��E!�M�Ш\2u�[��Z$�GJ���u�6�B�$R���B�yW�)yc�ƊD�$�;e���؋���~ꎣ{�F�N��;�BeVI��Ζ͟����k"高�钪l�D��B�:��f�]<$K�:�o=R7]?��n�'n�ΔE�$��M���V�DM
����)�z_%r:1�[�I�Y,�^H��e:8g��M���$���ܨ�����B��:={����v!�+;QV��:kr����BxL���6:��RY��o��rv�ګ�T��U����t��}f4�$�GU�>�]L�t�坛<�rOr�W�%,A`��E6NX{���
rZ.;���]ElJ[����{ �dd���{����-�?%1z{����r�6�y�%,3�4J[1grܕ�;"|p���TErB9cKr�;G&:�C��gr�A?�t��/fJ][{� �����w͒�<l(�/6K�C�Tz&��O'/c�7��<2�p/gk�#|�Ɂ�0K�&��6��=�Bn��I�(]�{#9"�c�
�p[����f>�?��ݑHxh�t.��rx1E!��/D�$�C�O��V_�o,PS,Ka��h�Y��E��>Y�WI�)�>�M�}<
�I/���%�#��d#�nؒ�Q+�u7Q�Ջ����F�؊��QxK#Ꮡ�$p5�����(��r�g�<�HOsJ��LQX%6(�ُ�?�}��"�fEE�{�+r+aݡ��چ��'M=Ě�������ji�W��.�U�^�Me��,�h��Y
�.4G��G�/G�!5��9dZn�)r(�g��%pdKd`��E�FK�V���.K͍rR���b��[�a��"2��h��b)V���\�e
,�l�=@���)Ыz8gk2z1��#�ضCL��
�^X�m��[!�G���x�]���i[-�gI����iM��Q{�<2��E���%��ik%[��X�g��I�Gh�������)e�;�R�JL�M~8�M���TJ1�-]�%�"���ؘ���f�H����ElX�,Qݑ�#��E[%גm�����%�t��G���!{�֎tE*BBO+"�����<����,�H�b0�RX.M1$7����x[����ȼ�Q9:B���%���c[�Cֆ�+���=1�KGjȣģtJKio�k�2dltޔ�ŲѲ�X��"K"�H]]̉'ct��o���69|�I�p���=��IP�ؽ���D#�,��N���kތ�M�Nه��v˽J���=V�sdl������Q�i����R���e���)��Id�E@}�"\�������,B)i�8HbZ6R;�E<!Drx2(�m�>��twy%=��/qV��{.�b1�����g�>I<$$�oJT)*�gV�5��os�4V��ձ5h\����"�x���Ql7Ʈ�S�M��y)䋎Jر%�,ZYB��E�>�UGȡ3?}}���
�3�ʕ}=�
�2rV���:h�V�DwI��/�ٻ���c"��&�a�yd�:�Y^JΊ��O|!.H�2w:)|�;��ڴ�2���Y7�&���NF�	�ӳ�9#�&��D��%�QE�Wz4X���^W����6(��H�2�ұ�B�����nV�g�rv���&VlO%�O
����{�ζK}��T-�lKE�m�LΏ��lr��I�|��6S>#ӹ"�#Tw`|Z��c[}i�W�}�T��[if�*(��\��Oq%��H�^�Ȣ�9nS�Rb��(Q����Z�p�%�O�i��"�dn�։IRt�ǒ�&��E�GiHgP�:v���K�vcUT���/�)���o�Q.Kѫ�w�!2�߅xQz/%�=h�{+�ĵ�Z)�dc��;�ؖ�>�D�]���X��Cy����;NFv�{�N��nV79������C��ӑ�V��
]켟��Rsgn�\i�=إE����%!�I
d�1��=���x���ǝVX���G�э���v��Ș��(�E�E�)*Db����-��nz���;M�M���K��.��$R��Ԏ��cZҝ��7=�$����ۍP��>5Oq���跗�0F��T*#�H���l?E�3C�go�ߕ��le�6$^�YG�i~+�Vz����HK%�P��G�#�WC�E4.�舮��cݍ��_�0�"�E�#傝�����-o%������D�F3��.�܋Dzd���"�Z;U��e������R�ʼ1�����Z^���E����g-X3��R(�-U�D���.����Yg0(���|��R�N���������MW�G�V�huGjҋ��N�Y���"1�d��-����v�G�O���𯲼l�Ǣ��濁��Ų)Q{��gLV���������X9��
%lr���������c�4�Óp�ȕ
��%x�Y}4�~��[��tׅd�5�Z��=ij2��,�/c�?̼pZ�1�O�_:X�����`��8Edv[��$!ȏHlQ�[��ܐ��;yCb�[��K"���>EȻZBU�O<����F)^�v�E-ch�!��[��B��R^J�6�{DoO���X0`��`ƶ`�ŗ�zV���$_�O�:`[��
(�x�����b�"=>rw7{dP�����1�������
?9��fZ�����'��K)�(��p_��\{ˊc8�Ȥ�jV�Y�Lk(�
j�{�Θ0`���ޫ�=X��E薗�_U��N\��.�N�~��6�i��J�}Twu{���V�nZ8.��K��/,O{��+tt戩�Fp�+V6V��z�x^
?#�����?GQ�&0Y���L�э80ayf���Z1��z���c������&�$_�4���wE���V[B_�Y��Nܝ��t�0[x���l%�Cgl]?9�we�X�H��w�=8���6�����3�4l����(�;]��c�4_�keNFњ���BX.e2�q��~�~�䖌kZƲ�I�kK�x�N��ɏ�jeڞ¦wF��mR.Q���Y�EE9�+%�I��(-�������=�u��t�G{"�Gl\����\��|,�ߕ��|�$��:��
Ҷ>Lf<��-
���vw��-��k_��:_ބ!?�z`�F������ē%X+�Lo�c"�+c�󰺓BrhkdI�o�zK#��v:(�-�I�؏��:"��l4��^?i�g��3�H�d�E:�Ligţ�z=l�2`��{�!�\����xy+b�T8��&���w�O�kL�-Ť��
z5��~KaQXB�J�Q�H�+O'ɱ�IqBK:X�ۣ�s#bB$����}Ė�r�ʲ7k�T8�zc��KET�f5��kL�����h�\�S��ޔ;=��hN9�YE��Sf~���ťihj�c�����-R�QY�m
��L�E$R�$�l��.�%e-"�l�VX?I~F�r�q��m�%���[y--њҙ�
�c,z'���'��ǥdgk���[�a{�%�H�7Z`����Z8e}գ��W:c�͖�-Q�3�DW$,�
�6Zp?W�~��I�Ƿ�5grMi*�Ҷf�u3�T��
�R����;�f����#��-�;��nI���*+�ckLkE�E�r�\2G�1�w2>Bg�'��Gt͵oa��C2s�(h���X����8COR~�Δ�xY��ئ8���Qt%�;b�����g�)�9Hka�p4�2p�u�#��@�=kk;G�c�
Q�ٍ1�$�wX/J�1��bZ-���h�$5�h�2C�Lv?E�W��_�z--�H{��E:��+�kh�iC�4�%H�D���K�R��!{q��Q��gl���d�T�f�k�ګW�1�$��OF�?4{G���I/D�J��1�!ݍZ2�z�օ�=�bH��;�B����>m�j�6��(��]UE�#��Ֆ�_21�ݒ�9]	:F|jğ{-��.����u��UEn��"|��^D��b�#ؼzz-W����=��1�?�~M�lr?-�~	h��K�M�%"�%5gl�
+�Q}�;�(�|E%t.�ȫ"���
�H��Md���wĸ�֌��(tW�D�)iX{T�#x+�+��ߍ�W�z���O���D�ѿ^�$$�����"��9$�l]I��͗�LK�g~�N�$�Q��3G��nYm
��V9:Eo�&<k�B�ߏ�Ț�:�w��>
,�$�>Q��V�kD!h����?~M�۞�E�k{��.�W��5���.��I�VŴ��H���c�M	�U��6�.��(�m��ݲ�HO%cK��񿺖Ŕ1��ŝ�QT��f���ߚ�G�G�O%<HB�z�j�	x3"��ޕ�^	(�p��&�M��6��h�*Т�e3	���Ӊm��
*ܹ$����V)[ؽ�zP��	"��מ<*%-Qz�j��t�yX����$-'�Ye�??R��R,ǒZcD!�KrOrݑgK�A��N�|�e38zg�b��#%�����0��cX>Y1؆�E�r$$!KaE�;���Vޕ�B�YG�2&�C{�oL�ֈOJ���hm`�Oz��cGmyY^9�0d�;�{��/Ӫ�"�}4RM��w��+{�\�{-�o����v�7,�r*z9lF���r�c��!oW�Z$^���E��2.F��>|{:��>CY+�Li�-ޭV���P��Q~-��ѭ��:�$��+�Ym�v`��qInTR;��N��g�M	���̨�endNXcmd��vE;1�6���b\�F�+V��ib
iex�Z�B_U�cʴ��:g�:"�{_��V��E��/:F��}Qtづ���ɹj�[�{�[cl�a&��^�Lq��\�Ea"[�{�B=
���hM
,���L�O���T'�R/���ӟk��Z�+Z�+V{��

�M��[?VcrId|Mʐ�
��Jؓ���N՝L?��y���۸����(��,&E<�q�Ǜ��V��fGv�3�>t_ft��2g�>T_ُ��(���"�R;Q���<n.�e�EU��b��$VlutM��%M�(�t���:���8�[��>��5��&v�1�W��ѧg�;���#�o�̏J��c�φ~�սh�o[�o‹�6|�B�GlY�bX>XP��F7'�������:y#��T�:�N�',�V$�^�%��"p��E��cG�2X����ct[���J�����_N~�y�Zּ/Jִ��~i���4�ȪŹf��ک
e�[ ���/
��I����sgN,��C�w��#d��M��;M�a	
�"�~7��g�3
��E<=�t�n��辊/E���3��
h�/J�
8%����4��*h�hv�)��B��b��n�Clm�#����dQ���o�G,؏S3bXC��|#����Ƙ���Q[���6�J��ƔDOc����*�kfP�Vϊ)}8�h��>�k�ִZ.%�+{蕸���53�)�D�'���'E�g�;~m��魉KdI,����d�H��|�L�	
�ȧ�K$��PccC�D�:P�����be#&��0^����,�O�h�-�G&C�3cr�lV7�(�-�|�+m��GnG.
t�!HRx[
�VZPy"�>Ԗ��TX��#��H��<2L���E�%��fP��
J�T_:3�rlgJ���ך֖�W�Ą$cJ)	�a]1,	=,Kr��E��X+r�J�rc��؍�=F��E,��E�т�ҋ�g�V	!�[��(�r{�(ɓb��h��g��W��쬗���靭�F,�͖��%#�;���l�݉�K#c�ݶE~�<�F��GФҢob\�P��Y$�F5�֟���n;�i�-Z04/E���C-�/K�hz^���ز�"��RC��$R/Q�"+�5el6.H��^��(�$ݤK���ݕ��ڦ�W'�K(ƿ�%"/��a5Gn�c�S;�=ҋҌ�`i$%��}99�gllUgş��n��ȸ'Li\��E��~�&d�h^����������|/"����ִ~�Ռ[����8%nP��L/�a^l��OT�Bh�3b��ƙ�ݡ=��T6�uE#ؖ(oa��f(i�o"9��1�9p%���}
2IdǓ�sfm=�Z2��)��2`��H��ݓ����e�[0Q���Ñ[vQ&f��4��3lCh�
�M�f�E�*�3��KUȸ��g�sE�����W���z��tb�3z6�`�4��ܭ��Ȟ�x�߂cܼ��;ee���oV��Y�,�/����themes/images/victoria-shes-1096105-unsplash.jpg000064400000320032151213255670015245 0ustar00���JFIF��C
	
		
$ &%# #"(-90(*6+"#2D26;=@@@&0FKE>J9?@=��C
=)#)==================================================���8��������/R�W�%K5�d��N
^����nf��6�;���8���=Q!Z@�=D��4�9B�Z��V�qYKN#i�֊:��1�h�O.
_G���Q-R
�9��ɪB�&���)f����u8K&tx�"�l�J˦D�䁜k�A`�����*2�q
�P�,�iPE���E,�8��#Qr 	%�8�� �R�z�.V9E4VOe�AC�,�HB�8iUFU[HP��D*���!PE��	�MQ��H�cR��N8�[�8f���R
�`�����9#OJf-�J�X`:2�	a,��A��MX�3�d��y�\ԒCq%�U�z�y�M
��n��N.X�2��b��	\
�*�8`  -Zs�bK-J�*
5�`�T#@40P �2�ji���m@@��2��`���hC�ff��
��%NXN
J�(�$��J2
	��F^Zj�
T3bN%� �d��˔%%XC��f��5��i�܂j!�f�"Ĝq�*r�Q�U��tT�*$P9�	�c+�$���تG#�:��*s�֢Y��Fm� #��k�f�^{U��Q�v��l�TQH,.Bբ3��R�0 �*q�9먗5!����Y�\���
�9$��P���3�&��&��t<T�R�8�3v����@3Mqf�1EdECi�j����Ʊ�oT90Ʈ�%
@�BsSB���}rd�
�B�f�N2�N�K�É���]d����Tm��0��T1���f�MX�f�e�@�U�2�f�K(��QK���)�B+^��R�J���b��� ��R髩���ʅP260�	���!S
6�(�i���E3JLh㴰R,47&|ؙ0 �EZU��kG�a��n���J,]d�%ҋ`ł�����ɡ�H6Wj�;B*���4Eʭ�,\\�C�*Zj
B���P"��k��b�r�Ӭ��^#4Q���$���*l��y�j
`�Mҁ�Th�؎t�
�k���A3p�I#!�U��$�Αe�*X��=c�z5�l���E�B������d�*��-��$�.�	Z$)�$�T�+T�&��,�N�l��b(�v�aa��LU�+Veef��2T9P�G�K�H/����
(��H��C$�Bh�ذ�1��c*镝F���\���D0Mfł1&����S5mg@�"���K
T.��*�.��U�*�٨�º���L��Y$��̎j	�g�$��5�F��I�\�Q�W �<X	��A���5z�5�}
���r�/�F�oYK-@(EŲ��#��Α,â��V24QC.�L����e��f�QǓ���X)�6��Ι.όh0$���6`�K �,��H��$AB�3�2�GQY�^h79
HVDkM.�]�D��������6i���X��5��EK�"� �f��`M4��]�(��=fQE\&Mi#�u8%�B��mh�N�i��o�h免q��5�4Qxͷ��W�~��Aْ��K	'���!�5	D+VQ��EPd$E@�Hӌ��SSUfZ	�Nƍ�R�s�ډ��@i�,՗����#Q�kIMg��KU
,�#DȂ���������:.p`lѭ&9s�~�����储��Ar၃�A�8�g,�2c�d������
�2��\���G� H*U;/���s"�+P��r%gܥ4(b���qB�5���@΂��,ֳ̤N\���4�
�H�3
�K�AZ���I
8H��2�J8�P��h#	ô�uȲ�Ѵ[/<�H�L2M�z v�*0����s�s-�2�2��d=����(�exlkY �,q�s�ٸB�h,�B�Ă�5cCX�J�]zU�� �UVzkX)D�j磙ݹ��������1 �qF�l�4h�C���D��F�d)�b6�@gev�
��P�[7��*���
�����B�:@Ȩ�Nh��p���l�^f�����f�;&��)���>t3OYl����V��(IĴ&e�����
��Y3K巨$�`��	k�,-��v�=JMM�3��Rt�6�����a�fv��h6�Y2$QlQ�da�dL`p; ��J.��/\�
	�d*�)vBY��L���-��nņ��V'@gIk-�
01A�S;_C9I�(@M2�lh�sb	
�Ʋ���u�=�� ���@�8���RX�
��j�X\F\f�aJ48r���Q4nsT���<���}���=6zr�p@Δ�9k�m�D�j�K�2����y.g�D=Z�@lȫB5�h�i�l�פau�j
@��*�V��٧����A<�Ҡ�
A`���������!"G�Y}E@�gZ�����+Y�\P$tu��B@D�%�	ņ�D����](9�Vi���#���s��K����3��g�|��m��Df��͊���0m11�E�s��
_:��h �*�a������P`���K��
=
e*zIY���Ii�ʵl�,1���%��I� ���}e�j+�_XuF���,ʁ
h��V@,�%G�)-��.r	��⃖+)$�<F:m��������y|���/W�.�3&�"���4�5�%X�b�sB��A�b�\�dD��5Vw��M�G��}�>}�E�eV�\T� Yo@�.Y�39�X�\-.jd���r:R\`��4��4Y2\
��,�G;��P�X�L��-�`e��B���S�)�V/KAJ89(%�0�������5��X�����x�JH+nP�|T�砹�(P+O���,0$Z�@vwS�-����ě0�ƥ����j�-6Y�@�췡���Y�
�R�aL�����Q��Y)BZ��Y�����@������V*(t�ݹ�j
�
�.E�3EL�2*8��B
���������bt��'���I���؈"�����K���5�!���,�kH���gӇHfA��=q�V(B���	��KKd�����s!0X���L��KX&j���E���RQ�J5FLAR�As��B��Ǯ�|��P�P��A,� H�vnP�%��4h�
P
HX&�bg�KU]E�[�O����Y��^�&��Jb�KY�e�`~��,�Gh�Y��g�'�Z�h1�rs��@B !���Vk˴j1},˹���O��h�+e]a��$k�&X���m1�	��J-��,�$!0\��3��.@	 �s��(�I	R>����*���<�..�2�֤Y�h0X	a�mo?�����9~���`z�7Р�A���B(ةB��KV��Bhu�κb7@���E4�B(h���05U�AhL�U���ض�\�5�%��_1�gE�Hd�����@2���Ud��nS��<v4���.A$�p��j!T�6,\57c��&(W����o8Sq�.EgI�6~>�U����u�#���g���<G��2Ώ�P�W��B�,Ӓc˥�3F�q�!�b  ��l������Ss�˟�ۧ=��dI�h\�!�I�k�/e��	%����b����MX�]g�x��4�7*�r�*�	�*@�1T����>6h��W&u�HJ���3E�
�Vw#�^Ef��_C��Ϧ�>o!��ӕ����(��,i*#.���Z�e�V��j��Gf4���QS��dM/K�z,����;�#��Z���0E��Y �����q���Sy���;A2�P��0|�8�=���/6�qb#\�a��)V����:�[�T�&�Ϋk���%EJ<kO��S�=uf��'�Qc�z�Ι�6jqA�@f�P�ɓ�5�.}u�Ih��!�
hl�j�T�����ƽtz��m�G*�+�|�	כ2t�ͨ�洮T�yG3�%�j�f�$i�=e����,Xr�	gI�fS�,�RN$V.E�Z��"8�P�P�d�TŪ�P�8־4�+��D��=P�3D:a���V7���?O�����[�'�)9ONXňţ�$!:S+%U6��Ykm���d���֓�K�y�rz,�������.U��߂�����=���I��L�g}�d�T��t�?&����,�1AYT�C�l\��`
QE ��B� A�C��c�OO��ǡpv	A���n��+:��Xd�ʝs��y��]��UZ�����1����Vu4�pM�>�!�A�Qe�)��+/��>o���I�$"���V��_3�J����i3�*g�Wʬ�Z��\�] (���	fĔj�ܒ�E����f�X�����5d��b�P�D�+�{]=?7�C��L�=Euь��$ӸUr�X9C-)�cO�5���]q�f�H6�/O������9���gј�%U+5�pW��U�n�I3k�e%�т�g7�x���}!���D���2���O/�o��R,*����*K��D[I.X�|��,�\�
P�5j�Ѐ��zӄ�5E��KR�sV���*X4�ۏOE��Ǫ�цu2:=����)ʤ��%f���Ȅ3���ᾭ��M۟�����������oqǾo�̟N N]qt��,����h��3cU57k����J�rb�L_�k,ܶ�F
�JB�ue��(e��:S�8�}�g˱���4�2�Y#Vɽ*C#ip̕�3B�BT��FRe��%Ҧ�",1rF��cU�tq��G˧���+��
og3W�4��2���4��ᝫlU6���)�icQ��o�&F�Sh�w�%�<~}�6&+�3˿���S������f�Z4z��j@M0��7!6K��۔�U�����#n>�qU����6Qr�	�o똗J�����^~WZ�#]}ty;���!�\�ϫ�;�_ ��rŎ(#<vuM%���YЇi�2����Ŋ^ u�^=4��<>֫�ϫ�����\jT�α�/+\�}]��4Bk��]�zc{|�s�ҕ�����~W�s�O;K������5��5��g�'z�m���fW��i��>?���ζ�ms8d��/���T`�+]
./=S�\ͥfe�:d�5��}�h-ϩ�3j��HʧWF�u%t�H�/��q��r�̖��W�	D��V�cKŁ�<ĵ*h�_I��W��'�M6�����u���e��)�G�-Q�J�_�!��ڂkN��t����e���+��潰��v���n�:r��E�����9�5r�Kj�S��gy�dM�����D��d�Y�֙�%�C���γ д�vg��˽�����ך�j���Z��P_Kp��at��\A[I)�h<�]�4�^jjG�R[���U�q�Ez	O���<���zk+���y�y{�:��]b�=��ܳ��ϧ���/��{OX��IR\�J�QR%�����tƕ�����,�yE�l�~��^~���$��<M�6h���H+F��
����֭'����u�O7���p�5������V=N��s�5����{���b��R���j��Ⱥ��++�!t�PAŴ��b�NS��2�-Y���PUAĖ+,s:�_��?��sK�(`��1.��Y�^�v����9��̖[��o�.�u����.���\��/��\�6�p|ئ5�o�Α秺f��7�;a	{w<�G�v�r���b�dm\JX�~=���ь����D3nx�������l�,���9�|���KgG�����ze�JO�c�;q�i\�˔Z�tp��GX	_�Y�m$�!�u�S%a�Y�8jMK0P��Nξ����<mo�X�_��<n��K��{��7�o��a��TA�a�O"|�����C	��zPC�3�b�9�ae�V}w^'�_{y�����ϕ��SϮ�nVY.���ӖV��Tf��+�|���g��K����<�y�}�}��E���ףܜ_�ښ�w��}&��/�q�ݹ�W�9�u�$�M�x���t��L�Ӏe$��Ad2�e�i�5ΪU�k�2F�@�̨�F��%$�J���+�אq��)Zb_K��:��=Nz�=Z�u���j[+�Ǝ��|?o̽���+�:*��J�	�yx����C3;�OCߏ�����'����f�L�r��Ew����j� ��]���<����Ч.�8�|�7�N��/��MqK�s�沶w�n��ȥsY��>����h�kP��qS��5��Z`{�W�2�W��ҹT�@8��6�r[T��H<c0U�Ǫ2��)��h	c�����.�}y��:^�J)t3Gߓ�>�e=G)wc���4>t�2\g���R��X�Q�--,��=G8�,��=8�*�7�}�_�z�y����|��A��2��y�7x��ݎ�|�E��.n����OI�.�������yK�2x���?A��|�k��U���8��o�����;ߞt�3
4x_k���Nw�zfqo�D����_C�����r���fEڸ2
�<S4hpc���<��qR
K�s�}����lt�Ӟ���\3�Ox�돤����`��q��!�W��&��N��w�+�b"�iN��HHT��_q�͟ôG��>?�w�vn���>��fcY̻�ѓ�ϯ��N(z��8ύ_6���:���m���NOk<��Y�����#��z}e<�1�����!sO�b鍝0�r��;�C��gBb�Ǡ��s[�ɜ2k�}>*��*.8q ��c�E�j~eV�DA�F�vW��9�q��hS�9r�e~�$�>N��F�}����'l�]o
b_��M������>{ϥ`�e�VKn�%.�eGY�{�������o�����^_�n�[r�y����nW#|��k����)yu��Y{���|�N�������5�s�SQ+���d�Ph����sߘ���}�N~5�Uӣ�}[�����J������7g=|Cá�cRq����|ȉɶ�-8I:-�:�Es�8�ZP�R)6y���?�}0HC�N�.f�az1�\�����3�6�cys���x���K�3�}�~G�Ϳ�����x4�ǃ�|��Y���R���Ӓ�t��rc���m�<�r�
���|�@���:��O��>�{y-:m�gz<P�pև���>���7{�u�wGt��u�ysf��N��'�.b��Y3��ٹYߎν��(�b��B�$i�n����WW�����N���^��n�<����8�cVYum,+X��qP�8�Ec�~~�}.٩�)���f��+��\q?���b���ó�����]s��/������[_W����~�����ϥ]޿;7\�����$�J\d���^N���X�7��sM�ѯ����?�����>�|�k�0p�~.�Gӝ�|��O+�{�6�^�F�͋���nyΙ���G��<�sB���~aA��WIV���P��f��}����O�D��K��G�yd��~[O��G��;���}4-MiL��Ô҅)�,.Is�(icL���n���;J���Y3��1_�9� {�u]_�y������5��hv���}{�۵���'��a//|�^�8�ӷ��ϦN��5SP;��ǣ��̮;�G��O$�s{t8{I4��Go��e����i������%dzcϵ�gb�O���~�,ae��G�~�,���Xz��%VKf�{,�n.w�,7\�XG/��5�O��?�U&�ۛ��ix�`s��ף��~��a$��V��hb��@B�c�I����z#;��nѝQnq�ߞgo<��<��S��~Fo/O����]�����I�˵��1�}=������c�|ߡ���y���͝������>w��]RUuԭX$���=�/��w��<�y�@�gMr�1����k:k��:\,T��E��y~�s��B�{�~�G�B�$
�E��ł�փ������Z�Sf����y�=�Z�>{��C��K�œ�@*��W<�{�|�iR�#BHVVj�T>���j�XT�IR�I>���b��;:��^x�^��
d����}���ӧи���1�>����=
���g:sx����]_)��S�Q�nO.��#�ߏ].,�]כ�}/���ފ��ʵ��B���>���
S�λ�H�&:3�ױ�*��)zO$�O#ߞ��yO=5yMN��DjCW��@2�b���j���~�ɷ!��[������lW��������/��e��[���2���G����j�(8��f�Ta�4�4��ʓ4(	z�`���<]�?~v�Ҁ�w�o�s����[wm�_^��ק/���:=x���:�������e�~�/G��]��<�N�ھ���VoO��3�E�ֿ�ž����xѠ�/����+�_[��|��Qx�R��z��
$��;$����z�V���z܏e���H��ԉ'%�e%j���wwX٢4����x���y;�>j)��˿Q�3�j��4���gS�qLb����1�u��d`���!�,�@�q�=����;�Om���q�Lh�Uu��T��_��ݩ����i�������yK�}���<g��?�����Vz_G|��\���|�~���~v�o&o�X�G��C���yc�[��q��c��z�G��^�>%�MtP=�!���'#�X��_��솱��b������HE�Z�!�~��m�rk���C�ٿ��G���[���+���9�YK`�k�yN�99hA�:7�Fh����d�t�b�ʒ{~��^��~����^?U2���Y�_~J_6�."���?�??F�^�h���o��{���K�ϫ��o��L7�.�'��s��|��yvxcz�������{�&��_�?�q�-������ӷ�N[����{��GpJBB�bi�+��5��;^w���g�ʛڵ���?�cv�ɥ�j!8)S�������]�N��Y�&[��643�X�=��&���k�s��'w�1��뚫ڕͻ5h'���a�2�@YC6�j�Qh�R��<݅������zV˚
O;�'��o���_ǐz�
:}ͦ��cד{{�/���o������?y<mO\�?�Ѿ��k�}�{"��LwM�/�=��߯���k~w˾~���X=�������>?� 6T�8 "�#���o{\x~��J���oـ�(rUdR['M���̥cB4�hW�D5�&���o���v玠3���*�L�a�;A��CY!F��A
|�.j"�@��,����<�߹�^�~_J���#�e�I�^�*��������2�3����G�����?K��~�_��_��D�^w�_����g�|�?7����~o����?��j����>_���~�[:s�{7�qԜ���^/���`��Z��nvL/�y�o�u,ՙ��'ǽW-~E�/Nf�
*A��,���l��p�j�[Zl�՚ Iru����ax��5mK��x6 )z1�"ֲN�*�5��
��$p2!�㦩�-�G�ԏ����ێ/���DOQ���_Cޟ9�	n�����7��^�Q�x��.�zp�x�}~o�|���W��_;��>��_�l���~�)�zn[_��S���-�9z����|*y�y^���ҏ�l�k;=ym�'��}��α�^�3J�r�.}��;�g���̟Y�Z�#�5����ފ�T�V�����dy�پz���酺g@�d��YU�[;�o���e�i	ma�=[I��Z�rAy���с�x�B�dƟ9�sU�T�G�>����gg�/7˭�lye�r��~w���C旿,�?����'�K>�c�?�y���=cu�����������z��T�z���ir���1������{�G������w�|�=��Ѽ�G���sM~���x��^/�v�ƨ"�QZ�i�է˾���GMu��اG��//�P�/�>Zhx�d���_�k�����R�A�"�7(y�,P��o��_�1.y�H�%��4P.��.=����p�>e�A�R���K�]}͎�s<��Pˏ��{��x>������/���W�쿟֧~^���{��_{�6��.��������L}oa�=��L��y���z�:����ϙ�wo�}�{���?=o}��-�_������²lo���=��{b����&�Jd�z��o��(���7u�w*jӯ��w7�k8�<��jr��Y�^a���2S�7?C�1�7$G�)�m&�ԒJ�U>1��Y{�U1�<x�Fl�RЬ�gKіx㋒\��=P�,X�Y~���î��������Y��<}��oo������zO���������[ޏ���W��[�3��=G���~���������o�~n��������d���?F��s�/�}||�^s~vy�zM��՜��������b� B�n�u�=���w�:�y��l�
j\�O=r�>�K|�O�F�u�k3Y��\��w�C�[��nܲj�����5r?Ʒ{s�Ʉ��5Y�\5�Q��F��������s�H$�Ŋ�}�鷛���>l/'�j����)}>���v��ǧ�z8���W�^_FW~�ݹ��]t�տ���n7��^������Q��/JG���Wx��_/�7�~���8��������ڽ�����f���赇q�+G��n�ϓ���i�J@H��y��y������u��o���<ڱ�byہ���1���3s�_�����Y����ュ,�B$�R����PT��o�%���ŀ8p�"�a�L%.��|�����.P���'w|���<���U@c=s9﹎ڼ�q�\��ӎ��b�E��Ӧ��o�Ӟ�ox�'��������+��ϣSϒ�ku�i�>Q���p�[�����I��{���{:����;��C��n�5��zoX�\�Z(�)`m���O,-ZVh�h�z�u�tY�X���r��xYq�>��������f�:)BƢ��nh�e�$��Ɩ�g�\0K�� 0�]db��u��� `��X�"
�X)}_ޗ��>{���.'��,Օ�u��ѻ�ӣ��s�<���B'���r��{���E�����I�ˇ��keɝf��n�ϙ�����<���S���'>���ɽ�<�.�<�|3:ܯO��~�n7��gz~�'�����{��y�|�}?��?�W���Pm+�q`�ޝ{=���
c���v�=���g�>��ז--��r:c�B�=�b��@h��95e�N>c�x�6�c7U\�pG(�.i�/���\1c��CQ,0\�g�o{��˯��.}C�@ULz�>�z>_�����d�v���˾����}f�z\��Լ��\1���;�O��x7>���[3~S�r��vy������_���;�<��1���
p������M%�xv�i̮z��+���?���Ok����y��\���V&ĥZQ� �_:��כI��;�Ե'Σ��s<ΦNh\�5�N���9h�.\�a���G��E��8�������(Lh`�5�s�!p�K>m�]\LX�YZ����}���SY���+��Km�4�5��7�Kί���}�F�z������~�l~��_Y�>�Y��?W˓�|����z�z���kw���?C���_;�����֯��{�_���-����:���57��-~��������d��zg� ��-H+Oc^�_���w����[:F��.�p7\?��mL�S�9����5$ a��yO5�O#��9I�3�:.!.p`�
=dBF�Pe���f�
�L��W�N���|��~l7�y�Ud�\���~��Vg���>o�k�]K���y�w���~��zO��g��O�y��7���|�式��>q��/���_v���N;���t?���Y�M�S��f�N]ͥ���/\+/�νu�M����5��e���R�c�Mh�?7M�{�p^k+�Lo�c��Liu��b��Pc\��Ǵ����`���ҕ�#Ęfv���Jd�P��e��TgN��mdD/��f��P��[W�����N}=w~+s�-�j+��9�ɱ��Y�=����o=@s���ڴ�υ��~����6���7��w�=�i���~8����}-?]Y��������<��.�n�KK{}7N"�����^��0,m��ߢ�h��N�zg�c~:�W\.�j8X��3���w�s����CY������-o'铏�9پ_:��}O|�n.7k9գ=|)�*�pjK3F�T(P���
��4�1���)�Ĕ
T9x��w����'���/��3U������8M.?kG���o�/F�^}E����������c�3���O��?_/]������o���W.�~�:^oV_��7���y[12��0�s2�|���k^;:1�׹�t�[�/��ƾ)�5-
DAa��_��voo2jw�Eߙza��\BC�98ߔ�󱭬}?�*�p��$�^.�N��0��C���t�I��}f�.q�lh0Z�@R��c�y�my����?O�=��+��s8�[ύ�}�yٍ�~���?�{~�(n�1���Ƈ3|�[�o��u��a|���g����1~z=�;/NKy���<���^�6��M:�IY=7^�.���=���z�|���=��a���L̉���ă-J�$�y�W�r׬�t��D�N�����ӛ�,�4�Չ�b/�����w͊fT��^�3y� �����)�B[$D@��G����86���3�Q``�q�e�C�O��\�6zG�/��K::�O+��ew~��|ߦ�"�Տ?J�������o�A��b>@�j�]��#�[��z.�%<�{9��o�Չ�FN��^� u+�x*�6��c�h���g/���bEk�/��iӞ��:sY%�'���X�9G*qgl���<��ƶ�uzs>�U����'������}���X�o�β�3zg>Ҍӎ�J$c@�γ`@�X^��F��c �FH3���(Ak"Y���ݽ��ߦ���J��5�$eY�{�.��_O��{,ռ���\y3�ӻ��?Q��%�����y=�O9��^}�g]���r�����^!���-�u������L��G��9l��y����M
�l�W��۷6�|��(�2�I ��M���}�˧������1@Z�e$5,\����K�ט��m$\q��*X擒���	�1�#a@k-�F@x	���� �8�%c:�G����S���>�窐T̍1z�zOy��ܻ?ׁ<�[���}o����5�5�9w��E"f�e��{֘�1��¶u����7:�:{���>�KY���w�Vq@�H.��OF� e�鏚o86P	t��) ����Z-lsר����[�;\Ŝ���C�cYsX��a������a��*	�gH8\N�d=f��4<���5���>8f2�&��.x	���8�%�!x�q�ǯ���G.o��p��_6�0���Z��LJ�/K\v�8k놧��%.zc�`u}v3�ן�޽_�џט7��)cQ}M޼��C�/�z�����W:�N:?��c�����ݸm��|wnHT����j	i*q�
M95�|�}���=��ͫ�.ʫ��~Nk����ߙ�0,H};%�3-Xa����gD��T��ed#`hI��A�Π��8�dKA1�<���g��M�ܲ|��^�hY��5.6�:�M�7�h}c;;�+B�r�i�t�Qb��mW�5��,�ƴ:s�~�^��ixi}fu�:�ɱ�,ʕ�?�?'ג�J�	R'(�qaɧ3�a����qkJ�mg�g~8����u�`�s��TTᡀt� mf.G�d-a�k��L�f�+SYQ�r�+�O�V�AT��A���n��Ԙֵ��^hp�\�P��
km�{:bVP��U΄�ܚ�3MJT�f
���iƴ:a^�~k��*��Mhǧ�f\S�狩��*X�C�(��]�����/d���?e�y�%5��Q�͛`�rdb���t�@��d�#9� �A����[�2T@�O5 � ��I����v�v�z>����KH���u$B�ե�fJca�q�+!C��䢐kx���|Zf��4���^�(�P%��2i���&/ej�IS�Ib�Z�
�5/���=+��L��&��Xny���
�#g�k5L&�0C�zFC�lP���2&�,��L�m.�-��D��"(q$�� ��q��p���7|�Gn!��:�
X�Q��3zj���$�	{QZ�5�K�}0����D����r�^�YZ�.�%
qłQQ9z� %HPE�,�����|�\���l5.�;���{j�@K���;E�@0IQ���JH"�θ��
��ڱc�DD��*A-�����f�~v�m\m~z�y�Vh\�2��$,�5�X*UGd؅�1a�f{a��;�Fu�4�s�)�,-I��`�FlX��J����Eb�P�ĐT9e?=�14����0�.P�-�B�iAr�٪ep��r�6���[B��E��0��s�8� �RH8��8���2�~}o�����=NLB�����MJ�������!+sڄ�s|�2��%oys|���qV�"ʼn���KQ/V��W���/\��qŋ ���V���6��:���3F��I˲8��k4��(�`G59_Y�B(((<.w$&��P�^-d)�+.�=�>=�MgcNٳ��ew���c��5*
�Mͷp3�՚Ywx_�?+��ןZ�MV$�Xk�.Rj�vQ���p`A8�rN8�Ňi�+�Ф���0ȱC��l�j
'J���c�\bs��M.A�2��3�8㊕.��P��KAr�e��������ҭ5L��j���j"���)�%Fhy�Ԯ�{�3ߞ~]���).AP�R-rp�
@6�0B��h��,MAb�C
S��ȃT�U��q�u�,Ԇe�j�ѩf�������҇�
���!�X�8��A�K8�$�*q�3��]=-�b�:uHH$�g�Eepj-�k,k+�>{�<�\SY%⤂8�D�B�C�(^��Ѐ*pR���Uc��h �/Zt��A��q�d��2љ�$�Q�f
�AB2��4 R�C��@D�T>{��$�S�.T���8b�A�qɣ�{|���n��)(��[�'
\Z�Wy��=���t�Vk�^�&�I%��IK��-��4AA�pS����HsD��+����a},̵b���Λ��B
�b�X��B@� `��}Ke�\�$�J�q$8�T� aS�GT�K{~Va�,�/Jham�k��+!�\�T!C�8�U�:����t�=r�8g�����X5C<�V�\�FjT�KC����<2�hv���̗JP82 �S�k'(@,�$	S�gU8�b	$�N8�q'.P� ��m�p��Y 2�-B--
=W�JDAE�āFd������P��hl�K0-5X�j���Gd`�0P�E���6	��!�*004H�$�
��ޜPKRɴ��I88�eC��<��b	$����8��B��TD$�AS��ʨ"�qc�,� ň��Q���zj)��X%�(@	�\�!D0p��QZ@�SC��(%b��8�X pb��R�4��p�CA��gAd� �z�dG�.��hr�(Al���3��I%J�� ���qR	�*P)�H�BN�P����"K�@��@�J BnW��'M�3�	E���2�A�Z��.YT(h�.i�}���R3D�(�4Q0��Q��.=Eᑀ���eP FIi���J� �p��)��@�$5��N8�K�qŎ��je�đ,�/C� b���
A "KW(X1b�ԇ�DT�7 ��ꐧ\�PD�(@�t�	�\�P�riL�1D�\��2z�O-fe��x�z��� 5�e"�<���kB�P��N�+��C:�rjN"*ArC"$b��$�(�S�8�Ū�Ǫ�2�|��C�B&mU�Ap���P�"�5IH�)5�!70�]�B�T�C/,Ar�@�ih�Z�~�T�2����)50�AP�C��
����l�f��N�e�3�O:�-W �A�.���ZʑV����,Z��jIj��\��2J��*��)�&�X�����	sRJ�H�#w0�$��1d��زT��p$/4=�ҡJ	�4�%g�\r��qё&`�ŴE�m���+h�d0`O1�q�MIc��,3U�
j�ú��Eb.��X5u�	+]�b� `�Z���II����X�4��C$�$��s�� �����J�	S�d�Q��4�fT���e�3���aRFM��J�-Q�.Txw@�$��TeV�JO:��":�qXrK�U�����C6R��\�qS�l�5% �!.jI�
MA14(�Ô#�\�驨�D�*�@�}�܎h�68����EV�Ze�J�\"�A�RA7$TaҢ듚�3N�4�����J
#R��R[AW+�����Ո$��DT��qņ4x�+^���
jN$�R�QY�3QMR j�\1sBj�RT�a��^��9�/rb��IV�e`E
$�$���c�3T�p�
�\;M�g��s@" �(H@�t�!�dMP�T8��s�,uq'T��N8�� ��bŊP���Vu����8�5*ԅ��SU����T������.�(DEZ�+	Z(�;Ver�	$�R�	J)� ��@���-*��OP٫T,x�V)��.�T��[.�id������9ԝ\I$X�J�X���	RX��H�hP8�j���q7=5b�4)5�!�M^��p@�T{��D�
Z�,�,-45͎���q$��\��U �U�!E����ZB+̌��0@v�5�d�$pAp�E��M��PB�θ���q'A$�P��q%�� �b���4"k�d���J���j)J^�
$-��Ak��X�M�.IÈ��4��ʬ�X0��8��c�'qĒ��p��,i�L�74 ��3r�:eMM�A��@�P8��g\X�N�:8�Ԓ@8��b� `�MR-R@{�IX!5B�
M���dg5@�(�Z���hLCR�Չ-4cY���\b䨲�)�B�H[�HD�$$��0�$��RV�B�e2���$(�Ҭ�6A��(P�b��/�I�q$�T��p2K�3�P�5��3PK<Y�\Љ�����PM�P%�� �H4M����D��
D5�Is�����J�Kܜ��\D�r���
�$�8�
*��8�iU�j�R�(�
���s�� !����/!1" A2#03B$%45@���A�����p�@ڟ$V�=���c.�
��$+|<gN��n|��s���)�`:��Mj	C�6FG�>���|��D}3�
6r�T7<tܣ$�w�&�S�M䆏�9�z������,AƶW�a�\�~��"kOu��y�A�yTp��jw�}O=����>8��Vc;:�e�ʏm�Oa����5���G�G%׎�%G��A���q�Mk�V��ah#���ؘ h9��	�O-�"�uz���O;�jh��B���?��X�5Y!�����<�=�{���h�$om+��Io�'r���֢�l�5j2������P�=0�k�����Dv�n5dvq1����4�oE��ñ�7�i��<z%�'�ja�g��`Y����!��}��Ƨ���X�ώ�E;��a���{��x=��ş��tKQ��5
�g K�E�V���6u��j[�!G��q�s��_���
�_�~��;Ttm��F�.���D:#�ߘ��nVva]A̯�ǹ^�c?b1���������3�Ex�7�R(�$i�!�?�"��j��Z�X�^\��J�t���_�ֻ�B���R|�,Z���1�֠�vXhB7s����0�������c7�{�Pv�<��kx�L�5�c��]��w���"V|��+X�@w���0�	�0
�C�[���.�)O���*��i�	��A�6��3Q�2n�\u�z�>;t	�	��{�
D��24��-�[d6繏����<V��@��%��;nJ������j	�ۂ4��0O���›o��7����S�+��L��1��W����ō�F���e`��`��mJ�6Ƭ�C�M5Y#O��.Џ7nxJ�7+r��Y�C�)�� �L���{�P[_�U�<8��?QE�E1΢폁X��<���,��O '���w�>�~���ac���SO�������~۾��0�;~0��]��e�T�"�j��O��b�wՂk�n#G�P4�C0��6����$�w� �y�� �h�4��ѣ���A�CSn���Wljz����OQm*,o8���t	��/��0�_�.A񃣭�5�DU�Z�� ݲ-��q�-0C�{~ۂ~�A��j��[�7�#ŀC��z��D��@a�ݫmG}�S�M���	O��{��n��<3�S�pk=���3�rey-��Dj =����)+�x5�_�EgL9X={�T���O9P�/_�>�7*}K,$V	&�Ob�ѩ籽�U��6��5�P
Bcz��P$�PXxPIQǨZ{���㰆,��w�}�q�#D�Ռ
__��#A����=�l�ҡ,�&�$��q3Q�x벘X�풅5|�-�@��c��_���D�Q��<��O2�X�`X�#$��e���MʛĽ��s/���տ��[C˔3��R��(M�'��MMhqk�٧�0��'�D������e~�IQe�g�?�
�&&�2q
3��~��~A}?���*(�f�zsδ��q7�ð�5�!pW$���Jj.n�(��~L���X��稆h˩S�lK9�<6J��2���0zf��<c':��`��˳��U��)�V9E��g���jk�kl[_5Y�∩��x���1��0������v�0����ځ���]�X�f���.j�}��?�?Fcd�Ŷ����"���Ai[q�]����!��`�(�aX�(���+"�V#�ϔP�`���1��o ��[��ށ�U�,@R��������	�=F~ӟ–���?��o��9>���\x!1/�_��îƾ��{o��;�#A0F��n|DKN��ğ��}w��c�؀��M��]U�r��>���k��!"�A���<M�{o�`�?Z�9�1��n ;��O���BmK^�e�@G�Y�������h�+�֦�a�4A���G]J�q<��
i�љ��A���5j7��!�͍��y}�pǀ��� �5���w�Pa���OCpF�L[5�5�Y����d}G�a�7m����؂���)�̬�zM�º�#m%X��Q:;�6^�p.��0@8<M@�s@ل�}� �A�T!�[}��5������ˢ���.'U��T���@k~��"��,����G5KqN��u?G��ll����E9���AYi�"��b_0C7�k����0�Q�3�l��M�^yF��{������R�����=A,�#��sZ쮼���P>AcWP�L�>F��2i5�<����T�m���Vz�,GiQ�#�Gٞ�
B`�����f���wr���C@#F1�!�%�C��x,�Fܵb��z�+�mJ�p�~��br-�V5�o일`R�@ ��8�{�a�;7&`��x��F�#� ;�:���Ƣ���Ù�OpZM���'�%�Jw�2��em=�m/��Z�S[�=�>c�Г&�����#F3�R@���s��O�$nf�&"k�,>�Դ�.���e�A6'5�ޕ��>��x�����䚉Q�$�2h����5�)���OӮ�W�p[��7
A�
7ڣ �#c�ע=C1j�'��&�^��4X&�1�Q�j��6�k\%(I�
0�����w���FWMɨ�v-��V�b���a��S���ؔ�u��:�;����ɟ��1�o��=��4����]�]J���c���C1{��P�:�l���ISy�("�`����u�]���婊��^���$x�z#�P�}�;�bMM�p�Og���ڶ�Vؔh��KROm�0s)��Z�G�����f�0@ӓ��:'�\e�� m�X��ڣm���>���n��1ۭ�6�ʜ[>G�p�02ꃌ�CC�P5��g!�Q��yvT�#P�<ks�Q}�Bt<�?�q�8,w+���|H
1�n��b7�vfH4��=)��=�O�j�\�o��>U��T��"/1�C�r�H�7d�+��6��x�J��ں�x���}�4|�saXV���G";���1`�5�PM�]�@ �MP��I;�}E�'�e��|8�}�$j&���c���j8�`�|�³�m^i�Y�X���y!DPq�j2b�<�
���g�Oj���3��rF?L_FQ��P7�b�̼�47ԩ�K3�u� ?�(�>O&�����궕4�oqDpq�Fr{"_��gQ�!<�ZnԀe�0�8ѩ���'������mw��G��L2R��{�܈ ���Ҙ��W��Q�%Ơ$)_��w=N7pl��_���F��J�Ƴ�����+�b|�/� ��?��d�A��2�������x�x>��Y�1԰�/�1������ǐw@n
��sEb��`�7�Ǹk�ي�*�m�_��P�)��_�b\t�[�pp��Z���c�E����]A�F�]FM�>��ڀw�5�B �q���k����h�9��y�(�9=>�Z��D�A��G���0!��+ƀ�h�پæ/��E�
��˔eJ��z��;��"�B'ɍ��Gprq�o`����D�M�v��~
��48�m�0�Ԡ�(ÈG���.���P���G�E�M�ƾK��R���W/Ҹшt,;W�.�n&� �	�
�q����]�Wg'Z�˂��� ��">�`��k@�7�l$v�a��&&�y�=K�nȬѺ�:�f�U��?i��8���p_@�'֦FYɨ��<J(|�+�(k���OnEy-[ӕ�FW������|�Hӗ�g��7�����k7�cq��t^����7;Ǻ���Ɂ�Е1Vw�I�3��j&'�>U�!�k�/+0����CП$�	�erei�}z��<D�p��ߓNxiOoD�N��<����鲉��ρ�b 0vs��ǫ�__�Dk�3�pF�]&�<�+=CE��.�
Cq!�zF��_DingK�bc�;�#=WF�<�&u8u���t�~���m�%eW��.X���鑂+.9�@��g�u�W�myy�W���
��1�b|��X�n)ұӽ@��<<5?@E�7![�6Y4@���yD>3�.,`ᅇŪ�e�W"/�����#�j�ǯr�_�� ��F;�5=�;'ի�Kq�T����V8)��hO]�k��7��<ó�%V����op��cZ-�_Dnx��kfޯVWI(�jk�]J���
��S\F)80���9�18M��+‡0N^��5������� J��%�iA0�E�ZY_�ME����������Ġ�g���P�	�9��������,V�f�4䕨1l~�u�\�[��z�X'�6[�_����<J�#�*�}�98¶����8������y�Ơ=�q��p��o��_��Aۈu=N{��}x�k�83���{��~�tC�:o�u���|Ml�c_[q���W0�t`<�
��)�Uݵ�jYl:�$��M��eV�;-��va[|~b8����t�3͙�v����8b�'M���\b�+*�e���1y�Lk���l`��U.uE6�������U�l�����4�>���}����~6�8��P��>`;��|�u��#/	��g����DXF��� �;{��o
ǯP
�n�N�;���SsZ���tYɛ����$�G�%�k�vD�'@y�M�3�?����㖈�-c�eU�n��NoHY��q�qeVj�\�[���Q_[�$׎��P����K9_t��p�]���|�F?Ű2n���]�&c��D�Ԇ�m��m�'�ȳb�O�o��AJz�UӫD���5�e�F�6:�/֣�����"�O9h��0��f8��/��7=�����������~���{{�V�)X���0�<�&,	�Q�x�hMr�sf`ܣ��d�?Ŷ?��q����S�.i��	�-b�y��u��D^���o��q-��uv��&ƃ���]OR�MM[�Q�С]������Z�u:S�\<��{z>Utyx�#�m��+Mq��l�pA�S��cٴ���%��e�ʺBRi�Z�C�r9W'���k
�|�k�6�W&����5C��ȥV���mt�c,U�Zv�ݛ�U�_���4w�˰�qf�p�.ǎ�:���~�� �)г)� ,
��R���@��� �q���v�у�TU�{
�)�\jnSSfQ�e6+�5��?�i��e���Z|sウ�+J��YN}7�zNX��4Fp��"
W�-[�S��`�ޖ�Ra�.5���U̫~3��mM���½
��6_���@���6�:>*潆�y}��-�ɛqy��^^]��d���~<l<e�<~�	-�C��`E�-B~@��̴��3�k�k�if�
�&%��B[,�a�;deea�k��.DQ7�#��;�~����)�#P��7kq����x!�'���BYQI�`��E��(��ۖ��v�Z�0�3���Ksn��*��o�Hߋ���DZ
���"��R��GP�.^=�FU9����NFM��m�6��/���#7�_�<w0���Z���UkR�ju4m�`A� ���t���V�����s��kv"b>�%�TzR6
� Q���l�WǴm��Q��ǧ��r��z���WϝUH~�";v	pP˰�"��v㪑o�]n�lq�ɮ���gdbܒ��:fey4e�srr���m�:����$�$�w�.�#]��n/}���{;��=�8�?By�P�uaK�'�����_��ױ7���'�f��g�]��^�VFu��Z���	�▋��?����Ϟ�αޚ�L���En7��&�͒���(�n!��(�z�:�3��i2P@�Q�?�����2��Ź�a��R�Z��꺕��'�`R�٦��5g�a>�|�<�([��4��tΥ�<J���l�܇�������C�,����$x�Ӡ8Pi���x�2	U��nmA�hp���%Ө��V�p0���k���\O��'���1Z/�̞�G�Y�!�
>����*rF��2�
iJR���1 =ǯ��OP��c�`�����_��w�0�?Q�3�;+����
h�Y�F[�*��c�~L¨SM�D l�lb�S��[\�8Ʃ�A���O�K���G �G����Kp��ʵ�HdԸ�IU�Khͯ��K1a�ibjt�)��8��e�י�x`�����s�����]՟�P�Gy�6جU���^���ʱ��H�W���)�'J���[�}<>��]�u�i��;�!?�����'��zQ�Ŷ�Ǚ,2f6�fc���_cS^K�S[FUC#��"�p��+/��}^Ԃ�x��5|�O
�.�6��1��__�<��ڀF�b7�&��,>�0�a�1ϸ�s+��`�����fS����)��6�^ڬrƬu�3r����\/�ٹ�kM�A�0����٭ؕ$��E`Ch�F�3��Q����0)���;�������ư�|q�<f&s��E9H�:�m� Չb}]V"|�J��]è�n\?�B)GK��K��?�m/㳵Z>��{XKS`���_63)q]��**N�E��j͖q��pjE�y���j�����٢��[�8�3�v+j�03~Ouvc\�-���!����'�v�(.+���={�:�����SSSDz���E,��������q55�2�`%hK�<l��|�M4��km{�]|b�nE8InC�Xjp.��tw�X������?D��WD�:N0�b�����ſ�vE_��"~����G�7�8�H����d*�hb�=W��zfb�-� ��,LL�����.�j�[o
��cg p�vo�$���^4_��5�+���y���	9[���b��b�-nU�9	��Y���"��Q95�'&��ae�iýߪڗ]jU�Kn*�~{V�g�IL&�@v����c�m���k�/(�_�|[`ڏ��
����Щ��:��������o_���Z��޻
Fے���w�z��7&�]�z1�;.���c;�N<��.�EX8��F:/hA�Ӭ�j1����X�I�(�ŕ-��ѿ��eF����Lиl�P�mB��K���������2
�d�n��F���uѩ�:�S��[�,]�M��m��׿���w��9q���h{P��tp��c}CiflSe�k��<�,
��̔ڍ��5�a�w�+����:���?���me�U��l[��Aϳ4ea��,{N-�ekk�e�~�^�gPE/>���>1(�ڭ�Z�g����R{9Qv'�QO
����nyO9C�?�U�O����j){��#)�%�)����m=ItO~*����]���'O�'�=V���+�E`���z��A@Z�V���`}.�D2�MM���"�uN&&]���_���<J,���Sp9[�vUU��v�":��!����$`�Ⅺ�O��6mG�ct��Ǻ���S�i��3<.�l۪�Oeq>w'��b��u����G�t:����Jj\{�Lk|w����c@]�t��߭(6�̄��S���߱��/ 
�O�k�G�3�0sܧ0�������mJ�,lR;�*��5߮�t��ӑy��q*&����`¥�~k�/Z�N�Z�J��Bts\�=u>\&.���(���
2�H��+;]v ��ڧMM�_�_q�>&��Ŵ::���2���iX��d`|�=�@&7 #��W��7VMu����̈́����J����o�d����/��_I�!��q�9(l�9��u��=7��z�7���'$�z�u����ط��Ǿ�ܚ_�����xRN�Ѿ���՗�m�"݀�Pt-����?G��۔=vW�G����[���~�q11��#e����{o��;��lMߨ�~M�$O(9=]nvO�����&����
��a�����]+�KH�z�LOLuS}�+�[uH�@.5C�9$�5,,���k]~�#���Žr���z�Q�zst��R&;���$��鲐ّBd��z,�ܗVkc���������5���=%�\c�R�J��I:���wFZ1+V3�#$�z&qVj��[+Χ�P6*�g�W����﷢0��_(%zy�e�l�ƊV�[���MY�qe����u6Wq؍,ҿ�H����fKсR�X��O��F�2���Q��f��ig�����{�'M���/��0���'L��8]bb�=)�o�R�|��D���VԳ3㯡`y��?Ԁ5�J���q<4* �㶎���1�]�!F�O�D䐀B<*�]Η~>;
��i�ڜdUm~�M6uE��:�ν-�\[|�uv��	NK��>T��]������}F������7����FuL�� �q:~Fb��D��`a��V��
��&L�9g�V�zm�����`�4��:��'y'
������Ż�Q�lܔ�]��>NbU����[���^����>^l��;L,fʿV�� <1!�>,H(�h�������J����3�C׌#������k������}��~�3�b�\;�7�^�A�z���r-����dL�t0q�v]H)��;�?�8�Q�Z��,Uw����.�iu6j�w�)0z���c.�.�� ��	������lR��2���=?�ʲ���ަ�c|�4Zo�L��p�oB��R�»E�AKH��0dg��(���T��W}�Qp����M�؉x���[��<�D�u�
��
����F��o�r�Lo��w�@P�TT��f����gX�Z"ul\:/����a8�ƽ0�Y����E��>/����ģ'�/�������V���$��cx���y�����O��?F[�3��y��*]J�l�<�yx�P�"[ŏ��7�3���@�^B���S/:�K\��d��Q�ke:����V�U
s<[�/�Мm�D#g��췡0o�izT��z�Nɨ������*�S'2�>S$��ȯV���ը�yJ���x
��u{?��?��J�G�&.Y�½0+������B�w��7*t���o7���ڦ6�[	}�JؕK��ؿT��5%�U�x�I}b����Jv����I����~!��moU>uc/��,ܨ�u��c���/��5�kq�=��an�� �������w7[R���1���R�!2�б�D��&)�	홝^ �˾�ߍiZ�c�7��%�Φ�-u�ˠd��G�Q�8�Q}�)��[����o$F;&�#���VmB-�"���|���%�2�U��л�!R�-�ye�zߑXy���Z���q)�1ʶ��x�J��iƸ�����!��DP���KK����so|���+s]��ϒ�l�@��|T�"��K��i�u��dg]t5����C5� �{+[9��EY��A􃮩�uS��u� ���j��j�w����i���V����7���z�q����|J>{�WM{i�P�ɳg�����1�`����P�M�,��g&���fG�AώcV/b8���Q���(�6f+!�%zf�2���,�|ާ�!�l��OS�ɝ2�G���v�S������2J�5`x�\x��h(h�}�*E��"eug���0�_;z�C�H���Y��W�.�:�`f�ћ��k�MP��n�YӺ��=ӪӚ�6����V���M��&��6�+XU����zUA3�	�V�2*QVMz�9���z!شq��c٧�$0�-0:�eѤ鳓��~`��y����v"h�~���v�Y�z'ڽW��w�j6��������N�.�-��F��g��e�G�}��=C���З?�]|���=���K�J�ݦ?gj�5n��򃞭H4����rO� �'��S��������UӬc�����^���p�b���l{?��#nw>��omu�/�}�P�#��62
1��
̕��yfŌ�o��YYh$��!���i�����~J\X ��8!IJ����;.��n����6�F��G Z��e`ב���_��oqx������ާ��c{��@70+8�(9w�|��.�Nϩ�oǍq(n
s���=����k��E�O�M��'L�h��C�X,#��3�N]Ք�-u����Y����[~L�����Oc���:� �D@F�qӭ/E�0m�t�xàX�P	
vc5���'��#E����镋q�p�����-��|�`U`��*9h�=������X�П�C���+��
tކ�L|*�������4���l�2�.�c��J�����G�<�����}�?չ
��U�#�W1���è�L&=j4�����y	@�-�!i�ry��}MpL�Mф��kB�r��1tˬ�m~NHx.(C;���z���N����32�9ʶ�˨d�f#�T�n��s�[2��/��hj��G�v�Wa��8�Pr9nt�+}ɰ6-����S���sÔ�բ�	6��>�0*�ۋӚM8����N�1��=�[����>�~2��xF������<����e>/F�>Ʊn�5���.F5�E�t�{i3*�+�s����vػ+��<��gd�C<9�����%��Ҥܱ<H�{�az�#b�	ѩ�������+�~S̵|��e�i���k)B^|_6ON������b�\�Q_�/��<�y�>U
���0Se���l��\[���˧��G�6�W��:� ����0x��+%,:d�t�)�՗W���xr��>#��hѮX<�'�tΎ���SV6e�E�.��W����c�[td��GˊIw������9;F�Hs{��9�	�^�k��Pxx��71g�1ݕ������WḲdVU�G��[1�7��M�X�(62������8�<���']����Q�#���5d���{	�d��R���?M�:t<ƿ��e��&|��*����q���S���g���x���a�S9q+�Klq������X�%�m��[��.�;�^K]JU��4����f>G 7��^O�b<[�I����+��bFR
�-�������t�����)�m���kqo?6�d����M�w��kȀ�����'j��V��E_ٮ�Ɂ٥���p��x�0���Qm���[q��&K��OZ��3�����=f6S���!�)�ⅶ`Աx��a�+�������cXvk�nܳ�,���#��R%)�~v������+���@�y����yN�����D��-w�m�.�g�6�gT�|#��T�Կ�R�'	�Zt�5��������d�\�w�?�<�}��{���=෎_�"k7#D$m$���,�
�Pr��00�e�S#�f�T����	-��LP�=�����>���
��}=�y�T��š���U����=��DO�F�L� �s��h�MqM�Ko�@w?`nTf�o߸g��v��h� 1��]��nb}/I�ۙ�7wP���O$�n-�#��'��Ʊm�8�t�&ͽ�3����)����[�u.�oU�=�e�b�4�{J���_�X3�(:�"tl����\��R�95��7�[�59b@�7�7����r�G��.�ng��S�UhDe�EZ��E�;��K��Ԩ�Z*����SxW��u96��c��z��Qд���)�c��J03�o����y��@ mX?�4?��D���Ժ�bul���{�;�@4rS����r+:'PssV3ܟԃ��s�<m�"A�p� ��6�p`�@�\t��y~���lF�|���k�b�5`z>;%8k�/�2a�4r�]	�`��Q]�F�C�{՜|�����IӾ�){�b�zW?[�Ξ�A���7G���S�?�
�im�L��+���7���P�� �D����[��Ɇ�;}���˜C��t�����)� J�%��W�i��Ye,kރS������oB-^k^�B}E�c�V=9I�Ǧu.�ټ�����!�|5����U�x�[���z2��kP�{00�]�2~<v �1��<w>�� �=��=������3���~|�c���.�<�b'�rX\��"���]��Jö��Am�k�[�WU�e����h����:{r�+�K�w
��f�	*�𕩜T�G�
s�9��p���k�o�@�Ϥ̫��+����'��?��=o��F�w��ȋ�Q(�Zo��g���7�cV^`�WE�0�_�T/V5Yt�:��Ho�#Nw�ʨ]��ؙa.YeV��E].��`Z5� �
�|R��Ñ��r6:�N���l	�\�;v�9�z������xs�y���z~���}CP��o���3�����͆�A�2��-�F�Sʻ�dX÷��Ȱn���j�5|�8�5Y�*2_������gY������򖂈�ޡ���9C˨>sD��j�)mO��M�B�U��;
8�@,�Pz���O�z��D.HE�sO&70΅Կ��E���
�?�
��ȏq�_�y-�YFO=SceO.)������Cٽr,� �Du�٣ѳ�,�bl����Ѽ��p�R�w�M�Ȩ[_U�8���05su��fħv3���T�g��Ȉb��u7�?%�ϔ_x_n���N>7�����fq^
[s��oμ�~hA��J�l�:^��7�.����F�/�`n�(ƃ�h�U�u���`�6g��F��7�^j[n&]h�~����_�ʠ�0/�oļ8{>�q�*���AȊ9pp:x۹��l�!:��8���:v:]FY��[ᇔ/ĩ��;��NP�tl�cXML
��ͩ5⅍�g�\|;.G�$?Mx�L�Ιu0�~�৤��Vն��j:��`�5<�F���XK�MԶ-�o��f�Z-{����O��77�X��b��~�w����5��ϗOi��+<m��x����*��q���$2*gN��u���c��{G��p>C����5i��en���6��C2���4"��߈e�m/�p���12j���}cg4,�����&c�0��\E�S"р�]8�0=?�ܔ�������nۧtʣ7#����A�jjt,����#�d�)�#��Y�$�\�a�n�h6Va~��۰:Q
J�0!��X�(E�5�S�zNzc��y������Л�XەyyM���7�(��k����XA[Q[p��
�����C�;~���o��w��M�uvG�5}�M_	��,[j�B!�����-X�ƔJ���6Gʍ��p��j��
�P��*��F?θI��T�Oa;]�����q*4�<�=hh�8�6#g��Ȫ���t�j�!t;`�h_+��m�1�ko^����4�L�vĽ�ď!O�����][#	)�[��V�v"�w��[|�<�]&?K�)0�*�OR=b8��-�<s.�8��?�]c��*��ػ��gڞ'��GNi
+ތ��:u|_�e⹱צ>��f�<b��v
����Q��4C� 7;tg?-��8���&j�V���[6+�v-��Wz��w���u�6-ySx��%�%=8:Y�ڧ��7˨]N=�Vr>%��_�~|���j�]����bqm�dT��ן�>K��F�z
�	|}��B"��z�c����y}ŽJ���C_N��-<��X��o-A�ވ��i���s�=Mʌ��2����_n�	�фe�ı��;���&T��]WM�]� :x�ާ���>Bj%����G� �v"��9Rt��"�~�Q���p}X?�y�<�
�3�=º�.���{���A1�r����j�[4DG�&�>�/)h��X�P+L,Z�L���>2�B���E`N���~Z9UWh"����y
�s�s����!n��u�X'Q�ʭ�ʹ�(�<��
�� گMI��lε�LO�L�:g��uzY����A��n	ﹽ�+<����۩���xc�'"[��g,��Ř���jv����s:^ru<=��&�D����/���c��;���~�j`0�jTy��V��nj�{�oq��l]JO�o��q��,�)uc�FI��G"��[�+g��;�g��O�iE'_٣���Yu�����Et0}/@�g��=��b�����;?�b��P`g��ԩ�u�fYB��+p٩b���u���|�lE��$.��:M��率^�џc2�L��A{��&e1���w��u,�5�+r'A�k�E>G�(,�E����2�9kt�l�
i#��f/����g���GH�')�ɡ�`��9��}�:�a���x
�>�;���A�1�)��^K�7q<���S��~�����؅���V�؎8��,���;�恌8j�|�2���R�^*�Zո�R>�L�qr2�S��>K������L���gO�z���pԫ"�,��νc��Z��K2�L�,R��7�θrq�H4jC��k�,=�]��n��ײU��-�.,ywDGl�[qna=9�]�t2�[����׏�N���\��2�4��T�Mbec���4���Y[��g��gπ�U�x��A��҄��N[��_��9�+<a�Pf�1c7�nbײ�Y��c��ώ��A:=�E�[��^p,Sb���#j?�f#"�\<kD���*�<MU��#w /��o��7T���y�h0&�E���Y��	�
���|`�k����6���"c*�$�l���L�؉�7�R���UO�L%$�����b��r�=<,.&>��Ma��W��]0�:�_��f��>S�1���[�9Uؑa"9��F
G��J��^��}��%���ӳ��]�'R��9 h��п5j�9�s�iK�v�g�؉�����ƥkj/`7��9��Oa6��V�������%8����ˉ�^�9�V�s�Uz}B�e���
*��Z�c�Ɇ�VO7Ξ)�Mf�d�\ێ(Τ�E�7��K#�!��~V�FF h��]a�b�`�O3
������Y��_�l&3��W'��3���N"����.���F]C����s��+ԇW�\c�:>KU���_�U]�Sh�t"t��M��X��'�7�*%��K��>�m��nn�(�ش�5��j��h��&��=�"z�����E�Ş�%��r<Eo�S���Z�O������5�/��uT7���v��R��%�Q�c�R���V�*Z��/��S&�\�E�<��i���"�l5��Y��ɰ�t�Z����|U��ǯͿɳ"�ߧP�l:�'�t�:}�d�ɴ���^�`k��8F��4�#<Tm1�0��<�]A�4m
X���l_Q��׫#������A��V���;t�W��3������{�p=�l���"�����8��u��8�w�M��|{~���g
�U��u�PkP̚��G�]]ߐ�1�~�5W�K�O�J�$���h�>%`q�)��ty˂0��>S{'�U�m���}�,7�n@Y��D
�&���X�Y=4����l��zͷcVA��Xz���5����FҞ|���u>\�v����s0sE-s�P�,�|c_�È��.J�hG^�sc�׽���j~��,����ZfF{d:�7��خA�����9�R̓5��5uQ�S��A�sP�֢�<`�?��~S�e��n'�-���׈^���m$�����Ƈ�5�ޮ�ޢ���������޺����"���y1�i�վ���o�i���U�_�u���kS[ hSW�y�X���"�����V8�h������xO�m����f���`���+���.K�P4��1�ǁp ��7�u�U�I�Hܫu�]F�W���.���`��_#P{i��C�\��_�'P ��ѨĂJ܃=��L�-7��M��Ƹec\Ε�Tj�r��"��#!�cn:YP]�����+җP�"ةS��2�,�
tb�&b
�;f:�^���ֳ��(�B�ͩm���Y�	�z��G�%b��X�����w��[:{k*��/�B��M���ެ�V�P�����J�a�:��1��Fѭ�¿�r�D �MOϏ��(6b�Ms�u�=+�B����7����}:���7=��=����w�O"�=�c��m�c��`���:va��|WW昹?ǵ����:�ʷ,�U��#LP��6���P��X���"��\���4�f�kC���l�xk@�X9����:*������=W8��{UO�Ʒ�_q���(�zqK�]ˌ�<a��
�����[p�0r<�	U��;�'����3:�U�ֽҢN:���Em)a��	���ʞÒ��,q���,Ժ�QԮ7�>����'IΎ�fC��e|med	b��Fe ��˲Ո�n|�
���3��E�J,7���Hdv=
M,֡���	�3� YEG�e@���g�����6��=�ؗϫ�+S+�H@�e�8�Lo��P���qܦҎ�(�����!�-��@�Fl��a5��"��(<2�z��"V���SP@ۂ{� ��=�/b��-I��M�g���0������u✯��y�z�������&x��~x�@�f=BA�C.:hl� A�ֻh��y���	e�+����:�xĭٜ�5��Ւ
Y9UJ���_�1W/�[|�]�7�;�555�)�`_�C&ʠ�VD�=P_��l��%R�e�[i!Z/��c4H��ό�F�Oq�
uA��������%��Wշ�k5
������;Sa���)<J��C4����+�H%�1�$	�HT�#� ދ��'La�ǎ��=�}L�3��T�P+\��6[���S}�c�v���g���h�t|veYc���B?
MMM~>榦����#D:5��T��,�rb�I���j.v�ʼ�'�J�/�Ԩ���de��"+�p�_k$	��1Zb�0�~�7"?#�C�*��|,�ʭ��%YMC�mw��X����#jF��F@��ۍ{��<���%���&��:y�@�Z�vUet����dT��e�.-Y���=v�ֻ��'�<g頍���	�Gq55��x��<5����\�Z���T��(T��&�ϓ�eCm���"���y�oq� �k7A77�`�!�5<w5�ɲF����(��vF��)xe�t!jތ�y��i|@mA�
��3cC�?ېe�v��9�$
�ҌvW|���)PH�����K�gfn����$�~��3Z� ����06�n?g���j�7
@���Ϗ�
���\vf�<����V+h�A�{	>����1!�;�
7�����De�@&���`�
�0��H
��<%9vV��Wp��5��(�:�+��ͤ�x���s����C��M�[4J�>A��l�jik}Ks~Q�����z�{���G���Ń�V�S}�q�M��
�ᇎ���|�������)��'�R`3}���q��A�`���nnڅg�=O(������1sl�4gՔ�P!��*kj�@��9�Ǧ��ȅ69{'�N �������E'ace*G�g6����U�2s����c@?�F�&�,e�S�y�7�y�'���?�[�d��W��f�'���R���vu�{ҿ!����X��g���E�	���,5��-�p~c�����qz��)ʧ �sX1�"er���/QV�&��!��g�g�`����Ce),�T��s���Ev���/����'�5��hO�=���w��LX �2j/�f�=OpvY빚���5�w�G���{�8~ ����2��a�!����}���?]�؈S˿�O�r����6J�q���~�er��2PG�,PCN����o��b�ʻ_ʶ*��~k>m)��
�^2��1�OTw���Q�C�؎�7?`�lF���?3PD�*��]��@w<A�j	��@ڊۍ�n!�'�8�,1Z�^ 1�`q�F� ������ksZ��"Mn2� <n/0�)���5�����ڞ�:�f[\��Vv=�~3>-ύ�ڂ�O	���Edχ��(|�j�g�sn����o���o����!��:>�@ڋ�)DŽJ��q"ڜ��kQy��0� ���ajW�R7
��`�@`�չn�V�y��X`�=��������S���:���{n~뛃G�?���֢�H��e��&}��\�."u�������,�L�ާe����}�	yOkX�8�7�a�B7[�/�b�n$��Cʑ0��4A�������@4A��"#��V�4V��p������}�?]�`�g�;&�~��~�aF�Fh����8�@��=�Bb��/���{n{3Z#����y���(7��v�Pr�R�f�v3Qb�u�kpq+6D����膉7n x
�<�Gb;
�=EidLa���f��k���a�	�������w�v����{�J��&cᵶ��w��o��3A�[��F1�G�L����}j 3�CF4S��va���'/#����v�a=ۃ0���`mc� ��r4@�yA�B8ֈ=���+�a�{	��m��
3P�~kc5�I�
S]�=����ś�a���@{~����8���F�b�H��q���w�����w�AN���lՌ[�X��pT�+@�[��5@y�80��/m��v=��~c��:���l�~�רּ`���9�;��c���0�Ca�]�f����ñ짱1�)��8-�j�{�F��1L�`�'R�����j���p�=�b��R^3�
�榧�A���`���؆k����=��!�Əa�c�y�umA�N�)#5�7��=w��`f�n'�8���÷��{��&nnn�F��9�ȇ��?dq�A?P�V��C��ŏ���qӝ�hLX�����u7�3s��Q^+@;�w��p�S�=�<�"n��MA�a��P��֧��n�o�w�"�oG�>�?17m�{$a=M�
�'붣�'�8��c�1c�詀�wG��)�S���<`]�!�R�����7��Or����=��ptUAS��u��� �G���6��`�DS�o�����j)�<��"�{4��s�A�SSQ��A�q�>7�B74R=��E1L¼�F�vg������"�U�<A�֦�`�n~�f������{��\opMO���� ��b]���Hߐ�7��&;ﰞǣW1�b ���	��� ��D�+�H�73�F���/���GSPq+i�X9p7�b����O;���f����a������u=��c?u���a5�����;n`���0�`�eج�
�����h���f��MA�f��1`�{�����㩨V����;���z�!��-v��&��&�:Σw��Þ�8�)� 0F�!�D?���O)���v��V�g���v�_]�vi����k
m7��ۈ���
��=�q7�^O�������;�l���?$�=Op���ú��&���xx Y�<"�l� �ߘ�����LM��c�q��)��lx�F�a�P� �(��ppZ̀f�3s}�`��-w��ݷ�~c�S��0�n�Y�;�{]��_VŃ�mO(;L�� �-@z��N�"'�S���n,_W���3p����������P	�;���繮�a�5���wHx���!�e���]�g��A�~�������ذA�F��!�tCl[7�"�.X�Q7�a��������=�a�w�����F�*�u�x���C��g��?u�n;	��f������#�LC��`�E�5�E��Q�P<vY�n���H!1AQ"a 2qBR����#0@b��3P`r��C����$Spc��T�����?��?���ʎ�hS��UTPT��-{��ү�US��G~�س��p������ׯ��oʏ��@��+P���0��6V��П��G�C�{�T��}�8�����������	��G�8�P'5�
>�JgD~�sO��7X���3dFǹۅJ�O�*���c�i�#	�e�e�%N���<�{�T�EU;�2���<~xʟ���"�#N��N�A �"���7W�,��,ϒ�.�gAor��u*��yVc�5�![�)�ڪ~7�|9��"�cu/�y"�B@u7�<8��)@Lo� D�dO��o0����^'���@�C�(���⪟��t��z<\$M[���$��!n�oQ��"@��H�=�D�M?<kê��
��O�,�v�.v�s�T�:�[�N�|ӆ�P�DW�ߢ'��#�N��E?|.���t,�y
{��~�+�g&b3�S��)�11E:�˺��BQQ�v�y���ahq�"���	
��P�K,��J<P�Q��e�)����#_��
����'N0����J�-�{��
��
���?ׇ�ޓ���Y��hf<�+ n�3��U����#�8,�LX�m¨�	���Bne��a�
�8�RP>�[��"��t�D��N��N�QW�P���*;�{���Mԩ���B*�S��Q
>���ӹ?�Ü���"xO$	��o��%ō`�&z>>4P�1{@� j��Tn�{a��bax,��?%��bcNGb_-)�l��}뚛y���oW�#ӆa���`��L�PS�*S^��$YO�y�0�j��w(A�  ���g�ӻ=�@�{���<ޑa�䂎.d��0�S��CVl������)�x�4过�x��ᔴ� ��NpG(�\���PD��@��4�oܞ�$��)�‚ �g�{�_U@U���dS��b
���1=��2;�5�-�x��Zp�p)�9xs'���ԕ��Bk�0�Q��H�;����/ƈljsωv8�= Y��!��)�{!�X���Jki���وiq;e�=l�W����J
h�J�,
�Jn0ļHG����'��ۦ>��'=�=ν����4ɉ\�\�%s�R�@@��"��A���Ct��TY&�!��A
���3xP-ׁU@�_�U�QBS�h��s���Io�U,5��-g�suO���!�2a9���r��;޹��c�*4W�Nݸ{�Ƽi��8���C��8R�Z�S�F� �D?âi�L F�m ��Fyzp�䖴@�#�ڜ�ʃ�]��6A��m�ӹ~����G�(n�E;�����0�f��źZ�N!<���<Nn�G��T�z"P��t�
!½�MAquL�S���	0�3�>I��v�0��e�*����mb��U%x�
�IU\�_j��J9Y�J�'�G��	�뢙BnC�������.�L)4�Ft��8:���e���+D	�tM���O�9!���!P�E��F}ʧ�(�K���^������fi��h2tPB��z��u�h�dk��EsX�e��	stC'�VfkQ��J�,a�J
M�Y�t��-4�)���Y@�Ÿq�e&�Hp�4V�	��᰹�lwe���!�El�\��ܳ�m�̦e�͙�z&�~3G;���e�4�i��`�DE���
F��9ڑa0�_�9�B���q�?dKj����ݖ����-��7m\kd���%�T�C�1C�R	�-���t���0Ym�q�m]B�t��pq_�wAҍB��OT;,�T�I�0eI��*�܄0�D-�9�B���-(N�8��Mj�S�s�!¡R
����T&WTr�D�_"�]L<��K&Q�؄}�1�Wc�����g.SCd%o^'d	�8BAiA�L"��	���c\v?���Y0��9~U�9/����`��u͢�x�Z�M�Q�}����9��E]Q
�%���/P���N����3�S�0Jdu��S�O���@�!��K~ћ�W��M�-�`��ע��#��˷�-+;y= _� �:�mu<1�Wc���e�Js�X�7��!Šw]=B~&�����8�p<Ӫ'���K�(P����#��e~�B�@��3n�q��Q:�6�Ch�Q��Eeu�s
5C5���!�9�Ao��s��XLՏ":�6D��F��^��|+��sϺD5��v��VVb<4YL��
��1�������[����
�r��17Y]+eeeԡ<
�;���o� �Ι6\�TU6N�z����!P��r����Rba����"���m�
�-ԣ����5P�F�@q��
-�|ӋD�t��sO��6^l�Q�	����91��Y1Yc��fa�
�v\ag��7����;���#�'xXx8�9��fFY��(fXm.��8�GلO��oG8Y�$��u��~�r����g���R��0bg[����q�>&�=��K���*�4��M�����(I�D�V��bC��n\���Jp1�`�6�0�o��~[��sD4�e5���g/��V��:�S�/1�����@$2�t�2���Y0��۪����t1��s�(-�0�TIEA�wУk#�Z�����]Q�!��
`.&�!��w��Q�A�%��51`�1�J��0\&b⸗=�AЮ@����&AF��T��0F�	�+#�5Q��Jv.%��� �Es��dD�.�)���]<<�7Y���؅.9A0��h3�G�]ڇ�Vb����A���SY��ȡ+>	�>c�T��8��S�`�;%�C)�>h�7Xl�Fg&B�9�
�']�EР���T31���8j�^e���X�ǡy�����$p�v��w���c����Jxi�f��*I�f�]E��]�SMduq7�F���4��kq���-�b�!4�.�M�
!ؓ��	�a<9,��'�ƌ@(�4��O�x���Ŧ��
�&S��6�K�e��ϖn��
E��v�i��8XC4�R*=Q�B�Ӂ��ӄ�k���ڴ��^��g��>�evxM�}����>�͸��t)�p`M�ȗ�A�N�EQ-�#���0T��B͔g��C��o5U0�-x�D8��!n��
� ��0�!jE[e��
F�U�z�Y�pp�Ь�TA�gTZO)�,����H��U@,-u3�Ub�����Ӡ��|EuS*�:e_E^�^�2�W�{��3��?�Vr:�Є�����Y�A�
��U:ݜ�E��[��*�X0yKF��ɘ۪��'TIJɇ4�kO$��76#��l7X�����H+���mf�C.؅,���v��L�$��QĂXM�	��B3���7��e��\}�z+H�@d�A_g��}��X��%�4=6N�)A�Sۤ�]�mbQ�b����.�ꃰp�S�i*��uٰW}��ͩ�J���%T����FK��
\LZȖ�q+���=�	��R���f�-.�r�ſ5��/�yg��,��,�^�(6�€eD�S�Aj��dl�hV�mӋ�	.1l�%��څ�`S���;3�Ƨ��Dεhv]����fF���.���-���B��l�πc��
%?
�<,P�:'F8�ə)��,7&�.V���8L
"�v�}b8z�y'��p�4  x0�;��a��#�O�<��~fG�gk���~���9ѵ
-��e�e��d��8���!��c9ŅA��	��X'3�7X��q �5!b3��#@����1OMkL��CV�[Be;�8�u�2�)i�τ�b��L�hӪ--�u�"�Pv�J=l��꾿���<wBɄ*nv#/�����]e����	�d>kBZ�sd�șuA��g����*Z�"ǀAЄ�l��ͼ��MEˢ ���'�4]vR�UQ��T�h��F�{(o‹,��]�1��h� �m�P
��B�RFWY�Y��Ѩ���F�Q6N����z�+�<��-���	��Vâ��'�F���h1��(�ab'D�k�vi�&)�G,�8O<S�qN`��p������\i:�v��Z)+���M�zO�z[�13voA�&ccb�pi���d-�x�.�;0�ST[��L�ħ��U�e�X��&.�:�����[�0���eԭ��@;ut(�e:'_��X@�/�֚���v����.&�8����PĈe���g}Y0�7@�&k#Ed�d(���`S����E:,�is�]�=_�TN(S���r50�mƒχTYrFe$W^�}� T����u�HMip��3R���o���p�5��KEQ�]uR����-�}��&<J�lQ<+	����b� �Pu���-�hp��7Ny�b�h��Q��tZ���!ZĂ��=�1��G>���0E�]J��p���iu#�{���1�ɭ�}���L;8�u�v)�1�2'�n�oIg# �A��3���P�L�V�M�������Cƈc�g0c�1#+��S�Ѷ�3	�
[cP����;ٷ
�R|�Y�?uQ�a���p�F��8���O�I��Q%G�Wӗ�;�w��y�`h�I@�B��MUeSjl�k�AT�#��R}�Y8���Y�e��@:j�$j�en�0\��XB� �yq���uQ�ʥaI��"�B�N\���''zV�7�Dzx�����h]vV�Oa+L�}eN��fh|�bޕặoh�1b�)S��$Ȑdv)��3ˈ�Xoi�'ՇO�������7���fD�vc��$eA�R�J��fRV#n�)���)��fRH��\��VBt�M>�lG,#�9ZY!c�H�s�����l��<]V3�3�K1a�xU����a�q�d�E:���E�eM$T*x�M��
$PB~h{MB�"�,��4���e˂��D\�R���Y�CXV���}�h�'@W�)�ƜS%�*�v��[�Yh�)���4@�ee&�R_�v8y��<�k���ڈr��P�܂���kZu�t_��t
J�Gu]Q�|k(7Q�&z����A��+�Շ�:�f�T�]b���H�u��We�#�Q��Ck?�����^E9�i���>+?��#���}�Mn>�<�0�5���#���#��h7<�	k��)6O/9�+Z�����$�ء��\}������`f� �ǂ�
AGќj�ܮ�ͼ"f�ظ��	��r�ڴ�g9�z&��!"�z�L��!b�:g��T@����4��BcZ>���1�I���V�p�w'�H2�<�5cbfM�kX�r��\V�H'�T�?UtB��2��譞5r�y��]�S�U�]Ux���D����B�劔�,�E{�����BM�@�V�3�b���.��çP���������	1A�@��o��Y���@��6�|]�;�ڪ�Tq2���O�-�,�A�jŽ�n��f���M
RRj�)HE-��h�T�Tp�]O�9H%�f�Y����q�F�D��A�ˉV�P ��'�t��B-�����<dZ�걽��>I����)��.�Ά�|}��؄�gvW���l]K0�=�	��1ߍ> ]
E����)�D4a�tDz[��<������M5
�CB�p p��sDg�@�p1\�k�p0\��7hz'z>.7ٱ��B�E� 4�6���I��;�>�����N��d�n�ۍU]�4stXXĒò��F�Ǿ��a�K{7�"0ۅ�����莡�#
5;�; �@��q+�TJ����K��z%�zN-��Y�T�֕Y���G*k��-��9��l�P�n�$��++�q���4Q�� :c����($�Ew�Z���8M�d�43	0�
ULͩn�W��!°��{�B+#�Wn�ɍG�*~(V�.��1����Q�La�w��\-g~�'�#�P�-�Z���v8���8b�"�+=a���d	'��S�����7�O�"�y���#@�IN������\*��^�2��
��Na���`�����?e�#�����N��Y�Jyl��e�壈���� 1�
��R����������池5Ĉ#�VR@>�@����i��2I1�9�2�"4��Z]�
D��G��OH�������
�Y���aG)��3�0�{�!QT��.�̚��N�~��n�$0���]2�Q�-��R��m��[��~��n���� �uP�w��ژ�h�Ɯeb��L��UA
��E�m9ba�S޵�U��p�VWV�8N(5�r�j�DꟂ�����#����l2)�G,��
)?����e �n��+>��̆��7�'ʢ�(
���ӻ/Z1Bhw��,<���j��X�48�N�X,7]�4��0��%ŘΆ�c��Y�1Wn9}i�V/h$��tVC룓�W-��,�h�\`��P�_H�/y��@��c%�l	@2[[�@(b�]N�䫾H790���8��T�Wܱ0���-��eV�tw��Z�mp��j/�v�D*!�AO^�'��q�'�js��<��vo�B�fgl��������ѣG�_�����h�Nqha�b��SĦ���b�ڔL;ۡ�s�
2�X�	?B�13�Qˆ�\�TQ-fc5r�2���QJ
�*|��Cm�C��o��PW�oU���|?O$3h2�t�H�(����,&��x
xa�x��Sqp	�i> ��X�.����l��� �a��0�ρ�[���
db�σ�7_e�}�m�#���v�aqv���� ���^=����v�x$��%����<��S�m�d&.@`�>I�ϕ�����ٽ�	��fDAi2��\�O*3�ϊ�g��~�g�1�2���B�\Xm-0�{�UxCJ-n�q!C�iث*^��ay�p����B���)%R�Z�r;��.�a���1"z�4��E��oq�d2�<K�`'��,���HT@��.<!B{���`�#+�1�o��p����C���B�9��7B��Ӱ��3�\�9��ܩ�	�F5�e���uٓ�1md����{G�	b�c�E-�ȇ�\�i�����)�a���C���a�Gu�]��y��X���3�ˏO%�X�,����ݦٳ�T�G��{F3��W��1F'������
��h:����`s1���J���V���'�Y��]GF1��m����Z��•f�N	
}.����U��Q,$�U0:!
�Dm��W0��29�`�9j��n�)$��Eފ�M���fvg�5�~�?�>��R{n�!a��b	��p+�!�cT��p
�[?�B�7Qܟ�?���*E�ފtDk��edx\��|xbQ���!zP��������\�'(&�� j�?�6T
�T�ő�U�u�~
՛�Jvh��IPt6Y~Hb�V�"'Dv^f�*��vU�;� gTVY���Na�GuN]~����|VLo��c���O�8QL�'��p���S1}\v7y�^<L�r��Fj=�����uX�����X�����8�4��?/����iN�M8Uޫ��H�
;GyJ�so���.Nt�.J���(�p����Jψ'��8V���t|'�⟱Ĺ�9;
�1����A㭸J��66[3UQ%�Ce���a�d�Z@ܞIV
��	N-7L-�8|�Ӣg+E%9`�aeڗS��Q�͟4	1L��
���=8�]���q��Z����d5�B�tX���M�f��j�}������7	ՏX��1�i�Ú����Pi�
�UR����YCu��Ѯ_��]
*��,�`���Ɓ��gN�5��M�'|��>k�p}�<�u�`�c��ø�]��0A�Ζ+f�s=�#�8U�ž��a�p��*�
(��a�1[.�les�('Z�A�T/�CDuu<(Qr�2/b����J�bo����9HN�v��.�g�"}���5ຢ�a�C�
!F�N�W�|��F�τ죄���	��Y�u
�H�1����(D�u�V�P.�H�)�RV{!��	�._�k�46r�W5���y0�>ᵧ%�/q"taD�bSL ����39Ԫ��g)�5%��qPtX�yI�h����	$�9�e��Ye"�B�T6W��˿#d�<�$�ލJ�0D��~v	�;���r��i�v�Di����sa>�=)c	���	i�ây���&�c�+,��Y�C4��sN�Ɽ�u��!�����N���#�@3[!!�
���ǚ���$j�"�m�8���
q�Qyw�$s3T<M?4�Ᏺ����ܥF�7b��?C��N�χN&���(���6͘	(
�km����Q=�f��S���/[�4� �F?�˕�G(i���dL���E��ؤ{�n�UN�a�\O�S�LR�7U�6�sG��-y$��*�oe]J҉��7�[ځVx���KL#�,�%�<���*������;5�&�"8	�b�b�h�#��1���S��G:[d{ok��X�nijv�u-�a�3�>-��
�L��Gmu����v�]��8���gJ�B��ct
�UHԢ��5�o��>1�H�K��C�zn�-�o�.+�c����Qk��#������fmޕuw�L�u��J��{�g��%J�#6�*�Ȧ�;"��]���)�N��3���c�^�?u��Sߘ�2�d.��s6� ��!s���!PT<����n��Nro*
Z���hƮSáR�1��ӭ��v�N�VWiIY���y��Qk�+��1ꓨG�1Dɛ��˭�zo��S��	�����+(Vt��!R�MNn��ތ�e�s����g;�����_v��v.�����uNͬ��avU�{�
�3+CG�bh�O�;5�$�S�&	���z�9�p�oUd�J�FV�ÕO��f�h$�S���	�-�m3��2�n����P�[7�AvC�)�GCÛz��9\�.��('u�;��D���k�]���AW�Tb��fm��%ڠf���G��OR��p*�����qs�)y�!���J�S��;��^�Gh�ܣ��9������3H�+�Vk�mӘ� ����*��4�%�'�Ԭ���v+&(��7N�")�["݊��!��2�߀�}VWX��v���[Q�.[î�
&	h�,����R�]K�J�E��}`!�ٴ��w�c�B�ug����3e����csn�
r�WK��=�h�;�xzj��kV�dqN��wd{�k��	��af�����gMB�џ�|��Ғ�o��j��<�k܃�#�+���:�:YltP�-6%�E�B�9�Т�-�w�V��L��|R]b4��ɯ��������.&�0ML�]�G�8吳�y@�GU��l��9���y�@�ܚӥW�>hN�StZ�cEQHQ��t���7Ead`#79�z3�4|����i��u'6�@Pjp�'��Qv��bu� #Z\�7;+q����eQ#d��X8��tez:�guIBK6�����R�}Q�S�Hޫ�D�z��PVTUGӪs��_p���=p�]��g6���HhtRP�9��-�P����Bh[y��sN���{�v4ì�ؗ����m^��S�q�#wY0�k� a���ˑ����c�%�}r�d�w�t��0xS�$�&px�9MS0}��\�m����pf춅�u$�<��v��a���G(.�
_#eY!�q�~����r��v�Ί4j3a�l�_$��8h�!��pZ��C��~��3b:�avBY�����'b:��C^�uӝ��o�~X�:"P�x�Qh��"٭?�Y�r�N��i�N&f���e������ A�j��F�[�Cu�ES]���YDRxe�nぺ8N�z��H<�7���fkC�Gw���o��$��T�Y4�h�$�
ICHSI�:5`j�F�d�m���Ѣ����*4�vBL�Tu��6�X"J�U^lL��{�Z8Ɠ	�2�1 �$*�A�&Hʄ�81�4�k�qdT.bcRVh iUKYTJ�	; b5�S�F�}���C�TZ񙭪%�Y�㲝�AJ&>͞#�,��O�c��xK��Fm?�op�g�y����&ұ1r���z��f�0��8<��>-�E�b��L���@��_���;<����}�N�j]~(�3��fd����r<ypUx]8O��ڳ�,��!��gMB�f������W;e�u4�Q�j�o�j���B�4�Tj2�<��묮]ե��dب�)�w��B�����T-�)&�,���G1%B*�M�T\O)A�ވ:�B�h�����A�GxA�5�<�'a�/
@?�
Bs�FO������|�
�ܽ�GICdF�U��O��~���v��CǴ��)����=�_�zۄ'�k�2
&�c�O���qٺ�9�����x�҃����܎[�J�3�<�\^G����e�����e�e��[��$iu����{�B/�t=ǘ�=v����DF���R��ܠ
3�����PBBi��f%Yv��l:�)��~��D�d�:����UձC9�n�n���AWGb��J.R<��</���N��:��\����Q�c�-t8�ҟ����L3^�Ϛ�uNiJ��'䑩�~�\Ę�[�x��Q��O�&�͗��E:q�JM\����5D���"h�O|Xb'�P�%�����e��H#�sT�~1��v���$��v�b	�+B͏�O��֛
eK���h�\���^c=v,I1e��â�/I����X���V�zw(��t�X���]��)���7�D8'<��6��*�q�<�&�0��0�P
�M�uD4�6C蠪dz.�K0��������-�u�(.mh��.k����oLD��H�K���wX=��bQ�a�-�D�-�A�C�VN�=��$�"J���>��m��J~1���?c��U�>Flҋ"�F�L��
�D�)�ϒ�vu�N��+��"lDb�b9Ū��
�:O�ސr���%d�P9\z*W�hq
��g�G�7R�I��5�����o<
��E]��PF������M��Wi���� ��0�3(�fS�S�n��@��Ρ�ø]P�Ox��_�ڲ�<�w*�"Xz �T�Ď�t*PM>Jt���Z�l�"ju���ڗtN,���
�5����*�wr����0"M��0gT<~��ܢ~k(4Dl�T��.�Q�Ghm)��&y0�`���IR&A��2��Yz�LrvNv�D�I(�+�`�ա;da�:����V�(�z�41`��̝��-a���Z�$�z���X��K�G�cHv�d?�>��g�=�3�y���|#Y�a�܅Eh�ޫ9�,�U�&@��{�\�
CM��d��Ɯ��S���e���٨!S�}��#��{�b�N������(�~ � �:��*S���3 �B1Tʂ'B��Y�TF��;O��<���HtO~w0P�{P~���N�D�.�џ�˝^T�IRd��� �'x���4��X�+L��Y1� �d`{�G'a��`E�s��L��߲ͧa�c��oj��'�*�D{3/�쾪��Fc)�I^I���{lk��L�fU�z"�y��J�CCC�.��81����<����5�kq�w�-OE�E�wW��LN�)���O�?I3��������Fʫ~0{�g�G��t�O�ʧu��'18
4F!P@Ed���
� \;����I�,�.qYnu( -;!޴��@(�~���K���8�~�
YvXX�8�E��v���U��/d��r
h13�7F�t�a��R�8QP	�)��ɍeE�����xԠ�*	Ny^��h矂�,C����z����_����-��׈$*������.Լ��	���q��&��
�;�%���0xo�7DζL�#�=ZF�b�����x��ee�z��(��1o��:�(8{�B����uC�g-���Tx���x���b|�Oju-N�t�!��j���6d�ɚ(q��&E�I����5E�G���}n�Lgv�:��%�}�f�Ҁ��V��x��!�{��҈�ܬ�U��9�S¤���^��/%{
����)�=$��c�B��1�b�F������o�v�6��S��qdТ�LF�I-Q�@]{�7э�;?T�`�['��(�p戴�5ttU��A��E���(E�ȧ@��B�Q�ގdu>�}q�V��?xZ�
ԡ{G�j|_���UBmDP@�:)��*#h��!k M�-U
$f���4�z�S4�Y1����B�~-^Mk!1��+l�P�r����rU�ӡ@	h$�B��Ba�����ag�0S��r

E#�wMѷC��&�~:���nS��d���k���Y��.�
p��yn���,y�8^���U��E�cA�]�8X��>_u9��4��Vp#��b�.���5xQ��7�>�/�Vz.��D8C��Z����]�4,���H���7я+��>�����aS�TG
.���0�K#n��ͳ}V��SSw��4��Y���ŕ��B�;�������~�+D� �d�FB2��lQ8����3+�6@Z ��é�C��*�/vZ�SKul����N�?.���Qd�H �B�,�ȨG��%5���>���`Ŗf�-�5ʟ�Imh�=�GU����o	��<ar~��ѸcS��\��?Ģ[���톰���J��#�8��8$j��7_���A����y���C�z��T�U$��n��*<я��AU�����c��:.��;�d
y*
�L��x� �o����l<��	�j�����Z�pe��.�M:,̏2��uU:���J�,��5V�0
bI��1YOts]A
�\f.!=������
Z<�T�#��#`y�^/������@�[8r�@
�1�a����K]�E�[�d��S�p�ҋ�ec�z�tWTӅ��.F�,��?����&��O�ZI]�,=�٬�ϗ�'PxGƒ��	�g�q

��Vk�?�,9�� �͚i��>���.2P�HF��:"��nj�'����A�wx�>�W4�� ��ZSM�3���3��o�ˬHAe*)!E2��1Ǵ2r�
k����B4꺠f��&�'~a!r�|�G�|���!3.���ހP�ru�T8�*W�Trr�l���~�Y�����AE�Wm�V��OOw	�n��Z�$��q��u\�ރ@P�3;���Fo���7r�9@�����G0N;��^�Ь�\��/��y��'��7�o�[|����fңkp%
��>c����)��G����Ɇe�I���D6��׀���M{k�m�=�����h�|MW�hɢ����۟(�pn ���=�${UL5ɠ@PN��5*G]wYA�d�q������Qu�=mVF�7�0Ĉ��c�n�5Ví��Òu�Qg&: 3d�Yp���0
q8�)o��[��LK%?�'�Mn�43���xV3uk�P��z�;Ư?y�"A����?h������]�&�0�.WJwf��E������y��tk䎧`�i���G����KT(?ѻmdj�VG�}0TQjB1mWT�SDPw�v/�"bXT4ZTf�=��5���Y}���s.[�k�$tA�3��%�Rͼ6���m�y32N��窍5��6��}��iP�EwN��s'�5-�����>-�V�f�uW��C%���S#�E��T�<<r,�^�G��
E����O1�|��T�&��2
m��� 4
øD�p�@)�۱�Pr�y�C�E�Ch
�*���š)��ۂ��<����o����+��ׁ�@�
�tLC�X�U4�e���܄_��/ʉ�tPkDt"N�F�lP�e�h�����=��\F`�<�:3
j�T�ބ(Ӂ�'�sȶ���˜d�cE��q|l�U,~E05*��TD��-ew�Ի�l5[0X}�h���'n���QT,��Ri��K^�G�u�E��<��w@�.$�H�B�.����(	E��PtG�"d�l����d�P�#���
��N�hP�!���es8
&meR�QI4	�o�n�[>h��r��i�isVJvw���ʤr������e��{�AWD�
_}VY��RI�8������~�	�e��O��Pl�6�uۏiQ��,ؔ��Ȣ�1��#�~��s�e�_�B�	�h��tC^��n�*�o���z�?���v8��6+
�����b�.�P�Gbu�1�F
��F��P�&�z��y(�4�m��?iHbA>���B?�� ڂB�
RxY��tS[�6(�x^$ӆg�N��T�����ӹKj���B�Am�+��8b��P5LϠ��?EJ��Y��}}߃�A͸2{,�.o	��@:(i��ܨ��U�D`���C!$�l�:��Y��M�Ѕ]�B
�5J�����E_r5�4\ǁ�p�na�@�yn����z#@6B��dU�;,�,��9ψ�@�	���~3�uD&eu�pA���e�ul��2����U	�&�j�v���g�xr8�x�†��i�Ub&�Ӊ?�Ai�U���PP�+3n�u2mU��*,�u�����	������D��ɭ4s�#t$A֪,�,��U���P&=.��DP7+��Ӻ���@URTD��Cbt��K�=�W�|::*a�)$��q$�� XP��T�w�.cTG�P暨w�	�.�
��I�]�'6�p��σp�sg�+��)�)���Q��Nbn�iZ������i4�c/���[u[��8��u��N%����5lhQ��s<�~�#D7e#D鼫ݟ� ��3ĤT)@��=?���E
3	:�o�';�7P��߅~*����~n��K��"�#t L��8�pf���U���u�f��̙G����|�.j��W���+&-�S�Q�� �gb��P�6_�v�=�Z�"��4kn�UU��U�)�V���S���l�����`�e�<�0��S�����EQ*���3ZS����Q†�.c_��ey s�˺����ɭWU�m�]Ր�Z�J��.����R�TM��Ɗc@�u��`m�&?��T>�H  ��AP�]�)U̯Q�P�;�P����S(�6��fQ�[� ���הh����v�K�DaP*�wKL(uT�A�e�E�'I� `����*AW0� �)�!&�^h�����A+��+�rQ8��=��U;�u:�q���. ZdA��j3@�I:F�j�aXȱ�Yt��C����?�h�\,����
TA�4�����^#TF���t_��f��<Am�㪥��GD�Ȓ"�9�2�\��WO�)�#�����b��d��?�o��@�����'!1AQaq������ ����?���LL�>!�K���.3��-�:���%�*d�5˜\��/�]�w���h��sm�ɝ�5�����A���9�]8�G���Q>�.��ƈt��*�-�$�gwn	Z��
I�����5~8c�1юp�L���0�gN��g�wE�F�ԋ0p�P�VW�맧�3M�L�t��d�c���N4&\9�~'��~(����8p�|4+CA�8i��M~S\HhC��%ΦL�]ٔi�c���C2���r�V*�2C-'������c���*+
�Iγ䕔d0��,�6c5fGݰ�$�5fH�-�fH���1t���Ji7�Sr�`4t��f|#<UՌ�&rRf����ǜ3��nn
L���ܹp\�
�™fW\���.㊙aK��>L�Υ�A��&��K1Tj���7�-��<�.��h|Lfk�ʘ���cNPf��
S�&�����`{���GT�&'Cr��q�Ær�!`��3�<b���Z�h"K��fWq郑֫�c��E.��5��9���2��ިb�r�0�2c�L��9~��9����7�3\gW.��K���eqS�*L����pq�3,c��҆(�.L�0L�90L���wچz&��x�LVe��o/f�9��y�1ˁ��L�e̙�p��S�Dsd���_Yך��,�\ԹZ��	��]՘W�I��wk�f.��'�apL�1��sZg�f�:��'�G�3��5ɠ�5������N��4�d�r��w�gA�3.a����,Y��3,Ŀ�+�g1�o��#�����Tę�L�2c�L�]ҟ��t��.E0s%��,�!���(g)��L���9�^~�Yv�#29q1	qs c9p�s�l�)�� ����9X������}aș�74��M4�)��&�c��ў:�.�.��pS<�
�����5C)��u ��#�פ������e�Ś�~Z���φ8A|]�E�[[�}\��\����
�L�yg��b�C&�.S���#�.{�d�'�̃6\��H�>&|��P��G3۟�0�!&�rـ�܆3*鎉����r.8�s5�����u�qx��#r.rO�F`��kh��ɛ�Gt���k����g��Cގ��t�f+�$c%�cF��~�d�n�Y�?SV�S9�1/�ҧ��:-GY���|aҺ0p;�b�Lv�"�<�'fn��fd7K�4��ɩ�pQ�9��1sF0�P��Y���
�<���$�\�f����	�L�W^\�;�+���4�(a��f3_�����r+q�4.df:�V1��I�����۹��;�'e_�X��ܩ��sU܇&�D������Ci��L(p|��n�!�0��2��xM2侲��1��ǖ�(Ӡ�I��|��,jb��a�0r���`�\��;C93WT7y��15��CGG�sMi��2��+�&�`�k�	���+)�s�)�!�Ț��.��5�眒2�0B�!�q\��68d��z��"���ķ1:m�if2V7
0U��2��9�:3\7+��e
WR�?�+������r�|\�NP�WC���f� b����/������aK�H��[��p�a�J��e%#�~8���FK�a�awrNa8��M�
�ϰ~ �n����4�?���}����P��ŷ"N3p�+	�!��H�	GXa�3,�ɗ�
�f�ܛA��,�k�@��:�C��*��˩�M�����wq!��A��;���c��|a�\|hcn@4ʄ�x�d]\��0iL��qSI9es��s�O����ᨳ��Pb�I�	8��_.�8���'9;h1�r��a�:�\��q�~#�8f��2r)��&%��L�<\�	�q�u�2�.�ZzP]5�׋�Ƀ��Qƫ��q4e@0`�\��e}a��@NL�x(b�e̗�G�T.m0%�1!���3����	\���C~�0�3n	�g̎�F�J3]Ӛ7�T5��GpaSL�e�@�U�ʄ��.���+��Cο	�Y���q+<+�f��e���:��3�ve�s�&@1YVE�����΁�嘫�����.♩��̲f���_��V!�#����Z<:/5�3
2�˛M4g��F��r8?Y�A��_��*�ktC�
0�q㳘)�	�ۃ�2�u0Ӹ7N�C)qq�m�7�9E^T=�:0�]e惓�L��4ד�]�Ó�˧b`��/�j\\�Oz�7��WX�~���1D�χ-���|\�y\�C.Y�~"��9���m4�(~05E�4���Ī,ĩ�������ȸ���Èt�f@�z5��c�io���L�k'sτ����tp�J��u4�"�Y�a��|�GUS=�I����u��a�0߅�O�L���Wܗ�(?���,��Ѻ��W�G�Ƣ`{�z�|9�H�3k��M֠@�r��Z�z36��-�C�k�����5��!�k��ҹ#y~&b�n'|u��~qdŮ�2G���\�S>#%-u���œ�0Aq8D3\�&!�5W4G-��)��3�Xݺ�w���\->1���>Z�d��c�E�N\���`i�I�G2g�$����f�8745���rܳ<}��e����3œ�]{f��JeV�z8V��C)�P���s�sK�j�$M�Xi���2�G�p`yV�t_��fF/����N}R.�\W2G-W�ű�@�:`O��2��:\�mrI4�s&us��B#/�	�ΐ�2(�#�Pf�w"ht�X_�*�ph�6z�)�89(dc��8w4����,��Q�'\��ۭ�au��88�E!���������9.���i�7��$�qc4�M<��;�F�RF��A�T�	�C��a��|%dX��R`"�A�U�B�%�߬�3��Yg��!)��|[�Q����qF���������b>ɭL�*eZ:��5nT�]�%sr�ta�|v��;��*]c3���T��\���7y�
0��]5w�FF�h;�A=s��fJn�w�h���e�ny���5Zcf��L�c�dZh70š���9o]�(�;������̟$�u�39�c�1C�sܚ%ʅs�r$jy�����d�N1WR�	2Pj�N��z�u�i��qoՇ����c���_�'�o���	����]c}�z&N��{�����9�H=J��U3j�F��fq�8S‚�A�Y��\32�����	0i�3���8���VW6�Wx�eFjY���'�\4�)�2����S̨�`�L���0�w�.�&)�]�FB`S
�&\>C�%�M�0��I�Y�s&���q1K>3��ù0��{��!4R\ >C�1��p�ǡ�&P�YZB�0��
�_NV��QZ���V�[e&&]���eo�_�y����8��u'���?f7����ɂ�u��7*H�$n��]2.P��3�[���h�߆���ilԬ��Y�SEW��!y������1畘735�\Z&c���˝[ �wZ��b|GG�����h�0.D�n�Q�+����~�~��Ÿ�ֈ���.ܠe�F���c�5���q�
�'��c��j	�Xu�
�&N�]	��c�{�z�t��n�G!4��a�Ғbj���/�� ��
Q���4h�����X��\��ơ�3Nǁ�<
z�[�`ή:�$_��2�ߧ}�O�X�~���(�E.D�����m�_�<�Dd��E�X�IUӦ#�C��|!�CO�SZCZ�B���8���P�+��˺\j:}g�8���e�o��`�cQ���`��=��7rLE�9/)2"r�ǔ�	�c<aL�]f7xG'���w��v�|mU������ .&(����fc=3C
���~.���ϧF��de�wP.�u��o1��&�
��w��|��uP�e�?L
�.�"����i���cx�FJc�)�Z�jKMΒj���4��=�qR#�\t?/doV)��� �s�D�O�G�E���E�B��?���c��9{�3��b(k�
0���yLt��D��먨��\����B\1�\m��������K��
:�pA��f'>/�J�眽�&*N34�đ�@�t�b8aqE� �o�������\��۫)#��xՀ�?E�iq��3:Ő�瑼�b����X}�%̼�5`^�f2c��A�U|��
3��M2�;��`�3u���=�Pj�|007.;ݻn��9�kEbf�_���m͘����,��9f��9�Fi~��Oӧ�LW����)�IXA�ʦ�ǹ�8�p0�\�ڟ�z�9�ᓩ�a�Ќ�VD��ʦMr��%__���!~�ބ�o�̅ԺC2�xB��ʥ"XŹ�_��=�R��q��k�5׆X���PngC��~'\�`�4��C0�A+,��eoR�jԕ�\�U.�YUqE2�-
�utFS�����gy�Y].1^+�c�e���a_%s��ގ�^܊\H���N_ەk��w;����:$
�d Ǯ!��X8֙&E��҇�M.�4`f�fe����<��A2�+�8]R�t�|U+��"G�q��G� d�84�ph��.��#�5u)�4V_s@���e� Gɗ�-񓒄�h�q9��+�������)p��yʊD[���J!��8Z	���LT�����
���
�|��կ����O�"���[r�-��R�"U�p��P��P�Q;�,�y��g�X�&�~Tby��B{s���ˍ#���"�n;B�]Y8�qj��c�B���EѺeDz�"{�q��>E?w��g�y����`:���crs��2���Xc��f�#�&'F��)o���㨉�r^'�V�����q��xcI�-�:X�����X�����>���w����Y���S�f7"e͚꺜�p�9&�W1C��*�&�hv�S����"��ɍBG���|�-84��L���
���AZ9��q>����p\��ث�>�&Q{a(�U��OEE7�\����[�9/�pN��,�K�# ��a�����?Ժ
�o���n=\��}�ɯ���G:n`􃉐��4�`SP���(ä�e���UҳQ�q�M��*@ʈ~ׁ�ǀ�lb�^��q���+y����Cַ��H��O&g�L��'����03��u�{w�Be4���k�&��Υ���
���6�@Z�Än�)�_-�sx�����쀵��4�����cM8�_�����2���T��1��k���͙�<��zGHC*S.�\�WC�\b�r����N8��.m�.��cZg�W$Pp��.���E���UM��׬"
u?7
I�6_xWO �7�>0�9##ӽ�ֆ��ᑟ����5��Q��S�֢,�.�T�EON��g�0���bBy}�'�\��$pWS *88W�?�'�����=gMc�s�Zo(�sE�}������_�Iv�~�w�����!�`�3�dP�͖���W�i�'�T?���ī]חJ��ƈP&�4/��G�3�Ha�]=�J���F�dX���@/.	2FG��3">�~n)���ИT�wj�z�P2)�[�'�"�
h-9B��14��x3�c1�Gy��[6Y~d7�/�l9�CΎY
²�z)o�Ѻӣ�G���5^�&�
c����\;�`Yf4���GK^��c��S3!^��a�a�i�2���k�s�4s�
|	���i�
G*�<��'���;�Do��r�<96�>1y����\���@���/q�
�4/�v�?�YD���X��\�{��������%~!�;m�N�V�]L��lA3{�柚�S�̄V0�W����G��TΊA��߉�X�^2�D��65�r�D}�
���B�������59?s��%s�,89����@&e^A�����+<����,.IH�¶��y�s��̇�y�۾�\k��ڙ�W�ޔ�4�p%�ӨJ#o�l�kӉz~���R880�͗Fk��L!�H(x��Ղ�k�=]�hL��z�����T����k�_'�4����(֮�>f�:�Cی��5|(dD s�T�COCL�Jo�ʮ!��	:9�' Q�Y��F9A7n1�c�5�CEP��kjc�2��r#k��L��ߎ����n�
viq�.�����[sV�A4Y��Ƭ��:�S�{c���2ӻf��YA�;�j>�(;�:�cȀ1��ܠ�h��h� �)j�k<r8�<��[L9�R�����s(�
2Tf�%�r�a���`�~��'��g"U�"~9�FN5�-g����#���WZBq�y@"xDžă�7ox�A�}�ޮ[����م}��ţ(�	כ*�<p���zФ�A�#/��TC��tޜ���6�c�&�p���T�r�:�L���Eݔ���y�C�(+< ���y@g�MH5G�V�]�v��?F�h:<&H��Wu�z�OG0q<�����!����>pG?�BA=���M��^�頑�b|��j�!bɀH왔:���[u�����y�O�j�[5Ƽ�/����/��?\�$ܮ`|9���j��V�׫����	�5%�'b�qz��.C9D�|2��1��$~��VJ�_�nR��\Mm�&A�wC��.G�`~��!�P�T1#q3f��_y�*O���T3�!(cчi]XgΑT��6��ts���^&�U	�}���H��_��л��;��g�eJXb<L�$rD{q���"p�Oy�����1�6��g�v�q��O���ˊ�Ur����8��DG�q��U�s��u�Z����V{YXv�a���-+�Q�?k�p�J����@Ҿ���p���<}9O�w�a��@p���%�dS��%�1�])��:��G0_z�@E^͈/���v=h5DOD�pĹ�q#��CE`�jN����f #� �c������+������^�#掑��/�;� ��z� �O�D2w��*x���#����i��ݩ���ܕ�lc����d�Ä��pt��?3mq��+�3�8����~�B�[�8�Ft��F����:�r	�e@r,H<���2֘�5��i7B	�M`ut�n�8�	��$����g-�(���4�~e�SB#���^�7��y�"`%��T�q� LR���¦��S3
�^dUb�5ɼ���C�)��&x�F|32t�p��O�j���^���njOc"������g�CD`�����a���ä�sA���&,n��G=�Α�b����_&b��L1+�������.�7����J~�hsʹ�H���!�ӎ�
��|r:L��$M�:�\���<�8C��j��H�v]@�h?(�"��7q�9��x�0פA�p���z��AZ�g��.B�Hh�<d�B'���j�>��#W,k�_g�Ǝ�h�k��">��㩜pa�*(�J�8V�8�I~��+
����|W�.^��QC�\G.3\ۃٚ&h�[9W<��.�|	M˒#��Y�s�B`0\3S���K�F
�"�y�*I�Е�f	��i�r����3�1���¿��w���ʻ9��Q?r/W^�G(�u���N��"f0�F�b����Պ)����կ����+ᶵ{?ߜ�~ۗM�=�_.UXoI���#����Ts�6�L,[L�d3U�P��th���KS��1p6��Ρz6�77Reh4t��qg���}+��M�)z�Pf�S�����E��.��%I�_�k��ZfD�hW��l��M��nac�މ3�@;��M7(�����i�a����}W9��cd��:Gxz�G���d�<p˟Th��*���`�?�)*���XX�5nV��Jz����I���m���יJ#>ږ�bO����pu�Od?�1�<t��/�O��D⣟n�pp�%��~j���#⛇szL���T��WU�uJ{�Y�l�����/P�a���Aȱ����4�����k�����"����EЛ����ۨ1�p���p蹫�hҸUp+���MY�x�6�7MJ�S ����)�R(��g%���
�O_����M�T��!�:Z���~~�L\���b�!A�T��47=�rĠO��K���}V2\��>�U��de�)�f�D5r����/��WV�Ou��Q:� �j,M�J�A�´��s��\� +�R;O8KKiK�	#�ʔ8�?q�N�d��~�nH���ɓ��ĒK��MJ\?�z`�s��?ȚRr�[�am!T�ѯq_B���8p�y���j�)`	��+2/M��`!/��1]��������ʽ��{��l����p�����p"�G(.�%jNa��$��7u���`��L�IR8O)0y#�fB���)BX��xC��1@��>����e��2��?����_�)�|�?\�{B����I�Y8�tR�1[ȕԳ����GG�4˨_������̯�~���X� w�o=�i�\+A~�}�O'�Q���*:n���ng��3��{��������h(bM�SӞָ=�N%� ϳ �]N�����\�&&:�?i�,˗�y� nh�w�.g�EwJġ��������}�������E��$���B+����f�ȉ>�R2�W=�H�G�"��	�-�~������+�H���7����5��{Dg�%dn�Ag��IH;�r<U�i��Щ]��ZS��7�G�Bf����.��'���+�bQ�5K�dn���w�kҖ��8LR$n������L{FVr$��N�C�anyn~����0TG��R1Ȱ7�5����-�%QFfPZ���G�Ɔ�Ĝr$���s
��Q$�i�g
�m���CA>�� ���P�%q��3��u8̌�a=o82e�dC��n�W���utI�x���AX�g���F�� �C�v͡A�?Ƹ8�_�d�ހ�W�������4ԍ�?27l%Yx�������B��c��h's���W��q��~��V�l@bT�^3hGP�r�SA"�G�}c�Pڽ���'��$�j�/��>����9xOY%�R<a�~��$ʚh�t�J�R�����#fN�
[��0.M�	3r�r��NR(C;N�W���D��yJ�p@����h�8�����Ղp�o��}�r���G�y���+���K����N
O��"��e�̨�4� "#��8\
hͩ�t���n���/��S�o7�����������R@���<}`
��p�!_��[,|a�bO=�
+�(�?ɒ#��z`rT�>!8C���*�\�M���	B8�䶴��_*��g�Pb�;��ˍ��/��L*�������x�g�ob^M���&k=}�W��
�y�¨���`TE;%�|�4��|�UAnR�m>N+��$lf^���})���֢G�a�����ɂ��$)F�����&�̌�}�ڒz���{�ݯ�#�>��!ҽ��&Ƕ'�KwO`���F!��kd�F@qx=��y��\�Sɭ2�9"�O�e�t�=��N���Q��&z��A���m)��k�����L%��tl_�w�Gɓ���fV���y��>���V�*�G�1�c��� x�3I\5�#��S��C���f8n�G%�9����S�~L֕^�ː
`�M
�n��e}��'�����x��o��f*B�� Tx�e�5\�Ĕ2�$���C�:�S�������W�)ю�Z�7a���p��h�8���ȉ�_�E�&L�3���0��҇��D�\Fi<�XD�;8����t)@��*rR^���\wA�?"8����.;�
�PU��V{�����m/Cv��%]�?�O�/�"�&����㢯�pG3�	A���JP�4���&/��ܔ�ǡ��.�d�� ��54��G���&�c 츕�ւ1����<\΍
���Y9�orҊ=q�fO*�W�����~�}$Q\�����B�{E�xQ�3m����L�>�@2�/���d����%�;���NդL�ň��y�_����|��4�ߪ�Rt��!x�*7�q�:��b���(R����/��̫X
|������}XBX��]JC�<�:� l9r?B�}e|��}��ڙ�0� Ճ��2�>TȜ\:󘳱�
D�{�J��e<ˆ$La�s��M�h���Y�6?���&��`�0%<��pnH�y��J���~���	���A��ߵi�����]zh!�H�q�7��'�rd}�C�ҿK��܅/����&E�CڗI,N��_&TJ-s���f�&o��>����1짯��cOa��AH�3��=i�,0�дx��#:���?�ꮎ�*,;+���Ig���:7;lތrQhaa�̭(�OXTmw��8RgPh�_YmaSyr�<]�B\\
_c�ɓJq	��~5��}f�	l<��\j"��8�G">�&<��=��9���?;'�'���䯷�����^.}��|8X*z��$�`=+i�(+6�Nsys"yOZQ ���޲ H���º��ŝ�%�FQo��<��}L������ƃi�VO��e��}�[vUǝ��4��G��L*��Y%��*�z��~���sx�8�0�/�M��z�ΓQ6`����R`���{��ʙ*
�����#T�'���aj	Rjj��4�n�
����t*�0�1�u�eݎ�&T���	�%���й"c�L`�=U�(D�x�DL�WY�q�E�d���v�}��gX{>�s
U��מ�S󸩋����yHн�9�X�����~@?��)
���o����v�ݳdYq��s��|W@~n%>�����+��6����Yz7OV}��	0@�?r!>TN��C��Z�������ew�;V�,:������ļc��X�j�$?�_�U$���H�A�T��?Fح�,������6ߓ�3��q�-��(aT����r�j�:XP#�Knx}���?��hr�/ޚa����|�	����x���~�'x�p�5�xΓ9�R�v����"���;���K�`}�,���~}�h�}p���M/s6�����
gh����� 
��69`y���˞�yW�
Ӷ��
5B_F/XZ�x��f�&N�ɹ���&���߮�ط�@�0��&�O�l=��l7�N��u�~�^ig4��k�`i)�/���:��A)�˖��[��L�J��rcxP-��cP0��[�Ȧ𾞶���A�7�q� �f-�aOU��ݙte�Hs��a�9\�\JW4$�4��824eC��1;F&��J~�
jp>�~f:;���O��PnҮ`2dF��,�\�󼊢��uP+?�@*%����1�\�TO�P����0��J{�Q(
Y5J9u��Q���%ᗞ?�p�~j���]v\�֜#^s�cb����Z8���`�B���{U��W�iT��'�Pg��%�G�ƋC�L�KC��]�胸�OUn@	J0�����?�X�W�!,G���[]�eZ~��Q�������rOo�.�g����Vy)�:
fq5Z�q���c$��1����Y��>���ѿ`}�����/�L���1�����Ĝ$��R.Wu���[�s�R�!S������L/�}{�bÈE�d�UP��ӟM�B_y��$�.��''Ѓ�d��rRu�3D�����d?��s90e�G�27����*
S�&�oY�v��^��K�E��߭ϯ�WK��%����z��w4��
A��������9�88�Z7
@!�W��Uв࢖;�4ݦ��3u��OH7u��8�������2])���W5��`LK.>x�)V�~Z�nXL��G]_Ly��ƹ7Dv�7���r�ՠ�7\����<���:�����Ơ���*/r���$}�U��x�E�?��r*�l�l�?7��^�X�b ��/�)U��TzF��
D�/�٭z�nb2l20��s:�}q���E�wg�p��-,\Q�_�9����eQ�r�t�+.ADE�U�jO��xS�W�
[)S7<îPı#��CS��3�W"x�e���?���\('��{`�8���ň�>�liIx�~�$�����"��7<U��j���&���~?Xռ������_銋�)�P�2�{ѫ�1���ܒ,,����01�(�X?���j��c�0�*&t�������2ZD{��{ŏ�;~.���.���O�T��ͅj�+���4�L��o3F���L�jPBz7(�'��q^}huS�~m��z��F����:H	��G)G��>#��I
�A�
B��賈���A��'=�=�f����2J?jx�ˤ��m�Շ�o�%1$1�����e��`��{}���8P�0K�kǜ����Gx���0��/7Ni�r0���$:@�5��f���öh㱐hb&2�4i�8l9����=I��2�i?��.P�ph��uH^���V����Y�Z۾�")����xXB�@�؈:����ɿc�V{�I V���� 5k_�B�?�5!I�T�p���ad-n/|�᏷�<��n��Ny3���gđ#w�B*��7OA�Ȥ�ۓ1A}�`
Ij!�y�mPD}dt|����v�)1r��E�;�U|��G���3���)�V�L?bN�e@	�N�S��粟L��2��n*4+��`q������|\��{��.����9�=?��h������|���Q+C��q|(�/�R��3方�U��۳b���u�u<�{=�ޱ����}?��+��2ّ������=��pq�O��%wN�7����
�S{�Ϭp�v�?��"���t_P�}GBOc��O�P���n-&�9�y������Ş{�g�~dǝi�VO�5����2�0�n�J�Z�y�_~p�V����D
���}��q0
4&+�c&��W�G��}jA�r�X�-(�h{�����-�*ᆷ�rF������2c���eR��Y�3���C����T�g���1@��&~��D)s$"�zb���(9Kt��)|�#>��@�n}�Ag4�܍�=��u8\(��#}�?0Ĥ���އ��.�����s��b���奐�s���]?���N������_3(�W:��	�2𘃤D���)嗂s�y�PF:�U�!��!��W�m|ejZ��ˍB�9�}�ϊ)��~�Jd�Ĩ��)�`�[�Dd�C��u��9�7�5O�����E�83�~�?�z��c�aP��}�3���3���T>�T�%?�����_��I�$��\ꈟx�Q����g�"Q�ڱ��y�{��*W��Oޗ���y�!�j�}�&E��_�0�rMp��G�xw�7��gB��G��W�}�����.X/�����Tc�2V�<?��ss}�O�ل�B���]�`�m��w�ś0��.u����}-��J{s"��	�ͭ��Qy��!CY"r��J������+�yi2jcP�J�bԔ��ҕ2�8F@�
4�˕�XZ�>��b��03,ʑ�əUב���eU�>�*d�����k����/�(X4i�y�xkORc���] �@ž��Z����!�cOi����f�7�`�U��p��q����nu��~*���5���Hi���?�,�}�h�������ac`Hj&�PP��ٴ��.A=1�5�t���ˑʾc}��S�}��/iҩ� �?�7�J�����ვ]q��b�I:�5�+��T�!�q>��$s�ލ����M����V��w:詟���?��u�R`���t�N���ކ���複��YT�S�߹��a\(�r�v��sɦ�Og�?��`zE����f1�7��>�Ǎ;���ܲݟ�/��k���2o?�/4�+�:gz�Ks�|i$��}|���T�,ϲ?�mJ���i�/c��/l��xs3݄v�{������Z�k��&m��������j٨��.�J
jt�~��/������;��(��(���b���8��6a}�PȌ#��F�C/�٥�+OS/m��\fR�=x3��2H7�p�p^V�3.�V���UW�(c���3�gȹ��ԟ�p�WE|`M�G./t?��O������mh�'��`�{�kX�x>fB��߷��P�C�[n"���e�Dyj��<�>�����n�-��8�H�4�#��?�Z�YՑ#���f� H�RJ�+�qH2W��dc�0*�q�Eh�3��~�}��󿫘�P�>�������yU8���Ъ�;�=�eT:��H���y�L�W_�T���7h<�u((���jq��`��$�l�G2gt@�'W��B�W�NC?��^��"�t����^��i{��(cG��{�ݿ>�E3(��z�	��G���s/�0S�?�i�Xc��?DZ�f��H%/�&��=O�2~�v7��!�M^o�>���̭K���܇H�C9O�pU�F`cp���T���u��r&ާ��&�_��{�q��g�0B���@�|��ɮ�_dЭ�LP_n<q,X!�>�>/_����'>���
���E�i!<�ً�e��F�r��{��s�r��pdv�����<ꂯq��K4��r_?��mW_s���`I�v8��JVLY�%�U�1�97�*��2�7,t@�8C��%��.��;� ����0�>t��r�%c��p�rvt�)L����ˆ�"Q�	g/�2��X�4*�zp:��7)��=���2P��?4'���:�)�L���AҲd��7(ڸ�_3$��^E�/�9�p�O���qV`��D��f���Z�A�#ۄUI��΃��M�o���?&�Sγ%eA��RS��bt'�d�
U�@���F�d�00�|L
�Q�l��P�)���S����i��n�V�ݤ������Ao\�&��A���h�
�G�?YK�2�d)U���*���ɘSg�؃_?�t�	��5}9��LO�8�*��N���ҚN3�7%/��"/�5P�]�T����u�����Oa�G5g�E��о��=i�zO�
C$�󐏻�N.Q6�'�t��д�H��G��	4�E�{�p����U\d�}?�{�����9��찐�]8��Dgv=sw
"L�y�}�uɮ,�?	�������A��$P/�V���ed��8yS-�ۗ0�I�!�Ά��(����C�;�+��5��@��9�%�0EE0%Q
�����T��B���Y���f#�i��;�=i���/ۉb��j��#��y�B���y&q�OҮ��PT�N�
4<���!`p�M9}:;���<�x�8;�z$�9P�M��B܋�d�uݨ��1hH�^�T�y�̦�Ύ�������hW�yDž��M�i�������I~�3n7B��C"��±N� �(,*�y�%Ŀ�􇛻j+04�R���J��^�8
�|&@
ȧ��0�y���ü��^�E�+���4}
���j��,��Uo�Y�Zwy�a�Z��U!��0�IҬ��v��~^��yA���x�Ɠ������gqUB "���C
}�L|5�@\��g�J"�pX�CT*����6��T>��7�����f`_��؛�pLDU��c\\���-X]���}:���y�ȣ�lZ�t�O��ܵ���q�q1�F"C�5���„���2y�2cQ�]��*�.h���T80Iu-�S����:Vp�)Z�IJ��|b�c1�a��)��
�!Nb�\���>���=�.�,����(�d��U$^&r�&lD��<i�
���n�g�v �����`��\���Xg	�q���0�$h�MS�|a�p�i�u�4@$�D\��Ow����)>�����<�ӷ�4��?n��p}'7s�5SӾ��%��31�^f"�����!�-W�2�8Q�R�j`�T�ߧ�[&����c+��v���H(�b�I�-Q�T�L+�L�a~�^�ΆjU��J�7�Dw�I>Cp�q���7T�z�!�O:P�j�U�_r� ���\$+>�g��W����^�J�s*�����f ��h-��8?��,�>�=?�a�
�(�2�6�D�Z2�:2`T%��B+ x�QH'�����R�+�j&�"C���2�w���y�z��� �b�L�1�>��b�<���� ������~�0]�������}�§���?�O�Z�|�μs�ȣI����Dj�<��=ٳ4�}��S�[�s��_
����0�V���J��+2K��n��$���`��<�j��\��W�L���K�d��@��?r7�j?rP�PG�\�IulO�@w�?�ӄ��d�����uZ��'�%��Z2�-�9�hK�p�}s�"�C+9�F��;��?}�Q��-�~��%B�}2�
����}�
��E�gE��C�<���7��bx�0�*�^V��T}J9�\@x�����
�/��=�pȈ��]�@�]D�����\��.��%����7���J�Fʐ���@����RN�	���_а�<)D�5
����D��:U~�I��{�7��E�Pg|�w}A����3�T����F���(G�$�"���^�`^7��������'��QZ/ק�{���󓣁���Ȳ�%�D�q�P��_���J8�$�4�^EE� C��qk�h�;qzp&:�|�1q:�-r�\��8�D�����l�x?�y�6&]+���&b(h�f/{�&�L/'L�,L�$
���x��iՠ��ȥ��%�����C���^��j�b}LL�����]f��/�	R�Vh��鿆o�X}:=.7�2wɕX��e�$#
���+�B�0��</�1�41t`�|=Ɓ?.��1<Wy��|������t��fv/���C�ٱ�p7
ZS�q��,��8��vr��
5=�8/B0nلa�����g������L(C�5荍V��ޠ
.�)�s����ۘb,�8�jH����[��z��1��h�%9N,C8���.B���d-���Ȃ�G ��4����P���/�t��ĴR��
�\:v>�3I�/��3�η\���S�Z�\�_�s�W�CV햡����ϕ�]Y+���?ҚO�oɣ�j{\&Y����^-����|r��3�D"����3�
�4Q|9@��y�.$׫K�;�������_X���~�P�5�� =�LQ&���:i��b��d����"0��x;���U���)�w�ߧ�Іje��u����H�+J�d�����]{��O�X���c}¡L
�Y��,���r�Z�}.�z���4X|P�˗Y��g��4�3.r�Յ�<SI4�
��C��i�C4�j��p$�����}�
�"�<�������G��p@�S��#_#��"m����C+�|�G5W�L#��_D��t?qV��3P_q�M�C���_d��DV���}�-��2fc=��yav+B:��Q�01}�t�nIu1��R��騹(���iG����}n�2(�����p<����3���S���B@�XQ�������c��`F�U3`)�QNb�F}���"P ��K�Ft\�yf.�6J��_�fa�H@���o��h��"�k_z��Ӫ�F��)���#�;�B|)�p�R(��Z��S�.�?�Ȓ�skx���k�����x ^!�"S}e
<�<�>�_[�]'��X���0�?g�yM��A��԰�����vn��\�!���W��{ĩ<j��$�x�P�"��*��R�Nn��dn���{4s�0(\�8[�_����3L�p�n
̣�>��0��L�ʛ�ӛ��{<�-��1Qb���E<=�ک<,0��$S/�(cdxU��NA��t&l?tY�a��	��Nh���֧LV��19gLg��Xp�[��E��g��
�O�y?җs+w'�q�/�ש�褘`��w�sE�vLO�YF�W�قǶ�؆���ԧ<�d�&O|�9A��.�x���o�e�\�K��}b��?`�q,���Q�DsQTD���y�1Bў�r�*5�U���r������2�L�;�D��qG*���+c����m<���Uǹ����/�T�+�q��\�n��~��,$gUL����/�IԜ�ϳ�=����g��5+���4g�ӳ�Zr��5���jh�C��A����8��^�X�n
��Y>�â�0a5�p�l��(��\���0��U��d���kY�2k뫷��B7Dx
��{��n���%��C���_�N��!�������������23Y3Bd��w\ˮb�.�
�U��mc@�v�T�B�T�H
C��T�p��7�=��T^O���LV�1���~�ܼ
��_��P�5���Qoۖ�OF�PA�˼F ��&��(�0��O�1;�V:�My�"�8,¥Y� q���UPu�}cݶ�9���}n=�}���_��t����� ]���q���#�h ~�i��BD�a$����S�Ί�{�2p[�����i� D��T�
�^�x9�)Y׎_q�M�q=�
{}�ʟ���v߯l��@�/:#˞���(m�Ϋ�Fg��{��YV�>1Q/�T]�k�=��%w.����A��œ
[��(����Y���!h��4�.P�L�\=s?C�?��`�߇�׿��Ao�y�Y���V6�����*�=w�k��Vd�*�H���(DN��	ENz_�� �f%�(�bJ�z�����U�c���
�@�)���|e��|c�-�=~��R��_���������a[��P�x��b���1ę�4�Մi��N
`sN�w,Σ��9��႗�p!.�?��"Uw����M�����~�z�RV�2+�A��\��w�~��څ{�-�i�t����� l����r����_Y&�>4����*g>9�[S�d�re,qtD��0��j�1@Š�S���"���zTz����}爛9����[��-
�����v�菾���0���4�_ܔ�s��$Y�g@ck��}�Vɖ��kBA�A���-M+>=��(%�ߥ�7,�Y<*�x`��ʡKfC#���.�
�+�����?\��ġ�?�3����T�JՁ��������j+}c�›K��b�=[�ϧ
��N:	�
��a�P�іX��w��p�S����%)�h�a��Ox�Q�{����3�����U�f+_k"xpU�z`�s�'R�����4u��	��ԙ�hE����v5HŸl]~���,�_���K���O�OuV����j�\ b�5���H�R�^�4A�L��s��Jg��9o�ʟ�D�Tp ӊ�3#��
-|g>�x�}�X�P�G�^4C���r�Erd���S����p*���}б��jǿ�Ì��f�X�]�N��E�e"+8.\ �a$��3�z�ژuM+��"�I����}���e˓��_7�Wޠy��5�:�����)
y7-�i��|j���$�US��&>h?������Y;������WA��>�d�Kd���E"!^X�cgF��i��-�=�
(���0�{<	 ��2
`�p��O���B��4 O)�H�M���-��|io}e^<k�:_���������3���=�\�03��ߣ���5�Y��;�K)�ӛ���p�eD��8��B���?u��g�=����3DG����&IL���
��?��Pz>VJ'�P���`�1񠦸�`�{}��$Ҙ�-V�ox�r�#���W��i7����AՈ��X�XJ|/�����
E�1�����F9ڼf�Q�bC�P?���5�-�7e�O&nV�
�q.\�hG�L��F���"W�³"�Hf���S�����?p�$�#��q��#K�}_�ᮠ�>�Q��Lh����NJ�C*��I��1R�'�S���C7���>#�@�t{w�f�Y�[�)t�b��R������O��}�(��T�Fa��Z�^��S�R��0N�}��>���u@�C44(������	'�MA�%���}���?[�� Z��LaQ���	��D�YD8e�D� ����x�Y�r-'�-G =��K���Z>���=a��2^��e
Q'��8�Bz�3&�h�}���W�>��\���f;�z�n$qB�����@l�+��	H���>�d�������O�	�p�#�pi��
��?�W8���G/$S����N&��s�/�N��*�~�N\��MP:�U�ȭv�4'�QLT��A�ƹ�'k���JC�;�QP��/�Ϋ���]p�f�s�sf��'~'M��:f�/���8a�]&[�	�
��y�d�kR7�`�1:�PrYW��`����N)�r2Pxo�r1����o8�?L=��=�~'D)���:��0�#�$dOZ�9y>1�y�2���)��i��b�J����@	lF8�V�k��:��6�
�B�.��ݔ�4�_ ���ͤ��2�M.�����=��=�ON`�ǡ���d8'���;``�fD���OM�x5��ו*⯚�r���YYb�qh=g�hKF�fO8�b��:~��������®����{��E��PF���L�T�Ɲf��i
��N��7���5����ʾ�uY�UU��B�&~��������������g?�""1Q?���L�_�>_�As�M�c�р��%1�d����LVco��#� ft��lEW������v�
Bz0��r�
��G,���4 e�@α�X_��U�R`8�p8�/y}/s������k��A֏��4h��o'9��n<��p.,#����9�������>������n	*\#�2ށE�S����9?��s�ъ��f�M�D�
�������J�-Q�\X��q!x���\@�x��s#+O�4��,b�B�Ҷ�����c�_WM!�}�� +��H����
`t���r=|/}dLSAIy��%���f��	+��’/���%���<�}�� -g�bA����=|�-v�����$jp��GEX~�I�O��v+C("U�|-�
8g2+G��Pt�Ʃ'��o�������LJ3���B�̸���Q���.~sߔԌ���X��r瀜���t�-[e�KjW�_�5�Dj���k�	���*��b}��ց-iJ�&�% ��η�[�V}ˑG{1���>���H��b�\dp�`y�e^P�Ae�R-�=���!�k��I��>R��~r{�>����Z]���
�T�')�7K��\ש�k3��tɢ�1�G	~Y?�~O��12�VZ��vd�D	W�����P���B$+��<�W�aMxϧ9�H���E�x�
v���������}��k��-����Op��!��C�1�D���j_��>��d���Ͼ�>fZKr����������l��C�ޔ�N�1����1O�<��D�j�5i�1/���Q�8t�����R!�t�xc��ꐈ`(��<�z��z?n@�O>��=�X2��ql�"C�]1
�*-rf�b���Z���)���\����e�����l���b�����3
�U7��)�E|L
Ċ8_r���7n��7�,�g��biȄ��:�=B��۹܊�5�1g��0|��@2�6��Y��Ǽrmzp9�?�f4�5j��U?�xj{$t������bp��MoM�LnFM2�_��8��㑋�S����G��F�9s���ѭx$��2�v2�L�:9�O��ց�����^��!c��5a�
xJ��t@�4��q�P��]>TG<��_q0��}�s_AW�8�m�p��g�)C������/�:*����>>��J0����4	�8�y����:��x��O�e��4/Fj��_l�:�뮥����D?���
[����g+������o�lX�Y44̟@i�2&<8��=\(�r���3����i;�2�}���,u_��۰�u�'�Կ�8�!���3�����Gѕ��s�`	7�1�0�4���B�I�p�]_ԝb��P�3踿(ׂb:�6.�:>�YT�=��h={H��:����� z������š�����^$R7
5����uć
;ɐY������z�s�u��SO7l_z��:��	sZ�ۭ�?��]ʛc��ȍn�������a4�>��M }j\!������8���1W�݀<s�׈�3 P�䋡0?̠0D�`�z��f��:!��2���xN�~���3����$籠(�u�r���6��$]��Y�7�9�S��A����Rߎ�<&*�E���jOn�=��E�0�;Q�`g��5׍\F3��0yx�
��*���]<�x�֒*�CNJ8raxOYiS�0� ��A�u�ŋ��Pٹ"��p�����T���J�����eB��Ԭ�E��G����>����յ@ְ��|���o7&�&�x�~e�v�S-r��������eC�_S=���&���.&�>���dC*g+����7$�b� dW�s"K!�З׽ע��7#х詩#�w�Ӓ��tG�4x�ë�d��Կk����xλ��7�LQ����z�.n~c�`�Y�x��bG'�,�@�F�8/�̦�L��Dq� k2L���fh�e�$)�\��\EC�2��0_.�Gғ��b3U��W���,��WO����=�CN����
�����GJ��c�ݡ:���iz\�+	�<��|b$�AK~�bp�o�����"~`�D��̕7�b�j�Mq����dz��(E�8ֺ����:��;�O�h�Us_X��*[��	�$NB471�DƒP%rׅ~�ڨ��b (���Dȓ��r�Q��L��5A��/��uC���U��y��g��gXp'�щ�ʿ�@,h�����̂Hi�ý�5�8+��V�&�<Z�)�*�=�?	�V����gF��`��?��}C�O�@h!�W����9#o{����Gڛp掑g���OT��C�(�>�h�|mj�����u�_�R�/�H99žw�����z��x�s|N��_��Qy=cJ�z�Lg#���M�T��4D#>��]t�b@�2;��FS�$�r&�2�ԏ�cL�W0Je��\�\]Z�.R�%uw�(ܺL��S�h�f��!�NG�?o����3������1�Ǩ�B
t���E@��9],��wT _�7�8���-���7+x���8K}�6�$	.xATe�R@�ܣU$�z�
�����.IC�'<h�Yj8AT����n��� ̪>����_ff/�Q��2�l�tj���X��nE4�"�?l���$w�4?�QG/�O��C��H���*{*��ID���rH�+����&vv_��ޤ*�ɋ�~�qt�6~���ʹ�W�1���
I�����q�=�{������]���Ae�Of���ƕ1�o}���s�:�.�y\��Ǔ�Tu�����=�{���T�_W��>խ��G+���|����9t	��� �V������Q��n
?�7�~"O��á����8?y��7�7������)�nb�ߗ2��c},��S�fی
�em�X�_�~����3>d�b��ܯ�Ѽ
��6.��?q5�T��Q� PȆx*��`�/��F�xm5���^O�ק�4���d�o�|f��a����6�~�x���Y������z�%�I�u腋F{�j�
*�04��n���=���/�"��~�	t-H��xJ� ������w�_f�n4Ŋ����1��I��7w��
(D���8
��y>��F"�us�?�Ȑ_��K<^\U#~X���M����:�ɷ�=�I�=&4��l�� ��1w��Q�;C���?��#��0��93�|=(*3����В�~�n�~��IW/C��ِ��^�*�;���Z��_og�9�q2V_�,d<@��Q"�z��bj�'��4��O��'c�=����kG���*+�ѱ�u�HaE�%_�C���^���{�����U�׼@ܕ.�T�n@�*.�IXb:Jh�.�>nP�\~��]ӡ�S��O���;�*�=�QY�!$��Su�Z�`�C-C	��>�Tl�8��qO��i�+�<��{k����|�*=P~k�z=���>�Y��v�̏��W�3������Ĕ������}WN��:=!��4������OcD
�q�/�D�V��ŁydS��R��ğ
8����ECT��y)�5r���C�u�!���_�p��@p_�b2D5����h�A V��� �84A8L�e�_Z��`���GA����O�3긯+J��(Y�#�L�#�&>
�:�ïA}�3��9j&Jɚ�6�R'�=���r
����B?\sUT����aeB��A�f�8�d�흀@��yl�Ju�E�~�Y	J��x����>�0����!�=�u��w�4X��eG�Ģ�f@�U|����4��!��c�v�9fI���Q��~Y����p��04M��;ܞ�`�=����3Ω	�ᢡy�a<��P��Ł�r3$ԅ����|�kK��2,
bf�~�����:���ހFU�t�"|��X�y�����0
������,�į�y��ZAs�Q����y�.6^`G4>��
�	��~Ϭh�#�z2��Z6�<�
��@R|!L.��\G%�=�ۂ9:�Ӕ�[-���З3�O'Q0�2�uy�Մ��)�0��/���z?�g�+��M*��y�����$��A1)ƣ���њ� �0��������u:d��L��0�qt^�0<F����{��|��d�v���<7��u_K�
��Q�VX]#�|��,K�8NfS��7����N"Q<��S'�>�f�G��\~qF��%|u!��t.�4A�BM`��׉��f��9��$9�.FmpJ�dcfe�!�\����q�νx	�1ŕ�s�qoġr��8/�\%�'$���1�G�u�\���zȠ(ʠD�rԭDX)��}�!Aua�E�E�\��Yj\p�Y�.���#!hwҾ>�i@y�;��(k{2 �<��
�$���	�A�ܐ�/����|��$&�d�⹥tA5w&m�?G�.��5{�qڠ'���OF}�i�U��z:p2�4��zy��]/�,(#�\�d�bRżl���1�{3_˵�tS/_�3'����������t]�A>���#2�R��LΡ���ֳgʘ|&L�����a���K=��q�����e|4r@�Ϙ��@�4��92M��PM~��A���dDÌl�i����N�X1�#+�L���p8#5���o0�00����+�(�Y��2զ\w7pa�n1��w��Mˠg�)��|��Pܹ>�L��P���)��'���^�9@�94r�ĺBB ��@hH��IZ�D�3���RZ�T(�;ϰ��7��?�{d�W��}�\�g��!j�e�*��쯚���jA(���)��Κ�…�b���²c�Ȗ�"7+2��,?Ό\<'��:4���n1G"�o3�(�����"���$������&�^
,���nO��WN��n��'��e�=����:����z�)�]���z%�����ߠ�ZB۹�5�c���J�>���{�r۟*jY�8�&I�&L��),j~\/���sʯ_�ȶ
)s"`��
�7�u0�т}V����Rr�U�<ggF�?�k/��Z1�T��T{W�:�x4�,-V� �\ѩp���	V��y4�=�Y���Y�w�4:��_S�Ճ:�
\X3��#�4��ΙLCVj���ʥ�qG�.wH����}
�9'Oq�LJ��>=?�+#,��W��L����q��'~,�t{5��4d�_�!Ec��Vū�w�a�*0�������Z���Q�T�
��<�F���4�\H0U}W֫� �#	��-EB��E|q�C>�e���'��R���A����!���_����
�T�����3���fA�@q��+��<줠�s��C�~��A�u\B|�Nd�EV?�
z9�΂�~1f�Xk�c{'ќE����{��B��E2O�&L��'�V�����_Y.��M�T3$�ef��ja�ctQ���x\<�;x_lq�;~߼�~g�:Áې����!�A���|.�L�ʘk1q�!;�`ʣ�����t�H�&6�u���ܦUq��L)qn3UXڜ�xg.�r������
-OK�ܚ�J��Օ���� U���W �<��!���.��������v�C��A�M4$��0
io���/�idDJ�ί(�/	�/G��G��PI�����ɬ�2�A���E�e3�z��rD/�~�n#���W<�}4AJ�`E
��Á�u��	�M,��/�"�k��lQ;t\�[�O��a�O�ƫ�?�z�^-�Tl��މ[�_���(���N�2¯Z�yn�~�f~!�>2d���M(H]ώ��ٗ�W���:<���*#KOy�>��YY[��A|�I��z����qOHu���*7�Ŋ�.�ϩ��2jn�}ːu�1��t�n=`\Ō+�(�\6�a�C�g�k�.�h:�M!�.� \�i��09C]n�/���'?`9�.��gR*���3�o�P��/U��@�m��2�?*~�F�Ùq��&�T���Ѡ+T��e�@����=���BDWX��A�3>	��n/��_�&�[�-m������93(w\����@���p�ϱp/��G)��p��AHm}���Sb�e$�*�2$��g�tV�5�g@��ޕ�tF6P�`����QH��\h8��u�L�
��d�:�9��h���2G�~b0r֡��"��ܧ_���r9Ku���L2˒��94�]3���#s�g�_Ly����;������J������ȵj���2U<٠�zk�ߋ�ގ�����x�_v���&��c���e��xOX.�W�����_��P˝nM�@gO��h��9~��y'�@�m0nLldg��F"$8?��j��9�!`�*��H|xe5���{�V��S*�i ��@+�9���[��As�t/�������T�kRd���"�Ku��f��d�^<�L�)�5DCtl�uR����b�=���l�����~�ln.����L��u��|���4��`�u�f��St�7tO��T�r��Ț.�n^��d�뎺�&C�&P/!e}O���n��us��=L�Yp��q,WQGtc���%C���٦�;.%.(]$%��2��r�S�f`|"^�a
`�%��T������_�3��!�=ɂ���u˼o9�x�89����<�F�U:�W�~�t\����G~��$����R�b��㏥��W����-D����K+ɪ"q�>�,�X'��iL s�
(�`r��xc�7J!d'є�V���V�C֏(�[�L�,O�|Z�fI�'���$b�`�R��W�T*�_.� 1�������Pu[���?�ɧ��-�ą�S
O�k�1*�3�0��d��t�3m�#0�Ʊ¹�BbtL��
&�L�b��~	��L���p����˦�1��2����O����7+üLc�gh8�8���qYq{3�+�bpVy�����&p�52|V�@d��ȹq&^s�u�3��'��:��Z���M3cCa�s�M�$�g�.��t �P+���I>��@�	6��U�Y�
V������<Bu}��	�@�O50�H��{���sW)9�F摪� %�Ғ�E~�+U������p|,��>"Zj�ӱp��<��꣓�e�L�]��rd�9~��"��	��w�U�E��ƧCy
T1滐��\�E�.
.G����1��dD�
u���e��5�As�g$�����}�4,� ���g@%}����?���'��� 螌�9vd��#ɹ]��g�i�r�D���h�%�2a�p��{��o���]u�2d�t�CK�2�39��Hx�^���Ɲ%N��
��q
E`�1eBt;����5x�,�C�=aGaE�׸�!��X,�x�Ȕ����9��#O�����9JAfR8^��F�_YT���?0ʠ��CD����U��[�M ���*oC�z5�I$h���
�dWy����|MXj����ɀ���ǐ2<�rL�5�0�4
��b��b��#��P��u�92��fͥ�����t�ϔr�^�AS�+�tC�8��.��n��s$r�ɔ�oY�Ԙf��L܊e��P��Â9�\��p9���h�����5�"cI�28�餑�K�X.��ҙ<
�F�'��?�p��U5�a��@!]<�Z��G�� Qў0�|�Ĺ�F9�}~h �(>\�#���@$J�E|���4�)���Y��>�A‚�U<\�	}�\�RU��@�=�d��@���.T\G�de���AOIr�0G�2��a�{�4�f4�.@�X��Pn��p�\��厮X0��W���(R�t04�Gɋ�,��a1DžM�Q],�R�T�"�	��p��\��
Sq�ɚ��1#��L�7\�d�z�M���4���+�)�<���iW�=q�T��rXXZ����DƆH��C�/�$*�
�D�@Dq=g�D��TE�ã����Sm/�2O�=��=vazq/�1VG����B�Mo��Fn�K�Z6�����Q��1��dOK���0���u��T���ɂ�e�yL)���3L�q�r v�C)�>k\���� �e��%��2�3�+�@���Ly���M�j�0�C�2ܻ�J9���?+�0b����L���|�鎽zGA�I�K�>�Lr�#r��B�D-�ý%טb��J&X9L+iV��0p�U��ܹ 
 (^�p^Ȧ4��s�D�+�Y'��ܥ ⤟�\�?������j��n_�F<�'.�~��]�3ܓ�G0���6G32d�Q���qk�̓ÐS.��:��p�>�8+�F;�4�Q�3�
�j���GQt��8�9�`�9�3�!����3��
5�s�(�
Lt�:��&��u�>��~��n7 �ZN#����L�Ȭ�h�����Y^���O���`���"�L�#��8p��2aԞ3�A"�Ҁ5|�r:p^�?�=��l�>/���ǭy�P��Ѻ�/n����@��gQ�t�L�1�f����s�5�e����&E��g�գ$q�XSC�
Údbp%�~#9��,�\\iK�`�\�[�NS?��~ �-�Ӓ�DY4�5��7)��d�\ɉ�r��9����w0��2?s674ɊY�X�3��)r	1ˁ3�\�<���v^��t�\H��N
D�Mq�,.�E-�HO/L����/�t�7,�f�
�*��>2��-�:�&VrL��ɶ�X��55�8��y�S:|@řU�4���1bs��d�g#<x��p4��"����m���90��;�
S_�i�1�'"�&2�2JgtɃLGs�,�29�����2ha�T&
�.^���!G
��.T7��j�'�ׄ��Εԏӏ	^)�w�'�QO��y7/�Zu0��3�s��a�0ґ�Ñ�Wp���vr�GGt�>3�3�Tɸ8m2�ǁ� �#�rΙi�.nR�˜r��f
ƌ����.��B��a�	�Xe���2�~�[�Lgq��d&L�1��ӗ⷗4��ɾ�
��}���{u�57T�J��>`\�B�*���1e��fx�B����x�00�;��tt��7L��	�đê0�[��5��`M8p�i����'%���d3�r��^KCYri],Ǟz]�Ve��=C���ǃ��a�a��7�8J2���f2����_��2�|P�9V8ϙrC�p���0>�+rLmQ4���@�@��O:]�/��j@Է(���ye��t�@��rc��(�S&hM.:�rd�6G-���7@i1n>�.��<ƻ�b�d���a��x��CG#�i��郌#���9
1�0���&>
e��
ּEo�[3F	��4�$�rc�ŲL�7'�{0���܃��-�ˡ�D~b�뀢���A�'�q(a�1���0{t��s��,�z�\~�*��ֲ�1�2Ü5��5�
��2a��2J�'�3�f�-�yc��+�E���T�W@.��i)�B�L�4�#9CM\��!.����y\�ƣ��8e��\�&Q�u�&��s5�0dǬ�

Xn���14Fn�q�~M;������f�1f�� �g�3|r�i��&s���+r&x���4�#$�^�]�:�g�M:c�uH�2��O�G7��I�E���`c>q�r!�q��V�1�|Q��]ˍ�/!�:eq�	&' �D�r\��5�St⌕�]2L8q����F��|Lb
d��TǛ"�S%\1q��#G
繶���G�/��S��Z�&��z02a���
ٚ��$�x&b��9��d�-��ܸ|FY�x.WSі
\!ʺ�L�Jh��4u+�x�V��q�?����Į�r��NTq1��-���>X\_�i��W\|#�j��*k�q0�rL�1+4�nF@���2��f�����0G:Wz�2Lj��\�0�.ir��,&YG>�Bfa�v���o��X�:�r��	��:q4~,q�����7G�Z<��n�b�i��gƌ�.0�&�d���`|�e�c��� La�~c��qKsz��M4�0���cws��31�ǚi��I�Y����e����__�Ϧ�t�u2d�r���-��0�,2`p�&9�a�Z]u�2�
����2e�@Ɨ&��E��9�:�0�,Sk�����>:Uεh���S7(�(�\9��_�仑���~���]~�3p���2�t�f�5r��_79\���s�����U�T�dt�1S?	�_��Q��
\O��-�q�v��Q2�2vc�㺘1�L5O�G�I���\.�p������,���1����)��ś��L%43My�+��1ר7U��8�'��5�ƺ뮿�>dƙ�qǏ.
bɃ�P�ܟ��W2k0�J`+$rq�2crFZ�]3�Ɨ)�\�ʺ�=pO��t�0���u`���OBÉ�Ź7]Y�y��Ny���q2��_%5j���3d�Ft�0�5��\+t`�=7.B�8��,�9��	r�1X�'�u�u�pd�s����x�H�1�e�~)�Ve�tf���c�	�j9�-3��ԟ!��?�\ѕ�&��"�.p�R~ �o�4Ɍ�|n����&0FWBcn�
d���S�!��Q�
9Q�M�c���w*f뙀3-����(�^�˞����g��>	�8)�p�=r0e�չ>!��]�Ji�>Q�����4p�D�4rF�:����K��q�1��,��Q�r&i�s�2&fw�w(��K�&�"ae�!��)����Q��ZPp*|hL9��
}�ja�|E�8kX�k�:�k�\9r�"je��\"d�.Y�\�l�]!�|Rg�q�q1ْ8iu�Ø���2�r��1�pL�9p�w���'¹9�3)��
e�(���8~N\�:�;�ʎ&"34ȿ�w>�K�i�j�m�+�S&W�~
s��Lbb���n0�5�.5~r���f[���t�gO�n<s�@SK
9�e�7V�0̔γM5Í0�2cJdL��L���/)��L�a���K���\�XL�s˝~#�27x2��v��ń��.�
���Ek�|F0��|]��pL�_�L����$ @P0`p�����5��������F��\z�o�<�7�o�D���<���_T��#�;^��w����~�����?��C���uꌏ�|��jk�߾<�==~#���F
xo{���u���0zg�y����&�O��C�7?Q��\�`�}�3����Z�A�������ߞ��Y�
7l|�����x#N�YT߃���C�X~`z�:=D�oS�k�o�ߤ!�߆φ�5�l��Sv�{^ZC'������
�o;��e7��kC�o�k��>`��4f����(������6]�X�00`Ț>,�UV��o�>;�,^ut�V~�������A�e4�����~�#{/ب�C�����a���_�m�Qo����u*���o���[���͂�bxo�׹���ќZm�؞��o�W[�}kXee�n?=���,_@~DA�G���9���g�AԩP�@ւŴX�-��*�"6w�o�߁��5�N4a�A"��Oṯ6f����B�*2��M���C�B�ӠV�u�A���0?t!�"o�q�A�	��k]��pe���e+iHTa��,XP�mlGW�!���`�)��IXp�y����,��.Zb�Zϸ5���cSb1��+���5b#�+okB������a��Ԑf�!�Z���`e�����Bl��aP���d"Wb>��ܠ��ck"1��߉�dC{S�h��4<O�<�1���%d��F��P)���f�*`r ��\�Wb<0�D;�g��ˣ��1�0a�0$�4��a�^#��;����*�dO�R��mG��W��@`�L  �S��J��Y���-.u���;l��ಟ
�pG�f-aV�`a��B�B
���hz؝�%nJ'"+«Q�-D3{�7�9j�;��ț����4!pq�p>�1��W���$+����r+�01�H0�����F�iNZ[�P�S�0��f"w�X.w��~I�5n�s�;Z�]��3@�,y�	�b�V�����T�(�fA�J��3����7�����ۼl��ɍ(� u���r۞��Zt�h�O-[�>l��C���U�v"��!�96�,����b�
:�#�+.E�ZXV#�`�J�K�^�]a���PM��m�T�n׻r�=�����Ӷl`K+(5T����]C=Vo��$3{&>*ά)��6�Y]V=k*��j��1��vpw�9��2��l&��	@�w`�_�V��h���;X�+65������%��������5u�po��v������Ev�H�*�Ȍ�,�X����0`A�f���A���oj�����K��#�)��]����U�{*nY\V*�yO�n����k��Gc	��C�Y��¶("�DvJqyxJ�%{Y��V����.��7�p�e��*�z�hr�B�	�˵�V���u���r��@R)^K��\�b'!��^��D��gQ�á�`�P�t9�k�Yz��J�0s�� �ZƦ�u*��({��U䥮��X{N]�X�5������F成��1yҪ�R�rqӓb�j�89�
^��)�gEc�h�e���v��k�_
͹Fh�0�X������C����ʖ����֠S]�Ai�EH�����T� ;�YqSW�Qҫ@�w�-yS����1���!��1�C��k	
]�a�h����H��JcF:)]�װdP�NE*����K
��Wu���B<؅sQu�׀ưr�Klx�f�ul1�ox-5��C�[=j��ֳ��E�{
�R�NvN�B�݉,�?���9�rj��ń���誜v�ЫBU�
J��#�4Z�W`
%��+E���f�ф)�WU�tj�D�Z�=�6@$@4n[�9��h������c�m�W<Gℤ�o!q�2ŏ4!�,yI�<����-(�V����8b�&"D==�Z�%	^����r�c��2�a
T�=�Umd(�#�lV��kCK�.J����8�ej ���e�F�|�wf%[��Iɋ����� =�&V-��F@��(��gt���x�q�UKJ��w��'��T�*��R��+Y
j��΄0cfm������`��~ۍ��׉�+n=���&U.�"hG�%�:�[^�1@[��S��ƄZΜ1w.�Eܻ��R[Q���Y�*/�9gq��'R�۳J���>��!���!5�FѲ���ʥ�\�j�q�Vg�� �����}/Ȫ��;���lT+��A~������)�E542��Ʉ���±�LXŁ�N�Ƴ�"��42�v���#+�.uz�.td)rp�59E��+`��k8���%��[o���ea!8�<2�#�������hN�*X)Л�ב���Q�n�}�ɖ�Zԫ��� -�U���5�[�pZ��yiĹ�ں\����B��g���p절 "���p�$�H�QlS�K��xjCT����z�Xin�W�jnM�Z��Լg�%UF�5��BC�N�Z)EOI0�C9H&)���>��[]Ա���h���d�]-Qi=l~-�YK�@Xj��sަxI��BX�1N��#:8%��m�$)�>{�!�lhbB0"����T�tYDb���5��Z��42�����Xbk���V�ʡ��b���V�&h����<�|�)��ᔳ���b��N�X{-k���u���E� ��ǽ��J;��Jjv� d@󧛤 $�4X�:�h���1���H9?��zl���9mS�*qk���j�v�*�>�-r���Lj�Uj]M4]K��ȀMeT�h��"oy?��BL�6Z1X��4���p��Xm�`C�R
���l�=���j{^�u��d�U��ƺRv��h�`���4H��`?��:��as(@�I���W��XRΤ��P�ʱ�/F��x��;�e�	�r�QJ\�nuS�U���r
B�6��1����e�I��A�p�N5�~�V֌����
�c%�?%�{U��t�r��U)�[�Z]@d�XsXb"(��0�1��2��A���@��q��|G��j�fԩx��
�U��_˽��N@��@�ԪЖ�ě�r�&�w��m�``cg�"={0D�$Bgd�_�~���tq�E�*��eZ�T�8<�x|o���x��QÅKJ� �"��Q��!h���"2?C����� m���k�1Ձ;���[���Y�E�)�^xv,`�U��a%�	Lgj�b��A��]	+���3���
�	�Y`*�L88m[��Gkwr
A�pacl'�5�@�4q�$��p�H��R0A2��aфF`r@��Ւ]��q˽�� 7J]�Ot��C����au�E@?s���A�L�}s�:2��u�C����*��	�{������Έ!�TN�J��0tF�d�	UU��9�Y����k[���y�EVu���xkD��8t���@������=vVR�Q�e#D	��]�jl�Q�J���Z�� �@"��Px�����@`̤gFjh�Mjn	06XTEO�S^����);��G���te#A��!�s�����: 
�����CD2�*��_D�B�9N�h�jL#Z�@TT.�R�>�AO����P���Ц���רz�+�\�"*V=��!�e*A]߿^����WЮͅ��/@�R�O`�T��Z�P7nݷ4AB*�A��㦭�)ӧR:�#�@�
�
��=��wE
F��G�F�P�SZ�G���yk'�8����C�#�i�Z�w��=�z'�0~z���>���$����O��������>����/~��@�����=��k^��w�����8�?��������:!1AQ a"0q@P���2���#B`��Rp��r���?����aSdB���[C��-W��E*Q��U
��=A�-֪��`���*V����zQ�����L�̚���(S���}�EzC�

�>��#��>pr��6SM��"��_�Q�ʓ�EG�j��B'Ȃ����
�N�8	!?����;�7��Wg-���P�^���#��&�U=ր�0\��b*�Q8��<�QN�:@�&����Q�Mu�T��RkB����eʏ2E~0tO�T?�ʋ�n��N&_r�L�(��聙E8 n����7���z����|�Q��~,������8���&D�%4\�@��18A52*�PEr��K��\��,i�(Zt>�T��Ό���aVtW���T�*�%��1�hR�8`n�F�?�>��al�Q�
o����t3��!M��A��Qi��t7��X���ȑ�HΪD�W�1R��bw�7W�
�.��QdJ(�^��!GH�(�~�"i��ZV��db�9ʑL���n�铙��"}�r�J�g*�����ދ���#�b&�5���2����W;����*��S���§eYe
��?$|���PtM�ӕP!QB�P��Ϊ�]>�EM�vD��]/�"�V
�����s�~g�,CBD�rP%:Sf���C	� ��(�g.��H�E�ӣK�
B�(��>^����9�3C��*k:!��
PT�[eE?
Zjn��R�h')̒�����#�演����N����Jb6N���(yN�X`��4�N���Pe\�3Ң��Bߢ,���\�}�.�8Z���ɢ�I_tTUP��|@4IU���B�l2"�3��D_ٿ����Q'd
j�T��E�z'=��R��&�V��n�hs-1��L�:b�Lc;����EB���A#*e�"��T�u�F�;-EBa�.m���}��$���A"�kr�U&��j-ŏ�-'�Q
���A�*.�B�B��B�`�)Q�)���N/����A)��AݏE:��#-C:��L��XM��h6)��&8|
N����ET���G���VwP��H*(��(�h�����8�&�A���芄���H�NP%�kfPh���k{����P�#p,�1��-b|���6��U�Rzۅ{�����W�$�&50�	��(���ߠ(ԩZDɲ�����-����CP�N�D����� Se�q��_��;����6�*��ʴ�Ĩ�
�zJ��

l���DV]EU$tLx_�i�T:/U��,P�K�'��2�EUU��"D]ECI�"��Q����h �X�A�B,v�i��g`���Rg"~��.h�Ë��I�V�wT��@�Gd�`���,�~�j8�'hD����@����q�(*�V�j���Zme���SqGQmBH���C��� @PP��RQ6��9��R�(��+������jm��4(�D�J�"Qs4p�"�Q��i**�4|��@��TӢT�Eؽ��ž�B(@�&6�)���m<�z�B���'�n�>�4�r�\'tֹ1�d�9AR'p��ME��{-ؠ���ASG��i3�~VOp�O����iq�U��
:FȔ<��;�x�)�#X��&�b���tF+�Q�*��4T���3��r��7�T���Ĝ�(��x��O@4@z��B�CSM'��,����"[p�1[���jZ�U�EE�A�Ŭ�b�MLd	�eP�(*
�=U
��=�A�6]d]���;�GMr�“T_�y�V���vN"N�C^6�U��4c8Q�s�( ��&����>�X�G�6�(a:Y+P4(5���A$���jb�=���r��e�-$����d�#��d_�@�A���%SXZ� N�"ZY�@���ʟ���(���T�a�{5�ґu/�p�0�h�t�D��o��u
��"i��E�B��q�l�&�n�a�Ȣ�G!���i�T�
�F��4�@A:�\dE���\Xr"a��i�	��� ���:<b����D�����5OL��UE쟠��)�����e}Q
Z�<��Bd��52|E~h�_��CtM�e#�I�Z�;�D�^���

�H��:����d$tB�vC�b���y@�J�"��
Z<����L�����BT����Pit�.r�qt&�͊-����B���W9U@G0\���A�[�T�&�AO���=S(#(���F%�s ۲�����tPJ�8�Lp���]��@�P'Y7�k�D�@��=��y��
���
"�
N���M%��.�ᯄ �(�jA�B vZH(E<�e3��Ÿ�{ �ʪ��)��|n�I�T��P��{�T�J�Fp���ƿ�p��
BQqA��ߔ-`@�����M�B3�B~��O��7L*�H.�A��J��MŊB�Mʸ��u��P`U=�҅i��D8�,�����Aʪ��ĕ�9���n�/Ts��C�u�ZL ���!O�����p��"%���G�*�@��B�r쫜��4�{*�p;��2�a�6@
�d�QU��
.^�r 'ćW�M���w���f�IFD�^Iܦ�Ԣh,�Q5�uIZh�U:l���C�$�H���0�LJ	��PT��0���4E�M�Ui>�����ZJ.7���M�Ϯeͥš��&��s�h��U\������kEL�A��6�h��~�E�\���(4�k���6M$w�tR����!h���"�?����$S�"h��%@C�,j��I����[����P`ب�L��-�ĩl
n��duB�ЩDM�>蹢QlE|���>��.@��~�����|�UU�l�SB�ˆ�l��
v�X"n�0�Q{��(��uwNp"P��]����֠���[t���h�&9���vA�E��7Q�ɉ(T�����?$,ll��d�uS/��D�Bk��U��&6�t�.z�l�{�]�W�e*���Ȋ���Rge��ZB�I��'hE����@4�XбC���C@�
�������{Mk`�u��AcB,��Mx6{$H���"��Z}�0t��(i����E��|��Fr�\��$���m����[��U[:OAA��z��Q<"jS\|X�@R�t��;*�l�Ck)�cG��Pk	6Z�9E�R�“H?�-ok&��*yG���G�}V&3D"��`�N��O‡�"*����蒎)� ��H��傊r9�ʪ�ʁ��ё�	���k�P��EJ
t*��%
��e��z`@�QE
�8Y"���@�ZMB��;��L���6A�-L ]j�N�@8B��&ұ\�g�:Qud-5�Np�C<{��5��5���gI�XMn�!9��,����7R��FGl�J�T(�i��6\��@:w�(\ =T�*���������!�V�O�ҁ
2����Q�p�ҩu��
Q ��t��SMk�IM��%�T�vZA5E�����u�O2��9�k�U;p�@Z�z ��l�΋�dT
�X*�E!�T�x� S:��Q�A��L"P:�t��k(��N^%0��T

Q{��"�D�kr�{C�U&���)
���F֍��t!�tI'�.�GDEQ ��E���toZ�1����)Ϙ%0`���wE�#����Fc��7��PBhx�@ێ���Q����N���[�JqD)�D�[{�|�s����7UZj���(4�dz?�t��M��^�

T�T%A�B����y�%8�5Rw��-&��4<�)��C��>������|0AZ��I���I!�Q��,���	+
�Pkb��q�*d)��^/�D��Q�
�e0�@"�p�f�[�V��c�>%UU,���Zj�JB��	�A%&�;u.P|(���O�B���T�d��H�
@Ok`[�Tp�΃$[�	��`
A/Z(�@�(�Xm�yhDN!�Nk`_t\&T]{C"�k2��F8�
\NvPeO�*�7����L��F���,�$�U'e#tb^2�\}��h2��I���+�>��P2°��JqD"�%�R��Yo�-{Q{,Mo5�/â��I�5�^$l��A}?A4Mh	�d�Q������
�\�9][܀��J�߫t:�O�US�9��Yke!V���0��Q��8��x4R��`����@�G읍�q=֪��Gߺs�8D�"1���@>��C}���v�K�L����������-—��"�׶��@�㢙�+��(�U	�j��FQ�4����9Vr���p�N&Ȏ�k+r��6)P�8԰	�B@G��rO+b�yXrZq�.���I���@��O��"���~�`'ꃤ�a<bm���A�6�-
��'(n�����e�Ι�I��9Ӡ�y��jfD��N�(�s��P~!�#(+SQ놪��j(�QE�(lS�=�>�8p�����O`���R�5�G���aV��F�@8��4M�O��&�<����o��
�+r�t���/����A͑mԴu@��U�Ι��t�D��Ap��F[�?t>yH�(�%4��6����V�MP.�]/d�"�{G�����%8c����&�M'ٰ�&�6��N�āh�!�j27�i�ɧ�F{"戡��a1�AM~�g�;A)�Y4��ka���oB��6S^�����{"e�(R|���*>"2��NQѱP�^A���D�8
(��TA$�'4k�sq����pf֌q��Qt1�XH��>�?��	��� ���s��[�'曎Ɵ�Ov40T^��|	���'�#�`Pp�"h4�uIe
v��;�Ӻ��0��ȃ�!A��J� g��?�<�9jl-%Ba2v���[9P��R���ANq�G@E���F��(�۬,2N9+��1?(����Xv=�_���G�M�	�$��iLG��Đ�P{��X��C�R=�$�8V����q�4�c
�T�'�m�P�
9Ri�S�դB�&����*��H�-^����OE~�B����NS��X���Bp����A�@XFY;A���T��h+	�������ظ?	�~��X�$b��v��"H��Ny$��nɘ�%�Y�Qp�[��
�a9�@�vMsL;wBC����<n1�R���
�* n�(
r��UO�o�SȜ�J����T�*QR�ƒ�X=G!Ev@�Bj���l��o�3Y��1���Q-��F}ar/D]d1Y�ֆ��'d6Cd����V�,1�U������^bX{���)D�g*tB��#Ÿr�U|��äBخh�A�N��]!#���,5O�T���h��H^ʀ��S~�����(�G�L�uYBz�g�FR�ET���M�����[���2�T�1Q��"��0��$TXIz`��J�(:5a�)Qe��&�9R2�IP%I�
��=1�[��D��T|Be�Jҵ	
=U2��r���7�
ܠ(��
ʓ��I�z�@����Q�aG\��T|FV�"�֕����Q���e_+s��G�����o�{������$B��%E�c*!�O��*r��ps�P���FE���l�S�Kt�eT�^�Pj')E��Pu��������r�:�ʹW��~�S@���>r%G�"�m��#|�u9p��
�)�5*>Q��W=Yte�P�(�9J� +��\�*3!9�SJ�Tdh��r������p��\��UQE�ʛ��ݧ�vQp�G#�r
l��G��; ��;���y�'''��5a����$ 0@P`p����D߳C^��������
��0k����˿�֌"h~�����f���Ƀ&�~��@���u���_��L�ۮ��`�c􌟌���ۯ�?F������{�����k��C�=����!��`��M��no�����_��0�;�5�5�_��_Y��ߧg�0{�?���>��©���0�zu��#�IEZj�����0}��&��}�׵M6�V�H�5��:o׳���S��7Qݸ`�f�7�]��ï�C���걄����$��u�;�1��>�~1�J���D��#կq�ݱ��o��#�Y'^��,2�M�e�u���}�͏���=F+5	�mtE4� �����G��@�zL�}t�J����fM�`�w�k#����(T�y�?��pz�:nSmV��z�����;�S����y#�u3k�c]Q��G!���$cX�v�ou�x�X#	�CAЁ���O�
ֲ�8#Q�J�n�eX��
Mkٮ-��Xu�L�ɿ�B�*B�\8�ǁ����k+��^�"ʻoѬ說�y�S8Cр�-M{8*	���S�7�Ʃ�e5�V��,@`�jo�'g��"�
7� zUBZ�"AgR�T*�_ȡ@y�[솩�L)��5�=u�7����$C�,I�#`v��}:�
�%j	.l�]B��Ts�d5<�j���4�d�y3fkFh������xS�o��?x
T�K�e�$�eE�n83sF�jA���MV=n��dn����*f�A"n�,1X�Xa�;�o�=X�P�e��Y0S��ё�>��Dڵ�aڭ�0u��Q��@�@�F�+�L�8�>��UV;�J�Iomi����e��gF!�z�µV:�U�]���nqy�q��!a�0z�z�U�:W����o��
�L�Y\vZ�h	�������S����V�ғ���=Q�pU�08�����7�UҫFj��a	kD �6ᖗB�]4�t!뀽dcDZ�֊�5}�]7��aK@T��o`��A� |;���Db�]D����<i��evl�D:���#�5���#�3����t8��6v�X������(=�k�:jj ��T��0G��“
���`�#kL���`�c�	�;�����2�H�UC)XN5�s�T�� �3}�B��9퐏I��UR1E'SF3;لr`��XS4f�����b�R��u�=UZ�+ǩ�!J�9f\q�!I6Ďd�NPc��U�!jUx��k��a�`����*$��@lE��cZ�Smg9U6�UV����S.1##"�D`���P����0�^"(��U!,q���).jQ�Ç5��&2�B�P�#��u�S�2�93]U�:�Sl���z��쮻��Qg��+rDq��u�/�cS@1L"�\�B�~�|�($�l�.��Q��.]ڥ�+{CP�w�k�mJa�0�֡�7!z��WZ���������z��;$���kJ�'d`�k&<Fk��"�\�`�5�98/hW�'�W�7����kAU��D)c���b��f�V��Wt�ȽFx`r��lv㠚/��jrF������j(��k�]�� E4�MFy�paf�k�����W�]��"�U�6
]��,a�LJ+�;o|�dg@�
[5�ć��G}:�J�v�ַ��ܵ��.L;�uVҸ��T(j�ya��kFhK�vG���'� ��{[^�L=���Hj��)f��xsHˇ ;�RIË����x�3�(��ҬV%�L���gsQ�4q��
[��;kX��@ʓLV'��M����W�G��#��R�k
v8�T�=�:j��A�j�-{K�ah>Ь@3jZ����hC��Z�͇/�Nm|	m��0�_��=<(D^fԊ⺪�@���!n��o ����r.+���Yhh=���B�H�z�I9t�V'�@���?H����t�Moe����-�WUzAs����g��ۥ������Lі�� M2�.z�PI�2p0!�����!Ò)��JP�N<��y��bP%_���#�%�:Ne�O��7m�H#;8�5�N�Νz1�C$`�`�@Xzw�S�R�b3WUt'�ɼg��L�,F�ȕ-Oz��=4��R�\��M"�&ɖ��R��X����u�U�u��������}�N�	��x�Uk��H`����]�X�5��% ��-�46:3��i��ƺ��̐l�ha�x�dp�e�uhW����*������	��D8yI�lⴲ;,�\x�`1��X��3�u�g��<sQ�l�/�eu\i�-Uu�kJ��u�"���:kN�FJ�P��R��3s}"o�#�qIiMhܞ��w��pX���PSh���+򃆞*+�x�ȕO!붓�U]o]o�2�9F�+a i�Mi����D����B#)�o`�!�>��PA0��H�U!<d�����o�xW�,���=�K��X��A����'ȋ�-�+�Z�uX��0� ���Cf�e����!�����J�E�c
��7�"�
��=�C��!쪪����Y?�=^azT/�hK0Ű��{�!��͆VXHF��M�C"��V��Sj�#P�.���$-�'�|O�RyQaSS�lQmoK��Qr���c�1�A0F�E`G��.����Q�?1 ��Њ-����P����|�]h��ڼg��X����WK�qR�k�A&z�}��+�R���!�z]�B �*"�+�,�c�TV������&�/�K���j��w��5�3;\h���
��Nj�l2���Q6	�a�b~��`�`�0��	QXԃȷ~�Ɣx1_wDcO��Uo�;5�3�]GÓ	9X�8E5�@E��P�I�%J�0=�4O��ka,T �ܶ<D63�kz��ڼO0�U����-o��|:�U�������hM�e�̀��#
�=B)�@M�b��+��?���Z�5��Ğ;-E
��Jj��$2��J-�ے���jy.�?��O3ʩI˰13ALX�G��f��I&l��vc:1���V��p�٢O�6TBkl����E8���uՖ����R[v�vc��X�{��NN0��H�ն�u��cD5&���;51�!�������(����y
��=���ΣTb�00�>ł!bI;ޡ^ q&2�,$��R.��2C(��	U�ZO."��;ZMw���?���{pf�ͨ��Wh@80�ݑ[C=*������m�`cJA��w�ط�EM�S�6����s��3klI�I
�	ÁHO�Cl�4N:�X*��	�����
���Mh�%��N��	�m����P��fi��x!���G��Df�f��e`]Q�@w�4����H3BWFo;wU���2���	g�ĥ��B��O�
�.��քq����}�T�b���m���	��8����~b�!�dv!�;�;{��ƏM�ΫǶ�	���pL�$��a���	R���`cpM�5�Жx������� j3\2�`vk�p{��DN�		ff'�`��\D*S�-lM�����{,If~!I$�9?�ne�u]``A �˘}�{��ŋ��By�g?���>�C�wLJ\Ŝ��9�Ь&�o�%����se�����S|�X�&���]��y�`��E��Isa0|����8��3��Y�y��u��z�y&��'�:���?g_���������� ?\�����?�G����?����W��7!1A 0Q"@aqP���`��2��#Bp�3����?�ّ��1��Q��,I�MC_�'mEU��Q{�n��u	�i���nA62�i�\t9Zc#�F����]P�� �~?W�!nGK�*�=q�Fz4�]y��]RmY8C�?�F���l���.�=R������k�~��OQ��*Չ�.Z|�,w%���8'��r�����ep̷Zs���N7���#VS�U4�(]�=JE�*�G:;�gtE��Zy%�Z�TσLc�{-n4�RUU�%�)B�.�Z��Oa�R�Sf5�_T��2�]y�#S�=ID�+�W̛ХjʶPN�Ihz�E�${3Xܗ��	��*�C�;r��Mf�їN�;�8�6�,[�귡M:ܪ�D%țP���M�T�V�|Zv*��	z�L�wGl#"�US*��e���ʼ��H�2�4ޱ�ed$B�pHln;�\��b‰�8��F�͓�<�nD���5���54i�����I�F�Q�:�ϱ��A*�[�T�vM�V�y|z�4��n�bu�p̢GJ�p�]�3�A2҇�)��bn����"+��S������sX�]���l�ߪ��6 ���w_(�Xp�$ځ, �a����Y�TanT�Dñ>���z2���V���Y��S��I�\�D��~w3�|#���&c5����[(��kХnv�Gq2jH��ӝpK�t&�\`U�TH�N�kK��\�Jk���א�(�$��̑ОI�T���+WbXF0F�o�:�#���B$%Z�*ܩk��D�:q�l��T��z��~����Ϩ���n�+��^�7t1�Xܶ'��˂l��#v}��l/S.��ȷ.k����*�
�י��4��|f�bp�S�kۡ4��M0�����Y����.J�|%�m�i ��eY72�v7|��6l�����bQ�d����'Q�/TM�t�K:�� ���6z�N��k���x}d��	�����]�V���l'���S�co=~L�?؋� ����������EΪXʃ-�]/	2��p�%O���^�O'	CN-�г��K�X�pGW.	��Y���D�:�i�#A��bz�u���U����S��mɱۑ��{,#��$َ�I(��Jgr�N�`̭�׃�g��r��������:\>Xg����nȶ�	;tTGsB�^KF��$J����JȜPJ��&��^z[�*�38!F����T����T��3*.J�5M;O�y�������S�J�O�4�3���ܫ��W�Oz4+�>�֭�h̆�<nx~�'�BIΈ�pH���n�Ȟ|�!$]
nJ��$��9y���b..H�)�ܲC*jtE4�'G�r�8T��E�a�M�+��H��PֽHr��eda��BL�Z���
�b�
P�kR��d���
�W�8ܔ���
�T��^��/�
_$s���J��n��w���R����G�N��b�vD,js���:\��ԥ��\o�%�_5�r�K���pg�8�2.5.uEU(|F��I�W#��A5m
x�w����u�S]:�fU��ͥ�����F�Y��
JEˊ=I�ᾟ�=0D�[c�KA�==��d`��e�Hu$�'r�2���T�l'b��j�M�u8Z��D!����؄E��H��k��R����n��8�C	��ߥ�C�GCZԡ�p�t�r�-0���_�O�L�^Mm	�[��v�cA�oа�ć�O^IPJ��J�ԴDN�Sb�}��W��[�B�\�`c>*�A&D*S�B&�gɚ�$id�9g¦?���*M5q���
hE0�ZU�n�\U(�#N:R�d�r���N����>��?<U���$8�ܼ�,9����å��c���F7~�a,�Q���Pױ:X{��%��U��8:YLJc��غ���"a��QM��?�Et�襽Y\K��MKv�'
!U
zS�NL�b�㢶��C�%���>�/��x՗6�g�B���fcjW��X�lU~�<!����f\�o�e�\���J!�|.Oz
��Bz�b�q'�I�9���2�v���b�َ-2�I�*T4�;�vCu)��_Э�Up��Znp��:��%ܥ��r�K��x䕅�����(-$�G����o��QT�I�"��$/5��Vƚ�Ɲ���GMM���D�������B����ވRT酨�*���S�8��
�f�>H��5��Ws����X)�ܒ���4�'X��J�r�X�F0��nF61/7�-���:�!���f]K��숿�M
^����IxE���[*�B�U�4|*��-�
N����(n������؟�Tx���Л{����c
9b�-�nXz�D>�ӌ"�Ĕ�Ÿ��|��X�5�/���ą�m���Mt���]ݐ�qA�l[h|*��hS¦%�n*hm�P�<�4qx1E�����'��R�M6'���R���
�Ģ�5�	n�b�I���[�j�ܯ�酋��r���
h�>-y�����J$�qij�%��{
��Wì�
�q�v%�R)���j=,UC�2���O�=�����L�*�Z�\_G�
77"��B��K��E���	L�I��g��zj<m����J�j���^������n�/��W��n���m?�mi���|Z#t,�Y�]��s%v���k���BJx�e�̉.���<iI�ԒIꈪ��\Z_
Z��R�4Ep����[S=0�ּ����Jj�l���N�SE���U�ܡh��dT�*�ў�dђ��M�Iu��a<��脗�5XblN��3�m��W�.�X��SU>2-{MQ)jڍ1�Z}���4���L��nc�E0��(��/A'u�3ʺ�M-���J*����7V�V��*��[�5�/QΣz�9⯮||%�פ��ނ�R4Cd<#�%5��+!S~'��a��cW	ٙ�ےz{su�+�-��%28x�r5
j�jY��j�˜RM���1���:uK�/��
��S|�PS]L��"�ўh5*���ȸ�Ģ�
35�h��SM\|/�"�U(o�US�RdҨZ�c'��О��zR�U))���_3nM]�q\���;��㰕޼���Za�"KrO��&�,�Ū����=3�#Q7=�>
d�E�%��"gŦ(�F�t�}�-��V�E>�9�L�zZ{�ħ�%�aqT��<iE��ɫ��ZM�:�=��"��\
۽�9,[
zPC��X_��l&�ȴ-SIJ�v���b��>Ad��d�T���x=��T���K_Q�#��:ܿ�
i�t�����/����:�����"I�.ƈK��T�+;��<%��J�������%߰���rB��BL��|E��Zen:^�u+�T�)O�/���1д,1�Kglm8K�*5Ԫ�
�<-.�d6��<V����xK"�'%�:���UVE5;3G��a*��z
�m��3qUn�̣B���ߪ3ҥD�bx�&�
$xo�T�����z�Tl��ŭ$�)n^�2�_��6ܥ�I$��|!2���ry l˦���O�Y5�x&:Y<�����XE\�(Bn��n��p-��JЧVJ>�i���*�U���US
ȩ�(��Ȫ�YRhp�ދR��Pfp�x�%T��T^�z5�|W���D�[֕iĔ�SJ�r����_��5��a㡯���ԏn��s�����;��Zv'ܒ*�d(D�&J]mYqj�بP��'�B����t6����֮M3�¦����Qŧ�p݇i2�>4�#��#��E\[!���{�c%%U7��R:j��5!ƦfG4ܖh��tk�.x׹�۰��]1�>F�~dU��Z0��?���)�Mk�+�d�
����fe1����oC��k�0��T��b��\l��U$q��?c���ަc.�p��D$��8Դ���I7®�
Ȅ<�R���m�nZy��Ս�׭P���V
JX��ø��xJ��J����Q��t��6��SRm8�КȾ�wǦK7�]�1:%j7�Ӱ�*�[��ŢU���%�\'4�_m
hC�UU+ԟ*�(�C�n[�&>�̛=N�����Q$|�SE��9-��$���j�dj�VW"��g�;�I�
��WĢ\-�eƔ�a�T�e���LY�П�hR�
�;��.z�@�EZ͉�����b�.-�Ӗ	s�ܑ�ߩ6'�U!rۖŧ�ˡ�a(�	�)��L/s5�S��I�_Èe?
��E+/�)�"�59��td~��K>�I8z���v>�w)�/A:|��fUV�W�s#��ѐ�a[šSo�F�ZR�nK�H-�n�ܛ� }H�6e�J�!�%�8I1����j�M"T���>_&EMY�������U*�2��ѣ�� B���2�
K������v2��/�FJW�#�ئ�#G���wDP�bV�]�ZL�!F0J,[�!��ʹo�Hd<%��Z1�b��2T��G������T��USk�6e�ԥ���T�L���8n�Q-�6��WE�{l.����C�]
go�WJ����q�R�k�n�����JO�Lıͯ��ܽy��K$�B����R��B���1�|�2%a�%s"I�|7���U(�h�9l���))>߱MnV�E����[a�;Au/)!��:u��/�IO���J?�|*|j}��=	J�'��S��E3>�U�!s��4B���%I	r<��	-��ݯLm8/�C��#��tO,���>�e�:*�xh�:���M���m�-�k�S�o�q�YV��)���旎�������aI�2���/ِ��t����eAaUq6B��*�O�K��Uǯr�P�Q�v�l��]���0F�Sb�#�%�/'���%��[2K��F�KFT����7�,u6��B���h{"pK�I�(�x''�0f�'æ�A
�ߥ�N��,`�~�;�o1�rF�4�tN
��fOA�Fԝ�ݓ�^kn~��	�'R$�_
q�uRBXAd��y#O��'MIDZ�k�/�al-�r$7�2lG�?�`OQ�qOQ����s���Ȑ�Ԍ[Ѝ>W?>��2'���v�|�ld��Wz�k�H�ة�(X�T�K�;��?��'S�;��1��ع���o�jۙ��vc�`����P�\�1=�J�+vSܤ�lF�c�z�?�����themes/images/artem-bali-680991-unsplash.jpg000064400000417260151213255670014447 0ustar00���JFIF��C

	


")$+*($''-2@7-0=0''8L9=CEHIH+6OUNFT@GHE��C

!!E.'.EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE���8�������u�)�@�% @���� @�� 6t�ͼr*8�y�i @�W>���9�._��GC���_
�P @���?oS���+��`@���:��3�&#�xY��aO�ƍK����ѡt<�|gg���TMMhFz�>_�b�3��}����?3K)�ui���?n�7G[����e⥌�C����������g=7����yf���|���E @�� @�@�	М�J0 �:�n��3�>C^|� @�����
�;�܆/S'�����}��\�ߧ��R�	�^����8�/[��z9 @����y��2��S�~bJ�S�uR�G9�ӣ��?_�綸HA�@��b��[�N�����߈�<n��M'�U�2��mq���kW�n^����~!%��H2�9ך�׭�=n�:����=�y��G%)"P @���88 p@�)��8�vy�5��^\��0 @��Y/�Ǹ��̽9O��pz�g|���duyɌ A9���uy;��.;���$ �����d�8�W�|Uҩ�h��<u�c�ؾ��������AP �vM��֭78�:�7����;9U\3(����R���d^>���*�'sq誣3��{�z{//��η;����7���� @�@�)� `@�� @����nn�<Jϒך�� @�� p�ϣb5g=S��<�͞B�ϗ��Q��_��o����t�򞟃]Jjswt�w�D�W����
���JVg�f�v7;�0��:����aH0[5l�Fz[7���g��������ұ��L���9���^�/[T�wG���̳�;
����
�?C��=(�W����|��:�@�@�J)� @� Hp@�� `A �{�a�i~���	 @���&��B�By��k����������Y��4����/۲/���{��blrw�^�z\?���w����Ψ��Kg}���n7��w��(P	��=I���9����.�fwy~�iS<�Vf���5TM�ls�0w=w@?%��=���ן��^���;\����5�2ד�ۙ)8 @� `@� @�bF�=�]r�^���`@�		� @�H���+��q�Ҽ��x}I#���'���/[��h���OW
8mrz]��L���8��H��w��>�#M,t��n?��"�B	'l�^[���G_�zu;�~��:/6���tº� �5��䫣ۇ�\�'p�����5����C˿?Ӗ��=<��Y�āR @�0 @�8 @�/��rzZ��=�!�(� @�0 @����]��<�X~i��h�\���UY80 f0 ��O�}���|�`���^���7���9��R��k�q�k���C*6o���&Մ���WΦ彑�*+��<�L�v�};�k-}gϢ�=1Lk�p*6�ê�K��t��p��2��;��'�y~��Zr��|���zov�ψu��H pp@� `@���BCp@�::nnޑX�g��Ϗy� @� @��
�;}H�-9�/P�u�����XH30_u�O�fo���;]K�t<����.���½w7�S�5�O]��3��NS���6p�'=��tr5���z\}��oS����<R�L��4�D�~=&�R�S����_=ϪHl�~���W��o��su��_��QH pp@��0 `@Ġ@�S� �ã�ϪW�=q�i� @� @�O7�}L\z��6������>~�n�0hs�u�W�d^Gg��~b8t�����W�<?��e��|ٕ<#|�}N�V4*t���T��6V{A��Y�q���F�mvp��e˗�b���N�8uis�NOC��
g�c�d�מ�'gK�՝�q^����&�[zo?g�wy�8 p@��� @�����H p@���ϟ���*��ל:� @� "4���[�.�_�qzFr�ч/�xu� @���k����a��l�-8t�g����U��{?;0�۝KH�|�}2��\�W	4�@:�f��k�J�:�Mg����y��7���}��y�痮i�zxu�r�T.����|���Y�nq���Vg��QX���x�"��\ @����00 @�%���-O����hZ\��c^H @�� @�
�:�*$�[�0ێ�/�L?C����و @��S]/��m�zw����8 @����~^�5����d�ܳ�4��#|8ݜng�����J�@cK�u/-�(��*ܙ������ξ.ϧ�2ߛ8�ם�`�k_��O��M3���B����-��m�^���9�G�g(;�>�:��p@������ p@�tt�Q��s�<Ɯ�1�S� p@�I��{���H�x{�����O=�� @���^���i��_s�i�@����
>~������g#�s�4�ʲ��Z�Y�c�U<�Gԯ
�Y�
�/8�$�/��}���W'e��U�7'�ߙ���'y�tfts��<�l���9�4�����|�~�$J������@���@��� @���4�ױǤ��2�/Np�X( @�@�t9uΖٟw+�<�Y��;����Z�P @�����<~��w��=��p.t��U($v�O��sv��|��i%�i��^O�Xe5F�[R�7��s.rʩ�'-��h���Й7����j:9���".xq;� t�N��9y|m�?�<[=|ߗ�g������ǎ�|a����i$"8 @� @�����w3����q``@�E @� @�g�F��U��m�y���sޟ���� `�j��
�I:\��M�m̓�ߔ��w=5�K��!+4���zXu��p����Vԯk�15��9���j��
���q\�\��Ƥg�����7)��t�����/F?o��Ə�v�,����4������:+/S1�'O-�����i���>��(�&Lpp�H&  ``@�������'<�q�sR� @� @����+�9%�Dq�]�~��e�z�%w���ZV�%�qC��P�R�P�I��f�VsW��=n{��4p���������Oc��3�oB�3�L�:jq�tq�T���r3٪D��ITձ�ݝg�鉶[���seyn��4v=;�^���_O ;�P�x�<i漝��B�K���:x\LMl`�H$`����D88888 @��A��!�g�g�N8��9�b @� �k���L���y��;���9-�Q�P|hRq�U�i���T��l{��.���H:�-w�'��cё���z�î�ֳ�N���D�t��\s��uU�t[�y��5��5h��߲�a��wp����s���'����>��t�t8�~�'����g�%�k�M
���$BА80 ``�@$ pppp@�A� d�{�N����9�1�0D @�0 @���E��+&���r��4��s\�}0$u�J6"*�S�.hȬM ��מl�w���Tf��1�����z�ø��b�\��v���s���S\�G�z�(�~��{�m1a[:�T�&4켯^2�{8z��\⼶��/���J�L��@��TTh��*����[����H"Mlp�L$�� �"��!A p@��0 �8vx�	@90�穌$8 @�@�����M35��paO.��'@ț9�ġ�V�V�6dh�� �3��C��`�\:?WK��g���=:�4qkL�2o�y�����o����:`�+���LF�E��$����T��+����⃯7U��p׎GgU2N��	����<��a��s���[H@��a �-	�T8D!$A�	�J�H��ۍ��������:�	 @�1GM��>�x�S
c�=)�oL/TJ�z���-:3�Ɨ*v��ֆA����
Wd��4s���e�=�����w!í���כ;L:n�k�ߔ�ڍ�P���Bk�/$β����H�m�7Y�S\F{�1���cvp��$��V;�O�<�X�θ=>s�>�:����`H-amD!#���t @������HJ������Fu^u-LA���! f @�ѩ;��"ĩ6n�����Srz���͸���44(��:6Lhjh�U�|i����)�Ƙ:�X�C7�3���u�=�-zn��?�1�n'G��~�Mp���"t�Պ�W��ۭ����}7R��ˣ�ê���6�Ȉ���j�R��=����k�7_N"��Z�e"�@���H" @���u��t�D\K1���k��ɼ�������3 &k�˦!UD��,���{3�՝"uakϚL� �N�����\�Q,��ܛΥY.�I>6ͬ�)E�/l}c3������f���������c�O
8uTk�[SN��戚�t������e�zv֑���G7V'W6?W����N�<��n�*�>�c>�=fGG$\�b�	��apXQ A�H	�8 A�F��@����zX�09Mrӝus�ǚ�(-�[Mst��ז�� @��m���F�i��W*3=$̢Or;
U��>�
W!�.٪��a5n��Tme�@3�V5*
��=h�"�>5�^]k^g�V噦G/tZ��
\:����
ytT^1s5wƓN���K��o��"��<����Zp\�<�g;�X�Q��.4�z��Ӷ�|��O$u��:G@��,�����AH'D��B�8J���]�[n��I	�Bi���֘��x�r�� `ҍ��T��Ԝ�:V"F5C5[iE�T�(����FC�fBDF�K/\��6.�Tԑ4
En����J5
���y�}8��Q$��^���떷7fOw�!F6�T�hS��t���K�Cr�{���k�p�}\����ے�⦲�eF���Ko��[
:O[����9u�T�s0�-�&$`p��B���AhmC�f�����V�"�0 !;B!�����Za�8��=K��C��y���-gc/�s�7��N3��@545Y6�k4ciɊ���:�s�d©˂
I�`AC�3U�C�@Z�:�xA�*�9{���.5��2{��\�A;��,��t�5/=78�������;x�>W���I2�R�{������W����Ϟr��@���,��H"@88kI�E�qI�!s���R("���y��\�%�8����r�5L��y.e�R%۬uT�ʥ��ӂ
5���iI9ū�N�X��)��n��ۍZ���k�Yj:�닶8`�}�'��x�\���rsJ���,��vƖ�]:�:_k��f�?O�6��^{��I��g����d��S����m'��r� K��fB�����������@���	�Q�E�àR�@�W�H@�,�LM��1�a�<�Nѥi�+�D�I�W4�r) +&�
UpLY@QS�0�n��n�ğ��i9hE�D\���M�Z|���-/�L�2�5����ͼA���ً�yn�Є�N�����'K'Kf��O��u�Q�y�T�E���t�H*u'=���78���1�/+�u����K�S
E g3	�hXQ0@� ��$���g}�ubu��$\+e!h!L,M �8\I���:@���4b^d��j#��6'AF��,��̛�qXQE�!Lw*�)spc���х�%�ʩ��Q�1����5��=��?=04�w0��8�,}069;p�)� P�&�h��swMJt�m����u��O����4W���
��!jv��jso�ӆ?��z^��7�z�8�K�'(-�&	A��!�BDC���̭	���V�CU�E��H�;�P�$���L;̹z�5�>���}TN�tZ�3���aVnQ	��-ΠV��lM�7y�*ȹ��@��9�:��EF}�B%�Ry���P-�NcL$0�.Ӈ��ۖ��9:�-TEU)8Lwg��Z�*uV*�+k��H�z��v��+�u�+L�:��u��gy��;�ǁ�y>�OO��/�x̋�M�[��Z��B ���� ��N�NV��Z:\�7L`�����`��C
A!�-Gs�ݲ5S�y�Q��S-@�j�syU��l���j�`�i�d^zTД�P��2NƄf�]�,�D�t�c=�.��
�P�ꓜJ��0v\^�6�ژ��
<���X��.-�M�4�Lv�Ӓ�������O6c�=�p�����w�����9?G����}N�;�
'���L�+Z�`��-B�\ Ua�0D*�BRws}~W`��w6����	����K��H+�!�+Q"�� <wP�y��T@gM�"�8�NoWl�ұD@Z��H>)"j�[�i^�e�1�L� YZN�zFXZ�_N>|C5`����l�m@NX]���<{�;��q����OJ����N�V&k������~@��mc���A|��ޗG�������ڇ�d�+<ʥ�$"�K,��`�XK�
ʀV� ��g]�Z$	80rmn
m��~͝	�C��� Ԑ.�ʽ9�;Q2ш�:\
9؂ms�t�c�F`�$��4�RΛ��YP�D�K�5�e�V�	r�f@kY-oF���d�5]M���E����e�جڀ�o�z�	�B���{p��:{�m����#&�H0�׻t��xS�ێv�N{u^g���Ӊ���~U�I'�"
�gL�bU�X�"k*�\�+*��+
�~���D�8T�މ����VT%$���y��k=-��2���\6�|�cP�9�����m2hZ*J�(M
q|]�D*ʩї�;�kIQ*�pH�:����sjyW;��qW�'=stαM�3C5&�O	�I�ˠ��%D<����G*�
��n�k�-0�(D�Ȱ�%� ����x���dtu~g�FW���OW)@`�]y��������b�u�)ɈPJ
°@�YU \��������A�\1����:���P�}8;��ͼ��
�Ю��`%9��t��b4Lނ1Zؚ��
��4%ea�����S
�N�[)4���Z8
C�rD�L�z���V���iVEDBɱ�+"��M�5���j,���k�¸��zr*o�tkk:�M���D�"�܂)R�:�\#m>>��D��&�w2k{nn�/��Z�'i�>�����U��D+*�� �2��;�"�	 �1Ҩ�y�fzօ�B����cO��'>���Zô��؜B�W��@����wcJQ��F��Y@��U9UR�ӡ�m2M�|�i�-�FJv&3D
57E��3%4zb��\��Χ��Vv�2��_A�Ճ��(|>;��#jk��ȤsD�(&:�8#�P曃
a�e���j��A�y�p�, �R'ы�������
J�,T!��[^���t�B��b��rK�ώ�_���0����4��^ޝh��������3S1�k2�M06�Rul0�
���3CK-X�^l֎=8��Bbj�E4"o5E��0�i4\�.l�ci�h����¦�Ux�e�����çFo�Ϝ�SZ%�E���&�"vOr�k3-,N��T̲L���P"�
L�n,�l?O<Jrk*�� �4 ��C���w:p@̃SE�Vv�g��m�TO5_M�]�=-��0�x���tR�������D(��KeK��B�鬢=(�j�ͦ�HS+�L;���V�J�z����N�Zg��`i�C7D\0j��5!	qlS2��C1�2h`�[J����e�Q���tp����g%��\0�4@<�Ɠ��ZQK��g�*=��w���8R)�C1EC���Ҁ�00p�\� �
�PV��]�Z^��X�`�y�s����C���>8�{�:{�;�ph����y�g��-iս�`�pG���c:u��\I�t�é��@�S�]�!&TY��P%(')c�܂�X5�l�v*aR�MV�\Z�TT�8�W4������	��/=\����T����z���ݺI1�
0�r@@N�R� �g:%3PEmI;GH�DP@$ʑ0!W7ROm28^�f�!H00D+HR����ZB�U�J�@�`�Լ�|�?�U�܀c[	ޏ'�1��dfo�ϳ�qZ鰒����r��S����aUN��U���L�8�sje�Z�Z���+�a��F��ъ�T�95:�B����3P(���)_zt�HD+L��\-2�U=ǟ�Q���/3�8u�����NJP9k(���ߛ�rQH A��Ŵ�<�1ʅkFk�JX����0p�\�	B�0V�A@��/��[�!�q��{X�|ۀ��^�
�о�5F���
���_,
�>�I����>�ɲ�?5�
�:t��M�F�L�N
�yح����N��'P��@i/��ͨͩ=�v�4CTT�4\ԇUĦ�.)��'e�%V�(%3�ϸЊ�/4�:�t����Ϫ���KZa����O*4���:R7H?l��RM���b��떝Mb��szu�M\��H!�+�\W3����D"
B����,5ؖ�ͩ�M���Ћ tG���2cҲ��{�Ԫ�̉�ǜ��WP:��V�V�����O��s��#J/;�Rrҫ��'B+9��k:����FU-,�$)��U�0�懩��rlЩ�S�%�4�hHР嚺hT�qs'.mV��I�E��k��-^WO��Z-	;r���ǧ�up��	�����J�8���2�i��Z���@qT�F�t��d�����R!���;�v�$�τXo���떲��ŕ��w�z��Ҳn֩�U`�3���M7�R����|��V���t��֠��R7#Q�\�$\�e΄i4�q3�2�Ai�.i��ĩ)T�J���<�u�aM�%��2s�:ci�"ދE܌2	����Q*�= àUɓ��3x�nz���'��
x�h$*����k�q�܉`q��u��:m�"�	e����GXW
��hX�A@t��5���2��Rr/>U����.z������ˮ-�G:��,��n�Y��-z U����]��Q�q:`8�#@j :�I�+M�w%L�Pc5fz���!0���6$�4E)� ��U�g�R�6�
A�.��]���a*�%����儓B�^�
)
���綦wVw�u�do�!Ll�+��J�^AA`Q�~���t^��'#��$�|���t��.		�@0Dœ'�㮌�
��!Ȍ�r�1�3�=���g^�S$���z����DΤ�G�zު�>�|�����E�Cļ�/W=(y�TD0*IU4���s
��g͂(����RuI�C�I�pÔ�Pit95S�;�%�Nt�R����T��%��rqjh�e7��N����ÅZe�{ۖ�5K^s��=M���*#q8 a�q	
`���WE��F]Yyi���PHW���I�:r�,�Ѐ

�R��=mC�C6���@�哓�ĥ��^��ƾ�"􄭅9.(�w���L�5_�P��������~=\0F�x�'�8&�W���W�+�����j�0@T
��e����M3��jḮI��zsJ�XBsj���4BoKP@5�VLɢ���H����Y=`��Jr���Y�>u��V������D΍���Q7�mDQ	�C�.ߋ��./�6� � hY��8ħ��0PS�B�zfw��n
�o�GB��1���z�>�U�Z�__9>���]��.<��[�S�Vu��.-I�Ŀ�9���'.��&\�*��Z8\T�&l�\�M5cw�#��@�b�ԃ��H1Ӡz�E7�a�HV�\�*S�2U���=�Ʃ����� !�*�I�����^)K�)��	�~e��0�+W2����U��������˛�q1ZMe8��v�I��C
��""��p�P��`���\��Τ�N���+�hf��nz��
�zy:Ӎ���y���=��h� !�c�j�gX�֞,
�0%B��_-5di^��:3o;�0�K�+k=�Ȭ(!j`���W�N�3T��������כ���;4�b���e�v��1�@4$��Ij�g�e:�s�:¤0�E^f����9���XB�{��q5��"f�ڋ�;t2����n-H�ZϢ	��ҸpqL</���A	�?V�S�@�f�����p&�G��ƶ+�5˳�ZE��5:_4�?GE{��u<Ű���½.�^|�1��yJ�g'�Y����@�;qH�(����R���McTA8R.*����SN`GK˸:l*�V�2��*"
����%CԘ��u<�XZ$��1���!�H�P��x����ٗ�\O_W�j ���A*�;-F�-,�7�W��
��20�� jU�UM<�PJ=F6эD�I�{��V ��.�@��� ppA٪�t%d�!��x�f|��
��CszY�>$�����cߣ�^�O���9�>��ՏAYk�'O�m����c���&��P���&b�f&�
)��а$�-J�Z&]!�rx�N�wSC��V2�ei�fv�����C�A8�},��^Vm�5�"f�G�f�p�=8.�/(����U��MAyּ�zgFz���\�弬�m��ޜ|�����MW�]Ǫ�tSCF��Zk�6�aX@+	��F��ub���].��j�T���Z���s���]G�K��}���MAE�U�sl���2Ç'LxcZ+*�B%D�;B��gp��檩��Ћ1�EXA��n
)DeM���E�����spR���d��ˊ`��l\��:e��Z\��L�Y�����k�!��00�UEj�,��yn8��NWl�3b��^�H�Ӫ_k��s9k���Z�F�^�Zv�m*Qp�?l�@����m��㊌8ړ�Y��r��:�=<�o�-W:g巗���t�Ӥ�
�fs�_�d�nό5f+^l�ˬ䞜i�Rd֊a����:jC�3�ԋ���f�a^T�(�{�=3Z�<��!WJ�ЕTY%��XzL
���=μ�-@D常BM�;gH��>����7G�z>h��Cpq��ޗg{Em���(�V�h+�����%ͬ���hta���e�N���O6����swmT�Eψ�
°�D ,=Z5�u���?*�����^�7C���=����vy9B�kJ�8���-.��5���-��WN�䌝C�	|1hG<%i�5�7d����:u��W��MiE乸"U1����!B4�J�n63�#LɗpUJ�
�����8��Dt�ٛ�*u�rW�m�D�C+��N�ga����o
��n(tv��p�J��F/����R����L{�=���w8=�egGvr�c�$�R�#TL��#^���gQ�[DB��@"j�F���9�!rן�WgK:V,�y\~�G/�'F;~F���pV|r�B�n��q�=8V�S��\{O�C�\��qF��dm8j�ڈ�3I�J�t�Fk*��jjy��e�Θ��ljD&%I�AR�5!�k=���d&�Tѡ,q]s`AQ�H';�\u@�mEL(iT�5�כ��h�l�~K��R�C�[����x�Gl랒>�&�9ߞs�y�VFu��Ό�E�I��+<�s#�z7�N�\x�� �B ��U?T�7�2�~W<��uq�Y��w��4<zN�/k^,��B_�O$1稼n���߲���=L���9H�m���p�3�k/6z2&�Eu"�ػ��h�.�1ѓq�6Hs��f�� 1\�D�3ET�O�E\Z����s��g,��,#����h'��ӄGz,*eV��p�&������*�������s��4��*�j����0�gN]��1�ϟ�
u�ٿ1�?-{<u�m���MUu�A69],�����(�B�0 p�O��MY,NaΘb���bO������:|´���3��.(���?^��u�Y�8�/
m�;���#%s�z=Y�>Xi��e������s.�ۂU��}��|��ɝ3�d6L�7��jM�.Z�iȍ!� \�J�rL��R�Q'2!P�/&�u�	
$�؜�R��%?M�΍o��(�:��Q`L�i�ts�S���y<}r��>�
�z]tP�\��6���/5�5��5���͓���T�v�����
ͱ��� �	��^�94���A��wIy�|�Ը�e8K�/hV�N}������f�{t�s����(�:��g)O
Yy��le�N�$�s���~�MX�tp`E���zU��w&mF;I�\6
sgEQB�ӛ
@�֕,�s��ڵ1Z̬� @����;vPfg���S�~�
3=,��L�z0�|��~�:DU��t�};~�0���o�*�|�C���^u�c��������k�5���d��|ݛ�x�F+��^��$B��'���s�0��א�+�~y��	��c�~}P�#�z�Gy<���tzط�S�>��`n4���JF�=��錶���
9<��К��=� �j����R(���B�O�Z�Rhƞhj��8Cԕ�wj��+L]���	�@���'z�BS�/=n��~g��MDFV[E�9s�ǥ���>����9�n,��ϫ̮��-��5��g5�i�Q���E��
"����i�DžGy�٦��{9X+��h�X�rU�ɑbĸ:nA�'��+uK��We+�=:6���+����K�1�Oy��
nyAUs�2ni�E�Xm�qm`��m	�.�\��V`51R3�}>Zs:g����l�7#[�ì�L�-�ƨa܋j1����)�E����I����a�i��Q#��s��1���p��ϤO����E���;=x�zf|��W:�^�_����3��^��e��eʣL)(�=�����.�(�`��*@��z��A)' �t�H�%8��|����o�Aѧ/�
ȷlƞ<�%��c+��^v|�~�Q*�ć('8rTR�x�A���3%��S3㣙ǫ�}�zj�n�*jT�	P��k�Y�M�9!�K��=����M�H
F��n��!��Ms�̼��� �D&��1��(�3��kS�i�)�76�Ť��Y����ׇ����]�}E�r<Y>wi\�׬h�S�"/��L�ë�Z9;9~�F�#gLgp�y<��//v��w����`BJ�7�z��U$��,�Pɢ����sm����e�Nl��us�+�u�O^q�F�������l�B��o%����r�tO"A����~3~\�yo`MZ��I�H�9���ȩ�3��ޚ2n7�𴁜2�Ƞ�G�!V5GI��7T @��!�$�-:U�}-)��Z��j|�L�f[g�{呶U������ڊ�};2������$�O��=8`ƹ���k����n��5����y�d��;9+��!�0D^����V!ӓ3jl!������|�� �k����t��h�vX�C����aL0�A��"������AB�'Q#L�<Ww�|Y
�d�󷙊��b��ڙ�75���=-����:.�9v����s�:bVb��q���$���TJ}r���G�����q��{�
�C�$j�M'��@�;�?��..�lvy�����E�8W������t�l���и�8���k��c���>���W+e!$9r�p��K��=Uɲ��!�r�s�έ�(&�dˈ�ǘM5��kT�2^y�Yq~��E��(� 3�fK+W�stt"����[g�Z
��xoNJ�9�g��V����c��EA�X՚�M8���%51��'�Y��Af�@S)	�!���RdP�I%�@��湺�/��
:ܬ�A�����r�R�|�R���+-sy�l�4‬y�O���y4Y,
'{��s]\�dtrUegkͤO��%LI���L'Nj���V�n_�M�"i�*�;��=c�곝l�;{B�ǘ����z4�����{��tܥ� �Mq�Ʒ��vEk��:���9�z8ϛ�-�d��9I�L�����j��z
Q�0�ť��uBXY�kr����8Lp鐙�nZl�](�H��͔U�>C��Cu��U����f��������u��Hӎ�ۺ������:��D�m��m�Y�sޏ,�qߝ���u����a�b������!YH�U5S�q�U�!�ui <� �x��``�(C)˄v�.�QS6&�s�}�i}�[ �\j��襒��T�.���xC<٢�] �����i8�&�΀tȗ�,�^�3��P� V���@ĹSPZ2Ӧ��^�k(퓀�<��~p* �kM�$���޶�y��x�v��1��<�T�ێ՟/:�^�ۋ����'lw�f�9g0����o����z��)�"�4�`�P��ƞ���Y�,���竧��4�f��j��m��%i)�5G�os��*�k���ã�s1XA��U�35�w�~��	�"6tԛ!T�S5M���`��4��-i Py��q�H `r�HhSUH.J��Ջ([*{��)�|�̺yr�lb��'���w�%є�t@�]�wGE����vrvYl�MO�i�	ۖ�.U��{}�z\���.r�L&-�}��(���D���&̩�h�~���%���t�D2j
��2��"sx�Ӊ�f��}m����M	no5u��8�g0�to^2�EeƜ��Mfi�9�-���$I�B	�r���<�:�T�M:5Βs���D�@�$R�	!���v�H-]4K֐�=�PF2�y�8��[��Q-I�N���S�㢚ŋ��J�WH�~�+CH�;p�;I�2�K��g��|g���g�a]AO$��<��_���=b�*cyl��"�:��s���(�L�n�<�X�λ���r�M_D޹���b, �Z�8�AQ��ԨaԘ3�Li��z�oL���S*Re_:H+�@����"@���`@�����q8Lp��X�`R�CnY��iE�D����~�ܮ��D]��tx�
�e�˸��mq��}�t[�,��Do�?������}g��vsy�˭Z���l�^���J���qU!�[nb�,z:�?B���~Z	5�%�\N<�K�ۧ�"�4���Z�$���Ɉ.%�X}W/WMY��APfΘK^~��q���nS�4�j��b�5�"C5P� @��)����b��*H�U���cKZ�r(�u���e�<w_�`ᯆ�=,OC^p��9�юS]:�|}y��������8��~j������^~�ft�7�1\.2Iwܝ�
C����� ��"�4�
�:z�^�󱚪��������K^i�GZt�К�YĒ3֔��t�0P9*Y����^w���t^�EPNp�宦��-8ne�\��k�=D�)i����K�2Hp`@����p�(9LJG48�NK�t֜�nv!�>���qg��j��.��
�c@�q�t�F��^[u��/[��OKl����5�}�[y�|}�rt��:OHl����(mq��%蜝�u2���|����:�����GI��R��� �l��n=�~�;
�5Z`�$�R��P��p�g60�u���߰�.��U��2t�Mheqv�L/O�Ϥ��<y՞n�
Y8ITZB@�!X����� @��A0b\eM�hV�)>�+6�['qugާ�+�q�c��p����b���H���9�o�w�A���>���o��=k�?4�6��7=8~�<}��f�7�:���|�"b�/@���uĝ#����ygb
�q�a��q�-&eH���5��&��M�D��A@�9
/��X�v�v:�����ѵy���\��C���ipHu4�d*P�	y�xSQ ��ܠ@��B@��X `@�����!lB â�v��������v�u"�Xʥ�����4͂�R
����V����ؙd0�9���z��^��^�X�7-y˝w�5q�(p��$*�ܚ�^~�=3��3¨烟��Q����zg� #��s��7na��A���R[�t�xT�
�4Z��&�*n�!m�qUIN	e@9Y�`*�Z�:�&��S��2���o�Ā"j#��8��� `�1, �H/U!�����U-^�����V��eFF��z�z�jH��v���ι������v�y��Ey�_4
�y��6έ2̍u%��3*�*k*�{�QK�ڸ�:��r�tv���5b�s�Q�,�N];�}���1�%NgF9�r�p�/.c��r�h��\E)��4n��&�����r�����@L%Yj�[:�)M;BKǸ��9�מ��3�s�egMM��*ܧ*��T6
@�V�A1���r��Z�g��4^�ft5FͳU|6k��L�*D�w	�U��NFvzV՚cN��kJB�uidF��Լ�$:����*b�Z�Zy��8]w�Ki��`�}.;������6o��!�G3�@���MШ6����ݹ�s{�BH�lz��t�b,�SENP0�	
�lW�s�UE�Q0ci2֔�M��Y�2C*��i�u���+.1��w,%P�ڬ�����j�<��=��&��E���-%���4U��=ƒ�-��:�Fi����FpQKRM����T"be�mѵ�=K��%4;hܼ���?*�G>��r�\t�ߕ�1N�W4�҅��P�Y�h���-ˠ��I�hl�!Hr�;��9�*�a܅�y�s��Z����K!ʚ�I�Ϯh�:8\�ڭ��!�U�ϗ��A6Ԑ�€P	�U3��(�.C��P�L!�j��G=s��4�h�L�:l�
*�0�+K~1�CT����pQ�]b�y�+$��j"�U�n3UR����$����s4(�U�΅�h���:��v�8��l����w�fm���XT�]H�.��k+��ԱتK�����p�r/����4F\@z@�~��C���Ӱ��s��|��؛!�aj�9���%�C��.�;��rCU�t�"�gm�"�Ί�1\撅�:vҾ��+����
/=��.���I"�s�g��pE��3&�`�+���΁=SN|�3]^Y9�5�j�pΊ�[ʳ�ιٓU��6Ӑ�9ҙq@�>i���Q+$�	YDt����h
m둅7q5��:t��51�y\�Qpl�f�.N�gV@̬U@�Ff��-N�ҽ9����"_;�f_ ��:�&M;ː:0ti�a��	�
ڛ�VJ�⭛�D���ԇ"h����<ƹ�G����$�n$	<�oLy.�HԌM-L&������V�l%�:e�њ�p�sj��H���;��`��|��ˤ&!��Tz�T����bi�Gq!�Dh-M�-X��Me\JU��\��΍DBH}I\�W!��lk4��
7S�o99��\����ap\����>�Ǽ� RHp��NI`S+&kԸ����+�-��,"���(��k+(�mEE]qJ�U3�\�����f�˜���ǚ���۝Z�� �v�@�`�U��xi@a��xp��l�D�Ex��ڤ*Z�$N;��B�0���#l|�~w
�@�qDqX&��T��h��oMǢ�k�.E�V.Yk�A��IK�h�
�
I��e&���p'�����s
�|u8p�'�i@SEʑn�A�ߩNƜ-�`�0*��T*y.�A2ͥM,����r�`$CzN	��(R����K������D�`��&Z����2N��%A��kik�gKTb�(�%�)�):�&��N�]:b�hE�磳�4���(�p`�tI`:�$
��0!�����Ke�H�]TH��뮗����R�HrC��ô4ťyŰ&�����)"�Ͱ2�6y���;uUT
y�4r�q���'�"�L��
HR:��:a3D��xSZ�推t�R�e�d�C�t�7����trŪ�@�	
���M�^�B��o
5e5�L����CC5HW�2*jca�i\=�,����M�L<8�#K���	����9�D|�˄� �H+�_W���oΉM�A!�xnz�?�iu�9"j����e4e�e*e��I.8�iОm)�3rU���!* ��k3��֝�1��p�S2,�R3z�K�ELi�h�l� �h��A�Ms����k���%DE��@Z+O]�B�Q=��2D���s
�
�D��Bv:"���j��=�ZIZ��d�8SF�����lF�Vz��*�pȩA1@l�w��'�Ӭ������O�#N ��X�ʬDӰw�=IW��Z	UI�4)h"&;C8����zR���Sp�HBM�D�5`8�ca�5�aN��ԬegԢs��@�
�k~P6�`p�0 @� 8�J�U51���z���WF�	�m�,��1,ؤT֌lth97Q2e��RQZy=ϭ'A�h9�YA�אԴ6Z�Q��<�|Ve���nu���P��"�Bj�l�û�Yr4���Du
 ��'j�d����]Qc-r�Ru�H�
F3�jE����S�Y8YI �R
&�eC�P3���5o�RrC�����9t
�'�.>��

�㈢$	��
Ƀ����MMT��L�)f���RlveT�a����;�LC��bMX2��s�)�E`+UP�*����ݬ�.2'@&��"��:�A�cD�����6��-U���[����"�Ls���9�&�LrI��H"�),�j�#\�OO3�8�R�$03E��`N���*�&��&�,�5Ru5q#���0g@ц�g���L�c�		�cB��L(m�bH�=١�[�ޔC1�*!51lU 9���F�t$�w3$��E �GL��@"�j���f|�Y"4�8�K��l�Py"�+�u��S$����T�A�D��p�8 a�SC��vqM�YS��53��ּ��2"��X�b�L�!�:�>�&K���T��P,�NU*�Ïߟ'nZ�D��YE��$�C��YP�P2.ΏM5@�Q����*ʐ!��X� @���ѬSD��̀�a0�ꞴF"����4�j 8!��8 ��J�A�<�����T����y��$��5��Xšni�-A�2H�23Մ؉�5T5�r����(I��;qP����1AMV�Q5���*C��S�d�,:|�G�	����1����P��J(ʼ$:�qCpMc�P�G+��Dr���MjGE��X-N��d�Ķ���h1VI���`�ግ�ǟO�o�y�Ӎ����5]����J�0����
E���L�Qj���L�%T�c�w��>SuJ	R�6N�̋���eA��A��d�.jAL��hV��g\i���q��r����KKGx�Hv��Z<u�`-:�].�  �pXK�K	�J���Y� @�	 �ԉ��R�I�*j����c�[A�)�� �3<,��.fxTs�3� @����MLZ��nY�d�`f @�aSUIy������h]ML��`C"�	\:PZ'�L�h����o ��F�4�v��7�(�(Ld�0��I6��	4���+�k�&���0�.�ם�PB^EeK� @���	�LًVJi� )U��sn��/�4Š"@����Ǭ��`@� A�����5����b�7NCp�=�~���c�Jډ���"��XC5P�IɃN��� �,C��Ձ��`�c���8V|��d�JbJ���5�*�Sb8`
!Z-t� q�E�*j���[3�h�L��G @��bBb��E���F���T�ԭn�(rcSS�-T(��5�� @�7y}�:\¥��L$	& Ab��n����I2*Hq6M�r�`�K�QL�MR	�p�uM=+P�VdkYC�;LǼ��m��b���N*�
$��N0��rD�8�$�����(ɡ= �P� @���!1 �:8�N6j �0 @� A��]uj�bҤ����{��]?/^�W9��n�A�'c���i耫Kz�"��3T���f��L�\E� @����@�@��08�X�F@,�k	"pq�pA1�+�b���C� @� @� @� @�� @� @���7!"1 A#2Q0@B$3a4R%5qDP��������Ġ������lg���cF!�͇�+;�o��������[	�I��xEE���>KhW��Q
�n�bP�(D?�/�^B��lA�z24�@�$)9�����zI��Z�eqP���7mۧ~��Ɉ�B��1�y��ęI�V�0�S*��bU���b(��'�(�Q����3� 3h��0�zZ�~ƙe=�a��*��|���	ʇ�3�����KQ�w	�m:�?�dpc8	���#�%���T��E~ ��״6&F�G��?��ƅ�*�:jUp�D}e�!���ٕʩ���B#[XғìtJ��xm��e!_�����Q'8|��bL�BU��H\�Nd�]��a����s��oڇ������j���Ύb��y�=�����x��c/F*�Fy|�M�R�L	��"ɳ��NypC��bo��ߪ�E���3����\OK'<R^Ƙ߾.����q��G*6Fz��vw1�����V1m��=$d_C�+��;�c������\�?�? s�꘮#��������.C�ʐ�!�bP�I9��T2����O�h������ha?˔�����o�ш�Zt��w�7�
ݧ������@�>�Nl�� �l)��f�"����I�Zr��L�::�Ѿ�l{u�1s�P��$�$H%#<���ʋ���'��c�|ā�����������pf��W$^�m���ˑxFy-~�q���F�[5�|;$=��8���>��I�&"�d�Jr_�p�?w\���Q̉�HVox��y���������s��N���;���J��2�}j�@H���]��&3HĞ���:�5�$tN�]��=�����
E"���ZP|���v���-�臇-�^S����A�S� pt�m�􄌕��ób��p�"lطnI�����v�L2�S���̛[,r���sR��*��9:���H8��L?A�1s��~H�T�,�y}'+�۰��D'�
Ri$8�"?c*��.c�g�L$�3�i|�%��D�,/��W�G[4�`r�~���Ђ3Sh8Q�
�zΌ2�cR���|�g3����Q�_���p.*���CÛ+fG*���ǫ��,�'�Vn�,d�?�
1WS&y���_D�B�lf���O���G�
zD13w!\'��Hˋ��q�_=�!��3��qd���&�\��&|�HG?\Ч���n�y��%�lA�NM�E�w80��8I����nb��')}Fk��ڠh�6���q�q����a�8����!k޲f�5GǬa�2�x�*w�eyш��3KW@����sEt�l�o�y�#^�K�D�s��������28vʕ���O(D$�����,\��e�1�ԉq�0��h+۴O�e����<��ا��=����K� a�� f� J�OT
�Nm��?ߡS�}��ˇ�d8��3���r�|�Oy�A MS��I�b�Fx���y�Q �����I�b�0.�ۓ�k߰�����?�sP��r�v#�A�����qVn0�&n���&J�Z�9��`�Jy�[$�9o��t�4�q	3o'�UpòPOֶq-`3ͩ	�����S��&P֪�DRF;�?��l"0'�r��V?��L�Ps���%�UKNFx!٭�f��W�� ũeo��.���/!���/\�FB����_�'.?���B����L�Wn���9�fxsY�X��g��U/���=A>6G�x3Μ���Tw,���#\�0���$5E�)�#&C��4O�W,�b9�����d-�2�$�Ja���F�*.y�%&G���he(�*�>"�d�3s7�IJZW<v�x�6�Ś�������Qӧ�b �jq�],̊p����"�+d^�-H̼K�������)�cB�~eo�#e8�"?�'6sqH{1?�*'d�OD�2��*>J��O����&(��f����"�9���|�äg�8J��s�>ֺg��1!xTd�ΜdK���6;q��):�0ꜽ�Fx佅2A�sȡ-㟲1��d' lT%A�Lb���iC�<ұz�F���	���e~�$e�@r��n'�a���x���K}��xA�G�Q�q��]��r���H�T��K�+�#�rI���2"��J���Y���_�Uc��Ɯ�f5����V3f�D� 3�Bsc/\���֧\eT�c9�H8�O��zA��_�%���,#��<M=4铐_��/􉋀BG���ڶy��T���dأd+��ͅ��he��ܶ���l�a��u,�I�\�r,�:FF��g�#<bǽd�q5'�Ri��P�沸^�}#��Fͤ��@�4��隩}����?Ng3���Pؔ?n���)a�x9���+r��+����=�A�5d�}��C��PfkY��פ�!3ږF��^�(Da��w'���#5Q�C�0s7҃(P�h�e�V���?܏���{:���ԦJ}���5=�`��b��#�p���,LAу�2PH�1!\'���[�4�ɱ�C,'X�ѷ��{G��,��T�&7�2#�F ��#�\�@�&\A%V����N�ã ��e(�3Nf�P���J2�V�����2��9��g3�s9��g?����ӟ�3��י̆&�@�;��p(D�0�l�YCa$���
rK�G�%%�#��[��=|F��i����mzUdV���Bsgc��a=b�F��jcA�P*���������H���꣞���<����\ԠM\c%��o\��/��������g�}KS"<	�rO���K��̈́�f��,�r�N��oI�*�Pf�:����7�2/�Qq>�,��[�LFV�~-�>*�+G�P2��ͼ�
�}���X�>1p�g?^~�g?����9��g3���s9�s9��g1T�>΢�I���2G�BNm.��9��'��GH��t	#+D�_����{�X�D�‰Z� �KdغxYD?yvR�G����5��E��e�)�Zr�9?�3D�T�6`-9
���f�{�ke�G2s�e+��2m��[�ϋ�K��h�U�)���S��b.9�p�ҳ�Nk�޺�r���e&�k�,��E\o��Q0�&Y�3Ǭ�����\�Z݈K��Xed�Ǫ��}T��n���VH��g0Әs9�p��9��~��g3���s9��v��H��e
�0�66B!
r��$���c��ض�E�iJ"�	�c�:�>X�}�)�vaY	6$6.������ ��؟�:�/"�eD	���)�cuq�s7 �7X�Dg<\:�h��8����8��*��b.m�V��g�Gf�=�U�%�-9D����6>E޷3Ă��k�v�G�b����U�ȗ��	�Q��9���0ȏ&5��\��C�E_�ˍ�"���e�d	�%>�r��)��>x��$�Մ�%ʣ+'�O�e����d/)٥��lP����p.�g0��Ng0.�L��g�s9��9�s9��2�V�0���N*^�(�	9�����Y�?�Z��#�	g���3�!]�<2�W�{��y-�
7\�?��!��)���z{��Xdq�C�Bw`����[t�Q��’�b��/@�=�"���׍�ew�{2Sd(�%�qb�?��d(ze�4U�'�&���m'�!���^��҆��u�]�Uz5��5�L\�!�3r@���q3���y�e��)93{ٙ��2	$A����>�S��(��`O��p������Q��W����sT�Eɓ�,�Aԓ$^H�B��e(1�/�FJ�c�}$S�!g�͔bZ�1��nʟ�V�L��skc�@�ow$�b9I��0`�1F����0��s9�g?N~��g?Na\�s9�"��uD:}h@�"�"2F��m�
�&i�f'��)"��qlj�лZ��􈎚��j���<�іȋx�vP���'���	% "a��y�&_�b�֩�=���6��F��������0�Ȕ)9C�_`Vܠ�wvk�Jݭ�����Z�I���%�]p�`I�EJ�̊������T4��+�1��c=kM�A���B*�QJ����V�vy�H-Lΐ�T�V����Ԧ!�A�3L�R\�㹼��_��O}�H9nG���а$�2�18��x�CjU*=�ۿ�[�"�lN�ϼA����'�~M��x٩l��G7q�r�z[�b��H�FU��2C�a��a��=����*��n�0n�*�ٖ�
�w6su�������1W�_Ќ#
�Fs9���3����s
�\����k��R��7w6W!���B�z0��֌�aGN��h�'�H숪����~N���bEH]��vOȻ+��%ؐ�'f}����ha�_E%����g�;�5jJWP�j'���*�5�,W 
Y-҃���}�'������ځ7EH�Vyl����!����T��x+�~F)�����h�����X?p�:����W�'��Q�"Ъ��Uk\��~TG�J���Ig�,�6���($A������ʓП�������f���|\\���'<���J�5Sg�B�����să�L�^���,?󉁰[��3~���3X�,!�ϼ*qׇ5M���m��o���.�B�#(Ñ�U�/�FH�$ccg���.Qq%U�,��e$�#/��q�10~��1F(�\A�s�F��0���g3�9��g3���¸W�m&�0$~�U%DRF*�e��� 0$��?�%��ŋ�]�{�Jd$��u�;�j�|�<���*T�%�lV��}����EJnj:���n|\Ӷ�\�[�V[s:ͧ�dzۤ7�GI+��y(��b������|)����(tF�DQ�.�72�<[c��X�+�%;�U�a���c����i��b
�J�c��U�%��8�
Hԩ1A���g���~F��DH���+�D�*�,-<D�E����8�޷i��(˱�KQ�N:DL���a�E�Ny?�����;}���-�U�C����p��Gy�)�}ʱ9�C�k�_�0 ��` b���61�����ޒ��O�]N8�9�n��h3d�G��%���ʉ�R0�1�"�/X�n����)~;���=P3�*�+�`�3d�+e���o�`��b`W
��F�`\�s���g?^aFG�EE:]hD\� ���F����@�fc<���H�9�s9�OW����x�Ѩ��KU-�ή�+��O�&a��]�$����)e��
n����-�yj�l�i��ZF����W�u����;kƲ���cM�ԛp#A�KQ;�<{}Sղ^$cY5��#*DJV��2<�V(�Bh��Q���4QD�[�me�i�j���W�ff�f�P��1�tw>�;��upB��)4��Kүq$CJ�.�R�"�Ow�Z���8�-=�k�Ѽ�bXjn���5�i�a㾒4t��~����O$����;<�m��L
D����Ll,Zp��2R�Ǜ}\���\�@�.�_��x2C�q1�!�q��-*���r�A�����5���̉B��S�H&���n�ce�<bǼI�x���c7���d�V�>؟��.(�����#�`\�s�=s���¹�ӘF�:x3K�.C���$H�7;��v �H����Ia��YT*k��C~��4�X�o�Ot�h��?��Q��;�"}]C���j�\�}k ���4h��MN�@����)�4��rh�%���MMtH� ���R4�b�A2F
�µ������%���-^�R�W�jՃ0InJ%�y1z~�鉸��C��Tz2�)��Vg�cV�2H�bI�!W���zzB��~�(�&�T�쉲��&(����EK��#�f���E+�Jt�F�ι�u�5��T�H�&L\��}K����D���8r��NY
Ώ$]|��*�V�d�3�A�>9����b��q��C�� �R~Lk��2�3Ȫ���8��F3�C���/ӑca��L�<R�XQ%S�s`�+�.l_����\\L\A�~��8O��0.s9��ta?�F6k�)�F���.(������`�\�������kl��Ǎ��Щ����P0RJa�Ju7��z�V�r���e��nO$��(S3[c��$��"�jc��d�H��7�%��<���	Q]췻X�T��S@n�*Ov'�$�����%��N�J�B�mQa�Zj�v[n��f�c_Ju�ȉU#
�Qفaš�2J��;9�[X^S���z������DHQ=%�]�"]�A+�{��UI�"=���:D������7r��A`O�6F��V�����j�`��M�#��-���Ee@�ε,�ʛ�"וǿ��'*>^<A��/�#��O�9i�NU YBy�"���ǚ�.Tq����􉺃$8��\����n㫐J���2E�f�tl���[�*2y1�n�X�ed���>9!`��<�/��_n�J���bA�0#���(�����l�w;�9�G�®i��ND���ą���ܻ�#ek���M���2-�_���j�]A���V�~?�)��:�k1�� ��8�ӡ5�4b"����G������$�6I�@uR)f��Y��m��g�lK�.�[��m�8���p�P/��X������FQu��i+�LkR�
kmgW;k����o#�^ꔫX�M���R�ű�Ÿ�W��H��,���7�N.�U�Z�dd�Mk�G��΄�J��t������N�'n��L�Ui��n.�=��la�,/���fZ�����j�p�)˭�Ҟ���W,��8�Qj7�����C��
jE1�oZuԊ.OO�U��hO��IG��]� l�K���گH7�h��ʨp+����͋q:2����r�)ɟ��ua����'��MO��:�,�~0{����7S$ls�&.. �\ױgz���k?�͒u.�r��;u�&E�?n0�)�����f��끞[_��\~�����Q��1 ���?A�b��0�?�?��sK@�|�\G�?�͍{D�0���S����>L��HN�M�V�&�NB���N�Y��x�_�˺�pZ1�B�1���k�@��~_�%�U�F��wY�-�e�_��!k]�W%JQ_� �7�R��_5)k-P|cc
�b��R+�iM\	m��lv 5�D����Ђ�dBi�Ch� ��s�(�),��5�6�eP#�J��5�T%��aeK6�DxP2?b�����Ir��]��x����z��<~�{Q^�@$��뙞$�	%�ѕ=�_��S=ۓ��W��f���R�����-�0�7r耖�|�h
�܋Hd�~e��)�V�ET۵��!��c>���Id
!/��H��o܊Z��WG4��O+�U�/�s��U=[r�iOY)*<�n�]f��ެHQ�L_�:ݣ��-J���ʦ\��i����'�r��ϣ�?�a7�����2����	�£�+}�c�bdyI�#"`�1Of��6�د�lܟG�r�'����L+��|] �*/����Z���-1R�$��a����1 ��F�~�`�`F����`0�*�bPB].��^�ps�y�
��A1�
�/�$�*FI��)����P�2�:.Y񊶋L��_�,�����,UK�^:ׇ�T�S�8���B(�&{i�Ƞ C�A�t@��2Bl�m�+묄ȴ��՞J3���,;X�����Q5�Y3$I��">��֗qOV�-Uu2�67�]�e?^#J���v4�7��Z�V+�C,M��P�����~�iDO���ђTg�f��U�}%�f֯N*�6[�_4�
��wt��I�u�)ZdY�k.kn�y����[���~�$7�,)w[1n��H+jLO&w�*Z��j���RV��I)��)=�u�+���Ί�%_c��;!a]��"�U����"�z3!,��øJмHd�).;�ʊ�DY��J":�I-��=(�u��j�?�^��I�)A����_d�J�;�v�Z�CW���	\��!'~�8NDH�
����;癸7k&R�d�1F�S�s����bdyQ���o��{�.Wd���C�Vɟ�DȰو��2�\"N�)ss���'�~d���1q1111p�F����`�#¸�g��ե�ި��/w �P�D��)\�c0e��r:������}�ɍ+���L9eiѸFB}��Q�0qѳ��`�.hL6��J�9L[��ƒ����p��8NQ�S�I"3d[DYJX�%��z���֒+�&�y)<y�4Z�L��]�{^�3@���66��Dz4$�4塀�����&)E�u�pIAj�JޚX�*Ա~��mDH��#SUoY�b8%[�)z��g�n��Zڍ�&���	����b���m4�(��m������m����vO�M�>"�y���HX<�Tx�_d��~�}�[�<�-��1=(����I����aMdP˫���0k9RMU��p�4�mKT"4�����D�ze�Z�H�����/@����pApT%�U^E}e���ӻԊk��*j�=���K^4-���W2�B�OҜ�o�eMΫ�"DKzݬ�g�h"
��ۧ�L���m��.��&R�c�hX���	#���1F ��!n0�o��8��~�2�u˫�9�HLr�7O��?�+'Xe4�>��<���Ԙ9��;��Q������C�a��~��p�b�X*��:l� �GS�H�
:X�����s=;�0�ꉄF�"7��GC�B��ÀFQ��+J�;{���_��*�)���1��U"Nzlk��@�:OD'6ZG�1�F�1WRjk�Ow�T�cf=�+$D��z��u�Z�;^�Gj��������-
��|����x7��Zy,���-jn�*�G��i��6e�ʲ�=���L��BU5�},��]�j�[�����iIӰZ�o�'�S��O�y7;AG�Iuü�Pk/F���/x��)!�7VsR�hC��H�2_w�l�U�6���hv^򣄫J�!B� �}5���)LIl�K��	��A��=vOǩ�R��k�0u��m���O��V�,�An��L�Q�᩸�n$����g�eB�A�-k-K�/g]c\��Ů��J��:F�W���w��f��[`�I���Hc���l-�*��(d�@��Q#oC��O�I6��
��+�%K$R��?ޙ�$����=?�C�d��z��q�E���bF�2���}���I��o��I�����L�����Q8Xn.j�2��J��=������b�S���C��?�s�gp��ؐ"�o��u%�Ԗ�`:�(�����b~�����}�@�z7:}taFu�9@�'P�C�%�W��8!u~ϣI'pUb�zk���0F�d�$�(����l�}sA���c]�G����V^��%�<[5�YFlnY�[��J(E��3"	
�#�]�)�6�#�#.���SmRy"�����8>V�A-��5I�-�'��l����iL����pƆ��\��Ҟ7��3��"Ww�v:�6��SC����ܪjj�}Oa�N6��r�8��l����da>����=��CQkvp��t���u��u���A��b#����U%��ݴ�U�b'�ܳxL��)�Cb-�7��`�»�Ԥ��i҄V.�>i �ݥ5�褝D�{�BS�Z����O
�Ϋ���q5���ծj��P �~J��-�&M��(AJ�)[�z�0����Ηڲ�薵�>Ҵ�%q[cV�U�ST���j�z���MF�H���~�_���u��Ǧ�+"�qQ��a�%	����&��r|��l2��#����{w;я��LA���q0���z�(�%�O�2`
�'Ce��(�!`2�c� @��l�X0���03�i�iO����LL_� �8A�;��s��Jrܐ*)��h>/�2�QĊ���3蟱�����ׇ>Ѹrc�W�����\E(ē��\z:8F[�~�fɻ#z"��$���R�v<���f�k;���'/¯	��]��Ɵ�f�gWSA�~�cB	�����k���]ՔE~������؃�5�i֞}&��3��,&s���P�)�����ӂ%T�IU�-�}�B�;l6��3^�;�C�H.�$(�wk�.:��W�e����y�!K�JiB�#����ɞ(�o����5k�J!��v%�7 4RҀ�vTv����u��$�Q����X4�Dwv����Bl�T@h���,�7A	��shmj,������{MMz����*��G[(Fr&�mX$H�%�6��;D���`��c��Xt3֩���U"���z-��n#t���~�d��}��r0Sn-ٔ]�_w���r��:ZS�"��?�i&���Z��;��m����0��Z����KY��X���Q���l����@�`��H�x�Rq2��"
+���2����\��7�"�0��11q?Dlf�R`;��ɕ���_����3n�Vͺz]�1SOwJ,���~#f��.�f�ؙ�	j���5�M��z`\U8��������L�˜S
�p`�iі�q��i�%S��'8d�ڜDdla@���p Qܙ����s"�����d�����A�fnad*:~����?d?�����,�C�BJK�C<uۨIJ�}�鉖��-�P� �R�I��X�Y]������!m�֖��)�7��7Y~CJ���i�ӭ[�J#��ft�߷�����'�����R���x�S�֣=�3�����e�]�W(�EM�����薢��O�ָ���[�ҿ�V�T�eK�+ex��	��eI���۠��,��x��vv�U+?�
t��U��	Af�p�8���E�*ݥN&ݪY�
k�6�:�z�)T���H��7_��|���,՚M��3l���RwP�jh^���������FA&�~$QZ�W4ր�+k�Pla��n��D�2:�i7q~%�����R�-��
r4�[O�{�
5���n�MI���.��.�tVYw�R�ނ���u�P+l���-�P'�����ʑ�X�O�+>�y���R{z��h�3�76z�*e�Nr���+牂);��%>����%�x;����q��qA8bq��g�/��bC'��bA'?��"�Fō��caV�#磷�' �F�2=�b9IA�t���n�m���NX�LC��a��%����I�a��)}h�ˈ&���s��gǟ���LD�LD�A�0��s9�p�2g?Br�G�"��Ԉ��I���8��8F+�G���d8�����2I�]�&.��8GeM]�)�	����>�S4��b(���3���G.����%>��H�+�E�{��F��pM-�xǹ�7�=�:�I�E[b�a"�B���WJ4��T�qz$j�5�},霵�*�*���M]#d��K�>�[��Mi`�_�4V�C���n��`+�˟2V��^�$0P/
DKz�,��{�*�k��җU����E��3W5���:�7���5t��g��Fd�۬�(�*B�Y}&yI��M��ثX�`�^�Y�%O�5�u�1.�_�(mEm6w��Md���
>���(M�vQ㖞Bk�rų�Y�y3C4]Cn�?�v��λ��U��\�$��f�̱P�%��f���O-	�1�
&�ެ�J���]ؓZ�jۖ���Q��M��*:khJ믚���io�4�i��"���l��4��]R�µ'R&�R�޺��5�+P�+��wM,�ݔ��q	��z7��T]�%�%kihi�g������T�omB�+��FhP�L�…�_VfI�z8
z|]5��Jowwa�Nk<m���%V��޸�~DL��Kv�돠��B.�0iP�0��aӠ��èO�&�14���iӃ�2m2,d�†	><g�w52�W#��؎�f�!�E��k�TO�Y~!ͼ��Ȝ��١�Ї+����y�P�#�a�ŋ=��qS1�¸FԎ�^aO<�����ʵ�$�H_ۈ�+��8Ȯ�S��6��*1�;��B�+f�~R@����tʎ�}��%9���8ȘL�p�%���@\�ɡWRS"D�0��R�>��g�кt`K	Uy"��J����r�M;��ylK=��~d�Ңi+%�$S
p�MiI���ɪ�[�kgD����������O��I�ܧ%W�j���~�ko�IQ)�3U������=j���ݴu�~t�bG����Tn��E�\�R�Y3�$���6iZ��KHU�����ƞ��,�=�^]̟����H��%qi�����N��
�$R����d;ғoR�H���_�5����ڂ���?*����j�K�SE^t���^�i�4�.�(sr4�+�/U:ڛ l��"U���p�b�t��
MB-�޶"%�Y�qM�Zv�v�e�����a��V�Th�b�em�E�f��iu��]i�t��J�4E5i���wI�4���6*SBUڞ�ANޕ�m��m�J�T�U�_�}��-��EJH^��̂g�l�[:�AQ���*���Q�5�&����Rd�S��w*�ÚwQ���k(����#�#��y�%N���#����1�(��p���ƒ�9���
)�� ���ɂ�M�"�3f�_�1��tCÛ����끚� ��'r�F͜�b0�M�52������~,X����Nb�s��^�\e8F?�����@b�N�B�s�O0�#�b�0�"#�0J�1
�I�w
�I��v�x�����b׻w�<u+���D##>!ggr�B�}�&�A�5�9���7��mҼl��Efp�g�Z��蘮F��
d  ) Y���Y�XU��$^K�}��p�(�4	��]/Wf�����𝥻v���+�s.�^��V�b&MRw㰲�u����z��66r�3�wͼ�u�#��3���%0W�[w$��i�;��[t���}T�YPͷ�A��r���b:5(���vq�X�t�u7�&�ݿ���kn-��>]��mX�����&
[g��Tu"�4I�A�w���0)>�ZV��^x��i�j���ַ��B��]`���ۨ�oǭTtB�gu��'��`�]�>�jR��u�Ź���;7`��H��i&�t�Ҵ��n���"V�(�z���[N�{���SGY=�<�VZqĊJ����DJ~]��)Q�oR;u?�Tb��Q*|`����#{��v;+)�P�J���G���%�c�A#�n\�M�a�A��4�.k��=C��3ߙ^����"��X�����Ly�.�?�&D��ȝUݑ���5p}��T����Ұ�wdpNy
�|���#*%��^5=�L*2V�B޽+qݽR#�����U�4��^3��Ε#���(���:v�0*��8��|�L�:d�8�Y2\��#�tlu�M�%TN��jq��6VF�N^C�~�sǤdsG/Usʪ�j6IIH��#ψcG�0&za\#¸ˌ�W�3ԟ�;�M;��+�ki,��ϱ���8��0NT��Q%�D�z>Į���A�!P�d�'�
:i����=��a�$fD#"t�yi�:�x�&ϻ(n���!����m�=o��襵g`�#�AB/�:~�q*�t�G�*~��;���������)Q���i�U+�64�J���K��}��k�+X��ȷ�"IҌ����#��yw� MF�{7׎PGz�ܫZe�Vy%����t�QVY�D��cS[%(�c
�X�y�2��Zݧۺju.�B{V�O�,�EV��j�,�'��Q�r���˽�6�1R�mT�z*T��)kۈO=��1.� h�ԡ�ӣ@�
�SSQ���r�{����D%7j���ShAs���n
��<�;wn&ƹqW}j-^��t@�v�7�bwƧR*�/�!���rV������6��%�[+���*���o�s~K	��i��iEZ���]��Y$O�ٴR9�.��j��$��F��RXRd;'�ʑkP�mاJW�b/̻5���Io�,�Of�:�h%V3R��	��mv�D�\��Y*m�(�D�e�{��r{T�]ص�q
��qj�ӥ�o+O�0ɢ�u)q��!����#G��lm�h�^E���[�F��$�b4t=G/���!�<����l�+�E���	�9E�� �H��k_�!ݤ�ą�/�w����!���rd�W��O]ܕNtDp���KN�6Z����6��P�*fƋҲQ���RTd��'��c�M<N�e��
2�x�<^��e��b�2�(����2]<:�M�ҙ&�D�Bo�Pb��L)�0��0#
�\e¸Fj���K��j�@J�O�8�8p�#�}�I�<lx��W7Cъ�W�����ܰ̐�>��1,�x��,8a���!D��]���õ�%��6Oh'���յ��jԖe�݉%ߜ�G�PyK>%yRn;�MG:�Uen3�����Z��]�͐�U�q��-�)bI��߇D5�l���_h��Ib�Y��u/Z�J"h��Ij]y�`���:
H�.X[:t��{�i���w�i��T�4l��T��ܼ.��	L�}��Mm+{ݓ�4��ml&��@=J[I]9��"`���S[-��׺u��TT���Td�l��ku*k�y�`������:Vt)l$��V��hX3E[}.��1_��V;Rيv�l��tXl�i��;r�G�+o��Η�I�w���m>��%��z�@:��R�OWD:	��6�:���U۽]N��J�{�2h5!�D�ojn	�CggKu�IlӖgh�tT�
�=�od�hU[�U����<
M�MƑ&E�㗞��t�S�Ԗ��e3&��[�Sb�T�f�l�dW��%=�5.��E�L�v��$l��߸�U9we>�`kTu����%�0�gmR���wg~*�n*Ѹ��N�'�F#��Q�W����FwGq͊��H�]�H�2p��J5�&$T��j9��,J��rY���<��gf�_Khr"FC�Ob�/�Gf���+Օ8�U��W�N�d_?ƨ�^G��Jh������8��%V(��݅�]є{�r�,
w]-6�q�\�6��l��N%����>Y��dOe�u3X�)|��Z���GM�dLH$��`�#��ìw� :�^��0.£�)�1���l'~�D�&DO�E��d(�.p��#c�\Da�uC��eGB⻤��NY�2�	'��U���5�B���m�y\�{�����*�x�<V�3�l%};��I�#�x�:	�&V�*I��y&�=�xRYU2��6R�{嶾�ˑ,��]_[vh�	.���4�xn�u(53[;T��=svVh�'��;M��˜�eu�Kҵ�|��[�L%-�}��pO^����7�;(�n����f���h'�]�HjW��A�i�'�-	�e0�-�����Y�
�eb�+�γli�J�1nנ�f+	P��!f*�گ�_�#�ZW��ZO��Y��d3�M��*��F�b��ƚ$����]�5���X⵬I5�d{�R'��;��~�=��t.�+
-�i|sV��ݽj�ka
l���e��u�|�h֖S-ݾᦴ�ڨ����P����W�uq6��O<�y3Z�[��K;9a�߹a椛��;n�m
��le��$�J7��N˜��������[�OV���g��+��X�ކ�̻ϒ���3|ɝ&',�/|݊��KZ��w�u�inm-�jKv"�qH�^�8���[L���GM3��TJ�XG�K�f�k�
EU�_��]�'V:�e�o�/�TJ�~VO�
W���'R%g<#7�,ݲ�(���[~|�)�Z'�l��E�!����+�PeDG�:��Y����#�s�O���d���=��M�RD�a���2̑}�I^^���~���t~�,nB���5u,�VE˞#B�d�1*���S+�(F
,Y�5H2�cYԨ��������YpkP��O�b�Q��	��N;paoо;c��l'a8[<sZ�/�딫,Q�(G�� au\P��C��}�u�P�^0���r��k�����9�vc�cvp�%�F(�%��'�����1 J�Y€|^��{����T���� D�R����8s�P0ڍIB:bx�x[̮���*St�K߾n\�TK%ǧ}�=X�{�-$�jD��b�h�&��f�i*i�흓��F�Y�"��[��h��މ-�ћ�F��y4ZH���2[�O>��H�j�ܲ�bӵ�S_���fT�]��w���w�n�Pd�JW�+�Erk]�ֱm�Q�Z�թj[qAb*^Me�KQq�$���U�дgib��Q]�R�k6"�5���D/���[g��+���M5������d>���hk�D�bإ���E$�m�Q���P�M����wC[NV��M�ٻ�D�ScX.���T�fv�M�����[��IYBE��6��$��m[k_�ۊ�RW߽��R/��إ��� {0]����[�NHh����J�*��lD�抻��JԿ��c�k�j��*�czW����ۧJ'�R(��Rդ�$�����J�|���)�Ӫ+PB�S=m@�&�ɯrdIR�_Q��D�@����"F����i�+�+�n�$��}� {c��J�J��41W�Lj�<~��~�Hu'$h���7
@���
Gx&h]K1��0��g�K;-l㊤���h�m[�C�u�rz����_YA5"XˢW����D�'Ic�b�'���B�vrA���=�n���[p�o���㰱h�l�u�����V��d��Fz#�䴣pJ�%v�T����t�ͨG������ e��N(G�§���^�S�8T�)�C�z)�p��Xڴ�΍5��=����s
p�@����Ɨ�.Z!IS���0�i��t��>_�J��6�Jø�>BX[��2�$����Ɇ�U�|Q�7.��Ӊ_+nn=�w�JV���&�=x��X�e)�窵ɕ�*I#�g�ʕ㙠ս�m�s������7= �&3<�j�Z���=��p���~��ƱL�E�=q�!���1֞j�$��*_{��
բJ�K�*��j$/~�j�u�g�/�����Qwc8�eI�u;���j��MD�޽[m--��D�F��侉z�"��+A0Q�\�f(?�� �Z��V����	ޕ���Ԕ�mP�i,��]T�i����렖*Ve��D���mWN��if��$G���ɳ��V��Ad�x�
RGi�mnM,q�jQ����Oku�d�"�T��j���>K�^���Y.�b��{6�-���Km%��Q��/��j��紕.l�e�L�v]t�-n��yN��,�+�Z/�On[��"!��BR/&��E�)n�E���)"{�*x�P�B_�,5bT�$�7H�U5�Y&-Iy"��i����("�j2����E)Dt"en��X�yV}c�M�+�oX���Q|6d�D�~l��?��2%��Pւz�V{��*2[�_^.PB��P�*{8��Ǖ��|�l[{
���O��>�%�r_�,X��t
�ܳ%��n��ĵ�����J5	v��ˑ.����X{ӳ�5D
)�>�ݧd�*!��N���׶�qQ$9F��_�Bu.�I��>ȊPt�0I6�R(��P�t�X7M�D�o�+QZw��6�	*1O�����ɬ��V9�����dS��s=?��*;�0�zc&2a�=0�4y�aLd�NaBO���iB�*�	��%p���~��S���\��	*2���a�ٍ��FG�[�$��I���9j�VF?Fvi���%R$}�l�������Rw>�3Ȝ�Q2+OEQ��k��lzu��.ǧ��G`�B~;0'ۘkJ�ލ��T!Af�+�Ǡ�*�R�"��KkV��ym֖��I�*U�D��m��6�[��lu��,�U�iS��<m�-#ˮ'S��t2��#�׌|�YYdD����i���tZIe��ik�Z�����W��k;	e�K������IB��T���tWJ��i� �����$�'���[��[�J���]�&�_U��d�"�^�46;4��ꢦ�xߙZ9��w��D�Ƥƭ�M���S�d=-d�kAv}�$���=���uH��V�ٯ!��5wnKKi}+����C�f����mv�-�$t��C`����\۞�[u��ynlN����EJ��z�iEbbW�In�߻�ŬF���
�E�M\֞��qnv)4�yR��eb�$V��E��
G�r��!wo:�-� ��G�ZH"�\�W$?5�Knv���I't�j�
�D�|��-
���?%��<��UA��R�����x�V�˭��ًǫ��/::.��(b�q�+��Ko�$�׸�(JYx<C����Ή����&��Q˽�ˀ����׶�+�j�_߮\Of:��#m̵�"�����3XIK��bH��t���u����ե��ˎ�X��o�%U.yZ��'�� }fʱLU�8?�
)�T0�Ì�pҮ�W�K�"�A�r��G�X���:�BSg�һ�+��fR�V$����MZIҺ5-���ԁ5h�b�j�̙�s�8k8xT�`[�鞝 (3ӹ�0�2g��L)�0�2s(V6-��SHF�H�Na� E�Ʋ���<���8�~�9�և��e�m���+�ת��L�~OB@7OS��C(I�1��ez�y@#�1�yQC}s�R��eD^��I,E�IV5(��C
�[i��a��R������Q�N#)�Z��$��E7�UV��ibΞ
���-���H�
'IS_��<F̭����x.����.�G���T�i���B��n�yz��@���"1C���5PJf�y#$U4�h-�SѸ���IRD�ݨ�/�sq*�Yk*P�o���VM�9Q���^Y^����)ӭ.���.#�t7�׾�^����&�*�}�%����4mձ�~�,Tjk65fH$h&ӹ�I+\Fxlӻ�ڷ�D�I�wz���*���66(;��m%�H.?�Wc%M�Ʈ��)M�R�wq8��RH�;���Em�ڳ�EH(V�C���A��(�Jqt���˚k����\қ�P�j"���Bh^�ձz]g���,Z�U)��DWüO���5��n���N��[�xN�-=�yk<�"�-˦���$U��$jMF*�R�1���)n����3��B���l9��xl�"irg�D=-h�^�	��kTDI�:,��A*<��_�}W1ύ��w$,
]u�W�>�iZ��#?�b)��렔AZ(��ƪ�n�Z�J��;��Y!�50�+o��_Z��b���]<�W�a�X�U\�E-��Y��_�f�{���LV}�t���9N�j3���,?էa�O��tl������%�"�8|�Đ��r�S`;�Fz�"�4c�����@ziY��ʎ�,N�3�Zꃇ�L�;*?3c�	*���W�6l�'�$�8X/���Ns�@q�
aL)�1�@�����'����'/�bFa�m��`���TR>�tH���x�1(���PK$	�v�7�1"IO�-��T2�8X�*�2��0	Ɖv {�M�) :4Ԓ����"'��h#
�/�ܖ9��mNW�I�X�M���9�K6�����(��Y����TO��c
W�D��J4�}��̈���grYa�f�^Gr���(˫�M*Mjxl:�z/l.%����Y>W� }*>�kf���a���{f�Ւ�j��6�ݷ�T�X���n�d�E����]'�Z�r<SX�-p7U��(��Ǜo��%g��^��mk)RZؕ�ei�ܶPD�=W�P��I(��
��9��Y��S눭V�'s�$hj�F�����ۣ���vۼ���	v2�4�6��OWq5�B���Cn��u5#֥���Q=%��y_e�/~8��熵T�%K�*\��*æ�'t���k�hޭ��֥5_��
�:��� ��S]Ưٖ�|���-e�K�Uo�RթE�$�+B�<�d��7���%(��_�oJKS�6�:��$�'�[1��MHji�Ͻ��mE{�[/�����Q+!y�߽yi{��k�m��,T�)�I%/�������)b��:!��"T�m�"B����-���UnWKs���h��)Y��Ƌľ�f;��~�j�Y��6"JpIVY�[a��@��ˆ��a�=�h��ێk�f�z�/�k=%��Z��"ղ��ۣ�g��
>�Y\[��y�b�T�Nv(��������H�f�S�bH$n,{ڇV���o�iEgpQ]])��:��s��j�/�m�҄ b���ꑬ��L_*���%�:?b�I9���Gf�%�J�^I^�l��}U\��8Ps7�B�/U�+8��-ϡ��63�
�Q�p����Zb� �4�8�~�0��Fl�X�Z�Sm臃NUj+9ĸ���d�T�I�m"s
���[/�'I���{�%�,�r
�t������*#��:�ʕ�����,m��$E܆f��f�J��93�Pv����'��d?+3��T�Ni�Kn/�l]E>4,խ5��F/���-�"�T�!�yD�'M��b6v�GG��q*
:!��
5M=K���w�j�U0Am-N��д��������V?�"[^�k˪��sX�D��]�%��s%Mْ�P�l���V�X�KR0��l��%�-��LU ��%�C��6p&�+>G�I�Ҏ�t���މ5�-ի�C~a"%�1m_C���-�fQ
[6�%��O5ZWm$i+��7�]��K_�ȕ���i��j�/4���6b�R�[�a5��7d�XI�RjtU��$�)wzkW�-u�}�1_��J��Mu)���6k<�/�%�ZT���
��JG�▞����m�EkI����~�-,�i�r'��w�s��9�x�i��;3VLjR��הW���D�M�1jR{�C<���G&�ɥA�l����+��nҹ�b��6S[���v�$�4��m����f��s=h�5�MV�K�8�+(5��D�'7��x�P�UIJ��<�?؆)b�t�;��)��Q��O	΋�HЧ�KR�'�Liia��"<��v?��J�sZu�_Q�b%��h=+\rkץn�Y�U��t�Rku{ٷ/�h�gx���
��O�ޣZF ����jG�B�8���p��z@y�k�tb�y��Ao*߯m��N$}s$�!B�?�"���#FH]["�H$��#�n �v0�8��ۨ��-�m�TD���X�V~��
jT�-@�"�
���6l����B�����J�g-78A��	�c�C�lg�|G�+~��q��Xc��a������l�D^}g9��tgz9�%f��e�$�c��_H*z7C�.��Đ�0[�6��FE`rm��9 �E�D �_�zQ����$��8�:0�C(�P	�ucAƴ�!l2Kc�2w5У1O�O�ObY�$�%���sǖ4N�y�x�V��L�}�k��~��lk�Aa)X��dMSO3��4Z*+�$�� ̢�bgzd9�5M�u���b����!�Z�N)4�ҚSn��jЂ$��&���W��wclP�"��L�׎
�T��J�<+���O^T�I�x��1�B�4B
طR�g��:P���X�mm�HuϷ���Ij��e^z�T�	�7:��N�B,G�ҝ�-�#�=jT*�`���-�z��q�D�wr�rP�m>��YM��l-^�)4U$��V[:��I����Y�	N��C����m*<�$��;{W�b�z�"ji�lIV���)����W��L�iV�x�v�pv�'�mjjlK�h�oF�����Ţ�*ɫK}�ݿR�������%j�DW�m+�R�"���O��v�LF���]�$]o�*ӱr�Wh<V%�����Ţ�v{f��P��vz�2S�D�yv��L&Y=,����wh7&�����)(�LZ��Jt��Ƥ�[u�]�Aܱ�wte?
�J�%\B��β����>�݆+H��\��.�(�x���a��$1M�ƶ��oL�;�%�R*�i|�j���_g��EQ���}v���S6�*ɧ����o�}ht�UX�^ŗ �#U�������ތ a@)�uZ�b�rӺ�_��8m�]��fe��H]bI�ِp�. ���é`t�N�<^�Y�[O�z{�o%Do�YA�+��蚲�}�6l���f'�S���F�����DH%�r�8�ݺ3]pJ�1���_�3���>3�><��$T_��ՊB��*����0F��'e�$f�Q!gNv��e��<k�ľ�-J�&��ggv>�HYzD��'��I	@HJҺp)��'N{����	eh=�����A'�54H=��ի�Hґ�K��_��1��*��@�-TL�{�4?�H�q-E�J����4
��ݝ4�V�[�%�x�"V�7������ټ_�jD�}�+SW
��ˬD:�O���]3셋��_Nv[gz�QGn���kT�5u}�Α.�퉒xu��Q~(��[�R��<�/�A���ʚ�/&o���Y�U��cKe�;�D�(k�⚆ҽ(-����P�A%�NY����������O��Ou�R���Z������Tٛ!*��-څ�w��T��C��"���`��Kү��2>�xfA��*BQ������J�b�R�eY+Ϸ���Mm�f���6����kU��;�?*�"V�ًmw�M�4B���?-i�����l�6.�"�*m�2���)��DJ�1o�_ߘ��Y��M&��1:I�.�u4���r���[�H��E=7�T�$Ve�j�;�G�V_�o���e����I,e�EWU��ë�t�m����2y6�/�V�TJV��%�L�Aa-m�J��T?2�K�+3D�`D@��;�lM+3%e�PM*"Z�[�H�:X��k��J�i��MBTX�V�V�t4�MhI�4GȨ�R��<b΢�[V��PԊ�6�V��f��,K��G��و��\'��1����Êt�9�(���Y|�o&�@��n5�#��\V*����~f�9�*��s[���(��x���<�����k���m��dt���Ƌj���
iR�Ĺ=w�ten�%��z_�։sW1�ԱƗ�bK� #Lip�0�0�2Iq��"|�s[��A\���93�R{�
�F}A�;!*p�OR�'�)G��J3w�{VY��w5��RH��[e�)��HC:��i��:Oq������	�Ϫ����Ь�OV�@$�,a2ֲ&��Jѣ����~��&pT��e�N&y���D;�l`}!��e��z�F.Uvk��u���-C�6)[�YD��$�ڎݘ�2O.“���Қ��iޖ�'3�P�=C	���<�-�X�Ĕ��}���Q�ܖ]e�b��-���м�v�{�)R�cMnj̉U��S�t�4�Jvmҵu��'�cǭ!X�����o�,�*�ekU��lcT���@m�Ի#~�(��A6�'��R�Sx��~����"���}mוC���W-9?��Q9�H%hl���^ISk\4Ud�K+��,Y-BJ�A�j���a�$��mg�rV{��+�p�k�*Uj<�soci�J&�@E_[Z���ZDr5ڭ0������k��WJ��Lԭ<I4b����ә�y-k�;����U���b:2��=u��Z�޳۴�����$��Ǫ�b�M��|�r}v�KŲ
wgF��=/%�nmkQIc�7u!�}m%r�Mt��U�Ev9���_ǥ�Z����6\��Q�+z���Q�i�$���4QG�/���#C�H��Zȫ��ƣ<�ųa��VT��
}tQY��U�*#�=	
�"
W�9������U��4���6���u�"��mm����kn�?�G-��x��-�L��{�g�d$}�au� ��q\�����dt�BAw.z�^ӧ��0�#��7�tf�p肾kZ:Z��Gt�[)�6%��q� �G[�d1���r��y�^}G���j���eZ����60�İN%�ϳ�>�0͂\2�tc>x�7 >@�#Q��#�3aaR=��\se�7�E,�bsE/�G�� �r��6)i�%�����mK\z'Ni�K1>YB���0�	#&�/	ʕ���^��TĄ��`+�K#�!�:ŋ�t��������.I���>��A\{�t�U�od�.G鵿��r�r�9���G�Lf}ݣn�*T*X�t�\H�kuN�ٷvG���Vdט��!���k66
��q,�L�F���Z{
v�kg&*�=���TY�=���%z���:ku�Ƣ/��j�Y���VG�楔��U�"*4*�o'w�fKQZ��-�mE���^Z:��^�+c}Z�wj�U�C={�x��#f��X��5�KsǶ?qVM=[�mUff�Y�$�d	[���J�~��dz���OҶ/V�#A`kj�E��b(Κ���Xsnq=��y��C��%�%�n�^�ʌ���W��v:�m�ov]���2��v�d�[f[u,�kz�Z���6	ck�"��z'���ܾ�C�'J�/�b��Z���{K.ƕ
T>X��oSb��±s��Le�N�̺�5���\����^ݤC%k{쭔��zͯ�PA�K���1�^T�ƫSx"��Z����*;�YmM ���%pQ�¹�*J��gT��������W0�9��mKfW�,�=sKe�Y�2�So�j8I�t�bh�D��64��Ky=)j���@N�8vU����:n�*3z_ۤ�u�LS�]�vq��#�p�8X\f�Z�I]#p�dz�:8�I�F��ĥ
A��[]�f�f\V+W�����袂���9R_�Uq��ܾƪB�JCVz&���qǩhٮ�����a���3��j�4!�ۧk�[ʹ�y��%ı��5�6	l0͆PG��wP>����b7[��_�'�Q	'7�V@�,����$A�L�z����/	�S܁��_���Mo�+�Ċq��3}.X�*�e��*I���!�տ�E9��9�c��G2�T�O�"�{�/YCw�0V��Hʧ=�٤�<��5��\�x���>~mZ�^TG�٬vw��!�k�Z�����?/[Wg��+��l_�<�Fى��4��JӼ����5��`Ef+OdF�Z�ة�m�1bY'K���q0+���k�ɂ��v�V�O�؛S-�;V���zҍܰV��u���~�9w�j�qV�[�iw:�ӢEp5�^X5��c�bW	ߛOJ��c�7��}5*Y��E��Q�����P�|r������u��/*OwS��3AR=���1ZUz{�;�r�R̩�؆	gU-�ε~d�g[�Cܤ���D���A�[S~�L�
M<[+$r�U�^�Ȕ4��Ё�ϯ�*E�1�ID�~Z�5b�TQ&H�I�k��)o�I��ےV���Ό�W�Z]�ڮ���oA~)w{�I��P�H5?B}�j�5T�Rq�[�t�F*��]�}n�K]����aP�K��������֐�|&o�[�y
W��_gc��(J`x�"��Md#��G(�H@�H�|#I��t�cF�hj<�"9`@H�~(�%�h� �ݗY��:��݇���o�?��J��Y6������K���.z�^]4�#�N�	/��Xx��m��T��i�Ds��Gqp�3k�Z��x���	��K��iT��x���>�ՖԶ!s�rB�C�H���X�	+F�'+_�)z yܙK�r���=�D�>w��QnD	��ds$I��w&J�GKu�Tc��B*#��H��9y�*@�|d��>�	y�c�s�S�.N|�5q5��thk2B`V�$b����!6�K�C��<r?BK.��O2+r���H��uDȼa��A��4�6���x��0�UB���Q!(��Q+�L�cӦ��\!9#�^��K6�ne�2���'\���<��.3:�)O�Y��g  �a�#+Da��[aⳭ���5�oݝ"�޹,_�)Y��G��i%�Rx"�Su�w{6]ϓ�J�j�Z)!]�$�p��f������f{{G�j�{����z����R��i*��_�?ي��S��	`v�N�bt�;Z��#D)^S������It`�Q�ki+%j��w��i�*v��-=�u��/�CǦ�VQC��6��H��W����Chė�V9oK��Sd����KLڙ�)V"�ݷE�w�����z	ԛ\�*զղ�2l`�]5�Ռ����'D���}޺a�r�7'�����t%���]*.�`�f��~#���*L7N�tԙ�o�Ab�(���#ԩ�<�I�J���b�m�*uEX<��T�E��,S�	���@�.ht��"{�:
O�\�!��i�i�ٺ���~f�m>��K2k���;���Ȓ�41E�#e���H���I
c�z�tz�9���إ�k78�l����n��e+���%���z��&CX�;;�8��$ŧ�K1%T�GV�. �D�
��SUj���m�V���CV`w����7����j�_�̷b1إ�e&���N�ʔ|�+F\����e�1F�������^a|���(�
���Qm!t����%S�lւ���t�m��Ŀ���%�l"��.H�:���-�+�[�-���D>L�KQVRd�H�5_��vX�2s��*珇}�">Wt�����~��-8�M<�o�^���H���rr������ӹ��8���X�v��̈́�b0���=��=�>x�;�kS����e�GRfҪ�g\���d���E'���΄g�ꋿ�
d@�,VO�y6��JIu�'�l����؛{G'���G�H9Z$���4QC\9'�ʵv�931R�]I���QH�x�"�4�63��컢"(_+�Đ:�+u)r@�z|��5��D�PK;�J�&־�Z��BE�!��]���FV�X�A�䴑�׻���b��H��8��oB���^(�jҔ�н�4h%�$�8����6*Ϩ��VG��Q65+Αi���W4�h�[�k�ܚ{��,U�]{wgg�ƪ���Y�qڤ��↼N%�m�cc:TxP{	�lJ~T��j^�Og�z���W� �ݍ
�y\9D���n�9e���3,J���
���j&0���b$�����9i.���kP�%�t�6;z�P�a������gkZT��ؗOn`���[��&�%}�ՠ,Y6��j��Ii�&�qu���_^S6�on
�_M��G�%I���ںm$����~�ڗT��m�k�M�h]����"���<�̰UM���p��­6��x�ydx�6ii�kI$��n�$y�a_I��ٵ��b�w�l�~(�:I�i��ۼ�Ry*Mm��`�w�� �C2�Ff�����(�Ez����{������KI ���b�i!e2ˤ�)�S��Kw�/��j��պ6��b9��
漯_�b���:r�~ٙ��?��sS+Z6Öj��{U��y�$s��l�n��:�TK����?���"��C�����jZL���n�䶍n�	KI��>X���)ڍW	��Mz���\�2^@])!D�H�%�)ݘA�襱\��#�˚�t��&��ծ��g��OkvN$�����C3���������@�����h���J�\���8[�|Z�z&Q@� £
���:*�-��'��gNX��٭�����Ң@�<y#�ý�=8~��I�X�I+1$��k<���/�(��A&�,WQIM,_-�\Z���\�C�!��2�|�;��D#+Z�[wRX��eg(��"d�Д��H�� ��&W�5G�H�.o��C��b��6�*J[ǽ-՚�T6%�$�RS��#m�hD��=t�L8��k�Sy�W��w3���OQ;k����J�p.�t��
��P;��>��ó6f.���nJ�?��/�y��,RC�U�ܗYb��Ծ$+%{~?}'�d�G|�lb�ct���T5��M����t�e��]�j�EX��߈�zJ׫JZDJfX6���h>�p���*��]ۋt�$��V����B�Nִ�劧b}���[Ngt�%G@! A��i��⒑n��z:�$8c��B����m��9�P=
����,T撬�k�T�IJ�f�4����Ň�n�v|��(�l�.hC�+�h��U�R��5wf�ZGL�cR�c�������ݠ��le��B4�=+��غ�F*v�%q;��F�\H�Nf�c���҇�J���&�嶐ݖ*�Gv��ı�Ō���Bx�K5t��P����x�aR��5x��r�꣮�dx���2Oi${D��H)��M2��(u�,�����-�e�ܿ~�I�^�ټPJ�½$�1��9��FTQ��+^��JD�1H�f����u,ie<OW��
uj^�P,�5$p��KWw����z��z�}\�M��tR��kN���)�J�K^a4[�/wF��JKY�؃[����Q6Z�Iѽ���\g��?ڔD8�O%wu�t���l��c+�6����
�t�t2���k~�'Ǝ_�
�0�)��A�-*?	6�7��—��iBſ���e���6'	�@s�H��!P����؎�9j�WFby�,XC*f�~�-��:H�p����䌆ʐ���U��+��4K��;���8J�%uR/с�JҨ%uۆd�)�6�#���<�h�5'�%r
���F�	�+�;��������3�VE��0�� D�E%�ԕ��<��;a6��CD�`ӺKNj�۝E8��GWq�����S$F�U#J{;P�ơ�h�v%�i!}�F���M�=-�&Y�e�ۭ.�-��m��r�W�����)jYXҬ�u�iZTZ���v����jm�Ƒ�ʞ�{Z��ֶ/��S$���D�n"0����m����7ۛN/�M](�����OV�����qLϱ���5,[R��L�<��<������r'"+��_�ѭ��W��Y$��yS�bK�%F�z�Dzs�|o��הM���Z��KYg�NJ��9�7W���=2����6ҙ�m.Ky�T5HSR��YZ�΋o
�_��w��Ȋ�����tڴ��m� �%\��T�RMC�=�x�Z��J\�ZtMR�v�EI��7;9C��VH�[����(W��qh�=Yݪ�����*^�T>D��;t �7Ҧ�N�Ij�[�ߐ�}�Im�`�ZIY�����SR;"ݻ�枤���/�jҪz#��Vw(^K$��Pg��"�m5�oӶ�j6քOs❼z޹��x���ߧy@H���a�bpA�qbyKо
�Օ��,�{��ww�e^3��֪���{��2�E��-�N�+��	�n�}l�C�m�kR�b�zKBX7�dIS������Ii,��*Df��ϱ�2�c6n��X�1���^���D�,N�)ge�g�I$�s�q<�X�W"�)�@Gt���7_Qf;JfrI�9�X�ʼ�d���D?r2W�s���a8N��*'�e�1X&E�W	PGr݄��!�6Od�3I�����eH��p`VU�`@ɓ?���������JG�O2��ߐ.Tb~�"ob}�yT�^��1$?����sM['�4n��x�<R=A�d e�tPKe$�#���ȳ@FeE/��
uW�1B��}n)O�O�j<�f�oܕ"k-�l�D�K׸ʎ�fǕ��*Zi�e��#�^�\�[c
W�mf���<�.���]��㘢[k��^I��	4�k����Ј?��}N���65eV;����ڥ1�(����(Z����Z���w��CwC~R�����|\�oE*ik��]�w������h/=52���z#n���>EGeE���*h���Q�}<u��N��V�OR�q�����`�\�7W5�Q,[}jn�W���e�v��X_t��I��~=��_��Il��'�5�Jj��2�F����+o�;HjU
��jm��Et��}���ra���a>'�n/ED��j�^��]��y�	ș�kg������|�8mM��{�j*+R��-�qV�
�b�>�Q�zS\�Ă���_Am�a�}]-"R��^�z;a�[C�����W@�`�B�E[�YF0�~�������9��V����ERۋߔ׍^}�9�b���0Q��id������Mö/}���W��j|n�n�
��,��c�x1���Γ��b9�G<J�;ZX��y�دa�Ϥ��R�j��u�U�6��z%X���B.�䳶�3���sUU2.W�cFB��x��ɑW�r~$-�=�M"J�ś&M�Vb�Z�
�����k�UjVfz����iiR���I^g~ŵ�BP��tsbtFORԅ�AIX�
�0*T�q}�w��I[�E"�@H ��ug=x<&V���K;��N8�X�ߏ<`����x>�Y-�J����	�j�v=2DY�&x��F�(�s�W���)E��3�r{���Px�ƿ����Wd���ȃ����Y�����dg��Z����%u���2�aF�\tq�Ȅ8��Uo`D
/rْd@���B�K��?���PΨ����ӫ{��w꼠ZN"m�Z��t�d��$��6<fW�dgF��e3�,�2�;�>��޵j���]e�튖`�B�Q߈�D�����C=���S}r!�o��)D^�[�W��Y�/��%jZa�Ѯ��ZU�D��T��iW���@E5�r�����ĥ��Ow�Qφ\�W�V�7��$䷠��R���77Q)�p��;��s�Դ�&T�䝽�8)[Rw��o��^�k	��DE�Ԛ�I]�,�^�*���Y�F�K�Ces]u=&��wx��*R����,$Z}����]���[�5&�Jfz�lo�ڳDb�������z�R�H�"f�@�_�͍={Wa*��en��B"��ٷ��)#�̧G��m��Y��ݙ�;4z���W�&���ڢ8���(�F�^5�7nF�-D��6�f�_'���&�'��3OD(�O
/E���`��R�i^�ڢ;���38�%���OQ�?%�Z��l����ծ�*����*RH�ކ�gCCZ��e�c�w�l��$�jYB|�wvg>�%��������"y����A�kf��#1���B�c:\��エY�ы.�F��&p����b�D����ۛ�]�P���ҥ.�
XB��(m/�;'t+H��$�G��U�O:�޺��Kz(x+K����x�׈�p�	�ko1Q"R�Y?qqKir�$ ���K��Ñ��c�ϱ�9�H#�W��A�l�i,1�C3�DI�	Ç��(�|�a"q$�`(�Û-B[G͆��#6Hޖs��#�LP�d�������H�@l�U���%��
�'�,](����"�t��يu���1�N�ꇊM �J�3E,t�!����������G��8D�|1"G�f�8��TH_w��qA�{pѨ]�J��,�?o�R7uN�;b���dy���h�%�Sv*�C�c4Z��U�u�
�P"Kb�ԓ�&hn��(�7�x���w�@�,�zqG˵��j����ȣ��K�*ESj��KVu2�u�[�5�����g��~Ux�	��_C>�����!�ٌ[
����ﳔE6�ٗCZ���km��2�"IA����5	`�Z�#�����z�j�p���BXK�RJi! y�c��gz��9z��m�!�P��S��L�ӚuV�rT�ȭ��A��5]�vp�I��k��.�+=��^�
҂��Vܤ�D�Һ�+_�R�Ԫ�B��D��ݘY���	�۩A)"#׫v=%R��ޮ'��“��'����G������k����wq�
�A��_�+�vۄM����_���o�{�,�Ҽ���d�unu�'g�"u7d'��H��� �Cs$i,,=�,�Y"�G}���4a!z�h3�:xȳ��(�C6�<�(��|��ʺ"mh>y~�	�$���� ��߲FƠ�B;o/Q�߼�1"�>�*Uyܛר��@�"���%�$E�yP����D�ݽC��e�r]Ն�eN�ǟf���	aH�>�������ҾE\Z��2�n�s�����B%��"Sĭ?*�M�i�#�^����6�%+�\v+�-��?c�zփ��ċv���c��IBF�B>�|�Jdn�H��GƭKu;�ֽ.*��,�]�{����
�]%sD� �C����g��ُ�$�ځ��C�����w6e����bp#�@H�j���+���2�f�}��Z�s��Asbȇ�^P��â��N�@bG�C��S�%zޅ�^�
��~�DG	�� *q�j�z*�U�Tn�"X�
���rl��
������T��*t,ϫ�ޣ^ �Iv}$�H�e,�)�Q"D<N	\/̀������f�8�B��\�-9�b�m7�5T�im덍�sk'2������^�	f֥MF��u(F��u)�U��W�k�,��i��P�Ա��a5�C��+Y5�:k��-�TjΚ�b�C��ek_*>�O(@]Y<������k�GN-��P�!]���$����"�V*΄���r��$*�H�y�Z�CJ���=p1ko��V���N���maՇ�ݱ	t��g�X�'�^���YJj)P�g�8ig�<�5=Rr���W�"�+�M�Uϔ%Wa]�SЅ��}n�H6� m�M��Z�b�-�ֿīn٣��gU�\�]�╫KkM�zԞ	b�_c��ޒ#�V��vocf���� C���2��ЋU�}���]��]ŷ�c��7�,P���>ы'Ơᨕ`d���@�bIC|L�	���!.��GDw[ug�j����$����J�jo,5c˷<���+U�j��d�gA��3���c��OH�=��y��v��V�J��ZE�,�4~�ǵ�OV�<�ēQ	$�9RaKkO]�MV�+���Z��֮����u2��F�)@-�r����t.W6{����P4�7�[g=���ښ)S�y���ğ�"�b��fT*�[���9Z��we�Jz�v�պi��~��%yD��/N��[--\��o�^[�i��3�p!�4e� `~��
�1���¹��)DYD���hS�P;�p����i�L�ՁV���xV�aUu'���,��5��ˉHT���u��kd�����Ir�Vn�=��j�(U�Aw�`b�Yyl���4JI٘{y?� �0>'��{}�/�G�~��7;�'��o�n��Z��J�Xxq�(^����YQ3~�“¦2��,���v+��96޴h����
rpѱ)��rY���I)F��_K�[�>\���j%���:���F�ԯ`��[k���DGca�qҁ���TZy�v�A��-9ݕ�Z:k�԰�hoT�GoU�b�����b�i��A�y��T6j8H)l�Ҭ���k�;b�����er�����6:�I�@���g{f���YbZ�F�\A4F�
��a��,Z輊�+���Z�hA,e�r��I�[�����r
f�:sJ�KLo�V@�Aa��P�<Z�6qȗdx7��d�.�tx�l_M?�U�s��lRx�B֥I����m\����=sʿ,���DAj��f�E�F���mi�#�'�;;Z��}v�(�]n�mB�����8.��Z�-mME�-`���T�s��Kx����{�Q�E���#ڸ�����̴�(������W�f,=�I���D��9g �NYQ��G�"�|�Q�E�E�,��VtYu�����(��P�����7|����ڜ~R�Y.���ލ�a:Ȉ�6�
��q�['��Di��M=�Bܠ���K|�wo�Y����Kc�ko�ﻠ����D��n(Wy!�.�-��S*J�K�.�a�
���4�<&��M�D���uOv�Q���&��"��X��2��k�y^�'��T�WZ�D�jb�`�Y�>�eN�M�T=�ogbkQE#&�qj��Drm�Z�fv$ۺ��4�")-4�H+��bed�A��9�5��:24��di���"�!#�8Nӟ����2��f$�>�*��� J�a�iÛ+A?b�d�?B�qL}t�&%�ٯ�
J�����8�@��-~�/��@�w7�R��ҫ��w$��4��i�f$w"B��g�in��ʢ���~�%���ʛ'���lX"R��9'7vdz��SJ`yZb���o��9l�פʨ��a�Dں��t"<��FN�Ǝ��Z����R^�[�e�l�:�k��]�#��t��Wu�� �W�+�f��E2=�7�*��Ż�wN��kEHV=�}%Y����S��:y
�v������	l%vK(��~k.��t�I�����z�%��m%���)�k�o׍���
=���@*���ƚ�W�k�S<o*��h��پ�ʫLw&T����޲W�T��YDa_KT��Ze�U��%��ebÚЊ:[p��^�è�i����[F�YJESAbP�m�!�C]J�K��u/�NDIm�V�M��_�J�`&W3
��(��V��J��t��%��-�Wh�C����ʚw垫�د��$�Im�*m+]�
�o|��Sc"E^�(ä��Ŀ% ��D^��Y&>�
��rC$n��=ݑ��]��W�)w��'�D���"Yu<R��)M�@ι�(��B�l����-�H��<E�k�[s.�ޮg��'PT�#���
(kԊԮdX��ѿ�@��'�k]���w@;�2��K5e��k��n#Ƚ!�bk��5�[v�՝��T�/�'Wfh�Z���bp��w��p�i@�dH�ʕ���ZA�Әf�����L��G����&�-����E�}��6o4�U,�<^={�#�	�W�J[/�!���R���wTY5���S]��
'C��s�D��OB�΁'�A�S�:D�g8p��s9�h-���5��}]\
"0��I�A��L��%O�n�|EP�T�����^(�76S�MށrԖ',�r���
�r͗�Aw,JP`�L�[���\G1�*3A���@q��{��sH62���ӿ�	�6�*ćī��p#y)#�6	�ξ�[���k@F��hZ�)�~�T�	V(��#_��ݨH:d��l��p�E��z���t�%�o�yMr1���S��(@	��$�j�/>�O:�V�y<L5��x�5���
bNQ�K,���w�+I	��ق�K��SA����l<���*Ci*J%Iml�ݙ�$GW�Kk��Q��ҩ�����-<z�6���^ߎ�	k���~�K+�p�i�Y�yR�I|we]	8�R�$�<��&�AB��rc�%�mx��w�q4�
t�e�l��,n#�F������g�ǥx��_c�?,��uthKVB[�y����;�u�S�������Ae�0��#K��i��Fո��]zZkh�hX��E+�JQ��/U��K�|��'���!��Z�ݨ��B��Ur�*D�duV꒎�3}��RĨfD.T2���B}�b�#Tw)��`�Ǻ':%�f�"l��[V�-D��뤯����D�<Se{�5���X���,��*��y[���[���܂WH�lE$S�J�$�-�NR���,/`�f�]Q��$G�KYJ��ZJVZ)P���Z�����ehlҳ�OM}�jWb}��(H��j_���T��X�ٞ���Am>�6&R��h�*
��I2��~���	�ޞ�7�_q��7vq��jUt��pO��R�*#2%M��*KNw<�Ҟ)=�y~�@�S��U��XQ���D��y%(��.!���u<.� (8��@9��[���[_�7�� aÇ�9������!G�"�E�9�~pī��DpNL���'�M��e��7Z��9��
�0\J���e���­��2.y��E���b!cӈ�#*.xօ�w�$Ɔ5�0E���WSI��A�Vx��Ga�<�#�t1ZG^��<W\;��S:�?i��Pba�R����F�fj��	��J���w�W��F�a�a�� N4��T�aHmx�G��h��(��ߘ�O�q{��G_�ᖪ�~��ʕ�����ĉ�+���U��JTBKڵ~mik Zo$�'�,ikV57*|�#R��*h%�����k��M�kS�%[unkiH�&�>�p#K;yE7�����Ef�V�	�v	�P9>.�DSAu_,��՞T��46�-��2	S[W\�5�w�w��S���=ݎ�2����S�����5���U�%�k7v��X頡}��5$��I������΋�\P�+Z�%�j!�R*:_@�X��6��7n�k��*��±�Io�yŐ�ʹ�@�Oݕj�)m�[��v���W��V�G
z��I�~�{1b>�}?p��%���G{�#�`��ފέ�S���c*Uj�z|�jZ���@�}\)Xl�����zUD���L��v��i���W{���5:yM����c�<~�f���U-tz�z%r{�Ie�D���z�t�S�J��������Sj~Kn�oje�A9y�Bԑe�����(�W���� �!��t�&�c��� �V�'���K,�6�h���C���v4�6��eB�d��]�_��"��2ؖ��3��B�:����\�D�1G!�1etutv����=�q�5�AZ$��v{���y]�A>�/�W�X��� ��9��
mra�KrP���?�3���j?��3@�LHة����w��y�:l����$��1#t� g�\�H~����a��l�&
	A��.bZ��g!�I(RqÐ��)�J҄&i�����e���,Hߺ�z���D��~x��,�4�O
�2W�n9bU}�^�%I��oN:q��~P
u_{���F���[sꉮo�R܎��d�4U'�{��j4Rh"�5�orؐz��B�*)�/��cuR)ev��q+%�v��ٽw�'Z�P�_�b��5e��[čj���2SsM+_�
�+��J���IoS��;��K�'�2]�w���\�v]����J}؊�=��"�ٓO��b&��0��l��x��NkT	Nξmo��v�Q��y*����"J�Q^&�z[����3�C�@7[�*P� �Fed��t�����cS)j�^[�+1��퉒�P��Z��9ɕF�i��su%����"�6_�<z�H%�W�Σɪ%�+�v��HQ(D�D��p�rdbX�V>��(R�/C)C�_f���q���FVE�(��j�/�%xb�^��^�R9_M�}��H�^�׺��RD3ͩ�D���������5O'�ʝ��-�����O&IӲj�[��Q����M6�J�Ƶ"YR'�EHг�Jn�UK`[��O)?���2B���9�`8�g��D�Ϻ;=${����n+���y^��ko������v���,ӧBX�;S
!]�B���*�a׫We�h���hR����I�j�)�/��T.��|��GI�mMB�(�R�v�Vb���YM���� ���P[aYG+y
���N��o������+�/�C� e~:���j"4���>�,�`�M�v�a�73�;��wV�M*��\tv��"��FF�~�<�͍ծ��ͅ�wf�&�TU?
V��T��Q��ud��ڜf$�9,"�R~�ϱuT,�]���T���-O&��w�����x�ͪIH���S
BY�PA�uV~7Pt9����h�C�Ǡ�E��3�tw�l�� �+�6����fÎ�Ǵ��^uHԴ��tU�%h�R5�������\s�ǰd����0 ����%To��!��%�����5)Et�J[t'�
[+�"�+����'�W(!��������%z��WSb���O*���k�;_�@:�5w�Dq.T���
�Goͫq�f��S{J}�ZM���"�+:ݤ�	|~*t��%i�Ԛ�Q�ò��H+˩^!�ߑ>[��b�S[nx�6��TU�P$���fD�}�:-�T�DsZ��[ft�K���M��'�Wwk9�ے�v���
�����'NGn֟X����%��ݕ
� ��F���ogS���T����R������2zJ�h��Q�?C�h��
�$����]�b�<]���8ˑO~Z�N�B*h���]-횽��B�W�}��B��k}��4��� ��u�%�К��o�;���[OJ�O�؊=�{5J��O0�WrUv;�ₚD��dLC�q�$t������g�\1'ԱV��&(�L�dnCx����b��]u��h�zl��׮�{�)^��g��ΞU�n��kP�%�s�(<:��*i���l�VJL�kh�/��{萢�H������l5мQH�&���Ҥg��|N��?�7:	��ot�Tۜ 9m�y^��G���<L,Ni�=�@\���*"<�	��\�;�1��`������bY@F��,(��~�%T	b����8�O	�[E%Nlﵙc�$��<��Ի�sigܔF�/��3wB$���W`2�v��Mm�b�����R�A#*�J�s_u+��E������M��D��Qyȡ�!C�U����ec~(蕝�x�2D6��~GbZ��c��N�6m1�J�״^V�>��]:]:k�
�n�"$78�t<?a��ᴨ�G�[d�{�h�xsa}*���c9{L�����m�X�H�EzܴjU�S�Pz{��&�:QS���\L�3��,!)�h,�ili���4[9�ߥM+�����%h(F�(��Y�,�����	��{[e���Ka����L
{��{�Z�k)�J�����^I2TJ7)�e*y
�ե��]�
ƁZ�[��(<�͌�i�0i�Z�ɧxhK�6����ò�T�"�����YD>�vz���FI�n,����jl�S;�|F�
l(��f��m�ؑ�=�*�؇
J�}�O~��·���%�
#o�X�dG
E���x��ZTwEb_�t<5�UQ���Dt-4�'`!�<�{K�I�Y�y_���?��/V��k���^���,6<�@
W���6�x#{�D3g��e3����-����BPS��*J�{z�v*�%%<r��Y�|������"�3w�m>�/U�ɥG�J�'Ch�d�F햮xE�)�Cv^E�z��bp����(�<F�cU-Hg�,���%8]�
��QDH�$� ��	�6� Wv�z�v��=ml����/ۊ��h6k+��k]B}Su�#{�'���\A���/!q܎��:b^�FOeq��g�뫘D�cX�?au�H�K�����0Ќ9�!�2��S�H�Pt�W_����lrXKr�<l}zq�ù?`L����>���h"4�mU��9P�`3])�V)u�QI;�[�&E���{��W͍p�]q�=�#�� �X��!�IP��Ei�ʁ�V���߹+8Ovc߃�Io�H��sH+2�_�CV!�o��Ԏ�Rm��dB����6�Ϣ�%B�E�G�9-�Q�̖��q�;��2�$�c
(K���ԧ�������<�QI�e�f�q��U�ѩ����{ۀ���Q���S1�Y!tݼ��r��ME��%\H���k]&��O_�g��ۺ�l���8'C��ˆ A)+8Kui7I]b���-ko�,�e���To�D�I%�n����x���I+2đ :dv����dG���C,2ڊ���H⭺w[�}*�՝�\�<����w��ѻ,H�!���RN�m�Ķ��BK�}�?�;��z�3��RT���
�(���EpUIWoFF�&"~Q�U�|K��Q=ˆ�#�VT���ي�����W�<n��G�L{��(d�ݫ��@�+�R�J��'�j�m륒=D��c�%p��-����.%�W�aO1��i>�9�y�qLD���S�ȃ��v�\#���X���u���-ޯ4�����﫛k^����K�}m+�bg�Q@���Sŵ�(w|�cJ�5�m�Hk��h;!��9u�g@_i��✬���K[_!k���u���%���r����n�%���Ţ�1�Tpx`W�7~H��Ĝ*�S(F�E�����fW�e��Ĩ	�m��؀I��#��F�[���EKEH+���V.KJ��z�z]��A�`��<j�$왬gxG��}�䒰
��\�M�1 ��f@2�#����,X�Z�GE�֩�YX�,�Y�8�~Kn�s)'���E�ƒ-���|x:��^�����L�������ơy��u�]�R��ERQ�+�z:�����z�Ԗ����oR�:#�oΡB��3��ۿ(�8Z�iᦜE��Q�фz��oE9f�;�]-)Q��Ifl��&&�w�o�G2>��U-��B�&��}�V~�w���v�@�Zw-k|���d��V�b�.�R�ƈ�'�j�ogJ�TT��w32K��(ue},�Wm�/Cֿ%���I�=���
�ov���J[�E�LO�$��z�5�!�$�Km�h63T{��6>0��|Gp�K-[O�Kv�҃�D�Ъ��$�N�V�����tS���šI��˭K���*���*y��W'��ogfg�O�@��O�I=�~�*��tP�%}�b�t�#4e)�%�s�����Hx��:K�B��Di�E�gP"�o���O[v�?,(���^޲�S�W�ZU	�*����Q$u�sW�[�Ւ$�+Ф#�]I�w��e�dEG�ʅ�+B<���������9z!��"�t�%g�)��N�N{��Q�+X����2�+֥���5>�?�
6��s*�$��;����Qq-X�M���g�)�;4��mV���v�i,3J��ͽKH����m��׭�|+O= ��3�X�M�Е�KjQ]��lk���%Q�2A��Wd��6Q*_��Y݁����L�}]RwJ�2C�'���zb:)yB:Gp��ذ�:�S$ev*Q"$�+~���8�5�
[�������Ș���-ێ�b0�y�`���ID�u//�Qض_�㙋���g��["OK	�����F��"��y��K�|�S5��;�2��f�@\����I�ԣ�j_��eK�����xӥ�9M-�Y��m�2;�U%F�	%�t�8^2Cd�E3+�7Ҵp?��ie������O�8M
e|�HB���8:rW��*���b�I1T9?>�}��|�ݬ�+��Q\{/T��n0᫲�@\�:j6_QžϏl*'�|�S��u���t[H��)Y���JV�_�k���t�Ot�Y��]no"�Z��y%���f(�b��J��$"���
�@��ݚR�c��tDC)T���e>������1�K�M�ۻ0]�(���SO;�c/��'��OG�f]��Zѹ6b�n߱DvkkA"~}��m�i_[+�����"J��?�'�_�W������Otq���$�#1B���Я�>���Djr��+�H�G%�Ǣ:q�T�R�x�c�p~�]��X�K[h��YPlHE�B����ygq����O+EY*���̣k�m�Pk"�	���7yv*�pҵ�D����G�y�Ė����x]�D~�[IsK��sUb�V�|i5�Gj͈>m��Q��MX�x|�Q������>�E"u����X�Y/�d��D�	fx���#�<f���=�>�5�eJz}��#�)Q5^R
����6��V�ܵ���k��e��f٥4Us�>6�%�Lq�N��i���b��ye~EA�l�'̶?/�6#+�>��O�\��V
+i/:5�G��(�$D���Tf�ڒ8H�\��'���E|�)uR�b,���o�*B+d
��2�s���U���I��7(��2�j�_&�E�Bz�}��J�w��jc���x)� v�_�k�@ĺU=	�P�Jf�Yn����kiV����b��a��������k��ȝQ�����2yv�}�N�x�&H�=�!0 �R>��\�UT=�;	K��5@Ȅ0�vR(+=�w$6Yz�	��b�!K��
�W��B�Z[[��5�p��i[�l�������N�Nӆ��<�}�V����[��4�*!�ۡ��?I�ۄ���M4H�u&y��Sw]#z��M�����U��y<��"&��9�'!ͫS	��E/S�-�R|W�'c(�Stkn��Gd�
��jI
�J�R��Y�!p��df�I8X��O{�?�3��0�����}����;z
tb��0'�$��J��{�(�JZR��P���,i^Kfo�VG�9u%P�T5�RH%��
���C+D�0�ߖ��O����̊�����r���P����D���-���B�b����G��h��ڶ���A+�	�W��I]�Dw.�l������y]/t�����Ic�ȨG�&[1T�V)|��KZ�i�>X�����z�W�k,�G7bd�KW�}%������D��}�$gT8�+CbD.��G�ٟ�݇{һ�f�!��+�q��K>��\�;J]��~Yj�5��&���Q�{���Y���z�TU�㴎�[6����~��;�p@�%Y�)�F:g��z���̲�w������߮k�u�迢�����K�I�ho��.l�	Z<�y-X.��F�w���_��-̬���u�ƪ%�p3i]~$u9"�#�-YEPU��.��r�FS�|�ˏ��:�,C�-��E��2}4�}�����'���&�T�^�#E��О��{+J�S��ە�	˛��g`���hm�B��m��)R-b�Eȉe���}�vJ@ܩ�#/�6+������iPp���������r�:��$Ng�#��S����v���r��\,W�%t�)+���%O�ܱ�Oe�R	����v������ط���r��*����G�lCf�}"4��4��2�[����h�ɿ���v$�*DȮ��ϱ=>�89��G ��G�s��Dfn���W��_��A'��}pt��Q�:�X�v�g<+�dy'u?����Ku!G�D��,$E�
5;�\��-�$��6����M�9NjKu�&����J�߾�j�h�h�H�]�D�5�C��&�eR�pk�&�s���%	�'�m&�T��N1<?x\:���@�:FX���JEҺۉ����e�RQ��єBȏ��0��k��+Έ�=����JB��a���
�P]�>Z��j$s��b����~)t���Ӊ����*C"SGVt��j�~R���<s��)�}�j�.��6�7���ε�����^CHٿ@ %�gO��{K0y�dK�RDwF���@0;;s�~��k����^��J΀����*��ȩrFe�T�p~���Ù���
��V��4A�c1N�Bꀓ���޽��@�������vH��J0P/>�PI��(	�F+	Q׃ǵ�|�ϕ5��?��TJ�!Ȥ�q��1���#��(G3"�/�02p��ycW��h[�8��;?i-��"n2��j���-X�CXD��4�D��S@�8��NB!ƙ�቎3�$�b,<�H
@�;�0u�t�`Y�^vn��$�lN��I�&4-�O\*�>�d'��9u����s츨T+��%}ؔ}�D=d�S��'���������<����;��p��0~��s���<?��B���`^�I'8A�bt�X�V��FB�z�Cz;��I��r���0�%׽!%�5o���%��vn�4n��0~-����i�J�������V%�5���8-mJ�`g���vI�\���l`��_4T~S����[�u�j��h�����}��U[%�tU��I#"��x�:[�)�f=k�VxJ�/Ӽ��|�k�m]��U��H�+;O�v�_|Y�*dCyN�y��Ǯ��d"/E��{[��kSO�J�3�l�
��.B��aj��]33�S��%�HKmJ�I+Ak�J�b'��byPeD}�U��5�*# m��WMc�R���:D���@�F��9�NS�C���zz쀥-�{Aͽ�>Z��38À�8��l�'���k^̀���^�BQ��j��#���
���]S�+�*��('�����\ء�4��R���7j�a��mG��@�WV����8k�^��?ݥ,��Յއ"���#�*~�9?r��ӌ���B������A��hC%Q�{kn��
K���	Kt�I!�ˤ��B����pq�8�X��Rq�w�*l��"A������G"��<��[�I��VG.��A��Oq���0b!s��F�eV"_G>ʥL]FS�FWp��
�Шx��1$2�ź��H'�Ewv@�f1�,�xnb�3���t��9��#:9�3��N����8H w
0?����u=꺄�?EXR=���G+���?u��0�yHv,��K���~�餚4�A/P̐-���ʗҴ���k�J�5[ҹ��D����=��nl�W䞽2��N��*	o���k�g��
Z���6652ݱ�#�8;�3���>�#m�C�oj�JҬ�!�Y�6o��of]��1<�=��&a�؟e��dn��E�NM-��l�H����) 3�C�9~{�\pb�j�ZMէC����J�]�om��Dz�v��Qx��Ė�T��%k^E⾩6W\N���;�w/C��5�j(M$�ܖ��k[ζ���%��Z%�X�"p�o%?�T>����_��i�2ǮU(J�D�c-�H{�zE��W
�$��S��x2���`�2�GYP3ܑ�(��ܟ�'�}���w@�a�C�8X������Ix�$t.�R&[D�v��<\#��ʎ��zI"�U�=[�2�<�H�����ل����o,�]��]4d��-�Ա�YE����=�^�'^�c��g���Y�C�20Tw���)l.�}Fro�o�'���R���<����c�ul�H#�X	8��pc1�8�I
N�L�	l�2�
�S�}g�Q�L'�[ׇ���o������],���q���=P~�;���TR�@���������0s�G�t�s
���
=��������W?p��۟���� au)¤<,��"�A�ø�;�;!P}�$K׏�^��EH��=�-'��4mKZ�H�QW_wU7�'g�v�ԋ֤�g�]k1����ε���<��E�K`��ԛc��Q,"�iG����_�F���boJ­-�))m'�PA��b:pa^�eF��!���ra�ٔ}5�jX
-w�O7���D��_-��lh3�p�Q�]�]!����(�P��}�S��9�zWpLM+잴�$W*��=�P*ر���>CR��0�@T�V��-yz�/���s�(\�控�.�uZ�?�ʲأR�,d>ͰӝU�������E�4Q.�ڃe+�u����C��;��I����K^8��2�=�_���li����`�>��:�S�pθ*�hx�u�*�`F$�%rW���Z�e��i*�z�2�Б�
�*��\�����KMy�����$'�U�%`�\���t:�Po�"�d_A�~B�2KIK���5��\�Nŭh��w%�^I�]G�{�v��A��=���n�s�0֕�����c�;��Tq�9�	C�Y���]���5��l���rG2ّ�d!��4D�˒�gO�rZ��?�(�B{�HBQ�K���YX.L��� rH4)�y����=�P;�ψ�P�B�K�����U'�=	'��O@��s����#�����C#��p�p�����~���?��8G?����*T��;����e9�8�xU1�oL�Yؐ��fy�!@
Kґ?g�T��g�e�D�U>D~f�T��Cy,Q/�]t����r*he����%VR�Zݛ��5�2ů�H���k�U�]�Fy���ߩ���y7�X�$�,����~������@J '��I!�0��y�Z���l��]u�Y%��5"�pCܲ�.M;�H]5F�e�}%��Y{��垎ε���&,���k�~N9]*V}H@�"�J��}'��R:���㽫�rwD�6����$�"G+��d'ޜ�5�,��}��u(� LEY�=�XF!^}��b��	8X�gpQؤ�B�����p��W/��˕Z<�8j�5���ʵҼJ�:�&�� aFF�o\�p��rk�t)�&�Rn>jvQK��%FR��%K{}��C��*��}�t�8�_�FL�!�����������lE2�>��s��.���a�F�EI=���,����-�^wY$���m+�	XK�Y�D�3�d���b�f(�/_YTA ��G��÷9����o�>�}�&P��q㋤�a����(�1_�h>�ĬC�=@}tO��J�D�i���HB�l�r�軐{����?��!!��+:�<��N����	�{x�b>��8@'�H>�'�|���������������3�gO�bF�[cb�
���)���ۘP@�g����'A!�;��;z��_R2�w�����]����N�}c�Y��k#�����21/F�6i¨�,	qn��_Sa��	vaz�m|��e`��v�i5a�t�m#�P�uZ�5ڴIl�5��n�(�Q�-?\�8�d��&�J��D�+ݭ	QJ������'rm�O#�.U�KrC$
�"2�T��0J�Y��@��Ý6�]u����Z�4��Z�vs��~Y�2�5�ET��B(&ϕ�{	J0[(���
��b����jKJwEoҋ���$�ܫn)�� TT��f��i�<���gF��K��l�z�k�iՂ�CqTPnU��2�M�9j�`r�.�����rαщU8՝�p���E�8�u%�8_$|w}�YxNX�����1�p�lG(�S��n��g�g���o#Gp�-�i�=�Ź~�q�r
����]к�&-�F>��{q,3+VB�<ϲ��I��O-�����C���4]z�����	'��3�I��n�^2L�]?…Y����?xe��+Ne-�Y}q�̉��+ϲ1����d ���1���������B��z2x���KDBF\��	��Rot��Ȅ�/�?���%�
���Yk'=#|�Ɗ�t�H�����@h]�p���xCt��S�9ϢT���'��}�TO���#���>���	Č�pJ�����I�D����;���C`�ۘ��k��Y�����p$��q (��x]����B;�^ �]ߘQZ_Tn��++���B{(n��%Q=g ��:���)�A�V�:;�sMnXaB�I�-m�Z9_�_�c�X��蓰V5�C�����.��]����t�,f���<;o+���z��EU������	eH$��J�t(<<h�0�J?�W�M�I�a=�9��}:��J��MWoCh��M��_eiı<���OQ����O*��@~	6�!(��u"˒�����̽t��Zu��B�U#���Y-���g��{1���g�D�Z:�ޕT�y��Rix	"���:(��V�3;�+�1�p�HҸU��˭�N�e)�̅�B�$�4ണ
4!��5w,Q�nM��rƝB���C��)PJ�8���Ǘ%�rů�%��Nz`C�a��Ƞ�!؏p\�ľ���r�e�3�H���
Črot�R�����ҽ	�'.y
CÖ|�d�(l�mf��r�e%8�x���y}?1������~��A޳���}#m
!R�!)�q�8��>�E�:���q��h��,xm O�M.�8�
�g�Q�%O��G�H��̙F\�1�F�#�Ë"4h���G�O����ƅ�-4�����KUcN"pN�w���#�[�bȼ��J���B�j��`bx�X_�*Nz?�F%gq�B��θ8a��Ό��H'
�Q���,�؜��C��S�V ~u:�Ȑ�4�nRʧ �;�%H�R/�_in;��K���8��'r$D_v�$wcș��GG�D�l�^Uy��Y��lԖ�	鴬��ފB.�����E�5�^D5%�*sCm3��kA2X���SQ��(Ւ�,(�+Z껄K��K[�λM@��_�@f�	�k��w֍������S�v���UB��-�4Ԡ�]Z} �N�(:2�o,�#;�����B�6IJ�~[+t�s4S.ږ�]E���5�k'�Y聬
J�qR�R�9qf�M=_F�Y��m%eM�ӳ:��������-�>_����'�}���4.�'U����C�fb%��s�PU���8��y�����E4��.CrxU x�b���#Q�Iв����rJ��jѢ�f�`�Q2�*����FH����K/���?c�+�D.�b a����1�S�q-:0=9Ȑ?qn��*�2l��� ݙ��2Ź$݉����N#}��W�8O�s�T�q�X�f����N�V�E#F��ȓ��؅8:�ƌ�L�8�	�А�rfWS��d:#p�j�d~1cϠ��Y�TE�'�&�X���+��F\և�>���n�F%r��$�BR�Q�Ɓ������4�rz�������O�337=q ����A�r�ܖ)�U\:��\m"fºW*�~�ɟ�.'�,%GI�t�I9�T��C�L�`�������_@�4�Ρ���)AI�,�N�;zUbTGfV�킔i]?t��HA�	-ѐ����JQB"u�!Vg
��rT��9t�O��V�ث���g]bd��yc��8.�bJ�V�Gؾ��	�th."VA#�{��ۯq�L��q$�%W`�X�hB�}��!L~>��#i���=�~Mh��J�����
����B����~]���G��/s�\9Z�ԥ/]�^I^y=�vv�)#�	l��@�VՉȎ%�M`�(�T�߫+o�*�Z9H�C�x��Rj�Qy�"�\���+���HF�krLM����B���H��W���b�Qfw�N,�/������bi�e�)���o��D��U*�I��s�s�j-.�&����-=+s�,��]�|.�*LU��}�^��$������%l���N�'=7S�}=�q��N|'�~9�,�d$��s�O��Ҹ#�7pʏ�W���B:2|�O�^�)�1S�3ܲ�0u����Bґ�E@}`�{bJ����:c;���#w�2X�BtXW��e�s84�Lrr5%���zW�:)c�!�}���h�䕔����HU�: ?�&t
Or�P���b7$��<:�B"�4���U�D�A"��Hw�y����xŒ�풚N<�3���,򺁞����!���s�@?d?D��9�R��nȬ1�P���i���"����ذĢ3f�[<O�*p[ڥS訇,m�”
~+�{��}�g�z���d~���A[�^�=8�����'��mON�N�+/Md���*�ZtX"�R�WC'%��\UJ�VKꦾ��,U���Z���"J�*n�c�'g�7�Ύ¥_�1~V� �;�u5C^���D�h0E�k���_�8�Pk��e��AKN�w��H�s�ďӝ„���aE���HBԅ����%a�Z��aY�3�q܋c4��gfFh�,N�wB��E,Q����J��v0�-�=%]�\�~�'�!ԯ���vgլVc>���W���b�/�)?LS��H�Qк��}*�4�HY����D���'��zǙ��,(Q\�����y������	ɐ����) y�7�ʂ8b�X,�T�I�P�1#
d8[�	��Ĺ�T~xI��"��@l`3��9Z7{�:�*�5�?����p����H���QcO��"m�JÌ�Ƞ�7��~�0�"|�f9P���K�܇�����s���*c!
�>�N6�:>�I��c #�@y�}}:\���r��ܔC��gn�c��n��ǎ��E��H��M.��S�n�(�?��+���SCDٙ��س��RH�>�	�ȀO��%O�\.򟡑V�2}�\�$?7��ʤ�U����9��@gtUG���Gʎ�vvg����6�7���ijU@�n�A
AӅ��q	V�!��U�?@�cu�$b%gF�I
�m;#�b�V���A�,�CՑ��G��֞����G�Z�l�=my�|f�� �ߏs\�`��ڴ�0���?�$�P��_ȍ�ZF�P��WB�����JGo#�f�=�e���R�Ƶ�[@D�#9������nj� ���S�O�y�x��Jj-]�.[����!��u�j�
��+�D ���DD�V�4ݗ����g+�Ë����C���KL�TO�����J}l�S���YV?i�0Ÿ~6uuQG�O�j�b&IK63�����+#=b�<�IYHs�W
��rt.�Q�����FtOF�������9:��:F:��8[��[�
��+�a�#�,���p���qg�P6n��D��1�C�ǰO�'
�X��R���d��SW@�O|�E�d��?b��B.���!���D^-��r����������'
>�� �#^�Q�w	Y$w`�ɮ�;�Ti�O��^7����>���`�LΑE�Q���b��2À�N{K`*���q�ih�q�fy]�w,����g�r0J�^���0ᰑ����s�3��해�<!���K���X���X!*��!��Gl�k`Z��G�7�D�&\�ۉ� t��rǢ'�0b��ӑX(}?���;�7����U��>�'�XT���W�H6m]zĤa"j�U�����J��;G�TAg�YN�X�qE�&�km�P�Wb��"E&�R�hu
4�%��>�Scq�If[�d����A֯���b���GM�y�C�޳��N!\� �	�0�*0�������W�ʼ��vwb�9�p�V��^a�eN�leW�īcN���wQ��S�����'Ч^u����E\Z���~e�y���"���6�f�b�9%�"�ٻݭtdF뗒ĥ�n��b�'p�8W�ˎ���@���uBE�e��98 ���0�G/$9&���p��?D'�I8�N+�2�io[J���Z�*$Q�迴s����B������@(za�)�\��Ä)�K҇%F�/+�!sZ����da��O�Ĉ_������)�Ҹ���9�e��$�/�J�c�W�n�ZIRG/��]�H!4�5R��4�?��`=%~�W�����82��*�����,���*w��0A�9o�����"�m���L?�F-�`1jĪ}ۢ��D:����VD9&���Q��_F��:8GD�e,���c
����.�����l�r��Z�J�/���&�]�18?����
��?��9$�H��}7�3H���{:7�}ek�#<V_�u��e�J]�M 3�;6�Dz�
دv�dx�!/�lm��a�
1h6U'
�gi��P�kv!���W��کM�U~�7�J��KYĻwJU ��_ܷQ4��4Ծ�z�uPT�.JI#��?�p.z���gx?@xp�@ϳ��{�#��S5H�u��ش�,r!F����MN�[���↹�8��30�),� p�V5ac,ĝ��$��j�#`���%g������H9��0�9Vv]�@Hƈz�lk�� ��b��FI2�d���`y��$�N �S��#	?C#9w�EH���׏�t^�f�0����DcߠU�W�G>}�0/߻����1Ɋ���eU	
};���8}ABǸQ�!�w �e@A�P�}!s���@�(�?h�B��,R�ja,�F�V 爁c��PU_��d�c�ր�y�����ҪC�f�-�K�ŏ�N4�G3�?��e��H\��z*��y��p�1-�����jY��S�q��
��;ϻB�+'�EJ��^>��i-�({H=,ݣ�P^w���H��V���	4��k��ӡ6�k,W�%t��aG9(��΢��rGb\������d���pN^��BH]�R�U�8�K,t�����F���H����1�k$���,)l$��t�^�٪r�a�KI/ȉR����X�Y�M��l�{��緿��r6�km�mA�Y��
���8G0����8Tg�x�}�V^ĥ���jh�t�1���_����tZs��TT�p�ي_t����Lc�k'd�A�	�=�
���W:DZelA;�lζ/G|��KV��e�-vӻ�@�	?�B�r�eXQ9ш�Ӄ2�p�r�'G$Z�O�ū.%Y
I̳��-y[�8�2��#�I�VW?Hq5�0�ur��O�����S�Ug`9�@"���S�ϱ�Һf��a�'�ʈ��1������t ��
���G��f�qI'U��Z*���!�A�VP�2(è"F���ʪ�8��w����IPz
u_D�:����#��h�.����XB�8:YS�rK�Öl+�#71�
�~F��?%o�i�Ggv,�l2����9���1��l)�O�[t�q�:�~�=d��D��c|��
����й��mK�H�N�SP�lM޶�%+e�����_�[��~p,#���u�#�goT��M?|�뮆Y{�V�ʧ�e���bҩA�
�R�#��1�F������ޠ�q�>�Q�&�����2�(���7�NR%��O�b���U.n�P��i71MK9��q,{�"�-F�;]uJ㉰�[e�J��d�y_S����Uc�ʺ��@	nD��8�>4�5�˹Y{���E���؈�Ȉ���y���_��Z�J�� �;��O�N3�?����M���#��+�~�)N�jS�z�^{�I�T���%��x�Mī)|���%<�l��"6"{s��x-��8�������dO�8�	�Ý�Os�*��^��%��q��_��QB~���,��B�}:*����F�?�Q����L?�1�D���?"n�$*5�IvN�Hh�b�
�HD�A�*t.
��E���:0�.�� ��N4^���&׫����
1PVR���(Q��]x����7����샢	T�G�t�'���}�BH��'�ѳh'ڜ��+헷�!Ig���h�w!y��zxp�B"%�<�x��?b
�O�R�Ҏ�~:�.�u�@���"�]�B�Uw�ȯ9!*E^��n9b��.<�"�[��ފ�+�(�I�aʉozyuRmF�ZU�~6�k�V�<�Ɯ@�V��-9�q��|����G�x`��7�
"��P��;!Ts"E+�
8t��x����$	I_��ȁ�V\�e�p�-xî�Φ�Ib(�}��©ަ��Zd{\D�b�)�nX�ךdt}�D@9����ymG�A�ʭ���B>yTIm�j��|m)m"��_v(Y�k��Betx���+�;
[)��]F�8إ�-P�_���kbB9��l[[1E;��-�/3�9��V�.1��O&��IJ����i�>�KY��Q����FWJ�MT bb���ge�>%T�؏UM}�*�*��#�_"�i$l���!zO06���a�q0bG�$�1?��yӒ�" ~��3�c*��H�c�p/3����+cL@��#@Y��8\	nd5�%�H����gG���*�N$xI@J�J�}��aa�F|�b7qԕ͡��V�d��U��Jw��%@Aȑ����G�1���g�%o�D>��>"?�R�О��d,{�lBN�lwH��|����!	T�zO�Fs
�
��Q�Hn�U S��w��F���&�T�LV�\�z3���_Obq7�O_s��ϴve~:xʹ ��=Mu^9Ga�)	?A�\�} Bށ<Fg�3�P�WUS�Q��ɬ���b
�(6�<��T���]mm���A.KJ�b�[����J�U�L���FEh<aOѪ�!>�d�>Bw4p��؃;�)�SЭ�"�DlY�FrI:"�D@Y�}Gm�iE�@u"Mld~H�4ۤ�CչY�K��,�A���,�V��x���;ù��_V�WQ��-s
ټ�L�ʉa6^rx���k��8 �]+^l�<`�V����@�*2�m�D-5e��Q9���B���@�WV9y�ֲdq���3cP��Uخ�����ޣ����A%��\b%��)��S��V������K���N򤥡K0O|\Yj[{��QM
8�&��ݭ�\%�Qޭx���t�1�,�\�Ǧ(����WD@C����g�b71�8��b���8��9\K�qg�6��hk@�4�q�`c���)j��J�R�k4�� (�uA��0�A�;���!c����/���a�C�e\��s����D8��ˤ�DDx�y�5���B���d_��넆_��cnFeF5؟k��B0�)eJ���R4�(��ԮB����X��`�3��\*:0 �X��Z0q;H ;�$}{����q��V���V�u�9'�ܟX���[ �S�{9f��ğ��"i6
"��5���U��P��A_&��ِ*�Bk6�ef
f�������ۓ���ث�2���r�|�SE&y/Hx�b���㳀���zDr��퇈'�k�����i�@���I+��~��f	�� Gf�("a�����׬˱Y y�!N�Z(
���
�X���J�/؂rI6�;��"�]�Dp܎z�T� \�7#/]%J~B�Q9--u��;� Ūscͭ��{"k��e�$&
o�DU}-w��:�A�D�0NH����v\hjXCƿm�F������uOc�o��RN���]�NUժ�� U�=�֩a*�M��$�[��x���%d�Cb�T�z����^�,Y����Ur;ѐ�6"�����1_��8��\�K�.$�8�6Ƶ�Z c\9�G��h�[8ֱ>[2�K6��>Ks��Q"(TPH��=�.y��!iE������=\D<<%��_F�4��"RP��ˑ��\�2�Qt��?�d�<�8#�W�,�ri@<�Bp�A�OٞEI�Bxv�ʧA��l��י�����1NFp.�W�p��Ą��T$���}�_܏�����{�Ҥ���1j�]PT�{ZGU��O�]r�����՗IF����}��Z�WF96�c|�X�D�eb@%�+�Z������5�6Z�.�
P|M
�Ӈ�*���+�U�rJ�N�ή�+�,/gb	L����4������OFR�
q��伟x��!$���@�LjO��>�H�Bу�Q�O��ޖ&"»��E��%`��9���|�n��8^�?�b��ѱ����"fvT��'o��%��$��R�ŭ�H�}�P�VpC����_�T�
���J� ��h��2���K~�Y�Cd�5�5���RD�C��7�=)8%��6�iJ�~��UuJ�t��$��Һ��i͔�ZR(�]�C"�c��J�Txݒ=j<��9V��Xbtr3k�ydt�=K��RcёDG�1Q��d��Å��l'���b�3�.	�Ϙg�~N-��hg䃆n��B�$r{��`k�l��3[��|�8)�S$UD@ф�-�'����F��b*Ľ�6�LDy>���TNt�?)Mi]H9o��T����	�����}�G\apX�w	�=��ƴ^�P{�7H����ez(���¥��ڔ�JB�#���������G1����Ts
��7�O�z2h�Ʋ.P��1O�ͯj�@C�4nSU�	$Z�v��B���о��"�j����ܪ,��.�S]�u�w����D�f��%���j�s�RJ��S� �ɩ)B�4V��e���Mu�K��	�Vp.NXmjE�EwK�W��ŗ�	��ٺ��V*z2��r�S�Q?�rV&C�@��9aϠPr.��!!;�?&�*�������n'�����o���r�J�#����+5кZ���)��=��g��uR��Q���G ҫj
��v'�,:	�N�<�e�:��A�q{+<�	b�Շ-�(%�G��d*AZe���U�,��k�ߩ���+��W%-]"��+�Jך����ƷZ~D�+�Es~�L��ſ�{���C�N$��� �[�1v1.�X�ѱ�ana|.0��9��~'
��|���d�F~f-�q-�7rIB�{�Y��2�<J���HJ�<b*�y�Ֆ(� p'�������b@��l��D����tb�s�(��.z*��ٕC �>��D}��y�
u%,��?�d�P����0���8lq2K���r]�~���8���T,{+�d����Hv����~N��O�F�!,9�p�^�+��zq�O�O���GtV�Eu`�M�/�Kv�Ր:٥A~9��nإȑ��߅9=l;J�$���m�u��⻱B��A4�vݵ"��cbEwj/ �W ]��ތT%`��o�n�e�Ҫ�?�Y�OGn�ٯđ_W=�ieLJ�U���&�E,~��q�s�� �dv�r����#��'�����NJC??�$ �/я��#a(fɭ�OOn
u�A�g:�(2Z
�M�8���lCSe_Ⓞ���z��G-lmԖ�]����8`f�؉_���N�0�VM=�[t�O��+�#P?��DZn��R�V�����I�Yw�Kf)?�{������ST�okJQ��'E�l�R�dG�l<�D���[	mL���3�[�s�|�[>Vĝ�3��|/��φLg�s��dƓ�s��#��&�%�@�v|���t�$-��D��>�Z�q"� $����n2s?YL�`�E�I\h�F���!F,`�C��(+�p����/�u��D'����aQ,l�]p}�aރ���>�[A��֞v�c0D�v���̽艙T�
��*~�!��W�Fy��p<�
�d@pc!a�9�pdn������8��#2�(ĉ����rPMi�K����v���$��m;��2M�;Z��#>�\��	
~+�N+�TӪ��n��J5%��g����:؛��}#��J[��ܗ�<�S jeU�Ȅ�/9�cE�$+�UJ�.�(/w�O�I�b�I=��j;'�r��V�,�V��PGO�n��d�$�_yrG�����޴��C���B����)c�YB�^N�: /��� �m��T��$�PKn���*	�#��Z���/F9�jko�.ΆŮ�f&Q�m��s�e�6_o^�?"��Uئ�%��)[E��	�i
�)(V)�̩�.y�~�Z��`�	�OO���LiƓ��_�{~��s����a����{L4'5�-|{M�G�$^��`��`�=�#�q#�~�c�9ň�`E,�	�#;u�.I#:Kd$��U���Ϻc�]��#��e�Y�)��R#�֊	,���]*�ߠv{��<U�ewy�س��G+��@CYA�H�fO�bUG�H�
�NNѣ������6�P��4��oX���T��^���,k�C���YjL��21/�
J�"�l'��W��Vz.��,tWml	�3��}w���l�魷!��ݣ^��v0%K+ީaR',oٌ�8�֛�gXD@J�O)rGO�D���[��9��8��"_�3�OE�c*=�$w��
wx��>Q��4��q{œu!FN�CJܖ��lN=��A5h��-��w!�ܮA�=���_'I�2O&D�W$�$HJ��&D��c�I�H-����b�6�x��rM���=���'����c>4��a|.s�\�s����\g�ȑ�`���[��[YZ�B����?�b)_�w�qT�A��Y�G�R�1���ONt.��IƗ��p���.p��p7����X�NRfB~��Ⱦ��D�I$��c�*�:�eKs�cch�X��Il���O�u�@9{�d�V�0�	Q̌F~+��1Ł=:离46���5��X��;��>'\M���ݐ���x�2-�P�'�D�Ԅn�~"(Uh�2���4I{<�"Q.
)|�c^4T��&m��B�w�7�,ikD>Doy,#�R<���}
(W
���6'����=?��#"���-�&�d
$�/��}���BȬ7q�1.�3�=x4���Ȋ���,��BybeQ��q"�c�v(R�m�O*��&�$�|�h�W�y&ͤ*
/�W*���7��^�&`����iq���p��[g�{�{�{�s��#�E,�<fŀSš�����H�A�E$=�9�F*b�0�#���?>�3�b �s�\��00�q�� �;��O�8KV�/�8�,rܪ������G�_`Mx9
�1�)B�YߕR���d���9o�����&�+
JL��S�q��"D������2\�Y�#��ii���ʄ9@p�̊���F���Ld\Ŗu�NL�u������V@	,�Z�]�=?��"z�V���5���{�q�{}�Ө�\_�b�s��$���>�We�pz���W����p��{�{���߮w�?����l-����"�I�Q���-<�{=D�����bBB���<�9�"p�?��q�����q':IÝ�녋�_�.I���a �}����0��Nzp���J�n�sn�x�e��:ޱڀ�M��Ч��_�]��-�`�T�ek���j���w������X�#��(J�/�?mi�x�%��cI��#�<���Œ~���/	$���
,���2K�Tʵ���; �8��:q�<�y�,I��/s��?��A!1AQ "aq02@BR���P�#��r3Cb���D`������
?�<��d�(c�,I0	R�BW�(�m}���J�����^��
�,���v1�,	�z���L*j���G�+�F?��	5��j��
����!�G�,k�����_�X�B����ן�dB�9��Ձ�aO8@�?��"�H��.�r�D.��ţ��H��p����"���0�aR!v���Ć�cy/�p'����bʮ%��Oҳ������S�|C¾�} �A�0�T'h��o�9��+�MLe��4@O�h��X�ȃ�[�Z�\y����8�Xq-�k�Q����|vӅ?կ�V�x_
�X�O�@L'q��,�.''���m)�V��C�8�-�_V�'����9�a�aF��T8� ?L��o��M �!4S�o�A*s��~`KXQ���ƿ�L~Ͻ�E��	���
yt?�0D<��י����.����b $�����v��Q
*2���;�U-]E�p.ǁB(@��P�}{�|��~� ��'��xc�E@<�Ш�;�Vbp��i�'i�s����	�!h����5ٻ��Hyrc�Yc�ebY���2�뫁��������gH�*>���.	U� �g�*�0P��?���c�1�%TL�A�Y�yA�/�
L$�9�Z��R����b�@h$�1�G��Ԯ����P0�`��	�9ڀ_��F
��O��::����
$Eb�•9r?���*�q0 �A��؋3(�q`���D�F�L^ �g6�_����1Ns�Z�-^��"բ?:�:pgp���eO�r<S^�@ޏ��U�1���Kf�h�Y/x�@=D��B�^4`HP�j�_��B,�.蚼q�����Ҭ;r9N��fV��t(��4Aƽ\�����tçPU��h����a`X�����aA�Ā��_q]4�W��}����du�K�{rﯼ��x�tT^C�Tjձ�gʌ�X(S���"�rK0��f��2[��p-V_*bV%{-��:��f�WPhP!WP��Ҡ_b��0�d`��OC�� X�'!���+��c¿��ɋ����
���<B�B�`b';6�3�����_�~�]'�)�8���G���F.ڗ���ŗS�1�L������l̫Ό���?h� �x��G ۹��y�v���3���\/U'mn��i���!>���b ���g[^S��}l�9Z�7=Yw$��
�'���t�����3�b�p�x��@����'��+����vA��n^t����a���ܨ��uBik@�f%2���^W�(߂#�)#�� EKw-J�	�p�W�:(B�X`�j&��F��b�b9Q����U(����uØ~�ϑ�@*t��:ȝw��X@-w��aw�
�K��+�}�|eFNQ��-i	��@(�0V�\oC�\���NQP:�S��+�0T�O���\��N�T�@���u�_�S�d�Ŀ�����T(���Tcr�%
�b(�՟���8�ǡX7F�c��Wp�߄���+�5	������G\_�Byh�0%𿣑�Ua("��UQ��9GDjd��X.d�;4̼�?�{��G�0��Nni���s<;���VƧP�\ω��n�cs:e,��]������f�>S�����Dv#)Q���0T���j.P�&DRv�2S�v���v(����1? �W^S�]5Q��0%~DBj��Є��&�7FC��]s;�2&�1��9[�X��Ǔa�_ z��T8��@�l�q1�Q��Ϟ�W��ԀH0�i��c}���4X�>���j]�4+x@�{4paK�&9Q�f�jR|G���}�`�cjQ=;���2���ià:�
�FT�!�����hY:(�C�߱"aee�^j�����k�xt`�yg�B�WEV���5i��1;��{�A�����aQ������fpFg�UF���D��j��S�t��ڱ�j�_��J������@15�t��D]7^P ۜXa�KLD?�NF�_���L} RV#�Z<$��K_�o�	M�̪
?U~��V���6�]2�@�b-f(^ar�u{�!~�!pW)P�zW7cj�X?��T"�A��@($����ƃ�`�bP͕^�Gp���/mDRls��P�~����rșO*+6���Pa]U�护���?c�PX��o�@�L�U��\�#n�#Ge�j{�B�^�:~�#�S`�tR�r�Â��h�wz�1TCC����e��{�
��*�w3+�X�'x�f}��Z��������'#<�n�j_���C���Qa!��u8h�tBiX����;����!!P����NE��x�O�m#3�)���fm�j�l����+���.�l�
;l�"Z9Dժ+5vg��������rK����DU-�m@��Ea\�t�P�Wf�Z�41�n��'#�T��A*��רo�9��������<���H�W�"�r�eK�z�j�7XfQ����}f"N\��F�r��N����;읈v��E,�Z�"(Q�dhX�!�B��P!���U��k���/DS?�_�#�Ɂ�5wX�<s�G���Qe���:L�\آ(!W����Ф��N�>d @���ނe՝X�~Р7܁�2e�k�1��A�����;$ήv1�P�:��d�h�)v<;��Cdh�r�feL��+}n}�Lٗ��5<S�����Fp��2��}y�T�ۻ�ё��P�k75���P!~g�窨�V@�O�ˮ�=��T^�"�9԰$,��xPG/l�x�8�/f���X1/
���XW������U���ϑIX�A1(*��kK�c�J<G,�	v������ai��L�P�>��I�lmY�ڸP��:��}�p�X���-��eS-s7�n�"i�
��9�reB�q�.7꽴��H�ȈAU��j������b��IN�X]�NJP��x���v�(���;dwx��ƝK��(/�e����:���m]4{�K�u@;�Ɨ8��T$W�E��n�(� u;�ʙ���\�^���H�fW|���O�1�4���`��:�1Ff
����01G�D�`N�"�;! ��8؁�%�R�	�H��?N��x���	�1�ɫ 0Vԋ=���)g�b�~�z0��g�)� 
@�FB����31VJ!������J����"d^~[�����O"~���GP�ޑ���t�-[۟�9J�;�=b�g��!
�P�WL˳/C
���^����3:��x4o�[	l����*DI��2?�)]������c���?o��w�����6e�Ig=�u*��M��bߝ5���<A���?i�z�fd93�´y�qR����j�$���$2�#���*��(�<0,����`�yrY�5�LN"0PVK¥�0��p\C�yH#uw�'�V(���z(�$��_+S?�O��?����ao�z�(W���01\��e���O��NDL��q���A������R��@L;#��GRꬰU+��Г�������(�h��Bۇ�����u�^v&�aKG�F�4tWGF
{�������FLAm<8�C�:�R�L-�:�cB��+f&��6���>5t�<�h+n�h��=�!�E����@i����E_^]Z���& ��Ŀu���r����"���1 W(���4W��J��,�r	T=���hكX,u:��9������6�{Nr��m�	Jۂ��S�G�k¥���9�*�>C�&bB�LM0�4�L:!r_�:��F(Z�5D@���k�˹�Q0�-�3:Vg8��R#��x�:3��b!6������k����������t���2�ln���%T�@iʩ�OH!Wr6���%<�
ɢ��5E�&T֯���519<�
��T�P�>v����-U���r8P{W�).��D�@[��o����^�͐꜃K0�ĎA`B����眆�Z�-�]�S�Έ�3�QRۑF�b-bzf�i�k�.�2�&/ݶ5�u&>�0�rwjm�۴@>���t���K���A<Z�����1j�-�ܑz1=r���:����LT��D
&�Ԩ���f����(�R��K�_H�X��oS�	R��8�����C�ԣ�L�>�?1�.d�-��u
�~yLjfP���2LZ+��{,��x��w�@	r��!�s�<B�!xWGG������Rs���2'-�{D��Ĵr��[�L�LȬ������U��.J��[P,Lo�Ȫm�LE���U2�<�I*�PA���Q��Gx輎_���#�Gw%Y}�+E�V�����t$����.�.��3������Y�-����M�2l�).�h��C� ^��:���՗�$�&">��F�
19���
!kwP����wU���Uf݅�
���K�ݲֆ�<JÁ?�Ǡ�Q�T;|
�cj�``��Z�<:j�øFWDcJ��(�͒�P�E��B�п�C�?�	�CS�� �F4��fW.��I��/Q��fKE����`�w��e��h�sl��`�_k�̌�IjL�)�$FAι�T������_�&J��]�Ȍtκs�:C�gNd�M���å�<�߼Xv��eaH1����GhZ�ڝ��#H^�z���(�ј���#b���Y��:3.�U GZ)���m|�)3�F���c�\{V%?:��P�͸�m��
/�U,��Ћ�@��aD<��c�""f�Ŝ��p	��e���xo�� �㰭nA�u�X��a$��B�B��f;X�P��W�|ˠ�mX����C�VՔ�2�Uò��"bPg�Y�:\������3��33��>py}1B�U�CX���C�ќ�H������_�	�}~��a���1��`r���
Z��4����L����#���W���A*�W��˼� �o~Xk�S2h�;#�\�54N�LL
(PƄ�0�+�	�7UӠ���<V+9=��e���Ȣa,-P"���L�H�ɫi؈P�X*����`w!�o�t�fe=�U�{FR���v0�����FAN��U�99�*�V[��]_܂&Qȏ��‚�z�.���{�m-����ɘUZ�l�G���)%Qv���ơ��'�yU�jO���s2�������#��u�E���j��u�;^B�!�«�7��^�6��8c���fJDQ�$=O�����[�D:B��{��l����섬���|?�Y��&��~�ԗ}��+�T��6�@��ⴅIc�]�|��K�uG�^A��-yՈ�p�<�p	���f�Ȏ	�
:�i
eQ�DB��
�]�j�{���۔Y�IO����jf��&a~2x�P�*5�ڲ�dV�?��uL��SiԱ��@Q��/Fop��A`�^�� �G}G����R�]ĺ�9�Ъ�L�#p��f�Gp�^P��K��Rrc*ݎ�S�Ӹ0�S��S)�n���22w�́�gb�Y��@�(���f[wݑ;���@(�r�hL�o�{��"%`�N�6A2�sHy���&D"w=���t�0��E�G{g�oOݦ+LH4L �v13r5��-p�[��F��2��XHw����v+XB֘���S0�,���P71(����^��Q}�%B(�evʵ����DH�3���`��յ^�*2gw݆�`Q�����
z�(@=�����-�m� u �����'PG��0!>Px��N���d���b�$���PR?"��TP��m2==L�O��T0�cD~x�n�-����S�k���*l��̌˕�B�bgD�:��l������q�i`J����/��g�ɉ�N��^��\�˪���er��]l7˳;w�f٘�"��(�|��$v�q=j�L����U�&�����̽E��6�[z�xd��#:��)�ؠ*#��A�4E��B#h��֧���(�No��[9��=�*FX��A]����;	�z�1*��L���5�3d��R�y��Q5w=�&����,����6����Ö�
\��O��	P�E�멍jNpJ�������g_[k�GA3rn��b��QAy��Qf�
_����8���1G�f=�P L�C(%����	N�+�gy��HG���'C\*|ա�U�R~��<�Ò;X��A�0�`~vLX�g>�:rb����LĜ�&.�o��1>4Z�bf�3�f
"6��A�P�S��E~fU��Dr:+
�Dk��Ǖ�rj��{��3�L��R�?i��
�P˴�:�؎H��7�!`�eSΣ�!�a��=WD�A��Ox�{�j�D#��`&b���#�aB&�.:��"0�@�GOL|��IJ���qyw��W���t���sN�(���u.wf�o�l�K�P�c�A�G�S��a@p�r�w1
b@����[Gr�ȇp�&]G��K8h�g���������Q��B����S�4�|�q �(�����9�fP��n�/�11���l��Qm�B��,'�����ƶtE��b�*�����)`�NpΌ�9�����JB��ML�",d�'��kV$���~�#��<�J� PNう�P�/�i��UU������b"�y��nx�s��S�g����D��C�LΠxl؞fzl*5{7��m�~P����F�L��Vݚx�)��#Қܑq��?�Y
�R���Uf-�BV�/s����ޙ�'�BFc�<�)�A8���p}�+(�ARߠ׵�(��[�[��L@�A�H1J�U�Z|hc!Ռ���6��^�� .�r<�)N[����
;�*�Ƶ0"&W����<9Q�S1��xt�6ƣ^O���;�L7�x1/�lf'�P�����$���3�D:�qo2���:[?2�\��k�S2)/�A�oB
Y�S�~��%�=+�.223�X�����&Ʒn�bv��Ugʤ37�@L�؍�;Z+�.Jb�ߡ0ы4�ڡ}�P�LH'��X��OH�{$�JX����]h�Ep߈ ��7S+B �62��l��-cAi�S�EO��8���ϖ�P��K31��O�Q���E���ȅIUכּ|���� z���!��P�s�<L�}���8I�S�B�U��R�Sp?[�3�
kv3TD/J�������⪽`pI�E��`���0��F��*#�E
�|Cf���T��L�{'���*��p�9-�R�o�L��E�"f!Oq�+���j_�Q�%8qv�¯�1Ok k<2��mv��ar�)���%�\]��w%����zo2�;��7@lٓS}�̦�x��J%��4�\2>p�OL���M�:��Gw�b��q�w1/��LH@V���E��>|�n��3.KnjW;__a)(�e���Н]��e�^J�rH)�7��2�ȱ�.l��J`�,u�l�!�9!��¥a:����b��4���Ҍ-�QW�c��b�����=�YR�x�0�� 5�#�G�}+�MC�A�#"�ou�_��t
`L�1.I^ݢ8B�����4tMVf���$GN��4��l4-z�w�%�,MEW]�:h&`�
)�q<�[wD֗\L�+{DC��6��~�\�rT����}��^�e�c�1R�By��!��C
5 i_�q��>�.��k>!	
�Dѹ��	D 
���*3�:�M;nu�����7��F@����Tp]kڵ�� �
ܤ�H����	��q�P��:�L1 6��T:6v�U�ø�O��y�1 r�X ��&��;Eb��Q�e�(Ϙ(av&&P1��
w1)��ݛ�)� �۩]�i�B��~�:vB��H�o~Y@��V{+�|�*s�wge�z�R��P"�|����~r��t�D@�5<����R���5!,�9�Z&��Nu%�$��UX�2�!�0�0Bh�
D&�<�Λ,�y��~"
`�
�3.�3GPG�b�%h"h	�4oPe~�Oo�\O\L���#��y�B�
��˜VfK1j��!�H2�B]Z��|Ay/��֦C��A�xE��*a��kS¨L��uq���B""Y�����LX�F��-dp�L�Y�b��1����= '��T�+)O_��ˤT3��-��i�FwrI�@����������w�6��DA�S*��a����w�)]�U��QJ
31#�:i<J�'f�w���5AО�xwQ>�"_����"�`��C�+{�I���"=t��e��b��P����+�X7�i�~�`Fp�P��v'��T�>r]���ȌM/�l'�wNx\�B�ꉫ�@�����h������s�'"�]�����tBL-ܐ	�5#�"X\��4h��TXAt%LP�m@POn�W��Ne!T_�B�A����?^~iZMњ�\�܁1�X	���E+��:��3�N�@��a ���9�������W����_@q#t����1���3>�S��\"?�u	�U3��Ĩ3�,���Us3*bF����a��ʀ��<�+�s��{��]3��z(`c)�7!�36�����-v�p�dw�h���	�%�T��J/MVjK�#��6��������z���T��:�g�t(�:��$2̫GæK���Wfs�U��9D��Ʊ�� �����|D��X�~���D���
�4ţ>�L�)�	%��X�3:�Ζǚ_#�B��v=��Hم&��(.<:���� �y"zˡ/����j�|m��
�0у2�մd�����xQ��ո���r�j� %�ǩ&b<�ra�z\¼�3dh���r�#�pS���U
���ј����h���ΨR}�h���	�BLx�͍}�ق��	֢3RX�
6��:3�'ӧ_�8��t���PeQ$Q1�,ˢ���K^(�L	h�ɦ�����hE�<���pa�����-��
�ˍ�g?�&f�|,�ߟS�����An�)�H�˷vS�s���
�[+�z
�D,��
&P��ͺ����6 ���p`���
��Q;��{�DU[uK?����#���{�4��u
1�h��^��G�2��0�E��Q��#,#��K�2��������w,�+Eh�����t
�XdϛQ�LG)���^�7y����+��6jR�V���f��Xp�,ʣ읜h�Z�1�Tmbx���	�7��ˣ����0�#$
�!j�yؗ����A@#�)=�r&���d^�z����KUY��p�g~���fV�M�0�
�^�<�K�v`������B�Y�[����&�#�~w��J�ű`�k`NG��[�B�ܱI��	Co2��v�,�ًs��l8=�#?œ(���Vj�����m� [V^�D:#ژ��P)&$�D���D1��W�|�l l�'�s�y��`#��א�`�J+��0�p����1�������
�U~@��X�&6�95P�-�c�ƙ�j�X/�1_�k�9�
9�I��ʁ�;��2'ه?M&k�L(�P
f�dD�-3>�p�+bޑS+�10w���#tp]~E�η����z�q����e���tt�S��<9�r�l�Ӣ��ϫ�`+Vc�gTr��ȽN�;��=m����	$iܤ��`+�����R��|�j��!
�ۏ�̯ϟ"5�����ú��X�o+�W��Dوu��=��1�%!��REB���[��"&
f-Է[��:�Ĩ��g:fp�l*"���kڢ���ju�p�v!ë��L�:�=�S���>��*���X�HpE�Ү�+7ʨ��F*��)����"�x݂���AK`�"�H��<*�k
sݖ��	,=�9#�/2��6�UW�G�7�d"�(�����W�٨�U��ټjF���^�ap�Ŭ�c�Y�P�
�'�/Rx�)*��׀��ל���ğ!��b���߹"f���&�e(˟
+�N�fu���7�KY�=�@��������Sh���f}S*�Bh�pxD
�v��o��2%�݉�m ��_=�N�# )������+������������@��I�O��b,T�!"?�BgA�wﭐ71���
P�i]����8r�zr�a�6bK��#�9Rշz�.��+i����$`O#�Q�t$�)�hs������Wu
�r�^�艜��W��:������
�������u��ݢ8�>���� U�|�%�Q��&'{�& �=�F��`]�%��v�F�і�
D� #���2�"�]L�{+�� ��ˣ	��9
~�9 t%�Ό@06�G<�-iB�"6�Vh И������r�1&�@Ŀ�c#��bA���Ku�-_���S�0Q6j�E,�NJ�u���1(�s]��lx�\\E�C�?�&��"_�y��IxK+�Zb5Ӵ�P"���#[��a$��@DD��V50�9v�ҍY�A	���D��XB��ҢP�gp�j!0h�mL̀�W@_evb����7#����⽇R�/�Ȋ���J����w'a�.���E�Rս^�"uzf&!�wKb�b��P�<Y��Z�FPr�T6�"�Wx��^�D�j�B&%�4��	֙I�y3��Ӻh�=]�bBdF���Z�@����3��nGS���;��a���[,vVr؈u���W�:[��@����@?m���e�s�Tˉÿ��������}�9Q�"RLt�[�&>��F��:"f�PdgMX	�.o��aP∜�9���!Jt"a@yI/:��ne�MJ/��L��S} P�E!�?;@��n�v�J�G/��_o�� �gO���n����#͉����_��'s�J�A��8����a>B~��_��ݖ!(�"����t������(>U�`���B鄠h#�9Fee��{�α��.-��"��R{V�-^f_H��
'���LC\�k�
�Ed�{���Jf*�1�39E��'��M�y_�S�!���ó��ۤ��GD�L��@���QZ�(|�Z�W�n�D`5]��uQ��rW܄��_F
h�GȨ�$lH�R�;��L���gU���t���#0�[:����%�b�
E/�g�����1�3�	��( *�Zi�9A�*xoG�w�m��Q1z���U
�2�lLtf`p;��ɹUɔ�����:�($�jU�L'_�Ǻ�,��d�EjgT���#�Pp:��L��2z	KV�*�hBh�ʅ���iAܮ�Z���qۘ�������%��}x�)]R���fSH�uX5tY�U3S�F�őv�I�0�N Y�4>U �e�0���$9o%�J��e�8u�l���LDQ�S1��Z(�y_��yWE�*)n�N������h\"м+Ȅ�\*M?TD"���L.]$��t���"V�Q�w��C�1�+v�i��JiQ&͋�C��w1��ץ��ā����|�,��e�*0dwn��L���rQwtS<+��@�}��3�"��j<��3�#�z~��+���j.1��tfQ���We�;G[/@�8@T�PNb��Î�vQ�>{\D��������}|>n�4-aYN�F�ţ�9i�/��|y�6�!1g��,��V95�.6t�r s�BP>&
ʯ�BYn�������j`��e�2��B
��� _"(�xٔP-�4t)��c:#�<��,(JjT�&7G�^�DpdL�ʁ�����v��G���7b:Nnt7E{̼��PĴꎱ�a��;��Z>���t���&����T�݌��D]CE�D["
	��Y���O����ԃ��8��;S�Wp�P��Ԕ�o�=>c wwR�L����ۚ���d�����+ 
12�c����(��� *J�?��i��(�t ݌B�˲�^��}��E*4<��e)Ȇ�u&+�0�k���L�{��U
y�PYӜ+=��D�~���;�a7�;���)Bw�;��ù!�}}�"7�_��Ͳ>�
�uv�5���U�u�>���T�0,�ELG(�(:uV]�@�8�AlO�X��Ю��w̨[M��Ad|���5t��
�D@�d\"i�1��2ӗãv�33�EdZx�Tad�ߝfU����/5�Nh�K��"͓e�;چ�SpÛ�G@r��^:�Q�`f�F]Vfz��Y� 8��3*��]�ph��[v,,���,yW�u`h�G�H"����x�þTKEbc�WMJ�틊h�Y&%2��5�4�LmI��D����j,&1o	;����I٢�@<ހS�E4��>��P �<@��4��.�O�0����cE\/����[��_��ь���N�*�d��LP	m]K1�DÍ�:PL^�`B�)�#��!p]��b" Fw�/S
Gv^z�|O�z[:�B9��v���2ީᛟ#tg������݌�ܞ�+��^�gAx(�e[��q�<rB3�]�ܿ9KA�]{�ܡ�R�~��c�`%�wi�˺f`������0�B&^PQ��@.��B�:L�k�ß���{�x!��Jov"`{G\T�(���t�i��������s  <��ܖdI��&�������Wl�	��]
uL�Qs�{h[Fe!�����z�����e��(��2hK�\�c<K����E��g�J�N����C�E��l�<�'��MDEB]*�U��
Zuu��1�d؈�mm�B�~�1t�٬
a`Aa�z���:��Ή��Z�0<K`�
	��a�!�E~��'�/��2�D%9#�r�tS�Z�`~ݟ���:Y����U��u��
�`������H���yD�nN
��n9��Aݹ�a��Τ�6��$T	�_fk��jD�����nѐWP���LKK��Yz�B�<z[w�Z���NJT^��HJ��R�Gd���#l�m:�WN��3f�Ġ�"���
Y8+l�eE!���.�[GK�q�X�QsEX�S�����)2�
LocQO�ٶ���, P��f���B��UF�����tb�ӽD�ΉJ��^�9.s2n�
�c�H/�^xP�����(���X�U����DR0�{�Ĕ���&A���@T�e
3$�iI#���.ʄ������#�ҹ:�
%TPt��b^E��O��0���
�12��"(�
e��9!�C\���tD��MQ?�b��� ������lDHM�B�c0�����Q�����bDh`�b�LL(�q��$E!>^�	ZW'�ќh�
ܘ�@L*X5~�'=. t>�;�NG�z��t~F�W��44pK�sE�w���T@B$DUr�Fn����0��&Éwn����}��W�3wy���[31����tV������r�$�����P��FDv����L��?���Fh���
�&^}R��(�Ob��mH+�̫ɑ&VnPA�9S#�Vb�<�ƺL�E��G�Li���9�.#��q����ϸ��Aӡn�z�(��MQ��ú͝JS4g2��]�B�2/Y�-9�k��,���#Gʔ�B�6t�7����0�%��/W��f1Ci	 9͓1I$/y�R�!�s�V�-���k&a�s?R���S��t~�w�j��eF��U���)D��.�@AVHS�/��j`��j*2�#���}�j,��>'%�n;2�5x�3Rc��|�(�A/�m	�@��n���5�C� �xW�������Q���Tda�����fu�Vs����ٔ�Ba �e���;�Q�1i�#������dm��4 ��;(��fv�?ͦGZfS��^gwfcwq�_�>���UJ��.�����An@��.�!kwv
�q��ș�>WJT�{(X�܎��s�<)���pAF����(�MU�14���1�����h�����	�Hd{����n�f�eԞ�z������L�O�;'���`��L��A�oc�����EcK�Pg����#�-��va�"�A���̶���e=�D/Ir,H���F�@���.�̇��3$:����+�V���w��4���c�!_NDZ�c�!}��`�2�=�wN�«��'�.d)9�`�ł B�P�;�_��"�����*�z�T�A�v�۴qT�wJD`4'@Π�	�rw<��\&��@�(0q�p�`�i\<`��Xh�:�R,{	��LH�B�����"'�:	���!!s��;?���>W^v����7"����I(����r0´��z>���U���fK�Ve>��B���Ԟ�w32����!J�]��D�V?���Y�@zUL�cƑ��G"���&d�[P��R+��3Nux2�P�.�#��V��
?���4��s�|��p�GC����CA��:�|������"`B�e^�	#.Jd��3;YE�*��-KZ�{GB�����Fԣ %fW��E�o�fd���T�����������>$ �
��&Th�x�;�ڸYA��z�=15��AVDI��t�X0G[S�2��ԙ�
��&��{􈜘��@�{j@�=�fo��ƌ�3��V:�C�-d�ϔ6�r4����DA�����)�B��s�H��4]�c�U�U��PåY�GP�+j�qƉ9���=��a��'H'�a���;�S��h�uL��.O�nc��Q�e�5��Ԡ�A=j3�ȭN�~�F�3�W,�}^e@U	�_����C7~Z�a�aLŵ�+*�$�3w���Uk������Ga�"#�n}�5W4Z#�ld�	*e`���7w/��q�9�P�ڳ{�����P�-��BA�3ttZ�&&�7e;���M)�3���V�*uS10�b��	ϛ@��a̝� �f$��HQr�d+��Ш�_�k��:�P���ң���Y��TZQ���}S-�^Ը, �2�)i��?�9er:Ў
:2j��9vh�J�mc���:�J���I �M(��2�0 RK�,�N���]
��&6m���-�l��u�Z�#�����V��3�r�ج��5}��r�P�'��puZUö����_rez4&�h�'������Z�-PN��9��G*BIb�D&�����A|�an5��7�L>C�~�,��ڋ�6�	`�g���Q2�9����O��rJUf���,�8�4=�\Y
�;�ҳ0��	��+���Za<3���@r�����fc��f`�E.㧲�cXW`�E����M=�^��X�ڟިD@����{1h�h��S4|��n@n�%D
�	������'��b7
�ϋ)<��1���8.���C�O�ҊfH�9�y��_�)��3�G(ֻ��,[��X�#�V�Pw[e�h�G�#�i�/�ꇸ�AL�F'��E�2���g,�mU�
�,?tJ����t�{k��U'��&c�c�R��#�]�'��*��J!��{4h3�U~&ce��r�u/;���*OF�j��H]�/��9�-Lw!R3�K$/zu�f$��XX�qP%�LW��B�N����F�K�E�?~bl�(<�aD�`����wI��Q����!`�����'��abP{�1]�۵��ӟ�h��`r�Ѧv�
J�����B���`�h����ZtN�z��[�H;8ޑ���\�b�H�,-�a�h��iJ?�<:�~������B��f�R�z����fT�f�":�W+L�l�ak~�u�ם�wF�)���r��%v32MK��(��Pf -@�ӣ�Pzr�e�A��#�d��,Ӳh���ͻ�('C@KLO��M��Z9�Ȅ�����Q�9IP�p�J�a�fԨ����6F����@#���0�1��!�u76^G���lе��yQhP��&����1/&4�QTxά�Tf�B���ڈ��/�:F��(Ƃ�Ajap̠���a&�,�
�@�2���C�\��x��0y��<g.�ƍ�b��Μ�4u'A�F^2�FXD*�i����tg����L(�~o�rz�/�u�^�=�b����r�"3�1��̴����Q�Gu���+D8!������&3�_k��:1_A��1���B���
�N�ͫ!݇x�A��CEȵqt�-{��7n�@l��bo��Z�C	�f��1ʟؙM��u�Օ:)=A�o�DӑaKX�;$t��Sw� �:��Cm�@@���ti�iJ(����u$]E�X���0�Ic��\PB�K�F2+��˺��Z1�0��_�1&�Vc�(��!�E`<r�'O�[2�o��A`��0du�Z*-�V3�ѴTQ�y��E�XO��G�A,T���i�D�/��$u�mMP� #��E~�j�
�"��y���x!%	�R���3v$�%$4�1���bQ��U�A��<B���P�G����v��H��T�S�X�`A�tT F�}g;���7�i�Ъ/�n��&#�-��&U*�Ԭ��g�&T(��&�_U	�,��{\.�b��c���]�hz.�[��J:��Q�w��v4�r��Th���P�I%&!j\��E +�D�L�C2��:�d�H<�24��K�O��e�;��1>�6xM�FЁ�Xm��Q%�$��I����,��b�<��z۞ev��F��3�Oy�LOD4+�ؿ��*E���l/�R�7q2
�0�%ʱm= D;0�(�G���t=V%Y���*{ƅ�'��iDD$�2�{
m�Y�P&mȱp8&��>k�	?R�Tc���v��x�qU���.��Sd1/�>�[���+�D�I���0�#0g�Q`.�YͿ7���&��1/�	+�e�����#�E]��3�O�K�&�����[�1�P�c��~�ŒG"�W�@a������;��/�J�,�K�v�ZxpH�����	�Y�x›
>��(����%
��dR9��Z�̤�?V���n�v�)<B
h��Y�E�X�ks@Y���Y֍	�� ��ڠ��Q��N{`��&`4p(�r p
:ʴT���>
�
��ݠ��m��_��1L֡[�:�"�¥�3��5�H��"��I�L����4�񏥄o��E�F�:R�m
/��'�7�h���7��.I�A��6 �L��Tt��=ϐ"�&f�)T6]}�'p3���u�ϽP���"*�ROɘ	���31W�S�!~��x���с��R�K��щ}���0n����)<Jh���`�G���:�6����|�z0�AlO�L�c�dU���y��n��pv� �t&xz,��h��
+L�J����>�0��:8/��pI���!@gQ;�v0}Р��F��}�7�ƹ�b)�5�/��R�d�b����H"�[�0!*������(N�����UԘ��_�~a4����Gr���5��k���U��V�0�uCi|��7o�Fx�
j�0����I��l��j
�3�k�'�ph�Bx�q@U <Gg/!6	���8(�?�;���HՏs+����Qp*l���}:	��~��_��<8�v�F��")}��S;�UBt��
ܘ���ֵxt�HQ�L,�l�t��ģu dt��K��hH-�-L�����m�/�6 S6�~DG�6�2�U$�bx�d�O,"�bFd$2�;�3@�rcȱܐ���)��t�A�)J�	��f{u�r
�4�
)��괖��4��Hj��f�/Sl�
>M����f��#��DC|�yDD��;��l�R|77��?�b��Q1dݻY�����&`]������j���LH��fU;4se�0�xZ�&QF�&�a��	��)��%N�~� �8\�%e�0q!Lx<�;/���F�;��G�h���۱��0��dtq��L���P�v��T)����b]Tr�q4�G�G�D[.����*�s�P����/}czn�(�/�h�!�hP;���)y�1S7&�7�۫�a^L��:�}�*{��9H�����̨R`x� hLZ+���Ir��GJr�L������@5�4 ���6�	�T��$�����B@Ćoq��Qﻁ��Tw�~�/�g��+�*��00r����/�}�
㔕^D٣0$��jmFQ���bB�����ACxw� �q�;L:7�͑h�D%�b�y��4f�= D�C/���H��v#X�z@��D-��#�Ѓ�R�Rx�#��'(�P��I�}�:��n�
:�@�c���΂�8W~��j`.�HБ2̭@1�~b�n�{F:�-<	��a�[q�c�Z�bW~N[@���	�=ìh�d$L��9��Edh�΄�m������(3�!Tg��#��fT�xs�H;k0�,V�9]P�hxn��
T�;��@�V����r�پ�G06�<ԧ�@�W/�}�����KLY��.1RP�	�V��t<�wN�{!7�o#��~�HG��I��s��>���*�� �i�M��
:$�޼ũx�v���ݸ�p#U��Vc�$&ɄU��:�v�v�~��Z�F P!��2��Z6��j,�y���*��7O���tS�Fu��-�< T�v]Ș�0���-BF:d�1 gu$*�Z��F�=�R�

��~�}fgb@�v��,U��y<F�V�9����L>����]�YϹ�6�I���$d�v���P����8�hz��x#��m:5�OC�k@y�KN��+�5Q��0���m�ī��9„ƒ��dZa��5h�E.��Bň������@z��L\���F�L(��Q�s�
J1~�v��bI�b}Č���<pLI�e�ma�؃�;A
(fh6h 6G�n��[�p�!>aA"8�`saV~��|�p�2�G����B�Åc	Cj�ܙ`���p���go�E33G�]��uE�
�x���FEM+i@�݁$10g�f�L��f���`r&�.a%׻�o��4��D>M��"���������Le	,:�n�
	tTDE��X��&���0 Q��6Ȱ=�&5��%fD�b
�p
��X�_j�B�@眯� dMC|�فF��T[�нxM�H�@���
{L�>ĕp?�Ð��ŖLI!G�/,���,n@�
���j�[����+�8�Ϙ�u � ����eH�
#q;�bf��r��s���u*y�X�]<͔���	UT�Y���"W�F��1BtX��q{,4f6�L��()�"=�q��ɦ�j>��a��`7W�m[)~��#Q��^eW��)ct&Ơb��F����l� ��_(��jY�ُ�gLӪ$J{�88� �K7~H�D觡�M��"ev
��I�ߕ���]v3�"�4U�85H,b*�щ��0�	��^�;XW���"͘�(��걣���~[��`8 �p�݇���*U�u�_�N��A�B ���T�7��M1)P�i���67G� �[a<>���f̰�GF�c�B��8��$P�xw=���]\�`ܨ�a�X5:�@�����@:
�|�1��l��j���,���K4+T�ܺUJ�sjr��щ���}���W��R@��+�X�ɑ,�m{��S�L$��\���V1�! �'na6[�4�D"�O�3v�Z0�4.92BX$���xܩ}G�Bk�����!�a��[�z��O�P(���(P�/F�~�B�hwC�o�۩�u;����h|��ȁ@�����`6N�f�C]��G�*4�R����L�Y�"���ұ��DR��^
�\H_��3/�4Q�=NOSs�<�)�b�2����b��"?!�]C�>�Lr��q�L���$��&�~�J�u�f'�Nf�,)ȧ�6`X8_�<nW��B	��7C��7�Bun��<�ћX�	<���
�w0˰.%zI �&��$���D�D�� �@�T�Ox ؁a�������MRN�c�u�k���TEB���Ū�,�M/�`%m������R�f� �?&bFv%�D��ҡ��� -(���P��@P2-�����(��,�h��m�bP��,�!�҂�1͠X��&w<��UzXs0Ј�4]�x�K�y�z� �K����.�v�����0��tN�ڸ
(Τá��[;����ؓ�E��'E]H=�?H�t�_�f�@a�c�&�#54—j���I~�ӪCT���|�E�Db���6���>Ql���H㐋��ˠ�_�y�0�U�c�Y�%�������
C�;�F�"��+B�@G_�5��fpI?�v6�N�V�|�(+�<�
8Q���%C*�f>z�q�Z��t]�Q?[y��@k�c�ޭA���t�v���^pa�>�zۇ~�̦���B��!2o�A�Ya�^HF�"�>`(��Ve?���Lk����^ ��򳳘���cB9b{���=�W�#R�E%]:��1;B�)	
IC*�tXڬ�TD桨�������PD�P�"���!�9�1���pD���_��/q���2�#q;�����S7,�����;�G�B>���؍���u��l"��"��!-@4}�	!�Z
���;�E���BcRh�cd��E�(�j0l�wAk�ǥ�����;����bg����z3�`�р�!]_��kx��[��� �V+ۓ�h�����c4y�"�\t��~���3��!�x/�pp�8�a�hx�'c��p�k��F�^�a��F���'cQ�=Zv�����rj�R�4@��p	�.��9��6.A�Y�9��;��O�OdY�G��V�ǝ%]0�H[�=i|
�	 `
A��nȫ��e�j�1�9w3G )�`p/���A1z��
��L�e�vX��!4�6,?+Xw7�<�w΀�/c����篜AL
�<�A�vJ���^�����`؝j�Pq�c�x�q<w���b0�P����(�����
["TF�vD_��A	^���C�#��!(��De�bbj�0��
�/D�F�TY����%���h��t �@�(�����,3��i����Hǚcp�^�-t������j�
��E�U�?@F������2���spޓ:��ц��
5h<�S�yA�G�����W��#BDA���\�-.�����,�5#��ԛk��n��!`�(�������3�+����ߺ��7�I35��ս��B[�R,Bu,e
P�zh�ˎ�M�h�N��V��������T�!@�M:�^$Q;�������x�g}���>S��@dï'S6�ya�}�cd��D=����&)�a`̊ 3!$���"գ�y�ա��Z�ٜ��z�k��L'UN�S44�e�!�Y������8-�SF&��fh��n:Ѹ��:\�э�	�x�bl	��yB���S��	��;Q��?@�+��H�{�)�������<���q���`���sl�r~�<�}�lB���D=ʲ�u3p�I��PZ�bkB��O�E�F'�c��(��uh��m���S)�	��qF����Btf�}L6c/h4�(D�ǃ$�|�À�,X!��O��?���D�D=Bgv��W��؞�ԟ!�a�H
:���s�e�w���И8
���X��m��Ϙ��	�
�ՈfQ܊�h��$r=n��*5��uĻ�0��ƽ���O�l�<��xAKپ�؍�sd�I��`ŗ�@0�`F 8��^p>��Gx��cî���7(����:��
A��cĊ Ͼ�z/W:"ή��>��x�t!G�A��u0�(�b@(�0�
�����(���)Ws��2���;(�Qր:��\������� ;E�$7�a���ꛈ
+B<���Q�Qd�ո|��v3�q
E��S�PHt
�M�����x0�a�g�xv^x_�AX�b�H�pM}𲭊'"e�tr u�twe!X���b�>�ƪ���/5�*�ALa�@��]�b���ܤRG!�����<A��W;,#W�8�06x�:;�w��{N��p�<�'�
MA�3�q;�ۆ���<�q��L0���A.��*��F�����$��>�g
��,�T�\!)2�H�?C.����1L�2���K�9��Bx(��F��O��&v<�Ol��PL�8���x)0A�C�Bt=��H�}#��5s�a�#
.t�@D�7��XcT�;�(	'ns���v��&_�:�
Յaqws� H�A��R�!��G 1G��
,�� ���V�DS9�&���Q�Qd�*xu?@�"��И5�K�E_�6�s{�Y�9�s����vez�1%����+-�H��;��`@)虘Zĉj�1� ���N��'��]�Wo�xTS�>B �¨��gv���òe��e��a��@�#�0ù=!����#��^��L�Ȥ��(^x��,t��-&%1-&|�(h(B�#,pGѣW<+��45	��nR�81�z�l�)��~J���&�U�$�A�'��*V�y�,�0J��*��i�Tԟ�x!�&ep�{(���.wT1�$hL��&`pZa�D.�Js35�T@R��Y�����ˠ�i���'�@M�iՎ��1�Q�Bn8�ŢI�D��k�<H�L0�Qǻy�1�%C�=G�~A�a�(�	,�"�6�p&�X�	���GR�d�9���r*;�#��Jh��I1�S	������W:�}!����hx(���s%Q~�B|�HLH�q
Z\��:��q3pA�M"�&��E�@"��*�M���VU�bL�	������= �= �4��V%�(��N��΀p?!�����9�O�T���t� �ߖm~C���jV�>T�4)V���
E�Įx��f�bQ'-q&�t_��:�0JC?��l�ԟ�&�����$n����0jT=J���q���
@;!?@�
���M�A�Ø
��Bd��|A��.��W�;�t<D"�	әg`?~�`�#��(x.�.�
�E�Y��]�"�9j������|��Ї@Y�g���a�<���_��! 0@P���)�k����4Ğ���RI�6|4y�/�i�ba�4ѡ��Hc@@3+�np��D�(G��0��fQ���`�W�m�كm��	30C��h�1#ƈ�#cd8��wP���vM�,����c1�9��f4��(��:�'�fB!�&��)	����*�f%@}�Wnr���c���U��X��b�h�X<�a�`g�l�c��!�,�1d�ffb�X��C:���{���
�+13�/�����b�3!����I���!�1��3D)	��b!��wP����K3 ğFv������D�Eٙg���a�t�"Ji"��0P�0bF9Zb����J�}�Ti�����3��1_$�	���fY�4ta�uYUN&M э�c�X����0㳨G�b6��`A�1��aU�I�����ύ��Ɔ��ae�4m�Bz�Wr�L���VpP?ٌĠğFFb'�Q��1��E�&Q��4tc4'�S1"4H6��B��:��c\+P���G�fA�,�bDFv&|U��u�
�cD�~40h���&pf3��bA�1Q�F��1*�BY�G�sCYY�>�3��`_+X�эc�~40h�0x�!�F�
�bb6�����n�᳀"���;��q�5��h���f4a�1L��C�1��Ⴥ���<1f�h��p��/�L�j?2
1f�QGё���'���5�f#���C�1�_gQ1��ٌ��у�3c]�����?B7���ž:._��XB.Z1�+����%a�Ɔ
I�/���

1w'�я(Š6G���mgrq&5$�%x�@�bvİ!lk9�m&�Y�dž
a�
�#Hc32�K���.$��h���1%�0b�' ��S�ְ����`r39�msi����F6�
�$�u��w%DF�CLC��h��+(�DE$�2���2������g�ق<5�|xb��X!�l,�u��3�ƙ����a:��X^�e	`ݳ��U�VOL́��M���	���F�a��0�̠L$iY٦4E:�F�/��ڥ_�N5&tt�N�,�,:h��8(��Æbǀ #<�Ѧ3x�A;30]1ft#E$2b��C����$�-�
�"��2���gW��@m��L1#E
�>4i�F0X4aٙDB�4'���&3*b�(d)]�g��@!z�(��_We��PH D!e*�bF�34�Ѧ6�EFf@bf8chGl.���3h��
�p~�p�D�c;!tIH��p�ܫY$u{��H���X$1@�f�<�t�@цa��q�1���9� ���߀c)Utl�hIRł2�G"�bJ�s�,KN
��J��C3�c�L�ц����1U1��##!����0�(�3��Ы0� U'���Mŗ�k}2�1��
�|x�h���1�0�(1��X��D_�OD�W�	ʵƁB�f%Y{QsbsԾl;=�Pʼn,��09$,�!fg�<H4`�цc�1�ц���s1���++�p��؄q�NT�� u]��dn�U�X,�|x�"��ã�)�H�Ha�����E?��?�x�&���}M���4h�1B��-����f�İ�S3���a�р:�&3�ц1v�������(��P1Ec,�H�ᔤ���+
B2#��L�UT���
�+���.���2�2�#�{3!fY�@0@K9�/�E�
%0XM]�&Qe,Yq�(6]�����UA0���4B��
+f8��V&������?E�0D�ffg(0�����l�~�*��Z$X�:���離�n�����bJD�CNAɠì򪪪P�j��m4��c\K����Խ�>h�U��B�E�� A$0vP��b�j-X�
�iJ�BY�0�.�	U����A�"�U��r�1"
4S����0��B�4���3ŝX	�0�2��B��U�+�T!TBi�@���m���Y )��y�3��V7�^"�`%����%���b�e��/����!���[/M� B��P��QC4B(��(!v*0�.���`�1��z�_�TFw��Bc
�y�~��!�)e:#UK()L?��<��!��#�m$R�X�-��F��b5Ȁ+,m[3�w�'L����ؗJ���~&$�0'J�h�VY>Q%��
,�7	d�C�Ҳ�0ecɄ!B����%�ptNq��5u��f���?ұ�]��3{%���9`�Ȇ3w�i�����%5�K1� �32A
�M���2)�-��"�bT�:�,/@J�I ���1����-���ƈ�!Җf8��S…��QE�!�a�*@���HU�9,��F��4 �@ JR�bBZ1�X�oՐ5cw���K6����8ņdlzbIbn(�,��A	X @'��#%%���H�QMYy�~�E
�$��W@h%}͑��d�$��3~&$�B.�q�!��b9�D��TSX��1�2��*�b�B�%���,����B���#A�rՑ�'�L(��C����~�X�gm9ݗa`5�DDNj��mΏ\gfa��6��*�8
����4Sp�&
4R��x�l��H"P�����0h��O�(#K=�����@ֲ��SB3 ;UU$L�b��ق4��d���cF,X�Å%TB	����/cO�@�\h��?kyE,Đ�B\���!�DC�bJ�
E�,]X%�@�K@�,�ŏ@�я+;���n�e�P`����0J�a(�g�aO��W��	�ߓ�a,v"/-,2�d(R!PC)`�biXJ�A@S4m�P��	*���@J�&�-�XD���P	,['Ǎ��̨?LF����A��L��*�Q�*�iDb!��t��
a�,��)`�4�T��I��K*��*\8$hLgh�
���fq�|����~��-�h� �Z�@��WDі��X�bE
�Yc-J�hK�@(�o�e4�X���cFmҹ���db�B�5�鐃��AsA�t\
hR�]I4��V0B��R�YABf�@�`��E`��U����XcF��McN�<x�c�|��!�d�Jg�0 ���X�Dh@I;XǕ����i�TB�[FQ�g0��DveV��X*!�D���ʰ��"Y��������.)�s>0��'��41�gC� �B��uphG ��,�z,J�.�$�E�Yi!�V�[HIJ�$�hgd�e�%��@��ЕBdǏ�K)�3�38���Ƭm����CkE�X��IЇ�T��6��V1,`��n�(hUUY�e%K2�%IT1��;d��/��Y4�b��P���6<-�ˢ�,%�8:&12��%r��(7��*�N���JR\8��4�0��K@���[��IR��Q\��1B¥�W��b�*�Uh�#G_�ȭ1$1
;!�q�y��4+B
��E�B1R����]��ljA��0A�XY^3Z�$�%��%�`�` t��Ұ!i�`��@
Q�K:d�J��X��\��dX#bF;+6<cl�����(��&H���{R�z���T�Qo���c�,JBH���m��*�ъ�ً(��`�h��	����D�ȍ
��@�#2L!�\dIY~���ł&<`T1��BJ�]�W���$X��c	�6�Q����D3�/�T@�&�wr���co�2wNY�M� ���i�>,��d>ZI��[��8D�)Q�R[&'��݂5L��S)��PBdhC"�kv��b+���p�V,��b
�T�v���[641��E��|]�����c���в\|�N�cy��� D�X�F
�vP&��&��g"�Er��1Bь���Y��-�Uf�!
<d�~�}lq�n<�dF�B7����F���F�&,mG�*�&7��fSUR�є��-1�,���vՈ`Y��Hb���c��ъ�2_AE>A�v��(�d V|,~Iğ)Q�)�ɔ:c|y[$`r�l�~�>��Е:&��T-�Pe�,[!
��
,�:��Fc�@�Kp�a�tOEU�ҏv4a[?�6��Օ>Jv��&
fO��,8��s�1+2c�����a�:�6%�fgG5B]ʁ�A�rx�-�"���t�I��I�	P<
Ya�=ܽ�g;F����k��1�33�C��26<a����1���L;:�(����1T ��U��s�Z�3�'
#���
�N����Ph%��U��\��,(���Q���\�_e\(	��O���|�!��LY}����:b�d���$FfjՒb�.7E1�IUD��Q���C0���kw�N�3�&�r���j�S��!��"�����a���u�������(E�D�c��#M��,�&�fƸ�S8�@L2�}W-/��_I�W�~�
@\��2���ύr�E��<Xџ���lXg\:*�>?��0#cj���ci�%�ݖ�3�P�1�1����`Ċ�b���a���U��C���c=����7�o����U�5wO�G�8��:�b\�|��K�R��&.��c-2��IUQ��
� 
n������1<�>2�AZ��k�a��;!]��F���#��)GV��F<X���%*�`Ў~��]clf��7D�duȕ��:�}���# V��*�8��cH\Ł+�tI>�¹ljt˗A��d� v	�f�b����/W�0$�0�(U�������QF	%4_,D`�6teQ@��t�ErV��^�$�4c1\c���"<�ʅ��c�(��đL~#�����H�0,	��6BVP
�*]�;	wd��F�'D{"��]�I������G�\j�1|1�+��@L�Y�����l�dq�6B�4�Uӊ��!4I#teR�4�:����tYa����SeUly�'J��#?�Y���NLA�P�&6S;� �`0lj��Ӳ�p�9�C��
������Lg/��:�`��o�8�%e�ft>*�/�9\~�)�!z"�e�	+�*;�,��up��̰C}�&$�W��������c@��F~ÜX��bA��L���*# �؇W�	Q���$�{2�j�������"@�e���*��V1�!%����h���2峳��P�DP�����&`�X`j(�}�ܢl	p�Y����FWJEm�0��q���E0�E��A�[#>�UDU��`6tzfx� �C��@	g�ub]��w��\�ve��!>��ŝN�6FLjr��v��ß.���gg�"���䬪��@�x0
R�_��`�J����=@$	z:!L�4GgH�֋֙@B�b�1g�tt*m�E��"_�vc�(V���"�`�1�A�Th	�U:k�#1;D
�n� U�4`�H�+	
<�@��J��
�F+UK�;7��]UUQ:2��M�([��&�(I�:Tvz�IDy�ds:�e���!�!#GdNT��Y F�-���FA��v���3�/B,Rύ��H�j��kY:�e
ur��
�%T$���pMcDh�7dj��D�~�P.�������|\�`&>��b�B&uF^�0��BK��>����`#�(���D?��������X�%���gl��.���C��Q%}6L�]T0l�b	��!��},Z/t���A�ś�O�[ pKvrA�;9př�[�%e�C�*��D�cU�UX5W`]���t4D#�+Eeo$�����`g��e%T'�ŋ]�����pE�4@�$��Li7*\�r�l<5\�x!�?{gg�,�x�}jL��#�-�U��%!�ZTL}K�.V��dy���P�� e���7v���uP�+ņ뫻��AU.�7~*��Rtb�Ի��x�wF_�/��A�1�)Z��+�QUUU�琡Q`7v4Z���J���U4~����T���䯫�U^ȣ
����Z���y�hp#<w`F`�v �vI4����2�T�]�@ze�����TUsT|UUs�<��
*P/,���&�T|���*"z?@�.���]�����>+�;�*�������檪�?��
�5��!eZ�`\����;��QZ�kU���)@~��UU[����6z���Q1��~+W􏲊��.�^��Ui`_��������1�5Rǻ�Y������+�Ni�(;�y�y*B/�*��uTKgg�Pʭ���owq��P��W��|�j���}%�;8�U��R��\a+�W�D�S��2!1 0A"@QPaq2�`�#B������?�U"ޖW{�F
��-���zb��:d�tgL�=��]�*E�i��ɍ1�z3��1����\�.E�L��Y*�ӦOF��&OC=_�o%2�T��v3�z�dΔ�_�eK��e��g�)uzt���Ι=�F{�ե>�t�U#&t��ک���k��Z[)v)����'�kΙ�'�����:pc��X-�Qh���~��њ-�ڤ[��^4��Z�4�3/�h�L��v0Z1эrV�k��o�۾�Yl�R�d�P�ƙ=�_C2�~�%2�{T�F��4��H��{
F5�R�-����K�z�k�1�����̗
}}�V��g\�}�������t�z\�v}F:q����3Ӟ�tƸ0d��o�=�ˣ�d�R��-�r�gOQ�ǡ�~���kZE钖���-"��#�1���k:b���cLi��C9�`�N:��:�R��O�[��
�[-���P]����tξ��q3�Δ��Fzj_d�m�W�r��K�HΗ"��i��tξ��h�g�=����:����)�J]�E��.zQ?=>�=}��O\i��-�Z�R�}��~��j:[1҅����>E>VA�4o�"$�ξ�=}�f��o9)}��E{=���il�$|
���KBE�zI�W�x#��7�<�&4�����F��Ƹ�Ql��돾�<�H���<#g��Sߑ�
�!2R0^E������:z:0a�nzq�ι2c��)QKT���͌�`Tyz��U�<r6�|�Yx���Lp�L����0��)��ӝ=:�췭��7ε�5��Ɋ)
��V�c��XيUX#t��P�M�0��=]1�f:3��3�>��3�����noD�(T^4Ze�&P�����WE�a!膸�]��$g���_+�:�c�=��OK}X-iR�-tP�/cF�
���!��36���1�v��#�$�
�o%���͒��_��Ц��\��3u�o&4�fz�^���޷�CZ��Hs2��es����o�^�4!�x��L��ɝ=bhh�l�:�θ0a�3�{������o�=�_o"XFD���+��&�id�/��D-2\p*�ԒZQ�dșC�Ί�_�xz�\G&Ww:c\�*E����z�	�/d�e3'�>���R�|2�/�!�;�(��'b�b�E���mВҸ%�!�kE��Εу�0z���ucOQp�ݽ(hO��Fr&P��e
��[�N�ؑ|D@E3(MY���l��O��y2V�le����R��\�2\����gZث:4g$^���z6~G4V�I�r/�4$""x�
����jX)dU�����k�ʕ"ƹ+%��F�VO��0z���=���_��x(�1!47Ȫ�W��fpX��D[�R)ѱ��*+�1��<�"yB��yY�a��b�)��t�z?���{&5�VL���j�v�B�卿��H�x-
���!
1��/��	d������N���)��*SbK`JE����KCG�ze���w:c\tR�&J����+JzVK�,���D�w�#�W�)�9bb���tFc��:xee
HI��E�7�+��͌�Z)�=)��=z�j�!B�	��x�:cL��5��y�2���|�Lk��Z$o�������)��G�R=�"yEa���lT�o�ϓcұ�p�pW��T�ذ7����M|�n5D�1�c�zWc=9�K�ۤ5ϰe��e�_#�CE�Q�B����O��l�޸%t81��^�<�Lptot���x�l�SC�k&(�S���<ƾ�^�=:c��i�o\i�)}����y�|X�����J)d�^�)d|���&���/��SV���ܰR���J����3��ş����N�"J��-�:*E<!�z�G�Lt2C$?��hcզ)�&L���H}����G�|��
<���>[�j�<�M��9�9���Bye<�o�Ad�`Q�.F����-Y�-���#L�Z0I��3Z��)��ON��䀺��@����4cZљ1��^ƽ�k��N4�&$y7�JZ[��E�ye�|�#k'����_�LPx6<
#nĞ,��b���7剼�le��مɳ&pZ0_,��!�L�L�BM=1���z%�RT�A�o�:WF4c����LI	���lz[Ґعe-[�|��bblM�e;CMYh�o%Hް*�R�2˱$:�U���V��Q�X����n�F�/Q����+t\2o�Җ�"���E�Q^�6S)���]��Ȗ���s�^J�Z�-�Ɍ�W%�%G�,ن��P�v4�	B�P�+�V��-��u��ت�y2?2���m&\(bEw3�O[�J,����ђ�[|ȅT2���F,|�ȗ5�Ȩ��'�?9$�x7�ot���j�M��T�Ų��7�)ђ�[���n�e��*̙2̎�W#�8'�Qk�/�+�e"奍��g��c�:3{6<��-޶���	��vn"�Ą��_���Y�E,ț3k�sۤlǒ�R2'��_#ylo���\w�&L�}
�к��ࢺX��ٱk�d�H�Ҍ��LPu�y(�H�J�:K�ꆲ&7�dE�6���<!IW���m'���	/�K�wl[��"�&��$7�NF�=3�����e��P��mކ⦍�����]YJ�2d�$�gɾE��0`�KO�gJE-c�oy�|�?��<�F�R��k���:;��ɝ2d�VI�:]���ȑl���p�"���Ɗ����	�I���l�Nhp�y-g��C�#
��}L��>
zd{�i��.�iH�
3��y>�M�2dȬI�yL����OXX���xg�Hߖ�͛Ƹ�(m�"ٝ)*%��Њ^ٝo��[��o����NY|��.I����{�А���:�y��W,�|ɝ.C�:'�,"/,�)�e�ɽ�kJ������+%f�E2�b647�c$W��@�[/�6Q�����BҖ�Ȭ�ϒ���6N�1��x.ͺ��rk�಴��c"�5�
0R1՝,�Yɓ:I�$���X�ɓ�J�lT�,�>_xF�_���c�7����L�"�bc^M��&?��KLْ�rfKc^EEi�;�t=*T�e��pp|��o����}v���9?�i]h���Gf]6̖QZ2�"�,b��90В�q�E3�dV$�6&����)�2��ȼ�^c�67�$��D����Z��X&VEX)Yɒ�BkW���;*غ[^�Ml|��>Q��/e�d97�-��H�>Kxҋ(��HE�2�c#��L��ls��z�0$���'�zhƒ�I�'"�*(ެmdo�Ox(_)�pEs�K���������
�����
�6*F��,1���7��/�\�|oϞ�Л�]o� R��т�0V��)��ࢄ"��ޭ�����ț��d
�&l�`K,�[v���y=X+�Jli������P���I�lm�xC��E+<��7�"�)	�=U��,
~��8=��M����k�۱�9Ex6;�F
���蒓o��I_�c�M��׺��-kF򍒲�G�=+K+NOHΘe1�Q\L�|JB|��OxF����6eY��
�z�M��W<�6�,�o+�QB�L�9KO*)�+]ѝ'��QS�7���MO�p�K(P���;�6:|#sj��c�8G�o�MT9daP2�&���=���(�mV�?s�qШ���ִ͂�`ޖR3�hi�9�)�y7�)�o�r`PT4�c���N�u�5B�bL^
�$�d�����6xE^Yg�x<�%<��co$P�諢��5VO����l�%tI5C��#��_#p���v�M�I���ӕ��U6EK�G>xi�s�
<����E�"���C�L���|�L钋Vl��/��<%�Z-Q�#Ӂ"��Q�SV=��ڢV��lt'��W��
r5lSV͍�К�9��l-��(�<��g|&�ճ8<�kW?�ƞɢ0㦅8�U��	(��ؠ���\�I��8F���"UBh��=�"I�KQȥȡ�M��耠�#�?��-j�1��gL�ъ�#O��
V�W��镑45��Z�W�&�`�vW�pm���ȫ)Y��|
�Y�B�	y7�0/�IX�&�o�e���`�p���et�E�"�!N4ĕh�+~5SD��%�3���Fq����4��Ѩ��l��+(Ͳ���L�'֖E�B��w����Р�NC����Ц����!�^D�)���$T��D��&�r9*,�~P��)�ErxFTE\�Ƹ������#bz.����8a�랗V��|�����m���`P��N
��㲲M�r�<�)�0lL{0R�L�b�z��6WR,� xB���Z0S�0��%���ɱ�b�ݔ+%px7K����Hhd�7�C�D[�P�5��/,K���!&X�V^M�����e,�z���J����0b��%�3Xf��D�+d�(a>Y8q+7;܉:���!x%	�%��[g�t����5��uV��6�P��3Ȗ|�dS�K,���:�&�'
F�`p�Lk(K�>	A
�n�'�К�N�oF�7Ȑ�\��`C���l_����օ]�!9Z��"�Β�z�:P�5��h�/����J�C�p�٘�������EAQ9�d<	��	~Ցv��2$���C�t�͜�^�$$X�J�$K��ț�<	"�Y6,�ox-�fƨ�J,M�a�|
*	�4`��Ć��o�,�M�+��[�P�g"lK��et��Zм�ݎ����[p��U��js�_�1A�Ȕ��S�K6�<�­ݛ=�����d?,�	7�7�вFX�r\�J���	��V_���e�(-l�Ql�h�e��U����R���dޅ��X�ٿ��IY-��`v���6]c�pb���4_#�
�bcYCY,�i%��QZ����D�t�da-�6l_�%�H<�Z����(�x*i���%��
S��2T�X ߖy~	8o���iA�E�ȸ�#��3с��j�)u6V��7�uM��z`GƞM������N�o�$$qE.0*ǒ��c���v�N��P�ĹDjؗ�X���X�"W�2+F��5k�A�}4H��ݑR�.4P�%h�֋�׭]`�$�^
�M5�&�n��L��������<|bS��SP\r��l�
���M��,�тM��[��lZdH�tѱًj�\��`�ye�$*�UP�$Z��!�T*֍�b�/�,��F�~t%�1.6&�h|����1MZն�Q�V�B��Ni�xg���Ma�I��)���?�$4�ETi���"YybRS^����Z�[e�x0R�pt�7�kKKҋ֌���|�5o��p�	3�,Z%�\ئ��P���
Hw��V+B�Bc���|�@�g$a���3����p�`CC�Z|`O�A�q�Rn�(ee�qM���<y':�8Z6}$��5��);cY��j�ڂ���X�ȟ�vБZ!��.%&�e"+'�Ӯ���K�[������]J*��o��ѱQy$��CCk'�DY�/��n�v����9�.Y\�8�\����Ζ�\�"A�\�|a���_���zT>(�9%���SFȹ�۷&��N�n˵��P�vyt�9"u��}|�&�&ȿ��|�=��
1@��)�da�(��͋L�ѓ%#.�Ԡ��o=y��_�X���1�	�<2[9�+�6��ӻ�K�6�"\	��.Č�ʾ�>Ɗ�M�S���B�m���O�Da�M���×Z(]Pi�7�k$6Wԋl�O�,U�sO�:�IZ�:Bn�#��|"0t��?W3dlޭ�uk���ϴ�Z)u_CL�=n�PV�7b�stThO�eH�&I
ꄮ�y"�	�'�D�,E<��-�К%U�
��ZQ����~	6$�X��'����\1y�5����S��Mr��&�n�lw��Sm/S����S�&��Y8})�E�+����c6+�����od���HMd���z!���bKZ��S����o���"=��F�flL�*V���$QR��G�^���n�Ѿ�+�g�&�D��Ю��ݾ��"�����?e�#�)�ȟ�X�C�Ny~�{��+_�'9]���m'Mr(AAx$���n������ѽ'2���f�in�_"��v%�k������z�%HК=#��&l<��FI"Ѯ%eJ�v(
�I�S<�ٛ�V��p_C\+$��C�R=Z*u�l��<YP�1�-c��J-�X��"�)rٱ�L��6�=*�o����e��.	��+ձ'Z:�1?=�tP��h�BXE�iZ1�>���]�z��"be
4�HJ8=�-1DE4тݖ�dH���+\�?ߚ.Y�G�|hSkc�%7�/���!�[�P�9�v?�'	�ᑚ���)�+�i��^�?O�;\�Odݯ���&$P���#ܭq�FK�ƋZ����U�h��n��
��a�����BE�|��k��%>X���&��o���=:ڢ�O(p~�&��M4]ß&	fƝ2��6F��Q)��R#����?�������RƾG�}�(�i��)�,IYc\����;���C�2D��7�+�i#�L�%�t�&ʅ�9-��F��IMz���y�>��b��UOJlST͎����~�pk�l�ƾ�~X&�1��$&���2`vx,��-�K�����K��M�Љ�
��O��E%�Xy��O��?�՛�%�!��}5�'��V�&�^F�&�Dn�c�
�Ɍ�f�KŲP�Ma
�mc���S}�z'э2d�y+��|���euX־~�N�z1t�pOss�n���dvUr�#�/�ׁB�b��Ud�(+�I5B"�迒�i
��ڄA(2ь
7bR����O�C}���֨E.�6V�_O�V>�Zl�I�C�)��c�Mz�W�t���6F
���jM%F�����ZNP�lS��5fȨyZNr[Q���DVE�&�גie����=*�X�Q}t��ۢ�Z\�T!>���M{��`�������PY�W����|�oby�L�����|��)�T�=��E�Ϩ�8,����R$��>KY�b\����	��R/��w����Ժ����Q���)fx"�_L�)�7�"*Q�F�~>�[Y��U��?œ�Yz�?ׂS[��<�A��
$��)�h�w�H����;�_i{���(�T��~Y�z�)+]k��ꍒr��x#�L�'	\8=M��J
~
�_X�=��eL�]2O��E�We��Wߢ��x�=Wu�����%�(s�?����Jt�<k��t��8��pE17��;�l��9�����
|���^��>��j��O����7�e-X��޷��ƏȺHo�1�Ѝ��rmǑ�KU>D�Y..	�"��=~|�L�،��JS_�V�D�_B�#��}t_z���x��ev�mih�Y]_#��K�A~M��%S|�R�����&ѹle��VR��๿��	,��et;<����}�})Zֹ�|��ӿ�ܭ/��ez�HP�~�_��c{�c�>tI�Y/#���_�����b|�т��,�ױڵמ�*�c|�B��a�#�	>�<�
Ǻ�J,���|�R���ׄo��	��RT�T��Z,�h\�l/��=�c���{V�F�S��%��~;M��l������k<����"�W�2��ܣ{�{]42���B�ǿk������nf������ݡU2$H��BE�9��Ze�穼����捑�dI�V�;��TZ+�YC�z47�Ɔ�u�}��1C�WZ�g�<
���B��PC�o�2_=J���i_?f��w�]Nb\�Z��<udț�#sD��ܨ{�Qg�i�C�5Tf��yv��fϲ�_>��]�dm�ȗ�+�:+���OR.�cR�fў���r7��_b�>K��_cO\�s�1B������j��xB\�q�+��r9�����Z���ZF�\`�����K�+���F��~ދ�o�=����-/�Irx�߸�_M��ޙ&V�z>�W�K�.>}�gȗ�4���ϻlz����" 0@P����Zř���c��:,f�?�Nc��@r���ʍr��
���逆41%DK���5݊
��M���V�ћ�Vc�%���'1�%�xb��tzI\�]�(�����F�$���H��1�
��/��R1�������g)��q�K��g#�1"
���b�C�Z��h�ŕŗ� P�ᔭjᅋ�%Cf?ی��tǵ��ZVr������Ɔ$AP�4?"(Q)"rR��!������@x��: xѣ/�q*��3z+R���~���s_��OI1�G$�~P�	QCz�h��F�,��x�b<��c-_����$J�CC���L�c�pDh�Cb(�����a�j,
��F�J�3@�1-"ҢXC�u�����K7����)A-{�cs}pDx�C7J'r��D3jc-C1�t"&^�T�cʒ�%�̅�����[4g�Ac+Z�r����cs1���$h�8�=�"��ǎ�\��7i�%l	�)Ur���U[Y��`��c���J�Nc���F���`F�ŝ�X�I�f�E���0p
<ԑ���3�D��o�T�Ę���f�D@g9��"[b�*��!�E	'L����v�����J��������Eh�#?�xˬL�g%�A�E
9o���`�2��d��1'����#�`�����o�u�4f'�$�q�k�T��f���}r!�7M*�4�AB�F��5�p{AR�f�j+,c�~��
�'If�
H��PT��f�e��1 �|qrz�2��q�2zX�z�i`h#��"+-)H�G{_���
(��3���MH�g&π��X����gnS-qa�:�	��C1�xǗ=,�`��0`!��ZPf'�*)	���`?�Ef��� ��dǵŠ�6����icO�B�R@h'���P�1�E�����1�t�
��1�4������Z�7��mf&,���3�� ���H�DfQ8��a���q�2$n�/LX��%cG�����O�v����D��>*3�J+;Lj��X	&�a,Y�l[��C9����4儌"Ć10AЕ��K�X*JՋ6�a�ha-,ခ�����+G`���)�+�;�x��J�J9Io7��J,w�9�#��!�Lt"J�KCE��(��zYQV���"!3Y�Ƣ�
Ft��Vʢ<@���&!p�6ʐ]Z�D4��Y��ӗ+�Hѡ�B(��`h�V�&�%!��
Oqo�h��<
e?�L@]k֊̪�o@�X��0��
aO1,a���yLbƹ�<�\�%e��t"��p�J�fpR��SK�[�
�̎��5mC'�D�>3��d."�}{�
x(�@"U�,4��X�����r�0J�1`��8��mw+ҥ�T��`���L�b�^�[#R�Q�*��VZ�kg��3��kZ�
���!,�1��
�����Iǜ�T�%e��`��"��X�,N��l@����i?�tvF��7`,TJ���p�Ma͞��"2�X*����[�1�1gr�1��X �,H���Č��bAT�F?����zv
����h,�B��&�eb_Q���xd@��(E��2�޼#1DX@fVbb<��c)�KX"�,��h1c0D�V0��_��ޙz�gddDGG���j����
u���+�+�`2
f�K�k8Õ*�AB,`���`h���D�*���P?�����FtP��ke��,�ɞ�0���/�2��3������_�Lі	��Tr�zzX"�k1��"ĕ*���:?��~w��3�,�#8���X�� p<��+6{
,PȮ�g���;"DT����#,�NL�8n�B/KRƶ��AT+X��F�B�=�x;n�1Afm@��H�<�Tv�<�i�fDvEhX��ؖ#Q=x�aȕF-�`
 ��4�AARk9={�W�0tGy���X+i|W.��#O:��!o(WuG)�V�T;";"X���QH��eD�#f2q��B]��y���+��?B?B,�(c{b�{f�W�
kz�� �d�7�$@tY�؁���� #��<�1_�=��F�"b��Ty��U���)����/Љ*3^������e_�DDwg$w��;�C��X��1(Q�(*VJ��#Օ�@]�23�����f|��B���f0�z����*ߣ;Ad�
����E������EB�����3���*����L�"�+3Mbŕ���2B@W�B��@5���a)g����-�߯~�+��[�pYi	��6C1+55&����~6dF�[B�T�ܞ�P3 (!#IUU�-3t*?�v�z,ѝ���(�3[3o�J����b�:~�O�@�y��u�,��34�a��h>�ACT4�x��8��f%+U�0��Rl%'��f�a�ࣳ5l�1�,����0T)<3�P=4�V� UZW��F!B�<��� ��)s\_w��虿�@��E���\Z�_��S#�e�����,g1Q�A�*��X�Xz(VV$������u����Yf�@�f�6	���0FU_
t i�u���~}�UZ��q�������ѿãf�U��%�PПl1bXl%
�"8�K�)���4%
��:�f�b�)k���3���I��i��vn���\�Ys?�_jֳ����2���&31Ō@$D&ɋcte*�;*�B1T�RV$.Yc>�`K�)+b��H�i �F�g����`����En�j������{�2�ۈ�;�7�e@/�4`IrU}��b>�P�U`�p�1&����3!V`����[Z�Lp�E��
�O���ʳw���p{�&��Tk����3Ӊ�*�<�a� x�P�u*H��Q�)�a`��1��,�ED	QP7�~C24KL���&L# R��g�ofi��ф�قo�(�����W4�,n]-��GPV��.�N�V��ى�"����|�F`Tu��3��Q�6�@��S�*UNeQ��0A2*V����В�Ĺl�ktz�@|<08a�"-g���	i��~QY�_8��LTRc��[;�X��z�YH>`�vFov;�H�De*��sCg�BI^;�����n聿V��	a0�����ƪҶ��:�j�X�=]��k9�=l��2�h��A[;O,2,(řh�������`EP���F`�h"�B�����7"'�/}?kc8�P;�>��A��Q�qD�����c�FJ�-�9����FV��LX�!����AUVU�0B�tpU�aƘ��*��HDŤ��ct:#0|�h%l^�fL�3>1,b�Eo�Z�m���ƭ�,{9��D��,K4i\�*�L���bb���<U�0v@�"1���a0��h@�%bV�J�@`B���̆`�q���=�ϔ���`��B��ޏ���݂��J j�|^����)�F���X#,��՚�/M�F�oj"(b�d��'��<���ф0�E��r,de+FWf§�O�_����<�ql���3�ڀ�%�K��~b�*Ʋ��jlei��4H�"镗�.����V*���RXF��0M$����	e��Xfo�T�G'Z��0���b0#�H 9��u��Q��
�ƪ�������%��1Vb�]R)�Z�,���x���a�
V.��U�3���X�QI!���y!��am�Ŗ�Z�<�˔g�%^�J�
�����UFJ�F\���u/ŕ�U2\Ȝ�A,Y��)Q#Fj���F+�b 
���2�OL���DW,Q��E��l"if�ev5of�Dj��̈A����?�h�-L���A�Ѐ�$�f6+"�c%N��K��l5�{l-�g1⊋���Z1X�]�Q�YQ@V��b�E�U�{�H��( ����;B�	8��$#��F(U���1�Q�x�K����hG�R�q���lY��Q�x�
*���{��1hb��0!�5]�*8UlĊ|{@Zo�M�'���ʰ'�X���Uh��H%� #D����*%�c�/�Q}mU����rY{�v=�Xc��Fm�!ꤪ��d`��Kח]�k�RYy`��V�Q�"e.Y�v
��?ER�Kz�$*��
��i�����&+�V՟�3�V��<�!?�-��k�Z�mee�H���622(��+J�X�k����D�YR����o>D%�d��i� tUEvC:�R��"�'��� dT*��!�1���`�O�*?7c��J�?UJݚ�Q���������^�v$��̏��8i���ڥ�겾jX^�m��De$�ff��Z�Q�))ZB~����¬�'�,��A	����
���=�'�����u=���}E����%�K+fI���[2�9
!�c@��↺��(gi��%e����]a��Q�a%��-c�e��j�,�1�ȈS�b�Y�uFp���3(c��R�}z�'��{�J���`���<5��;CUv4G)�ףD�'��#z�b��3���͊��+�rڻ�4���vR�<�Ǣ�O�ں�;V	P e,/�+fTW��b*3�Ǭ����O�OB(�VȜF��]e+���$g�y5�eF�CF�e��ś�A����^����V��9�͌K)��5��!���ʍX�_k������'�
�a(�u��`��@;?=d�V�eE�,QDk8�i�j�~�؊��V�F�#���ܺ�fǎ��կ��b!*Z��gG����;29FbT":���Od��X4@f���> �"�a��R0g���咤kJ�|{+�z)4-���(�(�ɺN��b,eP���*qcZ]`��F䚐O~�U��Y���=!Bk(���Fb �b�.���<��j!��ȰE-J�눾�vvPUX2#+-���g��؞�T�'�&1��rTA�k��W�zɤ�I(��1U'&ƭ�W���_$"�d�_�IRK��7���?��<��)���nC�UHMJ��T��p���z���R95��$/� �ل1��B�
̉�2W	�n� P��E���j;�Uo谈YC�y)0�XϽ	���B!Rw"�V��AEq�dd
�2�H�l�9A��U������J��va�3:�	b�7DfsSB��d�`�Ah 3�*W7�ƃ���	�x�Id�� ���	�C�DO� ��6�U�5!�#20b���?_��5�^����ق��7L�c*�����@�H"0�D��r?!�%H, �UEf��nxP�������쟀&�G��6dQ�؋8�|�/�X]���3*5��+��Tb��7�A�b���W����V�`�Y��qQP��r32dK<x%��Jѣ�`�DtW���z�γ'|��x:!�&%�F�0e���p�Ye\g��Y�{3Q�z�|�̩p-��,K7�y(>Q;3Q�fr���˨D��=���xF���>@�$�U�/G�'�#�"Y���5L�z��Tf����|��k�X���c���	�+L
���+�ڶEAZ, �C�D\$�>�dA48vvd,��/�9;�s4�#�!��C9b�L���Y��4����DF_lZ�#E=� �Z")XF�������#�7z�X�D[�&h�TdḞ�w�dق`#$�B��*�^RR��u�!�B��v����W�w�u4�qR�1O��UA
�A��<0����!�BL�V����B,�vW?���[0��h	�DΪ��>*f���=k{�eJg�5U�2�d�W`R�J̥0S؃⪐L�K9&9�@# �d�µ#sW���4*`ɺ$�0�����T��H��`��7��6BB9jLe�Y����j��sr�_?���eA��+v;��:0�fn�Qa�Y�y��9Z�0�U�c#Tȕ�啐��OC��!�BV0*����
V�Ғo�"E�3����Ƕb�d0��h�Y�C��U �if�la�/Fd		�f��v	�$¬��4c<�'�C���	���Y�"�PKWы�#*#&"��O5";J����*3� � �*�����3)Vd?>�������jF&�b
�$)P
�f���S=*�f��F"�
	���d��
��`�@�g(� �@�0��(�!H�	R(���|�P�P��@�vd
a�����	��Ŝ*U�AM���x��:l'�!/"���l$�X�
��d�,�k�eJ�+ViM���Y*V������GD��̈SϏ`p���ΓZ�$��`���5a:�Ȕ�f2�IoH�@B����Y�����*3���	Râ=2��"��c7���ut���P�Ul��bf�ϔX����QF4b����"1bp�{����D�,c�F��&��ײ^�rz�uW�|Dg/���,1c���2�2�x;�Y��G$2��_�x�J��{DD��`��0ow!�rpj!�����P0F ��M7YٙҴ@�#�I&f	�B��`�B�<3d^�����tY�B�|n��IE��X�(�4�<���4a]v.��o'L��0JԒ<x��4!�36KB��ZTImI�a$�7vz�c6�͠��:RNB
��(�A���޷ft"�T-	
T,D�y�c@�03wu"���� (��";�!�"4f+��@C]	'�3Ϗ+˄Tf.l�, ���$��
`_��T������}�	����3&Cב_����$� �p@@YT��…KS�3��I�+7<*_ʡo~U��Ї�0L��3W󰲟�Ѐ Vc�|�����Y?�Q���/�*�Z���YO9��� ER�N���L�b�D� �{�߽U��QP��z��&i��|:D)���I06z�`!!�{�xjְ��J0�L'z0A0@��a��LVb����c]�:�g�<o�{�O,�#ъ�`��H�=���3��,d�t��\���}�0��#3vi%�zf$��@�U�m 1:S8XU���zRhp�!}��.�(X�uA	��B!�����G���Q�j�'��޷�삥|��9�IbKi'�$=�N�XOM7DFh�� ��}gD�>����>'���
݂������f��c�,��-4� "dϝ������}z�ŋ�$�Y����3�a�@���z0C��!��O>�<�Tc����b����0hL�:?�٤M� �`'�����wIf.\�p���a&"HB�nfu��!��?vcC���J���/�=��Gh��!�`$�a�0@I�Z�� �wA�ww}z����upř��DT$��%���� @�|���3��>w`
H}�<\O;��'��
�cE����fL$�H���"�g�����N��O�^�$���V��V�ǿ8Z*3�ɢ���1�gf�Rz"n���^� &{��D��# Qـ�=�f� �B��$�oE�z�����*S�T�X��-�?��* Y�3��tfa�N�=������%X�0�հ����C
�¹�|�$��$�ŋ���n��҄�=��O�`d�J����Lk?��:��\?�~��09&	��f������# �~�˛
��g��ʼn��wwwwT%*��[v	��4�����,��k?�G�����[s `��4�L����[��I$�����D�I$�z&a�����a?G�+�i�_���ʺN�����4!1 AQ"0aq@P�2BR����#����?��{�������kr�)�l��k�߯�\뒢�r�����ɂ�T�_O�c��6-(�����ZW�"��H�>�~���z=��/��L|X0Tˎ��;��[f~�ye*/��)%�t��H��l��D�u{���s�4�3ܿ'��1�f�f��.g�ك2�V�lE����w����H�/��RҠ[���Θ0a��*ɏ�>;Zg�:Q�֔�h�b���6B������������{�==��{W��Z-���Szc�&4�oL���YK�ʊ�)i��H�[��ir�Θ=��ڿ?H�h�韆�z\z-�ґS;��g��PZR-��|��܌k�JE��Rғ.O��}9�ތG��閌-q�{/N�1��p-~�J������+Z���ȥ�A��񧵙z�Ov�������Z��qzS�ޘ)k���ݔ�)~�B	,�oJE��ٍ*�Ok2���ݯ�'�?���Fz�`�>�z�-�R;�˽�e�C�i
�L��iH��cL��i�fu��:������dƔ��V4�鎜-)��-Р��%'17c�-�����Hƛ�f��gL3���~J��3�`�zv�[�|?d��K�{ ������
ȤQI�|�=�{��Կ�1�|�"�N:q��K��i��w���[��[0Yl��"��r�3�ٲ
��$��]�}�J��k���&KZc\t�)izWE"�EK�-�_�j�7+�ˑH���&1Ռ���E�%�O$���B��[�o�A�g�3��i�}U��1�q�5��/���`��-���_�zii�3zR-��;�e�]��2CX�5!��Bߒ�a�2�O+�#‘ٛ3f^���땥�dV�c��r`��0S֑]�Li���E���Eai�%@�1�7��
�#��*$��da� ���e��?���:㑞�����n����6a�̕���`�#d��f?�?%Hƙ�%��[���K�;�\�+�K�+�����(<��}#�J�|MZ"�O�rf���aYn��(,���!�I�<��{�ǮQ��ɗ�3����k��]6���`�o�K)kE��g�~D�ȡ�6�y-���H���Z�61���	Z��D��f��m䛃k�����p�}����Izj�m�#�.��z����e���g�Lt�辚tS-3�="�In�҄+Yd�Er��qAo7�Jg�b#������0~_��>Ƶ�������Ey"�C���py�!Z�bp�쏩
��&u��12c\|�QKK�.��K]�$5���r8&������Z��u��y"���d��D�߂���v�	�8�c��՛༡����<���"q��`ƾ�f����dƸ��dδ�}6U=1_�YKZ+DA��~W20B�j|?Ò���|�lt��͒��sU���bn֖x,wCؙ"CPY�D�>(	�b�`�"��v)��e$G�2��nH�3'�\|X0gL��z�S���B�)���?�x"�@s�̸�p��3�6�v��6)�%w���'?�ASɲ�|�O��_f��(�g��n�|�껋fL`CLߎ�㰘���\���*_r=�'��:ྻ�N���Q��|��`���`p�����#�F��$��n���%�'>D��#:CN�'2lj4����mb�N8!5kI�M���4F��2(u�;��S��/<2ʊ�(�3�d�|��у:`��ث墋�k��VS��B�ߒ��'|�᢯c�)��9�<1�RT��9'?���E+�&x'md��P�$��)��bp؇�oX��J����㹽��
p}���_�%��X�0T������-�-d�ݕa$��|`�{+p��9�(�y7;Gc<�8$���$��O�N�&8;������=�n�&�D��p)�gt'�m��6!O�M�b����Y%��ƹ0�z�=�~lk��`�������lW�sɊCY�_�R����{��e<�K��\�|����X��(`H�$���^F�.7�R�ѳ�I+�O�P����)�\�:c�����{�ް({ 83z�7�e��L3�=�~l�?��(���2���s/�A}�e���T��g���3�o�F�M�Ȧ�Ȓ��>��~�Þ���*��H�W#��
|�JS_d���&�,�vF��a��kk�N�����OK�������2�\i�s�o\�f?g�ʎ��wf�B�i�λ�F��N첖
V�J�'Ȕn�%�d;�K�oV�$�y��$�
��$g�8ep&wE�s�0l�����J��i/F��t͒-��ޞ����3�Qk�=x2d���ᯂ���ȡC�O��GմI��0^Y$�pJ��$��&�*��'3d��:�p��hM4ʫb}�xcRdg�8a�y�ٍe����)��#)U$9�3�ݲ3�S��R���	�Uc��,�*��H�:[�q��Ƙ0g�5�'�EkzgJ�\
yDg�uB��V�⌗�����$�xh����"K$f�4��$vY���3d�"�i�����[��
�Y�ŞGG�жd��l�#7eS-�p(ar�ݳ��=���ι�?uƶ�θ���Rz�M�6�w��+�A�O}2<�D^3�7c���o.F�x�b��+�J|ULJ�.�=�fE��`�\��d�(C�f��*��a1U�k<�4�&�p&81N66�{�>�����6��$�%�'BC*��s�z�B�O[+Kf4�o\�����&&��E�zp^�G���y��r�Q�E*2^_��[��XEqȓ��ʥ�N�Cظ7�P[��r0�Se���RY6F�X��rl�r9�!7dg���7��8Kc6a#b�Y����E�#�Ei��Ŗd�%x�Ι��!iC�1�e3:؄$S,M	��/�W�KGcѲj3&5�3:��`�8���v�Y|�����7�����J�,���E:G��bR�wn8�iٽ{�5h�С��A`��	^�͞�!’CK�V�������b�M��Wc$U[R=��h��qӝ(Z-V��B|�\|5��UzP�$�1C�d��!�T�B7�|
t`�vQ�rM���pF2M�����$��,وK$��$�IA[$�sE�|i�82�pRMd�����1��¼2���ȷCr��($�����#Ἇ�l�1�Z�w�0T�c�=�T��G�J/�c�]�i�$��<b��ZW��$Y}U��l,tf�5�(*B�Zd=8���vn#�]IJ��Ho#�R+�7�6!>�c,P�Ȟho���/9%�D�k�p^R��3d�;#{��4)B�ҡJT�nHWi��"դn��$�pl�6H��p�*��B��7���=�x1�Ջ�-sbH���8��Ri�쿎֔-,����~���E#&�
�6খ�96A��Y\�ђ�������W�U�-���{��Ң<P�I�r�A�!����9�,_��"�9?�حw6pZ�>8F�~nʕ,����IE;�&���4���9{�>Ĩ�s�����cF���B�;�4\z����E}�fZ�F_E?�_��%��\S6-��K&�֖Q��e����6*ZR)QH��ٱX��T�$M�
��	]��Q�a:Lw��-��+n�]ʅ>JU�u�$��)��Z��j���9�
t���o��8szX�������%M2��z��/:V�}+��dw�O_
lM�P27��6�7ͽ�!��vC��+K�5�����u�ofKtd�Fh�Dx�߄$�R��.�	v�x��kf�8e���͔��{[�j˩�6;�-�4�����%\��>l�x�N���أ�v̢�-��c��I�#2\?���L�[+�Z9��1'L�*)��*3������ܾ�F��6A�B�`���)�8A��J��ٱQ�p&�fhm����-��G��Vm��w.�m��)�.E�S�ٖoB���3�`K��(M�T*-R*�vv�%�z�������{�$د�Ȯ�t�ݗ*/����W�g
�h�CGsΌI&UM�O$wY	�#6͏��)ݕ�tɟ��c�-,[՘ҙ�$C�v��^���$��Y�HR��CLƎ�%ɜ�mB��pU��#k�8G%@�TF��$`�|�x^�_��m���o��9+(��_&�HW�v6d�V�XEX*Tjģ�e^NX��\�165n�'}�;p��c+�F�貰Qe�Sp}�����3ъ�ưl�wdLhɓ&z,���S)kClfM���2��Cc���0ɽ��3�M�E^�B��Ҡ%��}��i�wH�lsX)R�Ja��w�ޝ�o��b�&�1&ݛ�8������n��Ydqd���P�O%��R�I
"����k9e+1�Ci!,1%��%��_G�.���J
}�7o�UcJ��i���ɒْ���f�E#݃Ԝp�R
L�Ę�T[6R�›�%=�v8
�G{�.₮N4��As�)�|�P���4�Xe�K=���Fi��vSl�-�*�[���.܉c�b���v)��
/49点vS�ҷض�x(�QK��a�a��u_�*�V�ZW��f4��r��d��.T��RT��t=vo��^t�l�zQ_-t�e�؋2-��R!�.�S�[-�(�k�\и�
=��}�Ch�؋~G4F�e����(��Ȓ�oV\��^Wq�[�W�kƕw.4�LST��r5�l�~J#ߑ@��r��U#�%<4�X��>QO{x/���Qn���]�Ie	��4���"ܓ#	�E��ӭ(���ɱ��Ůj���P��ؒH�td��K}8֙zdk���flGa,���ne�')�`�aB4IJo�b��'����"�^I1�D ���E�oi����|�q�r���6���I��nT=�R���K���^��b�f�]�t��"�%�o^|��A>	M�o�C�<Xy+�U20�b������������*t4��lc*����ڡ��"MZ�<2�������}w���Nj��ŕ�o��RҿEx鲅9�HA|��c��.8%f�V`md�lT(1r]Oe��o��d�኉R�(+�bsf���TT�nX�xFT��l�ˇ��{�ծK"ig���2�?$yby"�)���|�͊�[�n�l��tS�*�ɱ�JW<��.
V�|1�ɼΉ���po�Óz��kd�c3����%���QlSU�=XGӟ�^VO?B0��R\����k��/�	��3�3�d9l��ݲ.;�
H��j&��ȸBK$n�+iN��"�L�Z#md޷�|86J���a�ٳ/̮��2lBi��_��']��#z��'ۂ0d^X��

��ɋ7��V9+ذ�WB��f�-����8w��,u���[��U�,�T�zo���Ӈ$&��C�tO�QsT��*�)�\���^�g	[|�����/�������
���'�zr��T�&O?N�^���o��S/K�]���Y��Ȩ�;�B��hH��yc��1�A��NVՉʓ��%�0Q��o��T�\6��*�Z�ɲƭ��Fݱ6{��lX�oU��6��+�2I��.���FJɧ�7b�����b����Ȓ�'vw�.G7e�e��"�d`��`��0��i�������g:8;!�2^������Eا��&�&��=X?U\k$�ߥ���h��	�I�Jj�UE����P��m2~��WEt�_e�i������Шc��N��#f0ZNvJĮƝ�%^�I�qm͘؆�Gٖ�Z)�o����Aג��"�ѶW٘�ɋeO,|�ン6;B���`[��(j.Ȫo��X�ɱ��S��E���r|u�P���o���
�C�X�	��ൔ�4�Xb�l��wU�/6�ռ��1��Fx)(bh�9����K���'��d�2~��A[{=E���(sx!<��JT͏���B�&�q?S�{���Yk'跳�)�i�yf�"��ǎ�2^���&�����"*F|�wB����	�-�&�7oOah�$ͭ��Iτ\��r}���k�({��oV��c������f$���¦��ql��[�5B���O$M���m�P��m��$��d��Aa1@MX�|
�X%��$F��f[�іZ�)�pI�2�	���
����84�$�Y�I�S��)��|�6*]�o�Pd'N
�j�AR�N��~��ɜ��u�+�oV5�&��_5Ց�p�ȧ�t5��2,q��
bo�̏M�4l���IU�x\�m!N4E�	_foVbؠ�����Ѳ
�Pɲ�+��#TF�Ք��f�LSD���|�fo���>����Sx�p�e}�I�s��4���B���0��l���ErBy�Rj�]2s��9g����t��im��,�z�Ӥ���Xd���~��t/M8Md��5��Wx ��Bx�?l�󊪤B��B��\tP�ٿK�p=[��!$Z��KLh�C�rŞ�ڳ|m�^��Bl��<�)�+-��m��S)���87�Bka��C�*���S䬛 ��%�q�䋶E�4Ftl�M�l��'���:�Y.�e"��7�K����7�X�1]��Y��!P�6(P��\��W��>���C�S�9�|ݽ�pj����,�����[d2��	���/7�/�[y���7ڣg�1zk�O�4U��	��G�[��i���E�i�\��JB�ț���E�B^��ɽS���6�IU�첌�o�xcܡ����P-Wq��9n}�<��v-��s�)e��N���Ir���pX�)�A
]�'hީ�p}	�$I��w<
�pEffm\�����yE+�^�P��>ܒ���<��vN��J�C� �ݙ �u�^��O���'9�,M��OF}�lir6��8A�|՗6F����&�X��;��=G��;ik�)䲾,��M�!@�񥲑z^��zbb�2F� ����V�i�ل4�D�wإ�[�pni���d2IE�+7D�3VI<pž��~Ы"M6-�؟$l�#T;we*f�I��%c|o��tn)QYb�q%�6�ȸ;k�K�EI��Si�,�[ˢ]�Om��l}�z��!v���5�ESX$ӄ8�(n6�
�$ �k%I��S�p_�i(%6o��r�F��2_�x6B���l� �\�-/��KekJ����
����-�
\�v#8�c�=���Y��wz3%��7��J�9��
h��'%�]�T�Jo�a�����W�D���;�'k�^E�x����0�!#�$�Kf���\�VƄ);R)dOxF���b�;"�QcD�9�7�D���'
�~�c�ګ�8�}�7��#8�p��t��d�qh�2���bٽ.G
�9�/k� ���S\�sH�ōfbptI��)�n><�غ 9�D�ލ�-ؘ����}UH�";h�ڶ6�w�3���!N&�Lm�Z������
�L�&��A5v�I4�	��h���w�N	#��(N�+��o�3�!
�؟�%xE��0��H��F�|v6,Q.W��$���ȞE�3����"�!�v�.��Q���=OQI�Q��n��q���d���:rڪ�4��E9��Xt�	�%ȧ�2\��OԾȷ�[\ɨ�g�o]��H�/F2�[e.����^z]9�����K��
��%�/G����e��N4�
:b�3��P�Fjo4{0v�An����?��:�Td�z7�bVɧ�T7�b�,Y�A�co}�,�+Ln����U3c�.ȓ�K���'�.Ǒ�أe���5�U��y)遽"�d�3Ԁ���p|3��-A�����)�����!5�k(�8v�/�<�4���sb�)��)�&�F�s^���N2���"�n�u�NV�t'�+��=yև��E�H��e�U�r�y%c�/��k�7	�(hqwL��6ޔ�<���e�d�� ���/��M�{Zy$���}�8��X��ڊ��v�"�vxY7������Oli��_�*�}��Z�#\2hrΰ�����*K�����!(�ղ0�EJ����	�WX�������T8r4�9�4ezV�
p����(M_Cp�J�ş�Rҋ6�՞�)����=;�
��A�2(+罔�ա�#z�)��
�\�8c|2P�ZD��(�V��	O�Z�(&7��9�
|�S�ڥ�x�b��K>���'L]	�G�4��+���~��Z����o�)�����N��|�rJ6��i�
������p$�#yB���N�o����[�H[3�/YEWc��%?�Qz�z�ҰB=Ū)WJ+O:4o��q*��xX��y7��_c���'x&N�C�:Tؐ�(��,I}��KcL�E<D��W��||-#���m]��cۮ�k���%��O��(,j��J~plK�s�h�=��T�/�'pj��$��n��
AYN�=��B
.Y)�xC���7ʍ�b!�����4(*��Z+\֔^Jє��t^���vot�Cѽ(QVn��4�&�B�J�;�d_��$ݢ]��H�y�x3l�
���N���j_B<�E�.�T2�1Қ���E.r6���o��{n�����y�`��� ���]��:�*#��M��r�'�!/c�d�i���>;��1/PC�hp���9���"�����e�ς��z?�iieke[1�E�1�E�7�&�PT�kEl~�苝�D�/Ȓ�B�֑h��ϲ����'�I���8	�EW�E����lb���ھ�
X����ɂ�w�����e�Og���wF�K��EgJ{'�S��I)sD9���!A�)����ݐ���a�䊊I^2���V�r�(+�OS��	�M�l؏�?�Ѱ�e�6*���ZV�ҵƨ�]t�Cy)c�f!���ȳ\����l���2P�
i�^�i�sLi�bvO�ϱO��,�h��6�%���Cj�&�g�~KCƫnzS��]���YM�{i_�Ɩ�#|c8f������c�i\���w�Ƨo��4��҂��m�n�8+h��*M
��⃤Nqs�wZ��O��Y�Fz2QhΙ����oK~��y)�O�h��ܛ�5E[�|
M$lV���b}͒VĤ$�2����J/�c��vE�+[(O�A}�.��E��&8'�a�
�_��6$���$��z�޿�8~4�$.I5VƱ�����y���I���C|9)�cߎ��E��v^5o浭�ZwӒޭ������l��V5Bx+�C���"I�8)2[��T�5���2(^�JD��[+I`�7�.�>֖S]'���m�韧�|K�d����cZ��R�a�kޚ�A�4ʩ��T�բ�e�*%�(-�v�-�ٟ�K�z%%|��
�pλ%��t�Fŭ��Q��
�E5�Qr�Z[�J-kL���4�RօBh��E.�b�4_���T��V��Jf�6�2Jt����	��ѱ�?''|����.�Qf��I���
yC�
�622TT���8	�m��]�}������M�u�q�x�)i�!%z�""ĺ�zV����LZ1��,ঋb��D!˱7�K�n�؟�)N	6�������x�L�`�����X&����MT���cdZ������{�aBj��a�c�gb��Ym�p'F���-�ؒ��E�3��،|^4F�WJ�^���ȞJ-��T���dN-��Z>u�Y
[9銻;AR���X��s���cc\��_	�۫Df�;��*C�]����R�.l����FHN1P�P�7��9yҾ�ėEiE�2YB,�����o�$P�������Zћ-��N���+�fz%,�.ٞ�B2���Z�~J���'w��JY\��pN͟��);�Jx=9�J~�FǽB�6�����h�
��XVd��$�;!x���5g⼲�V:.T(.��Y]-����M�J�S�P��!�0Z����7�t�-�gM�#�4*�7�3�0�W�"��B)8�Yk����o�o���d)���rW&E��]��S�8�
����öF�i
:�R'�:����Cb�����̥�Zo��s}T�[<i�?$[䮦>�-�c�k��?3eh���P�l�}_K�r0��(+�t����IN�f�w�rxy)������п�����M=���J�yzvf����Fi䟠ۇq���>�ec��\ؠ�hl����](��Տ�ɓ����f�_M�>tc_�K��%�`o�6Z,�1�|�^Y/S�
��Z-=(N�eq�T�q��W��{U\��Ía5O�ڒ)�SNǾ��L�>�M6{Zi}*���b���}8�4&5�ՏO�#�ٱ�E�7���.5ƨOF�$1��ej��\���=��25k�
\���p/IT9Ns�dR�$�-[t�	{Se�������o�3��v�	�^?���67eGgR�bJ�	�Y]v�q�Be�kK}h��]6Z��X��)�%Ȑ��.��ر�C��lB����Z�v1�lP[ (-��r�̲��Z,�%Pv�����ԜmW�g)���۰ۤ������Q�c��=i۬�H�0ū�X؄�%1�{)u���J��L��~
Z�W�������ry�zx&_$W$cE2�ƞL����+L
�n�σ{�7��]��uZB���=8GԚ�����v���$��'�������/��3�
��a���Iv҅B}.lPT���k���㦴L�VLj�lc�zQ���<�9}"0�P_c�}m���#�Wq��".��J%v<|t��#g����8(M�pb�Q��u�o�q&��"��F���o\�K���&.�7HPU�YY=V���J跥萗lcM�/�,���Jyx!�WJ�#n�Z؈"��$o��-+KVPċ��qx!}�J��d>�����Q}Y��=/J���PX�s�ê�g�m�/�э+��$�8��PV��:֨Ep=(��E��zy�G��Z$�[������d�,�W���O(rt(*_k��Kl�|7�fρwn�)�Qb+�����뱡�ler$.Ę�%r!�lb�>���^�:���PE-����-|.�c�Fq�M���S���$?(~M�����I

�	%�62����V�\tgH�,m�겎�z!�1���(�-䈻�"+G�"��=+K+El�+?�&����yh��=ɛ�)�izc箖X�Ą-����֗��S�i�����#�)c��Q��'��.��>Ļ���_��K[����i��GmZ��ޛ$�����t����l�;-;2�"�_�_�Z�޾�2w��ds㏊�b�Ɔ49������$���ȵ�cJZg�5�lɓ4���m�"�b�(ξE��J��&��/TW��l�o����C/���~:�C�rDr�b�Ev�&͈o��	���N5H�(�&u��*�v=�Ntɒ��LIP������+���.���QHPV�7��,OW܉�'�&"(���w%>�&d�Uȑ�\�d��d�(Ό���2�e~��ܮ�/D�,}8)u�Ul�ݿ���3���'�o�O�	p6�}��H�<����Nte����ƶYخ�!B��1G��,K��Yx��G7����w-�ѳ�"��L}��l~�K��у=�:��/\��!p.��"����cd�F�7�|T�i}���v�AL��\D�L�Eh�ȡƏ�6G�����䲑z��جkD�c)u�.K�S)��%~��V�/KbX\��_Jh�x�� ĉ>ę�A\
�L�}��"E��Ȩ���4�h�J/F1�6+����o�eiKZ��J/���c�]��%�I�d2ؒ�Zx�G���rĴD|�D�"}���>K�m��PT�U����������L��X�Z1���c�o�x���Ą!���ПS��z"����themes/images/manki-kim-269196-unsplash.jpg000064400000247750151213255670014314 0ustar00���JFIF��C	
	
	

#*%,+)%((.4B8.1?2((:N:?DGJKJ-7QWQHVBIJG��C

""G0(0GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG���8�������<�)Ly��0%a4Y�,�F�xzT	z1o0�)�S�L�y�Zv�Y�� ���Z~�m'L��L��d��5M�e��Mb��f00��P+"
ImHA(�<�&l��ƍх��6g3�̴����C,�s�$�!B��P�Q��C�#�M*"M,�(@	iՖ�ϖ�-�x�:�y��Z��Pf�9����"�hY�y�8�j��y��Aۢ�M��L+��`��A�1���a4Z�4�ڭ�ڴ��Ke�@�	2�5hA���E Y��X�@�ڹLt0n������ZI�W-+B,c��%�,DʪLAAL���|����g
dTkPb��X�Ն��-,�(NK$>�֗��EH�:}�u�I\˕V������Bnk����sLS/(E��+A�BiB�+*Q[-(�����H�� эMgX�Ȅ�U*�Z-M.���� "�.0���g�k
@�L�����`` �(���F��SK(0����0��	���H���թ��il4bA=t4�z�L%"�,����`�(kE�&Q���BlH�b�x����)@	�J�X`�b\R�!a������*#�<�D��3̙�.=P�Rȑ�<�t�t��S (��B�V�Q������L�:sNBΫDZ�6D$5\9^�
L5��(�Bɛ@��,R�E"�3�����)V*��YcT�:[,T,�E��Ie����$�$��"J2�
��^ie
2ɆLX�_#��J��D�̍-]���ѭ��e9�D�U��kY����tѣa�ش/PHZJD%1�F��
QE@�+Z��E��4�� "�V��]BȆZ�4l�IhP���*Xh�8���B��D.b�.�-XC"�刣*aia���̐�EfD��B�!�i�ں4kV�q9��KI��UkjѶ��dj�VJk	�K��Җ�!�Uq*���A)d��^Qh� "�R��(
UY����X
$*��#a�P�U�UPjH������u�鮆�Zgg4�E1�tK�3�&�t�(
Nf1�}Э--���<�h�͵��`i�Ye�Y!Q
(��ĕ�d!2� 
�%)&�H�(�`)Y*��d�V��KB�$R,P�4Z�`pH×���3�v���Q��z)*�Z��2��y̫#4#��0tNY���55�Rj�Ձ��P��kA4"��	ID�‹(�Eml�QQB�ʒ�/V��	d"�%
	VER�B��iT J@T.) � P�)
f,��b:A�3��m�s2-�t�or�ք�Y���U�3�@��#�-��d�T�sm�ܦSf��ÃXA�M*�� K
(���QaE�!D[!e��!
e���%Z��P �����BP ���P8�X�v�dSB�<[����s���nM��ף������1�L��GZnM�F;�]4�;8�E��:h֞�F)��0b�D c��R�!�P$("�QD,�-�Y��QEB�(��PJ(��R5`��B�J��P�!	P��@��Ye��-�����f��9Әqz��o��J���‚�U�{�Z#�S6�3��hֵ.�ܮ�B�
L1�YR�I(�,��QDZHE��VW���B�(��	���P)E���	Z`	Ue��BXEUER�
-%a�M(�r�)י�d�D�oz��oT
�A�XS6
%Wt��:E�
kB�m��ㆩ	QͰI��E�	`$JX��B��@HBk)�$!K
HB@@ ����V�PE����KH�	D!��c��TQE]\q�V�ƏM����,�Zѽ��n5�j�"˲�
L�Z*��{LSS�V�K(V�XD ��QD!!�	�-�BBQE%����%�	^���I���%����
�	I�摔��s�#@R�UB�3�J��U%��SDj�m��j���h�"�RQ(�

�cڤХ�1D��,X%�� �@@ �!�!���B%%(���iE�� aYB�"Q@�Q
))f��[@f�&UZ�h$2�]���y������ߪ撈E�v��ͦ�������� %d�\6�"��ҋ!e�d!���XKi
!D!ke�[/R��@��)�H��!+J!"YXE �	@�b�r�\Ձ.E�,J��-z�������5z�"���ִ5��-��ML�J,"�@A(�� E-$"�QA(���!aP����z@�D�Qd/6�["E�YB�Q
(X �Qd",��	VYJ�0����FiR�R�U�A(��~QUFg��΀wѺ�L��ѷ����h��j��Bԋ,�@!d!@H@�Z!B�(��K�HB�e4 �)�,��ekd!IZ
(r1�B!P�QB�HR�) ( �R’4"�gE��#(f洂&ĭ�z��������Ӷ��J����u�։cDka%�eŭQ!D,�	�KXY@�RZ��!D(�� E�QE �Bo+"�(�L����YD!���B��	@%T*(X��}��R�S���:�fPZ��1�#y*��:��ST3y�&���@��i�,0�"�Ih�H,�(��"�Y
"�)E��)l�!E	,����D��fT�BP	D �@VSK(�!e֋,��A��P)VP���C9Y�w��.Vg4�d;��I��8��m]7��Zu5���F������hE�Bh����!e�V���,�,JXB�,A!YM"ZċD�ȵ��BB�@B�(�	,���P%YeE %��@E�e�{
nS�3���t�y�s����T�������k���Z�V�ѫ�r�E�Yd!e����(���� $��B�(��,��(M!�B�YY���B�- )ZB�,��"B�,"��B�3Z��H
бH�bhMV�0*
��>^|��̑:ܺݦ�ᑦ��ӥ�Қ��r� �,�B�Y`���!Eh�@
  �Bֲ��aA(���@R)Y
!�ȶQd,�)E� �A`�R�	X�eB
 �� �,X%�B�Ye�`Wo�.v9bfjٺ�E��.��CD�\����U��Ye�BYdZ�`�	@A �k�U�QdB�QD ��,���-!YD!.�A'��L�zPJU�JV�%"�a��@E�ZB�`���
�P ��
��兌㚔tj�F�]m�L�t�Ҭ�����B���J $)@��˥��w�XZB�!��!D!
,�h��-)a
8ҥ�h�(Jj�� dAH	D��k�������σ<�[6שK!)uj�4,PSi�0"�a��,"�J�X �QR�
/-�n�ZB�,H�"�IQ�B�AZ,�%Ր�6@�
E�$X��(Qh���!X �$J,"ihE�����ؑKa�>^,Yš
uϪ��,�WK[
*m��� �,� AB�QdJ-`%QER�K�B�KR���J!V�!@��j�.R���I-��"��
,��AB	`��!�!�0��-B��'Q�>��u�um��T]��m���9Ib�"B���RFM���MYE�� #W�D�+�m����[-*X��PsoR�h�A,2��ai�A(��h�SRh��B+@	,�E��YZ(���Ȑ��1fi6���s��]i��ӦY�V�N���iMM<5�	�B�#"ɱw1*PuK!@��A ���uu!P��YD��"�� P5YC	C5�2��"aIjڅ�B(Y@45�B�YIa�- B��BW����-�Wk�#�m�zMMhW.�B�b’����,�!l��d�H�t����X �}M�U�KD�*maz�j�"ڶ`Ċ��r��C(�,�JAԁ@�JB5,���,�J"�%��)(�@(]����kL�Ț;�.��W���Mm�b��E4����XA�"Z�4�g��Ÿ�dž���Z�jj�"�@!5ի�V@Q"3@gP�H@�ֈ@�k6�J $ΗӚ��@Q�X�U�$:�,q2g4��ńd"Q�@,�"�	R�	���6Y�2A�x4�l���Ӛn��H��Ũ�HYe��y�'lr�g6y�=�������z=-�F:�B��T�Z,�k�n|��Y^���K(�A*!"ia�I�Y�r�-aE�1��@E��r���"�h���5RJ)!E!P��`Y
!@%QK�牜.i�d��;s�d�W
.�]/U��ŋh�X��|�5�c�~x�dq��ޮ}9�v�w����}C2 \�Tܴ傑��{�;$]�(0�E��C(�PB����T�]���k0�J)bY�l�B�� cA���s�ь�4RP%"Ā�C��
H+dk�td�F`&to��bn����8�4�X)Ja�0&*C�T���Hf����w�w�׳��f�e�+H�)�,5G=��-J�P5IV�D����,J*�"�%]�����R���P�`��$@��)!��bi&�ܦ�V-X�VA��	E-jx�Z�+YFa�y���n�a̽
�miH�D)�9��ݬP�<��|�.�^�Ӷ���ő�d�	ػPE���67�T�C�Y	y����9�-�+Mx��n�b�R�Dh�yЮ��,��+6j0��(���([�Ůq�Ԯ �ÔE�vR�:[)ެ��eӳ�y�V�bF�kz����j��u3H�sVY`9�<U6Z�wV���g7>9�y�{wn�T��i�-b�$0�ܖ��*r��s`�9]9��q�y���r��n5�Y<�ýY,�e�Q�Su�e�}9���j�8�i��52Ȱ�ZP�"
`9�$��"�*�<tR�i��RPg��{�&Y7뢕jF�t����9���3Z:zut�5�����'� =_��	����S����B�, ���1s�W��#	UE�66f]���6����t�QZ�s�:&�&���DY�Yn�8�/�,��L����P�4z�.�=DZE�ABV��S˳(�].q�
�ɢV��۝
%g��z�&UT�@k+Fk�����������m�����F�隤�MPK$˞J��@tտT�f�^k�����z��M�fW�V� >{q��s%B	R������k�.{3�t1pj�{��B��WE���*\y~]'Ni�+%�&+x�t֪h"F����*j1fY��Y��dLk7cZ�b��x6@��5Mi�:cevz����L�M)OzyvC.3�|_5ltVں���
7{۫B�'<���&_�E#��k9g.7.zu˞{�z�=X��I�]ukt�1�ֵע�7.�a^��9�W��`���}|�n,�\�s��'�K�����[sB3|�7��T����l��TT�f��R�4.΍11���h(P�Ri�۝b�ͼ�^�L�6��%Z	C�&;�lx�F�ˡ��3_^�w��)0cc��g.�n�J�{T�����uH�q��9����E��߿G��}\��.F1�^�W�=
m�L�L����Ba��#<�q��n6��9������R�a�z9���'g[eݞ�w��:)9��W�^>���ce,QW�"bμ�-��a`�(RU�<�����LTdF��) `&pF��!t#
!�P�,�-���|�5�^��7R�z;t7��Fxd�$q�Y���]9�zݽZ-�a���ŇC]�O���g��|H�__M��Uŵ��*u������my�������G?|�M8Ů{��s�;��Y�4��r�Jgl��"��L��{��}m�X���MH!���+R��Z�>��@1�����,i` �]B��R�QJ�!�D�3�<�����Nk��t[���<[��9͞Tjͫ7[�Ӯ��}�L�v��N//}���GwN�3�+�\��WNݹ���U��m;ѭFX�Pӫ=�D��f˪��.�����^=�odם������ɇk�^&�]�ݐ��JZ��8�e߬0;
�PP���F3P`J�J��4h�Rk&nBil�[
ѝb�@��Ar���! �qy��ܽ&����7<�q�t�Z��Ϫ�\������y��z����s�
�]yg�>|ǜ���������3��I�t^��;��M*��6U�2)1�/�����hTi]��flo�����֘���w�1��}���j��vYD*ם�J��7�5mX�
̪	5s$5��
��Ff��aг,T��f;�`�>��̚,thR.t[�y�2�+^սcs�U�<tH��v���靋]�x\�c��ӣ�1H˜q�����Td�]v��ϗ
�Z�Vcm��L��[��7����w�kHB�Ih�$]J�[����3Yˍr1�У�L�i���z�ꌰ
vhW!���D��P��+Y �Ma2�D�M��Pl#N���[��SG.�1��zȧ�燹�MF�|k�9ӱ����v�8ˈL�֙�œ�`I՜�+��C�*$�sXMԙ�ㆍ�|���s;�zs�B�7�ZF�0й1�:ΩvgO[w��+,�!i
X,U�����:�*P��Vٚ\�Ѐpde.�$Fj!�*B�~4V/P�"¡��#Z��DH
��)^^�՛�Xf���T�4��B̫�S�φ���3W�M��'hz/]t��ON�0g��M螛�k|�7c�����j��g˔�U��]��7���̹4��Z��"�uf��k-͂:���z�,����)bR�U�QQ`���e�(KE*H���B��e.h*$�l�.]\s*�K���@j0�eS���K���W�P::V�L��ѩB`h���3��y����!�h�W5�Uh�s�V9h�ѧc=|:����&�XFE��9��yR�oN�]��3Y�2�Yuě9P�Cb�O=�{n]����FZYX�lYVAҦ�KD.[�T�,*�(�Z�ܔP�R�%�#u�9�1k,��j�NW�y�E\�P��u���A�jE�]y��
�Ǵ�Ԅ(@�CG��λ�t�z�M�1��u]T�)�[�CZǙ�UfK���>�kzw�Eݑ0��my3���K�����+C���o-�e���#�׺�f��g�]�e�e�m�O���(�h�o��V\"�B�-�e�3Vu��9DX+
�v�PrIFj}iβ'G#����
ؑ��PB7-�X�J�s�,�lAv6V
%d>�04��4������s����6#w�v�9c�]��n��`�J��'�����u�f���:����Y�;���³�jm��:5/E����s1�vw{�=J���u��Y����Σ;z`�.��d,���
J��e�K��P����$��v
iW�kR��'S�ު�Y�\�qjK���T2l,�Ac�(V�~T������.��˳=���&�o�����V��8�N>7�z����Ms����gn���1��]֝tZe�t�k��Y�˩�tu�67&̓���1�^�34m�2�Z�.�Q��A�P��)[��1���9k�m��*y��8�|���;��T����B�Y�&0u5f�-�n�ͨ�-��s�]���R��\f�ᆁ�:D�TK�*�Qy��6�s���ވ��+t%!������j��/���]����]։�O�-�)Rc��g/9^�Ѳ��T�%٨�Mt�֮�4,��W�zl�@�Y
Y�W�ʊ[��!B��
���T�Yx����٬�p-e�Qa��dw�Q)��#Y\ި�����L`2�Z��Lכ�R�B�-�N�E��t�:B���s
�k*^V�9���5�\�����Ǖ��[�k�;]zJ�	��73�
��0��`�[s}�[�tF����4h9��J�ѩ驠��UKQn���XE��%e�M��
FX��UK�X����R(b��,b��iXb4
����Vv
��d
����^u�V�Qj�
�fyIX�����ik+D-6%"耩�g>1�S|^���V�=F�Z2�i��-��C]19��4�����<��W���6�$�g�kM��hĬ�,�U��5�]�&��D�k>���Q����b�ZѬ���9U���a�;�G�@�>���D˧6�h��mL�,jїY�0�IL�S�X�fu�í"��3X��ƴ�r�����0Q�@�C
���L��eǗ��X�j�|��Y�(ȉ�{��r��-��n�i�kB�f��Ⅼ�5GY����*hl�d'>��ʨ�g�鎎5�k�s�΄�5;�ސ
9����vu��ig�KR�r�&�nmM���;ʡ��Vt�]�t���%q�H�c�TA�Mf&ɧ��5�Y�vX2� ¨�6vsX��h̖EB%��d�6=�39ͫ+@��6�hf����{�ԹǞyة��?�2h�FZQԡ�U�L��*�)�(��u�%�#.�+Y�.���Y���zN{i@�
�F�R;Q�G��ʚe+sI�y]:4R����ٍ���w���򆣳�	ԒB��L�kS�����*�*� !D(�d�$�bE�H�4ћ�R+`R��e�E��f�fh=[�r���S�����@�|�a�=�%\j��j�r �(��U�k���9R��I����q�t�
�e�b׀��T����9�+�Zq�ٛ�\���vs֝E2�WY�Y�
��K��~j�T��ntH�z�.{���2Ɗ���`�����Y`�iY+MB�d�uH�Mr��D�͸Z���ytt���9��WK�5�ҭ+Q2����y��J�%mu�y^�H;"ÛgBZ,��"ʅ�A�b�ugVS&���f$Y�VXږ��6���g��[��7]aDK�kQ��Er�ƙIԤ!��p�N�![�!�I���^0�/i4J�F	LвP�����n���4H�����J
Y��",
��ta�A��Df�Lʵ��ni�ȹd:�η�Y��aӑ��K9����, �2��I�ы�
+!�}g4�Q-s!
R�l�b��t�q��Y�\�5eͫu�i��Y�����r�c$��k(�.�	{9w	8�4�E�I�њ�f�s�6Vv�
Q�
�~��ƫ��A@��ir�KΙ��(ЩM2��YE�
�mb�:R�΀F5h�ej�{<͗"��h�������2Utf��,"f����<d�f֣�sj�:6(�˭:FQ�7��u%ft�eˣPNq�%�J๨�DMR�ܩ*���2\�!Ԁ��f�k�sF���E�u�r��֩2��XE�^����B��$�(4PJ�L��2 �#5�j���.�2��Dh��ܬ
1�2$�_K�5�@��扠+*҆sϳ�.mg���\��6�3�
6h\Q��L6�Yr�Ue9CF��ғ8R��٧4�������ф��~��cm�*���UC��s�b�0�ʲcx�����֚�3f�4��f��
�d���P3Sb�$�k�(�� �M����ҖD���K.��2�^l(�U��Z�,��SP����]I�\�2.Q,�	rs�����%�.],�\k�F��9.�MY�E��k5)3��I��'J�jf���l�:�Ќ�jZe�U+w+Z��b�TCDr�3M�)4K�=g
�����R��˳��s��':�?Y�V&L�c����X�,.�&�-l��.W&q��0vj]Y���E�Jh�;�*�K�6��jh���1t�q�Q4Do�:*Y���o���f�nl�3�Ɖ3Z�mK���Q%f�
�g���Y��Yl���DSW�I�7A��\aj p�h��1Y������˚����Smhj,V4�d�U�
I4Y��Ŵ�� ˇY]�Q�nv�Ru�Q�t�t3�
R"RY\�A�nq�ʤE:^�h�"�0E��R,ۛɭ�h��RLjM�fE�D�D3GBjX�T�����nѦ*K �>簺��*��h�Q�,l��j+7u�n�e]:3S��*�IPn��$��Z�.��CSUi3f�+���3�2k$[�ƞ�i���X�
�D�.�4�4b�eX,;Gil�Fέ�1���F6�c�9�`#J+L�#yэbӳ�s~��ή�s�	sjl�l�Q���&�D#5� 嚕�s�n��V��:if�7cgeP�g�##M�)BPc��
�L(Ԉ�KĹ�z�oMy�є�^mf�ڹIf-M�����˩��D;E]H04��۲��tt�GC�F�q#���K:(@�7C�d	Z�ͭ��s�c���C�Wf���%��f3�՚y���˗.�nt1[W.y��P������c��Ý��E��`B�FdR ��J��J�I%�\�������ʃ�Y��*�L���.fq���EjgΚm�(\���ñr�*b.�gI���D�w�GY�K��R��8�x*i�C:�T-
�^������X�0�u1���
�uMMg$�,��1!�y�:W5��ƺ^Xj���Mtb=,�nn��ơ��f�WX��%$���Zd#�Ǧ9:
*D�b�\�\�k�n�DW�sˉceT�H\�v3�…J�Ѳ4�sk�⨒�}K
��S��ƚm�uY���s@�Y�5�@J�غ�Lg�gN�tW.Cι�:X�G7y�.��S5��N��^<n�3����ĕV`ӳ��:��nU����G��u4�I{y��ˆ��n�,���ef�yVj���le��[�M�/Y��=4|��6b�����JVU��'5�zk?.�Z�F�5HD�԰@PA΂���٤A� �Mz���e�*<���v[�m4փ.mX��-�0�+sth(乹s+	��n��R3:ì��5��*ښQf�ef7f�EZ��\�e��|��ͱU�i)�$�Qb�Y.�vF}C��ز��F� {��f�3˰m�\�sT�eͨp��ŢQ`�>]��)v�ȅ,��+
�k(���Ŭ�4�c�ǵXvR�����GCy
O����d�)VHإR���K�.�T9���g�lڅ5,�.[2S}���NDi��@�D�c�#�f0Y+�s�`�4go@�6��t��FMj�躕�4nx�LI��Ape�g(��a�R��\��d�>�.ze��Җse�z=gf�*�Fl�-P��R!L�|� j�2��ñ�hA��|6���JV!��,x�X�Qd+;ˬm;�c3HZ<�VHU�#�,Tk5]�}�5ٝW.�MR t��:s���ټ3S<f��j �����aJH�!�\hy�M���3����2����d����h�Ӽg�Ѫ��jb��s̮d�����T��<$]���a�e��d!E���UR��4��K;Bo�s��7YΕ�ȗ�+�b�v�gJM�zR�+�%�0��1��-Η�U�߬Ir��r˕{��8�u��Y�tf�%�ΈE��:�:��fc��l�\p�Fk,�,G�PD��a�^�.�E�:��2�&�+5��@�T���Mc�ۜ�f�}�Ţ��%���
)DZAvBD�Hh�j��KחkW!��cJ�R��5׹��]3��Լ�s�b����.jW���&4K�YӨy��4
�,�U���0H|�/Y�JvhP��b��ʬѸV��Mk�:T�ѧ$b�"M�{�]e�ia�(����L�cN�\.Ř!��=�eSL����&~�$�*3pV,ޞ��MQ�:�TY��n��UB�X���]j����b��#nQE����FC�V4������L��5LmZo@�Ԅ��U�%����v�k:�`f��GBWք��;(,t(M�k.^�Z���y��J�L�LL���f<n��2�̃+<�-CY^�ꛬkrWBv��fS�(�����c��M�1�Qbř�J�H���:�8P:UX��j粇d*�S��JVi�9&�4ּ��6���OQ	�Z9�Е2��5Y�Ӛ�:�*,)[&n�Viغ|U�-�NB�κ�gi�Ώ:)Q����I�u�^���m�M��dk�FU�Xiy�q�8Xے��!��ٖ��V�ʸ�W)ƭcT�UȉN�cE�e�gC5k�3��sT�Z
fd:�gD/BʫLg��QE	���h����&�Yu!F�š��x���[�I`�eJ��$�2Q���q�1��v �@���v˂9+ҭRvk}ͫzs�ǰ��)�t3_Ӛ1ҎD4ֲ]���d�u34���٩@�L.V"�ǝj��tr����(�ji,3C5Y������+bXy�ZM
)����0YU+D�6�RE��a	��Q�
��=�%6*ć�����}Vm�V�9V�DM�X�3�L�������/��4��ˠ�&�V����[#=l�Z�o:� �TK<��΄u��$�+nmio4l�"7J�Q�f�㟣�d�f�.Ů��4	z6!P��MH^��YGa�4�A�q�����d�"B:Ѐ��4�z��.Q=ey��"\&�ClZ���:Tf��k:�>���-U��U�.zy�Yi
�ko:��>�5њu{C@g<��)&ZD��)eg����+��t�J�VD�=)yCӠ.W؅�1J�B�Y�9F�h\��%��)N���9���n�Ⱥ�ң�T�-Rb����1���3R$(�/&�a�vC�0tij�$�f[4J��UJ�kX��<��sY����h�5`nVs��e�ofn��x֓f�9Ҍ�]�&�UBL���l�Y�^��$ZlR��t.|�����+�ٞ��kEˎ��,�;f	����y�5���ؙ��2��ޚ4h"qQPRFY[�*�rM�IͱȽ[̱`Q�R!tY��ه�.UjPSQ��iy�K����%\
�ɚ�0��P�Rg�&�BLZ�K�*�e��ɪ
R2	��8��MV75R����ݹ�35c�2B�t���ܛ��U�ʑ���]��
VD�M>�cTE���U��^����c�,�$W�0���`���+
R"P��L��DԸ�0˨6g�S�ϭK�ݩ3t܅�r�Ll�SU��%2�6G"h����F[�Z�I����N[��Ë� X� ��QjL+���*#�A�yl*hu����`�AV��Z����v���ȯ�T��2�\2���T1D�z��Ҩ6�8��5T�[����Ѭ�iU.�ޠ(��Wnx4u�wι�ŨY�iZ�KT��Wcˣ��4,�]��+&��ιr��ʅ��:靉� �i��kx�Y����,|�[�m"n��.]V&W�:�MP�۰/|�=)M9��M^E�2�ɥ䕴` d���s�$�,�שY����de搊X^��OY^t�}����fz��5	�M�f]9������\�ŕe-ˠΚ�ֈ���$9MR�5�6`����y��ƶ�=HhT�HAg>8�K2J��V2�vwH�P:5��N��I�tXfyEl�sh�E暚@(�,��8�m�v--]�FY��٬2������(լ�Έ��5̷Ru3r�i3e2�Z�r˨��.O)-qʹZR��U�
d�Z�=�(MѠ����4�C�,C�eT��\�b���ߖ�КE��g��J3��&�8e�
���<�v�#٬�2iz̀���;S4I�R���\�����˯ybtz�q����QY��k9�C�D3���Y�Ԥ��� M�Լ�zΥnhKv.2�/YE<��R����f�+"ע .��q��:�>���IZ̥�(�l M,�.]�.íGb�j�#��|�l:�
�,t5�����M��.8�A�I]��b"\���%[�aQuY�:��u�[/Q@�K�Z;G2cO�jL�V�\kU�+7��]������E�*�c%\MK��.]L�/VNv��JM�Y��MDfޢ�z��R,A�	TmB.+X>���2���!uγNkC��S��5�A\�1�A�]Q�Ys[�AB5�%9z�Π`(B��H�e��ˣhZ5��L�J�;���3Jv�6���
nBd��J�b���3����7.
R0#$�5jLk0�@�9��P�Pcf}�lI[�����N��J�F����
Vȱ��v%v�+$+R����Yc!�9��.[�}��,�Mm��,\�.V��+5�l��##,�r�:��(z��[ İ&hyQ�kU�$۬�˖��X�deU��myӬӨ�P�2�J�P�_�2��B����n�Ǎ�˛�7f��nvT���L��s�+:V���Tf���k�P��@ӚclP�sUK�Y�Eg���u�4�tP�.�	K��>���+�P���n;V�f����J&]��U�D�7ϳ�n���i5� 2��-/5�B��������ƌ����4:�/+ո��A��
��<�,$Nt�2C�!�X��U�ՙ�tِT���c�U���f��43�R�s�.Ƭ���v���3FUL�@j�3Y�\�sj�4S<�uk{`7�g�k�3�:�����,��%)`��Q�쬰�5+�ӧwXfu�S6CG`�v�L��Q��Vk8�Pi�Ӛ��<��g\˰xܐ;ST�����;�f�KV	�r�Q��BԼ�!A.h^�L��̓ҲϨZ��g��2�cnb�u�96i�\ґ��vzF_�9��1Gi��niv9(�*u��yЦe��>�y���RٺV}���DPE-Jr��!M
�%qa�=L�L�.�YD�:t�;3K�R�ɚ�_�ɬ�a�5�� u��L4ɝi���k4��3†�V�Y)n��� ˦��̅�s�ڃ��h�b�E1S65f�]�n���S5��t�����횚l�gX��m�%�T��Zb����Y�5/6�1�#<�r���r��# 0@P���*��:$��J�A�9���ЈQ��.[1b��F,��m��d���:�1�u�]q��L�r��i���YX6~L0�0�0���f4�+�rKt"�@��Ʀ�^�,X=eYX6�Y��g9C�4�]u�]u�1�c�w�Knlk
�˗-� �ʐs3ل��`�;�&z`1�22�?$�"��馁(k�rX���
�ְ�Y9�9�"c�1��t~3��˵��%�f�++t;''�;�l��z�cƺ��Yu�c�U
Mi��uԈa����]u��Ђ�b�,w�{�D��va�`t ���'��ccc>�1��ke`�1�`A,X0!��0�bf0�i�M5�]u�P������z�\A�]@|��1���>�����+P@�pa�F2���w�I,Nŝٌ@�
T.���O1_��B�
c�&1�q�+���T��뮡u���A�1�|fv
�A�w��ֵ��||��Ab��j(��+m��$�rʼn= (U
1��i��馡@���{�1�cc�]uԩ]u�M5�. ��� ��L��9{5�jJ�+	��05��
<h\0m�,Ib�1��5��1�A�1����1��c���cx��0�O@�;�KPI�a���o9���bę�c,|�u���c�#w�k����1��c��#�`�S��Y�>GBX���Z�6&a�5�(U؋����?x�0&?� �1�`uR�(���)�n�5����1b�0�P�t�P�q1�Lw�bc�c���u�?�1�|���V��ϲ�3����R0a�p�C�P@�\c`�/9�m���1�1�bchA�Z�����"���@�u�1*WUFUT(A�_���9�y�C���9�#����1��hU���s���#,A�c�\cR�i�5��j��9�9��s�1�� �D��CG���/=@TPz1b�J�]q�tЦ�	�1����}	���X��P?�`�Ə���^^m]��DrND� �#��1���c���������̈>1���L@&1�I` ����Mu*��B���2���:�1�LLc�c�11�A���`��;?�s���S�`��̈́ �`v~�Y6���"ċX�w�c�1�c��1��z??�s��H ̻������I��e�2�"��bc�?�x��9��?f$��R�&H���{lf�U0�
�`���<L�<�Ŏ���=�c�k�a�S+�ф{Y����TU�p�`���͜���p?�1��"�S�bs�f{�*�\XP��;������G�c��L3)[=7�$�c��s3
�A���c�G�c�$� �9���B��fs����a�cMk�^�0@Au��q���~/���_�������~_�/���_�7����{=�B	�~���$�``��w��5�	� �)���C��gm��s�s���9�9�m��m���a�ƺ�tf`�����F���6-�2�3@��wg9�s��v�?�v�ffs�s�W�@1�1�``���` �&5=�	-���E���c���=�3��9�g9�s�������!����w��{=;ta�C#��ш�"A2�b�c��?����9���s3����s3��C�L|��1�0G�1���=, �ъe���bĂŃ�c�zR�s�Gy��|�fdt�F��:3�1��قd���kH��@�(@��"c�w��vI���s���:�fU��s��a;&1��LcF>L
�&	�a갨�P1���C���y�r��z3=�C�����"c ��$���bc��a��$, �TT��PY�~��a��Xr�G����=g!�ls��f`������Ŷ�0��!���@�0�fL��c�����vc�z
ԽU"/k��?J�dz��{o�Z��"XO/�O���P������,6zz�~��y���<���+�{�f1��A�&1���X���R>	�rIm���Z\O<��afz|�&: ,!�2ԔJ��`tc�����Kk�m��m��E���k�8ҡ�`F��@�>4�U��ر9$�a�ŀ�&l�@�(�P3$�R>s���=+�3�s���br��=5�ƺ�M0Zn������l�]q��Z�!i��l�l�{#�0��#u�lIl�3q��
W��U�
`�z �{0L`t���lL#�8�Ԛ<�M���5\�X	�EI]Ahu�]
�|�S�(r�	r���e ���؋�X�#�}��?��R���H���^ܟЖ	�|�`=	�9��Lc\c�8SY���ɸ�]�C��'箑�Ѹ��H�W�
�iϙ&aAl��-�`�g0��*"M`� A�Ra9����K!UFYqlJb�hd�V0�kMm�!�;�NBc]uՃ����k'���Xs���G�k����9�F���0�Ea3*ńŐ2�$���Y]4�qh�"Q�1�Dx~5Ԅ�(^����bF5��X�ɑg�ƌ���ecW`�I�����?�0�?���V��p����R�M�Wƫ�_>n`tcNT��+�S_���`�^�|4B�,,a��Z�|&X��+�P佋bخs/$U�b��S!��osw�����SEu��¶���!xPV����_2�M��8c���QZq���)���у�-{�A�=6�B	�0B��C��0�+@�
�X�����5L�XZ����96<f�1�"��v-��[�qVk��ڬ"�,��ez���A'�&w<Q��(��"q�k��H�:ca��4)�L	c1�\9[p�Ҳa�Bv� X&`�{��#@l���-*����т`TR�μ������ګ*�JC,�k���Bقc]uבEu���#�Q�Y/T�,1��;'���	c���S��� ��kZ��	Ș�ơm�t�d�jJ�hˏ? ���1��U1���EOƷ{eղ�����"L��$�/B�@75}%�?-���b9|ym�5�`#|4�2�}��rͶ�Ş"*cu��X�ԭ�[կ6+�0:�������)��,��Z�aucV�%z[=+�8i�LX-CW糏A6?!�v�V�*�=���6����`�����E�����oB��@A�>��䙁"aO���g���j�Xo@�40OCx�U0(E�)���b���Z����/Y���e�%��-H�T
��5���j���'�q���9�v��m�#�<�x!��!�k�_=UJ�ͺ�
��+ekR��q`���d��4h���U��2��*�]���Қ��n֪�dP���5�Zq֭u�V�;<@��@��������������0���&`���Lx�T@D���&&����"�T�$���$�%X�Z��L�2���(��	���n�k����S��iZr����#A2ꃌT������ ��u`���p��J ��#đBo�r`X:01`,$�﷦�(�b�(0ƆaQ��z/KR67�*�%��ނʘ@�V�.{{w������[ef�nZ��P�8�!�˗��1�ɲ�U�Y�jg�i���LfИYZ�Q���ullaR�BIQ7΢��BE���%a3m٢���-����M ���n�5oB��J�����"�VZ�2�����#QJ���{�mu�� L
޿?7R�f��p�PL�p
GJ��;A���4U��L*��5n��V�i];[�kq�u�*ă�k�-�Q���R�7-���H�aNBsG,^Q�2��JV�k���m��OOOO@���	5���FIVX�R+h����b�85�Kw{�mtc�dI�(,��".��L��+j��r��S�*�\׻�I1�J�ԉt��V��n1�5����	�\^ʩ�sU�澻3���s��m踾�k�����a��J�fe�D�dG*���)��`��Τ4���9n���+�
�E����Ui
�cZ�������e���U�s�N<��^�1�)VB_%J�X�z��ܶ�����6%���
������KB��0�}��!U�,sd�fz�
�]��
B4	�SXE���7E���k��@+�xߜV�E`T�j�k,��FV�Q*�-�.nC塂W�)2��sє�]J���ӇX�O;���j\�>-�ƎՏ=5���%�Ƞ��39*�J��C�*�T˃Y]T4+��d`�7��]@�6T��V�نa ��1�kZ	�RB�5ص__+�s��<Q��(FCIei��=d������9s�87s�!�ff�I�4u}��83d�.L6+��ή�3�lJ�4P�:,ʩ�z3B�U0����#�,,]EB�Z�SDj����� ��EM<�P�X�X�V	�x�
`��$s������̧�D�<�+R8��
�{�e��h�}p��L
cL��AV�G�j�"������2 tz-��d.5jEB���D������c%f�"���V+�Y�C3�㔜n>��`��VA�= ����45�Eh�
\�xՙcԥD�D���2��0ŭF�),�bT"`��u��Ѐ�S�aFX
"�X���k��8��W]
kP�lSMDT�p~��&~�4v`�ɳ�5*�G��sa�a�
NjM-<�Qc@�8C���	aY�5Ԓ�}J�EP��5�+�%p�h �� V�2�)��u\�x�TY
(L�aZ�S��i�-��b�\c�}��>R3�_ca�]Ś�	�l5�f7$M�˪��2�G�˥G9٣8��X k^�x`�
�+6��d�uB�!B#X�0�z�k��*�)2�M�t�+y?8��0�粚��ܟ�(hM.a�`C+�R��	Gtb��;��⌙��М�\�e|�
�U
,��=�l��[\��
Q
2��,�2��l�L"��\1�J��B���1a�)غ���F�e��uM@x�"�������@����J�a)`�,,�%|�&h����æUqdX�2`z%�i1E�5�m��Q+m5�Lcm����Hȫ.ˁYS�;�!C�V�Yul�{"�в=���]j_�67�m5��з�c@�4��F0�@!���qw��!b��k�_�Wo�-fk��0���e�!ٗAЄ�^i]u�b�!]5!`x�k%�b)`@�ҹ`1B���4a�\�-ye���[*Z^���֑e)Id
����`|�偔�dG�R�����8*A�j�ּ��a�3@]�*�� �!wx����&	��еsU@(m�0��!a&o�ӨX6�mUl�e�MJ%!YT�՗q?=|�\�y��\?B�ͣ2Y��f�c�=��sZ96[U����=��	�b<n��"�`u�^����{�V!���s[��]�3\yUV��ˁ�z�fa�db\,�l���k��M��j֭U����g���1�J����]U�jr遦>M�����^O�^P=g����Mk��!�o��kk��P�t�V��.�'E�W���k�(u��Z&��BZg���db���q�Xb�����ތ[^����n�OMݍ��8
j�5fq�=��.Yz^�#;�s�rt�����*G�T�s�0h�S}�]ûG�y�I�VmSRTC%s,ԋ WKEQJf��Ca�-�$�k�?��i�����el�%�58{h�-��ӗɡ.5_t��i&�,���5�Xn�y�4ܐ��r*Y]T��f`Ҷ���F-b�y��Q)j
I+;�nxU@ep���sev�G��έ��Ѡ����/����k��/j�G���-��9��oޚ�,�nܒh�M<K믍�QR!��Z�q�ZV����\�_m��+М|%��^��8��-�~:��b�ٟ��`U��
"�n�m��XZ���UQ��}Z�ބ**�q4��)�]^n+p/��l'%y��*�d�A�2Gi��3�K��.��m2��
�N��Vʐ#�=z5�I���{?��ŋg��=���	��-��b�K��9"��VDET�Ev��`6��P��1as���)h���T�+7�jB�(���2+V�
U�#j[���W��"OR����uk�jh~uq��R�?�����,
��7�1xaBk�Ez��I���,�?�m�'�Hj��+�Quh����ZjՑ���^�˕��ص֌�*$�m��O�JT����o!D+g�V"�`VE��Y�az�T��(!WDd��ʾ�ʵ���S��k��kg�F��W���i���k5��A��6��1�����`(]qs%O�ah%�TB��`)�%�
�_U��F�M�8�mɾ���rA=j��m��o	Q�tWE��r�c*��q���ZB֘IyKQ�����KU,��Dں������+R������o��������i�o��O��o�<��y߻����������������-L��0*�J�v6�kQU�G�R�)��4z�"�r��Ŋ�K]��Jh5�hz֪]^�8�\KZ�a[�,�
����YMmǰ���MP4.Ҏ/�YK-�n�K�AX6�Ei�t��=��q����[��p����/�^7�#G��B��J�T���AH���Ιw[���]͡����N�^�-e��H�&*�-���5��nz�{�T
]j����h���3YKX%K�ջ�#�Ɩ�-�K��ch�-90�sn��,�$rl�����_=/h��
V��жv��!��$���
2y
�I�~O�?:�A[T�hk5��G�\���k�-�
�a�dzJ�Zߤ8��q*�ҬjO��+d!��2���f�X]VTm�Q�j6��'꫕�ű�k���O�;W0MR�ێ��GyS5fh��^����S��5��@+!��+n*U�j�XU��T5���u7Si�ڌ�rD�6W�nK�6��L��,�T�+�T(�zڕ]m�3jUpj��(�-g�5�Y\X��oCU q�V�����j֚x�i@��x�/�^�=�:jd��.^�讔܊���Y�J�k�`F�TګZ.�HS�\x:�O�+�zWd6R+3ȱ������
ʢ@�Q)�	BZ%X=x��^Ǣ��@�/�%�r%�~8�����5
���
m2��V���4�-���^�T��fK:�X�e�n2SZ�`�n��k8~7�)�5A^-T�
b�$RT+
p �4uK"S�w��u��^��,�#;��N���[+yX^z-C�T~G'��|���.��h�Y��[kL��z��)uI��;�P
hr�,���Ȳۖ�.���Ǧ��BÍU^�P��rX��"V
lnK3+R�(��k�$�F�ƈ��m�y�S������ew�֙��VZ"�����j�;,���{=�,���[O5�p��M�]LE��[�t#)��&�B�j�hb��Rm�]b��(��E�кj�V�W�PC~��*�q+Eg.�VdO=,��B��`U��Z��	�Un%�`�B
h��GG�b�ʺ���T��j�-_���Ҭ�� _g)9/~"�4�j�V��3dRX�[��%�����xV���VTؗ$+�J��Q`�3+,�of�~jΨk�#3O$�y�����So6�\�HUfPW�Y���Ǝ�؍��;�8�Qtc�Q��}Lʮ�'���<c���'��I��M��+b8�3��q�	�X�^)���c�*�2q��VtI��ڬ5

ISY���M��er��@i[YRl[U��ka�06����8�Zަ�S�]ة�.1l~%|m�z��.{�R򮺢��,����?�����/+Z<#�����`q����L����͌�j�xYT�&�Ymw�Lu
�Ta
F�`�
�R
H=񻐼�s]jV��\kxeQ�Ld��f̶]S���[x�é�x	�c1���R��%���_�IO��֗��Y
�l+���Z�6�;���,&�k	戕ǨJ�!���l䚤��:T��D��ze�M� 0[��B`�zҽ](6ٽ�X��%�!a��iiS�U�#�,k0X��+����w�����8�Ҥ��@
�%w?�����U��KC�0�ִj�k��M��@ut����L�¨h_+^5eF3cd1a�����V+�U�Q�sk%��O%��c1,�b@K�V�+ʝX�5b�3u�l��J�DI��+V��u0�&ԸV��bر�Yk�0� j�԰��1�.���S�u�kke� �*�S2�%�zyZ�S47��l�U�3Q�1!S�!l�+��i鮶�����q�[g���+�ul�h��NS�ʔ��"�_1ZU��8D�L�T�D�ȊK5�EЎ���Ue�T��
�Bpg�u���9
��Xh�� e�nϞ�`"�-�̑��%��T*
��Rŧ�t�WuWr�r"�
LD0�l�=��{��%b�z�p��Mu�jEG�cMu��ضCeNIX%�+w+��CZɤ.�����L�P�0�k��Ѣ�E�1m�r�A譫Co\������V5 j�"ʍ�O�]W厕�²���U%�.+�6kEU :YL �|��$5��X�#
ڲ�����I�HO�X�@lK�o��u=VH�G�q��`Kjf��]tz,�.��K0+UA
K[���c�fDSck�� ��u��u�鈕���ڐ�%��mVjv�Uz�,F�B����}iCKZ�L,�t�
�["!��M��˖����D���B{E�^�閱9��#
���_׍�[����E��u,jrB�r�{���[)j��]�[�7X���-%���˲�	�Z��h�o�l��]���̤Z<������+���:еL|��2\�c��)����l�g�0���ų�XzRV�K��:1��>���]vzz0��q�Y�,0B���@���z��8� Ұ
4�a2��
Ā ���u.���0YK�A!�>��E}�O�sf`Q5*��L)e�h��K��U9�ӭh�X�^����`�H�Z`T�l�QP*�.%W���*Pl-�WFH�	��r��§h�4U.�L`J�Vc[�͈��+�!]�G-���}�`�P�X���G!1A"Qa #2q��0BR$3@PSb����`r�c�Cs��4��DTp��?�fnG�|~�?lxaO����<O�h�O��'?���s�_*~���S�JkJ'������?ꌢQ>��Q�x�8G�ԢO������f��o'�k
}�(�J���A
��p(��(���S�D�x�������*~�q�>���?�3��>Т�(�Ǣ�J?e����O�xG��?m�I�
՘P}���q�������'�?�8㕟��g�?��8�*O)S����ㄩ�A�[B���@D����ǯ��j�N�mG�?�}��U�S�/�����~�����?D�����ܩ~'*]\��Q�/���_UK��������w�eK��Q�T{�2��2��U�U�J��?�����~骏~�EN1?�r�!�ba�"3���5�NӌϬ���֧�~�"N�~��?�q��?���mm�>�ٟI�_�N��1�xg�e{_����8s��J�B���fG�gy�Kc��������*��(o���i��Q���<!1�!�Q������+<g��.xX�h�K�xcџT���	�ag�x�Y����,��
R���o
x�:�:�PB�X�okHmr�>���X�=p�4�Y?h~�J���)ᅅ��`"OP�tEWu�Q�E�Q���ZXz@�)��ީ�Sz���&ƅvXC�M�A4�x!:��p��`��(�� ������G��{���0��~��P�Z
�!B����}��8J4@�r,���g�0|P���h��'�"�uO��U�J��*��*��*��)���ї��E�C��u)�JwR���wR���wR���=O�����!t�����E8�y��G(PV<q��cԵg�p�\p�_5w�g��G���D�r�2�n�yt���N�y�lb2z+�Tyw �&T�J�@���I�)�ps�KȘ
�at�jU'�Ӟ�G��{�>���O����<!I�:(?�b���>���މDl����	��U�,��L�0��[�h���>�
�CB�M��W���\#�!^�C�c�;�*���e��vNm�,-�&wW���t�k`i������E6�=��}��1�)�\ 7C���<�p���(��+�V���z�DpmgN� �U?�\���pGR�h��꧇����m�ߢ���+y��׀}v�.<��Ge�c�q��ࡡg���}��=2�AEP��(�q��Q�<B���:���1���as��VT�������P��ְ��U���G�2�.�d �K�h�W���>p�2��LN�^�D*09�A^� �Lh�;��Nh�/~^���S�>YӲ�A��d��T��=�p9�p����
*�<%J�����*Wd�*=3�xeG���������(*}8@	B@�(X\ˑD�(<%O�����v��j2�ڕ���e�s)����~Q⼨?�+Ö�|וT�:g�.��+��C�U6Rh�9@ <MC\Ks�����o �Gp���C��T�hT?+l��%x?�-������S��q���x�!�q��P�TӺ�#�A0҉$�� 8J�ǣ	Ȅa�\V8aeKPPV8@N�c�u�ҿ3f5�w@(Dz-a�
��s�4�M�T���tU˼��:��uh��sS�����h&��ā*�7�e~h���H�H���Q"7���gH��#��9�� �z��ԮwgR��XQ�xB#���%�g�=S��X�;�(�x�dA�!B��!EA��(R�����B#�8ec�#�E����xt�!xw:`��U*"�@��)�Zr�Lcmd+����'\�Өꍙv�i9M{_�T��xy#�%R�e��AT#�?T���aI^��AQ�FP�g�+1�q�T}��.d
���
[�"B ��)�*=1�¥H@�s)+ .b�*B��<2���=�?X�D:*o���&,�5�5���n(y�
R��*M��I�wXN/�#��89�6�c!��աI��iӇ�d���B�����=��S�a>���G����V�aF}y�	EB��Xᅔ8!8Fp�#(���((��B�W9*T,)��C�ETxv�����6\�h��鰴
I(S}K��K�{2�:"(�\aU�c̐2��IF��ԁ��k�`�'#�Ҫo�4ΐ������;N8��>(��?�G�J�8��Ϣ\�� ��I�*S�� �eB��B��5tW,p%vXQ� �S� 8QS�,�W"�J��)R�p/b߇���&�9�C'N_����L(Y�(�(���@���Y�aB*Q+
��uB,���B2�E�%g��FT ��B�D9J>��(B�.HG��#�(�J��p��,,p�°�f��zɅ[�m�e[�m�e[�m�e_�M�u[�M�u[�M�u_�C��o��Us�����E
��`=����AGE��B�+(���2��
O�#���B
J�Gd���x�"T��="��B~������k�B��*J(��[�)��0��?XT��)���2>���b���S?����'�1C��e��*7�
PA;��5S��	C��r�p�T��(Tp P@, �<0�>��@�
 �q<%
�#��Յ
\��*J�J; �"8\Q,D��%aVW�g�g�x6�e�����1)��<�0�}���T��Z�*��^.TD�Pa�&��x%6��tMq6�cT��H�$�6BH�?À��pƹMp��G�$�<q�*8g�}1���)<%%Tz�� ��G�Qb+J�D�(�J��ʄB%�z�z��T�8��;}�}z4�`�2����.s�@��U���R�H�!k�ŠdF�6���*0��A�=���m/2|��k��^S-���6�����y�9�x��72#(Yĉs�	A�.�?�M/����O�����.A���OVP�{g�?`J��q�(G���B%@SďQ����2�¸(P�c����uD����E\uP8g�A�)�wd!8G+��SBa%a��K���IP8ㇱj…p��(��gDȔ:vMq��OX@� H�� 4*�t�m�&�`')�����w_VuA5�Q%K�z�@D�ʀ�Dn�E��g��@!��8eP�
lz!�G	XQ�<aJ�2��B��D��0-�Nv�QG�*�!�N���B-+0�uN	�:��PU� �AÄq�(��H '٘RQ�EQF��D���
��O�*��w��ܽ�T�/�u?�c�u>���O�_�����Eկ�,�`�ꇈ�/Ѣkh�AOAag����Q���T�(B�xV%eO��Rx�*��aP�!J�"�<P�L��Љ|�BO�,z#�PTpR�8h��9XPT�_���#!Axv�����tBpk͘i�A��p!� ��[8��D7��uU��I!m+�� #�%g�XFx����
 0�Vh�*xOP��c�X�<	(�+���?�pB�
Ѫ.��P8����bʕ
}A4�@�Q�4[�p<J(�eI���������E;d��ƨ�G�%�|@����W�?�Ur`7��R��(CՅ�P�+
B��(���>��!@�>�D(���P��VxA\��P@ '�%P�YP�8�Zy׀
O�8�R5YXY�{&�n�u�w]�YPO�c��P�R���&-*�/��6E�"S)��@P��҄2��9��[�i`�{�>/Č�J�+Vs�)�9�	�`p"SS�Sz!�O��de!�!~�V/wǁ�0��)���C��*8D����*8Bz(<g<`"�>�Tl���p�!��%8�Q;(�xc�QFr�lza����[?���<#��?�W�S��03�S�|/į�j����L���_�6>�n#��^$����>8����=������us�Q�g�,#9S���� ��	ģ$�eaG�(�"�*T,��>�(B�0xㄕ���1���S���PW.��FS��D@D�
}��T��HN�{1���V+��2eG����k<�S��xo�?�U�jch�ph�Uw���(�T'$�#��?ƿ7g�G���p�ތ���XWמ�8\2�XF�4E9�Q�:d'��"QM(h�'4�FPz�PQ�xAAB����>��c�xG�B#PU��q��z#d�+J��&�eS�1�Ӂ38@�AFT�=Q�����jxw����U����L���Q��aWw�s*ɨ{�x�Uk^�'P�|{��N%9����m
�i;�1��:N�
�#�lj�p�ޜ��=��À\�"��!�� F���0��"��@�
�ѕ�(��P(HRQuR#�T'�Tp��EeG�#<j�#<G�(�I��Ts����Ni�wP4Q�ʅq�e8�u
��+�>*4:��XX�T��(�o��?�	P=�R��P��r e@�Y�xV�S�P��9�Z��d*��R8eKVTp�*J
��F�.��X�q�`�FP�xARP����UǁDnP8g���z"����N�FSe5��w4aSpB��&
a[�Ҁ!n�8���*Nl`!�N�rp�c(̂�(���W��:�#�T��>���}P�C���7��oQ�C[�|SA���7����!�C��h������-�������# �_�,����=��-+L(̬�B��r�
#(a6ܪN�&�*ڰ�P�0�,�
x��d�1ĕ��DAE+t�"�<D��"���!Ă��!U�)P��;(*�l"p�g��!Pd!����h(����T\�����;;����S��W��v�A�E�_M�>i�Qe�ؘ�x���Б�}�ă��xGЍ'���8��M�"��Y�?�^H4���T�͜�"��>�וx�4�`���M�h���W�9A��x@|��G���G�Ӑ=Ϊ��Y���}v�@�.�z��GD�"Qqʐ���N�Z�"L"�F�<��L�,��2��pPV!]�
6�9D��'����n� �,�€���
�A�%	�Z����� FJ$�%�r�_�D�(��1	�a\�(��0�����E��Ā��fP�I��{+Dn�TA�qǦ�*��-pw���U��xjd�U���U?$���U�����V�i�<�$�G:�*�_
G�׋ �J�����uZ�J?̫�J̫�kD�޼A�ͨr�̼V�hG�xΔGy+�dL��ǩ�H��	d�+��!9����|��62����5�^�*�HT�9T)��9@�ՔA�!A@!4���]T,"��+ƊT��
���(+FDj��@��qt�B̨�	�
�H�IB�J!�4e��T������IB Pk���7E=S�Py�W	8?�c�lD��WT[�S�P#�4�s�
F�}�P�'T�0}y]�n!k�u@�&�SSA�V0;"�ιD)���n$��&�!� B:�#
2��(4`�q���$���
˦T N���h�ࠬ#(��%���+�9M�8HF0�+�G��9Z����J����4��
�l �BK�#$���HD�9G��Ԧ5�N:�c�2HU��EU��8X&5E�.ys9@��d(����2L�0�0��Da9N3��a9���̔�"2�~+~8E�|�h�Ku#u��"��+ĊM�\�$���Z�CcV���E��c"�1�x�-�-��^0�	c[*��sj�'�=qO%��q��x3L�Vk��@��ҼM�=�$0�F��^0\Al�0v^0�#
��ϋ��Y�B��~0�cm��g
8x^d�(�Pl�Jv����=�*�2�$�E�)(?DXbpD���@URwN��P(
�V8s"G*.<p=U� ��P���(����v�]-@#�T-�q��,‡@� XBvQ:���%Y상�Rb
�H�TƸ�#���)�00�R���$��x��t�:���-4�y�#�sdZce�h�-2��g���=О�&�J��8By���S���1�B'T3х<k��#��s��o�I�uT9����â������|~Lr&n^%�g&H7𫈻Ü�4����/1�ZE�ʴ`�*����d���n{"�?7~D�Q妑l	$������h��`/'ĄI�k���u�-t8&�F驨[����x �(DJ#*ׄ�e4�4(B$��(tB4D������F��
�9De����!@Y�J/t�
2T�
.���0���cT۴]F�'4�Si��B��Od\r!aB��)0��B{��[�
�9�Z�l䦌:XK�d��-�B�CE�u^u#nG�Ts|�yg6��L��2D,Dj�1 I�n� Ϊ��aru)�ͺ[
N`��jB�F���ʃ腪���5�&_o1$�	�e��"rKo ��S&$�� ��6�]p���O��nv�@�n�^}���Ms����(D7R�]uD�h����P�8���P5�/�0�P��
��i@L�F�EH�ȓ8a%��Q�'�,+���Q�j$�@��c(Bm�4)0�Qi�W�"P4���Q%@�B���ꛓ�i�!�8@�Xʃ��rSd���cDܝ�,�Suh�4�j(����ΈG*�1��s+����1 d��� �
"Qt�7�*�!�,��O"�bvU/t�tֲ6
�w�7��
$`H;�q�`	�X��A-U.��#��v��$�]P-$es`��Ze�@L�h!{CЌz�xat8�A��l���Gt5����ckcr�d4��k=�Ġ�����9XX���A�D�y�-��J�T�MΔ�t�ڒ�j����F
p�Tw�q�	��tU�Bs��@N��i�Q��-%Ot�z(�P�DTP"t�Ph��t���
�;��*L!9]��&��NQ!H^Z:��{�AB�R�*�J/�X����nNq"`&�B���( �������!y���^�[1���v�P�T}/b"w��b�Iv軴e�i8	�da;$n�$B�
d�?%Ѣ~|N�E�2�Qu���Z�m�i�x�"�8�N
��Q.��Ӓj��}��2!6�h�K��/�*s[�N�J)�)d<gtٟ�id�D!Мھͷu��xc�Tч@���l�I��t�vs�.a���)�K�v0�f}rPC̼�v���H*�
�\ �
�\�Sj2$tM`6�:�uL�I	���\r�������&�����cU�	'�����E׀z*���I����:&�k��ۉp��\�!Dc%k���0��i	�R�Y����e[Q��.P�� �Pe	� ҄cU2J.8E�+�P	�j-~4C�M�exc�� T7ƨ����k[����o(ʨEхp���f�z���gFvM�t�	���Br��o19�����)�`��G0aۄ<�39	��րm�*����[:���'�	�0و���Ǫ̴��L�u��2�1���kofZS'.�J���y=���V�Xq��]�H=Qn<+!�����p�k"�t$A^*�Q��
O5Z�~�L��`0���$ҦH�T��H�Li #T<�yp�0��[�L{��lv�~N�L���c(ThuV�&�d�,�3�S�&��Ѕ2K�T��$�A�8R��A=J�yպeSs� �3�Rcb��B؉_9Ӫ��n-�2.t�3(|��%�2
�O��I0eW�5�s��y�
"��3��c}�����lG�����l��
x����!�X��9��(0�L@�� �D�H?%R&��A�I��[$�j�1��0�H���˺�Ē����.d�)�]�?WP��c�SXy����N�^�7E�S���5C�6h��FP�is��HM&
*(*V �M2a�YMP�U�D-�yG�J}V��FɤF���$�9�s�#d+�y�6�4E�◸HE� ���|�a��]�@U���iꄙ8�Li�v�;̃R�+FH셐��9��T�'>��@h���V�5�lg@���M�*�5m`'`��ћJ*V%ڜ;e-.~`D��<�tꭴ���2�Ш��d��1�)�4�L�E�ɴ
�#���l�.�IN��u�$��O����Si��
n`n
k�0�0:'� T�"J`˺ʬ�>(R�y�
���#�J#��RV&�� �̀a�f���|gE�����%S��#Q)��\��*|��v@Re<{�9�x��)�4�T�|O�!�����'*��+ٛ�v^" ��W>�S�D}�v\�:�Gr�R�: �+)�@%>����&eZ&%�A�n��{���L!>�'B�F�R�D�	�d#=��M�%b0�crp�2
�Dc*�LB��FP�C4@�Ѓ��T�,+�NS��9B��!3�; �0a^�@�'m��*�X�>U)r�LӥU�=�k�q�2C[��q�59���3���ЫH��rBhs�~��@/G�N9B 2��8Wh���t_�� �$���u 瓮W��ʳ=�A�"�M3�#U��
n��1�7��*U�,d	\��S��Hh�_.;+�w��
Pl�M�mW���T0�2s0�0.q�]�(iF@�:'��n2i��`$� ���6�Q�5�ݟ�5���.��1'dƛ��$�� @!�QTe4N;#(�*u�6�
;M4�) ,kFN�'�4A�s�PF�ˤ��N˝������â+�J�t?%�7��8Y�(��T�����i?$��i�V�6RZ�ĐJ��)��E�9�J��I��]����nB-��L�A�[��v� w�n�d�0�&�(������f!4	LvQ���8�u"I8R'��5�0��D'
�V�
�J�ѐ�8`B$�?u>��������iˠn�$I#�F�t!��1�ZI9O���ET
5U�ֵ9��B��$ �r�U0��'�:`-u]$� �7;'� �s�V�$��%x�ypsi���g� �֮�T7��0W��nn>]��nxgWj�F�!�wB���U�&A��Dc$Aw)�i2�0m8*��=J�w���q4��fUv<����gR��Wxx[��m$C�`�U�d�~ȝ�$`�g����c��U˝L4;�O�Nu"�?�(��IŹ�ݺ�Cݦ�C9N.Ԅ�tvT�ԘNl t�������4��蛸D��&�M��3�M�>���S�>�����`�O+@G�D�h%�,b`�͡@wC�C�� vM��o�x'hY�	֑
���Mn�9A��oP���YM?{T֍fw\�D�P N�ʥ���&r�۸N��^�:�0��8Ց&6��z|�/uB'd2U'͐L �k�tQ��IM�q��	ӄ\r�|��C�j���4��*��V�p��^��	�'{	� �8�\�~Ju�Mf��i����95�42��U@f�@�HctϺm)����Q�V@�n��a�&�����&7��0b^I3;&�su�W�9`t�{GIDU��'4�n��p�8��tܧ��s@l��J�O�Ra�0�Q-���0r���t8���b�FS��Ѧ�#&Ъ֥R�9�V02��$n@R�1����Y��A������}���싀�$�hN{#~��x]��)�0�䪯d�
���q�!������;��i[()׋C��)��ݶJh��!�9���a�dLd*N3.�̍~J�h�G�Mt��0�L��Hd��4k���k�
�@��d�����
Z=ҫ�Ƌ�>Z�q�*��UrX���Ы���B��T�~W�Ug@��
��*���*�1V?q���*��:*��x^!x���%�g�^+���U���淜AA� �w0��$�c�)��v)�@6��
@В7GGb~�`�yf�2S����!� �U"�n�wE�l�v�ɐZD�
u��[̙F$j�SI�&��6�.;K����(56g��r�N���̔c�Q�Bq�-2NU�q�KLl��=�d�Y2�l�=�D����$a
�\�)$�0�T�B3
��|�7��%��?�T.�X�uk�B�ͤuT�Wˍ4-A��&]���I�
�����Sd>�7�!�D��Ǽ
�ʠ�M�=կdN�JĦ���yM�\�	F�k-�%
`Ip%)�H7��z�E�`����@�*�j�[�^�@� ��B{���Ȍ�:e[���$/*KHa$���:��N#�B�t��f
���ĒZ���ߊw=Y��q2�����r�5H]��<<\�]�8�`��9��4E��N�b>y�6���
��pS�
��?�:��R�pq�:��[�"KB��o"�q��Tw�&��ܩl9���2P�h|h5*��w� ��ߊh�{Od�N�D��ֶy�¤�x$�puN,s� ��r���T���[̘E��z�5��݃cD"F��t�MJT��!���4G�̌���P2�=eba@�$�0mpwdd�
#���ڣ� ���~F!�t���b��@�T��Dn�[��"�wDf�\a��U�#	�0A�i�-Mpo�)d<'�@`<۱����I�R	:&�݂�S��k�V��퉙�7)Ÿ0�=�F���uC m�`��ym>s�΋�{@3� ᮺ D8�wM1i鲧pi��HUjdan����IM���L�@���9s(���vL����: Y�^v� �4�3%V��rw(;ިd-`�U!�h��5@�E��e	�!��5�"eP6��i@�a�%�'A�L{$"�*�cQ�S����`�
�R�Z62/��N���̉�����t�wt,�E� ��-/ИE� ���4:L�f[�DR&��S�"C^5�TH�y�l��Z��F�n
��q2H*.��;�d���>��0$�R�>dU#���2�]V�����9���9��9�~Ҥ[Y��rF0��-hx�t*�|�NOR�kA�J5K�h���-e�- �$e)�w�E̷�L*-��M�q��t^d=L���f�����B�›��Q�- �d�ri �
�2�*{
4a�x�P�60eS��I��nPk��y�V�K���Q�7����*��Z'>5MuHn���YDU�{N��|Z����H5��g*U1ٞc�>AcCm9T��<����\�0�NnB`���4���W�s�x����-c,�Q.s���mi'�\\���?-�0�ܴ��ތ�)�5���Arj
�hhFP����L��X?F	���A��_�btL
���K�ӱ�O�T)�5�Ls��vT��m��u@��M�h6u���`!��9�li�#�L�i �O�4`j��%ŰzfN�5����M�E���d|�f��P�f>(��@c:��kiݓ��e��s������PC��*���R�n:"e�8lKB�C�7���)�}������D�2��V}W�<��I�"�m�.�R��ڼ�넪�ZmG� ���d���c�z�&YT:vp(�r��Ns���m!�$�����i2{�t{�S��Ӻ,x��y��y��3�D�LF���실��S�����AI_�J󙇖��"��L*����D�H���i�A�j��d��x����G6�S��q�`���$�'8�+��跗�5�eRf��� r�E�!���Z��t�g��2�ti���vF����q�"ٗ<}�4O���tĈU[X�e� �ʵw�iZΩ�V%�f�{*lc��ˌ^?¤�B)�6\u��d������Eᨻ5Z\\������:�`�N��m�q�a�+L�v(2�	q9?ʹ�Vn85T�8�����������o�4_�`3:gs�V{ɬƱ��	�x��bp�a��$��TJ�
�O$JH�3�T�Z�q���m�h3�?%N�Ye����)��o�8^���p+�Uy7h}���lDAƨ�R�	)�,q��%
o�0F�0S�K:���a��5l��N?�eך!�"I�J�S�%�rA�(��,�F�O�A���Q�ׂYO'=ф��C��Lk��bA��vm%T���\L��m�K7��N�CN��N�M7��j��
�6�-f`~h�>Y��%�z��H���Q�����U�q���E�ȴ}�Q�`���/q�5��Qq���,�N�Rt��w)��Ch��5�x De:��Io�#䭦C��#Q��.��� �W`�*^C��F�!��I�.��'M��o�3�m�q#T)s8]Џ�p9�",�B1�Aۺ���&`F6F���#?�"Zt�+���J%����R	��������3�2����R/&N������!��=��p�,leV��j���j;&T�cE��V��&`L&��
�	�0��?Ӳ��ْ�@&�"&B�quG{1�a��=��}��2��/n�C�F ��/"���`����PCvA�c;�H�T��C�fS ~p�>�SK����Z!��Ъz��l"�=�}:7$�2�Hh�X:�Jc`Um���A�6�=z�qq��T��G�!*d8S������{����i��?�ʪu]V�
p�H�g�>)�у)�̇��2���f������
v!�w)�c�K[�@Ur ������~����;a5��4�Ѝw���@�:�A|�%T�JE��4D':��4�l�4eƝ�vtT+���#�'�,e�H}蒋)���&L'T�,�z�P�2�����gR��oAɌ��q���+�Z��P�U�K�*6�tn�>?I͠  ��.����g�'�N��io�tq*D�ͦZ���0����~H.m-����&9Ĵ�捅�=:�,3��4/p� �d*����m�;�X&;�Sl�.4�  �QP�'GR�c¸tn�x���p����|��=�j6ց�9�M,6�5Ql��tʢ�?�G�5Ͼ��ӈt��Ss���9��]xn��'�Lz4�Ͼ��㲫R��4�-Ԅ*I�gT�x�cdY=@�W�$g�i�cs���?
��J�j����KI�*nc\�!4��3�T��Rc�D�e3�T�e�Ԧ	#ec j�|���o�	t
'T�g"Un�C�&���'$�HA��.A\���S�-{t�M���k��#(��� ��:��I�-�Q���T\@0GH@64�TZ��:�J �o�C �	�F���H��l�~ ���)���j쐜]l�E��ay`���%��� ��T/k��t:&��[��S �n��S����'t��q?�R��`�t�D�l�<�D`���X�HgG��)�)���y���47�|D�� �$䏚��v'4C�!n���d��6tr�\L��,��C��0�C4�D�4Y�$��mC���@���
��(2y�'_��tT��t9���[�\a5��&�Ţ.�sC��2�2�f�Îʕ)/|��胛
k�#^�xf��y�w�.-�E�p�rd�D�X\�ew��9��mt����
��YD;�Ƹ�N"�[̚����J-�|U���0�#&4U�$.s�*A��E?(i��ʵ\"��0����A�kI�����8�uΟ���`LNeZ�l'8H�!�)5�i��m^P8�`�s
��E;���	�n�
q�:�?�\�?ʬ�Tms�h�&�1J���r��`a��M�s%����Hi襖Qgޙ�<��t�J�S��'g��@�p%ۓ)��.t;��6��nW�͡��>�#6�P�!��n�ܠsN��H��(�h�A���g�}��:��p���3�尵�n�O�xk �t$��,|֨do0��
���tM���;�ƏkT�I�*UCi�=>Hyt@"u��EB3�[W�4�;��$@F��S.�*�2�g<��m6�b��:C�tZ�.q��"!���1���)̑�.��g�.�`��{�g'yz�!6�pۛ9�!o08���mǘde�Z��w^d�5�	i@{6R~�'lu�e;��u�E��
2H8�N�$:��%�0H��T%��*��@�c�
00:h�8�h��T��"w�}�F��&��?�$�����)�����&s�s(�N\t� �:�>H�ł{e9��i!�4U��;�/?��?d��tN��3�A�2�i�D"A��ɘ �(���wW[a���/��;S�6\��t
ևF�e ̵��)͈#R\?�.�aќ!Kϐo�s��4��r�L��Zу4��mW2�1d�iE�șq�6N��a��Eϴ
:
~����N��V0�d�>��cΧP�.s]PL�.M�.y ;"N��h/�\g0�M�9#��?)�"	m��m���>�"�����i����P���L�,̃��@!��pUB�m��ڰ.�6E���]�"�֧�ܜ��k5i��J��J���{��*�h���3炅�7́(�⯇0��q+�Q�ȕH�|��Y��&�jOB��*g����4�	�V$���PM�љv���6��ApS!���=��T�9+Nt���5�tK�NgD�<�`��9�@���&�v�(�LZ���l4n�U�X�,�A���$�;U.`N�9���BE�d�?�0����@Uv�(�a;(�c�$T��lѲZK��s�A�Y�u.D�$��l��p_i�݀N�e����P�����I�$�O�ؓ�m рn������(4�.$�n�#��q��7�R��Η�wB.�Ѳ��My,�N��M�0�2�N@|;�;���X����i�⨉u��МHZA3�%%�:�
��y��E�&u�0�O���#:��
���s�.k@pԜ��s�F�>H��U��\�D|A��.�t
�j[�0�\��
n�L.9weF�2Zcex�!�eˈ�8P
�J,`� 'A4�u̡�K��֍P���N�4��$h?tݬ�[ԩ�l�@0���R2wqDL�E����#Q��R�HP�}���y�@����y%�`G�A�$���J��wF�sN���G��*N�0��&q�R"�wȤH�cEB�&��&y���F=�;��{[��%
�i.�J4�4��©��t@�����W1��e42Z���
�:���4�ql��i2\��@���e��p�l�}��T�C f">�rA�?t���i��d�^M;[7�v
h�դA�I4{*�X4Ƌ����`��_A֒��ŹD3��8 7T<��?�-t�#�a���E�#dY�l��E๐Ӫ>�uA�	یu���r���h<͜�Ԁ j5�����K>�8Eڴ<~�*�mO*�Z=����[���0}!Co'#����z�U�0؀"TawD0��Κ�dҩh
>즼^�]:�a&�
�_ 򁀜����5F�Kn��d�a�Ԕ�A$����A=��<��AhЦ��]2�r��:M�Dn�I���`!S���d���©{�
��X�8������T�nӢ�ֳL����D�=��f4=`�'9����'+ü��Q�⋙U��Rm�#xG�잩����P�*�Yd�fZ7A�s�m�T��u�̩|6��U���80F�̡�=����@S�N�2K#�0\��9B��d�~�:>Й�m؂0�Q妓�#Y�5�Z�./c�NDa<T?@є�sdB�ht�w���h�9�v�9�Ӎ:�L��$h��k�S+0�$�:ȴc+8��� d�D���-a��An~i��Fr���DĪ4c9)դ��F�p��@CC��Ϋ�܈���1+����E�A�"T֛m���s�A��˰����I�ttM!��H�c�� ��L|��Υ A�#�b��&��ؔ��9Nn��2�n ����ѧeU��N� 䁤Jc��&g@pP�NA;��\��[3V�0d���hG`�r����/�n���
�2�A
��k�I�~1�D�"��0��%7�t;�w�rL�P-k�Ẅڕ
�B�LR���s%K�.|�D�A1�`��	R� ��c��ΛeU�Ş&Z1�a���~ΝJc(\3�T|�ky4p�I�VLn��FZXK��@N&�3p���̧kF��|��%�vq1���E�D��#UQ��2��򍳪��8��"!>�s�i"AVa���Lc��4�r�i�
i�w&��˷*-M���5�LJN�*���
�5@3�h�ƒ����؈� �˞-�(S̴V�w1�Z����Ԫ �l���'T��D�zwR�a3�UF׶㯺�F����ʥL{�0���i�6�i��Ȋf�^eƤA�٠
�Q}X�T A�@c���?��8e崉q�Į�$��n���UqIy$�:�����RmS���%\�L�HT�!�k�R�
G�)���!Zȴ�N������(<���Sh�;jIT�K�o@p�7
`5���5�>[������a��'��V!�~�lI&�NI�d��5�H%�ܠ�L�QJ�1?UT�F�^d\u
��(h�@�I8�(�nwX�!n\esH���i���h�8ttDb���pNB"d+�:&.LJnAl 6��PmH�F�$����	�O�U���R��h#�Np�	�Q��=��.��Z;��k�t&{�p�+�\=�č`a5�֙=ƨ�/d�'EV�rmđ����4����l��B�il�}Sr����,�:v�k��d���ey�/{'RDJ�H0N�I���d��fCvDR�:A �H�^tii��Te+���|�J��h��ZF��;@���`��92	UjR���*��"�X���+Ñ1tn]$A�S�cNi�4���I��-��>��(�y���y����h �E��q̑(E���tF�%�'�?�(��۔Ǹ�6��i��!Έ��$С܂�z9	��d}��$H�[��pU����C�)������m�r���\7B2#�N��0/fC=�^%� �WZ��cDYL�3�T�&G�1��������0]�GUL9� ���&�/�������B�LL�N�
|�����B�	�!�q�!d�7���;�0��u�d�~��{�N��Y�7�+�8��h<��y��J�F�����:��m�@���U�ni�Mx�;�T��4�hȃ�)�\��m0Cq�D4�$���3�4Wґ3Di�S���P�i�L&y��
�C ��?��h�&��G��;9[D���1�Iy�(��602��T��Q.��(ʱ�'+3k�ơ8f��@�x��H:@�7G��lDzs�6�*T�I*�L�`�I3(��4�E`��Y	�Î��-$|�w'�To�!�m�5�0�N��
CRIT�U-��H��A���4�:�3�'�腙1i�
AA�Ύ �P'�
�t��N�Qm("�uE���vv���E�'����tgHVs�:4;�᠘�TI&���*<���iB��G#wlS�ZK�[�F���pa�	��!�h����uH[�-�h��l�Q��b�q��lr�C���htU����A*e���`�#�L���8T����2cTiC������
�F�i��MB�4ߠ-)�GiN��D�AMi�[�̦=��"W�͹:�U̒`������NA�'^���]��I�
�������� �4p�s�$�Fkϳ%S��� ��|��fPx�Bk]0�0����t�Z�����:�A$�� ���m�=�g	��M{�#cLuM��N7v@�d�L�^X8��@�
?DP �~H5��(BB�M��|�5�n{'�f;-���
	œ���\�+Al�
t�R�R��@\��+ȩe��Il&���ʐL���bT��p0q(���FG���$�iMm2����m����
S_�����3p2�6�.�)¡"N�v�w�MIn�]�J���S�q��L&�����f�����"C��P�D����O6�!	9$�{�bw��]uR�s��9��8�wE���O48J��o�ʬ��U��>@:+jy���@�:P��#�΋�5���
�C���
�o
k0d�2��[��@�����6�*���l�H/~s0���]5�)L����h2�ݷԧ�u���/Q���@��m7�R3�W�, H=�fH��q��0���$�F��
��$h���N�I�����U4�Dj��'h��5�^H蝰Q�6�7M�Ph; 	$�B�3r��T	����t��\��K]�k~h����sI׺��|p�d��s�=����0!1���)D|Ή��UG֒��vS��;H����.��Jh(���������a@�c
l�7+�!(�0�J%��e|�e`&.S^{&�`� Mħ�1�s9�')�FSf�h$PiE�A:?w�خ��~
4ZI�,|Sʪ�]�DM<ꈔ��(���#��!�04F�j��#L�X{g�-m5(T�qq�p�A5F�P�:��5ԝ:�B:�
��TIkZL����<ϋ�Y^C�-|���l}k)q!��Sp*���
���`L5^
c(��
i�TYf	9�(�ڠ���|�:/:�իi~(��m���s�*���iF�?ʶ�f�q�Q��7]��B��L�D�o�:��B�<��!s��lUV>o�����T2���.��8�T�P��è�	�SF�D�V���aT#�^[�3���FS\e=S��O58@�f�
LuT���2
,$D���`��%���ʖ�9CD�Ӕ�$�P���J��[��!�4�S
ʷ��]�[�A�D@_D6Q�\�N:h�	�r�yWTC�,,��T˰u��Oi��T!�ʔ�$�� ������l;U2T<�d���'er��V�+�&7�2�2�u�}[l!=�
9t�<���DʄI��� +D'^`�S��4��&T� ן�pQq��a3i��X�6�h=�>	*�jAA��{���&��q^H��q�/�Qg�9�D�n10�|=�� I�ȴy�IئTl���\����N�*�$�#
ʾa"�)�}ͱ!�oP�iǗ�SPZIan������c\��*�Z���e>�)�82ɦ���i�UQ���/��f�Ѭ�����u*A�Ѷįf@��ʓ.Ra�� _!��C
�rs�h��J�胓i����"U�PJ�Z��P�j�L�U��⹑)$����IP��;߄C�Δ\�)숄g�ʕ!a6�π��Jĩ�@Q�N%F�2Daj�j�ӟ���`�I%�Um�2�2L��B1$�iv%�o�N蒷�s�
�fB
M�)��\�4 t"P�A)�j�`��G�\�#�B}@\Jc@)���׳�W4���)��sgM�%�B' ��&�w�6��`��mf���yq�ވ�V�
�!��A�&�kA
�DQ�ɐ$�֙
FD�2���c.�t��-����ti�w�Iwl ��] �Z͞NL�G)�Em8�ܭ��@�8��eU��7a��%�uM��s:B%��v���*.X@�:�pk� F�P�r���d
�Δ)�x�Ӥ��C0I(��i��a
�6� B-B2���\���!&J3-����Hׄ"OnV�];+vR�5@�A�L�TAR�8\�"
���́�Mf�]nJq�E���}A$ģHΨ�.%
eIPCD:��B)ن�-9M!K�ꠧ%
�4DEU��a_��Uq��#�Qf"Bp��9pN�9F
��'~Uf�80����91�V��c�.�Uq�t\๚"���*Ʃ�
 �D��s)�d��%!�D�~��Zt2�s�ΈD�g���:(:�S�{��\�i��{ @�)��e�{\��S�|�d4����1UB�ypp���Dg	�Ә���C]���@ nQ�f8�������]DFs��X��`"XK�Q�U_�N`��wP���/��!�D��%e4M��=@�D�0�\��*L��!;b�u*J쌬+6@��Pr1H�
�P�!4�j�@���ۥ��nwR�auXY�@h��8���(™D�ʴ@�a5�
�� [`@�Ju0��Np������)�Ԓ�0�V�$`*�[*��'d��VH#T\3��2%:��U���(�M1�ט
Wl��B
�uPfr����T4\u	����.w/D�r�Ur�F
��.��[Ҩ�w������ݔقQ9?$��:��	8�<�N��h�0��wU`�j��=5	��N�����uNq���ܩ���:�+�E���y�E��~H��.PsbSbJ��
<#�\�AXD)�E�Έ4p$�]P�82n6V�V�e!�E9@�s)�D�P���$)���9ψ�l��p�7:�F��Fa5��j�BB��=��!�(\P�'���M���\nn����H�(d"yc����I-1(�	3	���2@Np�����+����!Z�'�l*6K�s
����8�d�Gt�M��d��q!�`��	'xA��`�\	i¯����€�#(�g��$�Ĩ
�]�0�!	��ꌆ��9(�J�B�9(�'0q�FJE�,�@�A�DHV��.kd�g(���T(θB
5Z!
^$,�N��
Va�A¹rp��@N�T�j	�)|�j�)���q�-2��ʈ�K���"NPb&���J,tF�`�0�	@�46%����>�&�8h�)�M8V8��1����T��g��m�Qq���63�3�P�����v*&��WY¬�0N�:VĪ��
�B`@UX�.%r�~Ē���H᐀�!���
s��b-(9�ӀFr�jh BD#����]��T�@IQ�!��.B�A�E�*�����J���\���գݔ!�2���	�)�–�:(N:�4)�)������(̒�����.��(��T�A\�G����&�B��LB$"J7Œ,p�83�"]��*с���P��}ҪnX�+�8���Ra��R�(!#)�57��j�����B
|�(<�D��+B=~Hũ��#U:"(����_��@ep�N�H�.��G#)�'\�!"D��ЁB�#ʞW��@+��N���� U�P�iP!�A�M�B2�+�(P4�j{4N:�q	�vN^�)��|�-���(n��
ȶ�xT!e���3��D�#�va=Ȇh�!��"͖�HY!N��-0�3R���e=��(!1AQaq� �����0����?̛R4|$/����"S��Ƭ�0�B�v���������@X��p�C����NO
�S6xc�(إ11E�a��"���!�Y������Ō*@��,���I) B2�)1����6��`�’�쏄��>��c)&�f�p!��w!cYէ�d�4���k$�1�F,��]c�+��0G�;"�w�c>H�ē<���,N32��Si7��h�m��Y��̀#��0L�R��c���x�ٓ��A�H�$,8�k�g�B1��L0��K]�*�lH����/�(6" >�A��x
"�wc:�>�"������e��P�F��>�K�#d�%��VhN�	�I� Aq�bS:��A�nO"X6o�c\�!H��WX@��W�L��11��`x0�Z��lW|��r`�B��%�a xOHdO$ą��,�	�}�y����垞!}<T0��%��$����	 ��<	L.��L�Tִ"B#"P|R` H<AD�#jxF�Þ�t��R���HX�
���|�H2L$��x�Or^�v:�J�ʈ!��Z!�x\&2�Y�6A�1ȱ`A��[��)��  "�{7]�L�w����Hw �BfD��/�E8�J+�Z��O*֋'�1��
�P'�"<�H�.��I$fd����V�*�Z��O&�����Lx�x xg����qb	1���@���8�A�ћ�&��t�4����L�>~em''�|ư��-��	�a��=C�#���A����b�Ke'ljl����LI�|0��`x��	�e��Va;'�(�'��os�e,i��2;	i�"�
�j'��!�埏M�l��sow�L�3��o$E�aD�E�6cĉ��I�H�$�K			�K��͖��{%}?��眬�/�K^	 �*[�I����R�blS��!��L�$�$$�H�l���ć����u�)(e<�����Id�������x<g��>���ܛ1縘�(��e��x	���I�%m���"+ԙ١+�hĚ���)���>	vc�2���$�IJ[�(�E&���FdB ��,��y�T���<��l�XC�HI�I�Pl'rf����dxY|���"H�Gq���8d|���ȅ�p�gn3��i0<�bj@ΰX!?���g�<P<��s�DA�<猐Ye��g�x-��e3?�u�xI�I,`�K7<2Y$�Ɏ��I�4��g���cX��`o�f�$�Hf��&.K]RHg�0�o�b`V�	�����
\y xJc�T��,����	�|��%<*6b&��>H ?���<$DY��d�i��RIsŌ8ڨ��Y���Y�de3FM�ϕs�@��F������l�"�(O'�
��^�xO��_,�rR��S�bC����Iב������L,#���m.Z�đ&f�:�MH	� ��Nl��$����%�i�A)zx��YYCh<'�a-�<��ݔ��ɰ� ��)�<c�5�̓�yO	'�y��p�|�Ag���?��R��$��l�<������pP"ȑ%�[�g�k�l�ڵ:IN#ť��<$��I����0��%���Xb��O8Y�,�$�O	'�<f�	��k]���	,�	 ��`�Y�b�BJ$�}@�_Y���$�,u	�������S�X�7����n 2_�����i�cI@I$�2k�7�!��#>� ��x��m���;�L��_��	=�3,,��<�,��<l�nx��X,��xh�,����ʸDF��U�$���$2�	g�x#<��c���>Q3��$����<S��V�o��r�h�2^3�I�<a<h;m�>��J����=��w�AĔ�K$���
�,#�8N%+R�!�"t�C� �<�H#�����u��ȁ�`��$�F-�,���I0�r2��e%��0�>x>C�
�%X|.��XD��%/Y��h9m貖*�lHxY�a.2
��Ś� �G��0x�$�D�@����aa!�m���I<d0�/���cg���D|x�_8�����3��e�H�HK'��1�$���5��@�� �����Ũă1��<���A�Ae�x-��Y!g�g����)ze�K$�#���x�m%<g���
[�?�S�@�xO�ȉf�1�!C�6�q�Gv(�'<:�%dр`�&6&�̼@20��g�$��4���Hx_���FK ��[s�C����X ����,>0��pHL9{h�E��X�"�Υ#�$�4�M������	�	��?�D@v��?�e�9%�b���<drO��x-����	dCR%<�,Z@6J[b�L`�q�ZH��	��<��1&�F	��z�`�bÀH"��a��?�Ye��<�d����$�"��H#QĂ?�4���B	06H>�#�F]y3v�`%�X�Y�>V�	LS�u�|�B�hs|�f,���8�c��&Ifi�Q'�a�,�1ĉ�0ŞYd�G�U|H�������B��}�݌�i���I>�^}��֐�?�O�o�֫�?��Zߛ��~_��{c���u����*,�x+d���2C�H�b,��I!!8�-���D��'XOdX�a03˦Q��$��9��$��;
�0�%�a�>3�HI$A!'�%���ȣ���?��>�������e�<1�d�W><�G������6�$�Y�6�d����g��2`�5�y_��Œ�Zm���#"|&�)�.(�����H��;�2���"K�2���D1rK �<�R�8x(s~��l&4u��~xo�|24_Kl����:<������%�&m&��~�I���&	�`{K%�R��|������0L!n�YbXI�{c8Ah��vr�V@��,��e�[��#i�!�Y�C/!�)�)'����|'p>�y�ad:K&���HX��
��b:x2N�����we^���㳉��6�$e2�X�M��>C��e
w,3�$I2'Q�3�+ՙw,1�R�B@fF-�!���x?����c
����IC�x��Z�IW��[�Yӊ�5��;��zcj����P�#�\�]���"�%Sс]z���Ͱ3VRqOQsƒ�T�%��<0�71�<-�I,|8&>@0��	� X�<'dQ�l�\�����$�JXI��O�x|bm�xX�m��F��V	! 3@|����Y\{
{s�e_l��6W��ܕ��\�x�d�6b�JzqŌw��y��{+p���\~�_��,�̃�LZ>F�xe����H��ВA	,�h�KL��Í�`Ƃ�D@_��)&C$Y	��YF&I� ��BA˄�t���$,<�Y��in��v\�<(�Yy�e�n�����6�z�:}
�X���j��������)W�J�����c�F�c�HJ
�n� �B{���Kv""c�I ��1'�Wd�o��P�RYu�	=�j��!4HTŕkI[BH��0Xx�Մ��������I��f8��K$�<`�|7� +�C��w�k���,��۞�s��$��n�I�~.az�����W�t�8�Qa����%��T-
�nʮM�!�y<2��$����r!x��S��4��$��Tĝ���[,~ǂb�΢W��
�&�іX�,�0��f(LD�a��"���!��-q���_~F��2�|,�AI�AFq�Vt�q�r䥀�s�!i���*KƳz2�6X��;�ũ��!�m8e��ݑ%A`�e�� �jy=
{~s�%��X~�G�&��B��PXɏl$Z1�L�l&Y���x_�LI�"l kH��-�HTn@X%d����	)�8v��wK�`}v��'y��
*	����q��G�w����u\!�&������I�>�e2
i�����F�o
C�>�~�݋E:�A�d�j+r"�a��V�e�f��!��W�Y��m��"I%��9���������6k�7K	�<p &�DD$��	�x>�(H��ғ�V*X$	���|/���DŽ#���sl����X� \���(S��n3^0��4}���z[�z�c
��'�K���Il���,Y�&}�Y�>������Ix�|7�/,��a�K�m�R�Oy���FHK/��-þ�	Ń��$�x.�T���Q
�ق�,�BS�aM������l�i�����Ұ/�O	fa�I*��rIx<.Lc�[�ĉH[����S�	#1�X��C���,zJ\��~��������?R�s�8~&4W���B���H�&�6�h�DH#z��D�����o�e�m��z���Y��7��zY$8O672gS��|id�%۾@��E�$�,�I,➡�Pv��f#K!P!j3�D�S>q����p	���r,���1�˕�y� �F5,	&J„�X��OΚL��o�#�%�!{+��2MN�������=�,"ݗ��_�	�?��"H~���f=��{�@�nܿwQ��KχF��=��A*H�Wc����R �ڱ[��Kl�.|�i������I!���><&'��_Q$8�`���N/���$����ilxΩ�c�@Bp"�F�E�"'9�6S�a��3s�$'RF�yȄ�T)�8�s,�I	�.�o܁�c=T��р/�`GT{~�� �Iomo�r&�Zv @<P�1;�+�I72 gʰ~�;d$Z��wt��-xGK)��Acr���;6��&6�VdgIH�	�O6�"ARʣ�=ρ�Il�1���'x'&�j3T��	=�$H�>-�hx-�-��<��)<D�Fcaa`�X
r@�5Q	zc��ɗ,�a51AH���[����@���
�4�_`���9L�Z����pY-���/��w��Ih7� �y�����rF<��ڿ�JW�h%���
�Oq`%��τ����3M�N3�2Ȃ�eݜ�L(�*�C.�����-�Q�OcD�|P���f��"%K>��Ux����%<PbJ>֒`!n��<7H����ص`�Z�O���Ӷ�;‡X��P�H�
?��t����ᶏ��Y���f�ݛ��?�f|?����jJ���\c���v�3��[���v9����rN}�)�'�l|�A|,e�#��r
�K�"-�LA0�!KX���6�$;Ɍ�o��'��,��HD�Y�%�$Dw�
�"�N�d�L��L*�Q}�g��c^�x�.1��,+��'
d�`,kv^6+ী�-Kn���2��*�p����fX��y�Q[6?Šxs>��a�Tr�hBTZݖG}��"Ψ��@m^f$�=��K
��/�E=�N���	���"�]�D�y-Z�A{��M�w6X��$��G�a`���L��Hy?D�p%Xߎ#2D�SY�,	
~��Y��! ��1Y�WdR����-vJ��u�X�ʰ����N9u���`ib��@Em�x�e�
a�"�O$��<n$�!A,���Jt$k1�	D�O��-�"zi�!*���K�H�$I���?�|'�xos\�!X>�"q�o�9�A{wP<���~k�x��eڷư��1M�ǰ�÷,�'Xᣋ�����q�pc�$2����K�����%�	��� ��d�Z���G��8c^a����B�,T��-���("r-��H�݈�	zi!��,���$�'�$L�l�h��8�XsQh�c�,�k��Bě��Y��Ո�#;I�?!:@ʼn���ᬀl�c$an``-P�9����͝���v
B]v�Y��9��\	�*k����'��o�p%��o��X�'C�P��tw��x#+�
Wz�\���J��&P��p���HI�"x�m��E�N��a�w�>x���k'�̌C ݈lĶ^����R$BBxX��d6
��Ň���m8�`�LZd:��;�ϫe8IE!�˸%腷�gD���HxQ�R�@�[L$��te��25�����C`�3�XA1�e���Ł'"RBw2��&	�RA2�'�20:�d����$��#`Pξ��fώH�o��66��6B��P@6�h��3�7O����81��+#��/拯�Ю �o��I:]�6w!��H$��1��-�t���t"��Y���_Dĩ�u'�3�3l��K�~N�r���X\@��2��0A��2� �,2��[��̀Bud<�V��;s�`���&�'�v�Rr�_F6UԞ��гG� �4��V0l^
BŁ�2ρg������m��W��u��$#��VZ�>��N�o�%,�8�HSC��$m�I�����;fs��
܂���"C�-!!�Ց�'E��h0Ѳ#<���H
���=�E`B肸x�Ʊ�&Ś)+�(샍��X��C�{jDŧɖ��ɚ�@�@�->4��@�<I`hMP�F4��xi,7h�.I���/L=I��	0Q��ؒ> ��������������>�H?�?
&����<,�;*Iu��J�Op��"��x-�$XC	:�c��`��R|���>u���ǢD��XgTl'I���9,�FW��)��Y�D����ɜa.v�TK`��&ii]�i�S�l� ���wex��!���!u	W�T)	R�8�FF�lE\!#D
[k"F�p�����"�c���ߓ�'9�T��"�:[�瀲_%�����@�E-Q��8a���ò�㤐xE1�I��/�2XLK`�"��X&�h�f�Ak�u�@ͤ����_X��6ғ������9���+ ᲻t�)��A����%����K2����@se�3|7P:d��r�`��A�E��	CLA�,6Ċ����
Б ou9By$0'�2q'I��q���LB�Ц���H�Z[c�g5�����C� �9��!F� �!5�U��e�,Um<�����������Y[���x`j{8A0�>^��O��Ԧ��
!��_���:�)�ca�$^$��$d!�ԓ��Ap��Q"��1�%��([(V(i?�rd��h$x�`�Y'	�-.6�1�v\��%�8Z0g7o|	��Ō����Xa�а��5�!�I�gYv��A1��R��Zz��iu�� �`Bf�JcH� ����Jx9��E
�3Y&�ᾓ����.�p����`��a�"j��~��O���n��7׷ �#�r�i[����@Չ8p��n�����}
�a#��s��y
hX�CZ?-YO�*qoL�LU�a��%�����}=	�I��f,�0B�F嬸r
)�0���cb\28;e>�Rpб&ZJ�,���R��0@-��PmI�*��*6�	�m:�mD�#�F	�H�?	��h� ��ڎ`HK�U.T�tlV�k��t$�ȅ%�qD4�楉4��#��.~�@7����p�/���Oa#�>P�]Rz�$o|�R&b�N'6��
UAg��h�?�����0�c������~��<��=FYA`���R@_�C2�$0���`���@�7��`�Ȥ�}y�����I��D}��h���:�5���	SEK��;�����R��
r�D��-�n�<I�` B�᭜[r;V�W�
���ПӞ�>/c_v��Ym����q͝�2[�I���$Hc��D��w��/��=l�SS�g�~M���?���o��?��~���=?��%z����o�P(��p�_M�bP�z`]�=��,oP0�!9p��H�[
���㙴&� u�հ���n��OJ.��X�$X6��F ��ҘmG��.hF@ɀ�!��Œ�I��U$�z@`����͗�2t�(���I@�	�3kj�q��,8��zFZ�
��(�k.�g�1�T�̀�沘���AĀAd��ɀ`�f�0z���!f�
͍��I߄�~��2"E��ر�d ��ŧ��\~�	X��Խ���Iw�I����ߊ(Vl�d��|=��ę�Q;KH,G�	� ��h�.�/B���f�K/t�$��^��H;���B�HBŔ��<�,�#9X�[-����М�� �	��Abn'�L�0����b�u�ZL�bH!4Z|x���Q���<[\f�
���3��I(�]�y�]Yc��
�o~�U7Hh���*�
V\����
p���~I��ro`Y}g7rwV�m���
��m�OY)�$H
�sZג�m�I��D��[����x���[�C�$��򚆥]�x��@��D�"�!з���r�ԓ�D-Cy\m��
�YPF@�����3HXH�
�HL�:,%rL��>	͖��0 �X���#! �K/�ϺI��,�vL��r�DLm$�ۇ�q�%��Q��i�a� �	�J�K�
����{5�~s��=;��u���x�3\9�-v��͡O�dz�l~�N=u��k�A�p��I��p "�wr�,Q�u݅�EU���B�������fܓ�E�x��a;�c|C��5�>��\E� #|8��o��u�KXHpgXV�J��A�K !p7�`�|�l�e��(�#Y�	3�[8Zཤ*�
�acG�����4�
1��6��$eBz��ac-� ��T����@-���}�֏�W{(�e4va�R_� ϣ)o�.�߯X����x�iC��$�㹻�
#M���-���9��P��$�ҳh
/��h}��i�$�"$"!.UmRӊH��Y����UY����
܄F��[̆��d��E0�;��e�!1�:J��6BtC�L`&L����.�¹`$����0L�唜�'Z���	���v�y۫+�|<Q⻪_q.�:L��\c��0(�X��e.�� Ѻ�f��lRp��B�t�I��la؊�CI�(����I�cw�r'�z�~װԕ�2�������?`��|nY���K_w,���6O�2���z�ź�ڌ, ���n�}	�.lyc�[��	�aؚ��023�Ɵ �Q2�k�^�:�����o�z��&�d��m@�PW,,�U�����	:aB�1Ԍ��{����$�,w��d�ȡ�B�>�����:�c`,LЊ/��$)�
^�*`D8��
�0�>NFu�}:_m�(�|r~�ck��e���ť�oM��(V6�LJ��,z9�?�~VW��+����B�.�<��*\����vIt3Ȩm��=�l�-�`6]�GBSNB8��lK@C�%�lö'0�ÛЁ�q��Y�K��m��(6=wd"�H���2!F��(d-}�+PA��A�bK&�3Cz?�^��1��Z�w���Z��P�+�f2VDd�$�m�	|����Df�-#��w.7�6p���Wp$^5v�E�7����,.J�48�����2�$'�H��?�d���#��͗
���c�u	}ae���0qYsL!Y�*���S��¨����WX���}�_p�`��"˘6k��0(�d��	�������&)ﹹ�L��
-d��e����'@��7�<]Aql��r��,��b�;�HA�HD�M�@$is��7X8�
�#I	"健��в����h�5aN2�����<O�P�na�3Y���Z���ogL��74��ch$���m-	�[�6�]&80��[��,Ʋ���pB�e�K�ȵ�^	=?����{��7�Y�H���_�s�����9���]<�ߏ��w������`���a<Z>��p:<�l�S�L��m��"�0Y�DX��6���2��$,Ԙ�	<�o�������~S.O(=Z�
d�
�0��;��RU�@#���Do�m�.�OT�L�\����
��JG+s`8�J�%0�Dd� *E��K`O���E�@�0�R*����kܑ�u'�ţ�JH�H����o�;��+x��њ+�&���e5�l�`�¨6ppKc��`�4�!j�d�=	Ն1��c0#���z��h�a5������Cn6���N��_���?�F\_��rͽ���<BM�+�,��h��H�i�M6�j��IS��Q�eFѼ)�Ƌ,08O�•~�_�����C�	�b�4���^8#;�.{�^-��U�,�XV�pRZ[߬Pb��&K�G�30��<5��`��d��Ďv$����*G���-� �dYO��E�0^�zH06����f�$"!��C��ui&Er���7��m��n�M�ɛ����}k��l^�w'd�Y���H�8&p��@VW ;zMṼ���bU~L���8��<�X��b]�Up�����l�U`f&�����?mݎ���قƿuN��l�_�)0j��gy}^l�4Oǫg����$l�"~޿�fߨu�������2=�ʎG��< �����^�3mZu��������dt�
sgC$W�
����Cd�@J���l�%�KWay#J�Y�	V�6����� Iв�%���V�h�l�
N�	��1�~h�t����g�N�H��t	>g[��7H#-�i�sC)�Z̩+�NL�1�g!�\&��1�	L�h���`G����nA�@>���
��x�p0��]�rS}���K<�)j��l	�+���c;U�@c���L�p�YPy�KZ�I6@�'PFI�H�N�MW�/�aC�p�$�2V�pӿ�}$N�\0�f�#N��δ=7V
`>/�@7�sN��,�1����8u����v�j`Լ/��a+	p��d�_��*h�u�b	Л.�w̥���!�U�+:�s��dI�7�'D���H���.vN� �YA �zMܙ�.��c�g�%d}5��l�a�#����Z�$����v����A�H�[R��v63C��B6O�ZA�Z��`�� �� �;f{����Fb���8�,�̤�q4���X�I�5�,_���	���u]^2�*���,s��==�י6D���5�dL��/C�饧�U�e�<�ש�l<��\��LӸ���{=��,dl�����_����{٧�Á"��W��d�G�'��?�?���9NT�Z���S�Ӑ���\�߂ 	.�ZE6<*!�s�� �uI���;�`���<(l�3�0��"ch��Ƨձf$8!SDZ��`u>�.7%�A�!-�1ێ�v�ב�.5y��Sz�`���_	��LKn��X�i��fGcL]	�!��
4�Ј�H���		���;��2���k ~��4��=��>�:��񍸵)G��v"-�����-k�e���4�	�T�6�=��@��M*ya����;���}����#�aY�M�p&q�X��:}M�K�fov~�B�ɂ��Xѕa�!�nSM�f|Q�n@A��L���ɚ����@B��'�gm������R��	#�N~C
�|w�e�����l��E���<������l/g�G�������S�Y�-y�=z9|�YUU3YM'z3�,d��
r؞�„Ќ�����&��H��G7��|G/�#Z �rJ:0[�}e�`r�
^A��D����,MBt�m�;]g�g��8�4�љ�U� }�Ȍ{���EX��ab
SRl�4�h�`Y{��r�$dplQ�ߨ`Etj6��9�wf��h2t��%�4!pq+r}�f	p{�7���-���R]�%Hu�(*������KZwI�Dd�7�\.��f���z�!;@hև嬗���ߛ@�����2��ϥ�9
��w"i��A� �P"1��ZK��J��w�gS�KZ���2����V��Ӥ�-��?��m#ᕡk��z�S��8��4]���'��wF��ы�Y5
�޽�蔄NF�~��S��d�y��e�*-�����=
��5Wu��ۉ��}�;d&��<�qXEվ���J�FtI!��\X�q\�A$Lc|rT��o�ݫ�.��1̮Q��䇅7Bٖ�EC����f�Y�2�ƔB�"Fᄇe٘V��X�(�v(0dr�
��N��p�2��|��e�4|d�qd̈��`@�v�RN>������@��d��$ެ�+h6�T}���X�#�H)��t<�&�m��?��{�@���dk���A>�+%ō���e����!/�E�L�dt(h� �ϳ3�1�b�[R٥K��Q=�W��˓����a��A�՗��*��&��9K�^�'��@�}����s�,��ݵ� �?�n����qZౠcj)P��>(8H1�c~Q�u �P�O��J��=r�@���혁[�}��>�}�����Z�G\��!�8w��F[g�f��qcX��g! 9�]Fl�T�V�yc��@���!� @K31�W��V�+;
mue��VǨg��u�4�En�	�Dw�>��#�i�֎H�M�-�e�`��-�#%���e���Ot&���X_$�f΍���SH�a���������e=����~q ��_n��^Q��?2�ۢ������v0�i
G�����ί���N�lɂn-������ϨAӛ�l���0g~���u�WODž�M!�;�R�������V
�,hJ�a�(N5�L�T�Q1�6@0����?$ �\�����Ĉ�D8��b0�e�oi��N�����d�d0��t>�@��\Շy (?�8	�(j37_r��q���F.��p�ݻ�U��f�ӎ�u��~Iy�����	Y��I�l4�	W��Z,��C?)eV2��kg���h��ct��Ev=��%��V@�f�!��J`xl���gsܐ��#n�̠�B��0����í�h��8�2>��!-���	��9\Xf����HQwd��{'�-�g��1ʵ���6��8%���Cڬ+{���z��`���h���q�Cc�)����S�r1�=0lu�Q?2xz`j_rY�ș�Ʊ��33`��{7�I��6���,��h�n�S� @�w�m�s>��ՂO��L4�Z9��R}G�#.�e����G����	�r}	�,c^=�����?��[��B��G�����C0퇐��G��q���T׃`c�,(gG�� OR��z�.�U��d3~^O�
��e\�K"�N��a�c����fn�t����*W�,9hţ}
�
�L���D�Ib�����m��Qz�4�A	Ŕ˜�ng�:-��Y�����n3�_@��������g}%UD<]��r~�)H�-3c]Q�^!66t���p��C����_N�	�@��c$
�#�g#S@u�tT"-I鴄$Q�'�fb��Ҟ�,-����s�� ��q����C�	�'�@Y��}ɭy�|��u���_�r?��aif���%������ѿ���o�f��ZR������IPƴ��ӗ:<���g�;&c���{�V�箒]��B�9}��~-���h
r(�(#�߼~��
��U�XNu��(���w��[I������w/>�w~��b�w��X�>f4?���~�x���X؍�dϵ�?��a?��'�g@��凚�w���?\mT9���1�#>GOj���oy ���U;��;����8��Y�K�����R�b�s�r>���t��&v8W�}J�&|�a��Ͷ���	�n�ƌ
�	<x	ۧ�vw���آ�ٞ+{��[~D��g��69�%�=�¤��"���Jo���0��F�!���V�R3�F�ϣa�`�XuG�}�� v}�M �~�C`(nZ��Q����"庎��V�DTv��$�*�0Y9d��|�_65#&;�|d}Mh9�(e�
=6�atH�4��z�Ǩ!і����Kf�
����{�'ǀ�G���'��q�����-��2π8�P
�lls�_e��8}�V��9���p�0�O�{�����61Q�ɲ���r�?��8��g`�z��?RP��U�bJT�a{�1�rT�*�_b��K�����Q�����]�[��p����~NB�	���~"�O��G����2����!g@�Y��W�.B�K5u�P�Knp��,�fjm�7q<��b�0��`a��7?��g77�,D���a��}�:�a/]�
ur��`~r��i�e��������mݓs�~>�=�Y����
����!")	�Rp�NR��mZ,fR�p}��:�߭�09�D����B�8���<D��9�?V-��g��O��C,9(	�C�sւf��R��u�:e�'�۷e�V�3��=��~,wp�M��M�2��o��,T+�
䰁�G����ѰSx^��G�f���~O�?!Wסe��MR�Z�[����DqK�ȯ��z�]Y�>�hKQt���ĆJ����Ϯ�z�HR��8I! ��?�$���?�b�H�?���;�o?�0���I`8�度�o)OC �R�h>�T��1����=�3Y����<��?Q�@ܦ?�C���LB��>Z�#ӑ#?�X%N���%��F�3��^�Ԡ�|�<�V��c�6���eW��>��H�}ƾ��X�#��,�zE�g��g�ܪ�`:Ã��u>Y��+��/��-��j�����,���z!gɜ`��2އ��sM�hk�����4"͎L�zh~�����ʤxB�B��d>r�w�'�r$�Zj�����I�sI0-�c����u5`!��:J	��8!q�=��pj|K����'^�#:`u�m�!n�쫎�$`��ccꑧ%�:�߇�n�㢂G���P�C�Zg���Ꝙ���D��@��=���rQC� ���#��k�Jljk�0�!G�i�S��������C��z~�(��%
b8��lv5�Bu��
1�O��~&�?�Y�}�ڃ�=�f`��En��2��XLC�B�P5V.���e:��d?N�?�经�-�X��H���49o?
��7p�����~F�~�ǯ�YH�:�ĕ�h>䃁sO��H��L1C?���M�~\?0��/��M��"4�B�E�p\�yp�O����o�r��;�"�N���N��9�~����_ɽ��8!
�?D�bk���簺!��~nK}�_g� '��Ӗ@��&��K�Da�3���o��l����_�}s��9��$3%/ww����I�7���=�z�Wp��2ћJ����}�>w�o��f�W�֬�_�����#T���3ޅ���Bb��`���C���X\���'-���H���8p��0�n?s�}������LƧ�����a�q�=?̩����״G�J(�z�H!lFN��Hc�h�c�d4)�f�nGA>*���i1�م���p�;�A�)")�Q{27����O��(�To|�1�]�Mf\a1T!b��^��?�xs�R������8���p�d�2����=�^϶�`8cH1���9�G���p&��s�����v&z.w��.Z�z���;?4�,s���>�	��~!Ʃך����/�d��	�?��# ��0CU�2&����R�r:?��!���S ��o�����o��K[����͓�0����k�!w��l4��#{�X���=̈́8���~�.��GM��qsc����k�"����|x���Y�L�A��l��~���+#����.��C$�?�Q/;�?�R+
����õ�P���?:��ڸ����^A�9u��l�$�����A
s����7�@����,߰�t~1���L��>��L?Cuu����&?{�p�k�fLl�����nvˏG���%�^<7��.z��ɧ:j;��ܲ����=qB�'�_�ܟbUA��5#RA��E�*��Z��=��`�(���\���<�D�K<j�wd�� a;p�|?�=W&?�Y���������?O�@t���|����ț�vA�~��&�޿���ps	�a���)�~�B���I�����l*�«����n��>6b��h�i,R�1w@��_bu��+$ӂ��<��%�&�O#B}`�"s2�"z-�v�d�pgݠ=�Q�&'��#r3��(�b���U=�?S�/��B���l�IS���>����)�??�V/
��LL6-˄�#���T��ZO=���I�����f�h�~[ݐ�Z?q��v�}}�p����n.��d��՝Ԗ*u�_��|����������n�sSٚ���Җ݆�6��?��(��-�1�4���# ~��,EO`|�3J�8~�q�8�y'����6]l���?-�9x?�.�-��/�~>���X�p����[
�C ����0t�X%��嫨p�S��m��0���۽<L&��27�����Gxsiac����ߥ�������p��l������2xw�<�:'����T�8��Cmp�w�b�l�^=���f[e����D�=~�x~��s	M�'�k� �{�����b>����m�{�a���q�ݖ����>Ǐ��f���_|��d���g�	��i�հJ��!�I�a���y�'����k9��Q����%ǧ��~��2�~��PJ�@�ϛ?�a��u��ײ ~	N�U�@/Q�1Xr~��]�2;��⨔M�~��4�~L��C)��}���F�h�\?���d!�����-?��p�ϳ�~�`�=1��ݳ���� |��8���wo����rw�:e/�[�O�2��_���ʒo_u����
���i!�#�(��Ľ6G�w����-'5��Br����0m���ͪ�S���eѬ���$������E��P�+k�Akހn�؈��ͱ���������m?��,�s���h�am��@\P�O�2����c����<����B�P!h����6�">ߧ�,X��~��������N�M?�#�oO��ZO}G����&�U�lɤ?��,��=�������_׳?3��W?���p߀%/��w������`ED���?V���4w��Þ��� ���?�Z�3�ۓ�CcT����r��������g}c�`B?#S�����"�֟��r?�&>���vpS�t�e�ƞ��G��]�~r9��o�=Ō:b��4����F�m`h��o'7�0~"��1~���%�1��~���������Op(7b������Ӈ��s"���x]�M`W���?>��<�'xH���B��E�?������τ�:v���)߼�?�PB��ٹ��#���Tڏ_�?ՄG��(���b_��G;EN{�H��}{��X��;1��^]������������v"o����u�Y�#�f��"^yJ8��a�B��b�p��OX�3#��ԽϽ��s���ɧ���=��P��ݯ��-�O�q�6e��������"z7�<����?vTX��g4�?�����!�� 3��5+�,�"��Cl^Г��B/,�BHi�_�I�lCʟ������v�`�i�$K��~vܾ�_�?vu��?�����������Ż�@D�ƚ��<=�G�8��{�/����Z�Gp?Q������%ύ=�����0D��W`4�|�\����]j���1`���Ĩ�-k����
�[�;
y^�@�3�s�4YH�k�?��O�q] ��"^�E��Q����/�X��1{l�Ou����t>�4 t�S�x�����-���'�^�N�L��9�?]�/��!Y{��Dt1�s�=b=\.c&{�.��=bg6>�a��ʠP��u�j8��^����%h���8�s��C����%��'��鎨�#�������J��@	G}����#�B0�~��¤����~�fN���ݲ!�;��9�{Q�y��19���ϭ���z>�q�9��??�ǡ�(~�˜�v�0�͛_�p�Mq��B5�ӿױ�D�N�.;�����|�����懹1�>���w8��"�O��$�~� 8���}�^�\��Yo2qv��2/�����R9�������f@7�]�Zz٦���+=;��ϰ�>�g�͆��?d�P�=]����#c2�i�!���?�&��	/o�W��̵Ӳ}�:�7�@L{�>��yمw��tb���?�B�4��_��r~�E����a�\$̇[��T�e�}��KL�e�ϰ<�;���DCv
]�s�Iކ��B�����ќ���кLG�0���g��ը=ξ��=�3�l����Фޜ?�y�r�2�Hv�<������t�_��B��;���~3}��|�l�֚��(Q����p��~��s&�Q��N����{�����!�bq?� ׭^��O]�2*�5S���1��>}H'8t�����uf��V��ض~l���q��)N�Ƴ1v`O������6�+��C���>����^=�f��8�nt`�S�3��i���o�����2�=�5\��`�p��Ìl��ޫ����W����"_���(/�h\z_������~����w�EIk�@�v��a������&���
�S���3i�)i�i�s�9���62�`�K�@�L����&V�B~�̒'/
?���
yH��Cf}�/���d���ܠr�3�w�
+�C�'>�6���e�����t���흺���#滻�s�a�1���q�ϖ�N���z��3�?����-���s�EA��|!�Խz�Ȱ�🝳�.�~\x�*�m�|O�@I��٤�8��Sŝ����<���s��d�����qC��� w�s?���5�E������#�h�q�\�5E�/�D��3
�?mml��{�'�t`/���.��{���M�7Z}��.����~-�x"��`�H����2h��^��1����p�
:P�0v]�ɈQ�����F�>{�h̯��$"����'�K3��e���;����a�q�5l
�K�-*I�3?=t���2w���D����,���̒�(��;���ԣF����ѸY&�pJ��#��?��3�k��t��n˷���ܕ݋N=�������|�yַ��"#���k�\��G��W�Y�M�c���q�����o��~�?�26��?ِQ��3��%�B�W!N��K@q
�Ț�`t/gɍ��.�&{�_�d���#�_��ߓ�G᷹���C�P��'��M���9$ ��׽�>Z[g�|}}�\`w�h=s�{��o1�b�����ŨzP<����P���疱&���!����&��P�؎Tu�#8g�ƹW��xw��쁟Tq4O��NvE�Q�2m���?sk��C�k��@�R+��0��0~N�ڇ�@��n���~>ne����K���=hŅ��sdbH
^D�Yd�=m��=���0��v��}��CY�����^�8��/��Ͽ����x��]�f{�9Z5�����s���ϟ�9�;�g����_�L,�w�,xt�+�X�?�\^G��׬�?�
���Ɯ��hPO����ov_��;���w=��e�~��`��=̱���/��a;~�5���r!|w��JVN��?���]�p,��ƃ��۩أ�_�?^i�Hͷ8�����Y1����O��f���H���]��opM�Y�@�?�A8�|V��_M�|ԛ���.�9��y0C�׹0�pP?_��ѤQ�W���d��=��?���k�S|8q���n�v����p�O�,~@��~6|��OPKC=��|o�DbZq?���@ʎn��
p��K��	�����@�G'w��<_t^��;G��*z4:��ҧ
��.u�_W���d]
��"C�#��o�Gw��Xg�aps��5#�
��6�/�|>3�����b��f^�-S�����O��M��`~Y,�#�/�4M����K^�}#6X��Xp�B|��Kd��5����4>e���3��#�g'�_�Z��w���HA����C��(#������S�O��W����Nڬ��?2��^�߄8�����
�^g�w����;���Z�r���j骦���̢�1I��tO��.��b2P�Ϳg�E����?��`j~�l�� ��,?�à�ԟr{^�$\�=_�����?:����?�u�𮒴R��v'���A�'8�<~1��N��ݿ?�{�"��e��y� [��y<�,���᧯�Q۠
�Ph���2
��a{�{��y���>�������A�Y�c>�;ؕw�d��π�8�~�� Yؔ_s�fi�?�ebg��`+Ý��K
�b�|�7I��ȓ1���t=%�|�I"���<��$Qs�!Bc7�0�d�/G���~��#zY�9gD��P����ͩ����:�"��]O�̏	�������� 9�3�3	�}0�a�_��CL=�$߿����������c�vy�I�7�v9�z~�?{ Lk��g��/�1�O�����t��?l�Ǵ�5M����f�J�a?,b�u���A��?��N��BPX�G�֜�rI��q�,^��q�p��€m~���~gdŨ�tJ�����hv����r ���Ģ�{���K�A���1�_�̤ĝ�[ou���y!��c��Q��H)��z��R�b��{Xo� E��v1y�?ܘ}p��r��G�#��0YN�O�`e��:/ޛ�զ�}&���U�潆����(gP:���f��蘛�c��$3���
U�	:f��"�l?>�S;��[^�2/��^�^���q������<��rq�,)zpo��7���qt�s�([�T}޿=��4�>u5�r\gs���w�?
{��R=�����L'���=;C��ё1�M�G��NC��B"�{2�Q�^r����K0<�/��9���-�����L�dN{��1�NtP+��������>�A�=��0O��(�֎e��?F�~�����<���ijDDrD96���&#�~y�g�lx`��Xx��}傢B���NQ��r�+��sYr�ń��?��~~�v��+n�ԓ�~	`�};�Y�����,l1�%�͉��5�z�݌�����pƙ`Z1	x�0F�{s}���;�G��W��]�~�vk�4Ǔ�/�*D�4_�D8���?wP�i���P;0l{8?����F`1�=�����IL\%�/��خO�k�>����	�<���,�G?S&2�}F��f���{@Ɵ�=�ϯ�yӃ�"���OB0_G�MH:�~��e��F��W�Qp�;Sġ��h١��M�~���Ѵ��&?a��zg���:q#!	I��4n�=�����qoJ�Y�@�'f�z��G(q2gӈS���N;{��i���X���Pp�kqP.��bN`9Q�e�s��e��q����4\?:��7�MW���7�3	*�̬�z��'�=�w\���Ck`�2�[M�?r.�68�r���\n> ���:y�R���0�>2���a�� ���[��G��N��~�sz�Gw�}�qo�h��,�{���;`}���5u�V�Ɗ�3��[�gfx�Ν]�p�ēQ��r�`���t�ō�|���Ej����
g�L7������N;�W���:��\�[@S����Ӫk�џX��_d��>�#МFn˫Tg,���w�B)����gǾ�4
������c�?��l��c�r�`��tH�q��j�?@ݵ����5d@Aq���ޒ@�y�
a��{��
����G$�u�BFݯ
=p�n+j��Ł�;,�Hn!�|�(�{�`�wf�E�[�g�g��̐��<�S?fhA~ϳ��=���=Nd!�;�c�k�ԉ������4�z�#$a0-���#"�ĥ`�o��y��?,�P�l��K@O''����@��
[Msހ)zC���CD�l��w!��ۀ�2}�0��?<Q��0��4�O{-2�C��1�گR)��}X2n`����&@؟G���x�_u7�	��s�R���G�܆'����H�߶�ڿLK�Y���q5�i�����9&$��W�}\?|$��i�bpz����p׃:��蟯運�?��������N�)��5������?5���ӥ��R������F������4��se+3{�}�tc�1���=w�w�.����o_;���/ѿ[���1����C���I��pI�W�eݤl� *�a���y�/Jv�M����g����[���%�ˢ��I�$ϝ�������`�?̵�ti�{��^!i�C&��;�r���%�~TZ��j�J�غ� ��g�a����ꭝ,:�I���N��$&87��a�c~���}��8�
�c��IJ������[�^�؜Bh���h��4{WݘQ��ЦM� xh�$Ҥ�,W$�=e�����K��[A;��N�ќ;i��G��	���8�f&���P�O@����� �Zp3��u��n�8܉�%�m�϶����Ɋi�Lk���H�Y�tBii�7E=7@$
�w����&�C8V^��_�'}A��d6�6���].
�PqR=���]�j�"$&Ln+��������i��d(��f��ǖ
=�'�m/�?�d53�M���j�wG�Q�i\�����l�8����G�S�'~o��~�vY�y�E#tLG}��A��ę�+Y���cٕp�ΐѶƏ�\ȣ�?,6�=�	�uЧ��=�q��=�\��PY��)�����7�y�8��Ğ��[Ӂ���"|Ł���(�L��Ot��(�P�X�e���Ջ��������E�#8��ռb���e��8��{X�b�0�����^b���+�ȝ#.D��e�D�ݑ����?�Xn,BN7��e�N�/Sٰ�[h4�G���l�z$�N�M܆�]4
:c>��@�S��,ۚ�~�h�?�[��z8dO.]��1�_�Y��̙��<>�G8ʻ��,��
}�PԷF�Og�L3�ak�M�È����x�@%���D
�)1`���`�BWE�W�rծ.�{�Rڐ#n65��w�W,=m����G�	tb�\_b}C�)LE� R
;���dĜ ���}�z�^c��<�F܌�Z�!�{�`#�o+x�[T��=S���X�ˌ���dc9pM>��ͯuL �������2�z�����˫�[>T)3�	�����m�(/n�$�I�ϿX�fPAL�F�O_��rZ�:=|���G�s���=G�W���Q�+�>��n*��ܵ��sB0g�h�_�7�O����=C��#�s��B֞���u����5��������
"t
��'٧}�,L���&�|꒐o@~�F�1.ܜ�<\Qns��!�.�	�����J��b^㌐~�$�
n=
����)�5�D�<�4��ܴ~L�0��Tnj	�[�c�D
��ؓ!�Q2g��?��d��fH�%��JeF���rY�J2�!�I �T�:Hq��0��N��T٬e��7{k=`�2��F�5��k)��b��I��	F-���V��+ DV��>�0�rM�k���->�w�$s��/�����(��,#o��O��&��CS]L��{��Ά�hY��)"�D��a{Ov" �>�(hI�s��b�0����r���  R.'�Xm�a����g�E��9!��Rn��3�`���,/��Q>8�  �4g�-/�T��3�
�A�}H�~{�?����������6�S�A�9x����:U���ds����:����l�OR�'�F�،oQGt�I��r���f���d	�^8���̓��(Nm��$���~��L �+m��VQ�#o�[�Oiӎ�d]�P��I���tߤ���&�ÿ�Iq��b�߲�H��zR(Y}n�OD\�J�k����B�?NiՐ�+F=Rt��k����4�۳�)��|~,���g$!��36i���'�@�u�5��X��X�XFZԳ��\U؇���لN;��⑷��X�Оh�bD�gg��]�l�
���'s��n�!B�G�������m7l���@Ę��lB�:��/j}��#B��^މn�!��+r��+�'�@�,�2�,:�n���RD�R	��([!���G�Ml��P_U�Yg��%�ߢ\����8�A7i����m���ݍ�:?��#�������0ҕŝ���m-Y5v+DbXzi\��j�֒����Mӣ��X��݇���l��/ƭ�e�N���1d�4Y�5o+(p���n�bn)
G'�ߣfI}0�z:v>���&���?�����D�Y
�����鉨Y�(Q�
�u*��t3wpWv}�9��0��l=��LH��f���~����	�e�Fq5�h)�:��[{ N!��H�Y:�iE:�"�w▵�[ìL(����&&ٰ'�Β�DΉ
.׾���97��/�i_�G���!�h-�:��w�|%M	��h5_����|�z4-ڰ��˕��7�*`��[�pX{��??vl�w�O�����1g���PM��ƚ���Ѡ�&�
��[�����8��]Azߋn���a��@��6z��&@M�Q�=��{ڑj�^T�]r���-X�8=M�o?4�j��t����"#(2�38Y!�����	����\�U��)�FoX����rsv�J���
�f,�`�LA���#=0Q� 4üK
�06]3;��nثH��[h#!V#�#�O��B<�m���HOq�:�H�-��"�$�8����������9v1h�"�7<'���=	���z��A��o��ʈ��=,���8�-
��P'LGg0���6��c�I��L>Ʃ5
?��#�~�6�n�� ~1���8
G����e���"�T�$??�&r�p�-�!Y��&
H��r?/�w#�S���]�u����a�X��.r-�=�
�!X�L:Sׯ��
�U#��_�Iu_�	�X�R(=�I6$c3C�w-p�>�6��&n��$0O����l�h]�d����=`z%�/M�R/[+C2�#����i-NY�
��A��4-�M���g7��'g8M�W B��FOY�
��!
X�Y��М�Q�i>��ޛ-��f_D��c
b�,B>=E���I�nL�B2Ct�dꗂI�n�AD��2uO�}��NA�"����[�\�a&+;1�$Δd8'o>O���=K��1�)�c��i"���):O�s4��C�\!�\�� 2�K�R�zMzK1_E����X0�:�s!���2�����N�D���F�p6�cv�d�M���^6t0�Yb�&��$q����YN��,�}����l ��p���7'a�r?B�P
�U5a30�I� #��&"3�:&rL�ޣ{/ud.!Y��m�Ag��IN��P�o���!,�hd����`7]�lj�F��p����ٌ�Pg�&�ԫ�Hg��6Xӆ,VM�&	>v}�M�ӝ��i�MD#��^KG�`YI��n�'�&-�P��+>�&%�fק{V��.�ÐA�T����.�^	'�ͷ��<:���S�0����(�����]�ݓ�PAJ�7����ߴ�jЊ4��G<��_�
�I?i��d6ɨZfX��1�K���p�u� �6�rp~���#�o6ȏְ�k�@��t[҆'(K��cnjEc�e�I��+cJ�$����kS=Ha��B��,�e�����G&�t�#�����ЇU	bų��"���%���la�Eϖ�}0+�ɀn:G8�ZI#�؏��d)�0�
��[Ԁ�8�"tRP8�f�$ݪ`@�&CH!�2��ݚOW�މ����B�%�`$���f$�����>Ip����w�/��oEz@.tM40)�H�I���0Y��߶��aCzD&��_K4�B
�G������K}\�|>�g��`���
L21:«��� \_�9�\-�|Q�͗*Bk,8"GP��"�Ŗ`�ɏkw�}��1!�N 
� $W��:uezn1Ni%�n0�6�u�I��^��&ϊ�'z�t�.�pɦ4p�'�F��0[1k���[�� �(2r��)�a1�ԇMr������~8M�آɇ}�k�!c#�,�8,�6��Mf��j��\I�"��+�0z��s�d<0~�DŽ�K	�.��GH�+����� $!GL�lMD�Z�� ������	 ��fGj�x��Cd���_�*��g�,��	2�?`#*�rz^�#�9?��  0@P`���ߙ���^���O�s_䟥�w���I":C���s�dΒO����������rO��Lc�d�����#����?����>h��I9$�O�z~7��g�}�m���$��I�z�~7�{o�������s�}��?s�G��m���?¿�?�DȘ�8n����I��"z�'����rI��^����ӿ�����x�ֹm����I���Q�?���s��'O����]�D�Vr������q�'�-�J��6���P��9�"@�C���:�����������������z�=d�O_Y����|{��o���o&?�?+oݿ6��Ix�}�y[���>^�i���m�W_�������u�m���9���?�����&���_����L�"!�2��-�V���'������y�xs���r�O��|��/c��������{{{���ϗ��������M�$:�?WL�������o��O�&OY$�`M4�������8=��~_��x���弰��m��x"x���[\�8�-�[������~�[�|}g�N�'�4�mE����?�q�u}�7������~�>>?������|_/z�W{O����G��on��o�~���>jcx�M�GS�q��?���G��OHx�C�����|||=�˭Ӈ_�i�o�&�cN9
<O�~���������~���x?W�T�"gx�������t?��{{9}�S�Ϗ����>�է��g�28G�'����|�
��
r��s�4N8�����I�+S"xoV����|���7��r�1���>��F�x�j��s����s������8"z$�@�G��=3�Қ��!ںo�c/�����	?S�<P�d�|S��r�����3�����O�<D�ǒo��*�����:'�bH�=�Ft" }90%��;ğ~?ط���~�m���k���⪍��u8����9=c�8ˠI�a[���n���ۮ�S��U����-��gx�W)���@� ������m���ۦ�3�q�������ƁɧUC��$����4Ƹ��I&NO���2~<:�d����`��ӊa�i���_?����ώG<��#���~�r}�M1��K��F3��E\ҩ�|�!���M}��_�T[����g�|U�O��2�uN��g��I�2�.���x�:@ƫ��|I<^��$�I$�|C�p�I$���;z��Ӧ����d<C8$�Ĝ��/���Z�UV��ϴ5�9�y4�I�_��^۞�}�/N��nm������j����ח.��
?fq�����O����&u\r�D�x|[�I'��'�;�Y#���5֜�u:6�7C��i�q�.�<N��6ӏ���ɞ^_�]L�d���^8��k�&988�'O�^C];u�-�i�rח<tɎ8ו�^MM~c��"�����Ӓc�Mmy�2|�u������"i3�Ӧ�H ;��e����+�׋�8��y+�t������\��99!�~N��N]0�a�Ω���-2�^�����q�<4��z�2q����]{~���ĕ�5q�3ד��l���$�uה���k��d�����t�~+�e	iǓq]n	\c��9�����q�V����Q���P�|K�?w�S/�"kq���x�@h߉Փ<s��5�뮴����cI�ێ�M\'����rg��[�>S��48}���\�l�住$����C���ooc&8�ip�<���^���j�$��(����e�]��y3��W��w��s��:�1�!��T�����T�ђc8t�}Lj�rG	#���t��
>����I�N��OX���'*�:LJ	n�-�qǧ$���Ɯ�{���7Z�M^@��1��r��^'���Ē<uƼS����D֜��
xi3�L�(��99<s�8n1�j�����]�3�Î>+�g��>f\q�gC�8}��x��7
��n3��vG����G�^M9�gA@5�&�&�w�V�
U<������i�mttK5��u4���eӆ�	9�4�Qq�ug>!:�T��/����[mw���|U�/��}�?�	����pʧ=r��u�S��k�N�au;ƪp�	��ӏ��˭Le[��&����B>��� j��lӈ�װ�&��gγ[���{.�^�Gxe�!�Ο~D�I;<|�+�y�o���M�{t�G_h��e���υ�j�/T�$��^���\�3��%t3�^�`��$I'���y$��J���W�&�+���z�ۂ�����=P�|B8i�x.cOW����4�����|}=?�����������?��========<|s�W	��bM���'oh�����a�@yH�^p�CS��]�z��������m�s�zu�r�W&54h�ˌ�����Lk�q�ELg9�ǃ\k�_�s���V�Ju�I�����0�գ�7�U��:��M��tyf2{����g]Lc�����sǮ�.3���+��q��&p��Ѧ�WIl�<�n8cz�FK���]�3�s�t2���3�!�zÎ�����@'�<58���iԋrE�s�[�8ֺ�c(<�S;�����<4qs�Ë,0Ʉ���i}���>���G:U�'
8�`p���u53�1Ȗ��^�g�E�gN)�8�	���}u�U��8'%I��%�(e�g �\��뜞:C�bC�Fd��g|ur�����WZr�%��a�$x�g��r��U4x*��!��q�<��pL����!�8�r�8������N��Ld�O^z�$���L�C��d�I�j��e���e�]gS����\u�9~�˟��˧�n��ׇGeq��N/q��u�;#���N<S�HU�2j�ɠ"oG�fUx�8���'����Eg9$���p��M8�3���������_����G"3��ƚ���ڵyE=t�8_W�2<0�<|�s�U+��z�D�xg��^�r��T�xg{"qG�FJ�TWƙ�r�P������8"=�q]5;�˜�}��p''Ö�C^��:v�8�OPɞ�!�C�iÇ��l֮�a��_,g�cN{8�j��r痊9�3�Ml�O��i�Z8�e�F�<
.q�������o���5}CY��^��E�3�d�<�@�.u:�P��2:��ׯ\ay'N��oD�+�/f9D�4�Ƀ^]s�oM3ٌ���^O��k��>N�I4	�=Izrk~!��d��D4W��^x�r��%t�a�`k�>+��������T䉯f�v<N�T��\s���%�lr9yux�2��S�^�_oƑ����g�F���+��U��ӏtU�l�&r���',���ㆉ"�3�F>!�T�>��={^8�J|�8�}�\#�;�C:Lv2c�NP��r��5��O�=��3��:q=a�'n��p�5
qо�޳::Syi�
p�OS���������* !01@AQP`a"p��B����?����(B!B�!�M���k�����|�_E��9�mv8���k��B�!B/�^!B��)�5���F��[�h�������T7��wC_���]����俕���/�J�Wg��RG�_�4�'�.��k��W.�Z������t-�ꢕro�W���ѮE�C,e
��
�|�!X�F���e�+j��lu��F�z�G���渗�e�;F�<���UZ6;�G���㲢�j\,n5:�64>��vW;5�R5�?1j�QN4>-����E(�ج���\[���E;��}��!B�%�x���w�<\5��C}������R-"�h�4�_��j=�_b�k�Z�|��c]���_w�.�.��<ǎ�Le/�]�N<4�P�K�{)3Lٻ4iF�������*��l�i���h�_���B���F���:]��2��+:�~�k�}������N�����>�#�3�|�1�#�ϐϗ��2|��M
����{�{�{�{�{�{�{>%�W�>����ed�����±U��&|P����|D|O�C�/W…�
����ЙC5e�K*u��&��^�/qQ���K��|t����Y����.��Ռh��w�lmǩ�W\W���"�WN-vM��p�6�e����Y�:k:Ƹ���{ࢰC<E�,r��}��]�4?�^�p�Ë(�:(g��C�ew-7>��,�f������Z<<��h���g�Tj���W��[+=�(�Y\�ʱ�����e	��o���Y��Y}
�61�Cc�4�y���u8���+�z(���Qr�|�;�����-٦���U�Bx�
�Q}�����5�w�cxX��*�|o�!d�!��`�+;�*�2]���[(���C=�P�
�S���h~J��of�4Qx2�������؄!B�!B�#�|D�Q�����WaP�*X��"�?������t$)sX'6Vi��NT�1��E�R�Evu7�W�f����g�.n+/'��c�a�Q��t���>�b�48�yT,=�Z�E�ԧ:,j(��M0eB�|�8&�"��a�/
n�?&�*]ge���=���E�o��~Oy?81�,��QScF�8�h���$WYl|42�Y����>�S�3x�Ql��J�����W	u(\ir�R�0����a
=š�u��~f�T(e(�,�}YqB�E	u,��mʊƺ��6z�7�<,�[鏲�ԧ�]M`�qH���R�66X�����1M�,nnh��p���p�=C�%��P�Ѽ.?��cXTX�V��<�&�c���4RP�G��~����������q��讑E�측��YX�ī�7��sX8���6PᲡ����\�d�
T\!Q��Je�y8^2�j,MJ�b+�����첳�,�J�^4�/4���E�=bҋ]F���s���.k���q���<���X����+/Me���iN�C詸���J.nR�Ƴ�Fܲ�%��o��V��Q�C��,�QE�1�\x�hx���EM��NzP��,�]�h�7�y!4V+��V(E���
���Ի(Ѯ{�c��C�x�(��[/���4"�[��gE�����P�Y�,�h�����hH��>��F�Y�p��"�v�Wک�|�o++����p(��+#�<F�$(�ʄ_ع�Wy|-T��.(�����g}��k-a��F�C��Ჰ���R���7�U�|��e໔��Z)���wU߷�o�\z�����⻊ʥ��`�������N���  0@P`���O�8�N�I�~a�^�$	$�LI$�I�94����/ɧ&�O�}�Z'�뤒@��C�I$��i4���O�>�$���4�Trc��8�??�̓�I$�����_���I?��3�$�m�oē�M$��9$�@�_�'g�Γ���m1�$��>$�I4���S������o\�~a�[x����I�����$�$�O�9m��c ridz��B�W��"$�I$I�˜@��_����F�M$�s����7#�>�o���O�[�uHcC�I$�I��/�u�7�F����LC��?��|�_?�#��$�DI����)��>t�����H"I	�P�|�03�2I����I$<����u��|�II$�@�I��9���))��`�I>$����˭�����0��s˭�����7�Hc���D�a�
���r1��I�'Ҿ����C��O�3�?�W��(�0H��_>A�8�?��I9$����ϓ��ϟ2��O��$�?&4�������������m�~��~�_����~�V���?!8c[����I$�i$��I$��?�߇�������M$�I�$�I��L?�|�zt�^���L�I'''&��w�+���Γ���/�>��rM$���_�)۠�
~O�Uq�S�O�~���4�x�}	����ǔ����'�G��q����<Q0���^9�o;�������?�>y硩��}��������~<i���3O��+��#����W_/��xG׿|�9V���ǘ������?�̒I���?����$�����n|�<�@����|���/ǯ�>g��2�DG�x�m��k�m[m���L��>�yo�J>}d8y<�z��O���I=x|y�^�<|��g$��{}�����z=I#��g��W����⭾Q�s�ϯ/]�ʟ���Đ���(�h������o(/ŷ-�3������u3����x�7����s���*������[m=
|�!��t�o��W[�<��"p�9?ѓ�u����ׯ��<"&j���B��>�~}U��.ym��ob�=/���?
�t����rg�|��>O�'�z]�9|��Z�?�O^}��J���C�׏g����"|{O>E�x}�w������Γ���;{~
W~����{=-=����>?<~GϷׇ����z��'���3��ϟ���O�*�|zu]$��ߟN}x=���}7�֣��&��{_�+��w�)�|��ǯ9߷�>���<�^D���_/�'�|�/��s������x���	�3燜�����Ӡk�I?�rgM1�����ry�y^�?����0��-�����C��*�z�5'o�N[mu�ɇ9s��x���jh|N
�@�y\���؆D|��>|��u}����ү��1��@�:x巗�8"�ϗ>r��g]~����Kr��u��|�Ģ�ן1w�9�p�8�~a�����G��y��?����ok�~L�i��h���&H��>���ϯ>#�G'��S�ߗϝ��%^y<��m���߳[�I�'$��u~/'8��Hq��}���C#�˂��g�>b|��d����pI�����I'���5�Md�����8�8�t���r>|x����8o>�p�_$3�E�Au�T�Mi��E�[p���>-�i�8��c�Ny��T�h� >}""g���E�x��S׿�L'Ã'�!���G:���7����yV�g�-�]>�o*��\������c������s�Đ^�����C/ND��S����-�ε~_�8�O�g��i�>>Q?!�O3M�;����3Ϗ ���<��_��y|��w�t�ښ�m��m��m����n2L|Mm��e3�_���:*|"Cϟ!'��.w�?�y�q����|��P�E&�i$�rIy�
��:.��&���3��`W���#��ϟ>d�M�R�<�MsǞ1���G>d�$�@�I$�H`���|�WN�����r|]~�H��?3�i�\�|��'/�-3��|u[Dmj�]�QZ��^�~]9��C�+�$�5~�?�ؘ�ܚ[?�<x�4�G�!���''/d�C�Μw������;U�G��8 -�-3�^<��p�Ӱ���`|ş�!Ɍ��/�����ϐ��8�3�>o��s���>uz�f��n���-��I&x<3˯D�4��m[׳�k����4�q�˧�<���'����c\d��zr2^חZ�P�ӗ�S�u98i�G�4�����<ϣ�-��>Ƕ��h�[��q�e�!�M2|̼~_��٤O���|�q�n@����T�o^�g#�Axkq�=)��5Ҋ�C:c:������8�kW��4�k��i�QΜ�}MW����ğ��e�ǘd�t��g����0?����8:�H�]>&����:r�#�$~C��s��8�[�#��L�k�Mn�[׃հ�˒GN^Hq%:��r���p��z���q��fDG�Hv��3�%�,������G~!�5���o�ΓC���&�uy|�x���y&�y+�߀~nq��m��yF�qÊ�M�.�
���^<
t׃��S�[�Q�g��ӫ��dο��D3Çmɮ85��9\��&�u~k��tu���P�|�hѴ|��y�u�]�z'�:�&u�p!��e��Ddΐ:jp��u�
o|�NLd���?7{>����:i]GL��I1�aS8�/,q��\��x댗K^U3�
ᗖc�w�I�>@Ɍ�xq��58�#��G[Mbkt<3�9m�@Sg,X��W�fu��RJ�59$�#��&C�|�����|��րj鼀�rqӠ�u�C�� ��r`�q���:kV�
�y�x�4��<�&I�Ö��~���9?��W�Ye<�p��,��yGD��r�^~O�����W�C@�w������9j�z�����<~:v��5�s�@����GE�w�8�Q���<f�C���!�!�k%q������F��v�5�sזI�ƀ=]�ֆ]m^"r�޺����'+��V��=-2r�D2�:�<�뫆�������������?��O�������?������O�g���3�(�	���WD�y<S\�%Ҹn�,�T�d�S�r�42�rr�N>d��&���ĉ0$0I(c9�̑�cA��)��3�(��⣗�H�q�s�ic���h�4�*iO��$�&8�\:ܰ�8e�Is����&�u��:��tε#�1�����<��
O��N���Ex������$�4��m��:DQ8kU�����4A㌸^�5���q�pS�i!�L�}d�I�k��3��]4�	�8�Î2|�3��#&]WN�����f2k���*�1�>M2�x�1�2�2̎�ɨ���p�L�P�n��ƼE��r_��g�DǛ�9���u�\i��4�i��9�Α�i�΂\/��?3������#𿪒.N�u�tΆN�\�t^X�P��C:U�#�
��]@g]^UW�`r�/'˂��gQ����+5����>��^W(ؗC8\r��<s�W�}]h��x�]nxy�'��y��$5��$�?�.��Sz��&�\e1�d8j�.��w�<3�C�� q�>"��m}��~e0qC=]A�dH8G�u��`�S'��Ìyp���w��d䉌�׏k�5�c�ƀO-m3�y3��"[�1�c�W�:d1�g9�{�>qʦ�NK�qᜆxv�#�'+��k<�A�:�5낽0�,Q\=��Lr�ry��Y��
�P��1������O�
xp~(�VrYǎ|�~Bq0L�:3�?�o��v� <9r
�py��>��˂<���D�'NZ��1%�|��"�.�C��x�r�e�|�]x��xp�z������K���>2;�-�^H2r>S�
�8�鞨O�=:�q�gz��^_���G3�,�۔�ӣS<Z2O������c���y�<ҭ������/��8j��ǒq���V����#���:�q�V
�:�����](�d�/?n�2辑��5�톁�O9ʷ��	�R.4rG����<���W�W8�#���\�9x��KW9�������_��}��.��t8<�Q�5�>q�c��'D*r|
3ٌP�C�q1�	�c�n\9���L����\t�[u�Ѹ�ˌ��
�ۜtW<���Ì���1�L�Y�G���:�rC&����&9�������+ !01AQ@Pa"`pq�������?����z��l�K��oE��-�З�����1�c�1�c�1���7�:�}?�Վ�n럿�j�\�#\�E����C�qE
�E������#k�LBC�e�5���8c�2��1��o��c�x^O-��O�}���⽛��w�u�bN���Vt�ܛ�Z�w�g��V*[)�$_S~
�v��UO�m��T_R��5!B|;�E�K�f��^���_q%B��wɯ�-��&����\W��Q�YB���Є�؄��E�k���f��!X���Vjvhc��ٹX�!>��ӣ��hV��oF��ؼ��ï�BqP�:-�*/>�Φ>�jv\TX��|F�<����/���L'��H�'Ml^䎒󿹽Ke
���8w��(�z�8�U�{�B]�����-HL\:�{��(�jk�9٩�/��W��n�Z����?��iF��^8��[��R����r��ò�W������F�_oP�QE���l�m��_IeN��\�lhe���y�Wo��k��c����ʖuX�ʛ䢾�|��ۊ��:�7��X�_�o�6k$!.�
��mᳱmP�vR+��6�ٿ���\�#y�-���oer�_�����h����Kp�|4!�(��ˊ�U�寊�\���CX�B;���F��ౣEF������.*�{6W���l�4h�w5��7���E��.Z��4v6�
��4����)񯴬��±���͚lw�k+
寲c����N���.���ʋ�#ȱ�Q���\[��axP�';¹X�(��|�C�2�,�Ɛ�!B��!5cc�_�"�%��,�������������~�2�}K�6z��^.�*��p?�����W���ʄT8�|+�q_�=�z5e��Cθ]�C:�3�c:�c:���⩬���F��P�Ƅ��^h�+:�Z�v��S��_|h���]���?C\?So�.��ٸ�F��p<�k�������ؑy�k���E�}���Q��B�В=�Q��#b?e"�|�:�d��]�j^��x�XQ��_6���-����7�'�Qc¥��x�TX���%�Z�e�.n�4y���/��p�p���1.�ڇ��Z���b,^O�ذ��WB5�(�T�r����G�V�~��]��������!J/�݉�Sh�)�?K?J����h�f�
*,eB;�Xئ�/�<�<m��
�(EjkqVy���b?��[5�B�!	�7�=�q�������y;��`��跅�~��SZ��2��6,*VW����ThJF�F��>��65����C^W/��梜�.4~7�
��uC�q��lhp�|W�P�E͕;-�<�^�˼5/e_�Wb�b=�}��Y�7Qg��Ÿ���KF��eC�?�z��/��?C���1�~�uc�3����7\�_qp��8�4켝Ş�qC��(�#�=`���c�e��4^n-c��v,�Ʋ�V��L��ԿF�cP��…���~��b��g�y�p����
Js�H�zW�*ox�S�jv2����łCp���y�^�٣�خ����ӟ�z�
6V�MB����W�r�k2��������qrЙ�|�ؾҡ�z�qB�(��t5�+�y7�L�)E��Eˋ�b�
�$#F�k��p��Xܢ�/%�j.�^z�������/�E(g�(��/����or��)�,�ʱ��c�ϳq�Ċ�eC�9�g�cE���W��G�E�m�T~���/���yyP��^_xjS7��!��^D?y��5��u4YY����)��ٲ�e��(h�.5���Ƈ�K��9��lR��(]���-aXZ4*�f�*}ry+�Sx�b�ʚ=rˋ��|M��EK,�2���U���Q{/x4�ؼ+���±�`��(Ֆ_r��i�11ef���75��I�-ˡ�/8�(B^SjԻ.wP���,���qqecn|F�Y3�Seex:�%Qe
�Bg�=�Qo������x7�C��Ä���n_aR�Vy�'s\H^1�p�e����x�=‹���uwL^4<�+C�����R���ʟX�E`�,�^��sQ|��/C�Kqb�΋C�j��se	���+%����O
.<}6Qe����Ѩ���qn�yТ��[(�6Y��nZ��P�Y��Xk�T_p��XTТ�R�k�YC�型Ƣ�^���
��������/�ⅅq#�c���.=M�w.(��O��,��Q��\J�l������E�<q1~q^YW;5��?�|.+5¸����X�b��������"𢰩EͳE६�nT3qX$!���o�"��N�}d�:�����7�輫+�\W�E�B�̢�/�_
b(k��themes/images/muhammad-rizki-1094746-unsplash.jpg000064400000416045151213255670015427 0ustar00���JFIF��C


 ("&#0$&*+-.-"251,5(,-,��C	,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,���8�������z��2�˜�ib{�	撴�1lVl\ɬ��N��)bj��2s[S1�e�ƚ�c~����U|߷EǗ����%q���1�k��66}g�Կ1�<}`� �P!e!A\�E` A%�EYe,����HPP"P�F@� �V@��$=��!r��G[+:�R˜[�L{(D��(J[\��.�=v3O5��5#�٩�5T�W/��n;�v�or�ϱ����>���3ǿ1��q�¾��{�l����h�F�H�h����W� 
! @�,@H�A$�[J2��(����
 �B�D���)��� �����k"�t�J.kLR�+��.k5v��.\�˵9�E�Vf���Ă��|��/����q^���?w�[��~=���γ�?�
ϙ=
^�vu���=S���@�d4�
�$)@=��X"1P(AV�d�(�
 ��6,D�
��ׯ�<�h�z����Vb�QE�IU��X�͙K���vɚȗ�����j�k,\$yk��o�u�y~O���p����c�[�O���ߜ��λ���Zy��:�̽�:�e�$��!肞@T͂RDX��	 d���UI�`H�b�ƚ�@f�����F!@�9z�L��5F�zdl��-�w4�ًp�"8�[W˷�\���1ڑ�,έ��hi�C[�n_/���ߥ�}+ξ��7Z�;Ƿ3:Qy���Ϭ��;>`�|�
e@j�!�)�@�FE�T\�U` ���$�f�@B,E��@@"R	!@A`=��̢թ2�)��\K�[�t�Ǹ[1QJ�˦�k���w�"�_�yl�-5\V:�5��|wO���pϕ�~��;Yy�]�yjE�76}c��g�����d`.Z�� qG�"DX3cQ3TVHF �f�X`$RHeA�"k$�YdU%YQ �  �P��^��\e�6L�����5�5YC4�JA��l�Y��Lɬ���KC6ղZ�I��&�O�}���}��Ͻ�'�����9�^�k6�����w�߇g�����J� �, ���J�D}!FF�%bR@�A�� �P� `P	a�d DHR@@�9z_GΝ2unM��qX�8�a����VTc%e�.j�gM�w|�#7�Yl�Y"�)���b�5˷����O�<���x���,��yw��ksV��O�x{�>Y�|�-H���*�$��F��UW6�����Y�:�	Qa%e�ԯ6	eZP��P	�@�ef�+�EP�^���Մ�͔�!bضc&%�*cـ���e�b�.|��=73v����9�[93x�k���sk[�}���?Oy��{�?#��)�^7�}6-:���g�|=����b�4@����@��渄1YA$�J�胊�k���AR�)
D
B�(���(
�*�D,�@/���k/�g����ky�Saf5�34�$�\�!Y�.t�����dM��d��e��Ի73;�(\S\�mӞ��:������y?��\��xz4�L��N}1�ێ�-��v5�H�I\YL�+(�)\�dd(�@��*�")n����Ԥ�(�`B�@� @�@
�
0�B���
AKB��/�r�ߠ�&Z�2M����Y�el�vc ���|�l��=63X)]�mR��ۺ4�5����vx�|Wk�ϟ{�7+��3�k���ӳ	6t���ٮ�>Z�(E����b��X@Ae�P aI!e�`�HIWd�Re�PRE$AAV@HUjR%�VR "Z���=���V/�[��*�k��)J��+Ke�s&�)�^���m':D��T�\��&o�罇^oN[ϙ��_?�'�������z5�K�e�F�N���Y��a�V��ӑAa$(�J���9X
0��u���6�jΥ���H+Y@IBPP  U�$�� �����谁��)Z�T��+��k0�l�J��uɗ*ku���YST �ٴ��Y�.$����˦�7?;�t�;�yG��3��;�k���օ�w:��ҵ�������n5^�dED)Rʪ@�
)$�k ��:2�1��od�?������f��f��(+���B�
J$����dA@*�z.=7��є�X�#)J�ePWf2A]���f��o��ΧQ�q�n��5f���Ϋ�=�N}��;���|��~kK�~�+�Մ\�6}�׎���
7$�Vo���'���E�\1R�*�Nj +RAXH¬�8*�::(J�d�f�J�X����(�!$J �0�)

I����E�I�\=��E���V�"V-�iQ��e	b�5����\��U��mU���ֳi��v�t7����/���g�k��zز�:�����5�ǫ·(I���܂�eWRD��Fw(k)��"�H0�,$�J��¨	^u(� �A��@���W�
�%+�
:ŋ����x5y%q���["Ȇ]m�f<cX� ˑ.�t�1�2i�
����TY�W�yޓ�:Mr�g��x~���o��}_��/�Ճ4�k=|�j|���V�T�4T2�Q5m�
�3Z����2i^t�(ĐH����gs��ʱγ^u:��J1V���A�*��H�3E�@D���V365}��Tk�D�
�c�J�,����s��z�ͦm�ga!(�%�W4�o.��/�l<?W���1���ϛ�zq3��.z�Y�{>k��RH�$j!j"H$�ai̷Js�e�L���PtQ!D�QF"$Z3[Q3ad�@�dX!A!@%aFX��(� �1赬��u�"��t5�J���n)����G]���t�g��;�:��^c��l��b���[�c��ǥ������������:��ΰ��t��7��(
0�HK8�35(A���
H���B�*@jNS�"��K4��)$,�B��J �
B�
D�D('����[W�B��,b�Vc��JR��%&R�Mm'M�zlq�k^Fk�Kl�Pլ�5�s�?n[���>?�_��s�T��V|���FuM�k�a5�x���ëEGaV�!D��R3�e�
����lA@%m�I^�&�X���X�Qe�$P!T�$�F����@����K-��/\�/,�U(Jnu�ZQbي��f5�.�t�c�t�1��-9fm���7�:$��w�����e�~���}/���.J�^ob�T�)sٯ��֟2��T�"���4�L"ؕ�(��f��Y"�1%Kp�Œ�������J��gPI(�
B�*��K0(I��JwY�AvY�F�Zؘ�%��U�X&2Te�T�.d�s{������}b��܋��H�kTL��|�]�n;$�|��gW����`z�~v��y�u�ӬE�b׻c�R|���k"�:8����+ ����@�)$� �ZVX���M��d�rQ�N�YՈ��A*"�
�M�((�ʨ��X�J�_�jlT�ҽfR�(f�!1��	�ե�rf��9�5Hٸ�ɝ��ԵK6-��'y׆��G��<����=�6�g���X.;5�n}�~W�*V`�,+Z�BčDΡDEd.SY�ЕmeQ�DQ6�E+Π�EhHX�@ Q�!T�"
@��s�Imi�!r�,�1��B��ǹ�[*H�=6S��;ʛNJ�󦚙�Qs�i�K�u��7ϧ������~��?O�<��Ӎ5�p\wm�^za��}�L!p��̂,�9
"H-c%Jf����Ԃ1�H@�$��� ���Bβ��(�$
�VH����AP�z^=":�Z�]�$k0��""Wf!a\a��^����t�g��K����d�4�)r�q���Ϲ�>���~���r=><�����i����}�}~��'_�x��#J֌�H�)���:�g@��VI����\�uS�3���Z��"�j�$�
�B���D�@(+*���Z]WːYL���Qb\c�cX�Y��^[	����M�zfKڕ�U�L)J���q�{v^��|����,t�o�*�L�����h�K����O�|���9&�����4Y
�*Jj.l���$����@�@�kj�,ITBܔ�Y�՝��@
V��$�B�((�II��z{2�qd��J]��Sel���%i]��.|��y��r�α��PU��i!M7�|{����k�?G���2ΜG�ӎb�s�M{~{a��]�R.t��8ʩ"�}!Y+	Vt�ɝV0�"J�(�MWc���y�9ZؓcR!��(���Y I�,�"�
A$(Qs
@���/�c��^_.Iu#9%T�w(�)V��.Dղ��6o"n��ɩ��+�%&�3����g/e�[�O�'�6��W/�QU�-�5��﫹�����E�-х%R,�+�mEΫK@BU���RJ�j�	}'*�
I
sBHXFH!TdDj!��c����,�R��3$(�$�z{D�S2�]cYE�6W	T�YY]ŋd�d˛:f�y��\B�*�TY�r�5�)��^ۿ�2����ұ�ߤ�>�Yx?�l����p�}��OO$��5f�‘�����V�*���`I,��Z�����N��Nue�*���k)� ’AW,U��DB��*�H�@����ef�:See	8c���\�k���YsY8�I��U��L����G˧�z�Y�v������O�]�Nu��Xbk�����9﮹����Q���I:}@x,�:�FE�4�5�DF�^��P��� I
F*���D$R@�@"YEYDVX:�'��}_-�YHP���==�˒W2ɖl.k)H�Y�%�VAa���6�s�魖w��W5I���t��-r�٧��G�2f���X�>���8�����M��w�{�?F�X����QZ}dΤR�eF�l�UH΀diHW)��ET���a[���z�i� �jIX@�J�Z�*!�XA`	;��!e  XbHP�=��rR��Vۖ�
��5�A6�d.\��w�y��fmh��L����,�js{OO�i��{��s��~#���Y/��]�לY�s^َ�}g枞hI���}HUΟY�6p)P`J�!�
r��t�q�R�2Q��i�A	X�RH P"@�X�AUeT��6S�e)h�(`�sx��\��sj�Fɬ��;�-3nP��(L��f,��u��gg^��[��<?������yz"�{�,�)}�=�6|���(��# �jĪdi�dJ�(��*����Y`*ؐI#���ך� �AX��*�
$,�\B�* �Q43*�z^{TgՅ��%�RPJE�	��r�ܪޒlf��>j��j��k\���spԚ�3�w��c�a�?_���{������X��]�'~׸���~l��t�j	�`�c:.VTQ`�b	��H,�Tc��o_>����� 	�$��`�XYU �%R@�Qӳ�ʹk"��S�J
��ŋ�ьɭ�zeMߝb%**�fȊgB�Zis{�|�o����5:�㿦�.ç*渟?���5�N��˗�E�|���)#�;#F�fƣ�Y��@��e@�
�
(�Y*�,m���1��5%`�Hˆ,�$
���)����D�

‚�Y�j�c�%�j�JUd3E�ȡb$%�qd�S[�����f�����gO4�6h3�A����N��~�Qy���?��iθ��Mr��;���v�5��w���VĒ�U���RPH������*����R����Π@�Q�+X�@UQ�E,%R`y�e@A@==���!r�bے���,�+[��",�%l�*ke�����@3��d(d�MT[*��znX��~��=s��y�����Qb\Wg�Mz����|��<�9������Ԑ���CK,5$���AL��2Y�&AlՊMWq�r�(�bV����D�6$�"�(‚����糮H���}�P��bk�	EX���VMm'L��J��Q��yafj���9���;���״���5�ȿS�Mݚ�x�?�ʵ�ҧO^�NkX��|%�3�+YA�YIVG'R3k�PZ�	PRQĥ� rhD�*�A���Jl�tD�QT+�r.Y�h���d�U��!�VUD ��3�r�YԼ�ʋ�ej�F+ZP�*�b�%ɚ�N����X�kPd+��Z���3�J�9���y�q����ix?���n"��f�jt�5�/4��.�d�G�F[.j��Ae!T�,���	H	F��鑅I	�GIT�"�Ŕ	 H�ad� eQ��3��	vE�b�X�%ĥ��BҠ\^��|�d���.+8�ӫK+(*V.7���>L�>�����/&�O�6�b��p��7s铧�5��~qzf�Nz��/V$�������*�$H������#�,�r :���(��
B����V�����
�H��ᐳs�miĹ�.b�ъnCN�&鬙���:n�h�Ĺ�Q�Σ4�Rj�H9�o�=M�F��}��}8�/'Y�θ��+��=!�M]%ǀ�_5ӵ�.3��:=J1iX� ���*�"��ED��[#���ȵ��ȍ*�
Ƞ,��)
$((ĕ���,�PJB�H���]^^^T\֗�L��&%�T���Y쵭�u�5��L���1d�E��u"V
�w�}^<����~�H�忩�.��Y5�p�a�T���o���~!3}���UMŨ5I(,HJ*̵�RJ
0#��(����H#*��)��U-�*�B�@�D�
�����TKz{������X\��77َ-ʥIF�_�r�.vzm&�%�T)"S:����u�c��=����o���W~o.�/����q�=8�5$�׭M���Y�k�սOOsb�=D�`,14�WK*Ģ,�����)�� @���¬I��B��B�
2��S�JĦZ�E͖JQs]�EVUeB%H������l�M�z�T"U5sL&mI\��/=ϧ��n������S���?I������8z0�K���f�Iym��,�Ɏ���
�G��jH��X$���
�X$���F� p+PdbZe{`��wZ��	K"%`��H$H	!@%aԧk��
���+e,��)��/�E�7=��zg��X�Ӭ�$��9����cT[���}���>oOY�[���?Ү�:�xz�l��=-��X�gy�u�=�-ϓ3��[d#Ԑ��@��*ȣ����"Ԑ1$$
���
�V5�A
'�Λz���P��	�%�X�)`Pf��=O=����!iB�R����E�]GL��]���=s��F1�XpTkhE��4�iۇG���/�r=|�K���tk�θ��.i���;�F�Y�C�۔���<6�Q$��:;Sr�
K(Ԑ(B*�)*
)b15"1�����:�\@B,{K{ӃO4eG�B�+�	  ��@=*v�������e-f���d-��]���=s��j����j\Ul�Țʎv^���������w��o�~�����(�>������s3�1�5��:eMi5��o7�`$bQU�$�UE,!d�E�I��j���+�IP����b*b�V��Z�W����0r��f��!R��OU�\�.$���,��j������X��\魦z�f�֛+�[�9p��l�e&��;��z_7������zy�����.�:�z��絚�
oo���8z��p�9ޜ����������	EX$�@RIP�E�xj�QE�-�Il7U�+��C�:�x�ʦEl%REX�PVZV@`=vq�.IZDZ.i�k��Tƹ%�,K>oe7��]5ZTV^�˂��ߍ����ݸu>ooE�O���y?��ۥ�?�x���'O]���:s��N�~���Y�p�fY ���	 �k$�@a�,
��*I$���U�}ZB�VOYu��(fR�PP!@"��`%}t� �r�B��"攤��J����/[沗c���LL�b���6��Y�j��k���z��<�������o�~qZn]��^�[���ߎ�>c�(d�����]s�K�dR��d�@��F��l@bQ�E.� !h@"%z��k9ŚU=]��y3�؉@AA@�!HP=&u�V�.j�(���D���Q�M�w�:l�%�
��Ϊ0���yC�v�{y�_7������x����.��NK���>��6��ӏ�2u�9������\�!R���@��,5�2���H��\��\94��AZ��Y\م@�"�7��r�Lġ)
���)
Ҩ��)�3��K6f�s]ʥVIY]���Jɲ�]�[l�"�J�%��0�SR�F7A������9w�/��~�?��{q���t���8���}$�f�����s����fA��	�D�l%`�U%�� �ʁb	�A�J�U�J��U
�0����\��*��(D�� z��j�YU�"�2��f2Wd�U�����FT��;�M�*��SRd�R��:�(S�5Ϸe����u�\ּ�3�_�m�r�r���>��wq�}xyǟ��~�r�=�/���x��bA�!BR��%{HZk�V�TDa�!e�
eH�Z�^�+�cњ�,��#�E!]�!dR@Q�H�p��̚��ˬvQ1lt���K3�ɗi���UKj�T�2�(:��1�'>�o^N����ן�?M�}������zl��ˎ|y3o��kf���[�>���8�$eV^���k&j.RW ��I�ekGH�`�	��D�X� �����Rx�@�H�,�A"����"���Mʔ��!U���7+-I�YE�[	���*ʋP���Vu�P��*h�w�}����|���z����>�x�u�c�Y��O|��;yr�y��ߘ���-��b���?�p���~@$Ԡ R@Yd,,�įb�T�$2��T�
,@+�V��(w7^�f�<C:�R�Xfљ Q�����H�9K%��HJ@�l/2�c5��2�%ŚR��Rl����[$���|���������7�;�o��79�]��vD�|�O��]W��Oׇ;/����7^2�����k/�|%e&�]�X �A@ �d���Y ���P%!AH����m���{vP��AAXP$�@B�{i���ѬTk�k�j�*L4��D,.�5��zd.d�e�Q&\�2�5&l���n��
����o����?�9�}t�v^�����~o��ϗ<���6��f+^��r9����@F$�l%�e�$��拘k"&�YIz�P���{�>�S�9�YP P�@	�K��|wel�"ư����c�g�B,:k!v�鱛�H�[�Y���q�̜�NS�N�:�'��>O�9>�_&�?�5ϯ;ϼ'[����G�9�#��S��S��}M����?�2���H�*�=��$A61$� 2(��I*"�@@��C^����J��D��zN{���[���8����c"b��&T�S[s��f���A�ᖹ�[J��]GW���/����r|�G�o��%��?Ͻg��N{?��zs�O#�Ӻ�>;i�J��<��y�	AD`$�$l`$��$RRG	Tr�:5�|3�ѕ ��@@e���V�lA�Q)�q.hYJE\�6k>o-s���"VG2�Z�o6�����<_G��?��z��������:s��^^�M������?�ϗ���]����qӯ�^��~���<��u��%�ql�E���D{Pe[�$tV���A`�ZɌ��&Z�
��Ld/���@(A2�
�
�g���P�d$�Ԕ.2R�"QVT�sYM�e��U2IP�,��5���];�G�w���o_�~��=xs�����z_����Z}�+����S[��7��k[g�|��h������ڤ�X@��D	 �	�%k$Ut� �Q��X6�aIJ�
�OM���|{���B���
0�z>z��h\¢8���YZk�"�26]��5|�*].Su���.n<����~�������=x�o�{��x�ޏ�z��^7N�^WN\�s~ol��Ƶ��o?���6H�J��M�,�I6HA ��"�J*I,��*�v�[��=�*��I,�

��Ke�Sas�%�ZVWb��M�2���&�W.X� ��\���	e��k*^s���������|Ϸ�u����O�ä�^k�z���=&��c��|���k$�k�'�T�8����
J��6�"�1)",�-c *�̈́EHD��_[�Σ����c�*����ib�����w8ia�B%	�%���gK���k7:�pnP��lΊ�VỲ��y�]�.��w3��}|~c�?�mw�?>��>�\�r���\sk����j��5��	$Ԡ9I(�
 ��XV0�(�)�����ױ��I���@AQQ�
H�z&{	�P��B%�8%e)H-�.R�eΝ3"P�yX�hG��&ڳ�4��C�w��/M�;��8��/9�/�w��׎��
na�G��.9���:���kf�Q�$�I�%!@,�d��j.Ta P,� X ��f�ʃ��ۖf ��!@Fb;�wɠ�HDZ��S+Ʊ�3�$�Ml��1F�JK�&���ͭ���^����:ϛ�3���;�<����s�����S���ק/}�r�㸶\�6�Y�7M:�K(����(����ذ�A!*X$J
@7�ݸ�����w
K@�)$��0��g�aQ�J��+f)X�%VT������'L�ΚS�f)-�\r�N[=='���}����p��O����c���Eʢ�}����)���﫟΄�$j���Y�%�"�K�Q�U�RW�	 P"P_k�ʵ�u�Q$�Q!``U@	 D�`����!1�U1�!�Q��>o=vY�u���T�����r�ry�{ۏG�>���xG���;a7��O��a�խ���}��5�\��W�{f�=+a� �R�@%�"�TH@`T@�lbeK�&��A@a���T�ۻs�c��ߑ�	j�櫹@�{,�,�e��ň�	�H�H���.l��o1m��%E��2��	�	mN8��|����^��x_�?=5\�r|��el��W��=����`�r=�1 �B���B�(€�X���Pͥ�D�
0�@*���ی/˯ H,
0���w��u�[eJ�ZYf���u�(���D*��a.B��M<�X��8�X�Si/5�~���ou����p���nT��t�zR�,���7�x��h2lƔz�`&Ȗl�@Ru�R	���V�儔�%�@�@�櫰"_b��5�_�~0PPP��[\�L�+�$Ź�+�\dYZA��W�˖�I�0̚��G�`��k����y`�Ɵ�~������sm���p���~D�Lt�9�+���=9�A�y;<glPG�$`���	dH`HY@aF$�%
%�	D����!`&�}W�25ϙ�߆�PZ�;��q�Ź
�R�X�(2�!vK���[%E�nYV�BW���U+C˧Q������>O���������ާ;[(�R^�Y�l��HVH���"R�P�j�@ ���l�B	$�BXeD�n���>o�n!@fՎ�=l��n�
Қ�,�Rc����$�\����M,�P��-E�[Vs뉬��gW-yw�>����~7�t:����δ�h1ګ�+�.��F��b{V%
�f�k �"YHPQ�$a@���	 �QAQ�$�RbA}S�'\���9�
03h�0�v��p+�^�\�E��$3B�e&<5��.k[i��IqAf.T2Z2�j-[�z�GC���|޾��~�F����&Lփ�]:��0�z��{q͞)3
$�Œ�P8��D��
A (�
0)
J�*�l��kX}3�=���w�3AF	 	 �����[!)J�#�Z�.o��o6��FKQ,��"����VJd���q��o9�__�E��,�O�3�7>��>�ez�ע�#g�L��f$
0_b�\J�T��0
B�,�A ��0�B�,�y�uϟ�׃���f���3�T.�l��{��.F��d��.���9vMf��-SKՉz��4�eI�����uӞ���o�h5��S�=��s���Y��S��y��$u{��`l
�@$�ɤ�@`F�@X&�����
�uӖ��_>�;��-Z�B��«���Yǹyl[S-v-eK��KY�bZ�,3R�h�۰��i�#�\���U�����h9��r�S��g��w����2A H�J�I
XJ *�
B��$,�0*�A3Qr,����o��-nz�����%�s��I+�Y	@YI��<%��y�l��W5RX1���UM���6[5�s�}�N['��G�Ξ0�7��n4��r��M���^��1^!2�h0�$X@�KsB��� B��,�4��
B���R��+ �q��:q��O8��IiYe����g,�� .P�QR����.j).%.\�b�le���,k$����*�ˏ�f��λ��=�G�9�/�~���ۓ�ޤ�����[9z�	�����YU@�W�K��@PV��$�bHHP��7�8���tU@	 	 ��DE�*��B���ɹ�TB�ʚȹ�k6k.jU�W�G-Tɮ�sp�&u������:/���޾_3�7��MW?G5˶.�M�'�5�6r6x��	#@�(J� �@AR�(���(�4�=~���ㅞ�y˨3J�I��2�����Z"b�IZZM�!aX��-��CY��.B�-�v\�Z�VFu�0������'�s}|�g���:s����s�E�ܗ�oyg<x��H H���(��AD �,@@�	
�u{�GӍ~sǴ�g�-���1p�k˒�{��Z���rZvs��.X\!���Z��K<?Q=�/+Y\���n߷
����+���|�]�?�暌��jl��O��ny��|ձ@�v��iY@a$�Q����*H$���� F�Y�p3�5���'J�0��U�"��D0�++��ra�*#>�&�Z�(�[��L����{�f�u�.>��o>��q]������nn��ۘ�jl�[�K�}*k���h &�H��	"	�v��a�(�Vd�@mQ�����y|Ï���|�MS�����	 ��s�Ȱɪ�����J�٬[^Zɹ��,��ka-�|��(Ai�ՔS6��Y�7���z?��y��O2���Eϯ=�ȉb�uw7:E���I�Q$m.B	��aF ��j���f�@iY����S���4��f@,������f��iY�s�mp�
J��[�����s"kf��J��\�I�fZ�˃�j�:�wϣ�}m��\�W�?��4<�s��]�ϧ�u��=��cJJ� �I
D@( HA$B����Ҳ��g�����@	�=�,2�,�1J�B.k$!��a5b�*ː��E�=I�X��Q�bY8����=��\�m�?�lt�y��c�w5��Z�ag6�C�@,�M5")��

	 *�KP�(� B�J�(J�o���>��Ya@�=kͳG)g!b�(++),*&�&i�r����͖�m��a��2l%|�+]5�k���|߳�o��_��V�y�}y�uD��g�:����*���@D�BP�Q���II,��(d�<��ڰʨZ�y�8nʘ���gT��H����3x�Sr���Mg��櫪BX��e�-�Q*˃dg]6��>��}�n�������>�,uK)a��u;���|�$�V��� 
��U@	jVXPg�Y�̇�Վ� @)'i����*R*�C4��@�w0�����d��M	����!9е\Pu'G���y��˿O��Ŝ�.�,v�滐�N�9u�VR�I
	��JX�XUH6��v�����b�u�u�d VBb�X�5�]���KY˕-�*�p��bJ."1Vn�L)�����]��Z
p��~'<�v�g�v%̞�����'��`�Ur@0DH
H���
g�g�ͯ9��4eT��RکAqQ,�&��U����s��+��ʣ��z��9V4溶���ˤ�]��<�i�_�[��q�]��\��zv�S�z%�>[eHFZV@ FaF@� ��1Ns����01 !2A03P"@BQ`aq4#CR$��������mL��Ӻ�[a6M<�D��'q�9W�1F�Q07P��E�?�s:�N�Ac"ɚ������L
�$l���"�[n�:{��+/�2��M�K����`n�'YE�>U��W����*��~��wA�N��G9S$;�M�K��M��`��j�"�w]�k�i���ͺa	o*熲("2L�&��l�(�!�#U���Ŧ0Re�!Ӯr6P���uK��l�`��d�uߎ�
z!K�����A��/.'d$�����N��/�
�q�0_s���+t�ˉ�6Q/�y�t����E�2���8e_�����]Б�%Z*栌̙yq[&�%�@�~�S���T�g�8F3�6Pw�5q[&�%�@�C������[���y트B	�i4Θ+EY�d$�E�L5�k�u�@�D9nʸ.��[#�Bc��p�l����Q�z�iC�\V����I�O��
�9i䷙Tſ@!��LT\���(:UT�.#YLpIڰA��GQŷ�g/?������g��o��)W:t	�s���EEEI'�B�.\���B˗��|?��r78�C �"-�uLG����a�8�Zeҏ�6�v�C$l��[�S��w[�bq�8BOye:ʪ��N9D�iF֛i����OUQ����{��:����eTN��D�iF�S$pA�5�ѹ�XYS��gBU�W��I�J��M���MF���PT7?���=�N����f�Dօ�o���f�'S�Zb�_uz#�IQ<�C�%����Q~�p�r�l�X8o�6E��#�r�
֊�P�G/R�Qz�kԳY��
�J�U�ֽk���^�.g*��s=s�z�e@� |*C�Cuv�|V�8�6N�x�Mg�S<!W.}�&h���w�	����o�H��Ϡ��&d�����5:�x^�?�?�*�ꅲ������V�P�	
)�
u�GN����CyRT�'��{�(z���e:�Y8x^����zu2��0g<�I@�����F�xN�N�}�^w)o���}J��G웤N'l�!dlV�8N���9V����Cd
���&�m��f�+|'yl�X�L���>�ʪ�{GI�B�Q{sv���'�
�=�3���U~Օq���uS�TP�;L̸N�
&�~/I턫e,�}���؊zJ'l���N��eA�g$(��*�RT�d��@~�;�[��F�1I��)�\��,<x���?�o,�ѦXi��u9�X^Q;e:�v�<!�iD��
Ԫ|?��y�3�J��u�@c�O�]����	��l��>�m!�ꈱ>����,ꍲ�r�Ϡ�QQd�� �����?Nԭ�m�+���t�W,� �ģh�����^��t+��G*T
���my�Uh��YN���愞jd.%B�NaൾQ�Fam჈�O��U�u�W�dj%��
���wú�:Iͪ�H^Qt-�a�Q{N�����T��)L�j*捕�Du�[ɺ��hF�~�<���v̷N�t7�L� ��I�e���ٮ&c�Y;R\(��yO5�ҝ��8x=oTQ�:C7���^Dt����D�:�bZM�t*�*��udu��	�>�tJ&�<��Q��+���o�*�����
��:�ʪ�~H�57[eHF�~�<���cHO��i��G��da53P�}!o(���zs�N�a��澜V<#�s�z/�A��S��B������a8����QA�*\�-�f�U=��]�`e���tG�C�0?ZL�(�tS퇆�Z�U�|W�+ub4��:��;,����|�Y��MA|�5J=��N��R8�=+p�[�Z�}�܅�QX�ŷR:�C��q]����� A�����ԙ�Q��}�p���9�V� �g��S�\(�
��O�_>��F���w��e��0������_ȃ4ۦj��M������?��o+���u��4�7���\B��I�u)#����>�.#�����u�U�MKu\����i�?�uHڜTo�Ӄ���š�qR���`�Tx��֍��ݒ���>��L!-��t�n�(g�U��@�҉i�hd6�m���L
w)��G&d���XN�>�e��wy��D��EE�ݪ����\�/j��[�9�%a���e���2���]�~lQr~>C��N���~͕��ah���3��P�J6�w�I�N�
l��
C_?��CdeTn�[�/��N0�B��sb�}8�[:Q{N�u�E+En�f$
�YN������+�F�7ς4�S�Q�	
l���������H��*�k��);��x%��qq�K)Q|�6P��Q�N$�w[H�Ch����%?A��LOw3��P�h�.<h�4o������tô��rTTY*����(7�m�8֢�p�9D��?�͟}
?��:_19�$;�:��G�%�|�}�}���2Q4:O�&�ڊ�o+�k>�?`&zY*����P�J=��>Y\Nˆ��C�b4��=��ݐ;{���P!*��Y*��3\�k�{��8
-�p�O������4C�|���<������WŶ1=圳^���3�YB�(�y:P��Tq�\/?=�gC�)9��
�#���
�A�S��ɿ�g����d�YK:��;�-fQ��Y=��i���@��B�{)W&nj^5}'�0ENA�kXv^7�$Mq��l���{�/�uv�%�
�VyP���r�?9Q�FN���
����4����J�7&��"��i\�ծl9:).4��[ �w���0U��ʘ����g��ĨwP�e��xO��Dy,u����WQ2��0�|�>�g��qUU\t�W�$%��*g�4t�|eyF���F���pT1^`�kyv�l����A[-�*����nE����]	:�xm_��T���I����n����9c����K%�.T�SJ�f�t/'[�ҋ�t��spGQ���yq=�qU\��>���%�4�Lo0((r�t/'[	�ȕ�����	���[e�y�z},���J�t5 �6;��K�N�����\F����DW�^�J�(;�=м�l<.�+��=�ݞ��I�ʝ8ls_��yTJ�(C�YB��{���<.�-�^�緙�>�cu��θr
N[(ZL��������T^˼�{m���*����Yʅ���7X�s�7��.g��P�WUz����iz#%��9��G��}\��Lc�e=�
gr�n�(��9m������9��G�7�(��d��`5���e��P��.�������Tn˼�7YgЄ�%�=��t�AW)5URVP��d�BQt-�a�4�Q�N��0�BQ{^�i=���Ъ�·&w��J6�/'[	gJ/i�rlJ/h��a'n����S5-�5�6�ۢ��	���]� �^��.�� )�!-弶Ú;u\��}(^Dzp�](ݗy�:Q;N�4�x��_�0�%��H��1�=R�d/'a�4�Q{�{e�ӽų�BCR�d�B�4t��=h��P���t��]� �2=�{����	�D��Y�f��D�j�=r����xM.�^˼�:_{��Y�Tν]�䮹�i��	C��6�5#]�C��/`��?)l}�xP,�r�{K5\���
P����Y��B�d�<.�J/d��?)}��k^3|*6��N��l��!P�(Z�L�=���t�v�������"��s'��-fP����BN8x]Nҟ�c_7T���C/R�c!=�&S�(w���EE҅��AU���>r��[�eIm��P�eR*5������n�v��=z�o�\�J��fTJ�5���	;���e�8��z�A�zt�B~�%��yG�d�<6��9�� ��!뛵Z��2�5TK(r�yF҆����풷Q{G2��&�g���=։�L5&P�"�Y5p������f�7�>��1�Q 0@�1AP`�!�BRq��2a����	?��E�F�S������"��_��.�*���/[��
.��޷�y��5�^��)�Sl	���I�ne�J�.��I8>�63/[��j�j�y���a(������^��("����^��]r�D�RI̽o��]��5Q=��Q�u\����'��I8 �62��f�Oߺ.G,���kA���H2�)���n�8~3V�&�AlE�?�l�2x��'Im���wZ_3���� �6ѵ�.��/��/��3�Z)$�I4���9|^�
�����[�$�P&�6���rH�Qh��AD
2�<�ES�N#�O���S�c�aEAPTa�>�xO����؜#(p��p��p	��}��S�"�'����Nl�N M�J�u��7: M��Q�Ԓsm�P&ԍ
Qp�g>�^���m�o'�S���f��d�wrI|<��2g6Է�%9��*s���+���"�H�l,7�I4����?���ȷ� �Q1|e.⯲I�[����B����'E0������&5�۴/.�:`l��I���6ͷiN�N�kx�Rp&|ba�'\�RݭQ;L�.䋸��ǯ�fE�.��3mKv�����b�Q2�qwrh��
�-Kx�?5J�\� �mͳmKV�5:#H���`VnGS�;R�i�H���:&�#��4D`L�U\��(�D�����m��V‹����I�i�I$�X͵�8~P�N/����P@����j`�
�6���O�a�HANo�L=N�?�tl6L�9���Zs�չ��w$q��g_��:+���~r��a�� ��a�$�_5���Ī+
��
9���m�}l���"�E�]��_�C���k�~m^}����rG�����0*���q�?�u���-�r�a���8pu�:㰿��{jd^��
�$�p�ҫN�?7m\�vЮJ���N�]N�t�¥?N���Rt2?�Al}�	��&�Y�5�?JMUywkR���j�ċ����>�?�zwkR���5�#�$�W��8�ā��۽۸���A
�I>�y���p������1$�q�W���A�:Էy�����jI#�G�?��h��O�7�P��
� �N4��A]/�o��+E�A6 ��a��qSq�$r���Nb�)��~b�|���=�2�}*l@�RFqw$]�	[����:#�:|E9w��[!Z��$���@ކ�Nz|{��~�Z�I'�}������˅6|�����}kic��}
�m�|={ݓS$��j��@�{2��u0FW,��V���Ol\M����.Ab\�z��a��t̿~�-�a�$�цjI#���-��G}�I���7�Ĉ~�᯳�W���M�D8w�~�m\6�kjI"�o�v��
I$}D�� o�ų/�W.�� �b����tͿ�_R�k�Qw����h�F�Mb�qW��m���P@�ib�)"�M �ٗ���1$��ri� ��$�e���pAi��0ԚG�ޖ�0ē�j��8� c�m�ڇ����Ȫ��1�z�*�mD
YFԒG�8�>���lp*�C�E���I����1��UtEKa�$��rͿ��M4r ��'\��j��Fm��p6����a$���_�ެ5$s�e��h�l���-��*!1Aa Qq�����0@���P��?2ʢ�?����I��<K��)YB��H���F4gY,_H.�_����S�E*I�>��*t�!ʯ2z
�So#��1���aie�CO�;ag����%��
P����x1�o؊~u�
��jJ���u,s!�N+a��ՓLi�Ɔ�q�EE�Z~[��t�
RRqЬH��oD->;ǒ\�'�;_Фt
P�4�ȫQ�ˠ��FiZ���(�7.
��*�;�N��1�.?��K�n+�2�3DB:��3[�M�5�sb��!"�a�Pv�JZ_��������D���nmZI��y}�9'=:��������u�4d�n�
�~({S�<���?%b��7D�ɱK��f­�?�f%�9/g�(Cj����.2�p�h\^�vl@�1rB��[b7��*j�95�j�ܖI[����E�H��Ў*Rf�+����̢��U��x�r��DSЦ?���&�l>�o/b)��&��v���Kq�B��-LR���y>���%��'�s���wN���FL�ڈ���il�OC����E��}�}�3�<��Ŏ�̍�IJ;�
m�JLz/��:{;�����a��"T�v1P���9�XZ'�x�nd�2;ԏA=؞A��V?�3W�k�O�zdZ�s�_Cξ���'��N(w��/L��&�F�����ƻ���g�R[	&�#����u�B�3�b��ꉋ5R�#��2�b�I�c^Bܺ|��Һ�5l�37#.G�+�v��.��=6Bm�`���P�ٍ�rBσ�G%��qו�[��E��
O`���G�GMl��N�*3��RR��+�nBI�Z䫡u4�_'9��"i�{5S��-�CĹ�
���Bՠ�8؊�T���RT�3�E-�?�mLEy�ʣ��%
�.z��Ր��e�tm���~/��N��]��;�ʼn_��v���n#�?��R�q��R0<,L�����)4�D�A"������/a>uDp�T�z�-3\!t.�Isa	D;�9J1W�26�=8�aq�UO5��8;���LO
�;i��bu�ƈv�1�?��J�b���l�*Y�f�Dεff�Ld��+��g�j����B�r;����к!��8a��q.�?m�؇T��)殗�p)�z��UgDC��}���c���ŒkW?�)?�2P+����Uf��a"r���W
�e���B���f� b��Bk�VM?�E�@��#���	S����%�?�g�=�\�2�ù�K7aUv=�-8�eu�K�O�8&r3ق5~��E�-� �w��uE���^	���\m�*%�s0YV|�{"R��4�*�"ZK�f��9�t�[`ׂ3-n���\Ks��d;��(�Y%��e���s�
��:���)��Ϡ��yB\�Ndʢ�%ɕO��h��d���Z8\�%I�|N�,O4Α�c�����:�>?�>��
�����(ܞA���2r�5^�?#�hM[�N��Piʳ������lAYZ�k��!f(�=�2�x:(�+?�K�t	�&MCM���Dк�
��,Cq�V�UUT�T����⪣�z'M��u��yi�X'���c&5�]'X�f9i{�)��]S"RU���-�t�ʅ*��W�.a�W�jLF5-�M/����a�*��-$����b�mQ򁁎�:3B�eB��%�C�y���Ħ�of]|ź/u#KI���;ȩT�Nd-"��=�mP��N��h��.�1�"Iஏ�ޏJ�[��km}�֒t�W �O�ar&->GIg�N]<�󐛚H���`�ʚWD��ɂt�d"e�.���Sf�����F��b!��S��+
���ݎ\!䬓t�ȩ<h��޺	C/��nr�^�c[M�1�=_����#�|}Df`�vO��W\,��O�k7&؇9ކ��"�	D��I|�FF�S&�$����+�}��rS0�J)bjiI��~��:��`�|���t�<k_��1�h��Z67�s���LX�|��⍵���'Ji�h��*����q��B6cz�	��ADAF�Ä]�w1U���n�.��+��ZG��%y���"{��!�s<�i+���^[������v�:z���${\j�MjcN�G�(���,2�v���b-�ʳQ�J��օ���e���+ZGAn�dtv���z�E�gc:-B���Y�C�˿��DV�#h��D}�
�F�'<����)q��EA��U�_��9�t��cBtw��K�ඟc_N�|��z�����N�V�/P����)(p�n�Sa�]�ir;@�D�(��"�����gD)��E&�G_��F�%1B��I����}=�G[�-�
�K�|VZw<�_:A�Θὗ-߃�v[}(;աi\��X�g^�����#⠶I��#�N�2�N����_RO������A���ؐ���\\�U��B�����G�����<���9{b����k�%%`�u
����U�*
�7^����!��N�T�)rk�RhȤ�Y�x��|�=Z!���?��(R������.�tZ9~�4!2�ژ��X��I�������1g�K��Y3�6O�JN>�d������S�$�UՏ%�c堛d�e�S0􈃶'i6��tH��S���'��'Ym y�='��1����Ɵz�c��t�l>���iőA:@��GRy����w����shwZW:7*)-�u�.�.6�Ź�'��o�yC�=�>�\��ݠ��~��r�#���u�:I����=KK�?�[�4��z#E�H0=;\�_�b�3�Q>��m's��|8��������bLLr��.�9�/���R_1�5����s�=|�����[b��s�vP���t>�D�A-��
"�ł��4�#�гU�E���Q�&����-VEkmz�ޗ܃��ɝ)�/�5ZNŖ83���n7�e��'_�����F�d�����W�T��"Yܐ��T�['s	N=hAsy:dz��e����:�h����WI�����O`s��an.�ѥ�d����:yB���Ѵ�0�W�d��b�ҥ�4ɍ;��qPV"݄��p�	;�>�K�����UpALH]������]��G��{Dܛ]��S��'���}�����5�~��T�u�OGAi.p���Z��
�ũ�H֫��Ҝ�83�[��c�ܡ1��w#Ƀӟ��5̅u^�/��艭<�I��!!�Z����,?">e`��]R��4/�|�/��̩�Q����kM�#��Y���Qл��+�I]�O�K�*IM&��]y�س1�}nd��#_G��k�v����?d[��R,���[��-��'���]F�����v�RZ����z1w*}���T�D��z�ߟb#_�D]g��
�>^��|
R!������O�G���Rv1��K;��X��Ƹ�̉�|�V�tƝ��ִ1�HƵo?�5|
��I��Mk�tlW�J�
ʄ���kP��|�w�/�g��8��+����"Eq	��1�hM��F�Jd�I��J��u�0]%�j�u=EdHe��n�<�-a��*���_4��I�z4X�;�Y�U�`u�Q^���c	;��nt�߇	|�n�vO�+�;;
�3�SjlC���eѹ�t��*m�8�+T�m��	u�va}���!���vɨ��x)��H�Ц�x�wc�&��c����"F!��.P�m�mq�tZd�f�|�Zy �[_�7�zS�R4w�7���йN�����B/HD�^9��a�e��\?�1�s"<t"{lC0����&�c&lJBka�)�t]���Yp��bS�$��b��3ө��Nk�fq��KO<�]�B�%A�.�M(m�l��cU�
ކ`�.�Y/���?��c[�Ɲ���56��N�7ܝqq�0O�TĘ�-�v���'/P� +��ǣhI����+�S��	�W�9��M����HOpT\݇��'����*];��y_�(R����r������wS��dc�n�sX1lj.̝��ܚ@�|}�$Νu��^���w�����*�!a�X�IK
#B�ܗ�Q,ilH�(��Z7+$a	����PJHW�B%��J�VtfC�}Hu=�M��R��� ��I�@�Md΁e��MI4�Ы:=E�c�b����5���Y/����OC��po���2d{��R��Q5��[E�w�Go��y_�΢���U?��(�M�غ��c��\��دW=�r��z��քZ��|	m�)M�%d7\i��!"R1s��_c�/UdT�%��}�;��/G��.TK����<]4�8;�5�q���`���.A�j�g��]4�b��	�����*`Tr�w �)?��$O3�t�5��c�n�3A,�*;��Œb6�MĨ����)��GZ/%z���
�
�~��(9�=����"��Ai�\\�]�����s�5��a��>���^�u=h�zsӱ�\Ɲ��z7 �9�\���8��?����Fm膡$�V���%T�Z�,�0��F�Q�:��x���.��1H�:�J�A/�b�L^y�ڹ�Ř�"dBj���<)�9K�g�\A����hZ���1Ž�.e��;������ē�����T�d�ĥo:I���)�u����\n(�@߁=Э	!Y�N'��m���Q7�¤y'�����֢�jT�*�wڎ��+�7�?��9;�)���W�AmD->NrY�g�;����i1%m�`Ƙ/c�����w�:��pf��~5؊�ISh�E�b|���U(s6�"�r�YV%R�R�%_ I�"���n���s�bP�GS��D�7yQ}+�B+�)��QZis�.�|�
8�`��ry	Z`K�4>93=����!�g�3�%�詖=~��՝�m�c��Q<�s�s~�l��h�nͭ-�jS�-6?E�q�F5N�JDGb�I��+D�C��S(Vf��/��6�Ne�˚�N�s�E�O"ʕhPR1���_0:�U����IsG��]���a>RR|���L6��E���;tc����n��h�f�gW�\�iN���D|��wG����c��q�5�>�b݋(��,5f*���#M��"�%A�\]r0�v+u��\��*�]I��82&!��:2e^EbZ�Tv�)W���z�qfci�R��j��u�#�>Q"���z==���%�Е%Rd|�/�N�=z����9�ƹ�*|t�^q��{��_F��qK
+B*R����r�E�"&���gs���y&�<J|��l�G��"F���i;
�R9yB6��^���#͖�R"�jQR�NhN�Y)Й�v�Vh���]^E�=P�E��OG���U��(�+Av����LiG$�xq�Ñ�Y����>�F��}�����/��F��w5Q��-6����>H�$�P�1�j��·�I!\H�c��S]��z1io%�Od���wcu	�c,hY�Q^���COsT����9�6�Y�\�z=$o$�K*J�E��c)_�����-:>c���_���^�E4��FùE�N��Ï��~^�W^D�J�#��G�^HvC3u���{91J���Wra"�rtv
����(�K��]����5�L��I�(���|�?�@��S@g�<&d��=!�!���u�;�uƙסN��L�3��Y�	�FǂŴ�U_���
�b��DM�Q���>�B��	�:"����2dOE"���u�����\Ty��ae
-OC�������	���<��C�M�A
=X��,��H�s����!�{؝�{�.��im0s�d�4��#������s�D6�Ĺ?L�v�Y��	�֝�<�Ca�"Gχ:.e��4��w�}��_]H����t�+Y���$>�%J��[h���~\H�>�MX���֒Up�"��dݺr..I���7�8�:_��oļ�)��1bt��pwᾱ��)=wU��N����rEX�)������N���*��Sk��4�6`E��L0��1b1�v��o�u���%H��f���Эt��gR������w^H�wg�\db��V|���Ń�Í:(Ӷ�姝&�M���د�\n�-�S�.�c�΢/��}�B�c��ۢE�#S�D�Q�����ƊP�N�ۓ\.��g�dFޣ
Nd����D)n;���<�J���'d���Mv*!G�zq;����ێ�X��6�	�G���:�J��K�nę�$�{q��Wq[>ɹ]PF�7�t:|�Í�$�]B�v�Λ�kT�[�,�%�ؗ��h�fV,Ή�#�,����_η�>G��c��;�/�J�Nc�B� �tлs&y}���p�~�ǝ�f��M�ſ�����R����]�����}џhdG��؜|��ד3*��j��MX�u&��KҾN�-�X�A]�n�"�fi#�N�M�{%�7a�3���k�
_��t�3a�e�#o�3!g���6؟E�%ȥ	��ޥEw��>?2ҖƊ2d�+ˮ��+��̥x�vl�q�>����ï��/�J*��<���j�reJ'b>�����>�ƪ�>L���
D�T�!l�%-?#�'x�ϖ8�J�e77�\��c���K:,D$]:���J`Q���X,d����v���Ō�
���ফ����5e��s���+�砧�+�&��7KХI����zN�S���BE�*!6�ـ�z��=Nw�W�����4�7�B��|��Ti"wG;�^.hY�X����fp��Ɩc��1��&?IE���c�D�v����wa�^$�?���-t>��D�b:�E7�)�8��*Ų8��#b}������1zT)�Nމ����h��E�r�e,��rN��i.�;҃F�d$�Ěl�-�b�z��`���e��U���y2��M��w�r8 ��S�P%�q�-';�}��
�*d%�.�%S�Q2M��"��/�;������&b��E�Y�t�Ȼ1��C��DSFh�}�.F��oA4]נ��H�7�P�Y{cn(#z27!&�\H��!(�\�(�*�I�?��ߏ8�${	�����'�(�V��x.�`|�AT��+�|�,�j��b݉��<��@��h�f�P9e	��y'��Ml�
�v�����D�(��D��i���<`^iP,a
�x$�#Hn�����9-a�<�I����4�3w��=;�H��|�)����?d���>UIq�6���C�y%��\�ܫ��}�~K*�Ѝ<W��@����D����h_d=/iU�'���w5ZX��V��N�X�e�v����&a+�:��3��,h�� ��V?"���t��xP�)Nk��F�~��~.��J߰�*D��¸L�c��*��qD���9�&�t�S����b����x�&�w�d9$Ŕ��E���H}߂)�p҄�5:y,u�fg�NNW�\m^��X��ƙ;���y�!�6�?&$l%����iNG9���w+�V:2i0ƙQ�#"����>C���y�u���Z�ے҈E�#�)8�6{�9]k{�#��jyz�^:�y
��;B=��G���~�?U�����G�3.jt�1»Ǔ�=)�SǑ9���<��+L٘��g*d����-�!r�t3�պ0�T�k�$�"���,|?�'�՛#��۲D>u\��K#&o��G��Q��L:S�$��{��c���c���%n-O�b6~H�*T�6�X"�����*�<�Z������}���)��?���]M�NH��t{"R�A;�/�������<�J���b�C:��U�N��E�"�4w���+�����}1ѵ�S��}��\�A����d�%��[H�rk~�_�&:���J���Sb	�껝�F��K����#���m�CCݻF���D]饨K�kJ�7$�&#�Nj�'��Lm܆�$K��.'����F\�No���o�}8���[&����V;�)�f�$=�sj��J�'U�g�U���qD��H�2����od�o%y�k1���J�)�#�����s{���6���j�꤬Ĵza�j��Mi�U�-��VU��9�:YJ��)/:�qȟ�A��ȿ�o�I�����ۿ�o���In����,�����_�3�~��ȧ��&V9�+�M����_o�1�b��
�sȚ���/=���)/�����aZ����$���K;�7��ی�L�x�bHs��߉��K�CQ��GP�"f��#C�54/�(������o����4�߷���P[�]���Ч3M��SʎB��u*u�'/�)7E�زю|�ЯqA
�s^G��̉i������Jj��a\�L)��"n:w�Z B���68�.ŏ�9�E*�X�#+�'�O֧�&���4�u�%�.ϒ��T@��U�N`��O�����Ǣ�B		K�-ğ1!����"��P��"�f��V»��?�e��L�IǾ�i����z]�SxN�#��|�E��n9j��ߤ5�����>���]����3�s��C=}ܻ�b�t��}Y�]D$6y�A�1�G�b�w,9�k|�X��n���*�Y���4|eȊ�U�)Fw�*u�ܘl9w���7�ɒc�����6��������~���ܙ���SGc(H�)����Q�?�z;!�{;=��w;�b���~#M��̩�5�u�5S�,0�V�j����P�������a[�ס�u3����J[��R�;��lk��>�4��T���&tSb4�k��V,��V�G
	�;�.��E�#�"9���#�(�t`O�h�gO�Ig� v����Er��4c���
_��-��>G����	�TЁ� ��6�i�Wp3�@��Vr+�ΈN�r;�!�RD���_p�b�6�B|����'2��e��y1_9.|�K�4,�-�ِn҄{�I�墸�8֟�|Y��oÁ��=g�{j�8��+�¾<����wy�uD3q�=�:Gca�����h&�Q^D���\�r�"s�����Sɍ���خH�;�E�z^���W���T����+���W�/����=F�'����[
�&�G}���?����>O�^�qOFkOuxOʁ����(��00��cK�$�qR�����g�����:N�>w�}P��b9uܠ�}��e�Q����O�KMe�B�f�=̟o�OA�?C��_�+P���N�=�w+�
�����YY��d�г�\>�Z-���VX�#'��㤊�!Z�uht^���9�
;t9��sHj���k�I��J�_h-ף����.ug�qI����Q"�:������%�P�%Q�&�m�O��dX?$�f�������������������#�;A��%l9VF�dmSY�R^E^I��>ED+Ȯ��[!��F���q����")oDl@Cr�M"hũP��]��i�����&Ķ�ϐ��Kx^�H(O�)���{/�*��VE[�GR+vQD����劊;����d��t�XD�s$��lU�E��:>ܘY�0a\G'��	�;	K���'Pc��E�i�E��]?��G��'va��}�l"�
�d��'���Ej8�JU�!��M4T��E�b�E��ù�-��.��%*��^I��
���ui&�`��D:��i+V�8=0��Wmq���*�.c\G�^ߥ_w���Mfdxb��!��+2��%2�&����k]k��PT؞�bh`b����b�J�g���)�2�����F�v�n��8�D�-�m_�s��y���?as�W�ɋ�dv˃T���+�0��r+*��/�&.�i[�k;31
���uVb|�%��-]=���f�]��N���-�o�cP�R����Y�V;~��<�Oڈ_��'t����kO�9�����2U2Ĕ�9Z�N�gU�ˋ3�S�%��+����Si:��^�q��udl��cic���hw,ǒ�����PZjG�M&��)���Af�ز�ȯ��
#��tW

�%���4S�r�
>�\��X{
�e���PSɚ�y*��ɻ"�ې�)��[�cP|���m��������%�����D�CB�:�4���P����жJ�H�cLh��P����#�h䧂�T�H�%��r������K�P�˂]ȝ�h�����=0�����.�B��"���?Q4�_,w��W���cY�5Ռ�,�Fe�"�Tg�%m�2���H�&��9�7I��� �o��Y!�v,������ơ�vS��&s�V��Y!@��4� �eP����V,Sa	�ԋt�Ij���\bZk���-��.�G(�]Y5��C�r��'U�-�Z"qV;i�I�_�7.Y��Vv
�ߞ����󰣿�M�s�܋��X�L
H��E�?h�����,σx��TQ�y7d��'�}D�C/�Yu�Ң�-Mun��TC�*r�:�i�q4=w�/�S���>��m�Q�C��t�ARΊ�ς1�&��5!EJ#���Q�2XVB�w0c�Q�S��:ձ-���FE��A��>�;v
�e��b.]�B��m9�:�L*���<�?[���K
��m9N'I~,qc%(��4S���ꌺ����V�cO�1iX��ldJ�E�B�虌s���S/��+��Neҧ��Ǣ�y�N���
w���bx/�Ñ���9Y�%D���6w h$�(�T1�h�S���?��"��m�)AQV|�a�P����ä�٘��T��s��E��P$�������j͏�{�E�we�Z�p�>�Ir2:�s�},�p�i	m���'
�An[�����w�s��{枟�:�/4���E zc��4X�]�����s&��P{
*n�#L�a��-�F�R:�'�>E�*s�T�Tg�3����KK�a�B�cN8*BT�(��W�K44����嬥��w����Έ�a&
1^��O9�T�ԗ��V�^�N����ql1s��K,�ò���Tݞ���l�'���n}�풰/G�֎��}�腫�=��\O�o>
���yx)��W�)���v��Ej�h0^�;��6�+�<�@�fOQ�IK�ʘ0{��䟰"�tw��n�w���.2�ȅ��]���8�c��r�]��ewD�G�>�:K$�������Y)��ø�7~lo�;������*!1AQaq��� ���0���@P��?!*�ąA([5�Pd���ꊬ���sj�8���1��{A�/��
]�@u�3�s�z�p��Ux�#=8�$;r�~�x��uZ�l.ю�*_�	�TaE����q��y>�	�{�l稍�s�0�H�Ba��1ʓ�P9�T	p.	�Y\<�0�n=�Œ	P|�E�˜��k�x��緧��%�([P��9q��;��0z.�Gx��f�i�� a���h���o��	�o۞��g@�H�~���D'ۙ�X݈��@"�#����*'�˗[�K9��>���� C�˜����P��^r'#"���2j�Mj�3��"JoY��]0!�P�',�����Q�MY�6K��j&��(��!�ࡢʌho��n�r���P) @���{��0<�"J"G�V"���1�:DCM�}%���#do�jv%t��qmp^�I���v~��&x�����h�3����Y�<Z��.�k�HH0yh�>gb�H�L��vD`v���2,��1�P�|Y�Ȣ�������y��h ��]}�7ț�^�6�f��I�O<��?ك���7���g�3�ySA�^�|�u�����7�c�����hD{/b���<S(`�4��i�����&Z��	(OZKl�|FȐo�bH��XudP�xf��d�/޲�r��qh{ m�P�x���2|��x�nX�1����!]�m@u���AsNN��+"�plB�e�Y�ݗ�ER4X��B�ep��|��ZZ��y1���Tu0n`�Hreq+���Ȯ�f|�l��1�0�9���=�_�Xw�<���m�KqS_h��=�ķ���R&%�1�1��9�������E8�~c�����Jt\KlLn
v-fw0î�;ϰ��]*+��� b��1��O
FNN1�dΓX`&EFj�΃�!3D��� W1�̈�F@)�R.U������Kzl��d�sB�ve��&�@� �:ԧx@wz^�OPH���ȋ��d�
Z�F8(問ڋ���T�l�/@d��p�2b�"�l�p�H
�='6��n0� ��8D
w��W-� 5�]��>�xd͸��ehO3���G����5��E��פ�)���C@XS<v�G�c����9�3�#fU�O�J��X7�=h:CFy��
B:�Kt������P2T��U������l�z:�'���ԯ�����'3�}I��(���#��'�x����
,m�8��0��5k�8����2A��6@BTt�`���	�8[��h�Fo�*;�!�ZX�l������$!�)P1x6G���<�i+hv5øJD���E��J!%q���n�L��3�SR�2�oh"�tq�7J�I
�`����R
'�ޟ�G��	�@���Q�ʺN��.=n��"z��.�!�g~�κ���s�^7�Q�s=˕�gw5<�9��W3���g,����{�g���ٝ�&ƙ�>��LBY���WO��]������������_��"��?�����%�~8���D�����J`A��xG�K��`dͦ�S��&��l@��@tR�:����!
J=f!:������v�m���`A�}��8�a���bF�� (Ҫ�I��#ɡ�}fn�-�0�СF��Fܘ5�d�i��&b���l\�C��wɰ�Ȭ������'X��E��K%���7�e?�([)��vf/�k_�glfE�h�w��|B4����X�iC����ף�=R����2�/�>�\�P�A�(�L�7��Z��e�:�{΀+���	�O��\Η6�b�*[0	C�O����Lx��s_F��]s�+r"��ty�o��ah�7 ��
@�&�K
C���b��j��{I�
�$�
�:�Y�ֽ�2,"D4\N,��������x� ו2�A����d�Ɩ�`�G�G%�8�X(T�/A&PN
��D�5��fH�N�
�q:Q*�D�CǞ�a��e7�J��0AQ�E�p�J�͉�}>4Z�L�P�Sh���!�`#�-2��K}�=̱��"��%��x�)��Î9�@�x[��'3��R�F�����W�q����P�/�:��������B�=5��|��l����Ǵ�����Dz��Ge�˨�в�%Ι�~gx���D�@��T�ju��E[3��'4};�MBI3f,�s��%�K�]�A�9! wpg��d�A�+�{Q@�X�0����!�B��4C;LQ�QQ��B���b�k�� 0��Aa	�:B�9�~s��g�c��#.pW/'7���W���G�C�,�!����:̀�
CȀ�#B�-P�f�X]XE��:
Ԙ(�)�a6 u�ÕXΠ{N���n9 9��(�q����g&Y/��`,��Zm��<�C��Ӊ|
�ꐁ[��������I1q��Ө�/�u\��j��ӣ]3P�Y�o�RÛ�<�'��_��AА��.���︟h;�FzA�>#����~�ULf��u�"[pU�}��*�z}���>��#���ǎ&:����Y����=.������z���7���D@1h`}�9d���!�A$
ۀF؊�	��3��g�(�~����́�J�#TI0$fy``@,-�%E��&b�7�I%�L1��8��b�CK��a��V4\Dz`y�W(�zE��RB�,�0K&�ș���xG3��Yޠ��;�v���
�W���S�a�L�{���3C�q�e��h���J ��p�=R�>�j����~�o��L0���DC��I����4L��d�\�X��ؾu�#�	@�Ȉ浙O��Jb,�u��1�cr�pw�p�J�����, ����Ќ���W�b��ŀ�Q–Y�fc�ɷ.��@��`�\���/ߏE�5�ҿ篑������_����\����`!&�X1�D�8��`��F�ˢV���EC�D��
	�F`�ʛ�V!�C�_ 
=����ؘ�s�J�����@w�jwL�`�o�$f:�(U@1�H�ް��3��n��)��p��]��>�	�*5�|�T4#�����͘�Ӥ�d� ��D�6`�'�؛J�q�$����R��w?yɏ�F�rj2)bm�ۖF�j��E㞱r+����h��=ex��՛}������c}����à'��]��:��@�|�_�OH�c��>�
�D�X\	to��j->ۉ̧�c�����1(�.43_�ɬ?B�Lg��D��C��>�ǧ����C�<�x���#�
�ܯ�!�%	�g�LsP�X0k,��-A�cr!���JB���lӹeD��b[��j��nY�"��i��DpJ4x��|)`sbQ��Ɇ(�)�s�0c ��	ob�״ �i�c��5јP�i�'`X��p-#a}"u����Ep �f�p|�c#��%�� �`��;q�l�!$�~eƇ@���3#�t�͊s)B� �|�A�!�w"f*x.#���}y�����2��gڠ�f�@�Yt#��كڡļq�`:�G���a�"�Wh���›r�ő�V-����G��,`�/󔸬O��Y�%�YN/G�vQ/y�[�%l뷘@W��7�	Υ՘y7�F0�]�A��p�(>&��xƌu�����~�L���15�����ǥO���[�����_A`���$,_���D�O�0�x�]�"ndh�P'4D=�9�+'�ˠ�� �3p2��^��;D��� ���*�XP(�2�$�$������ib�H,˼x[��d�
Ơ� ����h�k�.�V2 �z͈cif��Ibn���ح|D�SwA�#0-�l�3����0�u�p$bΡ7�ܘ3��
�Q\�&���Ȅ*Mw�h�Կ@8�co.6&�Kj��Ʌ6�;�D}�%�>A�%&�D7I]'�J|�E��ۮ����bh|1*�}ɘ˨�q���T{'�Z�A��;X9�%�/o�nN
�u�����!b�w2�*�48�,�:�l�3�ꇬ(Qޠ�`��_����o�O����ns?x���;��{MOZy��N���������ͷq;��'���[.
"�}�%Q"�B��.��,,JY]T�KpW�� @Ѱڄ4Y��S�P�aiDE�0Q<��@O�D�-���Al��!߈�K���4s��R@9<������PiM�m!@v��:6B�4;�DX��`:$+,���ҁ%�O1��3cww.ZN`�@vI@@�8 s�os��B$�!�A�1}5�D�ds�i�[�%�3�\�@sc�K���?�'6�H�ʅ�*�z���A�i���է<�<��=� 
ڏQ�P�<NB���߽�1:aӋ��g�c�l�����&D�Ko�q�Q�1���c�@�������t����#�g<5ȟ�"2;�fy'�?0��:�@��מg73��n� 9�x��}�<���y_P=�
�Wo��C�^D\�՚�$4����%��A I�U�v�9�$�+79|�������g���ǰ�&E�u�p�R'�(2l9��������ь�q6>bv/�\�eb�4 d)��.��@� �	��-_� �&�읗
�t��Y%[�%4
�~Hb8�]��1���/�37�q��!�2G� �N�8#
L�\b)a@��`�`Cq	@%w��Ϲ����(@T! mP��
�s��'n�+'�3A7�#h����|yb
�D�/�����9�1A(ю�*�X�8�Ď�K
Y�#��A�lu?��;�0t!
�6���PP�@ڍ2�:#p��B�7l�E-��J8&�ƹ������P���/�N�h��<Ÿ����_@k3���kS�<���ϧ��)}5�y���/��rO�{3ft�&%Ёd��H1e=��B7@ƪ-ؼ\a��q6��j�nE��D�4�n�Q�V=�$�\�-~1dh��xv��^��i�	ujG�QY�zXu�T��,	%U� J���B`� ;f>]c�n���h�`=�P�s�u���
�poDTe{�]����!�h�&�ND0(=��"���K�k�q?0�@*��Ȣ��L���n{���sZ��S<�	�B~ u��V��Q���
����v@��;%��c��<|�犀�?q/��8�SnY<�B�t1eK�Y��EGHc&X4�d����
P6�09���W1,
�
��Y�;t���8:�,����N+���X�]}*#ɞ��l3<�`7AO��_���f�})%��$���G9t�L@�@P�QvA�.8U$�MƐ�s�3�e�!�1�A%�h�8�U�0A
)Lj���8A=1��س,��x�Ia�g(v�a#�
d��[��V:1ǰ�G���6'<����^Y�*k����	�<7�A���;3$@$�.�A��.��
L���S�3%-�
=す��'P�q�T��>[�3�@}�mN�f,yK�V�e������vE�3a���N3��1T	�ħ	,�̧�oҢ�-O ��I��Qq��%THǴ�*��?�_����y	�b���z���4v%y8cp�� �e����-��Q#����Wh� ��4��sFp�c�z�v�}��v���U���F�������W+��ƅ�CnTzV($��(u,vGPP
4��>�n�f�:ʈh��q�>R��K�56%����C4=� ��Gc��\�D�(3��YB�mֺ�y��Bъ����:���3p
X,�HQ�T�l;^E�Ͱ.�� ݆}���x�P�f�
�R��U�|�E�O��n��K/s.x��s1Px�(��t*�h~���&8����FE��D���†b>4 �
D�1����� v
���Z�`Y>ѭ��c�Zp~�Y��v���P���^g��7��1�Ƣ?ڌd�y�pc[�;5���s��(�D���cg����$�X,0R��W��#r:]��V����VS&$��e�pt���y��u}'��/�Z3�K��>�u+�qG���`����
�E�sp�4f�WC�4/p	"�����h
��GH�Y��NM�l�x[���ud�"�$�
��QX
�y����h�t/�'S�B����L����l��:��j��������#��.I@t�fHƱ��T 2�@���.:��1Dl�\!1(���B�W2�盄Ϲ��k��HϺc1������'q� T���E;F`�}�Y6�!���� Z1
r!#�0Q+\����JAP�v=F'J�����4`��盔+&��,k9��Ga��t�j�|΁?;��t�
�?0x#����fyơ-�sT�6Vɍ�����e�S�Ny|ËΠ�D=H��6�/T�W�:��g�/��(��B�@�]OY��U���z{ϟ�>�~���j^NTNB�b�`I�6`t&<��!�]����ɲ<�&��(y��7]��m������� �4��"m�6 �Pz�pF!I�nm�x�Ly1�鷙�(�4�
��]&��pl��?zA��p!�,kh��G]]iF�rD�ϒNQV�����(#�s˂~`�6be��W<?x��	*�=y.3L9~&��ػ���e�ha���&Vr���q�‰�SHq��F���K+R�{�@�:�":$��"��_�+Q���Y�gG�S���4#eX�o�eG��3�l��~��>�p��㬠U=��,����q�{��k�
ؼ����`:3��;<���������Bu;s>�1�h;�W|�v���A#�Gd]�u��l��c��/�u�x�(�C���\����@�G0���G`�Q���$MP�)�w�ҦH$b�LD�s>�t/���rZ�<Ѭ�L�tN�@����ز��9&i���`�#P��{����fI��t#f����Sx��x�+7�d�l�h�a��g�K�x�†����p��v��(dHs��&��$�B<�dˮe��#�D A4B�4��]F�y��k0=���m�O#��ˈ�HGNK�?������b�6g����q)d����V#��`5���f��/U9m+���+�ӍVA�XA�����G��k2���X؞LՅ��	��ԥf�d��7����B;&�����շ��Z�g$q��;�
Q�����a�?��T��u4]c"��=c��7��~�;y��
���n��}4���s������V�zs�� ���!��Y�,��@w��>�U�O��:<���12|+�K���ÈI�4s�#jd`���d�om�@���y�L�ν�X"uQ�q�,15�{����1y���F�b��h@P�<�bI��s�n@�6`o+v�wC�!���L�2��	$�N.�^bi
�c���dj�yNS&'�H�P�*c�F4r�!�M��oRؕ�k��3&q��F͖�9c����:�DF`>rPg�3.�!�!��c
�}`vp9����u`���1��]���{E���J����LG���y�t2cV5�"���D
����$��	*��[���ˁ�=P��p�����P�A�D]�{K
��ɼ�����^��o�̈́+-N�Ty�^�����?�	����CD3��A���%�����f�:E�0��P�,����� +�y�z(������$��G�C�.�� ��0����fG/s
q�q���r$��=�&bDl�%�T@��i�0] ;	77���l�����6Y}�djHL���6Q������?TI��%L��7�(�1�G~"�"]@e���7W�'YS���'m���i4�A�?K�nEq��ڀ;���h��#���qH��5�<\*(�2[�9�@�1��c�{��J~&'�^'���w��A�t+�`���x��߼��?LO{�"o�Eؘ�OU.����L��2�������1��3��J>����`�ρģ?j>J��@�J�?_����宧Y�<�ə��"_}����t
,��W��S�u��wGE�1��0�x.��P=/��������!�vlFAS�H pf�0*|���{L"l[�2�Gi ;��1t$Kh�{#��RD��q�P���K�9T�4�C��"R�\���S�`B��b�	>nK
�d�&�
�?�R��H@b����I�:΢��u>72�e\�YGP��|K<q��TW�����0uF;ѐt�G�d�y:}�X�H���L�X�{ʾ'��A����)px�ej�= �
��������X��%�X��|���H9�f���m��6H�H�)Vn�5�Dv-@	Uf��U���3�s(w
2��qĨٓ4���5�:K#3!���>_�y�i�A鿡�ϭ�Z�g�6H��0��t��A`%�-le@4�8�A,� f� ���4�k@ /�ĢM��ͳ�Me
b-����� �(����,/����h�ڠ@�S�`ʅ��+�� G e�-�S������6H'"�{y� �>�� �o(D���1}�0;H�F0N+ϣo�'�(�s)����y�y��S��d�a\�	|��	�8��x0>P!(����h���s'R��`���!�
�΂HdC���4E�f�r�.4M�@ S5�6�8�$!\:�y�2h�ɛ��u9��1�_��N~=/���h�:bQF��r���2��H_�k�8�ux�I&��٭_x<�\Dz�j"�P�ː�i|�B��ņ	��Bz��?�|O�/���+�
�c�6�}LqP\�������#��/�����
��"�<�́�1�� 0k�˦��q���#�Z�9��P��v� ���xQ����������Q�f�Ό͞A`8bx�PQ��A�|�hte��d`&��A��-"�i��&A}��F�t<�}���&$0��������g�J���P��d1�8O��.�X���i�k�d�3;��Z�M��d�M�����
Ҡ�G��P.�ep@�<�άp	�2J��f=ҹ��A�g�X1�9?�W(��0L�;ϓ_����q7�"�L^^'p��+�ҵ4�0�/�T�8�
q	4�0�8dw��du���
�1Y�ߤH~�� �pf_"��xw+��I�9�w�&緧�����{���H�(]	@�Ž�j�&R�=�(0X3��C��Т��f�p�~M��2���+�Ym>xD g�&[!}MDD�A�c8�g�؁K��)���̆�����	"�l���Yebvd1���[6���1D��%�d�X,o��2����`)@o9|�ʋ;�x�%;B|y�}$u�J}�T�@�����do�1��!� Ù�~�U5��k�`AN�=z�P��@���d�D���!�@"!q(0D�^F9��e�L��Οh�Q���
�I��F~ P�
�+��Nu3@�
;ɐ�y����N"�v��_��:��
?
ΨW�g;3�0����by�
@�E�̜��x0#��N�2��/~���h#9]�T��y�w��Y�|�?���\}g�~>���;��@��a�M�#Ѕ�P@	"����tN���{�
���r1�@r���e@��\Ƙ�7��
M��m��y-m-�}D@�FNd"0ډ�,&��!\.q2�h��*2ګ�h4 ��d�TGB����V�̃�L�h��8�NM�9��
E	���a��у��>�l�Bf͘���
Ӏ��HH��9��N[�����] DǴ+�&�=��`RC���	����'1Q�g<Aހ��7���a py�uVf�	��ɰC��Vڛm1ļs���3���W`Av��a�}�.c�zED��s��kk��Ӭ�}xp�uq��ZҎ�'��͝`+8�0�<s)�|�G�(��qy�b���g�J�(��)�( �
�,
����fd�k��z�����G�F,�$R\@$iÐ[x�J*j/�	�͂2�3�!����Ȟe���7N�zFn�E`C��v�9-`b!������h��"�rOZ�çc�a��n	(�3*��v�T�э��a�  g�`�(
i�^Ά�>A�Ed+8R�l�@��GҼN��1�	��ύ��S(��S(3-�݅n�L\���.m��G�jP=��׫�8Z3$f'���2Ϗ6h>%H�㼦ߴ�I�F�I���
�ˌ[/c0�0��'�����~�S5�ʫ18/̼��`��9%� 2�X
�L8}s� hbk3�o�}��4��%�q�\D[��OÉ�7��)ץ����Ļ���w��Þ:E,#f�'�k�_�x���O3��>�n"���Y�(P�L�%,�&h�e��HXɣ@z2hY�`n8�&
e�U�_=�Й�Q%�.@�{8��*�������ر��g}��2�	l֪9��$Gb�x�1�G�B�!�4aC(�+�! o���y�Qb��B
���bϩ��K�����
�&��\���	ʒF�D�|���JdJ���W>=V����V�fv����i�l����TG,��,
�D;��!���NŞD�w��t���O�*��χ̥P�hJ�`d�B�=������ �*m�# 
���?�t��g�>�R����(�!��;k��+��V�<A��b��{�w��:̡�s��J��V��1X�nrD�{���[��.�&{�1�D�.5���eN��$�D�{	�ϼ�j�@zy����	��H�\�2�P�q>%�DG.A�F;\b������5��V�I�7sٱ?oX�AU��H�M���"]�CP�i�j���`E��s���4D-`@QD��+�n��D'�/����B�A�����,���8'9� �1(�;���˹�b/`̻<`���
`�q^�Nˠ��195|�lďLG�5��1���}��g|���Dy�+b�L1�Y`����t~L��Nâ�h����ށ'������lp3>Z�O�`-�w�!ۥJ.����*��4�����S�~DO�?h>؈��g�� ���\@�$_�j����J˻�.��/�3D�=�$�2�"t#9�0y<8-�L��@E,T�S���dBŨA�t��up�F&���(x��o�`�t�~}u�g�ϡs�_���Wc�p��t�%v;�&	
��5�L��+�{�M��� P�H~ga�/��F��02Zr�\M8�s�g_�CP
Li{�"�PH�&�ٌ���̶u؄2syD�a�Ù�H�_h`(��U@��Y4��)V�����C���D^!q@���Wx0�C��:� ��FK��$�qO�b*o�u%��e�����{
'1�jP�9���̶Ǵufv:G�nc$ŝA��(H<W2�x�fNs�[��Y�/��.��(�����$L�˲s	%��.x���s���W	#p=@��b��xq�p0�Jc^��p?u�h�^�����׼����
d�3��fV��[�>{J>%.�3�z3�扁d	�;oѼ�gJU�}�����y���i�z)u�r��Xj�<�rF����!@	�S�Fn�/���g���H2:@�N��@�
ޥ�f�'�
�v��%ѪE��}��(]�����^ �_���oQ�h"u�
� �w�̠���x�ZԲZ�cD����1c��u���N.3t1�0;3IF�z�&<�p��UR��i]��}�*�<+���0�9���Q�� r�k��2�F"�0��?�L]�@�XN�	t�g�Ȉ�y=������,�8�`�u.oP:�X�J�O�>�&QC�00xQ�NĬ��?z�e���Qxr�S|�3~�@��cFTw@��ho0��w,�Oh�JŞ�mp#<�0�7��b�;�&X[8��$�R��҄�o��'�<g���1����1驙��,��Q�9��)�]s%���L�dS��Cke���Q�A��w�0��!8-�F�"��@-y�9~�.���y�$^hq� 4t��SY9ft�5�i%���l#W�[
�H<�!d�lV����n&l�0�n���	�9��J�(��@tR*
@`�HP	�0|2!A[1�8�!`<ݘV�gWe�P6N�P�&\��4
�`-#�?�(z!׳�?���c	��N8��9nГ`�>DB����&o5�P~�8hn1�؆QWhdJ]0�n�j
�+�Ӂ�J�s�Lc	F®��P�Ʒ���
���LQ�*�dd9��/n�t�(:M�<�u�Q�`�;�yq�$O�
��*Z�F��k�
Y�Ȓc�a��ǨKK�J`� :����x���˥�V:�}�3���A"`3�O��0���!������>��,�9ǭ��sf\`�����^�H���@�Pa��':���
>�	�+��>�y�^	#�� �X��K���'q8$jUd����c��L�DNEl��
u��o�š$�6{���� =��|��4�@$H�y���HI�m�b z�.��Q�+��Âɞ��V��\,8-�5�#�%U��?D�:�.O�4Lk��l����$�D����<Gx��"p1�DGz�q��y��=H�
��u1�}�/%��:=%�Fv�gqd�����b;�����[Q�y��i��H�8�&�fg�zM<�UD�{&�e�`Ck����1�/s,�u��j�i��L1�?w��l�8��-w���X"X���7l������	"PkP{��<������3�@\�����?VH폠PYئ̰ݦD�sJB�e]��Ōd���s��7,�ԉ�rC��*�>u3a�e��10Y����$�k*Z]�B�ԭ+�i�˄�B����72q5UĵG�6�" @�WIA����#'8����\�T
���|���WB+�'d�!��ź�
�!|C�W�N��73���@#����2��ʁh%]� ?D�)
Fb��k�YB�!'E�8@$o��N�]��e<Ɉ�k�	/(��ԟ�d;$��?�Gs�u;7[������d��ܺa|@��p`��
6s/g_����	�6%���:��1���FDb��=m8�#��Н�����e�01��Z�'SG3�"ʖ'p�H1�r�iE�(fO1;�y�>c�{�23�fy� ��0Hh<���,��6�P�6�}�sG��D�	<�I��Z�1mh�A�aY�9��̀���7ݰٮ��<�-F�A�V�%Yc��d$8��7B�q@1s�
ŤA�;π��F�H�+�u��!�v�kBN�
P��@	�G���%#7٣�.�	�۸I<���X�V`�f �'����w3��m�x�����$т���;�D���l,�.QD��V��B6���`��=`�|�D�Ugh�t�����U��G b1-��
��L5��w�hB��m��I�s0oX�Jt����r(u��[G���!��C�IgB�pa�A�h�0��Orw�h-�w2q3��U�$�ȇi��x�#�X=�s�陮'��_�}�<b<�әS���B}���z��>�KX���$��chJ���d�k��A
��ı���2�d�4�q	A�`�³	@Ucpb�t	I�z{
����,E�X\�@Ĭ��:!�� �GF�
�d�BYr�a�b�]e��E��Yg�s%�:�J��[/��6`�H��`$�=d+pG2l �l}�D,�'���0E�"��Ul�|���x�*�a-8��(���b���b��5�.��a�\��~Ȳ��+(�pt�:��j�����pcvcĪ�|A��]A��9�^%k9���FI�}��]@O16[𽐵�y$`@r���O9�4P����Ng��C��'�	���7�3�_�P{��%|�hPloBn����~��WF�Ϸ�呕�
���X$к�8�DO�$Q�
�E�R�e �>܂E��rС��>$c.�L�Nɂ���!��L
v�0K$xp8V�b��q��J���l`������f
d�R;XV��":���a;]	�ZtIX</x\H��M�(CK2�_x�n:�l
�,��<���~Gy@��	����}�����ü��@:��M�A;7�.f���H�_XQK\@�:��IE�++Ġ��B���w��c��^s�-��S�;n]�t3Q����=�9N� ��L%Օ��m�z�+r�X���JtHì�o��� �~���Y��b�J���}"8��g���Hj���F-���X1Y�7=�G�GZ�%����{�9���~��&�K�f_9�ٿ2��V��=|��(؀u]�@&X�.r���2��!��РQ��X�Q�=�
�'	`?=���ypSTb�ų�\��Y'�rK��QFʫ��96e�5�/B��S����1��!����o!q��S���*a�r&�9t ��I0(��
�
�
d�\��q�b�����͌�w���r\M�v�R�%� �������P0	�=��.�	�m/���D�/ij��X_�
O!�QN�F ��Oc��MeJP����q�h��%D�fx$+S��ՔOP��큏�}�>���tq�SǼXɧO�/	�'@}�fA��3�QUa(�,J�8��$\N�`�H�Q'�7?0�b�X�y}�㋏�S�3�qع��:��~��3���Zv<��}5��D2t-�Dj P��$[�Hq M�Bo�	&�/b&쵘�A
��Ld��O��K${�d��	έ�)�@M�Ɉ��)�CFH$f]}�R���L��
�	����A`���(�`ԗ����(�F��c���t@p��p�C�
p�z@C4�<m�oP\�`�`�h�bD T2�t��<K����	�X�3��H�����Q�/��0`6I‘�F��������a�s��΂]��X�;����G1Y��1�lmV*-�����菉_Y�L7�-��i�/q2��:�����O?�7G�~~v��Do'�P}��}k���w���EhW1�p�&J��_h{�P�-�0��6�q����׿2�3J,��s#��:�x�m��}�<�~�����טY�@3�x��$��ﰈ�3Y��B�#�`,���^Nṕo�nD��F׺�J?r��+An�L���)���\�6v
�Y��/�4�D�Tr�3X�+�7D��Q��0?��ui��:���ܯ`�Tf��}�h9O�XF���
�r�-|ø
	�2�`}�ph���EK�4e�~yϢh3���_�}�IH��`�8{�_l?�38`#�3
"D�eaw�h}��O���|���{N�s;��3� {�ɷ�f
���h�o�r(�����>�`=$L���:˝�֦�ѕ�=���pk�fq��쮇fkr�+�#�_=� 6x���9U��^ �0X��2��4H?ܳ�1afy��3��?���s������ߣ<��o�s���+U؛�,=_��R���26eC��O�}҂�I�h���	�	�֠��_097,��(�CNc��,���^���Qc"d����†��eG��U;�"_�`�i^?�d��g�%����'��XN��E��">d���W
^MN��ӄQt���z�Js�?�Dz�]�����D
�y��p�Ϣ|B�O�,}a�K�IA�t�H@teJ/�8�〖�vmK����u`����-��Wm�}�`�w(�`o�3+���z��z�f���w�(�΢3�<�|c� �!�\��2�����O��3�'��讹�;j���� �P�d?�ix���}�����z�k=�b�~ރ��G����9������Ng�������v�VT�>Ƅ�dF�a4���"���`p�48��Cl�(GP�Q26l��UH�����D#UL0���8�\g@��%�H��>�x6U��=�((��[��Q#���02,K-����
�NpY�t`�e<
��h��A7�0S(��[����DtL@O��D����2FQ��W>�}b�Cj �2э�Pqmc!>*%dQꄇ����}����E�F[�q�u��f�%s;%�p�A�-˚��`�SF���ĝ�*�2��!<�v���t���OX;�L?o�
�#��pfs�
:*'���!�ދ�E,y�=���
�C�0Q��^�z`���}�Y1��v'���9�>nC��lX�܉��<G|���=h�P�&��6x�v)@��w7��d汕��<�8��Qy֦'S
� �<8H?+��P��vq)�Y?0�D3�J�?��Ȃx�p
��9x������������R'�
J�N�T
x�4Y��F4@2�c@"��DTQ)J\�0�Q�7.O8|�Tg�}���
���9&���0�����1x��B����}!J�� �<�V���U�9f>�* �`��	P�C);��]\�`t���ɏ�(��G�+��pe�<���"�U�Θ���wד�9�By�#:�U�o�ơ��B0�Wۙ�h�6����`i�R�0��zM��W9��C�`�w7�0���،�\҂�z�˜qMF�1���Ы$�n�Y�-N�i�6=<�^�������@�6f� =
Lt�Q�f)�.dd���[8��85�Q����B��������o�Y���Jm6��N�`<��AnA�`�h��#����|טA` o����
��7�LE�,t~&�'���4�:��8��s
�J�"��7��_�\qi��`� la�s�~�c����?G��\9�C9�q-�pa��T���p/�ɓ҃h_�h+=f�D�W te����5�8!0р��s۬��������gc�M�3;���7�G���e���|n����?O���wۊ�H��C��k��K$
�d�=�u��@�2�U���������4لh��&��gD�G;N����:��/���܈!G3�EE��Ϯ��d�[!A*XH]�b�\�@��B
�d�2P;�5*�k��49"��PȑN�:0/��dz�DdA0��Z��pcQ��{4:�J-�
��8�g�9@�,��җ�М�8S�76o���x�a��%�|bX2�ⵀ��=G���h���*�1�^����z�.���t��.�G�%j,���$�=AP���}��4���|y�Ӥ�%(njQ�12Y^󩸱Ҍ�=�eY���zM�=�n�<5:�άq�`�n/yȍ9_؜N�����G}���<����F"�z���"�ۈ���q��@7Â���1c���)s�
t�e��R�'�1U ��J—b���qcDL�D.�1����6=������*?�� �KO� ��B:�X��dD��� a��-��"Y&�E�sa�Fh6�e�I�� P0o"ӝ���2y�Ξelu���pB�
�:��n �V������	 H���s*���`��t2h�3�>�ݪ��-a�H|�IhD`#/����!5s�1P0�>Q��@�(݃O�/<#�Aɡ�l�������y��m%�tA\M>?���	�	ϕ���&\��K�F�N����|q-%�<�y��'��%S%���3r�ї���_�9��c�f�VXH��/B��@K4aeˀ�� $�|�q����ܭ��s���
��U��L�8D����@���:j	�~���>�
w��B}�������?��I��֘�DX?�e�J����!/�q�/,�Hh�TR�x�tG����b0�A�V�Ɂ$�u�y�!-ɑ�.� G�]�	�K���|ʐ}`!��?����h��fq�f̠ PАP>d�fM�D��r��O~%	�R��E�"Q�~�%��}5����,@4ED��|@�C
9L�����U��#n"iΣ\����}7T�8��(9
Y�9&
�2��i|�a�9b>+���@B�w�:Le>z��Xi��h;)�KyS���k��~ӡ����6X:�Z�8��rj+"���f�_�9��Z��1�=Ø�x��cTu�ͳ�gr@���L����t"���O����/�'̼��s���#62�����>�}~�_����`�.��Ka*C��H���]q�7�Q�0�!�K�({�n���HrEH8B�0@4$�`X#�f-t���|C�(�o<0��!L� ����4�n<}��:=F耋l��%�^���A�r�x&�)1�0@a�X��v�		�b\��b<BB��P�L�1d��2��q�)��f�
b���A�L���( �1*Ԁ��x��w>��9�ves7����1ˆ_@f�>�y����e^ '�PQ��L)�1�@��xsʦu1�g@30M�@��%TH=4�fCU����dnV���<�8���P�0��yW� �׼r=���r�5�|�y�)�C���G��+/��e�0�ȫ 1b'��$�3:�r,gp�b�Z�R�r+�A�MA:��á��*�0�z��	�r�di�Dr6?�2���+�.K��Z�"]�Ju	[,��`�`2M������`���v����] ��x��jI35�q�DG�u�԰� W�dS��|Ē�ԣ N/)�/��Y%�8���̧������WM\��!џ����O�� �"+��
c���DJ�ޮy���y��_Нx���t}{x��\�:��;��^p3+����D���r�ƒ�B��/�1�z�Y@DY�8�0.ˈ��a(��X�rf�B�Z7�1��R�>��-��$�!�<=�?z��k�N濁��C�G�p����a��
��C�E"�l".D��d!2&�$_�F���	Ԙ&�1���w�	���@i��p�8�-�k3 ]Á��p[!�8ƮB���p �N���!�	H�bGJ�;<�n3(�*_p3|�W`7�9.���2��POP�zAt����o�2�Z��@<�/�8-�� �؈�a—I"�w�C�I��W�E�}��M�Bpx3� ����!D��n	�^�O�/x��N����h>"��g�J�`��qv�ek�Nk(F��q4�n���O��I�|ʻ]3+u��� �t)x�n"-�Y�g���N���U�LZ���x�z� [i�6D�;1�CA�s�ˀK�	lM]�����������/x��p�g1C�����r�s/0����TҾ@�#ǘH�X��K�`��ۂA(�[M��4M���.
�-�q$�Pa-��!�b� ��%��i�!�w:H!iA��#BC+��7!EP��.�ݒ��(J�(�3�A
�4D`|Y�2ڳ��1rx�3� ��#�$Z{�e����E�$l"�3���Mt��Ϸm	�e���v1��OS�'y��9�u8�S��AO�s�O�o=%�C�k1�k�H�+�Fiu���]�K�
���,gsL�QCfu��$BWJR�<��y�=��%u��פ0�a�y,�sS��V/��L��=��DI�F`9@��;p���&��
}�,{2������t�	�(���8�Ƚ�BI^A�D��aL���^�B	y�"����`D�����_��J��R�&���kq�/p��B.�SM�BX'�d���D*+�'t6���l	d�t��s� RD���.ap��8X3�A*bw�p��o�Du���\g��zAv0�:H$�YB6�s�����0���+������w2�s&��
�T���1���q_8�~��ф�Q
���@,��G2��?��f��Ȱ<�?�宑v��U������W JLȄ֦3�P��@_��<�.��7�݁Q�7<�A�W��DР�4q
� JC�99A�g2�L�B�|����'����q�; ��|BTy�'F��_hʃZ���H�ϴ���T,��bv��<��bη�ޡr<�6>�Aȍ�`��F�P�7��ɀ��/�!��jf��x��{_�9�Z��tv�y���~@��$ރO�.��

B��.���~��
����9u�3Ɋ���C�Pm�
Ķ8�P>Cpk~��=��_W�N������3�=�' ���`����G-q�ef���g����s)�3)��v����%^�G]r�#M�癪��BlAhS�b�y����>�ڒ/l�Ks
�KҌ���i�	n�k!'�#!�f�0�3"��AwC��F�ﯙ�5A8�b���P��ǙĆ��d@X�H:,�$������˙�f��"5�v���E��pw�h~��	�զi$GB�H�G�f0�+(� �a��!'vuȴ�Mz���.��Q琴�Lf�"�Xǎ�j/�aν(3y1Xbظ2b�'E��ÿK���R&'N��Q����e̠�:���y��A�1�y��~���M���g�KƸ2��+@�1�ј��XЄu�?i�%~�<\��XC�cP#��G���EX��T�4D��s�!�0��1`@�����~�z9� ��3� ���KнdAh0��:�@4S��,���W�*1�Փ;��+t�n�	[8�at,��lZ��Y�o Ff���A�ڄ{v��.�G�`c���'���@����ѐ:��}��,BxT
�>��k��Y$L�[��B�/0�}9�4'�z%� �r��Q�P��n�{���r|zx�_�ޝ��S�����>g�j���)�O=����}?\�!�!�����^!G���f/3���x��c��2lٞ�
���F%wQ
O3B����5g�!�?q�E�A�_���@,t3�dYJpF�duA�$��0�) /0�X �Z
�ڄ�B��㘯0�F�5�酠72X�„�!4
�W(���X��s@|�xk�fm�m��1oܡݻ���'�O�&P�N��%&�
"��<E�r��*�;����ѰBX�[�IeNx`M�$=�Y�����͘}�0}��M��2�>��~���!K�9�C�~�q,���O�ipO'�;�O�k��2 ����/��B�3��W�԰o;���|���C��hs\�}��gU�=
�ř��>����q��4}C)��cp�<
��b��d�4��R�E�!6�Ms���Kek�|��/�4����,s�%ݙ@y�m�[�:n�m�ນ�,(s�ͷ���͏$�1������8�.�U��`�Ȫ�J�-ZjI�L
)҇\���*�p��]n�!��gf,G#0����ӻ�
ZC��|`'�G���д��H7�	����t���@��6�$�N&��.&�JJ�No��2�>��߉�������\U>`�<z{��[���^D���f]r%t3���*�H�=9�O�J���^=5v�L6���-G�3�#�|De#A��2�`:p`T����s	Z'>aLɧ�P�͈+	�� 6	0&d���%��6�Wl9S�� *�@An�D�@���F�\'i�\BΎ���
�wb.���098.r�,Őf
�	�BL ͋F���ݏ0��F1K>0��$'�f�j�Y��VH��2��c�{&!�	d�m�f�6r:�@�<��y���J+/�#!�1�q]1�A�kZ��@p#5�nj��s#�F��<�z9�(��;�?L����]>��3��T82���O
w���:��%(������}��^���������;3#7��K�>��2�nP7�+��>�'a�1��O+��G0�w��0�+%S ��B�1�`�H
���T�P�̺��b[B+H��Qt�l��
%�)�0��;���K�\��m<C&ǝDH	�GR�i��щn���O�s�,�A0/����G�*k��X�p[��eQ`���X>�C\�
NC���5p�'�`��m�hG)d�!$̱� ̬�`�iU��0<�C/x������NS�*'!
[�T��"s��C��J�>����>��,M~%��<��ڌ����2�}>� �����<�:����?3f�9��df3�(k:VK�ӤE��^�@��m��Hb�=	Hϼ�SI��|�2���u�Ђ�q L�L�jZ��H���6�����(l-8
��\CT�6{(۠�K�D�S�Q��q<B��TjT���^Iц<*����YGhq+@�v�g\'��v$hǼA��H�3Yh�=�h�,'�M�r-�_@���|�q������1<��9$��Ո��H����9�˂��� 
'apz07�Gd�<�0M��_���*�!�5,��FZ*G�=�Kٕ�ct3�}�LzS��^��Y^��b��N:ι0�G۴�Y����{�㍻���1*�	^y��w>��Z��|���֌#�I�fS����?X�q�
�� ���RmP2�H�n5�e6 ��
��_>��:�q�Is%�d@KE���}gr��q3�1������h�a���C,�C����>��u�P샋e�\�+�)b�@B�HBF�f���&f���3��D!1�Ҭ��aJ5K�aU�{f����\�|͂���F5u\�:��s�vj�@d`���� >�&@�0�G^��1�4z��cӼG��&
"~�?D�4��EQ�h��Wp\�3�9����U;k����q0g=��c���gI����A~`��?�f3Nݎe[�m���Y\4y�ۗ�6��ǐ��źp@7N�pv��A��	aEW�@3Dڙ^�k�Y�,ϐ�"�0�Ǜq�F�bs�kL�=��L}�YuB�$dce'
'aôw��q�aD�d�����YDſ�"מ��n'G
e�80�q��"v��Q�>&>���Z�d+^�9d~Е"�h�B�{\(��k�Gh��'H����h}�{˩�)�<���=*y��N>����0��_�C���D|{�MC�A��g`/Oϧ�A<�>���y�|3X�)����/���i�6��Jh�b�R���*�=�<B=��X_�4 �+��M�}G.��h�&ܷ��
�3	�AB���8�`�Q���s�hE&����Z�"O��{�UBpl�l�	���T�IW(�!΃� @X q��}��/� �Ql�ḧ-�2�z�b"RG�fJ��0�[$q����#���:��ˁ�|;䑞�C��&z�Q<�}^=~��!��i��z�*{����3�S�C���u���PUDf�;��s�a����������?G&@��
$����+2�FXs����p��	�/
�l���YN���[1��������,��DudFM
&�<@mf�����tѕ�:�4��("�⸛�І���PQ�	�m��NB�bCee9S����$嶨�@p"dv �!m�������*�=�	`D��MH6` F���i�0$���C�=S��GiI��u������������~�?_Ϡ�R�=�4n+��">�����g���<}%р��|���w=�B� �P��e`���`��\�V.�Y�k���:��jC�P;i�.Q���f�R<��(���@Ԡ�&0%���a��€�B�d#z�`��5
��Kk��00�� �&P���%��EA�P`ZB.#!�K
,
�ci`��G�����W�s�b�^��1B|�K	�bzH�bd�sh��}��>�G�*������crj�3���9���O?H_���>�}l��<��P}���3�}=��J�j|G�yνg/FT~���ϧ���:3)�1��O��t��R"
$��d;&��{���(F�v��J��V�Cr���R�����%&�6\��w�������8��3�fm��>e�;���
Eۤ�3=��݀�j�0�ER���:�D.X܍����%��,g���{�$���J@@�j"�q��P5���=�[H��##�f��Y����$6),z:�
Fpny��f�`�X�y�*#�O�{�O0v�e�~'ǧO"��.jx���3��>�hY�os�_��5��oZ��y����9@-��� ǂ��3/�G���Mǿ�	Aq�cH�'+)K�+8%d)޼ΠG� 'g��0���,��G��q�j�86TF�$ëW+y�N�<��p-�\�h;���R�Btԭ�R�"��c�@h� K��>T�y.���C��`�GF<��d���.�as��;O�4B��vQ�d7��t���K���PM�A����Q�	@>�9�Fg�~�߫�Ϗ[�9�\�_Q>���ވ�yt>�����_��pc|	<	ZtDʫ׹���*=���*g����P������p��!`�A�F�H@�c����.��$ڐx�`����8#�r�Da�}�6��	���T��w���c37��z@����,E�H�=X�ˮ�(s�@(*�.�1B�(ȝNb"Hu�81�)�M>�#�n���������*�_XQ4!�fG�c�3����@0����t£��l�z�P`�}=��K���
�}}��v��oLƀ���}�Ǧ{�
,��Ͽ�x�q+S
�Bh������x%�󡏄R��b8����s��� 
��;��Ŋ��Wm��{� f0: S��3�cp�h�
g5(h!�n����|1� ���0xe���>�hFb�6D�0���	$*�buf��=���Gy��Q!܈6���YJ�ð�XF�~!��|	U�%ʡ��J�{H4b�'�@��ǘ}r���7� �������^�?�zc~���s����/Ҹ���ZpMz�խz��&a��ۚqo���"�G��K��n���`�P1Z��"��"��`=3\���
6m�bH�Ksb6XfXjO!N� ��1Z�`�2����x��`#�S4b��<$������
Y�QH����
[�����'��!��T2[P+9�:���*2
J���DvU��.D&\.K(���,��.�[�v[��ɔ�p��Vśpq�
`W��IH�����XXlw!�е~�¯a^щN�G���<�=y��+��/_h���9����G5�����}x'���;�<���¦�q�c���O�u-��X�)��
��>�u�q4�I1ZY$jd��#ؼ�i2�&��@d��sA$���I��X !ֱ��5��E|�B:�H���r�m�=�X!:�t!$v�+b�/K�F��C�`F}���n8���]�9�A�<B��a�gb����WY�Y�8�Ǵ��3E~��\��Aۏ�'yw<�m��K���>�y��i����}<Ϸ�@�c�����}*7<�����"(�7���_�a>�cu����N���i�R�1��Vi
��������x�<@8NT%��m	�-����a�c	=e�l�ZQ��99�[NQE�^a_h��D~L�w�;WsY]�UN��TB½�$)h2�H2�)��;X:��
�����V�"�k���<U@>�G�y-��)�Ѥ`�=н�q�A�;�YGnyFdR�}T�/�!$2����w����w����ǯ�<�y���W�����l�q�]�_FSE�p|���n=���ϛ��/����0L&���#�
�I��ŁAP��@��LP��d�	ɿ$)�ز ����X�b"�n0>v�F�젯��^`�h���R1�Ob`���6��9�1>J,�t�D2M���]chAz7�p0K�8@F�����N.`�;���ba;�0�@�(��S6�;�v�L���9���22�)���t���N}4��7f�Nn:ҽ��?W���ϧ�����>�?ˬ��kx|����}��!��M���	5��D�^��vI�g�c�J���m/���0MP|j�MHX0�2�����6���ق*Y����}��
���Hȩ�˜�Yg����1|���'|�e���Kbt`�@���"\��F�	����1��H�d�.�Xgg3�멽'0���:���+u����@�#^P��H��w���O���3<z���<� �`خ�N>�0zy>��6=�e3إ���E;���dL��j�19F��0�4؛C�p$�A��b��� 64�%,�gJ$%P4�`�
��O���'���֠����6��c� I+�Z�i�4=�
��`։��t`Bp�~�A��SpZ�V!\`s@��<��р(v�y��Env3����b�Or�4˜�6�Y��@ͬA>9�rW�M/J��|B}��3������~����y�������E����~!&�hR���d�q�����.,�i�'�!�	u���mC��Ñ����`�#]�t�|G�T���b,�ԴcQQno_iL	u����QF��yVT�.9� �&�Hk���순Yb��#nЁq:NȜ�p0�_a���
��(A��/h��/�?"$Pdf���|�PH�~I�0��hE�\wn���c��0��{�A�dD!@G��y���?�q�	$�9jg_��)b������d�g�u���@�~�G��v�A���0	(g�/�W�� ��G
�	����C�"�@Q�N+0ƥp�	,k�3�s�9b��b2@�a#�d�X�l���V��+Nģ�`�J�
�!�"A�.ӕ�ݮ�D��>`�����<v����j`��	ت`���
��
#�=7XV<�k=�1�R���dt���a�'�x�J��F������@�ѼO?¢U�o�����f��x����n���?���ѕb-���CG9Bȼ����#
��d�naհaF�6zCj'F!�����8�x�H�>1B���&�}G�H\@E�(�� �����D�b\�vd�q� R��k\��Ȟ���y��p�	D�K�&	fё@W߬2\����8�O���������Z�x��fQb�'?���^�[n	���):�Ƹ��|�*D`�<���l_����	0���d�K;���Q@$��,#@Oľ�ؘ���C�� �:%�Q���O&�4���\��������GT (�06�q|!N�s����>�QVj���'�Y��c�D@Bd�H�<`z��©��DX��&4.0t�J�db�� �1
hܐ�2P�Ʀ ���~�f]�fɀw��wE�z=�"���_���K�R���6NN1�f��;��Z�����s(F���DH��I���n��&�D�0����F+��t2:����!�!�nd�>��J�5-D�?<F�]&Xf]G�&D�����"�m�Bm�e�(+G(��S*��\T�����6�F	�c�pK����`��8@�c2!��P��d�X,�}�NE�K�O`F	��L��B�@�I03����s���>�
�@β
؈G����_A&
�����_� 9�R���/��_��1�ޠ��� F?��|N��Bd�Ӑ܇Q%
�?18��b�x�K8c�fW�b�kq:#0A��TVQiggf'�Y0�����Ϙ�A.c���5��t�L-G��L=	��E�����u�1����ǰb4oV@�$}�6���@��&�H-%�t8�A+}OXʆm�
������S�λB��t���z��5���ף��^�����>���a_֏���֗�"��BFM���l���#�G#���`{	��&���,@ȯe*٦
�������p�YdW�)��!������
�Ç\n]�"�%)ڕù�
�
�)3�@��9�`Œ�"|>8��Y�B� }���
�|��B�R�����vTJ ���'�$NF����J6�|�	� L;M]L�S.ATL}���}�%���>�A"8B^q�?����J_x?�Q�,�ߣu_i��س�z��P����t�d�G��͉�0Q�+f`A-����� (�#�d�!�n� �p���]c҄���ǹ�eO=%猫��h�+�~�)���k�N�Y�K%��`E`���u9U�b@vAy� �W�@��騦i�'D}0�7Y����0�3q$و�Ӆә��),L�g2�� ��o0�<KdP������8����ټ�����=�
� �{�Ј$�h�pBC����;Tg��Q:1���	M�#	FךȌx� ���P��Gj'�{Dp���u�4(�Q�`bQg�2r^�Mzq3ɀK��0�$�BL��>�,�A�MɸЈ�$o0���Ζ}����5V9��0nm�END�qH�|�.�'Bw�h��ȸ@bjk��jω�
�a4러�-y�<�z\c�<��0V��H��BK,�/t��0Lk������ ���3�aE��`o����f�<cX}I��3���>�Y. "�0kK�S]t�M@J+������������@�j�͘���}�Y$�nW�E�w�b,q?��v���l����Y8��N�$�*G��@.	R�剀��
c8��B}E��f���>����?�����1	���rҗ�;�KD��ɴ�>k�8 �1b兩h��C�Cy!M��C!G�$��fy�%4!�ˇ�s�2�N�\ͭ��M�(����.`#�"�N�Ca�*+�����
†��"hh�ỳ�*�.\e�Fp./I�\d�t�	�'�:����P�U��Z���CSoo���	�hanfx �=�`A�	d�>��OO� ��Dd��EP�ڡ��:ϗ�P	(�<��� �^�}�[#��m�!
y��,-Awd8�q���	-k���,M�%����4T��KP��-����g���;�`,�F�W
��\^A�ٌ������`n��w}�s9@����%8(V50J�����C��$��$�I]I����E�^�y��O�]����B˙k��B�Ǩ��.��+$�Y�'5�'���ɋ�;�>�8$���<E���f@= ]�j�׬D���E�����bބh��ʨ�qp�l˶\/��s��k0�@b�u�l/���[Q��H���j�@�#��
��ۘ�l`��eU5 ����
�@y 0�t`��LH���ңD��A��@�9�_OK��T@Lh��0 |���o��=����6p�>�F�?�ף�B�VBe��V���%������|1�Dh���Y�՘T��5$��=7͆e(ӏ��e�zG�GhJ3�-����}7�+0&�`,�Ք�xL��1$,��`	V+��j<g���G�TM�:MI/��?F�>�e��2����DCدhBxDYU}��U���y���
LNA`����)!1AQaq����� ���0�@��?Fa��/bH��O~<k�D��w�Y�pD�=#5�ވ(��"[�!�5:���s�q�X��,��)gh		�r��/BV6#c��(�y���k�i�W����a]C���lk5r�t��0R�l �u�6��|}9
�5](o��=T�����o���ܲ�.�8�=���|��
mڷX%4#t���T�f�m��`�p�i�OFn��=�'xh�(E�5���	����8�R�� v{:uB��^k�eJEݚ�Nq%���4Ă��i��<�W6�9w7�X%	���'�
��
#�Zu0ݨ�&�̂I*�tc�<��C��+&7��^*SwMi��T���"���’�d+gl�_3�e���Q�	+x�vg���xύټ4����c)O�y+��!� (�\��
��� W�}r���y��k���>9��DP�־8�A�@�>�͌%�5�1UP�o�� @D]8�c����]�!����7=A�[\�����@�F�N�$����V#a��0��rS����)��}|�8��o�A����]nu��ZCO���q9_c'1��ٓ�6�χ��I��Z�_���9�����a�w�/b���=��Ū�Ee�Ǽ��g�y�Bk��m��X|b�Ѱ7��.�$?ѯ���N�t'^8r%�#��U���G�޳k�2�LS'鬘�V�uۋ��K��r���P�ל�8{rd�g/�L����
�B`<?4�DQl�d�h~��1����6^p���d�-��7T,Y�z1�d���5ߌ&��Bs���kP!��w�Fj��7�?�BQä�h�6�X(0/ْ;��6G��Ƴ�������>��=�����v�E/E8:��)�tC^nM`I�GyP�tv��ٗ+�O_��(R��؞� ѹ�Ó��c 
	���Ǒ0�lq��yN�~r�ol8
!f��
V�
k�]|󖐽PZ^]�8����Ɵ�%��>�Jj�xso������-E*j����Ӕ4�Kd��Ի2dz��r�O�#-�Y�XBt:_8@e�f)�\^9�S�׷��&�z�t$��+N	J�k@��Ò�o�t��w]�`y<����N�v���Ӗ�9H��6�\�P��@���Nc��[ϣ&k�����7��x��#O ���0�|��(ޒ쳩�c�f$�������<}�sfG�
�O��mC�rh�����p'��z�LC[A)��%�
�/��AA�`��D���T�-~sm�z��>vm��*ԫi�Gm���xBWO>5��QRx���]*�2G���D��2�s��Nɤ�x��:V��0�lDf���&
'2X�y=xʐqGpºV�����y�X����>�o�0��v���<F��ܥ�Q��� �K@��6��r���M���@9�3�㮜�8�8�c���ח�����g/�kO#�L<cd?F�Fu�]���:��d?S����n�~ٿ�f��I,	���u-�3�aw���|�!��/���CO�v{0D]bP^����QCrj�!�~pYa@S+��Ӭ"���î1lT
����="�M��*������6��4�|�.��Y.
�މ�m�dlND�|�k]t!���X�`�J�B���8g�n��|V�B����h!G,�pz��M�ߗX���k�*k��l@lj��h<��߼;�R�����x��WF��ތ~�ԭF��<�'��&�����p��y9xBKv8�VP�\��3�-�\;�q�B��I�L��bA��t��DA�z.5�#t��LO{(=���9��e����jW��2� x^�h�N���ӎ���1-�X�����l�w������|y�u,Iד�y�X�UK��.ڄ9�����㼬6�N�ei��o�5��։�#e�@�y�l����8rN9��{�'iQ�9|z�Z�*K���r����/�X���߅|3��g�\U�Q6����T�x'�0��ڏ4<�f߼0WN���K�θ�x�j�]��������'3��u<bH�{1F���^�
 �5�>h/�θ9�Mtܝ��h_xD�����,Rs��<d�9��D�b��04 r�9U�gH����ۀ����u��c�Q� ������]��S.�'~\#p��0G��Ýk��75Ǿ09��(���n5a�9��s�|����Yf�I��n�{������3�?�K�Q�h�y�� ��z���w���f�Ӧ�V��5�#�$Bs<3��
�P�8ۢ�i4d�q�1��P(�<l�)HF��&Vπ�6aK��B軺�j�M��C�7x�<�*�UQ����h<�I{nl"���1՜o$O8�@R�Η�1RHxC�>�\"`�F�%�� Pٱ^l�m*�1�E 
/Y� ��:��`/�#_݂��H��=&�"���5��Fn��l�1�׹��$�_�*���:��k'BEq��mx�+�٬4Ѥ[)vw�Y4���w��iu��ߏ)M�MH�}��b8�}؋�
k��^y�&YZ�&h��~��\溬�3ü��$�t�/��'
����WְsU����=k��:��w�n��m�0Y�o�,!��
�B�8W��!̖��xį5M3����@��^2�d�Y���4v)�~pG�МI�~��y�J)����k�<emlW��இ��ۅ^ܲ��c�N�Q���qG�"����t<��u6+׉������a�m��OW��/%
^�ӏ�G�0�����4"jK��"�C\���`g��Z.������E��	:EC9
�����>�+p�oɉ67�^���SS:��J���0h��9UZ�jh�9�T7$�X=[P�D��l���/:���p��=�<x�X
7�.rW�¾��6�y�:�����g5x=`��
��E�_&�<��v.��/����>�s�x����df�8��Ly�d�{�׬�k6�[�vQ׹�/��8α13jR#�a�����	LlH���0L֗bF��`V$>�t&%Cy
�ܽZ�jk=�bm%���'�@#�~�LK�6
�u��_�@[�6�����Tk���?�EP����r5��J>o9�)�:v��zﶷ���n-�'��P9ۗ$�se[C]�sPo
:㯜�p��ɞǔ���.��.��1���EQ�{c�Xn?�aƑ��z�즔+�O��� ���uY�����y��È. K�@H��
�[����$XW���3��Z�^�㱤���#�<�4I�~c�
��x�A��,]��8�� ��{�Zk�;�`9�{z�͆��OÎ.���E�6o1���}w˒xi�9}�����y� :\N�P�z��UO��[4!cm�O��9�����<U�?�: #l����o`[O$�5�x/P���e��]�|� �4��=N�n�c@<)��"G!-o����{x?8.�;Ei����^k�Ч���$.�&��^h��8�r'���\�Y�l6���5�t�]P���WZ;/wd�D��h�+����s��u����^=�-*��n��S�|\�4		���!x�����W����rSn��r�Z�=��CH���v��8+���]�����G��<c�Nz1^+hOy�د�Q��`2���M4��=��;���7��r�?���e��/�%���s��X�2N�c����_�"�w7��߷)�LZ���ܦm�~1�ÆM���1'�4����_�Ƴ�"���B��'����aޓr�E����p/�r9���^�9�acֶ��G]��8�@6������p���F�T�ݳ�XfȮA�����,�I�J��N�`c(�s[�wL����r�p�s�Ӟ�~�@v}����F��5p펚4�^Q�Q�]§_g'c^8�a�`=���o:�<.$�m
kiW������}k���GO�����n$=s��ֻ�Fݘ�Ro�cC��ȏ;�,�6Hh��0ܡ�|���=��x�׎����ͬ����Bmu�o�)�p:ӓ6��5Η�W
ID4�U�ծ"�c�ŏS��Yo%�>`,�5⮌ol <��ڨ�s� i�g/G�(�n�a��t`d���ʪ�x�ή�L�&����j�
�l6#]<	�pXM�?�9+4�IP�9*�0
���w�>:��Ra�5�����D�|���
��r^�F����.�4��x/Y��k��q�[�<��ԪMr��n��v<���� %��Ϲ�*�	2,�r�1��mgd�2��¢��Sg˛� �逡����]L~u(��T-��z��
UZZ{��iDC����l�P]�w7	�hA<7�x4讻nF�V��f���JA����팭^W��"���x�4�G��ET8��́id�`�;5�C�j�ag���pA��)'@T���~'�7�S������5�]��y�{q��0��;��f��f��'�:�rq��:�?Jg�9��Ϝ��¢�@����B
S�G��GN]��9.\���U�����I�h�	q�5��_�c�QyufYd��	l1���Bs���!\M���I\k|9C�Q����(&���`�����C�QK�m��e+�즥i1�N���$�,X+�ę�"�3K��i��Y��lȃ��]gd9�ύ���P��>��B�����mB�GF��Uڡ�%(��]j?�d�Q�zꤝ��U	R�}z���]�<j�eV��f�I�S�ҧ�j�,�P�p�ׇ� \�j{�d��!3��8�
���T��P\
����6��8N�'Cdxp���i��Q#�N�8��_��x��}|a��5ـ�V���os�_
9�rg
�H���Py�Q�QCm��i���q�ߠ��VG���_��b����Ȯ
�ƅ!��>���c���c\Ŏs��������oV�aJ�;̉A�Z؞f�EA@��|H�
�[�"���`���ʃC�Cg~��q�:� ���� ;Q.�����pr��:=����"���hB(ӆw��-2��\PY�O�1̓@�����l{ó}�7�� A�8S�1r�����ư�����;<i�ǼD~�V�����$�|/\���>FT.ж��N5�]�PQ����g-ޏ���&�f˕hC�̈�J�~"^��c679{잽e�t�r����2�:���Z�|�`���X�G�9��4����{�q��$�~{�1v��I���G|<��g�͌ݹ�ޟ}d�l�־qb�m�*7�7��?wIf�I�7�O\����2{�f	|�S�9����.���6B��I9��y��aH���&=I)�"���g�kg�L
d�=��J�!u7�L��|��<��T5���8�c�����Cl�:�ɄB��;���&�!��% �{�ĽMb�W���R�R�A�;�ƐO�g`�\jQ\��ƒʈf��0v��8��qi�>r�q��c��yNF����*$O�?8ijcH6����a��������F��6�+�8�H�$�=��Bh�L^���P4.Pu�)K0��|cT�I�����c�}�{ �M�8
M�2W�*愎n��G#>O��.R��$��8o�0b��Av��G�&�Qy����-7a�X�.* ���p�[���ۮ����cy٤�yLU�F�;cf���iŜÂ7�7�*
�e��'x�D���¶�<.L:
z�y�
��H�}�
��/9����%������>={��d�/��
���G��,t�`���}�;��B"��#���曗��.�$�5^�9؄�L��!^%�.R�|���QAu�����"�NS�8����˚E����fP���Q�̨�T������_��&��z]ͮ�\d ��/o��
��9�*���~lZP#�WW4kG���/mG�x��Qi��Eu���ġ/�,�Bޛ�MaB8!N��ٳw�=���>���@��~�$#΄�����ǟ~�pM�G��%V��ͮ���Bƛ�n�1�8�}ⓕy\���Y�d|���n�_�l�N�����l@뷬��Z�u�^��o��*�D,&��;���`W�{����^
����
aK����}=��5������=��|��&C=��|όK�du{������_��Q̧�x�u%V���'r@TK>�𴁢.�.���
��!��V�-(q�[ɗM���8��l�7��i�����J������HG����x��t��3��<�!K�y�q�YK=�68z>��C�;�6�@���x�A�^}�GA$����x������4`��CZ�C���t����
	Wz���B����BX�'X���Z�U�n�c�mIt�7��4��S$"*�C�r�"@iB�k�w�VF���9�!�`Bt����U�h��'�1[<�(��~
�� �����Hp�9��6i�����&�W!��RXS�b.�<d�h}�_Oy��۫�M=��1�w��R�U�8v��a`N� ����7xurߵu䙫��S���������
�X�i��0�Aه���E�P#`+�����/]��t�`�Ӄ��?3~��"���A<�U��6,v]�k6�'��yb�rt�=��Y€;7��~q_�3��Q��]���Ҩ��K��� �3��˛~Se���}�����z�ڜ�C��Ee�v�
�#E����"�S_����:<��*1]�Ӗ�LJiH���ʳ���8�^���́�s1Qf��}x�àL`]'�XQJ8�����f�F��e�m@s=�F@f�F|o�yA�ˬ㣯x�苔K����x.�O묹��sk,w���i�������F�]8"M�Y���u9�V߶hѿ�ru�3:��8��.O��W��w���"\�0K�d�z�K�ɛ���W/�1����Sz����uscي�;���KWU�_y��4jC�K����{�^��9ɡ!�X�A<�s��[���ͼ�c��P������T������0�ܻf��<L�pM���Ʉ��%k]5�90A�����d 5/�x���("G5�i;���m�]d�4"Q�[�2� 
�/p<k6�ȓ��2�>�Q޿�����N���.�����Z�����^���2�LA<�cH���B=cF�p	����lB	u���Q>���!vqAA�;a���:�=o�p���Q�DŽ�'����#M�'8���:q���޼�G�����C.2�e|KGjj�{�j ���X�z�DsM�8.��[�ˍ���}��:�|�xr �vOO����ۂ����L�ф����b��]{���Ox��5��&���;/�8����C�/���A����|��+`�xT8�kA`�G��;��yt����vY>�_�w&�ax<|�)��Hy=�ԕn���q�J��鹀Z�#]�?/x<���c�g!��eS�w�މ	���h�M��0p�*����`���e��K��O=|�Jn/��}<b��::����
��ٳ�͆R�~���'�#�%�h�qz��Ƒ*�ϓ�R�ۯ������
h�Y{v�^(���65�d��y�f���%��Zu�=�����x[4�r2��Nj�]��Vz|`�t71$����4y�tq9yɮ�zb�vNɬ@{|�q����M�f����xr
nv/9?=dٸ��)l�u�����<�ż�;͖n���&8q���\t~�<d�]X.�L�||\S[�27�ru�y~���qV߭��s*�
�y44ᅲ4�J����>8�,��BY�e��g�ߏ:�2f0]\�bM��3}a#�U%$�4Bl��s�_x���m�Ǽ��e
Oo�6>�.�ٖT�:`;/�0B<�Hr�1�n��rj��N��s���1(iSϣ�(@��M�@�D�Ho���~OJ"��4MzpDZp	�!��1׀��x�Uj�/����q'o�pv@�j#����U�H��!by>�8J�+N_�(�)�j��],w*R�@�Xc�G�e�Jv(p�T�e�(��;w�Zd�Ƽ
q�4���_I��F�)�qE<���w�T���A^�/�R��u�7�JD�M�Q��3�?+�U�o_s���8hT? .$'��YL�CJ����
���5|񁘆9
r��W//�R]���td5̌�ȍB5��_�nhNƃZ=jq�8#B(/N�lZPD|���i[wA�����p"P��Ӕ������
��H
����6&���<>}ⵎ�t���&׏�%F�:h��;�Q6�h	�0�鹮S�*)ɤ�D�	y���]��i��f�Q/�2�����lW�9������;������~l�;
�k���Kx	W�{�X��'��ڷh��_�'J����t�F·�y�W����YH��ˢ�0����� ����~1�4.� �u��PS���)q�_�!�y�fh��4!�z�r��r���\�R�����n�s@�b�f��Yl�I�?�j�<9�0.Ͼ�)��k�e�'�ے�+сj�^I��#m��:έΰ��K��[�.s��7�2j���f���q�
�AX���oi����ZloA�'�c�*%�^��7&1w�ތ҄J�#�D�&�^�i=�RE*��;Ŷ/�Q��I7�xW�)��p� tj2Z'��X@���1��:)Z+�[S$H@��
����N1�cD�X��4(�<b�^3�!�ķm�'�yZ[�|z��du��ĭ�O��&��;^W�@���]9��9��`Sc��d58"Sfi�٭��)4�Yr�g���1(�#�ʜ�.@9�.ɌHC[�y��.��S^s���F��'f΅���4ҵѾ]r�0��~2��{,i^��cj��_��v��0��kǜ���ɟHO-b�����v����q�*��g� .�����#I)�x�QP۹���
�6p��[x�#���W[{�h8���;��/��]������4�*�
~��
�}bi�.ʏ��P"�pGZ=��fօXF��N�KCF읹@b�W������pW��Ƽb�"h���`A�ln����<��>��
·���qb��k��(!l$\�uf�b-8���i ��G��l��ߛ��>MP!����"�$��
{i���A���OyBx�}�0��h<��\v�6�I��'xp.����=k*&��9"� W��x�vh݉�"e�(f�Tpt#u)���kmT�n��<�Ƿ���*r��ñ(�A�>2��I���Q%����*�.�β�Gm[��禁���ܖQ�}d�_s��ܻ獯��Q�2��x�O	��
_�|#�s[-���
α�_��vry�|��5�`����8�i����{��}`M�y�|k��\�{1��Y��y|��5�{z��X<z}�$��`�z}�/.Oۼ�<q�?�Ź�SN��ٲ��g�h��
�w	���f�'k�
/�����GJ�F��m<��n�LԻG&��qZō��}�x�xh����L]����&����YP��N��(Q�2
����
Q�<`��Pݩv�L��[�"LK��?�ؐ ӷ�N�<�lq]�\�|~��h�g�.�-�q-\'	�O�#ǐ�Ct�:����s'�Q�a�C��O!J�dR𣗲��eo]����6�R�@����^��xyt����0�3�>�LIN1��ڤ��-�SO��jTk7��o�;p0*e��f6��Z�������a
O)�M�N��	��?m�x�vv`7�4n�D
��ʈcN5�%��"s��61�g�^���W�,:�����LlA$q�v;��a��.@L]�"�r�����DT�d)t<�4��糽e��S���!@��3�C��<*��>ԇ��b���[4Ϝ��P�qZ�)T�N�3���{}d�h�.��dZ ���I�Q��xz��/�·���W{x�L�!����8#L���[�'���(
m�?�Em${S�0���@���Rt���pN����F�d
I���8Q Ut�Gی���G����#]�o��!��F)�˅�&��>�)�<d��9_�Rk���`M�иi+���o b������Xn�w�Ǎ�+�w��8Ď
u�z�
�m�g���׽8�2p^�^��D�\F����!�J樅 -��duE�d:ܵ>qK�K ��!���&�W�q�N8�����'�>��a�
�]�pdlx��`
���Z��7c��;��u�;ֲ��;{�}D��8�Ў��m�q'77���}~�ߞ��Y�H�3�g�z��q�WX�g���:��^qJ���f>\ D=��1�����_��y����^n�
�U���ș�$ӑ||dw�e4C���9pD;����Y�iS��	���D��w.&��S�:.�%{���(E�X���ق��rG�<��2WA����w���6�e��67P�<`J���z0�Z�B�/ r�s��*ӓ����44P"�^���%G�<bw�W��u�����'$0�������Wrw;�ֱVB"���k���&�:ֵ�/!�N���/0�DBT�~r��4�V�(�Xz�&���<�":a��FJ�P���ìw܉�1��2���T���ćZ����8"�f��mٌ�8*�����l�*�eQ6_�Ê�#�|��ma��s��F}��ǒIA��yq�	+:�'���<Վ@�Sc��h�H}Ma�K!uS�W�UJ��Fk�6�^��]o��&*�u$�5y��h��^��U�
;�{��Xa�eE���2��h
�?��}�ٹ��Yy��ۿ�4ػt�������<�8�-D��ǁG����ԍ�RsY>sI��}e�:b���$��E��B���k����5�z>�\�.���Q�\��<�
.��o�޷����x�(� ��$��A��<��i0����|a�i�f��	P@�::/�]�Sf��2Z��S��
[�tE�n�GVhe<�q���߳�YjuN�Z�x�I6+��Li�'����H���g0�r�����3o�Q���7?�8��j'	�����.�@�y~rW|p��6��ߏ�M(���ʶD�A�a�BP��4���r�{�D@�ڶ��d�����?y�q�}\��&Ớ���.]�˽xÛ��jO��n0ѵ8:���s�<���g�I�i��.��z���@���%�vR��8�H:ڥ��] l��C�X��]Nr]��D�U%���Ann�opT9.��8�MQ��ލ'Yς�	����
��{�2vN&�;6��02MC�1P�����ޔ��O�9�+H,�т�
)D=C&Jp��\��т
>�r���@ó���MB��锄w�y��u@���c�˙dC�^��U�a��	Hn��z�A&N�� Ҩ^�����!�<��̶����1����w19Km{:����A�|�������V�7�&RC���xq

��*�\$�8���=]���6���S��e*5jњvl�$,��-�w�
�L В�޳w�lҝW�83G[��5lq�㒹jTN��J���p�nF�vS��ǜx����#xu��Y"hJm�A����*��&QtDлqU�U�b�A��8a�4����^1^Z��kG���	�G��h���o1���v�ȰuZ��^��o\�im����όI+�D5�c��= ��*lol*��ăG����l=R�TlLP����i�Rc�IϜ��69�x-	�z���yi�OwY	ݻ�IН�<�t*�>~~��"gQ�rŠrs=c4A�y€āY���P���ߎ9��Rtf��M_KC�E5�ܛ�$�(����3��^qe.�
'���KD?�v��wq�m�1� �E��9�F��`'`���E�j�:�^o��#F«Eg&)ϔ����>LM/.��b�Ѯy׼`$��T@������:\�8�ʺ���<\�	[ٛ�oC�9Ѥ��������;���I��q�Z3.E�9�}��f�4�#��R,ώ���O��*<8_��"6C��\ccB'u�qH恶xm���5��t�\
�"�P�]�*�A���/_�*��Sgz��	*����m����>�&m�C��}:��VД$/1y�^
/�tɵ_ ���-��a,F$܁I���8��(ںF�<�\"q8$���0��4=;�PIJ;��m�;�d�(6�����Jw�)�;��g4�`:��o�x���H�4�h����x�tzC(��MØ�ڗ�?m�C���r�����QxU���{U5��e�8}�ژ�m�ϼ^�<+Ʊ6�XA�|���.>ܹuU�J�$t��
l�I�ɷ�Gtۊ���cڮ�\��VHD����j*����2p�9�<l�g�G/_��j�'9tr�<���+<�&���W����TӐ��Y��C�<=��-]��`��5��{��EAo��d	"��5��\�i�>^��O`P��(QDS��rU��RqK*߶,:E8�6��Z>��3E�y�UP��Z����b�OǬU@3ϭdLSHt�1iT�N5�:��q�o>�/#�x��]�P��N��6��Ǽ�<�W���+�X��m�B���*�h{�
���`b\�������w�U��'�TE�&�u�(A㍉�X�]ZR��M������З��4*l��K�Z�[��I��":Ahy͈թ�x��{#��;�b�"��?�6��:���Ԗix>����5�nxɴG�'n�H���	��j�}bhO7�}�����܍hO:���6hX��ɭ�V�8l��[|g��ٖ��e_w��$wӟ�)�d��.jb㛀�pg����:�ް�\K|=|�~|��ɭ�?�Ԙ{���P5�VuΞq2�]�V���u�i��>��+4��^�@ �[
Po��f]��
�-4����_�F��o�ǩ O�3y���`�U/���E�
69k��A�U6kFӓwf*�͑�q�����΁�It��œt�\_y@%���{��zgx	�h%/	�P�2\�xQ�Dž�&���W���*��w'�e`�#�����R�h#�N��]���K��׈��\��#۱Ş�E?b���W����Ύ2�YJ��>��*ȇZP�)zA[��e'!a��D� !○��A ,�w$�[n��1c���n�f���?sYv�-�%ԣ�"i]���;Yà/8�_8�7�<B�B�ۃB;�g��D#Y��.�ar���f�7s@���Z_�=�Q�ɿ8�ַ����*'!A	�b�W �4��ɱ��ӓ5�h��ə\S�|c
���4):T�������}���R�|�9Z1�x��A��zп�;yB
����]���k/�n���5K�U5����6��2/���m�y0B'�ij}La9Rq�hy�[	��~���T�!�5��g/U�����!w�J�>O.?P�ݒ�JK�q�r"jP���G�;�'�؜���п�xF�
U6�β,l؍�
��ku	1��
�k\뙗4�>P��j@P�4���$WjU��,oMJ|a�D���h8\+����Ndz.! ����#�{>���(����TAk$���r�m7[���AF������I�iZ	���.W���6>`8�8����R+?�����,��_��y����.m'0�Ŗz�ʜ@����B�_9i<p���xu~�.�����$���+�0�f�.s��u��ׯ҇�8zw}`�4�9��T���猯.N
> �չPw�8M��*��ށ�VD$i;�D�.�t
���Xݑ�#4g�>1Vw�T8;�q�o*[QEK��R���}�橯R����R����
:���(@WH�)�!J�	���*(f/���E���������'&�r;���I�^��{�!G��+/2t>�X�B�jM��_QӋv=Kd�Y��� E��
��Dw��iZ�{Mh���A�f�V��9��an=� M�s1�"b���}��M$�+�i��a������Q��o���OW~�
M�=�������|d�!�ً��5!�&޳��+�qMbZ,y���#�{�r:��r����B���4MO?���c-����I�P n�;~q!-��VD�CoOxRCM��g�w����Sxb�ݰ>xsQ%4�>?���|%S�UR�ߝ`$q#N���$$�{x�a��5P
*Ǒ��zVm�qA{Lpn`QL��#4\iu�o�e�sBo��!�>1�[v�i��*V�Cz�����C���>��P+h���Ʉ�Q8>����4��<g��:���&H���5_oF0V�S���&���L@CO<�!�7P�"�:�>c6j:O��S����!/��D�
�����%�ק{�KKs��[�$�pb��<�H��������6	�ὧ�K�v���΍qǯ���b	�9Hu�$��u��ɱ�/�x%ef�>�/��H�1O$G��7���"�N	�&�qvP�9�ͻ0�ɛ�-k(R�o0��}f�H�t��Ȝ[ߌ�#,��\x�qo;�YB�1��:�^���s�������"�W��rPuYxď͜�=]y��U:�w�p�� w<�Y3�T��x۽cТ�j�$���=���^zs��5�7 ��$�c���AAO �l^����� �U����'*�y��7�����80!z�����EBh�a�����)рQ�݆�(Z+ج��	�ڭ^��
��a�"��<���6	`])�q�;��x��oV�#J���`YK�oX$�/DGj$���
�� �wzŦ ��9"n�T�pOx$�O.����ؗ�6K��J�{t�xj?JMn|T̀�IA�NX1P�o�亘�+m��2���9Plb�~GD����p�*�/��"�URt�vֵ�Iu ��mŠ:{#j�^p��o8U���S��H@J���7f#�;�%�`'�ƮY(�x.��e�ֻ��;�����+˟z��]E6v�7;%�P�j���(
�"]�y�@L��^|��x!w@W���j���9�ٶ@���_逢����K��̚����C\��<��uO+ٮ1Tվ����*�S��2��TS�����5컸:�)�2d�.�Ʊ=�5:ߜ��|E�M>�����5�`֠������S�bu��#\/���x�v�7���=G����K����F��s���ׯ@l/�qi4{~��"n��r^N�Ôi�4s:�ľ3U���i��{�M���J��7�l���	�4ԉ՝��A6�&Ns�6���)��5�Nj��
�C��yd��1�^�C�=�Һ�>�S��q�3�sCQ^���ޞ���s��8��	xr=ܪ���>^�n0���52y��|z�y99
�y�n�9?~sG��@�Nj�|-�ɕ�=g��F1`!&sT0H�^��&�r|K�+����_�x����'O�U�u�5dp�	H�K��L��
c�`���x�4�1ﺾ}�<��4��N2HGb�df̌5l}��']Llsw���,vl3Z���#�N�bf
�5�
��.s[�^yn���\�ax��՗��XŠPb�'�ƮJ
�)��0p[P��//�Xbj�@�y�0�Е[^m���[��=�sm�UQ��w�����Wu��0M�9d.��$&�SDm��t������F�C�/퐃2i���Ƣ��f���@O�	F������J�2���8����#L�#�Eվ&
q�F���/���ű�]� J.RG��?����$��{�����:�~��-!Uq�Jt�mǗx��Ԛ����b(Q��ܫ"��yR���x��i����ʍ�6��f�>��ЁBq�~sV+b9��m@B���zΤ)�m���[�*7}oG�{�,��^_x�,�[����P�y�nPrb�yt�#�<4^Tx:�\[ʴ�1ҁ��;^�&���C�˰��C�z�@����7���o�{ǰ���(PR�u:O^LR^g���t��'7Ϭ��‹Q�x�M���x
"����L����q��:���4����К>W��]j�On��$��幷猔z\>��Ȑ���vw�M�2�]S!ذ1�4�����I�~}8m��S��ۉ�/[�\{Ɍ^����₀���k���K	OS)S�vS�3o��qή1��?w6K|�i�)�۱�Φjw�g?9�j~�97DY�Dƅ�x��ѧ�E
��K�p�6���� �����f���2�Ѳe"62k�u��`�9��9ۗX��Ϟ�Na3�~r�l9����O]d3�78��5u�Aʯ-o�VbaM���y��@UqwhdC�缧��t[O>\/��#o!�Wb�۹N�a�X��0ϥƴ3I�P 7�ld|�����ܺX�BS`�>r��f�;���1��D�:����N7�Y�@ (��Y��F�v¼S� P�oxĔ�D~f=�B���v�D��F�B�t"�(��K�m��Y��*h��.a�xY�[ģ�uƘ�U���G+�in�5�{|����+��H�����; E�1r�o�y\n]|���<c���q�%\v���)"ª�0�S+��胁�;��Yxh��
yc�s5���b� �X��F�^�yx�:����ō��a���{ʀ�D�%�c��f�Y{����N�)���
�_q`�؛)�)k�V��m���ǁT�k�/7�c�i�
|p:��
��w��]� �<>q.R��Ƽ8�D�����M=4���-`�����nCt$��c2�p<s��"c���Xӱʾr�@Z�<#��͵"ܴ����D��;�4gT�7��J ������[�ލ.���U�w#�Ǭq�U�_��\] ��F핝8{�y{O�p7�"��<N�e䜐�x����h(�]c|�Ԡ>q�
���WW�5%N��zۜ�xm���q�h��_njA�"�S�cw��%��R5��/>y��P�v43��8N�.�q���׏/��=��Tpr�tI�����:���ף��f��z|���l���x������Px���
cn�3[���:�=��e|d�f��{��+��^.*�
�r�nž�M�����8u.s��y]�	$�k�A6���sG_��ՙ��\ռd��0�M&joy�<�b"k�i�=0�{�y�:�{�P0!g����bۂ
��%ǽ�b�?�c�y�M��!�7R\q@�6��gMe"�V�'7�]#�Dw�eF
�فHU��lP��ep>�d#���O}�8�<�D����L��¸g8.��:6�H�)WO#'=�r�J�Z8�
j�9���T�����
X��뫆A���8JE;墟}b˥AG�Ԡ�c���z2P��8���щ��.�p��Z����[�\r�H��=0�b�y����y$�'c@�C;qL'��ѽ{}�b�Z�Lj���0D:�,��~9��{���WI�8���5��NH������ �ܸ޹��^#�P_�A�^4��9+B�����@ńow���>�x���k���%-FT��>.�vkW��5ӵδ�f	@�]�f���4
������i��>�x*�U`�޲ҁyBC���Q�����G�A��)8
������g���J�T�?�b�M� X�)@�u��0
�k�e�h�^�|�Ḯ-�o���$�Z��^~���Z=��t�<;SW��
�z[G���$Nϯ��]�u�S�����C��5�t*�}b�!�H.K�F�ϣf���;����k������*���b���,���X�Z{|^3�h�-{�=\�I��/<b���%��e4�r�����3vv C�r�*
����7P��Pv ��lx2��
�1r���0]B὏Ɉ:R!�>��ژ9g�	Z�nr��g�e�E���a
��W~��f��>5z���U�(����Z]=�g%�p��6roE�A�<�!S�\z�j}���y}e�7�Er�;#�8
��,���97x3۰�HgY6b�Y����vf�q���{><d��v:�B$r�s.�'c6�3�B�����M[�4=�&���K���54��YUa�e��^���"|��R��5�j�u�u&ˎ՝�n�<s�`G��8/�t%
4�_���ı�s��`Ჸt#@���H���y��wS 0�n���k�4tkYY�&���&UAw���̛�t9H��H���Ggw��
a�yȎ�Q�N�?�%A E?
�Lb(����}�|˺%G�c��#��os��
�_�X4.�{�w1@�t�'��	|�>�n|�I�U>V4�:�?|2��Y�L�~�2n6Zp8{B�_X#�]s��!��RO9A��y��t�$pQ�bt�6���('�n��b���A绝�e��A;��O��Qty��Mɢ6�	�D�'��8�f���E���7�@���zpꃞ�N�nk�/#����4��>G�m%a:������B$]���B�J;rjgW��-
��I�z~1�F+	�=9\�"�37�̣���h�Ѷ�D��	;�}\@S��tq� 	Z_M�;No���^�`a9jq�q�ͫ&�^�(����7��|�2Ѝ^@a����n��a�b֫���;�M���
+�o��V��&X/�l�o��R��C��pN6�ă_Y  �{���ɒ��|_F,�9
�fR�(�����	��߬��Rh��M��T����tAe|˻�l�)G�?�[��5{B:٨c��L�P캹��Z�)�5e�W*�'Í��m<yGh].�8�ݭ<nx�i�� �g/�v��=�/��%4�Y]t�&���mW����PM\���_���'��P����ɯ_��ٞϝ���x�n�c��q��ڱl�ַ�F�D�f��B�*A��*ZB��2hzc:Y0/~~��!��^�������&)(�$�9�e�r���N��,���!�Mt%����@�D��3E�ZӞ50G�]}k8��ߗ˓�@u���{
,�x�!N�����xpǞ�b�A�;9�Uݠ]���M����MPw��
<�˒}��q4�4=�G?�,��@Jx�p�/��,�EI��O������U�5����^.��A4R����e��Jf��������?<�g��~��iW�2K��%�$�b	���L��w�b��K�z��PМ���VV��}K4*[A9��
���
S���QFڵ�#�֬5��'|0!H�Ȧ�8�%����9f�;��z�7�;}˭��hq�ǥ�l.��� �;p��$	�9���^��to��|����kk��8�2�o���A������w��W��3a$DY��a6�$��Y�ֈ�<�>�b�uk�'fR:�S���u=�e�ɳ7')�Ńa��8g���`CP�#���b�D0֟�8�U�
jQ��O`1a��W���2�:���af�v������|p!X����ô���\�#|u��P[y���(�"|����`�ai��Hl(��:0��A@��_�7f��F�o��8Z�"{sb���)�5�-�NF��$�sR�݋R|w��ֺ�;������B��0bݎW{py�u���^;	R��1u
�9A�u��T6�LA��y���5�Ǚ�l��j2�vzq��ݾ.HA��3i��.J�xzv�K���։Ns{�M�fAc��`��9���<�����ۼ�ۭ�s��&F��П>����N}f���]7F�6x�o���"q����8#@�]o��6J�3�]�X��s�����V8wr�����8%�����w��R�Ri�ߞ1E�pd<o�)M�1���m�����"$�s�Z�[�O78�D�x�qAP�tE�A�t��P���yPi�˗�����������U����R��n)!"����p`dw��p���ckj��Z-��S_��~�yg19@�L��vA����eZ>��a�;y�ĸ�l��5�y�ׁ_�
�#�%�	8
�E0����i����K�V2�	���ks�?F=��7�ە�Jk�c.�,P	��c2�l���1�QJų��G0$HC�x�X�ɚ��	ӏ4�9�v竁�G����rzV�^�^Oy#�t-���/M{p-�i�yʺ��n�O�<0�F��b�3P;3~�s/Qg
�x��ʇ@p���?x!y:���k�8m���u8�yjV�B�p�H��׼�Alh���|�*��e����b�AC@�?�BȪժ>���n:B���E�+.���9]
�g(��^���׀����Q#K#�켙��KǛ�<�AX�}o7�Ctx�8��7��5��l�lTD|�<`��l����/r����B0�^w��eB;*���xZ!X�{���ȹEk��yu����v����L���|`N��x�5�(��P���C&�`*�
�
#�k����
�|nO��q���p�_t][74x��R����󛃚z�fQ�^'���N���x9����Ȅ t��1�C�5�K�kÁ!Р��K]���82�=��.��>r�/��SUє����M�f�\���w�Y���j�<������_.�O�� )�N��V���4k�9�0����/?9��(yl�xGb@���y� aS�������l��&n1F"n��x��R�3w�l�=`h4خ�b]h�m�0J�iF%����D�xl<s˂ϝ��v��� B�d_c�`woY�Л�OFDh'Q�]����L�"J���;4����L�"�<�-��w�׬WHh>YƲ��֦:�\Zp�B�Qe<Y�&�s
3��� �����'4e�tG����<������G���H�#�kVhk�bZ�2s�_7�r�B������b��jHr����mo� o`"��U.���%6}�O��\�E|<d�Ak��E~�1�rՎ�&��|n�d-r�;{��+�I�8{1�^�fƎ�I{q���������
(�S�����{�ala��XUPMMJr�8���z���"���<��
� ���~0%���g��*�Ψ�W�˒,�6�]}|�o@Z��V�J|x���CG�z�ԑ)4��x�h�=�'rAwQϾ@�
���Ǐ��x2��qw+�H�|���<�ʟ'\`ӂ��>&Z
j�x�jz|��!�@�u�x��C�N�{{���T|yl,���x����T�t�_�N��x8��ƹ�o�X�c�y/_9-���%�x�(Y ��G����N��� �N~|��c�w)��c�"����>�`b��$�Ѿr�w��<��j��c�9�5%�ɾu��U@
���ն]ӽ��p�i���8L�-uC��[�G���>o�X��ݦ���H��k��ɧt�6���~�c4ѥ��Eؖkf0!@��<(�2�B�	8�1�M�Y��5+���ɯ�=��5�m�x�>9�w�βV1��*�?��������g8s��_��,�^3_���� [�Y�4R������c���x�[�/Ln�6w&&�A��e��PU��J�f��M:c��.I?:��Q@R�^{�AZjyg��A����r��0���Od��aB]�	
A��k���H��� �2�KOO&3*pf�p9;��$��K�+>�W���i&�ȨtƇ�c=���>q�`���>��J~n�o�f�W���0��x��E0O/9�L�"��_8�O}��cF�_2&5O	���`(�T'M>��FP�``��O�!��\���^bnh�{q�_���!�#����h�Kˎ4ɮ/RYoX�P����_Ɂѹǀ<ٍa�4�5�O�yx�Ȋ#�ړ�i� r*w:p��LP��G[{�ƀqb�8
����_�)�^��6�sO;ӑ:�A�E���y��q"
�#��s��4^��'r��E��4(M!~|�ɦ��M��r��*-��b�lE�Ѯ�WZg���w|�h����Ge<�yڕE�q}�*NSz�8�s����ÂM�p}���!��6�8���m�Fy��:�mno'�2$#V����";7�Z�Y�4�NO<a�®�K�,��f�s2���	_�ծPf�W�۬P�{��������9@�o�*v�
)��gî������R3����͋��Z���y�*ơ�s��¼�G�
GB�ן���~�X٠Cu�p#`�y�� �w���K�����%
*��e/Zֿ�W4#�����=���ՠ;5�s2r�q5�s~n'�nK!A�i��X-{���m����ө�=�8\��BxO=��n�8�d��;���ɒ	`��;DZ��Ϗ�:��5���}��7��_���4	���<�<`�
�uí��{�B�I��s�6|Ko	����I5�<��rC�b���V�d>�Q ՚]s�ے����;�d~0�X�a.+�بxI���̵l������?�
�GRLKw٠�.��_8�U)�dƋ�jh�>y�[g`�bKm��%�J!n9�s�С �<�*-.���e�UB��B�����v$*m:���i����ō
�O���E�,���n��[np������,�����W���%��8�ﻊk�s��������0�	��.�f�\�ڊ�t�;w�*.�����~q`>��O��MR�m�7p'ً�D�6-1���u���3��W�N�`����J@ٛ��>d�5�:�ȋǿY�;f*��5�_�G
���U�v��0�m]I��sw���l��p2�|��(	Wn���mƫ[�#�~ܠp�4W�.h��'�{|d�2��;'
s�F�n����_���5��)᜼�u4�F%��1�����!���X1���LP�w�[#ϟ�(�0��0Jځ�8G�fN���>�D9h.1e��'��4>����`�����(�u=^�DM�ό����N�Rt`�D,>A�e�c2�"#җ�&�^=y��B�t_&m�n�s���j�D��]��47X�:ĖT��S����B;g�����+��L�#\����!ȥ]rξ2����tlz�4��ni
�� 1+>w��k�<�8�]��:O�k���x��i�*PAqY%���&Tк�ֲ���y�CG_{–�����[�vnL��]��/o|�^s�7��� w��Jb<���-9�񚵋�W�+��7�L��%��_���ˉ�f̟�O�Y@)
8�00�I�3�G�9�6ӌ�X+*r<K���[��Y"�R g. 2��́��[�M��a	A6u��u4
�n��8'���=c��ɥ��=#r�[��5o�k�k"tM�t��p�b�X�o7:R�D�#{��G����'N��|�Pl���($�aEu�;]SC��T����6w4?�s��	r��e��z�~z��9
��v\؜�7d�"1k�55�yư=�q8+u�9	W���(�H�+��Ԩ�3z޷3W��f�I�G�����kҝ�r
:!PY�6ˊG)��k��Y�G��8��F�
R5�����KR	��W��)I���Y�)n�"acS�T|aF�����8��_��[o�`#�u�9���@ۏ�4V��kw��5�Z��C$@�U�x2���ߌ�������5D��ɛ��W�O8!�(�[�+�A��p�㗜ҧ���z�ER�+��D���:&�<f�f���x.<�pBW�{|bt���� N6'���
wC�P�{�+��S���#l�N@�cR��zg�8����{q�8���>p��&�a�fYt&��z�b�����&o����I���������\JaI�3x�X�Z�P�r�9���?�$B)68e��5U�~�=w��(P��Nh�LD�x7�L�G*�z�q��_@Sf�'��1j�"���6�]����h�Wa��K���N�f��]7�f(L"S@��cn 87�Q�5�ٚ��5�L�	�J�ף4���z����5`oOG_��v�=O�73�G�6�ߜ�Շ�7���#ޟ�5�RͤS�O�bt���)���g/ϧ6<q��4�96��x�����'HQw��^U\����3ks�K��V��e�k��4<|f���|��\�o�V�6���Gr�H:癄�d��cr��P|��-a��:��&3{���o|����5|s�Ah�lC�����Iy{����8��"��O�Z-D*j���2�s�x�⾡�(���u�w��X������ږ_��<c��Trz�bP�����nc���W,˂r\/�¨
�?7ߌ��"���׫s�<艇U(N�:���֌����q�\��c��������9I�;�W8a��G�ߜ]%(Ѡ�'�0��t
G�X��C��r%����yz��
TZ��X� 
�p���zT�
��=�-v��=a�	��_6_<�.�zW��1�`kd�m���w���<6�ӎ;��{�_A�A��s�
x8-@6x1�m]����K�����>���;����d��zdzl��Ԇ�Y��ّ@@�c��E5-�δ�JEHGe��ʭHh���>�w*��>}�y��;���(���s�(�l���O�oXֻ�ï'�/%�W��ˣno{����>q@(��8�ܽW���-�Վ��Lh�8�'#9%h������@���@����0�����	��}z�4A���]�{x���c^x�8�����:BD���x��	�}9AG"����������8�26��6�~2Ԥ���t�I�R��T���x��
���O);�����`vUU�{� D-<MoϜD3B�ޏ9Pt��{WP�"vlA�8�4��@�8	qd�����_e�D)<�3�`BM�ĉ߄w�x$��A�}�CF���K9
��+*�]��~�!��r��廳�|���k(�Y{�]yƟ/�Y
�{�P����27{r�&r"|�� 
Ph�G��|�>�}>�c7��NI��89G7�i�5b��?xЁ�i�:0
{F�_=^ךx�4���lp���>q���l���(�F�$
��(EMd�͙d`P��y>�3}�H����	���7�z{�Ш$�o�Ÿ�@�O�o�Vȧ@���83���ޱ]���>�'��p5�]!�B�b��(|^<��l;�~� �؝��@*�ѷ�/Ô���5R$?>�c)iNQ�K�ᛔ��j=�$�k�ۙ�(��i���G
�IW(o�G�9gN�><ڕ�/�+jY��t!:��dZב��,�F��5�V��"ֻ�����(�q8"k(+{~1��@��úVM����ɂ=+�
2�x�<���w���8*М���|�|1�$�/Nߋ�Xyx5S4\h��-c���<�]�%�1�)�	�^b��Vu>x�@Eޔ_pM� c,^!l�3N�#�w� &bhҞG��D������z�0L O�nը;~�8ɐ�J�q_��x����p���4ԍZ�{^����dPpw�p�2� ›���L����qϬ��h�rq踒K��x4�g��a��;����&��x�;�G��������7ƠkD����6Y�y��P4���)S�~�������𡧰�d`�?��ޱ]c!��"@CN���
i�|��x��F���\e��?�Ƹ�:oG�6#�S��Y�1r�+�Vk&�gD�4�1��oH����
(I��xʹ�'�u��
�����t��{�R�vo�].�4Hy��qNC�Ga��E�2�q���{�C��ifި�Q���i#M,�4���|eZP`������o����>�����Wu���:t���<��'�ro;x�^\�����g<��Ϗ��b.�8���g_�0�����T�W���N����md�r`y�Pn���'�w��/5&�EX�i_2�q�����|a`�&�(��x��Ps��E
z������
�����E|g�΢V��aޝ�/LŵRWz�q{��� ��{�]\@�q���m�*�4#����x��!z�b��ucÿ�7��j_
�R˱�pP���[�ό4;r����w5`mQ�޵�+t{u����h���k;:�0p@��.ؑ�n
Ní�(J3f��4�w�L�^ROy�^�|v.2\�'�ȸ4���ש�!6|�f�N���Ll��.�ߌ�,��X<�T�ȜN�>��l��ߪ�h��2Y��\�G�(��������Ô�X_�.!�*]jq��F�\e�r���φʖ�u���-d>��ޱ����9�n��3x�iM̩
����#(�m
en�-G��w �7��T-�a�X�C�q]���$kW��4�"vd��oO�7"�D։קa8ܒi�1��i�o`����Ñb�.�&R#�u|v׼/D�(����
��t�o^2�y{���pi�-�����&ϓ5����{�Q��xx�<Nx��R��8�����q�5[{��-�R��|�|e�>?�4���b�:V�8�|��T�f�q�Ě��{\j������w��6@�։��0%����X�@؏�ߜ6��oJp|u��P�����4�@��29�9//����
��{ž�
07و��w��l����*<�q����eʘ�/�j�T]&��Dt�U�n�6�N����R�{y��U�ݘ��my��;�5��1�AC~.!���4�9o���if&�9�����󐈋���5��s�4n��}�Z�-֙w���-��÷γ��5��w�o�l��j��������Ý��5Ӈ�cA�D�'Ox�q6(�,�ɝ�4��A��gq8��B���n��nšw������@~�<5RI�����������+U�";)<0�v����
����<a<Im1�IA�*d�]��Y����BJ��$܃���Sr�
M�+`��Ʊ]+�U�=d��K7|!����ps@����<�`�����������oƦD��l�#!�գ@�m�p$OI��cm	�/�}�}MW�:�֔�[x��4�����e�&i.�<�xe�E�Js�
�QnA�8���4�jj���s`�;�>�h�@Y�\�s_����p��I�.6�.�jt+u�ޣ�]��i�x�t�!]6���F���l����\����ѐ�9qU��&��;g&:�	�<�TeA.�W�h˫�����b����*��MFMͨzN�p�`���ߜB�v)Z�;8�����o.qV	Gz�>v`��1�D�=/���bS���vaIN���X�~���Y:��9�P#@Pv�y��a��[`�C�=�ɫw.�C�qc&�a���Ð��}�L��7.�/g��A�5�	�n�XPw��k��/C��ͦ�{9�LE�o)����J�Brs�
f�P^K�6"�������Ǩc�"�WI���9,�<�x�/.׷���C<
�ł&I�oYK;���>Y�%[�a�e��s&�@MA+��
Q8�f�I�����A�߬n��	+�ꎜ���<��x:� �u���;�C~�=���x r���Z���>r�	⺙[T�x�q�Q�z8�;�Nu7&���]���59�̪�OL/�;�NN�x���ΰ~�ɾ���c�<��8���:��S����Te8}�|}�s�Z
��Z��u����RCk�aJ�('��wSXKYx�r��(��χ�%�mƳ`.q$�vr��c�	�XO|�����q+U.��ao8��� ��;��F�8D��%��%##��5n=��:��w�Q�OB�Ef�xsn�W�%8ͺ

.��{Ǡga1g�w��KD�N��h*�"�iay�7&HCOC��!Ю"D[����bi{�N�ƌ6�Q�'�����u���S�S��|��b��j
�w�R����0,��x���q� ���:�b�����.�%$����)ih9w�n��R�O<`4Ŵ-r�����µZ�F�s��pE��j���$p��'t-�hR��qr�ˣ�:Z���ό^��"MO��.�Ats�@�N�yˆ�8�1�'��M�Tjs��=G[0�V���ּ��5p@�䮟s� �x���@.��f�(�lx~}�͒��k�d^��u��X
���<�S����$m`VT]�y̨ NH�t:LwkZ�tx��0KN�/�	9v�:ha��򐒂+���9Qʼ�����<���Z�l'f-5��uόKܭ���<s��)�y����^?�TAv��̖�����I�`<�.����:�XX��%���WA�9��Θ �zo���`�O�[	�lA��4�$W7��E�==`F��K��C|B���v:��<�����c�n!))���E����$cN��ϙ�FΟ���Ǔ:�C`��}ó��K2��kZ�K$^����H�8����tǛ��r�Rz�Fsbx?�x�O/\x���^ ��,wl��Z�s�|�q8S�^���ӱRO��e
�C�u���3���Ο�6��3\�Q��)�m�/_�q����mi<f�u�#�"�A�~�‹�<�$:��N���M[�n�!��HQ��^p�%y��#�H`�Dl\Z2���=8��1���1��*=>��8��r��t����bֲ�G����3c+�h��z�!͡�g>���	���R�af�-�F�E�kȽ�8��G�ju��H6����컯�::�&3��Q�#�b�sq�L�m͘�N�5��Z��7���-lEJ�m�kX%�(H5�y���$Ky}��5�J����)5�UwY�f���Q��8ARlA8�?��K��~q���8��H��)ƞ	�9CU�.��FskΜ �/�^�j*O�2�ڦ�eh�BW������G+��,(��Md�ч��<��1&
\a���%+�<��HKy�>0�8֋���^W��""�Zn�N��iqh	� :ߟX �t4����z7Ц2�IK)tI��Q �����W��x�1b�[�}js�"t�}��Y�E~	��D�6�]���ƾu��[���~��<�!��#E)����d�t��8��.�I�� *��Ӎkyv:���۽bk�$�<����]C49 �$:|9���.�ּ�Ɖ�7 =��P�$2�!��UdEz=���(,k�1o8P<��O�ш���b	6�{�������<.�("q�
��H�Q��G�X����/��~�W��8č�y�c�{;�O;I�t/.K���k�_�Z�H�:� nZG��#�xI��	���3&�+j����'�?�^t+��*�Y��q�)a�XCO#(}s�z'oWa�qk6N/3%{.p�~�8���
3���F��ǜՈ�-���T�3fR�T���'���ޯY<a���f��N>sSߌ��r6�Nt9c�pkA��z~3K�a����Y�Ϝ�/���/�X�.�F�(��_B;p�}j�I�
/w?wx�I�%�&��%!!֠M�~r�!����/
���ƴ�Q��xp.	�ar������²�d�
1Xh|j�� �)�
z��!�UTP�꼝`U�B���"C+��)�:_9�pO:>0���I���n��[�����R�� Mܹ��!D�k�H�	��np��'_^�q�F4E\>��� ��N{�3N*COG�dSjB����>5��
�u���V�R�����nC۰�l�Z��_�%�xqa$�S�V��)
aO*�& ����U�;�XƁ�ܹ�9��|8�<��uo��
O-�&!��f�ď�0�M��Ź��rM��9x�ݜ��?�#X
�ؚ!�6�=�
$�$�)CDv^�=;Pb1� #���o/$$:��0A��B9M���E�J��SH_r����ǟ9 �u�@�on:�24)7�Z�!�MFpp�?8SF&�����%��{�.�
,kfn�y:]u|op2�%���roO(�+L���g�C�3[�рH�#���<��(hw8���a�Zo�ۍ���=y�wV��G��Q�BߧH�;.���r���ᴪ�6��^
���h���$6��q�b��|y�$���H�Ò���Q�k��5�A/~>�l�k�q�4(��9�1�$�D�tJ��0����k&ʀl�t\�(�S��
1���r�Sz�f΍��etr��$5�.��i��@��^)���m<r	�(�����ɻ[����!k�����
Mo�f�����
�ߜ{ŏ;��R�F���<7��m��'T��O7�
jۄ��,�����w���������������}k
�\B�ke��]m���8y�w�ߜ���>3���y�-6�r��)�e�yjq��fsB�����S\��UH�E�L� -�H�-
��
3F�O�{��=sP�u>p`��tm>SX"KR��)�s��*��B�8�>��<]��Y���6�GQ�&�&�PN��0����o��2�"'+z8TES�q�k{G�(ʋ�9��(�W�>���uT']�v�(k���2s������K��Y��jc�w3L@Kd�u�I�CC>T\�S��=l'��Q'��9�ƅ)KWN��eϽ	-�-��p��qB��%�9����Oi�A��s��u��
��Z
��€ݥ�ս:�q�u/Û�$���v�e�͟L���I��=x��-'���/�b�$��u������ 
�LL\��X�9���x"Np1��J�8�(b��{�F��Y,�P���2T
4P�m�1-���O��HE�����΂���|��9t`���%|�l�Ov����:o�|�	�͇���յ"m��YZ�F����=��Z��0S���#{X�.��(�����8Qc��a]œ��>�T{�Fl��D����4�Ɩvzǂ�TߗK�ڧ��<b�F�T�Y�+Bd�4B�<p��9�@~?�7$QE4>�Y��O\ߜ),B��9A4�ף��V�2W4�S�A���P��Bz,�<���٫��؆���lU�'
���Q �Y�Wa<9U��o�r'�r'���!~J�q���I��m�_Q4������)W�j����
���q���h�I��U�j7��Y ���uͧ��x�0�H׷|��<��\�\oόJN��•	��NG��s��6u�5k�s���˶�%y\Թ1��i��X�x�5�����3�w�+WB�u�-�,�+��+j��^w��Ri��ї��qP���-��M�8�)�"v� �0UO2�uÔ8tį�ck�]��3�`3nA�N��rT�)�.�I�lTT��#�G&˧ֹ��@�+8|u��cT��x�&jl�v���`#�Ʈ��U�yG���ȫ���@��9�;�)��wY�Шl�������y���x�"�yp,mp/�yx��"2(J]�,�^Ѫ�eǗ٭jHv�MJϐ?ӈ��	�j���Y��O���#��@^n�=9���Gp�X��/XQ
';�/���#b��a��{�4Q�q.�G:t��Wc�����n��?�F
#��1x�@80tu��g�?�A���8M�� õ��%�M1��A΍��MIȥ�%��Vƽ��A �>�4�H�8]^x2� ���|󕜎�"�\����DZ���b���x�?��l��?�♱Q=��U"=���$!S��vy�'A�[�7v�M��ł(ӻ�ַ�
A���-O\�9�����ׯp�@l��
�OXE�F���3z�\ Fx�{���w��>�]c������&#m�;2iaK�Lc��R�:��w2����$<�x��P�rk��7`�ʾS���<,��I�{D
x��V l�[����<$;�u�:f���
]n�<F�?�d��e{�/;X13����)���r��|��Ʈ�>���64�Оo}�ɹ׬

u��w��dO\�Z
���3�Y{���G�z�~��l����@�L�ּ�W��v�w'���7ߟ]bCh�&*���&/r�ǘ�x�5��L�7�^5���s���3A�����8���)y<c�g&>�Bk�@���.���i9+ف^�E+����b�Rh���q"UW����^�Mɖm���n��K���l�7�miZk�@��kM��![����<�SW�Y
4w���<Nr	d9)��͡��7t?x���]��^qQ�ڥP��~1B��Q|�Z�j?A�
���no+y�Y�O{�*V�=���3�$R�ȗO�H,9�Su��}o-	���y��F$���������Ⱥ�`
�gZ�xWf
!j���Yx�-i�͚�Z�yDs�;ɍ�Y�۵Q��w�Ў��~�>b�F=�Y��.��U$�npl
�`,��
"m�f��Äd#t�R��'qMS~�0�
�޽b��.�7���)˱��.�'dYn�2�p�����C(O+�VY�;yƴD߁|z���^G����w�:�)��ro�(�\�����	P�5�.��UN��V�T8a�!ѭ����t��ƍ<\�*����L	�l���G%��9��qM���ba����p�*�����Ym<����4�����WI����+�g3X��<���ƭB��	��17@i��~��@�y��NH�At��a.�,�d�,i�k��kN�$�P���7~Lh,ҕ]�4�sQ�Bm_��H-�Y�e����*Ř4.��pa�z4h�����$�� +�#��Gc�)����]�����wa��?���~��=`�K�I��h#r�굯Ξr�5�SD�.U���n��.
At;&J�Z6�� �^�S%,���p�����!#ίASv�;�s�vw�J�(�7��{r�/=�V�J�c������ʡ�8�/Y��?Y��>u���x9��������˭�����
c7���!��n0l"��ow�`��i�w�~d-8uw�0IEmuCVY����iIɀ%V�/<8�/S���IE*��y~0��.�����Ua��f�Ht�{"�q��º�b΃�@BT[`���>��`��'o�?��P�n���{n�tҨ�6��`�"Tѭۯ��:�!���$"��Y���ǦsW��(�u��qU;���{�8�gDd��4(����w�(��7�AR�:/nCNGKو�ӍY񔈰�O�םf�
(q��)r�i.w	Zc@J
�Mx�=�ׇ��I��Gqq�����e]csP�M�J��f:��Z��'=ݧ����%	�q��A�>8�ɋ�i�ĕ!��?9@\
�V�L��kЍ���0�pf������T��w;�IxNE��+6
���ܥi@�w���yF�憇Bi8�z�-��S��
�CagI)�I}3f)EAߣ!�IB	������BҢp�=b"<��Gz��:�����V��>���B����H���2�	��y�Z�@��_F�[T�gu��С�:��/�SB��2�wZ�x�k��~
漖�W9�8�qs��Y���@�yo�T�I�u��h��ϼ����@��sH�7��o�n�UY4{��@*�rh������<�"��$�S|�k
E͛�A7�;�h*��@]8N���!�]�	��S�x;n�بt90TF��ǜ
6�#���q�-z~����
��lU���p��{gہH]$r|��p�vRO<#���ͻw�x�ť�����M�t�p��'zUX��llI�N��Au����:�-a���1��|~���=������W|���P��X�˾p�+�O�&R6��l��p��QC:%��%
�5{$�y��	,M�q��I[�8���U�6'}��$��q�*�v!�<3Xj]���\3�@<���k��Q
��R�(�!��yN�M�3�ɬ�BM��;�`�I����{u���R;5"��d�a���1�h�C/~��BT����p��1�6ltw��x��N5�f�&�Wx�7�Ln�,�n�?��)��
H�"��a�&�ZM'��-l4�ٹ.��B��w���`k����π��ǜ{�'nG��|\���Ň�$B��ƻ�Vqt>��a�a�Q|b:��)ߋ������2�\��!����:h>�o�F�	�ƴ9�� ����z���n��ݕѮ�2u�H��u\1DwoOG�T0К~;�a��b/24�<�]�)V�M�G���Ϝ�7�w�x0wd�D��r��"�su��1
�����4�5�yE�bt"lJpU�'���׌�s�?��G
�~����#��- kLBv���upqz��<��zn:���!iZ']+�g��m��u�u��w���Jh�/	����\^���{����#�ۈ�(�;�L�8�m�^JL���}7m�&���	�!�SE5Dtd�{�h8t�:L��,��z9�*�ߌR�"2jN8Ŧ�jh�2SJ�:���oro�Dp �h���w�(u�G�܁@������
Fv�y@<ݸÅc���-&��ͺ��,�������ʟ<�L�;ԋ�ٓhX�ʹ�t�'��k� �/sg�ĞW>�ǡ��L��/+�f�Jy�g��99l=gS��F[^��-A(s󚹿���������s;��ǾBq�A���k���q�chq�*x֏�d7R��NfVt

�e��4���5Z+
���ǔ����{��*p��%N��l�R�i�'�i�4
,:��h56���y�/�&��^0zf����E���l<o�*@�ĕ�.ɖ6[a��ˠI`����R�n��n�G�����GV��(7K�t����o�	�_��*F��jx��5�c���Go$x3r���G�w�ɰ�ɷ�?{�(Z����eKo��ev�L�r��j#��<j�DP���c�#ڜ-���΀� �]���ǹ�#x�.����\�	�������_�.���+�lj��cI�H��z�8�Y�81_E�1�%Ka��dǯ������زG�F���‡TUW�~�f���w��C�SװǕ��Iy��
! 5"�;ő  5;�_.Z3�E
����A�(�>p
讻�Z�YTD�~���
-���Ƞ���+o�+�tjv��1H�XU�'Gk�4'�Ǎ��h�y<\�	�?�To{k���	`Txof%CVq�&��F����R���8��5��l3�l�S�~���K���9���"m.�l��}��H
;�>���dJ0�{w�Qi�<���XP��ͿÌ�PV���c�
�+�9���,j��q�a��>?��7��
��"�=��A@�
�YU���?M��՝��N�A�c�6:� ���"CGg�b��a������чf�k�������q�4z���*��4)������sP�<��Z���
�&���ۣ�/��,�6�;�y6�����܁��m$���[������QK�K�ow�e�5�b�\��������|̘�M}���y��7�f�i�N=�P��y�y�lP(��6�`ec��1I�G�u��B�D65�¦%h
Ͽ^T s�0!-�/��,)"4{>1	K�x�A��k#IS��8%!���b$�J�l;2+DUC~n����ލ��$(���}�(5��hI۰:Úd���󀁸(1M�\�C�A�z� 2&���OH�ù|�h@H<�1�"|�6G�hU�����%Gg0zN|��@G�kw��?�'H����)I�PI+��̓�>ז�xi��v�?mbY"|�Wn�.y����ד�a6������;�o ��;�v��~6•�&K�0B���x}c;���0[�b}�c,bF�j���;���k*ĊUd���Gu�m���$t~
z�ε�)��#Ws����k���x�M�$�rUZ87��$Fk��􌹨�|E�����࡮S����'���x�T5�H���O9#ЫO��r(e��_��g
����h���qH�ؾ�ư����]�>�2(��o~0�V�Szͤ#�������:����Q����:H���j�؍g.�5��q�����Y&��'�y�7��kQ���&��J�͞C��z��n��;qH4�>g��eX����K�ys|��*l|&PIAQu�\�{8��9�X��?jaQ��1� ��y�6ׇ.����8v�שr`��{�^���I�	��\**-73�Eֺ�l4�l=b���y}柤�Zr�́��K0xO&B@_T2�S��z��:C�k��y�q�ڥ��j���<�g^7���Ϳ>&|�!�%�gs��AԂ�nl�}�/k�c��oX�*��]ddHlی'2TD�[��<AT��bm�6�}i��]P����ްx%��``޹�+F�ǏӉukDtO8���
��_��T(�
����P�U"{��lf����d)��aV��@�N��ѽ����(	C/ϼu�m��XJH4�;�f�j)�q����aHL�g�r���.�x��S�ώ��4&�S�=xļ�@�qԛ��}�%r��#� �ƷϬP�4�/Ѽm�1ŮI��U�ֶq���F[�q�����lrF��g"S�����?���a<��`u��O���#\�:M����^�������8ޱy����
�`ˏ?�s]|s��z��8��w�5���Xi'Sn�
6;�f�99��R���{��9(A�:5���F�a��fSsG�+9|3�"���۹�j�������n�5�C��?l�
7I��q0t�U���'����N�� ]��t��q���'s��h�y���m�-q�b�<6����`��0y�>��3����4)��A	m��R��D��y>���&�\�H��0#���m)�7�nY(�fϏ�qV��܏�j&	��|u�j��d૨~pu������y�сP��
���c����&�8�
�(���y�R�6"y|�P$��ax��-�>;�5غ8��܍h��/l7`�||u���c��`�F��	�{0&�i�P�GZ�1�`�Z��l^�f����?��UQ�`b���4��oy�sC������w�S�Q�7:��Mu����������ƌ(8�\���6�=�&��y���*n�B��b� �@��˱֮�Hvm�6o�Qm���
1�
�5���4ι��1;������ː�q7E�K4�����$���HG���vq�Vu�њqsm�9�r"֗���"��|��iE�5�qxP����q���IQ#b
w�b�"?=����B����]�_Zo��7� �
���,����עኦ�/�6o7�m�,ڟos,5!U�D�0 v���8�2K�\(!�҆p�i����
Wc"����/6��o�"��Y;C<� M�	$�G�`4QN�b��W�#�n�r���Z����'2�0�Q�V���& ꧗;x���]2�Q����B.
C@��f�]�&
a�^gG��X�y��#����N*k}�ͩ��R<:��������u��Gk��B�r�ٜb
n��(hpy<�BU
"u9� ��ҽ�(�Z]���.��!���"5�x��J�A����P4�?�lh^�ާ''�6�s�(
�g7��t��jMi��IR����!Jc[����@8𸑜NA���3G����k6�8=��%�QiA8���z_�xP�'Ņ�/~r�h.��u�9��R�ٛ)PE����n\co�>^P�`'D�����W�s@]]��/Ү�1�KFAt��w���q'A[u��}x��p��pA�$|���������erͫu
�۾ӏ��j�q���$Si�l=���k��򓐽�/y���1�H�
&0�0p<oc;q�㹡!xF'��e!���e�͆���;����6w���L��s��s?O��#���Zr/��<`�o5��Y�����=�n"M
M���F�P<�s�#�P“D�)5j�EG�.&&��@ٮq����+�^pAJ�T/�~�i�H�d$T��4�g�
͹$<�B�Z:d�oΞp�	��`I�+9^�Ğ�P�=��B� ��bh�C_�!�8 ~�2�-�8��
yz��*i�Ƙ�;K�o�r
�j�A�sOj�[O)�c������ @�.���*����8��+�Hӏi% ӧ�˲�l��:8�]�8�^2P����
F��\
h�ۆnL�" n�dX������"����@M�p1��y��#.���D�j�����4�+_�����^i˭�S��{L�����9��.��@��N���2�j{��!��*�G>9��:�U���y�?�'r	��͓��Hև_��yĦu��\f�4*��F4.���2�P$O!�L�4&��q���fhRrʋ���K�&�</;ym� $�WǾ�B��ό�@��Ώ��=Q���Ȁ���,�#��S��9Q��Jq��D��(�T5��njp�����
����'�*:ӧ�9����}t�ʻUMyW���56D�u�4a�p�8�Ɲ���bM�F*R�GCg!�s��}RF7��lt����f��$�����n�����u�|h+J�u�;�}f�AG�'�(�:-��� C�.�6�S���"�b��4p�!��� EC�L��sʮ�T��7[ܝx���x?���`��G�U��%m@��~oY�x�pʤt��=㷫��c�C$��UGۛ��M`��FH߬;<������7y�����֧�ڜ�i���+A
)�_�K���t���sf��>r����8��Z'�[��\I���)�'�Po�<�B�_�_X]�P���R�qo*.��;�|��]�F��s'*T���n���@�&!ߏڢ�7ki���#�M�:K>�|fM"֗�?8�<��s��Έ��E8��<NSE��|f�`ֈ��w����	
�e.��g	�'	F�w�C���w.�if��:�V����T�{��4�yO�OXJ&��ۂ�򕮵���~��/�q�D�k��+��e�ʃ�ܝLTB5�\D���9�[t�1U��/�8ˠy9���.��xY� �D>]8���9��� p��Q�w��y�G��2�'��yt��д�LQ3�̴���d �N�f�Ԓ���H��X[�	�#s��=>����2g�Ë�h�|zƒo��;���6���=datȜzy��P����+k����1D�:�.4�@5�6f�+�c�w�x��X���M�A߇i�y/���w�ۭ��r�$�^pOg�f	YAa��h���	@�97���ޡx��Wa�}��囩D,Bl�	$��x"�؈<���RYZ�I�/� (�����)R���97KoG��LR��u=�Y���7���*:���z�X"L��SkMy��Q������<O-�(*􎃋��gE
)���\��'6�v�BP��cɇNQ�׼h�<���i:߉�06۬����y����)��
���g/q��ef����4��fs����k7CB��H��?9yt=s��|~��������f�]~���<�?/8���—�@���<��TQ�nz�B)-6
�91X�ڎ��&#8$F��\a�����x�4�V�1��:ތ�Nޞ0i�'�xӳ#u�dV���!�
�_�)JG&'D��W�.����(�
�|c!�Nǜ)��Sw���
eJ@7��r3�+��sdy'Z�9�,�t:g4��бYy��X(ھ��uH@5_����D�)7��q��$~�BmM����)�d#Q�9iP"�`J@J9�����ڄ�#b��pb��
��2�G܂s�1yT[�eA�f1j�vH�fP�Y>���
m�f���AU�'7�{���"�M�A��y�U�`���olc���)�Pk�R��ؖ�a)���0D�3�4�3yc�����@��`��뢒�"W�Et5g��Pr��i��3�Fq��v�ʂ�tu�•EpP=ύ��@۸���
غ���a�S_�� �	x��i-��i�~٪ښG�猳h@Vf�r�v������0A��pL4���ɯ���ڵ���mp���S��nj�V'f��d%h�\��T���rK��fo����K"D��u�E
����B����dc`E����=�a8R/Jv�Þp�f*�z.�0�#@T���@���
����Q;|C(i)=�'�aD��7�xڥ��G�{˱D�r���D����x�޲0��ź�5�>L6҃�æ���uJ)��z{;�A“��U��O�W �.~ִ�\W�
>_�6������`T$��i�x�7��Ydޜ�ü�vq��:�Y�c�v9sN\�x�w:�˿��^�l͌�&��
��hC�{�'A��p���f�Z\�՜�9~���r��MƖA`�]	��^�jP�4j���x��b�%$�O(���}L��!�P���P����ư����Z��>��, ��@�$O�`t)w���4�5�V�+��=|f���&��r��lM
�
��s7ɧ~i��I�!'G�F�,H�j�׌H���x�`�P��:ӄ�J�
�ՌŊ�Qk�����$��]�B$Q
i����ѥT�-R�I���&I�M��!R&8@=	�M�@�� �ǓZbR���3mX�
����)�0<��~rA�6��
�!m�yl�7����
vs�<��U��O��'���Z(�6��>�2M'Α.�~�֯�׎��r�[Yߌ�<b�eG�v�1iQ�]kٔٚ8לt�9�p�i��z�f.iU"j>pwoz�{�,���
/���6B��=]`Χ�5ƸÿyRv�M��� a�W�p�Q������ا���
����5C��CSW�N)�zǜ��@1g�x�cv�$M��.�RQ�=��H�۬���K�6�^R��S�#O'��!V���3���a���NR�l=��#���B%S��`���N��z�HVG�雊���s��G��r��" �u�֢�eT8	S����E@(����	+����+���K���x�e]��;�s�6v�	��elp����D���	�����.CA�y�>s�G|=�D���dD�r���?I��4޵����Mo����m~�:��@`E�6�Yj;���]eg�a����U��i�^5�Y�&7�C���C:.�8����X�_W*�AG7�9�/�C����A�������
���J̈�9���
��^X�B
#��N�������޴b��x�B*��
�'x`v��Cc��8#2��`H�/�Eԑ$�l��"ԬJP�R�`��W[w�^%xi7�9f�5ZӅ�8E<��[*�5�Q�*5g�H�^�����Z=B��N_�ayMSƱ�y���@���!�&��]:٨���V�v
��0>�Fm�Z�y���-D�"M�<rs���tw�π��X;<�eY��|��~ =�7���~C����M_�w��L����v��y���f]�1m�Y8J̯z8˭s�z��>pNG�b�<�nj8�W�j�D�»e�~>2T�` �8G��hm�15�bog��1M�#�х
Gg��f���Yƴ�Z�˖�NE��$;���6笨���<{��
��/�S ���K�^o^��D���8MlX��<�.��j��� �R_��a�ml�5ߜ@�/LQ��`��@l��>���I���1�G����.���",th�L�ʆ+��,Z6׷�ivCAZ�~�c���L8�Xm��8�&���"�f��tt�>1$ ���u�9�Ш{�s�k����<cz�	�Y������6��V/aH�ׇYLojk#[pRDZK�w����0%��G�nj��_Y��Yt�^�C�ל��+�������7u� �*_��G�0���o�������D��A�؜�"p݃F���〯���s\0,�r�q����{A��8�x7?ll�*�'[��B�跿%���ցY<��Pě������ۓ5 ,$^��d��U�5ɜ��I��<��׈U݇�fP�j*x7
T;xW	ʵZM������5U�wx�E�ʔz�~�AOST�m0}8�Jz�z���؅)O�w�N�R��'yH�f�`h�ߚx�
�!ns�s
v��^]�ל�C�Hs{߬c	o�^0�(���7�#�X�z�J%� ��N���J�!���u+T
�
m$�XE$@&�Y�e�H�e�ځ�&2jQ�	�|LTQ�'gC��ӈ���x_X�Dg+�q�G'�T���D�c�E��|�1�ח?q�~�*���f���K�H�`)T�Ⳝ������1�8���:�6r�����s�uôr��.ω�Gq8����/�g]�e�U���P��M��"7Jg��Tr���h.�?��!R�T=�ɠֆ�x�jS#���ӂ
��G�_<�>q���<��L�ۭ��m	��c��"�b2Bl�wSβ'**-���1Nv;'��Ŀq��
?%����8�I��`���/>���J��*��&ҷL^�ڳxΎiCKxp� ʊ2A"�:��
x��w�6����z�:4p��JX���w��7���<o:��"��u5׌5��IJ�<C����!4������_�T��sR���o�ѷ���?��?��R��׷�H��ٳ9�.��6��Q�bF��ېb��+��d� :�T�76�5�q�pjp��n�C�����µ@�|1��B-�$�=|���<���bH6a����©4}zā.y_z�Ux��
C�
�0+2���bqN.�^I�`آ��Ǭ %I��sնk�59�e|�P��M�u5���鳠٢Z�G*dz�xÔ\T�v!�@��%�
=#�H�۷[N?�õ�!�9^8
�I$�X�S��I0m�(S�ۯ��]?yf����.�5�,�Q��U�9�Y������g"}��Wi^�"�S2D�M���m�sB��D�k�O�k� ������pfW����;��ÿ�
a�v�m�v�f-7�{?%�A��g����]�A�|f�u���ܺ΄��\H�������+O�猜�:R/�a��-x��lM4��m��x}�b"�	��g��$E��s��M�Z������:�m�����+�%�)`�f�|H������Z��� Cz��ZHB6>nj9�C��噶�5Ϝ�*fˢz9�T�7t�
���Lբ�,�wO8�D��<̢�j'�!��3����́p��nӫ����}�h캣�����
�!(�-���b~�h��r.�8t��:t�/�4�`�����:p��u6�N9���>U�ę�
y����
��Φ^C�8Z���z�oT�rOs�<F"�)@=8�I��&�`H�y�u���q2��g������52��������?I������`@��:^��������6����-#*�G�pwp�‚����{W��$1�Y���K��?��EDk��V�QcH�\i���%�y��:ƒE��Q�ߝai/�w��b DZ���5�GG\3|��88u.m�=��x�,-���u8��n����Q�<��k�|OP�
x8�z�8~�g��=cԪ����-����o�;������Y�����Df�G�NS�tm5�}�	�Y��Q���N��l!�Mk�
N�U�8�c7�Њ�L^ϱ!��b� �	��Ъ]�M0�BC����k7�/�V�L�\��f/�gy�t�&%�vo�ry҃�����ۆ��A���F�T�țP�E��Ü+z48p(�ˣ��.s���!T�ϼ:�4"����i��
A��a3A��*��w��]��T.t��b��!�_����^���/eߝ��X�o)������xyO�p(��}9ݸQ]r���q;�+��f�9�����N�Ry�*(�2�����yj�aw֯��@�j�o�#����{���~������|aG�E�(�UQ���$�c�ώ�)���w�O
Q�yĭu��� ��qH��
-��c� D��-�M��p{J��P���x���`@{P��D!��4�����߼��ߌ�m��3����5x���?�ɎCPv�,�B'���FsO�"�o��_l��pv<摺.�‚r�N��J���۝\L(S��ۃ�j^�o���f[���!��xO�v�S�h�4
SZ��x�6�%M4���^�X4Nɴ����0F�M4|SX��Љ�ӕ�ys�b�G>)i�G�s�(�J��N/�(��� �0�W�c�7RK`��O�'*��gGyB
h#�8ؙ@��������<ߌ��H�9<�M-�>r�*��WAu\{��妻2�
�����'��/w�a�Rl�;:~��Z�򷜮�o@�eoc���G��|<�	��jH�ӓ�J�]���j]"Q��~����G���	�|���&)�M'�_�D�Zn���2	Z���
te:
���Ǵ�KĮ�_�l�����oi��>(*币#뽙~V���$�ev)����	���w������<.�����oL.y7�Ů����?S�d9�l�w�(���ӽ�<�DXN^1�}I����G���9'=�l����[�7�����/#|�-�8M��S����¿0�i�{*c�{��e���D��x¼:iR2a��7�Ϊ*�������;?��B�����������y�$ o�Ϳ���<�%-�U���F��oќU5��bD7�|������h��U�#�q`r	���%U��%GI��)j1[˜T�w`l�r�Ҧ�׏Y%�("4��o$3�.ʤ���ּ��sp��r'�s��ՙ��+��5��3��gϼ��:B��/�gCe�So��/A��u�ѝ qϜH�si�3��2�T*�y�|��}�����Bk�
'^�Q�j�������Q	4s�È0Q��H`���,�׌aq[uv����U[Psyߞ��VE4/M�4��P�9��ۙ���$!E����Y��4�Z��pHz��#P*7H��yt ��Ϊ�Jwi���WǓ�( �9ê�����$
�7pVbnp���ճd���[�ʕ��oe��ԃn����HzM{b��ur�bR�k�tv�*���̚P���L�bs�"j�5�����c�����ϕ�j�~	0���;4��,�TY6���L���K����*]��Z�jz�_Ro�=9�0<.~4��ڽ���,H�nn
P>�x�W�ϋ9�|��n���`07�sy'�`;��;����ֻ��lؾ���S�Jq>2��Y�҆�O�v��'��lw�c1�!M���r��mkH���%��s�u�M��>�}�t:Lu;�������������/�HGu��������Cf���'1�8��Pl�k���t,��Ƴ�0��O&i*�Ǐ��@jl4O�,�-�N\V	���y.��"�_x*үu��g���i�"�MȺ<8��2���C�c�{^@`�������&� "���t8��=s�0����N��8�No�p;I�������Vk7H	�w0�@+|Ǘ
��4q�CP�-q���gӃ��qL��y��:(��e���_���j"B����2p�
x�e���"���O8L!V8�ּ�1sj���z�����,����z�u�yU�͡`�`�g�Y�ZMA�z�^Qj/)�ӊ��T������ʜb�d}d��6����_�\<��T�i�z�`v��8����?��9"���o/�(4x�#y���V��A�|f�#R(�Lz؄Go��f����x|��9H��>
k+�[VxѬ�G"����ٗtmǚ܏���&�T�	�(t��_�6V���mq�#Hk����e���tb�6�øZ[�Px�sN�����o�8�v�7�k��>r�ۄHLj:�cr{̅�xȔ��r�	8|cˠ����ګ�1���G���	�#&}bd�w�w��5�<�g2T�r�Z]��p� ��u�پ<χ5i�f�y�'��:���a�w�����5�7��}�4I�r�\�g���.��Ǽt�|���J�|���y�yi��x0����ҩD���D��A��Ӑ!���0��uī����~��%�ֲrs8[���m.���0�<�O��%�b�Nr$�+�V�.A�K�凬8R�չP�7N��%blSw66�_�;+G��%�D�DhӣW`���^�rP��;��âTz�l��z�����t܎��e,���|d�4����8�y��Φ�O�ynw_Ӣ|����'�����࡜<��5�,K�	%�-	��啽b\{?���8��DGN3h$�謒�N��&�6��Z`�q�h�<�T�ߟ8ųH<�'E��]�')N��q��lĠ�ڞ�9ʢ�(�8r��
�	����)D�4 M��r�f�$8J��P�A
೎��G�~0(Cj��7"��X�)����k5B*�c��0�Ͼ�SNCPp��s��hތA�!�Kx�N3ì\��|f��y6rՐ�9.0�\R�����R���P��@n8��@m��z5���f�0��FS�X�J{
��YyH,�8���v6zu���������#�i��ֱZ�e,�ث�I�0��669V1��n�OLU'������]�A�
�23ŭ�3�Ϲ��y9_�@K�z��0�t�}exuj�,"ͫ�I����x����T%����N�笈,�ǝ���e��g�(:��|ܤ�W��i������:�xJ_mm_��x���\��ӎ��׍���]5�:�;��/t�ã�����}f�9��Nlh^\~Y�)d�y�:.�͸��.���k	�^���a�|x����1��'����1a�=�d�͚C����
#�3nj��>?��
�	�y]��i�NU[�*�&���c$GGO���Ӎ̧�]���=��,h15\k��*�(�y|b-�4ޯ'�Y��߬�7޲�>�wߛ���/��_ɚ�����ן���l���-tyz�4h Z����(PP�S�3r�*aح�7��sv�lS{}���1ʻ�3���N�0–�S�6������v��ż�_j!��Ӽ�)�`��r��*�k�5"����p"R�osˈ�h�y�@�
�M�s�����3�yv���0ht��8`�W[�rh�����n�:H��n(� D^v�bn�F���e%#�Sf��n��e��
\i-%*�jO�5X�Cc�kX�
�f�#�p�D��:q@����un�~|�%�
���3,)��?M����C����0�v�P�^������oa1���澳����´A�W��p^����^HZ����W�hu^%]�u��W����󩑵��Y���
c��ŝ97�:U�*�4�Yo0�bt�8(�����bM���N�~3ig�9w�Pw��Ն��ͽG���7�GFI]�>Om}��3�g�y��S�����FnY��(�:�k\��X��:QB���ʫ�����;M“��C'�7#�p�B�󓼭�dwN놨��������3����OB]�7���ns�ۃ�63����h�7?�S&�7���|܇M��3�����u~l�?�β�6�a�h����7�X	�g"��7�F^ys�m�����������.����]����d�o���Ϯ�i��"�&������
XPt���I	M�a��<Jr�8�9*�J
��f�Z!��5��'���䦽������H�*�0o3!5�+{X��ɿ��j��5�ӎ:�t1o!�t`.�D8q%
Н�&��%�j��1��m���"r���;�*(N������f�����Z�3^АQ���w
N�>5��&��Mm�:!9)�� [�|s�8�4-��'��%r����,mt����"|��9��dׇm/ƲJU��T}㭤_ɋjG����ψFG!n������r�;�Q�v�j�[?�G�JT{˙Nȸ��{��EX+A}�).5ھMO���?*�T�8s�B�
�}��[z�[z�w�������<]á�Hn�߳ЂRx]�P'��;<�h4C�q���6|z�\�)��&�
�eUs2�6m;׬��u��/O�^�q������w�bH'���{+��zʅ5���(Mm��gY�G�;���XT޸~3r��/G��~M����uDGc<|b��䖰87��*��^ǧÄ�)ٖ�'3A�l7<�B�!�矌c�Za���J��ϗ(r_cw,�*��,�c���o���CoM�k��ˠA�q�T�8i�z:�|̴>al��Q�ٜjf��H��،�<���X �w�Fӫ�����������,�u�����|��5J:<d�s�h<|��N��3B�<��5��%Ex5ZH�<–:�mP��D����THJ��ּ��|ൂR���9�ȶ"�\��N��y�*��9���]�+��OY)����0W�*�yl9S(�q�<��A]�����P��O8G<]Z9���j����x}`��
_���_�
��jڧ(-�%�C/����C���B�]��4d7!�����W[rzr��6������:޿d���@s�<�4�1Hko93�Av�B|���1�L��E�}y��n_\�>$�e�@�&���j�<eo��O��d�eL��:�n-�"3�ޓU��2[��d�<�D������8;�qF�#�i�s���(7Ud]M���o.�a��
E�A��"o��߷-a��<捧�u�0��.�9�6.	��B!B�U�e猍D^I����׬4SB�2�
���t�'�4�gx�}��]=�p��qC$����"y��q�O#7�Xt�M]V�k߼n�/��p���Aپ���ULD�S���${�|`�S(�������39x�:���Т2��!I@m^\Ѿxz��@��3��d��.@H�暁4|��-<~��Pyݣ�ҏ��赭9��c
<�C��"��h�^�>��Y�&���9Y��Y�� �#�A�Sd��D.NSBs��٭,r��}q��C���=�ߟ��ޱK������
���D�k�J 8��Q�r$�����
���`�@(��k�w�h�	��\��\�4�z?X�V��y�
i`
zߌu�B�
�}/�A�֗��y�]�<�d=���x���]^���mB뗉�D.+�P��߼�H�B��,�t7��y�d����C�(Wj���*Wh�
F�X։D��9��p`Bh3�h؝���߽�)*͡�
*9F�`������wt�~��U*T�{C�uA�^���
/�p�Gva����8����6�2�ر�P���
�����
���\��蓀2�mt/��}�R
��x�p��U�.0I����4A`�=��n6X"�|R
T�.(6@`Ꮥ�d��+��3<����
5:��q߸��v�޾���������e���9㉐<P��:�W��G߼�c��mtB�/�hn��#�uߣ��Gzѳe�;�3D�.�jemw�k$r:��C�9v��h�5�yv��掌�y��5ޮ�We�s(y0�t�xb;����b
�>��(*�^0�eҮ�s���4"E5���A����l6 �
l���"�ǜێ�����r�l�|g:����5/����'ӡ�@/����ֵ���^��4"SF�8���G�;������.͉���m��-nR��s���T�8�\<q������&m㗮\f#.������)�v����“�]�8J/P�u2�}���Ȃ*�����y�*X�p8��e�g�0��r?�IAؤ��3@\ve}$��yA��UZUI��ލ�k`��#�'8�bu��v@�s6���@󌀄�u?���r��/����|�'ˬ�NZGR<^y�>Ȝ���BX4|۔5���N��5ì�ȅ��&�o!V�5\��!8[`�����xk��	��-g1�å��ؖu�5T$9���
U8MN����j�<��a.uǤ��C]t8�;#�)Aтn�ӷ8$Խ�v�^h�D���<&`O��t��W�����)
_����q?HOm�����	
0�`��#F����.vp�*���`88�2�y��4\ڇ}p��bs�2*v����O��1%)������z�ys]��=Y��wx>&]���&RkC�r���s��E�9�&^���)B*{��k
�"��yȮ�|�̔�Z�7x�!�6��sB4�����j����(�w����,�?9�{T��a�N�w6�Qޮn�S�q�j�%;={�o+���.����z}n>|�u�˚V���C�0*
�F��<w�z����eS��u������q�c�&x�<`���PaT���Wr�(�lq�X:���f��b�n�sYn]\��"roZs��Ȧ�f���`�Q��7��wI�$$ޞ�+yʖ�)!����X4�ug��p�=�7��(�S���r�Q��y�dẘ���"i[��7 A?�a�
ׅn|�] �����i���
�
�Xx��R�|y�–��D���##���"4�9x=k4�QC5������Bx�8����2U���.t�t��]�
R�D
��G�H�G g��N�b5�d�2��
)!!��gc��f���Q���TH���ǿ�4�7��O4=�M"^x���>�T~}��C��/J�������K�۞p��Y5o�9�I�D�=�^y���s���)5��5��N�͐����I�1mW7�]��G�-�����8�Z���cT{��)���я/�|����(j���+K�Al:��N�}ll���n����G�pwr��_'�x�˖��tw����z~�;k�s}���|>1��G��u�����4X)�|<OF��wƼ��q�eGm��/�cF����C@�GI�y�Y"�U6��2ZtV���F��̡�����Z����o6	u�R���+��� 7�f�c��l��FA* |h�d��׬܆�^0c����؝9�H��q��O?YǑ���c�@*���GQh�0(�*v�_��a���s��<~�o��'�'��F��~��T�
���&U�
��q�e�I��X?��z�4�:�7�by{�A�����n��p����,FoIOZ�YwMl]'D���q�
R�& P$���M�������_���FQ�*y�g����\J�P�^܃7gk!��#F��n=����&%I0
Yy|8I]{.�X$�/7Z�� �[6m�yD��;��p��9Hrs��h@���c�}2���3W�1sk�{D�Rm3fV��F�y�8Q�z�+yVr�~�|�;z:.^	b�V��]�H�
�� .cN,@������/���I<m���p�;�p��w�]C~�y������rs�t��_9R�'��+��b�*h.�q�cn��$.s�,��\f�Y���zN�9}&+%�a�y�����kW��GZ�3��sw|��ʹA�<����Δ�i[�9������Qlum�E��g��5�,W��;G�K��<pu������9�}xS)#�ֻpa��wNsaȿNr�q�����X1--�(�Q}�<�Q���4����5�<����2�h[�I5�o��پއ�yh�;ʭ��/F
�(9�&(����缩��[���w�=Ly7�9oy9/N�x���ܟѕ�뙛���|���b���r�N�)\������b�n�9߾���ή_���o��A��?9P/
�/O�n/0���|88��� T�vO<K3��R�Y{�����S�N���qdy@MZϬy����<�ZR��~q�I4�S��d
��:��~�y5-�s��}fﺔ��(�7i�y;��������$�[����^����6o�|>��2m ��d_SH��� ����9H��N��d�pE_O�V������9�m� D����@��x�%�2�*v��"U�I�9i���I��EGۮ�zkv�s��u:lr=�!�u�&��-���V�<�a���.'�����kVa0��l}�Gm�k51��g����
}P�,u���Xܦ�Nx[�v'��3�:�q��%ͯ�&�|���k7���:�OX���ű�yz���m�|ez՚�x�0P��M���yzh<�М	��_8�μ�4���߅�q]�g;��n�乷����A��L�fO=�~x��j����֙�]x$&1u�<�Y6K���F�;֓�Rp�9tP
-�,)���A��ts=c�^_�%�%5�#D����UdX>$���ù�u��i�ܫ������)�+���
��s��RVG�6��x������+�gx�"���ߺ�sn^���Ýk�S7�u��H�v�������V���t��z׮�.9(T[�y�ȧ�p}E�����M�ɰ@.�N
�:�43��v�Jh�9J'b	����#��i��Vj
�䰍�ۊ�{�ҩw��bs�6�����B�A�����
�•i"�2���g��s���l���)�N���K�pK�æ���þ~0�%C!{�T1��Z��F��|�p�C`��"��Q�`|�s3v��)����2����y��W�t�OVؔwǖ�\0���C�#�=~�o"5�ްx.@��ފ�t��N,���p�G��9�n������4^�����5��(p����8�;���bpfIK��l�����w-Ć<���J�*_�GY��;����鰝��퉷ǜEފQ^]f꿜��8���k�����7�q�	���d���YE^)K��Vls�>s�#��dd�!�d��Ի3~�k{���ߜI.�%��&�� �{o�m7�e�9r�(R�y�I�vaR5�N��"��ᧈ�w��;�2���<�(���L�$N���En8�=p�g^�e!f��z�K��1
���~3f9��'�F��I�nu2
�;ٻ��q�d{�.��*����rf�k����~2����0�]�9�Hi�@��8܆'�A��.t����]�����]o_���\+�w��ZF"�����,Z�T�3_��qY��SK��8�*+b9%��d��v>0��_��mM�@��Fڜ���x���!�g�0�X�$�B��ɒ�F!��y�vKE���ʆ�)�z��#���������}��ӣ^�5��ѥ<����*��i�;�LR�q,h�<���u�sQ��s>3��
����z&T�Y�b
���`�i
|�e[
�[<|b*D9�pw��Ѝ�?�� Q��O���򐰝�p���KQ�<k��NJKF|���4�tb��84⮜�g޸H��S�������Cq��xŌvb��P�=v#��~���v�0���kNZX@�[��>c*0�	�15�o�f�<�т��<�uνb(k�a������[8
�&m+���
"s���l�E�:���6��;������d���d���>��
�W/Zίg��T8���l�2��x�/w"I���Jj:3sz?y��M�&����	���=�Q)�6��(i��Yzo�`�oQ�~w�M������J�i��5d�x�w��|ܷd'!�XQ���ʃ�����%?�WaH<���{K��!��m�����{���qgި6
�С��XK3_��Y�ǭbm���K��( �M���.�ȷXG���A81��[�=$�F��DTU|�NlAh�Y�$�(iA7<�w6:�#��Zu���<kl5U��7�Q9+~���H
�K��Dd
��m $�[��ʐ���v�F�OX�D�l/������-RZ��C�l�N�([�<ܙ���|r��	)�:\�„��]����"$Vߟ�7`E��<a��в�*$
�������v\f.�t�zq�B0�X�\�xgw�z�YT��jD��J�D����(�P�S4�
@Ԍw�� %��
���g��Ou��K� w_\c�2��4��ӼTg��.���㐫�6d9�D�K��P@R��`��s���r��沼秏���g���]
s�p�^p
5��`�o�S|q�����K�s$��b����x�yu��	����1����s�:i��5��H��2ݏ�Rro��WN����������9��8��XƝ�G��K缧cl�Ҁ�h�Q���d9</��5�c��K��2�Q^�u������}�H$8Jrs�ZN�<�x������}�fӝ9�Ǜ����j{�l��vb�EyV�~�(̶�=LhX0��+vFm�B�s�=x�>�I5��Wo?�@$�dG4��l����:��Q"q��u�ӥ��l���V�`��g�.@���N��X�!Gb�>1��@C���p
E4���'�7<RZF�W��э�]\�Q/�<�oP�8O�e;�f�P�ނ-���Ģ�(�)~����b�xʐ� �7G��`հ�V�D��Q��t蘌�L0!@B?��$ҡu⾰7'�jBm�<b�d
Uc��d[�������'G�!5PX^�z�!�I
�o�2v���{�8BMH�)m�	��g���*�@�ykI����패�t�>1O�<���ˣ���K��[
/h��6F���:���ʻ�[�ox�y�'��e�h]r�u��E��ԃۿ�c�w3��ʾ�<��pדɮqk{x�[���pWK��O/�Nx��@^F����v�wW��q^z2�S_9/�F8�U7��7���&�`��8O�f��tM.��\	��{aׇ�T�N�����@ ����Hn��Û�F��q�[��5���O)��\Շ+ޮDUt���l�p���ָ���R9$ޝ���q���a����{�p�*
_~\����[���7�X��,�GO�>�A鿣����@�]�=��b
��˭Z�����\:��Of@�Smp�Jp���٣�^�+FPWCR���J0�yn����t?�)Hv�0��
J�\r`3��I��^��I�8ӏ�,dKʢ���ЀO��
T5B�y�gJ����N��ip.�Up��^A��qp��pD�x�j�	����׈^�T���!�t��Lc�L�r���$㠦��(��p4�g�V�;Oα;ط�֎��ĕ!�Ժ���6���
�Hl7���Q�i�A?\|s�*i[Pi�i�����涭�x�!�Pa6ǃ˖��m:�5�'O���m�����D�:�z��r����y�#zt�J~�;����'?���s�W�/#}�Zќ�ѳ߿��	�*��!��]�ͭ��7�����3M��w�Jq+�s�&�vz� �6&]'�|�O�Î_�� ���;;�e!�f�iI��'.L��\���E]x���Z^܇|v�26��.S�9�E�}b��.���7u��h��EWZ9Lc㉄x�m�=z�`�u����.�x��Z��m�d�Ӯ�u�}u1{����Tl�pl+�O΅��!I�W��dο]ߪ]�G��h��5�Ye
YC�w�g ���>z���Jj�~�lX��,��ٰ�
�gxh�4���}��^ox�bЕ� ~r��Ґ�;h@���t�Y��]�� �Q��xȒ&���\E-�e|?�r��	�ۓb&�J_=�Z4��<|�(A՛�
S���ɠZ�;��#�ލ�uƵ��<�>�;����9��f���	{��-T!�<r8��4BNx��_@f�ǹ��f���ΰ
MxN��JY"(0;�T�@�8Q�P���M�q.�8�fh
���À��qqX'ę��8���^�Oķ�!�:����<���.��8G+y�*�]���&�MI��Y�p^>q٨2�2;�~3f�ˬ����qƞ���xp��}뻅�8��j���>&_{���-;�7���g�����l��9�9<���w��`�$�:�=�ְ틉��pp\�nj��jC
}u�]Ng�����uឳ��,�3�͏��b���R����F����ɸ��Ť;
?���,֞���7P<o-&�uٛ�׾�$��=o�[�D�2'����s��]/�u��%6�s��ܳ�����+���s�?`�^�r��U��X�t��8q����!�W���5� �(�����h⷟��
�kȰ[Ө��Y�3�x�R�p���S��5��Jд��n��N%�G}�qӰ;W	��YA/���6`y��X8����˜�v�I}�l�$P�G�޳�E��!A�05t��5�w//퐏��7��L�aI&��\�jyT/��$R+@�fZ��|8&V�f��Ǘ*cZԴ�u|�x�j��
��-r\,+�����M[��,�e�UU��燜e����O[�<)��u��Б�F���ژ k��X0(��.���c�i�%1��'g|rz"q���=�9�'؝j����&��-�Y�</8����u�8�o���u��D ��� ]O���K+��Nwf�1'lAԜ�5c�ɬQ@��ë�����z�����6�6�|z��k۬F&�p9sn3m��|c`��*(���a�����SN���z�wۃD����g���.�Ps���c��b���҇]��}�󇼺�X�@K�b���Z��|�@ٮg8ؼ�ָ�%�{)����M�q����#���{G(��x�MA�SZ�t�~r�E�����>~����5����o�>u���\��K��0��9_���������,�-��{���)�]>��i�a�� ��a������8�S�	�˝�sk^1�r�-N��E�����74�������my�+5���
]�˛��"<��0O.�x�ME�'g���m�� p~\U�@؀v��mӄ����&�w�D *>[��� y��}1���z񁼂@��yϢ3�j;�U4��8�)
�w<�1�*/o���Q=���j$7>z��8��6��rI�յ�Mx�h��7r���yx�� -݆۟ۜ>�lx��r����ܶ���/�t��w��Ѯ�G�NZ'�����񎢡�Do�V����HN�cAjC_�It�G[����Ti����Zq���"�߶���
��9#��*�� g�:�8Å���:�ɟ:ŁկC�Q$�:��i�!��A���g��������oa�
ݼ.�M�9ɹ�/~9�o�b뿬�3���]x8S��k�׌���	�O�[��o��Vrt��=�\�p`���֩�s�?YNGn���'�3�"�k�P��U�ͥ���Z��{%}f�����ٮ���zh�3|q�w�8���42�bQ�s�\sY������Q �iʱ�Ѻ�Q���@�Wz�Eg��a�(���c;6���`�]s�ƫU����)4>���R�*N�o0ԋk��}a'��W���i
Ү�q��J�0��(�v�{®�r�/<t�m�A97�
L֞,��l���9�!/U���e�@ގ̧��w�=a����8E����v�����}d�A4���`t���7$�d���sz��r� �D���i�}coٴNX3�BA<���q&@@�����L-�3���I�7��4%_���Px���p`D��?�
��s��
��{F���CKK��;�]˴I8���gÄ�q88p������V����@i��O��k����G�W��D
�4���Z7�qNu�4��D�����L���J�<�ew�Ӭ#F���vq�"��
���/D��aI��n8��ڛu_y�
Ɍ���mg/f���<�僟��t�|͉��{��O&|�-�;宇�&{�2�kW|I���'�ﳬ-���k�����r뗶��ې�S��Q�>�z�X��x����㬺��p[F�x�o|S�/gY����+��:ޙ�5�k��.h^���k���x�6��H���b����B�)��P�f�q��ӏG�#T�'$���^j�|�E�Pe-p�ڕ�^Eؘ���J_/X����G�$4-�E7��Lz/ɭc���z�?X�
�y
j�3D�b��\!�:��o�J	����0b��F���OP��,u��q�����}z�E�e֐����M�Zpn�X*ԨGF��� ���V��1J��H@g�;͹H`�7w�
l�1KE�ѷrs���8�����"$��&��4V��j?�XitU�M��P�Kw>0<R��_sT-�J8��`�bjkE�B��z1�7���
�X�1"/��J���{[����8��ƦMP�Y���~�&�L
�fuU���z����s���7���$�wB!)�?U����N�:��K޶�<׆0�,\�x���gZ�]^_//\�|�x�N�K�R��~y�����:F!�Z���g�G��z�9��Ï����,��!T�S~���n���������5�íu�^��Κ���W��ܧ�O_yN�w��Λ��Og�F�7�X[:p�.�@$�����bڃ੒����~
��W��C'F�Ѭqjj���Iv�I|��ˠP`M�R���H���7)h��p�0�K�T�v 2&��6H����E���1�
`�l-1�Ǔ�!J͞��r�5�1�Њ^�36Ckk�gx�l��	�� �
�NId�
q�� 	�:]�L��SF7��Cu�?�^̈��=�:gv�ʉ��Đ�3|sɄF�
/M�'/8'B%��~�.��Lm��/όC�:y�ƟØ�RGJm��T�� oNHS:�[J&���p�G3i\�}�U~tv��ݑ&:#NN#Z?gZ�a��E!<��QŅԹ�ܘ�W��<���'F�Saj�I��Q8�k?B%��w��9ʟ<�?����6@�|e:9tx�p�q�,��58U����:���,���x(���y6�0a.�z͝�>���{��8�?l��˻��K�\�Ϝ�tϟ9�Ƽ�4�����.�s���e6Y��(��:|b��;�/O���>�G�Y��a�\_�� vB�t{�㬳���0*�D�!2C���&�տ�i�!�/����a^b��k��:������Q�i��*��1��$��mqGΙ#���+��P�#�7���R[^��a����C��`4ڜ��a:|e��.����o&�r��_$��(u���q��4B����u��,+%t�m8�����8K�o\\AŢ�o�U�Wz�|�=F�I����eR��v�����\f�߇3�X�x���M��M����KQ�����
���N@��\4�Z
<�s� ����y)K�7�.=��ZTl��Q��0`G�z��s>g٫������>,<��:�vל+��N�a��S��E���L&��B!ϑ�rs�|��Y��A�o������pk5�je���E��	�e''O���.5�;�sFLC���8_�����pT��ȊF�������C�5�]�����Nα+��e��[['
L���=�q�����N7^2�Z���?|t	.�p����@ɶ����eG��Ù�y�Y���q�:H:N��u��h���.J(�o�`S��8h����Iݻ� Co�ٺ��n�R�N��z�Yy��"�Ts�x�(@�I�L�����\K��}�[�����9t0A� �.�X��7�����|�bGE��a7��-�C�{ƌB��Ϭ��cU���g0
�:N��-i"�Bd�A%7���z��?��������{�:����^�+O���:1��o9G��
�H�{��?9/V���%0”($=�ox��}���㶑A {�%�XK��yj�7|`5�"�1o�b�P�AH�>rm.Z
{Cf	!�Z��X�)�G�G�3rU��X�W�9�;��pO����<��o/�������{��V(���7�<eF�}&��R$�w�.}|c���!b]/�4c��pW��/��8^}\��É��΋��y������4y���.�oU7��<�g5�,���6�.����y�������'���'��u��ֽ��u�
Iwp	��j���k75����J�=aF���̴�V�eԟ⿢݄�o��:�C���U@"l@h�DN�*��F'���M�k5�_.*�B>;p�h�Q��:�(Є{M�2��b_�qֈ�����M8���i�f�
�$>N�;)�=��l�,�$����T%^��x�.�[�\.�<��n ����r!kO��Ũ-H�vJN����`�G�7��c��[���0Jo�JvX�y�q�^c�_�!����;!�	���e��{���@�Ї0�p�M�Iό�r�w����AJz�޺�tj
��ns{
�o[�d^��
r��XZ��0q�ܑL�h��I�9|@B6/�gvo���G�00@�s�+n�&
��q���3D��� i�:qj�0ל�c���-<NO~��0���>u��~���כּ��MYx߬�L�v~�|�<[�7o�+���
6NoX���q�p�9��9W�fk?w)����噽������v�`�[����~\��4��/�s�o5���o�)����M g/�K�͘/�.p^��e�+��t�)��?F�?b�w~z�L�]?�`Ѷ�d�u������Bp������F����r5	�֬��H�-S�ҲӅN_8Q(wǜ��;u��,�Ғ�;�qv�D��[���;���XS�"n+R^�y�%�4�<����=^�!���}g(���a�!�f�V��dF�����%���u��!*�+Ļ�Ͷ(�0��q�"�y�dm彆���(x|��a �<���Б���0�Ǥ�1�O��7� yD]
�y�<<G��#���I�ݱ迶EVꪘ�N�����G�j�T1�
k��15@�
<e��-�K�A�.���	�q�.�u~!��ퟌ+�5M�7����tz��I�Lj�Nw�U�C�5n��L�ye��]q������5�DM#����o]y�?����5���5��O�w�*���8����*n_x�c
�����s�S���=��_�\Uߟ0�R�����:�络�ε���2��6��x�i�	�ή[�Bk��2��x��QQe�w]��F-8�C��7d���Bo��ى����� ����W\8Y��+po�T���]�j0fzG���M0lFw�2XZ������P���`@-t��v��y��D��ޯ|s��ހ������I�B-	{9�m[��&CXC�x�c%[C�����i���.��~���RW�Y����
�G!��LW!Oq��v*y��Ĉ
��[n+(�p|Nr�#��`�+�?�X_s��-���$�`�>���!��)���;>i�pS�P.۠�mNy14%M�ǚ���`�|L���B)��g	�ـ�L>�ߜAk���1�S�:�I��r��'������ݐGS��J 1��˗9{:N�s}�T� �e��e�&J�������G��y�e�w�Y��S�nkϷ(,DW�nS'��~3{/׳)��o�ϭ~�jq��~�*J�><a~3S��N>�?���{��8γ�O�C5�7Ȇ�����N����uط��)��۫4�Q���ϯ�i6Q݋u
�������&��c�o�~q�,
�現qS� Z^��AЗ�VS��ɽ���&%�u�g�6��&�^`"Ă֡��=@�
O�3��
�}z��r�&��-�dG�����8<&i���}x�kDZ�>1��hy�[#bA��&�B�|Y�(pO̘u!P�0�n�@@����K���l��"��4a�:��!F�ҳ�:�Z:Uz�s�Xɂ
���~�V5�|��u���2���cS^Wz����Y^q�����b;���@��?���2�f�j.�p�)$�w�|3��DӖC]TLK��߁NS���Yci��n�oNnn��?8!���|����M?.�zh���H(����<ؚ.��{�]Tγb��5��7��y?8k5��㏬�]g�\e�'Fd��d�n�?�X���n��V��#j;�q�y�Nբ͛<:��n\ju��X��ގW���Aky�����h-[�Mpw#���x�)0�����@a��#�Q��O���;�/�����&1��?��jX�A��UpH����FA��9�웈�P��_o�		�l��V�/2q��l���Y8%-?�9�l�V�����n�>��3�,��|f�+��D����kK��x�N��1(�l_7��-�8>2�Ä^o��
X
���#b6��0	P(����H��f�w�)ݮ����bp���8����J1�ʠ��t�ֱ+2���eg�-T٢f���	�);��|>�W�HED!M��7��ڭ&�<c>��g��ƺ�� �|�(Ȁ����?:v��X�O���+<0~B��K�?6�vN�u��}�9���Q�����|��3��ϋ��3Y�
���l�篬q�o/�W��7�/�y��XJ�����������p�Z�^|���l�
����9���UX�.�l���զ��aPD�fܞ���+i�����%T���?�]v��?�]����ϟ�a�
�n���\,eI���$�] �t���A{�߅`���n�Lj;�T�A��<�i8\#�n�5��ƴ?���u�-������픖�@�w��b
"��e"&�/y'!@��/P
!�5��yn0X���z4Ju�c��`���*�:��Bͦ<�K���#A�|tyɃ���K��LZy�&F�g�x� �nv�|�	��߼*i-���+�mٜ-k�󎤉P�I}��HӢ�����%�9<)���
"t$��J�t��%R�a��
i�)�i4��Yw�#��~�u#��7�$8�
�K���zӿw	��w�:Z�ɕ���M~�h#{(�����|X��wRs9μx��&S�����ϟ���r�:���s�[׌���n�J��Fk,�_�8���m�����ђ5����K
�����1�HBT�yz�5��J^;��.���
.��όi)0��X���[NI/������Yb���6+(�vo�u�ȋ��We*D0�;���p5o�aHm��7�)�4x`)
�1��.�m�����C����]n������i�j�"v�4�b���<��p��'Nx	8'�~�teM<���Z��h�q�`ތ���?���� ���m �ܖk�C�P�=`��A?/�@�V����E]����r�5�q��k���M6��!q�Ы4k�@��}b��5|��
��gA�l!_�*�A6��,	�v�9���<:�>4�i����'fs�QH�a��6���F ��s����M�t�)�>3���*��G��k�e�~x���N�yj/�5��K
�O��͜�9fq�e�f�E�cKZկ�_��<�4(�l�����g[g&M�E�7�o�<@�n�ؠ���:y�%W�Q|�����"Ex�q�{���5H���5-l!���)��jK��}�}�5�o^�)�W�)����+[��ʓ(�	N^+�406��!���f�T��ŀ���S�8fQv��ɾ����r������B�Ճ{<ᱲt����_���y���|��U([���q�t
�m2󺱦����K��OM��GſZ�2!�vkw��ۭ�\��s{,A��(ڹf�p#?�6u7�sn�@�}{q����4�x��B�0�|\>z��Ʌ_-��7���l&���L��}��^1��]��Z*�$9O}�R
cqRBh����q��z�V��Y�7��?����<����5�_����\���|{�D�~r�Ji�q�.�����w!���.�=[�{��>o�kM�7G�~��Q�ΰc@���,F�~١�wo���Ӧ��+SJ[HǍ̶DJkx�=�yg'6�y֬��<a���G�	�PQI(�t�5��&��ӳt9Xs�
���e��[�!7��������Dt��ͷ��6�0�-�OY�態u��7��i�o���õ��q���B[�b�A����̏_��;��|�^�2
�9gm�5��ヴ�ǀ��B(��B���
*�E$�y��Ph� H�_�RI�;�=��(�S�};>1s��?��^��%K!4�{\���4��‡��YK�y
a���Uq!y��f��
j��Z���B'�+�r�5����u��Vtl���>h;��Y]�찑>3Rta���k-����h뷀|��oz��Wל���[��?N��"?��;F��0:7e�^2�s���!B�d�(�ڨ���R�8�*D( F�
vӧ�p@��"�x�"z�
kÜ�u ��&)��Kߜ@�B+o�ĭ�I?	�@�]Y���pw:�� ����Z`tw�ל*��s��#�n�1�܄$+�2Р�-� )�1�����,�Rp;�u��Ge�N��%���
H���u�'�X�U��I*�'��
l�y���nǎ5�o
E�;o@�^q���oG{�*�������;�k����-t!z!�sE1@��L(�Dv�)�}b�A�w�@ْ@�	�F��㜓wS�_�
�u��;=��+�>�ć:\{�)�-�kݮA��rЃ��� �iA��
�<���E%���?�P�/�ѩ����ߟ�a�'�@�ο�[�O�_ࠔ�~_��Dhr��/"xk�cl+���I�Ƭ��n��� ��>\^ 
���4#e�A�M�Z!<�B��N�k���Ad��&�	�@ޛ��D����
i� ��G��Lc�Gh�BJy���
���'r�^g��@�qTta��R O)�ċ��G�&�WpR��J]�M�pw��am�h����;EZ���)�p���l��<b�@�<��r��<ό�F�B�5 N��e�T���-B�C;�w��s��ް���4/�9�D6��
�ui_��7��-X��^�I5�"D�:=��4c_��8]��t�,(9��q'��3�`����:�nֈ17��[�S����:h�
$,M"P?��L�-���_���7���&�|~�f��CFUP��V�^���P��ɍ<RXC��k���x<PgX�-$��o��u;�i�6|�"�;^��=\"PM~2
{MϮ� �4�cO?;�=vQ�_xn�%)d�J]��+�,�yíl�
zƖnjܑ[�~r�o^z�)$<o�5��o\�Ǭjtx:��d���xn+�c�c1ʼny������N���E��Z��4�cdž����>�QCb��p�v
}WV�l�D7��Ɏa���
�"�­q�L�)PҶ����U5]�
��Y4��\\���'�Ώw����8Iu#�3k�X���K�&��}��L#�1�F4t�qOR* �:=�<L��_��t��{.W�ӟƁ87���T���#
�c���W�w���$���4��pF�ahL*�r��80������02 "P03@B`q1a�#ARQ!���?����ḇy�2�����e�o��RB�["\�L♵�z?���\�uw.u�]�B�6T�S�S	��/�]�N�V;�����/��2���JeQy��}���
�{�i�!gy��40�t^�qs�51�cr��!O�YS��ۋ�y��s5;A��>���E��\��FT

}�g��_)1r�5}P4)X�}8S�
xC2�t_)o�\�����i���C�z'M�_il\;�ê�i�����౒U�����[�;*��T`�4�C܇X(��2�YS�L\*r0t`!O���SؾT#�&�V-��xv]�T_h�j��sw���V1�cj�;b�Sc�$�X�(�
&��͎}����u�C��͕���X��Ӫt�����z���T>#��T�Ady�:'�P�E��~�6�L����=b�6����t�V>�(��v��/}ȸv�2`IC�����u�"م��Z�,�f���f�Y�����V:�V:NU�����!`�(��W����sS����
e
x�u�iC���tX?%��L��t�8,=�N^�"�es�6N�c?�(��=�:��1B-�����e�Q�iE�>��!���t�
:t�\�}NA]�-�Ҏ����1�%�ޯ�}NA]�-�J0 ��<�d�^�߶�:M08�}�S��$T�F�A�I�Ž���9��7÷U�!bܵ��-ks5��R߄Q�����v���N�aԺ�X~�� �Ɂ�s��0X#�:
�Q͕��l|-ȝ�M(�ä�w�+.��S���8kŻ���V6��noa�z�}.����c�
0$��,�hܮV_�ܼ��z'A1iC�A2��A�I08�}�z8#$E����@��N��ū;Vv�y���2
և|@�2�K�AC�=�r��n>~����|@�
`�(!#����9l���
`Ӥ��`�^����V
X�ʂ���Y�g�"̮ʿ�:�t��w?�
$�N����c�oA�m)�"r��b���#��N�
��T��+`Ӥ�(��|`x��P�W�ۡ�+6es��a��4`��������eR�u��X��#�z��質]N�cԽ(}`O���J
��t2�u1���H��tq�1LW�ˡ�K�ӎX�����ʵx!�z�1ʂ��]�
a�$��FT(��zYLW�ˡ�K�M�8fj,ʂ�� �8J
�����*Ɏ̌?@X;.�r�?��<i�t�VзԱڭ�6��X�T�]��:q�8fL
Xfݠ��J�w*��܂�v]�Y��S��Q;Q.kv�zsjZ:��P[
^�8m�|���S�A^����D:Jb�jȭ,��@5���A�TA�c���z�W���s��&R!��ndǶ���ۚL�rc27,˘�5�v{��9ܨ�Lu��vo���
a�{~V��ʥf2�,:�7�evo���s�QTx庬�+�o��Q�ץ]�kDՊu0&�6���W* ��z'Q�|�a�K�+�!]�92
0�7�*�R<����7fj
��ŕR��=����]=I��`��Vֹ����+�_T��ë��~�|�|ŝmA����|Z�5�V
�r�c��'���[�ȳ#��c�V>#Ɲ�P����ŕH�o��jc3;+������	�پ��̎�3f�1���7O�
����-�[Z���Υh���3f̯w�1�s}�P(ҋ�W�'�=J͍kr�2�X7(k�y�͚P��}��gR�=�o�K`ҁ���c�z�s�W�[U Ƶ�`�dcԛ��L9�W�LYTߙ~�C逽\��q�c�74_}1eS~e�[�
�N>��E��5�a�Z�O��yn�D��4�L�/�6.���ml�S��ɰi�ßA��o,
�|��u�7�z��
�i�0j�чT��=��/�6.���.��4�z��}\�OX���ͨ
��S~"����y�S�^&+ K���eA�{s6̬�
�a�~o�Y�Ձ��s]���-ȝ!�>@�L?�s�b���˕Y�����v���L?���[3;v��f�/=�C*�� �&:,���x"��T�f�+�m�ʠ�����ODr��a��)���m�ʐ(��l<͝1iO3�*�Ԋ����~�����=,u���g�/=�C*���<]�:�G�Vg6h���ʶ��9g�������,^�qg[Q��j�r�O�<S�{�ŝmL��� �p�yW�5�sS/.m_��k�����-s��۾bζ�7A��<�>� t�����D�5���	�s����?�������o�F����A�Tv�s��Egm��]�
�E��Y�չ��� �c�eK���kNf��ݠF
o�Ƚ���ŝm�t���U�a�ٝ�b�@�AY�ރV��2�,��
)�/�7�g[Q�i#K��U�;�?�Pߘ��
v��W��G(ʑ�j��*�C~bʥ�E;Kff�rɕ�y�W
|w&���eKԉD�dtc�
������*͙[�[UI��4�5x���92 "0@3BPq!1R�#AQab`4��$r����?����t�t��V�P9\����sG��-�vZƼ;�o쩖0��w"�l��t|��D'*�0za"�ӵ	���68!���bp��3M+�W���o�6�хj0S`�܆\��ͻ�����6N�5U��DR,�S�p�c���A��<ߥa���%US�9�s|=^��z��XB�D:T�2܎�>��b5ߵc��. dk0�o�a�%���f�@�ؐ<��+��&�I�B�$�xvF��Ap4sCN�؎���E8)��VJ�A�T��W@�ǚ)��[�~w�9���,��4�(��s����k�4��z����VD��$ ��2��j���7�9���!���.������tUW�b�Bj�U

��U˼G{G5��2�#*(\ �\��e�z���jk��2`�`�BX���EUSó7�9h��{G6��[��p�S��!�z�(EQ��
�P��
�*6T���*�O�nw�s`ڊ0˂�w����SY���ڂ
�j��QV��er���.�溉��69��Z�UʉL�AF�Bn����)��
�i�m4��UV���7���QQQQQ��W,K�G,�G6��C-Ee�j}��@<�OP��v���+�"��ʙ`�S�S��N�G7;["�0.S�Օ�se�w�npqmLf�ֶ����f&\/�@�tftV++  � ��EDdL������E��w�s�*��Q���ru�Xa�sZ��~��R��d}@e��&it@AT��T剕�vX�v;�9������S��\��ok^�Q��EM�
0 EtUCF٫b�M��͚9g��x�s~�@�L�T܎�N�C�G��*��$�G�L�X!���tr���7?�ߺ�!Q�v��"k�״F�`��UU�4R)TN;���o���n8 �
�J�Q�#����EWA:+EXH�����l��|��o��s"��-E�H�H��&j�@��tBB�	��QQEp���r��F7��?��{s|Cj?�f�TJ��(�駠:�C����EO��**eB�" ***-����.��*?�_�nTz����[���nUrʩ�&�\#'
�÷ߚ������UEW*�6G/y_[j��Ȁ�
������#�X.#Wܸ
j+�g�qmo��9��`\�q� t7�]t�wD I�t�c3 @��Q�E�
�
��]�9�c��]��0>h�E�B��T(����"�4�UDJ+��[썫�?��"��NC.d��=�=<�h�D���( �
X����(�L1�j�<w@AUe�`�K���Т*��#4TrP�5�(�r�#~�	�'.3�|2� ��\�:�4�<�/�RD�A�T ��PUY���	�̜����2б-r�w����"��]�=��T:���� �M �5R
b(!j}�\O��xA
��t;��ڇ����M=B�SIF) ��5��~��lbZ���?��"�2�w�����`7��k|��{*� ��i�@����U ELۛ*(\�t8�J�eԹ�\��<G{��re�n��a܂w���yu��UE�8�(��BU�ETPB@��o�bZW�g�Vr�!e��C����H(����
� dfA5A"��Y�9a��n_�j��3r�a� ��,S�D�]t�Q]r3Y��
����1DCV�=�bZ����2�Tb��+�ލ�p��sfw�q|3�Wd��2ꧧ:B��B7@v��*���#Ս�?�r�7C��'�ḗp����q_�.�>�]5��Q�L(!��7*A@:�V�=�X�%��;��#,��M�s���I�����v���E�

+�g��[V%�ta�5D��v�#���;�_��Z��vF�[d �WM`"br�F{�-��;�@FY����à�+Qq>nª�Nn�
*5QQ�W���
�}�UWi�r��r+�?��xű:�G�`�"��X#�&�
f�U �;����"h�
@����q��ű>�IE1�Uڈ۬���n���P����ѹd��"�o�u��f��/ς�J�܂e�I)����M���OrlR�PAQV*�]����W?7
��8lq�౭@fvT�e�.t0�sA����ݨ�:Tb��M`=W3r�ܸA�1�Lۛ�0˴�2HLLˤ�Q�����H1�BDQCM�.E�S��68�V&&v��He�X���Y����WЇQ�.Y]۝4�j��餄 A���D
0P@eEp^;c����!�"7 �O2!ʟ켨��W.�ʰ{J�EWA�d��C��'�x�8��ːF@*��^dF��E��*j���^��:+Vj��VQ
��p�q�t2�UXh@m_J1n�|�T�t
x���F�i��uuӽ")4�6�*���  �<.]��tWj7C.��3f_����U̩�NZ�D��
N^�֣�y{#���U�A#j�U�l�˗�o�8��хr4�V	�����'�}��u�*w)I��U����w����F�ú@�|�H9���jwԎߏ{N�tSAk��S{����5�4�'K�߲%r��Vv�̸��*�t��Vp㤌�����J;�ߕNئ���L�i �@ ����smDn\6Wc��Ƭ\�b{��#��5˹�.�T�
�C3��ѵC�J��S�;��&k'XBkQURh�,.�"��"V5��w�0e�����r��0��!�5ֺ�<�N~g���ލ4�h;���a�@��r0b�N�Uj۠Jh�)�Z���p�Ʊ>�{��b~֪�Y�ᱝ��Nyy��M�89�f��T���q�A2�L���UUD`#F) �hL�!��˗��7��0؟�r�Ü3�쟺��k���b�s~q�tW+Ö.'�;4a�8�=���nZ�6��J�R���Q(\�H��T�N��� ���@����Er��Ʊ:�*,9��͈����vhþ
�G/�̓��\�m�:vUڊe���"�btc�d@Ea��s���?��Z��6�,?.4�)ʉ�6
���5s���倝�Ӧu����o@i;�͕9r��I�,A�.w��o�֧�.l8|��x�e�<?��}��P=�5�D�����t�\��o���&�	�O��6��W2�9Q2�n�@qʸ.�;��\p̓�V�~X	��ut��!
EnT+v��-Er�������ek]�.��v#s*�5���~ʙ����ܘwCQ9V�s��XX���k�u�n�뮚���A;X��$h ��B22�����g���w�qCo�S7`;���@�@.k�5b��������9����=�ys~�;�ܨ����v��)�0��5�_�%bb7.�՟�]G]}���=���UUM7EX����;�~c����_��mX�q�0����kP�1����~���rn;0�o�~��ڱq�1��'�=�o¢��*�=t5����WA�"��:w#�ߺ+�\��N�O��~ߤ0�r)�3�U(�gP��>���z=N��B����4B�w>8�Q{��΁��ˠڍ6�5^�d��fB�AW]PUD"�x��n\�n|q6���ix^Tˠڅ����e�{��4�]TU�U��!Q�$r�?�8�]삪e�J�m��N���u�&�@��u��b�ATTG6UE������b�E2h`�S.���|�*���������U����@A
],d'mn�G+��Ɲ��L�p�@�.k�E<��s��NTL�
of:�v��ۗ��ۑ�h�#/aUX1EN�T�zA	%ʋ�Z�x�7{!l
%Z�wT^�Ӯۑ���$�覃�H� t��h��v6֭�e�,�s
��C3A�/*e�=��=e���[�
'MPT�D�U�f僉�;�9��r��n��c��Ã%˽q�t2�`ӱ�4T�#HF@�����3��;��Q9�c��U�no�Q~�qy6e5+�1
��1�����֠��Ȅۻ�m��w��÷����6�:�V٢��s��8|&�5ٖ5�j+��+�a�)�]'�*�=*v�0�w@v�]$���;��HE�b5���+���7,p^8�[��QM�2:8�F��i��N���MZ���UTk���r�e�x�Qb�2��Sn���b
х؃N�*����4QR�rȐt����.~{QX֢2��r��]#�����Ww���h7M�To��ڂ�<qE��.A2۽
��@:��FȚ�`覚�h&k E !�*�d#6��/����$�^X`�(2�C�N�����n�Hû�`t�Ѭ��4U���x˖9w�=�\M�˵Q7�L��蘞XûX���Y(��C@�������W-�C.����w�W��X��M;Z���S�H���9w��(�'�rxk��F�FF��d���}��wsDU�J:�5T� �h�p�\��$�	�n߁Nc����T�9�n��آ��
��V��(�a�TNm4���%�˺�
�B7-�HEHN��ܿ0��C��N��7(lr��ٿ��7�;($���9��t@ms�Xr`���}k_G���p�xx�-w�b���ӷ�ڭ�[�9`E��.[�}�W��kZ�'�U/fMOltӤE ���@��7ji-9����9�\u��r�MtU�������e�we�Q�.T�clS�L6��t>�J�U"�t�W����J�"qֹ�<g{'�'�C�Uܙ��\�de�v�`"���V�*kC.N9���3���6�j��F�.o�#���{â�DӰ�*@9\�� �o��dn\M��PXz\��&���^��@�������=Ԫ�X#�1r���ܸ�P����=�vf��{�;�#�'7`�dz�^��\�s�T,���ܸ��0fL`�S�7A�mt�{��/B�]!b=�v�,���q'j&i|2���k�Z;��themes/images/margo-brodowicz-183156-unsplash.jpg000064400000242106151213255700015513 0ustar00���JFIF��C	


!*$( %2%(,-/0/#484.7*./.��C
...................................................���8�������凜Er��v%I#S*Q���3�X��7+R(S$`!b�T�D*	�"�HH(PQd�f��ܫQ4�
�dW*Л#IH&�di)6J�+%$VM�r�&�%L�)X�e�gq��+�+�?�@0W
���$������IB;$CA�w*��J�T*T@�f� �B��DЂ�(	���ԊH�E"iK3JīRY�I%'I&�m�tI�@����Rg��jt����P&70�閳��Ј��QRJI(i��T�Z�L���$@��`H���c�?W���[�??��t�yP h�
�J�� Z RI�'RR�$�J�؈�P"ɹZN�$��j��d؈��D��4�;"�UgT֘�Y$g�)�9k?�?�������,DY5�M��@��l�Q��V(U):�����ϛ����?��7��u�ePơ(QHH@h�
�`*��&�b
�X�I&�:��MK0-Ed�I$VN�d�fI��HUƣW��I�UrI�E�&z�����(!X��*5%��Q��1� �%�'S�|�����(����}�����sL� �24XX�BCIR��Tتl�B�"�,��E�J���	4�)\΋R"l�I�f�,I*�USs+�U��JT���f��~�_��`9X�I"Ȩ�.U+$Hc� Jf�g���𞿝��������gMX�)@�RD��� ��"@B����AD���s(T�I"�,�Bl������RYfҲ.HԊC�SU,�Y�s��zeg�?��LB2� �dTT��-ɀC��d��3N-�7�i]k�~��~��p��Q���(�5�e�*D�"����B�D�ɲQ��I���lKJ*�#Pg��&ɰE*R)b�Z!2ԋ"�i����N�2�X(��"�Ѥ2�$@2���IB|��o��5���=_�|�����
�@$@* ���R�H�h"@	
!i(�U:�D�I�P�M��+�jI$�HI�b�i""�P�Z%Z�fvgSg쟙�
�T��"EdVz��(I(X�jRS���>���X��:�|���~�s�P 1���B��!"T��h�$RUs$�4Y$�"#I�D�bHD+D�&�%T@
f5�y��,���]"��9Y	:I�!J�`�+ɃHbe�Q���{|?-��e�����^��7���-
�)�!THR Qb�h���! �d�I4�V�b�!jA(����m�1�I@���Q(c�希���}r����-$�%�D@�
%6���#�|�4�?7������l�����C�z�,��1��!��	�$�R �@.D	�T�b'Q
��RndU(�jjEdڅb�Q,��
�愂,�XU����w�HP�C�@$�b@@��A��b�Bd�o��}>N}�x��u�??�矵�W+e
P�Tt@ @ �#"�$T�r�EA4�,��I&�)��I6*�Qh�'@�@"m�`Z�r͐�k1b��O��� H�(�H �6R���@�����w���^���Ϗ�>�=���_��v���+!�
"
��b�HB $@!,J�R-�jP�ذ�$��Ed�b!PI5(��3P���Q��D0�BG�����ώ��ӗN^n���}��S��ZՀ�  � �2lpTàB@%AH��EE*��*Ed�DI:�$VJ(-U(�U%J�N�R�� �/�T�d�Sc�*@��� 0( &�Q�g^?��8o�ǝ߇O?�|�>w�ǣ�a��1T�ȭ1h�!@ �I�!"�:L�ԑR�I4$��DH��@�J*T�ME��T��?�R��HD$jr���-@R�%-+>��|��9�y�g�\�O�+��������9i�J��l�*��RAFR�@�R�T	�T��ʢ���SI$H�QZ�V"lP�\��3�Y����-X��֚`���&��
 �iR�0!�/�ׇ��\��9�������y�_E���?��*��1B�E�2"1�H��!J�:B!BD�T�-D*�B�$!HB�%%
JM�L����� 
��6�gM�X�$�r��c�b�$Ѝ~C��k��εi�G��}�����t��D�,I 1�TB��Ek�H(*@�˵X�H�HH��$� T����R! *�k0**B}��qb�lJ��BT�A�(�2�M�f�$�@1��<��b"��E�'n~�o�p�׍�@wI樥a��bI��A@B�M�
�ʴ��%T�B���HH�$D��)L�Sr�X�HP�XXf�+�>w��
V�fvK! 1�[V@#Z��!"�� 8/?y�s+���y�#�}l���o��箙�ԁDR4��F�*�D�
@�)Y#� �ɴ(\�Y�@J�@�H��I(T����
E@�
�o���U@"ȹj�b$`��0�Vg�yx�9*Z�lp�0��b0�Д��Y�_=�g}��m6VSEHJR�*@"�b@�2�#2H��bI�)E
�!�5B�Õ��R��t0CQ!��D$�V��<�c����ae5κ���
�h�l��6��z�y���ӯ�j暈b@%*�$�h*�+�SU�THX*�6B�G�����	�	jCh��>'O>zLo5��93�
g�s��87�(���7�-������:y�y����PPT@��H0AjP�BU"+&����}�Ԡ@=ǃח35�/v:����dVZy]siqϬ�nn�I�
v�l]����u��ky�f��� �
P��`@��Q+ԉ���ZC�@�`�C�1 
!P��ӊ�U���^=�;3�kɼ�uK��4�K��v����#n��4^��筱��@B$	��ZQ&�@�b���D�i�I��K9����4Б
���(�����a
��!R�b<��
j���^{�}��)³����tN�j�Rk.�����w9����[�:1��{���oy�#y�4`���(kM��MM&\�-p��D�@�O�uc��25�A�( �1���)D ��1�p3��
t5�]e
��V�q��&�-TH���	�I�"��q��6�m7׍ws�׍ts�D�� !����#V���0���h�nl	Q(Y�5`0$H	D��AD��jY6�8D�ZP	 �\LE�ٝ�k|�&q�]#*��b�Q*@��T�R�SL
I��ڜ�2[3H�Y�:�:���nٮ�{���YFH�T�I5CM�J��sk>n��gN5՝�ř3(����0�C� �!D����+$�bU�*P�95�K�LiZ�-�n���5Pe�H�Z����B�H)�
H�q����N-c=ƺ�vf��b�g}���h�M:�	�i��������%Ǜی�ګ�2�:�u��o@�(b�E���@(@FE(�`@�(H�9jY��y��XY�����hG�@g�kp�$�J��*���h��T�HPf�L�\{��w~T�&��nw��ߡ��s�Vw�Ԧu�u���b�rkg-�ɹݎ��:T���q�ΰ����Me�(��Uy��ȱ���@�bD�VgU���j�t��U����JI(�(�+��\6X��kuQ+6gT��5 �� Z*&���2k=f++9�%8��]����������맗M�����-�\�sզ�ޣ�8��#���y��k�;�kaPC
b�b�0�K,�Ym��QJ
��(��HSIjP,�I&i$��AI�DO1�6��>.�͞�5�*V�R"mp+h��QB��Y�:�P�$+4�l�Ε癚�oc]s}^=�3
s����۫7L�z&��ι��>]g��N�z3��2@��V�:��*-Ci��"�)YM!(PZ��Mf��d��[��Ʃ�(�ԉ.
Bf5��(IC"ɲHK���cs�ێ�Y��^�4€�(QP�l��gQP��T����ȨI�2�+�7������gϼ��L/7s��Y��>��-���tsץ�������s՝��|��=�Z�ME��T�ke.��L�0�ҋ�R摤3#]��d��H�a�6�a�]e`�G*K8��!��ΐ�SI�D6�3qmcbO/o#\��Fg�cu
�YQr�X$D�fBF��Q[!fl�Y�b����d�ZeY'=��H���>����试��Z�M�\��T�QAqksTTYj+$F�΋2�\�EaR�Y��d�ȱ�.�{5Q#reS�B���5�<7<���k��	$[�b���4�@�T�t�Z�9�<�3Kϧ��kR���l�&��TM��g��C(�$,�\�##=9�-g��"��s�:�?�>���Ll��R�u��ET��@P6(�Ri��Z�=f��JIJ�!��Q����w$�asU�w���g�2�4y�y��/R�t�!H�)`��H�!�jD	��'���u�G�s�D�d�M�M@��3���&��L�l�5�9$.F)�s���f1��W�7��~z@�V4	Ϭk5D�\�*bDc�ܺMsk���f��A���5���3��QRІR�s���ٕΓAQ��6Ƥ�1�y��e����GOIV0$D�Ϊ�!R��ɑ�4�T�4�ȷ�5r��~�OB! ��T�4�	3UXY��I)6���BMd�ɒeY���e��_�o���gMtVgg>��fhĽ0�ѭ	)"��l��eKsJ��H*�����fR�i�5��X��9�e㎬�\�$d�D�c�R�,���H�I,������l��ߐ��.%>�g��V��jMfgfV�*�),dI������X1���+�',*�;3����k��)4�͛*�i�!4��
gU��Y���\ʪj3R�lFZ���"�]3�S�\�>{�	�W+H\�f2Ah�d�vtl"VH 3H��:!��-hΎ{�k��A�V|�^x�\�c��J�H���A(��*���H��Ll&�Lk$ʿ[�/-�fi+s���!&���k�-���k+�������j�ؤ�V�H�9�s�h���FIɾ{gZMst���\zR̤i�H��3�	,�f������0�,ٜP�!C3 ���5MD�c�i �O��|M�곯�Ɗ�P��!DT���glDVr�Y�3�ܱd3�v�\�vgX���t���zJ&�r҉��Y"�s�bʳC��;�+*f�ZPGf:ug\�9ɒedY�z��>�h��ΞN97���9kim�Ђ6�Ӌ|�OK�S:�*)�DY��MD2!���B0\� ��&�d�/�����>��i��y���V*��6+:�s��m�#;?@��\�#WLM�rj�D�f��e��U	�����KkYmu�k���dB!)�γ��a�����jTpt�uכ��NDR���:�r*�-NM��3���6�$DP��	%d�Pu��S:Rf,ٵI�I���O�������x[�O��O��隊���A��elˊcd5���U��лF�fR�3�w%uf�'6����gZF�$��+:VcM,�����).P���KjL�I�3K$�S
N��"��''I���a���	�teX�fuԢ�r���q5Sܻ��)`�N�4s�To*�I�$̅������I��(���q�K�X�д�B��CX�&k��}�˱f�gnѵo3�C4i�m�Eif��)I2�
 ���4��Nv�6erZH�!ƍ"�&Z�3�Y�Mf���+�l���4�+mh�'Wv�{f���M���m��=b�s��.����1���2"EX"�Uf5�G��&�	�$�*�du2��u��cQRyu�7��o0�O��8�sR��5�f�������e�U�H�K�]��]8��\�۹���ͥ����e.L�gV�b�T�H���7Βk/.��t�M�BNn����lǬ�!%ǡ˧~5�iPgg=c�rԹ�7Y�.5�˧�}J᪉34��B�Y&g2�z(�Q����DVh� ��5!b�Fz��s��v|F��������N�ȅ�%~���E�j�H���̅�]�s���g+5���N]f�3�����CdQ�$e�k�aS����#R�A�)����s��K_K����5�j��H"�k��ۯ���k�lb@��Z�b&�J��M1+�IX���K(�LF5��ZʲW"Vc���c�̳���;�R��o'Nv��.|��Ǧ
�ڷ�/;M����n���i7�nu7,�h,�庒��\��\fRђcVg���:2jd�Es+��'����ZgZ�5˩R��i��}=n�θ$�k8�}>O^˱
29�u鱠!��l�Ư5�`��" �� \�1+��x��j�9W�\�����%|ֳ��ᝇ��fk���X��x7�-�w��N� �mY�t�^l�$i����w,d4�+�j�;���I��jEI�E�IJJ�%��'��Zc[f������z{;���<�Ⱥ�-c�7�7�:���˧Y���9�z��H	�(dga-���$B B$B�P���9xW(Ѯ��Y�&mf�mb��>�'V5�މ���2pu�ʮ���k֣�ZE�32l+q�(�2� 3B*H#QK��jMB#+!���
%B@��ӿ��;��v���^�L�+)�9����°8��^#��	��"L�5R���"�D�H��|Ӑ�z��$�K�����}��s�s}x�-jd�k*�D���ͥӐ����J%�&:Rf�4�B����*q��EdTTX�ٚ�gAP����o?��w��6ι�9��Y�%������s��+Yߦ8����Ք���z$�� ���J�@@��d`���jE��:�RHµV+�&+�]S�h\ustgw���Q�=�M*Yԡ��
�D5	��J
RR�	C�c&��,���3�Aj�J��_G��{ܺ�<�vo6lg|��(�Q�4���.F
f���_Yɼ�n�������FP�"ig7SMdX9s.��T:T�6�&jsYK�5ɬ�m.W�tIq�m.��^j�Z��W=F����R���SI�6�䑭%Ka(�g�ɲ3dhe6��Y��/~�?nk<k�7,�ij����BY�f�5���
fZs%�OL��ǹ�A( ��bS�q���B���<�H�D��%��S(4�5���2���e�\P\�kW��;"�4j+YP�
�*[E�гb�P
nMsb�p�F�vE2iR<��g�g�ߖ=9�c_Q�~�nMkr��U�B�К���$�rP������ze"h�`
� 䗗7%��^ě�U �Y��1M!Lgnq�"O?�x.h�jU^T��̫ԊH�v2ˋV�^ZEE�H�g�P�P�M1UTR�TT!QdZ�漥�/&�nXt���|O�ÝJ��3��HZ@�؆�l�$5�M$��]�`��gL�]9�@������:�^S�:��L�H�n��A ��2�D4�̌Τ���~NQqT�GbIEY�X
��#X!X�jE`MR�2R�f�GF��"H�EMf&��<�ϼ�s4����ۇS:�%��)�,3��Dc�S3eقU�{�:���|����o��(��Z2��e�Z�&���	 �˝ֲ�@ �e��HDT��K�������`���֡�zEg��Ye�6���T�VZ�S$B�ե-ƒ��5��Wn:�jVu��vru�f:���lj�rN�3D,���,$�Ɏ�M\��K:��2+Y�8�9o�_��=nL��-Oͺ�]��7�6�A  �F9�Vz�!VyM�UL�"�gHD5摇v�<o�ⲋ�(�cH�.���E�Fn��gW)b��4b�$Ԋ�h*����pFػ�V�6L5���Y�Y��p�0�bɢ.XL�!*�����)M��*�#��V����:���l�����Z�!�A�c����d���A��4�(�2,'2�vW7���3A�L��z��%��hjmK�]Y��$B����s3�,t����Q(�sޒ�,���g
3���.! Z@� H�T�����MC"�dܤBY�X��&媊V[NTʓ;r�?K��P!A�c�kdY+�D%�t'e"#36�%`ɨ�%�L̗˗�L��g��t�5#Rn(���罳44�ڲ�H �D�e�m�B]%R�l����L��VVgs	5H�A�I%,&J�MC*�5��$��+�(�	�Ռ�}?��?�B�@!��\����d�`DĈ���(��V�dJ���7�{|�ۙ���[�J�=l�GN.�Օ3mRh��
(	����v嬊\��u��3��Ybf�JEeQs�1��L�PiL��RDB�$V�/;���MK �dK(
�(΋BZοe��C�x���@ �� �9�k�����I3jL�"U f��c/-)}�g�������I�VF�T�s�o�Ӎi!se�V��j�e+sE7u�:i�K�9�ҳ=$fI)�I,�t�H-J��	"IXI$�$R�)b�Q�%�"���N,�\��W�?7�c�bI$e��[� �I�	$��K�&f�+g��������%b�=-�
��Y5�;4��jg��:��^QQ7Y����i$k$:AQ�"�i,���YH�ȴ���D���RD�̴�L�Qr(gd�+�2M��57:�m<�V�M�{>��ކ0#(�fA�����(�U$,.Q����$��g���`��r��je��fJ��tY/Mr�P��{�k�繹�R
��;Y��XX�:�Z+
����3�Y�"�T�R�*fP��CQ�I	��A����̲4J�;3II�g=Ud行�:ѧ��c��/�u�@#)yp�ƺ��3�8�d�s%j3��d�>�U�a�Z�Us)����"��H�Y�v�ߥ��+0N-\#-Ec��Z�=ఢ:��)�S$�eY���3!�X*�J�,�X�\�8Υ���,�,�$$��g��h��{ME^:T~����U�`���ϋ�a��o)r�fdB©3Ρ`���<ns���RA���w2�ɶ��B�y���l���4�"��,�t��=uMv��^D"5��R:�d�3fRl��Ƣ��;�tK��zau�%��Ded�dٕ��X�2[����RN���k8Y(F�Xrծ�w����\�1�1 $C �(��ﯦs��& �q\��MJ&�MS�~\��Q"4I�u�j��ڦQ�Tb�\���K��V/v7�F�y��l���cX��fvK(u!$�H�D$1���&�[�e�3E�:�XfW+�s`\���!J�+���&�a,^sr�뉮z��5ӎ�I��|ߦ1������
#(\��:�k�yQ�A��de+��H�SS�}>wc��RJEE&I���+�l�JM�W�i4�bI[LD���	#Q"@�cI!"jRna�H&��BL�4�I�q���ͻ�̦l�jED�����d27��W2˚��L��K�}�{���X� #$YI2��/ћ۩�D�D������g��Z�lB��N��d�gd
B�R5�2�AO:aD)J�D��SI�	D-I$H�r�ID*�C�L�ZH31&;��s�Ϲ�ʧF�\Qd�l�EgY��b�4�t�z�S�_a�X�b�D19�J�.ǎ�u\�d���Q�f�6�~�p5�juU@ �%
H�;2�e!���Q\*�j�B�R)Y,ȬB�K-&�D��h%$�T 2%"Ȩ�nU���2Z$��
�P��4�7��I�>�/S�( �VR�*Z��9s|�Ө�fH&&�2"����_�� (DB�	eY2F�d3	�&��H�5B%+�%���*e$�b%�3�(�X�(�)$*hC6l-HDZ�
K�S[οc�-B�Q�!	��+ϛ�g}'U�L�c�r5h �y��A�D@IC(��ԖsL�L�ʩ%H�*�@�Q"�0RP�I"��!*L�"@��H�naCT(�J,�e�Leƙ�g����}w>�PB&��
(��%���^�:�ce�؍k��@DA�DH�+4��&�V5�L�\�1�$��HBD��bM�F�� 1���d`N���P+�gpR�DRB�Bj�5�
��o����S����׵ϧQ�(�P�1��bL��I����Ӯ�f%�͟i��P� A$�E���k;"�6U��b��	��X��D��!��BE`�����dH��)*fTjQ35,Ҩ	��IPֳ��C���m�|nzj�sۈ1�
' K (�
�E.q$f�.	�^C^�;�	E)��`Qh@�$�DA70����;����=A$���$R�����% )T0E,���B�PBIԑ#D�b�lH�QS*@"��ӟOw����}����:5<�~"v�|���)�,�@��Y$�����M��������� ���$�b�&̙�Y��c$�3fHI�e��r�B��VJZ(PĊ�J%��@D��u,H��� �H��cT<�Ӕ^�}���S��痓5�Ӥ�Y����:��y�d!	�� D�,�!��<ٮ�7�B\o_W��Qp�"A$�(������G���.��ؚ���s��~*N�᠊�A&�T�F�@�M�$�*Ae$V�f#w�N:���QBA�$H����ǯ��{z�zy2Τr̨��R��ξ:t���L$�2F�� H�$�35�&�V*�]Sk~�����]l����2�\�>��G�=9��g;6���ۯ�_+\�S�D�q돕ƾ?Z�:r[�]3�8����]��9r�z,z���Ϧw���}	�[֙��K�^&s7
�����ƺ��3b��Fa�����pn{�����!s�֙ǧ��9�瞲$�#D��q�{�=�ϯ9��޵����A����!K����w*X�� N*Y33X��}t6K�W�?
|�=�ϖ�;|�ަ}�o��<]c�~~}�I��l���O7oS�N��[:�t�_�'y�;�}���O�c��OX�<T��?S��_�������{��޾�V��ˤ8��4�_
��c�㵎���o���N&<�	�6�ߛﰕG�f,ݾm�gǧW��k�Ϭ�}��w���SY���@��t4Nʫy��q��g�5�%Vy��=��I����]�j��I"��DA$�x�A:nJ��_���o>��L�\�v�\WI���`��H��M�9�������_Y�Ӥ�?��p��=]	=ۭfz-�ug����r��_]t:�����˗��AI6Z�P����$���Ύ��e/�/�G��l߭g��.7=m|�4L}CSo�ç��^���DH$�$啵W=R]V\�|�o�u�<�?/���I���*$����i$�Q9�QFd��0�/^����K*�U���?����u��G����۬�|z~��wc{,'�;����y���M���?sZ���L���k��y�Vzڴ�x��zq�t ��2�.Ġ�T\�,�Μas�'�\��خg�ɥ���cfmR|�/�y}?o��{d@�J%ā��;��-�r�r�3^�N}��,���%��D��D��$#j ?9��?)�$��٠�g1��u����cs�<�{��I�o��^~�-d�'�ח�v��t��νq�nL��,Ep�Bs��ǘ���ɭ쮡)@3��H����;���Fw�M3��c�i!6nQȭQq�y}W���	$�#8���EԢT��c+q��9&������5��%\�)U�I!�Yl�y���jx���V�㹝��=tcn����g3�zbY��~�o��'��,��>{�?���w��=^��ѫA)��K�Y��� e�5���=��#*��=�fj�V�VgbL�
�3����g:j��-�ͨMJ$�~����q�*��
4��SB�Y�-e.eS,�&+λ�����ŔMf�5ғr�B��Z%�,���ϝ��$�&ˮn7�Y��OO�u5��7��ecs_c�a��y��r��=9_lu�h�`�[-u��/-t���R�&qk�=��**�
ic\��rs�XAQH�.ƙ&�\��^w��W�x�9K�#0˦�]Kg�X$�r����y�fu�B�Z�~��&\���:��Bf����~��Z��RjM�k�?[���C�v�۟��?̽>�t�S�ߡ<�g�o��O.C�.�5�(cJVV�>s�u�[Yk��/�o���5ֽR������yw��ʳ*�3�Ab(%V�)y�,�_7��>O���K��5�jf%R,X J�H$k��kd�\�gSYR�>��Dzl.g,н��I@!�����?#	:m�II��4�I��~o�`�*����
�&�����>�>/���Wn���֩^�U�Ij��~a��I8S�o�s��_H3z��:�Vz�2w-%�5��KV�3Ȳ
]��f;3(�ߋ�}�/m@h�@����J�D��A��ot�sH�:��z�U�!�f���g^��E�(՛$�?�?C��&u�c�m5�g�]����:�!���z{qˬ��3�����۟�1�]v(�M�Z�&yӦ��|�:�{-�V��j��~˭��]$�Nk7��)�B5<�f�ž����|/���.�@:"��"D�fM(��N)et���bj*��}S�Z(���q�^��h�c-6I�_��k�ٍ75�&�=n^��_���ʙ�/-�
Ӓ��S��n���N�z�~��u���x碵2����0M����<��76s�ܷ�QBU\��6�L��t���<�=����YxP77�泝�Y���_b�l�w�[�K��kE#T���Q(�RI�%�̅ʸQ��eEdI�:e^��͂F�I&I��5��E
4KHZ)+��K�x?"�^.]�#4�];�OҼ�ռ~��>;����|��8�>۞�Ow��s
ƽF>��Og�ř�>O��kď��=�|�>�Mm�X�k�v%�\+�<��msyS��kԺ鳂g���%���I��+:��0c(������x(�g&U^n5��*�U�Mk/��z����>V�y�y�zk�ZU�4�J�Kj���~w��4V3B�"Lȗuw,QTC�E�%.����~'^_���ߋ�4OS=���O���3"�!/����ߏ��ίY�˨�<=�_��o��y���XsZ�1�Qj�P	&v|�����c9���.�D������xn|�>����Ӓ�e٬͚�c	z틍wjbq��|����9�^����/�zx��ח���]���G�gѻV-K(%��V�o���;�tĴjT�A&d�[\�P���,�KH�{v���~o��_���۟%�Fw�w�?U�{�(`�5�G=v��3�w�{7��x|/O)A:U�������g%ϩ7�q��=��^t��w�YF�]�y�,뚀�u��q\t/z���Qש�5�n�s�f��3]��<>��]}n��Ν���Y�'���G��wo>?����yra5;^Ʒ�e������"��B+2��O���Ѩ9i*�4&!rZ�nm]�\��L��y
O��F!1AQ "02@aqBR��#3Pb�CS`rp����$�c��%s����?�aF�kc1�9���Ԫ���{I����EN�:�i�G������+��i�p��=�Jƛ���7��n����Q�c�p��=V-��w�?=�LE���D�?�?h�qp���N�w����7#!a+ۑ=C��uY���sE՘m.vJ�u���
��қ������8=�꜖�Z��R�����tXz�����Q����E�uϒ�4m�P�������]�s�
�,m:M}��r+�9T_u��D@�l�P���
��F�?���VYC���J������3�Dy����*���>a5��i��8�
���el�{~��9��1��Lu�ˊ�St�����~����)��܏�S[��֢��U�T�l6;����a�j��_f�ͣ�$�������[���/�X�V��s���B�
(���7���}���þ6�n���E��cS��c���CU��x���RB�
(Q�;P�B�
(��;�A��V-����E�����ψ���k�]p@�=�*w��CQЅ
?��J��t%f��b)�i����5s>�tѭf"�\k~��7}��r��F�����қ��1ΥP;C橽�s�#Ŝ+.9��z<�B�/�+X=���T�ڂ�}��Ú�]�t�ܿ�!f�Y��k5�FT�S��$t%J�r�'Sa2܊�Z�2XsM��h�#�����R�J�=��s��!J!
�Tj��.v����pw�.�eD"�=·��
���J<ЪP�sO��B�
6GB(P�B�
(Q�(P�B�lm�
(P�B�
(P�Z�V�j�Z�V�U��J��%]�G��Ns�<�l��	�V�j���J�*U��*!T��j����S�T��!B����eި��#�<���SS�!��[�5��\��kxV�\?>�l���N�ƭDL,��#�Z
�Ǔ�v\������c@Ms>�"t�5�9���AJ�q淋y�����Ni��y(�v�����χ��i�d�֥�y�}J�}��B9��B�>���ޔ+sTj�x�A*T�R�J�=�y�h�G�G#�p���u)9�ȶ�?ᒙR���0q�+�����/C.�(PV|��<�y淊�o?*T�S�%�̖[!B�
<�y��Py�<��R�Jy��)Ȧw@q�"#�i��� #A�+B�B�c�j��
��!�b<���{>/
%OFv�����H�D,����П@�m[�5�<�i��[���UÊ�sC�!����@�~:f�(;n[2YsYs��t�����z�
6h��Q��6��4��n�ħ24��u��U�VpCG��/�Kx�+�A�>����\��M7l�j�B�\�~lD�qt!Gc��Ӷ��\�������s?��Q���2�+G%��%!�Kt�Kp��Ҭw7+j�J���_h�>$1��n3�bY�%��}���
�Szs���%(A�����Q|����Tx,���[=v��^�>}U���A�wA>���ǩ]naA���y�T^ ��n��+r'"G�=���d7�\�����M�Tn�P���!78�14���� �x���1g`�G�xMr
J�]Ҟ���J�*$!F̶���h���6}Bv��s�|���g�T~�b��F9�5�u��A+#�+����w����Mv sb��f��Z3�1���1tM�D��\�
	Z&�pNfKw�UɮSА�\�J��%�j��ۗGg%�DO�v��i�[�C?��-���H�	�迺���qMts)��F�9}�>'-۸?�@U�E
���!��5'��7��!ƚo�(y������:<�Ʌz.Wj�&��•qW)�'�B���J��>�K.�p^�<����1�5�;B���,�ٞ��G�[�M?ģp���]jm?��dy~HzS'��ʣYwR�^NQ�����_���c꤬եZU�ҳ]e�=��'�+-��IY��g�T�R�g�>JT�W+��r.�U�4AS>[#�<�l$
J��U�Bv>�7��
v	�Ҩ�e����h�k�}2�ףS�U��{��Vj�b��ٖ�P��=��T���R�d��K(�o��y�B���A�:݉�_�5���J�k�vDO����?ܰ��0��?���'/�bi~>��O��i�HsG���v���{,�vcc�;�v����3����B+y=�+�u0�o�˗L ak�c��B��(�SB�~�W�-΅w3�]�
:�U	�ҧ�V9�S�F�r�O��
(@䃈*A�ے���Av|ԝ����OE���Ht3�*vN�ٞ˶d���Vx�vq��c��
9����ʙ=�ޡU�m�&��_g����K�Ybp��*X�-O�ZR8KH>�>ބ��.�;3�rQr��]�J����'�� �Ɲ����A�(�]�P㫣� k*�(�W��� 6��׳<6 ��o}���z�i�ե�V9�R�F�r�O��|�A\�O��IB��W�
�`�8QО��;���j�-�4J��䃖|��R�J���
T�'��A�P�s��=
��U�Jmw�U�U~�L��{K�5���������¥�,%O~��@��Z�G��ݞKw�o5��p�����On+�|�4(Q�()R�aZ��P��s)ܶ�P��m('	V���2Y#.H�V�������o%ky+[�Z9(�tJi�:vg��DŽz�#Wt�b~������i�)�ʩL݆�}r[�ja�����{^�ʭ2�L�,V�r�O�����W8��d�J�*�U�%N�9(*���d��GG3��%-AÒ���qZ��S��tj�h��I槠H�Py#�ƙ״��I�(�P�co��N_T���`�>��m7*�Ȣ
�g���,7�ռy=���cC�
���Ԗrc�PK�|W!-rJ��Y�@sP�|�GH)�E�C>UÀPg5	*J��IS�T|�H�e�Dl�;�	��Jc���2��X싆�3���f[<HM���wq<��}*O�S���?�/ʐ�چ����.v�sU}����XJ�j3<=�Ky�L7x��J���ZQ���7
W�Xz�iS�d�Ҵ�C�G>���h��\��4:�����
*B��T��0t�7h@E�h���p���}#������$4I0��?����y����r��Oyʹ�.��T�F��Rk�J��h;��3�_a��΅I�ҿ�8�&+��T��A���~�jU{�k�d�%�)�\����O��5+^(�rcϪ2�$�Ӓ��6xBvYq��{C��%J�>k=�"
�;Bf�s�k��2�x-=Vk�;�E;�kFI�{u1膝�N����7;��n��L�D�5W���;O�U}��5G���R�e��
��O�)�S�a����s}:@ �2Y�+��|��vJ�"㱽mNj���kc2��[sW+��=��N�R�EJ�Дv�&�cs)��vJ��xM
x�O �E�8�1�D���\�zS��Uhѩ����S�tO��_b��Ι��+�9T�
�����}+ѩܨݣa��L+¿�D΅Ψ����8lqP
ρ�r�N��We^����ga���Q;'�=�z��⃄ d�kwx��p��
Q�D�a]�S_$�C�$�q2�dOGD�,��$v�B/E�|�Q�UL��mU}�����Vc�_Y��iU�Ɵ�7N��BpVy�
����jꝒx�S��.��'�*|;J=LPq!6Pm�ߠM�H�d�M��>�&5)՘8�_�IWU:4�y��B�1�}T���ꦼ;עS_�Aӳ�j3�#S�a>�/�'�}�s{ʅj�8t�J�N��=�\>�ҭ�NK䣥��vύ��sU.fR.P�F��"3#�=>9���
��5(��j<�El�t�Yu���蝌�9T�R��u@���O���ƚ��f�S��R��G�!Y>~�3�����z!��Wf����
�4tMFxt'ˣ*U��;'�>0	�N��~J�Qs���Q��5~��RT�
Y�U�q�P靅oFy����uBrt��Z�wP�}���w��s*���c�<�g
{7U�]'�5�q��QSP��ڬ�d��U���*vs�;'`S���kr��9W;��TH�W4{�x}�[ٵ�^�%X���#i%��n������,6������S�s�ԣP���e��W5���M��s�Jh#,�Tl�>k4R�N��#���W+��S�ɤ.<iZ>�3�_��_UyD�&�B��lZLϒ8|M|��E�����(a�	��GS�p�4��}B����R��(�f�H��vJ��힄��ٖÒ%J����N$��
��o�c�#��s���W�w)8����W��+r>��*��G��Z�����#�����J�*T��d�F������i�Wg���m��C}��`��N4k[��`���2��	��.FOI�V��o�o��kzռj�5oZ��oބ*	ⷡo��5�oB��[��[��}���5�ksT�ʆ-��?��Ƕ�oa��;I��,��:��ߒݗw��y7 �?	ݏ�3��F���w7f{
��uf|S�y��?�DT:�����3���;i�����*{Y�'���Ϣ�a��̬�g�r�*S겘��4y�������\,3w��e0��Z�Eh�4�]V�up[�;�H��%mS�@��t�2��+!���iϢi���А�(��X�1�4�
�-�o[��U�P����%���n�Va�s*��p��<:��*�����Ӱs���[��1�/�?u���;Ԡ��Ӱ)���}�T�RG�r��S����p�Z���4�;Do�ܛ�A��ݡ`�P��n��c�ܓiSn���B���f߅Gn<LsW,�ϟ�
۪�{���蝼wp����}���\���rMkZ!�
��*y(Dv���̽T�)��,
m�(=��B��J3��a�>{(Q����w(g�������G@m(�Ӆ
;:#m�<�䊕?�{:��run�����=�;aB��	�l(P�W��.R�O���i�=��M���|)ZxhP�GJt!4 6�59,�vd��
(P�*­*ҭ<��ZTt!B���P�G�=)�����˸��<(P�V�T(V�U��j�Z�V�Pl9l�N�Y)Y��t�(s(Qo����JРrQ䣲�rV`[��~kw�5aG�*6!B���BA�����R����d|(P�Z�V�T+T(P�B��̔i�<���+t�HP<JB
A�c�h�o$Y�Z�C�+O%�Nvg�
+T ف��������B�P�B�
~e
<��@�����r[��9�H��V�Q�(P�V�J�B��ل����y��b���{HV�T(Q��"�b�Z�B�
�!Z9+�n��n��-[�5�<���v�J�rTiT���8Jc���iV��B�(P��(Q�(:E��9N	���ױ��
u��bF���x*o�#��k�rkY�۠�#�P[�T���S瞨M��~�~�F���Rxsu�M�ۡ�'�-75R}���]0�_���� ���2X7�����z��4����p����	0�a��a06���<��;5�]�%=Q����C�-2��wHM��ߠL�4w�)
�
S��$�\'�m��+R��9�� ��@ȟ#���	���]��N|
�/T�5��4k
��u��ʮ!�q7.J�mj[�9��U+����H�c�]�	���=J_2���Vc�4Ϣ��Z�[�d����GH.A�"���S\׉k��2���<�h�g�>h���m�ۛ<���&��{��G��a��H�no5p�#�H�50������?T͡���8��I�T�8�a���}��Ʒ�O���x�fI�^�3(Pv�jw�,UA��R��7,1�b�ٽpn�3�N�n"�~n�d��Kpp�%�����̸�'\���)�ϒ�)��5���v�u�Ü�^̀m܂o;>j d�Eŭ�}�5�V]w�=�HA�n���n��?Esf%A�U͘����rV�9|�W��HY|JV{%�\�V�1/%7�v����M��8����U����Y�PG#��D��\`_J���O����$�M��'Wļ��Z���N�Ꚕs#"]�M��=w6	��D�tϢ�J�)�l4��؊C�ڍ$�D�b7M��<�t&�q!�(��ꑑA�:g�D�#�L)�g{�Z�wG�t�f�{o^"|��`�U�SiT:h�ƭZT��{[��jm0畁�ת�+Q,g��sa�1�}X�Ꝉo�._i7w�mo)�E���`�ao3L�g��1��0�#^�>������O{�s*T��
�yҐN�Ь�6�:���A�E�O2���UIJ�E�c�*�_U�U��9�I<U
u��Z�*��x`��<S��]����Wn���Ҭ%����@�<4�Mpv�e\Cm�ܹ��@�^�X��Na`�%���«ѫ�5Y���26���^�j�v��,6�g�4�}�_q�[���I������b�YD��}W�:�_c4�E���;	����Œ[�M*��x���?r�F��T��[��S0�iesJ��h�>���Z�:Ѝ=Q�_r�)��h�EDa��n�o�k����
c���HE#-Ӧj��\��4k2�&U�z��oO
N?E��hcˆ�4L��5˓�ԟ�,<ڍ3�=�~���������oz�z�-�s�6��6$�p&a�Z�y7$!��S���8˼�
�l��kTH�OX�:5kѤ>�Bw��6�p�*�Y�J�����M�3�xq�R���&S�LE65��9��dy���!��B�2�$��Y�����^�W'�l���t�c��N�պm�M�}��^��)R�J�*SAy��[��������`X�]*��'�Iqw�r������t��������
�	T��2E=s�f�]��jSC��g�4�k������t��9L�\�2�?S�o�3&>I�-6}L'�^��|�$0�,�F�Q���Cj�*��P��F��=��'6H2A�܁�c�w��訵�U}��B�U^�pxs=S��jb3wWO$�u�A�0�-�`y��-�D-�C�7G|3�y�A�o��}p��ʀ3晈��a��k�Ih"Z��2�c_i~gF�B�Cx����,�Ө�̄ʵ��{�X8]b��;J˚nT�lGr��⩐Tp����ϻ�+�Ix�Wy �%��"ƞ�V�����K2�Ӫ1��;NT(��:�:����~j��p�̂�Ѐ!��GC>e�S�� �t!J�\�J����F�G����k�ς��CX�5N�2r��T�T�XZ{����5���$��|UJ��'����q��;�+����������ƣ�U����YF�xy�S�PK�e3�*8vR�WsW:O���C������.97�v8���mV�$yg)�`��g�y��@sn�n���	��o4纣��å�˼P#a'���pR�Nck�
�MG���P��Y�h/�*_l�)������;I��u�K��T��
,��?ܭo�3F�V��fa9��4SDn�j�������R�kC�!��<6�b�g�"��%pW)r��V(�Z�YJ�+S��{&��<�8&dYRѡԩ0�5*T�S���n�K�rO���|�e5���*]�t�r���[րA+P��r�|��\���6�w6Np���xmw[D~���m|�豗��x�x�Q��ܛ�h��=Q�a�K�R�>�r~��깵k5��vM�!S�u
��h�����xaP��:p)�3Մ��Y����d�U*�s���6��|L3�4ʿz��S���t>�.��f�
c�-�Æߚ��>3
R���>hU�[Q��+Ӳ������Q��T��B>eӸ+��AV�3�Z�P��0eJ�=���2<�i��s���-N`����J%N�UlB�e���M���x��:6ߛݥ���ׯ\��1���n+5��ϼ>�uM�
�^ط�tf��*�e�-�B����
�4i� �3��k3s����հ6Cmw��2��Rk�ꋹ ���ni$�}*�`�XӪ/t�$*��.�A���©ӵƣ�N�*zqЦ�1�_-:�u�]
�ׇ�_s�7�j&�-�׷C䤚�A���)��po$7up�!�Wd��pi�A�Kc˱ v9Ṝ��Q�]�&�1��H�e:�ȣ�s�H�zMq��)�_某M���Sи+Ի�Ϛ�X�V�Q�%*T�D��S0{9��˔�;%J�*����9&���2NË�dH�e4b7��Sgq����;��|L��7��z�V�ݜ�n>�}�@r���
@ꘃ�ז3���T�W�Y���0Uj�k����F��9�=\�J�b�;����5=�I��ꅌw]��\��!�~ѣ�$��cjX�J�Wx��"vJ}K�v�e�uB���b�KIc[�)�,�M�f^\�=�GW?2�	��BT�/k^ ��vu�3��t�*��Ԩa���+Fu>Ah���^�JJ�sV���eJ�=N�.}�M�;0c��N�&*�ĀU�w���"H̏DL	v��JT�K�띓CS�&�0�Ko����S��WH����u�.�
m8��-�E�� q(��o�ߖp��7`:�R�2kG�5V4Ez�0��6�A��Klg.jvONW�67�—n@!y�`*�
W�寚,��k6��x�:Y��|)��-̻��8uAC3视��T�S�v=�\�s �D�%
�wp+���)yV��ݭڴ(%*T�R�l�����`����|.����9(��+��-��}�u۲HӼ�\�1*Y�C_�)Vb+T��(�q��e:�_��m��
�"���&���Z�
���ָ��Jƚ�uFל�����.�s����c-��o��%4Z2��:Ma�e�Qu�Е;j�a�{�k��Q�}��Z/�48��9rT��29iֵ���Sp]�L�g��X2�i3��$�5]brz�S��ae*�x����*T��\UE0q̬�+��R���T1c��e�Qw�ټu�0��&���>j�)�<U�E�
��4)�qkK��wX��8��l{w4ȷ���z���1�	�a-TjԹƭ���
E�k7�;��Ӝ�."5�5���{��k�Y-cM��k+A�R�P�CD�$j:�T~����흓���e �{r�lKi�{�L
���'�!�5�4/T��T�x�J�T�c�Z��'�W����M��T�4Zt'c��նs�����p(b��%x�T��#�V�O��\g��S�Jz���Ϻ��m���!^߈t���b�5���p2A����5�%�w�o��ma��~ъ�{������n�R��[�D����9Z�� Vc�Y�`��IWᩲ_V���O�Q�,��AW};.y���UZ8�u?��E�"uCٴ�J�d��U��3�!�q�1�Gc����ݕ&ʛD�w�
�w[�B�:�O%�[��P0s<�����֗96�dK���o[�*�L<|�h8t��-9hx!���##jT��iF���lf��	i�NK�c�9���ꃺ�~h9�,��EwU�#N)��z(��e�a2�1�dN��wU�B�UJ���VU�d�J�=	�J�*T�R�J�r�������+��B�r�\�
�*���=�	��7���YT���1ּA�8�6O
�ȥ.u^Y����1*8��pyq�������֪7���|-LlScl$04w���j��z�	^�4���Z!R��k-�T�g�uR�֩�XW��=��`���
�ۅe���W5D����쓚 �U�N�rU:��Uͪ`��ިN�|�y-�
>����h�쾩����m�� �d���^�R��(��

�v^.�9�`@�O��(�E��!�~�Ta��a6�i�ą�SN�y�զ�d�(;�IWe���3䟘��9�
8[�f��x��{�?TO���cK;�G�n>�i��ߔ�Hc���g�/ѫ��G����#����'v�Tg��P����5}��-�1�9B�D*x�=���*3��'�pLi{g�,�
/:WDo^�:�7-�����o�ħV�r���\y��5r�^�W�ʿɫx�/�޿�詺���B��ó�w{�U�(:>h�E��Ti��I�����6�Tb)��ERc�%��G�n�B����B�F��aq8���SJ��GB�:�̖0�}V��H��,�SmZ��_V��Vک��1׺����=�kz���&S��g�و��q�g��W�z�vAo��
�C]'�mGI)�k��.m�5�gu��1��08w�>]��U�A'%A���2�Rk���Mg��v;R��pt;EN�`-�.
ǎ������hNwo�w��R��P��oXf9+���k��+uŎ#�}���0���D)<[������Xu
L��D�M������L�>�&�w��L\*7#�חj�
�u��8���[�o+
Sy�y��7r[���sxOcS78�X�jSs[��QVs2O���Z�"�W4�nBc>�
Ro�Lx48Af4˩����J�iV���1�*i��ó
�~oL�$��뱎���x¡��8����o����Gy��p$�t�_
kVeK�7�i'��UZڍ��ú��0�!��y�v��Z���a��N.��W�B�TZ��uÉ��w��Q�ȕ*v9�)��fv>�scDޡ��y���w�aT�~N5�+�:!T���}��jmF�Z��pD���(�td�J�͚���x]*���	�+ND�u�u�>i��
Z�85C��?V�B_3d��
V�5.�\�c)�_vF2U���U|�rG��O4p�6*�k�c�k�ì8&��&�� �`T�Xz��I�������*!1A Qaq�0��@���P����?!�}XB����КO�>�'ӄ�uO�:�:a4�!���a�f����i��}Y�5�!:gL&��M'D���cG��K��?�ZM�?��y쉻�_�!N�M&���iBiO���բ�EW�>�n^Q&��o��{��'��	�M'D!	�!Bi4���)Z���t�U߀/C4�M�'�W�M�'V��:a:�MaMaBXM'ӄ���cuC9��^�q���BtBtB���'D!4�!MaMa4�'�l���c
��6q���`ݜ=�`O���ZuMa4��!:!5��Y�?���n��1~̣Kj�آb{���}�٢�	�!:!BiB��!A"v!: �t8�al�ج<�F��q6�~�����Q��q6���I��SXN�B����!A"	Y�%
�7,�)�
p_�2!em����y�]����5���'L!	�5������W�)C�|l7	>�#�l9y�ڦ�':'\!	�&��0�!Bj�?�Wu��'�x�g�k�~c���أ�<5W�I�gD&�HBi	��}�J9�۱�!��5��Gg��}w<���:�O.��ӪtMf�XB���S�s�i�W�W�)b����GX�O!s���I��&��!:��B�z0�c�j�bV��G��ga�E��x���tϡ4�XB}<tDA���(��}��N��(��}�!EE��'rƶ~���M�9ڻ�=Kgى��lZ�O��Y��'F�R���2��,�B�\1�)z~t���y���>�N��w�Qr[t�a����"-�:�ѝ�&�I�B""!��Q�f�Ӟ�{�'�Y_�.��R����m0�H��Nj��^~�^E1���R��0�!>��$�!:�B��B�Dw&��V��+++��E�~�bߍ)t{ܞ�g۝��?1X�>�B�E�1у?��!>�!B����&|i�d�a7�/��=��#!�%�)5!L�9�g��hf���E=��������'dF��܃Й�ktOZ^�R��-)P���Y��SHB�!:aB�Ⱦ̄�Yў��S)J]��])~��#���3�;F�ѷ��<���>L#�J[1Όgu4$DDA�D""��!��$ADDF��@��رk�B�Qg�$��� �$���X����ADDDDD""'��ނs�p�Y	|"�v�o�~�&�#�"���x.�5ș�_���dɒ�J++E\���=���&L����#%��'��r�1���|���q�
�g�6��3ξX���`Bʭ��n�(a8������nߩ���1v興�U(���(M���R�}�+,��Q���p(�p��>L�I�0A|B�|<$τaʽ����#�#l&�Q('�$	�����1ӏ�㦢����JR�E)JR�*^�R�$���s���1�3F���[W=BM�rW����%6F�?ta�)O�̎�G�!gt;�,�A_b������B�Z�S�&L����Q]�܂�1�ֳΕZ|���o�B�ΰ��i5��_�N�Ma�. �f�����I��g�4�{QO�c>Q�~�3���_s�T�o唦�D��gqR�CCZ�?�&�.d&�ٯ��W�TT^��AZ$^L�l�/T�Sʊ�џ�$d���S%X���F�GJ����S�����rH���q����V��uQ�!�W�;���ٷ�F���G(1�	�4�i���V�I!;!��Be)H/�� ����gE�!4t���_�#r(��#n�~�5����+W�:�K�,ݛqѶ��u���{��߰�r�	)�yFwa��'НW�*$ՔJ� ���K��8{hN��Fu`�)�O�P���B9Cf�ؗ�kn����{�A6�?�_��Oh��2k�צ98��n�c;�IyAo�Q�~�C��3�F�J=�}W�dM�B�Ѵ�s?i�t�8�lp{Ĵ/;��E/V~�)|�<u�ȴ�)JR���O��$��]��ق��C��^��
5�:']In5������{?ꄿՠG�N����%��Gg؎Ąr3�����'����ar_[�����b�0���ٛ�/�h�Z��ДT�x�q��.M�2�T���I1��[�@H奎^�"�(�]{�xD�z�;�s�a�.�Yw�G�����Ǧ|��';��t�����K����V1�k�IT����'�{b|~�Ư��'LL�!����6=����3���@�H�#���N1��G�R�2Z6Qm�Ԣ��r��O�c�|�Bh��ԥ��w]~�VR�ZR��(FM�R�<�'�ě�>	��A1w��5�kfT��&C�G��<�`sϑ��}R�_Q�N�;�Z�[��<��Q�?ʄL���2���o��/L���m�p�k2��ܓCqr�)AGpL�0`�S,ӎ�~̤򏒔��܌Gq��J]2g�=p|	�1����=��e�V&S�F��/���FO�5*�^:'ZFߑ�h�k�읐kSwC���)�:�ʫo�	���ؚ5�ZO}ɱV{���bЧ����
�6~F��O��65�p��xos[%�h��"�*�Ża���V�����QNJ�WBm�����0c���r	UI�SL�h�GQ�{iX�ss��%܄�^�1��0� �Q\�r�'?�o��H*�l�Cm�:�і�I.4M1�fV�
٧L�W�s��Cu�<{p�s{HM.�]'��I��	�OCf{���Ɗ��6f���Dپ�c��m�;�Q�m�ٖ&p�B	j���e�{
�t�qV
��J�b�6d]�V�{h^"I��pݙ�Y斔��	%!{�{b���6�;1+I_�$w=�Ǎv�=�(�T��e�7a��/"O�_�dF㽨���OΚ�W�T5�s�	���z��M!5Fh�d�B^F�ch����˃#n�ں"�jl"�$T]Q���Z[d�H�
Sr	�c��
W�b1;��j.��r�c^���~Lo�L���۾�{}���+��^�lʫ��ն�̶L�tA��̦��s�М�H)���辸=>� �
Q�p�Ӆ�r覗\������6�K�#��fy8��(�*\H%Icqx	�L5��z'���|qh���6Ѷ�nQ��n�8��}�]o"�����Fl۰�J�6��'ܽ��$Og��
������e���d��#��7��?��e�aƿܷ�ɱ�3Y���4�cC&��6A�_�5��,T����=4c�����`�t;��GɟplT�D��z6���g�\B5����4NE���v�Z���D�e��z�����&Qa�k�#��ӆGa9�+fmv��LJԯ��{?�+���f_�rz�"u:�B��x�D~�=C{����W���ì	B�j��ѐ��&���n1��r��"^D�_НȘ�L����9!Iy!�b�9A�	�E�,"�Cg�VP��6�JpOCeL�c���m ��Rcʿr�*�ݞ�K3%s���.�{��JQ^����8�WK[�{}����������l��љ)���.)0Ǒce�J5Wf~KHc}�O�c�v��M��58&�Y�:Z'KDq�4Ǒ�y��8�ث*��`L��D�2��-�bb�ɀ��Ī�Ay�9�,�'�v7|h��մ��Y2>ç��|�����m��I��l>�%�Y/	U
���{	;��"�!JU�HR��ȴZ�?��
��?��-���U\!:lV�O,�)?�Q���������s=ZN��ɤ�h��Q{;!���M�)��o�'*,��ؑ�L�q}��]ƍM�"R�j2!�%���������,=F�(�ܫ�
n�m�xv%9�n$с�3����ɪ��ba–�s�r'�D�^�K�K6�q<1v'�x��t��K
q��_�tm�	�=HeyЄ�XU�?��'��V|���>��M��Ĥ��Īi�������!�W|���)�&�d��6	D�tY�Jk}Ȗ�;��Or�	��G�}�F=���bB�E{�۸�=9&_�\�G����D�W�v-Ƨ;d�n�a��6x�*�g�����4v
��X�w.���X;�{��l�1�=����m�SBzϣRYg�7�S�~�#bt=8�=��_B|!/��
IϢ'b|>W�&����ޙ�:ُᏹ �a���k!�gj..�f{�p��7k�?#�	���d�F<3�Í��s�%��	i�]�M�ow2�/#�&/���B�7#ۣs"R��wd&l�
r�/�[��,l?sЕ�qf�5��5	6c�!�����p�a��fڋ<�tG�/~ǃ�$x����捅[-�ʼ>�^�_n�BP��d�d%Ƚr�2��&�Fx��r��؉:|���~��?'����}��C�ǃO�tq��A���ث���S���D �d �A{
�A��3���G�b��;h���A!iQ�x/����?q���Ȩ�FR��2�~����Z�OC�źѢG���d4���X(ae��+�
���4(���D!g��O::�DUc��	ݘV��+�hE��'������Fƅκ%(^���#[�ww�ʗ��Y[�,I(I.������JP�'|$6��/��w�F��_�7+���.�p�4c�����L��i����1GL8����-���&�/���x^m��[�yc{?�?f�OeM��\l�:FBj���Ż�o�{��,��(u,.K"�}��ޟ&�Ȧ�awJ�z2X+[�ʬ͂��6�z�n����Lb~JC&
�ѝ�n'���VmR�X��|
m�ȟ����m;܆��cxBRM�›�T�O�OKe��E���f&��2�)�v�oy��k�t]����N�� �%��G��ԝ��'���U�LN,�	�r�a�!%�vv!�+�M'V=�����.�$��{��d�s��'q���9*	�zL�D�!�%��܍�(�{��`f��x~GȈ�cov�Jڍ��eWh&w�‰�6\\&OL71�ȁ��2j{�$R)�1���n���ca��z�ؽ��n����o��q��a�t��K";�7C����&2ק�}βF��X�!{�Xn���'g'����‘�G��6i��D�R��E�_V�(�N���
|��i��ɍ���yk��G~Z7v$Ch�<|h����yew)Gд&'K��iX�6�sJqIw5�7����BxA�dz�����&]�r�������Z#�Bi�o�_S�
��|<�W��x؆��k	���N�qdByF����'��z�aE���Rd�
4����Ea�RC| ���K�diȄ��c�i��Bn\�ڂ��<�>�Ȝ��f^V�j�t��n��<��ȣ
�=��]Yzo��
bI*����&��7�nH���S����d��;���=࿿�k���D�>�;46�vkF�cq�-��&��/н_q\K}�+P�M}��n�wx<�u���%08 �1�7�2b��D���������{p}ϱ�WMn�O�CSc1򋛑eҽ�K���OL�6�)D�1�o7�&7��]̃zR�z��U�2�c��ܺ������x�
F썷9O����0�V
���M��^�7�8>�a�97i���E�!!{����n,������Ô�>J�d�+�+&�V‚��$)�+aR�9�я=��I�I��pC$�"�i�T��W�K�Gi�aWA����E�`TQ2�J_�9����c$��A�
�+/�w�1�)؏��e�K��ψm�b�t�n2)��)���x��a��|����ظ�Jl(�M?��=�߃�N��Rp��J� ��?��A"�Ҕۦt=�HXl���J��+_�Ϊ_����$C�T�bx*ٕv1��(��,�#y�+[�җ���脩+��I����d�����ozo���a�
���g��&1�L�hzaS	���;��Yb�+XY��r�8��w���	�"i�ˮ�/��e�.�vZ�����l��o�%�M'K]/Z��A��Y`��`�Xs�6��}�RB����Cܰ�6��/B�}h�0%�7��X��B2�v^�[���)�Å��b��	�Q�hρ�]>�z3[|�2��>ϱ����[}'ķB9��U6��{d~6���Є���4d&�qٿ)|	����l�um��G�R贷E
u�it��oT�kD;�v�C_,��۰���m3��$�$]x�<A��	6Ʀ���I����?wצ��3�=O�������,eNe~u�N}>�n�.M�]c)D���R�BҔ�։�R��JR�	ҽ��.L,�
3#���Twb���X��&��t)��m��&��`�� ؞��h#�c�����F-~�-�(�9?�l����er�<h�&Q.V��O�:^��it�-h�&>�-����/�B�]�a(�)-�� �t���Gb;	9C�y�!�<���\G��h|��f�Kb�	��인2N���G�^�Z}��J&R���⽌�s�a�_�2�a����P������M ʒb.C|�ކ��W��Ҷ���oa��T]E��-P�B\����E(���nq!V�{>�c;
x�<��E�~K��KK�~���p|�kL��N���F=݆ٚ��]���G�;_�'�~�y}�~�C����j�z,�ī���hο�,��%��)�ыm�c�K��	ժ��Z$A	�!>��X�b�BbTJ�Q�����[�~��=�e��D�R��R�R��
���򌞤���A)����
����D���^*������=o�=�dc}#�j�7\7Ev�p�0g��_MHHB�tB�!4�;��(lB({V�<�7o�_/�����q�J^��:\�h�]}v:e���PhM�����G���v�!��m{3���;���C�B�=������]6u�hB�-aBG�pM��b��3{#���Уe�b��<j�E/����%=��y��u1��v+�����G�j��X�HkF�5��
c�u!hY�1h�B���!5����2�"�f^���ޖR��q��f��Ɵ��=�=����U���o�4�!�����/�4z ���B�ZQp���5&v������7y���㯍6O��D��{�j�C��'��&VU>��j���+�Mp�(}���	�!ML	�	�-6(Bi�#g�<��?$C���h���3�tp?п�߯�8)��&n-�Km��_��	��z}���% ��	�	�45�Є�	tSF
E
��
z�=޵�}��W�����U�����E�^�S~�_�bQ;i�΋Z[�]o��t&!N��]��u�d��6���"y<��FaК���}��<L����A��	K�N���By&��O$���N4|�&��Eᗶ���~��B�6)z�F�Q�ӆQZB&<=������hK���
��Vg(=�E�l%짉�<�	�#�&��!��!��Gp��W(�hT~r4�������@�VY����&��큭6B�}�Q�$u1|�ۗ�����O�u������ �8gh.�h�8?y�wt�S�F��!	F�`�����#&R3�N�z��zA!,�}M�=
/�l�;"T|��|t/���2���W��ZN�N��IB	�2�/�!BD�
���l!��+Ô�C��4P��ئ���x�۳1�	�?rv�tN
B_��?J�)���[�M����B��ODjO�GA4�MaVS��5F��/��=D����dd#��S����S����Љ��I���-��~���D�;�}��q�&b�G��.�O�.��$�%�!�!O�Ј��B��<��h��ƹ�mP~��l��覉��JR���}%�W�2C2��}G��B�Y�!4_����/�|��^���N
��Q5G���K��4���Iе_��K�t�Y���Pp��e�Vw�6$��>����)j�عȩ�t�R�K�)J^���q�V�$�#o��-�c�k���r5�z8����n��m���A�����������+���n���,b�d���([�6*;̈́a|{y/��|i�G�������z�)JR��2������t�~���S�x�D�DS��KM������۸�5��=w�Ҝ3�,T��-P�K|/����M��{q��ePV�=�n���l�}���z�i�M�~�Ʀ�f|Vm�J�|����K��ߢ�0'w�:i[��W�c�۱3�����5����>��o�v*m�w��i�{##a�̢�n�����h�����ᝎ�
U��[��<�]���ҕ�{1ϲ!,-�k[m��q��~�~��c=�e!���]ʷ4���
s�K3
��L��/�^�滎�ıe)����>Y~�1�{�v��X�	�Cm> ����$gʎ
]S�s���j;e�:&c�%�W�'uT�,�aSw~��S��ie�dkv��-�8�^7����o���c��*kr�v��xq{=����]jCs�ϸre��J	m�~�ŗ�S�T�޲���8�A���y�a��AƮK2���#u֕&���͏�p�֗$���=�5���!����,��<�q*��>�J�%i]НU<h�㽳�
��繱I^w�=ǑO��F�l�����dK+��Y��i6�oDOP�Ҝ,��Uf/CԊ]R_a,���Q�
�C���Ų����]��ϑ���.�����A�7���(�ͻX�S���/���������c���tzƮ���t��B܊`eal��g3W���`���n�6l6�yi�EyrL]x^YO93�n�53��L$�]���{!�(������4}����ʷh���9�s!z�~F�Qr�O5K7�s�|���Jl��1>�9�b��m�x�~Nף�%�#O7�8/���^�n�mPBi$��Cp/��8��L����Q�`>�H'U[�x�o���]4_�g���h�3_A;��{7��X<቞վ��UR�p���$m�B�a���@�)\ʕgT�#m�<�������d5r~���ID��������[N��:��şp��ېȐ�^^���R"�N��p��QnXS-��ػ/Eǀ4��)��sI[�C< Y��Ȱ�lM����U�U}���ĂXތ��r�	?ftfy!1]�C���'�4�]U�:jB�G��#��\�j�P�[�,K�.B��0�=��6;��#�.P��9��|��>N �Խ� 曁����� UTqb�w�Iz7�'q���c�3�ڹ&�r7J2��up2�[�u�MFŠ�W�$|�og�=��X�i'Mr���S���q+�����x+�w��i�D�2��;��-؝�]�e�����F���2l�*�=�+�_)�$�E�� ���ѥd���/�r��"������1�K8�d�o��Ɠo����\�0����n�]�q�3�#��5�se9W�,m�nmq��=����	����!�X�	IkZJei��;S/F��%��G�#���D"U��j^�N�yk.}�{鰼�6^�����f���'�0��	�3�n�	��qm�i�
�n!L�uxeRF�c)3��[�rs�krmYy>K~�i�$7�/�	W>��/%��A�S2T�}���<^�Ut-��ƧI6I����D��˂0X=�c	{4=�뉾Kwn��յSQ���n�O<����k��w���n�?r�}6���G��	��I�<�s�b:^'���<%�ז9>n��g�r�~��y	���ț՟ߢ��ob�6��Xħ1'Z�3,�w8]S�=�˖!�gnH�F]�b�\��$ʯ������w���7��ayw;$dB�ࣗp��tS}�<�E+�Ђ�ys��㩾�K8r&ˣ.�V�7d6>W���czj\��>��pW�w�)P�t%�ن����XZ6ճ��o�~�2���x�W���D!��f�U��&"��r"3���2�-Cѐ��s|�e��$��B�c�}�ջ�C�[i���rcE���7$�Gw0��2Iw�>A��ϔ�-���Aq�7��#j��t�P�8�eql��b遳9�8�.�|�V,�i��r�$��
]�~vfQ;���1N�N�z�r$���f����
��5XQ�L�4F�C�;.�ĪO�����!�ﰵ���5�|��9��iabh�����q&�lţk��>�K�sb���R(��q�/B���7�}��GΗ�3u��Ih�t]F�-ؕ��Ș�R�0��lڛ�ɳ�'~�[�7)?
�|XĖ)�c%�1��s����#�swۃK-�Gme��NW�D�o�*������b�<�������ޗ��X��{�$�x������ԟ��|��[�7�2ئ=
�ˡnEe>JQ�S��)y1��W�.�y�������J��Q�w��|cϼB;�xhc:/H��"�4_}��~FK
�
�8>J,�N<��輘���u1�sb��>��h�)J"�E�/70����:H��~<�9�m�I~����m\�dm�lq��G<8D���|ݞ����e~���^�9�aC{ߐ�}�R��D�q��m9NZ����^~8T��y��c�Xk���X��+�}���H�䇶U0��x���0r&Q��.┥)rSq�j":��\*`��}��˘V��|�Å���&n½ĈH�G8ҏ��.��_���։#|8i,S`�{�M�f{���	����*�k����L��ᛤ� h\�	��7k��Y��\��^�,��_��m�)��U��0�a��ρ\����	nmW�K�����Y���B��`��]J6���f;�li�mH��C\���l5)���9�;ll�hƩ��
}D���
��ؗ��`�63`�xN�r��B�cJlC܆4\��L�)s?�n1�l m��w�F�^�	���,K��.������])Qp6���Q����hnoJ��ei��d.��;���̙���$.�Qv֕n@8AD��\!�y"�b�0���d��]����6Nq���ݶ�%�G
{6G��~ݿ���.�rU�8��,q�73��
p��8��]��"�(����k��'q��W��������Mc����I�&�^W�9��T�
rT��=	v�+��,�]�3�^*ඓ
�6���K����j�2H�lɪي��4Wg�%�}
�Bx�d`<4��)J��O�vݷ�n�M�R�F=4�.�Sƍ��`R��WEʫN4����ho�xb��Z�k3�o
j����h	�%�$pR	A(�:G0)�.�
&��&��BFy�+��<����(���m��E�n?k��.��͍�Wd�{;%�a�i���5����z�`�d���k!nۋ�>O��='�aҎl�G�&d$�{)>J�ݱ3�V�Uȧq�'�,Xc"��h���r�%k��x�C'B{������J�4:�����]��i0�qѼ�}� n�����"a?z/��$h�G��
R�/KA�؎�*��}ĎxHh$Ғ	#��6d�y��^]]��j=�Z�j�Y�	���xf�Qؑ�	O"��F1�ƴ�V.A�&���X�N����c�fge5Oيϕ;�K�,Vp����X
�S�����3���efٯ�	�$q�e�\�����<�ߏCbv�nɴ�T������p����1�X�s��pV�^��JxT�����Wo
��Ya�FHϳ-^⥫M4Vѯݡ���aI
�ȫMw��kX�,��]��r)��um�l%���jX�r�bG��7g�dY��xHZ>��	��e��51�+����&l9�5I���kɂ�ܯ&�TM��*���E������5�R��b
���� O��Z�;Z���vF
���G����BR����b�i���+�E�L�>Ѹ#�	P����O=��S>m����T��%5��pn��Ž"�B�F�a�E��UHV�﹅f���_��f�$��V�~��Of��
����0c<,�S�/tφxM�X��i	�4N�톍�n��q��i��T�Ӂ:�$B�V<!{�¾?�FZ/�R��0^��W���(�#ܰB�tp�/�5���p��aM�����k\��n��?m��n���f�ݢ��BR�何G��
�ڛ
�]���	pal����)�ɿ	�����ئg��Ȓ�����%����[�͎�Om)�av�9���>ܞl;g���[��QK��82[b~:R�k�>φRꘞҩ���P�Z��;���7c�ׁ푸��6>8��]sf7r�)"�X۫Ȁ�+O�/�m�-�#�{��c����]O���!�o��q���[��z߁2�*�7kvV�~���[�,Jj�|Vf��f{�!#B���\��d�!�*��d�/g
�s�
�sLӨ�
,��P��U�*/�����E��H�o(�O�p6�
��]��0�]Я��$l8/��K5�7/�Ēb���-��"�}�tYڎ<���\!�t�mԤ=Ӱ�Ȏ�[eܥ�fo���,Ʉ���%�Krn��ً���(��d�`�7��t&Q2�Fb�uB�j���)!1AQaq� ��0�����@��?U�>&����\�[�Ϭ:�<y��3��L�Κh`�M8��0Bi���9
I4�CBh|��M4�M.�	����&����O�4;���dt憙?f��&L�']��dfk&M�M&MZi|�;���>�V��rd�L���ØQ��j���[��\#f�2C�O��9�7ﺞ>n]���S]G ӑ�t��4�᫃�4�4WI�44�������>�M4����O�?4���i����~i��M'�?�\�d�ɓ�2i��ƚg�1��I�M3��2G'�3�4�i���}h䏋�l�@hb��G��\�'���*z/���q;�_w�E���G�t�������>&���"����a���{���q�1�u���h�1�:i�����:h�h����GGM�tfM����4tts�MѦ��=�
�D�g���rg�����$�GL�[�tg��0��L�
���G�8�s�`���d����4��2~��'Ӕ�O��]Ƕ�!�XHO<I��'��~��I?~����~�
>&��~�>��L�i�M>&�~���������M4�M?t��Nd4�L��ȟtӟ"��s�&���{h�F��'���Bs��ّ0�L��+��咜��C�&~������:h?	��hc`�>���%���;��G�G��z0��3k������0iq.�7>��M4�M4���&�������M4�ssssL��h{�L���'4�M?�{i�k���O��q�&C?>�2i�����L�g�'dɐ����p����{��.	��]2dt�d�^`�Ռ��N��1�B���b���0���������:?�?�~dɦ�i������7��\�h�4�ɧ�?2is��g��G9ѝz��/���3��1�䉑�c�?28βz�<�8�/޸n~.u�3��N9��1���|M>&�23�1�?ӟS����>D��`X!���by���Q�_|q�|M>&�M4ttttt���::~�~�t�M4��&��4t�M4~	��i�L�"|�&��r&���鑜�h�L����:c#��2h�ӟ?��7�i����i���{����p^'SX����Z�T��L��}l,>��iv�>�x�Y����@�C&	�
=�hhhhhi��hi���&��i�CO�hh�d�~2g�v��g�&��v��8���v��L�I����:������4�L�?	t����i�$�FZ��q��z�w/��چ�
�>3��c̖��cI�
0i��i���2i��M4���M4�������4��O�2|'�~|&��i�i�L�����Nσ�u�!�|g>�����4��9�Ü:�Ώ�u2~x�d��~,3�'>Q0.���qwt���O�a���ST�a��yU��
(��-���s�^���N�O~�c����4�����G#��h�$��h������r::i���?	�L�:g"d�i�>�I���BsGM3Y��4f�9��b����&}?�>>��I�Ǝ�i��y��i�4
.�~�LCQ���L�^�>Ƙ�E0�_ �o�˔��M8�?�;���~B馆����y��i��i�&�d�!�d4�����Оt'��i��	�4�i��L�q�3�?���!��s�c1��߆vj}d��/�~/�<��R�`&����
q��[�S���Ob��?��|O�?��@��~��_�[���FH���;��4�GM2c_ώ}n}d>��M444>&��i�477>f���֟�i��xӟ&M#s���i�KϚ|>��q����
?2vc!�֘\�&w���d�e��i�����a�cq����5����YO�?���>H1�����ƽ���w���G�}�G#�s�f������K�h��tt�>#����dգ��0\���|#��H�OZ]֏��q��G&G94���?��4t�O���i�1�������|�l�W�ޒ>��P8�|*U��8 �?�b�G�@��{�T�9��o�}���&�i��Ǐ�릜�����?t����i�Nh��O�?~f�	�#�M2|!2d�!�Mdӛ�c�a�G�������>�����A�s�ܣӣ�d~�?��
.�O���2��'�;�~���ʏ�FG?���cX��eh��
´�r� b?f4p"����G�&��44�i�7=�Zh�)��
72i��

9��(hi�>M4��2S&M4�!� `4�C!�U�!Ss�^�5�����;�ɯ�o�e�����vSrɾ.v�������g�f?�槭?I��c���~��z��_��I��d�~D���F~	����q����c�1���B�_(�㦒s�����#y�7�t{Ҽ)�z��L�~#�O���i��w�GGw�w�w�w�K��M?4�M4]?4���O���Nd�i��i�M1��1�0gO̞�2��A�.��0��7Aѿ�w�����y����2Yopg���_�+�at��{#Ƌ� t1Y�d��ug\u�����jo�S��LE�zK����.4�}�j
>���=�$�]����V��G�����b<_?�Aǟ"j;�L���P��`s���L��)r:i���M���4�M>	��4�#��2i�G'�9/M>r>�+֟	�#�>D˦-�O�%��p�s(=΅:vy�}�|��1���ѯ�7fW��V��us���~߃SS�馟e�T8���LQ8�Ana��>kE0�9A���o�3u:�z���7_ɩ�Y���_���7���ď�442i���

&��ri�����������M�M>Țd�%r���&�!n��8�zs��ù�!�{��y��L�f�G|L]�&e��_�u�jyq�;����Rj��#����<L��x�+�"��Q�x�̓��rl�|�G_��v��X�g.���j�O��i�Ӑz���?X��8]�ٔхfOBr�'I���-���i�3'7�?C�2i���i�3����O�?2i�O�{�O�}d't���_O�[��@��t���pO1�Ӵ�I��r#�Y":'�Sֽ�M_z�u&U�=�?n��/�_��{���$Ƌ�i��i��i��
i�߿�0A3�]D\��ȳ��,5�J�/U��>4?n�f/�Q�Z������)�e>�/��jO:��s�O�]_����w��'tΏ�{��ֳ�Sٔ;����>	���i��|�:~y�y�-�G2��;�d�[��+���O�N�0d���%��Oi3��O�����FC�S�ĝ�#++5r��p~ ���o?���}�cEC��~A��^񮨀{Hkc���,�n���������OyA�.:C��#����.r���;�~C�����w����}���o�~S#�h��#0=����Y��g_�>w~.�����������L�3��^������<3�Ͽ/�i���o�˛�ǽ���yݽ��rr�_G��y�W���|���<��_�wp��4�>򻦦����u�/��Ϳ�}X'�CCs�'�7�:���M$!|2I�{N�+�j�Ljx�c;_�#�~�5?r��~i�u���_�1P����f�.)�~��7G�wy��_�&�g��҇��CssSs���L�:?�];����}����Qs�w��i�_�
���eg58W��6q������I�=�?0�����|�Y�>	��2`�����7�7�;������ޟ��bg�������u9
��$��c�w��=�5�G�9�&!,���'ҋ���
�J�
v�z�=qrC��� �O���>�@?%1�(}��g�i���;��;��������::�����
O�c��r��4=����<!�w�o��_�^&Q�'�?�Y|_�-����$4���M����߉�3�������r�^�ȂqΔ �B jU�3,'���|�����>C
�JpDg�x�|����Y��ҕr��s�E���qޡ?�w
��k��)��*�f9n|7��`�i�"=7�P��D\�Ò!�o]u�ss�����>(y�9��}j~jk����5�%?��}kY������'��}a%M]?9&a�8�?�g��GSSs�C�c=;���N�W����������~.�%}k��.�eS��2��8��c*�F�lՎ�����
��HC�5��v���4�G��2�&����
��D�S7o�������"�>�>p�,�g��?�W�h&���Q�H���I�c/��2�tU�1�Y4�OQ2��p��jg�0ҝ>�W��p!�ߋ�0�꦳*���������u~�S�Ֆ�_2<n�����_�~/ْz�|�~��ΏmO�\��`Gѕ|G[˓y4_���|�����˹x̨y�8���_�?��d�绾���0[��/<��у��_y�+�g��2��y=���"��?������-�q��E�A���On �j2<��:-н0�be�|����{����b�v��z��Z�=U�ĞPM��#�	18A���x�g�ϼ�I��:<�f�N�u��̧`_.d�O�9-<qt�.��_	O�bk���i��d��i>@:o��u�7�
�4}o�~w.HL��g�W���߃�9��b���y��Y�'�e�:�>}�y����p)��������t�1ttt�<�>�_y�WW�w�Et>%�4����x�ǟ�aI�~d�E��HO�N���,ȕ���N�T�7�E����1GtJ��"��P��t~�}���3ƣ_�<\�4��uC�f΋���:��5�]����V(�T�̿�p�x��wSӢ����?�fGwwwO�

4�f�|d�"h����~M��)�gB�>����J:t�ޛ���(���w~P7�z�Rx	��|�ዹ�C:���Vّ�h>�? r\._�:��7<����������0��������q䩍�0P׺��s���XBbh1�����PA�g���
f����,�A�)�`��_	�xi���K��s�u�ʺ�n�ဟ��z(r���e��xo '�(�����O)Q迸�"&��va�̬Ժ\q��ŷ��O�ʗ]Ϟi���@�Σɯ��_��&�xNj�.pó�.���(}�_cӉ��"�wއ���~�W�\|-����473�[�Y
7~�~���}�>��d�����p���1
N���L�+z�'>!��<��r�xf'�<�n�q4�iү�+A	ĺxG}��H��8W����O�%���MFO��	AO�p�2=�H$�Mx��Bc�o�R�}5�Z�k������dpT�\W~+�#�8i�.��>��D�?�ϵ�<�_N~����w=��̜z����F�Ͻ�f� �~��<:��ѽ�f
�2~h�`�t���(#�A�c�B�5����dQS��ܰǴ��B_F�s�ez�!���(�"qݝ㩩��||/�����O�
��Ͽ�d�<0B�g�`9�d�p���՜2N�'ަ��Y�_��׎l��k,�8�#���N"R����I�� �|?�p_���p�X<�&�����G'�`�M>0��u�W��?�o	>�?���;�Q�"�Έ������t�)s���F�������_��6|>�5^��7AC������2׿�K�~�nS��p5w{�eo���?��̲�{���?�J���&r�ry�����'��!;�6�	q����ƃ��|����S�=x8])��y�.�5����3Ł|-2�Q��M.�n�	���phC׃@�)��^��:���SL��1�`���x�O����5��f���rL�s�p}�_9W|j�&��_�a	ܼ?�L.\���e��n&����Bw�����K���GF�.-e�О��	sG�������GK��ч@�s}h9S���|љ>*����3�u���}8}��Ӝ�{!����ܳ���a�3���P�����f
���	�}���~�0s�������Oz5���3*��t��u�%�{�2�0u�9r��a�݇���҇_�e=(�R>�G<��o=�Ч�J׏7��/�!�*W�|��ί�j\�X~c���Hľ�&�5�;�TԮ���d!؞pJ����H�Q2`a�2e3���.��l��O�'��&�o��A�w�k�;4fO�sO#��W���R� y�=�/*��_9��/�~��o�/�~\��`a��Wɓ�n�@74*'qz(��Mŗm��,{~�΢}�7��>�y��z���s����\
]
�e�3�?N�N������󹌠���,��L7]�\�`v�1,�	��<hd4��Ba���|�ȝr_+�����O���s��N�������^�;_�-T9Ũ��Ǫ��ǽᆵ��w˜�ys��� ?�˒��|;~��wɎ�������IqO3r�6��R�\�8�Lz�є ��fg鿠�χߌw��y�}��@2��Ϸ�e���(�Y̷��q�	�tP5�b�`��������"��p���p�:��
�ۇ���U�<�$7:p�g�㺤]g��~����:âj�ee�'�'D�h>��eN�{Oy0��sJn*_����ȹK�K��3�	��q_]�
N�%��h��Px�>��{��*?���y[�[��T���]����K����<�r�����^i�\��N.K��?3�䩻,�0h-�2�_x_#&�4��^���й'��5���a��;��?�V_h�u̯$㡟������=�����Z3����Ч�7�c�W�k�OT�?Fȡ����ټ~�4G�_ǃe���ʦ�a:�[���Ǔr��S&��������ɾr5qQf�Pt�L���I��~�Î����]��4x���������$��Tp���HsC�ucNS�O:/8�A&�p����V	������D��w!燎 Ԫyz��X%Q}�$���>�#�כ�9�OZ�����p�On��J��ί�CC�4�09@|�ֺ����e��镟r��s`[��?����GÓGG&GM�"dfM2�$��9�;�����
�'�a��U�oL�s~�# V��wR����d̼?c�'���)k��be_p�1"����
�E�W�:���ۼQ{�g�u�iڔʔ��d�@kk�����pA0�~�Ο�Ц��OF/�VL���:#�dV�tܧ���4��(�9���,�=j{�hG'C�2�7
��T�ˊX��9�QNH�IՑ�����|�L�=p��gt�p�7�L?�+�d
��5�}�Ӎ�@���~�����:ֿ�t������7��{=e�<��h򙉐��R��A&�{:��Oc+�Ծ�_���?��S�G��
ϯ���)�E��MR((�P���DPQ0�����W�s�{���\w�J���g��ʉ��:d4�i� d>���kÃ'�𧄶�;�g���y�a��L�qm<��B�q��sO�d'j�ܟ�-C��7Y�{\�9�����ą&o�te8�2�����e}Oݺ�jd�P
���O�[�Xx�y�r���sN#'�^���ے��X;Ȭ�y�|C��z�|kX+���M�瓸C1L{�x�A�'��_���w!����ɍXj	��/�(�3,d�'0�)Q��(���:�o���^�'�?ۑ��į��Q�a��=<�w�SF�
2G�t��x���rv:2P�{ĀAڰa?�N��{��pi��A�7>�zM�2b5�F��rA~����ծ��)/��^���o�Ϗ��9T�9��w��4~9��3�[��w�fd��n���H��-�nHd�y4r^��Vs�g�~��c#�C0�������$U��K�1:\�&�i��`-!�
�Q���끓/NC��7�OwOܠ
��X�>���{8'��=8�g?��<kq��g�O�xi�	|xCۙ�d�:{w,��=9죘mݵb�������� X_���Nw�_�9'�}�_����h�W�㊽�2�T0=>🤘�?b�-*zs��]R}��)"��9�r;���J~����3ZA����t>
X��������<:>m���
R�a�S��"3��ܤ��mt�2|&Z=}t��Z�d�5��(E���N���PR!��z�p�������2zM�������wO�W'��5c�'���G�'�g&�y��9-�5�-y�M#^��#�-ʕ�[���a�����"_#���#�����)o2�Z��蛼Ɋx��˸�<��ѯ�8~�X�|�<~���	�E̽�Y�~�\�z����M��9~&G�t� `J��)��.B������j닗�ן���9my¿Y�j_g�$�|��Gs�ܩș�2��`��.$<�/|�HW��\�9~�9����ϼ���}ax��`dD�Z?�������Λ�*K��kL��2������,՗��s�br�����"����?t�:Fď֚���h���N�}.;�N�Ƀ��e��5"��PֺЅ��!��ː���s ��;�NX��<�D��P�NB�
�ٔ}m�iz���H�o�G�<���B�_���)B'�sE<3Bi�<���G �9����_��X�h{n�a)3B�OnWs��d/��f
�7��9>7� `�ܸ���x���ǬC�%)��	��U�x�j�����"~�l������~<���L�~8�G��x���y'���_����ےL>�2��Ǽ��������'0��z�|FTa����98[q�pR�0�y�Q��AE%�wQ��QS﩮�Rbd�wK�/1�%�F�|\�x
X!pyX/�qW"�.D�?�/�9��`�d{o2�Z�W�q�CNc��L�8d�A��XA���d��)��&$ω�5�&o��9���W�m�%��aC����1ri��	�x`G��R�~�JR��� x�)�̟F���?�R^������Ǵ��5|����������}>��	�z�rF���z�%�O��_HO3����ܲ����G!��p��H�D�U��k>�9���ǜ$��r%��	q�jJ/b��Z���W<ʅW�_P)̛�%��u//ۂ����U�����[e<W�'n ��
���UGlJ��ѳ�!/�kAX�/3x�5���@��������G;'������`<��j6#�0`�xL…�w�|�]}�|��ơ�m�4�}y���Jn�r�B�	y��谁��S�7%*�px\7�I��h��:�rWY�y�C��>��L�i�����ܔ�t�n�p�*�����N�M0#T|sـz��K4h���VW�L�f!}.9Q����.�2�g�[�'��d�`[\�MNo�/��I��b�y�O����9�#?�wW���?f��O�����/���Ǥ��$�7Li�GyY�E��0S=3#�;��${��<�;ܕ���pRxs��J����ട�那��e��C$#�	�T.h,#Dl�^���i(>�O#�E)�ctDZT���k���i����WX�K�C�6�±����|�.$��Ɏ�Q�&���{NOь^?s�3%E���TW��XS�/�
���/�Ϸ���Iֈy����rQ��]Q����y��
>���(��_�A>�&5�x|���F�C�n�����fz����
{��8>���s���q>�s�xK����h_���np}<�׊'ٔ��*�%�[�#O׳U?3@Ӹ�B�}>L��ͺ�6�]�����8&<d�����ry�co�U��G����*@����^g���<C��r>Lh����47n�ό���O&�ߎ���M���=�}�`|�Kܜ����Ȟ�^�V��.��$�[1󄰹�A��z�2����@����A��|.9��@�(�<w1zň�޿<�Q��<.(
jK!�s���M`���՝Z�sB������[4u�`2?i�q�fJ5U�X�g����O��PBE(nã��xCٙOřPTb����$��q�C-���7�3����p3�Eս�Aɥ4$�&�*�&T���p�C�9��DF�d�Ģ��>�->̛}�M���#9���t�G��1�s^�%WN=Ӭ���C�\!��,�~�$pѼ��ܳ�|-�7���D��穞�Ļ���
u2Zc����_<з{�ɹ;����/w�_8r"<j�ς\��8'�44�1S�՝�4J}td!���j�G�~�,S��Ԅ����¡������u_�{�o;t���-~���c����٦C S!�ɇ߬�^�Q!��4y�ӣ<�(//^V"���롘�q���P�=�ri�/�u�= ne�8���wc�8@ֲ3�*t���
r�H
ˈ�����<\���p����Z������
!q�1È��0}-U��McG���f=g�Eg�/�4}�J��xa��[�p�x�������ƫ��=���88�&a������G���t`�S�1�N�(���3��{�A����Npj��>L��yPW6�D���!��O8P��DW%)�YX�Ώ�*�_k^p���hW���4 �2��z4�ﻨ��%�{y0��|GL'ɦtʞ;�s���f�a���G���`���������7\����ywO����>�)��jg��
�26s;�xfw���10G�g=��d����i�B��n���?�M:G�5}���������g�����co����-��dB)č/�O��AϹ�WG�8��UL���<�C:��wLi�Θi���Z���cB�:�q 3��w��m�5��[	��^p.3����9�q�ɲ�$��+C=���:�H�5�Y�g	�f+`H5��i�w嬎ZaL�������aFV�c�х�,`��n����TH�X)G�S�YÆs������S�p�� �O-D��q�>���=&Gl{���Q��B(N��N����檄u�y7X+���܄��a�����r�αo����kSQ
eW��CH���(��e��y�9�bK�y/��ȩ���*�Of�O?�C�t����bU.��p�$ps����α�x�̯��7;ӽ���ǎ?���> �~�Ns#��'zdSC��c�SG�T�2�j��{>�R��ɨ8�`oc���9?J_��_^l�_�,���Y��
���Dy�{,A��u���̕�A|U�Tb)"*�ƃ�P�
��E��0}�vS�C'�ˆ�m�oq�"
��w=���N@~�Zn�8��7`�Q�o�+G
],	��\�R%�	FJ���f�L%G��>rQ2�����3�A��l���D_�_���=�Z��\DV��f���DXj�d��0�?r�d\ʷ�Խ�t�I1$�̔�Ӕz�R��ʚ���q��#ﮢ�9Y�
J�oL�>�O�s�,w{xW���.P�=�.�p�h�I�Ӕ�t��cO�	�W��2�7��H����v]���.�/�K�>jd��=��iP/�^��P:��e�H����?��4\����d�O���+�K���F���p�z��^h|�q��i��C���/Ñz�L���*��"�GSW�/_^܇t4=}��3��f���[uy��˳����LH~�l��7�����U/�f,��K�9�c����`�
<��h8/�7%!N}�}�Կ� �^���g�x�d��a��/B�m]���T8�x��Ǫ����AY�@b�q"��N����տQեU��`��c��}fJ�}��鈾�a��߬�Jn���{�Yfj��y���Q
a�'��L"j�.C�c���K�.\����E�Jɪ�1;5��GٖL�x�����pEˠ3){�/>���Ӄ�'��}h����Y蘯�
Q�y����w��ԗ�=��1�}�Κ�<�0���@�)��:��<�|��_�?�>
>�&�O�Z=o?n>��K���4|�gp�OZO�G]S\�*󹮏��9�ɦ��B���<�T
xS��|Z������c�
�����s�J��1�������m�y�T��YoI��K�=�Q��r�ɤƃK�<b@��\>R>��vT�<�<<quֳ�����0�O�D���H�o,<�18_?l�t���;Mά=v;���<����p�xl^nȈ���<���'�
x�3���X8=L)���������=<��y�,w���?s7xwä믫�Ó���<�
ԧy��CJu#�<:.��������ڙJ�$Q9nW���ՙR}�<�~� >�:�����i��z*k9K�*�Y�b���;Y�38x���p=�c�5�è����R%0��;�ހ��x!���.��Я�\~��Sr�ۍ�~���
Z��jbE�}~���d�L�-ך[�{�
�	��7r>u��ۙ������>)�h�twM���9�ގ�xѷe4_�X�ٔ{��������J��&]��%jN��B�"=��:LY��n^����߮[��Ч��C=��������Mz�]ە�=�� ftSOg��Yy�gC)���ɳ��ҁ�Ë�Z���� ߊ8��I9<�ŀ7�����.{+���G�D�W�����\߰z4h�Bm�kq�/A�*�ʕ��8�^˓
����I�d ?)��s�DP�Y�0���/�}��ǭ�$d@����/0Žy3z��S#+޳֮����r��S���ǚ�T����,ħ�BdU2SU����;��kZGτ�@}�_Zh#h�?7S4YXִ>�ϯ>���O8�0����[0�~D.�-+��kG��P���kr��ǧ�>t��o���>~
�4p���'�G�t����M_3�+����4>���O��[���NezOB�}�3쟚?�uqol�s�$�1������$��%Iz���B}O��yo6�8�L4�|њ���o8�c�~�1��iN�X�Q�ٓ
����M����q'�W�]�j����a��<�х�
I+�I�#@[?wZ�$�95@9H����
����N�oN/�rڜҮ�m��\�z�6?Yu���B���"��;�xet~I��+���]�k�˕���mM�s���a�u���yt���@��{���Ly-����BO߲}x��N?LyC؃�w|���y��%+�w'�<�U0Pk|i��o^O>��w0�@�
�����_߬"#f5�"��9p�dOM6H��~���dLD֜�/���� 伓)S�w�b+�֦g�O�����4�=�N|}�nP~�_�v��_�W��Z�Tڍ�x@uR�O,�>�%S}̚�1�:|�Ll�e���;\D5Z	��rsD�^z���ԏ�]�{�TҩW��(�K70B�0�Ч�f�B�/��F:���1.j�E�2�ȋ�-{�D+�=��Y�\�R����*W��w��1G�ۭ��vo&:�\6����g�Jk�f��?2�+�x�r�fM��;��|�2�>[��	�����@�kj��ys������\W�ê?G���B%p7���������=GF��L��a�~/)��X��(a��)��r�o/S	�FVy�r������?�Ms�(���/�G�h7������<?S�<��������ϙɒh|"��^�+�A:2�k�4�w��}��!��.��?�����WK�R��k*
��'#�<n���n�:~`G�p�5��fBG� �[�d��{������P�G���$��X"��1����Y���ď<��A��h������U�j|!~�y2F"�l^��=.\#������s�{n��)�����ծ�G�̱�m��/��0�\q�k��0�4y�k�W����K�s���4f�4�ߎR��jz޾C���|	ָ䛅p���N�����/�p��ێ~خ���3��y��y��?���|.�zkRy{�Y|�3�S:S̾70˗J��7��j{���W}A�Zd�x53��eœ��?XE�e�rq���9��~z��9��|a����rE�ڸNC1�
xh ��t��~��i�w{�������S�����O�������7?�����d�������[��?���ff�:z|I�l(����jx�ӹ9� �L��*o��I�8�F
<��[�@<d��,s&�>�N p��E��r�i!�o�C�Gw
߲eс9�00���O�#��˥F��Z�I��G�Z�9�]cMYW^���XS0}�W�gL�\�:��ø��>�f�d�19̍��7~��q�SY/3����q>�'����HZ�j�v?Ѣ����m�y�S���3��N��fd+�2�y����\���� �r�\�|����t�(?wO2�u��'l#������%2���1�o�'ϼ���*�'l����aC��?������&�Q�7�����h�x5���9�;�@���}�<仼�_/��7&�}��D���%vx{���8-C����G�%��A7'[�����'߼�N=1�2�b���'!5�u`��tMa�}��}��>9���w��N�z�ư�����,���������pם�G��e�jE�7���Uc��AU|���'�JFu.���i��W�P4�������v,�y�����a���O[��H-)`�������������8�ֺ�G�S+d�M��h�_����S[�E}/7,��#���7Bp����zO��yw��~r�ez�~��
P?�pOC�˂�`Zi3S'<ir7�G�L��dȎ�Bd�<e�����/r����1�*z����c��5�M|b�8�3E0�,1]1�!{���������d+�nt���Y�;���=1�\9��OޑҺ�p>ٺ����p����UK���✲8E%ʹ|���8����eb��/r�^l��ֲd@_D�n)�CH���=�ω�3���(�9"y1�N<�w/�*����֨4G�x9��	eL����)�u�]L&�o��X��^G��4�Y7����w��
�Ї�yq���p����u|]�Ƅ���}�?F[8#G�$����C'�4�������^��h�rd�!�<����9��fpm���>t<a^9I���S��2�{����l5������j���)�\^<?�6j�a�>�|�`�L�=5�ӎ7W
榭�W.qԾ1�_�����	��Ӝ�+���=�h�f���N
�,�)�>Τ��7~:fr�׫�SA�e�C��n 7'� ��l��!s���z׊�KG��^�\�jyH� ��ș[��/s��PDŽ��G����?�|�xV�����U�N_��B�`�B- k��O.Aǝm]�_�w�\�����9?��2�^�>Ps���8�>� ��>PN�
7+t2sd�s��@��&?Ro�o4�r�����x{�b��6�@�4}�,�x^�ӆ$�>:���Vc���[�A�/�$�t�3���+��=Y ��3\W/���?rj�:�u|]�w�;q^�ܨ�<\	㿸�1
��o3�T.&
�v(�i�_��y�5J��/�(%�g$`'�����3Ř�3=I�ᔞr�6��$'��f��^���,���o`Q�
�l^�{ȭc�|:��ߝ��+�"�wDj�=��ل�u���:���T�2=�F�@Ƥ�������|�$�*�m
���󌢫��<������ά�y_��x����ɰ��⼳����d�;�J�Bxm��w����Qy�QI{o��p��y������O��~_�g!4_�����I�M/���ز)���Q����|�S�E��>w�8��#���}�,�n��O��9~&
=��V����ˁѪ�����lΡ��*����G��	)����gQ��ʵ� :.�T�?��u9\���w3�^s^���X�ܾ��J�Q���q�t�Z����ܾ�0�_I�A@}2dW�_z��5�H�&�ِyfoE�u�)�����2fx���^��>p�p���Z^���[�@������-���ç��ڼ�}���<7���?�+U��������'���k'�� ��{V?�sK����H|��Sz��7K�����{|�܋��dr?�ˬeƅ��W��(F �~h����Nhog&�����%#�c[�XwQ9�8��
��{�n<�����&w,���Y�=ۘz��Z�L��K�?w�pȵ^�Eo��Yd��,�]�u���:�xf'���'A�2��s�*��=܁9���_9X��^�/o���<�Ts۬����Ӟr ��Ott/<���n^s�W�5�֯_f���ܠn��+�W�e)�U��9��&�e�S�=s�4(�|fw)�����G5Fq����}��q�i�	s���B�?Og�=���y}�G��~�裓�}���Noҧ�Wy�ݓ~8��d�_NE#����%H�~�O���z�er���G-�W>�G����0���uٿGr��?4�����/��})0��.�_��x���]s`}yp�@��k�@��d��g����{�x5+r����W�|��K���F>u,NJ��'����w}D�r���y�CƧ˫�g�h��(ԧ2�7���}��`D���}��dy9XH��'MTe���ִ��P֔yfT	��z�%��[z���������0���=�������?��_P��b#�?�i��?L���|'����I�@�B��w.I�����-.NJW"G��S�i�~��Ǯaγr�.���rn,��<3!��x>�~��?�.D3������,O����a�ƀ�3%j��3�MhV;���S�X!p�f��-]hd��=���`��<��>R�O��b�]�ΠSX���Z��{̯������MG��z�?mO[���s��/�S˧���r���p&�:�9�r��v��Wy�W���%z�*d*�.7�)�@Z'�qL8���Lr�O��|#���_�O��_~O��?��3��O�,Ҩ׹:�(�[�����o�y�y���8�9�D+���p1�����ߌ����,)��u������2��N&��d8[���N\��L����u>���7Vۑu;�Ȍ��;��_�.|�)�˹<f�e/]8�tB�O&���\��F�!��}�O���7��8����C������Ǜ��Q�n�:ׁGU��+�<��[���L�+��)�-�u�"-͉�^���R�E�|eY\)#�Yך��u�|W��}�P<x�f�լ>\�3�޹Ո(�}��w�w����2dϱ�<�BVҸ'Ba��Þ"��}�擗����5���K��q��>�p�w��pt��R�YE�e��w��=��:�w��礼�G���#+�:�p��J_�>\��m���}�Y��D�l�p5��?4����v�����A;��RaJ�)�]W!�ȫ�y�,��u�2O����se,��g�<WZ������C�v�@��dr��FP���G�A����-����׎:���s"�����Y���1�Ď�[1��Ӽe���D�?�hf��̣�<<?�s�>���ܚ� �8o�/��<0�|�~�M&��I�s�����~'U��7O�s�#�s^oku�ec�Jxq:���z�%!�h�����.���ӽ�H��r�8�}��#E�t����D1f���o5
4�x��=���i�t�2WQ.H����$��0|���Y��ot剼8w�Gzώ�=�1"$OۧY���nk��H��H��t��Ω���\e��ҿ���!�_��_3*��<�_X@3ɻk��p���6)�3��O�1-��G6�C��Lc��q���u~%���x�G-�>���A%�|&�r�9��m��s���5�E0�Y��^L���'�2�6�oS8���c�	����9�W>0t�����jz3���,�U�i�B��ڹOY���諌��]G��r�-u���_�A��c�:��ƿ��>�o/3կ{���0��w�3��/�����f��+/ц�c���.����<wZP��M��_���q�v\�<���ӕ�rk�����s2S�W�t<]k	_O2�]���#�r0���8]�_/��:��B�.	����B�6��}O��X}�I�F1��#�*P��Y�^�cu��ƎOx���Sc�9}�)Ј���׼��r�\��r��M�_�z��*��<�ɉ�˙�e<�aΌ2�v��ƺL�1��C�o�r�/�l�#>���H~��᯷�6����v����c��ߊ�n�Y}.�,���?�P�_�&?-�|ۻ��ɜÐ>�����ɞ�sN~5��{g�e~�>W9y jS����)�3�]��KT��_!��scz��!�Og�f��xr
���	3�twxŎP�NS���
�2�}2'��w�����9ܝr�"��d���dľ�<ү{���D�x������΀��!�jYg��4��K��S���c�?��oM_�c�i1�S��ˮ[��Ý`�o��7]'�ܥ�t�¸ɔ<�g7�?C�_[��$��T�˝@x�=`x�&�02K5'Lr�	�y��t����c��P��i�Q�X��&�����4�`�M	���?���"x��ʶw$#��?��s�3G�Cn��ޭ�D;����I�`9=��h9&a�~��9�r�Q���'	���>4!]bB��[�D�'N�0o|�~axU�M�'^��x_x?LӖv��]�{��"�52I
a�׃�F���)Լ�n8}}�b��p�9�+�֯Ŧ��>'?��nlF���Ї������}4�O����{�!����NsK���<i�|W�Su̹��s�5�����bc:CO�)Mjy�-�?������K�	����L��\�Y9G�o���߼��}s)�Ϯ�
w3�w��:�X{s�ڙ3cY ���[�4��L���w.�RQ=>��+���c�^L�Lo%?5!	}L���ے7Ǜ����K�D���j���*G�C�!!�,�b�G���<Z��S ��a<a�:�	pg�W��]�u�s�ø'�t}���x���2'1C9��r�0��M[5}�b8D��4�zf�'/:�zf��0ήe�s��&p�_������榹u5�_�d����GG&M
�q�n
?���_�'�DU0=aʗ��#��iCN�/2�Z|aތ�������4��?���,���&�?�Yt�ؽ������%�>�icK��B[��#G�"����9Qi�=a�k��<|���"���~.�>.�癞���D��}�"�<?Z����ȋy3�s���\�7����0w�/ǿnҾ�*�9
����:�����Вnx���G3�����y�/�M]]\������~�ϋ��\���w]s��$���2n[�=L�&�h^���GO��	Biْrd7�o&_���%�,rp�����/���
�Bøn��M/[��`��PC���T�_�O��Y�	��]{.c�=τ��K�3�9mQ�a@���|���������z��-���r��.�4g��K�#�Iٓ���<�ɤ�
�{�+-���~/|����_��2���_	?s�>.���⧯��ܤ˩�qt����p�[�0���ug�{�w���4��~(sW���p�������"c��%��=�ѕ^��N�3��Lc�S�s�(k�8��4ó��2͜ݙ���9�$��wSS.���;��X���~�G.MMM5&�~jz�ǎ�:��e
��&|��(<�A�t������9ԫN���\�W�ϏZ��uP�R�_X�>��y�����9��d*/�7�����~~/����q`9����L1�(�O����nj��0pi�~�&�5�����2'�ft2M9�]]~+2���ua��
�W]\�������=ۖ{��_�
ẚv���s���G(\�^1���Zk'u]P�a���t/���o��:J�_g�}��"��Ϭᡡ�p��;^���|G4�?‘ǚ�t��S�|=� y�1%ƾ����GE�<'�C�r+�p�/�5����ό�\����2d��ʚR��2�˅2�穬]w9/n�<g/�î����i�������.wY�4�\/��Xeü{�w���Kٔ����t�wy����9C�~+�p�Õ��._SVot>$į��U���X�ˬN�1Z���c�grc1�͡x����~��0�ן��/�9���	�
�n����� 8'���i�{�;s<���}�4�a�#����J�_ˇ�7����'�i���3+�܎WӪ{�T�Q�Q���I���cɘ���jMs~
���!�e�뺁uS+<�
V��	n��ՙyu'�)55�˞2���w�����s<�R󡓜ݪ�5��WI����r�g��e6�߬�^����x�@�_ސ�y��.��R�=~�í��>ߝo����t��w<H�o�#%��l%��aג��L�2�p�HG��n��)��2Ox���?���+������-g2��_>�ەfO����ؙ��3Z�e{�aek��Z��
W]O���?����{Ӝ�6e��^}��^��F��]��2�C.���+e��K�<s�y�����s��*�h/~��?��k�s¯�}�$@��������(�^3��b�
ϣ�~x_���^����\��øT[��4�
x���~�s��L��n+�����Ț�nLjc���}�p*�w��}ɩ<�u��0�	�H��_�#����S1��_�3�_uw��~qNGkǭ�!�,�O����j1C��ጧ�JǾ�w�-��<gꏾ�����_9�M���x<5|��[�]o���nSQ��y�T�x{�_z�Ѹ�w��x�+:|�\1����Z�l�8s�����"\��x����O�ƭ�u=n���2��I�`8u�i��ۥ@��uq�w|�h�H�0��/��|�~�s0$KJ/��A�k��e�]-�sq�ۇ�J3��?9�"�ނ���]r�Y�R.E���Ȫ����P=+�.�2|L��几�㯞�#+�M�8��>#G��.M�a�U���h�� �>Ο�q��
 ZI"}��.�����g�'�&�x�����߁�S�H_ٙ�%�����q�{��g�#e�{�T���l@���<���i�^��G��}��~�z~���� ��grƶR%�o>��P?Z
@����;}dÈB	�eh������?��Â�8�A��d��_�Ez����R^�Yt���9R�C�1B1���@T���/ԅ��0k�F�@y8��5���b�?Y�PT�tr�$uR��2y�����P���_��~���]�_������HN!}��5���1R_�Zn�5��7 ���U��?>\9���>.אg�!�|�c�q}==�0��H<�=��(g��=摄�<��Ӎ�q}xE?�:���v�L�!��E���u(��Ş|}�[�3�q�jgÙv��}���z�^��'�t��L��ɾ��pah�
x��4׋�([��|�@U\��a���R�*4��������_�7����y�y_pw>�g3���|�ГK
7}&+��Ac����gC}���Z,����޸�F0�0���+����ӗu૯����TS�~rߝP��5b�s�濆7����i�n�H>�C�0�b�:��p�۽9G��,rޓ�p��5��xص<�����?2�$"�y_�~�?/�}g��d?�@g,a�6���A��96�eg�ÀE	��1�!�w�>K�g����^��0�%V^���ŕ��1w�b��*t7d��Ғҧ���g�s��r���,^���5u�I���՗c��!��V�>?�J%�>���5H�r��T�0��)0:K�`�1�a��>�Ĝ�␷��+%XI�H�˶�U��D[��Қ��3R~y�>����r�W�}a���=��ɱh O']��*�l�S�s�hʺ2S���?�H�%���0V��b����~���g����<�F��oD~Qۏ�����q��)+��̸9�������Տ�|��ύ;+΃���W���3�{��������n��E�ۇ��c�N/�˻ήu���{�e��,�3r�^c�9�OG��攸��0�@%p_�if�d~��}a�`�
�_�����oBKwm��ƿk��|F�W���K�>�޸o��5�[��i��y�kHN�k����O����E%�#�
/��0�6�z!<&5�!*~L^-B���h�5�3�?�e>����p���9S�KJ���4��R����r�Iھ��&i	�|~���[��ŏ������u�"��Ԝ���=�̿��шC��>�$����kcV\�x�=g����;<�yP��8г٧��H���	���j#����n}S3���4��]���}AOv�����?������4V\�t#�Ů��ˮ���s4U!����<10�����˥q��z���,��L��񍛈��ϧ�fA�C��&[�����3�8t�\���vL[��LAk}x��P��"x�H���D�&;�Aon5J�u���	�yn���,�[,�\���w�@�
2Ou�@�&dP*�
��fG�0�g@�������y��@�΂�㿠5ãbP��z�B�2�����WVn��b4���=�^��H��>� U�`ێQ߸jj��$�i�{��}~g�+}��i�Z�E^3羥�C��w��`�Cs(�3���
~-sL������	��@D�s��a RW�#sA!��yK5P
q���9���� �pO�ԟ�pxC���Š�?�)�P���>����t̔N�3�V��wo���N&��#��Hj3�o�<j��a��d��!�����o�1������%ɇ~�d�'c��3vW�aS=><~�t�������7�#�����Lc ��}�W��A.��1@��d��o�G��s�����i�S*Ȣ �hR�[�|�^�d��/�� b�L��%�a�2��\+�꘣P<�指�����GG����@�bQ��=4M���#������ܷKc��](�(���J��ܩ�_�y��E$	���o�� �8C�=ђ>w�]d�Ow�N8����p��U �=�jR?zF���Ւa���h}g��_�{{�|�ܮ�o�;���EK�����2�~���w��|�;�>r���0݌��7����������'���p�s�sf��;���C*e��Ijg�8~�	�����0����(�;��'550�޾U�>K���m1��x������&Z�PW���.?��L��O�pP9
4=��p�]�2)�����R�R��_�fĊ�|��~�g��W	��K���|J@��e��B���ߌ�&Ar™�x?5G���U'�y��$�P/��xװ��e��Oy�A����l�sw�f׫�,���U+뺯�>��>i�����T�9�����'���Zƍ��*r�ًR���jd�U��+�Q��L�4�����#��C������{5��3����<����I&��5�x�]G�\?�eB�)���.�%&���~�������;����ݯI�IԶ>�M��6�f4Q*:�N�=X�}�}}�T��7%R��w/�d8}sV��_^�n�WSz�Er��	�,N�����_-���ys�9����?e���5ѡ���aႢ�>�����4b�AW	��ܨg����2G��f��A��AX���b%����U;����>��8�x�DI����)�jnjO�jY����Ԝ��](h�2��3�(cy�|A�q��ܻA�D۞��X
6W�z�"	=k�s�l�;��S��"[���P"�������
^�(o�ț�����-�N�����:a�y�����0�>��$�ʠ���X$
���2��<�ᅞƬ��H5��{X���i�y�r;;9��	N��w���Z�}��ф��,�p�L�-�Ab�<��ʕ;]�Lx�ǐ!�nl]JW�a���alB��/�y�[��~D�������G�1�:�E��18�J��"+@�^��G�>�O���ITo�/Mr���z�D;��槧\�j�G�f�Ľ?u�!i	~)��k֜�����j���3x?�X�HA�@*�ύn�l��W��x:��55P�kB���{��3�	��y�U�.\���[��u��p
1��F^�X�w+fH�a�T2��ۗ��|�������v���f���U ��w]K�|XxO��sv�t���tP��0y�U������WE��]�G��q+��A2�'��r_��q�D>���S��N�K�u��
����D*��}f��׿��_02c��0���S�}x��|����G#}��=�^�������� s���(�V?��~�|�}��c�Ou�юD��}���q�q���e=u`>nr�D�=f�m�M�qN�;"G�����{������{3��T�sLXYL5�@H�����o��=��Q/�E�e�"�~�ކ��$��9�10�X��d�ab;���
k��G�]�M�F)��ž̠�L�����-���nqm���[+�q�s�bX?�:���)L,�>�T!�4��X^���B��J��O�юz��n�쟦\�<���W�b�8���.̏֏�H�<'�ܓ�o.YӮ�/5�ټ�ۀ)���bS��몃����q(|<��/�פ?0Ԏ����c��q��0�Xk���F�
9�J��x�]o�9��.1���&����韫]��r]�WØ��.�9`P��g�0�hH��P���hW�5���bI�8]�/ꋦ��5��5l�~ë��$,����MD�{Ͼ{\�nGy��}o�q�Ǽ��\r��!���XL�
.o�j
[�뀝�<��=��P�tr����\_Į8<�}h��RU|&�3��_E��Z���D��5P�4�٢�zA{�k5�*?
`"́%���)z��i^��Q���h?�C�>A�3BSzF}��X�f�e7^��I�øc�c��$"Y�)6����=�)h��+GD�07�Bt(�\��T����q}Cy��8j��{��;��}�i��}�y�Nb�P��	��~�j@?�����7���k�,+��y�'���jF;�d��\{_FI���C㿹R�ϱ�K�YU��\��3�ǃ~�
�|-�q��,��G+��7�?χ]y�\\ͼ����D�]ވ+���o�^F�~��!f-�d���8���s��n�Íহ|z��k.�C%p�?���ʻnd�R�х^V*�'��ΐ'�9å�}��.���$]�B�E4�+]g���l'����XaU��m��T���z���"�O�P���:?�ĸ�v:�9f�9���Z�8}C�����`ޤ�@�����"4&_��.r*��������y-V���%HW�;�沉 /�Ā���&����[˄X�J�!��ǩ&;�7�nW@󸿼�<�����I"�����0�d3�n3�`�󼪀�����J{�3�2��ᗨ��-'r��&��j�ΰ�Ix
SB�����W���rx_�b
��<L(��\��(Atax�\�5o��Ч�>�������yC�`u\��_O�Z�zLdAm�EX�=u��P��E5���n�ǚ�P�ZL��)I)�ʍ��?�|��|yǏ�%�a�.Q����0� �Ѩ���w =3���G��ى��˞�ט}/�K�V輫�Vw���9?�@��\����1��m�8,����e��jS�2�^��1S���4eSi_W�}��(����^0	���~��U����R-@�ޒ�M\n���Y�g����G�2$59V�DO���B��]�}��m��28���֙�ӷ��j�z�}`t��ǻ�3�R<�3�Wb���/��kӓ(=�B���F]���vHX1?.:B:kŅ�|�.B��u�����k�ɴQuk\�+�Yqܘ�p����:��A"{p�$%^�#:�_�9�H���k����g����Y�g�t��=�]Sj�z5d^k�x���|�tO8�l/�k���Wo��1ou&G�2Cş���T��z�/���"!�,��:�#6Y�+����NwğK��y���K�1eP�<����ɝz/S��t 6ʈ���<|�~&�&k�ʱ-�gd<k����Bo��;�|C��>���
�!�E�&�Jl}�{�J��+�Ny�~11�O_�z���W���fw�~��N�(?^h���g	�ߑ?s�����2�e�~�����G��߉��)�'�*����:4��R�f��1
A�C���~��?>�kJ�����.��t<[����8�F��@O7���(?�'��a��D��e�.�j�<Ǹ��S٢��D�	���h�j�;����j���X�H
��J�P��+���¦l�~`�q����^�`%��c��r3�����g��Uᎁ_��*�l��֦?������A�
�M�(��S�vs�̾�;AS��|�����ӎn	�%<牓@L�8�p9r"�J�͸�1���g��.}�6'��(P���pzc�5R?�cA���-{+�wM�DnC���ĹC�ے_p2�GVx�*f��6���)�aU2��]~Q�0L�M���=����k0!~+_�8jM^�j�����j�|��n�������#`9ָ����JR�̢��{�<;�y����K�_��ȉ�`�0��K�F�'����0���M��0x�4�M0��W�u��>���Ĉ���
���>��x��2Q��/�۩�:�ko�{������Q���	���@���Lm5_�p��n}"��;���@�Ф���Oj�;U������Aw{�O��}�x`�_v��&�D�8Wĕc�
DqU�(�e�p80���h��3�p����2/"]/�xik1����C~����%UzH���?2j�]�^w�.S(��:����d�
����Go7��! ��yJ�	�f��tp�/�`ր��σ�0��۽s����/6�w�|65O���6)u��'$F")��]�Ⱥ���R�<����|:�{}s]J��lB��Ja\�ds���?�NPQ`Os���u�a�ud�z��xwq���V��ZѦ��a�=��t��W'�^I��H�p�t�Cι=���ѣ
�}�;ɜN�4����:�O���Ý��OX%œ;�Hy�X�f�W���aaX��U��#�7O띉y�j(<`S^��zv��<�M^��޼��G���OC�"�|kz���4�z�9τ�,9y
""y������O�n9�2����!l={G
oW��e:���p��I��I��ge�o�n?rb����0L�`8I/���p����8����ߙ��p�+L@5x:��V���)|OzK�
�L�z�����y�m�r�}�]U�z7JC�d޶Ǔ��,uKq�
�~�Ї��j�h�B�Xp����pV?z�#��օ:����c�����ܨ@�Z�r�X�
UW�^}G�X��0R4���ވ*oN�xABЃ��uDv��b�C@*�'�į���Dz?��E��Y թ�ՇH���ȯ|���r2��}ϼ"Q����Yx�j#���-���<�����ͨ8G50�
$��"�p��v��_����=fU�|�R�;03��z|Of������A-�o��̕�=���Μ~(�9�Ls_?�jy��\8�P���h�	��CΦ������+�x'�h�T<銩�W��&�F�?�|�"��n!ㆮd�yt�����U;;�ST4��z��㽮�ސ��z2!깩4��L�ܢ�>��t��]'�
P,J�������7[h_!��|�+�j�-��1�/5�$O�k��li����MQ���	q��fAP�4i�.�=s�@�V�k�Gࠋ @0qc�WK��æI*�(�-���˂�`�*8-m����؎��x��^�x�X$�Ǝ�"�	d
��"j�_��)BGL�7��B�2���eO��`nx\[�䵄P�K��XQ#��ǿx*��3�	��3���횷.���K�ƿ������9���
g�yu1E���z�hR��_w�Ŧ�:S�8��?̖:
�ò�΀�������W޷B��b3�	�Q�?��8f������9���`��̞~8��JH����rއ�����7�j�™�<r��}/?L�Lzc��?��q-��$ 0@P`�����/�"6`��b7�xm�xG��a����p�'"�T�?'� p;��oݷ��#o�7�xn6ˀ���A1��n^7���%C��J�~-�f��}�81����tm��2�mF���BA�MR������#F���@���om���F-Ճ�o�c��
/^pL��8ym����lg}�0[�,Y��X-�����0��^]@#��ٶ�o
�`�6��m����[	����l�;${�1KV�����M�z7��Gm��G�m�0{2\6p�02�����Y�֢r�ޏ��m����q��/�sm�n8`� �0u#����oR��"�Nn+U�����l�m��m�����{7��c�m��d�p����n|nA�i��j��l��GѼ6#ٶ�D`�obf̓�xQ�ٜW� ����-�m��}m����Ã�m��V��o������6��O-/R_�������m��V�o
�ym��l��<��%�ߋ��*��Xn.J��m������[`��_��/�>W�.,'59���q�~��������ۄ�:�m��o��n����G5y)y���H���m��~-��m��}[x�^[yy��/�m��m��f�'m��b\m��򿦼��R_���m��&���m�������q�c���F-uQtIa!Pe�D�^��9kzڗ�9��
F���m����=`��m��dž��;,��W�?�~Y�7$�KKq�!��6�}xm��#m�#�.����$��)`D���	����ݶ�n<��6�x��{6�m�ҏ��1����f�13C_��W�%��m�;76sh`�,��m�[o)cU�x�VVW��=MM	�5'm��m��m�;m��m��m����m��m��m��o���︾����O��<���䁯�m��m��m�V�6l��D�SCC��/ܢ^B7R�(!�F��[V������6F��SCCCǪ��7�߲C�� �b�����޷0X��A#_�����$�I%�$�K�f�5�Š��spkr4�=�yZ�8�	�_�$�Z��F�����$��n.���"���ō4�{1h�444�D���.�6�%��m����Id~-X�
�,���]RK/m�n�O��Ţ�����D�Z�F�7�Z��`Ȃ>��m��5�iv��x�������_�l�o-��cg@��!�p��qC�E���[�<'��x
W_b+5�z�j�8��$�1n#�c��W��\m�l..96�����~)�ǃE=LM�ܜ+�o���!ڧ��&К��[�v%��3�l\r�n.CtxO�?�s�k��9u&���ID�@a�YIx���#y��0G!�]��� ,�[`[�޼�����?�Sá,�m��K���tJ6��20�IE��f�l�u��CBX��-���\�=�£a�9>�>���?��"�T�R ����#��n<�^�%���pE�����9&���=�� ��f0�{�{�_����_n�X8G�I	�J$�I$�Zk�a"���%�m��g����m���`�m�qģm�A55Q
�4 �5Hѽț<��}�Of
yw"�}�`���xm��`I4XK-6��*�1
��D��
 �"w�F��Ў�>�e�#~
��Mu����KÛV6c'��T��0Fo��������b��G�xm���nl���@ �$�j��m��$��!��@���l��j��.ˠ8yyS�T���%�� $������1Dk�T�1��`�n0z���G��#�}
=�v��[�J"*#'`I'##Q��0��=�%�[ji���������]k[PӠ�?!��ps[�Di�g���t�"c`Bu55Z�H8"�b"
�"5�k����x�E�裍��=�Spmn���C��Ў��������`��}I�T�
E[ȉ,#�Uu �PAZ��FN�ڭ}VX8��$!	��96'CB;��Kl���f�@��+�j�@k�80�K��Z�`�R���q�7�
P�@�Cɩ��U�%�P�P4T�
�N��D���uZ�(� �aC�N^g�#��Ax��4m���`RO
co�&��SQIF���	1�� ���ֿ=�>� NNWɋBE����4<z�Lbն �C����`�!`��B ��`D��	�������'��&�������ˆ�}�X���&Ɛ�al-M`�j�Haaa.��;�	�چ��� �nn���?$��D�=�5��0Y�!���(��u��z;چ��[�(�ٳ��O�-���C]
N*p��(�$:Q�v&ܜ������6뗚� ���~
�p@Io�95!,��I$������rX�M���0uo*K���z���N��W����T�Qj��>˳�<{My9�ssf��).���I?���$�p����@`A����ń�!BYm�ٱ&*�HJ$����D'�o�3f@�$�P;���}6&{,%�XK���p��ـ8�����auf��g5Y5�xyK	/C��ٜ
���⟈~'�'�7�G�?�/�(��������U��>���ӳl�r*r��'��X�vl ��Kق�,�B{&m@n!�B����Dda"!�7��z`�Jq�-|�"���F�Tmǁ�GvK��ߢ �I�+����Qz��<V
yx4�{em	��ً�=����K}[m���6z�uB��:nZ�",����@ �B�I'�Dxq���W�;�+�q�2#�:��0���"��
���w~'�w=����"�>k�0� �� �Fף�m���#Ʋ�A�c<�hG�5��Ɍ`���m���c0�fͺŮ��@{Q�����9&'��ܜ�Xz)X �˂��c�a���1%���$�!��z��`B8�H���{�Aa���l`���BE��E�پ��پ��u$�m�6�c����!�<c��c�{�vn6��cm����[�M���͘:��_}�]HiXH�Ϳq^�<$A���G	�:7��8�,�-[���y
�Q��~��--u@(�V�A��TU">W�#����0[��$�����ݽ�6�pAxI.�>�����pp�/Ƀq�p����:��:�O"�����'f���g�}��7��8 |�4�Qk���[��tI1�0Ş�lLm�%��%A�g@r��}����d~��I(��W���ƾl��(��2�|�D`�ID�R�+��X��Z�os�B=����}���!�:�:��p�{�T��d��(L>�g��!����=LI`���U��0�|�qC�GW���}	m�m~{����?K����|O����z���_��}��`�E�O��6x�-H���<�Of���� ��^Ğ[r���28$⻞�Ž��~8��8O�)j�A�W��y5��xm]������j
�M8lTq�5�xkCCal>���'G\G����}�S��q
45�k�8�D��5��Ҵ�u�"1E�Y�c�8@��4�� 0���ꥸ7�>��ncw�t"����kS����x�kSD�����0����ϊ�J��mxii�|7�F��6���\$�����O�p����nߩ5=I�YZ�	 ,\���9�
�Z�
��Ҵ�j��#�Aō�M���n*��;%�T����T��/��*T;AJ�"$z#�xT��	DHĢŭ�~o-��%�l�V���J�ASZ���������o��TR�)ZtXluPB���p#�V�Z��*�����llp{c0x<��U$���6�R�
қ�V�����a�&,$B��IÊ���7�>䓳~h�{���,<ޤC��֔䄈-ZT�wJ�� ƀ�,.���k^3l��m��Q�М�=@�c�hSF�#�6���j�0���l�`�yK�O�v�m���A%��q�a";8 ����
��K�FPT���� F�<d��P
T y#��eN68X�j}E���7&����M�-����j@kR�\�-��m��x]	k���>h[z�MLK2�A$^B	ٰ���Y[(�����@!�Z�uZ�3����g������o����~�������m����8Gů���?�_�O�_�����0��4����o������1�a�_��������!�%\%�M@�4��#NjVԭiQQ�a����á�������7���jڽ*����%�%A�H0K������^�Ǔ���<T�*m��Ba�����œ��c@O��2 !01@AQP`a"2Rp�B���bq���?ؿ�W�dz���G�U:�^�,��R����_����|��!�����(��F�cD}��Ƥ�X��/�J*QX��k�'1_E�
�-9Lz��Z�kdb������<ܵ��^`��a�=�!��V�/�yy��*�aT�ᑯ�w��z�"J�IW4��P�D���D�	���eO�YW)�8�q�r��S�=�c�/�VF+B1_S�ʦ�g��K�1��>��>W��%LG�ҖV��J�O�V�X��a��c��+�?
���������`�1h�ֱ�O�Ϛ���ThyY[��;]%>E��Ǎ���B�eZ2��K�!l��ؑ#&�5���W�l�JrS���p�b��c>�.�؅}X��?^�q
Ր�c�u_B7�V1�������
��W]�?�&�:���ĴC���X��B�����f��J���)B�!
��B��;�B���a���&�LV2��Ab��T�d�5��)b���=��Lv��c�}���	�B)b��R�{7bd]��c5��!)��t�%,��r���R�Z�$����F;��b!XǸ���O��2��O଩j����v��ʓ�Z���c�L��<O�T�镭
֨kT"~���D��cDzV�"H�E�>
�L�p<���œ}��ݒT��:(z?�T���3����Mb���P�JDj,��v��P��C\o���^Z�;���`���R���u���װ�����Ot�4v'c�EٱX�!_����>�����Bz1�E���{x�$H�Ǧ�7�X�h�QC[�1�^��!�l��y�k~����R�э
f��E�zws��G�Y�؄!�B�!Bc^�F��������"K&ظ�U�kc�vtIՎŜ�\gF�D1Y�
_G�Ҩ����:�qS�j����B#jɼ�a�"V��zD,�E��Ư`!^v@�ā�vf����'��t2u)gC�n���!`ﻰM�-�l��$�A. k\�ۡ���>D�"v5��y\��!!
�7ӑ��1M��$��*T���[�ƃY�X�}M�u݋�뛨����l��U�޶I�p5d�cBz��EػvM�ٻ"W]��f��$��V�{'�A"Z
^�Z�	�y�k�+'A�Q'�Q-
�6�]�}��qq�()b�D
�7��W��Bǚ���R�|
�0���wΏ��اnɵ�/��Y��ٶ%��<��7��j����ȳ�1��
�z8��+�F�;�T�;'9�!�VH�����g��y�7G�����询��'E}�W�_E}^��+���y�++*\���S����/��¿ĥ��:\<�d��q�������A��r&��#�v�:�<��1�0M�Or��PʩxrR��A964��Eȱ��MNv�N׫�a�fĽ���$�|Ͽ��յ�O���;�#i$�6��;�>��A>�3��|�h�h͍�;�CJIIH�!d����l�5���Λ!Y#�J�T�;[P�Bw��q����8�>�
�!�|��B�<s�Z�*ej���^Ɍc��yB��s�V=�}L�2��B~7���1]V���i9���S��#oWӠ��R�ЂL?``蛘��.��ה����f�e7��C�lt���!��C#ǟCv<�{�s��b�S%=tx�(\���H�GeL���>7S>�K�����Pʆ���U�QZ�*�}�c�}�\��ظ*#Rt�H�o>2gDT�V�/�������1q������/��ք�$�D�����BXZ��wV%"DX�"�6�K+Z-Q�'A�1�'c���J���u�J�+�#.,WU���Od�l��ad_Wi|�ݯ".���K���GV͐C0O#��[�J��Co���ϸ�i�ǝ7�)�UV�Bʍ�\��;q)z�p�R�&#"ϕWM���c�����Ř_����/�U_;5�+'l{	"���C�B�#�B�푷�F��{���:�~Aի�{I��'[�����'�KA��6�n]d,�cyi�S����q�y���Kr�K�	,�D8��J�u��-�A�Q�x��B�O�X��$�Z%b0�q.Š�R�"x�K�����ne2,v�j6��lg#Z	�('LԄ��Y(B���~��~47~�L!	j&�)�L	芞�kR�|ye5+�Y:[����=-���^��;�ᨚ�b�\ҏ��q��B�N��� t��b�N�x��ڞ�Z�OL����s����
�Q_g�������vyO/e}��W��쫲��UJ��Kb\��v.�ػ)짳�PPx�ƨ�B%��x
�/*T��/+#�u>�3v�\���԰�D���$��c���R��d���P��$�/�[�!Z�2�.�|P�y̋Т�N�x;�sl��$zX����!Z*n��qc2���AYBl����ao��# 0@P���/F�E�=$|�zVL�S�H���#*�K]u��)���C�p�+�IeuI{�b5��H�DAM� ��N#��R�a��>e?�x��/Q��J"�`��ˆ�Ԛ�CЂ=���u=�<���s����1.�t!j��!��`��R9(|k�x�FD��BI}�.������`�;�T"y|)E�x��_����J�`��aC�	!C	�O�q�Ca�k��KuC��I�>tz%�B]VP`������<�O��A�!$��%�,��F���5�##
�8^��a^��p���(@�������b�]���P��+�>�PGO"��?��$�B�B#�%�r��Ïܽk�b�%


M)n;��}&%܄���^!)�!�D{��]uP�u\�5��<Է@5�5Y]���Ge�DE���D�E�j���|��\��M,2�Ԉ̒�>��%�����#��>!�������آ!$��}	�.�w1Ԁ�]u5�$�Y)-������]|��	{�IdĽ��Q��[鮺k������%�Z뮚i��?��Lj�rN>~.J\`������XI$�����TJ(��L�m��!���{m�m��m���_�x�B98ύ�S�V�I�"I$���r�#֒H�RK]uIG5KU�b[~��(�ѶA�om��o+]u�U�'��Ԓ�$���"Q��Y���`{�Ķ�l`�n��@v=~�[g����"1�A�I%���lIj�V��ID�I$�F����@X����d���m�{ol������Ů�G���������m�n76پ���7���� �Z뮺뮺뮺뮺뮺�I-u�$��S]Q��i��h)��_��8�/�����AM4F�K	$�I$�K�V���SS]c�l,�y(���/��śm��$+��@�_
�5`�MMEp�bո���𤰢_�$��K��ܵH�F��Pĵ��QԶ/�Aw�<��������m���G�6�R0
mj�ICV-K]blX��ߠ�����x}[m�	{m���}��m�x�$�t��";/B���"*D�@#	��#&����o[���FK���m�ؖ��Zh*h�4�M4m���$��K)|f�j+	�*���d�k����.90�ȒD*�Ta�$���05�{�K
�,=��Q��x!�0C�TD��!�
顦�[�r�J��
u@,��a&l.���]t�$�J$���I-R�#a�	�
(X^�FLXR���TM�A�9�œ�, 0�{��$(xm��%���yXl�`�XQ�_H�y@"444�O�y#��ő�{�l�2M���g�����<<B�FH�Iu ��S]?.N!ǭy+�<��~����	XCx5 Yߡ�=�p����ġ�����H4#qa�J�1�!k��1Jp�ېy_�^�k�
E
�p[m��mǀbK
����=��Ko	�F�������q��!	j�Db Mkcc�x-�hy�<��N�3sbM�Fo�òo��HC��,,�< 5@�f�Fr0GS�6l�5��>��"���Ė9()��H����E�Uْ��%�Nͼ"�m� ��6޶fΤ��\��'a�k�`{A����Bkj�@5�PBY+SQST�Ie�}�f�>����H�*,�J���AC+n��DZ�3Wj@�`_������2�+	�X���&,Ь`�ְzWG�Q&
Sa55y}����1a���[�#fۛ$�����n.��Q�6`�7�S]W�z_��PT�z�x��@ 
P������x �G@Ln1�H1$R��*�a��]�[DDhЏ�_�hń�#=�$��5�1ASXA8��̖氆a���Ⴘ^��#��U�CM�Ł��(i��4��
��0�p��z�����B0	������ﰳ$ɵ�z��Si��M~��V0�&<8{=�%a��yhGE
��mfl�é8F�E���"}vz�֜^Af�l.�C�bq��'�0@580sa����,��\D81�0����GU�]WV��T	�����]R��Ilnlm	�"T��3�X���p�B��6$BM�7��T�*/@�5葧����XdǑm�elc��C����-Æp����	PBc�T��e�R�>�
쵃�5<f����:��V�u{���`�I�0v'
�v�'*T���W���-wo����"���טraV-H�MD%��K�&�	��8rz�=0�0@\r�b+J�V�-P�#�����-����2hxE�pa��l[�GAd��DdÇ�������
x�5��A�Z�P����J�Ɉ��BpA�z��h�J��J��K�J�#�#_P-z�X@!�T�"����L�_C�!5�D(��
�"0���O���$����A�[X�0�	����t�P`##�Mxp�]RQ� 0�C{Xkdek��`;l�$�z0T"�#�r�!�
kkS���TU��'��| ��Y/�9�E�F�E3CT�Ȏ�58XP�� �'�Ŭ%�U���[����X�k�Pzz<��0���0q���1{� �(!`���6`CB=K]cx���zFDPC�'�ꡆ>�<�(���`�>/'������<���߷�G�$�G�_��(��|��U<�܃��)�$���`T��r�Y��d@0{�"j��m	f�.m��s|-��##����A��BO��B����p��B���`�02��#	d�3fN��$DB"\"&c�� 0�#�+~>Q{��2;
�H�"XX0�!�#��&W$a� $��1=����a�OW�����e�pB��#��v&]I�$TA�D�XNX�7d��n�&�0E��0�|n_�@L}�D��"%��`�H�0�#%�	�
��1�3p�XC��5a#fp�h�H���b���	�W��@0U���d�d�I(pɈ�'$�S��G�+	����e�0+?���tU�(@�
���m�6���	��0D�Q2#�,�b�02&��	��������	��a&,Z�
R�'�q�#�(��'Bj��Y�0�L0F�KV� ���}�b#&���������ol�6�p�c� 4��Xa(`8$��Q1@�B` ��_��G�J(B�0�D7�0BII�M5���T�,0�{����X�`�DA�G%�"A2���������]FP^�%�J%�5���K 55Q�~������*��j+Qd��skr�n/���aB&�$b�!�%�R�p�p�{�BpA�!8b�㹻'm���cs�nK$�5��ko���'�Z�B�R:��Ow�=�lvq�\MI;G5B�!AA�-��~a5��FFR]IB��D.��~���Ŗ��&�BZ�MT0a"9�y>Q�5XP��MTD`����m�����vq�_C�c��bD8����.&����\�g��%�h�m��v%�-������qW�u��?�䈎CԐpc$���#�,mؘI�l�.>.�G�#���<8~trA�:�8C�ؗ�`��fLX0F���0�C2�����W�~�FX���/��9=H�W�@�m�NN��Á�`�QZqx||]����&W�8=Yg	�z	���D&�AP�K^>/�������h+�G��7�Ex�3�jo��C���r����A
P���ij�BF��1Tq��~/U���P�>�����S�yw�5y�~0i�V��ۘ�J�}������c�SQM
4�J�~?�xO�V���ZCW���F��!�Zq��|O�=Fq5ޥzVY��p����T�S��Z��+��*#$��vNѶ���Csp(���qCH&ߩ����L0�p^�����<J����ȇÁ���
���#����K�̝�bߡ��İvq�~||Qmk_���&*D�j��4�5���F�Xaڶ�2�6oN:p�D%� ��ԝ�"�G�yd��V�"@`�qPI��4�0`ea5�
͇SɌ[�𢚚�,%<jp?K���b��0�	�L�4 �eL����
����@�l�a`D'��F�C
���L�x�j�@A#� �`E�Xْ	;:\r�N+V�Ҽ5�J�aPE�8HƦ�PX�@��I�A
FLFeD�p�M+O����H�@�p!��0ll�bI�C�V�?���¦�#���6 ڡ�D��Z�A`�֞5G�%�Itd�Gd�Àr��8K��UF!sSCf��PL'hD66�0 $�m%�I����X�I%�tN���":5�.=ncb�+8�oeYҗ&�͉�̘a�*u���
��0!��Xc�^55Z��.��˃C�`���2Dl�;-uF(iNj��<F��`&�<��'���q�!��D��������u8I00 �/��.��d�b�`�������-jҶ_��@j_�4�ٓ	Z�X1��3bA3}�!Ԉ�6�>�$�AH������'/����çD�4���j������ '��(j*@65��`
D5����f!4���������Ǟ?����`�������4�<������_3����g�>_��W��R��(`���z#�'۠A	J+q_�<`-I�*��=��:
֖�:��!$��pH$��H�Ă�&���o��A6����C�&1d�A0t5��|sB)N.3�h�	7�'�i��bG!"�I��f��$Ɲ%�Z��f�"V�R/�Z#����M�/Zhh%n%^�W�G��u�?��2! 1A0@QP`a2��"BR��#qbp��?��ڞ��م�.�6��$���	xO���&��uV��Mk���vw��U%\�i{)�{��$�B��K��'��ܭ~���G��;�����U*�_�סe8>��:j�ԦW�1ݟ���h���%UD���a�j�5?k��:��]B|u7R'���G?��O�AJ�q]���Q�.	����$xX�%�j�'5ӿ��p��t����S�[��#�G�}�Ԧ�\��?��(�2Uӫ�I�~Ӂ;��S2�t�̣��g�}7��� ͧ㾺`��y�%?�2����!W���}��:����DoR)�V��{�����q����ZZEk���oRY���-5P��߁ui�yD���.��ǩh��q���t��(�b�픧���S���t>�a�և�����R���Nj����	�1���x_���)q���ȚixJ�B��;�SgK��\���F��V>�f1��`L�	�Є!B��.��f,�	x��Lv��=�hS�e��"�ȼ��VB�.���w�
�B!x��B�m�������1���B�XǥُC��c��
v���$"41�B﯎c�輑�=��@�
�i�Vc��a�B����r.��VBC��ƴ���Z��1�c�Ԅ!]��ȋ5f&F�~,�>˼�F;!yHB���!i�������x�z�^.�$���vw}���fT��E�+/�B�$�6�=��B��z�P�R�mw�д!|B�-
�O�myhBfp1��-�IK�C�hhmz�u�‹�䏻��b�D�1������(|��Y�������V�2~9h�v��Bdr?egQr?E'O؞�N{1���=o�W]����>������G��*�u)C鬲wE<�{){2{2/xH^�11슖)з�.J_lk��S��\���R�E�>m����z����=)���rN���_͕��&�Jx���2,ި�	��B��1�z��	�}��	����(^tһ���lǃ��H�ع�:Y
/{���{(Dw��[�f&t;A�g�J=
x��;E�RwVH�H�1�\_7�{���͜�i��-	ً��h�HG�v�"Ѣ5H�-$���Z��*[��ǩ�sh�7�k���T��R�^C�))�F4O}���^N5üY�vc��6@����R|&V�b~+o7�/C"ϰ��B�:�=�]����\o���rt��(���R��\���@�$����f�5�c���H��"~2	����bd����/
Zt;-O�^ZuFoIJ�D�=���LL���L|jE#[+'�=�N�$�-
�b��b�@����i��4��=X�v�'�}�Zc,���yҴ��w���{"��I�Sخ���I$�C��ޔ"�hB��z�1�-Ķ�c_����;��誑��E�k��b{ZG+�$|[��<��jc�q������ޘ�A?+�n����z�ݛH���^��Gm�/!Z,��36Z"�hӎ��՝�tR��6�O�:�x����N�0Ofo{�"$�l���/-�!y��9ԕ�ߏ�����?{���P;�Y��9$[k��P��:_�GO��|�?gO�O�����t��?gO�G��gK�G����:EN��į��:�ƞr&�m�b"��fs�ǃ>Z=$N�F-�F�`^�� cdZHͱ�&`����*����l�.,�I����b5F�͜���$2HтL[r{�֌ِ�"t4�*�D�
�
r/%��g>F��ѥI�s��h��#��[���^B�^N5�߃�^�C����41���ͽ�inj��>$_�k����v��dA�_ޘ�.�ՕKŒ;�^{�ϋ�n��:U�ȴY�2w$�-�L�d�`��ύ$w�
��h��Dv�W�b�@���	Yv]��bLi�cs6�ZTx��>3�u�#�\��C�q���M�"#L�E�}.Dԯ|�A"��ԇl�W��3�����l�7�9�Օ����lz%��|7u�jz��BWcvB}�X�: �Z����A"&Ӷ��i��-�qIO"�!UJ~>�g�c��cKC�	�͉�1�Hd�� �`Rp"dzrzC�q�J#��{#a�,���1BЄ+>=��93(C܆�kl��������Ɖ���
�E#�{���W�;v'Z�aw�e�&o��n!T�����n�hrN~�V��Z<wΕexz2@�;VԤT�ϓ�-"�
�7�GnV�Z/:3g[�OO5嘁�nH���	�-�O��Ilƕuv�������W���ǔ��M�EU�!/�SJ��2��S�<�!TИ�&���Ȟ`D�t>��=3���T>�&�u�<j��O���HH���2�����7�v.�o,�Q�a2AK$oc����
�b�E^��z�����r1��V�:Oj��|2�*\c KsҲ�	l4N`��/e\/ևh�Y���)���o}r�,�a���e�,��6b�{؞��&F-l�6�RCip5h'*�FcsUK��T�=��G�W#���
Hp�c�'ͩ`Ƅ�ޤt�ޟ�Q�C|��G,�-�:k�%���q��x��{`�F�^A6{���:y��ب�����;
�bx��=�"r#�"6w�U��N�]�f1���"nl����>�'��zmd.
�����J�o�`�F�3�Έ�J��@ض2J�Ւ6����&�ķ�q07�l�=��gaT>�;�=�P���e/�K'%�������T�
�#�vŠL|�BЛ�KpSVļ	){�mn>m�S�����ip��Uݦ�IbVv�������SJDž:�l�
?Ƥ�)>�}D��x)jO�|�I�e�S��e��R��gٝXђ��d�cLM�0'�9��$Y!�n����dT�K���g^m&e���z#(���O�V�ٔ�*D���L#*6&�?�ͣ�Ɖy3�Dg�(d�,����Hђ���#���Z�$��n�ȩ(��

�,�Y�8m�e�t�bl�b%�Qd�Q�#"���J�l��3oG�ձ���ȏ��tZ����̱��<M�̉l��ҍ�CV��j�dI�Q��|�2>/;Y���ד��<gi�'�-21�IM.J&)vF ��� m�[޷6�i�D٦'gl�ȈьY�����z:W���>k$w�F�Uk]I�9y%�*{>F�?"gӻ\	��PI88�z&��2.F���0F�$da�r�j�T��[�1�1��]��*P�3vF�F��S©���X����IL|����)oD���lȷ)x;$~n�>Hcf/ɝ����x�|N�I�_���/�N���/GK�������t�3��t�Ipt�'�����eJ� |��*�9�!I����l?C�U�eEGP�qgP���O_Lt��D
�]I	(Z���1f��wЪ{�UK��g�E1h`{����K2"vd�@�*LH�O$n�#.ӹ�
�;��-�J`�G���C8`S#O�L߄N�F��s���&z*��]3=�!i��ʥ����e6�$�i0A#ObQ/:R�7��

dOqH��3�J�t5�L19��9:~Θ��t��pgs"�E�?�)jLL�UR��ʢ`c$wn�E�T�f����themes/images/etienne-beauregard-riverin-48305-unsplash.jpg000064400000272700151213255700017527 0ustar00���JFIF��C		
 !%0)!#-$*9*-13666 (;?:4>0563��C			3""33333333333333333333333333333333333333333333333333���8�������g��
@) �B�� ���f��TFAr��)@!4R���% �@�� �(��( ���J�! 	
@���@
@5�$�BP%DB�@�	%H��X�PP 	 �@$�@$E�@��`�H� ���IH&��		
D			 !��
@P(`PL �� `
@R�  	@�( 	��P@	!aAP�E��$�� �@
K@
@PH� ($H$B���H�#(A� 	�H��
H
��!d����΢�P@P
��DJ�PHH�$$��$$R`���@&j��
@��`ܑ)
P@�H$�H@����a	HA FtH$ P@�E(R���.�<���X�B�@REJE!S

P!B	 h�@gP($��H�%؏�x^��]n=8\:�5��9t�V@A $�$$@�L}_�ӹ�8�r�V"s+����]^��G5(@	!$�$��HjIA����_���{��>��V�Lٹma�}x|:s7���>���� �@@���(0 �AM�Fu	�  ) !@!~��_=�>�^��d�\�Қ�2�V	���o�������M�� �* MEH�&A�$���(@���@���i��W�۟G�/Gזzg.I���җ�Rh���^u�>�[�R@ZP@�6)� ��?D|�ݾ<������;:ǡ��N}~ܦk�5%�liL�/�N&:�vY���   �@	�POu����m/G:e�������ǩ�n�!f�T-ڕ-Q���t�]a����$(�
��T
��I����X�"i	�A ��
@	 
g��_�ߵ�_+O�c�Ƴ����ϱןo�2�Ą�΢�k=,���W�z�u�zy��M(��R��>���s��5e�Q	����uǤ�ǭ�tz�s��RU��`����������5"�3dE(H ���
GW��I|oV�~y<4�AF&J"Ξ��������w5�+Պe�ɬ++y:���[��}r�P�2�(�$H!@ �R�'��<֧�m� I$��5n���;��zc�Ӝ�Ee��
�����7�ǧn�No��� ���b
��H3`ʀB�"� {ϯпձ�c��$dI �\��w���N~��.�\t�+�Mlj�����ZZkW���.�Ϋ=����@�X�.G�>?����7(�̂A�E�)��P@k8]>���1���tŻ�a%x�V��lي�/#�NMޏ|�z�N�* @c*�$��Hu��O��'�&��FD����&��B��\�X�K�:=y���n{���W��+ְg2�z�q���-�s��"iP�D�0�D("H$
�`bԠ�)
f~��^Χ=�->g�&Eĩ*Z�LK�Օ�+0I[%�1����@bȊ��=]��8�:�Y����G>޶�ָc\~]9Z����㕓h�($!YEA B�����_U�]�����O�3X�� �ȴ��akJ�3[I�f�,�Ee�is]b�<�o.��~�����PYe:��IIv�%mhrמ�כ�]��w��e($	B�*�R����	$�������G�y|�u���.���Bĵ\�J�J�5Ui+a]Y��ᅫ��~�~����2h�UjN��R�f��w1�l���xt�N���{^��+@@
@ �	��PY}��}'���O�r�	*$��.&@�m��LJ�#6�1��S
�)��}�<�w�����N��|R����Z��Ut����y��]L������,�����A $H����@	�(HG��o�ٵs�Vk��	32 ���	n)*�MBI�s�d���يH
��ף�է���x����lK�&/�j���,�R1���N5T�i��V�5��V5G�>�9o3l�	$� �l!A1��$$�@%&�����<��-��sՐ�L̋L
LSjk2#+02$�pL�)d�	����>�s��t�/�G�,5b�.�L̍9�F��2՗
��*���Ƹܺr�'��W9�H�H B��(�hcd� 
@�4��
H$H3�>��'ӊ~W��fI��ab�J�
��2Y)YZI*"�P��-�M�t����/w�����R��k%k���D�76X��	jεt��5V�#��'m<^�I��=�q���L�b�V �A�QPH 	�@��4" �~/�?������hb̋T�V��̮k9!5����j*��RH@rY��v����˷����}_��ծ�Z3Z2߬�se��լ����YK�ZRnr��J�t�R�-M<o��|]��r��I5
A H � $�	H W���?��\t��j��#-�]͒�+���vy�ϗM�t�M�ݏW��S���m�R�T�VX�&�o�϶��{����cJZ֡e����5Ue����/�N/=����JB%X$@"X
	 ���(@ :�:~���˯��禐$����.E�qY�����~Rau��q@@5n:e.�=g��m�_�����4kB�ʯ�)t�򓯉����.��֔�fiMmY�i�kEz_��$[�n��jmjV�s���OI���Ϸ�&���%� ������~b�ΐ$������-��h�\R	\H�YY�9m�L�[q�k&t�2�x>�����Us�u΍Sj��^������S�ן����{�eD�+Z[d�.'#6��ͻ$�W)�-gV��Z�c����翆}rA �	���S���#�~u�("=�+��e��կ*�Ԙ�b��������v��Zo=�n����^?��_��Lcf&������~a󽛨�6li����}o��N�ӝ��ֳ1��%��[�*�5��0�ss^Z&��7��g�oP@�Y/��{�q��)�hI� ��Wm~���Ϸ>y�l˩�m��-�2�.��9�s�ay���9=�G'���˧4�b�椒dsO���</6�λ:���s��t��<�_NVjc������I��5Y:�ܖdՔ4�\�S��\�����x��@U
@����O�>_�˧�,�I����լ��'�˩ߎ��?�q�%2�W=]s�ִ� %��l������톱���O+��_�:ݱtt��yU\�
N��gX�r��|ݸ�~��=\39����>��?cߏc�n92�I�F6.k��+67�\cX�4���p0Ƹ���p��J�BFt@$�H�	 H��_}��g��/�΄�����ώ��Z�|g]>��s�W��֦U�͓-��\�����t�8�&��y��u�WNM��/�Ӟ��3SR���K��p���3�;���<�ܵ�st�/> �~����%k(��-�/Z�VZ.�ft��M,ڮ���4�S�NN5�������v�Pc� @
 ׾'��{��_=H��kѯ�'���뛵�쮙�6]�;�֗S��0���'SZ�fe55~;g��nzo��dko:�1�x����z>�v��YQ�:��mK�zJu2�-�ε���ߚ�߃���ݒ�����u篡���Ό�-3K��M���ҭ8��R"�p4㡹��Y��[�na���ᖠ�RH NRF��!@����jW�,뗚$Ȁddf�C�>�n��3�|v�z�+�-�Y��ն��V.�+�Ч*k)���s���.�:�����=j���W�w}k��ŸKF.e�Rg�t�jU@�&�[���_#���Xz9z_G-�f4&����ve�*���Pkٿeu&�u�\ߦ����4��3]y����Nv>�����@@@{�翷���e�ft�\1;v}�s�MyY<>�g�r�r�Y�d�7�*̅�R�gsx�r1t����5NLZ�nq��?�4�mη�պ��(�=���OG:�K��gri.qM�m�+;0���V�W���_?J:����f���	0���|�5�:s����ZL��%�\#\α�;"�L\��nzZi�K��ӑ�n}�H��7�������Y@̀dZ\}_�~��q�=g�鞥�I��1v�b�RJ���ŋ�Zy��/��Z�qpγ�xv��ӟ�����}�O���G:ԍs�UeՂy�Z��RW)`�JW�4����=�o~[Q�Y�
MH��K�7��y�w��~�^��=�G*洮v�5�֍y��b��ٗVZH�^��?���Y��_v����ƾ/�΀�L�A���ҷ�tώ�>k�3H���"�-��\�KR�͝.隰՚�×�a��5�<���'Nv��z��򽟯ɫ�J\�2e�m��p:cSl���\�5EZRj�V|����9]����bÜ�K^�K�o���2��>�������8ӛ�P��(ѩ��\�56l����ūN7��
�@X���m�=>+Y�5��	$��_i�}b�Κ���Ku$��g�:�6��Y�y��t����sV���jlt�1]s�t��֦.1�Ǧ�.�?���G���6�ۤ&vZ
�I&�E�I��AK1�YJ�=��^k�=�b�24̍�k���Ǿw�m��VU�>����^����y�7�/�Ơ�t��5,�c�}�2� �� �:�m���K8��5�dI�}oY���i�n������gR��l�+&1%h�Ynm��;��:�Ybl���Ƭ�5e�r魓���_OS��o��r�ۣ����E���32���%���*��^>�eμ�ll��I3T'WY�r9�����?Jy�v�"��K4�=yz�G_�8jrs�z��5l��Υq���A*$D}��C�x���>;��$�L�Q�����}t"�k��k:�Ml�K��8ef��S�5j�VU�CT����b���}1��v��s�t�O��|�L刢�Ҍܗ~�l�&r]lēR�ۊyO/O�p��튻rƷ�ay�m3v���e2^/�?~7�vK��֤b�:��=�^�\a�Fu&汉��a�~ߕ��'��w�羇"�8K����5��g���ӡV�'�l�霬��W-e�*)L��ˊ���=4��ZgF6u9�����*�css�4yo[7f��u��zU�MR�9yǝ霪�e��)��y��?7l{c�۞���&\\���g��mEߗ��>~��Z�Q�}���;�6��e����U�|��y�H$$�f_z�������Z��jQ� ��5�6��])��v+X�׏��ven�񞐑.1e\�3Q��=gVm�sU��DQ���,��MN=3Һ��#:�Ll�LR���ܓ��뵎��zY�xͣR�<�TeX�Y�+������y��t�*\�يj��j�t�fu)d��$�����������n��ū:��wH�dr�G��E���|�W�~7��j~pΰ� d	=�ړ�\5���\r��m��U\�&fzVFd.�LkMj��Y�U�tz�:�Z�b뙭iMA�Y\ݢ�ZіI��>z�s�Ϯ���o7�ލM$���E��
ą��{�>�^���ӹիAD��2i�k�`��]�,�Y�|��z������w�:V]�yD��5��E��~�h
)�w�?�;�8K����'�w=��-.-�̏8�-�٫t�"�Ʈbʊ�ح|+�����ϩ�J��۩|�t����U����3���gy�x�Y�ɔ��c�8Y�1nf)���*|]}Ɯ��,ӭ���-�dr����%.UaY'��w��w�ߝ���'D���������~��F�( @����K?�F@̌�>���b�N5�z�fb<��)ԝ[���zc)jj�1"7:b�gz�j���^m[]�ks�4���DK��Y�3�m�孍ћ�-�m���bՙ�t���N~��,����
�
�:�U|�nT��H�)��:�hY���ԓ#%�Է(��w��(�ϫ��9��q3��|�g����Q5��G���7?�3�YP$������K�:Iudj�`�2m�]�̰����E��Y��b٩����
q%ӆ�&֝��f�k4gus�*K:f�I�$�:�����đ�S-��3Z�uuϹۗ���tז��Y���}��W��KlUr��18�s��+�[Tg��h�^������ˣמz��6#�gU[�ߟ����$B(/�?1������Y�I�32$����n�D��bQnѨRy��l�lI:F
Re���
�o-c�oL���K�f5��S!���'g�/�0��ųRj��%rI��!q��g$�c*��ع��:z����l.��O+�C���s��3�
ܒ�5Muߓ�U�d��ٔ[�j>{�}vo�����^�Yq����o����^��|?o���L�Ȱ�{���2�V��[�P�*�B������˨e̳I�sLb���L3��c�=���<��>^�\�܍��8˭�6�6��퍮��.U��VjEDM�a�ؕKNn��ɖ��e��y:�Ǡ덄�\5���u�5kRIj��g�u��:A��"���e<G���9o[�9}y�w6H��2����x��� H����}^�=~]��� Ȱ��W��z����/8��J�I3��Y㴲��ع�S#"�����fA��+)θ���?n���=v��Nn�/�z�f�L�����%�Nu���Jћ9M��*ʔU�[��Gc�=_^}^��یkY+�.�j�����)L�t��<����Ҿ�Ǧj�7733Y*H����W�}�z�b�����A��g�6���/<�\�k5��+A�<�\�Lj��U�:[Y}�D���>���5,Ū�y{y�?��{j��j͊�N+T�6u=/��2�)6zJsj橪�	r�̈���"�2�y,Hhk�fv:��t��5��gv]r�E|�L�&Y�,�ZY\�^_����9����s��f[sf���9�Ͼ� ���A$��7o�~c�i��:�T�$����L-��ȏ���OW�뵉�a�8Zmt�I�d[�Z��Y"����E�$��O�+o͜j�H��h��sߝ�w�kc]u��Zg�㫛^5�WP�a)Ω�DV%�W8Mcme�źyU���J���k���C�n���;��ILڙ2͊�.\�x;�j�'~{}�l�TQZ�ElW���)1$��	�@ �c���~G�c�g@aa&�}�S�u�M��>C<�	��ԥwMR��r�A�;]&ZS�כ��f��
���-�N�:��]mL��[c)�k^k�ϧ��w�y�}!>g�{�w���F5�l�5���ԧ7[
�:�12՘�+u���K+2Ҩ����;�ϵ��zc��EAb皓"�-O�x{�#;�����rԯL�jM���~�� �����7�<�~h�@�@>�����I�m��Nl���/�,���~�wl�ge�5��QL�6Vu�51�q���Q��sI���n�rSeVĸ�������}������lJ欸���	L竵d�L����Zc3XK�m��Z��A����\�=��9z���*sn���.�������s��▭�~��o��( @c�����?O͓^ri �K���TF�2�꼜�
}ަ�J��0>#���6jܙ�X��Xk˔KS��I'7��. �2\
�\�/.�[O1˧���ϊ�G:�m�ugY�ƫι|�F]���֜�k%H�1i\L�3I�Z�Um�DeVi^Z�ћ��?A���;��j�8�ޯ��w�tz�����j�Dž��  �H��^��|/w�m��v�2,$Ľ>��5x�y��ߝeҮ��r\�ҩ$��7I���w�;.�	1���soJ3s) �O�}��c�R3�	0���ۮ?;�o��[��aV�5�a��~q�����њ6�6����X��{�4���-K���n2k�T�6_�\"��+��^^��Ͻמ�S������{�Nܷ���M��udח���`@� ����m�z���i�̀f}Y��Uaa��gS����l�X�'�.��h�gr��2 ��s�5��r51w�>��~t,bL�Y�T3�k8�ש�����edK��EL�Zغ�}_X��+����|��gy�H�*� eY���Y\�XC7!2;=9�~��X�A�ۓו�9��L�]�x��s��
}?�s�=_��c`32$��?mӪ�&�L~v���l����r�dR���,�Ŷks�ڕ˝f��L�\�{�)���ݤ��G�&%h�	3$�#%���o��N��L�s�VΤ�Y�Ke����5I�t|�;Z��K�Zr��X�nnu�'J�s\�:��X���l"k$��n��W�?Kۗoy��
J�Zk���E
:�m}��[�/�l�L�13>Ӽ{��A�/>-����[��ӻq��������_F/����L%i�Tfٹj2����q��I&d�5�h���w��Ԭ�ڳ6p\%�Q.�*�}�{?g���㧚�w�n���זڮ8�p.ۡ��e�$���&Z�tc�Vl	n�ak�(X[�Y�	��c�=�n}}s��_���R���}��O�x{�n<��L�=��ثIo�+�g?��:6}���y�i��i��n��ع�3�Fiq��p$�k���=w��J�fe,jd$�deV�c�}�[W�WnU�]��Y\[Z����x�G���X�aUf����y�/m>];I��\2�S��ŶS�q��1Xˌ��h��J�6W=fH&ܓW7w��Eӗ����~� �P�~G�?=���穩�d���z5���	�>u.���/�t��N]���
nPA��u>g��눲�5��v7�5-9��^t�=ZҬ�w�S���]�3QfI
2�#%&Fu�:_3��-�[{�\��f_s���u���;`b�ʈ��y|�y��^�\��s��G���:��VqW�ӕ�vcnW8�1f�sSeY��"��r�Z�����A

�/��_��y��b�Vt�'�zO�G�V��ܼD��Y����}���W)�J�ˏ!_0L����ܣ6�L�2�SFq�1��ּ��dz�K2�b�"�L��RY�br�g�W[�GW�-|t�ƒ�B�L��>���oo8٭�]�TM�mQ���x=^��s��<�҈�Jqs�%X�y�u�������Z��i�Q��A�[����
,���3�{~?oȳ�$�ν����J���P��&^{:���߇�yv�g^&�mX�E��+�ɷ�v�r_���Kw#,&��Β�59��ן��y��I����S:�6l��k��]�ë���t�,��fɯw���w�K�Y�f��+��y=��'_�5����v�S�SMK�ƴ��u�l�rM^W�1\�)�,I\�b[53�������@ ,�㿵�W��[Z�@fI���[;v�A�����i���]��?�7��i�m\ܵ�ɏ#e���I���u�޳VU�k�3~�tμ֯=l����bA���ɒ̙ە��������t�v�8��f�u33nf���~^�NX�I�Y%�Ey�?z<>�]q-��o�-f�����R�u�����lnouņΦ�;��.I�����������>�����w��8ׂiI$Z�>���:�Tm��:�K��:}�}_��ُ�j�X^av|��:eY�*��,1���l�����{�?U��ܙF ���)\�&m��x=}�u���K�j��zb�v����sy���}�v��dM%�6"�Iȷ��o~�5�휵�yܴ�\��i��r�%�&�u-��˴���u!mԂ� ��
@v�]~�����ݞ��S���L���ե�?>�~�;�����?��}0|�Wt��6l�gE�Mj	/[w/����	/҈ٍkq�����|�FEز�d�L��6�Y�������N�~u�9պ��gX��r��ۗ{�%�L�.Rej�3�?7���}_G*�m��[5��"矍sxo�5e�'&j��,��ξuf�&EK�-����h
������<}3c^}��dlY����:��\�^�Rx�~17�L�����<��h����\lE�M|RJz�zf�6u9ܷUNmLέ�e�Y��N��;�ML=_�����g,\LcfS2�Vrɖ��p<]��/Gȫ{�2�r�6ep��UR�N��^� ���Lɉ3\�_(��߱/�1��˷�e���-l�ʬ��������~�[�ۋïR-��-Q5u���q����)�gƀ( =���W��G�1��>��}9�*�)_���j�Y�<b|�:�e���{9~����<%�Ѧ��+'Øj�t͖͑�L����Y&{�k(س��G�z�u���n�����I�fq�gVW�����|������w0�l��+!r�sx��.:��)�fdfI���G�|>����ǧM�L�1��
sR�_��O��8商��k�����8t�.i�rڮ,�{]�R�no����P��-���_��޼�����Ϸ�CV��R>��}ܬ�>f�5���:��/���_�c��B��Wŷ��*ԣ��F�~�Y��w=�t�w7Au�y����wo1X���+�gk��n=^�Ȑg-�g'����|b���f��c�N5�A�U-��}~,,Ŭl����$�sL�
��}���[;g�ם�"���Ηn>�����e��,����z��?n'�2�se�z9eT�Y��
J���s�篚�`&E��p�}|����,Z���Y����]}��O���9�G.�q<�Sni��n��kgss�u���K��8��ru:}9��r��"�Z��{�.�51��|Z�u3�ӱן{�.�^{z͙dr<��|�_j�&/ֳ�k��V��Ŧ,�%����,��s��92�+�y��!��]����Y��Ʊ����/�{<�ki�B�d�5q���ϡ���;�or�w�S��(!A�p�_�}O6~k���A����d|t���߯�f)��9o�5˃ۇ�t����0�Ņ�6�>%���g%�g����=t���:�7��޳C�MLn"��e�N�nSm�r�nx���jcZ�W]K��9�N���^o_�5��ܪ�e�ȉ0kβ�Ow��W��PJd%��Kt�sޯ����^b:>�z<wf�Ʀt^W�_�gX±)L*���:��׃��������;�yэ�U���~{�{o��ξfm"z
O��7gS[揁崿A���6ag�k�oݵ���#�߿��&��FG@�'�,�kl�2���̢����g��s^f�u�����s�������|Zr�I�e5�j1ƶ��W
{��f�Wn�\�o�r�t��e�S	I�f{��fI͋H\������+h���_����C�8���s�Y�Vmlm�>N�LJbI�kU5mg'����W[w���q��G��z�����~�����@Ku>ټ�<kCM����;u�gܕ�	���߹t�>ܾ���|�t��5�����<��*��2Zֶ.Uf���6�s�u�u��͵���LN�N{�q�7��Ҍj�m�������K���羇\u��khA+.�jν'�ϵӔ�Eƭ��Rͷ3�5jJ���z����1���(�3kά܂��OS����

m��a�����W�1}G���O��(e��?/�w�����iM���~������uӷӟ�-ܛ��|~zλ�[�������؛�.	�Z
��q�.���f���6tȶ�L�W6u'7g��3W�ƅژ�n�t�s�n���_7gX�������rW�/�y�����ӖmS�9�y�{���M>W�=��=��6��s�nhV:�Mgf�Y��|>��M|_;��m�ή��)ŧ�6t�<�����5m׬�ˢ��?��jO�g}n���?I���>Ϩ|_g�s~_���H:���u:kIb�f~��GV���7���Ro}�,�ν}{�N"�x�}J�ĸ���??靭͍��^ulՅ�W�K�gf�L�5Fm9�ńja�b��aYV��}_G;�r�[������q��r�����In�W:��D�j`k�_K�q���~ӌcX���F+�i�|���˧�Z��5��f�gtb�o�C�yUsRb���۲�ߋ��o����/�|�E�=}��W���l��Y*�>��f��o��g[G����K��B�xY>Q7�$���w��IIY�g�vx-.ԻY�ʖL�.���*�l��1�3u��^j�b�mԪ/+��f��t�:��5gz�lnl��/+�[u/��jkcV�l�5���N[��藗��>i���K����y����7�O_���oU:}��V\Y�N5T�1��_w��ȓ�`gf�Y/�����z��W�=��|��Y�/���~i��y��7��V�bd����ײ�?W���?��m�G����@��{�v-��:]5̌O���j��go�5�&�gr���],*]�6:f*�j1kKD�SY�߹�E�gX嫝�t��7����֫컦vj���k_����Y��|w���[ݱ����B�S�J�S�c[~/O�޼�u���7=H���ɪ3p�i��t�bH%ʼn��O���g�z�Q�v{��7ʀ��N�h����f@�}��F���u�����νo_?����oO����4�������h�.�5K�f|��I��כNn�����N�l�ٻ;�e���Z_ey���VŖ���a5Y��$�Y�.a�b����kLrϦlܘ���[�.�.��FW:��T�=g�t��s�t��+Usr�/GS{��7�������Z���}/�����&\��L��5���|_�v�K�&2}��S���oК>���]#���Z�~k���n՟]�|N���"����X��m.jL��o�ٲ��W�w�n�=�,�LS�.16[dVk5��ߩ�[�NuU[b�VI���9Ќ��Oȳy��6w�\Z��E�����(�,%�]h�OEן��˹��|��>�w�Ln����=Jr��5q�e���z9z�W��f\�h��2f�2�z������N��<(_�}\�?C�ؿ-�_���WIwJ#�^Rρ���������VJ�|~M�~���E'l���. ��s���/].z�Y���h��e�o��rc�a��h�W����
K�f�K,�$�\��6i�q�b��)�ΨK&���5��ܫ0Y����+ά�K��)��,��odz��\���No�FmB6w��{�u�"jRbm�����\=;^M�5��b��]�@PE����[��h�L �~�鞬��yy�׋��	����~_y˷����˽YY򜾁oD���0Xk��|3S-ԉvw�l�u,��M�����y��\�t9ݝ�(���gM�6��Β�wS��[��ؚ\�.f�5��Y��+(�kL
|�su�r���v:)̶�*Z�j�W.i=3�/?���Y~�
�H���]V�5f}_�䭚�ҷ(�s�j6N7>��}��/���:!1 "Q#0@A$2R3BP�%4C`aq�&��.vߨ�s���s���s���w?���9؟��v#����s���w?���9��;���s���s���s���w?���9��;���s���s���s���w?���9��;���s���s���s���w?���9��;���s���s���s���w?���9��;���s���O��6�sm�#���9��6��9���vo��f��l���f��vo��f��vo���G;��s���1ͷ��l����G6��9��#�?�9��#�?�9��#�?�9��#�?�9��#�?�8���s���s���s���w?���9��;���c��f��w?���9��6s�?�����s���s���v?�9��;���s���s���s���w?���9ؑ�p�#�?���9��6s���s���w?���9��;���s�#���p�����9؟�9�|1����9��;���s�����9��;���#m����k��{�ƏͯϬ�O�~M}���?a�}�g������f�Y��k5��f�Y������a���k5��f�Y��@�f�Y��H�o�u��f�Y��k5��f�Y��k5����f�_}f�Y��k�hf������_��5��f�_}f�Y��k5��f�Y��k5��f�Y��kι���G�θ~[�-f�Y��k���ɬ�k5��f�Y��k�f�Y��k5��f�Y��k5��f�Y���9��k5��f����k�����h~C��(?��g���(��k5��f�Y��hf�ha�oͬ��_}�7��������kﯶ�Y������f�Y��k5��f�Y������������؏v����
��k5��f�Y��k5��f�Y��k5��>�f���P`�����k��y�����-����.�l��m���l��C������l{��C43C�h}�?��˼�o��o7��o��!��pf�y��o�?�lg�{g�{g�{f��f�\�=���'�U���I��4�}��(\z��a������5���Y�����h`=��=��=�C��ѥ/%z��Z_)�!����z��"!C�gh_�'�[S�5ݟ�2ƴ�$v+{MY���k5��f�Y��k5��f����`o����k5����h~Ma�o�oﯶ���[Y��k5��f�_�v3��1����}L�O�iS�!ǵ,=�G��x�8��A�8�:�+�e��ɹ!%2~2�M�����R0�`��k5��f�Y��k5��}��������������}����������}�{��X�Y��،�k�k5��f���Y��43C43C43C43C4??�M��5x�����|]��+�
�����3�d��jE/�v�`��|Q�D�VyD}�)^����I$
���\5[
{'���Z���~"�jh�b̒f>��o7��M�S�y��k5��f�_mf�_��k��Y���Y�?-��'j$�}$�CK�<��պ-��X~��G��ʅغ7RB�
b��z��S�,�'$~�IV@�j�XZ;(Z	��~ƈ
�MJ)P�@rߎS�lCk��JF�X�յ"!��6����5��g_��Y������Y���ˬ�k5��f��?�~[��}��u�sY��u�f�G��f����x�y/�C���Ђ��7Xx�<:��>W�e/���fh���%����Z¯!Zj��[��I��!
�95,1r��
נFt��NF���Q�Hbڇ�e�砬�ٵ�A8!���f���TΦ��N�=�،�A�}�Y��k5��f�Y���������������������������?O8�Il�-q�%���H?T<�p�;C�g�%�9%n��wH-�y{�Z��y�Zޡ�`��]��<�Vp�]��B�����B����F�MId�򛵉Y`[)BHl��X�����o�|r�� t68�vб�W��N����X�}��Y��k5�Nh�u9��9��S�Nu9���o�p�#>�x�<�>�m���x�IH�K�q�$�a3�|�������oȎ�8�de�e�w��tn����Ǵ>Ov�C��Ng��5���i������Ղ߼�+R��ZϨ���un��N��uupO��J����B�Y�8���I5�+�V�H:ʓ�|�O�Y��k5��f�Y��k5��f�Y����}���f�Y��k5��f�?���������k5�f��5�f�Y��k43Y�����C42�inY��e�?���J�U�)�����}_�ߎ����	Pp�p�P	_ˣ�.ڢۭ;�G+Z�o���N?���^3���A�a)VjA,V�IZd�6��9�{�tX��2A;Ez��Z�ت�A�I��F4_���#/�.��Z%:5��P��'��,�I��L��+�?�#Y��k5��f�Y��k43C43C43C43C���濢F}"�o^w�+hzV�;+h4^_�V��~�r���#=�-����?q�9�a5�9�B�蓗��'�w���=�Oq�N^*�C�]��2�i�^��"_�Hs[9,�VYcYqƯ�	�x�^?���őzV�N���g�a�AZe"X�E��M!zM��ߢH�2�ю�jG�����s�uι�:�\�s�uι�����=����=���mf�Y�?'��O_��/�s�xȾ
C�q1V��R�P��v}T���sm�)4���f�Y�泶v�/�I�N�H)�[("��_��7Z/j���1�s�+�^�44�*��KQ�Os�����7�P�3�1��/�J[��pw�0j�$_�rm|��Te�����e��X�]��M4V!dĕf�Y��k5��f�Y��k5����7�����?��{�a���X5�$��M�
����S����F�}���X<kǺ@ux�,&��=��Fh�� |��f�ID�g�:�y:QN�g;?�qܺO��u�e���?�VKZD�6�߱���1�$R�*�?�ӕ�1Eb���DZa�X֙e�B� �T_q�(C`$j�c��g����r$`�\Bz�(C��G�x?��k5��o��ā�%�?5�l�z���T�G����J��a��<�O+�I�6��k�=�l�l�>��gPsZ����� O��h�Zc
>n���������,>`�a����m�ü<l��0��Fm3��i�w�w.�7�e�1�#���D�0e�j	9+�x*W�k�,��ԛ�w�U�ڄ�J�f���Y��k5��f���f�Y��k5��f�Y��k�X>��f�Y�?-����y��o7����y��o7����y��o7��b$���}���5;w���7�
�b���k_�`9�s�zA�e���3�u�)���}�v0�)d �d�m�WR+��碏ڟ#5���0܍"�ԻV�*Y�uv;>�h#�d�@�Yd�+B�鼕$�/D��)f:s�#�
�V����_d+d�E"�ȭ�|j���6h��	�P�(Y�[�+�!v?mf�&�Y��{���f��X3_�_�G����t�n���/�/$�jx����{'%~�-���-�{a��?Ѳ�lW͂0h/�F*��@��RT8%�`ua�氩�0�8Q�||����@e;���j��	���W�z���y�~�R�ҿ�Е�Ԗ��N�4��1v�v
�D#d�I�BT��-�%�X5���1m�������^Eֲ�V��l�����JHil�`�``#���p~��������80�������o�֫5�QT����ʾ��VQ���z�w>���>X9nhp�_t�ps���0����msL�;���I���o���Fz�m���K�l����w�~������f�ʼ���!.,AG��^uh$���G��l�I�Cu�Y����R��f��;�h<}[<���8ː�*�zȬP�$��xP	0���䕒u"dV�^-ZbZ���ܭ
�_^5��zʌ����V���3[Ϥ�0�ߞ��/�#��`���i�-<�uq��Vwr�`$f��h�F,��*%8`ptm��bN:�WW¸3j��h�a�2���cI��{��lg]c���!���������0�a�Q�s��;�I�:��^9��eR?E{F�����E�;��$h6�S�����$܈Ej5�
) P���?]���<8��)x]e]��8_/ҭ��X�,���j�c��lE�["��
�������������x�7�s�طҁZmפ~.4�-�
����M�>V�	��o����ƌ��.$�F,��Ԍ���cB������2��Ec�T�:�ͩ�E8b��ˁ��௹�ٿ�2�#3K7�h�=�԰KZO�|�2��Ž�A�T%���($���3!�߅�L�x�⠝�j�%��}����/�ıVi;�~��_@}��1(X�/FF��*I�I]%^���ߌհ��7����_U�S�d*RU�IG�����C4?.�hf����x��8z���U��>��Kp�+K��P�zX���tؑ Q��������+���#

�1&� �0N�őN\$�1S�W
�jtzȟ�~ �b1\6��7�����Di ��'�f:��y��)cR�YLJ�NlC���H�㰋r!tCf9*��u�փ�m���YA:9<P�R�cIPq�����`�=-�PFx�וeI�Z!�.��;Eb�F��}+-y��r���:���A�k����Y�N`}Z�<i��ZO�MʇV"%a��
�=����#�k��Y��k5��P�k5��f�Y�]Ts����|�wW�s`��V�Iz�^#��ԥb�����I�������gQ�q��'L3l� ��@�(?�c�9}�Y�؁�_�8bu�,�pJRp�c=F?#V�\x����`|�?��5*7�ߊ�a
�I�D�Kxkη�� ���T��?�aw�7j/w�gH��:�O���Xh�Ĩ�r�d��8�6q�ii߃`<wc�x=/F^��&�~"~�����YۿF�V RQ��-��7-^Y�a��4�X�j�U1��E�^�U�F�b6B��Gk�`p?�������k���f�X3Y��k5�����}��dq���q�y<'�b�/v�����$����}e���;U�����p08 a
�Da���)�$�T9�6v�u�(���S�)�;����ň6kY�w�ky��(��8���U`�ޔw�^k�K��ћ��D�YRo'�fU�#,�p�Ck$N��%4FNR��@�+N�U���,G[�I@��W��H��;Ju��L�H�"�)ޝ� �#�Y�f�q�?a��L�w��-��ؔ�L3��Ѝ�z�Z��ۄ��.+z����2J��I�\��zRiS���l��#������l~@>��C:��3@S_�~]���=���=�����7�M�N� �e��0�|��a���\�r~F���\����b��3���.,��N+����k�; �IS�d	�=�V�9���'����,�H\$���o�V�O1zB�(@D�8���EY�O��%梎��I��K�Ys�t��i �g�j�f3�@���sRv��}ԇR4	�m�D���`~*��3�����-������N��o���0C�jU:A<u[�i�i8�Bx&Khn�R�6c����:>=&F�m��!�KR����楸�ᰖS�p�Z;*��TȢD��I#�A�,S.�+-��>�/��8nF�&'2�.�g���
J�
�����}��~���&�y��o7�����u�Fk5��P�7)�ףU74D\����%o�W����?)<�4iD��X��X����� �����躟��%u:#u#G;�4H�q��L1���{�����0J������?}�P7�����4i��5���d��z�����֗�����I�S]�Z V 7�bF׹�$�$=\W���E�-�y:��j�n(�q��Z�)�J쭵S�Xh��pNݶ=�_F�Ĩ�$��^>cI$����-R��x]$X�����I�h�E��ũ�%R�^�n�E�b���2̝q�*�tDf���Ѹ�T�VW��ֿ��[��$�c���������+N�$�NY�hX4��14����gX��!�V�9��l��o�`3Y���Y���Y���y������k�|��2b�����av�Y���G����`)��K3vb[�>1Wy�(���!���vK��A��mp�$c���Sن	S�	X7œ�0�8a��,߾���ˊMX|MO�HE�������yI�}~o�w�@�s�Y�*�C�.*�I����U��R3՘D��漊�#E
��F,��n.�D���w�]ҾI<�+~?���f5I��e�U�!���򂎮� @��)[n��'�B����v���1z��e�����h�^�p��%|����񽵋kz����
��䍀�?��*�c����3��kA��-p�M\��0Ѹ`�񑽜�S�����,l����܅#��Ay�!,�P��2��k5��}��0�G����~��6�Y��k5��f�&�_o�g�Nv���j��G�j��B�w��s��P��� ����ޛ:��yRK1Ɠ��g���g`A3��6+�,�~W)�#�Gα�c_���$���M �p���N���E�F��S�]1Ѐщò�Rz4֢�;����	B�����ȳ�P�sA�[����+�KqXq���Z��K ���ױ�OE�(�$�8k����8���+%.r�W�R
���	~��Q�7Z�vI�UA�!�#Ȓ'�x�3R�-c,��[T�T���;�:Hf�}��B�UƔ�F7U��_�I��%�K��f��t.�J�@��,��r��}fn�%�����T�)bU/�w��p�f�iЉ"S���KU��ҧ!A�&��7�붰h�������G�u�sY��k5��5���f�Y��k���`l�<��꼖������-Zt�U��I�*�i��3C4G�9�8b����t_}
�ƌ0F��6	n��р ��S�of\1��6��pK�A���tr8̲ރfe���`̰B��_�Tz��xqpG�8��ƍ�_B�/ߒ՗�����y*O$��V_]Y���� �[��tK�ߩe�*	�j�%I?��&��ksfs�њPzo��HW��&���h~Zj�j�M��-�X�-29�y�#CJ��'��e���Y�g�<.�GH��!$�k��l�Z��e���΂�p/�v��ܮ�F��$Ұ�$�I�NYj�lY���2�����K��F��`Ea�O�K�#��<J�Q�3���y��W]��Otdu�2��
SE{|+[==3/	z�ެ�����)�x�PQ���h����k5��f�X~O�f�h}��x�湓~��d{�Ś�>�3�E��� ��ܔ��'=ɶ��_��(#=���H�9�%�Z�`њY���Qw�)�z3en:���T�@���9�kiʵc����g$T�lw��Da����9�.wk��y�~pf����5hSݻ-j�I�
O�I�f��e6�x�T���2��;�O'j��a^����N4ӆ��F�
?��Y+�M�n2�O)C$՟Ӌз�וe"�#7�����2H��K0$�>*X^:��$<��P$7(A47���?�nb�e1��	�K��b����Ֆ��Fhn�$R��e�ч��$e>V�Zđ��h&�_�R�?���eI�҆��8�+/P���MVOF�$�Xm�V���VS�Q����kY�l�i�>���K,~#�9�αJe��l|#vT�$g��8x�֕��`�H�GFj��t ��U�3�d#&�^e�4J�c�+HKՔ����q��*z���'�m�`��
�#���S��sY��k5��f�Y��k5��}�ךݘ�WN�p�t%��U]�@8�Y�"�>��)�(�!����8c��~F��v0e
vy�R����(|6�^8q3�� ��X��{t�2!b2M����.Z�):��s<�T��,�벰�b5�*n��!�&��n"%B����d?Ȍ�H
�cw%H#b�,
��/%u��Ѯ�Hi�I�<<u/�\���%0�kq܇*��Z>�r��>�UgA��A�5�bŌ�'h]����ȃ5�"���i�Af+��1:��&�%H������������%ӑXe��%����������֔IZf�H��w�G�ֆ�?��?z�ڄ�F��1z�胢4U�(H4<���@�S��R�,��J��b�Zh����9��B�b��_�6Z��+(�)�Ÿ����,r�aN�$,��9��TG2+��Xm���V��UOU�[C�y��T
߶$���,p[MX�_��{T�P5�b [���و�2$�H�3��	a�8*vI&>�7v�g�1u䉺Z��E<R�#���!��}��9��I�p�n^z�m~?���[�7�C�q���,MnԶl9y���sg��+c@�v�	d�#<ǧ�B+�:r�q5N�?
Im	mv��b@�è�<U'Y"	��N"E��:ڡ�42Wu��f��
<2���e�I#!����Hu�;�C���
���~a��(K�%r��h%�h =E�4U�!h�t�ȵ��ީ��NC��	ڊ%�&�H��Fq�k��v�����
O�P�q<E��	�C;���D)2+��h�ԡ,��K��m�Z;����/F�ךX���%U����֕���S�d>�+��-V���w�.VٌY`�����\��u,<y�n��)�.��_���4��r� t�;�-�Y��+!�瑃I9Y׆��"��V�.��b:�$�с9c��Y=P�)�'\��Gr9nE	E��RIk	T0�k4R�Ge_m���\!�B��6�5l��{j���rTx�(
��A��z'ӟU�ҙ�^����%�ѠwWF�(%�z1N�� qc� z�a{5�6B�������h����k5��f�Y��k�`���u�:�Q�s�uθ
�\+�p�߇���X(V�	|G�խ[�ۃ��Բ~<�~[�j�@��ta�p�_�����+���p	�r�5�ӊ�j�C/-z!�T�q�S3����:�q���H�gi]�0Hj*�����uk�Dt�
H����Vcj����%Ye�52-��C(P�a2W=���4B9ؚ�_�Wי$�F�镓�,t\�h*�2��m�$�j�ú��H��*�5�<���4)Y�ZA4ޚ����%K�x1��\��uS�NG�i�9?�^1�Ѿ\��<b���x���[���,��Fw�X��uq�:��q�ɨq�ثk��QʯJX���Diy&�,V�D��K��g\^E&Y�3$X�:>4[N�
�*��!��cm�fѷ�^�[�e�El�^�7vѤ�e�.��F��Gz�Gb7R�ά� �s��rdw�L��v� ���Q��}W1Ȫ�*{ӞZo+rH�Y����V�e#t3KP|(M7�p#Ӡ`�)�g�d���FX���1X�e���'�W�b��c�u"+�q�$ԲЏRx=��%RHg]�*�N��gc4��"��v�+M�Z�{ԛ��l��KU�!����?�����)'���
�g欮�GgC�g��p���{o�F	�*�����1���eU�f�u���7���0<i�0wܜ��~��j�*�����K��G&Eڱ,}Z��e.��X�D�,a��I4nD���?M,�{B�9R$j�4rIVb�&�'�)"����Ս�Z���N�벝� $�!��%�h����:诱g�vGꓪ��}�wJ�<��Q�or�n:5���$�%�
�d�V��%j�H�Te�j��A���rR��vo-����&wN������c�i��$����Υ��'P�RCW��|A}?^Y�3w�4�$C�0+>r�j`H�a:���{����T+��zS�v5ݪH��(�$���sǪ[V��!,[5�'��:�ȥxOdwGnJYS����-�ւ G� 0T�E�K5e���'!ObZ�v
�j�=a�KȬ�	�œ���gu'`�-q�o�6bV?¯��xȂ�{^�%|V��A�du�-���u9b�kq��
I��Oލ��kO�WVZ�I?��"�e8' ��jV�'wB�ށH�h��Ӥv�lE%v�����Ƥ��f@�όVrZh����!������������`G�D~Mf��C<'�[ȹ��t&���|d:D�nE8�'آK���yg�~��>d�`�F���⛊�<�����jp�H���[ո�:{�w)��^(�=�Q�U����T�����.��J��H���64"rw��=�m�f	��du(�;Hg����፶$N�lZ!,jO�B)�f��F'�Va5 ��2��%�K3E���B�,t	&��h�@�=�N�=RC!%.4^��H,̤�X��$��چ�h���Oj��k�(����r�/�k��?�7{�y������j�E�q��p4~��9XlQ�4�y|&$O	���$c��'d�`����Ḣ��#�?���~j�!���+(�=kw8fWi���-����|1uΤ�δFC<��#!NE%��$X�a�FY:�iE(!���m�z�+�?*����UN����i���Y�8���֓� ��N��"xc|~�.��p��d��*K	�4Ԃh�P�~�6�%����q��w�3���!%���ʲ��K��e�1\�9/Fre`�h/B�ad�ٮ�!r`��` >��	Y	��
��I^�n����t��{pІ>��1r�Zu�dC&�f���1�j�BE��Pۂu�8޴?���_}PfP�Y�?���L=�i�؞:�Z�B�G�
��п����@?7����rJ6*g�pg�9����/Uy��:P��o`��.o��X���fb�*d3���1��#��]#�-ԯ��e��{b.̋<qۋ�N���h?B1#`GN�d��Uuw@�D�0��V�ci�`�V!��nD0��ObH�x�a2�6I���4x�̞�l,���5r�!G$������:�9}	P�	�=x��U�hz��nҩ�j?�l�0ѧs��fO�s����Q���-�x�O'�
��.��)R�|��x`K2�7��"̟NV[e�����<O�ʓ�RK-w� �[Z����)��"�`�1��d���[%rz�.��H�ku�>��)7��_�gEa�1� ��L�G��1r3ľ���5���*���J��$~_T5h�|�4F��.^���jPˬ�,t�3��8
ݔΒ�� �#��I���]�{�zIK����َ�p���f�����5y�T�W�n(KJ��x+]��b(�Q�����e����z�1�4S!�9�����,��$_Nh�TZ�I�e�f{tۤ2�dv�*ɝJ�`į�ɒ�U9J֑@�h<rX�
l֒��Q�t`��[���N�tY��6vɸ�z\����k5��f�Y��k5��f�Y���Y��k5��f�Y��������_��;AvE���X�y�?��U�(9�r��צ�������2�����dK�3ȁP�p|�o���Ƒ�J��y5��VR���V�W���lyBD��$�zȮ=k6�q�Y���E��蠂���'gdU��%I{D�ZCu��j��C$:mN
����@Ř �Cj�Gh�5U,��?���	�c���%bd0�68���#
�qV��!�L�T��H��l*�'I��@6����1�%y�e���ش���\��}�����'6��TrS�f�*\�g��H`;�4'ĿM�K���5�eϧ�O�̶%�$ڱİ�iKd��\P,B�-s����d�ۧ2=�.�
��ljY�\���E��X�c,17&���w��8���
6�hdR�v��?3Z�%�3}"q(��P��c+�E��'��NZdC
�<�/��[�Y�J�Q^=�$G�؎VBG�Cb 
�Ny�A
�"9&��7�+��C�y�G����n�b �H�`��`5��T�e�x��u��j���r�Dp-�%It:��Du#�l�R��ܰ�+�r6��l�����"
��_��b	���B�#-�@,�~&���g�4�4~�xoc��q�t��#
�Zv���e(���B�y�_Q<�[���VF\�4˞�!�R67�A+A7�އ�>7�K�Py��NU��V��fEH�T����Ӵ��M�}F���-0w)���*�	GN��)!_�0������ͥv@��K�K��b�����������!(C$�9�+#ӔEm�����l�]d�4NvP�BG��J��t��l[&9c*A���t�!#��v�<=Y%��
3qV�DOJ��R Hu��<V�vuac�w!Z������_w�a��lCøa�΀�|9��Orv����Xhܒ�_@�G��i�������%c�#�h���WX��G�\%K�z�/NX`�h���܊.`�@�B�2�V�j��4|�FG�80h}h�c@@8SYr/V��F}%�A���Jލ�R�W�T�1�1�'!F���e�hޔ�Q����*����;�V5"Tyk^�y�E�;X
�Q�ՕfNJHN�FL�a��9T�
^y"�;��A�oD���'��t����ĆBFGR��'	�=	e��o{R�qٯ?�?I,�dr�gVIA�F<ŕ�T)�?�i$��-Ȇ���;u�����0�	`rT�”�5�
�?���w4Sf�����gҎEV~rxz=/��ےf>��o(���>RIe�f�g�/�4G�W�]��>�8"~o���9�<TWy$�$Q��vC�o9�9QEt�:D#�`!
�n���).wUք�	��Re�
wb{�ȱurJ8P@.{n!$N�\�&�c�	�t=k̢]$ѴU%��3� ��K]'ӫa$���е�H�L�W� �ў)C��h�+�~J���.�a;gV�����UUYXʀ՗�A��!�Fh�j���4	*�6cw��N�чN�S�Kv�iӧ'�D���ms��T��/u�޻����U*P�jK�=
Wz��Ug�:̯Z�]���d�v▜��	��,ͣ���c׳)�	��y=h����^H&�%�Ӂ�}�~0`���PFI;����^j3�\-���Ux����_��nRYV+�����!+�&��r)6�a�}@�^9q�ؤuB󈼖;���a�;�D�(��ΊN�F`{v��q�QK�Y�$�=NǶq�C��=R"��P��^J�P�(��j9J��[��؅d�n"x#���Vk��"�\M��Օ�a������Z����v����g�d�ޯ,ʳ�#utx@n��;#l1=��{��;¿?�AHm"��
�8Z��_����
�[���h�2WJ�`�敽���Վe:�'�<z�*Q��
ƭ�b���%X� ��u!�`�ÒKFk�"IO��3�M�Y��UtX�{a�>us�]���`��#�0����4���{�$l�3t.���u(�,�[�)@"&�2:���@��Lb�$�b,�R��=)�#�[��b���U��̶�~��VE�RY�D~%���:=�dG�J%�A�"Kg5p�B+��M\�a$B �O9VY�,o4
�<��ɝ���	Y���D��a�0��U��%C�v��U���Ҕ7/H��ҟ;�Y���$����,er�`���\2�A8�0o�����φ޲G��$�������l�i=�,��BP�~=؁ZAG����o��X�"ujKQ�QM�I"+��X #9Ev�*|e��ȡt����؁��j�jh��xXddo�Tպ�.~���ֺ<�,�ש�29d�����y�-CK#����h���Yx�@%�"K�PK!>�hV�_�y��(��V�_��n՜��DN��z��!�ұ�*��)~@H�C�ҷ���/��k5�N��>���ұh��O�5������-Z_q�?p7�Ni��1@8xW���{Q�J	��.<�I��t#�_��n����A%��r6�@����z��s�����BJ�tW	o��p�C��@4r���1�p�Ȧc�e�� �<q0
 x��DР1Y*�#�8H&@
z�0b�h��(P߆��Bc),N��$E|I�8�X���QP���E�y�EJ�
�fDz��D��P[2vG�:��BpЩT�a"2�]DRE��)Q���1�꒾�ju�EtR�?�#"�Xc$%qj���8����UC:�/��_mu�LO��z0ZO
H��R�F<u��	-�0��z��X�z��b?S�� �d_�p%a�Gg �(8w#�7�xO�Ȑ�%�9ſ����d�:of�4�l~ -0ŗ'Ed�~*�s%v���y�>D�c��c)2MQ宓�:�u
QB�4WdU�"���P��X���� gD�|Z�R����*2e{�k�Jz~&��k5�2�x�ޤ�Ϗ��]
�
�9teZy"n��j�{�%1O�Cل��c���Ux׏{з%l{7c꩙c�5[�*Tf����*D2�@'BQ���K*k���������$�?n��%_�|��t�I�?3ʿ3�Km��q����\F��#��B�%�EF%�c��{0V� x���%�^J�߼(e�]��Dje�,ĻH����[Oe��A�J���qȦ%2�`yP#@���NUy��Fr�B�Y`���G�a�K{D�J�Q�!�&^�w�G�$��0��w`�(�'���tv��C����D�,�"AiX�d-@�	":�bx	���C�]M);���*�%=P�İ�˰�]����i$@�2�v��R�����	�oNH�c��ɔ�=d�l��DKu�WO��
]6ks� h�A��i�9z�O�iOyЄ��q{֞9RH�t>�Ύ�r	4A�n�[��գf�DV�:��vN��/˓�7��l'xI�)�Y�ǜ�B?{�K
���Tw���+H��b�n�ʉ-i�a�I�Z2�e
5�.ȝ���I�42����*��֖Z�]����R��C!�X�r�-E)�9k��ȡ+�r^����Ms��)�u ��FK��с
�	
��+��Ln"	TJ�F���Q�Q��\���s�Z�	�ј~�^�&���iնA� [�W ]T�&I9X~	jgT�>���!�[�
^n���<e!��hӍ���~���M-������g\�(�@�|'��J��|�Z�q\mz5sr����b�CQ+F�$�FH�D����Hs,��4����/&�2+G(`Y&g#�#�1��2'��pؒ	Ƴx�Tܑ�?B�zt�#Ƅ��,��jX�Lu�d�C�)��!F��Rcyq;)�t9C%�d^�m�9=��!��g���bB��F�4
>�"��u|Q߰��6����\�"�h�,�ԆII��L���YB1��GB^"����h�++�E�1
�l�cs��@c`�H'�V����ڬ�-id�$I~��f��<�'�Տ�Pz��C��Z)����YQ�2�>�yz#-)@���fV#�o�#�LY��m�NuwLJ�?K�O�ܽ�\��Mb~h��]�>޾�d�l�bv-�٣wh��z�d��j��4m�2J�`O-	K��o${�|�=�}� �c�2��D"�����>-VʖxA�,�Y�������M�-/(��ˁLu؏��H''����+!u�������W��$a$�mC֚9�ԩ޿JKԑ�%u��#�d�
^��R_���������OD��.�)-2{DE�\�N��p�C�p^y��fY�r�A���R���[<C�7�f���Z�^V�$�켺��a9;�{Ԃ%C��ٕKi����C���Y�ɞCd���H`dT�$�'P�U�N��w�$y�9(Qe��A+��L�Z%` S(��{���?YIE�W��,���L��/�б�J��t�dE�#��;��3w3���ZDvc��?HHѼ��1��V7a��,,lcR�dB�Y�2�[l��Ԃ�ǵ�v�*��Y�C���`��K,r��H�:�`��ĿU+��J8-�N�w��H��`�$'D�
KV7x�^����7�-�`�j:;��B೐s�u�,�=G�"�}Ӗ������ � d:;�~����}�8�N:q�Hl��k��o���U�\3�,��AǍ����F�F���iO'���N�r�o���J��B�]�ZSs��k[����x`��.��w���d�J���-~V�@Cs���?���k�9i����oV&#="���?���P�C�^��C��7
�����X%�,U{�Y/x�n(烉��F��@��k5��f���f����k5��f�_n�����o��Zk��D�x��oM�#�#"�]�[�>>����.T�5�Q֪���
�q��ҳ;�LP�����.�i"�\�(O�uRe�I�d"	$z��QD^�i8~�N�#e�D�_ʐ2�3��l�YaS݊���"R�@�!	c١�'c8��<d�#�L�X��H����R�9)��#u�-$��L�af2’L����7<gՇM�~�e��A�V�QKz�E!Y��(��K�BY��<r)�l���+���Ş=ʑ��$ET;IV=�����S�!�Kv4EQ����+ �G y��TdȦ݃#���'��H�$t:���uƪY�����X2� �M�Ρ�G�KZ9`,@l�s����rE���W�����s�9��PV�Œ.� ��Ijـ�&GT�0
`�o�3�h�����L��<�?c�|���$��E��"�Xп5u<����?�Zzw��Β� =�>�`d9�蓖�BB�)Z��bL�Q���+a�=?�ְf�sʫ�(�(+��">�(��4�	��k1,���ר��Dp��K]�1X����!eG?�Zʘ�:��}A@cUҖVڱ5��f�Y���L��xW���h���"�ϫPhP�Q�eF��
�(gPp¤g�pOF��x�ۆ�p�a���KvI&_h��1�A�#F�a��&*\���|D�=dj�f��ʤ���7�x��c]+"��wI�ar�p�18������s���,ȡ�Q�fQ%i���"N�f�7n�B��o+�#xR\hhͿJF��%�Ϭ�����a�uK��:)v��Q%]�=��XI)#���uI�:�"�_f�����m�+��VY�ؒH4���R2�OISD+De���!%�rG�M�x�!���G:�x�6�����:�um#�);����<R)h�����:D�+&�
��ή;�a�HB!A��Հb���3A4�V�|�A�'�ԮR�<)�E#�֝^F���Ќ��\�g>���c8�����E��a��Ԭ=���g��eY�ӮO�Ѹ{K)�U�-ղ�����MI�̢H$Ich��NX���u�vj or3x0�EE�X�'5�W\�0��OmO'~����oËT�ٔ��	�Fh�vd$�ዏr�`1I���B�[C=N�9�ԕ�UP��%	Ve%MD���`O�^����ᐔ�d,�#�!#�^v���y;%Br\��[����&o��3���}g�p���麾9D>�y�q�Yd%�J�bڿ���:�f�X�3i�����<�9b~���D�#�������a�ıLW����T���ðg�J��M���ģvIu�Q�+*/��~�鄩]�$�ZP��!�uI��6Ay�����⟱���%ddg�I��'�
���߂�\��Q���i�g�EfhXv�9BE8�J�T��NR@�))D�z=ϴ��m:!*\$��,zƁB�ꫩ��}՗&�	��̽z<�]0�i�A�+(Uew�1
����ߤ$���]�͗ޛ�ʿ��@T]t�C�rU�hb�a �s
�o�?��C�%�j��;��(��B���=,�j��.�V�L��x��X����s�-W���ϓ��pw��-=y@�h���Xڼ��F����K��DXs�7VPT�T��"�Za'%V�����0�J_d�q���iB)�.X�Nor�l��w�w�q��� |��|-�
QΎ�^P� ���!"z���22��dT��s�ȃ����ўZ��]h��1O/X��R�f�����z5ay����>̿V|��<8�o�:��N�:�ph���9
jT�(���4�֋���y���V;�)N	=;1�(!��%�f��$�Ձ���*J`�b��6��HGe�X>�1�̟���	qlH!{`�ZT��K� җ��M�0W�����3DW��Ot3�:��>��^	JM�C;F�����$��;�!FQ;$��U؅�Lb�ʉ6��X$�;E%/1�� I�.�GŹok�%㧗Í�2�ຖ�˴����!�1e��r�-%^���r�왙���*���PgjJHS�W��W$	"��$`�][���Rאy3;��zd�+mdɀ�A��6��	K�(�:�,�ξ�q�;�$�Բ�BÆ%P��@!���(]:��	���lB�b��+��!i�	�H���ʹz̆�C})���̏U��*	�f%���EB�#�y<Z���cw�o�I (T�z�K1nOC���NȳsuX��i�<�:�D�M]1::�̇#~�|vKЬ��`*����BA������}�!����(>V�<\2��.��s����vS��W{5'������,��V��K`IJ���&�)���N� ����r[Y�1��駎���-'�DAk��O���ya�t�ۑ��b����T�o`3¸���sB�p�sd7-ۂ�3{-E��{[Q�&c��QV3J�t`�ȡ� $aI/%�Hb0�RDB�+�Rr%����@%Uͺ6��ʀAb�,���Y��:��*�XB��J=�'Q`��I���@�K�X��D��0�Xz�KIR;(��,2��z�	
3��Gj�b �2e��i=��xaM�w�\=�o	(�$wGx���("����<��SV^:i|Q�OS��ԳJ�2Vx]0g��X�>�NZN�%Nʖ�WN��
M"�X��Ռ�Z5b�iC/��x�V����*��O�O��PD�oD?�\���N��U;ɖb3H$79���:�/�߆���Ydbce�N���
�]�E@Ą��vS�4K�u%�7��2Jcr�*Zv�<դ��:n��\���I���8�;�H��X�^�8�RDe��A!�n/k5�S��o)2@�>1�J�̱�+���Ƞ��#�D$��f�?�:�$M�吤�e#��\)��Y�<�7��h;s?I�����^9W�=����;�`NĒ$���O��$���2b<��e'*���X��%0�����l��l���:S߹
J��zt������[���y��>[�syO���_~���O�}���3�#8%��M`�41�C)�s��K,�Yg*BD�{���
W.��(@iK+"�����sw����!13;u/��ݖ$I$�@蕙�����U��_��S��&@�FQ�첞�pVQ�^�Lx;�g�n��\9�[�o4h@pq'�/��Y�Մ3mȰ�4ɝ	}.��i�f�$Q'VD�3�1p4h17�F ���= �-X��t.��+�n�d�K@�g��X�����Gx�&����BϏr z���J�-,�ߎ�
Ğ��n�4#}�]�U�C)���	����N�+̈�r$�+��x�
$В#?�Ļ�c)�'I��j��Д�^��
+�z�
�z�"b2<o$N�1��w:B����d� P��<�Rt'D�
Ih�&3�ePrI߹ ;g�$�Ȯ�$ʻi��a)Q�zJ�����Pҵ4f��^�wf����E#��S�hS��M3@q<A�ethJ�`Q��wx������J��ўj���(�OY-��]�s��K�C�����
`:#f��1�:Cc>�Y�帷��t����D[�1��n�=i��U�/QC:N���G(s�mK>F`l�;�|{V�]��4��@��ߧ^>`��+eXKGV��l�)���J�o��'�{}���jpC#0Xՙ�W��8�p,�#�PV�*%��#z\�pъ�V�4��Hؐ;}B��\�Y��4$x���u����Hey�u��_������{)��ES�MUZ�
N����'���WDѫm�tVTG�I�t¬��Q��΄(ĠlX�(���d'cFe��։%�b�����t�u%�բn>U�OZ5�U��?�j�%�N�;�2aL��S{:�<j���B��*��yk��SbH���&��9+yG#b;.��佧�74�/$�_��Ԟ���Vh>�vV�2ʈ�0P����ePRRun�P��U�`��!K�e���e��C1�-H�',qZh�*͒?v�:��H:Q8�j�="c���S	2+��{�x�e�,���0@�&�C�	Lj��G"&W��z����
.�Fhѫ�A��#�$*��x�d�rE����NPƴ�d�|�I���o��u�6��Y�6���^�N�������	�ʇ�Z����81�!%0g�V�����?.��ROʹ*�	u�#�{�����H��8�X6Rxn#ru���JIk+�����cpAɧ�
��[����_q�w��~	������fZ��qT�:�)��������X���~�v��]aM�l�� �� 3?5s���*zւ-�֊G,�.	��N��2��=�p�d����C���Nn~N�+�NV�Z~��&U�Gk�(���e���ӌ�&���<�W*wE1�"1�c�eQ�3H�LR���"��k�{�X�®�){���bl�+�H�(	*Wv@C��}C� 6�!;���0,�Π��Ґ#�MǪ��U=<��-�v!�j�ڼ��,_��H��ZVN���j� ��&	�a���S����T���4;06O�Z�Ox#w�Nѻ#��k�K";p�?	�9)Mg���	�$�P��G����Ѭ�,	�RQ��e�a�@��U�UU@2�%$
^�,`\d�
�1�~]H2��#��f��Ad@�X����Hc@�� ��4���tYU�J�	�@�P6�-
ج��K�� ;�K��P�1�PH��}�0
{*���DIJ9r��.�5���������wj��g�$�Aqj�|5����5VE)�H��B`�b47�~�A�,��U�3�Nc�r�7����4�Kq�cx��HsE$u����T���̻�aF-NY*>�h�wU-Ӛ�GsZ��f�h�h���9��9�����f�Y��t>�p����kʑKf{?T��r��qt �pk43����(��]G��ї��*q�3M$��as�pHz��"7�1�X}M��~���6:RO���r��&B�4�Zr��S!�Y&��iA (���+��o"�a�4FQ2{��L}&�™�w�!�NA����v�N�2Y�@Y�����g؞#
����f8-��ӫ��J:���	f��1�a�/�7��f�+��T��Dž�~�؂ݚ�z$A�N)��SVd�����걚�����lAQ��%8�]:+e��d6�.xt�l���|u�^��<ZO�n}=�!&����`�2@!��bۢ4Y Q����@���A�%�C0�s��Ѳ	���pA����h=���NFM1 �;\@��2���S���N��ђ�����XQ���4L�B�=�<;&�Rk�w*!����A�(҅'e}�2� uq�v{+�	�w�V'*ĎÑ�j��-��yԴ4�=�M�y�\ў�VV��M%�6u�
�m2���}���A�~re�_�?J�Y��0�4�O�:���R���Ey
�:Gf��-JʾJ�,�]J�YZGC���ߪ����<K�ng�G�7Rd[|�t��}O����X\��,	$��5�g��$gW\kف��f�F''�CB�tb{R�H�-CT��V>�8�V������\���ٙ�1.��<�Gi)�_��P=TU�T9r���)U�T��A�����iԤ{`�'1~g����s.��H�t�	�7�&V1�ݡw�XJTE�6!
�n�B�h�pA��#���2#n5v$�@W|*XS���2C	}ֳ��rY��A�aq$r����8'<HĜz�*q�+�W �n���o՘f����v�؊|�9!=e����xT������O�E�"��&�e�#ﶀ�L��dGB�
yYAsb�=�F=�ʱN ����A������7�R
bװp��Y�H]�q���wD!F� ��(*�zS'�FW��N�"�+�B$`Ѽ���P��
'YVsъ!"?Ų.�iBN�C�&PB���B���b9�bT�Df�lg�:F"|��RS׳�����K�VfS�Vd=�r��r�=�nGG��RϫX�z�����1J�
�$`$����8��5��@Ϧ�-���8��Ò6���Ʒ)�ߢi����*�@�
�zwc�	�.Q*����@��P��I�kG��
��@ZN������k\qJޞĠ/�yD�U�����>���?8��xw��B�U���m9Kq2Y�9�H�Q�D`W�0b�p�J�M��q�-�V�H|�����ܜ��c����qS��@��I2�݌�7M>$���'�
"�Wt��f
�6�:�M%�ZnJܮ"v�7�vWĕX�T�P����H�����e�"�vE*�'����%C$!%��_�H��Ь螺��RX���	�Q�$�Ռ��+!�J���a�� �9�]�67�g�v��p�ΆlkX����cV>�4N>P�����%2 �Fq���
^��I�&(�U���! g�?�L�U����a�4��Dd�eV%C*�˴�6	e����/���3��¿��s�X�X�Y`1�ԋ��#��[X�A~��#�Ε�Ǥkt䁞)N2��#�R�P��ޫ�"EWT�e�K�XA��㣢ﲺ��â��^��$3hpQK~R�
h��YbB%�E�����dmO�C��� u��k��m���(P�F�B��Hp���x����ʼnᙤ�����uʙ
Y|”�Rwx6a�?QJ�
�5��Q�g�U3�����*X~���r�>�099r��W�c]�uY�&%��!�Q���&/n�7�j;����k��o7��M���x��#�N�������Տ*��=Z]ZK��ps���0�5��O��~�U+k��p�(���<�4�*G�h�I�R'`�ۉW�`}O��~��gu3����k-җ&����U�T:1���C�+���ى�0��9&0ʝ�WԞe��r�!a$}�*Q�/�l"+Y@TF*��}J�YK�-���I��x�$��V�{��f����U�tOQ=Th�TfRRDp�ȅ� Kˮ�%Pb@��fb
�(�]�9M	p��Y��Ű7�ϑ��7��]c�YN� ��ZE�G�m^~wH�Y��R�8��ud�� �������F���韗@����v\v�OI��h���t�p��:@Q����������GƁ���6��YIŽH�ʚ�n	�8-L��F���(���/m8-ޙ�� a?��~���EU�ddr&��l���Q#ʒ`x�<�����\K�-lV���ǝ��u�5��-���0��Y�6�O�W�HǮ�@օqf��%I����e�4/@�E(�oH�:I
�:�2�~6r�U�ʃ�
��y���*�_O"��/�s�h�^����zVZ1�Z�(3�^��E[G����Fd'��hP���
�r�Y8��IzI�r5<o��vb�-���9{\��&_��tŒ0HW����o�h���k�UN���%��w�U4�(đ����U@
�ɓ�!������m^	mXH!R��*�E���qZ�S�:��Ϡ�m��X�(��X�,�f�� /����CrO�*ˇ"��`�]Z#�^H��%V�J��!�!:�<O�2��Q�j�3^�T%����r2b�X�C��MF���*6�-jgE`z�9�L�/��@T��Q��R��|�V�; ��l���l
��7�0�~@Ɖl|�$:��Y��e��HQ�M��`@
8�#B
��K��>�p������G�V����"9cGX��#�\s�%``,�VȄ���i!��
��II_�y�GlEv7�r~�G?4�'i���O
ئ�=f+<.���2s@�U���$���{��e�G��p4s�f��@�ܢ�(��\Nj!bt�YB);'�s,�I�H#刟�R�(�ȲG�L��VV
�&4�G�tUE�W���!�!��:ˁ�]�U��AD`A#oQdT�+O�phۖ%��*�爨���!O��npI-�$�gM�4�<��0QnM8WgXA,?�{d�m;LE���e�`�w]�<�DX_�,�)޴�Οٌ�u�|U�jt
��O|�P��o,<�,�=M�?�>w�Amhg��+�r^��
�7EB7)8�\�"f�WRj�,m~`I�qB��%��У/!p�a��>E���Y|�|'l��p�ڝ�/�Th�W�/xA.g��3=�-�ǥh�v��&$[�n�����1ɹ%�R��`.V��"�
�W(�#�$*ϦD$*А��P:��6�R�_*��Җ?M�گ*2�D�l�	m{�f'�!�w�^������zH@�;�?S଺�ٰ������sx��y �o>�>�I3�_��|e UxP���!SRt�
m�}�P���ۀe�BIR:�]3o �z�W�*�vd������#-�\�2K�_� dy x<��OJ�p_���<��$�d�x��C/<7b���ܤ�<d��ij2�C���pFS��EW�2c�aWi,�eb���'U����@�B������-����B�fdX�P�I�����G���aHM�
�+1>؏�u�2�
ˢB9CV�B�.��ԏ�6��G���<S@�=R��r�-CgIe<L�H4Ck���Frn���a����8'�j+�FH"a_��:E��P�%�߿�ߒI&���C$�q�A�K
0� �՘�Ay�cơEġ�M<��_~S�h�n	d"P�CH�������c��ONRԾI9�T�F{��.:���(�&���U�5]��9x���gMzG%p��'*�"������E��P��_=g��/�~�Vg�@>��R�!}7�,V(I�&
�=h��ѥ��B���Q\�r�R~��]\$1Dtw��R>��26���g�9D���R�K��X�,Y�N�5d.Ȓ��G��Q��_�0%H#g쑼'XNh��>)��sI�p��}}U�<�^Kͧ���!�ȸU����
�ї�RhR@��#�}+M��##��:��$O�Q�g�Ջk�I�hw�(I%\�e^�$
�Ր�㴭��K��:l֓,��j�,r'����w����w�v�"^6i�^ٌ�FH�G-y�~�F�N����)nXϳlT��)�J�i%���ʋN`���x�'�v̎����������I�����T�I��2;��'�����ݔ(���
a�ZN��6J셕Փ4A�T�߮���4�0M�p��8� �RL���/+�Ԉ+ʶ���WR٣�<�ZC���K�o���H�cr8�_���q��=�i�T"5��5�7�O,>S�2����$��9�G�j�Vh�ءMx�0@��!k�@u��Z��WE��acB��'�y1���g��ܒI�'�e�=��P��qK� F���3�ܰ�xc`���1���G(e=ר5aX*�(�ü��������!T��&��.IתˍaYTL��u4���,jDO�w��HŗQ�KG��CR�zVG�H�dds)[΋4l*�b��>�'b���J��R��`����:`<~6���bU�X��ȝ�7 Û�~����81s�P�m���E���e3̢��4�eKr�Y{�K�/�Sĥ�c�*�t
�S�m$$&=�RX�vW�9U�T	�[r���P��ѣ�ֲa�3��ͫo|#5��I�!�6\���� ��2��|��_�X<$�e����y �/'�G�z8.��v�ϫ��7�[�e���I"xX���6���L��d�=�#fB��h�BH��r��-ѐJ���zˍ�(o�@�p��`X�z����%�]�&	Q���1���i4��Α2�14L"�{��"�tt�T�,�1v�����b�DT�
>Nݑ�F(@:�tv����ܤj�c�<�(�<����V����]��x�s��麋+Xz��i�˿�p_��K��h>? �u��ۛ���tV%^Y�V���ғ�maq���M��$;)fʯ`:�����pg�b$��`�5D4��ϊ���@WQ�**��&�V���wx������P��4�@���n�!Ń�}G�#�գr�cX�ǧ!R��K�(�BR'h� ���λ�9ӖGjR��2{Ef�w,CK��/��:9)��+�&�YE� �pJ�e�{8p�C+#�`$E��t��b���~�������!�_	͓�f�yܶ�|�rp��s���DϨ)��L��Q�P�os+�f������`
���mQ�ۚY<�`�J3*A������"��}��x��O*#c��Fh淝2J�*��0��-|���M�i2�
~�!�$F�W�d��9je�vR^)ߊ<�(D#!��$�$�-�tiO��I0��h��m�v,t���t��*��Uyقu|P���z����H�f�w#$FU��(V�t�$AppDT��q1PB+�Q�ݕ��;�ߠ�$䌭��H�O�F}7�X�P
��E7��n>?��)g� ��p��^9$�۞�	�a���\�%��r�~~�}�f�r>�""!w�0A
�d��X�:F��-XH�;�J�H�
�H�җ��J�9�d5|_ī*{��A�Nx�]8�O��S�rI�O�(g�(�iB�\Gݖ.�^7�IJG2}UB�]����P���KLj���l"�X�*��HYAUr�1���� 9+��d�D*Wҗ�&��2%�bS#)��Y��t�f�~��H%O��Α��r�g��bΡ��o�0��
��������|��Tzyͤϩ��fl�"B���b��$:�r��`�X��W4YH�=W��%��Y@��1�)1��G�}��X�8^F��j����*K�46�m��I��,'RD�O�ϑ�£�HdR.�����ȸ���q1+ᔓ��s�@~B�^� �s�8۸�H�d�x�����A
@�4 FL�$ ��Tm#���b��r��V�V������di 2��v(Dn4�v:���uG!��0�Z�*��
�:9X����GЕJ�Q$hb�B#)��1'��X�����N��&7���&�9{I��E��׹��G���7Q�(͑�����NxW��5fq�q��q��T��g0�3�ڝ&�\C�3��~�Uf���h���?�疚�ro�m����:�Ck���5	X�x��P���U�y}��	ڻ	�6�SiS�UQ���2$��v��VhR���iG9�$Wĭ�iJ5iS��V����%�I/�xYK��M�bQ�Q���gG�$����͵`a����a�+a��;�0�J'����N=)
�
Ú��)�]���Ϝ�7�>F����gӗ�~�*��Dח��I"i�^B��$��t�
HCv�Ge,�ʊ��$�:L�@q]��ր%���1.�ݐ�с2’/"?X�!ky�r;�`N�!+����6*���L��j9����X�0$��9�n8eϣ�O3E�9Ƨ-v����'�$L̄��H��_x�$R��d���2G(�4{	'|a����������VM�~Z%$���▪28&�	�J���"2�Ad.�
���E��$�Wq��{�!v݂�J#8����K�{��݋8#�C�,��ț�hܱFX�c#A_�+����+ф�B��*��|��+x��=򀽛3\�-�.^�>��p�<��-$�.�zj��21�nȨ��؎WdκVpO�B��&̤U���G����M�"6yZq�?�E�aa\�^&�'��_���)��Ft}ex�0�2i�Q��y\�h6���z�"w�X~#�M��`☘���ݝQVgD����S	a�,A��⛩wC��t�!�K#�A�<)��Qē�w�XIY\U�i*�A{Q<`^��Мn��٫=E%�e��e_�)�a����#ox.C��<0�S�gդ�?�>P	������dy�wn���S�K�5��28dh�²bI$��Q%�A�6H�L�uz�:m�-A��U�.U8QbOlc��vCvx�V�-V���n�*E/�k(�Z��RL�c�浽^!�}������ʆ��r��Qض�sSB� ƅ���S�L7h�F
�ʼn�]A
G�0l�중`�����H��]`�� `$
�A�����r��R��֋��}&�;�&d�z�dŕ\t.����?�P ���)I +�!�^�0WB	�7^�N��l��o'�r���}��pQq|C�I���M�q��W�����Ht ���`r� ����a�9!PS��d��yk����!�b�}4���F[i߳��b�W ��E~:ݗ�Y}I�g>�X���L�Ou�!\㐭�BtrB�\�� IZ¾��JX�#��d?u
�4�`�H�0�Y���7��BS�����`�gz�B��vP`N��%bz��,,(�2	X�Qɡ�7Y�a�2$���3��bYgEWe�:`�AYc:u.�X�fe��I>�%�ї���$��F���|�b�7Ã�c�����װ�	�I�g}�ԏ�����þT*��*_;�*��1,��YR"b;Iʝ�]KX���A0�u.��IgTgY�S�#x���0at�зM�xĄհ���f���#;`m�
��I[_��/�ՂZ9N����
)[��"Ӊ���g�b���PM�)2%������x�����Y�0��2�9x�`OQB��7 (�<>��zF�� �ǫ�\߫�$���O
إ�=rD�<g��j}�%��]�=Ԛ^�z�9p�cQ�m
q�x�ƃ:d �v6*:�uX�Q� *㬅J23)DŽ(�D���~��,��΋n�PE��/*;�~�-���l������xo�O��NԸ~9��������y�-B��TB�"I�G�#*�4-�	��Y�{��/�z��
�}&����ܴ�~]���i�A�������Hdr�p:�������� 2VBSm7s<�$�N�
�G�,j�"S��K/��v��HJ�D�J�Jûō���E2�^5Kz�������_bU\��rt%��	B�1E����@s�j�S(.P���$D�]���W�8:�$� ����h8���e��G����$x�a��
@���b�m�R?(��'���ϡ��g��� @-#^�*�<sG$����"P�ޡY1R��<m4Sb$�gz��w��2��Ip�L6
a-�<��37�pG��P�C���`p��9a��H��^*ɣ��?X+w�������Iڱ���nj�� `�B�G*8Ԩz�Ș:2�H�R���������*���UdvG����-��E��ɲ��$K}TGg�茾=�X���W���M]�f���$��ڑ>vD<�wRhf�X��y	VP@FRH@z�E3zHI�;HB8	!.�[QM(_b�?��`�x�������I"�F�R���<�o+�k|��C�F
�8ɹK�Ҫ	��xXa�*A�JYz�e܍�rq��}fm��kq�srv��^!~~c���b6��+�65/���o?�e9�j/����M?"�(��?(��,�ʻI7�t�K�VP��(�A��
tn��ђ���^L�O��9DT�fF�K�K,��d����[tW�,�D�00s����*�=p�6СY]w�?�pz:����	�(Gd0�<�'��U����d�s��YR`���O��g��&pdZ�W�Y 3,E:���#�F�k����`�pb
��ǣ�U�Ϭ	�2��-�a����`g`HG�����3!	2���J����DA�Q�-	a��.X�x�-�U�x��_�߶�Cټ�7���j��y�~?�[�/l鑗��>3+�����t�W!�e��-�X�	N�I�	��L����S�L#��w1;���Z��*��է�ӛ�_�.R��WSӓk�$>Ix(Kb+�z�={��n>i|j�C-���K]�M����1,��p]R�`������#24M�PP��Cŋ�k?�����<y>hߝ7V�n5�C�k�M..�(����3�P�x75*0[t�ER6�R�����޲*Vn��!JЧEty\����+�='��*Ʒ��e�C
L���*����뿓�<W�\�S�&��8s�y�|���U(UI��Sy�cF	z?����U}^�Ow=����/rUɔߵz�#b܌��t�6`l��b#�g��tH����&,��Hpij1>�{���g��$<~�"%����Y@UaV�����b	�,21Lo���#��p�
~F�G2ȶU�Ţj��k;uX<s��[�����W�j>��^#W��l
���������J�>v	s����=4Iէ�b�T��{Kv�0ꭩJ��-�Y��)RB�Ȧ2�cc�@T�����!�m))(`�}�l���Z����� `}����89�|����]>Y����7�E.P�#-� K:�H��0-�E!��b\�kJ���.�&�[L=ܫ��Y��<H�)��1fb4�2����(k�O`�mJ\��|�/s��ONM�$C��a-$7b�<~��sq���J�(���XIcd|�zO$�$u���XxǠ�~�Ts�^>�ܗ%^�rq�׌���e
�9Z>+�Sۘ����c��_���#$b�\��s\��Γ��j9y�#۲�+N�JS�ի4�/[ruU����<s�h�������R8!���@�m�w�O�vW|UU����M���#�r����>�N�8YU\F��M�=��9��U�}E��l�X� *�1�$�5I}��D�έ�n�@��^;�H��0&�_Z�;���@�f�Ɓ��=U��u �vb��viՖx�B�F+���j��K(��v
C#���.�4�Rt�i���Z�q4s�
Il��trq�L���y�x�@.CZ��� |4Q�V��h�q6��+H�HEO7 �[yG�x�^�8FB�((��Y�8�u�qF�\���3�J��ϖ	I;Յ�m+*>$к��n���v#c)��8���2/���2��~#�eW
bB�D���$���|�\�e+�U$)vp�9��S��9��8�;�8�%�����g�ݢ�bh�hJ����z�Uш0%�Da�e:�:H�{���~���]��	0�v
BH8�h��
2��6��4@qg��n&�r�����LT���N�ʧ���Ӑ�����H�g�a,�n�T<�k���H#xc"b���&pA[�~�p�+<����b!��{�^���<��jK�?��+T�娫VB�ύ�N8d���ۋ`
Q��U�NĒ�#[����A�ݞ������Z�N6�`���:4�],ݛH�Cꄻ�h"��犧��ށ��P��ϋ�XPS�9�zLзt`�A)`M���˄�3K�Se-����J�ܧ{��]JA��� ;���0����]�d
��"��Ut��k��W�2�Fϧ���F�1&)�6�hM&G,n��O,��t8��OV?�M'?�rC:���SE�vQ�%XK<R���Ѵ�J]Ip���f���ÅRʰUx�&�U�Zi<]��]�E�`S�W�Q�	+AIIX��2^#غI�g��G�3���w`lƲ�~_�X��
Zz��<S� �#f�H�1MV�O���~�;e�*9^��Rmz�?��{W��6Ь��7�C�a%�0��hZ ��B$�̌*�y!x���؆T�9x��~"F]V�%E��>�O����o؜��6���>��>�)S<����ܬ g,�I=L�E��e�*H,aa�a8P:Y�W��߱d�X�Q�lj+��1�5$Xm�0vC����	8a�e����`v��N.q�}�"X�n����

/��No��#S�D����g�����c�^&2z��"K���
/?�E=�V��8�J�P��x�	nt���ٞBY� �>��ޝQ���Ԭ�m�mfK�+BBMZ(j�!�u�B]F+�Cʇ%|p��u�T
gӞ$X�8.�G2�E:���N3�����޿������K<v�?���Ӵ����	@��B���� e	��¶��S3��Y�ӭ�c0G�)�_�ɦ��Ƞ�c�
�زG�
�$EBbTHR%��Lv���$��F� �<A"��Z�ѧ�,��Z���#�����,�Zצ��*�X9XdVD�b�|�YI��_.�+�~C�A!�B^�]dC�����*X�.����Y��;�sk<]&�2�S��AO嵎�$ֶ#�_T�+�mU�,Ȯ��랊��]jH�/
��(�lvLXlV~եa�����B�����Ԑ��-Q�8��m�O�ž*����'&PcF:
��Ce�{e���Q,�tY���X�%d
�b�Ag`IhI&���	$�(D��R~�h�"?�0���P�#��8s�`sx�Y�x�<�?8?I,�^\��Ԉc+��)�@�(�#����d�%�ʲ�j�DW���_���f6ӫ�$���(���\��fw���g�Mi��$�(0�4{�����;�ny�E��s���VC�W����3�/�o�&ɀ�$�aģ���E������p5R��P-=�[}7�y;�O�ز�u?0$g�pM�\��>�:7'$B(�[���S�2�(VEa1��N<c�0�}_�$���P����!�:��d�IFR4��1c��g�o�?0��|���l�d|w��>`[�>�{н6y?�T�~~J�x��c���M�i�V@\Q����)^���%���W��{0��$V'�O�x�&��	pYG�#��G,~��+���]0�(��tԱ#�Or���/�\GV�k�Vb��SDY�
���+#��i�XKX�q��9�#�qY�*L�r���c5�1�ʓ�wӴ��jEtȶ���^�`B��{tЎ��
	�ъ��|3`��bfb6ˇ����J�fݿIPA��T��0'�&�JU�m�-) �cs�s<�3H���U<d�w(�j)k(G٭d�(��-
<�d��]�EtxJ|�Bv���JS�]���w�K������@}�@;�Aۦy '��S���}���Y�'p�'��:�w�rq	�ٓ<��|Ì�>�������KJ@�P&��bi.��}�U��lJ�"���~���5 �d�	9�D�I1��B�����ie�����c�,L��o��ʤ傪4[����<ڧ��z�6�Oo�;�(?�V�?,G�6h�#�\�W�H%���#<�;�,�
S�� /���
�ǩ>���|~Q�D�H���żY8��=�:�H".N��"����U�)�nㄯ�\�"�,r3�؀&�7Ax�7~�q�K38P;��cv�m#��'
��0{R���x����><�����s�񊿈��D�Y��yo���k"Ӂ�X�N�FHev�@�gy�
�K����(ۡH}��;�8�[��}�=<r�}Q1���b�L���7�,�=X�
C��at�c�R��_�]����C����׬�Q��ה0�K�ұf��Bw	\�=]T���s����?a"UBZ�����a�X�8�F�����#�r_Fd5ŮH
�y�	�ګ�=`U,`U����DZf�䍻/�E8Q	ꅑ�%_c��X��hX�Ń"��ɐ�H�㖅)�C��2�i";^-��P�)17pU���wU2��U�`�W��'GSR"�eV��V��I�Q �l�F�ɰ�0sb&�·v=[A��)a�p�6�S�>�B�dp��)s�s�߳A��oS�F#01�4L#\�8�����i^�0$���x2X64=)�4Q��I$^:t�Y8�����d`L�z��}) �\R�T�V>f]ۭ8`A���8Mg���b�d�8��b_��2��J�r|��E����V$����i�j�$O�E�J�D�����V���o��[��Xy�Z�=�Z�-��Ftϧ��|����U�Qh�b�m���h?�"�!��G� $����g��8z��C��g�B�rӨ-�<Cٕ��ۅ�`����n�J�"� �<��y;?f�޳Ġ�o�p�g�J%��c'���.~���xG�?���׊�o���B���i��"@�͹ �~>tTI�"��8�It��dO�=��!��
)M<LC��Br��	c9�H�`��M���Ga!�R3�ҝ��]���4������B��V>=d@�)*O�Ѷ�Xvq�" �h�E�RR�Ts��l���%A��UX֞d`!�ȧ�����8�I9Z�֨�m��J���J�\8� 
R&zKa��)�Hz���d%Y�h���������J����NTDvh��m	�e�QFC8�[�3����h�P{3״J	@e�F8Che���E#�&�Z�(B����4C{��Vt%�㷆x��<lΖDs���V���z�����ՠ%��@���(+c��9�ԣO��&'��qF�
UbqW�9�<���s���"M�l��0�ĪC�љ;BF%���\82�P4�Q�=5����`c���%�#��~�V]�6|_�qˬN��9�.W'�O�Q���;���%A$l�9j��5<⎼���������	��"@14=�#�K��<�2Cg��}�ǹ�K���򣀦���z�ƸKC�CB/h�
Q4��i҅�)N�4���ѺK$�c}���>���>��rĒM��n�ֈ�"!J�e.�������2wr琷��R8u�|���尿��K+~+�?�s��3�$��/y&A-�ठ�߸�F#�D$g�d;�y��Tp�8��Ԩ�41����%�/: + r�U ӿ�k⧌�Vr�[���X�T�_��H���Ɛ4�tB��bbDl�"!I�m��*�(r9��G�I���1�RK�ث�W�1D��,ڳ�]�@L����VtIB;:;
�J��2��`R6��Ż��..Ƙ[�P��迬�Z�]L�LRDK���(��ue�U���3D�f�Qrq���IV�,Z��R
G"��9n��4�t�&�ehd�x��؀�]����Ԭu�J��Ȅ-�0���&����/rMk
rc��5P᫴&Z֘;%���e�ЖG�	&����7�����*vf)(�O(��Þ�oz��hA'nQm-`}@���=�����]H`M�א�t���BJ�e:
��~�g�@b�b�<0�S�y��z
�NFtrR v��*�r�VһD-����{>JJ��F[�IW�)�ҍq��9*�G]�-�Iƒ:/������#<ֱ���q�>���丶�^���ʄ{���˛%��q|t��'
����N�^��W��Bx��^���[H�;<�^O�	$���x�⸸�ߋޢƋ^5�Q'�����7bv1�ϰ�o�y��T��G�5�eR�储s�)��KӍ��V~FT��r�,�f/�#�e��0�/�&��Y�^
�����cy%�j@�<v�y'(�C~J�2'���(N�H������>�q�Z�K%�'�1��Wf">�6���}OIm����\���!��((�q��	I�ߡn���A�x�$w@�
i\"��9ʼn�GuB}�S�����
tt+�տ,� 9���x�qJ���n�8��\x*h�9�d�9��-#C�IYO�`z:�Td=R`�`���Vh��ToNr�k�*#F��N4R,v�]$�f�l���})3r8э&�8Ԗ�G�$�b~*�3K����5d"h��R@G�Ju�M3ю@
ld��β &�i1L�gD�Ed��)u���N��6d_��������
���pb� �9kzZ��'1�)��C��F�7�o��T�-��o�o�[2�u�G��g4nAeQJ>�9�>�Q����}�نH	c���B�B��k)��p�7)S9z����� ҕ�F2+D�@�,�Dz��rK>�2��_�,J���*��j�=5�05b�Td:1(U�Y���f�|�Ԝ+����uS�'ϥ��O/���>����?���;_`,�m���
�	9��<uG�=D0�&`�}C�'�G�I�?��)�nv�n�
�2�3����S�`��@���;�3������u�ݼ�����Z��XQ�TAƠ!Ci�!�
GI�I\�G�G�
iSej6�}���Eh|�,|��M'��QX����"�IJ!r���P,�<ډ�f<��%��J��b�#
C������0�'r��$^��P�v�@t��L�����O�
X)`$
 �Io^0�2���)Ln>�>�(c�H�,�ʒ!)��[�Wĉ]�vtk||���'�4d��U�ȣ��UeW`\į��v�����IF���4b�+��&!�qj�;�fCW�zʦR��b�)6��R`�}����PQ^%B���-��ȯgwB8�tg�P�v�Z�2"��y w�y��S#H�M��z��r$z�2�P0�%=݃C^`�Ԃ�fHX����RF%J�G��7���qȮ�@߮#�����Um�D:�f!b������&+а94�����N���r4�E�J�Ȧ��ruQx�a�^���^A��MK�6|�#��(���g��d�ه��+:�o�yXW�^I>��=ܫE��zs���1&H�S�^9�����%0ƺ�E1��B�<�6�HL��%�O����7���m���s����y��j�k 龮�x�<�_ m��dU� �$��3�8�u oj�"��F�E���Î
���ḉ��V
0|��
�$0��r��([M�q�K!��m2dz�@��*a��/��d�T��p��`~'���(���B>y-��LB5#)�"Z�P�������U&O��Փ���p>3/Oi�p"p�JS
�U1祫&Y�h#`f�;���zB��y�/�l��*֢.���T8�ՖQ.���"ʲ��WEs:����0 O]H��F���Q��v<���(s�=�+�$�0���FYV3�!���Bգ��2"e,� �פ��E8��!�LX��m	Jm!�1��	����2��(�@@X+��:J[rD_�g~�L,�B�8�E �B�L��dVI{F�:t=�׿u9�tIF\��a��ܑ������Gh�6mi���_��p�F���Nҷy�2=iQ�	��Ǝf̎@�ն�R�oJ`�%����%�?�r�8�!�|�:��Xt�Lnr�:+䕫H�x�Q��X���`��YR(˰xJg��CC)�C��(�F�h}Q��8�1�!�o�p�*���@N60�j7a}5� �N;���W��:s��cs0�!�n���h儱#1���,�S��FP:�ɑ��H�?�Y&*��Ur:9S�n���?m��?g#J���}�'ORS��5yk���#F��?ub[ڄ�Z �vC�O��������s��[��^��57�Y�<��L���o<'�%��c��z�Z/��B��7'L?��(r�2ḅ�����c��.���׳{��p��#ٳ�7w��'��X	�H$Y�t�H�� 3�Y�ğ�L�_*��Z�G3}����
y~H�����ah�ݚ�`���q^����&�b�kךr�DDG^��p&�<nǑ��Z�"~�u}�$��q\k/��2�c�N��c���N&pF�2�U��4�e�$��ّT2��$dܵ�T���B�(�ɘ3�A��X+���Ǔ�G�
����0m(b�X��nTDC�Rd���J���9�Pbuvb3�g�2b�{�T���Ȭ*� �a�=�p`�����]��$��x�Ou�#d��e��f:$J������{����T�%�.YI>�4�~��t0�i�8ٶ򬤈���UxZ(�N�b����H�VBi#uKu�0�H�-RA#eKRʂZ��ߤçe392���1e(�z�u�����0t'�[e	V�"h�����cJ��x`��
����16�{����̱�/���R�)`Q�ﴮ՞u�/j�$���"��jR���X�e�w+&�N��Ά����fb$0�"��-|@	`%x��K�+B��#f�r�$.e;�~�l�Jr�
{�'7��?b7���#<ʷ�7�0�.��#�?�ڭO��P�$��ѐ�o�3�8#�s&�t��a$;#�/���������Ǣ�o�+}7�����.ߺ�H���+UH��!X�vD�I,����P$z�Ϩ�
?
�P�#>�DU<��ǭa���
/��y,ލR�rO�6a�p	,#a$�
01��O5眒�b�����8�SN�y[Ԑ<u�BD�,�(�n/Z���K��iU�dWU��HA��
�M4�+ʡ�5�-'��W���R���,�i��.�fϔ]��#C��
(>C�=i�3�or~�&Y��x��+*?��
�A���y�VH"����Ҳ��2$�௵�ߪQ(��-,J��M,J��}�
��"`LrD0+1$�`���e�R#X�FD$�!�``6Xa�3N������n��r��!�C)2��g/^��@A�"#J]�N�kjXNSJ�Ǒ�X�i�� Gc$e�f�Lr���F���{��er�ؒ�K�њ��-Iڷ@�� ��A�OE'�:�gbF��!9S�,�\�r+,�ԛ�B(L��}��]~J��L�^6W���eK��('S�<,V5��6�Cz� 'h�2ƽA�@��� jR��q+��>����i�z�:�?5��i'>��[2���4�����.�,��R[Y]�J���JQ0FG�κ�[�dLx�L��?�.P����'ӑ����b6�{�A/��8���1f\pQ�0����7��}���#:����G����Mgo������@�%�b�o�V��mEZ�'����x���y����x��i���,�M,��y7B�-�F����*�჎�G�y	�ݴ8�Yė�3��a����ӊ���K.N������*�}>���ş�w��9����ǖ96j��1���t]�}a`Y��
I$���&�i�a�U�(��zT��`�m�Zi�]V[��w6�0z�c(Y�r(y/m$��fU�C	�:����I�U�F'@PXg��~�4��^S+Nѣ����`.���]5�9CW����2��;lO�Vc+�R
�F�u8ʊ@ �}�A.\z�	Z8�9i�{K��ˠ��")#ܰ��ID̊�r�/~��ǡԑ�a�3.�|�����������0_�#!!��U�NEp��+E��#����q���ƫH�AxX�v�����\i�a�r�KA4lʌ��^��1�R�W����0@
�ˉ��X$�P]�2�������2I1]<k"Ѭ��Ъ,��/YCD����N5��X4"��IČ�@thLpJ��7���#
:id���V�G/�%e�F�"�U�`�,`�k�vFu�
��i��,FVffPHE`߫Y-v�%TE��kMfF#?2���/mᔲ:�]<H�ć]��� 'l4���rA(FG>�m�e�~���N�A6�<��V�ٯ��q��z�\�&I�H�6ӡS��9(�(�-�����49�6����!�+��	�m���J1!AQ"Raq��0B�� 2b��@Cr�#3PS`����$Tp��Dc��‐��
?�����������=Q�;U'�rs��T����t���l���/�m8��)�%�:y��N��-��e*�B�1�`�z��V����z	��9l�� �MA�.�_������ا)Tdy���V��r����D,:9���?]="��Y|�gq��A���j�̮
*|��o!((���(��3f
�	�F�7_ɧ��z�|�c��U�D���oQ�U��C�
��N`K��`�	�s�H5���@ݠ�+K��̨JR�~-�#I=��x­���s�wjA�Uŧ0z�pE������>�,�ki1�a�;�A�GH�3����~����;)�n����@�	M�rQ����BA���f�'�Pߥ�g�kcm�

��Kt�6x�3J������Y�����@F�r3����U`��Lٶ2�Oj�+V5kDx	WZ��)�n���G�O�c��A��6��&��KS>r��F��$�mo���S�������t�'4��G��:�"�n-6p7�����)#7��<�v�?A�=��*����g��Ot�H8�ogTx��im	�A�����֛��?Q�)u���o��0�r��ꊭz��Q
[=0�<��I.lj9>�e~����JlDҷo&�dz���m���\T_5ȜV��?���t���ƀ[v�Q�pcp�4'��p���Zw����b����~�u9���C����mwJP��9k�˚1^��u}D����l3��g��8dm�!�apfJ����j���c���M�	ɧq�Pl�U�|gA*/�����!�T���o8ҩ�C�f}���B{�����0
�e��֝åqQ�	خ7XT#�C��HWB5������9���c`>Sj��v���m"ȝ�|%ej+�N߼6�_�ia�Y��}��Z^M�8m;+{J~&ډ�Q���2��a�Nh���Y��0��n�������gx�M��;�����䲂�S��M��w����	�N;N�}�O��c�k�Ʒ��Oi[/�B2��#�"�y��-�U>
�pq�OQ3�M� �L�o����G3)�+��eS�*�1��&���v����L'
}�5:����v���wS�އ3�Gx��^�ψ�ת���S�a�G�F�[�*�]�&�w���8>R��lÛ0�]�Y�O�Ќ��^�I����im�>"�:�F'i
����R�7�}D�ߦ��}5��㧘���Ӳ�-�f�}��e_�[_�J��φ��^��c���q����R��3�L��������¥#�g1���:�p���|�w�CmǺ�g"�������Gq��H���}IW���3>Ω�o#	�e�>x��%�'��Uz�mj���Q-�zy2��7;�a�-3����t���r?�V��+��#�3�	�S���mE{	���ߔ�{_���p�n�-�NQ9!��#�f+95սI���N᜛�S�_���t���w���&�0U���?î7}�,�:9���b(�O	P{Z�=Bͨ�74A��������)�2���x�RdTrכ��>��a�9–�o�ӍC�OY���_��\	�=t>G�f;ޢ
ᇖ`0����]�����7�D�8�L�Y�	��v6	Hv�6vAW���G��M3�M������S��L�U�)��)��4�]�\����]��-OK}�gu�'������_5���&C)�<��-`|F(w�Ӯ7[˦�ۯ�"�+�\P�'�����=�TN�8�����9UĶV�'>��D�?�����Pu�w�
kY��v>W�lm��S���X�BB��6�mP~�m�!�$?�٘��e�D#P�s�n�jt���ٴp;��kM���Gt�֗����Q*P��ȃ;�X۠�0��vWZg��5vv����yg��N��xo��O�>҉����yK�^r����كr�i@��ɏ�}�>���I%�K'��TXsE��#�P7e�]�/�a��s�h R�t޽��W9,���򃂝G�aNv�A�RﯓdEէ��1����Kh�,���X|�&EJ'u���Dc�P}�W������%�GY|	�e��O�N��Oq��S�y���<��BrN��/��?����8z��^�X
t��!���%%<�V��x���
�s0��O�]�`RQ�S�-����>3;M@tf⣸J���!{�b��dU��Qiq�Bm���Ke
�鵌��6rP�l�;t�0�	�LX̕p�^���)־�7�R��fR���r����Ԏ�OI�eXn��#PE�GC��LZu뎛f��x��ֵV9Pu����E76���t�ܟ�둽o��O!YI��l��O���	]-K�$?��Hڕ3��� s*�I����׌�. =�"��sA�A��E?yr��%������GC)��3��9�C��р�u���=�u�������P��o�t����_���%���wO�Br�{Ktw�A�mx<���o��̷�C<�wO/�]���z��+�E��^�ݸӦ�+���N�r'�չ��U�~�F7ޥ��r|�T�p���	��N�X����mi���������A	����8wJ��W���9H�)�#�6��)�t�E��g���n�p���P
܊�IO�)�`9��V����ч�~��o�VoiO�  Wَ���"�`�
'b�އ.�d�鶾�GOit3���t�b�3�&��(�ʃ����7z��(�[q�����d��z���?�D��9�ܩ�8�uJ�p���80���`��ɔV��*׭���G"�^�7(�SJi����6����\M�U��7�����[p�� ��`XF�V���dZ�s�A���e���6@xwƾ�8�c)��U��j�{�5�r�1��{��u��r�M�m���B���y���*;nݏ+��tiV�a;�Ƿ�ۏ�3)�=W�a/����i	Ќ�w��ޛ؃����~%�OY��5Y¥#��G�ϔ�ih8:܏���T��Q/�j'}~Z��I���6���[Z�1��r':0���c�?ˮ7��9�����/���8tr?��N����Zl������Q)��S���S�:�U��,s�k
͗�ͳ���墀E��^(ц�G&ҡ����0�������gy�3�l޳�P��7�5iς$RR����h6�v�;��תvz_��
�8ש�<%rY���dґ9��\��t�����-�kz-��S���q�'U��C�Um�;�����&�|��8�>��*�G��;y����B&��o��S���1�Xh|Ɠ�����n��������:��|C�7�l=3�ӓ
���XXz����6�jy/�b��1i���ݰ<̠��q���[��l+���;�m K€���}���� -L��E�i�?+L����'*����b�..��P�A����P�Zw���X�ʼ�Xר8�̮-IFi'�(����~����	H�[-���L�m��
8RY�ݒ�=�e�"��jfU�Z�TL�:��#a�o#P�f�o[�~1h7��ϑ�B���q���jS]�>S��0��"�`q3�T_�9�Y8j-���8\�c9��F^v���&͑�

3�#9�ȌÖ��_H��4a�n0�9��Ae�쾩���R��S� 8�����'#9�9�&�D�^�8h�TG!�J�h?��=�V
�L؊��*�W�~�?��cN(lL��U�	n'yQ��:�(��F����6|����`.T�b哪�v*
��tu���>� �G������gx�0g��ژ��n���
�����M)l�G�|b�m���=O�J��f��T���k\��s�ݧIp�0�"Q�} �'4���wʞ������8?b�t�v����?u��t��6�X��y�\]#�i����I�iA�_�I�S�\@zF��a�?�ں�ɳ8�A�L�b*�����9Ɩ��_&ȗ��^���=�m��%e���E�����'1��ڮ�рj�?v��#��_���Q��Ԡ����r}���f��A��?����X��Y�e<�ժ5�w�m6�z�M�
kܰO��%A-�Rl��U��q�� ��x� �uW��*c)-r�2 q�>��k�͌����Q�j��*�8A�S���3޽P4��t��f�~�6M_�w��*�%
c�%l�#q�S����3r٩��c
+ ݱ�^p ��ˉ‹�iO���#\�u�aǔhb�?g��/Ln����D#���-KB>�.����G�P�z���t5)��?Y�[���+�;��'�U������ӟiD��z�G�v+
�<�G&��A��jP����귤#�:9�S��?�D��8�����I������͠Yy�����8JcRe����H�i��S��=]='��+K�m�hOxL�(j|�0�ũ��Zر�Y�mڋu�#��:F��B�A���(���m/�������" �*
�c��;�������%� �����@ʛ�����j�k�G�׮���$�bl��]Z�?�I�H
��\��IO�/m��b����V��T|"��3��y�&� F.u�!
�|l����4���Fw��e�h��@���-�P�:q�x�gi
�W��ȅ�����|e�jm��iD�4_��ݨ�K�6��0��ĭZZx�GAu��u��َ�dN@ه�zy8��ٿ^��R�]O�D��_�:��Џ8�����ӵ���dt�X�	A�PP�B��=�����:5J�٤>�t�}��\(�{�`��ɛ]����4��O8�b���m�T��f���|�dEns�or{�]�,`�t3�x���E����7�M�F��>�e��>���*�XNGYL��S:�{n�c7B���00%�[��]#t�@�ȝ��s����1��.A��y�6��)Sݥq`��U;�eW��E����Q�9D��Mc��h�R�vd�9	__�[R��I&��T����"0/[f�o�|.G�[��Sb�ZRgOF1��J�N�	���O\N�Ti�Јy�a��A�L�Njo�m*#n����7���/���3���7_Y~����K[r�U�g*���hÆ�8�������u� ���1�]���Ī�?	�ө^�N�Z�̖�����O�G����u6Jv��@ۏ�ڏ68Aܲ�����36�
�f�<�zu�3�?_2b*"N`�;5���Ɇ �"}�s����
�u�2��l�����K��v�7�;�� 6ݫ�����™HH��2�h���C�͉�kh˺C.��T%]�'��D�w۝F�fޟ�JM����Cɦ�
]�kl߲9��[�הV�i���f�Dϵ�wy�ž�5��Kj�o����=�J'��줭��i-����=$a����j��gof6o50f���F^�njØ��F�'x�~��<9J���U����P�<���9���u��G#1g���= �M�>��a��'�U��|�C����?�e{&�[�)Ke��?�؂��V���_x�fgnlu'ܓz��^>��H4�5�^�и�X���\͐�m<��:�x/�i��ϭ�x�E��f�|�C�l<j�(���C��A
3{�>`7��M�w���<W7YM���|��Bw�yfpz�2���:�D�S;�`"�M�}"�B�c3
6ƶ�������82��_���7�����6����d@>�&�us���hu��t�ƣ`EZCqǘ��*�8��9U_���yZ���:H�ؽ),UY�_Y��v�+PG�$OjT=�k�#�����Q8���y��fse�x�F�����?8�I��x��r�/�OYڦo9t�D�ҝ�w[���#�R�:��8UN�3�17�3��bq����"v��C�!9SxG�ɗ
Y�$���b�!��Q�iss��g϶�O^���{�������}�!��6�%0��r�eB)P^D�G�f�>]�Vc�O�C���@@�����&����]�h����y��\X���0.��1�P@7K
T�tjf�	֝Y|���qф�*E0��˼�v��>Y�,��`����;��#�(X1��FI����A�7S��=�}�we2�+����9�$�[ʈ�c��3�����`�i��KxbЮ7v�=zC��e=�U���������q�1?�����[~��a�FTߦ��.@ȼ�`=\h�p�T[�;@�t2�N�I|ea��F�@���sn��U����[^���'n����ڟ��.�(߿��9�\��(��#P/e	�H��m��*��ص�3ͤ)p�L}ԈJ�mn~���&�O��A�5�*2��!��ņH��=f��@���b39��8��d�#���,ް�!�Cf�PX�6�U����-gX}f7�U��d6a��tc�
o��|z���A*l�96�!ʸ��~�`J�ob K]�յ�'2�#���zx��۬ �����t�io��J~������S���L��yEe0v���_���G�:-�����
����Τ�u|�0�l�S,��`���&����㧑��e�r��tw44��*��-���0���#+l�oU�j�a�u��8����d!��ಒ�[���@V|T�]��&�B�b���5~K�����V�Ÿ��L�����ߔcqnZ[���y��}j�������0)j�hmoXwjj`�q��
L�`:0��LC�NS�M�mtk���`�@4��X��_D"�_W�g'6i��7�ϴ�`�,e�7��z��:X���T
kzE�#u�a��]�pw��+@-�Un]�U�@���00��a�1N��<B1���O�Ƣ�P>�>Z��z�PK�_"v���������w*e>�׎�|o������v�c�;�����_������-�O��00p�f�`鼚NDn���q�p���6 �
o!�(i�j.0f�Q����v��y��s��ps֦�C�Sp}��QGa�헪p%�Z���X>�}�S��;yHv:����������1�UA���*y���	�Y����ø�m��0 OK��y�P�c�:����-�Y�Z};�n3�h���9T]
�gH�W���TBtzb�-�:���V���*s��	�.!��9���`6�au�e
�#BbE�� ]�7��$X��:�A��7�_.��q
��N�>�A ����X�צo�qi�ԛvp�H�*��3��.��q�zg�Ɛ���L�Wݫ��z:��O�y����9�Ki���L{J~��=�~"�%Zdy��D�P^U�'#��mTEA�<���gׄϲ�7��EZzs���'C�#C9�o�?},V���͏Jk�s��m;u>��U���X��s��#[J�A�)gd�]��]�{D��� �k����3�'x���Ð�Gu̹���g��3֪��l-p�;-8�U3�X�N�b����� 9�#]�t/�S	���(H�������	q{ÝӘ���0����~����%�+Pf0�6���hx8���������b�x�Z����zM�Z�p���`����u?Ӊƾ�����+�a[�0�6���4`n7�^T��}��TW�iiv��[���p���]wɆ���]�+�u=�sŖbM�q��ݶ�:���V��iخ,��Qn�����Ln�'a͛����݄�e-��O2.�
k~�rҁ+O��5HQ�y����ݲp��:���
�BTRk��Ͱ ��*���!�)���p��[������������r����-��W�x�Ν�'p���k>&C��⠗�bm2&���\:E!�2�ϔc�g5�[2�7K��0��FF�'ĕ��7Q�0�4Z�Ƣ�7Z,�.!R��%I�r�}%��/�sh86������18X�&���*�}O�����|i� �A��_40�)m#ٿ��3�#ܕ��T�%Q�-�2����f�}=!:m)�w�D���<D�M�*u�7^�c*�r�u�����:_#{6<!�-�oz0��맬<Q��y���Z[���_�R�4��a�6�^�4S)��q����S��-�N�'A�I����yh"
,���>B��y�E����04�.r|�GU~�'>Tu%��Y`�3��\@5*3���ec��U��c�8�|~ql�Ә�Kl9��~�c��~���&���व�C�N�F����T��/pgi
��[r���S?�0
R��~��'����%�L���/�Q8��ށ�����؞��L�<��u\I��&��i_e+�S`��vӪޢ!Rڳ���8�'��
M��-cy|,}�5��D<�k�x�|�ed=��t�����T�0�	]wA�ln=
Hܩ���D=NMl5kpA�󔗨�ۀ��k����8?�We�S�{p-�Xo'z�͞��*խ��Q�f1�=��'���*o�����Ǹ���i!9���{��m�����,�uHmD��Pfcz��^ڈM�[��e���Zf�K���b/�Rnk�:	���h9��'"�c�	�o8���C�G�'#P'q���q-��`/D��e�B�P�e���q��ڬ���Pfs�;���`N�E�mKv�l�ʺ�z^�x@/�v7��<W"�:�,����d����w��f���:�(��� �!�J
�}0`S�7�K��O�	�C!S��͡b�sk��G���U�Xp\o!������o���1��i���޿�1q'Qm��2�,/s�o������`���0������l�e0��&�����K�:�y�(ڕ5���e�A��l��S`|L���k���Af����g���/jj�hu�u�y�jw�_��|�={��4�D
�_��qE���
L�<�@wk�Ň�Rm�Fb��� 2��V]b�JJ�ƞҷ����;�;*�h9��S�D&��+����G>P�8�3������OF��_s�u�a��}e0�+Z�!�������Qr��V�|�C�ړ}��D?Š¢|���Ǥe����YMʥPw\y����i����,F�?Q�����`ʴ��$J5Ǒ�{Ss����wM��'QE���L�R���a`�u���BZ��[&���l�R������.j9Ö9'ܸ���A�N�:	\����������X�^$�&�C��n�x(���]>�)q/�[z[���.??�avᄊ�\����_"� !��E��	z�|��_�x	�Àa^�9�����99�!��7��a�:��mP��K\2�p������@r�t�خ7�p�I�K��Q;�H��%�c,Q�1V�0�^�����. �0�f�ډl�;�����iPf4�"�ȂsL����8q82���lT��G݋�E&�OQ�1i퉺|�E��7����Q��dCMA�@�a���� 'r����B�|��:�=�Y������Z+p����>|z�g��;o�L�o��gY�A�����|�,?C�2�2�����f���a=�ռ1��L٘��m��ꈃuH�N8�\p�U���{��~�,<O�?g��P�
�A�|
�����mϸ�`�&��.{��y|�+��K��e�;��J�MW��E��6�2���e��e1F����L%��Y�_*b��C&��v+�ÖQ������0��Z��+�S��h�P\pK!���Б�h��٧f����7��rq���aXf*u���n�G	�m�&=����0g���ʧt�E�r�i2x�	�6����C���p�Sw���T�:����6Z�H�%jvF+qqϔ:�z��G	���L���]���:�@����a�Q)J���G��}��X�q�O^�Q�1]A�FRQ��s�A(���o�3)��s��reG�^��]��s���!�������x�M�N'�Z7hj���P.G�l��SUNH<#NF'!ԕ�=�G�@�:��la a�a� ޢ�b�x�E���r�4���m�}�jH"r����u�~��:>$�츄e
���C����)�
�9�?	�t^��	�K�M���Y��GXF*q��]A��ߡ�ŀ�A	���~��3�݁�G�'����t3���n#	��ݷ���et4^W�/��#��;tN�0ak
��_T?�!�#o��C�<�Dم1�T��EvZ)Ͱ�hr������|��C�8M:���¨�eui�ҥ���Oy���
e����>�v`J��	-lj>c=�	P
�E�/�L�K`m�r{��#B���o��F-�wpX��{<�i����'�'+U��?�#�2'��X�s2��_�sC945F�)�N������yO���Zӕu���c�A�����Ȁ��E�>����[4�ђ_6�Bt
-����!��3�	�5s�"�@uS�E�D3�
gYL�2ܬ`8a��f}�о�>s��MJG�<��[u�J4�J��o�cҵ��ܲ͞������>b�Dt�7������Q��0`�=�w/���ڀ��������Ӫ&��R��\�;�~ϲ�*U��a6Y��*�J�r�9����Ќ�鲛�o-
'-M�P��p1� ��cYQ���Q��^����l�������C�8���ӂT��3�*@nM6�"�<�"�`l�i�� �,#����CP}���O�ŢwXyN�a�Ӂ#?l�ĠL
-����>D���ڦq�/mʂ�7�ل��\^v����(���`a�thL�L5XNTل'3�7Xr��#X�����S��-�0r�X�-� )m��r'�����'��:gQQQI�q�&w�sSY���ʊ�)>�}�`u���x��P��Fw��w��k�!6`*T��e�P��'RN}��r����S)�#��W;�Kb��CX������&�uE�8MɾL~��ɼ�Ei*����Lc���ו�{�&����d�7Uo��qc�<� �u.<p��;�F���Ʈ�v�k�B ��5ӓj��s������BnC�����4�Lo.���T��ɡ	���9J�e�jl��g`����~�`T�e�WNr��~��`�1�ݩ��ra�qy�Cc-����QX�9������Sc-`B2�����e��0�@��wfE�b/� ��!���Xtަf�a�:��9W]��U��O_� ����V�y}�7e���Rn��eZ1��Vpj��2�w����^_�f`��jI��Q�s�)֨NHc)ޞʜ���|���&Т��i�S����T�\��7��pyJT�~������M��l����S
C-����0���~����f�S���4�ԩ����K1pt�П���Lr�3��z��Q���-a"[�}!an���(v��>P�~��}a��AS>�Ψ�Yۢn����7���Z
�%quba����hL'52ڣ�Ӆ��f��yB����2�Y|
��9����@~�hӰ�0�,U������5|��5�M��q�f.��!�D�؄epa�b�hP��Ag�3�u�S�CQ;t����s�)�i�Q)�5�WA��X�@>a��E��ZD��]wX�W��)�.N�f�R�M�7�����
��� �8��
��:�F���F2��J$3�m����7����;޻v�tl�~�~B%d�|!p $~#��a�3�����r{���2A�xw���2��D�T��@,�y3d�BH��N �/��>$�a��[
4�'�;��d�Џ8D<B20`#YᤶD�������U�`�Y`,��0(�9*a�3��	������U3�0R��Q�S;��#U#u���6����0$i��eL80v�7]F�"�ٽe���	ۢs�4��s��5�R,G���s��\B�٤֝�;������n���a�1�<|�P�J�ym6�F�?1-ax��n�2pt�va���������6&TP��;O6Zz~#6����=Ŧ�j[:?�7�37l�r�rǼ�U�B���A�-���I�n���3j�9�61��&;
9�f��v�~��Z�_
8��0�{;ُ%���,;O��Q>�Th-�aܿuG3.Bt�w�d�p�z����{�	p�@��fr3��pm`�7���]r!7�x2T��0D���9j�}�ڜz���0�T�%��ʙo�TbXu��g����#G�e��Pk��b��h���+����;�9�}}'6ӥxl�e��194�z�qq�.0w�@tjm�e�Z��b�}�f/
�K��ӝ3�V�q�9�!2�9�3��>S���oU:FШ&�OC���@�.laӈ��ZS�G�ף�a��J@������C?��ײP,0�ZD <�_]L�5�J����z��+r�̪�vuo��jݦ0��9ɶ�{��*�Z(�T<|[1E�����<Lmx"������qh���ž��?u�-u�O|p��:�N��'����{�t�UKr��aB��Gyɂ���x>%9���t�N��
g#���"�/���� �I�/��b.�B.L��Ak����� ڔ�����X�C��n�Y���cz���ڂ�S���V\\�t:N:9�ݜ��[��IΓ����Ӡ�y�C
�0���3��	ڢl���֜�}gi������s�t��Z~1�g�>p�q��8ҭ�S뉃���3�&sٞ�<P���ӧq��==�Gu�t^�s�"(g����j"sh��NI��*�T^d� U۪v����"�x�^x'�Z�BfJ����V�Y�6aw�ఝ 8F:G�*V�ط)q�<���1�[�[���X���._t ��>���Ѹ�g�g��FO�A�!88��\:ۄ��1�%�A�]���u��H��7�!��i	�bf)��{��9zf.�e� ���p����~��	���7{����T�~�p����"����Y':m1�0�L��u3�J��"
a�9b��#U�,}a��7�[4���|8��f�7H���Gzs9	��s��޷�D��}���Z����'uLj2��iaϻ�V�U�����	���	M�xe��r)l�x�p|�(�~���N'�%[*�6�8��	����0���ޝ.k͡7��cN�	L���h��^�4��p�����9=�6�1��?Ձ�/k� #�`w�*���o�O��b[||�aD5����4� �Z۵� ���_Mb�&�/�0�)��	�Ё�c1���˝z/�M8h�C\7��m)�������b���%��F/�R`:NDk@wx@�㣳��Zr�����.��&�:/S.,�� ?��cyLo���0}֝���;�wNO���s��;��b���\K_V��N�2�gt�e�!61H�'V-�Eqv�a��m�R����l���G�{']�ۀ��/q�1�|��R�[�Zǻ���=�œ,4g�	�ve�vp�6���01=G��	���3.��M�o�#o�S�S|��܌����E��^<�F
r��;�5�Q���Q�r�{�����9���7�����|��HG�9�#6���Ka�p4�;$(��0�Ye�sѠ�rq9���k��`wLY*k�#CpzAʶ��]}f�R�������������j
�L�w�XA�.��C�hwb�a<F :���7qm��qSq��r�!h~!�9��IR=?r��QGeR7�i��h=j�̙T����f(��]��ʯ~@�(���TM��ߨ�
�QiLXr~��F�^�O0B����m@�Q����y����	w��0�����U>�`%�N�
�8
�ߙ�C�]�m��BA�͘G�E���L��<`3�L�DQ���vׇ�
�1�ai���}�R#��#�`:��ܩ9�}K�0�1�}�����kq
!tq���D�'~�	�>�x��jL�����[u�4��X|$@-�\f^�雉�ta��d59o��ݎ��ЉɄ'#XG�`��a-��_Xyj�#"�K`���_4"_4�x���pt'�$K��n�{�4}���M�;d�C^���[��@=o��2�ߪm��w��,"�y����4�~w�7��I�� C�&0�]I:ox�tC�<���9�n��s�"�@���ʃ�K�r���)W�Bgq�r���:�/	ʝ�zB@�~��3��`�hr�p.�gh3�1�xNR&	w�%�����aa����R'Il8�&���N1�9<���m�{-���
�ʃq��h�Z%w8ʘx�Yب/�u��%N��X}`]
�'����!Ȁۼ�T�B�L�LY��z���y<�9��	�<��i�({ZN*u_�!�x���v����t֊~Qv>dŢ�.�J�^��$��7v��,�*�.4g��	�P~^r��п�C�~�f���c*����%5�K�t[���~�'�!�[䱬w�>����/��#@!!E0}�e��T�?=À��{��r{�E�͌ ����	�8�@4%7���so)���l0��2#n>��%�Rt>���c�?��V���^������A�1!	�ѩ��~��W�;tM�Pf�A�g��"W�O��V��fЎcq�*a�M�D�UX~!�Yl��&)+��`<���0�h����泓@4R7�����K���-Ǭ�_+;��0�n���5�)�muT��\����93��g�0Z��٨󔂢��n8-U�j�
���*��@���h8�X7���u��f/�ְ�'�t�Tb�x�'��!�W*˟£eN[�_�<�u����09�]�[^�!.��H���`��m���/�t0�A:�eŭ�����`��~r�ST��a�a���xhe���C�N��G�&�[�KUHF94>R�6"vjM�������L��=�Vr�#V81[>�u��;tM�S!juLe61��J�7�c-m��o��[
9�u�,�r���h��L��wm�*��i�Bg4m}'&[t��^`�3��n�-p��v����_����Q�u�y��@�U��f���4'�I��(��9i{�<{���b!����Ak�W�B5����+���U� XFs|��}q
��`�w��ާ�(�	���9�z�>>-�%B�8�)����2_�p;��O"{?ʹ1!��C�,��e�7���S"�L&�v.D#Hl�B2|�����T��'d�.5���R=a8���r���oq�N����v�pm����e��kmD"��@t���Y �T��c�!��92�Ԥ�^)귀��70��3���i���F�_�)1�PG�n�E�ӳ]w����NɅ� 8a�
�ZX}����x��0���m��@d��Ej��|+)1z�Op�}�Μ�{��û���>��T��E��ٖ��j�_��s|����	�UvD�� 2��\wx�wE���2���!��.A��g"�q�.ܲ� ~��&jF��?��a�B�'�6I���0��E�K�|�j�}!��f���8yk�Ik?�Q���/�\N�޷�����q��F��a8:@1����c�^����e�pt�i�� I��3�!�u�9w����2#S�{�C|�5�W��aX�0����8���q�'4��IM�c���t��wgb�\��T�:M�����X�[v�ه��[��s�~��fl��RP)�|FW�k<��`�v�~Һl�٣O��bus��$�Ì"����"�E����J�u�4]�O����ͼ����&&�)7�.���d��/�n�?�x�0�v;���+r��ʿ�"ᯨ5y:
i�ݧ�rc��*����Q�3(�����C��<���݇���|�!�������>���I{0M��39����H=#�g'����}��7�A�R0����`:��K���Z�������qZ��4��j�+�� �����������r��0����a�^v��Ln�w�G1:�մ�]>��z��:m���@6��,�F|�:뼢�R;���T*�����l�샋�R��=܇��?����TF��#��q�R���S���ڮ��nbSA򟘄�������tWڕ&���%C�ʎ��ui��5��ɀf��?��*��1��˭�Q��*�EFh�L�G5�|���4���a|�s�<�S�-u3������4a������K�c�u���1�(�����&���F��["_@z��Z�plN.��i��������PhFm-�0n&r#C2�1��Άdg"&��S���%'u�0�b%�V���u=A�������8�9)o���:D�+?��*���4�N�8���Sf��4��|ɛ	�^���
�̙�ڮ�j��H@/~Sg�e�÷���b�s(.��(t���=u�HN�9�4��JV�^1��%>�Sx�m*�;+�dƩ`B�[��	Lu�d���CM1܃�$�{N�6���&{7f�£X��� 31_g��&�T�Bí�o���3�K�n&��p�������~�|�z���e8����H��qP��	�������3�O��~�0��i�~װ0씞p��.K}�f[�T�� Ƴ��pm%����*,���U��oY}J��2�82�C;5��L�г	�T곚��*��;�&�K$E�u�(w�57�cz��FeSPr�reu>ʲ�,�~#����?����_z����X���	ͼ����
��xL�H�͚�����#*�"�
���=Uz,ϸq�ǸM�ᮡO�nO�Xa|I�K
�rFj�	X�Nv]�����i�@f�>��S*R��9'�. KB1/Xf0��Ǭ ���#zc}?I�6�B2cN��܅Ǥ��,�q91��N 7�`�2��	Հ��r�)����tr-�a������3���C9<#",�	���}D��X@o�D���;$�An�B4zy��T�5#	S"s���NUe�!�Ô4�����R��y�!�D)���
l}�j�)����V��M�C��=��T�@��b�~
|�X�:�y��iTX��0is�mWZ\�qhM��O9m�qMFL�vcOfNwЙ��7�)�t���̴��=>v�CUV&����K�I_���x�	f�p[�h'��FB�xΩF���
c�L�Sz�S���"Av
Pq��}d�9����ӈ�g",L�	�����hI7X[E"_W4_���y�J��_�������GZ0���Dc�).40X��ix��+�0�t�t=�UX����|T�Y�����8���N:���X{†
�rzS��n��#5���:�	¥-A��!�H�e*�}�ʄ�>si�/�c]
���a�y��ۂ���{��mB���9�/��d��W���5�R��s�S����	��G6����i�mL>�!"�p# ��o�Fm�E
��ۼ���<eJȾ�Q�I:=�;��l�9h����)�?��f��#�W&0.�����?�ʷM�?�KC�F�o7B%?�)�?��b�R��g�P~ɂ����jq�p�ܩ0r����^�bw��N|�7���+����ppu�K	ka�m�A����G��T�v�E�6G�̕a�ӓr�;���\	+B'g���'t"&�f}g "r&6JLh1�;k/���%�D�V�N�@ =�{�%-�_�Ĭ����S4$�D�80�D��-��V1�E�"���02�Pކ},*0n �cc���(��y��*o���C�U�=�oc�R�R�?)P����2��p9����)���ϙ��);�0�9E;�->��f��8M߼Mq�ߗ�1@��	��B-�/�Ԙ�j|���,�&U�s'�E������l/�'XA�S�c��͙�V�������/��a�ǐ�o#��>*���D��N����ꡪ;���I���Bz� ��ș�~��p	���Z�Xޒ�C�0�n��ki�13c��@p��Bw��&O���p�XA��I�k�~��
O@���`�&�0d-�ױ�s�a0�(�?XF�5��`�y�`���8��-��k�;T��,z9��7��ѿ�0�� h�2�C	�2F���=@�394R:��ݱ�P�W�&��:�f_��s����lt-(�
��u�%�~N��G���c$͉=����l��0�I�/*(ЍUxxۄ�F�M�90
ꏍ��	M���kY��t��#��y�}l3n8T�
e"��F��V&��H�ۋ��j�]�+|�(�Ҙ�Ʌ��ᛵ���9ʴ�޹�
C�e%)Ipȇ�<ٌ+S���a�`+T�ڱ�5'l3��n��j,�x���9�����Ka� >7���@:1X�[�������9ʟ�ae�����A"w�Lu
m�=`��Z�|��,7����o9_�`�R���@0�7����`�����
`vOXY�8y����t��t��1+�%2C�Z�����J����H��#`[0��.Y�;tΓ�����|}�O��(��#sC�uY��8�H����]��ʝ�Gb�Nj���þm�+m�i���SUP`��3+�~^g9�2���c�Xo
�1�5Cv9��8���F.����X�����RCR�N@�w|LKR�vR0�V���[�xF�����ȥN�e��E�ʮke�-^��,%��~.-�i�t��f�@p���
5�m�X
���f��c�V�(�����c����:�7e��>P�I|+p��q��:Z���y��ohw���(H����l-��D]o��`�lO��H��@pz�s���s���|�%��/yl`6��9�6"��>s��x�၃*�i�q�DU:M��`�l\G�V���B-��WV�a)m���cn�e���"
)��`���"뼱�{�3jSE�С���U�M FT���/J�ս��֠��U�%o�+��<#t?2x�g��VZ^�T���fҋ�ʰ���س�����u,1�ܻ��������좒͈�ګ�Pd��)(���c�,0O�d���\�?��F�I�B��;m�Fi����cuB���0��6��~�1ޤϑڪ�Is�*a���Z%2���[]ZZ��6����2�˟��V�n�����>Z��cib3�[M�r�='"v�u�z��4���)۫y��N�Cj����vH��cj�\`�����f�Q7�wH=`!��O��w��{��x{�U
,w���1ԓ;�Gh~#>s���9r"����4�`���?�ND��a�X��m2��x��EQ�%�i�F��4��8�LNP�p����sS����DJսo&�3L{�G~�w	Ou�<�ڽ~t�ՏeFL��7)�J�[�Lam�K��m@%M��6֬���]����)��:8�Ϳ/� ���<�c�מJ%�&~�*�lѣ�ͥǶ=���Ϳ���	�p_��n3b���.6��)/�\�Ϯ�R��(����C�
�7`�U�n�K��_��\�f�}b�Z����E>�(/�)�h�;,>���z[�?C90ݜ����#o)�#p:��!s�и*����hm|%�N`f��~�7wDb7�/b���cx�e���r��/�wo3���i,3�m�4;�a7*�Cu�����R=!:+��\��F�E�8,41l	�����iɄjD<���z�� ��'mD�JvjC��crTFUٷ|��r�C���;�"r:O�"��d}�ĉOg��O�C�	�f�A�05\��Wr�v������vw�B���_I@ި8b0�S;�E��&�ff˳խ�u���m�O��'��<�V>�/r��㻀�(*Yp�g;�)m�ɛh��o�'k��N[ا~g$�7��O�L�J���?z��M�R[QS�^�o�W���?2`}�A�c�V� N;UOp�%BZ�8��f�1{~���M�?�|�yE|�~/ʛ�8o
�}'h��a<����w	�������٬L�[|�#6ޗ��������&w��y���1_���s�|��D]e�YN<�=��0v[%moHP^[[� ͠�/�z3u0AbX�@��/�gOC(�Re����s-A�U������ �<e��ӓ��Z�A�-�3�m'�NO9�B%
�}�Vt�n��Fk�_��,B���O��=�p�	��m�iI��ҕF_LKd�p&���~)�/ω�6��;{���nu_���Y�v�O!*�]lj=�@���[��S�<`��I�l��K���Qh�'��!m�S�}u��t���6�,y��	M�Us�h��Z;����90��-���7�n��9	\�tvT9�pɏP>�S�3\a�H��6	��`@�r٦���h�ۀ��.*��I{�Lvk����
%�r�_�
K�8�7ڙx�h��ޘ�����ND���{��yoBu�u���-�u�>�^����=���$���ɺ�F��	l)�q;�[��mW0�B���Ԩ��@�2"�!�,a�I���
��"��0Ԙ�đ�9Sс̾���By\O�K���ua8�>��3�"۵Sb�g'x�Ǡ�K�������@pD<�!6�=��`�ѝ_��yI����Aq�@4zf�r#Y��N0�e=���/�9����M��'���U����`�#��nr��(���I?n����v�x֯�� .�92��0�O�&T$N{���em�MU-�Z>�Ѵ�O�E�6�JQA{1~�N�Rr�_N$�j�,N����wΚ^CT�Mo�[Wi��PKRQ��xF6+�ڪx�r��S��z���t/@q�v~���P=�/�L~#�1
�0\p�U�K�8$e��ɼ�Έ�j7�
d��:PO��~&�N��kM
��l�E�d&�q��Ʉ�g�:�
���'����y���(�7�0������B2:��D؟Y~_X9�m�o%�#'B%�{h`8�)�$L�E����K���V��o^�k�K�:zNW�ض-��fs�b��hy�34��s����u���0r�'��B0F"�@fr0�y��jz������#r��<�������ȃ
��g#/����h��=D��$JU�o�	��$ 0@P`p����fd���ə3&L�̙333333333333333?������������������������3�6~y񙙙����fffffffffffffffffffffffffffffffg���fL�������̙���Ϝ�����������������������������#�fffffK3333333333333&fg噝�fffff`ffffffffK3:�ə��fffffffgY��330?�ό��������������������������������?b���n��9񙙙�����g�7333332rZ�>�ɫ����������f~9�����������b�@e�^����<�0rlT�m_*��&fffffffw���.��"���Oy��33333&fGwwwwwwz����3���̙333333333333333333333339��vc\��J�5���ffffffffffffffg��?.ŧ%yj����1�xk�^q���?�~9�u�����+r��O],��|��������������3��y�g�K�޼���3�c7���~H����33333333333?���-nNBo�[�%m���in��������v�:޼���t����������d?�����9��g��ח�km��hF_��<�>g�������̙��y|�/�V�-nr�n5����^/0�����������������g�<�R�Oey+�^C�H�Vٗ�8�7��?����f~�����Ӓ�9Ka��؏y8�����9���g涯-y+�=&��:y�~O�|ffffffffffffg�̙2fY��4��Ҝ�|���ԚLG�9x���fffffg��3&gY��ߍ�<�g���u��\1��L,D%��*��>Y�F�����S	�g���:F�ZK�-�[����33333�������ϼ��������������3�<�g����޳j���V�z�a��7��_����g�3333333332y7���w�������f�DH0��Zo��(��䙙��������������㯓�'Y�t}���x��̂w��53G��ௗ���vu�03333333��%E���>�n��<���ɉ��`�F�����Ǐϯ+��fffffffffdf~ܜ��Y�S� Z��Z񁉞��3G"&Ǭk��4xx��?2�������Y��^��5j�Ș[TS!i���zk����5��{��w�_#�k���-���5�y��j ��������w12oX�X��ৗ��ק�333333�M���zϬ���P��߇�������d��=yuox���[q/�C���2���?��1?]��/���<AX�OYh�!+z��Lk��Aڍm�������G�8y�5��*OV�S�5�g�`������b��-�[�vd�כq��=�����-�Z��������_ĕ}��ij��_��Y��i��N>v�	�	�෎׬궯=yf$��}ǯL-�k�5�x��`fff���v[�#+�n�-K>�Ƃ��RT^[����ۓ���t����C&����Y�oX�=fh��J������3��P5���+cѕ�f.�\��~>>:r����'���lYXt���rx�"qD��f h�L./Y��5�篓�������2333'�͵���eF�m[(�m4�+�K����9k_�S���X�v�w�ؖ����3����鵷L�ј��Z#�S�������������3�?y|��Ƣ�YU��KT�a���
Q1��G���%�)C����p��t��w��s� �ٛ��������\�:Kpӟ�?�!���h第��"VŷDcVR����\C^."n��@��Z� f�i�T�y��16�yu���?����!�WHt�"V�Gt��qG���F�B�\�'%y�Q��3D�y�6m�Qt���w[�ȯ)3�v3G"g����siċ�5�6,A҈5Y��(�=S�)���N9��;B���t�(�����^Z󗁚9}�!�L̙�O2��5�n�r�L5�c�@}��Ɵ�z���ηk`u�w�NR��2[;���]�y�ͩ��F&����!��Q��6����L��7�6cPMQ-�i�•����:ߜ똫Tz̃	��|f�L�[�������e�¤�ET�]ꪗ���G�g�L&�����H��P������TV'U��j�/�*���r��y�_�:>}�����V�]zB�N��Ԃ-Z{W�Gt���VU:L��U#���4
��s3?��G���X@i�[}��jz�J$���B1'��g��[��|���G���{L�U���ڶ孿�����b���|n������l�^Z�"��Q�U��֬jX�(�gV,U�����*5jfu��R�3������ə�����"�S�&�B���Tũ6���kґ��OT�A��Rb{S���·z�YW;�~7�o1YYW1�i-W�0��y����^�V1H����1���'#�z��ذ�f0���#T���[l��IYY�d̕{���T��"Br����W;7w��L����2���M`�$]�%yU4sؙ�[�S5
޼ճU�I�g�7��.
\���O���f��Q�>#��pY�P�P�n+x����g^�'��S4:@�jbh���^f��Ə�0BVf$���/'/,_±��XL:/������#��M��V����flɿ�Qb�h�ja�^U�e_��%Z��3��'�%�O�>��Z�͙��)�in+x��γ:��f�dw���\j'%l1�I�m!�4����F?�j��~�^��!�������-��Su(R�sKk��}�M`��א`��U�6������>���U�zW�(DSձn��7�-��A�!_T��2�70��4Z��ԇ��PeE���;��=��,��S��.���֎�\����)2���3j���X]�cQ��Gn̯%<��;ټ�ѯY7��O?O����f�=�}J)���B��+2� �X�9�/���On�랤]���^Zy"��(J5�2f|g�ff}��q_�&@��*؈�x����Z,+�+Qz�E��r�K���؉�V�T�:�J�5�a(�Ds��|����^����(�X��'Y�$:���՘NWfgU��[.�7
�6{�j�A�n/XL���~�����*[�2�\�j���/���=�*�)o�;4!=�Z]hOg�{�zݘX�-����'��T���3խj��������T!�DA��.O�f�L��y[V�q`�tLz�E�/^Z������S�^�*Y�>I�TNQT���c8�2o�%,�UA��U�q.O�fd�3�]�za!z�����U��E���ʭ*�R��j��1�wNކ#	A7�V�0�W'O�g��ԕX�&E+7F=M�*Xɿ��'��R=��
��&�̫�=P�^��u�$��RG�o�2�?�s>1��8���B
�h�:;@�����M�%F�bT�0f�Mס�8G�ffu�儠q��G��6fObf0�Y^��h�Qٯ-�ƽdP��K���/�O�1���0� �:�M+��[4k��
"�Dàk���L�ź�+U+�4`r�5�*�	�s0p������)��	fE&��g[�����2�á��ͷc�F�ՙЗ���M&~�o<���?$e{>�T��n1�LB��?��y9�U�A]�1�U�Uѣ㦎$R�����o��3~��{���C�U�L��Q����Wȭ����y�3YU�;���F�UH�%�o�2h�M,r
g�K�?�O��z%�>�V�=�����R�-���O"�In��y����HE�wf�@KJFb�u1㷉��d�[s�����#o��©�-	XK�_�F��[KVʔzG��aV�LJ-|����4�S�v,mX�)vn�y!���E
�gH��3Y����?��L�C�u��/U�������kf�CǞ�굘�Ư�'�_#�:�+4���a����y N+7ЙJ;�y�������lߺ��C�Z�������A�_��ykw�B��G�1��j�%�a-+V���: T������ ��t��̯N+?�<�")��tG���_��	Y��W(X�}ۣXLx��3if�}�e���AĔ�3��U�M��U�������ɭ#)�~[�CȚ�A3�=`i��'�@��>�����_�ke)�� g�h����=
�eU�z݌�e��5�o+n���#�fN9c������AKJF_��Qt`���~�DΈ[���L feg�q�z�  bq�דb����G��䔶��jB�7�����g��?�,S�e@XFVZP��­y�Rd&ISގ��cV{"jבJ�x�F�j�C"1!)ix�ml����1�uW�x��S��䔌�w�����3;{�{@���+�`���AZ�{VTh���^�J�Ux��k���d��������g8D�Y`�mf5��~y�uX?��.u�>�/dc*�å�=pHq�I6���B,����w=?�	�BŁ�f�,�]�
�ϿD��T�"�)�-X�������4팩+�hFg�o���������`��F��	Y����W��1^��\�!�[�0oЅf�H\���)U�O���_�T͇Gu,���g�F���@MW�-�DY���A���أ�r�jЋ��UT�k��+�-YX�Y�u�N�M��J��>����~�BrJ�f~^�?�䕱xQ�3�����@�*�P��9m�0�#	���lD���]�x�3E���*}Z���ggJJ��;S�ʢ��a�Z��$'#����%�ef�&5̨*:���W��3�jڱ�X�u�V�in���:g��7! 1A0Q@"2P`aBq�#R���p���3C��?��-�c���7_�������풗��'��@{T���ޚ�9��S�"��'���!�ܝ�i;��Ob��B�J����Y�囊�
鉍9��E��*���ہz��1]1=��Ol��H����e83�S�CK�b�Um�F���*��uzx�T'��(��U�I�4.pT�ȴ&F�[�L��^����E5,?�
(WΖ��ON?�W(Og�1���U�#)�Z?%%a�'��Đ멻B𵰞�|3�����дQQԣ�cX�׳������شH�bwOs�Ln�*R�+�����L���$��r'����葭4��Fic_�)�g������Z����*�>�u�[���Q�n;~�쥙3��W<�.��D�K஌�ʩ��:u����[��ɟ�����ɴ����b��:�<_�R�mv��5���Rٞ�=�M���zjએŕ��mh�֥8����}J�V��oq��b$�OEKq^p�^Q��gr��,Ք�i��ؿC�)p����ՠ���]�+�b�t��|����Cc��6#����xd<��hOKB�K���lR�5�,�z���\"0G�0*S���*aԠ�#ZP�������i){�ӚY��JN�S�=~�}6�m/��>�R�[
���Yx�%HLFSQ��LM�H����I6>�sŠ��:����)�숅�����5�7L����5n���έ�:u��+�'m=���ڰ}:;��տ?�+��pw��FI�v|��dƅ΄4.IC؂���I����AE{2?`.�ϩS��q�)'�c��W����-�jGk�,OW�=/BvhD�>�,��%(�W��'����M�~��*�G۰�_F������?��-��?'6Z$h�!!;`hZ*[1�'tT�$�IM[�n���+EM��k�FF�l�Л�!BB��]4����Wu[pR�p�S��;N�>ѫ'dE����Љ�/tsK�����ҫ
��h�UD��*�-��'b�����ի����*�[-���y�*K1��C1f��$�iLh��t5�2�����F:�����Ꝕ�.o�����yr��w���Yl}���/��]�쿖v'][����>��pV���ǁ�k���N��CD��T��-d���~�N�|���6���7n<r4������g��M�vb�6�Ua
(E=*g�QOugի�U���c��ض[�%��T��b�@��T�uv���&�khN�l{�b|^���*O�*:}O����D�$2Y4�:����V��O�1�jɍx�ҢN�]Uo�S���\m;�#��S���(����,m���l����\iOr�>N�SLbwEH\�kcބ5�U�L����:U~XR��k�K��wV�2z���X����OX*JP�سB{��p%�:��gժ?�8�ѿ/п���_�;)u��V�����V���=�gQ����էK�;'��R�K�4'��^H""ʣ��c+Xꢎ��j�%W_b�#͛9c!	Ʌ����P��^��zbΧK�H��DR����:��*꿭^�#���i�yȺT�Q����K��cCG�|j��R��~�5d�@�Bz��H����QӪ;�)�)���zxy�I~T&�ґ��6rd�)�S�P�g��ƿ$&5���jN��t��yyeU����>�q�������?\"�騞�*u}Z�'�b��j�⊓��26��2���N�5ey hOKD�1�4+H��J?WF:��uV���O�ԟV�t�ʑ;��I�Q���W��L|1r�ةn)�����v��GU_A���(�t�������5��������峧ҧ��P�'��1u��v���l�E��Y;N�o_���?����b��-f'��{=��4l'&9٘�[���E_UWW�*���iۓ�M;�"��._�*����8+K���`Dž��1>l�.Ey�CB$Vc�;��c����c�V�0F<Q�������5��b���dN��*و�Ԕ��>5U^��p>�]��[�t�I��KJ�?�6Q��yZ%,�>ȴ>�1����	��3�,���B�y�A����� �d�I4�C�=�vp4M1N�F2�ۮ�=h���YK=��F�tƶ=����h�6�d��N�z �4R+U'�6D�T��H�r���\�'L������U3EET��s��3x�KG��F����^��v{��D����h���4{�$�A�b g�J��2�OC=1�2*TФM����MC�����+Rʖç}M1�����@���y~I#�$�Bg�!56�B
���RP&�F����C�T�7��,BlEH�ů>NL���	�T���a-k椦����:��D1,�B��Z6&�xPf�4�%I
n"v���{�
	lC��F�F�5~����'a�H��7�U&dIdWf'C�1�D��5�����Dž�"�b��S���]7P�}̟��f>I�9�Ѹ��N�(�&�թ�.tM�g�V��\�/�����z�dk�>�S�pf�G������O����(��&� �C�:7�43��L��l{�gǏ�W�ih[|��C��v���g� hcG�2��S&J�C�$kZ Ȅz*��-83�1����#��m_*2�Z���V4(��v���Yv�,��Jb�2!
S B҆��Ȫ��~4UuhО��v��I����.b�!U�T�5����&&���E�z��d[�U8)k"kC1��t5�N�[�}J�O�8^,���c&.�5+�K�Ob�x!�h{1w	҆2m�3ќ�.���M�^��5_V��ws�D|u͗�=24�P֟�
p'���z*DYi{]�bc[
�1ι&̋M�ٍn��4���C��[�rA�������x� ]�ɞ��=��蝊�V�&!�v�
�J#k&H�M��N�~ID;�B3�g��v�<��c���I&6$�q��ʸdn���Q�t�}�2G�H1hfm�ş�F{"�3��J^�\?;J���J�n=�q�h��=�ȓ�927���p��AC'f4��-r�Wn-a�(B=V��E��Šc{�l�E�;5�]%<���Ɨ�3S_���ϙ��
�n1��������=�ܤϊJ��L�Y@ՠV�Vd
#؅U��,�E��:�f�+���*���0`ω�c�v������h�4�����й���k�"G�l!��bP�5dMFd��	�d]�N����K�N��"��C����n���I�H���Q;�ՙ<Y��B��
Լ�m�bȒ�5��ť�Jȝ�(d�h���͢Ӓ��*�ճ'(t�cJ��ծ�&#�c\�՘՗"{1��tMK���-�:���*�k|ZY�b�=9��Ɣ"�v%5_!tz}��s���D�c��T���RU1���nN��ɐ'W�S3lYDY�n�j�պخ��p@���������{�㾯R��3�
Kf.F�����pR�!2Q�y�3f�.4&>d���)|��F�:q#cOC�Ɖ�	܍����?���[�'�LJ���.QK؅c�1�+&4N��φf�F=S%1l����)bઑ�bm����<�K�*iu=���wz'Ò<l���".��7�7=�w�r��Z�j҆�g�/5
���2b�i�$M�
����K��̣)�f��"n��64*�"ς*�s2&��\Y���n��J��~U�]�&(͢�W��?t�n�:�u3>�K�-�#M$�d���){3����̐���~�Z2'li�F�����#k��B�4M�KC���W�N����>T�6c lh�r5͓ϻ�}�ٷ�5ș��cʪP�v�&`Ͳz�4���[�}>����#��>%�7E6�v�!ZtA5|�#3�ظ�{G�i�C�<��C"�2D����Zй��
�#�u\mⓏ-�b�3���C�h��#��ڤ��؞�l�#��;(џ,W|5����G�Or�����VG��.Οbyf#���r�-�{��-�=�xeH�ld��R�z�%Kr��C�T��̍e|0.�O���:Z��D�=������i�y�:�WR�S�K�fضu�.G8*\heO�B)c��`h��Kb�E�C��8�=��G�R�,�9�,E��"'DWࢢ�5lM�5��}%�8�}�lj���VX���b�QV�t�o�5�ƇȆ{'fG�(���ET�ʖ襋R�2ܑ�&F���1�-����Z-�lx)b���<�C��-�1$�R��o�$B*��F��r�|2����&n�cCB(g�C0cC[-����-a�B �
Ly>�-L����"-��� Lϗ�Wei�K�����,�Bc��F̩=�^藂,�%
42/���R�ة,�Ul8��I#FIcD�o�]��qlZE�͎51ߺ�mhb���Qڹ ���NՍrF���|(��^�"�vQ=2GI;����\�7���2
��Օ�dm�w����&1�˴3beK��'f?�Ⱥk"�Kl}~���NI�%�1��d��g���$l7�֨�|�x*�%�"U�
���z�ˑp�q�Ycw�&�F!j����z��8��|x#��
<<k�B'\x`h��J�X�(͘��Y���2'y"���Z�*���$SW#�1�?V�����=�Ț�6B�H������e9��DZ2�3x~5ҡ��]N�ɂs�H��؄O�H"�Ь��ݰ'��R8��\���
7+Kar�-n?��R%Ue;I�c�	����d	����413$�BM�R��ƪ��qn<3�/F-�N<M�5zyٌhvQ���ت� �Ok;E�)�yX+�(�l�%,c\YY��;4UN�O��3c��0{""҇i��)�����_��^�c>d(^W�~ƊYOka�D�"Ѻ�L��=��n#���O�t��kt7l��:Od�Z��"w���#C؁��$�xⶌZ�|��Վ��%�0f~
��5����|O�I�m�����&5�.�A&D6dvc){���k�:���UM�bf��6>Q�ϙ��}:;V��PB�N��[�
�O�r@�ë{8���MFF���՚��Р���3�,G�+І��44N������l��U/"�颪r>J;�J�m�o���>�Q��r�Ƽ>��ൡ�����w��V��0.�z*B|	�Г'a��9'r6���dnN�I(�D���ȉ0.;7���M���
�[��# 0@P`p��������Yӆ>O���_�8t�Ӈ����|��n/�=˗/��m��m��+m��m��m��m��m�ޯV���-��m��m��m��o���r�m��m��m��m��oR~�m��r�m��m��m��m�m��\�I&I2N�$�I$�I$�rI'��m��m��}�I$�I$�;�=�ū����ܶ嫔m�m��m��o����[m��m��m���Q_�91�א���&��jr��=����}��m��[��I:�I$�I2y^��m��m��9r�ۦ�,ur�+�+m��m��m��>��'U�.��ה^9�k�2:�hun}{�s�:V�z��m����]^=���z��-x��m��m�m��m��m����.���l��R���^X�3�P�S���W�w���9M��m��^����GG�w~��ב$���j�n[�n�.��]8�rN��6x��oV�*w$�O�\p�H鶟��ٗ
�\x�kS?к�:���u�^_�x�?��MJ{��	#���F;�u�r�%���m��m��������1ɪ�&k�x�?u�N[m��$�I$�O����fI�'��M��'tR�')����N��I$�{��zd�I$�g����2���&9
W��Υ12�k���[m��m��m��m��r�'CRjy�	�x���r�T\�L0u��?�z��m��m��m=B�)���
	���CBuF8`뾼��_¶�m���G����d�Έ�̱ߗ���q#�A:�^U;�RI$�N���53���L2�$��ӦpZ?'�|{plI�Tá97���m��m�ۗ�ۖ�n\����=1�%��P8�s�m�'.��˖��Aȹm���%x'������FN��KoI1�&�:���B2\)�T]a�6�Ѷ���r���p�a��&[|�u�
x4�ۗ�n��5e��hߪD�.����@5�[m��z�_w����-��z���5
9�9��7/�á^%�x]l�[&L7;��r<{p�\�-L=��w|�S]Seߌ��|�'�}��N��G���wE$�e����:�����=.[z�|L[���p���$ۣ�75:�:���|-��e�uM�WM�:a����{���O@����6o�]3C��76uW����1'br�d�6�x�F���z�w�"���x�z\r)��nS%�Z��Ůr�����.�??'f[u�ח^Q��G��\��k��W��C�W��O䙮����2'�j��.K���#��י�����&8�&�r�O_�:[��u��wG�:Y鷷�5�UN��f�÷�:�r;p��ͻ�F$�Ӓu��.����FQ��b�E2ӕ�o��Np=*_� a�2��S(���8x�^m����ߗ}������k�va�����ݹ;�QD��p˫�x6⟂�}��\J�9\@u:�~���u�8���o��s�|�m�9rc�[z�䓡�n�&Zc�q!�d��u:�:��}��Ʈk�q�KE�&
:�
ꙫ�����hr�����yA�<2��Mpͺ�:�º�[q&bC�k$˓�]u�ҡَ�&L�(�ȉ��&j����m���'��Dǻ���z�:�fq=G]�^:#�
��������x=&=)���6��z���!s�Mo��d�t�rN���L|��Q��Jld�w���5�����c�\��u��*l`�i�͎[r:��<�\z�:Ό95��i2����щ$�S�Mp�ҡ�H)����c���h��mrb�I:�4�ǫn8.A95���Њ&
����9�鏋�.
��#���]X
�I5\G�c�8e��殸���[u�^]y2W6�9r��������:�/F'��(�9(�e���v�>3&��m�Zbe�'Pu���+�Z����m��m�ߍ���,�n[$��luR���e���!�x�1�re�:渎N���'��&��&�n��mp�=C5=)�}e��F:��� J�$�^��Ŷ��	�9\�����s�G�3�OԼ@�vځ��5A�.�(9F�Skzux]-�;1��0_
xq��eù���x���C�!��d�=�W]ՙd�xr�pf�o��2k�w��o�j��$ʣGW��qq槤�=[&N���\J�oQ��S���Q�<�7�	�����۩�pj'Re�_���OB��\1��uk�6�Z�.���d�l�����j�n���cf_d��1ǿ��F�k���C�/ON�3 m��r��5�/h鶠��'ژurN����N�2��N扛b"��@|mO�wV
�no��ח^mvɗ�@�!����6�W��<��=�����~�3�O��n�{L1C�p�&
yu�92`����xN����8?W��N�+��+�d��|}=.������W^�o�$�C.���k�=�z�m��������O@I:?G8�'NC������ʑ�uq0&��L��_<[q%�1�0���/�����}��t�&}�pwz<��u��c�Oh�L����.;v�x��nj��u7��r�ү��*�S(ߵ��C���t�]��q5�V�c���N�Σ����o	���]up=�W�^�)��W&�r`Z>&=iЪ���:�'�뗫nO	;1ʏ���8�j'�3�q�z)櫩�q�݈`�tg&�=tc�\O�:���d�刀�$�L���Q�u�&/����l���j��\�(����ĮU��:o�9�3�M�Q:O�N�����:��A����\<�wM\|��}Q�N�S�'��Y�F:�Zw�i��ɯ6��2�qn�����d�p��x�?���Һ��sgP�T��ra�{3��I��z0�I(�a�����kɉq5S�&$���ժ/���\;�t����y�#�"�z2g.��z29G��a�'i
z���/Ɏ(�UկoNoH�����rx�l��k��^�02^T�<&8�ӭ�L<�s~��\���/v�u]up�����t�S�O%�7�S5��&^�1~��5�m^\=��>�B�r)�8�ͺ�f�DI����?�5��.C7s\s_�Ձ2v��L����8�oW9N��Euē*�3]e�$1�_��Q�槛��a�&USe�%[G9�0�$��I$� =r徙��ЮA:�fQ�>���=�Zn�]zp�G2��1�L�G��|n^�|�zI�I���#��E�L�}yu���D���p�ͱ�=N99mͲ��k�lj�t��p�S�ϔ�G���>W*r��o�>��`�Iۮ������o�q�8�~�"$ęM͌�~���'\x�:��#��;�xp湮l�9�˚�s��e��}���}
x�c޽r���戟g
�䎳t�_�E�q��ί�N��1����	���{�\��5�:sa��.�M��sbO[�z��_�^�q��'�LGX`�mV9k������NjnMS5��l��po��8�ɱEh�^�I�G�m�v=�wC�u<�1�z���r��=ݝW Q
�M�tx �����[�.#����8c��G��o�&^
�u\�����<�>Tr�u�\^��I���uW�!���6�ogT��z�n nwr�c���檛�L����\Ӥ��:f���swG���<��>R;��uc���G/۷��۫��3�����L0ĒJ.')���]�sg__���O5��4׷��O�}>��T�\��0W�^�:�~��DH��)��6��xq�����sӾ�i��槰��S��&����zr:b��qe�u�����As���m�=GW�\HQǩ&\�w5�'��i��|�<L1�@���M��}�.k��L��bH�ڹ&8������\x���/s5@͕�A�p˜��L������Ɓ�;k�xk��� C*��	�]c��[�L@u����LZ�v��`��	�9.$�S�Ǩ&ly��ƺ�fO�8���L�h�mTK��2O�L5@���ğS.#�����]v�x�L�L:��S�$�N0���Bk�fؼb���㮺�:�S���5�E�Ȕ\1du׫\^�r�/�1��"w�S�����ǩ��2�o�q�N����G�]\	�$�:H�0�ǩ�.n;Ah����/v��8��O��4! 01@A"QP`a2�qBp����r����?��
H)g��!"�F:D���$�B)g��N�����͛z:Z�T|
~m,�y�C\
h�hcBb��?4�M����5��he,���Y�cTp|�xc\�3�D�MCY��$u=����$hB��j��,�7��4��C�#�����yd<���|�xҝ���x��-=�v^J�Є;�|��G_�K#�Lb�?�Ʈ�W"yC_�B��(�>O�֔�v�䦡��j^o��
q���44'ȟ_��!K��x\�r����
���ƹ�S���
_#jY< �E�O���*D~!,�[�q*���B�1�WLj�u�G�EG�#��!I��auU��Q㒯
2���gv+;Ԅ�)�����at��"�=?�\�<#w��N��@�MC�T�_�ȩV��Ȓ�3]_��u���U�ꗶ��<��K�8e��G��H��T��֨XK�b�8���a�t(fl�F���f�����S<�.G��>=(T��!zT:|����*�W�Hm�u)��i�jL���*�*_K6��=�J��Ϧ��>�?�_���U���t�
+�
	#Jg��E�>4A:Z>I��cG�V*D�5���d/�FJzz��:���S��z^��B�)�T���[I��?NS!�;F��N�d-��'���(��
}�3i��UA�k裄,*�У������ؖ�oW���T�R�ͳy"��bcCWOK���\�U����UO?u��E�e
�:WJ�Ȩ�<�>��k/�R��/�����[��_����<�SZ��M�#1�2x��z��C�+㒥�k�2��[��?�{�t����)~���r�e^����WMxE>�?J��G���}|��S�ћ��$	�LkBz�O��f�ϋ�4QW"�ƹ_o�x��cI�J���0'��W�\R*ڣ�S~�e>�^�/����B���O���J�z�h�R�k�Ȟ��5�t�3�J1v�
�����_S"�1�U؆/��v$�����Qй|�C��s��R�����*��������zG�"��_
R�]�օ�,�����v��4R��')�>��S�;�?$�3�����QO�O_�g֯������^<�}Z��q��=*zW�N��k���z��UWM(~V�>�Є�f�z2'g��z'D�ExC\.~����nK��G�]��!:�_�oR_C�kT�K��~���L���S]UWS��c��T�p*ҧ�g�:�2�KU,���`d��;�>H�)|�U�GO#��+r�c\�h���91:do��������x�S�j��z��cң��)K����*���z��4;䚶�CWVzdzZ_����98�:3d�О�f����g&d��O�4zQH�]l���W�Yl����OU^Na�3l�{�ׁ11�,���_cu8:T-���('�^��TEL~�_��Ő�����a_:>������v�ߝ�=�892N�Փ��G�I��k{�؆b��#�hz��'S�$����Z-�-�k����D���΅hߔbL^l�4&'�;T���G��2d��[#V�-cZ�V�g�a��ϒw��Й<jQ�F��5I.лL�4�Y_6Ƅ�z��7ڲw�g�����;Y�l�:е-x���;�9 h��?g�smz#S�#BП'��vV�IG�,��p5�u20�[y�B֏��Bvc�c���4>�hLZ���ȉ��]�ɾl��������5e��H3�]��uU�1lw�D!hZ��k�LL~�`Ƭ��Lj��K��A����e�#=��LLc\�E���l�$�h$ZZ�˴��C�nƝ��N�YY�I��:F�D�{6q�4��P��s�Go:��CB�&N�̙!��Y1�N�k"|R1�Ks&I���{��َ�-kO��j��+E��%���ρ��&t���T%��i�0{^����ON5��H���[�0J֟q���1���cBѝ�׮F��O%/�&4F��u-�ʼ1�v��.��]Sx�䇳%h�Q7����&u=��Y����Ֆ�t�Ạ�PGs;lŘ�4��oq�f�K��̍�lkBd
FL�.۩�;Ow�W�]��M��a�7V]��O��C�M�M=㩪D�Fv����;;��ȼ��bѳ�_;)�;gml@�"|
��[�b�~m��:Ӻ�
��Y��v�:T�䥓g�#�A=�cEK�u�!A=�F�lȭ|;��;��OJv�v��LObH���v��N����6��&�K*��߇y����Փ�Иƻ>���{9d�vvODj�p�&6 h��ocR�X�.���DmK�:1���c��ܵ����{��:�y��~Y��e�bӿ�ݡ���a�h[y��՘3��m&H3y��U$%OI�6s�ͱ٫H�2��&;[�n�܊��*ѥ�N���3�ӳ;ю��{v��[�ǣ;�R$��
��Tl�Ǫ���`Ɯo1�{w��lZ4Oe��9&���^D��`�J6�N�m�gu�b/'R������܊72{L�+-Ɔ����[V]��b���o�l�C$�T��锱�
�+Vt�ؾ61�4�+=
LOe�u�BJ�sͳ��!Y�E�ҟ%.�
kͱh���&L�L^4{u1����xd���ڂw1�;�B����M�!1x>l�I��襉�45�6��ŠN�3���!���d���8"%��9Ќ
x$gȝ��b�C1�2�1�7�xK"�����(���I#[�*Yf;v,�
m�!�J�H�vթnm��N�h�ndűo6WvF^���1��T�I��|�qiԇ"�#����
<"f6�z��Fs��>݉"�ڊ���w%���-�ׂV�-�(��a�^s�DO~H���������jm�������%��o��Zs�#\.L�vR!٭H��W�d��	�YY
��L�F5.��f6�A�`{N��xD-�{8��	do�lc'S��#����iV�4�#C[�'�,��R|ی��,�gc�8���8!m��NӢ]ݐ�	��Ⱥ�6v�����hk^u�H�EOj���]D2Lv90c�vLPF���]jW�vh�D��#����4=�b ��M7{�tSh؝�[=��5��I�=�g�ֹ���#D-��o�/"�u��fl�:�Q�_c�g��1�,���n��c�iж�#D���R�!캜��ͱ|��N�zs��[6V�"v�g�7�����3���themes/images/license.txt000064400000001635151213255700011467 0ustar00All images in this folder were downloaded from unsplash.com under the following license. The images have been optimized for size for use in this plugin, but otherwise left unaltered. You can find the author of the image in each file name.

From https://unsplash.com/license

All photos published on Unsplash can be used for free. You can use them for commercial and noncommercial purposes. You do not need to ask permission from or provide credit to the photographer or Unsplash, although it is appreciated when possible.

More precisely, Unsplash grants you an irrevocable, nonexclusive, worldwide copyright license to download, copy, modify, distribute, perform, and use photos from Unsplash for free, including for commercial purposes, without permission from or attributing the photographer or Unsplash. This license does not include the right to compile photos from Unsplash to replicate a similar or competing service.
themes/images/tim-peterson-1099515-unsplash.jpg000064400000471774151213255700015141 0ustar00���JFIF��C
	
		
$ &%# #"(-90(*6+"#2D26;=@@@&0FKE>J9?@=��C
=)#)==================================================���8�������]YLt�%Q�h54hm34Ia��u#Y��W<T�VHpY�g�B�@�����T$$$ *k�Ð�Qd�ؚ�Q�����D�=&�ET5�ϢzM�Z�QP���.)giڍrH�ݑ��w8�f�)	CQUe�#�@*vEZ���.���fTu�Ri*�]�⓹f]A*Ah��]|�VHR��:��L��fK�uG$M-3�,����\��]"�P $�e�VpX88889���*()		
��d�Ve�(�ਆ�7	HC��[Y�f� �����Q����@g�����M��������@Q�o����m�-���'����bmA���)KR����r����t�` N�?1Cy� jA�[�^~�!��U���_7�R�e�0�v�B�<�ڐ��\�rf){�kC-T�,�*KL���ђ3���JB���,ԢG�
HpY8jð(e�@@Y=�m�
iҖ
��`j(-
��R�/�|�rN�/3M=�9�u��y;F�=�4s�͡K��X�F�>�,
�#1KҀTd��U���U�$�0���^�����*nD���t�y�t#�35�q��5��
MJwM^�{�y.�5&N�KԱ4�D���M;:!�KR�Xrs`�HK$88$%T��`�P*��@�	��l:5�Z^�ZНlu��.��9��6�[��"�j-k��R�yUQ���Nf����GI���5��`l<�v��9uSI��%����5P�b[�AnH�f�r��#*ЊΩ2z��n����r�M◤�6%��l�!�w���uM����P*h�MsBi�%�Ù�Bd�r!�U`�6 
sPN�C,#�쨮�d#Ot�ј�:�FCh�k^v�Y�TH7Q���V~�61�KD�v�<M�{:�����\�sQ�S��)���X6
��=i4e�K�:�4����(����t�̮�E�:JPEI���d�\��iR���䧳��d.��d�ЪY�g:KX�Β�CS�I���88%T9��p]e�p���`�,NE��HT$��-���鈯?ׂv���D��h���mų�� M�Cb�&����5���hk�1�z��Faik��}q5��W6��y�X5M7��&��O*ォ�sV�;����J�u�Ҹ2��A;
w�K	��ԉ�a�F��&5ρ�`��U�ɼ}reRU$�htC'��|ՕT�d���C��`��P.	d�P"9���q��;��H���^=Ճy�f�֑S��4N�w@)73���R^����>���\WNA�~S��Y%X�
����!�J�L�]S��&�-\艡J�IzCj�pn(~)K�SͶ6��L�?.�<�9��"�M ΉL��ụ4P-Y
E3-j���i5,�P�*nEcd 88$,	���G�!�`9�;�S� ��})ܧ���m���ֹZ��*���>�k
ڀn*�ɦ���`�נ��$j)���S��XQ�'AP(��|���$��༲� %S]�
K;J剫���D#EZ�4�����P���r�]!';-i���B��qq�k�d����,LM-��,:5!!�p�����C.�����թ�������i�G*f+�*5��R0 15dh�~�Z�C=%T�J�T�5������^ʔ���[��!�F�jFMK���Y�����S4�l�K��G*ҐT �nk/H�{��;�VV�,��1�S:aV^�t�U��)I����� 5h�ҸؚO*J�LK��i�3@�"�*�E
�`�pX$8$!�&!(��$  9�.��!-����]�c9�F�O��m9���/Sø���C+Y�Bw
0����4�ʗ
�{8l�>M�$Y{˙�^�@�,�$nx*��p6�����46j9��M��;˥%�4��=4�>�a`m4�	�X�ѐ�'3�9CI<�C4�J�.M57V���!�eJ�ҧ�&��̇�BBBP�XrՑ�T$$ .�	7Ȑ�_���KH]�4�IǺ�"�/l�wͼ�V�
C8L�z^.���jk�c1K����Rsw��MߐM37hM:X�9�����%�]>��	4ip�K,�cy0X�r��W�@V�C�T!�1ȷ!��Nt󵚸;���ͥF��ST���k�viK��&
��k��c�JńӸ�ҚO��X$$*Ց�%��2��QpV��(�s=���o�hF�Z@ic�j|o��t9��i�٥��<���j����\͉Χ6�E!�����#r&=���9J���AA��)L��
��E�:/�%��1tr���͐j�:LgM���"Ӹ�SSY�gA�eBbW)RZ�$L���6,���2�挋���6T6�^������� \**�3�!tK8$ !�*������8|-4��]Lt��kC�ts���G��9U��4Pi�s�c�d���V�pja��a�-�z�&��5�����W��:�t5���T��QF@hei�.gOM5�tfĹ@ؕ�A�Bj��tEB�`�6�Z�����j�.$�"DB�pe5�ǃ� ܹ"�rA���Դ2�s��a�		���Ĉr(dC�P�pp�(M�¨�]De���t�c
Ch�J$v᧮~c�����[��=4��k��s
��5�r��^�^�h��}���(�MJy���X]�KfZ�y�F�Cy��y�E���+hj*����P�(���ߊι���F���di7F�]щ�wӄ/Jɬ欲.��`v�Y�UU���.�E
M���S2�� $$R;��B�!"����h鉒LC���#�p�GJ���Ȱ��f)��K��i������(<9O'�-�}��фy���6��:��"�z.N���p:�h�9�@*hڵ#��ZQ���2v���%jh�2���Ң��Ȅ6(L5��jF
M1.���<�[��"#O:Y��3z4�!H�R�\�[�jX�>�^&�������5 �CUe��,֦Zgk�*O��H�P�2B�"�s(a�Q�\.�#�X4�Ѽ�����ӑY�O �r%��s����q�ɶ�:=Y�o��r���Tk?hQ�1KZ��BHxqF�*Zy�"q�"��Ϣ�^�( г��n)
$�rkR4����E�^�����EZ��SI�<:�x�5=6��&���&RUִh2I6�'3��hV�zkK�T�J���pT$�&GqpTvS*JE,{+n(��P��Y��X�:�iK�T�CBj���PZ�pHHX$u���1���s��A�,�f�t����p����O3��k�.Ck;
���1R�*l<�^V���I�}N�;c:U
{��
/>�J{=
��^梄X�*V�*�~}��D���zi����-,�斩k:�g�i�O�ɵx�.Cr���n�j��g\���BC�
�2�	 ��c��9�rB���V��a�PY`���
T�T]>�W��VY"&�S�ip�R�tb�#MT�.���˭܂�ܯG+�܊��2��a��n0�qV��t���2�Ȭ}������"�V�ܭ�R��v��')�-f֤
�b�4��2Թ<�����ALe�����]�j�jn�LMq*:.[^^^ٞUWUK�s�L�B33��Y!p�pC%�E����VBuJ�H�.ꕹ�JlK[I<T�:����dv�����8,�)��)@��v/�Z

;�t;���%��p�b��g��l��54�n}�;�~� os� �YI��+bOX��3�
���b������MʊJ\�h�pڵ<�����W
����Ά�
��8{嫎�\�7)�pA3�Zxn%t*T�f4�Cͅ�K
g%�	��BB�Fr%��#��(�����E#K�-��Ν�SɊ�RGX���`���	E�i�"�7��7l��MY���p�Xh�+q
F��KH����G�K\�R��Ik����Sh��ݦ����+���2Z��GH!Z8��*5q�QQU�`j+?\�4�z]	�h
p	-�$Ӫr��1��?��Z�XI���@�<ii�sЊ�+Mұ4q�.i�Ҧf�s���6@\.gÙ`��<9Jʎ��U��H4�6%���i
3���2�iqK�h�1��\���TV�EI��w:D�
�҂KWHs-�Q�zH��Meun��WGK�	�;�WL�+���������"v���9�D����GI���4��`d��֮;��[�N��c��Z�k����U��)*��j�6E�`���*��å.��Y֗���yx���,�]e�� �.����JR�hT9����2����
i �#��%�*4�ո�%-%��A!�;mdIi"�T���Xbj�E�RK�Fn�^v40k�s�l$W7V�Y'�d�R�QJ��f�3Ӆϸw=V�4jt�'Q�UnU�bʴ��B� ���n�^�/L�P�������>����b5��ըӥ�\��ؙT��ի�KI���p�pK!�E���
@T�8h�ѕ;��J	M"��2�@�lE/s��E�WIs*f(4��6��n.�+p�X)1���#�?O�Ю�6��2K
E^_+c*�EW|�62���lt�ӝM"�z9���֤�HY���EZ*����C\�9zn�M}�$VFٚ5s*�uDMgm"i#C-��C��3ey]\�h3$���ɣE�����@�Glרb�2�rdV���>�z3��!�,�J(�2B�Ds!8d���� XE��EN	����W����9
�YҚD��:~�Iɿ&��ipPk5lb�+"vI]%���cA&T�G
rȅ�"�&��E�V���AR&���N�c����i�AU!��ee�k-mu�o0T-�zi
��%�SN����P��6vhd�hl�]�v�����eZ����.�K�
���8QP����)����������� ,sb�+��VJrj�"�n+W+��si.�ҥ�Ѐ�P\��u����U��P+�t��s*<�u��'�)i威�l��YYsҗ�4��X�Y��L"�&��U�~��oC�Pyr R��H�G�f��ѣPңΛfHms�pSl���b��
�P
�u��}ì����ʳ:����jk�.��-\w�>s�c��"k�-��L��&@c땕qOc�w�`���s,e�FI7N�IR�"��0����T�j(4i���ҹZ�A���J��GX��i
�!?��ZG4�$����O�b��*�E�l�Q�WK�i���eTj��pY�S�s�@�(�37Ǖ��壸곜~�w3ք��z��[��m'�]�*
C%C0�4�t��G�rM@H
��@�*+�6o�lws:4Q2�gy��A�h�kڭdJ�2�;�KV�K/�/���ppX8%��"|���.
�B°hgj܁ɥ���bk���crew�]#o�y5�H�v���S���,����)�:%�ҩr�A-2W\���(%5�-O���NU��������T:���($�J�i����
��(k��'V�/Mn*%�0o�q\��YXhgmI�Hl��=q"��I�Z�f�q���W<5i'�=6�v�:P(�5<9*����t���Ů�K�2��8+S�`��X,�Y̺,�g�aH�$R;
�Ľ�}Hl]E*�L�VM�tyh�Y�d�Y��n��n-+ANi��Eu�1�:����WL,c����:�I��2
g���.N(��G:C9����;���l�F�M34[�T�E���$�\�C`��)�ne�y���;�9g-
�53W4eOH$ݒ4WK���b�34��jO�
[�j@�O�5V�	a%�8��]j��HK\W��`��YSg7+sy.UI�v�*\�i���P����8��!ԟ-8d�{��1���"�he����=m+:R���s�҄��!Գ��7pא��5r�χGf�V��l����7
�t�
^Z�mJ!��,g���X)+��=��R����%�UB೛���ki�)�tr�uk\IX}�Ws�#��8.5`�T	Qv��C�̑ppp\$C��b,U&�̱�K��˅�>w!
Jp���gM,m{�Uy�-�����8L�f�E�b42.ҭ!�UY�V��J�Nr�v;(��4��+����}��u*�s)�Z֙�40�ɒhW#r��:��C�^hb�Ae���e�2��tŸ�v,��/b��鳞�Lb���@�EMsB���Y7ϲ�6�L4�����}��h��{
k���LR�u��w�(e�q�S='X�5�
,y��sx)?�j᳕RZf�Nd�#
洨Ánb)���i�<�-��]*�A��yzxItc[J�w��uoK�h�ʕ/sn�F'�@m���F1j�H��m%�����Qi��K:7���A��4�� h��--�g-CS,Z�Vp�m3>z[=��V��d���s�YBPDy#54WAMrfE(,���`�8	cy�ǟ��=>2I��.���nsz3_L����<z�4�͵�h�����T�$��c(:^׳����8�.2�1�PZӁ�˦�-\o+|�&��bBЧ�+i;1i���
�kԚL9��,J�5W\�pyw�*<�nR2yi�qd��`
ו�kv��-j�
��[(��6#\j��Fڰܧsa��0��%b�����̮�����O�ZRԇ6쁬�q�R4�Mjr��Z�ria����3(Xp �Yt4V�[k�=N	#O��CY����ᣦ@������[E��r�	&�3~�t�9B�K��A[Md��1,56��\m��#�^��Si��Y��2b�R:��c)0�nX��%�b@�,�f��yk\H�73�w�:m�ִIc���~����'&އ�:2{+�zb�	�(�:g�a\�5aAPrڲ���@� ��(y�x�k�+������-�@��!;^���p;���Jh���a�����K�JB���1Z��������bti4��ıR�	,����W����v��	��mJ-kF�)q@f
�T���H�5-[:g7�Ӝ��ƑP��**&%�X��3,"�.;K�%�
�HHtcR� V�Z��hkh��ҭ'S��-��'�
�Y��l��OO�Ж��������}|t��O�Ӂ׆~����K��-	mId��VS"�'�@��
�*���E�ם�9Udte)1�
����W��0��.�F$�5�(e�����Hp�P�6�Xj��z^��T���7��q��u���d�<�k�5tHC(�|;��8����M;�%�a�2fʉ%�s�-%�kZ�%���'�r�L�@�+��4�ѡ���<��9�Z�=e��54�A�R��+�-hM>L�3��Y=��'I�8��������{�W�g:��]cG�Gyw�����r��;����fX�'a��W+?Ir�M;�Z��K��Z TeD�̲ \1���'��ܴ�� ܚj�Y���!�j���@����dY1h����W	eV���^�ˑX{|}���H(��_E�`eA�O�fD�ʚ��Y�0��A@�m0,4�,��9��Y�GXHi\������!����N�s��rn��_8X�'1��po�=~F�Zdk
��<v^�7l�N��P;5At2�F]����Qa���M\����(�0��Ѐ���K
M�lbJҁ�%%JVn�"tj@�]L7�V%��!��0�ʊ�>t��y��`�&ȕ���7N�6�VB�pA�}�t�Y�-����|�7T������Y(�p�l�r��"�i^�ه�BWc�[9�~��J�IT�M9"���ipE�A�`� �Pm]��T�@!ëVE�*)ED&���@�3�"ud��FK$"J2�<À���ԇ"�����Øx}B�$��a8G!�5�y"���$�:�CJ���m{\KN��QÊBe��C�6�tC>�ac)�,��u�P0�TQ(�!�E�"�X8b�p�H@́���y�T�\6!]1��pb��VD���4��
�Xy(�CP׵Vd�%F
� �0�G��a�$8b�̱$���V1�&��#"�N�)�J�d#eDԲ�@3�Z�dZ�~iJ�aщ�:5p���mK���~}3t�4�J�����T��]U�dHHs%����\!����P����5t�"�&�d�p��,�'F]h���j��
�E�DC*�@�$�ŮH�V����Ve��S5Q
��T8ኂ������,*���Pç��Jdݚ'����jl��j�#���yZ��T����H��aՠ��$=o6��P1	�"����������꭬�Edo&*ȰX9�E���!p" $88\>
tpʁ5"�dJp�����Yˢp�HHG5d�.��*ˠl��"
/��
2S���K����3�`�$VNɂ����'d@J����B�7c@��YbhL�,�'!T�B��Ad�rij,���
�& ���vҐ��Y��`I&�D�Y�`�Xu��!�ˋ��`�r88P�Et@pHY����!!FX*D�YtppHB9�.�`X$|.ʆI0�BQ����[(EY`�Q�H�
���E�FY:l�/$2S��*BɅ���	h$��X)B�;''�p�pH@X  %�'�`�HV��`��X|Ep�J%�	�p�TVU
@�WV��zN��MC�G�Ȱ@Q�+'Vp�;
�Ւ���:L�*�D�*���*
�����8%�
��@�*�EY�P�Hp+S`��m��vDڸ�!�H6�d�Ac�Ȋ�膃N	�DGQ�j�(*(�����f$8DN���Ui\$:R��"��E�7:fK���j�F��"�,�#���H�UG7
J8!�b�3.�Ȑ��*N�	Q�dӲK��\�5P,�
5P�cjèp
��Ӡ��}�db@�@��gM2��r1��UPr�Ԉ�L �Uʶ�.*�T��C�A%��9zm+�2�楹Jt��*�B��&V�ӥ���B:zh�!\CVM�Z\��]�
�&��K
��GV�*��T�.#��E�eQ�&�.��:m�;.�GH��@.�����ʈ���ݢ�y5h�݌Bjo�Q$�Â���Ws�q�+�ʠ����=�9R	ХE���ua!���m��1V��P R�I�.M��!,�@��Bv&�7�UJ�6QQ�Zr^�sH��#�V�FY,�ꗥ!x!���u�Q�%�l 
�dTE��BF�DA厈\�hC��8#2�7ɐ���di�N��If��TC
���jB�`bj�!�BEP�X89�A�hCb4��dj@B �+��rjbB+,��@�J��
8L5�TԈ��5�T4��hy36c%$�I>�0I�2@�:7p �@傖�nAP�J��H�D���sA��
�k�i�EP�J��+Y*UQ�DUfBB��0�]�S2���8*�F��뛱y�n��21"����2�U���
��5g��M���TPdk�\�A@�huM!3�H�+IZU�V�;��24����lѸ0�T+8U��^If�SM���� G�--E�j��42R�+l�?�����6�Ώ˪=Y\е�B�06�E��f��m�EO�Tϝu­,�"�����'DY0T���3��O"�3p�)k���/��)�)[�S8E��wD��0ܒ����h:�K���
�yg�CG�&�M�`P�Y	�J��V`��FU/�&��Y��
���"����� � zm��mF�>K6��"
�A�
uT�j�U�c��U!a"��9�wʚ����T�bqUA���9��%�I�u��d�����h���H��$��.p�̈�i� �3љtjZ��y\MMM���h�Nfۛ���
���
3HU��&bk.�i�R`a�<���(8d�:c�7�yhg��Z����l�T\�?0f����n�Z��z#hv%F*T"�x��f
[s:����O��.�������>�x��L쩌����
&F�W�r�"M3S�͆Y%US9��Z@R*(��jo��+��M\�\
��m͒�U;Ih��c��k9:w劦ʢET9h��j�����
M%������T ��#:|�h4��Qs���IF�I���l�a�t�Ro:�Z_\y댛��[�PE�GK�t��Ԗ�F���]%
���'���!���y���J�q5Z���©�-=�������,�!r����E�d̘厗5d܇1Ujè%Sy�s�\-r:���ډf�vb����]34]v�f��
 X�CA�2�ܰ�eӸ�9�+R*�A��zVe��J@@Tp�*��p�s�%f�sZI��NB@ ��=��iX�	i.�:�C��r��ֆ�*�0i��榕�v9z=?�]����=a̭m'�*I��D��e�Pl	&pd陑a�XEA&�s�3���a9��t1��fk�FQc�ip��K**(�y陮PњJ��zj�TU�Y:��
P3Izˢ�p�B�����YV7Fgl2���`1R�Z$.���/���*�����R w=cVWW.e'�������0�f^��%\2nZ��=.��)p�/Rh��S*�|�kc�y��x��=Nⵢ��MJ b�*�!z��byV�X���P��I%��0+H��R �ZqSY�qH:imd՞v�6�Y7+4�ig�������){/��|5
	�is9��)T�A�w�tR;�i-4�kcj�m!{@�OI��c^��f1Ԣ�f�)tc`X��^���=�+I�5̐��������˓�K�kŮ�~�������:���*n*�\�=,�ߢ����a�SZ���/3݄��d@j�!Ug&�F��Y=|tZ�
3�v�H6!��R,�d���KsF��E����g`��12�J�� hgr
Β(O>���5�񽆛���O��geY�}.F▵Ƞ]�c�d�!��hSX�SZyh���~�
.{�gm>o����y:
,�|�r��0jeNc��4�
7�ӔT���az�}��$�yz�Wo=t��3.H'��+	&��ҋéQG��bɝ7�e�d�ߗ����\ٷ0.��.[)�,!A�>��R�֞:���P6��W�*u�f��.!2Pӥ���#MrlgE�^��-+Q���6��-cu��gki���
Ԛt�~Wb�:����^��k�t�0{��7G��x���67�ٍjMP�7a�֗>���V�.��/��3�)#���V7N4�K�r�{��#c�/kHnf��ٜ�y�[@�H.t�V�l��^Fy=\Ť�H��ճ-z!�9 �3tWD�r$�7�7����}�yS�Q���8��"�^���s�Rv��MBx<�%��c=r�@�V�K�$i:Z��-qp��j���-	���ztV�J�g��z���a�2��z*#��^���,>O�y]�
�����-V_N]Ik�ln!�˰���ݼ���D��:Cܛoa�<�d���T�p���y_Si��Ѩ��:�i�iz&s������4洔�+5jZ�ْ>vR�D��X�9Uc������!�*E�P��o`b�:/�\>K��*G��/@�`63����((Ҽ��Ȗ��t�����Z��ɱ,)E���yݪN��������^��D��V�D�=�7��U��} ����̭�kW�Dz��&�4iw��������0����m����9���4����������g*����ՎWfk�)�*��_O��]3ϴ�u	�@*�e���E!�Kˠ�|�ƛ�"��2��T;@@�nl�,75��m�=/Nn��u�fg2�b���y�s�����M�-�v�ߍ�8��OW>�:���*k!r0
+K�a�N�:he��
���md:k;��ɔ��4����
D�
k9=X�œ:��9*)jc���|�V��m�y�9��k�F�.�A��\.V�=b�7�5V)-�=5Ȇ�
�%AR����1��}-]�9��~�:ɒ��q���/e�����wV�ٚ)d�Iz}p��Ǫ��$ݹ���7�̆�U��[ʞU�<ι��n�!����S
�t�,6��,�0��zXĖ��L�ھk�4Q$�wMe^���4���ҳ^3����e�s��o3|������I�KYw:,��]�i��D���AZ2�rKl�ɞ*�C���O���!�<���zr�rjK�`SeT���R6�9(��+E�	��-)�wLČLH+as�gYjV>O��1�w�����~��X����Ψ	�Ngd̬Z{C��4��\��2�j -s�v������uie{|��s=��}�C��i5K�s�j���=&d���d2E�Ϸ��;�ӈb*iI^]���8nZ�H�k�Y�G3��4��%U3<y�N��$��:55�gF"ϛ���Sћ8���Cm	���ʼn���!y��U�B
)�{(��<t�8��:e��*���8�
�A��C��}:�~���d+�e��p�z^]%�R��A\�>�����s�<��k@�i��zg�뎅�y8�0&�R$Y�0+2k����WP6�&�M]�i�_*�H�s6��~^�韏����0R�|}ۃ�t�L�e�qWT8�5Z�	��^&Эp8�E]��f�i�p�;�U#o+���Im%K��W~��]<�p�m�X�LcZR����5���I�E��~
�#�=�=^�K:���+CyM����8�Y�1�\y���ˣٯ5�c�sϼ�y�o�_M��L�U��-�,�}+7�%�g���vX(z��R���Z�-��V���Y^�:�
t�(V�L��	��f*�����Ȯ��zx/K��ƄO'l�v����,�3R��~F�6�zδW
�l����Ԛ�!�`�'6��Ε'.�M%�P�ƴ ��OF@��A-�Ogo�Ag��꬇Ʈ5uGͫrh�2�H�"LW���9ͣ����]�5�Z��Omr�+�މ�~�����\�6��Yϳ��^�^��fos��?'y���?G-�/h{��G���t
X��z^=?�IN�!�7-�Mͧ��CN��K#L}V4��#6�+�T����5��F-%x�Bb^`O�w����E�1��%��츻L�%y��{>=�6���B'�tf|ߪ�wE�€�_��r� �Qm�P'r��9/6�6+��iV{>-,�myތձ;��ˈ�m�B1z<���GDщ�oS���L7G��^7^�b�@�X�v����o�_4-�^�;�օ�����w��/��z���|��8k��:c���b�'�����w�k���?� Z�N��JFc�1;e���_aDZ�Ź"���&��wF'D�Y����JE�R��b�v'{3E��bv�v�c���L��S���?S�<�v^sl��<�:�j���Vz�^�4—�M|�X�+�q��q��^sF�v=H5
��2����ɱ+�\����׮��i�2�kI�j^��4���-�`�f-c��k�Ϡ�nX���`�%���mn-���X��r2�ۗ�y!�n��+�`n[;��4�|�8���^S��`Z\�3�c�M����]��p�����^ ����z�^���_C˦�:�B<:�6Ƴ�L�m ��H�%e)^LZdi�@����n��L,�$�R�l�o�������c����e73�.<��{^.�]DZԑ���z���i�oiI��3��e`g��2zJ!�a,�q��>�މ��l��J��>��m�Rv:�#U�P��h�	=�L
�H�4�
�Ϩ4���F��U�^mn���lԎ�����-�>ҩ�n}���[�Rnk���W�
_<o��{�}�������M���g�~���L4s��r��9uъ��'����b������kg����+4ޓT]���ˤ�
,�v[:�K7-�=�'K�Qf�w�q�/��g
@;����1Q��z����f��C�g��G���V�qu�׌���;Y���Y�~m���Z������!��U�V����i����}�1 �yL��J�IX԰ɧ�̹�i�H@NNx�-�Zzݲ�&vf��ft��_��<���tc�,����y_�e����ɻ�1y�7K|�n.a��'�0;����aѽ�F�V��4���i4����f�L�����g��HI�
)��QV�G<3-�*�Q�іF�k��^7�O�~[�/
�����]{��Q�D{.P�V�Ϋj	�������F;����\�oW����ɕZc��'W<-�349cf}0�'@E���Q�
5�(�iJ�r�&
%���Z�n�����T/�/J=O�����MS<<��M���8�9���T\Qz��gHk/5�`�1���=��խ��2ᥜ��U�N����=�����N/E�m&��](�#A���j��sP�
]ٛ��y[�c}!L�V:b����ͽhWH"�n^K�w�y�}�G��݀L�?P��Cѥ����/(�^~��+T��8��S�_=n.�d/�C���H�eUї0%��
�%gi�P��]Iw���Г�s@O�E�햃MMH'.�2��:R4��r�j��׎�t�W:.[���� Eg���J�|��gC��KH�c)�V�ӽ|٨ә|�GL�)v�5z���r�9��H�T�jD5C܎(!F��r�B4��,uK=%�RNנ��v���k������N��-=�k�����,�PI�fN�n���j��%+]Q4�`�$Y�E�EV�[җV��{*��Э,uqnҮ*�N�\�b��2%���%�'Pp�>�MS�ψ戴t�͍�ֹ�v�Z�SB>����
�clm��.��Wƛ�(2�T����"�>����9�X�S^!�].&��8L2Ϥ.°^�$Û�t�IK*�i�y���3ZYh}�Q05��b��&��m��%��7R���1y�h�$ԗ�\.���Vt�ͬ
��*-W&6�i�Հj��EQ����WcE�yM��z�z�����sȥ��2�F};�h8m�Y�),��$��s�O-$�ahtd�z��:p���ة�|����٨�t���h9��2���HR�+T�Ԫ��|���#a�uj(=er����'��\�XV���G��ȡ�Ϫ�t6��gHR\�&$Tr�i�gg�&�ߟ��5��
6���%�L�V[��K��B��5J��܁F�o�:���OM����J��gL ��h���^ѽϫ��j���C�Ⱥ���P(Ր�	Q@UCl$�*���-<���h�?CyV��z�����u�٢j�&Q��Hֹ��*6s@��s_
�<��"Vd����Y��qh�����I����j�c��Q&�f�)��ke�JQ9�u��<�]�LJ�RA�N۞�/K��LqzG��<�]7�-6;�Ԯ�S+(�H�F.Z��	�!y��tb��uǴ5QY4q	�y���<Μm�OS�aD�'4�"ʩ�Q�uj���"�]�TD<��ԡ���K���~LMՁ��n>�<F���f�	�r�Pv�T���ޚd_�y��qT��Z]V��t�ٲ�ə-��%���gm���^>�Iza�4[�݋^Y�n�_Tޑ�*�_
��Cl����m�gLi3�cl�A+L�/h�<��fm��r���J�q�K���(֤8K�l�aj:�f��wJ�y�b�ZZ[�]�n���͘`c�heF�҆��#�)ք��^�#�w"�(�KYN�zPʇ>�C8ˍj§�-Cz�j��q*�LD�P�1F�oQ���Ѥ�S֍/=���N�oKl�whR��E��K�!ݦ����C���*�Lg���W�óc���4�_=��D���4����푖��
��usb�ѝPm�`��a�r�O�e�x
A�2Қ�ar�j,f4I�͙�@{t��t2@	�y{63R�����M43�5�j�b�75Y�M贓n��5J� Ν[�,d�MJQ/L15Y{g���6�M���@�M�U$�����j)�(�g��P�,�����R$���7�mW��ȨY��IrV���b�Pњ�EUl��d�!IcRw�%bjSHۦ�=K�im��>��9�/�Dh����g�
���;=4��3y�<�7���z�e�Y�
�1��:43�z̖�Z���
�2�:-��8��
�]�7�L4��mL>���l�SI���Fb�zrB����Cl5�7��&ySIڰ��PM=y���2u�H����O����7q�2�3��V�%
&���g��/=�Y�Y��A�lg�\y��4W��-�5��"��'�j�E��h���
�#��:K\"T�n���Qf�����-Fe�r��+�ט��9���J-6�F-�1��U��r4M�dQ^tY��N�A���g�����
��g�ٍ��D7�-�BEc� ��I\�)9mYk����h�^o�3L��c������:�M���K֬
g��c��]3��םtVњ�C+��B������d%r��C����h@�<��c2�ܢ@��yu�:3��o�k/�u��cY�{�?�6���u;G�Sj��3��gL�#�DVt���Җ@���^�t��D�����I$b���n^�I���7#p�Z4�N���Y��gk�L��U	�o��QiL(��v��X��Z7������j{��#Obe}.�-�fSJh�td��Q��'�cl�:��kWd��4���^*`ͺ��Z7�d]g�$VԬ��&�)�(�;J:Nv����K�qoU9VY�v���1,.�m-ؼ
�ٸ����u���%���u�:}5K���)̨j���l��Lzh�+'K�צDh�;�r��YU�K�)���LeZJ|�V;8Vv����e!��1��(!:A�\ �.l�y:�������l����&�V�n�oͮcZ�yK=_��|�_?��
��֋��u���KD�B��`Rf��W��ʣ�u��u����m�R�C�L�G)K�j�K�m��6�ڃSS:Y�Tt���-RV�1�hW7�՚F�V6}���TWDy��06¬�V#3J��oB��Zg�Rj��=y`ua������uĐ��;1E�Ⱦ��v���WN��f���\��\����ms=OY*<�F~����M.�qa���?P�
�~;=�1t�'}
ԩ���A@�VL�j�2,�����k��:��9Ƽ��4V�c�-!�*�7��V3��<R�`��4e���]S9��;˦ߖz�d^��g[Ԍ�f�����3��茭�*�n�y9#j᳅{n��CzgtsP�{Y�lQ
���3��Q.��<mg\�w�N�k�Xޒ���mw$��Ո��Z�@ԁ�z9�t�'vK�Z�[����q㺳����\l�s�5���W=Ff4k�>���f��fw�:�qxn��"�Sj�*N�Cc�|��9���
#]5��5X���Yk"R^i�I���	Y�ϡ�vԚtHLeIo��푤kg4Ϡ�V �J̰�5FW��stO�����]�z^MQ�zZ��RV-K�ʷy�[�ֱ�#Й�&Gj�Y�ˣ6/59���Z������e�5��Z�
�d��F�Tؓ�i:jN�c*>�����b���I^h�b�7]��[��c��t��*�6��e�I��rÞ��S��f�T�	�N�i���DN���黐="���;ϵ���ܸ-�&�:�"ҳ�L̺I}Ҙ�]���n&Gi�_~}�]],5��`��2�]C��u�=��NWBs7���>���Xν�&�O�N���t��~{SD�.�;XԋC�}��W;���BiH��L�м�JN�A)U��g+��&���.��f���AI�����4��tt���T�G;z�N�4�f��[��mr[�
L�'.٪�ї���C���8[R+�(�rV�Sm�ֹ�������z�f�P7��*�gu�(���U��T�W���V mΓLlsl��Q(ʖ΅���(�������bz娪�鼌��ihͩ��9zs�a�:��m�43v�^��G�o�
<.Uz�+���$Xf����ny��W��
3�s�K'M='N�W%�
����s\J��([.�6���K��U6(����R-�(������T��E6X�.@��a�!����%�͉�^.����ϱd�t�E��~�^PF�\�J��U(kKl���ݵ*V�R�'HQ72"F���P?W0gLᰘ0�S�\��>���I�#U��+���SH݁����궙��x=��O;��>U�}����o�/T}3����
���~}sM<�^o���}^7����?6��<
#�t祝n�U��fq�7^���X����r�
3Sy1��TA��
ˬ�j/��:HP�5H���I^a�Ns&��*�Z�"��w2(��S4�9+їK���0����8�����Ϸp.^�f��}��I�2�k �rq�W�*:3SD�;
�9<�L��eU2�+�vL�B_u��i9��V���Wnr�~^�5}���	���4J,��%���{�T�)�{ӳ~�F>CsJ�g���@.f����}x҇e�tG���f�į?��/Kë�w�r�j�9H�]h��q�U7��kL���"��4�Y�s��+���B*�SRY��.FrtCM���3
�\Ųf��	[N��;����,��+�s�ͷ՘yz/MM9�h똀R^�y��7��tַ�f��<��l\���H.��>}��@ur��Hy�6٣,�_�S�ܻg�&S:(J�м�V�Ҩu�R�o/7�j�O��Y2�o@,��8��#�n��nLkqB�s�+�b���K*��p��eSL�
bKXOU�vj���+��kˌ��
S"*L��ޘ1N�H�Ԩ!��T���Mݤ�4>�ĬI�3���X��@,n7LvW
E4M`��8l\4OH�]�a��l�χdm2��	�L�5�/8\��ʲN45Պ5@!���q���� ��jܽ#���->�{
�V�4���H��:\
B:�R�+��}-X����`[*%F�-mYYm�qɂZ�Uy�GP��W�0���{�����#��69��Vn�Rf�4��:��rk��g�=6�p��QӀ�6*ةO<�4 �Oh��,�B^�ƊUC��Y�ꎸiJ��|��ݻ
��Ʈȁ��|z���=��*h�kX�_C�f���l�eMrn�5*Ϊ-9AC,��E��:L�-�����3��)�^�g�u��Y�J�emk�Zm{�j��g��Y!��*�/=(V�u�G0�Z5sL�Z!4NQW+Z�t
��\�hܗ�\|�K�rW���UO:4��i�S�Jʥ���S����GR
�Z�b"B��Z�G��YD԰0�	�*	u�k�{N����|�&��}���}U�t�ʳy�@2&If��	��7�V2�L�m��#o�"/Q{�u��jëY�R�u�C�g�f���"ư�����H����>����>��RY��e�9�i��W�ɝ��5/�a'������Z�!�w�#d�D7�В��q��f�t(bniIQ�v�n�����(��1E3L��P�ٯ��ʕ�0�F��܋8Z���4t㫪EKzA�W
R�BĒBӻhKY���N�Ψ�lR��#44T%R0������j�4������8�3�io��ؚ&�	����]�K�.�t��$J+&���	Z��=�]��"MpU}��G4�>���7��K|�Nrl�R�o:�&�kg�������e��m%����H�9ҪD�ٴ�6v�˫��ʼ�ַq��Ʊh��4�ͼ~�o_��^�W<���J�t��K��]xm��T��#'3Y���eH�lPj&]��v"z�IJ�Z�MѸ$6i�t둬m���1C
|�相���rm�4������3���ⷞkZm��'���,4>�l���w,�t��+H��.�2*9֟Z=X=��WT's�X��^�q79������Յi
*F�Ҿ�Mc�9U�r�b�g�8����A��"t�b��/��t*�"#iQ��6حC�j�Y�Yf8�]o�F%:��h��B�l�k�oH��0!"1#A2Q$B a%3C��v.�x�_�P��t��I6w�$���;����`_�՟�`
���y�*�2�s���}Bn�Z*,�����]�u�����O�G���A�����:?\��;�Έ����d��Ǯt@#��_��H�'�J�G�'���?�M.�@]Ή�:�>�����[�zwQ[��<$���h��q��>6=��6`�r�
@�%����$��BFDH5Z�,��3���n�*q���fR_��H���Z%wٚ��^T�_���/��y��D�,�Rxܹ)A�2�t]439 u�Dv�VF˚���A�?�Ł����8f���Ǭ���ki�g
�P�%m1B4������Ҙ�k�OqOA���2
��V���K��X��
���BW�\Գ̂B����-:���;b3T�6�e̥'��%I�z�c��'�\�]� �`�)G�X������n�ܗj����:o��0EQW,Ĕ������;���?�U9��[�!��zwJ���+�p�}z
?��:�����u�9���Zʆiё���>�:��J�x	#��c���a	'���8T��	�D����'���8�.�{$��32wb�C�G��x:*:>���ڣlozX��*Ko����P��2dd�Fk6�Jeh��fĐ:
����`RJ�(��Jf�M_k���Ώ��[�G�&KC#�3]�;&����#:Сg�\�e\ԑ�_թ�b���H��f�&�2�	�M$���kGpj�ea{![�� �!�Ԛ�˓##���~5�쀓T3/j�ޭXadCb�8g�`K�8�i�[�B'5��N�������*�}U:�"
;��ۉ�e
����uuo�T��1x�A��rR1�Gy�"�	�A�]s����(�ARHdT`s��T��F���G]a4+b��X�Pf����\��B�T=���P�<�I ����8G���G�
$�=��(���c�w�==� ��_ǰ	#��^��z�	^>��/����\E-�_"e�M��-O`+4}�R@<�
��_5�0"���x�Q��&\�}w@fR�yst���i<��2A^�Yƙ��&-!J4�O�L5S�Q�q"p��kR��=NZ��Dv��w���4Y8��^/Չ�=���E���T���7��'��	w)��fv���c��a���j��\�I�wec�*���x�M�KEk�e}��쪵�]uUO��g��(P7hS�u""p��i~靝�D�ZF����LL����h��	&G���R��IC�<b ���f��sU��!���%d�CI\́tzT \�ñ�d��AdP���uTq�T�}C�].mf�1�UZrRU�cE���RR�aə&��ϔ��9O����C��vO���:�xc���(ޤ�n�8[�)=w��`s�?��\����aT?g��=) �� ��I^�΀< rpj�a�h�X�}6�W@�@�-'Qdm,�&��0�)�;���G���bL���Pj�7��;B�уWGJT.7��VZa��<���ǿG#0�HEPGf����^��:R���nφ�e�v�Π��p��ح$�\�2+�'�u2^��}4m��D�l�e�,��y:�;#��}S� G&�Q�O��Z1�c�N=}�_�#�6X�U7|UWU�e�֖gv,� ��%�0�:��r	�%?�^X��� B�왌�|��\���P�x�7ccB�`)�t̅�����f�"4�\�����k�X����D)k���i�V�z�q覑@íq(�%[�	ځ���NK��	ܬ�K{X��g(�ЀH�F�r�Ղ!R�B�zFij�괩��ʤ89���R�݃u�d�����p�}��#�}��	t={p�V���D�{�G��<��=z�p��z�[�G��$�~��AB<b�㳵2̳\�(�'��y�Ҋ��%™A'������iŽfbIߙ���ܡ�ί]���X +��wf��n!�z���`+gfEzn��+p��~z@���ұol�:��ٿg�m���v�J)���~k����%��4�yy:��؊y�����Y�^E��Cҳ`�,O�G*y������"o�>N�,vT!/��i��Y�f�G���=.�8��z5?��n�s��}=F�L̀������b���N�MC�M�����G�D����B�@�codh�y+b�bd{�{�C�\{}Y�GA�A�tt�v/�R���C�i
�c<�PA��/G�{�`b?��&����e-/T!�JGj��%3$7`FTⳤ�kA�E�A�������)?��
ɳՒ����@����s��
��ET��v.���$p��|^}�P��H�p�:��qW����^������W��Zմ��i{)/��P5�_=��4�v,T����6R9��	,8�z@�&aw-�iY*/��?�E��ٳ�8�ж�xh��b��:ٝ�X��xE2��F�\c�8�ٝ����R��k��U�a�!K�t�Ș�4<�bw���\���Y��ꡩ(Re�?�͟N[TD�dv����s�đ~g�bM	#:�/M�t�i���� f��KV�)&d�7}zt$���Ku�7"��z��LQ�{F+`���K/�ι�B�v����~��v���NtG��t����<��g�2=�Pu[�p�Q@,ǢA$�?�J��!y�b\����CQ�-�*������(���)��y�d��A�k�5M�{$*��tʽζB��T5q3�q��������G�M�=��u�;��u������)*xI'�GE�W�u�;
@�'�ٿ�8��� ��:�\��8���R����'b@�X���ie��p]e4t�z������N�`	p\��d��vOʟ�3�y� �k��(jK͹:s.��CP��}t�&qve}>:В��@b�b��&(Q8�I�D�Sp���I�	*@���:Ϊ<�<iD��׼�_�:�k��(Ǟ?1��	]��v�ge��+3��pT�C���kY�H��uΏ���t]��g�ڝ*6|�=�Q�By��Akt���H�DQ�N�ލ�.�I,?�z��잇��}��i�L��?"`��ž�k!I= �6$$�א.D��g���ߔU>���g�ˉJ�n�f`jG���RD��T�g�oce_E��D
v>cQG&�Z�*Lv҃�=5)�������0s���(-������|Eٔ*x�:\�C�I�9�U�����z��uθA�p��x���Oc�7�Q��C�$z�G:���qH�p�_�x88��D�d�>?W0�����lhF|��EMH<|�F�%p����:�z�$t@U`C��re
��~G�za�Gh���s����I^�Ť	R4֮�/'��2P�
�)2��<z҅��Ŀ��/��J=
���OKH��>t���D��lzl%��F��:�R�;6r����K�(�碲v���6�)a����ۉ?~��Q�,��
;Ea����dj0YR��}�l�K�,���������3u��d��"Y��
A8����uJ��vq��d\�Уg�g���v�C;1��_2z;<��~B�]�L�y��ٶz
<=���qc�@�'�p"�?
v�w$�|ő��t"��( ���"ڏ[iN��e�
��o�(8
i�Hj�]��z[�_�]ar�Wb'2�l�_���ez��"������a�p����~����#�u·�p|�q{������}��u�| ���mY*���n�.���ɬ;�;Ҫ�Wm�����
YP �v�Uk�}��4(Ad�]7�A�Gɔ��Gwv��$̯#>32��#2'��j/��8�,�U"h�J�Nb��@؂��� ��	�G|��w�^����N�f	�
~A?*���t�;3�A�h�?9D�L��,�G�(��E.�X�TQ؞�n�@�oX9
W����`�͜��ᇪgxj�����;,�,QJ��$��lB���'�J�����b���+���L�@�'-��^d�>8*y�R�<�ڼ=�R���'�S��t���>�Ad�?<���O�]�����l�5>�}}�-��Z֨��Sb�
 =����>R�����Rg����t�Dg.�Ы)����3�K"��m��O��jDU��ܦy���I�*�j�H�:x��T�Op���{��������� �� �����:#�x��y�qH^�H=u��d�nhG}�
f%�6���q���4ۙ&��M
8�`��珈KT��K�K}D����������
��H��.z�����^g��U8w9��'���/Os�C��H���qU腑����tt���@<�h�;���*'5M�Jc�3�k{:�9g*	���z(����	q@^I��f��<�ȱ���u�.�h�2�/���(wT�oF�b����V_����ب$�*	H��,�}:���u%~�YШf>>��9�i>��y���-4hJb����yx�#��
�JHx�k$��-�}`��vmFz5
I�{�n~b�@|��ʳ�L�Gn�����~J��$M��tAwb&����u�/O�2�F��(�v�vl��byz))[��.�{|����+�+ϫ>_vKl&O���I�~��T�����p��\�O�Q�����p�����=��P+}�H�_�u��θA$��G�c����;��h������99Q�oMQU��#�:�ϖ�ت��=�#����\�5a謈K/��:�	E�(|[��݋������dVV��$}�a������th�2���=��٤�(%�t<X��)�c�+���c���&�lx°]1JR���U���P���iF$�(�Ir�./�'J�Q��n�#f/*gEg��E�?EwODj1!�����43��~5,�l+λ=BXt&APt�H +TTP/�{����ԣ��✊?�4$t��u�X���&3�n��U�&�sC��هO�y���!؂��ěk�h��<΅���劆��"z�У��G$�,r5�w��<�RA�r콸�D�,�}MSc/aΙ2w��_bz��3�I��\��LFJ��'`�lV��ر$8������+����z���GG�V�8����qG:��;$pa�:< p��;��G���G;$���f̨�@�Dg�_ʠ8�����骵�# /�Ɗ
�
�ʃ��i�bO�b��NgЁ܉4@������7���S!��5d��jy�z��@�� �TtG69�PAN:��E{9��Byb���I:��a���跬�$vh�o��C������^���?HO��ff-,��f�E��9*����%O�"=��Ewj+�}B���8R�_���k&w�^����&�]�j�"���E�Rz�n| ��QD�)�?��\�!�X�6ԵgD���
�h
��T�Pָ73�1Z�����¨e���)�,�V�ᒲ0�� kG
w����9r:�R$h+�'Pˮ3����%�e������in��:{�[���aG(򁫭r4���PaD*~���C�kfp}�5���$�l.�/�ܑ�8'�#�vG�/:�sמ�p�$p���<�u�{u��'�
A�R>�$}�G\�{u�7;�<�w�<^1K���	�;�ȸHL��QJ��*ȴS2NR$���񵏄�#j��4��B�ܓ����W��~���^0�Rv�}����lԥ<��y$C��2��T�rnI�H���tTa�5VD\�f�!/V'�"�ʱQ�ψ���e��-��}A�$i��|o�\;ޮI%I�t��3#��>�� M��4$��ǰ���
@��.ߣ�!#�l�K�8�RY*�_�������O��7n�[��L�bAn�L(�J1��.G�_Ԃͼ�I�Y'	�n�#���>B�+*�kcJ��k
He�k9��)nj�M�F��4��$���A���m:f�&J�,Kr�C-L�jB�aXL�K9DXZ�{Le�(�p̯��=��m��T���Ȧ���U���I=���%K9]I�<����`ٙ���AS�:��x���9��tJw���'�M�:*;�{p�O�t{
xT��V� �c��y��uι�3i��<e�%CCDN�<h%ǫW���j�D�Z�/���#v+��Q<�=q�M�����0�U�RR�Ҟ`��ӭP��^L΢�A����л'�*�(�9�r�lW璐}jWj{E�}�ǥ��[;�͚h"�7E�q+�g ty�͵�}sfd�:�G*+�G�n!4�df!І��L�X4]"���\��F,��1
�RJ�P�	4G�ٺQ���G�Y&-5��y)陈ɑ3gz�?ƽ�Ev/=��
�����ꈠ#�fr}��莐���N�����Aj�A�V(Ӟy�U�KZH�UT��a���SO!�5�J{V*�
��[��L�g�V��2{yz�<����*�rg���,n�z�f$eɣE�a��ByS�������G\@(z�vF ���8�8��BcJQA�:<R��삽r�.�Jx����8< � �_\G�2���>���\bU�
C�{�}u���A���(�A�1�D��`�⦘���Al��d�B�������%��kC2��^�:C&j1��3m�_�6��HJ3ws�tA�D����=�xO�g�s�snu�,i1����b�ߑ�M]s��x�q��*|�B�y�'�[Z���Q0�W�Y;
t=]F^��8h9���ug�Yd@ف���|�I�r���2=|{�0y?Ng����"$~��C���DA��e|��nR/�?ȊsY O��r24����!9G>_�:պ���z�@`���}7�^��@��);����ŕ�>J[=���\�(�����A�x�%�Q�k�������W$/��ǰ��y
9sI�Ӓ��Y�3�O�K+����a+�I*e���#�F@B�ʜ�v� ��eIn�?�#�%x��!�{�Dp��܉�/��H�x������AM�)7E��DV,�$��P<uK��Ԩ.DA��3u�0�\ ��7`(*g���}���>��I����G���\O��W�����{��c�)t��X�Y�^��D�0��w=�%�(�Z��r���z�oy�T��ߕ�Mh�J��g]Nð5��S����#�;�a���S&��4Am��5�0${��Q_�I��t��Ge%C��o����`U)НL���͠(M>�z���&����G1V}
�3ڧDf�h��!?!D�
),II_������L��3!�<́�W��U�Y�׵Z����f����x��Ь�;ƪ�d���]�TPV%GV�I;����@���:�A܀�7�B�+%G�K�/l�s��]?Rt9��T��&��	��so�<mz�W<k\!|jI4x��4
Y�K�د}]Ցi?�?��)Hv��A�[�;'?Y5(�� �׏�u8j_B7�.�V`�A<$s�OD���~�N��}��R:F�蠴S�����O�����e�
5"��hA(�>��Uэ���O3��bXvIhddGRyX28���9D ��Ǯ���*	ʞ�I�`̅��,Ofds���($���}��I�@28�G�� ���-�(���;���2����]��4�0hHb����
�VJ���s�y��6��<�fD�_�����s"��O
�6��6�Y.=�LNs�N�ދ�a�̯7�f��4p��w�䢱���XӶ~z�L�l�t���MߵꠡQ9���OcH��Գz$K�V�Rۥ8�v����H=��y��.t/���%.O�9����2�QtH"2�ِ�F(�5d� ���v<!��.@\ǽ>bA&��^�x{��;6+Ե��^��-5h�g=^8#�9�{u"N�~���;�_2&Y���YF7G�bm��RY�/��O�!�B��ݛ���z���6��Q�u2M{P�}���>��C�:nt�����U�C�B9�bY9P�*n��4X�:
z�3�ѭA�l��\*��R���a��*��G|n��	p@ҍ�G$ݐ��N�l.kH��dG:�Fx��]�'�Ș<���x��Z�(�%	<��?l������̸�l�6E,�)���Ll�2>j�N[�>�:*��(ޥI�"&j��G�Ƈ�֒П�8��)�3u�� �w��&k:=b��iK���l����%5�1Dsɕ+RV.���;A�L�&�6^^�E�$t~�؆�I>0��@8%��Q�L_F�@(�\��u��S+�e%C�ڞ-s�S׸�#�����$^�IjIӯ_��]�O�4l��~<�ƈ�C?4N2^�&N��9����Ƅ5Y��������P��'�����`U�q�:�o���3r����x�Aͬ��1Ӣ�!���oD��'��$���ή�Ϝ�j���y+��
�]���Τ��@�{3Ӧ�,UZ�ш�څ�|}5II0�d6v~�L]��a�)<$��m����}}��?�3W� �����FY��H����I�*T��PՉ�+�>D�he�V#+�~�i���ݲ#  P�"�T4P�@?�_B��}����"��?�I�λ�{ �*�Q==Xԅ����D�~�-�OE�\ggG�H�m��s�K��*��I�dG�A�I��<�e�׆�ѩ	�H�E�!��Z��6c��r�^FR�FO����M�_(*4Ke��ש@�����)�3�*M�t
,���ZP�����N�,r��z�J�C3&�q�ƍbF�b݌t�2U�݃J�ꧧ�Hf́�0��gjSʫ5Ѧ�����$�̈[�=��Ic�dȺ�`�
��O��(ߠ&IRA�!)e��L@�)�t�e�e˜�l�NS,�j���3��;7wH%&��Γ��:�n�頒�QS2��2��n*�*��V��{�4�%�ocH�0N��$���U"��*�cGi�&��qaW�"Qm�<�,��(�6�)vYO���QCե�H/�88�ν� ���8@a�3#�:��\f'�΀��;I�	fO��O��$��tVDEoE�����K���kP_�OHZ0l~�{�0e��rk~�U�R�A/w!�+Р��E���7�;-}��F$*s��bR,�-��/�LRr���(��`��h��J�V���$��B���؀h��J��3#��j�s��1xś�����1!{�5t4��2Tz�Q�0d׽�K��=�t��y���9�>�@�f��ω�*&�,���]��Mϳ=ʞ�1&�2D�wY**>�>�`��X�Ф+�k*�����++��6��I�ݨ_�,���
�;|��q3n�tsZ
��@rU����6��le��" �*�J8[��M4\*�i$�D�'3�x�6
�P�&�aߖ� �"�v�DP�D#�m�?��wim(�c\:�P�&��S���F��L�5����	$iʮ�G柯�h�w,�ں��fb�OAj���btyOw~���I�>b���	��Y��GD}�)�'��?\���@���S����<<����/ڑDUc�[&��Ҥ' ��\P��Z�����@��(��k�~��X}�0��U����J��@?�\�����X�1��)_�?y�ν~�"	��R�+���e���������]�C�s0n�dHn����*��,���2D-��A���j�D���F�Y�$&�)H�cK�_�,=�h,S�� f�j�h�K<�K�l35���R!�Ó��O���7��H�7��(���{����*\��,Ƅ��qr1����th��'>���ъ t�Ɖc�"* .ȳWY@h�5�l��rgG��%qr�%�ƴx#��/"�wO�ArD��4��V����Qb���4#�gʤ�T�P�=�L��_N�*J3����陕�^*�r�r�Lh��l�fЬ6 ��Hދ�a��Y�}.��^	�� ��׉��
�v�0i�:E\ޘ���}s�Y�:i�@��s�/oRB`�Z��mh�"��h�C�e�/N�3z�b���6��lO]�	<��I���8@��������;
������+�(=�w�X������5{E�Q�	�%	-0U�2��J�9ٔ��P�[�~6=��q�D��	!�|ytȀ���L���;�hǓ�0��T�@�å%	�n�p��0�����h�&������(��=̘�T@R�>0M"�9Ҷ�{��Ԓ�쏟A/���F�C����TSY
�����ꩈ�-ii��DN�����,����F)4tl����opKM���t=��*;��
�@��P���iÞ?˫�f�Y�;r����e�`Ԗ��&lZ�ߡ
��/B��U{^PD}t=r��=6����c<="��cvvA5�\B�jwD��8G���|9V���U,�X��I;�OW�w�	�{�ީ4�Ϙ?J��g�dOk���U =	_�F��2��zQ<z7OS�&@�?�7٨ʇ�)9��1Q���P��w9��M��vu�	)�grMlXԐ>4I�ZY���@=����Ա���T:�)��<�:
�%H➏�����p��D�y��9�`�뇰	�Q�9�G��u�Ζ>���kfS��#�e�M��0�W揮���Q	�rY�3y�ĥ���OJ���g���ҋ6�VT{g9S��ؐ$�P�BU��v�(Rÿ�8UQ$?&�DzV����/�=R9ͥҽ|Vm��D�R .�}"�#���	��:}�Cwf�IsL�ު}&~K�g�de)4Bfi*��$�D&��b�,�_�\�)삎���B�ߠS���s}%��XՀTGGf�ZP�W��Zq�I��j�$�Q/�|�9�"�'�ä��5j�Bhv�"a�~�C��,��/��������9�Q�V�5�@D�?a����&��}�+���Y����2&!QU�P�c)�=���:HT҇�fiB�z	&v�c�m/
a�K��z�"�������[��y3�2�}B>|��g���3���gi��)&�6�E�a��YQET�B:P(n�De�ch�
a��|��%��=7�'����=qx�G]u�:�C����S�\�D�ړ�xG�VU٘�;bx��'��y���)kePĸ.{�s�GgƄ*�v�L��t�J��=$GIfb��8�eH ��=���5�Iҍ�3Ɠ�w,�f���toק\����y�HM&>6�|v�Α_"ڪ3��@�M��U�!���l~�D�{Jz�V��7��3FJ��&��9�LՋ)g숪'BșP��!WPK�K�;�`�),.K�^��Ϊs��zK2|��S̏$w6]
��9�q���+R���M1�)�O1�[�^e�8��
g��CJ��B�EjvK�7`P-�����>�egE��ifV!�"��C/]�W%�Hgf�������I�ܬr�L����EWW��TV 7��S��T3I4�
D�/ާ`�4%����4{*�:���&���4��U։�y	���DO��d�$S�2�$��L���j�[�P��)I3�DE�I�=�.�ĉ�=ÄWj��idv#�^���j�G?�x?����늃ӾX��Bz^(�D9�?D����Ώ	�o�@T�XS4$$�?��z<F�97J��+��Z*>B�.sM}Q�b�iߣ�b��O�����=��j�@�iyi a�z�5n��v"���Z$�j%�{�k�����(gw��5"�B#���Z6.#��z{��1�"��h�r��jp�3(;=;)�
���HT �
JY�^��DFQ���S���V�}���:��0�*��)�P�ذ����I��,p�oD4�[�蜕�佴%Yò�׈�ܰ����3�;#�gtA�IUM�C�xث5~eK�6��z���>���)��=����(���`��#�؀d݇��gGu�� I�8퐔���zg�GN�xԽ]�����^��k�lZ6��tQ��/P���T4��T�I&��}:S���Q	��z�5��C<��e�G�+MȈ����B����
��t��I	#{�dNV��BȖf��OfP�pθ?�]�w� ��<Y�=q�GD�������:$��v}y�c�%�:N[}�Jn��'�Q�\�E4��c���F�	�.;����=���J3}�~��3�]�=�Fd��z�@�����K��y�z�#{�O��*��C"�?=�eT�׳�ߦٙ�b�֫��n��zCC��3�kX���j����~�Z��B(����;�[iN�D
X����:��J*J�� @�	4�C���,�w/��j(]}�*���Y�e�S�(�>\�*|j/e���!/窱<�!��R4g�B��2@s�JO8e4DDq��
7>m�<��m��,K�c8/e�?d��l��_I��.���섮�En����Q�VSAstu��u�MY{���Έٲ�Ai|��f����ۗ�otQ\�GOk��v�[�����Y�x-m�'�%���ș<�T,�Ab�ݨRs��j�=�J��֟��I��܇~��S��bf�d(&
_Vt]��'��r��C�q�ބv��θ?��(��J����:�z �(�G��<�O;%{=��;�r:$�޵r	�>�G1f���X�+H�4��h�^u%s��uۥe��1*��BD����1�I�2�/T*���Rn���+3CZ�)F�6r�P�ԅI,�J*&�ʮ�b{�F�rT^��-H��<���f�C�B\��v������mevT1���$�h:%��I�*�62��X�׶���"�����U���/c�o�ȯ�Q�T"v�B�di>�CF�E,�dT�sWDX�j2���JQ��?\MG�*BsI�HhEzrȵD���v;cЫ0�~��՚+�Ls�%�*�)4k{0Q��H$���̓��3T��<{OwD�GmA-G|�,^��†�A�cpsU]
�2�W�-
g=���D&�p��Uɻ�)'�_"�A9-�$~R��|�-HM%V5�\���+6���!�I2"B#z�N�̟]�ʄ���C"eg�P���*�U�&����a�c���s���·\�=��:���^p�]pv��I?Ҏ��:�� �t?���/W�x�H�5��>f���0�
<��Eg�~�L�����%EC`N�@fM0N�3���R���!4��t����Ji�|�,�5`��	�c$?�B+�eOf2�����}���*I��?�E&�#5�SAEhg�C8d�Oes��e�b��Y��k;��c��S�wѠ��W�{�`Gbi8�^����I�Z��£�^_�@�R��h�I��F�D��V�aZ�Eܽn�j9�W������iw�'�7Խ��$�ٜ̽z��=#��M�A�F�TN7�vX�"Ч�t*Φq&G�59/�#�D�.G&����%4�'+�uM�t�nB�M$�#]*����{,��j��L�m	�D��v}Y�$�
��r4\���Z��\��%�FQ�~#T�����#�`]��A�S��	E(�9.����@�G�pu�:��:��?���xAQ������������}� J�u�[8���A�z#��LX�,�b���H"#��>��o��" ��_o�HtvRƾ���.�|����+�Sm$	%	��&4К$�5'K���h���K#�f�.z�b��ƍ�$*��[#�FLf������39�à��{<L�HUj�C�� za5/c�HV��Hl�2�'��zW��
{�hEDp�S@(����<fD��h���}����7f>���WE3��\��(.�&s��g�p���Ā��k^R�	�k7�W֩4�u`�e*8��ܙ����g�|Iг���*��b���� ���a�WBh>���@8
����c���U
�/������M2�KB�s=�����<��.t�5�H���d�XO��v~��$�6t��]%��b�V��m�kޔ6f�r3(� h܄\��idB&�t�����N�0�:�!Gg�ۮ��G}p���g"]d9_b���O\뿢�댟��p�(�}���Q�~�]0=������b�D��,8h��Q2Q!�Bx�i7�e���r�(X�P9�T
Qز�5:� i%݃�vd$P�`�j,�z�1��d#7#���K�=#�3�.N��i�E"���,���HT�(W0c���/g��p�抯tB�
�~ը��œ!��U��i�OKJ	�c�ʷd;YAI��=�ej���u)"ś�[K�.����}���u�|Y��?��\�M?�ˡof'F�@@��rljt�&�]�&X��T@�v@M��B�����c0�ȿ�<�J�N2BBL�� �꛴�	�AʐGsVTT�Q U��h��p_���'�$�{�f@��f���K�Ƌ�#�yy�<�ܗq��C@�L��j�C2���
����̎%4�&���Ǩ���
�M	'.�����B��Σ׾WD�HY��@��=�!۳�|�jX�2y��l.���k��k�^[����Ma���]7<�u�+��U���
cb����n(�웂��ɻȠ�x���ӛo�1�MK7�6'	/'?��T^��Qب��d%m���\�T��7Ȟh�8x
3���.�i���.�V)��2G}16i�8�y��8��0g��3���G	�<��i��y$ӁN}��O,��z�4kԖ��"vWX��8�mkrv��h���=U<�%
0��a��Ѐ'�
FJ��4x�������"3t=��I(Jl��K��������|��㼘��32�:��e���Q��8�8��F���(���ō�%���S�;�D��_�)H��pP��Q�4�CP(��$�ə�t����[��\@M�����+0QD.�;a���%��ΏU%j�:,���H^F��ieO��GE�a<j���TRԱ)Q�$�g�g[��	R�X�F����&��H��KPF��W&/F�H�
�HN�$N�e/F˦�1j��HWD�RA�Jo��<9�1�I]�GB� ��Ѥ��B��L�&�SS��*�Y&w@~F��@!�
{Rd����Q�IS��Z�O�3�
1��}eؓ3رD�xr��II,���R���={$��.o%b�
����4_���ݶzx!�O�=S>��	�SM3���XYS���Lȟ�z�?�ŝG4xlx�:�?������s�r�y���?���T�\�$:���z�gXO&��e<��zi�	��UJo�X�L�Λ�;�N�~9l�-����̚>� �N���DX
*����4��Yɿ��\������Ys/<��WEO3+2څ�/Z�v�0r�
L��b���Gh�3T&�S@"j�7c=Wϱg������smKͿ#٥/��rt��+�W
��c��#$������_5Q�-K~D��*��$��kCArj���:
�od�M)��X%"���d$[�,�-��-��yM�}�>VI ����9���>����HbO&��D>_I��\�G� ds��
�&�o֨ޏ�ɠ����U��0�Y�n���<�,5�?�k��_͠@�/��VʾW�ҫ���H��:�;�O�����Da�˗����t�u]'nnjR��E����ÿ3�Q�L���!Utp���yz�"�x��R<�S�|�a��A*=���1?�᪍��Λ7]-\=;�w%�� 
O�hͮ��Nh	�@6�\��܂��Z���p=�����.��z�Z�4
��]ZL����X���<���>�,!�8%�C��O'�ީDp ��Y��MO�"���jtIX(1��Q�>6s��,2�+~��n�|WN~����]3
�.�o-^ϕ
+:O�=���Β�e���*�D� /�Fr|~��ky�*F���O8�~7�����C�����R�v�������Ƣl��Wk��ϱr��6�����0J}��T�j_'��w30�Vd"�Ì��2�fg��t����&C0w�U.�s,�u	�k��g��=P��Y�r�M\ջ�&3ex����t��wADp8�4l����…�ג�TdC}/M�yJ!-?,�vI<Ş����d�M2r��������j?YI�E*(}����oJ8�d���&�f3W੉�fI ��u�#�F�腖��2���X೭_�]Kظ�g��Y�1vɮ�v#�YQ�{��|:�i�JX��r�i{N�6�I�:�|���S�P�mp�jU$i6M$�楧����]0C8�n��;���Q�v����+��n�|My�v��_V�h�O~��?!Y݌�_���!����F>c#�v��'�ThiKOؿ�O���$���J�
�"QHWdv�ܓƪ"i��|,��FY܀V^��,�C�Ű����y7y�kfJ���U���M�x�Ա����.�ƍ�
�Y�jqx̞S;<��v?r�o�A�t�>��s�C�A��Ԩ�L�ߩ�.��ܜ¤������Ж6�mƖ�tpy�d *GF�}���ㇾ��t{�EzٔO�<��,�	�L�Ю�N��_��H���R�tn4���ţ������ʪA�,���I�&B��p���‰@#B�#��DDř7�I�$S["��P���3U�i�� ��Cz$�9��t�4���Y��^~��:O1᭙ˮ`h�`��7:�9�>����5��W�yH�T�ߠ����q�21��dB�(O�5J�|�e�&',�6�y�Yʸ3N��s���<C\���4���P���δ_s�� *琰�^"���f�QS�|�/�م�{R���mY���4�dZ�V}h�>�x���̔���:v,MT(��P~�1�G����+�%px|x���gǿMX�S���.�����?����6m���%��lrσ+�~~ϧ��k��}�"�f;�P>�Yqf��0|�����՗,�,K��ϔǏ�n�)<��'ˇyǻݭ��4��N�����5&T�{��#_$?��ʽ�tpk�����4�h�R��Dz=�X�N7Bt�Ƴ* =��f��(�ZN�9�ͦǞ:'�ޚl: ��G��/����v�[�"��t+T����>7W�-����Հ(5~X���`��y4$�cy\_^;���sx�<�f���!��)�����Ԗ ��U�l1�^�
�YԈӓ$�m��:�y���������ą�i2��(e$�b�.��1r���+�xmy'�뤐��â���p����^�hUʿ�%%ݽ���S�!�:��>�>?}pwX�
o{��ŕ<v�[�Zy���t:��(Ԉ��4��{~4~<J8f��3�}qܞH��#݁ ��)�OɎA��V̄���~�:]�~@����G��9��όg���V��O%�����-��fPs��Fѝ�eb���D�5��B%�-��9%�����]!v+�%�۩ٔ��Խ��l�讷B�ئI���;;� ��:�����NWsI����7�ԮBĂ�T2�["z��i;w��z�}0D����	N��M��čH�&])�1��$6�.�}�5�4��
J+��5M3����遥��LZ��6f�Ps�y�Z�q(윷)�t �f�_��o�l�_â ?����jL�$��>U�}0���OH������_��e����kè�*�'��K'd��x+� 
0FN����;L#�i{��R��(gf�-z�	%܇�فј��J��ɰU��'J�p���J;���G�W7��i5��L���=��!{"�[��ɗbN��"U!��+��
����ן#%>�$��x���\�2�گ:���R�3��e���S��%�/K����ގF�(�M���e�]��Ù*��[�(Hp�=�����L�qx�Ti<HDB���H�vH�f9�)_B{�^�,mJ�OAcr��k�H4��3�nώ��J��=�2*:`>�W�~���-VYF|���@�M��s��dBN��)��Ȉ��S���21Y�w$S�~%=`�4�Am	53	�9��)u$��y�)'G���I���&
7ePR�ͽ+@�?����p��[of�y7�[�ۡf��Tş�i{3��w
_+c�;��hD����9	?'ib�Z�m)��6#��E��ʸ���a�F&��1WNV�v=�)g�۽�7�Nz�V�z�o���jy�̾�j��zʍ��p����O�T��HN�@��L���P����p�?|�>���>���;$��^�q��� �K�p�	�"A�n�pt`��G���z����I%��*�G�D�l�dGn@n1,T
!H�n��|��+�b�U?�>�G�(Aq�G!׎K�8zV���Q���{1�!X�	�R��<-�Շ$�Ҟ��#v�=�������8(B�Ȁ�V�&vD�I�;�1J�=c'着~��I�H�̢8M�"��z�	,y�Gr30�MI�8VuPؠ��
�;ž�ud�~E
�sl]=COТ
�:�Y۳��=���>�j�$�i~�Y��I$�$�#CW�"/�dչP�X�� 9:9?���/G�잂7E�-�� �\rt%
���5��z珱��9�k8,�Zs��Q�"3�w�~дz�̦�]b>5o���BFz�N�{�u+�1�Τi23��:1�SCz%��QRÄ��V�S�J���,Ju� �@�#��/@�9��@��@=�}�e�-���!:zbJ�,$�f����Y�z�}OC�~��T�:���P���?�	�q	�׌�3���+�P�g������!�P��x�Q���0 ���Y�P�d+t\�n��(�.O`�bW���`K����0�O锂z�$�8~��������$�)��8p�m�r%�,y3ےh{^���u����-̀�h�8ʌ}�r�*%���hÅ�� ���t��^�XE��&NEܘ��n�By�^ȉ5�*���&�4�^Ċ>K���V*����Y�'��m��,��r����;�
!b��
;���㢄��b�Cr��H��/A�QКEޤ�
���蚕��2�[��Cg����d�sݹ)��gt�O�MU��y�'|tq�Ц�,H�b��e$�7��{�
;�vU��ߩ(E�=��!���0'�� �A�	'�G�A)ڀ�����'��?�=��ñ�!�<S��p�3{)�w߳��U�
��<-�z?}�b=� '|�ON��h'�r����$�do�8_��,�RO&�b{�=��<��NZ ,�g�>�Kq�H'���Ry'Q��{�'�̞+���A'8����z'�a����?����$�8Q��g
��4���?�v[��"@V$�g�}�p�л��^a`3�6o��à��l�8	�	q�$�V������k/��5=Г�@X���8��[G�4��e�TӤ���G
�nU��#�qۿ�.��E��]�p�yUnE��-��z��-U*�R�G]��s������B���V��tu�N�X�/��:@X"�HƁ�}�u��h���I/F`�]Ge���Y��,R��cAK����K��ϭ�n�NS��:�S":*����@��b�:���L����?�S]�C�����8q:�$U29pNL��\yQz���g� w�㟲G���O���5Ӳ�3ő�S�����\�b8?���x���Y-��3���s�G���'�9,�m��|h�< G�a�|�$���̒O��������=���~;�	
��pW��?��?�O��2�-G���A?�KЧ�*t-�� z_�i�C&�z�x�!�/#B@o�P�a�1__�?$?��O'�ἒc�y���=���*|.ɢ���Nɯ�ؿ�ݒS�f�`�#����O�O�|n����'������m2x�I�x�m����z4��=���¸9�����v���'�/�6ϒ�[�[�:��Ɉ����r���`�N�e)��W4�!�����	�ñ Ù|f�O��¯+:*�9s;�!�T-�E�ț
���|�{�(��|=/;T�͢ZG?�z/��&u��.Od��2���ũ�;:��=���k
��m��V?�m�8?����I�w�'�.7����1%�����~|�{���־-j<��ـ�S&BCJ5�Y��� �6Z4���Z��U�y8i��kAX%���`w�B���벀�ק��$ �&�ǤN���/\>�����W��U�z�Ӓ~�X�Q�R{*�@S�{��Q���n�E+�K샢2�{ԫ�ò@�=�ڟ�U>Ș`�����,��������@��˧��"0�{/=�K����i!z�#�~�Q�)��?�]
�M�v'��n��wq�W�=���=���;z�1wrGvB��}��|]qZk.�՝�j��ϛ?�i���[��ƴ����|�1|�;	�?鴳�ڪ����zC�!Qá�v?i�z-�ޟ�Z�F���ꖱ$��~�F�`��NJD�O@�8=o�!n�T�ԑ����j"��=�fF^��{u��OR��I�{�����($�՜)h��I}����! ��*������ b�*&��;E��3u�3O $��>p�β����|tM�~$�\�Ά�)��$|��§d��A#�F�u�[/d�颂&l待k��M΄
�D�oo�(=z"��(�9�w�U#�1W?i��p�
G��~�����Gn�>�I&L�Ē��x�O�R��<�c�?�\��Z�׋ggR��CU�/@z���f<���7�v	�@
�@>�
?�~��(Y��x���ud*	�{�N����N��a���B�d����a]��{�:�O�`P�*��V,I@Gd���P[��7�L{�"�?����d}��{Q�����;*�D$���6�_�Q��f���8K��Ku��j{>���; ���N)8]�wŨ��~�J�U=-7`�x�����	��q<���I_�h�;�â+_����z�`�OrIP;>�����d���νg_�o`�����,�J��߿`t�vZ��m�z�j����~̑z�(��8Qà���hHL��2!�F�m�}&t9����$�=��Ic��f`G|ROC��׮&��1tt�!Ў���Kv@�Fp�zBD�)�O��1Pݢ��AN�R�p���~ԇ�V��N
��!&?����	fP�E!�K*���A_��2����h^���
�A	Gnۆ���O����^���Τ�M���[��v��芷:�Q��CG$�ӡЭ��q��;=٪�M�t8�a�ݻ<W�ğ�$��C�
8��ѱ��w$�{�U]��;��(�Cv�ې4o~���c�ހj���,�p���r�
���B[�H�h�%�~�>�k��$�
��#�xA���P}�-�n�]���v=�C����vV �X�ط���-��{rz�=����J}������ ������ۄ��@��:��o��c�\1� �1b�q�`��v�G��
$s����>�z�+�U��UF kc�������!��S�|�� �@�~b�ˤ���y\i.�y�w�a���	B�e���>MT('˻����'|��H�y�R�.��+�_��%�=�ے�cG�=�[��sb��#�%j�T҉OP�`�&�=���F	?����1�{�J{��%:�rXpՉ+�1���ј�+)�o����,�3�)�I�CJ��U��w�g*������{GON���zW���&�WKg��s�+6�!�[L�*����ˢ�\K��d�|�Py8��Z�v�ӡ`"�	S'�{��?���DF�i������x̖���(�@L�b�H"@p�)���������T��	T!v�=RDr��l�J'jtH(�E\���Od�U<%�{��7@��>��oX�}2�>߹?�D^���Ą�t����%��#Q��
�U���w��G��Hd+�P2�Q�vOW��`B<%S�҂��ER�+6��@�b������tJ�	,���e��|� ��e��R�F#��}��H*��=��go�[IdTDフ�/���~N��}�7��ȫ'G��Yvx��'x�To楚q.��N|�
	���oo�?л��_�v#�M��;�1�,��I{o[ɒ����|�2^�N���Gk��p	G��5��By
�g�ZP�)�vT�y]��E�Z��I������J��%�V�5ө#О��&��������QJӬE�غ�j���jt`��C�Y���ě���r�H�O\0d�L�=�e�$@�=�Ge�m�#"$��=X��1���HB�ч�GJ�CP��Y�6uZ)
Bă���b��Yn�7�/d|�������fOS؂+{��ۆfu�>Sڨ�R�H-��z�"�*$T�����N��͗�Rh��Oߧ�ԅhZ���Ћ�M*G�ݲ#��Η>���_��j	WS�k
�B�ݨ��O��.��i���[V�L!/���k`>������,ȵ�:3z:Q�qo&�����YίV.EO�;@�72�dp����K��ИF�UI��@�I�+2��En�=I�D�S��E&����*�)�{,�N�|bc�X�@����H��F�gVb�a���?��.�$���\���:�p��kE�=�o�E���ʀ=����,�hY(TQ̛��]e�􋟎*�$�����1��b���4�6?7���k cƄ�Y�2�^��:!$��x>�/�=�z<GS�\�}���T+��T�Q��vhモI*;v=�o�h�3�D�i��}!��:XvB�Yab[�d)�*[mB{v���lڮT�#,�������AA55$�Q�8�*��S��cܕ1�ڧ��@���S�ؒ�Σ�?�*��X����z��J"ɨd芢N�zE=�����;HTq�i��:I��v��s��%��JtY��KNf�L���X?�1�)<4�=��_���}�7`q{#���.�O�U���7��;^���64a�L�!^~Χ��՛�3RcGV屹n�����N�O-�:(@�@��B�	_�'J��7g���j�����!�Q���S��N���pL�u�S�`&�Ǥ�C�;>�~�;}'{������A����̃@K3�UЀ��B"#|ȍ<�{�)�g<���A%U���Vw>�-h^aP�m�>������Y΃VfB��`����\�P�F%��\��~1T�K"��3ʄW;L����ܱ$�dw'�y�'D�H����#��?H�/�6觴��S�T����5�|�;	�_��g�z�$(�e��wqҪ�0�[�BM��Ȋ�n��x�`*f��ر%b��!В�5E�, ��r�SP^�u* }Rn�i��I=�MPr�*��r�A�)�TP������!�hHXMݕVsw�@
�e��� *~��,��� �y�C�f�<LŬ������>o��c�[�Y����f�lp{$�RJ��u�`��-��s�޺H�V@Az��S8��E�*�$�n�pOD�{�)a�&E���U�~)FN�^=�fӰ�����u���V�\@���@I(���
�H�pT��A��%�p�������!��j
�����&�InŽ�`,ď�UBi�������[�`3��+|�,��D)�)k��Yޠ�t���C�=U��M[��ݏ4�Q
*d�YM��s�O��r����S'�$���������C��D�<�sz�A|��t��M����R�)":���y�ٛ����$(#�7��"��wT��'�ڋP4yL�VP��(��=;��ȿ?z��$�	RrO�|}����ϑ�H��p�z��<mL*2�|�m9v�U@�R�R�nº�\�[I~:#���	�њ=΋"*�,�~_b��-gogƔ=�+_�qTFe#�n�I5m�:ԟ���|�Dr��q�y7yx��v�ӛ��p�`����̤'$}�v�+z!�p��e$��в����_�a4Bz��Ă�D+TtIV,����Ģ�����EOrg�8#U�o��X!z��ߠO&E�����a�暇`C���#��z0FeY�7�B���Y+k?� ���<y�~��/T�)�a�F!|U�'�������22"�Lh�b���VvO�h��&��mF�))�+��zVI�,G��\�?��)>�.woFv���IU=����߹��ٛ�f��p�O�
�����|��'z�4qCN����9�*�1��S��IK	ጧ��g�e|r��$� 
�C%E��g���4���j������]� 5!e���ƔZ���Ҭ
u�e���3G%���2ivJ�&�X�
u1`�A�Ѿ.�F��:�w�8�;Ii��3�_�|��Ҷd�ϔ���B:��	z9�>�u?o�,�`rI�5Ø7rq� 1/Pݒ�2!ۡ_�z��l㻉�!Lي;9���ABg9Ӹ�e{RF�#����=QIj8p�.BE�8�&J
8�?�DbI@+�`�l�;�
{n]u�
�����	�P�Xp����rݖ���Z5XL���;���7��]�@�gcUb0���~��c؂��LH���l���DK:�.�ϥk`9'N���0&�3>���F*Y���e}����_@���z%�+!T�{!Ҿ��@���
"���
�{K>wu�`��g���zNJ���ֆ�rV���"\�-7�I�+����&ot9>���!BxQ���KK��c+�õ����H/B�?]R.�:�_p��@)~f%*��{5�^iD*r�3�Ľt{�DN�Ԅ�	_q�����";tJ	�ћ��r6w�F3@��lZ`���=���r�'�IJ���Hs�b�ز,�ِ�P[� zh��k�w�P�T��m��g_�|�&��SK�AWEN��$zjC�H ���\�{:	
�R���B��/���Tv-oT��-<I�M-���3+M�������'�@�}=��"A���pY}z+�pX�z�P��v//�@V�ث�(ıR��۩7O�Y
s6o�[�ef|d�#� �i���L�7(��{�īIt�H@B).���@�h�HK1<�N�:���D���h:��0�"��v���4�J���0(Un���Ks�����8I_��R�I��c���ۂk�k0:�
��^7�0	�b�j����8d�k/��DEEK�T�{0'A���ДX�nD�N�L�u�8G h��G�O��S2����Β�0$�Q����jW4��kG����e
�C��4��:z3���^ӘB���p�,I,�уn̞��T����=�)�2f2l����A��2ɏ#;>��GRN���|P	�}�G�IG('P�h�`θ�8��E,�:RAP��~x��S˦T������S(�w�?�TI��̨蕨�g$X�sn�A�Q�uJ"�r�F5���^�[Ж.�KP�%�G��Ax{��L�8k�@�?�4%:�K"�Q-����^因l}����"?��ff�3���n8�H�0f
%oO`�ܺt	,z#�~��ݟb��*�����G���� )<�R�*�[�E����;�MT3�'�™�q���r1=�,p�'�]{�Y@�
�`E����+��>R��%r8�ޮ@þ! �,y���h��+O��^�O��G�Qů]��4(�b2=	���1e5UF=dp����),��o��vyЯ�p#с'����i���R��}���1 �
hOk�d�Q벬6�D `�+Z�)�`���Hp��bl��oB�4G�[�B!,�7���v��b���2��?j�z�C:؛U=gU�h��~��!w�dz��#��$��:n�X
-C��G,��oj��[ٙL*ʔ��<���w`ƞ>8G�1����=l�B�PfA�c��t�i
��==s�g�-�$F����v$����}����
�P*�[�Vn�����z=��G�<-ۓ�P�R�>+�����<V��r~29.��	��a_f�W"$="C�/�:䃤�'Y蓖�ݺߓ&��/Ƚ�V>��I_���vM%�M~�~%c3I����T��A�.~�YbZ��_c�.Z�8���W��I.��ʊ,b?'�]�(��IC�H�p�`�[�'�}ž�/�ҩ�$ARxX���$���x��D{簣��ǵ��8X�����*Iڹ�5���4���0���/B�+��{�~3gb@U�rZ��(�/�� ��
#Ȅ/�'��2Q�z(�QG ~9{�?$�̕���F���T1���W"]?��I�ͦ��h�Ug|a�]��Dn�ԉ5�%��+%��Q���
����;��3����O\,�'zTԇ� K9Z�
97G����p�'�([�(&IbIK�I�vx	]��9�'Q�	�<�-h��IQ��+�S˯�R|�O���/�@��s��"�+�J��`���&
��넔A��?���wpL#3�шI^#���.�ʁɭ�Ӳ�v$��8�Ar�V���ܾ��AM���I�%a��<�oBG-W)� O�ޠ\��ِ́0��un�Z�F��.Ġ�0,;���uf�����i7ưC2B�^M�˾C�z� u�j]��ۚ�^9汉�6�q�G�&���9)DD>�@�+�F�#>�O��b���^�W���B��7`���� a�`�b��W�!�On9r"��[L̛�\�M���2��-\�i�ٳ�N��|w�D���n9j���*9�!C�á��]���Jf]�A�ɟ��q�O�&�'����9,K"����!���8��b��:ٙ]LxՕ��\����~7�ZJ���7�R3�"{��`d?�Ƈ�&�U��Nҍ|�ιg�j�1Uk(&sF$)c@_�UD
p���p%F�t�#R���Qd��K�7W�b�[�*�B�}aM��V�H�
�L��yo�m|�����54d��Y��f؏w̅�o���)_6=N��<|Zg��¢"��R`Z�V�*$�����BO��}��}&1�{��FU
`��h=%�_E\$��`9��H+tŁc��{קRY���2��sڎ(r(G2�Г˚�hVEH%�J����<}���v���(���-�+j��+�f���bW��&�.���L�tu�����$�RA�(�c8���&��]<��%�|_�[��t�����DQ�Z/_������]�{�c͊��8>���<C��Z��j�}:~9yϛS#�B��U�s,[M��Q:
���4��C]j2��[�ܓ��#�����t��}N�&)j��S�WO�"Wx�GI']�dmg���>A*�V�K��+-�KQQ�3�U��|d
�$t�ى�ܠ[��i��g�9Z�D�:{"�x�kF}���v��FV}�w_��9�&��U���M.!Chi,��6r�z?���������h�IQ%�n���7m����|�i2J/T�~Yé
�S0Q���)M�J��S@��Gq+��_��*��˹D��,+�<D1�&T�OĎmu��DT
|��O�k��R����O�ڣ�M>L���jw����v�Fo1���Кb�8(sy�9y� -�;h�?$�E{��?`��7vp3u�@��I�Brz����[���\�d};����T=�|�G^�+!��(fP�fd��hU�:��x{�ےp�	�����Iu�Z�uf`�C"1����5P=W���p�^g�MJ'M�d���𛽙�����Z6��V���0r�	by�˳���������坪�?�<�������=2b{Y,�<����<�yE����;��^G��+���/����|rGS
x�*�g��>d��欶D�C�N,Q�|^j�
���4���4hK�������>��Nj�ڡ�=���|���O�-䭴����*�ņY4�J9l�	�3j=���G�d�I)�r�D�䅒/Z`5�ZGW�Egs�$fl��ĭ����L��A��O#���Dz8��voG��-T{��,ўz�](k�˼Lu�V�� �oW_�6}#�|��\^�U �FЎ������y=�R&�d]ֺ���eXGbfȨm�}+(�5}��g'�V`\YX�[LO�ƈ}���
�^"�d_�Y&P1�TN3*_�*{�<i0
4 j7�K���r*�f����F_�y��#,i��%NH+����]U�믢@�@�6�WQ��¨�B�
R
��ȝ�t��؈�R��t����E�$�n	~ɲ�}��Y���7]}L�"�0B����n#�Gw�����Hi8��䏤A*K�X?��ʆ�."�m0U?o�r��/r���]k��u�_EU>~.W�'��J�,��>��l�.��I��:�u��Y)m퓲f�.�P��E�N���dz\�e���(�y&&����$(���*y�G3�=̣g�D1y4/Øo�k�����\��O=�d�
)���ai�̨r�菧?�Q�_��)�=G��	���U�JI"���SB���
JcM�����l����I�3��5|o[��񯉉�w���u��ӶO;��Fz攏�:�9+�_yɦڮ���W*���hgCR�Ƈ�-�%�FFݙ���JKz�-�`�n�s���������|[�k��ԃR�<溴i�u�k�tB���j�R{�l�.�r��	�
����b3���qZr��"�x��C1ed�X�pKĀ_� ��k���~;֯;�	7J��a���=P��sb����</��?>��W* Vm�R�O�K�n��������)%�CF�4͋Fg�o��nI4AUs��@�>��ctOVcr�	������3vb�<B0A٩UU��T
�A�(�q���T��y�;#�
(.Q��t:(�k�1��v/��qY��&�)h;�J�f]��X�d�f	�6����q�/h	{S<��f�?���J�����I4��X,�zK�|9#��}��5�,\�A�f=$�Z���U޷v��*�t�Wd�b�箨Tg��#�4_Dt=s�L��W����J�Ҍ}�I�dN~I���>lߌ<����2K� ����ռG��5���g�e�1��Ӷ�Ο+��g�UEeY�XS���~ț�-cĩ/f�����#2�Ǖ��|�"��q�ż�DY�_T<W��{V�}_��2u1�Q�-O-R����߱
^:�r�1o#��`q�n�c��q�d�B\��F�5��k���JI��/�`j�O�g_5��Qq�9N�Bm�=�]8�H������cN�D���vG�?���L���ƈޯ�Y�Ě��F�2���3tB#��z��E.����s@��_Y�=��|����������_A�%��.|֧LNmL�����f�����s��2���!�u �����Ʌ�ƥ��xs���?��U���e��'��-#��G�j�i�O������C�m�sg�_��`t���!(A�ʸ.��bHI=J��q@
g�D��M�����e��x]�n�3��S׍�㿜�.x�۝
|V�ku��yձ�h�Ϛ��",���B��no��-�j1o�'��2��U}�Yh��/Nμ����#�ے/Ncs�kc4m��9�TD�.���{
<��O��ͮ_ƙn�Vn�%����5T�?�"�S�e�3%+4N�q5t��	�s��"	E����
=�IGe�g�4�ÅK/و�Ru��*�/��S[	_?��5�
���ƀ�ĥP�Ć��'5�ᯢf�UM��ȫ�D�C[8�֬��
[ѽ�1Ե㏒�*4���W~x}��iZ����p�>涝x3C��<N�5��9��͞C�N�mM�1��`J�v$���.��ѡ�Í�wd�Q$�A6D5���J2q�P* E2�	W��}v��w㹼e�s&��s���S7���|��L�;�=���[��<�:�M�r����~#x������.�G5���·��Փ�w���F>;M�M�.�23��C�t8�9��O��6%1�h��x$�����_G�O��#�a��}H����?f���yO�a<�p�m��R��GNh)�f��Zx���}!$BY�ū�.<׌�<�>M�>տ��L��[Xg��4/Q�~]_�~N/,(��{�,۵VQ��ǚO�d\��C�E��[U]s� �����]��� ��gtLκ$��&{2�_g�It�MC(֠�;�s婅Q����]g�ż���ܦ��_6��u|���	���)�S8Q��>�*�瑻����x�ߪ�VAbS;�]�<ٙ���:�z�L���U�<$Ф��s$�f�����3�� ��~Y���vL���-3D�Le�t��Ni��"=`���!E����U�!5.�M�grq)&��/��d��
i��(H�d��Ui��إ�P"�X������N�R8�5�g����K�jލo3�
K)e�
4+��t�C)����쇍�O��V6��|�$�2�H0��GoM���p��2G}HIK� jJM�T���u�z������)5�tlA3��$�B<�����gJ�4�էc�!`�!3����B�u�?kZ�xͩw��5{���X����Z�X�

)������M��jL� ����|�)��+-j|Z	l�EB�?s�mNn���&ʞ|�y�)�<dpx�����q������ ������R���s&��(+����,�% ��!1W^��&����ヹ�`�P��J��V������Z���]����Ki�`�t�A��Y���A,�(��!��)4���	)5�t(�S2f�!1L��d��Wd4ғf�=�S+e�S�։���{]�s����ZZS�<��X����'�q��J�~��'���7���d�i+�}[W��}5�<u"G� f>"n�N<�$٪�|Y�lV�	/W�?�,p����<iC)$&�Eޝ�G*ƷYE�gu�[�ޚ�>���1����v� �Fc��2�h�Mh�`y;I#&<��jW�
:k���$c]@b�73�h���ҟ�l��Mw�c�N��,Y%�)�`�dc伜�*�]"1��m�F��`�M-�3�f�2��N��rO�w<P~O��cEޟ����b�3���Z��'�e�sy1=n�^M�`���>c~���6�_��.�ԉ�#���9<w��Z��?(���Œ�ʏ����o��<�QK�T���f�o�G�J��ҙ���*d�Xdȍ��u�y�5�,�/ ��Tz])�K���X��f�m-`�����FD���|tU�qc���R$����/��"=�PG�.�)�՚��"6�w�~�Y)�_&�X�w��k��EMr�g��uʙ�d��4�V3K�WѬ�		�CkII��*	�%��6�:�":dr0�z�Zt"f�,��\.;Q�X��ZoTb�R�$�������bJ�o�Q��Z�K�Κ��)b��?ո��g;":V<�O�Qj�u������N��
�<���B�a(=&��b3y;^Ka&R�wU�Ϛ<�����Jj�W�������x��"���H�m��ovU�rT^a��=C�7�hLǢ�P�#��$Y�^-t3�Hvg�}M4�;�J^�q�z\���'L�?V��������C5�wy�g�4��U�����͜��k���)�~S>���P��JJ舨om��|�sy$9���'>Ka�'�����jG�Q�6]�˲Y�����6M�A'���|��s��mg1{��6f��k�!gx^�[U���G�_����Q�d�SƏǼA���_�'�?l8�O�#��hu�+~7�P�6ߒ�O��ߕ�x�6l����U��"�b��w����I"%k����Y�Yg�kVN���FC�+��2���hy�U��Q��$�RFIyo.S���O��H��l�"c]���	和�9�ξE��z׈�e��b�"���ފ�dj_�I���@I	��@�{�h��b��1b�O�<��1�)k���[��4�֔vP�\��G_���٥��R�y���H��t�<�Zf�TT,y�&dZ?�Ԓ�u��L��hB+�Z�� �7]����5{U�p9Z�X'0��db�D���a
y�+���D�s��v5*J��Y��w*ѓK(�
��-4����Ĝ>��[	�ioE�˙G3jt��w�֋�*ĵO~����1bs&A�HD�9+�|9R�v	��|����1oz뒡�(C���
��V�g);jwKO&'4B���%�|`��a�bS�X�J�f���
�ow�G��e�� �8�8���� ����+��t�F�(؍:ҳ�rh�	'˧�<~�r����w�&���
<zk�$]wݒ�]Mo+�S��r.�Ӏ�;�C���pOH���GkJ�<�FqZV�E�V'1�M*�m�nm���Ix��E��`����sVϯ�"���(#�r�/⿌C6O�nL}���dX�i�^L��~8�=7��`�<�m����C�~g�l�^p���.?��O�)�2��t���O��{�����d��a{��ZAާkj"rO7飓�]�=[�)�����#_ۻ�j)�q9�']4եgI`�~n9<Xe4rY�0Sz)�Ѝ_��Z�NP�=Sʔ�C�im���L�Au`�B2yaVO��*����R.]��yRL9���,v��
�e�
�����KM��yS�w�Uq�O,<���j��9�&���>LIj�'�?̖�J�9 �>h��dM>Eoj��k`�}js<�&٠��3Z�.M��Y�G�V�DreW��!^�Q,��OD�Vtz��$��Z�F��Wn�G۬�د��-i��'|�<ӊ�����Jf/��6Iz\��bio%�rx��m^W���>7�h�5��g=1��n}�u��=%��>N/�{�|��E�Vm�N�Xħ����EɃ��J��#0��q
��l�}>*��}/�ؖX1#�2ht�ϛ>�I�&߫X�(�<�s"P�	@�0siMY�d�����mO�4�L��]���Н�p#��M�����m�;�O����_�|su�i��U�d�����̇����,Q<u��~1xkk��㽒6$^sZZa�x]7yŏ����'y�񗭦g�����#�r`��^Z.�~b��su�ǀ�����Fߐ�?⧒�ݨcʀT�"���F�>^�|ן�(8?�l��g� �����'�ǝ)�����5��m>�)��G.�m[�ޯ�2���qs�y6��o{�׍py:��eƍ�c⥕�|���s��u<+D���Tm������=�Z3�_'c�P{��<�\�'Pt�#mX�#=�D�o�8�m5�Z�$���~{ʞ)iXX�F9�,U��<�
�,c���|��/��Y�/��VK`tg�ӇZA�S�șX$���dQ�2�͍"MN'Dݒ��<l~�|�oB�i��Vq��A�j3��Id�9�r��d�n�5���w�1׵����������t�@�}�f�����eK�v�Tɪ2���	���?��:��G�;͡�+d�6��#?��	:�A���s��/cۗL����4Ъ�8f���	��S�♯���ʯ���_ ^#\�+"�?�v�ʈGM�+F/[y����1��zxt��>d��9M�Hi�j���21������4�K֞iL/?��&8�'��#�*eJ!I��#֪i��R�狒^=#��S2�}�ʐz���3��M�e�\:jd����C��9�+�e����Q�d�ⶾ��F����.2Xkm���š�,^y�~�_pD��<<7�xd}{[�i՚��i&y�������o��R���|VL��!���<@����<�0},��^�j�����#�%���ߗ�/%����zq�1l�hJ��3�в�猞|�1D����'��TZm����.U�H�E��Ө[�O��?���b!�|�$��VI�i��:��
�z@x/*��`�$��_Z�O�z�;�2��2#�M��F�r���$J��mq2g���RG�̳֩$�t52E�J��]����J�3>FD	!������,��9��BT�}��d�Ⓠ�^<Bl�L��w�P���f����&7�u�%����]�o���筟&����6@��gJ�v�􀟄��,9�0?���v�����՚[|>��?R�ס5��Ͼ��|X� 9��(�u�K>W�f��N����
'�XCǻ����)j�+"x��ߗ�&�zS��}�D�
�sd@#�'�I{�ٖ���<|dP�K���7�6�H�s�&8K���M�|U�����=,d�����d�S�V�N�3Zl����}Q?)�j3�i������KO������͒Y_��SLv�$�(���$}B?�ץϑ����R/}ϊ�����O]�Ϲ&����h�f_��T��$k\�YF������S=}&��Qbث�+h>��������JVX�Җs�h���-�!q�~I�*��T���GǑ��
����؍�ƙ��V� ���:���
%��G�|vK�g��<׍�!?��.S�^��㣑ed�X����|O��0T��S�OlX+8�'�`]q��
om>n>���;��
8��|���~WZe�{�#�tf�����ž4׷7��\��c�ȶ���,=0Z�J}���v/�Z�)x}Zϙ�����P�������q����+�~Xx���a;�8��eyWA4D��GȊ3��Μ�z�2��;�(.�p�t�-}�H�h�g
&\��l��Ů���Q����e@"�gv��/W�g�b�ԗ�Fj'0�GaJ`�����^߲��_���3��u�#�FCw {b`�G
����>c��|�ɳ���Ɇuüxl�J<��f�_7�5�7΋�v���!⼀Ϳ��<�em�Z��G�Fރ�[mz�D�]S[�E�_�;�?����PO?��k�L��>9v+ȸM����NN�]J
(>K�v@�<���Z9�?��<�4�^/My���6���^�Di��V_�i�o%P������a؛�w�1��ɿ�J��^��*���{T< �<Ϧ�!�����Y���� ���LZJ�}�].��H*�u�x��b���O��'��L�p���<́�B�S�s�뎻�Y�345_#�D�v���Qz{�
5��P�%�j����K�^�?9B���5���R7Z�D�3�\�D�h�~InJ'�/�Ǔ4��i&x��������4\�>�Y�qkmOs��z`JV�(x����?��Y��I�e�ȋ�>`*��-]�>h���z~I���s�3�`
��&#N]yq���wg�c������+VʧT?��ǗN��u|Tdil�9Td�}f�u�4�V=|�~�T��>|����ټ�ݶ��`����rK�K���d���{�w�̓�~S��
5�_�n�;�R���]�g{{��R�T�ɦOyg3�YP��6�I'��&;r�/��k	����Ճ��/�x�k�"?k����p�
$�e�#�EJT��"Y����CLAfv*�h����z��������ٝ.j������i�o�|���dry��5~0��i�[��"V2�_���忋�V���Xp�_�O��~�>rG�~;�1?�P�<#,����/�V���7�"z�}��	����vto*���Q*���T{A��%��B!z�����􇡦�$�
����k�M>Y��3x�r�n��x���5�Haq�x�͖���_����=|�����:eߥί�й�~6��>�<��Y��:m�o�lv:/˙��T�U�`�4�i��}�:&��j�
�G<���-� �~�JsG����!]0�tix/d�t'�F�R�4�P��gG��*��f�ޙ�`Ν޸�z#�Lʧ�H)<̟T
ʤ�Ъ�dG+4����82��	U�+Z�TkC�?],�/�|��l�]��<n���˘��J�
�~X�+|����܉���%~a�g��yF���B�Uh�P�~#_�>��!�Q0�R�Ή5�G�V�s�P�3���|�l��5�U�|��%q�,�GO=�Ʃ^1�Y�K�#/��L����9�FGC�S�˷�S���o���!�e�<qFۂ�k�h��M+/��e���[�~1�~O��$K�U��БO�-W;���*���0x�E����؎�J�`���!*jz�'�w*b��+/��F��(��VN��
 {����~�j�'�u䕒W��������"(��'�������7IV�|����4�L�<�j�!�i���[��[�l��睼0xܞ.o�˘�O	��~s����s�2��ȍ���;6����.W�����SI�O�p�<��d�cE��L��6P�4&�$��Y�ΰ!�mO%ᾱ�?�Df�T�GNd�sy�ܞ���||l:��;���,L��FP�R�g�I �Y�_Z#�!<�R�>�4�KP
�=�䘙��/MOw�){g�=���ŧ;��nc�M�R-���œ(������h]>�]�g�Δ�#����\���Y�"�:j�N�<

)FC�V��C��j���&�`��L�.Y,�)�}1\x3嶽���������+��9 ��o�ϵ~���H�s�
<T�4�������"�Nl�~�$�j�{(�ƕ#�ziS5��ރ+��$��Q������2/�"�!��|^X�F	��W��G��8��=�XҰ(}>,��$1m��
�7��x�
:������l��nS7�l���D�#hªrM0�10��Ay�r�y+)K�)B�c�~�d�QR�MD�OTN©�C쁫n2D`c��$��x�
d^T�/���P��$� �N��>���{��T	�.�
)�0*�b����P��ٜ��5J|��O�ߎGD���?>h���eC4Qs;O�?�M���>oɼU��<�ҋH�-�~�2���G	��q�b�I^(n��F��x��e:���ɦ�\�M���]�/l�_Guћ&�R�:��?i� �D�{e`1Įr��
������t�R�#���y?ۛ�f�$����|�W>4"���n]8�:)TX���RL)#��x:K�$Ue�nm���3����©��z�Xl�+�Dz,��I2�)�BJM���H��t��\e�=�nZ̛"�Yz�<�?���}��Q�	���C�,�4,�1���Q%�_��zu~�L�ʳ9�Is�-�%�K㭝*�ʙ+��	���,{s�TU�8���?4Q��C��R"�r��ƥjv���sL	}	g�N��P�9�>�3�o�����H���v
ʒ��Q׶C��q!1��)^$[ݾ<���;diz�3b"cYi,��]�%'�DU\?u5f!��M~�&2u<�ܱb�IwT��ʝ���J�kAF4#��/tSPhJ�qJ�Y�=J���=�ԛ��"�>;�d
`����l-��U����E�x��x�c|��,�\U�����3�������7�[Z�EW�*���ǫ�� ��AM�5�j�˖�=�	�uT�5Y֊S(?ȓ��e!*Sr*�-5|*���hJ�(�R�R��n��U�@�gO�Ѕ|�$�җ��sCJ�7�i5J�r�����˘�Db8�C�Z�3��V˶R񲀋M3Ky<�f�{RF��zLZ�
��\�����Bq�l��m�P�B��8�e�5�Զ��5�E�qxQ<YSj����#�T|��GSLB���J�3Y:>�iފ�Aބi�������ނ�XUQS����Yz��ˡ�;�ӌV���u*�s�pnR���;�eH�z�D�DDM_��l̈(��3�MjPK���K�Mz��!&]�@劤�T�����(�MP:(��*���d����D)JP���:FQ��J���>�֤�K� %&��M��b�E���wX��R)��aBH�'�Hz�:ؾ�R���>!+
�I�oa��z�m�buC`,�=,��U�
�R��r]�-���'����M;,�dz7<bK"N�~�p@���38uN�P��Ѩ�H���9.�g��sl��X�B٪}�tr��~|��cMQ�Y��Rdݒ���H�ve>�r��� ��� a���j��ڤ��Q?^��]B5���s�a��vfmJ�bN�8���/x�$Uk[`t(�34����s���{�dmz/�*�|S���t�)�R�GOF��tGD�̆j���	=Xn-�Y���>cM[f���s�Wvr�W��|�=�����O�.�� ���-I1�<f'�ig�H)#�t%�u�g�,g&r�F�Zs��@�l�N�dJ��ٙ=�XW���)s^ZArQ9�8��H\�΁3segY�?Y�OG�*���"���qgJ�1E���n�:�T�-�(G��P'���Z��YXwR�̃�'
4�&��?yh�9	��P*}\"�‚̤�\�����m.K��V
;̡����7�I��bǎKIH@{g6/��/"�L���d��,Վ�_Y����U����s�}]��&��.o���_��<f��_R�pX��_�k/M� � � ��Uߌ��zuO���
{%��R�,Eu�E��/�3�9
�˶uq�Ⱦ�K:�
Jq�8&�JQI8J�n�VY�P��8(~vF��_&!#@�TG���INj�b��%�v��$y��DzFpU�V޹
�4H&,��PO)RuE�h��d
5ԏT�����tz'3���ȕr�d�7�
�w�@�M)�@3Y+���h��B�-�]1��4NQH��8ʽ�])���ő������a�')�����L#|��C�����j7�:)�\�'&|y~Q;�*\Zݵ��m6%��&���x��R��@���n��Y#%%F֗4zW9s�t��<3�ULB�f�#vh���;E?dG0J&�h�?l��4�ABd��h)���ݟ�%���,������8:��L�*��7��>�OUȝ:��|@*iuAP#�޵ڐ�!=THU=�����Ѣ3lq����VS�\:Y��B���t[8K8~_A���@B�0�?~4sD$�DP��H(�
�(%Cz�r�v(Z%ES�!�D0`[�Xp���\#��Eo��xW�K��Q�+�M���'���h��x��L6����Lє&X���Q�����ԅb�2�x��Z�Q��� �}�K�4�A(~`�p��Ո���B��yV�Γ-_,sMj3�S��tzm���"���w�5���^DF˘yJ,����,�x癎���[I�:m��#�Q#�^+Cf��`�֘���v��	��GL ej�9�{���	�W5o\e�S^h�Bh�B����*���3�WO�5E"Va��05U�y:o��x�ʶ,�\J�V\�NJ���;����(�Ka�\ю
~EG��к��e�3��5[!ջ4�g��|^�x����Y�"�`A�T�ۄW�^muw��D��xЪ��Zfm(f`�Tx�*8iU*\�|�s*��S�5�FJt��"��x��%�N�EW����o=�S�HKK�˗)T�[�[cB��[���g�l�#���9�W�t�q�R�|�<h����MFM�[kFc0t��f2�µݦ�~�.G>�;��5K��rO��=LtV�ϼ�J��Oa��-��&��JE�Ϳ�`����=�U�M)vB}Q։�~En�)^�����Q�~�������]��3�J(�N��L����L"w���ا�@y�{�v�9�ٴ�.����ᔾ7~m�q�{E4��
�O�Җ���!�b��cܺG�&�ZS��hU�����Zcb�=��)�Բ�(9�X�:�U�KH&DC{	y����6��T�?t�^4x���׶j*<�M�Z~ٔ�#��
� ��ž�\���&��Q=>Z$�5�����T[�,__���}�)��<Xs�m��A\����mgڔqW}9.j�i^�&�d�f���r�:"4�RU��	葪~��@��%4
&Ì굡)A�W��e���q�y?r���ϱ]I�[ƌQŢ>Y��G[[d�\*��Fh�lU�M���O��ǒ��!�2x�N^�'Q�nU�����r��ͧEJb{R�=T��9��$��R�
��&i��K|��:�|���z�<��X�ZN�<��d�ټ�VS�:�~�9V��3��C���_�_��]4���^;)a(�v=?��ͳ��E�].��Sf�'O/b�C"��v��$�I�Imjy�W)��]eif��{ygv՝i��U��/��F��P�]4�j�7WةO'�Y��B�]��?K�,|z'���h5�X[��^�Ώ&*��"�Ma�ڑ�h9�A�`^��"7J}�# �X��%:[�*XH��c�P&@�"ds,�$�Dt7��&q��j���������[���4�9e�E)K�:g����D~%��ȇɀ��xL4��S4L�X>t+���D����̀i����q2���Vt���׈���l����]%R�z�mV�[���ĸDi��>��6�*U�+�3��Yj��|��Ъcsm��<6iNSBC����>)F߱e��%�K���-��{��Q3gv:t<v�����2��^eIAh��[~�{vrMKg4O-�����_z���Z��M妜[-_+�I���'\���*�0A���{���G���S��UY#�4����O�ބoׯ-���W�����*�]�:��-����-ٛTY<2f��?�/U�]X�l�s�i�ʣ���o8�|B�U����K�/޹�a��hx	���ۆ��gIh�GL�Pi�Ϫ�WV
�sWK���G|_�]@��V7&7�YZ?��ޚT���#�ۤT.�d��g��([���|����e!���P̆Q�~M:�Z�R`aй4����K�G˶�}	98���j	:���9�\.&��t���ţEj�R����J�h)Jg��o��W2��7���a`�b�U#:7l׾!��fs��tI	T��ە ��BI�C�M�3�d�sI-�%3L�)n:
]��v���y�4�5,�<jn��ס������#�
�TD�l�9��tR�����HJu;3�Ysy��"#.�<I;Q�+3���1a�Έ�<���@�xٜ������#T����If�d�gsZQ�#�)��?%�%�?��TtƩ,�6%,�?}(�ũȖ�m��QrSS�a�>_"�_>s��ܲn#"tw���)�n�r�&�(�]��6a���{A�WXQ�����p���N�t~J�l�Me�c�,P�2�ߝ���z���^N)�U��Q�y���Ҵ��W��tD�P?��bK.Q��]���Q�=�WV\̧�М�~NG�K�K�?��r&9��b��j�5yV��cp)�-,���fh�<���v�����h��m����V}*:,�\�JY�&yfP��㔼�z'��Үu�Qm�|~I�V}����V͎a�69y�,�������jc3}M�wk|���-�֫Bm�AQ�x����*h�?&G����8&�_�^��v
�Q�Ϟж��H4��N=X���c����*�����A�cz$���?��y�vEF�x-r�����*��>3F�j��O�MW4��V���į3�g���-�*#2{J:c��A��p�U~�jΔ����̽�g���I���t��8T�yC�mN*�����[΅�dydYo�L[�5��i}�@-����?�k�""&�$��0��Tnx������z�„��)�:8+���3qOn]��`�1N\�%���i%���r��m��b�q��g���D9��Q|c��(0x
��i��n!v�S�ʸ�;�E��[�O3�#�p�`%yS:�qgO�fs_$_D�qk�o�.��~h�R��I��5��rd(�+dh��׮�P�Q7<����@�lx�+ �_���˲Y��?�ՃnJ�ߙ��&�V�^GD��M�_�]͎�L���o&�1n��˹�W���*[I{yʉ�=%ʼn�*-�%\��GP%���K��h�%䫝�����yvG�H��:�Tݷ�iO��~;W׊4	�Z]�M��դ��順��-�m�
կ��;1-���)]���L�Tm��4&�1mQ��R�J�ދ��x�`KO��E�d�Rу���H�%��},�B��f����E,� 
T\��I/�}��[�yV���k���@��^��=X�~[��6�25��4�~OYB
|�4JK=_Ta �.r���fg9���|&�Y�'A�H�]#<��ܴ�?�ާ�r�I���F
b�1��:d^��RxIF��O
�P�O�B�s��#�B�Bq:t�TRMϳ�({G�GD�H�t�ݤ|�>>���*f�rC�a����?���|쬐Ta0��Ǝ�$���M�ܯw�B��@U{��(��#�PP�A#�bXN���@����}8��Y�_�S#裈>)���t��>�K�X�>OXH:涗�u����/�)T��vo�k�W;�1�'�0���U��+]s<��L�3���*�d�=��������l��<��{o�&��տ*-o���h�|fG��?�Fm72�v���|zi�c]o��y��4Ǜ�|�3,w�u��k5�洸�˥?��7���x&�#�d�� uXx�%���F�m����햤���)�9 ��,Y��ɵ�c��e��6	�2���a�y�#��5�Vy�		�/��ZU3_�_+#�-�҄a����4J?����x���Κt�q?��X�.��E~`31ÒǍ�6���Ӧ�w&fL��b�5�aM��r>8gc��B��~<�3v�U���(��?�W�;m��6�?���0txm��fy���S�x�\Y�S.c��@f�J��$x7�#��PxE�H����s�!�:�BC��|M�P��EzN�.q�K6�s1A̓H�\�aɕ�r{�)+n��RFq"��^z��Б��U�෻��e(�l)�!{*�ItU��$�9��#���:�E�ǚ�|�_>��dI�0#�u%���|C܈赛�*5<�ާDz�'(J7�d^(�<����7��PY�����I=�z�BH�2D�b�-�fA�čvBF5vJ=3Tu9�S-��yg��>:C�$���Jn���%�R��d�@^eO�à�os�mɞIB/}&q�߀��c9���$v+G�ȑ�+M��%#F��%F��$"�
^�\3���W���N�e9C�!	F�>2��|��<o⒏���|����hѶ^��^F�7�8��#ғ�'��y����,c	h�U�m\Q��L��(&�*,��2��@��3�.�~Y�bT�)F�6��C�mr��{��-�%���z> o��Fv�MZ��<L��t��)����I�kSd��j�5�n����r���~]�ڳ"�ծ�+Q�J�����`��S-g��O'�
y)<�`ԤO���9�)/ޗG�J*�z�<�[N܅l#��<p�F�~;?�P-�ߡ�ƜΔ
�f����X
�9�|Zj��]#_*����Ǣ�P��0���ӱ��p[�'�
��6�Z��@}�d�}�肊E�[ԀH@װAg��1
�b��}�<��p��2��r��Ob=��_o��,����j��պ-b=Tl�#��ߗI囃5,X+s/�r��h8Īt&��e0��?��3�d�$hr����\�镔@Q�AԜL�q(H@��BARP��Z�eC<v���K(D�=�^ʓ�:�gO@���3�3cd��k_�9kw�	�&^�lNwd
������4�b�c�G-&�jd(������	�pI�c��ke2$f��1|ĆUѪf��oy��/����ʑ�㑗U*�
�Cw�L��%���J!M�)���(�$~�
��U�4�M���'�@�e'A*�Bl��$M�z[��+���ũ=��������NsA̘��z>�>uO�eӯ��yWˈ�D�J��Q���0�͆XL���xJ������՟����ڥo'����u��g�5�qYƌO�Y�5���_
��9��G��0�(?J����3�9i���9����=��!D3�˕t�	fV�rB�=��(���dL�)'%hn��C���}>Ƚ�u�J����f�+�!@�tn���D�B�F?e���pP��osѪ�9�>�v�*�
���\�7~�}�G���-�xh����";1 ��^y^,g�|=��Cg2O�X����m�獱+�?�a2��r�/`�9!	9��t����,���4�M�H3��TpY�ع^�p���76�D��?�\’*Z`�$�<�UM����4��Ú34�����(�{S�E�D� 2�7�|A
D�]C/�+�����uo���2�~���#i)?u��LYM*�dXt~!(z��} v#4�\�a`���g�U������۵�o�*�GIs�L��c������P���
>�0�#M(���.UX#�g$�>m���/rQn}�ѭ,��}i�dc �r�$]^G~�QƯkiw?��>h$��>oN�A�"��<��x@7��(ً+�!�2�[Ykⲯ��A0u6����e���%��6�l�!��:�6�_��+C����[��F�l��:gB_���=�=)d|Ć�tA����[���Nj�L�%����
ؼ��~љ�9k��"���q�#�̆N΄WFȡ��S�� �,o^�EP��ߢ�c�@#��v�@�s31�eG^�̤��`��(��0�p(U�fj8/�UF��,�B�\�DP40^����:�zM�G4E���\��<m�`�
�ۙB�۽('��DL��p/W�p�;�bU�Ѡ�lF�b�|K�bݸr��{w�fzP~����DZ��K�#���FQeyT���*�� {�!�W�`�p������7ك�iYTg�u��H7���

�&%���?�,B���*��3�U`ȋ��:͹�[�C�}�{�`w��kMv�O�u2�D���Nm��#sK�����Lw�g�O�Љ���
|�������JR۰~D�����Gc�l������"~3Ƀ��'��:��@s�R��h��_G����/��c>M�m?��կ������y�L�.yF��L���b�Q���li㡍��>�'%⡛ҙ�)�7�u��oW��|l�'�M~PddG���>=F���u�/o�gE��Ʋ��z
��m��霎Ըs+��ʬ�'��S��$��Y�&j�)Cק��d����syH1eQeP�2W�Bh��abz}M-!
`����\GW�R�A�k�U�}�֊��
ԁrg'{�ʐ��_I�)�ZkЂ��Ko@W�B�:=<}[��)�IҼ�BBih�#;�ʧ�Bn���sE�AD���>䆋id�d����҅�D��H+���B7l��Q�QUH,ד
��!XJt��Q� ��v��FD��V	Qwq���,�B�0��T�Ρ���Uh=on���sے$��>�j{`W�
.�)�r���]���F��@%�TnEb4�4{�p�
�/�2/�j�J��Y�ymN�I��l��'��y�2�f���E�j0�'�M��5�nE��E���"�L��Zw?��+��U�B�F��'�!xs��Bf�熲?�u田��
z�ei��R��lI/��s�|{&��j�R\�E%�8�lj�伖�W��o�Y�x�J`�
z:�pv+��]��n��%��Q���b۴�f31��K�[��n���}vf df���J��B��՟�R_^Q�͇3��@��'��$�r闰�W��P�>�@����	>Fˆ�@܎F�+���Z��B�eMAK-^�HغS�d���d,̮
{q��Ș��T��&č�w����$=ߞJ�3�);c���S1�;��pH<��F%"Z{c�M�OCF ��$ec�I��l��ŁQU��#B2L���!�`#�ُD�Q�jG!n	�^���}�K� `�Y���ٕ۠��ws�(@N_�Mט�d�n��#�D{sr�����
�Oa
B&P)��"�K"���f�E��	��P+4$#'+"��^�G��ɷ^7gR�W����v��_,�|�M��Sw�UT�O��C�.�+s����rh
��:
(��̔���S+�_�x���B+����{\�xٲ~Gw���W��-\��r�)�iY���o��:B�z~5</���N������M����6Q��oO>���C�V^$��)�<��tEeqo��/��H�N���Y7g
�ri�?^Ñ���RL��{�."ψ�& \{ty������:p���.zQ�t@�uPIR��dǝ����K�A���*�7.���T,a��9�V,~B�(�xp@#�mu����̙���lcU�,+5'�RL���\Z1����:�j�BM���"=�^����9�]1�uvE#Su�7�)�?��B�Pn:��I,�eC�2�eLT�?h�
}��}�I�Z��F+��R�:�
 ��b\�ӫ����,[�v&�ȎH�T�I���Qz�&j�ء�#���A��FmHmQ�c4��|@����V�JwHnAu�ړ��9R���
�^K��������rTf��� +U~Tأpj��!���W$t�]N�Ѓ��O�x�I��gD��E~9<��͉�~.��qG�I��Yl�T��h��	������h���*�?�\&@�Ո��Ҟ&QO	��׎t؍_��M֯�>By�Uի���UA�>|��NY��0��c�&�[i9�.�yLo_%�ti�����u����q�&���E�I�{s�ؤ�3��(e`��V3b���U��,��"�09���Сb$^�i��3��D�!p����W鹝˳vT���C�`�%�u�a����5@5`��:*���f.dOƒ�=Z1Wm:G��{�#j�ԞdV��X��j!�@F<�):��?�@a�ķ�<w�7���*q,G|j���=��B��3�h�@*�L/"�� �(=��WB� �;�dz�N��|��7H?^��G��`�,:&��Y*d)E`hJi?: Ԭ��L#ف[�̽���M��Q��)��G�<c��ݲi���n�b9�Jn'�fa�@hjA9��
v���y��A�����T�ILd���B�̀u�0`�����X��ȹ4����1�D�^��Ε� ���1�2R���d��z�2%��?D1.��ɮ��H�bB��9(�a?CD��I�P�β[0t��y�y1
Ѽ���)��Iζus�O�՗<Q��#� KY'��h�#�Y әD�Na��<�{i�4P����/������f�b�5V_�5�yg��߹�<3�N��В9��`<e�i�N���0Q��-��b�@Y=��^� M9�MO	�.}�"�R���1��,׺S����2��fY��9*[�)���5�A\��UX�h��a�0��1;�{li�@ 
㡎�t����/t��	!������(C"�Od�Ԇ<���y���<�ǰ9^����%/����[�b8���L�+���,��d�����z�Ȃ�1I6�FJ�����ҏ2����m��4(cu2,eq��et�T���zW,7;-@�T;I(�|!y�n�<�@=}�!P���L�B�E
H\��������T���Œ�
[�RMb�L�C�����v�C��gN��"���eF!|����._r�*��D����h�(ȀR�����#.��i�BJ�� 400r$���N!�L��l�����M19�o�p�B@�=ӳ�=�����*ѵ�h���:��?Ԡ�֨�Y���5�\ZG@�3)�=�	oS������B���8V�9��-�}�^���f�H�����H3��oV��3,|q��߲�r�z�哈�({p�`J}
���`��R���k29��(��:�;�nҪ�9
��Q�y�+�U������ׇ�m����i!�֏~S������IT�j�d�"��
sԟ1�W`�z�i�@_���P����, �9%���'�o�}�4n����8��aȣ,פ�����@X�|�>E
r��
��go�N�fi�M.�_2������gW�(#{II#�y
/?������S��(��0̽��d�0ϥ�i�8ʥ�2��"�}y&,Î�����5���s��\�d��Z!s���Yt|ȍD�GO��(,�.U�_o�J�պR��<@8��gU���i4g��8���oS�>(��;�C�Itn�fg˰��In�!P�Mf�P�E<�F=��l�Eӂ��f3=�{�e�=�i��[�3]N��_��M�O_	�Ƣ�f�'n�Jڼ�)�5�61x�Y�L�6��"�3(�^!UF&�M�&�+�8*j\���)<��ӶyԊP���Ы�&��&����
=�&azPQU�bں
c�P�	�,�s��1����=���U�	2q�)E+�<�cf����0�L�M����Z��O��{L�������c�<�K����P+C���m-�����̎yid�)
��2�bNĽH�@��C�A�7jO�$�5���A�����r��t#�'2@	P��]zN�N(�g�;�`>cȐ���	���P.V-����!d�f��w�I�2hub��{�ny��׳��;<�?�cu}�Q��i���ۯ�3$�{J�s�0cL�M�w<�7f��?K��BP�+0�*�jߤ3Ⱦ�-E�GJi� �T�7���`A��GE4U'�/L����Ȃ��F�!E�	v�P��ߺ�9:c��˗BH
�%ކd�ʄ��9P��\:Me�as���t#�,�_SV-0N�h2:�O%f���1�����W-0xԧ�>Y�U��g…������M��r�'Fy�\,���)ƹ-b1?��{��{��=d�wy��j�5%٨9Z���*,J�H��T
���#݈��.�t�����ߋsy����>�9�t��	������+��D{x�#�cf��T�jf�����h��eV~�QBI�ͣ�s��{�D��i��pcc�9�1�,;�#Š1�����`,P����sI�qO�%y5�'��>��:��֎�3�!�j�O	����9��8r�"�z�|���}ӡ��Ğ槯�����b:ڹs<�#0�!����<~��U:�t����!�зh�ٹ�:�ۄ�(1_�=&1<u����%��n�	fWI��:`y`�I�d�ju�B��[��x�Ů�5�+)vd��<�E�f|ˇJט|�o䑇�Q�rN"��� �'NgƉ�fVO�83=��a�ٮ�5�L��I���u�t5O�Qƈ�B�9�_��P�?�8�4��"wnXN��x�G
QʔNoR8��H�Q�5��iy�5��ʯIE�"�J'�����JS�x���%�H�x�&*��WNaVO��U@Tr����bD�}����>!1AQ"aq2� B��#0R����3@��$Cb�c���	?�ݖ��+2O?D[�+�[
�L�!�2��8ܖ\���*�6�`
�*���Kr<�_������1�O��˿M�*�Վd6_��rT8���}�:��c-�B9���)Z�<L�`Yn�`��0��,�iz���#��W��jަKQ��~�%1o�Y�l�s��`�sI*��ljk���w`�w�R��}����1\����/�&�jߔ�k6)S����Jյl+�`��1������?Ze��{ʘ��v#��%�Vژ�|��+B�_���jo�J�4�ݝt�����:��{Kf��IT�d�x��ɐ̲K7<�~�V�jK.U���{F�b8{��\��)R��8�8\-{�,Ue���[7��	|���o<}
�l}x��Vd���e���*��j��ea��L;�ٳ�Ԋ��3=V��o2�.m�8U�v��g��0f"������kb�����.�7X�<�,SnO�2�kP3��N����Ynj^m=����V�����$"��Ҷn�F�N�҆+�<�^VV_���z,��g����j�Z����5ZU������u[t�='�%��1��w�Kd����ҵ걌�`�W8�ؘÎ���U~��:h��m1Z�c�.t�`3��~�5o[��/d�mi^��9�l5�%J�cˉ�m�
���ٸ��ģ}-\"�UZU���k-��7%li��`��_�e�i�뼳��^������T�z��?���p1:cg^�ˉ٘�X̖�2)��l����'%��\�ګ������2�ĸ[9��ijl�2��c���3d�%����Q���aw I�q�2��
�<ٙ���
��7ˌ�a��}96��-�k)[�K�\��c���7�
v�}س��-{ܩZQ7~	J�)��F���m�z�V��f��u���
�W�ry�@z*���i�J���j��զ���e��O<��3TIT�m�{��U�,p2���!]7�1m1�Vw3��Z��W��v�V5�3��S�|�ik8N��D��L�W56k�`R��J�m����bt����R�Z���ڇS�35)�Y��9A1�ծZ��je^�oؖ�eQ��ͯ���>����m�>��W;�{���y�`#d�2��C��M���x�^�<�9RX�{��[�?�p����vO�Ҙ�ILR�zFV��?��4�-�� �-�f��9�,�T;
�:|,�һ�{NW!����W���'�6�9>f�N�����(��3���sk���(��=���|C&�����i�8Q�����ޖh���njkK�?��2͈֕t�6<K8�*=GH3:���ek}A���
���Su��e�/�����DǑ��3�2��Kb�6�8��˜�[����^&�a�+�
����mjr�s*��L����yM���G�E�6��W2�Z M��YW+�+qƝN	~�-�d3�lP%�w��+a�U�-�D�Qͭ�2#�m�}0�:���#�\�}�0�&X��E[l$��?S�W1Ӟ�=+����������?�c�mt���[�ś?�*�ʿi�9�*�Q#+�m���"�Q�.��8�@3\�ʍ*�j\{��Wx;W�~���+,=�	\!�ڔxe��s��?�z�Ƶ���5ziGC(^ֶm�f#F�X�ި�G7+���d�8G�9���lS&��kV�=�;��6G8���^ĿUl��G�g�,����0Z,��:
�~9�-[7ށ�M�[u^ķ��Ӵ�.��\æ[%��I���Vok9��pn��ʵ방��(R��j��M3��\�5��O�`�@I{ڃ�9eqK]���&s7�
���㼽of��?��uu�
�1�-��n���7����K���\����S{C
�X�剳(6Y�_p��o3|9��r��>8%������/c�q���>��G���Ε-��ҭ���v�o�ث��<
eސ�J�8�yY\$�Pv������F�V�;��ӥQ�J�lX-����*��S�_}�Bؽ��x&��{�.�?���,�8�.��6kW�e����rU�x9�2)��~�J�
�N��X��[XҵG��/�
tͪ�����
ְ�9Sfa�l)+���H��Yb� �WG�r�{��2�M*i���[P�t�J�5�p#�͘-_D"�3�ը�a�5��B��2���Aka^XR���t&�Jq�P͜K��:�6����o)�A �0�%0^��(�\��
�ͰC
�~�@�Y�R��8X��e:�ς��+p8Gh�K_��J �*N̫[<�39x;2�Եr�Җ�i�
\��y�)�9��=�F�l�{�?���&IL=�)J�	l�����*�^̥����,�x��[�,�Z�~���0fS4�0{3��Z�s���~��Ai��e�)M�y�Î����ؙ~��ʒ���0�̢R���|~%�zju�����))�\��`����@t�����gOWKz�<�=5\X��
=���xQ~'CZ[���.c(�W�*�낤�h�ۡP^֡���f꫞�R?���7�oul9�/�PέCu�(Y�	lR�]=���eW�䨓��;T��2��RZ�o��F+B�LB�xe)K�Cs�0Ӛ�X{da��y�e�WR���s�*���hT��/yo~���0�d����h����,�6�W�U���J%�.��*��%�+U�SK"�xt�(V�s�`_��e}�F����.����v�
ZZ�W�"ڪı��a�M�_�x�����3�)g��v�f���w&�͹���Qj۠�Qϵ�-�|N���MCWP�z���̥r*e��~�-����v�yr���^�a����s��Q�>%�u����5��!/�s�7��
���5���y�������N�e�f�^��K�Į4�5���R�Z�a���vYlPr�h�L��z�q�&[k^�,2s���J���˺,���KZ���)Sev��E�K���5Ҫ��Υ���4ڀA�D���?�z�����!�۩<3�R�Oi��t�b�s:ED���2��j4<~	Z�{ܗ�zBY��'�a�mdezkJ�!���*:@0G�Lpe��.q�G&{������`2�x V�rbW&�/{�x�W w���ݠpG5,���yep�w�=9J�m���[��j�
9Ǚl�z���\T����E�����ߵe�����o;��vb4��KY����q���9q��ݕ�Ǔ�q��(7�i���}�|M�Q(��"��ͳ����m�\^*rV\����1ɂ��6L�i@��r	̥VWkjd��Ķ*���3�l�R����6�-|�j�J��mZ8F��.�<O1Z�9��!���TVm��s���U���4��YkS��
-*�]����r��K��ok8"(���-��{���jp��X{���z�k�`�:#�q�]��3���:nk9�,iTj!͡�Y��."f5T8��񂫀;�m͊��Qk)���Ki�R���m(���{���'K�91��3���w  �k�e��[�?df�w�k[��Ĩ:�/Z����a�W���]�^���G�g��2}շ��v�M?s�Į�9s�Z�L����R�s�����zv�i�[�EJ�<`�6O�.�c��<��o��|M��|M��l!���,6�� ���(����,0g � �,t̷6
¢i�9��S�QrBV�նt�tM�^��*Ge��bt���qd�pv���	�r[n�
��)-\��e��V�[&��8kח�鰹{���?@C1Sb[��`y��w9�G>�Lڭs_�3{W�l�^e�S�lԫ{��Ne
S��SǙF׋Վ��t%���J�%*�9l��e�{oĶȰ��O2���Z���<�+���s=���))�U�,f�&Gm�KG��B�N3*�Z�o��4J~�2t���v��`�(����T�jI�)��%gR^�ͥ2=����;�k�6e�R�d���t�e��O�eg�5�d�Q�Vl��E8{GB[��u���-2�ryBmg�!����ݼEJ��w�m��o�Sr�-��R�mx������}����/�rC��9�a����r�-��e2�g{ʠT�-��V�1b�CĪ��*{+�z�/i���v e����p�2�l�Cp�˾�jgʝ8��#z�3%�\�/j��*}-[5XmJ��[�f��t)],�x�i�[�Gv�3��wjd�)U٫�fD�|��f�Y����Ï,�q�8����"�@�8Ib�յ�A2�q,�ͯ�&���6����kdj<g��<��I��T�����F��8���s_F�K��[���LR��;�^��a~�]j���bPӠ�ݟͨps�l!.ΩWC؈Q��:ma_�9�%���J���g��Zֿ���k#żC��{zs_1�>�@���P�>(ϴ����nX�=�ҕ�����iWݗ�g��M
�Tq.�}�όv��@+�Y_.�1T�mx�d�l��JKiV����i���X�n��4��
&���*�[���-�w���mZ����0pnq-�3�n��2R��p�p�2���&-q��j�xTձ�L�z���1bm{ $��ŭJ�â��6�mJ��l�o���J�l�36�s�R�3�X���dʌ�T�ANPf�p�f�6C�d�w�+��߈e�=左
��+��~et��<�3N�7c�`���Z�W���*KdjU>>�/�~�Qy<�
���7��H��<�g5C��Tq7,��ʡ(����,�U�����Ōw�mJtV=4+�%���x��;1p���WbW:Zx/����H�dҲ'�d����)�&���r�*T���z̄��u9���G�9]�0/�m�xf�p�T��=���U��Ļf�����ƴ*rgW��y��lS �E=�G$ٲ��p���%1s
�s��|��V���Ra��z^�>?x4�C�y��[e�Dh�ۼs��J��v��,6���/��'vo[Ե�,�
m�LҘ��^��������u]B�e��"T,t�O�6�z���0�
5%���x%�t]���Rcm���-��ŒJ��hlM�j��0g��'���Yh9�9啨��R�C�=�~�*8��.	�M�-a�n��9��T'��yg�t�ڱ/{�p��!Y���%�iYzS����C�8�sj��[%�VV͌�!�=�d;K���x`�/��b��IJ{2����w׶J��l)8�:��W6�y>�:8V!��%3�ۼse�	��w��S�ӊ�����Y�����-6�f�pAɅ����7�x�Yz��Q͙�O%J�����NAl�{C6�#2�6��9�M��M&�-�µ�ZS�;c�pii{�|��؃b︩8ߟĦF��'��~�q`�M�y`W�8:{��9ld8��h�w�VU����'kx�ZR�VNZ�F�Vi�%����_2�sd�t��,�{}����!���so?ų�LG6m�<x������k��%z*3����	�L!�ؔG��'�sb�w�6�O�K�6ͭ��.��ķJ׏Ɩ�O2�pf�x�u�݊֗�ԯo2�MJ{���wy��+����9�f�+({�v��YQ�1ߴT--T�"G�bTi)�ޥ��c$3,t��W>C������m�KU�\��KګL�i�����튏�J�����G�\/閫�(2�ً{wYc�8�+��u�
L�r�e�V�́P���f
Zo��%��zƥ����	l��;;�<ǃZ�_�-��{U�c�Siu�l9�e�v�^YL�=�Ӱi��(��v�ӧ\�2��g��\=�z�b��]�
[�o.��|��yN�*�+��yxg�Ƕ��_r�G$f�[S��:��������zq
��Ic�����2�&ٝ�	�&v�e;�����g����*x�Mܭ{M�G*;�
j�ۖDm��> [WQ�lv!�T?v\ɒ̯U53a�͋�l��5�M{K�6AB
�Ūw&�A|���";�*Q�?J��9b:��	���^�Z���S���:��3(x����,X�}Wp�v��-R�5�-�ka�Ǥw[~��j+��5�.�H�8�k�ִ�)L
��(|�%�������^2�J�*�~��l��#�����.P�lx[6\����1�1�~�oe��d��3U���n�y�b�W37+�0N�\���<��v&;̷~!����YJ��n2��Gk3S���a6!V�~JЩ�^-��&Y~��&�S����kʱ��ʰ�0b[���,�oB�j]���4ʷ���&e�Q�E�a��k���-�df-DǺ��9������0#�+���{�s���\��"}L���6
0���;��(S�y�A_����c�۞Y�a(+����J�	���l��~��ڡ�	Z4N�܍Kx�Ɩ#Z\�)n�	[��^���{[�1Rj��h���jm�����ŗ�7r�t�j���x��K5h��5�W/�S(��u+�{C,K\s]7�Q5ru�Rb��qJ_�B���U�ħl����L�*�U�+DQ�a�����b&M���[��+\��/9���~�����W��_�M��ոg���P®V+���lSd��¾ekJ/�\��d�/y[T�e��4�̙��v����2��b�igPLʆ��g2�x��.�[/��Ӱ��2�W>�����U.�2J����&��J�U�vkS~`���oQ{h	�J��8�-l5{0Zp8�R��������@��+\��o8�l�kp2ٵ��J�8��M�9��6
W��/�l_���xr$g��[N�\�B8M�Y��,���p'�ڿ1�n)+�o�ڽ(�$ޢ��l�N'389����j㑈ʧ�X�F9��<�6_�����t��3�����m��\��ء���,x�R�0�*+\8�-*u�Z���z`pac��e唥3l(�1Z�a��ʤ�@p�md| 
�	^����w���zJ��5��Qw�����<L8��(nG�yoFK',�C�d�"`��Z󌲶C���
��S
�W��䥒�MB�ӮJ��ɜ�/���y�nY���
�R�6x��1Sے_(��lQ��[���o��=w����-���i?2�U�L����Q-�V_�`��!�R��X��2lΓJ�7�%�J�n��
�e�k���J�lh})���L�}�9m,�sl6JN��WfW�R��YF�P�d%�K�d7f��4�b�崩�e���m.IJQ�XW	�����]��h[j�F��'HP��&�v��(9�����[��/�_8�h��r�	�I��;F�D�w�p�
�;#�qM�l3d�X�;�wo2�Y��l�1�Hu�rp���;9�x�mk�^�>���o��6	n���y���i�Z�lJ%�q�+Q��{"<��Z��OR��1ѱ�,�M:Ī�R�3*[~H_	���iG�&e,�5��p�k��RW�0$�&֕�S��m��b0ʸW��[n1F��R�^q*R���3Nڎ3U�'�:iA8���yy��-����R[0��x�Ì�e��5B���c����0>X�1��k.
e��2��`Y��g��5wzv&��G6,��r��x+���,���~��l�M*lV]�*� �=���ES.B9�;V^�VD�LeaB�`
s�&��W����c9a��S�u�Ub��0�Cm�f�P�*bS5��kpQ�*���b�y��6�)~���m�ܮ�6&X�͞	��mW�Tm��-�˺��ci��W9V��-��*�>�2B�c-�L�V�]Us.� �X�x�'ic
b�As��3��g'#�8	G��G6N��M�ɘ�a�����1kpȝ���n��ݢZχ��C�W���h���+�����YV�/��b�ػ,+a��v5l��W>Ҽ?3
�g��������7���\~%j�9�3�ˎӤ�=����iZ�y��_�h��^%rS����TJ/^ҹ�Q��4��5M� � ��a�=5+Cu^akW�����_w�7��w_��]���py����D�
�8�+��q)��Z��2��mc�*���a����<�
�ľ[W
IF��x�K��c�������+�G�,�_t;�)����	�:�����	`r�G&��m�ein��V��e��o��`x0ss�k/lmkU��!���V�5%B�qP�ݷ�	Z҅q��W���lK+h�c�8��u���s��qm����%p=��`�RW��l�V��+_�&�Hog��i��c0��lB�����3�N�c�(p�ĕ’�G���*_<���D��f�Kڏ<l���RQ���0&�W��w��o��17�;����k[$�b����a�V�l�Qoa�ڇߤ��eZ��F+UV˔�i\Z��,�\�[�[z���Q�U8�m��8�Eu<|Jf�ܯ��],�è�x�����/$ҭ�򲘠�X^C̲�rԛЪ"J�,�]���e�ޤ2�{�S�s2�[=�`���X��կ=�pm�6U\J�,pJTGk1:o���]��̰_$=�ym��[Rʩ�&�
C���ektZ=@t��Kjqir�k�����uy��8ܖzKc�ʇSͦ�_3�]����$�Pr�y�IN��½��G|�4֝�]�_��08�L�7(�6���?����&��0�i����4�Xr��
�\J�����EL�IJ��l��j�
�afW8�^%Qȯ)�͞��S8ep<��&�E{V](�IK�ف�9^�M�[7����Z�"�F[%k���Y�� ���cf�CC�m��w1�U�!��+�p�
S*��X���v#�1U�&�i��#�Wl�N�T�bl�Q ˻#��+�^f�ӫZ��
�l�,slLp5�ؘ�Aq�zP2fU
j�S!2���t���e*_X�ޏR����>B};p��6�h��hqǂ+g���k��c�P�e�	eM�
�������+
��"U��ݎF�����	{�4�l++��1뭼p�>�}��B��a��~bV���ԉc>6eK2.�2dʧ��2
��:���Sj�-�+��c�4�r�l���j�M��/ C�R��z�W�݇�c�R��U�M�8��G�/q�ᚨW}�5*T}�o��ڕ�+�e5oc��3
��P'6��
�EX�|6�JЅ�
��{lU����*�-wi�[�P�J�߆Q�ݘ�m��T���%.�*8['#��i,���Xg<�26��9���3Z� ��#73m��e�gi�,���ѭ��q_٥�3n��N���:�y�zګy�lM��P˼����v��df�3�{Y�<E[8��[�j�=�ԭ�!���?[SN���~'�x&��޶�3��x%�PV��2�R�v9cn�dU�n(��:K;d�(~��a���9�26�X����X.�7fmt0�����w�x	Q�s��W���&
28
�1$2QʳK���,�ok3�6����Ty�9+�T���H��N1�Y�U�y\��=M�N�
�ӪW ��03¼�q�`�9c��bԶJ…Ű��䃛���B[�QqZ���⬢�Ԙ�l�NVl�W<ͭM�wckRW�S*��Â�E�W��y�*��=�Ƣ�R��2��=�q�b��%+Z���_���9�l&[��8�%�C�N4�|:��d�K/����p�<s�l�J�<��LW�/�ӟ������}\<d�,�G)�"%,�8T�I����S7��m�
l��x�V�A�$r]�ȆDw#�9�+l���C�
Pl7v<��6Ү2p��Lf���Vg%�mK+��-�6��I|�r���`�.�>ƏUf\�B����5�4���ʆv
������5*�ψ��H�k[u�\�+)���%�Z�nr��f��\�E���I�{/x.ٲv����a��n�G;N��*W�S�P�V��,�vȓW�3��%k��r��g��)��,�<�3O���x&�n�Cp�J�6yfSq8��f����e������:�VT.��,�fT���5s�s6�d�b�ݽ�eF�q�e3~�&V�����[R��I���_<���升Q7K[~:�eEwjKZ�C���G��J}�ı{�F��Qʇ,�Lׅ�R�X��?GN�����e���َ_��J���Su��Yw�m��5
iP����s���2�[~���ln���j��.�X���bX痴��oÙ[^�*��?��f���?���ڡ�%�ֆ�ya���c$w_��
�8FYNx��\A���Qj��	o��ŗ^f�"�ς[���hp��2�E0�DJ�f
ؽ�6�fe]��v=T��|@i�$�T�E��,ނ䘶��v��TN�.�t�00����{��K(W
�~'M��� �f��k����A�ag�{JY��%N!ӝ�<�RȘ3/�Sd��H�3�{l�lF9)��m:W�Ew?y�f�Nck�ߦ��K5�+�IK�˩�t�,�J��=&#��6{0���^�Ooa�/Bf�5?�l���J����s�:�r��k�oo�c-�y��ڢ��O
ۆai�p,곜�\�e�+�X%+J���8Ӧ�L���*ִp/yn��8�ނ�#�i�5i�~ج\*~�K*o��)�)
�8 6�L er�*{��K��3k[Ġ5�1�����R��b���PKY�txP�V�Ds����/��3a�n�@�&���^�ǀ�!�c����ǹ��碼��&\#��2�"��j4t�wl����b�7S)�H�g��3��v�>���w��y��{i��s�$�\�˳n�CM�RW&YR�Ʀ�0����>֝~���Lq�l.���*0ί��r����0֤Pl�i@l�Ƚ5�K�s�������.��N#��b���֘�L�y��	cJ��{~#�p�Yr���Ga��q��/U����t\�Ah�.e�i�F_;l�3R�c%N\�K)6��5z��Pؗ�w�V�,�L1W*���%���pN�T�1�;4�25YR�w��UiߕgS�}چR`9�!�x6��;q-��W�`��uқV��Ŕ� 8j���`���q�6x�F�NU݉m�0K���C����%C�%�Z�C����L,z�J���x`�6�C;WĶi���j�uPzz�K�[�ؚM�G%����Q�~��v�0��
=��ž�H��� �*ٔ�C�g��.���E5��_�ӾNq�ؔ��O�[��԰�Q8�J�6��
*��\��&6y&�v_��7�ig����J�m�����£w��X�z�	d�|�he� �܆VoR���Zf�6�R[+:�����Q�ҙ��̶RonU8�U���ewBp�{BT�l/,ӵ�n
�?2��FSX�0X��:\KT����.���x��t�I�K�ǩ�����[���L�����l��	R�?IC&[39��eC&�j��UVU6��5u*犁��k7s)֧��o�pN�S�k���Vu]x	|T�-l�ߴz���	�x�M��W�T��Ыn�\qR�ٰh桁�׷+,ܦ����!Sw�)f�3u���R��X�.qm�%��@Z��\X8��ͭ��lr��E�2�ۙG�Rs��n�ȹBUP�D�M<��36���(&*W��uZ���?�����A|C4�2Y��k!�)f��L�E(6��I��g�-�T%̦q�mT����9�����iAC��Po�J- >e��u�3k'�Į+ů�K����C���X��v'�R%L�WkMF������
��C`&��,c9�F�8;�d�q/R�cR��/�K7�*8���pJ�/2���'C�c�+�,�����+�5_=�>%�����RR���
���}���L�%:�w	V�rg��A�<�R����0��00�I
�;�����*J
Dn���-��	^�1Z��0W������x|&�k�-�5o����V=�8�i��\�/�����ݔ�9�%F�
���a��Wjŵ��l�~	�uV�:4��0��r�^�k�6�@���ҩ�,���J����R"�-i՝�n���̽�K8J�t�͜����_2��xs��q��w�.V����T�j�F\-m���8�4�J����F՗+Jyp,rR�m|�#�Cn~X!n��S9��g��-��{[#)�;���q�e�qP�mpޣ�-k����׶ܒ�jb�N���p�	�N�S2�j��mW%GbYW�ƥ*-��@)�Uc`��̭�M�)uOK�\�5@x��̣]#b�2�&]��=Λ����B̭��Jշ���\g��(�:��nX`1��W��^�溌�Mo�	|�,�V�!.ձ:nd
k)��+�����=�7Ne��)�/�S��U��P��Ȼc?G���Ja��c.�0H`�������ٖ��S��]�q�J�%��$�J�^Xu$(��09�o��2���g���3^,�t�c�������$W�\���M\/��T��`_.C~�2��]�bV�O�	z�V�V��Q��&QݏՎ��@��7#��~��ls@�����C�R��cr��ؚ���3��0言�c:�c;��.�&�ˮ������K;OG!a�A_0R�J�����2L�2�A�s*�_��T	���q���-�1���+�F�p�mWq�(_u[���d�ͫ��x�P��M؅�AbV����?�L�/���+�|�)[�lbR�C�v&�N�2s�Uv����z�V[�9�-՜*�o���ű��p�4��Â5�
�=�z�S�WR�;��xp�tY�C-�2��^	K^��ƴ1'�
h����Li�WW�.�W�f�B�G���k�c2۪�Jة�zk6|�VW�
�ؘP����y���<K��]x��kPة�j9Ī��l�BdS�pyX��(~�ep�^f�v&��$�0f	s�mZ�	���M��L3V�A����0�x#��Z����stD%:oa23���
���XSbÒK��E.��,p��g!��gu\pc���_
l�Kp��i��-[���ƚy�Ҹ�R����L�_��;
!�"�����S�{K���$�׫�>k�,إ�wĨ[M�E�W7��l��^�ŨW <�%��0iM%o\����'Īܯ?3=me/1h8�6I� �_mC�,[#�k�5N��)���P.
+�Ӯ�L����>��Ld��y(mS�4�Q0���+�p�,ap�Z��ߤ%:�C��.f�zGvlMl]w��Uj�/�S��)�G�;y���9�>\�1S`c����X�J$��oM������6Vѷ�,��	r�n2��]�8�͒9���e���,�ٶl�SH+ަY����H���Yq�����,U�%Wvj��U��L�xn�K�em�w{��u�w#�FV��Þa�v�l������+�f�S���( ����V#�{���KZ�YN�X@x%Z��k)U6�aA��}�\�5�_M$��$�3/��[� s�1�����peq�cxm�,2��\6�|�j�0�9�r�ҙow6�l�fa� pN1?N0SSO�zҺ���v�/K�[׋EZ���Z������b��Tk��m{�Zj^�
<|�Z�ZgE-��i�[�̥�r�*���6�6�C�ަ-c��:��B�s��������u���]k��0[Sm̒�L�)Jk.���+Е���y��-lIn����P��mg�]�4�گ�D.��L�Yk��1�ק'il^�,�r��3Wܹ�t�q7��?����N��x�
��Ӟ�Um�E��%�<�/j+��5����]��l�%����@�������b^��RQ����R[�g�~��E�6�l~��m�p���iX0��.V�r%eS��1P̶B���*�|$�t�[o5ZSM�A��+R�1o�V�l��bg����a����lZm|K��ݮ�v�uf�L�o:P1e���E&��ͯJͫ��5=�5��
�eeF��+��
m\2�-���J�0Y&�'w`���
�;��׀�6�Y~�r�wakZ�]�Z���ct�զ*�/����e�Q3��k�L���.iYaK#,��
o���]����e����J~r��

��5r;�aW��]�V�~ҵ��n��[vY�Bi[R��%>�)ofL�~*OT������ҡ׫a��C�h��e�~ڱ��Z��h�+�p3|�l |�~"QA�j�ӡ�նַ�La���V�L
�R����%���|�+�������Y̲f�k��4�c~k�W-sZ�4�K�ۧINs̾l������yb����}�Z%\�
g���' �[[���J������U��<e0qk=���U�\����܄:wʬ�Wa�v�N'H��Lue����띉l3�Gߌ�{9m[@�0Wa`�M��Y�g�6����c�p��Ĩ��󂲪���,f�����A*��Lb!K	i~��_�1Q�mg8-���[
?�8��֩
�b�\�K��rloĺ3fF��2�,}�p>#�m�WR�V��~\�6WEؖqi��m.�0�b�K8]�:��y�.1Ն`��JX/lQ+k`"7!r�c�A�O���i�[:t�,ͯ{u�~a���OJ�A�-g��~%�媩�0ΰb��yF)z�4�%�d�������yz7���U�7�
���n��]s���gR˜��$��kG�m�=w�V�݉K�����)e9%�Y�������++�>c���	�`�1��湭-*R��N�1�YlW#V��{����lE�-qL9<˧^�-.���#��Yo~@����3z*X9H���+ueK�{�[R��(q(SJ�[/�����x6�]�
,��z׹�f0W�eh3\�2�EMn��SL��hb�yy?.R��/=iOTsP,P�-P��U*�V�:������&A�	�{��01:��+�7U��9�Õ{�l��l��*�b�%��1�C�b_)��-�C�#�P�=��v	~�a-lK}�J�ֳ��5J��Ӏ��r��03���rUن��
���W��f`NH��!���*�3V�⸡*���8U�8l�P�[6�v3*-�f��C{�Vdp@��b9lFr�g��Q���зfa�����s)[kX[��E�Y�n!���(\c�u^��m��X髰�2��%�T�M��L/p��6t�(P��:��W;�&m{�J�|U+�fX/cj��b��-)P����`YV�-)jm�bY�I���p�iKlVuņX�3�������Cg���z����+f�z�WC!3Q�f��0P���S��]333���+7[խ�=�q�1P��b5�Q������g(�{�`y���궣��x�)k��rM������x��b��0�[��[�<M|ޘ�iw�+��oK�^�g����G�4���0���c��H8r�=ۓK4�g��x��5 -�/�T��v����Q�Ù��*Vv�Q����Tʗ�+��Թ|d�Gu�RP����l$sfl1�~�U�	l6�G/i|���^��,��즕�e�W�R�3��W��ݕ�Yl�ϴ"���	�͏�K"�U�9�8�;$��ǹ{@������C�*U�V��
�W-�q�C�R��=Ɍ�1wv[�|g�U�M�����Gp|�z����l�9��a�K��}�pM�l�bdf���^g/�ZZ����?��H|2���,����@�e�a�s�Խr#Z���(׫gb��o��kk[(���[��9m�p��g�LgHgye
�-u�K�e�R���Ss�����^NXMp
`e�M;�vz��MZ��WU~�_�E�Em�|N�Rծj���-N��ꦕq���_x�\�	ca��g��X9�#���n؋��9e���;K�
��y;�{*�y�5ؕ�� �6v1;�ɶ��j��Kܶ�ֶ\s��vs̲ٖ�Mk��s36ˏ�{��g������\X����,Lfl~�����#��.�y3���/z��	�[�H�r�n���x�z�0ʳ{9�&�,#7`�a�Ҹ��c�L�n�`��+�l���)�l��b����2��On���\�ǔ�K-���T-�:�
w�0K*m��Cd���P�(עe��`�rc,ګ��]1�a͎���_�7�r�_�@���v�D�SM�5+`A�g�+N����\�k]r8��-l��-��\'M*�����ͬ��<�Je�z�F��y勻)kW߫N̲��f�zu"�T�T4(T��j攭�Z��nv��w���p6\C�N>f#<�;����Lm-�9Y���8�~�/�����O?C����öf�O�OO3l���q]Ď��8+<M�G��b8
�†�o��M�ʁd�J�;���8�0[w��q�<.��f*�˙m�@l����� uxψ.lG��W�1���%�1��%w��c)���J	��E�ʁKe�:�s6T���Y�^�+W%>��pT�$�
�g̮W���Q�J�aR�HlC9�ڤ�J�ٕ����w�}�%�=��wez����~���}2�ٝ����ӱ��?��[��y�By��=�����"fl���m��r���0,�'�ݙJ��nq���kE%W/3._����ݖ���g���(��T7��񕀔�x⥲��~ -O�K��&
㼶�6s���Ko��M���7�ٖ� (K9^`2�#�v��“=We~2���e��	7��I����er���W8#g+�X���dy���o�ȇ�1��$p�>�q������1„�q6��N�9��<�O?S�c�8���f�3_�����Q��&��EX�_���������#�8����^
u��.�)�\c�]���5&�3���a�l,Bg��p�����h�G"Dz�,2�vx�Yl�8[(p�c�,b�����K�'�%�����I�nP��2��>����I�S8I���R<�=0�C�IJ>=�OM&���k4�W��4�����3�����Y��p��3��}�OO���Y��鞖���)]��=-��y��E�=�w�Y���OOK��OKI���gCG��OI@�%�١B���ӯ����̭�[=�W�磹�y����>6�ѽ~z�]^;^SY��j�[T���c��<��k/ͧ��&���}�?�u�Mml��OU���OWc�z���ի�I�m��z���\GY�����%f��5n~i�WW����I���V��g�����w�����z{�f�oŧ��ѿ�zk���OI��k=&��[���ߞ��uD�I�y���M+�f����v鞞��<M��q�Rz]T|Vz=m��zmg�I�A{�z]l)=5�����j�=�&�̻f��ƠeԽf�u�C�&��x	�k]0��)����)g��p�[��4���Lӽ_�Ӹ��)a\/L�U�Җ(�jց_eS{�������iV�/��\�ץk{tօ�ў���[Eq��i�›�.A�=N�^KOW���G�>���ֆz)-�Zx�濧���(e�Fk�ֹ�J���AK]�=8�c3�8��ҥY�to�j�Z����sIJ}3-o�TQ1�?�|�;�UH�6\�L3��%�����s(L��U�_,*�Rt�]�$�x�^��*���,�re�-�9���L�0Uq�G�x��y��a��6`�J��&P;ʸ8�o1爁�^'J�6YJ6Uq+K=��c���\��K؎Uʬگ�m�������L�����t�˞aP%j�y%3d�G�Cis�c�j`�rϵS��e4-�՛CN�Ø�Ҕ��=9��$���^i x�Ӹ�?R�����sť0��IJ~]H�^Q�Ke%K.��O��z}7���R���4m��F�~��Z�Z��%�ܦ �s����F�y��a��=8���3��^�3�Y��L��N���QN��5tD�'�zO�I��X�<�����wL{[<M9����������˼t����4��f��“�iRz�\��35�|��T�%��-�J��S�^Q���IMC��M][��β��F�n�f�LT�^Y{�>��+�p���>*!5�'����@�a�ea��I@�%e��/m�g'�A��mY�`.9I�yK�X����[/���>����v�IZ���S�S���8v��2K�1��a	s����9؎Tܙ�w�����`_��ad�x������]�VZ�1�r$�>a�A�e��V*�,�{����ݛW��“�,m�P����K���#N�|F�j�� },��d��^�pyw_���8U������^�|�֙���@�i���g�t3/b݄���s��r-,����T_+̨Î�R��aP~wb8��>e`�1C���Ys��&G9[Z^ͱ�Yw㫘�èICw|�(8�%I�m����4��*�>al=��뚙ǖ_#�&��I��O,Ī'��	ٕ�o��p9"�l�;���S�s�8�)�`�y8#�<�{N�z6�f�
�2y��3C�IDq�
f�v�*�@��Q�ge�6������S�~Y��N�82��>e	�;��$��0��&�E�ଧ=���
Ʋ����rRjt���3U󚀳yQ|Į"/uc���?J�S'��%9��M�=PK��ҽM~@ajx�f<�T�U��%������x�jyY]�"�W�bx�8��\�/�6!�c�L��Yd�0�f�0��a0M�r���[��|��2�	n�|����b%�8�<�T�0�̢VQ�G!<,�O�RV�3�L,�_���ߟ'1��n�����a��ª�LlF�Lk(��f���%r�%}�,���*ֲ�<�S�{�؎:|�l��(7�����J�(�4�{M6��y��c#��ӭ+�l�/F���j�cl~�r��t�zM�e��0�IZ�`����v��O<�I��d%�7Į�UNT؂�
�;;�%�9Bh�M��| ��m
��J
���9x�]�hvW�S(q�%t�ls�
���\���)*�;����ij3�ĭ1䟍���-54E��/^=�q,!��R�C��U�2�B�%�,�ş�,�,m���K���gE~���b�wF_+ظ��/��Y~���5('Y5t�8^�j��%��[
�Q�v2N�I�q�p(/c<8���r15i�g�,��m�pKaYo�]٨�je6�n&��ˈw%�yijj�rQ��&���URQ�sc�D�y�q-/�ᚘϗ�����g̲�x\3�:�Bu`�K`�b"�����Y�E���8��`>X�<΄9��>N��ɜf;�]�Y;��)��k�*`��A�L��7��i�9��|A�}&�$����T���{�%��5�.u��R�r��7����S�{)�c�+��,�����y܂��콫O���9��7ڥ�MK�����Sñ���G�5zԽz	�\����j��z�6q.����pyg����Ni5omD��8/�^›<�VԷ
��-��ef����[ҽ��j�q�[P�m,��ؗ<%�־m:q��N�3ֳ:�{�%R�j�MK%�m�Y�{�s��o9\Kٱ͖Z�|ٕ��e_���	�ZV 6���v�W�{h�����T3�s:�<��^�W
_+3g������^%�6����l-5.��m5����j\9�5Q�$�l�Q.9�Z�eH�|5���<U&���BjX�{U���Rj۫��f���5�5��jY^�7#f[���Y���ܗ�+5@��]�ڏWu��;n̡,��fZ���w���L��f;Y`XX�U��{���A�\�a�s��ab��W/��:�3�Jƥ8�a�,z��t�5�.��`UM�xf�o|�/iR���S�2�bW���BW���TsۆYn��O���kt�y(<�)�.Rh������=�7��o�(�j%�jR���Aʯ1���#�Kr.	l���Zݻ����FW��q-J���s�]�P_�1v<�阱�3�`�I��LS�����I|2���=_<N�c�Z�q
���l,fRv��ҫ����a���%sw���~�Y�<�&	~�x8'�!�c��fy�Qf>��˨v&��Y�G�h��r�C$
���bW%Na��{��|W���$M�,���%�_T�_9��zW�Uw�-��7��T��)�~I�&[>&��h�[�H�p��Clq��jg@��v�9�bR�U�Ws�)Q2�7e7�ۆZ�Ħv0G6^X��Q@U�U��,��������|��|Kb�.ޯlq>D�j�P`�;G&�3�7�.�VW��he�������1�2�؛�g#�1KK)Í�3�=�18�=��~2���?+1,	��
�$0'm�C�3��w!�J[5�O/�i��ؗ�������w��F�,��әT��c���;��l9C��R8��
G*�����!�B`+��"��Tn���VP`O��%�Hg��^�U��0�yv���NYb׺>�>��L�b�����\�2�C�,$T>f�"��˻*+紬�x�T��.�Y2��0ve?i�dٳ��'W'6e�eؔ-�,A&��h��%	���q7��s��<K�Q1�2�CAe���e��+6O.��)S��C�;B�>��m7��n[�V�ș���0��o¼�����0�p���n�,�Pv�@�%r��\{�̵z�(֫�9e�P�T�7�,�1[�g�f�M�rG	���XrJ�36�2f���U�Q�J
��A�v
���$��� YVV&I\a��.J��2�l�`N��Wڈ�Q�,�R�b��h�\��{��l��3fV9R7�ɀ+7m�#�`f�<-gn��X�X�er��U�����WĽpJ��y����x��N����.%��2�B�MLއhNItjj�2�P��'�ĶV��5�v�E8ؖ���k];<2����ڋث�b��ߐM�_��@��bn�V<1���&jˍ!�1�����8%����+��ڰ�_t0�
����{4��Q뵁N�z(�r�(�uK3`&�"��|�/�f�yl���Xw��*C �Hu�gON�q�J�f���G>VR��#Ц�=�v�+�6�޸1��"��,B]���x��ݦpm�"9����p��Gaı��͕%r���1*ᛳ(C�̶�p܆^C0�h���=��f:Y����Ķ*���T��c���a��Vh�ö8�m�J�8�%3 ��pge�a��}_l�6�%�HuB)Z},�3
��r��\��¹RQ��)ҮC���G	*�p�_e~�Ș��4�:�.W���5�J�a����\��;�i�1�g���eV��x-�]����2�&fZy!r�N�ٛ��P��8��q���l�MĎXn�C��Il(CIǘ�y|[�`��v�:u)�D�߫5�J%�
�lǣJ��w|��3��s�e�G�r���%p�0���T6���Wչ�I�冈�ue:�-�c�@|Ƕ��>��9�Nn�[���S�>��x��9C�>~��㉎!�����W��>�Rm����e�f�^2J�)��sE�쯲��0+�����|T�@�<C�bs�1)�C��+8L��
�M�����T��gwM�Gl�b��$�0�~���瑎7�S���%����&�����`f�O3|�p93��Զ8��
�l��WU����v��g!-����`&�ea�pq��İZ�w��������DYn�:�LY��cL:.r�eq|{�n2�W�7���)�T���'�p�W*rͻ��M�/b[*���%9�Ê�V�U86̣��8%�@��Df�R�m�[0�k{v�	�9g'x��n��gj��4���pq�s�/���g�qY�8H�9����c'���������+��<,c��g2�l���M�k�3y�l��/�~���3l ��v6�s3�#��#�����bx�pLj	��y�:�g���m3��wO�gbl�&�Ln��{s&f7���yAG�ä�.��b������o6��C�j�SM�R~��ݼE��e�i5r�|n�c���A���fW�c ��qt�5.ҮZ�ɘ�`���V9>�
�X`k���mS<Nں��5���jQ�`����r��'IO�K��.:��`���k�_�-�zڭ����ôB�[�6�	?�"��U�'��X�^��͂��	��h���	�&�{q�}36���N��\͒8Af�Ke�Id	�c��1���ů,�y�Xl�%�g=���2�؜6O�G�I���N��1����~��̂M��,r�;�9���N�yc�b&�9�>�����/c��l���ܫS�=��=׾�H�Ɛ6y�?2յ�v���c����S7\W�J�\q��;�ʒ�F�nJ7W;��8�6_k��+�
�i5�2/M�U��[��H*W=-��3���jV��Z��N���${�J`|3.o��*�0��y;������|�r`	���&E�G+n	��ӕ���?��ݿש����TҪ�jf���2��l�/b��5�/O���a\b��'��ͳ���1q�3{�	���jP�(0泽�~�0�+�N̮Y@q�����^K�����T9��6n�M��9!�We{	+��	�8P�n�,�\��h�0�c�e��_�JFw1Y�f��<��-4KcD���9��>���6���T�LjX�4��mg��e�zl3=B/�TPpͺ��c�\�kG��x�82��r�y�c��,���c�s�6Ke'��)*���mox���9��/\W��
�V���J'�y�MN��m.�jՕ���B�_mO�ʺ����][�&�4������;Tx�4Z�8aU�Fl�W9�+(օrx�!R�G`:f�j�u>%CS��r�%������Vݦ*�LX+=8P}��(���v';w�i{�5�oz
/��8��tR�+�q�Z�ejq^��:+s(<t���/�Ew9�PA]�g�gUN*<�[*x�(t�8Ie3j>	r���� ��~X�>x%:4�k<�-�J�3���8����se-K�:�ݪ�������17�Vږ�㈇U���5Z���ܯ����7���\�U��n��f�C�`3�MA��kٗ)J��G4ʏ� � ����s�ez�Z�p��W��kc19'	�89f�`��}<�%�)�NYM͠��ќKa�ڞb�e�����A$��Z��+���yT-���%�	]�C�	S���ZV�^	l�Y�}�N1� ���R�U9��3A5uu�j����^�Yյm���MV�/Z�l�	qҩ�����
T�<��'�iOQ}N����c��JWKG��ܶ��N]�eV���M�z��m�j_!L�2�
p�q)k�?H~�.�����g��K�����h���Fݧ�൞k��<�x����+�KպŊ�_�գr�8�ĭ]k׮�Զ(g�O�˨�L2��-+�T����O~��ٽ�2�t4������bi֝>�[�;�z�wwL
�6��(i����Z�p۪��¼3.��gW��
��ˍ���j�-Tg�7�S�*�/�Sn��p���D�b�*6��<�F��*�Y�r�U�*�l?�&��L?�h^���P*/R����ĮuW(�z}f��r�G٩mN��SO=����=���ū�r�f����[!VS��0 �l��vf�/�Hcc���mk����S	�Rs�@��cJ�uj�Ml�����Υ����k��sgl�X�.
�d�mN�G	Ò��ή��g4Ha7Uܖ�߼8��"t�y`�bn��!���g9&��>�T�x%��+7�f^zf�k���Gd&H*��TT��5mn��~��]"�	k��)��	{�X7�-C����P�hL��!�&�ec��V����K\���>�=z���*iZݱ.[J�[�z�g�x�B�)Ls�z��-B�͵[�WkLK��u�mKy��%�CGQ1l]�qi�].��~א�hߢ�Z׎ܰ}]=�tж��"ݶ-W���NP�
U��v��i�|�e4��{��S�{�v��4}Cm5��j�?MO����;���g��i�j���dٖJ^�W������IJ��.!�͞%=�z�L��j�y�УK.���e�9Z���F���J�;,{����^-���`�Kp��)�C������-{օ�^C~f���ק�9q�����-���a�
���Y��/B��j?,�5il&����|M�t�^�D-R�G��}B
+���8l9�
ХvNrq/ӭ{�s�cw�ͫ��דp��A��_��AM�T\A��^m(dm�SM�U{��qV��`��E!ժ�}D���DUw��ݱ��̿U.�+�sDy<�X���`4�{�|K��P=�pݭ�&�OO����s<��%:mS)�^��0`w�2�KE�P+�&J�ͰL�&e�,�:��y�5/uc�ݴ朹ʬ3���/�ν��ڵ��9�,�UxX��/Ԯ8��b-2Y7�>�TM:��e1��Ê�)=��bx �����Hch{l�f�}1)�g����'6ݞc����Z�sFܦ�j�<��[�ߖQ��7�������kˉ�F��JcSL;Yp��K<;��`W��T,�f�oa����Z�g�.�����̨>%S1�y����\4Z׌��;��Ʊ�,5
��5�4���9���ҰY^1�#��l�i֚w�ZT�5���P�6��6�z�e��/����^ߴ��4oէ��>M�5M-Kic__��-z��^j<�^���\�^���f�!���.w?r��汵�3����w�;v�(��U,�;o�Х._���v��2�ҡ�O�B��kV��������[	\�o�kZ�/m=ݷq�˜�����[WJ�Y����5R�t�_)RQ����VyV�4K�<��~��}Gk;��l�{~cJҞ8`��)�=u�i�C9�}}g�mʼnF���]p[��^����'�����wL�S�=�ehպ`Ĺr�k^�#,�|����+��b�\�.�
8���7hL����M�o��0���Ϗ��b�	�ό����n_��Zٵ��ڥ��e��t�����]K&�v&�����:w�f��=E/g�v��3S���h�N���-mS_SNĸk�S������V�z
Я}��F���z�/��
t_�j�k=þ��I���2Ge�v�2�Ą۩�#��3ZGg䛡?[a���wL6���q�v�f�N¼���N��jsm������k���ͺ6�������qĽ(�h��p����X�$�c1M�j��3���[����mK����@�b��  �E!�8�e�;&0�	���|�ˈdetU���L���]j��r��+lhպ�g�ѥ���ؘK (�=����>�/5�m)�ʶ�!�#�Q�\"J��p�-s�2���_�iL�`�,ڛ�.-#�zm�^�9�,&V��4�ڎ��"����a��4-�R����tk_�||OMC�h�j��׏���^�zW�}t1��Lա�Z�U�����5khޡR���ۆb�z�J���j�j��d����j��h�w1��T(�ʪ%��%�Z��j�Y��-�?�:r�b~���iF��^��\��ѥ*�����E�M���JR��w��Ҵ�ݵt�Z�j���Zj��js��.��+Ӥq~۷�{T�(�y�gI�Z���6J�7��A�]�J��ijQ��ޗ趝L�M��z_�.P�o��zJ_>�ة^��M|�J�M���/F����N��P�4@-�%�<Jk�������O��е����|Ů���O��ms�����k���f�^�~�ǁe�zj�����`�z����&��S�̭�/\]������Z��v�q���(V�-���O�j��1k_Ż�N�O�t遷G.>g�k����t9�n�>��U������o�D����j���w���������Է�cKn�C�aR���C���Ν^���Y��s����%+M]㤨��M�V�X����t{�W��;OY_T��0RX�x�����7�Ɲlt��� ��!���-�ǻ4uiF�-j�*����_3{2��E¥x{�+�N�֥�q�۫�%�P�ݶ��>�Jܵ:�S�թ�z
>�:5k�?�-��ƭ[��Ka��ĭ���?/��s�SA��	mm
<�Ǝmq�z����D���:�x��=}��|'���G}G�tiы6�+�z��^�[@�[S��%QԮh#�W�!A�J���F����G��]C6��M]*�Ⴉ6�=0�T	E
�2Oe�/Z��\������4��oϝɧZ��mV��t_��
b��$k��N���&*d�kߤw��mzz�iW�F�;J��+k]���탶ҴO�k�hZ�1�-v�}����V�}F�F�8H䶽/j��]���]oKk�����_��+�2ح���pۧ9�3ԺWu3Z�峛z��R¸�_�M!uxm�Jۦ���A-*TO��Y�[�w�5\_ON��3N��:u?Q��Ÿ��rg������W*T�գ}g��w��Y�g[ԙ��
t���jF�
���(ij��]j=-��j��ˬгax��[icύ�DE���n0�Lcb>�8�7'�^�2���/�3{b��n����i=���&e+k�J��k[=�6�m>�]8�ŗ���j�Յ��Z�+�Q��_��Jڔ���Xk]�v�TMCC�?iZ�6u:A���^�߰1�:�c�����N8q��h���3)b�څ7���z0���R��W�ti�t��,SI��Y颵��5�kc)�OHR�3Kj�T�zZk��R�9�{�OO�}�}j�S�|�}|��l��?9��-�k[�n��-�B�ջ���捍J��)���'2�~�F�y��|�w��t]ź�%JR�k'�إ�oʒ��!�|N���̱LWv���
߅&o���)�r��6̰�ԭ��f[����B�lڡ����Z�����/w������F�j��V��M/`Y�omJ�WCGU)��l�U�"P�g��XT����P�J�g�)n��-^��j��ٽV��2JSJ�Q�opx;3A�U�vO9��j7��5o�|Ê�f���پ�l�S�_�6����zo�4uK��+���2Ш��b�q^ĵ��*������
E:�i��Ħ�}F�����9�Ӷ�6+bZ�v��cV��1G�]ԟ�R�+��=6��.�+��~�T�zul����=,a������s÷�%�k�MK[5�5:����o�W��Y��C���缥]Mb���J��f�l�;M:��E��q�K�o�)�]'Oo46�5,�q�{3I��\n��4�Y{|M�Z���^zz��ڿt-���qF�wN��y��4�gF��ӿ}��[_�ɑ��Y[_T1O�6��jV�z�n�YEkB�焖������J�<­u�l�+����
^�D�?�1���3�nw�Tj�ͧIKh��2�^�K�~Kb/����i�_�8��l;��-[��.Tmo�8Z�w�Uꯃ̭�]>�Wnٚ!a>߾V�J��*�+��_�_�s7�[[o���J��,l~35���*[ត���i�x���{M*��nf�p�>Xu_<��m{/Ľ)���HuZ����e)�%zjש�w��Mn���iM�%=���~%�[޸J�|�堛�~c��/0W͌d_��,US�:����nb��!�86���\�0�d_�{R�U�m���k��R�?�K[Ӛ-[�W��ak�������z���S�?���/��lP��f��1C�8lƉZ�z���b���k_�o&~8�4��:��f�CZ��
��:��	���_�ٙ�)k]M��+��}O��\X��4;~e1uT1Z׷�51�J����(m�{OI{�x���ZW�_�}-[��5s�M�u�WKJi��j����lԮ9C�Jh�����[��\-]:�nv�j�4A�Z�Ňň�Y��x��)�e���yn��+V�cʼn���_Q1kj��K��[<�̶�q���̽�+�[Ws�\�g+�au3Tk�m�b]-�L-��'h��e�C8��Y��,�|N�eԱ�1�e�sT �Xz��#��������lby�K��us�5�ۯI��h4��(ۿĥ������&��=mn�]>+Z����0���C��ok�(�@�߫�ĥ]%+���|	㿙{Ц�Mї�=E�]*��pbhښu�>��Y���s�׆��#k�م[��NV_���6uppx��ڵ�Ex��[M��h���i��]�:.��+)�]77!Q\�`�R���B�v��xvcu��w�q�jv��>��'���C�Vf���A��;J�;9Ȍ�~�x��[W�"p��QR�\�Jo��u���Vն�6�(�4j���8�ui�W�VՅ�עō�s����zT[/�Jޝ+����éTC���W{��/8��؇U
��������:p���
�v��Uԭr[�e�Zj4ի�U_��uJ�_��u�L&�
MkTl~�Εl鍎k���]oe��Т�C��in�:i_n�S�t���� �P��j���b��:l�7��^�|�/c�5���4���T�n+�m��H���:b���)�g-�^��t�q`�O�(dCrQt�ާ?��ҥ�U����zq�>�6��s�V�v��\�//jk���S6)Xt�T��_%*�r��I��f^�]�c��S�[�+o�u����O������zڥ�j�po��msN�V�!N��v��N��y?��V��_U��&����2ֹMQ��kWة�1�14�z53Qy}m-[����u;��4�_V���c)������h�t��=��et�mR�+�i�߫�e�>�����o�b��3K�j릖�ݳQ��9;��J~�?���}J����|���%
�`&�ZZ�;���?x1u������*:�Է�o�5-M-*╫���:6�s�j��,���xf�}m�Z�w��xm����[%���Fޯ|_[�Jkz�-��+v�qۧ�OE���Ϫ�0P�K[�)�}N��k�<>[>Y�_�[�m��i����}u�oN[�Gέ�'���kh�5�Ф����5�ƅ4�ש���>�F�ifͱn�*�x,�'�Z���-|C#d�je|��d*��X�^-P���&媨J�����9B]�J��5�d�/f��)e6�f�ԩb�������9�H�~��k����k�]��
�1�W��v�R�r�|MF�	]�+؈b�S�e�h�y{Xv��s�{�;fچ�u/��ү|q=K}*�h��r���	�]=����P�k���}�
���y^�g2,����q+MVۺeq�.��!�J��~x�3},5G�&:/���kΝ�eKw����FP��Y�SSJ�.k�7�Xo��61mkY���ı�6�6w�/��L�8�3��Q�y�)��|uJ���aj	���5*��ve�p@��,����;����O%ך왖�Jb������x!����xuZ�s\\-��P�@ڧ�e�K��ѩK46l�)o=�k}%����%"Z�^:��ԯ��gij�,����Umo=�[�6��=
1o��N+U�]v�?�
GI.�Z�Ҧ([�̨z��K�]����Q����9�_7�*�V����)��Ŀ^�R�Ȯ�B��J�/m���w��k{d��ĵ��毵ϙl�ϵ��<J�m��v��y,�|�*e*�53,��skw&��T7\UJ��T88����K�b9��q6�3i��?�Ӫ�zw{��B���W��o����}�T�)�h��pMZ�X:>_�z�^���q�,^Ա�.*c�O��M!�]��\|ʃ�I���P/Md���;F�/�T�n��7��ūn��l�T+���J��l�J��J\�m����zYMnj'��)�k�k_KW��P�����m�V��y���M\Z�/jۖ��)@��Zk<m�ǝ��i�]Q���Y����%q�iѣgJ�+����&��]:�����hi_W��o�g������԰W[`�+��t�F����hѶ��(J���q�t֬�/������c��=&�����Xu�m�[Z�<����CZ�竵G�=g����o*��5�+��뵳Kkcŭ�=o�.�X��~��i�^�w�t�R���p�O����ތ�֥|�����GK���ݵ��~�My��u��
}6��Z)ͯn]�����Di�M
t���in���Y����^�`]ӣZ|+�+{r�P����K_����,SF��mE�Ň�0�.�e�{S=87�M��O�W�����G�,�7��J���}=?f
���iR����g���}Zzm6�i��s����)�gR�۱+}Zo_
]��e�K��t�R����iET��=:w�^�f�5=��J�V����A�D2
wݕ�}J[SP^��5q�0�i\��jT�̉��JU���	��-�+7���u�,�Q�[��Lj�R�F�;CW��u>�K٭�&���~���s)r�=|��[��3���|��z��]51`��s�Z.�v�y f�ʁ��‚
/�J_��	e��ZV��>6����кY�l��(W[L)�c
|�<R���͸����+��P�|�e�ۼ�K��m|�@��'J���_�N�<F֭꨽�QNG���7��|J]�F݊���b׽��?S��jT{��V���Gh�K]�WM���S�&����)����@z�?�.����E3����׹�^�i��;v��_HꔿY͞1��C�{�L���?$3KׯJɎ��_Kq�}���9˔����j斫[����M+_�[T����o�RԾ�J���1sN���D���W�-o��-��Uw뗯ݹ�ԗm�Bt��޶r�?�\�_>%u]{��^���1���S��wk�1
4�)QW��lc���*�_D�H�y���Y[S�2��Ե=����ĵ�U�.��_�Z�|ۆzcZ����,SӚM+F����%[���owJT��z�u�on{�:��k���+-[��ke8�^�����>e��Z/+-]/G���Ž�n����ruۊ��D��tbˎ���e���
7��f�m�-��e�Jؾ�e�1]=`�4�%��^�^����[s`��[S�[��n���usZ�a��s:Z�-^�l�Y�z*��V��|��R�T��{�Xuu��MKT1���־x����Pp�r��kW���g���ϯ�t��Ч49[K�������s:�_�%�k�y����]�m�<۝�{�mN�����kj�5�x*x��ʈi�-� |wg�����4���h�	���i�:Zڹ����=e�AK6��(x��j��E�tk~���MK��Ү��RV�3j���5�V�:;���X�`�ޥ4�iWF?KYZ9U���U�:p��Զ�W�����xϗ��-.�j�r�)���{�ڦ֯g�[d��p��
/\Tv��Ίv���.|��[k޺��n~YF�ԥJ\�1�&��ܱ�=��U������ۿ��ϵ�S�U?S��Ŵtt���k���z�����oL�s�`uk����߂Y4�SN�s�����lP�^nr�-���Ǚm��-�|�Ľ:0W�����X�\o���ő|���TŪ���s����r�9x��l��)qUj�H�Q�z�6���/�If�7�d�4)m}�o�Yn�܇�J�ݢ�=��/��5��M���_�j�ƐQ�������>��s~������j��?��uV�)��=^��ܽuZ�m�o��IiCH5M_u�>�e��J��7�t���v�ǎ���Y���/�9��5u�m{Z�j�Z�iؽҖA[Y���-[5�K��,Q�44S&YWR���[F�-�V�Bi٥
��m-F�9�iZ���>f�)���۰���.SO{�վ�U��|��ҭ��q���4t��ux�+�K��kk?��e�+�U�<�$�R��<�����Uۧ�3��i�tTѥ�ָ�	r��Bh{񳽵-�*M��R��Z�6��[�X�������إ4jZ��vV��Z�4��1�J�u��'8���KTs������rۜK����:�}m�Z���툦���ܷr6�����P6ln9'��>��m�$Ӳ�͵�oo~�R���L�f�
�M��ҹ��l�3�f�y���.��`�+��=E������4�5t��~N�V��sKٚk��^���ܲ�N�K���Nki���3.�:x�g ����V�[?��w̰��1h���H��B�-ڹ�+�{�i��Y@����q�:�v���[�v���ѵV�p"[����g�����5�s�툥�Ҷ��̷]�;M,i�[g���B�kB��Q�8�om��m.���=;aw�i��ҝ�V�b�ON�j=!��ī���Qӭ+����mR�KWF��g�K�F���k�c
-�A���7�-��ڕ����S�3�SJ�	O�~-d��v�������g�mi�����oJ����w�q��fQ=?�>�Vz;�i:��}���Si{��W{X�w�">z*}�K^�T�RobZ�h{�[5�YJ��sn�ߴ��]�;�tWB�+i_��V�ԇ�q==����Nn�XzZ�/Q~.��rۇ�zMM�{��v�-{�Z�ⵟ�ǫ���s�=˚�v�Rh�j��M]kR��J���Ю��թ}S���_�5��qS�&Q���y`�ѹ���6���[�|)��泮��J���c��v�ڍ5m���-��v�ѧ<w�c�R��^�~&�t ֶZ�����]Z��s�վ���)�@S���ե5jkZ������[��J��c�ǖR���M�L`_�v�/���ױ(�{�}\u�]��_�_n��m?�M�=��IJ��|�s���iS[����CF�ki�wx�K���moQ�>{�ն���S�ȥ�=&9N�]�n~嫛���	��=_��4����S{c�oZ�ik��\���b��J��"9��ܿ^vڹ�~�&�PԨ���q�K!����Zup������;Xݦ�:��+���o�1Ye�Q4�MJ�h��NJ�E+���G�/DE��^�Ӣۡ޹{�j�R�����Ү����4��ֆ��7<W��)jz=':T����{8��ަ���T�Jh���4��-�m�8�%οU�Z<��s){���v��?����z�����r���݂i�zqKg�����?�oS��,�[�L3S�4���
OQ]Z6
j���u4�V���ֈ~q4�N�:
k�Ok��4Kݶ�Mҝ��>&�t�:j�����&�
N���TԢ����z*ݳ^rqYp.�־>fn��6ޚ�[�㽫��]�鯽vԷ|W�(4Ů�ۚw��[�iM#R�X�C�v�Z��)ѫ_OM�5ޕ����-��C: a��w�+�ގ���=Uy"�н�m]^i�bij�iS�Z�ɟw�u�z���Ѱ�8ꬰk��W]־�U\|s�q�:��5y����
c^�ձɍ�Bɯ�M:��?ۻ53�z�gN��81���tuZ��f��}*�����mSF�у+4}G޵ζ�+�uf���V��Ε�ҡ�%���t��u�=:�Eu-�+�I�ޕ-��%��~���z�*�g�X4�
��p�c�2���0�me�Zb�k�{~eqzf�����,��\��fh�u`]�Sܭma�)M;Z���o?�b��= �=�ѭs�u����֨�ƞ���3W7�LYŚ�l��4����ib���WGM���fڗ�3O�z��j���Y�	]]���)��}PZ�Ձ�g��Ε���M����ѥ5zG���6�W��Ǝ�41��]��k_���F���RQ�;}�[���ej�+�����t��m?M{r��������E,���������&�+��F��Ӄ�F�z�w_@�׭~V�0�z�WOKվ��\�@��_��Zս�W
���Ľ����:zf�ˎ&��{�Wz紵,�=O~���WJ��ɪۿW����+Jں�l[<�&�ji�6�+���q�g���}*��n��(ukJzj��O�*�~��ii���f�t�v�׾����s�־��`�{6͙vŴkg�Ľ4���z�Æm�뒻��i�nT��4�jYh50�o3��M��Oij�f�K��F�m�h�7�������;~f��}M?�[{KR��޷����_�2�����ni�Q�cv&����Q���LG7�A�\D���g���%B��Z�w�}[
����3P:T��3��R��ZW;��C6m��������?��W���-���bSJ��F�*tbΥ�U��7��sJ�_�����]���fGS�WW�j:h����ޔ;l~eZ5Kj14i@�WLĽ-Jۥ���\��+�����=e�5�}����lO�V�!��_�ʹ�LV~�YտⳏH��;RY�t��>m�Z���K�U��3�����9��H=fk�_��i��z{5�4��^��[뭯����=3�K�j��z)�+M
-@lh/��(ӭ�^����R����k��������Хqk
V�0�P�p�1����Tu����|�r�O��Qf�9��
-3���i\SV��[o��o2�¢tY�W0��L�^�rվ�CnN	���Nڅk�)a��ĥ5u=��ӊ�����o�cV���W�Mj�T�ONs��-K��e
�����\�-�W�s��Z�~��
*�~�iX��W'��$����d��?�5������t�5���"ʾ����[WS��i�MF��5<X퉨W�{�jסr����Jzz�J�֯��l�icCZ�zs�b.���v�ʸ4�#
�٭����z�&�CuNy�+�ST��?�%�Fͬ���&��Uk�۝��K�u���6��+��U ҆��_�Hp�?,�u��U�W��@���9<��GPK��T�|J^Եz|�+jz�M~�WW�_��&AO�2�)[G��g<g��i�mZ��ō!�߆\�u�VWNC�D׽z��^4j�&��t�OZ�xn۷&e*��}?��Z����S���5��<J}��k����4�ײ�ۿ�6��_Z�sg�R�T�z;�_������{ݽ;����tѩZ6�n��ѭ�Eu���ض	�}f�ֶ���=�ڶ�.��rfig�4hy�ɿ��-�R�����%��)�[WV��or�2��hhy�g�4ҽ��l�X_P���|�WWk���vƑ��k��#4kk޴=N�
��:{B�֥N��5m��}n�ONW�Kom�3���V���j�][W�3��k�GX�5n��'_��~��)���kY�ս�L��ˏ���GK�]�U���Q�w�;`��6�W�ݦ���G�����k�'�����ޥ��ϗ��OPP�]Z���w{OD���I���b���87c�u4iF�K��1�o+��Ԝ^����/TS_D�k&,J
5m��ܔ�Kԫ���Fa�Q2i�G��*%��&�){50��n:t/>}��M&��K{�����2�
�Tԥ��Wr�x�ѽ=3R��:�m�q�J�2JT�?�ն�F3՟ߙ�lQ��
;�S5h��&�PA2|�h^�2��X�_/1�Lۜ��U�,Rd��M4���U�p��Q�:��\Y�x�8�NT�=���Ԩ�bX����v�s�%�j�;��t){r�~e:�j�Uk��V���~֖����㉊:-b-��R��3z�g�kh-i�Y����Լ�JSU���
��]O�j}�V��t��t�t��]m[�J�>֩�xҽ-�M��Q)�f���}E�+j�;g���:e���]G�z����	SK-h�{�j��Қ��-�J��%�zoO��M!JY��f���h���Q�3�Z���Ks�9�s)���/?�!g�xpm��=��~^L�M+ujU�l�V)�JP��=�K�Iij�ֲm/��O}B�ڻ�U���}Jxӵ�>	B����:�a
�җkJW��	)��mZ��3���-�mY���m}[�+���R��ֻzk�Z�p׿bu�R���Աlf��x�ӵ5�n��m�>'�N��\f���B��f�ۯl"w���5��-�w�<3>���V����~�v�toM+ޚ�=�I��M;-�����.��5��z����ZPNBT���+�mR����~��һ�w���3l�h�
�j���St-b�����i�F%��l�� b�q0R��Ĺzi4�嵼>f���L��z���?b�-���?��FVҲ�m��ug��W�}�����m��c:�w:���=]�X�`��53�v��_�\�9����K%�!؆(��W�R�gY�MB��?�oe�{w��,3�g��e4��^�U�_��s5_Q�ӛpP�˿��}m�=�u,��%4�:�5g�K��>�8�F_@�]�kcsؔѧ�j
t�'ne�zX>[|W��N�gR�eqW�ף��f�ҭ���oV��[m�%�)�Vߦt��w:r��j�{U�*��/|�j�N���i��O�y�~ր�iޥ������jj5ۯA��6��E��ߟ��z�+6��ڝ[W6�W�gW�z&i][�:jjik����ɵ���__W��W߭�кq�W~�����\�M=�y�~Ц����>�v�ָֆ�V���I�-{�J��W&�����V�M�|�\h����o��`�V�Ҧ��_M\X*�f����zP����Z�m��!��s���J���oQ]
_��ĻORhX/ػ.��}�r��Vښ?��ƫ��u����6�-S�[�[����E?Vy-����CĠ:�m�v�Oon��x��Z�ڴپ��5�ׇ���i�zpm1�Y�9�S�����PW�P�a��oo2�+����,�е���n��	���^8��3j��,�
%\�&)�e�R���hod��ʂq,���
�9�l�s�,>���(��n#ߏ�+��Rj�ѧ�5�kvտ�j:��ҵ5���3kӶ�m�]��C�k���mͅwq�g�o�}g��v���k�ͦ�5=G���i�����:��EM٥�����kx��kU����b��[�յFhz]zS7���}��U��z-*z�R�
+Z��x��4�&�,j�N�N�ö��4Q������	4���hR��+�o��v���5ڵnT�sWsMZ4t-M]1�1*�=�G��{E�^���:n����W��q�ҫ�
���)Z�W�2��okW�%lS�,r����K���K�Z�6�:�.���g/�̳驭��_���J���]���^m����y��/M[:�Wv���'˖V���V��T����71ѝ��*SE�M�Ƣ5ٚX�ѥ����|�'�5}N��i�v�k^��Y{7�Җ
�8���Խڕů���rP�e/}m</ޯ̥��5Ы~0|y�꽴�z�Tp��r��^x��e�����)���q�� ��kMK6��0n��j5(*W�����\��E�4�����Z�řE���x�\8���==�*%U���+@�����������w�-E��~&�1P�/�_{�݃��gc��
"�޶��{�lse�-��q���
jY�����ʻ��]��iu5���V��V6�|j�����5[�h�G�w�V�M5,[O��N�{��g����k���Y��%�CY���S�9�wu�f�1bz�zC�[=w����g���wO���:�įC���k���Y��뒹�y�w���ŭj�����@@��sT�gKk�<5��
n�o�JPz>�]�>#k� �6�>e�/�5+��T�\B�ږ����S�z�;������е7�k�K���}?k_Z�z��pT9�j<?2�(U}P�/�m���&i��zLj�5ڗ����)�,�Yk�R�4�u������,v�5�e=EU�S-����OgWK�ւjz�
7�q,%m�p`�
<���0m�5ۗ�X��9�e�Y<2�DK�����+��-ZPز�eV��R""/��Z��Ģ�J��C<�U1�-�gk�ڄ�/�~!��v��ԙ��<��[��sֵ3P�W)���Z{�[��,��0x�P���M[��G,º��k�Ɩrc����Q�˸0�7���M���vP�����5zɵ��^�tl%��SC�h_�t|u$�[V���Ħ��=N�k�Rzr�57���M���R��=>�j�٧�|��V�u*�p׆-��j�s\��t�
�-�5���y,g�e¯��L@w��.m��g���~����j��<�t�a�2t�`Z��N�fkb�զ��wz�n[6��\Ai�"ի[��m��[�HnP� ��#B׳lT�SĮE.V��ԩ�N�%�\�o�YL���iN��=um��&�������h�>Pu^z^�x��D���i����m����b�%��4�F/O���=�@��F{�i�N����F�kN�x%�F�l��N���g;MA��֦��xNIj�__V��s�Ӭu1Bǎ6����ihU�5�y�����u���-R�.'�$�Ivر��v�nZ�(�A�7i����TB�P�D�N_�7���y��ܩ�s���^�i26S�m2�Fr��ֽ���WҸ�KgN��[_�z��)N��x����P�rֺG�^���
����ů�-�JR��>�Vߖt7�+�2���*���j��ٛ�R�f��iiZ�83�:Q����P�Jf���jy̯Uw��{`�p%n�ia�x���n��A�n`e+J�\��s���S/~��r�G����Kc�)ӥ^��/�}ڈv����I��_K�i��[ew��%:j�LP�Q>'V��Y��tn�jw�Xs�ˉB���9�ZZ��iU���Y_5v�����S��-B��ٖSN����v�T�#/�e��!�ޚy;̘;�.&�2�j>36@�,�Px��:��2�8Ӹ��\*�Yq8�p�/&����K^]B�1����c���,ʕQN!��#��?���M�I�=�sKJ�0�vIl����zyj��:�����ze��#Eh_$�(k���غ�%G���:�M�����-�wm�f����S�_�CZ�|e�t5u��^��e��=�e�]�תZ�٨��j�B�X��l���׵�|<C%�����k�,��jJ�Ux0�Ŵ�k�V��@��F��ٗ/�Х�%V��A�����Q/[%�q�lt'A���-n��d�|;�?�����|_�֯P�{8��kP�%|rK��`�Q/Z�J�/�SQ�׷l�D����l�3��r�j��,�R�lr��ұ��޵{��5WW��:U�lFԽ�}����͚/<�
���J�Қ�k��M����i�K����i����k�u�Қ�]VvÊ���^��JӨC�/KUij�O�5����������[^�-a9��Ak�g�̽W[-�����l�)��xa����o9���ni��nM��t;���*��f�oMj�
�?�,����u7��b����a��V���cON�3��7�ӂ���g8��\�B��M;����p��6�4�*�
x	W=B��Z�̀�!�N�LJu֎�
�����N3)��ͱ(u^�kɉ�����G�e�E%�q�O�%^��j�1�D�p��ݰ,
�)�P9�L�Z���kMR��į��5���ɼ�v�����q�q�7�&����1QqE��L���Hf힩d�����#�+�1DS-SB���=�ʧd�F��J�!�<)�t�r���\
m���}2ťB��F[��\��
D��-����u*��d�a���l��R��hci��l�1�R���0�魇�Y�MiB�;�U�Ѯ3J��X��f�{	-�iW��8C'�K[KI�(y�xτ�i��l�O�e^��ejD��W�=�+�c~T������J)U���S#˒P.W %�����y���e�/�C�1֦Z�Oo�B�mb�y���hY�9�J�,8:�is��U�,�5u==An�����o}t�zy��/\��ܮ���*|���u[zBQ��ilSQk�&S�O���8���
鷭��阿��N���s50��>�c��i�/~�Z�Ϗ�i��,�֚[�P����t�Tm�vq�Q��s.��G�6��v�LQ�Ʀ�?���h�J�~f�}Kܦ��4����>�_^�����t�?ƽ:���9�akel�J�)�Մ�bZ�իb�6��Z�s_�V�S�Xo[���{̿~�Ex{�Ku҃j�~��g���C��t�Z��Ty�oMD��m��}�w��|Fm�0��L�����]���2�t�lo2���aY�	h�[pʛ��	��H��!�V+���䋀ͼ��6r��s=���6��#�e�����+`rs7E��@�_tz�nbm�7P�5+��Ķ&�e��	�d��*9�)��V8]0�m+�0O��F������e�浌��*�هE��%L3��L��S!�\�s5_j�~f�s���<$�t��C�!����njF����֢��e���JV��Yl��֯d�B����܄���:�p��^�\{b��f:�3J�Y���*��ҧo�G߻�,���?�	}��J%�j�|<̺Z�m/�~�l%�>1��S�W��ؙ��Y[x;��\��9�1c��x���g�a�.N9'I{�����*=�:}��ߪ��l�ť��*��Ub'ؾ���ʴ���*��D{��r�q�|�|޺��䣹�}��ps/ZjZ��ҧ�#��}gX���rg�M�)zi҇�����iص߷�r��<9�*)C��0.2�C_w���y�]K�#�����z5
���?�M+�X��m���8Ľz,��6{��e���Κ[uR�X�?�V�-wOLwnc��ĭj�ɚ��֯��^��߇sl��!ZaG��أ�e���œ�e����n�4hc��~XmZ.���T�sR��1���6C�鳵����W�Q�c�e��{-�r`�R���C���,U2T�D\����ѥf�S���P��T/��^�������ʣ�et���C:�+/�.q�X�m��nŦpͪ�{�1�>Kc�(�D�w�9^&�DU�H��-7lY��y�-�����s��6���6�s��}7k����|�[޻�]�=��9����[x�iB�ү���,Og���V��+���R��ұS�=��z�[M_�K,��P��;��������r�&sj���3��H�ص_�=��p�6C�9	u-e��=��� �������Z�1jo0����PMj�;!�,C `{1�l=�;>I�����-����d\��iV�V���WS��/F����1�Z-W��q]*�|b_�ߞ���N�n�8��Ų�h/Q�Z����f�5��9��ϙ]�4�6�0ԯ��%4R�Ǚ_��|W�eO�JuWOd�6Gg��{DZ�>	A�Z�O������tޠ���Z�Lw{�I�ָ��v��tJ�\|c��_z���ni~ziy��Z��N�,��V�?�"U*���=M(y�!cI�e$���_+o�ġm]][Pˌcf��z'U�ͫ��M��OO�mwX�����^���^�V8�[��Y�R�,�kJk��>kbz���w�?����<x��F���}QGV���hX��qm7ǘڵCT�~1,45#��f�ks�6��k^��:���zp=��,�N{~fZ�BX���:.�ĹA�jo�s1�V�j�����0jSl�c�ɽ�e�7���=N��5�o���'W��\���U?V9����NC��=�}�x����6%�{�'���e����-��~	b�կMe��f�5�)��Y`j��o`��qӶV��Z!b�mZO`�j���Ź%r���v�+BoR
�K9lL�����e0�{"9��7S3�sV�m;ob	8&Ʉc��/��*x{DoMB��M�UJi���c
}�W��-.T���T�khaj��%P��~�KQ����i�0���V�x%u�Y�U1�k\G
����N<1Ȅ|�w�m+;��`3T��m0��;3�j�3�6Ԫ�.����zht�p]�3�ya��Y\^�9������D�^�W�T����F�J���Tl�-U��O)g��	j��jPҽ|$�n��t��7e������6��m+��-�s�Z&�N3�����lu6.�5�$�A�uY�2�i{�P��i��l��h���w�X���fl��%*l��p�%pC'Ab��^R\i��kZ��7�ڷ���/JiV�m\q����k�z}<��lOG���WV��-�9�����l��a�d�Uo��ҚIǗ������2�k�-��N��I��?	��}5j��녵>&��]u�KF�޺�wO�fi�W�-��ר���'cĵ֞��Q��W�<˺^�Z�tx�kg�s4�u5�z�w�rlMMZi:�X��i[a�;���5[Y����X���B���4�ұZ�����D��V�D�����¶��]���Ã34�3K�i����P��:��T���+ф�_�v���7����s��C£�P�ױ���Kt���8�ht�
��5t���.��|~Y�]U�5k_.�������e�?���J��ғ��k��{e�MQ�}4*l�]=2�!n��T�K�3�+RŹe�v�J��Ul�Z�mֈ�m�h�H%���a�8ye-B��/R$�n|�UL� ���!�����Ƕ#�jC6�	�Vgns���I�x��F�xX�@���-��R��sŦ�U�
��8�j^��
_^�K�G��m�ܽly�4
P��Pr�~#�Kteq��E�ح~7ݘ��|�6�qxᠵX��P�ht1�c��.����c�g���B���ګ�#��%I{j����8��='boK��zҠ���J�)\M�Y��֫���=��<�J��*��y���(��pd���jZ����P��o-��S����GҺ�U��P�ޱT�{��E��g�ĵ\-m�%u[7�JԳ_w�a�������P����*s\J5:����+�����*��-������nW{��8�f�z�t�V�%�`�g�Rٲ|��M<99��魭��-����R���4���ߦ�Yt��U��:������zΦ�C�Թ��T��y��/[�kK٩��+��f���t-N΍���J��hӫH�=\V��צ��Ѧ�/����j��f�4�k���݃K��^����is���l>�9����k�jT3_�4�׫pޠq�����m7����,�jV�k���R�?����r�'��,�g�_j��JZ�gS:��,C����-[*J��*�=�ޭko�?�̝	c�,��ej�����
���sL��o&wģ}:��g��2��f�ԧ��^!�_Y�Zڶ�^Ia��Q8�����
o��j��^d�r,�P��%V�R����5*8͠WWR�-�䥚Vi.�0��V�Yz�V��+izU���n�F�l;٥8�6�Y{e���u�&m��1-�}Ot�Ɇ�B�.�ҹ/1z�K#��pi�P�}T�,mmm3�'����{�l����v�f�X�m��wi�}p
��
�p�Y��~�Ś�g���a�pE�}[9�\^��Lw.�_����~��+KUqˉ��mK4��W�L)����53[�ۦ���+t�;����y�zt�]Q��v�9
��f�9�@�
�2�
����+������M+iRڍ��3�f�w�YT�yf�`5��ia��-��	�^3��x�@�����	J�4z�h6��C���{ޛ[
����Mͺr��
/��k+2R���nY��ώq�J{G�e�{�}�8	�C����&���[�y���h�Z8�W�i��2���4Z��y�sb�5��2�̰�mȑ��NI�j���2����ͷ�Բ^�4y�:�:�� �xe]]]]n��w��ٗ���O=U�MKs�q:���<6�X
F�����@�զ��~����m�3��J��\|>�~��5n����f��}�-554�:�-�q�������m|�Ж����[W7�nġ��z��8�ks��J[�ض:����jf�j�Է�#c����JhǴϻi���[P<p�Y��g��lj~�Ms�WN�6�s:��E9Wxԥ�B���`5�j[x���	U�Q*<�%�#�R�����R�k�5mS�r~%�B��}��vC�j�Ά�v�޻Ǣ�4��*:V+�,<� [�Q:�Sz���O{]��)l���OB�m���`������2�uձz����_jv��]�ږ���팋��Ɩ���s�Z׾�5I�wV�hV[��fp�L>l�jގ:��˥���0����V��,����	���ƞV�:e���+Xٵ�*�K�iа�3k��m0��z�6	��2������0X>�Nn��)�2O����W��5�_��\�l���,�ӧ'�Og��Ë;ʮ��~�ެ3V�e-r�9f�p��|��2�t��?�
M>�%�Z�v%���ɵq�M�G#�c͉�LXI�WSU2����+햵1\���U(v!�P#���mK��'�~��mKu����W��j�|J��T~s�~ѩ�P��SN��%���q�.�53�y%.WH�Q����h��~�6̵����s�Kd��2�M+%����S�ը�{L�Z�4u,��cyL��l��t���\�(9��*��w%���m��U��2�.�\��k^�YJ���nj'���jWN�m����U�1ɉJ�u��\��|����kpm���ֶ���Ѷ���<�mи#�Ҷ�1����hcJ�b�O���:_|�m�kW�ڶ�Խ�i��_��+P����z�ץymO�,�F�.�)�M�p�[���OH�s�V.�^����U}��&�޽i[��{��qk�4���a̮u�imIK%�g�Ǚ�KV�����n�m;`�w�MzSZ���Ə4o����m]+iXնK9�o��h�W����V��COL6�=Y��F�uź�g��a4�����u��S\�:��ii.���������n�X��֚�Ʀ��6?��E�m+������ڷL�݇�K��֮U��o��ޗ֩j��hSKF�Z:�������V����,֚J��Ou�[�6�:*dllDQ�؆hv�%��g*g�S����j��m�tٱ���T���^1f�f�GU
��fm���{G�c��o[pKt�f�aa���h�2�k�.�ոa�* �=���!��l��cO1�?^V�3���,���YH�A7��[Wyv��\*�:�=�k���sa8	j�޺Dj)�mU�o��O�q��9a�����t-ץ�L�L0�G&'�N�c|��',������������6io�_��؜,2�pƐ�J^��y�z�r����k�>:f�g-s�V4����#{�}N�q�{S_�cU+k7Ok)jzѶ�t?�5]Z)�^KJ��mZ��ӧ�Sn��{�ڷ5*j�6s���CZ�jǢڔ���{��U��-��5�ir�v��o�./�>/3���s��\k�[Щ��o�4�}~�����_KOKF���˹/oeD���\4o����]C󼳗U���V�������ߜM ��Օ���kM.l�S�K��K���*�Z&�juе�p��hW6�\��
?�[��=���[���8�]*�b������'��\:��j>J�zwI�����`[WF�+R��bߴ�_GE��Ҧ��j4���ut�վ�^L�|L�F�O�7v��f����R����G��&u����ӦmӞ��4�����zk�q�kjtP���SO]g�)�k�{נ22��^�}E4�tLY���2���-���BϦ)}*��sȿ��k�{ښZz��c��bW��R��������y�yr�VҶ���V�������g�����ֵ��g�w�F��4~׏�?�Q�t�9���Ŀ6�d�J�2u'�cH6�4�
D+����}Ku)Z�L��/F��,ڍ��<@����ֲ��������)�{��o�wez�˝6��؀�����J��!�:��W7��Y��2� M����G�^>��9����kdQ�9R_^�����Q��0���ջ�d���.���_��&2�<�F����|W'��M����9�2jߐf�v�-ɏ��7Hl�fi����F�n]�ҁ.֜�[��?�*jY�~I���?C�ƥ�pb'޽�{���i�]mM<:���ۙa�������ޕy�y��n�J}ME��ݙu4����jZ��k�@�;M6�V��zoOK���m�O�Q	���[��͇$�j^���m��u��/w�2����j�:]�n�V�f�;9�u5uuwS����t��8�%r�M��j�O}uZi��aCK�P�Z�'�)���
���)kh��SZ������J���O��\��Z�ǎ7��:MР9��,ųl�ϟ?����[Ǔ��{�g�����];�w���/����ʙzj��R����m���.��)������k��F��+�j����{��Y�sK|�KQt�*��U�km��DIB�\ڸ��j��>�Z�z��+]SD���&��R�����>?i�Z^���ɰ1�Q�4�p�|M+ܺ�V�j �I�7��Z��=��/kkR�+m���X�{���l���ίM~��_�R����\Z�cW�%��!S���j�6�?�)]A!�q)̮�+�Ȑæb6jRqn�^�=V��^*�gKKK�T=V��̲�򃫫�Yn���3O��7m2R�xpv�����`�k�r�-�cC�M��?L�^�~��[�{H{i��z횓�[��b9ht���uVB�����?C�;8>��x����x��{������_3PtR�z�.���-���^�=&�%k\,�`�O��[���~�=�J��7�&���B竡�Ş����-���(W� u^�B<(�!WYۮ��g���l�9�+�+�c�7���.'M;�J�4�N0�bm�\'���Le�)R�N)n���yJ�ȩ�u��u�!�e7��Ɲg����~,��Zƣ��	��Bԭ6��51�V�cV��-ޝ�3Lt)��k_G�D���_���mZ~���*ҺU��Ô3�%�_O� <�ͭN�q��em����]��l��ĵj��u��^�b����V�mu��R���
�ծJ��/Z�KH�<�tk{����Nj����[F��U��[��5F������|uW�o�n�WWL���K_Z���'=�qD4���K����q�3ӫ@��w�����-W|�u���};�i������4�k����g�4o�Q��}�%�ikd3�%��@���/g�t�Z�t���e߻C�Ųl~��5�hh�[T��Y�Х�~��m��o�He0Cf&�*�,�W��[�]e.c�N�ePѯQf9���0��ҍ�V�析�+|��ʎ�`�LO�aķ����Rw���9�����b9�#���p1�6�]�]����NJ�%1�C��J���~&¬x!�����x��W���'C9�}�ä��VU+.:4�6�e�1~eC�t#���sø�;sw����_Zʯ*lLu�Ӂ�a�<$�8�gz��{gnՖ�Q�[P$��	�������o�툔��k=��ٙ4�����[�:��:��N�_^�q��P~��N���f�|�Y�P�v>&�N�+SR�����r��VR�u�9�����_�KF��R��lc���e"���;��]+�Z�qŇ�^��<69�-Jtt�?�2ծ����M��\,p����
�a�����˜m�����ej5y��~ΥKQ�^Y�
ҩ�|K4)f��g�)b�iz���3_�}=]_QãKqC�Y�/�iSGK�5�����Z���};>���m��][��KˣQkG�;K�kzm:�NLgKȇ)����W|�5�MM]&�T�N�<Z]���S^��?��_�;X�q�ƿ��饩��Y�3,~Q��3%G8�7lb`l�Z��,���Ӽ�M��M�g�Q��f���9�g�3�g3f3a����ȱ�yI�fw�8_��~�,Xr}<G#7B��ߪ����+<����ś�2f�x�w��ޚ�'��9jJ�M�>�8	���c�����c�9�����`&P<y�[!+��><C-7�4Z���;����	�o��%����߾X䶫��q�m޾f�v�{E4ΫQ�TL;�Jt^��7r���l��S�G��u1žI�Z^�+��ڍ,��I�����Ų���=��1W����j�h��r�Vڷ������PK�x�9:�kZ_	����M,��^i4��iyV��3Q홬R�jW��̮i�����;�j��ﭬ�zq�=�4��U��]?��[V�Zvo��o�S44�,��t�j\���†(\G9�q.i[fҦ��7콸���j�s�N��͇i�rC���ic8ķ6���C�ل;}8	�_?N�^p�g?C��<by����
��S���}+��[�1�bp�g뻏��ʰ��a6�3{Vl�r��C%��rǞ�dƢqo��8m6-���P�2$1c�v�p�vlUI���P0?C=��KuL�}�Vj-Λ�ý\g�ש�Y��{V��
?P�=6��q�w?$�:b:�x�*�&�h�>��;!�s�UZ�+���Q�I�ꗥ���m�`ui���[�O���
J�S����ѻK]|��n�few4�}!6�p�$�Zz~��s(���z���Q!����Ŀ]����&��Ѷ��l��{��}-CW�|[�o���_n�cs��BSt��2˜U���h��e�ĩ�̧�2�*C�?M���̫i����O�a�~����;���0�8H�BZy���n�f�s��	���br9���r����ڄ�Bp[���8�q�NnG��W;̲ld�̭LOM���a�6������e϶~���A�g�F��K�Ӽ� 6a��͵)rW7�խkNz�<Fƭ�J��x�J���d4���ikV�Y�Ƚа[��=G�>0ن�[��lda����6�M~{��9��&��z�w�e�V�[NiVku�V��� ���V�%%��>e�^����ꚶkf���uҥ4KV����޴�T�u����I��N,�[[:�K���V�_6�H8��[y�Ե/�����7�9��?@
a�˴]�<0��w�������8!�ݴ8>�#<��>�W�\��0gi�c��W�r���W/�.>���lÙ�*�y3�2f���@*?�gxN����j�~�6�pM��~�#���il���d�0���#�����~��1f?�n׻�'�2��-�Y��&�Lu^��-�boz�Sa�鱹h�ޢ��OQ��LJ��M����٭�0� ���-�+��].��A���?ҹ���3�oQ]\���%��t(��%�uV\/t�;�zj��-TL5:p��U�`�\jT|c���cj��/j�vY�M_Q{൹�4��&���O�Q6uCK���B�*q���zM�p�#�|v�>͖�y�8-\Z8ń��R��ͮ8�!É��x��ӱ����N�#�M�ea�N�&���v'+9>��l��b=�<�&�z�_�y�8%��3u��a�2�O��y�~��!��~��a�6�<��m��9�y�Ӕ��׈ǃ�ٝ��8�z"��NF�Y�KFrm	����$x���m6C1����1��Z����˂e��jWC�w�J?h��O0�!�l�*<�B�kj|w�(fX��.�ϓ�*�.�2�&���m��~؅�j��7�̡է|���o���3YV�W���\�u%���k��+���N6�
Q���HV���.������k�MkN��ih�z��kG!bUda��2�Rn����ڮ'3�M�#�1���\͕��~�����
�x�<9g��I�-�;}��ʓ<C�<}	��8_�!8H�)�y>�y��.X.n}O���2U#8>��>��鸹�8��f�G��3��8��L�k�D�7F�3�a����q�mK[8����������}�@c�Q�y�7�)�V��|x���s,�j����%@l���Z�a�����3*{Ok)��1g���C
!��䴨}�
����3x{����bd>�ʿGkVw�O9����7zsߣ�f�g'c���v@���wf�m
�M�m?S��૒?��s�a�C
ߡͿ����?��1���������9R���#��%��,V;g?Fx�'׼�;W�9lW�G;�8�8_��Ú�!�ql��}7�ͪ�z6��de��\Ke�//ӳZ�p�fŲ���g%Bm\�[F�N{gl����J8��s[�7�@��4���9�h��̈́���!+�_Mm��+��;���I���+�w!9b����<G��|�{��x��8P��e���x��p�pO8��W���c�<�!�~�9�Z�M��-61��f���'��'Ў��gbwC����l���UY��NW2�q#�n��F��{X���b�h��ȊNV9q�lg3s�Q�<͖�3j��P��Y��6�1ڎ-
�k6�Y����?v;�R��5َ�y�;fl���Rl��gg��6[G�o�9~�&؏h���vv��t���́���r��9,?C�Y�V��Y����pNT	���'��X�x������v�ҙeR�p�q�>��ӳ9��6�m���M�Uc;�7N@!�qKo8�;�rfq\0���5C�y��~��%�ͧ#9	��,�9�3�����ҹIŁX=L܇,fz.M��z� U!
�F9E���6q��O��l��ٛ�f�i���o�#Ɉ�h���Y��	����K$��W��H��A�e�J����L��pa��}9Il*�2�Si��!�
2��ee^��!�Fl$�u������<�Cf;c�F��Jd�%H�>�0�Cy\,�|�N���^�>�?J�k�L�f��C��nV��u1�5���x��Ec���&�N�19b�g$�뛉�n}Hoc��0\�U<q�!�V壳	��%��eA��I����0��39fvq6B��" 0@P���>/j���3�̘��a�������ƃ���Xkr�L�3��g�zgS��|��s��N4�%�8�q�+$ʩ�@���ʭgy϶A��58��Ӟd��5��(����s��s��MH�>����r�/�1�>5����d��j�$�����c������+��-?=�s����F�̐��:�\k���9�>T�~�0\��8�rO��#��r"_�:c����c�^3�'��ʭWy
U��ƹ����p��(%ᗋ!�\�|\2��Xc��ř�_�?��?�7�ښp�?�e+u�����j�o,�%ɝ�:�k�s�s�+�~H��b�����s�rp�8}��8. c�2�O�����Ysy,A�>[��Ǘ=Tɚ�K�*�d���3�
/��VT��T�~8c'�sf�5�>�p���z}��f�'�n��������*�7�Y����5�[y˨���!�_���0����q,��5F��}s��j�Z��ZN[�fY���
��Y�	�8�˘�u��U&G\��Q����G9��֬�����9�21�S�iց�9�9v���9,�:���+���&�	-��-��7���3�֖�*^W�s:п9I�dˆt�N��^vj>Y��/	⒏����aS�G������Z��[9l���]}��r�t�Y�oN\�u3"8\1g)gː�w�'����
�~��3�D��<�S(c�VI#Nw'�?�Ϸe�O=�yQ9ߕ�
X}�����r�W¦��Pƌp�P�ȕ���8b�+�U��S���L��2�������O����.��f�4�9�]�-[%��-ژ�3S!U1>���8X��?e�U�)�ˈ.u�P����q���9%�(�+9�e���&�G����)����bѫ��5../�Tdeg�?�������ήq9y)�M,�N���qιʯ�D]+9����.��teL<�w;8��Uf��{��0��8�2����k�-���s�X��|�
�U�ʝ���K֌g�C�?9�:�����؊ܢ��e��b�~�]
Ϊ��B7L�a��k')��;�_G�\�%W�L?���>�&p�'Y��zgG����w��b���k��Yl��rI�#�mm�����D��"T�$��3����i19���V�̬��^�Ǔ�ꂂ�˼'��}�p\�9X`�+�=��\�8�k��g��5W��y��X���G+�n�&P�窥�=��Ɗ����r~�r
P�[�$����+0j����S��^���VB��+�)>5W/z>��Y&0�2{����ˢh����UkI�Am �穨���T΋x��m��p���`�S�B��5��JN�2�E'��ʎs��_�K�L+�e��g{VE^@)�Χ�wRjbg��E�����\�U�Ku.Uc0Z�5���Ԥ�9?'/<�.T�ʺ�
c^���;���s�9�Lf�G��⯢�ɧ�E]3&�c�!�MYv-�TM���';Y�]FVx��V��u�5��XT�3$�_��_�+=:�5��y�*��(�q����X�-kr��.D��T���ܢU�#��Ƹ�e�S����&.2u�I]h���ԵO�eo�M'��Sٿ�5+Us�7Q�!�9�7�{��FQ�LrW��6���#�ǹ��g��G�l+ӕr��w��"d�	�p*����[��0�G��:_u۳������>�������G�L���9ٮVU�e�̕M\�eюY���8K�;c\�L�UDqd�.���x��/�
�e�֬�Qc����V��%�j�����<�)�V�d�p1�Y��l�%��r1d�Q�	��ά���i����s�Q�͗�L���5O���ƪ���7��#_Zr�J5��W�qV�_� �T9uMS���2.9U���^�ޛ�+;C��q��stJe��g'+)����虫oi�T�9t�]ܾ�/+%vy��5�m�ӓ=k���,�7�0f���|f���������H?+�E�ל�L��Trp���2��9O�|���9Ug5�mdMC�}�|����>��W�	�51��u="�V��IWv�T��^�ʔJ��ׄ)���ٕM�����|�P0����Ĉ����p�®����y5k�B'*�r5�D�e$NNL���m܀V�6mc':׭R�K⦱�**V'VNʻʢu��!����� c�����b�Nz�Qbr�%�3��;*$�?��b�d��­��9벒�l�%)�v�̉��Xu�*�[j��jΑ벉D%K�y3s���*�/��p���ycfj')^��y���F<3ʪ��kg�>1���͖�D1G�!���Yyׂ�
��իT�#7�.���̘2��z��`��L�����Q���Ū��=���sˁ��U]�#d����G�x�Nx"�Œ�0�:��D��N���0��dy�f��iZֻ&�)ȏ5
d�l������β�)̸�T�u?�]_M�٣k�K�]��w흦�o����[��_����{����O�l6�������k�?����co���s���~������yUr��D�Ln��5e5���^}��U[Su��	4�Aœ��Q�0��7���8)y#R�Zb+����[;����{�y������_��?d�������1�n�{usL~��5���~��pI�^R�ĕ����c��o���Ȳ�ϭ�gie���-��nm����2;��I��*U�*��֨��9Oc<�	�9@���e�wi���qo< ~��Ei�|���4~/�?��6���s�&rr���YXc.F8��q��g�#G�̕4���J������\�Ќ�Hb\\�Z!ڱ��/����y�2�R]l�ѩ�1'p����M�h��֜�I�Kz��H9�Ţ��~�;oW�<3�NN]�.T�R���?M�Yxq��m�:�N�@dJ�Y�[)ݧ�,����͛vƈ�Q��La�����4O�Y$բ�\g��3N��.	Lq-Ӷ�>m����͖E9w"sz�@�s�͑���99�V�[/�F�k����O��!��%���T�j��5s���"���I��;W�鋓m�{u]�(i/�gmL`<�9���1��g����.T�j��8C�8��z�c��(~',2J��e��8�N5�W�s�t`TU�͸I��:��_�L:�7���	�9���3�|C�S���a�9φ?��|���}~��D��_KtT�������**�2'�r�zg9�9EgC��.Sy�P���s�����p��}~V9�~����p��̬�'��_��\|q8�|�yo1	�,�ֹ8�����2��^s�J4���a�~�9���|p���2�p�c���g2�θ�3�q�NV���Ķ@��$�$sX�L�9��4��Fb� p�l��g{��}z��ׯ^��������^�������߿��߿���l�_f��/߿^��/�zl����׮�iGў�ײ����J�Zg��Y�[�kh��������흮�q��-W�7u���c�w;��ٝ�;ߝ�w���?��s�{�p���L3�����ε��}t�ӳ�t��^&s=`���5��<����9�9�����9�9����s��?�s�9�s9�ǎg?���s�s�<��q<��3���F"s�����9���s�?���V_��9��O�s9�7����ϟ><	����<��~<s����?8���?�}�>s��������}��z|+��S���}z�����~w��?�?y������_9䟴���a>|� �s�>X#���-@u������;�?��w���	�<����:���yWɀ����Ϝ�����9��:a'�b?8y�>y�9��s�����S��~?ˆ8}Qp�9�3�b�T��Np����K&���y�Ӂ���&s����~w��C��>?)��9���φ���~���^�/�����]�[���+�p<�]���s�߇�Gs�UG�>���Ng\njֽ�z�י^ዝ�k�r�+T�c��1 ���*�F��ޙ��{��סC<��(�9�����KW��mz����SM���ε�?LW���(��������ܔ��?���+3�����U�ίO���z>�.w�w-WFk�8�[�鹯��^Lvj���oj(��\N���)G׼�[�~�҆�$�5��X�#T̂'9�~Vq�xMܭd�����є�/�+ӊbI���y�;��޿�3׹�q84sp���>w��e=$Gn�0ȿ$�0k�^]��?�&s�G�������=�1�~t> "b�s��?�a��q�q9����m��T��2L��D���l�-�:pӨ���0p{G9���a�Lr�(������e9 ?�?�q?��L�۶6�]��c�����;U�\Cm�o�cPˎW�)���O��wXe#��(�X`!�����9�~�Hp�9G2�6f���|������P�>s�c��\>5vݑw���밦�Z�Z����CW��wU�?[���s�F�v�W:a����ˉ�Z�p}`s�1�9��c��s�Ha��$NK��>S�p�փ����o���͙u��)�~l�Qh[���z�7�V��	��TLNAWUz�N�[:������"q��wTӟ�V�O�#��9��i��~:9O�8�c5�+_���W�o��ѡ$_W-�^������4�{�D�n�0[���k��v+��V�u���:��d�,�Pm��^��vf��Z���C9��s����O��~^\�O�p�`�s��O��L�������0�#*D���u��T����ٝߢv��U�l�[՗fFjL����}�S$U�v�>�_������n��}~w�Ŝݎr�
4Q^����޻�O�s���pr�*��X;f��5�	2jٿϷ~V؈�m��m�Nۢg?-���m�{6�����=���&��ӵ�w����ŵ`m�m�Ws��T��mޛ�6���?W�K�·�~�ն�f�13�rI>�����uޟѧ�_�7j�0����ٽ�F���m��k�{gm��pN���v9��k5��W�jʊ(�U{sϙ�C�y-�^�!�JFN9Y[}N�uj5��֋߶v��SQ|����W�]�C{������k�w���m��DNQ���d�յ*�ϑl��;uצ�ݱwsW��4eb�9Xg���-F����kWZb�Z�m��r��%L�9XWo\�G�L1�ה�kph�ׯN�N�\�5�gM滤
d���x�\x��'W�����j?A^�G���w�gf�f�M^�k]��U�j�ns�����}��{�.A��9����5�?Fͷn�B��S�?�ܙ�~T�c�:�լ����d3�ruNV�j������^�zTۧ��쉫�<�9�B�N�����}���w���f�}��O��Hf��,�A<e��#$�\
1�ux�dm.'TM�RuT���!2Q�Sw,W�ʻ�k�r�i��8�QQ�(����l��x��o5��ֹ�*ܸL�"��L�� ��^~f��3�{#Xd1Y�؏5�K�#&Y!���B]v�"����
W�6��C5����1����&4�k�"��B��ٷ�^�fٞx����ڀ����˨ ���i���i��Kx$�x�YΙZ��3ˌ�l�-�s��������:�$\��p	��T�V�����klD��:�FM��۲���s6��uj������f��A{\H�Wy�]Ɩn�4�ƶ����k�~���V��ov깍e�m�_�4�Ӿ�kך�j���fN[��oz:�^UK��[�u�<�:��G&�|�����	SNJW\p[�lŭS=LF'�n'd��ܵo^���̱l��͑^��{%����f����3���{?Mo���7n���.�q�׸�m������#Nݷi�
�rc��c/3��ꑺ��������?Y�O�Wzn6���*q�5
M�B��j�l�L��u��I{.��<�����s��/�5���3x���&lYk�ƭs�7��m?���߯n��c���5i�n6��f�r�śl�)o(�L��/Y%�E
�2�B�]�j����w�[��us.��D�h.�jpQ-��kvɋ��M���p>s�.���D���Wwz��V��ؕ�1�.�6i�W�TY��w��f���"�5�g�zEkۮ�φ\I�e侐�Z�
pB�3�����e��{|Ӧ��5;�S��mp�}���ɨ.����m7�ͷ�KL8�������8_����
���v��cXf�U\��2�_�?�*}Ll�q��dѢ�k��/\m�݋�]����>*&R5g|\�<ی�ee���K@b���iBa��"a��j�<'"�1�9�\�՘*p�6��Vg��׫i��?�&�9���A��O�2E� K���yr��Q��VM'L���g�$$�8>4�'Ϛ�m��
�5�S���$V�
�w �2���	��;y��M�ai���r4�"&i�b#����̜M�#=k��Ջ3L��,��7<�¢�ΕT\�^�yD�y���u�e�ۯ
�s�NS�<M��]p��sSS�˹<���%�u�U�8K�Ux��{�'�s3�j�&yY����63G."��4XM1�Fy2�4����r������G�J�ʽuL8��)�!r�1pr^l&( g�3#tL5FD��%�c�kИ�T���82|����\����4��+'��[��-`㝼Ֆ�u��*A��r
��亳μ
{ՌT�k�F/2�	�!C;��M@	�K�re������Tg�$�g�3��y��&KBrr��'9�'(&���*ߥ��a�±��6Fyh��[�`�����<��q�TFD�!����]eb�.E4|2�99Y9�UQ��R��$K5.+��O�T��5�7�f�fLr'�>jr���IR�d��eQ9u�q/"�`#��a|���-�9۔Iɘ�5���L��s�ty۫\�ѓS]���׍j��O�2O�鞼���<�Mx���9.1Sf���ׄ�_�7��9��q(�I& �ח��Tc~��EC/��/pg$p-2�ʜ�b"���\��<���I�]t<�3YS��5��sI�p��$I�\�A��^J�3��E��D�zv݅��q���Yd�\�X�6x4^Mz��'~e�[5�c���7xk�Y9�­�3�]Pk-��s]^��;����pU��Ep��欚��E�2��Qɟ�rr2�M���i��kv1�m���N%��T���Z�R�^EF]�ו�y��KD���Y"Zf�f�<���l!���lo��9���[!��)Θ,�ћ�ɚ���d��M;sU�Օ��9�v�[����%Q[%��s,'V^8Ɏ8b�IJ�%�"i6�v��(�^Q�`���f�[� �2�o.�i�3vȩ�0��vN#�z��Lܪ+D�j�(=vY;r魭����2d{Yx>IĜ�2�,6��2��l�VF�ƻ�b
IG�.H.v�+H�u�%��	r�$z�8�G���^�t��$��]�/�[)'��ž^�79��AL*_fR���Qq���\����U�IiG&��W;���V��z֮z���W�:����#�.�qJ��V�g�2��]g!��)�2�Y��L���܇��X0]�ڽus{4����]I{����Y�1��U��󬒖�s��f����
bz�1���I8b��8"�5��Jʷ=�k]��8g22��0��;Y�q������(�3L�x��3r�٫.Vs��}�Ļ&Z;�6J�t�f�3�f��A���m���V����6~�]��in+��9���������'"j�����e0�.l2as����nz�\rfYjY��)�Y�5U4�D�P�k͓��L딹���l˥"t��o�&*M�]��E~{�q��0{_�pV��&��\BC�NȲ��wJ��X����VkuՖQ�'��QjI�Ҋ�z�U	�9x�K��e�5�i7VsMzr�
�y.�M9F��kIf��~��Q���t깻=�6���8e=�Բ|
O�4����/p��eg-�U����c'/�0�*/��c���Me>��Դ�ja��(�I�����9RCl���wB>��V�]Y�{�h����I{�&HӨ��.z���pɗ�?9&8�%s�S�L�H9-�WR.V������ɉs�Nr�����§��͐�i+�Pe\�9l�CS�b��g�c�y�g�ѩّV��y����v�vii���d�d�#>L��}$�e��|��Y�,��̷���-MΪ2�r5�r��L3�e��^rڧ4�`D�I���VF7�Wqh��ɢ\
�ed�8��ٽd�rs�
3Tʜ�]�PL��B���Ϊ�;#��)��Ĭ����,�jl��X��$�ȴ�֋�ė 2����q�ʒk	�rPQ��s��9y�h�g�<�sY"��`9
��p0z�pr��8��'2�r�)���q�5ף.be핚��+�d8�2�Z򒵼�f����-��?+&��LS;렵�]NVs,�9@�3�]�Ȕ��C��G����T3���Ls���Pa��sVY!�Ŭ�U�-?g�%r2�2�Ol��s]��xd�T�C+���ĹX�\��gY���99ι8�Y��,���X8���jdC[�H���2��W�99A9X�����r��+)�䜑�8e㚛Z)�u�_
.�na^Q}��s]8��2�1+;8�.���eL�Y�'*kżՈᓛ�[L��S��W�s����5!1A Q"a0q@��#P���2����BR��?��Gdh�"D�J�N�:$IGl�) sM�:M��F��N�8�>��`G�s�*���z�e�����l�ɿ�6�
�b��K�\�a�l��B����&�{��.H*u�$��zL�֯��%�5�Ʋ�X��CoD޲Ċ8"��ue�) ���uX��(i�CL�Yzun,�yӥNZ(��|����	]�6B)�r�9!����=�ޞ{'X�_d���cHD�5.�$kH�{���B�HV\�1d��$@�2��W���k�ˍb�!��*GH�C�n;+N{����W�ih���{�Z��"�s�HoF�lPC%��*:�ސ�	Q�ѦP��Ok*d}Ѽ�.J���q��9�	w�k=�d�(�T�s���-�Pďh�_F�D��.�[
� �d1���Kb�Q8�m�#J�H�&��J�h����z�9\��げE�oH��z;=�{J'W���YJ?�t��d�C�F�+�i
"�(�EC$	�ֈ��pY9ԸB �NFΝ�V8�7�r��F�Tx'[�%��%��h�:D�{l��TpFK����d��ɥ����G[cYmZGli96J�4� �u�(�B$�$�^N���H��V����"�O�[�b�F�6�F$-%�.5[�ȤA���CӒ�} I��$��LM
`�tؖOH!�b!�%���N�*8�����W��I����۲_�s���1�9%v����Ӗ����kH]��X�$��+;��rWd9�C4$��{���^��d�L�;!��'J�V�&ΖJPKI���8D_e�l��`sy��N��ב=8#X q�R#H�EҎ��P�!6u-/���Q}��=�4�vB��Œ�tк�#�6�L�^�N�Ge���)'Ih��Y�%��G,���FQr8,{��k��["I��-��b�7:rZ�7���W�l�MkzB��Q*��%�B�d�= s�Z|��-��$�P�%���{�^��.J'} �@���(ѲikDP��o$\"������,��4>�h�CӮ|�f�Ȗi�G�!w��A'�H�nt�%D��gi/�F������:-%Iz��Zt�m��?�V*G�R�#-"����$�	o�ش�C.�D�x��OizJ!�H�ip;g,�!
c��AE�'S���'�+D�r-,D��$�d�D*�z�����l��~z��2%Q,s���	d,��6$��$T�u�P�P(�Y$!͕���bo�('D��492[�����D�Cݐ��N�MX����K���R#)��M�N���m�+H���_��s(�bC��#m��	��4�$��P؈�V���A�Mz)�.��T�	&أc௝ �[��M�^�}w�����*$��^�
(�qC��=�g�F�/Dԉ���X���XC���h�oF5�Yؤu
n?�m�C�c\P�e4��{-�ԡ�Qm�ѹ6x!k(ZH�4��D����oL���td����#Y�:��Eލ(��	d�9'm�5�R6A.��P��n�Ӕ4!>���=W�=��҉!Xڢ�	,��dزgL|:pH�%�q���KK&�7���J:w%��	i�%�+9G�6@ސA�$�F��RΡ�e�=�qD1L	D-#XRu1-&�!�-,������{��JYQc�x��4C�b]g�2��'�oq�ԅ�D�p8��H�D��b��4B#c��,KD�#���,h����e��-$9(��Fˁ4b�ZX�RF���D[D(Td��\����
-+TOt"T�����ޏb��ǎ_x��J�ؓ����Iv%�JJ$���b���/a��"�B��Q"%�"�G"�Ė�t��rX��6�c�J,PX���Iz]	2\���1��6?�<~Z�r�k�twAI���u)�H����J:\
��It{���%A�2�:ly�R.N�l�[	l"�PB%6K�I46��(D�h��	d?��T1p7�N&�nZ)�.c���rI�c[���!Fm��Zα��!��XE�'�X��h��$pJ!$�E���hMC�{lI��!B m鸭�J�PMpYI:8c�J�&t�e��H��ZE"M���/H$S�',p��R�N™.�#ɳ�
�z)�N�r��$�,���{�N�d@ۢ4�̴N�IL�^��E�zu1i���%�(�D�nKH��ȑR��$H���!�U�":��洊�T��9V8y�t��&)Q����b�HG��c���%"yy%��	����`I���bT�pd�#�$BҠ\���	��
0��2w#�'%_�#���N��E���dߒ4�	�rB��,�t����N�L-[ ���,�]�G6��O�A
<�H��+XBd�n,�p�V.���:����*NH'� �$�x��D��,�oe�j�&W+�Jь{�,�����Ɩ���DۂHB�&�$/̬P�n{#H%A�l|"t�,�>QD(i2J%��8%|�$�m�;�0x�>�V&t���;���H{�+b�b����FOdK�I
�$�Qr�3�ʤ%F8}Ɇъ�I�}�A�
ZBNŚ��B��6�H�P$64�ܲ]&�0�S��g�%H����v8�B�_�y9b�Wc{�3��4��G��De/anK:G�)%蒭Σ�-�
�Bܪ.�%hؤ���B��œd2t�)
�%��Gn��E,�B��q��?,�d,ս�vS��{!pF�"^�8T�(iQҌ����B%KD�,���&��L��8�
nV���J"�L���2�ץ
�c��Ţ#Jp��p6@�'}#�AJcȖ(�-����P��~�c�1�oY��;�!<��,f4|n(�X�Hs'1C߂8"��2μe�$7XD
����<��7" l�Y{�䗢gT�w,�h��H���
�������sg��iB�����G�#�7�Ɛ��Ψh�N�e�i)���'�
�RMH��J�/�b��ہ�[�F�H�O�E2η!%"J��2Ȏ�ؕ1�D�cT{�H�%���"� Vt�Vx�b���V�1Ho=a1�B�A��%�z4�,�ؕ�n8*�ܡ�:F�[��
����#���e���̆�H�>Ip���F��գ7I���7oK$�6|ر�IbHy:<�x���6�_��<��V>�FL�?�䥲p%Ȅ�
Y�NĴZ(��$IgOcc$X����Ųr��r3��\#�Bݑ��na�&��b�a#��HH�"#*�6�R9!Y�bD&P�<�j���C|	9���e���w�%����f2F��{��Ĭ]?%X�S"��ݍ^n�1"�_c�|
����h�7/ac0Od���icCd�Jz�44�[�9�q��I�r&�!hգ'b��;�M
nx��6$�G�XږB��I4�m�n�D�P��%�6�^�R�G��xP4�Չi�Nȡx@�^�{�}������,����2P��D�J�	/�b�6{��ݩ0y$��!
62�M���-�&"1bf�ڃ��s%g,����7Gj֛��SbNEt7KIm!�BƎ�!�	���a"J��R'-����&J�%薓Ɇ[�d.����BD�̶-Ķ=\��sȞݫe�{B(G�Q�GM\�Ic�yta�	ϒ ��O6+o3ߤ�s�M#�%ЧȚN-�C����F8���rzYNy����nn	�`��
p<q�gԮ��P1��:�����,��2�9{!�\JD���7��e�D)Q��,ObHBJ��h���b��cv&NJ�3'G�&��ōH�B�9��7�:���BO^4��bNG��EB$�z%d�$�F;躬ygc�HI�2K�%��
tX)nK�r����禿���׆�}̰�u�b�q�E�d�d���'���z����<��K�_,I�$��'�~��V��e�-�������[�eR:RH�( ��F%H�I
`�7*
��QƲ��6zK�,�u�!��m��i|��dm���#H�,�%�ɽL�
Z{����D�5�RB%ID9b�vK9C��1[��"􁵤�!Z�:/W��wf)�-�rP7��L�����b�����ӡ�S�˯���2%����u+9:���Y��X��#��(��2�b��D��
���{e��g�Qn4L�NROc�LQƝ*HD$pc�a,�:��z^�J&5��I�tYe�V�Y$姼�zAb��BX��z���RIZP��Tg�P��I<�L�(i�!#,�^���TG��1��Ye�$8c�m2NE�rtPƷ�Q�={��-��iC��:���%C.4Y��QZR-�[���ȍ1������ۙ`�)C�r��g���������nʂ�c�I�c=�u(۶����PŊ�f�\RU�yT����N���=�L�G��E�E�t�s�vQ,�6�����ד�d� n�έܭV�2@۱�*EI��I�S�ݙc��R!:����|끷FMX��3���^�g�/�t��;���Ջ5c�~N4�Y&�쟡z޶_u���=^��Y}��u�pF�3�t�B�	��qR�=�NE�,����9&�$��A��� le�zB�t���"1��IF����6���[�X�t����S��d���嘵kX,���~^���4�����m����F��H�M�M��$��2ΔYK+�Qe�F�vN�:��%AӾ�綾��K�/_F���F�Tvβ�Q+Hr6�J<j���"H�%�B.�䗤sΐN�l]pK,��ӒD�ղ�#_A��z�ӿ�zYF��h�Y}�V��vAD�*	BCn4��=��r$��1�1�c��~G�c�1���~G�~L�1��c�1��j�}��^L|��ɏ�y1�b!1L^L|�Ȅ)���^E�^D!y�BE�!!H�R(B�@�����	v&�B��.fE��.�	���,�F)�,D�A,���W�_{�c�!�L��Ώɑ����O�y���Dx���!�|�"|�c>��d2u�t�O~{P��c�V�!~Ev!U�b���1�c�Z?�̗���;d��#��Ih�����V1��_BtOY$��>Կ#=Ѥ��?I��5ػ/�4M	^�B�#%��=���#V��(s����.bb!!Z^��ȼ�?�S?R;'b>�k;����l��D�'��S�'�7�$��$N���$�z#�_d�ΐ�F?��'�N��)h���p�!(s�҂U�2�D�N��OӍ%5ڑ$}WA~C�
���l��*Y$	!�z�Dږ�G���B,�Q25�i���z-cܮ�+G�?FH�	u��%zI���'�wF�N�R(�"(zN���v��h��'[��qݘ5E����K/��u�W�
��$kZ�}}���$i-��r����ZV���:I%v�9�4�z1��/On����Q�N��/���J�(�u���2�I�'T�(�E�kYEw^���V�޲Ź9�^�������ե�<i_��8BGS�iy%Or��QeNZB1n*��e�Bw�:_ў�d
[�"�	DYP֍2�/��'�P�ܔI��s��r�.
-�N�/c6�l*���̚�
�cԿ���,�Hj���N#�Cb[�������c%�S'�9�D�$c��s�}׭kpta��KѤ��L���.��'[� ���)��ؑ$���?Z��o>�o7Ina1���Ye<I?rT�oh3�,S����R�Bi8jH*^��J�5��E�/5Âa�:�U����b��%�,鹶>�Eof)��EZ*G;H� �ׁ$K�m��tЖ�����6HK�:���������Cӓ�Ε�^W��ޭ}�aco~�ƙ+H/[+K%}$���,}G$^�lj��1��0{=k^���[?�l��x��<ViX��&�q_�3x��#>��W��2��n'�~��=�^W��R�в���#/�M����ɥ�p��X	�'��j��x/�p����`���c�`�%жQP.��lX�[����y�*	�$�{�Ҧg��цN���a+f��Z�>�<�?#N��Oӭy(�~
ҴK���|�����}�Δ_gM��<�qN�)�L�՟!ϑ��3Os�����*��l�*���jv�������&>G�P��_�r�:�E�/�:�ŵ��onhy�
lk$��O��n,��vY�4'{z�/MUK#��*��2�o���|�b���K��ǒr�$Xe(���J�ԫ$CHD�يVuL9[1�ݘ�o�+E=d*gFN6YGI��csYJ�q��=%�K*�9�T��8c9�jW�+�4W�$�ɲDu-�|��'a�%hmH�Αcl_������埽�Z��8��K'��⥩1U��5�_�ix��Y��[����*1�[����'d��&���j�:T.?�)�(M���2�����u
�Tά�l(6���e/�2�L�*Lz�v����z��5��+܃IȱgR��
��XzU��J�Ğ���~dn!}̲�Ĕf��"�#�W&Wѿ���:q1X�����~�i����t�������o--�ؕs%�=�&������T?����-���y�=�(k��0�$�S�?��q�K�Da�k�����mp�
!H�I�"j�p�M��=�ҨyEX���B�
��Q
�?���d�=,|�Rc��	Hy�Oc�?Vd�'�5�DA8��j�R���UB�\%�OG$�[�����%W�v4���/q�ҡru�gNR���Z����]ot���/�<䖑1'��&^�-�Fܳ&�1�/IKp�W,S�ɓo?VUlzINa�N^Ƕ0cIyc�).F�Bif,fP�d���h}&}0����3�������nX��z_�i�r�_�����J�wm��.��,0�^�X��O��Q
{zS~��l�s��Qj�F1J��,R��T�t��"��IǑKI��16b�i��I=��0����J
,��ȖQQ�LJ
&��+h])=���[��ue0%�u��&LpIl��c�[�e��ִ�}!i�r6�:[��zS�H�K�����"�P��Q�/#x���h����,�:p�T��Zj�ɗ��Z���zK�a���'��Y��mtz/&�K���p�U�����ʄܱA�i������s(�Z{���S"ز	�1$tST��/�ŸN�rk7�����}]l�^�̲^�����K�ѿ�?�t�����G��Q�.N�E0H��i�*��˪f�3�z1����
�Zb�Q(�Hg��=���
V�x�;�j�L

\ٖQ-�ݲ_�a��Cnt�/J�'�.�d���&�'$)\X\X�S���f8�L�%f]S���O�'�|,�����Q*��L2sɌ�^���R�_��$�Ϗ��z���о6?�~��^���%=K�a�O?Vb��O���Fe&9(�ۇ�_�����}�V��������5�w�G<�<��б�!Id3�d�$(�8�O[)SCNɸ�؞D���ՊzT�h���	���%�D2T�$X�C�t�I�,�V�]��$_,J�e)俁$��a�l�ΖO#d
"2>�!��E����z^�`�	��V2������N8�,��!�;1,e��O?�y���y�B\y8�@�g���O��r�r�
D�h�z�/�7���Z���=߃�s~����b�x^Y����u�1��i;���&Y柨�ZK���x�TDO�l��/+[>?m�=,���?,���4�T��Y�INi��dc�LM�:?I�D
�@�i
�R�%o�'�qrJ��:�(��H�2��	���y#m��89%J&���8�+Or��D)"��螐6�mke!�Qe�����(m$�<��f��e|�4.�{�$�$�*D䙒�]�Jd��Y���7"V���/E�K3o�H�)�����pt�r�D�|(���D���45�$8��H�>����H2�\=L?_��mx������I�K�bԭ�H�L�l���[��ȃ��"I��ߑ���g9M�\k%��)%�jj?���yᄵ��>�>��J/s��Ҝ�f�ד?�~�YBn��ǣ���o��u��?S4��j~���S����K��z�d�%���C�y^w���4�N�������c%F�JCe�:Z!���R��k�m�#�����X3,)�%�9��D�	b�.�*D����rI���y%F�������y�IJq��]��Y�D��15���\�h�CcI��
�v�V]~����(Dpe�lS/a�7��ە����1tt�Ve���{�۽�2Aӌ!办 �P�d�DF�ي���̳'iѓ}y���y�̛.Y�Z�=7	;�~��4���I������Oם��2�0yZN�s�����rŎ?�:v�
^�SV�ρe�^Ķ^Q�OU8����Μ�3�����e�z�s����S�9f�/�H��Ͷ�{�����,?�ib�j#�&��K{��F^���L�I/��=%�Ptz�����ͥ�,��j82�>�����kIM���1�1�bX��x��in%��dn(�ǓHX�[1�xǗ����]	�-M�<���<���b��k�$1d�i�9GRCm����Ɣ-ȸ-7����<ZC؋�orF��o/?����$t�G%}�����k�ɴ�Oq��2�*�!��k��G�'��,X���>�S�K����%��*Bi	9�3���$ıy�1�Q
x!K�$	�%(�R��y�N2�ץ�؛k���2,���G0����c����{.'��Xœ������NBT>�{�b��(���<=5������
�s/W�~�n��F��1k���~��S>d��(⎧�'�1�/�6�ќ*i?�5�{�ڣ�?&�3���_>�_�t�x�ɿ�u�x��%�!g9�+�-(?����w(yb���Cݞ���K'�/s�0F6o��q4��آtd1���FO�@��lq{�"���.�R?�g�ǁ$t�M��^G�	�E�J�Cƙ��G	�d�lCc��\�=$��ي�,���,��"
߁�Y���g��j����:�*C�%e/���^�"��t��,��pm��q�C,�m�T-�%���ć�E��h�eiI*��f�%��<�X=�fy5�<
?�L/�y��q�����vg���Y�F8��h3Β����o���L��.���%���7K���;��cꤳ������N��/��G��.H�=G��,�6�&zY�x��,f~_�k>���ɇ_[iJ�#�=�(X�9���G��i]���}���6��G��>�Q.���">ۿ��~U~��K�!7�-�8��.�����Q$($�rc��%ZT�����Z�Գ�Ƭ�bhM�r,Q+kh�"�u{�E�8#&t�M�ǖ]"sK���,T~�5���+O�_b)�CX��?ҭ���/i�|�DZ���*�Zϑ���}q/Ԅ6�}�
8:k�Ǧx�ڟ�(��Z�̘��7�7{����zV��O)�A�x؝�Z���D�{`��.L�$t�<��#�7,���I�L�	?j��A���J�I�L6�/o�re��ɖ+�Rd�B�ɟ��J\�=���d�C��x>��a<anz��pK�3xe�|�8��MO�-���I~�L�1���l�+
ڗ7^�};&��^��K�3^a�y2�O{��<�Nt��F�Ycy$�SS�$����,b^�z^�K?R�{%�E���'�K=���/I�H�k�Ý���bvE	!7��<m6K�	�i-�?�	�!�'/�)��U�ӢU��ѵ<��O:O����?s�YH�j]$<^��?[���^y>�nd�t����Vo���<�LzrDJ-}��E}�Mo��7��O�I˭���
���\��=�q^L�R�Pڪ1Tؒ�����k�Y��TM�G��.^�4�-�z!-�S��bʙ�~�b���W��}_�
�c��}���b���~�I���Y����e�tb�V�j?���m�SѴ��9K�c�7&=/>G�Kx�_�=\��Q�9��t.�̥󱟪��}�^+F�����J]���N}y�Of�WɎ{�7���F?��O�4~��{��/�^���j<a�-��p�t�p�%C��"i�p$�QO�zE=��"b�)�D����sD��LcX�"��H��?܄I4]����
��$Nov�ذ��,��=�󱓩V�E��EP�D���~	��$$x�${ie�W%}��OI�5D_��)$'n��ZOcZ�u'��a����qd9��T�^��\�1�'4�|�5
(3�[��~�L�;gV~�+��
�|
�0�K�DZ6����س�U��p����1'H�O�!,����B�жX��蟧�:7�gM��%]�d����1hMX�uγ��E9IM��%�%�J*
���5$#�!��&6Ɂ���	ᒛ=�L�$��"L�p$�w�X�sqDB�p�Ml-�D#�L�A�H����8�4����Th��dF1�nN��+[��ID2�:��� �F9�8BX�b�Ӂq�,�|�֏�x:�iT�c�䌟�l�"̺�5�^�A���(��К�^�iE��(%P�E��.�i-&�H����14�qF9<�!��*H�&C�6��#��Oc�pR�\�R%ȟ�h�L�RG�&#��l&W܄y!A�I)x*
/F�!e�/�J�r[j��OƐ$ť�A�$�$��8(KX�E�"d�NRV�J<���d�OYr^���Iq���%��,�!Ic�8c�*HśA(�Z��(R&�CY(�9�L1��
�,��X���t�H�d��XH�����C7�$��$��	u�������.D����H�|nul)�rF��!S�$��=�K"���C�YL�:Q�,�eȶ��,n�!@�h�J�kңY,�A%�F�h��%�:QDl$�M�ɢ��')䖙QCKH܄�8�Hcm�1�"X�{�d�I2�
��{�&�Y+H&�d�X���Z{l�&�k�.H�~"t��e
���%/��orv(�(9B���b��̛���I�O��[
�%�n�$��,�q����LrQ.�g��5�ƍ��$���(\��A"�$���	EƜ�V�:J���9<���<�;�L�THgKV��$mľK:W܌~�M�$D�J�9
�
�OJ��IArx?��rlx��t��D�b���'�7�\#�ƓC:��1���2�k��M���y���H���FQȣYZA�C�D��R�R���!��
��FmAv( E�ai(�T�����y/���N�����gR�sK��ޅY�բx�"��3c�
$|IR?U��B�;�J�J�Q*$Q,�����$��DN�
�� �(�g�(ڇ��ũ���YG���͝YZ:-��'G�$�D�M�
��P�(��F�,w�RM1m��p�&0_���2��M�1�t�UFآ��2�#qk:Ad�!�eYD�X�ܹ.QՔ��� ��qpF�K�B�L��bX�˭R�?bV��!�Q%
��%�D�֏�����,~D�sRX�J�Z#%����ѥ#v\�ַ؈K�)!e��D�2��F�'H��sd�Y(lP4���2)���	�_��}k��'6��kzB���R\!,Y+a��TB'b�gND�.
�u$�$��F��^�����g�<w,���(�!i**H!�N��Y]C��e�,W[��6�
#� �#$~��Z2���ka�|�dR)��7{
�
Es���܌t���*[�.0�U�Co(o�}���Mi�\��:F[�Ol�d��cʇ�IQ�Q�d��1�H��)�fӼ��ϒli�d=d�,j���q�d�ue��=�i�/FB��zn��oKҵ�(G��_�xe,Y)9z%R!���:�V6���i蘒��R'�m	a��ͮ���K�ƱI��!�]kOHd�
G'�u$)d|��_���G�W�������?D,q�Ɲ[�(�ZrB~K%|���=�;(o�:����WA8�1�1�B�����I��QS�2HGJ�r�	h����b�#�m��$JX�1��$iE�Gd2HzIX$�^��'�7lX���d���nK'IDizF��%��ZG��#�N��,���p6L��d�%IEydc��%��l�6>G)���X���к Y5����#��*FAIe�.������Օ
�%����np�$��$���(d�1JYr˒�� �R[1��/��il�8$�tiD���K�5���F��%��Ēl��d-'H'H%�V�X��Q)��,ynt4P�X�掕��D#��
�
�P�I�
hi5吒t,p~N�<�W�Kl�R.8 �-���nRK�ɼ.�iy�,���"ؒ�,���,��*.��ka5BI��E�!ΐJ�[(�NJ��K7#J4��k%���EvN��kXO25�d���d�2�Q��-$���Qg"D�io�&J�C%��
ei;rAVND�Hf吠�CY��rQRQ�D���D����Lk�k	�<ey�%�2�9{'���Iá9�+�"�^̩�V�{�	���FPε��?A$B��g�{�Q:V���Z�M���삤࢏i�H�m�QC�O�iD"Y,��E��	+He֖rJ��D�(�=���NHPN�Q��/I=�N����Ŵd�����^�W��l����'F&Y5�7|~��r�h�D�clJTI�~)��$�kzQ:�u��uE��b,��(D�Ɛ��;L��E�V�t�4��(���d�
�*~M�$d^���-��C�6NQ���',���h�:��GJY�8�c��g�e��cX37ݝ���X���i�B��rJ�:�G͏7�:14e���Vt���>kN�r�Ȇ'�薰IJ4�g�����oHgQz�}�I-(�R,�!��N�J!��K�T�1�A4t֔@��ȦG�B&��"����c�΋/E/��в�����e��H�1
�Ȓ���b�v:�o�"I����0�+��d���!�H�jkVJ�Oҍ(]��%�E��e��/�I(�����oJ$�Z+��:t��F�B%��j�ْ�B<�DpIEid1���'"u/�X����6��ӆ>�sJ���1�y��n67^	�P��W�dֳ���ƕ�(�#IҾ�vI=�C+�Q��� �/K�QdC,�%�'�(�K��rACZC����ٴ
#HS��4~#�$i��7���\	t�,�I8��)Ųq����~X��%�m�Yl��=a�޳��cI!�_t�IIZWe�\��I�d�%��+V^��,��J!�v\��έ�e@�GIrD�X�g���xLAdF��d��C�2�,S'�~�i�ek:ޔF�Y+K!Ɨ��N�����V����	�5�2D�d�h������E�A�YI(�ArID�������Ǭ���ҵ�:N��oNG�0�%w�l��Y�T#��=�h�^�Ol�2,�+[�TI%iId���ޭ� �A,�%"\�=ݓ�E�@�ө"Z�,�I��3���B+I#_n��}��,���u��#"Q�/H���5��d�,���izIdQ%vQG:&F�u8�nYD����$��J:Y9&4<��A%���h�5�ei�;eidV�{K%γ��=�����^�J�uI�+ID24�!i�bE��vK살��x��A�P����
'_i/FJ�fA*�-�Dd[ӂt�4���! 0@P��P�GN\z����8�Y_]_b�3��_+�����=uz��|�.08���w�΃��䣚S.3ᄃΜ�XQx��w?�0�
��j�w����7V
	�N�����ww��|����g9y��s�����s���3ES�8g�>�뿣2�s�{��8��.q=��>t.=ww�5�]��U��F郜7_N�>���Vq���&]�3��������5C�8�ZQ��n����kI:�|��N���қ�*}�E��>�A��YL�w�O���3�ww�nHo&}>���ܭ%M�,7�#KK����w7{��s�e��>{ėK���W�s��h��2�Ө�?�����K�Lb~��²���.�59W�
��J��On��k���9��E}�]�̾��|Ǯ{���їW��)��G{+�%�:t�E+���P����1��8��?\}N�+[Z��ks�������O$�n)wLnq�Y��u�Leu"g�WO����{�w��q�Kx+/�Ns�=�Iϧ:���o�w�����5�ʳ��i/Q9��@T9��N�wM��!��T�s�^�>��W��&��wњ�Ff��/�����9�"&�ﱾR��o��'�m$�}>Ç����s�N4�)���껮��?��ĩ�e�ԓ+��.���}w�ϩ�v�O.qT���Y���3���܊P�3���ǧ�u!O�>�
|�
#�q=N��Ϯ��v�볟N�G����s�;�q�dO/���3��s�ܧ�?��Pn�\��]7w1�_�3�_@�*����
���r���Y29ӻƴ����]���9�w5�����V�F�%?�8��cS;���;��Ճ�]���ky��|��>�һU#�w׹S��˸y��x��
v�`�h*Mx��9��b�w�v����z��b�:Z�+s_S=�4�z��X9-�A?��n����]�<���Xh��(�;�:*�(�nxϥ꛵�̙��`DEw���;�3���*��Wt�M?)�;�)�2���=��L��t�ە�k_N����tڵXL"Wj�Ʒp��:f��g�/�(�w٩r|ԋ�'y��3���L��
ϳ}'���?f&}M�6�J���n�X)����4˩���eOu���CVGs��N.!	����g�'}��X?'7$N�	�s�?R�)�g�W�&���vT�܌M��4���
.�2���X�x��!�1�o�a�:P5>=3C}���_׺iz>��*p����t��0�9����(�ָ|c�r`�2Q���NL�'��K�HL��h�7q�gN��%���1u����p8ݡ�FWӚ뗆�s�D)�S�ud���8��M�PED�Q��o'4��}to�d�7T��q׉�5�Z2�k��Lr�|Vl����48Ŋ��f=���E�ěӻI��D��j>�S/ڛ���_AY4WZ��ռqs2j�PA�b�O�&Yb�蚒du>9uR�����{��b��w����ф�u�_I[�2ra��f(C/7�X�=�\�};�:�w�m�UT����_<�!�u�bC}����wZ����7}�W^�`�U���d#�?2��}Mt�4 x�ד��7a3k[���_\�'3�~>Z7+8��?^<=�-����吘�|��X��E7G�2��*��jhp�ȲۃV�C5zQ�2MHD���"�o�9�-�,��>~�g$���O�&3m��M7�W��I�_^F�n� �I��'�����'=L����M�Q���]A��M�kN�(<p�KTI's�e��_�J�~=:��G�wQ�<U���bg�V��E�*uj��V���\�S����]1'����4Un�8��}��CH�!9OA��N��ݘ�n�	��_-U���z��q��d�wK|���t���|swVzw'|�E>F�-2�8�1q7[��O�@��c��ǿ������V�s.&������}�X�Un�;v��.�V�'}ݺ���?��s�����MtI�
x�Y����5�LD���EÌ���X_���2���Y ��GU:�fw4��Y���x���g�����<@�~�Q��2�Mq�{�u-]Z���D�S褳����QX�,6(3pT�;����z_O���+ǭq���F�����цk����4G��}#�V�ϼa������A�<Mԟ|�Y���<�et���~/N|�Jf&�̿D\�ʺ��;u/F�9��wQX=s�4�K�=�я]7y���na/��鯥���-�:<i��Ӡk�
�+3��d]��qw�*�����M�n��w�꾏����5��o�L�;���M�g���ʏ�#��c�����9��x��8������c���O������W��/�H�f#�Nt��b��.���&*�A0U�y>���D��@�J�}�!>t�u����x�&����nb�qQ��z�����U�x����h���W��</�틿�y/�^Dd����y����w�Q�W1Y�K���n�}��W��\�����S�)�qJ�}�[/m�cx&��g�U�c�1����<_�~/уǾ����/[�7����h��7U��޾�ON��{������/�s����g�ӅǮ���:�5��q*:4�S��"����Lq�)�n۪kۼ~/9�¾^�~���x��߈C�>����~;OӼp���q�O\��w{��������e�13�ν�%xf�<W�G>~*f��W�g_�nン�Wk"����p_���|�~/x��ǪM^�W��W����/��⪼q��zS�A�q��������B�Qw^����˨~&<�<W�ә��?ʆS����w���^u�i���N?��w�wrs�t�p��4cw83��Ύ꛾��Ś�.��Jy?����OBf��<���������?����}q���z��0��Lgӌ�}���n~�	����[��Ǯ�S������w=w�~_G��������q�fs�z}>��w'9�K��z��>��3��۹���~���?��]�G�ۏÌe�z=us���ӟO�ѫs��s���>yϟ���������������������������������>>�����������!�s�����9�|�<�9���'	L�G&y��~��?��|3��H��C�y�������;��.~9��9��>y����sw�]��}w���W�G�����]��w�w]��"�����'͟��w�}w�_]Q�����~��=��9뛿�������w}����9��9�N�1����s�����=&��ᅣ��=s�w܉���(���׮��/s�G�9�n��t�=wp=s���<��=ˌcuZ��`W��=q��c���=����n�/�{�Λ�O��7{�}^�����&q�z}�+�7r�7}>��7>y̹�.<���{��*����'���_]wp��y�g�U���������9���s�d�T�pw���zp$}>��}��ct˟�C��}'�z��̼�w7C����N}>���z�K섓��|Tqi��\@g'9���C,�=;���o�^G�w9��sᏂy̝S���3��}r"�O�O8G�Y�Igw8�}>�F�{���&�BgL���2s��2�z�FU��a3���������9�s�2����&7>~xJt�V�� �u"T����8�s�>�Ș:+N��5z_�uDz��;�z~ٔ'9�a΁�gُ\e�qݤq�돯����9�F}K[���N���s�K�0s��{�@��;�wS�4ݎ�C;���3�z�9���r���pg��=�Ǣ>�}���c�Ϣ��N�R���];�ԏ}��>�^$2^n�Z7r�Zu90���On7{�F2���޹ϩ��v�G��ޏ�=$��x���z�9�F&f��7�b�Mu�bz�n�ǧ��f&��V��\��;����ޞ�e�wO]x�e^�����g�}?��$��5D����]�\~#��☐��'���t�	�7s�3�4��Gw��==��z�)s�N��^���Ϣm�f(����Hƙ���b1U�U�D���rqUm$���Ycz�W�����7|rk��j��K�}>�;��z}��z7ON�믠��_�o�O�_�|H"���	�/�5�)��I�\'�,o���.o�ƥ}9{*���L��-V���t�r���7z皼�_�|��n�3��7W�g��g�3#�~�h�z�U��3�<��\����,�i���0����f��Ճ�>��o�>+�{Hn8�w�H�=M�3��|SO��SӐǠɤq,Hd�Խ��%5�N���q�U��.c.���<_�S㊐5��<0�Q�G�'���Y�{�,����c�1]����q��&M��LN_u[�i�O��(����|5��}x���|^?��9~)�1�{RM\cS����ݤ���w��g�+Ѭ��}Ro�3�z��"��78�?:fe8R�|Q�|U��X�|Q�j&;6Ӽz����$���ZK�>~&��I�3?.�dQ�Q��^*o2d��	>
OZ��Sv�T��Vhi)�S�����_U仯$k��5-�/�~��uW��%���~#�Q�5�$�&�����^*��|�x�o�º��3��K>��=}u��t�޴�B��!�DI�K�|?�7m
V7&X��"�x��Ӫ�!�.m{:�����↰���_��'›�l��jլ�R>
Ty�M���W����Ϯ�]/��(��Sp�n#8��Ocʼn�J��u��^��]ʾ(H�w] ����3�\t8�M��
���/U�#7�|���-�f�j���P�[j���a��G}���kǦ�{�tn�(���4��j��R�J����%{ПV���&(���
-=�y��rV)��ӆ|�59�jZ��t5�+���7V�קU}�JN*��HKUp�ld�D����UT�:�gt��Ͷd��'��-}��^��Z�Uxb�~{��ߢ�'���53��S����<���|��w����J�N�P�<�3��RW��W�GԦ�º��W���O�� U��J\#�5K�'�Rޓ:�$,�����E驛��Ρ"k9.��\x�s�OYwB�>n�Šw>yrk|g�,]]og
�Z�j�^\p:g��S=�Q������Uc�t��}!�u>3�ȭUf���*���oxm�%D
���^}߈�qU�� �-I"%$̒�ܩ�%�����3Txfi{��&��np�}j�-L���+�U��m)i��֊�pw�T\��JŒ�x�4_f�67Z!���v#�$���|%�h~�����X��Ԇ�NL�Y>*���Vx�Uj�}�(�s���DO"~fm���bk+�ޡ뚧��e����A���k��s�>m��4j<3�/���J�U4*��k�mF�����] ���[���W~hq�y��9YJ���k3�@����nt��{T�N1��H��=0��5h���S2K|�H.���zJ���*���N��T���,�+�K�jJ����C�8$�"j�5�V5f��3���+8��"b�V&M̓��������UTVjr��}Nta�ܤ���j�'v_�%xޛ�|\���|�t�n�'絣w��	G}h�ߣ>�ij9�^���|^:Ƣd��N�k��&w=\�
U����(z&e�w�J��\*�U؋r����I�[ɠgǼt�Mό�;� ��O��?&���TХ���Ѿ���KuG�r�~�tf|s��׼�8
8��u"�yZrpZ�5���K��W
W�5'�Y���Νɼ[���i ���wMM5~-0�oՆ7�&�1����6�WUM��*�Ժ��;��y%_��$�_F�1�iӍX{5ڨ3��h��e�~����Cpgq�f336ƴn�l_ц��b�Sm�<�ȣ�j�v�\���
G��u��{�Ҳ������Q$�?#TT�a�T��Ջոn�N�O�Z�8����T���F
gX�VZ�V�ą�&gɸ�y�W�+�N�hݮ�׆�����7y�t(�ǩ��_}2��+}H�5��5Ul`�b�OEo���}��
R�c�٪�Ox�leլ'�cT��V�N�r:��xg�u��i�M2�EϾs�V�Ӎu%��L��_\����2�ݜ�S���tM����9���l��9�-z5n똊���_g���R]�|R�
S���cB�3�
�#�}�w�Y��f�N�)0v����Uf��w�7�Mɪ4E�3���~SǝZ�o���j�]�{*��@V��g՞:�E2}*�ѩ��s�:��
O",3�nx�
��e�ݍ�G��X�2e�NϤ��)�2�ƭ7�\���t ��C�l�#�v�C�d��54ú��[U���œ��З��Nh�KD�H�.�O��(���L|N�3�f���U�&��ܭS�ɨ��z����S���L=�0T�������������78�U��t�or����|U�\S���n^��f���9׌̶L8V�M�cr�ӝ5�)���Tr�H׮�=Ѐ�u�i
��%ݑ��I��N��;�x�N���V��i֬fgU�Ϙ�Mo�P%�����>2�k�|4�&
��ae�1�����sŭ0�Gd�I��$����#�}yQ
���O�s���@rZ�p�/���}_�ZwͲ��x�1�9d��%�U3�s�띖�j�=I��
w��O��bAro���I��<Z�ħ�JK6|ׯ����M�_�>_�T������q��CI�����T��
.���`���u�n	[1.s�s���%覛�0�N�Lk�$�����(h
o

nF
f���g͔���;�x��I'���<u�f7'^�5J��e�i���n�w;�}N��$1����U�9�+�QW�]��ԎC[>�>=;��CNY~��U�M��k�1����Q�`�y4iox���|��MBJ�1�4�g'�c�c9Q3�X�.C8�0�����/kZ֡��֯t��D�$k+Kzpޜ�M:�M5[�K�e�N�U��ĉռy֏���Y���#'(^��9�p����i���j���5�!;��pw�45�x��Y�u�/x��2w�x�֝F���N��8K�;ɚ��<iMx�ٚ=N�N�znβu7E��M�ĭ�}qew�JY��ˌ��>�5��wTܑ�7��+V4Զ:0�慟A@�];�]��MTjp��y�"�]���4��bЪM$�5-��j��{UK��U4���<N�J謁/��=sN�������c�r4��,��6�О�VN��L�7����Z����55�J�
٨ܱ����
�bgR���R��U���-K<7a�M�|��Zw���}��<��N����4��<Y�����Ҝ��3�\̺w/��Ej(|z�CԎ��g\��*f\cZT��*�u5AY�3��'�΍u7l)o�Vr�7F]S��s��Ϩ}��&4�ƟG�Ƭc(�L�
d��4��=\����X��q��-rEQ����ƥ>`P�f�>��7!u).���N�[��jЍ>�s���&��O��:3�kݕƄףT��%�#�	�l��iϫ��9k�X��8Ý:�ҁ��g'L�ɠ4��F��*5�
u3��\����.! 1A0Q"a@qP��`�2�Bp��?����P�l��^�]̦�!�L׋���o�_n��vL�+��Rv�TM�_�H������)B.�Vh�4_�v,�����>=�a���͛������Y����ʅƱ�6�)�,>��gf��q�f�Wb�ƍ�YѾٚ�Y)W��"�Df��l"/e6W�K�+�#��7��ݳ}�/�f������
�	gX�4k
�	��L���|77J���	#��ػ'v�ٿ��:�H����.u�DMb#�M���T��-
��h��.�|�H���~	߸l�d=���{�MMxS�T�<���Q��7�E4+��X�H���BvS�'{˜��6n��*?P��M4Ƒ��	�)�ˏ�"<�)�;��͐�I�cy��O�D5�Y�l��e��|�3b��o��S_� �T�ކ���o��T�,�	��b�l���Ϛ�2��~��eX�0X�}f�
��]����i�y�H�S�w�d��Ƌ���
R��4\k�f�5�}�X�=��%y��Ѳ�v��4N�lR�o��8Qφ���!~=�g_>�����K�؍�������4?&�OD�z&f�Bh��:�z&��7N����vo��"�f�5�M�F��hl�)>D�6]��L�E^ͬh�&*����1��L�6���o����
c��٬lG��؊����o5�X���Vn~�^:�5�T'��Sb��6CE�f�F���?������V=.�/~����v��k��پňQ�|:5�G��䨣���ХDz�ƻ#5Oxh�SYbƆ�Y�ՈQM�	�'����4.'�}����f��2�F�G������a�/���x�^ň��Q�,Z�D��jbi���bE)
�^���!F�?%'�빳xػ��N拄�b��٣�I�!2�L��	�JV/$E!�}��tOxKgQ>"�D٪>��0��f��;!^}���R!��^˚$�E��b�؞��w\h�l^�vLB���O��Z-<c�6l�P�)q��	�y���sQ;�E�R�!G��&�k��CHl|M��sY�����7�,k��|�V?E��MLQxD�l�6�,Q�OB��E����6rHi���#6h���f��F�4h��&[�4l�q
\2�DOChP���׳���q^w�-��d�k}��П�,*z!x�3F��D6l�Ӊ�o�:����g�~H��� ���Y��Yo�ex�t���!/�7٭�hp�Q�	hIDC����?��{�5�}�㧒8Vt�� ƻh�Q~8���	�]���3�D��4B�<$Ȇ���:*f�'��W��h��C�4!
���Y�"�*\��.�H�iѣ���xV������b�����k���ռk�ؗ�oD/�.(l���=��񐘸r�	(*�|b�"��(SXr��^�j����o	x'�M\$�L�˂<�y�8�5���1H�^)���Ry�����t���ߡ�V:{�MA#���~qr�ۘ�^Ğ��?-cDXE���{y�Q�Qyc�Y�*}a"l���w6����)��Sؚ�6]3S�X��<���[&fU��.�T{H�q��+&/���D�!|�HRrH���\W��4z�O����\�m%�\Z^Oc�
�X�Rbe�!nl�v�8��ȱ��R.�>O:Ɗ/F�������ѱ�$B�١x􆊑x�#Ц(�-��W�q�5X��&$C��dpm����x-폖�ix�r��#wT���/ecL�	4�:�ߑ"���+/��,Mσ�u����E�J3X٭yƊ%�n
�!�I���}���D!��X\FֱY��zEBZ�6%��-�=�"GGɏ�6>\������/c�HOK��~UU��"{*�h�D��N	?'�zd��\/gb�'�\�b
X;H�հ�C��J쬎���4}��"���oG���3��T��_B'��x�z)��F��L��/�)I�!�塶%䇱#����҃h]4�?��$�}ḉJ�{�B��z�U�x�a6��n	l�̢.��c6C�V7���ؗ�-��|�
m�ߒx�m
�{�{��U��{�q.=�*7�&�t����Η����hM�q���+ؽc�W�Cx�4��tf�!�w7�SX��{#�J�7�
��:|�:Q������b7ڻ��=�3D�&_"��	�7�^
�%�y"	񡱉�(6��l��1{�LhП-�З�R8�$�D�OC>��-�46�.>
���؈>\h���|�I�b~
(/G�4T/eu�E񏣒&���#�iq��hP�1��ۣ��>��I��q�6�(�����b�}
��?(^��8*�9q��lwg�����y����Kd߳�����$��h���g�eAz��ofź7���vOcj
)r��h�*"�|b4Q!��M�Kb��C�A2	�c�+и�,xIg�鸎~V�|��ϫ��G����_���Dj߄��&�ˢ�C�1���%�Ƚ#��X����␼�=<x�.[�S���V6�';�+��B��v1��Єh�!�!�Q�G�D7���
l};:�kgX��6p��ȑ������Qb�y��{�>�ϐ����?L�p\J�=
9tr�i��o�b�h�H�/U^���l�u�b����8��&�FN1T\W��ˌ_4cy���揳e��o�ѳ��^���{#�嚘y�(�]	-
�WD5��N?����fN��VB��#�o��c��9;ף��c��7Ѥ��'�
	q\�|���Ɨ��67��(.\����u��Iz"��M��||��ü_�]�x�N���U���66�G)��*&7����LJZXi��^K��R�r�z��q\f`�Ɏ�J��*sⶴA�|��s��g��_g���_[��0�8��k��l�A���y;6u=�R���b�Fţ�8��*)|
l┆����ג3x��Y��
m	���/˞�K�N_���Ĝ��n>N<�l\8�wE��8�U#z�c�����˭l_#X����%�x�ƽ�c�t|���C�&Z�OC�5�qK��؅J����:^�hc�솎)�	y8����O~{�P�������=)4+���|�F��ۨc�x��o
#���3*TQ�\�����h�|���>
l�#/���&4_������+�B��,!B�!B�!B�!|�c��1�c�1�ck�1�c��c�]c�b
,61��hd45�dž���!(B����$/���B��[������v.���m��C�]�
��.��>�ߢ��
|Occ�c���Oῒ�������b|���ȿ��]����Ɇ����7��\��'�~�\B|������T�M�s�);'u��lw���*����b\k��G�cd���k��4x7����b��;k��(���4.h�C_,�Ws3q��#y��5��c~C�o3��_����t/v��{5���w\kbJ��
F�vLB��3;:�C�?BZǼ׊N��|w�'�?����l��o)�_�]��{g�bdzT��f���B�L�d�͗�Y�����,6�'s搜�5��IX6�r\k�{��~�Q�"�R2�kyS��'�;�����|%O8\��%�?CcXm�ذ��^ݝ#dy�pp_^�(����u��ur�.��s�8�ӊ&)��/���hpx�������>N#�ؒ��_��q\[^��s
����6� ދ����HF�Ci�;����ٺD]ٲ���R1�Ǒr�>�9�ӮΕ�tq=/�e#���KߣX�lS�ŕ��]P�gy�7���Z�Mz+s��`�����ٸ����t
qM�*����~
�~W��Ʒ�ѩ�H��+�I�^�q�9%�O�ޑ�������
Ⱦ+������/&.���"+ƻ�7�Lls��C8���.=�J���o:�E�B~|y��9�7�	rtP^�cXӤ�=	=
␫�%ŷ�m�y��oD*�5�~K��bmKd^NO�G��㽷��+!�v̸L>N!��
�\:�ck4��BbB(ߌ3�Fq\t���?���Hj��o�$q�l�(�U�x�dX|�'�~���P�qY
t�R��-���r?bGѬ&�'/�O�Yʥ������/���.z"�G�G/D*]�q��qM�'���r�Dt������kc+����h|��d��K����y���bQ��(����egIY1W�G;���q���ѭ�BEƍ4����ғ�f����/C)�=������V/]��Rl�o
�z��Nj�\���W�D����.ml|��?��WNW+�5���y6^���Р��&ٲ�dpo�ڣ��4�%��d����=���TxLwC�2"��>N�!p�o�,�f�������LSe��b�!ɿ1�z:_�ɶr#��D�>�h��ez��h����Vum	y���t�C��HM�K
3X��B��:��*6FR���OdF�a7D� �qMcs-X��6Fk>�h��B�)��D�_�B�!�^͗�2>��$��$���gNZ��'���q�����"���+O�
��}�c�cX�*�~ƒ�J)NJ����"�n�7QH?$����d�(�a
���(W��!�x~1�TiBx��x���L�chk���;i
o'���$%�L�i1484��V�c+���U��I�#��Ʊ�6O{e��%�A�u+��\Bi����5����Q1�K�!7Dl����d��{7�?��&��0�Ka3_�F�^�f��Ȍ�S�RZ׬QȆ؈�3���u#���z ����x��4{E���ٽ�6(DQ�'S�΍	*���6�-y8�[��I��x9��ގ�����-��~F�O�L����4Q����S���x��
x��\��&���̄Xkg�P�H�5����dZ44�{f�/�V˼l��#�cM~��ԍh�>�"�>����Z"+�Yf�M
�D%��x<��bH��kGHۣl�~��=�'��'��
y�Tr|��i/S��N�KŢ�z�q^��F͛=1Q���k���4T�d�����5
X�
<yG���!����回���ӳ�H�>ļ#�)
gX���x-&�"��ஊ	�NLDS����W���#yc�]�x�����Zu~�HV7�iï��
C�ײ�[O�7F֟�^)���4rn%��,�y�B^<��ȸq�6�<
��f�4F&]b�jz?ivVN��TB"6TR�/�k����W�[�M!��:u*��7P��A
���}
��G�G��-=���Vk"<����˲$\h�#��#�""������s��{/�VlѸ/��)ӱ���;}��t�;=�,��*rO�:�5v7ů�ml|�A]j1�⫬��\��r�^1\NK	q�6Fu(>*
���ňƑF��.Z��)1��hI_g�X��t�����a���˗�]\���X�&�d5�!8
��~�;?fٱ�q�
"�V7ۺ;��M�d&�Q0�
��h�BJ�֑��-	?�8�r�&�	��R��C���7_�Qrn"(��O�?�j�,^���)(h��ȉŤ)��C�.\�qIC�&�:WC$4]!��6EF�ˢ!�x"CeeD�G�eF��Fz'"Q.W�Th�V/e�:x�>���?�j�6hI7�
��X<h�n��1!����}�7�,�yY����#�)45�$�"�����>KC\#��.�zG�'�k�zMc�+��?GKk������
�4V$��ur�����6]�'��k�?�h��ÿ�9�5�h�9G�hlDf��	�R3�*.&?&�CH�E��+�IaQ"���-*&}�ߣl�4Dob/!�"�}�1s�h�n˝R�bJ/,�h�bU��(�gW��"�ա�&h�?�\wF�{��\W��:|y:v^Y���B��
�h�`����6�����u#F���1��D6l��D5��}���rOѣ{��6��F�ʅ�*HVt�Cc壥�dXxm��������B"��l��:V�SeC�#�%�pp��a�U
B#Цd4h��S��T��D�T)q��5N�:}�C~
k~q�O��-Ǽl��")w��A&l�e+��<�"��'���\�?&{(�li!�Hl��e��B��⡭�b���M����͚CF�]4Doc���r��y�4~4�l��ѣXؒ/�Ѳ�<�*"c��҂hWf�o٨V�ɚH|J�h�+�X��m6^E5�x�4&�����#<��~$.�A>G*=v%YM�*W����6{�F�Hky��4WN�DX�r���5qHʍvQ��6j>��FƑ�3f���E
��߱ub���
	,V��d�ѣ�b��H�de�9Y�6l���*hI4~/�l�J��}�
�D�B��(����#Po�#�48���6h����d/�j!M	�Tѽ�}�7�k*)1���o�:M�"!��cF�����Ӧ�W
�EEX����X_�+6l��+6l�Kg����+5HHyf�o:."ct񋈍#d�e=�DX����؆��	�}
��a#f���d�1�=c�I��ec# ��^��cxO}�����7۲�cE)
⭚'#d4jg�5��6{4^����F�WEL���Ɗ�5䬊����l�=�^Mس6;�gK���t��w��B�<�td7�k�ѳd��<���l�*�ѭ
��)�#l����Хet�ٲcxM���F��<�F���6<�oe'�f�,숈��+(�Mf#Pia�lл���Wf����2��5�X�!UF��Y�񻍔l�GJd�4�u���J�|���B���ѦTx7�W��οf��G�j&6)�?���7����5��+4Sp�i�6E�x���7~��F�h�΍X���h��ر��Xm��=
cF�6TDB�DY�����L֍���/eF�H�E^#)M�։ƛf�
�!�c7�_��.v\;�\4^H�+�}�*��Hk�4�f�7��ō�b���D>��H)��-�3Sȏ]�DP��{5�Oʨ��:yCt���5ۣ�V6L���y�h�"����6h�{|�#�tS���Ll�n�V7�␥�5���k&w��)1H���o!J.%E=�.}���
���mb�f��d�~8�5���ldCJ�6Cf��D��E����yЙV4o.��
�����!Vw
����gyl�7��6\F~7�x��UѺk)�l�ʱ�Y�n6Rx5��F���2h��4"��)tE�&�:����W4��4�)
��l����xt����۳X��bf=�6l�N���/,\U�R3y��4h�
b<Q#��Ϣ/�hy�7x�I�9SX�^0��?#ubf��d)�|0��7��&6Tk0�sq�F͗��^9��f�u�����<l���6đH��^&�6^8�yIҗ�"�4h��B�2�*kƏ��ߏ�F$�bl�"L�g��h�����+��5����q;5��1��vl���R��46k4�b��
�#DE7K�o�DX�
�XL�3��r�dF���8~8��šC���#5����N�E��Ma�_&�
 �n��tW�x�]�������S6�T~F�Mg�j',"bce�4T$�
b"�F�
�T��x4h���b6Nɍ7;�5�R|1�)�ۈ�"6k��.vl�6Uة�Fk7��b�N%!Q
�
a݉���Ҋ��&zp��k�<k�F�Q�eƻov�n7��~
��<o�Hl�]��?"�(o:#�ѳX���
�"�D�Q��b�4XT1��5
~S.����즋��d�ٲ|s�u�>
5��SX���k4�
b3e}�)��t���
�<Tk!Q!�f�\FB!7u	<B"�y�l��
��4xDx�#�!{�5�wO�?���gf����bαwټSe"��);�¢|H�oL���2<Rh��q��k�e*��W�~	���B�k΍�cF�
�dd7ٳw0�Ѭ#x���
�H�c�VtVFSP���0�4S�T�t4�}�Z���O���ōcx��e!V5��5�qM�ED7�l�naM�~F�}ᢢ<l�mX���themes/images/luca-bravo-198062-unsplash.jpg000064400000145010151213255700014437 0ustar00���JFIF��C
	
		
$ &%# #"(-90(*6+"#2D26;=@@@&0FKE>J9?@=��C
=)#)==================================================���8���������xx���&/�@	�@xz��^�Px�� >sS�2�@�`�<@���<����w��J��G�
�bo?M�]�k�
�@��������(w�R�s�1l@��2�>�#�MKyj(�gW��@�:<@9<����Wx��c�X���̲��IʨO+�4��P�k=*i�Ψ(��=<=9=
��e�ԣ_Q���d�gQ��z�b�x\P#��M�u@q]�(P��	q5)��aܠq^��&�o��~f7���{��E,�ؔͬ�`
<=xzxxC�<%�Ԍ�<�:9*5a�-$go:5>Vߣ��}R��I��Ƭ�F�ZnK,@����'�������������t���u�m�g��|^��^�r��f�֙r4�o	�o��P@P<!G������������m�@`&v��R���F_��f㮩M3w�N/cX��zE����QA_C��@<���������jA2ME��|dŝ�zZzig94l�ZF�zH>_\��u��Άw�ޑ��Ä����9^�B�xxz��&��O,���=�3-MkzZ����S
�%�[��̷.r˲�ދW��o�81;w�<�@eV��zr<�uF�w̹ʹ���8ֵ�k_��,D�P�P�3�!Kr�j�w�F~f�==��Zַw5\�zγnP��x<@�<��JϪƉ���}smڨ+��˳�Vj��kZL����yZ���k�|ιй���.ջ1�搞Y�(
����=<������H$���#���-�J�z���]fd,Mx���ʘ�Zo&��I+fT�u&��Fl����F�l�B�=9��A�<�)(x�5:���ʳ	��R�OEM��\p��l�hM[_f)%�f2m�t*��i���/k���M1N�ӭ�@@P�'��O@������n.��fy��E��)&CI�k[ݵ��'-)���\%�m��c�Ӛ�j��ң(�Y�խx* 'ЀNA�(x�}K�D��\�Ռ��V+Q�v(�ٚ��yj�v9�i�f�U�)1�d��t�-�c��6u��ɭ�82�R� (��W��Կl{fB[ƻ��E�q\璒}~w�E�l��L⽚�P[�&�i��E�K�]3&t�k�۫��	��v�@x
���ڝI�y�-��ξowF,�zt�Y��"�Z�NE�fV��ť��5*fp�,:�
x�y�L��vmҊ<i�v�<	����%��b	+��N�S��ٕbg%����.���Y.c��0�ӭL��P7��KQɘ�6�:�swM{d�P�z<�^����Жv�Jcf��g�Θ�}L�D��kZ$)���Ι��'�h5�s�M�%�tn�̕#2׭4S�(&�$P�@���9g1,.����;Y��Z-kP���[k�RV�*�?I5��>�˽�H��r�}-&<���n�mK$
)�������+����z}vz�K�z��r����~�b,�։4��`1��.��L굀�#6�MKqs�M"��*Y:�E���md��,H�=���x�������5|�����Ce�0�j[t*�e��	�MKn��ń��rK�Z��1ur��W�)����jT��@z����X֙����w;��&�ׇ	�Qnr�jKh��5ږ�v2�<չu���j'+�V�{�V�����%�@@���x>X�[�����inƤ�1�vk�ul[�'ΧV�ko۫���lQ[�jּ�,���Rےq%���D���.��'��+��w�����gMBF�F�F|��^�܊,�2�[6ݷc,F)�U�-h�K��:ޕs��",5~�k���f����<	�<�
�|�7s�[O�f����W!��%��tm�ړ�ٜ���ʹm�Ϝft�����_=s�$�ޡ�I���hz�y[oX�/�Px����U��.��vmf�|�Z�n���gĶ���^�͵��Jk=�����Z�S�Rg4�ވb����/�(xz�xx8�\�뉢k\9���M��z���̲Գ��Wl�3t�R���#!*K>��Y,P]&�X�Y��4%���(���y@�x|�4����u�͌�U�U�xGn����I��g��m�Ip��-�m��%��qm��Һӈ�,��Z��Z.d�����(8����z�.�(̨��'"�W�ye1}k,U�l���K��gX�Z��dٹLS/7�c�P�o\�ff���P�� ��ϱ\��Vb��I����i�R��o��h雍e�h��RH�(�V��9φjܶ�u���8�ޝg��[�鳜�[�/�(zzx���)>Y��b���mi^I�8,��Y-������f�yZK��c�K�]�c>f�j]hiG9�)�}�M2��Ky�;1Y�oH�����:<�P|��BKKKZ�&+�h��|�Rjz�R�Ѝ��"�����&vsi�,͍j��9��5t5ig5R���Z�U�F]MR��-�پ@��tp^���U/.F��!6e$�]v�]��V�O9�y����(��~�$�\i��gտ\%y:�%�kN��qR���Z�E�5�޹F�&�M|����<<+1I7�3�t���(�շ������M.�iK���N�/[��9q6��PF�c�L��i��4��[�ֱ�yP�J�Ռ6ekTڗ���
��<=<�P�X�>�o��jj�ǕO3ut֩�lFމޛ�"��%]'[�m��|�OuKq.w5�}kF�L�L�ݍkTʼ��I�T�f�8��ԾO(�=��x<�NJ�d�+�eԷ��8��(&4�zgzn�GX�M մ[�s*��3J٭��Q�C5"}kN�&IO6e�y��7�e�
֙^f�Z%�@<8^�ҙn ���������j��qZ�B��Z_%ɸ���N��|��rs�۫5��ϳ�S;����ʼd3Qg�M`�s���j.y��]�,�֥VgA�������vpzzxJvx�0����d��X�r�n+j�֕{�*$��:��Y�#1���-��RVJ�6���d�S[�Z��9������Mj33ZE�@�\��$�$D�Ggd�
�8��>kRx�W��ˊ���d�։p�3})���O%8���ۥH�2��On�{�L�E��j�.yr�ޑ����2kPӚ ��H�J�)�	1	:�Z�<#�����ɣ.�f&&sf��v���YRj�2�yZ5W˨���U�UZ�ڭ�L�*��kV�g,��˽1���Չ����<#�������2R�	��#�Y��ԉm�����ވe��<��,�Z�Z�kJ�ؔ
�u.��y�V+՛tj��h�5�Z���>k��5��Z鮼�՘
�����&��"!:88�jYy�ˠ <)�#m�n�wn�T�5��७]��d���{��JE��TG��߬�hRJ�m��3�U�z֩�te��՟3@Ժ��4i�!9�/��<"A	4��	�Y��"�t�7ʲ^=�
��z�5u�WG,)�3"�Ժ�%�\+IvڑB���)�_2�4�n�W��tCVm�U���]m���y���ݬ���n�J�-V�,��"�(�*A��"#��'��1�!l�2�	�����C��ty�Ĝ/�V�#�%œ��]|�Q�+F���ME&<6�m���,�GY[�O9�+-�]C!�2]���Jg*5��$���Y�I�RĠ
#J��O
�"�JN�����{\�K5H��Ox(|�Ƅ���)�:���9^�D�J�o��N��I�.D��u�mz�YT��q�h�X���^��2��ڻ�U&r2�����a�΍R�
��txxVTzud�t�i^%:9�+�ٴ��;@���%
�D�'µ�-I.%�-i�Wyn�X����׉�L���n�k_�)I����f�>�X���c1�&��l��.f�x����픍sNP<#<	�	!��	䣫"^#�UH����S��:]"�x�C��i�jr��Y�ϳ�[ȓ"ȗRѽ�eŊ�Y-��A��c���]4��Җg}-�Z��kWV��2����������8�z_�D�]Id;��X��'�3��ӒGvrW����v�YRTqޞ��E<��S���um��┛f�����.��
l�0��q���j�")n��Ӭ2�StZ[�[<����X��l�v�	0��n��.{�����Ѷ�Z.J��Fvzx��ʳ�Ҿj��ګ��wUΣ��.��/uy,&��x���g��'<����4t�t��Q�Jǚ\,U���:)SwH�Y��2�֖�T��",��2�vg�kv�03��n���ݪ\[Ǧ���懄Q�Ò�t+�	y�����HG\K5�K՜ǫL���+��%=4�k+Vj��3&�f��q,aL�\�c��_�T)�WJ��e�H����Yؕ��n�c1��ηd�0�n�Q���*%�� 5�H���+.�֧@�y/�vFE�ݝ�h�Y��͗S��I�OM"�����Ot�$�8m��%��n.j˖\���Z��D���R��tȲ�+�H�����s�zX�V������윦4�ۻ��]�Ͷ��
rԠH���rz@U͟SӢ)}I+���K"����uPfɨ#���%�OI��B�_)s_WL���H�|�<�M[ŋd�$�.9B�֍s��z���QD)L���}��Wˍ,۩�6q����l�1�l�v����Ҵxh�������׸��O
yu^�g�YzN뢶oU%�3d�M ������#��9�,�:��q�-]Z�>�3��0���K�&��i)GW�N���SfZKn�s�+%ʍY��$��N��cLg婭�<L.�~�k??��Փ*4�:'[�4�=989���]A�T�Qݝ� wR��%����%�Uu�:�<ޫ��H�5� �������[�Vc9(����Z�3�[�s�SY��iב[�*Tөu4��Ő�sCK�2֒�ݞ��iΊ�]�%L|��������ޙ󱩥�Y-���s�g�8�ƶzdtpV�ӻ; ���$! şIl�*$�3���3z�$����x03���U�WcW�6�&k�mkV�49��p�;oM*���/2Vөt��3Z\8�d�h�l+�q�5k�,�<�kw	S=[��_+�{wzU�yiۢQ4�(ח����Ri|xpg��ӫ==)Njݒ�Kݒsd�R#�d���Y,��9�kS�ct���y�N��,�ߎq=*�%2-]E�.3�[�1��zh�w+��&~T�[��ʬc%Z��t�%���솾����,&>^-�5l����n�Y����y�U�^YjH���X8*f�w�tMoQ흕���V^�J��KgYԷ>T1-py*�s}��F�J�P���[�=�r���)U����ӷ����N1�����ˌ�3��t����X�	V٫I;� ̱���dg�e�wd�cL�5Md�	����1cRۅ�A'��K$'��O��9��L�Nr�ެ��/vHtR����+�TUl��+�&���f���|�#����,TX��e��2�ۃJ�#��ŊE]'-髉��9\�V�ZҞ'��U�M�\�+CvH��+�Z����ºikZ��x��kS�bkn�.�vFr��|@!3�onzzzP˻{��Ҭ��u�Z"��8�J���vw�h�꣎�,�9�jٮ��'�3KWX����MZ�_.��Y/�^�F3L�9X4�X�y�{�Q�[r&ү9d�V�ZҲ�o��G�,���^1P���/�>%cKWH����f�����Yq�BkK�Ju�xsP���H�Y��ZYJ�q,�v
Q-J3d�,�	dԂ<%�r�W�:��΍Ӱx����n�vi�'ҵ�39�^[���4`�ms��I���hD%(u�I��r��5iiWs!�zY�SO��+z��c�5OW@Ø�l�qq��[!.���cP,œ��H��<^O*H�
���SS�Һř&�������
���E9VLvV��H�%��N$����|N����6������+864�a�-”`3Gv�Y���6,�&iOMZ���+W�^���;<Įy�~�SOJ���y���ec�5�Mz��i�jmx˘�l۬�/��b�I��,vr]./���Td���垞��y\e�gg��#��:+�ݒ��I]�"Z����H��K!Ƥyw���{^̓���#�<�m=KX�s|�A)n�D�ke�S)Um5IY�)�-*�WV���;-�D=,���0�(a�$jV^qZ$��5��5��Œ�&�[�|V_E��(��1��0�)O�>жI/��u/6
��@�#����ԇdDw��e3���# �*R)y�)d���W˺/�s��8���@��D|6�i�$_̂^S��uuI+�/K�M4����R��S%iY��YÒ���Y�]2��*��D��fc�u�
z��hMlmd���t��>O-�&)�Yx�\+O�>��[�Ô�<<92����=H��:)����Z�+K=�W�Id�C�,�k�*��I�Z$=����3{����<99<<gg���nZ��r�,+<g�u��h��b�O�ZBjTQ����\օM�ȈH�����qS.�%4�/8�]�Z�|�5)~��`�Z�օ|��vD���"�P�g����{^�xE/VzvC��gDD1!%tW9��Ҏl�%��e�$��ٲ��A	dԭ�Y�jG�ޤ`�l�F�!�M�F[5����WL�S<�;��(b�SA�VcS,�"��g,���i
-�J�y�dЬ��ww5kٍ͝.�D���9��j2r�I��@���P�2��M��1�+�"SӢã���w]���c������Eix$�B�$�B�oU*Dq,���$�oz�e�G^��|���rzxDW:>'YնC�of�����Q5����|��0��կb�UɊ�%i�|��[A�����ӕr�sN�s���)�Y�|����\g�7�"	)U��>q.�ҙp�X')�LCD�8�N��#��W�룢"3�C��C���tuR,w�!�^%�e�9��d���$�%��:��Ob:��.��xpzx
g�k;��g�sՉy3R����U��U2(�����d�1�\V�S̭��FO��J�\�X�SF���!w%k�g9B[���\gw{E�3KWH��n�c��橘]>t�4I�#��;��������WG�h���+�e6����d�J짛.��qIJ���d<ԆY,�K�|���,��xT:=�u��a��9k�ϲ�g��Y�_�F]�X�"��1��֚�Y���6��:q��R-z�K%�)�uU��Ҫ9�h��٬�JyZ�{�-�3�~�Z����{Y2��b�X�)�Ί���E�H"J��$��ʙK]�dDq�vtW�%vxgD���V.����Z�6d�J�t�nV͖�r�9�Q
�����2���\�]M��>��됥�$�=�ٶ�63t%�$��-������9�����ee�i�;Y�:`�X*��Ѭ��(�[�ج�ʹI�,km�|�kZ�ٷ���Ӣ8�RJ�-��Ms�aF�Z,��ǧU!�I]�#���𭔵%tQ5tFA�%��$Q=tV͒�*�z��z{\��''��*�hLJ�'��􄀐�MM�O�g��Ƙ���ٵ�z<X�>{K��ص�1��X��V�R!��M�|ܕ#��/�nq�q��k�ʙI�ٱ���Ļ�ˬ|�{z^1Re�0��G��2�v>|ӭ"H��+Gu��X�茊%�Ί��ȝ�%X��,�jTUx�� ��H�VJ��dy�iv�W'�ձ������L=�5���b�$X�����>�:����ZD�]�@��=���V"�m�"��M�.IJ�[L_��s�E���Ŗ�{�V�bc��kL���S`�Ft�ӬX��2���]0#N�c���u�!��R$���"{�J�ω	jJ���-�U\�,������*,�j�^�#�B3���";;4�' ����H
��>�viK��n]0k�tم�M�tf���+R$��Ř��
�ML��fi�����L��6��X��D�r��W2�n�[���VҬ�Ȫ庵���՚��J���x��5m�!;��b�w]�bJ�숎$��L��HwUNe����e��_Rj�"�M=H3d8Ԏ$���=_,����h3�3�B"s�#/Y�f���ED��0�rE}>u�Ό��
�t։5>���Q14�&�|���y���뚡N;�r唳��ZW2���ji��R[��ڇ�i�WR5e-���$�f��u`�V;;:";==!�+���M]��f��e��
y�Ԗy�vvW�BK*GkՕ�Z�
��|�����^� r�A5V����>����z|�e��[���`�)�f��鹛^3��4jSW(J�G��ΐswk�,죌�[��Vĩ�On��1��n�VIc
.���Kn�|�"����r�JG%��dն�s�*��c��쌎$��G)�K%�$��E��k:+K-��薠�,��r�OsZ�K�Ǵ�z[;;$�zHW$:2�8���H��Ҋl��&�-���|唫X�j�	f�Mj�e��8�ꊴ�
T�4��Pc5�m[�PfU�&�Ѩ�1stu�K��8lt��y�:ŒU�R,��L��H�ɗF*Gu�!\���WD�H��hK-H��T�Z^	l��-���-�GͩZ�̽G�r{\�U�=O���#;:�bS+y�˞���H
J�}5�qT�檽j�2�TIe�3tծ�K��Ψ�D�Vy��U�OW*�1
�^�j�,�q��CD�=�gZ�j��rim�k�&�����
#(�i����ֶ���wS��))V:;�ȎNΏ
����S�t�*�ͩ)��G$R�^$2�P�'Zq���q]�����֜������wW1���}�>�Y�%�$�m��GM9vq|!Jq�
:��q|�u�ZŚ�ʩJ3k��,�Q�jz�Qc5���֞�aW*����&W6�]z��I�&4ϛ�����>rfk��.U�P.�$��5�T�J
dǤ�l�ӢB�M]�U<:Y,����%��9%p��5zW͘i_2kc�8���:�8����zJXӌ�=:8;8$#37.�8��Rb�1������QO#�6�ҫ�Mc8ɪU�V
��#>���"Â�uVj�S�a!�F��aR*6�&&$�����7��V��$v�k$�kv�DŽ��,��||oՂr�#9:& <$$+�f�]'5K]��ȗOj�,�w�ni-�J��[�D��WQŝG5����-MP�<=�#����ܟ6�o	~X�(��@�[x]�5,���nO���{6H�R���Z�9s*�Ygi�iT�k,ҁ�Y��[�q�٣��T�Z��N�/�7�Y�WJ<�"}/�3�-�Ь(����������p�@Z4���E����)P���LvvQ�[{Ij�M]�ĵ!S6M$Hr[-V�ՓR�]��ybU�Wg�D�����ft�\�e�,Fy��f�Z,�V,��UC�f]Nqx�J�[NMs��+,������RF|g�U���f(�N�Ӯ��{X/V0Օ�H�q���	>U5���^��4*R��N_>G-�%-��!)pIRħU	�l�%��	I
15vE���dq̳U{<�K :_�����g�IN��p{��;���7��<3Ϝ�M�Z���O5I�c'K�{SG�sy14��&���)a�T���>og�U����|y]]i$�G
%�13�ڞ۩ܸX�}/F���s���U~R/UӲ�Y4�8��W�e�Ҫ��UD�蜩WGe8��%(�2��+D�!P��j��Q����uQ��F��!��{R����8��`zg�Iͥ�s\f�&�V�;t�3��kD��
���P14�Բ�y�����f��H��U����i�ZI&�.L�Cn�=11��r�E���56�Գ���Q��?��%5��ЫeBb��ki`�gĵ�!Z'�j����WeH,�Jgĵ)M]%��
��׺�se�3�d�)dH���=Ggg@��溅rP�>z�9(aKSJ5�]�S��]3�&��Z���Ŕ�*F��Ա,�FQ��
=O2�-8�hպ��Ny���֕OTy3��tj鋌R���Ɲ|w;��f���u�Z�Uӓf�2ЩM$�Fg�M"��wV�Q�HNQ�k�b�M]W�RY���pJvS��B�Ȓ��z$�*bʜ��d'G'r�`������Z�����R)t�k�\�̳��*��Y���kٜq�N�������N14�4�/f��8��V��e&niU$��Zҷ<�H�dkJ�+�͞]��-M�q���֤5�V]$��~~M�&�|��Y0M�X��_)�Ɓ�NtNP,��D�1;&(ħu�R�ɊQ�IQG15Dy�&�h�^���"����O2���I��E#�3�E���g������FkM�3MUēJ�ƒ��U��:O;��|ʩK*�V�Y��QI-�V���Q֭�Ѳ��„X۳V��22�޺�M0��j�ͥ�_��k}���<�[O��x�E�,_1���-���U#��s<�율HvrCԵB;%8 '<��MJ�mH#�eҜKg�vE,�BI�9vsWG�d���{��I	!1AQaq"23Rbr����#4B $@Ps�05c�C`�%S����D���?h����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀVp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV���V����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀV����8a�+Xp
ÀVo����5��
)�^7���<q��{�K�!�����?�V�ɫ~ZYy5Z.�Zx�GsIq$���,sTD85arI����`n����¦�����[u5�^7|�n09��b��A/�"��
���?e�bF�����ew�?f����,M�8�~��p(��[�[�X��(&�%2P�=_�r���d
ٞƝ����J�t���f�;�߳�����f��z�ˇ��
�4mH�nYs{ʍ�ckx�&�X��������248P���9�)��y]���y��+6�h��D/_R��q�H�}~�X��3����"o�˼���U�۩�^�M#��kcb�66�c@W�r�`Jn�<�›j�&���n�OMXh�{9f9Y!!����V��7P�gg�#Ў�g��5�:[�C���qh�`��)7�bF���V������
��99��O�ҍ��|�1��2�p<@RJI$�ٔ���AP��Q�WC��u�k,]�֞L��\s�����©I4��\�?�](���n�Vs�L�٬���i′��.S�4�Ҷ)��@
*��UV��ڃ�,3���m��\��}چB�g��T�4xG��F%u����n�'vxE�|!�5�Q6б�<�+�u4���[h���bZ#��b����*���i�Յ�)��?`�v?ީ�����0�(!���ll�{������96�yj*;_!��/�����N#Y^�ē��CA�T9�1:M�s�K#���j�P՗H.,���$���q�j����X�X�ro�a�7��
K
��	�
�lۅOQLa��{�-�,Rp�������N/B/{\���w,#�1��=��v����(�(�#��S;-$��
cA`ͽt���%�u��GYh�;Nݫu���mrШ��r��T0V��L���SM1'�^���T+1**�8��#�(��3�<d������K��v*���7�
sh"j� �88�#p�jҨ1����v�#���>��dd3bq=�����bv���XP�r�Y�X�cQ���,�,m.��1�c8g�Xb��� mLcG���eeo��a�t怱���.2OL�80��~���&Ir�x��(>���(e���F�0�����V��ױ��|��~�0�����MC���jI�HW�I��Xg��~���x�p6@����6��E5\�AX��w�B�cU��0<]T?�P���|�@�7�g�Z�Ҫ+e��Nن60�qe���H;A�y�;B�xk�]ʂW�����Έ<7s��֦��J�A���R;K*�)�<\}�!(�wC�	c`��#�
cE�DX4sy^������Qv<d?Ⱥ��[�f&�ܘ�.D���Xr�ޛ�UtR���f��av�'�G4�1�d�6kƊFT���*M�6�v����F.n�z*�z�f�Ӻ{��,�L([���~jH�+m,mx������^��Y4഍��T	�
"�g̪��pD�2j��1f��9�HG��z��W��O	mk#{x8j�k$L����7)�k�+m�i�avƩ��L�l��Z6�
M�tne��A�����x�U��l����ݭuK�eD�ǩ>����X~�C��ʃ�Ean�C�8�4yB?�1'Y�v[�����XS;<2z���{
���KL.��	���nmLDGK�n*�y*e�W\�C���;T8��G��Pk�,*Ch�x5Sҽ��v2���O��=-��,B��Jdh�rXtZE�\��z�D3��䟬�ꦭ��߇�p����y�\x)$���-}�G��ff�Z�IFi1j��OpF��ss6h��Ed���`}۰��Yi���mS)�Z�]k,�I�/�$*'^I8��D��D��|�u����tPk,^�J��e�e�Q\��ۃl���xS���;8X�E�y1��a��'}���N�) ��P��ս�8�F�
o4y�&�����z�ʘ��ϓOr�.֢�6(�il:�\��=Ֆw�a����%KCQ]R��|OR�S�t�,�����#<��_D��-���rk��k����";�R��R���[����R��~��ei�
�t��VԲ&����������+��b��lMt���`�U&�O|��}A�A��=�����+����S��J*Ir���4����*�(������z�nFS��ư�����Ti+G����H��f��zĪ�L�x�lށRF)���n����M\��_zrM3A
 XS.��
���H�f�wqU52���װ�ܨX�Ŷ'��SM�j���
�WuD]�a؁��H��h�#����UK��
���G�	�5��aͼѻ��֮?j�)`V5C-�@�ˌM���h�*�ii��4eo2����_�G�I�J��#x8����,�����s�S3��.7�|*�_���fщ���W����`�5\���1��5m;}k�R��D���jt��LU����3n��>��@)�%���aq��l�s�݉�5TO��N�$�Gm)yث^�X�ǎW:"�f��ٞv�]��P	Ou��
�2c5��>,�}�,>�����
���۳u�񲦕�T��k�P{%�U���uMq8�]��A��9�ЩG�p�_�m�`�`�
����}����G���Scx}i-���A�).��+��ϱ�ٷO?s�.7h;LN�z�U��\��V;�<J~�<�U��A��y͉p��h�b�-MR�8l��%�)�2�+w�<�7-�$�?�4���;�ᘴ�P5���fZK�:�����@YL]#�$B8�o��]����?@�6�.�^j���:Y���oLs����;:)*X /k��¥vz'��s��a�q���
!�ٙ<�K#�W_�;�����_z�p���6�4�?=?P�u����
���e�H@�0����5�z9X��2�hu4��+���]���w�6�X�6GP;h�z�]�U�G��	{#Ӷ�vv��u_gk諱`�*�n��*�R�N�$��肬�tO{{��omʨC-��d�`�Bau�e�������Ī
Z�j��GT��y��6�N��z����S8^�N������H.�
����q�J���#i��a��{��h$u�4�n0��h��B��8�H���7*�GS�nF�WZ�(�Xv�,7�X���'�RD�"��is��
i�gr@C�6*Z�u�;��0b���$�2{J�ޮ/+ʜ�y7�� �8y���`Vm�;���OE�U����
nr�"���x��oS�4���*�
�ũ�Eu3&n���'
Qc`�[��,�2
���+�ưG.6��JcWUiѠ;D:Y�#���r�:!E@^����bd:�v�ּ���@�L�t
�Ф�d��h��D�J�zO�m�?�ػfׇ�E#da:8AG�P��;�95bO�A?��2�1�B�.U
�ַ�Sa���2Z�Xtm�i_����zP�\��TMɅD�Q��XI�2qN$w�u��}�QF#e���G�_�QՏ���؂.\�u>�ȩ�-�����y�@\�㹩�?t� ���5�f�m��6,Jq=VFc�Xs;���������-�LY�l
�Z&��
��h��!�B���_)�,ՋN�M��WuX=ޫE��gy�m �������#G�U�l��-���b�%��u#UE�S��1�?k��ŎU���-T�[:2~��Ł��t��J�۰��pS�h�� �ɂ��,R���ɇW,(Z	��b�H��6��e�` �n��Y��4Yb��7ĥ�~�֦N�Rճ��ūd����XL[fu�嫢,��@�9hs74�
keM�x����<���}K�iO=Y{#�23 R5�3�qv�	���ea!�}#c�7�w�ȸ+�b�e%3���T��w\(;���Q<SR>��˙M�/�N7XM'�(��ߩU��H���S��˩j�7�P��V{�j��<�{�.?%�R}ڔ9�ϓR�#bʼnja��#T��0*k�ʒ�
)/Q(����C�S=Ӽ�`�N��7%!���>���EP�&��Tf�_��>ҡ5�j"���tj��R��J��%=�7:,Z�������;�T����b`���w�qPE���Z�_ޫ$����gU�Љ��䰊.�X��-�Q�̽�'�/�cYse'~�6z �����o+�1e<f�`שX-���[#5(spX���ĩ�|J�-s���<Q
{�XM����&(��kxV����~?Z�
P�1b/�6asHX^ʙ�,�����oͧERq
	�\{sC�x��Uf#MR�D�$.�FWm�UP��ᜟ���b����p��ֶ���%���_�߸��[pM����Q�&�J%s�.~�CzX:�J���?�O��O�؃���Ħڒ����	74uN�&m0����լ���a�e%�v���b�ؙ�F�
lG�f�Y���� �Mx���Y�U��)�XG3��qT8dP�38���ױ���	����Iٱ�fS�	�Ɉ��l؀��*���sX���Q�5V����
J6�����LU��p����^�\P�U��^iUFd�k[{�a�QR�����V$��=W��ULװ<�@ZHت.e`ߪ���c}T�]s��j�ߵ~���XH��T�X^���U��6"��R���}��a�i�v�gT�jZ~��*{�p��-������g�&����8cO�F�p��BQ+4�O��S�`<-A�"����үz���7�����u�]�`T"z��]��q�=K�������Z�4wU(��=��S亯}��L�S��1}J�9�"�
=��\�O�p�Ѐ⫝y���bT�ֿ��az�t?UmlB���!��l,�h=�{z�c4��"�/���d��㰧���
xt+!̨w���Og��M�{bkv�*NɛsoAQ�/��ߢ�ґ��G존��]�`,���a Z�0�[��~�)3�0hqؠk�}���z!C@��f(*�e����-'���%�+���!k�˺&���
(��l{��<O��.�Շ���9��C�T�7¨ d�=�;=�
�4b�{^8;Dj�M�q�
����ʓ�WTl65�PX�:3ܨũ"��w�?�C���8#�X���Z��ډw�J�ᤊe��fg�~I�l0��RIDw�����`�S����;G�ֵ��a;d�y���?�T{I�x��EO�V�-�0z�G�2UAѥP�N��ϐ�<����kO�;�����.P�b�����P��{�Ø]�7@� l����F�}�YJ�x�w�qT}�x�Um
��Å��̒���{�bM��suC�wl�~ӛ�����Ǫ���~iOUo��piQ;=[�54��6J�I�o����$���y<
����+
Hz ,�\�'[���>���}?嚢u��}U�ψWb/����&3S#����j\�$��KM�#��:I����G����'పO��|o>@���&{�i�FO�J�fZh�57F����w@��M�X�Wef����D����9��Ur�#�TM�^����<�%U�U5�$�ur���G���Q�iQ�ֵĴ����P"y7v�FfĦq��[ީ�W&Q�f;mU|r�{`��*��R
�Մi��쒰��7�(�bn�7A�U�Ġ������i�l��5���=>*�Idfb���.>A��/�3U��ٌԠ.<�6Xܽ��*��BG Щۖ�Cb�g��3�%.�e�2��u3��[�uI��$l��EV-��7v�(���i�;�T]�85bU=�9A�9B�$��vŰ�R�F�����!?����v�1n6)ͽ��T�T��)�du&�9Ycm�;��ji��Af�PIa�d����'���2`����?�3jȧ�w���4U��>��#$���S�o[|�?�9)�{IHsś�C$f�����~��ϼ*:��5��]�?��g_GDC��S<�X��gK%Ʃ<�--k=(]���h�����OD��>#D�ȝN�ᕒF�89U�_F�8��w�U:���@���*l&������\o�-��#U�
�]h1�oQ�g��N��a�h�+8�^c���iC�TʊC��f����*�B�y��� ]�z��yx�hbj�#�#��!VN��3��Κ�^�
�osh��MQ���*��Oz��C��|ER�O=��Eⓛ���
>K��H�!�����D���A�
�Ҿ�E�o
���Ԃ.ѐ��27�-ު�OUM��;|�qk�r���b,��.�ij�?��g���jߴ�q����a!�|�����)*���;&��ՎR���=��>�n�OU�k���&`.���<-�O�F��:4�Fܔ�UM(���:W;��K��䣋���5Uxe�	�K&x�2���^X�2Wz�lEݗ|1���`���V}���;S������Tpg��n;G�)�b�u��<Zl��
<0���bU]��ZntP��\v��f��X�}��i��ast���iaUN�;���*�(�J`�x0*- (�5욡�V�Or�5���g�TmJ��3�h�UA�)�i��T?�>ϔ0�����v�|�u���w�L�T�Y�%�3�G�bo~������լ��B~�66F9�h��,Z���(��ܨ �'hᢨ�����f*�Y�oR�z���?r��9ݸ�TZ�b��%m���X
,7���ѿ� |��b��A���t���h��3�*(�)�{��H��s�*���(q>N�\U<FiK��L-jy�J��2�]ʀwS
�a;3,N�$N` ��ՈiE/�P�g��E�9�����h'�Wjȇ[�U0���U�S����z�ڽ���>�$ӈ��u�[�Z�Ϯ�����÷œ�,r�4������T\�W�RkZy5Sw��M����[�X��H���1�qѪg�Ϥ�r�i���E������O3�ˈ
wW�p�D/]����V��tTZ�z�j;23�w%��̗�ʼnX�񕪫Y#�nPV'Pi�k�	�ڈ�s�ʃ���CR���/q�e9���shʦ����~%P1�w��4���Ss��E��R�S3�G�Qӎ���S�I�l�����>a����
�za��,T��MUu��B�$ ~�}�EZ��l��X��
��?��A�ǁVT
x)�4G5D�zF�Np�lp��x��+ަbw�4f������Fj�99c5Wp��`��O����b����Å�y�\P����R��?���U
2do5l,ԋ��CQ9yPSX�^l��Xo5;}{�pR�R��E�)��=���d�1Z��)�=6�p�>CGWQM����Ī��:h�kMP��9�*����v^�hT=F�QnȪV��B:�b���@���"g���R�9��͵=UŦ��T��r�HY�I�D�%$���od���i�D+#��S$33#�)Mu����KJDŽuΎ9.cl���v��2��&����< �TzNy�>�Y���'d<�z�Xl::W�P�j�Yf�,e��6���/+n��Su.ꡔC1��M����{�:������/�RH��S��'�
�ת��2.?C���.)��L`s�F�*�h[�X]+f��4���\��?���]��u����C�*�lֈת�k���x�w�Mn��ꉠU\�@�:�V��ֻ��1��\��SM�D�L�6]�UT,#��T�a�y�(�	wx;b*�Z�A�q��A�@��,�S�k�o�R{/�"G�������.�y%~����,ES:�-��G���VT�zW�������!��w*�~�L؛�xע�n�ۭd�Z�8�%`�����*��M���ұJ��Q/��z��<���Z͜ʬu��T:S��Ul‚�/��	�|��y��%$t�5���2�,*d�[qz��J��Y'-4j|݌Ov�
�TT5���U�l2�6�1�b�/�T��4tT��z-k�C��
���`�~�@�ߖ�Y���
�p�vo��W\_<T�O������ЅQ���J��U.�[�*sz��k����>e�ʐ��&��G}��X@ઁ4�X\�b{%��˧��D�(?1�|?��*��#M�ͽVh2;�ʩ��TI'âdn�ä{���\ޛ���v��AܦD�3V������׵��'�O�\���Ӷ6��n��Un�$wTG�Dz�T-����48��ZL�uC��F��7�OiF/YQ�4*o�Hy�hAsrM�,&����x��Abg�΀*�Yn&�\�|ꛣ�ʦ~�p��\E�*���f������U8�,U�8H�+CS�$�(�����>i�ʓ�Q�[���'�[���ʫ�E0��&��PU�'k��c�v��3����|�ts��:��ղ6�wE����E�O��YS������N*�~�r�`T��A�M�E\mM!��-�@T��ۧ�SS��\�M�&��h���\U9�5K��o�T���(lTtF���Z�{��ǹ��^�ꗒOV.�]�U8��=e�*�b�f�r��|���Lb��O�!J=u'�gE�MUB�*v���QX���^e��Rm*F�����=�'m��}T��<�
�&�{�s^]�M��J��D������V��P4D�I �u<�y��h�I|�s_!��b���c��n�3��Q���W$�v�n_Ɗ���3�&��yoQ���ְw@�U��J�׈%T���pQ6еVK�;�y�:y&vX$�l
��R?��*�͔M����W�6���L���֦l'�4}T:F��jZƋ���“	|v�Q��ũ�_���3��?Um{��&��_I�g��&��U>�Բ�����?�4�;�E7�(��}���*]1zo�)��7�N�#qp[�M�R8�ѵ�I�����ܒDv��b�����3V5>v5�*75ͻO�Q�E)�"��8v�j��O�յ��A��/
��j�]z����zȇPm���N�iL�E��X5/a�F����ɉ:�OUF�D�j}_}dˀ�E��$Z-a`<����O6c�.�s]ȟ�������F-G$H��y��<^�/�z����T0+�v��j�ͨ_�O
�����'���)��
w�٧P�`����K�0MA6?L�p�45�frX��3͏d'���4�h�����(k�T�k��k�[�{��P��~�_�EAO�l���
�WL��#�8Fo�l<�\o>C�Yy���[��Q�ڒ�ZI5=K�SH�UU֎Q�J�f�'�hW%�E��R�0�ADjjC^f�H@Z�E+���td���6��O�X�S_@}C������W�۠���z�ړ�<�*��ڨF��g�Nm��gso(��RFЊ�*,.���!���%z������7�A��&��_=��qf�^�ܛ�B�3Ȝ����ܤ�?4��U��C�P���z�b�:��`���8N��k�ʢ���`%����i\�
���6�I(���6ڣx������*�7�7
��*�^؋��F��5�G�X0��'i��	X�M�
�����ԝ��yY��Z��⇌��6HǂZ�b8�;���i����H���(A�S\�����%��w�'b��~s�_N�(Ui��;?���D�,7BFMPLok�o����j�phCiTB��r�@X�Wc	�(3^�*�Z�S�Mݤ��*f�4(��`��pm�eQ��N��)6���>�QkXy�f�jF�Q��Ȧk�;�_�7�
�)>�HǻY%u�TZ㐞��)<���!�r�6�hO	B���
��{)�<���}�h�g?E����V%1��wC�I��<�b�6��?͋�'��*����u3sB��w�@�B�MbpTG5+y)%lM%�psn��f���0��Be~��ep��>�v48�}/Y3���A��,M`���>��I,��<B9]!��e�5�Y��q�ܛ��U"zؚ�{�ˉU
h	�"�0}��V�@�C��--54�h#�;h`��}l�N��܋e�)�)��p�75�~��T��U��DžD%��.��ğx%�Q��7��Q�~�]�3��*��o7*q�T����'Vcac�PD\\�������%v(_���<*���:ǺPk���1�)��(��Ŵ����yF�'�D��7��W1�,�r�����66�UP;�7����T�J���x�u���i��>�g��4|�ԏ�#�o��ߌ����N��.a��%�O���F��T���>J7d�N�?~'*Wg�a�ݞLY�{������n�݋
���g�WX,V��Of��1��Mg�E�n��i]ĔՆ�,���e�V������A]y��m�9��|B�
�j,V�1��ZV����X���$Wc��u|^ҧp-�c�r�h�53��VN��L.�9�*]f���*��%3!aݪ�X9�z*�Z��(���#�+fHa�ˆ뢩�ƺB�O����{���:���$�E��f�> &i,l��Tl�JoM��6��V�'\=�*�k�V5�@�OT`"7]���r��];͉1��B���ț"ot�v��x���w+z��P��<"��ոq�T>	���÷‰�Ŧ���=Ʃ?
���eBܰA5`��M�Ū��/g?��3˝��B��
�ḡ�RK�<��d�꺒vܨ�"�4��틋o`UI�lֿ�)E�r*�,HJ�p�*]O&m���)��
`�a�
lk�������;V|Z�Ĩ�~�W�fP�K�}m�{�Ma�S�Nܡ�9P\���e�:��ipV.n؂*�\iܡ?T�>�7��G�V!o�RU�UU�U��4��Vm�U17��ľ*�ͅ�;>	�A�����4ݣ�yu�s��B.���Idg�}%c���"��qFT_i��y"T�K�:�V��p�v�F�;�*�a��
V#1�����P�6_I�⩅�MXKmH���iI:
J��5�ES�#�ܧяD�w���h
���f6�Z�*q�-u�O�����S�N�&��
q[k:,�$h�CtZ7����
����+��C'2�uAO�C]a{�Io�=��ӾVXw��>��O�OTJ���Į;��I�3'(Q�r��)&,q��_E�F���7��֙��Z�ꇻ��zP&\b
U�kްc|:H�	��L[��ɖ�L�$ر��
�~_��
���])������u1�Sp��̚�NҜ�1;܏�ƚˆ�&��ӷ�l� �C�x�����
����QiPX~��n�����ZU�dr�� dM6sݪ�6��
})�EFܴ���#5K��S��b.;�}L��y�A��rkh�׸�1��Tb���e��|D���#�|�ZC��ik]N�QiIs�P5��9�X����sEW[K�?;>8��<�j:�������ڳ�����~!`��QO<и��R5Tb��6��b1�s���T_�r�����C��U�!ꫣ�����7�v7�����4�}��hb��pE�kY�U�����g��_�nfo4����=4lh14��<�,Ϛ���Ɇ�i�V]o-F���ů��]<݅
?V�l��@�Tμw���͸��yDP���^���]A*�������I�\M	M5��	_x����sc:�꺒㼦��$�$5�{�[���UQ�a�HP�S7�D�ꕙ"����ɧA�`�b�wF���*j�>�T���S<(<G�v�־�p��b����Aw\���X�a
(���S�*�S
�'u�j��E���VS�W�D���s�?F*��;j��j?�>�_�އ�ܜ.�-��T��/�X�+s�OSy�Yq�SIT1�!QLp��.�Ұ�zYr���ֽQwk$o�0ɏ��z[{�T�I#/�S�4C��0˿�%��'f�"�u/y�4讂:����ut�5G+�F���?᱊�4@Ϳ�QSd�|��UK��ϫ�Q��=���Ռ�3v��Ung
J�e��}꒕妠��<�^�}꩹����q��O0��q��Ttk,}b��(Z
j;�.ڇ�ʄ�{��5N�\c��
���{����UV��*Aj_u��
G'rvj���F�����;��I�+
҂�\��T[XUA�N�pF^�]������(y���D�V)�.��6{�	�ۣ�p�YRb�'ײ�sS�����Br��zpɈ���FJ�:n�������¤>6�(:"��0�GpCQ)aQJZ��� Q��k��AUI��˛P��͊�8����Fr���&�����*�̎!66��'k[7"�m�d<լ��.7(Xg��H��ӗk
%L�Y$r����P��~j}egB�֪6�M,��튢C4܆Ņ�
jk�8���奐���5Q����*�X�₡���K���X{�*�շ�Ui�Ti� �Jg,/
a�v�v\�ڹ%J
ʃ�-���*�\���Ie��h^.oĩ�g�S�8�-���b�ǭM5]?�a�X5D5U���V�2���L���A蝴�T�G��UU�ިu��K��U]��'p�*�bޥGަ�i����by�V��c�a�m�FH>*���F��^�S;�Ǭ��g:ț��m�*f�_�}��L�(#���eT��^�ޢ�T�"
Av&�O�B���?��@ ���.������N��z(��#�)
Å�y��us��"�&ʆ��V!S�M��|����8w��X��[�9ש<��U�hM�4VBꗙ.Y��BW�jֿ�������tnRh�U6�L*�~D٥Q�ةX�Tl����ܪ����Oq�Ҧء��5�ú;��]�l�}"r����)��	%��z.#{�߫
����4~+�;V���xV�U�U�~dtX�s�~�J��U{��HsR1V~3F�X��g��?�W���j�Bl��̓��6�¥�����u�f#��m���eu7��PT��*�9?V4%�X��šn�ޚ�B����?��u(f�pע��SH�
)ù,3͏�n�A���o
U\����G?@���UR�|z&1���`�@�b�gF�?1!�(;կ=7%>'L��ͮ6P@�h67�V���ۊ�6�������F,ƣ�<�]ؙɡUT6��I'i��
�`�����.P*��iW��7���U^e��l#����*��Z�nM����Gr\[w��SYՉ���i^�)��/r�Ս>�Xw�xX���SJf�p?5?z6���7�`�V?�s������X=�Fz�!aS�a����o{,��Rt(�䍷�QJ%���z�Ų�{�.� =�.�+1@�AR����]��Ҏ�(-�(� �Ҩi��
�\�]��]�����,z��n��,9���Mب��{�4
�S<���I�jl��I5=<����dL��w���Ӽ�ɫ�'�g�i24�f�$�j�\M��ͩ�Twim�M�j��6�c�l�
�Q.V\�e�B�^�/k�)��c�P�Շ��^�
U���G�'��N�*�jY}��2аp�����l���X�*�b�
z�<�g�Й�_�-�)ڒ�ma7�Tkz��xdX��G�b��'Ѱ��?%�ݎ�;b�SM6y厩�a�@!v�Q<��kO�a��H�D��ٕ��.h�&�:���$w���g�������pp�D�y&gD�f���u?�[Z|�j	��W�

Ai
E���o{=F�������5��Op~ec��:��|�I�n�l�E�AI/gkI���
� �����wAUN��E�
�Ⱝb��ꛣV;�;�D�N�ׅ���D̬.;�!�x��檼-��F�&i$c�X�_b�I�T��%�OGZ���oT��S��D�q�<ϫ��{���T��àT�OEI���\ް{*O	XN�՟]�E���:0�F���0�9��<A�1��f����������%�EM�
���c5�s�b���3���E��D��}�e�'6�P���)���u�F�uջ/�u#t�fB��x�}p�B�yt-$����n7�{"���E�Pwn�
.]<]�CA�iO���]*PU�A4�'����
jv�!1���3��Hbm5#X�`ƕ��"n��u>�1��hګ��&�2�b5Tθ��o�Q�c�q�-C?����(b�><"���5U�NR��00��#���j>-���(�c��X~h�-߻) ���)���dw*ʶ��]q}�G�&&��%T6�4n
�W��2*�d����՟�9��j���^�ƛ'�k[ɥm���wc��7��b�=b�z��;!RoP<F��5UO��3�|XFگꏠQj��I���_�����z7��ֱ�I��*����N|��Aa�Y<۰�v|����Xi��7��?�
��d��V?�r��.#��$~�x/㋬���-Q�,rK�N�˚Kn2�X[xt���nO��?BU�riS ���R��)��Qv��T�@��xM7��
�����*1��zg��
���l%���R���8[;K��b,!I�Dm�IL�0&��K9����a�e�
����d�e��T2^�r�Z$�C#�i�����P��$dE�Z����Ѷ�H�f�\����&�NQ��$�6T���<��?��\��*�M5e<�Ր*ƑU��b�7��D,E;Ie��]�-�L�Ƨ�
�Z���u��Ÿy�N�8X�^/\��U;�*Qv\�ؚ��&��0��+�UW����p�9����`�kH�e�E�x�E�6�.���Ӹ,+\M#�V�����xo�tނfz�TFՖ�
�Uxᥟ|R�V��0�wmHü�毒�'�ک]g��^�����}��|���b��i�ɴ+��Vd�`��jj�\ ,SSM�G��d�v��(��ub	���A%�i���(�]/���׸��ő�����К��6��Z�@�����,-�UuYP ��*�i�b�w�eU��[�0�#�[ST�PGe�6�8��G��lp9��=1u6���z�w_xfS�P�t��4͒>�%��o���X袾[�TU�H�$���2�9�c�T�4V��p��2��Xb{_��T� �����

j�L�6%H��Y�d�27�6��T�������T���h��~�C�>��ȬO̟`�\�񹾋V�E���Ty�,\��/?��X�oN޶_f͝Y4�{����<�$�{;�A'�p�&�iXk�L[��ʫ@x��Yn�供ѩ`vš��'����3n��Lvh�(���!Ʉ�a+�s��@P7R�
	��
&�!5 �J	�h[S�؂ধkQ����ߞ&���z�笚;ޝ��ܥֶ��ʩ�z�O0�cK�cx�#�����u]H�3v�d�~�E`ʬ�
��O��z�ݓҚ�T=���#
nP��������U�;�̦kZy�
�������Fv/k$�ۨ>�PK�2R���o�Y?
�!z|J�.�������L�Ş�e�SڻA�MѨ�$)$�P��N��Uk=?9B�]�T�0��k)5S�XN�T\�6�i?��V'��97\6?�5a�s�+��������O."�8>��a�)r��_g�t�S��W��QT��6�m��7�w�ܨ�;�b��� �^�ھΜ�q���<�$��aO��i�Us��5a������\UL����?�]�bU5TT���ǒ�1<�ad�܆�Z����y�wOUtQդ'��
j
��'k���p�:�k<���-!M[A� �6���~xK8��i��y&�����õ���(j��TM�_y��X�WckM���\�*���b�7��� ����ݑ�pO�9RBU]8��Zl�,.��3�$�Q��}�l?��<��]S�R�iG�
I�8s��f�
G�T��m{���#��Xn
Pl�v��2*��(l
���#��	O��L@�(p�F*'T7>���9v��<t�s�JCȡU,��,sQ��M�C�l7��h�[[�M�*�w�mc+	�s�ʟ��?��V#揲T�QI�����˷�S��?�P8M�SiT�ib�?�
�c�cxS�/�"�ֈ��a�ӭT�����:�EU=�Q�EX�n~��esd�,��v��.>�B�ӹ��������n����-$.&MW��k�J;� �a��!115T�9���)�S<�97ɱ��#����a��9o��U���8Z񲌑w+�$w�����XX���aSJ�ۙ������r.m4�:0]A+��I��S�ԑ�����0!��D5{G� �2�Lk�j}g��lL��,`�kQ��P����G�EB���MсL���m�+))�k��ĬO����mb'�+��L:��s�IE�c�%bf�/
n�'����#N9����6��BP�ڢ7��qf��I/9�������U��d�ҡ��U�!�oz�X�oE`;k��?$��I��f��tP���1�&_�UFŪ�ޕ����
L�\>Iݪc���jr�z��'d�`
��C-�z*7g`w��Sx��3��+��=�pLe��WA;V%Ð)��a���&)E�B	��v�PS�:SŞPN�J'�S��"
�~S�7�*�e�^}O�~����e�42x�@�Wz�,V�?�0�j�/�b�=��&_+
ܩ���p �u'�dP�،��yQkS櫪D���f�氪SOh��x�*�j9z#�
��x��|J�դ���Xu+H|�hq'(��W�qU����eH�Ғ����2ީ�0�*��:h�ꅉ��S�<����ɏ)��-�T>h'Q�.���u>�W���kZ�ư�h��+�����w���U�o�%S�C�&����*S���iSV90���P}�0�<�ªg�ӿ��*�[���n�UO����o�ATX���&3d�	���p�Q8MF��Xw�y�T�;\W�#�n��E�ĭ�J���X
K�Xf����4�7�1��6���&%-M=1��]��xm��\8�T
�	����ű�&��.
��SSJ�wSP*A�( �ܚ��S�uq
=y*G�i?�b�����S���-1ARL)�f��&�T���#�5W+`��w��RR���$$�^�Q!n���nTZռ�rn��G:7]�H��h��8����ġ�,E��i�
a*�Z���*�~
,=�P�VU2�<ā�C3�2��*sf�d��Ç��t����w5%Dp��{��Uo�*�:4'jS�A�'}W��>�PiC
��}]3ep��p��
����AM=l�9����VF�!�\�SB�`�)kߝ�-J�v��	�y+<�T��H*-&b��rp��Ҿ��c�S�������V�R�#T�%��
����ްã�L;,F)���UQ0��V��[�Tʹ54��R8p��X�� �1+*ZX������)ćm�}��*D31�n�qT�2��&bۇ�3����]�,����n�
����#��.ƞ�`7���WRݽ�N���%6 ���R�3J	�T�)lNd����IJj
Av�Q&��΅|%�X���1iJ��_�%�703��51�YD-
Q{�{M��c)��.TӾ�r�4��
0��3�wuU��Ĩ�$��.w2��Wb��?R�S@أ��Sܪ�D��3vF5ꪝjY��{�V���!_�T2hc."����+��V&�"fUV�A!��'r���cS�*��*���Q��2�y!���_�>�G�ML��R��ڼ��Sx�?���T��;�zy+6{���G��*��#^��G�V�- �	��(����ޝ�=��g��b�{P��=���ՆNz/�Q]���
�ݾ��>Z,1���ñ��o�6�:�
�a[ﲮ�=��,2k=���GK(|1��i��*�k��c�θ�� M9%��庺���y�4T4t83"����bM���+�3��$p�QSqt�u�@��,☘��b/���X��ST��d�Eµ����8���Jj����*BD��������]d_%~��E��M�co�l�ɇSw�R.J��o���+��2l�
C�7��*c�q�����E�=ы�;��1Y��4[#Eă�'Z�x��?���+�5r�ҊNbʫJr:*ah�G���3�ù��:a��RmU�����t��af�N�)�U-)$�&�T��o��Q�7Z�~��=�"�U��p
oXg�[�*�`G������訍�h����1UkM'��L]��o
m'�*Sx���P�h����?(��TG-C9���z;�xX�aA����@��M�p�oê����haw��M�+]���N�ԙ��A枿8ѷ�;T����A.Y����+�:W�!F�����8j\\�č�R��a<̉��fރÆ�uY���t�:������Ӳ;7�A���� P()
��E���j8ޚ���aA0��"	�)����ƛ�j�8�i�]?V����7�(��F׃��\ӝ-S����h	���
�gѪ�ދ�50w-9�ON�ڼ�M�xƶ65�Ƌ5U�ԒtUG,.��)̭�>,����װA`�i]�ES8�"����՗��v���nX��;G�6k[��S�h��QSN��E�
B�<�W4|�V�zʜ]��x�,}���U�u'�%�H�;�RXJ��8ܩw,7�)�˾�R�j}�ǣS�4�&��5?��2�j�
�M��%��?�ͽ�WT�ҳ���.
�L^z���V�Tg�v�q��O����{ک���+�������ǽd�����̸-Af��+z�;�����p��,9��roi�*��gz$��T����)R�'k��Q�^���J���}�x+�˕E.{�)Җ��eeӟ�k�<��~��	(�Of$����i�B���U[,�&���n�u� P>J�o��MqcefR�B���0E\�0�+�P6S��bs^.�,DC{2�SPS6�M755�i
jj"����8��jPO�ߊj>2��< o���a�f���5��0�#�6	�nd�WR�0���lT7��GX
Tz�t@]��Ud���_#t�Xm/�i��-#������w*�"=B���p�h|�gwg2\U}W��1�B�!Jgw�"NXZ-��T�uL@���oDᙶ�24���<W:��
"�ӱ�:��α7��U.���@��Z���鲵�w�C��G��:���o�)tyD]L4���*�r��?��xv,;\"/`�O��?��T}�V�񔏑S�+�'��Y�����P�F[�Bk��Ȫ���7Ҍ�	�1"�N+{�SJo�1������߈XQ2`�7x�.��iXd���?�|�dYˇ�ߘXT��ѻ��Bďe��/�`�jD�Z��6�2�:	Ʌ��p����:���ͱ6(�expY�.ҏ�w���^���F5�A*��6j��#��
�&�� Pr*��%lݓ��5���ۏ� �p�p( �D\tqA58���yMAO�PR���5?V��
o�(�����
�������d]�,%�{7m	���s�Ĭ0]�����6
�9*C�pf�x�է{S��	/O��U����]�o7*�v��^������TT���&KK����w)�D^�5�&��]����o7����1��[4����ػ)q�2�燄"���3@U^c=8m�d��7ޣ��K�j��8ek��P�u#d#3��r��Rx�U1�>�;�⮧6j��a�����X�%N֬7\"?eʗk����m]LxN�U�b��=c�_�Vy�g�'�H�vzfq���)��D��%s35װ!T��2K��.�* ��*n2	�Ш����*����rq4�϶����BFu
#�j������;D���!C5�E�f�EbU�T�Lմ0
��fa	6��o�؎>*c������3����M_k5o�(�n�W�:�K��T颀�� >ɲ��h8��*�KX�L��L���
ށA�u�qsځ@�T�@聸MAV�&[k��rf	�@��v��jj�kt�
x�
	����)�)4
A�NՈ��!�z��gx���H��#���{�Ԣ��4�;:f�+ot�Suj���ȣm�uOª�� ���!Jѫ�m���]Wh�ŸY��*1fFQ���]s`�knU��������1�?�Uk���g�Qֱ���bq�e1}\��:١a��� X���*Aw���^���r}�SB���䅶;V���Q8�Zw,H�w$�k*!�Cv�ez��Qr
��t�&8�q&�,�>놣B��%P�CDzTߥ<w��5a��L��M�>�"4�+�S�O�JϪ�Է�T.�xX�31��b���6�@�ӷ��Ga���BV�U�~z,-�>F�W���M��Pܳ��
v��\��$�lz��=!a>
=ʩ��ImY�<��i��L�٭b���x�9����g|	ަÇ�O�f����z�"���Av�O%����.�"�U�fWD]cpT�H�ҹ�9��Q����r����B�d��u��&��F���g��(��o�4��"��!57�Wk��n�������SJ�����
:<���lrb�~䚈�)���()4u�+��VXs����g��<��IpC������iϳe�2�ꡠTT���=�ǵg���MC;x���^�d~���P��l?��U�h�^A��pi��O�����C6�c�����e�~�Q݀����uXm ��$n�wG5&�wR����M;�k\�aЪ�r4�l��?��3M���I&X�"�ֱ��?T5�h���P�)jl..���d
y�D�F��9PiG~.y��1�[�
t�3��ɴ�u���*�V��L*/�LtgT��
�uR{�X_�c�*�V��I�Q����C��k�HU_�Q9�I�%h����ӡU�9_B���o�ްӓ���3��T��k�;2WH}8��pȤ�J�u�[�_j�����m�P�W�cdB��ݏg�)ٟ�Po�ߨXc�T���{lz����<i#~aR�i滿A��"m�,�꒩�0I���}W
���K|�}�{�*�M������eA8=�{���v�0=�v����@�mڮ�Er�P.��
k�J@��vt(&������
".
-����� S�iJjj"�)���Ag����c��aM�5	����	
��$�7Ћ~�(����f��c�l+�]�U�H���jW�,����]dw���c��wP����ْ¥1��.��]��j!��r_sX�ֆ8���j\�Z�y�v�[�O�bT�^<l�OJ�!d�n_��ծ��t1�Y��`�?u�B��H˙�lJ>%��QU2�z��d���m#\,8NA���ɖ-T�z��D{��9ָ�U�y�l,NiN��Z�;�F;���|��±�R�6-Q�����Ú}RU.�j�����Bִ��R.UW�E�Dvp�d�I����<q]��vd��YT�j��GW�J��<�E�z�C��nM�uPo�Qi0�1zu	ɉ�;�ܿP�Xq�Ê�V�Ŧ�`Nς��@���9^����8-K}\�_��Q:�pm�P���g1eY�8�/�3Lg��%���
��l9�-���������زa�S媣|/�nO�e%[�Ɔ�Ww�ٛ�����6��V+�<y�p�н����	�h{e��:�p~��k�ڃ��@��V���f�6��x�{FB����3'�A�)W��\���FG��M(���Y�&� ����Bj��3l�ҚPS�iMAS\�t*}ɨ)E����v��X�E�<�_�*g���$��{�K��Lx}�{����4Z��7=5ʣSx�A�B�
]ky0V��Z}'_�_6H�l�ޞ̬hU��o<�،���m'��5,ɵ��$��<,�]FX�9�6���h��p�:",���K��7��P��H�
^S�����\���c�]�*�:J[��Ęx=�A�

,m�<x�;�	�G�Y������ؑ�?;�ij��s[J)�nVɜ`������$��USLMs{�^%CF�����S*}0�{
�]�D٧�dFI����"�TC�J��MT��;F���%s�h񪁨X_�:=�R��(l�'=�Up�r�<�k�V���w�W�Ҟ�~�w�+O�U���ҡ���h�����r�<�2���+���C�����)�/���Ք���+���	X�φ>h�p�a�U�����G�|u	�:'�uwv�#p���q���f�n֕A=�c�;B�
a >�����ɍ�#o")H1|$�YY�gU�U�&æu�˺;�QU���}���&���;xڃ�riS�r���(
*��gA�M(y'7@�!�dT
iAU6�߂jbi�����MM�L,��MAL.�T� ��=P)��~�A4�*�e������,��}�m����0#����d}��'�Q�.�2�S7���°�䠧��{�q�֚���]�5T�V
��.�\�i�*y�ʂ��fw=�zhf:�LjF��-}�;B-���q�����=J��(̧9�:܂}������^8"�)�f���T"��O��
�
���>����,
�(���a�&��T9�N��8�{y>�U4��pH[���o�S�~!F2a��B��O�k%a�raQ�3�MT��S�B0��Tie��Iܤ�Sx~�H,����<q���l*#�6�_U`���m���.�p}3_��T��,G��Y�ar���Wb�3t���H-9�ޔ��D�������N2��bꈉ�2?g��T�/�&�u�JW:/��X}FZ�������;7�Jy�b�a���Nv�p�w�)O��ò��*�p�Co�%}��~�2��s�����ZvU����:��#�v¥of�P)����Gf��� �T����&����B����Onf�iC�ZZ�K�lѽF��5ɮDfa&��uk�ǔ��K��)���(&��M)��OM>F�Y�8��*Y�5�uD�7���`P�
�C$3��e�}�k�P�)�F[�W ��D�դp
UZI=�v��ޣnH��
�U7h���>eAcN\l^F�K�����偶��]4Y�`�	j_!������<Ŕʹ/<~�:ԗ�n��ڝ��u6v��pi�p
Pw�&�3�����n�{��.��Y�4�O���aR�������o�
�@��I�T��U:�a�
��Q��T��j=ފ_8�P۾�B�9�x?���`ު��}$�2�{����"�h�R]��o�*��l&��16��4P�Ň�Um�h�o*7d���Ň�H��V�9���^���GȪ���
���{8��7�}��ledA��j-�4��]v�:����g�s4��M��|�<C��*)�M�s�!M��X��:�������n+�>+���7�pX
M��t�5�1�xQ:7x�uQ��޳S
4�L���7&�*ݤe�4qJ;-�(3r>����#�8;�4�0����+�SP*AiO2�n��^2�L>Bl�S�������AZ�t)��X�v�R˞cO)��:pY�‘��B͗���������֊����=5@�13����*�r4��%Eݜ��9�ENr�ǃJ���j�ZI�o&-M3��m>I�b�vJ	��2��R[��A���AD�Ҳh^Z�5q���m�����)y�7Dw!�2.%ab�=3r,�96�������Z��qU�RM��4*]�K��,��s)��"�	0Ȥ<b��F������{\n1��>��>�����o8ک-v���p�ܰ揻M��^��e��QkT��^���;\%��wȪmCS��>ʬiX��ݛ��#�TJ>���������U�C��v*Zf���v�p������84Ro
l���3�Ўʚ
�x��=
���9F�2��-�||{�BϺb�TV�3���G�wՎ�nD��>����ƫ(l��������oz�ED�E��X]�Ǵn*����h���n�Px�U���;�4�TO��b����n(9�*�Y���5@�
��sx�,�(5
fg��L؂���1�SJT����� UFƹ4ئ�!yMAH-!M�;G��XSv#�SQ@�13\��4QX���>k��h;ŏ����Qc�(��ېzS����ޚ��#g����J��&���4����g���Oxc^��4:�}��M�
j��ks�G)
�☎$��n\9���V-A���u)����
����6���S����%/r� �,ە<�����g�>�:H�6��5ցξ�V-Hz݁8>`X�lͶT�,���lVq�|���StUV-
�f�q`�0�׾�*:S3��ɻ�{��[n����T\�R~O�Z���Hm�%��5���
Xo����T�j��5O��Sh��/Z89��	��ܫE���eg�+�ШʼnT��-X�--S�o�E'�O�@�k�+m��.r�B���x���逶�AS���*H�H��*��>�7|�]��
����ou���81�T�לgj�O�Ւ��U�<����@K;�9��PJ{}�UT
�p��l_m:�
�������\���hQ4��Bv�a�7*g��F�wZw

F��z�5�{�,>�l�-M(Kmg�ziAt�c���
�UL�m�0��5H3BZ���z"|�H�
}ɨ'���|%�n���Av���ݛ����o;���;)����,�E�{l�,�l�5����}�1ɮ_g�g{�j��u�36#F5U/j�;�T�QY�#��Q�vJ'� *�Dc��A�C��.�I�-�C�I��Y}���.ts��u�8����hU�����C�fuG���]+z�@T�͢e�c1�
�S�L�<�i)�m��A�\z**����˵̝�Ip�y���]b?�#��5W�o9�cS�����撶^N��6���
�Z�ޫU.���}���y���h�e.�g%r���A�LS��r�6pXo�f'z�7��X�����J�vԷ�i���g�Q;�M�±fe�d�b���
?�Ώ�n�آ���ͽ�+y������ۛN�$��K�B��-�O�Q3�X�}��f}��BN������8�%��nXQt�t�R��J�
�S��
�j��da�ӭI��h}��*)�JƻN�}��%������<��ʑ�a�V�p��#~�A/g#di��Sn��mS\P7Q;#�*��9s
�5
��fǏziM@�gij8��4�P*����N��A���Ӽ-�-��l�ܒ���57Se��&���M@��	��m�&�P7j(��PCD�n*�_��U$�w8� �,�O�t�npl_m}ӻ첱�婎XG��L�Q5a�Իy��������l��,y߻�qz�٧���Z6���詙����H��s��5��V߿�S5������݁�d�S��wQh��w��*��R���y��pGU?�VQ�xFT�Q�eQ���G@}�E��l��7`o���K�G�V��K=���NlX��'�
�6���6��Sh^-~�B���X�C�ok���[n֊�>��i㩊g�f:=�*�������Iʨܰ�!5,�k�q
��H�b�����<�m[0�J��_�P����:xj�|ݫ\��W�� �d��8X���-T�9�J���>���F�������T�On!}������;�z�ggY�ٯ]�a�e���EU����I���n�ᰢ�ƭ�u�2��9�']7-��n��x"�n覅��$�m1��w��/��FJrw?��A�����Y�9�bq����5�M	a۹6�q	�AFs���ղHZSP)���hzj�g%�.���{	�5ঔ���[�)�5�g��Bji@�S6�JiS�A4�<]�55L;�
��������d�|e�]�@��@��;PSeD�\�)�샴U
�y����;.3
�7*F���9��Bfc���MYa�6y豷�XY�O������g(��5�`�B�G���DZC��5�NҦ7��i׫���)�\M䆙���q{S�\UԦ�,Q�h'���z�|�?v#�
#�t��*�^�q�*�d��P�����7�Q��҂oeUi�8�U/�Ɇ�S8�9�8���*��ShB��r�4ʰ�j��4��B���JoX�uz�9q&��8|RXOշTFґ�,i��'�+%����Щiܰ�X��E���[������*p��r����_g��qX�0�����
>��z9/yX>mTҐ ��=M��%�f�GiXP��t5��Z��Sˑ�{w���cdn���h1T>2l��g�$ݜ��W�l>��+��BF�n*)�İ�T4ZxM�Š[ZF����<f�w��
����kH݇jj4�U-h�
F�ס�h�ҁ ��@�l���*���+v8j�SJN��߂k�
b�g��BiMMS
PM*�aA5nGG���v�N�=5=4���4xL��o/p{ٿ�=ɏ߸��닂���u�ō�k�]�J̆�Ǡn����K0�vzN���+�G�4�}ϔ*�]�b��Z�LP��� �ϻ�Q74я\*���lTt�w���~#�pD��S��V*��`z}Joz�U~�r���z���E�Ȟ�X���Y��E���lT�X��U��H8��u��ޢ��UL|��l~"�+��%�ފ�M�%�>����*}�M"}�*r�r��Z�R������*o29U��}B�6��Zқ��:�Sx� ��(�����-�P-;=��]iڱ�z/e�P�Ljһ��?�R2��j�����Y���`�=�o��o�P�w᎖Tų��aiaX�U��ɰ��Tmto���m:�B�,��r���i1�.����$=7�te���l�R;����F�Y
�z3�ޚ닕����M����8n&a�FJ{99�}�R���T2���;b�>�R��5���ܲ���P*'�v�b{2�nܚt@��ʭ�xx�v���+\"�5;��4�[�b
=E��2��153[����!Fn���c�iMA8Y�4������p��)�OLN�iO��$9��JO4��U5�H�(t.��:t*���ү� ��ZPrs�k��X�w��懰�/��,_��&��`���Tvl��g��Gh֬Aׯ��Æz�V�"�Ҽ�PT�o�QS\�y}ȸ��`S��_����ֵS���jJ��"���R��$�1S�Q��Ъ�|C���F,�m{G5<�0F��$�g��n	�m�*������K�\\���^�I#rD.⢡e4o{�yr����u��so�U�YSjZ�{N��̦g�q��r����EJ��/��|�U~z�n�3Iap�t��zQ�&�O��#v�b-��%'vH]�V��R�u�ҫY�QK�ߒ&��9�U[��B��sV!o�N�P�{�
�t��$a�ܭ��F��Xs�y���XjL�z
�N'���!�6*rN��}�a���ģ�&�*�	���,x�����L}�Ul�C��n�S�	7���Y�)o�B�����1�וG;�-�~�4�׎|}�B��9��rD
�L�����@����UL`��,SJmUC{XD�kv�����o��t'�k�Q�$�UQ�S�z��jiUm���)�54��噮�e�{���y�PS�H��*q�)�j��$ۧ��4��@�SQ��~�'~���M��K������.��:8p��r�ݧb=�{�e��@�rêOh{\E�Mr��)�Z�@7������
YDL.Q�jfs߰�#��T����X5���b���X\�hw���E��n�=�0�x
�vzڟ�}�֭�ʌ�Xg���¤p$�_T���@̼�M����
{�:��,�C�as�E-�i.�
��
y��F����?Z�*#p�<����f9Yb�>j��?�M�j}��qqk�L�a�:WH6��ܨ��P���
'��T�ѕ��RVJ
M<r���Lkt���<�a�0�bg��l��:B퇚�Qh��V ���@�#�U4Mi�f�G�8���វ�j�����ALo��'ڠ7b��Bޖ*j�1�D��d,��/�C��id�w,�D������U7iD�F�_����vk+,�p#B���0��0�k��3z��	߰�)�FxN@>mP���v���T_��oUw0�v4������Ц1��O�C��U,��qr�nOg/O�T���Yf��j�����}�9UG��N֒��P<Ǹ�a���;JB���*FvS��DMu�UL��^�T�Y5T�֚��aLA<v��
bU7=9<
��15N�!1�m�~ST��M)�d�6'�=� u(&�'�&w��q
�gc��)n�z��(����J͖�~�f�tqB�c�5�F��m�����R70�ݩ�W��<J�fz��@��l$��uD�X/��dm=1h"��N젞EL�1��af����Az���!*G٥A��3����XX����3@VNM
c$�����&�kx"V&oSG�E�o$ݥR���9�U���J�Z���uo��^���J���b���UTn�J�jy���"�P'�j��}ZTH=eJnǪ��
qpTZb1sc›J��!Q<��U����¯�a�;�mr�ݝ��nI��+9���m�g�C�-T�N
Ǡ�_?1�#�j����*�Ef#=&\uܾ�MvUSI��:�*K���މ�
u�Y���M�_i�6E?v�6�[���ˀ$﷮�F���Ъ��ϡ8�;z�\��6i��ʞn�v��޾�P��*E�{�*	M~by�M1�����⿻�Q�US�}nMA�T��>v��>j40�omLj&�s{jw3~��n;F�5��Ҟ��R��&NR7���S
j��@ey
bT��!�@�<^'&���������LZ!�4���MD���6{J����Y��C{���'��^M������_�<�]���z�A7�nv������\�Nm��qa-ϋC��^�VOo�����gh�U.�EV>�H}URoH册��<�v,~a��E�RI`J:j��45H�2�7~�~ ����M�4k;�<��d��Uy�\��?�M��Л�r�ֵ��D��ڥ�S��]�&��u���TN���b5��a�o)�W��Ϫ�խ��1�����*HFC\����R~f��~�3j�:�G\=T�j���1
n�
}'���R�H�X/
�]�Xqσ�ɖ�(5hTn���j�Vu�������ʁ֕���<3n��s�jc.b�ݪ���މA��W��1�-�9U����ҋ{¥�G;��W�z#%4s���'���OX�w��=w��qq�*������ҳ�ޡT;<Q�G�w�v��k��m]#���b����@��an�W\X�qS3��%���J�n�P���b&fõ5��?�Uv3�(�_c����g>�ؚ|�u�\Y&�?Zc�@���ce
aM)�ʭ���P)���hmOTN���5���L(�l�&�)�MM�Qژ�lSS�r	�<&9��Ml�!x� :���GV}	Fo�ZcV�Gi�~����ѥ���G%��ѵ'���p�p]�
SU/A�U���ݓKlӔ�����uc�7�\
i��i�G�N��������f+Fyv�Wb4sS<AY�;�C�c��N *!jBۋ�����o6=�.��]M1����f�ON��;Ud�)%<QvJ3�/�O�́a�bNn@�/�J�㓎���&���9&�TzU��*IY���e��f�R���{Q�Y'�E`£�/�$5Oc �̌X"����g�U�o��Gy�LCY[��WF mS'UG��h�&‰�]1�'�*��xT�V�FF�F�Z͹Eʓ���9ӹ`�6�=����qm�mi�UD����X�-W~-T�VAp,����R����Zv*WZ���=A��%]D~�D�ݡC�;��*�g4�_lirU�V��By�B�o���ղ����@�тޡ>1[@��|m��`2�婠��4����/�|fÛw*)rI��7)"WKN|����T�fx^l���r�^�@���/���©���<q���s�dq3A����TO��8[[��W��0�R�1���š������b������M(94������
�4�}�M(!g�����KI�SM�'k�SJjUm�^�jaMM�[�#,�M()Ŧ(-�Ri'�4��A5g&�
�4��<
	�P�8(M��ڭ���W��jϜ5�"��kz�	X
�n��w����^���Yrl���^X�i{v^�p(:��Fv��k�_g�ʙ$���L`�� E��h��-�S@G8�8e	�CI�X��84;
�=`j�p�:������)���UY���T�4D�mn�����x<X�!J�J"܃���y�/�u�Ӊ�S`��%�_hnN�-?B�)�Ҳ������Z>�2�N�|.H�:�pr���xm�EC�C`�4	��_~�i�YO�:�"n%���_�5�}�z�t{��FC;�&.��9?�-(�,Q�i����y��Jp�Ic���Y[7��u�q����I-�8˛f�pm�(L5N�&���sD�UE�0D��CK�x6:HVT\ݣ䠹�����U.�HT�&'#�*͐�UTn�*oS͘�p
I&��.���"U/�꽖!���T_�U�)66��V��=����Q�/UEٯ��$�i�$��
2;GuT>7sX����(D��T�Av���"dA�c[�k`����*����m�z�we���l7�Ǫ���q
啯_h�#��]ڰ?�!�}�
�Џ.�Uʀ���<��qaXs�^�xX���q�l�g����L�v<d'�
k�C���6:z<"�@{Vs�=�T9���#v8kͧbf��(2�R>,E�A�/��p����eU5��L�b�B~�C+�x{Nï0�#����ҁP�c�sЪ�vnn�J��@�B���b�q�%����9K����������fIC�91ɪ'Y꡹'#q& �7D�U���M(Q��55N5jj�ڈ��b�4�
ؚ�b���XPu��(�\G���F�i@�S�?B��K%=��O�߼�Zݓ�pޤ'8 =��G�,&��!�\H���Mya;���i�˜�_���7a���p��;�6��/�S@)a��v�!*�^�u�}T����YD,��$M��I��	�.�������y�9Vy�8�?�"='4|�Y�5Ԁ�|�|��)Ұw�!��m�F�99�s������*?����W��hjtJ�)>�`�ۄR{���/�gãBٌ,^�N�f��:�:<pg�$�;ˎ���[y� ������2�M�Fc0%�%�iN��Vn��T��T���I�{΁G�ڟa�֬r�ЕQ�
>����F�Uf�o'(wuR��P������,c�j\��iڱf^�U0C'�#>�U��}e�� o1b�a|��N����v�̕���*#�a�Y��AT'A�������LͿ�mP��#����l8��e�=Ն��Φ}̰��J�^�&8�ȍ��M��al554/�Dv�{h
�qѿ���2�rfݽ}��S2����E�N*������a�����pX�
���H�ܤ����^� �$��O���rm☱�Bi��P&��m�O���#{v&�ߑ����1�4Q��iAU�>&I�jiMQ�����rJ
�^�	�1M�E4蘧š��I���M(���P��_E�����,���'��k��<��װ��l���%��FWuM/�c,^]��e����8s�x��"���
�34d�x�����9�6��\�x����X>J(�i�P����*�ٞ\�G^v7ވ�ky&9����ré;(�,�f����y���vӳ��@�����R��j;
��Q5�\�C����8\*�v[w�c�t����ϬSV���R<4\�e,��ݻ�S�o�K���F sɞV���e��O4B������9����2Sj<������-O6c�ݹLjߝ�����?���6�mV�K��EP	m��?�����>��X���	ڰ�-U{Z�M�M\�T�=Z�ͥiX�sQI�]U�{7�lE�j��Zʉ׈���C��z/ne�;���ۛ��
f`��7c���?L�d1����B��Ua�VG�O�TO`���)]c�d*���L6l��z����չ���Q�D�9�}�.�X��e�Ls����UfOLd:)R� �
a��"h��C$��@���N�=f�UX>*�M����*79��:��[��^Ճ���9��W�3;Tš�~G�\̒���5��UG�Nl;��1��Q�s��Lrj`�"|G��iq�&9X��‚�1�MQ#�-A0�510��Չ�D����SN��в�?�]��C�k��\uPj��b�
����Ws��<�^a�;@/�⴦yk��|��:���C�F�H'�l�g�R��bǂZS�c����y�tT��Mw5��#�����IS9b]�΀(����@C��csKx�"��*YDl.q�	�v�6�Sz�f�yS���T"�j&��h3@�3�u�4t�,���p�lG�{�l%ab��TӶ�}��&�%I���
���\��SjJ�Տ<ew�Qj\x��Ţ��U�}e$�����F�ذa���5�`�m(a���AL�<K��UO�.�R��%t��f��pW�*���7�ߪ?�r��N�֒n��*�)d���A�%��L��h�<��N��f*�%��Q��}4���A{\��b��X#�g��`���#�,so|�N�@�H��_hⴰMǸVR"}M9�$��Î�R�ف!�YQ>�
����E�b��6+p��zG�q���ÞY��(ݑʅ�^�qؾ���2�9e�ϵ��35>���Ǵ48�Q����Q<:��@��4>�I���}ʖR�Y�=�+��(�,���
��mLB�_ܰ�,sa�j�\۽��L�0�'��m�n*�\�d'G
T=����5��g�'j,���1f�ɎA'�|n�$۰��h6(t��ڣzi�U3��Ͻ�7&�ݕ�U�%Aw�����S9�rjk�n�����Od!0��l%0��%5�@݈����g]Fot���T�PN6za�i�n� w#K%9z�0��+?P����l�-�!��2�X;�I�'�ܘ����Gz�y\Nj���G ��b�l?�5����<�x(ۙ�h��W!�"l
����RnU=K��P�k$�"f�ǚ���o�t�`T��4��@��1:��6�m)�-n͋9�F3�*Mk8��CG�o�E�O�H	iU���MvZ>��4Z�tYPB�	���1Ny*�ה�!�*Nĸ���|S<
QC,�
vH奄�zh��_ف}�ފ�Z�o�eS��R���73KnE�M,T�`��v�*��ҏ����r�?��blS�t��`�z����5A�F�5W��i�%U3�Nf�u*-Z�omm�a��7���?F[����l�
��go5��d��uB���������R}e�/�WB*�6��B���qX��V�g��.��l���TO-{^7����L�/;�z��SF���
X_��F�A�(&��k�8���L��ܔq��*�"�l��ˡ<��k���>��*�y0�J�\��G�oW+�����N߂c�b0S���3��hA5�~
�.�#<A1���x*�0�L݇ă�*���aUv3�4�T0s�Zc��MAT7���Ti�Q���x,��)������5Mr�¨��(j�(��
��›����.�Q�6(���=�&���3��Ai%�5�
���"|{۫U;�4��\r*!������=�}��`�?��R̿�����ܡp��w��G���=��G7��#1��:��Xss�T����TW5�tl'Cb��R�z���/��y��ֹEב����.��Q�1aB��9T��&%6Qq� ��6��{�T�؜ܘЀ�u���6w@��x��I&PI�u߫9Xr���6B23�䤟�RiL��m����6��RT�����وx���*�ҁ�	T��4`T��N6UURǴ��s�8h�u�)}�}O�K�j{�1αu����q�O���,?�G�0ޏ`+�e]t�6Ṉ;n��i7���J_kF}�	�U#��꟢����
���LoU�9a�]轧�r��v��קo"�ے�a�,4��fo��);�%DlA���&f�1;&2M�UM���Q�P�<U��ikf�ѿ�b�����?�C��B�9�d�W����3�}��<,����*�è�v�nj���k�,T%�tO�[��8qP2I(���#�D��©%s��!�P�cx
��t"x��5`B�Pɫ$H��`��M4��:����J����S�U������Mv��Y,���
�¤�;��1�H�4.���n��a�l�AJ;jKۼ�� ��9V��f	��x9�c��H��)�Lu�U���w��릕P��_�AɎS�<
k�MŸqL(��t�Ú��SlLRjҘS�jiCV�յ�pW�*c�]�(f��x�C.I�ة���v�M��3L�"��2f_o')�h�����f�,og���v��ѡ�Ac����_��$ 1A0@!`P2Qp��?�Q���7�#���<��s+���d���̎$H~�<w��C�Dz�J��n$uמ9�S�~��ewg�k�O՞�@��#K�$L��$��YK|D��ƈ��:�8|�w�T��R���}�� ��-�����c>h�Y�e�����#�1�p��aaL��c��1#�?.G3�q���G�~ �ʴYj�3�#�?y`j�1�D6x�T�TQK]dQ���'p�[�aL<$p2#�����t��nDp)���1�<$p)��a���ψ�9��~|�,>��w�Ϟ��Z0p-Ȱ��S��Ķj9��w��s#�q���j4�2�CT��}���朌�p!
p?6d��Ȏ&A5��%���3�_�3�g�2|f,�OϞ"�����#��
�S�\(���5n!k��#�!G�>a`f8�~d�.$a��S�#d1h���)�̢36n��P�9a��q�we?�<<cNf$27F�7��G"̍e�s�F��9���s>4bCtFw���#fၼ;����왔G�u�8�wى�;ķ�G��0h�̎w;��L;���-�tG:�q��`~h��
,��Qbjÿ�c�}�y�Dw�n15
��o��d{��m��Gxq�6щ�a���=b����p�[���F�a���=R1��[�F\rwAa�F�a���=b�c�ո�GX��N�cl5�;���c�&��Q밍9��>��Dul5�;�V��z��-�6�dn���P�����G�EY�mȭbB1i��i:�o��pwFw��D��o�W-�Q
���\сCPb��̝�0�
�1(�x��8���x4GS�'�����
=n4S��"�[8Gp�$Zg
`���7�L��W��.6�8Q�Zi�5���)������X��5Dq(�w�#�w��-�5���,��P�?�u���nwD�W~�Dq(�w�Do��[��X8��!e?�����pׁ��(��N�E��
#��xq�[��0!Di�u��x�
��?�N�Yx��.�^s�D�HӬMd�Ģ5�S��w�N�'y>��f`WP��:�=>��*,�aMd�uJ-��gU��p�wD�/�{	�
��q(�!
/�=^;�)��[�q1(���5�N�S��Qk��i�߅����Gp��W�213�0��(�0�%:�N;�uN��	�|ǐ��#W���a�}a�a`j�0�n�8��j>��	��z�#�F�
27d�q���
[�X���톬���<�aK���h��ƈ��n��
0����)���B�&]x��ˆ���ƒ�E R��q�0�q�#�8��P#j��
C�Q��#�Q���A�Q�O�4Y}`z�.!Wxq�8q�r��h���0�-a����N_L5�u{uD,���zN$a]�j��ƈ���#�a�ZCTj���w���I����;����F����8un�'P�����0��8��P��%�HD�D!����#;��Ġ���S�FuXj�����
z矬���g(QD=q�$\Kp+�c
�3�ZCU�H�����P���'~2'�=&f��^�y���.&��|b`�}GvGPǨ`Q�Q�5g�o����&	
,�!�d<�#�~�ٺ�B0o�`Q��0�����Xn�Ka�,���剺!�F%$u��0(���P��|G�dQf,0`�;��9bQ]�F��Qa�-�u\��
Q9�����
<�ُ(e�!d��(���rǍ�̢8���q�3��HQ9���bY�;���[�,ču
"B���;���F�`Q,�F`Q�4F�S�l,���3!��Y���.��]�ƻ��8�G#F0��q�0��l�w4�䐏���ˆ���B0��+�`F��a��[�Dl��!`Ct�p��tQ�_
u�G^ �!�dHQf���GP��h',MF�`Q!E0�a�
gS��)���
!�-�5O����QD8��x�M�bj�`Q!E0�a�n��™��5D�
YDL��*xHGT`_TNT�G��\�7#�M_,
#�Fa�'-CS��w
Q9���M�H��}N�̝��貈꺣P��`��n��PNXGT`F�q�r�5
�Ȇ����`{�K2)!�P�:��!Bw��,F�\�N�#l5F�
h�r������1�����02uf%��QE�"`��Q]�Q�PGT`n0���Qaj�B��w�3׈���7X4YDHQE�!��
"�PZ�P�m�F�	�|(���$(���ic�u��A-��Ȑ�;�w�PF!��PQJ2�ńio��8QFG;�ul->Ho�$"x4���&E�1�Q}B%0z��ģ�>Z���(���7N�gXq�0�Du]�Ħ��qm �1/O�`��i��~��Q=$�"B�B�#����u�?��$ 01@P`A!B�Q��?������}����ܸ.���b;ԽaŎ�^��>ņ��Xy@�–k�<�g����V���$9�BMc�i^8��]�i��S
M(+H�H���њ��n��k��WX�� [a�a��$3!m ia�$!}aKfBذ(��]XX�Rя����(�.aQ��
a?pcaXYc`��X5���\�ֈW���am�}?�0�<�PO�B�1 O�B0�N����/V<Qų�,(�l�Ӵ@�O�~B���g�)�<H��!L�
bÚ)`@��� S�D#���?.,_�x��#AOƉ���,�/�
#h�0�ڞ��XP[�D����h�����5�[�/˘G�`�<�AmFϣ
Y����0)������J-�Ə�Y��-g0ţ��<�bX��Ο�n��PC�)��Ǝ~w��/���aAkA�Ł
)��-5�%@�lpB�d�B�
J0(��\a��P�2(���6S4�b�K)�)�/����f��)6!?!f7���XQ!f!��Q���[<i�?9��������)���S���l��C��
h�x�:�[�H�E-���g�͕�G��d,�&��[E�Ûy���07HdSE���a������l�qC����2��QOQ^6�)揗�4�ģt��x��)�>t����-��0!O0�(q�N,h��Ħ4[F6�O(q�k�
��0al�ByO>h��A�m���KI�o0������
�щ�[<m���kH���-q)���y�3��e!8��④a�6™���F�6Z26����ɋF�l��!IW�Y�Nƺ�0��fE����Q�N��Ņ���m��B�B���(�֛e�v4� ��]�#d�0�<����Ql
�#d�0�0��̘['#d�4W�8���q)��6Hё�B��
x�<zcؤ0"��0�a�3`�3��!鍣x�~G�����
h�-��!g�;Eb7�?�-S
���`��ag|�����6��6`S;�a��dQ��m��=Q�;�4�"����{s#��-n�ى��o0���Ygt���##�Cۖ6Q�a
Xbf���F�l����}!GX�+J06��6��ô>�P`�w�h������0���M��=9�f�m!FD�0-�,�hu�'���6
��l-�,�\u�02`Q�Ѻ[��:�a�A�7Kh���=A�Rv���@�-�3l�3e:ea�[E�3ævΡFFf�[E����øm���=#
-��f�
�߂��ȣ��L3m���M�y�&�?{e6S�_���#��D�.���?v�6ODYfT�;��Fn��?l��'Q�a�(�����y������t���X`bw�̓�bl��(�"C#ڝ��L����6G�o����b�#a��ƍ�#�z���`rh��6
�4=f6�`��a�>�ģ#p0�^�
��0,�����Hzc"�:_��themes/images/michael-discenza-unsplash.jpg000064400000173162151213255700015046 0ustar00���JFIF��C		

	

"##!  %*5-%'2(  .?/279<<<$-BFA:F5;<9��C


9& &99999999999999999999999999999999999999999999999999���8���������Q!K � A ���B�)*PYP�I B�J�P@((B
��fP�,�T�@ @@ ���Q $	R�*A$��	(��3$����2
%K 	 �AA HPd@$�H$J�P$T!@(
A�(��BBBdT@J�� � (�*��BT"��F`�B@HBA�ʀ���!@,�H���@(HJ�$�B�P%D�P@D$Y���@@��@�	!$(@��H
�ʀ	P��(BI!! �!e@�HH( $�*	�P�-	�	���,$�@�2h
$	* B�T�L�H!!dP$$�fZ$�5&ր�@����	(K"��@!!$ (�,�(H�I@ H���� J�@
dH�( �!! ���@�%@$� ��@!�N��
��$*$�@$�AdI�d�HBA	@Q � (TPD�	�!��P@^bt��PA PI
*
�	 @�A�%`��J�
T ��	 �P'�.`�H,�(��)�D��%D�(Y,��!I��$�)�k�nIB�A*	$���@A��YB�@���@B�H$)A��J���BX@	���TBp[�3�
�HA*@P%@J�PY)  �@@P*Y!��J���B	�H �HYH'�k����R
IH
@
��HQ �B�I  J���!!a   �ȷ�شJ�$J�
��@@ ��,�	���*P�� @	�=��� �	�P���	 TA!d	YP����H 	@�B��%��hP��H @��! @
J� �*,��I $A  @�x�k��e�HH	 �I
 (��H
�J� ,����H�A]~|�u�o6D�
	 @�H@�*`$PdB��,�	�� @����O@��.J$(A$@�@��$A��	B�!@���P@B	�	@4�M�}�ͱeA@
�HH�$�!A
dQ*��	P@d�׊{o9{G�j�@H
�$$(A(PHIh	@�P H@JA��@�@ H�ȃ�ߑzn��7� I��@P@(A(!�A �	\�W ���D�HPd�HB@YX��@@  !$�HH$�	�u�M�p����	�H$�A@ �HA $ʔ�T�P �$�Z�HP@   C0H�y�n#��V�d@	 ��@� �A�	$�@YP�J��@f	jB��A�P  �͝�W��o.�A $� H A�$�HYP��HI@(�@ �B@��H ����D����� $ �@$�@�@ � ����@	@@fA �" %v���B�Iy��8�@�A$�	 �$A H ���H�@ ������	 � �	by�N{�i�2�u��V�P@ 		�A��H�T�%!A%I��A JH�A�]�.�&��30X2=�˹�$� @�A@	 � ���� �	HP(A���5��z)��5�A�k��O/Q�$$H$�@�@�� @�L
�B�H!D�HA$�Y����F����u���lJN��;� 	 �A �H A$	@$	��MF�@�	B�@@H)��z3Z���qkc5�v��~ۘ �@�A � �"	$Hd
&�	@ �H$�xm��}MK;��Ul
��/B�m��A �I$��I�@$H`�l �@ I	 ��@@$�$J��i5��:]7�I�R�va7�r�9� �A� @		 �H$�H��		I@�ý����{Y��v��5]�.ˑ@�A@	 $� �l��x$�H$�I�@�Q�л��c�:�M��m�e��m�K�^�ð�$� 	 @�I� ���H	 �	�@���h<�u�/�}� 큱�����<�M+i���uY� @� ���I�bP: $� �@+�q�jN�w�n�4����#�\����`	�@�@A� �$�
���ĀHHUO<�r:l�Y���.�sJn��͌������]�  @��YX�	 �l$H	��y���ԺZNz6��-Uoi���Pb�X� 1$	 A�@m$�Q\����d@@	t�5]�^�;��ŀf��pX:8����8�� @@A HH7�k4
f�"A H ��@�+��5'M��#��W6rZ��\��q���H�
 	 $ �I�dYP��4�%�$	��f���3��3[
�����:���%pK霠@@A �	�@k-���ծt���@@�$@ ��@�p��n:�o��&fI�m�:���]��r @�@IHH$�	ԻҡEq�rN�6�  H$@$@46����&��7�B�'m�z��j-/�s �$�H��
��kjBi]d7e;�vA$$� ���	
��&gE5�)�e��Ū�����qҤ�zW1 A��	  �$�@Sj���
�'9���;  @�	�HHhN����&+�k5,��t��]�Ök)�}C���@ �Ȑ$H$K���
k�w�9����$H	 � A��8m�66t5�n	]����e���r&
Yg�9A  @@�	�<���y����5��z7
�I�H�$HJ�
������-Wt���ێ�a7��`���A �$	 �w�x�22<�׬�8�� @�,&d��yM�g�ȐA � @���kB�v
��u�Į����:���1��=+��1$�@@ I,@�$@P�U��������Uo�=��O>�I9�T[��k�̈́���I�κ�ݶ��\-3�@$H�J���[J��$�EWM�hn�I	d�Nb�@�������JA��@$��;�����d�Qt��6&+�g�����z��Mio6`�6}����y��|����d@�	(�h8�h]�|��-r
b�-7M�io��\R���1Ē O�R�p��1
��A��Z�������`	�/=����>t.���l�5�7YӾ��d8����%�,٥iN���=mh]�Uw�Fv��b��d @	A�,�$�I�ⷥw��)�4��F+I�Vt�8�k-3�A��by'��;�r����p�f��;Ӯhb�����H$	$�'�]����Uo9��`�(�XN�s^e�%f�A��[Nx�-�u��F�'�y�$��A� $��gѹfI �rV�ZN��9ęCt���W^���+�;�b @�|{�+�0�A���—\�f���@@5��;Y�
mxY��g�|�[|�\X�ΗJ�mM��\�(9��j�y�0օ��‹�1��ָ���z�$H��fJ[�H$�Jq��m:D��b޴5Qw�v�8�̍md̮�����
œI����l�b���.�Ʀ�n]��� ��_5�s��ނI��Ӄ^����1g%��5��{�]v���&�$؛LV��ciU�c�.&+�}� �$H��yִ����$�I�j	N�TJ	����Z�qU���D��撘���G�6i�Rm2�:�t�;�+���y����0R�`�iǺ��$�6�K�Zt��O�@�So˽��<~uҋ��,[��	�w�Ϣp�$�/�kr��u2g#�"�Tk�ܴ1LW�8�^�;� $�k���=���ɪ��4���'=��
��*�y�##k<�LK�{W���gr�[I��L����^U�2bI0�͜����ۗq�AB�0��Z���g2w��z�(Sk�;�oݼ~iמ�q�N��\��M�^ʼn%9��L�y'��u�8(��.�/�q�53ew �y���d	G�*:b��s>�.)t�5!!z
�;���[J���K)��bikK{
�	��%%-�z���,��A�*��WZ�gKY&������[}�.ی, �N��0jۆԨ�ƞ��^��+�a5%�s[�n���q���z�q���k��/9{8I(/�����m����_W����[�Q���m�kY.����-hkѸ\@1<��f�.+��t��A$�/�]
b���%�%�Ҕ�Է��b���mZf���<��ԳP.-jIZn�g}��:��Dz�
����:pl����9���+�V4���m�ی}
s��v3о\��5�:�B�[�=��`��:���9��݆q\�j+7��d�)�j�4��,��9��xsr�Ԯ��F�v&����{�� ����6%v��d�mk�����VB�N;��I�S4��ԤZ����ݧ=���f��u�YcR�w�:*��u�Ip�e�5�v�k0lc�+:d��5��L�Լ�g<V���}9�U�-۾}�=���S���,^o
z��JKi���ZN[��-���J\q���k��j��
z���g�`-6�1��k4�+��nS��/�t���`��S�л�C��SP��9n9`b�������f��5�8�V�1jÖ� jk��[r��9�v�:cs�b��?P��.5x�!�3ѥ���w;���������%u�M�	u���`x9�)λ�������SKX�W\���<��8����u��\Mn�X���l[.|\�1l̑l.����|��_M|6����zӭ��$5����
�z�+��k����0s��m��^���%7N{V�ƶ�5�s��E۔�U����緽�Z��6&��]���nsѦt��L���mial��1�ۖ�KYZؘ��Y���t:Uu��^Nˌ��O�Ju��>�u&��X�KU�7��.���U���9�ݠ�Ɣ�pki��<���)�anF��:W�Nv����5Ӗ��n_5ך�����������5��j�v��v����y�JK��s���t�I��ϡ�V��m�k�Yך�F7.k��i��h���2]��n���:���}�IҜ�A�̘��LL�E�}��y,�6�n�u����L���ӏ�r���KNY`�����O}Iף�.%�=-�M��cӚ]�qq={Uj�R�w��V�3��˥��_p��˝���d���^��S��N�~,�i�M9����as5�U�Z�b������=���䕝n�ۼ���t�'Y�C6J�!ރ��y15�^{���a��|�43-`l0Z˱57iϮΣJbߖ{61
w^Z.ܙ�ɒ����k�=����
�+Nt]�:�f�镛�2L�{�w^>}�n:?>w�ygZ�{�Þ�N�k���pk{:Z�Φ��Җ��jf{�<�\ؕ�5�[��%�-mr�v��ǰ��#=|��;%���U�=>�_2�|���:�5����4�lc��K\�2^ZQt��n{��MyףbVu�3Ѿ}�2Ӟ��3����nS�a��q'��|�W�\v%��
-W,&���]�F+�|˽�*��ܺ�|���=2�v�\y�j�=���׊Ӗ�n�^��z�ޛ��c$��e�̽<��-^6�:�om͗w��nt�`�Z�a�LWR��--R���ټ�1m�hǖ*�gy�:�wME�n9Qu�j7�p��+�y�W4�������k��^k�Y��7g\,��mM.���c[UK�Sn��-tŋ:N8��Z����6��%v��S�=���`��*
t�5�����J�\���]k�8����ݷ.��zyL���/<خ-q�톻:�lbN�<g~��솷1���<��ם�^boS�)�ד��pg��ޖ��Ê�mf���9О��n^���=][��a.�'J��bd͢��GQ�h^<�r�c�k�g��{=�u6�RzkΗu���gS�n}�*�Un�-ۓ=wo
3}+�۔�Wr⾩��My�F�*;`Ԧ�=�Ghh�4kk����i���4��ڼ���]��&4��i�cR��g���"��a�5Ǟ޽��\j����;_q���t��Vo+.|�4N�oL&�jS���=>���k�|:]���ؔ�1Ǟ���e��=]���<˾���㥽������
n����Ƕ���:�����+7��=Z'K�Ϻ��齍
�Ϸyi5�u���u�=�:N��m�Ӗ��:gN���>k\7kI��-�v�͗*�Jw��1�X�|לm&��3&�v�-�Ӟ�͝k��0f����y��93��������:��t��9�]/�n���SRns�������j���/U���`ֶ���MbdmgA���������=�k����Eiӧx�^��1�[Y&I�������Ѻ��k�׫��\/��ͦ렩=:��^�<WrWj��Ô���wJ3��ʫPv\�9�kϽI�W��y9m�]m�L�f�[Wk:Nt�Bzql\�{��3J�kaa�M��okY�����	���}Vx���w,&�6�c.-Н�Z��s����w�:���8�N���p���ϿK���Z�$�Ҿ^�������ھ��l�$�G>{"�W��-ms竫|v\a��Y��o;�]�P�D��]����ײ��ߗ�^�.}��k�Vj��Jz`�xX�����.����y��\�P���jM͝wB��閮^]W���l���ۤij�t:s�|gB��پ-��k`M�]ER�ZR�Y9�K<樽�z�<���=cs���XN~}=�xm�i1k���:����kS>�7��ˑ�v�K�������k�7��<��NwI�ג���-
䚛���Μ�}������_�"�\���^����f��h^���o�%��=�Ӹy�9�vG����:כ�=Y���u��s�o7	�l������3ϝ���=�C�za����������v\�~ˎI�u'Iϓ=<����/Q���$�PmJ�+�w7m�$�rڢ�or͝n�g]N�X�
kt�:v5��u5�c��h��_?aÆ�in�{ټ�^|��4�Z�u�u/��yw9�e9�OVۍ-mg%���lL�g�]���s$�OoN��9dΗ|����j7�c��3Ss�y�'A�e�i�k�nM�{?Ck�����;�t��L���}筽�W���[�3ۊ�\\If���i��~~z����E��l3����ײ�q��*�y�|�[��q26 ���ƒ�ht���v�y�E�4N�^����,�|S\�U�&z���k.�r�:]:�7ENJ�T�y��z��^|����ؼq���p�8�nMN�X�W4:�Ƨ]e�*�Z���׭���f���oE�x���u�c���nt���s�q�u�7�p26��w���5�x�F��OFRZ�v\ht��-�s�9������bg:��͵�S�w�s�78iu�����y�'��<�䷁��.ܙ�/I�|��-'[�y�&K���Ҫ�J�U)�7{NU��6o���v�4�[]+��f���y��ގ�Ͱ�:��cm�2֝t�w5��q�cTWb��ޚY�뭪���I�3�I���m��ygT�{w������]-�W^��!�l�/N��|��j���Ȣ�7_?�vL��|�C�i֬�,�;�:λ�e�7����=�.I��p��X�e�㎖�3������,�cc9YRv�8�t����9�l�v�nÖF��-u\l�\���KNw�P��M.�tM�u�|�-�Cךjn˞��W�a�-�ܫ4k{�V���;nWY�v��g��5�u�޻����ϖ�d��1]�<��Ŀ|�/:N�7�{���Lқ�gN��5�s:WS�'�y
t��o+.���������r�zӭ����5�)kEV��W��/?=x5&I�sŚ�cu�p�婯5=y���cghKW��=�UӠ��u�8�N�a�+&+�dd��ig��)����w��gC��*��gx]S��,��^���蛃Mݷ�����8nh�&��5���:[��i��ҳZ��7�[��K�`����e�L�fūĺ�Nn}x�s_>M.��o1e�u��Y�5��D�;�w9Tv��u��)�Vn��^>}ۯ+������뱞Ƽ]'>��n�[�n�pg�[Y�=IY�m�6lB��떬^0�M�/N{S���p��s֝�7gn��F��a9m�gi�k�kN+�	����ͶmwRs]�Θ��u�s���w�BwɝwV���֯�ϴ�d��j�] ��	��y)��iks7���U�:�-�]GB���ӵ�7��Ycbss���s^
eW{�6�͒kt�hj�f�p]N�lﭾ��i�a�\q禎},�|ښ�:ԝ��=����g��ž��??=Y ��^xU)��w͹��Elg$��.�{��Jn�G���buܶ3�u��ɜbY��
Ӧi���a��9���o�=�/�>5���t��h[����o6KE�+]֛�7L��k;��VX�s���l��5Þ�m��L�-wMQ�ח�=;�yiu�͚��kת��n�{Zמ��`볊U7�w^�&4�h�YÞν�ZM��^>}{n7��Ŭ$�==+����g��
ޔ�ey\c��T����+�]��]mv��Ö+ž�����#�y�qŪ��55e�J��v��knu�Ն(��6'=��A�zl�A��N}�w'�w�ё���v/���g[hj"��]��zW�J
�n�����s���m�hZr���,�צ����9⤅Ե�^4gm�������:m����^wc\-3�J�r��M�N��g5� �s]9�Ս���W^��)��ˌ����z�����c��it�Ͷx3�2L���t�޹{W��,�O^i�`Ԓ���Ì5�z:��s;N��z/1U�'I9n���/�Iȝ�\�bbnL���t�;k�Lڼ�b��/��-��E�ġ)��Y���ךZ���l�*��m&�9G.z:��i��ɑ���,���m�s���מz0�פKr�3��)�x��k[^���+�1+��w�:o���%�|�ѭ�ۗҼ���<�쿯-�;�}F8�t�q��bԛ.z.z��Lv/��5��ٱ����D����%���Uk#K]ǘ�=��:�Il��)��3]+�C\�}d�2!e3MK�һ���w/���5�xu�}L�zk5�8��e26���ܚ3&w�e��^~z���2v��c&AsL�,���~c^�����:I�ך홵���^�Z�z�>kZɈN�H�5�fS^a�CZ������n[{��|�߾[Nw5��[�y��;�u�����zu�2�/�{���a63���ͫ�s�h�='��{��7�r��r�0��c<�Lʭ�u��u��W\J/D�f�ܕ�ԗ$���o���G)�x�^n[ӥ�H�mng73Z�6Lڼ�;k]�4^��K��ZZ�3f��
fK$)�ּ��/A(���uY�V��]+��,�eޤ�5%f���u�Su�נc���kϺ�oc�4��W]�[s����;�^���w�]�5�/�C7�u�t�{�u�:Wu�ls���dZ�LY�����9ۥ|���ϝ�;��N��eγv��=U��7����<W[{��ն4��ӎ�u5Zv�q�Wu��=�>#��71˞�i;�u�Ms�w8�,{���.��1U�Z���]or�`,�׾z����p�;�	*5u<{���Qz63�������'A���˰��]8.��MfjX\I�7k���]�rg��_
f���ƕ����_@�s�z�k��B�n��gK\9���5��7��2�w���4M�w͝����BdRuɪ3Ӳ�彘7�)�qX]�w�[��.�5ڼ�!ӏ=5]o1�����r���ߐ���M��kκ�\jom��M����*�IqZ��5�
3M���#{�ɚdA���c7����Ե�v9��g{NpϤr�:t���gN#�3|��&*%!o^���skc�1�Bs�zn��^��kN^�|�\�(�av3]�<����w%�e��s�����LN���n�%�>���g�==G*m�g˞I������z)N�/����N[ѵ-9�Ա��N+�i���>���I�o�x�u�����6t����ʞ��ə]
dϣ�,ؖ�����-�z��``[O#=������^Դ�y��8%���y�Q8�gk�λ� lLK{���o��cus'Z�w��q�m�g��b��-Su��m�p��ޖ�9ku�ν;�Ԟ�ϖ��7��t�;Vv.�?E|x��Y.u˝m&���)+m��Uu��M+���t�;z��ڜwn\�k0k2Y�s[��*�ioc:��7��{6������t��3�絉}9��u����%�	j���\��v��]W.C�z,1j�־�Ì��v�/^zlfB�)�κ�Z���,٣{ho��Nt��6Vv�7�6�au�y4��s��W�3�]&�����$Iz�jC7:��}����n�y��w�^+��p����v�jN������l\�{�i��C:۶��o���b�����{��'�v��Ԅ��V��ik�=�57�!4N��:�2�����N�����5M:	��.��db��y�mQ�o4�Y^g�`�&��7�t��GB��,v��/�zj;]p�.9jkSC��9koc����i2,��]�<��o���t���o$���
J]�v/Yǘ�]n10k��]�s��r��)B⃖׎�G�ߝ��qYkBm]E������ݬ9�s�2s�q��KUs��޹�3ɽ��e���*w�{t�N|�ef-nbӟ.zz�7L3p_W���5�����͙2f�{�[ZV��»f�.�4�Vk\�}5�	�>����]W_d�y竅=?��4 !0@#"$123P4A%5&6B`������5���<�����Ϸ~��~��<ǰ}��C�>�}��<��{���C�ט�@�?�=��>����7��X�p�=��>��y��#�ט�N}��>��p�h�@>�#�9�-�|����=��-�O�\���7�w�Gݿ�?��?(yk���x����|߼��`���	�=���~@�k��y����!�=��>��o���>��<��>���!�yk���!��`�>Z��x������}#��_�~��<��yk�f��ٿ1���}C��V
��&��>��=s^���>�}�ٯ���|[�G����o���}��~C��k�~C���G��߷~~0��#U<��=��7�׿f�����>���>���x����jo߯p���y�-�~��?X���<��(}c�'r��D�o�h��P����7�#��!��Oӛ��,oK�>��o�	��{G��h:�Љ<7 h���|H��1���i��~��~c),��xn�&P{G�>�o���7�8x<����7�?V��k�]��X%R|1-X2c��G�>��ߖ��>͟�F�#|>[����<��/ԕ�����o�>��;��{w��ٿ�}�5�E%s�S���5��G���<��o���ۿn���~C���6uRܸ�-��jo����|�7��X�����1�c�>��g���
!ŲGe5��>���߷X�`��|ߞ�<�έ�~��<G�>aM�U]�gi�<��z���C�py�=�7����<[�O�gf���:��H^���1�o���`���c�{�\�k�}��ݿ3�ݎ�� .0��w�C�|���1�=��}c۾o�>����[�߳)k�B�B&
�9�ɢ��9�o��o�|�7��|�7��f�?y�{��<��f��[���4
�h2�A�h-W�Oݿ-���Ǟ���y����tA��m�zw#ƴ�1Rpbg䘻*�,���
J���Z>��	�o�>�������&�Qt�Ȩ�^�P=����Ĭw+J�R��>���{7�o�{7��c�|߻@��#��[��Ƿ\�a�l=�f!$�D��D8�di�,%�fo�w��~���~��-�|ߐ��O�!�c��?(�!�Y��ubE���%���3�!�RW
������+�q�a���!�C�Q�g���G㟷~ˎR��I�K�������
~��8�ԏ�,v���U|��o��1�<��>9���?~(���d�N"��Vx7ȻU≫c�&�]�.�t�_Z	���`���Ӿo������=㕈6}���=�������	�����/5a����-A1�@�mT��t@,օz�OhV�-���H���ho�yf�����-�|߷����B��3IV��U�7k(�a�"=��)���u�R\Q,���;��ٿ`�o�{���c�lsgٳ�!�<�y��`����1W�f�_��T۶"y�ȟ�&>��Q4"nӬ�{#v(,�fI��$� I>]T���_V������s������X�㪗>]vC���_��k�r����LbY����$�%��X)@�H�-�gû������~�L?���͏h�7�2�K{f@ʯУ�=���2P���@U%����
~Ɖ����P�=��
��{��o��7�8��7���o��D{w�ߞ��oݾo����°}(�\��>"ܼBX�^=;��NL�hrж"�\r���sgÌ
On���@���o����^S��4��q�\��!��{G�{��f��o�r?��C,�t ���nY�]U�I]��%�*�**�y=g��’Ed���Љ����~���;�bv!ד�!<A�����s!�G`i��b���"*e�RJ���eyC|*���QB%0��j"��7�`�Ǽ{G��x8=���&,�!�$�!L,p
p�A��y_:�hnE	���w�[���L�5a�!�c��9D��3�;�TN2G�w�ȓ�~s�QBh��&\��y���S��7�߳|ߘ���yd�H��pB�b��{�Q,�a����E�nL�G��h!*��������߼{����YR%����ɉbQQ���w�k���a���7�>��+��ր6"n���:2��;a'�]�� ����]�|���G;īc�6�f������G���׸yo�y�-�����i��^9�HD��r4�-G%�&&Ew����<�ѿ-���½I��cćA{C�+t�uBQ�EaxFбn��Įi�@0B2^��~����=��TnKe�"YR��i\qQ�a�0�c������F������1Y�} ��~��-�&�)�q̨�b�J"��~�F`��&�G2%�q�Q���Ѿ�	�w��7F:(�b���@��7���`��`������{HM��m
"������{&ɚ�@�HF�b���0wgX���,%�1��t���|��-�Cٿ=�o���"�ni�:盲� �/v�?�{����9{��Upc�L�]w�D!3F��:	�]1�����
F�<��Y;��2���V�~���c۾x�_��(��Es*T/I���t���G5��C�>��p\Th���ti��!� 娠nYH
M��C^�cQ+�&GIl��x�N��d9����<�ᲀ1~��Ki�ۘX�d>'�l��O��`2��i�w���P	s�FJ;	�!�>��cߐ Ai�v!#��a&�������:���@�2!C5��Y�u����h��=}�c�{G�FczzB$�]u�m�5��1H���^�0@<FG"jON�KV���Zj���v(^��u��*�o/V�"��\���ִ�%H*2�~���}wTI:IY�Ja�t������m���j���%%��Yo��؞�Hf���i������d*��Á����y��k��}�%�R�1׀.קyS+ڎ)��7�e��l����{�!��d	VɆ���U�+M'C��
.��i2	՜�2��8�1gx�c�y1�8=�~!���jƽ"�F�|F��`��[բ��V�i�b��CSм0U�@�Vźfy�Q�ĉI�l,���y���[c2��cA�Kgf[Kȥ��&�[��Pl�Q믯F���_��_�Ƿ��u��
0��6&����$G����Z�S,���0��e�����򒘖�]r���!��5�dOo�Ys�I��bh�|��
����'$�TP���5��5�=���y>Z�KN�[�y;�㺣��ҢT�6�x��ԧI��=�GSC��=$#&
�پ�;�+	��
�^Ѻ|����|��Yu9q�';��M�-O~��O��˚�H�S�)�Q?_
�N�{���ٙ:�Z/�s0�o�~�A�&��,Nc`��GL�t�3�!מw~��s,����
`ʴ��inCDuKU�@�V1�9��Aj#WNu��A��x�C�>���ӗ���龜��y]�f���*��E�y��j5��f7�Ύ��)��Hi��G8YU�2Ng��	A�a�u�����yԜgE&D澓�'��]V<!�D:�5ŋl�i��c���`v!��H<.�>��e2�����u�DL������Jtk0�+�|�K9�g� ��+�F��<>y��3 �h��u@�:��Ùf%.�lk�e�f�n[��%�-��
�k�׼pr�n�D2I�
�7����b��9�pj�<G�fٚ� �⡶�(��Tc�kDb�BTݾ#��v�nb�/��(f�(V�3�X��!����I�}��G��>i��@	1&��HeQ��8ʧ� 2��<e��xcg�|Ǵy^�h[�F��^�t�jy�,�1Bzm�D
�,��1'E��ږq7zQ!Jx�W��gu��3�������P��DPȔ�#��0/:�,B�V5�)G��3Dz4zi/�Z��=���<�7s�~V���d|d�<W5�m�d*�@�s
KE�����m���g/}�!k*��7%I��)+���4&�[��%mh�M/=+��[�7�Af 򮻼�ڬ�1�=s\�~�`v�*�l�x-N����H�����wu�) ��#���k�E>���w�M��Q-�5��5�����ӷ��g��C�6n�lL.��Zfh]�-��,(��\��v�|�
H�Q iK�*���^�l�k\�Ni�����#�7�T��m)��Z�eAi��A�h�}�c��Q�W�4�4�(ڎ]�E��h�
�8�����T���ŋf��V��q5�:P���	�k�w�zqmR���#+*uq6�,�d��&;%1g�,a!�ʒC�M���9�R�T��:<������3��uɵ����H�	1�f"?�<=�H8�����^�̄�-��`��p��
,�����湙��kh?���2~V�#˕#���>�#�"V�VH����Q���s�9��/!gZU]�ۘC�9S�2����3����^�#1D�R�՚�æ�E�a	Ы,B�h��$'��b�k����(�/��^��9�q>E��GI,đ�Z"�dñ4��pr��L%�fIO|\�	�8��8�ntM1K�d,�Z3!��g!:L�'�AdC4��كE��aC~xx��I����,:no��y�~�P����6�I�3����ti, NA��1��j�+#��$p&����{�q�G</�G�^W3�ֶ<K?ij�Z�Gt�dX8ʠ9++r�<��Lyԧoy/Vg^�j���9���Pw]��s�BT�J��Fb�L�A��������x�XM%���f~���'xHc�f-Cs��P�x| �ϡj�mY�Ȫ���X�
m!b�ԫf�O���j:湮JJ�6R��~3;s\�7oZn%�7��4Z�PV�	�|&�1����I�����K��p��^ �Ljݥ�m]�����2D15t�!��'a	�mY옚*��V�0�y2�*���"��XC�L�Rr�ё���`�
e�z|3�<���%xdD�g��B�f�ٵ	b�vnG��q��
 Y�����
�/��_E8=�����4G �c�I��6AA�B"M;+<���-6�/�(��sī�]�PS;<s^6}+Ѳ���EX��;k��?uz��Ҕ<�����Y9-q�<����b�0����L(�b9ӵ*��Gj&���k�����Ҡ)����q�ה��+��~G��]�א^L7��� ʿ�w���]���;7m���MX�;���׮��ٲ�,�2wY�h�1��@"R���g�׭��%�j����A�'���]V�V�L.m�G�+��+��68}t�l<]'��V�W�.�C�@��y�I��N����0v����dY��w�V�ѳ��Qמ���Y��u0�1'g��es,�H�D�:�༈�
V
�b;+a&i�k�ɥ7`w�Ҳ^��N��i�qP3u䑌���f#ք��J�LuJ�'�D�lj�rl��N�Ivr�yfs<��`"�40K*Y��D)��͌��4a5"��BN	h3X0ա�X,M�X�,�
�d�e/k������S���K����,����\�6���ro�����O?��);��%kD�T@�	y>@�񫖵n̗,̩f�|H	�ݞ��VL"�f�1�6�&�ė�ABQ0�B֒�M;҂I��)�n��g�٬�)�B�>8ԀN�be@R
ѲۍP�r%\�Y�F*]�'\}71J��Y�(�B���,6��A�'��lO"��
(LAz©�֗X�RX�d�Z�?�S�N�D|���䷮C��h��̍4�FZ� �E�
������J�h�?�%�<̩�N!����YN�ub�ŕ�0�+��j֣7'�XZv�h�T�+D�A9ہ=(y��D`2�N�u����a��'�҈��GU��X��ij2�A�L_	�@��)�J7��0�<LX]�s���3@���g���9�
X�N:ʂ�i��2<LK�����1V!�le��LE����-d��X3еh���\Vbu���uM*��CV��K�,]���~�G^���ۺ#�j!��:У@Fr6
s~�Z�E�rtz
J��ɆJbG�
�awe�����[�:���ȵ�z�h�(ܭR��܂3rP�"�0Ք�A"�2�2�˹p�劔^mO�"t�u�-**�؀�z�?B���b1y�P��L�;�ˍdO+�͔y��-�t�TN����Q&���a���3)�����e.��
�]Mj��"�쥙g�4�B*خ��f���Z��} p��R؀5c{�Y%&�D�x���|
�6�"�	G�EAKi�����1��3>�&��:��-��q6߻.�X�����Mz��cd�I�2J�[%���81ք�ҿ2�K
`4�
T�&,+�{c
a#�ފ{עΝ�iٕ�K����Z5.	�+�w���S2����6�5�R�?�UqU*$�ɵ����[�4��[q��r��쀛0�d�c} ��eK=z�J�0����"M1��^<�i�`���T�}9���s$�A��+�"�;-%G��9f�Ѱ�8|��"��X��������F9R�U$�f�P�5^�11�)FG���U>,�
 �V�<A[�$�dD{6k�ȭ0X�2���ځV�s��5y���g�q�8$��N�����ܷ2�v�q�t�@�Ub���]��S,��JMd���+��5�_〒\K���Q��=HXK�O#3I�H�7Bx�c;K��|dn��c�����3�-<+'���s��K$ɉ�V��)���R˰|�z�J��ń݀C�t����A��|�Drrօ�i�M��~8�����]�%B�J��;�Ġb�
�F	6ȗ��fR��
�@Ε�����B���/u)Lx�IAE�`v�Aˈls ��!�k-Z��nJ��bt@Z
��&g�ΦF*y[b��i#½]uH�2��Q��o�Voۉ]�B:j,�������b��֞��(F �#W��mhSMZa�s�����4��q�$�Pzֆ��4�H�!f�l�
��x��$�l�H�=:�E��㫵���3�d��I$ѕ��KP�zW99�ɤ$�ut��Q,8��nՆan�8�ˁo">�b��S"��MO�����N��h�|W��"��J��O
�:��VH8Z��Ha�M=!�j��'�����9�F'��x��g{��7�rF[(_!�4U�Bt"�X�,"S�O���6,u(���t�R'�U@�C�T-!��2�t�n���9�x����W�m��Y2�A��9�p<ܚpC�"|�E;�*�/�#�!&���2A<����*���ujCƀˠ`����0k!�:���k�V]ԙ�.��57t ԏ&�NmٖK	FYT���lN�#qSD�Y%sP�
�$���F����°����}�$[-�gɀ��*K�4]��ڭ���GtJ�|��CL�R��ꑌ<��1~�.�Es
�HnЅ�b�@Dn�%l0"������oA\u���P���
�َX%x�"ۭr���x�\eW/��ޒ�>�i��y�J�K$�^X���݃U���ުq�Z4H��#��`�[�g������Jf�Q<���%hG)u2��t
b�����jt�����G�-��q��M'1��I�$��K:��c���Y͕��6������5ZT�G����pR8Ԟ/�cF��C%�*!�ʬDՄM���[�
��F�9�d��"+Є��D-Y�6y�UZ��꾬�T�ƣ�e�f�X�j'N4�z~�{4��K�Pː���b��(�
��г�U6Ě��3����.K�Y]�������0��1i�����5x��!�i�w�yJ�Ǩ�f�Qԕe��v���6W�G�řc�Q���9���L���GX��b-O��]�~���J��J�JUb�~��8NP�Ȧ%�i�hD'�hk�?xݴf�J6�Wće�&�������3��ƻO�"`1FшY�1�����4�[CdT������]t��Vd���&���[ƒQ%����8Y�Zuu��翑:�7��<��4�:��uC�h�97�Ɏ�"��&h.���[�d�c��	E{��"
�.�L�B7݀����@���%3�8����*�۝F�
E���Z�cu�~�sL:6+ bYLL���������T�JR�r�>Y����d1���Tnі���M�քΉj�n1_�s�w�)���,
F�PG�ƵgfhŽ�0K����>d��?��c~�j{�QܔH� Ic�I�R�m�bP��{X%�Mv�|Yi�\h�x�:�OѡDz�
>�� ���ZJ�1�!����&.� 2�vG0㌆�����W����@ާ�:�P�O]u�����B^���YV��y���;y�<�'����
�d>T���Y���?Ɍ�y?�ٵ���D�颥-� $�h �9��}'i��遂s���Z��?e@�5[�G�;]JYyU�Hד&Q�ZG�^]����_Ж�B��nAʟ�"��K�PIѣ�N���a����B�AҊ�Z]G�HIUS5�熊Z�К"�$�K��l��3���ͳ��FP�]�a'yoұ;ۡ;�������D������[�I�дqX�<)���\t�R���?v_�g��ė3������IUDwf�5m�ơ��2:�Khk:2���a%�i�چf�-E|�(f[j�[
���\�h�L'c�z�!���҂����a`����cO#N<M�����s
��HoR���|�=!��9�v��R�T�v�s��بK��('׬�nP6c�Y9�b�Xݶx��b`�i�?���/HHyDS݅z+i�\��� 	P�\��UJ �h�x���^�y�֠��X�9[�c?�����3�+��OW浧��o8ӕ*l(�G�D5WOܣ���w��,$�q�ؐ��0��v/�\<�`�f�<_�4=yVi�u;�B��wd�4���Sq����Ͳ��z,�т����l�C(%��I�1��,��,c��#3^��,�8Z�&�Ga� �P�H^�
������2�����T�P�Z��np��ȴ��Yئ�q�]�"��Q�gsH�(�g�KB� �r+u����pN%SX�$�V^d�Z�
�'�ė��I���_~\�#I,h�"�:y<�jڰ��Hya��QԆX��Y�Y�L��l\*LGi]z�a�X�$W�Wdf�XW��V��Z�$�$�A��*�z
4�L��>N-Q���8����IM/��պ��T��<�h���յU��e��l|���*��fAKD-���b�Աц(_q�#8-���v.��)����:����A<��
%-�M^���3f;T�.��wC�P��֭ӌ�
t�^ $�E�DYLtPF�����,����5DvRDk����ԁ�"��R6N#j��O��g>E����!hN�S��4[b���{]&,�T�`@'��-�BiO�w�z7����j��%z��|��3��F)��u�ӓ=W��yA�U��R�o*7Io��P6���'���3��5�,Q�el-3B��V�3�Sf�}�n��uۀT���G�"؋@	����H~�?�c�26wo!��o$�{	O��~�8��g~����fk�PW���T��v(gL�F[m�3\�V��Fxj��Z�DkeLb�Ȭ���YDu������Y
{t;V�Ef�1C��'��c4��"$ F7��z/�a�O��!� v�p��D
J�
��#��Ȧ��?�r��vZv$t� �CuJ�H�+,�44G����/��b[���&Rı��4�רb� EM�1���u�T�x�kK:�n��<�X��djX��]��O7Gv���9t�n
��os���l�a^P�=z�F��D-�][I8yC��RM��z,N�By꫞�`PcgG��y�+����ND�M�y�.9biS�6���0w߶Q��ގ"�XV�:x���U�Y�`e�!�q*��$0��b�-Q��c��i�	涵.�gu���kp��H
�#�=��݅�	d�<�<\j�q��z�����K�w��TI��)��(�B�A�L�L�/,ξ�8�����08A��ba@H��C��V������Rp�&�$="3����§�L���2B^����5-j.��[1��HS.��U�s�98���J��D��x�4�
O���k!����aAaCw�*��y�D���V��U�V�~n���$a��u���V�F��%q��`���6��cVZ��
Q=Bֺ���m��Ma[�|�M�O=�4��UZ�Q^�����&���q�A#�#IF�:t�a��hڒ{�,�dnN.���
]�8),U��uP��9DWtJ��A�G��ۯV�ٚU��K!��)Z�j¥���0��;%��a/$�$�2��9z��\ZDd�9��n�%���a���Je��Z^��D����<���ij;�F��
KQ�u��W���-~�DfM���������wg#ؗ�O���þ:����91,��siݒV��� �߰?���Y+�M�:�Y�׹)�{s K��V`�-#���2r;2@D�y��ԅ�bb�%CF�[X��ҿ��i�qVP/v��!�X�_��d���
j})�$��9����r���n����̊˴Tn��h��;���BfCD��F��1`�FH�ܦ,���b�� ���T"iĐ��H�vM�u�Ӈ%N��
���w{��q�%۳d����:��.���($e+&�ΨYfe�:��	Y�J��e�G�?�H
cz�~)*Ez%���UĬ!���#��4U�(���I�Q�ZɘY%[u��B���"��*D�u��	5Y�nF���3����'�E*=�ߥv�&BM��!?�{ɒ1�<�}�n�2��'/�r������ck��{�S�B�Y[��c;�!���Y�BЌݸсTi�5��r�܌��6�AJ��6�&�A�uI��3G���-E�bjzc����O�������/K#��ew�V���-��NX�ПU�N�ۨ��F+6�����IA^�E��#��M61�W:���ex'��C��d`u�8�EN�@)$��ၬ܎'�!B��9}����AȲ��H���U�4�T�[�!w-q29���Y�d-C��#l�qy+36N՛�r,�OmG^7e�f���2:{+NXI.�6B��iC	�5��յ<�$MΊpA(t�c4*H�C
A���R��f�c�&�zH����.E���"�e�؅)�b�D��#CD��'!�I�!��+k�y�m�{�|��^�dž���Ca�Xq�`���Ww�]G�'^n\e[	�0K
	:�@9�"n�
ʺ�c��Ҝ�D�a������*BeGWXY2j�BK�k~�|��+��ݿ��m���)fn�l��>+&lV˝��I�E���d]�H�`�-��1Уq��I�)���2�����)8ӕ]�yU�N�1*�8�_e]�yӳ��w4�8Y&���4���ג�j��UF�
f�I�*,Q�M�ߒM8"�+ez*�- :�k+�/�T���LQ�Ø @��'/�W�
Kl~��l�9�T�b�U�I�!Hp��"��ΔEF��Yb��rYα��ܮ�\ʑ�%�At�-�yT��I*��]�����٪�)m�O%(vK�$�!�gZp��;.�������]�b��������g��m�*��P�xmd�ѫ�U@��O��o
4ZV����€�	�?P.O��6�Sy�Y��8���=A�v8:'�qw����q�J��H�A�<�8�	��2�L�$�2H�-V���\��1bּ6ڶ݅A�?�5�V�,�3H�Y|x���s4ˍ�¼&e=�b꤃|�b�K"fB���A��U18�0۫�#���Pr$q!mw R���zr.�MX� �(yw���:
��6r����v/���G��X�5�պO�	�^��;�h�FJ�|�h�옵���Ll���4��E��aH�� k�ֳz�SEq,��n�v�xz����իX����Zu�8��P�Z��x�V��1!�<��V�EB�R�R�~Hr<���71uś�D�B6�6��m�5c��\���%�*[����S.�85��X��U�g�(�-���zk}��)yz@�tAB *.�*�[j��?F�b@�\rS9���jG���'�%Hq��p؟#v�y㒣ҥv���&�^J
R�d�R[99�V\[Բ�-"ܥ2K��6�����w���|PEGx����I1�w6ɾ9"�X��ʆb$�#�n��N���ֵvC]�����lS�AW2TRy'�@�=&*(ʭ'Bψ����-%^���Z��
�9ڝ�*��cy���W��1��W�\;�k���~�K���n�ę*�K(yN��#`�|K��fVHT;�
%�P��z��CtY�ߑ8��w�N��͡�i�^]aoU����T���.��u.EK5��,VR|����e]����`�p� \bI�͢3�����64�4
�(ܑD�6��r�Ec}���I���^��%��t�έ�]�ѥ�oN�ɴ���l�N1��~H��E.ѩղ�['�n�s[�M��i�EaS
����֔�֔Y��5�J��}��w��Y�c�hiA���&�`��u�JE�^m꜆y�]��15'xE`��Sݹ[���ʾ�8�NE�rh�1pƣ5���ݐ�V�L	0��N�O=�����h ��H��S"���Z�b����:��M.cdm�$ڣ4U��!mc�~�
SFYc�{��d=,T�t�TGLmtQ��Ѣ�v(���əX,,V܀rY�*5�9J��]`�؉(�&W<��0�{��u[/=*W�:R���a�ob�o�Q�����ׯT�y�Gn&�@�W�B�Q	Ţ�N�c�%�?�O�m�s�w� �+N��C����!7�ȢUn��Q�P.R۩*.�:w,:�C_��9R=2D��DL8�'D�X�a�v�k_�~i�C1�:סkU�9�Kъ�j;�*ٳXe��ho,�:D��Ե\17Dh�6W���#��	��F��}r�畗�#��!�R\uh�w\msrX1z�L�I���L�Y�3ΜY���̪m;��μ�%��TD˺�KʆY
Y��$�C��f ���f�P�ˎ�;А�hu�p��@QOKi1�ś5+�1�
RѭP�'t�~ͼ�p�9)a4��i���y
��M0�ĭ�ꠅ�)�h�������EVif�cq�ZZ��q����O�Mo�H��+���Mz�V�͘G9�6�D���Vܹ�	gY�\�,\j�ъ2�Œ��T���]忘�b�����M�u�i��<l�c%��e��5�V����=󻰮�K�`T��@�X�G���Z�
���v&f4�V��7�2¯M������Gi�~�X�'"��!b�D�*����;׊��l�ae���㽤�^)%�RdI��U��D6m�Kf��{)]�M��"���:�۲)��ݶ����>�W�1�V��Iral�IvXQ�Wsm�F��ʽ !�h�<�j�-��P�ݵ�F^tq;Rįh�����J��\듍E
��o�����? ������‘ձ�)�FBw���������Xs�-��Ȋ59v�/1���;n�Qc�扑��ﱋ�H�A<�,sz���Y�K�؋����<Erz�f�����k��͎��A]%�QI�LGU�H���[��=X�CR�Lt�̑P�b:F`g��V���'���d��i+Q������c{Y0�A©��
K�y��֛J$��%�B������,����:�/fUaz�2���B�ǎ!׍�	�k��$,t#sJH�膤ޮ!*�:ۊ��k�L�Z�9
$�,%��#Ւ�#�����5r�_%��
CA;�+�5h��+u�\\�;�;\������Z�����a��mK�@Ҽu�X�t�A�O�Z��
��B�4N����j�RQi(X��qV��3�*ډĀ�l�7�6�w�e�߭ܒX$�9��q5��5?����RQ�K#�P4dVQ�Q/��,�R9n麗~��w0l��+&�GhZ�Ql�����F��Wq��(��E�t�[�3��m1"��Թ�Zbq��s4�"������yb�c�+�&��c+��f%�-N|�T�+
ݵz���
�+Pz�<kZ�ޑ.,��B,#*S�=V�ށ�ŐgY���H\D��Ԃ�E@cc3)��D�(��!#�)Xc���-$�H��v�+bm�fd��=��z*�:e��`x�Q��V��dKF�(��*1F!�|L�J�\�%�5��C��F�nOV��q6!I��N��xla\bW�+c�EXķ��yh�FحfXJ�Xcݙ�YI��1(���^�<g����)��#I�y���Ѕ�7
x��А�3;HyTh�ȑ�Z�)$K�i_�$�����)%D��ލ0u�r����G= c�M�N C�n�y���v~C;�h�!�,�KF7�<4j�B�����c�R�������vd��I�="1Af(����+��!�'�)�kOZ�X�)��IR(���Yr�;�تv��LL�E�?��[�"��YPڞXz0��R+h	�lC�@��^Y����\ض��6]��/��L�"a�z��T�b)a�����&;�&�B�Bl��X�:&���K2b��:c+:�
(�P�U�Vv\mWI1��U�#�4<�IZ^�%D���J��lc�y/�i�u�K-�P�T��g�����2v���ؠb��b���1�9%ݛ�N��VP�ʌ��V)(Y����UF^�<%��b2�%�X
�,%M�bN�̓U��;�h1�69!����d��J�^�ɭb1~0�kT���-�����bZ���6��RS(��[FW�嘛3A+��ܯs�LB.F��ƆBfT��Kk
�LOFF�z�<�#���G���p
�I�FRE'�J8��F}���^{"�$��B�d�5d1���O-�jU�^����F+�)������"���,���R{�=��i���o�~⍫�%���X%j�,��)j��6>+�e~:��yZ��z��w�I�͠���ƍ�rC��V��(R�O!.��7]���)��{9���${��+Ec�����r�g�u@M`�@��i�UX�R�2���
O �'��I`��f&i���g�ɌkIN��${
�c��.�۴
,|��)\H6�n6C���(!�ZR\lAD��R(`��Jpm��7`pM��L,�,چ��&^�IFlfJ�c���b�E�k^7s	=۰B��a����H׬cm�%�x�OX�C>'s_|efxc���Mp��iZH�	��Y'ZdT&3&&�&F��S2�֗/���|���ûȑ嬇����TG�d�����ew
Im�%G�Q����"���/b��KSN�N���8�ڊ�sڂ�)���p;p��d����y�^Ic�kޔUy��B��.Ԩ��,�IJD�rq��A�~�41zU�UBs��M�E���I-w��-�d��(
��e!�70�ir/�	W�t�gĢW�e"���

X��J��b���L���L�H��j'��:�B�pqQM��Q�j��K�8\�1��<L;wg�)�������	'g�
�[V!ʙ]��+�4�$V݂�a�!���2�~��
Kq
x��y��F�r͇�+Y�.�����)�v
�Ĺ]��ʬ��b;�k:�-�;ّ��ꇝ(�����f��x�
���è�[�ق�Y��K���a
�#�‘�����<|_@z�:�	4$�Z��eW�!��-
�F"~L���УZ�Y��eDmg'��̄�I�ق�v�b�WY�ַ:����t�M��qV��m��۟!��أh/u���C^��={��d�����˜`��OZ,?�1_R�%��"<l�*[!̔O�/�L=]��!b0^l�:��ժ�e)T�)EQb�S�Z
iV�թ��^Z?{(���"�J��.�D�:��O3�G��Z�d��q�[s��m������1�m�ı@��`,)ꮁ��S�
ePZZ�"�i�0�#����-�;)=����=�n�#����ٯeW�l���|�W��d�i�/`���6�vT�F.�x�
Pd"�����|+�g|ͬ�'�YFT�s�)9��Ⱦ�\�K��N���C!1A"Qa2qR�� #BPr��3@p�$04`bs%C�c�����?��?1'�vn�S�:�l����e�A�j��n.D�_�����0��(6�A���y�Y>@l�?�e�����5]��Mfφ?�f�H̙���"5 ���HƬY�Ρ�@7���ȼ�!w�N�CU��<����ɓ;�Fd/�N�RƷ�HH��#/�+�L_Z��j��K�'P,�K���!������Ew�2��tL;9�ޏ�������J� �ɐҫ�+��	��e�x��x���1pߕR�@�qM�
��F`;�a$��be�j�����@�j,�D@ZœP���� ��r����2��M	�0,Kv���\��
��2��o���}��2�4���n�~��Q�M�R��Vg�,uh>�m֡�f�J~b_��{��Cc�3͑E&�06+�� ���E}*����WN@6�0�'��%��p�F�b�m��Kfr��������a�w�K9�2QU�b7�Ys�0j��dبR��u7$��z d��4����	�#����>�2����r��=�ct@��AT)�W"�,��V��A��1�������(wh�H��TRs���z�H�8b����Y�ff\:�S+^�c��h�>�qd{V�hä֠7���ѿI�'b��������1�eRt��oL��Mo��O~犅2�R7�0�u%���Q��\~ڢ*)P��~Lȹ{RmM�G�1�C����m
��XƤ897Wh�5�#��b���V����*�C7��q�����
,F�>G�r��.f���xDcM�fz����8o�grB+v&97dLd�d����M�i�p�W�3����5�s�E����ք(��������G�2%���gt�������T&�Y,�GQ���]GqQ�&]Ha	����|E���HBt��ۓ�@�Өk�[��0qݍ�z��l{�i�:w�j���-y��}xˋ�e�W�;y�t5���}u�?�u.;��wަ!����I�.e�(��e���1��LI|�[3xuE�"�Sb��G��ձ
h�܈S(8s��&n�28ޫ�rfG���:������5�3@q�ċ{���6T�[A3_>&��T�Ow�.�ڷ��z��&�e4G�?Ә���h�`��M�@�=�����7�y��"�N��2���}�&G����V<.�I|TgPxX����@J
�@��2?���P�_$K's�(�x�;^d�I��t*c[繕��g �z�������]Y:ū��{LG�J~r&;̌ڼ��xL�T��?z~��h�zN���U�ұ:���l�ˑk��s�7??�|�AqޮB�v�{��P��s1&ى
)��M���RCb
s��O�‰�IpC*R�
� ��SP�]^Z�=�roU6TŽQ����X�2��Oݘ��~��t�4n8cm���d�
�Dw�yM4$��L��5de[1���8�M�����`Cf�B�+���K���Qv^��t�d��տ3�n�HAx�q�(n���A��w7�p="�U:��Ο���o6��Ǭ�@Bj��Зp=��TyT�(��*��bZ�k��<��>%�g�#�:b�s/&P���l."�r���q�u
-�c��K5m���X>���3#Q5]��_"2_���Ԯ=�����΋���b�T.>S:ѽ4�oa�����F��y2�,w�Z8��Q�68�n,���i�8�g��'�d�މ�[�������p�ES�r}'�"����:��)��~�ˌ��w�E\/����B1`|oGV���q��0�d��[-���Т;_h|<��wo��1����}�:�Є��Q����)�X2[���bkpO��������L۹l�M��m�i�
�����U�e��v�Į�����p:�u5}ɔ�R�i�VDf�B{MO���Q�&r�޼���2*�
/DUO��h2/�f��=���Y���Y+������
���\�#2(ބ(�Lp�b/�q}��Fa��b��g&1֬5՞�f�մ�y4(��ϩ��c����������+?N��A�3^��斪�kpO��
N�}�0��z��~�B
^�2�����J���1,��7��`R-oP��2fT\Uf��mfV`�T%Ҁ%���F�{���j�$@�ޘ�)�5\iz����0V0�F�Qэe�p����S:�����[*+vY���C�lQ�Y����b�w��q�ƪ�w�W���<�ȁ�W�3!�W�L~"��<}?�c��_sP�@}�Xe�]�p��k�
"e]��?�CF��H]b�bb�I��(�U�n	��1VP�F%�l�ˍ��q�x��=���ݽ�j1ߚg�:�Q'��3h�\�W�;�[�Hv��G'�x�(�
����
����ܭ��w�)\�ƣ��#�����	��X�����X���T
�7�N��{N�b$:"���2��՞D�0����vɀ/��q�
�������̥��e�3��Uhp%pb�Ͱ���"��&�aS�x�V�iO��}�&Wn�ƪ�{�+��5��Sl5*�T�40�f.5�ר�N@v�8`Ӵo�@��C;�*vX����73l��_��a���LZ('s��[zBre*�6X���0M��=f]9�"���3��ܞ�J��fZ��5>E}�5��k�i�.;Z"��*݄@��v��2X:)D�[v�Q�CK-��v�!��R�o���-n���p��0��U�Ɖ���6w��V4�3��f&�v�=����U��S婀��n��
�X���8��Ŭ��vX<<��xxU�
�P:Q����e'vQ�f�z} ���������}�p�=�0��Xв~�����P�9;(���Ss����U��ͱ;_su�$1�8
PѲ�M��0l�n���05�)1�kk��.S�5xʰ��	����(
oQ�g@���O� 9�~!E��{i��=�8G��� `�bb���a���*��FL�,pDB2���`��s3�K�ݘ��=�k$�_�i��3m�{���l�UYl�6@�]M����Qkd �n����(P���Ǎ�W@?�>Fe.�h�!�XG�a%��$lD�_����G���9�d6����(���"�5�EL�M�(0?5O
0��o��c����_�'5b}����a`��i��<kh
P�!��љ_B����l/=��R�A��1�i�1(X�Tlc0�X1YŊ�cY�'M���9����dzN��9���h
YgP1���ŧ�6Q�#dɔ+P��ɘc!�=f|^(�}���uh��1�‡"��X �'P��.��c��@��UP�r`�2"��H&>�I-z��$�%�:�˾��0��Q���yZ��9�C�Y� � ��(d�}���F_��g��
fyc+\l��x�/�)�~�AgN0(����TgW��X�d�*UB	2U3�7�#�4`�(%���9��9G&]�)�S(z�y�a}�+�
Do��u:���c��T�}�g'B-lb�9ʪ��zB锕Q��sQ�lo �u�R�B>v-g`L;�w��7P�'�����rc�Ԇ�g@iM~����׋��*xoMw1{V-3�$ٽ�0�����"0\:�r~�������yC����Ӂ��q};.�n_7�� ƏZ��=��rP�F�Va��k��N���p��7�����0����{v���b.iu��:�)y����E	��߶ӡ�s T]9�faG�)?Su2&6'�������g-vz���FAS��m�DJB!�`!��)�_y��8�Ewq(Yk:)������=��V��
��!�ɹo���Ǵ *k��r��YE�Ĭ�t�b!��l�B(�\^�&5g�f�*�P~�a:���$|�(�c��s	R���R���N�������zW7c�3�l���B�
�1C���a�cۈ+�\b���gF�b���u*rby�!S�C����d�<���B�L�
��!G��#�����E��/!^MT܈i���S8�_��=����o��E���p A�2O�t�+���p��)�?�6�G�H�!?eaB)�us6���d��uZo�?�ǭ�&d��Qq؊��G���Z��eǩ���|���|���BRMΝ~����Lc��[��r�fj<��	
�>1wE;�oi���7�'��*��`g�ѯ�������+[���i
���\ڏ���_��8%o���a�,٘_j�r�Y�va�v�X�r�c(T�v?�
<T&�O���r'y�8
�@�n�3�ꍮ(U�N��VtkS{s:q�+Y�C�3�z��;DR�|�
����o4%�y�3�Grw�Ք�p�r��Π�zb
Z�UDz뺁ɭZ�W8.���3d�Hezo����$ey�F�5��;{���r��
�^�[/��	8�Z�{2�<��<sN.���C�o �/S�2ż��^7�����
����b\�5db�U�8�!�abl���L��z�,&{fP��>F��r91UN[on
�9Fl��b>Z�`�2�L�7�P| ����>B���t�3[��cU�Swxm-l��HM�LZ����1kRE��6�N�A��<<��e�
�heMD�{Gj�(G5>-{Iw��wb_���G� ,)L�����z�Є��5�
��r�<�����4�T��b<�:{
!�3�]؃M3!�R�fX���#aS*��/TU�t���g�n�u!��s���k�����t�2U Q��b9�ۏ�>�x�#f;�0��Xne�8���~Y�[L���=~��Pj�1��������i����~lD�����d�,sd���z�Qc��0�w]���SYSu4%��~R����WP�\?�HG����gQu��QDV���dV����B�8�S3L�@.v�U	���m��aW�hUUI�9TV4�Se�N9av=��Ӑ8�a�z��&`��Iȍ���2/RȌ�i�8?�=�gj�r��{qB`��t��n5�;���Iw���8LT���J�şB�UKl��V�iT?�b�1��Z�d��Q
�Q���"62��w������?�0SU��?���r*6E>mG�GШ�^]-��"ƟU�&
�E��"׈�s��ΛV�߉��*|C�J5K�Dq����M.�rR�2q���΢��"�l��!�`�wfѕʁl�I�&W{az�6@������3�P�� gp�׬�33c�r-�E(��O9�a2@nУ
a��<@X�;i�`�Ż��q$.��=���c.rB�|���"Х"A~���4:{ͱ��x�P�H���Q��
Fs���H�w7NJQÊ��mt�?�,uAm���D`�U���{BK��EI$_�f�7�%�o ɲ�0����w�C��#O���z���'��п݇�3�j���J�)'��cՉFbI���Q��SoZ�߷��̕�j�B���5x5:sF�X�2�TZ%c9 ���
����2h�^������\(spa���}Vcd�D�W&���FV��o"�A�Pȿ��{�F������!]�S1lڸ3֏��@�3a`��״S��<����M-sʥ\7�EM���D�{�J�IwS�ONĬ�2 �OZQ3�)���#�A�y�R����qS:��rݽ!#
^��Al'ވ_O2�Fe��9�V��Q3I��#�>1��Q�����c�jl*+�
�5�Ա��C�3�?�gN�up�3��⨩�����db�E�Ep4�K�BQ�r`�v��{�EA�(��N��7�-}`Wk��g��O:�8�F\+�Pй�N��dIT��e�9qJ�Ҕ��l��+�<z�j�C�p�$����dk�+_i����F����Ā�	%�,ՕO�^����������_��s��5�EV��x�Z����q�,W'"�V����Aa���Ƹ��j{�m���{N����%��U^=��i�ow�c���0K���$,v�
�-]�Qc\�1xb�O3&�*�żf��U���CL#K��"��N�� ��1Dl��+��F̫��-�"�_�3�3���C��V��u7B�-c�Z���e=Z鳼J����-����	����ŔE��P۴£#ےA������{i=���iﷴ,�������v)�n���g��{�ё�:�{�L��X,�w'd��0zu2��h����4�Q�X']���2)�2�5���3e*6hl�
��cō��|��^Ѭ�wf B{���,�
�%f�8���2-�7�K�?(�
_¨���+*XQ�rfB��)�� ī?�ȁh���2ɥ�Ș��:����zz��f|�f��͆H/ńPw�@ێ�u\��%��S%Gq�6V;o1{.���5,��SKZ���KO7���.F`.�c��)o���E��L��s)���ue���6��c�|ޠLxN"ղ�
s'�^�X��dX<�#+/������1�;"B���`\`��q-��"���+�����1c��jG<ܵ
^0�ޢ;�:�*E\FeVf�0���x	���q+�_@f�hG��B[I$UL!�V�㱇FN��70�~�o��J�+\�?�����*��3������Hz�DҎ�� �ۼ}��+z�2��Knw1��_��m���~.;���Ǻ�DAHi-~��N�#��v�M�������G����@���a�����׀�=������WN�*��3o�K
'�e|,J��Fp31*5{��V�.��R���̍�#���&�Y�,d�@�@�%}� �M���aA�=�@ͨ��&��[�Slj��$͈�&FR�8PƲ-i=�_�j5P��T7�W��~"��s�B��o!���r�ʤݎ!�ɶ܏x2Y
��!��P4��a`
�B�]ޫxwx�6��PW���E��]�M���=�!�F'v�v��=Ɂ���X�N��"�9Ql��,���MiŘU#u�f_����cVI�Ve6�Pƹ��{D�b&%T\MG��L�X��G�L�1�c(?r����$La�$���K-1�JL),`�3�BǴ�tD5�"�+T8�����r|I���U�5پ"8�w�d���&��;�#�t�a�ETE���%x�؅I"����$�A�D$��
��F�Ⱦ!����i4+�m����X�5nW����ٚ���jdJ�U���_�|(�\N	��������CFY�,���zi�8u�̄��/LP��Y��S��i��X.��;�".[���T��D��{mP��[�]ڝ��K��'����
b+�t�58�<��kP<�M�(��0����(��W��IC��|��3^P^���='��f-�vu�)u4���3����m���]�;#�K��eO^�OI���e�\�ƞ��l�Z�c'
Hk#qS�B�H�S3�S��{D�	* 刔U����@	y�{���J�̵�4�Ω�;d���
�YW�A��K֩�
�&@U��P V6hl��X��m�	�>_�P��|�e��fq�����0�W��T\�m[�:��@�"���Y2��= ���k��Bu
R�;,!�w�$˻��e�v���4�P�/Q��I��}��b��߬�d�aV�aI�oHC�
�Yԫ�"�Dv�_�.�K��p���6;B-��2�S(93f3�eY�����:��L
�F�cˌka��F%lmB*�W,f~`L'T:TqTa����xZo7��������Q������_���G����_
����]iN a������6
 Ć���s�3�4�H[�}�j(y���[U�6�7ċ?pB�R�W1�#�
���*�&�8�(ccI� �� ��U⾐R�%X(]�٨	�0ތqeZb�l�A�3
k��%�no�DJ���� `uG�f��[��'����h����:��_��=��.�m���_i���wB�r��G=9,�j��1�5��8p����C�Gc���S�lw�b�߼���F{>���a0�u�Zk���o�H��gVȷ��N��Kf�
�
l�6I�[!V P<��^2K6�!*�i�7
+il
]ya���Xɐ��O���H��K�w�gE������b���:�"
ع��u_�>��銞
\!�1�lY��
�3RKQշ���0�B�T=���I[7?
�47s�Q{��rQ�-h+��:�8�v���	�P]F� ȹ��S��B�
-l~�]Kb
����u6
��s�Y��y�6PKX�rSi=�䉶Q>~��A
dVE�n��Y��a�;Kl�=��Bl� �+��j�o�]F�7b�Z��x4��7��鋷V7o���c��퍷n8����B�t���̆�]]���	��Y3	`K��r�H�<��ظ��c�"�lG�wS��0e8��t�H���T��yN0��u�Ku9u�}+��?G͙��[q��ʸU-��1�?Y���J�N�+b���A���;��_A
xe��hTcp�7���{s�{�
��$LXX6���	�d
�K�4��%Y�ۖ�ބ�o�;&e[`=�q�2"X��o*x��Wb=&@�R��7�2X�ƜC8���eUS���Mp��������d�&]h��A�x0�Y�G��jx�J��I���������	�z�Lj2k�.]��CpPH�UKL�C���G�p���"t�K��̠�>�"�Gh�lk�f���q.5�Pb�ù�B�9�\ZZ��
ڞj�Ə7��ɇOW�����K9Ռ�.��u!�|x$_5u8ʂnP(G���ZL\g�ﱾМ�EYԲ�G$3�ؗ៨8�v�U)�B
�v��@�SR�����%��J�3�#�n�@(�gTՈ�����B qY�����7�[6�O1�
w��n��u���n�J�3u 3
���h:��1�����*�E�1VB�+%L�a �'���n��k�
��J�H0��%)x�
�oٱ5��~�fj�P��ygr��>����w#߉���X�eY�����B�8?g��	P��uchCe�=��K�����59�����@M-L�I�*~���'�+HsS7���~��g茴F4�C�[�� ���ЀoV6a�E�Žєňc�j�B[y�+Xrjbe˥Z��“�y��;j�1�i��s
cvc�o3ĕ�2����[��T:��`:��N{���.�Wq�-M�8w�o*��ʘɯt4w������(�$-F6�W1l���ڐf���w�iXk��E�7�F.[�j�C�\��$ox�x��d��1B���x']4�7�UQ�Z���*���/s\�/�I-�68H�VC1�M�q
�?
l#�%6hr&�i�D�Dr��D.4��H�J|�9ql[����������r@ބ6�H�"1Ps-W��8�U4EF/��]���Q�~�X��`o,��:Z��*�C��zƦכ�+�~�u@�|�+��cɃ##��R�T�c
��q<<NT&�^���"��G�ɑ��N��J)}����71z�+f�!e@�yE�2��XuR��"X��[��!VF)1Y��U(	�_igPZ�����
����1�a��	l�Em3^EkN�XB�@�7t3��7;�s��"y�ç�B�L]2aU5~�(�Au2e�4l�ch-������j���Y����@���q� ���̬͘�Jv
_�u�j�/�s�B|�(��N�&�[��M+f[��P˔6�|L���w�˺��,�V���6FMͲ9�&Q�.��
�ke��U��5VB�~�#�-i���WZ�ъc1�L|c=Wz���CT/�(�5���K���`�-�
��#j^Ƒ[��*0o�m�N2⏴asJ�R5Z���g�:�g*@V�SB�W����[Nډ�!|Jn��q�T��g], ��4���)`���ɱ;�������f=9���h�W�b��ܦK84�X��W�
�>r�&��fj!��Xnl�P˜�M+Q�o�,�Ӭ��Rs�s2�p���Gz�tiee�ۋ�(@fRřn�>C��\�cv&�	HcQ<=�
1�c�(��T��0�-W��W��(	fBZ*��R;��
�n|�̢`r�VA���fs�J�7�G~��_�?�=�@�a�1�`\�����k�� ɓ�t��p���Q�1�P
�g�e���v�� `}=�{"#�%x�B|c���Y����1��
�9FF�}v�R��q:z����d��]�4��"��bc/�� ��s9���%���k7n�l~[������������
�+�w���1f�e�Í��nh4�r�^���[(bfz�P?���U���թ[`b�����&J���kɭ�*nuԅ�O�1�^���69��ձF�P
���b���ͳ��lI��s)��99�3�Sq����3&ȵ�
���A�2(��33����4_:���g	�Yx�X4��Y�6�����a�@��c�����A�r_���W\��0�1�9���L>V��>���M����S�1��j�LG�����yB�
��-��������6�R�p韛Z��b��XũnbY�gT?0�)��]Ⱦ�19\��s[C�UzF����G���l9/�J��#��Ϲ��3CR|�ȫc:Hm�
E�GY�<���SF6a-{|1Y|�9��0 7f0��V�5oW�̸��$�?V{B+��>�If"��!�k��y��X�]��vp�rV�[|,�%�b�h�K�v&�r]vh(��wb�HƔܙ�2�BE�c��c��1�Zt6�H�:�+H;�Ezaɚ3����i<W�+�M>*{	ӗ(hS�r���phl/�p`�MXC�W�!�����aF�@�& ���䰗~z�(�HP�p]��v�t�i��5�!*�!:�y��U��1)7”�W A�pB�l�q��;��GثI�����R�;F����Q* `s0�K��8����g��@�qt�;�g���4�0���
�Dt
��FAlLp1�)N��u��N���˺U]�,H\�p&��x��.����d�+����V��1�������g�Ǭ�C�Ϭ:Bm��G+�o�{���&�}ij�K��`c�CZ#����W�;�X{�D�Q-
�sS�*��P�	�PM�w��C�_0�U������d��í
�_��{�>v_i�K�RK��3w5Q3~ncO6g���VX���8�Ю&/����@!7�Fc����cb-M)�`}�a����4A�`��ͳ<%r_���V�{�����C���A3�:��3e1�׷���.c��1-������	�����T�����jT��I�`)������Y�\��#Z{�KT
�N�2����ƥM���F5���ze*/��q��Mq/6
M_�WLXU̪�(V�0�)-T@3�6��_C0�P�-{F��B��3ݵ	�]^c7"c6>h�2���q�A���y�d�*�8�x��^�lB�Ԣ���M[FS���D-㸝G������xA�o�����?�!�ZI�����z10U:/�d�M<�T�h���elE�{LV���uL,�B��O39Å��6�ť�j��%P�l�o�@,P�31��b�ELA�i�ŠMĪv;���-c�D5G����<1I���?�M�yE0�
�*of�z��-��NWX�o+�/�i��ծ�E/���g�L����'���
�*�ң������SG}��!���SA���~�~�¾&*(��6JL�
y[��/M%c���ד1�%V�-��n��A�����%_hI��O�]YI���F�M� ��a�X�Q���Z�#�/�v�:�[Q0�h��ٗ#%d���1�2�GZ��A�D��#j�~
�@;��Ɓ���9�|�2<q�?��s�!k�C��������0f�G%IC�́��bt¤�u���8�F-����7���,��������Z��'T1?�ȩԻ>����[X�̡��[�W]��	!žF�Cb���:���bMo�(`LW�v]��gh���*��"lx�>�c����€�S.���!6M���І �ہF�Y��C�>�FdI��.3i�s�&�������Vn.�t:�0���u ���>EuW54��Q���`�q�sB
Z[ig�s��¹qJ�jg
�(�x�q�c��V,�Uu}�\�Q���jQU3
$�@�dL~b��t�SK]�,Y0�'��d"��:�EP\s�&'5B��J3�� �wB�n;|*�\r���),�H�J)& �jA���_Ox�
=j�gN�
��F��{��U	$��A]�T`�|.Yz�d�}gX�@�o2����dt*,2�Zb�]�t�g^[*��L��O��#�Y��'�Qw6���j�K�;�@XI����c���F�Xk(�ww,dy��P�O3-;uUu�c��pܘ�N��B�F�`a����Ѐ�Opa5!m7�
����֨A_�6�x�d�Yb�w34��ls�w�k���PhC�Uh�9�1�bP��rc�pP�S�,U5�na�Yv����Q;zJ�aEk�żf�@N1���P| ��fS��T��~�Cy�D�븡�te�@̣P�V�L�GFf�}���r ͬ
�cc8�j�.a����19&��Ƞ&68�@�\�����j�c��a��~�.�i�����!\,�H"�
�\&�V�BT鄜�h��(�F���5�ga�pV�N�>K:�� -���pn�� 
faR��w�(�0�DЋb�b���r�SKV��i������_y���
�0�p�܉�Grc��i�0����Y'sd���͵��q��V=-��1z��6�{�h��\���w�j�a(O1�{�>�8"d^5�oX��$�vx����^�%`�iU���H��{BN0��,�UԾLE��dB��7Y�xAN�ڢ	�/�N��b�ъ� �!Ǒ�5��u�(jb/�&D�����Q	+(b&n�4�H�.=B���&�c?����K)�����nL���?EkK8����2c8ڸ0�k	p�j�0����v?��F����	-�@
�Y5��i���ɨ��J4u��.���17�f���w36�~��@�v�	�6�����a+��&@�Xi��Q��~�A��V�u6;Fa�I�(I+��`c���\�o[=�c32�u�g�O;q5hfb��*���U^����/�yi8��&eр�1���4�8a�116472�܎Ӆ��	�hi!��q21�+s1d܆;m2����va��v76��	�w2����op›��4����!C������5�3���`�OQ�����n��n���b#�Mј�Ƨo�dCm2j��521ʧ�տy�6l��q5Q�E�ڶ��v16e
*�
c�v�/�2�-q0}H�x2Y�jXc�Fu^W#&:i�w`�͓�D8r�P71%�Ap�cِ��@NeY�WH
��:{&�b�����+%Tq��]ȩӱ�T���2�~y�.{�Z�,�q��cǼ�ݵ�v��y�?�~�����A��h��#	՜�B�%,s��K��iĥ4��Lp2 �h1��Wq�n���d�FO����П��/�1�ND&��8��]��x��`���9`O��D����yC1�>9���9@^��(J���#��bDj�,_����;�CAf,�>�v���Ö���*�3�k���^�"�iä�QQh��i�,�CR�,�&�X^ЀK��,�bޓ�%\Pt�|��l#�Nw���(I��>�{�ִ�>jhC�b�ȸ0�mZ(�DŽ+�*�R���V��s[i&e�Z�V& FOٽ���2�P��P�u��{ٍ��V�8�jږe�My����@�c.����ao��{L$��<�2"�4"C"�lg�(dU7W	=BGבI.�zL8ө8�0����70)�m〖�W�DZ�
8�;�7���q
5m9fK{�&f8���q���uM��9/e�g����w���<B���#c��9F�b$W�:j�Q} Ox��|O��i�_I��J|�8n��T&��@_�{��ֻ���(�t�n�6���_"b�t�r2PU�>��/�b�oX�5���ӥa�ֲt��_$�<���������V3�5����?L���6�ݺu�˲T�T
Y�S1�ھi�)&6o�Ŝ���Q�&���F	:����!���|�}�b�}U7�d�[�S1��C��֦-GS_"m��^C�-vP�]�
��s����6�a�{�k12c*�{1�=�L�2%3
�
n#��T��$�����*�[!���V��0�ia�,z�C���|�)s6��Ǜ�(!��	�Bi��4�٠���x��Qm( �#Uo5�:������LJ�lc+PP�n�܁)rk�ʘ�IQ��kƵL���N�Y���[-��agD*�*_O�� i5���8�[�@Gq��5E׏K�u�VH_{�	~�-x��4V _�ᄯ3L`�H�}�{@A�Є�i�[12΢���=x�2n�Z�����g�<��8/Te�i�khĸ�L?I��m�V�L�\F�vÉÌlZu��G0�Ţ�H�[��pT���!b�e��|�8\�݄鵕�-���c�F��2gL��Q�e*���V���\��"�iόӐV�53BN�C�_�Q�r��X�9���2!`L.�2����fD��#�	�0fP��!�����K:3��7��e��ԾOs��fq��o:�l�֗�ի���s8s�mb9�|O�~ӭȄ�HK�N"F3���� �L����d���U�;�
YN�cBm��lNm)��~?2�f"�h=_i�{i�jx��9J5R�g�@E\d@V���(�03�pn�e�}A�j��4oL��K�t�F%C�C�?��(hq�R��x�[#�ثOa�ő�ee�L�1��U�����o�t��+�_�̸NW��M��N|��k�ed�5na/�h��/c+��v^ҎV��L e?H���h�Bϫ�+��U�ؔV؊�����p#�� �B`5�
U�"���z����Ʒ��/��P����;�&<zw�ķ!��Y�L�
3ÁY���X�V\��(��.U����Z ��>W\�V��Zϕ��i�j��ʶTd@��'�J�)�N��V@�-�q����#hF���ؚ�;�k�e*��3���g��{$$�k�&��	[\G&ɘ��,{�(�b�u�
g��P�2n��h^�a�<�1	YuP~6�A+F^��i���	����3�P�cxY[PW7:���	lZ�q�C㼾H=�D�5�u;
��.(0�ƴa�(�P�@����dqFP]�mF�Ke���DueA���
�m|�y�H��Ǟ�=�ō���ӭ�0.��7��5j���O�����t�i���6aZ+�}���5銸��ׅw��?,U�m{���=
Rv����75�\�!F�(Qx5*��&br��Gd"��[��V����
3P����C3U7x���v�`1e�J��Te;���ԣ�C�
F��b֕�1�Lv�ԙ+��;�c��
s�g8���"fK�%�}�O��ዡ�t�9b2̭t�bL��}B\�p��Wk���Ә���Bmb�'!��;d4�KdT�,3��X�j���I��I��A�	��7�d�Zo�
�7�� �6=;��MeE�\�0cE,��cEv�|6�������Ð�K��"�]jlC�����qcELH10Q����–QlV�E�D�Kݥ�6&Wɩ�h}fe�����Q�^\ ��su6�!�\l,,a_
c�Uб1^u%�Tg7i�]�VU"u��}��P����g)e���`И�p�9InF�(j�G�3S�=@xd$�T�k�X<���"����6ը<����L�ؔ�&2�Dҁ��J�@�7��N�to�P�vǠQ�L!�T%��2��4.W�.)lp��(F�(�ؽ���"�a�QO��_��A�0P���`E�Aq�qr�V�<*'%�^ј���_����l.�n�b�®4�'�bLM$��أ)�k����B)l�&��U��P�D�dL�DG��򚂉�[6�
��Ձ�E�K}�0�&\Jw�1�����;�csdGU��/z�7�,ب�z��ƪ 9�J��e*{�5x��UCԌ�r�c���!C�Gg�G��⊈˗�{N�>@Uщ����
�MǴ˄e>�C�qZV�
N��->RC��9̮'T28ml{������9(��㖪B�&�B�Y�I�2V�����6�!64�)���A�L��4V�*��)���	z�]�0;�p���L#!'��5�-�V0G�4�(|�I�de�	�McM�y�Ó�hO�Y��nP5n*Pϕx�^�0�V��3}�ݠa�lv� ��ks(�s
�����@�	�ae��ぼ�����U�v��Y�"�B����W�΋�!��Q���Kv?(F�V9�<J��Йh�4`�Q��Ϋ��V��=�!|�N��ιIűc�O�
�A���l�۴�B�\{s65Gal��HP�S]���'�U	�ތb3���y�(PP����Ρki���X�y�`N�:�$B�s�Ǥ�|�_&T���/�A�"xlb��2`u�"\Eօ�F�#;G�K���g@��Ȼ� 	��
��;�g^�eǵx�9�szN��"���b�lj�Lkc�"<�X�Uơ��*!����n�޺�' ]I&)R} [b5UԢ���
�ʔ
Lq+�&E*�e5i�����>i�6���
���8��]�`�Pnw���eb#�L��-�Wy��ƕ�A��Ӭ�V8J���=�\��UGW�ԑ:�ε��H�t���b9�T���'uc1oS���'�,��&��[�����u�뻟`�|���:��XEז
�:w���@¥�6�����n	Ye�|���n����K0I�"��`������0.O�z����D-ΙN�TY��3c!B����X�f�.-�l�����
Iȡ�ĉ�3(ϯ��x��7�c�it��%�ծ�S�m�L�۱�12��E��).EKb4�[_�@cD����z�e��v�I�a#�^Љ�nI��!�K�Ք\3���'S��y�>�5����X�O-�`A��&{X5�@��b�u���Ź�a��3^"�u�v�x����n�
͔
E���p���nc(#M�yo�?\��bu�ά�r�8;�vZ��4�,k��Y��aN8+�<~�R��@�)N8\L��ۋ3I����Sa��GJ������\�dK�XW�Go-J~7�t��㏳%��6#_J� ~}�*��N�k~*(�w2�==��1�1i.��c����Y�?H���Z��ى���')�:5@G�2�WZ�	՗U�+�71`B͘��S�]�]|�<:�<	k��J{VI7:�@2׎��6[D`0�Y��!4Ӥ�(�̮��Ձ�y���u��*��^�����ؘõ�4%��:�-8#��T�l���4�-���Ŵ\����FC�CE@mki��Msu�:#|ap�Y�ᅨ:�����?Gvj38���u�{�%Y���R�`��V�	���"�$j��eWs
d^>YY�O�'�T
q��V���՞�y��Q����e	�����L�mM�Eu�Ga�ɻ�Sl&���6���+H�0��+D�two��̺sk��Ԉ����m�x)�;�O��}�� �	V>hSCV
�ʡo0>�d\�>�+|��w��*�#�b�Z�df7L���e=���
��J�`ŭq g��.�]Ó'I���t�Ą�LU�#��b��n;9"��:/��C`N���(��d������xH�P졡��"���u�E�y��RP�a� \7s�4J[α��dQ���:��ct:�١P��e��e��>S��L���,i�%�QE��0w�!n᪠6�@U`D@q�ky�ң�>����+@����p�Z��>�Q�<s��#V��ۦ�s�����
�|�֢�8��	B��,v�2��eS�����|4Gi������b���h!;	��EԩS]y����M�29%��X
퐝��H���,I �7pff�Z��]B��LB���`����a��ق�]s:0�SZk����5O)/&�,*��*Y7�	�9��q{D@�S!�2&;*�V'�	l]��r�FL`��\�e����Y�YU��XW����h1�j`�$9
,TL���3�&���Ո,��S�38�μ1cX&
���e�y�]�s7QU.�]��SS�h�͈�KVlI%L!ŽXˆ�B-M^"�3n�2�+m�C��"����@F5���4�_�P^#�
H0�]4g)d��uc�i��yG�51�!�ڧXo���l�v���쮾R=`A�<E(�J,e������W*i{�c��V��>p4
��}�uA�1��qԫY��5��GU�*�&=)�b6�vl��L5f�w�w�&v�N���3���	&n�Q�1�1�^��37�1#���g\�
b�gTǥT���α��i�Dv�)�f[J?_��c�(<r�K_u�}Qu�P�*w�N���1
�MZ�[3M8��E�Q��f���P�@�@̸��=:�3;�턙����t؉�cS���t̎5ۓ:u��VS�Ú�L�o�a�̽AQ2��Wlʳ/s��a�T\D+����:(*2��t�=#��'��+ 6�P!*IC����Q[6^��#�N�6��1��1��C�������Y:��̻6"^R
q�fDQ��_!,��f#�՚��6D!�L���+qQڋ&����X{A�k��J��1ׄ��p�2J��b�߭L��/g�")�ۺ�5��찮eE�ґ��נm61j�VD'%��*�$����S2��8p�S*&ER�S�y"5yc�j��la@U���:a�!'q��~p�,�
s�q]�W��:)ک!Z�;��E-���Z�5�r8]��_���	�!-5Aዶ�nvѦ{�p�
o�f �>��g �>i��խ��\��f52�[gcj`�,s
�W�H�3T��Ί�
]��2E�;	�
��9���J���;�B6�Dʃ��j�?�3�������\�'-����\r`ek�Q<�!4x3l�83�> :�]z����N��T�ݧL���!�CT��0�&�xWQ5��&Z~Z�u�P��ζ�d):����
�=O:EN%��,��3��1{<˻.��c�$i�R�6��ic��'R�?�dJ�Հ�lXθ(����A������V��gƴ]p�Ρ��6��'�@S�|ƾ����3�������iҌ�I�`WC�mS#��1u6I>*���s3dUclH�J��BS(
��qqCx|Fe��Q.R��5X5csb�	�0((����En!�!��T�"�V��kOl�z��c�r��b���V���g]ީnڻ��ѸVVDJcU�B����
�#W�R��-@�n`Z���c8A�K|!���
��a��q^��f�K1u�"�T������ygs4������$)+v`L���3dEq��q�r��r0>%E7v��P~�M�d@���Ƞ!�}c=�c�=�	)
����|�o�n�aBZ�U�XY:�����8�V�fT9umB����UM���f�]��}M���	*�-�[0�fq2�b�H��r&7$�0�U�`��+�DJj!�繇.zr+��F�9l��7���σ3
�{�:���|�y�� ��?�:�:����*P����s0��Ci�&��^�t�j�\��U�G�˕����3�D�Eg�{�M�:���j.��H�E��\\�2�eŝ��n�gk�,T~q�:�7|:��E��:��W!(7��u��d�*��7j�	-{KZ�<�r()|EuP_��+��A)����])��>)�P��4�j�<`���JL���WP���G�[�n��ÙP�h
A3�5,��
�(1�j���k�x�[6`��P���rB��J�x�b���5
�z�Pv5?��E�j_�?�� 6L�� ��W*�av#��<n�R-Lm�J
CH�Io�1�T��1U_8�D�,�)C���F9��9
�Yh�س�����0A�"3a�͐�MQcd�	p0I=�iB����l-������b8�Q�*��֠��c֢�Їb9�4c�櫸��Y�a26|�B �0P�[�q��?=<�`�Ey��(-b总1�L�m�����KFb8��7Ƈޠ-�6Ģ��,8F*Hm�f\�;��
��ݖhDtcX��dQ��v�u7�-��"m���%�*���8Z��־��|T�{�!P�(�2��>�Զb���v�d�*H[�:9�f�	MԾ���R��9!`�T���O�)������͋+��#�T0�o���̸���2#V��WB�W�ց��S�D|�+��vSL��C�ׄ�@��.�Мx���<m�[�i���p&~�K�6�"aB
��--K���=�=;Xƀ���ELj�r���k�:�l���,��4�y�8�)Pu�����L�0�(�3�'�0;���k+�\���T	n!fm�s��
Әu5�^�K���c�&cҧ��5c{���YE����T̎�q�bD�KczaL��[�c�Vc��"���ƒ:^1Fb\��ulb'��U��1cL�
�p�qdE�n"���(����j�1���f<e�ly1�*[�3
� !��K�x*
�1���%���lϢ�Dǎ��(B��9�[3im[�<*������RǸ�4�G������P�l�{L��	6"x�65I���=�>��l-К�ܡ��E����o5c����B���D�/V&W�U�y�tR�v"���({4`��E,\!��S��œ5��k�8=�-GH.:`��ΓQ�	�ߩ�u�2�~����F�\��K�1G����[mkt{C��[�їe���j��DW�ikpL�*���wEp��u���d
�$%�
�Xa�;%��70�6׿�Q0�e�"�&lۢ�3L`#��\�{T8�cv�J�Z����6�4l��^��K�Rƫ�:􂰲pLe���;�r;�a8ο�����2}�:l�i[��Pϴ*4���Ψ� ����0e�����Z5*��N��,�6�[c�ʠ�u�&Akp5ej�$��&E�G��=���H��]P[Ю}&Pr���%"iV�e����C
�:%v"Xb�Emާ��-�����ب�D�FdƠ�cfx�5UG�؃Y�Ð�T
���4���q�buo�4���^�D�t�7�z����Ҽ\N�
�6؜ݡ�J+1��2aF�3U`�c�b|���`�a\jZ�Wc\�΢��c�	s�ԫ��Ir��MZ��@����c6Ĭ�?��*1�(N�?(1m��r'��Fb�x����(��xV��0�6J�����TɆ���	h�1��c�AԿ�u~��Hd�b�,
�V�6@h)E�n�Yg&3a�KMKԘĚ[�1�o�CI�TL�..�\�P��o0�5
���5p �w00 �Q�����d�t�Z���ct���Y1����
\�ǰsW=�*�;�51*f
������	�33�z�kc��eP���ѳ����LJCɎȮ ��$0|;f�ᅽ���R袴�5��5��@2v""d��Ƙ�`5
��b�<����
9����{�\��Cp&m���;�Ń%O���dKE5���u]�P���c���C�#X:�J&��`@�s�+�"�`^c�u&�Zmn�	�1Ɓ���gV�%���0
����f�G�ڡ��F,���BB����V�V$�xB�@��-��b>6��Pu_�&*U��i���C�.�t���R� �qB:����H�Ǩ� ��f!So�&ϩ\�Q�"������0����5t�s+��>0#�0�K�67gy����32���q,J/��(6Х��[��X2�����,u�'�%J[���j�ϻ���A��1�أغ���ȭ�Nj�duM��zG����Gś'�1� BV���C�Ub0(��q�FPE+�XO�:�E��B�D���ls0g�R�&ө�3�WgZ�2�p,��2��f$�Z1��H
,h�{O/" ��̢�B����{z�LPRB1B��i�wǐ#��͗R���3���'��z�,����@�6�ٖ⁔�p�'Xy��ba���C@+O:2�=��V�_3(r0
~�j;�����E��ztJ\��7�r5�Ϟ���J�;L�M�~��gP�rx0��o�u����]�He� �7(�R��ZQ�S@�D �{��ǜd��mB�1�i�ݍ�4�sX�b��b*��/xqx��Q���qv�6#J+��&/&�b�N�&|��둂mB�1�b^���K���!�'����1:U�W(KQ�ng1:ly�+d>���4 u�pYn�T�=�g�
�eG��'�1�u6��92�Uɐ찰
�2�Y�L�l���׍7����+:��r�BZ���MZȯ,�[~0���\Νu���&�������܉�4�ެbY$��glmZ�~��6E�i�)��Ә��
��#�g�z��sNBkW������5�@71�n�m�f�ABbÌ���>V�ob���'�]L�s!���S�+��^���TN�+�&�hT-��@ޡfSD�=��&���"���ƫ��(��#�m���
���^f*�'�u�*�{�W

�Zk�a�"��!ZR ���5P�$5� 
CX�1,�;��
�
��u}}��C*�eh�01�c,Û6�au�95�*b|�捕h�6 �F��0
����Ʊٱ��0c^��k3?U���԰�c�A��X9���͍m�&�H�*�z����,�|*
��1���ߤ
r~ԥ��tL�ȩhH�dɓV��Z��eX3�E�A�-�C}��@��*a8ɴ�C�Ox���`�E��!�uw���E��3Y{k0���r��NE��y3Ft������z��P�t����̝H*�֛�6Zdʤ�x���D9�X�<Aղ���z�b�Vc�S�'�"�ؘf�Y�cT�!�aF낸�n���m�ή�S�\OJX���*9F��B���(�JC0䈡�9)��<&���r!�1���e?,BzU�د�?�_���`��7��ɓQ����L_C{�"�)]�f&�H�f!JN��D�ֻ�N:Qg�N�J��px�*�������V��3:�;��s�@��>���f��QJ��~�~ֈ���11RY��J]K$5���/�HP�i��%J~_¹�j�ȝ6CD��1T!�o�4��&�D9�̪}\�1+���Гan�ϴQ��PP�hV��ХҖ�L�B����c��n�RYˠ
�l��K�h�
k���D!Iޣ�F*�y����E�n�ہI�䍻E��hQ�upkR�x$�u������-[_s)CXY� 6�jVp�g�N�6bB8�<א߄��
;�NU�4��O���)����e���u�CAizVQ�s���b��f�@q�C�,$�c����>Wx2�q��X�ds���J5�]f�bc��R���
\��˜@�"�"טE�4�AJS5
7UW���-UB���ݖ·a%j�����A�2oQ�bՆ��d\+mZ��"�B�(@��U��`���"�׼-�����c
���7pe�B��5�baE�Z�LKb%�qM:�薹i��Ʉ�߼�ƶy�����j�T��8�3�#�vF�g���K�nj�1�2d̨��8��\�����x�*�p`R��:����e�"��jܠ,�\9��Cӕs\:jvW"�5=(�c``��qzB�[X�)�\U��ͥ��P��!V!\�a�oUs&��8,��h��AYf��^�惁��P�Xˆ���.�`_Oy�;f�nw��ʁ��T�k���S38��"�~�#R�0��Љ���E�T�.��7f��Ꮐ�F�@��ML̋M�[�e8���2�AD�L�m�aɔ��hh�W�:�B2{YM���E#c�zE�x����qd"�ti}�{�������r	�6��=L����P�L:�U�������^�n�Vg�� 0@ P`p������:�ڑ}���/%/~V?�c�ǰ?�����C�q�X�l}�Ĺ_�?����_�oOO��Ki/-%�%��$�*����;n����v�+�o�N.6����� ���&�^?Y(�%zm�p��v�\�W��p��|,T^����p�o��*jQ��`�D"�Т�]:/HZ<�jQ�HB0N:��Ш9���qЙ�D��Pr#EX^
b�؄x��*
B�ocB��$Lp�I$�
Kb�x$X��n���
���Ƕ9[R
8���\��hB�[IQ&�<��"D���q
(E0�x�C�pD.�G�49C�P@(����'�B��l^�qUb���5��lN�}�]8��mS\�
"�ҝ%��m��m��iD�X�|=,I-�x��؄lp�q%0ӑxx��ؕ�t�$��i'ID�Ŧ�zo��!���iH (�F$KB2V@���)h@<��I-:��F n!8�c�"�ƇJ1DX���!p����?�,9��s_��# 0@P`p����{��_�?���5�I�}����{�nk��kZִ�>[����z��H{G�O�?:~@�s�'��~c�=���I�|��&��#�z��q�k\�־S�-����w��o�=��~����|!�7�Ǎ���=��YYo�����?J��@�a�F2��T�/:���O�Lw���ѿw�ߡi��w����M�����)�|��{�{���{������{���w�w{���\��߻��>��������>&����O`����/�c��!���;��'?
C�|=�������IR�-~�<�M�g���w��{��w�7���k�j�o����`���Nt�-�U���*�m�����IX9{X	��c%zR��_���/q����K\k�ܐ+C��iգ+B������*�-{ol��]?mQ5���"qc���k	����
�
�nD�@8a5�<��{���)�����#M�޶�oۓg ���-�-�G8"�U�e����c�Y�����ch���Úp1���MK>� M��H�U�1�cD�DM}�D���c<YR��i������!W�5�b��0��%��j0�X�t�i�&>-�XOE
[��cI��A���_F2X�ɭMjh�j��#ŋ�
���k�q���r��^�
x�(P+*�qk�kA��/N�H�5�5�kZ��f�4�Y`'���ܹp'f�Xm.��
�Eͻ��b���8�t�Ӧ��C����0���MY�U�G���kJ�r��j���u�'	��5��h
�뒺���L��ɈXD�֥[<׎��n\�h4X����	Is�;�;��D�'�6;avś�ܶk��D=U+���B�}Q�
q�1��7-�v:�=[z��!�+�=�SR�TXM�r'�Jc�J>��X�]����M�k�֩�A��{��&�E{���^�Z����rC�%%\��鯢������W�8	h| �*s��4�H++b�<.�ؽ5�7�vB]������G�E��:^��+{>��h<��׫�R��i����@���� S�c���Ξ�KF��1y\=t��-:c-KW\Н���X����Mc��#X*�"*
<i�Z>���<�[�IhpF
�Q��L9\�c?|�Ex��� ���7�R��-��j]N1Ͳ�D�1��o_@֩1��Ћ؈����x!+"���f�#g�r���m�ယ&9�
	w�J�41�B�A�okt��8��&��� <VcV�iewb��&�n
A�4TD]X�h	�K)����x�V3K�\��Lr�V�,!7�컔[S���+4��`8��hW��a�p�x}w/y!YH=�f��o#�E5�v+d��@��`p�U�[�<�kX�~Ғƺ�nk~5B�X@�2�� �	yר!Jջr� iA�5S�h��ל0����n݇{�YcLc*u.����⊈�[�fY�M Znn�.N*4)`���n�Lm�j�&6�h5B�`q��ұ����a6=+K˺�
<V	�"��e�|3�i����l��-�*�K��Z�M��
�iY����i�ĨK��J�Q��1x�2������R0l���Ж�H��2(�d�,��j�+j�gX�^��r)B�e�aRn�o���2Fm���Ё��3��#�Ԅ��_��ds��jk	�h҆�MU��-\U���<�-�@�&1�<^
%ڃ5��B��/楸��b�,�Glx��ֱ�K�A��X��!,i5i��Z��hr�;!d�+1�fF�r6����jWA�"���#2A�)�%���"&�Rc�$.�$��,�f2�x��-1�2I��-A���u�",�YSx#2���nI�5�o�T&T�
J\�n�q��*�&�!���U�0��� �ʦ9n*%sy�S$�(L��e�CL���B�f)b�c5�"�T[���%L3y^��\,�1�Xe�Ih���Y�׸�3�X�Ca�a���Y%#��-�ݱn햌g�%�2��,���m�c�]e�e`\8e�hJJ"-�T�2��c5�����q��J��Lpf2����$Ʀ� j�Y�B�)L�>).h(&`�,ݣH
��P�&i[���
�3vGb��h�v�j�,��(8�LN�)�W��c.�e%�X���*�w�	HK�J����m�&�F`�e� P�W4ڌ9��̊��3J�/-1��ins���&�KXXM�0�Zl�!2�5�YI���/<�W��io�e/X�����"�&�𲐖�bQZ$�s�*`�˵	H�������<���mF�4��[wlڶn��xBf�a먣�Ҵ1�G@��\�`׋�Z4�c���S.G**��ZVZ�a8�^lY�3n3E^�:N�V���7�5x� �Y���V��홬��$L&��h:�3Muq0Ev�b�k,RVk$&9j�sts, խֹ����o[�2�P\�+[��ض�!�~�,����Ixc
:V�2�5MdX��H,���Fe�m�w�2��1t��d���m�ŶC?����x�(�
�!��-�ע_yldm���K�rZ�K���0��ZKec;���K�!�"�\��s�k��p	2�-�d4����IAgV��	yj��n�	�بӨc.3hJ�������J���~��t5��U�sA���6jP������\hQn#��@���.��1o~�f�a+G��iY�x���`%�e[B3{�˷��{$#v��v��+v�fV�Hڒ�R͋�j䋮���8�T�LM/�%:73��%˵oh�R����KS�U�m?���L8�k���\�)h9�QȀ��ޞl�B�֖�<&=Z�6Z�E	yD�R�Rm7T��6�$�Yq�iI�a�l�HM�sLp.�$`4H�u�hF	ee��{��F׽��,��aA���j\e����L�����DB�؃R�+`5��1�U�ܣG4�Idh^�F�ֲ��"]&HL5�i� �2�{ܖWMAe�Nł��c!z�o��bX8�2Z��(Z�x��@!bҡ.BZd���6YYE��\��)T�Q�)jT�&�t���!�Vn�e32ƱL�;w2��l��k!k���V�l�e�2�V�ڷ/~׵��A�
��֐�bv,��!R��, LR�	��1�o�l���i�b�+4ʕ��{V��n6��5bk��)�ĩ��
U�Zw���ɾ�ܳrWd,��p��N�
V��4j��g#w#~��mVZT)���N(�#v��
X����p�PH��LBL�	��)�T�.m��ʵ�f�Zյ��L���* J���>5�U�8�+ѧO���𘑫R��6��M�v|�[_b�ր��<�̕���޷�P�ѥ+rաGdJ7���[��lw#/v��IdD���2�b.1 ^��d�]�j�*B�
V��_�2L�)L ��Vj��Z�GMh	�B]xո֥H�V��@Z���u)ly`�@ndro,�,�p�.��Ȱ�n6��	�^<
"$��-T���r��z_�[��C%29z�%¶T�%.��q���~��+]]`q���c��i/���B]en���++���cq��>'���L4�j1�ա�Q�u���5�L�XfDw�DԸ@L4�$�ݽn]�����gZ#rk�Yn_+zu�CA�Xӫ]u*[�\���vfrK����)\�z`�ԣT�Y�.4��䳏�|��w/W�k��L�J��hG%���2���o�)ί�]��.�k�e�I�Z��P4(�+JT���hc6\K.�s7���4tU�B���:8nt)�1�DJ�(�Fo\�����o/����fjU7�VRw3��{[c+�_)�J̰k��K�<߂mq�)Z޸�z�5'kʷL�IYر[ґ�d�c �l��9r]Pw�r���C��f��b��/{㺯zR�K�&���rB�SB�1�3W(X���{�lҶ��.!���ؔɖ��9ZZ�Z5
Q�)q7��7p�V��ڴe�5�-oL��kL|lP���d�Nv����h����@I�)
���	P
X����R�S/w#s#��=P���e惂Kl��� Ъc����͇qq��Î��r�˷�e�]��1��n`�f�Y�e�x@���{�+�������UV�?���p�(�fQpէ��+!1 "QAa0@P`p#�����?����c��e��
g��"��o�I#�Ɔ��(��K�E��yQ�:��_��D!6�O���6#�s��1�/G��}j��$%��iH�/��+�Ԉ���V�qΫ^_�e��R�G�8�����HbgS�Z(�#:[%�z��2A	��ɗ�-7�5_�,PYDA6JC�?Zhm���H��� �O����x���D"�B_�l�}ꆙ��z���סz��#��vX�1�X��c#���{�W%iO"�Q�W��{�G�$��/E?�/l�L�$ɔ�,�+��֬�9��(�+�=,r:��M��3q�/���^�&2*�0+11�
k��.��6�c�:���;���_�3�t;(���s�Ŏy�9>�n/�_�yE3)��8e�n0쟂�ʅ�d��E�Er}��|�X��<��n���D��9��$�cC�����
��)�S��^"�z/��c�1�c�sD�{ɉ�D'�P��D�n��_�,�ŧ3ؤTb.�A/�x$�7���F&���?H�#��1��)}ӹ�Dmd�I��ֿ��Ǻ�/����/��g�&ffQc����!w���v��챷=��T�K���h��EBH�;��Q&K�o�~�}������1�W�gP�����K�f.?wV��e��	���ۡ��c��W�,�>��1��&�$�����9Բ����_�e��h�/RϳǝYb����w���Lx�D���V�
w_|!������.�f��/��c�>���j(�Ԍc�w^���c+��	D
��e�1%b�+U���BE�d~��������"�!�B��$CD�n�_m�P�1��V�i���q�z�>��#x�%D�b�Lc�~� M
K#lO�a�O"M�e����j�Q|G�p_��}�O��'��}'���s2��[lx�YD��E��	�ȱt�&"��z�49�_cݖ�un���8c����8�L�ѐǫ$�v�$���D��|���bb"��TB,��eQ��Py���uMVJ�/bOI�5�
C���c2����k�tWdvQ$��P֯}L�gs�GоLLdG���B!P�&C�����J��cHB��W=�?FC���.ŗϖ?zk����O~(���.KLi(/VV�2�S��k�c2�32��~��>ϲ�-��_&$!��%���� �v�'��׎�����IJ�/TN#��c��{��fFH�	���&,F>ū/��m�4Jb�~��$�?C�����TG��}G��}�
G=�TQbM!6�c�҃t)��B�Kdc���T���S��҂��
���պ#A����c���#�~��Բ4��d��S��
��X��ȃ$6_o��%�E@��B!�
E;�O�kȽr^���>��z��z���(P)VZd6�%���#�BL���c�^�HrB<��'���:r@��uD�{�ȂH!����e"�p-�,��V��Zx������t�R"sמ��'q��C��q��]�(�8���[e��!�G��7h�`BrB��J첆�+��,��<GH��F�69%
�}���ӗ��dD�'�E�pK�H�V��IvY���%$�j1&QD�y�,��J21��F;r�q����������y!�<F��?�/[fC��DI�P��Q�P�x�b�ޯTYC�Y[��,�<J<�/N4�ev�[��:�B8!�6�1���<O�kĢ�)B�@��{
u
����&ΖK�!
�3��^��Q��Ř�#F8��6�.��H��\v^��O���m��(�B%�Jt����՞�G�e�cc��,pC�H�+�ʲ&ER�JEAᮡ$x�J<J,sFFFR��/JZ<
��Ec���VQ�x=yg��[�P)ہ�Y�x�P��F%�^�]"�߉��z�J<
�U��V��-�%��^�e�K�����r8G�z]��E�Q�ϳ�g�D�1�21

+u�YG��![+��'��
E�/Tx�&>�J<�'M�x�!Aen�Z��<QEZ,�����[��O�
8P52BpC���#��/u�,���V-�<IZJ��c4(�x����<Y��b�_j�D#�
D(�铝t�������]��h�$Qen�rJ׈�
Qcy21-$&����}�I�p2 �A{l�fCd�B(�Օ�>�C�)�=c��Ib�%��P��^"�.�x��<O�P9��|��/B��)!�#L�ɍ�!��_e�ڠ�Qen��D�61�:���"2e�!�]�E�b�6NJz�4��c䲏�D2���*Id��ݞ(/SP}�(��U�'x�+q����q��cؽ�d-���Zm�n�=�Ź��x����Bl��4$$���XT\�YI�K��Z�NC/R�P@��O)GU#$��/c\>K(��,�9���df��1�r��x�x��}�&bc���6?��{�4��#j��.�B2N���;�$�YD��=$EB�	Mq�.LrǃT4,m�e&3���+M�Q�yvAIH�Q�r]!���P9ӑG#Y:�>�bE�ChrJ������?���P�(�(�wh�"Eӥ���x�b B��D	K�

��$�����p1ę2�,���i����I҂^�R�����L�cc�lD1M�$~�L3�uY����<y%��O����"T�6̛��̚G�mPҲX�#Hz�Ƚ�L�g��L�O�3���X�dƌzЋ��<K(��@�Om
�	*.�Yd�4���Py
E�Ej�d�C�?FO�˨��ˡ��Hڱ�P7�3�~�,K�E�1y3����<K�y�#n�'L���ʑ{���.`P%��(I��,�yx�,����}�%8�:����~'��F%�	ܢ�$�	#-K,��h���D�<���v&�]Ej,�D��3)�;K���e�cX�e���ǫ'�PBcy��^��b�E�y�-Gb,�>�Պ%h|�D�#K�@�TB%��8�1?��&B��#P�rpy-D��g��Y�4�v9�^��P)\�m�{2�L�ɓ�ז��ivB$dFEF<1>DFg��S�)+Tt�ֆ��)FLP$�,���S[���B���
{!�c�ĴNl���Jޞ�|�q���2ǖPG֡��I�i�`��))�ő�9��G�8�3)I��[�x%�Y���,����F����ٔ�t���Y
D�W굔ɒr7���ICC���(D�2�d�$���1t
�l_��1i�$c"\$)Lƅ"�<�Lc�$�Q��$rY	%Ɉ�8$�0W�>��.J<Y��&NOtE���d1���m3��,P&�<L�,�tإ��)H�<�P,[L��z�쏑�!�I���"cXєI8ؖ$:bwM�b\��̟#/�,�ɔ^��Re�%IQ�.Q����f�2C��T
�1�i2�|!
���C�n�g��,],�\�yW#��S��x��h�e�u(�*J,P�E�KW�L�<K(I�D�pY��cf-#��zQ����"L]0bb�LD��آK��L�I�*F�<O�Y����lhɈ�I�d�����#-F���ZO�%�#���RF�P���E�D�ɒ�]0��"�<�:�h��H�d��`�m��4T�G�ZP),�]��IJ�"��fg��r2>
(���MٌRb��O�&�Y�1��ŸWH�(�9@�����`X(b�Q$G�'�g�h�NB%��c����Z�|jYc��%��X��(�%ΤKX���1�P�]6<�)�X�1�&�k�/PN������x�Q,�!B�d��VB�"�rK�I�_��!��9H��bjC�!ɖ.ٞ#͍e�$���Q�ő���أ�LB�FD�܌�C��]��
&�Z1:�:��ي1�1�:]''S��'bH�!C�p�I#�&�TG"v9�e2��G#C�Ydd6�i�#��^�d�&^�P'�)�#�cN��C�s���`s)
��i*�!c(MQг2ǃ&t���.E4,�#-1�C�������22��u-
��7�7�|�Ƌzl�wc"�C�Fird�t�g��$"�����j�:Q���'

1�ǒ�c�CNJՍ��9�S",�DL�$�C(��^�/V&����<G2OzF/15FQ��O����fٚ2!H�P�u8�W�z�K(P�ljhj(�u�p�ߡ�G�f\�I1��ɌrP�a�cE��.�,��$=֛?�ectW$�.�1�BBr,Q+�<i1!���"��
�:�X����#,���z����$��� �sG�uN��2�N��,��<�S�lqe����	�Z����12~ID�p$.����b��2FlNُ�>����c����kRƆ2Ć��vQek1�G��BlŮ%I�P��/B�!L�.�PI
���=�@�!2���cl�F�'$F��,}ek'�Ҳ�1c˃%�,��$2�B�	bE���rep8ci�Af_��c��!�J!����	첄$�P� ��e�dF�Q��C1��2ݐ����ԣ���_lvA$�.�Fd�z�D-6yC�z��IYeo��x��z��`�9(l�ߑ����X���f/"\c�a��I�#��themes/manifest-premium.php000064400000002357151213255700012034 0ustar00<?php

/**
 * These themes type 'premium' are listed 
 * but not allowed to be selected when MetaSlider Pro is not installed and active.
 */
return array(
    'retsu' => array(
        'folder' => 'retsu',
        'title' => 'Retsu',
        'type' => 'premium',
        'supports' => array( 'flex' ),
        'tags' => array( 
            __( 'minimalist', 'ml-slider' ), 
            __(  '2 columns', 'ml-slider' )
        ),
        'description' => __( 'A 2 columns minimalistic theme to split your images and captions.', 'ml-slider' ),
        'instructions' => __( 'Image, External URL and Post Feed slides are displayed in 2 columns, while the rest of slide types in 1 column.', 'ml-slider' )
    ),
    'social-play' => array(
        'folder' => 'social-play',
        'title' => 'Social Play',
        'type' => 'premium',
        'supports' => array( 'flex' ),
        'tags' => array( 
            __( 'minimalist', 'ml-slider' ), 
            __(  'videos', 'ml-slider' ),
            __(  'vertical', 'ml-slider' )
        ),
        'description' => __( 'A theme to showcase vertical images and videos.', 'ml-slider' ),
        'instructions' => __( 'Ideal for Images, Post Feed slides, YouTube and Vimeo vertical videos.', 'ml-slider' )
    )
);
themes/jenga/screenshot.png000064400000134622151213255700012011 0ustar00�PNG


IHDR��� ~PLTE�����������������Fi���������������Be���������������ޤ���������♹љ����~�ה�ݿ�������∪�|�������Y~���� -3��������p��)0��휻�������b�����\�����w��"(Wz������햶�u�Ё��s����ν��l�����z�������Ot�i��������������Km�p�������&*���z��!
���Rw�
���&6@$���
���	���ۙ��_����Ӈ��%1+��צ��3;���Lp����g����ܪ��:?��͔��_}�����؊��<B#���l��� "��߀�������4;���-6
��ӂ�����')���EG!)~��"1��䜵ʄ��KL$��3EPXw�)	
����!1;,:*<F6���.@M���f��6B/)710&@D��톧�������#1(42��������%���� ,&z��EJ<;9.%0����ጵ؎f���QQ-���,2-=D�qq��e��DH+��ϓ�ҋ�����/<4�����QRAy�����������=OU�^������(&Wq����p���y4ObU�LetZZNIZ_��������ʓ���cjXSkKppf��	~ue�ʌ�����٨8\r�ƿ�o`4�SkX9tF��J�~U��`E-
�����4��yի+����ح�p?�*�p�MIDATx�|�Ok�Vś.����BE�x1�C��ҍg����0����)�d�@�^L(&`(d�E�C1X��8����"�~�~��s�Sd'm�mI�HVt��{ߛ�&�<_��/&�'�e�<���(˲V�je�4ڋj�E�5J%ʮ�0섡�y�t\��M0�4� ���P��N��t�`ww7� ��2�8ߵE�e��I��h�ѣG�w��T������6�~�ӷx~bY�+?��~�׀<���<�x����Է��J�$)�s�{��J�R�Z������
}����K�B���ŵx|��0g��)y���=f�����kH>~7�\����8dQ��/��v\]֏�׎{�E��?mL	�O�;�k���~Vˢ���F�R�vBռ���z`9��8.�����@� 49b�K<��R	gbSn"f��+<��;ɞP��� ���8�`���[���s�$)ců�f4"3�P-+�(�y�eF%�sS|-O�6ik5��F�='JP��K^���W�P��ւ�Gj5��7�/������g��Y�߀��PHy������"�������S�O!��KHD����G�Lt�x
7�ER�����ʖm�,-����^x�A�<��T ��pT`�m��� �*㏔�&�R��V!�$54��s�Ok6K)��)���P�|p���HQ��׋q.��5�On&��rY�OO�h�@d=& 
���Um�Z\<����V�]e��$�^��)H2Q( �OE�p��o���
#������
��@ ����]6t'e��*C���2^>��7Dn5���k�W��9��zR�J�$@4QX�&ׇ��e��
�x��4��������>Ŀ{�OL?�P�hD��g�(DQ���j����/~;#��1P{{
�&`�"�V�*Q�R$橄�1R8��|�[&"D=s���(���<
��	��!*_e��ḥ�
c�)d�r����z^����f�2DF}�[?||t�].�,��㣣���fY��q,@�)��pp:Nx5x�<ƃ���_�{W=�����Y{�!�PX�P/t��h|�DS�	���ʏ5G��o]�g*G�RK�8A ��j���^��b�-���b���"�S)��e�=�n�����4�
[�yC�d5���OZ�s&*���?�y�٫���n<h#效A���$+8�_�����ǽ�.T].�j�{xxX?�a�C�cm�DRv���:9L&a��2���mZ�mT�&~�H�R!¨��#�@/rNL�h����
��0	�2i.�d�L@���@Sٵ��T~�"S �菋��!i2Q8�E�'|0�����i�O��Z�VC��#@�^����]w��=:yw}p2v��ß��������2\&�9K��T����,�d&%HI�C�x��y&$��ħD��ny��r
�}r�wDI�4��XKM���@𒦋*�B�B����ڭi�ٹ��r��sP(�<87O&j�kX��}��&T0�XO��M_����Q�Uwx��v}]?�|X}�\�[և�j����ᔫi�a��$13Ӓd�4��AQ �Qz�4	�Z�	ڨ��&���|@�ĭ�Hh�0��P�$�zs��
��F߰���~O�Hg!���!�[aƈ7��
b�2r�o�{x�`$�
qu;�l�k7>~���Ǐ_�T�V/�>���~�����%&:�x�#!�t4mNm*�k
�6~���Es�a5��vo�+�y�PJ�敚<6��Z�E{�we�@l��m4/	��.%������R�@	 #�!u�8�!��� ���i{A�$8|淶;e��:���K�|1�崕q3<9�
����G�g�6�U@�ʮ��բH@y��:�J�M��;&���@l��Z/]���C�yg�2�[�#�2$@f�
IS�\7
$i�Md����K0	]|��8��G6��8��Q��g1JA
<X��k��[{�iL�ޯ/N��ճc�}9�ߛϣ�chqu��u��z�����.'��DLG�Z�Zj�P"�4�8d#���a��sB��Lnȃ�q�ے��v5�P8�ѣ8�zư��,:�YK<8C��!,{��%V�M��:��V��:"�}t�
$w@ �wv�i���e�lg��h���n�8o����0y����1V�9�:����c
��73��z�al�c"|Ē���(&,_�P�jR�mf��W�ȣ���?�F�Dr�p���P�Iom��bߠ��]�~�,qiƇ?�C��/���X�"��,�۵�N��]Ƕ���6���p����4��7A���h��>���:�:�;B��pw�e��2Q(=��E<o4��)�+��ʼ5O��e��5ł�M��h��a��1@�O8����.�DKXa��@��%��V�>JO��l~q��C�,�+����`�
�T�,�#f,��9Ƃ�{6<ۖ
�|��eD�vkG��Ok�Vv5�M��s�
6��"�lIX����H�.�Ik���bMO���)L���F;��|)1sk�bZuF~���77��B����@�6���d��93�)HP|#�s��;d��q�搏&,��8$p�]v��C3�FI���z�3=˟q������U�V	���|i���\~�!n��m�6
.ʅ�y󦉘������d��! %�Z����`�6@��P��,!%ɛoA����NԾw��ӬîJX���8?�Ctf�����Q�{�닃V|�r�6�[�.ܕ�7Y{��Q�a�&�D�y���H �3�G ��'�k��D�p�4���yNZ�/�ach
s��a}�<LE�kJ�r 3��v�VΙ�L���]��؁��|�|�|��u}�TpH	�<�Q
"q��]�g+}i�8�E֚�j�kO�x�|'U���3�XQ,�>�F��K����Q-
��G���6Y�]��H�BV�ӎO �)M�b�@ )�R�5JW�qi�A��Z8D2�d���`��r�?��%��u��DQ&p]>��,M,w��������9�CFD��/�?t"%�o���}�=n�1�0��d��Cݙ�6ZWe��y i�\g:��=�o��,�HWi�K���N͊����^�6�}�?Yq��h�@SMZ��4�TK��;�CJl��w���ye-+���>w\F)�/n���U���l����}��C��NE�Ԯ��D�xo�c��(
�e�4E��K����n�a�%�D[nP
��3x�
n��`wk%(�.ww�PC�C���;D#�t�t���75C�P�!_����Dr�ؖ��X�����?w�|{�����?ϊ<�-�e����m�y��zv�\���OC�vn"Ro8M&g�#�!S�*W����>ƵB �=�U�2�+k�I�oҩ�L v�D��ٝb�u6�}ނa}��͂��&�|>�'�~��-�f��'�Uy$Y$�p����To]��A�h� 
��3�_��p����x�qH�j$�L�N���ve�D ��
3	@$f���֬u��	�� �a�i�BǡC
����L4�6���5���Ԛ&�k� @0%���,qFD�^�0�+�gQ�����DY=`j�w�Ɇ���y��1<��Z޲М�UyAWU�EW��j�k��2��72/o?������H��-fC�1��wL�MKq@ �V
�4c�3�U"�Y�?��@����3������g8�4�v����
�@(d�X����%C���X���lV`~��z��j�h17�9Z���TTy�<v
+A�R�
��hCjmb��ȺW����x��'$�7j��/�T����S�5��i����_/`�/7)�܆@�0.y�X�C���k�p+�%��Z��gv���Ⳉ�Z^@�Vڷ�/
>�Q��Hb�@ߑ)w���z�v�7��u����N�W�:�7���4�d���`Qv�m�MF7h� Qe��D��@��@4pUS+�`�P �V�h+���������$���R�N����n��!
T
:$Z��3L�Q�|�C zY�]�@�� ��Z�`!/�vˣb�u�I�C�,�dž�ě�0�!���E�k�[�������d�;��^�("�H�4�E��u�cQQ�v�j��#5J�(33�u�GE�#k!(|"
�"����eDC�Ǫ租f��]�F��}T ��e�I���Ҁ�ƬO�#�ↇ��2���P�D3-Y�J�g"f�	��ϐ��+�x��j��`T��BF���e���s���H'��Z����Xtr x�&�n�K�nG���C�I`0�b&�&��!F)�U�8�CFa�~��^�,HX�Yc�Ҁ�~��9�vAL�H?0r_��h�'5��0T <b7��#��&Y�N�b�Dv��F9O�O �S�$�@��@���Iv	�Lg������`r���ql��j��u ��=�t����+�w������(�I�IS���Z$�ŸX �[)!����Уh��4���������磋+u���ʛ�~��a�a�>}�~((�~�?���:�#!�
�P�Z�8>>�ش�R��S�@���t���i�s�zl��QO���H��B�I�7�R6�X:�E*	l����N�eԑ#����8!ae�(�2��8��6���X�,o���C�|��p�G� ž�0P��-�H�	�Sd4�&-멠E  B�DP���v�t��F+AE`)��S�A�@̐O�}$����BA�lW�?>�Վ�q��-�Z���(�u����A�I����ag=���
�yX0 Q�4��7�A$��b ��WsL;�b^�|D $"�ApX���^����w�n�n��a<�)5���x젼�`�G^$7X��v���t݅�K)�B��2H��Z�(e7����^��Q�׬�B�%6�6d����׿��x�/pUv�Y�f�W���A@��VW8UJ!�Rop�-w�	���%G��{X4�&Q�5B����J���s��C���;d�.�~1C��Bx@���*
�E��͸MV�_��͠q�e�'��a�W	�,�<mJ7���t��$��pQ�'ȴN�B^< QT�0�"M� D�t�f6A�kJ
���]�"��Z�!�2��L���%�@ ̣�~�$!�Sܶ+k����HX�����S(���]�!D�х��e����K�E �~
05e��C��w��	@Qo%�7��l�j����;5i^�#Dh�<�o����E۵�1uJ�� �"���X.��q���z�^oAu>���0�X������ݒ�/� ½��b�u�B½@�0������� �g�lɻ����8�.H�@8���s��Ȕ�b�X?L��<�;��B��]��[Ŕ��hnfڊ}����w6�<Z�j�R ��.F��^E����Ca���\�[�h;ⴎ(p8"����"Da���L8�����)	�Hx��<�@���b��
�e	����ZC��>.Dۀ�0���hJ)M}K����Cj���#�hI�{�$ Fkii)-$���QiE���y 0�
|���Kz,�὎�~5@��mO���ݞ�c�D�~/� �P�3�"JcyEu��H�s�����q�Y�D$x����\���nu~�c_/Yh�-���@b���'o�.�w��L���e�B�@x ��O����?���C�(2�� p�]sj�[��]�%����ٴt[xY;�t�M�-�*���� �@���aV-���37ш́��uPt�I�KM�� x7�֪@K��2(,���N"�Y0׿�����87L��Pre/�bv!��n�AD�DD�#�OeA��CJ�1����^��Q�����g%@���V�5'H����}44bv�a�5.��)f�0�0B�Ezy�~V�V3<,��l�5�8����m�}��'$���4K����nTBH�:�@J&�B�� Hp�_	��|���3��-�at�3*�3�eV�8J��9�oW�n��:���@�OO	t����b��_)
������X�
v�1-#�O=V�1°�n�v��]��S����:�u�Z=D��Hp}�4�e���w�]��d(�̾P��m���T����@,
=�6���c�w_.�xf��ƾC�ߪ-�hA �R2�"�%�.0���"�H_J��Z�KL6��'�S�@H��5&����pؕ7�˂�s�$���D��>"����nPˋ��G��a��nS�2Xż�>އ�����:1 �
{\ZqX�,k��f%^�IT���ց3a�{�W��Q�!9x���`8���О�D0�����n��ص�q���`��8�}:Ԗ�<��� �5]G�&8��6r�ש&&�����,W��N��P.�+ȈHH����>�i��Zډ�na�W xc�D��bd���l�N�l����mzut���vY��po�h)Q�����Kcf�]%̿��[i4m5�^�@ޤV����?_g��X�q?�A$SSg�6Y�H
1aȢE��	H&�)���!B(�&#d("! Y�rQfU�@�%E��E��_�y��{o�>��Čz~�=��9��$�N��vX`������!���2h=���R���#�0�PI��X�l�g�I��ˏ�4��V�J!�{�U�aAL(��*o�d:(��q}�eSbM��a�F�����P����H�々�jB$ Sln_w93��#��S5���8��QĆ_&�����#JD"����`mL�0üJ@T�W���������b|����.��*.�G6�aI�ZrI@������H�}����`@r���������#,b��`S�c�v5��:�AH��qЏl�����拯����=߄�d1n*��q@l�(%f!_2���L��t!A��;-�3��/���_�+����'�Q���,�=�M`vR��k1.�ĉ�2T�0��&R�,Q8���B��8W[*L
 �r'ݵ�,A9^��h��و9��,x��6�;5$�R�ыvƷ���l�h�aM���'pdp�@)���;o��| ��@8��3��6~wg�")�NF��5ث`�J�*8�p�)X#e@�t�6OL�8pT��)�p�;:-����D`=
~MYɕ���5��S{aU뱦��B��y�;��m��}w��N�Y
��#l�"nV�E���.�����#���N%����|J �7'��A4���WB�E�nY����Ѡ���E?§�@���	�$P5�a@(Y�H@*kd���
�\��M'�J�=�WHF��H���\�ww�}p\���� M�jk+����8-�/l��=���B�( !/J�B��9�{Y����9��Aɭ��`��`�Ǹe�
�����lɇ�}�U��SgŒ5]E0Z��H����З�-������>#�8b�>�\uWs|���q�;�áp2ɼ0� ��O"�zkgkO���y'���(�E@a$���T�(���<�!@"���3Lq8~��ekp
.R���D�?5���_S�rۜ0}8h�G�X̔@̥��HUA��o�e�Y�F($�!cD�Ҩ.�Щ�UvF\��~���o\�~��_c�TA���>$���ER�u��v�;�&*�����wcq �����B�T�D��Z��M\=��ќ�p�C���ԕ1K�y�YV�]�P��]�T�%8~�.Gi�Ѩ��n�a8)���`���-ֺF�
sKX��Y�]̐��B@�m�Hc�����d8�L��|��WHb<B���1 �܄�",��	L�%y�|=� ݴMV�AZ`�T��S.��%UH�੯:Z���-�+6��\�AHDwr��S@4w:���ɭ|b�ut1�B�v��,�]���{s��y�R,"5���E�o�;�T@#4�$9�������d������t�l,=�CI�A�q�q)�y{
�І�"��
׾v.���6�84_o�G���'قZE���v����w*��p�.6��{��� Ae�O�5�P�����c�ģh��z���6*��
�gA��a�$w!��7����z'�	���\eTW�}�\!���F4%oUhO��1�@�\�2 	��P0�*RsDEH�M.�0�8h���8�;���.0O�q�؁�ȝx��@(zu"A�f�)�����qD��I I	x0!�Ɠ� ���gO_͐��,)��vN�s�2D �p�@�)�B�{>
,���y�n�?�s˳;	٣[�h�Al�L&�e�L�!G�Fs�1�c���[)�}�xx"jZPā��5�>��(	��Z<Ł`_��5�?��ۈ�#�;����1ܳ*�Ҵ�2Q�����)�tdo��%���V��]q	y �!E���V�������
)�.�S������fT���=�
r���B`"4�
g:I	���7ރ`�ш91�N(��@���>�,������uuUL�8aK��9���-��x�Ȟ�V�7\��.�w8i��Wǵb?���4 8�h�D�*�?S�Tʢ�-4���*��u$�DX�� jwU{�c�Oc8~B7�Z����;���.�=�B�<�M�`��i��X')	����t(��z��"�������dy�\��25��K$!Y���S�ae�VD9v�?����m�W����1$���k9fH�5�0�u�ɀ�]Ɉ\��t�N>PpK )��?f�C@�B�y������s��n���~ToϐZ^R7E �csLE��*�u��$��!��E����/Q�ာs���$Ô��������괋��Z3�<0宧��F�Vd���
<�eP��C@ !o!����mPQ�Tg��L�FlD�^y��j}�\.�:�����"��Z�CGNU��p��D ��\�U&�J>��E�%z�0>&Cd-��5Q��d
�!�y�FY���k.Ĩyk9�
z�������K{�v�q�T�*5�UEMȒto���>��Q��䃲�_����l��������D[�J�G�;ֳdQ���g/��hp`�ȝɥ��% V�7���g\l�#�
��~	s�D�Fc<^�s���))2����t�=�{oӋ���09�(:�(���UHI�Q��d "�����uvZ�q�y��^

Z��R���3sp0}��Z�^�Nٰ"�_�	�#���[L2�R��+�|���������Y8��,nl��yf�Ge~]/�C:ș@��4�$��@8u�w�� ��ȃ8դ"�l@8B $��m�9�8����3��	�a���3�޼	�����Kifh)�U�:��O\��v��gX���M@ht��/�,!�:��У��Qq>�ie�X`j��c..�nu�p���]��9�䁬{����ăr�s�iH]~�x�",�xH a��]��@���C��H��'�޾:~K#�;��x�/x�{z-esEΆ�I�9��hk
'��l�&���Z&�j��{��������'���W6�Ba�cp��[S�r�Z�(|��v/ƣ%"���Ċ��������b����)�kC��.��äy���h�k�,��M�����������l�?����p�����dR�
�Ί�T7am����9˳L�����F�9�j�����zH�9����F�D�PX/�|�8X��)��\���!�P��S���C���Kmo\���L"NB}�lD��8J <�(�0#��[��Œ9��|����N��>E�e/�~�G�]�����Q�J�5���x ���=D��H���FSG���J�I�0�{2���-C��^�{�Ej������qc6o�pi ����x�AR`�}�-*�.+�A(!!�(k�x�U�NK�M��(��6?6b�P"��������t�ǒ*AA�*)#K�Wv�"w�\�T)!"�H���:�y��=��՝^}��0�ވ�d�A�?uu�༅.�����[��#�k�����bm��}��y����yā|���+ʃ�z�@���k�n\��B �qg.��,$�d�����~�+-�D�=B-��x=�����^�I������߶6��_(_��K�" -��*�v���37G��#���f�
��;
��ov�z�Q�G���,��]�<@<�)r�d��DY"s ��"<�.ll!��Cq9_	1֫���ggOz��a�D�J̿�[M�/�tDM��o�,�.oXJ�7�4^�p}V�0e)
��p�pO��`��c����0Ӵ�l,�R½j��L�SCv������ؐx�O�+z "_���������_8"�X�,>E�&0����>$ġ� �ȉ;��i��&�<<:z�	���QWHO���4�&�}�݅�B���r&�,�@y�m�"��(��F�V�|k���Q�?j��d>��dD~������p��g ��'�k}]Bѵ��{�����vZ��'QW�H�e��1�츼 Y�6]�Gh���Xo��h7�&���=��#��R����ex�?�6��"s�؈�����W�+��d'��x@�@0�@�먤��h�"�,�:`�h�#%����;o�C�<	DD��Q ��	Y�#��˙��}�:�_�#c����<[�t	��erG�O?�|�
���:
��F��ǜ@��-�&��+c���z{R�&�JQT�EH�a�΢ �.�],��p�H�|6�Om�@��埬*d�[)�d��ᝅW�<���B�SJ�CDd&�������f���!_��_^��-�G΋��2a��	|���m䄌u�#�È�*	X�U��P�*Vβ/�Oo�elU�aBL����;b�ż��I����8I��n�f�aG�BdqI���"b4����I�Xt��p�X�_}�t��5/����OO�N�O
�Q��!f�E�˶g�xE	���Up����21؝�]�� ,�g�[}k&�Z���;E���(�A�y�AHk�b@��Kp'ZA�$a�pz! �%�+���FPt��I���{��r඀P��@N�;%"��Q���n��xD���.�+ּ ��E3"P෵[����Y�7��~����;XL0�OV���G�HdIة�9��oLd�&��V
?

$b!R�ň𢍻w�� ?���h٪ww7^�6֗�p�����~�2�v��JA4�C@"0��:+��^6�Ղ�4��t���9�n��{8����`��;��No(���Y�=��+>�I0(9�Dr(�Z����?o�.�XI�7�omlʀ����_�٫t�Ag�%;����C�7hw�y�o���%K޼/?j(�����JN��hB5{������-Y)v���	������Q�
��	?~���JZDLQXI�y���D�z���$
�f���C+���?��y�P��IW�
�EWZ
���Щ��D�ެW(+�_R"���Dd�iU&V�G�G�qMmյR�y�������v�^dzd �Y�1�X�$��@p��te�aa�+��P	aBȍ��yX'�e�	?��y0�֫�0�ݞ��9�dF �z�ݺ�C30`�zI,<�$�m�w�>H�5K(�![~\�o����?<~�x��0���pD�<��dD����{3O$����ﯭ�a�BND�{m��?@��Бp�������0ϖ�ǘ�P���}ĵ�+���Á�}��}�<��xj��gΗ�YZe�0�<��
7��%�lZ�Ew[s,���@q?��b8b$�Vx�F[\�����yF�� �`��-�DR�}���o"ūwnSeN�mO*�����RV�@v
\�X%*"�/h`PY��f����_cJ���]���Ү_`R؁s�@�A�����uMx��<��|�x��n42�m�Dd���EC�U �v>��UQ���DI���-�Ϣ�TH��,:.��4&�Pp-F*��� �Y�J(�."v5��U(��PZ��UgQ]��"�	踘��;���j��{�������s���{�����U@	�y;6*飃���c�a�hf���a��[FF�޴9[3�6�i�/��G{�{�ҽ��;�<[�Q�`�7�h�������G땍��
,�{C|�n�`襐�����y\�C��v�+�ue�D��YȔ� *�A,b4�iX�20�q���kw1?u�Q2��ؖ�Lo�X`J4e�4f�cK�'ޅ�>e-YDhƒ�Tquu6Da�1>ۅŊ2q�h$��ހ9d�H�b���,D���p��f�b	�,P���ҋc���8Ė�x�aV����K,��28�D]���	���o�-��'�Q�<k�����KiL+�Riktz�J���jy@���1B���wq�h�!�f�IA��3�G��@GGD|eq��.�N��%��)\AQ	��*�<�F�f�@�������zY�ܴ�JX����WW(j x�Ņ7_�xy��wQ]ۺ]�PB;�����'�P�n�\�J�@Rqݨ$�Θ�5+Bd�:��9*TPY��-(�a?�9=ہ��9��,�4�<�j�:�{�B|�pbKe���_Y�ى�M�@da�Fcp]�K�5����A�����B�
	��%n�����T��x��(�@�I�����BD�C��e@�g����Y-*�ᰴ	8��ƙ�-�z8A������}a��Ù�蕵6���H�W�E��f����\���H�aJN/� O�x�c��y��<�9�.�1{|tf�������:��{���rD?�\��}0">��B}6q,�6]�?����S���Á��ρ�$*$
B
EX�^��=L�b�
F!�:�Xgb����c��}�@>��r�'�`�p�e�<@���R<
1�`�rz�@�&�@6���%��
Ċ	[�S�F4���Dr�RL�:���?
9���aP��2�h}��Χ�x�yJ�q����ך�Ԅ�ET�ӵoo�xDŽO��XA���'��E���$�W���j�t��.���2D��ax<B�R&!"�Xa?�kx����E��Jk#bLj\�1�T��e�'�L�m6�D��.T�3����5��
��=R7�'�C�"�3��0�: �4�	�-���
���ĥ@�i���\�,��H�u5s�K�"�U�j4L��A kk7���YG�}Hn5�ܝ�E�g�!�<űs��/+0:�i"��~�@�"N��Y�Wrߑ�u֤f��}]w��岰���t��<p}��0"Pv0Jb����tG��s��@�d.�<�	}�y
O���2��YȚ�@#Q:B���#Y�1l�I )���K!��N�*)�ԁ��aLˢ��C�tcr�D�3bp~D7��A���a�M�+�Q)+�z��K-$j��1��@�̬+��u�DC$���PϓO���d�"2�kH����(��JC��v��{�-	D�D-&�k���x_?��R7 �c����̣�ρ D{�X�,�q]�\O��V ��y�dq�af��x��������}�%HĐ���`h�l���j;�F��I�]���Dž;"�
���+����g�Q
,�b��r�L�wĹ\O�m�����2B�ep�V�Y���@D\=66k�{/Й�e�aJ��V� ���:gC�`KLF.��\��΀�:.���W����uhz����S����yX�E�yLq��4��H������n�\��G�{�{wpg>\�lތ�J�{��i|qI��h�4�d@ �AH
>�έG�j�\(�E�m���g�X�|$g�K��]%�h�й���V�w�y�A3
y���I�X��B
�A�"@��H��q0�����&�D�R*O�0��3z� ��)����
9'8�Ki4qk����t�@���M�x<�Ȟ�!V��� �#�y��r����ի�r�>/;����Y<8F�d��/1�ǂ��r\��>�(X)��0EW�)�������\ #��X�!~�1�~����&j�.rm�*�:�f�C�o1Ke�)�bHH�F< ���κ��P����\a��w�IC�h�H���Ǝ]}f z��w ߉�F�>U4��>�d2�Q���dq��ka��w+�k!|���3��N�M���� 2e!������C�9tc��"���.Ć����"&����@K�^�Hi��s8�A�	�uFXKN�<����J����0�m��B$�d]
|wT�w@`�!�'�u��I�)�B2�Ț��+"�P ��K��#��'����*�3i�|���*ù�8l
�
���ރ�R��I�q���H}��P9>�x3�<D�{i���_1d!x
�U}�×5W��i��gR�HMdjJpX��������m/z�V��C�X�\|&�8wX����4���8�3��>�T|E���
�>P��QG2��))L?��2a�������kn��]GØh�b�D���:��a;��D
�Q�PiS冀DXI�dy�L%A�6�x�ދ������ڽ�������Ǵ����W�ݚ��U��/�jch��<�g�V�d&
D�h9 *g!��:L�ҕ�gq�8H��?9A�N���
s;,n�����v�q���}D��˳�E32�v��j2���S[)A�$�s@Tث4�T�o��_�����`:��+w[������:�J������l�D�q��O �0�p�QyB����Xz��^�-w[vLƞ6XoP�:Ma(@2U�;͵����P�@"2��}�#�h
8P�w@��3�K}�Y�B�{�tWnjPkh|9��k����OϬ��T�Hmf o���1"4�Mp��ES�
d{19���q<�.��v6��\�X:gnr��6�j�@(<�C���u(tKq�[��M����XX�ꑡQ�F�r�q|�#��5�o������|�4#y
�@��
�����}~�Yb6r��R��#�E�ǎH�vd���h���b
g����Q��2� YC�e�j~�I �.i���6�����$�4A�V��N�;:�4.g��!��xh����_p�*���ܪL��N�H�Y�:����֊�l4bb�a&ȧ�%��1�"��)����ʉe*?7��r|6B"�CQ&k�����dq��̂��"tG�L&�%^���-�8�Ɲ#B�w7
�_d�Z��f�0�d�d@���"0�,_c�W2Jxg��$���ɕ����R��W�5Y��5�XPنe������7!"S����ɋ���C�;��.��"
���Ā�^���ڊR�����jsə�V?v�$5�<| $���у[�$̀pN
@��g�p�Vy}=_�#�6S}N��>�l�����A!�H4
���LD�<�3�F��^����'k�B
�恏���q̡¬��[*� ���f�͂
�@ iR���5Ƃ]�� ���@�q�w�| T}��_ۼ�\ ���&[�(���4.�9o���I���d'�X=ɼ�l�b$�`Hp��6YB$
��%���@8��بVW��n����Y���em
��Ȟ,]K%�@�7ҜM��v9W]�QaE����န��������U5*�����h�eQ]�0/��b�P����R����)�Q&3�@�%oj!f$�$�E/�����2Ί.U�c�4Sϗt�A�h���o!:Q��&� ���:�Yl10	��UZ�����VXh$A��om������~pY"��"n�I	w!�;��
��?�ԡ��
���5�u;c0"<X����P"23�ǥ`�J��e !�\mA��P��w��t}��e�I�V�H��כ�������17<��WbE�:ta��O�k��i��׃ٙl�Kb��zs�c��r� ��|��`1eA�+�Ka�Qvh���Xz{'¾�>(R�qH"��7	z�|C�,�Y���CbO�6!�E��a��0��	��<��$6��:����ׯ�^g�4�t�>��8>;G耲���G�Zw�L�T�u�g<P�E�4�u��q�s�F�Bc"�P�����mcs����!1 �ęIVn\�����O��e|y\�Ȍ���x����6NU�ﴁ �έNN��(:��F#�g�p(�3}�^�j�xS�V\[̡�*�ه���������
h	

��4�";�GC�TO�Qp�aL��\~{��;:��1��e4PB�!2�P�X�f�iR����� $�S�@b��f��,��+"��@0,�m�$~+��@���;�i<ªH�+��~
��>��{�|�K�&R�WA�d��"P�B+�èh,������t����0���@*Q�n*�V�R0�u()��8(��D����`�~�h��M2'b-�Y����-Y˦NÓ�����@*�R}d~�ؗ-�a��7�~�j����jdz���?/Ѕ�CÅ��11��e��ϗ3�Cd��Ê4R�be@�h Q$YG@��u��R�#�D���$��Ęl�����Z�L�D�l4�C�q�������"ŧ{)l
c���l��w�`!/�Z����-���<��(��ʷJk#!e4�!vvo����Q�D�3l���͗
�`�g$(��.�@V�f�4�D�Y~���
!��	�LHc�Oj:Xǀ$�X��de�N���k����ʻ�bf11�(ֵ�?��޽�����O
��A[UapŇ�њ�Ҋ��pj��v�����莌:Fw5�"!������+���C"����M�h�/Dr�n��頹���cݠ���B �q9�N��:댳���Gg>��s��J`V�S�Ū��p��Q��!�o|�ޝ��|s���z
^�Z�b���A�an�+�`,h�c�
E��``x��{G����1�<����6 ����+�ΝXK��P�{���H3%�65�d�`�`]_�
�t+"�&����D���?�����uƂ�/��a���\��AP���y���ހ������	Z	־,�K&�$=+���t�e�Vh�AD4�3�y(���`R��z>%K#�B<>Y�B��;�X�v�_��6��2����2Q�r5�\�d�T�#7��,�
�R�5m�X��a�ió�'�0싉��Ö"i����^�EY�ӱ�T��u��,����V�<���^��oa�&��KM!��+�=s�Κ�G����Ї��r�)��SIU��h����3[��Ez1k�g�r��ޓ�K]���g_��ۗ~����MW�P�f!�*�q�6Cy�#�PF.�����#��3`�WU����Ţ��n)����l J��"�����9����+�<%1���5��.�B h��&)����6�����U �<�5Ӎ�$e��Y_��|��]���~Mߟx���~���_���B^u6�����¦JO�(VႍR��
.��j��YaQ�d����!#
����",��8T$+�o�M� �%�ҡ;7�����b�G"A4[[[+�DpT΢5(=G/�\"LC�C@�D�� B Ֆ\R~ׇ��T�h��$p4��p���n���v��'����_��n��c�n���8I��h?��H�D�kKE�(7[P/<��ev�)T��k��:�WVVv��lK&�n(�,��&��"	�H��
�j[���y�juJy:�9�����<��@ � �D �C���"��L�X�n���Kf1/�(�3����:�J��`��1�a���?���O�~5�Eԉ���8
�*�ypW��B6Z��L��W*���eΫ.]�0�(��oT�� [_�S?خ@N� &
D�(�+1���+1�`��J�����>�D(B�Z�d�"�nt�$�ع���[D%Ֆ$�zr���#)o�i���΍���[�=|������~���o���F��H�C�qPG4DF��@!�Q�a �5h��j"h�|�9�l��B�#\�z�
��fh�%n��Lh"*��f?��{7$q�9#�] Og,H���4�B�|}K��B�E��C�W����>��9U�T��Ri&��ݸTZU�<�uQ����{��`_~��[7];�9�q"z"z�����?���a�`1��,�)[@�'m�h4j�$��
(���cI/~��Ou�Pkг�v�C �ݏ�=6����sL���	;�Cq"���ټ��d�@:�r�z~(z�	Ko��U�Sk �MJeX���SU��1<��{�����ۏ�x�//]Z��t��OsI��G��I��¬Y��a�c[��CY�12s�-D����0�Ĵ9H8��3!�W�"���@��'o�Wߪ�:F�|rdw@�@�ILgנ��7p�/���`����?j�,g���i���Hw�c�
��W^��]�~��g?��Ͽ�����?���Ttd��	Zl��d<%�j���W�۞�D����kHqd�4��I 䑡��۩�"XG�T^�K P��
��I���Ë{�h�%�	�#��")dR��^kۻm�q�cw�=��A{��%E���8��7�0Y�g�E������	,�Q�8�ȴ�
�j��d���u��@Yf���Թt)�l�����k�Ã�s�pR"�<���Do��0p�y�i�����̞*[����
U͌���1�,f7'��n���@	*��X2��[�4�f�{�M	J�'�`3��k��髴��P=j�t��&�go�@j#�����0��9�� .z�MԴy2�J�%�o��u֙r�חJ���%|^�@�)�YbV���o_���_mo�_�;8<G0��?q�d��>QD�׬�OD�7�*
Hv���������`�;�LI3���S�%\1�1'?���I���$�08օ��Tj}6�U �8Hˆ���	}zF_�Չ�D�m��vB�A`E�p*�B'"�`!���'i �
<`�-�%��Fe�>��h�I#Xa��������q�&B �{{��h'?ln�DU���x�4H��J��,w(S�d��T��MU�?͌����$�h�BW��"G��:� !��ŒMcN<��8,���)�ؼEOw��"�]`Í^��P����v;z�Vk}���� pPmy�='8
���X��
B�>� Dʾ�q����S=L�C����wW^�s@v���v.�=�������{xx�����oӹ'�"�<@h`S�PrF�M��II�zy]��$�w�
J����y�൉���z�,�]���b[՝�
����H�}�(���X���h�8��M��N4T�>�B0����)"_W��a��'����xm�ٽ1	iuQ��B�cڰ�Â�;�@g�N�B��g�nir���A�Ýwv.��_�Y�����?w����6S�<��(���ݏ�C��i4�6�3�u5%�1�+O�ڥ:�FdA@Q$\_҉�9o��7������nH���z
n�Җl�^֭�?�
����	
��I"{
-D�C�N��x2a
�kP$b'��^\]�J��P@�L��)�FTGY��V�6*/�uapp��yno��-���?{�r~����"b0hxUBAI`գ1���}(7�B�e�̍�B��'�sӛ�TY���6�>��T;8����R�˴�F+8qY[o��EW8Z׻���PQ;�j��fS&L;-?����Ƒ�Y�ٖ�Q�>���#'�=x�<�&6A�6�c�l���i&H�*l���"���a$ �<�cѱc�'��G���ʧ~X,�mg p`_��Y^����?���wvw�����&�����\��adB���[ĺ�=#민�}%ȅ��d.�������:����|���ŧ�J˫f[զ��z ���������i���Tjo��u���$��c�W���V�Y2D�!u���3�@B$��˲��P V�8���2�����!H���2�b-��
	�a�ӥ��_.��������������9���ݳ`r�����>�
_y0�򯐈w
��rк���W�9�۸)�5fKf$�xl|dU��TiIYY%��0�{�n�q)���wyl5����iwui��XT�Hԙ��"I��!�!t���(5C���ч����	��Rrt�H*@�}PU�ȝF^�i��Ș�ՏO��� p��(��[>�� >�����;D�����pBH"�,C���5�'�DD�x<g1�0�MhS�:URg�t;�X߄��`�R�tTY�aD���⍘�PO�ı�
f�kz���@Ǎd��S������F�������z�<�w�\�`�q�>
���(2Q ��h���������1BaҀu�����a`#/«o�m�qxpn��x�ý�6���D ���oN�*,��+�Y�� :#���A�rv׷�����ZAP8Yz���a^L�8*87�o�)4r�6"�Oh��rI��%ٍ�ǫz��>�B'V)@mMaD�n�1��+S�����\�.|e��i����9�Ḿbs5|f�9Ha�]��<���ݙ��~6U�h�jѲ8��(��d
����g�v~�qaay�…{�`!l����z�Q"��U�
V��
�1�"f�)ֿ5Y��Z�8���'���נ�<Sz/N"���m�l=0��N�x��X|A!�	r��` �j؉��9��(��D�=���Xz�w�H"p#JD����LA��7� ��I"Y�ڟ�*^i �!+O�� b*RA�e��m.�"�Ņ�|�p�C�qgpy{�ڬ�?�2lX1,�<�W��/�AI0�|�܎�]Е6�'�˰	?���66j*t3�T�(ŬA�����5��S3�n&���!څ����r "��`1'g@E��dD���>�4����ѵG� �=���ޘ��R �|uE��:&n]Z#ˆB�a����q�Xt�+�7�{\���/^���
^~pyw{9��f�M)Q�p�P�h�\+,���͒+�{bA�*��D8�'q�h�����^�3#!�(	��Z:�7V<93�;g��L�ۇn&,/��°�� �K��V�ypH?��� O��j%0
��rb���?��'����D�{H��L���|>��Q���Y�	>A�p�; �ģ����4�8�D�wAO㝙W~Y^�P-��_��0p�Y`F��}I���^ѽhH�d��q����o�×��}oO8����zH�
�y�h��k7�Y�C��<w<�*�ȈL��9�t�3Ũ��[U�B�>��bҫ�@�q�L�ACQj <{_�w.��9'�^l{��&�4x�+�G�F�<����Zb)�P/SÏHu�S��@��(�/�]�b!2�"3A�ΎE"��a����������2���?Ο�F~x0y�7���ZK���b�ǿs�v���@k$�6�w��zW%vo�FrE�1��c�{���+S-զ@9f�_O��!�C��TUm���e�L*�` nO�bD�aA����`	9éG�_���O�`n]2�K9���P�c�+n��D�����8����qTb(�D�J�a"�@&��''�0�O.T�
U�FK�F.fƏ��H�E��"����q�BĒGl�*[k��W��#S�+xo�I�wc�!K(g^�8��ߟ�O��\�p,�������@e�-�k�Ï��&M��G���ʂ�u���E�[W"|"tC¤�T�a�=�q8��X#.ȍWX������0�c��~��/�8����r$2�lX��p�~\q�b!����ZԔwZ@a���U�Ľ�a=y ����DYqn)���GI�O�\ `�_Q4H��nz*�9c��{���P���ZqZcQ�XV+l�8,� $F][�ʲ����D8`�
�@e�T��Y�Ƽ��z�fvL~W1aB��K��❌X���UD���0cN�E�>Dx`�p��Y��	*ƨ,���/�@)Nw��#��<�@�'m�4a�E�s,t��#ՑB� �
.-9)���
wjijH��#m�C-��Ň��%�g�i4�bAƅ�[��7�bA��u��M�W�~���Ho$�|.l����I,y��{�@5�t��fˡ���Ӧ�L0]T ��舉�h"b a��,�Ǔ��R"Q\D���(U�lEqY:kH�K�\��,3��x�+���A.�
48gC��(�݆��ML<7�LT "@ ���Y�ѩ2�]������z��hɈ����g�.@,Mpt�{�	3ܴ"J�W�+rs�}�†����uxx��h���}�OW��5�N�ʮlM�b2�+���ה��DK	�}B[�2+ E���2�狏c����J�$�\�ܖ�)�a�vRO?m��6�?�g@�g�μ��@B�I	-�%xQ@C��}h�}Q�@H��Q� ��,��І��$v,:��2-��!�C�����;�;'�c�R�&��神�x���{�H5�`4�L$��Ug�J*UWq��i�?����!4�a��3/Nu��gf<��`wkee
���^�nӖ+�GG$� >�\��=�c�4��P"����(s�D$,L��g�igO�on~��v'��u����m���M��v��0�V4�v*ý�R�$��H��{'B���F��`v����#++t3�$ߗ��	dp�@�RA�2
����A ^��X����3��w�T�3����6n[u:�[��Ɨ��{C�#�c%�z:bato��Y�ܖ���,R�.O6�%R|�Fxu����Ǧ���t8�&�YC]�p4�a�h�.��GY��ҟk��3B<�܀4���ix��#�Ggj�N���8}���x�6��Qϝ<�0��脋z�Q��Y��y�lA�j�!�,�*H&�?qmI�����\�˅B $B ��;{��E.��1���n�9������&�p��ClÉ��}A�hc�Ɩsuչ��;]���1c�ڨ.��q#C���i�B]�&Z��T��#!2p&�h�&�4�D��(���z��1��c�G�]C�u��B/��7�� R��!�!�yX��y�����~��8(\o�����������������&�O$��eT[X]逄��Hr�0 l������f�����S�H+:�Yꕂ�AK��\�A�{;g13��B��+Z�����W�*�(؇*o�	�Hz���6��4�rT�=X�'���
id�I7�Ӭ�¼zX�#ו�y'���b�aQ"h*^J�ۥ������(.0x&$�X�s�c�c�X�������g55=s_�`S5C8?���=fo��t$O��(� 0`�z<�)ѕ
F�^\!B?"�z	�
�ä������ ���E!�A� {�x�a��R�8�.����@�ߕ�ڮ�3%
;��̘z�=�h3�r�`"��xl���QO2��Y�S���7=�M&�R^
��Ǫ=�P4RS�Ķ��WD�n��IP2I�P�"�ň����O<S���"8��Gm�mn &�r���|Mw�J
�0{Y1$�
�$#�� ����|��XW�n<z.uOɢ�*�d�D�}>�2������BMDW��\z��V�CO�FG��Lj�+��b��1�]��@���xu�{��b��͢Λ���|�t����
�%c��D��U�o�@	+`Q/��8��XPQ�3�y�5��wi<�hWm�h����z8p[��õ4���AN�������B�Q$�!br���Z6�ۈy�wkL��v"`*���@tYC>8E!��	�=��
��<��j'�����5�^��~D�V�/(,��U�Cn�%�ܧ=���dzi�5�-��zL��i���cL9	y���1�{��ZQ��8��B����%a���
Q���0�A4<5I��_��kO�	�����鍉����z�����}���GߠqP�$N���p|���;N�<1���뉡8ľ�￯�1�{l�J����ʴL	ă��C���"�Iq��� �-B��|^�:��a�/M>�5��S�>p1�TƗ��,�/�ɖ�U�/����'��p
}��.�Uߪ����-��
��X	l��?��/,f%)"�p���%2.���z�m�m��~��p�o������/�|����	CQ@�qR�:�	�?���7ߌ0��3�+��L<��z��ב"��@z����	G%؀œ_[�O]�.3��҆bt����V.7F ȂDh��no�D��\�� 5�9x���)h�TAT�A�����\:L' ��8�#�&~��Vbe2Hl��z�~��b�����"4N��a�g��zwڅ�^_. 5d= ���/?�Tˇ}M���w��'�x��&8�|�<d;v�?�������o�n��O�Ͽ����<�O�w�v0��d�pѯ�VF��e�,�ְ����0��P@A�-��<،}����P�,�y!�vg.ޚ�={i�@Ʊ��/�J�eA�m�1Y�A�!(�^��0��'���������<H��c����,[޵���w�Q`���[��7No�f��)@�0 	�*0V4q;��L�`$����x����^õ�<�J(��R���8��C�裏���w��=z;��
��' �,@n�җ����e�Bw�(��Ŧ��iZ�[��Z<��-�~���ݳ�h��|6<nK�גH<
�CV"��EC|�!C��+�D{r9���-��9&e��k.n�m5&����bq$��{+\Y|���n�ſ|�N �!��Z�7[gI�q� "^1zq2�`�"���=8�$��L��0Q:���"�a.jN#�\<H"��$JTdу&��u���߿�k_f�f�����Q뗪zU�u{�jǀd�G!���MW����a4xK����Q����fy;�`��)O����4o��͎�˘�
(�%-������^��J�7Q�	����b���O��Qk�d�J���(�l���Ͽ��=���w_���h����@Х��u�oZ�r33��@�ӂ��15�VKٞ�3F��Ͻe����q�|���Ͻ����Q7�3ŢT74*�հn���y������<ct���^�Z�//Nܔ�����p�W!rC�1��&�'4 �ѕ�2�����<�$�t��Rat|	 �i���%Ipo�\��i�b�l1$������t������%V�"��1�J�E~HG�Ɯ����a%�n=N��}��%�S�_{����Z�y&��c�
x���DZLX&�YW%�+�L�Ly?uN���)�e���c��	3���	׺�6��6�#�8�VST2ad����`Bxo�o�x�h�è`0��x�
����,iH��H@�_�w�����>�p�Y	 �Y$��o����FD�Rg*%S
�f_8���HEǵ�bŕk*�c5S���'��D��'�cO�_=Y�9[= dY�X| ��wE�bmz�s*?�����5"&�Asԉ ����ͳv����A��w������D@�h,���q���&'I�!$tX/�F*���ۏO��!Y�S	���C�0`��4�	]��w�G���X�e"��U��2�D��1u�5�<JA؆�S>�8T�r ���uV��fM"�AC͠�W4$ E��L��3VB��FH7��%˛B�D���"������P�����1�Cw\������2k3wY��jg��/D�?�@Si��\�pB2@i0b�R�^P[mpL_���!�F���.�'�|���#-���0�+����RQ[�()�sc�!�E��Ew��z��En�F�$aDb���#!�����Ӡ��Lh.�y����.zz�2�zɲJ-���1��R�g~����yXa�{B�#�|����-�����γ��Ur[vuC⼼�>@� b�>y	����B����ߋS2���E!�Ho↫�Ąi���)ć�)HB�$ƃKKF��膵�I��{��xb����iU�DP�Ľ�d�Eࠡ�@^�g����� �{���a���O.�o=Lڜ[H�3��3h-Ύ��<�j*~�]EBK��D&?��寮�i��Ѓ���p����L\����� ��j.0
W;H�G����J���-��#(�AÊ���ӽ���
&6�n@�+!�X����X-ř���"V�J1}[@�Yȭ����}4�~�-�4���V��B�A�A���X�}KC�ҵ��#۹��݈�������Z��nM�%�C����@zy��������z�HF�Tx��
�)2�`;Ib@��^G��ą�=�cˈ���-c�
7��&"�ո���]#�C!��G	7�yއ��wWb2@�e����IE��1,ζ� 		�m���������!����*�V&;�'����j^�0*�a@���=ds�VG�	� :�@b�x��՝��M)F[i���	<N�!�uT{��Fd'��=��ap�v��5ޚ��ͻ�� +( ����]nj#��x�[��cS�7�m\�ޑ��L'Cƀ��l�4<Έp�
M6�u��ia�X*� �
�vEdA�h��,��R���R�ʥvGP��͋�{!D�/��c�@h�F�k�&�?ܞ�嫳[�b5adFy�l�Gv,R�xI�����go��5������vO��"��_>�UbHhr�F€:CX68�	 g�A���.��%�F��@ƂS������c�1��‹/NĖ�y�b5�/4mr3�>��%K�� bXx���ѳ�#�'uGd����,� �� ��R���"T{�,�d�=�;������cA�B������W������g��=���1)4��Sk�Yg <��t�����%
��p��ou�$����*�78���ã* թ;�B,�$���䟒�m��,N���W]�]{v�c�5�o(��$b���i����n����1�@�Xܨ��XT���;��U@"��yh�˨wo��@_\q�@�"B��-i6���i���I�Lj�n	�/���q�
&��<=U����2lV)QWu�'[�,�7M�������La$�`&��	�V�L��6H�D$1���H�|ckUDf��̗F,��
DB��'�K.|Ͻ'H
�*��;`��%�U�H�)�8K��EM�iT�K� �b�����JD�氶!�,x�@ٚ̂&.�}H��HR@\Ņ��������L�6:�Q�
pYT�i)=IH<�K�n��mN�H��1;����P��rǙ��U���ZUx}' 	C�٦r����ah�
n\9;`L�J��ŧ���ɰ�A�H�т���X�h�b��Z�Yգ���W3�_�v�����
RʑBI@�`7������N���	 ��d$��P��X�NC �y4�Y��]ͳ��N�7�w���qd�S.��E��s��Q��G�A�,턆Q/>��Ω_�~x|��8Q!i�v�SDZ�q)�̍U�1��X�r>aD�� ��<��6*2D�2���U2Oo+�QY���9�h��Ho�ܯ��&�r�H�	N7�M����`�$��>
������ݍ��N'[��>�^��ٰ
ò-��t���'����5�?|��O��OD>��������ي�Mw8���(��^<fJ�I�U� �\��َ�W�A=���T���G�X��P��6�	ۃ���,�p�ӕA��<J#%����ݠÂr�:g/��ꭑ�ܰ��HG�̢�" ��2w�r�-�
�^��pk��7���o�X	w04�fㅄYy���	�񧟉�. n*���B����SU¦��G�j5O��I_{Y6곋
�z'��
_�XW���(���,|bO�����&�Vc�1�dan�S������o�:d���@\n�/�Hf����d2�h�J`{���k��{�!��l:S�w+�u���}4G�' �]�)uK����\nwQ1�:���7	ȉC@���5��>~]�v�N��ԯ0�D��®�en*K�އF��,��[�F���L��R�*�"D��2N;Ѭ�����X�T��k*�O"*��X�@8�;�8���q����辍(%Hw[�@�yƋ��F��v{��G�6�k�LS�`(7�_\*��t����ե���O}�^Y ̳����]�|qc�Z�F����*0�u�Nc��Rt@j!l�n��C�B��D�H�8Ȃ�#;� �V���Y]V�W�#
�2�A�.�E4f9���p�}rn����eO��t��y�Fd}��Cb#ϻD�-b��j6�Ͳ������
�AR�͖a�n��f������8��C@���"�����D�Y�c �B�7m�#�m,�P' �_�/��o|*%$�������lSL-���qc�z�	�	���c��(K�2�;�	$l��L�$@$�
����	��,<֧�� �ll�0��(�N-��v	[[kVJ��#�.�I���:��b<ִĠ�R�Ev~(��`"���\��^E����r�Y"��b��2Dq������6�r{_�H�S$N	q��u\࣬�/}��k[bHh؀b_��!�@�1�`#�,M�L��I��g���;�v��H�o�U�4g0�1u
��bi�[����*U'���q�e����i��f�lz�5[D�
@d�?����l�����$�C��4��8Z2�Z��T��x�p�\����\V�*�|�c�8B�I�����N ���kN"�������&ce�8iDrM�c4Y1�h͸6C⋈���0x������n+/�Yi��%X�y�cS�!�̠��t���f�E�t��$��&$]S.�E�{��v&�Y"��s>��8��PZ9S�NpY�p]I�G�A�(�!�y9�a7@䆕�ͯ& ����}�6Z�:q�t}��H�>�hEkL��mK"76�����X��b�"{�H�������e!��;�XD����6�Ϋ�L��ӼEN��a26f�WRve�4 #J&����<i���o��~K<��,9���R�z�꺫Eއ.�(@D�7.nM@ԃe��Z]�����Ö��"F[����	�K�d�t���x�L���؃ߜ�=*����3"<�҉d篎��o.���"ͲTf4�60� b͂D
$�YT�0�Y96�#
g�}L���gfB�3)Q=�cn�Ԋ����iY��,��~���;l��=���i�LV�8��j�{n�n# ��€�71���e0���!���4FdXR+�oN{�
�~�|Oϋ�= a���8Y�fY�������RH{5�d#���8�!��$E�B}t%�VFc���������@n{ĔwuR=H��PD�$e����H'�����O<�D��WA,"�iaJ嵢�Ŷ� �Y6�.4�3����<³ľ}��ӧ�Q(��u�:d��v�������Ƒr�h�L�C��{�`#傃
8�D�!t,T�1��a�J{؇��:^���_�	��
'��-����G�0����P�ĭ#�M��G670��|��+���dz%ʼn��ul��,�J���D0�F��x�t�_y�ʓ'�X����=��g>��o_y�w��_�	/���Mf��d�Mjc(����RDg$��+�p�Y���0�K��8SEq��"�~I�	h16� ��q�I!QWaq����jx�B�`-3E,�	� �X�Ȃ���wΜ�7j�gg�s��z���wf�j@Lz�6x#t�H�7���g�d�	��rv�
^K��khcui4���� �m�p��J�^>�D�D����"&JܙJ�$�/	��Eq�d�"�8�B1�R���n���|�}�3���9�s����
�ʕ+����Wm9 .7�>������s� ����)T�aD=X,��� �#�;�D��圏F��Wz��7�1���3��ͧf
�٘	A;���R��p,� I��y�	����'��E:O��"j����AI�^aR��'����-
is���:ˉK)��W�� 7+1�#��9�b��'�?x1VN�[�~C�=J�pC��K�
8䬂�a�i�d�:)�㏼p��|�r�9F�9�*��ځ�I B3X-]1�3=��h�H$B�� )�A\l�Clܹ'u�c����7}�P�(�.$}ݞ��ڔ(��1|V?���ۿ�on?�m�Ғk�|q!B
_[^U���RA	��’��y��Oo�Ws8�Џ1�	�1��#�!��&
�^&��jD3�H�K�����5��h>��hD�%��Z�a����'�T�(AI�ô1��^L=h�I.��K�m�
�.�f��u���T���K�C/lY�lQ�D����+
dd��x�y�|R��X��f�|L=����G�?O�y��C\9��)&F�PFO8 �o ����	�0c��)a�J>d>'�L�2:;]�rn�";D�0(���8�!_�H��(	4BHVT�M�n��'١Hj.�ΒNJ�B��J�Zo����+
>|��Q���[oQ��g�@IS��T6�qU�[���;�g��ۣ�m14��%}σCbce��_!8S�!`^=���h΢A��r:D/�hm��e<��`?��@l�U��	��i�2�BB�]�ZZ��YrD(��G���d�Z,\.��ȁ͕'4x��aE1���*&Ͼ�������s�:plΫ�qY.�b]P)����TȄ+��v�G� ��E.Ĵ*71<:�S��� ���&�T#�W�_�����|ԅv]�7�����uiS�;J[�n���R�D%�l/�3��N����ND����r��\E+j{�a�rI���`���G�r���j�쫹�z-�iJ�����cI@���ł�#����P	�򍀰�`p"s�w�ODɼ�O��:4+�%d.;'AM##�
b�׀��V��.�F���
���2ۂOy�v_���{/7���r���?�s��ǫ9^$W�{'��`P�GȂW�E����U>�d����E͇��x=-��O^Ϣ�p8K�!����&�$�,XhV�l$:�� �;�ϣI�!�m8�02}k�0>��臈P/KYv
윥N�l�l�t܇Az��Ao��|�a|*�\�z�=9h���o�0�z�&��8��P���$,I�T�b4��*� d��a��S�#؆� 6$�	�6��ߠ<d��#�-�b�:�
9(�HLWb�÷�J�%B�DeE���g��a��J���ב�)e&>D=0\r�m(� �LRg�cg4H2��� �EN���_�Cā�"�w����)��V�=���}_��R�aVyE�������u�*3���~9&�g��Dl�i��Ǡ!b���W��~2�"��Tdp!g��X������EĐp��F�%$ڒ���m�q�����h	���H Ҷf���W��)
I¦nӑB4e�
x$
�P���O8$�> ��H_��bŦ�n��ܮE� =x�A>���~>�?��9���W5��)$�ii#��sH�`�X{��<C��Cb$�,�(��R-y� gLa����>����u[f��<v�R4��9�^Ӊ�}�G��Xk�h�;Og�����ny�N<HNeS'����$�d?�Iȃ���--/FV�Ƕ�"�( �gpa��W/,
��s���1Æi�!�m^:�H8|5^��'~��y��\2��!�k* g�r-���ͻr&{�^4`�ԓ����\ӎ��@W�v�N�2M�U�$�b+���"0I�&��Y6w�L%�Ԋ���WGnR���0&zIP���އ\���*���
I�ǵ(� ����<a�W��0Kc<�ŕXLr��K`s�5	�Ի��`^�z���P���!��G�k��$>���v�@����_��P����o7Ţ�ly%Ґ׭��wq�Ro��Gܻj�%Hf
JR'*u�$* A�
��u$�-\Y^CWz�>��hp؉�b�	y�����D{c�c
**��aG�T��P8j-EH�e�`��Lo�r��M�9N,�ba@�!�(���B�J�i��TxuN�#����iK�8�;�X�PY���m����^s
�k�T��~���!6Q�ޔ�S0p ĐK�)��Z&i��W�.<yD+��p�7ڲ'F�F�
�P,�b!q>,$@�ME��@t1Cg�X'�!S�����S�[�s�;��e����~�{-��w����@�[HLx��7Zx�{����P�kl�Hٰ�<kz�r�\U��=��}ٖ�P��(���8���=�0u}y����Ö���U��������Vf����S	�+U!$x�� ��B��>G-Ne��4H�x��DgJ㝠�7S��44d]��z�O}�Y@�;m(Bo��B�b�9��©��%$��<�d,i�"�aH�]Jp���S-�#iӌ��&���K�VvX0�a*k���1s ��8J�,�xM�铅�T$됩k��+�ܶ��0,��mp��s���E5��s�<��i��P��g�:���罞�#��Ə\���C��'@@{���� 6F1G�K>2���@۔����@�+���Ƨ�a�ڹ\6;��xs�]D�l9��Yt�b2s����՟.�K�^/��(��j�	**Q�*r�"E
���ە�h^�������(ɀ"F�Pb��G�t���A�E���d^�b��xЦ��S�1g�.@�N��X���p�a�8�i}(�z]�MӖ$&�@8� ��-?TZ��mDz����}��F����FɦN�A2KJ�>E@�V�,��ӯ���ۊ2YYW@���SB�p+�f�+�Ta��
�Vo,c.{C?�b�Ƚ��7�#�����]�\�hzg��3���:]�Q6��(�4��Q���x*ޯkDZ���:S&A%��P�5Z]E3k�R͑�=��-ǒ�Y� HPV�r��"vw��,�l�#���̉3�:�"����ss'�t�".��#F�=����M�;�9Z�lp�a�Ed���
�	�q��H�#JjΧ���1�Ob���^��0<n����O��Z�r=�:s��3?	3L�m��]�����]Z�r�������lq�]W.QG�̲�)��w{���>V'�T�R�&��3OK���( G)���@�K֎��Z8HOv���Um�w��S�Pׁ�]]Vl*���u��9
�/@�l2��޼�dػ�z�W/�C'á�>d��y��C{h��g�2�'�x�j��&t������plБ�}���V��Τ-n�h�,��Q�E�\՛B�y���@D>�ж*""�D>\24
�)KL�ڿ|lC��$�hi�1����CB���k���fY�cZ���{cea�.���8����a�	�\Po�s8��Ƈ�VI<��h!��b��Cfʇ�����c��5qo��HP�:b,�����*릕��R*o��t��Rm`%�b�
����� a`D.�ҋ�,�B�M�^�H]�m��A��T��M0�H�& t
~'��%�s�+Y�B�aB6W)&���Vڔ�!���P*�q��8��z�W��Gr>�n0\����x�}��rJt)��rZd�I{�ƒEAI��h;�M�WR��$����o3fLT_�������n�L�'�_�4�4b�1@$�������H��Joq�dcU�#����<.�l�qn��h����n�3?#
S�z�\��(~,t�p��bd�c���t��g�4g�|JA}HL=<y���>$x���at0�U��8����z��1�G�]�����)P�MZʛ�P��F��U�&O5ɏO|��n�|����ނ
!�o��3U�MD!�l��.���0"t� ��)nYI���s_-�(5fl��`" ����{����;I� vy�y�#n����(��H�N���btg0|�!�ñ[��o���(��e��&C�Ȏu�Ұ6�Qs�D�2Xw�wr�Mj������ї�"�$�?��o�#l�{E�;�LY ����0ښ��.��zPH�J#<��p�����s�1N�a�����ʸW��ѫ�B���¿/P�z8��@s�0'\hBE�8�/�Z=���)��?,�J�a$YH�Է�H��`��K�\%>[�;]��v\�쮻"�AR7�?<x�ۀ.�Ͽ���_Z�@K\fy�0�
]Wl�%�*��>�D��!@����Rn!B��R��C.�<�
[S����A�W
�}�H�+EX)���Zh=�o2����_2Z7��b(� �pD�_��(_i:`�I�RΤ�ә�Zi�����,����wJ'-��~���h�����rwG���+�q٨Vy�н����,�u��q�n�
���.�m�[Ǣ0�Uh���[�e�����͙
k�a�B'� �6L�Z����m3"3�K��a������uP��#"�(|L��ٳ6{٪]h�w;�=��H#	��^���m����wm"�øC7�q��A�'u� �5 Q*��,qTR-5H�"��T�N�`*!p	�����!R�B�S�<ﷇQ�'�7�]B�{�|�߻�_�޻��� KU���˗Q��<A��(������$�g��f�[�9�[�Zp#�B�N�5���g2X+*Bb�;}�����n��Y�<�7U0�J��X�[�n�Sa	�E�?±�D^2i�P���4ij0�"�Y-�fh� �	?QoЋ�h
�{�H�G�3�V+)xJ\*p3�ޠ��fg����(H�
�~��Z����t��#�>�^�J����$+3�^U!�]�/�H8�G�\���ވRT�"�?f9�a��T�N�o
	C�&ڰ����Qr�
���H�p�b�&�1��K+�kf/b�H��
�7�_��%�oX��b��VSX��4Њ+��
�ʨ�,$�j\�������x|7��3of�ø����qw�]�p�y����Y>�|T�'3�R)���Iv4`���qK7/fd�(F��K�Z�",�#���6U�t��a��l�y�l��DٛЎ\Q����P�R�P@�j&��t�N\�>�������+!��-$����r�${�&����$���
T4�-�1-�򧆃a�_�X_�<:�0kq95�85������Fa�jO)��*C(D (�J�r�r��%�:�,�t1�ڠ�H+��,6Z��U�ڷ��&p@۱dG��K�ð�W`�f�K�2��%�L��ƄhIVK��D����fV=��r� *��okO��J`��.?�h�K�M:o�_���1�r���R����K�O�^�<rv��Y9�ꄩk�1r�t���RDy�;p�	� ��TBD-n	q������̋%ة߸�"�:P~K���
�e�,|��${8�z�$�sp��W ���*S]H�3�d����Bb�D�ԩ�	!?�
:0��(3�,��'[۫��*�q�� �"�W��V�;�C��A%ƲFR�F+�����66�߽t���Ԭ��qm�>.>\���˾�l%ʧwE��<Eo��W����$�Э��K#�� 
��^�0V�GE��\���i�b1�DHR��r
G���ʜ:h���c&��m�=��������%�� %��0�Cȴ1a��)X]m���'`��m����?X�.��4Z5e�eB-�"�j��W,��p|���kㇷ�=��Ɲ���Ŏ�(�mLX�Y�x7v��/��!�y?�,T`��.Et�E’?����L�bt��m����$���w���d��e��
���sz:��Hw���*�����V�M��)�e�ۻ@'�~]U�l?k�|�d�R�u�ʫ��gNhB�7q#�)&�"��N�Ma�T+T@��Լ!�V�w-��+�C�w��k�����666��;�|*���i���Hf-���~o0��A��f���`"�
��TJ�Y��n|E�|�Ǒ2|� �3�nB�^3y���j4S[ξ�����N������4�q��+Y2gsϚ�"�t�RE��A�C�R�q(f(H�$	��\:���]q�M?ߜ����{�{���}��Ҿ��z~�Ƴ�/ܲ_0������М;S��[��R�b񊺧����x8�V.��X�F�j��-�B,t1�z�c��:)�����z����O�^~��n_T'EX�0K'a�h�f��E[f��b���oO_l��������v{*��vA��;�A�y����K��A�
{c�|+\� �r��y�?���O�
�T:��=�}���� ����G�\�`z�H��D��������0���o��d�M Nf�TO\{��KA�}�����b0'�P�}��&��m�iߛ4�S�=�I�Ū�Mh�����UV4mE�UQd������B�<��/�%5�z�.eI�RtI��8�^`^��wi�F�n��r��H�A�[z8�1��1`�<��n-�?�����!@�"���F�ݽA���`߀2�B>G_���ڙw�ܗ��R����'wT}fLo&Ib��LLU��a^UY�Y�e�I��eʹm����ս;�՝vZU�I���y4;_��"���.�#��zI�ptػi�RhQ�R��%��4�S����mp�^K�G���H�P) �>.��1F�ZET�ay8�*�>���-|�\`�t����,������/����$3�I�!Y2H�0�Ib�����]����Dz���bqi}�fh�5�/�;�]�T�Hala��N8�8�UK��ш*A<A"�� E`�F��"���,D�����A�����7l�𺮶у&6kX����$���&����I����X?˰y�NL��&K�"e�=bTm_���(2E	�&���'��!��ڗ�!{z�[ߥ�	s��� .H�a~kd�~�	�cF6B.E�\���6T�B{�_5Q�R]�
�`���v��#h6GU�o'?���Υ:OB�ar�Uc
�'y�y��&-�s}[�,M[T0$��鵦�,o�=��՜��
�ǚ;CU�	H��XI�*I~h���E܊#=\0pZЊ;I\�X؅�\"�hn�����Z'
07G�cȋ�cPp�X,���A���0��w!�g��jx��x`�16���l�I�,L�<oP�^�!)��c�H͢S��I�6��OOu�ry;��f���$�s�H��ɥ"��p�8�7���F�KwTM��P��F�D��k0Fi[A�S��s����R�ƨ٫�nEQ8�^����j"B�N�<A\�R��b7c5f\�T�L#p�ƭ�@���|K��n.dY��X��=��;�Ÿ�_,:-�9d�r*�0
�n��rWO��g�S�s�p��[��.�cɻg����j�k<£��)
)'��g��A�PP)e�$�G.q��_2;�>��`Ej��$vY��嗟��h�"duTP�n��<E�tt&��j�	&�P����0����f�;���7��H!Xa�S�#�$�a�ݮT��cy��_�g
nK<B����� �&7A"hA�ȣ�pC2����	
�:ݕ�ᖛ����'��+�#�xBQd*�U�zE���"O���/��r�=h���_�1��J����b�T�e$rwNܖ�^��:)*({~����o�Z3�#0	�.-G�a`����[�)N�����۶��V�XVܖ�<&�7�\3�5����G�??��KOa���Geg��M:��I���:h�D�(�����؋���+\�Fe�ʪ//�<��U�F(����k��K^~}�+���1R�i�,��`GY��)��o��p��v�0d��	@�[)�$�Ď���ր�v�X��C]����M{}������O����!]�BB%t}����U�^)y��@�1H�A��=��8
��u�*�"��>0&d
o"�yg�� )��e@$�=���Ȝ�)x޽e���@ό{���9�W���d%�x�^�7�$(�!x�a 8���od�&x�cx,U�J��, b!��ޑ��5�� $E�$�E�QBo{�aQRUY�'��G���ٓQ�x��;�p��3~���~��(�%"�j������=4FoQ�oDLZջ��N��{9�Y����CN"��u��F*~9�Ȼ/b��.������ϔ�C�Y��
���x���k̖�	W{q9ggv<�7��z�ެS"��N� ��Xa�E"�+�%q��ȋ�R1
�������5q�Aԋ�HQ��2N�Cd}-�]X��s��e[��_�`���2�&J�� ,�Ǯ�
O�ɖ�"1*���l%��0@,�i4�dX��@w��h��	��X���xU&���
_��R�r���Nb����nmPU�|�	�s���9U�$#8�0��H����U�� �8�ؾJ�Feu-�
?��-	�Kt^\���>��s��fS}������Հ$+}��*0��J&x�j|d'��I��)O������,�y��m���)b��(G2�(lZ���ŭ�n�7��J0���4չ�����<��z
��p�4�|��d���m���~q��)wعm� p�kG�y�9�N巏KQ�5bw��EE�xU��Y^ѦW�����P8u�\rgQ]�������߫M��V�W�O,�H&DH�M�i��1ґ�"�0g������5�F�P�-w$����û��+��a���H2�A��[��"Bf(9$9��l���D4��}Y���
�ah�f�>�}�ç�܆�뺤����~��Ϫ�/m�fn}���twh.��g���:�fh�~h<��
��]մ��pik~s��Mw����x�͆t���2��4N���ؤ@i�7ʄ%�r$�[��@��T��O�VO�=������ _v6#3�(�4��3������Q�mw�)d��D�Qb`�[ū񵌣y�_$�nZ����>�{�ik�i�����ֹ�M�U;�ms���t�����2�MݷC��xv��Ru�ܜs��l���n�K��k�ϮN���|��6�Áy�Jb�}s���{ɓ���خ���e|�x����A�$Ce����C��RMYL�v"'��l���%G�s��@��D�كT-�]��	J'Z~x �w�
� b����F7 ����}�)�~�uq�:�ꦊ/u7�E;�34ݟ�_}�Um��N�����g���4�bբ��UUsdSt
8�MϣM�6s>4|0�J�X�[@�����2�%�y�v��#�#�4\$Խ���EDk:	�@��d�;n�kp,���d�.ð!-:f�/~6]M�`W7��o\���9Q"N�� ��رs��M�}XR!�v���t�? du�h2ǩ��w���j���u�!/�~-H�u4��^�pU�y����_����Uͣ5@����	Ȩݿ��+�xU\#m`hG¶/��a�Y�;�Hb����3��@X��˃��_d��C���{��h3��Si�neb+�Y�g,>=���٬4����g����D9�Ep���ߟ�?��zs�D�kY8YS�9�1f�ĉ/�}9��:ł��g�-T�re����(�?�iگ�J�&��K]v�8��7>4�0<D�K��F*�q����*'A����'���L��v�2y\�
7y&z�2=�q��`Fj�����3lO�4��0��=T�̈́>��w�9�&��eZ�ub�<�^T�Ew77 |���$i%H<�Jb�(�� �[��2�xwdR�Q�QL��z�@�DC2���0�������L}U5~�2�2�rX�5�7�~/��0���$nӗX' [��^����' K���;�s5o����“�+�ٙM��6Ն�(w��t��g�Z��7_���
�FC(.4^by(�P0R��EK@K��J�/��w����'�Օ�8��t�ޛ"wl:�
nyG�R5�XY�=�U�oT��5�y���̡gS1vY��0�Y$�϶;)�M�L�	���5�Yq�͝��JG��T�
�\�"�z���E��[bu�i�[d��ي�J(�Dt��Dq�rOk|�����'�~�z`2�OV->W�5�4��P���je�X�Ź9h���4�8a�ԗ�r�)2*�)��s�5є�
�2F+LT�6$���o�L�]��B�+�N���D�D��Ę�f��nD"���;ar\�}���֞�:���2Y�>�灓k	+2�
`���
'\A�?~�Z)'&/�	L�Ox�q�-��Ě	XZ�3awy�
��	�� �G:�G��v�׽����5�����
x�u���̨1�}P�p�,�gK5�Ϟ�R�K�8i�F% V�JnFk���)��"��C][�ڙ�m��V��c�c�([q}��]q�e��K$^ƫh���f��yޜV�|r�x�g���c�ԃ���Y�c��� j5�L$�8̢iꦡ��R�U�b��߈D�܄��uqka.4�$(�س�R%I�@7b�WǮc�V���4�۲����I�L픬��)A�H�ɓ$����a���6
�FU���S��z쁆j%�uMe��^ӌq�(>�J�#��7M�1�p��Ʊ8	���7�J9�p�K{*���2�
y$�m���W�M"Q��ι*,�eT��s�8�h�g� �y�_N��.V�_VrΡ�B>�i�%��Ms�d��l"�ZL����g�� I��B��W�b1J�|m��f��G�ðU3�Ѹ5#b�$���庴].b"����W���*o��W�ѩ�p�!���#L��ba���GPX�2�����g��sa��K��{�r�Fq��_.�Q��K���[Y�
!���5���� 1�I&7Ҥy�a�2����WL�c�2`6�����d+p=����nM�Q�����G��,6lƃ��b��YfD��A~j2�(>/Ӆp5���ax%�p<04�x�BX��h���_QA�9�_�߮��\�}?�}���7����3�����`�n8;`HJƣI^i2��W!��0����gЫU���J�e���|V;�`Z��`�V�����,Q�<uX��q㪱�
����n��w���1�E. ?��a `b�ZĜ���ѸGa�Cq+���������N#��{�;n9*���~V����?mH�m���w�ڔ�7� D�c6P=/@3d���3�u��<mX�Ak\�-�&�c�x4e�J�#o`�wPĵs?z��'C��Y��ɂ�u�*� f�
DD��,��`~y�I^NuF����߻��b�����P8�B�a� ��G.ۍ_��'_F��>�[=bﷹ[��f�6��n��;�R��M\h6�_BĨ8'�Z eI����H�
h�O������]��|cě3��
�_�<�����W���*��RpYT+���Uzl4�z:�B��g,Y��2H�'��ރ�v�fmJuPv{Z&��儁Q��6=qDL���ܴ���̣Y��3lĽ�4��!������F	E_n�u���x6��,f����Q}��W�
����r)�;,<��'a�W�TJ��#_�Gl��}~21��aڣų�
b���-/z/@�	g�\$�f&ګ<��h�����ݧ@D�sY/&�KmJ"�Z?�o�ԬU1�ia�UD[;�$2�ƽ�{vi�
������6�u�I�Ď~h�S�¾�)Ǧ�(�̓�윎�"дs�p�Vj�џJ��^���eyQԫl�$��u�]�����Rlz{�ش&���~�B�V�����p�L25���ì�k�l�U'+ێ�ȑ
"�6�.��2$�ĉ��Lˇ=M�b�2P���ݻ�蠵R*�s�a,��=�_����U@���C�DW�Q�kVa��kWbYA�A���p���8�NCy�O�Ď�.jC�7�(ȔS&rHY�0a���C1]d�֡Z�P��"�4��8��×�ʻFF�2�����@,�
�z2�q�q�Z$�3�����
�*��Djg��z��Sd�������Y��Zf�?O��ђ8-bۋ��x����l�r��G+L9���& &wOA��Xt!2�
��C�c�ӣ��y+9����Q/��'@�5gȼI�$&�HgQ;�+�סb<YJ�h�)�2���\;y;�}�zxL@V�L�h��ȃ0=p���jA'��aɧ�4{�����| P@��� �+B����5D,	+Nԟl�`�O-ފ�p$by������G\�ƒ��dE���M쪋���ڡ/���x�ʷ���ag���w�zo�}~��q~S��¦�8�@
 l�i����� MA����W��0��`�O
S{/6�����l����v��]4�g� P"��B��&���e�P� ʯ�5%��IR���5�۔ɫf�~��݇�\
�@�����	��ξV��3|��\�ܳC�y8."����{�56�x�.�*�{��箟,��b�A7�a��4��X��LD����l�H<2Z��#���ހ`�$�"c�j�w��ǕQ�J��EѰ��[�.���V1�y<G`t�c��R&�����LQ����D$�+��Ig"6Ґ����k�R�
O��`B*N���+�4�������cL�!�=
_;�>FB�2����*�(@��$Y��Ҍg���aҾ�Ӡ�1j$�b�JL�@t�����y�4�g�R}��zX�(��Ϫ�&եO/��bh%���e�O^�t�D���WB\���[V\46�ߜ�=���L׵+�_AGcW`c��ztJEWX+�w���[��,b'މW$����bn�;��Ȼ��b;��N1F��	�'�n�U�1�i3�P<��R>~6�	7�&$�S�\�q
]�-�@�"��cY7X��7�ɲ.W������`M�/��Z�KaR�e?�#@�,�Q�j^�kU-'
��F�UQ�ݟGh��;����l�OgE�gs"�}��AD w��<�=�K��������02�	�y`Q�U{Ldy�3M��dd�d��'���2�0 �����4&S���?��O��*)�0�~�Q���pG����i\��C���GR��p�����h��O<_n�#/���&��̋����0�Z9�ǖ�#5����1���@z��&6jS�^ʁ7֣��,�{F�b�f&���⫺ܔ���Z*M��S�#���W���6Zn`[
��w�v!��"	��A��ڄN&��F8s6e��~�V��]�ބ

.(��Ÿ��L�eS��vϻ��M-��!h�� T�[��=S�ׄ8@<I�2�3���G��D��h��q�2A��d=//H�״N�G��iTʱQ¡���\�yρ��x�2��D������܅Z-��
�����U�+e�$&\dF$�0��G ����r�if0��q �.pr���kf�_�7II�'��5�6����{�~�׵:
/�X�ȉ�'3U���'φ
ÐY���@J�0���m�����rS��Xο#�="|O�q���
�	�q��r�;}����Ǐb��#b���u1��R)l0I�9<^�r��%^�*���sx��iV�sԉC�\u�6:H�$��}{���h�P�&2�:g��Cn��`��^R�(�1&Q���׉%��i:�9
���%n�4H]�xŏ'�,�c�Լ\�0�>��'n��M�8zbMLF$s��^
�r��ˑW����*�hL9Lx��X�*�R$c�<��)UOBP�_�x�N8��@O%]�p�uH��@jy���*�JW�ٸxG�$���+^~�U�x��a�@D{
�A�J�`�Lj�v"1sz��xЛ��s&�����-���s0�(٥�j�C]4Ծ�Ò*DZ��QD��᯻��5R{3�ԟ�1%4ʡL-l�\�"r��\1��B$|��ZE����س�~B�nt��H��C�jM�.��~����7F�=
gn�iL)7o8��Ȇ��b�`����"膣x~q"�:�o���p9����@#6oo���">4�fiM���@|�9�����A�~I��"ɮ�j&��D��1�&*cl^$	�E^=�de�#�4ug��I��I�2Wkd�Ѝl���hޒ"ڐ ���,bcG7o-ڗ���9��)��Q��\�P�q�dmeijZ:��ّ,�n)�_�́��>��p[����f}%��G�5@�+̴�
�"��4ko��5�@�ٜU��DVqd�E���Y?q��p0�|Dd�ؙ_L�f�*%	��!ۗJ܈�W+�
�5*�ĉ����"#7a�S1��21�FE�sU�ꋑ�d�<@��	u��]�,/���i��ɦ�������_)�`<2o���7@��h��_�]��-��J�k�GgQ�S\�g׫�,Z4�q ���8���^�Ad�ĥ?�!�4
�u���9�"���j������)���6ؽoI�*H*�X��uR���T�B��\պ�_`�f �_�
��;z�3��FNѭ��t�h�8�G�"&�]�y�:����
'Q˶=�0)5�u��u��1�
��0���Yɥp�S`1��^/�Xp?��r�4�IGd��U�V9����
�q 4����܁�nȫouCb.ŕ�g��D���!4�U�w�-"r1���w6����n�nd`�����<�6k�w�x +1�_�)���"Ȏm;��䁪��̂�A�3I��rE�\�!%`27�����V�����j��&ƻ7$�v��_��,�Ʀk-��O���E >���+b�&
�w�<�}�@X�޽�Ha��\��k]���7m�u�e˰rx08^"��ϑ�<��O7��n������D^rW��>d�{��[��-���Ap1U�*o!杞���c�q]W��r���׹����@bo/N?�r`qd�%[pm%�b�;)\wT���p��*2k��s[̞Y��s
�(�@�����\�u���"$~���1N�o�x�k�?�K�T��IEND�B`�themes/jenga/v1.0.0/style.min.css000064400000032036151213255710012401 0ustar00.ms-jenga{opacity:0;padding-bottom:40px;-webkit-transition:opacity .3s;transition:opacity .3s}.ms-jenga.ms-loaded{opacity:1}.metaslider.ms-theme-jenga *,.metaslider.ms-theme-jenga *::before,.metaslider.ms-theme-jenga *::after{-webkit-box-sizing:border-box;box-sizing:border-box}.metaslider.ms-theme-jenga .flexslider{margin-bottom:0}.metaslider.ms-theme-jenga .slide-control,.metaslider.ms-theme-jenga.has-thumb-nav .flex-direction-nav{background:transparent;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-box-pack:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;line-height:15px;margin:0;padding:0 !important;position:absolute;right:10%;top:50%;-webkit-transition:top .2s;transition:top .2s;width:auto;z-index:8}.metaslider.ms-theme-jenga.has-thumb-nav .flexslider ul.flex-direction-nav li a{position:absolute}.metaslider.ms-theme-jenga .flex-direction-nav li{float:left}.metaslider.ms-theme-jenga .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-jenga ul.rslides_tabs,.metaslider.ms-theme-jenga div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){align-items:center;background:transparent;-webkit-box-align:center;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-box-pack:end;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;-ms-flex-wrap:wrap;flex-wrap:wrap;height:120px;justify-content:flex-end;margin:0;margin-bottom:0;margin-left:0;padding:0 !important;position:static}.metaslider.ms-theme-jenga div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){align-items:center;-webkit-box-align:center;-ms-flex-align:center;position:absolute;right:40px;top:15px;width:80px;z-index:9;z-index:9}.metaslider.ms-theme-jenga .coin-slider .cs-buttons{align-items:center;-webkit-box-align:center;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-box-pack:end;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;-ms-flex-wrap:wrap;flex-wrap:wrap;flex-wrap:wrap;height:120px;justify-content:flex-end;justify-content:flex-end;left:auto !important;position:absolute !important;right:10%;right:116px;top:26%}.metaslider.ms-theme-jenga .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a,.metaslider.ms-theme-jenga ul.rslides_tabs li a,.metaslider.ms-theme-jenga div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a,.metaslider.ms-theme-jenga .coin-slider .cs-buttons a{background:rgba(255,255,255,.9);border-radius:50%;-webkit-box-shadow:2px 3px 5px -4px rgba(0,0,0,0.4) !important;box-shadow:2px 3px 5px -4px rgba(0,0,0,0.4) !important;cursor:pointer;display:block;height:16px;left:2px;line-height:15px;margin:0 4px 8px 0;padding:0;position:relative;text-indent:-9999px;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out;width:16px}.metaslider.ms-theme-jenga .flexslider ol.flex-control-nav li a.flex-active,.metaslider.ms-theme-jenga .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover,.metaslider.ms-theme-jenga ul.rslides_tabs li.rslides_here a,.metaslider.ms-theme-jenga ul.rslides_tabs li a:hover,.metaslider.ms-theme-jenga div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active,.metaslider.ms-theme-jenga .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover,.metaslider.ms-theme-jenga .coin-slider .cs-buttons a.cs-active,.metaslider.ms-theme-jenga .coin-slider .cs-buttons a:hover{background:rgba(183,180,180,0.2);border:2px solid rgba(255,255,255,.9)}.metaslider.ms-theme-jenga .flexslider ol.flex-control-nav li a.flex-active::after,.metaslider.ms-theme-jenga .flexslider ol.flex-control-nav:not(.flex-control-thumbs) li a:hover::after,.metaslider.ms-theme-jenga ul.rslides_tabs li.rslides_here a::after,.metaslider.ms-theme-jenga ul.rslides_tabs li a:hover::after,.metaslider.ms-theme-jenga div.slider-wrapper div.nivo-controlNav:not(.nivo-thumbs-enabled) a.active::after,.metaslider.ms-theme-jenga .slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled) a:hover::after,.metaslider.ms-theme-jenga .coin-slider .cs-buttons a.cs-active::after,.metaslider.ms-theme-jenga .coin-slider .cs-buttons a:hover::after{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-jenga .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-jenga div.nivo-directionNav{width:64px}.metaslider.ms-theme-jenga .flexslider ul.flex-direction-nav li a,.metaslider.ms-theme-jenga a.rslides_nav,.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a,.metaslider.ms-theme-jenga .coin-slider .coin-slider div a{background:0;-webkit-box-shadow:none;box-shadow:none;color:black;height:41px;margin:0;opacity:1;overflow:hidden;position:relative;top:15px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;width:32px}.metaslider.ms-theme-jenga .flexslider ul.flex-direction-nav li a::before,.metaslider.ms-theme-jenga a.rslides_nav::before,.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a::before,.metaslider.ms-theme-jenga .coin-slider .coin-slider div a::before{background:url("images/arrow.png") no-repeat;background-position:50% 50%;background-size:100%;content:'' !important;display:block;height:41px;max-height:41px;max-width:22px;position:absolute;width:100%}.metaslider.ms-theme-jenga .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-jenga .rslides_nav.prev,.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-jenga .coin-slider .coin-slider div a.cs-prev{left:0}.metaslider.ms-theme-jenga .flexslider ul.flex-direction-nav li a.flex-prev::before,.metaslider.ms-theme-jenga .rslides_nav.prev::before,.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a.nivo-prevNav::before,.metaslider.ms-theme-jenga .coin-slider .coin-slider div a.cs-prev::before{left:15%}.metaslider.ms-theme-jenga.has-carousel-mode ul.flex-direction-nav li a{margin-top:-20px;position:absolute;top:50%}.metaslider.ms-theme-jenga .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-jenga .rslides_nav.next,.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-jenga .coin-slider .coin-slider div a.cs-next{right:-1px}.metaslider.ms-theme-jenga .flexslider ul.flex-direction-nav li a.flex-next::before,.metaslider.ms-theme-jenga .rslides_nav.next::before,.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a.nivo-nextNav::before,.metaslider.ms-theme-jenga .coin-slider .coin-slider div a.cs-next::before{right:15%;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.metaslider.ms-theme-jenga a.rslides_nav{display:inline-block;padding:0}.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a{height:38px;padding:0;position:absolute;top:140px;width:25px}.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a.nivo-prevNav{left:auto;right:85px}.metaslider.ms-theme-jenga div.nivoSlider div.nivo-directionNav a.nivo-nextNav{right:50px}.metaslider.ms-theme-jenga .flexslider:hover ul.flex-direction-nav li a,.metaslider.ms-theme-jenga .flexslider:focus-within ul.flex-direction-nav li a,.metaslider.ms-theme-jenga:hover a.rslides_nav,.metaslider.ms-theme-jenga div.nivoSlider:hover div.nivo-directionNav a,.metaslider.ms-theme-jenga .coin-slider:hover .coin-slider div a{opacity:1 !important}.metaslider.ms-theme-jenga .flexslider:hover ul.flex-direction-nav li a:hover,.metaslider.ms-theme-jenga .flexslider:focus-within ul.flex-direction-nav li a:hover,.metaslider.ms-theme-jenga:hover a.rslides_nav:hover,.metaslider.ms-theme-jenga div.nivoSlider:hover div.nivo-directionNav a:hover,.metaslider.ms-theme-jenga .coin-slider:hover .coin-slider div a:hover{color:black;opacity:1 !important}.metaslider.ms-theme-jenga .coin-slider .coin-slider div{display:block !important}.metaslider.ms-theme-jenga .coin-slider .coin-slider .cs-prev,.metaslider.ms-theme-jenga .coin-slider .coin-slider .cs-next{margin-top:15px !important;right:120px !important}.metaslider.ms-theme-jenga .coin-slider .coin-slider .cs-prev{left:auto !important;margin-right:16px}.metaslider.ms-theme-jenga .coin-slider .coin-slider .cs-next{margin-right:-16px}.metaslider.ms-theme-jenga .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-jenga .rslides .caption-wrap,.metaslider.ms-theme-jenga div.nivoSlider .nivo-caption{background:rgba(0,0,0,0.8);bottom:0;margin:0;position:absolute;-webkit-transition:.5s all;transition:.5s all;width:100%}.metaslider.ms-theme-jenga div.nivoSlider .nivo-caption{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-jenga div.nivoSlider .nivo-caption a{border-bottom:0}.metaslider.ms-theme-jenga .cs-title{margin:10px;padding:20px;width:calc(100% - 20px)}.metaslider.ms-theme-jenga .flexslider ul.slides .flex-active-slide .caption-wrap,.metaslider.ms-theme-jenga .rslides li[class*=rslides] .caption-wrap{-webkit-transform:translateY(0);transform:translateY(0)}.metaslider.ms-theme-jenga .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-jenga .rslides .caption-wrap .caption,.metaslider.ms-theme-jenga .nivoSlider .nivo-caption{color:#fff;font-size:.9rem;padding:20px 30px 55px 30px;text-align:center}.ms-is-small.metaslider.ms-theme-jenga .flexslider ul.slides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-jenga .rslides .caption-wrap .caption,.ms-is-small.metaslider.ms-theme-jenga .nivoSlider .nivo-caption{padding-top:50px}.metaslider.ms-theme-jenga .filmstrip{border-radius:0;margin-top:10px;width:100%;z-index:4}.metaslider.ms-theme-jenga .filmstrip ul.flex-direction-nav li a{margin-top:-20px;position:absolute;top:50%}.metaslider.ms-theme-jenga .filmstrip ul.flex-direction-nav li a::after{width:10px}.metaslider.ms-theme-jenga .filmstrip ul.flex-direction-nav li a.flex-prev{left:0}.metaslider.ms-theme-jenga .filmstrip ul.flex-direction-nav li a.flex-next{right:0}.metaslider.ms-theme-jenga.has-filmstrip .flexslider:not(.filmstrip) ul.flex-direction-nav{width:90px}.metaslider.ms-theme-jenga.has-filmstrip .flexslider ul.slides .caption-wrap{margin-right:110px}.metaslider.ms-theme-jenga.fullwidth .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-jenga.fullwidth .rslides .caption-wrap,.metaslider.ms-theme-jenga.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-jenga.fullwidth .cs-title{margin-right:320px}.metaslider.ms-theme-jenga.fullwidth .flexslider ul.slides .caption-wrap .caption,.metaslider.ms-theme-jenga.fullwidth .rslides .caption-wrap .caption,.metaslider.ms-theme-jenga.fullwidth div.nivoSlider .nivo-caption,.metaslider.ms-theme-jenga.fullwidth .cs-title{padding-left:20px}.metaslider.ms-theme-jenga.fullwidth .flexslider ol.flex-control-nav:not(.flex-control-thumbs),.metaslider.ms-theme-jenga.fullwidth ul.rslides_tabs,.metaslider.ms-theme-jenga.fullwidth div.slider-wrapper .nivo-controlNav:not(.nivo-thumbs-enabled){right:60px}.metaslider.ms-theme-jenga.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-jenga.fullwidth div.nivo-directionNav{right:20px}.metaslider.ms-theme-jenga.fullwidth a.rslides_nav.prev{right:284px}.metaslider.ms-theme-jenga.fullwidth a.rslides_nav.next{right:20px}.metaslider.ms-theme-jenga .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,.metaslider.ms-theme-jenga .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active{border:0 none}.metaslider.ms-theme-jenga.has-thumb-nav .slide-control{top:100px !important}.metaslider.ms-theme-jenga.ms-is-small{padding-bottom:50px}.metaslider.ms-theme-jenga.ms-is-small .flexslider ul.slides .caption-wrap,.metaslider.ms-theme-jenga.ms-is-small .rslides .caption-wrap,.metaslider.ms-theme-jenga.ms-is-small .nivoSlider .nivo-caption{margin-right:0}.metaslider.ms-theme-jenga.ms-is-small .flexslider ol.flex-control-nav,.metaslider.ms-theme-jenga.ms-is-small ul.rslides_tabs,.metaslider.ms-theme-jenga.ms-is-small .slider-wrapper .nivo-controlNav,.metaslider.ms-theme-jenga.ms-is-small .coin-slider .cs-buttons{left:0;right:0;width:100%}.metaslider.ms-theme-jenga.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-jenga.ms-is-small .nivo-directionNav{width:100%}.metaslider.ms-theme-jenga.ms-is-small.fullwidth .flexslider:not(.filmstrip) ul.flex-direction-nav,.metaslider.ms-theme-jenga.ms-is-small.fullwidth div.nivo-directionNav{right:0}.metaslider.ms-theme-jenga.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-prev,.metaslider.ms-theme-jenga.ms-is-small.fullwidth .rslides_nav.prev,.metaslider.ms-theme-jenga.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-prevNav,.metaslider.ms-theme-jenga.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-prev{left:20px}.metaslider.ms-theme-jenga.ms-is-small.fullwidth .flexslider ul.flex-direction-nav li a.flex-next,.metaslider.ms-theme-jenga.ms-is-small.fullwidth .rslides_nav.next,.metaslider.ms-theme-jenga.ms-is-small.fullwidth div.nivoSlider div.nivo-directionNav a.nivo-nextNav,.metaslider.ms-theme-jenga.ms-is-small.fullwidth .coin-slider .coin-slider div a.cs-next{right:20px}themes/jenga/v1.0.0/theme.php000064400000002027151213255710011555 0ustar00<?php

if (!defined('ABSPATH')) {
die('No direct access.');
}

/**
 * Main theme file
 */
class MetaSlider_Theme_Jenga extends MetaSlider_Theme_Base
{
    /**
     * Theme ID
     *
     * @var string
     */
    public $id = 'jenga';

    /**
     * Theme Version
     *
     * @var string
     */
    public $version = '1.0.0';

    public function __construct()
    {
        parent::__construct($this->id, $this->version);
    }

    /**
     * Parameters
     *
     * @var string
     */
    public $slider_parameters = array();

    /**
     * Enqueues theme specific styles and scripts
     */
    public function enqueue_assets()
    {
        wp_enqueue_style('metaslider_jenga_theme_styles', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/style.min.css', array('metaslider-public'), '1.0.0');
        wp_enqueue_script('metaslider_jenga_theme_script', METASLIDER_THEMES_URL . $this->id . '/v1.0.0/script.js', array('jquery'), '1.0.0', true);
    }
}

if (!isset(MetaSlider_Theme_Base::$themes['jenga'])) {
new MetaSlider_Theme_Jenga();
}
themes/jenga/v1.0.0/script.js000064400000004550151213255710011607 0ustar00(function($) {
	/**
	 * Extra JS for the Jenga theme
	 *
	 * 1. positions the different elements:
	 *    - arrows
	 *    - dots
	 *    - caption
	 *    - filmstrip
	 */

	 // metaslider has been initilalised
 	$(document).on('metaslider/initialized', function(e, identifier) {
 		// if .ms-theme-architekt
 		if ($(identifier).closest('.metaslider.ms-theme-jenga').length) {
 			var $slider = $(identifier);
 			var $container = $(identifier).closest('.metaslider.ms-theme-jenga');
 			var captions = $slider.find('.caption');
 			if (captions.length) {
 				$container.addClass('ms-has-caption');
 			}
 			$container.addClass('ms-loaded');
		}
 
		// Wrap nav and arrows in a div
		// When Dots
		$(".metaslider.has-dots-nav.ms-theme-jenga:not(.has-carousel-mode) .flexslider:not(.filmstrip) > .flex-control-paging, .metaslider.has-dots-nav.ms-theme-jenga:not(.has-carousel-mode) .flexslider:not(.filmstrip) > .flex-direction-nav").wrapAll("<div class='slide-control'></div>");

		// When Carousel
		$(".metaslider.ms-theme-jenga.has-carousel-mode .flexslider > .flex-control-paging").wrap("<div class='slide-control'></div>");

		// When Filmstrip
		$(".metaslider.ms-theme-jenga.has-filmstrip-nav .flexslider:not(.filmstrip) > .flex-direction-nav").wrap("<div class='slide-control'></div>");

		// Nivo with dots
		$(".metaslider.ms-theme-jenga:not(.has-carousel-mode).metaslider-responsive > div > .rslides_nav, .metaslider.ms-theme-jenga:not(.has-carousel-mode).metaslider-responsive > div > .rslides_tabs").wrapAll("<div class='slide-control'></div>");

		// Nivo wrap arrows
		$(".metaslider.ms-theme-jenga:not(.has-carousel-mode).metaslider-responsive .slide-control > .rslides_nav").wrapAll("<div class='rslides_arrows'></div>");

		// Nivo put arrows after dots
		var nivo_arrows = $(".metaslider.ms-theme-jenga:not(.has-carousel-mode).metaslider-responsive .rslides_arrows");
		nivo_arrows.next().insertBefore(nivo_arrows);

		$(window).trigger('resize');
 	});

	$(window).on('resize', function(e) {
		$(function() {
			// Removed these to give it a height that works for any number of slides.
			// var controlTotalHeight = controlNavHeight();
         	// var arrowsTotalHeight = arrowsNavHeight();
			$('.metaslider.ms-theme-jenga .slide-control').css({
				  'position' : 'absolute',
				  'top' : '39%',
				  'height' : "140px",
				  'margin-top' : "-50px"
			 });
		});
	});

})(jQuery)
themes/jenga/v1.0.0/style.postcss000064400000015430151213255710012524 0ustar00/**
 * Containers
 * This includes the main wrapper for all sliders, then each slider,
 * which is one level above the individual slides.
 * Don't be afraid to use !important as needed.
 */

$theme_name: jenga;
$theme_prefix: .metaslider.ms-theme-$(theme_name);

.ms-jenga {
	padding-bottom: 40px;
	opacity: 0;
	transition: opacity 0.3s;
	&.ms-loaded {
		opacity: 1;
	}
}

$(theme_prefix) {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}
	.flexslider {
		margin-bottom: 0;
	}
	.flexslider:not(.filmstrip) .slides,
	.rslides,
	.nivoSlider,
	.coin-slider .coin-slider {
	}

	.rslides img,
	.nivoSlider {
	}

   .slide-control,
   &.has-thumb-nav .flex-direction-nav {
      width: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: absolute;
      top: 50%;
      right: 10%;
      background: transparent;
      line-height: 15px;
      margin: 0;
      padding: 0 !important;
      z-index: 8;
      transition: top .2s;
      /* position: relative; */
   }
   &.has-thumb-nav .flexslider ul.flex-direction-nav li a {
	   position: absolute;
   }

   .flex-direction-nav li {
      float: left;
   }

	/**
	* Dots
	* You should inspect the sliders to see more specific rules
	* mixin use: @mixin mixinName ...supported_libraries
	*/
	@mixin dotsContainer flex, rslides, nivo {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		background: transparent;
		position: static;
		margin: 0;
		margin-bottom: 0;
		margin-left: 0;
		padding: 0 !important;
		height: 120px;
	}
	@mixin dotsContainer nivo {
		position: absolute;
		z-index: 9;
		right: 40px;
		top: 15px;
		width: 80px;
		z-index: 9;
		align-items: center;
	}

	@mixin dotsContainer coin {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		flex-wrap: wrap;
		height: 120px;
		justify-content: flex-end;
		left: auto !important;
		right: 10%;
		position: absolute !important;
		right: 116px;
		top: 26%;
	}

	@mixin dotsLink { 
		box-shadow: 2px 3px 5px -4px rgba(0,0,0,0.4) !important;
		transition: background 0.2s ease-in-out;
		cursor: pointer;
		text-indent: -9999px;
		display: block;
		position: relative;
		left: 2px;
		line-height: 15px;
		width: 16px;
		height: 16px;
		padding: 0;
		background: rgba(255, 255, 255, .9);
		border-radius: 50%;
		margin: 0 4px 8px 0;
	}


	@mixin dotsLinkActive {
		background: rgba(183,180,180,0.2);
      	border: 2px solid rgba(255, 255, 255, .9);

		&::after {
			transform: translateY(0);
			opacity: 1;
		}
	}

	/**
	* Arrows
	*
	*/
	@mixin arrowsContainer {
		width: 64px;
	}
	@mixin arrowsLink {
		position: relative;
		top: 15px;
		background: none;
		box-shadow: none;
		width: 32px;
		height: 41px;
		color: black;
		opacity: 1;
		overflow: hidden;
		transition: all .2s ease-in-out;
		margin: 0;

		&::before {
			content: '' !important;
			position: absolute;
			display: block;
			width: 100%;
			height: 41px;
			max-width: 22px;
			max-height: 41px;
			background: url("images/arrow.png") no-repeat;
			background-size: 100%;
			background-position: 50% 50%;
		}
	}

   	@mixin arrowsLink__prev {
		left: 0;

      	&::before {
			left: 15%;
      	}
	}

	&.has-carousel-mode {
		ul.flex-direction-nav li a {
			position: absolute;
			top: 50%;
			margin-top: -20px;
		}
	}

   @mixin arrowsLink__next {
		right: -1px;

      &::before {
         transform: rotate(180deg);
         right: 15%;
      }
	}

	@mixin arrowsLink rslides {
		padding: 0;
		display: inline-block;
	}

	@mixin arrowsLink nivo {
		height: 38px;
		position: absolute;
		top: 140px;
		width: 25px;
		padding: 0;
	}

   	@mixin arrowsLink__prev nivo {
		right: 85px;
		left: auto;
	}
	@mixin arrowsLink__next nivo {
		right: 50px;
	}

   @mixin sliderHover__arrowsLinks {
		opacity: 1 !important;

		&:hover {
			color: black;
			opacity: 1 !important;
		}
	}

   .coin-slider .coin-slider div {
		display: block !important;
	}

   .coin-slider .coin-slider .cs-prev,
   .coin-slider .coin-slider .cs-next {
		margin-top: 15px !important;
		right: 120px !important;
   }
   .coin-slider .coin-slider .cs-prev {
		left: auto !important;
		margin-right: 16px;
   }
   .coin-slider .coin-slider .cs-next {
		margin-right: -16px;
   }

	/**
	* Caption
	*/
	@mixin caption flex, rslides, nivo {
		width: 100%;
		position: absolute;
		bottom: 0;
		background: rgba(0, 0, 0, 0.8);
		margin: 0;
		transition: 0.5s all;
	}


	@mixin caption rslides {

	}

	@mixin caption nivo {
		transform: translateY(0);
		a {
			border-bottom: 0;
		}
	}

	@mixin caption coin {
		padding: 20px;
		margin: 10px;
		width: calc(100% - 20px);
	}

	.flexslider ul.slides .flex-active-slide .caption-wrap,
	.rslides li[class*=rslides] .caption-wrap {
		transform: translateY(0);
	}

	.flexslider ul.slides .caption-wrap .caption,
	.rslides .caption-wrap .caption,
	.nivoSlider .nivo-caption {
		font-size: 0.9rem;
      	text-align: center;
      	color: #ffffff;
		padding: 20px 30px 55px 30px;

		.ms-is-small& {
			padding-top: 50px;
		}

	}

   /**
	* Filmstrip
	*/
	.filmstrip {
		z-index: 4;
		width: 100%;
		border-radius: 0;
		margin-top: 10px;
		ul.flex-direction-nav li a {
			position: absolute;
			top: 50%;
			margin-top: -20px;
			&::after {
				width: 10px;
			}

			&.flex-prev {
				left: 0;
			}

			&.flex-next {
				right: 0;
			}
		}


	}

	&.has-filmstrip {

		@mixin arrowsContainer flex {
			width: 90px;
		}

		@mixin caption flex {
			margin-right: 110px;
		}

	}

	&.fullwidth {

		@mixin caption {
			margin-right: 320px;
		}

		@mixin caption__text {
			padding-left: 20px;
		}

		@mixin dotsContainer flex, rslides, nivo {
			right: 60px;
		}

		@mixin arrowsContainer flex, nivo {
			right: 20px;
		}

		@mixin arrowsLink rslides {

			&.prev {
				right: 284px;
			}

			&.next {
				right: 20px;
			}
		}

	}

   /**
   * Thumbnail
   */

   .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a:hover,
   .slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a.active {
      border: 0 none;
   }

	&.has-thumb-nav .slide-control {
		top: 100px!important;
	}

	/**
	* When slider is small (< 600px)
	*/
	&.ms-is-small {
		padding-bottom: 50px;
	}

	&.ms-is-small .flexslider ul.slides .caption-wrap,
	&.ms-is-small .rslides .caption-wrap,
	&.ms-is-small .nivoSlider .nivo-caption {
		margin-right: 0;
	}

	&.ms-is-small .flexslider ol.flex-control-nav,
	&.ms-is-small ul.rslides_tabs,
	&.ms-is-small .slider-wrapper .nivo-controlNav,
	&.ms-is-small .coin-slider .cs-buttons {
		/* bottom: -35px; */
		width: 100%;
		left: 0;
		right: 0;
	}

	&.ms-is-small .flexslider:not(.filmstrip) ul.flex-direction-nav,
	&.ms-is-small .nivo-directionNav {
		width: 100%;
	}

	&.ms-is-small.fullwidth {

		@mixin arrowsContainer flex, nivo {
			right: 0;
		}

		@mixin arrowsLink__prev {
			left: 20px;
		}

		@mixin arrowsLink__next {
			right: 20px;
		}

	}

}
themes/jenga/v1.0.0/images/arrow.png000064400000001521151213255710013045 0ustar00�PNG


IHDR2V�Z�gAMA���aIDATx�Ɏ�@�g�%��ay��7�b_�UH��3,7�O��+R�!G.(��S$pH�8�-�dF�����%�l�;v}��z�)˳3�۬�Zr���rf��`�B��F�8���iw�h
��m�o������n���8����^�w�/V�2F�
��;��r���x�z�8����j�"�S,O!�a� ���4
�2	d�i:J	%�OS@�@f��P�R�t&���笶��3 8�����8������)Ĵ���9	J�Q�TR�i����	͉j�z���qA�" .JP� ����Hl�!j���(2���JH��"A	��q�z%��"����>O4
��+��9A%D@ܐ��U��8C�r+EN7mRBA��Ȣ�W�j6��l�P �3d��BᘍQj��>�}@�x�c�AS �h�?����kΡ/��(c@[�^����c@\�ߠ���1��u^�](Ο�&�D�.����n��E�y�~F)�`8�2�l���y%I��)�sR'gV��	@̲$e^�0Ie�ey��G�$eD�<���R
�+��Źx������y"I��)LR��_Y�;�G��y��:�HRF�}I��Ka��JR�D��d��~����o��Lv�{ǁ9�`\Z�օ��u���SJ8&��O
�Q�Lk��`r��|��y��^m�A<�N�`�F�vx��jG%�����o�#hg?�
�*`R9�8i����ʀ�6��zW�+!�}&!��ަ�)�����̉IEND�B`�themes/jenga/changelog.php000064400000000115151213255710011554 0ustar00<?php

return array(
    'v1.0.0' => array(
        'First version'
    )
);
readme.txt000064400000241322151213255710006550 0ustar00=== Slider, Gallery, and Carousel by MetaSlider - Responsive WordPress Image Slideshows ===
Contributors: andergmartins, htmgarcia, publishpress, stevejburge, rochdesigns
Tags: slideshow, slider, image slider, carousel, gallery, flex slider, wordpress slider, nivoslider, rotating banner, image sliders, slide show, responsive slideshow, seo slideshow, unsplash, post sliders, video sliders, YouTube sliders, Vimeo sliders, HTML sliders, external URL sliders, layer sliders, best WordPress slider, best slider, best slideshow, best carousel, easy slider, easy slideshow, flex slider, woocommerce slider, woocommerce slideshow, video slider, video captions, video subtitles
Requires at least: 5.0
Stable tag: 3.90.1
Requires PHP: 7.0
Tested up to: 6.5.5
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

The best slider, gallery, and carousel plugin for WordPress. Responsive and easy-to-use sliders with images, videos, posts, products, and layers.

== Description ==

With MetaSlider, you can create a powerful, SEO-optimized slider, slideshow, carousel, or gallery in minutes. MetaSlider is world’s #1 responsive WordPress slider plugin. MetaSlider is the best choice for image, photo, video (YouTube, Vimeo, TikTok, local, and external), layer, WooCommerce products, and post feed sliders!

[youtube https://www.youtube.com/watch?v=yuRh0FsanaY]

### Introducing MetaSlider

With MetaSlider and [MetaSlider Pro](https://www.metaslider.com/upgrade/), WordPress’s most popular slider plugin, enhancing your blog or website couldn’t be easier! Simply select images, photos, videos and more from your WordPress Media Library, and drag-and-drop them into place. You can then set the slide captions, links, and SEO fields, and more.

MetaSlider slideshows, carousels, sliders and galleries are compatible with the WordPress Block Editor (Gutenberg), plus all page-builder plugins, from Elementor and Beaver Builder to Visual Composer and Divi.

### Introducing MetaSlider Pro

If you’re looking for further customization, [MetaSlider Pro](https://www.metaslider.com/upgrade/) offers even more powerful features.

* **YouTube, Vimeo, and TikTok video slides**: Easily include responsive high definition YouTube, Vimeo and TikTok videos in your slideshows.
* **Local Video slides**: You can build beautiful slideshows with videos in your WordPress media library.
* **Layer slides**: Create CSS3 animated HTML Layer slides using the built in drag-and-drop WYSIWYG editor.
* **Post Feed slides**: Automatically show your latest blog posts, events or WooCommerce products in your slide show.
* **External URL slides**: Display images directly from a non-WordPress sources such as CDNs or image hosts.
* **External Video slides**: Create your slideshows with videos from almost any external service.
* **Stylish, premium themes**: MetaSlider Pro provides stylish and exclusive themes for your slideshows.
* **Slide scheduling and slide visibility**: Pro customers can now schedule sliders to appear only within specific dates, times, and days of the week.
* **Custom Themes – build your own theme**: MetaSlider now has stunning free slider themes for you to explore. With MetaSlider Pro, you can also build your own themes.
* **Thumbnail Navigation**: Give your slideshows a gallery feel with customizable Thumbnail and Filmstrip Navigation.
* **Premium Support**: Get fast access to our professional support team.

### Image Sliders

Image slides make a great impression on any website! Present your beautiful images to a stunning slider, slide show, carousel, or gallery. Image slides are a basic slide type included in MetaSlider. An image slide will display an image with a caption. You can optionally link the slide to a URL of your choice.

Add images to your slide shows directly from your WordPress media library, add the captions you want, set SEO fields and adjust the settings to display the image slideshow just how you like it. Take it further with [MetaSlider Pro](https://www.metaslider.com/upgrade/) and use the Theme Editor to change the look of the navigation, the arrows, and the captions.

### YouTube, Vimeo and TikTok Video Sliders

With [MetaSlider Pro](https://www.metaslider.com/upgrade/) you can easily include responsive high definition YouTube, Vimeo and TikTok videos in your slider, slideshow, or carousel. A video slide will display a video in your slide show directly from Vimeo or YouTube. The video will automatically pause if the user skips to the next slide.

Simply add the URL of your video to a [YouTube slide](https://www.metaslider.com/docs/youtube-slides/), [Vimeo slide](https://www.metaslider.com/docs/vimeo-slides/) or [TikTok slide](https://www.metaslider.com/docs/introduction-to-tiktok-slides/) and MetaSlider will add it to your slider, slideshow, or carousel. Either create a slide show full of you favorite videos or mix it in between slides of other types to get just the result that you want.

### Local and External Video Sliders

External and Local Video Slides are included in [MetaSlider Pro](https://www.metaslider.com/upgrade/). With Local Video Slides you can build beautiful slideshows with videos in your WordPress media library. With External Video Slides you can created slideshows with videos hosted outside of your WordPress site.

Both [External Video slides](https://www.metaslider.com/docs/intro-external-video-slides/) and [Local Videos slides](https://www.metaslider.com/docs/introduction-to-local-video-slides/) will display your MP4, WebM, and MOV videos with cover images, auto play, mute, lazy load, the ability to hide controls, and much more.

It is possible to add [video captions](https://www.metaslider.com/docs/video-captions-for-local-videos/) to both External and Internal Video slides created with [MetaSlider Pro](https://www.metaslider.com/upgrade/). This feature uses VTT files to add captions. There is a “CC” button in the toolbar that viewers can use to control the captions. 

### Post Feed Sliders

With [MetaSlider Pro](https://www.metaslider.com/upgrade/) you can create [Post Feed slides](https://www.metaslider.com/docs/post-feed-slides/) to automatically show your latest content, blog posts, events or WooCommerce products in your slider, slide show, or carousel. MetaSlider Post Feed slides dynamically pull in slides based on your WordPress posts, using the featured image as the slide. They are also commonly known as “Content Sliders”, “Featured Sliders”, “Post Sliders” or “Dynamic Sliders”.

The Post Feed slide settings allow you to control which post types you want to display, the order to display them in and to restrict the posts to certain tags or categories. You can customise the caption template with a selection of template tags including {title}, {excerpt}, {author} and {date}. As with all our other slide types a Post Feed slide can appear in combination with any other slide type.

Post Feed slides can be used to show one post at a time but they work particularly well in carousel mode (as above) allowing you to show off a large number of your latest posts in a small amount of space.

### Animated Layer Sliders

With [MetaSlider Pro](https://www.metaslider.com/upgrade/) you can create animated Layer Slides for your slider, slideshow, or carousel. You can use the built in drag-and-drop editor to create CSS3 animated HTML Layer slides. MetaSlider Layer Slides are ideal for easily creating eye catching slider presentations and slideshows that use stunning effects with 50 animation options and a beautiful, easy to use interface. Layers can include text, html, images, photos, videos and even shortcodes! Layer Slide users also benefit from additional optimization and customization options, including using a video as the slide background and adjusting the padding and background color of each layer.

### External Image Sliders

With [MetaSlider Pro](https://www.metaslider.com/upgrade/) you can create [External URL slides](https://www.metaslider.com/docs/external-url-slides) to load images for your slider, slideshow, or carousel directly from non-WordPress sources, for example CDN’s or image hosts.

### More Great MetaSlider Features

**Optimized for Speed**

[MetaSlider is fast](https://www.metaslider.com/fastest-wordpress-slideshow-plugin/). Only the minimum JavaScript/CSS is included on your page to power your slider, slideshow, carousel, or gallery. We have optimized the MetaSlider plugin so that your images, photos, videos (YouTube and Vimeo), layers, products, and post feeds, load quickly without slowing down your website visitors’ experience.

**Unsplash Integration**

[MetaSlider is integrated with Unsplash](https://www.metaslider.com/unsplash) to access free images and photos via Unsplash.com for your slider, slideshow, carousel, and gallery. Finding the right image or photo can be the hardest part of creating a compelling slider, slide show, carousel, or gallery, and MetaSlider makes this process easy for you by never leaving your WordPress plugin interface.

**Accessible Slideshows**

The MetaSlider team works really hard to make sure the plugin is accessible for people using screen readers and/or people with disabilities. If you see any way that we can improve our support for accessible users, please do not hesitate to get in touch with us. [See all our accessible slideshow features](https://www.metaslider.com/docs/accessibility/).

### Responsive and SEO-optimized

MetaSlider is a responsive, SEO-optimized WordPress plugin that lets you create a slider, slideshow, carousel, and gallery in seconds.

Your MetaSlider responsive slider, slideshow, carousel, or gallery will adapt to the width of the device they’re being displayed on, including desktop, mobile or tablet. The content will be responsive regardless of the type of content you use: image, photo, video (YouTube and Vimeo), layer, product, and post feed slides.

The MetaSlider SEO tab lets you set image title and alt text for your slides. The title text should provide additional information about the slide, whereas the alt text should be used to describe the image itself. This data allows search engines to ‘read’ your slides and helps with search engine rankings!

### Powerful Editing Options

In addition to MetaSlider's simple drag-and-drop features, our slider, slide show, gallery, and carousel plugin for WordPress offers many powerful features. Whether you are someone running a site who wants to make a great first impression with beautiful photos or someone making websites for clients, MetaSlider enables you to create the perfect customized experience.

* **Full width slider and gallery support** MetaSlider will match your site design and is compatible with any WordPress theme that you choose to use.
* **Intelligent Image Cropping**: Unique Smart Crop functionality ensures your slides are perfectly resized. No fuss.
* **Smart Pad**: With cropping disabled, Smart Pad automatically adds padding to portrait images allowing you to mix portrait and landscape images and maintain a consistent slideshow height.
* **Drag-and-Drop editor**: Includes drag-and-drop slide reordering, intelligent image cropping, set image crop position.
* **Slider configuration**: Customize the transition effect, speed, timing, plus many more!
* **Live Theme Editor**: With [MetaSlider Pro](https://www.metaslider.com/upgrade/) you can create unlimited themes and preview them on-the-fly.
* **Thumbnail Navigation (Pro)**: [MetaSlider Pro](https://www.metaslider.com/upgrade/) adds in 2 new types of slider and slideshow navigation:
  * “Thumbnail” will output a static row of thumbnails below the slideshow. 
  * “Filmstrip” will output a carousel style row of thumbnails below the slideshow (with left and right navigation) – perfect if you have lots of slides! 
  
### Slider Themes

[MetaSlider Pro](https://www.metaslider.com/upgrade/) introduces the MetaSlider Theme Editor. MetaSlider Pro include many free professional and responsive [slideshow themes](https://www.metaslider.com/docs/more-themes/) for sliders, slideshows, and carousels. These themes enable you to effortlessly create beautiful and effective sliders, slideshows, and carousels designed by professionals.

The MetaSlider theme editor also allows you to create your own slider, slideshow, and carousel themes to use across your sites where you install MetaSlider. With these themes you can perfectly display any content, including image, photo, video (YouTube and Vimeo), layer, product, and post feed slides.

### Import and Export Your Sliders

With [the MetaSlider import and export feature](https://www.metaslider.com/docs/export-and-import-slideshows/) you can move your perfectly designed sliders between your websites or your clients’ websites. Instead of recreating your settings on every website, export your slider, slideshow, or carousel with one click and import it to another WordPress suite just as easily with MetaSlider.

### Ready for the Gutenberg Block Editor

MetaSlider has been designed to work seamlessly with the new Gutenberg WordPress Block Editor by using our Gutenberg block. We give you ultimate flexibility to embed MetaSlider into your WordPress website using a Gutenberg block, shortcode, or widget.

### Fully Localized with Translation Support

MetaSlider is compatible with some of the most popular WordPress translation plugins, including WPML, PolyLang & qTranslate. You can make sure that your slider, slideshow, carousel, or gallery are fully localized for your audiences around the world. MetaSlider localization supports any content you include in your slider.

### Slider Lightbox Support

MetaSlider offers responsive image and photo lightbox support with the [MetaSlider Lightbox add-on](https://www.metaslider.com/upgrade/), allowing slides to be opened in a lightbox, using one of several supported lightbox plugins, including Easy FancyBox, Simple Lightbox, and FooBox Image Lightbox.

### Slider Plugin Integrations

MetaSlider is integrated with other popular WordPress plugins, including [WooCommerce](https://www.metaslider.com/docs/metaslider-and-woocommerce/), [The Events Calendar](https://www.metaslider.com/docs/metaslider-and-the-events-calendar/), [Advanced Custom Fields](https://www.metaslider.com/docs/advanced-custom-fields-metaslider/), and [WPML](https://www.metaslider.com/docs/wpml). This enables you to seamlessly show the most engaging content to your audience in a slider, slideshow, carousel, or gallery.

You can use the popular events management plugin “The Events Calendar” with MetaSlider’s new Post Feed Slides. MetaSlider detects if you have The Events Calendar plugin activated and offers you the ability to order by event date, so you can show off your upcoming events in a slider, slideshow, or carousel.

WooCommerce sliders are also easy with MetaSlider. You can show the products you choose in a stylish WooCommerce slideshow.

### Carousel Sliders

In addition to creating traditional sliders and slideshows, you can use MetaSlider to build carousels that allow you to show multiple images at any one time. [MetaSlider carousels](https://www.metaslider.com/docs/carousel-slideshow/) are compatible with all slide types, including image, photo, video (YouTube, Vimeo, and local), layer, WooCommerce product, and Post Feed slides. They’re ideal for showing a list of your latest posts or to use as a “Featured Product” slider for your homepage.

### Support for Every Type of Content Slider

MetaSlider provides unrestricted support for your image and photo slider, slide show, carousel, and gallery, including captions, links, title texts and alt text. With the [MetaSlider Pro](https://www.metaslider.com/upgrade/) add-on you can also add video (YouTube/Vimeo), layer, product, and post feed content to a slider, slide show or carousel.

You can use any combination of MetaSlider Pro slide types for sliders, slideshows, and carousels. For example you can have a slider with an image slide, a post feed slide (that can contain multiple posts), and a video slide. To create this simply add slides as you normally would, selecting the relevant slide type each time.

### New Photo Gallery Experience

MetaSlider now features a new gallery experience that supports images and photos. With an easy drag-and-drop photo gallery builder, you can create a responsive and optimized photo gallery in seconds using the same WordPress Media Gallery images you are already using with MetaSlider sliders, slide shows, and carousels. You can use a simple shortcode (just like MetaSlider) to add the MetaSlider photo gallery to any page.

We are building the photo gallery following these principles:

* Fast - Using modern best practices, your responsive photo gallery will be faster than ever.
* SEO-focused - Search engines will love your photo gallery.
* Fully WCAG accessible - All users will be able to enjoy your responsive photo gallery.

You can create a photo gallery, and then add images to your gallery from the WordPress Media Library. Simply drag-and-drop images and photos into your gallery, easily reorder them, and add an image alt attribute to your images and photos to ensure that your gallery is SEO friendly. To make sure that your responsive photo gallery looks just right on your WordPress page or post, the MetaSlider gallery allows you to change the image and photo width, max width, min width, and spacing of your gallery.

The MetaSlider photo gallery also offers a distraction free fullscreen mode for gallery editing, and we will soon add to the photo gallery a dark mode and background color selection.

To add your responsive Meta Slider photo gallery to a page, simply click the “add to page” button in your gallery editor to generate a WordPress shortcode that you can drop onto any page or post.

The MetaSlider photo gallery is in development, and we would love to hear your feedback on the gallery and ideas for photo gallery features we should work on next.

### Privacy Policy

MetaSlider uses the Appsero SDK to collect non-sensitive diagnostic data upon a user’s confirmation. This data helps us to troubleshoot problems faster and make product improvements. MetaSlider only collects this diagnostic data when a user allows it via a notice in WP Admin or MetaSlider settings. View our [privacy policy](https://www.metaslider.com/privacy-policy).

== Installation ==

The easy way:

1. Go to the Plugins Menu in WordPress
2. Search for "MetaSlider"
3. Click "Install"

The manual way:

1. Upload the `ml-slider` folder to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Manage your slideshows using the 'MetaSlider' menu option

== Frequently Asked Questions ==

= My slider is not working. What can I do? =

MetaSlider has been tested with many most popular free WordPress themes and the most common plugins. We have hundreds of thousands of users who run MetaSlider without any problems. If you’re one of the unlucky ones, 9 times out of 10 it will be down to a conflict with either your chosen theme or plugins.

To help troubleshoot MetaSlider, we have a series of Yes / No questions that can help you quickly resolve most issues.

[Click here for steps to troubleshoot sliders](https://www.metaslider.com/docs/troubleshooting/)

= An image slide is not appearing in my slider =

If a slide is not showing in your MetaSlider slideshow, this guide has some suggestions for common troubleshooting steps:

[Click here for steps to troubleshoot image sliders](https://www.metaslider.com/docs/slide-not-showing/)

= How do I create a full width slider? =

The guide linked below will show you how to create a “full width” layout for your MetaSlider slider. The aim is to create a slider that will stretch from one side of the browser window to another. How you create a “full width” layout will depend on your theme, so please read this guide to understand the best approach for your site.

[Read the guide for full-width sliders](https://www.metaslider.com/docs/full-width-slideshows/)

= How do I create a full screen slider? =

The guide linked below will show how to build a full-screen slideshow for your site. The slideshow works as normal with Previous and Next arrows, navigation, and more. However, the slideshow is the only thing visible on the screen.

[Read the guide for full-screen sliders](https://www.metaslider.com/full-screen-slideshow/)

= How do I change the CSS for MetaSlider sliders? =

To change the style of MetaSlider you should override the default MetaSlider styles with your own styles. If you’re not comfortable with editing the CSS yourself, you’ll be glad to know that MetaSlider Pro includes a live theme editor that lets you completely customize the style of your slideshow with no coding experience needed! Here is a quick to updating the MetaSlider styling. Some experience with HTML and CSS is assumed.

[Read the guide to changing slider CSS](https://www.metaslider.com/docs/styling/)

= How to I add captions or subtitles to MetaSlider videos? =

You can add video captions to External and Internal Video Slides created with MetaSlider Pro. This feature uses VTT files to add captions. There are four different types of VTT file supported in MetaSlider: Captions, Chapters, Descriptions, and Subtitles.

[Read the guide to video captions](https://www.metaslider.com/docs/video-captions-for-external-videos/)

= Can I create image sliders with MetaSlider? =

Yes, image sliders are the most popular way to use MetaSlider. Image slideshows are included in MetaSlider Free and MetaSlider Pro. An image carousel will display an image. You can also add other features such as a caption, or a URL link.

[Read more about image sliders](https://www.metaslider.com/docs/image-slides/)

It's also possible to build on your image slider and create a carousel slideshow with several images to be visible in the display at the same time.

[See more about carousel image sliders](https://www.metaslider.com/docs/create-image-carousel/)

= Can I create Vimeo sliders with MetaSlider? =

Yes, Vimeo Slideshows are included in MetaSlider Pro. A Vimeo Slide will display a video in your slideshow directly from Vimeo.com. You can control the appearance of the videos and also add extra features to the videos such as auto play, mute, and loop.

[Read more about Vimeo sliders](https://www.metaslider.com/docs/vimeo-slides/)

= Can I create YouTube sliders with MetaSlider? =

Yes, YouTube Slideshows are included in MetaSlider Pro. A YouTube Slide will display a video in your slideshow directly from YouTube.com. You can control the appearance of the videos and also add extra features to the videos such as auto play, mute, and loop.

[Read more about YouTube sliders](https://www.metaslider.com/docs/youtube-slides/)

= Can MetaSlider create sliders for other plugins? =

Yes, you can use MetaSlider with many of the most popular plugins. We have particularly deep integrations with WooCommerce, The Events Calendar, and Advanced Custom Fields. You can make WooCommerce slider to showcase your products. You can build a WooCommerce slideshow with just a few clicks, thanks to MetaSlider.

In this guide linked below, we’ll show you how to create a slideshow of WooCommerce products using MetaSlider Pro. This slideshow will update automatically showing the products in the WooCommerce categories you choose.
[Read the guide to WooCommerce sliders](https://www.metaslider.com/docs/metaslider-and-woocommerce/)

In this guide linked below, we'll show how MetaSlider can automatically create slides based on events in The Events Calendar plugin, displaying the featured image as the slide. 
[Read the guide to The Events Calendar sliders](https://www.metaslider.com/docs/metaslider-and-the-events-calendar/)

Advanced Custom Fields (ACF) is a very popular WordPress plugin, with over 2 million active installs. If you use ACF to add fields to your content, it’s possible to use MetaSlider Pro to show those fields in a slideshow. In this guide, I’ll show you how to connect ACF and MetaSlider. 
[Read the guide to Advanced Custom Fields slider](https://www.metaslider.com/docs/advanced-custom-fields-metaslider/)

Join the slider revolution and use MetaSlider to build beautiful slideshows with data from other plugins.

= Can I show sliders only on one specific posts or pages? =

Yes, it is possible to specify that your MetaSlider slideshow only appears on specific posts, pages, or your homepage.

[Read the guide to sliders on specific posts](https://www.metaslider.com/docs/i-only-want-to-show-the-slideshow-on-my-homepage-how-can-i-do-that/)

= Can I create External URL sliders with MetaSlider? =

Yes, External URL image Slideshows are included in MetaSlider Pro. External URL carousels allow you to load images directly from a non-WordPress sources such as CDNs or image hosts.

[Read more about External URL sliders](https://www.metaslider.com/docs/external-url-slides/)

= Can I create Post Feed sliders with MetaSlider? =

Yes, Post Feed Slides are included in MetaSlider Pro. Post Feed slideshows dynamically display slides based on your WordPress posts, using the featured image (required) as the slide. They are also commonly known as “Content Sliders”, “Featured Sliders”, “Post Sliders” or “Dynamic Sliders”.

[Read more about Post Feed sliders](https://www.metaslider.com/docs/post-feed-slides/)

= Can I create Layer sliders with MetaSlider? =

Yes, Layer Slides are included in MetaSlider Pro. Layer Slideshows allow you to creates layer of different elements on top. You can add text, video, colors, animations and even other images on top of your first image.

[Read more about Layer sliders](https://www.metaslider.com/docs/layer-slides/)

= What's the correct spelling of MetaSlider? =

Our official name is MetaSlider. Don't worry - we'll still understand if you call us Metasldier, Meta slider, Slide meta, ML Slider, ml-sider, METASLIDER, or other variations. You'll still find MetaSlider to be the best WordPress slider! Join the slider revolution with MetaSlider!

= How does MetaSlider compare to other gallery and slideshow plugins? =

There are lot of good gallery and slideshow plugins available including NextGen, 10Web, Envira, Modula, FooGallery, Smart Slider 3, Depicter, Slider Revolution, Soliloquy and more.

Envira Gallery, FooGallery, and Modula Gallery are photo gallery plugins. Smart Slider 3, Depicter, Slider Revolution, Soliloquy are slideshow plugins.

This variety of options is why we love WordPress and why you do too. However, give MetaSlider a test and you'll find it has a wonderful balance between speed and features. Some of the plugins on this list are very basic. Other plugins have too many features and are slow and bloated. MetaSlider makes sure that your site runs incredibly quickly, while making sure you still have a very robust set of features. Join our slider revolution! We believe MetaSlider is the best slide show and gallery option.

= Is MetaSlider compatible with page-builder plugins? =

Yes, you can build Elementor slides and Beaver Builder slideshows. You can create Visual Composer sliders and Divi slideshows. No matter what page-builder plugin you use, MetaSlider will work for you whenever you need to build slide shows.

== Screenshots ==

1. Image slides with MetaSlider
2. Carousel slides with MetaSlider
3. YouTube video slides with MetaSlider
4. Vimeo video slides with MetaSlider
5. Local video slides with MetaSlider
6. Layer slides with MetaSlider
7. Manage and edit all your slideshows from one screen
8. Easily edit your sliders inside WordPress
9. You can easily preview sliders from the WordPress admin

== Changelog ==

The format is based on [Keep a Changelog recommendations](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

= [3.90.1] - 09 July, 2024 =

* FIXED: Filtering notices can cause fatal errors bug, #1152;
* FIXED: Open in new window doesn't work in TinyMCE, #1159;
* CHANGED: Italian, Spanish and French translation updates, #1154;
* REMOVED: Duplicate Instances, #1157;

= [3.90.0] - 13 June, 2024 =

* ADDED: Play / Pause buttons, #1004, #1132, #1140;
* ADDED: Use role="button", #1058;
* ADDED: ARIA Current option, #1063, #1126;
* ADDED: Clarity Theme, #1064;
* ADDED: Duplicate Instances, #782;
* ADDED: Promote Pro themes in the Free version, #1070, #1116;
* FIXED: Broken link when website is under a folder, #1029;
* FIXED: Translation issues, #1112;
* FIXED: Preview is broken when missing width and height, #1053;
* FIXED: Stop admin messages appearing on our MetaSlider screen, #1047;
* FIXED: Lightbox appears in Accessibility tab, #1077;
* FIXED: Precognition issues, #1072, #1139;
* FIXED: Italian, Spanish and French translation updates, #1069;
* FIXED: Clean up the tooltips, #1050; 
* FIXED: Loop needs to be enabled always if Carousel mode is disabled, #1095;
* FIXED: Duplicated blocks in Widgets screen, #1046;
* FIXED: Auto play is hidden, #1085;
* FIXED: Slideshows created through quickstart are not saved automatically, #1078;
* FIXED: Dots navigation issue for Outline theme, #1144;
* CHANGED: Remove "Beta" from Continuous Loop", #1042;
* CHANGED: Update Bitono thumbnail theme, #1119;
* CHANGED: Improve theme thumbnails, #1071;
* CHANGED: Update the navigation text, #1049;
* CHANGED: Join "Themes" and "My Custom Themes" tabs, #1100, #1124;
* CHANGED: Replace the default MetaSlider arrows, #1061;
* CHANGED: Arrows tooltip, #1129;
* REMOVED: :not(:last-of-type) pseudo selector in paragraphs for Themes, #1105;
* REMOVED: Remove fit_one_thumb(), #1087;

= [3.80.0] - 09 May, 2024 =

* ADDED: Accessibility label for links, #621;
* ADDED: Opt-in accessilibity improvements, #950;
* ADDED: New Themes, #1032;
* ADDED: Add nl2br() support to image caption, #1017;
* ADDED: Add a Link tab, #1057;
* FIXED: Consistency when saving breakpoints, #957;
* FIXED: Tab Index issues, #977;
* FIXED: Stop two loading texts appearing together, #1035;
* FIXED: Slideshow links appears for each duplicate slideshow, #1036;
* FIXED: Caption links being modified, #1034;
* FIXED: Stop on First Slide is broken, #994;
* FIXED: Arkitekt theme and Post Feed, #1018;
* FIXED: Single quotes are converted to &#039; and inverted slash added to all single and double quotes, #1014;
* CHANGED: Show arrows by default on all devices for all themes, #999;
* CHANGED: Autoplay when "loop continuously" is enabled, #1023; 
* CHANGED: Make 'slide' option default for new slideshows, #978;
* REMOVED: babel-preset-es2015 and babel-preset-stage-2 packages, #988;

= [3.70.2] - 10 Apr, 2024 =

* FIXED: Bug introduced in 3.70.1, #1006;

= [3.70.1] - 09 Apr, 2024 =

* FIXED: Cast shortcode id attribute to number, #992;
* FIXED: Redirect to Quick Start Page after plugin activation not working, #996;
* FIXED: Italian, Spanish and French translation updates, #991;

= [3.70.0] - 03 Apr, 2024 =

* ADDED: Loading screen when creating slideshows, #976;
* ADDED: Tooltips for main area of editing screen, #813;
* ADDED: Mobile settings for arrows and navigation, #896;
* ADDED: Allow id and class attributes in TinyMCE, #949;
* ADDED: Allow to add custom themes through files, #824;
* ADDED: Infinite Loop option for Carousel mode, #593;
* FIXED: Simply Dark theme deprecation notice, #971;
* FIXED: Hidden slides still counting in navigation, #920;
* FIXED: Thumb slides are not listed in order, #578;
* FIXED: Italian, Spanish and French translation updates, #935;
* CHANGED: Optimize image size, #952; 
* CHANGED: Easing description, #922; 
* CHANGED: Tooltip for mobile icon, #946; 
* CHANGED: Remove TinyMCE text preview, #940;
* CHANGED: Tooltips for Center align, Fade in, Transition speed, #819, #886, #884;
* CHANGED: Put "Easing" under the "Effect" option, #883;
* CHANGED: "Effect" to "Transition Effect" option, #884;
* CHANGED: "Animation speed" to "Transition speed" option, #884;

= [3.62.0] - 04 Mar, 2024 =

* ADDED: Duplicate Slide function, #385;
* ADDED: WYSIWYG editor support to custom image captions, #908;
* ADDED: Better error reporting, #541
* FIXED: Precognition Theme CSS, #917;
* FIXED: Odd output in our Gutenberg block, #861;
* FIXED: Undefined Array Key error on mobile setting, #890;
* CHANGED: Updated Architekt Theme description, #917; 
* CHANGED: Moved Previous and Next fields to legacy settings, #902; 
* CHANGED: Updated tooltip text for Carousel, Effect and Vertical Direction fields, #802, #864; 
* CHANGED: Remove Beta Labels, #872; 
* CHANGED: Update Theme Box, #916;
* CHANGED: Enable keyboard controls for new slideshows, #875;

= [3.61.0] - 05 Feb, 2024 =

* ADDED: Provide touch-swipe setting, #769;
* FIXED: Preview is broken when Mobile settings is enabled, #805;
* FIXED: Mobile Settings Not Working on "Slide" Effect, #822;
* FIXED: Error logs caused by get_intermediate_image_src(), #845;
* FIXED: The ask-for-email popup keeps loading unless user dimiss it, #734;
* FIXED: Can't Save Keyboard Field, #837;
* FIXED: Italian, Spanish and French translation updates, #816;
* CHANGED: Update editor on classic editor, #799;
* CHANGED: Update schedule promo, #812;
* CHANGED: Standardize our sample slideshows, #737;
* CHANGED: UI improvement when selecting a video, #846;
* CHANGED: Remove the Gallery feature core, #505;
* CHANGED: Improve "No items found." text for empty slideshow list, #829;
* CHANGED: Improve error message when adding a video to MetaSlider Free, #830;
* CHANGED: Improve Add CSS upsell, #797;
* CHANGED: Improve description of Animation Speed setting, #800;
* CHANGED: Improve the toolbar on small screens, #796;
* CHANGED: Move Width Setting to Main Options, #679;
* CHANGED: Enable the mobile features for all sites, #848; 

= [3.60.1] - 13 Dec, 2023 =

* FIXED: Mixed content error for slide thumbnails in admin, #814;

= [3.60.0] - 13 Dec, 2023 =

* ADDED: UI Updates, #498, #506, #551, #620, #680, #702, #738, #748, #751, #754, #755, #756, #762, #764, #767, #772;
* ADDED: Improve UI for trashed slides, #506;
* ADDED: Mobile settings for slide and captions (Beta), #587, #776, #788, #793;
* ADDED: Message after trashing a slideshow through slideshow edit screen, #447;
* ADDED: Allow users to change how slides are sorted, #589;
* FIXED: When deleting slideshows in bulk a deprecation notice is displayed, #690;
* FIXED: Italian, Spanish and French translation updates, #785;
* FIXED: Fatal error in PHP 8+ when slideshow height or width is missing, #736;
* FIXED: Hide settings that rely on other fields, #677, #768;
* FIXED: MetaSlider block in widgets screen, #752;
* FIXED: Switching between Media caption/description to Manual entry causes spacing jump on textarea and "Link URL" label, #766;
* FIXED: Deprecated PHP code in 8.1, #724;
* FIXED: When adding a new slide, the thumbnail is hidden, #770;
* FIXED: Logo is distorted in small screens, #746;
* FIXED: Scroll to bottom after adding new slide/s, #750, #707;
* FIXED: CORS error with Unsplash, #717;
* FIXED: "1 slideshow" not "1 slideshows", #761;
* CHANGED: Automatically restore slides when slideshow is restored, #804;
* CHANGED: Update the Comparison Chart, #701;
* CHANGED: Enable the Legacy feature by default for new sites, #744;
* CHANGED: Disable the "Edit Slideshow" link by default, #682;

= [3.50.0] - 01 Nov, 2023 =

* ADDED: Click to copy shortcode on slideshow list, #684;
* FIXED: When deleting slideshows in bulk a deprecation notice is displayed, #690;
* FIXED: Error when hovering on Preview icon, #674;
* FIXED: Italian, Spanish and French translation updates, #667, #715;
* FIXED: Fatal error in PHP 8+ when slideshow height or width is missing, #736;
* CHANGED: Move Nivo, Coin and RSlides to a "Legacy" setting, #604;
* CHANGED: Move Loop Setting to Free and added Pro label on Navigation Setting, #676;
* CHANGED: Update Settings title to Option on Edit Slideshow Page, #678;
* CHANGED: Put back shortcode section on Edit Slideshow Page, #669;
* CHANGED: Disable the "Edit Slideshow" link by default, #682;
* CHANGED: Improve export guidelines, #665;

= [3.40.0] - 27 Sep, 2023 =

* ADDED: MetaSlider menu on Admin Bar, #586;
* ADDED: Scroll to bottom after adding a new slide, #535;
* FIXED: Better location for trashed slides link, #660;
* FIXED: Orange HEX in CSS, #523;
* FIXED: Make the slideshow title required, #569;
* FIXED: Wrong icon 'Exit Full Screen' of slide images in Preview page, #156;
* FIXED: Italian, Spanish and French translation updates, #636;
* FIXED: Deprecated code in PHP 8.2, #494, #651;
* CHANGED: Update axios to 1.5.0, #527;
* CHANGED: Adjust MetaSlider logo spacing in admin, #657;
* CHANGED: Set PHP 7 as minimum version, #614;
* CHANGED: Improved design for settings sidebar in slideshow edit screen, #630, #639;
* REMOVED: extract function, #111;
* REMOVED: Seasonal discounts notices in admin, #629;

= [3.37.0] - 31 Aug, 2023 =

* ADDED: Smooth Height Setting for FlexSlider, #204;
* FIXED: Odd message when nonce expires, #594;
* FIXED: Search query gets removed on pagination, #534;
* FIXED: Arrow button changes to white square after clicking on it, #491;
* FIXED: 505 Error when choosing Precognition Theme on Preview Window, #189;
* FIXED: Theme Preview always shows the default theme even when other themes are selected, #623, #195;
* FIXED: [aria-hidden="true"] hides slideshow, #619;
* CHANGED: Improve the message under "Custom Themes", #611;
* CHANGED: Enqueue upgrade.css if MetaSlider Pro is deactivated, #511;
* CHANGED: Update the plugin description and "Add-ons" text, #469;

= [3.36.0] - 14 Aug, 2023 =

* FIXED: Accessibility issue for slideshow navigation, #565;
* FIXED: Delay the review banner #556;
* FIXED: Theme class added to slideshows with no theme, #477;
* CHANGED: Change button style for opt-in pop-up box, #585;
* CHANGED: Update color for listed custom themes, #591;

= [3.35.0] - 10 Aug, 2023 =

* FIXED: Revert all changes from 3.34.0 returning the state to 3.33.0 for fixing a few errors;

= [3.34.0] - 10 Aug, 2023 =

* FIXED: Accessibility issue for slideshow navigation, #565;
* FIXED: Delay the review banner #556;
* FIXED: Theme class added to slideshows with no theme, #477;
* CHANGED: Change button style for opt-in pop-up box, #585;
* CHANGED: Update color for listed custom themes, #591;

= [3.33.0] - 05 Jul, 2023 =

* ADDED: Translation updates, #547;
* FIXED: Quick Start Page translation issues #562;
* FIXED: Drag and drop container width, #579;
* FIXED: Missing preview for Local Videos, #568;
* FIXED: Undefined array key "title", #566;

= [3.32.0] - 28 Jun, 2023 =

* ADDED: Accessibility Improvements, #379, #427;
* ADDED: Redirect to Quick Start Page on plugin activation, #524;
* ADDED: Upsell screen for Local Videos, #547;
* CHANGED: Button style on Help Center #330;
* CHANGED: Use MetaSlider repository for FlexSlider, #504;
* FIXED: Uploading images using drag and drop and Media Library on Quick Start Page, #65, #149;

= [3.31.0] - 24 May, 2023 =

* ADDED: Delete permanently slides and slideshows, #512, #496;
* ADDED: New design for upsell screens, and promote External URL slide type, #259, #517, #518, #519, #520, #521, #522;
* ADDED: Slideshow bulk delete, #493;
* ADDED: Default CSS class to slider when no theme is selected, #226;
* ADDED: Setting to enable/disable Gallery, #140;
* CHANGED: Update FlexSlider plugin to 2.7.2, #492;
* FIXED: Campaign link for External URL upsell screen, #514;
* FIXED: Offset for FlexSlider, #487;
* FIXED: "Update slide image" button disappears, #448;
* FIXED: Caption from Unsplash images includes HTML, #486;
* FIXED: Error "Conflict (409)" while editing an image, #459;
* FIXED: Center arrow dots in Bubble theme, #479;
* FIXED: Caption alignment in Bubble theme with NivoSlider, #449;
* FIXED: Campaign link for External URL upsell screen, #514;

= [3.30.1] - 03 May, 2023 =

* FIXED: Downgrade Sweetalert2 for removing ua-anthem from certain sites, #488;

= [3.30.0] - 20 Apr, 2023 =

* ADDED: Display Slide ID, #375;
* ADDED: Add a button to the top of the upgrade table, #411;
* CHANGED: Remove all traces of Extendify, #264;
* CHANGED: Remove bulk option for slideshows, #374.
* CHANGED: Change “Add-on” Pack to just “Pro” in terminology, #118';
* FIXED: Fix export function, #452;
* FIXED: Fix the logo position on the editing screen, #440;
* FIXED: Fix fatal error on the slideshow editing screen, #463;
* FIXED: Fix broken email sign-up / acknowledgement, #464;
* FIXED: Undefined Variable, #438;
* FIXED: Creation of dynamic property for a few classes on PHP 8.2, #444;
* FIXED: "Load" button in Settings & Help/Export is not functioning, #458;
* FIXED: Missing CSS Button, #454;
* FIXED: Slideshows screen isn't fully responsive, #410;
* FIXED: HTML in caption is stripped out, #242;
* FIXED: Quick Start screen isn't responsive, #412;
* FIXED: Conflict with "Disable Admin Notices Individually" plugin, #420;
* FIXED: Should other table headings be clickable?, #415;
* FIXED: Why does navigation always bounce on the default Flexslider display, #335;
* FIXED: Word ‘false’ appears on the right and left sides on the slides when fields ‘Previous text’ and ‘Next text’ are empty, #315;
* FIXED: A slideshow is not displaying in a header (inserting through Gutenberg), #206;
* FIXED: Remove out-of-date coupon in Schedule tab, #222;
* FIXED: Fix data sanitization on Caption Field;

= [3.29.1] - 20 Mar, 2023 =

* SECURITY: Fix security issue related to data sanitization, output escaping and nonce verification, #430;

= [3.29.0] - 07 Mar, 2023 =

* ADDED: Add help text for the Easing effect, #344;
* ADDED: Add new Dashboard menu link, #260;
* CHANGED: Improve UI for the quick start screen, #125, #370, #371;
* CHANGED: Remove bulk edit support on slideshows, #386;
* CHANGED: Show the logo as thumbnail when slideshow is not an image sideshow, #388;
* CHANGED: Improved some texts in the plugin, #395;
* FIXED: Fix typo in MetaSlider documentation, #325;
* FIXED: Fix UI issue for long text in dropdowns, #345;
* FIXED: Updated Italian translation, #339;
* FIXED: Fix the "Blank Slideshow" option in the quick start screen, #373;
* FIXED: Fix background colors for being consistente, #393;
* FIXED: Fix consistency for logo aligment, #392;

= [3.28.3] - 12 Jan, 2023 =

* FIXED: Update default effect for FlexSlider to 'Fade', #331;
* FIXED: Fixed easing settings on FlexSlider, #329;
* FIXED: Updated Italian translation, #332;
* FIXED: Updated French translation, #340;

= [3.28.2] - 20 Dec, 2022 =

* FIXED: Fix conditional loading for lib Appsero, #326;

= [3.28.1] - 20 Dec, 2022 =

* FIXED: Update Appsero Client library fixing a CSRF issue, #319, #317;
* FIXED: Fix effects that were not working, #310;
* FIXED: Fix compatibility with plugin qTranslate-XT, #294;
* FIXED: Fix thumbnails that were not working in the slideshows list, #98;
* CHANGED: Change modal box making clear we are asking to collecting the email, #153;


= [3.28.0] - 01 Dec, 2022 =

* FIXED: Fix console errors (Vue.js Errors) when language is switched to "Deutsch (Schweiz, DU), #212";
* FIXED: Embed external Google fonts in the plugin to not make remote calls, #225;
* FIXED: Fix CSS for preview in Gutenberg, #289;
* FIXED: Fix export slideshows feature when having more than 20 slideshows, #271;
* FIXED: Fix links in the readme file, #288;
* FIXED: Fix style and image on Gutenberg block, #255;
* FIXED: Smart pad feature breaks on PHP 8, #272;
* FIXED: Small error with hover text in toolbar, #276;
* CHANGED: Update the Add a slide button, #127;
* CHANGED: Change min PHP version to 5.6;

= [3.27.14] - 17 Nov, 2022 =

* FIXED: Fix banner that will not dismiss, #285;

= [3.27.13] - 26 Sep, 2022 =

* FIXED: Fix Unsplash library, #248;
* FIXED: Fix PHP warnings about undefined array keys: "post_excerpt", "new_window", #246;
* FIXED: Fix error on PHP 8: Fatal error: uncaught TypeError: floor(): Argument 1 must be of type int|float, #247;
* FIXED: Advanced settings processing, fixing the field Open in lightbox added by the lightbox plugin, #251;
* CHANGED: Updated IT and FR translations (Thanks to @wocmultimedia), #245;

= [3.27.12] - 08 Sep, 2022 =

* FIXED: Fix the option "Open in a new window" on the slide editor page, #238;
* FIXED: Fix the "Caption" field accepting HTML code, #242;
* FIXED: Fix slide saving that was stripping settings when Pro was activated, #239, #240;

= [3.27.11] - 07 Sep, 2022 =

* FIXED: Fix the Caption field when editing a slideshow, #234;
* FIXED: Fix the SEO fields when editing a slideshow, #235;

= [3.27.10] - 07 Sep, 2022 =

* FIXED: Fix select fields in the slideshow metabox, #231;

= [3.27.9] - 06 Sep, 2022 =

* CHANGED: Updated Axios JS library to v0.21.2;
* SECURITY: Fix image alt attribute sanitization and escaping on the gallery, #207;
* SECURITY: Fix gallery settings input sanitization, #207;
* SECURITY: Added additional permissions check before saving data in the admin;
* FIXED: Removed not used demo folders and index.html files from JS libraries, #213;
* FIXED: Fixed the redirection URL after deleting a gallery, #221;

= [3.27.8] - 18 Jul, 2022 =

* CHANGED: Set Extendify SDK as disabled by default to fix support to WP 4.9, #197;
* FIXED: Fix WP 4.9 support checking if function 'wp_set_script_translations' exists before calling it, #196;

= [3.27.7] - 14 Jul, 2022 =

* FIXED: Fix Italian language translation, #137;
* FIXED: Fix issue with Docket Cache, #182;
* FIXED: Fix translation of pages based on JS, #186;
* FIXED: Fix language translation for the MetaGallery module, #138;
* FIXED: Remove not needed `use` statement for the class `Extendify\Library\App`, #136;

= [3.27.6] - 27 Jun, 2022 =

* CHANGED: Improved the promo banner, #141, #168, #166;
* FIXED: Error "Cannot read properties of undefined" and "t.value is undefined" in the Export area, #142, #163;
* FIXED: Thumbnails are not showing in the slideshow list, #98;
* FIXED: Stop showing generic JS errors using toast messages, #162;
* FIXED: Error PHP Warning: Illegal string offset 'dismiss_time' in on line 204, #174;
* FIXED: Stop showing promo banners if Pro is installed, #170;

= [3.27.5] - 12 May, 2022 =

* FIXED: Fix conflict with MetaSlider Lightbox after the latest update, Class 'Extendify\Library\App' not found, #132.

= [3.27.4] - 11 May, 2022 =

* ADDED: Complete logo in toolbar.
* ADDED: Add setting field to disable Extendify internal integration, #106.
* ADDED: Add Italian translation files to the languages folder, #112.
* CHANGED: Updated the Spanish translation files on the languages folder, #112.
* CHANGED: Add a delay of a few days before displaying the Extendify banner, #105.
* CHANGED: Updated the Extendify SDK to version 0.8.1, #120.
* REMOVED: Plugin version below logo from toolbar, #115.
* REMOVED: Short logo from toolbar, #115.
* REMOVED: Gutenberg box from welcome screen, #116.
* FIXED: Banners discount, #107.
* FIXED: Fix the privacy policy link in the settings page, #121.

= [3.27.3] - 21 Mar, 2022 =

* CHANGED: Update Extendify library.

= [3.27.2] - 08 Mar, 2022 =

* CHANGED: Update Extendify library.
* REMOVED: Remove get_plugins early cache.

= [3.27.1] - 22 Feb, 2022 =

* ADDED: Added animation back to slide previews, but only on hover.
* ADDED: Added rel and alt tags o nivo slider.
* REMOVED: Removed slide data  from local storage when the user has high slide count.
* FIXED: Fixed version number display bug.
* FIXED:Fixed bug where high post ids took time to save - thanks @fschatz.

= [3.26.0] - 08 Feb, 2022 =

* CHANGED: Update Extendify library.

= [3.25.2] - 01 Feb, 2022 =

* FIXED: Removes WP welcome notice interference.

= [3.25.1] - 26 Jan, 2022 =

* FIXED: Adds compatibility with WP 5.9 and block prop filter.

= [3.25.0] - 25 Jan, 2022 =

* CHANGED: Update Extendify library.
* FIXED: Adds PHP5.3 compatibility by removing array shorthand syntax.

= [3.24.0] - 06 Jan, 2022 =

* CHANGED: Update Extendify library.

= [3.23.5] - 30 Nov, 2021 =

* FIXED: Fixes post output stripslashes bug.

= [3.23.4] - 23 Nov, 2021 =

* FIXED: Fixes array key on boolean bug.

= [3.23.3] - 12 Nov, 2021 =

* FIXED: Fixes theme conflict with the utility class stylesheet.

= [3.23.2] - 11 Nov, 2021 =

* FIXED: Lowers utility class display specificity.

= [3.23.1] - 03 Nov, 2021 =

* CHANGED: Changes how metagallery language files are loaded.
* CHANGED: Updates library.

= [3.23.0] - 27 Aug, 2021 =

* CHANGED: Bug fixes and updates to the library.

= [3.22.1] - 11 Aug, 2021 =

* FIXED: Addresses bug with array_key_exists.
* FIXED: Addresses conflict with standalone Gutenberg plugin.

= [3.22.0] - 05 Aug, 2021 =

* CHANGED: Removes plugin dependency from editor library.

= [3.21.0] - 19 Jul, 2021 =

* FIXED: Fixes incorrect support URL link.
* CHANGED: Adds MetaSLider patterns to editor Library.

= [3.20.3] - 02 Mar, 2021 =

* FIXED: Update responsive slides to improve jQuery compatability.
* FIXED: Updates uasort to be PHP8 compatible.
* FIXED: Fixes a typo in the export callback.

= [3.20.2] - 08 Feb, 2021 =

* CHANGED: Removes unused Alpine helpers to reduce file size.
* FIXED: Removes various PHP notices.

= [3.20.1] - 03 Feb, 2021 =

* FIXED: Fixes a bug for users on older PHP versions.

= [3.20.0] - 18 Jan, 2021 =

* CHANGED: Adds the gallery feature.
* FIXED: Fixes typo in API fallback fetch function.

= [3.19.1] - 01 Dec, 2020 =

* CHANGED: Adds option to filter HTML Purify.
* CHANGED: Updates Appsero dependency version.

= [3.19.0] - 12 Nov, 2020 =

* CHANGED: Fixes typo on svg button in Simply Dark.
* CHANGED: Adds install date to optin Appsero report.
* CHANGED: Adds passive listener option to FlexSlider touch events.
* FIXED: Processes library assets to minify and optimize (production ready).

= [3.18.9] - 05 Nov, 2020 =

* FIXED: Adds polyfill for WP 4.5 wp_add_inline_script.
* FIXED: Removes some non PHP 5.3 code from 3rd party lib.

= [3.18.8] - 02 Nov, 2020 =

* CHANGED: Pass callback function to Appsero instead of relying on caching..
* CHANGED: Switches Appsero integration to only collected info on the user that logged in..
* FIXED: Adds PHP5.3 compatibility by removing array shorthand syntax.

= [3.18.7] - 27 Oct, 2020 =

* CHANGED: Clean up some of the Analytic specific items and reporting bugs. Note: no bugs related to improper handling..

= [3.18.6] - 26 Oct, 2020 =

* FIXED: Remove PHP 7.3 specific trailing commas.

= [3.18.5] - 22 Oct, 2020 =

* CHANGED: Moves the support related items to a separate page in prep to make it more robust..
* CHANGED: Updates privacy policy and opt-in product analytics.

= [3.18.3]/4 - 15 Oct, 2020 =

* CHANGED: Updates plugin name to better describe its use, but keep plugin page title simple.

= [3.18.2] - 02 Oct, 2020 =

* FIXED: Scopes slideshow cache to site (for multi-site support).

= [3.18.1] - 21 Sep, 2020 =

* FIXED: Removes Nivo loading gif and add back specificity.

= [3.18.0] - 05 Sep, 2020 =

* FIXED: Updates UI elements and updates icon set (FA was causing issues on some hosts).

= [3.17.6] - 31 Aug, 2020 =

* FIXED: Fixes issue with build script and script version number.

= [3.17.5] - 31 Aug, 2020 =

* FIXED: Fixes bug where the notices nonce script loading relied on jQuery.

= [3.17.4] - 29 Aug, 2020 =

* CHANGED: Tweaks to the deploy script (patch version numbers might jump as a result).
* FIXED: Adds extra check for HTML Purify class (fixes conflict with CiviCRM).

= [3.17.2] - 28 Aug, 2020 =

* CHANGED: Archives the "Thank you" dashboard notice for now.
* CHANGED: Limits loading admin specific code from the front end.
* CHANGED: Switches to a new CI and build process (report any issues to our support channel).
* CHANGED: Adds extra permission_callback check to settings routes.
* SECURITY: Adds extra filtering of captions using HTML Purifier (http://htmlpurifier.org/). Reminder: Only users with `edit_others_posts` capability can edit slideshows, which is a role that may be added by third party plugins (ex. Shop Managers from WooCommerce have this role). If you need to limit who can edit your slideshows, then you can update this with the filter `metaslider_capability`, for example to `manage_options`. Contact us in support for more information. (Thanks to Fortinet Fortiguard Labs).

= [3.17.1] - 13 Aug, 2020 =

* CHANGED: Adds permission_callback check to register_rest_route as an added redundancy.
* CHANGED: Updates colorbox's jQuery .live() function to use .on().

= [3.17.0] - 05 Aug, 2020 =

* CHANGED: Adds setting page to update some default settings.
* CHANGED: Adds export and import functionality.
* CHANGED: Updates jQuery to work with WP 5.5 (while maintaining backwards compatibility).
* FIXED: Fixes a bug where FlexSlider carousel doesn't calculate margins properly.
* FIXED: Fixes a bug where custom themes would show on fresh slideshows.

= [3.16.4] - 16 Apr, 2020 =

* FIXED: Addresses a conflict with Gutenberg modules that some users are seeing (fix in 3.16.3 was incomplete).

= [3.16.2] - 08 Apr, 2020 =

* FIXED: Updates Gutenberg module to use the new @wordpress/block-editor library.

= [3.16.1] - 03 Apr, 2020 =

* CHANGED: Updates the media_buttons_context hook to use media_buttons.

= [3.16.0] - 25 Mar, 2020 =

* CHANGED: Adds sorting options to the dropdown drawer module.
* CHANGED: Expand error handler attempt to catch errors from elsewhere.
* CHANGED: Expand search results from 15 to 25 and make that customizable.
* CHANGED: Adds a reactive title module.
* CHANGED: Updates to use WP style notifications and modals.
* CHANGED: Loads in recent slideshows and lets the user opt to load more.
* CHANGED: Switches anitmation to requestAnimationFrame for added performance.
* CHANGED: Separates settings saving logic from slides, and saves in chunks of 10 slides.
* CHANGED: Adds warning message to users that have a very low input var setting.
* CHANGED: Adds fallback for 404 routes to admin-ajax.
* CHANGED: Adds ability to use the JS dev build for debugging. Use SCRIPT_DEBUG to enable.
* FIXED: Fixes issue where single quotes in settings input fields would cause a blank page.
* FIXED: Removes unwanted side menu items on the media library view.

= [3.15.3] - 28 Nov, 2019 =

* FIXED: Updates layout breaks in WP5.3.

= [3.15.2] - 14 Nov, 2019 =

* CHANGED: Adds loaded event that other plugins can wait for.
* CHANGED: Updates a few UI elements on the search bar and slideshow drawer.
* CHANGED: Adds better checks for error messages.
* FIXED: Fixes an issue where certain settings would show when not needed.
* FIXED: Fixes a layout break in IE11.
* FIXED: Addresses performance issues with a very large collection of slideshows.

= [3.15.1] - 22 Oct, 2019 =

* FIXED: Adds better check for slide image thumbnails and count.
* FIXED: Updates $ to jQuery on the admin settings screen.

= [3.15.0] - 21 Oct, 2019 =

* CHANGED: Adds a new way to navigate slideshows.
* CHANGED: Adds various accessibility enhancements to FlexSlider.
* CHANGED: Adds extra checks for REST enabled sites.
* CHANGED: Updates notices.
* FIXED: Updates various RTL language styling issues.
* FIXED: Fixes bug where new slides wouldn't crop until pressing save.
* FIXED: Fixes various layout breaks from other languages.

= [3.14.0] - 26 Jul, 2019 =

* CHANGED: Adds ability to duplicate a slideshow.
* CHANGED: Adds toolbar with various utilities.
* CHANGED: Adds unified notification system.
* CHANGED: Moves inline styles out of the body tag.
* CHANGED: Refactors the preview module to be called from anywhere.
* CHANGED: Refactors the way slides and the slideshow saving works.
* CHANGED: Refactors the shortcode copy module.
* CHANGED: Adds helper functions to better manage the routes files.
* FIXED: Fixes a bug where adding a class name via Gutenberg crashes the block.

= [3.13.1] - 11 May, 2019 =

* CHANGED: Corrects a check on a variable in Theme.php, preventing a possible PHP notice.

= [3.13.0] - 07 May, 2019 =

* CHANGED: Allows captions to inherit the image description.
* CHANGED: Adds support for theme developers to register a theme.
* CHANGED: Adds extra checks for when a theme is missing.
* CHANGED: Removes some ancient code for compatibility with PHP < 5.1.
* CHANGED: Stops random theme being inherited when user removes it.
* CHANGED: DOM appended slides are now rendered as Vue components.

= [3.12.1] - 18 Mar, 2019 =

* FIXED: Fixes a bug where Nivo and Coin Slider did not ship with the plugin.

= [3.12.0] - 18 Mar, 2019 =

* CHANGED: Sets a default theme on a newly created slideshow.
* CHANGED: Adds various trivial code quality fixes.
* CHANGED: Adds access to the Unsplash.com image library.

= [3.11.1] - 30 Jan, 2019 =

* FIXED: Update Gutenberg compatibility.

= [3.11.0] - 30 Jan, 2019 =

* CHANGED: Adds drag and drop module.
* CHANGED: Adds a convenient start page for new users.
* CHANGED: Updates various UI elements.
* CHANGED: Removes fonts to reduce package size.
* CHANGED: Adds an escape output of slideshow titles.
* CHANGED: Removes defunct preview method.
* FIXED: Fixes layout issue with notices served by other plugins.
* FIXED: Updates Gutenberg container styles.
* FIXED: Fixes issue where Coin Slider wouldn't open in a new window.
* FIXED: Updates support for Elementor page builder.

= [3.10.3] - 04 Dec, 2018 =

* FIXED: Updates Gutenberg compatibility.

= [3.10.2] - 21 Nov, 2018 =

* FIXED: Fixes bug in with captions in NivoSlider.

= [3.10.1] - 20 Nov, 2018 =

* CHANGED: Removes redundant height and width attributes.
* FIXED: Fixes bug in PHP 5.2 where images would not import.
* FIXED: Updates various translation errors and adds translator tips.
* FIXED: Allows the folder name to be safely changed.
* FIXED: Fixes the situation where using a different folder name breaks everything.
* FIXED: Fixes a Gutenberg-related bug that appears in WP5.0 beta2.

= [3.10.0] - 25 Oct, 2018 =

* CHANGED: Adds 11 new themes users can apply to their slideshows.
* CHANGED: Adds ability to preview a slideshow with a theme.
* CHANGED: Adds ability for a theme developer to add instructions.
* CHANGED: Adds unique images by theme if a user is importing images.
* CHANGED: Adds new channel for user feedback.
* CHANGED: Adds new developer filters to adjust slide output/visibility.
* CHANGED: Adds a title to the theme module.
* CHANGED: Adds ability to import images with captions, title, alt and desc. from a theme.
* FIXED: Updates unusable filter when attempting to filter slides by type.
* FIXED: Fixes a bug when babel-polyfil is loaded more than once.
* FIXED: Adds an extra check for an error before saving the theme.

= [3.9.1] - 28 Sep, 2018 =

* FIXED: Fixes a bug where some slides get appended inside others.

= [3.9.0] - 11 Sep, 2018 =

* CHANGED: Adds the option to toggle autoplay for Coin Slider.
* CHANGED: Adds keyboard shortcuts to preview.
* CHANGED: Adds full width toggle to preview.
* CHANGED: Adds a light and dark preview option.
* CHANGED: Adds ability to import images if none exist.
* CHANGED: Adds Gutenberg block.
* CHANGED: Adds ability to use the title in a shortcode.
* CHANGED: Adds translation functionality to JS components.
* CHANGED: Updates Pro slide types descriptions.
* CHANGED: Adds placeholder and comparison table entries for schedule functionality.
* CHANGED: Adds compatibility with Pro feature ability to change layer slide background.
* CHANGED: Updates option name on slideshow select box as title name changes.
* CHANGED: Adds default Flexslider fonts to repo for users that require them.
* CHANGED: Adds filters to slides edit buttons.
* CHANGED: Tweaks edits buttons style.
* FIXED: Limits image srcset to image and layer slides (fixes post feed image).
* FIXED: Fixes broken Nivo themes (due to css specificity).
* FIXED: Fixes bug where icons would jump during delete.

= [3.8.1] - 07 Jun, 2018 =

* FIXED: Limits responsive image srcset to slideshows with cropping disabled only.
* FIXED: Increases responsive image srcset maximum size to Full.

= [3.8.0] - 04 Jun, 2018 =

* CHANGED: Adds compatibility with new Pro schedule feature.
* CHANGED: Adds compatibility with retina plugin https://wordpress.org/plugins/wp-retina-2x/.
* CHANGED: Adds option to enable or disable initial fade in.
* CHANGED: Improves Responsiveness.
* CHANGED: Adds default Flexslider fonts to repo for users that require them..
* CHANGED: Removes plugin dependency on Notice class.
* CHANGED: Standardizes the code to deny direct access.
* CHANGED: Updates how the plugin handles setting updates.
* FIXED: Fixes error when trying to save many slides.
* FIXED: Fixes broken markup in settings in some languages.
* FIXED: Fixes bug that always strips referral tags.
* FIXED: Adds a check to the copy/paste element to make sure it exists before adding an event.

= [3.7.2] - 20 Mar, 2018 =

* CHANGED: Removes an obsolete admin notice.
* SECURITY: Prevents a non-persistent logged-in XSS attack. The attacker must persuade a logged-in admin-level WP user to click on a malicious link specifically targeted to your site; this can result in his chosen JavaScript being run inside your browser on the MetaSlider page. Hence, the risk is low, but you should certainly update.

= [3.7.1] - 13 Mar, 2018 =

* FIXED: Updates FlexSlider to remove flash on page load.

= [3.7.0] - 26 Feb, 2018 =

* CHANGED: Allows users to inherit default captions and other data from the image.
* CHANGED: Updates to the correct support link.
* FIXED: Adds capability filter to pages.

= [3.6.8] - 26 Jan, 2018 =

* FIXED: Updates support links to their correct locations.
* FIXED: Updates compatibility for various themes (including Genesis).

= [3.6.7] - 15 Dec, 2017 =

* CHANGED: Adds back in some instructions on how to display the slideshow.
* CHANGED: Removes unnecessary type attribute that was causing validation errors.
* CHANGED: Adds DocBlock checking with CI for PHP and JS files.
* FIXED: Adds compatibility fixes for older WP versions.

= [3.6.6] - 23 Nov, 2017 =

* FIXED: Fixes FlexSlider bug when resizing slider.
* FIXED: Updates layout on post feed slides.

= [3.6.5] - 20 Nov, 2017 =

* CHANGED: Prevents a PHP debug log item that appeared in the short-lived 3.6.4.
* FIXED: Fixes issues with bottom margin of slideshow, among other minor tweaks.

= [3.6.3] - 16 Nov, 2017 =

* FIXED: Updates various styles to retain compatibility with previous releases based upon user feedback.
* FIXED: Removes translation of slider brand names.

UPGRADE NOTE: If upgrading to MetaSlider 3.6+, users of the MetaSlider Add-On pack should also upgrade that plugin to a current release (2.7.1 or later).

= [3.6.2] - 15 Nov, 2017 =

* FIXED: Update various styles to retain compatibility with previous releases based upon user feedback.
* FIXED: Restore compatibility with old WP versions that lack the wp_add_inline_script() function.

= [3.6.1] - 14 Nov, 2017 =

* FIXED: Removes default FlexSlider styling.

= [3.6.0] - 14 Nov, 2017 =

* CHANGED: Allow a slide to be restored after deletion.
* CHANGED: Allow the background image to be changed.
* CHANGED: Adds a guided tour.
* CHANGED: Accessibility enhancements.
* CHANGED: Adds links to activation page.
* CHANGED: Updates FlexSlider to latest.
* CHANGED: Change the label "Meta Slider" to "MetaSlider".
* CHANGED: Add dashboard notices.
* FIXED: Loads inline JS properly.
* FIXED: FlexSlider touch events respect pause on hover setting.
* FIXED: Allow for https image URLs.
* FIXED: Addresses spelling/localization issues.

= [3.5.1] - 01 May, 17 =

* FIXED: Pre-populate caption and alt text fields for new image slides (based on original media file data).
* FIXED: When a media file is deleted from the media library, also remove it from the slideshow.
* FIXED: Update _wp_attachment_metadata when creating new image sizes.

= [3.5.0] - 13 Mar, 17 =

* ADDED: New slides will now be added as a new post type (ml-slide) (existing slideshows and slides will be unaffected).
* ADDED: Add "metaslider_after_resize_image" action.
* FIXED: Don't use WP_Image_Editor to load slide images that are missing metadata (invalid images).
* FIXED: Load admin JavaScript in footer.

= [3.4.2] - 16 Jan, 17 =

* FIXED: Don't use WP_Image_Editor to load admin slide thumbnails, use wp_get_attachment_image_src instead. Attempts to fix white screen issues affecting some users. Related: https://core.trac.wordpress.org/ticket/36534.
* FIXED: Load admin JavaScript in footer.

= [3.4.0] - 04 Jan, 17 =

* CHANGED: This is the first in a series of small updates which will eventually allow us to remove restrictions in the plugin which prevent us from implementing certain functionality, including:
  * Changing a slide image.
  * Using unique captions when the same slide has been added to more than one slideshow.
  * Adding the same slide to a slideshow multiple times.
  * Duplicating slides and sliders.
  * Drafting slides.
  * Scheduling slides.

UPGRADE NOTE: We are releasing this update in a number of small stages due to the number of users MetaSlider has. We are being overly cautious to ensure it's a smooth transition. This update does not make any major changes to the current plugin functionality, but it does put in place the "scaffolding" code which we will rely on to implement further updates.

= [3.3.7] - 06 May, 16 =

* FIXED: "Maximum level reached" error when inserting the shortcode for a slideshow into it's own caption. Thanks to Zhouyuan @ Fortinet for reporting this.

= [3.3.6] - 14 Dec, 15 =

* FIXED: Save Spinner.

= [3.3.5] - 22 Sep, 15 =

* CHANGED: Prepare plugin for WordPress.org translation project (rename textdomain from 'metaslider' to 'ml-slider').
* FIXED: Small styling fix.

= [3.3.4].1 29 Jul, 15 =

* FIXED: Fix Roots theme CSS conflict.

= [3.3.4] - 16 Jul, 15 =

* REMOVED: Remove unused "Resource Manager" code.
* FIXED: Add HTML5 validation by applying a property="stylesheet" attribute to MetaSlider <link> CSS tags.
* FIXED: Chinese language pack updated (thanks to mamsds!).

= [3.3.3] - 11 Jun, 15 =

* ADDED: Ukrainian language pack added (thanks to mister_r!).
* ADDED: Add "metaslider_attachment_url" filter.
* FIXED: MetaSlider hoplink incorrectly adding parameters to filtered url.

= [3.3.2] - 16 Apr, 15 =

* SECURITY: FPD Security issue. Thanks to Ole Aass (@oleaass) for finding and disclosing this issue.

UPGRADE NOTE: The fix will prevent some servers (configured with 'display_errors' set to 'on') from disclosing the full path to certain files within MetaSlider.
http://codex.wordpress.org/Security_FAQ#Why_are_there_path_disclosures_when_directly_loading_certain_files.3F

= [3.3.1] - 23 Mar, 15 =

* CHANGED: Use admin actions to save slideshow settings.
* FIXED: Remove 'create video playlist' option from Media Library (on MetaSlider page only).
* FIXED: Support for Enhanced Media Library plugin.
* FIXED: Return public slide when DOING_AJAX.

= [3.3.0] - 17 Feb, 15 =

* ADDED: New feature: Smart pad option (for Image Slides & Flex Slider only).
* ADDED: Portuguese language files added (thanks to mauro.mascarenhas).
* FIXED: Russian language files updated (thanks to asidoryak).

= [3.2.1] - 16 Dec, 14 =

* CHANGED: Change slide image functionality backed out.
* FIXED: Apply FireFox mobile fix to Flex Slider (github #1110).

= [3.2.0] - 26 Nov, 14 =

* ADDED: Change slide image (click top right of slide thumbnail).
* FIXED: German language files (thanks to Ov3rfly!).

= [3.1.1] - 21 Oct, 14 =

* CHANGED: Add metaslider_flex_slider_list_item_attributes filter.
* FIXED: restrict_to shortcode parameter.

= [3.1.0] - 14 Oct, 14 =

* ADDED: Ajax delete slide (to stop users from losing changes when deleting a slide).
* ADDED: restrict_to shortcode parameter now accepts page IDs.
* ADDED: Change icon.
* CHANGED: Remove upgrade nags from media library, add Go Pro page (with an option to hide the page).
* FIXED: Minor admin styling fix.
* FIXED: Hide share buttons for pro users.

= [3.0.1] - 19 Aug, 14 =

* CHANGED: Allow shortcode parameters to be filtered.
* FIXED: Escape admin setting text fields.
* FIXED: Escape admin tab names (thanks to Dylan Irzi for spotting and reporting this!).

= [3.0.0] - 30 Jul, 14 =

UPGRADE NOTE: **This is not a major update. We're just following the WordPress versioning conventions (3.0 comes after 2.9)**.

* ADDED: Set crop position for slides (requires WP 3.9+).
* ADDED: Disable cropping setting.
* CHANGED: Add filter for capability required to use MetaSlider.
* FIXED: Use get_posts instead of WP_Query to extract slideshows (fix conflicts with plugins using get_post_type in admin_footer hooks).

= [2.9.1] - 15 Jul, 14 =

* ADDED: Hungarian Language Pack added.
* ADDED: Admin slide tabs can be modified with filters.
* FIXED: Escape attributes and JS in slideshow output (credit to jwenerd!).
* FIXED: Escape attributes and text fields in admin.

= [2.9.0] - 25 Jun, 14 =

* ADDED: Japanese Language Pack added.
* ADDED: Persian Language Pack added.
* ADDED: Switch between tab and list view.
* ADDED: Added ms-left and ms-right css classes to align slideshow to left or right.
* CHANGED: Flex Slider updated to 2.3.0-bleeding (fix initial image fade).
* FIXED: reference to window.parent in media library.
* FIXED: Thumbnail outline in firefox.

= [2.8.1] - 28 Apr, 14 =

* FIXED: All in One Events Calendar conflict fix (Advanced Settings not toggling).
* FIXED: CSS resets to avoid theme conflicts.
* FIXED: Autoload visibility conflict (http://wordpress.org/support/topic/autoload-visibillity-conflict).
* FIXED: Layer Editor in IE11 - text fields not accessible in modal windows.
* FIXED: FlexSlider IE11 Fade transition.

= [2.8.0] - 28 Apr, 14 =

* ADDED: Russian Language Pack added.
* ADDED: Shortcode parameter added to restrict slideshow to displaying on homepage only (see FAQ).
* CHANGED: Save slideshow after reordering slides.
* FIXED: Carousel image scaling in FireFox.
* FIXED: wpautop issue with double ampersand.
* FIXED: PHP Warning when no slideshows have been created.

= 2.8-beta 16 Apr, 14 =

* ADDED: Romanian Language Pack added (Thanks to Octav Madalin Stanoaia).
* ADDED: Dutch Language Pack added.
* ADDED: WP Super Cache compatibility - cache is cleared when saving slideshow.
* ADDED: HTML5 Compatibility (Experimental). Set `define('METASLIDER_ENABLE_RESOURCE_MANAGER', true);` in wp-config.php to move MetaSlider link tags head of the page..
* CHANGED: Preview now uses admin-post action.
* CHANGED: Classes are now auto loaded to reduce memory footprint (Thanks to Viktor Szépe for the above suggestions!).
* CHANGED: Slideshow initialization time reduced.
* CHANGED: HTML5 Compatibility: Alt tags always present on image tag - even if empty..
* CHANGED: Flex Slider slideshows should now 'reserve' a space for themselves while they fully load.
* CHANGED: Flex Slider updated to v2.2.2.

= [2.7.2] - 25 Mar, 14 =

* FIXED: Only apply carousel margin to slides.
* FIXED: Enqueue Easing library when carousel mode is enabled, regardless of effect selection.
* FIXED: Thumbnail margin when theme has #content div.

= [2.7.1] - 19 Mar, 14 =

* FIXED: Remove easing parameter when effect is set to fade.
* FIXED: Navigation options greyed out in IE.
* FIXED: qTranslate captions not being processed (typo).

= [2.7.0] - 18 Mar, 14 =

* ADDED: Croatian Lang pack added.
* ADDED: Carousel margin option added.
* ADDED: Process shortcodes in captions.
* CHANGED: Tab rename UX.
* CHANGED: Admin save spinner functionality improved.
* CHANGED: CSS Resets updated.
* CHANGED: Use plugins_loaded action to initialize plugin.
* CHANGED: "Responsive" option renamed to "R. Slides". The (old) "Responsive" option refers to the "Responsive Slides" jQuery library, but users were getting confused as the naming suggested it was the only responsive option. Flex Slider & Nivo Slider are also responsive..
* FIXED: PHP Warnings when one slideshow exists.
* FIXED: Smart Cropping sometimes not returning smart cropped image.
* FIXED: Add z-index to MetaSlider, attempted conflict fix for themes with drop down menus..
* FIXED: Only include the easing library when transition effect is set to slide.
* FIXED: White Label Branding plugin compatibility..

= [2.6.3] - 23 Jan, 14 =

* CHANGED: Various admin screen styling improvements.
* CHANGED: Filters added for complete slideshow output.
* CHANGED: Filter added for slide image label.
* CHANGED: 'No Conflict' mode refactored.
* CHANGED: 'slider' parameter added to flexslider before/start/after etc callbacks.
* CHANGED: Renamed in admin menu from "MetaSlider Lite" to "MetaSlider".
* FIXED: Add 'ms-' prefix to Advanced settings toggle boxes and Preview button (avoid theme conflicts).
* FIXED: RTL fixes.

= [2.6.2] - 02 Jan, 14 =

* FIXED: Vantage background image tiling.

= [2.6.1] - 31 Dec, 13 =

* ADDED: Norwegian language pack added.
* FIXED: Advanced settings arrow toggle.
* FIXED: All in one SEO / Page builder / MetaSlider conflict.
* FIXED: NextGen "Insert Gallery" conflict.

= [2.6.0] - 19 Dec, 13 =

* FIXED: Typo in metaslider_responsive_slide_image_attributes filter.
* FIXED: Caption not working in Nivo Slider.
* FIXED: Tab styling improved.
* FIXED: New window styling improved in WP3.7 and below.

UPGRADE NOTE: More info/Comments: http://www.metaslider.com/coming-soon-meta-slider-2-6-free/.

= 2.6-beta 15 Dec, 13 =

* ADDED: Interface update for WordPress 3.8 admin redesign.
* ADDED: 'Stretch' setting for full width slideshows.
* ADDED: No conflict mode.
* ADDED: 'Add slider' button for posts and pages.
* ADDED: SEO options (add title & alt text to slides).
* CHANGED: CSS is now enqueued using wp_enqueue_style (Use a minification plugin or caching plugin to move styles to the <head> if HTML5 validity is required - eg W3 Total Cache).

UPGRADE NOTE: More info/Comments: http://www.metaslider.com/coming-soon-meta-slider-2-6-free/.

= [2.5.0] - 25 Nov, 13 =

* CHANGED: German Language pack added (thanks to gordon34).
* CHANGED: Chinese language pack updated (thanks to 断青丝).
* CHANGED: MP6 styling fixes.
* FIXED: JetPack Photon conflict.

= 2.5-beta2 14 Nov, 13 =

* FIXED: Vantage theme backwards compatibility.
* FIXED: Flexslider anchor attributes filter.

= 2.5-beta1 12 Nov, 13 =

* FIXED: Center align slideshow.

= 2.5-beta 12 Nov, 13 =

* ADDED: 'percentwidth' parameter added to shortcode to allow for 100% wide slideshows.
* CHANGED: Generate resized images through multiple Ajax requests on save (blank screen fix).
* CHANGED: IE9 admin styling tidied up.
* CHANGED: Filters added to add/change attributes in <img> and <a> tags.
* CHANGED: Security - nonce checking added.
* CHANGED: Remove bottom margin from flex slider when navigation is hidden (add a CSS Class of 'add-margin' if you need the margin).
* FIXED: Add slides to slideshow in the same order they're selected in the Media Library.
* FIXED: Symlink path resolution.
* FIXED: Do not try to resize/open images that are corrupt (missing metadata) (blank screen fix).

= [2.4.2] - 17 Oct, 13 =

* FIXED: qTranslate caption & URL parsing for image slides.

= [2.4.1] - 17 Oct, 13 =

* FIXED: PHP Warning (reported by & thanks to: fgirardey).

= [2.4.0] - 16 Oct, 13 =

* CHANGED: Settings table tidied up.
* CHANGED: New slides are resized during addition to the slideshow.
* CHANGED: Default slideshow size increased to 700x300.
* CHANGED: Image filename now displayed for each slide (instead of image dimensions).
* CHANGED: Replace deprecated 'live()' jQuery call with 'on()'.
* CHANGED: Polish Language pack added (thanks to gordon34).
* CHANGED: Chinese language pack added (thanks to 断青丝).
* CHANGED: 'metaslider_resized_image_url' filter added (could be used to disable cropping).
* CHANGED: qTranslate support for slide URLs (see: http://screencast.com/t/FrsrptyhoT).
* CHANGED: PolyLang fix to ensure slides are extracted for all languages (set up a new slideshow for each language).
* CHANGED: WPML fix to ensure slides are extracted for all languages (set up a new slideshow for each language).
* FIXED: FlexSlider styling in twenty twelve theme.
* FIXED: IE10 - "Caption" placeholder text being saved as actual caption.

= [2.3.0] - 18 Sep, 13 =

* ADDED: 'metaslider_max_tabs' filter added to convert tab list to ordered drop down menu.
* ADDED: Filters added to allow modification of image slide HTML.
* CHANGED: Flex Slider upgraded to v2.2.
* CHANGED: Responsive Slides upgraded to v1.54.
* CHANGED: 'Create first slideshow' prompt added for new users.
* CHANGED: 'scoped' attribute removed from inline CSS tag until browsers catch up with supporting it properly. A new filter has been added: "metaslider_style_attributes" if you wish to add the scoped attribute back in..
* CHANGED: wp_footer check removed due to confusion.
* CHANGED: Settings area tidied up.
* CHANGED: Image URL Field less restrictive.
* CHANGED: HTML Output tidied up.
* FIXED: Remove 'Insert Media' tab from 'Add Slide' modal (WP 3.6 only).

= [2.2.2] - 21 Aug, 13 =

* CHANGED: System check added with option to dismiss messages. Checks made for: role scoper plugin, wp_footer, wordpress version & GD/ImageMagick..

= [2.2.1] - 08 Aug, 13 =

* FIXED: Responsive slides styling in FireFox (reported by and thanks to: dznr418).
* FIXED: Flex Slider carousel causing browser to crash in some circumstances.

= [2.2.0] - 01 Aug, 13 =

* FIXED: Paragraph tags being added to output using Nivo Slider.

= [2.1.6] - 22 Jul, 2013 =

* CHANGED: Refresh slides after clicking 'save'.
* CHANGED: Added hook to adjust carousel image margin.
* CHANGED: Ensure taxonomy category exists before tagging slide to slideshow.
* FIXED: Use the original image file if the slideshow size is the same size as the image file.
* FIXED: Conflict with Advanced Post Types Order plugin.
* FIXED: Colorbox conflict when using resizable elements in lightbox.
* FIXED: Only submit form when submit button is clicked (not all buttons).
* FIXED: Coin slider caption width in FireFox.

= [2.1.5] - 24 May, 13 =

* FIXED: HTML 5 Validation.

= [2.1.4] - 21 May, 13 =

* FIXED: Widget markup invalid (reported by and thanks to: CarlosCanvas).

= [2.1.3] - 21 May, 13 =

* FIXED: User Access Manager Plugin incompatibility issues (reported by and thanks to: eltipografico).

= [2.1.2] - 21 May, 13 =

* ADDED: Spanish language pack (thanks to eltipografico).
* CHANGED: Title field added to widget (suggested by and thanks to: pa_esp).
* FIXED: Nivo Slider theme select dropdown (reported by and thanks to: macks).
* FIXED: HTML5 Validation fix for inline styles.

= [2.1.1] - 13 May, 13 =

* FIXED: PHP version compatibility.

= [2.1.0] - 12 May, 13 =

* ADDED: Widget added.
* ADDED: System check added (checks for required image libraries and WordPress version).
* CHANGED: Display warning message when unchecking Print JS and Print CSS options.
* CHANGED: Coinslider navigation centered.
* FIXED: Multiple CSS fixes added for popular themes.
* FIXED: Flex slider shows first slide when JS is disabled.

= [2.0.2] - 02 May, 13 =

* FIXED: PHP Error when using slides the same size as the slideshow.

= [2.0.1] - 28 Apr, 13 =

* ADDED: French language pack (thanks to: fb-graphiklab).
* FIXED: Use transparent background on default flexslider theme.
* FIXED: Set direction to LTR for flexslider viewport (fix for RTL languages).
* FIXED: Nivoslider HTML Captions.
* FIXED: Responsive slides navigation positioning.

= [2.0.0] - 21 Apr, 13 =

* FIXED: Responsive slides navigation styling.
* FIXED: Update slide order on save.
* FIXED: Smart crop edge cases.
* FIXED: Flexslider navigation overflow.

= [2.0-betaX] 17 Apr, 13 =

* CHANGED: Error messages exposed in admin is MetaSlider cannot load the slides.
* CHANGED: Load default settings if original settings are corrupt/incomplete.
* FIXED: Smart Crop ratio.
* FIXED: UTF-8 characters in captions (reported by and thanks to: javitopo).
* FIXED: JetPack Photo not loading images (reported by and thanks to: Jason).
* FIXED: Double slash on jQuery easing path.
* FIXED: Paragraph tags outputted in JavaScript (reported by and thanks to: CrimsonRaddish).

= [2.0-beta] =

* ADDED: Preview slideshows in admin control panel.
* ADDED: 'Easing' options added to flex slider.
* ADDED: 'Carousel mode' option added for flex slider.
* ADDED: 'Auto play' option added.
* ADDED: 'Smart Crop' setting ensures your slideshow size remains consistent regardless of image dimensions.
* ADDED: 'Center align slideshow' option added for all sliders.
* ADDED: Coin Slider upgraded to latest version, new options now exposed in MetaSlider.
* ADDED: Captions now supported by responsive slides.
* CHANGED: Responsive AJAX powered administration screen.
* CHANGED: Code refactored.
* CHANGED: Flex Slider captions now sit over the slide.
* FIXED: Nivo slider invalid markup (reported by and thanks to: nellyshark).
* FIXED: JS && encoding error (reported by and thanks to: neefje).

= [1.3.0] - 28 Feb, 13 =

* ADDED: Open URL in new window option added.
* CHANGED: Renamed to MetaSlider (previously ML Slider).
* CHANGED: Admin styling cleaned up.
* CHANGED: Code refactored.
* CHANGED: Plugin localized.
* CHANGED: Template include PHP code now displayed on slider edit page.
* CHANGED: jQuery tablednd replaced with jQuery sortable for reordering slides.
* CHANGED: max-width css rule added to slider wrapper.
* FIXED: UTF-8 support in captions (reported by and thanks to: petergluk).
* FIXED: JS && encoding error (reported by and thanks to: neefje).
* FIXED: Editors now have permission to use MetaSlider (reported by and thanks to: rritsud).

= [1.2.1] - 20 Feb, 13 =

* FIXED: Number of slides per slideshow limited to WordPress 'blog pages show at most' setting (reported by and thanks to: Kenny).
* FIXED: Add warning when BMP file is added to slider (reported by and thanks to: MadBong).
* FIXED: Allow images smaller than default thumbnail size to be added to slider (reported by and thanks to: MadBong).

= [1.2.0] - 19 Feb, 13 =

* CHANGED: Code refactored.
* CHANGED: Warning notice when the slider has unsaved changes.
* CHANGED: Add multiple files to slider from Media Browser.
* FIXED: Unable to assign the same image to more than one slider.
* FIXED: JavaScript error when jQuery is loaded in page footer.
* FIXED: Captions not being escaped (reported by and thanks to: papabeers).

= [1.1.0] - 18 Feb, 13 =

* CHANGED: Code refactored.
* CHANGED: Settings for new sliders now based on the last edited slider.
* CHANGED: More screenshots added.
* FIXED: hitting [enter] brings up Media Library.

= [1.0.1] - 17 Feb, 13 =

* FIXED: min version incorrect (should be 3.5).

= [1.0.0] - 15 Feb, 13 =

* ADDED: First set of features.

UPGRADE NOTE: First release.
lib/htmlpurifier/VERSION000064400000000006151213255710011072 0ustar004.13.1lib/htmlpurifier/library/HTMLPurifier/EntityParser.php000064400000023374151213255710017117 0ustar00<?php

// if want to implement error collecting here, we'll need to use some sort
// of global data (probably trigger_error) because it's impossible to pass
// $config or $context to the callback functions.

/**
 * Handles referencing and derefencing character entities
 */
class HTMLPurifier_EntityParser
{

    /**
     * Reference to entity lookup table.
     * @type HTMLPurifier_EntityLookup
     */
    protected $_entity_lookup;

    /**
     * Callback regex string for entities in text.
     * @type string
     */
    protected $_textEntitiesRegex;

    /**
     * Callback regex string for entities in attributes.
     * @type string
     */
    protected $_attrEntitiesRegex;

    /**
     * Tests if the beginning of a string is a semi-optional regex
     */
    protected $_semiOptionalPrefixRegex;

    public function __construct() {
        // From
        // http://stackoverflow.com/questions/15532252/why-is-reg-being-rendered-as-without-the-bounding-semicolon
        $semi_optional = "quot|QUOT|lt|LT|gt|GT|amp|AMP|AElig|Aacute|Acirc|Agrave|Aring|Atilde|Auml|COPY|Ccedil|ETH|Eacute|Ecirc|Egrave|Euml|Iacute|Icirc|Igrave|Iuml|Ntilde|Oacute|Ocirc|Ograve|Oslash|Otilde|Ouml|REG|THORN|Uacute|Ucirc|Ugrave|Uuml|Yacute|aacute|acirc|acute|aelig|agrave|aring|atilde|auml|brvbar|ccedil|cedil|cent|copy|curren|deg|divide|eacute|ecirc|egrave|eth|euml|frac12|frac14|frac34|iacute|icirc|iexcl|igrave|iquest|iuml|laquo|macr|micro|middot|nbsp|not|ntilde|oacute|ocirc|ograve|ordf|ordm|oslash|otilde|ouml|para|plusmn|pound|raquo|reg|sect|shy|sup1|sup2|sup3|szlig|thorn|times|uacute|ucirc|ugrave|uml|uuml|yacute|yen|yuml";

        // NB: three empty captures to put the fourth match in the right
        // place
        $this->_semiOptionalPrefixRegex = "/&()()()($semi_optional)/";

        $this->_textEntitiesRegex =
            '/&(?:'.
            // hex
            '[#]x([a-fA-F0-9]+);?|'.
            // dec
            '[#]0*(\d+);?|'.
            // string (mandatory semicolon)
            // NB: order matters: match semicolon preferentially
            '([A-Za-z_:][A-Za-z0-9.\-_:]*);|'.
            // string (optional semicolon)
            "($semi_optional)".
            ')/';

        $this->_attrEntitiesRegex =
            '/&(?:'.
            // hex
            '[#]x([a-fA-F0-9]+);?|'.
            // dec
            '[#]0*(\d+);?|'.
            // string (mandatory semicolon)
            // NB: order matters: match semicolon preferentially
            '([A-Za-z_:][A-Za-z0-9.\-_:]*);|'.
            // string (optional semicolon)
            // don't match if trailing is equals or alphanumeric (URL
            // like)
            "($semi_optional)(?![=;A-Za-z0-9])".
            ')/';

    }

    /**
     * Substitute entities with the parsed equivalents.  Use this on
     * textual data in an HTML document (as opposed to attributes.)
     *
     * @param string $string String to have entities parsed.
     * @return string Parsed string.
     */
    public function substituteTextEntities($string)
    {
        return preg_replace_callback(
            $this->_textEntitiesRegex,
            array($this, 'entityCallback'),
            $string
        );
    }

    /**
     * Substitute entities with the parsed equivalents.  Use this on
     * attribute contents in documents.
     *
     * @param string $string String to have entities parsed.
     * @return string Parsed string.
     */
    public function substituteAttrEntities($string)
    {
        return preg_replace_callback(
            $this->_attrEntitiesRegex,
            array($this, 'entityCallback'),
            $string
        );
    }

    /**
     * Callback function for substituteNonSpecialEntities() that does the work.
     *
     * @param array $matches  PCRE matches array, with 0 the entire match, and
     *                  either index 1, 2 or 3 set with a hex value, dec value,
     *                  or string (respectively).
     * @return string Replacement string.
     */

    protected function entityCallback($matches)
    {
        $entity = $matches[0];
        $hex_part = @$matches[1];
        $dec_part = @$matches[2];
        $named_part = empty($matches[3]) ? (empty($matches[4]) ? "" : $matches[4]) : $matches[3];
        if ($hex_part !== NULL && $hex_part !== "") {
            return HTMLPurifier_Encoder::unichr(hexdec($hex_part));
        } elseif ($dec_part !== NULL && $dec_part !== "") {
            return HTMLPurifier_Encoder::unichr((int) $dec_part);
        } else {
            if (!$this->_entity_lookup) {
                $this->_entity_lookup = HTMLPurifier_EntityLookup::instance();
            }
            if (isset($this->_entity_lookup->table[$named_part])) {
                return $this->_entity_lookup->table[$named_part];
            } else {
                // exact match didn't match anything, so test if
                // any of the semicolon optional match the prefix.
                // Test that this is an EXACT match is important to
                // prevent infinite loop
                if (!empty($matches[3])) {
                    return preg_replace_callback(
                        $this->_semiOptionalPrefixRegex,
                        array($this, 'entityCallback'),
                        $entity
                    );
                }
                return $entity;
            }
        }
    }

    // LEGACY CODE BELOW

    /**
     * Callback regex string for parsing entities.
     * @type string
     */
    protected $_substituteEntitiesRegex =
        '/&(?:[#]x([a-fA-F0-9]+)|[#]0*(\d+)|([A-Za-z_:][A-Za-z0-9.\-_:]*));?/';
        //     1. hex             2. dec      3. string (XML style)

    /**
     * Decimal to parsed string conversion table for special entities.
     * @type array
     */
    protected $_special_dec2str =
            array(
                    34 => '"',
                    38 => '&',
                    39 => "'",
                    60 => '<',
                    62 => '>'
            );

    /**
     * Stripped entity names to decimal conversion table for special entities.
     * @type array
     */
    protected $_special_ent2dec =
            array(
                    'quot' => 34,
                    'amp'  => 38,
                    'lt'   => 60,
                    'gt'   => 62
            );

    /**
     * Substitutes non-special entities with their parsed equivalents. Since
     * running this whenever you have parsed character is t3h 5uck, we run
     * it before everything else.
     *
     * @param string $string String to have non-special entities parsed.
     * @return string Parsed string.
     */
    public function substituteNonSpecialEntities($string)
    {
        // it will try to detect missing semicolons, but don't rely on it
        return preg_replace_callback(
            $this->_substituteEntitiesRegex,
            array($this, 'nonSpecialEntityCallback'),
            $string
        );
    }

    /**
     * Callback function for substituteNonSpecialEntities() that does the work.
     *
     * @param array $matches  PCRE matches array, with 0 the entire match, and
     *                  either index 1, 2 or 3 set with a hex value, dec value,
     *                  or string (respectively).
     * @return string Replacement string.
     */

    protected function nonSpecialEntityCallback($matches)
    {
        // replaces all but big five
        $entity = $matches[0];
        $is_num = (@$matches[0][1] === '#');
        if ($is_num) {
            $is_hex = (@$entity[2] === 'x');
            $code = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
            // abort for special characters
            if (isset($this->_special_dec2str[$code])) {
                return $entity;
            }
            return HTMLPurifier_Encoder::unichr($code);
        } else {
            if (isset($this->_special_ent2dec[$matches[3]])) {
                return $entity;
            }
            if (!$this->_entity_lookup) {
                $this->_entity_lookup = HTMLPurifier_EntityLookup::instance();
            }
            if (isset($this->_entity_lookup->table[$matches[3]])) {
                return $this->_entity_lookup->table[$matches[3]];
            } else {
                return $entity;
            }
        }
    }

    /**
     * Substitutes only special entities with their parsed equivalents.
     *
     * @notice We try to avoid calling this function because otherwise, it
     * would have to be called a lot (for every parsed section).
     *
     * @param string $string String to have non-special entities parsed.
     * @return string Parsed string.
     */
    public function substituteSpecialEntities($string)
    {
        return preg_replace_callback(
            $this->_substituteEntitiesRegex,
            array($this, 'specialEntityCallback'),
            $string
        );
    }

    /**
     * Callback function for substituteSpecialEntities() that does the work.
     *
     * This callback has same syntax as nonSpecialEntityCallback().
     *
     * @param array $matches  PCRE-style matches array, with 0 the entire match, and
     *                  either index 1, 2 or 3 set with a hex value, dec value,
     *                  or string (respectively).
     * @return string Replacement string.
     */
    protected function specialEntityCallback($matches)
    {
        $entity = $matches[0];
        $is_num = (@$matches[0][1] === '#');
        if ($is_num) {
            $is_hex = (@$entity[2] === 'x');
            $int = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
            return isset($this->_special_dec2str[$int]) ?
                $this->_special_dec2str[$int] :
                $entity;
        } else {
            return isset($this->_special_ent2dec[$matches[3]]) ?
                $this->_special_dec2str[$this->_special_ent2dec[$matches[3]]] :
                $entity;
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ErrorStruct.php000064400000003545151213255710016762 0ustar00<?php

/**
 * Records errors for particular segments of an HTML document such as tokens,
 * attributes or CSS properties. They can contain error structs (which apply
 * to components of what they represent), but their main purpose is to hold
 * errors applying to whatever struct is being used.
 */
class HTMLPurifier_ErrorStruct
{

    /**
     * Possible values for $children first-key. Note that top-level structures
     * are automatically token-level.
     */
    const TOKEN     = 0;
    const ATTR      = 1;
    const CSSPROP   = 2;

    /**
     * Type of this struct.
     * @type string
     */
    public $type;

    /**
     * Value of the struct we are recording errors for. There are various
     * values for this:
     *  - TOKEN: Instance of HTMLPurifier_Token
     *  - ATTR: array('attr-name', 'value')
     *  - CSSPROP: array('prop-name', 'value')
     * @type mixed
     */
    public $value;

    /**
     * Errors registered for this structure.
     * @type array
     */
    public $errors = array();

    /**
     * Child ErrorStructs that are from this structure. For example, a TOKEN
     * ErrorStruct would contain ATTR ErrorStructs. This is a multi-dimensional
     * array in structure: [TYPE]['identifier']
     * @type array
     */
    public $children = array();

    /**
     * @param string $type
     * @param string $id
     * @return mixed
     */
    public function getChild($type, $id)
    {
        if (!isset($this->children[$type][$id])) {
            $this->children[$type][$id] = new HTMLPurifier_ErrorStruct();
            $this->children[$type][$id]->type = $type;
        }
        return $this->children[$type][$id];
    }

    /**
     * @param int $severity
     * @param string $message
     */
    public function addError($severity, $message)
    {
        $this->errors[] = array($severity, $message);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/CSSDefinition.php000064400000045175151213255710017132 0ustar00<?php

/**
 * Defines allowed CSS attributes and what their values are.
 * @see HTMLPurifier_HTMLDefinition
 */
class HTMLPurifier_CSSDefinition extends HTMLPurifier_Definition
{

    public $type = 'CSS';

    /**
     * Assoc array of attribute name to definition object.
     * @type HTMLPurifier_AttrDef[]
     */
    public $info = array();

    /**
     * Constructs the info array.  The meat of this class.
     * @param HTMLPurifier_Config $config
     */
    protected function doSetup($config)
    {
        $this->info['text-align'] = new HTMLPurifier_AttrDef_Enum(
            array('left', 'right', 'center', 'justify'),
            false
        );

        $border_style =
            $this->info['border-bottom-style'] =
            $this->info['border-right-style'] =
            $this->info['border-left-style'] =
            $this->info['border-top-style'] = new HTMLPurifier_AttrDef_Enum(
                array(
                    'none',
                    'hidden',
                    'dotted',
                    'dashed',
                    'solid',
                    'double',
                    'groove',
                    'ridge',
                    'inset',
                    'outset'
                ),
                false
            );

        $this->info['border-style'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_style);

        $this->info['clear'] = new HTMLPurifier_AttrDef_Enum(
            array('none', 'left', 'right', 'both'),
            false
        );
        $this->info['float'] = new HTMLPurifier_AttrDef_Enum(
            array('none', 'left', 'right'),
            false
        );
        $this->info['font-style'] = new HTMLPurifier_AttrDef_Enum(
            array('normal', 'italic', 'oblique'),
            false
        );
        $this->info['font-variant'] = new HTMLPurifier_AttrDef_Enum(
            array('normal', 'small-caps'),
            false
        );

        $uri_or_none = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_Enum(array('none')),
                new HTMLPurifier_AttrDef_CSS_URI()
            )
        );

        $this->info['list-style-position'] = new HTMLPurifier_AttrDef_Enum(
            array('inside', 'outside'),
            false
        );
        $this->info['list-style-type'] = new HTMLPurifier_AttrDef_Enum(
            array(
                'disc',
                'circle',
                'square',
                'decimal',
                'lower-roman',
                'upper-roman',
                'lower-alpha',
                'upper-alpha',
                'none'
            ),
            false
        );
        $this->info['list-style-image'] = $uri_or_none;

        $this->info['list-style'] = new HTMLPurifier_AttrDef_CSS_ListStyle($config);

        $this->info['text-transform'] = new HTMLPurifier_AttrDef_Enum(
            array('capitalize', 'uppercase', 'lowercase', 'none'),
            false
        );
        $this->info['color'] = new HTMLPurifier_AttrDef_CSS_Color();

        $this->info['background-image'] = $uri_or_none;
        $this->info['background-repeat'] = new HTMLPurifier_AttrDef_Enum(
            array('repeat', 'repeat-x', 'repeat-y', 'no-repeat')
        );
        $this->info['background-attachment'] = new HTMLPurifier_AttrDef_Enum(
            array('scroll', 'fixed')
        );
        $this->info['background-position'] = new HTMLPurifier_AttrDef_CSS_BackgroundPosition();

        $border_color =
            $this->info['border-top-color'] =
            $this->info['border-bottom-color'] =
            $this->info['border-left-color'] =
            $this->info['border-right-color'] =
            $this->info['background-color'] = new HTMLPurifier_AttrDef_CSS_Composite(
                array(
                    new HTMLPurifier_AttrDef_Enum(array('transparent')),
                    new HTMLPurifier_AttrDef_CSS_Color()
                )
            );

        $this->info['background'] = new HTMLPurifier_AttrDef_CSS_Background($config);

        $this->info['border-color'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_color);

        $border_width =
            $this->info['border-top-width'] =
            $this->info['border-bottom-width'] =
            $this->info['border-left-width'] =
            $this->info['border-right-width'] = new HTMLPurifier_AttrDef_CSS_Composite(
                array(
                    new HTMLPurifier_AttrDef_Enum(array('thin', 'medium', 'thick')),
                    new HTMLPurifier_AttrDef_CSS_Length('0') //disallow negative
                )
            );

        $this->info['border-width'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_width);

        $this->info['letter-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_Enum(array('normal')),
                new HTMLPurifier_AttrDef_CSS_Length()
            )
        );

        $this->info['word-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_Enum(array('normal')),
                new HTMLPurifier_AttrDef_CSS_Length()
            )
        );

        $this->info['font-size'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_Enum(
                    array(
                        'xx-small',
                        'x-small',
                        'small',
                        'medium',
                        'large',
                        'x-large',
                        'xx-large',
                        'larger',
                        'smaller'
                    )
                ),
                new HTMLPurifier_AttrDef_CSS_Percentage(),
                new HTMLPurifier_AttrDef_CSS_Length()
            )
        );

        $this->info['line-height'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_Enum(array('normal')),
                new HTMLPurifier_AttrDef_CSS_Number(true), // no negatives
                new HTMLPurifier_AttrDef_CSS_Length('0'),
                new HTMLPurifier_AttrDef_CSS_Percentage(true)
            )
        );

        $margin =
            $this->info['margin-top'] =
            $this->info['margin-bottom'] =
            $this->info['margin-left'] =
            $this->info['margin-right'] = new HTMLPurifier_AttrDef_CSS_Composite(
                array(
                    new HTMLPurifier_AttrDef_CSS_Length(),
                    new HTMLPurifier_AttrDef_CSS_Percentage(),
                    new HTMLPurifier_AttrDef_Enum(array('auto'))
                )
            );

        $this->info['margin'] = new HTMLPurifier_AttrDef_CSS_Multiple($margin);

        // non-negative
        $padding =
            $this->info['padding-top'] =
            $this->info['padding-bottom'] =
            $this->info['padding-left'] =
            $this->info['padding-right'] = new HTMLPurifier_AttrDef_CSS_Composite(
                array(
                    new HTMLPurifier_AttrDef_CSS_Length('0'),
                    new HTMLPurifier_AttrDef_CSS_Percentage(true)
                )
            );

        $this->info['padding'] = new HTMLPurifier_AttrDef_CSS_Multiple($padding);

        $this->info['text-indent'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_CSS_Length(),
                new HTMLPurifier_AttrDef_CSS_Percentage()
            )
        );

        $trusted_wh = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_CSS_Length('0'),
                new HTMLPurifier_AttrDef_CSS_Percentage(true),
                new HTMLPurifier_AttrDef_Enum(array('auto', 'initial', 'inherit'))
            )
        );
        $trusted_min_wh = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_CSS_Length('0'),
                new HTMLPurifier_AttrDef_CSS_Percentage(true),
                new HTMLPurifier_AttrDef_Enum(array('initial', 'inherit'))
            )
        );
        $trusted_max_wh = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_CSS_Length('0'),
                new HTMLPurifier_AttrDef_CSS_Percentage(true),
                new HTMLPurifier_AttrDef_Enum(array('none', 'initial', 'inherit'))
            )
        );
        $max = $config->get('CSS.MaxImgLength');

        $this->info['width'] =
        $this->info['height'] =
            $max === null ?
                $trusted_wh :
                new HTMLPurifier_AttrDef_Switch(
                    'img',
                    // For img tags:
                    new HTMLPurifier_AttrDef_CSS_Composite(
                        array(
                            new HTMLPurifier_AttrDef_CSS_Length('0', $max),
                            new HTMLPurifier_AttrDef_Enum(array('auto'))
                        )
                    ),
                    // For everyone else:
                    $trusted_wh
                );
        $this->info['min-width'] =
        $this->info['min-height'] =
            $max === null ?
                $trusted_min_wh :
                new HTMLPurifier_AttrDef_Switch(
                    'img',
                    // For img tags:
                    new HTMLPurifier_AttrDef_CSS_Composite(
                        array(
                            new HTMLPurifier_AttrDef_CSS_Length('0', $max),
                            new HTMLPurifier_AttrDef_Enum(array('initial', 'inherit'))
                        )
                    ),
                    // For everyone else:
                    $trusted_min_wh
                );
        $this->info['max-width'] =
        $this->info['max-height'] =
            $max === null ?
                $trusted_max_wh :
                new HTMLPurifier_AttrDef_Switch(
                    'img',
                    // For img tags:
                    new HTMLPurifier_AttrDef_CSS_Composite(
                        array(
                            new HTMLPurifier_AttrDef_CSS_Length('0', $max),
                            new HTMLPurifier_AttrDef_Enum(array('none', 'initial', 'inherit'))
                        )
                    ),
                    // For everyone else:
                    $trusted_max_wh
                );

        $this->info['text-decoration'] = new HTMLPurifier_AttrDef_CSS_TextDecoration();

        $this->info['font-family'] = new HTMLPurifier_AttrDef_CSS_FontFamily();

        // this could use specialized code
        $this->info['font-weight'] = new HTMLPurifier_AttrDef_Enum(
            array(
                'normal',
                'bold',
                'bolder',
                'lighter',
                '100',
                '200',
                '300',
                '400',
                '500',
                '600',
                '700',
                '800',
                '900'
            ),
            false
        );

        // MUST be called after other font properties, as it references
        // a CSSDefinition object
        $this->info['font'] = new HTMLPurifier_AttrDef_CSS_Font($config);

        // same here
        $this->info['border'] =
        $this->info['border-bottom'] =
        $this->info['border-top'] =
        $this->info['border-left'] =
        $this->info['border-right'] = new HTMLPurifier_AttrDef_CSS_Border($config);

        $this->info['border-collapse'] = new HTMLPurifier_AttrDef_Enum(
            array('collapse', 'separate')
        );

        $this->info['caption-side'] = new HTMLPurifier_AttrDef_Enum(
            array('top', 'bottom')
        );

        $this->info['table-layout'] = new HTMLPurifier_AttrDef_Enum(
            array('auto', 'fixed')
        );

        $this->info['vertical-align'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_Enum(
                    array(
                        'baseline',
                        'sub',
                        'super',
                        'top',
                        'text-top',
                        'middle',
                        'bottom',
                        'text-bottom'
                    )
                ),
                new HTMLPurifier_AttrDef_CSS_Length(),
                new HTMLPurifier_AttrDef_CSS_Percentage()
            )
        );

        $this->info['border-spacing'] = new HTMLPurifier_AttrDef_CSS_Multiple(new HTMLPurifier_AttrDef_CSS_Length(), 2);

        // These CSS properties don't work on many browsers, but we live
        // in THE FUTURE!
        $this->info['white-space'] = new HTMLPurifier_AttrDef_Enum(
            array('nowrap', 'normal', 'pre', 'pre-wrap', 'pre-line')
        );

        if ($config->get('CSS.Proprietary')) {
            $this->doSetupProprietary($config);
        }

        if ($config->get('CSS.AllowTricky')) {
            $this->doSetupTricky($config);
        }

        if ($config->get('CSS.Trusted')) {
            $this->doSetupTrusted($config);
        }

        $allow_important = $config->get('CSS.AllowImportant');
        // wrap all attr-defs with decorator that handles !important
        foreach ($this->info as $k => $v) {
            $this->info[$k] = new HTMLPurifier_AttrDef_CSS_ImportantDecorator($v, $allow_important);
        }

        $this->setupConfigStuff($config);
    }

    /**
     * @param HTMLPurifier_Config $config
     */
    protected function doSetupProprietary($config)
    {
        // Internet Explorer only scrollbar colors
        $this->info['scrollbar-arrow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
        $this->info['scrollbar-base-color'] = new HTMLPurifier_AttrDef_CSS_Color();
        $this->info['scrollbar-darkshadow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
        $this->info['scrollbar-face-color'] = new HTMLPurifier_AttrDef_CSS_Color();
        $this->info['scrollbar-highlight-color'] = new HTMLPurifier_AttrDef_CSS_Color();
        $this->info['scrollbar-shadow-color'] = new HTMLPurifier_AttrDef_CSS_Color();

        // vendor specific prefixes of opacity
        $this->info['-moz-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
        $this->info['-khtml-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();

        // only opacity, for now
        $this->info['filter'] = new HTMLPurifier_AttrDef_CSS_Filter();

        // more CSS3
        $this->info['page-break-after'] =
        $this->info['page-break-before'] = new HTMLPurifier_AttrDef_Enum(
            array(
                'auto',
                'always',
                'avoid',
                'left',
                'right'
            )
        );
        $this->info['page-break-inside'] = new HTMLPurifier_AttrDef_Enum(array('auto', 'avoid'));

        $border_radius = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_CSS_Percentage(true), // disallow negative
                new HTMLPurifier_AttrDef_CSS_Length('0') // disallow negative
            ));

        $this->info['border-top-left-radius'] =
        $this->info['border-top-right-radius'] =
        $this->info['border-bottom-right-radius'] =
        $this->info['border-bottom-left-radius'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_radius, 2);
        // TODO: support SLASH syntax
        $this->info['border-radius'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_radius, 4);

    }

    /**
     * @param HTMLPurifier_Config $config
     */
    protected function doSetupTricky($config)
    {
        $this->info['display'] = new HTMLPurifier_AttrDef_Enum(
            array(
                'inline',
                'block',
                'list-item',
                'run-in',
                'compact',
                'marker',
                'table',
                'inline-block',
                'inline-table',
                'table-row-group',
                'table-header-group',
                'table-footer-group',
                'table-row',
                'table-column-group',
                'table-column',
                'table-cell',
                'table-caption',
                'none'
            )
        );
        $this->info['visibility'] = new HTMLPurifier_AttrDef_Enum(
            array('visible', 'hidden', 'collapse')
        );
        $this->info['overflow'] = new HTMLPurifier_AttrDef_Enum(array('visible', 'hidden', 'auto', 'scroll'));
        $this->info['opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
    }

    /**
     * @param HTMLPurifier_Config $config
     */
    protected function doSetupTrusted($config)
    {
        $this->info['position'] = new HTMLPurifier_AttrDef_Enum(
            array('static', 'relative', 'absolute', 'fixed')
        );
        $this->info['top'] =
        $this->info['left'] =
        $this->info['right'] =
        $this->info['bottom'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_CSS_Length(),
                new HTMLPurifier_AttrDef_CSS_Percentage(),
                new HTMLPurifier_AttrDef_Enum(array('auto')),
            )
        );
        $this->info['z-index'] = new HTMLPurifier_AttrDef_CSS_Composite(
            array(
                new HTMLPurifier_AttrDef_Integer(),
                new HTMLPurifier_AttrDef_Enum(array('auto')),
            )
        );
    }

    /**
     * Performs extra config-based processing. Based off of
     * HTMLPurifier_HTMLDefinition.
     * @param HTMLPurifier_Config $config
     * @todo Refactor duplicate elements into common class (probably using
     *       composition, not inheritance).
     */
    protected function setupConfigStuff($config)
    {
        // setup allowed elements
        $support = "(for information on implementing this, see the " .
            "support forums) ";
        $allowed_properties = $config->get('CSS.AllowedProperties');
        if ($allowed_properties !== null) {
            foreach ($this->info as $name => $d) {
                if (!isset($allowed_properties[$name])) {
                    unset($this->info[$name]);
                }
                unset($allowed_properties[$name]);
            }
            // emit errors
            foreach ($allowed_properties as $name => $d) {
                // :TODO: Is this htmlspecialchars() call really necessary?
                $name = htmlspecialchars($name);
                trigger_error("Style attribute '$name' is not supported $support", E_USER_WARNING);
            }
        }

        $forbidden_properties = $config->get('CSS.ForbiddenProperties');
        if ($forbidden_properties !== null) {
            foreach ($this->info as $name => $d) {
                if (isset($forbidden_properties[$name])) {
                    unset($this->info[$name]);
                }
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef.php000064400000003027151213255710016121 0ustar00<?php

/**
 * Defines allowed child nodes and validates nodes against it.
 */
abstract class HTMLPurifier_ChildDef
{
    /**
     * Type of child definition, usually right-most part of class name lowercase.
     * Used occasionally in terms of context.
     * @type string
     */
    public $type;

    /**
     * Indicates whether or not an empty array of children is okay.
     *
     * This is necessary for redundant checking when changes affecting
     * a child node may cause a parent node to now be disallowed.
     * @type bool
     */
    public $allow_empty;

    /**
     * Lookup array of all elements that this definition could possibly allow.
     * @type array
     */
    public $elements = array();

    /**
     * Get lookup of tag names that should not close this element automatically.
     * All other elements will do so.
     * @param HTMLPurifier_Config $config HTMLPurifier_Config object
     * @return array
     */
    public function getAllowedElements($config)
    {
        return $this->elements;
    }

    /**
     * Validates nodes according to definition and returns modification.
     *
     * @param HTMLPurifier_Node[] $children Array of HTMLPurifier_Node
     * @param HTMLPurifier_Config $config HTMLPurifier_Config object
     * @param HTMLPurifier_Context $context HTMLPurifier_Context object
     * @return bool|array true to leave nodes as is, false to remove parent node, array of replacement children
     */
    abstract public function validateChildren($children, $config, $context);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModuleManager.php000064400000037112151213255710017666 0ustar00<?php

class HTMLPurifier_HTMLModuleManager
{

    /**
     * @type HTMLPurifier_DoctypeRegistry
     */
    public $doctypes;

    /**
     * Instance of current doctype.
     * @type string
     */
    public $doctype;

    /**
     * @type HTMLPurifier_AttrTypes
     */
    public $attrTypes;

    /**
     * Active instances of modules for the specified doctype are
     * indexed, by name, in this array.
     * @type HTMLPurifier_HTMLModule[]
     */
    public $modules = array();

    /**
     * Array of recognized HTMLPurifier_HTMLModule instances,
     * indexed by module's class name. This array is usually lazy loaded, but a
     * user can overload a module by pre-emptively registering it.
     * @type HTMLPurifier_HTMLModule[]
     */
    public $registeredModules = array();

    /**
     * List of extra modules that were added by the user
     * using addModule(). These get unconditionally merged into the current doctype, whatever
     * it may be.
     * @type HTMLPurifier_HTMLModule[]
     */
    public $userModules = array();

    /**
     * Associative array of element name to list of modules that have
     * definitions for the element; this array is dynamically filled.
     * @type array
     */
    public $elementLookup = array();

    /**
     * List of prefixes we should use for registering small names.
     * @type array
     */
    public $prefixes = array('HTMLPurifier_HTMLModule_');

    /**
     * @type HTMLPurifier_ContentSets
     */
    public $contentSets;

    /**
     * @type HTMLPurifier_AttrCollections
     */
    public $attrCollections;

    /**
     * If set to true, unsafe elements and attributes will be allowed.
     * @type bool
     */
    public $trusted = false;

    public function __construct()
    {
        // editable internal objects
        $this->attrTypes = new HTMLPurifier_AttrTypes();
        $this->doctypes  = new HTMLPurifier_DoctypeRegistry();

        // setup basic modules
        $common = array(
            'CommonAttributes', 'Text', 'Hypertext', 'List',
            'Presentation', 'Edit', 'Bdo', 'Tables', 'Image',
            'StyleAttribute',
            // Unsafe:
            'Scripting', 'Object', 'Forms',
            // Sorta legacy, but present in strict:
            'Name',
        );
        $transitional = array('Legacy', 'Target', 'Iframe');
        $xml = array('XMLCommonAttributes');
        $non_xml = array('NonXMLCommonAttributes');

        // setup basic doctypes
        $this->doctypes->register(
            'HTML 4.01 Transitional',
            false,
            array_merge($common, $transitional, $non_xml),
            array('Tidy_Transitional', 'Tidy_Proprietary'),
            array(),
            '-//W3C//DTD HTML 4.01 Transitional//EN',
            'http://www.w3.org/TR/html4/loose.dtd'
        );

        $this->doctypes->register(
            'HTML 4.01 Strict',
            false,
            array_merge($common, $non_xml),
            array('Tidy_Strict', 'Tidy_Proprietary', 'Tidy_Name'),
            array(),
            '-//W3C//DTD HTML 4.01//EN',
            'http://www.w3.org/TR/html4/strict.dtd'
        );

        $this->doctypes->register(
            'XHTML 1.0 Transitional',
            true,
            array_merge($common, $transitional, $xml, $non_xml),
            array('Tidy_Transitional', 'Tidy_XHTML', 'Tidy_Proprietary', 'Tidy_Name'),
            array(),
            '-//W3C//DTD XHTML 1.0 Transitional//EN',
            'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'
        );

        $this->doctypes->register(
            'XHTML 1.0 Strict',
            true,
            array_merge($common, $xml, $non_xml),
            array('Tidy_Strict', 'Tidy_XHTML', 'Tidy_Strict', 'Tidy_Proprietary', 'Tidy_Name'),
            array(),
            '-//W3C//DTD XHTML 1.0 Strict//EN',
            'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'
        );

        $this->doctypes->register(
            'XHTML 1.1',
            true,
            // Iframe is a real XHTML 1.1 module, despite being
            // "transitional"!
            array_merge($common, $xml, array('Ruby', 'Iframe')),
            array('Tidy_Strict', 'Tidy_XHTML', 'Tidy_Proprietary', 'Tidy_Strict', 'Tidy_Name'), // Tidy_XHTML1_1
            array(),
            '-//W3C//DTD XHTML 1.1//EN',
            'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'
        );

    }

    /**
     * Registers a module to the recognized module list, useful for
     * overloading pre-existing modules.
     * @param $module Mixed: string module name, with or without
     *                HTMLPurifier_HTMLModule prefix, or instance of
     *                subclass of HTMLPurifier_HTMLModule.
     * @param $overload Boolean whether or not to overload previous modules.
     *                  If this is not set, and you do overload a module,
     *                  HTML Purifier will complain with a warning.
     * @note This function will not call autoload, you must instantiate
     *       (and thus invoke) autoload outside the method.
     * @note If a string is passed as a module name, different variants
     *       will be tested in this order:
     *          - Check for HTMLPurifier_HTMLModule_$name
     *          - Check all prefixes with $name in order they were added
     *          - Check for literal object name
     *          - Throw fatal error
     *       If your object name collides with an internal class, specify
     *       your module manually. All modules must have been included
     *       externally: registerModule will not perform inclusions for you!
     */
    public function registerModule($module, $overload = false)
    {
        if (is_string($module)) {
            // attempt to load the module
            $original_module = $module;
            $ok = false;
            foreach ($this->prefixes as $prefix) {
                $module = $prefix . $original_module;
                if (class_exists($module)) {
                    $ok = true;
                    break;
                }
            }
            if (!$ok) {
                $module = $original_module;
                if (!class_exists($module)) {
                    trigger_error(
                        $original_module . ' module does not exist',
                        E_USER_ERROR
                    );
                    return;
                }
            }
            $module = new $module();
        }
        if (empty($module->name)) {
            trigger_error('Module instance of ' . get_class($module) . ' must have name');
            return;
        }
        if (!$overload && isset($this->registeredModules[$module->name])) {
            trigger_error('Overloading ' . $module->name . ' without explicit overload parameter', E_USER_WARNING);
        }
        $this->registeredModules[$module->name] = $module;
    }

    /**
     * Adds a module to the current doctype by first registering it,
     * and then tacking it on to the active doctype
     */
    public function addModule($module)
    {
        $this->registerModule($module);
        if (is_object($module)) {
            $module = $module->name;
        }
        $this->userModules[] = $module;
    }

    /**
     * Adds a class prefix that registerModule() will use to resolve a
     * string name to a concrete class
     */
    public function addPrefix($prefix)
    {
        $this->prefixes[] = $prefix;
    }

    /**
     * Performs processing on modules, after being called you may
     * use getElement() and getElements()
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->trusted = $config->get('HTML.Trusted');

        // generate
        $this->doctype = $this->doctypes->make($config);
        $modules = $this->doctype->modules;

        // take out the default modules that aren't allowed
        $lookup = $config->get('HTML.AllowedModules');
        $special_cases = $config->get('HTML.CoreModules');

        if (is_array($lookup)) {
            foreach ($modules as $k => $m) {
                if (isset($special_cases[$m])) {
                    continue;
                }
                if (!isset($lookup[$m])) {
                    unset($modules[$k]);
                }
            }
        }

        // custom modules
        if ($config->get('HTML.Proprietary')) {
            $modules[] = 'Proprietary';
        }
        if ($config->get('HTML.SafeObject')) {
            $modules[] = 'SafeObject';
        }
        if ($config->get('HTML.SafeEmbed')) {
            $modules[] = 'SafeEmbed';
        }
        if ($config->get('HTML.SafeScripting') !== array()) {
            $modules[] = 'SafeScripting';
        }
        if ($config->get('HTML.Nofollow')) {
            $modules[] = 'Nofollow';
        }
        if ($config->get('HTML.TargetBlank')) {
            $modules[] = 'TargetBlank';
        }
        // NB: HTML.TargetNoreferrer and HTML.TargetNoopener must be AFTER HTML.TargetBlank
        // so that its post-attr-transform gets run afterwards.
        if ($config->get('HTML.TargetNoreferrer')) {
            $modules[] = 'TargetNoreferrer';
        }
        if ($config->get('HTML.TargetNoopener')) {
            $modules[] = 'TargetNoopener';
        }

        // merge in custom modules
        $modules = array_merge($modules, $this->userModules);

        foreach ($modules as $module) {
            $this->processModule($module);
            $this->modules[$module]->setup($config);
        }

        foreach ($this->doctype->tidyModules as $module) {
            $this->processModule($module);
            $this->modules[$module]->setup($config);
        }

        // prepare any injectors
        foreach ($this->modules as $module) {
            $n = array();
            foreach ($module->info_injector as $injector) {
                if (!is_object($injector)) {
                    $class = "HTMLPurifier_Injector_$injector";
                    $injector = new $class;
                }
                $n[$injector->name] = $injector;
            }
            $module->info_injector = $n;
        }

        // setup lookup table based on all valid modules
        foreach ($this->modules as $module) {
            foreach ($module->info as $name => $def) {
                if (!isset($this->elementLookup[$name])) {
                    $this->elementLookup[$name] = array();
                }
                $this->elementLookup[$name][] = $module->name;
            }
        }

        // note the different choice
        $this->contentSets = new HTMLPurifier_ContentSets(
            // content set assembly deals with all possible modules,
            // not just ones deemed to be "safe"
            $this->modules
        );
        $this->attrCollections = new HTMLPurifier_AttrCollections(
            $this->attrTypes,
            // there is no way to directly disable a global attribute,
            // but using AllowedAttributes or simply not including
            // the module in your custom doctype should be sufficient
            $this->modules
        );
    }

    /**
     * Takes a module and adds it to the active module collection,
     * registering it if necessary.
     */
    public function processModule($module)
    {
        if (!isset($this->registeredModules[$module]) || is_object($module)) {
            $this->registerModule($module);
        }
        $this->modules[$module] = $this->registeredModules[$module];
    }

    /**
     * Retrieves merged element definitions.
     * @return Array of HTMLPurifier_ElementDef
     */
    public function getElements()
    {
        $elements = array();
        foreach ($this->modules as $module) {
            if (!$this->trusted && !$module->safe) {
                continue;
            }
            foreach ($module->info as $name => $v) {
                if (isset($elements[$name])) {
                    continue;
                }
                $elements[$name] = $this->getElement($name);
            }
        }

        // remove dud elements, this happens when an element that
        // appeared to be safe actually wasn't
        foreach ($elements as $n => $v) {
            if ($v === false) {
                unset($elements[$n]);
            }
        }

        return $elements;

    }

    /**
     * Retrieves a single merged element definition
     * @param string $name Name of element
     * @param bool $trusted Boolean trusted overriding parameter: set to true
     *                 if you want the full version of an element
     * @return HTMLPurifier_ElementDef Merged HTMLPurifier_ElementDef
     * @note You may notice that modules are getting iterated over twice (once
     *       in getElements() and once here). This
     *       is because
     */
    public function getElement($name, $trusted = null)
    {
        if (!isset($this->elementLookup[$name])) {
            return false;
        }

        // setup global state variables
        $def = false;
        if ($trusted === null) {
            $trusted = $this->trusted;
        }

        // iterate through each module that has registered itself to this
        // element
        foreach ($this->elementLookup[$name] as $module_name) {
            $module = $this->modules[$module_name];

            // refuse to create/merge from a module that is deemed unsafe--
            // pretend the module doesn't exist--when trusted mode is not on.
            if (!$trusted && !$module->safe) {
                continue;
            }

            // clone is used because, ideally speaking, the original
            // definition should not be modified. Usually, this will
            // make no difference, but for consistency's sake
            $new_def = clone $module->info[$name];

            if (!$def && $new_def->standalone) {
                $def = $new_def;
            } elseif ($def) {
                // This will occur even if $new_def is standalone. In practice,
                // this will usually result in a full replacement.
                $def->mergeIn($new_def);
            } else {
                // :TODO:
                // non-standalone definitions that don't have a standalone
                // to merge into could be deferred to the end
                // HOWEVER, it is perfectly valid for a non-standalone
                // definition to lack a standalone definition, even
                // after all processing: this allows us to safely
                // specify extra attributes for elements that may not be
                // enabled all in one place.  In particular, this might
                // be the case for trusted elements.  WARNING: care must
                // be taken that the /extra/ definitions are all safe.
                continue;
            }

            // attribute value expansions
            $this->attrCollections->performInclusions($def->attr);
            $this->attrCollections->expandIdentifiers($def->attr, $this->attrTypes);

            // descendants_are_inline, for ChildDef_Chameleon
            if (is_string($def->content_model) &&
                strpos($def->content_model, 'Inline') !== false) {
                if ($name != 'del' && $name != 'ins') {
                    // this is for you, ins/del
                    $def->descendants_are_inline = true;
                }
            }

            $this->contentSets->generateChildDef($def, $module);
        }

        // This can occur if there is a blank definition, but no base to
        // mix it in with
        if (!$def) {
            return false;
        }

        // add information on required attributes
        foreach ($def->attr as $attr_name => $attr_def) {
            if ($attr_def->required) {
                $def->required_attr[] = $attr_name;
            }
        }
        return $def;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/UnitConverter.php000064400000023622151213255710017271 0ustar00<?php

/**
 * Class for converting between different unit-lengths as specified by
 * CSS.
 */
class HTMLPurifier_UnitConverter
{

    const ENGLISH = 1;
    const METRIC = 2;
    const DIGITAL = 3;

    /**
     * Units information array. Units are grouped into measuring systems
     * (English, Metric), and are assigned an integer representing
     * the conversion factor between that unit and the smallest unit in
     * the system. Numeric indexes are actually magical constants that
     * encode conversion data from one system to the next, with a O(n^2)
     * constraint on memory (this is generally not a problem, since
     * the number of measuring systems is small.)
     */
    protected static $units = array(
        self::ENGLISH => array(
            'px' => 3, // This is as per CSS 2.1 and Firefox. Your mileage may vary
            'pt' => 4,
            'pc' => 48,
            'in' => 288,
            self::METRIC => array('pt', '0.352777778', 'mm'),
        ),
        self::METRIC => array(
            'mm' => 1,
            'cm' => 10,
            self::ENGLISH => array('mm', '2.83464567', 'pt'),
        ),
    );

    /**
     * Minimum bcmath precision for output.
     * @type int
     */
    protected $outputPrecision;

    /**
     * Bcmath precision for internal calculations.
     * @type int
     */
    protected $internalPrecision;

    /**
     * Whether or not BCMath is available.
     * @type bool
     */
    private $bcmath;

    public function __construct($output_precision = 4, $internal_precision = 10, $force_no_bcmath = false)
    {
        $this->outputPrecision = $output_precision;
        $this->internalPrecision = $internal_precision;
        $this->bcmath = !$force_no_bcmath && function_exists('bcmul');
    }

    /**
     * Converts a length object of one unit into another unit.
     * @param HTMLPurifier_Length $length
     *      Instance of HTMLPurifier_Length to convert. You must validate()
     *      it before passing it here!
     * @param string $to_unit
     *      Unit to convert to.
     * @return HTMLPurifier_Length|bool
     * @note
     *      About precision: This conversion function pays very special
     *      attention to the incoming precision of values and attempts
     *      to maintain a number of significant figure. Results are
     *      fairly accurate up to nine digits. Some caveats:
     *          - If a number is zero-padded as a result of this significant
     *            figure tracking, the zeroes will be eliminated.
     *          - If a number contains less than four sigfigs ($outputPrecision)
     *            and this causes some decimals to be excluded, those
     *            decimals will be added on.
     */
    public function convert($length, $to_unit)
    {
        if (!$length->isValid()) {
            return false;
        }

        $n = $length->getN();
        $unit = $length->getUnit();

        if ($n === '0' || $unit === false) {
            return new HTMLPurifier_Length('0', false);
        }

        $state = $dest_state = false;
        foreach (self::$units as $k => $x) {
            if (isset($x[$unit])) {
                $state = $k;
            }
            if (isset($x[$to_unit])) {
                $dest_state = $k;
            }
        }
        if (!$state || !$dest_state) {
            return false;
        }

        // Some calculations about the initial precision of the number;
        // this will be useful when we need to do final rounding.
        $sigfigs = $this->getSigFigs($n);
        if ($sigfigs < $this->outputPrecision) {
            $sigfigs = $this->outputPrecision;
        }

        // BCMath's internal precision deals only with decimals. Use
        // our default if the initial number has no decimals, or increase
        // it by how ever many decimals, thus, the number of guard digits
        // will always be greater than or equal to internalPrecision.
        $log = (int)floor(log(abs($n), 10));
        $cp = ($log < 0) ? $this->internalPrecision - $log : $this->internalPrecision; // internal precision

        for ($i = 0; $i < 2; $i++) {

            // Determine what unit IN THIS SYSTEM we need to convert to
            if ($dest_state === $state) {
                // Simple conversion
                $dest_unit = $to_unit;
            } else {
                // Convert to the smallest unit, pending a system shift
                $dest_unit = self::$units[$state][$dest_state][0];
            }

            // Do the conversion if necessary
            if ($dest_unit !== $unit) {
                $factor = $this->div(self::$units[$state][$unit], self::$units[$state][$dest_unit], $cp);
                $n = $this->mul($n, $factor, $cp);
                $unit = $dest_unit;
            }

            // Output was zero, so bail out early. Shouldn't ever happen.
            if ($n === '') {
                $n = '0';
                $unit = $to_unit;
                break;
            }

            // It was a simple conversion, so bail out
            if ($dest_state === $state) {
                break;
            }

            if ($i !== 0) {
                // Conversion failed! Apparently, the system we forwarded
                // to didn't have this unit. This should never happen!
                return false;
            }

            // Pre-condition: $i == 0

            // Perform conversion to next system of units
            $n = $this->mul($n, self::$units[$state][$dest_state][1], $cp);
            $unit = self::$units[$state][$dest_state][2];
            $state = $dest_state;

            // One more loop around to convert the unit in the new system.

        }

        // Post-condition: $unit == $to_unit
        if ($unit !== $to_unit) {
            return false;
        }

        // Useful for debugging:
        //echo "<pre>n";
        //echo "$n\nsigfigs = $sigfigs\nnew_log = $new_log\nlog = $log\nrp = $rp\n</pre>\n";

        $n = $this->round($n, $sigfigs);
        if (strpos($n, '.') !== false) {
            $n = rtrim($n, '0');
        }
        $n = rtrim($n, '.');

        return new HTMLPurifier_Length($n, $unit);
    }

    /**
     * Returns the number of significant figures in a string number.
     * @param string $n Decimal number
     * @return int number of sigfigs
     */
    public function getSigFigs($n)
    {
        $n = ltrim($n, '0+-');
        $dp = strpos($n, '.'); // decimal position
        if ($dp === false) {
            $sigfigs = strlen(rtrim($n, '0'));
        } else {
            $sigfigs = strlen(ltrim($n, '0.')); // eliminate extra decimal character
            if ($dp !== 0) {
                $sigfigs--;
            }
        }
        return $sigfigs;
    }

    /**
     * Adds two numbers, using arbitrary precision when available.
     * @param string $s1
     * @param string $s2
     * @param int $scale
     * @return string
     */
    private function add($s1, $s2, $scale)
    {
        if ($this->bcmath) {
            return bcadd($s1, $s2, $scale);
        } else {
            return $this->scale((float)$s1 + (float)$s2, $scale);
        }
    }

    /**
     * Multiples two numbers, using arbitrary precision when available.
     * @param string $s1
     * @param string $s2
     * @param int $scale
     * @return string
     */
    private function mul($s1, $s2, $scale)
    {
        if ($this->bcmath) {
            return bcmul($s1, $s2, $scale);
        } else {
            return $this->scale((float)$s1 * (float)$s2, $scale);
        }
    }

    /**
     * Divides two numbers, using arbitrary precision when available.
     * @param string $s1
     * @param string $s2
     * @param int $scale
     * @return string
     */
    private function div($s1, $s2, $scale)
    {
        if ($this->bcmath) {
            return bcdiv($s1, $s2, $scale);
        } else {
            return $this->scale((float)$s1 / (float)$s2, $scale);
        }
    }

    /**
     * Rounds a number according to the number of sigfigs it should have,
     * using arbitrary precision when available.
     * @param float $n
     * @param int $sigfigs
     * @return string
     */
    private function round($n, $sigfigs)
    {
        $new_log = (int)floor(log(abs($n), 10)); // Number of digits left of decimal - 1
        $rp = $sigfigs - $new_log - 1; // Number of decimal places needed
        $neg = $n < 0 ? '-' : ''; // Negative sign
        if ($this->bcmath) {
            if ($rp >= 0) {
                $n = bcadd($n, $neg . '0.' . str_repeat('0', $rp) . '5', $rp + 1);
                $n = bcdiv($n, '1', $rp);
            } else {
                // This algorithm partially depends on the standardized
                // form of numbers that comes out of bcmath.
                $n = bcadd($n, $neg . '5' . str_repeat('0', $new_log - $sigfigs), 0);
                $n = substr($n, 0, $sigfigs + strlen($neg)) . str_repeat('0', $new_log - $sigfigs + 1);
            }
            return $n;
        } else {
            return $this->scale(round($n, $sigfigs - $new_log - 1), $rp + 1);
        }
    }

    /**
     * Scales a float to $scale digits right of decimal point, like BCMath.
     * @param float $r
     * @param int $scale
     * @return string
     */
    private function scale($r, $scale)
    {
        if ($scale < 0) {
            // The f sprintf type doesn't support negative numbers, so we
            // need to cludge things manually. First get the string.
            $r = sprintf('%.0f', (float)$r);
            // Due to floating point precision loss, $r will more than likely
            // look something like 4652999999999.9234. We grab one more digit
            // than we need to precise from $r and then use that to round
            // appropriately.
            $precise = (string)round(substr($r, 0, strlen($r) + $scale), -1);
            // Now we return it, truncating the zero that was rounded off.
            return substr($precise, 0, -1) . str_repeat('0', -$scale + 1);
        }
        return sprintf('%.' . $scale . 'f', (float)$r);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Lexer.php000064400000032363151213255710015543 0ustar00<?php

/**
 * Forgivingly lexes HTML (SGML-style) markup into tokens.
 *
 * A lexer parses a string of SGML-style markup and converts them into
 * corresponding tokens.  It doesn't check for well-formedness, although its
 * internal mechanism may make this automatic (such as the case of
 * HTMLPurifier_Lexer_DOMLex).  There are several implementations to choose
 * from.
 *
 * A lexer is HTML-oriented: it might work with XML, but it's not
 * recommended, as we adhere to a subset of the specification for optimization
 * reasons. This might change in the future. Also, most tokenizers are not
 * expected to handle DTDs or PIs.
 *
 * This class should not be directly instantiated, but you may use create() to
 * retrieve a default copy of the lexer.  Being a supertype, this class
 * does not actually define any implementation, but offers commonly used
 * convenience functions for subclasses.
 *
 * @note The unit tests will instantiate this class for testing purposes, as
 *       many of the utility functions require a class to be instantiated.
 *       This means that, even though this class is not runnable, it will
 *       not be declared abstract.
 *
 * @par
 *
 * @note
 * We use tokens rather than create a DOM representation because DOM would:
 *
 * @par
 *  -# Require more processing and memory to create,
 *  -# Is not streamable, and
 *  -# Has the entire document structure (html and body not needed).
 *
 * @par
 * However, DOM is helpful in that it makes it easy to move around nodes
 * without a lot of lookaheads to see when a tag is closed. This is a
 * limitation of the token system and some workarounds would be nice.
 */
class HTMLPurifier_Lexer
{

    /**
     * Whether or not this lexer implements line-number/column-number tracking.
     * If it does, set to true.
     */
    public $tracksLineNumbers = false;

    /**
     * @since 4.13.1 - https://github.com/MetaSlider/metaslider/issues/494
     */
    private $_entity_parser;

    // -- STATIC ----------------------------------------------------------

    /**
     * Retrieves or sets the default Lexer as a Prototype Factory.
     *
     * By default HTMLPurifier_Lexer_DOMLex will be returned. There are
     * a few exceptions involving special features that only DirectLex
     * implements.
     *
     * @note The behavior of this class has changed, rather than accepting
     *       a prototype object, it now accepts a configuration object.
     *       To specify your own prototype, set %Core.LexerImpl to it.
     *       This change in behavior de-singletonizes the lexer object.
     *
     * @param HTMLPurifier_Config $config
     * @return HTMLPurifier_Lexer
     * @throws HTMLPurifier_Exception
     */
    public static function create($config)
    {
        if (!($config instanceof HTMLPurifier_Config)) {
            $lexer = $config;
            trigger_error(
                "Passing a prototype to
                HTMLPurifier_Lexer::create() is deprecated, please instead
                use %Core.LexerImpl",
                E_USER_WARNING
            );
        } else {
            $lexer = $config->get('Core.LexerImpl');
        }

        $needs_tracking =
            $config->get('Core.MaintainLineNumbers') ||
            $config->get('Core.CollectErrors');

        $inst = null;
        if (is_object($lexer)) {
            $inst = $lexer;
        } else {
            if (is_null($lexer)) {
                do {
                    // auto-detection algorithm
                    if ($needs_tracking) {
                        $lexer = 'DirectLex';
                        break;
                    }

                    if (class_exists('DOMDocument', false) &&
                        method_exists('DOMDocument', 'loadHTML') &&
                        !extension_loaded('domxml')
                    ) {
                        // check for DOM support, because while it's part of the
                        // core, it can be disabled compile time. Also, the PECL
                        // domxml extension overrides the default DOM, and is evil
                        // and nasty and we shan't bother to support it
                        $lexer = 'DOMLex';
                    } else {
                        $lexer = 'DirectLex';
                    }
                } while (0);
            } // do..while so we can break

            // instantiate recognized string names
            switch ($lexer) {
                case 'DOMLex':
                    $inst = new HTMLPurifier_Lexer_DOMLex();
                    break;
                case 'DirectLex':
                    $inst = new HTMLPurifier_Lexer_DirectLex();
                    break;
                case 'PH5P':
                    $inst = new HTMLPurifier_Lexer_PH5P();
                    break;
                default:
                    throw new HTMLPurifier_Exception(
                        "Cannot instantiate unrecognized Lexer type " .
                        htmlspecialchars($lexer)
                    );
            }
        }

        if (!$inst) {
            throw new HTMLPurifier_Exception('No lexer was instantiated');
        }

        // once PHP DOM implements native line numbers, or we
        // hack out something using XSLT, remove this stipulation
        if ($needs_tracking && !$inst->tracksLineNumbers) {
            throw new HTMLPurifier_Exception(
                'Cannot use lexer that does not support line numbers with ' .
                'Core.MaintainLineNumbers or Core.CollectErrors (use DirectLex instead)'
            );
        }

        return $inst;

    }

    // -- CONVENIENCE MEMBERS ---------------------------------------------

    public function __construct()
    {
        $this->_entity_parser = new HTMLPurifier_EntityParser();
    }

    /**
     * Most common entity to raw value conversion table for special entities.
     * @type array
     */
    protected $_special_entity2str =
        array(
            '&quot;' => '"',
            '&amp;' => '&',
            '&lt;' => '<',
            '&gt;' => '>',
            '&#39;' => "'",
            '&#039;' => "'",
            '&#x27;' => "'"
        );

    public function parseText($string, $config) {
        return $this->parseData($string, false, $config);
    }

    public function parseAttr($string, $config) {
        return $this->parseData($string, true, $config);
    }

    /**
     * Parses special entities into the proper characters.
     *
     * This string will translate escaped versions of the special characters
     * into the correct ones.
     *
     * @param string $string String character data to be parsed.
     * @return string Parsed character data.
     */
    public function parseData($string, $is_attr, $config)
    {
        // following functions require at least one character
        if ($string === '') {
            return '';
        }

        // subtracts amps that cannot possibly be escaped
        $num_amp = substr_count($string, '&') - substr_count($string, '& ') -
            ($string[strlen($string) - 1] === '&' ? 1 : 0);

        if (!$num_amp) {
            return $string;
        } // abort if no entities
        $num_esc_amp = substr_count($string, '&amp;');
        $string = strtr($string, $this->_special_entity2str);

        // code duplication for sake of optimization, see above
        $num_amp_2 = substr_count($string, '&') - substr_count($string, '& ') -
            ($string[strlen($string) - 1] === '&' ? 1 : 0);

        if ($num_amp_2 <= $num_esc_amp) {
            return $string;
        }

        // hmm... now we have some uncommon entities. Use the callback.
        if ($config->get('Core.LegacyEntityDecoder')) {
            $string = $this->_entity_parser->substituteSpecialEntities($string);
        } else {
            if ($is_attr) {
                $string = $this->_entity_parser->substituteAttrEntities($string);
            } else {
                $string = $this->_entity_parser->substituteTextEntities($string);
            }
        }
        return $string;
    }

    /**
     * Lexes an HTML string into tokens.
     * @param $string String HTML.
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token[] array representation of HTML.
     */
    public function tokenizeHTML($string, $config, $context)
    {
        trigger_error('Call to abstract class', E_USER_ERROR);
    }

    /**
     * Translates CDATA sections into regular sections (through escaping).
     * @param string $string HTML string to process.
     * @return string HTML with CDATA sections escaped.
     */
    protected static function escapeCDATA($string)
    {
        return preg_replace_callback(
            '/<!\[CDATA\[(.+?)\]\]>/s',
            array('HTMLPurifier_Lexer', 'CDATACallback'),
            $string
        );
    }

    /**
     * Special CDATA case that is especially convoluted for <script>
     * @param string $string HTML string to process.
     * @return string HTML with CDATA sections escaped.
     */
    protected static function escapeCommentedCDATA($string)
    {
        return preg_replace_callback(
            '#<!--//--><!\[CDATA\[//><!--(.+?)//--><!\]\]>#s',
            array('HTMLPurifier_Lexer', 'CDATACallback'),
            $string
        );
    }

    /**
     * Special Internet Explorer conditional comments should be removed.
     * @param string $string HTML string to process.
     * @return string HTML with conditional comments removed.
     */
    protected static function removeIEConditional($string)
    {
        return preg_replace(
            '#<!--\[if [^>]+\]>.*?<!\[endif\]-->#si', // probably should generalize for all strings
            '',
            $string
        );
    }

    /**
     * Callback function for escapeCDATA() that does the work.
     *
     * @warning Though this is public in order to let the callback happen,
     *          calling it directly is not recommended.
     * @param array $matches PCRE matches array, with index 0 the entire match
     *                  and 1 the inside of the CDATA section.
     * @return string Escaped internals of the CDATA section.
     */
    protected static function CDATACallback($matches)
    {
        // not exactly sure why the character set is needed, but whatever
        return htmlspecialchars($matches[1], ENT_COMPAT, 'UTF-8');
    }

    /**
     * Takes a piece of HTML and normalizes it by converting entities, fixing
     * encoding, extracting bits, and other good stuff.
     * @param string $html HTML.
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     * @todo Consider making protected
     */
    public function normalize($html, $config, $context)
    {
        // normalize newlines to \n
        if ($config->get('Core.NormalizeNewlines')) {
            $html = str_replace("\r\n", "\n", $html);
            $html = str_replace("\r", "\n", $html);
        }

        if ($config->get('HTML.Trusted')) {
            // escape convoluted CDATA
            $html = $this->escapeCommentedCDATA($html);
        }

        // escape CDATA
        $html = $this->escapeCDATA($html);

        $html = $this->removeIEConditional($html);

        // extract body from document if applicable
        if ($config->get('Core.ConvertDocumentToFragment')) {
            $e = false;
            if ($config->get('Core.CollectErrors')) {
                $e =& $context->get('ErrorCollector');
            }
            $new_html = $this->extractBody($html);
            if ($e && $new_html != $html) {
                $e->send(E_WARNING, 'Lexer: Extracted body');
            }
            $html = $new_html;
        }

        // expand entities that aren't the big five
        if ($config->get('Core.LegacyEntityDecoder')) {
            $html = $this->_entity_parser->substituteNonSpecialEntities($html);
        }

        // clean into wellformed UTF-8 string for an SGML context: this has
        // to be done after entity expansion because the entities sometimes
        // represent non-SGML characters (horror, horror!)
        $html = HTMLPurifier_Encoder::cleanUTF8($html);

        // if processing instructions are to removed, remove them now
        if ($config->get('Core.RemoveProcessingInstructions')) {
            $html = preg_replace('#<\?.+?\?>#s', '', $html);
        }

        $hidden_elements = $config->get('Core.HiddenElements');
        if ($config->get('Core.AggressivelyRemoveScript') &&
            !($config->get('HTML.Trusted') || !$config->get('Core.RemoveScriptContents')
            || empty($hidden_elements["script"]))) {
            $html = preg_replace('#<script[^>]*>.*?</script>#i', '', $html);
        }

        return $html;
    }

    /**
     * Takes a string of HTML (fragment or document) and returns the content
     * @todo Consider making protected
     */
    public function extractBody($html)
    {
        $matches = array();
        $result = preg_match('|(.*?)<body[^>]*>(.*)</body>|is', $html, $matches);
        if ($result) {
            // Make sure it's not in a comment
            $comment_start = strrpos($matches[1], '<!--');
            $comment_end   = strrpos($matches[1], '-->');
            if ($comment_start === false ||
                ($comment_end !== false && $comment_end > $comment_start)) {
                return $matches[2];
            }
        }
        return $html;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URI.php000064400000024544151213255710015125 0ustar00<?php

/**
 * HTML Purifier's internal representation of a URI.
 * @note
 *      Internal data-structures are completely escaped. If the data needs
 *      to be used in a non-URI context (which is very unlikely), be sure
 *      to decode it first. The URI may not necessarily be well-formed until
 *      validate() is called.
 */
class HTMLPurifier_URI
{
    /**
     * @type string
     */
    public $scheme;

    /**
     * @type string
     */
    public $userinfo;

    /**
     * @type string
     */
    public $host;

    /**
     * @type int
     */
    public $port;

    /**
     * @type string
     */
    public $path;

    /**
     * @type string
     */
    public $query;

    /**
     * @type string
     */
    public $fragment;

    /**
     * @param string $scheme
     * @param string $userinfo
     * @param string $host
     * @param int $port
     * @param string $path
     * @param string $query
     * @param string $fragment
     * @note Automatically normalizes scheme and port
     */
    public function __construct($scheme, $userinfo, $host, $port, $path, $query, $fragment)
    {
        $this->scheme = is_null($scheme) || ctype_lower($scheme) ? $scheme : strtolower($scheme);
        $this->userinfo = $userinfo;
        $this->host = $host;
        $this->port = is_null($port) ? $port : (int)$port;
        $this->path = $path;
        $this->query = $query;
        $this->fragment = $fragment;
    }

    /**
     * Retrieves a scheme object corresponding to the URI's scheme/default
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_URIScheme Scheme object appropriate for validating this URI
     */
    public function getSchemeObj($config, $context)
    {
        $registry = HTMLPurifier_URISchemeRegistry::instance();
        if ($this->scheme !== null) {
            $scheme_obj = $registry->getScheme($this->scheme, $config, $context);
            if (!$scheme_obj) {
                return false;
            } // invalid scheme, clean it out
        } else {
            // no scheme: retrieve the default one
            $def = $config->getDefinition('URI');
            $scheme_obj = $def->getDefaultScheme($config, $context);
            if (!$scheme_obj) {
                if ($def->defaultScheme !== null) {
                    // something funky happened to the default scheme object
                    trigger_error(
                        'Default scheme object "' . $def->defaultScheme . '" was not readable',
                        E_USER_WARNING
                    );
                } // suppress error if it's null
                return false;
            }
        }
        return $scheme_obj;
    }

    /**
     * Generic validation method applicable for all schemes. May modify
     * this URI in order to get it into a compliant form.
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool True if validation/filtering succeeds, false if failure
     */
    public function validate($config, $context)
    {
        // ABNF definitions from RFC 3986
        $chars_sub_delims = '!$&\'()*+,;=';
        $chars_gen_delims = ':/?#[]@';
        $chars_pchar = $chars_sub_delims . ':@';

        // validate host
        if (!is_null($this->host)) {
            $host_def = new HTMLPurifier_AttrDef_URI_Host();
            $this->host = $host_def->validate($this->host, $config, $context);
            if ($this->host === false) {
                $this->host = null;
            }
        }

        // validate scheme
        // NOTE: It's not appropriate to check whether or not this
        // scheme is in our registry, since a URIFilter may convert a
        // URI that we don't allow into one we do.  So instead, we just
        // check if the scheme can be dropped because there is no host
        // and it is our default scheme.
        if (!is_null($this->scheme) && is_null($this->host) || $this->host === '') {
            // support for relative paths is pretty abysmal when the
            // scheme is present, so axe it when possible
            $def = $config->getDefinition('URI');
            if ($def->defaultScheme === $this->scheme) {
                $this->scheme = null;
            }
        }

        // validate username
        if (!is_null($this->userinfo)) {
            $encoder = new HTMLPurifier_PercentEncoder($chars_sub_delims . ':');
            $this->userinfo = $encoder->encode($this->userinfo);
        }

        // validate port
        if (!is_null($this->port)) {
            if ($this->port < 1 || $this->port > 65535) {
                $this->port = null;
            }
        }

        // validate path
        $segments_encoder = new HTMLPurifier_PercentEncoder($chars_pchar . '/');
        if (!is_null($this->host)) { // this catches $this->host === ''
            // path-abempty (hier and relative)
            // http://www.example.com/my/path
            // //www.example.com/my/path (looks odd, but works, and
            //                            recognized by most browsers)
            // (this set is valid or invalid on a scheme by scheme
            // basis, so we'll deal with it later)
            // file:///my/path
            // ///my/path
            $this->path = $segments_encoder->encode($this->path);
        } elseif ($this->path !== '') {
            if ($this->path[0] === '/') {
                // path-absolute (hier and relative)
                // http:/my/path
                // /my/path
                if (strlen($this->path) >= 2 && $this->path[1] === '/') {
                    // This could happen if both the host gets stripped
                    // out
                    // http://my/path
                    // //my/path
                    $this->path = '';
                } else {
                    $this->path = $segments_encoder->encode($this->path);
                }
            } elseif (!is_null($this->scheme)) {
                // path-rootless (hier)
                // http:my/path
                // Short circuit evaluation means we don't need to check nz
                $this->path = $segments_encoder->encode($this->path);
            } else {
                // path-noscheme (relative)
                // my/path
                // (once again, not checking nz)
                $segment_nc_encoder = new HTMLPurifier_PercentEncoder($chars_sub_delims . '@');
                $c = strpos($this->path, '/');
                if ($c !== false) {
                    $this->path =
                        $segment_nc_encoder->encode(substr($this->path, 0, $c)) .
                        $segments_encoder->encode(substr($this->path, $c));
                } else {
                    $this->path = $segment_nc_encoder->encode($this->path);
                }
            }
        } else {
            // path-empty (hier and relative)
            $this->path = ''; // just to be safe
        }

        // qf = query and fragment
        $qf_encoder = new HTMLPurifier_PercentEncoder($chars_pchar . '/?');

        if (!is_null($this->query)) {
            $this->query = $qf_encoder->encode($this->query);
        }

        if (!is_null($this->fragment)) {
            $this->fragment = $qf_encoder->encode($this->fragment);
        }
        return true;
    }

    /**
     * Convert URI back to string
     * @return string URI appropriate for output
     */
    public function toString()
    {
        // reconstruct authority
        $authority = null;
        // there is a rendering difference between a null authority
        // (http:foo-bar) and an empty string authority
        // (http:///foo-bar).
        if (!is_null($this->host)) {
            $authority = '';
            if (!is_null($this->userinfo)) {
                $authority .= $this->userinfo . '@';
            }
            $authority .= $this->host;
            if (!is_null($this->port)) {
                $authority .= ':' . $this->port;
            }
        }

        // Reconstruct the result
        // One might wonder about parsing quirks from browsers after
        // this reconstruction.  Unfortunately, parsing behavior depends
        // on what *scheme* was employed (file:///foo is handled *very*
        // differently than http:///foo), so unfortunately we have to
        // defer to the schemes to do the right thing.
        $result = '';
        if (!is_null($this->scheme)) {
            $result .= $this->scheme . ':';
        }
        if (!is_null($authority)) {
            $result .= '//' . $authority;
        }
        $result .= $this->path;
        if (!is_null($this->query)) {
            $result .= '?' . $this->query;
        }
        if (!is_null($this->fragment)) {
            $result .= '#' . $this->fragment;
        }

        return $result;
    }

    /**
     * Returns true if this URL might be considered a 'local' URL given
     * the current context.  This is true when the host is null, or
     * when it matches the host supplied to the configuration.
     *
     * Note that this does not do any scheme checking, so it is mostly
     * only appropriate for metadata that doesn't care about protocol
     * security.  isBenign is probably what you actually want.
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function isLocal($config, $context)
    {
        if ($this->host === null) {
            return true;
        }
        $uri_def = $config->getDefinition('URI');
        if ($uri_def->host === $this->host) {
            return true;
        }
        return false;
    }

    /**
     * Returns true if this URL should be considered a 'benign' URL,
     * that is:
     *
     *      - It is a local URL (isLocal), and
     *      - It has a equal or better level of security
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function isBenign($config, $context)
    {
        if (!$this->isLocal($config, $context)) {
            return false;
        }

        $scheme_obj = $this->getSchemeObj($config, $context);
        if (!$scheme_obj) {
            return false;
        } // conservative approach

        $current_scheme_obj = $config->getDefinition('URI')->getDefaultScheme($config, $context);
        if ($current_scheme_obj->secure) {
            if (!$scheme_obj->secure) {
                return false;
            }
        }
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/VarParserException.php000064400000000235151213255710020241 0ustar00<?php

/**
 * Exception type for HTMLPurifier_VarParser
 */
class HTMLPurifier_VarParserException extends HTMLPurifier_Exception
{

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Context.php000064400000005112151213255710016100 0ustar00<?php

/**
 * Registry object that contains information about the current context.
 * @warning Is a bit buggy when variables are set to null: it thinks
 *          they don't exist! So use false instead, please.
 * @note Since the variables Context deals with may not be objects,
 *       references are very important here! Do not remove!
 */
class HTMLPurifier_Context
{

    /**
     * Private array that stores the references.
     * @type array
     */
    private $_storage = array();

    /**
     * Registers a variable into the context.
     * @param string $name String name
     * @param mixed $ref Reference to variable to be registered
     */
    public function register($name, &$ref)
    {
        if (array_key_exists($name, $this->_storage)) {
            trigger_error(
                "Name $name produces collision, cannot re-register",
                E_USER_ERROR
            );
            return;
        }
        $this->_storage[$name] =& $ref;
    }

    /**
     * Retrieves a variable reference from the context.
     * @param string $name String name
     * @param bool $ignore_error Boolean whether or not to ignore error
     * @return mixed
     */
    public function &get($name, $ignore_error = false)
    {
        if (!array_key_exists($name, $this->_storage)) {
            if (!$ignore_error) {
                trigger_error(
                    "Attempted to retrieve non-existent variable $name",
                    E_USER_ERROR
                );
            }
            $var = null; // so we can return by reference
            return $var;
        }
        return $this->_storage[$name];
    }

    /**
     * Destroys a variable in the context.
     * @param string $name String name
     */
    public function destroy($name)
    {
        if (!array_key_exists($name, $this->_storage)) {
            trigger_error(
                "Attempted to destroy non-existent variable $name",
                E_USER_ERROR
            );
            return;
        }
        unset($this->_storage[$name]);
    }

    /**
     * Checks whether or not the variable exists.
     * @param string $name String name
     * @return bool
     */
    public function exists($name)
    {
        return array_key_exists($name, $this->_storage);
    }

    /**
     * Loads a series of variables from an associative array
     * @param array $context_array Assoc array of variables to load
     */
    public function loadArray($context_array)
    {
        foreach ($context_array as $key => $discard) {
            $this->register($key, $context_array[$key]);
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Node.php000064400000002400151213255720015337 0ustar00<?php

/**
 * Abstract base node class that all others inherit from.
 *
 * Why do we not use the DOM extension?  (1) It is not always available,
 * (2) it has funny constraints on the data it can represent,
 * whereas we want a maximally flexible representation, and (3) its
 * interface is a bit cumbersome.
 */
abstract class HTMLPurifier_Node
{
    /**
     * Line number of the start token in the source document
     * @type int
     */
    public $line;

    /**
     * Column number of the start token in the source document. Null if unknown.
     * @type int
     */
    public $col;

    /**
     * Lookup array of processing that this token is exempt from.
     * Currently, valid values are "ValidateAttributes".
     * @type array
     */
    public $armor = array();

    /**
     * When true, this node should be ignored as non-existent.
     *
     * Who is responsible for ignoring dead nodes?  FixNesting is
     * responsible for removing them before passing on to child
     * validators.
     */
    public $dead = false;

    /**
     * Returns a pair of start and end tokens, where the end token
     * is null if it is not necessary. Does not include children.
     * @type array
     */
    abstract public function toTokenPair();
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter.php000064400000004475151213255720016275 0ustar00<?php

/**
 * Chainable filters for custom URI processing.
 *
 * These filters can perform custom actions on a URI filter object,
 * including transformation or blacklisting.  A filter named Foo
 * must have a corresponding configuration directive %URI.Foo,
 * unless always_load is specified to be true.
 *
 * The following contexts may be available while URIFilters are being
 * processed:
 *
 *      - EmbeddedURI: true if URI is an embedded resource that will
 *        be loaded automatically on page load
 *      - CurrentToken: a reference to the token that is currently
 *        being processed
 *      - CurrentAttr: the name of the attribute that is currently being
 *        processed
 *      - CurrentCSSProperty: the name of the CSS property that is
 *        currently being processed (if applicable)
 *
 * @warning This filter is called before scheme object validation occurs.
 *          Make sure, if you require a specific scheme object, you
 *          you check that it exists. This allows filters to convert
 *          proprietary URI schemes into regular ones.
 */
abstract class HTMLPurifier_URIFilter
{

    /**
     * Unique identifier of filter.
     * @type string
     */
    public $name;

    /**
     * True if this filter should be run after scheme validation.
     * @type bool
     */
    public $post = false;

    /**
     * True if this filter should always be loaded.
     * This permits a filter to be named Foo without the corresponding
     * %URI.Foo directive existing.
     * @type bool
     */
    public $always_load = false;

    /**
     * Performs initialization for the filter.  If the filter returns
     * false, this means that it shouldn't be considered active.
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function prepare($config)
    {
        return true;
    }

    /**
     * Filter a URI object
     * @param HTMLPurifier_URI $uri Reference to URI object variable
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool Whether or not to continue processing: false indicates
     *         URL is no good, true indicates continue processing. Note that
     *         all changes are committed directly on the URI object
     */
    abstract public function filter(&$uri, $config, $context);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/IDAccumulator.php000064400000003157151213255720017160 0ustar00<?php

/**
 * Component of HTMLPurifier_AttrContext that accumulates IDs to prevent dupes
 * @note In Slashdot-speak, dupe means duplicate.
 * @note The default constructor does not accept $config or $context objects:
 *       use must use the static build() factory method to perform initialization.
 */
class HTMLPurifier_IDAccumulator
{

    /**
     * Lookup table of IDs we've accumulated.
     * @public
     */
    public $ids = array();

    /**
     * Builds an IDAccumulator, also initializing the default blacklist
     * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config
     * @param HTMLPurifier_Context $context Instance of HTMLPurifier_Context
     * @return HTMLPurifier_IDAccumulator Fully initialized HTMLPurifier_IDAccumulator
     */
    public static function build($config, $context)
    {
        $id_accumulator = new HTMLPurifier_IDAccumulator();
        $id_accumulator->load($config->get('Attr.IDBlacklist'));
        return $id_accumulator;
    }

    /**
     * Add an ID to the lookup table.
     * @param string $id ID to be added.
     * @return bool status, true if success, false if there's a dupe
     */
    public function add($id)
    {
        if (isset($this->ids[$id])) {
            return false;
        }
        return $this->ids[$id] = true;
    }

    /**
     * Load a list of IDs into the lookup table
     * @param $array_of_ids Array of IDs to load
     * @note This function doesn't care about duplicates
     */
    public function load($array_of_ids)
    {
        foreach ($array_of_ids as $id) {
            $this->ids[$id] = true;
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php000064400000002404151213255720021331 0ustar00<?php

class HTMLPurifier_URIFilter_DisableExternal extends HTMLPurifier_URIFilter
{
    /**
     * @type string
     */
    public $name = 'DisableExternal';

    /**
     * @type array
     */
    protected $ourHostParts = false;

    /**
     * @param HTMLPurifier_Config $config
     * @return void
     */
    public function prepare($config)
    {
        $our_host = $config->getDefinition('URI')->host;
        if ($our_host !== null) {
            $this->ourHostParts = array_reverse(explode('.', $our_host));
        }
    }

    /**
     * @param HTMLPurifier_URI $uri Reference
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function filter(&$uri, $config, $context)
    {
        if (is_null($uri->host)) {
            return true;
        }
        if ($this->ourHostParts === false) {
            return false;
        }
        $host_parts = array_reverse(explode('.', $uri->host));
        foreach ($this->ourHostParts as $i => $x) {
            if (!isset($host_parts[$i])) {
                return false;
            }
            if ($host_parts[$i] != $this->ourHostParts[$i]) {
                return false;
            }
        }
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php000064400000003262151213255720020270 0ustar00<?php

/**
 * Implements safety checks for safe iframes.
 *
 * @warning This filter is *critical* for ensuring that %HTML.SafeIframe
 * works safely.
 */
class HTMLPurifier_URIFilter_SafeIframe extends HTMLPurifier_URIFilter
{
    /**
     * @type string
     */
    public $name = 'SafeIframe';

    /**
     * @type bool
     */
    public $always_load = true;

    /**
     * @type string
     */
    protected $regexp = null;

    // XXX: The not so good bit about how this is all set up now is we
    // can't check HTML.SafeIframe in the 'prepare' step: we have to
    // defer till the actual filtering.
    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function prepare($config)
    {
        $this->regexp = $config->get('URI.SafeIframeRegexp');
        return true;
    }

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function filter(&$uri, $config, $context)
    {
        // check if filter not applicable
        if (!$config->get('HTML.SafeIframe')) {
            return true;
        }
        // check if the filter should actually trigger
        if (!$context->get('EmbeddedURI', true)) {
            return true;
        }
        $token = $context->get('CurrentToken', true);
        if (!($token && $token->name == 'iframe')) {
            return true;
        }
        // check if we actually have some whitelists enabled
        if ($this->regexp === null) {
            return false;
        }
        // actually check the whitelists
        return preg_match($this->regexp, $uri->toString());
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php000064400000006103151213255720017336 0ustar00<?php

class HTMLPurifier_URIFilter_Munge extends HTMLPurifier_URIFilter
{
    /**
     * @type string
     */
    public $name = 'Munge';

    /**
     * @type bool
     */
    public $post = true;

    /**
     * @type string
     */
    private $target;

    /**
     * @type HTMLPurifier_URIParser
     */
    private $parser;

    /**
     * @type bool
     */
    private $doEmbed;

    /**
     * @type string
     */
    private $secretKey;

    /**
     * @type array
     */
    protected $replace = array();

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function prepare($config)
    {
        $this->target = $config->get('URI.' . $this->name);
        $this->parser = new HTMLPurifier_URIParser();
        $this->doEmbed = $config->get('URI.MungeResources');
        $this->secretKey = $config->get('URI.MungeSecretKey');
        if ($this->secretKey && !function_exists('hash_hmac')) {
            throw new Exception("Cannot use %URI.MungeSecretKey without hash_hmac support.");
        }
        return true;
    }

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function filter(&$uri, $config, $context)
    {
        if ($context->get('EmbeddedURI', true) && !$this->doEmbed) {
            return true;
        }

        $scheme_obj = $uri->getSchemeObj($config, $context);
        if (!$scheme_obj) {
            return true;
        } // ignore unknown schemes, maybe another postfilter did it
        if (!$scheme_obj->browsable) {
            return true;
        } // ignore non-browseable schemes, since we can't munge those in a reasonable way
        if ($uri->isBenign($config, $context)) {
            return true;
        } // don't redirect if a benign URL

        $this->makeReplace($uri, $config, $context);
        $this->replace = array_map('rawurlencode', $this->replace);

        $new_uri = strtr($this->target, $this->replace);
        $new_uri = $this->parser->parse($new_uri);
        // don't redirect if the target host is the same as the
        // starting host
        if ($uri->host === $new_uri->host) {
            return true;
        }
        $uri = $new_uri; // overwrite
        return true;
    }

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     */
    protected function makeReplace($uri, $config, $context)
    {
        $string = $uri->toString();
        // always available
        $this->replace['%s'] = $string;
        $this->replace['%r'] = $context->get('EmbeddedURI', true);
        $token = $context->get('CurrentToken', true);
        $this->replace['%n'] = $token ? $token->name : null;
        $this->replace['%m'] = $context->get('CurrentAttr', true);
        $this->replace['%p'] = $context->get('CurrentCSSProperty', true);
        // not always available
        if ($this->secretKey) {
            $this->replace['%t'] = hash_hmac("sha256", $string, $this->secretKey);
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php000064400000011541151213255720020641 0ustar00<?php

// does not support network paths

class HTMLPurifier_URIFilter_MakeAbsolute extends HTMLPurifier_URIFilter
{
    /**
     * @type string
     */
    public $name = 'MakeAbsolute';

    /**
     * @type
     */
    protected $base;

    /**
     * @type array
     */
    protected $basePathStack = array();

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function prepare($config)
    {
        $def = $config->getDefinition('URI');
        $this->base = $def->base;
        if (is_null($this->base)) {
            trigger_error(
                'URI.MakeAbsolute is being ignored due to lack of ' .
                'value for URI.Base configuration',
                E_USER_WARNING
            );
            return false;
        }
        $this->base->fragment = null; // fragment is invalid for base URI
        $stack = explode('/', $this->base->path);
        array_pop($stack); // discard last segment
        $stack = $this->_collapseStack($stack); // do pre-parsing
        $this->basePathStack = $stack;
        return true;
    }

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function filter(&$uri, $config, $context)
    {
        if (is_null($this->base)) {
            return true;
        } // abort early
        if ($uri->path === '' && is_null($uri->scheme) &&
            is_null($uri->host) && is_null($uri->query) && is_null($uri->fragment)) {
            // reference to current document
            $uri = clone $this->base;
            return true;
        }
        if (!is_null($uri->scheme)) {
            // absolute URI already: don't change
            if (!is_null($uri->host)) {
                return true;
            }
            $scheme_obj = $uri->getSchemeObj($config, $context);
            if (!$scheme_obj) {
                // scheme not recognized
                return false;
            }
            if (!$scheme_obj->hierarchical) {
                // non-hierarchal URI with explicit scheme, don't change
                return true;
            }
            // special case: had a scheme but always is hierarchical and had no authority
        }
        if (!is_null($uri->host)) {
            // network path, don't bother
            return true;
        }
        if ($uri->path === '') {
            $uri->path = $this->base->path;
        } elseif ($uri->path[0] !== '/') {
            // relative path, needs more complicated processing
            $stack = explode('/', $uri->path);
            $new_stack = array_merge($this->basePathStack, $stack);
            if ($new_stack[0] !== '' && !is_null($this->base->host)) {
                array_unshift($new_stack, '');
            }
            $new_stack = $this->_collapseStack($new_stack);
            $uri->path = implode('/', $new_stack);
        } else {
            // absolute path, but still we should collapse
            $uri->path = implode('/', $this->_collapseStack(explode('/', $uri->path)));
        }
        // re-combine
        $uri->scheme = $this->base->scheme;
        if (is_null($uri->userinfo)) {
            $uri->userinfo = $this->base->userinfo;
        }
        if (is_null($uri->host)) {
            $uri->host = $this->base->host;
        }
        if (is_null($uri->port)) {
            $uri->port = $this->base->port;
        }
        return true;
    }

    /**
     * Resolve dots and double-dots in a path stack
     * @param array $stack
     * @return array
     */
    private function _collapseStack($stack)
    {
        $result = array();
        $is_folder = false;
        for ($i = 0; isset($stack[$i]); $i++) {
            $is_folder = false;
            // absorb an internally duplicated slash
            if ($stack[$i] == '' && $i && isset($stack[$i + 1])) {
                continue;
            }
            if ($stack[$i] == '..') {
                if (!empty($result)) {
                    $segment = array_pop($result);
                    if ($segment === '' && empty($result)) {
                        // error case: attempted to back out too far:
                        // restore the leading slash
                        $result[] = '';
                    } elseif ($segment === '..') {
                        $result[] = '..'; // cannot remove .. with ..
                    }
                } else {
                    // relative path, preserve the double-dots
                    $result[] = '..';
                }
                $is_folder = true;
                continue;
            }
            if ($stack[$i] == '.') {
                // silently absorb
                $is_folder = true;
                continue;
            }
            $result[] = $stack[$i];
        }
        if ($is_folder) {
            $result[] = '';
        }
        return $result;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php000064400000000716151213255720021525 0ustar00<?php

class HTMLPurifier_URIFilter_DisableResources extends HTMLPurifier_URIFilter
{
    /**
     * @type string
     */
    public $name = 'DisableResources';

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function filter(&$uri, $config, $context)
    {
        return !$context->get('EmbeddedURI', true);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php000064400000001110151213255720023215 0ustar00<?php

class HTMLPurifier_URIFilter_DisableExternalResources extends HTMLPurifier_URIFilter_DisableExternal
{
    /**
     * @type string
     */
    public $name = 'DisableExternalResources';

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function filter(&$uri, $config, $context)
    {
        if (!$context->get('EmbeddedURI', true)) {
            return true;
        }
        return parent::filter($uri, $config, $context);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php000064400000002200151213255720021023 0ustar00<?php

// It's not clear to me whether or not Punycode means that hostnames
// do not have canonical forms anymore. As far as I can tell, it's
// not a problem (punycoding should be identity when no Unicode
// points are involved), but I'm not 100% sure
class HTMLPurifier_URIFilter_HostBlacklist extends HTMLPurifier_URIFilter
{
    /**
     * @type string
     */
    public $name = 'HostBlacklist';

    /**
     * @type array
     */
    protected $blacklist = array();

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function prepare($config)
    {
        $this->blacklist = $config->get('URI.HostBlacklist');
        return true;
    }

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function filter(&$uri, $config, $context)
    {
        foreach ($this->blacklist as $blacklisted_host_fragment) {
            if (strpos($uri->host, $blacklisted_host_fragment) !== false) {
                return false;
            }
        }
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/TagTransform.php000064400000002112151213255720017061 0ustar00<?php

/**
 * Defines a mutation of an obsolete tag into a valid tag.
 */
abstract class HTMLPurifier_TagTransform
{

    /**
     * Tag name to transform the tag to.
     * @type string
     */
    public $transform_to;

    /**
     * Transforms the obsolete tag into the valid tag.
     * @param HTMLPurifier_Token_Tag $tag Tag to be transformed.
     * @param HTMLPurifier_Config $config Mandatory HTMLPurifier_Config object
     * @param HTMLPurifier_Context $context Mandatory HTMLPurifier_Context object
     */
    abstract public function transform($tag, $config, $context);

    /**
     * Prepends CSS properties to the style attribute, creating the
     * attribute if it doesn't exist.
     * @warning Copied over from AttrTransform, be sure to keep in sync
     * @param array $attr Attribute array to process (passed by reference)
     * @param string $css CSS to prepend
     */
    protected function prependCSS(&$attr, $css)
    {
        $attr['style'] = isset($attr['style']) ? $attr['style'] : '';
        $attr['style'] = $css . $attr['style'];
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef.php000064400000012113151213255720016005 0ustar00<?php

/**
 * Base class for all validating attribute definitions.
 *
 * This family of classes forms the core for not only HTML attribute validation,
 * but also any sort of string that needs to be validated or cleaned (which
 * means CSS properties and composite definitions are defined here too).
 * Besides defining (through code) what precisely makes the string valid,
 * subclasses are also responsible for cleaning the code if possible.
 */

abstract class HTMLPurifier_AttrDef
{

    /**
     * Tells us whether or not an HTML attribute is minimized.
     * Has no meaning in other contexts.
     * @type bool
     */
    public $minimized = false;

    /**
     * Tells us whether or not an HTML attribute is required.
     * Has no meaning in other contexts
     * @type bool
     */
    public $required = false;

    /**
     * Validates and cleans passed string according to a definition.
     *
     * @param string $string String to be validated and cleaned.
     * @param HTMLPurifier_Config $config Mandatory HTMLPurifier_Config object.
     * @param HTMLPurifier_Context $context Mandatory HTMLPurifier_Context object.
     */
    abstract public function validate($string, $config, $context);

    /**
     * Convenience method that parses a string as if it were CDATA.
     *
     * This method process a string in the manner specified at
     * <http://www.w3.org/TR/html4/types.html#h-6.2> by removing
     * leading and trailing whitespace, ignoring line feeds, and replacing
     * carriage returns and tabs with spaces.  While most useful for HTML
     * attributes specified as CDATA, it can also be applied to most CSS
     * values.
     *
     * @note This method is not entirely standards compliant, as trim() removes
     *       more types of whitespace than specified in the spec. In practice,
     *       this is rarely a problem, as those extra characters usually have
     *       already been removed by HTMLPurifier_Encoder.
     *
     * @warning This processing is inconsistent with XML's whitespace handling
     *          as specified by section 3.3.3 and referenced XHTML 1.0 section
     *          4.7.  However, note that we are NOT necessarily
     *          parsing XML, thus, this behavior may still be correct. We
     *          assume that newlines have been normalized.
     */
    public function parseCDATA($string)
    {
        $string = trim($string);
        $string = str_replace(array("\n", "\t", "\r"), ' ', $string);
        return $string;
    }

    /**
     * Factory method for creating this class from a string.
     * @param string $string String construction info
     * @return HTMLPurifier_AttrDef Created AttrDef object corresponding to $string
     */
    public function make($string)
    {
        // default implementation, return a flyweight of this object.
        // If $string has an effect on the returned object (i.e. you
        // need to overload this method), it is best
        // to clone or instantiate new copies. (Instantiation is safer.)
        return $this;
    }

    /**
     * Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work
     * properly. THIS IS A HACK!
     * @param string $string a CSS colour definition
     * @return string
     */
    protected function mungeRgb($string)
    {
        $p = '\s*(\d+(\.\d+)?([%]?))\s*';

        if (preg_match('/(rgba|hsla)\(/', $string)) {
            return preg_replace('/(rgba|hsla)\('.$p.','.$p.','.$p.','.$p.'\)/', '\1(\2,\5,\8,\11)', $string);
        }

        return preg_replace('/(rgb|hsl)\('.$p.','.$p.','.$p.'\)/', '\1(\2,\5,\8)', $string);
    }

    /**
     * Parses a possibly escaped CSS string and returns the "pure"
     * version of it.
     */
    protected function expandCSSEscape($string)
    {
        // flexibly parse it
        $ret = '';
        for ($i = 0, $c = strlen($string); $i < $c; $i++) {
            if ($string[$i] === '\\') {
                $i++;
                if ($i >= $c) {
                    $ret .= '\\';
                    break;
                }
                if (ctype_xdigit($string[$i])) {
                    $code = $string[$i];
                    for ($a = 1, $i++; $i < $c && $a < 6; $i++, $a++) {
                        if (!ctype_xdigit($string[$i])) {
                            break;
                        }
                        $code .= $string[$i];
                    }
                    // We have to be extremely careful when adding
                    // new characters, to make sure we're not breaking
                    // the encoding.
                    $char = HTMLPurifier_Encoder::unichr(hexdec($code));
                    if (HTMLPurifier_Encoder::cleanUTF8($char) === '') {
                        continue;
                    }
                    $ret .= $char;
                    if ($i < $c && trim($string[$i]) !== '') {
                        $i--;
                    }
                    continue;
                }
                if ($string[$i] === "\n") {
                    continue;
                }
            }
            $ret .= $string[$i];
        }
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php000064400000003753151213255720017650 0ustar00<?php

/**
 * Injector that converts http, https and ftp text URLs to actual links.
 */
class HTMLPurifier_Injector_Linkify extends HTMLPurifier_Injector
{
    /**
     * @type string
     */
    public $name = 'Linkify';

    /**
     * @type array
     */
    public $needed = array('a' => array('href'));

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleText(&$token)
    {
        if (!$this->allowsElement('a')) {
            return;
        }

        if (strpos($token->data, '://') === false) {
            // our really quick heuristic failed, abort
            // this may not work so well if we want to match things like
            // "google.com", but then again, most people don't
            return;
        }

        // there is/are URL(s). Let's split the string.
        // We use this regex:
        // https://gist.github.com/gruber/249502
        // but with @cscott's backtracking fix and also
        // the Unicode characters un-Unicodified.
        $bits = preg_split(
            '/\\b((?:[a-z][\\w\\-]+:(?:\\/{1,3}|[a-z0-9%])|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}\\/)(?:[^\\s()<>]|\\((?:[^\\s()<>]|(?:\\([^\\s()<>]+\\)))*\\))+(?:\\((?:[^\\s()<>]|(?:\\([^\\s()<>]+\\)))*\\)|[^\\s`!()\\[\\]{};:\'".,<>?\x{00ab}\x{00bb}\x{201c}\x{201d}\x{2018}\x{2019}]))/iu',
            $token->data, -1, PREG_SPLIT_DELIM_CAPTURE);


        $token = array();

        // $i = index
        // $c = count
        // $l = is link
        for ($i = 0, $c = count($bits), $l = false; $i < $c; $i++, $l = !$l) {
            if (!$l) {
                if ($bits[$i] === '') {
                    continue;
                }
                $token[] = new HTMLPurifier_Token_Text($bits[$i]);
            } else {
                $token[] = new HTMLPurifier_Token_Start('a', array('href' => $bits[$i]));
                $token[] = new HTMLPurifier_Token_Text($bits[$i]);
                $token[] = new HTMLPurifier_Token_End('a');
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php000064400000032744151213255720021003 0ustar00<?php

/**
 * Injector that auto paragraphs text in the root node based on
 * double-spacing.
 * @todo Ensure all states are unit tested, including variations as well.
 * @todo Make a graph of the flow control for this Injector.
 */
class HTMLPurifier_Injector_AutoParagraph extends HTMLPurifier_Injector
{
    /**
     * @type string
     */
    public $name = 'AutoParagraph';

    /**
     * @type array
     */
    public $needed = array('p');

    /**
     * @return HTMLPurifier_Token_Start
     */
    private function _pStart()
    {
        $par = new HTMLPurifier_Token_Start('p');
        $par->armor['MakeWellFormed_TagClosedError'] = true;
        return $par;
    }

    /**
     * @param HTMLPurifier_Token_Text $token
     */
    public function handleText(&$token)
    {
        $text = $token->data;
        // Does the current parent allow <p> tags?
        if ($this->allowsElement('p')) {
            if (empty($this->currentNesting) || strpos($text, "\n\n") !== false) {
                // Note that we have differing behavior when dealing with text
                // in the anonymous root node, or a node inside the document.
                // If the text as a double-newline, the treatment is the same;
                // if it doesn't, see the next if-block if you're in the document.

                $i = $nesting = null;
                if (!$this->forwardUntilEndToken($i, $current, $nesting) && $token->is_whitespace) {
                    // State 1.1: ...    ^ (whitespace, then document end)
                    //               ----
                    // This is a degenerate case
                } else {
                    if (!$token->is_whitespace || $this->_isInline($current)) {
                        // State 1.2: PAR1
                        //            ----

                        // State 1.3: PAR1\n\nPAR2
                        //            ------------

                        // State 1.4: <div>PAR1\n\nPAR2 (see State 2)
                        //                 ------------
                        $token = array($this->_pStart());
                        $this->_splitText($text, $token);
                    } else {
                        // State 1.5: \n<hr />
                        //            --
                    }
                }
            } else {
                // State 2:   <div>PAR1... (similar to 1.4)
                //                 ----

                // We're in an element that allows paragraph tags, but we're not
                // sure if we're going to need them.
                if ($this->_pLookAhead()) {
                    // State 2.1: <div>PAR1<b>PAR1\n\nPAR2
                    //                 ----
                    // Note: This will always be the first child, since any
                    // previous inline element would have triggered this very
                    // same routine, and found the double newline. One possible
                    // exception would be a comment.
                    $token = array($this->_pStart(), $token);
                } else {
                    // State 2.2.1: <div>PAR1<div>
                    //                   ----

                    // State 2.2.2: <div>PAR1<b>PAR1</b></div>
                    //                   ----
                }
            }
            // Is the current parent a <p> tag?
        } elseif (!empty($this->currentNesting) &&
            $this->currentNesting[count($this->currentNesting) - 1]->name == 'p') {
            // State 3.1: ...<p>PAR1
            //                  ----

            // State 3.2: ...<p>PAR1\n\nPAR2
            //                  ------------
            $token = array();
            $this->_splitText($text, $token);
            // Abort!
        } else {
            // State 4.1: ...<b>PAR1
            //                  ----

            // State 4.2: ...<b>PAR1\n\nPAR2
            //                  ------------
        }
    }

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleElement(&$token)
    {
        // We don't have to check if we're already in a <p> tag for block
        // tokens, because the tag would have been autoclosed by MakeWellFormed.
        if ($this->allowsElement('p')) {
            if (!empty($this->currentNesting)) {
                if ($this->_isInline($token)) {
                    // State 1: <div>...<b>
                    //                  ---
                    // Check if this token is adjacent to the parent token
                    // (seek backwards until token isn't whitespace)
                    $i = null;
                    $this->backward($i, $prev);

                    if (!$prev instanceof HTMLPurifier_Token_Start) {
                        // Token wasn't adjacent
                        if ($prev instanceof HTMLPurifier_Token_Text &&
                            substr($prev->data, -2) === "\n\n"
                        ) {
                            // State 1.1.4: <div><p>PAR1</p>\n\n<b>
                            //                                  ---
                            // Quite frankly, this should be handled by splitText
                            $token = array($this->_pStart(), $token);
                        } else {
                            // State 1.1.1: <div><p>PAR1</p><b>
                            //                              ---
                            // State 1.1.2: <div><br /><b>
                            //                         ---
                            // State 1.1.3: <div>PAR<b>
                            //                      ---
                        }
                    } else {
                        // State 1.2.1: <div><b>
                        //                   ---
                        // Lookahead to see if <p> is needed.
                        if ($this->_pLookAhead()) {
                            // State 1.3.1: <div><b>PAR1\n\nPAR2
                            //                   ---
                            $token = array($this->_pStart(), $token);
                        } else {
                            // State 1.3.2: <div><b>PAR1</b></div>
                            //                   ---

                            // State 1.3.3: <div><b>PAR1</b><div></div>\n\n</div>
                            //                   ---
                        }
                    }
                } else {
                    // State 2.3: ...<div>
                    //               -----
                }
            } else {
                if ($this->_isInline($token)) {
                    // State 3.1: <b>
                    //            ---
                    // This is where the {p} tag is inserted, not reflected in
                    // inputTokens yet, however.
                    $token = array($this->_pStart(), $token);
                } else {
                    // State 3.2: <div>
                    //            -----
                }

                $i = null;
                if ($this->backward($i, $prev)) {
                    if (!$prev instanceof HTMLPurifier_Token_Text) {
                        // State 3.1.1: ...</p>{p}<b>
                        //                        ---
                        // State 3.2.1: ...</p><div>
                        //                     -----
                        if (!is_array($token)) {
                            $token = array($token);
                        }
                        array_unshift($token, new HTMLPurifier_Token_Text("\n\n"));
                    } else {
                        // State 3.1.2: ...</p>\n\n{p}<b>
                        //                            ---
                        // State 3.2.2: ...</p>\n\n<div>
                        //                         -----
                        // Note: PAR<ELEM> cannot occur because PAR would have been
                        // wrapped in <p> tags.
                    }
                }
            }
        } else {
            // State 2.2: <ul><li>
            //                ----
            // State 2.4: <p><b>
            //               ---
        }
    }

    /**
     * Splits up a text in paragraph tokens and appends them
     * to the result stream that will replace the original
     * @param string $data String text data that will be processed
     *    into paragraphs
     * @param HTMLPurifier_Token[] $result Reference to array of tokens that the
     *    tags will be appended onto
     */
    private function _splitText($data, &$result)
    {
        $raw_paragraphs = explode("\n\n", $data);
        $paragraphs = array(); // without empty paragraphs
        $needs_start = false;
        $needs_end = false;

        $c = count($raw_paragraphs);
        if ($c == 1) {
            // There were no double-newlines, abort quickly. In theory this
            // should never happen.
            $result[] = new HTMLPurifier_Token_Text($data);
            return;
        }
        for ($i = 0; $i < $c; $i++) {
            $par = $raw_paragraphs[$i];
            if (trim($par) !== '') {
                $paragraphs[] = $par;
            } else {
                if ($i == 0) {
                    // Double newline at the front
                    if (empty($result)) {
                        // The empty result indicates that the AutoParagraph
                        // injector did not add any start paragraph tokens.
                        // This means that we have been in a paragraph for
                        // a while, and the newline means we should start a new one.
                        $result[] = new HTMLPurifier_Token_End('p');
                        $result[] = new HTMLPurifier_Token_Text("\n\n");
                        // However, the start token should only be added if
                        // there is more processing to be done (i.e. there are
                        // real paragraphs in here). If there are none, the
                        // next start paragraph tag will be handled by the
                        // next call to the injector
                        $needs_start = true;
                    } else {
                        // We just started a new paragraph!
                        // Reinstate a double-newline for presentation's sake, since
                        // it was in the source code.
                        array_unshift($result, new HTMLPurifier_Token_Text("\n\n"));
                    }
                } elseif ($i + 1 == $c) {
                    // Double newline at the end
                    // There should be a trailing </p> when we're finally done.
                    $needs_end = true;
                }
            }
        }

        // Check if this was just a giant blob of whitespace. Move this earlier,
        // perhaps?
        if (empty($paragraphs)) {
            return;
        }

        // Add the start tag indicated by \n\n at the beginning of $data
        if ($needs_start) {
            $result[] = $this->_pStart();
        }

        // Append the paragraphs onto the result
        foreach ($paragraphs as $par) {
            $result[] = new HTMLPurifier_Token_Text($par);
            $result[] = new HTMLPurifier_Token_End('p');
            $result[] = new HTMLPurifier_Token_Text("\n\n");
            $result[] = $this->_pStart();
        }

        // Remove trailing start token; Injector will handle this later if
        // it was indeed needed. This prevents from needing to do a lookahead,
        // at the cost of a lookbehind later.
        array_pop($result);

        // If there is no need for an end tag, remove all of it and let
        // MakeWellFormed close it later.
        if (!$needs_end) {
            array_pop($result); // removes \n\n
            array_pop($result); // removes </p>
        }
    }

    /**
     * Returns true if passed token is inline (and, ergo, allowed in
     * paragraph tags)
     * @param HTMLPurifier_Token $token
     * @return bool
     */
    private function _isInline($token)
    {
        return isset($this->htmlDefinition->info['p']->child->elements[$token->name]);
    }

    /**
     * Looks ahead in the token list and determines whether or not we need
     * to insert a <p> tag.
     * @return bool
     */
    private function _pLookAhead()
    {
        if ($this->currentToken instanceof HTMLPurifier_Token_Start) {
            $nesting = 1;
        } else {
            $nesting = 0;
        }
        $ok = false;
        $i = null;
        while ($this->forwardUntilEndToken($i, $current, $nesting)) {
            $result = $this->_checkNeedsP($current);
            if ($result !== null) {
                $ok = $result;
                break;
            }
        }
        return $ok;
    }

    /**
     * Determines if a particular token requires an earlier inline token
     * to get a paragraph. This should be used with _forwardUntilEndToken
     * @param HTMLPurifier_Token $current
     * @return bool
     */
    private function _checkNeedsP($current)
    {
        if ($current instanceof HTMLPurifier_Token_Start) {
            if (!$this->_isInline($current)) {
                // <div>PAR1<div>
                //      ----
                // Terminate early, since we hit a block element
                return false;
            }
        } elseif ($current instanceof HTMLPurifier_Token_Text) {
            if (strpos($current->data, "\n\n") !== false) {
                // <div>PAR1<b>PAR1\n\nPAR2
                //      ----
                return true;
            } else {
                // <div>PAR1<b>PAR1...
                //      ----
            }
        }
        return null;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php000064400000003423151213255720021350 0ustar00<?php

/**
 * Injector that converts configuration directive syntax %Namespace.Directive
 * to links
 */
class HTMLPurifier_Injector_PurifierLinkify extends HTMLPurifier_Injector
{
    /**
     * @type string
     */
    public $name = 'PurifierLinkify';

    /**
     * @type string
     */
    public $docURL;

    /**
     * @type array
     */
    public $needed = array('a' => array('href'));

    /**
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public function prepare($config, $context)
    {
        $this->docURL = $config->get('AutoFormat.PurifierLinkify.DocURL');
        return parent::prepare($config, $context);
    }

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleText(&$token)
    {
        if (!$this->allowsElement('a')) {
            return;
        }
        if (strpos($token->data, '%') === false) {
            return;
        }

        $bits = preg_split('#%([a-z0-9]+\.[a-z0-9]+)#Si', $token->data, -1, PREG_SPLIT_DELIM_CAPTURE);
        $token = array();

        // $i = index
        // $c = count
        // $l = is link
        for ($i = 0, $c = count($bits), $l = false; $i < $c; $i++, $l = !$l) {
            if (!$l) {
                if ($bits[$i] === '') {
                    continue;
                }
                $token[] = new HTMLPurifier_Token_Text($bits[$i]);
            } else {
                $token[] = new HTMLPurifier_Token_Start(
                    'a',
                    array('href' => str_replace('%s', $bits[$i], $this->docURL))
                );
                $token[] = new HTMLPurifier_Token_Text('%' . $bits[$i]);
                $token[] = new HTMLPurifier_Token_End('a');
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php000064400000001533151213255720021040 0ustar00<?php

/**
 * Injector that displays the URL of an anchor instead of linking to it, in addition to showing the text of the link.
 */
class HTMLPurifier_Injector_DisplayLinkURI extends HTMLPurifier_Injector
{
    /**
     * @type string
     */
    public $name = 'DisplayLinkURI';

    /**
     * @type array
     */
    public $needed = array('a');

    /**
     * @param $token
     */
    public function handleElement(&$token)
    {
    }

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleEnd(&$token)
    {
        if (isset($token->start->attr['href'])) {
            $url = $token->start->attr['href'];
            unset($token->start->attr['href']);
            $token = array($token, new HTMLPurifier_Token_Text(" ($url)"));
        } else {
            // nothing to display
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php000064400000007557151213255720020256 0ustar00<?php

/**
 * Adds important param elements to inside of object in order to make
 * things safe.
 */
class HTMLPurifier_Injector_SafeObject extends HTMLPurifier_Injector
{
    /**
     * @type string
     */
    public $name = 'SafeObject';

    /**
     * @type array
     */
    public $needed = array('object', 'param');

    /**
     * @type array
     */
    protected $objectStack = array();

    /**
     * @type array
     */
    protected $paramStack = array();

    /**
     * Keep this synchronized with AttrTransform/SafeParam.php.
     * @type array
     */
    protected $addParam = array(
        'allowScriptAccess' => 'never',
        'allowNetworking' => 'internal',
    );

    /**
     * These are all lower-case keys.
     * @type array
     */
    protected $allowedParam = array(
        'wmode' => true,
        'movie' => true,
        'flashvars' => true,
        'src' => true,
        'allowfullscreen' => true, // if omitted, assume to be 'false'
    );

    /**
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return void
     */
    public function prepare($config, $context)
    {
        parent::prepare($config, $context);
    }

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleElement(&$token)
    {
        if ($token->name == 'object') {
            $this->objectStack[] = $token;
            $this->paramStack[] = array();
            $new = array($token);
            foreach ($this->addParam as $name => $value) {
                $new[] = new HTMLPurifier_Token_Empty('param', array('name' => $name, 'value' => $value));
            }
            $token = $new;
        } elseif ($token->name == 'param') {
            $nest = count($this->currentNesting) - 1;
            if ($nest >= 0 && $this->currentNesting[$nest]->name === 'object') {
                $i = count($this->objectStack) - 1;
                if (!isset($token->attr['name'])) {
                    $token = false;
                    return;
                }
                $n = $token->attr['name'];
                // We need this fix because YouTube doesn't supply a data
                // attribute, which we need if a type is specified. This is
                // *very* Flash specific.
                if (!isset($this->objectStack[$i]->attr['data']) &&
                    ($token->attr['name'] == 'movie' || $token->attr['name'] == 'src')
                ) {
                    $this->objectStack[$i]->attr['data'] = $token->attr['value'];
                }
                // Check if the parameter is the correct value but has not
                // already been added
                if (!isset($this->paramStack[$i][$n]) &&
                    isset($this->addParam[$n]) &&
                    $token->attr['name'] === $this->addParam[$n]) {
                    // keep token, and add to param stack
                    $this->paramStack[$i][$n] = true;
                } elseif (isset($this->allowedParam[strtolower($n)])) {
                    // keep token, don't do anything to it
                    // (could possibly check for duplicates here)
                    // Note: In principle, parameters should be case sensitive.
                    // But it seems they are not really; so accept any case.
                } else {
                    $token = false;
                }
            } else {
                // not directly inside an object, DENY!
                $token = false;
            }
        }
    }

    public function handleEnd(&$token)
    {
        // This is the WRONG way of handling the object and param stacks;
        // we should be inserting them directly on the relevant object tokens
        // so that the global stack handling handles it.
        if ($token->name == 'object') {
            array_pop($this->objectStack);
            array_pop($this->paramStack);
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php000064400000003746151213255720024142 0ustar00<?php

/**
 * Injector that removes spans with no attributes
 */
class HTMLPurifier_Injector_RemoveSpansWithoutAttributes extends HTMLPurifier_Injector
{
    /**
     * @type string
     */
    public $name = 'RemoveSpansWithoutAttributes';

    /**
     * @type array
     */
    public $needed = array('span');

    /**
     * @type HTMLPurifier_AttrValidator
     */
    private $attrValidator;

    /**
     * Used by AttrValidator.
     * @type HTMLPurifier_Config
     */
    private $config;

    /**
     * @type HTMLPurifier_Context
     */
    private $context;

    public function prepare($config, $context)
    {
        $this->attrValidator = new HTMLPurifier_AttrValidator();
        $this->config = $config;
        $this->context = $context;
        return parent::prepare($config, $context);
    }

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleElement(&$token)
    {
        if ($token->name !== 'span' || !$token instanceof HTMLPurifier_Token_Start) {
            return;
        }

        // We need to validate the attributes now since this doesn't normally
        // happen until after MakeWellFormed. If all the attributes are removed
        // the span needs to be removed too.
        $this->attrValidator->validateToken($token, $this->config, $this->context);
        $token->armor['ValidateAttributes'] = true;

        if (!empty($token->attr)) {
            return;
        }

        $nesting = 0;
        while ($this->forwardUntilEndToken($i, $current, $nesting)) {
        }

        if ($current instanceof HTMLPurifier_Token_End && $current->name === 'span') {
            // Mark closing span tag for deletion
            $current->markForDeletion = true;
            // Delete open span tag
            $token = false;
        }
    }

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleEnd(&$token)
    {
        if ($token->markForDeletion) {
            $token = false;
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php000064400000006664151213255720020523 0ustar00<?php

class HTMLPurifier_Injector_RemoveEmpty extends HTMLPurifier_Injector
{
    /**
     * @type HTMLPurifier_Context
     */
    private $context;

    /**
     * @type HTMLPurifier_Config
     */
    private $config;

    /**
     * @type HTMLPurifier_AttrValidator
     */
    private $attrValidator;

    /**
     * @type bool
     */
    private $removeNbsp;

    /**
     * @type bool
     */
    private $removeNbspExceptions;

    /**
     * Cached contents of %AutoFormat.RemoveEmpty.Predicate
     * @type array
     */
    private $exclude;

    /**
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return void
     */
    public function prepare($config, $context)
    {
        parent::prepare($config, $context);
        $this->config = $config;
        $this->context = $context;
        $this->removeNbsp = $config->get('AutoFormat.RemoveEmpty.RemoveNbsp');
        $this->removeNbspExceptions = $config->get('AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions');
        $this->exclude = $config->get('AutoFormat.RemoveEmpty.Predicate');
        foreach ($this->exclude as $key => $attrs) {
            if (!is_array($attrs)) {
                // HACK, see HTMLPurifier/Printer/ConfigForm.php
                $this->exclude[$key] = explode(';', $attrs);
            }
        }
        $this->attrValidator = new HTMLPurifier_AttrValidator();
    }

    /**
     * @param HTMLPurifier_Token $token
     */
    public function handleElement(&$token)
    {
        if (!$token instanceof HTMLPurifier_Token_Start) {
            return;
        }
        $next = false;
        $deleted = 1; // the current tag
        for ($i = count($this->inputZipper->back) - 1; $i >= 0; $i--, $deleted++) {
            $next = $this->inputZipper->back[$i];
            if ($next instanceof HTMLPurifier_Token_Text) {
                if ($next->is_whitespace) {
                    continue;
                }
                if ($this->removeNbsp && !isset($this->removeNbspExceptions[$token->name])) {
                    $plain = str_replace("\xC2\xA0", "", $next->data);
                    $isWsOrNbsp = $plain === '' || ctype_space($plain);
                    if ($isWsOrNbsp) {
                        continue;
                    }
                }
            }
            break;
        }
        if (!$next || ($next instanceof HTMLPurifier_Token_End && $next->name == $token->name)) {
            $this->attrValidator->validateToken($token, $this->config, $this->context);
            $token->armor['ValidateAttributes'] = true;
            if (isset($this->exclude[$token->name])) {
                $r = true;
                foreach ($this->exclude[$token->name] as $elem) {
                    if (!isset($token->attr[$elem])) $r = false;
                }
                if ($r) return;
            }
            if (isset($token->attr['id']) || isset($token->attr['name'])) {
                return;
            }
            $token = $deleted + 1;
            for ($b = 0, $c = count($this->inputZipper->front); $b < $c; $b++) {
                $prev = $this->inputZipper->front[$b];
                if ($prev instanceof HTMLPurifier_Token_Text && $prev->is_whitespace) {
                    continue;
                }
                break;
            }
            // This is safe because we removed the token that triggered this.
            $this->rewindOffset($b+$deleted);
            return;
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Node/Element.php000064400000003275151213255720016743 0ustar00<?php

/**
 * Concrete element node class.
 */
class HTMLPurifier_Node_Element extends HTMLPurifier_Node
{
    /**
     * The lower-case name of the tag, like 'a', 'b' or 'blockquote'.
     *
     * @note Strictly speaking, XML tags are case sensitive, so we shouldn't
     * be lower-casing them, but these tokens cater to HTML tags, which are
     * insensitive.
     * @type string
     */
    public $name;

    /**
     * Associative array of the node's attributes.
     * @type array
     */
    public $attr = array();

    /**
     * List of child elements.
     * @type array
     */
    public $children = array();

    /**
     * Does this use the <a></a> form or the </a> form, i.e.
     * is it a pair of start/end tokens or an empty token.
     * @bool
     */
    public $empty = false;

    public $endCol = null, $endLine = null, $endArmor = array();

    public function __construct($name, $attr = array(), $line = null, $col = null, $armor = array()) {
        $this->name = $name;
        $this->attr = $attr;
        $this->line = $line;
        $this->col = $col;
        $this->armor = $armor;
    }

    public function toTokenPair() {
        // XXX inefficiency here, normalization is not necessary
        if ($this->empty) {
            return array(new HTMLPurifier_Token_Empty($this->name, $this->attr, $this->line, $this->col, $this->armor), null);
        } else {
            $start = new HTMLPurifier_Token_Start($this->name, $this->attr, $this->line, $this->col, $this->armor);
            $end = new HTMLPurifier_Token_End($this->name, array(), $this->endLine, $this->endCol, $this->endArmor);
            //$end->start = $start;
            return array($start, $end);
        }
    }
}

lib/htmlpurifier/library/HTMLPurifier/Node/Text.php000064400000002544151213255720016274 0ustar00<?php

/**
 * Concrete text token class.
 *
 * Text tokens comprise of regular parsed character data (PCDATA) and raw
 * character data (from the CDATA sections). Internally, their
 * data is parsed with all entities expanded. Surprisingly, the text token
 * does have a "tag name" called #PCDATA, which is how the DTD represents it
 * in permissible child nodes.
 */
class HTMLPurifier_Node_Text extends HTMLPurifier_Node
{

    /**
     * PCDATA tag name compatible with DTD, see
     * HTMLPurifier_ChildDef_Custom for details.
     * @type string
     */
    public $name = '#PCDATA';

    /**
     * @type string
     */
    public $data;
    /**< Parsed character data of text. */

    /**
     * @type bool
     */
    public $is_whitespace;

    /**< Bool indicating if node is whitespace. */

    /**
     * Constructor, accepts data and determines if it is whitespace.
     * @param string $data String parsed character data.
     * @param int $line
     * @param int $col
     */
    public function __construct($data, $is_whitespace, $line = null, $col = null)
    {
        $this->data = $data;
        $this->is_whitespace = $is_whitespace;
        $this->line = $line;
        $this->col = $col;
    }

    public function toTokenPair() {
        return array(new HTMLPurifier_Token_Text($this->data, $this->line, $this->col), null);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Node/Comment.php000064400000001325151213255730016747 0ustar00<?php

/**
 * Concrete comment node class.
 */
class HTMLPurifier_Node_Comment extends HTMLPurifier_Node
{
    /**
     * Character data within comment.
     * @type string
     */
    public $data;

    /**
     * @type bool
     */
    public $is_whitespace = true;

    /**
     * Transparent constructor.
     *
     * @param string $data String comment data.
     * @param int $line
     * @param int $col
     */
    public function __construct($data, $line = null, $col = null)
    {
        $this->data = $data;
        $this->line = $line;
        $this->col = $col;
    }

    public function toTokenPair() {
        return array(new HTMLPurifier_Token_Comment($this->data, $this->line, $this->col), null);
    }
}
lib/htmlpurifier/library/HTMLPurifier/Injector.php000064400000021456151213255730016244 0ustar00<?php

/**
 * Injects tokens into the document while parsing for well-formedness.
 * This enables "formatter-like" functionality such as auto-paragraphing,
 * smiley-ification and linkification to take place.
 *
 * A note on how handlers create changes; this is done by assigning a new
 * value to the $token reference. These values can take a variety of forms and
 * are best described HTMLPurifier_Strategy_MakeWellFormed->processToken()
 * documentation.
 *
 * @todo Allow injectors to request a re-run on their output. This
 *       would help if an operation is recursive.
 */
abstract class HTMLPurifier_Injector
{

    /**
     * Advisory name of injector, this is for friendly error messages.
     * @type string
     */
    public $name;

    /**
     * @type HTMLPurifier_HTMLDefinition
     */
    protected $htmlDefinition;

    /**
     * Reference to CurrentNesting variable in Context. This is an array
     * list of tokens that we are currently "inside"
     * @type array
     */
    protected $currentNesting;

    /**
     * Reference to current token.
     * @type HTMLPurifier_Token
     */
    protected $currentToken;

    /**
     * Reference to InputZipper variable in Context.
     * @type HTMLPurifier_Zipper
     */
    protected $inputZipper;

    /**
     * Array of elements and attributes this injector creates and therefore
     * need to be allowed by the definition. Takes form of
     * array('element' => array('attr', 'attr2'), 'element2')
     * @type array
     */
    public $needed = array();

    /**
     * Number of elements to rewind backwards (relative).
     * @type bool|int
     */
    protected $rewindOffset = false;

    /**
     * Rewind to a spot to re-perform processing. This is useful if you
     * deleted a node, and now need to see if this change affected any
     * earlier nodes. Rewinding does not affect other injectors, and can
     * result in infinite loops if not used carefully.
     * @param bool|int $offset
     * @warning HTML Purifier will prevent you from fast-forwarding with this
     *          function.
     */
    public function rewindOffset($offset)
    {
        $this->rewindOffset = $offset;
    }

    /**
     * Retrieves rewind offset, and then unsets it.
     * @return bool|int
     */
    public function getRewindOffset()
    {
        $r = $this->rewindOffset;
        $this->rewindOffset = false;
        return $r;
    }

    /**
     * Prepares the injector by giving it the config and context objects:
     * this allows references to important variables to be made within
     * the injector. This function also checks if the HTML environment
     * will work with the Injector (see checkNeeded()).
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string Boolean false if success, string of missing needed element/attribute if failure
     */
    public function prepare($config, $context)
    {
        $this->htmlDefinition = $config->getHTMLDefinition();
        // Even though this might fail, some unit tests ignore this and
        // still test checkNeeded, so be careful. Maybe get rid of that
        // dependency.
        $result = $this->checkNeeded($config);
        if ($result !== false) {
            return $result;
        }
        $this->currentNesting =& $context->get('CurrentNesting');
        $this->currentToken   =& $context->get('CurrentToken');
        $this->inputZipper    =& $context->get('InputZipper');
        return false;
    }

    /**
     * This function checks if the HTML environment
     * will work with the Injector: if p tags are not allowed, the
     * Auto-Paragraphing injector should not be enabled.
     * @param HTMLPurifier_Config $config
     * @return bool|string Boolean false if success, string of missing needed element/attribute if failure
     */
    public function checkNeeded($config)
    {
        $def = $config->getHTMLDefinition();
        foreach ($this->needed as $element => $attributes) {
            if (is_int($element)) {
                $element = $attributes;
            }
            if (!isset($def->info[$element])) {
                return $element;
            }
            if (!is_array($attributes)) {
                continue;
            }
            foreach ($attributes as $name) {
                if (!isset($def->info[$element]->attr[$name])) {
                    return "$element.$name";
                }
            }
        }
        return false;
    }

    /**
     * Tests if the context node allows a certain element
     * @param string $name Name of element to test for
     * @return bool True if element is allowed, false if it is not
     */
    public function allowsElement($name)
    {
        if (!empty($this->currentNesting)) {
            $parent_token = array_pop($this->currentNesting);
            $this->currentNesting[] = $parent_token;
            $parent = $this->htmlDefinition->info[$parent_token->name];
        } else {
            $parent = $this->htmlDefinition->info_parent_def;
        }
        if (!isset($parent->child->elements[$name]) || isset($parent->excludes[$name])) {
            return false;
        }
        // check for exclusion
        if (!empty($this->currentNesting)) {
            for ($i = count($this->currentNesting) - 2; $i >= 0; $i--) {
                $node = $this->currentNesting[$i];
                $def  = $this->htmlDefinition->info[$node->name];
                if (isset($def->excludes[$name])) {
                    return false;
                }
            }
        }
        return true;
    }

    /**
     * Iterator function, which starts with the next token and continues until
     * you reach the end of the input tokens.
     * @warning Please prevent previous references from interfering with this
     *          functions by setting $i = null beforehand!
     * @param int $i Current integer index variable for inputTokens
     * @param HTMLPurifier_Token $current Current token variable.
     *          Do NOT use $token, as that variable is also a reference
     * @return bool
     */
    protected function forward(&$i, &$current)
    {
        if ($i === null) {
            $i = count($this->inputZipper->back) - 1;
        } else {
            $i--;
        }
        if ($i < 0) {
            return false;
        }
        $current = $this->inputZipper->back[$i];
        return true;
    }

    /**
     * Similar to _forward, but accepts a third parameter $nesting (which
     * should be initialized at 0) and stops when we hit the end tag
     * for the node $this->inputIndex starts in.
     * @param int $i Current integer index variable for inputTokens
     * @param HTMLPurifier_Token $current Current token variable.
     *          Do NOT use $token, as that variable is also a reference
     * @param int $nesting
     * @return bool
     */
    protected function forwardUntilEndToken(&$i, &$current, &$nesting)
    {
        $result = $this->forward($i, $current);
        if (!$result) {
            return false;
        }
        if ($nesting === null) {
            $nesting = 0;
        }
        if ($current instanceof HTMLPurifier_Token_Start) {
            $nesting++;
        } elseif ($current instanceof HTMLPurifier_Token_End) {
            if ($nesting <= 0) {
                return false;
            }
            $nesting--;
        }
        return true;
    }

    /**
     * Iterator function, starts with the previous token and continues until
     * you reach the beginning of input tokens.
     * @warning Please prevent previous references from interfering with this
     *          functions by setting $i = null beforehand!
     * @param int $i Current integer index variable for inputTokens
     * @param HTMLPurifier_Token $current Current token variable.
     *          Do NOT use $token, as that variable is also a reference
     * @return bool
     */
    protected function backward(&$i, &$current)
    {
        if ($i === null) {
            $i = count($this->inputZipper->front) - 1;
        } else {
            $i--;
        }
        if ($i < 0) {
            return false;
        }
        $current = $this->inputZipper->front[$i];
        return true;
    }

    /**
     * Handler that is called when a text token is processed
     */
    public function handleText(&$token)
    {
    }

    /**
     * Handler that is called when a start or empty token is processed
     */
    public function handleElement(&$token)
    {
    }

    /**
     * Handler that is called when an end token is processed
     */
    public function handleEnd(&$token)
    {
        $this->notifyEnd($token);
    }

    /**
     * Notifier that is called when an end token is processed
     * @param HTMLPurifier_Token $token Current token variable.
     * @note This differs from handlers in that the token is read-only
     * @deprecated
     */
    public function notifyEnd($token)
    {
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Doctype.php000064400000003056151213255730016072 0ustar00<?php

/**
 * Represents a document type, contains information on which modules
 * need to be loaded.
 * @note This class is inspected by Printer_HTMLDefinition->renderDoctype.
 *       If structure changes, please update that function.
 */
class HTMLPurifier_Doctype
{
    /**
     * Full name of doctype
     * @type string
     */
    public $name;

    /**
     * List of standard modules (string identifiers or literal objects)
     * that this doctype uses
     * @type array
     */
    public $modules = array();

    /**
     * List of modules to use for tidying up code
     * @type array
     */
    public $tidyModules = array();

    /**
     * Is the language derived from XML (i.e. XHTML)?
     * @type bool
     */
    public $xml = true;

    /**
     * List of aliases for this doctype
     * @type array
     */
    public $aliases = array();

    /**
     * Public DTD identifier
     * @type string
     */
    public $dtdPublic;

    /**
     * System DTD identifier
     * @type string
     */
    public $dtdSystem;

    public function __construct(
        $name = null,
        $xml = true,
        $modules = array(),
        $tidyModules = array(),
        $aliases = array(),
        $dtd_public = null,
        $dtd_system = null
    ) {
        $this->name         = $name;
        $this->xml          = $xml;
        $this->modules      = $modules;
        $this->tidyModules  = $tidyModules;
        $this->aliases      = $aliases;
        $this->dtdPublic    = $dtd_public;
        $this->dtdSystem    = $dtd_system;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/TokenFactory.php000064400000006033151213255730017071 0ustar00<?php

/**
 * Factory for token generation.
 *
 * @note Doing some benchmarking indicates that the new operator is much
 *       slower than the clone operator (even discounting the cost of the
 *       constructor).  This class is for that optimization.
 *       Other then that, there's not much point as we don't
 *       maintain parallel HTMLPurifier_Token hierarchies (the main reason why
 *       you'd want to use an abstract factory).
 * @todo Port DirectLex to use this
 */
class HTMLPurifier_TokenFactory
{
    // p stands for prototype

    /**
     * @type HTMLPurifier_Token_Start
     */
    private $p_start;

    /**
     * @type HTMLPurifier_Token_End
     */
    private $p_end;

    /**
     * @type HTMLPurifier_Token_Empty
     */
    private $p_empty;

    /**
     * @type HTMLPurifier_Token_Text
     */
    private $p_text;

    /**
     * @type HTMLPurifier_Token_Comment
     */
    private $p_comment;

    /**
     * Generates blank prototypes for cloning.
     */
    public function __construct()
    {
        $this->p_start = new HTMLPurifier_Token_Start('', array());
        $this->p_end = new HTMLPurifier_Token_End('');
        $this->p_empty = new HTMLPurifier_Token_Empty('', array());
        $this->p_text = new HTMLPurifier_Token_Text('');
        $this->p_comment = new HTMLPurifier_Token_Comment('');
    }

    /**
     * Creates a HTMLPurifier_Token_Start.
     * @param string $name Tag name
     * @param array $attr Associative array of attributes
     * @return HTMLPurifier_Token_Start Generated HTMLPurifier_Token_Start
     */
    public function createStart($name, $attr = array())
    {
        $p = clone $this->p_start;
        $p->__construct($name, $attr);
        return $p;
    }

    /**
     * Creates a HTMLPurifier_Token_End.
     * @param string $name Tag name
     * @return HTMLPurifier_Token_End Generated HTMLPurifier_Token_End
     */
    public function createEnd($name)
    {
        $p = clone $this->p_end;
        $p->__construct($name);
        return $p;
    }

    /**
     * Creates a HTMLPurifier_Token_Empty.
     * @param string $name Tag name
     * @param array $attr Associative array of attributes
     * @return HTMLPurifier_Token_Empty Generated HTMLPurifier_Token_Empty
     */
    public function createEmpty($name, $attr = array())
    {
        $p = clone $this->p_empty;
        $p->__construct($name, $attr);
        return $p;
    }

    /**
     * Creates a HTMLPurifier_Token_Text.
     * @param string $data Data of text token
     * @return HTMLPurifier_Token_Text Generated HTMLPurifier_Token_Text
     */
    public function createText($data)
    {
        $p = clone $this->p_text;
        $p->__construct($data);
        return $p;
    }

    /**
     * Creates a HTMLPurifier_Token_Comment.
     * @param string $data Data of comment token
     * @return HTMLPurifier_Token_Comment Generated HTMLPurifier_Token_Comment
     */
    public function createComment($data)
    {
        $p = clone $this->p_comment;
        $p->__construct($data);
        return $p;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php000064400000010363151213255730016443 0ustar00<?php

/**
 * Validates the HTML attribute style, otherwise known as CSS.
 * @note We don't implement the whole CSS specification, so it might be
 *       difficult to reuse this component in the context of validating
 *       actual stylesheet declarations.
 * @note If we were really serious about validating the CSS, we would
 *       tokenize the styles and then parse the tokens. Obviously, we
 *       are not doing that. Doing that could seriously harm performance,
 *       but would make these components a lot more viable for a CSS
 *       filtering solution.
 */
class HTMLPurifier_AttrDef_CSS extends HTMLPurifier_AttrDef
{

    /**
     * @param string $css
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($css, $config, $context)
    {
        $css = $this->parseCDATA($css);

        $definition = $config->getCSSDefinition();
        $allow_duplicates = $config->get("CSS.AllowDuplicates");


        // According to the CSS2.1 spec, the places where a
        // non-delimiting semicolon can appear are in strings
        // escape sequences.   So here is some dumb hack to
        // handle quotes.
        $len = strlen($css);
        $accum = "";
        $declarations = array();
        $quoted = false;
        for ($i = 0; $i < $len; $i++) {
            $c = strcspn($css, ";'\"", $i);
            $accum .= substr($css, $i, $c);
            $i += $c;
            if ($i == $len) break;
            $d = $css[$i];
            if ($quoted) {
                $accum .= $d;
                if ($d == $quoted) {
                    $quoted = false;
                }
            } else {
                if ($d == ";") {
                    $declarations[] = $accum;
                    $accum = "";
                } else {
                    $accum .= $d;
                    $quoted = $d;
                }
            }
        }
        if ($accum != "") $declarations[] = $accum;

        $propvalues = array();
        $new_declarations = '';

        /**
         * Name of the current CSS property being validated.
         */
        $property = false;
        $context->register('CurrentCSSProperty', $property);

        foreach ($declarations as $declaration) {
            if (!$declaration) {
                continue;
            }
            if (!strpos($declaration, ':')) {
                continue;
            }
            list($property, $value) = explode(':', $declaration, 2);
            $property = trim($property);
            $value = trim($value);
            $ok = false;
            do {
                if (isset($definition->info[$property])) {
                    $ok = true;
                    break;
                }
                if (ctype_lower($property)) {
                    break;
                }
                $property = strtolower($property);
                if (isset($definition->info[$property])) {
                    $ok = true;
                    break;
                }
            } while (0);
            if (!$ok) {
                continue;
            }
            // inefficient call, since the validator will do this again
            if (strtolower(trim($value)) !== 'inherit') {
                // inherit works for everything (but only on the base property)
                $result = $definition->info[$property]->validate(
                    $value,
                    $config,
                    $context
                );
            } else {
                $result = 'inherit';
            }
            if ($result === false) {
                continue;
            }
            if ($allow_duplicates) {
                $new_declarations .= "$property:$result;";
            } else {
                $propvalues[$property] = $result;
            }
        }

        $context->destroy('CurrentCSSProperty');

        // procedure does not write the new CSS simultaneously, so it's
        // slightly inefficient, but it's the only way of getting rid of
        // duplicates. Perhaps config to optimize it, but not now.

        foreach ($propvalues as $prop => $value) {
            $new_declarations .= "$prop:$value;";
        }

        return $new_declarations ? $new_declarations : false;

    }

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/Switch.php000064400000002411151213255730017247 0ustar00<?php

/**
 * Decorator that, depending on a token, switches between two definitions.
 */
class HTMLPurifier_AttrDef_Switch
{

    /**
     * @type string
     */
    protected $tag;

    /**
     * @type HTMLPurifier_AttrDef
     */
    protected $withTag;

    /**
     * @type HTMLPurifier_AttrDef
     */
    protected $withoutTag;

    /**
     * @param string $tag Tag name to switch upon
     * @param HTMLPurifier_AttrDef $with_tag Call if token matches tag
     * @param HTMLPurifier_AttrDef $without_tag Call if token doesn't match, or there is no token
     */
    public function __construct($tag, $with_tag, $without_tag)
    {
        $this->tag = $tag;
        $this->withTag = $with_tag;
        $this->withoutTag = $without_tag;
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $token = $context->get('CurrentToken', true);
        if (!$token || $token->name !== $this->tag) {
            return $this->withoutTag->validate($string, $config, $context);
        } else {
            return $this->withTag->validate($string, $config, $context);
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php000064400000004763151213255730017417 0ustar00<?php

/**
 * Validates an integer.
 * @note While this class was modeled off the CSS definition, no currently
 *       allowed CSS uses this type.  The properties that do are: widows,
 *       orphans, z-index, counter-increment, counter-reset.  Some of the
 *       HTML attributes, however, find use for a non-negative version of this.
 */
class HTMLPurifier_AttrDef_Integer extends HTMLPurifier_AttrDef
{

    /**
     * Whether or not negative values are allowed.
     * @type bool
     */
    protected $negative = true;

    /**
     * Whether or not zero is allowed.
     * @type bool
     */
    protected $zero = true;

    /**
     * Whether or not positive values are allowed.
     * @type bool
     */
    protected $positive = true;

    /**
     * @param $negative Bool indicating whether or not negative values are allowed
     * @param $zero Bool indicating whether or not zero is allowed
     * @param $positive Bool indicating whether or not positive values are allowed
     */
    public function __construct($negative = true, $zero = true, $positive = true)
    {
        $this->negative = $negative;
        $this->zero = $zero;
        $this->positive = $positive;
    }

    /**
     * @param string $integer
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($integer, $config, $context)
    {
        $integer = $this->parseCDATA($integer);
        if ($integer === '') {
            return false;
        }

        // we could possibly simply typecast it to integer, but there are
        // certain fringe cases that must not return an integer.

        // clip leading sign
        if ($this->negative && $integer[0] === '-') {
            $digits = substr($integer, 1);
            if ($digits === '0') {
                $integer = '0';
            } // rm minus sign for zero
        } elseif ($this->positive && $integer[0] === '+') {
            $digits = $integer = substr($integer, 1); // rm unnecessary plus
        } else {
            $digits = $integer;
        }

        // test if it's numeric
        if (!ctype_digit($digits)) {
            return false;
        }

        // perform scope tests
        if (!$this->zero && $integer == 0) {
            return false;
        }
        if (!$this->positive && $integer > 0) {
            return false;
        }
        if (!$this->negative && $integer < 0) {
            return false;
        }

        return $integer;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php000064400000005230151213255730016447 0ustar00<?php

/**
 * Validates a URI as defined by RFC 3986.
 * @note Scheme-specific mechanics deferred to HTMLPurifier_URIScheme
 */
class HTMLPurifier_AttrDef_URI extends HTMLPurifier_AttrDef
{

    /**
     * @type HTMLPurifier_URIParser
     */
    protected $parser;

    /**
     * @type bool
     */
    protected $embedsResource;

    /**
     * @param bool $embeds_resource Does the URI here result in an extra HTTP request?
     */
    public function __construct($embeds_resource = false)
    {
        $this->parser = new HTMLPurifier_URIParser();
        $this->embedsResource = (bool)$embeds_resource;
    }

    /**
     * @param string $string
     * @return HTMLPurifier_AttrDef_URI
     */
    public function make($string)
    {
        $embeds = ($string === 'embedded');
        return new HTMLPurifier_AttrDef_URI($embeds);
    }

    /**
     * @param string $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($uri, $config, $context)
    {
        if ($config->get('URI.Disable')) {
            return false;
        }

        $uri = $this->parseCDATA($uri);

        // parse the URI
        $uri = $this->parser->parse($uri);
        if ($uri === false) {
            return false;
        }

        // add embedded flag to context for validators
        $context->register('EmbeddedURI', $this->embedsResource);

        $ok = false;
        do {

            // generic validation
            $result = $uri->validate($config, $context);
            if (!$result) {
                break;
            }

            // chained filtering
            $uri_def = $config->getDefinition('URI');
            $result = $uri_def->filter($uri, $config, $context);
            if (!$result) {
                break;
            }

            // scheme-specific validation
            $scheme_obj = $uri->getSchemeObj($config, $context);
            if (!$scheme_obj) {
                break;
            }
            if ($this->embedsResource && !$scheme_obj->browsable) {
                break;
            }
            $result = $scheme_obj->validate($uri, $config, $context);
            if (!$result) {
                break;
            }

            // Post chained filtering
            $result = $uri_def->postFilter($uri, $config, $context);
            if (!$result) {
                break;
            }

            // survived gauntlet
            $ok = true;

        } while (false);

        $context->destroy('EmbeddedURI');
        if (!$ok) {
            return false;
        }
        // back to string
        return $uri->toString();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php000064400000001550151213255730017051 0ustar00<?php

/**
 * Dummy AttrDef that mimics another AttrDef, BUT it generates clones
 * with make.
 */
class HTMLPurifier_AttrDef_Clone extends HTMLPurifier_AttrDef
{
    /**
     * What we're cloning.
     * @type HTMLPurifier_AttrDef
     */
    protected $clone;

    /**
     * @param HTMLPurifier_AttrDef $clone
     */
    public function __construct($clone)
    {
        $this->clone = $clone;
    }

    /**
     * @param string $v
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($v, $config, $context)
    {
        return $this->clone->validate($v, $config, $context);
    }

    /**
     * @param string $string
     * @return HTMLPurifier_AttrDef
     */
    public function make($string)
    {
        return clone $this->clone;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php000064400000004243151213255730016717 0ustar00<?php

// Enum = Enumerated
/**
 * Validates a keyword against a list of valid values.
 * @warning The case-insensitive compare of this function uses PHP's
 *          built-in strtolower and ctype_lower functions, which may
 *          cause problems with international comparisons
 */
class HTMLPurifier_AttrDef_Enum extends HTMLPurifier_AttrDef
{

    /**
     * Lookup table of valid values.
     * @type array
     * @todo Make protected
     */
    public $valid_values = array();

    /**
     * Bool indicating whether or not enumeration is case sensitive.
     * @note In general this is always case insensitive.
     */
    protected $case_sensitive = false; // values according to W3C spec

    /**
     * @param array $valid_values List of valid values
     * @param bool $case_sensitive Whether or not case sensitive
     */
    public function __construct($valid_values = array(), $case_sensitive = false)
    {
        $this->valid_values = array_flip($valid_values);
        $this->case_sensitive = $case_sensitive;
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = trim($string);
        if (!$this->case_sensitive) {
            // we may want to do full case-insensitive libraries
            $string = ctype_lower($string) ? $string : strtolower($string);
        }
        $result = isset($this->valid_values[$string]);

        return $result ? $string : false;
    }

    /**
     * @param string $string In form of comma-delimited list of case-insensitive
     *      valid values. Example: "foo,bar,baz". Prepend "s:" to make
     *      case sensitive
     * @return HTMLPurifier_AttrDef_Enum
     */
    public function make($string)
    {
        if (strlen($string) > 2 && $string[0] == 's' && $string[1] == ':') {
            $string = substr($string, 2);
            $sensitive = true;
        } else {
            $sensitive = false;
        }
        $values = explode(',', $string);
        return new HTMLPurifier_AttrDef_Enum($values, $sensitive);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php000064400000002253151213255730017634 0ustar00<?php

/**
 * Validates a color according to the HTML spec.
 */
class HTMLPurifier_AttrDef_HTML_Color extends HTMLPurifier_AttrDef
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        static $colors = null;
        if ($colors === null) {
            $colors = $config->get('Core.ColorKeywords');
        }

        $string = trim($string);

        if (empty($string)) {
            return false;
        }
        $lower = strtolower($string);
        if (isset($colors[$lower])) {
            return $colors[$lower];
        }
        if ($string[0] === '#') {
            $hex = substr($string, 1);
        } else {
            $hex = $string;
        }

        $length = strlen($hex);
        if ($length !== 3 && $length !== 6) {
            return false;
        }
        if (!ctype_xdigit($hex)) {
            return false;
        }
        if ($length === 3) {
            $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2];
        }
        return "#$hex";
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php000064400000002464151213255730021016 0ustar00<?php

/**
 * Validates a MultiLength as defined by the HTML spec.
 *
 * A multilength is either a integer (pixel count), a percentage, or
 * a relative number.
 */
class HTMLPurifier_AttrDef_HTML_MultiLength extends HTMLPurifier_AttrDef_HTML_Length
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = trim($string);
        if ($string === '') {
            return false;
        }

        $parent_result = parent::validate($string, $config, $context);
        if ($parent_result !== false) {
            return $parent_result;
        }

        $length = strlen($string);
        $last_char = $string[$length - 1];

        if ($last_char !== '*') {
            return false;
        }

        $int = substr($string, 0, $length - 1);

        if ($int == '') {
            return '*';
        }
        if (!is_numeric($int)) {
            return false;
        }

        $int = (int)$int;
        if ($int < 0) {
            return false;
        }
        if ($int == 0) {
            return '0';
        }
        if ($int == 1) {
            return '*';
        }
        return ((string)$int) . '*';
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php000064400000002715151213255730017626 0ustar00<?php

/**
 * Implements special behavior for class attribute (normally NMTOKENS)
 */
class HTMLPurifier_AttrDef_HTML_Class extends HTMLPurifier_AttrDef_HTML_Nmtokens
{
    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    protected function split($string, $config, $context)
    {
        // really, this twiddle should be lazy loaded
        $name = $config->getDefinition('HTML')->doctype->name;
        if ($name == "XHTML 1.1" || $name == "XHTML 2.0") {
            return parent::split($string, $config, $context);
        } else {
            return preg_split('/\s+/', $string);
        }
    }

    /**
     * @param array $tokens
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    protected function filter($tokens, $config, $context)
    {
        $allowed = $config->get('Attr.AllowedClasses');
        $forbidden = $config->get('Attr.ForbiddenClasses');
        $ret = array();
        foreach ($tokens as $token) {
            if (($allowed === null || isset($allowed[$token])) &&
                !isset($forbidden[$token]) &&
                // We need this O(n) check because of PHP's array
                // implementation that casts -0 to 0.
                !in_array($token, $ret, true)
            ) {
                $ret[] = $token;
            }
        }
        return $ret;
    }
}
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php000064400000004141151213255730020352 0ustar00<?php

/**
 * Validates contents based on NMTOKENS attribute type.
 */
class HTMLPurifier_AttrDef_HTML_Nmtokens extends HTMLPurifier_AttrDef
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = trim($string);

        // early abort: '' and '0' (strings that convert to false) are invalid
        if (!$string) {
            return false;
        }

        $tokens = $this->split($string, $config, $context);
        $tokens = $this->filter($tokens, $config, $context);
        if (empty($tokens)) {
            return false;
        }
        return implode(' ', $tokens);
    }

    /**
     * Splits a space separated list of tokens into its constituent parts.
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    protected function split($string, $config, $context)
    {
        // OPTIMIZABLE!
        // do the preg_match, capture all subpatterns for reformulation

        // we don't support U+00A1 and up codepoints or
        // escaping because I don't know how to do that with regexps
        // and plus it would complicate optimization efforts (you never
        // see that anyway).
        $pattern = '/(?:(?<=\s)|\A)' . // look behind for space or string start
            '((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)' .
            '(?:(?=\s)|\z)/'; // look ahead for space or string end
        preg_match_all($pattern, $string, $matches);
        return $matches[1];
    }

    /**
     * Template method for removing certain tokens based on arbitrary criteria.
     * @note If we wanted to be really functional, we'd do an array_filter
     *       with a callback. But... we're not.
     * @param array $tokens
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    protected function filter($tokens, $config, $context)
    {
        return $tokens;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php000064400000001551151213255730017451 0ustar00<?php

/**
 * Validates a boolean attribute
 */
class HTMLPurifier_AttrDef_HTML_Bool extends HTMLPurifier_AttrDef
{

    /**
     * @type string
     */
    protected $name;

    /**
     * @type bool
     */
    public $minimized = true;

    /**
     * @param bool|string $name
     */
    public function __construct($name = false)
    {
        $this->name = $name;
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        return $this->name;
    }

    /**
     * @param string $string Name of attribute
     * @return HTMLPurifier_AttrDef_HTML_Bool
     */
    public function make($string)
    {
        return new HTMLPurifier_AttrDef_HTML_Bool($string);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php000064400000003350151213255730020477 0ustar00<?php

/**
 * Validates a rel/rev link attribute against a directive of allowed values
 * @note We cannot use Enum because link types allow multiple
 *       values.
 * @note Assumes link types are ASCII text
 */
class HTMLPurifier_AttrDef_HTML_LinkTypes extends HTMLPurifier_AttrDef
{

    /**
     * Name config attribute to pull.
     * @type string
     */
    protected $name;

    /**
     * @param string $name
     */
    public function __construct($name)
    {
        $configLookup = array(
            'rel' => 'AllowedRel',
            'rev' => 'AllowedRev'
        );
        if (!isset($configLookup[$name])) {
            trigger_error(
                'Unrecognized attribute name for link ' .
                'relationship.',
                E_USER_ERROR
            );
            return;
        }
        $this->name = $configLookup[$name];
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $allowed = $config->get('Attr.' . $this->name);
        if (empty($allowed)) {
            return false;
        }

        $string = $this->parseCDATA($string);
        $parts = explode(' ', $string);

        // lookup to prevent duplicates
        $ret_lookup = array();
        foreach ($parts as $part) {
            $part = strtolower(trim($part));
            if (!isset($allowed[$part])) {
                continue;
            }
            $ret_lookup[$part] = true;
        }

        if (empty($ret_lookup)) {
            return false;
        }
        $string = implode(' ', array_keys($ret_lookup));
        return $string;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php000064400000001502151213255730020753 0ustar00<?php

/**
 * Special-case enum attribute definition that lazy loads allowed frame targets
 */
class HTMLPurifier_AttrDef_HTML_FrameTarget extends HTMLPurifier_AttrDef_Enum
{

    /**
     * @type array
     */
    public $valid_values = false; // uninitialized value

    /**
     * @type bool
     */
    protected $case_sensitive = false;

    public function __construct()
    {
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        if ($this->valid_values === false) {
            $this->valid_values = $config->get('Attr.AllowedFrameTargets');
        }
        return parent::validate($string, $config, $context);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php000064400000006204151213255730017052 0ustar00<?php

/**
 * Validates the HTML attribute ID.
 * @warning Even though this is the id processor, it
 *          will ignore the directive Attr:IDBlacklist, since it will only
 *          go according to the ID accumulator. Since the accumulator is
 *          automatically generated, it will have already absorbed the
 *          blacklist. If you're hacking around, make sure you use load()!
 */

class HTMLPurifier_AttrDef_HTML_ID extends HTMLPurifier_AttrDef
{

    // selector is NOT a valid thing to use for IDREFs, because IDREFs
    // *must* target IDs that exist, whereas selector #ids do not.

    /**
     * Determines whether or not we're validating an ID in a CSS
     * selector context.
     * @type bool
     */
    protected $selector;

    /**
     * @param bool $selector
     */
    public function __construct($selector = false)
    {
        $this->selector = $selector;
    }

    /**
     * @param string $id
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($id, $config, $context)
    {
        if (!$this->selector && !$config->get('Attr.EnableID')) {
            return false;
        }

        $id = trim($id); // trim it first

        if ($id === '') {
            return false;
        }

        $prefix = $config->get('Attr.IDPrefix');
        if ($prefix !== '') {
            $prefix .= $config->get('Attr.IDPrefixLocal');
            // prevent re-appending the prefix
            if (strpos($id, $prefix) !== 0) {
                $id = $prefix . $id;
            }
        } elseif ($config->get('Attr.IDPrefixLocal') !== '') {
            trigger_error(
                '%Attr.IDPrefixLocal cannot be used unless ' .
                '%Attr.IDPrefix is set',
                E_USER_WARNING
            );
        }

        if (!$this->selector) {
            $id_accumulator =& $context->get('IDAccumulator');
            if (isset($id_accumulator->ids[$id])) {
                return false;
            }
        }

        // we purposely avoid using regex, hopefully this is faster

        if ($config->get('Attr.ID.HTML5') === true) {
            if (preg_match('/[\t\n\x0b\x0c ]/', $id)) {
                return false;
            }
        } else {
            if (ctype_alpha($id)) {
                // OK
            } else {
                if (!ctype_alpha(@$id[0])) {
                    return false;
                }
                // primitive style of regexps, I suppose
                $trim = trim(
                    $id,
                    'A..Za..z0..9:-._'
                );
                if ($trim !== '') {
                    return false;
                }
            }
        }

        $regexp = $config->get('Attr.IDBlacklistRegexp');
        if ($regexp && preg_match($regexp, $id)) {
            return false;
        }

        if (!$this->selector) {
            $id_accumulator->add($id);
        }

        // if no change was made to the ID, return the result
        // else, return the new id if stripping whitespace made it
        //     valid, or return false.
        return $id;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php000064400000002342151213255730017776 0ustar00<?php

/**
 * Validates the HTML type length (not to be confused with CSS's length).
 *
 * This accepts integer pixels or percentages as lengths for certain
 * HTML attributes.
 */

class HTMLPurifier_AttrDef_HTML_Length extends HTMLPurifier_AttrDef_HTML_Pixels
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = trim($string);
        if ($string === '') {
            return false;
        }

        $parent_result = parent::validate($string, $config, $context);
        if ($parent_result !== false) {
            return $parent_result;
        }

        $length = strlen($string);
        $last_char = $string[$length - 1];

        if ($last_char !== '%') {
            return false;
        }

        $points = substr($string, 0, $length - 1);

        if (!is_numeric($points)) {
            return false;
        }

        $points = (int)$points;

        if ($points < 0) {
            return '0%';
        }
        if ($points > 100) {
            return '100%';
        }
        return ((string)$points) . '%';
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php000064400000003274151213255730020026 0ustar00<?php

/**
 * Validates an integer representation of pixels according to the HTML spec.
 */
class HTMLPurifier_AttrDef_HTML_Pixels extends HTMLPurifier_AttrDef
{

    /**
     * @type int
     */
    protected $max;

    /**
     * @param int $max
     */
    public function __construct($max = null)
    {
        $this->max = $max;
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = trim($string);
        if ($string === '0') {
            return $string;
        }
        if ($string === '') {
            return false;
        }
        $length = strlen($string);
        if (substr($string, $length - 2) == 'px') {
            $string = substr($string, 0, $length - 2);
        }
        if (!is_numeric($string)) {
            return false;
        }
        $int = (int)$string;

        if ($int < 0) {
            return '0';
        }

        // upper-bound value, extremely high values can
        // crash operating systems, see <http://ha.ckers.org/imagecrash.html>
        // WARNING, above link WILL crash you if you're using Windows

        if ($this->max !== null && $int > $this->max) {
            return (string)$this->max;
        }
        return (string)$int;
    }

    /**
     * @param string $string
     * @return HTMLPurifier_AttrDef
     */
    public function make($string)
    {
        if ($string === '') {
            $max = null;
        } else {
            $max = (int)$string;
        }
        $class = get_class($this);
        return new $class($max);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php000064400000000527151213255730017502 0ustar00<?php

abstract class HTMLPurifier_AttrDef_URI_Email extends HTMLPurifier_AttrDef
{

    /**
     * Unpacks a mailbox into its display-name and address
     * @param string $string
     * @return mixed
     */
    public function unpack($string)
    {
        // needs to be implemented
    }

}

// sub-implementations

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php000064400000012432151213255730017366 0ustar00<?php

/**
 * Validates a host according to the IPv4, IPv6 and DNS (future) specifications.
 */
class HTMLPurifier_AttrDef_URI_Host extends HTMLPurifier_AttrDef
{

    /**
     * IPv4 sub-validator.
     * @type HTMLPurifier_AttrDef_URI_IPv4
     */
    protected $ipv4;

    /**
     * IPv6 sub-validator.
     * @type HTMLPurifier_AttrDef_URI_IPv6
     */
    protected $ipv6;

    public function __construct()
    {
        $this->ipv4 = new HTMLPurifier_AttrDef_URI_IPv4();
        $this->ipv6 = new HTMLPurifier_AttrDef_URI_IPv6();
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $length = strlen($string);
        // empty hostname is OK; it's usually semantically equivalent:
        // the default host as defined by a URI scheme is used:
        //
        //      If the URI scheme defines a default for host, then that
        //      default applies when the host subcomponent is undefined
        //      or when the registered name is empty (zero length).
        if ($string === '') {
            return '';
        }
        if ($length > 1 && $string[0] === '[' && $string[$length - 1] === ']') {
            //IPv6
            $ip = substr($string, 1, $length - 2);
            $valid = $this->ipv6->validate($ip, $config, $context);
            if ($valid === false) {
                return false;
            }
            return '[' . $valid . ']';
        }

        // need to do checks on unusual encodings too
        $ipv4 = $this->ipv4->validate($string, $config, $context);
        if ($ipv4 !== false) {
            return $ipv4;
        }

        // A regular domain name.

        // This doesn't match I18N domain names, but we don't have proper IRI support,
        // so force users to insert Punycode.

        // There is not a good sense in which underscores should be
        // allowed, since it's technically not! (And if you go as
        // far to allow everything as specified by the DNS spec...
        // well, that's literally everything, modulo some space limits
        // for the components and the overall name (which, by the way,
        // we are NOT checking!).  So we (arbitrarily) decide this:
        // let's allow underscores wherever we would have allowed
        // hyphens, if they are enabled.  This is a pretty good match
        // for browser behavior, for example, a large number of browsers
        // cannot handle foo_.example.com, but foo_bar.example.com is
        // fairly well supported.
        $underscore = $config->get('Core.AllowHostnameUnderscore') ? '_' : '';

        // Based off of RFC 1738, but amended so that
        // as per RFC 3696, the top label need only not be all numeric.
        // The productions describing this are:
        $a   = '[a-z]';     // alpha
        $an  = '[a-z0-9]';  // alphanum
        $and = "[a-z0-9-$underscore]"; // alphanum | "-"
        // domainlabel = alphanum | alphanum *( alphanum | "-" ) alphanum
        $domainlabel = "$an(?:$and*$an)?";
        // AMENDED as per RFC 3696
        // toplabel    = alphanum | alphanum *( alphanum | "-" ) alphanum
        //      side condition: not all numeric
        $toplabel = "$an(?:$and*$an)?";
        // hostname    = *( domainlabel "." ) toplabel [ "." ]
        if (preg_match("/^(?:$domainlabel\.)*($toplabel)\.?$/i", $string, $matches)) {
            if (!ctype_digit($matches[1])) {
                return $string;
            }
        }

        // PHP 5.3 and later support this functionality natively
        if (function_exists('idn_to_ascii')) {
            if (defined('IDNA_NONTRANSITIONAL_TO_ASCII') && defined('INTL_IDNA_VARIANT_UTS46')) {
                $string = idn_to_ascii($string, IDNA_NONTRANSITIONAL_TO_ASCII, INTL_IDNA_VARIANT_UTS46);
            } else {
                $string = idn_to_ascii($string);
            }

        // If we have Net_IDNA2 support, we can support IRIs by
        // punycoding them. (This is the most portable thing to do,
        // since otherwise we have to assume browsers support
        } elseif ($config->get('Core.EnableIDNA')) {
            $idna = new Net_IDNA2(array('encoding' => 'utf8', 'overlong' => false, 'strict' => true));
            // we need to encode each period separately
            $parts = explode('.', $string);
            try {
                $new_parts = array();
                foreach ($parts as $part) {
                    $encodable = false;
                    for ($i = 0, $c = strlen($part); $i < $c; $i++) {
                        if (ord($part[$i]) > 0x7a) {
                            $encodable = true;
                            break;
                        }
                    }
                    if (!$encodable) {
                        $new_parts[] = $part;
                    } else {
                        $new_parts[] = $idna->encode($part);
                    }
                }
                $string = implode('.', $new_parts);
            } catch (Exception $e) {
                // XXX error reporting
            }
        }
        // Try again
        if (preg_match("/^($domainlabel\.)*$toplabel\.?$/i", $string)) {
            return $string;
        }
        return false;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php000064400000004655151213255730017245 0ustar00<?php

/**
 * Validates an IPv6 address.
 * @author Feyd @ forums.devnetwork.net (public domain)
 * @note This function requires brackets to have been removed from address
 *       in URI.
 */
class HTMLPurifier_AttrDef_URI_IPv6 extends HTMLPurifier_AttrDef_URI_IPv4
{

    /**
     * @param string $aIP
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($aIP, $config, $context)
    {
        if (!$this->ip4) {
            $this->_loadRegex();
        }

        $original = $aIP;

        $hex = '[0-9a-fA-F]';
        $blk = '(?:' . $hex . '{1,4})';
        $pre = '(?:/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))'; // /0 - /128

        //      prefix check
        if (strpos($aIP, '/') !== false) {
            if (preg_match('#' . $pre . '$#s', $aIP, $find)) {
                $aIP = substr($aIP, 0, 0 - strlen($find[0]));
                unset($find);
            } else {
                return false;
            }
        }

        //      IPv4-compatiblity check
        if (preg_match('#(?<=:' . ')' . $this->ip4 . '$#s', $aIP, $find)) {
            $aIP = substr($aIP, 0, 0 - strlen($find[0]));
            $ip = explode('.', $find[0]);
            $ip = array_map('dechex', $ip);
            $aIP .= $ip[0] . $ip[1] . ':' . $ip[2] . $ip[3];
            unset($find, $ip);
        }

        //      compression check
        $aIP = explode('::', $aIP);
        $c = count($aIP);
        if ($c > 2) {
            return false;
        } elseif ($c == 2) {
            list($first, $second) = $aIP;
            $first = explode(':', $first);
            $second = explode(':', $second);

            if (count($first) + count($second) > 8) {
                return false;
            }

            while (count($first) < 8) {
                array_push($first, '0');
            }

            array_splice($first, 8 - count($second), 8, $second);
            $aIP = $first;
            unset($first, $second);
        } else {
            $aIP = explode(':', $aIP[0]);
        }
        $c = count($aIP);

        if ($c != 8) {
            return false;
        }

        //      All the pieces should be 16-bit hex strings. Are they?
        foreach ($aIP as $piece) {
            if (!preg_match('#^[0-9a-fA-F]{4}$#s', sprintf('%04s', $piece))) {
                return false;
            }
        }
        return $original;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php000064400000001470151213255730021667 0ustar00<?php

/**
 * Primitive email validation class based on the regexp found at
 * http://www.regular-expressions.info/email.html
 */
class HTMLPurifier_AttrDef_URI_Email_SimpleCheck extends HTMLPurifier_AttrDef_URI_Email
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        // no support for named mailboxes i.e. "Bob <bob@example.com>"
        // that needs more percent encoding to be done
        if ($string == '') {
            return false;
        }
        $string = trim($string);
        $result = preg_match('/^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i', $string);
        return $result ? $string : false;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php000064400000001746151213255730017241 0ustar00<?php

/**
 * Validates an IPv4 address
 * @author Feyd @ forums.devnetwork.net (public domain)
 */
class HTMLPurifier_AttrDef_URI_IPv4 extends HTMLPurifier_AttrDef
{

    /**
     * IPv4 regex, protected so that IPv6 can reuse it.
     * @type string
     */
    protected $ip4;

    /**
     * @param string $aIP
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($aIP, $config, $context)
    {
        if (!$this->ip4) {
            $this->_loadRegex();
        }

        if (preg_match('#^' . $this->ip4 . '$#s', $aIP)) {
            return $aIP;
        }
        return false;
    }

    /**
     * Lazy load function to prevent regex from being stuffed in
     * cache.
     */
    protected function _loadRegex()
    {
        $oct = '(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])'; // 0-255
        $this->ip4 = "(?:{$oct}\\.{$oct}\\.{$oct}\\.{$oct})";
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php000064400000011110151213255730017510 0ustar00<?php

/**
 * Validates Color as defined by CSS.
 */
class HTMLPurifier_AttrDef_CSS_Color extends HTMLPurifier_AttrDef
{

    /**
     * @type HTMLPurifier_AttrDef_CSS_AlphaValue
     */
    protected $alpha;

    public function __construct()
    {
        $this->alpha = new HTMLPurifier_AttrDef_CSS_AlphaValue();
    }

    /**
     * @param string $color
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($color, $config, $context)
    {
        static $colors = null;
        if ($colors === null) {
            $colors = $config->get('Core.ColorKeywords');
        }

        $color = trim($color);
        if ($color === '') {
            return false;
        }

        $lower = strtolower($color);
        if (isset($colors[$lower])) {
            return $colors[$lower];
        }

        if (preg_match('#(rgb|rgba|hsl|hsla)\(#', $color, $matches) === 1) {
            $length = strlen($color);
            if (strpos($color, ')') !== $length - 1) {
                return false;
            }

            // get used function : rgb, rgba, hsl or hsla
            $function = $matches[1];

            $parameters_size = 3;
            $alpha_channel = false;
            if (substr($function, -1) === 'a') {
                $parameters_size = 4;
                $alpha_channel = true;
            }

            /*
             * Allowed types for values :
             * parameter_position => [type => max_value]
             */
            $allowed_types = array(
                1 => array('percentage' => 100, 'integer' => 255),
                2 => array('percentage' => 100, 'integer' => 255),
                3 => array('percentage' => 100, 'integer' => 255),
            );
            $allow_different_types = false;

            if (strpos($function, 'hsl') !== false) {
                $allowed_types = array(
                    1 => array('integer' => 360),
                    2 => array('percentage' => 100),
                    3 => array('percentage' => 100),
                );
                $allow_different_types = true;
            }

            $values = trim(str_replace($function, '', $color), ' ()');

            $parts = explode(',', $values);
            if (count($parts) !== $parameters_size) {
                return false;
            }

            $type = false;
            $new_parts = array();
            $i = 0;

            foreach ($parts as $part) {
                $i++;
                $part = trim($part);

                if ($part === '') {
                    return false;
                }

                // different check for alpha channel
                if ($alpha_channel === true && $i === count($parts)) {
                    $result = $this->alpha->validate($part, $config, $context);

                    if ($result === false) {
                        return false;
                    }

                    $new_parts[] = (string)$result;
                    continue;
                }

                if (substr($part, -1) === '%') {
                    $current_type = 'percentage';
                } else {
                    $current_type = 'integer';
                }

                if (!array_key_exists($current_type, $allowed_types[$i])) {
                    return false;
                }

                if (!$type) {
                    $type = $current_type;
                }

                if ($allow_different_types === false && $type != $current_type) {
                    return false;
                }

                $max_value = $allowed_types[$i][$current_type];

                if ($current_type == 'integer') {
                    // Return value between range 0 -> $max_value
                    $new_parts[] = (int)max(min($part, $max_value), 0);
                } elseif ($current_type == 'percentage') {
                    $new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
                }
            }

            $new_values = implode(',', $new_parts);

            $color = $function . '(' . $new_values . ')';
        } else {
            // hexadecimal handling
            if ($color[0] === '#') {
                $hex = substr($color, 1);
            } else {
                $hex = $color;
                $color = '#' . $color;
            }
            $length = strlen($hex);
            if ($length !== 3 && $length !== 6) {
                return false;
            }
            if (!ctype_xdigit($hex)) {
                return false;
            }
        }
        return $color;
    }

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php000064400000005010151213255740017074 0ustar00<?php

/**
 * Validates a URI in CSS syntax, which uses url('http://example.com')
 * @note While theoretically speaking a URI in a CSS document could
 *       be non-embedded, as of CSS2 there is no such usage so we're
 *       generalizing it. This may need to be changed in the future.
 * @warning Since HTMLPurifier_AttrDef_CSS blindly uses semicolons as
 *          the separator, you cannot put a literal semicolon in
 *          in the URI. Try percent encoding it, in that case.
 */
class HTMLPurifier_AttrDef_CSS_URI extends HTMLPurifier_AttrDef_URI
{

    public function __construct()
    {
        parent::__construct(true); // always embedded
    }

    /**
     * @param string $uri_string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($uri_string, $config, $context)
    {
        // parse the URI out of the string and then pass it onto
        // the parent object

        $uri_string = $this->parseCDATA($uri_string);
        if (strpos($uri_string, 'url(') !== 0) {
            return false;
        }
        $uri_string = substr($uri_string, 4);
        if (strlen($uri_string) == 0) {
            return false;
        }
        $new_length = strlen($uri_string) - 1;
        if ($uri_string[$new_length] != ')') {
            return false;
        }
        $uri = trim(substr($uri_string, 0, $new_length));

        if (!empty($uri) && ($uri[0] == "'" || $uri[0] == '"')) {
            $quote = $uri[0];
            $new_length = strlen($uri) - 1;
            if ($uri[$new_length] !== $quote) {
                return false;
            }
            $uri = substr($uri, 1, $new_length - 1);
        }

        $uri = $this->expandCSSEscape($uri);

        $result = parent::validate($uri, $config, $context);

        if ($result === false) {
            return false;
        }

        // extra sanity check; should have been done by URI
        $result = str_replace(array('"', "\\", "\n", "\x0c", "\r"), "", $result);

        // suspicious characters are ()'; we're going to percent encode
        // them for safety.
        $result = str_replace(array('(', ')', "'"), array('%28', '%29', '%27'), $result);

        // there's an extra bug where ampersands lose their escaping on
        // an innerHTML cycle, so a very unlucky query parameter could
        // then change the meaning of the URL.  Unfortunately, there's
        // not much we can do about that...
        return "url(\"$result\")";
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php000064400000005537151213255740020407 0ustar00<?php

/**
 * Validates shorthand CSS property list-style.
 * @warning Does not support url tokens that have internal spaces.
 */
class HTMLPurifier_AttrDef_CSS_ListStyle extends HTMLPurifier_AttrDef
{

    /**
     * Local copy of validators.
     * @type HTMLPurifier_AttrDef[]
     * @note See HTMLPurifier_AttrDef_CSS_Font::$info for a similar impl.
     */
    protected $info;

    /**
     * @param HTMLPurifier_Config $config
     */
    public function __construct($config)
    {
        $def = $config->getCSSDefinition();
        $this->info['list-style-type'] = $def->info['list-style-type'];
        $this->info['list-style-position'] = $def->info['list-style-position'];
        $this->info['list-style-image'] = $def->info['list-style-image'];
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        // regular pre-processing
        $string = $this->parseCDATA($string);
        if ($string === '') {
            return false;
        }

        // assumes URI doesn't have spaces in it
        $bits = explode(' ', strtolower($string)); // bits to process

        $caught = array();
        $caught['type'] = false;
        $caught['position'] = false;
        $caught['image'] = false;

        $i = 0; // number of catches
        $none = false;

        foreach ($bits as $bit) {
            if ($i >= 3) {
                return;
            } // optimization bit
            if ($bit === '') {
                continue;
            }
            foreach ($caught as $key => $status) {
                if ($status !== false) {
                    continue;
                }
                $r = $this->info['list-style-' . $key]->validate($bit, $config, $context);
                if ($r === false) {
                    continue;
                }
                if ($r === 'none') {
                    if ($none) {
                        continue;
                    } else {
                        $none = true;
                    }
                    if ($key == 'image') {
                        continue;
                    }
                }
                $caught[$key] = $r;
                $i++;
                break;
            }
        }

        if (!$i) {
            return false;
        }

        $ret = array();

        // construct type
        if ($caught['type']) {
            $ret[] = $caught['type'];
        }

        // construct image
        if ($caught['image']) {
            $ret[] = $caught['image'];
        }

        // construct position
        if ($caught['position']) {
            $ret[] = $caught['position'];
        }

        if (empty($ret)) {
            return false;
        }
        return implode(' ', $ret);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php000064400000003075151213255740022266 0ustar00<?php

/**
 * Decorator which enables !important to be used in CSS values.
 */
class HTMLPurifier_AttrDef_CSS_ImportantDecorator extends HTMLPurifier_AttrDef
{
    /**
     * @type HTMLPurifier_AttrDef
     */
    public $def;
    /**
     * @type bool
     */
    public $allow;

    /**
     * @param HTMLPurifier_AttrDef $def Definition to wrap
     * @param bool $allow Whether or not to allow !important
     */
    public function __construct($def, $allow = false)
    {
        $this->def = $def;
        $this->allow = $allow;
    }

    /**
     * Intercepts and removes !important if necessary
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        // test for ! and important tokens
        $string = trim($string);
        $is_important = false;
        // :TODO: optimization: test directly for !important and ! important
        if (strlen($string) >= 9 && substr($string, -9) === 'important') {
            $temp = rtrim(substr($string, 0, -9));
            // use a temp, because we might want to restore important
            if (strlen($temp) >= 1 && substr($temp, -1) === '!') {
                $string = rtrim(substr($temp, 0, -1));
                $is_important = true;
            }
        }
        $string = $this->def->validate($string, $config, $context);
        if ($this->allow && $is_important) {
            $string .= ' !important';
        }
        return $string;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php000064400000014721151213255740017354 0ustar00<?php

/**
 * Validates shorthand CSS property font.
 */
class HTMLPurifier_AttrDef_CSS_Font extends HTMLPurifier_AttrDef
{

    /**
     * Local copy of validators
     * @type HTMLPurifier_AttrDef[]
     * @note If we moved specific CSS property definitions to their own
     *       classes instead of having them be assembled at run time by
     *       CSSDefinition, this wouldn't be necessary.  We'd instantiate
     *       our own copies.
     */
    protected $info = array();

    /**
     * @param HTMLPurifier_Config $config
     */
    public function __construct($config)
    {
        $def = $config->getCSSDefinition();
        $this->info['font-style'] = $def->info['font-style'];
        $this->info['font-variant'] = $def->info['font-variant'];
        $this->info['font-weight'] = $def->info['font-weight'];
        $this->info['font-size'] = $def->info['font-size'];
        $this->info['line-height'] = $def->info['line-height'];
        $this->info['font-family'] = $def->info['font-family'];
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        static $system_fonts = array(
            'caption' => true,
            'icon' => true,
            'menu' => true,
            'message-box' => true,
            'small-caption' => true,
            'status-bar' => true
        );

        // regular pre-processing
        $string = $this->parseCDATA($string);
        if ($string === '') {
            return false;
        }

        // check if it's one of the keywords
        $lowercase_string = strtolower($string);
        if (isset($system_fonts[$lowercase_string])) {
            return $lowercase_string;
        }

        $bits = explode(' ', $string); // bits to process
        $stage = 0; // this indicates what we're looking for
        $caught = array(); // which stage 0 properties have we caught?
        $stage_1 = array('font-style', 'font-variant', 'font-weight');
        $final = ''; // output

        for ($i = 0, $size = count($bits); $i < $size; $i++) {
            if ($bits[$i] === '') {
                continue;
            }
            switch ($stage) {
                case 0: // attempting to catch font-style, font-variant or font-weight
                    foreach ($stage_1 as $validator_name) {
                        if (isset($caught[$validator_name])) {
                            continue;
                        }
                        $r = $this->info[$validator_name]->validate(
                            $bits[$i],
                            $config,
                            $context
                        );
                        if ($r !== false) {
                            $final .= $r . ' ';
                            $caught[$validator_name] = true;
                            break;
                        }
                    }
                    // all three caught, continue on
                    if (count($caught) >= 3) {
                        $stage = 1;
                    }
                    if ($r !== false) {
                        break;
                    }
                case 1: // attempting to catch font-size and perhaps line-height
                    $found_slash = false;
                    if (strpos($bits[$i], '/') !== false) {
                        list($font_size, $line_height) =
                            explode('/', $bits[$i]);
                        if ($line_height === '') {
                            // ooh, there's a space after the slash!
                            $line_height = false;
                            $found_slash = true;
                        }
                    } else {
                        $font_size = $bits[$i];
                        $line_height = false;
                    }
                    $r = $this->info['font-size']->validate(
                        $font_size,
                        $config,
                        $context
                    );
                    if ($r !== false) {
                        $final .= $r;
                        // attempt to catch line-height
                        if ($line_height === false) {
                            // we need to scroll forward
                            for ($j = $i + 1; $j < $size; $j++) {
                                if ($bits[$j] === '') {
                                    continue;
                                }
                                if ($bits[$j] === '/') {
                                    if ($found_slash) {
                                        return false;
                                    } else {
                                        $found_slash = true;
                                        continue;
                                    }
                                }
                                $line_height = $bits[$j];
                                break;
                            }
                        } else {
                            // slash already found
                            $found_slash = true;
                            $j = $i;
                        }
                        if ($found_slash) {
                            $i = $j;
                            $r = $this->info['line-height']->validate(
                                $line_height,
                                $config,
                                $context
                            );
                            if ($r !== false) {
                                $final .= '/' . $r;
                            }
                        }
                        $final .= ' ';
                        $stage = 2;
                        break;
                    }
                    return false;
                case 2: // attempting to catch font-family
                    $font_family =
                        implode(' ', array_slice($bits, $i, $size - $i));
                    $r = $this->info['font-family']->validate(
                        $font_family,
                        $config,
                        $context
                    );
                    if ($r !== false) {
                        $final .= $r . ' ';
                        // processing completed successfully
                        return rtrim($final);
                    }
                    return false;
            }
        }
        return false;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php000064400000002377151213255740020527 0ustar00<?php

/**
 * Validates a Percentage as defined by the CSS spec.
 */
class HTMLPurifier_AttrDef_CSS_Percentage extends HTMLPurifier_AttrDef
{

    /**
     * Instance to defer number validation to.
     * @type HTMLPurifier_AttrDef_CSS_Number
     */
    protected $number_def;

    /**
     * @param bool $non_negative Whether to forbid negative values
     */
    public function __construct($non_negative = false)
    {
        $this->number_def = new HTMLPurifier_AttrDef_CSS_Number($non_negative);
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = $this->parseCDATA($string);

        if ($string === '') {
            return false;
        }
        $length = strlen($string);
        if ($length === 1) {
            return false;
        }
        if ($string[$length - 1] !== '%') {
            return false;
        }

        $number = substr($string, 0, $length - 1);
        $number = $this->number_def->validate($number, $config, $context);

        if ($number === false) {
            return false;
        }
        return "$number%";
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php000064400000001324151213255740017504 0ustar00<?php

/**
 * Validates based on {ident} CSS grammar production
 */
class HTMLPurifier_AttrDef_CSS_Ident extends HTMLPurifier_AttrDef
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = trim($string);

        // early abort: '' and '0' (strings that convert to false) are invalid
        if (!$string) {
            return false;
        }

        $pattern = '/^(-?[A-Za-z_][A-Za-z_\-0-9]*)$/';
        if (!preg_match($pattern, $string)) {
            return false;
        }
        return $string;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php000064400000002464151213255740020411 0ustar00<?php

/**
 * Allows multiple validators to attempt to validate attribute.
 *
 * Composite is just what it sounds like: a composite of many validators.
 * This means that multiple HTMLPurifier_AttrDef objects will have a whack
 * at the string.  If one of them passes, that's what is returned.  This is
 * especially useful for CSS values, which often are a choice between
 * an enumerated set of predefined values or a flexible data type.
 */
class HTMLPurifier_AttrDef_CSS_Composite extends HTMLPurifier_AttrDef
{

    /**
     * List of objects that may process strings.
     * @type HTMLPurifier_AttrDef[]
     * @todo Make protected
     */
    public $defs;

    /**
     * @param HTMLPurifier_AttrDef[] $defs List of HTMLPurifier_AttrDef objects
     */
    public function __construct($defs)
    {
        $this->defs = $defs;
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        foreach ($this->defs as $i => $def) {
            $result = $this->defs[$i]->validate($string, $config, $context);
            if ($result !== false) {
                return $result;
            }
        }
        return false;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php000064400000003067151213255740017664 0ustar00<?php

/**
 * Validates the border property as defined by CSS.
 */
class HTMLPurifier_AttrDef_CSS_Border extends HTMLPurifier_AttrDef
{

    /**
     * Local copy of properties this property is shorthand for.
     * @type HTMLPurifier_AttrDef[]
     */
    protected $info = array();

    /**
     * @param HTMLPurifier_Config $config
     */
    public function __construct($config)
    {
        $def = $config->getCSSDefinition();
        $this->info['border-width'] = $def->info['border-width'];
        $this->info['border-style'] = $def->info['border-style'];
        $this->info['border-top-color'] = $def->info['border-top-color'];
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = $this->parseCDATA($string);
        $string = $this->mungeRgb($string);
        $bits = explode(' ', $string);
        $done = array(); // segments we've finished
        $ret = ''; // return value
        foreach ($bits as $bit) {
            foreach ($this->info as $propname => $validator) {
                if (isset($done[$propname])) {
                    continue;
                }
                $r = $validator->validate($bit, $config, $context);
                if ($r !== false) {
                    $ret .= $r . ' ';
                    $done[$propname] = true;
                    break;
                }
            }
        }
        return rtrim($ret);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php000064400000004357151213255740017702 0ustar00<?php

/**
 * Validates a number as defined by the CSS spec.
 */
class HTMLPurifier_AttrDef_CSS_Number extends HTMLPurifier_AttrDef
{

    /**
     * Indicates whether or not only positive values are allowed.
     * @type bool
     */
    protected $non_negative = false;

    /**
     * @param bool $non_negative indicates whether negatives are forbidden
     */
    public function __construct($non_negative = false)
    {
        $this->non_negative = $non_negative;
    }

    /**
     * @param string $number
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string|bool
     * @warning Some contexts do not pass $config, $context. These
     *          variables should not be used without checking HTMLPurifier_Length
     */
    public function validate($number, $config, $context)
    {
        $number = $this->parseCDATA($number);

        if ($number === '') {
            return false;
        }
        if ($number === '0') {
            return '0';
        }

        $sign = '';
        switch ($number[0]) {
            case '-':
                if ($this->non_negative) {
                    return false;
                }
                $sign = '-';
            case '+':
                $number = substr($number, 1);
        }

        if (ctype_digit($number)) {
            $number = ltrim($number, '0');
            return $number ? $sign . $number : '0';
        }

        // Period is the only non-numeric character allowed
        if (strpos($number, '.') === false) {
            return false;
        }

        list($left, $right) = explode('.', $number, 2);

        if ($left === '' && $right === '') {
            return false;
        }
        if ($left !== '' && !ctype_digit($left)) {
            return false;
        }

        // Remove leading zeros until positive number or a zero stays left
        if (ltrim($left, '0') != '') {
            $left = ltrim($left, '0');
        } else {
            $left = '0';
        }

        $right = rtrim($right, '0');

        if ($right === '') {
            return $left ? $sign . $left : '0';
        } elseif (!ctype_digit($right)) {
            return false;
        }
        return $sign . $left . '.' . $right;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php000064400000001431151213255740020462 0ustar00<?php

class HTMLPurifier_AttrDef_CSS_AlphaValue extends HTMLPurifier_AttrDef_CSS_Number
{

    public function __construct()
    {
        parent::__construct(false); // opacity is non-negative, but we will clamp it
    }

    /**
     * @param string $number
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public function validate($number, $config, $context)
    {
        $result = parent::validate($number, $config, $context);
        if ($result === false) {
            return $result;
        }
        $float = (float)$result;
        if ($float < 0.0) {
            $result = '0';
        }
        if ($float > 1.0) {
            $result = '1';
        }
        return $result;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php000064400000004426151213255740017674 0ustar00<?php

/**
 * Microsoft's proprietary filter: CSS property
 * @note Currently supports the alpha filter. In the future, this will
 *       probably need an extensible framework
 */
class HTMLPurifier_AttrDef_CSS_Filter extends HTMLPurifier_AttrDef
{
    /**
     * @type HTMLPurifier_AttrDef_Integer
     */
    protected $intValidator;

    public function __construct()
    {
        $this->intValidator = new HTMLPurifier_AttrDef_Integer();
    }

    /**
     * @param string $value
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($value, $config, $context)
    {
        $value = $this->parseCDATA($value);
        if ($value === 'none') {
            return $value;
        }
        // if we looped this we could support multiple filters
        $function_length = strcspn($value, '(');
        $function = trim(substr($value, 0, $function_length));
        if ($function !== 'alpha' &&
            $function !== 'Alpha' &&
            $function !== 'progid:DXImageTransform.Microsoft.Alpha'
        ) {
            return false;
        }
        $cursor = $function_length + 1;
        $parameters_length = strcspn($value, ')', $cursor);
        $parameters = substr($value, $cursor, $parameters_length);
        $params = explode(',', $parameters);
        $ret_params = array();
        $lookup = array();
        foreach ($params as $param) {
            list($key, $value) = explode('=', $param);
            $key = trim($key);
            $value = trim($value);
            if (isset($lookup[$key])) {
                continue;
            }
            if ($key !== 'opacity') {
                continue;
            }
            $value = $this->intValidator->validate($value, $config, $context);
            if ($value === false) {
                continue;
            }
            $int = (int)$value;
            if ($int > 100) {
                $value = '100';
            }
            if ($int < 0) {
                $value = '0';
            }
            $ret_params[] = "$key=$value";
            $lookup[$key] = true;
        }
        $ret_parameters = implode(',', $ret_params);
        $ret_function = "$function($ret_parameters)";
        return $ret_function;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php000064400000010106151213255740022243 0ustar00<?php

/* W3C says:
    [ // adjective and number must be in correct order, even if
      // you could switch them without introducing ambiguity.
      // some browsers support that syntax
        [
            <percentage> | <length> | left | center | right
        ]
        [
            <percentage> | <length> | top | center | bottom
        ]?
    ] |
    [ // this signifies that the vertical and horizontal adjectives
      // can be arbitrarily ordered, however, there can only be two,
      // one of each, or none at all
        [
            left | center | right
        ] ||
        [
            top | center | bottom
        ]
    ]
    top, left = 0%
    center, (none) = 50%
    bottom, right = 100%
*/

/* QuirksMode says:
    keyword + length/percentage must be ordered correctly, as per W3C

    Internet Explorer and Opera, however, support arbitrary ordering. We
    should fix it up.

    Minor issue though, not strictly necessary.
*/

// control freaks may appreciate the ability to convert these to
// percentages or something, but it's not necessary

/**
 * Validates the value of background-position.
 */
class HTMLPurifier_AttrDef_CSS_BackgroundPosition extends HTMLPurifier_AttrDef
{

    /**
     * @type HTMLPurifier_AttrDef_CSS_Length
     */
    protected $length;

    /**
     * @type HTMLPurifier_AttrDef_CSS_Percentage
     */
    protected $percentage;

    public function __construct()
    {
        $this->length = new HTMLPurifier_AttrDef_CSS_Length();
        $this->percentage = new HTMLPurifier_AttrDef_CSS_Percentage();
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = $this->parseCDATA($string);
        $bits = explode(' ', $string);

        $keywords = array();
        $keywords['h'] = false; // left, right
        $keywords['v'] = false; // top, bottom
        $keywords['ch'] = false; // center (first word)
        $keywords['cv'] = false; // center (second word)
        $measures = array();

        $i = 0;

        $lookup = array(
            'top' => 'v',
            'bottom' => 'v',
            'left' => 'h',
            'right' => 'h',
            'center' => 'c'
        );

        foreach ($bits as $bit) {
            if ($bit === '') {
                continue;
            }

            // test for keyword
            $lbit = ctype_lower($bit) ? $bit : strtolower($bit);
            if (isset($lookup[$lbit])) {
                $status = $lookup[$lbit];
                if ($status == 'c') {
                    if ($i == 0) {
                        $status = 'ch';
                    } else {
                        $status = 'cv';
                    }
                }
                $keywords[$status] = $lbit;
                $i++;
            }

            // test for length
            $r = $this->length->validate($bit, $config, $context);
            if ($r !== false) {
                $measures[] = $r;
                $i++;
            }

            // test for percentage
            $r = $this->percentage->validate($bit, $config, $context);
            if ($r !== false) {
                $measures[] = $r;
                $i++;
            }
        }

        if (!$i) {
            return false;
        } // no valid values were caught

        $ret = array();

        // first keyword
        if ($keywords['h']) {
            $ret[] = $keywords['h'];
        } elseif ($keywords['ch']) {
            $ret[] = $keywords['ch'];
            $keywords['cv'] = false; // prevent re-use: center = center center
        } elseif (count($measures)) {
            $ret[] = array_shift($measures);
        }

        if ($keywords['v']) {
            $ret[] = $keywords['v'];
        } elseif ($keywords['cv']) {
            $ret[] = $keywords['cv'];
        } elseif (count($measures)) {
            $ret[] = array_shift($measures);
        }

        if (empty($ret)) {
            return false;
        }
        return implode(' ', $ret);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php000064400000006210151213255740020517 0ustar00<?php

/**
 * Validates shorthand CSS property background.
 * @warning Does not support url tokens that have internal spaces.
 */
class HTMLPurifier_AttrDef_CSS_Background extends HTMLPurifier_AttrDef
{

    /**
     * Local copy of component validators.
     * @type HTMLPurifier_AttrDef[]
     * @note See HTMLPurifier_AttrDef_Font::$info for a similar impl.
     */
    protected $info;

    /**
     * @param HTMLPurifier_Config $config
     */
    public function __construct($config)
    {
        $def = $config->getCSSDefinition();
        $this->info['background-color'] = $def->info['background-color'];
        $this->info['background-image'] = $def->info['background-image'];
        $this->info['background-repeat'] = $def->info['background-repeat'];
        $this->info['background-attachment'] = $def->info['background-attachment'];
        $this->info['background-position'] = $def->info['background-position'];
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        // regular pre-processing
        $string = $this->parseCDATA($string);
        if ($string === '') {
            return false;
        }

        // munge rgb() decl if necessary
        $string = $this->mungeRgb($string);

        // assumes URI doesn't have spaces in it
        $bits = explode(' ', $string); // bits to process

        $caught = array();
        $caught['color'] = false;
        $caught['image'] = false;
        $caught['repeat'] = false;
        $caught['attachment'] = false;
        $caught['position'] = false;

        $i = 0; // number of catches

        foreach ($bits as $bit) {
            if ($bit === '') {
                continue;
            }
            foreach ($caught as $key => $status) {
                if ($key != 'position') {
                    if ($status !== false) {
                        continue;
                    }
                    $r = $this->info['background-' . $key]->validate($bit, $config, $context);
                } else {
                    $r = $bit;
                }
                if ($r === false) {
                    continue;
                }
                if ($key == 'position') {
                    if ($caught[$key] === false) {
                        $caught[$key] = '';
                    }
                    $caught[$key] .= $r . ' ';
                } else {
                    $caught[$key] = $r;
                }
                $i++;
                break;
            }
        }

        if (!$i) {
            return false;
        }
        if ($caught['position'] !== false) {
            $caught['position'] = $this->info['background-position']->
                validate($caught['position'], $config, $context);
        }

        $ret = array();
        foreach ($caught as $value) {
            if ($value === false) {
                continue;
            }
            $ret[] = $value;
        }

        if (empty($ret)) {
            return false;
        }
        return implode(' ', $ret);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php000064400000022301151213255740020507 0ustar00<?php

/**
 * Validates a font family list according to CSS spec
 */
class HTMLPurifier_AttrDef_CSS_FontFamily extends HTMLPurifier_AttrDef
{

    protected $mask = null;

    public function __construct()
    {
        $this->mask = '_- ';
        for ($c = 'a'; $c <= 'z'; $c++) {
            $this->mask .= $c;
        }
        for ($c = 'A'; $c <= 'Z'; $c++) {
            $this->mask .= $c;
        }
        for ($c = '0'; $c <= '9'; $c++) {
            $this->mask .= $c;
        } // cast-y, but should be fine
        // special bytes used by UTF-8
        for ($i = 0x80; $i <= 0xFF; $i++) {
            // We don't bother excluding invalid bytes in this range,
            // because the our restriction of well-formed UTF-8 will
            // prevent these from ever occurring.
            $this->mask .= chr($i);
        }

        /*
            PHP's internal strcspn implementation is
            O(length of string * length of mask), making it inefficient
            for large masks.  However, it's still faster than
            preg_match 8)
          for (p = s1;;) {
            spanp = s2;
            do {
              if (*spanp == c || p == s1_end) {
                return p - s1;
              }
            } while (spanp++ < (s2_end - 1));
            c = *++p;
          }
         */
        // possible optimization: invert the mask.
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        static $generic_names = array(
            'serif' => true,
            'sans-serif' => true,
            'monospace' => true,
            'fantasy' => true,
            'cursive' => true
        );
        $allowed_fonts = $config->get('CSS.AllowedFonts');

        // assume that no font names contain commas in them
        $fonts = explode(',', $string);
        $final = '';
        foreach ($fonts as $font) {
            $font = trim($font);
            if ($font === '') {
                continue;
            }
            // match a generic name
            if (isset($generic_names[$font])) {
                if ($allowed_fonts === null || isset($allowed_fonts[$font])) {
                    $final .= $font . ', ';
                }
                continue;
            }
            // match a quoted name
            if ($font[0] === '"' || $font[0] === "'") {
                $length = strlen($font);
                if ($length <= 2) {
                    continue;
                }
                $quote = $font[0];
                if ($font[$length - 1] !== $quote) {
                    continue;
                }
                $font = substr($font, 1, $length - 2);
            }

            $font = $this->expandCSSEscape($font);

            // $font is a pure representation of the font name

            if ($allowed_fonts !== null && !isset($allowed_fonts[$font])) {
                continue;
            }

            if (ctype_alnum($font) && $font !== '') {
                // very simple font, allow it in unharmed
                $final .= $font . ', ';
                continue;
            }

            // bugger out on whitespace.  form feed (0C) really
            // shouldn't show up regardless
            $font = str_replace(array("\n", "\t", "\r", "\x0C"), ' ', $font);

            // Here, there are various classes of characters which need
            // to be treated differently:
            //  - Alphanumeric characters are essentially safe.  We
            //    handled these above.
            //  - Spaces require quoting, though most parsers will do
            //    the right thing if there aren't any characters that
            //    can be misinterpreted
            //  - Dashes rarely occur, but they fairly unproblematic
            //    for parsing/rendering purposes.
            //  The above characters cover the majority of Western font
            //  names.
            //  - Arbitrary Unicode characters not in ASCII.  Because
            //    most parsers give little thought to Unicode, treatment
            //    of these codepoints is basically uniform, even for
            //    punctuation-like codepoints.  These characters can
            //    show up in non-Western pages and are supported by most
            //    major browsers, for example: "MS 明朝" is a
            //    legitimate font-name
            //    <http://ja.wikipedia.org/wiki/MS_明朝>.  See
            //    the CSS3 spec for more examples:
            //    <http://www.w3.org/TR/2011/WD-css3-fonts-20110324/localizedfamilynames.png>
            //    You can see live samples of these on the Internet:
            //    <http://www.google.co.jp/search?q=font-family+MS+明朝|ゴシック>
            //    However, most of these fonts have ASCII equivalents:
            //    for example, 'MS Mincho', and it's considered
            //    professional to use ASCII font names instead of
            //    Unicode font names.  Thanks Takeshi Terada for
            //    providing this information.
            //  The following characters, to my knowledge, have not been
            //  used to name font names.
            //  - Single quote.  While theoretically you might find a
            //    font name that has a single quote in its name (serving
            //    as an apostrophe, e.g. Dave's Scribble), I haven't
            //    been able to find any actual examples of this.
            //    Internet Explorer's cssText translation (which I
            //    believe is invoked by innerHTML) normalizes any
            //    quoting to single quotes, and fails to escape single
            //    quotes.  (Note that this is not IE's behavior for all
            //    CSS properties, just some sort of special casing for
            //    font-family).  So a single quote *cannot* be used
            //    safely in the font-family context if there will be an
            //    innerHTML/cssText translation.  Note that Firefox 3.x
            //    does this too.
            //  - Double quote.  In IE, these get normalized to
            //    single-quotes, no matter what the encoding.  (Fun
            //    fact, in IE8, the 'content' CSS property gained
            //    support, where they special cased to preserve encoded
            //    double quotes, but still translate unadorned double
            //    quotes into single quotes.)  So, because their
            //    fixpoint behavior is identical to single quotes, they
            //    cannot be allowed either.  Firefox 3.x displays
            //    single-quote style behavior.
            //  - Backslashes are reduced by one (so \\ -> \) every
            //    iteration, so they cannot be used safely.  This shows
            //    up in IE7, IE8 and FF3
            //  - Semicolons, commas and backticks are handled properly.
            //  - The rest of the ASCII punctuation is handled properly.
            // We haven't checked what browsers do to unadorned
            // versions, but this is not important as long as the
            // browser doesn't /remove/ surrounding quotes (as IE does
            // for HTML).
            //
            // With these results in hand, we conclude that there are
            // various levels of safety:
            //  - Paranoid: alphanumeric, spaces and dashes(?)
            //  - International: Paranoid + non-ASCII Unicode
            //  - Edgy: Everything except quotes, backslashes
            //  - NoJS: Standards compliance, e.g. sod IE. Note that
            //    with some judicious character escaping (since certain
            //    types of escaping doesn't work) this is theoretically
            //    OK as long as innerHTML/cssText is not called.
            // We believe that international is a reasonable default
            // (that we will implement now), and once we do more
            // extensive research, we may feel comfortable with dropping
            // it down to edgy.

            // Edgy: alphanumeric, spaces, dashes, underscores and Unicode.  Use of
            // str(c)spn assumes that the string was already well formed
            // Unicode (which of course it is).
            if (strspn($font, $this->mask) !== strlen($font)) {
                continue;
            }

            // Historical:
            // In the absence of innerHTML/cssText, these ugly
            // transforms don't pose a security risk (as \\ and \"
            // might--these escapes are not supported by most browsers).
            // We could try to be clever and use single-quote wrapping
            // when there is a double quote present, but I have choosen
            // not to implement that.  (NOTE: you can reduce the amount
            // of escapes by one depending on what quoting style you use)
            // $font = str_replace('\\', '\\5C ', $font);
            // $font = str_replace('"',  '\\22 ', $font);
            // $font = str_replace("'",  '\\27 ', $font);

            // font possibly with spaces, requires quoting
            $final .= "'$font', ";
        }
        $final = rtrim($final, ', ');
        if ($final === '') {
            return false;
        }
        return $final;
    }

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php000064400000003551151213255740017666 0ustar00<?php

/**
 * Represents a Length as defined by CSS.
 */
class HTMLPurifier_AttrDef_CSS_Length extends HTMLPurifier_AttrDef
{

    /**
     * @type HTMLPurifier_Length|string
     */
    protected $min;

    /**
     * @type HTMLPurifier_Length|string
     */
    protected $max;

    /**
     * @param HTMLPurifier_Length|string $min Minimum length, or null for no bound. String is also acceptable.
     * @param HTMLPurifier_Length|string $max Maximum length, or null for no bound. String is also acceptable.
     */
    public function __construct($min = null, $max = null)
    {
        $this->min = $min !== null ? HTMLPurifier_Length::make($min) : null;
        $this->max = $max !== null ? HTMLPurifier_Length::make($max) : null;
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = $this->parseCDATA($string);

        // Optimizations
        if ($string === '') {
            return false;
        }
        if ($string === '0') {
            return '0';
        }
        if (strlen($string) === 1) {
            return false;
        }

        $length = HTMLPurifier_Length::make($string);
        if (!$length->isValid()) {
            return false;
        }

        if ($this->min) {
            $c = $length->compareTo($this->min);
            if ($c === false) {
                return false;
            }
            if ($c < 0) {
                return false;
            }
        }
        if ($this->max) {
            $c = $length->compareTo($this->max);
            if ($c === false) {
                return false;
            }
            if ($c > 0) {
                return false;
            }
        }
        return $length->toString();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php000064400000002063151213255740022516 0ustar00<?php

/**
 * Decorator which enables CSS properties to be disabled for specific elements.
 */
class HTMLPurifier_AttrDef_CSS_DenyElementDecorator extends HTMLPurifier_AttrDef
{
    /**
     * @type HTMLPurifier_AttrDef
     */
    public $def;
    /**
     * @type string
     */
    public $element;

    /**
     * @param HTMLPurifier_AttrDef $def Definition to wrap
     * @param string $element Element to deny
     */
    public function __construct($def, $element)
    {
        $this->def = $def;
        $this->element = $element;
    }

    /**
     * Checks if CurrentToken is set and equal to $this->element
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $token = $context->get('CurrentToken', true);
        if ($token && $token->name == $this->element) {
            return false;
        }
        return $this->def->validate($string, $config, $context);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php000064400000002204151213255740021373 0ustar00<?php

/**
 * Validates the value for the CSS property text-decoration
 * @note This class could be generalized into a version that acts sort of
 *       like Enum except you can compound the allowed values.
 */
class HTMLPurifier_AttrDef_CSS_TextDecoration extends HTMLPurifier_AttrDef
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        static $allowed_values = array(
            'line-through' => true,
            'overline' => true,
            'underline' => true,
        );

        $string = strtolower($this->parseCDATA($string));

        if ($string === 'none') {
            return $string;
        }

        $parts = explode(' ', $string);
        $final = '';
        foreach ($parts as $part) {
            if (isset($allowed_values[$part])) {
                $final .= $part . ' ';
            }
        }
        $final = rtrim($final);
        if ($final === '') {
            return false;
        }
        return $final;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php000064400000004054151213255740020237 0ustar00<?php

/**
 * Framework class for strings that involve multiple values.
 *
 * Certain CSS properties such as border-width and margin allow multiple
 * lengths to be specified.  This class can take a vanilla border-width
 * definition and multiply it, usually into a max of four.
 *
 * @note Even though the CSS specification isn't clear about it, inherit
 *       can only be used alone: it will never manifest as part of a multi
 *       shorthand declaration.  Thus, this class does not allow inherit.
 */
class HTMLPurifier_AttrDef_CSS_Multiple extends HTMLPurifier_AttrDef
{
    /**
     * Instance of component definition to defer validation to.
     * @type HTMLPurifier_AttrDef
     * @todo Make protected
     */
    public $single;

    /**
     * Max number of values allowed.
     * @todo Make protected
     */
    public $max;

    /**
     * @param HTMLPurifier_AttrDef $single HTMLPurifier_AttrDef to multiply
     * @param int $max Max number of values allowed (usually four)
     */
    public function __construct($single, $max = 4)
    {
        $this->single = $single;
        $this->max = $max;
    }

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = $this->mungeRgb($this->parseCDATA($string));
        if ($string === '') {
            return false;
        }
        $parts = explode(' ', $string); // parseCDATA replaced \r, \t and \n
        $length = count($parts);
        $final = '';
        for ($i = 0, $num = 0; $i < $length && $num < $this->max; $i++) {
            if (ctype_space($parts[$i])) {
                continue;
            }
            $result = $this->single->validate($parts[$i], $config, $context);
            if ($result !== false) {
                $final .= $result . ' ';
                $num++;
            }
        }
        if ($final === '') {
            return false;
        }
        return rtrim($final);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php000064400000004604151213255740016676 0ustar00<?php

/**
 * Validates the HTML attribute lang, effectively a language code.
 * @note Built according to RFC 3066, which obsoleted RFC 1766
 */
class HTMLPurifier_AttrDef_Lang extends HTMLPurifier_AttrDef
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        $string = trim($string);
        if (!$string) {
            return false;
        }

        $subtags = explode('-', $string);
        $num_subtags = count($subtags);

        if ($num_subtags == 0) { // sanity check
            return false;
        }

        // process primary subtag : $subtags[0]
        $length = strlen($subtags[0]);
        switch ($length) {
            case 0:
                return false;
            case 1:
                if (!($subtags[0] == 'x' || $subtags[0] == 'i')) {
                    return false;
                }
                break;
            case 2:
            case 3:
                if (!ctype_alpha($subtags[0])) {
                    return false;
                } elseif (!ctype_lower($subtags[0])) {
                    $subtags[0] = strtolower($subtags[0]);
                }
                break;
            default:
                return false;
        }

        $new_string = $subtags[0];
        if ($num_subtags == 1) {
            return $new_string;
        }

        // process second subtag : $subtags[1]
        $length = strlen($subtags[1]);
        if ($length == 0 || ($length == 1 && $subtags[1] != 'x') || $length > 8 || !ctype_alnum($subtags[1])) {
            return $new_string;
        }
        if (!ctype_lower($subtags[1])) {
            $subtags[1] = strtolower($subtags[1]);
        }

        $new_string .= '-' . $subtags[1];
        if ($num_subtags == 2) {
            return $new_string;
        }

        // process all other subtags, index 2 and up
        for ($i = 2; $i < $num_subtags; $i++) {
            $length = strlen($subtags[$i]);
            if ($length == 0 || $length > 8 || !ctype_alnum($subtags[$i])) {
                return $new_string;
            }
            if (!ctype_lower($subtags[$i])) {
                $subtags[$i] = strtolower($subtags[$i]);
            }
            $new_string .= '-' . $subtags[$i];
        }
        return $new_string;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php000064400000000656151213255740016744 0ustar00<?php

/**
 * Validates arbitrary text according to the HTML spec.
 */
class HTMLPurifier_AttrDef_Text extends HTMLPurifier_AttrDef
{

    /**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    public function validate($string, $config, $context)
    {
        return $this->parseCDATA($string);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Directive.php000064400000003661151213255740023161 0ustar00<?php

/**
 * Interchange component class describing configuration directives.
 */
class HTMLPurifier_ConfigSchema_Interchange_Directive
{

    /**
     * ID of directive.
     * @type HTMLPurifier_ConfigSchema_Interchange_Id
     */
    public $id;

    /**
     * Type, e.g. 'integer' or 'istring'.
     * @type string
     */
    public $type;

    /**
     * Default value, e.g. 3 or 'DefaultVal'.
     * @type mixed
     */
    public $default;

    /**
     * HTML description.
     * @type string
     */
    public $description;

    /**
     * Whether or not null is allowed as a value.
     * @type bool
     */
    public $typeAllowsNull = false;

    /**
     * Lookup table of allowed scalar values.
     * e.g. array('allowed' => true).
     * Null if all values are allowed.
     * @type array
     */
    public $allowed;

    /**
     * List of aliases for the directive.
     * e.g. array(new HTMLPurifier_ConfigSchema_Interchange_Id('Ns', 'Dir'))).
     * @type HTMLPurifier_ConfigSchema_Interchange_Id[]
     */
    public $aliases = array();

    /**
     * Hash of value aliases, e.g. array('alt' => 'real'). Null if value
     * aliasing is disabled (necessary for non-scalar types).
     * @type array
     */
    public $valueAliases;

    /**
     * Version of HTML Purifier the directive was introduced, e.g. '1.3.1'.
     * Null if the directive has always existed.
     * @type string
     */
    public $version;

    /**
     * ID of directive that supercedes this old directive.
     * Null if not deprecated.
     * @type HTMLPurifier_ConfigSchema_Interchange_Id
     */
    public $deprecatedUse;

    /**
     * Version of HTML Purifier this directive was deprecated. Null if not
     * deprecated.
     * @type string
     */
    public $deprecatedVersion;

    /**
     * List of external projects this directive depends on, e.g. array('CSSTidy').
     * @type array
     */
    public $external = array();
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Id.php000064400000002061151213255740021570 0ustar00<?php

/**
 * Represents a directive ID in the interchange format.
 */
class HTMLPurifier_ConfigSchema_Interchange_Id
{

    /**
     * @type string
     */
    public $key;

    /**
     * @param string $key
     */
    public function __construct($key)
    {
        $this->key = $key;
    }

    /**
     * @return string
     * @warning This is NOT magic, to ensure that people don't abuse SPL and
     *          cause problems for PHP 5.0 support.
     */
    public function toString()
    {
        return $this->key;
    }

    /**
     * @return string
     */
    public function getRootNamespace()
    {
        return substr($this->key, 0, strpos($this->key, "."));
    }

    /**
     * @return string
     */
    public function getDirective()
    {
        return substr($this->key, strpos($this->key, ".") + 1);
    }

    /**
     * @param string $id
     * @return HTMLPurifier_ConfigSchema_Interchange_Id
     */
    public static function make($id)
    {
        return new HTMLPurifier_ConfigSchema_Interchange_Id($id);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange.php000064400000002402151213255740021233 0ustar00<?php

/**
 * Generic schema interchange format that can be converted to a runtime
 * representation (HTMLPurifier_ConfigSchema) or HTML documentation. Members
 * are completely validated.
 */
class HTMLPurifier_ConfigSchema_Interchange
{

    /**
     * Name of the application this schema is describing.
     * @type string
     */
    public $name;

    /**
     * Array of Directive ID => array(directive info)
     * @type HTMLPurifier_ConfigSchema_Interchange_Directive[]
     */
    public $directives = array();

    /**
     * Adds a directive array to $directives
     * @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive
     * @throws HTMLPurifier_ConfigSchema_Exception
     */
    public function addDirective($directive)
    {
        if (isset($this->directives[$i = $directive->id->toString()])) {
            throw new HTMLPurifier_ConfigSchema_Exception("Cannot redefine directive '$i'");
        }
        $this->directives[$i] = $directive;
    }

    /**
     * Convenience function to perform standard validation. Throws exception
     * on failed validation.
     */
    public function validate()
    {
        $validator = new HTMLPurifier_ConfigSchema_Validator();
        return $validator->validate($this);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/Xml.php000064400000010424151213255740021135 0ustar00<?php

/**
 * Converts HTMLPurifier_ConfigSchema_Interchange to an XML format,
 * which can be further processed to generate documentation.
 */
class HTMLPurifier_ConfigSchema_Builder_Xml extends XMLWriter
{

    /**
     * @type HTMLPurifier_ConfigSchema_Interchange
     */
    protected $interchange;

    /**
     * @type string
     */
    private $namespace;

    /**
     * @param string $html
     */
    protected function writeHTMLDiv($html)
    {
        $this->startElement('div');

        $purifier = HTMLPurifier::getInstance();
        $html = $purifier->purify($html);
        $this->writeAttribute('xmlns', 'http://www.w3.org/1999/xhtml');
        $this->writeRaw($html);

        $this->endElement(); // div
    }

    /**
     * @param mixed $var
     * @return string
     */
    protected function export($var)
    {
        if ($var === array()) {
            return 'array()';
        }
        return var_export($var, true);
    }

    /**
     * @param HTMLPurifier_ConfigSchema_Interchange $interchange
     */
    public function build($interchange)
    {
        // global access, only use as last resort
        $this->interchange = $interchange;

        $this->setIndent(true);
        $this->startDocument('1.0', 'UTF-8');
        $this->startElement('configdoc');
        $this->writeElement('title', $interchange->name);

        foreach ($interchange->directives as $directive) {
            $this->buildDirective($directive);
        }

        if ($this->namespace) {
            $this->endElement();
        } // namespace

        $this->endElement(); // configdoc
        $this->flush();
    }

    /**
     * @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive
     */
    public function buildDirective($directive)
    {
        // Kludge, although I suppose having a notion of a "root namespace"
        // certainly makes things look nicer when documentation is built.
        // Depends on things being sorted.
        if (!$this->namespace || $this->namespace !== $directive->id->getRootNamespace()) {
            if ($this->namespace) {
                $this->endElement();
            } // namespace
            $this->namespace = $directive->id->getRootNamespace();
            $this->startElement('namespace');
            $this->writeAttribute('id', $this->namespace);
            $this->writeElement('name', $this->namespace);
        }

        $this->startElement('directive');
        $this->writeAttribute('id', $directive->id->toString());

        $this->writeElement('name', $directive->id->getDirective());

        $this->startElement('aliases');
        foreach ($directive->aliases as $alias) {
            $this->writeElement('alias', $alias->toString());
        }
        $this->endElement(); // aliases

        $this->startElement('constraints');
        if ($directive->version) {
            $this->writeElement('version', $directive->version);
        }
        $this->startElement('type');
        if ($directive->typeAllowsNull) {
            $this->writeAttribute('allow-null', 'yes');
        }
        $this->text($directive->type);
        $this->endElement(); // type
        if ($directive->allowed) {
            $this->startElement('allowed');
            foreach ($directive->allowed as $value => $x) {
                $this->writeElement('value', $value);
            }
            $this->endElement(); // allowed
        }
        $this->writeElement('default', $this->export($directive->default));
        $this->writeAttribute('xml:space', 'preserve');
        if ($directive->external) {
            $this->startElement('external');
            foreach ($directive->external as $project) {
                $this->writeElement('project', $project);
            }
            $this->endElement();
        }
        $this->endElement(); // constraints

        if ($directive->deprecatedVersion) {
            $this->startElement('deprecated');
            $this->writeElement('version', $directive->deprecatedVersion);
            $this->writeElement('use', $directive->deprecatedUse->toString());
            $this->endElement(); // deprecated
        }

        $this->startElement('description');
        $this->writeHTMLDiv($directive->description);
        $this->endElement(); // description

        $this->endElement(); // directive
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php000064400000002375151213255750022732 0ustar00<?php

/**
 * Converts HTMLPurifier_ConfigSchema_Interchange to our runtime
 * representation used to perform checks on user configuration.
 */
class HTMLPurifier_ConfigSchema_Builder_ConfigSchema
{

    /**
     * @param HTMLPurifier_ConfigSchema_Interchange $interchange
     * @return HTMLPurifier_ConfigSchema
     */
    public function build($interchange)
    {
        $schema = new HTMLPurifier_ConfigSchema();
        foreach ($interchange->directives as $d) {
            $schema->add(
                $d->id->key,
                $d->default,
                $d->type,
                $d->typeAllowsNull
            );
            if ($d->allowed !== null) {
                $schema->addAllowedValues(
                    $d->id->key,
                    $d->allowed
                );
            }
            foreach ($d->aliases as $alias) {
                $schema->addAlias(
                    $alias->key,
                    $d->id->key
                );
            }
            if ($d->valueAliases !== null) {
                $schema->addValueAliases(
                    $d->id->key,
                    $d->valueAliases
                );
            }
        }
        $schema->postProcess();
        return $schema;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema.ser000064400000057176151213255750020271 0ustar00O:25:"HTMLPurifier_ConfigSchema":3:{s:8:"defaults";a:127:{s:19:"Attr.AllowedClasses";N;s:24:"Attr.AllowedFrameTargets";a:0:{}s:15:"Attr.AllowedRel";a:0:{}s:15:"Attr.AllowedRev";a:0:{}s:18:"Attr.ClassUseCDATA";N;s:20:"Attr.DefaultImageAlt";N;s:24:"Attr.DefaultInvalidImage";s:0:"";s:27:"Attr.DefaultInvalidImageAlt";s:13:"Invalid image";s:19:"Attr.DefaultTextDir";s:3:"ltr";s:13:"Attr.EnableID";b:0;s:21:"Attr.ForbiddenClasses";a:0:{}s:13:"Attr.ID.HTML5";N;s:16:"Attr.IDBlacklist";a:0:{}s:22:"Attr.IDBlacklistRegexp";N;s:13:"Attr.IDPrefix";s:0:"";s:18:"Attr.IDPrefixLocal";s:0:"";s:24:"AutoFormat.AutoParagraph";b:0;s:17:"AutoFormat.Custom";a:0:{}s:25:"AutoFormat.DisplayLinkURI";b:0;s:18:"AutoFormat.Linkify";b:0;s:33:"AutoFormat.PurifierLinkify.DocURL";s:3:"#%s";s:26:"AutoFormat.PurifierLinkify";b:0;s:32:"AutoFormat.RemoveEmpty.Predicate";a:4:{s:8:"colgroup";a:0:{}s:2:"th";a:0:{}s:2:"td";a:0:{}s:6:"iframe";a:1:{i:0;s:3:"src";}}s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";a:2:{s:2:"td";b:1;s:2:"th";b:1;}s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";b:0;s:22:"AutoFormat.RemoveEmpty";b:0;s:39:"AutoFormat.RemoveSpansWithoutAttributes";b:0;s:19:"CSS.AllowDuplicates";b:0;s:18:"CSS.AllowImportant";b:0;s:15:"CSS.AllowTricky";b:0;s:16:"CSS.AllowedFonts";N;s:21:"CSS.AllowedProperties";N;s:17:"CSS.DefinitionRev";i:1;s:23:"CSS.ForbiddenProperties";a:0:{}s:16:"CSS.MaxImgLength";s:6:"1200px";s:15:"CSS.Proprietary";b:0;s:11:"CSS.Trusted";b:0;s:20:"Cache.DefinitionImpl";s:10:"Serializer";s:20:"Cache.SerializerPath";N;s:27:"Cache.SerializerPermissions";i:493;s:22:"Core.AggressivelyFixLt";b:1;s:29:"Core.AggressivelyRemoveScript";b:1;s:28:"Core.AllowHostnameUnderscore";b:0;s:23:"Core.AllowParseManyTags";b:0;s:18:"Core.CollectErrors";b:0;s:18:"Core.ColorKeywords";a:148:{s:9:"aliceblue";s:7:"#F0F8FF";s:12:"antiquewhite";s:7:"#FAEBD7";s:4:"aqua";s:7:"#00FFFF";s:10:"aquamarine";s:7:"#7FFFD4";s:5:"azure";s:7:"#F0FFFF";s:5:"beige";s:7:"#F5F5DC";s:6:"bisque";s:7:"#FFE4C4";s:5:"black";s:7:"#000000";s:14:"blanchedalmond";s:7:"#FFEBCD";s:4:"blue";s:7:"#0000FF";s:10:"blueviolet";s:7:"#8A2BE2";s:5:"brown";s:7:"#A52A2A";s:9:"burlywood";s:7:"#DEB887";s:9:"cadetblue";s:7:"#5F9EA0";s:10:"chartreuse";s:7:"#7FFF00";s:9:"chocolate";s:7:"#D2691E";s:5:"coral";s:7:"#FF7F50";s:14:"cornflowerblue";s:7:"#6495ED";s:8:"cornsilk";s:7:"#FFF8DC";s:7:"crimson";s:7:"#DC143C";s:4:"cyan";s:7:"#00FFFF";s:8:"darkblue";s:7:"#00008B";s:8:"darkcyan";s:7:"#008B8B";s:13:"darkgoldenrod";s:7:"#B8860B";s:8:"darkgray";s:7:"#A9A9A9";s:8:"darkgrey";s:7:"#A9A9A9";s:9:"darkgreen";s:7:"#006400";s:9:"darkkhaki";s:7:"#BDB76B";s:11:"darkmagenta";s:7:"#8B008B";s:14:"darkolivegreen";s:7:"#556B2F";s:10:"darkorange";s:7:"#FF8C00";s:10:"darkorchid";s:7:"#9932CC";s:7:"darkred";s:7:"#8B0000";s:10:"darksalmon";s:7:"#E9967A";s:12:"darkseagreen";s:7:"#8FBC8F";s:13:"darkslateblue";s:7:"#483D8B";s:13:"darkslategray";s:7:"#2F4F4F";s:13:"darkslategrey";s:7:"#2F4F4F";s:13:"darkturquoise";s:7:"#00CED1";s:10:"darkviolet";s:7:"#9400D3";s:8:"deeppink";s:7:"#FF1493";s:11:"deepskyblue";s:7:"#00BFFF";s:7:"dimgray";s:7:"#696969";s:7:"dimgrey";s:7:"#696969";s:10:"dodgerblue";s:7:"#1E90FF";s:9:"firebrick";s:7:"#B22222";s:11:"floralwhite";s:7:"#FFFAF0";s:11:"forestgreen";s:7:"#228B22";s:7:"fuchsia";s:7:"#FF00FF";s:9:"gainsboro";s:7:"#DCDCDC";s:10:"ghostwhite";s:7:"#F8F8FF";s:4:"gold";s:7:"#FFD700";s:9:"goldenrod";s:7:"#DAA520";s:4:"gray";s:7:"#808080";s:4:"grey";s:7:"#808080";s:5:"green";s:7:"#008000";s:11:"greenyellow";s:7:"#ADFF2F";s:8:"honeydew";s:7:"#F0FFF0";s:7:"hotpink";s:7:"#FF69B4";s:9:"indianred";s:7:"#CD5C5C";s:6:"indigo";s:7:"#4B0082";s:5:"ivory";s:7:"#FFFFF0";s:5:"khaki";s:7:"#F0E68C";s:8:"lavender";s:7:"#E6E6FA";s:13:"lavenderblush";s:7:"#FFF0F5";s:9:"lawngreen";s:7:"#7CFC00";s:12:"lemonchiffon";s:7:"#FFFACD";s:9:"lightblue";s:7:"#ADD8E6";s:10:"lightcoral";s:7:"#F08080";s:9:"lightcyan";s:7:"#E0FFFF";s:20:"lightgoldenrodyellow";s:7:"#FAFAD2";s:9:"lightgray";s:7:"#D3D3D3";s:9:"lightgrey";s:7:"#D3D3D3";s:10:"lightgreen";s:7:"#90EE90";s:9:"lightpink";s:7:"#FFB6C1";s:11:"lightsalmon";s:7:"#FFA07A";s:13:"lightseagreen";s:7:"#20B2AA";s:12:"lightskyblue";s:7:"#87CEFA";s:14:"lightslategray";s:7:"#778899";s:14:"lightslategrey";s:7:"#778899";s:14:"lightsteelblue";s:7:"#B0C4DE";s:11:"lightyellow";s:7:"#FFFFE0";s:4:"lime";s:7:"#00FF00";s:9:"limegreen";s:7:"#32CD32";s:5:"linen";s:7:"#FAF0E6";s:7:"magenta";s:7:"#FF00FF";s:6:"maroon";s:7:"#800000";s:16:"mediumaquamarine";s:7:"#66CDAA";s:10:"mediumblue";s:7:"#0000CD";s:12:"mediumorchid";s:7:"#BA55D3";s:12:"mediumpurple";s:7:"#9370DB";s:14:"mediumseagreen";s:7:"#3CB371";s:15:"mediumslateblue";s:7:"#7B68EE";s:17:"mediumspringgreen";s:7:"#00FA9A";s:15:"mediumturquoise";s:7:"#48D1CC";s:15:"mediumvioletred";s:7:"#C71585";s:12:"midnightblue";s:7:"#191970";s:9:"mintcream";s:7:"#F5FFFA";s:9:"mistyrose";s:7:"#FFE4E1";s:8:"moccasin";s:7:"#FFE4B5";s:11:"navajowhite";s:7:"#FFDEAD";s:4:"navy";s:7:"#000080";s:7:"oldlace";s:7:"#FDF5E6";s:5:"olive";s:7:"#808000";s:9:"olivedrab";s:7:"#6B8E23";s:6:"orange";s:7:"#FFA500";s:9:"orangered";s:7:"#FF4500";s:6:"orchid";s:7:"#DA70D6";s:13:"palegoldenrod";s:7:"#EEE8AA";s:9:"palegreen";s:7:"#98FB98";s:13:"paleturquoise";s:7:"#AFEEEE";s:13:"palevioletred";s:7:"#DB7093";s:10:"papayawhip";s:7:"#FFEFD5";s:9:"peachpuff";s:7:"#FFDAB9";s:4:"peru";s:7:"#CD853F";s:4:"pink";s:7:"#FFC0CB";s:4:"plum";s:7:"#DDA0DD";s:10:"powderblue";s:7:"#B0E0E6";s:6:"purple";s:7:"#800080";s:13:"rebeccapurple";s:7:"#663399";s:3:"red";s:7:"#FF0000";s:9:"rosybrown";s:7:"#BC8F8F";s:9:"royalblue";s:7:"#4169E1";s:11:"saddlebrown";s:7:"#8B4513";s:6:"salmon";s:7:"#FA8072";s:10:"sandybrown";s:7:"#F4A460";s:8:"seagreen";s:7:"#2E8B57";s:8:"seashell";s:7:"#FFF5EE";s:6:"sienna";s:7:"#A0522D";s:6:"silver";s:7:"#C0C0C0";s:7:"skyblue";s:7:"#87CEEB";s:9:"slateblue";s:7:"#6A5ACD";s:9:"slategray";s:7:"#708090";s:9:"slategrey";s:7:"#708090";s:4:"snow";s:7:"#FFFAFA";s:11:"springgreen";s:7:"#00FF7F";s:9:"steelblue";s:7:"#4682B4";s:3:"tan";s:7:"#D2B48C";s:4:"teal";s:7:"#008080";s:7:"thistle";s:7:"#D8BFD8";s:6:"tomato";s:7:"#FF6347";s:9:"turquoise";s:7:"#40E0D0";s:6:"violet";s:7:"#EE82EE";s:5:"wheat";s:7:"#F5DEB3";s:5:"white";s:7:"#FFFFFF";s:10:"whitesmoke";s:7:"#F5F5F5";s:6:"yellow";s:7:"#FFFF00";s:11:"yellowgreen";s:7:"#9ACD32";}s:30:"Core.ConvertDocumentToFragment";b:1;s:36:"Core.DirectLexLineNumberSyncInterval";i:0;s:20:"Core.DisableExcludes";b:0;s:15:"Core.EnableIDNA";b:0;s:13:"Core.Encoding";s:5:"utf-8";s:26:"Core.EscapeInvalidChildren";b:0;s:22:"Core.EscapeInvalidTags";b:0;s:29:"Core.EscapeNonASCIICharacters";b:0;s:19:"Core.HiddenElements";a:2:{s:6:"script";b:1;s:5:"style";b:1;}s:13:"Core.Language";s:2:"en";s:24:"Core.LegacyEntityDecoder";b:0;s:14:"Core.LexerImpl";N;s:24:"Core.MaintainLineNumbers";N;s:22:"Core.NormalizeNewlines";b:1;s:21:"Core.RemoveInvalidImg";b:1;s:33:"Core.RemoveProcessingInstructions";b:0;s:25:"Core.RemoveScriptContents";N;s:13:"Filter.Custom";a:0:{}s:34:"Filter.ExtractStyleBlocks.Escaping";b:1;s:31:"Filter.ExtractStyleBlocks.Scope";N;s:34:"Filter.ExtractStyleBlocks.TidyImpl";N;s:25:"Filter.ExtractStyleBlocks";b:0;s:14:"Filter.YouTube";b:0;s:12:"HTML.Allowed";N;s:22:"HTML.AllowedAttributes";N;s:20:"HTML.AllowedComments";a:0:{}s:26:"HTML.AllowedCommentsRegexp";N;s:20:"HTML.AllowedElements";N;s:19:"HTML.AllowedModules";N;s:23:"HTML.Attr.Name.UseCDATA";b:0;s:17:"HTML.BlockWrapper";s:1:"p";s:16:"HTML.CoreModules";a:7:{s:9:"Structure";b:1;s:4:"Text";b:1;s:9:"Hypertext";b:1;s:4:"List";b:1;s:22:"NonXMLCommonAttributes";b:1;s:19:"XMLCommonAttributes";b:1;s:16:"CommonAttributes";b:1;}s:18:"HTML.CustomDoctype";N;s:17:"HTML.DefinitionID";N;s:18:"HTML.DefinitionRev";i:1;s:12:"HTML.Doctype";N;s:25:"HTML.FlashAllowFullScreen";b:0;s:24:"HTML.ForbiddenAttributes";a:0:{}s:22:"HTML.ForbiddenElements";a:0:{}s:10:"HTML.Forms";b:0;s:17:"HTML.MaxImgLength";i:1200;s:13:"HTML.Nofollow";b:0;s:11:"HTML.Parent";s:3:"div";s:16:"HTML.Proprietary";b:0;s:14:"HTML.SafeEmbed";b:0;s:15:"HTML.SafeIframe";b:0;s:15:"HTML.SafeObject";b:0;s:18:"HTML.SafeScripting";a:0:{}s:11:"HTML.Strict";b:0;s:16:"HTML.TargetBlank";b:0;s:19:"HTML.TargetNoopener";b:1;s:21:"HTML.TargetNoreferrer";b:1;s:12:"HTML.TidyAdd";a:0:{}s:14:"HTML.TidyLevel";s:6:"medium";s:15:"HTML.TidyRemove";a:0:{}s:12:"HTML.Trusted";b:0;s:10:"HTML.XHTML";b:1;s:28:"Output.CommentScriptContents";b:1;s:19:"Output.FixInnerHTML";b:1;s:18:"Output.FlashCompat";b:0;s:14:"Output.Newline";N;s:15:"Output.SortAttr";b:0;s:17:"Output.TidyFormat";b:0;s:17:"Test.ForceNoIconv";b:0;s:18:"URI.AllowedSchemes";a:7:{s:4:"http";b:1;s:5:"https";b:1;s:6:"mailto";b:1;s:3:"ftp";b:1;s:4:"nntp";b:1;s:4:"news";b:1;s:3:"tel";b:1;}s:8:"URI.Base";N;s:17:"URI.DefaultScheme";s:4:"http";s:16:"URI.DefinitionID";N;s:17:"URI.DefinitionRev";i:1;s:11:"URI.Disable";b:0;s:19:"URI.DisableExternal";b:0;s:28:"URI.DisableExternalResources";b:0;s:20:"URI.DisableResources";b:0;s:8:"URI.Host";N;s:17:"URI.HostBlacklist";a:0:{}s:16:"URI.MakeAbsolute";b:0;s:9:"URI.Munge";N;s:18:"URI.MungeResources";b:0;s:18:"URI.MungeSecretKey";N;s:26:"URI.OverrideAllowedSchemes";b:1;s:20:"URI.SafeIframeRegexp";N;}s:12:"defaultPlist";O:25:"HTMLPurifier_PropertyList":3:{s:7:"*data";a:127:{s:19:"Attr.AllowedClasses";N;s:24:"Attr.AllowedFrameTargets";a:0:{}s:15:"Attr.AllowedRel";a:0:{}s:15:"Attr.AllowedRev";a:0:{}s:18:"Attr.ClassUseCDATA";N;s:20:"Attr.DefaultImageAlt";N;s:24:"Attr.DefaultInvalidImage";s:0:"";s:27:"Attr.DefaultInvalidImageAlt";s:13:"Invalid image";s:19:"Attr.DefaultTextDir";s:3:"ltr";s:13:"Attr.EnableID";b:0;s:21:"Attr.ForbiddenClasses";a:0:{}s:13:"Attr.ID.HTML5";N;s:16:"Attr.IDBlacklist";a:0:{}s:22:"Attr.IDBlacklistRegexp";N;s:13:"Attr.IDPrefix";s:0:"";s:18:"Attr.IDPrefixLocal";s:0:"";s:24:"AutoFormat.AutoParagraph";b:0;s:17:"AutoFormat.Custom";a:0:{}s:25:"AutoFormat.DisplayLinkURI";b:0;s:18:"AutoFormat.Linkify";b:0;s:33:"AutoFormat.PurifierLinkify.DocURL";s:3:"#%s";s:26:"AutoFormat.PurifierLinkify";b:0;s:32:"AutoFormat.RemoveEmpty.Predicate";a:4:{s:8:"colgroup";a:0:{}s:2:"th";a:0:{}s:2:"td";a:0:{}s:6:"iframe";a:1:{i:0;s:3:"src";}}s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";a:2:{s:2:"td";b:1;s:2:"th";b:1;}s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";b:0;s:22:"AutoFormat.RemoveEmpty";b:0;s:39:"AutoFormat.RemoveSpansWithoutAttributes";b:0;s:19:"CSS.AllowDuplicates";b:0;s:18:"CSS.AllowImportant";b:0;s:15:"CSS.AllowTricky";b:0;s:16:"CSS.AllowedFonts";N;s:21:"CSS.AllowedProperties";N;s:17:"CSS.DefinitionRev";i:1;s:23:"CSS.ForbiddenProperties";a:0:{}s:16:"CSS.MaxImgLength";s:6:"1200px";s:15:"CSS.Proprietary";b:0;s:11:"CSS.Trusted";b:0;s:20:"Cache.DefinitionImpl";s:10:"Serializer";s:20:"Cache.SerializerPath";N;s:27:"Cache.SerializerPermissions";i:493;s:22:"Core.AggressivelyFixLt";b:1;s:29:"Core.AggressivelyRemoveScript";b:1;s:28:"Core.AllowHostnameUnderscore";b:0;s:23:"Core.AllowParseManyTags";b:0;s:18:"Core.CollectErrors";b:0;s:18:"Core.ColorKeywords";a:148:{s:9:"aliceblue";s:7:"#F0F8FF";s:12:"antiquewhite";s:7:"#FAEBD7";s:4:"aqua";s:7:"#00FFFF";s:10:"aquamarine";s:7:"#7FFFD4";s:5:"azure";s:7:"#F0FFFF";s:5:"beige";s:7:"#F5F5DC";s:6:"bisque";s:7:"#FFE4C4";s:5:"black";s:7:"#000000";s:14:"blanchedalmond";s:7:"#FFEBCD";s:4:"blue";s:7:"#0000FF";s:10:"blueviolet";s:7:"#8A2BE2";s:5:"brown";s:7:"#A52A2A";s:9:"burlywood";s:7:"#DEB887";s:9:"cadetblue";s:7:"#5F9EA0";s:10:"chartreuse";s:7:"#7FFF00";s:9:"chocolate";s:7:"#D2691E";s:5:"coral";s:7:"#FF7F50";s:14:"cornflowerblue";s:7:"#6495ED";s:8:"cornsilk";s:7:"#FFF8DC";s:7:"crimson";s:7:"#DC143C";s:4:"cyan";s:7:"#00FFFF";s:8:"darkblue";s:7:"#00008B";s:8:"darkcyan";s:7:"#008B8B";s:13:"darkgoldenrod";s:7:"#B8860B";s:8:"darkgray";s:7:"#A9A9A9";s:8:"darkgrey";s:7:"#A9A9A9";s:9:"darkgreen";s:7:"#006400";s:9:"darkkhaki";s:7:"#BDB76B";s:11:"darkmagenta";s:7:"#8B008B";s:14:"darkolivegreen";s:7:"#556B2F";s:10:"darkorange";s:7:"#FF8C00";s:10:"darkorchid";s:7:"#9932CC";s:7:"darkred";s:7:"#8B0000";s:10:"darksalmon";s:7:"#E9967A";s:12:"darkseagreen";s:7:"#8FBC8F";s:13:"darkslateblue";s:7:"#483D8B";s:13:"darkslategray";s:7:"#2F4F4F";s:13:"darkslategrey";s:7:"#2F4F4F";s:13:"darkturquoise";s:7:"#00CED1";s:10:"darkviolet";s:7:"#9400D3";s:8:"deeppink";s:7:"#FF1493";s:11:"deepskyblue";s:7:"#00BFFF";s:7:"dimgray";s:7:"#696969";s:7:"dimgrey";s:7:"#696969";s:10:"dodgerblue";s:7:"#1E90FF";s:9:"firebrick";s:7:"#B22222";s:11:"floralwhite";s:7:"#FFFAF0";s:11:"forestgreen";s:7:"#228B22";s:7:"fuchsia";s:7:"#FF00FF";s:9:"gainsboro";s:7:"#DCDCDC";s:10:"ghostwhite";s:7:"#F8F8FF";s:4:"gold";s:7:"#FFD700";s:9:"goldenrod";s:7:"#DAA520";s:4:"gray";s:7:"#808080";s:4:"grey";s:7:"#808080";s:5:"green";s:7:"#008000";s:11:"greenyellow";s:7:"#ADFF2F";s:8:"honeydew";s:7:"#F0FFF0";s:7:"hotpink";s:7:"#FF69B4";s:9:"indianred";s:7:"#CD5C5C";s:6:"indigo";s:7:"#4B0082";s:5:"ivory";s:7:"#FFFFF0";s:5:"khaki";s:7:"#F0E68C";s:8:"lavender";s:7:"#E6E6FA";s:13:"lavenderblush";s:7:"#FFF0F5";s:9:"lawngreen";s:7:"#7CFC00";s:12:"lemonchiffon";s:7:"#FFFACD";s:9:"lightblue";s:7:"#ADD8E6";s:10:"lightcoral";s:7:"#F08080";s:9:"lightcyan";s:7:"#E0FFFF";s:20:"lightgoldenrodyellow";s:7:"#FAFAD2";s:9:"lightgray";s:7:"#D3D3D3";s:9:"lightgrey";s:7:"#D3D3D3";s:10:"lightgreen";s:7:"#90EE90";s:9:"lightpink";s:7:"#FFB6C1";s:11:"lightsalmon";s:7:"#FFA07A";s:13:"lightseagreen";s:7:"#20B2AA";s:12:"lightskyblue";s:7:"#87CEFA";s:14:"lightslategray";s:7:"#778899";s:14:"lightslategrey";s:7:"#778899";s:14:"lightsteelblue";s:7:"#B0C4DE";s:11:"lightyellow";s:7:"#FFFFE0";s:4:"lime";s:7:"#00FF00";s:9:"limegreen";s:7:"#32CD32";s:5:"linen";s:7:"#FAF0E6";s:7:"magenta";s:7:"#FF00FF";s:6:"maroon";s:7:"#800000";s:16:"mediumaquamarine";s:7:"#66CDAA";s:10:"mediumblue";s:7:"#0000CD";s:12:"mediumorchid";s:7:"#BA55D3";s:12:"mediumpurple";s:7:"#9370DB";s:14:"mediumseagreen";s:7:"#3CB371";s:15:"mediumslateblue";s:7:"#7B68EE";s:17:"mediumspringgreen";s:7:"#00FA9A";s:15:"mediumturquoise";s:7:"#48D1CC";s:15:"mediumvioletred";s:7:"#C71585";s:12:"midnightblue";s:7:"#191970";s:9:"mintcream";s:7:"#F5FFFA";s:9:"mistyrose";s:7:"#FFE4E1";s:8:"moccasin";s:7:"#FFE4B5";s:11:"navajowhite";s:7:"#FFDEAD";s:4:"navy";s:7:"#000080";s:7:"oldlace";s:7:"#FDF5E6";s:5:"olive";s:7:"#808000";s:9:"olivedrab";s:7:"#6B8E23";s:6:"orange";s:7:"#FFA500";s:9:"orangered";s:7:"#FF4500";s:6:"orchid";s:7:"#DA70D6";s:13:"palegoldenrod";s:7:"#EEE8AA";s:9:"palegreen";s:7:"#98FB98";s:13:"paleturquoise";s:7:"#AFEEEE";s:13:"palevioletred";s:7:"#DB7093";s:10:"papayawhip";s:7:"#FFEFD5";s:9:"peachpuff";s:7:"#FFDAB9";s:4:"peru";s:7:"#CD853F";s:4:"pink";s:7:"#FFC0CB";s:4:"plum";s:7:"#DDA0DD";s:10:"powderblue";s:7:"#B0E0E6";s:6:"purple";s:7:"#800080";s:13:"rebeccapurple";s:7:"#663399";s:3:"red";s:7:"#FF0000";s:9:"rosybrown";s:7:"#BC8F8F";s:9:"royalblue";s:7:"#4169E1";s:11:"saddlebrown";s:7:"#8B4513";s:6:"salmon";s:7:"#FA8072";s:10:"sandybrown";s:7:"#F4A460";s:8:"seagreen";s:7:"#2E8B57";s:8:"seashell";s:7:"#FFF5EE";s:6:"sienna";s:7:"#A0522D";s:6:"silver";s:7:"#C0C0C0";s:7:"skyblue";s:7:"#87CEEB";s:9:"slateblue";s:7:"#6A5ACD";s:9:"slategray";s:7:"#708090";s:9:"slategrey";s:7:"#708090";s:4:"snow";s:7:"#FFFAFA";s:11:"springgreen";s:7:"#00FF7F";s:9:"steelblue";s:7:"#4682B4";s:3:"tan";s:7:"#D2B48C";s:4:"teal";s:7:"#008080";s:7:"thistle";s:7:"#D8BFD8";s:6:"tomato";s:7:"#FF6347";s:9:"turquoise";s:7:"#40E0D0";s:6:"violet";s:7:"#EE82EE";s:5:"wheat";s:7:"#F5DEB3";s:5:"white";s:7:"#FFFFFF";s:10:"whitesmoke";s:7:"#F5F5F5";s:6:"yellow";s:7:"#FFFF00";s:11:"yellowgreen";s:7:"#9ACD32";}s:30:"Core.ConvertDocumentToFragment";b:1;s:36:"Core.DirectLexLineNumberSyncInterval";i:0;s:20:"Core.DisableExcludes";b:0;s:15:"Core.EnableIDNA";b:0;s:13:"Core.Encoding";s:5:"utf-8";s:26:"Core.EscapeInvalidChildren";b:0;s:22:"Core.EscapeInvalidTags";b:0;s:29:"Core.EscapeNonASCIICharacters";b:0;s:19:"Core.HiddenElements";a:2:{s:6:"script";b:1;s:5:"style";b:1;}s:13:"Core.Language";s:2:"en";s:24:"Core.LegacyEntityDecoder";b:0;s:14:"Core.LexerImpl";N;s:24:"Core.MaintainLineNumbers";N;s:22:"Core.NormalizeNewlines";b:1;s:21:"Core.RemoveInvalidImg";b:1;s:33:"Core.RemoveProcessingInstructions";b:0;s:25:"Core.RemoveScriptContents";N;s:13:"Filter.Custom";a:0:{}s:34:"Filter.ExtractStyleBlocks.Escaping";b:1;s:31:"Filter.ExtractStyleBlocks.Scope";N;s:34:"Filter.ExtractStyleBlocks.TidyImpl";N;s:25:"Filter.ExtractStyleBlocks";b:0;s:14:"Filter.YouTube";b:0;s:12:"HTML.Allowed";N;s:22:"HTML.AllowedAttributes";N;s:20:"HTML.AllowedComments";a:0:{}s:26:"HTML.AllowedCommentsRegexp";N;s:20:"HTML.AllowedElements";N;s:19:"HTML.AllowedModules";N;s:23:"HTML.Attr.Name.UseCDATA";b:0;s:17:"HTML.BlockWrapper";s:1:"p";s:16:"HTML.CoreModules";a:7:{s:9:"Structure";b:1;s:4:"Text";b:1;s:9:"Hypertext";b:1;s:4:"List";b:1;s:22:"NonXMLCommonAttributes";b:1;s:19:"XMLCommonAttributes";b:1;s:16:"CommonAttributes";b:1;}s:18:"HTML.CustomDoctype";N;s:17:"HTML.DefinitionID";N;s:18:"HTML.DefinitionRev";i:1;s:12:"HTML.Doctype";N;s:25:"HTML.FlashAllowFullScreen";b:0;s:24:"HTML.ForbiddenAttributes";a:0:{}s:22:"HTML.ForbiddenElements";a:0:{}s:10:"HTML.Forms";b:0;s:17:"HTML.MaxImgLength";i:1200;s:13:"HTML.Nofollow";b:0;s:11:"HTML.Parent";s:3:"div";s:16:"HTML.Proprietary";b:0;s:14:"HTML.SafeEmbed";b:0;s:15:"HTML.SafeIframe";b:0;s:15:"HTML.SafeObject";b:0;s:18:"HTML.SafeScripting";a:0:{}s:11:"HTML.Strict";b:0;s:16:"HTML.TargetBlank";b:0;s:19:"HTML.TargetNoopener";b:1;s:21:"HTML.TargetNoreferrer";b:1;s:12:"HTML.TidyAdd";a:0:{}s:14:"HTML.TidyLevel";s:6:"medium";s:15:"HTML.TidyRemove";a:0:{}s:12:"HTML.Trusted";b:0;s:10:"HTML.XHTML";b:1;s:28:"Output.CommentScriptContents";b:1;s:19:"Output.FixInnerHTML";b:1;s:18:"Output.FlashCompat";b:0;s:14:"Output.Newline";N;s:15:"Output.SortAttr";b:0;s:17:"Output.TidyFormat";b:0;s:17:"Test.ForceNoIconv";b:0;s:18:"URI.AllowedSchemes";a:7:{s:4:"http";b:1;s:5:"https";b:1;s:6:"mailto";b:1;s:3:"ftp";b:1;s:4:"nntp";b:1;s:4:"news";b:1;s:3:"tel";b:1;}s:8:"URI.Base";N;s:17:"URI.DefaultScheme";s:4:"http";s:16:"URI.DefinitionID";N;s:17:"URI.DefinitionRev";i:1;s:11:"URI.Disable";b:0;s:19:"URI.DisableExternal";b:0;s:28:"URI.DisableExternalResources";b:0;s:20:"URI.DisableResources";b:0;s:8:"URI.Host";N;s:17:"URI.HostBlacklist";a:0:{}s:16:"URI.MakeAbsolute";b:0;s:9:"URI.Munge";N;s:18:"URI.MungeResources";b:0;s:18:"URI.MungeSecretKey";N;s:26:"URI.OverrideAllowedSchemes";b:1;s:20:"URI.SafeIframeRegexp";N;}s:9:"*parent";N;s:8:"*cache";N;}s:4:"info";a:140:{s:19:"Attr.AllowedClasses";i:-8;s:24:"Attr.AllowedFrameTargets";i:8;s:15:"Attr.AllowedRel";i:8;s:15:"Attr.AllowedRev";i:8;s:18:"Attr.ClassUseCDATA";i:-7;s:20:"Attr.DefaultImageAlt";i:-1;s:24:"Attr.DefaultInvalidImage";i:1;s:27:"Attr.DefaultInvalidImageAlt";i:1;s:19:"Attr.DefaultTextDir";O:8:"stdClass":2:{s:4:"type";i:1;s:7:"allowed";a:2:{s:3:"ltr";b:1;s:3:"rtl";b:1;}}s:13:"Attr.EnableID";i:7;s:17:"HTML.EnableAttrID";O:8:"stdClass":2:{s:3:"key";s:13:"Attr.EnableID";s:7:"isAlias";b:1;}s:21:"Attr.ForbiddenClasses";i:8;s:13:"Attr.ID.HTML5";i:-7;s:16:"Attr.IDBlacklist";i:9;s:22:"Attr.IDBlacklistRegexp";i:-1;s:13:"Attr.IDPrefix";i:1;s:18:"Attr.IDPrefixLocal";i:1;s:24:"AutoFormat.AutoParagraph";i:7;s:17:"AutoFormat.Custom";i:9;s:25:"AutoFormat.DisplayLinkURI";i:7;s:18:"AutoFormat.Linkify";i:7;s:33:"AutoFormat.PurifierLinkify.DocURL";i:1;s:37:"AutoFormatParam.PurifierLinkifyDocURL";O:8:"stdClass":2:{s:3:"key";s:33:"AutoFormat.PurifierLinkify.DocURL";s:7:"isAlias";b:1;}s:26:"AutoFormat.PurifierLinkify";i:7;s:32:"AutoFormat.RemoveEmpty.Predicate";i:10;s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";i:8;s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";i:7;s:22:"AutoFormat.RemoveEmpty";i:7;s:39:"AutoFormat.RemoveSpansWithoutAttributes";i:7;s:19:"CSS.AllowDuplicates";i:7;s:18:"CSS.AllowImportant";i:7;s:15:"CSS.AllowTricky";i:7;s:16:"CSS.AllowedFonts";i:-8;s:21:"CSS.AllowedProperties";i:-8;s:17:"CSS.DefinitionRev";i:5;s:23:"CSS.ForbiddenProperties";i:8;s:16:"CSS.MaxImgLength";i:-1;s:15:"CSS.Proprietary";i:7;s:11:"CSS.Trusted";i:7;s:20:"Cache.DefinitionImpl";i:-1;s:20:"Core.DefinitionCache";O:8:"stdClass":2:{s:3:"key";s:20:"Cache.DefinitionImpl";s:7:"isAlias";b:1;}s:20:"Cache.SerializerPath";i:-1;s:27:"Cache.SerializerPermissions";i:-5;s:22:"Core.AggressivelyFixLt";i:7;s:29:"Core.AggressivelyRemoveScript";i:7;s:28:"Core.AllowHostnameUnderscore";i:7;s:23:"Core.AllowParseManyTags";i:7;s:18:"Core.CollectErrors";i:7;s:18:"Core.ColorKeywords";i:10;s:30:"Core.ConvertDocumentToFragment";i:7;s:24:"Core.AcceptFullDocuments";O:8:"stdClass":2:{s:3:"key";s:30:"Core.ConvertDocumentToFragment";s:7:"isAlias";b:1;}s:36:"Core.DirectLexLineNumberSyncInterval";i:5;s:20:"Core.DisableExcludes";i:7;s:15:"Core.EnableIDNA";i:7;s:13:"Core.Encoding";i:2;s:26:"Core.EscapeInvalidChildren";i:7;s:22:"Core.EscapeInvalidTags";i:7;s:29:"Core.EscapeNonASCIICharacters";i:7;s:19:"Core.HiddenElements";i:8;s:13:"Core.Language";i:1;s:24:"Core.LegacyEntityDecoder";i:7;s:14:"Core.LexerImpl";i:-11;s:24:"Core.MaintainLineNumbers";i:-7;s:22:"Core.NormalizeNewlines";i:7;s:21:"Core.RemoveInvalidImg";i:7;s:33:"Core.RemoveProcessingInstructions";i:7;s:25:"Core.RemoveScriptContents";i:-7;s:13:"Filter.Custom";i:9;s:34:"Filter.ExtractStyleBlocks.Escaping";i:7;s:33:"Filter.ExtractStyleBlocksEscaping";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.Escaping";s:7:"isAlias";b:1;}s:38:"FilterParam.ExtractStyleBlocksEscaping";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.Escaping";s:7:"isAlias";b:1;}s:31:"Filter.ExtractStyleBlocks.Scope";i:-1;s:30:"Filter.ExtractStyleBlocksScope";O:8:"stdClass":2:{s:3:"key";s:31:"Filter.ExtractStyleBlocks.Scope";s:7:"isAlias";b:1;}s:35:"FilterParam.ExtractStyleBlocksScope";O:8:"stdClass":2:{s:3:"key";s:31:"Filter.ExtractStyleBlocks.Scope";s:7:"isAlias";b:1;}s:34:"Filter.ExtractStyleBlocks.TidyImpl";i:-11;s:38:"FilterParam.ExtractStyleBlocksTidyImpl";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.TidyImpl";s:7:"isAlias";b:1;}s:25:"Filter.ExtractStyleBlocks";i:7;s:14:"Filter.YouTube";i:7;s:12:"HTML.Allowed";i:-4;s:22:"HTML.AllowedAttributes";i:-8;s:20:"HTML.AllowedComments";i:8;s:26:"HTML.AllowedCommentsRegexp";i:-1;s:20:"HTML.AllowedElements";i:-8;s:19:"HTML.AllowedModules";i:-8;s:23:"HTML.Attr.Name.UseCDATA";i:7;s:17:"HTML.BlockWrapper";i:1;s:16:"HTML.CoreModules";i:8;s:18:"HTML.CustomDoctype";i:-1;s:17:"HTML.DefinitionID";i:-1;s:18:"HTML.DefinitionRev";i:5;s:12:"HTML.Doctype";O:8:"stdClass":3:{s:4:"type";i:1;s:10:"allow_null";b:1;s:7:"allowed";a:5:{s:22:"HTML 4.01 Transitional";b:1;s:16:"HTML 4.01 Strict";b:1;s:22:"XHTML 1.0 Transitional";b:1;s:16:"XHTML 1.0 Strict";b:1;s:9:"XHTML 1.1";b:1;}}s:25:"HTML.FlashAllowFullScreen";i:7;s:24:"HTML.ForbiddenAttributes";i:8;s:22:"HTML.ForbiddenElements";i:8;s:10:"HTML.Forms";i:7;s:17:"HTML.MaxImgLength";i:-5;s:13:"HTML.Nofollow";i:7;s:11:"HTML.Parent";i:1;s:16:"HTML.Proprietary";i:7;s:14:"HTML.SafeEmbed";i:7;s:15:"HTML.SafeIframe";i:7;s:15:"HTML.SafeObject";i:7;s:18:"HTML.SafeScripting";i:8;s:11:"HTML.Strict";i:7;s:16:"HTML.TargetBlank";i:7;s:19:"HTML.TargetNoopener";i:7;s:21:"HTML.TargetNoreferrer";i:7;s:12:"HTML.TidyAdd";i:8;s:14:"HTML.TidyLevel";O:8:"stdClass":2:{s:4:"type";i:1;s:7:"allowed";a:4:{s:4:"none";b:1;s:5:"light";b:1;s:6:"medium";b:1;s:5:"heavy";b:1;}}s:15:"HTML.TidyRemove";i:8;s:12:"HTML.Trusted";i:7;s:10:"HTML.XHTML";i:7;s:10:"Core.XHTML";O:8:"stdClass":2:{s:3:"key";s:10:"HTML.XHTML";s:7:"isAlias";b:1;}s:28:"Output.CommentScriptContents";i:7;s:26:"Core.CommentScriptContents";O:8:"stdClass":2:{s:3:"key";s:28:"Output.CommentScriptContents";s:7:"isAlias";b:1;}s:19:"Output.FixInnerHTML";i:7;s:18:"Output.FlashCompat";i:7;s:14:"Output.Newline";i:-1;s:15:"Output.SortAttr";i:7;s:17:"Output.TidyFormat";i:7;s:15:"Core.TidyFormat";O:8:"stdClass":2:{s:3:"key";s:17:"Output.TidyFormat";s:7:"isAlias";b:1;}s:17:"Test.ForceNoIconv";i:7;s:18:"URI.AllowedSchemes";i:8;s:8:"URI.Base";i:-1;s:17:"URI.DefaultScheme";i:-1;s:16:"URI.DefinitionID";i:-1;s:17:"URI.DefinitionRev";i:5;s:11:"URI.Disable";i:7;s:15:"Attr.DisableURI";O:8:"stdClass":2:{s:3:"key";s:11:"URI.Disable";s:7:"isAlias";b:1;}s:19:"URI.DisableExternal";i:7;s:28:"URI.DisableExternalResources";i:7;s:20:"URI.DisableResources";i:7;s:8:"URI.Host";i:-1;s:17:"URI.HostBlacklist";i:9;s:16:"URI.MakeAbsolute";i:7;s:9:"URI.Munge";i:-1;s:18:"URI.MungeResources";i:7;s:18:"URI.MungeSecretKey";i:-1;s:26:"URI.OverrideAllowedSchemes";i:7;s:20:"URI.SafeIframeRegexp";i:-1;}}lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php000064400000020257151213255750020742 0ustar00<?php

/**
 * Performs validations on HTMLPurifier_ConfigSchema_Interchange
 *
 * @note If you see '// handled by InterchangeBuilder', that means a
 *       design decision in that class would prevent this validation from
 *       ever being necessary. We have them anyway, however, for
 *       redundancy.
 */
class HTMLPurifier_ConfigSchema_Validator
{

    /**
     * @type HTMLPurifier_ConfigSchema_Interchange
     */
    protected $interchange;

    /**
     * @type array
     */
    protected $aliases;

    /**
     * Context-stack to provide easy to read error messages.
     * @type array
     */
    protected $context = array();

    /**
     * to test default's type.
     * @type HTMLPurifier_VarParser
     */
    protected $parser;

    public function __construct()
    {
        $this->parser = new HTMLPurifier_VarParser();
    }

    /**
     * Validates a fully-formed interchange object.
     * @param HTMLPurifier_ConfigSchema_Interchange $interchange
     * @return bool
     */
    public function validate($interchange)
    {
        $this->interchange = $interchange;
        $this->aliases = array();
        // PHP is a bit lax with integer <=> string conversions in
        // arrays, so we don't use the identical !== comparison
        foreach ($interchange->directives as $i => $directive) {
            $id = $directive->id->toString();
            if ($i != $id) {
                $this->error(false, "Integrity violation: key '$i' does not match internal id '$id'");
            }
            $this->validateDirective($directive);
        }
        return true;
    }

    /**
     * Validates a HTMLPurifier_ConfigSchema_Interchange_Id object.
     * @param HTMLPurifier_ConfigSchema_Interchange_Id $id
     */
    public function validateId($id)
    {
        $id_string = $id->toString();
        $this->context[] = "id '$id_string'";
        if (!$id instanceof HTMLPurifier_ConfigSchema_Interchange_Id) {
            // handled by InterchangeBuilder
            $this->error(false, 'is not an instance of HTMLPurifier_ConfigSchema_Interchange_Id');
        }
        // keys are now unconstrained (we might want to narrow down to A-Za-z0-9.)
        // we probably should check that it has at least one namespace
        $this->with($id, 'key')
            ->assertNotEmpty()
            ->assertIsString(); // implicit assertIsString handled by InterchangeBuilder
        array_pop($this->context);
    }

    /**
     * Validates a HTMLPurifier_ConfigSchema_Interchange_Directive object.
     * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
     */
    public function validateDirective($d)
    {
        $id = $d->id->toString();
        $this->context[] = "directive '$id'";
        $this->validateId($d->id);

        $this->with($d, 'description')
            ->assertNotEmpty();

        // BEGIN - handled by InterchangeBuilder
        $this->with($d, 'type')
            ->assertNotEmpty();
        $this->with($d, 'typeAllowsNull')
            ->assertIsBool();
        try {
            // This also tests validity of $d->type
            $this->parser->parse($d->default, $d->type, $d->typeAllowsNull);
        } catch (HTMLPurifier_VarParserException $e) {
            $this->error('default', 'had error: ' . $e->getMessage());
        }
        // END - handled by InterchangeBuilder

        if (!is_null($d->allowed) || !empty($d->valueAliases)) {
            // allowed and valueAliases require that we be dealing with
            // strings, so check for that early.
            $d_int = HTMLPurifier_VarParser::$types[$d->type];
            if (!isset(HTMLPurifier_VarParser::$stringTypes[$d_int])) {
                $this->error('type', 'must be a string type when used with allowed or value aliases');
            }
        }

        $this->validateDirectiveAllowed($d);
        $this->validateDirectiveValueAliases($d);
        $this->validateDirectiveAliases($d);

        array_pop($this->context);
    }

    /**
     * Extra validation if $allowed member variable of
     * HTMLPurifier_ConfigSchema_Interchange_Directive is defined.
     * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
     */
    public function validateDirectiveAllowed($d)
    {
        if (is_null($d->allowed)) {
            return;
        }
        $this->with($d, 'allowed')
            ->assertNotEmpty()
            ->assertIsLookup(); // handled by InterchangeBuilder
        if (is_string($d->default) && !isset($d->allowed[$d->default])) {
            $this->error('default', 'must be an allowed value');
        }
        $this->context[] = 'allowed';
        foreach ($d->allowed as $val => $x) {
            if (!is_string($val)) {
                $this->error("value $val", 'must be a string');
            }
        }
        array_pop($this->context);
    }

    /**
     * Extra validation if $valueAliases member variable of
     * HTMLPurifier_ConfigSchema_Interchange_Directive is defined.
     * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
     */
    public function validateDirectiveValueAliases($d)
    {
        if (is_null($d->valueAliases)) {
            return;
        }
        $this->with($d, 'valueAliases')
            ->assertIsArray(); // handled by InterchangeBuilder
        $this->context[] = 'valueAliases';
        foreach ($d->valueAliases as $alias => $real) {
            if (!is_string($alias)) {
                $this->error("alias $alias", 'must be a string');
            }
            if (!is_string($real)) {
                $this->error("alias target $real from alias '$alias'", 'must be a string');
            }
            if ($alias === $real) {
                $this->error("alias '$alias'", "must not be an alias to itself");
            }
        }
        if (!is_null($d->allowed)) {
            foreach ($d->valueAliases as $alias => $real) {
                if (isset($d->allowed[$alias])) {
                    $this->error("alias '$alias'", 'must not be an allowed value');
                } elseif (!isset($d->allowed[$real])) {
                    $this->error("alias '$alias'", 'must be an alias to an allowed value');
                }
            }
        }
        array_pop($this->context);
    }

    /**
     * Extra validation if $aliases member variable of
     * HTMLPurifier_ConfigSchema_Interchange_Directive is defined.
     * @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
     */
    public function validateDirectiveAliases($d)
    {
        $this->with($d, 'aliases')
            ->assertIsArray(); // handled by InterchangeBuilder
        $this->context[] = 'aliases';
        foreach ($d->aliases as $alias) {
            $this->validateId($alias);
            $s = $alias->toString();
            if (isset($this->interchange->directives[$s])) {
                $this->error("alias '$s'", 'collides with another directive');
            }
            if (isset($this->aliases[$s])) {
                $other_directive = $this->aliases[$s];
                $this->error("alias '$s'", "collides with alias for directive '$other_directive'");
            }
            $this->aliases[$s] = $d->id->toString();
        }
        array_pop($this->context);
    }

    // protected helper functions

    /**
     * Convenience function for generating HTMLPurifier_ConfigSchema_ValidatorAtom
     * for validating simple member variables of objects.
     * @param $obj
     * @param $member
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    protected function with($obj, $member)
    {
        return new HTMLPurifier_ConfigSchema_ValidatorAtom($this->getFormattedContext(), $obj, $member);
    }

    /**
     * Emits an error, providing helpful context.
     * @throws HTMLPurifier_ConfigSchema_Exception
     */
    protected function error($target, $msg)
    {
        if ($target !== false) {
            $prefix = ucfirst($target) . ' in ' . $this->getFormattedContext();
        } else {
            $prefix = ucfirst($this->getFormattedContext());
        }
        throw new HTMLPurifier_ConfigSchema_Exception(trim($prefix . ' ' . $msg));
    }

    /**
     * Returns a formatted context string.
     * @return string
     */
    protected function getFormattedContext()
    {
        return implode(' in ', array_reverse($this->context));
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt000064400000000516151213255750024371 0ustar00Core.RemoveInvalidImg
TYPE: bool
DEFAULT: true
VERSION: 1.3.0
--DESCRIPTION--

<p>
  This directive enables pre-emptive URI checking in <code>img</code>
  tags, as the attribute validation strategy is not authorized to
  remove elements from the document. Revert to pre-1.3.0 behavior by setting to false.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt000064400000000430151213255750025323 0ustar00Core.RemoveScriptContents
TYPE: bool/null
DEFAULT: NULL
VERSION: 2.0.0
DEPRECATED-VERSION: 2.1.0
DEPRECATED-USE: Core.HiddenElements
--DESCRIPTION--
<p>
  This directive enables HTML Purifier to remove not only script tags
  but all of their contents.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt000064400000000377151213255750023263 0ustar00Attr.AllowedRev
TYPE: lookup
VERSION: 1.6.0
DEFAULT: array()
--DESCRIPTION--
List of allowed reverse document relationships in the rev attribute. This
attribute is a bit of an edge-case; if you don't know what it is for, stay
away.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt000064400000000415151213255750023777 0ustar00Output.FlashCompat
TYPE: bool
VERSION: 4.1.0
DEFAULT: false
--DESCRIPTION--
<p>
  If true, HTML Purifier will generate Internet Explorer compatibility
  code for all object code.  This is highly recommended if you enable
  %HTML.SafeObject.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt000064400000000506151213255750025335 0ustar00URI.OverrideAllowedSchemes
TYPE: bool
DEFAULT: true
--DESCRIPTION--
If this is set to true (which it is by default), you can override
%URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the
registry.  If false, you will also have to update that directive in order
to add more schemes.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt000064400000000244151213255750023246 0ustar00CSS.Proprietary
TYPE: bool
VERSION: 3.0.0
DEFAULT: false
--DESCRIPTION--

<p>
    Whether or not to allow safe, proprietary CSS values.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt000064400000000362151213255750023243 0ustar00URI.DefinitionID
TYPE: string/null
VERSION: 2.1.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    Unique identifier for a custom-built URI definition. If you  want
    to add custom URIFilters, you must specify this value.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt000064400000003356151213255750024642 0ustar00AutoFormat.RemoveEmpty
TYPE: bool
VERSION: 3.2.0
DEFAULT: false
--DESCRIPTION--
<p>
  When enabled, HTML Purifier will attempt to remove empty elements that
  contribute no semantic information to the document. The following types
  of nodes will be removed:
</p>
<ul><li>
    Tags with no attributes and no content, and that are not empty
    elements (remove <code>&lt;a&gt;&lt;/a&gt;</code> but not
    <code>&lt;br /&gt;</code>), and
  </li>
  <li>
    Tags with no content, except for:<ul>
      <li>The <code>colgroup</code> element, or</li>
      <li>
        Elements with the <code>id</code> or <code>name</code> attribute,
        when those attributes are permitted on those elements.
      </li>
    </ul></li>
</ul>
<p>
  Please be very careful when using this functionality; while it may not
  seem that empty elements contain useful information, they can alter the
  layout of a document given appropriate styling. This directive is most
  useful when you are processing machine-generated HTML, please avoid using
  it on regular user HTML.
</p>
<p>
  Elements that contain only whitespace will be treated as empty. Non-breaking
  spaces, however, do not count as whitespace. See
  %AutoFormat.RemoveEmpty.RemoveNbsp for alternate behavior.
</p>
<p>
  This algorithm is not perfect; you may still notice some empty tags,
  particularly if a node had elements, but those elements were later removed
  because they were not permitted in that context, or tags that, after
  being auto-closed by another tag, where empty. This is for safety reasons
  to prevent clever code from breaking validation. The general rule of thumb:
  if a tag looked empty on the way in, it will get removed; if HTML Purifier
  made it empty, it will stay.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt000064400000000455151213255750025513 0ustar00Attr.DefaultInvalidImageAlt
TYPE: string
DEFAULT: 'Invalid image'
--DESCRIPTION--
This is the content of the alt tag of an invalid image if the user had not
previously specified an alt attribute.  It has no effect when the image is
valid but there was no alt attribute present.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt000064400000001205151213255750022611 0ustar00Attr.EnableID
TYPE: bool
DEFAULT: false
VERSION: 1.2.0
--DESCRIPTION--
Allows the ID attribute in HTML.  This is disabled by default due to the
fact that without proper configuration user input can easily break the
validation of a webpage by specifying an ID that is already on the
surrounding HTML.  If you don't mind throwing caution to the wind, enable
this directive, but I strongly recommend you also consider blacklisting IDs
you use (%Attr.IDBlacklist) or prefixing all user supplied IDs
(%Attr.IDPrefix).  When set to true HTML Purifier reverts to the behavior of
pre-1.2.0 versions.
--ALIASES--
HTML.EnableAttrID
--# vim: et sw=4 sts=4
library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt000064400000000554151213255750030757 0ustar00lib/htmlpurifierAutoFormat.RemoveEmpty.RemoveNbsp.Exceptions
TYPE: lookup
VERSION: 4.0.0
DEFAULT: array('td' => true, 'th' => true)
--DESCRIPTION--
<p>
  When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp
  are enabled, this directive defines what HTML elements should not be
  removede if they have only a non-breaking space in them.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt000064400000000727151213255750024131 0ustar00HTML.Attr.Name.UseCDATA
TYPE: bool
DEFAULT: false
VERSION: 4.0.0
--DESCRIPTION--
The W3C specification DTD defines the name attribute to be CDATA, not ID, due
to limitations of DTD.  In certain documents, this relaxed behavior is desired,
whether it is to specify duplicate names, or to specify names that would be
illegal IDs (for example, names that begin with a digit.) Set this configuration
directive to true to use the relaxed parsing rules.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt000064400000000752151213255750023372 0ustar00HTML.MaxImgLength
TYPE: int/null
DEFAULT: 1200
VERSION: 3.1.1
--DESCRIPTION--
<p>
 This directive controls the maximum number of pixels in the width and
 height attributes in <code>img</code> tags. This is
 in place to prevent imagecrash attacks, disable with null at your own risk.
 This directive is similar to %CSS.MaxImgLength, and both should be
 concurrently edited, although there are
 subtle differences in the input format (the HTML max is an integer).
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt000064400000001025151213255750023605 0ustar00HTML.DefinitionRev
TYPE: int
VERSION: 2.0.0
DEFAULT: 1
--DESCRIPTION--

<p>
    Revision identifier for your custom definition specified in
    %HTML.DefinitionID.  This serves the same purpose: uniquely identifying
    your custom definition, but this one does so in a chronological
    context: revision 3 is more up-to-date then revision 2.  Thus, when
    this gets incremented, the cache handling is smart enough to clean
    up any older revisions of your definition as well as flush the
    cache.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt000064400000000537151213255750023334 0ustar00CSS.AllowedFonts
TYPE: lookup/null
VERSION: 4.3.0
DEFAULT: NULL
--DESCRIPTION--
<p>
    Allows you to manually specify a set of allowed fonts.  If
    <code>NULL</code>, all fonts are allowed.  This directive
    affects generic names (serif, sans-serif, monospace, cursive,
    fantasy) as well as specific font families.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt000064400000001140151213255750024366 0ustar00CSS.AllowedProperties
TYPE: lookup/null
VERSION: 3.1.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    If HTML Purifier's style attributes set is unsatisfactory for your needs,
    you can overload it with your own list of tags to allow.  Note that this
    method is subtractive: it does its job by taking away from HTML Purifier
    usual feature set, so you cannot add an attribute that HTML Purifier never
    supported in the first place.
</p>
<p>
    <strong>Warning:</strong> If another directive conflicts with the
    elements here, <em>that</em> directive will win and override.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt000064400000000353151213255750021737 0ustar00HTML.XHTML
TYPE: bool
DEFAULT: true
VERSION: 1.1.0
DEPRECATED-VERSION: 1.7.0
DEPRECATED-USE: HTML.Doctype
--DESCRIPTION--
Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor.
--ALIASES--
Core.XHTML
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt000064400000000420151213255750022274 0ustar00URI.Disable
TYPE: bool
VERSION: 1.3.0
DEFAULT: false
--DESCRIPTION--

<p>
    Disables all URIs in all forms. Not sure why you'd want to do that
    (after all, the Internet's founded on the notion of a hyperlink).
</p>

--ALIASES--
Attr.DisableURI
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt000064400000000673151213255750024011 0ustar00URI.DisableExternal
TYPE: bool
VERSION: 1.2.0
DEFAULT: false
--DESCRIPTION--
Disables links to external websites.  This is a highly effective anti-spam
and anti-pagerank-leech measure, but comes at a hefty price: nolinks or
images outside of your domain will be allowed.  Non-linkified URIs will
still be preserved.  If you want to be able to link to subdomains or use
absolute URIs, specify %URI.Host for your website.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt000064400000002557151213255750025066 0ustar00Core.LegacyEntityDecoder
TYPE: bool
VERSION: 4.9.0
DEFAULT: false
--DESCRIPTION--
<p>
    Prior to HTML Purifier 4.9.0, entities were decoded by performing
    a global search replace for all entities whose decoded versions
    did not have special meanings under HTML, and replaced them with
    their decoded versions.  We would match all entities, even if they did
    not have a trailing semicolon, but only if there weren't any trailing
    alphanumeric characters.
</p>
<table>
<tr><th>Original</th><th>Text</th><th>Attribute</th></tr>
<tr><td>&amp;yen;</td><td>&yen;</td><td>&yen;</td></tr>
<tr><td>&amp;yen</td><td>&yen;</td><td>&yen;</td></tr>
<tr><td>&amp;yena</td><td>&amp;yena</td><td>&amp;yena</td></tr>
<tr><td>&amp;yen=</td><td>&yen;=</td><td>&yen;=</td></tr>
</table>
<p>
    In HTML Purifier 4.9.0, we changed the behavior of entity parsing
    to match entities that had missing trailing semicolons in less
    cases, to more closely match HTML5 parsing behavior:
</p>
<table>
<tr><th>Original</th><th>Text</th><th>Attribute</th></tr>
<tr><td>&amp;yen;</td><td>&yen;</td><td>&yen;</td></tr>
<tr><td>&amp;yen</td><td>&yen;</td><td>&yen;</td></tr>
<tr><td>&amp;yena</td><td>&yen;a</td><td>&amp;yena</td></tr>
<tr><td>&amp;yen=</td><td>&yen;=</td><td>&amp;yen=</td></tr>
</table>
<p>
    This flag reverts back to pre-HTML Purifier 4.9.0 behavior.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt000064400000000457151213255750023016 0ustar00Core.EnableIDNA
TYPE: bool
DEFAULT: false
VERSION: 4.4.0
--DESCRIPTION--
Allows international domain names in URLs.  This configuration option
requires the PEAR Net_IDNA2 module to be installed.  It operates by
punycoding any internationalized host names for maximum portability.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt000064400000001102151213255750025076 0ustar00Attr.AllowedFrameTargets
TYPE: lookup
DEFAULT: array()
--DESCRIPTION--
Lookup table of all allowed link frame targets.  Some commonly used link
targets include _blank, _self, _parent and _top. Values should be
lowercase, as validation will be done in a case-sensitive manner despite
W3C's recommendation. XHTML 1.0 Strict does not permit the target attribute
so this directive will have no effect in that doctype. XHTML 1.1 does not
enable the Target module by default, you will have to manually enable it
(see the module documentation for more details.)
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt000064400000001045151213255750025676 0ustar00URI.DisableExternalResources
TYPE: bool
VERSION: 1.3.0
DEFAULT: false
--DESCRIPTION--
Disables the embedding of external resources, preventing users from
embedding things like images from other hosts. This prevents access
tracking (good for email viewers), bandwidth leeching, cross-site request
forging, goatse.cx posting, and other nasties, but also results in a loss
of end-user functionality (they can't directly post a pic they posted from
Flickr anymore). Use it if you don't have a robust user-content moderation
team.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt000064400000000757151213255750023130 0ustar00Filter.YouTube
TYPE: bool
VERSION: 3.1.0
DEFAULT: false
--DESCRIPTION--
<p>
  <strong>Warning:</strong> Deprecated in favor of %HTML.SafeObject and
  %Output.FlashCompat (turn both on to allow YouTube videos and other
  Flash content).
</p>
<p>
  This directive enables YouTube video embedding in HTML Purifier. Check
  <a href="http://htmlpurifier.org/docs/enduser-youtube.html">this document
  on embedding videos</a> for more information on what this filter does.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt000064400000001037151213255750024006 0ustar00Output.FixInnerHTML
TYPE: bool
VERSION: 4.3.0
DEFAULT: true
--DESCRIPTION--
<p>
  If true, HTML Purifier will protect against Internet Explorer's
  mishandling of the <code>innerHTML</code> attribute by appending
  a space to any attribute that does not contain angled brackets, spaces
  or quotes, but contains a backtick.  This slightly changes the
  semantics of any given attribute, so if this is unacceptable and
  you do not use <code>innerHTML</code> on any of your pages, you can
  turn this directive off.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt000064400000000737151213255750024207 0ustar00Attr.DefaultImageAlt
TYPE: string/null
DEFAULT: null
VERSION: 3.2.0
--DESCRIPTION--
This is the content of the alt tag of an image if the user had not
previously specified an alt attribute.  This applies to all images without
a valid alt attribute, as opposed to %Attr.DefaultInvalidImageAlt, which
only applies to invalid images, and overrides in the case of an invalid image.
Default behavior with null is to use the basename of the src tag for the alt.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt000064400000000427151213255750024636 0ustar00Core.NormalizeNewlines
TYPE: bool
VERSION: 4.2.0
DEFAULT: true
--DESCRIPTION--
<p>
    Whether or not to normalize newlines to the operating
    system default.  When <code>false</code>, HTML Purifier
    will attempt to preserve mixed newline files.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt000064400000000624151213255750023450 0ustar00URI.DefaultScheme
TYPE: string/null
DEFAULT: 'http'
--DESCRIPTION--

<p>
    Defines through what scheme the output will be served, in order to
    select the proper object validator when no scheme information is present.
</p>

<p>
    Starting with HTML Purifier 4.9.0, the default scheme can be null, in
    which case we reject all URIs which do not have explicit schemes.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt000064400000001100151213255750027036 0ustar00Filter.ExtractStyleBlocks.TidyImpl
TYPE: mixed/null
VERSION: 3.1.0
DEFAULT: NULL
ALIASES: FilterParam.ExtractStyleBlocksTidyImpl
--DESCRIPTION--
<p>
  If left NULL, HTML Purifier will attempt to instantiate a <code>csstidy</code>
  class to use for internal cleaning. This will usually be good enough.
</p>
<p>
  However, for trusted user input, you can set this to <code>false</code> to
  disable cleaning. In addition, you can supply your own concrete implementation
  of Tidy's interface to use, although I don't know why you'd want to do that.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt000064400000000423151213255750024021 0ustar00CSS.AllowDuplicates
TYPE: bool
DEFAULT: false
VERSION: 4.8.0
--DESCRIPTION--
<p>
  By default, HTML Purifier removes duplicate CSS properties,
  like <code>color:red; color:blue</code>.  If this is set to
  true, duplicate properties are allowed.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt000064400000000461151213255750023777 0ustar00--# vim: et sw=4 sts=4
HTML.TargetNoopener
TYPE: bool
VERSION: 4.8.0
DEFAULT: TRUE
--DESCRIPTION--
If enabled, noopener rel attributes are added to links which have
a target attribute associated with them.  This prevents malicious
destinations from overwriting the original window.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt000064400000000351151213255750023643 0ustar00HTML.CustomDoctype
TYPE: string/null
VERSION: 2.0.1
DEFAULT: NULL
--DESCRIPTION--

A custom doctype for power-users who defined their own document
type. This directive only applies when %HTML.Doctype is blank.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt000064400000000557151213255750024146 0ustar00HTML.AllowedComments
TYPE: lookup
VERSION: 4.4.0
DEFAULT: array()
--DESCRIPTION--
A whitelist which indicates what explicit comment bodies should be
allowed, modulo leading and trailing whitespace.  See also %HTML.AllowedCommentsRegexp
(these directives are union'ed together, so a comment is considered
valid if any directive deems it valid.)
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt000064400000000731151213255750022452 0ustar00HTML.Doctype
TYPE: string/null
DEFAULT: NULL
--DESCRIPTION--
Doctype to use during filtering. Technically speaking this is not actually
a doctype (as it does not identify a corresponding DTD), but we are using
this name for sake of simplicity. When non-blank, this will override any
older directives like %HTML.XHTML or %HTML.Strict.
--ALLOWED--
'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1'
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt000064400000000440151213255750023240 0ustar00Attr.AllowedRel
TYPE: lookup
VERSION: 1.6.0
DEFAULT: array()
--DESCRIPTION--
List of allowed forward document relationships in the rel attribute. Common
values may be nofollow or print. By default, this is empty, meaning that no
document relationships are allowed.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt000064400000001170151213255750027373 0ustar00Core.DirectLexLineNumberSyncInterval
TYPE: int
VERSION: 2.0.0
DEFAULT: 0
--DESCRIPTION--

<p>
  Specifies the number of tokens the DirectLex line number tracking
  implementations should process before attempting to resyncronize the
  current line count by manually counting all previous new-lines. When
  at 0, this functionality is disabled. Lower values will decrease
  performance, and this is only strictly necessary if the counting
  algorithm is buggy (in which case you should report it as a bug).
  This has no effect when %Core.MaintainLineNumbers is disabled or DirectLex is
  not being used.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt000064400000000463151213255750023000 0ustar00Filter.Custom
TYPE: list
VERSION: 3.1.0
DEFAULT: array()
--DESCRIPTION--
<p>
  This directive can be used to add custom filters; it is nearly the
  equivalent of the now deprecated <code>HTMLPurifier-&gt;addFilter()</code>
  method. Specify an array of concrete implementations.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt000064400000000373151213255750022363 0ustar00CSS.Trusted
TYPE: bool
VERSION: 4.2.1
DEFAULT: false
--DESCRIPTION--
Indicates whether or not the user's CSS input is trusted or not. If the
input is trusted, a more expansive set of allowed properties.  See
also %HTML.Trusted.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt000064400000001067151213255750025616 0ustar00Core.EscapeNonASCIICharacters
TYPE: bool
VERSION: 1.4.0
DEFAULT: false
--DESCRIPTION--
This directive overcomes a deficiency in %Core.Encoding by blindly
converting all non-ASCII characters into decimal numeric entities before
converting it to its native encoding. This means that even characters that
can be expressed in the non-UTF-8 encoding will be entity-ized, which can
be a real downer for encodings like Big5. It also assumes that the ASCII
repetoire is available, although this is the case for almost all encodings.
Anyway, use UTF-8!
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt000064400000000354151213255750023704 0ustar00CSS.AllowImportant
TYPE: bool
DEFAULT: false
VERSION: 3.1.0
--DESCRIPTION--
This parameter determines whether or not !important cascade modifiers should
be allowed in user CSS. If false, !important will stripped.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt000064400000001170151213255750026531 0ustar00AutoFormat.RemoveEmpty.Predicate
TYPE: hash
VERSION: 4.7.0
DEFAULT: array('colgroup' => array(), 'th' => array(), 'td' => array(), 'iframe' => array('src'))
--DESCRIPTION--
<p>
  Given that an element has no contents, it will be removed by default, unless
  this predicate dictates otherwise.  The predicate can either be an associative
  map from tag name to list of attributes that must be present for the element
  to be considered preserved: thus, the default always preserves <code>colgroup</code>,
  <code>th</code> and <code>td</code>, and also <code>iframe</code> if it
  has a <code>src</code>.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt000064400000000173151213255750023336 0ustar00Attr.IDBlacklist
TYPE: list
DEFAULT: array()
DESCRIPTION: Array of IDs not allowed in the document.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt000064400000000712151213255750024226 0ustar00Core.DisableExcludes
TYPE: bool
DEFAULT: false
VERSION: 4.5.0
--DESCRIPTION--
<p>
  This directive disables SGML-style exclusions, e.g. the exclusion of
  <code>&lt;object&gt;</code> in any descendant of a
  <code>&lt;pre&gt;</code> tag.  Disabling excludes will allow some
  invalid documents to pass through HTML Purifier, but HTML Purifier
  will also be less likely to accidentally remove large documents during
  processing.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt000064400000000653151213255750024177 0ustar00URI.DisableResources
TYPE: bool
VERSION: 4.2.0
DEFAULT: false
--DESCRIPTION--
<p>
    Disables embedding resources, essentially meaning no pictures. You can
    still link to them though. See %URI.DisableExternalResources for why
    this might be a good idea.
</p>
<p>
    <em>Note:</em> While this directive has been available since 1.3.0,
    it didn't actually start doing anything until 4.2.0.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt000064400000010512151213255750023773 0ustar00Core.ColorKeywords
TYPE: hash
VERSION: 2.0.0
--DEFAULT--
array (
  'aliceblue' => '#F0F8FF',
  'antiquewhite' => '#FAEBD7',
  'aqua' => '#00FFFF',
  'aquamarine' => '#7FFFD4',
  'azure' => '#F0FFFF',
  'beige' => '#F5F5DC',
  'bisque' => '#FFE4C4',
  'black' => '#000000',
  'blanchedalmond' => '#FFEBCD',
  'blue' => '#0000FF',
  'blueviolet' => '#8A2BE2',
  'brown' => '#A52A2A',
  'burlywood' => '#DEB887',
  'cadetblue' => '#5F9EA0',
  'chartreuse' => '#7FFF00',
  'chocolate' => '#D2691E',
  'coral' => '#FF7F50',
  'cornflowerblue' => '#6495ED',
  'cornsilk' => '#FFF8DC',
  'crimson' => '#DC143C',
  'cyan' => '#00FFFF',
  'darkblue' => '#00008B',
  'darkcyan' => '#008B8B',
  'darkgoldenrod' => '#B8860B',
  'darkgray' => '#A9A9A9',
  'darkgrey' => '#A9A9A9',
  'darkgreen' => '#006400',
  'darkkhaki' => '#BDB76B',
  'darkmagenta' => '#8B008B',
  'darkolivegreen' => '#556B2F',
  'darkorange' => '#FF8C00',
  'darkorchid' => '#9932CC',
  'darkred' => '#8B0000',
  'darksalmon' => '#E9967A',
  'darkseagreen' => '#8FBC8F',
  'darkslateblue' => '#483D8B',
  'darkslategray' => '#2F4F4F',
  'darkslategrey' => '#2F4F4F',
  'darkturquoise' => '#00CED1',
  'darkviolet' => '#9400D3',
  'deeppink' => '#FF1493',
  'deepskyblue' => '#00BFFF',
  'dimgray' => '#696969',
  'dimgrey' => '#696969',
  'dodgerblue' => '#1E90FF',
  'firebrick' => '#B22222',
  'floralwhite' => '#FFFAF0',
  'forestgreen' => '#228B22',
  'fuchsia' => '#FF00FF',
  'gainsboro' => '#DCDCDC',
  'ghostwhite' => '#F8F8FF',
  'gold' => '#FFD700',
  'goldenrod' => '#DAA520',
  'gray' => '#808080',
  'grey' => '#808080',
  'green' => '#008000',
  'greenyellow' => '#ADFF2F',
  'honeydew' => '#F0FFF0',
  'hotpink' => '#FF69B4',
  'indianred' => '#CD5C5C',
  'indigo' => '#4B0082',
  'ivory' => '#FFFFF0',
  'khaki' => '#F0E68C',
  'lavender' => '#E6E6FA',
  'lavenderblush' => '#FFF0F5',
  'lawngreen' => '#7CFC00',
  'lemonchiffon' => '#FFFACD',
  'lightblue' => '#ADD8E6',
  'lightcoral' => '#F08080',
  'lightcyan' => '#E0FFFF',
  'lightgoldenrodyellow' => '#FAFAD2',
  'lightgray' => '#D3D3D3',
  'lightgrey' => '#D3D3D3',
  'lightgreen' => '#90EE90',
  'lightpink' => '#FFB6C1',
  'lightsalmon' => '#FFA07A',
  'lightseagreen' => '#20B2AA',
  'lightskyblue' => '#87CEFA',
  'lightslategray' => '#778899',
  'lightslategrey' => '#778899',
  'lightsteelblue' => '#B0C4DE',
  'lightyellow' => '#FFFFE0',
  'lime' => '#00FF00',
  'limegreen' => '#32CD32',
  'linen' => '#FAF0E6',
  'magenta' => '#FF00FF',
  'maroon' => '#800000',
  'mediumaquamarine' => '#66CDAA',
  'mediumblue' => '#0000CD',
  'mediumorchid' => '#BA55D3',
  'mediumpurple' => '#9370DB',
  'mediumseagreen' => '#3CB371',
  'mediumslateblue' => '#7B68EE',
  'mediumspringgreen' => '#00FA9A',
  'mediumturquoise' => '#48D1CC',
  'mediumvioletred' => '#C71585',
  'midnightblue' => '#191970',
  'mintcream' => '#F5FFFA',
  'mistyrose' => '#FFE4E1',
  'moccasin' => '#FFE4B5',
  'navajowhite' => '#FFDEAD',
  'navy' => '#000080',
  'oldlace' => '#FDF5E6',
  'olive' => '#808000',
  'olivedrab' => '#6B8E23',
  'orange' => '#FFA500',
  'orangered' => '#FF4500',
  'orchid' => '#DA70D6',
  'palegoldenrod' => '#EEE8AA',
  'palegreen' => '#98FB98',
  'paleturquoise' => '#AFEEEE',
  'palevioletred' => '#DB7093',
  'papayawhip' => '#FFEFD5',
  'peachpuff' => '#FFDAB9',
  'peru' => '#CD853F',
  'pink' => '#FFC0CB',
  'plum' => '#DDA0DD',
  'powderblue' => '#B0E0E6',
  'purple' => '#800080',
  'rebeccapurple' => '#663399',
  'red' => '#FF0000',
  'rosybrown' => '#BC8F8F',
  'royalblue' => '#4169E1',
  'saddlebrown' => '#8B4513',
  'salmon' => '#FA8072',
  'sandybrown' => '#F4A460',
  'seagreen' => '#2E8B57',
  'seashell' => '#FFF5EE',
  'sienna' => '#A0522D',
  'silver' => '#C0C0C0',
  'skyblue' => '#87CEEB',
  'slateblue' => '#6A5ACD',
  'slategray' => '#708090',
  'slategrey' => '#708090',
  'snow' => '#FFFAFA',
  'springgreen' => '#00FF7F',
  'steelblue' => '#4682B4',
  'tan' => '#D2B48C',
  'teal' => '#008080',
  'thistle' => '#D8BFD8',
  'tomato' => '#FF6347',
  'turquoise' => '#40E0D0',
  'violet' => '#EE82EE',
  'wheat' => '#F5DEB3',
  'white' => '#FFFFFF',
  'whitesmoke' => '#F5F5F5',
  'yellow' => '#FFFF00',
  'yellowgreen' => '#9ACD32'
)
--DESCRIPTION--

Lookup array of color names to six digit hexadecimal number corresponding
to color, with preceding hash mark. Used when parsing colors.  The lookup
is done in a case-insensitive manner.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt000064400000000466151213255750023511 0ustar00URI.HostBlacklist
TYPE: list
VERSION: 1.3.0
DEFAULT: array()
--DESCRIPTION--
List of strings that are forbidden in the host of any URI. Use it to kill
domain names of spam, etc. Note that it will catch anything in the domain,
so <tt>moo.com</tt> will catch <tt>moo.com.example.com</tt>.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt000064400000000437151213255750025065 0ustar00HTML.FlashAllowFullScreen
TYPE: bool
VERSION: 4.2.0
DEFAULT: false
--DESCRIPTION--
<p>
    Whether or not to permit embedded Flash content from
    %HTML.SafeObject to expand to the full screen.  Corresponds to
    the <code>allowFullScreen</code> parameter.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt000064400000000661151213255750023753 0ustar00Core.CollectErrors
TYPE: bool
VERSION: 2.0.0
DEFAULT: false
--DESCRIPTION--

Whether or not to collect errors found while filtering the document. This
is a useful way to give feedback to your users. <strong>Warning:</strong>
Currently this feature is very patchy and experimental, with lots of
possible error messages not yet implemented. It will not cause any
problems, but it may not help your users either.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt000064400000001077151213255750024063 0ustar00Core.HiddenElements
TYPE: lookup
--DEFAULT--
array (
  'script' => true,
  'style' => true,
)
--DESCRIPTION--

<p>
  This directive is a lookup array of elements which should have their
  contents removed when they are not allowed by the HTML definition.
  For example, the contents of a <code>script</code> tag are not
  normally shown in a document, so if script tags are to be removed,
  their contents should be removed to. This is opposed to a <code>b</code>
  tag, which defines some presentational changes but does not hide its
  contents.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt000064400000000516151213255750023364 0ustar00HTML.Proprietary
TYPE: bool
VERSION: 3.1.0
DEFAULT: false
--DESCRIPTION--
<p>
    Whether or not to allow proprietary elements and attributes in your
    documents, as per <code>HTMLPurifier_HTMLModule_Proprietary</code>.
    <strong>Warning:</strong> This can cause your documents to stop
    validating!
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt000064400000001524151213255750025007 0ustar00HTML.ForbiddenAttributes
TYPE: lookup
VERSION: 3.1.0
DEFAULT: array()
--DESCRIPTION--
<p>
    While this directive is similar to %HTML.AllowedAttributes, for
    forwards-compatibility with XML, this attribute has a different syntax. Instead of
    <code>tag.attr</code>, use <code>tag@attr</code>. To disallow <code>href</code>
    attributes in <code>a</code> tags, set this directive to
    <code>a@href</code>. You can also disallow an attribute globally with
    <code>attr</code> or <code>*@attr</code> (either syntax is fine; the latter
    is provided for consistency with %HTML.AllowedAttributes).
</p>
<p>
    <strong>Warning:</strong> This directive complements %HTML.ForbiddenElements,
    accordingly, check
    out that directive for a discussion of why you
    should think twice before using this directive.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt000064400000000423151213255750026102 0ustar00Output.CommentScriptContents
TYPE: bool
VERSION: 2.0.0
DEFAULT: true
--DESCRIPTION--
Determines whether or not HTML Purifier should attempt to fix up the
contents of script tags for legacy browsers with comments.
--ALIASES--
Core.CommentScriptContents
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt000064400000001224151213255750023634 0ustar00Attr.IDPrefixLocal
TYPE: string
VERSION: 1.2.0
DEFAULT: ''
--DESCRIPTION--
Temporary prefix for IDs used in conjunction with %Attr.IDPrefix.  If you
need to allow multiple sets of user content on web page, you may need to
have a seperate prefix that changes with each iteration.  This way,
seperately submitted user content displayed on the same page doesn't
clobber each other. Ideal values are unique identifiers for the content it
represents (i.e. the id of the row in the database). Be sure to add a
seperator (like an underscore) at the end.  Warning: this directive will
not work unless %Attr.IDPrefix is set to a non-empty value!
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt000064400000001143151213255750023702 0ustar00URI.MungeResources
TYPE: bool
VERSION: 3.1.1
DEFAULT: false
--DESCRIPTION--
<p>
    If true, any URI munging directives like %URI.Munge
    will also apply to embedded resources, such as <code>&lt;img src=""&gt;</code>.
    Be careful enabling this directive if you have a redirector script
    that does not use the <code>Location</code> HTTP header; all of your images
    and other embedded resources will break.
</p>
<p>
    <strong>Warning:</strong> It is strongly advised you use this in conjunction
    %URI.MungeSecretKey to mitigate the security risk of an open redirector.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt000064400000001073151213255750023436 0ustar00HTML.BlockWrapper
TYPE: string
VERSION: 1.3.0
DEFAULT: 'p'
--DESCRIPTION--

<p>
    String name of element to wrap inline elements that are inside a block
    context.  This only occurs in the children of blockquote in strict mode.
</p>
<p>
    Example: by default value,
    <code>&lt;blockquote&gt;Foo&lt;/blockquote&gt;</code> would become
    <code>&lt;blockquote&gt;&lt;p&gt;Foo&lt;/p&gt;&lt;/blockquote&gt;</code>.
    The <code>&lt;p&gt;</code> tags can be replaced with whatever you desire,
    as long as it is a block level element.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt000064400000000412151213255750022471 0ustar00HTML.Trusted
TYPE: bool
VERSION: 2.0.0
DEFAULT: false
--DESCRIPTION--
Indicates whether or not the user input is trusted or not. If the input is
trusted, a more expansive set of allowed tags and attributes will be used.
See also %CSS.Trusted.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt000064400000000616151213255750023047 0ustar00HTML.SafeIframe
TYPE: bool
VERSION: 4.4.0
DEFAULT: false
--DESCRIPTION--
<p>
    Whether or not to permit iframe tags in untrusted documents.  This
    directive must be accompanied by a whitelist of permitted iframes,
    such as %URI.SafeIframeRegexp, otherwise it will fatally error.
    This directive has no effect on strict doctypes, as iframes are not
    valid.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt000064400000000243151213255750022640 0ustar00HTML.Nofollow
TYPE: bool
VERSION: 4.3.0
DEFAULT: FALSE
--DESCRIPTION--
If enabled, nofollow rel attributes are added to all outgoing links.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt000064400000000733151213255750022665 0ustar00Attr.IDPrefix
TYPE: string
VERSION: 1.2.0
DEFAULT: ''
--DESCRIPTION--
String to prefix to IDs.  If you have no idea what IDs your pages may use,
you may opt to simply add a prefix to all user-submitted ID attributes so
that they are still usable, but will not conflict with core page IDs.
Example: setting the directive to 'user_' will result in a user submitted
'foo' to become 'user_foo'  Be sure to set %HTML.EnableAttrID to true
before using this.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt000064400000001307151213255750025313 0ustar00HTML.AllowedCommentsRegexp
TYPE: string/null
VERSION: 4.4.0
DEFAULT: NULL
--DESCRIPTION--
A regexp, which if it matches the body of a comment, indicates that
it should be allowed. Trailing and leading spaces are removed prior
to running this regular expression.
<strong>Warning:</strong> Make sure you specify
correct anchor metacharacters <code>^regex$</code>, otherwise you may accept
comments that you did not mean to! In particular, the regex <code>/foo|bar/</code>
is probably not sufficiently strict, since it also allows <code>foobar</code>.
See also %HTML.AllowedComments (these directives are union'ed together,
so a comment is considered valid if any directive deems it valid.)
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt000064400000001326151213255750023764 0ustar00HTML.AllowedModules
TYPE: lookup/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    A doctype comes with a set of usual modules to use. Without having
    to mucking about with the doctypes, you can quickly activate or
    disable these modules by specifying which modules you wish to allow
    with this directive. This is most useful for unit testing specific
    modules, although end users may find it useful for their own ends.
</p>
<p>
    If you specify a module that does not exist, the manager will silently
    fail to use it, so be careful! User-defined modules are not affected
    by this directive. Modules defined in %HTML.CoreModules are not
    affected by this directive.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt000064400000001054151213255750025072 0ustar00Core.MaintainLineNumbers
TYPE: bool/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--

<p>
  If true, HTML Purifier will add line number information to all tokens.
  This is useful when error reporting is turned on, but can result in
  significant performance degradation and should not be used when
  unnecessary. This directive must be used with the DirectLex lexer,
  as the DOMLex lexer does not (yet) support this functionality.
  If the value is null, an appropriate value will be selected based
  on other configuration.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt000064400000000336151213255750024117 0ustar00Attr.AllowedClasses
TYPE: lookup/null
VERSION: 4.0.0
DEFAULT: null
--DESCRIPTION--
List of allowed class values in the class attribute. By default, this is null,
which means all classes are allowed.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt000064400000000253151213255750023131 0ustar00HTML.TidyRemove
TYPE: lookup
VERSION: 2.0.0
DEFAULT: array()
--DESCRIPTION--

Fixes to remove from the default set of Tidy fixes as per your level.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt000064400000000421151213255750023600 0ustar00HTML.SafeScripting
TYPE: lookup
VERSION: 4.5.0
DEFAULT: array()
--DESCRIPTION--
<p>
    Whether or not to permit script tags to external scripts in documents.
    Inline scripting is not allowed, and the script must match an explicit whitelist.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt000064400000000500151213255750025041 0ustar00Attr.DefaultInvalidImage
TYPE: string
DEFAULT: ''
--DESCRIPTION--
This is the default image an img tag will be pointed to if it does not have
a valid src attribute.  In future versions, we may allow the image tag to
be removed completely, but due to design issues, this is not possible right
now.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt000064400000000745151213255750023642 0ustar00URI.AllowedSchemes
TYPE: lookup
--DEFAULT--
array (
  'http' => true,
  'https' => true,
  'mailto' => true,
  'ftp' => true,
  'nntp' => true,
  'news' => true,
  'tel' => true,
)
--DESCRIPTION--
Whitelist that defines the schemes that a URI is allowed to have.  This
prevents XSS attacks from using pseudo-schemes like javascript or mocha.
There is also support for the <code>data</code> and <code>file</code>
URI schemes, but they are not enabled by default.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini000064400000000055151213255750021172 0ustar00name = "HTML Purifier"

; vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt000064400000000775151213255750023371 0ustar00Output.SortAttr
TYPE: bool
VERSION: 3.2.0
DEFAULT: false
--DESCRIPTION--
<p>
  If true, HTML Purifier will sort attributes by name before writing them back
  to the document, converting a tag like: <code>&lt;el b="" a="" c="" /&gt;</code>
  to <code>&lt;el a="" b="" c="" /&gt;</code>. This is a workaround for
  a bug in FCKeditor which causes it to swap attributes order, adding noise
  to text diffs. If you're not seeing this bug, chances are, you don't need
  this directive.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt000064400000000661151213255750026277 0ustar00Core.ConvertDocumentToFragment
TYPE: bool
DEFAULT: true
--DESCRIPTION--

This parameter determines whether or not the filter should convert
input that is a full document with html and body tags to a fragment
of just the contents of a body tag. This parameter is simply something
HTML Purifier can do during an edge-case: for most inputs, this
processing is not necessary.

--ALIASES--
Core.AcceptFullDocuments
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt000064400000005307151213255750022015 0ustar00URI.Munge
TYPE: string/null
VERSION: 1.3.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    Munges all browsable (usually http, https and ftp)
    absolute URIs into another URI, usually a URI redirection service.
    This directive accepts a URI, formatted with a <code>%s</code> where
    the url-encoded original URI should be inserted (sample:
    <code>http://www.google.com/url?q=%s</code>).
</p>
<p>
    Uses for this directive:
</p>
<ul>
    <li>
        Prevent PageRank leaks, while being fairly transparent
        to users (you may also want to add some client side JavaScript to
        override the text in the statusbar). <strong>Notice</strong>:
        Many security experts believe that this form of protection does not deter spam-bots.
    </li>
    <li>
        Redirect users to a splash page telling them they are leaving your
        website. While this is poor usability practice, it is often mandated
        in corporate environments.
    </li>
</ul>
<p>
    Prior to HTML Purifier 3.1.1, this directive also enabled the munging
    of browsable external resources, which could break things if your redirection
    script was a splash page or used <code>meta</code> tags. To revert to
    previous behavior, please use %URI.MungeResources.
</p>
<p>
    You may want to also use %URI.MungeSecretKey along with this directive
    in order to enforce what URIs your redirector script allows. Open
    redirector scripts can be a security risk and negatively affect the
    reputation of your domain name.
</p>
<p>
    Starting with HTML Purifier 3.1.1, there is also these substitutions:
</p>
<table>
    <thead>
        <tr>
            <th>Key</th>
            <th>Description</th>
            <th>Example <code>&lt;a href=""&gt;</code></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>%r</td>
            <td>1 - The URI embeds a resource<br />(blank) - The URI is merely a link</td>
            <td></td>
        </tr>
        <tr>
            <td>%n</td>
            <td>The name of the tag this URI came from</td>
            <td>a</td>
        </tr>
        <tr>
            <td>%m</td>
            <td>The name of the attribute this URI came from</td>
            <td>href</td>
        </tr>
        <tr>
            <td>%p</td>
            <td>The name of the CSS property this URI came from, or blank if irrelevant</td>
            <td></td>
        </tr>
    </tbody>
</table>
<p>
    Admittedly, these letters are somewhat arbitrary; the only stipulation
    was that they couldn't be a through f. r is for resource (I would have preferred
    e, but you take what you can get), n is for name, m
    was picked because it came after n (and I couldn't use a), p is for
    property.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt000064400000000606151213255750023313 0ustar00URI.MakeAbsolute
TYPE: bool
VERSION: 2.1.0
DEFAULT: false
--DESCRIPTION--

<p>
    Converts all URIs into absolute forms. This is useful when the HTML
    being filtered assumes a specific base path, but will actually be
    viewed in a different context (and setting an alternate base URI is
    not possible). %URI.Base must be set for this directive to work.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt000064400000001156151213255750023266 0ustar00HTML.CoreModules
TYPE: lookup
VERSION: 2.0.0
--DEFAULT--
array (
  'Structure' => true,
  'Text' => true,
  'Hypertext' => true,
  'List' => true,
  'NonXMLCommonAttributes' => true,
  'XMLCommonAttributes' => true,
  'CommonAttributes' => true,
)
--DESCRIPTION--

<p>
    Certain modularized doctypes (XHTML, namely), have certain modules
    that must be included for the doctype to be an conforming document
    type: put those modules here. By default, XHTML's core modules
    are used. You can set this to a blank array to disable core module
    protection, but this is not recommended.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt000064400000000305151213255750023545 0ustar00Test.ForceNoIconv
TYPE: bool
DEFAULT: false
--DESCRIPTION--
When set to true, HTMLPurifier_Encoder will act as if iconv does not exist
and use only pure PHP implementations.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt000064400000000304151213255750023470 0ustar00CSS.DefinitionRev
TYPE: int
VERSION: 2.0.0
DEFAULT: 1
--DESCRIPTION--

<p>
    Revision identifier for your custom definition. See
    %HTML.DefinitionRev for details.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt000064400000000615151213255750022336 0ustar00Attr.ID.HTML5
TYPE: bool/null
DEFAULT: null
VERSION: 4.8.0
--DESCRIPTION--
In HTML5, restrictions on the format of the id attribute have been significantly
relaxed, such that any string is valid so long as it contains no spaces and
is at least one character.  In lieu of a general HTML5 compatibility flag,
set this configuration directive to true to use the relaxed rules.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt000064400000001362151213255750024435 0ustar00HTML.ForbiddenElements
TYPE: lookup
VERSION: 3.1.0
DEFAULT: array()
--DESCRIPTION--
<p>
    This was, perhaps, the most requested feature ever in HTML
    Purifier. Please don't abuse it! This is the logical inverse of
    %HTML.AllowedElements, and it will override that directive, or any
    other directive.
</p>
<p>
    If possible, %HTML.Allowed is recommended over this directive, because it
    can sometimes be difficult to tell whether or not you've forbidden all of
    the behavior you would like to disallow. If you forbid <code>img</code>
    with the expectation of preventing images on your site, you'll be in for
    a nasty surprise when people start using the <code>background-image</code>
    CSS property.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt000064400000000406151213255750024422 0ustar00Attr.ForbiddenClasses
TYPE: lookup
VERSION: 4.0.0
DEFAULT: array()
--DESCRIPTION--
List of forbidden class values in the class attribute. By default, this is
empty, which means that no classes are forbidden. See also %Attr.AllowedClasses.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt000064400000000335151213255750022313 0ustar00HTML.Strict
TYPE: bool
VERSION: 1.3.0
DEFAULT: false
DEPRECATED-VERSION: 1.7.0
DEPRECATED-USE: HTML.Doctype
--DESCRIPTION--
Determines whether or not to use Transitional (loose) or Strict rulesets.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt000064400000000717151213255760024705 0ustar00CSS.ForbiddenProperties
TYPE: lookup
VERSION: 4.2.0
DEFAULT: array()
--DESCRIPTION--
<p>
    This is the logical inverse of %CSS.AllowedProperties, and it will
    override that directive or any other directive.  If possible,
    %CSS.AllowedProperties is recommended over this directive,
    because it can sometimes be difficult to tell whether or not you've
    forbidden all of the CSS properties you truly would like to disallow.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt000064400000000767151213255760025361 0ustar00Core.EscapeInvalidChildren
TYPE: bool
DEFAULT: false
--DESCRIPTION--
<p><strong>Warning:</strong> this configuration option is no longer does anything as of 4.6.0.</p>

<p>When true, a child is found that is not allowed in the context of the
parent element will be transformed into text as if it were ASCII. When
false, that element and all internal tags will be dropped, though text will
be preserved.  There is no option for dropping the element but preserving
child nodes.</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt000064400000000506151213255760026563 0ustar00AutoFormat.PurifierLinkify.DocURL
TYPE: string
VERSION: 2.0.1
DEFAULT: '#%s'
ALIASES: AutoFormatParam.PurifierLinkifyDocURL
--DESCRIPTION--
<p>
  Location of configuration documentation to link to, let %s substitute
  into the configuration's namespace and directive names sans the percent
  sign.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt000064400000000444151213255760022714 0ustar00Core.Language
TYPE: string
VERSION: 2.0.0
DEFAULT: 'en'
--DESCRIPTION--

ISO 639 language code for localizable things in HTML Purifier to use,
which is mainly error reporting. There is currently only an English (en)
translation, so this directive is currently useless.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt000064400000000627151213255760025654 0ustar00Cache.SerializerPermissions
TYPE: int/null
VERSION: 4.3.0
DEFAULT: 0755
--DESCRIPTION--

<p>
    Directory permissions of the files and directories created inside
    the DefinitionCache/Serializer or other custom serializer path.
</p>
<p>
    In HTML Purifier 4.8.0, this also supports <code>NULL</code>,
    which means that no chmod'ing or directory creation shall
    occur.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt000064400000002272151213255760023353 0ustar00HTML.DefinitionID
TYPE: string/null
DEFAULT: NULL
VERSION: 2.0.0
--DESCRIPTION--

<p>
    Unique identifier for a custom-built HTML definition. If you edit
    the raw version of the HTMLDefinition, introducing changes that the
    configuration object does not reflect, you must specify this variable.
    If you change your custom edits, you should change this directive, or
    clear your cache. Example:
</p>
<pre>
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML', 'DefinitionID', '1');
$def = $config->getHTMLDefinition();
$def->addAttribute('a', 'tabindex', 'Number');
</pre>
<p>
    In the above example, the configuration is still at the defaults, but
    using the advanced API, an extra attribute has been added. The
    configuration object normally has no way of knowing that this change
    has taken place, so it needs an extra directive: %HTML.DefinitionID.
    If someone else attempts to use the default configuration, these two
    pieces of code will not clobber each other in the cache, since one has
    an extra directive attached to it.
</p>
<p>
    You <em>must</em> specify a value to this directive to use the
    advanced API features.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt000064400000001562151213255760024133 0ustar00HTML.AllowedElements
TYPE: lookup/null
VERSION: 1.3.0
DEFAULT: NULL
--DESCRIPTION--
<p>
    If HTML Purifier's tag set is unsatisfactory for your needs, you can
    overload it with your own list of tags to allow.  If you change
    this, you probably also want to change %HTML.AllowedAttributes; see
    also %HTML.Allowed which lets you set allowed elements and
    attributes at the same time.
</p>
<p>
    If you attempt to allow an element that HTML Purifier does not know
    about, HTML Purifier will raise an error.  You will need to manually
    tell HTML Purifier about this element by using the
    <a href="http://htmlpurifier.org/docs/enduser-customize.html">advanced customization features.</a>
</p>
<p>
    <strong>Warning:</strong> If another directive conflicts with the
    elements here, <em>that</em> directive will win and override.
</p>
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt000064400000000447151213255760030203 0ustar00libAutoFormat.RemoveSpansWithoutAttributes
TYPE: bool
VERSION: 4.0.1
DEFAULT: false
--DESCRIPTION--
<p>
  This directive causes <code>span</code> tags without any attributes
  to be removed. It will also remove spans that had all attributes
  removed during processing.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt000064400000000512151213255760024226 0ustar00Cache.SerializerPath
TYPE: string/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    Absolute path with no trailing slash to store serialized definitions in.
    Default is within the
    HTML Purifier library inside DefinitionCache/Serializer. This
    path must be writable by the webserver.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt000064400000000312151213255760024511 0ustar00Core.EscapeInvalidTags
TYPE: bool
DEFAULT: false
--DESCRIPTION--
When true, invalid tags will be written back to the document as plain text.
Otherwise, they are silently dropped.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt000064400000001077151213255760026003 0ustar00Core.AllowHostnameUnderscore
TYPE: bool
VERSION: 4.6.0
DEFAULT: false
--DESCRIPTION--
<p>
    By RFC 1123, underscores are not permitted in host names.
    (This is in contrast to the specification for DNS, RFC
    2181, which allows underscores.)
    However, most browsers do the right thing when faced with
    an underscore in the host name, and so some poorly written
    websites are written with the expectation this should work.
    Setting this parameter to true relaxes our allowed character
    check so that underscores are permitted.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowParseManyTags.txt000064400000000501151213255760024700 0ustar00Core.AllowParseManyTags
TYPE: bool
DEFAULT: false
VERSION: 4.10.1
--DESCRIPTION--
<p>
    This directive allows parsing of many nested tags.
    If you set true, relaxes any hardcoded limit from the parser.
    However, in that case it may cause a Dos attack.
    Be careful when enabling it.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt000064400000000455151213255760023636 0ustar00AutoFormat.Custom
TYPE: list
VERSION: 2.0.1
DEFAULT: array()
--DESCRIPTION--

<p>
  This directive can be used to add custom auto-format injectors.
  Specify an array of injector names (class name minus the prefix)
  or concrete implementations. Injector class must exist.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt000064400000000243151213255760022364 0ustar00HTML.TidyAdd
TYPE: lookup
VERSION: 2.0.0
DEFAULT: array()
--DESCRIPTION--

Fixes to add to the default set of Tidy fixes as per your level.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt000064400000000566151213255760024223 0ustar00Cache.DefinitionImpl
TYPE: string/null
VERSION: 2.0.0
DEFAULT: 'Serializer'
--DESCRIPTION--

This directive defines which method to use when caching definitions,
the complex data-type that makes HTML Purifier tick. Set to null
to disable caching (not recommended, as you will see a definite
performance degradation).

--ALIASES--
Core.DefinitionCache
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt000064400000002260151213255760026365 0ustar00Filter.ExtractStyleBlocks.Scope
TYPE: string/null
VERSION: 3.0.0
DEFAULT: NULL
ALIASES: Filter.ExtractStyleBlocksScope, FilterParam.ExtractStyleBlocksScope
--DESCRIPTION--

<p>
  If you would like users to be able to define external stylesheets, but
  only allow them to specify CSS declarations for a specific node and
  prevent them from fiddling with other elements, use this directive.
  It accepts any valid CSS selector, and will prepend this to any
  CSS declaration extracted from the document. For example, if this
  directive is set to <code>#user-content</code> and a user uses the
  selector <code>a:hover</code>, the final selector will be
  <code>#user-content a:hover</code>.
</p>
<p>
  The comma shorthand may be used; consider the above example, with
  <code>#user-content, #user-content2</code>, the final selector will
  be <code>#user-content a:hover, #user-content2 a:hover</code>.
</p>
<p>
  <strong>Warning:</strong> It is possible for users to bypass this measure
  using a naughty + selector. This is a bug in CSS Tidy 1.3, not HTML
  Purifier, and I am working to get it fixed. Until then, HTML Purifier
  performs a basic check to prevent this.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt000064400000005306151213255760025321 0ustar00Filter.ExtractStyleBlocks
TYPE: bool
VERSION: 3.1.0
DEFAULT: false
EXTERNAL: CSSTidy
--DESCRIPTION--
<p>
  This directive turns on the style block extraction filter, which removes
  <code>style</code> blocks from input HTML, cleans them up with CSSTidy,
  and places them in the <code>StyleBlocks</code> context variable, for further
  use by you, usually to be placed in an external stylesheet, or a
  <code>style</code> block in the <code>head</code> of your document.
</p>
<p>
  Sample usage:
</p>
<pre><![CDATA[
<?php
    header('Content-type: text/html; charset=utf-8');
    echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
  <title>Filter.ExtractStyleBlocks</title>
<?php
    require_once '/path/to/library/HTMLPurifier.auto.php';
    require_once '/path/to/csstidy.class.php';

    $dirty = '<style>body {color:#F00;}</style> Some text';

    $config = HTMLPurifier_Config::createDefault();
    $config->set('Filter', 'ExtractStyleBlocks', true);
    $purifier = new HTMLPurifier($config);

    $html = $purifier->purify($dirty);

    // This implementation writes the stylesheets to the styles/ directory.
    // You can also echo the styles inside the document, but it's a bit
    // more difficult to make sure they get interpreted properly by
    // browsers; try the usual CSS armoring techniques.
    $styles = $purifier->context->get('StyleBlocks');
    $dir = 'styles/';
    if (!is_dir($dir)) mkdir($dir);
    $hash = sha1($_GET['html']);
    foreach ($styles as $i => $style) {
        file_put_contents($name = $dir . $hash . "_$i");
        echo '<link rel="stylesheet" type="text/css" href="'.$name.'" />';
    }
?>
</head>
<body>
  <div>
    <?php echo $html; ?>
  </div>
</b]]><![CDATA[ody>
</html>
]]></pre>
<p>
  <strong>Warning:</strong> It is possible for a user to mount an
  imagecrash attack using this CSS. Counter-measures are difficult;
  it is not simply enough to limit the range of CSS lengths (using
  relative lengths with many nesting levels allows for large values
  to be attained without actually specifying them in the stylesheet),
  and the flexible nature of selectors makes it difficult to selectively
  disable lengths on image tags (HTML Purifier, however, does disable
  CSS width and height in inline styling). There are probably two effective
  counter measures: an explicit width and height set to auto in all
  images in your document (unlikely) or the disabling of width and
  height (somewhat reasonable). Whether or not these measures should be
  used is left to the reader.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt000064400000000475151213255760025171 0ustar00AutoFormat.DisplayLinkURI
TYPE: bool
VERSION: 3.2.0
DEFAULT: false
--DESCRIPTION--
<p>
  This directive turns on the in-text display of URIs in &lt;a&gt; tags, and disables
  those links. For example, <a href="http://example.com">example</a> becomes
  example (<a>http://example.com</a>).
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt000064400000000515151213255760022132 0ustar00HTML.Forms
TYPE: bool
VERSION: 4.13.0
DEFAULT: false
--DESCRIPTION--
<p>
    Whether or not to permit form elements in the user input, regardless of
    %HTML.Trusted value. Please be very careful when using this functionality, as
    enabling forms in untrusted documents may allow for phishing attacks.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt000064400000000715151213255760023176 0ustar00CSS.AllowTricky
TYPE: bool
DEFAULT: false
VERSION: 3.1.0
--DESCRIPTION--
This parameter determines whether or not to allow "tricky" CSS properties and
values. Tricky CSS properties/values can drastically modify page layout or
be used for deceptive practices but do not directly constitute a security risk.
For example, <code>display:none;</code> is considered a tricky property that
will only be allowed if this directive is set to true.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt000064400000002162151213255760025117 0ustar00AutoFormat.AutoParagraph
TYPE: bool
VERSION: 2.0.1
DEFAULT: false
--DESCRIPTION--

<p>
  This directive turns on auto-paragraphing, where double newlines are
  converted in to paragraphs whenever possible. Auto-paragraphing:
</p>
<ul>
  <li>Always applies to inline elements or text in the root node,</li>
  <li>Applies to inline elements or text with double newlines in nodes
      that allow paragraph tags,</li>
  <li>Applies to double newlines in paragraph tags</li>
</ul>
<p>
  <code>p</code> tags must be allowed for this directive to take effect.
  We do not use <code>br</code> tags for paragraphing, as that is
  semantically incorrect.
</p>
<p>
  To prevent auto-paragraphing as a content-producer, refrain from using
  double-newlines except to specify a new paragraph or in contexts where
  it has special meaning (whitespace usually has no meaning except in
  tags like <code>pre</code>, so this should not be difficult.) To prevent
  the paragraphing of inline text adjacent to block elements, wrap them
  in <code>div</code> tags (the behavior is slightly different outside of
  the root node.)
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt000064400000000436151213255760024326 0ustar00HTML.TargetNoreferrer
TYPE: bool
VERSION: 4.8.0
DEFAULT: TRUE
--DESCRIPTION--
If enabled, noreferrer rel attributes are added to links which have
a target attribute associated with them.  This prevents malicious
destinations from overwriting the original window.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt000064400000001636151213255760023476 0ustar00Attr.ClassUseCDATA
TYPE: bool/null
DEFAULT: null
VERSION: 4.0.0
--DESCRIPTION--
If null, class will auto-detect the doctype and, if matching XHTML 1.1 or
XHTML 2.0, will use the restrictive NMTOKENS specification of class. Otherwise,
it will use a relaxed CDATA definition.  If true, the relaxed CDATA definition
is forced; if false, the NMTOKENS definition is forced.  To get behavior
of HTML Purifier prior to 4.0.0, set this directive to false.

Some rational behind the auto-detection:
in previous versions of HTML Purifier, it was assumed that the form of
class was NMTOKENS, as specified by the XHTML Modularization (representing
XHTML 1.1 and XHTML 2.0).  The DTDs for HTML 4.01 and XHTML 1.0, however
specify class as CDATA.  HTML 5 effectively defines it as CDATA, but
with the additional constraint that each name should be unique (this is not
explicitly outlined in previous specifications).
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt000064400000001722151213255760023632 0ustar00URI.MungeSecretKey
TYPE: string/null
VERSION: 3.1.1
DEFAULT: NULL
--DESCRIPTION--
<p>
    This directive enables secure checksum generation along with %URI.Munge.
    It should be set to a secure key that is not shared with anyone else.
    The checksum can be placed in the URI using %t. Use of this checksum
    affords an additional level of protection by allowing a redirector
    to check if a URI has passed through HTML Purifier with this line:
</p>

<pre>$checksum === hash_hmac("sha256", $url, $secret_key)</pre>

<p>
    If the output is TRUE, the redirector script should accept the URI.
</p>

<p>
    Please note that it would still be possible for an attacker to procure
    secure hashes en-mass by abusing your website's Preview feature or the
    like, but this service affords an additional level of protection
    that should be combined with website blacklisting.
</p>

<p>
    Remember this has no effect if %URI.Munge is not on.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt000064400000000304151213255760023500 0ustar00URI.DefinitionRev
TYPE: int
VERSION: 2.1.0
DEFAULT: 1
--DESCRIPTION--

<p>
    Revision identifier for your custom definition. See
    %HTML.DefinitionRev for details.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt000064400000000546151213255760023205 0ustar00Output.Newline
TYPE: string/null
VERSION: 2.0.1
DEFAULT: NULL
--DESCRIPTION--

<p>
    Newline string to format final output with. If left null, HTML Purifier
    will auto-detect the default newline type of the system and use that;
    you can manually override it here. Remember, \r\n is Windows, \r
    is Mac, and \n is Unix.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt000064400000002024151213255760023066 0ustar00Core.LexerImpl
TYPE: mixed/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--

<p>
  This parameter determines what lexer implementation can be used. The
  valid values are:
</p>
<dl>
  <dt><em>null</em></dt>
  <dd>
    Recommended, the lexer implementation will be auto-detected based on
    your PHP-version and configuration.
  </dd>
  <dt><em>string</em> lexer identifier</dt>
  <dd>
    This is a slim way of manually overridding the implementation.
    Currently recognized values are: DOMLex (the default PHP5
implementation)
    and DirectLex (the default PHP4 implementation). Only use this if
    you know what you are doing: usually, the auto-detection will
    manage things for cases you aren't even aware of.
  </dd>
  <dt><em>object</em> lexer instance</dt>
  <dd>
    Super-advanced: you can specify your own, custom, implementation that
    implements the interface defined by <code>HTMLPurifier_Lexer</code>.
    I may remove this option simply because I don't expect anyone
    to use it.
  </dd>
</dl>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt000064400000001601151213255760024111 0ustar00URI.SafeIframeRegexp
TYPE: string/null
VERSION: 4.4.0
DEFAULT: NULL
--DESCRIPTION--
<p>
    A PCRE regular expression that will be matched against an iframe URI.  This is
    a relatively inflexible scheme, but works well enough for the most common
    use-case of iframes: embedded video.  This directive only has an effect if
    %HTML.SafeIframe is enabled.  Here are some example values:
</p>
<ul>
    <li><code>%^http://www.youtube.com/embed/%</code> - Allow YouTube videos</li>
    <li><code>%^http://player.vimeo.com/video/%</code> - Allow Vimeo videos</li>
    <li><code>%^http://(www.youtube.com/embed/|player.vimeo.com/video/)%</code> - Allow both</li>
</ul>
<p>
    Note that this directive does not give you enough granularity to, say, disable
    all <code>autoplay</code> videos.  Pipe up on the HTML Purifier forums if this
    is a capability you want.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Base.txt000064400000001216151213255760021610 0ustar00URI.Base
TYPE: string/null
VERSION: 2.1.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    The base URI is the URI of the document this purified HTML will be
    inserted into.  This information is important if HTML Purifier needs
    to calculate absolute URIs from relative URIs, such as when %URI.MakeAbsolute
    is on.  You may use a non-absolute URI for this value, but behavior
    may vary (%URI.MakeAbsolute deals nicely with both absolute and
    relative paths, but forwards-compatibility is not guaranteed).
    <strong>Warning:</strong> If set, the scheme on this URI
    overrides the one specified by %URI.DefaultScheme.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt000064400000001154151213255760022745 0ustar00HTML.TidyLevel
TYPE: string
VERSION: 2.0.0
DEFAULT: 'medium'
--DESCRIPTION--

<p>General level of cleanliness the Tidy module should enforce.
There are four allowed values:</p>
<dl>
    <dt>none</dt>
    <dd>No extra tidying should be done</dd>
    <dt>light</dt>
    <dd>Only fix elements that would be discarded otherwise due to
    lack of support in doctype</dd>
    <dt>medium</dt>
    <dd>Enforce best practices</dd>
    <dt>heavy</dt>
    <dd>Transform all deprecated elements and attributes to standards
    compliant equivalents</dd>
</dl>

--ALLOWED--
'none', 'light', 'medium', 'heavy'
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt000064400000000472151213255760022277 0ustar00HTML.Parent
TYPE: string
VERSION: 1.3.0
DEFAULT: 'div'
--DESCRIPTION--

<p>
    String name of element that HTML fragment passed to library will be
    inserted in.  An interesting variation would be using span as the
    parent element, meaning that only inline tags would be allowed.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt000064400000001226151213255760024603 0ustar00Core.AggressivelyFixLt
TYPE: bool
VERSION: 2.1.0
DEFAULT: true
--DESCRIPTION--
<p>
    This directive enables aggressive pre-filter fixes HTML Purifier can
    perform in order to ensure that open angled-brackets do not get killed
    during parsing stage. Enabling this will result in two preg_replace_callback
    calls and at least two preg_replace calls for every HTML document parsed;
    if your users make very well-formed HTML, you can set this directive false.
    This has no effect when DirectLex is used.
</p>
<p>
    <strong>Notice:</strong> This directive's default turned from false to true
    in HTML Purifier 3.2.0.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt000064400000000701151213255760026711 0ustar00AutoFormat.RemoveEmpty.RemoveNbsp
TYPE: bool
VERSION: 4.0.0
DEFAULT: false
--DESCRIPTION--
<p>
  When enabled, HTML Purifier will treat any elements that contain only
  non-breaking spaces as well as regular whitespace as empty, and remove
  them when %AutoFormat.RemoveEmpty is enabled.
</p>
<p>
  See %AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions for a list of elements
  that don't have this behavior applied to them.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt000064400000000616151213255760027111 0ustar00Core.RemoveProcessingInstructions
TYPE: bool
VERSION: 4.2.0
DEFAULT: false
--DESCRIPTION--
Instead of escaping processing instructions in the form <code>&lt;? ...
?&gt;</code>, remove it out-right.  This may be useful if the HTML
you are validating contains XML processing instruction gunk, however,
it can also be user-unfriendly for people attempting to post PHP
snippets.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt000064400000001075151213255760026201 0ustar00Core.AggressivelyRemoveScript
TYPE: bool
VERSION: 4.9.0
DEFAULT: true
--DESCRIPTION--
<p>
    This directive enables aggressive pre-filter removal of
    script tags.  This is not necessary for security,
    but it can help work around a bug in libxml where embedded
    HTML elements inside script sections cause the parser to
    choke.  To revert to pre-4.9.0 behavior, set this to false.
    This directive has no effect if %Core.Trusted is true,
    %Core.RemoveScriptContents is false, or %Core.HiddenElements
    does not contain script.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt000064400000000446151213255760024105 0ustar00Attr.DefaultTextDir
TYPE: string
DEFAULT: 'ltr'
--DESCRIPTION--
Defines the default text direction (ltr or rtl) of the document being
parsed.  This generally is the same as the value of the dir attribute in
HTML, or ltr if that is not specified.
--ALLOWED--
'ltr', 'rtl'
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt000064400000001377151213255760022725 0ustar00Core.Encoding
TYPE: istring
DEFAULT: 'utf-8'
--DESCRIPTION--
If for some reason you are unable to convert all webpages to UTF-8, you can
use this directive as a stop-gap compatibility change to let HTML Purifier
deal with non UTF-8 input.  This technique has notable deficiencies:
absolutely no characters outside of the selected character encoding will be
preserved, not even the ones that have been ampersand escaped (this is due
to a UTF-8 specific <em>feature</em> that automatically resolves all
entities), making it pretty useless for anything except the most I18N-blind
applications, although %Core.EscapeNonASCIICharacters offers fixes this
trouble with another tradeoff. This directive only accepts ISO-8859-1 if
iconv is not enabled.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt000064400000000375151213255760023246 0ustar00HTML.TargetBlank
TYPE: bool
VERSION: 4.4.0
DEFAULT: FALSE
--DESCRIPTION--
If enabled, <code>target=blank</code> attributes are added to all outgoing links.
(This includes links from an HTTPS version of a page to an HTTP version.)
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt000064400000000743151213255760022662 0ustar00HTML.SafeEmbed
TYPE: bool
VERSION: 3.1.1
DEFAULT: false
--DESCRIPTION--
<p>
    Whether or not to permit embed tags in documents, with a number of extra
    security features added to prevent script execution. This is similar to
    what websites like MySpace do to embed tags. Embed is a proprietary
    element and will cause your website to stop validating; you should
    see if you can use %Output.FlashCompat with %HTML.SafeObject instead
    first.</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt000064400000001473151213255760023666 0ustar00Output.TidyFormat
TYPE: bool
VERSION: 1.1.1
DEFAULT: false
--DESCRIPTION--
<p>
    Determines whether or not to run Tidy on the final output for pretty
    formatting reasons, such as indentation and wrap.
</p>
<p>
    This can greatly improve readability for editors who are hand-editing
    the HTML, but is by no means necessary as HTML Purifier has already
    fixed all major errors the HTML may have had. Tidy is a non-default
    extension, and this directive will silently fail if Tidy is not
    available.
</p>
<p>
    If you are looking to make the overall look of your page's source
    better, I recommend running Tidy on the entire page rather than just
    user-content (after all, the indentation relative to the containing
    blocks will be incorrect).
</p>
--ALIASES--
Core.TidyFormat
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt000064400000001137151213255760024503 0ustar00HTML.AllowedAttributes
TYPE: lookup/null
VERSION: 1.3.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    If HTML Purifier's attribute set is unsatisfactory, overload it!
    The syntax is "tag.attr" or "*.attr" for the global attributes
    (style, id, class, dir, lang, xml:lang).
</p>
<p>
    <strong>Warning:</strong> If another directive conflicts with the
    elements here, <em>that</em> directive will win and override. For
    example, %HTML.EnableAttrID will take precedence over *.id in this
    directive.  You must set that directive to true before you can use
    IDs at all.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt000064400000000475151213255760024517 0ustar00Attr.IDBlacklistRegexp
TYPE: string/null
VERSION: 1.6.0
DEFAULT: NULL
--DESCRIPTION--
PCRE regular expression to be matched against all IDs. If the expression is
matches, the ID is rejected. Use this with care: may cause significant
degradation. ID matching is done after all other validation.
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt000064400000001157151213255760023257 0ustar00CSS.MaxImgLength
TYPE: string/null
DEFAULT: '1200px'
VERSION: 3.1.1
--DESCRIPTION--
<p>
 This parameter sets the maximum allowed length on <code>img</code> tags,
 effectively the <code>width</code> and <code>height</code> properties.
 Only absolute units of measurement (in, pt, pc, mm, cm) and pixels (px) are allowed. This is
 in place to prevent imagecrash attacks, disable with null at your own risk.
 This directive is similar to %HTML.MaxImgLength, and both should be
 concurrently edited, although there are
 subtle differences in the input format (the CSS max is a number with
 a unit).
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt000064400000000745151213255760027053 0ustar00Filter.ExtractStyleBlocks.Escaping
TYPE: bool
VERSION: 3.0.0
DEFAULT: true
ALIASES: Filter.ExtractStyleBlocksEscaping, FilterParam.ExtractStyleBlocksEscaping
--DESCRIPTION--

<p>
  Whether or not to escape the dangerous characters &lt;, &gt; and &amp;
  as \3C, \3E and \26, respectively. This is can be safely set to false
  if the contents of StyleBlocks will be placed in an external stylesheet,
  where there is no risk of it being interpreted as HTML.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt000064400000000413151213255760023763 0ustar00AutoFormat.Linkify
TYPE: bool
VERSION: 2.0.1
DEFAULT: false
--DESCRIPTION--

<p>
  This directive turns on linkification, auto-linking http, ftp and
  https URLs. <code>a</code> tags with the <code>href</code> attribute
  must be allowed.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt000064400000000464151213255760025477 0ustar00AutoFormat.PurifierLinkify
TYPE: bool
VERSION: 2.0.1
DEFAULT: false
--DESCRIPTION--

<p>
  Internal auto-formatter that converts configuration directives in
  syntax <a>%Namespace.Directive</a> to links. <code>a</code> tags
  with the <code>href</code> attribute must be allowed.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt000064400000001744151213255760022440 0ustar00HTML.Allowed
TYPE: itext/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    This is a preferred convenience directive that combines
    %HTML.AllowedElements and %HTML.AllowedAttributes.
    Specify elements and attributes that are allowed using:
    <code>element1[attr1|attr2],element2...</code>.  For example,
    if you would like to only allow paragraphs and links, specify
    <code>a[href],p</code>.  You can specify attributes that apply
    to all elements using an asterisk, e.g. <code>*[lang]</code>.
    You can also use newlines instead of commas to separate elements.
</p>
<p>
    <strong>Warning</strong>:
    All of the constraints on the component directives are still enforced.
    The syntax is a <em>subset</em> of TinyMCE's <code>valid_elements</code>
    whitelist: directly copy-pasting it here will probably result in
    broken whitelists. If %HTML.AllowedElements or %HTML.AllowedAttributes
    are set, this directive has no effect.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt000064400000000671151213255760023054 0ustar00HTML.SafeObject
TYPE: bool
VERSION: 3.1.1
DEFAULT: false
--DESCRIPTION--
<p>
    Whether or not to permit object tags in documents, with a number of extra
    security features added to prevent script execution. This is similar to
    what websites like MySpace do to object tags.  You should also enable
    %Output.FlashCompat in order to generate Internet Explorer
    compatibility code for your object tags.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Host.txt000064400000001462151213255760021656 0ustar00URI.Host
TYPE: string/null
VERSION: 1.2.0
DEFAULT: NULL
--DESCRIPTION--

<p>
    Defines the domain name of the server, so we can determine whether or
    an absolute URI is from your website or not.  Not strictly necessary,
    as users should be using relative URIs to reference resources on your
    website.  It will, however, let you use absolute URIs to link to
    subdomains of the domain you post here: i.e. example.com will allow
    sub.example.com.  However, higher up domains will still be excluded:
    if you set %URI.Host to sub.example.com, example.com will be blocked.
    <strong>Note:</strong> This directive overrides %URI.Base because
    a given page may be on a sub-domain, but you wish HTML Purifier to be
    more relaxed and allow some of the parent domains too.
</p>
--# vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php000064400000015713151213255760022555 0ustar00<?php

class HTMLPurifier_ConfigSchema_InterchangeBuilder
{

    /**
     * Used for processing DEFAULT, nothing else.
     * @type HTMLPurifier_VarParser
     */
    protected $varParser;

    /**
     * @param HTMLPurifier_VarParser $varParser
     */
    public function __construct($varParser = null)
    {
        $this->varParser = $varParser ? $varParser : new HTMLPurifier_VarParser_Native();
    }

    /**
     * @param string $dir
     * @return HTMLPurifier_ConfigSchema_Interchange
     */
    public static function buildFromDirectory($dir = null)
    {
        $builder = new HTMLPurifier_ConfigSchema_InterchangeBuilder();
        $interchange = new HTMLPurifier_ConfigSchema_Interchange();
        return $builder->buildDir($interchange, $dir);
    }

    /**
     * @param HTMLPurifier_ConfigSchema_Interchange $interchange
     * @param string $dir
     * @return HTMLPurifier_ConfigSchema_Interchange
     */
    public function buildDir($interchange, $dir = null)
    {
        if (!$dir) {
            $dir = HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema';
        }
        if (file_exists($dir . '/info.ini')) {
            $info = parse_ini_file($dir . '/info.ini');
            $interchange->name = $info['name'];
        }

        $files = array();
        $dh = opendir($dir);
        while (false !== ($file = readdir($dh))) {
            if (!$file || $file[0] == '.' || strrchr($file, '.') !== '.txt') {
                continue;
            }
            $files[] = $file;
        }
        closedir($dh);

        sort($files);
        foreach ($files as $file) {
            $this->buildFile($interchange, $dir . '/' . $file);
        }
        return $interchange;
    }

    /**
     * @param HTMLPurifier_ConfigSchema_Interchange $interchange
     * @param string $file
     */
    public function buildFile($interchange, $file)
    {
        $parser = new HTMLPurifier_StringHashParser();
        $this->build(
            $interchange,
            new HTMLPurifier_StringHash($parser->parseFile($file))
        );
    }

    /**
     * Builds an interchange object based on a hash.
     * @param HTMLPurifier_ConfigSchema_Interchange $interchange HTMLPurifier_ConfigSchema_Interchange object to build
     * @param HTMLPurifier_StringHash $hash source data
     * @throws HTMLPurifier_ConfigSchema_Exception
     */
    public function build($interchange, $hash)
    {
        if (!$hash instanceof HTMLPurifier_StringHash) {
            $hash = new HTMLPurifier_StringHash($hash);
        }
        if (!isset($hash['ID'])) {
            throw new HTMLPurifier_ConfigSchema_Exception('Hash does not have any ID');
        }
        if (strpos($hash['ID'], '.') === false) {
            if (count($hash) == 2 && isset($hash['DESCRIPTION'])) {
                $hash->offsetGet('DESCRIPTION'); // prevent complaining
            } else {
                throw new HTMLPurifier_ConfigSchema_Exception('All directives must have a namespace');
            }
        } else {
            $this->buildDirective($interchange, $hash);
        }
        $this->_findUnused($hash);
    }

    /**
     * @param HTMLPurifier_ConfigSchema_Interchange $interchange
     * @param HTMLPurifier_StringHash $hash
     * @throws HTMLPurifier_ConfigSchema_Exception
     */
    public function buildDirective($interchange, $hash)
    {
        $directive = new HTMLPurifier_ConfigSchema_Interchange_Directive();

        // These are required elements:
        $directive->id = $this->id($hash->offsetGet('ID'));
        $id = $directive->id->toString(); // convenience

        if (isset($hash['TYPE'])) {
            $type = explode('/', $hash->offsetGet('TYPE'));
            if (isset($type[1])) {
                $directive->typeAllowsNull = true;
            }
            $directive->type = $type[0];
        } else {
            throw new HTMLPurifier_ConfigSchema_Exception("TYPE in directive hash '$id' not defined");
        }

        if (isset($hash['DEFAULT'])) {
            try {
                $directive->default = $this->varParser->parse(
                    $hash->offsetGet('DEFAULT'),
                    $directive->type,
                    $directive->typeAllowsNull
                );
            } catch (HTMLPurifier_VarParserException $e) {
                throw new HTMLPurifier_ConfigSchema_Exception($e->getMessage() . " in DEFAULT in directive hash '$id'");
            }
        }

        if (isset($hash['DESCRIPTION'])) {
            $directive->description = $hash->offsetGet('DESCRIPTION');
        }

        if (isset($hash['ALLOWED'])) {
            $directive->allowed = $this->lookup($this->evalArray($hash->offsetGet('ALLOWED')));
        }

        if (isset($hash['VALUE-ALIASES'])) {
            $directive->valueAliases = $this->evalArray($hash->offsetGet('VALUE-ALIASES'));
        }

        if (isset($hash['ALIASES'])) {
            $raw_aliases = trim($hash->offsetGet('ALIASES'));
            $aliases = preg_split('/\s*,\s*/', $raw_aliases);
            foreach ($aliases as $alias) {
                $directive->aliases[] = $this->id($alias);
            }
        }

        if (isset($hash['VERSION'])) {
            $directive->version = $hash->offsetGet('VERSION');
        }

        if (isset($hash['DEPRECATED-USE'])) {
            $directive->deprecatedUse = $this->id($hash->offsetGet('DEPRECATED-USE'));
        }

        if (isset($hash['DEPRECATED-VERSION'])) {
            $directive->deprecatedVersion = $hash->offsetGet('DEPRECATED-VERSION');
        }

        if (isset($hash['EXTERNAL'])) {
            $directive->external = preg_split('/\s*,\s*/', trim($hash->offsetGet('EXTERNAL')));
        }

        $interchange->addDirective($directive);
    }

    /**
     * Evaluates an array PHP code string without array() wrapper
     * @param string $contents
     */
    protected function evalArray($contents)
    {
        return eval('return array(' . $contents . ');');
    }

    /**
     * Converts an array list into a lookup array.
     * @param array $array
     * @return array
     */
    protected function lookup($array)
    {
        $ret = array();
        foreach ($array as $val) {
            $ret[$val] = true;
        }
        return $ret;
    }

    /**
     * Convenience function that creates an HTMLPurifier_ConfigSchema_Interchange_Id
     * object based on a string Id.
     * @param string $id
     * @return HTMLPurifier_ConfigSchema_Interchange_Id
     */
    protected function id($id)
    {
        return HTMLPurifier_ConfigSchema_Interchange_Id::make($id);
    }

    /**
     * Triggers errors for any unused keys passed in the hash; such keys
     * may indicate typos, missing values, etc.
     * @param HTMLPurifier_StringHash $hash Hash to check.
     */
    protected function _findUnused($hash)
    {
        $accessed = $hash->getAccessed();
        foreach ($hash as $k => $v) {
            if (!isset($accessed[$k])) {
                trigger_error("String hash key '$k' not used by builder", E_USER_NOTICE);
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php000064400000005444151213255760021565 0ustar00<?php

/**
 * Fluent interface for validating the contents of member variables.
 * This should be immutable. See HTMLPurifier_ConfigSchema_Validator for
 * use-cases. We name this an 'atom' because it's ONLY for validations that
 * are independent and usually scalar.
 */
class HTMLPurifier_ConfigSchema_ValidatorAtom
{
    /**
     * @type string
     */
    protected $context;

    /**
     * @type object
     */
    protected $obj;

    /**
     * @type string
     */
    protected $member;

    /**
     * @type mixed
     */
    protected $contents;

    public function __construct($context, $obj, $member)
    {
        $this->context = $context;
        $this->obj = $obj;
        $this->member = $member;
        $this->contents =& $obj->$member;
    }

    /**
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    public function assertIsString()
    {
        if (!is_string($this->contents)) {
            $this->error('must be a string');
        }
        return $this;
    }

    /**
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    public function assertIsBool()
    {
        if (!is_bool($this->contents)) {
            $this->error('must be a boolean');
        }
        return $this;
    }

    /**
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    public function assertIsArray()
    {
        if (!is_array($this->contents)) {
            $this->error('must be an array');
        }
        return $this;
    }

    /**
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    public function assertNotNull()
    {
        if ($this->contents === null) {
            $this->error('must not be null');
        }
        return $this;
    }

    /**
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    public function assertAlnum()
    {
        $this->assertIsString();
        if (!ctype_alnum($this->contents)) {
            $this->error('must be alphanumeric');
        }
        return $this;
    }

    /**
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    public function assertNotEmpty()
    {
        if (empty($this->contents)) {
            $this->error('must not be empty');
        }
        return $this;
    }

    /**
     * @return HTMLPurifier_ConfigSchema_ValidatorAtom
     */
    public function assertIsLookup()
    {
        $this->assertIsArray();
        foreach ($this->contents as $v) {
            if ($v !== true) {
                $this->error('must be a lookup array');
            }
        }
        return $this;
    }

    /**
     * @param string $msg
     * @throws HTMLPurifier_ConfigSchema_Exception
     */
    protected function error($msg)
    {
        throw new HTMLPurifier_ConfigSchema_Exception(ucfirst($this->member) . ' in ' . $this->context . ' ' . $msg);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php000064400000000242151213255760020744 0ustar00<?php

/**
 * Exceptions related to configuration schema
 */
class HTMLPurifier_ConfigSchema_Exception extends HTMLPurifier_Exception
{

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIParser.php000064400000004366151213255760016307 0ustar00<?php

/**
 * Parses a URI into the components and fragment identifier as specified
 * by RFC 3986.
 */
class HTMLPurifier_URIParser
{

    /**
     * Instance of HTMLPurifier_PercentEncoder to do normalization with.
     */
    protected $percentEncoder;

    public function __construct()
    {
        $this->percentEncoder = new HTMLPurifier_PercentEncoder();
    }

    /**
     * Parses a URI.
     * @param $uri string URI to parse
     * @return HTMLPurifier_URI representation of URI. This representation has
     *         not been validated yet and may not conform to RFC.
     */
    public function parse($uri)
    {
        $uri = $this->percentEncoder->normalize($uri);

        // Regexp is as per Appendix B.
        // Note that ["<>] are an addition to the RFC's recommended
        // characters, because they represent external delimeters.
        $r_URI = '!'.
            '(([a-zA-Z0-9\.\+\-]+):)?'. // 2. Scheme
            '(//([^/?#"<>]*))?'. // 4. Authority
            '([^?#"<>]*)'.       // 5. Path
            '(\?([^#"<>]*))?'.   // 7. Query
            '(#([^"<>]*))?'.     // 8. Fragment
            '!';

        $matches = array();
        $result = preg_match($r_URI, $uri, $matches);

        if (!$result) return false; // *really* invalid URI

        // seperate out parts
        $scheme     = !empty($matches[1]) ? $matches[2] : null;
        $authority  = !empty($matches[3]) ? $matches[4] : null;
        $path       = $matches[5]; // always present, can be empty
        $query      = !empty($matches[6]) ? $matches[7] : null;
        $fragment   = !empty($matches[8]) ? $matches[9] : null;

        // further parse authority
        if ($authority !== null) {
            $r_authority = "/^((.+?)@)?(\[[^\]]+\]|[^:]*)(:(\d*))?/";
            $matches = array();
            preg_match($r_authority, $authority, $matches);
            $userinfo   = !empty($matches[1]) ? $matches[2] : null;
            $host       = !empty($matches[3]) ? $matches[3] : '';
            $port       = !empty($matches[4]) ? (int) $matches[5] : null;
        } else {
            $port = $host = $userinfo = null;
        }

        return new HTMLPurifier_URI(
            $scheme, $userinfo, $host, $port, $path, $query, $fragment);
    }

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/VarParser/Native.php000064400000001616151213255760017621 0ustar00<?php

/**
 * This variable parser uses PHP's internal code engine. Because it does
 * this, it can represent all inputs; however, it is dangerous and cannot
 * be used by users.
 */
class HTMLPurifier_VarParser_Native extends HTMLPurifier_VarParser
{

    /**
     * @param mixed $var
     * @param int $type
     * @param bool $allow_null
     * @return null|string
     */
    protected function parseImplementation($var, $type, $allow_null)
    {
        return $this->evalExpression($var);
    }

    /**
     * @param string $expr
     * @return mixed
     * @throws HTMLPurifier_VarParserException
     */
    protected function evalExpression($expr)
    {
        $var = null;
        $result = eval("\$var = $expr;");
        if ($result === false) {
            throw new HTMLPurifier_VarParserException("Fatal error in evaluated code");
        }
        return $var;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php000064400000011706151213255760020126 0ustar00<?php

/**
 * Performs safe variable parsing based on types which can be used by
 * users. This may not be able to represent all possible data inputs,
 * however.
 */
class HTMLPurifier_VarParser_Flexible extends HTMLPurifier_VarParser
{
    /**
     * @param mixed $var
     * @param int $type
     * @param bool $allow_null
     * @return array|bool|float|int|mixed|null|string
     * @throws HTMLPurifier_VarParserException
     */
    protected function parseImplementation($var, $type, $allow_null)
    {
        if ($allow_null && $var === null) {
            return null;
        }
        switch ($type) {
            // Note: if code "breaks" from the switch, it triggers a generic
            // exception to be thrown. Specific errors can be specifically
            // done here.
            case self::C_MIXED:
            case self::ISTRING:
            case self::C_STRING:
            case self::TEXT:
            case self::ITEXT:
                return $var;
            case self::C_INT:
                if (is_string($var) && ctype_digit($var)) {
                    $var = (int)$var;
                }
                return $var;
            case self::C_FLOAT:
                if ((is_string($var) && is_numeric($var)) || is_int($var)) {
                    $var = (float)$var;
                }
                return $var;
            case self::C_BOOL:
                if (is_int($var) && ($var === 0 || $var === 1)) {
                    $var = (bool)$var;
                } elseif (is_string($var)) {
                    if ($var == 'on' || $var == 'true' || $var == '1') {
                        $var = true;
                    } elseif ($var == 'off' || $var == 'false' || $var == '0') {
                        $var = false;
                    } else {
                        throw new HTMLPurifier_VarParserException("Unrecognized value '$var' for $type");
                    }
                }
                return $var;
            case self::ALIST:
            case self::HASH:
            case self::LOOKUP:
                if (is_string($var)) {
                    // special case: technically, this is an array with
                    // a single empty string item, but having an empty
                    // array is more intuitive
                    if ($var == '') {
                        return array();
                    }
                    if (strpos($var, "\n") === false && strpos($var, "\r") === false) {
                        // simplistic string to array method that only works
                        // for simple lists of tag names or alphanumeric characters
                        $var = explode(',', $var);
                    } else {
                        $var = preg_split('/(,|[\n\r]+)/', $var);
                    }
                    // remove spaces
                    foreach ($var as $i => $j) {
                        $var[$i] = trim($j);
                    }
                    if ($type === self::HASH) {
                        // key:value,key2:value2
                        $nvar = array();
                        foreach ($var as $keypair) {
                            $c = explode(':', $keypair, 2);
                            if (!isset($c[1])) {
                                continue;
                            }
                            $nvar[trim($c[0])] = trim($c[1]);
                        }
                        $var = $nvar;
                    }
                }
                if (!is_array($var)) {
                    break;
                }
                $keys = array_keys($var);
                if ($keys === array_keys($keys)) {
                    if ($type == self::ALIST) {
                        return $var;
                    } elseif ($type == self::LOOKUP) {
                        $new = array();
                        foreach ($var as $key) {
                            $new[$key] = true;
                        }
                        return $new;
                    } else {
                        break;
                    }
                }
                if ($type === self::ALIST) {
                    trigger_error("Array list did not have consecutive integer indexes", E_USER_WARNING);
                    return array_values($var);
                }
                if ($type === self::LOOKUP) {
                    foreach ($var as $key => $value) {
                        if ($value !== true) {
                            trigger_error(
                                "Lookup array has non-true value at key '$key'; " .
                                "maybe your input array was not indexed numerically",
                                E_USER_WARNING
                            );
                        }
                        $var[$key] = true;
                    }
                }
                return $var;
            default:
                $this->errorInconsistent(__CLASS__, $type);
        }
        $this->errorGeneric($var, $type);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Definition.php000064400000002521151213255760016552 0ustar00<?php

/**
 * Super-class for definition datatype objects, implements serialization
 * functions for the class.
 */
abstract class HTMLPurifier_Definition
{

    /**
     * Has setup() been called yet?
     * @type bool
     */
    public $setup = false;

    /**
     * If true, write out the final definition object to the cache after
     * setup.  This will be true only if all invocations to get a raw
     * definition object are also optimized.  This does not cause file
     * system thrashing because on subsequent calls the cached object
     * is used and any writes to the raw definition object are short
     * circuited.  See enduser-customize.html for the high-level
     * picture.
     * @type bool
     */
    public $optimized = null;

    /**
     * What type of definition is it?
     * @type string
     */
    public $type;

    /**
     * Sets up the definition object into the final form, something
     * not done by the constructor
     * @param HTMLPurifier_Config $config
     */
    abstract protected function doSetup($config);

    /**
     * Setup function that aborts if already setup
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        if ($this->setup) {
            return;
        }
        $this->setup = true;
        $this->doSetup($config);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ElementDef.php000064400000016543151213255760016503 0ustar00<?php

/**
 * Structure that stores an HTML element definition. Used by
 * HTMLPurifier_HTMLDefinition and HTMLPurifier_HTMLModule.
 * @note This class is inspected by HTMLPurifier_Printer_HTMLDefinition.
 *       Please update that class too.
 * @warning If you add new properties to this class, you MUST update
 *          the mergeIn() method.
 */
class HTMLPurifier_ElementDef
{
    /**
     * Does the definition work by itself, or is it created solely
     * for the purpose of merging into another definition?
     * @type bool
     */
    public $standalone = true;

    /**
     * Associative array of attribute name to HTMLPurifier_AttrDef.
     * @type array
     * @note Before being processed by HTMLPurifier_AttrCollections
     *       when modules are finalized during
     *       HTMLPurifier_HTMLDefinition->setup(), this array may also
     *       contain an array at index 0 that indicates which attribute
     *       collections to load into the full array. It may also
     *       contain string indentifiers in lieu of HTMLPurifier_AttrDef,
     *       see HTMLPurifier_AttrTypes on how they are expanded during
     *       HTMLPurifier_HTMLDefinition->setup() processing.
     */
    public $attr = array();

    // XXX: Design note: currently, it's not possible to override
    // previously defined AttrTransforms without messing around with
    // the final generated config. This is by design; a previous version
    // used an associated list of attr_transform, but it was extremely
    // easy to accidentally override other attribute transforms by
    // forgetting to specify an index (and just using 0.)  While we
    // could check this by checking the index number and complaining,
    // there is a second problem which is that it is not at all easy to
    // tell when something is getting overridden. Combine this with a
    // codebase where this isn't really being used, and it's perfect for
    // nuking.

    /**
     * List of tags HTMLPurifier_AttrTransform to be done before validation.
     * @type array
     */
    public $attr_transform_pre = array();

    /**
     * List of tags HTMLPurifier_AttrTransform to be done after validation.
     * @type array
     */
    public $attr_transform_post = array();

    /**
     * HTMLPurifier_ChildDef of this tag.
     * @type HTMLPurifier_ChildDef
     */
    public $child;

    /**
     * Abstract string representation of internal ChildDef rules.
     * @see HTMLPurifier_ContentSets for how this is parsed and then transformed
     * into an HTMLPurifier_ChildDef.
     * @warning This is a temporary variable that is not available after
     *      being processed by HTMLDefinition
     * @type string
     */
    public $content_model;

    /**
     * Value of $child->type, used to determine which ChildDef to use,
     * used in combination with $content_model.
     * @warning This must be lowercase
     * @warning This is a temporary variable that is not available after
     *      being processed by HTMLDefinition
     * @type string
     */
    public $content_model_type;

    /**
     * Does the element have a content model (#PCDATA | Inline)*? This
     * is important for chameleon ins and del processing in
     * HTMLPurifier_ChildDef_Chameleon. Dynamically set: modules don't
     * have to worry about this one.
     * @type bool
     */
    public $descendants_are_inline = false;

    /**
     * List of the names of required attributes this element has.
     * Dynamically populated by HTMLPurifier_HTMLDefinition::getElement()
     * @type array
     */
    public $required_attr = array();

    /**
     * Lookup table of tags excluded from all descendants of this tag.
     * @type array
     * @note SGML permits exclusions for all descendants, but this is
     *       not possible with DTDs or XML Schemas. W3C has elected to
     *       use complicated compositions of content_models to simulate
     *       exclusion for children, but we go the simpler, SGML-style
     *       route of flat-out exclusions, which correctly apply to
     *       all descendants and not just children. Note that the XHTML
     *       Modularization Abstract Modules are blithely unaware of such
     *       distinctions.
     */
    public $excludes = array();

    /**
     * This tag is explicitly auto-closed by the following tags.
     * @type array
     */
    public $autoclose = array();

    /**
     * If a foreign element is found in this element, test if it is
     * allowed by this sub-element; if it is, instead of closing the
     * current element, place it inside this element.
     * @type string
     */
    public $wrap;

    /**
     * Whether or not this is a formatting element affected by the
     * "Active Formatting Elements" algorithm.
     * @type bool
     */
    public $formatting;

    /**
     * Low-level factory constructor for creating new standalone element defs
     */
    public static function create($content_model, $content_model_type, $attr)
    {
        $def = new HTMLPurifier_ElementDef();
        $def->content_model = $content_model;
        $def->content_model_type = $content_model_type;
        $def->attr = $attr;
        return $def;
    }

    /**
     * Merges the values of another element definition into this one.
     * Values from the new element def take precedence if a value is
     * not mergeable.
     * @param HTMLPurifier_ElementDef $def
     */
    public function mergeIn($def)
    {
        // later keys takes precedence
        foreach ($def->attr as $k => $v) {
            if ($k === 0) {
                // merge in the includes
                // sorry, no way to override an include
                foreach ($v as $v2) {
                    $this->attr[0][] = $v2;
                }
                continue;
            }
            if ($v === false) {
                if (isset($this->attr[$k])) {
                    unset($this->attr[$k]);
                }
                continue;
            }
            $this->attr[$k] = $v;
        }
        $this->_mergeAssocArray($this->excludes, $def->excludes);
        $this->attr_transform_pre = array_merge($this->attr_transform_pre, $def->attr_transform_pre);
        $this->attr_transform_post = array_merge($this->attr_transform_post, $def->attr_transform_post);

        if (!empty($def->content_model)) {
            $this->content_model =
                str_replace("#SUPER", $this->content_model, $def->content_model);
            $this->child = false;
        }
        if (!empty($def->content_model_type)) {
            $this->content_model_type = $def->content_model_type;
            $this->child = false;
        }
        if (!is_null($def->child)) {
            $this->child = $def->child;
        }
        if (!is_null($def->formatting)) {
            $this->formatting = $def->formatting;
        }
        if ($def->descendants_are_inline) {
            $this->descendants_are_inline = $def->descendants_are_inline;
        }
    }

    /**
     * Merges one array into another, removes values which equal false
     * @param $a1 Array by reference that is merged into
     * @param $a2 Array that merges into $a1
     */
    private function _mergeAssocArray(&$a1, $a2)
    {
        foreach ($a2 as $k => $v) {
            if ($v === false) {
                if (isset($a1[$k])) {
                    unset($a1[$k]);
                }
                continue;
            }
            $a1[$k] = $v;
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Strategy.php000064400000001372151213255760016267 0ustar00<?php

/**
 * Supertype for classes that define a strategy for modifying/purifying tokens.
 *
 * While HTMLPurifier's core purpose is fixing HTML into something proper,
 * strategies provide plug points for extra configuration or even extra
 * features, such as custom tags, custom parsing of text, etc.
 */


abstract class HTMLPurifier_Strategy
{

    /**
     * Executes the strategy on the tokens.
     *
     * @param HTMLPurifier_Token[] $tokens Array of HTMLPurifier_Token objects to be operated on.
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token[] Processed array of token objects.
     */
    abstract public function execute($tokens, $config, $context);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Zipper.php000064400000010532151213255760015734 0ustar00<?php

/**
 * A zipper is a purely-functional data structure which contains
 * a focus that can be efficiently manipulated.  It is known as
 * a "one-hole context".  This mutable variant implements a zipper
 * for a list as a pair of two arrays, laid out as follows:
 *
 *      Base list: 1 2 3 4 [ ] 6 7 8 9
 *      Front list: 1 2 3 4
 *      Back list: 9 8 7 6
 *
 * User is expected to keep track of the "current element" and properly
 * fill it back in as necessary.  (ToDo: Maybe it's more user friendly
 * to implicitly track the current element?)
 *
 * Nota bene: the current class gets confused if you try to store NULLs
 * in the list.
 */

class HTMLPurifier_Zipper
{
    public $front, $back;

    public function __construct($front, $back) {
        $this->front = $front;
        $this->back = $back;
    }

    /**
     * Creates a zipper from an array, with a hole in the
     * 0-index position.
     * @param Array to zipper-ify.
     * @return Tuple of zipper and element of first position.
     */
    static public function fromArray($array) {
        $z = new self(array(), array_reverse($array));
        $t = $z->delete(); // delete the "dummy hole"
        return array($z, $t);
    }

    /**
     * Convert zipper back into a normal array, optionally filling in
     * the hole with a value. (Usually you should supply a $t, unless you
     * are at the end of the array.)
     */
    public function toArray($t = NULL) {
        $a = $this->front;
        if ($t !== NULL) $a[] = $t;
        for ($i = count($this->back)-1; $i >= 0; $i--) {
            $a[] = $this->back[$i];
        }
        return $a;
    }

    /**
     * Move hole to the next element.
     * @param $t Element to fill hole with
     * @return Original contents of new hole.
     */
    public function next($t) {
        if ($t !== NULL) array_push($this->front, $t);
        return empty($this->back) ? NULL : array_pop($this->back);
    }

    /**
     * Iterated hole advancement.
     * @param $t Element to fill hole with
     * @param $i How many forward to advance hole
     * @return Original contents of new hole, i away
     */
    public function advance($t, $n) {
        for ($i = 0; $i < $n; $i++) {
            $t = $this->next($t);
        }
        return $t;
    }

    /**
     * Move hole to the previous element
     * @param $t Element to fill hole with
     * @return Original contents of new hole.
     */
    public function prev($t) {
        if ($t !== NULL) array_push($this->back, $t);
        return empty($this->front) ? NULL : array_pop($this->front);
    }

    /**
     * Delete contents of current hole, shifting hole to
     * next element.
     * @return Original contents of new hole.
     */
    public function delete() {
        return empty($this->back) ? NULL : array_pop($this->back);
    }

    /**
     * Returns true if we are at the end of the list.
     * @return bool
     */
    public function done() {
        return empty($this->back);
    }

    /**
     * Insert element before hole.
     * @param Element to insert
     */
    public function insertBefore($t) {
        if ($t !== NULL) array_push($this->front, $t);
    }

    /**
     * Insert element after hole.
     * @param Element to insert
     */
    public function insertAfter($t) {
        if ($t !== NULL) array_push($this->back, $t);
    }

    /**
     * Splice in multiple elements at hole.  Functional specification
     * in terms of array_splice:
     *
     *      $arr1 = $arr;
     *      $old1 = array_splice($arr1, $i, $delete, $replacement);
     *
     *      list($z, $t) = HTMLPurifier_Zipper::fromArray($arr);
     *      $t = $z->advance($t, $i);
     *      list($old2, $t) = $z->splice($t, $delete, $replacement);
     *      $arr2 = $z->toArray($t);
     *
     *      assert($old1 === $old2);
     *      assert($arr1 === $arr2);
     *
     * NB: the absolute index location after this operation is
     * *unchanged!*
     *
     * @param Current contents of hole.
     */
    public function splice($t, $delete, $replacement) {
        // delete
        $old = array();
        $r = $t;
        for ($i = $delete; $i > 0; $i--) {
            $old[] = $r;
            $r = $this->delete();
        }
        // insert
        for ($i = count($replacement)-1; $i >= 0; $i--) {
            $this->insertAfter($r);
            $r = $replacement[$i];
        }
        return array($old, $r);
    }
}
lib/htmlpurifier/library/HTMLPurifier/URIScheme.php000064400000006631151213255770016255 0ustar00<?php

/**
 * Validator for the components of a URI for a specific scheme
 */
abstract class HTMLPurifier_URIScheme
{

    /**
     * Scheme's default port (integer). If an explicit port number is
     * specified that coincides with the default port, it will be
     * elided.
     * @type int
     */
    public $default_port = null;

    /**
     * Whether or not URIs of this scheme are locatable by a browser
     * http and ftp are accessible, while mailto and news are not.
     * @type bool
     */
    public $browsable = false;

    /**
     * Whether or not data transmitted over this scheme is encrypted.
     * https is secure, http is not.
     * @type bool
     */
    public $secure = false;

    /**
     * Whether or not the URI always uses <hier_part>, resolves edge cases
     * with making relative URIs absolute
     * @type bool
     */
    public $hierarchical = false;

    /**
     * Whether or not the URI may omit a hostname when the scheme is
     * explicitly specified, ala file:///path/to/file. As of writing,
     * 'file' is the only scheme that browsers support his properly.
     * @type bool
     */
    public $may_omit_host = false;

    /**
     * Validates the components of a URI for a specific scheme.
     * @param HTMLPurifier_URI $uri Reference to a HTMLPurifier_URI object
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool success or failure
     */
    abstract public function doValidate(&$uri, $config, $context);

    /**
     * Public interface for validating components of a URI.  Performs a
     * bunch of default actions. Don't overload this method.
     * @param HTMLPurifier_URI $uri Reference to a HTMLPurifier_URI object
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool success or failure
     */
    public function validate(&$uri, $config, $context)
    {
        if ($this->default_port == $uri->port) {
            $uri->port = null;
        }
        // kludge: browsers do funny things when the scheme but not the
        // authority is set
        if (!$this->may_omit_host &&
            // if the scheme is present, a missing host is always in error
            (!is_null($uri->scheme) && ($uri->host === '' || is_null($uri->host))) ||
            // if the scheme is not present, a *blank* host is in error,
            // since this translates into '///path' which most browsers
            // interpret as being 'http://path'.
            (is_null($uri->scheme) && $uri->host === '')
        ) {
            do {
                if (is_null($uri->scheme)) {
                    if (substr($uri->path, 0, 2) != '//') {
                        $uri->host = null;
                        break;
                    }
                    // URI is '////path', so we cannot nullify the
                    // host to preserve semantics.  Try expanding the
                    // hostname instead (fall through)
                }
                // first see if we can manually insert a hostname
                $host = $config->get('URI.Host');
                if (!is_null($host)) {
                    $uri->host = $host;
                } else {
                    // we can't do anything sensible, reject the URL.
                    return false;
                }
            } while (false);
        }
        return $this->doValidate($uri, $config, $context);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrValidator.php000064400000014654151213255770017255 0ustar00<?php

/**
 * Validates the attributes of a token. Doesn't manage required attributes
 * very well. The only reason we factored this out was because RemoveForeignElements
 * also needed it besides ValidateAttributes.
 */
class HTMLPurifier_AttrValidator
{

    /**
     * Validates the attributes of a token, mutating it as necessary.
     * that has valid tokens
     * @param HTMLPurifier_Token $token Token to validate.
     * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config
     * @param HTMLPurifier_Context $context Instance of HTMLPurifier_Context
     */
    public function validateToken($token, $config, $context)
    {
        $definition = $config->getHTMLDefinition();
        $e =& $context->get('ErrorCollector', true);

        // initialize IDAccumulator if necessary
        $ok =& $context->get('IDAccumulator', true);
        if (!$ok) {
            $id_accumulator = HTMLPurifier_IDAccumulator::build($config, $context);
            $context->register('IDAccumulator', $id_accumulator);
        }

        // initialize CurrentToken if necessary
        $current_token =& $context->get('CurrentToken', true);
        if (!$current_token) {
            $context->register('CurrentToken', $token);
        }

        if (!$token instanceof HTMLPurifier_Token_Start &&
            !$token instanceof HTMLPurifier_Token_Empty
        ) {
            return;
        }

        // create alias to global definition array, see also $defs
        // DEFINITION CALL
        $d_defs = $definition->info_global_attr;

        // don't update token until the very end, to ensure an atomic update
        $attr = $token->attr;

        // do global transformations (pre)
        // nothing currently utilizes this
        foreach ($definition->info_attr_transform_pre as $transform) {
            $attr = $transform->transform($o = $attr, $config, $context);
            if ($e) {
                if ($attr != $o) {
                    $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
                }
            }
        }

        // do local transformations only applicable to this element (pre)
        // ex. <p align="right"> to <p style="text-align:right;">
        foreach ($definition->info[$token->name]->attr_transform_pre as $transform) {
            $attr = $transform->transform($o = $attr, $config, $context);
            if ($e) {
                if ($attr != $o) {
                    $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
                }
            }
        }

        // create alias to this element's attribute definition array, see
        // also $d_defs (global attribute definition array)
        // DEFINITION CALL
        $defs = $definition->info[$token->name]->attr;

        $attr_key = false;
        $context->register('CurrentAttr', $attr_key);

        // iterate through all the attribute keypairs
        // Watch out for name collisions: $key has previously been used
        foreach ($attr as $attr_key => $value) {

            // call the definition
            if (isset($defs[$attr_key])) {
                // there is a local definition defined
                if ($defs[$attr_key] === false) {
                    // We've explicitly been told not to allow this element.
                    // This is usually when there's a global definition
                    // that must be overridden.
                    // Theoretically speaking, we could have a
                    // AttrDef_DenyAll, but this is faster!
                    $result = false;
                } else {
                    // validate according to the element's definition
                    $result = $defs[$attr_key]->validate(
                        $value,
                        $config,
                        $context
                    );
                }
            } elseif (isset($d_defs[$attr_key])) {
                // there is a global definition defined, validate according
                // to the global definition
                $result = $d_defs[$attr_key]->validate(
                    $value,
                    $config,
                    $context
                );
            } else {
                // system never heard of the attribute? DELETE!
                $result = false;
            }

            // put the results into effect
            if ($result === false || $result === null) {
                // this is a generic error message that should replaced
                // with more specific ones when possible
                if ($e) {
                    $e->send(E_ERROR, 'AttrValidator: Attribute removed');
                }

                // remove the attribute
                unset($attr[$attr_key]);
            } elseif (is_string($result)) {
                // generally, if a substitution is happening, there
                // was some sort of implicit correction going on. We'll
                // delegate it to the attribute classes to say exactly what.

                // simple substitution
                $attr[$attr_key] = $result;
            } else {
                // nothing happens
            }

            // we'd also want slightly more complicated substitution
            // involving an array as the return value,
            // although we're not sure how colliding attributes would
            // resolve (certain ones would be completely overriden,
            // others would prepend themselves).
        }

        $context->destroy('CurrentAttr');

        // post transforms

        // global (error reporting untested)
        foreach ($definition->info_attr_transform_post as $transform) {
            $attr = $transform->transform($o = $attr, $config, $context);
            if ($e) {
                if ($attr != $o) {
                    $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
                }
            }
        }

        // local (error reporting untested)
        foreach ($definition->info[$token->name]->attr_transform_post as $transform) {
            $attr = $transform->transform($o = $attr, $config, $context);
            if ($e) {
                if ($attr != $o) {
                    $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
                }
            }
        }

        $token->attr = $attr;

        // destroy CurrentToken if we made it ourselves
        if (!$current_token) {
            $context->destroy('CurrentToken');
        }

    }


}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Token.php000064400000004261151213255770015546 0ustar00<?php

/**
 * Abstract base token class that all others inherit from.
 */
abstract class HTMLPurifier_Token
{
    /**
     * Line number node was on in source document. Null if unknown.
     * @type int
     */
    public $line;

    /**
     * Column of line node was on in source document. Null if unknown.
     * @type int
     */
    public $col;

    /**
     * Lookup array of processing that this token is exempt from.
     * Currently, valid values are "ValidateAttributes" and
     * "MakeWellFormed_TagClosedError"
     * @type array
     */
    public $armor = array();

    /**
     * Used during MakeWellFormed.  See Note [Injector skips]
     * @type
     */
    public $skip;

    /**
     * @type
     */
    public $rewind;

    /**
     * @type
     */
    public $carryover;

    /**
     * @param string $n
     * @return null|string
     */
    public function __get($n)
    {
        if ($n === 'type') {
            trigger_error('Deprecated type property called; use instanceof', E_USER_NOTICE);
            switch (get_class($this)) {
                case 'HTMLPurifier_Token_Start':
                    return 'start';
                case 'HTMLPurifier_Token_Empty':
                    return 'empty';
                case 'HTMLPurifier_Token_End':
                    return 'end';
                case 'HTMLPurifier_Token_Text':
                    return 'text';
                case 'HTMLPurifier_Token_Comment':
                    return 'comment';
                default:
                    return null;
            }
        }
    }

    /**
     * Sets the position of the token in the source document.
     * @param int $l
     * @param int $c
     */
    public function position($l = null, $c = null)
    {
        $this->line = $l;
        $this->col = $c;
    }

    /**
     * Convenience function for DirectLex settings line/col position.
     * @param int $l
     * @param int $c
     */
    public function rawPosition($l, $c)
    {
        if ($c === -1) {
            $l++;
        }
        $this->line = $l;
        $this->col = $c;
    }

    /**
     * Converts a token into its corresponding node.
     */
    abstract public function toNode();
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php000064400000001127151213255770017624 0ustar00<?php

/**
 * XHTML 1.1 Target Module, defines target attribute in link elements.
 */
class HTMLPurifier_HTMLModule_Target extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Target';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $elements = array('a');
        foreach ($elements as $name) {
            $e = $this->addBlankElement($name);
            $e->attr = array(
                'target' => new HTMLPurifier_AttrDef_HTML_FrameTarget()
            );
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php000064400000002036151213255770017317 0ustar00<?php

/**
 * XHTML 1.1 Ruby Annotation Module, defines elements that indicate
 * short runs of text alongside base text for annotation or pronounciation.
 */
class HTMLPurifier_HTMLModule_Ruby extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Ruby';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->addElement(
            'ruby',
            'Inline',
            'Custom: ((rb, (rt | (rp, rt, rp))) | (rbc, rtc, rtc?))',
            'Common'
        );
        $this->addElement('rbc', false, 'Required: rb', 'Common');
        $this->addElement('rtc', false, 'Required: rt', 'Common');
        $rb = $this->addElement('rb', false, 'Inline', 'Common');
        $rb->excludes = array('ruby' => true);
        $rt = $this->addElement('rt', false, 'Inline', 'Common', array('rbspan' => 'Number'));
        $rt->excludes = array('ruby' => true);
        $this->addElement('rp', false, 'Optional: #PCDATA', 'Common');
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php000064400000001414151213255770021361 0ustar00<?php

/**
 * XHTML 1.1 Edit Module, defines editing-related elements. Text Extension
 * Module.
 */
class HTMLPurifier_HTMLModule_StyleAttribute extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'StyleAttribute';

    /**
     * @type array
     */
    public $attr_collections = array(
        // The inclusion routine differs from the Abstract Modules but
        // is in line with the DTD and XML Schemas.
        'Style' => array('style' => false), // see constructor
        'Core' => array(0 => array('Style'))
    );

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->attr_collections['Style']['style'] = new HTMLPurifier_AttrDef_CSS();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php000064400000000540151213255770022254 0ustar00<?php

class HTMLPurifier_HTMLModule_XMLCommonAttributes extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'XMLCommonAttributes';

    /**
     * @type array
     */
    public $attr_collections = array(
        'Lang' => array(
            'xml:lang' => 'LanguageCode',
        )
    );
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php000064400000001235151213255770017256 0ustar00<?php

class HTMLPurifier_HTMLModule_Name extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Name';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $elements = array('a', 'applet', 'form', 'frame', 'iframe', 'img', 'map');
        foreach ($elements as $name) {
            $element = $this->addBlankElement($name);
            $element->attr['name'] = 'CDATA';
            if (!$config->get('HTML.Attr.Name.UseCDATA')) {
                $element->attr_transform_post[] = new HTMLPurifier_AttrTransform_NameSync();
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php000064400000002231151213255770017576 0ustar00<?php

/**
 * XHTML 1.1 Iframe Module provides inline frames.
 *
 * @note This module is not considered safe unless an Iframe
 * whitelisting mechanism is specified.  Currently, the only
 * such mechanism is %URL.SafeIframeRegexp
 */
class HTMLPurifier_HTMLModule_Iframe extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Iframe';

    /**
     * @type bool
     */
    public $safe = false;

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        if ($config->get('HTML.SafeIframe')) {
            $this->safe = true;
        }
        $this->addElement(
            'iframe',
            'Inline',
            'Flow',
            'Common',
            array(
                'src' => 'URI#embedded',
                'width' => 'Length',
                'height' => 'Length',
                'name' => 'ID',
                'scrolling' => 'Enum#yes,no,auto',
                'frameborder' => 'Enum#0,1',
                'longdesc' => 'URI',
                'marginheight' => 'Pixels',
                'marginwidth' => 'Pixels',
            )
        );
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php000064400000002004151213255770017075 0ustar00<?php

/**
 * XHTML 1.1 Bi-directional Text Module, defines elements that
 * declare directionality of content. Text Extension Module.
 */
class HTMLPurifier_HTMLModule_Bdo extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Bdo';

    /**
     * @type array
     */
    public $attr_collections = array(
        'I18N' => array('dir' => false)
    );

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $bdo = $this->addElement(
            'bdo',
            'Inline',
            'Inline',
            array('Core', 'Lang'),
            array(
                'dir' => 'Enum#ltr,rtl', // required
                // The Abstract Module specification has the attribute
                // inclusions wrong for bdo: bdo allows Lang
            )
        );
        $bdo->attr_transform_post[] = new HTMLPurifier_AttrTransform_BdoDir();

        $this->attr_collections['I18N']['dir'] = 'Enum#ltr,rtl';
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php000064400000002607151213255770021055 0ustar00<?php

/**
 * XHTML 1.1 Presentation Module, defines simple presentation-related
 * markup. Text Extension Module.
 * @note The official XML Schema and DTD specs further divide this into
 *       two modules:
 *          - Block Presentation (hr)
 *          - Inline Presentation (b, big, i, small, sub, sup, tt)
 *       We have chosen not to heed this distinction, as content_sets
 *       provides satisfactory disambiguation.
 */
class HTMLPurifier_HTMLModule_Presentation extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Presentation';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->addElement('hr', 'Block', 'Empty', 'Common');
        $this->addElement('sub', 'Inline', 'Inline', 'Common');
        $this->addElement('sup', 'Inline', 'Inline', 'Common');
        $b = $this->addElement('b', 'Inline', 'Inline', 'Common');
        $b->formatting = true;
        $big = $this->addElement('big', 'Inline', 'Inline', 'Common');
        $big->formatting = true;
        $i = $this->addElement('i', 'Inline', 'Inline', 'Common');
        $i->formatting = true;
        $small = $this->addElement('small', 'Inline', 'Inline', 'Common');
        $small->formatting = true;
        $tt = $this->addElement('tt', 'Inline', 'Inline', 'Common');
        $tt->formatting = true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php000064400000003565151213255770017321 0ustar00<?php

/**
 * XHTML 1.1 List Module, defines list-oriented elements. Core Module.
 */
class HTMLPurifier_HTMLModule_List extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'List';

    // According to the abstract schema, the List content set is a fully formed
    // one or more expr, but it invariably occurs in an optional declaration
    // so we're not going to do that subtlety. It might cause trouble
    // if a user defines "List" and expects that multiple lists are
    // allowed to be specified, but then again, that's not very intuitive.
    // Furthermore, the actual XML Schema may disagree. Regardless,
    // we don't have support for such nested expressions without using
    // the incredibly inefficient and draconic Custom ChildDef.

    /**
     * @type array
     */
    public $content_sets = array('Flow' => 'List');

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $ol = $this->addElement('ol', 'List', new HTMLPurifier_ChildDef_List(), 'Common');
        $ul = $this->addElement('ul', 'List', new HTMLPurifier_ChildDef_List(), 'Common');
        // XXX The wrap attribute is handled by MakeWellFormed.  This is all
        // quite unsatisfactory, because we generated this
        // *specifically* for lists, and now a big chunk of the handling
        // is done properly by the List ChildDef.  So actually, we just
        // want enough information to make autoclosing work properly,
        // and then hand off the tricky stuff to the ChildDef.
        $ol->wrap = 'li';
        $ul->wrap = 'li';
        $this->addElement('dl', 'List', 'Required: dt | dd', 'Common');

        $this->addElement('li', false, 'Flow', 'Common');

        $this->addElement('dd', false, 'Flow', 'Common');
        $this->addElement('dt', false, 'Inline', 'Common');
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php000064400000002357151213255770021145 0ustar00<?php

/**
 * A "safe" script module. No inline JS is allowed, and pointed to JS
 * files must match whitelist.
 */
class HTMLPurifier_HTMLModule_SafeScripting extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'SafeScripting';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        // These definitions are not intrinsically safe: the attribute transforms
        // are a vital part of ensuring safety.

        $allowed = $config->get('HTML.SafeScripting');
        $script = $this->addElement(
            'script',
            'Inline',
            'Optional:', // Not `Empty` to not allow to autoclose the <script /> tag @see https://www.w3.org/TR/html4/interact/scripts.html
            null,
            array(
                // While technically not required by the spec, we're forcing
                // it to this value.
                'type' => 'Enum#text/javascript',
                'src*' => new HTMLPurifier_AttrDef_Enum(array_keys($allowed), /*case sensitive*/ true)
            )
        );
        $script->attr_transform_pre[] =
        $script->attr_transform_post[] = new HTMLPurifier_AttrTransform_ScriptRequired();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php000064400000013337151213255770017610 0ustar00<?php

/**
 * XHTML 1.1 Legacy module defines elements that were previously
 * deprecated.
 *
 * @note Not all legacy elements have been implemented yet, which
 *       is a bit of a reverse problem as compared to browsers! In
 *       addition, this legacy module may implement a bit more than
 *       mandated by XHTML 1.1.
 *
 * This module can be used in combination with TransformToStrict in order
 * to transform as many deprecated elements as possible, but retain
 * questionably deprecated elements that do not have good alternatives
 * as well as transform elements that don't have an implementation.
 * See docs/ref-strictness.txt for more details.
 */

class HTMLPurifier_HTMLModule_Legacy extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Legacy';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->addElement(
            'basefont',
            'Inline',
            'Empty',
            null,
            array(
                'color' => 'Color',
                'face' => 'Text', // extremely broad, we should
                'size' => 'Text', // tighten it
                'id' => 'ID'
            )
        );
        $this->addElement('center', 'Block', 'Flow', 'Common');
        $this->addElement(
            'dir',
            'Block',
            'Required: li',
            'Common',
            array(
                'compact' => 'Bool#compact'
            )
        );
        $this->addElement(
            'font',
            'Inline',
            'Inline',
            array('Core', 'I18N'),
            array(
                'color' => 'Color',
                'face' => 'Text', // extremely broad, we should
                'size' => 'Text', // tighten it
            )
        );
        $this->addElement(
            'menu',
            'Block',
            'Required: li',
            'Common',
            array(
                'compact' => 'Bool#compact'
            )
        );

        $s = $this->addElement('s', 'Inline', 'Inline', 'Common');
        $s->formatting = true;

        $strike = $this->addElement('strike', 'Inline', 'Inline', 'Common');
        $strike->formatting = true;

        $u = $this->addElement('u', 'Inline', 'Inline', 'Common');
        $u->formatting = true;

        // setup modifications to old elements

        $align = 'Enum#left,right,center,justify';

        $address = $this->addBlankElement('address');
        $address->content_model = 'Inline | #PCDATA | p';
        $address->content_model_type = 'optional';
        $address->child = false;

        $blockquote = $this->addBlankElement('blockquote');
        $blockquote->content_model = 'Flow | #PCDATA';
        $blockquote->content_model_type = 'optional';
        $blockquote->child = false;

        $br = $this->addBlankElement('br');
        $br->attr['clear'] = 'Enum#left,all,right,none';

        $caption = $this->addBlankElement('caption');
        $caption->attr['align'] = 'Enum#top,bottom,left,right';

        $div = $this->addBlankElement('div');
        $div->attr['align'] = $align;

        $dl = $this->addBlankElement('dl');
        $dl->attr['compact'] = 'Bool#compact';

        for ($i = 1; $i <= 6; $i++) {
            $h = $this->addBlankElement("h$i");
            $h->attr['align'] = $align;
        }

        $hr = $this->addBlankElement('hr');
        $hr->attr['align'] = $align;
        $hr->attr['noshade'] = 'Bool#noshade';
        $hr->attr['size'] = 'Pixels';
        $hr->attr['width'] = 'Length';

        $img = $this->addBlankElement('img');
        $img->attr['align'] = 'IAlign';
        $img->attr['border'] = 'Pixels';
        $img->attr['hspace'] = 'Pixels';
        $img->attr['vspace'] = 'Pixels';

        // figure out this integer business

        $li = $this->addBlankElement('li');
        $li->attr['value'] = new HTMLPurifier_AttrDef_Integer();
        $li->attr['type'] = 'Enum#s:1,i,I,a,A,disc,square,circle';

        $ol = $this->addBlankElement('ol');
        $ol->attr['compact'] = 'Bool#compact';
        $ol->attr['start'] = new HTMLPurifier_AttrDef_Integer();
        $ol->attr['type'] = 'Enum#s:1,i,I,a,A';

        $p = $this->addBlankElement('p');
        $p->attr['align'] = $align;

        $pre = $this->addBlankElement('pre');
        $pre->attr['width'] = 'Number';

        // script omitted

        $table = $this->addBlankElement('table');
        $table->attr['align'] = 'Enum#left,center,right';
        $table->attr['bgcolor'] = 'Color';

        $tr = $this->addBlankElement('tr');
        $tr->attr['bgcolor'] = 'Color';

        $th = $this->addBlankElement('th');
        $th->attr['bgcolor'] = 'Color';
        $th->attr['height'] = 'Length';
        $th->attr['nowrap'] = 'Bool#nowrap';
        $th->attr['width'] = 'Length';

        $td = $this->addBlankElement('td');
        $td->attr['bgcolor'] = 'Color';
        $td->attr['height'] = 'Length';
        $td->attr['nowrap'] = 'Bool#nowrap';
        $td->attr['width'] = 'Length';

        $ul = $this->addBlankElement('ul');
        $ul->attr['compact'] = 'Bool#compact';
        $ul->attr['type'] = 'Enum#square,disc,circle';

        // "safe" modifications to "unsafe" elements
        // WARNING: If you want to add support for an unsafe, legacy
        // attribute, make a new TrustedLegacy module with the trusted
        // bit set appropriately

        $form = $this->addBlankElement('form');
        $form->content_model = 'Flow | #PCDATA';
        $form->content_model_type = 'optional';
        $form->attr['target'] = 'FrameTarget';

        $input = $this->addBlankElement('input');
        $input->attr['align'] = 'IAlign';

        $legend = $this->addBlankElement('legend');
        $legend->attr['align'] = 'LAlign';
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php000064400000004460151213255770017613 0ustar00<?php

/**
 * XHTML 1.1 Tables Module, fully defines accessible table elements.
 */
class HTMLPurifier_HTMLModule_Tables extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Tables';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->addElement('caption', false, 'Inline', 'Common');

        $this->addElement(
            'table',
            'Block',
            new HTMLPurifier_ChildDef_Table(),
            'Common',
            array(
                'border' => 'Pixels',
                'cellpadding' => 'Length',
                'cellspacing' => 'Length',
                'frame' => 'Enum#void,above,below,hsides,lhs,rhs,vsides,box,border',
                'rules' => 'Enum#none,groups,rows,cols,all',
                'summary' => 'Text',
                'width' => 'Length'
            )
        );

        // common attributes
        $cell_align = array(
            'align' => 'Enum#left,center,right,justify,char',
            'charoff' => 'Length',
            'valign' => 'Enum#top,middle,bottom,baseline',
        );

        $cell_t = array_merge(
            array(
                'abbr' => 'Text',
                'colspan' => 'Number',
                'rowspan' => 'Number',
                // Apparently, as of HTML5 this attribute only applies
                // to 'th' elements.
                'scope' => 'Enum#row,col,rowgroup,colgroup',
            ),
            $cell_align
        );
        $this->addElement('td', false, 'Flow', 'Common', $cell_t);
        $this->addElement('th', false, 'Flow', 'Common', $cell_t);

        $this->addElement('tr', false, 'Required: td | th', 'Common', $cell_align);

        $cell_col = array_merge(
            array(
                'span' => 'Number',
                'width' => 'MultiLength',
            ),
            $cell_align
        );
        $this->addElement('col', false, 'Empty', 'Common', $cell_col);
        $this->addElement('colgroup', false, 'Optional: col', 'Common', $cell_col);

        $this->addElement('tbody', false, 'Required: tr', 'Common', $cell_align);
        $this->addElement('thead', false, 'Required: tr', 'Common', $cell_align);
        $this->addElement('tfoot', false, 'Required: tr', 'Common', $cell_align);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php000064400000000542151213255770022731 0ustar00<?php

class HTMLPurifier_HTMLModule_NonXMLCommonAttributes extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'NonXMLCommonAttributes';

    /**
     * @type array
     */
    public $attr_collections = array(
        'Lang' => array(
            'lang' => 'LanguageCode',
        )
    );
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php000064400000002632151213255770017265 0ustar00<?php

/**
 * XHTML 1.1 Edit Module, defines editing-related elements. Text Extension
 * Module.
 */
class HTMLPurifier_HTMLModule_Edit extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Edit';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $contents = 'Chameleon: #PCDATA | Inline ! #PCDATA | Flow';
        $attr = array(
            'cite' => 'URI',
            // 'datetime' => 'Datetime', // not implemented
        );
        $this->addElement('del', 'Inline', $contents, 'Common', $attr);
        $this->addElement('ins', 'Inline', $contents, 'Common', $attr);
    }

    // HTML 4.01 specifies that ins/del must not contain block
    // elements when used in an inline context, chameleon is
    // a complicated workaround to acheive this effect

    // Inline context ! Block context (exclamation mark is
    // separator, see getChildDef for parsing)

    /**
     * @type bool
     */
    public $defines_child_def = true;

    /**
     * @param HTMLPurifier_ElementDef $def
     * @return HTMLPurifier_ChildDef_Chameleon
     */
    public function getChildDef($def)
    {
        if ($def->content_model_type != 'chameleon') {
            return false;
        }
        $value = explode('!', $def->content_model);
        return new HTMLPurifier_ChildDef_Chameleon($value[0], $value[1]);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php000064400000002111151213255770020203 0ustar00<?php

/**
 * A "safe" embed module. See SafeObject. This is a proprietary element.
 */
class HTMLPurifier_HTMLModule_SafeEmbed extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'SafeEmbed';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $max = $config->get('HTML.MaxImgLength');
        $embed = $this->addElement(
            'embed',
            'Inline',
            'Empty',
            'Common',
            array(
                'src*' => 'URI#embedded',
                'type' => 'Enum#application/x-shockwave-flash',
                'width' => 'Pixels#' . $max,
                'height' => 'Pixels#' . $max,
                'allowscriptaccess' => 'Enum#never',
                'allownetworking' => 'Enum#internal',
                'flashvars' => 'Text',
                'wmode' => 'Enum#window,transparent,opaque',
                'name' => 'ID',
            )
        );
        $embed->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeEmbed();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php000064400000000432151213255770021754 0ustar00<?php

class HTMLPurifier_HTMLModule_Tidy_Transitional extends HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4
{
    /**
     * @type string
     */
    public $name = 'Tidy_Transitional';

    /**
     * @type string
     */
    public $defaultLevel = 'heavy';
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php000064400000001612151213255770020556 0ustar00<?php

class HTMLPurifier_HTMLModule_Tidy_Strict extends HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4
{
    /**
     * @type string
     */
    public $name = 'Tidy_Strict';

    /**
     * @type string
     */
    public $defaultLevel = 'light';

    /**
     * @return array
     */
    public function makeFixes()
    {
        $r = parent::makeFixes();
        $r['blockquote#content_model_type'] = 'strictblockquote';
        return $r;
    }

    /**
     * @type bool
     */
    public $defines_child_def = true;

    /**
     * @param HTMLPurifier_ElementDef $def
     * @return HTMLPurifier_ChildDef_StrictBlockquote
     */
    public function getChildDef($def)
    {
        if ($def->content_model_type != 'strictblockquote') {
            return parent::getChildDef($def);
        }
        return new HTMLPurifier_ChildDef_StrictBlockquote($def->content_model);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php000064400000001365151213255770020173 0ustar00<?php

/**
 * Name is deprecated, but allowed in strict doctypes, so onl
 */
class HTMLPurifier_HTMLModule_Tidy_Name extends HTMLPurifier_HTMLModule_Tidy
{
    /**
     * @type string
     */
    public $name = 'Tidy_Name';

    /**
     * @type string
     */
    public $defaultLevel = 'heavy';

    /**
     * @return array
     */
    public function makeFixes()
    {
        $r = array();
        // @name for img, a -----------------------------------------------
        // Technically, it's allowed even on strict, so we allow authors to use
        // it. However, it's deprecated in future versions of XHTML.
        $r['img@name'] =
        $r['a@name'] = new HTMLPurifier_AttrTransform_Name();
        return $r;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php000064400000015667151213255770021415 0ustar00<?php

class HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4 extends HTMLPurifier_HTMLModule_Tidy
{

    /**
     * @return array
     */
    public function makeFixes()
    {
        $r = array();

        // == deprecated tag transforms ===================================

        $r['font'] = new HTMLPurifier_TagTransform_Font();
        $r['menu'] = new HTMLPurifier_TagTransform_Simple('ul');
        $r['dir'] = new HTMLPurifier_TagTransform_Simple('ul');
        $r['center'] = new HTMLPurifier_TagTransform_Simple('div', 'text-align:center;');
        $r['u'] = new HTMLPurifier_TagTransform_Simple('span', 'text-decoration:underline;');
        $r['s'] = new HTMLPurifier_TagTransform_Simple('span', 'text-decoration:line-through;');
        $r['strike'] = new HTMLPurifier_TagTransform_Simple('span', 'text-decoration:line-through;');

        // == deprecated attribute transforms =============================

        $r['caption@align'] =
            new HTMLPurifier_AttrTransform_EnumToCSS(
                'align',
                array(
                    // we're following IE's behavior, not Firefox's, due
                    // to the fact that no one supports caption-side:right,
                    // W3C included (with CSS 2.1). This is a slightly
                    // unreasonable attribute!
                    'left' => 'text-align:left;',
                    'right' => 'text-align:right;',
                    'top' => 'caption-side:top;',
                    'bottom' => 'caption-side:bottom;' // not supported by IE
                )
            );

        // @align for img -------------------------------------------------
        $r['img@align'] =
            new HTMLPurifier_AttrTransform_EnumToCSS(
                'align',
                array(
                    'left' => 'float:left;',
                    'right' => 'float:right;',
                    'top' => 'vertical-align:top;',
                    'middle' => 'vertical-align:middle;',
                    'bottom' => 'vertical-align:baseline;',
                )
            );

        // @align for table -----------------------------------------------
        $r['table@align'] =
            new HTMLPurifier_AttrTransform_EnumToCSS(
                'align',
                array(
                    'left' => 'float:left;',
                    'center' => 'margin-left:auto;margin-right:auto;',
                    'right' => 'float:right;'
                )
            );

        // @align for hr -----------------------------------------------
        $r['hr@align'] =
            new HTMLPurifier_AttrTransform_EnumToCSS(
                'align',
                array(
                    // we use both text-align and margin because these work
                    // for different browsers (IE and Firefox, respectively)
                    // and the melange makes for a pretty cross-compatible
                    // solution
                    'left' => 'margin-left:0;margin-right:auto;text-align:left;',
                    'center' => 'margin-left:auto;margin-right:auto;text-align:center;',
                    'right' => 'margin-left:auto;margin-right:0;text-align:right;'
                )
            );

        // @align for h1, h2, h3, h4, h5, h6, p, div ----------------------
        // {{{
        $align_lookup = array();
        $align_values = array('left', 'right', 'center', 'justify');
        foreach ($align_values as $v) {
            $align_lookup[$v] = "text-align:$v;";
        }
        // }}}
        $r['h1@align'] =
        $r['h2@align'] =
        $r['h3@align'] =
        $r['h4@align'] =
        $r['h5@align'] =
        $r['h6@align'] =
        $r['p@align'] =
        $r['div@align'] =
            new HTMLPurifier_AttrTransform_EnumToCSS('align', $align_lookup);

        // @bgcolor for table, tr, td, th ---------------------------------
        $r['table@bgcolor'] =
        $r['tr@bgcolor'] =
        $r['td@bgcolor'] =
        $r['th@bgcolor'] =
            new HTMLPurifier_AttrTransform_BgColor();

        // @border for img ------------------------------------------------
        $r['img@border'] = new HTMLPurifier_AttrTransform_Border();

        // @clear for br --------------------------------------------------
        $r['br@clear'] =
            new HTMLPurifier_AttrTransform_EnumToCSS(
                'clear',
                array(
                    'left' => 'clear:left;',
                    'right' => 'clear:right;',
                    'all' => 'clear:both;',
                    'none' => 'clear:none;',
                )
            );

        // @height for td, th ---------------------------------------------
        $r['td@height'] =
        $r['th@height'] =
            new HTMLPurifier_AttrTransform_Length('height');

        // @hspace for img ------------------------------------------------
        $r['img@hspace'] = new HTMLPurifier_AttrTransform_ImgSpace('hspace');

        // @noshade for hr ------------------------------------------------
        // this transformation is not precise but often good enough.
        // different browsers use different styles to designate noshade
        $r['hr@noshade'] =
            new HTMLPurifier_AttrTransform_BoolToCSS(
                'noshade',
                'color:#808080;background-color:#808080;border:0;'
            );

        // @nowrap for td, th ---------------------------------------------
        $r['td@nowrap'] =
        $r['th@nowrap'] =
            new HTMLPurifier_AttrTransform_BoolToCSS(
                'nowrap',
                'white-space:nowrap;'
            );

        // @size for hr  --------------------------------------------------
        $r['hr@size'] = new HTMLPurifier_AttrTransform_Length('size', 'height');

        // @type for li, ol, ul -------------------------------------------
        // {{{
        $ul_types = array(
            'disc' => 'list-style-type:disc;',
            'square' => 'list-style-type:square;',
            'circle' => 'list-style-type:circle;'
        );
        $ol_types = array(
            '1' => 'list-style-type:decimal;',
            'i' => 'list-style-type:lower-roman;',
            'I' => 'list-style-type:upper-roman;',
            'a' => 'list-style-type:lower-alpha;',
            'A' => 'list-style-type:upper-alpha;'
        );
        $li_types = $ul_types + $ol_types;
        // }}}

        $r['ul@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $ul_types);
        $r['ol@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $ol_types, true);
        $r['li@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $li_types, true);

        // @vspace for img ------------------------------------------------
        $r['img@vspace'] = new HTMLPurifier_AttrTransform_ImgSpace('vspace');

        // @width for hr, td, th ------------------------------------------
        $r['td@width'] =
        $r['th@width'] =
        $r['hr@width'] = new HTMLPurifier_AttrTransform_Length('width');

        return $r;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php000064400000000667151213255770020213 0ustar00<?php

class HTMLPurifier_HTMLModule_Tidy_XHTML extends HTMLPurifier_HTMLModule_Tidy
{
    /**
     * @type string
     */
    public $name = 'Tidy_XHTML';

    /**
     * @type string
     */
    public $defaultLevel = 'medium';

    /**
     * @return array
     */
    public function makeFixes()
    {
        $r = array();
        $r['@lang'] = new HTMLPurifier_AttrTransform_Lang();
        return $r;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php000064400000001772151213255770021635 0ustar00<?php

class HTMLPurifier_HTMLModule_Tidy_Proprietary extends HTMLPurifier_HTMLModule_Tidy
{

    /**
     * @type string
     */
    public $name = 'Tidy_Proprietary';

    /**
     * @type string
     */
    public $defaultLevel = 'light';

    /**
     * @return array
     */
    public function makeFixes()
    {
        $r = array();
        $r['table@background'] = new HTMLPurifier_AttrTransform_Background();
        $r['td@background']    = new HTMLPurifier_AttrTransform_Background();
        $r['th@background']    = new HTMLPurifier_AttrTransform_Background();
        $r['tr@background']    = new HTMLPurifier_AttrTransform_Background();
        $r['thead@background'] = new HTMLPurifier_AttrTransform_Background();
        $r['tfoot@background'] = new HTMLPurifier_AttrTransform_Background();
        $r['tbody@background'] = new HTMLPurifier_AttrTransform_Background();
        $r['table@height']     = new HTMLPurifier_AttrTransform_Length('height');
        return $r;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php000064400000002554151213255770017425 0ustar00<?php

/**
 * XHTML 1.1 Image Module provides basic image embedding.
 * @note There is specialized code for removing empty images in
 *       HTMLPurifier_Strategy_RemoveForeignElements
 */
class HTMLPurifier_HTMLModule_Image extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Image';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $max = $config->get('HTML.MaxImgLength');
        $img = $this->addElement(
            'img',
            'Inline',
            'Empty',
            'Common',
            array(
                'alt*' => 'Text',
                // According to the spec, it's Length, but percents can
                // be abused, so we allow only Pixels.
                'height' => 'Pixels#' . $max,
                'width' => 'Pixels#' . $max,
                'longdesc' => 'URI',
                'src*' => new HTMLPurifier_AttrDef_URI(true), // embedded
            )
        );
        if ($max === null || $config->get('HTML.Trusted')) {
            $img->attr['height'] =
            $img->attr['width'] = 'Length';
        }

        // kind of strange, but splitting things up would be inefficient
        $img->attr_transform_pre[] =
        $img->attr_transform_post[] =
            new HTMLPurifier_AttrTransform_ImgRequired();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php000064400000001744151213255770020377 0ustar00<?php

/**
 * XHTML 1.1 Hypertext Module, defines hypertext links. Core Module.
 */
class HTMLPurifier_HTMLModule_Hypertext extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Hypertext';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $a = $this->addElement(
            'a',
            'Inline',
            'Inline',
            'Common',
            array(
                // 'accesskey' => 'Character',
                // 'charset' => 'Charset',
                'href' => 'URI',
                // 'hreflang' => 'LanguageCode',
                'rel' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rel'),
                'rev' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rev'),
                // 'tabindex' => 'Number',
                // 'type' => 'ContentType',
            )
        );
        $a->formatting = true;
        $a->excludes = array('a' => true);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php000064400000016324151213255770017314 0ustar00<?php

/**
 * Abstract class for a set of proprietary modules that clean up (tidy)
 * poorly written HTML.
 * @todo Figure out how to protect some of these methods/properties
 */
class HTMLPurifier_HTMLModule_Tidy extends HTMLPurifier_HTMLModule
{
    /**
     * List of supported levels.
     * Index zero is a special case "no fixes" level.
     * @type array
     */
    public $levels = array(0 => 'none', 'light', 'medium', 'heavy');

    /**
     * Default level to place all fixes in.
     * Disabled by default.
     * @type string
     */
    public $defaultLevel = null;

    /**
     * Lists of fixes used by getFixesForLevel().
     * Format is:
     *      HTMLModule_Tidy->fixesForLevel[$level] = array('fix-1', 'fix-2');
     * @type array
     */
    public $fixesForLevel = array(
        'light' => array(),
        'medium' => array(),
        'heavy' => array()
    );

    /**
     * Lazy load constructs the module by determining the necessary
     * fixes to create and then delegating to the populate() function.
     * @param HTMLPurifier_Config $config
     * @todo Wildcard matching and error reporting when an added or
     *       subtracted fix has no effect.
     */
    public function setup($config)
    {
        // create fixes, initialize fixesForLevel
        $fixes = $this->makeFixes();
        $this->makeFixesForLevel($fixes);

        // figure out which fixes to use
        $level = $config->get('HTML.TidyLevel');
        $fixes_lookup = $this->getFixesForLevel($level);

        // get custom fix declarations: these need namespace processing
        $add_fixes = $config->get('HTML.TidyAdd');
        $remove_fixes = $config->get('HTML.TidyRemove');

        foreach ($fixes as $name => $fix) {
            // needs to be refactored a little to implement globbing
            if (isset($remove_fixes[$name]) ||
                (!isset($add_fixes[$name]) && !isset($fixes_lookup[$name]))) {
                unset($fixes[$name]);
            }
        }

        // populate this module with necessary fixes
        $this->populate($fixes);
    }

    /**
     * Retrieves all fixes per a level, returning fixes for that specific
     * level as well as all levels below it.
     * @param string $level level identifier, see $levels for valid values
     * @return array Lookup up table of fixes
     */
    public function getFixesForLevel($level)
    {
        if ($level == $this->levels[0]) {
            return array();
        }
        $activated_levels = array();
        for ($i = 1, $c = count($this->levels); $i < $c; $i++) {
            $activated_levels[] = $this->levels[$i];
            if ($this->levels[$i] == $level) {
                break;
            }
        }
        if ($i == $c) {
            trigger_error(
                'Tidy level ' . htmlspecialchars($level) . ' not recognized',
                E_USER_WARNING
            );
            return array();
        }
        $ret = array();
        foreach ($activated_levels as $level) {
            foreach ($this->fixesForLevel[$level] as $fix) {
                $ret[$fix] = true;
            }
        }
        return $ret;
    }

    /**
     * Dynamically populates the $fixesForLevel member variable using
     * the fixes array. It may be custom overloaded, used in conjunction
     * with $defaultLevel, or not used at all.
     * @param array $fixes
     */
    public function makeFixesForLevel($fixes)
    {
        if (!isset($this->defaultLevel)) {
            return;
        }
        if (!isset($this->fixesForLevel[$this->defaultLevel])) {
            trigger_error(
                'Default level ' . $this->defaultLevel . ' does not exist',
                E_USER_ERROR
            );
            return;
        }
        $this->fixesForLevel[$this->defaultLevel] = array_keys($fixes);
    }

    /**
     * Populates the module with transforms and other special-case code
     * based on a list of fixes passed to it
     * @param array $fixes Lookup table of fixes to activate
     */
    public function populate($fixes)
    {
        foreach ($fixes as $name => $fix) {
            // determine what the fix is for
            list($type, $params) = $this->getFixType($name);
            switch ($type) {
                case 'attr_transform_pre':
                case 'attr_transform_post':
                    $attr = $params['attr'];
                    if (isset($params['element'])) {
                        $element = $params['element'];
                        if (empty($this->info[$element])) {
                            $e = $this->addBlankElement($element);
                        } else {
                            $e = $this->info[$element];
                        }
                    } else {
                        $type = "info_$type";
                        $e = $this;
                    }
                    // PHP does some weird parsing when I do
                    // $e->$type[$attr], so I have to assign a ref.
                    $f =& $e->$type;
                    $f[$attr] = $fix;
                    break;
                case 'tag_transform':
                    $this->info_tag_transform[$params['element']] = $fix;
                    break;
                case 'child':
                case 'content_model_type':
                    $element = $params['element'];
                    if (empty($this->info[$element])) {
                        $e = $this->addBlankElement($element);
                    } else {
                        $e = $this->info[$element];
                    }
                    $e->$type = $fix;
                    break;
                default:
                    trigger_error("Fix type $type not supported", E_USER_ERROR);
                    break;
            }
        }
    }

    /**
     * Parses a fix name and determines what kind of fix it is, as well
     * as other information defined by the fix
     * @param $name String name of fix
     * @return array(string $fix_type, array $fix_parameters)
     * @note $fix_parameters is type dependant, see populate() for usage
     *       of these parameters
     */
    public function getFixType($name)
    {
        // parse it
        $property = $attr = null;
        if (strpos($name, '#') !== false) {
            list($name, $property) = explode('#', $name);
        }
        if (strpos($name, '@') !== false) {
            list($name, $attr) = explode('@', $name);
        }

        // figure out the parameters
        $params = array();
        if ($name !== '') {
            $params['element'] = $name;
        }
        if (!is_null($attr)) {
            $params['attr'] = $attr;
        }

        // special case: attribute transform
        if (!is_null($attr)) {
            if (is_null($property)) {
                $property = 'pre';
            }
            $type = 'attr_transform_' . $property;
            return array($type, $params);
        }

        // special case: tag transform
        if (is_null($property)) {
            return array('tag_transform', $params);
        }

        return array($property, $params);

    }

    /**
     * Defines all fixes the module will perform in a compact
     * associative array of fix name to fix implementation.
     * @return array
     */
    public function makeFixes()
    {
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php000064400000001016151213255770021653 0ustar00<?php

/**
 * Module adds the target-based noreferrer attribute transformation to a tags.  It
 * is enabled by HTML.TargetNoreferrer
 */
class HTMLPurifier_HTMLModule_TargetNoreferrer extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'TargetNoreferrer';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config) {
        $a = $this->addBlankElement('a');
        $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetNoreferrer();
    }
}
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php000064400000001004151213255770021324 0ustar00<?php

/**
 * Module adds the target-based noopener attribute transformation to a tags.  It
 * is enabled by HTML.TargetNoopener
 */
class HTMLPurifier_HTMLModule_TargetNoopener extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'TargetNoopener';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config) {
        $a = $this->addBlankElement('a');
        $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetNoopener();
    }
}
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php000064400000001236151213255770021676 0ustar00<?php

class HTMLPurifier_HTMLModule_CommonAttributes extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'CommonAttributes';

    /**
     * @type array
     */
    public $attr_collections = array(
        'Core' => array(
            0 => array('Style'),
            // 'xml:space' => false,
            'class' => 'Class',
            'id' => 'ID',
            'title' => 'CDATA',
        ),
        'Lang' => array(),
        'I18N' => array(
            0 => array('Lang'), // proprietary, for xml:lang/lang
        ),
        'Common' => array(
            0 => array('Core', 'I18N')
        )
    );
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php000064400000003633151213255770020407 0ustar00<?php

/**
 * A "safe" object module. In theory, objects permitted by this module will
 * be safe, and untrusted users can be allowed to embed arbitrary flash objects
 * (maybe other types too, but only Flash is supported as of right now).
 * Highly experimental.
 */
class HTMLPurifier_HTMLModule_SafeObject extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'SafeObject';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        // These definitions are not intrinsically safe: the attribute transforms
        // are a vital part of ensuring safety.

        $max = $config->get('HTML.MaxImgLength');
        $object = $this->addElement(
            'object',
            'Inline',
            'Optional: param | Flow | #PCDATA',
            'Common',
            array(
                // While technically not required by the spec, we're forcing
                // it to this value.
                'type' => 'Enum#application/x-shockwave-flash',
                'width' => 'Pixels#' . $max,
                'height' => 'Pixels#' . $max,
                'data' => 'URI#embedded',
                'codebase' => new HTMLPurifier_AttrDef_Enum(
                    array(
                        'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'
                    )
                ),
            )
        );
        $object->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeObject();

        $param = $this->addElement(
            'param',
            false,
            'Empty',
            false,
            array(
                'id' => 'ID',
                'name*' => 'Text',
                'value' => 'Text'
            )
        );
        $param->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeParam();
        $this->info_injector[] = 'SafeObject';
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php000064400000004441151213255770020342 0ustar00<?php

/*

WARNING: THIS MODULE IS EXTREMELY DANGEROUS AS IT ENABLES INLINE SCRIPTING
INSIDE HTML PURIFIER DOCUMENTS. USE ONLY WITH TRUSTED USER INPUT!!!

*/

/**
 * XHTML 1.1 Scripting module, defines elements that are used to contain
 * information pertaining to executable scripts or the lack of support
 * for executable scripts.
 * @note This module does not contain inline scripting elements
 */
class HTMLPurifier_HTMLModule_Scripting extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Scripting';

    /**
     * @type array
     */
    public $elements = array('script', 'noscript');

    /**
     * @type array
     */
    public $content_sets = array('Block' => 'script | noscript', 'Inline' => 'script | noscript');

    /**
     * @type bool
     */
    public $safe = false;

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        // TODO: create custom child-definition for noscript that
        // auto-wraps stray #PCDATA in a similar manner to
        // blockquote's custom definition (we would use it but
        // blockquote's contents are optional while noscript's contents
        // are required)

        // TODO: convert this to new syntax, main problem is getting
        // both content sets working

        // In theory, this could be safe, but I don't see any reason to
        // allow it.
        $this->info['noscript'] = new HTMLPurifier_ElementDef();
        $this->info['noscript']->attr = array(0 => array('Common'));
        $this->info['noscript']->content_model = 'Heading | List | Block';
        $this->info['noscript']->content_model_type = 'required';

        $this->info['script'] = new HTMLPurifier_ElementDef();
        $this->info['script']->attr = array(
            'defer' => new HTMLPurifier_AttrDef_Enum(array('defer')),
            'src' => new HTMLPurifier_AttrDef_URI(true),
            'type' => new HTMLPurifier_AttrDef_Enum(array('text/javascript'))
        );
        $this->info['script']->content_model = '#PCDATA';
        $this->info['script']->content_model_type = 'optional';
        $this->info['script']->attr_transform_pre[] =
        $this->info['script']->attr_transform_post[] =
            new HTMLPurifier_AttrTransform_ScriptRequired();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php000064400000001743151213255770020722 0ustar00<?php

/**
 * Module defines proprietary tags and attributes in HTML.
 * @warning If this module is enabled, standards-compliance is off!
 */
class HTMLPurifier_HTMLModule_Proprietary extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Proprietary';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->addElement(
            'marquee',
            'Inline',
            'Flow',
            'Common',
            array(
                'direction' => 'Enum#left,right,up,down',
                'behavior' => 'Enum#alternate',
                'width' => 'Length',
                'height' => 'Length',
                'scrolldelay' => 'Number',
                'scrollamount' => 'Number',
                'loop' => 'Number',
                'bgcolor' => 'Color',
                'hspace' => 'Pixels',
                'vspace' => 'Pixels',
            )
        );
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php000064400000006553151213255770017332 0ustar00<?php

/**
 * XHTML 1.1 Text Module, defines basic text containers. Core Module.
 * @note In the normative XML Schema specification, this module
 *       is further abstracted into the following modules:
 *          - Block Phrasal (address, blockquote, pre, h1, h2, h3, h4, h5, h6)
 *          - Block Structural (div, p)
 *          - Inline Phrasal (abbr, acronym, cite, code, dfn, em, kbd, q, samp, strong, var)
 *          - Inline Structural (br, span)
 *       This module, functionally, does not distinguish between these
 *       sub-modules, but the code is internally structured to reflect
 *       these distinctions.
 */
class HTMLPurifier_HTMLModule_Text extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Text';

    /**
     * @type array
     */
    public $content_sets = array(
        'Flow' => 'Heading | Block | Inline'
    );

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        // Inline Phrasal -------------------------------------------------
        $this->addElement('abbr', 'Inline', 'Inline', 'Common');
        $this->addElement('acronym', 'Inline', 'Inline', 'Common');
        $this->addElement('cite', 'Inline', 'Inline', 'Common');
        $this->addElement('dfn', 'Inline', 'Inline', 'Common');
        $this->addElement('kbd', 'Inline', 'Inline', 'Common');
        $this->addElement('q', 'Inline', 'Inline', 'Common', array('cite' => 'URI'));
        $this->addElement('samp', 'Inline', 'Inline', 'Common');
        $this->addElement('var', 'Inline', 'Inline', 'Common');

        $em = $this->addElement('em', 'Inline', 'Inline', 'Common');
        $em->formatting = true;

        $strong = $this->addElement('strong', 'Inline', 'Inline', 'Common');
        $strong->formatting = true;

        $code = $this->addElement('code', 'Inline', 'Inline', 'Common');
        $code->formatting = true;

        // Inline Structural ----------------------------------------------
        $this->addElement('span', 'Inline', 'Inline', 'Common');
        $this->addElement('br', 'Inline', 'Empty', 'Core');

        // Block Phrasal --------------------------------------------------
        $this->addElement('address', 'Block', 'Inline', 'Common');
        $this->addElement('blockquote', 'Block', 'Optional: Heading | Block | List', 'Common', array('cite' => 'URI'));
        $pre = $this->addElement('pre', 'Block', 'Inline', 'Common');
        $pre->excludes = $this->makeLookup(
            'img',
            'big',
            'small',
            'object',
            'applet',
            'font',
            'basefont'
        );
        $this->addElement('h1', 'Heading', 'Inline', 'Common');
        $this->addElement('h2', 'Heading', 'Inline', 'Common');
        $this->addElement('h3', 'Heading', 'Inline', 'Common');
        $this->addElement('h4', 'Heading', 'Inline', 'Common');
        $this->addElement('h5', 'Heading', 'Inline', 'Common');
        $this->addElement('h6', 'Heading', 'Inline', 'Common');

        // Block Structural -----------------------------------------------
        $p = $this->addElement('p', 'Block', 'Inline', 'Common');
        $p->autoclose = array_flip(
            array("address", "blockquote", "center", "dir", "div", "dl", "fieldset", "ol", "p", "ul")
        );

        $this->addElement('div', 'Block', 'Flow', 'Common');
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php000064400000002763151213256000017576 0ustar00<?php

/**
 * XHTML 1.1 Object Module, defines elements for generic object inclusion
 * @warning Users will commonly use <embed> to cater to legacy browsers: this
 *      module does not allow this sort of behavior
 */
class HTMLPurifier_HTMLModule_Object extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Object';

    /**
     * @type bool
     */
    public $safe = false;

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $this->addElement(
            'object',
            'Inline',
            'Optional: #PCDATA | Flow | param',
            'Common',
            array(
                'archive' => 'URI',
                'classid' => 'URI',
                'codebase' => 'URI',
                'codetype' => 'Text',
                'data' => 'URI',
                'declare' => 'Bool#declare',
                'height' => 'Length',
                'name' => 'CDATA',
                'standby' => 'Text',
                'tabindex' => 'Number',
                'type' => 'ContentType',
                'width' => 'Length'
            )
        );

        $this->addElement(
            'param',
            false,
            'Empty',
            null,
            array(
                'id' => 'ID',
                'name*' => 'Text',
                'type' => 'Text',
                'value' => 'Text',
                'valuetype' => 'Enum#data,ref,object'
            )
        );
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php000064400000013314151213256000017450 0ustar00<?php

/**
 * XHTML 1.1 Forms module, defines all form-related elements found in HTML 4.
 */
class HTMLPurifier_HTMLModule_Forms extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'Forms';

    /**
     * @type bool
     */
    public $safe = false;

    /**
     * @type array
     */
    public $content_sets = array(
        'Block' => 'Form',
        'Inline' => 'Formctrl',
    );

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        if ($config->get('HTML.Forms')) {
            $this->safe = true;
        }

        $form = $this->addElement(
            'form',
            'Form',
            'Required: Heading | List | Block | fieldset',
            'Common',
            array(
                'accept' => 'ContentTypes',
                'accept-charset' => 'Charsets',
                'action*' => 'URI',
                'method' => 'Enum#get,post',
                // really ContentType, but these two are the only ones used today
                'enctype' => 'Enum#application/x-www-form-urlencoded,multipart/form-data',
            )
        );
        $form->excludes = array('form' => true);

        $input = $this->addElement(
            'input',
            'Formctrl',
            'Empty',
            'Common',
            array(
                'accept' => 'ContentTypes',
                'accesskey' => 'Character',
                'alt' => 'Text',
                'checked' => 'Bool#checked',
                'disabled' => 'Bool#disabled',
                'maxlength' => 'Number',
                'name' => 'CDATA',
                'readonly' => 'Bool#readonly',
                'size' => 'Number',
                'src' => 'URI#embedded',
                'tabindex' => 'Number',
                'type' => 'Enum#text,password,checkbox,button,radio,submit,reset,file,hidden,image',
                'value' => 'CDATA',
            )
        );
        $input->attr_transform_post[] = new HTMLPurifier_AttrTransform_Input();

        $this->addElement(
            'select',
            'Formctrl',
            'Required: optgroup | option',
            'Common',
            array(
                'disabled' => 'Bool#disabled',
                'multiple' => 'Bool#multiple',
                'name' => 'CDATA',
                'size' => 'Number',
                'tabindex' => 'Number',
            )
        );

        $this->addElement(
            'option',
            false,
            'Optional: #PCDATA',
            'Common',
            array(
                'disabled' => 'Bool#disabled',
                'label' => 'Text',
                'selected' => 'Bool#selected',
                'value' => 'CDATA',
            )
        );
        // It's illegal for there to be more than one selected, but not
        // be multiple. Also, no selected means undefined behavior. This might
        // be difficult to implement; perhaps an injector, or a context variable.

        $textarea = $this->addElement(
            'textarea',
            'Formctrl',
            'Optional: #PCDATA',
            'Common',
            array(
                'accesskey' => 'Character',
                'cols*' => 'Number',
                'disabled' => 'Bool#disabled',
                'name' => 'CDATA',
                'readonly' => 'Bool#readonly',
                'rows*' => 'Number',
                'tabindex' => 'Number',
            )
        );
        $textarea->attr_transform_pre[] = new HTMLPurifier_AttrTransform_Textarea();

        $button = $this->addElement(
            'button',
            'Formctrl',
            'Optional: #PCDATA | Heading | List | Block | Inline',
            'Common',
            array(
                'accesskey' => 'Character',
                'disabled' => 'Bool#disabled',
                'name' => 'CDATA',
                'tabindex' => 'Number',
                'type' => 'Enum#button,submit,reset',
                'value' => 'CDATA',
            )
        );

        // For exclusions, ideally we'd specify content sets, not literal elements
        $button->excludes = $this->makeLookup(
            'form',
            'fieldset', // Form
            'input',
            'select',
            'textarea',
            'label',
            'button', // Formctrl
            'a', // as per HTML 4.01 spec, this is omitted by modularization
            'isindex',
            'iframe' // legacy items
        );

        // Extra exclusion: img usemap="" is not permitted within this element.
        // We'll omit this for now, since we don't have any good way of
        // indicating it yet.

        // This is HIGHLY user-unfriendly; we need a custom child-def for this
        $this->addElement('fieldset', 'Form', 'Custom: (#WS?,legend,(Flow|#PCDATA)*)', 'Common');

        $label = $this->addElement(
            'label',
            'Formctrl',
            'Optional: #PCDATA | Inline',
            'Common',
            array(
                'accesskey' => 'Character',
                // 'for' => 'IDREF', // IDREF not implemented, cannot allow
            )
        );
        $label->excludes = array('label' => true);

        $this->addElement(
            'legend',
            false,
            'Optional: #PCDATA | Inline',
            'Common',
            array(
                'accesskey' => 'Character',
            )
        );

        $this->addElement(
            'optgroup',
            false,
            'Required: option',
            'Common',
            array(
                'disabled' => 'Bool#disabled',
                'label*' => 'Text',
            )
        );
        // Don't forget an injector for <isindex>. This one's a little complex
        // because it maps to multiple elements.
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php000064400000000773151213256000020166 0ustar00<?php

/**
 * Module adds the nofollow attribute transformation to a tags.  It
 * is enabled by HTML.Nofollow
 */
class HTMLPurifier_HTMLModule_Nofollow extends HTMLPurifier_HTMLModule
{

    /**
     * @type string
     */
    public $name = 'Nofollow';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $a = $this->addBlankElement('a');
        $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php000064400000001012151213256000020550 0ustar00<?php

/**
 * Module adds the target=blank attribute transformation to a tags.  It
 * is enabled by HTML.TargetBlank
 */
class HTMLPurifier_HTMLModule_TargetBlank extends HTMLPurifier_HTMLModule
{
    /**
     * @type string
     */
    public $name = 'TargetBlank';

    /**
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
        $a = $this->addBlankElement('a');
        $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetBlank();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Language.php000064400000013656151213256000016204 0ustar00<?php

/**
 * Represents a language and defines localizable string formatting and
 * other functions, as well as the localized messages for HTML Purifier.
 */
class HTMLPurifier_Language
{

    /**
     * ISO 639 language code of language. Prefers shortest possible version.
     * @type string
     */
    public $code = 'en';

    /**
     * Fallback language code.
     * @type bool|string
     */
    public $fallback = false;

    /**
     * Array of localizable messages.
     * @type array
     */
    public $messages = array();

    /**
     * Array of localizable error codes.
     * @type array
     */
    public $errorNames = array();

    /**
     * True if no message file was found for this language, so English
     * is being used instead. Check this if you'd like to notify the
     * user that they've used a non-supported language.
     * @type bool
     */
    public $error = false;

    /**
     * Has the language object been loaded yet?
     * @type bool
     * @todo Make it private, fix usage in HTMLPurifier_LanguageTest
     */
    public $_loaded = false;

    /**
     * @type HTMLPurifier_Config
     */
    protected $config;

    /**
     * @type HTMLPurifier_Context
     */
    protected $context;

    /**
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     */
    public function __construct($config, $context)
    {
        $this->config  = $config;
        $this->context = $context;
    }

    /**
     * Loads language object with necessary info from factory cache
     * @note This is a lazy loader
     */
    public function load()
    {
        if ($this->_loaded) {
            return;
        }
        $factory = HTMLPurifier_LanguageFactory::instance();
        $factory->loadLanguage($this->code);
        foreach ($factory->keys as $key) {
            $this->$key = $factory->cache[$this->code][$key];
        }
        $this->_loaded = true;
    }

    /**
     * Retrieves a localised message.
     * @param string $key string identifier of message
     * @return string localised message
     */
    public function getMessage($key)
    {
        if (!$this->_loaded) {
            $this->load();
        }
        if (!isset($this->messages[$key])) {
            return "[$key]";
        }
        return $this->messages[$key];
    }

    /**
     * Retrieves a localised error name.
     * @param int $int error number, corresponding to PHP's error reporting
     * @return string localised message
     */
    public function getErrorName($int)
    {
        if (!$this->_loaded) {
            $this->load();
        }
        if (!isset($this->errorNames[$int])) {
            return "[Error: $int]";
        }
        return $this->errorNames[$int];
    }

    /**
     * Converts an array list into a string readable representation
     * @param array $array
     * @return string
     */
    public function listify($array)
    {
        $sep      = $this->getMessage('Item separator');
        $sep_last = $this->getMessage('Item separator last');
        $ret = '';
        for ($i = 0, $c = count($array); $i < $c; $i++) {
            if ($i == 0) {
            } elseif ($i + 1 < $c) {
                $ret .= $sep;
            } else {
                $ret .= $sep_last;
            }
            $ret .= $array[$i];
        }
        return $ret;
    }

    /**
     * Formats a localised message with passed parameters
     * @param string $key string identifier of message
     * @param array $args Parameters to substitute in
     * @return string localised message
     * @todo Implement conditionals? Right now, some messages make
     *     reference to line numbers, but those aren't always available
     */
    public function formatMessage($key, $args = array())
    {
        if (!$this->_loaded) {
            $this->load();
        }
        if (!isset($this->messages[$key])) {
            return "[$key]";
        }
        $raw = $this->messages[$key];
        $subst = array();
        $generator = false;
        foreach ($args as $i => $value) {
            if (is_object($value)) {
                if ($value instanceof HTMLPurifier_Token) {
                    // factor this out some time
                    if (!$generator) {
                        $generator = $this->context->get('Generator');
                    }
                    if (isset($value->name)) {
                        $subst['$'.$i.'.Name'] = $value->name;
                    }
                    if (isset($value->data)) {
                        $subst['$'.$i.'.Data'] = $value->data;
                    }
                    $subst['$'.$i.'.Compact'] =
                    $subst['$'.$i.'.Serialized'] = $generator->generateFromToken($value);
                    // a more complex algorithm for compact representation
                    // could be introduced for all types of tokens. This
                    // may need to be factored out into a dedicated class
                    if (!empty($value->attr)) {
                        $stripped_token = clone $value;
                        $stripped_token->attr = array();
                        $subst['$'.$i.'.Compact'] = $generator->generateFromToken($stripped_token);
                    }
                    $subst['$'.$i.'.Line'] = $value->line ? $value->line : 'unknown';
                }
                continue;
            } elseif (is_array($value)) {
                $keys = array_keys($value);
                if (array_keys($keys) === $keys) {
                    // list
                    $subst['$'.$i] = $this->listify($value);
                } else {
                    // associative array
                    // no $i implementation yet, sorry
                    $subst['$'.$i.'.Keys'] = $this->listify($keys);
                    $subst['$'.$i.'.Values'] = $this->listify(array_values($value));
                }
                continue;
            }
            $subst['$' . $i] = $value;
        }
        return strtr($raw, $subst);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php000064400000010200151213256000017577 0ustar00<?php

class HTMLPurifier_DoctypeRegistry
{

    /**
     * Hash of doctype names to doctype objects.
     * @type array
     */
    protected $doctypes;

    /**
     * Lookup table of aliases to real doctype names.
     * @type array
     */
    protected $aliases;

    /**
     * Registers a doctype to the registry
     * @note Accepts a fully-formed doctype object, or the
     *       parameters for constructing a doctype object
     * @param string $doctype Name of doctype or literal doctype object
     * @param bool $xml
     * @param array $modules Modules doctype will load
     * @param array $tidy_modules Modules doctype will load for certain modes
     * @param array $aliases Alias names for doctype
     * @param string $dtd_public
     * @param string $dtd_system
     * @return HTMLPurifier_Doctype Editable registered doctype
     */
    public function register(
        $doctype,
        $xml = true,
        $modules = array(),
        $tidy_modules = array(),
        $aliases = array(),
        $dtd_public = null,
        $dtd_system = null
    ) {
        if (!is_array($modules)) {
            $modules = array($modules);
        }
        if (!is_array($tidy_modules)) {
            $tidy_modules = array($tidy_modules);
        }
        if (!is_array($aliases)) {
            $aliases = array($aliases);
        }
        if (!is_object($doctype)) {
            $doctype = new HTMLPurifier_Doctype(
                $doctype,
                $xml,
                $modules,
                $tidy_modules,
                $aliases,
                $dtd_public,
                $dtd_system
            );
        }
        $this->doctypes[$doctype->name] = $doctype;
        $name = $doctype->name;
        // hookup aliases
        foreach ($doctype->aliases as $alias) {
            if (isset($this->doctypes[$alias])) {
                continue;
            }
            $this->aliases[$alias] = $name;
        }
        // remove old aliases
        if (isset($this->aliases[$name])) {
            unset($this->aliases[$name]);
        }
        return $doctype;
    }

    /**
     * Retrieves reference to a doctype of a certain name
     * @note This function resolves aliases
     * @note When possible, use the more fully-featured make()
     * @param string $doctype Name of doctype
     * @return HTMLPurifier_Doctype Editable doctype object
     */
    public function get($doctype)
    {
        if (isset($this->aliases[$doctype])) {
            $doctype = $this->aliases[$doctype];
        }
        if (!isset($this->doctypes[$doctype])) {
            trigger_error('Doctype ' . htmlspecialchars($doctype) . ' does not exist', E_USER_ERROR);
            $anon = new HTMLPurifier_Doctype($doctype);
            return $anon;
        }
        return $this->doctypes[$doctype];
    }

    /**
     * Creates a doctype based on a configuration object,
     * will perform initialization on the doctype
     * @note Use this function to get a copy of doctype that config
     *       can hold on to (this is necessary in order to tell
     *       Generator whether or not the current document is XML
     *       based or not).
     * @param HTMLPurifier_Config $config
     * @return HTMLPurifier_Doctype
     */
    public function make($config)
    {
        return clone $this->get($this->getDoctypeFromConfig($config));
    }

    /**
     * Retrieves the doctype from the configuration object
     * @param HTMLPurifier_Config $config
     * @return string
     */
    public function getDoctypeFromConfig($config)
    {
        // recommended test
        $doctype = $config->get('HTML.Doctype');
        if (!empty($doctype)) {
            return $doctype;
        }
        $doctype = $config->get('HTML.CustomDoctype');
        if (!empty($doctype)) {
            return $doctype;
        }
        // backwards-compatibility
        if ($config->get('HTML.XHTML')) {
            $doctype = 'XHTML 1.0';
        } else {
            $doctype = 'HTML 4.01';
        }
        if ($config->get('HTML.Strict')) {
            $doctype .= ' Strict';
        } else {
            $doctype .= ' Transitional';
        }
        return $doctype;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Textarea.php000064400000001127151213256000021032 0ustar00<?php

/**
 * Sets height/width defaults for <textarea>
 */
class HTMLPurifier_AttrTransform_Textarea extends HTMLPurifier_AttrTransform
{
    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        // Calculated from Firefox
        if (!isset($attr['cols'])) {
            $attr['cols'] = '22';
        }
        if (!isset($attr['rows'])) {
            $attr['rows'] = '3';
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php000064400000002463151213256000021476 0ustar00<?php

// must be called POST validation

/**
 * Transform that supplies default values for the src and alt attributes
 * in img tags, as well as prevents the img tag from being removed
 * because of a missing alt tag. This needs to be registered as both
 * a pre and post attribute transform.
 */
class HTMLPurifier_AttrTransform_ImgRequired extends HTMLPurifier_AttrTransform
{

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        $src = true;
        if (!isset($attr['src'])) {
            if ($config->get('Core.RemoveInvalidImg')) {
                return $attr;
            }
            $attr['src'] = $config->get('Attr.DefaultInvalidImage');
            $src = false;
        }

        if (!isset($attr['alt'])) {
            if ($src) {
                $alt = $config->get('Attr.DefaultImageAlt');
                if ($alt === null) {
                    $attr['alt'] = basename($attr['src']);
                } else {
                    $attr['alt'] = $alt;
                }
            } else {
                $attr['alt'] = $config->get('Attr.DefaultInvalidImageAlt');
            }
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Name.php000064400000001450151213256000020134 0ustar00<?php

/**
 * Pre-transform that changes deprecated name attribute to ID if necessary
 */
class HTMLPurifier_AttrTransform_Name extends HTMLPurifier_AttrTransform
{

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        // Abort early if we're using relaxed definition of name
        if ($config->get('HTML.Attr.Name.UseCDATA')) {
            return $attr;
        }
        if (!isset($attr['name'])) {
            return $attr;
        }
        $id = $this->confiscateAttr($attr, 'name');
        if (isset($attr['id'])) {
            return $attr;
        }
        $attr['id'] = $id;
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php000064400000001004151213256000022214 0ustar00<?php

/**
 * Implements required attribute stipulation for <script>
 */
class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform
{
    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['type'])) {
            $attr['type'] = 'text/javascript';
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php000064400000001177151213256000020425 0ustar00<?php

// this MUST be placed in post, as it assumes that any value in dir is valid

/**
 * Post-trasnform that ensures that bdo tags have the dir attribute set.
 */
class HTMLPurifier_AttrTransform_BdoDir extends HTMLPurifier_AttrTransform
{

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (isset($attr['dir'])) {
            return $attr;
        }
        $attr['dir'] = $config->get('Attr.DefaultTextDir');
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/BgColor.php000064400000001240151213256000020600 0ustar00<?php

/**
 * Pre-transform that changes deprecated bgcolor attribute to CSS.
 */
class HTMLPurifier_AttrTransform_BgColor extends HTMLPurifier_AttrTransform
{
    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['bgcolor'])) {
            return $attr;
        }

        $bgcolor = $this->confiscateAttr($attr, 'bgcolor');
        // some validation should happen here

        $this->prependCSS($attr, "background-color:$bgcolor;");
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgSpace.php000064400000002566151213256000020755 0ustar00<?php

/**
 * Pre-transform that changes deprecated hspace and vspace attributes to CSS
 */
class HTMLPurifier_AttrTransform_ImgSpace extends HTMLPurifier_AttrTransform
{
    /**
     * @type string
     */
    protected $attr;

    /**
     * @type array
     */
    protected $css = array(
        'hspace' => array('left', 'right'),
        'vspace' => array('top', 'bottom')
    );

    /**
     * @param string $attr
     */
    public function __construct($attr)
    {
        $this->attr = $attr;
        if (!isset($this->css[$attr])) {
            trigger_error(htmlspecialchars($attr) . ' is not valid space attribute');
        }
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr[$this->attr])) {
            return $attr;
        }

        $width = $this->confiscateAttr($attr, $this->attr);
        // some validation could happen here

        if (!isset($this->css[$this->attr])) {
            return $attr;
        }

        $style = '';
        foreach ($this->css[$this->attr] as $suffix) {
            $property = "margin-$suffix";
            $style .= "$property:{$width}px;";
        }
        $this->prependCSS($attr, $style);
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeEmbed.php000064400000001072151213256000021067 0ustar00<?php

class HTMLPurifier_AttrTransform_SafeEmbed extends HTMLPurifier_AttrTransform
{
    /**
     * @type string
     */
    public $name = "SafeEmbed";

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        $attr['allowscriptaccess'] = 'never';
        $attr['allownetworking'] = 'internal';
        $attr['type'] = 'application/x-shockwave-flash';
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php000064400000002077151213256000021031 0ustar00<?php

/**
 * Pre-transform that changes converts a boolean attribute to fixed CSS
 */
class HTMLPurifier_AttrTransform_BoolToCSS extends HTMLPurifier_AttrTransform
{
    /**
     * Name of boolean attribute that is trigger.
     * @type string
     */
    protected $attr;

    /**
     * CSS declarations to add to style, needs trailing semicolon.
     * @type string
     */
    protected $css;

    /**
     * @param string $attr attribute name to convert from
     * @param string $css CSS declarations to add to style (needs semicolon)
     */
    public function __construct($attr, $css)
    {
        $this->attr = $attr;
        $this->css = $css;
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr[$this->attr])) {
            return $attr;
        }
        unset($attr[$this->attr]);
        $this->prependCSS($attr, $this->css);
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoreferrer.php000064400000002010151213256000022525 0ustar00<?php

// must be called POST validation

/**
 * Adds rel="noreferrer" to any links which target a different window
 * than the current one.  This is used to prevent malicious websites
 * from silently replacing the original window, which could be used
 * to do phishing.
 * This transform is controlled by %HTML.TargetNoreferrer.
 */
class HTMLPurifier_AttrTransform_TargetNoreferrer extends HTMLPurifier_AttrTransform
{
    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (isset($attr['rel'])) {
            $rels = explode(' ', $attr['rel']);
        } else {
            $rels = array();
        }
        if (isset($attr['target']) && !in_array('noreferrer', $rels)) {
            $rels[] = 'noreferrer';
        }
        if (!empty($rels) || isset($attr['rel'])) {
            $attr['rel'] = implode(' ', $rels);
        }

        return $attr;
    }
}

lib/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php000064400000001776151213256000022223 0ustar00<?php

// must be called POST validation

/**
 * Adds rel="noopener" to any links which target a different window
 * than the current one.  This is used to prevent malicious websites
 * from silently replacing the original window, which could be used
 * to do phishing.
 * This transform is controlled by %HTML.TargetNoopener.
 */
class HTMLPurifier_AttrTransform_TargetNoopener extends HTMLPurifier_AttrTransform
{
    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (isset($attr['rel'])) {
            $rels = explode(' ', $attr['rel']);
        } else {
            $rels = array();
        }
        if (isset($attr['target']) && !in_array('noopener', $rels)) {
            $rels[] = 'noopener';
        }
        if (!empty($rels) || isset($attr['rel'])) {
            $attr['rel'] = implode(' ', $rels);
        }

        return $attr;
    }
}

lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Input.php000064400000003100151213256000020345 0ustar00<?php

/**
 * Performs miscellaneous cross attribute validation and filtering for
 * input elements. This is meant to be a post-transform.
 */
class HTMLPurifier_AttrTransform_Input extends HTMLPurifier_AttrTransform
{
    /**
     * @type HTMLPurifier_AttrDef_HTML_Pixels
     */
    protected $pixels;

    public function __construct()
    {
        $this->pixels = new HTMLPurifier_AttrDef_HTML_Pixels();
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['type'])) {
            $t = 'text';
        } else {
            $t = strtolower($attr['type']);
        }
        if (isset($attr['checked']) && $t !== 'radio' && $t !== 'checkbox') {
            unset($attr['checked']);
        }
        if (isset($attr['maxlength']) && $t !== 'text' && $t !== 'password') {
            unset($attr['maxlength']);
        }
        if (isset($attr['size']) && $t !== 'text' && $t !== 'password') {
            $result = $this->pixels->validate($attr['size'], $config, $context);
            if ($result === false) {
                unset($attr['size']);
            } else {
                $attr['size'] = $result;
            }
        }
        if (isset($attr['src']) && $t !== 'image') {
            unset($attr['src']);
        }
        if (!isset($attr['value']) && ($t === 'radio' || $t === 'checkbox')) {
            $attr['value'] = '';
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php000064400000001244151213256000020472 0ustar00<?php

/**
 * Pre-transform that changes deprecated border attribute to CSS.
 */
class HTMLPurifier_AttrTransform_Border extends HTMLPurifier_AttrTransform
{
    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['border'])) {
            return $attr;
        }
        $border_width = $this->confiscateAttr($attr, 'border');
        // some validation should happen here
        $this->prependCSS($attr, "border:{$border_width}px solid;");
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeObject.php000064400000001141151213256000021256 0ustar00<?php

/**
 * Writes default type for all objects. Currently only supports flash.
 */
class HTMLPurifier_AttrTransform_SafeObject extends HTMLPurifier_AttrTransform
{
    /**
     * @type string
     */
    public $name = "SafeObject";

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['type'])) {
            $attr['type'] = 'application/x-shockwave-flash';
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php000064400000001530151213256000020134 0ustar00<?php

/**
 * Post-transform that copies lang's value to xml:lang (and vice-versa)
 * @note Theoretically speaking, this could be a pre-transform, but putting
 *       post is more efficient.
 */
class HTMLPurifier_AttrTransform_Lang extends HTMLPurifier_AttrTransform
{

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        $lang = isset($attr['lang']) ? $attr['lang'] : false;
        $xml_lang = isset($attr['xml:lang']) ? $attr['xml:lang'] : false;

        if ($lang !== false && $xml_lang === false) {
            $attr['xml:lang'] = $lang;
        } elseif ($xml_lang !== false) {
            $attr['lang'] = $xml_lang;
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php000064400000001270151213256000021333 0ustar00<?php

/**
 * Pre-transform that changes proprietary background attribute to CSS.
 */
class HTMLPurifier_AttrTransform_Background extends HTMLPurifier_AttrTransform
{
    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['background'])) {
            return $attr;
        }

        $background = $this->confiscateAttr($attr, 'background');
        // some validation should happen here

        $this->prependCSS($attr, "background-image:url($background);");
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Length.php000064400000001730151213256000020476 0ustar00<?php

/**
 * Class for handling width/height length attribute transformations to CSS
 */
class HTMLPurifier_AttrTransform_Length extends HTMLPurifier_AttrTransform
{

    /**
     * @type string
     */
    protected $name;

    /**
     * @type string
     */
    protected $cssName;

    public function __construct($name, $css_name = null)
    {
        $this->name = $name;
        $this->cssName = $css_name ? $css_name : $name;
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr[$this->name])) {
            return $attr;
        }
        $length = $this->confiscateAttr($attr, $this->name);
        if (ctype_digit($length)) {
            $length .= 'px';
        }
        $this->prependCSS($attr, $this->cssName . ":$length;");
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php000064400000002201151213256000020764 0ustar00<?php

/**
 * Post-transform that performs validation to the name attribute; if
 * it is present with an equivalent id attribute, it is passed through;
 * otherwise validation is performed.
 */
class HTMLPurifier_AttrTransform_NameSync extends HTMLPurifier_AttrTransform
{

    /**
     * @since 4.13.1 - https://github.com/MetaSlider/metaslider/issues/494
     */
    public $idDef;

    public function __construct()
    {
        $this->idDef = new HTMLPurifier_AttrDef_HTML_ID();
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['name'])) {
            return $attr;
        }
        $name = $attr['name'];
        if (isset($attr['id']) && $attr['id'] === $name) {
            return $attr;
        }
        $result = $this->idDef->validate($name, $config, $context);
        if ($result === false) {
            unset($attr['name']);
        } else {
            $attr['name'] = $result;
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/SafeParam.php000064400000004751151213256000021122 0ustar00<?php

/**
 * Validates name/value pairs in param tags to be used in safe objects. This
 * will only allow name values it recognizes, and pre-fill certain attributes
 * with required values.
 *
 * @note
 *      This class only supports Flash. In the future, Quicktime support
 *      may be added.
 *
 * @warning
 *      This class expects an injector to add the necessary parameters tags.
 */
class HTMLPurifier_AttrTransform_SafeParam extends HTMLPurifier_AttrTransform
{
    /**
     * @type string
     */
    public $name = "SafeParam";

    /**
     * @type HTMLPurifier_AttrDef_URI
     */
    private $uri;

    public function __construct()
    {
        $this->uri = new HTMLPurifier_AttrDef_URI(true); // embedded
        $this->wmode = new HTMLPurifier_AttrDef_Enum(array('window', 'opaque', 'transparent'));
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        // If we add support for other objects, we'll need to alter the
        // transforms.
        switch ($attr['name']) {
            // application/x-shockwave-flash
            // Keep this synchronized with Injector/SafeObject.php
            case 'allowScriptAccess':
                $attr['value'] = 'never';
                break;
            case 'allowNetworking':
                $attr['value'] = 'internal';
                break;
            case 'allowFullScreen':
                if ($config->get('HTML.FlashAllowFullScreen')) {
                    $attr['value'] = ($attr['value'] == 'true') ? 'true' : 'false';
                } else {
                    $attr['value'] = 'false';
                }
                break;
            case 'wmode':
                $attr['value'] = $this->wmode->validate($attr['value'], $config, $context);
                break;
            case 'movie':
            case 'src':
                $attr['name'] = "movie";
                $attr['value'] = $this->uri->validate($attr['value'], $config, $context);
                break;
            case 'flashvars':
                // we're going to allow arbitrary inputs to the SWF, on
                // the reasoning that it could only hack the SWF, not us.
                break;
            // add other cases to support other param name/value pairs
            default:
                $attr['name'] = $attr['value'] = null;
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php000064400000003275151213256000021043 0ustar00<?php

/**
 * Generic pre-transform that converts an attribute with a fixed number of
 * values (enumerated) to CSS.
 */
class HTMLPurifier_AttrTransform_EnumToCSS extends HTMLPurifier_AttrTransform
{
    /**
     * Name of attribute to transform from.
     * @type string
     */
    protected $attr;

    /**
     * Lookup array of attribute values to CSS.
     * @type array
     */
    protected $enumToCSS = array();

    /**
     * Case sensitivity of the matching.
     * @type bool
     * @warning Currently can only be guaranteed to work with ASCII
     *          values.
     */
    protected $caseSensitive = false;

    /**
     * @param string $attr Attribute name to transform from
     * @param array $enum_to_css Lookup array of attribute values to CSS
     * @param bool $case_sensitive Case sensitivity indicator, default false
     */
    public function __construct($attr, $enum_to_css, $case_sensitive = false)
    {
        $this->attr = $attr;
        $this->enumToCSS = $enum_to_css;
        $this->caseSensitive = (bool)$case_sensitive;
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr[$this->attr])) {
            return $attr;
        }

        $value = trim($attr[$this->attr]);
        unset($attr[$this->attr]);

        if (!$this->caseSensitive) {
            $value = strtolower($value);
        }

        if (!isset($this->enumToCSS[$value])) {
            return $attr;
        }
        $this->prependCSS($attr, $this->enumToCSS[$value]);
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php000064400000002435151213256000021057 0ustar00<?php

// must be called POST validation

/**
 * Adds rel="nofollow" to all outbound links.  This transform is
 * only attached if Attr.Nofollow is TRUE.
 */
class HTMLPurifier_AttrTransform_Nofollow extends HTMLPurifier_AttrTransform
{
    /**
     * @type HTMLPurifier_URIParser
     */
    private $parser;

    public function __construct()
    {
        $this->parser = new HTMLPurifier_URIParser();
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['href'])) {
            return $attr;
        }

        // XXX Kind of inefficient
        $url = $this->parser->parse($attr['href']);
        $scheme = $url->getSchemeObj($config, $context);

        if ($scheme->browsable && !$url->isLocal($config, $context)) {
            if (isset($attr['rel'])) {
                $rels = explode(' ', $attr['rel']);
                if (!in_array('nofollow', $rels)) {
                    $rels[] = 'nofollow';
                }
                $attr['rel'] = implode(' ', $rels);
            } else {
                $attr['rel'] = 'nofollow';
            }
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php000064400000002104151213256000021447 0ustar00<?php

// must be called POST validation

/**
 * Adds target="blank" to all outbound links.  This transform is
 * only attached if Attr.TargetBlank is TRUE.  This works regardless
 * of whether or not Attr.AllowedFrameTargets
 */
class HTMLPurifier_AttrTransform_TargetBlank extends HTMLPurifier_AttrTransform
{
    /**
     * @type HTMLPurifier_URIParser
     */
    private $parser;

    public function __construct()
    {
        $this->parser = new HTMLPurifier_URIParser();
    }

    /**
     * @param array $attr
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function transform($attr, $config, $context)
    {
        if (!isset($attr['href'])) {
            return $attr;
        }

        // XXX Kind of inefficient
        $url = $this->parser->parse($attr['href']);
        $scheme = $url->getSchemeObj($config, $context);

        if ($scheme->browsable && !$url->isBenign($config, $context)) {
            $attr['target'] = '_blank';
        }
        return $attr;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php000064400000002252151213256000020533 0ustar00<?php

class HTMLPurifier_Printer_CSSDefinition extends HTMLPurifier_Printer
{
    /**
     * @type HTMLPurifier_CSSDefinition
     */
    protected $def;

    /**
     * @param HTMLPurifier_Config $config
     * @return string
     */
    public function render($config)
    {
        $this->def = $config->getCSSDefinition();
        $ret = '';

        $ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer'));
        $ret .= $this->start('table');

        $ret .= $this->element('caption', 'Properties ($info)');

        $ret .= $this->start('thead');
        $ret .= $this->start('tr');
        $ret .= $this->element('th', 'Property', array('class' => 'heavy'));
        $ret .= $this->element('th', 'Definition', array('class' => 'heavy', 'style' => 'width:auto;'));
        $ret .= $this->end('tr');
        $ret .= $this->end('thead');

        ksort($this->def->info);
        foreach ($this->def->info as $property => $obj) {
            $name = $this->getClass($obj, 'AttrDef_');
            $ret .= $this->row($property, $name);
        }

        $ret .= $this->end('table');
        $ret .= $this->end('div');

        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css000064400000000455151213256000020127 0ustar00
.hp-config {}

.hp-config tbody th {text-align:right; padding-right:0.5em;}
.hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;}
.hp-config .namespace th {text-align:center;}
.hp-config .verbose {display:none;}
.hp-config .controls {text-align:center;}

/* vim: et sw=4 sts=4 */
lib/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.js000064400000000216151213256000017746 0ustar00function toggleWriteability(id_of_patient, checked) {
    document.getElementById(id_of_patient).disabled = checked;
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php000064400000034743151213256000020135 0ustar00<?php

/**
 * @todo Rewrite to use Interchange objects
 */
class HTMLPurifier_Printer_ConfigForm extends HTMLPurifier_Printer
{

    /**
     * Printers for specific fields.
     * @type HTMLPurifier_Printer[]
     */
    protected $fields = array();

    /**
     * Documentation URL, can have fragment tagged on end.
     * @type string
     */
    protected $docURL;

    /**
     * Name of form element to stuff config in.
     * @type string
     */
    protected $name;

    /**
     * Whether or not to compress directive names, clipping them off
     * after a certain amount of letters. False to disable or integer letters
     * before clipping.
     * @type bool
     */
    protected $compress = false;

    /**
     * @param string $name Form element name for directives to be stuffed into
     * @param string $doc_url String documentation URL, will have fragment tagged on
     * @param bool $compress Integer max length before compressing a directive name, set to false to turn off
     */
    public function __construct(
        $name,
        $doc_url = null,
        $compress = false
    ) {
        parent::__construct();
        $this->docURL = $doc_url;
        $this->name = $name;
        $this->compress = $compress;
        // initialize sub-printers
        $this->fields[0] = new HTMLPurifier_Printer_ConfigForm_default();
        $this->fields[HTMLPurifier_VarParser::C_BOOL] = new HTMLPurifier_Printer_ConfigForm_bool();
    }

    /**
     * Sets default column and row size for textareas in sub-printers
     * @param $cols Integer columns of textarea, null to use default
     * @param $rows Integer rows of textarea, null to use default
     */
    public function setTextareaDimensions($cols = null, $rows = null)
    {
        if ($cols) {
            $this->fields['default']->cols = $cols;
        }
        if ($rows) {
            $this->fields['default']->rows = $rows;
        }
    }

    /**
     * Retrieves styling, in case it is not accessible by webserver
     */
    public static function getCSS()
    {
        return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.css');
    }

    /**
     * Retrieves JavaScript, in case it is not accessible by webserver
     */
    public static function getJavaScript()
    {
        return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.js');
    }

    /**
     * Returns HTML output for a configuration form
     * @param HTMLPurifier_Config|array $config Configuration object of current form state, or an array
     *        where [0] has an HTML namespace and [1] is being rendered.
     * @param array|bool $allowed Optional namespace(s) and directives to restrict form to.
     * @param bool $render_controls
     * @return string
     */
    public function render($config, $allowed = true, $render_controls = true)
    {
        if (is_array($config) && isset($config[0])) {
            $gen_config = $config[0];
            $config = $config[1];
        } else {
            $gen_config = $config;
        }

        $this->config = $config;
        $this->genConfig = $gen_config;
        $this->prepareGenerator($gen_config);

        $allowed = HTMLPurifier_Config::getAllowedDirectivesForForm($allowed, $config->def);
        $all = array();
        foreach ($allowed as $key) {
            list($ns, $directive) = $key;
            $all[$ns][$directive] = $config->get($ns . '.' . $directive);
        }

        $ret = '';
        $ret .= $this->start('table', array('class' => 'hp-config'));
        $ret .= $this->start('thead');
        $ret .= $this->start('tr');
        $ret .= $this->element('th', 'Directive', array('class' => 'hp-directive'));
        $ret .= $this->element('th', 'Value', array('class' => 'hp-value'));
        $ret .= $this->end('tr');
        $ret .= $this->end('thead');
        foreach ($all as $ns => $directives) {
            $ret .= $this->renderNamespace($ns, $directives);
        }
        if ($render_controls) {
            $ret .= $this->start('tbody');
            $ret .= $this->start('tr');
            $ret .= $this->start('td', array('colspan' => 2, 'class' => 'controls'));
            $ret .= $this->elementEmpty('input', array('type' => 'submit', 'value' => 'Submit'));
            $ret .= '[<a href="?">Reset</a>]';
            $ret .= $this->end('td');
            $ret .= $this->end('tr');
            $ret .= $this->end('tbody');
        }
        $ret .= $this->end('table');
        return $ret;
    }

    /**
     * Renders a single namespace
     * @param $ns String namespace name
     * @param array $directives array of directives to values
     * @return string
     */
    protected function renderNamespace($ns, $directives)
    {
        $ret = '';
        $ret .= $this->start('tbody', array('class' => 'namespace'));
        $ret .= $this->start('tr');
        $ret .= $this->element('th', $ns, array('colspan' => 2));
        $ret .= $this->end('tr');
        $ret .= $this->end('tbody');
        $ret .= $this->start('tbody');
        foreach ($directives as $directive => $value) {
            $ret .= $this->start('tr');
            $ret .= $this->start('th');
            if ($this->docURL) {
                $url = str_replace('%s', urlencode("$ns.$directive"), $this->docURL);
                $ret .= $this->start('a', array('href' => $url));
            }
            $attr = array('for' => "{$this->name}:$ns.$directive");

            // crop directive name if it's too long
            if (!$this->compress || (strlen($directive) < $this->compress)) {
                $directive_disp = $directive;
            } else {
                $directive_disp = substr($directive, 0, $this->compress - 2) . '...';
                $attr['title'] = $directive;
            }

            $ret .= $this->element(
                'label',
                $directive_disp,
                // component printers must create an element with this id
                $attr
            );
            if ($this->docURL) {
                $ret .= $this->end('a');
            }
            $ret .= $this->end('th');

            $ret .= $this->start('td');
            $def = $this->config->def->info["$ns.$directive"];
            if (is_int($def)) {
                $allow_null = $def < 0;
                $type = abs($def);
            } else {
                $type = $def->type;
                $allow_null = isset($def->allow_null);
            }
            if (!isset($this->fields[$type])) {
                $type = 0;
            } // default
            $type_obj = $this->fields[$type];
            if ($allow_null) {
                $type_obj = new HTMLPurifier_Printer_ConfigForm_NullDecorator($type_obj);
            }
            $ret .= $type_obj->render($ns, $directive, $value, $this->name, array($this->genConfig, $this->config));
            $ret .= $this->end('td');
            $ret .= $this->end('tr');
        }
        $ret .= $this->end('tbody');
        return $ret;
    }

}

/**
 * Printer decorator for directives that accept null
 */
class HTMLPurifier_Printer_ConfigForm_NullDecorator extends HTMLPurifier_Printer
{
    /**
     * Printer being decorated
     * @type HTMLPurifier_Printer
     */
    protected $obj;

    /**
     * @param HTMLPurifier_Printer $obj Printer to decorate
     */
    public function __construct($obj)
    {
        parent::__construct();
        $this->obj = $obj;
    }

    /**
     * @param string $ns
     * @param string $directive
     * @param string $value
     * @param string $name
     * @param HTMLPurifier_Config|array $config
     * @return string
     */
    public function render($ns, $directive, $value, $name, $config)
    {
        if (is_array($config) && isset($config[0])) {
            $gen_config = $config[0];
            $config = $config[1];
        } else {
            $gen_config = $config;
        }
        $this->prepareGenerator($gen_config);

        $ret = '';
        $ret .= $this->start('label', array('for' => "$name:Null_$ns.$directive"));
        $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
        $ret .= $this->text(' Null/Disabled');
        $ret .= $this->end('label');
        $attr = array(
            'type' => 'checkbox',
            'value' => '1',
            'class' => 'null-toggle',
            'name' => "$name" . "[Null_$ns.$directive]",
            'id' => "$name:Null_$ns.$directive",
            'onclick' => "toggleWriteability('$name:$ns.$directive',checked)" // INLINE JAVASCRIPT!!!!
        );
        if ($this->obj instanceof HTMLPurifier_Printer_ConfigForm_bool) {
            // modify inline javascript slightly
            $attr['onclick'] =
                "toggleWriteability('$name:Yes_$ns.$directive',checked);" .
                "toggleWriteability('$name:No_$ns.$directive',checked)";
        }
        if ($value === null) {
            $attr['checked'] = 'checked';
        }
        $ret .= $this->elementEmpty('input', $attr);
        $ret .= $this->text(' or ');
        $ret .= $this->elementEmpty('br');
        $ret .= $this->obj->render($ns, $directive, $value, $name, array($gen_config, $config));
        return $ret;
    }
}

/**
 * Swiss-army knife configuration form field printer
 */
class HTMLPurifier_Printer_ConfigForm_default extends HTMLPurifier_Printer
{
    /**
     * @type int
     */
    public $cols = 18;

    /**
     * @type int
     */
    public $rows = 5;

    /**
     * @param string $ns
     * @param string $directive
     * @param string $value
     * @param string $name
     * @param HTMLPurifier_Config|array $config
     * @return string
     */
    public function render($ns, $directive, $value, $name, $config)
    {
        if (is_array($config) && isset($config[0])) {
            $gen_config = $config[0];
            $config = $config[1];
        } else {
            $gen_config = $config;
        }
        $this->prepareGenerator($gen_config);
        // this should probably be split up a little
        $ret = '';
        $def = $config->def->info["$ns.$directive"];
        if (is_int($def)) {
            $type = abs($def);
        } else {
            $type = $def->type;
        }
        if (is_array($value)) {
            switch ($type) {
                case HTMLPurifier_VarParser::LOOKUP:
                    $array = $value;
                    $value = array();
                    foreach ($array as $val => $b) {
                        $value[] = $val;
                    }
                    //TODO does this need a break?
                case HTMLPurifier_VarParser::ALIST:
                    $value = implode(PHP_EOL, $value);
                    break;
                case HTMLPurifier_VarParser::HASH:
                    $nvalue = '';
                    foreach ($value as $i => $v) {
                        if (is_array($v)) {
                            // HACK
                            $v = implode(";", $v);
                        }
                        $nvalue .= "$i:$v" . PHP_EOL;
                    }
                    $value = $nvalue;
                    break;
                default:
                    $value = '';
            }
        }
        if ($type === HTMLPurifier_VarParser::C_MIXED) {
            return 'Not supported';
            $value = serialize($value);
        }
        $attr = array(
            'name' => "$name" . "[$ns.$directive]",
            'id' => "$name:$ns.$directive"
        );
        if ($value === null) {
            $attr['disabled'] = 'disabled';
        }
        if (isset($def->allowed)) {
            $ret .= $this->start('select', $attr);
            foreach ($def->allowed as $val => $b) {
                $attr = array();
                if ($value == $val) {
                    $attr['selected'] = 'selected';
                }
                $ret .= $this->element('option', $val, $attr);
            }
            $ret .= $this->end('select');
        } elseif ($type === HTMLPurifier_VarParser::TEXT ||
                $type === HTMLPurifier_VarParser::ITEXT ||
                $type === HTMLPurifier_VarParser::ALIST ||
                $type === HTMLPurifier_VarParser::HASH ||
                $type === HTMLPurifier_VarParser::LOOKUP) {
            $attr['cols'] = $this->cols;
            $attr['rows'] = $this->rows;
            $ret .= $this->start('textarea', $attr);
            $ret .= $this->text($value);
            $ret .= $this->end('textarea');
        } else {
            $attr['value'] = $value;
            $attr['type'] = 'text';
            $ret .= $this->elementEmpty('input', $attr);
        }
        return $ret;
    }
}

/**
 * Bool form field printer
 */
class HTMLPurifier_Printer_ConfigForm_bool extends HTMLPurifier_Printer
{
    /**
     * @param string $ns
     * @param string $directive
     * @param string $value
     * @param string $name
     * @param HTMLPurifier_Config|array $config
     * @return string
     */
    public function render($ns, $directive, $value, $name, $config)
    {
        if (is_array($config) && isset($config[0])) {
            $gen_config = $config[0];
            $config = $config[1];
        } else {
            $gen_config = $config;
        }
        $this->prepareGenerator($gen_config);
        $ret = '';
        $ret .= $this->start('div', array('id' => "$name:$ns.$directive"));

        $ret .= $this->start('label', array('for' => "$name:Yes_$ns.$directive"));
        $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
        $ret .= $this->text(' Yes');
        $ret .= $this->end('label');

        $attr = array(
            'type' => 'radio',
            'name' => "$name" . "[$ns.$directive]",
            'id' => "$name:Yes_$ns.$directive",
            'value' => '1'
        );
        if ($value === true) {
            $attr['checked'] = 'checked';
        }
        if ($value === null) {
            $attr['disabled'] = 'disabled';
        }
        $ret .= $this->elementEmpty('input', $attr);

        $ret .= $this->start('label', array('for' => "$name:No_$ns.$directive"));
        $ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
        $ret .= $this->text(' No');
        $ret .= $this->end('label');

        $attr = array(
            'type' => 'radio',
            'name' => "$name" . "[$ns.$directive]",
            'id' => "$name:No_$ns.$directive",
            'value' => '0'
        );
        if ($value === false) {
            $attr['checked'] = 'checked';
        }
        if ($value === null) {
            $attr['disabled'] = 'disabled';
        }
        $ret .= $this->elementEmpty('input', $attr);

        $ret .= $this->end('div');

        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php000064400000024373151213256000020657 0ustar00<?php

class HTMLPurifier_Printer_HTMLDefinition extends HTMLPurifier_Printer
{

    /**
     * @type HTMLPurifier_HTMLDefinition, for easy access
     */
    protected $def;

    /**
     * @param HTMLPurifier_Config $config
     * @return string
     */
    public function render($config)
    {
        $ret = '';
        $this->config =& $config;

        $this->def = $config->getHTMLDefinition();

        $ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer'));

        $ret .= $this->renderDoctype();
        $ret .= $this->renderEnvironment();
        $ret .= $this->renderContentSets();
        $ret .= $this->renderInfo();

        $ret .= $this->end('div');

        return $ret;
    }

    /**
     * Renders the Doctype table
     * @return string
     */
    protected function renderDoctype()
    {
        $doctype = $this->def->doctype;
        $ret = '';
        $ret .= $this->start('table');
        $ret .= $this->element('caption', 'Doctype');
        $ret .= $this->row('Name', $doctype->name);
        $ret .= $this->row('XML', $doctype->xml ? 'Yes' : 'No');
        $ret .= $this->row('Default Modules', implode(', ', $doctype->modules));
        $ret .= $this->row('Default Tidy Modules', implode(', ', $doctype->tidyModules));
        $ret .= $this->end('table');
        return $ret;
    }


    /**
     * Renders environment table, which is miscellaneous info
     * @return string
     */
    protected function renderEnvironment()
    {
        $def = $this->def;

        $ret = '';

        $ret .= $this->start('table');
        $ret .= $this->element('caption', 'Environment');

        $ret .= $this->row('Parent of fragment', $def->info_parent);
        $ret .= $this->renderChildren($def->info_parent_def->child);
        $ret .= $this->row('Block wrap name', $def->info_block_wrapper);

        $ret .= $this->start('tr');
        $ret .= $this->element('th', 'Global attributes');
        $ret .= $this->element('td', $this->listifyAttr($def->info_global_attr), null, 0);
        $ret .= $this->end('tr');

        $ret .= $this->start('tr');
        $ret .= $this->element('th', 'Tag transforms');
        $list = array();
        foreach ($def->info_tag_transform as $old => $new) {
            $new = $this->getClass($new, 'TagTransform_');
            $list[] = "<$old> with $new";
        }
        $ret .= $this->element('td', $this->listify($list));
        $ret .= $this->end('tr');

        $ret .= $this->start('tr');
        $ret .= $this->element('th', 'Pre-AttrTransform');
        $ret .= $this->element('td', $this->listifyObjectList($def->info_attr_transform_pre));
        $ret .= $this->end('tr');

        $ret .= $this->start('tr');
        $ret .= $this->element('th', 'Post-AttrTransform');
        $ret .= $this->element('td', $this->listifyObjectList($def->info_attr_transform_post));
        $ret .= $this->end('tr');

        $ret .= $this->end('table');
        return $ret;
    }

    /**
     * Renders the Content Sets table
     * @return string
     */
    protected function renderContentSets()
    {
        $ret = '';
        $ret .= $this->start('table');
        $ret .= $this->element('caption', 'Content Sets');
        foreach ($this->def->info_content_sets as $name => $lookup) {
            $ret .= $this->heavyHeader($name);
            $ret .= $this->start('tr');
            $ret .= $this->element('td', $this->listifyTagLookup($lookup));
            $ret .= $this->end('tr');
        }
        $ret .= $this->end('table');
        return $ret;
    }

    /**
     * Renders the Elements ($info) table
     * @return string
     */
    protected function renderInfo()
    {
        $ret = '';
        $ret .= $this->start('table');
        $ret .= $this->element('caption', 'Elements ($info)');
        ksort($this->def->info);
        $ret .= $this->heavyHeader('Allowed tags', 2);
        $ret .= $this->start('tr');
        $ret .= $this->element('td', $this->listifyTagLookup($this->def->info), array('colspan' => 2));
        $ret .= $this->end('tr');
        foreach ($this->def->info as $name => $def) {
            $ret .= $this->start('tr');
            $ret .= $this->element('th', "<$name>", array('class' => 'heavy', 'colspan' => 2));
            $ret .= $this->end('tr');
            $ret .= $this->start('tr');
            $ret .= $this->element('th', 'Inline content');
            $ret .= $this->element('td', $def->descendants_are_inline ? 'Yes' : 'No');
            $ret .= $this->end('tr');
            if (!empty($def->excludes)) {
                $ret .= $this->start('tr');
                $ret .= $this->element('th', 'Excludes');
                $ret .= $this->element('td', $this->listifyTagLookup($def->excludes));
                $ret .= $this->end('tr');
            }
            if (!empty($def->attr_transform_pre)) {
                $ret .= $this->start('tr');
                $ret .= $this->element('th', 'Pre-AttrTransform');
                $ret .= $this->element('td', $this->listifyObjectList($def->attr_transform_pre));
                $ret .= $this->end('tr');
            }
            if (!empty($def->attr_transform_post)) {
                $ret .= $this->start('tr');
                $ret .= $this->element('th', 'Post-AttrTransform');
                $ret .= $this->element('td', $this->listifyObjectList($def->attr_transform_post));
                $ret .= $this->end('tr');
            }
            if (!empty($def->auto_close)) {
                $ret .= $this->start('tr');
                $ret .= $this->element('th', 'Auto closed by');
                $ret .= $this->element('td', $this->listifyTagLookup($def->auto_close));
                $ret .= $this->end('tr');
            }
            $ret .= $this->start('tr');
            $ret .= $this->element('th', 'Allowed attributes');
            $ret .= $this->element('td', $this->listifyAttr($def->attr), array(), 0);
            $ret .= $this->end('tr');

            if (!empty($def->required_attr)) {
                $ret .= $this->row('Required attributes', $this->listify($def->required_attr));
            }

            $ret .= $this->renderChildren($def->child);
        }
        $ret .= $this->end('table');
        return $ret;
    }

    /**
     * Renders a row describing the allowed children of an element
     * @param HTMLPurifier_ChildDef $def HTMLPurifier_ChildDef of pertinent element
     * @return string
     */
    protected function renderChildren($def)
    {
        $context = new HTMLPurifier_Context();
        $ret = '';
        $ret .= $this->start('tr');
        $elements = array();
        $attr = array();
        if (isset($def->elements)) {
            if ($def->type == 'strictblockquote') {
                $def->validateChildren(array(), $this->config, $context);
            }
            $elements = $def->elements;
        }
        if ($def->type == 'chameleon') {
            $attr['rowspan'] = 2;
        } elseif ($def->type == 'empty') {
            $elements = array();
        } elseif ($def->type == 'table') {
            $elements = array_flip(
                array(
                    'col',
                    'caption',
                    'colgroup',
                    'thead',
                    'tfoot',
                    'tbody',
                    'tr'
                )
            );
        }
        $ret .= $this->element('th', 'Allowed children', $attr);

        if ($def->type == 'chameleon') {

            $ret .= $this->element(
                'td',
                '<em>Block</em>: ' .
                $this->escape($this->listifyTagLookup($def->block->elements)),
                null,
                0
            );
            $ret .= $this->end('tr');
            $ret .= $this->start('tr');
            $ret .= $this->element(
                'td',
                '<em>Inline</em>: ' .
                $this->escape($this->listifyTagLookup($def->inline->elements)),
                null,
                0
            );

        } elseif ($def->type == 'custom') {

            $ret .= $this->element(
                'td',
                '<em>' . ucfirst($def->type) . '</em>: ' .
                $def->dtd_regex
            );

        } else {
            $ret .= $this->element(
                'td',
                '<em>' . ucfirst($def->type) . '</em>: ' .
                $this->escape($this->listifyTagLookup($elements)),
                null,
                0
            );
        }
        $ret .= $this->end('tr');
        return $ret;
    }

    /**
     * Listifies a tag lookup table.
     * @param array $array Tag lookup array in form of array('tagname' => true)
     * @return string
     */
    protected function listifyTagLookup($array)
    {
        ksort($array);
        $list = array();
        foreach ($array as $name => $discard) {
            if ($name !== '#PCDATA' && !isset($this->def->info[$name])) {
                continue;
            }
            $list[] = $name;
        }
        return $this->listify($list);
    }

    /**
     * Listifies a list of objects by retrieving class names and internal state
     * @param array $array List of objects
     * @return string
     * @todo Also add information about internal state
     */
    protected function listifyObjectList($array)
    {
        ksort($array);
        $list = array();
        foreach ($array as $obj) {
            $list[] = $this->getClass($obj, 'AttrTransform_');
        }
        return $this->listify($list);
    }

    /**
     * Listifies a hash of attributes to AttrDef classes
     * @param array $array Array hash in form of array('attrname' => HTMLPurifier_AttrDef)
     * @return string
     */
    protected function listifyAttr($array)
    {
        ksort($array);
        $list = array();
        foreach ($array as $name => $obj) {
            if ($obj === false) {
                continue;
            }
            $list[] = "$name&nbsp;=&nbsp;<i>" . $this->getClass($obj, 'AttrDef_') . '</i>';
        }
        return $this->listify($list);
    }

    /**
     * Creates a heavy header row
     * @param string $text
     * @param int $num
     * @return string
     */
    protected function heavyHeader($text, $num = 1)
    {
        $ret = '';
        $ret .= $this->start('tr');
        $ret .= $this->element('th', $text, array('colspan' => $num, 'class' => 'heavy'));
        $ret .= $this->end('tr');
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrCollections.php000064400000011376151213256010017570 0ustar00<?php

/**
 * Defines common attribute collections that modules reference
 */

class HTMLPurifier_AttrCollections
{

    /**
     * Associative array of attribute collections, indexed by name.
     * @type array
     */
    public $info = array();

    /**
     * Performs all expansions on internal data for use by other inclusions
     * It also collects all attribute collection extensions from
     * modules
     * @param HTMLPurifier_AttrTypes $attr_types HTMLPurifier_AttrTypes instance
     * @param HTMLPurifier_HTMLModule[] $modules Hash array of HTMLPurifier_HTMLModule members
     */
    public function __construct($attr_types, $modules)
    {
        $this->doConstruct($attr_types, $modules);
    }

    public function doConstruct($attr_types, $modules)
    {
        // load extensions from the modules
        foreach ($modules as $module) {
            foreach ($module->attr_collections as $coll_i => $coll) {
                if (!isset($this->info[$coll_i])) {
                    $this->info[$coll_i] = array();
                }
                foreach ($coll as $attr_i => $attr) {
                    if ($attr_i === 0 && isset($this->info[$coll_i][$attr_i])) {
                        // merge in includes
                        $this->info[$coll_i][$attr_i] = array_merge(
                            $this->info[$coll_i][$attr_i],
                            $attr
                        );
                        continue;
                    }
                    $this->info[$coll_i][$attr_i] = $attr;
                }
            }
        }
        // perform internal expansions and inclusions
        foreach ($this->info as $name => $attr) {
            // merge attribute collections that include others
            $this->performInclusions($this->info[$name]);
            // replace string identifiers with actual attribute objects
            $this->expandIdentifiers($this->info[$name], $attr_types);
        }
    }

    /**
     * Takes a reference to an attribute associative array and performs
     * all inclusions specified by the zero index.
     * @param array &$attr Reference to attribute array
     */
    public function performInclusions(&$attr)
    {
        if (!isset($attr[0])) {
            return;
        }
        $merge = $attr[0];
        $seen  = array(); // recursion guard
        // loop through all the inclusions
        for ($i = 0; isset($merge[$i]); $i++) {
            if (isset($seen[$merge[$i]])) {
                continue;
            }
            $seen[$merge[$i]] = true;
            // foreach attribute of the inclusion, copy it over
            if (!isset($this->info[$merge[$i]])) {
                continue;
            }
            foreach ($this->info[$merge[$i]] as $key => $value) {
                if (isset($attr[$key])) {
                    continue;
                } // also catches more inclusions
                $attr[$key] = $value;
            }
            if (isset($this->info[$merge[$i]][0])) {
                // recursion
                $merge = array_merge($merge, $this->info[$merge[$i]][0]);
            }
        }
        unset($attr[0]);
    }

    /**
     * Expands all string identifiers in an attribute array by replacing
     * them with the appropriate values inside HTMLPurifier_AttrTypes
     * @param array &$attr Reference to attribute array
     * @param HTMLPurifier_AttrTypes $attr_types HTMLPurifier_AttrTypes instance
     */
    public function expandIdentifiers(&$attr, $attr_types)
    {
        // because foreach will process new elements we add, make sure we
        // skip duplicates
        $processed = array();

        foreach ($attr as $def_i => $def) {
            // skip inclusions
            if ($def_i === 0) {
                continue;
            }

            if (isset($processed[$def_i])) {
                continue;
            }

            // determine whether or not attribute is required
            if ($required = (strpos($def_i, '*') !== false)) {
                // rename the definition
                unset($attr[$def_i]);
                $def_i = trim($def_i, '*');
                $attr[$def_i] = $def;
            }

            $processed[$def_i] = true;

            // if we've already got a literal object, move on
            if (is_object($def)) {
                // preserve previous required
                $attr[$def_i]->required = ($required || $attr[$def_i]->required);
                continue;
            }

            if ($def === false) {
                unset($attr[$def_i]);
                continue;
            }

            if ($t = $attr_types->get($def)) {
                $attr[$def_i] = $t;
                $attr[$def_i]->required = $required;
            } else {
                unset($attr[$def_i]);
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Token/Empty.php000064400000000370151213256010016625 0ustar00<?php

/**
 * Concrete empty token class.
 */
class HTMLPurifier_Token_Empty extends HTMLPurifier_Token_Tag
{
    public function toNode() {
        $n = parent::toNode();
        $n->empty = true;
        return $n;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Token/Tag.php000064400000003740151213256010016246 0ustar00<?php

/**
 * Abstract class of a tag token (start, end or empty), and its behavior.
 */
abstract class HTMLPurifier_Token_Tag extends HTMLPurifier_Token
{
    /**
     * Static bool marker that indicates the class is a tag.
     *
     * This allows us to check objects with <tt>!empty($obj->is_tag)</tt>
     * without having to use a function call <tt>is_a()</tt>.
     * @type bool
     */
    public $is_tag = true;

    /**
     * The lower-case name of the tag, like 'a', 'b' or 'blockquote'.
     *
     * @note Strictly speaking, XML tags are case sensitive, so we shouldn't
     * be lower-casing them, but these tokens cater to HTML tags, which are
     * insensitive.
     * @type string
     */
    public $name;

    /**
     * Associative array of the tag's attributes.
     * @type array
     */
    public $attr = array();

    /**
     * Non-overloaded constructor, which lower-cases passed tag name.
     *
     * @param string $name String name.
     * @param array $attr Associative array of attributes.
     * @param int $line
     * @param int $col
     * @param array $armor
     */
    public function __construct($name, $attr = array(), $line = null, $col = null, $armor = array())
    {
        $this->name = ctype_lower($name) ? $name : strtolower($name);
        foreach ($attr as $key => $value) {
            // normalization only necessary when key is not lowercase
            if (!ctype_lower($key)) {
                $new_key = strtolower($key);
                if (!isset($attr[$new_key])) {
                    $attr[$new_key] = $attr[$key];
                }
                if ($new_key !== $key) {
                    unset($attr[$key]);
                }
            }
        }
        $this->attr = $attr;
        $this->line = $line;
        $this->col = $col;
        $this->armor = $armor;
    }

    public function toNode() {
        return new HTMLPurifier_Node_Element($this->name, $this->attr, $this->line, $this->col, $this->armor);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Token/End.php000064400000001114151213256010016232 0ustar00<?php

/**
 * Concrete end token class.
 *
 * @warning This class accepts attributes even though end tags cannot. This
 * is for optimization reasons, as under normal circumstances, the Lexers
 * do not pass attributes.
 */
class HTMLPurifier_Token_End extends HTMLPurifier_Token_Tag
{
    /**
     * Token that started this node.
     * Added by MakeWellFormed. Please do not edit this!
     * @type HTMLPurifier_Token
     */
    public $start;

    public function toNode() {
        throw new Exception("HTMLPurifier_Token_End->toNode not supported!");
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Token/Start.php000064400000000207151213256010016623 0ustar00<?php

/**
 * Concrete start token class.
 */
class HTMLPurifier_Token_Start extends HTMLPurifier_Token_Tag
{
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Token/Text.php000064400000002455151213256010016461 0ustar00<?php

/**
 * Concrete text token class.
 *
 * Text tokens comprise of regular parsed character data (PCDATA) and raw
 * character data (from the CDATA sections). Internally, their
 * data is parsed with all entities expanded. Surprisingly, the text token
 * does have a "tag name" called #PCDATA, which is how the DTD represents it
 * in permissible child nodes.
 */
class HTMLPurifier_Token_Text extends HTMLPurifier_Token
{

    /**
     * @type string
     */
    public $name = '#PCDATA';
    /**< PCDATA tag name compatible with DTD. */

    /**
     * @type string
     */
    public $data;
    /**< Parsed character data of text. */

    /**
     * @type bool
     */
    public $is_whitespace;

    /**< Bool indicating if node is whitespace. */

    /**
     * Constructor, accepts data and determines if it is whitespace.
     * @param string $data String parsed character data.
     * @param int $line
     * @param int $col
     */
    public function __construct($data, $line = null, $col = null)
    {
        $this->data = $data;
        $this->is_whitespace = ctype_space($data);
        $this->line = $line;
        $this->col = $col;
    }

    public function toNode() {
        return new HTMLPurifier_Node_Text($this->data, $this->is_whitespace, $this->line, $this->col);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Token/Comment.php000064400000001367151213256010017140 0ustar00<?php

/**
 * Concrete comment token class. Generally will be ignored.
 */
class HTMLPurifier_Token_Comment extends HTMLPurifier_Token
{
    /**
     * Character data within comment.
     * @type string
     */
    public $data;

    /**
     * @type bool
     */
    public $is_whitespace = true;

    /**
     * Transparent constructor.
     *
     * @param string $data String comment data.
     * @param int $line
     * @param int $col
     */
    public function __construct($data, $line = null, $col = null)
    {
        $this->data = $data;
        $this->line = $line;
        $this->col = $col;
    }

    public function toNode() {
        return new HTMLPurifier_Node_Comment($this->data, $this->line, $this->col);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTypes.php000064400000007124151213256010016412 0ustar00<?php

/**
 * Provides lookup array of attribute types to HTMLPurifier_AttrDef objects
 */
class HTMLPurifier_AttrTypes
{
    /**
     * Lookup array of attribute string identifiers to concrete implementations.
     * @type HTMLPurifier_AttrDef[]
     */
    protected $info = array();

    /**
     * Constructs the info array, supplying default implementations for attribute
     * types.
     */
    public function __construct()
    {
        // XXX This is kind of poor, since we don't actually /clone/
        // instances; instead, we use the supplied make() attribute. So,
        // the underlying class must know how to deal with arguments.
        // With the old implementation of Enum, that ignored its
        // arguments when handling a make dispatch, the IAlign
        // definition wouldn't work.

        // pseudo-types, must be instantiated via shorthand
        $this->info['Enum']    = new HTMLPurifier_AttrDef_Enum();
        $this->info['Bool']    = new HTMLPurifier_AttrDef_HTML_Bool();

        $this->info['CDATA']    = new HTMLPurifier_AttrDef_Text();
        $this->info['ID']       = new HTMLPurifier_AttrDef_HTML_ID();
        $this->info['Length']   = new HTMLPurifier_AttrDef_HTML_Length();
        $this->info['MultiLength'] = new HTMLPurifier_AttrDef_HTML_MultiLength();
        $this->info['NMTOKENS'] = new HTMLPurifier_AttrDef_HTML_Nmtokens();
        $this->info['Pixels']   = new HTMLPurifier_AttrDef_HTML_Pixels();
        $this->info['Text']     = new HTMLPurifier_AttrDef_Text();
        $this->info['URI']      = new HTMLPurifier_AttrDef_URI();
        $this->info['LanguageCode'] = new HTMLPurifier_AttrDef_Lang();
        $this->info['Color']    = new HTMLPurifier_AttrDef_HTML_Color();
        $this->info['IAlign']   = self::makeEnum('top,middle,bottom,left,right');
        $this->info['LAlign']   = self::makeEnum('top,bottom,left,right');
        $this->info['FrameTarget'] = new HTMLPurifier_AttrDef_HTML_FrameTarget();

        // unimplemented aliases
        $this->info['ContentType'] = new HTMLPurifier_AttrDef_Text();
        $this->info['ContentTypes'] = new HTMLPurifier_AttrDef_Text();
        $this->info['Charsets'] = new HTMLPurifier_AttrDef_Text();
        $this->info['Character'] = new HTMLPurifier_AttrDef_Text();

        // "proprietary" types
        $this->info['Class'] = new HTMLPurifier_AttrDef_HTML_Class();

        // number is really a positive integer (one or more digits)
        // FIXME: ^^ not always, see start and value of list items
        $this->info['Number']   = new HTMLPurifier_AttrDef_Integer(false, false, true);
    }

    private static function makeEnum($in)
    {
        return new HTMLPurifier_AttrDef_Clone(new HTMLPurifier_AttrDef_Enum(explode(',', $in)));
    }

    /**
     * Retrieves a type
     * @param string $type String type name
     * @return HTMLPurifier_AttrDef Object AttrDef for type
     */
    public function get($type)
    {
        // determine if there is any extra info tacked on
        if (strpos($type, '#') !== false) {
            list($type, $string) = explode('#', $type, 2);
        } else {
            $string = '';
        }

        if (!isset($this->info[$type])) {
            trigger_error('Cannot retrieve undefined attribute type ' . $type, E_USER_ERROR);
            return;
        }
        return $this->info[$type]->make($string);
    }

    /**
     * Sets a new implementation for a type
     * @param string $type String type name
     * @param HTMLPurifier_AttrDef $impl Object AttrDef for type
     */
    public function set($type, $impl)
    {
        $this->info[$type] = $impl;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIDefinition.php000064400000006546151213256010017132 0ustar00<?php

class HTMLPurifier_URIDefinition extends HTMLPurifier_Definition
{

    public $type = 'URI';
    protected $filters = array();
    protected $postFilters = array();
    protected $registeredFilters = array();

    /**
     * HTMLPurifier_URI object of the base specified at %URI.Base
     */
    public $base;

    /**
     * String host to consider "home" base, derived off of $base
     */
    public $host;

    /**
     * Name of default scheme based on %URI.DefaultScheme and %URI.Base
     */
    public $defaultScheme;

    public function __construct()
    {
        $this->registerFilter(new HTMLPurifier_URIFilter_DisableExternal());
        $this->registerFilter(new HTMLPurifier_URIFilter_DisableExternalResources());
        $this->registerFilter(new HTMLPurifier_URIFilter_DisableResources());
        $this->registerFilter(new HTMLPurifier_URIFilter_HostBlacklist());
        $this->registerFilter(new HTMLPurifier_URIFilter_SafeIframe());
        $this->registerFilter(new HTMLPurifier_URIFilter_MakeAbsolute());
        $this->registerFilter(new HTMLPurifier_URIFilter_Munge());
    }

    public function registerFilter($filter)
    {
        $this->registeredFilters[$filter->name] = $filter;
    }

    public function addFilter($filter, $config)
    {
        $r = $filter->prepare($config);
        if ($r === false) return; // null is ok, for backwards compat
        if ($filter->post) {
            $this->postFilters[$filter->name] = $filter;
        } else {
            $this->filters[$filter->name] = $filter;
        }
    }

    protected function doSetup($config)
    {
        $this->setupMemberVariables($config);
        $this->setupFilters($config);
    }

    protected function setupFilters($config)
    {
        foreach ($this->registeredFilters as $name => $filter) {
            if ($filter->always_load) {
                $this->addFilter($filter, $config);
            } else {
                $conf = $config->get('URI.' . $name);
                if ($conf !== false && $conf !== null) {
                    $this->addFilter($filter, $config);
                }
            }
        }
        unset($this->registeredFilters);
    }

    protected function setupMemberVariables($config)
    {
        $this->host = $config->get('URI.Host');
        $base_uri = $config->get('URI.Base');
        if (!is_null($base_uri)) {
            $parser = new HTMLPurifier_URIParser();
            $this->base = $parser->parse($base_uri);
            $this->defaultScheme = $this->base->scheme;
            if (is_null($this->host)) $this->host = $this->base->host;
        }
        if (is_null($this->defaultScheme)) $this->defaultScheme = $config->get('URI.DefaultScheme');
    }

    public function getDefaultScheme($config, $context)
    {
        return HTMLPurifier_URISchemeRegistry::instance()->getScheme($this->defaultScheme, $config, $context);
    }

    public function filter(&$uri, $config, $context)
    {
        foreach ($this->filters as $name => $f) {
            $result = $f->filter($uri, $config, $context);
            if (!$result) return false;
        }
        return true;
    }

    public function postFilter(&$uri, $config, $context)
    {
        foreach ($this->postFilters as $name => $f) {
            $result = $f->filter($uri, $config, $context);
            if (!$result) return false;
        }
        return true;
    }

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php000064400000003452151213256010017274 0ustar00<?php

class HTMLPurifier_Filter_YouTube extends HTMLPurifier_Filter
{

    /**
     * @type string
     */
    public $name = 'YouTube';

    /**
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public function preFilter($html, $config, $context)
    {
        $pre_regex = '#<object[^>]+>.+?' .
            '(?:http:)?//www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s';
        $pre_replace = '<span class="youtube-embed">\1</span>';
        return preg_replace($pre_regex, $pre_replace, $html);
    }

    /**
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public function postFilter($html, $config, $context)
    {
        $post_regex = '#<span class="youtube-embed">((?:v|cp)/[A-Za-z0-9\-_=]+)</span>#';
        return preg_replace_callback($post_regex, array($this, 'postFilterCallback'), $html);
    }

    /**
     * @param $url
     * @return string
     */
    protected function armorUrl($url)
    {
        return str_replace('--', '-&#45;', $url);
    }

    /**
     * @param array $matches
     * @return string
     */
    protected function postFilterCallback($matches)
    {
        $url = $this->armorUrl($matches[1]);
        return '<object width="425" height="350" type="application/x-shockwave-flash" ' .
        'data="//www.youtube.com/' . $url . '">' .
        '<param name="movie" value="//www.youtube.com/' . $url . '"></param>' .
        '<!--[if IE]>' .
        '<embed src="//www.youtube.com/' . $url . '"' .
        'type="application/x-shockwave-flash"' .
        'wmode="transparent" width="425" height="350" />' .
        '<![endif]-->' .
        '</object>';
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php000064400000032444151213256010021474 0ustar00<?php

// why is this a top level function? Because PHP 5.2.0 doesn't seem to
// understand how to interpret this filter if it's a static method.
// It's all really silly, but if we go this route it might be reasonable
// to coalesce all of these methods into one.
function htmlpurifier_filter_extractstyleblocks_muteerrorhandler()
{
}

/**
 * This filter extracts <style> blocks from input HTML, cleans them up
 * using CSSTidy, and then places them in $purifier->context->get('StyleBlocks')
 * so they can be used elsewhere in the document.
 *
 * @note
 *      See tests/HTMLPurifier/Filter/ExtractStyleBlocksTest.php for
 *      sample usage.
 *
 * @note
 *      This filter can also be used on stylesheets not included in the
 *      document--something purists would probably prefer. Just directly
 *      call HTMLPurifier_Filter_ExtractStyleBlocks->cleanCSS()
 */
class HTMLPurifier_Filter_ExtractStyleBlocks extends HTMLPurifier_Filter
{
    /**
     * @type string
     */
    public $name = 'ExtractStyleBlocks';

    /**
     * @type array
     */
    private $_styleMatches = array();

    /**
     * @type csstidy
     */
    private $_tidy;

    /**
     * @type HTMLPurifier_AttrDef_HTML_ID
     */
    private $_id_attrdef;

    /**
     * @type HTMLPurifier_AttrDef_CSS_Ident
     */
    private $_class_attrdef;

    /**
     * @type HTMLPurifier_AttrDef_Enum
     */
    private $_enum_attrdef;

    public function __construct()
    {
        $this->_tidy = new csstidy();
        $this->_tidy->set_cfg('lowercase_s', false);
        $this->_id_attrdef = new HTMLPurifier_AttrDef_HTML_ID(true);
        $this->_class_attrdef = new HTMLPurifier_AttrDef_CSS_Ident();
        $this->_enum_attrdef = new HTMLPurifier_AttrDef_Enum(
            array(
                'first-child',
                'link',
                'visited',
                'active',
                'hover',
                'focus'
            )
        );
    }

    /**
     * Save the contents of CSS blocks to style matches
     * @param array $matches preg_replace style $matches array
     */
    protected function styleCallback($matches)
    {
        $this->_styleMatches[] = $matches[1];
    }

    /**
     * Removes inline <style> tags from HTML, saves them for later use
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     * @todo Extend to indicate non-text/css style blocks
     */
    public function preFilter($html, $config, $context)
    {
        $tidy = $config->get('Filter.ExtractStyleBlocks.TidyImpl');
        if ($tidy !== null) {
            $this->_tidy = $tidy;
        }
        // NB: this must be NON-greedy because if we have
        // <style>foo</style>  <style>bar</style>
        // we must not grab foo</style>  <style>bar
        $html = preg_replace_callback('#<style(?:\s.*)?>(.*)<\/style>#isU', array($this, 'styleCallback'), $html);
        $style_blocks = $this->_styleMatches;
        $this->_styleMatches = array(); // reset
        $context->register('StyleBlocks', $style_blocks); // $context must not be reused
        if ($this->_tidy) {
            foreach ($style_blocks as &$style) {
                $style = $this->cleanCSS($style, $config, $context);
            }
        }
        return $html;
    }

    /**
     * Takes CSS (the stuff found in <style>) and cleans it.
     * @warning Requires CSSTidy <http://csstidy.sourceforge.net/>
     * @param string $css CSS styling to clean
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @throws HTMLPurifier_Exception
     * @return string Cleaned CSS
     */
    public function cleanCSS($css, $config, $context)
    {
        // prepare scope
        $scope = $config->get('Filter.ExtractStyleBlocks.Scope');
        if ($scope !== null) {
            $scopes = array_map('trim', explode(',', $scope));
        } else {
            $scopes = array();
        }
        // remove comments from CSS
        $css = trim($css);
        if (strncmp('<!--', $css, 4) === 0) {
            $css = substr($css, 4);
        }
        if (strlen($css) > 3 && substr($css, -3) == '-->') {
            $css = substr($css, 0, -3);
        }
        $css = trim($css);
        set_error_handler('htmlpurifier_filter_extractstyleblocks_muteerrorhandler');
        $this->_tidy->parse($css);
        restore_error_handler();
        $css_definition = $config->getDefinition('CSS');
        $html_definition = $config->getDefinition('HTML');
        $new_css = array();
        foreach ($this->_tidy->css as $k => $decls) {
            // $decls are all CSS declarations inside an @ selector
            $new_decls = array();
            foreach ($decls as $selector => $style) {
                $selector = trim($selector);
                if ($selector === '') {
                    continue;
                } // should not happen
                // Parse the selector
                // Here is the relevant part of the CSS grammar:
                //
                // ruleset
                //   : selector [ ',' S* selector ]* '{' ...
                // selector
                //   : simple_selector [ combinator selector | S+ [ combinator? selector ]? ]?
                // combinator
                //   : '+' S*
                //   : '>' S*
                // simple_selector
                //   : element_name [ HASH | class | attrib | pseudo ]*
                //   | [ HASH | class | attrib | pseudo ]+
                // element_name
                //   : IDENT | '*'
                //   ;
                // class
                //   : '.' IDENT
                //   ;
                // attrib
                //   : '[' S* IDENT S* [ [ '=' | INCLUDES | DASHMATCH ] S*
                //     [ IDENT | STRING ] S* ]? ']'
                //   ;
                // pseudo
                //   : ':' [ IDENT | FUNCTION S* [IDENT S*]? ')' ]
                //   ;
                //
                // For reference, here are the relevant tokens:
                //
                // HASH         #{name}
                // IDENT        {ident}
                // INCLUDES     ==
                // DASHMATCH    |=
                // STRING       {string}
                // FUNCTION     {ident}\(
                //
                // And the lexical scanner tokens
                //
                // name         {nmchar}+
                // nmchar       [_a-z0-9-]|{nonascii}|{escape}
                // nonascii     [\240-\377]
                // escape       {unicode}|\\[^\r\n\f0-9a-f]
                // unicode      \\{h}}{1,6}(\r\n|[ \t\r\n\f])?
                // ident        -?{nmstart}{nmchar*}
                // nmstart      [_a-z]|{nonascii}|{escape}
                // string       {string1}|{string2}
                // string1      \"([^\n\r\f\\"]|\\{nl}|{escape})*\"
                // string2      \'([^\n\r\f\\"]|\\{nl}|{escape})*\'
                //
                // We'll implement a subset (in order to reduce attack
                // surface); in particular:
                //
                //      - No Unicode support
                //      - No escapes support
                //      - No string support (by proxy no attrib support)
                //      - element_name is matched against allowed
                //        elements (some people might find this
                //        annoying...)
                //      - Pseudo-elements one of :first-child, :link,
                //        :visited, :active, :hover, :focus

                // handle ruleset
                $selectors = array_map('trim', explode(',', $selector));
                $new_selectors = array();
                foreach ($selectors as $sel) {
                    // split on +, > and spaces
                    $basic_selectors = preg_split('/\s*([+> ])\s*/', $sel, -1, PREG_SPLIT_DELIM_CAPTURE);
                    // even indices are chunks, odd indices are
                    // delimiters
                    $nsel = null;
                    $delim = null; // guaranteed to be non-null after
                    // two loop iterations
                    for ($i = 0, $c = count($basic_selectors); $i < $c; $i++) {
                        $x = $basic_selectors[$i];
                        if ($i % 2) {
                            // delimiter
                            if ($x === ' ') {
                                $delim = ' ';
                            } else {
                                $delim = ' ' . $x . ' ';
                            }
                        } else {
                            // simple selector
                            $components = preg_split('/([#.:])/', $x, -1, PREG_SPLIT_DELIM_CAPTURE);
                            $sdelim = null;
                            $nx = null;
                            for ($j = 0, $cc = count($components); $j < $cc; $j++) {
                                $y = $components[$j];
                                if ($j === 0) {
                                    if ($y === '*' || isset($html_definition->info[$y = strtolower($y)])) {
                                        $nx = $y;
                                    } else {
                                        // $nx stays null; this matters
                                        // if we don't manage to find
                                        // any valid selector content,
                                        // in which case we ignore the
                                        // outer $delim
                                    }
                                } elseif ($j % 2) {
                                    // set delimiter
                                    $sdelim = $y;
                                } else {
                                    $attrdef = null;
                                    if ($sdelim === '#') {
                                        $attrdef = $this->_id_attrdef;
                                    } elseif ($sdelim === '.') {
                                        $attrdef = $this->_class_attrdef;
                                    } elseif ($sdelim === ':') {
                                        $attrdef = $this->_enum_attrdef;
                                    } else {
                                        throw new HTMLPurifier_Exception('broken invariant sdelim and preg_split');
                                    }
                                    $r = $attrdef->validate($y, $config, $context);
                                    if ($r !== false) {
                                        if ($r !== true) {
                                            $y = $r;
                                        }
                                        if ($nx === null) {
                                            $nx = '';
                                        }
                                        $nx .= $sdelim . $y;
                                    }
                                }
                            }
                            if ($nx !== null) {
                                if ($nsel === null) {
                                    $nsel = $nx;
                                } else {
                                    $nsel .= $delim . $nx;
                                }
                            } else {
                                // delimiters to the left of invalid
                                // basic selector ignored
                            }
                        }
                    }
                    if ($nsel !== null) {
                        if (!empty($scopes)) {
                            foreach ($scopes as $s) {
                                $new_selectors[] = "$s $nsel";
                            }
                        } else {
                            $new_selectors[] = $nsel;
                        }
                    }
                }
                if (empty($new_selectors)) {
                    continue;
                }
                $selector = implode(', ', $new_selectors);
                foreach ($style as $name => $value) {
                    if (!isset($css_definition->info[$name])) {
                        unset($style[$name]);
                        continue;
                    }
                    $def = $css_definition->info[$name];
                    $ret = $def->validate($value, $config, $context);
                    if ($ret === false) {
                        unset($style[$name]);
                    } else {
                        $style[$name] = $ret;
                    }
                }
                $new_decls[$selector] = $style;
            }
            $new_css[$k] = $new_decls;
        }
        // remove stuff that shouldn't be used, could be reenabled
        // after security risks are analyzed
        $this->_tidy->css = $new_css;
        $this->_tidy->import = array();
        $this->_tidy->charset = null;
        $this->_tidy->namespace = null;
        $css = $this->_tidy->print->plain();
        // we are going to escape any special characters <>& to ensure
        // that no funny business occurs (i.e. </style> in a font-family prop).
        if ($config->get('Filter.ExtractStyleBlocks.Escaping')) {
            $css = str_replace(
                array('<', '>', '&'),
                array('\3C ', '\3E ', '\26 '),
                $css
            );
        }
        return $css;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/nntp.php000064400000001164151213256010017214 0ustar00<?php

/**
 * Validates nntp (Network News Transfer Protocol) as defined by generic RFC 1738
 */
class HTMLPurifier_URIScheme_nntp extends HTMLPurifier_URIScheme
{
    /**
     * @type int
     */
    public $default_port = 119;

    /**
     * @type bool
     */
    public $browsable = false;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        $uri->userinfo = null;
        $uri->query = null;
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/ftp.php000064400000003156151213256010017031 0ustar00<?php

/**
 * Validates ftp (File Transfer Protocol) URIs as defined by generic RFC 1738.
 */
class HTMLPurifier_URIScheme_ftp extends HTMLPurifier_URIScheme
{
    /**
     * @type int
     */
    public $default_port = 21;

    /**
     * @type bool
     */
    public $browsable = true; // usually

    /**
     * @type bool
     */
    public $hierarchical = true;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        $uri->query = null;

        // typecode check
        $semicolon_pos = strrpos($uri->path, ';'); // reverse
        if ($semicolon_pos !== false) {
            $type = substr($uri->path, $semicolon_pos + 1); // no semicolon
            $uri->path = substr($uri->path, 0, $semicolon_pos);
            $type_ret = '';
            if (strpos($type, '=') !== false) {
                // figure out whether or not the declaration is correct
                list($key, $typecode) = explode('=', $type, 2);
                if ($key !== 'type') {
                    // invalid key, tack it back on encoded
                    $uri->path .= '%3B' . $type;
                } elseif ($typecode === 'a' || $typecode === 'i' || $typecode === 'd') {
                    $type_ret = ";type=$typecode";
                }
            } else {
                $uri->path .= '%3B' . $type;
            }
            $uri->path = str_replace(';', '%3B', $uri->path);
            $uri->path .= $type_ret;
        }
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/https.php000064400000000452151213256010017376 0ustar00<?php

/**
 * Validates https (Secure HTTP) according to http scheme.
 */
class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http
{
    /**
     * @type int
     */
    public $default_port = 443;
    /**
     * @type bool
     */
    public $secure = true;
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/http.php000064400000001217151213256010017213 0ustar00<?php

/**
 * Validates http (HyperText Transfer Protocol) as defined by RFC 2616
 */
class HTMLPurifier_URIScheme_http extends HTMLPurifier_URIScheme
{
    /**
     * @type int
     */
    public $default_port = 80;

    /**
     * @type bool
     */
    public $browsable = true;

    /**
     * @type bool
     */
    public $hierarchical = true;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        $uri->userinfo = null;
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/mailto.php000064400000001575151213256010017530 0ustar00<?php

// VERY RELAXED! Shouldn't cause problems, not even Firefox checks if the
// email is valid, but be careful!

/**
 * Validates mailto (for E-mail) according to RFC 2368
 * @todo Validate the email address
 * @todo Filter allowed query parameters
 */

class HTMLPurifier_URIScheme_mailto extends HTMLPurifier_URIScheme
{
    /**
     * @type bool
     */
    public $browsable = false;

    /**
     * @type bool
     */
    public $may_omit_host = true;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        $uri->userinfo = null;
        $uri->host     = null;
        $uri->port     = null;
        // we need to validate path against RFC 2368's addr-spec
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/data.php000064400000010416151213256010017146 0ustar00<?php

/**
 * Implements data: URI for base64 encoded images supported by GD.
 */
class HTMLPurifier_URIScheme_data extends HTMLPurifier_URIScheme
{
    /**
     * @type bool
     */
    public $browsable = true;

    /**
     * @type array
     */
    public $allowed_types = array(
        // you better write validation code for other types if you
        // decide to allow them
        'image/jpeg' => true,
        'image/gif' => true,
        'image/png' => true,
    );
    // this is actually irrelevant since we only write out the path
    // component
    /**
     * @type bool
     */
    public $may_omit_host = true;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        $result = explode(',', $uri->path, 2);
        $is_base64 = false;
        $charset = null;
        $content_type = null;
        if (count($result) == 2) {
            list($metadata, $data) = $result;
            // do some legwork on the metadata
            $metas = explode(';', $metadata);
            while (!empty($metas)) {
                $cur = array_shift($metas);
                if ($cur == 'base64') {
                    $is_base64 = true;
                    break;
                }
                if (substr($cur, 0, 8) == 'charset=') {
                    // doesn't match if there are arbitrary spaces, but
                    // whatever dude
                    if ($charset !== null) {
                        continue;
                    } // garbage
                    $charset = substr($cur, 8); // not used
                } else {
                    if ($content_type !== null) {
                        continue;
                    } // garbage
                    $content_type = $cur;
                }
            }
        } else {
            $data = $result[0];
        }
        if ($content_type !== null && empty($this->allowed_types[$content_type])) {
            return false;
        }
        if ($charset !== null) {
            // error; we don't allow plaintext stuff
            $charset = null;
        }
        $data = rawurldecode($data);
        if ($is_base64) {
            $raw_data = base64_decode($data);
        } else {
            $raw_data = $data;
        }
        if ( strlen($raw_data) < 12 ) {
            // error; exif_imagetype throws exception with small files,
            // and this likely indicates a corrupt URI/failed parse anyway
            return false;
        }
        // XXX probably want to refactor this into a general mechanism
        // for filtering arbitrary content types
        if (function_exists('sys_get_temp_dir')) {
            $file = tempnam(sys_get_temp_dir(), "");
        } else {
            $file = tempnam("/tmp", "");
        }
        file_put_contents($file, $raw_data);
        if (function_exists('exif_imagetype')) {
            $image_code = exif_imagetype($file);
            unlink($file);
        } elseif (function_exists('getimagesize')) {
            set_error_handler(array($this, 'muteErrorHandler'));
            $info = getimagesize($file);
            restore_error_handler();
            unlink($file);
            if ($info == false) {
                return false;
            }
            $image_code = $info[2];
        } else {
            trigger_error("could not find exif_imagetype or getimagesize functions", E_USER_ERROR);
        }
        $real_content_type = image_type_to_mime_type($image_code);
        if ($real_content_type != $content_type) {
            // we're nice guys; if the content type is something else we
            // support, change it over
            if (empty($this->allowed_types[$real_content_type])) {
                return false;
            }
            $content_type = $real_content_type;
        }
        // ok, it's kosher, rewrite what we need
        $uri->userinfo = null;
        $uri->host = null;
        $uri->port = null;
        $uri->fragment = null;
        $uri->query = null;
        $uri->path = "$content_type;base64," . base64_encode($raw_data);
        return true;
    }

    /**
     * @param int $errno
     * @param string $errstr
     */
    public function muteErrorHandler($errno, $errstr)
    {
    }
}
lib/htmlpurifier/library/HTMLPurifier/URIScheme/file.php000064400000002374151213256010017160 0ustar00<?php

/**
 * Validates file as defined by RFC 1630 and RFC 1738.
 */
class HTMLPurifier_URIScheme_file extends HTMLPurifier_URIScheme
{
    /**
     * Generally file:// URLs are not accessible from most
     * machines, so placing them as an img src is incorrect.
     * @type bool
     */
    public $browsable = false;

    /**
     * Basically the *only* URI scheme for which this is true, since
     * accessing files on the local machine is very common.  In fact,
     * browsers on some operating systems don't understand the
     * authority, though I hear it is used on Windows to refer to
     * network shares.
     * @type bool
     */
    public $may_omit_host = true;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        // Authentication method is not supported
        $uri->userinfo = null;
        // file:// makes no provisions for accessing the resource
        $uri->port = null;
        // While it seems to work on Firefox, the querystring has
        // no possible effect and is thus stripped.
        $uri->query = null;
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/news.php000064400000001276151213256010017215 0ustar00<?php

/**
 * Validates news (Usenet) as defined by generic RFC 1738
 */
class HTMLPurifier_URIScheme_news extends HTMLPurifier_URIScheme
{
    /**
     * @type bool
     */
    public $browsable = false;

    /**
     * @type bool
     */
    public $may_omit_host = true;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        $uri->userinfo = null;
        $uri->host = null;
        $uri->port = null;
        $uri->query = null;
        // typecode check needed on path
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URIScheme/tel.php000064400000002230151213256010017014 0ustar00<?php

/**
 * Validates tel (for phone numbers).
 *
 * The relevant specifications for this protocol are RFC 3966 and RFC 5341,
 * but this class takes a much simpler approach: we normalize phone
 * numbers so that they only include (possibly) a leading plus,
 * and then any number of digits and x'es.
 */

class HTMLPurifier_URIScheme_tel extends HTMLPurifier_URIScheme
{
    /**
     * @type bool
     */
    public $browsable = false;

    /**
     * @type bool
     */
    public $may_omit_host = true;

    /**
     * @param HTMLPurifier_URI $uri
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function doValidate(&$uri, $config, $context)
    {
        $uri->userinfo = null;
        $uri->host     = null;
        $uri->port     = null;

        // Delete all non-numeric characters, non-x characters
        // from phone number, EXCEPT for a leading plus sign.
        $uri->path = preg_replace('/(?!^\+)[^\dx]/', '',
                     // Normalize e(x)tension to lower-case
                     str_replace('X', 'x', $uri->path));

        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php000064400000030257151213256010016625 0ustar00<?php

/**
 * Parser that uses PHP 5's DOM extension (part of the core).
 *
 * In PHP 5, the DOM XML extension was revamped into DOM and added to the core.
 * It gives us a forgiving HTML parser, which we use to transform the HTML
 * into a DOM, and then into the tokens.  It is blazingly fast (for large
 * documents, it performs twenty times faster than
 * HTMLPurifier_Lexer_DirectLex,and is the default choice for PHP 5.
 *
 * @note Any empty elements will have empty tokens associated with them, even if
 * this is prohibited by the spec. This is cannot be fixed until the spec
 * comes into play.
 *
 * @note PHP's DOM extension does not actually parse any entities, we use
 *       our own function to do that.
 *
 * @warning DOM tends to drop whitespace, which may wreak havoc on indenting.
 *          If this is a huge problem, due to the fact that HTML is hand
 *          edited and you are unable to get a parser cache that caches the
 *          the output of HTML Purifier while keeping the original HTML lying
 *          around, you may want to run Tidy on the resulting output or use
 *          HTMLPurifier_DirectLex
 */

class HTMLPurifier_Lexer_DOMLex extends HTMLPurifier_Lexer
{

    /**
     * @type HTMLPurifier_TokenFactory
     */
    private $factory;

    public function __construct()
    {
        // setup the factory
        parent::__construct();
        $this->factory = new HTMLPurifier_TokenFactory();
    }

    /**
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token[]
     */
    public function tokenizeHTML($html, $config, $context)
    {
        $html = $this->normalize($html, $config, $context);

        // attempt to armor stray angled brackets that cannot possibly
        // form tags and thus are probably being used as emoticons
        if ($config->get('Core.AggressivelyFixLt')) {
            $char = '[^a-z!\/]';
            $comment = "/<!--(.*?)(-->|\z)/is";
            $html = preg_replace_callback($comment, array($this, 'callbackArmorCommentEntities'), $html);
            do {
                $old = $html;
                $html = preg_replace("/<($char)/i", '&lt;\\1', $html);
            } while ($html !== $old);
            $html = preg_replace_callback($comment, array($this, 'callbackUndoCommentSubst'), $html); // fix comments
        }

        // preprocess html, essential for UTF-8
        $html = $this->wrapHTML($html, $config, $context);

        $doc = new DOMDocument();
        $doc->encoding = 'UTF-8'; // theoretically, the above has this covered

        $options = 0;
        if ($config->get('Core.AllowParseManyTags') && defined('LIBXML_PARSEHUGE')) {
            $options |= LIBXML_PARSEHUGE;
        }

        set_error_handler(array($this, 'muteErrorHandler'));
        // loadHTML() fails on PHP 5.3 when second parameter is given
        if ($options) {
            $doc->loadHTML($html, $options);
        } else {
            $doc->loadHTML($html);
        }
        restore_error_handler();

        $body = $doc->getElementsByTagName('html')->item(0)-> // <html>
                      getElementsByTagName('body')->item(0);  // <body>

        $div = $body->getElementsByTagName('div')->item(0); // <div>
        $tokens = array();
        $this->tokenizeDOM($div, $tokens, $config);
        // If the div has a sibling, that means we tripped across
        // a premature </div> tag.  So remove the div we parsed,
        // and then tokenize the rest of body.  We can't tokenize
        // the sibling directly as we'll lose the tags in that case.
        if ($div->nextSibling) {
            $body->removeChild($div);
            $this->tokenizeDOM($body, $tokens, $config);
        }
        return $tokens;
    }

    /**
     * Iterative function that tokenizes a node, putting it into an accumulator.
     * To iterate is human, to recurse divine - L. Peter Deutsch
     * @param DOMNode $node DOMNode to be tokenized.
     * @param HTMLPurifier_Token[] $tokens   Array-list of already tokenized tokens.
     * @return HTMLPurifier_Token of node appended to previously passed tokens.
     */
    protected function tokenizeDOM($node, &$tokens, $config)
    {
        $level = 0;
        $nodes = array($level => new HTMLPurifier_Queue(array($node)));
        $closingNodes = array();
        do {
            while (!$nodes[$level]->isEmpty()) {
                $node = $nodes[$level]->shift(); // FIFO
                $collect = $level > 0 ? true : false;
                $needEndingTag = $this->createStartNode($node, $tokens, $collect, $config);
                if ($needEndingTag) {
                    $closingNodes[$level][] = $node;
                }
                if ($node->childNodes && $node->childNodes->length) {
                    $level++;
                    $nodes[$level] = new HTMLPurifier_Queue();
                    foreach ($node->childNodes as $childNode) {
                        $nodes[$level]->push($childNode);
                    }
                }
            }
            $level--;
            if ($level && isset($closingNodes[$level])) {
                while ($node = array_pop($closingNodes[$level])) {
                    $this->createEndNode($node, $tokens);
                }
            }
        } while ($level > 0);
    }

    /**
     * Portably retrieve the tag name of a node; deals with older versions
     * of libxml like 2.7.6
     * @param DOMNode $node
     */
    protected function getTagName($node)
    {
        if (isset($node->tagName)) {
            return $node->tagName;
        } else if (isset($node->nodeName)) {
            return $node->nodeName;
        } else if (isset($node->localName)) {
            return $node->localName;
        }
        return null;
    }

    /**
     * Portably retrieve the data of a node; deals with older versions
     * of libxml like 2.7.6
     * @param DOMNode $node
     */
    protected function getData($node)
    {
        if (isset($node->data)) {
            return $node->data;
        } else if (isset($node->nodeValue)) {
            return $node->nodeValue;
        } else if (isset($node->textContent)) {
            return $node->textContent;
        }
        return null;
    }


    /**
     * @param DOMNode $node DOMNode to be tokenized.
     * @param HTMLPurifier_Token[] $tokens   Array-list of already tokenized tokens.
     * @param bool $collect  Says whether or start and close are collected, set to
     *                    false at first recursion because it's the implicit DIV
     *                    tag you're dealing with.
     * @return bool if the token needs an endtoken
     * @todo data and tagName properties don't seem to exist in DOMNode?
     */
    protected function createStartNode($node, &$tokens, $collect, $config)
    {
        // intercept non element nodes. WE MUST catch all of them,
        // but we're not getting the character reference nodes because
        // those should have been preprocessed
        if ($node->nodeType === XML_TEXT_NODE) {
            $data = $this->getData($node); // Handle variable data property
            if ($data !== null) {
              $tokens[] = $this->factory->createText($data);
            }
            return false;
        } elseif ($node->nodeType === XML_CDATA_SECTION_NODE) {
            // undo libxml's special treatment of <script> and <style> tags
            $last = end($tokens);
            $data = $node->data;
            // (note $node->tagname is already normalized)
            if ($last instanceof HTMLPurifier_Token_Start && ($last->name == 'script' || $last->name == 'style')) {
                $new_data = trim($data);
                if (substr($new_data, 0, 4) === '<!--') {
                    $data = substr($new_data, 4);
                    if (substr($data, -3) === '-->') {
                        $data = substr($data, 0, -3);
                    } else {
                        // Highly suspicious! Not sure what to do...
                    }
                }
            }
            $tokens[] = $this->factory->createText($this->parseText($data, $config));
            return false;
        } elseif ($node->nodeType === XML_COMMENT_NODE) {
            // this is code is only invoked for comments in script/style in versions
            // of libxml pre-2.6.28 (regular comments, of course, are still
            // handled regularly)
            $tokens[] = $this->factory->createComment($node->data);
            return false;
        } elseif ($node->nodeType !== XML_ELEMENT_NODE) {
            // not-well tested: there may be other nodes we have to grab
            return false;
        }
        $attr = $node->hasAttributes() ? $this->transformAttrToAssoc($node->attributes) : array();
        $tag_name = $this->getTagName($node); // Handle variable tagName property
        if (empty($tag_name)) {
            return (bool) $node->childNodes->length;
        }
        // We still have to make sure that the element actually IS empty
        if (!$node->childNodes->length) {
            if ($collect) {
                $tokens[] = $this->factory->createEmpty($tag_name, $attr);
            }
            return false;
        } else {
            if ($collect) {
                $tokens[] = $this->factory->createStart($tag_name, $attr);
            }
            return true;
        }
    }

    /**
     * @param DOMNode $node
     * @param HTMLPurifier_Token[] $tokens
     */
    protected function createEndNode($node, &$tokens)
    {
        $tag_name = $this->getTagName($node); // Handle variable tagName property
        $tokens[] = $this->factory->createEnd($tag_name);
    }

    /**
     * Converts a DOMNamedNodeMap of DOMAttr objects into an assoc array.
     *
     * @param DOMNamedNodeMap $node_map DOMNamedNodeMap of DOMAttr objects.
     * @return array Associative array of attributes.
     */
    protected function transformAttrToAssoc($node_map)
    {
        // NamedNodeMap is documented very well, so we're using undocumented
        // features, namely, the fact that it implements Iterator and
        // has a ->length attribute
        if ($node_map->length === 0) {
            return array();
        }
        $array = array();
        foreach ($node_map as $attr) {
            $array[$attr->name] = $attr->value;
        }
        return $array;
    }

    /**
     * An error handler that mutes all errors
     * @param int $errno
     * @param string $errstr
     */
    public function muteErrorHandler($errno, $errstr)
    {
    }

    /**
     * Callback function for undoing escaping of stray angled brackets
     * in comments
     * @param array $matches
     * @return string
     */
    public function callbackUndoCommentSubst($matches)
    {
        return '<!--' . strtr($matches[1], array('&amp;' => '&', '&lt;' => '<')) . $matches[2];
    }

    /**
     * Callback function that entity-izes ampersands in comments so that
     * callbackUndoCommentSubst doesn't clobber them
     * @param array $matches
     * @return string
     */
    public function callbackArmorCommentEntities($matches)
    {
        return '<!--' . str_replace('&', '&amp;', $matches[1]) . $matches[2];
    }

    /**
     * Wraps an HTML fragment in the necessary HTML
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    protected function wrapHTML($html, $config, $context, $use_div = true)
    {
        $def = $config->getDefinition('HTML');
        $ret = '';

        if (!empty($def->doctype->dtdPublic) || !empty($def->doctype->dtdSystem)) {
            $ret .= '<!DOCTYPE html ';
            if (!empty($def->doctype->dtdPublic)) {
                $ret .= 'PUBLIC "' . $def->doctype->dtdPublic . '" ';
            }
            if (!empty($def->doctype->dtdSystem)) {
                $ret .= '"' . $def->doctype->dtdSystem . '" ';
            }
            $ret .= '>';
        }

        $ret .= '<html><head>';
        $ret .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
        // No protection if $html contains a stray </div>!
        $ret .= '</head><body>';
        if ($use_div) $ret .= '<div>';
        $ret .= $html;
        if ($use_div) $ret .= '</div>';
        $ret .= '</body></html>';
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Lexer/PH5P.php000064400000544465151213256010016264 0ustar00<?php

/**
 * Experimental HTML5-based parser using Jeroen van der Meer's PH5P library.
 * Occupies space in the HTML5 pseudo-namespace, which may cause conflicts.
 *
 * @note
 *    Recent changes to PHP's DOM extension have resulted in some fatal
 *    error conditions with the original version of PH5P. Pending changes,
 *    this lexer will punt to DirectLex if DOM throws an exception.
 */

class HTMLPurifier_Lexer_PH5P extends HTMLPurifier_Lexer_DOMLex
{
    /**
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token[]
     */
    public function tokenizeHTML($html, $config, $context)
    {
        $new_html = $this->normalize($html, $config, $context);
        $new_html = $this->wrapHTML($new_html, $config, $context, false /* no div */);
        try {
            $parser = new HTML5($new_html);
            $doc = $parser->save();
        } catch (DOMException $e) {
            // Uh oh, it failed. Punt to DirectLex.
            $lexer = new HTMLPurifier_Lexer_DirectLex();
            $context->register('PH5PError', $e); // save the error, so we can detect it
            return $lexer->tokenizeHTML($html, $config, $context); // use original HTML
        }
        $tokens = array();
        $this->tokenizeDOM(
            $doc->getElementsByTagName('html')->item(0)-> // <html>
                  getElementsByTagName('body')->item(0) //   <body>
            ,
            $tokens, $config
        );
        return $tokens;
    }
}

/*

Copyright 2007 Jeroen van der Meer <http://jero.net/>

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

*/

class HTML5
{
    private $data;
    private $char;
    private $EOF;
    private $state;
    private $tree;
    private $token;
    private $content_model;
    private $escape = false;
    private $entities = array(
        'AElig;',
        'AElig',
        'AMP;',
        'AMP',
        'Aacute;',
        'Aacute',
        'Acirc;',
        'Acirc',
        'Agrave;',
        'Agrave',
        'Alpha;',
        'Aring;',
        'Aring',
        'Atilde;',
        'Atilde',
        'Auml;',
        'Auml',
        'Beta;',
        'COPY;',
        'COPY',
        'Ccedil;',
        'Ccedil',
        'Chi;',
        'Dagger;',
        'Delta;',
        'ETH;',
        'ETH',
        'Eacute;',
        'Eacute',
        'Ecirc;',
        'Ecirc',
        'Egrave;',
        'Egrave',
        'Epsilon;',
        'Eta;',
        'Euml;',
        'Euml',
        'GT;',
        'GT',
        'Gamma;',
        'Iacute;',
        'Iacute',
        'Icirc;',
        'Icirc',
        'Igrave;',
        'Igrave',
        'Iota;',
        'Iuml;',
        'Iuml',
        'Kappa;',
        'LT;',
        'LT',
        'Lambda;',
        'Mu;',
        'Ntilde;',
        'Ntilde',
        'Nu;',
        'OElig;',
        'Oacute;',
        'Oacute',
        'Ocirc;',
        'Ocirc',
        'Ograve;',
        'Ograve',
        'Omega;',
        'Omicron;',
        'Oslash;',
        'Oslash',
        'Otilde;',
        'Otilde',
        'Ouml;',
        'Ouml',
        'Phi;',
        'Pi;',
        'Prime;',
        'Psi;',
        'QUOT;',
        'QUOT',
        'REG;',
        'REG',
        'Rho;',
        'Scaron;',
        'Sigma;',
        'THORN;',
        'THORN',
        'TRADE;',
        'Tau;',
        'Theta;',
        'Uacute;',
        'Uacute',
        'Ucirc;',
        'Ucirc',
        'Ugrave;',
        'Ugrave',
        'Upsilon;',
        'Uuml;',
        'Uuml',
        'Xi;',
        'Yacute;',
        'Yacute',
        'Yuml;',
        'Zeta;',
        'aacute;',
        'aacute',
        'acirc;',
        'acirc',
        'acute;',
        'acute',
        'aelig;',
        'aelig',
        'agrave;',
        'agrave',
        'alefsym;',
        'alpha;',
        'amp;',
        'amp',
        'and;',
        'ang;',
        'apos;',
        'aring;',
        'aring',
        'asymp;',
        'atilde;',
        'atilde',
        'auml;',
        'auml',
        'bdquo;',
        'beta;',
        'brvbar;',
        'brvbar',
        'bull;',
        'cap;',
        'ccedil;',
        'ccedil',
        'cedil;',
        'cedil',
        'cent;',
        'cent',
        'chi;',
        'circ;',
        'clubs;',
        'cong;',
        'copy;',
        'copy',
        'crarr;',
        'cup;',
        'curren;',
        'curren',
        'dArr;',
        'dagger;',
        'darr;',
        'deg;',
        'deg',
        'delta;',
        'diams;',
        'divide;',
        'divide',
        'eacute;',
        'eacute',
        'ecirc;',
        'ecirc',
        'egrave;',
        'egrave',
        'empty;',
        'emsp;',
        'ensp;',
        'epsilon;',
        'equiv;',
        'eta;',
        'eth;',
        'eth',
        'euml;',
        'euml',
        'euro;',
        'exist;',
        'fnof;',
        'forall;',
        'frac12;',
        'frac12',
        'frac14;',
        'frac14',
        'frac34;',
        'frac34',
        'frasl;',
        'gamma;',
        'ge;',
        'gt;',
        'gt',
        'hArr;',
        'harr;',
        'hearts;',
        'hellip;',
        'iacute;',
        'iacute',
        'icirc;',
        'icirc',
        'iexcl;',
        'iexcl',
        'igrave;',
        'igrave',
        'image;',
        'infin;',
        'int;',
        'iota;',
        'iquest;',
        'iquest',
        'isin;',
        'iuml;',
        'iuml',
        'kappa;',
        'lArr;',
        'lambda;',
        'lang;',
        'laquo;',
        'laquo',
        'larr;',
        'lceil;',
        'ldquo;',
        'le;',
        'lfloor;',
        'lowast;',
        'loz;',
        'lrm;',
        'lsaquo;',
        'lsquo;',
        'lt;',
        'lt',
        'macr;',
        'macr',
        'mdash;',
        'micro;',
        'micro',
        'middot;',
        'middot',
        'minus;',
        'mu;',
        'nabla;',
        'nbsp;',
        'nbsp',
        'ndash;',
        'ne;',
        'ni;',
        'not;',
        'not',
        'notin;',
        'nsub;',
        'ntilde;',
        'ntilde',
        'nu;',
        'oacute;',
        'oacute',
        'ocirc;',
        'ocirc',
        'oelig;',
        'ograve;',
        'ograve',
        'oline;',
        'omega;',
        'omicron;',
        'oplus;',
        'or;',
        'ordf;',
        'ordf',
        'ordm;',
        'ordm',
        'oslash;',
        'oslash',
        'otilde;',
        'otilde',
        'otimes;',
        'ouml;',
        'ouml',
        'para;',
        'para',
        'part;',
        'permil;',
        'perp;',
        'phi;',
        'pi;',
        'piv;',
        'plusmn;',
        'plusmn',
        'pound;',
        'pound',
        'prime;',
        'prod;',
        'prop;',
        'psi;',
        'quot;',
        'quot',
        'rArr;',
        'radic;',
        'rang;',
        'raquo;',
        'raquo',
        'rarr;',
        'rceil;',
        'rdquo;',
        'real;',
        'reg;',
        'reg',
        'rfloor;',
        'rho;',
        'rlm;',
        'rsaquo;',
        'rsquo;',
        'sbquo;',
        'scaron;',
        'sdot;',
        'sect;',
        'sect',
        'shy;',
        'shy',
        'sigma;',
        'sigmaf;',
        'sim;',
        'spades;',
        'sub;',
        'sube;',
        'sum;',
        'sup1;',
        'sup1',
        'sup2;',
        'sup2',
        'sup3;',
        'sup3',
        'sup;',
        'supe;',
        'szlig;',
        'szlig',
        'tau;',
        'there4;',
        'theta;',
        'thetasym;',
        'thinsp;',
        'thorn;',
        'thorn',
        'tilde;',
        'times;',
        'times',
        'trade;',
        'uArr;',
        'uacute;',
        'uacute',
        'uarr;',
        'ucirc;',
        'ucirc',
        'ugrave;',
        'ugrave',
        'uml;',
        'uml',
        'upsih;',
        'upsilon;',
        'uuml;',
        'uuml',
        'weierp;',
        'xi;',
        'yacute;',
        'yacute',
        'yen;',
        'yen',
        'yuml;',
        'yuml',
        'zeta;',
        'zwj;',
        'zwnj;'
    );

    const PCDATA = 0;
    const RCDATA = 1;
    const CDATA = 2;
    const PLAINTEXT = 3;

    const DOCTYPE = 0;
    const STARTTAG = 1;
    const ENDTAG = 2;
    const COMMENT = 3;
    const CHARACTR = 4;
    const EOF = 5;

    public function __construct($data)
    {
        $this->data = $data;
        $this->char = -1;
        $this->EOF = strlen($data);
        $this->tree = new HTML5TreeConstructer;
        $this->content_model = self::PCDATA;

        $this->state = 'data';

        while ($this->state !== null) {
            $this->{$this->state . 'State'}();
        }
    }

    public function save()
    {
        return $this->tree->save();
    }

    private function char()
    {
        return ($this->char < $this->EOF)
            ? $this->data[$this->char]
            : false;
    }

    private function character($s, $l = 0)
    {
        if ($s + $l < $this->EOF) {
            if ($l === 0) {
                return $this->data[$s];
            } else {
                return substr($this->data, $s, $l);
            }
        }
    }

    private function characters($char_class, $start)
    {
        return preg_replace('#^([' . $char_class . ']+).*#s', '\\1', substr($this->data, $start));
    }

    private function dataState()
    {
        // Consume the next input character
        $this->char++;
        $char = $this->char();

        if ($char === '&' && ($this->content_model === self::PCDATA || $this->content_model === self::RCDATA)) {
            /* U+0026 AMPERSAND (&)
            When the content model flag is set to one of the PCDATA or RCDATA
            states: switch to the entity data state. Otherwise: treat it as per
            the "anything else"    entry below. */
            $this->state = 'entityData';

        } elseif ($char === '-') {
            /* If the content model flag is set to either the RCDATA state or
            the CDATA state, and the escape flag is false, and there are at
            least three characters before this one in the input stream, and the
            last four characters in the input stream, including this one, are
            U+003C LESS-THAN SIGN, U+0021 EXCLAMATION MARK, U+002D HYPHEN-MINUS,
            and U+002D HYPHEN-MINUS ("<!--"), then set the escape flag to true. */
            if (($this->content_model === self::RCDATA || $this->content_model ===
                    self::CDATA) && $this->escape === false &&
                $this->char >= 3 && $this->character($this->char - 4, 4) === '<!--'
            ) {
                $this->escape = true;
            }

            /* In any case, emit the input character as a character token. Stay
            in the data state. */
            $this->emitToken(
                array(
                    'type' => self::CHARACTR,
                    'data' => $char
                )
            );

            /* U+003C LESS-THAN SIGN (<) */
        } elseif ($char === '<' && ($this->content_model === self::PCDATA ||
                (($this->content_model === self::RCDATA ||
                        $this->content_model === self::CDATA) && $this->escape === false))
        ) {
            /* When the content model flag is set to the PCDATA state: switch
            to the tag open state.

            When the content model flag is set to either the RCDATA state or
            the CDATA state and the escape flag is false: switch to the tag
            open state.

            Otherwise: treat it as per the "anything else" entry below. */
            $this->state = 'tagOpen';

            /* U+003E GREATER-THAN SIGN (>) */
        } elseif ($char === '>') {
            /* If the content model flag is set to either the RCDATA state or
            the CDATA state, and the escape flag is true, and the last three
            characters in the input stream including this one are U+002D
            HYPHEN-MINUS, U+002D HYPHEN-MINUS, U+003E GREATER-THAN SIGN ("-->"),
            set the escape flag to false. */
            if (($this->content_model === self::RCDATA ||
                    $this->content_model === self::CDATA) && $this->escape === true &&
                $this->character($this->char, 3) === '-->'
            ) {
                $this->escape = false;
            }

            /* In any case, emit the input character as a character token.
            Stay in the data state. */
            $this->emitToken(
                array(
                    'type' => self::CHARACTR,
                    'data' => $char
                )
            );

        } elseif ($this->char === $this->EOF) {
            /* EOF
            Emit an end-of-file token. */
            $this->EOF();

        } elseif ($this->content_model === self::PLAINTEXT) {
            /* When the content model flag is set to the PLAINTEXT state
            THIS DIFFERS GREATLY FROM THE SPEC: Get the remaining characters of
            the text and emit it as a character token. */
            $this->emitToken(
                array(
                    'type' => self::CHARACTR,
                    'data' => substr($this->data, $this->char)
                )
            );

            $this->EOF();

        } else {
            /* Anything else
            THIS DIFFERS GREATLY FROM THE SPEC: Get as many character that
            otherwise would also be treated as a character token and emit it
            as a single character token. Stay in the data state. */
            $len = strcspn($this->data, '<&', $this->char);
            $char = substr($this->data, $this->char, $len);
            $this->char += $len - 1;

            $this->emitToken(
                array(
                    'type' => self::CHARACTR,
                    'data' => $char
                )
            );

            $this->state = 'data';
        }
    }

    private function entityDataState()
    {
        // Attempt to consume an entity.
        $entity = $this->entity();

        // If nothing is returned, emit a U+0026 AMPERSAND character token.
        // Otherwise, emit the character token that was returned.
        $char = (!$entity) ? '&' : $entity;
        $this->emitToken(
            array(
                'type' => self::CHARACTR,
                'data' => $char
            )
        );

        // Finally, switch to the data state.
        $this->state = 'data';
    }

    private function tagOpenState()
    {
        switch ($this->content_model) {
            case self::RCDATA:
            case self::CDATA:
                /* If the next input character is a U+002F SOLIDUS (/) character,
                consume it and switch to the close tag open state. If the next
                input character is not a U+002F SOLIDUS (/) character, emit a
                U+003C LESS-THAN SIGN character token and switch to the data
                state to process the next input character. */
                if ($this->character($this->char + 1) === '/') {
                    $this->char++;
                    $this->state = 'closeTagOpen';

                } else {
                    $this->emitToken(
                        array(
                            'type' => self::CHARACTR,
                            'data' => '<'
                        )
                    );

                    $this->state = 'data';
                }
                break;

            case self::PCDATA:
                // If the content model flag is set to the PCDATA state
                // Consume the next input character:
                $this->char++;
                $char = $this->char();

                if ($char === '!') {
                    /* U+0021 EXCLAMATION MARK (!)
                    Switch to the markup declaration open state. */
                    $this->state = 'markupDeclarationOpen';

                } elseif ($char === '/') {
                    /* U+002F SOLIDUS (/)
                    Switch to the close tag open state. */
                    $this->state = 'closeTagOpen';

                } elseif (preg_match('/^[A-Za-z]$/', $char)) {
                    /* U+0041 LATIN LETTER A through to U+005A LATIN LETTER Z
                    Create a new start tag token, set its tag name to the lowercase
                    version of the input character (add 0x0020 to the character's code
                    point), then switch to the tag name state. (Don't emit the token
                    yet; further details will be filled in before it is emitted.) */
                    $this->token = array(
                        'name' => strtolower($char),
                        'type' => self::STARTTAG,
                        'attr' => array()
                    );

                    $this->state = 'tagName';

                } elseif ($char === '>') {
                    /* U+003E GREATER-THAN SIGN (>)
                    Parse error. Emit a U+003C LESS-THAN SIGN character token and a
                    U+003E GREATER-THAN SIGN character token. Switch to the data state. */
                    $this->emitToken(
                        array(
                            'type' => self::CHARACTR,
                            'data' => '<>'
                        )
                    );

                    $this->state = 'data';

                } elseif ($char === '?') {
                    /* U+003F QUESTION MARK (?)
                    Parse error. Switch to the bogus comment state. */
                    $this->state = 'bogusComment';

                } else {
                    /* Anything else
                    Parse error. Emit a U+003C LESS-THAN SIGN character token and
                    reconsume the current input character in the data state. */
                    $this->emitToken(
                        array(
                            'type' => self::CHARACTR,
                            'data' => '<'
                        )
                    );

                    $this->char--;
                    $this->state = 'data';
                }
                break;
        }
    }

    private function closeTagOpenState()
    {
        $next_node = strtolower($this->characters('A-Za-z', $this->char + 1));
        $the_same = count($this->tree->stack) > 0 && $next_node === end($this->tree->stack)->nodeName;

        if (($this->content_model === self::RCDATA || $this->content_model === self::CDATA) &&
            (!$the_same || ($the_same && (!preg_match(
                            '/[\t\n\x0b\x0c >\/]/',
                            $this->character($this->char + 1 + strlen($next_node))
                        ) || $this->EOF === $this->char)))
        ) {
            /* If the content model flag is set to the RCDATA or CDATA states then
            examine the next few characters. If they do not match the tag name of
            the last start tag token emitted (case insensitively), or if they do but
            they are not immediately followed by one of the following characters:
                * U+0009 CHARACTER TABULATION
                * U+000A LINE FEED (LF)
                * U+000B LINE TABULATION
                * U+000C FORM FEED (FF)
                * U+0020 SPACE
                * U+003E GREATER-THAN SIGN (>)
                * U+002F SOLIDUS (/)
                * EOF
            ...then there is a parse error. Emit a U+003C LESS-THAN SIGN character
            token, a U+002F SOLIDUS character token, and switch to the data state
            to process the next input character. */
            $this->emitToken(
                array(
                    'type' => self::CHARACTR,
                    'data' => '</'
                )
            );

            $this->state = 'data';

        } else {
            /* Otherwise, if the content model flag is set to the PCDATA state,
            or if the next few characters do match that tag name, consume the
            next input character: */
            $this->char++;
            $char = $this->char();

            if (preg_match('/^[A-Za-z]$/', $char)) {
                /* U+0041 LATIN LETTER A through to U+005A LATIN LETTER Z
                Create a new end tag token, set its tag name to the lowercase version
                of the input character (add 0x0020 to the character's code point), then
                switch to the tag name state. (Don't emit the token yet; further details
                will be filled in before it is emitted.) */
                $this->token = array(
                    'name' => strtolower($char),
                    'type' => self::ENDTAG
                );

                $this->state = 'tagName';

            } elseif ($char === '>') {
                /* U+003E GREATER-THAN SIGN (>)
                Parse error. Switch to the data state. */
                $this->state = 'data';

            } elseif ($this->char === $this->EOF) {
                /* EOF
                Parse error. Emit a U+003C LESS-THAN SIGN character token and a U+002F
                SOLIDUS character token. Reconsume the EOF character in the data state. */
                $this->emitToken(
                    array(
                        'type' => self::CHARACTR,
                        'data' => '</'
                    )
                );

                $this->char--;
                $this->state = 'data';

            } else {
                /* Parse error. Switch to the bogus comment state. */
                $this->state = 'bogusComment';
            }
        }
    }

    private function tagNameState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            /* U+0009 CHARACTER TABULATION
            U+000A LINE FEED (LF)
            U+000B LINE TABULATION
            U+000C FORM FEED (FF)
            U+0020 SPACE
            Switch to the before attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($char === '>') {
            /* U+003E GREATER-THAN SIGN (>)
            Emit the current tag token. Switch to the data state. */
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif ($this->char === $this->EOF) {
            /* EOF
            Parse error. Emit the current tag token. Reconsume the EOF
            character in the data state. */
            $this->emitToken($this->token);

            $this->char--;
            $this->state = 'data';

        } elseif ($char === '/') {
            /* U+002F SOLIDUS (/)
            Parse error unless this is a permitted slash. Switch to the before
            attribute name state. */
            $this->state = 'beforeAttributeName';

        } else {
            /* Anything else
            Append the current input character to the current tag token's tag name.
            Stay in the tag name state. */
            $this->token['name'] .= strtolower($char);
            $this->state = 'tagName';
        }
    }

    private function beforeAttributeNameState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            /* U+0009 CHARACTER TABULATION
            U+000A LINE FEED (LF)
            U+000B LINE TABULATION
            U+000C FORM FEED (FF)
            U+0020 SPACE
            Stay in the before attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($char === '>') {
            /* U+003E GREATER-THAN SIGN (>)
            Emit the current tag token. Switch to the data state. */
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif ($char === '/') {
            /* U+002F SOLIDUS (/)
            Parse error unless this is a permitted slash. Stay in the before
            attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($this->char === $this->EOF) {
            /* EOF
            Parse error. Emit the current tag token. Reconsume the EOF
            character in the data state. */
            $this->emitToken($this->token);

            $this->char--;
            $this->state = 'data';

        } else {
            /* Anything else
            Start a new attribute in the current tag token. Set that attribute's
            name to the current input character, and its value to the empty string.
            Switch to the attribute name state. */
            $this->token['attr'][] = array(
                'name' => strtolower($char),
                'value' => null
            );

            $this->state = 'attributeName';
        }
    }

    private function attributeNameState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            /* U+0009 CHARACTER TABULATION
            U+000A LINE FEED (LF)
            U+000B LINE TABULATION
            U+000C FORM FEED (FF)
            U+0020 SPACE
            Stay in the before attribute name state. */
            $this->state = 'afterAttributeName';

        } elseif ($char === '=') {
            /* U+003D EQUALS SIGN (=)
            Switch to the before attribute value state. */
            $this->state = 'beforeAttributeValue';

        } elseif ($char === '>') {
            /* U+003E GREATER-THAN SIGN (>)
            Emit the current tag token. Switch to the data state. */
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif ($char === '/' && $this->character($this->char + 1) !== '>') {
            /* U+002F SOLIDUS (/)
            Parse error unless this is a permitted slash. Switch to the before
            attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($this->char === $this->EOF) {
            /* EOF
            Parse error. Emit the current tag token. Reconsume the EOF
            character in the data state. */
            $this->emitToken($this->token);

            $this->char--;
            $this->state = 'data';

        } else {
            /* Anything else
            Append the current input character to the current attribute's name.
            Stay in the attribute name state. */
            $last = count($this->token['attr']) - 1;
            $this->token['attr'][$last]['name'] .= strtolower($char);

            $this->state = 'attributeName';
        }
    }

    private function afterAttributeNameState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            /* U+0009 CHARACTER TABULATION
            U+000A LINE FEED (LF)
            U+000B LINE TABULATION
            U+000C FORM FEED (FF)
            U+0020 SPACE
            Stay in the after attribute name state. */
            $this->state = 'afterAttributeName';

        } elseif ($char === '=') {
            /* U+003D EQUALS SIGN (=)
            Switch to the before attribute value state. */
            $this->state = 'beforeAttributeValue';

        } elseif ($char === '>') {
            /* U+003E GREATER-THAN SIGN (>)
            Emit the current tag token. Switch to the data state. */
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif ($char === '/' && $this->character($this->char + 1) !== '>') {
            /* U+002F SOLIDUS (/)
            Parse error unless this is a permitted slash. Switch to the
            before attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($this->char === $this->EOF) {
            /* EOF
            Parse error. Emit the current tag token. Reconsume the EOF
            character in the data state. */
            $this->emitToken($this->token);

            $this->char--;
            $this->state = 'data';

        } else {
            /* Anything else
            Start a new attribute in the current tag token. Set that attribute's
            name to the current input character, and its value to the empty string.
            Switch to the attribute name state. */
            $this->token['attr'][] = array(
                'name' => strtolower($char),
                'value' => null
            );

            $this->state = 'attributeName';
        }
    }

    private function beforeAttributeValueState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            /* U+0009 CHARACTER TABULATION
            U+000A LINE FEED (LF)
            U+000B LINE TABULATION
            U+000C FORM FEED (FF)
            U+0020 SPACE
            Stay in the before attribute value state. */
            $this->state = 'beforeAttributeValue';

        } elseif ($char === '"') {
            /* U+0022 QUOTATION MARK (")
            Switch to the attribute value (double-quoted) state. */
            $this->state = 'attributeValueDoubleQuoted';

        } elseif ($char === '&') {
            /* U+0026 AMPERSAND (&)
            Switch to the attribute value (unquoted) state and reconsume
            this input character. */
            $this->char--;
            $this->state = 'attributeValueUnquoted';

        } elseif ($char === '\'') {
            /* U+0027 APOSTROPHE (')
            Switch to the attribute value (single-quoted) state. */
            $this->state = 'attributeValueSingleQuoted';

        } elseif ($char === '>') {
            /* U+003E GREATER-THAN SIGN (>)
            Emit the current tag token. Switch to the data state. */
            $this->emitToken($this->token);
            $this->state = 'data';

        } else {
            /* Anything else
            Append the current input character to the current attribute's value.
            Switch to the attribute value (unquoted) state. */
            $last = count($this->token['attr']) - 1;
            $this->token['attr'][$last]['value'] .= $char;

            $this->state = 'attributeValueUnquoted';
        }
    }

    private function attributeValueDoubleQuotedState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if ($char === '"') {
            /* U+0022 QUOTATION MARK (")
            Switch to the before attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($char === '&') {
            /* U+0026 AMPERSAND (&)
            Switch to the entity in attribute value state. */
            $this->entityInAttributeValueState('double');

        } elseif ($this->char === $this->EOF) {
            /* EOF
            Parse error. Emit the current tag token. Reconsume the character
            in the data state. */
            $this->emitToken($this->token);

            $this->char--;
            $this->state = 'data';

        } else {
            /* Anything else
            Append the current input character to the current attribute's value.
            Stay in the attribute value (double-quoted) state. */
            $last = count($this->token['attr']) - 1;
            $this->token['attr'][$last]['value'] .= $char;

            $this->state = 'attributeValueDoubleQuoted';
        }
    }

    private function attributeValueSingleQuotedState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if ($char === '\'') {
            /* U+0022 QUOTATION MARK (')
            Switch to the before attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($char === '&') {
            /* U+0026 AMPERSAND (&)
            Switch to the entity in attribute value state. */
            $this->entityInAttributeValueState('single');

        } elseif ($this->char === $this->EOF) {
            /* EOF
            Parse error. Emit the current tag token. Reconsume the character
            in the data state. */
            $this->emitToken($this->token);

            $this->char--;
            $this->state = 'data';

        } else {
            /* Anything else
            Append the current input character to the current attribute's value.
            Stay in the attribute value (single-quoted) state. */
            $last = count($this->token['attr']) - 1;
            $this->token['attr'][$last]['value'] .= $char;

            $this->state = 'attributeValueSingleQuoted';
        }
    }

    private function attributeValueUnquotedState()
    {
        // Consume the next input character:
        $this->char++;
        $char = $this->character($this->char);

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            /* U+0009 CHARACTER TABULATION
            U+000A LINE FEED (LF)
            U+000B LINE TABULATION
            U+000C FORM FEED (FF)
            U+0020 SPACE
            Switch to the before attribute name state. */
            $this->state = 'beforeAttributeName';

        } elseif ($char === '&') {
            /* U+0026 AMPERSAND (&)
            Switch to the entity in attribute value state. */
            $this->entityInAttributeValueState();

        } elseif ($char === '>') {
            /* U+003E GREATER-THAN SIGN (>)
            Emit the current tag token. Switch to the data state. */
            $this->emitToken($this->token);
            $this->state = 'data';

        } else {
            /* Anything else
            Append the current input character to the current attribute's value.
            Stay in the attribute value (unquoted) state. */
            $last = count($this->token['attr']) - 1;
            $this->token['attr'][$last]['value'] .= $char;

            $this->state = 'attributeValueUnquoted';
        }
    }

    private function entityInAttributeValueState()
    {
        // Attempt to consume an entity.
        $entity = $this->entity();

        // If nothing is returned, append a U+0026 AMPERSAND character to the
        // current attribute's value. Otherwise, emit the character token that
        // was returned.
        $char = (!$entity)
            ? '&'
            : $entity;

        $last = count($this->token['attr']) - 1;
        $this->token['attr'][$last]['value'] .= $char;
    }

    private function bogusCommentState()
    {
        /* Consume every character up to the first U+003E GREATER-THAN SIGN
        character (>) or the end of the file (EOF), whichever comes first. Emit
        a comment token whose data is the concatenation of all the characters
        starting from and including the character that caused the state machine
        to switch into the bogus comment state, up to and including the last
        consumed character before the U+003E character, if any, or up to the
        end of the file otherwise. (If the comment was started by the end of
        the file (EOF), the token is empty.) */
        $data = $this->characters('^>', $this->char);
        $this->emitToken(
            array(
                'data' => $data,
                'type' => self::COMMENT
            )
        );

        $this->char += strlen($data);

        /* Switch to the data state. */
        $this->state = 'data';

        /* If the end of the file was reached, reconsume the EOF character. */
        if ($this->char === $this->EOF) {
            $this->char = $this->EOF - 1;
        }
    }

    private function markupDeclarationOpenState()
    {
        /* If the next two characters are both U+002D HYPHEN-MINUS (-)
        characters, consume those two characters, create a comment token whose
        data is the empty string, and switch to the comment state. */
        if ($this->character($this->char + 1, 2) === '--') {
            $this->char += 2;
            $this->state = 'comment';
            $this->token = array(
                'data' => null,
                'type' => self::COMMENT
            );

            /* Otherwise if the next seven chacacters are a case-insensitive match
            for the word "DOCTYPE", then consume those characters and switch to the
            DOCTYPE state. */
        } elseif (strtolower($this->character($this->char + 1, 7)) === 'doctype') {
            $this->char += 7;
            $this->state = 'doctype';

            /* Otherwise, is is a parse error. Switch to the bogus comment state.
            The next character that is consumed, if any, is the first character
            that will be in the comment. */
        } else {
            $this->char++;
            $this->state = 'bogusComment';
        }
    }

    private function commentState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        /* U+002D HYPHEN-MINUS (-) */
        if ($char === '-') {
            /* Switch to the comment dash state  */
            $this->state = 'commentDash';

            /* EOF */
        } elseif ($this->char === $this->EOF) {
            /* Parse error. Emit the comment token. Reconsume the EOF character
            in the data state. */
            $this->emitToken($this->token);
            $this->char--;
            $this->state = 'data';

            /* Anything else */
        } else {
            /* Append the input character to the comment token's data. Stay in
            the comment state. */
            $this->token['data'] .= $char;
        }
    }

    private function commentDashState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        /* U+002D HYPHEN-MINUS (-) */
        if ($char === '-') {
            /* Switch to the comment end state  */
            $this->state = 'commentEnd';

            /* EOF */
        } elseif ($this->char === $this->EOF) {
            /* Parse error. Emit the comment token. Reconsume the EOF character
            in the data state. */
            $this->emitToken($this->token);
            $this->char--;
            $this->state = 'data';

            /* Anything else */
        } else {
            /* Append a U+002D HYPHEN-MINUS (-) character and the input
            character to the comment token's data. Switch to the comment state. */
            $this->token['data'] .= '-' . $char;
            $this->state = 'comment';
        }
    }

    private function commentEndState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        if ($char === '>') {
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif ($char === '-') {
            $this->token['data'] .= '-';

        } elseif ($this->char === $this->EOF) {
            $this->emitToken($this->token);
            $this->char--;
            $this->state = 'data';

        } else {
            $this->token['data'] .= '--' . $char;
            $this->state = 'comment';
        }
    }

    private function doctypeState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            $this->state = 'beforeDoctypeName';

        } else {
            $this->char--;
            $this->state = 'beforeDoctypeName';
        }
    }

    private function beforeDoctypeNameState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            // Stay in the before DOCTYPE name state.

        } elseif (preg_match('/^[a-z]$/', $char)) {
            $this->token = array(
                'name' => strtoupper($char),
                'type' => self::DOCTYPE,
                'error' => true
            );

            $this->state = 'doctypeName';

        } elseif ($char === '>') {
            $this->emitToken(
                array(
                    'name' => null,
                    'type' => self::DOCTYPE,
                    'error' => true
                )
            );

            $this->state = 'data';

        } elseif ($this->char === $this->EOF) {
            $this->emitToken(
                array(
                    'name' => null,
                    'type' => self::DOCTYPE,
                    'error' => true
                )
            );

            $this->char--;
            $this->state = 'data';

        } else {
            $this->token = array(
                'name' => $char,
                'type' => self::DOCTYPE,
                'error' => true
            );

            $this->state = 'doctypeName';
        }
    }

    private function doctypeNameState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            $this->state = 'AfterDoctypeName';

        } elseif ($char === '>') {
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif (preg_match('/^[a-z]$/', $char)) {
            $this->token['name'] .= strtoupper($char);

        } elseif ($this->char === $this->EOF) {
            $this->emitToken($this->token);
            $this->char--;
            $this->state = 'data';

        } else {
            $this->token['name'] .= $char;
        }

        $this->token['error'] = ($this->token['name'] === 'HTML')
            ? false
            : true;
    }

    private function afterDoctypeNameState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        if (preg_match('/^[\t\n\x0b\x0c ]$/', $char)) {
            // Stay in the DOCTYPE name state.

        } elseif ($char === '>') {
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif ($this->char === $this->EOF) {
            $this->emitToken($this->token);
            $this->char--;
            $this->state = 'data';

        } else {
            $this->token['error'] = true;
            $this->state = 'bogusDoctype';
        }
    }

    private function bogusDoctypeState()
    {
        /* Consume the next input character: */
        $this->char++;
        $char = $this->char();

        if ($char === '>') {
            $this->emitToken($this->token);
            $this->state = 'data';

        } elseif ($this->char === $this->EOF) {
            $this->emitToken($this->token);
            $this->char--;
            $this->state = 'data';

        } else {
            // Stay in the bogus DOCTYPE state.
        }
    }

    private function entity()
    {
        $start = $this->char;

        // This section defines how to consume an entity. This definition is
        // used when parsing entities in text and in attributes.

        // The behaviour depends on the identity of the next character (the
        // one immediately after the U+0026 AMPERSAND character):

        switch ($this->character($this->char + 1)) {
            // U+0023 NUMBER SIGN (#)
            case '#':

                // The behaviour further depends on the character after the
                // U+0023 NUMBER SIGN:
                switch ($this->character($this->char + 1)) {
                    // U+0078 LATIN SMALL LETTER X
                    // U+0058 LATIN CAPITAL LETTER X
                    case 'x':
                    case 'X':
                        // Follow the steps below, but using the range of
                        // characters U+0030 DIGIT ZERO through to U+0039 DIGIT
                        // NINE, U+0061 LATIN SMALL LETTER A through to U+0066
                        // LATIN SMALL LETTER F, and U+0041 LATIN CAPITAL LETTER
                        // A, through to U+0046 LATIN CAPITAL LETTER F (in other
                        // words, 0-9, A-F, a-f).
                        $char = 1;
                        $char_class = '0-9A-Fa-f';
                        break;

                    // Anything else
                    default:
                        // Follow the steps below, but using the range of
                        // characters U+0030 DIGIT ZERO through to U+0039 DIGIT
                        // NINE (i.e. just 0-9).
                        $char = 0;
                        $char_class = '0-9';
                        break;
                }

                // Consume as many characters as match the range of characters
                // given above.
                $this->char++;
                $e_name = $this->characters($char_class, $this->char + $char + 1);
                $entity = $this->character($start, $this->char);
                $cond = strlen($e_name) > 0;

                // The rest of the parsing happens below.
                break;

            // Anything else
            default:
                // Consume the maximum number of characters possible, with the
                // consumed characters case-sensitively matching one of the
                // identifiers in the first column of the entities table.

                $e_name = $this->characters('0-9A-Za-z;', $this->char + 1);
                $len = strlen($e_name);

                for ($c = 1; $c <= $len; $c++) {
                    $id = substr($e_name, 0, $c);
                    $this->char++;

                    if (in_array($id, $this->entities)) {
                        if ($e_name[$c - 1] !== ';') {
                            if ($c < $len && $e_name[$c] == ';') {
                                $this->char++; // consume extra semicolon
                            }
                        }
                        $entity = $id;
                        break;
                    }
                }

                $cond = isset($entity);
                // The rest of the parsing happens below.
                break;
        }

        if (!$cond) {
            // If no match can be made, then this is a parse error. No
            // characters are consumed, and nothing is returned.
            $this->char = $start;
            return false;
        }

        // Return a character token for the character corresponding to the
        // entity name (as given by the second column of the entities table).
        return html_entity_decode('&' . rtrim($entity, ';') . ';', ENT_QUOTES, 'UTF-8');
    }

    private function emitToken($token)
    {
        $emit = $this->tree->emitToken($token);

        if (is_int($emit)) {
            $this->content_model = $emit;

        } elseif ($token['type'] === self::ENDTAG) {
            $this->content_model = self::PCDATA;
        }
    }

    private function EOF()
    {
        $this->state = null;
        $this->tree->emitToken(
            array(
                'type' => self::EOF
            )
        );
    }
}

class HTML5TreeConstructer
{
    public $stack = array();

    private $phase;
    private $mode;
    private $dom;
    private $foster_parent = null;
    private $a_formatting = array();

    private $head_pointer = null;
    private $form_pointer = null;

    private $scoping = array('button', 'caption', 'html', 'marquee', 'object', 'table', 'td', 'th');
    private $formatting = array(
        'a',
        'b',
        'big',
        'em',
        'font',
        'i',
        'nobr',
        's',
        'small',
        'strike',
        'strong',
        'tt',
        'u'
    );
    private $special = array(
        'address',
        'area',
        'base',
        'basefont',
        'bgsound',
        'blockquote',
        'body',
        'br',
        'center',
        'col',
        'colgroup',
        'dd',
        'dir',
        'div',
        'dl',
        'dt',
        'embed',
        'fieldset',
        'form',
        'frame',
        'frameset',
        'h1',
        'h2',
        'h3',
        'h4',
        'h5',
        'h6',
        'head',
        'hr',
        'iframe',
        'image',
        'img',
        'input',
        'isindex',
        'li',
        'link',
        'listing',
        'menu',
        'meta',
        'noembed',
        'noframes',
        'noscript',
        'ol',
        'optgroup',
        'option',
        'p',
        'param',
        'plaintext',
        'pre',
        'script',
        'select',
        'spacer',
        'style',
        'tbody',
        'textarea',
        'tfoot',
        'thead',
        'title',
        'tr',
        'ul',
        'wbr'
    );

    // The different phases.
    const INIT_PHASE = 0;
    const ROOT_PHASE = 1;
    const MAIN_PHASE = 2;
    const END_PHASE = 3;

    // The different insertion modes for the main phase.
    const BEFOR_HEAD = 0;
    const IN_HEAD = 1;
    const AFTER_HEAD = 2;
    const IN_BODY = 3;
    const IN_TABLE = 4;
    const IN_CAPTION = 5;
    const IN_CGROUP = 6;
    const IN_TBODY = 7;
    const IN_ROW = 8;
    const IN_CELL = 9;
    const IN_SELECT = 10;
    const AFTER_BODY = 11;
    const IN_FRAME = 12;
    const AFTR_FRAME = 13;

    // The different types of elements.
    const SPECIAL = 0;
    const SCOPING = 1;
    const FORMATTING = 2;
    const PHRASING = 3;

    const MARKER = 0;

    public function __construct()
    {
        $this->phase = self::INIT_PHASE;
        $this->mode = self::BEFOR_HEAD;
        $this->dom = new DOMDocument;

        $this->dom->encoding = 'UTF-8';
        $this->dom->preserveWhiteSpace = true;
        $this->dom->substituteEntities = true;
        $this->dom->strictErrorChecking = false;
    }

    // Process tag tokens
    public function emitToken($token)
    {
        switch ($this->phase) {
            case self::INIT_PHASE:
                return $this->initPhase($token);
                break;
            case self::ROOT_PHASE:
                return $this->rootElementPhase($token);
                break;
            case self::MAIN_PHASE:
                return $this->mainPhase($token);
                break;
            case self::END_PHASE :
                return $this->trailingEndPhase($token);
                break;
        }
    }

    private function initPhase($token)
    {
        /* Initially, the tree construction stage must handle each token
        emitted from the tokenisation stage as follows: */

        /* A DOCTYPE token that is marked as being in error
        A comment token
        A start tag token
        An end tag token
        A character token that is not one of one of U+0009 CHARACTER TABULATION,
            U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
            or U+0020 SPACE
        An end-of-file token */
        if ((isset($token['error']) && $token['error']) ||
            $token['type'] === HTML5::COMMENT ||
            $token['type'] === HTML5::STARTTAG ||
            $token['type'] === HTML5::ENDTAG ||
            $token['type'] === HTML5::EOF ||
            ($token['type'] === HTML5::CHARACTR && isset($token['data']) &&
                !preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data']))
        ) {
            /* This specification does not define how to handle this case. In
            particular, user agents may ignore the entirety of this specification
            altogether for such documents, and instead invoke special parse modes
            with a greater emphasis on backwards compatibility. */

            $this->phase = self::ROOT_PHASE;
            return $this->rootElementPhase($token);

            /* A DOCTYPE token marked as being correct */
        } elseif (isset($token['error']) && !$token['error']) {
            /* Append a DocumentType node to the Document  node, with the name
            attribute set to the name given in the DOCTYPE token (which will be
            "HTML"), and the other attributes specific to DocumentType objects
            set to null, empty lists, or the empty string as appropriate. */
            $doctype = new DOMDocumentType(null, null, 'HTML');

            /* Then, switch to the root element phase of the tree construction
            stage. */
            $this->phase = self::ROOT_PHASE;

            /* A character token that is one of one of U+0009 CHARACTER TABULATION,
            U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
            or U+0020 SPACE */
        } elseif (isset($token['data']) && preg_match(
                '/^[\t\n\x0b\x0c ]+$/',
                $token['data']
            )
        ) {
            /* Append that character  to the Document node. */
            $text = $this->dom->createTextNode($token['data']);
            $this->dom->appendChild($text);
        }
    }

    private function rootElementPhase($token)
    {
        /* After the initial phase, as each token is emitted from the tokenisation
        stage, it must be processed as described in this section. */

        /* A DOCTYPE token */
        if ($token['type'] === HTML5::DOCTYPE) {
            // Parse error. Ignore the token.

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the Document object with the data
            attribute set to the data given in the comment token. */
            $comment = $this->dom->createComment($token['data']);
            $this->dom->appendChild($comment);

            /* A character token that is one of one of U+0009 CHARACTER TABULATION,
            U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
            or U+0020 SPACE */
        } elseif ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Append that character  to the Document node. */
            $text = $this->dom->createTextNode($token['data']);
            $this->dom->appendChild($text);

            /* A character token that is not one of U+0009 CHARACTER TABULATION,
                U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED
                (FF), or U+0020 SPACE
            A start tag token
            An end tag token
            An end-of-file token */
        } elseif (($token['type'] === HTML5::CHARACTR &&
                !preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])) ||
            $token['type'] === HTML5::STARTTAG ||
            $token['type'] === HTML5::ENDTAG ||
            $token['type'] === HTML5::EOF
        ) {
            /* Create an HTMLElement node with the tag name html, in the HTML
            namespace. Append it to the Document object. Switch to the main
            phase and reprocess the current token. */
            $html = $this->dom->createElement('html');
            $this->dom->appendChild($html);
            $this->stack[] = $html;

            $this->phase = self::MAIN_PHASE;
            return $this->mainPhase($token);
        }
    }

    private function mainPhase($token)
    {
        /* Tokens in the main phase must be handled as follows: */

        /* A DOCTYPE token */
        if ($token['type'] === HTML5::DOCTYPE) {
            // Parse error. Ignore the token.

            /* A start tag token with the tag name "html" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'html') {
            /* If this start tag token was not the first start tag token, then
            it is a parse error. */

            /* For each attribute on the token, check to see if the attribute
            is already present on the top element of the stack of open elements.
            If it is not, add the attribute and its corresponding value to that
            element. */
            foreach ($token['attr'] as $attr) {
                if (!$this->stack[0]->hasAttribute($attr['name'])) {
                    $this->stack[0]->setAttribute($attr['name'], $attr['value']);
                }
            }

            /* An end-of-file token */
        } elseif ($token['type'] === HTML5::EOF) {
            /* Generate implied end tags. */
            $this->generateImpliedEndTags();

            /* Anything else. */
        } else {
            /* Depends on the insertion mode: */
            switch ($this->mode) {
                case self::BEFOR_HEAD:
                    return $this->beforeHead($token);
                    break;
                case self::IN_HEAD:
                    return $this->inHead($token);
                    break;
                case self::AFTER_HEAD:
                    return $this->afterHead($token);
                    break;
                case self::IN_BODY:
                    return $this->inBody($token);
                    break;
                case self::IN_TABLE:
                    return $this->inTable($token);
                    break;
                case self::IN_CAPTION:
                    return $this->inCaption($token);
                    break;
                case self::IN_CGROUP:
                    return $this->inColumnGroup($token);
                    break;
                case self::IN_TBODY:
                    return $this->inTableBody($token);
                    break;
                case self::IN_ROW:
                    return $this->inRow($token);
                    break;
                case self::IN_CELL:
                    return $this->inCell($token);
                    break;
                case self::IN_SELECT:
                    return $this->inSelect($token);
                    break;
                case self::AFTER_BODY:
                    return $this->afterBody($token);
                    break;
                case self::IN_FRAME:
                    return $this->inFrameset($token);
                    break;
                case self::AFTR_FRAME:
                    return $this->afterFrameset($token);
                    break;
                case self::END_PHASE:
                    return $this->trailingEndPhase($token);
                    break;
            }
        }
    }

    private function beforeHead($token)
    {
        /* Handle the token as follows: */

        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        or U+0020 SPACE */
        if ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Append the character to the current node. */
            $this->insertText($token['data']);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data attribute
            set to the data given in the comment token. */
            $this->insertComment($token['data']);

            /* A start tag token with the tag name "head" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'head') {
            /* Create an element for the token, append the new element to the
            current node and push it onto the stack of open elements. */
            $element = $this->insertElement($token);

            /* Set the head element pointer to this new element node. */
            $this->head_pointer = $element;

            /* Change the insertion mode to "in head". */
            $this->mode = self::IN_HEAD;

            /* A start tag token whose tag name is one of: "base", "link", "meta",
            "script", "style", "title". Or an end tag with the tag name "html".
            Or a character token that is not one of U+0009 CHARACTER TABULATION,
            U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
            or U+0020 SPACE. Or any other start tag token */
        } elseif ($token['type'] === HTML5::STARTTAG ||
            ($token['type'] === HTML5::ENDTAG && $token['name'] === 'html') ||
            ($token['type'] === HTML5::CHARACTR && !preg_match(
                    '/^[\t\n\x0b\x0c ]$/',
                    $token['data']
                ))
        ) {
            /* Act as if a start tag token with the tag name "head" and no
            attributes had been seen, then reprocess the current token. */
            $this->beforeHead(
                array(
                    'name' => 'head',
                    'type' => HTML5::STARTTAG,
                    'attr' => array()
                )
            );

            return $this->inHead($token);

            /* Any other end tag */
        } elseif ($token['type'] === HTML5::ENDTAG) {
            /* Parse error. Ignore the token. */
        }
    }

    private function inHead($token)
    {
        /* Handle the token as follows: */

        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        or U+0020 SPACE.

        THIS DIFFERS FROM THE SPEC: If the current node is either a title, style
        or script element, append the character to the current node regardless
        of its content. */
        if (($token['type'] === HTML5::CHARACTR &&
                preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])) || (
                $token['type'] === HTML5::CHARACTR && in_array(
                    end($this->stack)->nodeName,
                    array('title', 'style', 'script')
                ))
        ) {
            /* Append the character to the current node. */
            $this->insertText($token['data']);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data attribute
            set to the data given in the comment token. */
            $this->insertComment($token['data']);

        } elseif ($token['type'] === HTML5::ENDTAG &&
            in_array($token['name'], array('title', 'style', 'script'))
        ) {
            array_pop($this->stack);
            return HTML5::PCDATA;

            /* A start tag with the tag name "title" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'title') {
            /* Create an element for the token and append the new element to the
            node pointed to by the head element pointer, or, if that is null
            (innerHTML case), to the current node. */
            if ($this->head_pointer !== null) {
                $element = $this->insertElement($token, false);
                $this->head_pointer->appendChild($element);

            } else {
                $element = $this->insertElement($token);
            }

            /* Switch the tokeniser's content model flag  to the RCDATA state. */
            return HTML5::RCDATA;

            /* A start tag with the tag name "style" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'style') {
            /* Create an element for the token and append the new element to the
            node pointed to by the head element pointer, or, if that is null
            (innerHTML case), to the current node. */
            if ($this->head_pointer !== null) {
                $element = $this->insertElement($token, false);
                $this->head_pointer->appendChild($element);

            } else {
                $this->insertElement($token);
            }

            /* Switch the tokeniser's content model flag  to the CDATA state. */
            return HTML5::CDATA;

            /* A start tag with the tag name "script" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'script') {
            /* Create an element for the token. */
            $element = $this->insertElement($token, false);
            $this->head_pointer->appendChild($element);

            /* Switch the tokeniser's content model flag  to the CDATA state. */
            return HTML5::CDATA;

            /* A start tag with the tag name "base", "link", or "meta" */
        } elseif ($token['type'] === HTML5::STARTTAG && in_array(
                $token['name'],
                array('base', 'link', 'meta')
            )
        ) {
            /* Create an element for the token and append the new element to the
            node pointed to by the head element pointer, or, if that is null
            (innerHTML case), to the current node. */
            if ($this->head_pointer !== null) {
                $element = $this->insertElement($token, false);
                $this->head_pointer->appendChild($element);
                array_pop($this->stack);

            } else {
                $this->insertElement($token);
            }

            /* An end tag with the tag name "head" */
        } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'head') {
            /* If the current node is a head element, pop the current node off
            the stack of open elements. */
            if ($this->head_pointer->isSameNode(end($this->stack))) {
                array_pop($this->stack);

                /* Otherwise, this is a parse error. */
            } else {
                // k
            }

            /* Change the insertion mode to "after head". */
            $this->mode = self::AFTER_HEAD;

            /* A start tag with the tag name "head" or an end tag except "html". */
        } elseif (($token['type'] === HTML5::STARTTAG && $token['name'] === 'head') ||
            ($token['type'] === HTML5::ENDTAG && $token['name'] !== 'html')
        ) {
            // Parse error. Ignore the token.

            /* Anything else */
        } else {
            /* If the current node is a head element, act as if an end tag
            token with the tag name "head" had been seen. */
            if ($this->head_pointer->isSameNode(end($this->stack))) {
                $this->inHead(
                    array(
                        'name' => 'head',
                        'type' => HTML5::ENDTAG
                    )
                );

                /* Otherwise, change the insertion mode to "after head". */
            } else {
                $this->mode = self::AFTER_HEAD;
            }

            /* Then, reprocess the current token. */
            return $this->afterHead($token);
        }
    }

    private function afterHead($token)
    {
        /* Handle the token as follows: */

        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        or U+0020 SPACE */
        if ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Append the character to the current node. */
            $this->insertText($token['data']);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data attribute
            set to the data given in the comment token. */
            $this->insertComment($token['data']);

            /* A start tag token with the tag name "body" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'body') {
            /* Insert a body element for the token. */
            $this->insertElement($token);

            /* Change the insertion mode to "in body". */
            $this->mode = self::IN_BODY;

            /* A start tag token with the tag name "frameset" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'frameset') {
            /* Insert a frameset element for the token. */
            $this->insertElement($token);

            /* Change the insertion mode to "in frameset". */
            $this->mode = self::IN_FRAME;

            /* A start tag token whose tag name is one of: "base", "link", "meta",
            "script", "style", "title" */
        } elseif ($token['type'] === HTML5::STARTTAG && in_array(
                $token['name'],
                array('base', 'link', 'meta', 'script', 'style', 'title')
            )
        ) {
            /* Parse error. Switch the insertion mode back to "in head" and
            reprocess the token. */
            $this->mode = self::IN_HEAD;
            return $this->inHead($token);

            /* Anything else */
        } else {
            /* Act as if a start tag token with the tag name "body" and no
            attributes had been seen, and then reprocess the current token. */
            $this->afterHead(
                array(
                    'name' => 'body',
                    'type' => HTML5::STARTTAG,
                    'attr' => array()
                )
            );

            return $this->inBody($token);
        }
    }

    private function inBody($token)
    {
        /* Handle the token as follows: */

        switch ($token['type']) {
            /* A character token */
            case HTML5::CHARACTR:
                /* Reconstruct the active formatting elements, if any. */
                $this->reconstructActiveFormattingElements();

                /* Append the token's character to the current node. */
                $this->insertText($token['data']);
                break;

            /* A comment token */
            case HTML5::COMMENT:
                /* Append a Comment node to the current node with the data
                attribute set to the data given in the comment token. */
                $this->insertComment($token['data']);
                break;

            case HTML5::STARTTAG:
                switch ($token['name']) {
                    /* A start tag token whose tag name is one of: "script",
                    "style" */
                    case 'script':
                    case 'style':
                        /* Process the token as if the insertion mode had been "in
                        head". */
                        return $this->inHead($token);
                        break;

                    /* A start tag token whose tag name is one of: "base", "link",
                    "meta", "title" */
                    case 'base':
                    case 'link':
                    case 'meta':
                    case 'title':
                        /* Parse error. Process the token as if the insertion mode
                        had    been "in head". */
                        return $this->inHead($token);
                        break;

                    /* A start tag token with the tag name "body" */
                    case 'body':
                        /* Parse error. If the second element on the stack of open
                        elements is not a body element, or, if the stack of open
                        elements has only one node on it, then ignore the token.
                        (innerHTML case) */
                        if (count($this->stack) === 1 || $this->stack[1]->nodeName !== 'body') {
                            // Ignore

                            /* Otherwise, for each attribute on the token, check to see
                            if the attribute is already present on the body element (the
                            second element)    on the stack of open elements. If it is not,
                            add the attribute and its corresponding value to that
                            element. */
                        } else {
                            foreach ($token['attr'] as $attr) {
                                if (!$this->stack[1]->hasAttribute($attr['name'])) {
                                    $this->stack[1]->setAttribute($attr['name'], $attr['value']);
                                }
                            }
                        }
                        break;

                    /* A start tag whose tag name is one of: "address",
                    "blockquote", "center", "dir", "div", "dl", "fieldset",
                    "listing", "menu", "ol", "p", "ul" */
                    case 'address':
                    case 'blockquote':
                    case 'center':
                    case 'dir':
                    case 'div':
                    case 'dl':
                    case 'fieldset':
                    case 'listing':
                    case 'menu':
                    case 'ol':
                    case 'p':
                    case 'ul':
                        /* If the stack of open elements has a p element in scope,
                        then act as if an end tag with the tag name p had been
                        seen. */
                        if ($this->elementInScope('p')) {
                            $this->emitToken(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);
                        break;

                    /* A start tag whose tag name is "form" */
                    case 'form':
                        /* If the form element pointer is not null, ignore the
                        token with a parse error. */
                        if ($this->form_pointer !== null) {
                            // Ignore.

                            /* Otherwise: */
                        } else {
                            /* If the stack of open elements has a p element in
                            scope, then act as if an end tag with the tag name p
                            had been seen. */
                            if ($this->elementInScope('p')) {
                                $this->emitToken(
                                    array(
                                        'name' => 'p',
                                        'type' => HTML5::ENDTAG
                                    )
                                );
                            }

                            /* Insert an HTML element for the token, and set the
                            form element pointer to point to the element created. */
                            $element = $this->insertElement($token);
                            $this->form_pointer = $element;
                        }
                        break;

                    /* A start tag whose tag name is "li", "dd" or "dt" */
                    case 'li':
                    case 'dd':
                    case 'dt':
                        /* If the stack of open elements has a p  element in scope,
                        then act as if an end tag with the tag name p had been
                        seen. */
                        if ($this->elementInScope('p')) {
                            $this->emitToken(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }

                        $stack_length = count($this->stack) - 1;

                        for ($n = $stack_length; 0 <= $n; $n--) {
                            /* 1. Initialise node to be the current node (the
                            bottommost node of the stack). */
                            $stop = false;
                            $node = $this->stack[$n];
                            $cat = $this->getElementCategory($node->tagName);

                            /* 2. If node is an li, dd or dt element, then pop all
                            the    nodes from the current node up to node, including
                            node, then stop this algorithm. */
                            if ($token['name'] === $node->tagName || ($token['name'] !== 'li'
                                    && ($node->tagName === 'dd' || $node->tagName === 'dt'))
                            ) {
                                for ($x = $stack_length; $x >= $n; $x--) {
                                    array_pop($this->stack);
                                }

                                break;
                            }

                            /* 3. If node is not in the formatting category, and is
                            not    in the phrasing category, and is not an address or
                            div element, then stop this algorithm. */
                            if ($cat !== self::FORMATTING && $cat !== self::PHRASING &&
                                $node->tagName !== 'address' && $node->tagName !== 'div'
                            ) {
                                break;
                            }
                        }

                        /* Finally, insert an HTML element with the same tag
                        name as the    token's. */
                        $this->insertElement($token);
                        break;

                    /* A start tag token whose tag name is "plaintext" */
                    case 'plaintext':
                        /* If the stack of open elements has a p  element in scope,
                        then act as if an end tag with the tag name p had been
                        seen. */
                        if ($this->elementInScope('p')) {
                            $this->emitToken(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        return HTML5::PLAINTEXT;
                        break;

                    /* A start tag whose tag name is one of: "h1", "h2", "h3", "h4",
                    "h5", "h6" */
                    case 'h1':
                    case 'h2':
                    case 'h3':
                    case 'h4':
                    case 'h5':
                    case 'h6':
                        /* If the stack of open elements has a p  element in scope,
                        then act as if an end tag with the tag name p had been seen. */
                        if ($this->elementInScope('p')) {
                            $this->emitToken(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }

                        /* If the stack of open elements has in scope an element whose
                        tag name is one of "h1", "h2", "h3", "h4", "h5", or "h6", then
                        this is a parse error; pop elements from the stack until an
                        element with one of those tag names has been popped from the
                        stack. */
                        while ($this->elementInScope(array('h1', 'h2', 'h3', 'h4', 'h5', 'h6'))) {
                            array_pop($this->stack);
                        }

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);
                        break;

                    /* A start tag whose tag name is "a" */
                    case 'a':
                        /* If the list of active formatting elements contains
                        an element whose tag name is "a" between the end of the
                        list and the last marker on the list (or the start of
                        the list if there is no marker on the list), then this
                        is a parse error; act as if an end tag with the tag name
                        "a" had been seen, then remove that element from the list
                        of active formatting elements and the stack of open
                        elements if the end tag didn't already remove it (it
                        might not have if the element is not in table scope). */
                        $leng = count($this->a_formatting);

                        for ($n = $leng - 1; $n >= 0; $n--) {
                            if ($this->a_formatting[$n] === self::MARKER) {
                                break;

                            } elseif ($this->a_formatting[$n]->nodeName === 'a') {
                                $this->emitToken(
                                    array(
                                        'name' => 'a',
                                        'type' => HTML5::ENDTAG
                                    )
                                );
                                break;
                            }
                        }

                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an HTML element for the token. */
                        $el = $this->insertElement($token);

                        /* Add that element to the list of active formatting
                        elements. */
                        $this->a_formatting[] = $el;
                        break;

                    /* A start tag whose tag name is one of: "b", "big", "em", "font",
                    "i", "nobr", "s", "small", "strike", "strong", "tt", "u" */
                    case 'b':
                    case 'big':
                    case 'em':
                    case 'font':
                    case 'i':
                    case 'nobr':
                    case 's':
                    case 'small':
                    case 'strike':
                    case 'strong':
                    case 'tt':
                    case 'u':
                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an HTML element for the token. */
                        $el = $this->insertElement($token);

                        /* Add that element to the list of active formatting
                        elements. */
                        $this->a_formatting[] = $el;
                        break;

                    /* A start tag token whose tag name is "button" */
                    case 'button':
                        /* If the stack of open elements has a button element in scope,
                        then this is a parse error; act as if an end tag with the tag
                        name "button" had been seen, then reprocess the token. (We don't
                        do that. Unnecessary.) */
                        if ($this->elementInScope('button')) {
                            $this->inBody(
                                array(
                                    'name' => 'button',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }

                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        /* Insert a marker at the end of the list of active
                        formatting elements. */
                        $this->a_formatting[] = self::MARKER;
                        break;

                    /* A start tag token whose tag name is one of: "marquee", "object" */
                    case 'marquee':
                    case 'object':
                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        /* Insert a marker at the end of the list of active
                        formatting elements. */
                        $this->a_formatting[] = self::MARKER;
                        break;

                    /* A start tag token whose tag name is "xmp" */
                    case 'xmp':
                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        /* Switch the content model flag to the CDATA state. */
                        return HTML5::CDATA;
                        break;

                    /* A start tag whose tag name is "table" */
                    case 'table':
                        /* If the stack of open elements has a p element in scope,
                        then act as if an end tag with the tag name p had been seen. */
                        if ($this->elementInScope('p')) {
                            $this->emitToken(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        /* Change the insertion mode to "in table". */
                        $this->mode = self::IN_TABLE;
                        break;

                    /* A start tag whose tag name is one of: "area", "basefont",
                    "bgsound", "br", "embed", "img", "param", "spacer", "wbr" */
                    case 'area':
                    case 'basefont':
                    case 'bgsound':
                    case 'br':
                    case 'embed':
                    case 'img':
                    case 'param':
                    case 'spacer':
                    case 'wbr':
                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        /* Immediately pop the current node off the stack of open elements. */
                        array_pop($this->stack);
                        break;

                    /* A start tag whose tag name is "hr" */
                    case 'hr':
                        /* If the stack of open elements has a p element in scope,
                        then act as if an end tag with the tag name p had been seen. */
                        if ($this->elementInScope('p')) {
                            $this->emitToken(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        /* Immediately pop the current node off the stack of open elements. */
                        array_pop($this->stack);
                        break;

                    /* A start tag whose tag name is "image" */
                    case 'image':
                        /* Parse error. Change the token's tag name to "img" and
                        reprocess it. (Don't ask.) */
                        $token['name'] = 'img';
                        return $this->inBody($token);
                        break;

                    /* A start tag whose tag name is "input" */
                    case 'input':
                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an input element for the token. */
                        $element = $this->insertElement($token, false);

                        /* If the form element pointer is not null, then associate the
                        input element with the form element pointed to by the form
                        element pointer. */
                        $this->form_pointer !== null
                            ? $this->form_pointer->appendChild($element)
                            : end($this->stack)->appendChild($element);

                        /* Pop that input element off the stack of open elements. */
                        array_pop($this->stack);
                        break;

                    /* A start tag whose tag name is "isindex" */
                    case 'isindex':
                        /* Parse error. */
                        // w/e

                        /* If the form element pointer is not null,
                        then ignore the token. */
                        if ($this->form_pointer === null) {
                            /* Act as if a start tag token with the tag name "form" had
                            been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'body',
                                    'type' => HTML5::STARTTAG,
                                    'attr' => array()
                                )
                            );

                            /* Act as if a start tag token with the tag name "hr" had
                            been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'hr',
                                    'type' => HTML5::STARTTAG,
                                    'attr' => array()
                                )
                            );

                            /* Act as if a start tag token with the tag name "p" had
                            been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::STARTTAG,
                                    'attr' => array()
                                )
                            );

                            /* Act as if a start tag token with the tag name "label"
                            had been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'label',
                                    'type' => HTML5::STARTTAG,
                                    'attr' => array()
                                )
                            );

                            /* Act as if a stream of character tokens had been seen. */
                            $this->insertText(
                                'This is a searchable index. ' .
                                'Insert your search keywords here: '
                            );

                            /* Act as if a start tag token with the tag name "input"
                            had been seen, with all the attributes from the "isindex"
                            token, except with the "name" attribute set to the value
                            "isindex" (ignoring any explicit "name" attribute). */
                            $attr = $token['attr'];
                            $attr[] = array('name' => 'name', 'value' => 'isindex');

                            $this->inBody(
                                array(
                                    'name' => 'input',
                                    'type' => HTML5::STARTTAG,
                                    'attr' => $attr
                                )
                            );

                            /* Act as if a stream of character tokens had been seen
                            (see below for what they should say). */
                            $this->insertText(
                                'This is a searchable index. ' .
                                'Insert your search keywords here: '
                            );

                            /* Act as if an end tag token with the tag name "label"
                            had been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'label',
                                    'type' => HTML5::ENDTAG
                                )
                            );

                            /* Act as if an end tag token with the tag name "p" had
                            been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'p',
                                    'type' => HTML5::ENDTAG
                                )
                            );

                            /* Act as if a start tag token with the tag name "hr" had
                            been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'hr',
                                    'type' => HTML5::ENDTAG
                                )
                            );

                            /* Act as if an end tag token with the tag name "form" had
                            been seen. */
                            $this->inBody(
                                array(
                                    'name' => 'form',
                                    'type' => HTML5::ENDTAG
                                )
                            );
                        }
                        break;

                    /* A start tag whose tag name is "textarea" */
                    case 'textarea':
                        $this->insertElement($token);

                        /* Switch the tokeniser's content model flag to the
                        RCDATA state. */
                        return HTML5::RCDATA;
                        break;

                    /* A start tag whose tag name is one of: "iframe", "noembed",
                    "noframes" */
                    case 'iframe':
                    case 'noembed':
                    case 'noframes':
                        $this->insertElement($token);

                        /* Switch the tokeniser's content model flag to the CDATA state. */
                        return HTML5::CDATA;
                        break;

                    /* A start tag whose tag name is "select" */
                    case 'select':
                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        /* Insert an HTML element for the token. */
                        $this->insertElement($token);

                        /* Change the insertion mode to "in select". */
                        $this->mode = self::IN_SELECT;
                        break;

                    /* A start or end tag whose tag name is one of: "caption", "col",
                    "colgroup", "frame", "frameset", "head", "option", "optgroup",
                    "tbody", "td", "tfoot", "th", "thead", "tr". */
                    case 'caption':
                    case 'col':
                    case 'colgroup':
                    case 'frame':
                    case 'frameset':
                    case 'head':
                    case 'option':
                    case 'optgroup':
                    case 'tbody':
                    case 'td':
                    case 'tfoot':
                    case 'th':
                    case 'thead':
                    case 'tr':
                        // Parse error. Ignore the token.
                        break;

                    /* A start or end tag whose tag name is one of: "event-source",
                    "section", "nav", "article", "aside", "header", "footer",
                    "datagrid", "command" */
                    case 'event-source':
                    case 'section':
                    case 'nav':
                    case 'article':
                    case 'aside':
                    case 'header':
                    case 'footer':
                    case 'datagrid':
                    case 'command':
                        // Work in progress!
                        break;

                    /* A start tag token not covered by the previous entries */
                    default:
                        /* Reconstruct the active formatting elements, if any. */
                        $this->reconstructActiveFormattingElements();

                        $this->insertElement($token, true, true);
                        break;
                }
                break;

            case HTML5::ENDTAG:
                switch ($token['name']) {
                    /* An end tag with the tag name "body" */
                    case 'body':
                        /* If the second element in the stack of open elements is
                        not a body element, this is a parse error. Ignore the token.
                        (innerHTML case) */
                        if (count($this->stack) < 2 || $this->stack[1]->nodeName !== 'body') {
                            // Ignore.

                            /* If the current node is not the body element, then this
                            is a parse error. */
                        } elseif (end($this->stack)->nodeName !== 'body') {
                            // Parse error.
                        }

                        /* Change the insertion mode to "after body". */
                        $this->mode = self::AFTER_BODY;
                        break;

                    /* An end tag with the tag name "html" */
                    case 'html':
                        /* Act as if an end tag with tag name "body" had been seen,
                        then, if that token wasn't ignored, reprocess the current
                        token. */
                        $this->inBody(
                            array(
                                'name' => 'body',
                                'type' => HTML5::ENDTAG
                            )
                        );

                        return $this->afterBody($token);
                        break;

                    /* An end tag whose tag name is one of: "address", "blockquote",
                    "center", "dir", "div", "dl", "fieldset", "listing", "menu",
                    "ol", "pre", "ul" */
                    case 'address':
                    case 'blockquote':
                    case 'center':
                    case 'dir':
                    case 'div':
                    case 'dl':
                    case 'fieldset':
                    case 'listing':
                    case 'menu':
                    case 'ol':
                    case 'pre':
                    case 'ul':
                        /* If the stack of open elements has an element in scope
                        with the same tag name as that of the token, then generate
                        implied end tags. */
                        if ($this->elementInScope($token['name'])) {
                            $this->generateImpliedEndTags();

                            /* Now, if the current node is not an element with
                            the same tag name as that of the token, then this
                            is a parse error. */
                            // w/e

                            /* If the stack of open elements has an element in
                            scope with the same tag name as that of the token,
                            then pop elements from this stack until an element
                            with that tag name has been popped from the stack. */
                            for ($n = count($this->stack) - 1; $n >= 0; $n--) {
                                if ($this->stack[$n]->nodeName === $token['name']) {
                                    $n = -1;
                                }

                                array_pop($this->stack);
                            }
                        }
                        break;

                    /* An end tag whose tag name is "form" */
                    case 'form':
                        /* If the stack of open elements has an element in scope
                        with the same tag name as that of the token, then generate
                        implied    end tags. */
                        if ($this->elementInScope($token['name'])) {
                            $this->generateImpliedEndTags();

                        }

                        if (end($this->stack)->nodeName !== $token['name']) {
                            /* Now, if the current node is not an element with the
                            same tag name as that of the token, then this is a parse
                            error. */
                            // w/e

                        } else {
                            /* Otherwise, if the current node is an element with
                            the same tag name as that of the token pop that element
                            from the stack. */
                            array_pop($this->stack);
                        }

                        /* In any case, set the form element pointer to null. */
                        $this->form_pointer = null;
                        break;

                    /* An end tag whose tag name is "p" */
                    case 'p':
                        /* If the stack of open elements has a p element in scope,
                        then generate implied end tags, except for p elements. */
                        if ($this->elementInScope('p')) {
                            $this->generateImpliedEndTags(array('p'));

                            /* If the current node is not a p element, then this is
                            a parse error. */
                            // k

                            /* If the stack of open elements has a p element in
                            scope, then pop elements from this stack until the stack
                            no longer has a p element in scope. */
                            for ($n = count($this->stack) - 1; $n >= 0; $n--) {
                                if ($this->elementInScope('p')) {
                                    array_pop($this->stack);

                                } else {
                                    break;
                                }
                            }
                        }
                        break;

                    /* An end tag whose tag name is "dd", "dt", or "li" */
                    case 'dd':
                    case 'dt':
                    case 'li':
                        /* If the stack of open elements has an element in scope
                        whose tag name matches the tag name of the token, then
                        generate implied end tags, except for elements with the
                        same tag name as the token. */
                        if ($this->elementInScope($token['name'])) {
                            $this->generateImpliedEndTags(array($token['name']));

                            /* If the current node is not an element with the same
                            tag name as the token, then this is a parse error. */
                            // w/e

                            /* If the stack of open elements has an element in scope
                            whose tag name matches the tag name of the token, then
                            pop elements from this stack until an element with that
                            tag name has been popped from the stack. */
                            for ($n = count($this->stack) - 1; $n >= 0; $n--) {
                                if ($this->stack[$n]->nodeName === $token['name']) {
                                    $n = -1;
                                }

                                array_pop($this->stack);
                            }
                        }
                        break;

                    /* An end tag whose tag name is one of: "h1", "h2", "h3", "h4",
                    "h5", "h6" */
                    case 'h1':
                    case 'h2':
                    case 'h3':
                    case 'h4':
                    case 'h5':
                    case 'h6':
                        $elements = array('h1', 'h2', 'h3', 'h4', 'h5', 'h6');

                        /* If the stack of open elements has in scope an element whose
                        tag name is one of "h1", "h2", "h3", "h4", "h5", or "h6", then
                        generate implied end tags. */
                        if ($this->elementInScope($elements)) {
                            $this->generateImpliedEndTags();

                            /* Now, if the current node is not an element with the same
                            tag name as that of the token, then this is a parse error. */
                            // w/e

                            /* If the stack of open elements has in scope an element
                            whose tag name is one of "h1", "h2", "h3", "h4", "h5", or
                            "h6", then pop elements from the stack until an element
                            with one of those tag names has been popped from the stack. */
                            while ($this->elementInScope($elements)) {
                                array_pop($this->stack);
                            }
                        }
                        break;

                    /* An end tag whose tag name is one of: "a", "b", "big", "em",
                    "font", "i", "nobr", "s", "small", "strike", "strong", "tt", "u" */
                    case 'a':
                    case 'b':
                    case 'big':
                    case 'em':
                    case 'font':
                    case 'i':
                    case 'nobr':
                    case 's':
                    case 'small':
                    case 'strike':
                    case 'strong':
                    case 'tt':
                    case 'u':
                        /* 1. Let the formatting element be the last element in
                        the list of active formatting elements that:
                            * is between the end of the list and the last scope
                            marker in the list, if any, or the start of the list
                            otherwise, and
                            * has the same tag name as the token.
                        */
                        while (true) {
                            for ($a = count($this->a_formatting) - 1; $a >= 0; $a--) {
                                if ($this->a_formatting[$a] === self::MARKER) {
                                    break;

                                } elseif ($this->a_formatting[$a]->tagName === $token['name']) {
                                    $formatting_element = $this->a_formatting[$a];
                                    $in_stack = in_array($formatting_element, $this->stack, true);
                                    $fe_af_pos = $a;
                                    break;
                                }
                            }

                            /* If there is no such node, or, if that node is
                            also in the stack of open elements but the element
                            is not in scope, then this is a parse error. Abort
                            these steps. The token is ignored. */
                            if (!isset($formatting_element) || ($in_stack &&
                                    !$this->elementInScope($token['name']))
                            ) {
                                break;

                                /* Otherwise, if there is such a node, but that node
                                is not in the stack of open elements, then this is a
                                parse error; remove the element from the list, and
                                abort these steps. */
                            } elseif (isset($formatting_element) && !$in_stack) {
                                unset($this->a_formatting[$fe_af_pos]);
                                $this->a_formatting = array_merge($this->a_formatting);
                                break;
                            }

                            /* 2. Let the furthest block be the topmost node in the
                            stack of open elements that is lower in the stack
                            than the formatting element, and is not an element in
                            the phrasing or formatting categories. There might
                            not be one. */
                            $fe_s_pos = array_search($formatting_element, $this->stack, true);
                            $length = count($this->stack);

                            for ($s = $fe_s_pos + 1; $s < $length; $s++) {
                                $category = $this->getElementCategory($this->stack[$s]->nodeName);

                                if ($category !== self::PHRASING && $category !== self::FORMATTING) {
                                    $furthest_block = $this->stack[$s];
                                }
                            }

                            /* 3. If there is no furthest block, then the UA must
                            skip the subsequent steps and instead just pop all
                            the nodes from the bottom of the stack of open
                            elements, from the current node up to the formatting
                            element, and remove the formatting element from the
                            list of active formatting elements. */
                            if (!isset($furthest_block)) {
                                for ($n = $length - 1; $n >= $fe_s_pos; $n--) {
                                    array_pop($this->stack);
                                }

                                unset($this->a_formatting[$fe_af_pos]);
                                $this->a_formatting = array_merge($this->a_formatting);
                                break;
                            }

                            /* 4. Let the common ancestor be the element
                            immediately above the formatting element in the stack
                            of open elements. */
                            $common_ancestor = $this->stack[$fe_s_pos - 1];

                            /* 5. If the furthest block has a parent node, then
                            remove the furthest block from its parent node. */
                            if ($furthest_block->parentNode !== null) {
                                $furthest_block->parentNode->removeChild($furthest_block);
                            }

                            /* 6. Let a bookmark note the position of the
                            formatting element in the list of active formatting
                            elements relative to the elements on either side
                            of it in the list. */
                            $bookmark = $fe_af_pos;

                            /* 7. Let node and last node  be the furthest block.
                            Follow these steps: */
                            $node = $furthest_block;
                            $last_node = $furthest_block;

                            while (true) {
                                for ($n = array_search($node, $this->stack, true) - 1; $n >= 0; $n--) {
                                    /* 7.1 Let node be the element immediately
                                    prior to node in the stack of open elements. */
                                    $node = $this->stack[$n];

                                    /* 7.2 If node is not in the list of active
                                    formatting elements, then remove node from
                                    the stack of open elements and then go back
                                    to step 1. */
                                    if (!in_array($node, $this->a_formatting, true)) {
                                        unset($this->stack[$n]);
                                        $this->stack = array_merge($this->stack);

                                    } else {
                                        break;
                                    }
                                }

                                /* 7.3 Otherwise, if node is the formatting
                                element, then go to the next step in the overall
                                algorithm. */
                                if ($node === $formatting_element) {
                                    break;

                                    /* 7.4 Otherwise, if last node is the furthest
                                    block, then move the aforementioned bookmark to
                                    be immediately after the node in the list of
                                    active formatting elements. */
                                } elseif ($last_node === $furthest_block) {
                                    $bookmark = array_search($node, $this->a_formatting, true) + 1;
                                }

                                /* 7.5 If node has any children, perform a
                                shallow clone of node, replace the entry for
                                node in the list of active formatting elements
                                with an entry for the clone, replace the entry
                                for node in the stack of open elements with an
                                entry for the clone, and let node be the clone. */
                                if ($node->hasChildNodes()) {
                                    $clone = $node->cloneNode();
                                    $s_pos = array_search($node, $this->stack, true);
                                    $a_pos = array_search($node, $this->a_formatting, true);

                                    $this->stack[$s_pos] = $clone;
                                    $this->a_formatting[$a_pos] = $clone;
                                    $node = $clone;
                                }

                                /* 7.6 Insert last node into node, first removing
                                it from its previous parent node if any. */
                                if ($last_node->parentNode !== null) {
                                    $last_node->parentNode->removeChild($last_node);
                                }

                                $node->appendChild($last_node);

                                /* 7.7 Let last node be node. */
                                $last_node = $node;
                            }

                            /* 8. Insert whatever last node ended up being in
                            the previous step into the common ancestor node,
                            first removing it from its previous parent node if
                            any. */
                            if ($last_node->parentNode !== null) {
                                $last_node->parentNode->removeChild($last_node);
                            }

                            $common_ancestor->appendChild($last_node);

                            /* 9. Perform a shallow clone of the formatting
                            element. */
                            $clone = $formatting_element->cloneNode();

                            /* 10. Take all of the child nodes of the furthest
                            block and append them to the clone created in the
                            last step. */
                            while ($furthest_block->hasChildNodes()) {
                                $child = $furthest_block->firstChild;
                                $furthest_block->removeChild($child);
                                $clone->appendChild($child);
                            }

                            /* 11. Append that clone to the furthest block. */
                            $furthest_block->appendChild($clone);

                            /* 12. Remove the formatting element from the list
                            of active formatting elements, and insert the clone
                            into the list of active formatting elements at the
                            position of the aforementioned bookmark. */
                            $fe_af_pos = array_search($formatting_element, $this->a_formatting, true);
                            unset($this->a_formatting[$fe_af_pos]);
                            $this->a_formatting = array_merge($this->a_formatting);

                            $af_part1 = array_slice($this->a_formatting, 0, $bookmark - 1);
                            $af_part2 = array_slice($this->a_formatting, $bookmark, count($this->a_formatting));
                            $this->a_formatting = array_merge($af_part1, array($clone), $af_part2);

                            /* 13. Remove the formatting element from the stack
                            of open elements, and insert the clone into the stack
                            of open elements immediately after (i.e. in a more
                            deeply nested position than) the position of the
                            furthest block in that stack. */
                            $fe_s_pos = array_search($formatting_element, $this->stack, true);
                            $fb_s_pos = array_search($furthest_block, $this->stack, true);
                            unset($this->stack[$fe_s_pos]);

                            $s_part1 = array_slice($this->stack, 0, $fb_s_pos);
                            $s_part2 = array_slice($this->stack, $fb_s_pos + 1, count($this->stack));
                            $this->stack = array_merge($s_part1, array($clone), $s_part2);

                            /* 14. Jump back to step 1 in this series of steps. */
                            unset($formatting_element, $fe_af_pos, $fe_s_pos, $furthest_block);
                        }
                        break;

                    /* An end tag token whose tag name is one of: "button",
                    "marquee", "object" */
                    case 'button':
                    case 'marquee':
                    case 'object':
                        /* If the stack of open elements has an element in scope whose
                        tag name matches the tag name of the token, then generate implied
                        tags. */
                        if ($this->elementInScope($token['name'])) {
                            $this->generateImpliedEndTags();

                            /* Now, if the current node is not an element with the same
                            tag name as the token, then this is a parse error. */
                            // k

                            /* Now, if the stack of open elements has an element in scope
                            whose tag name matches the tag name of the token, then pop
                            elements from the stack until that element has been popped from
                            the stack, and clear the list of active formatting elements up
                            to the last marker. */
                            for ($n = count($this->stack) - 1; $n >= 0; $n--) {
                                if ($this->stack[$n]->nodeName === $token['name']) {
                                    $n = -1;
                                }

                                array_pop($this->stack);
                            }

                            $marker = end(array_keys($this->a_formatting, self::MARKER, true));

                            for ($n = count($this->a_formatting) - 1; $n > $marker; $n--) {
                                array_pop($this->a_formatting);
                            }
                        }
                        break;

                    /* Or an end tag whose tag name is one of: "area", "basefont",
                    "bgsound", "br", "embed", "hr", "iframe", "image", "img",
                    "input", "isindex", "noembed", "noframes", "param", "select",
                    "spacer", "table", "textarea", "wbr" */
                    case 'area':
                    case 'basefont':
                    case 'bgsound':
                    case 'br':
                    case 'embed':
                    case 'hr':
                    case 'iframe':
                    case 'image':
                    case 'img':
                    case 'input':
                    case 'isindex':
                    case 'noembed':
                    case 'noframes':
                    case 'param':
                    case 'select':
                    case 'spacer':
                    case 'table':
                    case 'textarea':
                    case 'wbr':
                        // Parse error. Ignore the token.
                        break;

                    /* An end tag token not covered by the previous entries */
                    default:
                        for ($n = count($this->stack) - 1; $n >= 0; $n--) {
                            /* Initialise node to be the current node (the bottommost
                            node of the stack). */
                            $node = end($this->stack);

                            /* If node has the same tag name as the end tag token,
                            then: */
                            if ($token['name'] === $node->nodeName) {
                                /* Generate implied end tags. */
                                $this->generateImpliedEndTags();

                                /* If the tag name of the end tag token does not
                                match the tag name of the current node, this is a
                                parse error. */
                                // k

                                /* Pop all the nodes from the current node up to
                                node, including node, then stop this algorithm. */
                                for ($x = count($this->stack) - $n; $x >= $n; $x--) {
                                    array_pop($this->stack);
                                }

                            } else {
                                $category = $this->getElementCategory($node);

                                if ($category !== self::SPECIAL && $category !== self::SCOPING) {
                                    /* Otherwise, if node is in neither the formatting
                                    category nor the phrasing category, then this is a
                                    parse error. Stop this algorithm. The end tag token
                                    is ignored. */
                                    return false;
                                }
                            }
                        }
                        break;
                }
                break;
        }
    }

    private function inTable($token)
    {
        $clear = array('html', 'table');

        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        or U+0020 SPACE */
        if ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Append the character to the current node. */
            $text = $this->dom->createTextNode($token['data']);
            end($this->stack)->appendChild($text);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data
            attribute set to the data given in the comment token. */
            $comment = $this->dom->createComment($token['data']);
            end($this->stack)->appendChild($comment);

            /* A start tag whose tag name is "caption" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            $token['name'] === 'caption'
        ) {
            /* Clear the stack back to a table context. */
            $this->clearStackToTableContext($clear);

            /* Insert a marker at the end of the list of active
            formatting elements. */
            $this->a_formatting[] = self::MARKER;

            /* Insert an HTML element for the token, then switch the
            insertion mode to "in caption". */
            $this->insertElement($token);
            $this->mode = self::IN_CAPTION;

            /* A start tag whose tag name is "colgroup" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            $token['name'] === 'colgroup'
        ) {
            /* Clear the stack back to a table context. */
            $this->clearStackToTableContext($clear);

            /* Insert an HTML element for the token, then switch the
            insertion mode to "in column group". */
            $this->insertElement($token);
            $this->mode = self::IN_CGROUP;

            /* A start tag whose tag name is "col" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            $token['name'] === 'col'
        ) {
            $this->inTable(
                array(
                    'name' => 'colgroup',
                    'type' => HTML5::STARTTAG,
                    'attr' => array()
                )
            );

            $this->inColumnGroup($token);

            /* A start tag whose tag name is one of: "tbody", "tfoot", "thead" */
        } elseif ($token['type'] === HTML5::STARTTAG && in_array(
                $token['name'],
                array('tbody', 'tfoot', 'thead')
            )
        ) {
            /* Clear the stack back to a table context. */
            $this->clearStackToTableContext($clear);

            /* Insert an HTML element for the token, then switch the insertion
            mode to "in table body". */
            $this->insertElement($token);
            $this->mode = self::IN_TBODY;

            /* A start tag whose tag name is one of: "td", "th", "tr" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            in_array($token['name'], array('td', 'th', 'tr'))
        ) {
            /* Act as if a start tag token with the tag name "tbody" had been
            seen, then reprocess the current token. */
            $this->inTable(
                array(
                    'name' => 'tbody',
                    'type' => HTML5::STARTTAG,
                    'attr' => array()
                )
            );

            return $this->inTableBody($token);

            /* A start tag whose tag name is "table" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            $token['name'] === 'table'
        ) {
            /* Parse error. Act as if an end tag token with the tag name "table"
            had been seen, then, if that token wasn't ignored, reprocess the
            current token. */
            $this->inTable(
                array(
                    'name' => 'table',
                    'type' => HTML5::ENDTAG
                )
            );

            return $this->mainPhase($token);

            /* An end tag whose tag name is "table" */
        } elseif ($token['type'] === HTML5::ENDTAG &&
            $token['name'] === 'table'
        ) {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as the token, this is a parse error.
            Ignore the token. (innerHTML case) */
            if (!$this->elementInScope($token['name'], true)) {
                return false;

                /* Otherwise: */
            } else {
                /* Generate implied end tags. */
                $this->generateImpliedEndTags();

                /* Now, if the current node is not a table element, then this
                is a parse error. */
                // w/e

                /* Pop elements from this stack until a table element has been
                popped from the stack. */
                while (true) {
                    $current = end($this->stack)->nodeName;
                    array_pop($this->stack);

                    if ($current === 'table') {
                        break;
                    }
                }

                /* Reset the insertion mode appropriately. */
                $this->resetInsertionMode();
            }

            /* An end tag whose tag name is one of: "body", "caption", "col",
            "colgroup", "html", "tbody", "td", "tfoot", "th", "thead", "tr" */
        } elseif ($token['type'] === HTML5::ENDTAG && in_array(
                $token['name'],
                array(
                    'body',
                    'caption',
                    'col',
                    'colgroup',
                    'html',
                    'tbody',
                    'td',
                    'tfoot',
                    'th',
                    'thead',
                    'tr'
                )
            )
        ) {
            // Parse error. Ignore the token.

            /* Anything else */
        } else {
            /* Parse error. Process the token as if the insertion mode was "in
            body", with the following exception: */

            /* If the current node is a table, tbody, tfoot, thead, or tr
            element, then, whenever a node would be inserted into the current
            node, it must instead be inserted into the foster parent element. */
            if (in_array(
                end($this->stack)->nodeName,
                array('table', 'tbody', 'tfoot', 'thead', 'tr')
            )
            ) {
                /* The foster parent element is the parent element of the last
                table element in the stack of open elements, if there is a
                table element and it has such a parent element. If there is no
                table element in the stack of open elements (innerHTML case),
                then the foster parent element is the first element in the
                stack of open elements (the html  element). Otherwise, if there
                is a table element in the stack of open elements, but the last
                table element in the stack of open elements has no parent, or
                its parent node is not an element, then the foster parent
                element is the element before the last table element in the
                stack of open elements. */
                for ($n = count($this->stack) - 1; $n >= 0; $n--) {
                    if ($this->stack[$n]->nodeName === 'table') {
                        $table = $this->stack[$n];
                        break;
                    }
                }

                if (isset($table) && $table->parentNode !== null) {
                    $this->foster_parent = $table->parentNode;

                } elseif (!isset($table)) {
                    $this->foster_parent = $this->stack[0];

                } elseif (isset($table) && ($table->parentNode === null ||
                        $table->parentNode->nodeType !== XML_ELEMENT_NODE)
                ) {
                    $this->foster_parent = $this->stack[$n - 1];
                }
            }

            $this->inBody($token);
        }
    }

    private function inCaption($token)
    {
        /* An end tag whose tag name is "caption" */
        if ($token['type'] === HTML5::ENDTAG && $token['name'] === 'caption') {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as the token, this is a parse error.
            Ignore the token. (innerHTML case) */
            if (!$this->elementInScope($token['name'], true)) {
                // Ignore

                /* Otherwise: */
            } else {
                /* Generate implied end tags. */
                $this->generateImpliedEndTags();

                /* Now, if the current node is not a caption element, then this
                is a parse error. */
                // w/e

                /* Pop elements from this stack until a caption element has
                been popped from the stack. */
                while (true) {
                    $node = end($this->stack)->nodeName;
                    array_pop($this->stack);

                    if ($node === 'caption') {
                        break;
                    }
                }

                /* Clear the list of active formatting elements up to the last
                marker. */
                $this->clearTheActiveFormattingElementsUpToTheLastMarker();

                /* Switch the insertion mode to "in table". */
                $this->mode = self::IN_TABLE;
            }

            /* A start tag whose tag name is one of: "caption", "col", "colgroup",
            "tbody", "td", "tfoot", "th", "thead", "tr", or an end tag whose tag
            name is "table" */
        } elseif (($token['type'] === HTML5::STARTTAG && in_array(
                    $token['name'],
                    array(
                        'caption',
                        'col',
                        'colgroup',
                        'tbody',
                        'td',
                        'tfoot',
                        'th',
                        'thead',
                        'tr'
                    )
                )) || ($token['type'] === HTML5::ENDTAG &&
                $token['name'] === 'table')
        ) {
            /* Parse error. Act as if an end tag with the tag name "caption"
            had been seen, then, if that token wasn't ignored, reprocess the
            current token. */
            $this->inCaption(
                array(
                    'name' => 'caption',
                    'type' => HTML5::ENDTAG
                )
            );

            return $this->inTable($token);

            /* An end tag whose tag name is one of: "body", "col", "colgroup",
            "html", "tbody", "td", "tfoot", "th", "thead", "tr" */
        } elseif ($token['type'] === HTML5::ENDTAG && in_array(
                $token['name'],
                array(
                    'body',
                    'col',
                    'colgroup',
                    'html',
                    'tbody',
                    'tfoot',
                    'th',
                    'thead',
                    'tr'
                )
            )
        ) {
            // Parse error. Ignore the token.

            /* Anything else */
        } else {
            /* Process the token as if the insertion mode was "in body". */
            $this->inBody($token);
        }
    }

    private function inColumnGroup($token)
    {
        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        or U+0020 SPACE */
        if ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Append the character to the current node. */
            $text = $this->dom->createTextNode($token['data']);
            end($this->stack)->appendChild($text);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data
            attribute set to the data given in the comment token. */
            $comment = $this->dom->createComment($token['data']);
            end($this->stack)->appendChild($comment);

            /* A start tag whose tag name is "col" */
        } elseif ($token['type'] === HTML5::STARTTAG && $token['name'] === 'col') {
            /* Insert a col element for the token. Immediately pop the current
            node off the stack of open elements. */
            $this->insertElement($token);
            array_pop($this->stack);

            /* An end tag whose tag name is "colgroup" */
        } elseif ($token['type'] === HTML5::ENDTAG &&
            $token['name'] === 'colgroup'
        ) {
            /* If the current node is the root html element, then this is a
            parse error, ignore the token. (innerHTML case) */
            if (end($this->stack)->nodeName === 'html') {
                // Ignore

                /* Otherwise, pop the current node (which will be a colgroup
                element) from the stack of open elements. Switch the insertion
                mode to "in table". */
            } else {
                array_pop($this->stack);
                $this->mode = self::IN_TABLE;
            }

            /* An end tag whose tag name is "col" */
        } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'col') {
            /* Parse error. Ignore the token. */

            /* Anything else */
        } else {
            /* Act as if an end tag with the tag name "colgroup" had been seen,
            and then, if that token wasn't ignored, reprocess the current token. */
            $this->inColumnGroup(
                array(
                    'name' => 'colgroup',
                    'type' => HTML5::ENDTAG
                )
            );

            return $this->inTable($token);
        }
    }

    private function inTableBody($token)
    {
        $clear = array('tbody', 'tfoot', 'thead', 'html');

        /* A start tag whose tag name is "tr" */
        if ($token['type'] === HTML5::STARTTAG && $token['name'] === 'tr') {
            /* Clear the stack back to a table body context. */
            $this->clearStackToTableContext($clear);

            /* Insert a tr element for the token, then switch the insertion
            mode to "in row". */
            $this->insertElement($token);
            $this->mode = self::IN_ROW;

            /* A start tag whose tag name is one of: "th", "td" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            ($token['name'] === 'th' || $token['name'] === 'td')
        ) {
            /* Parse error. Act as if a start tag with the tag name "tr" had
            been seen, then reprocess the current token. */
            $this->inTableBody(
                array(
                    'name' => 'tr',
                    'type' => HTML5::STARTTAG,
                    'attr' => array()
                )
            );

            return $this->inRow($token);

            /* An end tag whose tag name is one of: "tbody", "tfoot", "thead" */
        } elseif ($token['type'] === HTML5::ENDTAG &&
            in_array($token['name'], array('tbody', 'tfoot', 'thead'))
        ) {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as the token, this is a parse error.
            Ignore the token. */
            if (!$this->elementInScope($token['name'], true)) {
                // Ignore

                /* Otherwise: */
            } else {
                /* Clear the stack back to a table body context. */
                $this->clearStackToTableContext($clear);

                /* Pop the current node from the stack of open elements. Switch
                the insertion mode to "in table". */
                array_pop($this->stack);
                $this->mode = self::IN_TABLE;
            }

            /* A start tag whose tag name is one of: "caption", "col", "colgroup",
            "tbody", "tfoot", "thead", or an end tag whose tag name is "table" */
        } elseif (($token['type'] === HTML5::STARTTAG && in_array(
                    $token['name'],
                    array('caption', 'col', 'colgroup', 'tbody', 'tfoor', 'thead')
                )) ||
            ($token['type'] === HTML5::STARTTAG && $token['name'] === 'table')
        ) {
            /* If the stack of open elements does not have a tbody, thead, or
            tfoot element in table scope, this is a parse error. Ignore the
            token. (innerHTML case) */
            if (!$this->elementInScope(array('tbody', 'thead', 'tfoot'), true)) {
                // Ignore.

                /* Otherwise: */
            } else {
                /* Clear the stack back to a table body context. */
                $this->clearStackToTableContext($clear);

                /* Act as if an end tag with the same tag name as the current
                node ("tbody", "tfoot", or "thead") had been seen, then
                reprocess the current token. */
                $this->inTableBody(
                    array(
                        'name' => end($this->stack)->nodeName,
                        'type' => HTML5::ENDTAG
                    )
                );

                return $this->mainPhase($token);
            }

            /* An end tag whose tag name is one of: "body", "caption", "col",
            "colgroup", "html", "td", "th", "tr" */
        } elseif ($token['type'] === HTML5::ENDTAG && in_array(
                $token['name'],
                array('body', 'caption', 'col', 'colgroup', 'html', 'td', 'th', 'tr')
            )
        ) {
            /* Parse error. Ignore the token. */

            /* Anything else */
        } else {
            /* Process the token as if the insertion mode was "in table". */
            $this->inTable($token);
        }
    }

    private function inRow($token)
    {
        $clear = array('tr', 'html');

        /* A start tag whose tag name is one of: "th", "td" */
        if ($token['type'] === HTML5::STARTTAG &&
            ($token['name'] === 'th' || $token['name'] === 'td')
        ) {
            /* Clear the stack back to a table row context. */
            $this->clearStackToTableContext($clear);

            /* Insert an HTML element for the token, then switch the insertion
            mode to "in cell". */
            $this->insertElement($token);
            $this->mode = self::IN_CELL;

            /* Insert a marker at the end of the list of active formatting
            elements. */
            $this->a_formatting[] = self::MARKER;

            /* An end tag whose tag name is "tr" */
        } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'tr') {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as the token, this is a parse error.
            Ignore the token. (innerHTML case) */
            if (!$this->elementInScope($token['name'], true)) {
                // Ignore.

                /* Otherwise: */
            } else {
                /* Clear the stack back to a table row context. */
                $this->clearStackToTableContext($clear);

                /* Pop the current node (which will be a tr element) from the
                stack of open elements. Switch the insertion mode to "in table
                body". */
                array_pop($this->stack);
                $this->mode = self::IN_TBODY;
            }

            /* A start tag whose tag name is one of: "caption", "col", "colgroup",
            "tbody", "tfoot", "thead", "tr" or an end tag whose tag name is "table" */
        } elseif ($token['type'] === HTML5::STARTTAG && in_array(
                $token['name'],
                array('caption', 'col', 'colgroup', 'tbody', 'tfoot', 'thead', 'tr')
            )
        ) {
            /* Act as if an end tag with the tag name "tr" had been seen, then,
            if that token wasn't ignored, reprocess the current token. */
            $this->inRow(
                array(
                    'name' => 'tr',
                    'type' => HTML5::ENDTAG
                )
            );

            return $this->inCell($token);

            /* An end tag whose tag name is one of: "tbody", "tfoot", "thead" */
        } elseif ($token['type'] === HTML5::ENDTAG &&
            in_array($token['name'], array('tbody', 'tfoot', 'thead'))
        ) {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as the token, this is a parse error.
            Ignore the token. */
            if (!$this->elementInScope($token['name'], true)) {
                // Ignore.

                /* Otherwise: */
            } else {
                /* Otherwise, act as if an end tag with the tag name "tr" had
                been seen, then reprocess the current token. */
                $this->inRow(
                    array(
                        'name' => 'tr',
                        'type' => HTML5::ENDTAG
                    )
                );

                return $this->inCell($token);
            }

            /* An end tag whose tag name is one of: "body", "caption", "col",
            "colgroup", "html", "td", "th" */
        } elseif ($token['type'] === HTML5::ENDTAG && in_array(
                $token['name'],
                array('body', 'caption', 'col', 'colgroup', 'html', 'td', 'th', 'tr')
            )
        ) {
            /* Parse error. Ignore the token. */

            /* Anything else */
        } else {
            /* Process the token as if the insertion mode was "in table". */
            $this->inTable($token);
        }
    }

    private function inCell($token)
    {
        /* An end tag whose tag name is one of: "td", "th" */
        if ($token['type'] === HTML5::ENDTAG &&
            ($token['name'] === 'td' || $token['name'] === 'th')
        ) {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as that of the token, then this is a
            parse error and the token must be ignored. */
            if (!$this->elementInScope($token['name'], true)) {
                // Ignore.

                /* Otherwise: */
            } else {
                /* Generate implied end tags, except for elements with the same
                tag name as the token. */
                $this->generateImpliedEndTags(array($token['name']));

                /* Now, if the current node is not an element with the same tag
                name as the token, then this is a parse error. */
                // k

                /* Pop elements from this stack until an element with the same
                tag name as the token has been popped from the stack. */
                while (true) {
                    $node = end($this->stack)->nodeName;
                    array_pop($this->stack);

                    if ($node === $token['name']) {
                        break;
                    }
                }

                /* Clear the list of active formatting elements up to the last
                marker. */
                $this->clearTheActiveFormattingElementsUpToTheLastMarker();

                /* Switch the insertion mode to "in row". (The current node
                will be a tr element at this point.) */
                $this->mode = self::IN_ROW;
            }

            /* A start tag whose tag name is one of: "caption", "col", "colgroup",
            "tbody", "td", "tfoot", "th", "thead", "tr" */
        } elseif ($token['type'] === HTML5::STARTTAG && in_array(
                $token['name'],
                array(
                    'caption',
                    'col',
                    'colgroup',
                    'tbody',
                    'td',
                    'tfoot',
                    'th',
                    'thead',
                    'tr'
                )
            )
        ) {
            /* If the stack of open elements does not have a td or th element
            in table scope, then this is a parse error; ignore the token.
            (innerHTML case) */
            if (!$this->elementInScope(array('td', 'th'), true)) {
                // Ignore.

                /* Otherwise, close the cell (see below) and reprocess the current
                token. */
            } else {
                $this->closeCell();
                return $this->inRow($token);
            }

            /* A start tag whose tag name is one of: "caption", "col", "colgroup",
            "tbody", "td", "tfoot", "th", "thead", "tr" */
        } elseif ($token['type'] === HTML5::STARTTAG && in_array(
                $token['name'],
                array(
                    'caption',
                    'col',
                    'colgroup',
                    'tbody',
                    'td',
                    'tfoot',
                    'th',
                    'thead',
                    'tr'
                )
            )
        ) {
            /* If the stack of open elements does not have a td or th element
            in table scope, then this is a parse error; ignore the token.
            (innerHTML case) */
            if (!$this->elementInScope(array('td', 'th'), true)) {
                // Ignore.

                /* Otherwise, close the cell (see below) and reprocess the current
                token. */
            } else {
                $this->closeCell();
                return $this->inRow($token);
            }

            /* An end tag whose tag name is one of: "body", "caption", "col",
            "colgroup", "html" */
        } elseif ($token['type'] === HTML5::ENDTAG && in_array(
                $token['name'],
                array('body', 'caption', 'col', 'colgroup', 'html')
            )
        ) {
            /* Parse error. Ignore the token. */

            /* An end tag whose tag name is one of: "table", "tbody", "tfoot",
            "thead", "tr" */
        } elseif ($token['type'] === HTML5::ENDTAG && in_array(
                $token['name'],
                array('table', 'tbody', 'tfoot', 'thead', 'tr')
            )
        ) {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as that of the token (which can only
            happen for "tbody", "tfoot" and "thead", or, in the innerHTML case),
            then this is a parse error and the token must be ignored. */
            if (!$this->elementInScope($token['name'], true)) {
                // Ignore.

                /* Otherwise, close the cell (see below) and reprocess the current
                token. */
            } else {
                $this->closeCell();
                return $this->inRow($token);
            }

            /* Anything else */
        } else {
            /* Process the token as if the insertion mode was "in body". */
            $this->inBody($token);
        }
    }

    private function inSelect($token)
    {
        /* Handle the token as follows: */

        /* A character token */
        if ($token['type'] === HTML5::CHARACTR) {
            /* Append the token's character to the current node. */
            $this->insertText($token['data']);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data
            attribute set to the data given in the comment token. */
            $this->insertComment($token['data']);

            /* A start tag token whose tag name is "option" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            $token['name'] === 'option'
        ) {
            /* If the current node is an option element, act as if an end tag
            with the tag name "option" had been seen. */
            if (end($this->stack)->nodeName === 'option') {
                $this->inSelect(
                    array(
                        'name' => 'option',
                        'type' => HTML5::ENDTAG
                    )
                );
            }

            /* Insert an HTML element for the token. */
            $this->insertElement($token);

            /* A start tag token whose tag name is "optgroup" */
        } elseif ($token['type'] === HTML5::STARTTAG &&
            $token['name'] === 'optgroup'
        ) {
            /* If the current node is an option element, act as if an end tag
            with the tag name "option" had been seen. */
            if (end($this->stack)->nodeName === 'option') {
                $this->inSelect(
                    array(
                        'name' => 'option',
                        'type' => HTML5::ENDTAG
                    )
                );
            }

            /* If the current node is an optgroup element, act as if an end tag
            with the tag name "optgroup" had been seen. */
            if (end($this->stack)->nodeName === 'optgroup') {
                $this->inSelect(
                    array(
                        'name' => 'optgroup',
                        'type' => HTML5::ENDTAG
                    )
                );
            }

            /* Insert an HTML element for the token. */
            $this->insertElement($token);

            /* An end tag token whose tag name is "optgroup" */
        } elseif ($token['type'] === HTML5::ENDTAG &&
            $token['name'] === 'optgroup'
        ) {
            /* First, if the current node is an option element, and the node
            immediately before it in the stack of open elements is an optgroup
            element, then act as if an end tag with the tag name "option" had
            been seen. */
            $elements_in_stack = count($this->stack);

            if ($this->stack[$elements_in_stack - 1]->nodeName === 'option' &&
                $this->stack[$elements_in_stack - 2]->nodeName === 'optgroup'
            ) {
                $this->inSelect(
                    array(
                        'name' => 'option',
                        'type' => HTML5::ENDTAG
                    )
                );
            }

            /* If the current node is an optgroup element, then pop that node
            from the stack of open elements. Otherwise, this is a parse error,
            ignore the token. */
            if ($this->stack[$elements_in_stack - 1] === 'optgroup') {
                array_pop($this->stack);
            }

            /* An end tag token whose tag name is "option" */
        } elseif ($token['type'] === HTML5::ENDTAG &&
            $token['name'] === 'option'
        ) {
            /* If the current node is an option element, then pop that node
            from the stack of open elements. Otherwise, this is a parse error,
            ignore the token. */
            if (end($this->stack)->nodeName === 'option') {
                array_pop($this->stack);
            }

            /* An end tag whose tag name is "select" */
        } elseif ($token['type'] === HTML5::ENDTAG &&
            $token['name'] === 'select'
        ) {
            /* If the stack of open elements does not have an element in table
            scope with the same tag name as the token, this is a parse error.
            Ignore the token. (innerHTML case) */
            if (!$this->elementInScope($token['name'], true)) {
                // w/e

                /* Otherwise: */
            } else {
                /* Pop elements from the stack of open elements until a select
                element has been popped from the stack. */
                while (true) {
                    $current = end($this->stack)->nodeName;
                    array_pop($this->stack);

                    if ($current === 'select') {
                        break;
                    }
                }

                /* Reset the insertion mode appropriately. */
                $this->resetInsertionMode();
            }

            /* A start tag whose tag name is "select" */
        } elseif ($token['name'] === 'select' &&
            $token['type'] === HTML5::STARTTAG
        ) {
            /* Parse error. Act as if the token had been an end tag with the
            tag name "select" instead. */
            $this->inSelect(
                array(
                    'name' => 'select',
                    'type' => HTML5::ENDTAG
                )
            );

            /* An end tag whose tag name is one of: "caption", "table", "tbody",
            "tfoot", "thead", "tr", "td", "th" */
        } elseif (in_array(
                $token['name'],
                array(
                    'caption',
                    'table',
                    'tbody',
                    'tfoot',
                    'thead',
                    'tr',
                    'td',
                    'th'
                )
            ) && $token['type'] === HTML5::ENDTAG
        ) {
            /* Parse error. */
            // w/e

            /* If the stack of open elements has an element in table scope with
            the same tag name as that of the token, then act as if an end tag
            with the tag name "select" had been seen, and reprocess the token.
            Otherwise, ignore the token. */
            if ($this->elementInScope($token['name'], true)) {
                $this->inSelect(
                    array(
                        'name' => 'select',
                        'type' => HTML5::ENDTAG
                    )
                );

                $this->mainPhase($token);
            }

            /* Anything else */
        } else {
            /* Parse error. Ignore the token. */
        }
    }

    private function afterBody($token)
    {
        /* Handle the token as follows: */

        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        or U+0020 SPACE */
        if ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Process the token as it would be processed if the insertion mode
            was "in body". */
            $this->inBody($token);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the first element in the stack of open
            elements (the html element), with the data attribute set to the
            data given in the comment token. */
            $comment = $this->dom->createComment($token['data']);
            $this->stack[0]->appendChild($comment);

            /* An end tag with the tag name "html" */
        } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'html') {
            /* If the parser was originally created in order to handle the
            setting of an element's innerHTML attribute, this is a parse error;
            ignore the token. (The element will be an html element in this
            case.) (innerHTML case) */

            /* Otherwise, switch to the trailing end phase. */
            $this->phase = self::END_PHASE;

            /* Anything else */
        } else {
            /* Parse error. Set the insertion mode to "in body" and reprocess
            the token. */
            $this->mode = self::IN_BODY;
            return $this->inBody($token);
        }
    }

    private function inFrameset($token)
    {
        /* Handle the token as follows: */

        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        U+000D CARRIAGE RETURN (CR), or U+0020 SPACE */
        if ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Append the character to the current node. */
            $this->insertText($token['data']);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data
            attribute set to the data given in the comment token. */
            $this->insertComment($token['data']);

            /* A start tag with the tag name "frameset" */
        } elseif ($token['name'] === 'frameset' &&
            $token['type'] === HTML5::STARTTAG
        ) {
            $this->insertElement($token);

            /* An end tag with the tag name "frameset" */
        } elseif ($token['name'] === 'frameset' &&
            $token['type'] === HTML5::ENDTAG
        ) {
            /* If the current node is the root html element, then this is a
            parse error; ignore the token. (innerHTML case) */
            if (end($this->stack)->nodeName === 'html') {
                // Ignore

            } else {
                /* Otherwise, pop the current node from the stack of open
                elements. */
                array_pop($this->stack);

                /* If the parser was not originally created in order to handle
                the setting of an element's innerHTML attribute (innerHTML case),
                and the current node is no longer a frameset element, then change
                the insertion mode to "after frameset". */
                $this->mode = self::AFTR_FRAME;
            }

            /* A start tag with the tag name "frame" */
        } elseif ($token['name'] === 'frame' &&
            $token['type'] === HTML5::STARTTAG
        ) {
            /* Insert an HTML element for the token. */
            $this->insertElement($token);

            /* Immediately pop the current node off the stack of open elements. */
            array_pop($this->stack);

            /* A start tag with the tag name "noframes" */
        } elseif ($token['name'] === 'noframes' &&
            $token['type'] === HTML5::STARTTAG
        ) {
            /* Process the token as if the insertion mode had been "in body". */
            $this->inBody($token);

            /* Anything else */
        } else {
            /* Parse error. Ignore the token. */
        }
    }

    private function afterFrameset($token)
    {
        /* Handle the token as follows: */

        /* A character token that is one of one of U+0009 CHARACTER TABULATION,
        U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
        U+000D CARRIAGE RETURN (CR), or U+0020 SPACE */
        if ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Append the character to the current node. */
            $this->insertText($token['data']);

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the current node with the data
            attribute set to the data given in the comment token. */
            $this->insertComment($token['data']);

            /* An end tag with the tag name "html" */
        } elseif ($token['name'] === 'html' &&
            $token['type'] === HTML5::ENDTAG
        ) {
            /* Switch to the trailing end phase. */
            $this->phase = self::END_PHASE;

            /* A start tag with the tag name "noframes" */
        } elseif ($token['name'] === 'noframes' &&
            $token['type'] === HTML5::STARTTAG
        ) {
            /* Process the token as if the insertion mode had been "in body". */
            $this->inBody($token);

            /* Anything else */
        } else {
            /* Parse error. Ignore the token. */
        }
    }

    private function trailingEndPhase($token)
    {
        /* After the main phase, as each token is emitted from the tokenisation
        stage, it must be processed as described in this section. */

        /* A DOCTYPE token */
        if ($token['type'] === HTML5::DOCTYPE) {
            // Parse error. Ignore the token.

            /* A comment token */
        } elseif ($token['type'] === HTML5::COMMENT) {
            /* Append a Comment node to the Document object with the data
            attribute set to the data given in the comment token. */
            $comment = $this->dom->createComment($token['data']);
            $this->dom->appendChild($comment);

            /* A character token that is one of one of U+0009 CHARACTER TABULATION,
            U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
            or U+0020 SPACE */
        } elseif ($token['type'] === HTML5::CHARACTR &&
            preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])
        ) {
            /* Process the token as it would be processed in the main phase. */
            $this->mainPhase($token);

            /* A character token that is not one of U+0009 CHARACTER TABULATION,
            U+000A LINE FEED (LF), U+000B LINE TABULATION, U+000C FORM FEED (FF),
            or U+0020 SPACE. Or a start tag token. Or an end tag token. */
        } elseif (($token['type'] === HTML5::CHARACTR &&
                preg_match('/^[\t\n\x0b\x0c ]+$/', $token['data'])) ||
            $token['type'] === HTML5::STARTTAG || $token['type'] === HTML5::ENDTAG
        ) {
            /* Parse error. Switch back to the main phase and reprocess the
            token. */
            $this->phase = self::MAIN_PHASE;
            return $this->mainPhase($token);

            /* An end-of-file token */
        } elseif ($token['type'] === HTML5::EOF) {
            /* OMG DONE!! */
        }
    }

    private function insertElement($token, $append = true, $check = false)
    {
        // Proprietary workaround for libxml2's limitations with tag names
        if ($check) {
            // Slightly modified HTML5 tag-name modification,
            // removing anything that's not an ASCII letter, digit, or hyphen
            $token['name'] = preg_replace('/[^a-z0-9-]/i', '', $token['name']);
            // Remove leading hyphens and numbers
            $token['name'] = ltrim($token['name'], '-0..9');
            // In theory, this should ever be needed, but just in case
            if ($token['name'] === '') {
                $token['name'] = 'span';
            } // arbitrary generic choice
        }

        $el = $this->dom->createElement($token['name']);

        foreach ($token['attr'] as $attr) {
            if (!$el->hasAttribute($attr['name'])) {
                $el->setAttribute($attr['name'], $attr['value']);
            }
        }

        $this->appendToRealParent($el);
        $this->stack[] = $el;

        return $el;
    }

    private function insertText($data)
    {
        $text = $this->dom->createTextNode($data);
        $this->appendToRealParent($text);
    }

    private function insertComment($data)
    {
        $comment = $this->dom->createComment($data);
        $this->appendToRealParent($comment);
    }

    private function appendToRealParent($node)
    {
        if ($this->foster_parent === null) {
            end($this->stack)->appendChild($node);

        } elseif ($this->foster_parent !== null) {
            /* If the foster parent element is the parent element of the
            last table element in the stack of open elements, then the new
            node must be inserted immediately before the last table element
            in the stack of open elements in the foster parent element;
            otherwise, the new node must be appended to the foster parent
            element. */
            for ($n = count($this->stack) - 1; $n >= 0; $n--) {
                if ($this->stack[$n]->nodeName === 'table' &&
                    $this->stack[$n]->parentNode !== null
                ) {
                    $table = $this->stack[$n];
                    break;
                }
            }

            if (isset($table) && $this->foster_parent->isSameNode($table->parentNode)) {
                $this->foster_parent->insertBefore($node, $table);
            } else {
                $this->foster_parent->appendChild($node);
            }

            $this->foster_parent = null;
        }
    }

    private function elementInScope($el, $table = false)
    {
        if (is_array($el)) {
            foreach ($el as $element) {
                if ($this->elementInScope($element, $table)) {
                    return true;
                }
            }

            return false;
        }

        $leng = count($this->stack);

        for ($n = 0; $n < $leng; $n++) {
            /* 1. Initialise node to be the current node (the bottommost node of
            the stack). */
            $node = $this->stack[$leng - 1 - $n];

            if ($node->tagName === $el) {
                /* 2. If node is the target node, terminate in a match state. */
                return true;

            } elseif ($node->tagName === 'table') {
                /* 3. Otherwise, if node is a table element, terminate in a failure
                state. */
                return false;

            } elseif ($table === true && in_array(
                    $node->tagName,
                    array(
                        'caption',
                        'td',
                        'th',
                        'button',
                        'marquee',
                        'object'
                    )
                )
            ) {
                /* 4. Otherwise, if the algorithm is the "has an element in scope"
                variant (rather than the "has an element in table scope" variant),
                and node is one of the following, terminate in a failure state. */
                return false;

            } elseif ($node === $node->ownerDocument->documentElement) {
                /* 5. Otherwise, if node is an html element (root element), terminate
                in a failure state. (This can only happen if the node is the topmost
                node of the    stack of open elements, and prevents the next step from
                being invoked if there are no more elements in the stack.) */
                return false;
            }

            /* Otherwise, set node to the previous entry in the stack of open
            elements and return to step 2. (This will never fail, since the loop
            will always terminate in the previous step if the top of the stack
            is reached.) */
        }
    }

    private function reconstructActiveFormattingElements()
    {
        /* 1. If there are no entries in the list of active formatting elements,
        then there is nothing to reconstruct; stop this algorithm. */
        $formatting_elements = count($this->a_formatting);

        if ($formatting_elements === 0) {
            return false;
        }

        /* 3. Let entry be the last (most recently added) element in the list
        of active formatting elements. */
        $entry = end($this->a_formatting);

        /* 2. If the last (most recently added) entry in the list of active
        formatting elements is a marker, or if it is an element that is in the
        stack of open elements, then there is nothing to reconstruct; stop this
        algorithm. */
        if ($entry === self::MARKER || in_array($entry, $this->stack, true)) {
            return false;
        }

        for ($a = $formatting_elements - 1; $a >= 0; true) {
            /* 4. If there are no entries before entry in the list of active
            formatting elements, then jump to step 8. */
            if ($a === 0) {
                $step_seven = false;
                break;
            }

            /* 5. Let entry be the entry one earlier than entry in the list of
            active formatting elements. */
            $a--;
            $entry = $this->a_formatting[$a];

            /* 6. If entry is neither a marker nor an element that is also in
            thetack of open elements, go to step 4. */
            if ($entry === self::MARKER || in_array($entry, $this->stack, true)) {
                break;
            }
        }

        while (true) {
            /* 7. Let entry be the element one later than entry in the list of
            active formatting elements. */
            if (isset($step_seven) && $step_seven === true) {
                $a++;
                $entry = $this->a_formatting[$a];
            }

            /* 8. Perform a shallow clone of the element entry to obtain clone. */
            $clone = $entry->cloneNode();

            /* 9. Append clone to the current node and push it onto the stack
            of open elements  so that it is the new current node. */
            end($this->stack)->appendChild($clone);
            $this->stack[] = $clone;

            /* 10. Replace the entry for entry in the list with an entry for
            clone. */
            $this->a_formatting[$a] = $clone;

            /* 11. If the entry for clone in the list of active formatting
            elements is not the last entry in the list, return to step 7. */
            if (end($this->a_formatting) !== $clone) {
                $step_seven = true;
            } else {
                break;
            }
        }
    }

    private function clearTheActiveFormattingElementsUpToTheLastMarker()
    {
        /* When the steps below require the UA to clear the list of active
        formatting elements up to the last marker, the UA must perform the
        following steps: */

        while (true) {
            /* 1. Let entry be the last (most recently added) entry in the list
            of active formatting elements. */
            $entry = end($this->a_formatting);

            /* 2. Remove entry from the list of active formatting elements. */
            array_pop($this->a_formatting);

            /* 3. If entry was a marker, then stop the algorithm at this point.
            The list has been cleared up to the last marker. */
            if ($entry === self::MARKER) {
                break;
            }
        }
    }

    private function generateImpliedEndTags($exclude = array())
    {
        /* When the steps below require the UA to generate implied end tags,
        then, if the current node is a dd element, a dt element, an li element,
        a p element, a td element, a th  element, or a tr element, the UA must
        act as if an end tag with the respective tag name had been seen and
        then generate implied end tags again. */
        $node = end($this->stack);
        $elements = array_diff(array('dd', 'dt', 'li', 'p', 'td', 'th', 'tr'), $exclude);

        while (in_array(end($this->stack)->nodeName, $elements)) {
            array_pop($this->stack);
        }
    }

    private function getElementCategory($node)
    {
        $name = $node->tagName;
        if (in_array($name, $this->special)) {
            return self::SPECIAL;
        } elseif (in_array($name, $this->scoping)) {
            return self::SCOPING;
        } elseif (in_array($name, $this->formatting)) {
            return self::FORMATTING;
        } else {
            return self::PHRASING;
        }
    }

    private function clearStackToTableContext($elements)
    {
        /* When the steps above require the UA to clear the stack back to a
        table context, it means that the UA must, while the current node is not
        a table element or an html element, pop elements from the stack of open
        elements. If this causes any elements to be popped from the stack, then
        this is a parse error. */
        while (true) {
            $node = end($this->stack)->nodeName;

            if (in_array($node, $elements)) {
                break;
            } else {
                array_pop($this->stack);
            }
        }
    }

    private function resetInsertionMode()
    {
        /* 1. Let last be false. */
        $last = false;
        $leng = count($this->stack);

        for ($n = $leng - 1; $n >= 0; $n--) {
            /* 2. Let node be the last node in the stack of open elements. */
            $node = $this->stack[$n];

            /* 3. If node is the first node in the stack of open elements, then
            set last to true. If the element whose innerHTML  attribute is being
            set is neither a td  element nor a th element, then set node to the
            element whose innerHTML  attribute is being set. (innerHTML  case) */
            if ($this->stack[0]->isSameNode($node)) {
                $last = true;
            }

            /* 4. If node is a select element, then switch the insertion mode to
            "in select" and abort these steps. (innerHTML case) */
            if ($node->nodeName === 'select') {
                $this->mode = self::IN_SELECT;
                break;

                /* 5. If node is a td or th element, then switch the insertion mode
                to "in cell" and abort these steps. */
            } elseif ($node->nodeName === 'td' || $node->nodeName === 'th') {
                $this->mode = self::IN_CELL;
                break;

                /* 6. If node is a tr element, then switch the insertion mode to
                "in    row" and abort these steps. */
            } elseif ($node->nodeName === 'tr') {
                $this->mode = self::IN_ROW;
                break;

                /* 7. If node is a tbody, thead, or tfoot element, then switch the
                insertion mode to "in table body" and abort these steps. */
            } elseif (in_array($node->nodeName, array('tbody', 'thead', 'tfoot'))) {
                $this->mode = self::IN_TBODY;
                break;

                /* 8. If node is a caption element, then switch the insertion mode
                to "in caption" and abort these steps. */
            } elseif ($node->nodeName === 'caption') {
                $this->mode = self::IN_CAPTION;
                break;

                /* 9. If node is a colgroup element, then switch the insertion mode
                to "in column group" and abort these steps. (innerHTML case) */
            } elseif ($node->nodeName === 'colgroup') {
                $this->mode = self::IN_CGROUP;
                break;

                /* 10. If node is a table element, then switch the insertion mode
                to "in table" and abort these steps. */
            } elseif ($node->nodeName === 'table') {
                $this->mode = self::IN_TABLE;
                break;

                /* 11. If node is a head element, then switch the insertion mode
                to "in body" ("in body"! not "in head"!) and abort these steps.
                (innerHTML case) */
            } elseif ($node->nodeName === 'head') {
                $this->mode = self::IN_BODY;
                break;

                /* 12. If node is a body element, then switch the insertion mode to
                "in body" and abort these steps. */
            } elseif ($node->nodeName === 'body') {
                $this->mode = self::IN_BODY;
                break;

                /* 13. If node is a frameset element, then switch the insertion
                mode to "in frameset" and abort these steps. (innerHTML case) */
            } elseif ($node->nodeName === 'frameset') {
                $this->mode = self::IN_FRAME;
                break;

                /* 14. If node is an html element, then: if the head element
                pointer is null, switch the insertion mode to "before head",
                otherwise, switch the insertion mode to "after head". In either
                case, abort these steps. (innerHTML case) */
            } elseif ($node->nodeName === 'html') {
                $this->mode = ($this->head_pointer === null)
                    ? self::BEFOR_HEAD
                    : self::AFTER_HEAD;

                break;

                /* 15. If last is true, then set the insertion mode to "in body"
                and    abort these steps. (innerHTML case) */
            } elseif ($last) {
                $this->mode = self::IN_BODY;
                break;
            }
        }
    }

    private function closeCell()
    {
        /* If the stack of open elements has a td or th element in table scope,
        then act as if an end tag token with that tag name had been seen. */
        foreach (array('td', 'th') as $cell) {
            if ($this->elementInScope($cell, true)) {
                $this->inCell(
                    array(
                        'name' => $cell,
                        'type' => HTML5::ENDTAG
                    )
                );

                break;
            }
        }
    }

    public function save()
    {
        return $this->dom;
    }
}
lib/htmlpurifier/library/HTMLPurifier/Lexer/DirectLex.php000064400000050022151213256020017411 0ustar00<?php

/**
 * Our in-house implementation of a parser.
 *
 * A pure PHP parser, DirectLex has absolutely no dependencies, making
 * it a reasonably good default for PHP4.  Written with efficiency in mind,
 * it can be four times faster than HTMLPurifier_Lexer_PEARSax3, although it
 * pales in comparison to HTMLPurifier_Lexer_DOMLex.
 *
 * @todo Reread XML spec and document differences.
 */
class HTMLPurifier_Lexer_DirectLex extends HTMLPurifier_Lexer
{
    /**
     * @type bool
     */
    public $tracksLineNumbers = true;

    /**
     * Whitespace characters for str(c)spn.
     * @type string
     */
    protected $_whitespace = "\x20\x09\x0D\x0A";

    /**
     * Callback function for script CDATA fudge
     * @param array $matches, in form of array(opening tag, contents, closing tag)
     * @return string
     */
    protected function scriptCallback($matches)
    {
        return $matches[1] . htmlspecialchars($matches[2], ENT_COMPAT, 'UTF-8') . $matches[3];
    }

    /**
     * @param String $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array|HTMLPurifier_Token[]
     */
    public function tokenizeHTML($html, $config, $context)
    {
        // special normalization for script tags without any armor
        // our "armor" heurstic is a < sign any number of whitespaces after
        // the first script tag
        if ($config->get('HTML.Trusted')) {
            $html = preg_replace_callback(
                '#(<script[^>]*>)(\s*[^<].+?)(</script>)#si',
                array($this, 'scriptCallback'),
                $html
            );
        }

        $html = $this->normalize($html, $config, $context);

        $cursor = 0; // our location in the text
        $inside_tag = false; // whether or not we're parsing the inside of a tag
        $array = array(); // result array

        // This is also treated to mean maintain *column* numbers too
        $maintain_line_numbers = $config->get('Core.MaintainLineNumbers');

        if ($maintain_line_numbers === null) {
            // automatically determine line numbering by checking
            // if error collection is on
            $maintain_line_numbers = $config->get('Core.CollectErrors');
        }

        if ($maintain_line_numbers) {
            $current_line = 1;
            $current_col = 0;
            $length = strlen($html);
        } else {
            $current_line = false;
            $current_col = false;
            $length = false;
        }
        $context->register('CurrentLine', $current_line);
        $context->register('CurrentCol', $current_col);
        $nl = "\n";
        // how often to manually recalculate. This will ALWAYS be right,
        // but it's pretty wasteful. Set to 0 to turn off
        $synchronize_interval = $config->get('Core.DirectLexLineNumberSyncInterval');

        $e = false;
        if ($config->get('Core.CollectErrors')) {
            $e =& $context->get('ErrorCollector');
        }

        // for testing synchronization
        $loops = 0;

        while (++$loops) {
            // $cursor is either at the start of a token, or inside of
            // a tag (i.e. there was a < immediately before it), as indicated
            // by $inside_tag

            if ($maintain_line_numbers) {
                // $rcursor, however, is always at the start of a token.
                $rcursor = $cursor - (int)$inside_tag;

                // Column number is cheap, so we calculate it every round.
                // We're interested at the *end* of the newline string, so
                // we need to add strlen($nl) == 1 to $nl_pos before subtracting it
                // from our "rcursor" position.
                $nl_pos = strrpos($html, $nl, $rcursor - $length);
                $current_col = $rcursor - (is_bool($nl_pos) ? 0 : $nl_pos + 1);

                // recalculate lines
                if ($synchronize_interval && // synchronization is on
                    $cursor > 0 && // cursor is further than zero
                    $loops % $synchronize_interval === 0) { // time to synchronize!
                    $current_line = 1 + $this->substrCount($html, $nl, 0, $cursor);
                }
            }

            $position_next_lt = strpos($html, '<', $cursor);
            $position_next_gt = strpos($html, '>', $cursor);

            // triggers on "<b>asdf</b>" but not "asdf <b></b>"
            // special case to set up context
            if ($position_next_lt === $cursor) {
                $inside_tag = true;
                $cursor++;
            }

            if (!$inside_tag && $position_next_lt !== false) {
                // We are not inside tag and there still is another tag to parse
                $token = new
                HTMLPurifier_Token_Text(
                    $this->parseText(
                        substr(
                            $html,
                            $cursor,
                            $position_next_lt - $cursor
                        ), $config
                    )
                );
                if ($maintain_line_numbers) {
                    $token->rawPosition($current_line, $current_col);
                    $current_line += $this->substrCount($html, $nl, $cursor, $position_next_lt - $cursor);
                }
                $array[] = $token;
                $cursor = $position_next_lt + 1;
                $inside_tag = true;
                continue;
            } elseif (!$inside_tag) {
                // We are not inside tag but there are no more tags
                // If we're already at the end, break
                if ($cursor === strlen($html)) {
                    break;
                }
                // Create Text of rest of string
                $token = new
                HTMLPurifier_Token_Text(
                    $this->parseText(
                        substr(
                            $html,
                            $cursor
                        ), $config
                    )
                );
                if ($maintain_line_numbers) {
                    $token->rawPosition($current_line, $current_col);
                }
                $array[] = $token;
                break;
            } elseif ($inside_tag && $position_next_gt !== false) {
                // We are in tag and it is well formed
                // Grab the internals of the tag
                $strlen_segment = $position_next_gt - $cursor;

                if ($strlen_segment < 1) {
                    // there's nothing to process!
                    $token = new HTMLPurifier_Token_Text('<');
                    $cursor++;
                    continue;
                }

                $segment = substr($html, $cursor, $strlen_segment);

                if ($segment === false) {
                    // somehow, we attempted to access beyond the end of
                    // the string, defense-in-depth, reported by Nate Abele
                    break;
                }

                // Check if it's a comment
                if (substr($segment, 0, 3) === '!--') {
                    // re-determine segment length, looking for -->
                    $position_comment_end = strpos($html, '-->', $cursor);
                    if ($position_comment_end === false) {
                        // uh oh, we have a comment that extends to
                        // infinity. Can't be helped: set comment
                        // end position to end of string
                        if ($e) {
                            $e->send(E_WARNING, 'Lexer: Unclosed comment');
                        }
                        $position_comment_end = strlen($html);
                        $end = true;
                    } else {
                        $end = false;
                    }
                    $strlen_segment = $position_comment_end - $cursor;
                    $segment = substr($html, $cursor, $strlen_segment);
                    $token = new
                    HTMLPurifier_Token_Comment(
                        substr(
                            $segment,
                            3,
                            $strlen_segment - 3
                        )
                    );
                    if ($maintain_line_numbers) {
                        $token->rawPosition($current_line, $current_col);
                        $current_line += $this->substrCount($html, $nl, $cursor, $strlen_segment);
                    }
                    $array[] = $token;
                    $cursor = $end ? $position_comment_end : $position_comment_end + 3;
                    $inside_tag = false;
                    continue;
                }

                // Check if it's an end tag
                $is_end_tag = (strpos($segment, '/') === 0);
                if ($is_end_tag) {
                    $type = substr($segment, 1);
                    $token = new HTMLPurifier_Token_End($type);
                    if ($maintain_line_numbers) {
                        $token->rawPosition($current_line, $current_col);
                        $current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
                    }
                    $array[] = $token;
                    $inside_tag = false;
                    $cursor = $position_next_gt + 1;
                    continue;
                }

                // Check leading character is alnum, if not, we may
                // have accidently grabbed an emoticon. Translate into
                // text and go our merry way
                if (!ctype_alpha($segment[0])) {
                    // XML:  $segment[0] !== '_' && $segment[0] !== ':'
                    if ($e) {
                        $e->send(E_NOTICE, 'Lexer: Unescaped lt');
                    }
                    $token = new HTMLPurifier_Token_Text('<');
                    if ($maintain_line_numbers) {
                        $token->rawPosition($current_line, $current_col);
                        $current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
                    }
                    $array[] = $token;
                    $inside_tag = false;
                    continue;
                }

                // Check if it is explicitly self closing, if so, remove
                // trailing slash. Remember, we could have a tag like <br>, so
                // any later token processing scripts must convert improperly
                // classified EmptyTags from StartTags.
                $is_self_closing = (strrpos($segment, '/') === $strlen_segment - 1);
                if ($is_self_closing) {
                    $strlen_segment--;
                    $segment = substr($segment, 0, $strlen_segment);
                }

                // Check if there are any attributes
                $position_first_space = strcspn($segment, $this->_whitespace);

                if ($position_first_space >= $strlen_segment) {
                    if ($is_self_closing) {
                        $token = new HTMLPurifier_Token_Empty($segment);
                    } else {
                        $token = new HTMLPurifier_Token_Start($segment);
                    }
                    if ($maintain_line_numbers) {
                        $token->rawPosition($current_line, $current_col);
                        $current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
                    }
                    $array[] = $token;
                    $inside_tag = false;
                    $cursor = $position_next_gt + 1;
                    continue;
                }

                // Grab out all the data
                $type = substr($segment, 0, $position_first_space);
                $attribute_string =
                    trim(
                        substr(
                            $segment,
                            $position_first_space
                        )
                    );
                if ($attribute_string) {
                    $attr = $this->parseAttributeString(
                        $attribute_string,
                        $config,
                        $context
                    );
                } else {
                    $attr = array();
                }

                if ($is_self_closing) {
                    $token = new HTMLPurifier_Token_Empty($type, $attr);
                } else {
                    $token = new HTMLPurifier_Token_Start($type, $attr);
                }
                if ($maintain_line_numbers) {
                    $token->rawPosition($current_line, $current_col);
                    $current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
                }
                $array[] = $token;
                $cursor = $position_next_gt + 1;
                $inside_tag = false;
                continue;
            } else {
                // inside tag, but there's no ending > sign
                if ($e) {
                    $e->send(E_WARNING, 'Lexer: Missing gt');
                }
                $token = new
                HTMLPurifier_Token_Text(
                    '<' .
                    $this->parseText(
                        substr($html, $cursor), $config
                    )
                );
                if ($maintain_line_numbers) {
                    $token->rawPosition($current_line, $current_col);
                }
                // no cursor scroll? Hmm...
                $array[] = $token;
                break;
            }
            break;
        }

        $context->destroy('CurrentLine');
        $context->destroy('CurrentCol');
        return $array;
    }

    /**
     * PHP 5.0.x compatible substr_count that implements offset and length
     * @param string $haystack
     * @param string $needle
     * @param int $offset
     * @param int $length
     * @return int
     */
    protected function substrCount($haystack, $needle, $offset, $length)
    {
        static $oldVersion;
        if ($oldVersion === null) {
            $oldVersion = version_compare(PHP_VERSION, '5.1', '<');
        }
        if ($oldVersion) {
            $haystack = substr($haystack, $offset, $length);
            return substr_count($haystack, $needle);
        } else {
            return substr_count($haystack, $needle, $offset, $length);
        }
    }

    /**
     * Takes the inside of an HTML tag and makes an assoc array of attributes.
     *
     * @param string $string Inside of tag excluding name.
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array Assoc array of attributes.
     */
    public function parseAttributeString($string, $config, $context)
    {
        $string = (string)$string; // quick typecast

        if ($string == '') {
            return array();
        } // no attributes

        $e = false;
        if ($config->get('Core.CollectErrors')) {
            $e =& $context->get('ErrorCollector');
        }

        // let's see if we can abort as quickly as possible
        // one equal sign, no spaces => one attribute
        $num_equal = substr_count($string, '=');
        $has_space = strpos($string, ' ');
        if ($num_equal === 0 && !$has_space) {
            // bool attribute
            return array($string => $string);
        } elseif ($num_equal === 1 && !$has_space) {
            // only one attribute
            list($key, $quoted_value) = explode('=', $string);
            $quoted_value = trim($quoted_value);
            if (!$key) {
                if ($e) {
                    $e->send(E_ERROR, 'Lexer: Missing attribute key');
                }
                return array();
            }
            if (!$quoted_value) {
                return array($key => '');
            }
            $first_char = @$quoted_value[0];
            $last_char = @$quoted_value[strlen($quoted_value) - 1];

            $same_quote = ($first_char == $last_char);
            $open_quote = ($first_char == '"' || $first_char == "'");

            if ($same_quote && $open_quote) {
                // well behaved
                $value = substr($quoted_value, 1, strlen($quoted_value) - 2);
            } else {
                // not well behaved
                if ($open_quote) {
                    if ($e) {
                        $e->send(E_ERROR, 'Lexer: Missing end quote');
                    }
                    $value = substr($quoted_value, 1);
                } else {
                    $value = $quoted_value;
                }
            }
            if ($value === false) {
                $value = '';
            }
            return array($key => $this->parseAttr($value, $config));
        }

        // setup loop environment
        $array = array(); // return assoc array of attributes
        $cursor = 0; // current position in string (moves forward)
        $size = strlen($string); // size of the string (stays the same)

        // if we have unquoted attributes, the parser expects a terminating
        // space, so let's guarantee that there's always a terminating space.
        $string .= ' ';

        $old_cursor = -1;
        while ($cursor < $size) {
            if ($old_cursor >= $cursor) {
                throw new Exception("Infinite loop detected");
            }
            $old_cursor = $cursor;

            $cursor += ($value = strspn($string, $this->_whitespace, $cursor));
            // grab the key

            $key_begin = $cursor; //we're currently at the start of the key

            // scroll past all characters that are the key (not whitespace or =)
            $cursor += strcspn($string, $this->_whitespace . '=', $cursor);

            $key_end = $cursor; // now at the end of the key

            $key = substr($string, $key_begin, $key_end - $key_begin);

            if (!$key) {
                if ($e) {
                    $e->send(E_ERROR, 'Lexer: Missing attribute key');
                }
                $cursor += 1 + strcspn($string, $this->_whitespace, $cursor + 1); // prevent infinite loop
                continue; // empty key
            }

            // scroll past all whitespace
            $cursor += strspn($string, $this->_whitespace, $cursor);

            if ($cursor >= $size) {
                $array[$key] = $key;
                break;
            }

            // if the next character is an equal sign, we've got a regular
            // pair, otherwise, it's a bool attribute
            $first_char = @$string[$cursor];

            if ($first_char == '=') {
                // key="value"

                $cursor++;
                $cursor += strspn($string, $this->_whitespace, $cursor);

                if ($cursor === false) {
                    $array[$key] = '';
                    break;
                }

                // we might be in front of a quote right now

                $char = @$string[$cursor];

                if ($char == '"' || $char == "'") {
                    // it's quoted, end bound is $char
                    $cursor++;
                    $value_begin = $cursor;
                    $cursor = strpos($string, $char, $cursor);
                    $value_end = $cursor;
                } else {
                    // it's not quoted, end bound is whitespace
                    $value_begin = $cursor;
                    $cursor += strcspn($string, $this->_whitespace, $cursor);
                    $value_end = $cursor;
                }

                // we reached a premature end
                if ($cursor === false) {
                    $cursor = $size;
                    $value_end = $cursor;
                }

                $value = substr($string, $value_begin, $value_end - $value_begin);
                if ($value === false) {
                    $value = '';
                }
                $array[$key] = $this->parseAttr($value, $config);
                $cursor++;
            } else {
                // boolattr
                if ($key !== '') {
                    $array[$key] = $key;
                } else {
                    // purely theoretical
                    if ($e) {
                        $e->send(E_ERROR, 'Lexer: Missing attribute key');
                    }
                }
            }
        }
        return $array;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/PercentEncoder.php000064400000006755151213256020017365 0ustar00<?php

/**
 * Class that handles operations involving percent-encoding in URIs.
 *
 * @warning
 *      Be careful when reusing instances of PercentEncoder. The object
 *      you use for normalize() SHOULD NOT be used for encode(), or
 *      vice-versa.
 */
class HTMLPurifier_PercentEncoder
{

    /**
     * Reserved characters to preserve when using encode().
     * @type array
     */
    protected $preserve = array();

    /**
     * String of characters that should be preserved while using encode().
     * @param bool $preserve
     */
    public function __construct($preserve = false)
    {
        // unreserved letters, ought to const-ify
        for ($i = 48; $i <= 57; $i++) { // digits
            $this->preserve[$i] = true;
        }
        for ($i = 65; $i <= 90; $i++) { // upper-case
            $this->preserve[$i] = true;
        }
        for ($i = 97; $i <= 122; $i++) { // lower-case
            $this->preserve[$i] = true;
        }
        $this->preserve[45] = true; // Dash         -
        $this->preserve[46] = true; // Period       .
        $this->preserve[95] = true; // Underscore   _
        $this->preserve[126]= true; // Tilde        ~

        // extra letters not to escape
        if ($preserve !== false) {
            for ($i = 0, $c = strlen($preserve); $i < $c; $i++) {
                $this->preserve[ord($preserve[$i])] = true;
            }
        }
    }

    /**
     * Our replacement for urlencode, it encodes all non-reserved characters,
     * as well as any extra characters that were instructed to be preserved.
     * @note
     *      Assumes that the string has already been normalized, making any
     *      and all percent escape sequences valid. Percents will not be
     *      re-escaped, regardless of their status in $preserve
     * @param string $string String to be encoded
     * @return string Encoded string.
     */
    public function encode($string)
    {
        $ret = '';
        for ($i = 0, $c = strlen($string); $i < $c; $i++) {
            if ($string[$i] !== '%' && !isset($this->preserve[$int = ord($string[$i])])) {
                $ret .= '%' . sprintf('%02X', $int);
            } else {
                $ret .= $string[$i];
            }
        }
        return $ret;
    }

    /**
     * Fix up percent-encoding by decoding unreserved characters and normalizing.
     * @warning This function is affected by $preserve, even though the
     *          usual desired behavior is for this not to preserve those
     *          characters. Be careful when reusing instances of PercentEncoder!
     * @param string $string String to normalize
     * @return string
     */
    public function normalize($string)
    {
        if ($string == '') {
            return '';
        }
        $parts = explode('%', $string);
        $ret = array_shift($parts);
        foreach ($parts as $part) {
            $length = strlen($part);
            if ($length < 2) {
                $ret .= '%25' . $part;
                continue;
            }
            $encoding = substr($part, 0, 2);
            $text     = substr($part, 2);
            if (!ctype_xdigit($encoding)) {
                $ret .= '%25' . $part;
                continue;
            }
            $int = hexdec($encoding);
            if (isset($this->preserve[$int])) {
                $ret .= chr($int) . $text;
                continue;
            }
            $encoding = strtoupper($encoding);
            $ret .= '%' . $encoding . $text;
        }
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/URISchemeRegistry.php000064400000004551151213256020017772 0ustar00<?php

/**
 * Registry for retrieving specific URI scheme validator objects.
 */
class HTMLPurifier_URISchemeRegistry
{

    /**
     * Retrieve sole instance of the registry.
     * @param HTMLPurifier_URISchemeRegistry $prototype Optional prototype to overload sole instance with,
     *                   or bool true to reset to default registry.
     * @return HTMLPurifier_URISchemeRegistry
     * @note Pass a registry object $prototype with a compatible interface and
     *       the function will copy it and return it all further times.
     */
    public static function instance($prototype = null)
    {
        static $instance = null;
        if ($prototype !== null) {
            $instance = $prototype;
        } elseif ($instance === null || $prototype == true) {
            $instance = new HTMLPurifier_URISchemeRegistry();
        }
        return $instance;
    }

    /**
     * Cache of retrieved schemes.
     * @type HTMLPurifier_URIScheme[]
     */
    protected $schemes = array();

    /**
     * Retrieves a scheme validator object
     * @param string $scheme String scheme name like http or mailto
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_URIScheme
     */
    public function getScheme($scheme, $config, $context)
    {
        if (!$config) {
            $config = HTMLPurifier_Config::createDefault();
        }

        // important, otherwise attacker could include arbitrary file
        $allowed_schemes = $config->get('URI.AllowedSchemes');
        if (!$config->get('URI.OverrideAllowedSchemes') &&
            !isset($allowed_schemes[$scheme])
        ) {
            return;
        }

        if (isset($this->schemes[$scheme])) {
            return $this->schemes[$scheme];
        }
        if (!isset($allowed_schemes[$scheme])) {
            return;
        }

        $class = 'HTMLPurifier_URIScheme_' . $scheme;
        if (!class_exists($class)) {
            return;
        }
        $this->schemes[$scheme] = new $class();
        return $this->schemes[$scheme];
    }

    /**
     * Registers a custom scheme to the cache, bypassing reflection.
     * @param string $scheme Scheme name
     * @param HTMLPurifier_URIScheme $scheme_obj
     */
    public function register($scheme, $scheme_obj)
    {
        $this->schemes[$scheme] = $scheme_obj;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php000064400000015730151213256020017147 0ustar00<?php

/**
 * Definition for tables.  The general idea is to extract out all of the
 * essential bits, and then reconstruct it later.
 *
 * This is a bit confusing, because the DTDs and the W3C
 * validators seem to disagree on the appropriate definition. The
 * DTD claims:
 *
 *      (CAPTION?, (COL*|COLGROUP*), THEAD?, TFOOT?, TBODY+)
 *
 * But actually, the HTML4 spec then has this to say:
 *
 *      The TBODY start tag is always required except when the table
 *      contains only one table body and no table head or foot sections.
 *      The TBODY end tag may always be safely omitted.
 *
 * So the DTD is kind of wrong.  The validator is, unfortunately, kind
 * of on crack.
 *
 * The definition changed again in XHTML1.1; and in my opinion, this
 * formulation makes the most sense.
 *
 *      caption?, ( col* | colgroup* ), (( thead?, tfoot?, tbody+ ) | ( tr+ ))
 *
 * Essentially, we have two modes: thead/tfoot/tbody mode, and tr mode.
 * If we encounter a thead, tfoot or tbody, we are placed in the former
 * mode, and we *must* wrap any stray tr segments with a tbody. But if
 * we don't run into any of them, just have tr tags is OK.
 */
class HTMLPurifier_ChildDef_Table extends HTMLPurifier_ChildDef
{
    /**
     * @type bool
     */
    public $allow_empty = false;

    /**
     * @type string
     */
    public $type = 'table';

    /**
     * @type array
     */
    public $elements = array(
        'tr' => true,
        'tbody' => true,
        'thead' => true,
        'tfoot' => true,
        'caption' => true,
        'colgroup' => true,
        'col' => true
    );

    public function __construct()
    {
    }

    /**
     * @param array $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function validateChildren($children, $config, $context)
    {
        if (empty($children)) {
            return false;
        }

        // only one of these elements is allowed in a table
        $caption = false;
        $thead = false;
        $tfoot = false;

        // whitespace
        $initial_ws = array();
        $after_caption_ws = array();
        $after_thead_ws = array();
        $after_tfoot_ws = array();

        // as many of these as you want
        $cols = array();
        $content = array();

        $tbody_mode = false; // if true, then we need to wrap any stray
                             // <tr>s with a <tbody>.

        $ws_accum =& $initial_ws;

        foreach ($children as $node) {
            if ($node instanceof HTMLPurifier_Node_Comment) {
                $ws_accum[] = $node;
                continue;
            }
            switch ($node->name) {
            case 'tbody':
                $tbody_mode = true;
                // fall through
            case 'tr':
                $content[] = $node;
                $ws_accum =& $content;
                break;
            case 'caption':
                // there can only be one caption!
                if ($caption !== false)  break;
                $caption = $node;
                $ws_accum =& $after_caption_ws;
                break;
            case 'thead':
                $tbody_mode = true;
                // XXX This breaks rendering properties with
                // Firefox, which never floats a <thead> to
                // the top. Ever. (Our scheme will float the
                // first <thead> to the top.)  So maybe
                // <thead>s that are not first should be
                // turned into <tbody>? Very tricky, indeed.
                if ($thead === false) {
                    $thead = $node;
                    $ws_accum =& $after_thead_ws;
                } else {
                    // Oops, there's a second one! What
                    // should we do?  Current behavior is to
                    // transmutate the first and last entries into
                    // tbody tags, and then put into content.
                    // Maybe a better idea is to *attach
                    // it* to the existing thead or tfoot?
                    // We don't do this, because Firefox
                    // doesn't float an extra tfoot to the
                    // bottom like it does for the first one.
                    $node->name = 'tbody';
                    $content[] = $node;
                    $ws_accum =& $content;
                }
                break;
            case 'tfoot':
                // see above for some aveats
                $tbody_mode = true;
                if ($tfoot === false) {
                    $tfoot = $node;
                    $ws_accum =& $after_tfoot_ws;
                } else {
                    $node->name = 'tbody';
                    $content[] = $node;
                    $ws_accum =& $content;
                }
                break;
            case 'colgroup':
            case 'col':
                $cols[] = $node;
                $ws_accum =& $cols;
                break;
            case '#PCDATA':
                // How is whitespace handled? We treat is as sticky to
                // the *end* of the previous element. So all of the
                // nonsense we have worked on is to keep things
                // together.
                if (!empty($node->is_whitespace)) {
                    $ws_accum[] = $node;
                }
                break;
            }
        }

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

        $ret = $initial_ws;
        if ($caption !== false) {
            $ret[] = $caption;
            $ret = array_merge($ret, $after_caption_ws);
        }
        if ($cols !== false) {
            $ret = array_merge($ret, $cols);
        }
        if ($thead !== false) {
            $ret[] = $thead;
            $ret = array_merge($ret, $after_thead_ws);
        }
        if ($tfoot !== false) {
            $ret[] = $tfoot;
            $ret = array_merge($ret, $after_tfoot_ws);
        }

        if ($tbody_mode) {
            // we have to shuffle tr into tbody
            $current_tr_tbody = null;

            foreach($content as $node) {
                switch ($node->name) {
                case 'tbody':
                    $current_tr_tbody = null;
                    $ret[] = $node;
                    break;
                case 'tr':
                    if ($current_tr_tbody === null) {
                        $current_tr_tbody = new HTMLPurifier_Node_Element('tbody');
                        $ret[] = $current_tr_tbody;
                    }
                    $current_tr_tbody->children[] = $node;
                    break;
                case '#PCDATA':
                    //assert($node->is_whitespace);
                    if ($current_tr_tbody === null) {
                        $ret[] = $node;
                    } else {
                        $current_tr_tbody->children[] = $node;
                    }
                    break;
                }
            }
        } else {
            $ret = array_merge($ret, $content);
        }

        return $ret;

    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php000064400000005542151213256020021421 0ustar00<?php

/**
 * Takes the contents of blockquote when in strict and reformats for validation.
 */
class HTMLPurifier_ChildDef_StrictBlockquote extends HTMLPurifier_ChildDef_Required
{
    /**
     * @type array
     */
    protected $real_elements;

    /**
     * @type array
     */
    protected $fake_elements;

    /**
     * @type bool
     */
    public $allow_empty = true;

    /**
     * @type string
     */
    public $type = 'strictblockquote';

    /**
     * @type bool
     */
    protected $init = false;

    /**
     * @param HTMLPurifier_Config $config
     * @return array
     * @note We don't want MakeWellFormed to auto-close inline elements since
     *       they might be allowed.
     */
    public function getAllowedElements($config)
    {
        $this->init($config);
        return $this->fake_elements;
    }

    /**
     * @param array $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function validateChildren($children, $config, $context)
    {
        $this->init($config);

        // trick the parent class into thinking it allows more
        $this->elements = $this->fake_elements;
        $result = parent::validateChildren($children, $config, $context);
        $this->elements = $this->real_elements;

        if ($result === false) {
            return array();
        }
        if ($result === true) {
            $result = $children;
        }

        $def = $config->getHTMLDefinition();
        $block_wrap_name = $def->info_block_wrapper;
        $block_wrap = false;
        $ret = array();

        foreach ($result as $node) {
            if ($block_wrap === false) {
                if (($node instanceof HTMLPurifier_Node_Text && !$node->is_whitespace) ||
                    ($node instanceof HTMLPurifier_Node_Element && !isset($this->elements[$node->name]))) {
                        $block_wrap = new HTMLPurifier_Node_Element($def->info_block_wrapper);
                        $ret[] = $block_wrap;
                }
            } else {
                if ($node instanceof HTMLPurifier_Node_Element && isset($this->elements[$node->name])) {
                    $block_wrap = false;

                }
            }
            if ($block_wrap) {
                $block_wrap->children[] = $node;
            } else {
                $ret[] = $node;
            }
        }
        return $ret;
    }

    /**
     * @param HTMLPurifier_Config $config
     */
    private function init($config)
    {
        if (!$this->init) {
            $def = $config->getHTMLDefinition();
            // allow all inline elements
            $this->real_elements = $this->elements;
            $this->fake_elements = $def->info_content_sets['Flow'];
            $this->fake_elements['#PCDATA'] = true;
            $this->init = true;
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/List.php000064400000005705151213256020017034 0ustar00<?php

/**
 * Definition for list containers ul and ol.
 *
 * What does this do?  The big thing is to handle ol/ul at the top
 * level of list nodes, which should be handled specially by /folding/
 * them into the previous list node.  We generally shouldn't ever
 * see other disallowed elements, because the autoclose behavior
 * in MakeWellFormed handles it.
 */
class HTMLPurifier_ChildDef_List extends HTMLPurifier_ChildDef
{
    /**
     * @type string
     */
    public $type = 'list';
    /**
     * @type array
     */
    // lying a little bit, so that we can handle ul and ol ourselves
    // XXX: This whole business with 'wrap' is all a bit unsatisfactory
    public $elements = array('li' => true, 'ul' => true, 'ol' => true);

    /**
     * @param array $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function validateChildren($children, $config, $context)
    {
        // Flag for subclasses
        $this->whitespace = false;

        // if there are no tokens, delete parent node
        if (empty($children)) {
            return false;
        }

        // if li is not allowed, delete parent node
        if (!isset($config->getHTMLDefinition()->info['li'])) {
            trigger_error("Cannot allow ul/ol without allowing li", E_USER_WARNING);
            return false;
        }

        // the new set of children
        $result = array();

        // a little sanity check to make sure it's not ALL whitespace
        $all_whitespace = true;

        $current_li = null;

        foreach ($children as $node) {
            if (!empty($node->is_whitespace)) {
                $result[] = $node;
                continue;
            }
            $all_whitespace = false; // phew, we're not talking about whitespace

            if ($node->name === 'li') {
                // good
                $current_li = $node;
                $result[] = $node;
            } else {
                // we want to tuck this into the previous li
                // Invariant: we expect the node to be ol/ul
                // ToDo: Make this more robust in the case of not ol/ul
                // by distinguishing between existing li and li created
                // to handle non-list elements; non-list elements should
                // not be appended to an existing li; only li created
                // for non-list. This distinction is not currently made.
                if ($current_li === null) {
                    $current_li = new HTMLPurifier_Node_Element('li');
                    $result[] = $current_li;
                }
                $current_li->children[] = $node;
                $current_li->empty = false; // XXX fascinating! Check for this error elsewhere ToDo
            }
        }
        if (empty($result)) {
            return false;
        }
        if ($all_whitespace) {
            return false;
        }
        return $result;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php000064400000001542151213256020017212 0ustar00<?php

/**
 * Definition that disallows all elements.
 * @warning validateChildren() in this class is actually never called, because
 *          empty elements are corrected in HTMLPurifier_Strategy_MakeWellFormed
 *          before child definitions are parsed in earnest by
 *          HTMLPurifier_Strategy_FixNesting.
 */
class HTMLPurifier_ChildDef_Empty extends HTMLPurifier_ChildDef
{
    /**
     * @type bool
     */
    public $allow_empty = true;

    /**
     * @type string
     */
    public $type = 'empty';

    public function __construct()
    {
    }

    /**
     * @param HTMLPurifier_Node[] $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function validateChildren($children, $config, $context)
    {
        return array();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php000064400000006426151213256020017702 0ustar00<?php

/**
 * Definition that allows a set of elements, but disallows empty children.
 */
class HTMLPurifier_ChildDef_Required extends HTMLPurifier_ChildDef
{
    /**
     * Lookup table of allowed elements.
     * @type array
     */
    public $elements = array();

    /**
     * Whether or not the last passed node was all whitespace.
     * @type bool
     */
    protected $whitespace = false;

    /**
     * @param array|string $elements List of allowed element names (lowercase).
     */
    public function __construct($elements)
    {
        if (is_string($elements)) {
            $elements = str_replace(' ', '', $elements);
            $elements = explode('|', $elements);
        }
        $keys = array_keys($elements);
        if ($keys == array_keys($keys)) {
            $elements = array_flip($elements);
            foreach ($elements as $i => $x) {
                $elements[$i] = true;
                if (empty($i)) {
                    unset($elements[$i]);
                } // remove blank
            }
        }
        $this->elements = $elements;
    }

    /**
     * @type bool
     */
    public $allow_empty = false;

    /**
     * @type string
     */
    public $type = 'required';

    /**
     * @param array $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function validateChildren($children, $config, $context)
    {
        // Flag for subclasses
        $this->whitespace = false;

        // if there are no tokens, delete parent node
        if (empty($children)) {
            return false;
        }

        // the new set of children
        $result = array();

        // whether or not parsed character data is allowed
        // this controls whether or not we silently drop a tag
        // or generate escaped HTML from it
        $pcdata_allowed = isset($this->elements['#PCDATA']);

        // a little sanity check to make sure it's not ALL whitespace
        $all_whitespace = true;

        $stack = array_reverse($children);
        while (!empty($stack)) {
            $node = array_pop($stack);
            if (!empty($node->is_whitespace)) {
                $result[] = $node;
                continue;
            }
            $all_whitespace = false; // phew, we're not talking about whitespace

            if (!isset($this->elements[$node->name])) {
                // special case text
                // XXX One of these ought to be redundant or something
                if ($pcdata_allowed && $node instanceof HTMLPurifier_Node_Text) {
                    $result[] = $node;
                    continue;
                }
                // spill the child contents in
                // ToDo: Make configurable
                if ($node instanceof HTMLPurifier_Node_Element) {
                    for ($i = count($node->children) - 1; $i >= 0; $i--) {
                        $stack[] = $node->children[$i];
                    }
                    continue;
                }
                continue;
            }
            $result[] = $node;
        }
        if (empty($result)) {
            return false;
        }
        if ($all_whitespace) {
            $this->whitespace = true;
            return false;
        }
        return $result;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php000064400000005255151213256020017373 0ustar00<?php

/**
 * Custom validation class, accepts DTD child definitions
 *
 * @warning Currently this class is an all or nothing proposition, that is,
 *          it will only give a bool return value.
 */
class HTMLPurifier_ChildDef_Custom extends HTMLPurifier_ChildDef
{
    /**
     * @type string
     */
    public $type = 'custom';

    /**
     * @type bool
     */
    public $allow_empty = false;

    /**
     * Allowed child pattern as defined by the DTD.
     * @type string
     */
    public $dtd_regex;

    /**
     * PCRE regex derived from $dtd_regex.
     * @type string
     */
    private $_pcre_regex;

    /**
     * @param $dtd_regex Allowed child pattern from the DTD
     */
    public function __construct($dtd_regex)
    {
        $this->dtd_regex = $dtd_regex;
        $this->_compileRegex();
    }

    /**
     * Compiles the PCRE regex from a DTD regex ($dtd_regex to $_pcre_regex)
     */
    protected function _compileRegex()
    {
        $raw = str_replace(' ', '', $this->dtd_regex);
        if ($raw[0] != '(') {
            $raw = "($raw)";
        }
        $el = '[#a-zA-Z0-9_.-]+';
        $reg = $raw;

        // COMPLICATED! AND MIGHT BE BUGGY! I HAVE NO CLUE WHAT I'M
        // DOING! Seriously: if there's problems, please report them.

        // collect all elements into the $elements array
        preg_match_all("/$el/", $reg, $matches);
        foreach ($matches[0] as $match) {
            $this->elements[$match] = true;
        }

        // setup all elements as parentheticals with leading commas
        $reg = preg_replace("/$el/", '(,\\0)', $reg);

        // remove commas when they were not solicited
        $reg = preg_replace("/([^,(|]\(+),/", '\\1', $reg);

        // remove all non-paranthetical commas: they are handled by first regex
        $reg = preg_replace("/,\(/", '(', $reg);

        $this->_pcre_regex = $reg;
    }

    /**
     * @param HTMLPurifier_Node[] $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function validateChildren($children, $config, $context)
    {
        $list_of_children = '';
        $nesting = 0; // depth into the nest
        foreach ($children as $node) {
            if (!empty($node->is_whitespace)) {
                continue;
            }
            $list_of_children .= $node->name . ',';
        }
        // add leading comma to deal with stray comma declarations
        $list_of_children = ',' . rtrim($list_of_children, ',');
        $okay =
            preg_match(
                '/^,?' . $this->_pcre_regex . '$/',
                $list_of_children
            );
        return (bool)$okay;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php000064400000002271151213256020017701 0ustar00<?php

/**
 * Definition that allows a set of elements, and allows no children.
 * @note This is a hack to reuse code from HTMLPurifier_ChildDef_Required,
 *       really, one shouldn't inherit from the other.  Only altered behavior
 *       is to overload a returned false with an array.  Thus, it will never
 *       return false.
 */
class HTMLPurifier_ChildDef_Optional extends HTMLPurifier_ChildDef_Required
{
    /**
     * @type bool
     */
    public $allow_empty = true;

    /**
     * @type string
     */
    public $type = 'optional';

    /**
     * @param array $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array
     */
    public function validateChildren($children, $config, $context)
    {
        $result = parent::validateChildren($children, $config, $context);
        // we assume that $children is not modified
        if ($result === false) {
            if (empty($children)) {
                return true;
            } elseif ($this->whitespace) {
                return $children;
            } else {
                return array();
            }
        }
        return $result;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php000064400000003552151213256020020012 0ustar00<?php

/**
 * Definition that uses different definitions depending on context.
 *
 * The del and ins tags are notable because they allow different types of
 * elements depending on whether or not they're in a block or inline context.
 * Chameleon allows this behavior to happen by using two different
 * definitions depending on context.  While this somewhat generalized,
 * it is specifically intended for those two tags.
 */
class HTMLPurifier_ChildDef_Chameleon extends HTMLPurifier_ChildDef
{

    /**
     * Instance of the definition object to use when inline. Usually stricter.
     * @type HTMLPurifier_ChildDef_Optional
     */
    public $inline;

    /**
     * Instance of the definition object to use when block.
     * @type HTMLPurifier_ChildDef_Optional
     */
    public $block;

    /**
     * @type string
     */
    public $type = 'chameleon';

    /**
     * @param array $inline List of elements to allow when inline.
     * @param array $block List of elements to allow when block.
     */
    public function __construct($inline, $block)
    {
        $this->inline = new HTMLPurifier_ChildDef_Optional($inline);
        $this->block = new HTMLPurifier_ChildDef_Optional($block);
        $this->elements = $this->block->elements;
    }

    /**
     * @param HTMLPurifier_Node[] $children
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool
     */
    public function validateChildren($children, $config, $context)
    {
        if ($context->get('IsInline') === false) {
            return $this->block->validateChildren(
                $children,
                $config,
                $context
            );
        } else {
            return $this->inline->validateChildren(
                $children,
                $config,
                $context
            );
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/EntityLookup.php000064400000002622151213256020017120 0ustar00<?php

/**
 * Object that provides entity lookup table from entity name to character
 */
class HTMLPurifier_EntityLookup
{
    /**
     * Assoc array of entity name to character represented.
     * @type array
     */
    public $table;

    /**
     * Sets up the entity lookup table from the serialized file contents.
     * @param bool $file
     * @note The serialized contents are versioned, but were generated
     *       using the maintenance script generate_entity_file.php
     * @warning This is not in constructor to help enforce the Singleton
     */
    public function setup($file = false)
    {
        if (!$file) {
            $file = HTMLPURIFIER_PREFIX . '/HTMLPurifier/EntityLookup/entities.ser';
        }
        $this->table = unserialize(file_get_contents($file));
    }

    /**
     * Retrieves sole instance of the object.
     * @param bool|HTMLPurifier_EntityLookup $prototype Optional prototype of custom lookup table to overload with.
     * @return HTMLPurifier_EntityLookup
     */
    public static function instance($prototype = false)
    {
        // no references, since PHP doesn't copy unless modified
        static $instance = null;
        if ($prototype) {
            $instance = $prototype;
        } elseif (!$instance) {
            $instance = new HTMLPurifier_EntityLookup();
            $instance->setup();
        }
        return $instance;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/AttrTransform.php000064400000003705151213256020017263 0ustar00<?php

/**
 * Processes an entire attribute array for corrections needing multiple values.
 *
 * Occasionally, a certain attribute will need to be removed and popped onto
 * another value.  Instead of creating a complex return syntax for
 * HTMLPurifier_AttrDef, we just pass the whole attribute array to a
 * specialized object and have that do the special work.  That is the
 * family of HTMLPurifier_AttrTransform.
 *
 * An attribute transformation can be assigned to run before or after
 * HTMLPurifier_AttrDef validation.  See HTMLPurifier_HTMLDefinition for
 * more details.
 */

abstract class HTMLPurifier_AttrTransform
{

    /**
     * Abstract: makes changes to the attributes dependent on multiple values.
     *
     * @param array $attr Assoc array of attributes, usually from
     *              HTMLPurifier_Token_Tag::$attr
     * @param HTMLPurifier_Config $config Mandatory HTMLPurifier_Config object.
     * @param HTMLPurifier_Context $context Mandatory HTMLPurifier_Context object
     * @return array Processed attribute array.
     */
    abstract public function transform($attr, $config, $context);

    /**
     * Prepends CSS properties to the style attribute, creating the
     * attribute if it doesn't exist.
     * @param array &$attr Attribute array to process (passed by reference)
     * @param string $css CSS to prepend
     */
    public function prependCSS(&$attr, $css)
    {
        $attr['style'] = isset($attr['style']) ? $attr['style'] : '';
        $attr['style'] = $css . $attr['style'];
    }

    /**
     * Retrieves and removes an attribute
     * @param array &$attr Attribute array to process (passed by reference)
     * @param mixed $key Key of attribute to confiscate
     * @return mixed
     */
    public function confiscateAttr(&$attr, $key)
    {
        if (!isset($attr[$key])) {
            return null;
        }
        $value = $attr[$key];
        unset($attr[$key]);
        return $value;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Language/messages/en.php000064400000007720151213256020020412 0ustar00<?php

$fallback = false;

$messages = array(

    'HTMLPurifier' => 'HTML Purifier',
// for unit testing purposes
    'LanguageFactoryTest: Pizza' => 'Pizza',
    'LanguageTest: List' => '$1',
    'LanguageTest: Hash' => '$1.Keys; $1.Values',
    'Item separator' => ', ',
    'Item separator last' => ' and ', // non-Harvard style

    'ErrorCollector: No errors' => 'No errors detected. However, because error reporting is still incomplete, there may have been errors that the error collector was not notified of; please inspect the output HTML carefully.',
    'ErrorCollector: At line' => ' at line $line',
    'ErrorCollector: Incidental errors' => 'Incidental errors',
    'Lexer: Unclosed comment' => 'Unclosed comment',
    'Lexer: Unescaped lt' => 'Unescaped less-than sign (<) should be &lt;',
    'Lexer: Missing gt' => 'Missing greater-than sign (>), previous less-than sign (<) should be escaped',
    'Lexer: Missing attribute key' => 'Attribute declaration has no key',
    'Lexer: Missing end quote' => 'Attribute declaration has no end quote',
    'Lexer: Extracted body' => 'Removed document metadata tags',
    'Strategy_RemoveForeignElements: Tag transform' => '<$1> element transformed into $CurrentToken.Serialized',
    'Strategy_RemoveForeignElements: Missing required attribute' => '$CurrentToken.Compact element missing required attribute $1',
    'Strategy_RemoveForeignElements: Foreign element to text' => 'Unrecognized $CurrentToken.Serialized tag converted to text',
    'Strategy_RemoveForeignElements: Foreign element removed' => 'Unrecognized $CurrentToken.Serialized tag removed',
    'Strategy_RemoveForeignElements: Comment removed' => 'Comment containing "$CurrentToken.Data" removed',
    'Strategy_RemoveForeignElements: Foreign meta element removed' => 'Unrecognized $CurrentToken.Serialized meta tag and all descendants removed',
    'Strategy_RemoveForeignElements: Token removed to end' => 'Tags and text starting from $1 element where removed to end',
    'Strategy_RemoveForeignElements: Trailing hyphen in comment removed' => 'Trailing hyphen(s) in comment removed',
    'Strategy_RemoveForeignElements: Hyphens in comment collapsed' => 'Double hyphens in comments are not allowed, and were collapsed into single hyphens',
    'Strategy_MakeWellFormed: Unnecessary end tag removed' => 'Unnecessary $CurrentToken.Serialized tag removed',
    'Strategy_MakeWellFormed: Unnecessary end tag to text' => 'Unnecessary $CurrentToken.Serialized tag converted to text',
    'Strategy_MakeWellFormed: Tag auto closed' => '$1.Compact started on line $1.Line auto-closed by $CurrentToken.Compact',
    'Strategy_MakeWellFormed: Tag carryover' => '$1.Compact started on line $1.Line auto-continued into $CurrentToken.Compact',
    'Strategy_MakeWellFormed: Stray end tag removed' => 'Stray $CurrentToken.Serialized tag removed',
    'Strategy_MakeWellFormed: Stray end tag to text' => 'Stray $CurrentToken.Serialized tag converted to text',
    'Strategy_MakeWellFormed: Tag closed by element end' => '$1.Compact tag started on line $1.Line closed by end of $CurrentToken.Serialized',
    'Strategy_MakeWellFormed: Tag closed by document end' => '$1.Compact tag started on line $1.Line closed by end of document',
    'Strategy_FixNesting: Node removed' => '$CurrentToken.Compact node removed',
    'Strategy_FixNesting: Node excluded' => '$CurrentToken.Compact node removed due to descendant exclusion by ancestor element',
    'Strategy_FixNesting: Node reorganized' => 'Contents of $CurrentToken.Compact node reorganized to enforce its content model',
    'Strategy_FixNesting: Node contents removed' => 'Contents of $CurrentToken.Compact node removed',
    'AttrValidator: Attributes transformed' => 'Attributes on $CurrentToken.Compact transformed from $1.Keys to $2.Keys',
    'AttrValidator: Attribute removed' => '$CurrentAttr.Name attribute on $CurrentToken.Compact removed',
);

$errorNames = array(
    E_ERROR => 'Error',
    E_WARNING => 'Warning',
    E_NOTICE => 'Notice'
);

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLModule.php000064400000023674151213256020016376 0ustar00<?php

/**
 * Represents an XHTML 1.1 module, with information on elements, tags
 * and attributes.
 * @note Even though this is technically XHTML 1.1, it is also used for
 *       regular HTML parsing. We are using modulization as a convenient
 *       way to represent the internals of HTMLDefinition, and our
 *       implementation is by no means conforming and does not directly
 *       use the normative DTDs or XML schemas.
 * @note The public variables in a module should almost directly
 *       correspond to the variables in HTMLPurifier_HTMLDefinition.
 *       However, the prefix info carries no special meaning in these
 *       objects (include it anyway if that's the correspondence though).
 * @todo Consider making some member functions protected
 */

class HTMLPurifier_HTMLModule
{

    // -- Overloadable ----------------------------------------------------

    /**
     * Short unique string identifier of the module.
     * @type string
     */
    public $name;

    /**
     * Informally, a list of elements this module changes.
     * Not used in any significant way.
     * @type array
     */
    public $elements = array();

    /**
     * Associative array of element names to element definitions.
     * Some definitions may be incomplete, to be merged in later
     * with the full definition.
     * @type array
     */
    public $info = array();

    /**
     * Associative array of content set names to content set additions.
     * This is commonly used to, say, add an A element to the Inline
     * content set. This corresponds to an internal variable $content_sets
     * and NOT info_content_sets member variable of HTMLDefinition.
     * @type array
     */
    public $content_sets = array();

    /**
     * Associative array of attribute collection names to attribute
     * collection additions. More rarely used for adding attributes to
     * the global collections. Example is the StyleAttribute module adding
     * the style attribute to the Core. Corresponds to HTMLDefinition's
     * attr_collections->info, since the object's data is only info,
     * with extra behavior associated with it.
     * @type array
     */
    public $attr_collections = array();

    /**
     * Associative array of deprecated tag name to HTMLPurifier_TagTransform.
     * @type array
     */
    public $info_tag_transform = array();

    /**
     * List of HTMLPurifier_AttrTransform to be performed before validation.
     * @type array
     */
    public $info_attr_transform_pre = array();

    /**
     * List of HTMLPurifier_AttrTransform to be performed after validation.
     * @type array
     */
    public $info_attr_transform_post = array();

    /**
     * List of HTMLPurifier_Injector to be performed during well-formedness fixing.
     * An injector will only be invoked if all of it's pre-requisites are met;
     * if an injector fails setup, there will be no error; it will simply be
     * silently disabled.
     * @type array
     */
    public $info_injector = array();

    /**
     * Boolean flag that indicates whether or not getChildDef is implemented.
     * For optimization reasons: may save a call to a function. Be sure
     * to set it if you do implement getChildDef(), otherwise it will have
     * no effect!
     * @type bool
     */
    public $defines_child_def = false;

    /**
     * Boolean flag whether or not this module is safe. If it is not safe, all
     * of its members are unsafe. Modules are safe by default (this might be
     * slightly dangerous, but it doesn't make much sense to force HTML Purifier,
     * which is based off of safe HTML, to explicitly say, "This is safe," even
     * though there are modules which are "unsafe")
     *
     * @type bool
     * @note Previously, safety could be applied at an element level granularity.
     *       We've removed this ability, so in order to add "unsafe" elements
     *       or attributes, a dedicated module with this property set to false
     *       must be used.
     */
    public $safe = true;

    /**
     * Retrieves a proper HTMLPurifier_ChildDef subclass based on
     * content_model and content_model_type member variables of
     * the HTMLPurifier_ElementDef class. There is a similar function
     * in HTMLPurifier_HTMLDefinition.
     * @param HTMLPurifier_ElementDef $def
     * @return HTMLPurifier_ChildDef subclass
     */
    public function getChildDef($def)
    {
        return false;
    }

    // -- Convenience -----------------------------------------------------

    /**
     * Convenience function that sets up a new element
     * @param string $element Name of element to add
     * @param string|bool $type What content set should element be registered to?
     *              Set as false to skip this step.
     * @param string|HTMLPurifier_ChildDef $contents Allowed children in form of:
     *              "$content_model_type: $content_model"
     * @param array|string $attr_includes What attribute collections to register to
     *              element?
     * @param array $attr What unique attributes does the element define?
     * @see HTMLPurifier_ElementDef:: for in-depth descriptions of these parameters.
     * @return HTMLPurifier_ElementDef Created element definition object, so you
     *         can set advanced parameters
     */
    public function addElement($element, $type, $contents, $attr_includes = array(), $attr = array())
    {
        $this->elements[] = $element;
        // parse content_model
        list($content_model_type, $content_model) = $this->parseContents($contents);
        // merge in attribute inclusions
        $this->mergeInAttrIncludes($attr, $attr_includes);
        // add element to content sets
        if ($type) {
            $this->addElementToContentSet($element, $type);
        }
        // create element
        $this->info[$element] = HTMLPurifier_ElementDef::create(
            $content_model,
            $content_model_type,
            $attr
        );
        // literal object $contents means direct child manipulation
        if (!is_string($contents)) {
            $this->info[$element]->child = $contents;
        }
        return $this->info[$element];
    }

    /**
     * Convenience function that creates a totally blank, non-standalone
     * element.
     * @param string $element Name of element to create
     * @return HTMLPurifier_ElementDef Created element
     */
    public function addBlankElement($element)
    {
        if (!isset($this->info[$element])) {
            $this->elements[] = $element;
            $this->info[$element] = new HTMLPurifier_ElementDef();
            $this->info[$element]->standalone = false;
        } else {
            trigger_error("Definition for $element already exists in module, cannot redefine");
        }
        return $this->info[$element];
    }

    /**
     * Convenience function that registers an element to a content set
     * @param string $element Element to register
     * @param string $type Name content set (warning: case sensitive, usually upper-case
     *        first letter)
     */
    public function addElementToContentSet($element, $type)
    {
        if (!isset($this->content_sets[$type])) {
            $this->content_sets[$type] = '';
        } else {
            $this->content_sets[$type] .= ' | ';
        }
        $this->content_sets[$type] .= $element;
    }

    /**
     * Convenience function that transforms single-string contents
     * into separate content model and content model type
     * @param string $contents Allowed children in form of:
     *                  "$content_model_type: $content_model"
     * @return array
     * @note If contents is an object, an array of two nulls will be
     *       returned, and the callee needs to take the original $contents
     *       and use it directly.
     */
    public function parseContents($contents)
    {
        if (!is_string($contents)) {
            return array(null, null);
        } // defer
        switch ($contents) {
            // check for shorthand content model forms
            case 'Empty':
                return array('empty', '');
            case 'Inline':
                return array('optional', 'Inline | #PCDATA');
            case 'Flow':
                return array('optional', 'Flow | #PCDATA');
        }
        list($content_model_type, $content_model) = explode(':', $contents);
        $content_model_type = strtolower(trim($content_model_type));
        $content_model = trim($content_model);
        return array($content_model_type, $content_model);
    }

    /**
     * Convenience function that merges a list of attribute includes into
     * an attribute array.
     * @param array $attr Reference to attr array to modify
     * @param array $attr_includes Array of includes / string include to merge in
     */
    public function mergeInAttrIncludes(&$attr, $attr_includes)
    {
        if (!is_array($attr_includes)) {
            if (empty($attr_includes)) {
                $attr_includes = array();
            } else {
                $attr_includes = array($attr_includes);
            }
        }
        $attr[0] = $attr_includes;
    }

    /**
     * Convenience function that generates a lookup table with boolean
     * true as value.
     * @param string $list List of values to turn into a lookup
     * @note You can also pass an arbitrary number of arguments in
     *       place of the regular argument
     * @return array array equivalent of list
     */
    public function makeLookup($list)
    {
        if (is_string($list)) {
            $list = func_get_args();
        }
        $ret = array();
        foreach ($list as $value) {
            if (is_null($value)) {
                continue;
            }
            $ret[$value] = true;
        }
        return $ret;
    }

    /**
     * Lazy load construction of the module after determining whether
     * or not it's needed, and also when a finalized configuration object
     * is available.
     * @param HTMLPurifier_Config $config
     */
    public function setup($config)
    {
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DefinitionCache.php000064400000007511151213256030017471 0ustar00<?php

/**
 * Abstract class representing Definition cache managers that implements
 * useful common methods and is a factory.
 * @todo Create a separate maintenance file advanced users can use to
 *       cache their custom HTMLDefinition, which can be loaded
 *       via a configuration directive
 * @todo Implement memcached
 */
abstract class HTMLPurifier_DefinitionCache
{
    /**
     * @type string
     */
    public $type;

    /**
     * @param string $type Type of definition objects this instance of the
     *      cache will handle.
     */
    public function __construct($type)
    {
        $this->type = $type;
    }

    /**
     * Generates a unique identifier for a particular configuration
     * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config
     * @return string
     */
    public function generateKey($config)
    {
        return $config->version . ',' . // possibly replace with function calls
               $config->getBatchSerial($this->type) . ',' .
               $config->get($this->type . '.DefinitionRev');
    }

    /**
     * Tests whether or not a key is old with respect to the configuration's
     * version and revision number.
     * @param string $key Key to test
     * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config to test against
     * @return bool
     */
    public function isOld($key, $config)
    {
        if (substr_count($key, ',') < 2) {
            return true;
        }
        list($version, $hash, $revision) = explode(',', $key, 3);
        $compare = version_compare($version, $config->version);
        // version mismatch, is always old
        if ($compare != 0) {
            return true;
        }
        // versions match, ids match, check revision number
        if ($hash == $config->getBatchSerial($this->type) &&
            $revision < $config->get($this->type . '.DefinitionRev')) {
            return true;
        }
        return false;
    }

    /**
     * Checks if a definition's type jives with the cache's type
     * @note Throws an error on failure
     * @param HTMLPurifier_Definition $def Definition object to check
     * @return bool true if good, false if not
     */
    public function checkDefType($def)
    {
        if ($def->type !== $this->type) {
            trigger_error("Cannot use definition of type {$def->type} in cache for {$this->type}");
            return false;
        }
        return true;
    }

    /**
     * Adds a definition object to the cache
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     */
    abstract public function add($def, $config);

    /**
     * Unconditionally saves a definition object to the cache
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     */
    abstract public function set($def, $config);

    /**
     * Replace an object in the cache
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     */
    abstract public function replace($def, $config);

    /**
     * Retrieves a definition object from the cache
     * @param HTMLPurifier_Config $config
     */
    abstract public function get($config);

    /**
     * Removes a definition object to the cache
     * @param HTMLPurifier_Config $config
     */
    abstract public function remove($config);

    /**
     * Clears all objects from cache
     * @param HTMLPurifier_Config $config
     */
    abstract public function flush($config);

    /**
     * Clears all expired (older version or revision) objects from cache
     * @note Be careful implementing this method as flush. Flush must
     *       not interfere with other Definition types, and cleanup()
     *       should not be repeatedly called by userland code.
     * @param HTMLPurifier_Config $config
     */
    abstract public function cleanup($config);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/PropertyList.php000064400000005337151213256030017141 0ustar00<?php

/**
 * Generic property list implementation
 */
class HTMLPurifier_PropertyList
{
    /**
     * Internal data-structure for properties.
     * @type array
     */
    protected $data = array();

    /**
     * Parent plist.
     * @type HTMLPurifier_PropertyList
     */
    protected $parent;

    /**
     * Cache.
     * @type array
     */
    protected $cache;

    /**
     * @param HTMLPurifier_PropertyList $parent Parent plist
     */
    public function __construct($parent = null)
    {
        $this->parent = $parent;
    }

    /**
     * Recursively retrieves the value for a key
     * @param string $name
     * @throws HTMLPurifier_Exception
     */
    public function get($name)
    {
        if ($this->has($name)) {
            return $this->data[$name];
        }
        // possible performance bottleneck, convert to iterative if necessary
        if ($this->parent) {
            return $this->parent->get($name);
        }
        throw new HTMLPurifier_Exception("Key '$name' not found");
    }

    /**
     * Sets the value of a key, for this plist
     * @param string $name
     * @param mixed $value
     */
    public function set($name, $value)
    {
        $this->data[$name] = $value;
    }

    /**
     * Returns true if a given key exists
     * @param string $name
     * @return bool
     */
    public function has($name)
    {
        return array_key_exists($name, $this->data);
    }

    /**
     * Resets a value to the value of it's parent, usually the default. If
     * no value is specified, the entire plist is reset.
     * @param string $name
     */
    public function reset($name = null)
    {
        if ($name == null) {
            $this->data = array();
        } else {
            unset($this->data[$name]);
        }
    }

    /**
     * Squashes this property list and all of its property lists into a single
     * array, and returns the array. This value is cached by default.
     * @param bool $force If true, ignores the cache and regenerates the array.
     * @return array
     */
    public function squash($force = false)
    {
        if ($this->cache !== null && !$force) {
            return $this->cache;
        }
        if ($this->parent) {
            return $this->cache = array_merge($this->parent->squash($force), $this->data);
        } else {
            return $this->cache = $this->data;
        }
    }

    /**
     * Returns the parent plist.
     * @return HTMLPurifier_PropertyList
     */
    public function getParent()
    {
        return $this->parent;
    }

    /**
     * Sets the parent plist.
     * @param HTMLPurifier_PropertyList $plist Parent plist
     */
    public function setParent($plist)
    {
        $this->parent = $plist;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php000064400000021722151213256030022523 0ustar00<?php

/**
 * Removes all unrecognized tags from the list of tokens.
 *
 * This strategy iterates through all the tokens and removes unrecognized
 * tokens. If a token is not recognized but a TagTransform is defined for
 * that element, the element will be transformed accordingly.
 */

class HTMLPurifier_Strategy_RemoveForeignElements extends HTMLPurifier_Strategy
{

    /**
     * @param HTMLPurifier_Token[] $tokens
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array|HTMLPurifier_Token[]
     */
    public function execute($tokens, $config, $context)
    {
        $definition = $config->getHTMLDefinition();
        $generator = new HTMLPurifier_Generator($config, $context);
        $result = array();

        $escape_invalid_tags = $config->get('Core.EscapeInvalidTags');
        $remove_invalid_img = $config->get('Core.RemoveInvalidImg');

        // currently only used to determine if comments should be kept
        $trusted = $config->get('HTML.Trusted');
        $comment_lookup = $config->get('HTML.AllowedComments');
        $comment_regexp = $config->get('HTML.AllowedCommentsRegexp');
        $check_comments = $comment_lookup !== array() || $comment_regexp !== null;

        $remove_script_contents = $config->get('Core.RemoveScriptContents');
        $hidden_elements = $config->get('Core.HiddenElements');

        // remove script contents compatibility
        if ($remove_script_contents === true) {
            $hidden_elements['script'] = true;
        } elseif ($remove_script_contents === false && isset($hidden_elements['script'])) {
            unset($hidden_elements['script']);
        }

        $attr_validator = new HTMLPurifier_AttrValidator();

        // removes tokens until it reaches a closing tag with its value
        $remove_until = false;

        // converts comments into text tokens when this is equal to a tag name
        $textify_comments = false;

        $token = false;
        $context->register('CurrentToken', $token);

        $e = false;
        if ($config->get('Core.CollectErrors')) {
            $e =& $context->get('ErrorCollector');
        }

        foreach ($tokens as $token) {
            if ($remove_until) {
                if (empty($token->is_tag) || $token->name !== $remove_until) {
                    continue;
                }
            }
            if (!empty($token->is_tag)) {
                // DEFINITION CALL

                // before any processing, try to transform the element
                if (isset($definition->info_tag_transform[$token->name])) {
                    $original_name = $token->name;
                    // there is a transformation for this tag
                    // DEFINITION CALL
                    $token = $definition->
                        info_tag_transform[$token->name]->transform($token, $config, $context);
                    if ($e) {
                        $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Tag transform', $original_name);
                    }
                }

                if (isset($definition->info[$token->name])) {
                    // mostly everything's good, but
                    // we need to make sure required attributes are in order
                    if (($token instanceof HTMLPurifier_Token_Start || $token instanceof HTMLPurifier_Token_Empty) &&
                        $definition->info[$token->name]->required_attr &&
                        ($token->name != 'img' || $remove_invalid_img) // ensure config option still works
                    ) {
                        $attr_validator->validateToken($token, $config, $context);
                        $ok = true;
                        foreach ($definition->info[$token->name]->required_attr as $name) {
                            if (!isset($token->attr[$name])) {
                                $ok = false;
                                break;
                            }
                        }
                        if (!$ok) {
                            if ($e) {
                                $e->send(
                                    E_ERROR,
                                    'Strategy_RemoveForeignElements: Missing required attribute',
                                    $name
                                );
                            }
                            continue;
                        }
                        $token->armor['ValidateAttributes'] = true;
                    }

                    if (isset($hidden_elements[$token->name]) && $token instanceof HTMLPurifier_Token_Start) {
                        $textify_comments = $token->name;
                    } elseif ($token->name === $textify_comments && $token instanceof HTMLPurifier_Token_End) {
                        $textify_comments = false;
                    }

                } elseif ($escape_invalid_tags) {
                    // invalid tag, generate HTML representation and insert in
                    if ($e) {
                        $e->send(E_WARNING, 'Strategy_RemoveForeignElements: Foreign element to text');
                    }
                    $token = new HTMLPurifier_Token_Text(
                        $generator->generateFromToken($token)
                    );
                } else {
                    // check if we need to destroy all of the tag's children
                    // CAN BE GENERICIZED
                    if (isset($hidden_elements[$token->name])) {
                        if ($token instanceof HTMLPurifier_Token_Start) {
                            $remove_until = $token->name;
                        } elseif ($token instanceof HTMLPurifier_Token_Empty) {
                            // do nothing: we're still looking
                        } else {
                            $remove_until = false;
                        }
                        if ($e) {
                            $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign meta element removed');
                        }
                    } else {
                        if ($e) {
                            $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign element removed');
                        }
                    }
                    continue;
                }
            } elseif ($token instanceof HTMLPurifier_Token_Comment) {
                // textify comments in script tags when they are allowed
                if ($textify_comments !== false) {
                    $data = $token->data;
                    $token = new HTMLPurifier_Token_Text($data);
                } elseif ($trusted || $check_comments) {
                    // always cleanup comments
                    $trailing_hyphen = false;
                    if ($e) {
                        // perform check whether or not there's a trailing hyphen
                        if (substr($token->data, -1) == '-') {
                            $trailing_hyphen = true;
                        }
                    }
                    $token->data = rtrim($token->data, '-');
                    $found_double_hyphen = false;
                    while (strpos($token->data, '--') !== false) {
                        $found_double_hyphen = true;
                        $token->data = str_replace('--', '-', $token->data);
                    }
                    if ($trusted || !empty($comment_lookup[trim($token->data)]) ||
                        ($comment_regexp !== null && preg_match($comment_regexp, trim($token->data)))) {
                        // OK good
                        if ($e) {
                            if ($trailing_hyphen) {
                                $e->send(
                                    E_NOTICE,
                                    'Strategy_RemoveForeignElements: Trailing hyphen in comment removed'
                                );
                            }
                            if ($found_double_hyphen) {
                                $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Hyphens in comment collapsed');
                            }
                        }
                    } else {
                        if ($e) {
                            $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed');
                        }
                        continue;
                    }
                } else {
                    // strip comments
                    if ($e) {
                        $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed');
                    }
                    continue;
                }
            } elseif ($token instanceof HTMLPurifier_Token_Text) {
            } else {
                continue;
            }
            $result[] = $token;
        }
        if ($remove_until && $e) {
            // we removed tokens until the end, throw error
            $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Token removed to end', $remove_until);
        }
        $context->destroy('CurrentToken');
        return $result;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php000064400000001327151213256030020220 0ustar00<?php

/**
 * Composite strategy that runs multiple strategies on tokens.
 */
abstract class HTMLPurifier_Strategy_Composite extends HTMLPurifier_Strategy
{

    /**
     * List of strategies to run tokens through.
     * @type HTMLPurifier_Strategy[]
     */
    protected $strategies = array();

    /**
     * @param HTMLPurifier_Token[] $tokens
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token[]
     */
    public function execute($tokens, $config, $context)
    {
        foreach ($this->strategies as $strategy) {
            $tokens = $strategy->execute($tokens, $config, $context);
        }
        return $tokens;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php000064400000065741151213256030021126 0ustar00<?php

/**
 * Takes tokens makes them well-formed (balance end tags, etc.)
 *
 * Specification of the armor attributes this strategy uses:
 *
 *      - MakeWellFormed_TagClosedError: This armor field is used to
 *        suppress tag closed errors for certain tokens [TagClosedSuppress],
 *        in particular, if a tag was generated automatically by HTML
 *        Purifier, we may rely on our infrastructure to close it for us
 *        and shouldn't report an error to the user [TagClosedAuto].
 */
class HTMLPurifier_Strategy_MakeWellFormed extends HTMLPurifier_Strategy
{

    /**
     * Array stream of tokens being processed.
     * @type HTMLPurifier_Token[]
     */
    protected $tokens;

    /**
     * Current token.
     * @type HTMLPurifier_Token
     */
    protected $token;

    /**
     * Zipper managing the true state.
     * @type HTMLPurifier_Zipper
     */
    protected $zipper;

    /**
     * Current nesting of elements.
     * @type array
     */
    protected $stack;

    /**
     * Injectors active in this stream processing.
     * @type HTMLPurifier_Injector[]
     */
    protected $injectors;

    /**
     * Current instance of HTMLPurifier_Config.
     * @type HTMLPurifier_Config
     */
    protected $config;

    /**
     * Current instance of HTMLPurifier_Context.
     * @type HTMLPurifier_Context
     */
    protected $context;

    /**
     * @param HTMLPurifier_Token[] $tokens
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token[]
     * @throws HTMLPurifier_Exception
     */
    public function execute($tokens, $config, $context)
    {
        $definition = $config->getHTMLDefinition();

        // local variables
        $generator = new HTMLPurifier_Generator($config, $context);
        $escape_invalid_tags = $config->get('Core.EscapeInvalidTags');
        // used for autoclose early abortion
        $global_parent_allowed_elements = $definition->info_parent_def->child->getAllowedElements($config);
        $e = $context->get('ErrorCollector', true);
        $i = false; // injector index
        list($zipper, $token) = HTMLPurifier_Zipper::fromArray($tokens);
        if ($token === NULL) {
            return array();
        }
        $reprocess = false; // whether or not to reprocess the same token
        $stack = array();

        // member variables
        $this->stack =& $stack;
        $this->tokens =& $tokens;
        $this->token =& $token;
        $this->zipper =& $zipper;
        $this->config = $config;
        $this->context = $context;

        // context variables
        $context->register('CurrentNesting', $stack);
        $context->register('InputZipper', $zipper);
        $context->register('CurrentToken', $token);

        // -- begin INJECTOR --

        $this->injectors = array();

        $injectors = $config->getBatch('AutoFormat');
        $def_injectors = $definition->info_injector;
        $custom_injectors = $injectors['Custom'];
        unset($injectors['Custom']); // special case
        foreach ($injectors as $injector => $b) {
            // XXX: Fix with a legitimate lookup table of enabled filters
            if (strpos($injector, '.') !== false) {
                continue;
            }
            $injector = "HTMLPurifier_Injector_$injector";
            if (!$b) {
                continue;
            }
            $this->injectors[] = new $injector;
        }
        foreach ($def_injectors as $injector) {
            // assumed to be objects
            $this->injectors[] = $injector;
        }
        foreach ($custom_injectors as $injector) {
            if (!$injector) {
                continue;
            }
            if (is_string($injector)) {
                $injector = "HTMLPurifier_Injector_$injector";
                $injector = new $injector;
            }
            $this->injectors[] = $injector;
        }

        // give the injectors references to the definition and context
        // variables for performance reasons
        foreach ($this->injectors as $ix => $injector) {
            $error = $injector->prepare($config, $context);
            if (!$error) {
                continue;
            }
            array_splice($this->injectors, $ix, 1); // rm the injector
            trigger_error("Cannot enable {$injector->name} injector because $error is not allowed", E_USER_WARNING);
        }

        // -- end INJECTOR --

        // a note on reprocessing:
        //      In order to reduce code duplication, whenever some code needs
        //      to make HTML changes in order to make things "correct", the
        //      new HTML gets sent through the purifier, regardless of its
        //      status. This means that if we add a start token, because it
        //      was totally necessary, we don't have to update nesting; we just
        //      punt ($reprocess = true; continue;) and it does that for us.

        // isset is in loop because $tokens size changes during loop exec
        for (;;
             // only increment if we don't need to reprocess
             $reprocess ? $reprocess = false : $token = $zipper->next($token)) {

            // check for a rewind
            if (is_int($i)) {
                // possibility: disable rewinding if the current token has a
                // rewind set on it already. This would offer protection from
                // infinite loop, but might hinder some advanced rewinding.
                $rewind_offset = $this->injectors[$i]->getRewindOffset();
                if (is_int($rewind_offset)) {
                    for ($j = 0; $j < $rewind_offset; $j++) {
                        if (empty($zipper->front)) break;
                        $token = $zipper->prev($token);
                        // indicate that other injectors should not process this token,
                        // but we need to reprocess it.  See Note [Injector skips]
                        unset($token->skip[$i]);
                        $token->rewind = $i;
                        if ($token instanceof HTMLPurifier_Token_Start) {
                            array_pop($this->stack);
                        } elseif ($token instanceof HTMLPurifier_Token_End) {
                            $this->stack[] = $token->start;
                        }
                    }
                }
                $i = false;
            }

            // handle case of document end
            if ($token === NULL) {
                // kill processing if stack is empty
                if (empty($this->stack)) {
                    break;
                }

                // peek
                $top_nesting = array_pop($this->stack);
                $this->stack[] = $top_nesting;

                // send error [TagClosedSuppress]
                if ($e && !isset($top_nesting->armor['MakeWellFormed_TagClosedError'])) {
                    $e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag closed by document end', $top_nesting);
                }

                // append, don't splice, since this is the end
                $token = new HTMLPurifier_Token_End($top_nesting->name);

                // punt!
                $reprocess = true;
                continue;
            }

            //echo '<br>'; printZipper($zipper, $token);//printTokens($this->stack);
            //flush();

            // quick-check: if it's not a tag, no need to process
            if (empty($token->is_tag)) {
                if ($token instanceof HTMLPurifier_Token_Text) {
                    foreach ($this->injectors as $i => $injector) {
                        if (isset($token->skip[$i])) {
                            // See Note [Injector skips]
                            continue;
                        }
                        if ($token->rewind !== null && $token->rewind !== $i) {
                            continue;
                        }
                        // XXX fuckup
                        $r = $token;
                        $injector->handleText($r);
                        $token = $this->processToken($r, $i);
                        $reprocess = true;
                        break;
                    }
                }
                // another possibility is a comment
                continue;
            }

            if (isset($definition->info[$token->name])) {
                $type = $definition->info[$token->name]->child->type;
            } else {
                $type = false; // Type is unknown, treat accordingly
            }

            // quick tag checks: anything that's *not* an end tag
            $ok = false;
            if ($type === 'empty' && $token instanceof HTMLPurifier_Token_Start) {
                // claims to be a start tag but is empty
                $token = new HTMLPurifier_Token_Empty(
                    $token->name,
                    $token->attr,
                    $token->line,
                    $token->col,
                    $token->armor
                );
                $ok = true;
            } elseif ($type && $type !== 'empty' && $token instanceof HTMLPurifier_Token_Empty) {
                // claims to be empty but really is a start tag
                // NB: this assignment is required
                $old_token = $token;
                $token = new HTMLPurifier_Token_End($token->name);
                $token = $this->insertBefore(
                    new HTMLPurifier_Token_Start($old_token->name, $old_token->attr, $old_token->line, $old_token->col, $old_token->armor)
                );
                // punt (since we had to modify the input stream in a non-trivial way)
                $reprocess = true;
                continue;
            } elseif ($token instanceof HTMLPurifier_Token_Empty) {
                // real empty token
                $ok = true;
            } elseif ($token instanceof HTMLPurifier_Token_Start) {
                // start tag

                // ...unless they also have to close their parent
                if (!empty($this->stack)) {

                    // Performance note: you might think that it's rather
                    // inefficient, recalculating the autoclose information
                    // for every tag that a token closes (since when we
                    // do an autoclose, we push a new token into the
                    // stream and then /process/ that, before
                    // re-processing this token.)  But this is
                    // necessary, because an injector can make an
                    // arbitrary transformations to the autoclosing
                    // tokens we introduce, so things may have changed
                    // in the meantime.  Also, doing the inefficient thing is
                    // "easy" to reason about (for certain perverse definitions
                    // of "easy")

                    $parent = array_pop($this->stack);
                    $this->stack[] = $parent;

                    $parent_def = null;
                    $parent_elements = null;
                    $autoclose = false;
                    if (isset($definition->info[$parent->name])) {
                        $parent_def = $definition->info[$parent->name];
                        $parent_elements = $parent_def->child->getAllowedElements($config);
                        $autoclose = !isset($parent_elements[$token->name]);
                    }

                    if ($autoclose && $definition->info[$token->name]->wrap) {
                        // Check if an element can be wrapped by another
                        // element to make it valid in a context (for
                        // example, <ul><ul> needs a <li> in between)
                        $wrapname = $definition->info[$token->name]->wrap;
                        $wrapdef = $definition->info[$wrapname];
                        $elements = $wrapdef->child->getAllowedElements($config);
                        if (isset($elements[$token->name]) && isset($parent_elements[$wrapname])) {
                            $newtoken = new HTMLPurifier_Token_Start($wrapname);
                            $token = $this->insertBefore($newtoken);
                            $reprocess = true;
                            continue;
                        }
                    }

                    $carryover = false;
                    if ($autoclose && $parent_def->formatting) {
                        $carryover = true;
                    }

                    if ($autoclose) {
                        // check if this autoclose is doomed to fail
                        // (this rechecks $parent, which his harmless)
                        $autoclose_ok = isset($global_parent_allowed_elements[$token->name]);
                        if (!$autoclose_ok) {
                            foreach ($this->stack as $ancestor) {
                                $elements = $definition->info[$ancestor->name]->child->getAllowedElements($config);
                                if (isset($elements[$token->name])) {
                                    $autoclose_ok = true;
                                    break;
                                }
                                if ($definition->info[$token->name]->wrap) {
                                    $wrapname = $definition->info[$token->name]->wrap;
                                    $wrapdef = $definition->info[$wrapname];
                                    $wrap_elements = $wrapdef->child->getAllowedElements($config);
                                    if (isset($wrap_elements[$token->name]) && isset($elements[$wrapname])) {
                                        $autoclose_ok = true;
                                        break;
                                    }
                                }
                            }
                        }
                        if ($autoclose_ok) {
                            // errors need to be updated
                            $new_token = new HTMLPurifier_Token_End($parent->name);
                            $new_token->start = $parent;
                            // [TagClosedSuppress]
                            if ($e && !isset($parent->armor['MakeWellFormed_TagClosedError'])) {
                                if (!$carryover) {
                                    $e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag auto closed', $parent);
                                } else {
                                    $e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag carryover', $parent);
                                }
                            }
                            if ($carryover) {
                                $element = clone $parent;
                                // [TagClosedAuto]
                                $element->armor['MakeWellFormed_TagClosedError'] = true;
                                $element->carryover = true;
                                $token = $this->processToken(array($new_token, $token, $element));
                            } else {
                                $token = $this->insertBefore($new_token);
                            }
                        } else {
                            $token = $this->remove();
                        }
                        $reprocess = true;
                        continue;
                    }

                }
                $ok = true;
            }

            if ($ok) {
                foreach ($this->injectors as $i => $injector) {
                    if (isset($token->skip[$i])) {
                        // See Note [Injector skips]
                        continue;
                    }
                    if ($token->rewind !== null && $token->rewind !== $i) {
                        continue;
                    }
                    $r = $token;
                    $injector->handleElement($r);
                    $token = $this->processToken($r, $i);
                    $reprocess = true;
                    break;
                }
                if (!$reprocess) {
                    // ah, nothing interesting happened; do normal processing
                    if ($token instanceof HTMLPurifier_Token_Start) {
                        $this->stack[] = $token;
                    } elseif ($token instanceof HTMLPurifier_Token_End) {
                        throw new HTMLPurifier_Exception(
                            'Improper handling of end tag in start code; possible error in MakeWellFormed'
                        );
                    }
                }
                continue;
            }

            // sanity check: we should be dealing with a closing tag
            if (!$token instanceof HTMLPurifier_Token_End) {
                throw new HTMLPurifier_Exception('Unaccounted for tag token in input stream, bug in HTML Purifier');
            }

            // make sure that we have something open
            if (empty($this->stack)) {
                if ($escape_invalid_tags) {
                    if ($e) {
                        $e->send(E_WARNING, 'Strategy_MakeWellFormed: Unnecessary end tag to text');
                    }
                    $token = new HTMLPurifier_Token_Text($generator->generateFromToken($token));
                } else {
                    if ($e) {
                        $e->send(E_WARNING, 'Strategy_MakeWellFormed: Unnecessary end tag removed');
                    }
                    $token = $this->remove();
                }
                $reprocess = true;
                continue;
            }

            // first, check for the simplest case: everything closes neatly.
            // Eventually, everything passes through here; if there are problems
            // we modify the input stream accordingly and then punt, so that
            // the tokens get processed again.
            $current_parent = array_pop($this->stack);
            if ($current_parent->name == $token->name) {
                $token->start = $current_parent;
                foreach ($this->injectors as $i => $injector) {
                    if (isset($token->skip[$i])) {
                        // See Note [Injector skips]
                        continue;
                    }
                    if ($token->rewind !== null && $token->rewind !== $i) {
                        continue;
                    }
                    $r = $token;
                    $injector->handleEnd($r);
                    $token = $this->processToken($r, $i);
                    $this->stack[] = $current_parent;
                    $reprocess = true;
                    break;
                }
                continue;
            }

            // okay, so we're trying to close the wrong tag

            // undo the pop previous pop
            $this->stack[] = $current_parent;

            // scroll back the entire nest, trying to find our tag.
            // (feature could be to specify how far you'd like to go)
            $size = count($this->stack);
            // -2 because -1 is the last element, but we already checked that
            $skipped_tags = false;
            for ($j = $size - 2; $j >= 0; $j--) {
                if ($this->stack[$j]->name == $token->name) {
                    $skipped_tags = array_slice($this->stack, $j);
                    break;
                }
            }

            // we didn't find the tag, so remove
            if ($skipped_tags === false) {
                if ($escape_invalid_tags) {
                    if ($e) {
                        $e->send(E_WARNING, 'Strategy_MakeWellFormed: Stray end tag to text');
                    }
                    $token = new HTMLPurifier_Token_Text($generator->generateFromToken($token));
                } else {
                    if ($e) {
                        $e->send(E_WARNING, 'Strategy_MakeWellFormed: Stray end tag removed');
                    }
                    $token = $this->remove();
                }
                $reprocess = true;
                continue;
            }

            // do errors, in REVERSE $j order: a,b,c with </a></b></c>
            $c = count($skipped_tags);
            if ($e) {
                for ($j = $c - 1; $j > 0; $j--) {
                    // notice we exclude $j == 0, i.e. the current ending tag, from
                    // the errors... [TagClosedSuppress]
                    if (!isset($skipped_tags[$j]->armor['MakeWellFormed_TagClosedError'])) {
                        $e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag closed by element end', $skipped_tags[$j]);
                    }
                }
            }

            // insert tags, in FORWARD $j order: c,b,a with </a></b></c>
            $replace = array($token);
            for ($j = 1; $j < $c; $j++) {
                // ...as well as from the insertions
                $new_token = new HTMLPurifier_Token_End($skipped_tags[$j]->name);
                $new_token->start = $skipped_tags[$j];
                array_unshift($replace, $new_token);
                if (isset($definition->info[$new_token->name]) && $definition->info[$new_token->name]->formatting) {
                    // [TagClosedAuto]
                    $element = clone $skipped_tags[$j];
                    $element->carryover = true;
                    $element->armor['MakeWellFormed_TagClosedError'] = true;
                    $replace[] = $element;
                }
            }
            $token = $this->processToken($replace);
            $reprocess = true;
            continue;
        }

        $context->destroy('CurrentToken');
        $context->destroy('CurrentNesting');
        $context->destroy('InputZipper');

        unset($this->injectors, $this->stack, $this->tokens);
        return $zipper->toArray($token);
    }

    /**
     * Processes arbitrary token values for complicated substitution patterns.
     * In general:
     *
     * If $token is an array, it is a list of tokens to substitute for the
     * current token. These tokens then get individually processed. If there
     * is a leading integer in the list, that integer determines how many
     * tokens from the stream should be removed.
     *
     * If $token is a regular token, it is swapped with the current token.
     *
     * If $token is false, the current token is deleted.
     *
     * If $token is an integer, that number of tokens (with the first token
     * being the current one) will be deleted.
     *
     * @param HTMLPurifier_Token|array|int|bool $token Token substitution value
     * @param HTMLPurifier_Injector|int $injector Injector that performed the substitution; default is if
     *        this is not an injector related operation.
     * @throws HTMLPurifier_Exception
     */
    protected function processToken($token, $injector = -1)
    {
        // Zend OpCache miscompiles $token = array($token), so
        // avoid this pattern.  See: https://github.com/ezyang/htmlpurifier/issues/108

        // normalize forms of token
        if (is_object($token)) {
            $tmp = $token;
            $token = array(1, $tmp);
        }
        if (is_int($token)) {
            $tmp = $token;
            $token = array($tmp);
        }
        if ($token === false) {
            $token = array(1);
        }
        if (!is_array($token)) {
            throw new HTMLPurifier_Exception('Invalid token type from injector');
        }
        if (!is_int($token[0])) {
            array_unshift($token, 1);
        }
        if ($token[0] === 0) {
            throw new HTMLPurifier_Exception('Deleting zero tokens is not valid');
        }

        // $token is now an array with the following form:
        // array(number nodes to delete, new node 1, new node 2, ...)

        $delete = array_shift($token);
        list($old, $r) = $this->zipper->splice($this->token, $delete, $token);

        if ($injector > -1) {
            // See Note [Injector skips]
            // Determine appropriate skips.  Here's what the code does:
            //  *If* we deleted one or more tokens, copy the skips
            //  of those tokens into the skips of the new tokens (in $token).
            //  Also, mark the newly inserted tokens as having come from
            //  $injector.
            $oldskip = isset($old[0]) ? $old[0]->skip : array();
            foreach ($token as $object) {
                $object->skip = $oldskip;
                $object->skip[$injector] = true;
            }
        }

        return $r;

    }

    /**
     * Inserts a token before the current token. Cursor now points to
     * this token.  You must reprocess after this.
     * @param HTMLPurifier_Token $token
     */
    private function insertBefore($token)
    {
        // NB not $this->zipper->insertBefore(), due to positioning
        // differences
        $splice = $this->zipper->splice($this->token, 0, array($token));

        return $splice[1];
    }

    /**
     * Removes current token. Cursor now points to new token occupying previously
     * occupied space.  You must reprocess after this.
     */
    private function remove()
    {
        return $this->zipper->delete();
    }
}

// Note [Injector skips]
// ~~~~~~~~~~~~~~~~~~~~~
// When I originally designed this class, the idea behind the 'skip'
// property of HTMLPurifier_Token was to help avoid infinite loops
// in injector processing.  For example, suppose you wrote an injector
// that bolded swear words.  Naively, you might write it so that
// whenever you saw ****, you replaced it with <strong>****</strong>.
//
// When this happens, we will reprocess all of the tokens with the
// other injectors.  Now there is an opportunity for infinite loop:
// if we rerun the swear-word injector on these tokens, we might
// see **** and then reprocess again to get
// <strong><strong>****</strong></strong> ad infinitum.
//
// Thus, the idea of a skip is that once we process a token with
// an injector, we mark all of those tokens as having "come from"
// the injector, and we never run the injector again on these
// tokens.
//
// There were two more complications, however:
//
//  - With HTMLPurifier_Injector_RemoveEmpty, we noticed that if
//    you had <b><i></i></b>, after you removed the <i></i>, you
//    really would like this injector to go back and reprocess
//    the <b> tag, discovering that it is now empty and can be
//    removed.  So we reintroduced the possibility of infinite looping
//    by adding a "rewind" function, which let you go back to an
//    earlier point in the token stream and reprocess it with injectors.
//    Needless to say, we need to UN-skip the token so it gets
//    reprocessed.
//
//  - Suppose that you successfuly process a token, replace it with
//    one with your skip mark, but now another injector wants to
//    process the skipped token with another token.  Should you continue
//    to skip that new token, or reprocess it?  If you reprocess,
//    you can end up with an infinite loop where one injector converts
//    <a> to <b>, and then another injector converts it back.  So
//    we inherit the skips, but for some reason, I thought that we
//    should inherit the skip from the first token of the token
//    that we deleted.  Why?  Well, it seems to work OK.
//
// If I were to redesign this functionality, I would absolutely not
// go about doing it this way: the semantics are just not very well
// defined, and in any case you probably wanted to operate on trees,
// not token streams.

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php000064400000016605151213256030020341 0ustar00<?php

/**
 * Takes a well formed list of tokens and fixes their nesting.
 *
 * HTML elements dictate which elements are allowed to be their children,
 * for example, you can't have a p tag in a span tag.  Other elements have
 * much more rigorous definitions: tables, for instance, require a specific
 * order for their elements.  There are also constraints not expressible by
 * document type definitions, such as the chameleon nature of ins/del
 * tags and global child exclusions.
 *
 * The first major objective of this strategy is to iterate through all
 * the nodes and determine whether or not their children conform to the
 * element's definition.  If they do not, the child definition may
 * optionally supply an amended list of elements that is valid or
 * require that the entire node be deleted (and the previous node
 * rescanned).
 *
 * The second objective is to ensure that explicitly excluded elements of
 * an element do not appear in its children.  Code that accomplishes this
 * task is pervasive through the strategy, though the two are distinct tasks
 * and could, theoretically, be seperated (although it's not recommended).
 *
 * @note Whether or not unrecognized children are silently dropped or
 *       translated into text depends on the child definitions.
 *
 * @todo Enable nodes to be bubbled out of the structure.  This is
 *       easier with our new algorithm.
 */

class HTMLPurifier_Strategy_FixNesting extends HTMLPurifier_Strategy
{

    /**
     * @param HTMLPurifier_Token[] $tokens
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return array|HTMLPurifier_Token[]
     */
    public function execute($tokens, $config, $context)
    {

        //####################################################################//
        // Pre-processing

        // O(n) pass to convert to a tree, so that we can efficiently
        // refer to substrings
        $top_node = HTMLPurifier_Arborize::arborize($tokens, $config, $context);

        // get a copy of the HTML definition
        $definition = $config->getHTMLDefinition();

        $excludes_enabled = !$config->get('Core.DisableExcludes');

        // setup the context variable 'IsInline', for chameleon processing
        // is 'false' when we are not inline, 'true' when it must always
        // be inline, and an integer when it is inline for a certain
        // branch of the document tree
        $is_inline = $definition->info_parent_def->descendants_are_inline;
        $context->register('IsInline', $is_inline);

        // setup error collector
        $e =& $context->get('ErrorCollector', true);

        //####################################################################//
        // Loop initialization

        // stack that contains all elements that are excluded
        // it is organized by parent elements, similar to $stack,
        // but it is only populated when an element with exclusions is
        // processed, i.e. there won't be empty exclusions.
        $exclude_stack = array($definition->info_parent_def->excludes);

        // variable that contains the start token while we are processing
        // nodes. This enables error reporting to do its job
        $node = $top_node;
        // dummy token
        list($token, $d) = $node->toTokenPair();
        $context->register('CurrentNode', $node);
        $context->register('CurrentToken', $token);

        //####################################################################//
        // Loop

        // We need to implement a post-order traversal iteratively, to
        // avoid running into stack space limits.  This is pretty tricky
        // to reason about, so we just manually stack-ify the recursive
        // variant:
        //
        //  function f($node) {
        //      foreach ($node->children as $child) {
        //          f($child);
        //      }
        //      validate($node);
        //  }
        //
        // Thus, we will represent a stack frame as array($node,
        // $is_inline, stack of children)
        // e.g. array_reverse($node->children) - already processed
        // children.

        $parent_def = $definition->info_parent_def;
        $stack = array(
            array($top_node,
                  $parent_def->descendants_are_inline,
                  $parent_def->excludes, // exclusions
                  0)
            );

        while (!empty($stack)) {
            list($node, $is_inline, $excludes, $ix) = array_pop($stack);
            // recursive call
            $go = false;
            $def = empty($stack) ? $definition->info_parent_def : $definition->info[$node->name];
            while (isset($node->children[$ix])) {
                $child = $node->children[$ix++];
                if ($child instanceof HTMLPurifier_Node_Element) {
                    $go = true;
                    $stack[] = array($node, $is_inline, $excludes, $ix);
                    $stack[] = array($child,
                        // ToDo: I don't think it matters if it's def or
                        // child_def, but double check this...
                        $is_inline || $def->descendants_are_inline,
                        empty($def->excludes) ? $excludes
                                              : array_merge($excludes, $def->excludes),
                        0);
                    break;
                }
            };
            if ($go) continue;
            list($token, $d) = $node->toTokenPair();
            // base case
            if ($excludes_enabled && isset($excludes[$node->name])) {
                $node->dead = true;
                if ($e) $e->send(E_ERROR, 'Strategy_FixNesting: Node excluded');
            } else {
                // XXX I suppose it would be slightly more efficient to
                // avoid the allocation here and have children
                // strategies handle it
                $children = array();
                foreach ($node->children as $child) {
                    if (!$child->dead) $children[] = $child;
                }
                $result = $def->child->validateChildren($children, $config, $context);
                if ($result === true) {
                    // nop
                    $node->children = $children;
                } elseif ($result === false) {
                    $node->dead = true;
                    if ($e) $e->send(E_ERROR, 'Strategy_FixNesting: Node removed');
                } else {
                    $node->children = $result;
                    if ($e) {
                        // XXX This will miss mutations of internal nodes. Perhaps defer to the child validators
                        if (empty($result) && !empty($children)) {
                            $e->send(E_ERROR, 'Strategy_FixNesting: Node contents removed');
                        } else if ($result != $children) {
                            $e->send(E_WARNING, 'Strategy_FixNesting: Node reorganized');
                        }
                    }
                }
            }
        }

        //####################################################################//
        // Post-processing

        // remove context variables
        $context->destroy('IsInline');
        $context->destroy('CurrentNode');
        $context->destroy('CurrentToken');

        //####################################################################//
        // Return

        return HTMLPurifier_Arborize::flatten($node, $config, $context);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php000064400000002323151213256030022053 0ustar00<?php

/**
 * Validate all attributes in the tokens.
 */

class HTMLPurifier_Strategy_ValidateAttributes extends HTMLPurifier_Strategy
{

    /**
     * @param HTMLPurifier_Token[] $tokens
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token[]
     */
    public function execute($tokens, $config, $context)
    {
        // setup validator
        $validator = new HTMLPurifier_AttrValidator();

        $token = false;
        $context->register('CurrentToken', $token);

        foreach ($tokens as $key => $token) {

            // only process tokens that have attributes,
            //   namely start and empty tags
            if (!$token instanceof HTMLPurifier_Token_Start && !$token instanceof HTMLPurifier_Token_Empty) {
                continue;
            }

            // skip tokens that are armored
            if (!empty($token->armor['ValidateAttributes'])) {
                continue;
            }

            // note that we have no facilities here for removing tokens
            $validator->validateToken($token, $config, $context);
        }
        $context->destroy('CurrentToken');
        return $tokens;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Strategy/Core.php000064400000001006151213256030017140 0ustar00<?php

/**
 * Core strategy composed of the big four strategies.
 */
class HTMLPurifier_Strategy_Core extends HTMLPurifier_Strategy_Composite
{
    public function __construct()
    {
        $this->strategies[] = new HTMLPurifier_Strategy_RemoveForeignElements();
        $this->strategies[] = new HTMLPurifier_Strategy_MakeWellFormed();
        $this->strategies[] = new HTMLPurifier_Strategy_FixNesting();
        $this->strategies[] = new HTMLPurifier_Strategy_ValidateAttributes();
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Filter.php000064400000003131151213256030015674 0ustar00<?php

/**
 * Represents a pre or post processing filter on HTML Purifier's output
 *
 * Sometimes, a little ad-hoc fixing of HTML has to be done before
 * it gets sent through HTML Purifier: you can use filters to acheive
 * this effect. For instance, YouTube videos can be preserved using
 * this manner. You could have used a decorator for this task, but
 * PHP's support for them is not terribly robust, so we're going
 * to just loop through the filters.
 *
 * Filters should be exited first in, last out. If there are three filters,
 * named 1, 2 and 3, the order of execution should go 1->preFilter,
 * 2->preFilter, 3->preFilter, purify, 3->postFilter, 2->postFilter,
 * 1->postFilter.
 *
 * @note Methods are not declared abstract as it is perfectly legitimate
 *       for an implementation not to want anything to happen on a step
 */

class HTMLPurifier_Filter
{

    /**
     * Name of the filter for identification purposes.
     * @type string
     */
    public $name;

    /**
     * Pre-processor function, handles HTML before HTML Purifier
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public function preFilter($html, $config, $context)
    {
        return $html;
    }

    /**
     * Post-processor function, handles HTML after HTML Purifier
     * @param string $html
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public function postFilter($html, $config, $context)
    {
        return $html;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ConfigSchema.php000064400000013417151213256030017005 0ustar00<?php

/**
 * Configuration definition, defines directives and their defaults.
 */
class HTMLPurifier_ConfigSchema
{
    /**
     * Defaults of the directives and namespaces.
     * @type array
     * @note This shares the exact same structure as HTMLPurifier_Config::$conf
     */
    public $defaults = array();

    /**
     * The default property list. Do not edit this property list.
     * @type array
     */
    public $defaultPlist;

    /**
     * Definition of the directives.
     * The structure of this is:
     *
     *  array(
     *      'Namespace' => array(
     *          'Directive' => new stdClass(),
     *      )
     *  )
     *
     * The stdClass may have the following properties:
     *
     *  - If isAlias isn't set:
     *      - type: Integer type of directive, see HTMLPurifier_VarParser for definitions
     *      - allow_null: If set, this directive allows null values
     *      - aliases: If set, an associative array of value aliases to real values
     *      - allowed: If set, a lookup array of allowed (string) values
     *  - If isAlias is set:
     *      - namespace: Namespace this directive aliases to
     *      - name: Directive name this directive aliases to
     *
     * In certain degenerate cases, stdClass will actually be an integer. In
     * that case, the value is equivalent to an stdClass with the type
     * property set to the integer. If the integer is negative, type is
     * equal to the absolute value of integer, and allow_null is true.
     *
     * This class is friendly with HTMLPurifier_Config. If you need introspection
     * about the schema, you're better of using the ConfigSchema_Interchange,
     * which uses more memory but has much richer information.
     * @type array
     */
    public $info = array();

    /**
     * Application-wide singleton
     * @type HTMLPurifier_ConfigSchema
     */
    protected static $singleton;

    public function __construct()
    {
        $this->defaultPlist = new HTMLPurifier_PropertyList();
    }

    /**
     * Unserializes the default ConfigSchema.
     * @return HTMLPurifier_ConfigSchema
     */
    public static function makeFromSerial()
    {
        $contents = file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema.ser');
        $r = unserialize($contents);
        if (!$r) {
            $hash = sha1($contents);
            trigger_error("Unserialization of configuration schema failed, sha1 of file was $hash", E_USER_ERROR);
        }
        return $r;
    }

    /**
     * Retrieves an instance of the application-wide configuration definition.
     * @param HTMLPurifier_ConfigSchema $prototype
     * @return HTMLPurifier_ConfigSchema
     */
    public static function instance($prototype = null)
    {
        if ($prototype !== null) {
            HTMLPurifier_ConfigSchema::$singleton = $prototype;
        } elseif (HTMLPurifier_ConfigSchema::$singleton === null || $prototype === true) {
            HTMLPurifier_ConfigSchema::$singleton = HTMLPurifier_ConfigSchema::makeFromSerial();
        }
        return HTMLPurifier_ConfigSchema::$singleton;
    }

    /**
     * Defines a directive for configuration
     * @warning Will fail of directive's namespace is defined.
     * @warning This method's signature is slightly different from the legacy
     *          define() static method! Beware!
     * @param string $key Name of directive
     * @param mixed $default Default value of directive
     * @param string $type Allowed type of the directive. See
     *      HTMLPurifier_VarParser::$types for allowed values
     * @param bool $allow_null Whether or not to allow null values
     */
    public function add($key, $default, $type, $allow_null)
    {
        $obj = new stdClass();
        $obj->type = is_int($type) ? $type : HTMLPurifier_VarParser::$types[$type];
        if ($allow_null) {
            $obj->allow_null = true;
        }
        $this->info[$key] = $obj;
        $this->defaults[$key] = $default;
        $this->defaultPlist->set($key, $default);
    }

    /**
     * Defines a directive value alias.
     *
     * Directive value aliases are convenient for developers because it lets
     * them set a directive to several values and get the same result.
     * @param string $key Name of Directive
     * @param array $aliases Hash of aliased values to the real alias
     */
    public function addValueAliases($key, $aliases)
    {
        if (!isset($this->info[$key]->aliases)) {
            $this->info[$key]->aliases = array();
        }
        foreach ($aliases as $alias => $real) {
            $this->info[$key]->aliases[$alias] = $real;
        }
    }

    /**
     * Defines a set of allowed values for a directive.
     * @warning This is slightly different from the corresponding static
     *          method definition.
     * @param string $key Name of directive
     * @param array $allowed Lookup array of allowed values
     */
    public function addAllowedValues($key, $allowed)
    {
        $this->info[$key]->allowed = $allowed;
    }

    /**
     * Defines a directive alias for backwards compatibility
     * @param string $key Directive that will be aliased
     * @param string $new_key Directive that the alias will be to
     */
    public function addAlias($key, $new_key)
    {
        $obj = new stdClass;
        $obj->key = $new_key;
        $obj->isAlias = true;
        $this->info[$key] = $obj;
    }

    /**
     * Replaces any stdClass that only has the type property with type integer.
     */
    public function postProcess()
    {
        foreach ($this->info as $key => $v) {
            if (count((array) $v) == 1) {
                $this->info[$key] = $v->type;
            } elseif (count((array) $v) == 2 && isset($v->allow_null)) {
                $this->info[$key] = -$v->type;
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Generator.php000064400000024013151213256030016377 0ustar00<?php

/**
 * Generates HTML from tokens.
 * @todo Refactor interface so that configuration/context is determined
 *       upon instantiation, no need for messy generateFromTokens() calls
 * @todo Make some of the more internal functions protected, and have
 *       unit tests work around that
 */
class HTMLPurifier_Generator
{

    /**
     * Whether or not generator should produce XML output.
     * @type bool
     */
    private $_xhtml = true;

    /**
     * :HACK: Whether or not generator should comment the insides of <script> tags.
     * @type bool
     */
    private $_scriptFix = false;

    /**
     * Cache of HTMLDefinition during HTML output to determine whether or
     * not attributes should be minimized.
     * @type HTMLPurifier_HTMLDefinition
     */
    private $_def;

    /**
     * Cache of %Output.SortAttr.
     * @type bool
     */
    private $_sortAttr;

    /**
     * Cache of %Output.FlashCompat.
     * @type bool
     */
    private $_flashCompat;

    /**
     * Cache of %Output.FixInnerHTML.
     * @type bool
     */
    private $_innerHTMLFix;

    /**
     * Stack for keeping track of object information when outputting IE
     * compatibility code.
     * @type array
     */
    private $_flashStack = array();

    /**
     * Configuration for the generator
     * @type HTMLPurifier_Config
     */
    protected $config;

    /**
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     */
    public function __construct($config, $context)
    {
        $this->config = $config;
        $this->_scriptFix = $config->get('Output.CommentScriptContents');
        $this->_innerHTMLFix = $config->get('Output.FixInnerHTML');
        $this->_sortAttr = $config->get('Output.SortAttr');
        $this->_flashCompat = $config->get('Output.FlashCompat');
        $this->_def = $config->getHTMLDefinition();
        $this->_xhtml = $this->_def->doctype->xml;
    }

    /**
     * Generates HTML from an array of tokens.
     * @param HTMLPurifier_Token[] $tokens Array of HTMLPurifier_Token
     * @return string Generated HTML
     */
    public function generateFromTokens($tokens)
    {
        if (!$tokens) {
            return '';
        }

        // Basic algorithm
        $html = '';
        for ($i = 0, $size = count($tokens); $i < $size; $i++) {
            if ($this->_scriptFix && $tokens[$i]->name === 'script'
                && $i + 2 < $size && $tokens[$i+2] instanceof HTMLPurifier_Token_End) {
                // script special case
                // the contents of the script block must be ONE token
                // for this to work.
                $html .= $this->generateFromToken($tokens[$i++]);
                $html .= $this->generateScriptFromToken($tokens[$i++]);
            }
            $html .= $this->generateFromToken($tokens[$i]);
        }

        // Tidy cleanup
        if (extension_loaded('tidy') && $this->config->get('Output.TidyFormat')) {
            $tidy = new Tidy;
            $tidy->parseString(
                $html,
                array(
                   'indent'=> true,
                   'output-xhtml' => $this->_xhtml,
                   'show-body-only' => true,
                   'indent-spaces' => 2,
                   'wrap' => 68,
                ),
                'utf8'
            );
            $tidy->cleanRepair();
            $html = (string) $tidy; // explicit cast necessary
        }

        // Normalize newlines to system defined value
        if ($this->config->get('Core.NormalizeNewlines')) {
            $nl = $this->config->get('Output.Newline');
            if ($nl === null) {
                $nl = PHP_EOL;
            }
            if ($nl !== "\n") {
                $html = str_replace("\n", $nl, $html);
            }
        }
        return $html;
    }

    /**
     * Generates HTML from a single token.
     * @param HTMLPurifier_Token $token HTMLPurifier_Token object.
     * @return string Generated HTML
     */
    public function generateFromToken($token)
    {
        if (!$token instanceof HTMLPurifier_Token) {
            trigger_error('Cannot generate HTML from non-HTMLPurifier_Token object', E_USER_WARNING);
            return '';

        } elseif ($token instanceof HTMLPurifier_Token_Start) {
            $attr = $this->generateAttributes($token->attr, $token->name);
            if ($this->_flashCompat) {
                if ($token->name == "object") {
                    $flash = new stdClass();
                    $flash->attr = $token->attr;
                    $flash->param = array();
                    $this->_flashStack[] = $flash;
                }
            }
            return '<' . $token->name . ($attr ? ' ' : '') . $attr . '>';

        } elseif ($token instanceof HTMLPurifier_Token_End) {
            $_extra = '';
            if ($this->_flashCompat) {
                if ($token->name == "object" && !empty($this->_flashStack)) {
                    // doesn't do anything for now
                }
            }
            return $_extra . '</' . $token->name . '>';

        } elseif ($token instanceof HTMLPurifier_Token_Empty) {
            if ($this->_flashCompat && $token->name == "param" && !empty($this->_flashStack)) {
                $this->_flashStack[count($this->_flashStack)-1]->param[$token->attr['name']] = $token->attr['value'];
            }
            $attr = $this->generateAttributes($token->attr, $token->name);
             return '<' . $token->name . ($attr ? ' ' : '') . $attr .
                ( $this->_xhtml ? ' /': '' ) // <br /> v. <br>
                . '>';

        } elseif ($token instanceof HTMLPurifier_Token_Text) {
            return $this->escape($token->data, ENT_NOQUOTES);

        } elseif ($token instanceof HTMLPurifier_Token_Comment) {
            return '<!--' . $token->data . '-->';
        } else {
            return '';

        }
    }

    /**
     * Special case processor for the contents of script tags
     * @param HTMLPurifier_Token $token HTMLPurifier_Token object.
     * @return string
     * @warning This runs into problems if there's already a literal
     *          --> somewhere inside the script contents.
     */
    public function generateScriptFromToken($token)
    {
        if (!$token instanceof HTMLPurifier_Token_Text) {
            return $this->generateFromToken($token);
        }
        // Thanks <http://lachy.id.au/log/2005/05/script-comments>
        $data = preg_replace('#//\s*$#', '', $token->data);
        return '<!--//--><![CDATA[//><!--' . "\n" . trim($data) . "\n" . '//--><!]]>';
    }

    /**
     * Generates attribute declarations from attribute array.
     * @note This does not include the leading or trailing space.
     * @param array $assoc_array_of_attributes Attribute array
     * @param string $element Name of element attributes are for, used to check
     *        attribute minimization.
     * @return string Generated HTML fragment for insertion.
     */
    public function generateAttributes($assoc_array_of_attributes, $element = '')
    {
        $html = '';
        if ($this->_sortAttr) {
            ksort($assoc_array_of_attributes);
        }
        foreach ($assoc_array_of_attributes as $key => $value) {
            if (!$this->_xhtml) {
                // Remove namespaced attributes
                if (strpos($key, ':') !== false) {
                    continue;
                }
                // Check if we should minimize the attribute: val="val" -> val
                if ($element && !empty($this->_def->info[$element]->attr[$key]->minimized)) {
                    $html .= $key . ' ';
                    continue;
                }
            }
            // Workaround for Internet Explorer innerHTML bug.
            // Essentially, Internet Explorer, when calculating
            // innerHTML, omits quotes if there are no instances of
            // angled brackets, quotes or spaces.  However, when parsing
            // HTML (for example, when you assign to innerHTML), it
            // treats backticks as quotes.  Thus,
            //      <img alt="``" />
            // becomes
            //      <img alt=`` />
            // becomes
            //      <img alt='' />
            // Fortunately, all we need to do is trigger an appropriate
            // quoting style, which we do by adding an extra space.
            // This also is consistent with the W3C spec, which states
            // that user agents may ignore leading or trailing
            // whitespace (in fact, most don't, at least for attributes
            // like alt, but an extra space at the end is barely
            // noticeable).  Still, we have a configuration knob for
            // this, since this transformation is not necesary if you
            // don't process user input with innerHTML or you don't plan
            // on supporting Internet Explorer.
            if ($this->_innerHTMLFix) {
                if (strpos($value, '`') !== false) {
                    // check if correct quoting style would not already be
                    // triggered
                    if (strcspn($value, '"\' <>') === strlen($value)) {
                        // protect!
                        $value .= ' ';
                    }
                }
            }
            $html .= $key.'="'.$this->escape($value).'" ';
        }
        return rtrim($html);
    }

    /**
     * Escapes raw text data.
     * @todo This really ought to be protected, but until we have a facility
     *       for properly generating HTML here w/o using tokens, it stays
     *       public.
     * @param string $string String data to escape for HTML.
     * @param int $quote Quoting style, like htmlspecialchars. ENT_NOQUOTES is
     *               permissible for non-attribute output.
     * @return string escaped data.
     */
    public function escape($string, $quote = null)
    {
        // Workaround for APC bug on Mac Leopard reported by sidepodcast
        // http://htmlpurifier.org/phorum/read.php?3,4823,4846
        if ($quote === null) {
            $quote = ENT_COMPAT;
        }
        return htmlspecialchars($string, $quote, 'UTF-8');
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php000064400000006201151213256030021014 0ustar00<?php

/**
 * Responsible for creating definition caches.
 */
class HTMLPurifier_DefinitionCacheFactory
{
    /**
     * @type array
     */
    protected $caches = array('Serializer' => array());

    /**
     * @type array
     */
    protected $implementations = array();

    /**
     * @type HTMLPurifier_DefinitionCache_Decorator[]
     */
    protected $decorators = array();

    /**
     * Initialize default decorators
     */
    public function setup()
    {
        $this->addDecorator('Cleanup');
    }

    /**
     * Retrieves an instance of global definition cache factory.
     * @param HTMLPurifier_DefinitionCacheFactory $prototype
     * @return HTMLPurifier_DefinitionCacheFactory
     */
    public static function instance($prototype = null)
    {
        static $instance;
        if ($prototype !== null) {
            $instance = $prototype;
        } elseif ($instance === null || $prototype === true) {
            $instance = new HTMLPurifier_DefinitionCacheFactory();
            $instance->setup();
        }
        return $instance;
    }

    /**
     * Registers a new definition cache object
     * @param string $short Short name of cache object, for reference
     * @param string $long Full class name of cache object, for construction
     */
    public function register($short, $long)
    {
        $this->implementations[$short] = $long;
    }

    /**
     * Factory method that creates a cache object based on configuration
     * @param string $type Name of definitions handled by cache
     * @param HTMLPurifier_Config $config Config instance
     * @return mixed
     */
    public function create($type, $config)
    {
        $method = $config->get('Cache.DefinitionImpl');
        if ($method === null) {
            return new HTMLPurifier_DefinitionCache_Null($type);
        }
        if (!empty($this->caches[$method][$type])) {
            return $this->caches[$method][$type];
        }
        if (isset($this->implementations[$method]) &&
            class_exists($class = $this->implementations[$method], false)) {
            $cache = new $class($type);
        } else {
            if ($method != 'Serializer') {
                trigger_error("Unrecognized DefinitionCache $method, using Serializer instead", E_USER_WARNING);
            }
            $cache = new HTMLPurifier_DefinitionCache_Serializer($type);
        }
        foreach ($this->decorators as $decorator) {
            $new_cache = $decorator->decorate($cache);
            // prevent infinite recursion in PHP 4
            unset($cache);
            $cache = $new_cache;
        }
        $this->caches[$method][$type] = $cache;
        return $this->caches[$method][$type];
    }

    /**
     * Registers a decorator to add to all new cache objects
     * @param HTMLPurifier_DefinitionCache_Decorator|string $decorator An instance or the name of a decorator
     */
    public function addDecorator($decorator)
    {
        if (is_string($decorator)) {
            $class = "HTMLPurifier_DefinitionCache_Decorator_$decorator";
            $decorator = new $class;
        }
        $this->decorators[$decorator->name] = $decorator;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Bootstrap.php000064400000011005151213256030016423 0ustar00<?php

// constants are slow, so we use as few as possible
if (!defined('HTMLPURIFIER_PREFIX')) {
    define('HTMLPURIFIER_PREFIX', realpath(dirname(__FILE__) . '/..'));
}

// accomodations for versions earlier than 5.0.2
// borrowed from PHP_Compat, LGPL licensed, by Aidan Lister <aidan@php.net>
if (!defined('PHP_EOL')) {
    switch (strtoupper(substr(PHP_OS, 0, 3))) {
        case 'WIN':
            define('PHP_EOL', "\r\n");
            break;
        case 'DAR':
            define('PHP_EOL', "\r");
            break;
        default:
            define('PHP_EOL', "\n");
    }
}

/**
 * Bootstrap class that contains meta-functionality for HTML Purifier such as
 * the autoload function.
 *
 * @note
 *      This class may be used without any other files from HTML Purifier.
 */
class HTMLPurifier_Bootstrap
{

    /**
     * Autoload function for HTML Purifier
     * @param string $class Class to load
     * @return bool
     */
    public static function autoload($class)
    {
        $file = HTMLPurifier_Bootstrap::getPath($class);
        if (!$file) {
            return false;
        }
        // Technically speaking, it should be ok and more efficient to
        // just do 'require', but Antonio Parraga reports that with
        // Zend extensions such as Zend debugger and APC, this invariant
        // may be broken.  Since we have efficient alternatives, pay
        // the cost here and avoid the bug.
        require_once HTMLPURIFIER_PREFIX . '/' . $file;
        return true;
    }

    /**
     * Returns the path for a specific class.
     * @param string $class Class path to get
     * @return string
     */
    public static function getPath($class)
    {
        if (strncmp('HTMLPurifier', $class, 12) !== 0) {
            return false;
        }
        // Custom implementations
        if (strncmp('HTMLPurifier_Language_', $class, 22) === 0) {
            $code = str_replace('_', '-', substr($class, 22));
            $file = 'HTMLPurifier/Language/classes/' . $code . '.php';
        } else {
            $file = str_replace('_', '/', $class) . '.php';
        }
        if (!file_exists(HTMLPURIFIER_PREFIX . '/' . $file)) {
            return false;
        }
        return $file;
    }

    /**
     * "Pre-registers" our autoloader on the SPL stack.
     */
    public static function registerAutoload()
    {
        $autoload = array('HTMLPurifier_Bootstrap', 'autoload');
        if (($funcs = spl_autoload_functions()) === false) {
            spl_autoload_register($autoload);
        } elseif (function_exists('spl_autoload_unregister')) {
            if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
                // prepend flag exists, no need for shenanigans
                spl_autoload_register($autoload, true, true);
            } else {
                $buggy  = version_compare(PHP_VERSION, '5.2.11', '<');
                $compat = version_compare(PHP_VERSION, '5.1.2', '<=') &&
                          version_compare(PHP_VERSION, '5.1.0', '>=');
                foreach ($funcs as $func) {
                    if ($buggy && is_array($func)) {
                        // :TRICKY: There are some compatibility issues and some
                        // places where we need to error out
                        $reflector = new ReflectionMethod($func[0], $func[1]);
                        if (!$reflector->isStatic()) {
                            throw new Exception(
                                'HTML Purifier autoloader registrar is not compatible
                                with non-static object methods due to PHP Bug #44144;
                                Please do not use HTMLPurifier.autoload.php (or any
                                file that includes this file); instead, place the code:
                                spl_autoload_register(array(\'HTMLPurifier_Bootstrap\', \'autoload\'))
                                after your own autoloaders.'
                            );
                        }
                        // Suprisingly, spl_autoload_register supports the
                        // Class::staticMethod callback format, although call_user_func doesn't
                        if ($compat) {
                            $func = implode('::', $func);
                        }
                    }
                    spl_autoload_unregister($func);
                }
                spl_autoload_register($autoload);
                foreach ($funcs as $func) {
                    spl_autoload_register($func);
                }
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ContentSets.php000064400000013010151213256030016715 0ustar00<?php

/**
 * @todo Unit test
 */
class HTMLPurifier_ContentSets
{

    /**
     * List of content set strings (pipe separators) indexed by name.
     * @type array
     */
    public $info = array();

    /**
     * List of content set lookups (element => true) indexed by name.
     * @type array
     * @note This is in HTMLPurifier_HTMLDefinition->info_content_sets
     */
    public $lookup = array();

    /**
     * Synchronized list of defined content sets (keys of info).
     * @type array
     */
    protected $keys = array();
    /**
     * Synchronized list of defined content values (values of info).
     * @type array
     */
    protected $values = array();

    /**
     * Merges in module's content sets, expands identifiers in the content
     * sets and populates the keys, values and lookup member variables.
     * @param HTMLPurifier_HTMLModule[] $modules List of HTMLPurifier_HTMLModule
     */
    public function __construct($modules)
    {
        if (!is_array($modules)) {
            $modules = array($modules);
        }
        // populate content_sets based on module hints
        // sorry, no way of overloading
        foreach ($modules as $module) {
            foreach ($module->content_sets as $key => $value) {
                $temp = $this->convertToLookup($value);
                if (isset($this->lookup[$key])) {
                    // add it into the existing content set
                    $this->lookup[$key] = array_merge($this->lookup[$key], $temp);
                } else {
                    $this->lookup[$key] = $temp;
                }
            }
        }
        $old_lookup = false;
        while ($old_lookup !== $this->lookup) {
            $old_lookup = $this->lookup;
            foreach ($this->lookup as $i => $set) {
                $add = array();
                foreach ($set as $element => $x) {
                    if (isset($this->lookup[$element])) {
                        $add += $this->lookup[$element];
                        unset($this->lookup[$i][$element]);
                    }
                }
                $this->lookup[$i] += $add;
            }
        }

        foreach ($this->lookup as $key => $lookup) {
            $this->info[$key] = implode(' | ', array_keys($lookup));
        }
        $this->keys   = array_keys($this->info);
        $this->values = array_values($this->info);
    }

    /**
     * Accepts a definition; generates and assigns a ChildDef for it
     * @param HTMLPurifier_ElementDef $def HTMLPurifier_ElementDef reference
     * @param HTMLPurifier_HTMLModule $module Module that defined the ElementDef
     */
    public function generateChildDef(&$def, $module)
    {
        if (!empty($def->child)) { // already done!
            return;
        }
        $content_model = $def->content_model;
        if (is_string($content_model)) {
            // Assume that $this->keys is alphanumeric
            $def->content_model = preg_replace_callback(
                '/\b(' . implode('|', $this->keys) . ')\b/',
                array($this, 'generateChildDefCallback'),
                $content_model
            );
            //$def->content_model = str_replace(
            //    $this->keys, $this->values, $content_model);
        }
        $def->child = $this->getChildDef($def, $module);
    }

    public function generateChildDefCallback($matches)
    {
        return $this->info[$matches[0]];
    }

    /**
     * Instantiates a ChildDef based on content_model and content_model_type
     * member variables in HTMLPurifier_ElementDef
     * @note This will also defer to modules for custom HTMLPurifier_ChildDef
     *       subclasses that need content set expansion
     * @param HTMLPurifier_ElementDef $def HTMLPurifier_ElementDef to have ChildDef extracted
     * @param HTMLPurifier_HTMLModule $module Module that defined the ElementDef
     * @return HTMLPurifier_ChildDef corresponding to ElementDef
     */
    public function getChildDef($def, $module)
    {
        $value = $def->content_model;
        if (is_object($value)) {
            trigger_error(
                'Literal object child definitions should be stored in '.
                'ElementDef->child not ElementDef->content_model',
                E_USER_NOTICE
            );
            return $value;
        }
        switch ($def->content_model_type) {
            case 'required':
                return new HTMLPurifier_ChildDef_Required($value);
            case 'optional':
                return new HTMLPurifier_ChildDef_Optional($value);
            case 'empty':
                return new HTMLPurifier_ChildDef_Empty();
            case 'custom':
                return new HTMLPurifier_ChildDef_Custom($value);
        }
        // defer to its module
        $return = false;
        if ($module->defines_child_def) { // save a func call
            $return = $module->getChildDef($def);
        }
        if ($return !== false) {
            return $return;
        }
        // error-out
        trigger_error(
            'Could not determine which ChildDef class to instantiate',
            E_USER_ERROR
        );
        return false;
    }

    /**
     * Converts a string list of elements separated by pipes into
     * a lookup array.
     * @param string $string List of elements
     * @return array Lookup array of elements
     */
    protected function convertToLookup($string)
    {
        $array = explode('|', str_replace(' ', '', $string));
        $ret = array();
        foreach ($array as $k) {
            $ret[$k] = true;
        }
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Arborize.php000064400000004766151213256030016243 0ustar00<?php

/**
 * Converts a stream of HTMLPurifier_Token into an HTMLPurifier_Node,
 * and back again.
 *
 * @note This transformation is not an equivalence.  We mutate the input
 * token stream to make it so; see all [MUT] markers in code.
 */
class HTMLPurifier_Arborize
{
    public static function arborize($tokens, $config, $context) {
        $definition = $config->getHTMLDefinition();
        $parent = new HTMLPurifier_Token_Start($definition->info_parent);
        $stack = array($parent->toNode());
        foreach ($tokens as $token) {
            $token->skip = null; // [MUT]
            $token->carryover = null; // [MUT]
            if ($token instanceof HTMLPurifier_Token_End) {
                $token->start = null; // [MUT]
                $r = array_pop($stack);
                //assert($r->name === $token->name);
                //assert(empty($token->attr));
                $r->endCol = $token->col;
                $r->endLine = $token->line;
                $r->endArmor = $token->armor;
                continue;
            }
            $node = $token->toNode();
            $stack[count($stack)-1]->children[] = $node;
            if ($token instanceof HTMLPurifier_Token_Start) {
                $stack[] = $node;
            }
        }
        //assert(count($stack) == 1);
        return $stack[0];
    }

    public static function flatten($node, $config, $context) {
        $level = 0;
        $nodes = array($level => new HTMLPurifier_Queue(array($node)));
        $closingTokens = array();
        $tokens = array();
        do {
            while (!$nodes[$level]->isEmpty()) {
                $node = $nodes[$level]->shift(); // FIFO
                list($start, $end) = $node->toTokenPair();
                if ($level > 0) {
                    $tokens[] = $start;
                }
                if ($end !== NULL) {
                    $closingTokens[$level][] = $end;
                }
                if ($node instanceof HTMLPurifier_Node_Element) {
                    $level++;
                    $nodes[$level] = new HTMLPurifier_Queue();
                    foreach ($node->children as $childNode) {
                        $nodes[$level]->push($childNode);
                    }
                }
            }
            $level--;
            if ($level && isset($closingTokens[$level])) {
                while ($token = array_pop($closingTokens[$level])) {
                    $tokens[] = $token;
                }
            }
        } while ($level > 0);
        return $tokens;
    }
}
lib/htmlpurifier/library/HTMLPurifier/Config.php000064400000075647151213256030015701 0ustar00<?php

/**
 * Configuration object that triggers customizable behavior.
 *
 * @warning This class is strongly defined: that means that the class
 *          will fail if an undefined directive is retrieved or set.
 *
 * @note Many classes that could (although many times don't) use the
 *       configuration object make it a mandatory parameter.  This is
 *       because a configuration object should always be forwarded,
 *       otherwise, you run the risk of missing a parameter and then
 *       being stumped when a configuration directive doesn't work.
 *
 * @todo Reconsider some of the public member variables
 */
class HTMLPurifier_Config
{

    /**
     * HTML Purifier's version
     * @type string
     */
    public $version = '4.13.0';

    /**
     * Whether or not to automatically finalize
     * the object if a read operation is done.
     * @type bool
     */
    public $autoFinalize = true;

    // protected member variables

    /**
     * Namespace indexed array of serials for specific namespaces.
     * @see getSerial() for more info.
     * @type string[]
     */
    protected $serials = array();

    /**
     * Serial for entire configuration object.
     * @type string
     */
    protected $serial;

    /**
     * Parser for variables.
     * @type HTMLPurifier_VarParser_Flexible
     */
    protected $parser = null;

    /**
     * Reference HTMLPurifier_ConfigSchema for value checking.
     * @type HTMLPurifier_ConfigSchema
     * @note This is public for introspective purposes. Please don't
     *       abuse!
     */
    public $def;

    /**
     * Indexed array of definitions.
     * @type HTMLPurifier_Definition[]
     */
    protected $definitions;

    /**
     * Whether or not config is finalized.
     * @type bool
     */
    protected $finalized = false;

    /**
     * Property list containing configuration directives.
     * @type array
     */
    protected $plist;

    /**
     * Whether or not a set is taking place due to an alias lookup.
     * @type bool
     */
    private $aliasMode;

    /**
     * Set to false if you do not want line and file numbers in errors.
     * (useful when unit testing).  This will also compress some errors
     * and exceptions.
     * @type bool
     */
    public $chatty = true;

    /**
     * Current lock; only gets to this namespace are allowed.
     * @type string
     */
    private $lock;

    /**
     * Constructor
     * @param HTMLPurifier_ConfigSchema $definition ConfigSchema that defines
     * what directives are allowed.
     * @param HTMLPurifier_PropertyList $parent
     */
    public function __construct($definition, $parent = null)
    {
        $parent = $parent ? $parent : $definition->defaultPlist;
        $this->plist = new HTMLPurifier_PropertyList($parent);
        $this->def = $definition; // keep a copy around for checking
        $this->parser = new HTMLPurifier_VarParser_Flexible();
    }

    /**
     * Convenience constructor that creates a config object based on a mixed var
     * @param mixed $config Variable that defines the state of the config
     *                      object. Can be: a HTMLPurifier_Config() object,
     *                      an array of directives based on loadArray(),
     *                      or a string filename of an ini file.
     * @param HTMLPurifier_ConfigSchema $schema Schema object
     * @return HTMLPurifier_Config Configured object
     */
    public static function create($config, $schema = null)
    {
        if ($config instanceof HTMLPurifier_Config) {
            // pass-through
            return $config;
        }
        if (!$schema) {
            $ret = HTMLPurifier_Config::createDefault();
        } else {
            $ret = new HTMLPurifier_Config($schema);
        }
        if (is_string($config)) {
            $ret->loadIni($config);
        } elseif (is_array($config)) $ret->loadArray($config);
        return $ret;
    }

    /**
     * Creates a new config object that inherits from a previous one.
     * @param HTMLPurifier_Config $config Configuration object to inherit from.
     * @return HTMLPurifier_Config object with $config as its parent.
     */
    public static function inherit(HTMLPurifier_Config $config)
    {
        return new HTMLPurifier_Config($config->def, $config->plist);
    }

    /**
     * Convenience constructor that creates a default configuration object.
     * @return HTMLPurifier_Config default object.
     */
    public static function createDefault()
    {
        $definition = HTMLPurifier_ConfigSchema::instance();
        $config = new HTMLPurifier_Config($definition);
        return $config;
    }

    /**
     * Retrieves a value from the configuration.
     *
     * @param string $key String key
     * @param mixed $a
     *
     * @return mixed
     */
    public function get($key, $a = null)
    {
        if ($a !== null) {
            $this->triggerError(
                "Using deprecated API: use \$config->get('$key.$a') instead",
                E_USER_WARNING
            );
            $key = "$key.$a";
        }
        if (!$this->finalized) {
            $this->autoFinalize();
        }
        if (!isset($this->def->info[$key])) {
            // can't add % due to SimpleTest bug
            $this->triggerError(
                'Cannot retrieve value of undefined directive ' . htmlspecialchars($key),
                E_USER_WARNING
            );
            return;
        }
        if (isset($this->def->info[$key]->isAlias)) {
            $d = $this->def->info[$key];
            $this->triggerError(
                'Cannot get value from aliased directive, use real name ' . $d->key,
                E_USER_ERROR
            );
            return;
        }
        if ($this->lock) {
            list($ns) = explode('.', $key);
            if ($ns !== $this->lock) {
                $this->triggerError(
                    'Cannot get value of namespace ' . $ns . ' when lock for ' .
                    $this->lock .
                    ' is active, this probably indicates a Definition setup method ' .
                    'is accessing directives that are not within its namespace',
                    E_USER_ERROR
                );
                return;
            }
        }
        return $this->plist->get($key);
    }

    /**
     * Retrieves an array of directives to values from a given namespace
     *
     * @param string $namespace String namespace
     *
     * @return array
     */
    public function getBatch($namespace)
    {
        if (!$this->finalized) {
            $this->autoFinalize();
        }
        $full = $this->getAll();
        if (!isset($full[$namespace])) {
            $this->triggerError(
                'Cannot retrieve undefined namespace ' .
                htmlspecialchars($namespace),
                E_USER_WARNING
            );
            return;
        }
        return $full[$namespace];
    }

    /**
     * Returns a SHA-1 signature of a segment of the configuration object
     * that uniquely identifies that particular configuration
     *
     * @param string $namespace Namespace to get serial for
     *
     * @return string
     * @note Revision is handled specially and is removed from the batch
     *       before processing!
     */
    public function getBatchSerial($namespace)
    {
        if (empty($this->serials[$namespace])) {
            $batch = $this->getBatch($namespace);
            unset($batch['DefinitionRev']);
            $this->serials[$namespace] = sha1(serialize($batch));
        }
        return $this->serials[$namespace];
    }

    /**
     * Returns a SHA-1 signature for the entire configuration object
     * that uniquely identifies that particular configuration
     *
     * @return string
     */
    public function getSerial()
    {
        if (empty($this->serial)) {
            $this->serial = sha1(serialize($this->getAll()));
        }
        return $this->serial;
    }

    /**
     * Retrieves all directives, organized by namespace
     *
     * @warning This is a pretty inefficient function, avoid if you can
     */
    public function getAll()
    {
        if (!$this->finalized) {
            $this->autoFinalize();
        }
        $ret = array();
        foreach ($this->plist->squash() as $name => $value) {
            list($ns, $key) = explode('.', $name, 2);
            $ret[$ns][$key] = $value;
        }
        return $ret;
    }

    /**
     * Sets a value to configuration.
     *
     * @param string $key key
     * @param mixed $value value
     * @param mixed $a
     */
    public function set($key, $value, $a = null)
    {
        if (strpos($key, '.') === false) {
            $namespace = $key;
            $directive = $value;
            $value = $a;
            $key = "$key.$directive";
            $this->triggerError("Using deprecated API: use \$config->set('$key', ...) instead", E_USER_NOTICE);
        } else {
            list($namespace) = explode('.', $key);
        }
        if ($this->isFinalized('Cannot set directive after finalization')) {
            return;
        }
        if (!isset($this->def->info[$key])) {
            $this->triggerError(
                'Cannot set undefined directive ' . htmlspecialchars($key) . ' to value',
                E_USER_WARNING
            );
            return;
        }
        $def = $this->def->info[$key];

        if (isset($def->isAlias)) {
            if ($this->aliasMode) {
                $this->triggerError(
                    'Double-aliases not allowed, please fix '.
                    'ConfigSchema bug with' . $key,
                    E_USER_ERROR
                );
                return;
            }
            $this->aliasMode = true;
            $this->set($def->key, $value);
            $this->aliasMode = false;
            $this->triggerError("$key is an alias, preferred directive name is {$def->key}", E_USER_NOTICE);
            return;
        }

        // Raw type might be negative when using the fully optimized form
        // of stdClass, which indicates allow_null == true
        $rtype = is_int($def) ? $def : $def->type;
        if ($rtype < 0) {
            $type = -$rtype;
            $allow_null = true;
        } else {
            $type = $rtype;
            $allow_null = isset($def->allow_null);
        }

        try {
            $value = $this->parser->parse($value, $type, $allow_null);
        } catch (HTMLPurifier_VarParserException $e) {
            $this->triggerError(
                'Value for ' . $key . ' is of invalid type, should be ' .
                HTMLPurifier_VarParser::getTypeName($type),
                E_USER_WARNING
            );
            return;
        }
        if (is_string($value) && is_object($def)) {
            // resolve value alias if defined
            if (isset($def->aliases[$value])) {
                $value = $def->aliases[$value];
            }
            // check to see if the value is allowed
            if (isset($def->allowed) && !isset($def->allowed[$value])) {
                $this->triggerError(
                    'Value not supported, valid values are: ' .
                    $this->_listify($def->allowed),
                    E_USER_WARNING
                );
                return;
            }
        }
        $this->plist->set($key, $value);

        // reset definitions if the directives they depend on changed
        // this is a very costly process, so it's discouraged
        // with finalization
        if ($namespace == 'HTML' || $namespace == 'CSS' || $namespace == 'URI') {
            $this->definitions[$namespace] = null;
        }

        $this->serials[$namespace] = false;
    }

    /**
     * Convenience function for error reporting
     *
     * @param array $lookup
     *
     * @return string
     */
    private function _listify($lookup)
    {
        $list = array();
        foreach ($lookup as $name => $b) {
            $list[] = $name;
        }
        return implode(', ', $list);
    }

    /**
     * Retrieves object reference to the HTML definition.
     *
     * @param bool $raw Return a copy that has not been setup yet. Must be
     *             called before it's been setup, otherwise won't work.
     * @param bool $optimized If true, this method may return null, to
     *             indicate that a cached version of the modified
     *             definition object is available and no further edits
     *             are necessary.  Consider using
     *             maybeGetRawHTMLDefinition, which is more explicitly
     *             named, instead.
     *
     * @return HTMLPurifier_HTMLDefinition|null
     */
    public function getHTMLDefinition($raw = false, $optimized = false)
    {
        return $this->getDefinition('HTML', $raw, $optimized);
    }

    /**
     * Retrieves object reference to the CSS definition
     *
     * @param bool $raw Return a copy that has not been setup yet. Must be
     *             called before it's been setup, otherwise won't work.
     * @param bool $optimized If true, this method may return null, to
     *             indicate that a cached version of the modified
     *             definition object is available and no further edits
     *             are necessary.  Consider using
     *             maybeGetRawCSSDefinition, which is more explicitly
     *             named, instead.
     *
     * @return HTMLPurifier_CSSDefinition|null
     */
    public function getCSSDefinition($raw = false, $optimized = false)
    {
        return $this->getDefinition('CSS', $raw, $optimized);
    }

    /**
     * Retrieves object reference to the URI definition
     *
     * @param bool $raw Return a copy that has not been setup yet. Must be
     *             called before it's been setup, otherwise won't work.
     * @param bool $optimized If true, this method may return null, to
     *             indicate that a cached version of the modified
     *             definition object is available and no further edits
     *             are necessary.  Consider using
     *             maybeGetRawURIDefinition, which is more explicitly
     *             named, instead.
     *
     * @return HTMLPurifier_URIDefinition|null
     */
    public function getURIDefinition($raw = false, $optimized = false)
    {
        return $this->getDefinition('URI', $raw, $optimized);
    }

    /**
     * Retrieves a definition
     *
     * @param string $type Type of definition: HTML, CSS, etc
     * @param bool $raw Whether or not definition should be returned raw
     * @param bool $optimized Only has an effect when $raw is true.  Whether
     *        or not to return null if the result is already present in
     *        the cache.  This is off by default for backwards
     *        compatibility reasons, but you need to do things this
     *        way in order to ensure that caching is done properly.
     *        Check out enduser-customize.html for more details.
     *        We probably won't ever change this default, as much as the
     *        maybe semantics is the "right thing to do."
     *
     * @throws HTMLPurifier_Exception
     * @return HTMLPurifier_Definition|null
     */
    public function getDefinition($type, $raw = false, $optimized = false)
    {
        if ($optimized && !$raw) {
            throw new HTMLPurifier_Exception("Cannot set optimized = true when raw = false");
        }
        if (!$this->finalized) {
            $this->autoFinalize();
        }
        // temporarily suspend locks, so we can handle recursive definition calls
        $lock = $this->lock;
        $this->lock = null;
        $factory = HTMLPurifier_DefinitionCacheFactory::instance();
        $cache = $factory->create($type, $this);
        $this->lock = $lock;
        if (!$raw) {
            // full definition
            // ---------------
            // check if definition is in memory
            if (!empty($this->definitions[$type])) {
                $def = $this->definitions[$type];
                // check if the definition is setup
                if ($def->setup) {
                    return $def;
                } else {
                    $def->setup($this);
                    if ($def->optimized) {
                        $cache->add($def, $this);
                    }
                    return $def;
                }
            }
            // check if definition is in cache
            $def = $cache->get($this);
            if ($def) {
                // definition in cache, save to memory and return it
                $this->definitions[$type] = $def;
                return $def;
            }
            // initialize it
            $def = $this->initDefinition($type);
            // set it up
            $this->lock = $type;
            $def->setup($this);
            $this->lock = null;
            // save in cache
            $cache->add($def, $this);
            // return it
            return $def;
        } else {
            // raw definition
            // --------------
            // check preconditions
            $def = null;
            if ($optimized) {
                if (is_null($this->get($type . '.DefinitionID'))) {
                    // fatally error out if definition ID not set
                    throw new HTMLPurifier_Exception(
                        "Cannot retrieve raw version without specifying %$type.DefinitionID"
                    );
                }
            }
            if (!empty($this->definitions[$type])) {
                $def = $this->definitions[$type];
                if ($def->setup && !$optimized) {
                    $extra = $this->chatty ?
                        " (try moving this code block earlier in your initialization)" :
                        "";
                    throw new HTMLPurifier_Exception(
                        "Cannot retrieve raw definition after it has already been setup" .
                        $extra
                    );
                }
                if ($def->optimized === null) {
                    $extra = $this->chatty ? " (try flushing your cache)" : "";
                    throw new HTMLPurifier_Exception(
                        "Optimization status of definition is unknown" . $extra
                    );
                }
                if ($def->optimized !== $optimized) {
                    $msg = $optimized ? "optimized" : "unoptimized";
                    $extra = $this->chatty ?
                        " (this backtrace is for the first inconsistent call, which was for a $msg raw definition)"
                        : "";
                    throw new HTMLPurifier_Exception(
                        "Inconsistent use of optimized and unoptimized raw definition retrievals" . $extra
                    );
                }
            }
            // check if definition was in memory
            if ($def) {
                if ($def->setup) {
                    // invariant: $optimized === true (checked above)
                    return null;
                } else {
                    return $def;
                }
            }
            // if optimized, check if definition was in cache
            // (because we do the memory check first, this formulation
            // is prone to cache slamming, but I think
            // guaranteeing that either /all/ of the raw
            // setup code or /none/ of it is run is more important.)
            if ($optimized) {
                // This code path only gets run once; once we put
                // something in $definitions (which is guaranteed by the
                // trailing code), we always short-circuit above.
                $def = $cache->get($this);
                if ($def) {
                    // save the full definition for later, but don't
                    // return it yet
                    $this->definitions[$type] = $def;
                    return null;
                }
            }
            // check invariants for creation
            if (!$optimized) {
                if (!is_null($this->get($type . '.DefinitionID'))) {
                    if ($this->chatty) {
                        $this->triggerError(
                            'Due to a documentation error in previous version of HTML Purifier, your ' .
                            'definitions are not being cached.  If this is OK, you can remove the ' .
                            '%$type.DefinitionRev and %$type.DefinitionID declaration.  Otherwise, ' .
                            'modify your code to use maybeGetRawDefinition, and test if the returned ' .
                            'value is null before making any edits (if it is null, that means that a ' .
                            'cached version is available, and no raw operations are necessary).  See ' .
                            '<a href="http://htmlpurifier.org/docs/enduser-customize.html#optimized">' .
                            'Customize</a> for more details',
                            E_USER_WARNING
                        );
                    } else {
                        $this->triggerError(
                            "Useless DefinitionID declaration",
                            E_USER_WARNING
                        );
                    }
                }
            }
            // initialize it
            $def = $this->initDefinition($type);
            $def->optimized = $optimized;
            return $def;
        }
        throw new HTMLPurifier_Exception("The impossible happened!");
    }

    /**
     * Initialise definition
     *
     * @param string $type What type of definition to create
     *
     * @return HTMLPurifier_CSSDefinition|HTMLPurifier_HTMLDefinition|HTMLPurifier_URIDefinition
     * @throws HTMLPurifier_Exception
     */
    private function initDefinition($type)
    {
        // quick checks failed, let's create the object
        if ($type == 'HTML') {
            $def = new HTMLPurifier_HTMLDefinition();
        } elseif ($type == 'CSS') {
            $def = new HTMLPurifier_CSSDefinition();
        } elseif ($type == 'URI') {
            $def = new HTMLPurifier_URIDefinition();
        } else {
            throw new HTMLPurifier_Exception(
                "Definition of $type type not supported"
            );
        }
        $this->definitions[$type] = $def;
        return $def;
    }

    public function maybeGetRawDefinition($name)
    {
        return $this->getDefinition($name, true, true);
    }

    /**
     * @return HTMLPurifier_HTMLDefinition|null
     */
    public function maybeGetRawHTMLDefinition()
    {
        return $this->getDefinition('HTML', true, true);
    }
    
    /**
     * @return HTMLPurifier_CSSDefinition|null
     */
    public function maybeGetRawCSSDefinition()
    {
        return $this->getDefinition('CSS', true, true);
    }
    
    /**
     * @return HTMLPurifier_URIDefinition|null
     */
    public function maybeGetRawURIDefinition()
    {
        return $this->getDefinition('URI', true, true);
    }

    /**
     * Loads configuration values from an array with the following structure:
     * Namespace.Directive => Value
     *
     * @param array $config_array Configuration associative array
     */
    public function loadArray($config_array)
    {
        if ($this->isFinalized('Cannot load directives after finalization')) {
            return;
        }
        foreach ($config_array as $key => $value) {
            $key = str_replace('_', '.', $key);
            if (strpos($key, '.') !== false) {
                $this->set($key, $value);
            } else {
                $namespace = $key;
                $namespace_values = $value;
                foreach ($namespace_values as $directive => $value2) {
                    $this->set($namespace .'.'. $directive, $value2);
                }
            }
        }
    }

    /**
     * Returns a list of array(namespace, directive) for all directives
     * that are allowed in a web-form context as per an allowed
     * namespaces/directives list.
     *
     * @param array $allowed List of allowed namespaces/directives
     * @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy
     *
     * @return array
     */
    public static function getAllowedDirectivesForForm($allowed, $schema = null)
    {
        if (!$schema) {
            $schema = HTMLPurifier_ConfigSchema::instance();
        }
        if ($allowed !== true) {
            if (is_string($allowed)) {
                $allowed = array($allowed);
            }
            $allowed_ns = array();
            $allowed_directives = array();
            $blacklisted_directives = array();
            foreach ($allowed as $ns_or_directive) {
                if (strpos($ns_or_directive, '.') !== false) {
                    // directive
                    if ($ns_or_directive[0] == '-') {
                        $blacklisted_directives[substr($ns_or_directive, 1)] = true;
                    } else {
                        $allowed_directives[$ns_or_directive] = true;
                    }
                } else {
                    // namespace
                    $allowed_ns[$ns_or_directive] = true;
                }
            }
        }
        $ret = array();
        foreach ($schema->info as $key => $def) {
            list($ns, $directive) = explode('.', $key, 2);
            if ($allowed !== true) {
                if (isset($blacklisted_directives["$ns.$directive"])) {
                    continue;
                }
                if (!isset($allowed_directives["$ns.$directive"]) && !isset($allowed_ns[$ns])) {
                    continue;
                }
            }
            if (isset($def->isAlias)) {
                continue;
            }
            if ($directive == 'DefinitionID' || $directive == 'DefinitionRev') {
                continue;
            }
            $ret[] = array($ns, $directive);
        }
        return $ret;
    }

    /**
     * Loads configuration values from $_GET/$_POST that were posted
     * via ConfigForm
     *
     * @param array $array $_GET or $_POST array to import
     * @param string|bool $index Index/name that the config variables are in
     * @param array|bool $allowed List of allowed namespaces/directives
     * @param bool $mq_fix Boolean whether or not to enable magic quotes fix
     * @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy
     *
     * @return mixed
     */
    public static function loadArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true, $schema = null)
    {
        $ret = HTMLPurifier_Config::prepareArrayFromForm($array, $index, $allowed, $mq_fix, $schema);
        $config = HTMLPurifier_Config::create($ret, $schema);
        return $config;
    }

    /**
     * Merges in configuration values from $_GET/$_POST to object. NOT STATIC.
     *
     * @param array $array $_GET or $_POST array to import
     * @param string|bool $index Index/name that the config variables are in
     * @param array|bool $allowed List of allowed namespaces/directives
     * @param bool $mq_fix Boolean whether or not to enable magic quotes fix
     */
    public function mergeArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true)
    {
         $ret = HTMLPurifier_Config::prepareArrayFromForm($array, $index, $allowed, $mq_fix, $this->def);
         $this->loadArray($ret);
    }

    /**
     * Prepares an array from a form into something usable for the more
     * strict parts of HTMLPurifier_Config
     *
     * @param array $array $_GET or $_POST array to import
     * @param string|bool $index Index/name that the config variables are in
     * @param array|bool $allowed List of allowed namespaces/directives
     * @param bool $mq_fix Boolean whether or not to enable magic quotes fix
     * @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy
     *
     * @return array
     */
    public static function prepareArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true, $schema = null)
    {
        if ($index !== false) {
            $array = (isset($array[$index]) && is_array($array[$index])) ? $array[$index] : array();
        }
        $mq = $mq_fix && function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc();

        $allowed = HTMLPurifier_Config::getAllowedDirectivesForForm($allowed, $schema);
        $ret = array();
        foreach ($allowed as $key) {
            list($ns, $directive) = $key;
            $skey = "$ns.$directive";
            if (!empty($array["Null_$skey"])) {
                $ret[$ns][$directive] = null;
                continue;
            }
            if (!isset($array[$skey])) {
                continue;
            }
            $value = $mq ? stripslashes($array[$skey]) : $array[$skey];
            $ret[$ns][$directive] = $value;
        }
        return $ret;
    }

    /**
     * Loads configuration values from an ini file
     *
     * @param string $filename Name of ini file
     */
    public function loadIni($filename)
    {
        if ($this->isFinalized('Cannot load directives after finalization')) {
            return;
        }
        $array = parse_ini_file($filename, true);
        $this->loadArray($array);
    }

    /**
     * Checks whether or not the configuration object is finalized.
     *
     * @param string|bool $error String error message, or false for no error
     *
     * @return bool
     */
    public function isFinalized($error = false)
    {
        if ($this->finalized && $error) {
            $this->triggerError($error, E_USER_ERROR);
        }
        return $this->finalized;
    }

    /**
     * Finalizes configuration only if auto finalize is on and not
     * already finalized
     */
    public function autoFinalize()
    {
        if ($this->autoFinalize) {
            $this->finalize();
        } else {
            $this->plist->squash(true);
        }
    }

    /**
     * Finalizes a configuration object, prohibiting further change
     */
    public function finalize()
    {
        $this->finalized = true;
        $this->parser = null;
    }

    /**
     * Produces a nicely formatted error message by supplying the
     * stack frame information OUTSIDE of HTMLPurifier_Config.
     *
     * @param string $msg An error message
     * @param int $no An error number
     */
    protected function triggerError($msg, $no)
    {
        // determine previous stack frame
        $extra = '';
        if ($this->chatty) {
            $trace = debug_backtrace();
            // zip(tail(trace), trace) -- but PHP is not Haskell har har
            for ($i = 0, $c = count($trace); $i < $c - 1; $i++) {
                // XXX this is not correct on some versions of HTML Purifier
                if (isset($trace[$i + 1]['class']) && $trace[$i + 1]['class'] === 'HTMLPurifier_Config') {
                    continue;
                }
                $frame = $trace[$i];
                $extra = " invoked on line {$frame['line']} in file {$frame['file']}";
                break;
            }
        }
        trigger_error($msg . $extra, $no);
    }

    /**
     * Returns a serialized form of the configuration object that can
     * be reconstituted.
     *
     * @return string
     */
    public function serialize()
    {
        $this->getDefinition('HTML');
        $this->getDefinition('CSS');
        $this->getDefinition('URI');
        return serialize($this);
    }

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/EntityLookup/entities.ser000064400000012277151213256040020757 0ustar00a:253:{s:4:"fnof";s:2:"ƒ";s:5:"Alpha";s:2:"Α";s:4:"Beta";s:2:"Β";s:5:"Gamma";s:2:"Γ";s:5:"Delta";s:2:"Δ";s:7:"Epsilon";s:2:"Ε";s:4:"Zeta";s:2:"Ζ";s:3:"Eta";s:2:"Η";s:5:"Theta";s:2:"Θ";s:4:"Iota";s:2:"Ι";s:5:"Kappa";s:2:"Κ";s:6:"Lambda";s:2:"Λ";s:2:"Mu";s:2:"Μ";s:2:"Nu";s:2:"Ν";s:2:"Xi";s:2:"Ξ";s:7:"Omicron";s:2:"Ο";s:2:"Pi";s:2:"Π";s:3:"Rho";s:2:"Ρ";s:5:"Sigma";s:2:"Σ";s:3:"Tau";s:2:"Τ";s:7:"Upsilon";s:2:"Υ";s:3:"Phi";s:2:"Φ";s:3:"Chi";s:2:"Χ";s:3:"Psi";s:2:"Ψ";s:5:"Omega";s:2:"Ω";s:5:"alpha";s:2:"α";s:4:"beta";s:2:"β";s:5:"gamma";s:2:"γ";s:5:"delta";s:2:"δ";s:7:"epsilon";s:2:"ε";s:4:"zeta";s:2:"ζ";s:3:"eta";s:2:"η";s:5:"theta";s:2:"θ";s:4:"iota";s:2:"ι";s:5:"kappa";s:2:"κ";s:6:"lambda";s:2:"λ";s:2:"mu";s:2:"μ";s:2:"nu";s:2:"ν";s:2:"xi";s:2:"ξ";s:7:"omicron";s:2:"ο";s:2:"pi";s:2:"π";s:3:"rho";s:2:"ρ";s:6:"sigmaf";s:2:"ς";s:5:"sigma";s:2:"σ";s:3:"tau";s:2:"τ";s:7:"upsilon";s:2:"υ";s:3:"phi";s:2:"φ";s:3:"chi";s:2:"χ";s:3:"psi";s:2:"ψ";s:5:"omega";s:2:"ω";s:8:"thetasym";s:2:"ϑ";s:5:"upsih";s:2:"ϒ";s:3:"piv";s:2:"ϖ";s:4:"bull";s:3:"•";s:6:"hellip";s:3:"…";s:5:"prime";s:3:"′";s:5:"Prime";s:3:"″";s:5:"oline";s:3:"‾";s:5:"frasl";s:3:"⁄";s:6:"weierp";s:3:"℘";s:5:"image";s:3:"ℑ";s:4:"real";s:3:"ℜ";s:5:"trade";s:3:"™";s:7:"alefsym";s:3:"ℵ";s:4:"larr";s:3:"←";s:4:"uarr";s:3:"↑";s:4:"rarr";s:3:"→";s:4:"darr";s:3:"↓";s:4:"harr";s:3:"↔";s:5:"crarr";s:3:"↵";s:4:"lArr";s:3:"⇐";s:4:"uArr";s:3:"⇑";s:4:"rArr";s:3:"⇒";s:4:"dArr";s:3:"⇓";s:4:"hArr";s:3:"⇔";s:6:"forall";s:3:"∀";s:4:"part";s:3:"∂";s:5:"exist";s:3:"∃";s:5:"empty";s:3:"∅";s:5:"nabla";s:3:"∇";s:4:"isin";s:3:"∈";s:5:"notin";s:3:"∉";s:2:"ni";s:3:"∋";s:4:"prod";s:3:"∏";s:3:"sum";s:3:"∑";s:5:"minus";s:3:"−";s:6:"lowast";s:3:"∗";s:5:"radic";s:3:"√";s:4:"prop";s:3:"∝";s:5:"infin";s:3:"∞";s:3:"ang";s:3:"∠";s:3:"and";s:3:"∧";s:2:"or";s:3:"∨";s:3:"cap";s:3:"∩";s:3:"cup";s:3:"∪";s:3:"int";s:3:"∫";s:6:"there4";s:3:"∴";s:3:"sim";s:3:"∼";s:4:"cong";s:3:"≅";s:5:"asymp";s:3:"≈";s:2:"ne";s:3:"≠";s:5:"equiv";s:3:"≡";s:2:"le";s:3:"≤";s:2:"ge";s:3:"≥";s:3:"sub";s:3:"⊂";s:3:"sup";s:3:"⊃";s:4:"nsub";s:3:"⊄";s:4:"sube";s:3:"⊆";s:4:"supe";s:3:"⊇";s:5:"oplus";s:3:"⊕";s:6:"otimes";s:3:"⊗";s:4:"perp";s:3:"⊥";s:4:"sdot";s:3:"⋅";s:5:"lceil";s:3:"⌈";s:5:"rceil";s:3:"⌉";s:6:"lfloor";s:3:"⌊";s:6:"rfloor";s:3:"⌋";s:4:"lang";s:3:"〈";s:4:"rang";s:3:"〉";s:3:"loz";s:3:"◊";s:6:"spades";s:3:"♠";s:5:"clubs";s:3:"♣";s:6:"hearts";s:3:"♥";s:5:"diams";s:3:"♦";s:4:"quot";s:1:""";s:3:"amp";s:1:"&";s:2:"lt";s:1:"<";s:2:"gt";s:1:">";s:4:"apos";s:1:"'";s:5:"OElig";s:2:"Œ";s:5:"oelig";s:2:"œ";s:6:"Scaron";s:2:"Š";s:6:"scaron";s:2:"š";s:4:"Yuml";s:2:"Ÿ";s:4:"circ";s:2:"ˆ";s:5:"tilde";s:2:"˜";s:4:"ensp";s:3:" ";s:4:"emsp";s:3:" ";s:6:"thinsp";s:3:" ";s:4:"zwnj";s:3:"‌";s:3:"zwj";s:3:"‍";s:3:"lrm";s:3:"‎";s:3:"rlm";s:3:"‏";s:5:"ndash";s:3:"–";s:5:"mdash";s:3:"—";s:5:"lsquo";s:3:"‘";s:5:"rsquo";s:3:"’";s:5:"sbquo";s:3:"‚";s:5:"ldquo";s:3:"“";s:5:"rdquo";s:3:"”";s:5:"bdquo";s:3:"„";s:6:"dagger";s:3:"†";s:6:"Dagger";s:3:"‡";s:6:"permil";s:3:"‰";s:6:"lsaquo";s:3:"‹";s:6:"rsaquo";s:3:"›";s:4:"euro";s:3:"€";s:4:"nbsp";s:2:" ";s:5:"iexcl";s:2:"¡";s:4:"cent";s:2:"¢";s:5:"pound";s:2:"£";s:6:"curren";s:2:"¤";s:3:"yen";s:2:"¥";s:6:"brvbar";s:2:"¦";s:4:"sect";s:2:"§";s:3:"uml";s:2:"¨";s:4:"copy";s:2:"©";s:4:"ordf";s:2:"ª";s:5:"laquo";s:2:"«";s:3:"not";s:2:"¬";s:3:"shy";s:2:"­";s:3:"reg";s:2:"®";s:4:"macr";s:2:"¯";s:3:"deg";s:2:"°";s:6:"plusmn";s:2:"±";s:4:"sup2";s:2:"²";s:4:"sup3";s:2:"³";s:5:"acute";s:2:"´";s:5:"micro";s:2:"µ";s:4:"para";s:2:"¶";s:6:"middot";s:2:"·";s:5:"cedil";s:2:"¸";s:4:"sup1";s:2:"¹";s:4:"ordm";s:2:"º";s:5:"raquo";s:2:"»";s:6:"frac14";s:2:"¼";s:6:"frac12";s:2:"½";s:6:"frac34";s:2:"¾";s:6:"iquest";s:2:"¿";s:6:"Agrave";s:2:"À";s:6:"Aacute";s:2:"Á";s:5:"Acirc";s:2:"Â";s:6:"Atilde";s:2:"Ã";s:4:"Auml";s:2:"Ä";s:5:"Aring";s:2:"Å";s:5:"AElig";s:2:"Æ";s:6:"Ccedil";s:2:"Ç";s:6:"Egrave";s:2:"È";s:6:"Eacute";s:2:"É";s:5:"Ecirc";s:2:"Ê";s:4:"Euml";s:2:"Ë";s:6:"Igrave";s:2:"Ì";s:6:"Iacute";s:2:"Í";s:5:"Icirc";s:2:"Î";s:4:"Iuml";s:2:"Ï";s:3:"ETH";s:2:"Ð";s:6:"Ntilde";s:2:"Ñ";s:6:"Ograve";s:2:"Ò";s:6:"Oacute";s:2:"Ó";s:5:"Ocirc";s:2:"Ô";s:6:"Otilde";s:2:"Õ";s:4:"Ouml";s:2:"Ö";s:5:"times";s:2:"×";s:6:"Oslash";s:2:"Ø";s:6:"Ugrave";s:2:"Ù";s:6:"Uacute";s:2:"Ú";s:5:"Ucirc";s:2:"Û";s:4:"Uuml";s:2:"Ü";s:6:"Yacute";s:2:"Ý";s:5:"THORN";s:2:"Þ";s:5:"szlig";s:2:"ß";s:6:"agrave";s:2:"à";s:6:"aacute";s:2:"á";s:5:"acirc";s:2:"â";s:6:"atilde";s:2:"ã";s:4:"auml";s:2:"ä";s:5:"aring";s:2:"å";s:5:"aelig";s:2:"æ";s:6:"ccedil";s:2:"ç";s:6:"egrave";s:2:"è";s:6:"eacute";s:2:"é";s:5:"ecirc";s:2:"ê";s:4:"euml";s:2:"ë";s:6:"igrave";s:2:"ì";s:6:"iacute";s:2:"í";s:5:"icirc";s:2:"î";s:4:"iuml";s:2:"ï";s:3:"eth";s:2:"ð";s:6:"ntilde";s:2:"ñ";s:6:"ograve";s:2:"ò";s:6:"oacute";s:2:"ó";s:5:"ocirc";s:2:"ô";s:6:"otilde";s:2:"õ";s:4:"ouml";s:2:"ö";s:6:"divide";s:2:"÷";s:6:"oslash";s:2:"ø";s:6:"ugrave";s:2:"ù";s:6:"uacute";s:2:"ú";s:5:"ucirc";s:2:"û";s:4:"uuml";s:2:"ü";s:6:"yacute";s:2:"ý";s:5:"thorn";s:2:"þ";s:4:"yuml";s:2:"ÿ";}lib/htmlpurifier/library/HTMLPurifier/StringHash.php000064400000002056151213256040016527 0ustar00<?php

/**
 * This is in almost every respect equivalent to an array except
 * that it keeps track of which keys were accessed.
 *
 * @warning For the sake of backwards compatibility with early versions
 *     of PHP 5, you must not use the $hash[$key] syntax; if you do
 *     our version of offsetGet is never called.
 */
class HTMLPurifier_StringHash extends ArrayObject
{
    /**
     * @type array
     */
    protected $accessed = array();

    /**
     * Retrieves a value, and logs the access.
     * @param mixed $index
     * @return mixed
     */
    public function offsetGet($index)
    {
        $this->accessed[$index] = true;
        return parent::offsetGet($index);
    }

    /**
     * Returns a lookup array of all array indexes that have been accessed.
     * @return array in form array($index => true).
     */
    public function getAccessed()
    {
        return $this->accessed;
    }

    /**
     * Resets the access array.
     */
    public function resetAccessed()
    {
        $this->accessed = array();
    }
}

// vim: et sw=4 sts=4
HTMLPurifier/DefinitionCache/Serializer/HTML/4.13.0,f474c0a322b208e83d22d3aef33ecb184bc71d31,1.ser000064400000266765151213256040030661 0ustar00lib/htmlpurifier/libraryO:27:"HTMLPurifier_HTMLDefinition":15:{s:4:"info";a:61:{s:4:"abbr";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";O:31:"HTMLPurifier_AttrDef_HTML_Class":2:{s:9:"minimized";b:0;s:8:"required";b:0;}s:2:"id";O:28:"HTMLPurifier_AttrDef_HTML_ID":3:{s:11:"*selector";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"title";O:25:"HTMLPurifier_AttrDef_Text":2:{s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"style";O:24:"HTMLPurifier_AttrDef_CSS":2:{s:9:"minimized";b:0;s:8:"required";b:0;}s:3:"dir";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:2:{s:3:"ltr";i:0;s:3:"rtl";i:1;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:8:"xml:lang";O:25:"HTMLPurifier_AttrDef_Lang":2:{s:9:"minimized";b:0;s:8:"required";b:0;}s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:7:"acronym";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:4:"cite";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"dfn";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"kbd";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:1:"q";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:4:"cite";O:24:"HTMLPurifier_AttrDef_URI":4:{s:9:"*parser";O:22:"HTMLPurifier_URIParser":1:{s:17:"*percentEncoder";O:27:"HTMLPurifier_PercentEncoder":1:{s:11:"*preserve";a:66:{i:48;b:1;i:49;b:1;i:50;b:1;i:51;b:1;i:52;b:1;i:53;b:1;i:54;b:1;i:55;b:1;i:56;b:1;i:57;b:1;i:65;b:1;i:66;b:1;i:67;b:1;i:68;b:1;i:69;b:1;i:70;b:1;i:71;b:1;i:72;b:1;i:73;b:1;i:74;b:1;i:75;b:1;i:76;b:1;i:77;b:1;i:78;b:1;i:79;b:1;i:80;b:1;i:81;b:1;i:82;b:1;i:83;b:1;i:84;b:1;i:85;b:1;i:86;b:1;i:87;b:1;i:88;b:1;i:89;b:1;i:90;b:1;i:97;b:1;i:98;b:1;i:99;b:1;i:100;b:1;i:101;b:1;i:102;b:1;i:103;b:1;i:104;b:1;i:105;b:1;i:106;b:1;i:107;b:1;i:108;b:1;i:109;b:1;i:110;b:1;i:111;b:1;i:112;b:1;i:113;b:1;i:114;b:1;i:115;b:1;i:116;b:1;i:117;b:1;i:118;b:1;i:119;b:1;i:120;b:1;i:121;b:1;i:122;b:1;i:45;b:1;i:46;b:1;i:95;b:1;i:126;b:1;}}}s:17:"*embedsResource";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:4:"samp";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"var";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"em";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:6:"strong";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:4:"code";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:4:"span";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"br";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:5:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:5:"clear";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:3:"all";i:1;s:5:"right";i:2;s:4:"none";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:27:"HTMLPurifier_ChildDef_Empty":3:{s:11:"allow_empty";b:1;s:4:"type";s:5:"empty";s:8:"elements";a:0:{}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:7:"address";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:41:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;s:1:"p";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:10:"blockquote";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:4:"cite";O:24:"HTMLPurifier_AttrDef_URI":4:{s:9:"*parser";O:22:"HTMLPurifier_URIParser":1:{s:17:"*percentEncoder";O:27:"HTMLPurifier_PercentEncoder":1:{s:11:"*preserve";a:66:{i:48;b:1;i:49;b:1;i:50;b:1;i:51;b:1;i:52;b:1;i:53;b:1;i:54;b:1;i:55;b:1;i:56;b:1;i:57;b:1;i:65;b:1;i:66;b:1;i:67;b:1;i:68;b:1;i:69;b:1;i:70;b:1;i:71;b:1;i:72;b:1;i:73;b:1;i:74;b:1;i:75;b:1;i:76;b:1;i:77;b:1;i:78;b:1;i:79;b:1;i:80;b:1;i:81;b:1;i:82;b:1;i:83;b:1;i:84;b:1;i:85;b:1;i:86;b:1;i:87;b:1;i:88;b:1;i:89;b:1;i:90;b:1;i:97;b:1;i:98;b:1;i:99;b:1;i:100;b:1;i:101;b:1;i:102;b:1;i:103;b:1;i:104;b:1;i:105;b:1;i:106;b:1;i:107;b:1;i:108;b:1;i:109;b:1;i:110;b:1;i:111;b:1;i:112;b:1;i:113;b:1;i:114;b:1;i:115;b:1;i:116;b:1;i:117;b:1;i:118;b:1;i:119;b:1;i:120;b:1;i:121;b:1;i:122;b:1;i:45;b:1;i:46;b:1;i:95;b:1;i:126;b:1;}}}s:17:"*embedsResource";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"pre";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"width";O:28:"HTMLPurifier_AttrDef_Integer":5:{s:11:"*negative";b:0;s:7:"*zero";b:0;s:11:"*positive";b:1;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:7:{s:3:"img";b:1;s:3:"big";b:1;s:5:"small";b:1;s:6:"object";b:1;s:6:"applet";b:1;s:4:"font";b:1;s:8:"basefont";b:1;}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"h1";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"h2";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"h3";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"h4";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"h5";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"h6";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:1:"p";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:10:{s:7:"address";i:0;s:10:"blockquote";i:1;s:6:"center";i:2;s:3:"dir";i:3;s:3:"div";i:4;s:2:"dl";i:5;s:8:"fieldset";i:6;s:2:"ol";i:7;s:1:"p";i:8;s:2:"ul";i:9;}s:4:"wrap";N;s:10:"formatting";N;}s:3:"div";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:1:"a";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:12:{s:4:"href";O:24:"HTMLPurifier_AttrDef_URI":4:{s:9:"*parser";O:22:"HTMLPurifier_URIParser":1:{s:17:"*percentEncoder";O:27:"HTMLPurifier_PercentEncoder":1:{s:11:"*preserve";a:66:{i:48;b:1;i:49;b:1;i:50;b:1;i:51;b:1;i:52;b:1;i:53;b:1;i:54;b:1;i:55;b:1;i:56;b:1;i:57;b:1;i:65;b:1;i:66;b:1;i:67;b:1;i:68;b:1;i:69;b:1;i:70;b:1;i:71;b:1;i:72;b:1;i:73;b:1;i:74;b:1;i:75;b:1;i:76;b:1;i:77;b:1;i:78;b:1;i:79;b:1;i:80;b:1;i:81;b:1;i:82;b:1;i:83;b:1;i:84;b:1;i:85;b:1;i:86;b:1;i:87;b:1;i:88;b:1;i:89;b:1;i:90;b:1;i:97;b:1;i:98;b:1;i:99;b:1;i:100;b:1;i:101;b:1;i:102;b:1;i:103;b:1;i:104;b:1;i:105;b:1;i:106;b:1;i:107;b:1;i:108;b:1;i:109;b:1;i:110;b:1;i:111;b:1;i:112;b:1;i:113;b:1;i:114;b:1;i:115;b:1;i:116;b:1;i:117;b:1;i:118;b:1;i:119;b:1;i:120;b:1;i:121;b:1;i:122;b:1;i:45;b:1;i:46;b:1;i:95;b:1;i:126;b:1;}}}s:17:"*embedsResource";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:3:"rel";O:35:"HTMLPurifier_AttrDef_HTML_LinkTypes":3:{s:7:"*name";s:10:"AllowedRel";s:9:"minimized";b:0;s:8:"required";b:0;}s:3:"rev";O:35:"HTMLPurifier_AttrDef_HTML_LinkTypes":3:{s:7:"*name";s:10:"AllowedRev";s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:4:"name";r:13;s:6:"target";O:37:"HTMLPurifier_AttrDef_HTML_FrameTarget":4:{s:12:"valid_values";b:0;s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:3:{i:0;O:35:"HTMLPurifier_AttrTransform_NameSync":1:{s:5:"idDef";O:28:"HTMLPurifier_AttrDef_HTML_ID":3:{s:11:"*selector";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}i:1;O:43:"HTMLPurifier_AttrTransform_TargetNoreferrer":0:{}i:2;O:41:"HTMLPurifier_AttrTransform_TargetNoopener":0:{}}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:1:{s:1:"a";b:1;}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:2:"ol";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:10:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:7:"compact";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:7:"compact";s:9:"minimized";b:1;s:8:"required";b:0;}s:5:"start";O:28:"HTMLPurifier_AttrDef_Integer":5:{s:11:"*negative";b:1;s:7:"*zero";b:1;s:11:"*positive";b:1;s:9:"minimized";b:0;s:8:"required";b:0;}s:4:"type";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{i:1;i:0;s:1:"i";i:1;s:1:"I";i:2;s:1:"a";i:3;s:1:"A";i:4;}s:17:"*case_sensitive";b:1;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:26:"HTMLPurifier_ChildDef_List":3:{s:4:"type";s:4:"list";s:8:"elements";a:3:{s:2:"li";b:1;s:2:"ul";b:1;s:2:"ol";b:1;}s:11:"allow_empty";N;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";s:2:"li";s:10:"formatting";N;}s:2:"ul";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:9:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:7:"compact";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:7:"compact";s:9:"minimized";b:1;s:8:"required";b:0;}s:4:"type";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:3:{s:6:"square";i:0;s:4:"disc";i:1;s:6:"circle";i:2;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:26:"HTMLPurifier_ChildDef_List":3:{s:4:"type";s:4:"list";s:8:"elements";a:3:{s:2:"li";b:1;s:2:"ul";b:1;s:2:"ol";b:1;}s:11:"allow_empty";N;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";s:2:"li";s:10:"formatting";N;}s:2:"dl";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:7:"compact";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:7:"compact";s:9:"minimized";b:1;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Required":4:{s:8:"elements";a:2:{s:2:"dt";b:1;s:2:"dd";b:1;}s:13:"*whitespace";b:0;s:11:"allow_empty";b:0;s:4:"type";s:8:"required";}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"li";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:9:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"value";O:28:"HTMLPurifier_AttrDef_Integer":5:{s:11:"*negative";b:1;s:7:"*zero";b:1;s:11:"*positive";b:1;s:9:"minimized";b:0;s:8:"required";b:0;}s:4:"type";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:8:{i:1;i:0;s:1:"i";i:1;s:1:"I";i:2;s:1:"a";i:3;s:1:"A";i:4;s:4:"disc";i:5;s:6:"square";i:6;s:6:"circle";i:7;}s:17:"*case_sensitive";b:1;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"dd";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"dt";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"hr";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:11:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"noshade";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:7:"noshade";s:9:"minimized";b:1;s:8:"required";b:0;}s:4:"size";O:32:"HTMLPurifier_AttrDef_HTML_Pixels":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"width";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:27:"HTMLPurifier_ChildDef_Empty":3:{s:11:"allow_empty";b:1;s:4:"type";s:5:"empty";s:8:"elements";a:0:{}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"sub";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"sup";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:1:"b";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:3:"big";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:1:"i";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:5:"small";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:2:"tt";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:3:"del";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:4:"cite";O:24:"HTMLPurifier_AttrDef_URI":4:{s:9:"*parser";O:22:"HTMLPurifier_URIParser":1:{s:17:"*percentEncoder";O:27:"HTMLPurifier_PercentEncoder":1:{s:11:"*preserve";a:66:{i:48;b:1;i:49;b:1;i:50;b:1;i:51;b:1;i:52;b:1;i:53;b:1;i:54;b:1;i:55;b:1;i:56;b:1;i:57;b:1;i:65;b:1;i:66;b:1;i:67;b:1;i:68;b:1;i:69;b:1;i:70;b:1;i:71;b:1;i:72;b:1;i:73;b:1;i:74;b:1;i:75;b:1;i:76;b:1;i:77;b:1;i:78;b:1;i:79;b:1;i:80;b:1;i:81;b:1;i:82;b:1;i:83;b:1;i:84;b:1;i:85;b:1;i:86;b:1;i:87;b:1;i:88;b:1;i:89;b:1;i:90;b:1;i:97;b:1;i:98;b:1;i:99;b:1;i:100;b:1;i:101;b:1;i:102;b:1;i:103;b:1;i:104;b:1;i:105;b:1;i:106;b:1;i:107;b:1;i:108;b:1;i:109;b:1;i:110;b:1;i:111;b:1;i:112;b:1;i:113;b:1;i:114;b:1;i:115;b:1;i:116;b:1;i:117;b:1;i:118;b:1;i:119;b:1;i:120;b:1;i:121;b:1;i:122;b:1;i:45;b:1;i:46;b:1;i:95;b:1;i:126;b:1;}}}s:17:"*embedsResource";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:31:"HTMLPurifier_ChildDef_Chameleon":5:{s:6:"inline";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:7:"#PCDATA";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}s:13:"*whitespace";b:0;}s:5:"block";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:7:"#PCDATA";b:1;s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}s:13:"*whitespace";b:0;}s:4:"type";s:9:"chameleon";s:11:"allow_empty";N;s:8:"elements";a:61:{s:7:"#PCDATA";b:1;s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"ins";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:4:"cite";O:24:"HTMLPurifier_AttrDef_URI":4:{s:9:"*parser";O:22:"HTMLPurifier_URIParser":1:{s:17:"*percentEncoder";O:27:"HTMLPurifier_PercentEncoder":1:{s:11:"*preserve";a:66:{i:48;b:1;i:49;b:1;i:50;b:1;i:51;b:1;i:52;b:1;i:53;b:1;i:54;b:1;i:55;b:1;i:56;b:1;i:57;b:1;i:65;b:1;i:66;b:1;i:67;b:1;i:68;b:1;i:69;b:1;i:70;b:1;i:71;b:1;i:72;b:1;i:73;b:1;i:74;b:1;i:75;b:1;i:76;b:1;i:77;b:1;i:78;b:1;i:79;b:1;i:80;b:1;i:81;b:1;i:82;b:1;i:83;b:1;i:84;b:1;i:85;b:1;i:86;b:1;i:87;b:1;i:88;b:1;i:89;b:1;i:90;b:1;i:97;b:1;i:98;b:1;i:99;b:1;i:100;b:1;i:101;b:1;i:102;b:1;i:103;b:1;i:104;b:1;i:105;b:1;i:106;b:1;i:107;b:1;i:108;b:1;i:109;b:1;i:110;b:1;i:111;b:1;i:112;b:1;i:113;b:1;i:114;b:1;i:115;b:1;i:116;b:1;i:117;b:1;i:118;b:1;i:119;b:1;i:120;b:1;i:121;b:1;i:122;b:1;i:45;b:1;i:46;b:1;i:95;b:1;i:126;b:1;}}}s:17:"*embedsResource";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:31:"HTMLPurifier_ChildDef_Chameleon":5:{s:6:"inline";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:7:"#PCDATA";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}s:13:"*whitespace";b:0;}s:5:"block";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:7:"#PCDATA";b:1;s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}s:13:"*whitespace";b:0;}s:4:"type";s:9:"chameleon";s:11:"allow_empty";N;s:8:"elements";a:61:{s:7:"#PCDATA";b:1;s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"bdo";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:3:"dir";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:2:{s:3:"ltr";i:0;s:3:"rtl";i:1;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:1:{i:0;O:33:"HTMLPurifier_AttrTransform_BdoDir":0:{}}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:7:"caption";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"bottom";i:1;s:4:"left";i:2;s:5:"right";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:5:"table";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:16:{s:6:"border";O:32:"HTMLPurifier_AttrDef_HTML_Pixels":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:11:"cellpadding";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:11:"cellspacing";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"frame";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:9:{s:4:"void";i:0;s:5:"above";i:1;s:5:"below";i:2;s:6:"hsides";i:3;s:3:"lhs";i:4;s:3:"rhs";i:5;s:6:"vsides";i:6;s:3:"box";i:7;s:6:"border";i:8;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"rules";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"none";i:0;s:6:"groups";i:1;s:4:"rows";i:2;s:4:"cols";i:3;s:3:"all";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"summary";O:25:"HTMLPurifier_AttrDef_Text":2:{s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"width";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:3:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"bgcolor";O:31:"HTMLPurifier_AttrDef_HTML_Color":2:{s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:2:{s:10:"background";O:37:"HTMLPurifier_AttrTransform_Background":0:{}s:6:"height";O:33:"HTMLPurifier_AttrTransform_Length":2:{s:7:"*name";s:6:"height";s:10:"*cssName";s:6:"height";}}s:19:"attr_transform_post";a:0:{}s:5:"child";O:27:"HTMLPurifier_ChildDef_Table":3:{s:11:"allow_empty";b:0;s:4:"type";s:5:"table";s:8:"elements";a:7:{s:2:"tr";b:1;s:5:"tbody";b:1;s:5:"thead";b:1;s:5:"tfoot";b:1;s:7:"caption";b:1;s:8:"colgroup";b:1;s:3:"col";b:1;}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"td";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:18:{s:4:"abbr";r:3499;s:7:"colspan";r:1108;s:7:"rowspan";r:1108;s:5:"scope";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"row";i:0;s:3:"col";i:1;s:8:"rowgroup";i:2;s:8:"colgroup";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:7:"bgcolor";r:3521;s:6:"height";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"nowrap";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:6:"nowrap";s:9:"minimized";b:1;s:8:"required";b:0;}s:5:"width";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:1:{s:10:"background";O:37:"HTMLPurifier_AttrTransform_Background":0:{}}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"th";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:18:{s:4:"abbr";r:3499;s:7:"colspan";r:1108;s:7:"rowspan";r:1108;s:5:"scope";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"row";i:0;s:3:"col";i:1;s:8:"rowgroup";i:2;s:8:"colgroup";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:7:"bgcolor";r:3521;s:6:"height";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"nowrap";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:6:"nowrap";s:9:"minimized";b:1;s:8:"required";b:0;}s:5:"width";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:1:{s:10:"background";O:37:"HTMLPurifier_AttrTransform_Background":0:{}}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:2:"tr";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:11:{s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:7:"bgcolor";r:3521;}s:18:"attr_transform_pre";a:1:{s:10:"background";O:37:"HTMLPurifier_AttrTransform_Background":0:{}}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Required":4:{s:8:"elements";a:2:{s:2:"td";b:1;s:2:"th";b:1;}s:13:"*whitespace";b:0;s:11:"allow_empty";b:0;s:4:"type";s:8:"required";}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"col";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:12:{s:4:"span";r:1108;s:5:"width";O:37:"HTMLPurifier_AttrDef_HTML_MultiLength":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:27:"HTMLPurifier_ChildDef_Empty":3:{s:11:"allow_empty";b:1;s:4:"type";s:5:"empty";s:8:"elements";a:0:{}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:8:"colgroup";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:12:{s:4:"span";r:1108;s:5:"width";O:37:"HTMLPurifier_AttrDef_HTML_MultiLength":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:1:{s:3:"col";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:5:"tbody";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:10:{s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:1:{s:10:"background";O:37:"HTMLPurifier_AttrTransform_Background":0:{}}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Required":4:{s:8:"elements";a:1:{s:2:"tr";b:1;}s:13:"*whitespace";b:0;s:11:"allow_empty";b:0;s:4:"type";s:8:"required";}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:5:"thead";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:10:{s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:1:{s:10:"background";O:37:"HTMLPurifier_AttrTransform_Background":0:{}}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Required":4:{s:8:"elements";a:1:{s:2:"tr";b:1;}s:13:"*whitespace";b:0;s:11:"allow_empty";b:0;s:4:"type";s:8:"required";}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:5:"tfoot";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:10:{s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:4:"left";i:0;s:6:"center";i:1;s:5:"right";i:2;s:7:"justify";i:3;s:4:"char";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:7:"charoff";O:32:"HTMLPurifier_AttrDef_HTML_Length":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"valign";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:8:"baseline";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:1:{s:10:"background";O:37:"HTMLPurifier_AttrTransform_Background":0:{}}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Required":4:{s:8:"elements";a:1:{s:2:"tr";b:1;}s:13:"*whitespace";b:0;s:11:"allow_empty";b:0;s:4:"type";s:8:"required";}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"img";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:17:{s:6:"height";O:32:"HTMLPurifier_AttrDef_HTML_Pixels":3:{s:6:"*max";i:1200;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"width";O:32:"HTMLPurifier_AttrDef_HTML_Pixels":3:{s:6:"*max";i:1200;s:9:"minimized";b:0;s:8:"required";b:0;}s:8:"longdesc";O:24:"HTMLPurifier_AttrDef_URI":4:{s:9:"*parser";O:22:"HTMLPurifier_URIParser":1:{s:17:"*percentEncoder";O:27:"HTMLPurifier_PercentEncoder":1:{s:11:"*preserve";a:66:{i:48;b:1;i:49;b:1;i:50;b:1;i:51;b:1;i:52;b:1;i:53;b:1;i:54;b:1;i:55;b:1;i:56;b:1;i:57;b:1;i:65;b:1;i:66;b:1;i:67;b:1;i:68;b:1;i:69;b:1;i:70;b:1;i:71;b:1;i:72;b:1;i:73;b:1;i:74;b:1;i:75;b:1;i:76;b:1;i:77;b:1;i:78;b:1;i:79;b:1;i:80;b:1;i:81;b:1;i:82;b:1;i:83;b:1;i:84;b:1;i:85;b:1;i:86;b:1;i:87;b:1;i:88;b:1;i:89;b:1;i:90;b:1;i:97;b:1;i:98;b:1;i:99;b:1;i:100;b:1;i:101;b:1;i:102;b:1;i:103;b:1;i:104;b:1;i:105;b:1;i:106;b:1;i:107;b:1;i:108;b:1;i:109;b:1;i:110;b:1;i:111;b:1;i:112;b:1;i:113;b:1;i:114;b:1;i:115;b:1;i:116;b:1;i:117;b:1;i:118;b:1;i:119;b:1;i:120;b:1;i:121;b:1;i:122;b:1;i:45;b:1;i:46;b:1;i:95;b:1;i:126;b:1;}}}s:17:"*embedsResource";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:3:"alt";r:3499;s:3:"src";O:24:"HTMLPurifier_AttrDef_URI":4:{s:9:"*parser";O:22:"HTMLPurifier_URIParser":1:{s:17:"*percentEncoder";O:27:"HTMLPurifier_PercentEncoder":1:{s:11:"*preserve";a:66:{i:48;b:1;i:49;b:1;i:50;b:1;i:51;b:1;i:52;b:1;i:53;b:1;i:54;b:1;i:55;b:1;i:56;b:1;i:57;b:1;i:65;b:1;i:66;b:1;i:67;b:1;i:68;b:1;i:69;b:1;i:70;b:1;i:71;b:1;i:72;b:1;i:73;b:1;i:74;b:1;i:75;b:1;i:76;b:1;i:77;b:1;i:78;b:1;i:79;b:1;i:80;b:1;i:81;b:1;i:82;b:1;i:83;b:1;i:84;b:1;i:85;b:1;i:86;b:1;i:87;b:1;i:88;b:1;i:89;b:1;i:90;b:1;i:97;b:1;i:98;b:1;i:99;b:1;i:100;b:1;i:101;b:1;i:102;b:1;i:103;b:1;i:104;b:1;i:105;b:1;i:106;b:1;i:107;b:1;i:108;b:1;i:109;b:1;i:110;b:1;i:111;b:1;i:112;b:1;i:113;b:1;i:114;b:1;i:115;b:1;i:116;b:1;i:117;b:1;i:118;b:1;i:119;b:1;i:120;b:1;i:121;b:1;i:122;b:1;i:45;b:1;i:46;b:1;i:95;b:1;i:126;b:1;}}}s:17:"*embedsResource";b:1;s:9:"minimized";b:0;s:8:"required";b:1;}s:4:"name";r:13;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:5:{s:3:"top";i:0;s:6:"middle";i:1;s:6:"bottom";i:2;s:4:"left";i:3;s:5:"right";i:4;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"border";O:32:"HTMLPurifier_AttrDef_HTML_Pixels":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"hspace";O:32:"HTMLPurifier_AttrDef_HTML_Pixels":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}s:6:"vspace";O:32:"HTMLPurifier_AttrDef_HTML_Pixels":3:{s:6:"*max";N;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:1:{i:0;O:38:"HTMLPurifier_AttrTransform_ImgRequired":0:{}}s:19:"attr_transform_post";a:2:{i:0;r:4298;i:1;O:35:"HTMLPurifier_AttrTransform_NameSync":1:{s:5:"idDef";O:28:"HTMLPurifier_AttrDef_HTML_ID":3:{s:11:"*selector";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}}s:5:"child";O:27:"HTMLPurifier_ChildDef_Empty":3:{s:11:"allow_empty";b:1;s:4:"type";s:5:"empty";s:8:"elements";a:0:{}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:2:{i:0;s:3:"alt";i:1;s:3:"src";}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:8:"basefont";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:4:{s:5:"color";r:3521;s:4:"face";r:3499;s:4:"size";r:3499;s:2:"id";r:9;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:27:"HTMLPurifier_ChildDef_Empty":3:{s:11:"allow_empty";b:1;s:4:"type";s:5:"empty";s:8:"elements";a:0:{}}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:6:"center";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:3:"dir";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:7:"compact";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:7:"compact";s:9:"minimized";b:1;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Required":4:{s:8:"elements";a:1:{s:2:"li";b:1;}s:13:"*whitespace";b:0;s:11:"allow_empty";b:0;s:4:"type";s:8:"required";}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:4:"font";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:10:{s:5:"color";r:3521;s:4:"face";r:3499;s:4:"size";r:3499;s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:4:"menu";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:7:"compact";O:30:"HTMLPurifier_AttrDef_HTML_Bool":3:{s:7:"*name";s:7:"compact";s:9:"minimized";b:1;s:8:"required";b:0;}s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Required":4:{s:8:"elements";a:1:{s:2:"li";b:1;}s:13:"*whitespace";b:0;s:11:"allow_empty";b:0;s:4:"type";s:8:"required";}s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:1:"s";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:6:"strike";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}s:1:"u";O:23:"HTMLPurifier_ElementDef":11:{s:10:"standalone";b:1;s:4:"attr";a:7:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:40:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:22:"descendants_are_inline";b:1;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";b:1;}}s:16:"info_global_attr";a:0:{}s:11:"info_parent";s:3:"div";s:15:"info_parent_def";O:23:"HTMLPurifier_ElementDef":13:{s:10:"standalone";b:1;s:4:"attr";a:8:{s:5:"class";r:6;s:2:"id";r:9;s:5:"title";r:13;s:5:"style";r:16;s:3:"dir";r:19;s:8:"xml:lang";r:26;s:4:"lang";r:26;s:5:"align";O:25:"HTMLPurifier_AttrDef_Enum":4:{s:12:"valid_values";a:4:{s:4:"left";i:0;s:5:"right";i:1;s:6:"center";i:2;s:7:"justify";i:3;}s:17:"*case_sensitive";b:0;s:9:"minimized";b:0;s:8:"required";b:0;}}s:18:"attr_transform_pre";a:0:{}s:19:"attr_transform_post";a:0:{}s:5:"child";O:30:"HTMLPurifier_ChildDef_Optional":4:{s:11:"allow_empty";b:1;s:4:"type";s:8:"optional";s:8:"elements";a:61:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;s:7:"#PCDATA";b:1;}s:13:"*whitespace";b:0;}s:13:"content_model";s:415:"h1 | h2 | h3 | h4 | h5 | h6 | address | blockquote | pre | p | div | hr | table | script | noscript | center | dir | menu | abbr | acronym | cite | dfn | kbd | q | samp | var | em | strong | code | span | br | a | sub | sup | b | big | i | small | tt | del | ins | bdo | img | object | basefont | font | s | strike | u | iframe | ol | ul | dl | form | fieldset | input | select | textarea | button | label | #PCDATA";s:18:"content_model_type";s:8:"optional";s:22:"descendants_are_inline";b:0;s:13:"required_attr";a:0:{}s:8:"excludes";a:0:{}s:9:"autoclose";a:0:{}s:4:"wrap";N;s:10:"formatting";N;}s:18:"info_block_wrapper";s:1:"p";s:18:"info_tag_transform";a:0:{}s:23:"info_attr_transform_pre";a:1:{s:4:"lang";O:31:"HTMLPurifier_AttrTransform_Lang":0:{}}s:24:"info_attr_transform_post";a:0:{}s:17:"info_content_sets";a:7:{s:4:"Flow";a:60:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}s:6:"Inline";a:39:{s:4:"abbr";b:1;s:7:"acronym";b:1;s:4:"cite";b:1;s:3:"dfn";b:1;s:3:"kbd";b:1;s:1:"q";b:1;s:4:"samp";b:1;s:3:"var";b:1;s:2:"em";b:1;s:6:"strong";b:1;s:4:"code";b:1;s:4:"span";b:1;s:2:"br";b:1;s:1:"a";b:1;s:3:"sub";b:1;s:3:"sup";b:1;s:1:"b";b:1;s:3:"big";b:1;s:1:"i";b:1;s:5:"small";b:1;s:2:"tt";b:1;s:3:"del";b:1;s:3:"ins";b:1;s:3:"bdo";b:1;s:3:"img";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"object";b:1;s:8:"basefont";b:1;s:4:"font";b:1;s:1:"s";b:1;s:6:"strike";b:1;s:1:"u";b:1;s:6:"iframe";b:1;s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}s:5:"Block";a:14:{s:7:"address";b:1;s:10:"blockquote";b:1;s:3:"pre";b:1;s:1:"p";b:1;s:3:"div";b:1;s:2:"hr";b:1;s:5:"table";b:1;s:6:"script";b:1;s:8:"noscript";b:1;s:6:"center";b:1;s:3:"dir";b:1;s:4:"menu";b:1;s:4:"form";b:1;s:8:"fieldset";b:1;}s:7:"Heading";a:6:{s:2:"h1";b:1;s:2:"h2";b:1;s:2:"h3";b:1;s:2:"h4";b:1;s:2:"h5";b:1;s:2:"h6";b:1;}s:4:"List";a:3:{s:2:"ol";b:1;s:2:"ul";b:1;s:2:"dl";b:1;}s:4:"Form";a:2:{s:4:"form";b:1;s:8:"fieldset";b:1;}s:8:"Formctrl";a:5:{s:5:"input";b:1;s:6:"select";b:1;s:8:"textarea";b:1;s:6:"button";b:1;s:5:"label";b:1;}}s:13:"info_injector";a:0:{}s:7:"doctype";O:20:"HTMLPurifier_Doctype":7:{s:4:"name";s:22:"XHTML 1.0 Transitional";s:7:"modules";a:19:{i:0;s:16:"CommonAttributes";i:1;s:4:"Text";i:2;s:9:"Hypertext";i:3;s:4:"List";i:4;s:12:"Presentation";i:5;s:4:"Edit";i:6;s:3:"Bdo";i:7;s:6:"Tables";i:8;s:5:"Image";i:9;s:14:"StyleAttribute";i:10;s:9:"Scripting";i:11;s:6:"Object";i:12;s:5:"Forms";i:13;s:4:"Name";i:14;s:6:"Legacy";i:15;s:6:"Target";i:16;s:6:"Iframe";i:17;s:19:"XMLCommonAttributes";i:18;s:22:"NonXMLCommonAttributes";}s:11:"tidyModules";a:4:{i:0;s:17:"Tidy_Transitional";i:1;s:10:"Tidy_XHTML";i:2;s:16:"Tidy_Proprietary";i:3;s:9:"Tidy_Name";}s:3:"xml";b:1;s:7:"aliases";a:0:{}s:9:"dtdPublic";s:38:"-//W3C//DTD XHTML 1.0 Transitional//EN";s:9:"dtdSystem";s:55:"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";}s:40:"HTMLPurifier_HTMLDefinition_anonModule";N;s:4:"type";s:4:"HTML";s:5:"setup";b:1;s:9:"optimized";N;}lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README000064400000000140151213256040021741 0ustar00This is a dummy file to prevent Git from ignoring this empty directory.

    vim: et sw=4 sts=4
HTMLPurifier/DefinitionCache/Serializer/URI/4.13.0,3478238e680361cd87bf880f5b3cc50a1e7abc6c,1.ser000064400000001004151213256040030476 0ustar00lib/htmlpurifier/libraryO:26:"HTMLPurifier_URIDefinition":8:{s:4:"type";s:3:"URI";s:10:"*filters";a:2:{s:13:"HostBlacklist";O:36:"HTMLPurifier_URIFilter_HostBlacklist":4:{s:4:"name";s:13:"HostBlacklist";s:12:"*blacklist";a:0:{}s:4:"post";b:0;s:11:"always_load";b:0;}s:10:"SafeIframe";O:33:"HTMLPurifier_URIFilter_SafeIframe":4:{s:4:"name";s:10:"SafeIframe";s:11:"always_load";b:1;s:9:"*regexp";N;s:4:"post";b:0;}}s:14:"*postFilters";a:0:{}s:4:"base";N;s:4:"host";N;s:13:"defaultScheme";s:4:"http";s:5:"setup";b:1;s:9:"optimized";N;}lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Null.php000064400000002510151213256040020376 0ustar00<?php

/**
 * Null cache object to use when no caching is on.
 */
class HTMLPurifier_DefinitionCache_Null extends HTMLPurifier_DefinitionCache
{

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function add($def, $config)
    {
        return false;
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function set($def, $config)
    {
        return false;
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function replace($def, $config)
    {
        return false;
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function remove($config)
    {
        return false;
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function get($config)
    {
        return false;
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function flush($config)
    {
        return false;
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function cleanup($config)
    {
        return false;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator.php000064400000004513151213256040021413 0ustar00<?php

class HTMLPurifier_DefinitionCache_Decorator extends HTMLPurifier_DefinitionCache
{

    /**
     * Cache object we are decorating
     * @type HTMLPurifier_DefinitionCache
     */
    public $cache;

    /**
     * The name of the decorator
     * @var string
     */
    public $name;

    public function __construct()
    {
    }

    /**
     * Lazy decorator function
     * @param HTMLPurifier_DefinitionCache $cache Reference to cache object to decorate
     * @return HTMLPurifier_DefinitionCache_Decorator
     */
    public function decorate(&$cache)
    {
        $decorator = $this->copy();
        // reference is necessary for mocks in PHP 4
        $decorator->cache =& $cache;
        $decorator->type = $cache->type;
        return $decorator;
    }

    /**
     * Cross-compatible clone substitute
     * @return HTMLPurifier_DefinitionCache_Decorator
     */
    public function copy()
    {
        return new HTMLPurifier_DefinitionCache_Decorator();
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function add($def, $config)
    {
        return $this->cache->add($def, $config);
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function set($def, $config)
    {
        return $this->cache->set($def, $config);
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function replace($def, $config)
    {
        return $this->cache->replace($def, $config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function get($config)
    {
        return $this->cache->get($config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function remove($config)
    {
        return $this->cache->remove($config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function flush($config)
    {
        return $this->cache->flush($config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function cleanup($config)
    {
        return $this->cache->cleanup($config);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php000064400000004012151213256040022655 0ustar00<?php

/**
 * Definition cache decorator class that saves all cache retrievals
 * to PHP's memory; good for unit tests or circumstances where
 * there are lots of configuration objects floating around.
 */
class HTMLPurifier_DefinitionCache_Decorator_Memory extends HTMLPurifier_DefinitionCache_Decorator
{
    /**
     * @type array
     */
    protected $definitions;

    /**
     * @type string
     */
    public $name = 'Memory';

    /**
     * @return HTMLPurifier_DefinitionCache_Decorator_Memory
     */
    public function copy()
    {
        return new HTMLPurifier_DefinitionCache_Decorator_Memory();
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function add($def, $config)
    {
        $status = parent::add($def, $config);
        if ($status) {
            $this->definitions[$this->generateKey($config)] = $def;
        }
        return $status;
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function set($def, $config)
    {
        $status = parent::set($def, $config);
        if ($status) {
            $this->definitions[$this->generateKey($config)] = $def;
        }
        return $status;
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function replace($def, $config)
    {
        $status = parent::replace($def, $config);
        if ($status) {
            $this->definitions[$this->generateKey($config)] = $def;
        }
        return $status;
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function get($config)
    {
        $key = $this->generateKey($config);
        if (isset($this->definitions[$key])) {
            return $this->definitions[$key];
        }
        $this->definitions[$key] = parent::get($config);
        return $this->definitions[$key];
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Template.php.in000064400000003211151213256040023565 0ustar00<?php

require_once 'HTMLPurifier/DefinitionCache/Decorator.php';

/**
 * Definition cache decorator template.
 */
class HTMLPurifier_DefinitionCache_Decorator_Template extends HTMLPurifier_DefinitionCache_Decorator
{

    /**
     * @type string
     */
    public $name = 'Template'; // replace this

    public function copy()
    {
        // replace class name with yours
        return new HTMLPurifier_DefinitionCache_Decorator_Template();
    }

    // remove methods you don't need

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function add($def, $config)
    {
        return parent::add($def, $config);
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function set($def, $config)
    {
        return parent::set($def, $config);
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function replace($def, $config)
    {
        return parent::replace($def, $config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function get($config)
    {
        return parent::get($config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function flush($config)
    {
        return parent::flush($config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function cleanup($config)
    {
        return parent::cleanup($config);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php000064400000003243151213256040023001 0ustar00<?php

/**
 * Definition cache decorator class that cleans up the cache
 * whenever there is a cache miss.
 */
class HTMLPurifier_DefinitionCache_Decorator_Cleanup extends HTMLPurifier_DefinitionCache_Decorator
{
    /**
     * @type string
     */
    public $name = 'Cleanup';

    /**
     * @return HTMLPurifier_DefinitionCache_Decorator_Cleanup
     */
    public function copy()
    {
        return new HTMLPurifier_DefinitionCache_Decorator_Cleanup();
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function add($def, $config)
    {
        $status = parent::add($def, $config);
        if (!$status) {
            parent::cleanup($config);
        }
        return $status;
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function set($def, $config)
    {
        $status = parent::set($def, $config);
        if (!$status) {
            parent::cleanup($config);
        }
        return $status;
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function replace($def, $config)
    {
        $status = parent::replace($def, $config);
        if (!$status) {
            parent::cleanup($config);
        }
        return $status;
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return mixed
     */
    public function get($config)
    {
        $ret = parent::get($config);
        if (!$ret) {
            parent::cleanup($config);
        }
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer.php000064400000022202151213256040021575 0ustar00<?php

class HTMLPurifier_DefinitionCache_Serializer extends HTMLPurifier_DefinitionCache
{

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return int|bool
     */
    public function add($def, $config)
    {
        if (!$this->checkDefType($def)) {
            return;
        }
        $file = $this->generateFilePath($config);
        if (file_exists($file)) {
            return false;
        }
        if (!$this->_prepareDir($config)) {
            return false;
        }
        return $this->_write($file, serialize($def), $config);
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return int|bool
     */
    public function set($def, $config)
    {
        if (!$this->checkDefType($def)) {
            return;
        }
        $file = $this->generateFilePath($config);
        if (!$this->_prepareDir($config)) {
            return false;
        }
        return $this->_write($file, serialize($def), $config);
    }

    /**
     * @param HTMLPurifier_Definition $def
     * @param HTMLPurifier_Config $config
     * @return int|bool
     */
    public function replace($def, $config)
    {
        if (!$this->checkDefType($def)) {
            return;
        }
        $file = $this->generateFilePath($config);
        if (!file_exists($file)) {
            return false;
        }
        if (!$this->_prepareDir($config)) {
            return false;
        }
        return $this->_write($file, serialize($def), $config);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool|HTMLPurifier_Config
     */
    public function get($config)
    {
        $file = $this->generateFilePath($config);
        if (!file_exists($file)) {
            return false;
        }
        return unserialize(file_get_contents($file));
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function remove($config)
    {
        $file = $this->generateFilePath($config);
        if (!file_exists($file)) {
            return false;
        }
        return unlink($file);
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function flush($config)
    {
        if (!$this->_prepareDir($config)) {
            return false;
        }
        $dir = $this->generateDirectoryPath($config);
        $dh = opendir($dir);
        // Apparently, on some versions of PHP, readdir will return
        // an empty string if you pass an invalid argument to readdir.
        // So you need this test.  See #49.
        if (false === $dh) {
            return false;
        }
        while (false !== ($filename = readdir($dh))) {
            if (empty($filename)) {
                continue;
            }
            if ($filename[0] === '.') {
                continue;
            }
            unlink($dir . '/' . $filename);
        }
        closedir($dh);
        return true;
    }

    /**
     * @param HTMLPurifier_Config $config
     * @return bool
     */
    public function cleanup($config)
    {
        if (!$this->_prepareDir($config)) {
            return false;
        }
        $dir = $this->generateDirectoryPath($config);
        $dh = opendir($dir);
        // See #49 (and above).
        if (false === $dh) {
            return false;
        }
        while (false !== ($filename = readdir($dh))) {
            if (empty($filename)) {
                continue;
            }
            if ($filename[0] === '.') {
                continue;
            }
            $key = substr($filename, 0, strlen($filename) - 4);
            if ($this->isOld($key, $config)) {
                unlink($dir . '/' . $filename);
            }
        }
        closedir($dh);
        return true;
    }

    /**
     * Generates the file path to the serial file corresponding to
     * the configuration and definition name
     * @param HTMLPurifier_Config $config
     * @return string
     * @todo Make protected
     */
    public function generateFilePath($config)
    {
        $key = $this->generateKey($config);
        return $this->generateDirectoryPath($config) . '/' . $key . '.ser';
    }

    /**
     * Generates the path to the directory contain this cache's serial files
     * @param HTMLPurifier_Config $config
     * @return string
     * @note No trailing slash
     * @todo Make protected
     */
    public function generateDirectoryPath($config)
    {
        $base = $this->generateBaseDirectoryPath($config);
        return $base . '/' . $this->type;
    }

    /**
     * Generates path to base directory that contains all definition type
     * serials
     * @param HTMLPurifier_Config $config
     * @return mixed|string
     * @todo Make protected
     */
    public function generateBaseDirectoryPath($config)
    {
        $base = $config->get('Cache.SerializerPath');
        $base = is_null($base) ? HTMLPURIFIER_PREFIX . '/HTMLPurifier/DefinitionCache/Serializer' : $base;
        return $base;
    }

    /**
     * Convenience wrapper function for file_put_contents
     * @param string $file File name to write to
     * @param string $data Data to write into file
     * @param HTMLPurifier_Config $config
     * @return int|bool Number of bytes written if success, or false if failure.
     */
    private function _write($file, $data, $config)
    {
        $result = file_put_contents($file, $data);
        if ($result !== false) {
            // set permissions of the new file (no execute)
            $chmod = $config->get('Cache.SerializerPermissions');
            if ($chmod !== null) {
                chmod($file, $chmod & 0666);
            }
        }
        return $result;
    }

    /**
     * Prepares the directory that this type stores the serials in
     * @param HTMLPurifier_Config $config
     * @return bool True if successful
     */
    private function _prepareDir($config)
    {
        $directory = $this->generateDirectoryPath($config);
        $chmod = $config->get('Cache.SerializerPermissions');
        if ($chmod === null) {
            if (!@mkdir($directory) && !is_dir($directory)) {
                trigger_error(
                    'Could not create directory ' . $directory . '',
                    E_USER_WARNING
                );
                return false;
            }
            return true;
        }
        if (!is_dir($directory)) {
            $base = $this->generateBaseDirectoryPath($config);
            if (!is_dir($base)) {
                trigger_error(
                    'Base directory ' . $base . ' does not exist,
                    please create or change using %Cache.SerializerPath',
                    E_USER_WARNING
                );
                return false;
            } elseif (!$this->_testPermissions($base, $chmod)) {
                return false;
            }
            if (!@mkdir($directory, $chmod) && !is_dir($directory)) {
                trigger_error(
                    'Could not create directory ' . $directory . '',
                    E_USER_WARNING
                );
                return false;
            }
            if (!$this->_testPermissions($directory, $chmod)) {
                return false;
            }
        } elseif (!$this->_testPermissions($directory, $chmod)) {
            return false;
        }
        return true;
    }

    /**
     * Tests permissions on a directory and throws out friendly
     * error messages and attempts to chmod it itself if possible
     * @param string $dir Directory path
     * @param int $chmod Permissions
     * @return bool True if directory is writable
     */
    private function _testPermissions($dir, $chmod)
    {
        // early abort, if it is writable, everything is hunky-dory
        if (is_writable($dir)) {
            return true;
        }
        if (!is_dir($dir)) {
            // generally, you'll want to handle this beforehand
            // so a more specific error message can be given
            trigger_error(
                'Directory ' . $dir . ' does not exist',
                E_USER_WARNING
            );
            return false;
        }
        if (function_exists('posix_getuid') && $chmod !== null) {
            // POSIX system, we can give more specific advice
            if (fileowner($dir) === posix_getuid()) {
                // we can chmod it ourselves
                $chmod = $chmod | 0700;
                if (chmod($dir, $chmod)) {
                    return true;
                }
            } elseif (filegroup($dir) === posix_getgid()) {
                $chmod = $chmod | 0070;
            } else {
                // PHP's probably running as nobody, so we'll
                // need to give global permissions
                $chmod = $chmod | 0777;
            }
            trigger_error(
                'Directory ' . $dir . ' not writable, ' .
                'please chmod to ' . decoct($chmod),
                E_USER_WARNING
            );
        } else {
            // generic error message
            trigger_error(
                'Directory ' . $dir . ' not writable, ' .
                'please alter file permissions',
                E_USER_WARNING
            );
        }
        return false;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Encoder.php000064400000062057151213256040016043 0ustar00<?php

/**
 * A UTF-8 specific character encoder that handles cleaning and transforming.
 * @note All functions in this class should be static.
 */
class HTMLPurifier_Encoder
{

    /**
     * Constructor throws fatal error if you attempt to instantiate class
     */
    private function __construct()
    {
        trigger_error('Cannot instantiate encoder, call methods statically', E_USER_ERROR);
    }

    /**
     * Error-handler that mutes errors, alternative to shut-up operator.
     */
    public static function muteErrorHandler()
    {
    }

    /**
     * iconv wrapper which mutes errors, but doesn't work around bugs.
     * @param string $in Input encoding
     * @param string $out Output encoding
     * @param string $text The text to convert
     * @return string
     */
    public static function unsafeIconv($in, $out, $text)
    {
        set_error_handler(array('HTMLPurifier_Encoder', 'muteErrorHandler'));
        $r = iconv($in, $out, $text);
        restore_error_handler();
        return $r;
    }

    /**
     * iconv wrapper which mutes errors and works around bugs.
     * @param string $in Input encoding
     * @param string $out Output encoding
     * @param string $text The text to convert
     * @param int $max_chunk_size
     * @return string
     */
    public static function iconv($in, $out, $text, $max_chunk_size = 8000)
    {
        $code = self::testIconvTruncateBug();
        if ($code == self::ICONV_OK) {
            return self::unsafeIconv($in, $out, $text);
        } elseif ($code == self::ICONV_TRUNCATES) {
            // we can only work around this if the input character set
            // is utf-8
            if ($in == 'utf-8') {
                if ($max_chunk_size < 4) {
                    trigger_error('max_chunk_size is too small', E_USER_WARNING);
                    return false;
                }
                // split into 8000 byte chunks, but be careful to handle
                // multibyte boundaries properly
                if (($c = strlen($text)) <= $max_chunk_size) {
                    return self::unsafeIconv($in, $out, $text);
                }
                $r = '';
                $i = 0;
                while (true) {
                    if ($i + $max_chunk_size >= $c) {
                        $r .= self::unsafeIconv($in, $out, substr($text, $i));
                        break;
                    }
                    // wibble the boundary
                    if (0x80 != (0xC0 & ord($text[$i + $max_chunk_size]))) {
                        $chunk_size = $max_chunk_size;
                    } elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 1]))) {
                        $chunk_size = $max_chunk_size - 1;
                    } elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 2]))) {
                        $chunk_size = $max_chunk_size - 2;
                    } elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 3]))) {
                        $chunk_size = $max_chunk_size - 3;
                    } else {
                        return false; // rather confusing UTF-8...
                    }
                    $chunk = substr($text, $i, $chunk_size); // substr doesn't mind overlong lengths
                    $r .= self::unsafeIconv($in, $out, $chunk);
                    $i += $chunk_size;
                }
                return $r;
            } else {
                return false;
            }
        } else {
            return false;
        }
    }

    /**
     * Cleans a UTF-8 string for well-formedness and SGML validity
     *
     * It will parse according to UTF-8 and return a valid UTF8 string, with
     * non-SGML codepoints excluded.
     *
     * Specifically, it will permit:
     * \x{9}\x{A}\x{D}\x{20}-\x{7E}\x{A0}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}
     * Source: https://www.w3.org/TR/REC-xml/#NT-Char
     * Arguably this function should be modernized to the HTML5 set
     * of allowed characters:
     * https://www.w3.org/TR/html5/syntax.html#preprocessing-the-input-stream
     * which simultaneously expand and restrict the set of allowed characters.
     *
     * @param string $str The string to clean
     * @param bool $force_php
     * @return string
     *
     * @note Just for reference, the non-SGML code points are 0 to 31 and
     *       127 to 159, inclusive.  However, we allow code points 9, 10
     *       and 13, which are the tab, line feed and carriage return
     *       respectively. 128 and above the code points map to multibyte
     *       UTF-8 representations.
     *
     * @note Fallback code adapted from utf8ToUnicode by Henri Sivonen and
     *       hsivonen@iki.fi at <http://iki.fi/hsivonen/php-utf8/> under the
     *       LGPL license.  Notes on what changed are inside, but in general,
     *       the original code transformed UTF-8 text into an array of integer
     *       Unicode codepoints. Understandably, transforming that back to
     *       a string would be somewhat expensive, so the function was modded to
     *       directly operate on the string.  However, this discourages code
     *       reuse, and the logic enumerated here would be useful for any
     *       function that needs to be able to understand UTF-8 characters.
     *       As of right now, only smart lossless character encoding converters
     *       would need that, and I'm probably not going to implement them.
     */
    public static function cleanUTF8($str, $force_php = false)
    {
        // UTF-8 validity is checked since PHP 4.3.5
        // This is an optimization: if the string is already valid UTF-8, no
        // need to do PHP stuff. 99% of the time, this will be the case.
        if (preg_match(
            '/^[\x{9}\x{A}\x{D}\x{20}-\x{7E}\x{A0}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]*$/Du',
            $str
        )) {
            return $str;
        }

        $mState = 0; // cached expected number of octets after the current octet
                     // until the beginning of the next UTF8 character sequence
        $mUcs4  = 0; // cached Unicode character
        $mBytes = 1; // cached expected number of octets in the current sequence

        // original code involved an $out that was an array of Unicode
        // codepoints.  Instead of having to convert back into UTF-8, we've
        // decided to directly append valid UTF-8 characters onto a string
        // $out once they're done.  $char accumulates raw bytes, while $mUcs4
        // turns into the Unicode code point, so there's some redundancy.

        $out = '';
        $char = '';

        $len = strlen($str);
        for ($i = 0; $i < $len; $i++) {
            $in = ord($str[$i]);
            $char .= $str[$i]; // append byte to char
            if (0 == $mState) {
                // When mState is zero we expect either a US-ASCII character
                // or a multi-octet sequence.
                if (0 == (0x80 & ($in))) {
                    // US-ASCII, pass straight through.
                    if (($in <= 31 || $in == 127) &&
                        !($in == 9 || $in == 13 || $in == 10) // save \r\t\n
                    ) {
                        // control characters, remove
                    } else {
                        $out .= $char;
                    }
                    // reset
                    $char = '';
                    $mBytes = 1;
                } elseif (0xC0 == (0xE0 & ($in))) {
                    // First octet of 2 octet sequence
                    $mUcs4 = ($in);
                    $mUcs4 = ($mUcs4 & 0x1F) << 6;
                    $mState = 1;
                    $mBytes = 2;
                } elseif (0xE0 == (0xF0 & ($in))) {
                    // First octet of 3 octet sequence
                    $mUcs4 = ($in);
                    $mUcs4 = ($mUcs4 & 0x0F) << 12;
                    $mState = 2;
                    $mBytes = 3;
                } elseif (0xF0 == (0xF8 & ($in))) {
                    // First octet of 4 octet sequence
                    $mUcs4 = ($in);
                    $mUcs4 = ($mUcs4 & 0x07) << 18;
                    $mState = 3;
                    $mBytes = 4;
                } elseif (0xF8 == (0xFC & ($in))) {
                    // First octet of 5 octet sequence.
                    //
                    // This is illegal because the encoded codepoint must be
                    // either:
                    // (a) not the shortest form or
                    // (b) outside the Unicode range of 0-0x10FFFF.
                    // Rather than trying to resynchronize, we will carry on
                    // until the end of the sequence and let the later error
                    // handling code catch it.
                    $mUcs4 = ($in);
                    $mUcs4 = ($mUcs4 & 0x03) << 24;
                    $mState = 4;
                    $mBytes = 5;
                } elseif (0xFC == (0xFE & ($in))) {
                    // First octet of 6 octet sequence, see comments for 5
                    // octet sequence.
                    $mUcs4 = ($in);
                    $mUcs4 = ($mUcs4 & 1) << 30;
                    $mState = 5;
                    $mBytes = 6;
                } else {
                    // Current octet is neither in the US-ASCII range nor a
                    // legal first octet of a multi-octet sequence.
                    $mState = 0;
                    $mUcs4  = 0;
                    $mBytes = 1;
                    $char = '';
                }
            } else {
                // When mState is non-zero, we expect a continuation of the
                // multi-octet sequence
                if (0x80 == (0xC0 & ($in))) {
                    // Legal continuation.
                    $shift = ($mState - 1) * 6;
                    $tmp = $in;
                    $tmp = ($tmp & 0x0000003F) << $shift;
                    $mUcs4 |= $tmp;

                    if (0 == --$mState) {
                        // End of the multi-octet sequence. mUcs4 now contains
                        // the final Unicode codepoint to be output

                        // Check for illegal sequences and codepoints.

                        // From Unicode 3.1, non-shortest form is illegal
                        if (((2 == $mBytes) && ($mUcs4 < 0x0080)) ||
                            ((3 == $mBytes) && ($mUcs4 < 0x0800)) ||
                            ((4 == $mBytes) && ($mUcs4 < 0x10000)) ||
                            (4 < $mBytes) ||
                            // From Unicode 3.2, surrogate characters = illegal
                            (($mUcs4 & 0xFFFFF800) == 0xD800) ||
                            // Codepoints outside the Unicode range are illegal
                            ($mUcs4 > 0x10FFFF)
                        ) {

                        } elseif (0xFEFF != $mUcs4 && // omit BOM
                            // check for valid Char unicode codepoints
                            (
                                0x9 == $mUcs4 ||
                                0xA == $mUcs4 ||
                                0xD == $mUcs4 ||
                                (0x20 <= $mUcs4 && 0x7E >= $mUcs4) ||
                                // 7F-9F is not strictly prohibited by XML,
                                // but it is non-SGML, and thus we don't allow it
                                (0xA0 <= $mUcs4 && 0xD7FF >= $mUcs4) ||
                                (0xE000 <= $mUcs4 && 0xFFFD >= $mUcs4) ||
                                (0x10000 <= $mUcs4 && 0x10FFFF >= $mUcs4)
                            )
                        ) {
                            $out .= $char;
                        }
                        // initialize UTF8 cache (reset)
                        $mState = 0;
                        $mUcs4  = 0;
                        $mBytes = 1;
                        $char = '';
                    }
                } else {
                    // ((0xC0 & (*in) != 0x80) && (mState != 0))
                    // Incomplete multi-octet sequence.
                    // used to result in complete fail, but we'll reset
                    $mState = 0;
                    $mUcs4  = 0;
                    $mBytes = 1;
                    $char ='';
                }
            }
        }
        return $out;
    }

    /**
     * Translates a Unicode codepoint into its corresponding UTF-8 character.
     * @note Based on Feyd's function at
     *       <http://forums.devnetwork.net/viewtopic.php?p=191404#191404>,
     *       which is in public domain.
     * @note While we're going to do code point parsing anyway, a good
     *       optimization would be to refuse to translate code points that
     *       are non-SGML characters.  However, this could lead to duplication.
     * @note This is very similar to the unichr function in
     *       maintenance/generate-entity-file.php (although this is superior,
     *       due to its sanity checks).
     */

    // +----------+----------+----------+----------+
    // | 33222222 | 22221111 | 111111   |          |
    // | 10987654 | 32109876 | 54321098 | 76543210 | bit
    // +----------+----------+----------+----------+
    // |          |          |          | 0xxxxxxx | 1 byte 0x00000000..0x0000007F
    // |          |          | 110yyyyy | 10xxxxxx | 2 byte 0x00000080..0x000007FF
    // |          | 1110zzzz | 10yyyyyy | 10xxxxxx | 3 byte 0x00000800..0x0000FFFF
    // | 11110www | 10wwzzzz | 10yyyyyy | 10xxxxxx | 4 byte 0x00010000..0x0010FFFF
    // +----------+----------+----------+----------+
    // | 00000000 | 00011111 | 11111111 | 11111111 | Theoretical upper limit of legal scalars: 2097151 (0x001FFFFF)
    // | 00000000 | 00010000 | 11111111 | 11111111 | Defined upper limit of legal scalar codes
    // +----------+----------+----------+----------+

    public static function unichr($code)
    {
        if ($code > 1114111 or $code < 0 or
          ($code >= 55296 and $code <= 57343) ) {
            // bits are set outside the "valid" range as defined
            // by UNICODE 4.1.0
            return '';
        }

        $x = $y = $z = $w = 0;
        if ($code < 128) {
            // regular ASCII character
            $x = $code;
        } else {
            // set up bits for UTF-8
            $x = ($code & 63) | 128;
            if ($code < 2048) {
                $y = (($code & 2047) >> 6) | 192;
            } else {
                $y = (($code & 4032) >> 6) | 128;
                if ($code < 65536) {
                    $z = (($code >> 12) & 15) | 224;
                } else {
                    $z = (($code >> 12) & 63) | 128;
                    $w = (($code >> 18) & 7)  | 240;
                }
            }
        }
        // set up the actual character
        $ret = '';
        if ($w) {
            $ret .= chr($w);
        }
        if ($z) {
            $ret .= chr($z);
        }
        if ($y) {
            $ret .= chr($y);
        }
        $ret .= chr($x);

        return $ret;
    }

    /**
     * @return bool
     */
    public static function iconvAvailable()
    {
        static $iconv = null;
        if ($iconv === null) {
            $iconv = function_exists('iconv') && self::testIconvTruncateBug() != self::ICONV_UNUSABLE;
        }
        return $iconv;
    }

    /**
     * Convert a string to UTF-8 based on configuration.
     * @param string $str The string to convert
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public static function convertToUTF8($str, $config, $context)
    {
        $encoding = $config->get('Core.Encoding');
        if ($encoding === 'utf-8') {
            return $str;
        }
        static $iconv = null;
        if ($iconv === null) {
            $iconv = self::iconvAvailable();
        }
        if ($iconv && !$config->get('Test.ForceNoIconv')) {
            // unaffected by bugs, since UTF-8 support all characters
            $str = self::unsafeIconv($encoding, 'utf-8//IGNORE', $str);
            if ($str === false) {
                // $encoding is not a valid encoding
                trigger_error('Invalid encoding ' . $encoding, E_USER_ERROR);
                return '';
            }
            // If the string is bjorked by Shift_JIS or a similar encoding
            // that doesn't support all of ASCII, convert the naughty
            // characters to their true byte-wise ASCII/UTF-8 equivalents.
            $str = strtr($str, self::testEncodingSupportsASCII($encoding));
            return $str;
        } elseif ($encoding === 'iso-8859-1') {
            $str = utf8_encode($str);
            return $str;
        }
        $bug = HTMLPurifier_Encoder::testIconvTruncateBug();
        if ($bug == self::ICONV_OK) {
            trigger_error('Encoding not supported, please install iconv', E_USER_ERROR);
        } else {
            trigger_error(
                'You have a buggy version of iconv, see https://bugs.php.net/bug.php?id=48147 ' .
                'and http://sourceware.org/bugzilla/show_bug.cgi?id=13541',
                E_USER_ERROR
            );
        }
    }

    /**
     * Converts a string from UTF-8 based on configuration.
     * @param string $str The string to convert
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     * @note Currently, this is a lossy conversion, with unexpressable
     *       characters being omitted.
     */
    public static function convertFromUTF8($str, $config, $context)
    {
        $encoding = $config->get('Core.Encoding');
        if ($escape = $config->get('Core.EscapeNonASCIICharacters')) {
            $str = self::convertToASCIIDumbLossless($str);
        }
        if ($encoding === 'utf-8') {
            return $str;
        }
        static $iconv = null;
        if ($iconv === null) {
            $iconv = self::iconvAvailable();
        }
        if ($iconv && !$config->get('Test.ForceNoIconv')) {
            // Undo our previous fix in convertToUTF8, otherwise iconv will barf
            $ascii_fix = self::testEncodingSupportsASCII($encoding);
            if (!$escape && !empty($ascii_fix)) {
                $clear_fix = array();
                foreach ($ascii_fix as $utf8 => $native) {
                    $clear_fix[$utf8] = '';
                }
                $str = strtr($str, $clear_fix);
            }
            $str = strtr($str, array_flip($ascii_fix));
            // Normal stuff
            $str = self::iconv('utf-8', $encoding . '//IGNORE', $str);
            return $str;
        } elseif ($encoding === 'iso-8859-1') {
            $str = utf8_decode($str);
            return $str;
        }
        trigger_error('Encoding not supported', E_USER_ERROR);
        // You might be tempted to assume that the ASCII representation
        // might be OK, however, this is *not* universally true over all
        // encodings.  So we take the conservative route here, rather
        // than forcibly turn on %Core.EscapeNonASCIICharacters
    }

    /**
     * Lossless (character-wise) conversion of HTML to ASCII
     * @param string $str UTF-8 string to be converted to ASCII
     * @return string ASCII encoded string with non-ASCII character entity-ized
     * @warning Adapted from MediaWiki, claiming fair use: this is a common
     *       algorithm. If you disagree with this license fudgery,
     *       implement it yourself.
     * @note Uses decimal numeric entities since they are best supported.
     * @note This is a DUMB function: it has no concept of keeping
     *       character entities that the projected character encoding
     *       can allow. We could possibly implement a smart version
     *       but that would require it to also know which Unicode
     *       codepoints the charset supported (not an easy task).
     * @note Sort of with cleanUTF8() but it assumes that $str is
     *       well-formed UTF-8
     */
    public static function convertToASCIIDumbLossless($str)
    {
        $bytesleft = 0;
        $result = '';
        $working = 0;
        $len = strlen($str);
        for ($i = 0; $i < $len; $i++) {
            $bytevalue = ord($str[$i]);
            if ($bytevalue <= 0x7F) { //0xxx xxxx
                $result .= chr($bytevalue);
                $bytesleft = 0;
            } elseif ($bytevalue <= 0xBF) { //10xx xxxx
                $working = $working << 6;
                $working += ($bytevalue & 0x3F);
                $bytesleft--;
                if ($bytesleft <= 0) {
                    $result .= "&#" . $working . ";";
                }
            } elseif ($bytevalue <= 0xDF) { //110x xxxx
                $working = $bytevalue & 0x1F;
                $bytesleft = 1;
            } elseif ($bytevalue <= 0xEF) { //1110 xxxx
                $working = $bytevalue & 0x0F;
                $bytesleft = 2;
            } else { //1111 0xxx
                $working = $bytevalue & 0x07;
                $bytesleft = 3;
            }
        }
        return $result;
    }

    /** No bugs detected in iconv. */
    const ICONV_OK = 0;

    /** Iconv truncates output if converting from UTF-8 to another
     *  character set with //IGNORE, and a non-encodable character is found */
    const ICONV_TRUNCATES = 1;

    /** Iconv does not support //IGNORE, making it unusable for
     *  transcoding purposes */
    const ICONV_UNUSABLE = 2;

    /**
     * glibc iconv has a known bug where it doesn't handle the magic
     * //IGNORE stanza correctly.  In particular, rather than ignore
     * characters, it will return an EILSEQ after consuming some number
     * of characters, and expect you to restart iconv as if it were
     * an E2BIG.  Old versions of PHP did not respect the errno, and
     * returned the fragment, so as a result you would see iconv
     * mysteriously truncating output. We can work around this by
     * manually chopping our input into segments of about 8000
     * characters, as long as PHP ignores the error code.  If PHP starts
     * paying attention to the error code, iconv becomes unusable.
     *
     * @return int Error code indicating severity of bug.
     */
    public static function testIconvTruncateBug()
    {
        static $code = null;
        if ($code === null) {
            // better not use iconv, otherwise infinite loop!
            $r = self::unsafeIconv('utf-8', 'ascii//IGNORE', "\xCE\xB1" . str_repeat('a', 9000));
            if ($r === false) {
                $code = self::ICONV_UNUSABLE;
            } elseif (($c = strlen($r)) < 9000) {
                $code = self::ICONV_TRUNCATES;
            } elseif ($c > 9000) {
                trigger_error(
                    'Your copy of iconv is extremely buggy. Please notify HTML Purifier maintainers: ' .
                    'include your iconv version as per phpversion()',
                    E_USER_ERROR
                );
            } else {
                $code = self::ICONV_OK;
            }
        }
        return $code;
    }

    /**
     * This expensive function tests whether or not a given character
     * encoding supports ASCII. 7/8-bit encodings like Shift_JIS will
     * fail this test, and require special processing. Variable width
     * encodings shouldn't ever fail.
     *
     * @param string $encoding Encoding name to test, as per iconv format
     * @param bool $bypass Whether or not to bypass the precompiled arrays.
     * @return Array of UTF-8 characters to their corresponding ASCII,
     *      which can be used to "undo" any overzealous iconv action.
     */
    public static function testEncodingSupportsASCII($encoding, $bypass = false)
    {
        // All calls to iconv here are unsafe, proof by case analysis:
        // If ICONV_OK, no difference.
        // If ICONV_TRUNCATE, all calls involve one character inputs,
        // so bug is not triggered.
        // If ICONV_UNUSABLE, this call is irrelevant
        static $encodings = array();
        if (!$bypass) {
            if (isset($encodings[$encoding])) {
                return $encodings[$encoding];
            }
            $lenc = strtolower($encoding);
            switch ($lenc) {
                case 'shift_jis':
                    return array("\xC2\xA5" => '\\', "\xE2\x80\xBE" => '~');
                case 'johab':
                    return array("\xE2\x82\xA9" => '\\');
            }
            if (strpos($lenc, 'iso-8859-') === 0) {
                return array();
            }
        }
        $ret = array();
        if (self::unsafeIconv('UTF-8', $encoding, 'a') === false) {
            return false;
        }
        for ($i = 0x20; $i <= 0x7E; $i++) { // all printable ASCII chars
            $c = chr($i); // UTF-8 char
            $r = self::unsafeIconv('UTF-8', "$encoding//IGNORE", $c); // initial conversion
            if ($r === '' ||
                // This line is needed for iconv implementations that do not
                // omit characters that do not exist in the target character set
                ($r === $c && self::unsafeIconv($encoding, 'UTF-8//IGNORE', $r) !== $c)
            ) {
                // Reverse engineer: what's the UTF-8 equiv of this byte
                // sequence? This assumes that there's no variable width
                // encoding that doesn't support ASCII.
                $ret[self::unsafeIconv($encoding, 'UTF-8//IGNORE', $c)] = $c;
            }
        }
        $encodings[$encoding] = $ret;
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php000064400000042523151213256040017235 0ustar00<?php

/**
 * Definition of the purified HTML that describes allowed children,
 * attributes, and many other things.
 *
 * Conventions:
 *
 * All member variables that are prefixed with info
 * (including the main $info array) are used by HTML Purifier internals
 * and should not be directly edited when customizing the HTMLDefinition.
 * They can usually be set via configuration directives or custom
 * modules.
 *
 * On the other hand, member variables without the info prefix are used
 * internally by the HTMLDefinition and MUST NOT be used by other HTML
 * Purifier internals. Many of them, however, are public, and may be
 * edited by userspace code to tweak the behavior of HTMLDefinition.
 *
 * @note This class is inspected by Printer_HTMLDefinition; please
 *       update that class if things here change.
 *
 * @warning Directives that change this object's structure must be in
 *          the HTML or Attr namespace!
 */
class HTMLPurifier_HTMLDefinition extends HTMLPurifier_Definition
{

    // FULLY-PUBLIC VARIABLES ---------------------------------------------

    /**
     * Associative array of element names to HTMLPurifier_ElementDef.
     * @type HTMLPurifier_ElementDef[]
     */
    public $info = array();

    /**
     * Associative array of global attribute name to attribute definition.
     * @type array
     */
    public $info_global_attr = array();

    /**
     * String name of parent element HTML will be going into.
     * @type string
     */
    public $info_parent = 'div';

    /**
     * Definition for parent element, allows parent element to be a
     * tag that's not allowed inside the HTML fragment.
     * @type HTMLPurifier_ElementDef
     */
    public $info_parent_def;

    /**
     * String name of element used to wrap inline elements in block context.
     * @type string
     * @note This is rarely used except for BLOCKQUOTEs in strict mode
     */
    public $info_block_wrapper = 'p';

    /**
     * Associative array of deprecated tag name to HTMLPurifier_TagTransform.
     * @type array
     */
    public $info_tag_transform = array();

    /**
     * Indexed list of HTMLPurifier_AttrTransform to be performed before validation.
     * @type HTMLPurifier_AttrTransform[]
     */
    public $info_attr_transform_pre = array();

    /**
     * Indexed list of HTMLPurifier_AttrTransform to be performed after validation.
     * @type HTMLPurifier_AttrTransform[]
     */
    public $info_attr_transform_post = array();

    /**
     * Nested lookup array of content set name (Block, Inline) to
     * element name to whether or not it belongs in that content set.
     * @type array
     */
    public $info_content_sets = array();

    /**
     * Indexed list of HTMLPurifier_Injector to be used.
     * @type HTMLPurifier_Injector[]
     */
    public $info_injector = array();

    /**
     * Doctype object
     * @type HTMLPurifier_Doctype
     */
    public $doctype;



    // RAW CUSTOMIZATION STUFF --------------------------------------------

    /**
     * Adds a custom attribute to a pre-existing element
     * @note This is strictly convenience, and does not have a corresponding
     *       method in HTMLPurifier_HTMLModule
     * @param string $element_name Element name to add attribute to
     * @param string $attr_name Name of attribute
     * @param mixed $def Attribute definition, can be string or object, see
     *             HTMLPurifier_AttrTypes for details
     */
    public function addAttribute($element_name, $attr_name, $def)
    {
        $module = $this->getAnonymousModule();
        if (!isset($module->info[$element_name])) {
            $element = $module->addBlankElement($element_name);
        } else {
            $element = $module->info[$element_name];
        }
        $element->attr[$attr_name] = $def;
    }

    /**
     * Adds a custom element to your HTML definition
     * @see HTMLPurifier_HTMLModule::addElement() for detailed
     *       parameter and return value descriptions.
     */
    public function addElement($element_name, $type, $contents, $attr_collections, $attributes = array())
    {
        $module = $this->getAnonymousModule();
        // assume that if the user is calling this, the element
        // is safe. This may not be a good idea
        $element = $module->addElement($element_name, $type, $contents, $attr_collections, $attributes);
        return $element;
    }

    /**
     * Adds a blank element to your HTML definition, for overriding
     * existing behavior
     * @param string $element_name
     * @return HTMLPurifier_ElementDef
     * @see HTMLPurifier_HTMLModule::addBlankElement() for detailed
     *       parameter and return value descriptions.
     */
    public function addBlankElement($element_name)
    {
        $module  = $this->getAnonymousModule();
        $element = $module->addBlankElement($element_name);
        return $element;
    }

    /**
     * Retrieves a reference to the anonymous module, so you can
     * bust out advanced features without having to make your own
     * module.
     * @return HTMLPurifier_HTMLModule
     */
    public function getAnonymousModule()
    {
        if (!$this->_anonModule) {
            $this->_anonModule = new HTMLPurifier_HTMLModule();
            $this->_anonModule->name = 'Anonymous';
        }
        return $this->_anonModule;
    }

    private $_anonModule = null;

    // PUBLIC BUT INTERNAL VARIABLES --------------------------------------

    /**
     * @type string
     */
    public $type = 'HTML';

    /**
     * @type HTMLPurifier_HTMLModuleManager
     */
    public $manager;

    /**
     * Performs low-cost, preliminary initialization.
     */
    public function __construct()
    {
        $this->manager = new HTMLPurifier_HTMLModuleManager();
    }

    /**
     * @param HTMLPurifier_Config $config
     */
    protected function doSetup($config)
    {
        $this->processModules($config);
        $this->setupConfigStuff($config);
        unset($this->manager);

        // cleanup some of the element definitions
        foreach ($this->info as $k => $v) {
            unset($this->info[$k]->content_model);
            unset($this->info[$k]->content_model_type);
        }
    }

    /**
     * Extract out the information from the manager
     * @param HTMLPurifier_Config $config
     */
    protected function processModules($config)
    {
        if ($this->_anonModule) {
            // for user specific changes
            // this is late-loaded so we don't have to deal with PHP4
            // reference wonky-ness
            $this->manager->addModule($this->_anonModule);
            unset($this->_anonModule);
        }

        $this->manager->setup($config);
        $this->doctype = $this->manager->doctype;

        foreach ($this->manager->modules as $module) {
            foreach ($module->info_tag_transform as $k => $v) {
                if ($v === false) {
                    unset($this->info_tag_transform[$k]);
                } else {
                    $this->info_tag_transform[$k] = $v;
                }
            }
            foreach ($module->info_attr_transform_pre as $k => $v) {
                if ($v === false) {
                    unset($this->info_attr_transform_pre[$k]);
                } else {
                    $this->info_attr_transform_pre[$k] = $v;
                }
            }
            foreach ($module->info_attr_transform_post as $k => $v) {
                if ($v === false) {
                    unset($this->info_attr_transform_post[$k]);
                } else {
                    $this->info_attr_transform_post[$k] = $v;
                }
            }
            foreach ($module->info_injector as $k => $v) {
                if ($v === false) {
                    unset($this->info_injector[$k]);
                } else {
                    $this->info_injector[$k] = $v;
                }
            }
        }
        $this->info = $this->manager->getElements();
        $this->info_content_sets = $this->manager->contentSets->lookup;
    }

    /**
     * Sets up stuff based on config. We need a better way of doing this.
     * @param HTMLPurifier_Config $config
     */
    protected function setupConfigStuff($config)
    {
        $block_wrapper = $config->get('HTML.BlockWrapper');
        if (isset($this->info_content_sets['Block'][$block_wrapper])) {
            $this->info_block_wrapper = $block_wrapper;
        } else {
            trigger_error(
                'Cannot use non-block element as block wrapper',
                E_USER_ERROR
            );
        }

        $parent = $config->get('HTML.Parent');
        $def = $this->manager->getElement($parent, true);
        if ($def) {
            $this->info_parent = $parent;
            $this->info_parent_def = $def;
        } else {
            trigger_error(
                'Cannot use unrecognized element as parent',
                E_USER_ERROR
            );
            $this->info_parent_def = $this->manager->getElement($this->info_parent, true);
        }

        // support template text
        $support = "(for information on implementing this, see the support forums) ";

        // setup allowed elements -----------------------------------------

        $allowed_elements = $config->get('HTML.AllowedElements');
        $allowed_attributes = $config->get('HTML.AllowedAttributes'); // retrieve early

        if (!is_array($allowed_elements) && !is_array($allowed_attributes)) {
            $allowed = $config->get('HTML.Allowed');
            if (is_string($allowed)) {
                list($allowed_elements, $allowed_attributes) = $this->parseTinyMCEAllowedList($allowed);
            }
        }

        if (is_array($allowed_elements)) {
            foreach ($this->info as $name => $d) {
                if (!isset($allowed_elements[$name])) {
                    unset($this->info[$name]);
                }
                unset($allowed_elements[$name]);
            }
            // emit errors
            foreach ($allowed_elements as $element => $d) {
                $element = htmlspecialchars($element); // PHP doesn't escape errors, be careful!
                trigger_error("Element '$element' is not supported $support", E_USER_WARNING);
            }
        }

        // setup allowed attributes ---------------------------------------

        $allowed_attributes_mutable = $allowed_attributes; // by copy!
        if (is_array($allowed_attributes)) {
            // This actually doesn't do anything, since we went away from
            // global attributes. It's possible that userland code uses
            // it, but HTMLModuleManager doesn't!
            foreach ($this->info_global_attr as $attr => $x) {
                $keys = array($attr, "*@$attr", "*.$attr");
                $delete = true;
                foreach ($keys as $key) {
                    if ($delete && isset($allowed_attributes[$key])) {
                        $delete = false;
                    }
                    if (isset($allowed_attributes_mutable[$key])) {
                        unset($allowed_attributes_mutable[$key]);
                    }
                }
                if ($delete) {
                    unset($this->info_global_attr[$attr]);
                }
            }

            foreach ($this->info as $tag => $info) {
                foreach ($info->attr as $attr => $x) {
                    $keys = array("$tag@$attr", $attr, "*@$attr", "$tag.$attr", "*.$attr");
                    $delete = true;
                    foreach ($keys as $key) {
                        if ($delete && isset($allowed_attributes[$key])) {
                            $delete = false;
                        }
                        if (isset($allowed_attributes_mutable[$key])) {
                            unset($allowed_attributes_mutable[$key]);
                        }
                    }
                    if ($delete) {
                        if ($this->info[$tag]->attr[$attr]->required) {
                            trigger_error(
                                "Required attribute '$attr' in element '$tag' " .
                                "was not allowed, which means '$tag' will not be allowed either",
                                E_USER_WARNING
                            );
                        }
                        unset($this->info[$tag]->attr[$attr]);
                    }
                }
            }
            // emit errors
            foreach ($allowed_attributes_mutable as $elattr => $d) {
                $bits = preg_split('/[.@]/', $elattr, 2);
                $c = count($bits);
                switch ($c) {
                    case 2:
                        if ($bits[0] !== '*') {
                            $element = htmlspecialchars($bits[0]);
                            $attribute = htmlspecialchars($bits[1]);
                            if (!isset($this->info[$element])) {
                                trigger_error(
                                    "Cannot allow attribute '$attribute' if element " .
                                    "'$element' is not allowed/supported $support"
                                );
                            } else {
                                trigger_error(
                                    "Attribute '$attribute' in element '$element' not supported $support",
                                    E_USER_WARNING
                                );
                            }
                            break;
                        }
                        // otherwise fall through
                    case 1:
                        $attribute = htmlspecialchars($bits[0]);
                        trigger_error(
                            "Global attribute '$attribute' is not ".
                            "supported in any elements $support",
                            E_USER_WARNING
                        );
                        break;
                }
            }
        }

        // setup forbidden elements ---------------------------------------

        $forbidden_elements   = $config->get('HTML.ForbiddenElements');
        $forbidden_attributes = $config->get('HTML.ForbiddenAttributes');

        foreach ($this->info as $tag => $info) {
            if (isset($forbidden_elements[$tag])) {
                unset($this->info[$tag]);
                continue;
            }
            foreach ($info->attr as $attr => $x) {
                if (isset($forbidden_attributes["$tag@$attr"]) ||
                    isset($forbidden_attributes["*@$attr"]) ||
                    isset($forbidden_attributes[$attr])
                ) {
                    unset($this->info[$tag]->attr[$attr]);
                    continue;
                } elseif (isset($forbidden_attributes["$tag.$attr"])) { // this segment might get removed eventually
                    // $tag.$attr are not user supplied, so no worries!
                    trigger_error(
                        "Error with $tag.$attr: tag.attr syntax not supported for " .
                        "HTML.ForbiddenAttributes; use tag@attr instead",
                        E_USER_WARNING
                    );
                }
            }
        }
        foreach ($forbidden_attributes as $key => $v) {
            if (strlen($key) < 2) {
                continue;
            }
            if ($key[0] != '*') {
                continue;
            }
            if ($key[1] == '.') {
                trigger_error(
                    "Error with $key: *.attr syntax not supported for HTML.ForbiddenAttributes; use attr instead",
                    E_USER_WARNING
                );
            }
        }

        // setup injectors -----------------------------------------------------
        foreach ($this->info_injector as $i => $injector) {
            if ($injector->checkNeeded($config) !== false) {
                // remove injector that does not have it's required
                // elements/attributes present, and is thus not needed.
                unset($this->info_injector[$i]);
            }
        }
    }

    /**
     * Parses a TinyMCE-flavored Allowed Elements and Attributes list into
     * separate lists for processing. Format is element[attr1|attr2],element2...
     * @warning Although it's largely drawn from TinyMCE's implementation,
     *      it is different, and you'll probably have to modify your lists
     * @param array $list String list to parse
     * @return array
     * @todo Give this its own class, probably static interface
     */
    public function parseTinyMCEAllowedList($list)
    {
        $list = str_replace(array(' ', "\t"), '', $list);

        $elements = array();
        $attributes = array();

        $chunks = preg_split('/(,|[\n\r]+)/', $list);
        foreach ($chunks as $chunk) {
            if (empty($chunk)) {
                continue;
            }
            // remove TinyMCE element control characters
            if (!strpos($chunk, '[')) {
                $element = $chunk;
                $attr = false;
            } else {
                list($element, $attr) = explode('[', $chunk);
            }
            if ($element !== '*') {
                $elements[$element] = true;
            }
            if (!$attr) {
                continue;
            }
            $attr = substr($attr, 0, strlen($attr) - 1); // remove trailing ]
            $attr = explode('|', $attr);
            foreach ($attr as $key) {
                $attributes["$element.$key"] = true;
            }
        }
        return array($elements, $attributes);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/PropertyListIterator.php000064400000001541151213256040020645 0ustar00<?php

/**
 * Property list iterator. Do not instantiate this class directly.
 */
class HTMLPurifier_PropertyListIterator extends FilterIterator
{

    /**
     * @type int
     */
    protected $l;
    /**
     * @type string
     */
    protected $filter;

    /**
     * @param Iterator $iterator Array of data to iterate over
     * @param string $filter Optional prefix to only allow values of
     */
    public function __construct(Iterator $iterator, $filter = null)
    {
        parent::__construct($iterator);
        $this->l = strlen($filter);
        $this->filter = $filter;
    }

    /**
     * @return bool
     */
    public function accept()
    {
        $key = $this->getInnerIterator()->key();
        if (strncmp($key, $this->filter, $this->l) !== 0) {
            return false;
        }
        return true;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php000064400000002226151213256040020314 0ustar00<?php

/**
 * Simple transformation, just change tag name to something else,
 * and possibly add some styling. This will cover most of the deprecated
 * tag cases.
 */
class HTMLPurifier_TagTransform_Simple extends HTMLPurifier_TagTransform
{
    /**
     * @type string
     */
    protected $style;

    /**
     * @param string $transform_to Tag name to transform to.
     * @param string $style CSS style to add to the tag
     */
    public function __construct($transform_to, $style = null)
    {
        $this->transform_to = $transform_to;
        $this->style = $style;
    }

    /**
     * @param HTMLPurifier_Token_Tag $tag
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    public function transform($tag, $config, $context)
    {
        $new_tag = clone $tag;
        $new_tag->name = $this->transform_to;
        if (!is_null($this->style) &&
            ($new_tag instanceof HTMLPurifier_Token_Start || $new_tag instanceof HTMLPurifier_Token_Empty)
        ) {
            $this->prependCSS($new_tag->attr, $this->style);
        }
        return $new_tag;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php000064400000006453151213256040017777 0ustar00<?php

/**
 * Transforms FONT tags to the proper form (SPAN with CSS styling)
 *
 * This transformation takes the three proprietary attributes of FONT and
 * transforms them into their corresponding CSS attributes.  These are color,
 * face, and size.
 *
 * @note Size is an interesting case because it doesn't map cleanly to CSS.
 *       Thanks to
 *       http://style.cleverchimp.com/font_size_intervals/altintervals.html
 *       for reasonable mappings.
 * @warning This doesn't work completely correctly; specifically, this
 *          TagTransform operates before well-formedness is enforced, so
 *          the "active formatting elements" algorithm doesn't get applied.
 */
class HTMLPurifier_TagTransform_Font extends HTMLPurifier_TagTransform
{
    /**
     * @type string
     */
    public $transform_to = 'span';

    /**
     * @type array
     */
    protected $_size_lookup = array(
        '0' => 'xx-small',
        '1' => 'xx-small',
        '2' => 'small',
        '3' => 'medium',
        '4' => 'large',
        '5' => 'x-large',
        '6' => 'xx-large',
        '7' => '300%',
        '-1' => 'smaller',
        '-2' => '60%',
        '+1' => 'larger',
        '+2' => '150%',
        '+3' => '200%',
        '+4' => '300%'
    );

    /**
     * @param HTMLPurifier_Token_Tag $tag
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return HTMLPurifier_Token_End|string
     */
    public function transform($tag, $config, $context)
    {
        if ($tag instanceof HTMLPurifier_Token_End) {
            $new_tag = clone $tag;
            $new_tag->name = $this->transform_to;
            return $new_tag;
        }

        $attr = $tag->attr;
        $prepend_style = '';

        // handle color transform
        if (isset($attr['color'])) {
            $prepend_style .= 'color:' . $attr['color'] . ';';
            unset($attr['color']);
        }

        // handle face transform
        if (isset($attr['face'])) {
            $prepend_style .= 'font-family:' . $attr['face'] . ';';
            unset($attr['face']);
        }

        // handle size transform
        if (isset($attr['size'])) {
            // normalize large numbers
            if ($attr['size'] !== '') {
                if ($attr['size'][0] == '+' || $attr['size'][0] == '-') {
                    $size = (int)$attr['size'];
                    if ($size < -2) {
                        $attr['size'] = '-2';
                    }
                    if ($size > 4) {
                        $attr['size'] = '+4';
                    }
                } else {
                    $size = (int)$attr['size'];
                    if ($size > 7) {
                        $attr['size'] = '7';
                    }
                }
            }
            if (isset($this->_size_lookup[$attr['size']])) {
                $prepend_style .= 'font-size:' .
                    $this->_size_lookup[$attr['size']] . ';';
            }
            unset($attr['size']);
        }

        if ($prepend_style) {
            $attr['style'] = isset($attr['style']) ?
                $prepend_style . $attr['style'] :
                $prepend_style;
        }

        $new_tag = clone $tag;
        $new_tag->name = $this->transform_to;
        $new_tag->attr = $attr;

        return $new_tag;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Length.php000064400000007433151213256050015703 0ustar00<?php

/**
 * Represents a measurable length, with a string numeric magnitude
 * and a unit. This object is immutable.
 */
class HTMLPurifier_Length
{

    /**
     * String numeric magnitude.
     * @type string
     */
    protected $n;

    /**
     * String unit. False is permitted if $n = 0.
     * @type string|bool
     */
    protected $unit;

    /**
     * Whether or not this length is valid. Null if not calculated yet.
     * @type bool
     */
    protected $isValid;

    /**
     * Array Lookup array of units recognized by CSS 3
     * @type array
     */
    protected static $allowedUnits = array(
        'em' => true, 'ex' => true, 'px' => true, 'in' => true,
        'cm' => true, 'mm' => true, 'pt' => true, 'pc' => true,
        'ch' => true, 'rem' => true, 'vw' => true, 'vh' => true,
        'vmin' => true, 'vmax' => true
    );

    /**
     * @param string $n Magnitude
     * @param bool|string $u Unit
     */
    public function __construct($n = '0', $u = false)
    {
        $this->n = (string) $n;
        $this->unit = $u !== false ? (string) $u : false;
    }

    /**
     * @param string $s Unit string, like '2em' or '3.4in'
     * @return HTMLPurifier_Length
     * @warning Does not perform validation.
     */
    public static function make($s)
    {
        if ($s instanceof HTMLPurifier_Length) {
            return $s;
        }
        $n_length = strspn($s, '1234567890.+-');
        $n = substr($s, 0, $n_length);
        $unit = substr($s, $n_length);
        if ($unit === '') {
            $unit = false;
        }
        return new HTMLPurifier_Length($n, $unit);
    }

    /**
     * Validates the number and unit.
     * @return bool
     */
    protected function validate()
    {
        // Special case:
        if ($this->n === '+0' || $this->n === '-0') {
            $this->n = '0';
        }
        if ($this->n === '0' && $this->unit === false) {
            return true;
        }
        if (!ctype_lower($this->unit)) {
            $this->unit = strtolower($this->unit);
        }
        if (!isset(HTMLPurifier_Length::$allowedUnits[$this->unit])) {
            return false;
        }
        // Hack:
        $def = new HTMLPurifier_AttrDef_CSS_Number();
        $result = $def->validate($this->n, false, false);
        if ($result === false) {
            return false;
        }
        $this->n = $result;
        return true;
    }

    /**
     * Returns string representation of number.
     * @return string
     */
    public function toString()
    {
        if (!$this->isValid()) {
            return false;
        }
        return $this->n . $this->unit;
    }

    /**
     * Retrieves string numeric magnitude.
     * @return string
     */
    public function getN()
    {
        return $this->n;
    }

    /**
     * Retrieves string unit.
     * @return string
     */
    public function getUnit()
    {
        return $this->unit;
    }

    /**
     * Returns true if this length unit is valid.
     * @return bool
     */
    public function isValid()
    {
        if ($this->isValid === null) {
            $this->isValid = $this->validate();
        }
        return $this->isValid;
    }

    /**
     * Compares two lengths, and returns 1 if greater, -1 if less and 0 if equal.
     * @param HTMLPurifier_Length $l
     * @return int
     * @warning If both values are too large or small, this calculation will
     *          not work properly
     */
    public function compareTo($l)
    {
        if ($l === false) {
            return false;
        }
        if ($l->unit !== $this->unit) {
            $converter = new HTMLPurifier_UnitConverter();
            $l = $converter->convert($l, $this->unit);
            if ($l === false) {
                return false;
            }
        }
        return $this->n - $l->n;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Printer.php000064400000013411151213256050016076 0ustar00<?php

// OUT OF DATE, NEEDS UPDATING!
// USE XMLWRITER!

class HTMLPurifier_Printer
{

    /**
     * For HTML generation convenience funcs.
     * @type HTMLPurifier_Generator
     */
    protected $generator;

    /**
     * For easy access.
     * @type HTMLPurifier_Config
     */
    protected $config;

    /**
     * Initialize $generator.
     */
    public function __construct()
    {
    }

    /**
     * Give generator necessary configuration if possible
     * @param HTMLPurifier_Config $config
     */
    public function prepareGenerator($config)
    {
        $all = $config->getAll();
        $context = new HTMLPurifier_Context();
        $this->generator = new HTMLPurifier_Generator($config, $context);
    }

    /**
     * Main function that renders object or aspect of that object
     * @note Parameters vary depending on printer
     */
    // function render() {}

    /**
     * Returns a start tag
     * @param string $tag Tag name
     * @param array $attr Attribute array
     * @return string
     */
    protected function start($tag, $attr = array())
    {
        return $this->generator->generateFromToken(
            new HTMLPurifier_Token_Start($tag, $attr ? $attr : array())
        );
    }

    /**
     * Returns an end tag
     * @param string $tag Tag name
     * @return string
     */
    protected function end($tag)
    {
        return $this->generator->generateFromToken(
            new HTMLPurifier_Token_End($tag)
        );
    }

    /**
     * Prints a complete element with content inside
     * @param string $tag Tag name
     * @param string $contents Element contents
     * @param array $attr Tag attributes
     * @param bool $escape whether or not to escape contents
     * @return string
     */
    protected function element($tag, $contents, $attr = array(), $escape = true)
    {
        return $this->start($tag, $attr) .
            ($escape ? $this->escape($contents) : $contents) .
            $this->end($tag);
    }

    /**
     * @param string $tag
     * @param array $attr
     * @return string
     */
    protected function elementEmpty($tag, $attr = array())
    {
        return $this->generator->generateFromToken(
            new HTMLPurifier_Token_Empty($tag, $attr)
        );
    }

    /**
     * @param string $text
     * @return string
     */
    protected function text($text)
    {
        return $this->generator->generateFromToken(
            new HTMLPurifier_Token_Text($text)
        );
    }

    /**
     * Prints a simple key/value row in a table.
     * @param string $name Key
     * @param mixed $value Value
     * @return string
     */
    protected function row($name, $value)
    {
        if (is_bool($value)) {
            $value = $value ? 'On' : 'Off';
        }
        return
            $this->start('tr') . "\n" .
            $this->element('th', $name) . "\n" .
            $this->element('td', $value) . "\n" .
            $this->end('tr');
    }

    /**
     * Escapes a string for HTML output.
     * @param string $string String to escape
     * @return string
     */
    protected function escape($string)
    {
        $string = HTMLPurifier_Encoder::cleanUTF8($string);
        $string = htmlspecialchars($string, ENT_COMPAT, 'UTF-8');
        return $string;
    }

    /**
     * Takes a list of strings and turns them into a single list
     * @param string[] $array List of strings
     * @param bool $polite Bool whether or not to add an end before the last
     * @return string
     */
    protected function listify($array, $polite = false)
    {
        if (empty($array)) {
            return 'None';
        }
        $ret = '';
        $i = count($array);
        foreach ($array as $value) {
            $i--;
            $ret .= $value;
            if ($i > 0 && !($polite && $i == 1)) {
                $ret .= ', ';
            }
            if ($polite && $i == 1) {
                $ret .= 'and ';
            }
        }
        return $ret;
    }

    /**
     * Retrieves the class of an object without prefixes, as well as metadata
     * @param object $obj Object to determine class of
     * @param string $sec_prefix Further prefix to remove
     * @return string
     */
    protected function getClass($obj, $sec_prefix = '')
    {
        static $five = null;
        if ($five === null) {
            $five = version_compare(PHP_VERSION, '5', '>=');
        }
        $prefix = 'HTMLPurifier_' . $sec_prefix;
        if (!$five) {
            $prefix = strtolower($prefix);
        }
        $class = str_replace($prefix, '', get_class($obj));
        $lclass = strtolower($class);
        $class .= '(';
        switch ($lclass) {
            case 'enum':
                $values = array();
                foreach ($obj->valid_values as $value => $bool) {
                    $values[] = $value;
                }
                $class .= implode(', ', $values);
                break;
            case 'css_composite':
                $values = array();
                foreach ($obj->defs as $def) {
                    $values[] = $this->getClass($def, $sec_prefix);
                }
                $class .= implode(', ', $values);
                break;
            case 'css_multiple':
                $class .= $this->getClass($obj->single, $sec_prefix) . ', ';
                $class .= $obj->max;
                break;
            case 'css_denyelementdecorator':
                $class .= $this->getClass($obj->def, $sec_prefix) . ', ';
                $class .= $obj->element;
                break;
            case 'css_importantdecorator':
                $class .= $this->getClass($obj->def, $sec_prefix);
                if ($obj->allow) {
                    $class .= ', !important';
                }
                break;
        }
        $class .= ')';
        return $class;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/ErrorCollector.php000064400000016711151213256050017421 0ustar00<?php

/**
 * Error collection class that enables HTML Purifier to report HTML
 * problems back to the user
 */
class HTMLPurifier_ErrorCollector
{

    /**
     * Identifiers for the returned error array. These are purposely numeric
     * so list() can be used.
     */
    const LINENO   = 0;
    const SEVERITY = 1;
    const MESSAGE  = 2;
    const CHILDREN = 3;

    /**
     * @type array
     */
    protected $errors;

    /**
     * @type array
     */
    protected $_current;

    /**
     * @type array
     */
    protected $_stacks = array(array());

    /**
     * @type HTMLPurifier_Language
     */
    protected $locale;

    /**
     * @type HTMLPurifier_Generator
     */
    protected $generator;

    /**
     * @type HTMLPurifier_Context
     */
    protected $context;

    /**
     * @type array
     */
    protected $lines = array();

    /**
     * @param HTMLPurifier_Context $context
     */
    public function __construct($context)
    {
        $this->locale    =& $context->get('Locale');
        $this->context   = $context;
        $this->_current  =& $this->_stacks[0];
        $this->errors    =& $this->_stacks[0];
    }

    /**
     * Sends an error message to the collector for later use
     * @param int $severity Error severity, PHP error style (don't use E_USER_)
     * @param string $msg Error message text
     */
    public function send($severity, $msg)
    {
        $args = array();
        if (func_num_args() > 2) {
            $args = func_get_args();
            array_shift($args);
            unset($args[0]);
        }

        $token = $this->context->get('CurrentToken', true);
        $line  = $token ? $token->line : $this->context->get('CurrentLine', true);
        $col   = $token ? $token->col  : $this->context->get('CurrentCol', true);
        $attr  = $this->context->get('CurrentAttr', true);

        // perform special substitutions, also add custom parameters
        $subst = array();
        if (!is_null($token)) {
            $args['CurrentToken'] = $token;
        }
        if (!is_null($attr)) {
            $subst['$CurrentAttr.Name'] = $attr;
            if (isset($token->attr[$attr])) {
                $subst['$CurrentAttr.Value'] = $token->attr[$attr];
            }
        }

        if (empty($args)) {
            $msg = $this->locale->getMessage($msg);
        } else {
            $msg = $this->locale->formatMessage($msg, $args);
        }

        if (!empty($subst)) {
            $msg = strtr($msg, $subst);
        }

        // (numerically indexed)
        $error = array(
            self::LINENO   => $line,
            self::SEVERITY => $severity,
            self::MESSAGE  => $msg,
            self::CHILDREN => array()
        );
        $this->_current[] = $error;

        // NEW CODE BELOW ...
        // Top-level errors are either:
        //  TOKEN type, if $value is set appropriately, or
        //  "syntax" type, if $value is null
        $new_struct = new HTMLPurifier_ErrorStruct();
        $new_struct->type = HTMLPurifier_ErrorStruct::TOKEN;
        if ($token) {
            $new_struct->value = clone $token;
        }
        if (is_int($line) && is_int($col)) {
            if (isset($this->lines[$line][$col])) {
                $struct = $this->lines[$line][$col];
            } else {
                $struct = $this->lines[$line][$col] = $new_struct;
            }
            // These ksorts may present a performance problem
            ksort($this->lines[$line], SORT_NUMERIC);
        } else {
            if (isset($this->lines[-1])) {
                $struct = $this->lines[-1];
            } else {
                $struct = $this->lines[-1] = $new_struct;
            }
        }
        ksort($this->lines, SORT_NUMERIC);

        // Now, check if we need to operate on a lower structure
        if (!empty($attr)) {
            $struct = $struct->getChild(HTMLPurifier_ErrorStruct::ATTR, $attr);
            if (!$struct->value) {
                $struct->value = array($attr, 'PUT VALUE HERE');
            }
        }
        if (!empty($cssprop)) {
            $struct = $struct->getChild(HTMLPurifier_ErrorStruct::CSSPROP, $cssprop);
            if (!$struct->value) {
                // if we tokenize CSS this might be a little more difficult to do
                $struct->value = array($cssprop, 'PUT VALUE HERE');
            }
        }

        // Ok, structs are all setup, now time to register the error
        $struct->addError($severity, $msg);
    }

    /**
     * Retrieves raw error data for custom formatter to use
     */
    public function getRaw()
    {
        return $this->errors;
    }

    /**
     * Default HTML formatting implementation for error messages
     * @param HTMLPurifier_Config $config Configuration, vital for HTML output nature
     * @param array $errors Errors array to display; used for recursion.
     * @return string
     */
    public function getHTMLFormatted($config, $errors = null)
    {
        $ret = array();

        $this->generator = new HTMLPurifier_Generator($config, $this->context);
        if ($errors === null) {
            $errors = $this->errors;
        }

        // 'At line' message needs to be removed

        // generation code for new structure goes here. It needs to be recursive.
        foreach ($this->lines as $line => $col_array) {
            if ($line == -1) {
                continue;
            }
            foreach ($col_array as $col => $struct) {
                $this->_renderStruct($ret, $struct, $line, $col);
            }
        }
        if (isset($this->lines[-1])) {
            $this->_renderStruct($ret, $this->lines[-1]);
        }

        if (empty($errors)) {
            return '<p>' . $this->locale->getMessage('ErrorCollector: No errors') . '</p>';
        } else {
            return '<ul><li>' . implode('</li><li>', $ret) . '</li></ul>';
        }

    }

    private function _renderStruct(&$ret, $struct, $line = null, $col = null)
    {
        $stack = array($struct);
        $context_stack = array(array());
        while ($current = array_pop($stack)) {
            $context = array_pop($context_stack);
            foreach ($current->errors as $error) {
                list($severity, $msg) = $error;
                $string = '';
                $string .= '<div>';
                // W3C uses an icon to indicate the severity of the error.
                $error = $this->locale->getErrorName($severity);
                $string .= "<span class=\"error e$severity\"><strong>$error</strong></span> ";
                if (!is_null($line) && !is_null($col)) {
                    $string .= "<em class=\"location\">Line $line, Column $col: </em> ";
                } else {
                    $string .= '<em class="location">End of Document: </em> ';
                }
                $string .= '<strong class="description">' . $this->generator->escape($msg) . '</strong> ';
                $string .= '</div>';
                // Here, have a marker for the character on the column appropriate.
                // Be sure to clip extremely long lines.
                //$string .= '<pre>';
                //$string .= '';
                //$string .= '</pre>';
                $ret[] = $string;
            }
            foreach ($current->children as $array) {
                $context[] = $current;
                $stack = array_merge($stack, array_reverse($array, true));
                for ($i = count($array); $i > 0; $i--) {
                    $context_stack[] = $context;
                }
            }
        }
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Queue.php000064400000003017151213256050015540 0ustar00<?php

/**
 * A simple array-backed queue, based off of the classic Okasaki
 * persistent amortized queue.  The basic idea is to maintain two
 * stacks: an input stack and an output stack.  When the output
 * stack runs out, reverse the input stack and use it as the output
 * stack.
 *
 * We don't use the SPL implementation because it's only supported
 * on PHP 5.3 and later.
 *
 * Exercise: Prove that push/pop on this queue take amortized O(1) time.
 *
 * Exercise: Extend this queue to be a deque, while preserving amortized
 * O(1) time.  Some care must be taken on rebalancing to avoid quadratic
 * behaviour caused by repeatedly shuffling data from the input stack
 * to the output stack and back.
 */
class HTMLPurifier_Queue {
    private $input;
    private $output;

    public function __construct($input = array()) {
        $this->input = $input;
        $this->output = array();
    }

    /**
     * Shifts an element off the front of the queue.
     */
    public function shift() {
        if (empty($this->output)) {
            $this->output = array_reverse($this->input);
            $this->input = array();
        }
        if (empty($this->output)) {
            return NULL;
        }
        return array_pop($this->output);
    }

    /**
     * Pushes an element onto the front of the queue.
     */
    public function push($x) {
        array_push($this->input, $x);
    }

    /**
     * Checks if it's empty.
     */
    public function isEmpty() {
        return empty($this->input) && empty($this->output);
    }
}
lib/htmlpurifier/library/HTMLPurifier/StringHashParser.php000064400000007071151213256050017707 0ustar00<?php

/**
 * Parses string hash files. File format is as such:
 *
 *      DefaultKeyValue
 *      KEY: Value
 *      KEY2: Value2
 *      --MULTILINE-KEY--
 *      Multiline
 *      value.
 *
 * Which would output something similar to:
 *
 *      array(
 *          'ID' => 'DefaultKeyValue',
 *          'KEY' => 'Value',
 *          'KEY2' => 'Value2',
 *          'MULTILINE-KEY' => "Multiline\nvalue.\n",
 *      )
 *
 * We use this as an easy to use file-format for configuration schema
 * files, but the class itself is usage agnostic.
 *
 * You can use ---- to forcibly terminate parsing of a single string-hash;
 * this marker is used in multi string-hashes to delimit boundaries.
 */
class HTMLPurifier_StringHashParser
{

    /**
     * @type string
     */
    public $default = 'ID';

    /**
     * Parses a file that contains a single string-hash.
     * @param string $file
     * @return array
     */
    public function parseFile($file)
    {
        if (!file_exists($file)) {
            return false;
        }
        $fh = fopen($file, 'r');
        if (!$fh) {
            return false;
        }
        $ret = $this->parseHandle($fh);
        fclose($fh);
        return $ret;
    }

    /**
     * Parses a file that contains multiple string-hashes delimited by '----'
     * @param string $file
     * @return array
     */
    public function parseMultiFile($file)
    {
        if (!file_exists($file)) {
            return false;
        }
        $ret = array();
        $fh = fopen($file, 'r');
        if (!$fh) {
            return false;
        }
        while (!feof($fh)) {
            $ret[] = $this->parseHandle($fh);
        }
        fclose($fh);
        return $ret;
    }

    /**
     * Internal parser that acepts a file handle.
     * @note While it's possible to simulate in-memory parsing by using
     *       custom stream wrappers, if such a use-case arises we should
     *       factor out the file handle into its own class.
     * @param resource $fh File handle with pointer at start of valid string-hash
     *            block.
     * @return array
     */
    protected function parseHandle($fh)
    {
        $state   = false;
        $single  = false;
        $ret     = array();
        do {
            $line = fgets($fh);
            if ($line === false) {
                break;
            }
            $line = rtrim($line, "\n\r");
            if (!$state && $line === '') {
                continue;
            }
            if ($line === '----') {
                break;
            }
            if (strncmp('--#', $line, 3) === 0) {
                // Comment
                continue;
            } elseif (strncmp('--', $line, 2) === 0) {
                // Multiline declaration
                $state = trim($line, '- ');
                if (!isset($ret[$state])) {
                    $ret[$state] = '';
                }
                continue;
            } elseif (!$state) {
                $single = true;
                if (strpos($line, ':') !== false) {
                    // Single-line declaration
                    list($state, $line) = explode(':', $line, 2);
                    $line = trim($line);
                } else {
                    // Use default declaration
                    $state  = $this->default;
                }
            }
            if ($single) {
                $ret[$state] = $line;
                $single = false;
                $state  = false;
            } else {
                $ret[$state] .= "$line\n";
            }
        } while (!feof($fh));
        return $ret;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/LanguageFactory.php000064400000014732151213256050017535 0ustar00<?php

/**
 * Class responsible for generating HTMLPurifier_Language objects, managing
 * caching and fallbacks.
 * @note Thanks to MediaWiki for the general logic, although this version
 *       has been entirely rewritten
 * @todo Serialized cache for languages
 */
class HTMLPurifier_LanguageFactory
{

    /**
     * Cache of language code information used to load HTMLPurifier_Language objects.
     * Structure is: $factory->cache[$language_code][$key] = $value
     * @type array
     */
    public $cache;

    /**
     * Valid keys in the HTMLPurifier_Language object. Designates which
     * variables to slurp out of a message file.
     * @type array
     */
    public $keys = array('fallback', 'messages', 'errorNames');

    /**
     * Instance to validate language codes.
     * @type HTMLPurifier_AttrDef_Lang
     *
     */
    protected $validator;

    /**
     * Cached copy of dirname(__FILE__), directory of current file without
     * trailing slash.
     * @type string
     */
    protected $dir;

    /**
     * Keys whose contents are a hash map and can be merged.
     * @type array
     */
    protected $mergeable_keys_map = array('messages' => true, 'errorNames' => true);

    /**
     * Keys whose contents are a list and can be merged.
     * @value array lookup
     */
    protected $mergeable_keys_list = array();

    /**
     * Retrieve sole instance of the factory.
     * @param HTMLPurifier_LanguageFactory $prototype Optional prototype to overload sole instance with,
     *                   or bool true to reset to default factory.
     * @return HTMLPurifier_LanguageFactory
     */
    public static function instance($prototype = null)
    {
        static $instance = null;
        if ($prototype !== null) {
            $instance = $prototype;
        } elseif ($instance === null || $prototype == true) {
            $instance = new HTMLPurifier_LanguageFactory();
            $instance->setup();
        }
        return $instance;
    }

    /**
     * Sets up the singleton, much like a constructor
     * @note Prevents people from getting this outside of the singleton
     */
    public function setup()
    {
        $this->validator = new HTMLPurifier_AttrDef_Lang();
        $this->dir = HTMLPURIFIER_PREFIX . '/HTMLPurifier';
    }

    /**
     * Creates a language object, handles class fallbacks
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @param bool|string $code Code to override configuration with. Private parameter.
     * @return HTMLPurifier_Language
     */
    public function create($config, $context, $code = false)
    {
        // validate language code
        if ($code === false) {
            $code = $this->validator->validate(
                $config->get('Core.Language'),
                $config,
                $context
            );
        } else {
            $code = $this->validator->validate($code, $config, $context);
        }
        if ($code === false) {
            $code = 'en'; // malformed code becomes English
        }

        $pcode = str_replace('-', '_', $code); // make valid PHP classname
        static $depth = 0; // recursion protection

        if ($code == 'en') {
            $lang = new HTMLPurifier_Language($config, $context);
        } else {
            $class = 'HTMLPurifier_Language_' . $pcode;
            $file  = $this->dir . '/Language/classes/' . $code . '.php';
            if (file_exists($file) || class_exists($class, false)) {
                $lang = new $class($config, $context);
            } else {
                // Go fallback
                $raw_fallback = $this->getFallbackFor($code);
                $fallback = $raw_fallback ? $raw_fallback : 'en';
                $depth++;
                $lang = $this->create($config, $context, $fallback);
                if (!$raw_fallback) {
                    $lang->error = true;
                }
                $depth--;
            }
        }
        $lang->code = $code;
        return $lang;
    }

    /**
     * Returns the fallback language for language
     * @note Loads the original language into cache
     * @param string $code language code
     * @return string|bool
     */
    public function getFallbackFor($code)
    {
        $this->loadLanguage($code);
        return $this->cache[$code]['fallback'];
    }

    /**
     * Loads language into the cache, handles message file and fallbacks
     * @param string $code language code
     */
    public function loadLanguage($code)
    {
        static $languages_seen = array(); // recursion guard

        // abort if we've already loaded it
        if (isset($this->cache[$code])) {
            return;
        }

        // generate filename
        $filename = $this->dir . '/Language/messages/' . $code . '.php';

        // default fallback : may be overwritten by the ensuing include
        $fallback = ($code != 'en') ? 'en' : false;

        // load primary localisation
        if (!file_exists($filename)) {
            // skip the include: will rely solely on fallback
            $filename = $this->dir . '/Language/messages/en.php';
            $cache = array();
        } else {
            include $filename;
            $cache = compact($this->keys);
        }

        // load fallback localisation
        if (!empty($fallback)) {

            // infinite recursion guard
            if (isset($languages_seen[$code])) {
                trigger_error(
                    'Circular fallback reference in language ' .
                    $code,
                    E_USER_ERROR
                );
                $fallback = 'en';
            }
            $language_seen[$code] = true;

            // load the fallback recursively
            $this->loadLanguage($fallback);
            $fallback_cache = $this->cache[$fallback];

            // merge fallback with current language
            foreach ($this->keys as $key) {
                if (isset($cache[$key]) && isset($fallback_cache[$key])) {
                    if (isset($this->mergeable_keys_map[$key])) {
                        $cache[$key] = $cache[$key] + $fallback_cache[$key];
                    } elseif (isset($this->mergeable_keys_list[$key])) {
                        $cache[$key] = array_merge($fallback_cache[$key], $cache[$key]);
                    }
                } else {
                    $cache[$key] = $fallback_cache[$key];
                }
            }
        }

        // save to cache for later retrieval
        $this->cache[$code] = $cache;
        return;
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/Exception.php000064400000000261151213256050016410 0ustar00<?php

/**
 * Global exception class for HTML Purifier; any exceptions we throw
 * are from here.
 */
class HTMLPurifier_Exception extends Exception
{

}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier/VarParser.php000064400000013546151213256050016371 0ustar00<?php

/**
 * Parses string representations into their corresponding native PHP
 * variable type. The base implementation does a simple type-check.
 */
class HTMLPurifier_VarParser
{

    const C_STRING = 1;
    const ISTRING = 2;
    const TEXT = 3;
    const ITEXT = 4;
    const C_INT = 5;
    const C_FLOAT = 6;
    const C_BOOL = 7;
    const LOOKUP = 8;
    const ALIST = 9;
    const HASH = 10;
    const C_MIXED = 11;

    /**
     * Lookup table of allowed types. Mainly for backwards compatibility, but
     * also convenient for transforming string type names to the integer constants.
     */
    public static $types = array(
        'string' => self::C_STRING,
        'istring' => self::ISTRING,
        'text' => self::TEXT,
        'itext' => self::ITEXT,
        'int' => self::C_INT,
        'float' => self::C_FLOAT,
        'bool' => self::C_BOOL,
        'lookup' => self::LOOKUP,
        'list' => self::ALIST,
        'hash' => self::HASH,
        'mixed' => self::C_MIXED
    );

    /**
     * Lookup table of types that are string, and can have aliases or
     * allowed value lists.
     */
    public static $stringTypes = array(
        self::C_STRING => true,
        self::ISTRING => true,
        self::TEXT => true,
        self::ITEXT => true,
    );

    /**
     * Validate a variable according to type.
     * It may return NULL as a valid type if $allow_null is true.
     *
     * @param mixed $var Variable to validate
     * @param int $type Type of variable, see HTMLPurifier_VarParser->types
     * @param bool $allow_null Whether or not to permit null as a value
     * @return string Validated and type-coerced variable
     * @throws HTMLPurifier_VarParserException
     */
    final public function parse($var, $type, $allow_null = false)
    {
        if (is_string($type)) {
            if (!isset(HTMLPurifier_VarParser::$types[$type])) {
                throw new HTMLPurifier_VarParserException("Invalid type '$type'");
            } else {
                $type = HTMLPurifier_VarParser::$types[$type];
            }
        }
        $var = $this->parseImplementation($var, $type, $allow_null);
        if ($allow_null && $var === null) {
            return null;
        }
        // These are basic checks, to make sure nothing horribly wrong
        // happened in our implementations.
        switch ($type) {
            case (self::C_STRING):
            case (self::ISTRING):
            case (self::TEXT):
            case (self::ITEXT):
                if (!is_string($var)) {
                    break;
                }
                if ($type == self::ISTRING || $type == self::ITEXT) {
                    $var = strtolower($var);
                }
                return $var;
            case (self::C_INT):
                if (!is_int($var)) {
                    break;
                }
                return $var;
            case (self::C_FLOAT):
                if (!is_float($var)) {
                    break;
                }
                return $var;
            case (self::C_BOOL):
                if (!is_bool($var)) {
                    break;
                }
                return $var;
            case (self::LOOKUP):
            case (self::ALIST):
            case (self::HASH):
                if (!is_array($var)) {
                    break;
                }
                if ($type === self::LOOKUP) {
                    foreach ($var as $k) {
                        if ($k !== true) {
                            $this->error('Lookup table contains value other than true');
                        }
                    }
                } elseif ($type === self::ALIST) {
                    $keys = array_keys($var);
                    if (array_keys($keys) !== $keys) {
                        $this->error('Indices for list are not uniform');
                    }
                }
                return $var;
            case (self::C_MIXED):
                return $var;
            default:
                $this->errorInconsistent(get_class($this), $type);
        }
        $this->errorGeneric($var, $type);
    }

    /**
     * Actually implements the parsing. Base implementation does not
     * do anything to $var. Subclasses should overload this!
     * @param mixed $var
     * @param int $type
     * @param bool $allow_null
     * @return string
     */
    protected function parseImplementation($var, $type, $allow_null)
    {
        return $var;
    }

    /**
     * Throws an exception.
     * @throws HTMLPurifier_VarParserException
     */
    protected function error($msg)
    {
        throw new HTMLPurifier_VarParserException($msg);
    }

    /**
     * Throws an inconsistency exception.
     * @note This should not ever be called. It would be called if we
     *       extend the allowed values of HTMLPurifier_VarParser without
     *       updating subclasses.
     * @param string $class
     * @param int $type
     * @throws HTMLPurifier_Exception
     */
    protected function errorInconsistent($class, $type)
    {
        throw new HTMLPurifier_Exception(
            "Inconsistency in $class: " . HTMLPurifier_VarParser::getTypeName($type) .
            " not implemented"
        );
    }

    /**
     * Generic error for if a type didn't work.
     * @param mixed $var
     * @param int $type
     */
    protected function errorGeneric($var, $type)
    {
        $vtype = gettype($var);
        $this->error("Expected type " . HTMLPurifier_VarParser::getTypeName($type) . ", got $vtype");
    }

    /**
     * @param int $type
     * @return string
     */
    public static function getTypeName($type)
    {
        static $lookup;
        if (!$lookup) {
            // Lazy load the alternative lookup table
            $lookup = array_flip(HTMLPurifier_VarParser::$types);
        }
        if (!isset($lookup[$type])) {
            return 'unknown';
        }
        return $lookup[$type];
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.func.php000064400000001100151213256050015375 0ustar00<?php

/**
 * @file
 * Defines a function wrapper for HTML Purifier for quick use.
 * @note ''HTMLPurifier()'' is NOT the same as ''new HTMLPurifier()''
 */

/**
 * Purify HTML.
 * @param string $html String HTML to purify
 * @param mixed $config Configuration to use, can be any value accepted by
 *        HTMLPurifier_Config::create()
 * @return string
 */
function HTMLPurifier($html, $config = null)
{
    static $purifier = false;
    if (!$purifier) {
        $purifier = new HTMLPurifier();
    }
    return $purifier->purify($html, $config);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.php000064400000023713151213256050014461 0ustar00<?php

/*! @mainpage
 *
 * HTML Purifier is an HTML filter that will take an arbitrary snippet of
 * HTML and rigorously test, validate and filter it into a version that
 * is safe for output onto webpages. It achieves this by:
 *
 *  -# Lexing (parsing into tokens) the document,
 *  -# Executing various strategies on the tokens:
 *      -# Removing all elements not in the whitelist,
 *      -# Making the tokens well-formed,
 *      -# Fixing the nesting of the nodes, and
 *      -# Validating attributes of the nodes; and
 *  -# Generating HTML from the purified tokens.
 *
 * However, most users will only need to interface with the HTMLPurifier
 * and HTMLPurifier_Config.
 */

/*
    HTML Purifier 4.13.0 - Standards Compliant HTML Filtering
    Copyright (C) 2006-2008 Edward Z. Yang

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library 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
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

/**
 * Facade that coordinates HTML Purifier's subsystems in order to purify HTML.
 *
 * @note There are several points in which configuration can be specified
 *       for HTML Purifier.  The precedence of these (from lowest to
 *       highest) is as follows:
 *          -# Instance: new HTMLPurifier($config)
 *          -# Invocation: purify($html, $config)
 *       These configurations are entirely independent of each other and
 *       are *not* merged (this behavior may change in the future).
 *
 * @todo We need an easier way to inject strategies using the configuration
 *       object.
 */
class HTMLPurifier
{

    /**
     * Version of HTML Purifier.
     * @type string
     */
    public $version = '4.13.0';

    /**
     * Constant with version of HTML Purifier.
     */
    const VERSION = '4.13.0';

    /**
     * Global configuration object.
     * @type HTMLPurifier_Config
     */
    public $config;

    /**
     * Array of extra filter objects to run on HTML,
     * for backwards compatibility.
     * @type HTMLPurifier_Filter[]
     */
    private $filters = array();

    /**
     * Single instance of HTML Purifier.
     * @type HTMLPurifier
     */
    private static $instance;

    /**
     * @type HTMLPurifier_Strategy_Core
     */
    protected $strategy;

    /**
     * @type HTMLPurifier_Generator
     */
    protected $generator;

    /**
     * Resultant context of last run purification.
     * Is an array of contexts if the last called method was purifyArray().
     * @type HTMLPurifier_Context
     */
    public $context;

    /**
     * Initializes the purifier.
     *
     * @param HTMLPurifier_Config|mixed $config Optional HTMLPurifier_Config object
     *                for all instances of the purifier, if omitted, a default
     *                configuration is supplied (which can be overridden on a
     *                per-use basis).
     *                The parameter can also be any type that
     *                HTMLPurifier_Config::create() supports.
     */
    public function __construct($config = null)
    {
        $this->config = HTMLPurifier_Config::create($config);
        $this->strategy = new HTMLPurifier_Strategy_Core();
    }

    /**
     * Adds a filter to process the output. First come first serve
     *
     * @param HTMLPurifier_Filter $filter HTMLPurifier_Filter object
     */
    public function addFilter($filter)
    {
        trigger_error(
            'HTMLPurifier->addFilter() is deprecated, use configuration directives' .
            ' in the Filter namespace or Filter.Custom',
            E_USER_WARNING
        );
        $this->filters[] = $filter;
    }

    /**
     * Filters an HTML snippet/document to be XSS-free and standards-compliant.
     *
     * @param string $html String of HTML to purify
     * @param HTMLPurifier_Config $config Config object for this operation,
     *                if omitted, defaults to the config object specified during this
     *                object's construction. The parameter can also be any type
     *                that HTMLPurifier_Config::create() supports.
     *
     * @return string Purified HTML
     */
    public function purify($html, $config = null)
    {
        // :TODO: make the config merge in, instead of replace
        $config = $config ? HTMLPurifier_Config::create($config) : $this->config;

        // implementation is partially environment dependant, partially
        // configuration dependant
        $lexer = HTMLPurifier_Lexer::create($config);

        $context = new HTMLPurifier_Context();

        // setup HTML generator
        $this->generator = new HTMLPurifier_Generator($config, $context);
        $context->register('Generator', $this->generator);

        // set up global context variables
        if ($config->get('Core.CollectErrors')) {
            // may get moved out if other facilities use it
            $language_factory = HTMLPurifier_LanguageFactory::instance();
            $language = $language_factory->create($config, $context);
            $context->register('Locale', $language);

            $error_collector = new HTMLPurifier_ErrorCollector($context);
            $context->register('ErrorCollector', $error_collector);
        }

        // setup id_accumulator context, necessary due to the fact that
        // AttrValidator can be called from many places
        $id_accumulator = HTMLPurifier_IDAccumulator::build($config, $context);
        $context->register('IDAccumulator', $id_accumulator);

        $html = HTMLPurifier_Encoder::convertToUTF8($html, $config, $context);

        // setup filters
        $filter_flags = $config->getBatch('Filter');
        $custom_filters = $filter_flags['Custom'];
        unset($filter_flags['Custom']);
        $filters = array();
        foreach ($filter_flags as $filter => $flag) {
            if (!$flag) {
                continue;
            }
            if (strpos($filter, '.') !== false) {
                continue;
            }
            $class = "HTMLPurifier_Filter_$filter";
            $filters[] = new $class;
        }
        foreach ($custom_filters as $filter) {
            // maybe "HTMLPurifier_Filter_$filter", but be consistent with AutoFormat
            $filters[] = $filter;
        }
        $filters = array_merge($filters, $this->filters);
        // maybe prepare(), but later

        for ($i = 0, $filter_size = count($filters); $i < $filter_size; $i++) {
            $html = $filters[$i]->preFilter($html, $config, $context);
        }

        // purified HTML
        $html =
            $this->generator->generateFromTokens(
                // list of tokens
                $this->strategy->execute(
                    // list of un-purified tokens
                    $lexer->tokenizeHTML(
                        // un-purified HTML
                        $html,
                        $config,
                        $context
                    ),
                    $config,
                    $context
                )
            );

        for ($i = $filter_size - 1; $i >= 0; $i--) {
            $html = $filters[$i]->postFilter($html, $config, $context);
        }

        $html = HTMLPurifier_Encoder::convertFromUTF8($html, $config, $context);
        $this->context =& $context;
        return $html;
    }

    /**
     * Filters an array of HTML snippets
     *
     * @param string[] $array_of_html Array of html snippets
     * @param HTMLPurifier_Config $config Optional config object for this operation.
     *                See HTMLPurifier::purify() for more details.
     *
     * @return string[] Array of purified HTML
     */
    public function purifyArray($array_of_html, $config = null)
    {
        $context_array = array();
        $array = array();
        foreach($array_of_html as $key=>$value){
            if (is_array($value)) {
                $array[$key] = $this->purifyArray($value, $config);
            } else {
                $array[$key] = $this->purify($value, $config);
            }
            $context_array[$key] = $this->context;
        }
        $this->context = $context_array;
        return $array;
    }

    /**
     * Singleton for enforcing just one HTML Purifier in your system
     *
     * @param HTMLPurifier|HTMLPurifier_Config $prototype Optional prototype
     *                   HTMLPurifier instance to overload singleton with,
     *                   or HTMLPurifier_Config instance to configure the
     *                   generated version with.
     *
     * @return HTMLPurifier
     */
    public static function instance($prototype = null)
    {
        if (!self::$instance || $prototype) {
            if ($prototype instanceof HTMLPurifier) {
                self::$instance = $prototype;
            } elseif ($prototype) {
                self::$instance = new HTMLPurifier($prototype);
            } else {
                self::$instance = new HTMLPurifier();
            }
        }
        return self::$instance;
    }

    /**
     * Singleton for enforcing just one HTML Purifier in your system
     *
     * @param HTMLPurifier|HTMLPurifier_Config $prototype Optional prototype
     *                   HTMLPurifier instance to overload singleton with,
     *                   or HTMLPurifier_Config instance to configure the
     *                   generated version with.
     *
     * @return HTMLPurifier
     * @note Backwards compatibility, see instance()
     */
    public static function getInstance($prototype = null)
    {
        return HTMLPurifier::instance($prototype);
    }
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.includes.php000064400000024424151213256050016266 0ustar00<?php

/**
 * @file
 * This file was auto-generated by generate-includes.php and includes all of
 * the core files required by HTML Purifier. Use this if performance is a
 * primary concern and you are using an opcode cache. PLEASE DO NOT EDIT THIS
 * FILE, changes will be overwritten the next time the script is run.
 *
 * @version 4.13.0
 *
 * @warning
 *      You must *not* include any other HTML Purifier files before this file,
 *      because 'require' not 'require_once' is used.
 *
 * @warning
 *      This file requires that the include path contains the HTML Purifier
 *      library directory; this is not auto-set.
 */

require 'HTMLPurifier.php';
require 'HTMLPurifier/Arborize.php';
require 'HTMLPurifier/AttrCollections.php';
require 'HTMLPurifier/AttrDef.php';
require 'HTMLPurifier/AttrTransform.php';
require 'HTMLPurifier/AttrTypes.php';
require 'HTMLPurifier/AttrValidator.php';
require 'HTMLPurifier/Bootstrap.php';
require 'HTMLPurifier/Definition.php';
require 'HTMLPurifier/CSSDefinition.php';
require 'HTMLPurifier/ChildDef.php';
require 'HTMLPurifier/Config.php';
require 'HTMLPurifier/ConfigSchema.php';
require 'HTMLPurifier/ContentSets.php';
require 'HTMLPurifier/Context.php';
require 'HTMLPurifier/DefinitionCache.php';
require 'HTMLPurifier/DefinitionCacheFactory.php';
require 'HTMLPurifier/Doctype.php';
require 'HTMLPurifier/DoctypeRegistry.php';
require 'HTMLPurifier/ElementDef.php';
require 'HTMLPurifier/Encoder.php';
require 'HTMLPurifier/EntityLookup.php';
require 'HTMLPurifier/EntityParser.php';
require 'HTMLPurifier/ErrorCollector.php';
require 'HTMLPurifier/ErrorStruct.php';
require 'HTMLPurifier/Exception.php';
require 'HTMLPurifier/Filter.php';
require 'HTMLPurifier/Generator.php';
require 'HTMLPurifier/HTMLDefinition.php';
require 'HTMLPurifier/HTMLModule.php';
require 'HTMLPurifier/HTMLModuleManager.php';
require 'HTMLPurifier/IDAccumulator.php';
require 'HTMLPurifier/Injector.php';
require 'HTMLPurifier/Language.php';
require 'HTMLPurifier/LanguageFactory.php';
require 'HTMLPurifier/Length.php';
require 'HTMLPurifier/Lexer.php';
require 'HTMLPurifier/Node.php';
require 'HTMLPurifier/PercentEncoder.php';
require 'HTMLPurifier/PropertyList.php';
require 'HTMLPurifier/PropertyListIterator.php';
require 'HTMLPurifier/Queue.php';
require 'HTMLPurifier/Strategy.php';
require 'HTMLPurifier/StringHash.php';
require 'HTMLPurifier/StringHashParser.php';
require 'HTMLPurifier/TagTransform.php';
require 'HTMLPurifier/Token.php';
require 'HTMLPurifier/TokenFactory.php';
require 'HTMLPurifier/URI.php';
require 'HTMLPurifier/URIDefinition.php';
require 'HTMLPurifier/URIFilter.php';
require 'HTMLPurifier/URIParser.php';
require 'HTMLPurifier/URIScheme.php';
require 'HTMLPurifier/URISchemeRegistry.php';
require 'HTMLPurifier/UnitConverter.php';
require 'HTMLPurifier/VarParser.php';
require 'HTMLPurifier/VarParserException.php';
require 'HTMLPurifier/Zipper.php';
require 'HTMLPurifier/AttrDef/CSS.php';
require 'HTMLPurifier/AttrDef/Clone.php';
require 'HTMLPurifier/AttrDef/Enum.php';
require 'HTMLPurifier/AttrDef/Integer.php';
require 'HTMLPurifier/AttrDef/Lang.php';
require 'HTMLPurifier/AttrDef/Switch.php';
require 'HTMLPurifier/AttrDef/Text.php';
require 'HTMLPurifier/AttrDef/URI.php';
require 'HTMLPurifier/AttrDef/CSS/Number.php';
require 'HTMLPurifier/AttrDef/CSS/AlphaValue.php';
require 'HTMLPurifier/AttrDef/CSS/Background.php';
require 'HTMLPurifier/AttrDef/CSS/BackgroundPosition.php';
require 'HTMLPurifier/AttrDef/CSS/Border.php';
require 'HTMLPurifier/AttrDef/CSS/Color.php';
require 'HTMLPurifier/AttrDef/CSS/Composite.php';
require 'HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php';
require 'HTMLPurifier/AttrDef/CSS/Filter.php';
require 'HTMLPurifier/AttrDef/CSS/Font.php';
require 'HTMLPurifier/AttrDef/CSS/FontFamily.php';
require 'HTMLPurifier/AttrDef/CSS/Ident.php';
require 'HTMLPurifier/AttrDef/CSS/ImportantDecorator.php';
require 'HTMLPurifier/AttrDef/CSS/Length.php';
require 'HTMLPurifier/AttrDef/CSS/ListStyle.php';
require 'HTMLPurifier/AttrDef/CSS/Multiple.php';
require 'HTMLPurifier/AttrDef/CSS/Percentage.php';
require 'HTMLPurifier/AttrDef/CSS/TextDecoration.php';
require 'HTMLPurifier/AttrDef/CSS/URI.php';
require 'HTMLPurifier/AttrDef/HTML/Bool.php';
require 'HTMLPurifier/AttrDef/HTML/Nmtokens.php';
require 'HTMLPurifier/AttrDef/HTML/Class.php';
require 'HTMLPurifier/AttrDef/HTML/Color.php';
require 'HTMLPurifier/AttrDef/HTML/FrameTarget.php';
require 'HTMLPurifier/AttrDef/HTML/ID.php';
require 'HTMLPurifier/AttrDef/HTML/Pixels.php';
require 'HTMLPurifier/AttrDef/HTML/Length.php';
require 'HTMLPurifier/AttrDef/HTML/LinkTypes.php';
require 'HTMLPurifier/AttrDef/HTML/MultiLength.php';
require 'HTMLPurifier/AttrDef/URI/Email.php';
require 'HTMLPurifier/AttrDef/URI/Host.php';
require 'HTMLPurifier/AttrDef/URI/IPv4.php';
require 'HTMLPurifier/AttrDef/URI/IPv6.php';
require 'HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php';
require 'HTMLPurifier/AttrTransform/Background.php';
require 'HTMLPurifier/AttrTransform/BdoDir.php';
require 'HTMLPurifier/AttrTransform/BgColor.php';
require 'HTMLPurifier/AttrTransform/BoolToCSS.php';
require 'HTMLPurifier/AttrTransform/Border.php';
require 'HTMLPurifier/AttrTransform/EnumToCSS.php';
require 'HTMLPurifier/AttrTransform/ImgRequired.php';
require 'HTMLPurifier/AttrTransform/ImgSpace.php';
require 'HTMLPurifier/AttrTransform/Input.php';
require 'HTMLPurifier/AttrTransform/Lang.php';
require 'HTMLPurifier/AttrTransform/Length.php';
require 'HTMLPurifier/AttrTransform/Name.php';
require 'HTMLPurifier/AttrTransform/NameSync.php';
require 'HTMLPurifier/AttrTransform/Nofollow.php';
require 'HTMLPurifier/AttrTransform/SafeEmbed.php';
require 'HTMLPurifier/AttrTransform/SafeObject.php';
require 'HTMLPurifier/AttrTransform/SafeParam.php';
require 'HTMLPurifier/AttrTransform/ScriptRequired.php';
require 'HTMLPurifier/AttrTransform/TargetBlank.php';
require 'HTMLPurifier/AttrTransform/TargetNoopener.php';
require 'HTMLPurifier/AttrTransform/TargetNoreferrer.php';
require 'HTMLPurifier/AttrTransform/Textarea.php';
require 'HTMLPurifier/ChildDef/Chameleon.php';
require 'HTMLPurifier/ChildDef/Custom.php';
require 'HTMLPurifier/ChildDef/Empty.php';
require 'HTMLPurifier/ChildDef/List.php';
require 'HTMLPurifier/ChildDef/Required.php';
require 'HTMLPurifier/ChildDef/Optional.php';
require 'HTMLPurifier/ChildDef/StrictBlockquote.php';
require 'HTMLPurifier/ChildDef/Table.php';
require 'HTMLPurifier/DefinitionCache/Decorator.php';
require 'HTMLPurifier/DefinitionCache/Null.php';
require 'HTMLPurifier/DefinitionCache/Serializer.php';
require 'HTMLPurifier/DefinitionCache/Decorator/Cleanup.php';
require 'HTMLPurifier/DefinitionCache/Decorator/Memory.php';
require 'HTMLPurifier/HTMLModule/Bdo.php';
require 'HTMLPurifier/HTMLModule/CommonAttributes.php';
require 'HTMLPurifier/HTMLModule/Edit.php';
require 'HTMLPurifier/HTMLModule/Forms.php';
require 'HTMLPurifier/HTMLModule/Hypertext.php';
require 'HTMLPurifier/HTMLModule/Iframe.php';
require 'HTMLPurifier/HTMLModule/Image.php';
require 'HTMLPurifier/HTMLModule/Legacy.php';
require 'HTMLPurifier/HTMLModule/List.php';
require 'HTMLPurifier/HTMLModule/Name.php';
require 'HTMLPurifier/HTMLModule/Nofollow.php';
require 'HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php';
require 'HTMLPurifier/HTMLModule/Object.php';
require 'HTMLPurifier/HTMLModule/Presentation.php';
require 'HTMLPurifier/HTMLModule/Proprietary.php';
require 'HTMLPurifier/HTMLModule/Ruby.php';
require 'HTMLPurifier/HTMLModule/SafeEmbed.php';
require 'HTMLPurifier/HTMLModule/SafeObject.php';
require 'HTMLPurifier/HTMLModule/SafeScripting.php';
require 'HTMLPurifier/HTMLModule/Scripting.php';
require 'HTMLPurifier/HTMLModule/StyleAttribute.php';
require 'HTMLPurifier/HTMLModule/Tables.php';
require 'HTMLPurifier/HTMLModule/Target.php';
require 'HTMLPurifier/HTMLModule/TargetBlank.php';
require 'HTMLPurifier/HTMLModule/TargetNoopener.php';
require 'HTMLPurifier/HTMLModule/TargetNoreferrer.php';
require 'HTMLPurifier/HTMLModule/Text.php';
require 'HTMLPurifier/HTMLModule/Tidy.php';
require 'HTMLPurifier/HTMLModule/XMLCommonAttributes.php';
require 'HTMLPurifier/HTMLModule/Tidy/Name.php';
require 'HTMLPurifier/HTMLModule/Tidy/Proprietary.php';
require 'HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php';
require 'HTMLPurifier/HTMLModule/Tidy/Strict.php';
require 'HTMLPurifier/HTMLModule/Tidy/Transitional.php';
require 'HTMLPurifier/HTMLModule/Tidy/XHTML.php';
require 'HTMLPurifier/Injector/AutoParagraph.php';
require 'HTMLPurifier/Injector/DisplayLinkURI.php';
require 'HTMLPurifier/Injector/Linkify.php';
require 'HTMLPurifier/Injector/PurifierLinkify.php';
require 'HTMLPurifier/Injector/RemoveEmpty.php';
require 'HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php';
require 'HTMLPurifier/Injector/SafeObject.php';
require 'HTMLPurifier/Lexer/DOMLex.php';
require 'HTMLPurifier/Lexer/DirectLex.php';
require 'HTMLPurifier/Node/Comment.php';
require 'HTMLPurifier/Node/Element.php';
require 'HTMLPurifier/Node/Text.php';
require 'HTMLPurifier/Strategy/Composite.php';
require 'HTMLPurifier/Strategy/Core.php';
require 'HTMLPurifier/Strategy/FixNesting.php';
require 'HTMLPurifier/Strategy/MakeWellFormed.php';
require 'HTMLPurifier/Strategy/RemoveForeignElements.php';
require 'HTMLPurifier/Strategy/ValidateAttributes.php';
require 'HTMLPurifier/TagTransform/Font.php';
require 'HTMLPurifier/TagTransform/Simple.php';
require 'HTMLPurifier/Token/Comment.php';
require 'HTMLPurifier/Token/Tag.php';
require 'HTMLPurifier/Token/Empty.php';
require 'HTMLPurifier/Token/End.php';
require 'HTMLPurifier/Token/Start.php';
require 'HTMLPurifier/Token/Text.php';
require 'HTMLPurifier/URIFilter/DisableExternal.php';
require 'HTMLPurifier/URIFilter/DisableExternalResources.php';
require 'HTMLPurifier/URIFilter/DisableResources.php';
require 'HTMLPurifier/URIFilter/HostBlacklist.php';
require 'HTMLPurifier/URIFilter/MakeAbsolute.php';
require 'HTMLPurifier/URIFilter/Munge.php';
require 'HTMLPurifier/URIFilter/SafeIframe.php';
require 'HTMLPurifier/URIScheme/data.php';
require 'HTMLPurifier/URIScheme/file.php';
require 'HTMLPurifier/URIScheme/ftp.php';
require 'HTMLPurifier/URIScheme/http.php';
require 'HTMLPurifier/URIScheme/https.php';
require 'HTMLPurifier/URIScheme/mailto.php';
require 'HTMLPurifier/URIScheme/news.php';
require 'HTMLPurifier/URIScheme/nntp.php';
require 'HTMLPurifier/URIScheme/tel.php';
require 'HTMLPurifier/VarParser/Flexible.php';
require 'HTMLPurifier/VarParser/Native.php';
lib/htmlpurifier/library/HTMLPurifier.path.php000064400000000353151213256050015407 0ustar00<?php

/**
 * @file
 * Convenience stub file that adds HTML Purifier's library file to the path
 * without any other side-effects.
 */

set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path() );

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.composer.php000064400000000145151213256050016301 0ustar00<?php
if (!defined('HTMLPURIFIER_PREFIX')) {
    define('HTMLPURIFIER_PREFIX', dirname(__FILE__));
}
lib/htmlpurifier/library/HTMLPurifier.auto.php000064400000000422151213256050015420 0ustar00<?php

/**
 * This is a stub include that automatically configures the include path.
 */

set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path() );
require_once 'HTMLPurifier/Bootstrap.php';
require_once 'HTMLPurifier.autoload.php';

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.autoload-legacy.php000064400000000421151213256050017521 0ustar00<?php

/**
 * @file
 * Legacy autoloader for systems lacking spl_autoload_register
 *
 * Must be separate to prevent deprecation warning on PHP 7.2
 */

function HTMLPurifier__autoload($class)
{
    return HTMLPurifier_Bootstrap::autoload($class);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.autoload.php000064400000001513151213256050016262 0ustar00<?php

/**
 * @file
 * Convenience file that registers autoload handler for HTML Purifier.
 * It also does some sanity checks.
 */

if (function_exists('spl_autoload_register') && function_exists('spl_autoload_unregister')) {
    // We need unregister for our pre-registering functionality
    HTMLPurifier_Bootstrap::registerAutoload();
    if (function_exists('HTMLPurifier__autoload')) {
        // Be polite and ensure that userland autoload gets retained
        spl_autoload_register('HTMLPurifier__autoload');
    }
} elseif (!function_exists('HTMLPurifier__autoload')) {
    require dirname(__FILE__) . '/HTMLPurifier.autoload-legacy.php';
}

if (ini_get('zend.ze1_compatibility_mode')) {
    trigger_error("HTML Purifier is not compatible with zend.ze1_compatibility_mode; please turn it off", E_USER_ERROR);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.kses.php000064400000001633151213256050015422 0ustar00<?php

/**
 * @file
 * Emulation layer for code that used kses(), substituting in HTML Purifier.
 */

require_once dirname(__FILE__) . '/HTMLPurifier.auto.php';

function kses($string, $allowed_html, $allowed_protocols = null)
{
    $config = HTMLPurifier_Config::createDefault();
    $allowed_elements = array();
    $allowed_attributes = array();
    foreach ($allowed_html as $element => $attributes) {
        $allowed_elements[$element] = true;
        foreach ($attributes as $attribute => $x) {
            $allowed_attributes["$element.$attribute"] = true;
        }
    }
    $config->set('HTML.AllowedElements', $allowed_elements);
    $config->set('HTML.AllowedAttributes', $allowed_attributes);
    if ($allowed_protocols !== null) {
        $config->set('URI.AllowedSchemes', $allowed_protocols);
    }
    $purifier = new HTMLPurifier($config);
    return $purifier->purify($string);
}

// vim: et sw=4 sts=4
lib/htmlpurifier/library/HTMLPurifier.safe-includes.php000064400000032303151213256050017175 0ustar00<?php

/**
 * @file
 * This file was auto-generated by generate-includes.php and includes all of
 * the core files required by HTML Purifier. This is a convenience stub that
 * includes all files using dirname(__FILE__) and require_once. PLEASE DO NOT
 * EDIT THIS FILE, changes will be overwritten the next time the script is run.
 *
 * Changes to include_path are not necessary.
 */

$__dir = dirname(__FILE__);

require_once $__dir . '/HTMLPurifier.php';
require_once $__dir . '/HTMLPurifier/Arborize.php';
require_once $__dir . '/HTMLPurifier/AttrCollections.php';
require_once $__dir . '/HTMLPurifier/AttrDef.php';
require_once $__dir . '/HTMLPurifier/AttrTransform.php';
require_once $__dir . '/HTMLPurifier/AttrTypes.php';
require_once $__dir . '/HTMLPurifier/AttrValidator.php';
require_once $__dir . '/HTMLPurifier/Bootstrap.php';
require_once $__dir . '/HTMLPurifier/Definition.php';
require_once $__dir . '/HTMLPurifier/CSSDefinition.php';
require_once $__dir . '/HTMLPurifier/ChildDef.php';
require_once $__dir . '/HTMLPurifier/Config.php';
require_once $__dir . '/HTMLPurifier/ConfigSchema.php';
require_once $__dir . '/HTMLPurifier/ContentSets.php';
require_once $__dir . '/HTMLPurifier/Context.php';
require_once $__dir . '/HTMLPurifier/DefinitionCache.php';
require_once $__dir . '/HTMLPurifier/DefinitionCacheFactory.php';
require_once $__dir . '/HTMLPurifier/Doctype.php';
require_once $__dir . '/HTMLPurifier/DoctypeRegistry.php';
require_once $__dir . '/HTMLPurifier/ElementDef.php';
require_once $__dir . '/HTMLPurifier/Encoder.php';
require_once $__dir . '/HTMLPurifier/EntityLookup.php';
require_once $__dir . '/HTMLPurifier/EntityParser.php';
require_once $__dir . '/HTMLPurifier/ErrorCollector.php';
require_once $__dir . '/HTMLPurifier/ErrorStruct.php';
require_once $__dir . '/HTMLPurifier/Exception.php';
require_once $__dir . '/HTMLPurifier/Filter.php';
require_once $__dir . '/HTMLPurifier/Generator.php';
require_once $__dir . '/HTMLPurifier/HTMLDefinition.php';
require_once $__dir . '/HTMLPurifier/HTMLModule.php';
require_once $__dir . '/HTMLPurifier/HTMLModuleManager.php';
require_once $__dir . '/HTMLPurifier/IDAccumulator.php';
require_once $__dir . '/HTMLPurifier/Injector.php';
require_once $__dir . '/HTMLPurifier/Language.php';
require_once $__dir . '/HTMLPurifier/LanguageFactory.php';
require_once $__dir . '/HTMLPurifier/Length.php';
require_once $__dir . '/HTMLPurifier/Lexer.php';
require_once $__dir . '/HTMLPurifier/Node.php';
require_once $__dir . '/HTMLPurifier/PercentEncoder.php';
require_once $__dir . '/HTMLPurifier/PropertyList.php';
require_once $__dir . '/HTMLPurifier/PropertyListIterator.php';
require_once $__dir . '/HTMLPurifier/Queue.php';
require_once $__dir . '/HTMLPurifier/Strategy.php';
require_once $__dir . '/HTMLPurifier/StringHash.php';
require_once $__dir . '/HTMLPurifier/StringHashParser.php';
require_once $__dir . '/HTMLPurifier/TagTransform.php';
require_once $__dir . '/HTMLPurifier/Token.php';
require_once $__dir . '/HTMLPurifier/TokenFactory.php';
require_once $__dir . '/HTMLPurifier/URI.php';
require_once $__dir . '/HTMLPurifier/URIDefinition.php';
require_once $__dir . '/HTMLPurifier/URIFilter.php';
require_once $__dir . '/HTMLPurifier/URIParser.php';
require_once $__dir . '/HTMLPurifier/URIScheme.php';
require_once $__dir . '/HTMLPurifier/URISchemeRegistry.php';
require_once $__dir . '/HTMLPurifier/UnitConverter.php';
require_once $__dir . '/HTMLPurifier/VarParser.php';
require_once $__dir . '/HTMLPurifier/VarParserException.php';
require_once $__dir . '/HTMLPurifier/Zipper.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS.php';
require_once $__dir . '/HTMLPurifier/AttrDef/Clone.php';
require_once $__dir . '/HTMLPurifier/AttrDef/Enum.php';
require_once $__dir . '/HTMLPurifier/AttrDef/Integer.php';
require_once $__dir . '/HTMLPurifier/AttrDef/Lang.php';
require_once $__dir . '/HTMLPurifier/AttrDef/Switch.php';
require_once $__dir . '/HTMLPurifier/AttrDef/Text.php';
require_once $__dir . '/HTMLPurifier/AttrDef/URI.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Number.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/AlphaValue.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Background.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Border.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Color.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Composite.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Filter.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Font.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/FontFamily.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Ident.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Length.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/ListStyle.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Multiple.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/Percentage.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/TextDecoration.php';
require_once $__dir . '/HTMLPurifier/AttrDef/CSS/URI.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/Bool.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/Nmtokens.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/Class.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/Color.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/FrameTarget.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/ID.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/Pixels.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/Length.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/LinkTypes.php';
require_once $__dir . '/HTMLPurifier/AttrDef/HTML/MultiLength.php';
require_once $__dir . '/HTMLPurifier/AttrDef/URI/Email.php';
require_once $__dir . '/HTMLPurifier/AttrDef/URI/Host.php';
require_once $__dir . '/HTMLPurifier/AttrDef/URI/IPv4.php';
require_once $__dir . '/HTMLPurifier/AttrDef/URI/IPv6.php';
require_once $__dir . '/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Background.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/BdoDir.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/BgColor.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/BoolToCSS.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Border.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/EnumToCSS.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/ImgRequired.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/ImgSpace.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Input.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Lang.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Length.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Name.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/NameSync.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Nofollow.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/SafeEmbed.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/SafeObject.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/SafeParam.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/ScriptRequired.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/TargetBlank.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/TargetNoopener.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/TargetNoreferrer.php';
require_once $__dir . '/HTMLPurifier/AttrTransform/Textarea.php';
require_once $__dir . '/HTMLPurifier/ChildDef/Chameleon.php';
require_once $__dir . '/HTMLPurifier/ChildDef/Custom.php';
require_once $__dir . '/HTMLPurifier/ChildDef/Empty.php';
require_once $__dir . '/HTMLPurifier/ChildDef/List.php';
require_once $__dir . '/HTMLPurifier/ChildDef/Required.php';
require_once $__dir . '/HTMLPurifier/ChildDef/Optional.php';
require_once $__dir . '/HTMLPurifier/ChildDef/StrictBlockquote.php';
require_once $__dir . '/HTMLPurifier/ChildDef/Table.php';
require_once $__dir . '/HTMLPurifier/DefinitionCache/Decorator.php';
require_once $__dir . '/HTMLPurifier/DefinitionCache/Null.php';
require_once $__dir . '/HTMLPurifier/DefinitionCache/Serializer.php';
require_once $__dir . '/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php';
require_once $__dir . '/HTMLPurifier/DefinitionCache/Decorator/Memory.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Bdo.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/CommonAttributes.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Edit.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Forms.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Hypertext.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Iframe.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Image.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Legacy.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/List.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Name.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Nofollow.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Object.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Presentation.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Proprietary.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Ruby.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/SafeEmbed.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/SafeObject.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/SafeScripting.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Scripting.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/StyleAttribute.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tables.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Target.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/TargetBlank.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/TargetNoopener.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/TargetNoreferrer.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Text.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tidy.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/XMLCommonAttributes.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tidy/Name.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tidy/Proprietary.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tidy/Strict.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tidy/Transitional.php';
require_once $__dir . '/HTMLPurifier/HTMLModule/Tidy/XHTML.php';
require_once $__dir . '/HTMLPurifier/Injector/AutoParagraph.php';
require_once $__dir . '/HTMLPurifier/Injector/DisplayLinkURI.php';
require_once $__dir . '/HTMLPurifier/Injector/Linkify.php';
require_once $__dir . '/HTMLPurifier/Injector/PurifierLinkify.php';
require_once $__dir . '/HTMLPurifier/Injector/RemoveEmpty.php';
require_once $__dir . '/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php';
require_once $__dir . '/HTMLPurifier/Injector/SafeObject.php';
require_once $__dir . '/HTMLPurifier/Lexer/DOMLex.php';
require_once $__dir . '/HTMLPurifier/Lexer/DirectLex.php';
require_once $__dir . '/HTMLPurifier/Node/Comment.php';
require_once $__dir . '/HTMLPurifier/Node/Element.php';
require_once $__dir . '/HTMLPurifier/Node/Text.php';
require_once $__dir . '/HTMLPurifier/Strategy/Composite.php';
require_once $__dir . '/HTMLPurifier/Strategy/Core.php';
require_once $__dir . '/HTMLPurifier/Strategy/FixNesting.php';
require_once $__dir . '/HTMLPurifier/Strategy/MakeWellFormed.php';
require_once $__dir . '/HTMLPurifier/Strategy/RemoveForeignElements.php';
require_once $__dir . '/HTMLPurifier/Strategy/ValidateAttributes.php';
require_once $__dir . '/HTMLPurifier/TagTransform/Font.php';
require_once $__dir . '/HTMLPurifier/TagTransform/Simple.php';
require_once $__dir . '/HTMLPurifier/Token/Comment.php';
require_once $__dir . '/HTMLPurifier/Token/Tag.php';
require_once $__dir . '/HTMLPurifier/Token/Empty.php';
require_once $__dir . '/HTMLPurifier/Token/End.php';
require_once $__dir . '/HTMLPurifier/Token/Start.php';
require_once $__dir . '/HTMLPurifier/Token/Text.php';
require_once $__dir . '/HTMLPurifier/URIFilter/DisableExternal.php';
require_once $__dir . '/HTMLPurifier/URIFilter/DisableExternalResources.php';
require_once $__dir . '/HTMLPurifier/URIFilter/DisableResources.php';
require_once $__dir . '/HTMLPurifier/URIFilter/HostBlacklist.php';
require_once $__dir . '/HTMLPurifier/URIFilter/MakeAbsolute.php';
require_once $__dir . '/HTMLPurifier/URIFilter/Munge.php';
require_once $__dir . '/HTMLPurifier/URIFilter/SafeIframe.php';
require_once $__dir . '/HTMLPurifier/URIScheme/data.php';
require_once $__dir . '/HTMLPurifier/URIScheme/file.php';
require_once $__dir . '/HTMLPurifier/URIScheme/ftp.php';
require_once $__dir . '/HTMLPurifier/URIScheme/http.php';
require_once $__dir . '/HTMLPurifier/URIScheme/https.php';
require_once $__dir . '/HTMLPurifier/URIScheme/mailto.php';
require_once $__dir . '/HTMLPurifier/URIScheme/news.php';
require_once $__dir . '/HTMLPurifier/URIScheme/nntp.php';
require_once $__dir . '/HTMLPurifier/URIScheme/tel.php';
require_once $__dir . '/HTMLPurifier/VarParser/Flexible.php';
require_once $__dir . '/HTMLPurifier/VarParser/Native.php';
lib/htmlpurifier/LICENSE000064400000063530151213256050011040 0ustar00		  GNU LESSER GENERAL PUBLIC LICENSE
		       Version 2.1, February 1999

 Copyright (C) 1991, 1999 Free Software Foundation, Inc.
 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

[This is the first released version of the Lesser GPL.  It also counts
 as the successor of the GNU Library Public License, version 2, hence
 the version number 2.1.]

			    Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.

  This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it.  You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.

  When we speak of free software, we are referring to freedom of use,
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 this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.

  To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights.  These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.

  For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you.  You must make sure that they, too, receive or can get the source
code.  If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it.  And you must show them these terms so they know their rights.

  We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.

  To protect each distributor, we want to make it very clear that
there is no warranty for the free library.  Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.

  Finally, software patents pose a constant threat to the existence of
any free program.  We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder.  Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.

  Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License.  This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License.  We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.

  When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library.  The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom.  The Lesser General
Public License permits more lax criteria for linking other code with
the library.

  We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License.  It also provides other free software developers Less
of an advantage over competing non-free programs.  These disadvantages
are the reason we use the ordinary General Public License for many
libraries.  However, the Lesser license provides advantages in certain
special circumstances.

  For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard.  To achieve this, non-free programs must be
allowed to use the library.  A more frequent case is that a free
library does the same job as widely used non-free libraries.  In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.

  In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software.  For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.

  Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.

  The precise terms and conditions for copying, distribution and
modification follow.  Pay close attention to the difference between a
"work based on the library" and a "work that uses the library".  The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.

		  GNU LESSER GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".

  A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.

  The "Library", below, refers to any such software library or work
which has been distributed under these terms.  A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language.  (Hereinafter, translation is
included without limitation in the term "modification".)

  "Source code" for a work means the preferred form of the work for
making modifications to it.  For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.

  Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it).  Whether that is true depends on what the Library does
and what the program that uses the Library does.

  1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.

  You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.

  2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) The modified work must itself be a software library.

    b) You must cause the files modified to carry prominent notices
    stating that you changed the files and the date of any change.

    c) You must cause the whole of the work to be licensed at no
    charge to all third parties under the terms of this License.

    d) If a facility in the modified Library refers to a function or a
    table of data to be supplied by an application program that uses
    the facility, other than as an argument passed when the facility
    is invoked, then you must make a good faith effort to ensure that,
    in the event an application does not supply such function or
    table, the facility still operates, and performs whatever part of
    its purpose remains meaningful.

    (For example, a function in a library to compute square roots has
    a purpose that is entirely well-defined independent of the
    application.  Therefore, Subsection 2d requires that any
    application-supplied function or table used by this function must
    be optional: if the application does not supply it, the square
    root function must still compute square roots.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.

In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library.  To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License.  (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.)  Do not make any other change in
these notices.

  Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.

  This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.

  4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.

  If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.

  5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library".  Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.

  However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library".  The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.

  When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library.  The
threshold for this to be true is not precisely defined by law.

  If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work.  (Executables containing this object code plus portions of the
Library will still fall under Section 6.)

  Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.

  6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.

  You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License.  You must supply a copy of this License.  If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License.  Also, you must do one
of these things:

    a) Accompany the work with the complete corresponding
    machine-readable source code for the Library including whatever
    changes were used in the work (which must be distributed under
    Sections 1 and 2 above); and, if the work is an executable linked
    with the Library, with the complete machine-readable "work that
    uses the Library", as object code and/or source code, so that the
    user can modify the Library and then relink to produce a modified
    executable containing the modified Library.  (It is understood
    that the user who changes the contents of definitions files in the
    Library will not necessarily be able to recompile the application
    to use the modified definitions.)

    b) Use a suitable shared library mechanism for linking with the
    Library.  A suitable mechanism is one that (1) uses at run time a
    copy of the library already present on the user's computer system,
    rather than copying library functions into the executable, and (2)
    will operate properly with a modified version of the library, if
    the user installs one, as long as the modified version is
    interface-compatible with the version that the work was made with.

    c) Accompany the work with a written offer, valid for at
    least three years, to give the same user the materials
    specified in Subsection 6a, above, for a charge no more
    than the cost of performing this distribution.

    d) If distribution of the work is made by offering access to copy
    from a designated place, offer equivalent access to copy the above
    specified materials from the same place.

    e) Verify that the user has already received a copy of these
    materials or that you have already sent this user a copy.

  For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it.  However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.

  It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system.  Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.

  7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:

    a) Accompany the combined library with a copy of the same work
    based on the Library, uncombined with any other library
    facilities.  This must be distributed under the terms of the
    Sections above.

    b) Give prominent notice with the combined library of the fact
    that part of it is a work based on the Library, and explaining
    where to find the accompanying uncombined form of the same work.

  8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License.  Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License.  However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.

  9. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Library or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.

  10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.

  11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
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
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all.  For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.

If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded.  In such case, this License incorporates the limitation as if
written in the body of this License.

  13. The Free Software Foundation may publish revised and/or new
versions of the Lesser 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 Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation.  If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.

  14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission.  For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this.  Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.

			    NO WARRANTY

  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "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
LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY 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
LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.

		     END OF TERMS AND CONDITIONS

           How to Apply These Terms to Your New Libraries

  If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change.  You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).

  To apply these terms, attach the following notices to the library.  It is
safest to attach them to the start of each source file to most effectively
convey 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 library's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library 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
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

Also add information on how to contact you by electronic and paper mail.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the
  library `Frob' (a library for tweaking knobs) written by James Random Hacker.

  <signature of Ty Coon>, 1 April 1990
  Ty Coon, President of Vice

That's all there is to it!

    vim: et sw=4 sts=4
lib/htmlpurifier/CREDITS000064400000000525151213256050011046 0ustar00
CREDITS

Almost everything written by Edward Z. Yang (Ambush Commander).  Lots of thanks
to the DevNetwork Community for their help (see docs/ref-devnetwork.html for
more details), Feyd especially (namely IPv6 and optimization).  Thanks to RSnake
for letting me package his fantastic XSS cheatsheet for a smoketest.

    vim: et sw=4 sts=4
lib/appsero/VERSION000064400000000006151213256050010027 0ustar001.2.2
lib/appsero/src/License.php000064400000063177151213256050011663 0ustar00<?php

namespace Appsero;

/**
 * Appsero License Checker
 *
 * This class will check, active and deactive license
 */
class License {

    /**
     * AppSero\Client
     *
     * @var object
     */
    protected $client;

    /**
     * Arguments of create menu
     *
     * @var array
     */
    protected $menu_args;

    /**
     * `option_name` of `wp_options` table
     *
     * @var string
     */
    protected $option_key;

    /**
     * Error message of HTTP request
     *
     * @var string
     */
    public $error;

    /**
     * Success message on form submit
     *
     * @var string
     */
    public $success;

    /**
     * Corn schedule hook name
     *
     * @var string
     */
    protected $schedule_hook;

    /**
     * Set value for valid license
     *
     * @var bool
     */
    private $is_valid_license = null;

    /**
     * Initialize the class
     *
     * @param Appsero\Client
     */
    public function __construct( Client $client ) {
        $this->client = $client;

        $this->option_key = 'appsero_' . md5( $this->client->slug ) . '_manage_license';

        $this->schedule_hook = $this->client->slug . '_license_check_event';

        // Creating WP Ajax Endpoint to refresh license remotely
        add_action( "wp_ajax_appsero_refresh_license_" . $this->client->hash, array( $this, 'refresh_license_api' ) );

        // Run hook to check license status daily
        add_action( $this->schedule_hook, array( $this, 'check_license_status' ) );

        // Active/Deactive corn schedule
        $this->run_schedule();
    }

    /**
     * Set the license option key.
     *
     * If someone wants to override the default generated key.
     *
     * @param string $key
     *
     * @since 1.3.0
     *
     * @return License
     */
    public function set_option_key( $key ) {
        $this->option_key = $key;

        return $this;
    }

    /**
     * Get the license key
     *
     * @since 1.3.0
     *
     * @return string|null
     */
    public function get_license() {
        return get_option( $this->option_key, null );
    }

    /**
     * Check license
     *
     * @return bool
     */
    public function check( $license_key ) {
        $route    = 'public/license/' . $this->client->hash . '/check';

        return $this->send_request( $license_key, $route );
    }

    /**
     * Active a license
     *
     * @return bool
     */
    public function activate( $license_key ) {
        $route    = 'public/license/' . $this->client->hash . '/activate';

        return $this->send_request( $license_key, $route );
    }

    /**
     * Deactivate a license
     *
     * @return bool
     */
    public function deactivate( $license_key ) {
        $route    = 'public/license/' . $this->client->hash . '/deactivate';

        return $this->send_request( $license_key, $route );
    }

    /**
     * Send common request
     *
     * @param $license_key
     * @param $route
     *
     * @return array
     */
    protected function send_request( $license_key, $route ) {
        $params = array(
            'license_key' => $license_key,
            'url'         => esc_url( home_url() ),
            'is_local'    => $this->client->is_local_server(),
        );

        $response = $this->client->send_request( $params, $route, true );

        if ( is_wp_error( $response ) ) {
            return array(
                'success' => false,
                'error'   => $response->get_error_message()
            );
        }

        $response = json_decode( wp_remote_retrieve_body( $response ), true );

        if ( empty( $response ) || isset( $response['exception'] )) {
            return array(
                'success' => false,
                'error'   => $this->client->__trans( 'Unknown error occurred, Please try again.' ),
            );
        }

        if ( isset( $response['errors'] ) && isset( $response['errors']['license_key'] ) ) {
            $response = array(
                'success' => false,
                'error'   => $response['errors']['license_key'][0]
            );
        }

        return $response;
    }

    /**
     * License Refresh Endpoint
     */
    public function refresh_license_api() {
        $this->check_license_status();

        return wp_send_json(
            array(
                'message' => 'License refreshed successfully.'
            ),
            200
        );
    }

    /**
     * Add settings page for license
     *
     * @param array $args
     *
     * @return void
     */
    public function add_settings_page( $args = array() ) {
        $defaults = array(
            'type'        => 'menu', // Can be: menu, options, submenu
            'page_title'  => 'Manage License',
            'menu_title'  => 'Manage License',
            'capability'  => 'manage_options',
            'menu_slug'   => $this->client->slug . '-manage-license',
            'icon_url'    => '',
            'position'    => null,
            'parent_slug' => '',
        );

        $this->menu_args = wp_parse_args( $args, $defaults );

        add_action( 'admin_menu', array( $this, 'admin_menu' ), 99 );
    }

    /**
     * Admin Menu hook
     *
     * @return void
     */
    public function admin_menu() {
        switch ( $this->menu_args['type'] ) {
            case 'menu':
                $this->create_menu_page();
                break;

            case 'submenu':
                $this->create_submenu_page();
                break;

            case 'options':
                $this->create_options_page();
                break;
        }
    }

    /**
     * License menu output
     */
    public function menu_output() {
        if ( isset( $_POST['submit'] ) ) {
            $this->license_form_submit( $_POST );
        }

        $license = $this->get_license();
        $action  = ( $license && isset( $license['status'] ) && 'activate' == $license['status'] ) ? 'deactive' : 'active';
        $this->licenses_style();
        ?>

        <div class="wrap appsero-license-settings-wrapper">
            <h1>License Settings</h1>

            <?php
                $this->show_license_page_notices();
                do_action( 'before_appsero_license_section' );
            ?>

            <div class="appsero-license-settings appsero-license-section">
                <?php $this->show_license_page_card_header( $license ); ?>

                <div class="appsero-license-details">
                    <p>
                        <?php printf( $this->client->__trans( 'Activate <strong>%s</strong> by your license key to get professional support and automatic update from your WordPress dashboard.' ), $this->client->name ); ?>
                    </p>
                    <form method="post" action="<?php $this->form_action_url(); ?>" novalidate="novalidate" spellcheck="false">
                        <input type="hidden" name="_action" value="<?php echo $action; ?>">
                        <input type="hidden" name="_nonce" value="<?php echo wp_create_nonce( $this->client->name ); ?>">
                        <div class="license-input-fields">
                            <div class="license-input-key">
                                <svg enable-background="new 0 0 512 512" version="1.1" viewBox="0 0 512 512" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
                                    <path d="m463.75 48.251c-64.336-64.336-169.01-64.335-233.35 1e-3 -43.945 43.945-59.209 108.71-40.181 167.46l-185.82 185.82c-2.813 2.813-4.395 6.621-4.395 10.606v84.858c0 8.291 6.709 15 15 15h84.858c3.984 0 7.793-1.582 10.605-4.395l21.211-21.226c3.237-3.237 4.819-7.778 4.292-12.334l-2.637-22.793 31.582-2.974c7.178-0.674 12.847-6.343 13.521-13.521l2.974-31.582 22.793 2.651c4.233 0.571 8.496-0.85 11.704-3.691 3.193-2.856 5.024-6.929 5.024-11.206v-27.929h27.422c3.984 0 7.793-1.582 10.605-4.395l38.467-37.958c58.74 19.043 122.38 4.929 166.33-39.046 64.336-64.335 64.336-169.01 0-233.35zm-42.435 106.07c-17.549 17.549-46.084 17.549-63.633 0s-17.549-46.084 0-63.633 46.084-17.549 63.633 0 17.548 46.084 0 63.633z"/>
                                </svg>
                                <input type="text" value="<?php echo $this->get_input_license_value( $action, $license ); ?>"
                                    placeholder="<?php echo esc_attr( $this->client->__trans( 'Enter your license key to activate' ) ); ?>" name="license_key"
                                    <?php echo ( 'deactive' == $action ) ? 'readonly="readonly"' : ''; ?>
                                />
                            </div>
                            <button type="submit" name="submit" class="<?php echo 'deactive' == $action ? 'deactive-button' : ''; ?>">
                                <?php echo $action == 'active' ? $this->client->__trans( 'Activate License' ) : $this->client->__trans( 'Deactivate License' ); ?>
                            </button>
                        </div>
                    </form>

                    <?php
                        if ( 'deactive' == $action && isset( $license['remaining'] ) ) {
                            $this->show_active_license_info( $license );
                        } ?>
                </div>
            </div> <!-- /.appsero-license-settings -->

            <?php do_action( 'after_appsero_license_section' ); ?>
        </div>
        <?php
    }

    /**
     * License form submit
     */
    public function license_form_submit( $form ) {
        if ( ! isset( $form['_nonce'], $form['_action'] ) ) {
            $this->error = $this->client->__trans( 'Please add all information' );

            return;
        }

        if ( ! wp_verify_nonce( $form['_nonce'], $this->client->name ) ) {
            $this->error = $this->client->__trans( "You don't have permission to manage license." );

            return;
        }

        switch ( $form['_action'] ) {
            case 'active':
                $this->active_client_license( $form );
                break;

            case 'deactive':
                $this->deactive_client_license( $form );
                break;

            case 'refresh':
                $this->refresh_client_license( $form );
                break;
        }
    }

    /**
     * Check license status on schedule
     */
    public function check_license_status() {
        $license = $this->get_license();

        if ( isset( $license['key'] ) && ! empty( $license['key'] ) ) {
            $response = $this->check( $license['key'] );

            if ( isset( $response['success'] ) && $response['success'] ) {
                $license['status']           = 'activate';
                $license['remaining']        = $response['remaining'];
                $license['activation_limit'] = $response['activation_limit'];
                $license['expiry_days']      = $response['expiry_days'];
                $license['title']            = $response['title'];
                $license['source_id']        = $response['source_identifier'];
                $license['recurring']        = $response['recurring'];
            } else {
                $license['status']      = 'deactivate';
                $license['expiry_days'] = 0;
            }

            update_option( $this->option_key, $license, false );
        }
    }

    /**
     * Check this is a valid license
     */
    public function is_valid() {
        if ( null !== $this->is_valid_license ) {
            return $this->is_valid_license;
        }

        $license = $this->get_license();

        if ( ! empty( $license['key'] ) && isset( $license['status'] ) && $license['status'] == 'activate' ) {
            $this->is_valid_license = true;
        } else {
            $this->is_valid_license = false;
        }

        return $this->is_valid_license;
    }

    /**
     * Check this is a valid license
     */
    public function is_valid_by( $option, $value ) {
        $license = $this->get_license();

        if ( ! empty( $license['key'] ) && isset( $license['status'] ) && $license['status'] == 'activate' ) {
            if ( isset( $license[ $option ] ) && $license[ $option ] == $value ) {
                return true;
            }
        }

        return false;
    }

    /**
     * Styles for licenses page
     */
    private function licenses_style() {
        ?>
        <style type="text/css">
            .appsero-license-section {
                width: 100%;
                max-width: 1100px;
                min-height: 1px;
                box-sizing: border-box;
            }
            .appsero-license-settings {
                background-color: #fff;
                box-shadow: 0px 3px 10px rgba(16, 16, 16, 0.05);
            }
            .appsero-license-settings * {
                box-sizing: border-box;
            }
            .appsero-license-title {
                background-color: #F8FAFB;
                border-bottom: 2px solid #EAEAEA;
                display: flex;
                align-items: center;
                padding: 10px 20px;
            }
            .appsero-license-title svg {
                width: 30px;
                height: 30px;
                fill: #0082BF;
            }
            .appsero-license-title span {
                font-size: 17px;
                color: #444444;
                margin-left: 10px;
            }
            .appsero-license-details {
                padding: 20px;
            }
            .appsero-license-details p {
                font-size: 15px;
                margin: 0 0 20px 0;
            }
            .license-input-key {
                position: relative;
                flex: 0 0 72%;
                max-width: 72%;
            }
            .license-input-key input {
                background-color: #F9F9F9;
                padding: 10px 15px 10px 48px;
                border: 1px solid #E8E5E5;
                border-radius: 3px;
                height: 45px;
                font-size: 16px;
                color: #71777D;
                width: 100%;
                box-shadow: 0 0 0 transparent;
            }
            .license-input-key input:focus {
                outline: 0 none;
                border: 1px solid #E8E5E5;
                box-shadow: 0 0 0 transparent;
            }
            .license-input-key svg {
                width: 22px;
                height: 22px;
                fill: #0082BF;
                position: absolute;
                left: 14px;
                top: 13px;
            }
            .license-input-fields {
                display: flex;
                justify-content: space-between;
                margin-bottom: 30px;
                max-width: 850px;
                width: 100%;
            }
            .license-input-fields button {
                color: #fff;
                font-size: 17px;
                padding: 8px;
                height: 46px;
                background-color: #0082BF;
                border-radius: 3px;
                cursor: pointer;
                flex: 0 0 25%;
                max-width: 25%;
                border: 1px solid #0082BF;
            }
            .license-input-fields button.deactive-button {
                background-color: #E40055;
                border-color: #E40055;
            }
            .license-input-fields button:focus {
                outline: 0 none;
            }
            .active-license-info {
                display: flex;
            }
            .single-license-info {
                min-width: 220px;
                flex: 0 0 30%;
            }
            .single-license-info h3 {
                font-size: 18px;
                margin: 0 0 12px 0;
            }
            .single-license-info p {
                margin: 0;
                color: #00C000;
            }
            .single-license-info p.occupied {
                color: #E40055;
            }
            .appsero-license-right-form {
                margin-left: auto;
            }
            .appsero-license-refresh-button {
                padding: 6px 10px 4px 10px;
                border: 1px solid #0082BF;
                border-radius: 3px;
                margin-left: auto;
                background-color: #0082BF;
                color: #fff;
                cursor: pointer;
            }
            .appsero-license-refresh-button .dashicons {
                color: #fff;
                margin-left: 0;
            }
        </style>
        <?php
    }

    /**
     * Show active license information
     */
    private function show_active_license_info( $license ) {
        ?>
        <div class="active-license-info">
            <div class="single-license-info">
                <h3><?php $this->client->_etrans( 'Activations Remaining' ); ?></h3>
                <?php if ( empty( $license['activation_limit'] ) ) { ?>
                    <p><?php $this->client->_etrans( 'Unlimited' ); ?></p>
                <?php } else { ?>
                    <p class="<?php echo $license['remaining'] ? '' : 'occupied'; ?>">
                        <?php printf( $this->client->__trans( '%1$d out of %2$d' ), $license['remaining'], $license['activation_limit'] ); ?>
                    </p>
                <?php } ?>
            </div>
            <div class="single-license-info">
                <h3><?php $this->client->_etrans( 'Expires in' ); ?></h3>
                <?php
                    if ( false !== $license['expiry_days'] ) {
                        $occupied = $license['expiry_days'] > 21 ? '' : 'occupied';
                        echo '<p class="' . $occupied . '">' . $license['expiry_days'] . ' days</p>';
                    } else {
                        echo '<p>' . $this->client->__trans( 'Never' ) . '</p>';
                    } ?>
            </div>
        </div>
        <?php
    }

    /**
     * Show license settings page notices
     */
    private function show_license_page_notices() {
        if ( ! empty( $this->error ) ) {
            ?>
            <div class="notice notice-error is-dismissible appsero-license-section">
                <p><?php echo $this->error; ?></p>
            </div>
        <?php
        }

        if ( ! empty( $this->success ) ) {
            ?>
            <div class="notice notice-success is-dismissible appsero-license-section">
                <p><?php echo $this->success; ?></p>
            </div>
        <?php
        }
        echo '<br />';
    }

    /**
     * Card header
     */
    private function show_license_page_card_header( $license ) {
        ?>
        <div class="appsero-license-title">
            <svg enable-background="new 0 0 299.995 299.995" version="1.1" viewBox="0 0 300 300" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
                <path d="m150 161.48c-8.613 0-15.598 6.982-15.598 15.598 0 5.776 3.149 10.807 7.817 13.505v17.341h15.562v-17.341c4.668-2.697 7.817-7.729 7.817-13.505 0-8.616-6.984-15.598-15.598-15.598z"/>
                <path d="m150 85.849c-13.111 0-23.775 10.665-23.775 23.775v25.319h47.548v-25.319c-1e-3 -13.108-10.665-23.775-23.773-23.775z"/>
                <path d="m150 1e-3c-82.839 0-150 67.158-150 150 0 82.837 67.156 150 150 150s150-67.161 150-150c0-82.839-67.161-150-150-150zm46.09 227.12h-92.173c-9.734 0-17.626-7.892-17.626-17.629v-56.919c0-8.491 6.007-15.582 14.003-17.25v-25.697c0-27.409 22.3-49.711 49.711-49.711 27.409 0 49.709 22.3 49.709 49.711v25.697c7.993 1.673 14 8.759 14 17.25v56.919h2e-3c0 9.736-7.892 17.629-17.626 17.629z"/>
            </svg>
            <span><?php echo $this->client->__trans( 'Activate License' ); ?></span>

            <?php if ( $license && $license['key'] ) : ?>
            <form method="post" class="appsero-license-right-form" action="<?php $this->form_action_url(); ?>" novalidate="novalidate" spellcheck="false">
                <input type="hidden" name="_action" value="refresh">
                <input type="hidden" name="_nonce" value="<?php echo wp_create_nonce( $this->client->name ); ?>">
                <button type="submit" name="submit" class="appsero-license-refresh-button">
                    <span class="dashicons dashicons-update"></span>
                    <?php echo $this->client->__trans( 'Refresh License' ); ?>
                </button>
            </form>
            <?php endif; ?>

        </div>
        <?php
    }

    /**
     * Active client license
     */
    private function active_client_license( $form ) {
        if ( empty( $form['license_key'] ) ) {
            $this->error = $this->client->__trans( 'The license key field is required.' );

            return;
        }

        $license_key = sanitize_text_field( $form['license_key'] );
        $response    = $this->activate( $license_key );

        if ( ! $response['success'] ) {
            $this->error = $response['error'] ? $response['error'] : $this->client->__trans( 'Unknown error occurred.' );

            return;
        }

        $data = array(
            'key'              => $license_key,
            'status'           => 'activate',
            'remaining'        => $response['remaining'],
            'activation_limit' => $response['activation_limit'],
            'expiry_days'      => $response['expiry_days'],
            'title'            => $response['title'],
            'source_id'        => $response['source_identifier'],
            'recurring'        => $response['recurring'],
        );

        update_option( $this->option_key, $data, false );

        $this->success = $this->client->__trans( 'License activated successfully.' );
    }

    /**
     * Deactive client license
     */
    private function deactive_client_license( $form ) {
        $license = $this->get_license();

        if ( empty( $license['key'] ) ) {
            $this->error = $this->client->__trans( 'License key not found.' );

            return;
        }

        $response = $this->deactivate( $license['key'] );

        $data = array(
            'key'    => '',
            'status' => 'deactivate',
        );

        update_option( $this->option_key, $data, false );

        if ( ! $response['success'] ) {
            $this->error = $response['error'] ? $response['error'] : $this->client->__trans( 'Unknown error occurred.' );

            return;
        }

        $this->success = $this->client->__trans( 'License deactivated successfully.' );
    }

    /**
     * Refresh Client License
     */
    private function refresh_client_license( $form = null ) {
        $license = $this->get_license();

        if( !$license || ! isset( $license['key'] ) || empty( $license['key'] ) ) {
            $this->error = $this->client->__trans( "License key not found" );
            return;
        }

        $this->check_license_status();

        $this->success = $this->client->__trans( 'License refreshed successfully.' );
    }

    /**
     * Add license menu page
     */
    private function create_menu_page() {
        call_user_func(
            'add_' . 'menu' . '_page',
            $this->menu_args['page_title'],
            $this->menu_args['menu_title'],
            $this->menu_args['capability'],
            $this->menu_args['menu_slug'],
            array( $this, 'menu_output' ),
            $this->menu_args['icon_url'],
            $this->menu_args['position']
        );
    }

    /**
     * Add submenu page
     */
    private function create_submenu_page() {
        call_user_func(
            'add_' . 'submenu' . '_page',
            $this->menu_args['parent_slug'],
            $this->menu_args['page_title'],
            $this->menu_args['menu_title'],
            $this->menu_args['capability'],
            $this->menu_args['menu_slug'],
            array( $this, 'menu_output' ),
            $this->menu_args['position']
        );
    }

    /**
     * Add submenu page
     */
    private function create_options_page() {
        call_user_func(
            'add_' . 'options' . '_page',
            $this->menu_args['page_title'],
            $this->menu_args['menu_title'],
            $this->menu_args['capability'],
            $this->menu_args['menu_slug'],
            array( $this, 'menu_output' ),
            $this->menu_args['position']
        );
    }

    /**
     * Schedule daily sicense checker event
     */
    public function schedule_cron_event() {
        if ( ! wp_next_scheduled( $this->schedule_hook ) ) {
            wp_schedule_event( time(), 'daily', $this->schedule_hook );

            wp_schedule_single_event( time() + 20, $this->schedule_hook );
        }
    }

    /**
     * Clear any scheduled hook
     */
    public function clear_scheduler() {
        wp_clear_scheduled_hook( $this->schedule_hook );
    }

    /**
     * Enable/Disable schedule
     */
    private function run_schedule() {
        switch ( $this->client->type ) {
            case 'plugin':
                register_activation_hook( $this->client->file, array( $this, 'schedule_cron_event' ) );
                register_deactivation_hook( $this->client->file, array( $this, 'clear_scheduler' ) );
                break;

            case 'theme':
                add_action( 'after_switch_theme', array( $this, 'schedule_cron_event' ) );
                add_action( 'switch_theme', array( $this, 'clear_scheduler' ) );
                break;
        }
    }

    /**
     * Form action URL
     */
    private function form_action_url() {
        $url = add_query_arg(
            $_GET,
            admin_url( basename( $_SERVER['SCRIPT_NAME'] ) )
        );

        echo apply_filters( 'appsero_client_license_form_action', $url );
    }

    /**
     * Get input license key
     *
     * @param  $action
     *
     * @return $license
     */
    private function get_input_license_value( $action, $license ) {
        if ( 'active' == $action ) {
            return isset( $license['key'] ) ? $license['key'] : '';
        }

        if ( 'deactive' == $action ) {
            $key_length = strlen( $license['key'] );

            return str_pad(
                substr( $license['key'], 0, $key_length / 2 ), $key_length, '*'
            );
        }

        return '';
    }
}
lib/appsero/src/Updater.php000064400000016273151213256060011701 0ustar00<?php
namespace Appsero;

/**
 * Appsero Updater
 *
 * This class will show new updates project
 */
class Updater {

    /**
     * Appsero\Client
     *
     * @var object
     */
    protected $client;

    /**
     * Initialize the class
     *
     * @param Appsero\Client
     */
    public function __construct( Client $client ) {

        $this->client    = $client;
        $this->cache_key = 'appsero_' . md5( $this->client->slug ) . '_version_info';

        // Run hooks.
        if ( $this->client->type == 'plugin' ) {
            $this->run_plugin_hooks();
        } elseif ( $this->client->type == 'theme' ) {
            $this->run_theme_hooks();
        }
    }

    /**
     * Set up WordPress filter to hooks to get update.
     *
     * @return void
     */
    public function run_plugin_hooks() {
        add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_plugin_update' ) );
        add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
    }

    /**
     * Set up WordPress filter to hooks to get update.
     *
     * @return void
     */
    public function run_theme_hooks() {
        add_filter( 'pre_set_site_transient_update_themes', array( $this, 'check_theme_update' ) );
    }

    /**
     * Check for Update for this specific project
     */
    public function check_plugin_update( $transient_data ) {
        global $pagenow;

        if ( ! is_object( $transient_data ) ) {
            $transient_data = new \stdClass;
        }

        if ( 'plugins.php' == $pagenow && is_multisite() ) {
            return $transient_data;
        }

        if ( ! empty( $transient_data->response ) && ! empty( $transient_data->response[ $this->client->basename ] ) ) {
            return $transient_data;
        }

        $version_info = $this->get_version_info();

        if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) {

            unset( $version_info->sections );

            // If new version available then set to `response`
            if ( version_compare( $this->client->project_version, $version_info->new_version, '<' ) ) {
                $transient_data->response[ $this->client->basename ] = $version_info;
            } else {
                // If new version is not available then set to `no_update`
                $transient_data->no_update[ $this->client->basename ] = $version_info;
            }

            $transient_data->last_checked = time();
            $transient_data->checked[ $this->client->basename ] = $this->client->project_version;
        }

        return $transient_data;
    }

    /**
     * Get version info from database
     *
     * @return Object or Boolean
     */
    private function get_cached_version_info() {
        global $pagenow;

        // If updater page then fetch from API now
        if ( 'update-core.php' == $pagenow ) {
            return false; // Force to fetch data
        }

        $value = get_transient( $this->cache_key );

        if( ! $value && ! isset( $value->name ) ) {
            return false; // Cache is expired
        }

        // We need to turn the icons into an array
        if ( isset( $value->icons ) ) {
            $value->icons = (array) $value->icons;
        }

        // We need to turn the banners into an array
        if ( isset( $value->banners ) ) {
            $value->banners = (array) $value->banners;
        }

        if ( isset( $value->sections ) ) {
            $value->sections = (array) $value->sections;
        }

        return $value;
    }

    /**
     * Set version info to database
     */
    private function set_cached_version_info( $value ) {
        if ( ! $value ) {
            return;
        }

        set_transient( $this->cache_key, $value, 3 * HOUR_IN_SECONDS );
    }

    /**
     * Get plugin info from Appsero
     */
    private function get_project_latest_version() {

        $license = $this->client->license()->get_license();

        $params = array(
            'version'     => $this->client->project_version,
            'name'        => $this->client->name,
            'slug'        => $this->client->slug,
            'basename'    => $this->client->basename,
            'license_key' => ! empty( $license ) && isset( $license['key'] ) ? $license['key'] : '',
        );

        $route = 'update/' . $this->client->hash . '/check';

        $response = $this->client->send_request( $params, $route, true );

        if ( is_wp_error( $response ) ) {
            return false;
        }

        $response = json_decode( wp_remote_retrieve_body( $response ) );

        if ( ! isset( $response->slug ) ) {
            return false;
        }

        if ( isset( $response->icons ) ) {
            $response->icons = (array) $response->icons;
        }

        if ( isset( $response->banners ) ) {
            $response->banners = (array) $response->banners;
        }

        if ( isset( $response->sections ) ) {
            $response->sections = (array) $response->sections;
        }

        return $response;
    }

    /**
     * Updates information on the "View version x.x details" page with custom data.
     *
     * @param mixed   $data
     * @param string  $action
     * @param object  $args
     *
     * @return object $data
     */
    public function plugins_api_filter( $data, $action = '', $args = null ) {

        if ( $action != 'plugin_information' ) {
            return $data;
        }

        if ( ! isset( $args->slug ) || ( $args->slug != $this->client->slug ) ) {
            return $data;
        }

        return $this->get_version_info();
    }

    /**
     * Check theme upate
     */
    public function check_theme_update( $transient_data ) {
        global $pagenow;

        if ( ! is_object( $transient_data ) ) {
            $transient_data = new \stdClass;
        }

        if ( 'themes.php' == $pagenow && is_multisite() ) {
            return $transient_data;
        }

        if ( ! empty( $transient_data->response ) && ! empty( $transient_data->response[ $this->client->slug ] ) ) {
            return $transient_data;
        }

        $version_info = $this->get_version_info();

        if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) {

            // If new version available then set to `response`
            if ( version_compare( $this->client->project_version, $version_info->new_version, '<' ) ) {
                $transient_data->response[ $this->client->slug ] = (array) $version_info;
            } else {
                // If new version is not available then set to `no_update`
                $transient_data->no_update[ $this->client->slug ] = (array) $version_info;
            }

            $transient_data->last_checked = time();
            $transient_data->checked[ $this->client->slug ] = $this->client->project_version;
        }

        return $transient_data;
    }

    /**
     * Get version information
     */
    private function get_version_info() {
        $version_info = $this->get_cached_version_info();

        if ( false === $version_info ) {
            $version_info = $this->get_project_latest_version();
            $this->set_cached_version_info( $version_info );
        }

        return $version_info;
    }

}
lib/appsero/src/Client.php000064400000013705151213256060011510 0ustar00<?php
namespace Appsero;

/**
 * Appsero Client
 *
 * This class is necessary to set project data
 */
class Client {

    /**
     * The client version
     *
     * @var string
     */
    public $version = '1.2.0';

    /**
     * Hash identifier of the plugin
     *
     * @var string
     */
    public $hash;

    /**
     * Name of the plugin
     *
     * @var string
     */
    public $name;

    /**
     * The plugin/theme file path
     * @example .../wp-content/plugins/test-slug/test-slug.php
     *
     * @var string
     */
    public $file;

    /**
     * Main plugin file
     * @example test-slug/test-slug.php
     *
     * @var string
     */
    public $basename;

    /**
     * Slug of the plugin
     * @example test-slug
     *
     * @var string
     */
    public $slug;

    /**
     * The project version
     *
     * @var string
     */
    public $project_version;

    /**
     * The project type
     *
     * @var string
     */
    public $type;

    /**
     * textdomain
     *
     * @var string
     */
    public $textdomain;

    /**
     * The Object of Insights Class
     *
     * @var object
     */
    private $insights;

    /**
     * The Object of Updater Class
     *
     * @var object
     */
    private $updater;

    /**
     * The Object of License Class
     *
     * @var object
     */
    private $license;

	/**
     * Initialize the class
     *
     * @param string  $hash hash of the plugin
     * @param string  $name readable name of the plugin
     * @param string  $file main plugin file path
     */
    public function __construct( $hash, $name, $file ) {
        $this->hash = $hash;
        $this->name = $name;
        $this->file = $file;

        $this->set_basename_and_slug();
    }

    /**
     * Initialize insights class
     *
     * @return Appsero\Insights
     */
    public function insights() {

        if ( ! class_exists( __NAMESPACE__ . '\Insights') ) {
            require_once __DIR__ . '/Insights.php';
        }

        // if already instantiated, return the cached one
        if ( $this->insights ) {
            return $this->insights;
        }

        $this->insights = new Insights( $this );

        return $this->insights;
    }

    /**
     * Initialize plugin/theme updater
     *
     * @return Appsero\Updater
     */
    public function updater() {

        if ( ! class_exists( __NAMESPACE__ . '\Updater') ) {
            require_once __DIR__ . '/Updater.php';
        }

        // if already instantiated, return the cached one
        if ( $this->updater ) {
            return $this->updater;
        }

        $this->updater = new Updater( $this );

        return $this->updater;
    }

    /**
     * Initialize license checker
     *
     * @return Appsero\License
     */
    public function license() {

        if ( ! class_exists( __NAMESPACE__ . '\License') ) {
            require_once __DIR__ . '/License.php';
        }

        // if already instantiated, return the cached one
        if ( $this->license ) {
            return $this->license;
        }

        $this->license = new License( $this );

        return $this->license;
    }

    /**
     * API Endpoint
     *
     * @return string
     */
    public function endpoint() {
        $endpoint = apply_filters( 'appsero_endpoint', 'https://api.appsero.com' );

        return trailingslashit( $endpoint );
    }

    /**
     * Set project basename, slug and version
     *
     * @return void
     */
    protected function set_basename_and_slug() {

        if ( strpos( $this->file, WP_CONTENT_DIR . '/themes/' ) === false ) {
            $this->basename = plugin_basename( $this->file );

            list( $this->slug, $mainfile) = explode( '/', $this->basename );

            require_once ABSPATH . 'wp-admin/includes/plugin.php';

            $plugin_data = get_plugin_data( $this->file );

            $this->project_version = $plugin_data['Version'];
            $this->type = 'plugin';
        } else {
            $this->basename = str_replace( WP_CONTENT_DIR . '/themes/', '', $this->file );

            list( $this->slug, $mainfile) = explode( '/', $this->basename );

            $theme = wp_get_theme( $this->slug );

            $this->project_version = $theme->version;
            $this->type = 'theme';
        }

        $this->textdomain = $this->slug;
    }

    /**
     * Send request to remote endpoint
     *
     * @param  array  $params
     * @param  string $route
     *
     * @return array|WP_Error   Array of results including HTTP headers or WP_Error if the request failed.
     */
    public function send_request( $params, $route, $blocking = false ) {
        $url = $this->endpoint() . $route;

        $headers = array(
            'user-agent' => 'Appsero/' . md5( esc_url( home_url() ) ) . ';',
            'Accept'     => 'application/json',
        );

        $response = wp_remote_post( $url, array(
            'method'      => 'POST',
            'timeout'     => 30,
            'redirection' => 5,
            'httpversion' => '1.0',
            'blocking'    => $blocking,
            'headers'     => $headers,
            'body'        => array_merge( $params, array( 'client' => $this->version ) ),
            'cookies'     => array()
        ) );

        return $response;
    }

    /**
     * Check if the current server is localhost
     *
     * @return boolean
     */
    public function is_local_server() {
        $is_local = in_array( $_SERVER['REMOTE_ADDR'], array( '127.0.0.1', '::1' ) );

        return apply_filters( 'appsero_is_local', $is_local );
    }

    /**
     * Translate function _e()
     */
    public function _etrans( $text ) {
        call_user_func( '_e', $text, $this->textdomain );
    }

    /**
     * Translate function __()
     */
    public function __trans( $text ) {
        return call_user_func( '__', $text, $this->textdomain );
    }

    /**
     * Set project textdomain
     */
    public function set_textdomain( $textdomain ) {
        $this->textdomain = $textdomain;
    }
}
lib/appsero/src/Insights.php000064400000124707151213256060012067 0ustar00<?php
namespace Appsero;

/**
 * Appsero Insights
 *
 * This is a tracker class to track plugin usage based on if the customer has opted in.
 * No personal information is being tracked by this class, only general settings, active plugins, environment details
 * and admin email.
 */
class Insights {

    /**
     * The notice text
     *
     * @var string
     */
    public $notice;

    /**
     * Wheather to the notice or not
     *
     * @var boolean
     */
    protected $show_notice = true;

    /**
     * If extra data needs to be sent
     *
     * @var array
     */
    protected $extra_data = array();

    /**
     * AppSero\Client
     *
     * @var object
     */
    protected $client;

    /**
     * @var boolean
     */
    private $plugin_data = false;


    /**
     * Initialize the class
     *
     * @param      $client
     * @param null $name
     * @param null $file
     */
    public function __construct( $client, $name = null, $file = null ) {

        if ( is_string( $client ) && ! empty( $name ) && ! empty( $file ) ) {
            $client = new Client( $client, $name, $file );
        }

        if ( is_object( $client ) && is_a( $client, 'Appsero\Client' ) ) {
            $this->client = $client;
        }
    }

    /**
     * Don't show the notice
     *
     * @return \self
     */
    public function hide_notice() {
        $this->show_notice = false;

        return $this;
    }

    /**
     * Add plugin data if needed
     *
     * @return \self
     */
    public function add_plugin_data() {
        $this->plugin_data = true;

        return $this;
    }

    /**
     * Add extra data if needed
     *
     * @param array $data
     *
     * @return \self
     */
    public function add_extra( $data = array() ) {
        $this->extra_data = $data;

        return $this;
    }

    /**
     * Set custom notice text
     *
     * @param  string $text
     *
     * @return \self
     */
    public function notice($text='' ) {
        $this->notice = $text;

        return $this;
    }

    /**
     * Initialize insights
     *
     * @return void
     */
    public function init() {
        if ( $this->client->type == 'plugin' ) {
            $this->init_plugin();
        } else if ( $this->client->type == 'theme' ) {
            $this->init_theme();
        }
    }

    /**
     * Initialize theme hooks
     *
     * @return void
     */
    public function init_theme() {
        $this->init_common();

        add_action( 'switch_theme', array( $this, 'deactivation_cleanup' ) );
        add_action( 'switch_theme', array( $this, 'theme_deactivated' ), 12, 3 );
    }

    /**
     * Initialize plugin hooks
     *
     * @return void
     */
    public function init_plugin() {
        // plugin deactivate popup
        if ( ! $this->is_local_server() ) {
            add_filter( 'plugin_action_links_' . $this->client->basename, array( $this, 'plugin_action_links' ) );
            add_action( 'admin_footer', array( $this, 'deactivate_scripts' ) );
        }

        $this->init_common();

        register_activation_hook( $this->client->file, array( $this, 'activate_plugin' ) );
        register_deactivation_hook( $this->client->file, array( $this, 'deactivation_cleanup' ) );
    }

    /**
     * Initialize common hooks
     *
     * @return void
     */
    protected function init_common() {

        if ( $this->show_notice ) {
            // tracking notice
            // Notices in admin pages except in MetaSlider admin pages - See MetaSliderPlugin->filter_admin_notices()
            add_action( 'admin_notices', array( $this, 'admin_notice' ) );
            // @since 3.90.1 - Notices in MetaSlider admin pages
            add_action( 'metaslider_admin_notices', array( $this, 'admin_notice' ) );
        }

        add_action( 'admin_init', array( $this, 'handle_optin_optout' ) );

        // uninstall reason
        add_action( 'wp_ajax_' . $this->client->slug . '_submit-uninstall-reason', array( $this, 'uninstall_reason_submission' ) );

        // cron events
        add_filter( 'cron_schedules', array( $this, 'add_weekly_schedule' ) );
        add_action( $this->client->slug . '_tracker_send_event', array( $this, 'send_tracking_data' ) );
        // add_action( 'admin_init', array( $this, 'send_tracking_data' ) ); // test
    }

    /**
     * Send tracking data to AppSero server
     *
     * @param  boolean  $override
     *
     * @return void
     */
    public function send_tracking_data( $override = false ) {
        if ( ! $this->tracking_allowed() && ! $override ) {
            return;
        }

        // Send a maximum of once per week
        $last_send = $this->get_last_send();

        if ( $last_send && $last_send > strtotime( '-1 week' ) ) {
            return;
        }

        $tracking_data = $this->get_tracking_data();

        $response = $this->client->send_request( $tracking_data, 'track' );

        update_option( $this->client->slug . '_tracking_last_send', time() );
    }

    /**
     * Get the tracking data points
     *
     * @return array
     */
    protected function get_tracking_data() {
        $all_plugins = $this->get_all_plugins();

        $users = get_users( array(
            'role'    => 'administrator',
            'orderby' => 'ID',
            'order'   => 'ASC',
            'number'  => 1,
            'paged'   => 1,
        ) );

        $admin_user =  ( is_array( $users ) && ! empty( $users ) ) ? $users[0] : false;
        $first_name = $last_name = '';

        if ( $admin_user ) {
            $first_name = $admin_user->first_name ? $admin_user->first_name : $admin_user->display_name;
            $last_name  = $admin_user->last_name;
        }

        $data = array(
            'url'              => esc_url( home_url() ),
            'site'             => $this->get_site_name(),
            'admin_email'      => get_option( 'admin_email' ),
            'first_name'       => $first_name,
            'last_name'        => $last_name,
            'hash'             => $this->client->hash,
            'server'           => $this->get_server_info(),
            'wp'               => $this->get_wp_info(),
            'users'            => $this->get_user_counts(),
            'active_plugins'   => count( $all_plugins['active_plugins'] ),
            'inactive_plugins' => count( $all_plugins['inactive_plugins'] ),
            'ip_address'       => $this->get_user_ip_address(),
            'project_version'  => $this->client->project_version,
            'tracking_skipped' => false,
            'is_local'         => $this->is_local_server(),
        );

        // Add Plugins
        if ($this->plugin_data) {

            $plugins_data = array();

            foreach ($all_plugins['active_plugins'] as $slug => $plugin) {
                $slug = strstr($slug, '/', true);
                if (! $slug) {
                    continue;
                }

                $plugins_data[ $slug ] = array(
                    'name' => isset($plugin['name']) ? $plugin['name'] : '',
                    'version' => isset($plugin['version']) ? $plugin['version'] : '',
                );
            }

            if (array_key_exists($this->client->slug, $plugins_data)) {
                unset($plugins_data[$this->client->slug]);
            }

            $data['plugins'] = $plugins_data;
        }

        // Add metadata
        if ( $extra = $this->get_extra_data() ) {
            $data['extra'] = $extra;
        }

        // Check this has previously skipped tracking
        $skipped = get_option( $this->client->slug . '_tracking_skipped' );

        if ( $skipped === 'yes' ) {
            delete_option( $this->client->slug . '_tracking_skipped' );

            $data['tracking_skipped'] = true;
        }

        return apply_filters( $this->client->slug . '_tracker_data', $data );
    }

    /**
     * If a child class wants to send extra data
     *
     * @return mixed
     */
    protected function get_extra_data() {
        if ( is_callable( $this->extra_data ) ) {
            return call_user_func( $this->extra_data );
        }

        if ( is_array( $this->extra_data ) ) {
            return $this->extra_data;
        }

        return array();
    }

    /**
     * Explain the user which data we collect
     *
     * @return array
     */
    protected function data_we_collect() {
        $data = array(
            'Server environment details (php, mysql, server, WordPress versions)',
            'Number of users in your site',
            'Site language',
            'Number of active and inactive plugins',
            'Site name and URL',
            'Your name and email address',
        );

        if ($this->plugin_data) {
            array_splice($data, 4, 0, ["active plugins' name"]);
        }

        return $data;
    }

    /**
     * Check if the user has opted into tracking
     *
     * @return bool
     */
    public function tracking_allowed() {
        $allow_tracking = get_option( $this->client->slug . '_allow_tracking', 'no' );

        return $allow_tracking == 'yes';
    }

    /**
     * Get the last time a tracking was sent
     *
     * @return false|string
     */
    private function get_last_send() {
        return get_option( $this->client->slug . '_tracking_last_send', false );
    }

    /**
     * Check if the notice has been dismissed or enabled
     *
     * @return boolean
     */
    public function notice_dismissed() {
        $hide_notice = get_option( $this->client->slug . '_tracking_notice', null );

        if ( 'hide' == $hide_notice ) {
            return true;
        }

        return false;
    }

    /**
     * Check if the current server is localhost
     *
     * @return boolean
     */
    private function is_local_server() {

        $host       = isset( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : 'localhost';
        $ip         = isset( $_SERVER['SERVER_ADDR'] ) ? $_SERVER['SERVER_ADDR'] : '127.0.0.1';
        $is_local   = false;

        if( in_array( $ip,array( '127.0.0.1', '::1' ) )
            || ! strpos( $host, '.' )
            || in_array( strrchr( $host, '.' ), array( '.test', '.testing', '.local', '.localhost', '.localdomain' ) )
        ) {
            $is_local = true;
        }

        return apply_filters( 'appsero_is_local', $is_local );
    }

    /**
     * Schedule the event weekly
     *
     * @return void
     */
    private function schedule_event() {
        $hook_name = $this->client->slug . '_tracker_send_event';

        if ( ! wp_next_scheduled( $hook_name ) ) {
            wp_schedule_event( time(), 'weekly', $hook_name );
        }
    }

    /**
     * Clear any scheduled hook
     *
     * @return void
     */
    private function clear_schedule_event() {
        wp_clear_scheduled_hook( $this->client->slug . '_tracker_send_event' );
    }

    /**
     * Display the admin notice to users that have not opted-in or out
     *
     * @return void
     */
    public function admin_notice() {

        if ( $this->notice_dismissed() ) {
            return;
        }

        if ( $this->tracking_allowed() ) {
            return;
        }

        if ( ! current_user_can( 'manage_options' ) ) {
            return;
        }

        // don't show tracking if a local server
        if ( $this->is_local_server() ) {
            return;
        }

        $optin_url  = add_query_arg( $this->client->slug . '_tracker_optin', 'true' );
        $optout_url = add_query_arg( $this->client->slug . '_tracker_optout', 'true' );

        if ( empty( $this->notice ) ) {
            $notice = sprintf( $this->client->__trans( 'Want to help make <strong>%1$s</strong> even more awesome? Allow %1$s to collect non-sensitive diagnostic data and usage information.' ), $this->client->name );
        } else {
            $notice = $this->notice;
        }

        $policy_url = 'https://' . 'appsero.com/privacy-policy/';

        $notice .= ' (<a class="' . $this->client->slug . '-insights-data-we-collect" href="#">' . $this->client->__trans( 'what we collect' ) . '</a>)';
        $notice .= '<p class="description" style="display:none;">' . implode( ', ', $this->data_we_collect() ) . '. No sensitive data is tracked. ';
        $notice .= 'We are using Appsero to collect your data. <a href="' . $policy_url . '" target="_blank">Learn more</a> about how Appsero collects and handle your data.</p>';

        echo '<div class="updated"><p>';
            echo $notice;
            echo '</p><p class="submit">';
            echo '&nbsp;<a href="' . esc_url( $optin_url ) . '" class="button-primary button-large">' . $this->client->__trans( 'Allow' ) . '</a>';
            echo '&nbsp;<a href="' . esc_url( $optout_url ) . '" class="button-secondary button-large">' . $this->client->__trans( 'No thanks' ) . '</a>';
        echo '</p></div>';

        echo "<script type='text/javascript'>jQuery('." . $this->client->slug . "-insights-data-we-collect').on('click', function(e) {
                e.preventDefault();
                jQuery(this).parents('.updated').find('p.description').slideToggle('fast');
            });
            </script>
        ";
    }

    /**
     * handle the optin/optout
     *
     * @return void
     */
    public function handle_optin_optout() {

        if ( isset( $_GET[ $this->client->slug . '_tracker_optin' ] ) && $_GET[ $this->client->slug . '_tracker_optin' ] == 'true' ) {
            $this->optin();

            wp_redirect( remove_query_arg( $this->client->slug . '_tracker_optin' ) );
            exit;
        }

        if ( isset( $_GET[ $this->client->slug . '_tracker_optout' ] ) && $_GET[ $this->client->slug . '_tracker_optout' ] == 'true' ) {
            $this->optout();

            wp_redirect( remove_query_arg( $this->client->slug . '_tracker_optout' ) );
            exit;
        }
    }

    /**
     * Tracking optin
     *
     * @return void
     */
    public function optin() {
        update_option( $this->client->slug . '_allow_tracking', 'yes' );
        update_option( $this->client->slug . '_tracking_notice', 'hide' );

        $this->clear_schedule_event();
        $this->schedule_event();
        $this->send_tracking_data();
    }

    /**
     * Optout from tracking
     *
     * @return void
     */
    public function optout() {
        update_option( $this->client->slug . '_allow_tracking', 'no' );
        update_option( $this->client->slug . '_tracking_notice', 'hide' );

        $this->send_tracking_skipped_request();

        $this->clear_schedule_event();
    }

    /**
     * Get the number of post counts
     *
     * @param  string  $post_type
     *
     * @return integer
     */
    public function get_post_count( $post_type ) {
        global $wpdb;

        return (int) $wpdb->get_var( "SELECT count(ID) FROM $wpdb->posts WHERE post_type = '$post_type' and post_status = 'publish'");
    }

    /**
     * Get server related info.
     *
     * @return array
     */
    private static function get_server_info() {
        global $wpdb;

        $server_data = array();

        if ( isset( $_SERVER['SERVER_SOFTWARE'] ) && ! empty( $_SERVER['SERVER_SOFTWARE'] ) ) {
            $server_data['software'] = $_SERVER['SERVER_SOFTWARE'];
        }

        if ( function_exists( 'phpversion' ) ) {
            $server_data['php_version'] = phpversion();
        }

        $server_data['mysql_version']        = $wpdb->db_version();

        $server_data['php_max_upload_size']  = size_format( wp_max_upload_size() );
        $server_data['php_default_timezone'] = date_default_timezone_get();
        $server_data['php_soap']             = class_exists( 'SoapClient' ) ? 'Yes' : 'No';
        $server_data['php_fsockopen']        = function_exists( 'fsockopen' ) ? 'Yes' : 'No';
        $server_data['php_curl']             = function_exists( 'curl_init' ) ? 'Yes' : 'No';

        return $server_data;
    }

    /**
     * Get WordPress related data.
     *
     * @return array
     */
    private function get_wp_info() {
        $wp_data = array();

        $wp_data['memory_limit'] = WP_MEMORY_LIMIT;
        $wp_data['debug_mode']   = ( defined('WP_DEBUG') && WP_DEBUG ) ? 'Yes' : 'No';
        $wp_data['locale']       = get_locale();
        $wp_data['version']      = get_bloginfo( 'version' );
        $wp_data['multisite']    = is_multisite() ? 'Yes' : 'No';
        $wp_data['theme_slug']   = get_stylesheet();

        $theme = wp_get_theme( $wp_data['theme_slug'] );

        $wp_data['theme_name']    = $theme->get( 'Name' );
        $wp_data['theme_version'] = $theme->get( 'Version' );
        $wp_data['theme_uri']     = $theme->get( 'ThemeURI' );
        $wp_data['theme_author']  = $theme->get( 'Author' );

        return $wp_data;
    }

    /**
     * Get the list of active and inactive plugins
     *
     * @return array
     */
    private function get_all_plugins() {
        // Ensure get_plugins function is loaded
        if ( ! function_exists( 'get_plugins' ) ) {
            include ABSPATH . '/wp-admin/includes/plugin.php';
        }

        $plugins             = get_plugins();
        $active_plugins_keys = get_option( 'active_plugins', array() );
        $active_plugins      = array();

        foreach ( $plugins as $k => $v ) {
            // Take care of formatting the data how we want it.
            $formatted = array();
            $formatted['name'] = strip_tags( $v['Name'] );

            if ( isset( $v['Version'] ) ) {
                $formatted['version'] = strip_tags( $v['Version'] );
            }

            if ( isset( $v['Author'] ) ) {
                $formatted['author'] = strip_tags( $v['Author'] );
            }

            if ( isset( $v['Network'] ) ) {
                $formatted['network'] = strip_tags( $v['Network'] );
            }

            if ( isset( $v['PluginURI'] ) ) {
                $formatted['plugin_uri'] = strip_tags( $v['PluginURI'] );
            }

            if ( in_array( $k, $active_plugins_keys ) ) {
                // Remove active plugins from list so we can show active and inactive separately
                unset( $plugins[$k] );
                $active_plugins[$k] = $formatted;
            } else {
                $plugins[$k] = $formatted;
            }
        }

        return array( 'active_plugins' => $active_plugins, 'inactive_plugins' => $plugins );
    }

    /**
     * Get user totals based on user role.
     *
     * @return array
     */
    public function get_user_counts() {
        $user_count          = array();
        $user_count_data     = count_users();
        $user_count['total'] = $user_count_data['total_users'];

        // Get user count based on user role
        foreach ( $user_count_data['avail_roles'] as $role => $count ) {
            if ( ! $count ) {
                continue;
            }

            $user_count[ $role ] = $count;
        }

        return $user_count;
    }

    /**
     * Add weekly cron schedule
     *
     * @param array  $schedules
     *
     * @return array
     */
    public function add_weekly_schedule( $schedules ) {

        $schedules['weekly'] = array(
            'interval' => DAY_IN_SECONDS * 7,
            'display'  => 'Once Weekly',
        );

        return $schedules;
    }

    /**
     * Plugin activation hook
     *
     * @return void
     */
    public function activate_plugin() {
        $allowed = get_option( $this->client->slug . '_allow_tracking', 'no' );

        // if it wasn't allowed before, do nothing
        if ( 'yes' !== $allowed ) {
            return;
        }

        // re-schedule and delete the last sent time so we could force send again
        $hook_name = $this->client->slug . '_tracker_send_event';
        if ( ! wp_next_scheduled( $hook_name ) ) {
            wp_schedule_event( time(), 'weekly', $hook_name );
        }

        delete_option( $this->client->slug . '_tracking_last_send' );

        $this->send_tracking_data( true );
    }

    /**
     * Clear our options upon deactivation
     *
     * @return void
     */
    public function deactivation_cleanup() {
        $this->clear_schedule_event();

        if ( 'theme' == $this->client->type ) {
            delete_option( $this->client->slug . '_tracking_last_send' );
            delete_option( $this->client->slug . '_allow_tracking' );
        }

        delete_option( $this->client->slug . '_tracking_notice' );
    }

    /**
     * Hook into action links and modify the deactivate link
     *
     * @param  array  $links
     *
     * @return array
     */
    public function plugin_action_links( $links ) {

        if ( array_key_exists( 'deactivate', $links ) ) {
            $links['deactivate'] = str_replace( '<a', '<a class="' . $this->client->slug . '-deactivate-link"', $links['deactivate'] );
        }

        return $links;
    }

    /**
     * Plugin uninstall reasons
     *
     * @return array
     */
    private function get_uninstall_reasons() {
        $reasons = array(
			array(
				'id'          => 'could-not-understand',
				'text'        => $this->client->__trans( "Couldn't understand" ),
				'placeholder' => $this->client->__trans( 'Would you like us to assist you?' ),
                'icon'        => '<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23"><g fill="none"><g fill="#3B86FF"><path d="M11.5 0C17.9 0 23 5.1 23 11.5 23 17.9 17.9 23 11.5 23 10.6 23 9.6 22.9 8.8 22.7L8.8 22.6C9.3 22.5 9.7 22.3 10 21.9 10.3 21.6 10.4 21.3 10.4 20.9 10.8 21 11.1 21 11.5 21 16.7 21 21 16.7 21 11.5 21 6.3 16.7 2 11.5 2 6.3 2 2 6.3 2 11.5 2 13 2.3 14.3 2.9 15.6 2.7 16 2.4 16.3 2.2 16.8L2.1 17.1 2.1 17.3C2 17.5 2 17.7 2 18 0.7 16.1 0 13.9 0 11.5 0 5.1 5.1 0 11.5 0ZM6 13.6C6 13.7 6.1 13.8 6.1 13.9 6.3 14.5 6.2 15.7 6.1 16.4 6.1 16.6 6 16.9 6 17.1 6 17.1 6.1 17.1 6.1 17.1 7.1 16.9 8.2 16 9.3 15.5 9.8 15.2 10.4 15 10.9 15 11.2 15 11.4 15 11.6 15.2 11.9 15.4 12.1 16 11.6 16.4 11.5 16.5 11.3 16.6 11.1 16.7 10.5 17 9.9 17.4 9.3 17.7 9 17.9 9 18.1 9.1 18.5 9.2 18.9 9.3 19.4 9.3 19.8 9.4 20.3 9.3 20.8 9 21.2 8.8 21.5 8.5 21.6 8.1 21.7 7.9 21.8 7.6 21.9 7.3 21.9L6.5 22C6.3 22 6 21.9 5.8 21.9 5 21.8 4.4 21.5 3.9 20.9 3.3 20.4 3.1 19.6 3 18.8L3 18.5C3 18.2 3 17.9 3.1 17.7L3.1 17.6C3.2 17.1 3.5 16.7 3.7 16.3 4 15.9 4.2 15.4 4.3 15 4.4 14.6 4.4 14.5 4.6 14.2 4.6 13.9 4.7 13.7 4.9 13.6 5.2 13.2 5.7 13.2 6 13.6ZM11.7 11.2C13.1 11.2 14.3 11.7 15.2 12.9 15.3 13 15.4 13.1 15.4 13.2 15.4 13.4 15.3 13.8 15.2 13.8 15 13.9 14.9 13.8 14.8 13.7 14.6 13.5 14.4 13.2 14.1 13.1 13.5 12.6 12.8 12.3 12 12.2 10.7 12.1 9.5 12.3 8.4 12.8 8.3 12.8 8.2 12.8 8.1 12.8 7.9 12.8 7.8 12.4 7.8 12.2 7.7 12.1 7.8 11.9 8 11.8 8.4 11.7 8.8 11.5 9.2 11.4 10 11.2 10.9 11.1 11.7 11.2ZM16.3 5.9C17.3 5.9 18 6.6 18 7.6 18 8.5 17.3 9.3 16.3 9.3 15.4 9.3 14.7 8.5 14.7 7.6 14.7 6.6 15.4 5.9 16.3 5.9ZM8.3 5C9.2 5 9.9 5.8 9.9 6.7 9.9 7.7 9.2 8.4 8.2 8.4 7.3 8.4 6.6 7.7 6.6 6.7 6.6 5.8 7.3 5 8.3 5Z"/></g></g></svg>'
			),
			array(
				'id'          => 'found-better-plugin',
				'text'        => $this->client->__trans( 'Found a better plugin' ),
				'placeholder' => $this->client->__trans( 'Which plugin?' ),
                'icon'        => '<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23"><g fill="none"><g fill="#3B86FF"><path d="M17.1 14L22.4 19.3C23.2 20.2 23.2 21.5 22.4 22.4 21.5 23.2 20.2 23.2 19.3 22.4L19.3 22.4 14 17.1C15.3 16.3 16.3 15.3 17.1 14L17.1 14ZM8.6 0C13.4 0 17.3 3.9 17.3 8.6 17.3 13.4 13.4 17.2 8.6 17.2 3.9 17.2 0 13.4 0 8.6 0 3.9 3.9 0 8.6 0ZM8.6 2.2C5.1 2.2 2.2 5.1 2.2 8.6 2.2 12.2 5.1 15.1 8.6 15.1 12.2 15.1 15.1 12.2 15.1 8.6 15.1 5.1 12.2 2.2 8.6 2.2ZM8.6 3.6L8.6 5C6.6 5 5 6.6 5 8.6L5 8.6 3.6 8.6C3.6 5.9 5.9 3.6 8.6 3.6L8.6 3.6Z"/></g></g></svg>',
			),
			array(
				'id'          => 'not-have-that-feature',
				'text'        => $this->client->__trans( "Missing a specific feature" ),
				'placeholder' => $this->client->__trans( 'Could you tell us more about that feature?' ),
                'icon'        => '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="17" viewBox="0 0 24 17"><g fill="none"><g fill="#3B86FF"><path d="M19.4 0C19.7 0.6 19.8 1.3 19.8 2 19.8 3.2 19.4 4.4 18.5 5.3 17.6 6.2 16.5 6.7 15.2 6.7 15.2 6.7 15.2 6.7 15.2 6.7 14 6.7 12.9 6.2 12 5.3 11.2 4.4 10.7 3.3 10.7 2 10.7 1.3 10.8 0.6 11.1 0L7.6 0 7 0 6.5 0 6.5 5.7C6.3 5.6 5.9 5.3 5.6 5.1 5 4.6 4.3 4.3 3.5 4.3 3.5 4.3 3.5 4.3 3.4 4.3 1.6 4.4 0 5.9 0 7.9 0 8.6 0.2 9.2 0.5 9.7 1.1 10.8 2.2 11.5 3.5 11.5 4.3 11.5 5 11.2 5.6 10.8 6 10.5 6.3 10.3 6.5 10.2L6.5 10.2 6.5 17 6.5 17 7 17 7.6 17 22.5 17C23.3 17 24 16.3 24 15.5L24 0 19.4 0Z"/></g></g></svg>',
			),
			array(
				'id'          => 'is-not-working',
				'text'        => $this->client->__trans( 'Not working' ),
				'placeholder' => $this->client->__trans( 'Could you tell us a bit more whats not working?' ),
                'icon'        => '<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23"><g fill="none"><g fill="#3B86FF"><path d="M11.5 0C17.9 0 23 5.1 23 11.5 23 17.9 17.9 23 11.5 23 5.1 23 0 17.9 0 11.5 0 5.1 5.1 0 11.5 0ZM11.8 14.4C11.2 14.4 10.7 14.8 10.7 15.4 10.7 16 11.2 16.4 11.8 16.4 12.4 16.4 12.8 16 12.8 15.4 12.8 14.8 12.4 14.4 11.8 14.4ZM12 7C10.1 7 9.1 8.1 9 9.6L10.5 9.6C10.5 8.8 11.1 8.3 11.9 8.3 12.7 8.3 13.2 8.8 13.2 9.5 13.2 10.1 13 10.4 12.2 10.9 11.3 11.4 10.9 12 11 12.9L11 13.4 12.5 13.4 12.5 13C12.5 12.4 12.7 12.1 13.5 11.6 14.4 11.1 14.9 10.4 14.9 9.4 14.9 8 13.7 7 12 7Z"/></g></g></svg>',
			),
			array(
				'id'          => 'looking-for-other',
				'text'        => $this->client->__trans( "Not what I was looking" ),
				'placeholder' => $this->client->__trans( 'Could you tell us a bit more?' ),
                'icon'        => '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="17" viewBox="0 0 24 17"><g fill="none"><g fill="#3B86FF"><path d="M23.5 9C23.5 9 23.5 8.9 23.5 8.9 23.5 8.9 23.5 8.9 23.5 8.9 23.4 8.6 23.2 8.3 23 8 22.2 6.5 20.6 3.7 19.8 2.6 18.8 1.3 17.7 0 16.1 0 15.7 0 15.3 0.1 14.9 0.2 13.8 0.6 12.6 1.2 12.3 2.7L11.7 2.7C11.4 1.2 10.2 0.6 9.1 0.2 8.7 0.1 8.3 0 7.9 0 6.3 0 5.2 1.3 4.2 2.6 3.4 3.7 1.8 6.5 1 8 0.8 8.3 0.6 8.6 0.5 8.9 0.5 8.9 0.5 8.9 0.5 8.9 0.5 8.9 0.5 9 0.5 9 0.2 9.7 0 10.5 0 11.3 0 14.4 2.5 17 5.5 17 7.3 17 8.8 16.1 9.8 14.8L14.2 14.8C15.2 16.1 16.7 17 18.5 17 21.5 17 24 14.4 24 11.3 24 10.5 23.8 9.7 23.5 9ZM5.5 15C3.6 15 2 13.2 2 11 2 8.8 3.6 7 5.5 7 7.4 7 9 8.8 9 11 9 13.2 7.4 15 5.5 15ZM18.5 15C16.6 15 15 13.2 15 11 15 8.8 16.6 7 18.5 7 20.4 7 22 8.8 22 11 22 13.2 20.4 15 18.5 15Z"/></g></g></svg>',
			),
			array(
				'id'          => 'did-not-work-as-expected',
				'text'        => $this->client->__trans( "Didn't work as expected" ),
				'placeholder' => $this->client->__trans( 'What did you expect?' ),
                'icon'        => '<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23"><g fill="none"><g fill="#3B86FF"><path d="M11.5 0C17.9 0 23 5.1 23 11.5 23 17.9 17.9 23 11.5 23 5.1 23 0 17.9 0 11.5 0 5.1 5.1 0 11.5 0ZM11.5 2C6.3 2 2 6.3 2 11.5 2 16.7 6.3 21 11.5 21 16.7 21 21 16.7 21 11.5 21 6.3 16.7 2 11.5 2ZM12.5 12.9L12.7 5 10.2 5 10.5 12.9 12.5 12.9ZM11.5 17.4C12.4 17.4 13 16.8 13 15.9 13 15 12.4 14.4 11.5 14.4 10.6 14.4 10 15 10 15.9 10 16.8 10.6 17.4 11.5 17.4Z"/></g></g></svg>',
			),
			array(
				'id'          => 'other',
				'text'        => $this->client->__trans( 'Others' ),
				'placeholder' => $this->client->__trans( 'Could you tell us a bit more?' ),
                'icon'        => '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="23" viewBox="0 0 24 6"><g fill="none"><g fill="#3B86FF"><path d="M3 0C4.7 0 6 1.3 6 3 6 4.7 4.7 6 3 6 1.3 6 0 4.7 0 3 0 1.3 1.3 0 3 0ZM12 0C13.7 0 15 1.3 15 3 15 4.7 13.7 6 12 6 10.3 6 9 4.7 9 3 9 1.3 10.3 0 12 0ZM21 0C22.7 0 24 1.3 24 3 24 4.7 22.7 6 21 6 19.3 6 18 4.7 18 3 18 1.3 19.3 0 21 0Z"/></g></g></svg>',
			),
		);

        return $reasons;
    }

    /**
     * Plugin deactivation uninstall reason submission
     *
     * @return void
     */
    public function uninstall_reason_submission() {

        if ( ! isset( $_POST['reason_id'] ) ) {
            wp_send_json_error();
        }

        if ( ! wp_verify_nonce( $_POST['nonce'], 'appsero-security-nonce' ) ) {
            wp_send_json_error( 'Nonce verification failed' );
        }

        if ( ! current_user_can( 'manage_options' ) ) {
            wp_send_json_error( 'You are not allowed for this task' );
        }

        $data                = $this->get_tracking_data();
        $data['reason_id']   = sanitize_text_field( $_POST['reason_id'] );
        $data['reason_info'] = isset( $_REQUEST['reason_info'] ) ? trim( stripslashes( $_REQUEST['reason_info'] ) ) : '';

        $this->client->send_request( $data, 'deactivate' );

        wp_send_json_success();
    }

    /**
     * Handle the plugin deactivation feedback
     *
     * @return void
     */
    public function deactivate_scripts() {
        global $pagenow;

        if ( 'plugins.php' != $pagenow ) {
            return;
        }

        $this->deactivation_modal_styles();
        $reasons = $this->get_uninstall_reasons();
        $custom_reasons = apply_filters( 'appsero_custom_deactivation_reasons', array() );
        ?>

        <div class="wd-dr-modal" id="<?php echo $this->client->slug; ?>-wd-dr-modal">
            <div class="wd-dr-modal-wrap">
                <div class="wd-dr-modal-header">
                    <h3><?php $this->client->_etrans( 'Goodbyes are always hard. If you have a moment, please let us know how we can improve.' ); ?></h3>
                </div>

                <div class="wd-dr-modal-body">
                    <ul class="wd-de-reasons">
                        <?php foreach ( $reasons as $reason ) { ?>
                            <li data-placeholder="<?php echo esc_attr( $reason['placeholder'] ); ?>">
                                <label>
                                    <input type="radio" name="selected-reason" value="<?php echo $reason['id']; ?>">
                                    <div class="wd-de-reason-icon"><?php echo $reason['icon']; ?></div>
                                    <div class="wd-de-reason-text"><?php echo $reason['text']; ?></div>
                                </label>
                            </li>
                        <?php } ?>
                    </ul>
                    <?php if ( $custom_reasons && is_array( $custom_reasons ) ) : ?>
                    <ul class="wd-de-reasons wd-de-others-reasons">
                        <?php foreach ( $custom_reasons as $reason ) { ?>
                            <li data-placeholder="<?php echo esc_attr( $reason['placeholder'] ); ?>" data-customreason="true">
                                <label>
                                    <input type="radio" name="selected-reason" value="<?php echo $reason['id']; ?>">
                                    <div class="wd-de-reason-icon"><?php echo $reason['icon']; ?></div>
                                    <div class="wd-de-reason-text"><?php echo $reason['text']; ?></div>
                                </label>
                            </li>
                        <?php } ?>
                    </ul>
                    <?php endif; ?>
                    <div class="wd-dr-modal-reason-input"><textarea></textarea></div>
                    <p class="wd-dr-modal-reasons-bottom">
                       <?php
                       echo sprintf(
	                       $this->client->__trans( 'We share your data with <a href="%1$s" target="_blank">Appsero</a> to troubleshoot problems &amp; make product improvements. <a href="%2$s" target="_blank">Learn more</a> about how Appsero handles your data.'),
	                       esc_url( 'https://appsero.com/' ),
                           esc_url( 'https://appsero.com/privacy-policy' )
                       );
                       ?>
                    </p>
                </div>

                <div class="wd-dr-modal-footer">
                    <a href="#" class="dont-bother-me wd-dr-button-secondary"><?php $this->client->_etrans( "Skip & Deactivate" ); ?></a>
                    <button class="wd-dr-button-secondary wd-dr-cancel-modal"><?php $this->client->_etrans( 'Cancel' ); ?></button>
                    <button class="wd-dr-submit-modal"><?php $this->client->_etrans( 'Submit & Deactivate' ); ?></button>
                </div>
            </div>
        </div>

        <script type="text/javascript">
            (function($) {
                $(function() {
                    var modal = $( '#<?php echo $this->client->slug; ?>-wd-dr-modal' );
                    var deactivateLink = '';

                    // Open modal
                    $( '#the-list' ).on('click', 'a.<?php echo $this->client->slug; ?>-deactivate-link', function(e) {
                        e.preventDefault();

                        modal.addClass('modal-active');
                        deactivateLink = $(this).attr('href');
                        modal.find('a.dont-bother-me').attr('href', deactivateLink).css('float', 'left');
                    });

                    // Close modal; Cancel
                    modal.on('click', 'button.wd-dr-cancel-modal', function(e) {
                        e.preventDefault();
                        modal.removeClass('modal-active');
                    });

                    // Reason change
                    modal.on('click', 'input[type="radio"]', function () {
                        var parent = $(this).parents('li');
                        var isCustomReason = parent.data('customreason');
                        var inputValue = $(this).val();

                        if ( isCustomReason ) {
                            $('ul.wd-de-reasons.wd-de-others-reasons li').removeClass('wd-de-reason-selected');
                        } else {
                            $('ul.wd-de-reasons li').removeClass('wd-de-reason-selected');

                            if ( "other" != inputValue ) {
                                $('ul.wd-de-reasons.wd-de-others-reasons').css('display', 'none');
                            }
                        }

                        // Show if has custom reasons
                        if ( "other" == inputValue ) {
                            $('ul.wd-de-reasons.wd-de-others-reasons').css('display', 'flex');
                        }

                        parent.addClass('wd-de-reason-selected');
                        $('.wd-dr-modal-reason-input').show();

                        $('.wd-dr-modal-reason-input textarea').attr('placeholder', parent.data('placeholder')).focus();
                    });

                    // Submit response
                    modal.on('click', 'button.wd-dr-submit-modal', function(e) {
                        e.preventDefault();

                        var button = $(this);

                        if ( button.hasClass('disabled') ) {
                            return;
                        }

                        var $radio = $( 'input[type="radio"]:checked', modal );
                        var $input = $('.wd-dr-modal-reason-input textarea');

                        $.ajax({
                            url: ajaxurl,
                            type: 'POST',
                            data: {
                                nonce: '<?php echo wp_create_nonce( 'appsero-security-nonce' ); ?>',
                                action: '<?php echo $this->client->slug; ?>_submit-uninstall-reason',
                                reason_id: ( 0 === $radio.length ) ? 'none' : $radio.val(),
                                reason_info: ( 0 !== $input.length ) ? $input.val().trim() : ''
                            },
                            beforeSend: function() {
                                button.addClass('disabled');
                                button.text('Processing...');
                            },
                            complete: function() {
                                window.location.href = deactivateLink;
                            }
                        });
                    });
                });
            }(jQuery));
        </script>

        <?php
    }

    /**
     * Run after theme deactivated
     * @param  string $new_name
     * @param  object $new_theme
     * @param  object $old_theme
     * @return void
     */
    public function theme_deactivated( $new_name, $new_theme, $old_theme ) {
        // Make sure this is appsero theme
        if ( $old_theme->get_template() == $this->client->slug ) {
            $this->client->send_request( $this->get_tracking_data(), 'deactivate' );
        }
    }

    /**
     * Get user IP Address
     */
    private function get_user_ip_address() {
        $response = wp_remote_get( 'https://icanhazip.com/' );

        if ( is_wp_error( $response ) ) {
            return '';
        }

        $ip = trim( wp_remote_retrieve_body( $response ) );

        if ( ! filter_var( $ip, FILTER_VALIDATE_IP ) ) {
            return '';
        }

        return $ip;
    }

    /**
     * Get site name
     */
    private function get_site_name() {
        $site_name = get_bloginfo( 'name' );

        if ( empty( $site_name ) ) {
            $site_name = get_bloginfo( 'description' );
            $site_name = wp_trim_words( $site_name, 3, '' );
        }

        if ( empty( $site_name ) ) {
            $site_name = esc_url( home_url() );
        }

        return $site_name;
    }

    /**
     * Send request to appsero if user skip to send tracking data
     */
    private function send_tracking_skipped_request() {
        $skipped = get_option( $this->client->slug . '_tracking_skipped' );

        $data = array(
            'hash'               => $this->client->hash,
            'previously_skipped' => false,
        );

        if ( $skipped === 'yes' ) {
            $data['previously_skipped'] = true;
        } else {
            update_option( $this->client->slug . '_tracking_skipped', 'yes' );
        }

        $this->client->send_request( $data, 'tracking-skipped' );
    }

    /**
     * Deactivation modal styles
     */
    private function deactivation_modal_styles() {
        ?>
        <style type="text/css">
            .wd-dr-modal {
                position: fixed;
                z-index: 99999;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: rgba(0,0,0,0.5);
                display: none;
                box-sizing: border-box;
                overflow: scroll;
            }
            .wd-dr-modal * {
                box-sizing: border-box;
            }
            .wd-dr-modal.modal-active {
                display: block;
            }
            .wd-dr-modal-wrap {
                max-width: 870px;
                width: 100%;
                position: relative;
                margin: 10% auto;
                background: #fff;
            }
            .wd-dr-modal-header {
                border-bottom: 1px solid #E8E8E8;
                padding: 20px 20px 18px 20px;
            }
            .wd-dr-modal-header h3 {
                line-height: 1.8;
                margin: 0;
                color: #4A5568;
            }
            .wd-dr-modal-body {
                padding: 5px 20px 20px 20px;
            }
            .wd-dr-modal-body .reason-input {
                margin-top: 5px;
                margin-left: 20px;
            }
            .wd-dr-modal-footer {
                border-top: 1px solid #E8E8E8;
                padding: 20px;
                text-align: right;
            }
            .wd-dr-modal-reasons-bottom {
                margin: 0;
            }
            ul.wd-de-reasons {
                display: flex;
                margin: 0 -5px 0 -5px;
                padding: 15px 0 20px 0;
            }
            ul.wd-de-reasons.wd-de-others-reasons {
                padding-top: 0;
                display: none;
            }
            ul.wd-de-reasons li {
                padding: 0 5px;
                margin: 0;
                width: 14.26%;
            }
            ul.wd-de-reasons label {
                position: relative;
                border: 1px solid #E8E8E8;
                border-radius: 4px;
                display: block;
                text-align: center;
                height: 100%;
                padding: 15px 3px 8px 3px;
            }
            ul.wd-de-reasons label:after {
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-top: 10px solid #3B86FF;
                position: absolute;
                left: 50%;
                top: 100%;
                margin-left: -8px;
            }
            ul.wd-de-reasons label input[type="radio"] {
                position: absolute;
                left: 0;
                right: 0;
                visibility: hidden;
            }
            .wd-de-reason-text {
                color: #4A5568;
                font-size: 13px;
            }
            .wd-de-reason-icon {
                margin-bottom: 7px;
            }
            ul.wd-de-reasons li.wd-de-reason-selected label {
                background-color: #3B86FF;
                border-color: #3B86FF;
            }
            li.wd-de-reason-selected .wd-de-reason-icon svg,
            li.wd-de-reason-selected .wd-de-reason-icon svg g {
                fill: #fff;
            }
            li.wd-de-reason-selected .wd-de-reason-text {
                color: #fff;
            }
            ul.wd-de-reasons li.wd-de-reason-selected label:after {
                content: "";
            }
            .wd-dr-modal-reason-input {
                margin-bottom: 15px;
                display: none;
            }
            .wd-dr-modal-reason-input textarea {
                background: #FAFAFA;
                border: 1px solid #287EB8;
                border-radius: 4px;
                width: 100%;
                height: 100px;
                color: #524242;
                font-size: 13px;
                line-height: 1.4;
                padding: 11px 15px;
                resize: none;
            }
            .wd-dr-modal-reason-input textarea:focus {
                outline: 0 none;
                box-shadow: 0 0 0;
            }
            .wd-dr-button-secondary, .wd-dr-button-secondary:hover {
                border: 1px solid #EBEBEB;
                border-radius: 3px;
                font-size: 13px;
                line-height: 1.5;
                color: #718096;
                padding: 5px 12px;
                cursor: pointer;
                background-color: transparent;
                text-decoration: none;
            }
            .wd-dr-submit-modal, .wd-dr-submit-modal:hover {
                border: 1px solid #3B86FF;
                background-color: #3B86FF;
                border-radius: 3px;
                font-size: 13px;
                line-height: 1.5;
                color: #fff;
                padding: 5px 12px;
                cursor: pointer;
                margin-left: 4px;
            }
        </style>
        <?php
    }

}
lib/appsero/readme.md000064400000015342151213256060010550 0ustar00# Appsero - Client

- [Installation](#installation)
- [Insights](#insights)
- [Dynamic Usage](#dynamic-usage)


## Installation

You can install AppSero Client in two ways, via composer and manually.

### 1. Composer Installation

Add dependency in your project (theme/plugin):

```
composer require appsero/client
```

Now add `autoload.php` in your file if you haven't done already.

```php
require __DIR__ . '/vendor/autoload.php';
```

### 2. Manual Installation

Clone the repository in your project.

```
cd /path/to/your/project/folder
git clone https://github.com/AppSero/client.git appsero
```

Now include the dependencies in your plugin/theme.

```php
require __DIR__ . '/appsero/src/Client.php';
```

## Insights

AppSero can be used in both themes and plugins.

The `Appsero\Client` class has *three* parameters:

```php
$client = new Appsero\Client( $hash, $name, $file );
```

- **hash** (*string*, *required*) - The unique identifier for a plugin or theme.
- **name** (*string*, *required*) - The name of the plugin or theme.
- **file** (*string*, *required*) - The **main file** path of the plugin. For theme, path to `functions.php`

### Usage Example

Please refer to the **installation** step before start using the class.

You can obtain the **hash** for your plugin for the [Appsero Dashboard](https://dashboard.appsero.com). The 3rd parameter **must** have to be the main file of the plugin.

```php
/**
 * Initialize the tracker
 *
 * @return void
 */
function appsero_init_tracker_appsero_test() {

    if ( ! class_exists( 'Appsero\Client' ) ) {
        require_once __DIR__ . '/appsero/src/Client.php';
    }

    $client = new Appsero\Client( 'a4a8da5b-b419-4656-98e9-4a42e9044891', 'Akismet', __FILE__ );

    // Active insights
    $client->insights()->init();

    // Active automatic updater
    $client->updater();

    // Active license page and checker
    $args = array(
        'type'       => 'options',
        'menu_title' => 'Akismet',
        'page_title' => 'Akismet License Settings',
        'menu_slug'  => 'akismet_settings',
    );
    $client->license()->add_settings_page( $args );
}

appsero_init_tracker_appsero_test();
```

Make sure you call this function directly, never use any action hook to call this function.

> For plugins example code that needs to be used on your main plugin file.
> For themes example code that needs to be used on your themes `functions.php` file.

## More Usage

```php
$client = new Appsero\Client( 'a4a8da5b-b419-4656-98e9-4a42e9044892', 'Twenty Twelve', __FILE__ );
```

#### 1. Hiding the notice

Sometimes you wouldn't want to show the notice, or want to customize the notice message. You can do that as well.

```php
$client->insights()
       ->hide_notice()
       ->init();
```

#### 2. Customizing the notice message

```php
$client->insights()
       ->notice( 'My Custom Notice Message' )
       ->init();
```

#### 3. Adding extra data

You can add extra metadata from your theme or plugin. In that case, the **keys** has to be whitelisted from the Appsero dashboard.
`add_extra` method also support callback as parameter, If you need database call then callback is best for you.

```php
$metadata = array(
    'key'     => 'value',
    'another' => 'another_value'
);
$client->insights()
       ->add_extra( $metadata )
       ->init();
```

Or if you want to run a query then pass callback, we will call the function when it is necessary.

```php
$metadata = function () {
    $total_posts = wp_count_posts();

    return array(
        'total_posts' => $total_posts,
        'another'     => 'another_value'
    );
};
$client->insights()
       ->add_extra( $metadata )
       ->init();
```

#### 4. Set textdomain

You may set your own textdomain to translate text.

```php
$client->set_textdomain( 'your-project-textdomain' );
```




#### 5. Get Plugin Data
If you want to get the most used plugins with your plugin or theme, send the active plugins' data to Appsero.
```php
$client->insights()
       ->add_plugin_data()
       ->init();
```
---

#### 6. Set Notice Message
Change opt-in message text
```php
$client->insights()
       ->notice("Your custom notice text")
       ->init();
```
---

### Check License Validity

Check your plugin/theme is using with valid license or not, First create a global variable of `License` object then use it anywhere in your code.
If you are using it outside of same function make sure you global the variable before using the condition.

```php
$client = new Appsero\Client( 'a4a8da5b-b419-4656-98e9-4a42e9044892', 'Twenty Twelve', __FILE__ );

$args = array(
    'type'        => 'submenu',
    'menu_title'  => 'Twenty Twelve License',
    'page_title'  => 'Twenty Twelve License Settings',
    'menu_slug'   => 'twenty_twelve_settings',
    'parent_slug' => 'themes.php',
);

global $twenty_twelve_license;
$twenty_twelve_license = $client->license();
$twenty_twelve_license->add_settings_page( $args );

if ( $twenty_twelve_license->is_valid()  ) {
    // Your special code here
}

Or check by pricing plan title

if ( $twenty_twelve_license->is_valid_by( 'title', 'Business' ) ) {
    // Your special code here
}

// Set custom options key for storing the license info
$twenty_twelve_license->set_option_key( 'my_plugin_license' );
```

### Use your own license form

You can easily manage license by creating a form using HTTP request. Call `license_form_submit` method from License object.

```php
global $twenty_twelve_license; // License object
$twenty_twelve_license->license_form_submit([
    '_nonce'      => wp_create_nonce( 'Twenty Twelve' ), // create a nonce with name
    '_action'     => 'active', // active, deactive
    'license_key' => 'random-license-key', // no need to provide if you want to deactive
]);
if ( ! $twenty_twelve_license->error ) {
    // license activated
    $twenty_twelve_license->success; // Success message is here
} else {
    $twenty_twelve_license->error; // has error message here
}
```

### Set Custom Deactivation Reasons

First set your deactivation reasons in Appsero dashboard then map them in your plugin/theme using filter hook.

- **id** is the deactivation slug
- **text** is the deactivation title
- **placeholder** will show on textarea field
- **icon** You can set SVG icon with 23x23 size

```php
add_filter( 'appsero_custom_deactivation_reasons', function () {
    return [
        [
            'id'          => 'looks-buggy',
            'text'        => 'Looks buggy',
            'placeholder' => 'Can you please tell which feature looks buggy?',
            'icon'        => '',
        ],
        [
            'id'          => 'bad-ui',
            'text'        => 'Bad UI',
            'placeholder' => 'Could you tell us a bit more?',
            'icon'        => '',
        ],
    ];
} );
```

## Credits

Created and maintained by [Appsero](https://appsero.com).

F1le Man4ger